chore: start monorepo migration
diff --git a/superset-frontend/.eslintignore b/superset-frontend/.eslintignore
index e21e918..2dbbb5c 100644
--- a/superset-frontend/.eslintignore
+++ b/superset-frontend/.eslintignore
@@ -1,30 +1,7 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-**/*{.,-}min.js
-**/*.sh
-coverage/**
-dist/*
-images/*
-node_modules/*
-node_modules*/*
-stylesheets/*
-vendor/*
-docs/*
-src/dashboard/deprecated/*
-src/temp/*
-**/node_modules
-*.d.ts
+coverage/
+node_modules/
+public/
+esm/
+lib/
+tmp/
+dist/
diff --git a/superset-frontend/.eslintrc.js b/superset-frontend/.eslintrc.js
index c25f689..ec16c30 100644
--- a/superset-frontend/.eslintrc.js
+++ b/superset-frontend/.eslintrc.js
@@ -17,12 +17,7 @@
  * under the License.
  */
 module.exports = {
-  extends: [
-    'airbnb',
-    'prettier',
-    'prettier/react',
-    'plugin:react-hooks/recommended',
-  ],
+  extends: ['airbnb', 'prettier', 'prettier/react', 'plugin:react-hooks/recommended'],
   parser: 'babel-eslint',
   parserOptions: {
     ecmaFeatures: {
@@ -33,155 +28,17 @@
     browser: true,
   },
   settings: {
-    'import/resolver': 'webpack',
+    'import/resolver': {
+      webpack: {},
+      node: {
+        extensions: ['.js', '.jsx', '.ts', '.tsx'],
+      },
+    },
     react: {
       version: 'detect',
     },
   },
   plugins: ['prettier', 'react'],
-  overrides: [
-    {
-      files: ['cypress-base/**/*'],
-      rules: {
-        'import/no-unresolved': 0,
-        'global-require': 0,
-      },
-    },
-    {
-      files: ['webpack*.js'],
-      env: {
-        node: true,
-      },
-      settings: {
-        'import/resolver': {
-          node: {},
-        },
-      },
-    },
-    {
-      files: ['*.ts', '*.tsx'],
-      parser: '@typescript-eslint/parser',
-      extends: [
-        'airbnb',
-        'plugin:@typescript-eslint/recommended',
-        'prettier',
-        'prettier/@typescript-eslint',
-        'prettier/react',
-      ],
-      plugins: ['@typescript-eslint/eslint-plugin', 'prettier', 'react'],
-      rules: {
-        '@typescript-eslint/ban-ts-ignore': 0,
-        '@typescript-eslint/ban-ts-comment': 0, // disabled temporarily
-        '@typescript-eslint/ban-types': 0, // disabled temporarily
-        '@typescript-eslint/no-empty-function': 0,
-        '@typescript-eslint/no-explicit-any': 0,
-        '@typescript-eslint/no-use-before-define': 1, // disabled temporarily
-        '@typescript-eslint/explicit-function-return-type': 0,
-        '@typescript-eslint/explicit-module-boundary-types': 0, // re-enable up for discussion
-        camelcase: 0,
-        'class-methods-use-this': 0,
-        curly: 1,
-        'func-names': 0,
-        'guard-for-in': 0,
-        'import/no-cycle': 0, // re-enable up for discussion, might require some major refactors
-        'import/extensions': [
-          'error',
-          {
-            '.ts': 'always',
-            '.tsx': 'always',
-            '.json': 'always',
-          },
-        ],
-        'import/no-named-as-default-member': 0,
-        'import/prefer-default-export': 0,
-        indent: 0,
-        'jsx-a11y/anchor-is-valid': 1,
-        'jsx-a11y/click-events-have-key-events': 0, // re-enable up for discussion
-        'jsx-a11y/mouse-events-have-key-events': 0, // re-enable up for discussion
-        'new-cap': 0,
-        'no-bitwise': 0,
-        'no-continue': 0,
-        'no-mixed-operators': 0,
-        'no-multi-assign': 0,
-        'no-multi-spaces': 0,
-        'no-prototype-builtins': 0,
-        'no-restricted-properties': 0,
-        'no-restricted-imports': [
-          'error',
-          {
-            paths: [
-              {
-                name: 'antd',
-                message:
-                  'Please import Ant components from the index of common/components',
-              },
-            ],
-          },
-        ],
-        'no-shadow': 0, // re-enable up for discussion
-        'no-use-before-define': 0, // disabled temporarily
-        'padded-blocks': 0,
-        'prefer-arrow-callback': 0,
-        'prefer-destructuring': ['error', { object: true, array: false }],
-        'react/destructuring-assignment': 0, // re-enable up for discussion
-        'react/forbid-prop-types': 0,
-        'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.tsx'] }],
-        'react/jsx-fragments': 1,
-        'react/jsx-no-bind': 0,
-        'react/jsx-props-no-spreading': 0, // re-enable up for discussion
-        'react/no-array-index-key': 0,
-        'react/no-string-refs': 0,
-        'react/no-unescaped-entities': 0,
-        'react/no-unused-prop-types': 0,
-        'react/prop-types': 0,
-        'react/require-default-props': 0,
-        'react/sort-comp': 0, // TODO: re-enable in separate PR
-        'react/static-property-placement': 0, // re-enable up for discussion
-        'prettier/prettier': 'error',
-      },
-      settings: {
-        'import/resolver': {
-          webpack: {},
-          typescript: {},
-        },
-        react: {
-          version: 'detect',
-        },
-      },
-    },
-    {
-      files: ['*.stories.jsx', '*.stories.tsx'],
-      rules: {
-        // this is to keep eslint from complaining about storybook addons,
-        // since they are included as dev dependencies rather than direct dependencies.
-        'import/no-extraneous-dependencies': [
-          'error',
-          { devDependencies: true },
-        ],
-      },
-    },
-    {
-      files: [
-        'src/**/*.test.ts',
-        'src/**/*.test.tsx',
-        'src/**/*.test.js',
-        'src/**/*.test.jsx',
-      ],
-      plugins: ['jest', 'jest-dom', 'no-only-tests'],
-      env: {
-        'jest/globals': true,
-      },
-      extends: ['plugin:jest/recommended', 'plugin:testing-library/react'],
-      rules: {
-        'import/no-extraneous-dependencies': [
-          'error',
-          { devDependencies: true },
-        ],
-        'jest/consistent-test-it': 'error',
-        'no-only-tests/no-only-tests': 'error',
-      },
-    },
-  ],
   rules: {
     camelcase: [
       'error',
@@ -190,8 +47,8 @@
         properties: 'never',
       },
     ],
+    curly: 2,
     'class-methods-use-this': 0,
-    curly: 1,
     'func-names': 0,
     'guard-for-in': 0,
     'import/extensions': [
@@ -207,7 +64,7 @@
     'import/no-cycle': 0, // re-enable up for discussion, might require some major refactors
     'import/prefer-default-export': 0,
     indent: 0,
-    'jsx-a11y/anchor-is-valid': 1,
+    'jsx-a11y/anchor-is-valid': 0, // disabled temporarily
     'jsx-a11y/click-events-have-key-events': 0, // re-enable up for discussion
     'jsx-a11y/mouse-events-have-key-events': 0, // re-enable up for discussion
     'new-cap': 0,
@@ -224,8 +81,7 @@
         paths: [
           {
             name: 'antd',
-            message:
-              'Please import Ant components from the index of common/components',
+            message: 'Please import Ant components from the index of common/components',
           },
         ],
       },
@@ -247,8 +103,145 @@
     'react/no-unused-prop-types': 0,
     'react/prop-types': 0,
     'react/require-default-props': 0,
-    'react/sort-comp': 0, // TODO: re-enable in separate PR
     'react/static-property-placement': 0, // disabled temporarily
     'prettier/prettier': 'error',
   },
+  overrides: [
+    {
+      files: ['*.ts', '*.tsx'],
+      parser: '@typescript-eslint/parser',
+      extends: [
+        'airbnb',
+        'plugin:@typescript-eslint/recommended',
+        'prettier',
+        'prettier/@typescript-eslint',
+        'prettier/react',
+      ],
+      plugins: ['@typescript-eslint/eslint-plugin', 'prettier', 'react'],
+      rules: {
+        '@typescript-eslint/ban-ts-ignore': 0,
+        '@typescript-eslint/ban-ts-comment': 0, // disabled temporarily
+        '@typescript-eslint/ban-types': 0, // disabled temporarily
+        '@typescript-eslint/no-empty-function': 0,
+        '@typescript-eslint/no-explicit-any': 0,
+        '@typescript-eslint/no-use-before-define': 1,
+        '@typescript-eslint/no-non-null-assertion': 0, // disabled temporarily
+        '@typescript-eslint/explicit-function-return-type': 0,
+        '@typescript-eslint/explicit-module-boundary-types': 0, // re-enable up for discussion
+        camelcase: 0,
+        'class-methods-use-this': 0,
+        'func-names': 0,
+        'guard-for-in': 0,
+        // there is a bug related to re-exports with this rule
+        // which doesn't seem to have been fixed: https://github.com/benmosher/eslint-plugin-import/issues/1460
+        'import/named': 0,
+        'import/no-cycle': 0, // re-enable up for discussion, might require some major refactors
+        'import/extensions': [
+          'error',
+          {
+            '.ts': 'always',
+            '.tsx': 'always',
+            '.json': 'always',
+          },
+        ],
+        'import/no-named-as-default-member': 0,
+        'import/prefer-default-export': 0,
+        indent: 0,
+        'jsx-a11y/anchor-is-valid': 0, // disabled temporarily
+        'jsx-a11y/click-events-have-key-events': 0, // re-enable up for discussion
+        'jsx-a11y/mouse-events-have-key-events': 0, // re-enable up for discussion
+        'new-cap': 0,
+        'no-bitwise': 0,
+        'no-continue': 0,
+        'no-mixed-operators': 0,
+        'no-multi-assign': 0,
+        'no-multi-spaces': 0,
+        'no-prototype-builtins': 0,
+        'no-restricted-properties': 0,
+        'no-shadow': 0, // re-enable up for discussion
+        'no-use-before-define': 0, // disabled temporarily
+        'padded-blocks': 0,
+        'prefer-arrow-callback': 0,
+        'prefer-destructuring': ['error', { object: true, array: false }],
+        'react/destructuring-assignment': 0, // re-enable up for discussion
+        'react/forbid-prop-types': 0,
+        'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.tsx'] }],
+        'react/jsx-fragments': 1,
+        'react/jsx-no-bind': 0,
+        'react/jsx-props-no-spreading': 0, // re-enable up for discussion
+        'react/no-array-index-key': 0,
+        'react/no-string-refs': 0,
+        'react/no-unescaped-entities': 0,
+        'react/no-unused-prop-types': 0,
+        'react/prop-types': 0,
+        'react/require-default-props': 0,
+        'react/static-property-placement': 0, // re-enable up for discussion
+        'prettier/prettier': 'error',
+      },
+      settings: {
+        'import/resolver': {
+          webpack: {},
+          typescript: {},
+        },
+        react: {
+          version: 'detect',
+        },
+      },
+    },
+    {
+      files: ['*.stories.jsx', '*.stories.tsx'],
+      rules: {
+        // this is to keep eslint from complaining about storybook addons,
+        // since they are included as dev dependencies rather than direct dependencies.
+        'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
+      },
+    },
+    {
+      files: ['*.d.ts'],
+      rules: {
+        'max-classes-per-file': 0,
+      },
+    },
+    {
+      files: ['*.test.*', './**/test/**/*'],
+      plugins: ['jest', 'jest-dom', 'no-only-tests', 'testing-library'],
+      env: {
+        'jest/globals': true,
+      },
+      extends: ['plugin:jest/recommended', 'plugin:testing-library/react'],
+      rules: {
+        'import/no-extraneous-dependencies': 0,
+        'jest/consistent-test-it': 'error',
+        'jest/no-try-expect': 0,
+        'max-classes-per-file': 0,
+        'no-only-tests/no-only-tests': 'error',
+        'prefer-promise-reject-errors': 0,
+      },
+    },
+    {
+      files: ['webpack*.js', '.*rc.js', '*.config.js'],
+      env: {
+        node: true,
+      },
+      settings: {
+        'import/resolver': {
+          node: {},
+        },
+      },
+    },
+    {
+      files: './packages/generator-superset/**/*.test.*',
+      env: {
+        node: true,
+      },
+      settings: {
+        'import/resolver': {
+          node: {},
+        },
+      },
+      rules: {
+        'jest/expect-expect': 0,
+      },
+    },
+  ],
 };
diff --git a/superset-frontend/.esprintrc b/superset-frontend/.esprintrc
new file mode 100644
index 0000000..4c0d584
--- /dev/null
+++ b/superset-frontend/.esprintrc
@@ -0,0 +1,5 @@
+{
+ "paths": ["{packages,plugins}/*/{src,test,types}/**/*.{ts,tsx,js,jsx}"],
+ "ignores": ["**/node_modules/**/*"],
+ "port": 5004  
+}
diff --git a/superset-frontend/.gitignore b/superset-frontend/.gitignore
index 0598bbb..792763e 100644
--- a/superset-frontend/.gitignore
+++ b/superset-frontend/.gitignore
@@ -1,4 +1,45 @@
-coverage/*
-cypress/screenshots
-cypress/videos
-src/temp
+.DS_Store
+*.DS_Store
+
+# Logs
+logs/
+*.log
+
+# Cache
+.bundle/
+.happo/
+.idea/
+.next/
+.cache
+.eslintcache
+.idea
+*.iml
+.npm
+.vscode
+.yarnclean
+
+# Directories
+build/
+coverage/
+dist/
+esm/
+lib/
+public/
+node_modules/
+tmp/
+_gh-pages/
+
+# Custom
+*.map
+*.min.js
+test-changelog.md
+
+*.tsbuildinfo
+
+# Ignore npm lock files, always use yarn.lock instead
+npm-shrinkwrap.json
+package-lock.json
+
+# Ignore yarn.lock in packages
+plugins/*/yarn.lock
+packages/*/yarn.lock
diff --git a/superset-frontend/.npmrc b/superset-frontend/.npmrc
new file mode 100644
index 0000000..04f9fbd
--- /dev/null
+++ b/superset-frontend/.npmrc
@@ -0,0 +1,2 @@
+package-lock=false
+registry=http://localhost:4873
diff --git a/superset-frontend/.prettierignore b/superset-frontend/.prettierignore
new file mode 100644
index 0000000..d316963
--- /dev/null
+++ b/superset-frontend/.prettierignore
@@ -0,0 +1,17 @@
+_gh-pages/
+coverage/
+node_modules/
+public/
+esm/
+lib/
+tmp/
+dist/
+lerna.json
+npm-shrinkwrap.json
+package-lock.json
+tsconfig.json
+tsconfig.options.json
+tsconfig.eslint.json
+CHANGELOG.md
+*.geojson
+*-topo.json
diff --git a/superset-frontend/.prettierrc b/superset-frontend/.prettierrc
new file mode 100644
index 0000000..3b35729
--- /dev/null
+++ b/superset-frontend/.prettierrc
@@ -0,0 +1,13 @@
+{
+  "arrowParens": "avoid",
+  "bracketSpacing": true,
+  "jsxBracketSameLine": false,
+  "printWidth": 100,
+  "proseWrap": "always",
+  "requirePragma": false,
+  "semi": true,
+  "singleQuote": true,
+  "tabWidth": 2,
+  "trailingComma": "all",
+  "useTabs": false
+}
diff --git a/superset-frontend/CHANGELOG.md b/superset-frontend/CHANGELOG.md
new file mode 100644
index 0000000..457398b
--- /dev/null
+++ b/superset-frontend/CHANGELOG.md
@@ -0,0 +1,1263 @@
+## [0.13.26](https://github.com/apache-superset/superset-ui/compare/v0.13.25...v0.13.26) (2020-06-03)
+
+
+### Features
+
+* **demo:** add helpers for resizable chart demo ([#557](https://github.com/apache-superset/superset-ui/issues/557)) ([af7421d](https://github.com/apache-superset/superset-ui/commit/af7421d5b7a478ed8a9f0a952f4a111bdc3fec66))
+* **query:** add functions to wrap api calls with typings ([#555](https://github.com/apache-superset/superset-ui/issues/555)) ([9137580](https://github.com/apache-superset/superset-ui/commit/9137580d7e73c73d47bdd6d7ff905365e87d9a61))
+* **superset-ui-style:** export ThemeProvider and useTheme ([#553](https://github.com/apache-superset/superset-ui/issues/553)) ([f6a8949](https://github.com/apache-superset/superset-ui/commit/f6a8949e38eabe8c34e21419fb2f8d4c44bb7ad2))
+
+
+
+## [0.13.25](https://github.com/apache-superset/superset-ui/compare/v0.13.24...v0.13.25) (2020-05-30)
+
+
+### Features
+
+* **chart:** adjust chartclient to point to new endpoints ([#551](https://github.com/apache-superset/superset-ui/issues/551)) ([bbc42c2](https://github.com/apache-superset/superset-ui/commit/bbc42c2ff074a107f6ed563cd5ab6935a3fb92a0))
+* **connection:** allow developer to get supersetclient instance ([#552](https://github.com/apache-superset/superset-ui/issues/552)) ([c075070](https://github.com/apache-superset/superset-ui/commit/c075070e3cf9f535c81a4964e7ed97b0daf86179))
+
+
+
+## [0.13.24](https://github.com/apache-superset/superset-ui/compare/v0.13.23...v0.13.24) (2020-05-29)
+
+
+### Features
+
+* **color:** support better color interpolation for sequential schemes ([#547](https://github.com/apache-superset/superset-ui/issues/547)) ([f7d4648](https://github.com/apache-superset/superset-ui/commit/f7d4648fae7eb11032953987dca6736cc7547380))
+* Word cloud typography update ([#518](https://github.com/apache-superset/superset-ui/issues/518)) ([873973b](https://github.com/apache-superset/superset-ui/commit/873973b8a3b0b1b6aa8c8bfa4677d4a614c83500))
+
+
+
+## [0.13.23](https://github.com/apache-superset/superset-ui/compare/v0.13.22...v0.13.23) (2020-05-26)
+
+
+### Bug Fixes
+
+* nvd3 annotation tooltip ([#540](https://github.com/apache-superset/superset-ui/issues/540)) ([6ea134d](https://github.com/apache-superset/superset-ui/commit/6ea134d9e63d9cf55b2797b8732cc99853b6b77a))
+
+
+
+## [0.13.22](https://github.com/apache-superset/superset-ui/compare/v0.13.21...v0.13.22) (2020-05-26)
+
+
+### Features
+
+* **time-format:** improve support for formatting with granularity in mind ([#509](https://github.com/apache-superset/superset-ui/issues/509)) ([2d8afa8](https://github.com/apache-superset/superset-ui/commit/2d8afa87b4b34ab1990ecbeaab4060688e86554b))
+
+
+## [0.13.21](https://github.com/apache-superset/superset-ui/compare/v0.13.20...v0.13.21) (2020-05-21)
+
+
+### Bug Fixes
+
+* **legacy-plugin-chart-table:** parse numeric pageLength ([#522](https://github.com/apache-superset/superset-ui/issues/522)) ([4831f7f](https://github.com/apache-superset/superset-ui/commit/4831f7fbe4954b5acfb05176f8fd807c4c5e8339))
+
+
+### Features
+
+* **legacy-plugin-chart-event-flow:** migrate package ([#514](https://github.com/apache-superset/superset-ui/issues/514)) ([3589e31](https://github.com/apache-superset/superset-ui/commit/3589e31dec2279b9b032f5cb654cd069e1d13611))
+
+
+
+## [0.13.20](https://github.com/apache-superset/superset-ui/compare/v0.13.19...v0.13.20) (2020-05-21)
+
+
+
+## [0.13.19](https://github.com/apache-superset/superset-ui/compare/v0.13.18...v0.13.19) (2020-05-21)
+
+
+### Bug Fixes
+
+* missing bracket, little linty things ([#517](https://github.com/apache-superset/superset-ui/issues/517)) ([b8c91ba](https://github.com/apache-superset/superset-ui/commit/b8c91ba93a29943b6f599b7eb6cb8cb49637d3c8))
+
+
+
+## [0.13.18](https://github.com/apache-superset/superset-ui/compare/v0.13.17...v0.13.18) (2020-05-21)
+
+
+### Features
+
+* **legacy-plugin-chart-parallel-coordinates:** add control panels ([#510](https://github.com/apache-superset/superset-ui/issues/510)) ([b9bc48d](https://github.com/apache-superset/superset-ui/commit/b9bc48d16e9b5fe06c2d9638deeb11ffeade94eb))
+* **legacy-preset-big-number:** use emotion styling ([#455](https://github.com/apache-superset/superset-ui/issues/455)) ([46eb663](https://github.com/apache-superset/superset-ui/commit/46eb663665c7cd7d45cfe495556a1e54dfeb54dd))
+
+
+
+## [0.13.17](https://github.com/apache-superset/superset-ui/compare/v0.13.16...v0.13.17) (2020-05-20)
+
+
+### Features
+
+* add control grouping functionality ([#485](https://github.com/apache-superset/superset-ui/issues/485)) ([4ceacfb](https://github.com/apache-superset/superset-ui/commit/4ceacfb1da28ec58695bfa7417b0157518e89cad))
+
+
+
+## [0.13.16](https://github.com/apache-superset/superset-ui/compare/v0.13.15...v0.13.16) (2020-05-19)
+
+
+### Features
+
+* **legacy-plugin-chart-event-flow:** control panel ([#501](https://github.com/apache-superset/superset-ui/issues/501)) ([34541df](https://github.com/apache-superset/superset-ui/commit/34541df50e335eccfc5b34240587d6ae16f09977))
+* **legacy-plugin-chart-force-directed:** control panel ([#502](https://github.com/apache-superset/superset-ui/issues/502)) ([bf573a0](https://github.com/apache-superset/superset-ui/commit/bf573a0240a8c05697d98d47921b5ed71ba2d2cd))
+* **legacy-plugin-chart-heatmap:** control panel ([#503](https://github.com/apache-superset/superset-ui/issues/503)) ([0111fa7](https://github.com/apache-superset/superset-ui/commit/0111fa7ed4f98a1e48b0858533ed23df1b670ecc))
+* **legacy-plugin-chart-histogram:** control panel ([#504](https://github.com/apache-superset/superset-ui/issues/504)) ([e5106ee](https://github.com/apache-superset/superset-ui/commit/e5106ee54fa12942f09f71558af7e80e7da5b26e))
+* **legacy-plugin-chart-horizon:** control panel ([#505](https://github.com/apache-superset/superset-ui/issues/505)) ([e63b079](https://github.com/apache-superset/superset-ui/commit/e63b079a43b4cc07f35321d10d530574c942c033))
+* **legacy-plugin-chart-iframe:** control panel ([#506](https://github.com/apache-superset/superset-ui/issues/506)) ([51d0894](https://github.com/apache-superset/superset-ui/commit/51d0894581542977230fceeb41e2017114b8724e))
+* **legacy-plugin-chart-map-box:** control panel ([#507](https://github.com/apache-superset/superset-ui/issues/507)) ([9f79870](https://github.com/apache-superset/superset-ui/commit/9f798709892525d8c85106d33d4d08eef05fd0fd))
+
+
+
+## [0.13.15](https://github.com/apache-superset/superset-ui/compare/v0.13.14...v0.13.15) (2020-05-18)
+
+
+### Bug Fixes
+
+* **time-format:** remove week number ([#493](https://github.com/apache-superset/superset-ui/issues/493)) ([0d13ff0](https://github.com/apache-superset/superset-ui/commit/0d13ff0f7ad13d565933a52f910278177d9318f3))
+
+
+### Features
+
+* **query:** remove redundant metric label truncation ([#492](https://github.com/apache-superset/superset-ui/issues/492)) ([5b42bc1](https://github.com/apache-superset/superset-ui/commit/5b42bc17f78d0c32ea69f9351f3f25e054911222))
+
+
+
+## [0.13.14](https://github.com/apache-superset/superset-ui/compare/v0.13.13...v0.13.14) (2020-05-14)
+
+
+### Features
+
+* **time-format:** add full-date to weekly time formatter ([#486](https://github.com/apache-superset/superset-ui/issues/486)) ([b2d0426](https://github.com/apache-superset/superset-ui/commit/b2d04267b60760f76373fc2d5d094e6102b676fe))
+
+
+
+## [0.13.13](https://github.com/apache-superset/superset-ui/compare/v0.13.12...v0.13.13) (2020-05-13)
+
+
+### Bug Fixes
+
+* **legacy-plugin-chart-nvd3:** disable bad linting rule ([#488](https://github.com/apache-superset/superset-ui/issues/488)) ([9b6d611](https://github.com/apache-superset/superset-ui/commit/9b6d61194326c8d2d2996aad7b20648f95f8a804))
+
+
+### Features
+
+* **generator-superset:** add scaffolder for chart plugin ([#456](https://github.com/apache-superset/superset-ui/issues/456)) ([f339466](https://github.com/apache-superset/superset-ui/commit/f3394666fdfe5472d353cfb83540868b7185c9df))
+* **legacy-plugin-chart-chord:** control panel ([#481](https://github.com/apache-superset/superset-ui/issues/481)) ([d82d948](https://github.com/apache-superset/superset-ui/commit/d82d948145c2fa642d62bd65ab9b9a844b5a6aff))
+* **plugin-chart-word-cloud:** allow minimum size ([#487](https://github.com/apache-superset/superset-ui/issues/487)) ([356229b](https://github.com/apache-superset/superset-ui/commit/356229be1bb620b2e98e13e72a8a5071655489b4))
+
+
+
+## [0.13.12](https://github.com/apache-superset/superset-ui/compare/v0.13.11...v0.13.12) (2020-05-13)
+
+
+### Features
+
+* **control-utils:** add shared controls + dependencies, convert to typescript ([#459](https://github.com/apache-superset/superset-ui/issues/459)) ([befe0c7](https://github.com/apache-superset/superset-ui/commit/befe0c767378d14d0e18bb690deee913274840a6))
+* **legacy-plugin-chart-markup:** add controls to markup chart ([#479](https://github.com/apache-superset/superset-ui/issues/479)) ([7801121](https://github.com/apache-superset/superset-ui/commit/780112118afd6e52b988139bf608acbf1e90cc9f))
+
+
+
+## [0.13.11](https://github.com/apache-superset/superset-ui/compare/v0.13.10...v0.13.11) (2020-05-12)
+
+
+### Features
+
+* **legacy-plugin-chart-nvd3:** add control panels ([#469](https://github.com/apache-superset/superset-ui/issues/469)) ([ad267db](https://github.com/apache-superset/superset-ui/commit/ad267dbd19637cf3988bf5732b2018d748ab7b3e))
+* **legacy-plugin-chart-partition:** add control panel  ([#470](https://github.com/apache-superset/superset-ui/issues/470)) ([b569c34](https://github.com/apache-superset/superset-ui/commit/b569c34db5b8d810154dcaa695eed8ef163ff08a))
+* **plugin-chart-boxplot:** add control panel ([#464](https://github.com/apache-superset/superset-ui/issues/464)) ([1c8b257](https://github.com/apache-superset/superset-ui/commit/1c8b257a6c081575070abf54cc52538d03b21f9f))
+* **style:** adding typographic variables to theme ([#463](https://github.com/apache-superset/superset-ui/issues/463)) ([f06cb4a](https://github.com/apache-superset/superset-ui/commit/f06cb4a98f4e79bc52be91741cf522ae2cdc328d))
+
+
+
+## [0.13.10](https://github.com/apache-superset/superset-ui/compare/v0.13.9...v0.13.10) (2020-05-08)
+
+
+### Features
+
+* **plugin-chart-treemap:** add control panel ([#461](https://github.com/apache-superset/superset-ui/issues/461)) ([8964341](https://github.com/apache-superset/superset-ui/commit/89643415da095a08dc3385c117a727bbb430c35d))
+* **plugin-chart-world-map:** add control panel ([#462](https://github.com/apache-superset/superset-ui/issues/462)) ([e914a2b](https://github.com/apache-superset/superset-ui/commit/e914a2bd71be7f87197f5505ff052606eb7b97cb))
+
+
+
+## [0.13.9](https://github.com/apache-superset/superset-ui/compare/v0.13.8...v0.13.9) (2020-05-08)
+
+
+### Bug Fixes
+
+* hundreds lint warning ([#447](https://github.com/apache-superset/superset-ui/issues/447)) ([ce0e23c](https://github.com/apache-superset/superset-ui/commit/ce0e23c65390441df7acd2f5d70f4e1797eebdca))
+
+
+### Features
+
+* **control-utils:** add infotooltipwithtrigger ([#442](https://github.com/apache-superset/superset-ui/issues/442)) ([488e945](https://github.com/apache-superset/superset-ui/commit/488e9459794b3e81d29ebe295d5c643014c7f954))
+* **plugin-chart-word-cloud:** add control panel ([#454](https://github.com/apache-superset/superset-ui/issues/454)) ([18375db](https://github.com/apache-superset/superset-ui/commit/18375db48968899e6e48a69c0014c1fd51f1e924))
+
+
+
+## [0.13.8](https://github.com/apache-superset/superset-ui/compare/v0.13.7...v0.13.8) (2020-05-07)
+
+
+### Bug Fixes
+
+* Remove .ts suffix from NVD3 imports ([#453](https://github.com/apache-superset/superset-ui/issues/453)) ([b80372d](https://github.com/apache-superset/superset-ui/commit/b80372da4c4aebe3161e5e04f245004840eca907))
+
+
+
+## [0.13.7](https://github.com/apache-superset/superset-ui/compare/v0.13.6...v0.13.7) (2020-05-06)
+
+
+### Features
+
+* **plugin-chart-sunburst:** migrate control panel from incubator-superset ([#443](https://github.com/apache-superset/superset-ui/issues/443)) ([a8a9e9c](https://github.com/apache-superset/superset-ui/commit/a8a9e9c12e074140c371abaf12eb9d6307c314a9))
+
+
+
+## [0.13.6](https://github.com/apache-superset/superset-ui/compare/v0.13.5...v0.13.6) (2020-05-06)
+
+
+### Bug Fixes
+
+* **legacy-plugin-world-map:** set useLegacyApi to true by default ([#444](https://github.com/apache-superset/superset-ui/issues/444)) ([3b9c478](https://github.com/apache-superset/superset-ui/commit/3b9c478e2190e90979f9b9982ca7a0dfa0c5a2ba))
+
+
+### Features
+
+* **query:** Add force to QueryContext ([#445](https://github.com/apache-superset/superset-ui/issues/445)) ([a243911](https://github.com/apache-superset/superset-ui/commit/a24391159dfcc4a6ce3d48ce42f98669b8b189b3))
+
+
+
+## [0.13.5](https://github.com/apache-superset/superset-ui/compare/v0.13.4...v0.13.5) (2020-04-30)
+
+
+### Bug Fixes
+
+* lint errors ([#420](https://github.com/apache-superset/superset-ui/issues/420)) ([cb54e5a](https://github.com/apache-superset/superset-ui/commit/cb54e5af5c2a2f75f5d6484da9a1c2bf3b4a81f0))
+* **plugin-chart-word-cloud:** make wordcloud take current formdata ([#428](https://github.com/apache-superset/superset-ui/issues/428)) ([80b4c3f](https://github.com/apache-superset/superset-ui/commit/80b4c3faddf611e5a0d7c9d8a8c3706a3f0779fd))
+
+
+### Features
+
+* **superset-ui:** include control utils in the umbrella package ([#421](https://github.com/apache-superset/superset-ui/issues/421)) ([c2e0bdd](https://github.com/apache-superset/superset-ui/commit/c2e0bddde251a4738c34bbc642e31b814a25576a))
+
+
+
+## [0.13.4](https://github.com/apache-superset/superset-ui/compare/v0.13.3...v0.13.4) (2020-04-30)
+
+
+### Features
+
+* **legacy-plugin-chart-big-number:** add control panel config for the BigNumber charts ([#419](https://github.com/apache-superset/superset-ui/issues/419)) ([590c4f4](https://github.com/apache-superset/superset-ui/commit/590c4f4efe3fea028f5709e3ac5a234fd95d6e92))
+
+
+
+## [0.13.3](https://github.com/apache-superset/superset-ui/compare/v0.13.2...v0.13.3) (2020-04-30)
+
+
+
+## [0.13.2](https://github.com/apache-superset/superset-ui/compare/v0.13.1...v0.13.2) (2020-04-29)
+
+
+### Bug Fixes
+
+* peer dependencies ([a3029b9](https://github.com/apache-superset/superset-ui/commit/a3029b9ddfcae1678058a73e38ab4b73220b4fb5))
+
+
+
+## [0.13.1](https://github.com/apache-superset/superset-ui/compare/v0.13.0...v0.13.1) (2020-04-29)
+
+
+### Bug Fixes
+
+* bump peer dependencies ([f873d3c](https://github.com/apache-superset/superset-ui/commit/f873d3ccdda12fc5e79503ddf18d07177d8368a1))
+
+
+# [0.13.0](https://github.com/apache-superset/superset-ui/compare/v0.12.23...v0.13.0) (2020-04-29)
+
+
+### Bug Fixes
+
+* **superset-ui-style:** export superset theme props ([#391](https://github.com/apache-superset/superset-ui/issues/391)) ([8ebe0d1](https://github.com/apache-superset/superset-ui/commit/8ebe0d1709a85e28d89d52db7d97c7cb712d20e2))
+* **superset-ui-query:** add unit tests for [#387](https://github.com/apache-superset/superset-ui/issues/387) ([#390](https://github.com/apache-superset/superset-ui/issues/390)) ([7b5e5d2](https://github.com/apache-superset/superset-ui/commit/7b5e5d2f830ff8be479b0b568b05eaf8d70db552))
+* **superset-ui-query:** make all filter operators uppercase ([#378](https://github.com/apache-superset/superset-ui/issues/378)) ([1f9e493](https://github.com/apache-superset/superset-ui/commit/1f9e49307666a1c5c75b720001fe7e8f28fc77e0))
+
+
+### Features
+
+* **control-utils:** add packages control-utils ([#417](https://github.com/apache-superset/superset-ui/issues/417)) ([2f83074](https://github.com/apache-superset/superset-ui/commit/2f8307485b6c7884e0fd2e4178e6217255749aec))
+* **preset-chart-nvd3:** migration from plugins repo ([#399](https://github.com/apache-superset/superset-ui/issues/399)) ([dbd84f2](https://github.com/apache-superset/superset-ui/commit/dbd84f272b814c7b97d06a79cea0b6c2e9e2f5d4))
+
+### BREAKING CHANGES
+
+* **plugin-word-cloud:** change how wordcloud is exported ([#418](https://github.com/apache-superset/superset-ui/issues/418)) ([c5d3893](https://github.com/apache-superset/superset-ui/commit/c5d389392681869a17be5b1922ef9f42b91eb37a))
+
+#### Old behavior
+
+exports default `WordCloudChartPlugin` from index.
+
+```ts
+import WordCloudChartPlugin from '@superset-ui/plugin-chart-word-cloud';
+```
+
+users need to deep import `/esm/legacy` to get the legacy version.
+
+```ts
+import LegacyWordCloudChartPlugin from '@superset-ui/plugin-chart-word-cloud/esm/legacy';
+```
+
+#### New behavior
+
+exports both `WordCloudChartPlugin` and `LegacyWordCloudChartPlugin` from `index`.
+
+```ts
+import { WordCloudChartPlugin, LegacyWordCloudChartPlugin } from '@superset-ui/plugin-chart-word-cloud';
+```
+
+* **preset-chart-xy:** migrate from plugins repo ([#377](https://github.com/apache-superset/superset-ui/issues/377)) ([fb5370e](https://github.com/apache-superset/superset-ui/commit/fb5370e64d4bfeb1ccd0a6f753b187a2ea95b445))
+
+Signatures of the custom renderers for legend has changed.
+
+## [0.12.23](https://github.com/apache-superset/superset-ui/compare/v0.12.22...v0.12.23) (2020-04-22)
+
+
+### Bug Fixes
+
+* unset row_limit when it's not a number ([#387](https://github.com/apache-superset/superset-ui/issues/387)) ([98b6117](https://github.com/apache-superset/superset-ui/commit/98b611792723d02d04f6b840a6c74413343a35be))
+
+
+
+## [0.12.22](https://github.com/apache-superset/superset-ui/compare/v0.12.21...v0.12.22) (2020-04-21)
+
+
+### Features
+
+* add retry to callApi ([#384](https://github.com/apache-superset/superset-ui/issues/384)) ([f4fdeb0](https://github.com/apache-superset/superset-ui/commit/f4fdeb0eb0e8abb183a0777268676faed9710013))
+* **table:** enable table filter and better typing ([#344](https://github.com/apache-superset/superset-ui/issues/344)) ([fdf6514](https://github.com/apache-superset/superset-ui/commit/fdf651408e616a99799771f267dfc5eb05fc2a01))
+
+
+
+## [0.12.21](https://github.com/apache-superset/superset-ui/compare/v0.12.20...v0.12.21) (2020-04-18)
+
+
+### Features
+
+* **legacy-plugin-chart-country-map:** migrate and replace india map ([#376](https://github.com/apache-superset/superset-ui/issues/376)) ([21a35f3](https://github.com/apache-superset/superset-ui/commit/21a35f307cd1d7310b1cd7e22dfd7262947b2bb4))
+* migrate chart plugins ([#375](https://github.com/apache-superset/superset-ui/issues/375)) ([7c8cbd8](https://github.com/apache-superset/superset-ui/commit/7c8cbd849d778b0f6dd1fab8549fc4332fc55523))
+
+
+
+## [0.12.20](https://github.com/apache-superset/superset-ui/compare/v0.12.19...v0.12.20) (2020-04-17)
+
+
+### Bug Fixes
+
+* compatible with window ([#426](https://github.com/apache-superset/superset-ui/issues/426)) ([f95e0df](https://github.com/apache-superset/superset-ui/commit/f95e0df95163b13baf6fcfd34a03481a00208d77))
+* **legacy-table:** adjust sort icon position ([#399](https://github.com/apache-superset/superset-ui/issues/399)) ([6e26242](https://github.com/apache-superset/superset-ui/commit/6e262429c2749059376422014fbeecc5ec47602b))
+* **legacy-table:** avoid React DOM ([#392](https://github.com/apache-superset/superset-ui/issues/392)) ([a1a7896](https://github.com/apache-superset/superset-ui/commit/a1a78964c26a4f1b6cf4d9b51800730e636382c9))
+* **legacy-table:** container height on tall headers ([#398](https://github.com/apache-superset/superset-ui/issues/398)) ([dece6b4](https://github.com/apache-superset/superset-ui/commit/dece6b4f930b384ab5c83a4c53ff47e17d6d8ecc))
+* **legacy-table-chart:** when data is empty ([#397](https://github.com/apache-superset/superset-ui/issues/397)) ([8829bdf](https://github.com/apache-superset/superset-ui/commit/8829bdf9d97018d292242bf10d0757cdb74b8a0e))
+* add container css for interval type annotation ([#372](https://github.com/apache-superset/superset-ui/issues/372)) ([a2cd547](https://github.com/apache-superset/superset-ui/commit/a2cd54781240156e7f2dd47940719a0a537c7605))
+* add typings for @storybook/react ([#203](https://github.com/apache-superset/superset-ui/issues/203)) ([a357487](https://github.com/apache-superset/superset-ui/commit/a3574879dfbaaa1d2bd5ab3b03f2004f25c381c6))
+* apply margins in nvd3 ([#283](https://github.com/apache-superset/superset-ui/issues/283)) ([1239052](https://github.com/apache-superset/superset-ui/commit/12390522d9af7e7a48e11b83025174cf7e86e335))
+* both the CSS and className were expecting true/false strings ([#286](https://github.com/apache-superset/superset-ui/issues/286)) ([ceb3c60](https://github.com/apache-superset/superset-ui/commit/ceb3c60b45fc2d8b377a93bdfbdee1cf2f90a2b2))
+* change world map color scheme ([#215](https://github.com/apache-superset/superset-ui/issues/215)) ([0c5b4c3](https://github.com/apache-superset/superset-ui/commit/0c5b4c39d77b9fce0b4be39a563ba63ad01d745b))
+* disable lint error ([#150](https://github.com/apache-superset/superset-ui/issues/150)) ([c490a7d](https://github.com/apache-superset/superset-ui/commit/c490a7d79abd0815bd2fd6fd4414f9ec4d75caa2))
+* fixing tooltip for expanded area chart ([#134](https://github.com/apache-superset/superset-ui/issues/134)) ([7ca5e6c](https://github.com/apache-superset/superset-ui/commit/7ca5e6c08546f2784e79e21c7947ddf08572b01e))
+* GH issue 8669 NVD3 tooltip overflow ([#278](https://github.com/apache-superset/superset-ui/issues/278)) ([e5a8dd1](https://github.com/apache-superset/superset-ui/commit/e5a8dd172cd6c05a006326cec8d78dfa970dd682))
+* JS exception: Cannot read property "dispatch" of undefined ([#287](https://github.com/apache-superset/superset-ui/issues/287)) ([52ab79c](https://github.com/apache-superset/superset-ui/commit/52ab79c24e7e7bb7fe9b314d3440abed30a5025e))
+* Line not hidden after legend selection ([#204](https://github.com/apache-superset/superset-ui/issues/204)) ([ac814f9](https://github.com/apache-superset/superset-ui/commit/ac814f99afdc0258e23cd588dd4f2a52e0facb10))
+* lint ([4d30c83](https://github.com/apache-superset/superset-ui/commit/4d30c830b8b6cff22fb4da292a3c1d7120733b50))
+* lint ([3df2999](https://github.com/apache-superset/superset-ui/commit/3df29993623fe1797aeb8b7943ee7be89f4561dc))
+* Making viz components respect D3 Format from metric ([#280](https://github.com/apache-superset/superset-ui/issues/280)) ([d38dcb9](https://github.com/apache-superset/superset-ui/commit/d38dcb91ea98d3ae2bdd34a427370708852f9d67))
+* minor wordcloud update ([e269636](https://github.com/apache-superset/superset-ui/commit/e2696367d8bcd5a6b7a6c92460bf7df9c13286bc))
+* nvd3 charts break on stateChange dispatch ([#159](https://github.com/apache-superset/superset-ui/issues/159)) ([525779d](https://github.com/apache-superset/superset-ui/commit/525779d31bf8c94c6b64936d60a518350e1ebd75))
+* nvd3 tooltip bolding/non-linebreak on ONLY header row ([#291](https://github.com/apache-superset/superset-ui/issues/291)) ([e49f082](https://github.com/apache-superset/superset-ui/commit/e49f0820e33094d6ce913132742344e0432c5205))
+* only remove tooltips relating to a single vis ([#167](https://github.com/apache-superset/superset-ui/issues/167)) ([1a58394](https://github.com/apache-superset/superset-ui/commit/1a583943d3704ead6a099dd429711e51732821a6))
+* pass all props to transformProps in LineMulti chart ([#247](https://github.com/apache-superset/superset-ui/issues/247)) ([54aec5b](https://github.com/apache-superset/superset-ui/commit/54aec5b397591d319dcf6c52892c2ea0403d526a))
+* remove redundant target from sankey tooltip ([#193](https://github.com/apache-superset/superset-ui/issues/193)) ([c4b6ed2](https://github.com/apache-superset/superset-ui/commit/c4b6ed20747a0a4e6b63dd49a0d9bcf353ee9c4e))
+* Replace unsafe lifecycle methods ([#285](https://github.com/apache-superset/superset-ui/issues/285)) ([06051ef](https://github.com/apache-superset/superset-ui/commit/06051efbfbb7b113b871d1e03742a01dda5d97b7))
+* Sunburst chart respects and prefers Metric's D3 Format ([#282](https://github.com/apache-superset/superset-ui/issues/282)) ([ee4deb2](https://github.com/apache-superset/superset-ui/commit/ee4deb2e7dbc59488bb08ed0b50eafba33cb5a6e))
+* **adjusted upstream break change:** adjusted upstream break change ([bc198a6](https://github.com/apache-superset/superset-ui/commit/bc198a6342e31171746bf92af335415e7736831b))
+* **bump lunar version of datatable:** bump lunar version of datatable ([3bd5c4a](https://github.com/apache-superset/superset-ui/commit/3bd5c4ac07f986d6c21ba00bf7f8c6867193b840))
+* **datatable:** adding the consideration of padding ([#198](https://github.com/apache-superset/superset-ui/issues/198)) ([8b1305f](https://github.com/apache-superset/superset-ui/commit/8b1305f4fbe8ac1e34d20bb0fc46b312defd634d))
+* **fix issues in superset:** fix issues in superset ([efb6ad9](https://github.com/apache-superset/superset-ui/commit/efb6ad95335e3d059d82468936bb5833258a430e))
+* **fix types:** fix types ([1163b50](https://github.com/apache-superset/superset-ui/commit/1163b504878d5911bd06faaaf97b44653d02ef33))
+* **force to publish new version:** force to publish new version ([55c7510](https://github.com/apache-superset/superset-ui/commit/55c7510f804608ae94424c7b2f6c0c401011f99a))
+* **legacy-plugin-chart-horizon:** horizon chart should scroll when overflowing ([#180](https://github.com/apache-superset/superset-ui/issues/180)) ([38506b9](https://github.com/apache-superset/superset-ui/commit/38506b9166fb687bc4cbd256f93e107cfbd1ce4a))
+* **memorize filter in state:** memorize filter in state ([880d18c](https://github.com/apache-superset/superset-ui/commit/880d18c4f1396fe2941f6db0555848c36b5d8bc0))
+* **table:** fix rendering boolean ([#256](https://github.com/apache-superset/superset-ui/issues/256)) ([faa11ac](https://github.com/apache-superset/superset-ui/commit/faa11ac96a58a80e91ca20e98f7e078b10099119))
+* **table:** fix sorting, column width calculation, and text wrapping ([#253](https://github.com/apache-superset/superset-ui/issues/253)) ([12dd847](https://github.com/apache-superset/superset-ui/commit/12dd847851acd97fe531f0b97784e437773a4596))
+* **table:** fixed performance issue ([#241](https://github.com/apache-superset/superset-ui/issues/241)) ([c68f9d7](https://github.com/apache-superset/superset-ui/commit/c68f9d7fa8990d2010b3a824de912e43ace1bf58))
+* **table:** TableVis dynamic height enabled ([#229](https://github.com/apache-superset/superset-ui/issues/229)) ([bd4efa3](https://github.com/apache-superset/superset-ui/commit/bd4efa3d963268b4e57fb63874449a39c6819c33)), closes [#233](https://github.com/apache-superset/superset-ui/issues/233)
+* **tablevis:** Set proper width for each column ([#189](https://github.com/apache-superset/superset-ui/issues/189)) ([1a28e7f](https://github.com/apache-superset/superset-ui/commit/1a28e7f1d6e1169e82d53ba2de59bdb9718f012d))
+* 🐛 broken unit test due to missing babel-polyfill ([b6c62df](https://github.com/apache-superset/superset-ui/commit/b6c62dff2f7f1182c96389772cb77483ffdd6786))
+* bar label for many bars and long labels ([#21](https://github.com/apache-superset/superset-ui/issues/21)) ([97a35dd](https://github.com/apache-superset/superset-ui/commit/97a35dd5d8889097e4e9e04857d88d4f8dd49689))
+* big number with trendline fix ([#34](https://github.com/apache-superset/superset-ui/issues/34)) ([912d076](https://github.com/apache-superset/superset-ui/commit/912d0765922cd9e16a2879bcd89f2a0c44174e6a))
+* broken build due to file rename in vega-lite ([#37](https://github.com/apache-superset/superset-ui/issues/37)) ([8722dad](https://github.com/apache-superset/superset-ui/commit/8722dad9ca34f6ff4c2e47710d89867c894b847e))
+* broken build due to vega type ([#96](https://github.com/apache-superset/superset-ui/issues/96)) ([1bcaa7f](https://github.com/apache-superset/superset-ui/commit/1bcaa7faaded6bbfe60c43afcb6131f29088b506))
+* convert scale config to data-ui's config correctly ([#115](https://github.com/apache-superset/superset-ui/issues/115)) ([8e8b724](https://github.com/apache-superset/superset-ui/commit/8e8b724e9cde80d9867b5b7b7c187aa5702c2f54))
+* disable lazy import for line chart and box plot ([#82](https://github.com/apache-superset/superset-ui/issues/82)) ([a254f68](https://github.com/apache-superset/superset-ui/commit/a254f68654e211d33510505db6f14108764b827c))
+* dual line chart color consistency for secondary y axis ([#18](https://github.com/apache-superset/superset-ui/issues/18)) ([41701b9](https://github.com/apache-superset/superset-ui/commit/41701b997ce9a17b0474e596cccb04ae552eacc2))
+* exception thrown for charts without a x-axis ([#36](https://github.com/apache-superset/superset-ui/issues/36)) ([3e45f2e](https://github.com/apache-superset/superset-ui/commit/3e45f2e3048a0683b98e947e685e92a4bd4c320b))
+* fine tune time pivot chart tooltip ([#33](https://github.com/apache-superset/superset-ui/issues/33)) ([088c5bb](https://github.com/apache-superset/superset-ui/commit/088c5bb19c706417159efdf185b0e5f7eff441a1))
+* gradient not working when y axis title has space ([#98](https://github.com/apache-superset/superset-ui/issues/98)) ([b0a342a](https://github.com/apache-superset/superset-ui/commit/b0a342afca75d159615c3a72e7be070f5ce40cb5))
+* gridlines ([a788b48](https://github.com/apache-superset/superset-ui/commit/a788b48ff601022c320576f429ec08bb2f1d0445))
+* heatmap errors with null data ([d773983](https://github.com/apache-superset/superset-ui/commit/d7739832079237c510dada44d9438f27e263719b))
+* ignore disabled series in stacked bar values ([#116](https://github.com/apache-superset/superset-ui/issues/116)) ([6d56d92](https://github.com/apache-superset/superset-ui/commit/6d56d92825e484fb6f5d564868638f9d60a3179d))
+* invalid margin breaking chart ([#102](https://github.com/apache-superset/superset-ui/issues/102)) ([6aa8d00](https://github.com/apache-superset/superset-ui/commit/6aa8d0058216b95b52db5c1b9db1a327c6cf2a5a))
+* lazily create metadata ([#74](https://github.com/apache-superset/superset-ui/issues/74)) ([9b8c83b](https://github.com/apache-superset/superset-ui/commit/9b8c83b23af912615e0a1752a068c283a64b8895))
+* legend types ([2309c44](https://github.com/apache-superset/superset-ui/commit/2309c44a46bea260dd4d563629a0bbb4d9870384))
+* line chart tooltip should use full datetime format ([#24](https://github.com/apache-superset/superset-ui/issues/24)) ([dfb6599](https://github.com/apache-superset/superset-ui/commit/dfb65994138e60f7ce562799c35bcc1b6af73a2e))
+* line chart tooltip when there is only one lien ([#103](https://github.com/apache-superset/superset-ui/issues/103)) ([c1ac4ab](https://github.com/apache-superset/superset-ui/commit/c1ac4ab5430ce5e16c9b65c9f4a6dff45efdc323))
+* lint ([3cb3b8e](https://github.com/apache-superset/superset-ui/commit/3cb3b8ea51322b6824e7f74173010b1aac6b0c1b))
+* lint ([#79](https://github.com/apache-superset/superset-ui/issues/79)) ([67e30a6](https://github.com/apache-superset/superset-ui/commit/67e30a65595a8a949cca7f7b524d203b709ad993))
+* list css as side effects ([#57](https://github.com/apache-superset/superset-ui/issues/57)) ([b743960](https://github.com/apache-superset/superset-ui/commit/b743960ce1f054bb43f805970d61a55a65adcd71))
+* make pivot table handle null string ([#23](https://github.com/apache-superset/superset-ui/issues/23)) ([5746975](https://github.com/apache-superset/superset-ui/commit/5746975fd85c50a296b018d32e1ce35a80bfe5b3))
+* move react to table peerdependency ([#179](https://github.com/apache-superset/superset-ui/issues/179)) ([92028c2](https://github.com/apache-superset/superset-ui/commit/92028c2ce6fe381724d7b6e6d942149cc93e612b))
+* move series in front of xy gridlines ([#119](https://github.com/apache-superset/superset-ui/issues/119)) ([32850ef](https://github.com/apache-superset/superset-ui/commit/32850efb828cd9a5865f92c7a4a08325120f6396))
+* **preset-chart-xy:** Pick LegendRenderer ([#118](https://github.com/apache-superset/superset-ui/issues/118)) ([d10eba0](https://github.com/apache-superset/superset-ui/commit/d10eba0631445f127532c3b1de0379d075a110df))
+* **tablevis:** update datatable change ([9846de5](https://github.com/apache-superset/superset-ui/commit/9846de551744987964d801649f8c82973a856936))
+* line chart does not handle temporal field correctly ([#68](https://github.com/apache-superset/superset-ui/issues/68)) ([93e040f](https://github.com/apache-superset/superset-ui/commit/93e040f1955f17f2c79f2554848ff94b4e5ae152))
+* make line chart query operate in time series mode ([#71](https://github.com/apache-superset/superset-ui/issues/71)) ([b732022](https://github.com/apache-superset/superset-ui/commit/b732022ce10102c64497c0d718ea88a63959d750))
+* move padding ([b5f00a5](https://github.com/apache-superset/superset-ui/commit/b5f00a58b030f5b89b64cb8e153427fcb6e265cc))
+* nvd3 line chart y axis bounds ([#17](https://github.com/apache-superset/superset-ui/issues/17)) ([d8655c7](https://github.com/apache-superset/superset-ui/commit/d8655c7d38f0424012fc3747bb6c1dfbda2fa540))
+* remove sticky tooltip when query returns no data in explore view ([#42](https://github.com/apache-superset/superset-ui/issues/42)) ([4e5b8d3](https://github.com/apache-superset/superset-ui/commit/4e5b8d3c4ad8a30dbbaeed2dcb56b1518de6012d))
+* rename file from js to ts ([#75](https://github.com/apache-superset/superset-ui/issues/75)) ([b9f5059](https://github.com/apache-superset/superset-ui/commit/b9f5059ed2ca4da901a58e90068ac6abe220f38f))
+* resolve issues post `0.10.0` ([bdd647a](https://github.com/apache-superset/superset-ui/commit/bdd647ad78c0a4e7a56830da214be333a10c407c))
+* responsive y-axis on stacked charts ([#141](https://github.com/apache-superset/superset-ui/issues/141)) ([c85b149](https://github.com/apache-superset/superset-ui/commit/c85b14984d62fa79228fb742bbf06e2028da4a0d))
+* scale type category missing ordinal ([9d0b2da](https://github.com/apache-superset/superset-ui/commit/9d0b2da69dcf6b4d482043cdb3617e6961190f7f))
+* show only necessary tick labels on log scale ([#19](https://github.com/apache-superset/superset-ui/issues/19)) ([f642031](https://github.com/apache-superset/superset-ui/commit/f642031ea18b0933d2609b1834db2a5da2da8424))
+* single y axis bounds ([#148](https://github.com/apache-superset/superset-ui/issues/148)) ([c58270b](https://github.com/apache-superset/superset-ui/commit/c58270bed03d1ff4f453d1e95d83b8317f7e51c4))
+* use correct number format ([#47](https://github.com/apache-superset/superset-ui/issues/47)) ([2ea399d](https://github.com/apache-superset/superset-ui/commit/2ea399d616177c1a935027f6c26562a85674f65d))
+* word cloud import bug ([#65](https://github.com/apache-superset/superset-ui/issues/65)) ([eeb722e](https://github.com/apache-superset/superset-ui/commit/eeb722e0e33bd365de84b87ac7fc7c4b798156ef))
+* y axis bounds when input are nan ([#22](https://github.com/apache-superset/superset-ui/issues/22)) ([545fd81](https://github.com/apache-superset/superset-ui/commit/545fd813caa5817109466590b060a81a27237f71))
+* y-axis bounds for stacked viz types ([#45](https://github.com/apache-superset/superset-ui/issues/45)) ([eaa2425](https://github.com/apache-superset/superset-ui/commit/eaa24256ea5a287e3021b628e5be352a54ab1da0))
+* **legacy-preset-chart-nvd3:** redraw bar values after legend change ([#7](https://github.com/apache-superset/superset-ui/issues/7)) ([620ad2f](https://github.com/apache-superset/superset-ui/commit/620ad2f2bfe5e4f4848810bedd3061d76f68f600))
+* **legacy-preset-chart-nvd3:** redraw markers after legend interaction ([#6](https://github.com/apache-superset/superset-ui/issues/6)) ([c5df555](https://github.com/apache-superset/superset-ui/commit/c5df555d801f03a30b22dafdb7d30d4e4ec971cd))
+* **legacy-preset-chart-nvd3:** stacked bar charts labels ([#40](https://github.com/apache-superset/superset-ui/issues/40)) ([744f7c8](https://github.com/apache-superset/superset-ui/commit/744f7c8f7234ffaebb31134750b69369a21e5a62))
+* **legacy-preset-chart-nvd3:** tooltip's disappearance and stickiness ([#1](https://github.com/apache-superset/superset-ui/issues/1)) ([d1a2a59](https://github.com/apache-superset/superset-ui/commit/d1a2a597a55f94a87c82fef62d048f25e4eff125))
+
+
+### Features
+
+* migrate xy-chart to use encodable ([#438](https://github.com/apache-superset/superset-ui/issues/438)) ([500e0c2](https://github.com/apache-superset/superset-ui/commit/500e0c2e7f9f4543922b1cd8f56435d28c0dc161)), closes [#420](https://github.com/apache-superset/superset-ui/issues/420) [#421](https://github.com/apache-superset/superset-ui/issues/421) [#427](https://github.com/apache-superset/superset-ui/issues/427) [#430](https://github.com/apache-superset/superset-ui/issues/430) [#432](https://github.com/apache-superset/superset-ui/issues/432) [#433](https://github.com/apache-superset/superset-ui/issues/433) [#436](https://github.com/apache-superset/superset-ui/issues/436)
+* **big-number:** allow fallback to last available value and fix time range for trend lines ([#403](https://github.com/apache-superset/superset-ui/issues/403)) ([c839ee7](https://github.com/apache-superset/superset-ui/commit/c839ee7617f5ece0f3cc91dfa7f6a9f8a8b816cd))
+* **big-number:** format datetime according to granularity ([#402](https://github.com/apache-superset/superset-ui/issues/402)) ([b17a363](https://github.com/apache-superset/superset-ui/commit/b17a363a6e8d093381f496801eb9eee486cdcab8))
+* 🎸 line chart makes first appearance ([df727b6](https://github.com/apache-superset/superset-ui/commit/df727b6d1a4e35d3e08f13884737d88a3922945f))
+* add box plot ([#78](https://github.com/apache-superset/superset-ui/issues/78)) ([5f21ffd](https://github.com/apache-superset/superset-ui/commit/5f21ffd11177ad44a0a6e0bc35f6986b6babee37))
+* add country map of bulgaria in superset-ui-legacy-plugin-chart-country-map ([#2](https://github.com/apache-superset/superset-ui/issues/2)) ([ba113c2](https://github.com/apache-superset/superset-ui/commit/ba113c2056958ec0c0a84dafff74952377a45c53))
+* add encodeable utilities for chart ([#15](https://github.com/apache-superset/superset-ui/issues/15)) ([3f68efb](https://github.com/apache-superset/superset-ui/commit/3f68efb593553f9315b6c5f40500a2b80212971a))
+* add india to country_map visualization ([#182](https://github.com/apache-superset/superset-ui/issues/182)) ([e16a967](https://github.com/apache-superset/superset-ui/commit/e16a96724b3e3679667b09a7aa0c608b0d7d047d))
+* Add Iran to countries ([#306](https://github.com/apache-superset/superset-ui/issues/306)) ([5cb5c6d](https://github.com/apache-superset/superset-ui/commit/5cb5c6d96c872e44ad632b0d9cd2f69ef8ea3f5a))
+* add Korea(South) to Country Maps ([#230](https://github.com/apache-superset/superset-ui/issues/230)) ([7ca4b8d](https://github.com/apache-superset/superset-ui/commit/7ca4b8dec0ce044a79f06f63f7dcd7cd12180c02))
+* add Liechtenstein to country map chart ([#263](https://github.com/apache-superset/superset-ui/issues/263)) ([fd1c7af](https://github.com/apache-superset/superset-ui/commit/fd1c7afe8aabd5e86026763810797ebebc205887))
+* add properties for font sizing ([#10](https://github.com/apache-superset/superset-ui/issues/10)) ([47b5eff](https://github.com/apache-superset/superset-ui/commit/47b5eff678de2f437fdc4edb3ce67626e2565087))
+* add sankey chart with loops ([#77](https://github.com/apache-superset/superset-ui/issues/77)) ([246c336](https://github.com/apache-superset/superset-ui/commit/246c33659521e5e349c8e0a0aabdb46e5592d306))
+* add scatter plot ([#90](https://github.com/apache-superset/superset-ui/issues/90)) ([1ffeb77](https://github.com/apache-superset/superset-ui/commit/1ffeb7713dbe2f42f55f7ef690593e8434ee98bf))
+* add tooltip and layout components for charts ([#13](https://github.com/apache-superset/superset-ui/issues/13)) ([27227eb](https://github.com/apache-superset/superset-ui/commit/27227ebddceee461a3b22e432bf6d589df8a49e4))
+* add typescript declaration for external packages ([#12](https://github.com/apache-superset/superset-ui/issues/12)) ([79ae24d](https://github.com/apache-superset/superset-ui/commit/79ae24db979d395095743bd712fbcb864c7e2dd6))
+* adding Canada into the list of country map choices ([#48](https://github.com/apache-superset/superset-ui/issues/48)) ([9b91465](https://github.com/apache-superset/superset-ui/commit/9b914654879d277932562d775a6956e64d3566e3))
+* customize no data message in nvd3 charts ([#330](https://github.com/apache-superset/superset-ui/issues/330)) ([4e60731](https://github.com/apache-superset/superset-ui/commit/4e607314951483472a698f7f57c5a0636352d6ca))
+* simply the data processing logic ([604fd44](https://github.com/apache-superset/superset-ui/commit/604fd442ad77d6e8a0fe2f5684552565f065441f))
+* support no data within BigNumber viz ([#327](https://github.com/apache-superset/superset-ui/issues/327)) ([6cc5619](https://github.com/apache-superset/superset-ui/commit/6cc56195f834c652a0fc4edeb934b23e84206641))
+* **added search bar:** added search bar ([f4afc22](https://github.com/apache-superset/superset-ui/commit/f4afc226640c2f8d45823c3ea322cde1328ef3b9))
+* **code refactoring:** code refactoring ([e46c829](https://github.com/apache-superset/superset-ui/commit/e46c8291ac9066f8f41450e3b1b8e590ca19159d))
+* **datatable:** render html correctly ([#199](https://github.com/apache-superset/superset-ui/issues/199)) ([589024b](https://github.com/apache-superset/superset-ui/commit/589024bea68f512871502c31faa54970688bc5ca))
+* **legacy-plugin-chart-country-map:** add Switzerland to country map chart ([#260](https://github.com/apache-superset/superset-ui/issues/260)) ([046c102](https://github.com/apache-superset/superset-ui/commit/046c102f95e268a7427e03dda32f9f09ba0eb3c6))
+* **plugin-chart-word-cloud:** convert word cloud to use encodable ([#258](https://github.com/apache-superset/superset-ui/issues/258)) ([75141fe](https://github.com/apache-superset/superset-ui/commit/75141fe30046bb12621921b5d44c90f257323a89))
+* add basic functionality for icicle chart to display static data ([#165](https://github.com/apache-superset/superset-ui/issues/165)) ([50e9df5](https://github.com/apache-superset/superset-ui/commit/50e9df5dd1dd10a51e6bc75eb80433a747f8c0a6))
+* add getDomain to ChannelEncoder ([2321aaf](https://github.com/apache-superset/superset-ui/commit/2321aaf370856ae8d6343d9215232bab910f1dd3))
+* add types to published list ([0624be5](https://github.com/apache-superset/superset-ui/commit/0624be53f82b9579b9a75e115898e6753194ee99))
+* allow boolean as axis config ([ab0cc0b](https://github.com/apache-superset/superset-ui/commit/ab0cc0b91b9ec26c6ccf7b40e6ccd148bac1e5c6))
+* allow legend overrides at multiple levels ([#81](https://github.com/apache-superset/superset-ui/issues/81)) ([034eda1](https://github.com/apache-superset/superset-ui/commit/034eda1fac618f22c1c8450e5b8ab53642b75098))
+* allow overriding ChartLegend, its style and LegendGroup style ([#112](https://github.com/apache-superset/superset-ui/issues/112)) ([105cf0f](https://github.com/apache-superset/superset-ui/commit/105cf0f6b70e8c28408c2004c01dafa8c373af5b))
+* bring lazy import back ([#84](https://github.com/apache-superset/superset-ui/issues/84)) ([d14e5ba](https://github.com/apache-superset/superset-ui/commit/d14e5bad8364aaf3ecaf7975079f98c0e51c2b79))
+* bump data-ui/xy-chart version ([2111e3a](https://github.com/apache-superset/superset-ui/commit/2111e3a1264d63d8c6eafc7d564fd947bc6854ec))
+* bump dependencies ([814966f](https://github.com/apache-superset/superset-ui/commit/814966fff149c16aa147d77951cff854f3856348))
+* channels can take array of definitions ([2a04891](https://github.com/apache-superset/superset-ui/commit/2a048910aaf09c3218517b42dd13dba6219e596e))
+* create reusable selector factory for Encoder ([a0097fc](https://github.com/apache-superset/superset-ui/commit/a0097fc6d4c0f2627ce24829f13b1b5f48fcd695))
+* file skeleton necessary for icicle chart visualization ([#162](https://github.com/apache-superset/superset-ui/issues/162)) ([83190f0](https://github.com/apache-superset/superset-ui/commit/83190f05afd0156810e6b77b6d5dd8be6b39872d))
+* implement labelFlush behavior for continuous axes ([#117](https://github.com/apache-superset/superset-ui/issues/117)) ([a747ea4](https://github.com/apache-superset/superset-ui/commit/a747ea4c222f9a4b1dab5958b29524112bd34ba4))
+* improve line chart margin/axis and add buildquery ([#66](https://github.com/apache-superset/superset-ui/issues/66)) ([5887ade](https://github.com/apache-superset/superset-ui/commit/5887adec71ff1edd2e1cf72ee140ac9eb5662b0b))
+* improve table performance ([#246](https://github.com/apache-superset/superset-ui/issues/246)) ([082ff23](https://github.com/apache-superset/superset-ui/commit/082ff2345ba676c3e592d9d6b2d5dd98c32c71ec))
+* improve the tooltip for the time pivot chart ([#30](https://github.com/apache-superset/superset-ui/issues/30)) ([ff06cb5](https://github.com/apache-superset/superset-ui/commit/ff06cb5704772b78242e53aa2f23e30cce346037))
+* increment the version number ([#44](https://github.com/apache-superset/superset-ui/issues/44)) ([db64322](https://github.com/apache-superset/superset-ui/commit/db6432272a46e0d20d0fb5b7c781db25a3a5b51d))
+* integrate line chart with build query and update typings ([#73](https://github.com/apache-superset/superset-ui/issues/73)) ([9cbbe6e](https://github.com/apache-superset/superset-ui/commit/9cbbe6ed6bf0d6fb48711bef822652fe34eaca46))
+* line chart with revised encodeable utilities ([#26](https://github.com/apache-superset/superset-ui/issues/26)) ([8380c93](https://github.com/apache-superset/superset-ui/commit/8380c934db72fb9e17c5379d50b63f28c740f061))
+* remove children from XYChartLayout parameter ([3a889d2](https://github.com/apache-superset/superset-ui/commit/3a889d25a7ff4c352a3125e633912c2d77a64324))
+* simplify Encoder creation ([e858bcc](https://github.com/apache-superset/superset-ui/commit/e858bcc76584b06c17bda9116b4c9a8cde6bab5b))
+* support custom tooltip for scatterplot and box plot ([8733c01](https://github.com/apache-superset/superset-ui/commit/8733c01481ce31a52a44f799a06683cbb61960c1))
+* support line strokeWidth ([#105](https://github.com/apache-superset/superset-ui/issues/105)) ([cbd7368](https://github.com/apache-superset/superset-ui/commit/cbd736869c03029314c6f000b9e6cb19d5d8a7fc))
+* support tooltip and legend overrides ([#101](https://github.com/apache-superset/superset-ui/issues/101)) ([c63edcd](https://github.com/apache-superset/superset-ui/commit/c63edcd65b8fb2a5d76a15f492515008407069d3))
+* update dependencies to make plugins compatible with 0.11 ([#38](https://github.com/apache-superset/superset-ui/issues/38)) ([93379f4](https://github.com/apache-superset/superset-ui/commit/93379f47f3a4b2b95cf92d0e783f7284b265ab3b))
+* update line chart thumbnail and scale extraction ([#61](https://github.com/apache-superset/superset-ui/issues/61)) ([11ef47e](https://github.com/apache-superset/superset-ui/commit/11ef47e609382c6d23a93674acd0ea0ac2712c62))
+* update type for line chart series ([#175](https://github.com/apache-superset/superset-ui/issues/175)) ([826dad9](https://github.com/apache-superset/superset-ui/commit/826dad99e5b5b0af6de2509e935f6c2b35d52414))
+* upgrade [@superset-ui](https://github.com/superset-ui) to v0.12 ([#183](https://github.com/apache-superset/superset-ui/issues/183)) ([c0133f7](https://github.com/apache-superset/superset-ui/commit/c0133f7f240fb10c77bdf24a9475175b0dae0ea3))
+* **legacy-preset-chart-nvd3:** show negative values on bars ([#8](https://github.com/apache-superset/superset-ui/issues/8)) ([39cfe71](https://github.com/apache-superset/superset-ui/commit/39cfe718be658a045c445325071b079587cc1555))
+* **remove unused package:** remove corejs and other unused package ([2cdf2f6](https://github.com/apache-superset/superset-ui/commit/2cdf2f663f1403381da41eab4eb8a75f2b9274ef))
+* **tablevis:** this pr is to add a new tablevis plguin to the system ([66a9d26](https://github.com/apache-superset/superset-ui/commit/66a9d269e28b5289363da9902f11c5ea01c47e2a))
+* update data format returned from query api and add getGroupBys ([#72](https://github.com/apache-superset/superset-ui/issues/72)) ([084ea37](https://github.com/apache-superset/superset-ui/commit/084ea377669709752aa5af5f89fd5950b2a131ee))
+* update tooltip and use selector ([#31](https://github.com/apache-superset/superset-ui/issues/31)) ([1cf7a22](https://github.com/apache-superset/superset-ui/commit/1cf7a22442540e00a5365c79aa3bf358b285c060))
+
+
+### Performance Improvements
+
+* faster legacy table chart ([#385](https://github.com/apache-superset/superset-ui/issues/385)) ([42fa821](https://github.com/apache-superset/superset-ui/commit/42fa821232c2c4ab350ff6c27b76bac706e56749)), closes [/github.com/DataTables/DataTables/blob/83657a29e33ce93ee940ce25684940eb3acb2913/media/js/jquery.dataTables.js#L3113-L3117](https://github.com//github.com/DataTables/DataTables/blob/83657a29e33ce93ee940ce25684940eb3acb2913/media/js/jquery.dataTables.js/issues/L3113-L3117)
+
+
+
+## [0.12.19](https://github.com/apache-superset/superset-ui/compare/v0.12.18...v0.12.19) (2020-04-17)
+
+
+### Bug Fixes
+
+* lint ([ec73623](https://github.com/apache-superset/superset-ui/commit/ec73623181d24241abe5e484d26a61ae17f99689))
+
+
+### Features
+
+* **legacy-plugin-chart-paired-t-test:** migrate from another repo ([7cd0363](https://github.com/apache-superset/superset-ui/commit/7cd0363c70f294f9127f672eb4e464320d6e8243))
+* **legacy-plugin-chart-parallel-coordinates:** migrate from another repo ([52e7119](https://github.com/apache-superset/superset-ui/commit/52e711950a01e96a36530cb77b5388b205ee251e))
+* **legacy-plugin-chart-partition:** migrate from another repo ([1ab9fea](https://github.com/apache-superset/superset-ui/commit/1ab9feac7f9d52435ce61690abd30540442e477e))
+* **legacy-plugin-chart-pivot-table:** migrate from another repo ([d631b17](https://github.com/apache-superset/superset-ui/commit/d631b17597483f981f5de67d2c482e8fae94dc55))
+* **style:** add style to umbrella package ([#366](https://github.com/apache-superset/superset-ui/issues/366)) ([4ab96f3](https://github.com/apache-superset/superset-ui/commit/4ab96f34b3dd5768a6f40d777147b9b8e6f13222))
+* migrate heatmap, horizon, iframe and markup ([#367](https://github.com/apache-superset/superset-ui/issues/367)) ([152e457](https://github.com/apache-superset/superset-ui/commit/152e4577ab7c8aedc76a3b1e83bf7f2867c6de79))
+
+
+
+## [0.12.18](https://github.com/apache-superset/superset-ui/compare/v0.12.17...v0.12.18) (2020-04-15)
+
+
+### Features
+
+* migrate legacy-plugin-chart-chord ([#365](https://github.com/apache-superset/superset-ui/issues/365)) ([ea31f9f](https://github.com/apache-superset/superset-ui/commit/ea31f9f46b260e347907c3b6cbf27ceed9ed219d))
+
+
+
+## [0.12.17](https://github.com/apache-superset/superset-ui/compare/v0.12.16...v0.12.17) (2020-04-15)
+
+
+### Bug Fixes
+
+* publish settings ([341c122](https://github.com/apache-superset/superset-ui/commit/341c122cb4f2b59c31b590a9146cf9976597888d))
+
+
+
+## [0.12.16](https://github.com/apache-superset/superset-ui/compare/v0.12.15...v0.12.16) (2020-04-15)
+
+
+### Features
+
+* style package for theming and styled components ([#362](https://github.com/apache-superset/superset-ui/issues/362)) ([316c913](https://github.com/apache-superset/superset-ui/commit/316c913afc8d571bf2d30004b3254c977bf59d2b))
+
+
+## [0.12.15](https://github.com/apache-superset/superset-ui/compare/v0.12.14...v0.12.15) (2020-04-13)
+
+
+### Features
+
+* make CategoricalScale compatible with D3 ScaleOrdinal ([#357](https://github.com/apache-superset/superset-ui/issues/357)) ([b802974](https://github.com/apache-superset/superset-ui/commit/b8029741d87b97f93d8bf43c649983f14693635d))
+* make time formatter handle number and fix formatters type warnings ([#358](https://github.com/apache-superset/superset-ui/issues/358)) ([aaf17ac](https://github.com/apache-superset/superset-ui/commit/aaf17ac0a5da7895796ca4f3dde75e7c259b1d9b))
+
+
+
+## [0.12.14](https://github.com/apache-superset/superset-ui/compare/v0.12.13...v0.12.14) (2020-04-13)
+
+
+### Features
+
+* add calendar package and storybook ([#356](https://github.com/apache-superset/superset-ui/issues/356)) ([daf47bd](https://github.com/apache-superset/superset-ui/commit/daf47bd03f78adde3d5eb003cda0d7071c3473da))
+* allow toggling of table viz's bar chart backgrounds ([#352](https://github.com/apache-superset/superset-ui/issues/352)) ([5d5ade9](https://github.com/apache-superset/superset-ui/commit/5d5ade93d4f2fd3d5b8ae52823d26d51aef6fead))
+
+
+
+## [0.12.13](https://github.com/apache-superset/superset-ui/compare/v0.12.12...v0.12.13) (2020-04-07)
+
+
+### Bug Fixes
+
+* **legacy-plugin-chart-table:** time column formating ([#340](https://github.com/apache-superset/superset-ui/issues/340)) ([6c7f710](https://github.com/apache-superset/superset-ui/commit/6c7f7106cc0e84eacd16f7f2e86ffc619ffe075a))
+* new line at end ([e8d59e5](https://github.com/apache-superset/superset-ui/commit/e8d59e532c0e7f0ecccebaed26ee6b9d4e309f28))
+
+
+### Features
+
+* add validator to umbrella package ([#327](https://github.com/apache-superset/superset-ui/issues/327)) ([b1a02b9](https://github.com/apache-superset/superset-ui/commit/b1a02b9ef64a70b7fb3d5dc9a599ea337866aba4))
+
+
+### Reverts
+
+* Revert "build: try to merge superset-ui-plugins" ([6be7b2f](https://github.com/apache-superset/superset-ui/commit/6be7b2f007fc241fbf641553d5852db778588fda))
+* Revert "build: clean up tsbuild.info, too" ([39d983a](https://github.com/apache-superset/superset-ui/commit/39d983a9a5ac1819f23cd1a547a8d0fbe54d29a8))
+
+
+
+## [0.12.12](https://github.com/apache-superset/superset-ui/compare/v0.12.11...v0.12.12) (2020-04-01)
+
+
+### Features
+
+* add validator package ([#322](https://github.com/apache-superset/superset-ui/issues/322)) ([ea78a4e](https://github.com/apache-superset/superset-ui/commit/ea78a4e41a9e1e4b7f3fb86c9d61020c89652804))
+
+
+
+## [0.12.11](https://github.com/apache-superset/superset-ui/compare/v0.12.10...v0.12.11) (2020-03-06)
+
+
+### Bug Fixes
+
+* small rendering for no results message ([#309](https://github.com/apache-superset/superset-ui/issues/309)) ([e7ff68c](https://github.com/apache-superset/superset-ui/commit/e7ff68c48d2d3e1a7df30967a74c7695d3837894))
+
+
+
+## [0.12.10](https://github.com/apache-superset/superset-ui/compare/v0.12.9...v0.12.10) (2020-03-04)
+
+
+### Features
+
+* add more support for undefined format to number and time formatters ([#308](https://github.com/apache-superset/superset-ui/issues/308)) ([44ad062](https://github.com/apache-superset/superset-ui/commit/44ad062dd02d080362dac28782c0327cc9fa3445))
+
+
+
+## [0.12.9](https://github.com/apache-superset/superset-ui/compare/v0.12.8...v0.12.9) (2020-03-04)
+
+
+### Features
+
+* make formatTime and formatNumber handle undefined format ([#307](https://github.com/apache-superset/superset-ui/issues/307)) ([768cfd5](https://github.com/apache-superset/superset-ui/commit/768cfd5f627a82b5dfcc0546001a54aa0ff0323c))
+
+
+
+## [0.12.8](https://github.com/apache-superset/superset-ui/compare/v0.12.7...v0.12.8) (2020-03-04)
+
+
+### Features
+
+* add NoResultsComponent to charts ([#305](https://github.com/apache-superset/superset-ui/issues/305)) ([42060a0](https://github.com/apache-superset/superset-ui/commit/42060a0e7addd808153f13a27947310f2a7a477d))
+* **number-format:** bump pretty-ms to 5.1.0 ([#262](https://github.com/apache-superset/superset-ui/issues/262)) ([0d3746e](https://github.com/apache-superset/superset-ui/commit/0d3746ea254d8d957cc3a3ba21dfd4cbc405c55a))
+
+
+
+## [0.12.7](https://github.com/apache-superset/superset-ui/compare/v0.12.6...v0.12.7) (2019-11-20)
+
+
+### Bug Fixes
+
+* **dimension:** set 0 width/height in createHiddenSvgNode ([#261](https://github.com/apache-superset/superset-ui/issues/261)) ([7170f48](https://github.com/apache-superset/superset-ui/commit/7170f4826a79c5cf90ffc45247821872785d2f66))
+
+
+
+## [0.12.6](https://github.com/apache-superset/superset-ui/compare/v0.12.5...v0.12.6) (2019-11-20)
+
+
+### Bug Fixes
+
+* typing issues surfaced by typescript 3.7 ([#260](https://github.com/apache-superset/superset-ui/issues/260)) ([a72c3dd](https://github.com/apache-superset/superset-ui/commit/a72c3dd491d63e16434453d21b2307cc0598130c))
+
+
+
+## [0.12.5](https://github.com/apache-superset/superset-ui/compare/v0.12.4...v0.12.5) (2019-11-19)
+
+
+### Bug Fixes
+
+* d3 scale types ([#246](https://github.com/apache-superset/superset-ui/issues/246)) ([1bb49a8](https://github.com/apache-superset/superset-ui/commit/1bb49a8f1d2d8b4ea10676091a40cf12686b8cb6))
+
+
+### Features
+
+* add @superset-ui/superset-ui package as one-stop install ([#255](https://github.com/apache-superset/superset-ui/issues/255)) ([f0899d8](https://github.com/apache-superset/superset-ui/commit/f0899d85999dee620563597e13b480b85059cc53))
+
+
+
+## [0.12.4](https://github.com/apache-superset/superset-ui/compare/v0.12.3...v0.12.4) (2019-11-12)
+
+
+### Bug Fixes
+
+* build error ([#235](https://github.com/apache-superset/superset-ui/issues/235)) ([f8e5dda](https://github.com/apache-superset/superset-ui/commit/f8e5ddad1431e2ca243c3ef5a66d30a2bfb3366c))
+
+
+### Features
+
+* add promiseTimeout ([#223](https://github.com/apache-superset/superset-ui/issues/223)) ([d02bb82](https://github.com/apache-superset/superset-ui/commit/d02bb82d3e220f5e7b23545fffa64a5292cc7987))
+* **time-format:** bump d3-time-format ([#244](https://github.com/apache-superset/superset-ui/issues/244)) ([c31a085](https://github.com/apache-superset/superset-ui/commit/c31a085b1c9dab6ca9a389b97f35fffc682f7c34))
+
+
+## [0.12.3](https://github.com/apache-superset/superset-ui/compare/v0.12.2...v0.12.3) (2019-09-04)
+
+
+### Bug Fixes
+
+* fix React.Fragment complaining about width/height ([#219](https://github.com/apache-superset/superset-ui/issues/219)) ([3e8ca39](https://github.com/apache-superset/superset-ui/commit/3e8ca39))
+
+
+### Features
+
+* add functions for parsing scales ([#207](https://github.com/apache-superset/superset-ui/issues/207)) ([6f56ed9](https://github.com/apache-superset/superset-ui/commit/6f56ed9))
+* add Wrapper support and bounding box for dynamic width/height ([#215](https://github.com/apache-superset/superset-ui/issues/215)) ([c83ba1f](https://github.com/apache-superset/superset-ui/commit/c83ba1f))
+
+
+
+## [0.12.2](https://github.com/apache-superset/superset-ui/compare/v0.12.1...v0.12.2) (2019-08-26)
+
+
+### Bug Fixes
+
+* remove is_prequery and prequeries ([#208](https://github.com/apache-superset/superset-ui/issues/208)) ([ddaf104](https://github.com/apache-superset/superset-ui/commit/ddaf104))
+
+
+
+## [0.12.1](https://github.com/apache-superset/superset-ui/compare/v0.12.0...v0.12.1) (2019-08-26)
+
+
+### Bug Fixes
+
+* peerDependencies version ([#210](https://github.com/apache-superset/superset-ui/issues/210)) ([4d79dff](https://github.com/apache-superset/superset-ui/commit/4d79dff))
+
+
+### Features
+
+* add duration formatter ([#209](https://github.com/apache-superset/superset-ui/issues/209)) ([dcf89a2](https://github.com/apache-superset/superset-ui/commit/dcf89a2))
+
+
+
+# [0.12.0](https://github.com/apache-superset/superset-ui/compare/v0.11.15...v0.12.0) (2019-08-23)
+
+
+### Features
+
+* add control panel support to chart plugin ([#203](https://github.com/apache-superset/superset-ui/issues/203)) ([920d389](https://github.com/apache-superset/superset-ui/commit/920d389))
+* add functions for parsing formatters from encoding ([#205](https://github.com/apache-superset/superset-ui/issues/205)) ([8906aa0](https://github.com/apache-superset/superset-ui/commit/8906aa0))
+* Add types and type guards for encodable ([#201](https://github.com/apache-superset/superset-ui/issues/201)) ([6cff25f](https://github.com/apache-superset/superset-ui/commit/6cff25f))
+
+
+### BREAKING CHANGES
+
+* **chart:** deprecate old SuperChart API that accepts chartProps ([#202](https://github.com/apache-superset/superset-ui/issues/202)) ([af877c6](https://github.com/apache-superset/superset-ui/commit/af877c6))
+
+  * No longer accept `chartProps` as a single prop in `<SuperChart>`. Developers must specify each field in chartProps individually.
+
+* **chart:** split superset-ui/query from superset-ui/chart ([#178](https://github.com/apache-superset/superset-ui/issues/178)) ([630d3e5](https://github.com/apache-superset/superset-ui/commit/630d3e5))
+
+  * some api and types are removed from `@superset-ui/chart` and moved to `/query`
+
+* **chart:** remove and rename fields in ChartProps ([#174](https://github.com/apache-superset/superset-ui/issues/174)) ([b53b839](https://github.com/apache-superset/superset-ui/commit/b53b839))
+
+
+## [0.11.15](https://github.com/apache-superset/superset-ui/compare/v0.11.14...v0.11.15) (2019-08-06)
+
+
+### Features
+
+* optimize functions for getting text dimension ([#199](https://github.com/apache-superset/superset-ui/issues/199)) ([ad0fa42](https://github.com/apache-superset/superset-ui/commit/ad0fa42))
+
+
+
+## [0.11.14](https://github.com/apache-superset/superset-ui/compare/v0.11.13...v0.11.14) (2019-08-05)
+
+
+### Bug Fixes
+
+* eslint issues ([#198](https://github.com/apache-superset/superset-ui/issues/198)) ([12aeb4a](https://github.com/apache-superset/superset-ui/commit/12aeb4a))
+* **connection:** disable caching when on an insecure connection ([#194](https://github.com/apache-superset/superset-ui/issues/194)) ([ca256cd](https://github.com/apache-superset/superset-ui/commit/ca256cd)), closes [#193](https://github.com/apache-superset/superset-ui/issues/193)
+* clean up unneeded Promise.resolves() ([#185](https://github.com/apache-superset/superset-ui/issues/185)) ([06382a5](https://github.com/apache-superset/superset-ui/commit/06382a5))
+* move eslint disable comment in reactify test ([#184](https://github.com/apache-superset/superset-ui/issues/184)) ([795d2ed](https://github.com/apache-superset/superset-ui/commit/795d2ed))
+
+
+### Features
+
+* allow reactify callbacks to access props ([#200](https://github.com/apache-superset/superset-ui/issues/200)) ([9d6f5c0](https://github.com/apache-superset/superset-ui/commit/9d6f5c0))
+* support locale in number and time format ([#182](https://github.com/apache-superset/superset-ui/issues/182)) ([e1f8773](https://github.com/apache-superset/superset-ui/commit/e1f8773))
+
+
+
+## [0.11.13](https://github.com/apache-superset/superset-ui/compare/v0.11.12...v0.11.13) (2019-06-19)
+
+
+### Bug Fixes
+
+* wrong type for filters field ([#183](https://github.com/apache-superset/superset-ui/issues/183)) ([18ef7d9](https://github.com/apache-superset/superset-ui/commit/18ef7d9))
+
+
+
+## [0.11.12](https://github.com/apache-superset/superset-ui/compare/v0.11.11...v0.11.12) (2019-06-18)
+
+
+### Features
+
+* store reference to container and update bindings ([#180](https://github.com/apache-superset/superset-ui/issues/180)) ([00e9a40](https://github.com/apache-superset/superset-ui/commit/00e9a40))
+
+
+
+## [0.11.11](https://github.com/apache-superset/superset-ui/compare/v0.11.10...v0.11.11) (2019-06-18)
+
+
+### Features
+
+* add error boundary and responsiveness to SuperChart ([#175](https://github.com/apache-superset/superset-ui/issues/175)) ([c17b13d](https://github.com/apache-superset/superset-ui/commit/c17b13d))
+
+
+
+## [0.11.10](https://github.com/apache-superset/superset-ui/compare/v0.11.9...v0.11.10) (2019-06-13)
+
+
+### Features
+
+* add parseLength function to @superset-ui/dimension ([#171](https://github.com/apache-superset/superset-ui/issues/171)) ([c0ef45f](https://github.com/apache-superset/superset-ui/commit/c0ef45f))
+* allow chart plugin to be unregistered ([#168](https://github.com/apache-superset/superset-ui/issues/168)) ([32f8dd3](https://github.com/apache-superset/superset-ui/commit/32f8dd3))
+
+
+
+## [0.11.9](https://github.com/apache-superset/superset-ui/compare/v0.11.8...v0.11.9) (2019-05-25)
+
+
+### Bug Fixes
+
+* remove padding in WithLegend ([2f0a400](https://github.com/apache-superset/superset-ui/commit/2f0a400))
+
+
+
+## [0.11.8](https://github.com/apache-superset/superset-ui/compare/v0.11.7...v0.11.8) (2019-05-23)
+
+
+### Features
+
+* update ChartFormData and QueryObject to support filters. ([#164](https://github.com/apache-superset/superset-ui/issues/164)) ([025d5bc](https://github.com/apache-superset/superset-ui/commit/025d5bc))
+
+
+
+## [0.11.7](https://github.com/apache-superset/superset-ui/compare/v0.11.6...v0.11.7) (2019-05-17)
+
+
+### Features
+
+* improve margin merging ([#159](https://github.com/apache-superset/superset-ui/issues/159)) ([7832747](https://github.com/apache-superset/superset-ui/commit/7832747))
+
+
+
+## [0.11.6](https://github.com/apache-superset/superset-ui/compare/v0.11.5...v0.11.6) (2019-05-16)
+
+
+### Bug Fixes
+
+* lint ([#144](https://github.com/apache-superset/superset-ui/issues/144)) ([bf24316](https://github.com/apache-superset/superset-ui/commit/bf24316))
+
+
+### Features
+
+* add hooks ([#158](https://github.com/apache-superset/superset-ui/issues/158)) ([7b3ab5f](https://github.com/apache-superset/superset-ui/commit/7b3ab5f))
+
+
+
+## [0.11.12](https://github.com/apache-superset/superset-ui/compare/v0.11.11...v0.11.12) (2019-06-18)
+
+
+### ✨ Features
+
+* store reference to container and update bindings ([#180](https://github.com/apache-superset/superset-ui/issues/180)) ([00e9a40](https://github.com/apache-superset/superset-ui/commit/00e9a40))
+
+
+
+## [0.11.11](https://github.com/apache-superset/superset-ui/compare/v0.11.10...v0.11.11) (2019-06-18)
+
+
+### ✨ Features
+
+* add error boundary and responsiveness to SuperChart ([#175](https://github.com/apache-superset/superset-ui/issues/175)) ([c17b13d](https://github.com/apache-superset/superset-ui/commit/c17b13d))
+
+
+
+## [0.11.10](https://github.com/apache-superset/superset-ui/compare/v0.11.9...v0.11.10) (2019-06-13)
+
+
+### ✨ Features
+
+* add parseLength function to @superset-ui/dimension ([#171](https://github.com/apache-superset/superset-ui/issues/171)) ([c0ef45f](https://github.com/apache-superset/superset-ui/commit/c0ef45f))
+* allow chart plugin to be unregistered ([#168](https://github.com/apache-superset/superset-ui/issues/168)) ([32f8dd3](https://github.com/apache-superset/superset-ui/commit/32f8dd3))
+
+
+
+## [0.11.9](https://github.com/apache-superset/superset-ui/compare/v0.11.8...v0.11.9) (2019-05-25)
+
+
+### 🐞 Bug Fixes
+
+* remove padding in WithLegend ([2f0a400](https://github.com/apache-superset/superset-ui/commit/2f0a400))
+
+
+
+## [0.11.8](https://github.com/apache-superset/superset-ui/compare/v0.11.7...v0.11.8) (2019-05-23)
+
+
+### ✨ Features
+
+* update ChartFormData and QueryObject to support filters. ([#164](https://github.com/apache-superset/superset-ui/issues/164)) ([025d5bc](https://github.com/apache-superset/superset-ui/commit/025d5bc))
+
+
+
+## [0.11.7](https://github.com/apache-superset/superset-ui/compare/v0.11.6...v0.11.7) (2019-05-17)
+
+
+### ✨ Features
+
+* improve margin merging ([#159](https://github.com/apache-superset/superset-ui/issues/159)) ([7832747](https://github.com/apache-superset/superset-ui/commit/7832747))
+
+
+
+## [0.11.6](https://github.com/apache-superset/superset-ui/compare/v0.11.5...v0.11.6) (2019-05-16)
+
+
+### 🐞 Bug Fixes
+
+* lint ([#144](https://github.com/apache-superset/superset-ui/issues/144)) ([bf24316](https://github.com/apache-superset/superset-ui/commit/bf24316))
+
+
+### ✨ Features
+
+* add hooks ([#158](https://github.com/apache-superset/superset-ui/issues/158)) ([7b3ab5f](https://github.com/apache-superset/superset-ui/commit/7b3ab5f))
+
+
+
+## [0.11.5](https://github.com/apache-superset/superset-ui/compare/v0.11.4...v0.11.5) (2019-04-27)
+
+
+### 🐞 Bug Fixes
+
+* broken build due to failing unit tests ([#141](https://github.com/apache-superset/superset-ui/issues/141)) ([58d56d5](https://github.com/apache-superset/superset-ui/commit/58d56d5))
+
+
+### ✨ Features
+
+* add chart companion components ([#139](https://github.com/apache-superset/superset-ui/issues/139)) ([a82faec](https://github.com/apache-superset/superset-ui/commit/a82faec))
+
+
+
+## [0.11.4](https://github.com/apache-superset/superset-ui/compare/v0.11.3...v0.11.4) (2019-04-26)
+
+
+### 🐞 Bug Fixes
+
+* make translation module type check correctly ([#140](https://github.com/apache-superset/superset-ui/issues/140)) ([c05fe3a](https://github.com/apache-superset/superset-ui/commit/c05fe3a))
+
+
+## [0.11.3](https://github.com/apache-superset/superset-ui/compare/v0.11.2...v0.11.3) (2019-04-16)
+
+
+### 🐞 Bug Fixes
+
+* bump peer dependencies ([#136](https://github.com/apache-superset/superset-ui/issues/136)) ([ca3000d](https://github.com/apache-superset/superset-ui/commit/ca3000d))
+
+
+## [0.11.2](https://github.com/apache-superset/superset-ui/compare/v0.11.1...v0.11.2) (2019-04-08)
+
+
+### 🐞 Bug Fixes
+
+* smartDateVerbose at seconds ([#132](https://github.com/apache-superset/superset-ui/issues/132)) ([d29bfd0](https://github.com/apache-superset/superset-ui/commit/d29bfd0))
+
+
+## [0.11.1](https://github.com/apache-superset/superset-ui/compare/v0.11.0...v0.11.1) (2019-04-08)
+
+
+### ✨ Features
+
+* callback hooks for Reactified components ([#131](https://github.com/apache-superset/superset-ui/issues/131)) ([7603520](https://github.com/apache-superset/superset-ui/commit/7603520))
+
+
+# [0.11.0](https://github.com/apache-superset/superset-ui/compare/v0.10.10...v0.11.0) (2019-04-02)
+
+
+### 💔 BREAKING CHANGE
+
+* Revert "Handle BigNumber conversions in JSON properly (without loss of precision) (#71)" (#126)
+
+This reverts commit e3866129b2b3cbd6e099fe4ab66319c4fe6ae485. It should not cause critical issue or require additional migration from `0.10.x`. However, since this is a change in the expected output, we bump the version to be safe.
+
+## [0.10.10](https://github.com/apache-superset/superset-ui/compare/v0.10.9...v0.10.10) (2019-04-02)
+
+
+### ✨ Features
+
+* add support for conditional get requests ([#119](https://github.com/apache-superset/superset-ui/issues/119)) ([2ca55ed](https://github.com/apache-superset/superset-ui/commit/2ca55ed))
+
+
+## [0.10.9](https://github.com/apache-superset/superset-ui/compare/v0.10.8...v0.10.9) (2019-03-29)
+
+
+### ✨ Features
+
+* add labels to color scheme ([#125](https://github.com/apache-superset/superset-ui/issues/125)) ([98a14a2](https://github.com/apache-superset/superset-ui/commit/98a14a2))
+
+
+## [0.10.8](https://github.com/apache-superset/superset-ui/compare/v0.10.7...v0.10.8) (2019-03-26)
+
+
+### 🐞 Bug Fixes
+
+* Fixed type definition for chart plugin ([#123](https://github.com/apache-superset/superset-ui/issues/123)) ([6230a3b](https://github.com/apache-superset/superset-ui/commit/6230a3b))
+
+
+### ✨ Features
+
+* getter function to return color mapping ([#124](https://github.com/apache-superset/superset-ui/issues/124)) ([46e78ad](https://github.com/apache-superset/superset-ui/commit/46e78ad))
+
+
+## [0.10.7](https://github.com/apache-superset/superset-ui/compare/v0.10.6...v0.10.7) (2019-03-22)
+
+### 🐞 Bug Fixes
+
+* import types from package, not monorepo ([#122](https://github.com/apache-superset/superset-ui/pull/122))
+
+## [0.10.6](https://github.com/apache-superset/superset-ui/compare/v0.10.5...v0.10.6) (2019-03-22)
+
+### 🛠️ Internal
+
+* remove faux `@superset-ui/core` TS declaration ([#121](https://github.com/apache-superset/superset-ui/pull/121))
+
+## 0.10.5 (2019-03-21)
+
+### ✨ Features
+
+* 🎸 Improved QueryObject to handle more fields (#116) ([57a64b1](https://github.com/apache-superset/superset-ui/commit/57a64b1)), closes [#116](https://github.com/apache-superset/superset-ui/issues/116)
+* Add `<ChartDataProvider />` (#120) ([ade9dbe](https://github.com/apache-superset/superset-ui/commit/ade9dbe)), closes [#120](https://github.com/apache-superset/superset-ui/issues/120)
+
+### 📜 Documentation
+* Add TS support + CORS demo (#118) ([34581f3](https://github.com/apache-superset/superset-ui/commit/34581f3)), closes [#118](https://github.com/apache-superset/superset-ui/issues/118)
+
+
+## 0.10.4 (2019-03-11)
+
+### ✨ Features
+
+* add dimension type (#117) ([e4a22ade305fd6ea962648b86ff88431d77ea41e](https://github.com/apache-superset/superset-ui/commit/e4a22ade305fd6ea962648b86ff88431d77ea41e)), closes [#117](https://github.com/apache-superset/superset-ui/issues/117)
+* re-export types from @superset-ui/dimension (#115) ([8c3f8b0f5f2edb558cb8e9f708a17d3d3b4b92aa](https://github.com/apache-superset/superset-ui/commit/8c3f8b0f5f2edb558cb8e9f708a17d3d3b4b92aa)), closes [#115](https://github.com/apache-superset/superset-ui/issues/115)
+
+
+
+## v0.10.3 (2019-03-07)
+
+### ✨ Features
+
+* feat(superset-ui-dimension): add `mergeMargin()` function (#114) ([c5589384c12f5ff2480e3614cf44b33d85b1299e](https://github.com/apache-superset/superset-ui/commit/c5589384c12f5ff2480e3614cf44b33d85b1299e)), closes [#114](https://github.com/apache-superset/superset-ui/issues/114)
+
+## v0.10.2
+
+### ✨ Features
+
+* feat(superset-ui-chart): add `.clone()` function to `ChartMetadata` (#112) ([1c1ef3b](https://github.com/apache-superset/superset-ui/commit/1c1ef3b)), closes [#112](https://github.com/apache-superset/superset-ui/issues/112)
+* feat(superset-ui-connection): Allow `PUT` and `PATCH` in call API ([efcfd1a](https://github.com/apache-superset/superset-ui/commit/efcfd1a))
+
+## v0.10.1
+
+### 💔 BREAKING CHANGE
+
+* `@superset-ui/core` becomes peer dependency
+
+### 🛠️ Internal
+
+* refactor: make `@superset-ui/core` peer dependency (#111) ([e9c7b91](https://github.com/apache-superset/superset-ui/commit/e9c7b91)), closes [#111](https://github.com/apache-superset/superset-ui/issues/111)
+* chore: add `commitlint` and `commitizen` config ([cae32ce](https://github.com/apache-superset/superset-ui/commit/cae32ce))
+* docs: update changelog ([4d70053](https://github.com/apache-superset/superset-ui/commit/4d70053))
+
+## v0.10.0
+
+### 💔 BREAKING CHANGES
+
+* Rename `FormData ` to `ChartFormData` to avoid naming collision with native JS (#100)
+* Rename constants in `NumberFormats` changing `_CHANGE` to `_SIGNED`.
+* Default number format is now `SMART_NUMBER` instead of `D3` `.3~s`.
+
+### ✨ Features
+
+* Add SMART_NUMBER formatter and make it default (#109)
+* Enable warnings when values are overwritten in registries (#107)
+
+### 🛠️ Internal
+
+* Migrate `plugin-chart-word-cloud` to `@superset-ui-plugins` repo.
+
+## v0.9.6
+
+### 🛠️ Internal
+
+* Update `@superset-ui/chart` dependency.
+
+## v0.9.5
+
+### 🛠️ Internal
+
+* Remove unnecessary export types and remove warning when using `esm` output in target application.
+
+## v0.9.4
+
+### 🐞 Bug fixes
+
+* Make `id` an optional prop for `SuperChart`.
+
+## v0.9.3
+
+### ✨ Features
+
+* Add new package `@superset-ui/dimension`
+* Add new package `@superset-ui/plugin-chart-word-cloud`
+
+### 🛠️ Internal
+
+* Minor update and additional unit tests for generator
+
+## v0.9.2
+
+### ✨ Features
+
+* Add more subgenerators to create package and demo in `superset-ui-legacy`
+* Support put and delete HTTP methods in `SupersetClient`
+
+## v0.9.1
+
+### 🐞 Bug fixes
+
+* Fix TypeScript declaration for package `jed` with `@superset-ui/translation` distribution.
+
+## v0.9.0
+
+### ✨ Features
+
+* Add `useLegacyApi` field to `ChartMetadata`. This flag will help us determine whether to use the new `/api/v1/query` endpoint or the legacy one.
+* Add two generics to `Registry<V, W>`
+  * `V` is type of value in the registry
+  * `W` is type of value returned from `loader` function when using `.registerLoader(key, loader)`.
+  * `W` can be either `V`, `Promise<V>` or `V | Promise<V>`
+  * Set `W=V` when does not support asynchronous loader. Making return type of `.get()` become `V` instead of `Promise<V>`
+  * By default, `W` is set to `V | Promise<V>` to support both synchronous and asynchronous loaders.
+* Include and link TypeScript declaration for package `jed` with `@superset-ui/translation` distribution.
+
+### 🛠️ Internal
+
+* Convert `@superset-ui/number-format` to TypeScript
+* Convert `@superset-ui/time-format` to TypeScript
+* Convert `@superset-ui/translation` to TypeScript
+
+### 💔 BREAKING CHANGES
+
+* Make number formatter always returns `string`. This is different from previous behavior.
+
+|Value|formatted value (before)|formatted value (after)|
+|------------|------------|-----------|
+| `null` | `null` | `'null'` |
+| `undefined` | `undefined` | `'undefined'` |
+| `NaN` | `NaN` | `'NaN'` |
+
+* Make time formatter always returns `string`. This is different from previous behavior.
+
+|Value|formatted value (before)|formatted value (after)|
+|------------|------------|-----------|
+| `null` | `null` | `'null'` |
+| `undefined` | `undefined` | `'undefined'` |
+| `NaN` | `NaN` | `'NaN'` |
+
+## v0.8.0
+
+### ✨ Features
+
+* Add SuperChart and convert to TypeScript
+* Allow metrics arrays in form data
+* Moved query module from `incubator-superset` into `superset-ui`
+* Add `reactify` function from `incubator-superset`
+
+### 🐞 Bug fixes
+
+* Handle `BigNumber` conversions to/from JSON without loss of precision
+
+### 🛠️ Internal
+
+* Use DefinitelyTyped's `fetch-mock` type def
+* Improved type def for `json-bigint`
+* Migrated `@superset-ui/chart` to TypeScript
+* Migrated `@superset-ui/color` to TypeScript
+* Migrated `@superset-ui/core` to TypeScript
+* Made `connection` and `color` packages peer dependencies
+
+## v0.7.2
+
+### ✨ Features
+
+* Make `@superset-ui/time-format` and `@superset-ui/number-format` ignore leading and trailing spaces when looking for formatters.
+
+## v0.7.1
+
+### ✨ Features
+
+* Add new APIs to `@superset-ui/time-format`
+  - `createD3TimeFormatter`
+  - `createMultiFormatter`
+* Add new APIs to `@superset-ui/number-format`
+  - `createD3NumberFormatter`
+  - `createSiAtMostNDigitFormatter`
+
+## v0.7.0
+
+### ✨ Features
+
+* Add `@superset-ui/time-format` package
+* Add `@superset-ui/number-format` package
+* Use the recently added `ExtensibleFunction` to make an instance of `CategoricalColorScale` be a function
+* Add `overwritePolicy` for `Registry` so developer can customize whether overwriting is `ALLOW`, `WARN` or `PROHIBIT`.
+
+### 🐞 Bug fixes
+
+* Transform input value before setting color.
+
+### 🛠️ Internal
+
+* Rewrite `@superset-ui/connection` in TypeScript
+
+### 💔 BREAKING CHANGES
+
+* Remove `categoricalColorScale.toFunction()`. Now `categoricalColorScale` itself is already a function.
+* The color scales no longer convert input to lowercase before finding color.
+* Rename `ColorScheme` field `name` to `id`.
+* Change `Registry` constructor API to take object instead of single string name.
+
+-----
+
+## v0.6.0
+
+### ✨ Features
+
+* Add `@superset-ui/generator-superset`
+* Add `RegistryWithDefaultKey` and `ExtensibleFunction` to `@superset-ui/core`
+
+### 💔 BREAKING CHANGES
+
+* `getDefaultSchemeName()` and `setDefaultSchemeName()` are renamed to `getDefaultKey()` and `setDefaultKey()`
+
+-----
+
+## v0.5.0
+
+### ✨ Features
+
+* Add `@superset-ui/chart`
+
+### 🐞 Bug fixes
+
+* Use simple js to create range
+
+-----
+
+## v0.4.0
+
+### ✨ Features
+
+* Add `@superset-ui/color` for color management
+
+-----
+
+## v0.3.0
+
+### ✨ Features
+
+* Add new `@superset-ui/core` with data structures and utilities.
+
+### 💔 BREAKING CHANGES
+
+* Rename former `@superset-ui/core` to `@superset-ui/connection`.
diff --git a/superset-frontend/CONTRIBUTING.md b/superset-frontend/CONTRIBUTING.md
new file mode 100644
index 0000000..013a9ae
--- /dev/null
+++ b/superset-frontend/CONTRIBUTING.md
@@ -0,0 +1,68 @@
+## Contributing guidelines
+
+### Setup local development
+
+1. clone this repo
+2. have `yarn` install package dependencies and manage the symlinking between packages for you
+
+```sh
+git clone ...superset-ui && cd superset-ui
+yarn install
+yarn build
+```
+
+To build only selected packages or plugins,
+
+```bash
+yarn build "*chart-table"
+```
+
+### File organization
+
+[lerna](https://github.com/lerna/lerna/) and [yarn](https://yarnpkg.com) are used to manage versions
+and dependencies between packages in this monorepo.
+
+```
+superset-ui/
+  lerna.json
+  package.json
+  ...
+  packages/
+    package1/
+      package.json
+      ...
+      src/
+      test/  # unit tests
+      types/ # typescript type declarations
+      ...
+      lib/   # commonjs output
+      esm/   # es module output
+      ...
+    ...
+```
+
+### Builds, linting, and testing
+
+Each package defines its own build config, linting, and testing. You can have lerna run commands
+across all packages using the syntax `yarn run test` (or `yarn run test:watch` for watch mode) from
+the root `@superset-ui` directory.
+
+- [Using Storybook](docs/storybook.md) - You can test your components independently from Superset
+  app.
+- [Debugging Superset plugins in Superset app](docs/debugging.md) - Sometimes something went wrong
+  and you have to do it.
+
+### Committing
+
+This repository follows
+[conventional commits](https://www.conventionalcommits.org/en/v1.0.0-beta.3/) guideline for commit
+messages and has a `commitlint` hook which will require you to have the valid commit message before
+committing. You can use `npm run commit` to help you create a commit message.
+
+### Publishing
+
+**Prerequisite:** You'll need an [npmjs.com](https://npmjs.com) account that is part of the
+`superset-ui` organization.
+
+1. Make sure you're logged in to NPM from your shell. Run `npm login` if necessary.
+2. To make the release, run `yarn run release` and follow the prompts.
diff --git a/superset-frontend/LICENSE b/superset-frontend/LICENSE
new file mode 100644
index 0000000..1b22bef
--- /dev/null
+++ b/superset-frontend/LICENSE
@@ -0,0 +1,201 @@
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
\ No newline at end of file
diff --git a/superset-frontend/README.md b/superset-frontend/README.md
new file mode 100644
index 0000000..28375e9
--- /dev/null
+++ b/superset-frontend/README.md
@@ -0,0 +1,80 @@
+# @superset-ui
+
+[![Codecov branch](https://img.shields.io/codecov/c/github/apache-superset/superset-ui/master.svg?style=flat-square)](https://codecov.io/gh/apache-superset/superset-ui/branch/master)
+[![Build Status](https://img.shields.io/travis/com/apache-superset/superset-ui/master.svg?style=flat-square)](https://travis-ci.com/apache-superset/superset-ui)
+[![David](https://img.shields.io/david/dev/apache-superset/superset-ui.svg?style=flat-square)](https://david-dm.org/apache-superset/superset-ui?type=dev)
+
+Collection of packages that power the
+[Apache Superset](https://github.com/apache/incubator-superset) UI, and can be used to craft custom
+data applications that leverage a Superset backend :chart_with_upwards_trend:
+
+## Demo
+
+Most recent release: https://apache-superset.github.io/superset-ui/
+
+Current master: https://superset-ui.now.sh/
+
+## Packages
+
+### Core packages
+
+| Package                                                                                                                       | Version                                                                                                                                                         |
+| ----------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| [@superset-ui/core](https://github.com/apache-superset/superset-ui/tree/master/packages/superset-ui-core)                     | [![Version](https://img.shields.io/npm/v/@superset-ui/core.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/core)                             |
+| [@superset-ui/chart-controls](https://github.com/apache-superset/superset-ui/tree/master/packages/superset-ui-chart-controls) | [![Version](https://img.shields.io/npm/v/@superset-ui/core.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/chart-controls)                   |
+| [@superset-ui/generator-superset](https://github.com/apache-superset/superset-ui/tree/master/packages/generator-superset)     | [![Version](https://img.shields.io/npm/v/@superset-ui/generator-superset.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/generator-superset) |
+
+### Chart plugin packages
+
+`@superset-ui/legacy-*` packages are extracted from the classic
+[Apache Superset](https://github.com/apache/incubator-superset) and converted into plugins. These
+packages are extracted with minimal changes (almost as-is). They also depend on legacy API
+(`viz.py`) to function.
+
+| Package                                                                                                                                                              | Version                                                                                                                                                                                                     |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| [@superset-ui/legacy-preset-chart-big-number](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-preset-chart-big-number)                     | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-big-number.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-preset-chart-big-number)                     |
+| [@superset-ui/legacy-preset-chart-nvd3](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-preset-chart-nvd3)                                 | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-nvd3.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-preset-chart-nvd3)                                 |
+| [@superset-ui/legacy-plugin-chart-calendar](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-calendar)                         | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-calendar.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-calendar)                         |
+| [@superset-ui/legacy-plugin-chart-chord](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-chord)                               | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-chord.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-chord)                               |
+| [@superset-ui/legacy-plugin-chart-country-map](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-country-map)                   | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-country-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-country-map)                   |
+| [@superset-ui/legacy-plugin-chart-event-flow](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-event-flow)                     | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-event-flow.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-event-flow)                     |
+| [@superset-ui/legacy-plugin-chart-force-directed](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-force-directed)             | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-force-directed.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-force-directed)             |
+| [@superset-ui/legacy-plugin-chart-heatmap](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-heatmap)                           | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-heatmap.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-heatmap)                           |
+| [@superset-ui/legacy-plugin-chart-histogram](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-histogram)                       | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-histogram.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-histogram)                       |
+| [@superset-ui/legacy-plugin-chart-horizon](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-horizon)                           | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-horizon.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-horizon)                           |
+| [@superset-ui/legacy-plugin-chart-iframe](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-iframe)                             | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-iframe.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-iframe)                             |
+| [@superset-ui/legacy-plugin-chart-markup](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-markup)                             | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-markup.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-markup)                             |
+| [@superset-ui/legacy-plugin-chart-map-box](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-map-box)                           | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-map-box.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-map-box)                           |
+| [@superset-ui/legacy-plugin-chart-paired-t-test](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-paired-t-test)               | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-paired-t-test.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-paired-t-test)               |
+| [@superset-ui/legacy-plugin-chart-parallel-coordinates](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-parallel-coordinates) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-parallel-coordinates.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-parallel-coordinates) |
+| [@superset-ui/legacy-plugin-chart-partition](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-partition)                       | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-partition.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-partition)                       |
+| [@superset-ui/legacy-plugin-chart-pivot-table](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-pivot-table)                   | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-pivot-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-pivot-table)                   |
+| [@superset-ui/legacy-plugin-chart-rose](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-rose)                                 | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-rose.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-rose)                                 |
+| [@superset-ui/legacy-plugin-chart-sankey](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-sankey)                             | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sankey.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sankey)                             |
+| [@superset-ui/legacy-plugin-chart-sankey-loop](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-sankey-loop)                   | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sankey-loop.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sankey-loop)                   |
+| [@superset-ui/legacy-plugin-chart-sunburst](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-sunburst)                         | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sunburst.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sunburst)                         |
+| [@superset-ui/legacy-plugin-chart-treemap](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-treemap)                           | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-treemap.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-treemap)                           |
+| [@superset-ui/legacy-plugin-chart-world-map](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-world-map)                       | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-world-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-world-map)                       |
+
+`@superset-ui/plugin-*` packages are newer and higher quality in general. A key difference that they
+do not depend on `viz.py` (which contain visualization-specific python code) and interface with
+`/api/v1/query/`, a new generic endpoint instead meant to serve all visualizations, instead. Also
+should be written in Typescript.
+
+| Package                                                                                                                            | Version                                                                                                                                                                   | Note |
+| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---- |
+| [@superset-ui/plugin-chart-word-cloud](https://github.com/apache-superset/superset-ui/tree/master/plugins/plugin-chart-word-cloud) | [![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-word-cloud.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-word-cloud) |      |
+| [@superset-ui/plugin-chart-table](https://github.com/apache-superset/superset-ui/tree/master/plugins/plugin-chart-table)           | [![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-table)           |      |
+| [@superset-ui/preset-chart-xy](https://github.com/apache-superset/superset-ui/tree/master/plugins/preset-chart-xy)                 | [![Version](https://img.shields.io/npm/v/@superset-ui/preset-chart-xy.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/preset-chart-xy)                 |      |
+| [@superset-ui/plugin-chart-echarts](https://github.com/apache-superset/superset-ui/tree/master/plugins/plugin-chart-echarts)       | [![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-echarts.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-echarts)       |      |
+| [@superset-ui/plugin-filter-antd](https://github.com/apache-superset/superset-ui/tree/master/plugins/plugin-filter-antd)           | [![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-echarts.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-filter-antd)         |      |
+
+## Contribution and development guide
+
+Please read the [contributing guidelines](CONTRIBUTING.md) which include development environment
+setup and other things you should know about coding in this repo.
+
+### License
+
+Apache-2.0
diff --git a/superset-frontend/babel.config.js b/superset-frontend/babel.config.js
index 51ae332..70987dd 100644
--- a/superset-frontend/babel.config.js
+++ b/superset-frontend/babel.config.js
@@ -1,84 +1,23 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-const packageConfig = require('./package.json');
+const { getConfig } = require('@airbnb/config-babel');
 
-module.exports = {
-  sourceMaps: true,
-  sourceType: 'module',
-  retainLines: true,
-  presets: [
-    [
-      '@babel/preset-env',
-      {
-        useBuiltIns: 'usage',
-        corejs: 3,
-        loose: true,
-        modules: false,
-        shippedProposals: true,
-        targets: packageConfig.browserslist,
-      },
-    ],
-    [
-      '@babel/preset-react',
-      { development: process.env.BABEL_ENV === 'development' },
-    ],
-  ],
-  plugins: [
-    'lodash',
-    '@babel/plugin-syntax-dynamic-import',
-    ['@babel/plugin-proposal-class-properties', { loose: true }],
-    ['@babel/plugin-proposal-optional-chaining', { loose: true }],
-    ['@babel/plugin-proposal-private-methods', { loose: true }],
-    ['@babel/plugin-transform-runtime', { corejs: 3 }],
-    'react-hot-loader/babel',
-  ],
+const config = getConfig({
+  library: true,
+  react: true,
+  next: true,
+  esm: process.env.BABEL_OUTPUT === 'esm',
+  node: process.env.NODE_ENV === 'test',
+  typescript: true,
   env: {
-    // Setup a different config for tests as they run in node instead of a browser
-    test: {
-      presets: [
-        [
-          '@babel/preset-env',
-          {
-            useBuiltIns: 'usage',
-            corejs: 3,
-            loose: true,
-            shippedProposals: true,
-            modules: 'commonjs',
-            targets: { node: 'current' },
-          },
-        ],
-      ],
-      plugins: ['babel-plugin-dynamic-import-node'],
-    },
-    // build instrumented code for testing code coverage with Cypress
-    instrumented: {
-      plugins: ['istanbul'],
-    },
-    production: {
-      plugins: [
-        [
-          'babel-plugin-jsx-remove-data-test-id',
-          {
-            attributes: 'data-test',
-          },
-        ],
-      ],
-    },
+    targets: false,
   },
-};
+});
+
+// Override to allow transpile es modules inside vega-lite
+config.ignore = config.ignore.filter(item => item !== 'node_modules/');
+config.ignore.push('node_modules/(?!(vega-lite|lodash-es))');
+config.plugins = [
+  ['babel-plugin-transform-dev', { evaluate: false }],
+  ['babel-plugin-typescript-to-proptypes', { loose: true }],
+  ['@babel/plugin-proposal-class-properties', { loose: true }],
+];
+module.exports = config;
diff --git a/superset-frontend/codecov.yml b/superset-frontend/codecov.yml
new file mode 100644
index 0000000..cfd7e0d
--- /dev/null
+++ b/superset-frontend/codecov.yml
@@ -0,0 +1,22 @@
+coverage:
+  status:
+    patch: off
+    project:
+      default:
+        target: 0%
+        threshold: 10%
+      core-packages-ts:
+        target: 100%
+        paths:
+          - 'packages'
+          - '!packages/**/*.jsx'
+          - '!packages/**/*.tsx'
+      core-packages-tsx:
+        target: 50%
+        paths:
+          - 'packages/**/*.jsx'
+          - 'packages/**/*.tsx'
+      plugins:
+        target: 0
+        paths:
+          - plugins
diff --git a/superset-frontend/commitlint.config.js b/superset-frontend/commitlint.config.js
new file mode 100644
index 0000000..d734594
--- /dev/null
+++ b/superset-frontend/commitlint.config.js
@@ -0,0 +1,3 @@
+module.exports = {
+  extends: ['@commitlint/config-conventional', '@commitlint/config-lerna-scopes'],
+};
diff --git a/superset-frontend/docs/debugging.md b/superset-frontend/docs/debugging.md
new file mode 100644
index 0000000..1330bdc
--- /dev/null
+++ b/superset-frontend/docs/debugging.md
@@ -0,0 +1,27 @@
+# Debug Superset plugins in Superset app
+
+## Activate plugins for local development
+
+1. First, make sure you have run `yarn` and `yarn build` in `superset-ui` or your own plugin repo.
+2. Go to
+   [superset-frontend](https://github.com/apache/incubator-superset/tree/master/superset-frontend),
+   use `npm link` to create a symlink of the plugin source code in `node_modules`:
+
+   ```sh
+   cd incubator-superset/superset-frontend
+   # npm link ~/path/to/your/plugin
+   npm link ../../superset-ui/plugins/plugin-chart-word-cloud
+   ```
+
+3. Start developing with webpack dev server:
+
+   ```sh
+   npm run dev-server
+   ```
+
+   The dev server will automatically build from the source code under `path/to/your-plugin/src` and
+   watch the changes.
+
+## Deactivate plugins
+
+To deactivate a plugin, simply run `npm install` in `incubator-superset/superset-frontend` again.
diff --git a/superset-frontend/docs/storybook.md b/superset-frontend/docs/storybook.md
new file mode 100644
index 0000000..8c72571
--- /dev/null
+++ b/superset-frontend/docs/storybook.md
@@ -0,0 +1,13 @@
+## Using Storybook
+
+You can demo your changes by running the storybook demo locally with the following commands:
+
+```sh
+yarn install
+yarn build
+yarn storybook
+```
+
+The Storybook will
+[automatically build from the source code](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-demo/.storybook/main.js#L49-L58)
+when package names start with `@superset-ui/`.
diff --git a/superset-frontend/jest.config.js b/superset-frontend/jest.config.js
index 272cece..312c915 100644
--- a/superset-frontend/jest.config.js
+++ b/superset-frontend/jest.config.js
@@ -1,46 +1,61 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
 module.exports = {
-  testRegex: '(\\/spec|\\/src)\\/.*(_spec|\\.test)\\.(j|t)sx?$',
-  moduleNameMapper: {
-    '\\.(css|less)$': '<rootDir>/spec/__mocks__/styleMock.js',
-    '\\.(gif|ttf|eot)$': '<rootDir>/spec/__mocks__/fileMock.js',
-    '\\.svg$': '<rootDir>/spec/__mocks__/svgrMock.js',
-    '^src/(.*)$': '<rootDir>/src/$1',
-    '^spec/(.*)$': '<rootDir>/spec/$1',
-  },
-  testEnvironment: 'enzyme',
-  setupFilesAfterEnv: ['<rootDir>/spec/helpers/setup.ts'],
-  testURL: 'http://localhost',
-  collectCoverageFrom: ['src/**/*.{js,jsx,ts,tsx}'],
-  coverageDirectory: '<rootDir>/coverage/',
-  transform: {
-    '^.+\\.jsx?$': 'babel-jest',
-    '^.+\\.tsx?$': 'ts-jest',
-  },
-  moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
-  globals: {
-    'ts-jest': {
-      babelConfig: true,
-      diagnostics: {
-        warnOnly: true,
-      },
+  bail: false,
+  collectCoverageFrom: ['**/src/**/*.{ts,tsx,js,jsx}', '**/test/**/*.{ts,tsx,js,jsx}'],
+  coverageDirectory: './coverage',
+  coveragePathIgnorePatterns: [
+    'coverage/',
+    'node_modules/',
+    'public/',
+    'esm/',
+    'lib/',
+    'tmp/',
+    'dist/',
+  ],
+  coverageReporters: ['lcov', 'json-summary', 'html'],
+  coverageThreshold: {
+    global: {
+      branches: 0,
+      functions: 0,
+      lines: 0,
+      statements: 0,
     },
   },
+  globals: {
+    __DEV__: true,
+    caches: true,
+  },
+  moduleFileExtensions: ['mock.js', 'ts', 'tsx', 'js', 'jsx', 'json', 'node'],
+  moduleNameMapper: {
+    '^.+\\.(ttf|eot|otf|svg|woff|woff2|mp3|png|jpg|jpeg|gif|ico)$':
+      '<rootDir>/node_modules/@airbnb/config-jest/mocks/file.js',
+    '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
+      '<rootDir>/__mocks__/fileMock.js',
+    '\\.(css|less)$': 'identity-obj-proxy',
+  },
+  roots: ['<rootDir>/packages', '<rootDir>/plugins'],
+  setupFiles: [
+    '<rootDir>/node_modules/@airbnb/config-jest/setup/shims.js',
+    '<rootDir>/node_modules/@airbnb/config-jest/setup/console.js',
+    '<rootDir>/node_modules/@airbnb/config-jest/setup/dom.js',
+  ],
+  setupFilesAfterEnv: [
+    '<rootDir>/node_modules/@airbnb/config-jest/bootstrap/react.js',
+    '<rootDir>/node_modules/@airbnb/config-jest/bootstrap/consumer.js',
+    '@airbnb/config-jest/enzyme',
+  ],
+  testEnvironment: 'jsdom',
+  testURL: 'http://localhost',
+  timers: 'real',
+  verbose: false,
+  transformIgnorePatterns: ['node_modules/(?!(vega-lite|lodash-es))'],
+  testPathIgnorePatterns: ['packages/generator-superset/generators'],
+  projects: [
+    '<rootDir>',
+    {
+      displayName: 'node',
+      rootDir: '<rootDir>/packages/generator-superset',
+      testMatch: ['<rootDir>/test/**/?(*.)+(spec|test).{js,jsx,ts,tsx}'],
+      testEnvironment: 'node',
+    },
+  ],
 };
diff --git a/superset-frontend/lerna.json b/superset-frontend/lerna.json
new file mode 100644
index 0000000..1ec02d1
--- /dev/null
+++ b/superset-frontend/lerna.json
@@ -0,0 +1,26 @@
+{
+  "lerna": "3.2.1",
+  "npmClient": "yarn",
+  "packages": [
+    "packages/*",
+    "plugins/*"
+  ],
+  "useWorkspaces": true,
+  "version": "0.17.6",
+  "ignoreChanges": [
+    "**/*.md",
+    "**/*.spec.tsx?",
+    "**/*.spec.jsx?",
+    "**/__mocks__/**"
+  ],
+  "command": {
+    "publish": {
+      "message": "chore: publish %s",
+      "graphType": "all"
+    },
+    "version": {
+      "message": "chore: publish %s",
+      "exact": true
+    }
+  }
+}
diff --git a/superset-frontend/package-lock.json b/superset-frontend/package-lock.json
deleted file mode 100644
index 1307f99..0000000
--- a/superset-frontend/package-lock.json
+++ /dev/null
@@ -1,54383 +0,0 @@
-{
-  "name": "superset",
-  "version": "0.999.0dev",
-  "lockfileVersion": 1,
-  "requires": true,
-  "dependencies": {
-    "@ant-design/colors": {
-      "version": "3.2.2",
-      "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-3.2.2.tgz",
-      "integrity": "sha512-YKgNbG2dlzqMhA9NtI3/pbY16m3Yl/EeWBRa+lB1X1YaYxHrxNexiQYCLTWO/uDvAjLFMEDU+zR901waBtMtjQ==",
-      "requires": {
-        "tinycolor2": "^1.4.1"
-      }
-    },
-    "@ant-design/icons": {
-      "version": "4.2.2",
-      "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-4.2.2.tgz",
-      "integrity": "sha512-DrVV+wcupnHS7PehJ6KiTcJtAR5c25UMgjGECCc6pUT9rsvw0AuYG+a4HDjfxEQuDqKTHwW+oX/nIvCymyLE8Q==",
-      "requires": {
-        "@ant-design/colors": "^3.1.0",
-        "@ant-design/icons-svg": "^4.0.0",
-        "@babel/runtime": "^7.10.4",
-        "classnames": "^2.2.6",
-        "insert-css": "^2.0.0",
-        "rc-util": "^5.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
-          "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "@ant-design/icons-svg": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz",
-      "integrity": "sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ=="
-    },
-    "@ant-design/react-slick": {
-      "version": "0.27.14",
-      "resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-0.27.14.tgz",
-      "integrity": "sha512-s6JVexqFmU5rs5Pm828ojtm5rCp8jDXyrc5OxEtCE2z58SIyQlkpnU9BJh98LEeBZyj02WFkGN8CWpSaD+G4PA==",
-      "requires": {
-        "@babel/runtime": "^7.10.4",
-        "classnames": "^2.2.5",
-        "json2mq": "^0.2.0",
-        "lodash": "^4.17.15",
-        "resize-observer-polyfill": "^1.5.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "@babel/cli": {
-      "version": "7.12.10",
-      "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.12.10.tgz",
-      "integrity": "sha512-+y4ZnePpvWs1fc/LhZRTHkTesbXkyBYuOB+5CyodZqrEuETXi3zOVfpAQIdgC3lXbHLTDG9dQosxR9BhvLKDLQ==",
-      "dev": true,
-      "requires": {
-        "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents",
-        "chokidar": "^3.4.0",
-        "commander": "^4.0.1",
-        "convert-source-map": "^1.1.0",
-        "fs-readdir-recursive": "^1.1.0",
-        "glob": "^7.0.0",
-        "lodash": "^4.17.19",
-        "make-dir": "^2.1.0",
-        "slash": "^2.0.0",
-        "source-map": "^0.5.0"
-      },
-      "dependencies": {
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "binary-extensions": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
-          "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==",
-          "dev": true,
-          "optional": true
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chokidar": {
-          "version": "3.5.0",
-          "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.0.tgz",
-          "integrity": "sha512-JgQM9JS92ZbFR4P90EvmzNpSGhpPBGBSj10PILeDyYFwp4h2/D9OM03wsJ4zW1fEp4ka2DGrnUeD7FuvQ2aZ2Q==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "anymatch": "~3.1.1",
-            "braces": "~3.0.2",
-            "fsevents": "~2.3.1",
-            "glob-parent": "~5.1.0",
-            "is-binary-path": "~2.1.0",
-            "is-glob": "~4.0.1",
-            "normalize-path": "~3.0.0",
-            "readdirp": "~3.5.0"
-          }
-        },
-        "commander": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
-          "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "fsevents": {
-          "version": "2.3.1",
-          "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.1.tgz",
-          "integrity": "sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw==",
-          "dev": true,
-          "optional": true
-        },
-        "is-binary-path": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
-          "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "binary-extensions": "^2.0.0"
-          }
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true,
-          "optional": true
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true,
-          "optional": true
-        },
-        "readdirp": {
-          "version": "3.5.0",
-          "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
-          "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "picomatch": "^2.2.1"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "@babel/code-frame": {
-      "version": "7.0.0",
-      "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz",
-      "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==",
-      "requires": {
-        "@babel/highlight": "^7.0.0"
-      }
-    },
-    "@babel/compat-data": {
-      "version": "7.12.7",
-      "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz",
-      "integrity": "sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==",
-      "dev": true
-    },
-    "@babel/core": {
-      "version": "7.12.10",
-      "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz",
-      "integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==",
-      "dev": true,
-      "requires": {
-        "@babel/code-frame": "^7.10.4",
-        "@babel/generator": "^7.12.10",
-        "@babel/helper-module-transforms": "^7.12.1",
-        "@babel/helpers": "^7.12.5",
-        "@babel/parser": "^7.12.10",
-        "@babel/template": "^7.12.7",
-        "@babel/traverse": "^7.12.10",
-        "@babel/types": "^7.12.10",
-        "convert-source-map": "^1.7.0",
-        "debug": "^4.1.0",
-        "gensync": "^1.0.0-beta.1",
-        "json5": "^2.1.2",
-        "lodash": "^4.17.19",
-        "semver": "^5.4.1",
-        "source-map": "^0.5.0"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
-          "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
-          "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
-          "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.12.10",
-            "@babel/template": "^7.12.7",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
-          "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz",
-          "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
-          "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
-          "dev": true
-        },
-        "@babel/template": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
-          "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.12.7",
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz",
-          "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.12.11",
-            "@babel/generator": "^7.12.11",
-            "@babel/helper-function-name": "^7.12.11",
-            "@babel/helper-split-export-declaration": "^7.12.11",
-            "@babel/parser": "^7.12.11",
-            "@babel/types": "^7.12.12",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "convert-source-map": {
-          "version": "1.7.0",
-          "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
-          "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "~5.1.1"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/generator": {
-      "version": "7.10.3",
-      "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.10.3.tgz",
-      "integrity": "sha512-drt8MUHbEqRzNR0xnF8nMehbY11b1SDkRw03PSNH/3Rb2Z35oxkddVSi3rcaak0YJQ86PCuE7Qx1jSFhbLNBMA==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.10.3",
-        "jsesc": "^2.5.1",
-        "lodash": "^4.17.13",
-        "source-map": "^0.5.0"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.3.tgz",
-          "integrity": "sha512-nZxaJhBXBQ8HVoIcGsf9qWep3Oh3jCENK54V4mRF7qaJabVsAYdbTtmSD8WmAp1R6ytPiu5apMwSXyxB1WlaBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.3",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-annotate-as-pure": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.1.tgz",
-      "integrity": "sha512-ewp3rvJEwLaHgyWGe4wQssC2vjks3E80WiUe2BpMb0KhreTjMROCbxXcEovTrbeGVdQct5VjQfrv9EgC+xMzCw==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-builder-binary-assignment-operator-visitor": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.1.tgz",
-      "integrity": "sha512-cQpVq48EkYxUU0xozpGCLla3wlkdRRqLWu1ksFMXA9CM5KQmyyRpSEsYXbao7JUkOw/tAaYKCaYyZq6HOFYtyw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-explode-assignable-expression": "^7.10.1",
-        "@babel/types": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-builder-react-jsx": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.8.3.tgz",
-      "integrity": "sha512-JT8mfnpTkKNCboTqZsQTdGo3l3Ik3l7QIt9hh0O9DYiwVel37VoJpILKM4YFbP2euF32nkQSb+F9cUk9b7DDXQ==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.8.3",
-        "esutils": "^2.0.0"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.8.7",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.7.tgz",
-          "integrity": "sha512-k2TreEHxFA4CjGkL+GYjRyx35W0Mr7DP5+9q6WMkyKXB+904bYmG40syjMFV0oLlhhFCwWl0vA0DyzTDkwAiJw==",
-          "dev": true,
-          "requires": {
-            "esutils": "^2.0.2",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-builder-react-jsx-experimental": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.1.tgz",
-      "integrity": "sha512-irQJ8kpQUV3JasXPSFQ+LCCtJSc5ceZrPFVj6TElR6XCHssi3jV8ch3odIrNtjJFRZZVbrOEfJMI79TPU/h1pQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-annotate-as-pure": "^7.10.1",
-        "@babel/helper-module-imports": "^7.10.1",
-        "@babel/types": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-module-imports": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.1.tgz",
-          "integrity": "sha512-SFxgwYmZ3HZPyZwJRiVNLRHWuW2OgE5k2nrVs6D9Iv4PPnXVffuEHy83Sfx/l4SqF+5kyJXjAyUmrG7tNm+qVg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.1"
-          }
-        },
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-compilation-targets": {
-      "version": "7.12.5",
-      "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
-      "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
-      "dev": true,
-      "requires": {
-        "@babel/compat-data": "^7.12.5",
-        "@babel/helper-validator-option": "^7.12.1",
-        "browserslist": "^4.14.5",
-        "semver": "^5.5.0"
-      },
-      "dependencies": {
-        "browserslist": {
-          "version": "4.16.1",
-          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz",
-          "integrity": "sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==",
-          "dev": true,
-          "requires": {
-            "caniuse-lite": "^1.0.30001173",
-            "colorette": "^1.2.1",
-            "electron-to-chromium": "^1.3.634",
-            "escalade": "^3.1.1",
-            "node-releases": "^1.1.69"
-          }
-        },
-        "caniuse-lite": {
-          "version": "1.0.30001173",
-          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001173.tgz",
-          "integrity": "sha512-R3aqmjrICdGCTAnSXtNyvWYMK3YtV5jwudbq0T7nN9k4kmE4CBuwPqyJ+KBzepSTh0huivV2gLbSMEzTTmfeYw==",
-          "dev": true
-        },
-        "electron-to-chromium": {
-          "version": "1.3.635",
-          "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.635.tgz",
-          "integrity": "sha512-RRriZOLs9CpW6KTLmgBqyUdnY0QNqqWs0HOtuQGGEMizOTNNn1P7sGRBxARnUeLejOsgwjDyRqT3E/CSst02ZQ==",
-          "dev": true
-        },
-        "escalade": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
-          "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
-          "dev": true
-        },
-        "node-releases": {
-          "version": "1.1.69",
-          "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.69.tgz",
-          "integrity": "sha512-DGIjo79VDEyAnRlfSqYTsy+yoHd2IOjJiKUozD2MV2D85Vso6Bug56mb9tT/fY5Urt0iqk01H7x+llAruDR2zA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/helper-create-class-features-plugin": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
-      "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-function-name": "^7.10.4",
-        "@babel/helper-member-expression-to-functions": "^7.12.1",
-        "@babel/helper-optimise-call-expression": "^7.10.4",
-        "@babel/helper-replace-supers": "^7.12.1",
-        "@babel/helper-split-export-declaration": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
-          "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
-          "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
-          "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.12.10",
-            "@babel/template": "^7.12.7",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
-          "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz",
-          "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz",
-          "integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz",
-          "integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.12.7",
-            "@babel/helper-optimise-call-expression": "^7.12.10",
-            "@babel/traverse": "^7.12.10",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz",
-          "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
-          "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
-          "dev": true
-        },
-        "@babel/template": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
-          "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.12.7",
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz",
-          "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.12.11",
-            "@babel/generator": "^7.12.11",
-            "@babel/helper-function-name": "^7.12.11",
-            "@babel/helper-split-export-declaration": "^7.12.11",
-            "@babel/parser": "^7.12.11",
-            "@babel/types": "^7.12.12",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-create-regexp-features-plugin": {
-      "version": "7.8.8",
-      "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz",
-      "integrity": "sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-annotate-as-pure": "^7.8.3",
-        "@babel/helper-regex": "^7.8.3",
-        "regexpu-core": "^4.7.0"
-      },
-      "dependencies": {
-        "jsesc": {
-          "version": "0.5.0",
-          "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
-          "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
-          "dev": true
-        },
-        "regexpu-core": {
-          "version": "4.7.0",
-          "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz",
-          "integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==",
-          "dev": true,
-          "requires": {
-            "regenerate": "^1.4.0",
-            "regenerate-unicode-properties": "^8.2.0",
-            "regjsgen": "^0.5.1",
-            "regjsparser": "^0.6.4",
-            "unicode-match-property-ecmascript": "^1.0.4",
-            "unicode-match-property-value-ecmascript": "^1.2.0"
-          }
-        },
-        "regjsgen": {
-          "version": "0.5.1",
-          "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz",
-          "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==",
-          "dev": true
-        },
-        "regjsparser": {
-          "version": "0.6.4",
-          "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
-          "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
-          "dev": true,
-          "requires": {
-            "jsesc": "~0.5.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-define-map": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.1.tgz",
-      "integrity": "sha512-+5odWpX+OnvkD0Zmq7panrMuAGQBu6aPUgvMzuMGo4R+jUOvealEj2hiqI6WhxgKrTpFoFj0+VdsuA8KDxHBDg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-function-name": "^7.10.1",
-        "@babel/types": "^7.10.1",
-        "lodash": "^4.17.13"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-explode-assignable-expression": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.1.tgz",
-      "integrity": "sha512-vcUJ3cDjLjvkKzt6rHrl767FeE7pMEYfPanq5L16GRtrXIoznc0HykNW2aEYkcnP76P0isoqJ34dDMFZwzEpJg==",
-      "dev": true,
-      "requires": {
-        "@babel/traverse": "^7.10.1",
-        "@babel/types": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-function-name": {
-      "version": "7.10.3",
-      "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.3.tgz",
-      "integrity": "sha512-FvSj2aiOd8zbeqijjgqdMDSyxsGHaMt5Tr0XjQsGKHD3/1FP3wksjnLAWzxw7lvXiej8W1Jt47SKTZ6upQNiRw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-get-function-arity": "^7.10.3",
-        "@babel/template": "^7.10.3",
-        "@babel/types": "^7.10.3"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.3.tgz",
-          "integrity": "sha512-nZxaJhBXBQ8HVoIcGsf9qWep3Oh3jCENK54V4mRF7qaJabVsAYdbTtmSD8WmAp1R6ytPiu5apMwSXyxB1WlaBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.3",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-get-function-arity": {
-      "version": "7.10.3",
-      "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.3.tgz",
-      "integrity": "sha512-iUD/gFsR+M6uiy69JA6fzM5seno8oE85IYZdbVVEuQaZlEzMO2MXblh+KSPJgsZAUx0EEbWXU0yJaW7C9CdAVg==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.10.3"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.3.tgz",
-          "integrity": "sha512-nZxaJhBXBQ8HVoIcGsf9qWep3Oh3jCENK54V4mRF7qaJabVsAYdbTtmSD8WmAp1R6ytPiu5apMwSXyxB1WlaBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.3",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-hoist-variables": {
-      "version": "7.10.4",
-      "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz",
-      "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-member-expression-to-functions": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.1.tgz",
-      "integrity": "sha512-u7XLXeM2n50gb6PWJ9hoO5oO7JFPaZtrh35t8RqKLT1jFKj9IWeD1zrcrYp1q1qiZTdEarfDWfTIP8nGsu0h5g==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-module-imports": {
-      "version": "7.0.0",
-      "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz",
-      "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==",
-      "requires": {
-        "@babel/types": "^7.0.0"
-      }
-    },
-    "@babel/helper-module-transforms": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
-      "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-module-imports": "^7.12.1",
-        "@babel/helper-replace-supers": "^7.12.1",
-        "@babel/helper-simple-access": "^7.12.1",
-        "@babel/helper-split-export-declaration": "^7.11.0",
-        "@babel/helper-validator-identifier": "^7.10.4",
-        "@babel/template": "^7.10.4",
-        "@babel/traverse": "^7.12.1",
-        "@babel/types": "^7.12.1",
-        "lodash": "^4.17.19"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
-          "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
-          "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
-          "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.12.10",
-            "@babel/template": "^7.12.7",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
-          "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz",
-          "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz",
-          "integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz",
-          "integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.12.7",
-            "@babel/helper-optimise-call-expression": "^7.12.10",
-            "@babel/traverse": "^7.12.10",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz",
-          "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
-          "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
-          "dev": true
-        },
-        "@babel/template": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
-          "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.12.7",
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz",
-          "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.12.11",
-            "@babel/generator": "^7.12.11",
-            "@babel/helper-function-name": "^7.12.11",
-            "@babel/helper-split-export-declaration": "^7.12.11",
-            "@babel/parser": "^7.12.11",
-            "@babel/types": "^7.12.12",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-optimise-call-expression": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.1.tgz",
-      "integrity": "sha512-a0DjNS1prnBsoKx83dP2falChcs7p3i8VMzdrSbfLhuQra/2ENC4sbri34dz/rWmDADsmF1q5GbfaXydh0Jbjg==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-plugin-utils": {
-      "version": "7.0.0",
-      "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz",
-      "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==",
-      "dev": true
-    },
-    "@babel/helper-regex": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz",
-      "integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==",
-      "dev": true,
-      "requires": {
-        "lodash": "^4.17.13"
-      }
-    },
-    "@babel/helper-remap-async-to-generator": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz",
-      "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-annotate-as-pure": "^7.10.4",
-        "@babel/helper-wrap-function": "^7.10.4",
-        "@babel/types": "^7.12.1"
-      },
-      "dependencies": {
-        "@babel/helper-annotate-as-pure": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz",
-          "integrity": "sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-replace-supers": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.1.tgz",
-      "integrity": "sha512-SOwJzEfpuQwInzzQJGjGaiG578UYmyi2Xw668klPWV5n07B73S0a9btjLk/52Mlcxa+5AdIYqws1KyXRfMoB7A==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-member-expression-to-functions": "^7.10.1",
-        "@babel/helper-optimise-call-expression": "^7.10.1",
-        "@babel/traverse": "^7.10.1",
-        "@babel/types": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-simple-access": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
-      "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.12.1"
-      },
-      "dependencies": {
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-skip-transparent-expression-wrappers": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
-      "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.12.1"
-      },
-      "dependencies": {
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.12.6",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
-          "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-split-export-declaration": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.1.tgz",
-      "integrity": "sha512-UQ1LVBPrYdbchNhLwj6fetj46BcFwfS4NllJo/1aJsT+1dLTEnXJL0qHqtY7gPzF8S2fXBJamf1biAXV3X077g==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.3.tgz",
-          "integrity": "sha512-nZxaJhBXBQ8HVoIcGsf9qWep3Oh3jCENK54V4mRF7qaJabVsAYdbTtmSD8WmAp1R6ytPiu5apMwSXyxB1WlaBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.3",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helper-validator-identifier": {
-      "version": "7.10.3",
-      "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.3.tgz",
-      "integrity": "sha512-bU8JvtlYpJSBPuj1VUmKpFGaDZuLxASky3LhaKj3bmpSTY6VWooSM8msk+Z0CZoErFye2tlABF6yDkT3FOPAXw==",
-      "dev": true
-    },
-    "@babel/helper-validator-option": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz",
-      "integrity": "sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==",
-      "dev": true
-    },
-    "@babel/helper-wrap-function": {
-      "version": "7.12.3",
-      "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz",
-      "integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-function-name": "^7.10.4",
-        "@babel/template": "^7.10.4",
-        "@babel/traverse": "^7.10.4",
-        "@babel/types": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
-          "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
-          "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
-          "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.12.10",
-            "@babel/template": "^7.12.7",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
-          "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz",
-          "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
-          "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
-          "dev": true
-        },
-        "@babel/template": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
-          "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.12.7",
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz",
-          "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.12.11",
-            "@babel/generator": "^7.12.11",
-            "@babel/helper-function-name": "^7.12.11",
-            "@babel/helper-split-export-declaration": "^7.12.11",
-            "@babel/parser": "^7.12.11",
-            "@babel/types": "^7.12.12",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/helpers": {
-      "version": "7.12.5",
-      "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
-      "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
-      "dev": true,
-      "requires": {
-        "@babel/template": "^7.10.4",
-        "@babel/traverse": "^7.12.5",
-        "@babel/types": "^7.12.5"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
-          "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
-          "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
-          "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.12.10",
-            "@babel/template": "^7.12.7",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
-          "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz",
-          "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
-          "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
-          "dev": true
-        },
-        "@babel/template": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
-          "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.12.7",
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz",
-          "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.12.11",
-            "@babel/generator": "^7.12.11",
-            "@babel/helper-function-name": "^7.12.11",
-            "@babel/helper-split-export-declaration": "^7.12.11",
-            "@babel/parser": "^7.12.11",
-            "@babel/types": "^7.12.12",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/highlight": {
-      "version": "7.0.0",
-      "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz",
-      "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==",
-      "requires": {
-        "chalk": "^2.0.0",
-        "esutils": "^2.0.2",
-        "js-tokens": "^4.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.1",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
-          "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/node": {
-      "version": "7.12.10",
-      "resolved": "https://registry.npmjs.org/@babel/node/-/node-7.12.10.tgz",
-      "integrity": "sha512-lJT1sXp1bEfAZ7B2ChEOOiUxaGbIWkcAixqZDpbHnJWUqIjoofOGo5ON1bJ9HOmtMdF7rqKiOoM7zZSI87El3g==",
-      "dev": true,
-      "requires": {
-        "@babel/register": "^7.12.10",
-        "commander": "^4.0.1",
-        "core-js": "^3.2.1",
-        "lodash": "^4.17.19",
-        "node-environment-flags": "^1.0.5",
-        "regenerator-runtime": "^0.13.4",
-        "v8flags": "^3.1.1"
-      },
-      "dependencies": {
-        "commander": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
-          "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/parser": {
-      "version": "7.10.3",
-      "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.10.3.tgz",
-      "integrity": "sha512-oJtNJCMFdIMwXGmx+KxuaD7i3b8uS7TTFYW/FNG2BT8m+fmGHoiPYoH0Pe3gya07WuFmM5FCDIr1x0irkD/hyA==",
-      "dev": true
-    },
-    "@babel/plugin-proposal-async-generator-functions": {
-      "version": "7.12.12",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz",
-      "integrity": "sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/helper-remap-async-to-generator": "^7.12.1",
-        "@babel/plugin-syntax-async-generators": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-class-properties": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
-      "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-create-class-features-plugin": "^7.12.1",
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-decorators": {
-      "version": "7.10.5",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.10.5.tgz",
-      "integrity": "sha512-Sc5TAQSZuLzgY0664mMDn24Vw2P8g/VhyLyGPaWiHahhgLqeZvcGeyBZOrJW0oSKIK2mvQ22a1ENXBIQLhrEiQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-create-class-features-plugin": "^7.10.5",
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-decorators": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
-          "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.0.tgz",
-          "integrity": "sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.11.0",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-create-class-features-plugin": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz",
-          "integrity": "sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-member-expression-to-functions": "^7.10.5",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-replace-supers": "^7.10.4",
-            "@babel/helper-split-export-declaration": "^7.10.4"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
-          "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
-          "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz",
-          "integrity": "sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.11.0"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz",
-          "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz",
-          "integrity": "sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.10.4",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/traverse": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz",
-          "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.11.0"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.11.3",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz",
-          "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==",
-          "dev": true
-        },
-        "@babel/template": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
-          "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz",
-          "integrity": "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/generator": "^7.11.0",
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-split-export-declaration": "^7.11.0",
-            "@babel/parser": "^7.11.0",
-            "@babel/types": "^7.11.0",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz",
-          "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/plugin-proposal-dynamic-import": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz",
-      "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-dynamic-import": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-export-default-from": {
-      "version": "7.10.4",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.10.4.tgz",
-      "integrity": "sha512-G1l00VvDZ7Yk2yRlC5D8Ybvu3gmeHS3rCHoUYdjrqGYUtdeOBoRypnvDZ5KQqxyaiiGHWnVDeSEzA5F9ozItig==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-export-default-from": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-export-namespace-from": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz",
-      "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-json-strings": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz",
-      "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-json-strings": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-logical-assignment-operators": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz",
-      "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/plugin-syntax-logical-assignment-operators": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
-          "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        }
-      }
-    },
-    "@babel/plugin-proposal-nullish-coalescing-operator": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
-      "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-numeric-separator": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.1.tgz",
-      "integrity": "sha512-jjfym4N9HtCiNfyyLAVD8WqPYeHUrw4ihxuAynWj6zzp2gf9Ey2f7ImhFm6ikB3CLf5Z/zmcJDri6B4+9j9RsA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1",
-        "@babel/plugin-syntax-numeric-separator": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-object-rest-spread": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.1.tgz",
-      "integrity": "sha512-Z+Qri55KiQkHh7Fc4BW6o+QBuTagbOp9txE+4U1i79u9oWlf2npkiDx+Rf3iK3lbcHBuNy9UOkwuR5wOMH3LIQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1",
-        "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
-        "@babel/plugin-transform-parameters": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        },
-        "@babel/plugin-transform-parameters": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.1.tgz",
-          "integrity": "sha512-tJ1T0n6g4dXMsL45YsSzzSDZCxiHXAQp/qHrucOq5gEHncTA3xDxnd5+sZcoQp+N1ZbieAaB8r/VUCG0gqseOg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        }
-      }
-    },
-    "@babel/plugin-proposal-optional-catch-binding": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz",
-      "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-optional-chaining": {
-      "version": "7.12.7",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz",
-      "integrity": "sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
-        "@babel/plugin-syntax-optional-chaining": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-private-methods": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.1.tgz",
-      "integrity": "sha512-RZecFFJjDiQ2z6maFprLgrdnm0OzoC23Mx89xf1CcEsxmHuzuXOdniEuI+S3v7vjQG4F5sa6YtUp+19sZuSxHg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-create-class-features-plugin": "^7.10.1",
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-create-class-features-plugin": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.2.tgz",
-          "integrity": "sha512-5C/QhkGFh1vqcziq1vAL6SI9ymzUp8BCYjFpvYVhWP4DlATIb3u5q3iUd35mvlyGs8fO7hckkW7i0tmH+5+bvQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.1",
-            "@babel/helper-member-expression-to-functions": "^7.10.1",
-            "@babel/helper-optimise-call-expression": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/helper-replace-supers": "^7.10.1",
-            "@babel/helper-split-export-declaration": "^7.10.1"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-proposal-unicode-property-regex": {
-      "version": "7.8.8",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz",
-      "integrity": "sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-create-regexp-features-plugin": "^7.8.8",
-        "@babel/helper-plugin-utils": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-async-generators": {
-      "version": "7.8.4",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
-      "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-bigint": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
-      "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.3.tgz",
-          "integrity": "sha512-j/+j8NAWUTxOtx4LKHybpSClxHoq6I91DQ/mKgAXn5oNUPIUiGppjPIX3TDtJWPrdfP9Kfl7e4fgVMiQR9VE/g==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-class-properties": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.1.tgz",
-      "integrity": "sha512-Gf2Yx/iRs1JREDtVZ56OrjjgFHCaldpTnuy9BHla10qyVT3YkIIGEtoDWhyop0ksu1GvNjHIoYRBqm3zoR1jyQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.3.tgz",
-          "integrity": "sha512-j/+j8NAWUTxOtx4LKHybpSClxHoq6I91DQ/mKgAXn5oNUPIUiGppjPIX3TDtJWPrdfP9Kfl7e4fgVMiQR9VE/g==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-decorators": {
-      "version": "7.10.4",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.4.tgz",
-      "integrity": "sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-dynamic-import": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
-      "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-export-default-from": {
-      "version": "7.10.4",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.10.4.tgz",
-      "integrity": "sha512-79V6r6Pgudz0RnuMGp5xidu6Z+bPFugh8/Q9eDHonmLp4wKFAZDwygJwYgCzuDu8lFA/sYyT+mc5y2wkd7bTXA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-export-namespace-from": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
-      "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-flow": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.1.tgz",
-      "integrity": "sha512-1lBLLmtxrwpm4VKmtVFselI/P3pX+G63fAtUUt6b2Nzgao77KNDwyuRt90Mj2/9pKobtt68FdvjfqohZjg/FCA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-import-meta": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.1.tgz",
-      "integrity": "sha512-ypC4jwfIVF72og0dgvEcFRdOM2V9Qm1tu7RGmdZOlhsccyK0wisXmMObGuWEOd5jQ+K9wcIgSNftCpk2vkjUfQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.3.tgz",
-          "integrity": "sha512-j/+j8NAWUTxOtx4LKHybpSClxHoq6I91DQ/mKgAXn5oNUPIUiGppjPIX3TDtJWPrdfP9Kfl7e4fgVMiQR9VE/g==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-json-strings": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
-      "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-jsx": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz",
-      "integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-logical-assignment-operators": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.1.tgz",
-      "integrity": "sha512-XyHIFa9kdrgJS91CUH+ccPVTnJShr8nLGc5bG2IhGXv5p1Rd+8BleGE5yzIg2Nc1QZAdHDa0Qp4m6066OL96Iw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.3.tgz",
-          "integrity": "sha512-j/+j8NAWUTxOtx4LKHybpSClxHoq6I91DQ/mKgAXn5oNUPIUiGppjPIX3TDtJWPrdfP9Kfl7e4fgVMiQR9VE/g==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-nullish-coalescing-operator": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
-      "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-numeric-separator": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.1.tgz",
-      "integrity": "sha512-uTd0OsHrpe3tH5gRPTxG8Voh99/WCU78vIm5NMRYPAqC8lR4vajt6KkCAknCHrx24vkPdd/05yfdGSB4EIY2mg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.3.tgz",
-          "integrity": "sha512-j/+j8NAWUTxOtx4LKHybpSClxHoq6I91DQ/mKgAXn5oNUPIUiGppjPIX3TDtJWPrdfP9Kfl7e4fgVMiQR9VE/g==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-object-rest-spread": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
-      "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.3.tgz",
-          "integrity": "sha512-j/+j8NAWUTxOtx4LKHybpSClxHoq6I91DQ/mKgAXn5oNUPIUiGppjPIX3TDtJWPrdfP9Kfl7e4fgVMiQR9VE/g==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-optional-catch-binding": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
-      "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-optional-chaining": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
-      "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-top-level-await": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz",
-      "integrity": "sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-syntax-typescript": {
-      "version": "7.10.4",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz",
-      "integrity": "sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-arrow-functions": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz",
-      "integrity": "sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-async-to-generator": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz",
-      "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-module-imports": "^7.12.1",
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/helper-remap-async-to-generator": "^7.12.1"
-      },
-      "dependencies": {
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/plugin-transform-block-scoped-functions": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz",
-      "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-block-scoping": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz",
-      "integrity": "sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.3",
-        "lodash": "^4.17.13"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-classes": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.1.tgz",
-      "integrity": "sha512-P9V0YIh+ln/B3RStPoXpEQ/CoAxQIhRSUn7aXqQ+FZJ2u8+oCtjIXR3+X0vsSD8zv+mb56K7wZW1XiDTDGiDRQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-annotate-as-pure": "^7.10.1",
-        "@babel/helper-define-map": "^7.10.1",
-        "@babel/helper-function-name": "^7.10.1",
-        "@babel/helper-optimise-call-expression": "^7.10.1",
-        "@babel/helper-plugin-utils": "^7.10.1",
-        "@babel/helper-replace-supers": "^7.10.1",
-        "@babel/helper-split-export-declaration": "^7.10.1",
-        "globals": "^11.1.0"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-computed-properties": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz",
-      "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-destructuring": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz",
-      "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-dotall-regex": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz",
-      "integrity": "sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-create-regexp-features-plugin": "^7.8.3",
-        "@babel/helper-plugin-utils": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-duplicate-keys": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz",
-      "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-exponentiation-operator": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.1.tgz",
-      "integrity": "sha512-lr/przdAbpEA2BUzRvjXdEDLrArGRRPwbaF9rvayuHRvdQ7lUTTkZnhZrJ4LE2jvgMRFF4f0YuPQ20vhiPYxtA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.1",
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-flow-strip-types": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz",
-      "integrity": "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-flow": "^7.12.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-for-of": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz",
-      "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-function-name": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz",
-      "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-function-name": "^7.10.4",
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
-          "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
-          "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.12.10",
-            "@babel/template": "^7.12.7",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
-          "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
-          "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
-          "dev": true
-        },
-        "@babel/template": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
-          "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.12.7",
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/plugin-transform-literals": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz",
-      "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-member-expression-literals": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.1.tgz",
-      "integrity": "sha512-UmaWhDokOFT2GcgU6MkHC11i0NQcL63iqeufXWfRy6pUOGYeCGEKhvfFO6Vz70UfYJYHwveg62GS83Rvpxn+NA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-modules-amd": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz",
-      "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-module-transforms": "^7.12.1",
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "babel-plugin-dynamic-import-node": "^2.3.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-modules-commonjs": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz",
-      "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-module-transforms": "^7.12.1",
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/helper-simple-access": "^7.12.1",
-        "babel-plugin-dynamic-import-node": "^2.3.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-modules-systemjs": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz",
-      "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-hoist-variables": "^7.10.4",
-        "@babel/helper-module-transforms": "^7.12.1",
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/helper-validator-identifier": "^7.10.4",
-        "babel-plugin-dynamic-import-node": "^2.3.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-modules-umd": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz",
-      "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-module-transforms": "^7.12.1",
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-named-capturing-groups-regex": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz",
-      "integrity": "sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-create-regexp-features-plugin": "^7.8.3"
-      }
-    },
-    "@babel/plugin-transform-new-target": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz",
-      "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-object-super": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz",
-      "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/helper-replace-supers": "^7.12.1"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
-          "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
-          "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
-          "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.12.10",
-            "@babel/template": "^7.12.7",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
-          "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz",
-          "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz",
-          "integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz",
-          "integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.12.7",
-            "@babel/helper-optimise-call-expression": "^7.12.10",
-            "@babel/traverse": "^7.12.10",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz",
-          "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
-          "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
-          "dev": true
-        },
-        "@babel/template": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
-          "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.12.7",
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz",
-          "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.12.11",
-            "@babel/generator": "^7.12.11",
-            "@babel/helper-function-name": "^7.12.11",
-            "@babel/helper-split-export-declaration": "^7.12.11",
-            "@babel/parser": "^7.12.11",
-            "@babel/types": "^7.12.12",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/plugin-transform-parameters": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
-      "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-property-literals": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.1.tgz",
-      "integrity": "sha512-Kr6+mgag8auNrgEpbfIWzdXYOvqDHZOF0+Bx2xh4H2EDNwcbRb9lY6nkZg8oSjsX+DH9Ebxm9hOqtKW+gRDeNA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-react-constant-elements": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.10.1.tgz",
-      "integrity": "sha512-V4os6bkWt/jbrzfyVcZn2ZpuHZkvj3vyBU0U/dtS8SZuMS7Rfx5oknTrtfyXJ2/QZk8gX7Yls5Z921ItNpE30Q==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-react-display-name": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz",
-      "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-react-jsx": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.8.3.tgz",
-      "integrity": "sha512-r0h+mUiyL595ikykci+fbwm9YzmuOrUBi0b+FDIKmi3fPQyFokWVEMJnRWHJPPQEjyFJyna9WZC6Viv6UHSv1g==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-builder-react-jsx": "^7.8.3",
-        "@babel/helper-plugin-utils": "^7.8.3",
-        "@babel/plugin-syntax-jsx": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-react-jsx-development": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.1.tgz",
-      "integrity": "sha512-XwDy/FFoCfw9wGFtdn5Z+dHh6HXKHkC6DwKNWpN74VWinUagZfDcEJc3Y8Dn5B3WMVnAllX8Kviaw7MtC5Epwg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-builder-react-jsx-experimental": "^7.10.1",
-        "@babel/helper-plugin-utils": "^7.10.1",
-        "@babel/plugin-syntax-jsx": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        },
-        "@babel/plugin-syntax-jsx": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.1.tgz",
-          "integrity": "sha512-+OxyOArpVFXQeXKLO9o+r2I4dIoVoy6+Uu0vKELrlweDM3QJADZj+Z+5ERansZqIZBcLj42vHnDI8Rz9BnRIuQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        }
-      }
-    },
-    "@babel/plugin-transform-react-pure-annotations": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.1.tgz",
-      "integrity": "sha512-mfhoiai083AkeewsBHUpaS/FM1dmUENHBMpS/tugSJ7VXqXO5dCN1Gkint2YvM1Cdv1uhmAKt1ZOuAjceKmlLA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-annotate-as-pure": "^7.10.1",
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-regenerator": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz",
-      "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==",
-      "dev": true,
-      "requires": {
-        "regenerator-transform": "^0.14.2"
-      }
-    },
-    "@babel/plugin-transform-reserved-words": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz",
-      "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-runtime": {
-      "version": "7.12.10",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.10.tgz",
-      "integrity": "sha512-xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-module-imports": "^7.12.5",
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "semver": "^5.5.1"
-      },
-      "dependencies": {
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/plugin-transform-shorthand-properties": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz",
-      "integrity": "sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-spread": {
-      "version": "7.8.3",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz",
-      "integrity": "sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.8.3"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
-          "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-sticky-regex": {
-      "version": "7.12.7",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz",
-      "integrity": "sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-template-literals": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.1.tgz",
-      "integrity": "sha512-t7B/3MQf5M1T9hPCRG28DNGZUuxAuDqLYS03rJrIk2prj/UV7Z6FOneijhQhnv/Xa039vidXeVbvjK2SK5f7Gg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-annotate-as-pure": "^7.10.1",
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-typeof-symbol": {
-      "version": "7.12.10",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz",
-      "integrity": "sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-typescript": {
-      "version": "7.10.5",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.10.5.tgz",
-      "integrity": "sha512-YCyYsFrrRMZ3qR7wRwtSSJovPG5vGyG4ZdcSAivGwTfoasMp3VOB/AKhohu3dFtmB4cCDcsndCSxGtrdliCsZQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-create-class-features-plugin": "^7.10.5",
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-syntax-typescript": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
-          "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.10.5.tgz",
-          "integrity": "sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.5",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-create-class-features-plugin": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz",
-          "integrity": "sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-member-expression-to-functions": "^7.10.5",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-replace-supers": "^7.10.4",
-            "@babel/helper-split-export-declaration": "^7.10.4"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
-          "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
-          "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz",
-          "integrity": "sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.5"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz",
-          "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz",
-          "integrity": "sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.10.4",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/traverse": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz",
-          "integrity": "sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.10.5.tgz",
-          "integrity": "sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==",
-          "dev": true
-        },
-        "@babel/template": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
-          "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.10.5.tgz",
-          "integrity": "sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/generator": "^7.10.5",
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-split-export-declaration": "^7.10.4",
-            "@babel/parser": "^7.10.5",
-            "@babel/types": "^7.10.5",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
-          "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "lodash": {
-          "version": "4.17.19",
-          "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
-          "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
-          "dev": true
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/plugin-transform-unicode-escapes": {
-      "version": "7.10.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.1.tgz",
-      "integrity": "sha512-zZ0Poh/yy1d4jeDWpx/mNwbKJVwUYJX73q+gyh4bwtG0/iUlzdEu0sLMda8yuDFS6LBQlT/ST1SJAR6zYwXWgw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/plugin-transform-unicode-regex": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz",
-      "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-create-regexp-features-plugin": "^7.12.1",
-        "@babel/helper-plugin-utils": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-annotate-as-pure": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz",
-          "integrity": "sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-create-regexp-features-plugin": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz",
-          "integrity": "sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.4",
-            "regexpu-core": "^4.7.1"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "jsesc": {
-          "version": "0.5.0",
-          "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
-          "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
-          "dev": true
-        },
-        "regexpu-core": {
-          "version": "4.7.1",
-          "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
-          "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==",
-          "dev": true,
-          "requires": {
-            "regenerate": "^1.4.0",
-            "regenerate-unicode-properties": "^8.2.0",
-            "regjsgen": "^0.5.1",
-            "regjsparser": "^0.6.4",
-            "unicode-match-property-ecmascript": "^1.0.4",
-            "unicode-match-property-value-ecmascript": "^1.2.0"
-          }
-        },
-        "regjsgen": {
-          "version": "0.5.2",
-          "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
-          "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
-          "dev": true
-        },
-        "regjsparser": {
-          "version": "0.6.4",
-          "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
-          "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
-          "dev": true,
-          "requires": {
-            "jsesc": "~0.5.0"
-          }
-        }
-      }
-    },
-    "@babel/polyfill": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz",
-      "integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==",
-      "requires": {
-        "core-js": "^2.6.5",
-        "regenerator-runtime": "^0.13.4"
-      },
-      "dependencies": {
-        "core-js": {
-          "version": "2.6.12",
-          "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz",
-          "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="
-        }
-      }
-    },
-    "@babel/preset-env": {
-      "version": "7.12.11",
-      "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.11.tgz",
-      "integrity": "sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==",
-      "dev": true,
-      "requires": {
-        "@babel/compat-data": "^7.12.7",
-        "@babel/helper-compilation-targets": "^7.12.5",
-        "@babel/helper-module-imports": "^7.12.5",
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/helper-validator-option": "^7.12.11",
-        "@babel/plugin-proposal-async-generator-functions": "^7.12.1",
-        "@babel/plugin-proposal-class-properties": "^7.12.1",
-        "@babel/plugin-proposal-dynamic-import": "^7.12.1",
-        "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
-        "@babel/plugin-proposal-json-strings": "^7.12.1",
-        "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
-        "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
-        "@babel/plugin-proposal-numeric-separator": "^7.12.7",
-        "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
-        "@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
-        "@babel/plugin-proposal-optional-chaining": "^7.12.7",
-        "@babel/plugin-proposal-private-methods": "^7.12.1",
-        "@babel/plugin-proposal-unicode-property-regex": "^7.12.1",
-        "@babel/plugin-syntax-async-generators": "^7.8.0",
-        "@babel/plugin-syntax-class-properties": "^7.12.1",
-        "@babel/plugin-syntax-dynamic-import": "^7.8.0",
-        "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
-        "@babel/plugin-syntax-json-strings": "^7.8.0",
-        "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
-        "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
-        "@babel/plugin-syntax-numeric-separator": "^7.10.4",
-        "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
-        "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
-        "@babel/plugin-syntax-optional-chaining": "^7.8.0",
-        "@babel/plugin-syntax-top-level-await": "^7.12.1",
-        "@babel/plugin-transform-arrow-functions": "^7.12.1",
-        "@babel/plugin-transform-async-to-generator": "^7.12.1",
-        "@babel/plugin-transform-block-scoped-functions": "^7.12.1",
-        "@babel/plugin-transform-block-scoping": "^7.12.11",
-        "@babel/plugin-transform-classes": "^7.12.1",
-        "@babel/plugin-transform-computed-properties": "^7.12.1",
-        "@babel/plugin-transform-destructuring": "^7.12.1",
-        "@babel/plugin-transform-dotall-regex": "^7.12.1",
-        "@babel/plugin-transform-duplicate-keys": "^7.12.1",
-        "@babel/plugin-transform-exponentiation-operator": "^7.12.1",
-        "@babel/plugin-transform-for-of": "^7.12.1",
-        "@babel/plugin-transform-function-name": "^7.12.1",
-        "@babel/plugin-transform-literals": "^7.12.1",
-        "@babel/plugin-transform-member-expression-literals": "^7.12.1",
-        "@babel/plugin-transform-modules-amd": "^7.12.1",
-        "@babel/plugin-transform-modules-commonjs": "^7.12.1",
-        "@babel/plugin-transform-modules-systemjs": "^7.12.1",
-        "@babel/plugin-transform-modules-umd": "^7.12.1",
-        "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1",
-        "@babel/plugin-transform-new-target": "^7.12.1",
-        "@babel/plugin-transform-object-super": "^7.12.1",
-        "@babel/plugin-transform-parameters": "^7.12.1",
-        "@babel/plugin-transform-property-literals": "^7.12.1",
-        "@babel/plugin-transform-regenerator": "^7.12.1",
-        "@babel/plugin-transform-reserved-words": "^7.12.1",
-        "@babel/plugin-transform-shorthand-properties": "^7.12.1",
-        "@babel/plugin-transform-spread": "^7.12.1",
-        "@babel/plugin-transform-sticky-regex": "^7.12.7",
-        "@babel/plugin-transform-template-literals": "^7.12.1",
-        "@babel/plugin-transform-typeof-symbol": "^7.12.10",
-        "@babel/plugin-transform-unicode-escapes": "^7.12.1",
-        "@babel/plugin-transform-unicode-regex": "^7.12.1",
-        "@babel/preset-modules": "^0.1.3",
-        "@babel/types": "^7.12.11",
-        "core-js-compat": "^3.8.0",
-        "semver": "^5.5.0"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
-          "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
-          "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          },
-          "dependencies": {
-            "jsesc": {
-              "version": "2.5.2",
-              "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
-              "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
-              "dev": true
-            }
-          }
-        },
-        "@babel/helper-annotate-as-pure": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz",
-          "integrity": "sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-builder-binary-assignment-operator-visitor": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz",
-          "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-explode-assignable-expression": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-create-regexp-features-plugin": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz",
-          "integrity": "sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.4",
-            "regexpu-core": "^4.7.1"
-          }
-        },
-        "@babel/helper-define-map": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz",
-          "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/types": "^7.10.5",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/helper-explode-assignable-expression": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz",
-          "integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
-          "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.12.10",
-            "@babel/template": "^7.12.7",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
-          "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz",
-          "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz",
-          "integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz",
-          "integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.12.7",
-            "@babel/helper-optimise-call-expression": "^7.12.10",
-            "@babel/traverse": "^7.12.10",
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz",
-          "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.11"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/helper-validator-option": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz",
-          "integrity": "sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
-          "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
-          "dev": true
-        },
-        "@babel/plugin-proposal-numeric-separator": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz",
-          "integrity": "sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-numeric-separator": "^7.10.4"
-          }
-        },
-        "@babel/plugin-proposal-object-rest-spread": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
-          "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
-            "@babel/plugin-transform-parameters": "^7.12.1"
-          }
-        },
-        "@babel/plugin-proposal-private-methods": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz",
-          "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-class-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-proposal-unicode-property-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz",
-          "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-class-properties": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz",
-          "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-logical-assignment-operators": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
-          "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-numeric-separator": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
-          "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-top-level-await": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz",
-          "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-arrow-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz",
-          "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-block-scoping": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz",
-          "integrity": "sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-classes": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz",
-          "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.4",
-            "@babel/helper-define-map": "^7.10.4",
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-replace-supers": "^7.12.1",
-            "@babel/helper-split-export-declaration": "^7.10.4",
-            "globals": "^11.1.0"
-          }
-        },
-        "@babel/plugin-transform-dotall-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz",
-          "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-exponentiation-operator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz",
-          "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-member-expression-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz",
-          "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-named-capturing-groups-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz",
-          "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1"
-          }
-        },
-        "@babel/plugin-transform-property-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz",
-          "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-shorthand-properties": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz",
-          "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-spread": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
-          "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
-          }
-        },
-        "@babel/plugin-transform-template-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz",
-          "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-unicode-escapes": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz",
-          "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/template": {
-          "version": "7.12.7",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
-          "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.12.7",
-            "@babel/types": "^7.12.7"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz",
-          "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.12.11",
-            "@babel/generator": "^7.12.11",
-            "@babel/helper-function-name": "^7.12.11",
-            "@babel/helper-split-export-declaration": "^7.12.11",
-            "@babel/parser": "^7.12.11",
-            "@babel/types": "^7.12.12",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "browserslist": {
-          "version": "4.16.1",
-          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz",
-          "integrity": "sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==",
-          "dev": true,
-          "requires": {
-            "caniuse-lite": "^1.0.30001173",
-            "colorette": "^1.2.1",
-            "electron-to-chromium": "^1.3.634",
-            "escalade": "^3.1.1",
-            "node-releases": "^1.1.69"
-          }
-        },
-        "caniuse-lite": {
-          "version": "1.0.30001173",
-          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001173.tgz",
-          "integrity": "sha512-R3aqmjrICdGCTAnSXtNyvWYMK3YtV5jwudbq0T7nN9k4kmE4CBuwPqyJ+KBzepSTh0huivV2gLbSMEzTTmfeYw==",
-          "dev": true
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "core-js-compat": {
-          "version": "3.8.2",
-          "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.2.tgz",
-          "integrity": "sha512-LO8uL9lOIyRRrQmZxHZFl1RV+ZbcsAkFWTktn5SmH40WgLtSNYN4m4W2v9ONT147PxBY/XrRhrWq8TlvObyUjQ==",
-          "dev": true,
-          "requires": {
-            "browserslist": "^4.16.0",
-            "semver": "7.0.0"
-          },
-          "dependencies": {
-            "semver": {
-              "version": "7.0.0",
-              "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
-              "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
-              "dev": true
-            }
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "electron-to-chromium": {
-          "version": "1.3.635",
-          "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.635.tgz",
-          "integrity": "sha512-RRriZOLs9CpW6KTLmgBqyUdnY0QNqqWs0HOtuQGGEMizOTNNn1P7sGRBxARnUeLejOsgwjDyRqT3E/CSst02ZQ==",
-          "dev": true
-        },
-        "escalade": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
-          "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
-          "dev": true
-        },
-        "jsesc": {
-          "version": "0.5.0",
-          "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
-          "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
-          "dev": true
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "node-releases": {
-          "version": "1.1.69",
-          "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.69.tgz",
-          "integrity": "sha512-DGIjo79VDEyAnRlfSqYTsy+yoHd2IOjJiKUozD2MV2D85Vso6Bug56mb9tT/fY5Urt0iqk01H7x+llAruDR2zA==",
-          "dev": true
-        },
-        "regexpu-core": {
-          "version": "4.7.1",
-          "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
-          "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==",
-          "dev": true,
-          "requires": {
-            "regenerate": "^1.4.0",
-            "regenerate-unicode-properties": "^8.2.0",
-            "regjsgen": "^0.5.1",
-            "regjsparser": "^0.6.4",
-            "unicode-match-property-ecmascript": "^1.0.4",
-            "unicode-match-property-value-ecmascript": "^1.2.0"
-          }
-        },
-        "regjsgen": {
-          "version": "0.5.2",
-          "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
-          "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
-          "dev": true
-        },
-        "regjsparser": {
-          "version": "0.6.4",
-          "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
-          "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
-          "dev": true,
-          "requires": {
-            "jsesc": "~0.5.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/preset-flow": {
-      "version": "7.12.1",
-      "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.12.1.tgz",
-      "integrity": "sha512-UAoyMdioAhM6H99qPoKvpHMzxmNVXno8GYU/7vZmGaHk6/KqfDYL1W0NxszVbJ2EP271b7e6Ox+Vk2A9QsB3Sw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-transform-flow-strip-types": "^7.12.1"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/preset-modules": {
-      "version": "0.1.3",
-      "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.3.tgz",
-      "integrity": "sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.0.0",
-        "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
-        "@babel/plugin-transform-dotall-regex": "^7.4.4",
-        "@babel/types": "^7.4.4",
-        "esutils": "^2.0.2"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/preset-react": {
-      "version": "7.12.10",
-      "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.10.tgz",
-      "integrity": "sha512-vtQNjaHRl4DUpp+t+g4wvTHsLQuye+n0H/wsXIZRn69oz/fvNC7gQ4IK73zGJBaxvHoxElDvnYCthMcT7uzFoQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-transform-react-display-name": "^7.12.1",
-        "@babel/plugin-transform-react-jsx": "^7.12.10",
-        "@babel/plugin-transform-react-jsx-development": "^7.12.7",
-        "@babel/plugin-transform-react-pure-annotations": "^7.12.1"
-      },
-      "dependencies": {
-        "@babel/helper-annotate-as-pure": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz",
-          "integrity": "sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/plugin-syntax-jsx": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz",
-          "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-react-jsx": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.12.tgz",
-          "integrity": "sha512-JDWGuzGNWscYcq8oJVCtSE61a5+XAOos+V0HrxnDieUus4UMnBEosDnY1VJqU5iZ4pA04QY7l0+JvHL1hZEfsw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.12.10",
-            "@babel/helper-module-imports": "^7.12.5",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-jsx": "^7.12.1",
-            "@babel/types": "^7.12.12"
-          }
-        },
-        "@babel/plugin-transform-react-jsx-development": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.12.tgz",
-          "integrity": "sha512-i1AxnKxHeMxUaWVXQOSIco4tvVvvCxMSfeBMnMM06mpaJt3g+MpxYQQrDfojUQldP1xxraPSJYSMEljoWM/dCg==",
-          "dev": true,
-          "requires": {
-            "@babel/plugin-transform-react-jsx": "^7.12.12"
-          }
-        },
-        "@babel/plugin-transform-react-pure-annotations": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz",
-          "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@babel/preset-typescript": {
-      "version": "7.10.4",
-      "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.10.4.tgz",
-      "integrity": "sha512-SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.10.4",
-        "@babel/plugin-transform-typescript": "^7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "@babel/register": {
-      "version": "7.12.10",
-      "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.12.10.tgz",
-      "integrity": "sha512-EvX/BvMMJRAA3jZgILWgbsrHwBQvllC5T8B29McyME8DvkdOxk4ujESfrMvME8IHSDvWXrmMXxPvA/lx2gqPLQ==",
-      "dev": true,
-      "requires": {
-        "find-cache-dir": "^2.0.0",
-        "lodash": "^4.17.19",
-        "make-dir": "^2.1.0",
-        "pirates": "^4.0.0",
-        "source-map-support": "^0.5.16"
-      }
-    },
-    "@babel/runtime": {
-      "version": "7.2.0",
-      "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.2.0.tgz",
-      "integrity": "sha512-oouEibCbHMVdZSDlJBO6bZmID/zA/G/Qx3H1d3rSNPTD+L8UNKvCat7aKWSJ74zYbm5zWGh0GQN0hKj8zYFTCg==",
-      "requires": {
-        "regenerator-runtime": "^0.12.0"
-      },
-      "dependencies": {
-        "regenerator-runtime": {
-          "version": "0.12.1",
-          "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz",
-          "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg=="
-        }
-      }
-    },
-    "@babel/runtime-corejs2": {
-      "version": "7.8.7",
-      "resolved": "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.8.7.tgz",
-      "integrity": "sha512-R8zbPiv25S0pGfMqAr55dRRxWB8vUeo3wicI4g9PFVBKmsy/9wmQUV1AaYW/kxRHUhx42TTh6F0+QO+4pwfYWg==",
-      "requires": {
-        "core-js": "^2.6.5",
-        "regenerator-runtime": "^0.13.4"
-      },
-      "dependencies": {
-        "core-js": {
-          "version": "2.6.11",
-          "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
-          "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="
-        }
-      }
-    },
-    "@babel/runtime-corejs3": {
-      "version": "7.12.5",
-      "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
-      "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
-      "requires": {
-        "core-js-pure": "^3.0.0",
-        "regenerator-runtime": "^0.13.4"
-      }
-    },
-    "@babel/template": {
-      "version": "7.10.3",
-      "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.3.tgz",
-      "integrity": "sha512-5BjI4gdtD+9fHZUsaxPHPNpwa+xRkDO7c7JbhYn2afvrkDu5SfAAbi9AIMXw2xEhO/BR35TqiW97IqNvCo/GqA==",
-      "dev": true,
-      "requires": {
-        "@babel/code-frame": "^7.10.3",
-        "@babel/parser": "^7.10.3",
-        "@babel/types": "^7.10.3"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.3.tgz",
-          "integrity": "sha512-fDx9eNW0qz0WkUeqL6tXEXzVlPh6Y5aCDEZesl0xBGA8ndRukX91Uk44ZqnkECp01NAZUdCAl+aiQNGi0k88Eg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.3"
-          }
-        },
-        "@babel/highlight": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.3.tgz",
-          "integrity": "sha512-Ih9B/u7AtgEnySE2L2F0Xm0GaM729XqqLfHkalTsbjXGyqmf/6M0Cu0WpvqueUlW+xk88BHw9Nkpj49naU+vWw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.3",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/types": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.3.tgz",
-          "integrity": "sha512-nZxaJhBXBQ8HVoIcGsf9qWep3Oh3jCENK54V4mRF7qaJabVsAYdbTtmSD8WmAp1R6ytPiu5apMwSXyxB1WlaBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.3",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/traverse": {
-      "version": "7.10.3",
-      "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.10.3.tgz",
-      "integrity": "sha512-qO6623eBFhuPm0TmmrUFMT1FulCmsSeJuVGhiLodk2raUDFhhTECLd9E9jC4LBIWziqt4wgF6KuXE4d+Jz9yug==",
-      "dev": true,
-      "requires": {
-        "@babel/code-frame": "^7.10.3",
-        "@babel/generator": "^7.10.3",
-        "@babel/helper-function-name": "^7.10.3",
-        "@babel/helper-split-export-declaration": "^7.10.1",
-        "@babel/parser": "^7.10.3",
-        "@babel/types": "^7.10.3",
-        "debug": "^4.1.0",
-        "globals": "^11.1.0",
-        "lodash": "^4.17.13"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.3.tgz",
-          "integrity": "sha512-fDx9eNW0qz0WkUeqL6tXEXzVlPh6Y5aCDEZesl0xBGA8ndRukX91Uk44ZqnkECp01NAZUdCAl+aiQNGi0k88Eg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.3"
-          }
-        },
-        "@babel/highlight": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.3.tgz",
-          "integrity": "sha512-Ih9B/u7AtgEnySE2L2F0Xm0GaM729XqqLfHkalTsbjXGyqmf/6M0Cu0WpvqueUlW+xk88BHw9Nkpj49naU+vWw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.3",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/types": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.3.tgz",
-          "integrity": "sha512-nZxaJhBXBQ8HVoIcGsf9qWep3Oh3jCENK54V4mRF7qaJabVsAYdbTtmSD8WmAp1R6ytPiu5apMwSXyxB1WlaBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.3",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@babel/types": {
-      "version": "7.2.2",
-      "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.2.2.tgz",
-      "integrity": "sha512-fKCuD6UFUMkR541eDWL+2ih/xFZBXPOg/7EQFeTluMDebfqR4jrpaCjLhkWlQS4hT6nRa2PMEgXKbRB5/H2fpg==",
-      "requires": {
-        "esutils": "^2.0.2",
-        "lodash": "^4.17.10",
-        "to-fast-properties": "^2.0.0"
-      }
-    },
-    "@base2/pretty-print-object": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.0.tgz",
-      "integrity": "sha512-4Th98KlMHr5+JkxfcoDT//6vY8vM+iSPrLNpHhRyLx2CFYi8e2RfqPLdpbnpo0Q5lQC5hNB79yes07zb02fvCw==",
-      "dev": true
-    },
-    "@bcoe/v8-coverage": {
-      "version": "0.2.3",
-      "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
-      "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
-      "dev": true
-    },
-    "@cnakazawa/watch": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
-      "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==",
-      "dev": true,
-      "requires": {
-        "exec-sh": "^0.3.2",
-        "minimist": "^1.2.0"
-      }
-    },
-    "@ctrl/tinycolor": {
-      "version": "3.3.1",
-      "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.3.1.tgz",
-      "integrity": "sha512-jUJrjU62MUgHDSu5JfONfgRM2V7GfN5KknsygfIbxwRZXGeayIzxk4O9GiYgEAr9DG5HJThTF5+a5x3wtrOKzQ=="
-    },
-    "@data-ui/event-flow": {
-      "version": "0.0.84",
-      "resolved": "https://registry.npmjs.org/@data-ui/event-flow/-/event-flow-0.0.84.tgz",
-      "integrity": "sha512-XOOYvpRMAT1r66dnGsrnQ+VEZVtY56np/wxzHcW7iqvvvxefvbkjGMUe0rAbMeSg17hjUfDQTBIBvf3uiVIQTA==",
-      "requires": {
-        "@babel/polyfill": "^7.0.0",
-        "@babel/runtime-corejs2": "^7.1.5",
-        "@data-ui/forms": "^0.0.84",
-        "@data-ui/radial-chart": "^0.0.84",
-        "@data-ui/theme": "^0.0.84",
-        "@vx/axis": "0.0.140",
-        "@vx/bounds": "0.0.140",
-        "@vx/clip-path": "0.0.140",
-        "@vx/glyph": "0.0.140",
-        "@vx/gradient": "0.0.140",
-        "@vx/grid": "0.0.140",
-        "@vx/group": "0.0.140",
-        "@vx/legend": "0.0.140",
-        "@vx/pattern": "0.0.140",
-        "@vx/point": "0.0.136",
-        "@vx/responsive": "0.0.140",
-        "@vx/scale": "0.0.140",
-        "@vx/shape": "0.0.140",
-        "@vx/tooltip": "0.0.140",
-        "aphrodite": "^1.2.0",
-        "d3-array": "^1.2.0",
-        "d3-format": "^1.2.0",
-        "d3-selection": "^1.1.0",
-        "d3-zoom": "^1.3.0",
-        "immutable": "^3.8.1",
-        "prop-types": "^15.5.10",
-        "react-split-pane": "^0.1.63",
-        "react-with-styles": "^1.3.0",
-        "react-with-styles-interface-aphrodite": "^1.2.0",
-        "recompose": "^0.23.5"
-      },
-      "dependencies": {
-        "@vx/responsive": {
-          "version": "0.0.140",
-          "resolved": "https://registry.npmjs.org/@vx/responsive/-/responsive-0.0.140.tgz",
-          "integrity": "sha1-xz7Gi56JoYFgXxrJ7MCfNSFneag=",
-          "requires": {
-            "lodash": "^4.0.8"
-          }
-        },
-        "immutable": {
-          "version": "3.8.2",
-          "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz",
-          "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM="
-        }
-      }
-    },
-    "@data-ui/forms": {
-      "version": "0.0.84",
-      "resolved": "https://registry.npmjs.org/@data-ui/forms/-/forms-0.0.84.tgz",
-      "integrity": "sha512-c6AEV4XDsIGT0+gwe8MNfRldtZfZaCs+ge2R1p9fkRwQd/nu8dJFVspuu0/EyHBtjm1F9y+6Drs3yyLFK3M+ug==",
-      "requires": {
-        "prop-types": "^15.5.10",
-        "react-select": "^1.2.1"
-      },
-      "dependencies": {
-        "react-select": {
-          "version": "1.3.0",
-          "resolved": "https://registry.npmjs.org/react-select/-/react-select-1.3.0.tgz",
-          "integrity": "sha512-g/QAU1HZrzSfxkwMAo/wzi6/ezdWye302RGZevsATec07hI/iSxcpB1hejFIp7V63DJ8mwuign6KmB3VjdlinQ==",
-          "requires": {
-            "classnames": "^2.2.4",
-            "prop-types": "^15.5.8",
-            "react-input-autosize": "^2.1.2"
-          }
-        }
-      }
-    },
-    "@data-ui/histogram": {
-      "version": "0.0.84",
-      "resolved": "https://registry.npmjs.org/@data-ui/histogram/-/histogram-0.0.84.tgz",
-      "integrity": "sha512-JuAUd3cgbDvXd1PKddB3L3SvZj5VFXTLG9za0RlqgbEsddR2dgUfJJQ5GacJ7a3o/SpmJ0zRGJVXb5VZozjj2Q==",
-      "requires": {
-        "@data-ui/shared": "^0.0.84",
-        "@data-ui/theme": "^0.0.84",
-        "@vx/axis": "^0.0.179",
-        "@vx/curve": "^0.0.165",
-        "@vx/event": "^0.0.179",
-        "@vx/glyph": "^0.0.179",
-        "@vx/gradient": "^0.0.165",
-        "@vx/group": "^0.0.170",
-        "@vx/pattern": "^0.0.179",
-        "@vx/responsive": "^0.0.192",
-        "@vx/scale": "^0.0.179",
-        "@vx/shape": "^0.0.179",
-        "@vx/tooltip": "0.0.179",
-        "d3-array": "^1.2.0",
-        "d3-scale": "^1.0.6",
-        "prop-types": "^15.5.10",
-        "react-move": "^2.1.0"
-      },
-      "dependencies": {
-        "@vx/axis": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/axis/-/axis-0.0.179.tgz",
-          "integrity": "sha512-FtUcdJxejYn5jgixSgSk9AdA96VwP9sCRATVfGvugEL0gtTKWYDbJEgSgqXfKqpeUdsDdf/JT7NVbLMc1hzrZg==",
-          "requires": {
-            "@vx/group": "0.0.170",
-            "@vx/point": "0.0.165",
-            "@vx/shape": "0.0.179",
-            "@vx/text": "0.0.179",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.6.0"
-          }
-        },
-        "@vx/bounds": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/bounds/-/bounds-0.0.165.tgz",
-          "integrity": "sha512-ZvRb72/4QNs1ZrytZTZxd0hfAb/KKfhsdkcYtIQkmdF6dTsjigMQZ+h2bLvLnbZb/RxyCCoxdiZSGXd+T1c//Q==",
-          "requires": {
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/event": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/event/-/event-0.0.179.tgz",
-          "integrity": "sha512-wEwqKsxrzoRV/A9Va/f/CHPmV9asrTH/kW/f88jCydsVXd5W/nrJZiVpozN2Zr1Ernv0i1gW5896FWo/LHRg0A==",
-          "requires": {
-            "@vx/point": "0.0.165"
-          }
-        },
-        "@vx/glyph": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/glyph/-/glyph-0.0.179.tgz",
-          "integrity": "sha512-RO7adwyG+9gGzjFdfmplrojgWCT+gsOnIFcRgJNJjx41+P6hWdI9X4OpsLx8VVqNhp7g+hxBDZWte8AxTvLQGw==",
-          "requires": {
-            "@vx/group": "0.0.170",
-            "classnames": "^2.2.5",
-            "d3-shape": "^1.2.0",
-            "prop-types": "^15.6.2"
-          }
-        },
-        "@vx/gradient": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/gradient/-/gradient-0.0.165.tgz",
-          "integrity": "sha512-FjRXMTmcy7k0TWsfDzWWXw6T9WXKP+6LS/GRgnguq271pab/P+AdOJThsVxtBgUc8ZOAPbub3/2Gggz9d8tocg==",
-          "requires": {
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.7"
-          }
-        },
-        "@vx/group": {
-          "version": "0.0.170",
-          "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.170.tgz",
-          "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==",
-          "requires": {
-            "classnames": "^2.2.5"
-          }
-        },
-        "@vx/pattern": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/pattern/-/pattern-0.0.179.tgz",
-          "integrity": "sha512-qvJsK07oUnSbuzj9jo7b/1Up13DknIeTlj9FDIhg0UNmz90ikVN2CZIWtdJyc2I1AFDEg0odOqYXzUx9aEBRfg==",
-          "requires": {
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/point": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/point/-/point-0.0.165.tgz",
-          "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA=="
-        },
-        "@vx/responsive": {
-          "version": "0.0.192",
-          "resolved": "https://registry.npmjs.org/@vx/responsive/-/responsive-0.0.192.tgz",
-          "integrity": "sha512-HaXVwhSJXUfRbzRV+glxsX0ki2Hi1mdpz42iuGArVQgDPJEmBHjkXyoiXU8U6v66M7FAH+OyKgtc5j2bfhyYzA==",
-          "requires": {
-            "lodash": "^4.17.10",
-            "prop-types": "^15.6.1",
-            "resize-observer-polyfill": "1.5.0"
-          }
-        },
-        "@vx/scale": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/scale/-/scale-0.0.179.tgz",
-          "integrity": "sha512-j40WiGu4VcHZdaSQAl12ig2w5c4Q9EVn7qqYf9PX7uoS5PbxRYNnHeKZ7e5Bf8O6b57iv5jFTfUV7HkpNF4vvg==",
-          "requires": {
-            "d3-scale": "^2.0.0"
-          },
-          "dependencies": {
-            "d3-scale": {
-              "version": "2.2.2",
-              "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz",
-              "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==",
-              "requires": {
-                "d3-array": "^1.2.0",
-                "d3-collection": "1",
-                "d3-format": "1",
-                "d3-interpolate": "1",
-                "d3-time": "1",
-                "d3-time-format": "2"
-              }
-            }
-          }
-        },
-        "@vx/shape": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.179.tgz",
-          "integrity": "sha512-YHVNx4xGpbjolkW3Lb5pEgJB0+u349vfnLI976DJlinY0hRNa4TZbWXOB4ywLIrYzQEXXPMUR8WtdubNxg6g0w==",
-          "requires": {
-            "@vx/curve": "0.0.165",
-            "@vx/group": "0.0.170",
-            "@vx/point": "0.0.165",
-            "classnames": "^2.2.5",
-            "d3-path": "^1.0.5",
-            "d3-shape": "^1.2.0",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/tooltip": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/tooltip/-/tooltip-0.0.179.tgz",
-          "integrity": "sha512-BjMURtNpc1g3Li00iHt4bA9lbhk1FnsxCemYI1OF5tSSKHHal2ZAdxRS7o1sR9+jIa3RyD9flfIa1ibtrJh2Ew==",
-          "requires": {
-            "@vx/bounds": "0.0.165",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "d3-scale": {
-          "version": "1.0.7",
-          "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-1.0.7.tgz",
-          "integrity": "sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==",
-          "requires": {
-            "d3-array": "^1.2.0",
-            "d3-collection": "1",
-            "d3-color": "1",
-            "d3-format": "1",
-            "d3-interpolate": "1",
-            "d3-time": "1",
-            "d3-time-format": "2"
-          }
-        },
-        "resize-observer-polyfill": {
-          "version": "1.5.0",
-          "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.0.tgz",
-          "integrity": "sha512-M2AelyJDVR/oLnToJLtuDJRBBWUGUvvGigj1411hXhAdyFWqMaqHp7TixW3FpiLuVaikIcR1QL+zqoJoZlOgpg=="
-        }
-      }
-    },
-    "@data-ui/radial-chart": {
-      "version": "0.0.84",
-      "resolved": "https://registry.npmjs.org/@data-ui/radial-chart/-/radial-chart-0.0.84.tgz",
-      "integrity": "sha512-YKvcrtXD+RnZIngB398exuGICIwbQeVbV3Sbqg6txd4dVN9ixsvOFHCaNO5ugqMcyVeFGpMZAtGeau5kUZa73Q==",
-      "requires": {
-        "@data-ui/shared": "^0.0.84",
-        "@data-ui/theme": "^0.0.84",
-        "@vx/event": "0.0.140",
-        "@vx/group": "0.0.140",
-        "@vx/scale": "0.0.140",
-        "@vx/shape": "0.0.140",
-        "@vx/tooltip": "0.0.140",
-        "prop-types": "^15.5.10"
-      }
-    },
-    "@data-ui/shared": {
-      "version": "0.0.84",
-      "resolved": "https://registry.npmjs.org/@data-ui/shared/-/shared-0.0.84.tgz",
-      "integrity": "sha512-MsDLsFzBHFEREr/eF2/RX1o/cXioEg+VQTsM8gViW5ywGQ7Xo5+EqUOaBSrwqKAkvp3e8PaEZVkchPC54IBhrA==",
-      "requires": {
-        "@data-ui/theme": "^0.0.84",
-        "@vx/event": "^0.0.165",
-        "@vx/group": "^0.0.165",
-        "@vx/shape": "^0.0.168",
-        "@vx/tooltip": "0.0.165",
-        "d3-array": "^1.2.1",
-        "prop-types": "^15.5.10"
-      },
-      "dependencies": {
-        "@vx/bounds": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/bounds/-/bounds-0.0.165.tgz",
-          "integrity": "sha512-ZvRb72/4QNs1ZrytZTZxd0hfAb/KKfhsdkcYtIQkmdF6dTsjigMQZ+h2bLvLnbZb/RxyCCoxdiZSGXd+T1c//Q==",
-          "requires": {
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/event": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/event/-/event-0.0.165.tgz",
-          "integrity": "sha512-FsQiw0f3s5DQB6aBQmBcoWk9e4q65LcDobHIyV8qrmpW2QgV2NvQFM1w0Q300ohpRMgJDzGk68HHHQgFOJvApw==",
-          "requires": {
-            "@vx/point": "0.0.165"
-          }
-        },
-        "@vx/group": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.165.tgz",
-          "integrity": "sha512-gi1DSg8AAaVRseyWiq8y4bzyvKiQIXT6vDUYBVRmv2LBcpHocBGaxNiNK0X602RgLG0XmNyRv6qSCWLOaBs3Mg==",
-          "requires": {
-            "classnames": "^2.2.5"
-          }
-        },
-        "@vx/point": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/point/-/point-0.0.165.tgz",
-          "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA=="
-        },
-        "@vx/shape": {
-          "version": "0.0.168",
-          "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.168.tgz",
-          "integrity": "sha512-urKZkwSafMpPQ0wI/L5FJmufRiAR4UsgYUCKxROjfE1Cf4jWNlK6mlVIIASxCdHlh9CGBbIrRMdl5Yv5lzqhjA==",
-          "requires": {
-            "@vx/curve": "0.0.165",
-            "@vx/group": "0.0.165",
-            "@vx/point": "0.0.165",
-            "classnames": "^2.2.5",
-            "d3-path": "^1.0.5",
-            "d3-shape": "^1.2.0",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/tooltip": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/tooltip/-/tooltip-0.0.165.tgz",
-          "integrity": "sha512-/x1NZc67QGQ4e/WNT7Ks5LYRyeLSqp8lG04gX5J6leUS0zscAVzo3aE5u65Qqbc0cnMyMPRZ2Qtb4klWTLg+eQ==",
-          "requires": {
-            "@vx/bounds": "0.0.165",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.10"
-          }
-        }
-      }
-    },
-    "@data-ui/sparkline": {
-      "version": "0.0.84",
-      "resolved": "https://registry.npmjs.org/@data-ui/sparkline/-/sparkline-0.0.84.tgz",
-      "integrity": "sha512-Ja7T2JjioZtnoy0PEXF72qv/J8xIotu+oS1Z+ygVGZni6aN/DUY35eGpg/DDeemEFDMoifcx+kYa5LU7hQCnJg==",
-      "requires": {
-        "@data-ui/shared": "^0.0.84",
-        "@data-ui/theme": "^0.0.8",
-        "@vx/axis": "^0.0.179",
-        "@vx/curve": "^0.0.165",
-        "@vx/event": "^0.0.179",
-        "@vx/glyph": "^0.0.179",
-        "@vx/gradient": "^0.0.165",
-        "@vx/group": "^0.0.170",
-        "@vx/pattern": "^0.0.179",
-        "@vx/point": "^0.0.165",
-        "@vx/responsive": "^0.0.192",
-        "@vx/scale": "^0.0.179",
-        "@vx/shape": "^0.0.179",
-        "d3-array": "^1.2.0",
-        "prop-types": "^15.5.10"
-      },
-      "dependencies": {
-        "@data-ui/theme": {
-          "version": "0.0.8",
-          "resolved": "https://registry.npmjs.org/@data-ui/theme/-/theme-0.0.8.tgz",
-          "integrity": "sha1-MRZyPQS5n2XHdQ+BpQDpYItIN8M="
-        },
-        "@vx/axis": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/axis/-/axis-0.0.179.tgz",
-          "integrity": "sha512-FtUcdJxejYn5jgixSgSk9AdA96VwP9sCRATVfGvugEL0gtTKWYDbJEgSgqXfKqpeUdsDdf/JT7NVbLMc1hzrZg==",
-          "requires": {
-            "@vx/group": "0.0.170",
-            "@vx/point": "0.0.165",
-            "@vx/shape": "0.0.179",
-            "@vx/text": "0.0.179",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.6.0"
-          }
-        },
-        "@vx/event": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/event/-/event-0.0.179.tgz",
-          "integrity": "sha512-wEwqKsxrzoRV/A9Va/f/CHPmV9asrTH/kW/f88jCydsVXd5W/nrJZiVpozN2Zr1Ernv0i1gW5896FWo/LHRg0A==",
-          "requires": {
-            "@vx/point": "0.0.165"
-          }
-        },
-        "@vx/glyph": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/glyph/-/glyph-0.0.179.tgz",
-          "integrity": "sha512-RO7adwyG+9gGzjFdfmplrojgWCT+gsOnIFcRgJNJjx41+P6hWdI9X4OpsLx8VVqNhp7g+hxBDZWte8AxTvLQGw==",
-          "requires": {
-            "@vx/group": "0.0.170",
-            "classnames": "^2.2.5",
-            "d3-shape": "^1.2.0",
-            "prop-types": "^15.6.2"
-          }
-        },
-        "@vx/gradient": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/gradient/-/gradient-0.0.165.tgz",
-          "integrity": "sha512-FjRXMTmcy7k0TWsfDzWWXw6T9WXKP+6LS/GRgnguq271pab/P+AdOJThsVxtBgUc8ZOAPbub3/2Gggz9d8tocg==",
-          "requires": {
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.7"
-          }
-        },
-        "@vx/group": {
-          "version": "0.0.170",
-          "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.170.tgz",
-          "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==",
-          "requires": {
-            "classnames": "^2.2.5"
-          }
-        },
-        "@vx/pattern": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/pattern/-/pattern-0.0.179.tgz",
-          "integrity": "sha512-qvJsK07oUnSbuzj9jo7b/1Up13DknIeTlj9FDIhg0UNmz90ikVN2CZIWtdJyc2I1AFDEg0odOqYXzUx9aEBRfg==",
-          "requires": {
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/point": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/point/-/point-0.0.165.tgz",
-          "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA=="
-        },
-        "@vx/responsive": {
-          "version": "0.0.192",
-          "resolved": "https://registry.npmjs.org/@vx/responsive/-/responsive-0.0.192.tgz",
-          "integrity": "sha512-HaXVwhSJXUfRbzRV+glxsX0ki2Hi1mdpz42iuGArVQgDPJEmBHjkXyoiXU8U6v66M7FAH+OyKgtc5j2bfhyYzA==",
-          "requires": {
-            "lodash": "^4.17.10",
-            "prop-types": "^15.6.1",
-            "resize-observer-polyfill": "1.5.0"
-          }
-        },
-        "@vx/scale": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/scale/-/scale-0.0.179.tgz",
-          "integrity": "sha512-j40WiGu4VcHZdaSQAl12ig2w5c4Q9EVn7qqYf9PX7uoS5PbxRYNnHeKZ7e5Bf8O6b57iv5jFTfUV7HkpNF4vvg==",
-          "requires": {
-            "d3-scale": "^2.0.0"
-          }
-        },
-        "@vx/shape": {
-          "version": "0.0.179",
-          "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.179.tgz",
-          "integrity": "sha512-YHVNx4xGpbjolkW3Lb5pEgJB0+u349vfnLI976DJlinY0hRNa4TZbWXOB4ywLIrYzQEXXPMUR8WtdubNxg6g0w==",
-          "requires": {
-            "@vx/curve": "0.0.165",
-            "@vx/group": "0.0.170",
-            "@vx/point": "0.0.165",
-            "classnames": "^2.2.5",
-            "d3-path": "^1.0.5",
-            "d3-shape": "^1.2.0",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "resize-observer-polyfill": {
-          "version": "1.5.0",
-          "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.0.tgz",
-          "integrity": "sha512-M2AelyJDVR/oLnToJLtuDJRBBWUGUvvGigj1411hXhAdyFWqMaqHp7TixW3FpiLuVaikIcR1QL+zqoJoZlOgpg=="
-        }
-      }
-    },
-    "@data-ui/theme": {
-      "version": "0.0.84",
-      "resolved": "https://registry.npmjs.org/@data-ui/theme/-/theme-0.0.84.tgz",
-      "integrity": "sha512-jIoHftC/5c/LVJYF4VSBjjVjrjc0yj4mLkGe8p0eVO7qUYKVvlWx7PrpM7ucyefvuAaKIwlr+Nh2xPGPdADjaA=="
-    },
-    "@data-ui/xy-chart": {
-      "version": "0.0.84",
-      "resolved": "https://registry.npmjs.org/@data-ui/xy-chart/-/xy-chart-0.0.84.tgz",
-      "integrity": "sha512-4mRWEGfeQJ2kFXmQ81k1gDPx2zdkty6lt0+srui4zleSyhnBv1dmm9J03dq+qwr7+bpzjfq77nINV5HXWb31Bg==",
-      "requires": {
-        "@data-ui/shared": "^0.0.84",
-        "@data-ui/theme": "^0.0.84",
-        "@vx/axis": "^0.0.175",
-        "@vx/curve": "^0.0.165",
-        "@vx/event": "^0.0.165",
-        "@vx/glyph": "^0.0.165",
-        "@vx/gradient": "^0.0.165",
-        "@vx/grid": "^0.0.180",
-        "@vx/group": "^0.0.165",
-        "@vx/pattern": "^0.0.165",
-        "@vx/point": "^0.0.165",
-        "@vx/responsive": "^0.0.192",
-        "@vx/scale": "^0.0.165",
-        "@vx/shape": "^0.0.165",
-        "@vx/stats": "^0.0.165",
-        "@vx/text": "^0.0.192",
-        "@vx/threshold": "0.0.170",
-        "@vx/tooltip": "^0.0.165",
-        "@vx/voronoi": "^0.0.165",
-        "d3-array": "^1.2.0",
-        "prop-types": "^15.5.10"
-      },
-      "dependencies": {
-        "@vx/axis": {
-          "version": "0.0.175",
-          "resolved": "https://registry.npmjs.org/@vx/axis/-/axis-0.0.175.tgz",
-          "integrity": "sha512-qVRIHurnbPnRF4p0KQITArOUSF564tWW1pc48giLz+DJGlcJ4H9RfOSTpV6rnnP15xto6pQdQehBgBAvFRmoig==",
-          "requires": {
-            "@vx/group": "0.0.170",
-            "@vx/point": "0.0.165",
-            "@vx/shape": "0.0.175",
-            "@vx/text": "0.0.175",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.6.0"
-          },
-          "dependencies": {
-            "@vx/group": {
-              "version": "0.0.170",
-              "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.170.tgz",
-              "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==",
-              "requires": {
-                "classnames": "^2.2.5"
-              }
-            },
-            "@vx/shape": {
-              "version": "0.0.175",
-              "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.175.tgz",
-              "integrity": "sha512-bjAJoIIpKjUEPDV2xmTYGUvSvwRztv+6rd1c6NPZG/nIuqsMHFnFig/2xTcQJEQhRg6aKzvxIUo43zPSSq3fWA==",
-              "requires": {
-                "@vx/curve": "0.0.165",
-                "@vx/group": "0.0.170",
-                "@vx/point": "0.0.165",
-                "classnames": "^2.2.5",
-                "d3-path": "^1.0.5",
-                "d3-shape": "^1.2.0",
-                "prop-types": "^15.5.10"
-              }
-            },
-            "@vx/text": {
-              "version": "0.0.175",
-              "resolved": "https://registry.npmjs.org/@vx/text/-/text-0.0.175.tgz",
-              "integrity": "sha512-SOBhctXXAGhhpCOiTjxOM/8NDaDqGRk3OGfsJ714Mt1UJX6VQaKxFocZJwn6IMw3mNG6/p7O4Eao/gGDcoM6+A==",
-              "requires": {
-                "babel-plugin-lodash": "^3.3.2",
-                "classnames": "^2.2.5",
-                "lodash": "^4.17.4",
-                "reduce-css-calc": "^1.3.0"
-              }
-            }
-          }
-        },
-        "@vx/bounds": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/bounds/-/bounds-0.0.165.tgz",
-          "integrity": "sha512-ZvRb72/4QNs1ZrytZTZxd0hfAb/KKfhsdkcYtIQkmdF6dTsjigMQZ+h2bLvLnbZb/RxyCCoxdiZSGXd+T1c//Q==",
-          "requires": {
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/event": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/event/-/event-0.0.165.tgz",
-          "integrity": "sha512-FsQiw0f3s5DQB6aBQmBcoWk9e4q65LcDobHIyV8qrmpW2QgV2NvQFM1w0Q300ohpRMgJDzGk68HHHQgFOJvApw==",
-          "requires": {
-            "@vx/point": "0.0.165"
-          }
-        },
-        "@vx/glyph": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/glyph/-/glyph-0.0.165.tgz",
-          "integrity": "sha512-kccUm40e/VCtayxqvcwc2K2M6oNXO7IafwIfw1RRv6Fj4Iutto9ZpI+PGOf/zPnYVueoLnWBXT/HE7IRS+C2gw==",
-          "requires": {
-            "@vx/group": "0.0.165",
-            "classnames": "^2.2.5",
-            "d3-shape": "^1.2.0"
-          }
-        },
-        "@vx/gradient": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/gradient/-/gradient-0.0.165.tgz",
-          "integrity": "sha512-FjRXMTmcy7k0TWsfDzWWXw6T9WXKP+6LS/GRgnguq271pab/P+AdOJThsVxtBgUc8ZOAPbub3/2Gggz9d8tocg==",
-          "requires": {
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.7"
-          }
-        },
-        "@vx/grid": {
-          "version": "0.0.180",
-          "resolved": "https://registry.npmjs.org/@vx/grid/-/grid-0.0.180.tgz",
-          "integrity": "sha512-+ugS0c6GbwHr6pFU0znnOG3/zTwRRadvWwj3E4ZOHmKUSz6ZEN6JNo+rD3WSZckYwLis6UivmYfJ5cV6AM4ufg==",
-          "requires": {
-            "@vx/group": "0.0.170",
-            "@vx/point": "0.0.165",
-            "@vx/shape": "0.0.179",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.6.2"
-          },
-          "dependencies": {
-            "@vx/group": {
-              "version": "0.0.170",
-              "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.170.tgz",
-              "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==",
-              "requires": {
-                "classnames": "^2.2.5"
-              }
-            },
-            "@vx/shape": {
-              "version": "0.0.179",
-              "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.179.tgz",
-              "integrity": "sha512-YHVNx4xGpbjolkW3Lb5pEgJB0+u349vfnLI976DJlinY0hRNa4TZbWXOB4ywLIrYzQEXXPMUR8WtdubNxg6g0w==",
-              "requires": {
-                "@vx/curve": "0.0.165",
-                "@vx/group": "0.0.170",
-                "@vx/point": "0.0.165",
-                "classnames": "^2.2.5",
-                "d3-path": "^1.0.5",
-                "d3-shape": "^1.2.0",
-                "prop-types": "^15.5.10"
-              }
-            }
-          }
-        },
-        "@vx/group": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.165.tgz",
-          "integrity": "sha512-gi1DSg8AAaVRseyWiq8y4bzyvKiQIXT6vDUYBVRmv2LBcpHocBGaxNiNK0X602RgLG0XmNyRv6qSCWLOaBs3Mg==",
-          "requires": {
-            "classnames": "^2.2.5"
-          }
-        },
-        "@vx/pattern": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/pattern/-/pattern-0.0.165.tgz",
-          "integrity": "sha512-h5nmfcYlQYYzNhlhqaYUvVnkmGnC0yWv5yU1snjHweGmIHTovV3RAbKgVFAP7kB3i2rbEtC3O8WkJN++cZdLzA==",
-          "requires": {
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/point": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/point/-/point-0.0.165.tgz",
-          "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA=="
-        },
-        "@vx/responsive": {
-          "version": "0.0.192",
-          "resolved": "https://registry.npmjs.org/@vx/responsive/-/responsive-0.0.192.tgz",
-          "integrity": "sha512-HaXVwhSJXUfRbzRV+glxsX0ki2Hi1mdpz42iuGArVQgDPJEmBHjkXyoiXU8U6v66M7FAH+OyKgtc5j2bfhyYzA==",
-          "requires": {
-            "lodash": "^4.17.10",
-            "prop-types": "^15.6.1",
-            "resize-observer-polyfill": "1.5.0"
-          }
-        },
-        "@vx/scale": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/scale/-/scale-0.0.165.tgz",
-          "integrity": "sha512-5jSgXJDU6J/KWIyCbpjHqysPCddp7tG3LbTV7UmtB1Qleb4m4slShTVSE7+EKU+zgiQPDGm0+E2ht4cet+7F7A==",
-          "requires": {
-            "d3-scale": "^2.0.0"
-          }
-        },
-        "@vx/shape": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.165.tgz",
-          "integrity": "sha512-D9naH/glDtw8J8IcdumpRz1ihaoCAYMwFNh2KTv73HiTKrLQSXvIjwYFv9C0b8BCPNOXkDZS8s+AlgMSqGlZNQ==",
-          "requires": {
-            "@vx/curve": "0.0.165",
-            "@vx/group": "0.0.165",
-            "@vx/point": "0.0.165",
-            "classnames": "^2.2.5",
-            "d3-path": "^1.0.5",
-            "d3-shape": "^1.2.0",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/text": {
-          "version": "0.0.192",
-          "resolved": "https://registry.npmjs.org/@vx/text/-/text-0.0.192.tgz",
-          "integrity": "sha512-lyy7eXfmQ8SJF7Qx+bCRcaEgvVSa18Lp6eRMo3GMANumUh9kSe7LwgqRFSdBJ85WkPqX+UOkJVyCH7AOlt0IWA==",
-          "requires": {
-            "classnames": "^2.2.5",
-            "lodash": "^4.17.15",
-            "prop-types": "^15.7.2",
-            "reduce-css-calc": "^1.3.0"
-          }
-        },
-        "@vx/tooltip": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/tooltip/-/tooltip-0.0.165.tgz",
-          "integrity": "sha512-/x1NZc67QGQ4e/WNT7Ks5LYRyeLSqp8lG04gX5J6leUS0zscAVzo3aE5u65Qqbc0cnMyMPRZ2Qtb4klWTLg+eQ==",
-          "requires": {
-            "@vx/bounds": "0.0.165",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "resize-observer-polyfill": {
-          "version": "1.5.0",
-          "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.0.tgz",
-          "integrity": "sha512-M2AelyJDVR/oLnToJLtuDJRBBWUGUvvGigj1411hXhAdyFWqMaqHp7TixW3FpiLuVaikIcR1QL+zqoJoZlOgpg=="
-        }
-      }
-    },
-    "@deck.gl/aggregation-layers": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/@deck.gl/aggregation-layers/-/aggregation-layers-7.1.11.tgz",
-      "integrity": "sha512-CHsr+UJhf06Mqb/q60iP7ftHQv3ftHUhJbVO4550PRo+QMFFhHfhxo53gQDDgrQ3stxpAcLT3lXRSNghMoU34g==",
-      "requires": {
-        "d3-hexbin": "^0.2.1"
-      }
-    },
-    "@deck.gl/core": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/@deck.gl/core/-/core-7.1.11.tgz",
-      "integrity": "sha512-jUi1CcsnF5KPL2sv7Z0H3x+8amee5csqliZXGbXEBYox1l8naC4PhHg5jTgLaB0ZOHfVDsldPwGdPC+Mi4jP/Q==",
-      "requires": {
-        "@luma.gl/core": "^7.1.0",
-        "gl-matrix": "^3.0.0",
-        "math.gl": "^2.3.0",
-        "mjolnir.js": "^2.1.2",
-        "probe.gl": "^3.0.1",
-        "seer": "^0.2.4",
-        "viewport-mercator-project": "^6.1.0"
-      }
-    },
-    "@deck.gl/geo-layers": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/@deck.gl/geo-layers/-/geo-layers-7.1.11.tgz",
-      "integrity": "sha512-gIJ1K98IFSZ12hB+zHyQC+9pMncb9BKVhJTA7pjUpxwcmEkkroqet9zkYQQMeSInK0a67BR9GXjebb/N0U04qA==",
-      "requires": {
-        "h3-js": "^3.4.3",
-        "long": "^3.2.0",
-        "s2-geometry": "^1.2.10"
-      }
-    },
-    "@deck.gl/google-maps": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/@deck.gl/google-maps/-/google-maps-7.1.11.tgz",
-      "integrity": "sha512-gYp3NFIsyT5p65HgKjXFWTDzFf7K8+6ce9d9MIqaNgVWFZdsjUy9JL5TttDMQXshaQ1aZpxtLL6ZO3BiI1w8fw=="
-    },
-    "@deck.gl/json": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/@deck.gl/json/-/json-7.1.11.tgz",
-      "integrity": "sha512-obYAXq5VZ0qCTVS8hopS64aXGicUeBNg0/03AAfo+Q5z62cNqagAktGKVZMUsJ13bV8CPohJ2zRWMXO+mAJtew==",
-      "requires": {
-        "d3-dsv": "^1.0.8"
-      }
-    },
-    "@deck.gl/layers": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/@deck.gl/layers/-/layers-7.1.11.tgz",
-      "integrity": "sha512-hOylm7Pf3CSvqpDoiCJLnqLAU3PAePISskJ5jjhpXtgHBrm1/Gk4boP4/7t7kFZdbSvVIXin13pPRbT0SWCRPw==",
-      "requires": {
-        "@loaders.gl/core": "^1.0.3",
-        "@loaders.gl/images": "^1.0.3",
-        "@mapbox/tiny-sdf": "^1.1.0",
-        "earcut": "^2.0.6"
-      }
-    },
-    "@deck.gl/mapbox": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/@deck.gl/mapbox/-/mapbox-7.1.11.tgz",
-      "integrity": "sha512-V4cc9vwXzAOBtWV8x+WtvPVXElGChogkvQketeR2uhz6wIHuH+3sBBRg/Ma476w/II+DKjeHg2AzAZeX3SK7yQ=="
-    },
-    "@deck.gl/mesh-layers": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-7.1.11.tgz",
-      "integrity": "sha512-rI8ffUNh7ac2GpMcGLEiKyRarOPeLfVRlMRKjl9LXU61Wgx6DaHqsMmeqxzjoXEzgiRlY/XgCjepVg0dY6btlQ==",
-      "requires": {
-        "@loaders.gl/core": "^1.0.3",
-        "@loaders.gl/images": "^1.0.3"
-      }
-    },
-    "@deck.gl/react": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/@deck.gl/react/-/react-7.1.11.tgz",
-      "integrity": "sha512-WUzxhvM3jZIZkBAQgdQR+tFBAVDm5opLCKMWI9YkJUsdJzdv9uwiWCsk3Se1pCTFIa5Asb8U6YAi1CHl+OOFyA==",
-      "requires": {
-        "prop-types": "^15.6.0"
-      }
-    },
-    "@emotion/babel-plugin-jsx-pragmatic": {
-      "version": "0.1.5",
-      "resolved": "https://registry.npmjs.org/@emotion/babel-plugin-jsx-pragmatic/-/babel-plugin-jsx-pragmatic-0.1.5.tgz",
-      "integrity": "sha512-y+3AJ0SItMDaAgGPVkQBC/S/BaqaPACkQ6MyCI2CUlrjTxKttTVfD3TMtcs7vLEcLxqzZ1xiG0vzwCXjhopawQ==",
-      "dev": true,
-      "requires": {
-        "@babel/plugin-syntax-jsx": "^7.2.0"
-      }
-    },
-    "@emotion/babel-preset-css-prop": {
-      "version": "10.2.1",
-      "resolved": "https://registry.npmjs.org/@emotion/babel-preset-css-prop/-/babel-preset-css-prop-10.2.1.tgz",
-      "integrity": "sha512-4hudLJCfIrbpJZek5n69cwzu7GgCamza/whh/RgqXaI5ZWT8pFj1rR2KjQntzFFzTU7l9o+jdVPSpgCbrVG+VQ==",
-      "dev": true,
-      "requires": {
-        "@babel/plugin-transform-react-jsx": "^7.12.1",
-        "@babel/plugin-transform-react-jsx-development": "^7.12.1",
-        "@babel/runtime": "^7.5.5",
-        "@emotion/babel-plugin-jsx-pragmatic": "^0.1.5",
-        "babel-plugin-emotion": "^10.0.27"
-      },
-      "dependencies": {
-        "@babel/helper-annotate-as-pure": {
-          "version": "7.12.10",
-          "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz",
-          "integrity": "sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.10"
-          }
-        },
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/plugin-syntax-jsx": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz",
-          "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-react-jsx": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.12.tgz",
-          "integrity": "sha512-JDWGuzGNWscYcq8oJVCtSE61a5+XAOos+V0HrxnDieUus4UMnBEosDnY1VJqU5iZ4pA04QY7l0+JvHL1hZEfsw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.12.10",
-            "@babel/helper-module-imports": "^7.12.5",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-jsx": "^7.12.1",
-            "@babel/types": "^7.12.12"
-          }
-        },
-        "@babel/plugin-transform-react-jsx-development": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.12.tgz",
-          "integrity": "sha512-i1AxnKxHeMxUaWVXQOSIco4tvVvvCxMSfeBMnMM06mpaJt3g+MpxYQQrDfojUQldP1xxraPSJYSMEljoWM/dCg==",
-          "dev": true,
-          "requires": {
-            "@babel/plugin-transform-react-jsx": "^7.12.12"
-          }
-        },
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@emotion/cache": {
-      "version": "10.0.29",
-      "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz",
-      "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==",
-      "requires": {
-        "@emotion/sheet": "0.9.4",
-        "@emotion/stylis": "0.8.5",
-        "@emotion/utils": "0.11.3",
-        "@emotion/weak-memoize": "0.2.5"
-      }
-    },
-    "@emotion/core": {
-      "version": "10.0.35",
-      "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.0.35.tgz",
-      "integrity": "sha512-sH++vJCdk025fBlRZSAhkRlSUoqSqgCzYf5fMOmqqi3bM6how+sQpg3hkgJonj8GxXM4WbD7dRO+4tegDB9fUw==",
-      "requires": {
-        "@babel/runtime": "^7.5.5",
-        "@emotion/cache": "^10.0.27",
-        "@emotion/css": "^10.0.27",
-        "@emotion/serialize": "^0.11.15",
-        "@emotion/sheet": "0.9.4",
-        "@emotion/utils": "0.11.3"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
-          "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "@emotion/css": {
-      "version": "10.0.27",
-      "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz",
-      "integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==",
-      "requires": {
-        "@emotion/serialize": "^0.11.15",
-        "@emotion/utils": "0.11.3",
-        "babel-plugin-emotion": "^10.0.27"
-      },
-      "dependencies": {
-        "babel-plugin-emotion": {
-          "version": "10.0.33",
-          "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz",
-          "integrity": "sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ==",
-          "requires": {
-            "@babel/helper-module-imports": "^7.0.0",
-            "@emotion/hash": "0.8.0",
-            "@emotion/memoize": "0.7.4",
-            "@emotion/serialize": "^0.11.16",
-            "babel-plugin-macros": "^2.0.0",
-            "babel-plugin-syntax-jsx": "^6.18.0",
-            "convert-source-map": "^1.5.0",
-            "escape-string-regexp": "^1.0.5",
-            "find-root": "^1.1.0",
-            "source-map": "^0.5.7"
-          }
-        }
-      }
-    },
-    "@emotion/hash": {
-      "version": "0.8.0",
-      "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
-      "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
-    },
-    "@emotion/is-prop-valid": {
-      "version": "0.8.8",
-      "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
-      "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
-      "requires": {
-        "@emotion/memoize": "0.7.4"
-      }
-    },
-    "@emotion/memoize": {
-      "version": "0.7.4",
-      "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
-      "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
-    },
-    "@emotion/serialize": {
-      "version": "0.11.16",
-      "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz",
-      "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==",
-      "requires": {
-        "@emotion/hash": "0.8.0",
-        "@emotion/memoize": "0.7.4",
-        "@emotion/unitless": "0.7.5",
-        "@emotion/utils": "0.11.3",
-        "csstype": "^2.5.7"
-      }
-    },
-    "@emotion/sheet": {
-      "version": "0.9.4",
-      "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz",
-      "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA=="
-    },
-    "@emotion/styled": {
-      "version": "10.0.27",
-      "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.0.27.tgz",
-      "integrity": "sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==",
-      "requires": {
-        "@emotion/styled-base": "^10.0.27",
-        "babel-plugin-emotion": "^10.0.27"
-      },
-      "dependencies": {
-        "babel-plugin-emotion": {
-          "version": "10.0.33",
-          "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz",
-          "integrity": "sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ==",
-          "requires": {
-            "@babel/helper-module-imports": "^7.0.0",
-            "@emotion/hash": "0.8.0",
-            "@emotion/memoize": "0.7.4",
-            "@emotion/serialize": "^0.11.16",
-            "babel-plugin-macros": "^2.0.0",
-            "babel-plugin-syntax-jsx": "^6.18.0",
-            "convert-source-map": "^1.5.0",
-            "escape-string-regexp": "^1.0.5",
-            "find-root": "^1.1.0",
-            "source-map": "^0.5.7"
-          }
-        }
-      }
-    },
-    "@emotion/styled-base": {
-      "version": "10.0.31",
-      "resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.0.31.tgz",
-      "integrity": "sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==",
-      "requires": {
-        "@babel/runtime": "^7.5.5",
-        "@emotion/is-prop-valid": "0.8.8",
-        "@emotion/serialize": "^0.11.15",
-        "@emotion/utils": "0.11.3"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.4.tgz",
-          "integrity": "sha512-UpTN5yUJr9b4EX2CnGNWIvER7Ab83ibv0pcvvHc4UOdrBI5jb8bj+32cCwPX6xu0mt2daFNjYhoi+X7beH0RSw==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "@emotion/stylis": {
-      "version": "0.8.5",
-      "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
-      "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
-    },
-    "@emotion/unitless": {
-      "version": "0.7.5",
-      "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
-      "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
-    },
-    "@emotion/utils": {
-      "version": "0.11.3",
-      "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz",
-      "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw=="
-    },
-    "@emotion/weak-memoize": {
-      "version": "0.2.5",
-      "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
-      "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
-    },
-    "@encodable/color": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/@encodable/color/-/color-1.1.1.tgz",
-      "integrity": "sha512-3QlHqsaD+D4W4T6E4Wq4mp7MBpt5yCkCmgTh6AfsoUfJeAEogA92d8r3Y67Zuppcs/eepHW0ip8zfehS2jZNkQ==",
-      "requires": {
-        "@encodable/registry": "^1.0.3",
-        "@types/d3-interpolate": "^1.3.1",
-        "@types/d3-scale": "^3.1.0",
-        "@types/d3-scale-chromatic": "^1.2.0",
-        "d3-interpolate": "^2.0.1",
-        "d3-scale": "^3.2.1",
-        "d3-scale-chromatic": "^2.0.0"
-      },
-      "dependencies": {
-        "@types/d3-scale": {
-          "version": "3.2.2",
-          "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-3.2.2.tgz",
-          "integrity": "sha512-qpQe8G02tzUwt9sdWX1h8A/W0Q1+N48wMnYXVOkrzeLUkCfvzJYV9Ee3aORCS4dN4ONRLFmMvaXdziQ29XGLjQ==",
-          "requires": {
-            "@types/d3-time": "*"
-          }
-        },
-        "d3-array": {
-          "version": "2.11.0",
-          "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz",
-          "integrity": "sha512-26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw==",
-          "requires": {
-            "internmap": "^1.0.0"
-          }
-        },
-        "d3-interpolate": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-2.0.1.tgz",
-          "integrity": "sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==",
-          "requires": {
-            "d3-color": "1 - 2"
-          }
-        },
-        "d3-scale": {
-          "version": "3.2.3",
-          "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-3.2.3.tgz",
-          "integrity": "sha512-8E37oWEmEzj57bHcnjPVOBS3n4jqakOeuv1EDdQSiSrYnMCBdMd3nc4HtKk7uia8DUHcY/CGuJ42xxgtEYrX0g==",
-          "requires": {
-            "d3-array": "^2.3.0",
-            "d3-format": "1 - 2",
-            "d3-interpolate": "1.2.0 - 2",
-            "d3-time": "1 - 2",
-            "d3-time-format": "2 - 3"
-          }
-        }
-      }
-    },
-    "@encodable/format": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/@encodable/format/-/format-1.0.6.tgz",
-      "integrity": "sha512-gtzLMQyw4AJ7m3TIANm2z2QfzZJLGLdhVmKbizRRu9MRMlYIVXhk+46zPm10RNxGv4ybpsfcCfkCd4nL3RlZRg==",
-      "requires": {
-        "@encodable/registry": "^1.0.3",
-        "@types/d3-format": "^1.3.1",
-        "@types/d3-time": "^1.0.10",
-        "@types/d3-time-format": "^2.1.1",
-        "d3-format": "^2.0.0",
-        "d3-time": "^2.0.0",
-        "d3-time-format": "^3.0.0"
-      },
-      "dependencies": {
-        "d3-format": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-2.0.0.tgz",
-          "integrity": "sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA=="
-        },
-        "d3-time": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-2.0.0.tgz",
-          "integrity": "sha512-2mvhstTFcMvwStWd9Tj3e6CEqtOivtD8AUiHT8ido/xmzrI9ijrUUihZ6nHuf/vsScRBonagOdj0Vv+SEL5G3Q=="
-        },
-        "d3-time-format": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-3.0.0.tgz",
-          "integrity": "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==",
-          "requires": {
-            "d3-time": "1 - 2"
-          }
-        }
-      }
-    },
-    "@encodable/registry": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/@encodable/registry/-/registry-1.0.3.tgz",
-      "integrity": "sha512-YH2nSBZJKgbH/9MkQXzAEE9UwTaVcWiKgVFyEU/gvrfmNWqecYaHMTyObo+ADSTGF4kk0cZZkr7VqZgIQbvrUw=="
-    },
-    "@eslint/eslintrc": {
-      "version": "0.2.2",
-      "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz",
-      "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==",
-      "dev": true,
-      "requires": {
-        "ajv": "^6.12.4",
-        "debug": "^4.1.1",
-        "espree": "^7.3.0",
-        "globals": "^12.1.0",
-        "ignore": "^4.0.6",
-        "import-fresh": "^3.2.1",
-        "js-yaml": "^3.13.1",
-        "lodash": "^4.17.19",
-        "minimatch": "^3.0.4",
-        "strip-json-comments": "^3.1.1"
-      },
-      "dependencies": {
-        "ajv": {
-          "version": "6.12.6",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
-          "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "globals": {
-          "version": "12.4.0",
-          "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
-          "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
-          "dev": true,
-          "requires": {
-            "type-fest": "^0.8.1"
-          }
-        },
-        "import-fresh": {
-          "version": "3.3.0",
-          "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
-          "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
-          "dev": true,
-          "requires": {
-            "parent-module": "^1.0.0",
-            "resolve-from": "^4.0.0"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        }
-      }
-    },
-    "@hot-loader/react-dom": {
-      "version": "16.13.0",
-      "resolved": "https://registry.npmjs.org/@hot-loader/react-dom/-/react-dom-16.13.0.tgz",
-      "integrity": "sha512-lJZrmkucz2MrQJTQtJobx5MICXcfQvKihszqv655p557HPi0hMOWxrNpiHv3DWD8ugNWjtWcVWqRnFvwsHq1mQ==",
-      "dev": true,
-      "requires": {
-        "loose-envify": "^1.1.0",
-        "object-assign": "^4.1.1",
-        "prop-types": "^15.6.2",
-        "scheduler": "^0.19.0"
-      },
-      "dependencies": {
-        "scheduler": {
-          "version": "0.19.0",
-          "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.0.tgz",
-          "integrity": "sha512-xowbVaTPe9r7y7RUejcK73/j8tt2jfiyTednOvHbA8JoClvMYCp+r8QegLwK/n8zWQAtZb1fFnER4XLBZXrCxA==",
-          "dev": true,
-          "requires": {
-            "loose-envify": "^1.1.0",
-            "object-assign": "^4.1.1"
-          }
-        }
-      }
-    },
-    "@icons/material": {
-      "version": "0.2.4",
-      "resolved": "https://registry.npmjs.org/@icons/material/-/material-0.2.4.tgz",
-      "integrity": "sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==",
-      "dev": true
-    },
-    "@istanbuljs/load-nyc-config": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
-      "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
-      "dev": true,
-      "requires": {
-        "camelcase": "^5.3.1",
-        "find-up": "^4.1.0",
-        "get-package-type": "^0.1.0",
-        "js-yaml": "^3.13.1",
-        "resolve-from": "^5.0.0"
-      },
-      "dependencies": {
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        }
-      }
-    },
-    "@istanbuljs/nyc-config-typescript": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/@istanbuljs/nyc-config-typescript/-/nyc-config-typescript-1.0.1.tgz",
-      "integrity": "sha512-/gz6LgVpky205LuoOfwEZmnUtaSmdk0QIMcNFj9OvxhiMhPpKftMgZmGN7jNj7jR+lr8IB1Yks3QSSSNSxfoaQ==",
-      "dev": true,
-      "requires": {
-        "@istanbuljs/schema": "^0.1.2"
-      }
-    },
-    "@istanbuljs/schema": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz",
-      "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==",
-      "dev": true
-    },
-    "@jest/console": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz",
-      "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.6.2",
-        "@types/node": "*",
-        "chalk": "^4.0.0",
-        "jest-message-util": "^26.6.2",
-        "jest-util": "^26.6.2",
-        "slash": "^3.0.0"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "@jest/core": {
-      "version": "26.6.3",
-      "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz",
-      "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==",
-      "dev": true,
-      "requires": {
-        "@jest/console": "^26.6.2",
-        "@jest/reporters": "^26.6.2",
-        "@jest/test-result": "^26.6.2",
-        "@jest/transform": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/node": "*",
-        "ansi-escapes": "^4.2.1",
-        "chalk": "^4.0.0",
-        "exit": "^0.1.2",
-        "graceful-fs": "^4.2.4",
-        "jest-changed-files": "^26.6.2",
-        "jest-config": "^26.6.3",
-        "jest-haste-map": "^26.6.2",
-        "jest-message-util": "^26.6.2",
-        "jest-regex-util": "^26.0.0",
-        "jest-resolve": "^26.6.2",
-        "jest-resolve-dependencies": "^26.6.3",
-        "jest-runner": "^26.6.3",
-        "jest-runtime": "^26.6.3",
-        "jest-snapshot": "^26.6.2",
-        "jest-util": "^26.6.2",
-        "jest-validate": "^26.6.2",
-        "jest-watcher": "^26.6.2",
-        "micromatch": "^4.0.2",
-        "p-each-series": "^2.1.0",
-        "rimraf": "^3.0.0",
-        "slash": "^3.0.0",
-        "strip-ansi": "^6.0.0"
-      },
-      "dependencies": {
-        "@jest/transform": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
-          "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
-          "dev": true,
-          "requires": {
-            "@babel/core": "^7.1.0",
-            "@jest/types": "^26.6.2",
-            "babel-plugin-istanbul": "^6.0.0",
-            "chalk": "^4.0.0",
-            "convert-source-map": "^1.4.0",
-            "fast-json-stable-stringify": "^2.0.0",
-            "graceful-fs": "^4.2.4",
-            "jest-haste-map": "^26.6.2",
-            "jest-regex-util": "^26.0.0",
-            "jest-util": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "pirates": "^4.0.1",
-            "slash": "^3.0.0",
-            "source-map": "^0.6.1",
-            "write-file-atomic": "^3.0.0"
-          }
-        },
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-haste-map": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
-          "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/graceful-fs": "^4.1.2",
-            "@types/node": "*",
-            "anymatch": "^3.0.3",
-            "fb-watchman": "^2.0.0",
-            "fsevents": "^2.1.2",
-            "graceful-fs": "^4.2.4",
-            "jest-regex-util": "^26.0.0",
-            "jest-serializer": "^26.6.2",
-            "jest-util": "^26.6.2",
-            "jest-worker": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "sane": "^4.0.3",
-            "walker": "^1.0.7"
-          }
-        },
-        "jest-serializer": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
-          "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "graceful-fs": "^4.2.4"
-          }
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "rimraf": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
-          "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
-          "dev": true,
-          "requires": {
-            "glob": "^7.1.3"
-          }
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "@jest/create-cache-key-function": {
-      "version": "26.5.0",
-      "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-26.5.0.tgz",
-      "integrity": "sha512-DJ+pEBUIqarrbv1W/C39f9YH0rJ4wsXZ/VC6JafJPlHW2HOucKceeaqTOQj9MEDQZjySxMLkOq5mfXZXNZcmWw==",
-      "dev": true
-    },
-    "@jest/environment": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz",
-      "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==",
-      "dev": true,
-      "requires": {
-        "@jest/fake-timers": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/node": "*",
-        "jest-mock": "^26.6.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "@jest/fake-timers": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz",
-      "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.6.2",
-        "@sinonjs/fake-timers": "^6.0.1",
-        "@types/node": "*",
-        "jest-message-util": "^26.6.2",
-        "jest-mock": "^26.6.2",
-        "jest-util": "^26.6.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "@jest/globals": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz",
-      "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==",
-      "dev": true,
-      "requires": {
-        "@jest/environment": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "expect": "^26.6.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "@jest/reporters": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz",
-      "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==",
-      "dev": true,
-      "requires": {
-        "@bcoe/v8-coverage": "^0.2.3",
-        "@jest/console": "^26.6.2",
-        "@jest/test-result": "^26.6.2",
-        "@jest/transform": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "chalk": "^4.0.0",
-        "collect-v8-coverage": "^1.0.0",
-        "exit": "^0.1.2",
-        "glob": "^7.1.2",
-        "graceful-fs": "^4.2.4",
-        "istanbul-lib-coverage": "^3.0.0",
-        "istanbul-lib-instrument": "^4.0.3",
-        "istanbul-lib-report": "^3.0.0",
-        "istanbul-lib-source-maps": "^4.0.0",
-        "istanbul-reports": "^3.0.2",
-        "jest-haste-map": "^26.6.2",
-        "jest-resolve": "^26.6.2",
-        "jest-util": "^26.6.2",
-        "jest-worker": "^26.6.2",
-        "node-notifier": "^8.0.0",
-        "slash": "^3.0.0",
-        "source-map": "^0.6.0",
-        "string-length": "^4.0.1",
-        "terminal-link": "^2.0.0",
-        "v8-to-istanbul": "^7.0.0"
-      },
-      "dependencies": {
-        "@jest/transform": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
-          "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
-          "dev": true,
-          "requires": {
-            "@babel/core": "^7.1.0",
-            "@jest/types": "^26.6.2",
-            "babel-plugin-istanbul": "^6.0.0",
-            "chalk": "^4.0.0",
-            "convert-source-map": "^1.4.0",
-            "fast-json-stable-stringify": "^2.0.0",
-            "graceful-fs": "^4.2.4",
-            "jest-haste-map": "^26.6.2",
-            "jest-regex-util": "^26.0.0",
-            "jest-util": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "pirates": "^4.0.1",
-            "slash": "^3.0.0",
-            "source-map": "^0.6.1",
-            "write-file-atomic": "^3.0.0"
-          }
-        },
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-haste-map": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
-          "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/graceful-fs": "^4.1.2",
-            "@types/node": "*",
-            "anymatch": "^3.0.3",
-            "fb-watchman": "^2.0.0",
-            "fsevents": "^2.1.2",
-            "graceful-fs": "^4.2.4",
-            "jest-regex-util": "^26.0.0",
-            "jest-serializer": "^26.6.2",
-            "jest-util": "^26.6.2",
-            "jest-worker": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "sane": "^4.0.3",
-            "walker": "^1.0.7"
-          }
-        },
-        "jest-serializer": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
-          "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "graceful-fs": "^4.2.4"
-          }
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "@jest/source-map": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz",
-      "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==",
-      "dev": true,
-      "requires": {
-        "callsites": "^3.0.0",
-        "graceful-fs": "^4.2.4",
-        "source-map": "^0.6.0"
-      },
-      "dependencies": {
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "@jest/test-result": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz",
-      "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==",
-      "dev": true,
-      "requires": {
-        "@jest/console": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/istanbul-lib-coverage": "^2.0.0",
-        "collect-v8-coverage": "^1.0.0"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "@jest/test-sequencer": {
-      "version": "26.6.3",
-      "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz",
-      "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==",
-      "dev": true,
-      "requires": {
-        "@jest/test-result": "^26.6.2",
-        "graceful-fs": "^4.2.4",
-        "jest-haste-map": "^26.6.2",
-        "jest-runner": "^26.6.3",
-        "jest-runtime": "^26.6.3"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-haste-map": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
-          "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/graceful-fs": "^4.1.2",
-            "@types/node": "*",
-            "anymatch": "^3.0.3",
-            "fb-watchman": "^2.0.0",
-            "fsevents": "^2.1.2",
-            "graceful-fs": "^4.2.4",
-            "jest-regex-util": "^26.0.0",
-            "jest-serializer": "^26.6.2",
-            "jest-util": "^26.6.2",
-            "jest-worker": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "sane": "^4.0.3",
-            "walker": "^1.0.7"
-          }
-        },
-        "jest-serializer": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
-          "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "graceful-fs": "^4.2.4"
-          }
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "@jest/transform": {
-      "version": "26.1.0",
-      "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.1.0.tgz",
-      "integrity": "sha512-ICPm6sUXmZJieq45ix28k0s+d/z2E8CHDsq+WwtWI6kW8m7I8kPqarSEcUN86entHQ570ZBRci5OWaKL0wlAWw==",
-      "dev": true,
-      "requires": {
-        "@babel/core": "^7.1.0",
-        "@jest/types": "^26.1.0",
-        "babel-plugin-istanbul": "^6.0.0",
-        "chalk": "^4.0.0",
-        "convert-source-map": "^1.4.0",
-        "fast-json-stable-stringify": "^2.0.0",
-        "graceful-fs": "^4.2.4",
-        "jest-haste-map": "^26.1.0",
-        "jest-regex-util": "^26.0.0",
-        "jest-util": "^26.1.0",
-        "micromatch": "^4.0.2",
-        "pirates": "^4.0.1",
-        "slash": "^3.0.0",
-        "source-map": "^0.6.1",
-        "write-file-atomic": "^3.0.0"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.1.0",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.1.0.tgz",
-          "integrity": "sha512-GXigDDsp6ZlNMhXQDeuy/iYCDsRIHJabWtDzvnn36+aqFfG14JmFV0e/iXxY4SP9vbXSiPNOWdehU5MeqrYHBQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^1.1.1",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.5",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.5.tgz",
-          "integrity": "sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
-          "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
-          "dev": true,
-          "requires": {
-            "@types/color-name": "^1.1.1",
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
-          "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "@jest/types": {
-      "version": "25.5.0",
-      "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
-      "integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==",
-      "dev": true,
-      "requires": {
-        "@types/istanbul-lib-coverage": "^2.0.0",
-        "@types/istanbul-reports": "^1.1.1",
-        "@types/yargs": "^15.0.0",
-        "chalk": "^3.0.0"
-      },
-      "dependencies": {
-        "@types/yargs": {
-          "version": "15.0.5",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.5.tgz",
-          "integrity": "sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
-          "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
-          "dev": true,
-          "requires": {
-            "@types/color-name": "^1.1.1",
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
-          "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
-          "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "@loaders.gl/core": {
-      "version": "1.3.7",
-      "resolved": "https://registry.npmjs.org/@loaders.gl/core/-/core-1.3.7.tgz",
-      "integrity": "sha512-dFZkJQc+i2PoqlBMz/aO8Gnn0y6ICafQp8u6cTpCm96h/HHulE8qDBodQlHGHn9EMJDSgVl/zjni+QhqIK31dg==",
-      "requires": {
-        "@babel/runtime": "^7.3.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "@loaders.gl/images": {
-      "version": "1.3.7",
-      "resolved": "https://registry.npmjs.org/@loaders.gl/images/-/images-1.3.7.tgz",
-      "integrity": "sha512-TKqW94vjvWc4RIChhr0Yx6HaVTe8K6h6GFeXcahsKeCxq9/k2qpcigRkXfmb6/37dkp2Qy5COHp73ECgN/q+NA=="
-    },
-    "@luma.gl/constants": {
-      "version": "7.3.2",
-      "resolved": "https://registry.npmjs.org/@luma.gl/constants/-/constants-7.3.2.tgz",
-      "integrity": "sha512-hr6JOOwsGPjjoHnil4sQ6AWsc8P6XXYtRL10TwNYfFTcNxrhSrjQvutYoCzXHH5U0vfHBfPMMUyLASK9FqiHOA=="
-    },
-    "@luma.gl/core": {
-      "version": "7.3.2",
-      "resolved": "https://registry.npmjs.org/@luma.gl/core/-/core-7.3.2.tgz",
-      "integrity": "sha512-XyQPSUJRkZcc//gVX0AgjLLNTkCOO68NRnm7RkIhikRBEUdovb4IOcpmWMCB1/Gyj4hzg/Z1FOAVT4pG1E+agw==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "@luma.gl/constants": "7.3.2",
-        "@luma.gl/shadertools": "7.3.2",
-        "@luma.gl/webgl": "7.3.2",
-        "@luma.gl/webgl-state-tracker": "7.3.2",
-        "@luma.gl/webgl2-polyfill": "7.3.2",
-        "math.gl": "^3.0.0",
-        "probe.gl": "^3.1.1",
-        "seer": "^0.2.4"
-      },
-      "dependencies": {
-        "math.gl": {
-          "version": "3.4.1",
-          "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-3.4.1.tgz",
-          "integrity": "sha512-D33ZXryVFcHu1YJ+fgcNp2MkyK+mEfHesHMdQUZBz2hFqIsAwXovM1sJ+0rTcs8IyTFmuRJ2ayHf1igEJEOM2g==",
-          "requires": {
-            "@math.gl/core": "3.4.1"
-          }
-        }
-      }
-    },
-    "@luma.gl/shadertools": {
-      "version": "7.3.2",
-      "resolved": "https://registry.npmjs.org/@luma.gl/shadertools/-/shadertools-7.3.2.tgz",
-      "integrity": "sha512-GiOZTvdEr164zYFy1DNRc7mzduSWLNJ34s+YbkJ/0i07E6tK7gHgM29QNCZ/gROvUDDJ5CHxngZqGkb+XquOMQ==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "math.gl": "^3.0.0"
-      },
-      "dependencies": {
-        "math.gl": {
-          "version": "3.4.1",
-          "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-3.4.1.tgz",
-          "integrity": "sha512-D33ZXryVFcHu1YJ+fgcNp2MkyK+mEfHesHMdQUZBz2hFqIsAwXovM1sJ+0rTcs8IyTFmuRJ2ayHf1igEJEOM2g==",
-          "requires": {
-            "@math.gl/core": "3.4.1"
-          }
-        }
-      }
-    },
-    "@luma.gl/webgl": {
-      "version": "7.3.2",
-      "resolved": "https://registry.npmjs.org/@luma.gl/webgl/-/webgl-7.3.2.tgz",
-      "integrity": "sha512-eWoPPRJOF5xSpqgggdwspsm8exclwxz20c8vqu8D1b3LJTY7cEpq57CMLvITHcJMMJ834TX/r598efTcF76lpw==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "@luma.gl/constants": "7.3.2",
-        "@luma.gl/webgl-state-tracker": "7.3.2",
-        "@luma.gl/webgl2-polyfill": "7.3.2",
-        "probe.gl": "^3.1.1"
-      }
-    },
-    "@luma.gl/webgl-state-tracker": {
-      "version": "7.3.2",
-      "resolved": "https://registry.npmjs.org/@luma.gl/webgl-state-tracker/-/webgl-state-tracker-7.3.2.tgz",
-      "integrity": "sha512-0LuK3veReSm2UPOiDwC2CRDeE2xk4irqXdhyFO0WSAU1w+YhzbD1hGbjizGczvgfkbz8dFl9h98LbbH75efcKw==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "@luma.gl/constants": "7.3.2"
-      }
-    },
-    "@luma.gl/webgl2-polyfill": {
-      "version": "7.3.2",
-      "resolved": "https://registry.npmjs.org/@luma.gl/webgl2-polyfill/-/webgl2-polyfill-7.3.2.tgz",
-      "integrity": "sha512-PMt5xqQ+u7tIqfUaL3s4nuWl604WFNcl1F1ohSUFeEzIIuxFiF6gsdEEvC5VqGoMFxI8T4FOTSeHYIr6uP4+4w==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "@luma.gl/constants": "7.3.2"
-      }
-    },
-    "@mapbox/geojson-area": {
-      "version": "0.2.2",
-      "resolved": "https://registry.npmjs.org/@mapbox/geojson-area/-/geojson-area-0.2.2.tgz",
-      "integrity": "sha1-GNeBSqNr8j+7zDefjiaiKSfevxA=",
-      "requires": {
-        "wgs84": "0.0.0"
-      }
-    },
-    "@mapbox/geojson-rewind": {
-      "version": "0.4.1",
-      "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.4.1.tgz",
-      "integrity": "sha512-mxo2MEr7izA1uOXcDsw99Kgg6xW3P4H2j4n1lmldsgviIelpssvP+jQDivFKOHrOVJDpTTi5oZJvRcHtU9Uufw==",
-      "requires": {
-        "@mapbox/geojson-area": "0.2.2",
-        "concat-stream": "~1.6.0",
-        "minimist": "^1.2.5",
-        "sharkdown": "^0.1.0"
-      }
-    },
-    "@mapbox/geojson-types": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz",
-      "integrity": "sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw=="
-    },
-    "@mapbox/jsonlint-lines-primitives": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz",
-      "integrity": "sha1-zlblOfg1UrWNENZy6k1vya3HsjQ="
-    },
-    "@mapbox/mapbox-gl-supported": {
-      "version": "1.5.0",
-      "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz",
-      "integrity": "sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg=="
-    },
-    "@mapbox/point-geometry": {
-      "version": "0.1.0",
-      "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz",
-      "integrity": "sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI="
-    },
-    "@mapbox/tiny-sdf": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.1.1.tgz",
-      "integrity": "sha512-Ihn1nZcGIswJ5XGbgFAvVumOgWpvIjBX9jiRlIl46uQG9vJOF51ViBYHF95rEZupuyQbEmhLaDPLQlU7fUTsBg=="
-    },
-    "@mapbox/unitbezier": {
-      "version": "0.0.0",
-      "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz",
-      "integrity": "sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4="
-    },
-    "@mapbox/vector-tile": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz",
-      "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==",
-      "requires": {
-        "@mapbox/point-geometry": "~0.1.0"
-      }
-    },
-    "@mapbox/whoots-js": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz",
-      "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q=="
-    },
-    "@math.gl/core": {
-      "version": "3.4.1",
-      "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-3.4.1.tgz",
-      "integrity": "sha512-miAZL/WPU0B5hKrcg1K2nPU2GnOK6X84bwLoD0eTt2n7qT46ffh51Xu21V9kQp/cisE3l1ypukqSV/VHeaNxhQ==",
-      "requires": {
-        "@babel/runtime": "^7.12.0",
-        "gl-matrix": "^3.0.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "@math.gl/web-mercator": {
-      "version": "3.4.1",
-      "resolved": "https://registry.npmjs.org/@math.gl/web-mercator/-/web-mercator-3.4.1.tgz",
-      "integrity": "sha512-5LAVmo5U25GY5YIxbI3D0J7r97B9AM5pAcWxnF9YhJx44DSVAYfMdiSISOfS+ivKuBFX44mFZvV9j75QY5aDkQ==",
-      "requires": {
-        "@babel/runtime": "^7.12.0",
-        "gl-matrix": "^3.0.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "@mdx-js/loader": {
-      "version": "1.6.19",
-      "resolved": "https://registry.npmjs.org/@mdx-js/loader/-/loader-1.6.19.tgz",
-      "integrity": "sha512-sUOVonSzd6w821p8jCL2ET5KK24cu1w3igGwcXG/T+ZTl81EjUR9Tbv4Q50jxWS9umtmk5GcdAZndnDmpRHZXQ==",
-      "dev": true,
-      "requires": {
-        "@mdx-js/mdx": "1.6.19",
-        "@mdx-js/react": "1.6.19",
-        "loader-utils": "2.0.0"
-      },
-      "dependencies": {
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "loader-utils": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-          "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^2.1.2"
-          }
-        }
-      }
-    },
-    "@mdx-js/mdx": {
-      "version": "1.6.19",
-      "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-1.6.19.tgz",
-      "integrity": "sha512-L3eLhEFnV/2bcb9XwOegsRmLHd1oEDQPtTBVezhptQ5U1YM+/WQNzx1apjzVTAyukwOanUXnTUMjRUtqJNgFCg==",
-      "dev": true,
-      "requires": {
-        "@babel/core": "7.11.6",
-        "@babel/plugin-syntax-jsx": "7.10.4",
-        "@babel/plugin-syntax-object-rest-spread": "7.8.3",
-        "@mdx-js/util": "1.6.19",
-        "babel-plugin-apply-mdx-type-prop": "1.6.19",
-        "babel-plugin-extract-import-names": "1.6.19",
-        "camelcase-css": "2.0.1",
-        "detab": "2.0.3",
-        "hast-util-raw": "6.0.1",
-        "lodash.uniq": "4.5.0",
-        "mdast-util-to-hast": "9.1.1",
-        "remark-footnotes": "2.0.0",
-        "remark-mdx": "1.6.19",
-        "remark-parse": "8.0.3",
-        "remark-squeeze-paragraphs": "4.0.0",
-        "style-to-object": "0.3.0",
-        "unified": "9.2.0",
-        "unist-builder": "2.0.3",
-        "unist-util-visit": "2.0.3"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
-          "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/core": {
-          "version": "7.11.6",
-          "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.11.6.tgz",
-          "integrity": "sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/generator": "^7.11.6",
-            "@babel/helper-module-transforms": "^7.11.0",
-            "@babel/helpers": "^7.10.4",
-            "@babel/parser": "^7.11.5",
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.11.5",
-            "@babel/types": "^7.11.5",
-            "convert-source-map": "^1.7.0",
-            "debug": "^4.1.0",
-            "gensync": "^1.0.0-beta.1",
-            "json5": "^2.1.2",
-            "lodash": "^4.17.19",
-            "resolve": "^1.3.2",
-            "semver": "^5.4.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
-          "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
-          "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
-          "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
-          "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-module-transforms": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
-          "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-imports": "^7.12.1",
-            "@babel/helper-replace-supers": "^7.12.1",
-            "@babel/helper-simple-access": "^7.12.1",
-            "@babel/helper-split-export-declaration": "^7.11.0",
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.12.1",
-            "@babel/types": "^7.12.1",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz",
-          "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
-          "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.12.1",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/traverse": "^7.12.5",
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-simple-access": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
-          "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz",
-          "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.11.0"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/helpers": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
-          "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
-          "dev": true,
-          "requires": {
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.12.5",
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
-          "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==",
-          "dev": true
-        },
-        "@babel/plugin-syntax-jsx": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz",
-          "integrity": "sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/template": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
-          "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
-          "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/generator": "^7.12.5",
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-split-export-declaration": "^7.11.0",
-            "@babel/parser": "^7.12.5",
-            "@babel/types": "^7.12.5",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.6",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
-          "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "convert-source-map": {
-          "version": "1.7.0",
-          "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
-          "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "~5.1.1"
-          }
-        },
-        "debug": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
-          "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "is-buffer": {
-          "version": "2.0.5",
-          "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
-          "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
-          "dev": true
-        },
-        "is-plain-obj": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
-          "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
-          "dev": true
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "parse-entities": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
-          "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
-          "dev": true,
-          "requires": {
-            "character-entities": "^1.0.0",
-            "character-entities-legacy": "^1.0.0",
-            "character-reference-invalid": "^1.0.0",
-            "is-alphanumerical": "^1.0.0",
-            "is-decimal": "^1.0.0",
-            "is-hexadecimal": "^1.0.0"
-          }
-        },
-        "remark-parse": {
-          "version": "8.0.3",
-          "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz",
-          "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==",
-          "dev": true,
-          "requires": {
-            "ccount": "^1.0.0",
-            "collapse-white-space": "^1.0.2",
-            "is-alphabetical": "^1.0.0",
-            "is-decimal": "^1.0.0",
-            "is-whitespace-character": "^1.0.0",
-            "is-word-character": "^1.0.0",
-            "markdown-escapes": "^1.0.0",
-            "parse-entities": "^2.0.0",
-            "repeat-string": "^1.5.4",
-            "state-toggle": "^1.0.0",
-            "trim": "0.0.1",
-            "trim-trailing-lines": "^1.0.0",
-            "unherit": "^1.0.4",
-            "unist-util-remove-position": "^2.0.0",
-            "vfile-location": "^3.0.0",
-            "xtend": "^4.0.1"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "unified": {
-          "version": "9.2.0",
-          "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz",
-          "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==",
-          "dev": true,
-          "requires": {
-            "bail": "^1.0.0",
-            "extend": "^3.0.0",
-            "is-buffer": "^2.0.0",
-            "is-plain-obj": "^2.0.0",
-            "trough": "^1.0.0",
-            "vfile": "^4.0.0"
-          }
-        },
-        "unist-util-is": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.3.tgz",
-          "integrity": "sha512-bTofCFVx0iQM8Jqb1TBDVRIQW03YkD3p66JOd/aCWuqzlLyUtx1ZAGw/u+Zw+SttKvSVcvTiKYbfrtLoLefykw==",
-          "dev": true
-        },
-        "unist-util-remove-position": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz",
-          "integrity": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==",
-          "dev": true,
-          "requires": {
-            "unist-util-visit": "^2.0.0"
-          }
-        },
-        "unist-util-stringify-position": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
-          "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.2"
-          }
-        },
-        "unist-util-visit": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
-          "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0",
-            "unist-util-visit-parents": "^3.0.0"
-          }
-        },
-        "unist-util-visit-parents": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
-          "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0"
-          }
-        },
-        "vfile": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.0.tgz",
-          "integrity": "sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "is-buffer": "^2.0.0",
-            "replace-ext": "1.0.0",
-            "unist-util-stringify-position": "^2.0.0",
-            "vfile-message": "^2.0.0"
-          }
-        },
-        "vfile-location": {
-          "version": "3.2.0",
-          "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz",
-          "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==",
-          "dev": true
-        },
-        "vfile-message": {
-          "version": "2.0.4",
-          "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz",
-          "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-stringify-position": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@mdx-js/react": {
-      "version": "1.6.19",
-      "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-1.6.19.tgz",
-      "integrity": "sha512-RS37Tagqyp2R0XFPoUZeSbZC5uJQRPhqOHWeT1LEwxESjMWb3VORHz7E827ldeQr3UW6VEQEyq/THegu+bLj6A==",
-      "dev": true
-    },
-    "@mdx-js/util": {
-      "version": "1.6.19",
-      "resolved": "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.19.tgz",
-      "integrity": "sha512-bkkQNSHz3xSr3KRHUQ2Qk2XhewvvXAOUqjIUKwcQuL4ijOA4tUHZfUgXExi5CpMysrX7izcsyICtXjZHlfJUjg==",
-      "dev": true
-    },
-    "@mrmlnc/readdir-enhanced": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
-      "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
-      "dev": true,
-      "requires": {
-        "call-me-maybe": "^1.0.1",
-        "glob-to-regexp": "^0.3.0"
-      },
-      "dependencies": {
-        "glob-to-regexp": {
-          "version": "0.3.0",
-          "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz",
-          "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=",
-          "dev": true
-        }
-      }
-    },
-    "@nicolo-ribaudo/chokidar-2": {
-      "version": "2.1.8-no-fsevents",
-      "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.tgz",
-      "integrity": "sha512-+nb9vWloHNNMFHjGofEam3wopE3m1yuambrrd/fnPc+lFOMB9ROTqQlche9ByFWNkdNqfSgR/kkQtQ8DzEWt2w==",
-      "dev": true,
-      "optional": true,
-      "requires": {
-        "anymatch": "^2.0.0",
-        "async-each": "^1.0.1",
-        "braces": "^2.3.2",
-        "glob-parent": "^3.1.0",
-        "inherits": "^2.0.3",
-        "is-binary-path": "^1.0.0",
-        "is-glob": "^4.0.0",
-        "normalize-path": "^3.0.0",
-        "path-is-absolute": "^1.0.0",
-        "readdirp": "^2.2.1",
-        "upath": "^1.1.1"
-      },
-      "dependencies": {
-        "glob-parent": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
-          "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "is-glob": "^3.1.0",
-            "path-dirname": "^1.0.0"
-          },
-          "dependencies": {
-            "is-glob": {
-              "version": "3.1.0",
-              "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
-              "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "is-extglob": "^2.1.0"
-              }
-            }
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true,
-          "optional": true
-        },
-        "upath": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
-          "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
-          "dev": true,
-          "optional": true
-        }
-      }
-    },
-    "@nodelib/fs.scandir": {
-      "version": "2.1.3",
-      "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz",
-      "integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==",
-      "dev": true,
-      "requires": {
-        "@nodelib/fs.stat": "2.0.3",
-        "run-parallel": "^1.1.9"
-      },
-      "dependencies": {
-        "@nodelib/fs.stat": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz",
-          "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==",
-          "dev": true
-        }
-      }
-    },
-    "@nodelib/fs.stat": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz",
-      "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==",
-      "dev": true
-    },
-    "@nodelib/fs.walk": {
-      "version": "1.2.4",
-      "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz",
-      "integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==",
-      "dev": true,
-      "requires": {
-        "@nodelib/fs.scandir": "2.1.3",
-        "fastq": "^1.6.0"
-      }
-    },
-    "@npmcli/move-file": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.0.1.tgz",
-      "integrity": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==",
-      "dev": true,
-      "requires": {
-        "mkdirp": "^1.0.4"
-      },
-      "dependencies": {
-        "mkdirp": {
-          "version": "1.0.4",
-          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
-          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
-          "dev": true
-        }
-      }
-    },
-    "@popperjs/core": {
-      "version": "2.6.0",
-      "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.6.0.tgz",
-      "integrity": "sha512-cPqjjzuFWNK3BSKLm0abspP0sp/IGOli4p5I5fKFAzdS8fvjdOwDCfZqAaIiXd9lPkOWi3SUUfZof3hEb7J/uw==",
-      "dev": true
-    },
-    "@probe.gl/stats": {
-      "version": "3.3.0",
-      "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-3.3.0.tgz",
-      "integrity": "sha512-CV4c3EgallqZTO88u34/u9L5asL0nCVP1BEkb4qcXlh8Qz2Vmygbyjz1ViQsct6rSi2lJ52lo6W0PnlpZJJvcA==",
-      "requires": {
-        "@babel/runtime": "^7.0.0"
-      }
-    },
-    "@reach/router": {
-      "version": "1.3.4",
-      "resolved": "https://registry.npmjs.org/@reach/router/-/router-1.3.4.tgz",
-      "integrity": "sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==",
-      "dev": true,
-      "requires": {
-        "create-react-context": "0.3.0",
-        "invariant": "^2.2.3",
-        "prop-types": "^15.6.1",
-        "react-lifecycles-compat": "^3.0.4"
-      }
-    },
-    "@react-dnd/asap": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/@react-dnd/asap/-/asap-4.0.0.tgz",
-      "integrity": "sha512-0XhqJSc6pPoNnf8DhdsPHtUhRzZALVzYMTzRwV4VI6DJNJ/5xxfL9OQUwb8IH5/2x7lSf7nAZrnzUD+16VyOVQ=="
-    },
-    "@react-dnd/invariant": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/@react-dnd/invariant/-/invariant-2.0.0.tgz",
-      "integrity": "sha512-xL4RCQBCBDJ+GRwKTFhGUW8GXa4yoDfJrPbLblc3U09ciS+9ZJXJ3Qrcs/x2IODOdIE5kQxvMmE2UKyqUictUw=="
-    },
-    "@react-dnd/shallowequal": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/@react-dnd/shallowequal/-/shallowequal-2.0.0.tgz",
-      "integrity": "sha512-Pc/AFTdwZwEKJxFJvlxrSmGe/di+aAOBn60sremrpLo6VI/6cmiUYNNwlI5KNYttg7uypzA3ILPMPgxB2GYZEg=="
-    },
-    "@scarf/scarf": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/@scarf/scarf/-/scarf-1.0.6.tgz",
-      "integrity": "sha512-y4+DuXrAd1W5UIY3zTcsosi/1GyYT8k5jGnZ/wG7UUHVrU+MHlH4Mp87KK2/lvMW4+H7HVcdB+aJhqywgXksjA=="
-    },
-    "@seznam/compose-react-refs": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/@seznam/compose-react-refs/-/compose-react-refs-1.0.4.tgz",
-      "integrity": "sha512-TwrojUAFVSd+HPAdnul0o65X8mIam+dJOxcWI6LhHAUIpVRk2cJp2dyWXWl6sJvZTY9ODSJpOibt7JKSNUjVfQ=="
-    },
-    "@sinonjs/commons": {
-      "version": "1.8.0",
-      "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.0.tgz",
-      "integrity": "sha512-wEj54PfsZ5jGSwMX68G8ZXFawcSglQSXqCftWX3ec8MDUzQdHgcKvw97awHbY0efQEL5iKUOAmmVtoYgmrSG4Q==",
-      "dev": true,
-      "requires": {
-        "type-detect": "4.0.8"
-      }
-    },
-    "@sinonjs/fake-timers": {
-      "version": "6.0.1",
-      "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz",
-      "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==",
-      "dev": true,
-      "requires": {
-        "@sinonjs/commons": "^1.7.0"
-      }
-    },
-    "@sinonjs/formatio": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-5.0.1.tgz",
-      "integrity": "sha512-KaiQ5pBf1MpS09MuA0kp6KBQt2JUOQycqVG1NZXvzeaXe5LGFqAKueIS0bw4w0P9r7KuBSVdUk5QjXsUdu2CxQ==",
-      "dev": true,
-      "requires": {
-        "@sinonjs/commons": "^1",
-        "@sinonjs/samsam": "^5.0.2"
-      }
-    },
-    "@sinonjs/samsam": {
-      "version": "5.0.3",
-      "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.0.3.tgz",
-      "integrity": "sha512-QucHkc2uMJ0pFGjJUDP3F9dq5dx8QIaqISl9QgwLOh6P9yv877uONPGXh/OH/0zmM3tW1JjuJltAZV2l7zU+uQ==",
-      "dev": true,
-      "requires": {
-        "@sinonjs/commons": "^1.6.0",
-        "lodash.get": "^4.4.2",
-        "type-detect": "^4.0.8"
-      }
-    },
-    "@sinonjs/text-encoding": {
-      "version": "0.7.1",
-      "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz",
-      "integrity": "sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==",
-      "dev": true
-    },
-    "@storybook/addon-actions": {
-      "version": "6.0.13",
-      "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-6.0.13.tgz",
-      "integrity": "sha512-sO2q6DeaSVHQR3GeeuohJRNB71/UwnJMQQvbeH1HwtLEhUAeY8Qtv9njx4rsTntyOxOmEUVFik5X9lzymLQJnw==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "6.0.13",
-        "@storybook/api": "6.0.13",
-        "@storybook/client-api": "6.0.13",
-        "@storybook/components": "6.0.13",
-        "@storybook/core-events": "6.0.13",
-        "@storybook/theming": "6.0.13",
-        "core-js": "^3.0.1",
-        "fast-deep-equal": "^3.1.1",
-        "global": "^4.3.2",
-        "lodash": "^4.17.15",
-        "polished": "^3.4.4",
-        "prop-types": "^15.7.2",
-        "react": "^16.8.3",
-        "react-inspector": "^5.0.1",
-        "regenerator-runtime": "^0.13.3",
-        "ts-dedent": "^1.1.1",
-        "util-deprecate": "^1.0.2",
-        "uuid": "^8.0.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.11.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz",
-          "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.13.tgz",
-          "integrity": "sha512-0flK0xe1LxNa3ZVOpFJoTG7PPU0ri+Gb9qHxcGwRMJt/qVQVcuF7BL+CC1R5gg2fa8Z0A867X4quLPfUOJvCmQ==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.13",
-            "@storybook/channels": "6.0.13",
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/core-events": "6.0.13",
-            "@storybook/router": "6.0.13",
-            "@storybook/theming": "6.0.13",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.13.tgz",
-          "integrity": "sha512-0LU9XWqSCQMFm9+C4JvQsv7reLv61Qc2Ev+btbvps2Bdg0MG6MKT8Qc4dzCc3vSbp0wh9b9DYMx/r7EvTRzUXA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.13",
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/core-events": "6.0.13",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.13",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.13",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channel-postmessage": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.0.13.tgz",
-          "integrity": "sha512-WglkGiX0tAdftQVaNK8xlGW5gOjA9HQ+095G3cPehrPg7Rc7mEMCFvACVL2BlZBUCPljh2DA+fv7aQMcjuW/Xg==",
-          "dev": true,
-          "requires": {
-            "@storybook/channels": "6.0.13",
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/core-events": "6.0.13",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "qs": "^6.6.0",
-            "telejson": "^5.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.13.tgz",
-          "integrity": "sha512-99qcxeFFPP2FBNA/dSSKGrzuQaU1FQ8BjZlBubvYhWJku2kvXuCkUFHAWSgGc3aqb+lIZCXF3OWUFZ1fYMFmIA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-api": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.0.13.tgz",
-          "integrity": "sha512-AL5YywpZo1LPi8FlIRiUXFBnV1h5039hUAVXMlVlOBud0iZuGlBZTsmgttL3GQUdC2hNQsbwZu7vAO/uqCsfRw==",
-          "dev": true,
-          "requires": {
-            "@storybook/addons": "6.0.13",
-            "@storybook/channel-postmessage": "6.0.13",
-            "@storybook/channels": "6.0.13",
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/core-events": "6.0.13",
-            "@storybook/csf": "0.0.1",
-            "@types/qs": "^6.9.0",
-            "@types/webpack-env": "^1.15.2",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0",
-            "stable": "^0.1.8",
-            "store2": "^2.7.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.13.tgz",
-          "integrity": "sha512-9Qt6v5bmec/DKdoj2TU2bL2CIRMFjoXoys7rMf82MX5PgtkaYk9IYa0i2i5tlfsT/Pw+E+Jv26QUwQkTCt++bQ==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.13.tgz",
-          "integrity": "sha512-DSi1eucNTWEyUMr25aXTRthgCq6utHp7OGvtJ283ROTNdsaXrm7L2aFm87y7q0tmWaRSvXAqmP9l5+Bh+OAc9A==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.13",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.13.tgz",
-          "integrity": "sha512-lnHnXXAkProci1G2qkPn3qorWkIiwukT4YSSYfwqZfuvbQZJIA1oiaBmQYpTU8CeQ1F73kHDpk2E2aTnUNJ29g==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.13.tgz",
-          "integrity": "sha512-aLDMEDsTbqOv1pcOH+ovRVgdf8exqtTRGIcNTbEhBBnaDsbdo2sxoXHJ8n8xHw1TbpYx7zLD0HXbzSSJIlj1lg==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/semver": {
-          "version": "7.3.2",
-          "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz",
-          "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.6.5",
-            "find-up": "^4.1.0"
-          },
-          "dependencies": {
-            "core-js": {
-              "version": "3.6.5",
-              "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
-              "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==",
-              "dev": true
-            }
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.13.tgz",
-          "integrity": "sha512-XsiQv0I5NQ2gGcmpIS31zbfAS6HK8IJdAgltSSuF/Yzkwks+guqG4MYWaWGEQPPwYvPDZp+/gproWacQJgrjug==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.13",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "react-color": {
-          "version": "2.18.1",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.18.1.tgz",
-          "integrity": "sha512-X5XpyJS6ncplZs74ak0JJoqPi+33Nzpv5RYWWxn17bslih+X7OlgmfpmGC1fNvdkK7/SGWYf1JJdn7D2n5gSuQ==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.11",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.2.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.2.0.tgz",
-          "integrity": "sha512-grajUlVbkx6VdtSxCgzloUIphIZF5bKr21OYMceWPKkniy7H0mRAT/AXPrRtObAe+zUePnNlBwUc4ivVjUGIjw==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        },
-        "uuid": {
-          "version": "8.3.0",
-          "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.0.tgz",
-          "integrity": "sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/addon-backgrounds": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-6.0.28.tgz",
-      "integrity": "sha512-yASdONGm7/Y9v+oBT4aStdMo+o/WeUlIu5Ll0M433e9k6bv4YV1p13uZMlyGDlIKLVpb+4GG31mupPT6YoHmKw==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "6.0.28",
-        "@storybook/api": "6.0.28",
-        "@storybook/client-logger": "6.0.28",
-        "@storybook/components": "6.0.28",
-        "@storybook/core-events": "6.0.28",
-        "@storybook/theming": "6.0.28",
-        "core-js": "^3.0.1",
-        "memoizerific": "^1.11.3",
-        "react": "^16.8.3",
-        "regenerator-runtime": "^0.13.3"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.28.tgz",
-          "integrity": "sha512-rp18w+xC5/ATQThnUR6Rv2cg/DAokbV88uZLPCGHX8HsPY2jFPLyCsWnNiIHBF/SfUCjIlljChlX3bzGk+SQUA==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.28",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "react-color": {
-          "version": "2.19.3",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz",
-          "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.15",
-            "lodash-es": "^4.17.15",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.2.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.2.0.tgz",
-          "integrity": "sha512-grajUlVbkx6VdtSxCgzloUIphIZF5bKr21OYMceWPKkniy7H0mRAT/AXPrRtObAe+zUePnNlBwUc4ivVjUGIjw==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@storybook/addon-controls": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-6.0.28.tgz",
-      "integrity": "sha512-wG42u5wkLSuk5M3VPAr6ui/lH75tU1BNGZWtCbDDVPRX/EOF3WxXDhS8gvWefyNcmshnFlbCOhA1Xt7rrLPfpg==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "6.0.28",
-        "@storybook/api": "6.0.28",
-        "@storybook/client-api": "6.0.28",
-        "@storybook/components": "6.0.28",
-        "@storybook/node-logger": "6.0.28",
-        "@storybook/theming": "6.0.28",
-        "core-js": "^3.0.1",
-        "ts-dedent": "^1.1.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channel-postmessage": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.0.28.tgz",
-          "integrity": "sha512-HnLKXPIwZo+JvuG1aYfGX+BoDVpmYbZBlFDSSKroBdCWZRxJJ7OQIOjBWfnf9RxOJqtwEZfVylgtmIUr9ult3Q==",
-          "dev": true,
-          "requires": {
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "qs": "^6.6.0",
-            "telejson": "^5.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.0.28.tgz",
-          "integrity": "sha512-KZ6cw6MU8exXyahHrpNAG5gmSioCXw6I5k0IOH/xzkJpN/9IMbYSbACvxbSKHeCIZorhcWNVWJjth8Kc6dD4Hg==",
-          "dev": true,
-          "requires": {
-            "@storybook/addons": "6.0.28",
-            "@storybook/channel-postmessage": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@types/qs": "^6.9.0",
-            "@types/webpack-env": "^1.15.2",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0",
-            "stable": "^0.1.8",
-            "store2": "^2.7.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.28.tgz",
-          "integrity": "sha512-rp18w+xC5/ATQThnUR6Rv2cg/DAokbV88uZLPCGHX8HsPY2jFPLyCsWnNiIHBF/SfUCjIlljChlX3bzGk+SQUA==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.28",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/node-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.0.28.tgz",
-          "integrity": "sha512-foGRKU9n6tRcN+Os2XJvsWMQQoUubUjuX6/pIyh+rGVOfOxbK56logE/UDOAsdibGMiof9MOldNeGmYS51vPCg==",
-          "dev": true,
-          "requires": {
-            "@types/npmlog": "^4.1.2",
-            "chalk": "^4.0.0",
-            "core-js": "^3.0.1",
-            "npmlog": "^4.1.2",
-            "pretty-hrtime": "^1.0.3"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "react-color": {
-          "version": "2.19.3",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz",
-          "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.15",
-            "lodash-es": "^4.17.15",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.2.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.2.0.tgz",
-          "integrity": "sha512-grajUlVbkx6VdtSxCgzloUIphIZF5bKr21OYMceWPKkniy7H0mRAT/AXPrRtObAe+zUePnNlBwUc4ivVjUGIjw==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@storybook/addon-docs": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-6.0.28.tgz",
-      "integrity": "sha512-JaZTAZsHMuEs3a3Tqk1JOPfVvUmqzmaBrjn4aDv37eNlTGY+IL8kjgy2iQBaotiIDsZjKx6dSMrL/DAxbD2+UQ==",
-      "dev": true,
-      "requires": {
-        "@babel/generator": "^7.9.6",
-        "@babel/parser": "^7.9.6",
-        "@babel/plugin-transform-react-jsx": "^7.3.0",
-        "@babel/preset-env": "^7.9.6",
-        "@jest/transform": "^26.0.0",
-        "@mdx-js/loader": "^1.5.1",
-        "@mdx-js/mdx": "^1.5.1",
-        "@mdx-js/react": "^1.5.1",
-        "@storybook/addons": "6.0.28",
-        "@storybook/api": "6.0.28",
-        "@storybook/client-api": "6.0.28",
-        "@storybook/client-logger": "6.0.28",
-        "@storybook/components": "6.0.28",
-        "@storybook/core": "6.0.28",
-        "@storybook/core-events": "6.0.28",
-        "@storybook/csf": "0.0.1",
-        "@storybook/node-logger": "6.0.28",
-        "@storybook/postinstall": "6.0.28",
-        "@storybook/source-loader": "6.0.28",
-        "@storybook/theming": "6.0.28",
-        "acorn": "^7.1.0",
-        "acorn-jsx": "^5.1.0",
-        "acorn-walk": "^7.0.0",
-        "core-js": "^3.0.1",
-        "doctrine": "^3.0.0",
-        "escodegen": "^1.12.0",
-        "fast-deep-equal": "^3.1.1",
-        "global": "^4.3.2",
-        "html-tags": "^3.1.0",
-        "js-string-escape": "^1.0.1",
-        "lodash": "^4.17.15",
-        "prop-types": "^15.7.2",
-        "react-element-to-jsx-string": "^14.3.1",
-        "regenerator-runtime": "^0.13.3",
-        "remark-external-links": "^6.0.0",
-        "remark-slug": "^6.0.0",
-        "ts-dedent": "^1.1.1",
-        "util-deprecate": "^1.0.2"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
-          "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/compat-data": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz",
-          "integrity": "sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg==",
-          "dev": true
-        },
-        "@babel/helper-annotate-as-pure": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz",
-          "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-builder-binary-assignment-operator-visitor": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz",
-          "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-explode-assignable-expression": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-compilation-targets": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
-          "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
-          "dev": true,
-          "requires": {
-            "@babel/compat-data": "^7.12.5",
-            "@babel/helper-validator-option": "^7.12.1",
-            "browserslist": "^4.14.5",
-            "semver": "^5.5.0"
-          }
-        },
-        "@babel/helper-create-class-features-plugin": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
-          "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-member-expression-to-functions": "^7.12.1",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/helper-replace-supers": "^7.12.1",
-            "@babel/helper-split-export-declaration": "^7.10.4"
-          }
-        },
-        "@babel/helper-create-regexp-features-plugin": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz",
-          "integrity": "sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.4",
-            "@babel/helper-regex": "^7.10.4",
-            "regexpu-core": "^4.7.1"
-          }
-        },
-        "@babel/helper-define-map": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz",
-          "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/types": "^7.10.5",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/helper-explode-assignable-expression": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz",
-          "integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
-          "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
-          "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-hoist-variables": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz",
-          "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
-          "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-module-transforms": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
-          "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-imports": "^7.12.1",
-            "@babel/helper-replace-supers": "^7.12.1",
-            "@babel/helper-simple-access": "^7.12.1",
-            "@babel/helper-split-export-declaration": "^7.11.0",
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.12.1",
-            "@babel/types": "^7.12.1",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz",
-          "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-regex": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz",
-          "integrity": "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==",
-          "dev": true,
-          "requires": {
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/helper-remap-async-to-generator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz",
-          "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.4",
-            "@babel/helper-wrap-function": "^7.10.4",
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
-          "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.12.1",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/traverse": "^7.12.5",
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-simple-access": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
-          "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-skip-transparent-expression-wrappers": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
-          "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz",
-          "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.11.0"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/helper-wrap-function": {
-          "version": "7.12.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz",
-          "integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/plugin-proposal-async-generator-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz",
-          "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-remap-async-to-generator": "^7.12.1",
-            "@babel/plugin-syntax-async-generators": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-class-properties": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
-          "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-class-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-proposal-dynamic-import": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz",
-          "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-dynamic-import": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-export-namespace-from": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz",
-          "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
-          }
-        },
-        "@babel/plugin-proposal-json-strings": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz",
-          "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-json-strings": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-logical-assignment-operators": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz",
-          "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
-          }
-        },
-        "@babel/plugin-proposal-nullish-coalescing-operator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
-          "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-numeric-separator": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
-          "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-numeric-separator": "^7.10.4"
-          }
-        },
-        "@babel/plugin-proposal-object-rest-spread": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
-          "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
-            "@babel/plugin-transform-parameters": "^7.12.1"
-          }
-        },
-        "@babel/plugin-proposal-optional-catch-binding": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz",
-          "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-optional-chaining": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz",
-          "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
-            "@babel/plugin-syntax-optional-chaining": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-private-methods": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz",
-          "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-class-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-proposal-unicode-property-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz",
-          "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-class-properties": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz",
-          "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-logical-assignment-operators": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
-          "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-numeric-separator": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
-          "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-top-level-await": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz",
-          "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-arrow-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz",
-          "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-async-to-generator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz",
-          "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-imports": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-remap-async-to-generator": "^7.12.1"
-          }
-        },
-        "@babel/plugin-transform-block-scoped-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz",
-          "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-block-scoping": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz",
-          "integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-classes": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz",
-          "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.4",
-            "@babel/helper-define-map": "^7.10.4",
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-replace-supers": "^7.12.1",
-            "@babel/helper-split-export-declaration": "^7.10.4",
-            "globals": "^11.1.0"
-          }
-        },
-        "@babel/plugin-transform-computed-properties": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz",
-          "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-destructuring": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz",
-          "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-dotall-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz",
-          "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-duplicate-keys": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz",
-          "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-exponentiation-operator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz",
-          "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-for-of": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz",
-          "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-function-name": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz",
-          "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz",
-          "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-member-expression-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz",
-          "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-modules-amd": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz",
-          "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-transforms": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "babel-plugin-dynamic-import-node": "^2.3.3"
-          }
-        },
-        "@babel/plugin-transform-modules-commonjs": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz",
-          "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-transforms": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-simple-access": "^7.12.1",
-            "babel-plugin-dynamic-import-node": "^2.3.3"
-          }
-        },
-        "@babel/plugin-transform-modules-systemjs": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz",
-          "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-hoist-variables": "^7.10.4",
-            "@babel/helper-module-transforms": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "babel-plugin-dynamic-import-node": "^2.3.3"
-          }
-        },
-        "@babel/plugin-transform-modules-umd": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz",
-          "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-transforms": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-named-capturing-groups-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz",
-          "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1"
-          }
-        },
-        "@babel/plugin-transform-new-target": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz",
-          "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-object-super": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz",
-          "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-replace-supers": "^7.12.1"
-          }
-        },
-        "@babel/plugin-transform-parameters": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
-          "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-property-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz",
-          "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-regenerator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz",
-          "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==",
-          "dev": true,
-          "requires": {
-            "regenerator-transform": "^0.14.2"
-          }
-        },
-        "@babel/plugin-transform-reserved-words": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz",
-          "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-shorthand-properties": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz",
-          "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-spread": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
-          "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
-          }
-        },
-        "@babel/plugin-transform-sticky-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz",
-          "integrity": "sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-regex": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-template-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz",
-          "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-typeof-symbol": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz",
-          "integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-unicode-escapes": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz",
-          "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-unicode-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz",
-          "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/preset-env": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz",
-          "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==",
-          "dev": true,
-          "requires": {
-            "@babel/compat-data": "^7.12.1",
-            "@babel/helper-compilation-targets": "^7.12.1",
-            "@babel/helper-module-imports": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-validator-option": "^7.12.1",
-            "@babel/plugin-proposal-async-generator-functions": "^7.12.1",
-            "@babel/plugin-proposal-class-properties": "^7.12.1",
-            "@babel/plugin-proposal-dynamic-import": "^7.12.1",
-            "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
-            "@babel/plugin-proposal-json-strings": "^7.12.1",
-            "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
-            "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
-            "@babel/plugin-proposal-numeric-separator": "^7.12.1",
-            "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
-            "@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
-            "@babel/plugin-proposal-optional-chaining": "^7.12.1",
-            "@babel/plugin-proposal-private-methods": "^7.12.1",
-            "@babel/plugin-proposal-unicode-property-regex": "^7.12.1",
-            "@babel/plugin-syntax-async-generators": "^7.8.0",
-            "@babel/plugin-syntax-class-properties": "^7.12.1",
-            "@babel/plugin-syntax-dynamic-import": "^7.8.0",
-            "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
-            "@babel/plugin-syntax-json-strings": "^7.8.0",
-            "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
-            "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
-            "@babel/plugin-syntax-numeric-separator": "^7.10.4",
-            "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
-            "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
-            "@babel/plugin-syntax-optional-chaining": "^7.8.0",
-            "@babel/plugin-syntax-top-level-await": "^7.12.1",
-            "@babel/plugin-transform-arrow-functions": "^7.12.1",
-            "@babel/plugin-transform-async-to-generator": "^7.12.1",
-            "@babel/plugin-transform-block-scoped-functions": "^7.12.1",
-            "@babel/plugin-transform-block-scoping": "^7.12.1",
-            "@babel/plugin-transform-classes": "^7.12.1",
-            "@babel/plugin-transform-computed-properties": "^7.12.1",
-            "@babel/plugin-transform-destructuring": "^7.12.1",
-            "@babel/plugin-transform-dotall-regex": "^7.12.1",
-            "@babel/plugin-transform-duplicate-keys": "^7.12.1",
-            "@babel/plugin-transform-exponentiation-operator": "^7.12.1",
-            "@babel/plugin-transform-for-of": "^7.12.1",
-            "@babel/plugin-transform-function-name": "^7.12.1",
-            "@babel/plugin-transform-literals": "^7.12.1",
-            "@babel/plugin-transform-member-expression-literals": "^7.12.1",
-            "@babel/plugin-transform-modules-amd": "^7.12.1",
-            "@babel/plugin-transform-modules-commonjs": "^7.12.1",
-            "@babel/plugin-transform-modules-systemjs": "^7.12.1",
-            "@babel/plugin-transform-modules-umd": "^7.12.1",
-            "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1",
-            "@babel/plugin-transform-new-target": "^7.12.1",
-            "@babel/plugin-transform-object-super": "^7.12.1",
-            "@babel/plugin-transform-parameters": "^7.12.1",
-            "@babel/plugin-transform-property-literals": "^7.12.1",
-            "@babel/plugin-transform-regenerator": "^7.12.1",
-            "@babel/plugin-transform-reserved-words": "^7.12.1",
-            "@babel/plugin-transform-shorthand-properties": "^7.12.1",
-            "@babel/plugin-transform-spread": "^7.12.1",
-            "@babel/plugin-transform-sticky-regex": "^7.12.1",
-            "@babel/plugin-transform-template-literals": "^7.12.1",
-            "@babel/plugin-transform-typeof-symbol": "^7.12.1",
-            "@babel/plugin-transform-unicode-escapes": "^7.12.1",
-            "@babel/plugin-transform-unicode-regex": "^7.12.1",
-            "@babel/preset-modules": "^0.1.3",
-            "@babel/types": "^7.12.1",
-            "core-js-compat": "^3.6.2",
-            "semver": "^5.5.0"
-          }
-        },
-        "@babel/register": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.12.1.tgz",
-          "integrity": "sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==",
-          "dev": true,
-          "requires": {
-            "find-cache-dir": "^2.0.0",
-            "lodash": "^4.17.19",
-            "make-dir": "^2.1.0",
-            "pirates": "^4.0.0",
-            "source-map-support": "^0.5.16"
-          }
-        },
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@babel/template": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
-          "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          },
-          "dependencies": {
-            "@babel/parser": {
-              "version": "7.12.5",
-              "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
-              "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==",
-              "dev": true
-            }
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
-          "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/generator": "^7.12.5",
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-split-export-declaration": "^7.11.0",
-            "@babel/parser": "^7.12.5",
-            "@babel/types": "^7.12.5",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          },
-          "dependencies": {
-            "@babel/generator": {
-              "version": "7.12.5",
-              "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
-              "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
-              "dev": true,
-              "requires": {
-                "@babel/types": "^7.12.5",
-                "jsesc": "^2.5.1",
-                "source-map": "^0.5.0"
-              }
-            },
-            "@babel/parser": {
-              "version": "7.12.5",
-              "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
-              "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==",
-              "dev": true
-            }
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.6",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
-          "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channel-postmessage": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.0.28.tgz",
-          "integrity": "sha512-HnLKXPIwZo+JvuG1aYfGX+BoDVpmYbZBlFDSSKroBdCWZRxJJ7OQIOjBWfnf9RxOJqtwEZfVylgtmIUr9ult3Q==",
-          "dev": true,
-          "requires": {
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "qs": "^6.6.0",
-            "telejson": "^5.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.0.28.tgz",
-          "integrity": "sha512-KZ6cw6MU8exXyahHrpNAG5gmSioCXw6I5k0IOH/xzkJpN/9IMbYSbACvxbSKHeCIZorhcWNVWJjth8Kc6dD4Hg==",
-          "dev": true,
-          "requires": {
-            "@storybook/addons": "6.0.28",
-            "@storybook/channel-postmessage": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@types/qs": "^6.9.0",
-            "@types/webpack-env": "^1.15.2",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0",
-            "stable": "^0.1.8",
-            "store2": "^2.7.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.28.tgz",
-          "integrity": "sha512-rp18w+xC5/ATQThnUR6Rv2cg/DAokbV88uZLPCGHX8HsPY2jFPLyCsWnNiIHBF/SfUCjIlljChlX3bzGk+SQUA==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.28",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core/-/core-6.0.28.tgz",
-          "integrity": "sha512-NIEeU4NXl6vK6NVIisR90QYWomTexXEmF9cFcr02DcxKwFTNixSfBuquDFt6o7OTLNgmUQ5r2y+fXlQ4vDTG4w==",
-          "dev": true,
-          "requires": {
-            "@babel/plugin-proposal-class-properties": "^7.8.3",
-            "@babel/plugin-proposal-decorators": "^7.8.3",
-            "@babel/plugin-proposal-export-default-from": "^7.8.3",
-            "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
-            "@babel/plugin-proposal-object-rest-spread": "^7.9.6",
-            "@babel/plugin-proposal-optional-chaining": "^7.10.1",
-            "@babel/plugin-proposal-private-methods": "^7.8.3",
-            "@babel/plugin-syntax-dynamic-import": "^7.8.3",
-            "@babel/plugin-transform-arrow-functions": "^7.8.3",
-            "@babel/plugin-transform-block-scoping": "^7.8.3",
-            "@babel/plugin-transform-classes": "^7.9.5",
-            "@babel/plugin-transform-destructuring": "^7.9.5",
-            "@babel/plugin-transform-for-of": "^7.9.0",
-            "@babel/plugin-transform-parameters": "^7.9.5",
-            "@babel/plugin-transform-shorthand-properties": "^7.8.3",
-            "@babel/plugin-transform-spread": "^7.8.3",
-            "@babel/plugin-transform-template-literals": "^7.8.3",
-            "@babel/preset-env": "^7.9.6",
-            "@babel/preset-react": "^7.8.3",
-            "@babel/preset-typescript": "^7.9.0",
-            "@babel/register": "^7.10.5",
-            "@storybook/addons": "6.0.28",
-            "@storybook/api": "6.0.28",
-            "@storybook/channel-postmessage": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-api": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/components": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/node-logger": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@storybook/ui": "6.0.28",
-            "@types/glob-base": "^0.3.0",
-            "@types/micromatch": "^4.0.1",
-            "@types/node-fetch": "^2.5.4",
-            "airbnb-js-shims": "^2.2.1",
-            "ansi-to-html": "^0.6.11",
-            "autoprefixer": "^9.7.2",
-            "babel-loader": "^8.0.6",
-            "babel-plugin-emotion": "^10.0.20",
-            "babel-plugin-macros": "^2.8.0",
-            "babel-preset-minify": "^0.5.0 || 0.6.0-alpha.5",
-            "better-opn": "^2.0.0",
-            "boxen": "^4.1.0",
-            "case-sensitive-paths-webpack-plugin": "^2.2.0",
-            "chalk": "^4.0.0",
-            "cli-table3": "0.6.0",
-            "commander": "^5.0.0",
-            "core-js": "^3.0.1",
-            "css-loader": "^3.5.3",
-            "detect-port": "^1.3.0",
-            "dotenv-webpack": "^1.7.0",
-            "ejs": "^3.1.2",
-            "express": "^4.17.0",
-            "file-loader": "^6.0.0",
-            "file-system-cache": "^1.0.5",
-            "find-up": "^4.1.0",
-            "fork-ts-checker-webpack-plugin": "^4.1.4",
-            "fs-extra": "^9.0.0",
-            "glob": "^7.1.6",
-            "glob-base": "^0.3.0",
-            "glob-promise": "^3.4.0",
-            "global": "^4.3.2",
-            "html-webpack-plugin": "^4.2.1",
-            "inquirer": "^7.0.0",
-            "interpret": "^2.0.0",
-            "ip": "^1.1.5",
-            "json5": "^2.1.1",
-            "lazy-universal-dotenv": "^3.0.1",
-            "micromatch": "^4.0.2",
-            "node-fetch": "^2.6.0",
-            "pkg-dir": "^4.2.0",
-            "pnp-webpack-plugin": "1.6.4",
-            "postcss-flexbugs-fixes": "^4.1.0",
-            "postcss-loader": "^3.0.0",
-            "pretty-hrtime": "^1.0.3",
-            "qs": "^6.6.0",
-            "raw-loader": "^4.0.1",
-            "react-dev-utils": "^10.0.0",
-            "regenerator-runtime": "^0.13.3",
-            "resolve-from": "^5.0.0",
-            "serve-favicon": "^2.5.0",
-            "shelljs": "^0.8.3",
-            "stable": "^0.1.8",
-            "style-loader": "^1.2.1",
-            "terser-webpack-plugin": "^3.0.0",
-            "ts-dedent": "^1.1.1",
-            "unfetch": "^4.1.0",
-            "url-loader": "^4.0.0",
-            "util-deprecate": "^1.0.2",
-            "webpack": "^4.43.0",
-            "webpack-dev-middleware": "^3.7.0",
-            "webpack-hot-middleware": "^2.25.0",
-            "webpack-virtual-modules": "^0.2.2"
-          },
-          "dependencies": {
-            "ansi-styles": {
-              "version": "4.3.0",
-              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-              "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-              "dev": true,
-              "requires": {
-                "color-convert": "^2.0.1"
-              }
-            },
-            "babel-plugin-emotion": {
-              "version": "10.0.33",
-              "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz",
-              "integrity": "sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-module-imports": "^7.0.0",
-                "@emotion/hash": "0.8.0",
-                "@emotion/memoize": "0.7.4",
-                "@emotion/serialize": "^0.11.16",
-                "babel-plugin-macros": "^2.0.0",
-                "babel-plugin-syntax-jsx": "^6.18.0",
-                "convert-source-map": "^1.5.0",
-                "escape-string-regexp": "^1.0.5",
-                "find-root": "^1.1.0",
-                "source-map": "^0.5.7"
-              }
-            },
-            "chalk": {
-              "version": "4.1.0",
-              "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-              "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-              "dev": true,
-              "requires": {
-                "ansi-styles": "^4.1.0",
-                "supports-color": "^7.1.0"
-              }
-            },
-            "color-convert": {
-              "version": "2.0.1",
-              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-              "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-              "dev": true,
-              "requires": {
-                "color-name": "~1.1.4"
-              }
-            },
-            "has-flag": {
-              "version": "4.0.0",
-              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-              "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-              "dev": true
-            },
-            "supports-color": {
-              "version": "7.2.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-              "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^4.0.0"
-              }
-            }
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/node-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.0.28.tgz",
-          "integrity": "sha512-foGRKU9n6tRcN+Os2XJvsWMQQoUubUjuX6/pIyh+rGVOfOxbK56logE/UDOAsdibGMiof9MOldNeGmYS51vPCg==",
-          "dev": true,
-          "requires": {
-            "@types/npmlog": "^4.1.2",
-            "chalk": "^4.0.0",
-            "core-js": "^3.0.1",
-            "npmlog": "^4.1.2",
-            "pretty-hrtime": "^1.0.3"
-          },
-          "dependencies": {
-            "ansi-styles": {
-              "version": "4.3.0",
-              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-              "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-              "dev": true,
-              "requires": {
-                "color-convert": "^2.0.1"
-              }
-            },
-            "chalk": {
-              "version": "4.1.0",
-              "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-              "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-              "dev": true,
-              "requires": {
-                "ansi-styles": "^4.1.0",
-                "supports-color": "^7.1.0"
-              }
-            },
-            "color-convert": {
-              "version": "2.0.1",
-              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-              "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-              "dev": true,
-              "requires": {
-                "color-name": "~1.1.4"
-              }
-            },
-            "has-flag": {
-              "version": "4.0.0",
-              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-              "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-              "dev": true
-            },
-            "supports-color": {
-              "version": "7.2.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-              "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^4.0.0"
-              }
-            }
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/ui": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/ui/-/ui-6.0.28.tgz",
-          "integrity": "sha512-LGYW+hGiRu+5QRrZXamEt7aoHWQMfYWAaSO8hJldD5lfIXUXcoWUm0Mx7CRpUhw22LzmidrwZijyxlTnuTRZyw==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@storybook/addons": "6.0.28",
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/components": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/markdown-to-jsx": "^6.11.0",
-            "copy-to-clipboard": "^3.0.8",
-            "core-js": "^3.0.1",
-            "core-js-pure": "^3.0.1",
-            "emotion-theming": "^10.0.19",
-            "fuse.js": "^3.6.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "qs": "^6.6.0",
-            "react": "^16.8.3",
-            "react-dom": "^16.8.3",
-            "react-draggable": "^4.0.3",
-            "react-helmet-async": "^1.0.2",
-            "react-hotkeys": "2.0.0",
-            "react-sizeme": "^2.6.7",
-            "regenerator-runtime": "^0.13.3",
-            "resolve-from": "^5.0.0",
-            "store2": "^2.7.1"
-          }
-        },
-        "@types/json-schema": {
-          "version": "7.0.6",
-          "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz",
-          "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==",
-          "dev": true
-        },
-        "accepts": {
-          "version": "1.3.7",
-          "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
-          "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
-          "dev": true,
-          "requires": {
-            "mime-types": "~2.1.24",
-            "negotiator": "0.6.2"
-          }
-        },
-        "ajv": {
-          "version": "6.12.6",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
-          "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ajv-keywords": {
-          "version": "3.5.2",
-          "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-          "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "array-flatten": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
-          "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
-          "dev": true
-        },
-        "babel-plugin-dynamic-import-node": {
-          "version": "2.3.3",
-          "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
-          "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
-          "dev": true,
-          "requires": {
-            "object.assign": "^4.1.0"
-          }
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "body-parser": {
-          "version": "1.19.0",
-          "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
-          "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
-          "dev": true,
-          "requires": {
-            "bytes": "3.1.0",
-            "content-type": "~1.0.4",
-            "debug": "2.6.9",
-            "depd": "~1.1.2",
-            "http-errors": "1.7.2",
-            "iconv-lite": "0.4.24",
-            "on-finished": "~2.3.0",
-            "qs": "6.7.0",
-            "raw-body": "2.4.0",
-            "type-is": "~1.6.17"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              }
-            },
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-              "dev": true
-            },
-            "qs": {
-              "version": "6.7.0",
-              "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
-              "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
-              "dev": true
-            }
-          }
-        },
-        "browserslist": {
-          "version": "4.14.6",
-          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.6.tgz",
-          "integrity": "sha512-zeFYcUo85ENhc/zxHbiIp0LGzzTrE2Pv2JhxvS7kpUb9Q9D38kUX6Bie7pGutJ/5iF5rOxE7CepAuWD56xJ33A==",
-          "dev": true,
-          "requires": {
-            "caniuse-lite": "^1.0.30001154",
-            "electron-to-chromium": "^1.3.585",
-            "escalade": "^3.1.1",
-            "node-releases": "^1.1.65"
-          }
-        },
-        "bytes": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
-          "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==",
-          "dev": true
-        },
-        "cacache": {
-          "version": "15.0.5",
-          "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz",
-          "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==",
-          "dev": true,
-          "requires": {
-            "@npmcli/move-file": "^1.0.1",
-            "chownr": "^2.0.0",
-            "fs-minipass": "^2.0.0",
-            "glob": "^7.1.4",
-            "infer-owner": "^1.0.4",
-            "lru-cache": "^6.0.0",
-            "minipass": "^3.1.1",
-            "minipass-collect": "^1.0.2",
-            "minipass-flush": "^1.0.5",
-            "minipass-pipeline": "^1.2.2",
-            "mkdirp": "^1.0.3",
-            "p-map": "^4.0.0",
-            "promise-inflight": "^1.0.1",
-            "rimraf": "^3.0.2",
-            "ssri": "^8.0.0",
-            "tar": "^6.0.2",
-            "unique-filename": "^1.1.1"
-          }
-        },
-        "caniuse-lite": {
-          "version": "1.0.30001156",
-          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001156.tgz",
-          "integrity": "sha512-z7qztybA2eFZTB6Z3yvaQBIoJpQtsewRD74adw2UbRWwsRq3jIPvgrQGawBMbfafekQaD21FWuXNcywtTDGGCw==",
-          "dev": true
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "chownr": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
-          "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
-          "dev": true
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "commander": {
-          "version": "5.1.0",
-          "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
-          "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
-          "dev": true
-        },
-        "content-disposition": {
-          "version": "0.5.3",
-          "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
-          "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "5.1.2"
-          }
-        },
-        "cookie": {
-          "version": "0.4.0",
-          "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
-          "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==",
-          "dev": true
-        },
-        "css-loader": {
-          "version": "3.6.0",
-          "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz",
-          "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==",
-          "dev": true,
-          "requires": {
-            "camelcase": "^5.3.1",
-            "cssesc": "^3.0.0",
-            "icss-utils": "^4.1.1",
-            "loader-utils": "^1.2.3",
-            "normalize-path": "^3.0.0",
-            "postcss": "^7.0.32",
-            "postcss-modules-extract-imports": "^2.0.0",
-            "postcss-modules-local-by-default": "^3.0.2",
-            "postcss-modules-scope": "^2.2.0",
-            "postcss-modules-values": "^3.0.0",
-            "postcss-value-parser": "^4.1.0",
-            "schema-utils": "^2.7.0",
-            "semver": "^6.3.0"
-          },
-          "dependencies": {
-            "semver": {
-              "version": "6.3.0",
-              "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-              "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-              "dev": true
-            }
-          }
-        },
-        "cssesc": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
-          "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
-          "dev": true
-        },
-        "debug": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
-          "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "doctrine": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
-          "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
-          "dev": true,
-          "requires": {
-            "esutils": "^2.0.2"
-          }
-        },
-        "ejs": {
-          "version": "3.1.5",
-          "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.5.tgz",
-          "integrity": "sha512-dldq3ZfFtgVTJMLjOe+/3sROTzALlL9E34V4/sDtUd/KlBSS0s6U1/+WPE1B4sj9CXHJpL1M6rhNJnc9Wbal9w==",
-          "dev": true,
-          "requires": {
-            "jake": "^10.6.1"
-          }
-        },
-        "electron-to-chromium": {
-          "version": "1.3.588",
-          "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.588.tgz",
-          "integrity": "sha512-0zr+ZfytnLeJZxGgmEpPTcItu5Mm4A5zHPZXLfHcGp0mdsk95rmD7ePNewYtK1yIdLbk8Z1U2oTRRfOtR4gbYg==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "escalade": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
-          "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
-          "dev": true
-        },
-        "escodegen": {
-          "version": "1.14.3",
-          "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
-          "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
-          "dev": true,
-          "requires": {
-            "esprima": "^4.0.1",
-            "estraverse": "^4.2.0",
-            "esutils": "^2.0.2",
-            "optionator": "^0.8.1",
-            "source-map": "~0.6.1"
-          },
-          "dependencies": {
-            "source-map": {
-              "version": "0.6.1",
-              "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-              "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-              "dev": true,
-              "optional": true
-            }
-          }
-        },
-        "esprima": {
-          "version": "4.0.1",
-          "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
-          "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
-          "dev": true
-        },
-        "express": {
-          "version": "4.17.1",
-          "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
-          "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
-          "dev": true,
-          "requires": {
-            "accepts": "~1.3.7",
-            "array-flatten": "1.1.1",
-            "body-parser": "1.19.0",
-            "content-disposition": "0.5.3",
-            "content-type": "~1.0.4",
-            "cookie": "0.4.0",
-            "cookie-signature": "1.0.6",
-            "debug": "2.6.9",
-            "depd": "~1.1.2",
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "etag": "~1.8.1",
-            "finalhandler": "~1.1.2",
-            "fresh": "0.5.2",
-            "merge-descriptors": "1.0.1",
-            "methods": "~1.1.2",
-            "on-finished": "~2.3.0",
-            "parseurl": "~1.3.3",
-            "path-to-regexp": "0.1.7",
-            "proxy-addr": "~2.0.5",
-            "qs": "6.7.0",
-            "range-parser": "~1.2.1",
-            "safe-buffer": "5.1.2",
-            "send": "0.17.1",
-            "serve-static": "1.14.1",
-            "setprototypeof": "1.1.1",
-            "statuses": "~1.5.0",
-            "type-is": "~1.6.18",
-            "utils-merge": "1.0.1",
-            "vary": "~1.1.2"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              }
-            },
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-              "dev": true
-            },
-            "qs": {
-              "version": "6.7.0",
-              "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
-              "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
-              "dev": true
-            }
-          }
-        },
-        "extend-shallow": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
-          "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
-          "dev": true,
-          "requires": {
-            "assign-symbols": "^1.0.0",
-            "is-extendable": "^1.0.1"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "finalhandler": {
-          "version": "1.1.2",
-          "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
-          "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
-          "dev": true,
-          "requires": {
-            "debug": "2.6.9",
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "on-finished": "~2.3.0",
-            "parseurl": "~1.3.3",
-            "statuses": "~1.5.0",
-            "unpipe": "~1.0.0"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              }
-            },
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-              "dev": true
-            }
-          }
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "fork-ts-checker-webpack-plugin": {
-          "version": "4.1.6",
-          "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz",
-          "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.5.5",
-            "chalk": "^2.4.1",
-            "micromatch": "^3.1.10",
-            "minimatch": "^3.0.4",
-            "semver": "^5.6.0",
-            "tapable": "^1.0.0",
-            "worker-rpc": "^0.1.0"
-          },
-          "dependencies": {
-            "micromatch": {
-              "version": "3.1.10",
-              "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
-              "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
-              "dev": true,
-              "requires": {
-                "arr-diff": "^4.0.0",
-                "array-unique": "^0.3.2",
-                "braces": "^2.3.1",
-                "define-property": "^2.0.2",
-                "extend-shallow": "^3.0.2",
-                "extglob": "^2.0.4",
-                "fragment-cache": "^0.2.1",
-                "kind-of": "^6.0.2",
-                "nanomatch": "^1.2.9",
-                "object.pick": "^1.3.0",
-                "regex-not": "^1.0.0",
-                "snapdragon": "^0.8.1",
-                "to-regex": "^3.0.2"
-              }
-            }
-          }
-        },
-        "fs-extra": {
-          "version": "9.0.1",
-          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz",
-          "integrity": "sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==",
-          "dev": true,
-          "requires": {
-            "at-least-node": "^1.0.0",
-            "graceful-fs": "^4.2.0",
-            "jsonfile": "^6.0.1",
-            "universalify": "^1.0.0"
-          }
-        },
-        "fuse.js": {
-          "version": "3.6.1",
-          "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-3.6.1.tgz",
-          "integrity": "sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==",
-          "dev": true
-        },
-        "glob": {
-          "version": "7.1.6",
-          "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
-          "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
-          "dev": true,
-          "requires": {
-            "fs.realpath": "^1.0.0",
-            "inflight": "^1.0.4",
-            "inherits": "2",
-            "minimatch": "^3.0.4",
-            "once": "^1.3.0",
-            "path-is-absolute": "^1.0.0"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "http-errors": {
-          "version": "1.7.2",
-          "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
-          "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
-          "dev": true,
-          "requires": {
-            "depd": "~1.1.2",
-            "inherits": "2.0.3",
-            "setprototypeof": "1.1.1",
-            "statuses": ">= 1.5.0 < 2",
-            "toidentifier": "1.0.0"
-          }
-        },
-        "icss-utils": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
-          "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==",
-          "dev": true,
-          "requires": {
-            "postcss": "^7.0.14"
-          }
-        },
-        "interpret": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz",
-          "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==",
-          "dev": true
-        },
-        "ipaddr.js": {
-          "version": "1.9.1",
-          "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
-          "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
-          "dev": true
-        },
-        "is-extendable": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
-          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
-          "dev": true,
-          "requires": {
-            "is-plain-object": "^2.0.4"
-          }
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          },
-          "dependencies": {
-            "has-flag": {
-              "version": "4.0.0",
-              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-              "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-              "dev": true
-            },
-            "supports-color": {
-              "version": "7.2.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-              "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^4.0.0"
-              }
-            }
-          }
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "jsonfile": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
-          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
-          "dev": true,
-          "requires": {
-            "graceful-fs": "^4.1.6",
-            "universalify": "^2.0.0"
-          },
-          "dependencies": {
-            "universalify": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
-              "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
-              "dev": true
-            }
-          }
-        },
-        "kind-of": {
-          "version": "6.0.3",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
-          "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
-          "dev": true
-        },
-        "loader-utils": {
-          "version": "1.4.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
-          "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^1.0.1"
-          },
-          "dependencies": {
-            "json5": {
-              "version": "1.0.1",
-              "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-              "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-              "dev": true,
-              "requires": {
-                "minimist": "^1.2.0"
-              }
-            }
-          }
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "lru-cache": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
-          "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-          "dev": true,
-          "requires": {
-            "yallist": "^4.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          },
-          "dependencies": {
-            "braces": {
-              "version": "3.0.2",
-              "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-              "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-              "dev": true,
-              "requires": {
-                "fill-range": "^7.0.1"
-              }
-            }
-          }
-        },
-        "mime-db": {
-          "version": "1.44.0",
-          "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
-          "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==",
-          "dev": true
-        },
-        "mime-types": {
-          "version": "2.1.27",
-          "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
-          "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
-          "dev": true,
-          "requires": {
-            "mime-db": "1.44.0"
-          }
-        },
-        "minizlib": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
-          "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
-          "dev": true,
-          "requires": {
-            "minipass": "^3.0.0",
-            "yallist": "^4.0.0"
-          }
-        },
-        "mkdirp": {
-          "version": "1.0.4",
-          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
-          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
-          "dev": true
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "negotiator": {
-          "version": "0.6.2",
-          "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
-          "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
-          "dev": true
-        },
-        "node-releases": {
-          "version": "1.1.65",
-          "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.65.tgz",
-          "integrity": "sha512-YpzJOe2WFIW0V4ZkJQd/DGR/zdVwc/pI4Nl1CZrBO19FdRcSTmsuhdttw9rsTzzJLrNcSloLiBbEYx1C4f6gpA==",
-          "dev": true
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-map": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
-          "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
-          "dev": true,
-          "requires": {
-            "aggregate-error": "^3.0.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "parseurl": {
-          "version": "1.3.3",
-          "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
-          "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "path-to-regexp": {
-          "version": "0.1.7",
-          "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
-          "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=",
-          "dev": true
-        },
-        "pkg-dir": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
-          "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
-          "dev": true,
-          "requires": {
-            "find-up": "^4.0.0"
-          }
-        },
-        "postcss": {
-          "version": "7.0.35",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz",
-          "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          },
-          "dependencies": {
-            "source-map": {
-              "version": "0.6.1",
-              "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-              "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-              "dev": true
-            },
-            "supports-color": {
-              "version": "6.1.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-              "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss-modules-extract-imports": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
-          "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
-          "dev": true,
-          "requires": {
-            "postcss": "^7.0.5"
-          }
-        },
-        "postcss-modules-local-by-default": {
-          "version": "3.0.3",
-          "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz",
-          "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==",
-          "dev": true,
-          "requires": {
-            "icss-utils": "^4.1.1",
-            "postcss": "^7.0.32",
-            "postcss-selector-parser": "^6.0.2",
-            "postcss-value-parser": "^4.1.0"
-          }
-        },
-        "postcss-modules-scope": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz",
-          "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==",
-          "dev": true,
-          "requires": {
-            "postcss": "^7.0.6",
-            "postcss-selector-parser": "^6.0.0"
-          }
-        },
-        "postcss-modules-values": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
-          "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==",
-          "dev": true,
-          "requires": {
-            "icss-utils": "^4.0.0",
-            "postcss": "^7.0.6"
-          }
-        },
-        "postcss-selector-parser": {
-          "version": "6.0.4",
-          "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz",
-          "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==",
-          "dev": true,
-          "requires": {
-            "cssesc": "^3.0.0",
-            "indexes-of": "^1.0.1",
-            "uniq": "^1.0.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "postcss-value-parser": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
-          "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==",
-          "dev": true
-        },
-        "proxy-addr": {
-          "version": "2.0.6",
-          "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz",
-          "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==",
-          "dev": true,
-          "requires": {
-            "forwarded": "~0.1.2",
-            "ipaddr.js": "1.9.1"
-          }
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "range-parser": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
-          "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
-          "dev": true
-        },
-        "raw-body": {
-          "version": "2.4.0",
-          "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz",
-          "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==",
-          "dev": true,
-          "requires": {
-            "bytes": "3.1.0",
-            "http-errors": "1.7.2",
-            "iconv-lite": "0.4.24",
-            "unpipe": "1.0.0"
-          }
-        },
-        "react-color": {
-          "version": "2.19.3",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz",
-          "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.15",
-            "lodash-es": "^4.17.15",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.2.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.2.0.tgz",
-          "integrity": "sha512-grajUlVbkx6VdtSxCgzloUIphIZF5bKr21OYMceWPKkniy7H0mRAT/AXPrRtObAe+zUePnNlBwUc4ivVjUGIjw==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "regexpu-core": {
-          "version": "4.7.1",
-          "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
-          "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==",
-          "dev": true,
-          "requires": {
-            "regenerate": "^1.4.0",
-            "regenerate-unicode-properties": "^8.2.0",
-            "regjsgen": "^0.5.1",
-            "regjsparser": "^0.6.4",
-            "unicode-match-property-ecmascript": "^1.0.4",
-            "unicode-match-property-value-ecmascript": "^1.2.0"
-          }
-        },
-        "regjsgen": {
-          "version": "0.5.2",
-          "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
-          "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
-          "dev": true
-        },
-        "regjsparser": {
-          "version": "0.6.4",
-          "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
-          "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
-          "dev": true,
-          "requires": {
-            "jsesc": "~0.5.0"
-          },
-          "dependencies": {
-            "jsesc": {
-              "version": "0.5.0",
-              "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
-              "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
-              "dev": true
-            }
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "rimraf": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
-          "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
-          "dev": true,
-          "requires": {
-            "glob": "^7.1.3"
-          }
-        },
-        "schema-utils": {
-          "version": "2.7.1",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
-          "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
-          "dev": true,
-          "requires": {
-            "@types/json-schema": "^7.0.5",
-            "ajv": "^6.12.4",
-            "ajv-keywords": "^3.5.2"
-          }
-        },
-        "send": {
-          "version": "0.17.1",
-          "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz",
-          "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==",
-          "dev": true,
-          "requires": {
-            "debug": "2.6.9",
-            "depd": "~1.1.2",
-            "destroy": "~1.0.4",
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "etag": "~1.8.1",
-            "fresh": "0.5.2",
-            "http-errors": "~1.7.2",
-            "mime": "1.6.0",
-            "ms": "2.1.1",
-            "on-finished": "~2.3.0",
-            "range-parser": "~1.2.1",
-            "statuses": "~1.5.0"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              },
-              "dependencies": {
-                "ms": {
-                  "version": "2.0.0",
-                  "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-                  "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-                  "dev": true
-                }
-              }
-            },
-            "ms": {
-              "version": "2.1.1",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
-              "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
-              "dev": true
-            }
-          }
-        },
-        "serve-static": {
-          "version": "1.14.1",
-          "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz",
-          "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==",
-          "dev": true,
-          "requires": {
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "parseurl": "~1.3.3",
-            "send": "0.17.1"
-          }
-        },
-        "setprototypeof": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
-          "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==",
-          "dev": true
-        },
-        "ssri": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.0.tgz",
-          "integrity": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==",
-          "dev": true,
-          "requires": {
-            "minipass": "^3.1.1"
-          }
-        },
-        "statuses": {
-          "version": "1.5.0",
-          "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
-          "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
-          "dev": true
-        },
-        "style-loader": {
-          "version": "1.3.0",
-          "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz",
-          "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==",
-          "dev": true,
-          "requires": {
-            "loader-utils": "^2.0.0",
-            "schema-utils": "^2.7.0"
-          },
-          "dependencies": {
-            "loader-utils": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-              "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-              "dev": true,
-              "requires": {
-                "big.js": "^5.2.2",
-                "emojis-list": "^3.0.0",
-                "json5": "^2.1.2"
-              }
-            }
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "tapable": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
-          "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
-          "dev": true
-        },
-        "tar": {
-          "version": "6.0.5",
-          "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz",
-          "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==",
-          "dev": true,
-          "requires": {
-            "chownr": "^2.0.0",
-            "fs-minipass": "^2.0.0",
-            "minipass": "^3.0.0",
-            "minizlib": "^2.1.1",
-            "mkdirp": "^1.0.3",
-            "yallist": "^4.0.0"
-          }
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        },
-        "terser": {
-          "version": "4.8.0",
-          "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz",
-          "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==",
-          "dev": true,
-          "requires": {
-            "commander": "^2.20.0",
-            "source-map": "~0.6.1",
-            "source-map-support": "~0.5.12"
-          },
-          "dependencies": {
-            "commander": {
-              "version": "2.20.3",
-              "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
-              "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
-              "dev": true
-            },
-            "source-map": {
-              "version": "0.6.1",
-              "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-              "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-              "dev": true
-            }
-          }
-        },
-        "terser-webpack-plugin": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz",
-          "integrity": "sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==",
-          "dev": true,
-          "requires": {
-            "cacache": "^15.0.5",
-            "find-cache-dir": "^3.3.1",
-            "jest-worker": "^26.2.1",
-            "p-limit": "^3.0.2",
-            "schema-utils": "^2.6.6",
-            "serialize-javascript": "^4.0.0",
-            "source-map": "^0.6.1",
-            "terser": "^4.8.0",
-            "webpack-sources": "^1.4.3"
-          },
-          "dependencies": {
-            "find-cache-dir": {
-              "version": "3.3.1",
-              "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
-              "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==",
-              "dev": true,
-              "requires": {
-                "commondir": "^1.0.1",
-                "make-dir": "^3.0.2",
-                "pkg-dir": "^4.1.0"
-              }
-            },
-            "make-dir": {
-              "version": "3.1.0",
-              "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
-              "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
-              "dev": true,
-              "requires": {
-                "semver": "^6.0.0"
-              }
-            },
-            "p-limit": {
-              "version": "3.0.2",
-              "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.0.2.tgz",
-              "integrity": "sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==",
-              "dev": true,
-              "requires": {
-                "p-try": "^2.0.0"
-              }
-            },
-            "semver": {
-              "version": "6.3.0",
-              "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-              "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-              "dev": true
-            },
-            "source-map": {
-              "version": "0.6.1",
-              "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-              "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-              "dev": true
-            }
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        },
-        "type-is": {
-          "version": "1.6.18",
-          "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
-          "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
-          "dev": true,
-          "requires": {
-            "media-typer": "0.3.0",
-            "mime-types": "~2.1.24"
-          }
-        },
-        "universalify": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz",
-          "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==",
-          "dev": true
-        },
-        "url-loader": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz",
-          "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==",
-          "dev": true,
-          "requires": {
-            "loader-utils": "^2.0.0",
-            "mime-types": "^2.1.27",
-            "schema-utils": "^3.0.0"
-          },
-          "dependencies": {
-            "loader-utils": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-              "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-              "dev": true,
-              "requires": {
-                "big.js": "^5.2.2",
-                "emojis-list": "^3.0.0",
-                "json5": "^2.1.2"
-              }
-            },
-            "schema-utils": {
-              "version": "3.0.0",
-              "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz",
-              "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==",
-              "dev": true,
-              "requires": {
-                "@types/json-schema": "^7.0.6",
-                "ajv": "^6.12.5",
-                "ajv-keywords": "^3.5.2"
-              }
-            }
-          }
-        },
-        "yallist": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
-          "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/addon-essentials": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-6.0.28.tgz",
-      "integrity": "sha512-zpq3A1IsbnKdooI7Tr4wvfpjWjtziXHWckki+WSdq5AOYEpevlDa7fzf5+gxHr3HKvpHYXKioq6YD5FdZ5k7Fw==",
-      "dev": true,
-      "requires": {
-        "@storybook/addon-actions": "6.0.28",
-        "@storybook/addon-backgrounds": "6.0.28",
-        "@storybook/addon-controls": "6.0.28",
-        "@storybook/addon-docs": "6.0.28",
-        "@storybook/addon-toolbars": "6.0.28",
-        "@storybook/addon-viewport": "6.0.28",
-        "@storybook/addons": "6.0.28",
-        "@storybook/api": "6.0.28",
-        "@storybook/node-logger": "6.0.28",
-        "core-js": "^3.0.1",
-        "regenerator-runtime": "^0.13.3",
-        "ts-dedent": "^1.1.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@storybook/addon-actions": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-6.0.28.tgz",
-          "integrity": "sha512-DrApIt/rMCBrynJsFbmXPba2BCAj+yOybCsr0cqNNMkaZytAnoeDEqseCdWUtNXSgDnprAQ0HIrS2TIf4twh8w==",
-          "dev": true,
-          "requires": {
-            "@storybook/addons": "6.0.28",
-            "@storybook/api": "6.0.28",
-            "@storybook/client-api": "6.0.28",
-            "@storybook/components": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "polished": "^3.4.4",
-            "prop-types": "^15.7.2",
-            "react": "^16.8.3",
-            "react-inspector": "^5.0.1",
-            "regenerator-runtime": "^0.13.3",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2",
-            "uuid": "^8.0.0"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channel-postmessage": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.0.28.tgz",
-          "integrity": "sha512-HnLKXPIwZo+JvuG1aYfGX+BoDVpmYbZBlFDSSKroBdCWZRxJJ7OQIOjBWfnf9RxOJqtwEZfVylgtmIUr9ult3Q==",
-          "dev": true,
-          "requires": {
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "qs": "^6.6.0",
-            "telejson": "^5.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.0.28.tgz",
-          "integrity": "sha512-KZ6cw6MU8exXyahHrpNAG5gmSioCXw6I5k0IOH/xzkJpN/9IMbYSbACvxbSKHeCIZorhcWNVWJjth8Kc6dD4Hg==",
-          "dev": true,
-          "requires": {
-            "@storybook/addons": "6.0.28",
-            "@storybook/channel-postmessage": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@types/qs": "^6.9.0",
-            "@types/webpack-env": "^1.15.2",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0",
-            "stable": "^0.1.8",
-            "store2": "^2.7.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.28.tgz",
-          "integrity": "sha512-rp18w+xC5/ATQThnUR6Rv2cg/DAokbV88uZLPCGHX8HsPY2jFPLyCsWnNiIHBF/SfUCjIlljChlX3bzGk+SQUA==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.28",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/node-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.0.28.tgz",
-          "integrity": "sha512-foGRKU9n6tRcN+Os2XJvsWMQQoUubUjuX6/pIyh+rGVOfOxbK56logE/UDOAsdibGMiof9MOldNeGmYS51vPCg==",
-          "dev": true,
-          "requires": {
-            "@types/npmlog": "^4.1.2",
-            "chalk": "^4.0.0",
-            "core-js": "^3.0.1",
-            "npmlog": "^4.1.2",
-            "pretty-hrtime": "^1.0.3"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "react-color": {
-          "version": "2.19.3",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz",
-          "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.15",
-            "lodash-es": "^4.17.15",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.2.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.2.0.tgz",
-          "integrity": "sha512-grajUlVbkx6VdtSxCgzloUIphIZF5bKr21OYMceWPKkniy7H0mRAT/AXPrRtObAe+zUePnNlBwUc4ivVjUGIjw==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        },
-        "uuid": {
-          "version": "8.3.1",
-          "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz",
-          "integrity": "sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/addon-knobs": {
-      "version": "6.0.13",
-      "resolved": "https://registry.npmjs.org/@storybook/addon-knobs/-/addon-knobs-6.0.13.tgz",
-      "integrity": "sha512-uePItx6CdLS0fklZZ6v1VTw0KR6Sn26pXpgr4K/et5oTuP3WqDBjb5lBhSi5tFlVI1wMDMYSYNq0gfF0HsMi9Q==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "6.0.13",
-        "@storybook/api": "6.0.13",
-        "@storybook/channels": "6.0.13",
-        "@storybook/client-api": "6.0.13",
-        "@storybook/components": "6.0.13",
-        "@storybook/core-events": "6.0.13",
-        "@storybook/theming": "6.0.13",
-        "copy-to-clipboard": "^3.0.8",
-        "core-js": "^3.0.1",
-        "escape-html": "^1.0.3",
-        "fast-deep-equal": "^3.1.1",
-        "global": "^4.3.2",
-        "lodash": "^4.17.15",
-        "prop-types": "^15.7.2",
-        "qs": "^6.6.0",
-        "react-color": "^2.17.0",
-        "react-lifecycles-compat": "^3.0.4",
-        "react-select": "^3.0.8",
-        "regenerator-runtime": "^0.13.3"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.11.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz",
-          "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.13.tgz",
-          "integrity": "sha512-0flK0xe1LxNa3ZVOpFJoTG7PPU0ri+Gb9qHxcGwRMJt/qVQVcuF7BL+CC1R5gg2fa8Z0A867X4quLPfUOJvCmQ==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.13",
-            "@storybook/channels": "6.0.13",
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/core-events": "6.0.13",
-            "@storybook/router": "6.0.13",
-            "@storybook/theming": "6.0.13",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.13.tgz",
-          "integrity": "sha512-0LU9XWqSCQMFm9+C4JvQsv7reLv61Qc2Ev+btbvps2Bdg0MG6MKT8Qc4dzCc3vSbp0wh9b9DYMx/r7EvTRzUXA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.13",
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/core-events": "6.0.13",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.13",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.13",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channel-postmessage": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.0.13.tgz",
-          "integrity": "sha512-WglkGiX0tAdftQVaNK8xlGW5gOjA9HQ+095G3cPehrPg7Rc7mEMCFvACVL2BlZBUCPljh2DA+fv7aQMcjuW/Xg==",
-          "dev": true,
-          "requires": {
-            "@storybook/channels": "6.0.13",
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/core-events": "6.0.13",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "qs": "^6.6.0",
-            "telejson": "^5.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.13.tgz",
-          "integrity": "sha512-99qcxeFFPP2FBNA/dSSKGrzuQaU1FQ8BjZlBubvYhWJku2kvXuCkUFHAWSgGc3aqb+lIZCXF3OWUFZ1fYMFmIA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-api": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.0.13.tgz",
-          "integrity": "sha512-AL5YywpZo1LPi8FlIRiUXFBnV1h5039hUAVXMlVlOBud0iZuGlBZTsmgttL3GQUdC2hNQsbwZu7vAO/uqCsfRw==",
-          "dev": true,
-          "requires": {
-            "@storybook/addons": "6.0.13",
-            "@storybook/channel-postmessage": "6.0.13",
-            "@storybook/channels": "6.0.13",
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/core-events": "6.0.13",
-            "@storybook/csf": "0.0.1",
-            "@types/qs": "^6.9.0",
-            "@types/webpack-env": "^1.15.2",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0",
-            "stable": "^0.1.8",
-            "store2": "^2.7.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.13.tgz",
-          "integrity": "sha512-9Qt6v5bmec/DKdoj2TU2bL2CIRMFjoXoys7rMf82MX5PgtkaYk9IYa0i2i5tlfsT/Pw+E+Jv26QUwQkTCt++bQ==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.13.tgz",
-          "integrity": "sha512-DSi1eucNTWEyUMr25aXTRthgCq6utHp7OGvtJ283ROTNdsaXrm7L2aFm87y7q0tmWaRSvXAqmP9l5+Bh+OAc9A==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.13",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.13",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.13.tgz",
-          "integrity": "sha512-lnHnXXAkProci1G2qkPn3qorWkIiwukT4YSSYfwqZfuvbQZJIA1oiaBmQYpTU8CeQ1F73kHDpk2E2aTnUNJ29g==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.13.tgz",
-          "integrity": "sha512-aLDMEDsTbqOv1pcOH+ovRVgdf8exqtTRGIcNTbEhBBnaDsbdo2sxoXHJ8n8xHw1TbpYx7zLD0HXbzSSJIlj1lg==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/semver": {
-          "version": "7.3.2",
-          "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz",
-          "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.6.5",
-            "find-up": "^4.1.0"
-          },
-          "dependencies": {
-            "core-js": {
-              "version": "3.6.5",
-              "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
-              "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==",
-              "dev": true
-            }
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.13",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.13.tgz",
-          "integrity": "sha512-XsiQv0I5NQ2gGcmpIS31zbfAS6HK8IJdAgltSSuF/Yzkwks+guqG4MYWaWGEQPPwYvPDZp+/gproWacQJgrjug==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.13",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "react-color": {
-          "version": "2.18.1",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.18.1.tgz",
-          "integrity": "sha512-X5XpyJS6ncplZs74ak0JJoqPi+33Nzpv5RYWWxn17bslih+X7OlgmfpmGC1fNvdkK7/SGWYf1JJdn7D2n5gSuQ==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.11",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.2.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.2.0.tgz",
-          "integrity": "sha512-grajUlVbkx6VdtSxCgzloUIphIZF5bKr21OYMceWPKkniy7H0mRAT/AXPrRtObAe+zUePnNlBwUc4ivVjUGIjw==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@storybook/addon-links": {
-      "version": "5.3.19",
-      "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-5.3.19.tgz",
-      "integrity": "sha512-gn9u8lebREfRsyzxoDPG0O+kOf5aJ0BhzcCJGZZdqha0F6OWHhh8vJYZZvjJ/Qwze+Qt2zjrgWm+Q6+JLD8ugQ==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "5.3.19",
-        "@storybook/client-logger": "5.3.19",
-        "@storybook/core-events": "5.3.19",
-        "@storybook/csf": "0.0.1",
-        "@storybook/router": "5.3.19",
-        "core-js": "^3.0.1",
-        "global": "^4.3.2",
-        "prop-types": "^15.7.2",
-        "qs": "^6.6.0",
-        "ts-dedent": "^1.1.0"
-      },
-      "dependencies": {
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/addon-toolbars": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-6.0.28.tgz",
-      "integrity": "sha512-fEic2tl3I0P99G0b30btElbvRrTdwcXfhM9sdLSEyn8b95KIB1hyt0IJVYgdhy8f1Lwbu6hSn8hrcwzeg1Reww==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "6.0.28",
-        "@storybook/api": "6.0.28",
-        "@storybook/client-api": "6.0.28",
-        "@storybook/components": "6.0.28",
-        "core-js": "^3.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channel-postmessage": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.0.28.tgz",
-          "integrity": "sha512-HnLKXPIwZo+JvuG1aYfGX+BoDVpmYbZBlFDSSKroBdCWZRxJJ7OQIOjBWfnf9RxOJqtwEZfVylgtmIUr9ult3Q==",
-          "dev": true,
-          "requires": {
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "qs": "^6.6.0",
-            "telejson": "^5.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.0.28.tgz",
-          "integrity": "sha512-KZ6cw6MU8exXyahHrpNAG5gmSioCXw6I5k0IOH/xzkJpN/9IMbYSbACvxbSKHeCIZorhcWNVWJjth8Kc6dD4Hg==",
-          "dev": true,
-          "requires": {
-            "@storybook/addons": "6.0.28",
-            "@storybook/channel-postmessage": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@types/qs": "^6.9.0",
-            "@types/webpack-env": "^1.15.2",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0",
-            "stable": "^0.1.8",
-            "store2": "^2.7.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.28.tgz",
-          "integrity": "sha512-rp18w+xC5/ATQThnUR6Rv2cg/DAokbV88uZLPCGHX8HsPY2jFPLyCsWnNiIHBF/SfUCjIlljChlX3bzGk+SQUA==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.28",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "react-color": {
-          "version": "2.19.3",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz",
-          "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.15",
-            "lodash-es": "^4.17.15",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.2.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.2.0.tgz",
-          "integrity": "sha512-grajUlVbkx6VdtSxCgzloUIphIZF5bKr21OYMceWPKkniy7H0mRAT/AXPrRtObAe+zUePnNlBwUc4ivVjUGIjw==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@storybook/addon-viewport": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-6.0.28.tgz",
-      "integrity": "sha512-I2I6+V0GCtypn0AKw4s1EKHicPqHyQfcM9T7RMbeZIf11Dc71hbbRt9U6kajZ8go84qzXGPm8/Vd0kvDO28WaA==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "6.0.28",
-        "@storybook/api": "6.0.28",
-        "@storybook/client-logger": "6.0.28",
-        "@storybook/components": "6.0.28",
-        "@storybook/core-events": "6.0.28",
-        "@storybook/theming": "6.0.28",
-        "core-js": "^3.0.1",
-        "global": "^4.3.2",
-        "memoizerific": "^1.11.3",
-        "prop-types": "^15.7.2",
-        "regenerator-runtime": "^0.13.3"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.28.tgz",
-          "integrity": "sha512-rp18w+xC5/ATQThnUR6Rv2cg/DAokbV88uZLPCGHX8HsPY2jFPLyCsWnNiIHBF/SfUCjIlljChlX3bzGk+SQUA==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.28",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "react-color": {
-          "version": "2.19.3",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz",
-          "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.15",
-            "lodash-es": "^4.17.15",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.2.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.2.0.tgz",
-          "integrity": "sha512-grajUlVbkx6VdtSxCgzloUIphIZF5bKr21OYMceWPKkniy7H0mRAT/AXPrRtObAe+zUePnNlBwUc4ivVjUGIjw==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@storybook/addons": {
-      "version": "5.3.19",
-      "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-5.3.19.tgz",
-      "integrity": "sha512-Ky/k22p6i6FVNvs1VhuFyGvYJdcp+FgXqFgnPyY/OXJW/vPDapdElpTpHJZLFI9I2FQBDcygBPU5RXkumQ+KUQ==",
-      "dev": true,
-      "requires": {
-        "@storybook/api": "5.3.19",
-        "@storybook/channels": "5.3.19",
-        "@storybook/client-logger": "5.3.19",
-        "@storybook/core-events": "5.3.19",
-        "core-js": "^3.0.1",
-        "global": "^4.3.2",
-        "util-deprecate": "^1.0.2"
-      }
-    },
-    "@storybook/api": {
-      "version": "5.3.19",
-      "resolved": "https://registry.npmjs.org/@storybook/api/-/api-5.3.19.tgz",
-      "integrity": "sha512-U/VzDvhNCPmw2igvJYNNM+uwJCL+3teiL6JmuoL4/cmcqhI6IqqG9dZmMP1egoCd19wXEP7rnAfB/VcYVg41dQ==",
-      "dev": true,
-      "requires": {
-        "@reach/router": "^1.2.1",
-        "@storybook/channels": "5.3.19",
-        "@storybook/client-logger": "5.3.19",
-        "@storybook/core-events": "5.3.19",
-        "@storybook/csf": "0.0.1",
-        "@storybook/router": "5.3.19",
-        "@storybook/theming": "5.3.19",
-        "@types/reach__router": "^1.2.3",
-        "core-js": "^3.0.1",
-        "fast-deep-equal": "^2.0.1",
-        "global": "^4.3.2",
-        "lodash": "^4.17.15",
-        "memoizerific": "^1.11.3",
-        "prop-types": "^15.6.2",
-        "react": "^16.8.3",
-        "semver": "^6.0.0",
-        "shallow-equal": "^1.1.0",
-        "store2": "^2.7.1",
-        "telejson": "^3.2.0",
-        "util-deprecate": "^1.0.2"
-      },
-      "dependencies": {
-        "semver": {
-          "version": "6.3.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/channel-postmessage": {
-      "version": "6.0.21",
-      "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.0.21.tgz",
-      "integrity": "sha512-ArRnoaS+b7qpAku/SO27z/yjRDCXb37mCPYGX0ntPbiQajootUbGO7otfnjFkaP44hCEC9uDYlOfMU1hYU1N6A==",
-      "dev": true,
-      "requires": {
-        "@storybook/channels": "6.0.21",
-        "@storybook/client-logger": "6.0.21",
-        "@storybook/core-events": "6.0.21",
-        "core-js": "^3.0.1",
-        "global": "^4.3.2",
-        "qs": "^6.6.0",
-        "telejson": "^5.0.2"
-      },
-      "dependencies": {
-        "@storybook/channels": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.21.tgz",
-          "integrity": "sha512-G6gjcEotSwDmOlxSmOMgsO3VhQ42RLJK7kFp6D5eg0Q6S8vsypltdT8orxdu+6+AbcBrL+5Sla8lThzaCvXsVQ==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.21.tgz",
-          "integrity": "sha512-8aUEbhjXV+UMYQWukVYnp+kZafF+LD4Dm7eMo37IUZvt3VIjV1VvhxIDVJtqjk2vv0KZTepESFBkZQLmBzI9Zg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.21.tgz",
-          "integrity": "sha512-p84fbPcsAhnqDhp+HJ4P8+vI2BqJus4IRoVAemLAwuPjyPElrV9UvOa/RHy1BN8Z6jXwFA+FFzfGl2kPJ3WYcA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@storybook/channels": {
-      "version": "5.3.19",
-      "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-5.3.19.tgz",
-      "integrity": "sha512-38seaeyshRGotTEZJppyYMg/Vx2zRKgFv1L6uGqkJT0LYoNSYtJhsiNFCJ2/KUJu2chAJ/j8h80bpVBVLQ/+WA==",
-      "dev": true,
-      "requires": {
-        "core-js": "^3.0.1"
-      }
-    },
-    "@storybook/client-api": {
-      "version": "6.0.21",
-      "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.0.21.tgz",
-      "integrity": "sha512-emBXd/ml6pc3G8gP3MsR9zQsAq1zZbqof9MxB51tG/jpTXdqWQ8ce1pt1tJS8Xj0QDM072jR6wsY+mmro0GZnA==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "6.0.21",
-        "@storybook/channel-postmessage": "6.0.21",
-        "@storybook/channels": "6.0.21",
-        "@storybook/client-logger": "6.0.21",
-        "@storybook/core-events": "6.0.21",
-        "@storybook/csf": "0.0.1",
-        "@types/qs": "^6.9.0",
-        "@types/webpack-env": "^1.15.2",
-        "core-js": "^3.0.1",
-        "global": "^4.3.2",
-        "lodash": "^4.17.15",
-        "memoizerific": "^1.11.3",
-        "qs": "^6.6.0",
-        "stable": "^0.1.8",
-        "store2": "^2.7.1",
-        "ts-dedent": "^1.1.1",
-        "util-deprecate": "^1.0.2"
-      },
-      "dependencies": {
-        "@storybook/addons": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.21.tgz",
-          "integrity": "sha512-yDttNLc3vXqBxwK795ykgzTC6MpvuXDQuF4LHSlHZQe6wsMu1m3fljnbYdafJWdx6cNZwUblU3KYcR11PqhkPg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.21",
-            "@storybook/channels": "6.0.21",
-            "@storybook/client-logger": "6.0.21",
-            "@storybook/core-events": "6.0.21",
-            "@storybook/router": "6.0.21",
-            "@storybook/theming": "6.0.21",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.21.tgz",
-          "integrity": "sha512-cRRGf/KGFwYiDouTouEcDdp45N1AbYnAfvLqYZ3KuUTGZ+CiU/PN/vavkp07DQeM4FIQO8TLhzHdsLFpLT7Lkw==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.21",
-            "@storybook/client-logger": "6.0.21",
-            "@storybook/core-events": "6.0.21",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.21",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.21",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.21.tgz",
-          "integrity": "sha512-G6gjcEotSwDmOlxSmOMgsO3VhQ42RLJK7kFp6D5eg0Q6S8vsypltdT8orxdu+6+AbcBrL+5Sla8lThzaCvXsVQ==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.21.tgz",
-          "integrity": "sha512-8aUEbhjXV+UMYQWukVYnp+kZafF+LD4Dm7eMo37IUZvt3VIjV1VvhxIDVJtqjk2vv0KZTepESFBkZQLmBzI9Zg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.21.tgz",
-          "integrity": "sha512-p84fbPcsAhnqDhp+HJ4P8+vI2BqJus4IRoVAemLAwuPjyPElrV9UvOa/RHy1BN8Z6jXwFA+FFzfGl2kPJ3WYcA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.21.tgz",
-          "integrity": "sha512-46SsKJfcd12lRrISnfrWhicJx8EylkgGDGohfH0n5p7inkkGOkKV8QFZoYPRKZueMXmUKpzJ0Z3HmVsLTCrCDw==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/semver": {
-          "version": "7.3.2",
-          "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz",
-          "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.6.5",
-            "find-up": "^4.1.0"
-          },
-          "dependencies": {
-            "core-js": {
-              "version": "3.6.5",
-              "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
-              "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==",
-              "dev": true
-            }
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.21",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.21.tgz",
-          "integrity": "sha512-n97DfB9kG6WrV1xBGDyeQibTrh8pBBCp3dSL3UTGH+KX3C2+4sm6QHlTgyekbi5FrbFEbnuZOKAS3YbLVONsRQ==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.21",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@storybook/client-logger": {
-      "version": "5.3.19",
-      "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-5.3.19.tgz",
-      "integrity": "sha512-nHftT9Ow71YgAd2/tsu79kwKk30mPuE0sGRRUHZVyCRciGFQweKNOS/6xi2Aq+WwBNNjPKNlbgxwRt1yKe1Vkg==",
-      "dev": true,
-      "requires": {
-        "core-js": "^3.0.1"
-      }
-    },
-    "@storybook/components": {
-      "version": "6.1.11",
-      "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.1.11.tgz",
-      "integrity": "sha512-DGDl76uONTkg0rpsa36TpVuXv4K7rFYe8GnQ/Q8n4By5tvldC4s9YXwcDRYHVrfnYybKzuZ/+jv2ZAp4/8ZaeA==",
-      "dev": true,
-      "requires": {
-        "@popperjs/core": "^2.5.4",
-        "@storybook/client-logger": "6.1.11",
-        "@storybook/csf": "0.0.1",
-        "@storybook/theming": "6.1.11",
-        "@types/overlayscrollbars": "^1.9.0",
-        "@types/react-color": "^3.0.1",
-        "@types/react-syntax-highlighter": "11.0.4",
-        "core-js": "^3.0.1",
-        "fast-deep-equal": "^3.1.1",
-        "global": "^4.3.2",
-        "lodash": "^4.17.15",
-        "markdown-to-jsx": "^6.11.4",
-        "memoizerific": "^1.11.3",
-        "overlayscrollbars": "^1.10.2",
-        "polished": "^3.4.4",
-        "react-color": "^2.17.0",
-        "react-popper-tooltip": "^3.1.1",
-        "react-syntax-highlighter": "^13.5.0",
-        "react-textarea-autosize": "^8.1.1",
-        "ts-dedent": "^2.0.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@emotion/core": {
-          "version": "10.1.1",
-          "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.1.1.tgz",
-          "integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.5.5",
-            "@emotion/cache": "^10.0.27",
-            "@emotion/css": "^10.0.27",
-            "@emotion/serialize": "^0.11.15",
-            "@emotion/sheet": "0.9.4",
-            "@emotion/utils": "0.11.3"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.1.11",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.1.11.tgz",
-          "integrity": "sha512-dSc+VKLW1UaiMPMhlZYRqhynrrHdHFiBEgU28+8LcmoZ1yhZBwLkcKdSD4YTT0CbMJAG1/+NUW5kRI8Geeg+rA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.1.11",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.1.11.tgz",
-          "integrity": "sha512-zRChacVgKoU2BmpvwK1ntiF3KIpc8QblJT7IGiKfP/BNpy9gNeXbLPLk3g/tkHszOvVYtkaZhEXni4Od8tqy1A==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.1.1",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.23",
-            "@storybook/client-logger": "6.1.11",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^2.0.0"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "hastscript": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
-          "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==",
-          "dev": true,
-          "requires": {
-            "@types/hast": "^2.0.0",
-            "comma-separated-tokens": "^1.0.0",
-            "hast-util-parse-selector": "^2.0.0",
-            "property-information": "^5.0.0",
-            "space-separated-tokens": "^1.0.0"
-          }
-        },
-        "parse-entities": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
-          "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
-          "dev": true,
-          "requires": {
-            "character-entities": "^1.0.0",
-            "character-entities-legacy": "^1.0.0",
-            "character-reference-invalid": "^1.0.0",
-            "is-alphanumerical": "^1.0.0",
-            "is-decimal": "^1.0.0",
-            "is-hexadecimal": "^1.0.0"
-          }
-        },
-        "prismjs": {
-          "version": "1.22.0",
-          "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.22.0.tgz",
-          "integrity": "sha512-lLJ/Wt9yy0AiSYBf212kK3mM5L8ycwlyTlSxHBAneXLR0nzFMlZ5y7riFPF3E33zXOF2IH95xdY5jIyZbM9z/w==",
-          "dev": true,
-          "requires": {
-            "clipboard": "^2.0.0"
-          }
-        },
-        "react-color": {
-          "version": "2.19.3",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz",
-          "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.15",
-            "lodash-es": "^4.17.15",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-popper": {
-          "version": "2.2.4",
-          "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.2.4.tgz",
-          "integrity": "sha512-NacOu4zWupdQjVXq02XpTD3yFPSfg5a7fex0wa3uGKVkFK7UN6LvVxgcb+xYr56UCuWiNPMH20tntdVdJRwYew==",
-          "dev": true,
-          "requires": {
-            "react-fast-compare": "^3.0.1",
-            "warning": "^4.0.2"
-          }
-        },
-        "react-popper-tooltip": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/react-popper-tooltip/-/react-popper-tooltip-3.1.1.tgz",
-          "integrity": "sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.12.5",
-            "@popperjs/core": "^2.5.4",
-            "react-popper": "^2.2.4"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "13.5.3",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-13.5.3.tgz",
-          "integrity": "sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "^10.1.1",
-            "lowlight": "^1.14.0",
-            "prismjs": "^1.21.0",
-            "refractor": "^3.1.0"
-          }
-        },
-        "refractor": {
-          "version": "3.2.0",
-          "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.2.0.tgz",
-          "integrity": "sha512-hSo+EyMIZTLBvNNgIU5lW4yjCzNYMZ4dcEhBq/3nReGfqzd2JfVhdlPDfU9rEsgcAyWx+OimIIUoL4ZU7NtYHQ==",
-          "dev": true,
-          "requires": {
-            "hastscript": "^6.0.0",
-            "parse-entities": "^2.0.0",
-            "prismjs": "~1.22.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "ts-dedent": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.0.0.tgz",
-          "integrity": "sha512-DfxKjSFQfw9+uf7N9Cy8Ebx9fv5fquK4hZ6SD3Rzr+1jKP6AVA6H8+B5457ZpUs0JKsGpGqIevbpZ9DMQJDp1A==",
-          "dev": true
-        },
-        "warning": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
-          "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
-          "dev": true,
-          "requires": {
-            "loose-envify": "^1.0.0"
-          }
-        }
-      }
-    },
-    "@storybook/core": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/core/-/core-6.0.28.tgz",
-      "integrity": "sha512-NIEeU4NXl6vK6NVIisR90QYWomTexXEmF9cFcr02DcxKwFTNixSfBuquDFt6o7OTLNgmUQ5r2y+fXlQ4vDTG4w==",
-      "dev": true,
-      "requires": {
-        "@babel/plugin-proposal-class-properties": "^7.8.3",
-        "@babel/plugin-proposal-decorators": "^7.8.3",
-        "@babel/plugin-proposal-export-default-from": "^7.8.3",
-        "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
-        "@babel/plugin-proposal-object-rest-spread": "^7.9.6",
-        "@babel/plugin-proposal-optional-chaining": "^7.10.1",
-        "@babel/plugin-proposal-private-methods": "^7.8.3",
-        "@babel/plugin-syntax-dynamic-import": "^7.8.3",
-        "@babel/plugin-transform-arrow-functions": "^7.8.3",
-        "@babel/plugin-transform-block-scoping": "^7.8.3",
-        "@babel/plugin-transform-classes": "^7.9.5",
-        "@babel/plugin-transform-destructuring": "^7.9.5",
-        "@babel/plugin-transform-for-of": "^7.9.0",
-        "@babel/plugin-transform-parameters": "^7.9.5",
-        "@babel/plugin-transform-shorthand-properties": "^7.8.3",
-        "@babel/plugin-transform-spread": "^7.8.3",
-        "@babel/plugin-transform-template-literals": "^7.8.3",
-        "@babel/preset-env": "^7.9.6",
-        "@babel/preset-react": "^7.8.3",
-        "@babel/preset-typescript": "^7.9.0",
-        "@babel/register": "^7.10.5",
-        "@storybook/addons": "6.0.28",
-        "@storybook/api": "6.0.28",
-        "@storybook/channel-postmessage": "6.0.28",
-        "@storybook/channels": "6.0.28",
-        "@storybook/client-api": "6.0.28",
-        "@storybook/client-logger": "6.0.28",
-        "@storybook/components": "6.0.28",
-        "@storybook/core-events": "6.0.28",
-        "@storybook/csf": "0.0.1",
-        "@storybook/node-logger": "6.0.28",
-        "@storybook/router": "6.0.28",
-        "@storybook/semver": "^7.3.2",
-        "@storybook/theming": "6.0.28",
-        "@storybook/ui": "6.0.28",
-        "@types/glob-base": "^0.3.0",
-        "@types/micromatch": "^4.0.1",
-        "@types/node-fetch": "^2.5.4",
-        "airbnb-js-shims": "^2.2.1",
-        "ansi-to-html": "^0.6.11",
-        "autoprefixer": "^9.7.2",
-        "babel-loader": "^8.0.6",
-        "babel-plugin-emotion": "^10.0.20",
-        "babel-plugin-macros": "^2.8.0",
-        "babel-preset-minify": "^0.5.0 || 0.6.0-alpha.5",
-        "better-opn": "^2.0.0",
-        "boxen": "^4.1.0",
-        "case-sensitive-paths-webpack-plugin": "^2.2.0",
-        "chalk": "^4.0.0",
-        "cli-table3": "0.6.0",
-        "commander": "^5.0.0",
-        "core-js": "^3.0.1",
-        "css-loader": "^3.5.3",
-        "detect-port": "^1.3.0",
-        "dotenv-webpack": "^1.7.0",
-        "ejs": "^3.1.2",
-        "express": "^4.17.0",
-        "file-loader": "^6.0.0",
-        "file-system-cache": "^1.0.5",
-        "find-up": "^4.1.0",
-        "fork-ts-checker-webpack-plugin": "^4.1.4",
-        "fs-extra": "^9.0.0",
-        "glob": "^7.1.6",
-        "glob-base": "^0.3.0",
-        "glob-promise": "^3.4.0",
-        "global": "^4.3.2",
-        "html-webpack-plugin": "^4.2.1",
-        "inquirer": "^7.0.0",
-        "interpret": "^2.0.0",
-        "ip": "^1.1.5",
-        "json5": "^2.1.1",
-        "lazy-universal-dotenv": "^3.0.1",
-        "micromatch": "^4.0.2",
-        "node-fetch": "^2.6.0",
-        "pkg-dir": "^4.2.0",
-        "pnp-webpack-plugin": "1.6.4",
-        "postcss-flexbugs-fixes": "^4.1.0",
-        "postcss-loader": "^3.0.0",
-        "pretty-hrtime": "^1.0.3",
-        "qs": "^6.6.0",
-        "raw-loader": "^4.0.1",
-        "react-dev-utils": "^10.0.0",
-        "regenerator-runtime": "^0.13.3",
-        "resolve-from": "^5.0.0",
-        "serve-favicon": "^2.5.0",
-        "shelljs": "^0.8.3",
-        "stable": "^0.1.8",
-        "style-loader": "^1.2.1",
-        "terser-webpack-plugin": "^3.0.0",
-        "ts-dedent": "^1.1.1",
-        "unfetch": "^4.1.0",
-        "url-loader": "^4.0.0",
-        "util-deprecate": "^1.0.2",
-        "webpack": "^4.43.0",
-        "webpack-dev-middleware": "^3.7.0",
-        "webpack-hot-middleware": "^2.25.0",
-        "webpack-virtual-modules": "^0.2.2"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
-          "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/compat-data": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz",
-          "integrity": "sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg==",
-          "dev": true
-        },
-        "@babel/generator": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
-          "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-annotate-as-pure": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz",
-          "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-builder-binary-assignment-operator-visitor": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz",
-          "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-explode-assignable-expression": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-compilation-targets": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
-          "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
-          "dev": true,
-          "requires": {
-            "@babel/compat-data": "^7.12.5",
-            "@babel/helper-validator-option": "^7.12.1",
-            "browserslist": "^4.14.5",
-            "semver": "^5.5.0"
-          }
-        },
-        "@babel/helper-create-class-features-plugin": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
-          "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-member-expression-to-functions": "^7.12.1",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/helper-replace-supers": "^7.12.1",
-            "@babel/helper-split-export-declaration": "^7.10.4"
-          }
-        },
-        "@babel/helper-create-regexp-features-plugin": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz",
-          "integrity": "sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.4",
-            "@babel/helper-regex": "^7.10.4",
-            "regexpu-core": "^4.7.1"
-          }
-        },
-        "@babel/helper-define-map": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz",
-          "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/types": "^7.10.5",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/helper-explode-assignable-expression": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz",
-          "integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
-          "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
-          "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-hoist-variables": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz",
-          "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
-          "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-module-transforms": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
-          "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-imports": "^7.12.1",
-            "@babel/helper-replace-supers": "^7.12.1",
-            "@babel/helper-simple-access": "^7.12.1",
-            "@babel/helper-split-export-declaration": "^7.11.0",
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.12.1",
-            "@babel/types": "^7.12.1",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz",
-          "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-regex": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz",
-          "integrity": "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==",
-          "dev": true,
-          "requires": {
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/helper-remap-async-to-generator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz",
-          "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.4",
-            "@babel/helper-wrap-function": "^7.10.4",
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
-          "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.12.1",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/traverse": "^7.12.5",
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-simple-access": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
-          "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz",
-          "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.11.0"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/helper-wrap-function": {
-          "version": "7.12.3",
-          "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz",
-          "integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          },
-          "dependencies": {
-            "chalk": {
-              "version": "2.4.2",
-              "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-              "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-              "dev": true,
-              "requires": {
-                "ansi-styles": "^3.2.1",
-                "escape-string-regexp": "^1.0.5",
-                "supports-color": "^5.3.0"
-              }
-            }
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
-          "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==",
-          "dev": true
-        },
-        "@babel/plugin-proposal-async-generator-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz",
-          "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-remap-async-to-generator": "^7.12.1",
-            "@babel/plugin-syntax-async-generators": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-dynamic-import": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz",
-          "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-dynamic-import": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-json-strings": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz",
-          "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-json-strings": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-nullish-coalescing-operator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
-          "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-numeric-separator": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
-          "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-numeric-separator": "^7.10.4"
-          }
-        },
-        "@babel/plugin-proposal-optional-catch-binding": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz",
-          "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-optional-chaining": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz",
-          "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
-            "@babel/plugin-syntax-optional-chaining": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-unicode-property-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz",
-          "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-class-properties": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz",
-          "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-logical-assignment-operators": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
-          "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-numeric-separator": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
-          "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-top-level-await": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz",
-          "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-async-to-generator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz",
-          "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-imports": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-remap-async-to-generator": "^7.12.1"
-          }
-        },
-        "@babel/plugin-transform-block-scoped-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz",
-          "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-computed-properties": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz",
-          "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-destructuring": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz",
-          "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-dotall-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz",
-          "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-duplicate-keys": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz",
-          "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-exponentiation-operator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz",
-          "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-for-of": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz",
-          "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-function-name": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz",
-          "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz",
-          "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-member-expression-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz",
-          "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-modules-amd": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz",
-          "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-transforms": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "babel-plugin-dynamic-import-node": "^2.3.3"
-          }
-        },
-        "@babel/plugin-transform-modules-commonjs": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz",
-          "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-transforms": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-simple-access": "^7.12.1",
-            "babel-plugin-dynamic-import-node": "^2.3.3"
-          }
-        },
-        "@babel/plugin-transform-modules-systemjs": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz",
-          "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-hoist-variables": "^7.10.4",
-            "@babel/helper-module-transforms": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "babel-plugin-dynamic-import-node": "^2.3.3"
-          }
-        },
-        "@babel/plugin-transform-modules-umd": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz",
-          "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-transforms": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-named-capturing-groups-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz",
-          "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1"
-          }
-        },
-        "@babel/plugin-transform-new-target": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz",
-          "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-object-super": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz",
-          "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-replace-supers": "^7.12.1"
-          }
-        },
-        "@babel/plugin-transform-parameters": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
-          "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-property-literals": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz",
-          "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-regenerator": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz",
-          "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==",
-          "dev": true,
-          "requires": {
-            "regenerator-transform": "^0.14.2"
-          }
-        },
-        "@babel/plugin-transform-reserved-words": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz",
-          "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-sticky-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz",
-          "integrity": "sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-regex": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-typeof-symbol": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz",
-          "integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-unicode-escapes": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz",
-          "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-unicode-regex": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz",
-          "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/preset-env": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz",
-          "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==",
-          "dev": true,
-          "requires": {
-            "@babel/compat-data": "^7.12.1",
-            "@babel/helper-compilation-targets": "^7.12.1",
-            "@babel/helper-module-imports": "^7.12.1",
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/helper-validator-option": "^7.12.1",
-            "@babel/plugin-proposal-async-generator-functions": "^7.12.1",
-            "@babel/plugin-proposal-class-properties": "^7.12.1",
-            "@babel/plugin-proposal-dynamic-import": "^7.12.1",
-            "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
-            "@babel/plugin-proposal-json-strings": "^7.12.1",
-            "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
-            "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
-            "@babel/plugin-proposal-numeric-separator": "^7.12.1",
-            "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
-            "@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
-            "@babel/plugin-proposal-optional-chaining": "^7.12.1",
-            "@babel/plugin-proposal-private-methods": "^7.12.1",
-            "@babel/plugin-proposal-unicode-property-regex": "^7.12.1",
-            "@babel/plugin-syntax-async-generators": "^7.8.0",
-            "@babel/plugin-syntax-class-properties": "^7.12.1",
-            "@babel/plugin-syntax-dynamic-import": "^7.8.0",
-            "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
-            "@babel/plugin-syntax-json-strings": "^7.8.0",
-            "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
-            "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
-            "@babel/plugin-syntax-numeric-separator": "^7.10.4",
-            "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
-            "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
-            "@babel/plugin-syntax-optional-chaining": "^7.8.0",
-            "@babel/plugin-syntax-top-level-await": "^7.12.1",
-            "@babel/plugin-transform-arrow-functions": "^7.12.1",
-            "@babel/plugin-transform-async-to-generator": "^7.12.1",
-            "@babel/plugin-transform-block-scoped-functions": "^7.12.1",
-            "@babel/plugin-transform-block-scoping": "^7.12.1",
-            "@babel/plugin-transform-classes": "^7.12.1",
-            "@babel/plugin-transform-computed-properties": "^7.12.1",
-            "@babel/plugin-transform-destructuring": "^7.12.1",
-            "@babel/plugin-transform-dotall-regex": "^7.12.1",
-            "@babel/plugin-transform-duplicate-keys": "^7.12.1",
-            "@babel/plugin-transform-exponentiation-operator": "^7.12.1",
-            "@babel/plugin-transform-for-of": "^7.12.1",
-            "@babel/plugin-transform-function-name": "^7.12.1",
-            "@babel/plugin-transform-literals": "^7.12.1",
-            "@babel/plugin-transform-member-expression-literals": "^7.12.1",
-            "@babel/plugin-transform-modules-amd": "^7.12.1",
-            "@babel/plugin-transform-modules-commonjs": "^7.12.1",
-            "@babel/plugin-transform-modules-systemjs": "^7.12.1",
-            "@babel/plugin-transform-modules-umd": "^7.12.1",
-            "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1",
-            "@babel/plugin-transform-new-target": "^7.12.1",
-            "@babel/plugin-transform-object-super": "^7.12.1",
-            "@babel/plugin-transform-parameters": "^7.12.1",
-            "@babel/plugin-transform-property-literals": "^7.12.1",
-            "@babel/plugin-transform-regenerator": "^7.12.1",
-            "@babel/plugin-transform-reserved-words": "^7.12.1",
-            "@babel/plugin-transform-shorthand-properties": "^7.12.1",
-            "@babel/plugin-transform-spread": "^7.12.1",
-            "@babel/plugin-transform-sticky-regex": "^7.12.1",
-            "@babel/plugin-transform-template-literals": "^7.12.1",
-            "@babel/plugin-transform-typeof-symbol": "^7.12.1",
-            "@babel/plugin-transform-unicode-escapes": "^7.12.1",
-            "@babel/plugin-transform-unicode-regex": "^7.12.1",
-            "@babel/preset-modules": "^0.1.3",
-            "@babel/types": "^7.12.1",
-            "core-js-compat": "^3.6.2",
-            "semver": "^5.5.0"
-          },
-          "dependencies": {
-            "@babel/plugin-proposal-class-properties": {
-              "version": "7.12.1",
-              "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
-              "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-create-class-features-plugin": "^7.12.1",
-                "@babel/helper-plugin-utils": "^7.10.4"
-              }
-            },
-            "@babel/plugin-proposal-object-rest-spread": {
-              "version": "7.12.1",
-              "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
-              "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-plugin-utils": "^7.10.4",
-                "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
-                "@babel/plugin-transform-parameters": "^7.12.1"
-              }
-            },
-            "@babel/plugin-proposal-private-methods": {
-              "version": "7.12.1",
-              "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz",
-              "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-create-class-features-plugin": "^7.12.1",
-                "@babel/helper-plugin-utils": "^7.10.4"
-              }
-            },
-            "@babel/plugin-transform-arrow-functions": {
-              "version": "7.12.1",
-              "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz",
-              "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-plugin-utils": "^7.10.4"
-              }
-            },
-            "@babel/plugin-transform-block-scoping": {
-              "version": "7.12.1",
-              "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz",
-              "integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-plugin-utils": "^7.10.4"
-              }
-            },
-            "@babel/plugin-transform-classes": {
-              "version": "7.12.1",
-              "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz",
-              "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-annotate-as-pure": "^7.10.4",
-                "@babel/helper-define-map": "^7.10.4",
-                "@babel/helper-function-name": "^7.10.4",
-                "@babel/helper-optimise-call-expression": "^7.10.4",
-                "@babel/helper-plugin-utils": "^7.10.4",
-                "@babel/helper-replace-supers": "^7.12.1",
-                "@babel/helper-split-export-declaration": "^7.10.4",
-                "globals": "^11.1.0"
-              }
-            },
-            "@babel/plugin-transform-shorthand-properties": {
-              "version": "7.12.1",
-              "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz",
-              "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-plugin-utils": "^7.10.4"
-              }
-            },
-            "@babel/plugin-transform-spread": {
-              "version": "7.12.1",
-              "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
-              "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-plugin-utils": "^7.10.4",
-                "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
-              }
-            },
-            "@babel/plugin-transform-template-literals": {
-              "version": "7.12.1",
-              "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz",
-              "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==",
-              "dev": true,
-              "requires": {
-                "@babel/helper-plugin-utils": "^7.10.4"
-              }
-            }
-          }
-        },
-        "@babel/register": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.12.1.tgz",
-          "integrity": "sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==",
-          "dev": true,
-          "requires": {
-            "find-cache-dir": "^2.0.0",
-            "lodash": "^4.17.19",
-            "make-dir": "^2.1.0",
-            "pirates": "^4.0.0",
-            "source-map-support": "^0.5.16"
-          }
-        },
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@babel/template": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
-          "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
-          "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/generator": "^7.12.5",
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-split-export-declaration": "^7.11.0",
-            "@babel/parser": "^7.12.5",
-            "@babel/types": "^7.12.5",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.6",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
-          "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channel-postmessage": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.0.28.tgz",
-          "integrity": "sha512-HnLKXPIwZo+JvuG1aYfGX+BoDVpmYbZBlFDSSKroBdCWZRxJJ7OQIOjBWfnf9RxOJqtwEZfVylgtmIUr9ult3Q==",
-          "dev": true,
-          "requires": {
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "qs": "^6.6.0",
-            "telejson": "^5.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.0.28.tgz",
-          "integrity": "sha512-KZ6cw6MU8exXyahHrpNAG5gmSioCXw6I5k0IOH/xzkJpN/9IMbYSbACvxbSKHeCIZorhcWNVWJjth8Kc6dD4Hg==",
-          "dev": true,
-          "requires": {
-            "@storybook/addons": "6.0.28",
-            "@storybook/channel-postmessage": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@types/qs": "^6.9.0",
-            "@types/webpack-env": "^1.15.2",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0",
-            "stable": "^0.1.8",
-            "store2": "^2.7.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.28.tgz",
-          "integrity": "sha512-rp18w+xC5/ATQThnUR6Rv2cg/DAokbV88uZLPCGHX8HsPY2jFPLyCsWnNiIHBF/SfUCjIlljChlX3bzGk+SQUA==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.28",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/node-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.0.28.tgz",
-          "integrity": "sha512-foGRKU9n6tRcN+Os2XJvsWMQQoUubUjuX6/pIyh+rGVOfOxbK56logE/UDOAsdibGMiof9MOldNeGmYS51vPCg==",
-          "dev": true,
-          "requires": {
-            "@types/npmlog": "^4.1.2",
-            "chalk": "^4.0.0",
-            "core-js": "^3.0.1",
-            "npmlog": "^4.1.2",
-            "pretty-hrtime": "^1.0.3"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@types/json-schema": {
-          "version": "7.0.6",
-          "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz",
-          "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==",
-          "dev": true
-        },
-        "accepts": {
-          "version": "1.3.7",
-          "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
-          "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
-          "dev": true,
-          "requires": {
-            "mime-types": "~2.1.24",
-            "negotiator": "0.6.2"
-          }
-        },
-        "ajv": {
-          "version": "6.12.6",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
-          "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ajv-keywords": {
-          "version": "3.5.2",
-          "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-          "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "array-flatten": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
-          "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
-          "dev": true
-        },
-        "babel-plugin-dynamic-import-node": {
-          "version": "2.3.3",
-          "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
-          "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
-          "dev": true,
-          "requires": {
-            "object.assign": "^4.1.0"
-          }
-        },
-        "babel-plugin-emotion": {
-          "version": "10.0.33",
-          "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz",
-          "integrity": "sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-imports": "^7.0.0",
-            "@emotion/hash": "0.8.0",
-            "@emotion/memoize": "0.7.4",
-            "@emotion/serialize": "^0.11.16",
-            "babel-plugin-macros": "^2.0.0",
-            "babel-plugin-syntax-jsx": "^6.18.0",
-            "convert-source-map": "^1.5.0",
-            "escape-string-regexp": "^1.0.5",
-            "find-root": "^1.1.0",
-            "source-map": "^0.5.7"
-          }
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "body-parser": {
-          "version": "1.19.0",
-          "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
-          "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
-          "dev": true,
-          "requires": {
-            "bytes": "3.1.0",
-            "content-type": "~1.0.4",
-            "debug": "2.6.9",
-            "depd": "~1.1.2",
-            "http-errors": "1.7.2",
-            "iconv-lite": "0.4.24",
-            "on-finished": "~2.3.0",
-            "qs": "6.7.0",
-            "raw-body": "2.4.0",
-            "type-is": "~1.6.17"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              }
-            },
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-              "dev": true
-            },
-            "qs": {
-              "version": "6.7.0",
-              "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
-              "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
-              "dev": true
-            }
-          }
-        },
-        "browserslist": {
-          "version": "4.14.7",
-          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.7.tgz",
-          "integrity": "sha512-BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ==",
-          "dev": true,
-          "requires": {
-            "caniuse-lite": "^1.0.30001157",
-            "colorette": "^1.2.1",
-            "electron-to-chromium": "^1.3.591",
-            "escalade": "^3.1.1",
-            "node-releases": "^1.1.66"
-          }
-        },
-        "bytes": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
-          "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==",
-          "dev": true
-        },
-        "cacache": {
-          "version": "15.0.5",
-          "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz",
-          "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==",
-          "dev": true,
-          "requires": {
-            "@npmcli/move-file": "^1.0.1",
-            "chownr": "^2.0.0",
-            "fs-minipass": "^2.0.0",
-            "glob": "^7.1.4",
-            "infer-owner": "^1.0.4",
-            "lru-cache": "^6.0.0",
-            "minipass": "^3.1.1",
-            "minipass-collect": "^1.0.2",
-            "minipass-flush": "^1.0.5",
-            "minipass-pipeline": "^1.2.2",
-            "mkdirp": "^1.0.3",
-            "p-map": "^4.0.0",
-            "promise-inflight": "^1.0.1",
-            "rimraf": "^3.0.2",
-            "ssri": "^8.0.0",
-            "tar": "^6.0.2",
-            "unique-filename": "^1.1.1"
-          }
-        },
-        "caniuse-lite": {
-          "version": "1.0.30001157",
-          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001157.tgz",
-          "integrity": "sha512-gOerH9Wz2IRZ2ZPdMfBvyOi3cjaz4O4dgNwPGzx8EhqAs4+2IL/O+fJsbt+znSigujoZG8bVcIAUM/I/E5K3MA==",
-          "dev": true
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          },
-          "dependencies": {
-            "ansi-styles": {
-              "version": "4.3.0",
-              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-              "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-              "dev": true,
-              "requires": {
-                "color-convert": "^2.0.1"
-              }
-            },
-            "color-convert": {
-              "version": "2.0.1",
-              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-              "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-              "dev": true,
-              "requires": {
-                "color-name": "~1.1.4"
-              }
-            },
-            "has-flag": {
-              "version": "4.0.0",
-              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-              "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-              "dev": true
-            },
-            "supports-color": {
-              "version": "7.2.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-              "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^4.0.0"
-              }
-            }
-          }
-        },
-        "chownr": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
-          "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
-          "dev": true
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "commander": {
-          "version": "5.1.0",
-          "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
-          "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
-          "dev": true
-        },
-        "content-disposition": {
-          "version": "0.5.3",
-          "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
-          "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "5.1.2"
-          }
-        },
-        "cookie": {
-          "version": "0.4.0",
-          "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
-          "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==",
-          "dev": true
-        },
-        "css-loader": {
-          "version": "3.6.0",
-          "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz",
-          "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==",
-          "dev": true,
-          "requires": {
-            "camelcase": "^5.3.1",
-            "cssesc": "^3.0.0",
-            "icss-utils": "^4.1.1",
-            "loader-utils": "^1.2.3",
-            "normalize-path": "^3.0.0",
-            "postcss": "^7.0.32",
-            "postcss-modules-extract-imports": "^2.0.0",
-            "postcss-modules-local-by-default": "^3.0.2",
-            "postcss-modules-scope": "^2.2.0",
-            "postcss-modules-values": "^3.0.0",
-            "postcss-value-parser": "^4.1.0",
-            "schema-utils": "^2.7.0",
-            "semver": "^6.3.0"
-          },
-          "dependencies": {
-            "semver": {
-              "version": "6.3.0",
-              "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-              "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-              "dev": true
-            }
-          }
-        },
-        "cssesc": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
-          "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
-          "dev": true
-        },
-        "debug": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
-          "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "ejs": {
-          "version": "3.1.5",
-          "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.5.tgz",
-          "integrity": "sha512-dldq3ZfFtgVTJMLjOe+/3sROTzALlL9E34V4/sDtUd/KlBSS0s6U1/+WPE1B4sj9CXHJpL1M6rhNJnc9Wbal9w==",
-          "dev": true,
-          "requires": {
-            "jake": "^10.6.1"
-          }
-        },
-        "electron-to-chromium": {
-          "version": "1.3.592",
-          "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.592.tgz",
-          "integrity": "sha512-kGNowksvqQiPb1pUSQKpd8JFoGPLxYOwduNRCqCxGh/2Q1qE2JdmwouCW41lUzDxOb/2RIV4lR0tVIfboWlO9A==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "escalade": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
-          "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
-          "dev": true
-        },
-        "express": {
-          "version": "4.17.1",
-          "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
-          "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
-          "dev": true,
-          "requires": {
-            "accepts": "~1.3.7",
-            "array-flatten": "1.1.1",
-            "body-parser": "1.19.0",
-            "content-disposition": "0.5.3",
-            "content-type": "~1.0.4",
-            "cookie": "0.4.0",
-            "cookie-signature": "1.0.6",
-            "debug": "2.6.9",
-            "depd": "~1.1.2",
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "etag": "~1.8.1",
-            "finalhandler": "~1.1.2",
-            "fresh": "0.5.2",
-            "merge-descriptors": "1.0.1",
-            "methods": "~1.1.2",
-            "on-finished": "~2.3.0",
-            "parseurl": "~1.3.3",
-            "path-to-regexp": "0.1.7",
-            "proxy-addr": "~2.0.5",
-            "qs": "6.7.0",
-            "range-parser": "~1.2.1",
-            "safe-buffer": "5.1.2",
-            "send": "0.17.1",
-            "serve-static": "1.14.1",
-            "setprototypeof": "1.1.1",
-            "statuses": "~1.5.0",
-            "type-is": "~1.6.18",
-            "utils-merge": "1.0.1",
-            "vary": "~1.1.2"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              }
-            },
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-              "dev": true
-            },
-            "qs": {
-              "version": "6.7.0",
-              "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
-              "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
-              "dev": true
-            }
-          }
-        },
-        "extend-shallow": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
-          "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
-          "dev": true,
-          "requires": {
-            "assign-symbols": "^1.0.0",
-            "is-extendable": "^1.0.1"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "finalhandler": {
-          "version": "1.1.2",
-          "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
-          "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
-          "dev": true,
-          "requires": {
-            "debug": "2.6.9",
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "on-finished": "~2.3.0",
-            "parseurl": "~1.3.3",
-            "statuses": "~1.5.0",
-            "unpipe": "~1.0.0"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              }
-            },
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-              "dev": true
-            }
-          }
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "fork-ts-checker-webpack-plugin": {
-          "version": "4.1.6",
-          "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz",
-          "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.5.5",
-            "chalk": "^2.4.1",
-            "micromatch": "^3.1.10",
-            "minimatch": "^3.0.4",
-            "semver": "^5.6.0",
-            "tapable": "^1.0.0",
-            "worker-rpc": "^0.1.0"
-          },
-          "dependencies": {
-            "chalk": {
-              "version": "2.4.2",
-              "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-              "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-              "dev": true,
-              "requires": {
-                "ansi-styles": "^3.2.1",
-                "escape-string-regexp": "^1.0.5",
-                "supports-color": "^5.3.0"
-              }
-            },
-            "micromatch": {
-              "version": "3.1.10",
-              "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
-              "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
-              "dev": true,
-              "requires": {
-                "arr-diff": "^4.0.0",
-                "array-unique": "^0.3.2",
-                "braces": "^2.3.1",
-                "define-property": "^2.0.2",
-                "extend-shallow": "^3.0.2",
-                "extglob": "^2.0.4",
-                "fragment-cache": "^0.2.1",
-                "kind-of": "^6.0.2",
-                "nanomatch": "^1.2.9",
-                "object.pick": "^1.3.0",
-                "regex-not": "^1.0.0",
-                "snapdragon": "^0.8.1",
-                "to-regex": "^3.0.2"
-              }
-            }
-          }
-        },
-        "fs-extra": {
-          "version": "9.0.1",
-          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz",
-          "integrity": "sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==",
-          "dev": true,
-          "requires": {
-            "at-least-node": "^1.0.0",
-            "graceful-fs": "^4.2.0",
-            "jsonfile": "^6.0.1",
-            "universalify": "^1.0.0"
-          }
-        },
-        "glob": {
-          "version": "7.1.6",
-          "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
-          "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
-          "dev": true,
-          "requires": {
-            "fs.realpath": "^1.0.0",
-            "inflight": "^1.0.4",
-            "inherits": "2",
-            "minimatch": "^3.0.4",
-            "once": "^1.3.0",
-            "path-is-absolute": "^1.0.0"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "http-errors": {
-          "version": "1.7.2",
-          "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
-          "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
-          "dev": true,
-          "requires": {
-            "depd": "~1.1.2",
-            "inherits": "2.0.3",
-            "setprototypeof": "1.1.1",
-            "statuses": ">= 1.5.0 < 2",
-            "toidentifier": "1.0.0"
-          }
-        },
-        "icss-utils": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
-          "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==",
-          "dev": true,
-          "requires": {
-            "postcss": "^7.0.14"
-          }
-        },
-        "interpret": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz",
-          "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==",
-          "dev": true
-        },
-        "ipaddr.js": {
-          "version": "1.9.1",
-          "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
-          "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
-          "dev": true
-        },
-        "is-extendable": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
-          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
-          "dev": true,
-          "requires": {
-            "is-plain-object": "^2.0.4"
-          }
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          },
-          "dependencies": {
-            "has-flag": {
-              "version": "4.0.0",
-              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-              "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-              "dev": true
-            },
-            "supports-color": {
-              "version": "7.2.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-              "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^4.0.0"
-              }
-            }
-          }
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "jsonfile": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
-          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
-          "dev": true,
-          "requires": {
-            "graceful-fs": "^4.1.6",
-            "universalify": "^2.0.0"
-          },
-          "dependencies": {
-            "universalify": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
-              "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
-              "dev": true
-            }
-          }
-        },
-        "kind-of": {
-          "version": "6.0.3",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
-          "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
-          "dev": true
-        },
-        "loader-utils": {
-          "version": "1.4.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
-          "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^1.0.1"
-          },
-          "dependencies": {
-            "json5": {
-              "version": "1.0.1",
-              "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-              "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-              "dev": true,
-              "requires": {
-                "minimist": "^1.2.0"
-              }
-            }
-          }
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "lru-cache": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
-          "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-          "dev": true,
-          "requires": {
-            "yallist": "^4.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          },
-          "dependencies": {
-            "braces": {
-              "version": "3.0.2",
-              "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-              "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-              "dev": true,
-              "requires": {
-                "fill-range": "^7.0.1"
-              }
-            }
-          }
-        },
-        "mime-db": {
-          "version": "1.44.0",
-          "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
-          "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==",
-          "dev": true
-        },
-        "mime-types": {
-          "version": "2.1.27",
-          "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
-          "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
-          "dev": true,
-          "requires": {
-            "mime-db": "1.44.0"
-          }
-        },
-        "minizlib": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
-          "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
-          "dev": true,
-          "requires": {
-            "minipass": "^3.0.0",
-            "yallist": "^4.0.0"
-          }
-        },
-        "mkdirp": {
-          "version": "1.0.4",
-          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
-          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
-          "dev": true
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "negotiator": {
-          "version": "0.6.2",
-          "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
-          "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
-          "dev": true
-        },
-        "node-releases": {
-          "version": "1.1.66",
-          "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.66.tgz",
-          "integrity": "sha512-JHEQ1iWPGK+38VLB2H9ef2otU4l8s3yAMt9Xf934r6+ojCYDMHPMqvCc9TnzfeFSP1QEOeU6YZEd3+De0LTCgg==",
-          "dev": true
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-map": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
-          "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
-          "dev": true,
-          "requires": {
-            "aggregate-error": "^3.0.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "parseurl": {
-          "version": "1.3.3",
-          "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
-          "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "path-to-regexp": {
-          "version": "0.1.7",
-          "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
-          "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=",
-          "dev": true
-        },
-        "pkg-dir": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
-          "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
-          "dev": true,
-          "requires": {
-            "find-up": "^4.0.0"
-          }
-        },
-        "postcss": {
-          "version": "7.0.35",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz",
-          "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          },
-          "dependencies": {
-            "chalk": {
-              "version": "2.4.2",
-              "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-              "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-              "dev": true,
-              "requires": {
-                "ansi-styles": "^3.2.1",
-                "escape-string-regexp": "^1.0.5",
-                "supports-color": "^5.3.0"
-              },
-              "dependencies": {
-                "supports-color": {
-                  "version": "5.5.0",
-                  "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-                  "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-                  "dev": true,
-                  "requires": {
-                    "has-flag": "^3.0.0"
-                  }
-                }
-              }
-            },
-            "source-map": {
-              "version": "0.6.1",
-              "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-              "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-              "dev": true
-            },
-            "supports-color": {
-              "version": "6.1.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-              "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss-modules-extract-imports": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
-          "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
-          "dev": true,
-          "requires": {
-            "postcss": "^7.0.5"
-          }
-        },
-        "postcss-modules-local-by-default": {
-          "version": "3.0.3",
-          "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz",
-          "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==",
-          "dev": true,
-          "requires": {
-            "icss-utils": "^4.1.1",
-            "postcss": "^7.0.32",
-            "postcss-selector-parser": "^6.0.2",
-            "postcss-value-parser": "^4.1.0"
-          }
-        },
-        "postcss-modules-scope": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz",
-          "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==",
-          "dev": true,
-          "requires": {
-            "postcss": "^7.0.6",
-            "postcss-selector-parser": "^6.0.0"
-          }
-        },
-        "postcss-modules-values": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
-          "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==",
-          "dev": true,
-          "requires": {
-            "icss-utils": "^4.0.0",
-            "postcss": "^7.0.6"
-          }
-        },
-        "postcss-selector-parser": {
-          "version": "6.0.4",
-          "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz",
-          "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==",
-          "dev": true,
-          "requires": {
-            "cssesc": "^3.0.0",
-            "indexes-of": "^1.0.1",
-            "uniq": "^1.0.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "postcss-value-parser": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
-          "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==",
-          "dev": true
-        },
-        "proxy-addr": {
-          "version": "2.0.6",
-          "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz",
-          "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==",
-          "dev": true,
-          "requires": {
-            "forwarded": "~0.1.2",
-            "ipaddr.js": "1.9.1"
-          }
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "range-parser": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
-          "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
-          "dev": true
-        },
-        "raw-body": {
-          "version": "2.4.0",
-          "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz",
-          "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==",
-          "dev": true,
-          "requires": {
-            "bytes": "3.1.0",
-            "http-errors": "1.7.2",
-            "iconv-lite": "0.4.24",
-            "unpipe": "1.0.0"
-          }
-        },
-        "react-color": {
-          "version": "2.19.3",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz",
-          "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.15",
-            "lodash-es": "^4.17.15",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.3.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.0.tgz",
-          "integrity": "sha512-3GLWFAan2pbwBeoeNDoqGmSbrShORtgWfaWX0RJDivsUrpShh01saRM5RU/i4Zmf+whpBVEY5cA90Eq8Ub1N3w==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "regexpu-core": {
-          "version": "4.7.1",
-          "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
-          "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==",
-          "dev": true,
-          "requires": {
-            "regenerate": "^1.4.0",
-            "regenerate-unicode-properties": "^8.2.0",
-            "regjsgen": "^0.5.1",
-            "regjsparser": "^0.6.4",
-            "unicode-match-property-ecmascript": "^1.0.4",
-            "unicode-match-property-value-ecmascript": "^1.2.0"
-          }
-        },
-        "regjsgen": {
-          "version": "0.5.2",
-          "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
-          "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
-          "dev": true
-        },
-        "regjsparser": {
-          "version": "0.6.4",
-          "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
-          "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
-          "dev": true,
-          "requires": {
-            "jsesc": "~0.5.0"
-          },
-          "dependencies": {
-            "jsesc": {
-              "version": "0.5.0",
-              "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
-              "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
-              "dev": true
-            }
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "rimraf": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
-          "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
-          "dev": true,
-          "requires": {
-            "glob": "^7.1.3"
-          }
-        },
-        "schema-utils": {
-          "version": "2.7.1",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
-          "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
-          "dev": true,
-          "requires": {
-            "@types/json-schema": "^7.0.5",
-            "ajv": "^6.12.4",
-            "ajv-keywords": "^3.5.2"
-          }
-        },
-        "send": {
-          "version": "0.17.1",
-          "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz",
-          "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==",
-          "dev": true,
-          "requires": {
-            "debug": "2.6.9",
-            "depd": "~1.1.2",
-            "destroy": "~1.0.4",
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "etag": "~1.8.1",
-            "fresh": "0.5.2",
-            "http-errors": "~1.7.2",
-            "mime": "1.6.0",
-            "ms": "2.1.1",
-            "on-finished": "~2.3.0",
-            "range-parser": "~1.2.1",
-            "statuses": "~1.5.0"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              },
-              "dependencies": {
-                "ms": {
-                  "version": "2.0.0",
-                  "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-                  "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-                  "dev": true
-                }
-              }
-            },
-            "ms": {
-              "version": "2.1.1",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
-              "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
-              "dev": true
-            }
-          }
-        },
-        "serve-static": {
-          "version": "1.14.1",
-          "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz",
-          "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==",
-          "dev": true,
-          "requires": {
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "parseurl": "~1.3.3",
-            "send": "0.17.1"
-          }
-        },
-        "setprototypeof": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
-          "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==",
-          "dev": true
-        },
-        "ssri": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.0.tgz",
-          "integrity": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==",
-          "dev": true,
-          "requires": {
-            "minipass": "^3.1.1"
-          }
-        },
-        "statuses": {
-          "version": "1.5.0",
-          "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
-          "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
-          "dev": true
-        },
-        "style-loader": {
-          "version": "1.3.0",
-          "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz",
-          "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==",
-          "dev": true,
-          "requires": {
-            "loader-utils": "^2.0.0",
-            "schema-utils": "^2.7.0"
-          },
-          "dependencies": {
-            "loader-utils": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-              "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-              "dev": true,
-              "requires": {
-                "big.js": "^5.2.2",
-                "emojis-list": "^3.0.0",
-                "json5": "^2.1.2"
-              }
-            }
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "tapable": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
-          "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
-          "dev": true
-        },
-        "tar": {
-          "version": "6.0.5",
-          "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz",
-          "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==",
-          "dev": true,
-          "requires": {
-            "chownr": "^2.0.0",
-            "fs-minipass": "^2.0.0",
-            "minipass": "^3.0.0",
-            "minizlib": "^2.1.1",
-            "mkdirp": "^1.0.3",
-            "yallist": "^4.0.0"
-          }
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        },
-        "terser": {
-          "version": "4.8.0",
-          "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz",
-          "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==",
-          "dev": true,
-          "requires": {
-            "commander": "^2.20.0",
-            "source-map": "~0.6.1",
-            "source-map-support": "~0.5.12"
-          },
-          "dependencies": {
-            "commander": {
-              "version": "2.20.3",
-              "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
-              "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
-              "dev": true
-            },
-            "source-map": {
-              "version": "0.6.1",
-              "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-              "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-              "dev": true
-            }
-          }
-        },
-        "terser-webpack-plugin": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz",
-          "integrity": "sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==",
-          "dev": true,
-          "requires": {
-            "cacache": "^15.0.5",
-            "find-cache-dir": "^3.3.1",
-            "jest-worker": "^26.2.1",
-            "p-limit": "^3.0.2",
-            "schema-utils": "^2.6.6",
-            "serialize-javascript": "^4.0.0",
-            "source-map": "^0.6.1",
-            "terser": "^4.8.0",
-            "webpack-sources": "^1.4.3"
-          },
-          "dependencies": {
-            "find-cache-dir": {
-              "version": "3.3.1",
-              "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
-              "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==",
-              "dev": true,
-              "requires": {
-                "commondir": "^1.0.1",
-                "make-dir": "^3.0.2",
-                "pkg-dir": "^4.1.0"
-              }
-            },
-            "make-dir": {
-              "version": "3.1.0",
-              "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
-              "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
-              "dev": true,
-              "requires": {
-                "semver": "^6.0.0"
-              }
-            },
-            "p-limit": {
-              "version": "3.0.2",
-              "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.0.2.tgz",
-              "integrity": "sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==",
-              "dev": true,
-              "requires": {
-                "p-try": "^2.0.0"
-              }
-            },
-            "semver": {
-              "version": "6.3.0",
-              "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-              "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-              "dev": true
-            },
-            "source-map": {
-              "version": "0.6.1",
-              "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-              "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-              "dev": true
-            }
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        },
-        "type-is": {
-          "version": "1.6.18",
-          "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
-          "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
-          "dev": true,
-          "requires": {
-            "media-typer": "0.3.0",
-            "mime-types": "~2.1.24"
-          }
-        },
-        "universalify": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz",
-          "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==",
-          "dev": true
-        },
-        "url-loader": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz",
-          "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==",
-          "dev": true,
-          "requires": {
-            "loader-utils": "^2.0.0",
-            "mime-types": "^2.1.27",
-            "schema-utils": "^3.0.0"
-          },
-          "dependencies": {
-            "loader-utils": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-              "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-              "dev": true,
-              "requires": {
-                "big.js": "^5.2.2",
-                "emojis-list": "^3.0.0",
-                "json5": "^2.1.2"
-              }
-            },
-            "schema-utils": {
-              "version": "3.0.0",
-              "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz",
-              "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==",
-              "dev": true,
-              "requires": {
-                "@types/json-schema": "^7.0.6",
-                "ajv": "^6.12.5",
-                "ajv-keywords": "^3.5.2"
-              }
-            }
-          }
-        },
-        "yallist": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
-          "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/core-events": {
-      "version": "5.3.19",
-      "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-5.3.19.tgz",
-      "integrity": "sha512-lh78ySqMS7pDdMJAQAe35d1I/I4yPTqp09Cq0YIYOxx9BQZhah4DZTV1QIZt22H5p2lPb5MWLkWSxBaexZnz8A==",
-      "dev": true,
-      "requires": {
-        "core-js": "^3.0.1"
-      }
-    },
-    "@storybook/csf": {
-      "version": "0.0.1",
-      "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz",
-      "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==",
-      "dev": true,
-      "requires": {
-        "lodash": "^4.17.15"
-      }
-    },
-    "@storybook/node-logger": {
-      "version": "5.3.19",
-      "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-5.3.19.tgz",
-      "integrity": "sha512-hKshig/u5Nj9fWy0OsyU04yqCxr0A9pydOHIassr4fpLAaePIN2YvqCqE2V+TxQHjZUnowSSIhbXrGt0DI5q2A==",
-      "dev": true,
-      "requires": {
-        "@types/npmlog": "^4.1.2",
-        "chalk": "^3.0.0",
-        "core-js": "^3.0.1",
-        "npmlog": "^4.1.2",
-        "pretty-hrtime": "^1.0.3",
-        "regenerator-runtime": "^0.13.3"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "4.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
-          "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
-          "dev": true,
-          "requires": {
-            "@types/color-name": "^1.1.1",
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
-          "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
-          "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "@storybook/postinstall": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-6.0.28.tgz",
-      "integrity": "sha512-XskRT8G3QQ9kW3xRuiXrM/77IZXu6pYLK0cNuVSiWqvd5FDQ0lPYdaeiZv75ZAxVBtoKFYISLu89rhGPosGkUA==",
-      "dev": true,
-      "requires": {
-        "core-js": "^3.0.1"
-      }
-    },
-    "@storybook/preset-typescript": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/@storybook/preset-typescript/-/preset-typescript-3.0.0.tgz",
-      "integrity": "sha512-tEbFWg5h/8SPfSCNXPxyqY418704K14q5H/xb9t0ARMXK3kZPTkKqKvdTvYg3UEKBBYbc+GA57UWaL+9b+DbDg==",
-      "dev": true,
-      "requires": {
-        "@babel/preset-typescript": "^7.8.3",
-        "@storybook/node-logger": "^5.3.17",
-        "@types/babel__core": "^7.1.6",
-        "babel-preset-typescript-vue": "^1.0.3",
-        "fork-ts-checker-webpack-plugin": "^4.1.0"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
-          "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "fork-ts-checker-webpack-plugin": {
-          "version": "4.1.6",
-          "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz",
-          "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.5.5",
-            "chalk": "^2.4.1",
-            "micromatch": "^3.1.10",
-            "minimatch": "^3.0.4",
-            "semver": "^5.6.0",
-            "tapable": "^1.0.0",
-            "worker-rpc": "^0.1.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "tapable": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
-          "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/react": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/react/-/react-6.0.28.tgz",
-      "integrity": "sha512-a0X5htjhqlBYQbuQlllTHD8VBeiEUs0UMU3lnJv79B2B2BiIaXK0w5ptyQyiOznP5OzSLnjZEQwmiefepFpr3g==",
-      "dev": true,
-      "requires": {
-        "@babel/preset-flow": "^7.0.0",
-        "@babel/preset-react": "^7.0.0",
-        "@storybook/addons": "6.0.28",
-        "@storybook/core": "6.0.28",
-        "@storybook/node-logger": "6.0.28",
-        "@storybook/semver": "^7.3.2",
-        "@svgr/webpack": "^5.4.0",
-        "@types/webpack-env": "^1.15.2",
-        "babel-plugin-add-react-displayname": "^0.0.5",
-        "babel-plugin-named-asset-import": "^0.3.1",
-        "babel-plugin-react-docgen": "^4.2.1",
-        "core-js": "^3.0.1",
-        "global": "^4.3.2",
-        "lodash": "^4.17.15",
-        "prop-types": "^15.7.2",
-        "react-dev-utils": "^10.0.0",
-        "react-docgen-typescript-plugin": "^0.5.2",
-        "regenerator-runtime": "^0.13.3",
-        "ts-dedent": "^1.1.1",
-        "webpack": "^4.43.0"
-      },
-      "dependencies": {
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/node-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.0.28.tgz",
-          "integrity": "sha512-foGRKU9n6tRcN+Os2XJvsWMQQoUubUjuX6/pIyh+rGVOfOxbK56logE/UDOAsdibGMiof9MOldNeGmYS51vPCg==",
-          "dev": true,
-          "requires": {
-            "@types/npmlog": "^4.1.2",
-            "chalk": "^4.0.0",
-            "core-js": "^3.0.1",
-            "npmlog": "^4.1.2",
-            "pretty-hrtime": "^1.0.3"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@storybook/router": {
-      "version": "5.3.19",
-      "resolved": "https://registry.npmjs.org/@storybook/router/-/router-5.3.19.tgz",
-      "integrity": "sha512-yNClpuP7BXQlBTRf6Ggle3/R349/k6kvI5Aim4jf6X/2cFVg2pzBXDAF41imNm9PcvdxwabQLm6I48p7OvKr/w==",
-      "dev": true,
-      "requires": {
-        "@reach/router": "^1.2.1",
-        "@storybook/csf": "0.0.1",
-        "@types/reach__router": "^1.2.3",
-        "core-js": "^3.0.1",
-        "global": "^4.3.2",
-        "lodash": "^4.17.15",
-        "memoizerific": "^1.11.3",
-        "qs": "^6.6.0",
-        "util-deprecate": "^1.0.2"
-      },
-      "dependencies": {
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/semver": {
-      "version": "7.3.2",
-      "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz",
-      "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==",
-      "dev": true,
-      "requires": {
-        "core-js": "^3.6.5",
-        "find-up": "^4.1.0"
-      },
-      "dependencies": {
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/source-loader": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/source-loader/-/source-loader-6.0.28.tgz",
-      "integrity": "sha512-oBWQlIS6fgkcPt5CzE7ASqNKKxlks/1b1GxPr95fLiIhAkPs64DdvZ+6QP1req62CI4zBOyFj4wZHX/sYpfPzQ==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "6.0.28",
-        "@storybook/client-logger": "6.0.28",
-        "@storybook/csf": "0.0.1",
-        "core-js": "^3.0.1",
-        "estraverse": "^4.2.0",
-        "global": "^4.3.2",
-        "loader-utils": "^2.0.0",
-        "lodash": "^4.17.15",
-        "prettier": "~2.0.5",
-        "regenerator-runtime": "^0.13.3"
-      },
-      "dependencies": {
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "loader-utils": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-          "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^2.1.2"
-          }
-        },
-        "prettier": {
-          "version": "2.0.5",
-          "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.0.5.tgz",
-          "integrity": "sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==",
-          "dev": true
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@storybook/theming": {
-      "version": "5.3.19",
-      "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-5.3.19.tgz",
-      "integrity": "sha512-ecG+Rq3hc1GOzKHamYnD4wZ0PEP9nNg0mXbC3RhbxfHj+pMMCWWmx9B2Uu75SL1PTT8WcfkFO0hU/0IO84Pzlg==",
-      "dev": true,
-      "requires": {
-        "@emotion/core": "^10.0.20",
-        "@emotion/styled": "^10.0.17",
-        "@storybook/client-logger": "5.3.19",
-        "core-js": "^3.0.1",
-        "deep-object-diff": "^1.1.0",
-        "emotion-theming": "^10.0.19",
-        "global": "^4.3.2",
-        "memoizerific": "^1.11.3",
-        "polished": "^3.3.1",
-        "prop-types": "^15.7.2",
-        "resolve-from": "^5.0.0",
-        "ts-dedent": "^1.1.0"
-      },
-      "dependencies": {
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        }
-      }
-    },
-    "@storybook/ui": {
-      "version": "6.0.28",
-      "resolved": "https://registry.npmjs.org/@storybook/ui/-/ui-6.0.28.tgz",
-      "integrity": "sha512-LGYW+hGiRu+5QRrZXamEt7aoHWQMfYWAaSO8hJldD5lfIXUXcoWUm0Mx7CRpUhw22LzmidrwZijyxlTnuTRZyw==",
-      "dev": true,
-      "requires": {
-        "@emotion/core": "^10.0.20",
-        "@storybook/addons": "6.0.28",
-        "@storybook/api": "6.0.28",
-        "@storybook/channels": "6.0.28",
-        "@storybook/client-logger": "6.0.28",
-        "@storybook/components": "6.0.28",
-        "@storybook/core-events": "6.0.28",
-        "@storybook/router": "6.0.28",
-        "@storybook/semver": "^7.3.2",
-        "@storybook/theming": "6.0.28",
-        "@types/markdown-to-jsx": "^6.11.0",
-        "copy-to-clipboard": "^3.0.8",
-        "core-js": "^3.0.1",
-        "core-js-pure": "^3.0.1",
-        "emotion-theming": "^10.0.19",
-        "fuse.js": "^3.6.1",
-        "global": "^4.3.2",
-        "lodash": "^4.17.15",
-        "markdown-to-jsx": "^6.11.4",
-        "memoizerific": "^1.11.3",
-        "polished": "^3.4.4",
-        "qs": "^6.6.0",
-        "react": "^16.8.3",
-        "react-dom": "^16.8.3",
-        "react-draggable": "^4.0.3",
-        "react-helmet-async": "^1.0.2",
-        "react-hotkeys": "2.0.0",
-        "react-sizeme": "^2.6.7",
-        "regenerator-runtime": "^0.13.3",
-        "resolve-from": "^5.0.0",
-        "store2": "^2.7.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.0.28.tgz",
-          "integrity": "sha512-3Brf9w/u2sw0huarcO1iLFBmGt7KtApRxX4bFcsRiPPFxliDrmb1sAsd37UbKp8qBSw1U6FByjuTJQ7xn/TDhg==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.0.28",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/router": "6.0.28",
-            "@storybook/theming": "6.0.28",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.3"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.0.28.tgz",
-          "integrity": "sha512-6dWjz5HSM3v8c+J0Z/lGYGujs4ZKSt1lJUWaH/MPvuoeDiVm+1jKLwWTAMlMnOP9o8xgNTuQtEbQkNG2D66oQA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.0.28",
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/core-events": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.0.28",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.0.28",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "react": "^16.8.3",
-            "regenerator-runtime": "^0.13.3",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.0.28.tgz",
-          "integrity": "sha512-Ow1fR0GGdlfAQlagOrXHs7QQlCQ0xTKoznQgUFv1KxKw/bMwMtTJcpCYGSAuDzCzypCIR4EHtIHZxJsd/A2ieg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^1.1.1",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.0.28.tgz",
-          "integrity": "sha512-FOgeRQknrlm5PTgfY0THPrcrDyxu4ImuFOn+VWQW60mf9ShJQl45BEgm4bm9hbblYYnVHtnskWUOJfxqhHvgjg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/components": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.0.28.tgz",
-          "integrity": "sha512-rp18w+xC5/ATQThnUR6Rv2cg/DAokbV88uZLPCGHX8HsPY2jFPLyCsWnNiIHBF/SfUCjIlljChlX3bzGk+SQUA==",
-          "dev": true,
-          "requires": {
-            "@storybook/client-logger": "6.0.28",
-            "@storybook/csf": "0.0.1",
-            "@storybook/theming": "6.0.28",
-            "@types/overlayscrollbars": "^1.9.0",
-            "@types/react-color": "^3.0.1",
-            "@types/react-syntax-highlighter": "11.0.4",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "markdown-to-jsx": "^6.11.4",
-            "memoizerific": "^1.11.3",
-            "overlayscrollbars": "^1.10.2",
-            "polished": "^3.4.4",
-            "popper.js": "^1.14.7",
-            "react": "^16.8.3",
-            "react-color": "^2.17.0",
-            "react-dom": "^16.8.3",
-            "react-popper-tooltip": "^2.11.0",
-            "react-syntax-highlighter": "^12.2.1",
-            "react-textarea-autosize": "^8.1.1",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.0.28.tgz",
-          "integrity": "sha512-YT691sQEyoTabXZGCeCXulIO31aXfiWpvE7vW7t3F/uo/Xv6aiNcY/Fzy1vRNcbgCAf3EWsBtzb1eh0FCJkyuA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.0.28.tgz",
-          "integrity": "sha512-omp2LRq3LYc7A89PM0WpJnioedzCme3jJbJXRR7tFva4N+aP6JGaFTJZZdk2NHXHxerGfWG0Cs9G6HNAw9nN1A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.0.28",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.0.28.tgz",
-          "integrity": "sha512-dcZXDkO1LYcnWUejAzvjl3OPBnAB1m2+fzmRx0dBrgm2O+fcNXTadQ6SXZYKaSz37lS+aGtYG7I9nurwhXMMXA==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.0.20",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.17",
-            "@storybook/client-logger": "6.0.28",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^1.1.1"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "fuse.js": {
-          "version": "3.6.1",
-          "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-3.6.1.tgz",
-          "integrity": "sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "highlight.js": {
-          "version": "9.15.10",
-          "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz",
-          "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "lowlight": {
-          "version": "1.12.1",
-          "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.12.1.tgz",
-          "integrity": "sha512-OqaVxMGIESnawn+TU/QMV5BJLbUghUfjDWPAtFqDYDmDtr4FnB+op8xM+pR7nKlauHNUHXGt0VgWatFB8voS5w==",
-          "dev": true,
-          "requires": {
-            "fault": "^1.0.2",
-            "highlight.js": "~9.15.0"
-          }
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "react-color": {
-          "version": "2.19.3",
-          "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz",
-          "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
-          "dev": true,
-          "requires": {
-            "@icons/material": "^0.2.4",
-            "lodash": "^4.17.15",
-            "lodash-es": "^4.17.15",
-            "material-colors": "^1.2.1",
-            "prop-types": "^15.5.10",
-            "reactcss": "^1.2.0",
-            "tinycolor2": "^1.4.1"
-          }
-        },
-        "react-syntax-highlighter": {
-          "version": "12.2.1",
-          "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-12.2.1.tgz",
-          "integrity": "sha512-CTsp0ZWijwKRYFg9xhkWD4DSpQqE4vb2NKVMdPAkomnILSmsNBHE0n5GuI5zB+PU3ySVvXvdt9jo+ViD9XibCA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.3.1",
-            "highlight.js": "~9.15.1",
-            "lowlight": "1.12.1",
-            "prismjs": "^1.8.4",
-            "refractor": "^2.4.1"
-          }
-        },
-        "react-textarea-autosize": {
-          "version": "8.3.0",
-          "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.0.tgz",
-          "integrity": "sha512-3GLWFAan2pbwBeoeNDoqGmSbrShORtgWfaWX0RJDivsUrpShh01saRM5RU/i4Zmf+whpBVEY5cA90Eq8Ub1N3w==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.10.2",
-            "use-composed-ref": "^1.0.0",
-            "use-latest": "^1.0.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.0.2",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.0.2.tgz",
-          "integrity": "sha512-XCrDHGbinczsscs8LXFr9jDhvy37yBk9piB7FJrCfxE8oP66WDkolNMpaBkWYgQqB9dQGBGtTDzGQPedc9KJmw==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.19",
-            "memoizerific": "^1.11.3"
-          }
-        }
-      }
-    },
-    "@superset-ui/chart-controls": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/chart-controls/-/chart-controls-0.17.5.tgz",
-      "integrity": "sha512-GRvC0JPK6XEZIr680fVE1FUdf9KvCHwLKF29aoXz9V16aQltNS53Ost+gYm9K7HESD5lfDJyol2avwxeZxdTYg==",
-      "requires": {
-        "@superset-ui/core": "0.17.5",
-        "lodash": "^4.17.15",
-        "prop-types": "^15.7.2"
-      }
-    },
-    "@superset-ui/core": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/core/-/core-0.17.5.tgz",
-      "integrity": "sha512-9yNsskd+4XHcEI8YVJ2+aS+kun/HQx2p7ssBggfRR5ponOHoudLtNbDLxDtO1C1l+eMabr3YpWaebGB3xQd96w==",
-      "requires": {
-        "@babel/runtime": "^7.1.2",
-        "@emotion/core": "^10.0.28",
-        "@emotion/styled": "^10.0.27",
-        "@types/d3-format": "^1.3.0",
-        "@types/d3-interpolate": "^1.3.1",
-        "@types/d3-scale": "^2.1.1",
-        "@types/d3-time": "^1.0.9",
-        "@types/d3-time-format": "^2.1.0",
-        "@types/lodash": "^4.14.149",
-        "@types/rison": "0.0.6",
-        "@types/seedrandom": "^2.4.28",
-        "@vx/responsive": "^0.0.199",
-        "csstype": "^2.6.4",
-        "d3-format": "^1.3.2",
-        "d3-interpolate": "^1.4.0",
-        "d3-scale": "^3.0.0",
-        "d3-time": "^1.0.10",
-        "d3-time-format": "^2.2.0",
-        "emotion-theming": "^10.0.27",
-        "fetch-retry": "^4.0.1",
-        "jed": "^1.1.1",
-        "lodash": "^4.17.11",
-        "pretty-ms": "^7.0.0",
-        "react-error-boundary": "^1.2.5",
-        "reselect": "^4.0.0",
-        "rison": "^0.1.1",
-        "seedrandom": "^3.0.5",
-        "whatwg-fetch": "^3.0.0"
-      },
-      "dependencies": {
-        "@vx/responsive": {
-          "version": "0.0.199",
-          "resolved": "https://registry.npmjs.org/@vx/responsive/-/responsive-0.0.199.tgz",
-          "integrity": "sha512-ONrmLUAG+8wzD3cn/EmsuZh6JHeyejqup3ZsV25t04VaVJAVQAJukAfNdH8YiwSJu0zSo+txkBTfrnOmFyQLOw==",
-          "requires": {
-            "@types/lodash": "^4.14.146",
-            "@types/react": "*",
-            "lodash": "^4.17.10",
-            "prop-types": "^15.6.1",
-            "resize-observer-polyfill": "1.5.1"
-          }
-        },
-        "d3-array": {
-          "version": "2.11.0",
-          "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz",
-          "integrity": "sha512-26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw==",
-          "requires": {
-            "internmap": "^1.0.0"
-          }
-        },
-        "d3-interpolate": {
-          "version": "1.4.0",
-          "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz",
-          "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==",
-          "requires": {
-            "d3-color": "1"
-          }
-        },
-        "d3-scale": {
-          "version": "3.2.3",
-          "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-3.2.3.tgz",
-          "integrity": "sha512-8E37oWEmEzj57bHcnjPVOBS3n4jqakOeuv1EDdQSiSrYnMCBdMd3nc4HtKk7uia8DUHcY/CGuJ42xxgtEYrX0g==",
-          "requires": {
-            "d3-array": "^2.3.0",
-            "d3-format": "1 - 2",
-            "d3-interpolate": "1.2.0 - 2",
-            "d3-time": "1 - 2",
-            "d3-time-format": "2 - 3"
-          }
-        },
-        "d3-time-format": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz",
-          "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==",
-          "requires": {
-            "d3-time": "1"
-          }
-        }
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-calendar": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-calendar/-/legacy-plugin-chart-calendar-0.17.5.tgz",
-      "integrity": "sha512-Rf5nEQ1z0lSCW6k8AqVQMifeFi6HAeXYHIFCltt/egCKYlyz3Pra8SBW/L5c0hH4mdSua9UZmKraTUd4ITsFtQ==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3-array": "^2.0.3",
-        "d3-selection": "^1.4.0",
-        "d3-tip": "^0.9.1",
-        "prop-types": "^15.6.2"
-      },
-      "dependencies": {
-        "d3-array": {
-          "version": "2.11.0",
-          "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz",
-          "integrity": "sha512-26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw==",
-          "requires": {
-            "internmap": "^1.0.0"
-          }
-        }
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-chord": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-chord/-/legacy-plugin-chart-chord-0.17.5.tgz",
-      "integrity": "sha512-EUbnX2Hah3z353SyUWWqk19R8pIWz26nvjvO4Y6a2i/0I9ukKUGgpQlyhgIFLL4SPyRwGjdStcsFNQeoMGLheQ==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "prop-types": "^15.6.2",
-        "react": "^16.13.1"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-country-map": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-country-map/-/legacy-plugin-chart-country-map-0.17.5.tgz",
-      "integrity": "sha512-dzqTZtx1oKrKT4JFGsGAx2aEmGsx7VziDo4SUaLiq1W7W7S/ABjCq2Mu9M4NRT8lkowJq3WAEgVtMy+DzONkmg==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "d3-array": "^2.0.3",
-        "prop-types": "^15.6.2"
-      },
-      "dependencies": {
-        "d3-array": {
-          "version": "2.11.0",
-          "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz",
-          "integrity": "sha512-26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw==",
-          "requires": {
-            "internmap": "^1.0.0"
-          }
-        }
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-event-flow": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-event-flow/-/legacy-plugin-chart-event-flow-0.17.5.tgz",
-      "integrity": "sha512-zjC5PLRaimevhZxAAjy/oAtvKxNi0cWSwdy05p//1k/ypuVsmjws+k1SlEbB8ZZwMYBVz1WbYKy+u5uqcc+O8g==",
-      "requires": {
-        "@data-ui/event-flow": "^0.0.84",
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-force-directed": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-force-directed/-/legacy-plugin-chart-force-directed-0.17.5.tgz",
-      "integrity": "sha512-kvU0xW23aWB/QUl6JgbyGJ52b4mFhdoUo92YdKicbKsI2rcZ+VEFDwJLCmIe3oosrQID0d9fnZQ/XctqeORB1Q==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "prop-types": "^15.7.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-heatmap": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-heatmap/-/legacy-plugin-chart-heatmap-0.17.5.tgz",
-      "integrity": "sha512-wsfmyyToMDWOBLrPa71RWJ4NLTzCZ/FscKVHYYyYJltpDr/PGhPeiHp2Ma5RxglMJivdBxgewONKjVjm1tloRw==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "d3-svg-legend": "^1.x",
-        "d3-tip": "^0.9.1",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-histogram": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-histogram/-/legacy-plugin-chart-histogram-0.17.5.tgz",
-      "integrity": "sha512-fcLzgpjospFLfplvGbMZIX7iys5ULNabDa+CAI+9tF+e+v3ZaYWYvNo7BXJrmW1Hn9ufNwDmL2CN8J5V5qGWiA==",
-      "requires": {
-        "@data-ui/histogram": "^0.0.84",
-        "@data-ui/theme": "^0.0.84",
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "@vx/legend": "^0.0.198",
-        "@vx/responsive": "^0.0.199",
-        "@vx/scale": "^0.0.197",
-        "prop-types": "^15.6.2"
-      },
-      "dependencies": {
-        "@vx/group": {
-          "version": "0.0.198",
-          "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.198.tgz",
-          "integrity": "sha512-0PivE+fWZlPkSzFO/is5m4VSSv3pg+sS1yxYAZHbNffUvn472WDWptriHvoUIPQe0lOXhTSrc73UQzew9GtW/g==",
-          "requires": {
-            "@types/classnames": "^2.2.9",
-            "@types/react": "*",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.6.2"
-          }
-        },
-        "@vx/legend": {
-          "version": "0.0.198",
-          "resolved": "https://registry.npmjs.org/@vx/legend/-/legend-0.0.198.tgz",
-          "integrity": "sha512-3S2/yP6IvkkhUlTj6In5M1OrzY1OaT1D06hRxuiOLAbaXTerhbUGwIjGSNoovQM6JebFlbWnnA5xH1SKgw5GGA==",
-          "requires": {
-            "@types/classnames": "^2.2.9",
-            "@types/d3-scale": "^2.1.1",
-            "@types/react": "*",
-            "@vx/group": "0.0.198",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/responsive": {
-          "version": "0.0.199",
-          "resolved": "https://registry.npmjs.org/@vx/responsive/-/responsive-0.0.199.tgz",
-          "integrity": "sha512-ONrmLUAG+8wzD3cn/EmsuZh6JHeyejqup3ZsV25t04VaVJAVQAJukAfNdH8YiwSJu0zSo+txkBTfrnOmFyQLOw==",
-          "requires": {
-            "@types/lodash": "^4.14.146",
-            "@types/react": "*",
-            "lodash": "^4.17.10",
-            "prop-types": "^15.6.1",
-            "resize-observer-polyfill": "1.5.1"
-          }
-        },
-        "@vx/scale": {
-          "version": "0.0.197",
-          "resolved": "https://registry.npmjs.org/@vx/scale/-/scale-0.0.197.tgz",
-          "integrity": "sha512-FF0POm9rh66I3Om5DsuxynwWU+Q645aTF47vgP2dVDeOOq3Oet7CZzmXLDh3W6nVcxvzq1UdPwu94dto2PUfhg==",
-          "requires": {
-            "@types/d3-scale": "^2.1.1",
-            "d3-scale": "^2.2.2"
-          }
-        },
-        "d3-scale": {
-          "version": "2.2.2",
-          "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz",
-          "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==",
-          "requires": {
-            "d3-array": "^1.2.0",
-            "d3-collection": "1",
-            "d3-format": "1",
-            "d3-interpolate": "1",
-            "d3-time": "1",
-            "d3-time-format": "2"
-          }
-        }
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-horizon": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-horizon/-/legacy-plugin-chart-horizon-0.17.5.tgz",
-      "integrity": "sha512-1rkv+sbC6VKl5f0m/CtnYRueplr+bl5lLuseZRks0DPjO5m1VUGQrWsa2wCrCui0GmAdqogdJCQVcQF3I2aZxQ==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3-array": "^2.0.3",
-        "d3-scale": "^3.0.1",
-        "prop-types": "^15.6.2"
-      },
-      "dependencies": {
-        "d3-array": {
-          "version": "2.11.0",
-          "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz",
-          "integrity": "sha512-26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw==",
-          "requires": {
-            "internmap": "^1.0.0"
-          }
-        },
-        "d3-scale": {
-          "version": "3.2.3",
-          "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-3.2.3.tgz",
-          "integrity": "sha512-8E37oWEmEzj57bHcnjPVOBS3n4jqakOeuv1EDdQSiSrYnMCBdMd3nc4HtKk7uia8DUHcY/CGuJ42xxgtEYrX0g==",
-          "requires": {
-            "d3-array": "^2.3.0",
-            "d3-format": "1 - 2",
-            "d3-interpolate": "1.2.0 - 2",
-            "d3-time": "1 - 2",
-            "d3-time-format": "2 - 3"
-          }
-        }
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-map-box": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-map-box/-/legacy-plugin-chart-map-box-0.17.5.tgz",
-      "integrity": "sha512-gDhmAL8qULqhHdDRRYsfMbqEmx3m3ND2sjPtFGtAZa5HOUGWqBzHtW6vAgRetO6e2EU//6EZRa/MO1KNykPm1w==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "immutable": "^3.8.2",
-        "mapbox-gl": "^0.53.0",
-        "prop-types": "^15.6.2",
-        "react-map-gl": "^4.0.10",
-        "supercluster": "^4.1.1",
-        "viewport-mercator-project": "^6.1.1"
-      },
-      "dependencies": {
-        "immutable": {
-          "version": "3.8.2",
-          "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz",
-          "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM="
-        }
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-paired-t-test": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-paired-t-test/-/legacy-plugin-chart-paired-t-test-0.17.5.tgz",
-      "integrity": "sha512-3MR1OsZ+NQixK5iSjTUmM5NKvNWqB3wq3h5RdS5VfpmjjiJzMqB3ntKr6jwvc+9BY/UR0ffgwMjSe7Vg3RZZIg==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "distributions": "^1.0.0",
-        "prop-types": "^15.6.2",
-        "reactable-arc": "0.15.0"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-parallel-coordinates": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-parallel-coordinates/-/legacy-plugin-chart-parallel-coordinates-0.17.5.tgz",
-      "integrity": "sha512-aXlmOs8JGdaoq+3XnSMTK8Kj8YRKdgGxB54Kr3uI16aw7vgwO8iBq0YgI88+XLJqiKHAsJ57mmDrtCV9UxB7Aw==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "prop-types": "^15.7.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-partition": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-partition/-/legacy-plugin-chart-partition-0.17.5.tgz",
-      "integrity": "sha512-LKtJ7+chkL9Vz0hKX0no+a/9/fa4n4fQO5CMSICwlNcxvURznhkKddYn5QD5fFjdFXM/JUv+jXEX9zniq/0KyA==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "d3-hierarchy": "^1.1.8",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-pivot-table": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-pivot-table/-/legacy-plugin-chart-pivot-table-0.17.5.tgz",
-      "integrity": "sha512-7e/8J16ZIyOe006XDieOpJ5ajk4C0OGkbA7m/OaFqH7cjgpWsfM7lL4SgWtmSmn8vJlidpnIy0J1BLM9Lnh67A==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "datatables.net-bs": "^1.10.15",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-rose": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-rose/-/legacy-plugin-chart-rose-0.17.5.tgz",
-      "integrity": "sha512-r6ztR7M6WD7BywPM5pmqlb6+exB1sUE4vIScs3h80eeAQsWtaGMevzTvkNetYv3t4vZiSvelcl1Z9OpcJgar6Q==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "nvd3": "1.8.6",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-sankey": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-sankey/-/legacy-plugin-chart-sankey-0.17.5.tgz",
-      "integrity": "sha512-HYKbeqRfJYTiGenv36U6rcNg/gRepeEMwGTWYjevVg6UNNkR5e+/efbFeX+ypMePHRtkaYX+TIe3oAFzkpk9gw==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "d3-sankey": "^0.4.2",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-sankey-loop": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-sankey-loop/-/legacy-plugin-chart-sankey-loop-0.17.5.tgz",
-      "integrity": "sha512-6YrhvSMSB8c7UhCVP0taLONK5dNkwxNEiGSOjuFdxqElPE/8mTPHUAPHlG+NIYECV8tcJq76/8C7V/RUIj0Hcw==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3-sankey-diagram": "^0.7.3",
-        "d3-selection": "^1.4.0",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-sunburst": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-sunburst/-/legacy-plugin-chart-sunburst-0.17.5.tgz",
-      "integrity": "sha512-rw5QqAbx7BeHdnJDM9nYVyTHH6Yzp2hHB2C0bHXVPIBe4L2zu71s/T8vRpGqdgFpumdpo1TgZhnrNqx4fgo3yw==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-treemap": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-treemap/-/legacy-plugin-chart-treemap-0.17.5.tgz",
-      "integrity": "sha512-HCv4EiKdu8NLcW4YjXcYUSKfoj+Wj+E3UIHvz9YNh3unO2fe926DohWEQO/y24xz59s1Ha4FmJuPS4cFD5bq6w==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3-hierarchy": "^1.1.8",
-        "d3-selection": "^1.4.0",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "@superset-ui/legacy-plugin-chart-world-map": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-plugin-chart-world-map/-/legacy-plugin-chart-world-map-0.17.5.tgz",
-      "integrity": "sha512-aOJvC9uhHaJuwGWoxjB70VIG8fDljXG1skVPX7m7fjvrw2QIanv3c6mENWFYjCXjtTNjXj3XXly8d8BAv94Emw==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "d3-array": "^2.4.0",
-        "d3-color": "^1.4.1",
-        "datamaps": "^0.5.8",
-        "prop-types": "^15.6.2"
-      },
-      "dependencies": {
-        "d3-array": {
-          "version": "2.11.0",
-          "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz",
-          "integrity": "sha512-26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw==",
-          "requires": {
-            "internmap": "^1.0.0"
-          }
-        },
-        "d3-color": {
-          "version": "1.4.1",
-          "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz",
-          "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q=="
-        }
-      }
-    },
-    "@superset-ui/legacy-preset-chart-big-number": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-preset-chart-big-number/-/legacy-preset-chart-big-number-0.17.5.tgz",
-      "integrity": "sha512-dhXXSR20ekNgzVysT0LuyKgTF9Kr8wM9tceQK/zSNdpcJu4zBPuau1wSKKNm0uuuB9KrwYTNMd4JgtgrrGDqYQ==",
-      "requires": {
-        "@data-ui/xy-chart": "^0.0.84",
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "@types/d3-color": "^1.2.2",
-        "@types/shortid": "^0.0.29",
-        "d3-color": "^1.2.3",
-        "shortid": "^2.2.14"
-      }
-    },
-    "@superset-ui/legacy-preset-chart-deckgl": {
-      "version": "0.4.1",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-preset-chart-deckgl/-/legacy-preset-chart-deckgl-0.4.1.tgz",
-      "integrity": "sha512-3THN+WM8HUU1NlV3VNXRVS1j2jH33CmVAdyPNB35RqtwkY+udgFGOxm0lXumcUElht/3ROGMPvcwo1SXijVuLA==",
-      "requires": {
-        "@math.gl/web-mercator": "^3.2.2",
-        "@types/d3-array": "^2.0.0",
-        "bootstrap-slider": "^10.0.0",
-        "d3-array": "^1.2.4",
-        "d3-color": "^1.2.0",
-        "d3-scale": "^2.1.2",
-        "deck.gl": "7.1.11",
-        "jquery": "^3.4.1",
-        "lodash": "^4.17.15",
-        "mapbox-gl": "^0.53.0",
-        "moment": "^2.20.1",
-        "mousetrap": "^1.6.1",
-        "prop-types": "^15.6.0",
-        "react-bootstrap-slider": "2.1.5",
-        "react-map-gl": "^4.0.10",
-        "underscore": "^1.8.3",
-        "urijs": "^1.18.10",
-        "xss": "^1.0.6"
-      }
-    },
-    "@superset-ui/legacy-preset-chart-nvd3": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/legacy-preset-chart-nvd3/-/legacy-preset-chart-nvd3-0.17.5.tgz",
-      "integrity": "sha512-0+xxCz97Yg8bA/2uN4CHrhfzSyPQViB0p1lxKVgi8S8Gd/AX3oDD3XCn84kyAFzo3aNmD27KpFfZN/GwzDJDGg==",
-      "requires": {
-        "@data-ui/xy-chart": "^0.0.84",
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "d3": "^3.5.17",
-        "d3-tip": "^0.9.1",
-        "dompurify": "^2.0.6",
-        "fast-safe-stringify": "^2.0.6",
-        "lodash": "^4.17.11",
-        "mathjs": "^8.0.1",
-        "moment": "^2.20.1",
-        "nvd3-fork": "^2.0.5",
-        "prop-types": "^15.6.2",
-        "urijs": "^1.18.10"
-      }
-    },
-    "@superset-ui/plugin-chart-echarts": {
-      "version": "0.17.6",
-      "resolved": "https://registry.npmjs.org/@superset-ui/plugin-chart-echarts/-/plugin-chart-echarts-0.17.6.tgz",
-      "integrity": "sha512-C0OXO7yrkVbHhILVb8fvxbM8O/+iB6eA8NCwwOiYNJZ/HfToZGr+ebbA6uCTf/A/WWdl8Qh/lIX8vz+GJe8d/A==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "@types/mathjs": "^6.0.7",
-        "echarts": "^5.0.1",
-        "mathjs": "^8.0.1"
-      }
-    },
-    "@superset-ui/plugin-chart-table": {
-      "version": "0.17.6",
-      "resolved": "https://registry.npmjs.org/@superset-ui/plugin-chart-table/-/plugin-chart-table-0.17.6.tgz",
-      "integrity": "sha512-s5pfX1/AxKuiTlBOovBjI8fmMjkn2gcjxWsrhjrvo9sfeCtZ64PObTobNiKHlKrc43YLf2ZKiNY9MiWBlsT3ZA==",
-      "requires": {
-        "@emotion/core": "^10.0.28",
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "@types/d3-array": "^2.0.0",
-        "@types/react-table": "^7.0.19",
-        "d3-array": "^2.4.0",
-        "match-sorter": "^6.1.0",
-        "memoize-one": "^5.1.1",
-        "react-icons": "^3.10.0",
-        "react-table": "^7.2.1",
-        "regenerator-runtime": "^0.13.5",
-        "xss": "^1.0.6"
-      },
-      "dependencies": {
-        "d3-array": {
-          "version": "2.11.0",
-          "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz",
-          "integrity": "sha512-26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw==",
-          "requires": {
-            "internmap": "^1.0.0"
-          }
-        }
-      }
-    },
-    "@superset-ui/plugin-chart-word-cloud": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/plugin-chart-word-cloud/-/plugin-chart-word-cloud-0.17.5.tgz",
-      "integrity": "sha512-jUE2RTKeLQcpKmk3ktxn7NwJOUIg7n4GCQFR0meFCJqH5TRV4E9UEfmZSo0FXhSzcUUerJSyfmXdxtzcCQMC3Q==",
-      "requires": {
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "@types/d3-cloud": "^1.2.1",
-        "@types/d3-scale": "^2.0.2",
-        "d3-cloud": "^1.2.5",
-        "d3-scale": "^3.0.1",
-        "emotion-theming": "^10.0.27",
-        "encodable": "^0.7.6"
-      },
-      "dependencies": {
-        "d3-array": {
-          "version": "2.11.0",
-          "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz",
-          "integrity": "sha512-26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw==",
-          "requires": {
-            "internmap": "^1.0.0"
-          }
-        },
-        "d3-scale": {
-          "version": "3.2.3",
-          "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-3.2.3.tgz",
-          "integrity": "sha512-8E37oWEmEzj57bHcnjPVOBS3n4jqakOeuv1EDdQSiSrYnMCBdMd3nc4HtKk7uia8DUHcY/CGuJ42xxgtEYrX0g==",
-          "requires": {
-            "d3-array": "^2.3.0",
-            "d3-format": "1 - 2",
-            "d3-interpolate": "1.2.0 - 2",
-            "d3-time": "1 - 2",
-            "d3-time-format": "2 - 3"
-          }
-        }
-      }
-    },
-    "@superset-ui/preset-chart-xy": {
-      "version": "0.17.5",
-      "resolved": "https://registry.npmjs.org/@superset-ui/preset-chart-xy/-/preset-chart-xy-0.17.5.tgz",
-      "integrity": "sha512-hFPVjc7IfgFEmh3Vqt2OYGawbRu1hdbQzo/Q/p0u9Q1lKdW6TNXBkATEKTBSTbVqFxgQSGktalAW3gzlpYKK/A==",
-      "requires": {
-        "@data-ui/theme": "^0.0.84",
-        "@data-ui/xy-chart": "^0.0.84",
-        "@superset-ui/chart-controls": "0.17.5",
-        "@superset-ui/core": "0.17.5",
-        "@vx/axis": "^0.0.198",
-        "@vx/legend": "^0.0.198",
-        "@vx/scale": "^0.0.197",
-        "csstype": "^2.6.3",
-        "encodable": "^0.7.6",
-        "lodash": "^4.17.11",
-        "reselect": "^4.0.0"
-      },
-      "dependencies": {
-        "@vx/axis": {
-          "version": "0.0.198",
-          "resolved": "https://registry.npmjs.org/@vx/axis/-/axis-0.0.198.tgz",
-          "integrity": "sha512-XqHzGOBgkJD8gR1g9F7uOhT4Sjlwpl/H3xLehtDooRmKf3J0hy8C7L5rCgh7n8ARi+vYg+3A1zUo0JBIO5k4PQ==",
-          "requires": {
-            "@types/classnames": "^2.2.9",
-            "@types/react": "*",
-            "@vx/group": "0.0.198",
-            "@vx/point": "0.0.198",
-            "@vx/shape": "0.0.198",
-            "@vx/text": "0.0.198",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.6.0"
-          }
-        },
-        "@vx/curve": {
-          "version": "0.0.198",
-          "resolved": "https://registry.npmjs.org/@vx/curve/-/curve-0.0.198.tgz",
-          "integrity": "sha512-ZINtD0t5eLu3bEeaOWZxGXrHK5WCbGoxDdou7yPWD6xg8kpTD4/Vq0adRFNCxS1TZUlUjCJ2KqY2PmewO+Hdcw==",
-          "requires": {
-            "@types/d3-shape": "^1.3.1",
-            "d3-shape": "^1.0.6"
-          }
-        },
-        "@vx/group": {
-          "version": "0.0.198",
-          "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.198.tgz",
-          "integrity": "sha512-0PivE+fWZlPkSzFO/is5m4VSSv3pg+sS1yxYAZHbNffUvn472WDWptriHvoUIPQe0lOXhTSrc73UQzew9GtW/g==",
-          "requires": {
-            "@types/classnames": "^2.2.9",
-            "@types/react": "*",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.6.2"
-          }
-        },
-        "@vx/legend": {
-          "version": "0.0.198",
-          "resolved": "https://registry.npmjs.org/@vx/legend/-/legend-0.0.198.tgz",
-          "integrity": "sha512-3S2/yP6IvkkhUlTj6In5M1OrzY1OaT1D06hRxuiOLAbaXTerhbUGwIjGSNoovQM6JebFlbWnnA5xH1SKgw5GGA==",
-          "requires": {
-            "@types/classnames": "^2.2.9",
-            "@types/d3-scale": "^2.1.1",
-            "@types/react": "*",
-            "@vx/group": "0.0.198",
-            "classnames": "^2.2.5",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/point": {
-          "version": "0.0.198",
-          "resolved": "https://registry.npmjs.org/@vx/point/-/point-0.0.198.tgz",
-          "integrity": "sha512-oFlw8uBLf4JDX7OJc+7eQXcnlLszdQgEs531u0t6HNpARQY/jTeeMLVUlp8sNF0XBOC+iVHU8Qe8TJdz/ONBAA=="
-        },
-        "@vx/scale": {
-          "version": "0.0.197",
-          "resolved": "https://registry.npmjs.org/@vx/scale/-/scale-0.0.197.tgz",
-          "integrity": "sha512-FF0POm9rh66I3Om5DsuxynwWU+Q645aTF47vgP2dVDeOOq3Oet7CZzmXLDh3W6nVcxvzq1UdPwu94dto2PUfhg==",
-          "requires": {
-            "@types/d3-scale": "^2.1.1",
-            "d3-scale": "^2.2.2"
-          }
-        },
-        "@vx/shape": {
-          "version": "0.0.198",
-          "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.198.tgz",
-          "integrity": "sha512-3Ky2PlSXYmh/Wt+tT4OBmsLpTe8Vu5pZ1EwbMQ0H/NNl6d4BsNqBUzr++0WC/kLsuNs5NENDvG77N9u2ztMrYA==",
-          "requires": {
-            "@types/classnames": "^2.2.9",
-            "@types/d3-path": "^1.0.8",
-            "@types/d3-shape": "^1.3.1",
-            "@types/react": "*",
-            "@vx/curve": "0.0.198",
-            "@vx/group": "0.0.198",
-            "classnames": "^2.2.5",
-            "d3-path": "^1.0.5",
-            "d3-shape": "^1.2.0",
-            "prop-types": "^15.5.10"
-          }
-        },
-        "@vx/text": {
-          "version": "0.0.198",
-          "resolved": "https://registry.npmjs.org/@vx/text/-/text-0.0.198.tgz",
-          "integrity": "sha512-MZhLeIhjbPlAeq+heUFXzrAztkjpfhAjeg+RXDg1dTJTtkbBD0w1bwadSPHuC7Rzj6yNQChzVDYl51dO/k4ExQ==",
-          "requires": {
-            "@types/classnames": "^2.2.9",
-            "@types/lodash": "^4.14.146",
-            "@types/react": "*",
-            "classnames": "^2.2.5",
-            "lodash": "^4.17.15",
-            "prop-types": "^15.7.2",
-            "reduce-css-calc": "^1.3.0"
-          }
-        },
-        "d3-scale": {
-          "version": "2.2.2",
-          "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz",
-          "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==",
-          "requires": {
-            "d3-array": "^1.2.0",
-            "d3-collection": "1",
-            "d3-format": "1",
-            "d3-interpolate": "1",
-            "d3-time": "1",
-            "d3-time-format": "2"
-          }
-        }
-      }
-    },
-    "@svgr/babel-plugin-add-jsx-attribute": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz",
-      "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==",
-      "dev": true
-    },
-    "@svgr/babel-plugin-remove-jsx-attribute": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz",
-      "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==",
-      "dev": true
-    },
-    "@svgr/babel-plugin-remove-jsx-empty-expression": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz",
-      "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==",
-      "dev": true
-    },
-    "@svgr/babel-plugin-replace-jsx-attribute-value": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz",
-      "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==",
-      "dev": true
-    },
-    "@svgr/babel-plugin-svg-dynamic-title": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz",
-      "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==",
-      "dev": true
-    },
-    "@svgr/babel-plugin-svg-em-dimensions": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz",
-      "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==",
-      "dev": true
-    },
-    "@svgr/babel-plugin-transform-react-native-svg": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz",
-      "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==",
-      "dev": true
-    },
-    "@svgr/babel-plugin-transform-svg-component": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.4.0.tgz",
-      "integrity": "sha512-zLl4Fl3NvKxxjWNkqEcpdSOpQ3LGVH2BNFQ6vjaK6sFo2IrSznrhURIPI0HAphKiiIwNYjAfE0TNoQDSZv0U9A==",
-      "dev": true
-    },
-    "@svgr/babel-preset": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.4.0.tgz",
-      "integrity": "sha512-Gyx7cCxua04DBtyILTYdQxeO/pwfTBev6+eXTbVbxe4HTGhOUW6yo7PSbG2p6eJMl44j6XSequ0ZDP7bl0nu9A==",
-      "dev": true,
-      "requires": {
-        "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0",
-        "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0",
-        "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1",
-        "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1",
-        "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0",
-        "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0",
-        "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0",
-        "@svgr/babel-plugin-transform-svg-component": "^5.4.0"
-      }
-    },
-    "@svgr/core": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.4.0.tgz",
-      "integrity": "sha512-hWGm1DCCvd4IEn7VgDUHYiC597lUYhFau2lwJBYpQWDirYLkX4OsXu9IslPgJ9UpP7wsw3n2Ffv9sW7SXJVfqQ==",
-      "dev": true,
-      "requires": {
-        "@svgr/plugin-jsx": "^5.4.0",
-        "camelcase": "^6.0.0",
-        "cosmiconfig": "^6.0.0"
-      },
-      "dependencies": {
-        "camelcase": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.0.0.tgz",
-          "integrity": "sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w==",
-          "dev": true
-        },
-        "cosmiconfig": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
-          "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
-          "dev": true,
-          "requires": {
-            "@types/parse-json": "^4.0.0",
-            "import-fresh": "^3.1.0",
-            "parse-json": "^5.0.0",
-            "path-type": "^4.0.0",
-            "yaml": "^1.7.2"
-          }
-        },
-        "import-fresh": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz",
-          "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==",
-          "dev": true,
-          "requires": {
-            "parent-module": "^1.0.0",
-            "resolve-from": "^4.0.0"
-          }
-        },
-        "parse-json": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz",
-          "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.0.0",
-            "error-ex": "^1.3.1",
-            "json-parse-better-errors": "^1.0.1",
-            "lines-and-columns": "^1.1.6"
-          }
-        },
-        "path-type": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
-          "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
-          "dev": true
-        }
-      }
-    },
-    "@svgr/hast-util-to-babel-ast": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.4.0.tgz",
-      "integrity": "sha512-+U0TZZpPsP2V1WvVhqAOSTk+N+CjYHdZx+x9UBa1eeeZDXwH8pt0CrQf2+SvRl/h2CAPRFkm+Ey96+jKP8Bsgg==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.9.5"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@svgr/plugin-jsx": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.4.0.tgz",
-      "integrity": "sha512-SGzO4JZQ2HvGRKDzRga9YFSqOqaNrgLlQVaGvpZ2Iht2gwRp/tq+18Pvv9kS9ZqOMYgyix2LLxZMY1LOe9NPqw==",
-      "dev": true,
-      "requires": {
-        "@babel/core": "^7.7.5",
-        "@svgr/babel-preset": "^5.4.0",
-        "@svgr/hast-util-to-babel-ast": "^5.4.0",
-        "svg-parser": "^2.0.2"
-      }
-    },
-    "@svgr/plugin-svgo": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.4.0.tgz",
-      "integrity": "sha512-3Cgv3aYi1l6SHyzArV9C36yo4kgwVdF3zPQUC6/aCDUeXAofDYwE5kk3e3oT5ZO2a0N3lB+lLGvipBG6lnG8EA==",
-      "dev": true,
-      "requires": {
-        "cosmiconfig": "^6.0.0",
-        "merge-deep": "^3.0.2",
-        "svgo": "^1.2.2"
-      },
-      "dependencies": {
-        "cosmiconfig": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
-          "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
-          "dev": true,
-          "requires": {
-            "@types/parse-json": "^4.0.0",
-            "import-fresh": "^3.1.0",
-            "parse-json": "^5.0.0",
-            "path-type": "^4.0.0",
-            "yaml": "^1.7.2"
-          }
-        },
-        "import-fresh": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz",
-          "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==",
-          "dev": true,
-          "requires": {
-            "parent-module": "^1.0.0",
-            "resolve-from": "^4.0.0"
-          }
-        },
-        "parse-json": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz",
-          "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.0.0",
-            "error-ex": "^1.3.1",
-            "json-parse-better-errors": "^1.0.1",
-            "lines-and-columns": "^1.1.6"
-          }
-        },
-        "path-type": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
-          "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
-          "dev": true
-        }
-      }
-    },
-    "@svgr/webpack": {
-      "version": "5.4.0",
-      "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.4.0.tgz",
-      "integrity": "sha512-LjepnS/BSAvelnOnnzr6Gg0GcpLmnZ9ThGFK5WJtm1xOqdBE/1IACZU7MMdVzjyUkfFqGz87eRE4hFaSLiUwYg==",
-      "dev": true,
-      "requires": {
-        "@babel/core": "^7.9.0",
-        "@babel/plugin-transform-react-constant-elements": "^7.9.0",
-        "@babel/preset-env": "^7.9.5",
-        "@babel/preset-react": "^7.9.4",
-        "@svgr/core": "^5.4.0",
-        "@svgr/plugin-jsx": "^5.4.0",
-        "@svgr/plugin-svgo": "^5.4.0",
-        "loader-utils": "^2.0.0"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.1.tgz",
-          "integrity": "sha512-IGhtTmpjGbYzcEDOw7DcQtbQSXcG9ftmAXtWTu9V936vDye4xjjekktFAtgZsWpzTj/X01jocB46mTywm/4SZw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.1"
-          }
-        },
-        "@babel/compat-data": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.10.1.tgz",
-          "integrity": "sha512-CHvCj7So7iCkGKPRFUfryXIkU2gSBw7VSZFYLsqVhrS47269VK2Hfi9S/YcublPMW8k1u2bQBlbDruoQEm4fgw==",
-          "dev": true,
-          "requires": {
-            "browserslist": "^4.12.0",
-            "invariant": "^2.2.4",
-            "semver": "^5.5.0"
-          }
-        },
-        "@babel/core": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.10.2.tgz",
-          "integrity": "sha512-KQmV9yguEjQsXqyOUGKjS4+3K8/DlOCE2pZcq4augdQmtTy5iv5EHtmMSJ7V4c1BIPjuwtZYqYLCq9Ga+hGBRQ==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.1",
-            "@babel/generator": "^7.10.2",
-            "@babel/helper-module-transforms": "^7.10.1",
-            "@babel/helpers": "^7.10.1",
-            "@babel/parser": "^7.10.2",
-            "@babel/template": "^7.10.1",
-            "@babel/traverse": "^7.10.1",
-            "@babel/types": "^7.10.2",
-            "convert-source-map": "^1.7.0",
-            "debug": "^4.1.0",
-            "gensync": "^1.0.0-beta.1",
-            "json5": "^2.1.2",
-            "lodash": "^4.17.13",
-            "resolve": "^1.3.2",
-            "semver": "^5.4.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-builder-react-jsx": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.1.tgz",
-          "integrity": "sha512-KXzzpyWhXgzjXIlJU1ZjIXzUPdej1suE6vzqgImZ/cpAsR/CC8gUcX4EWRmDfWz/cs6HOCPMBIJ3nKoXt3BFuw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.1",
-            "@babel/types": "^7.10.1"
-          }
-        },
-        "@babel/helper-compilation-targets": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.2.tgz",
-          "integrity": "sha512-hYgOhF4To2UTB4LTaZepN/4Pl9LD4gfbJx8A34mqoluT8TLbof1mhUlYuNWTEebONa8+UlCC4X0TEXu7AOUyGA==",
-          "dev": true,
-          "requires": {
-            "@babel/compat-data": "^7.10.1",
-            "browserslist": "^4.12.0",
-            "invariant": "^2.2.4",
-            "levenary": "^1.1.1",
-            "semver": "^5.5.0"
-          }
-        },
-        "@babel/helper-create-class-features-plugin": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.2.tgz",
-          "integrity": "sha512-5C/QhkGFh1vqcziq1vAL6SI9ymzUp8BCYjFpvYVhWP4DlATIb3u5q3iUd35mvlyGs8fO7hckkW7i0tmH+5+bvQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.1",
-            "@babel/helper-member-expression-to-functions": "^7.10.1",
-            "@babel/helper-optimise-call-expression": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/helper-replace-supers": "^7.10.1",
-            "@babel/helper-split-export-declaration": "^7.10.1"
-          }
-        },
-        "@babel/helper-create-regexp-features-plugin": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.1.tgz",
-          "integrity": "sha512-Rx4rHS0pVuJn5pJOqaqcZR4XSgeF9G/pO/79t+4r7380tXFJdzImFnxMU19f83wjSrmKHq6myrM10pFHTGzkUA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.1",
-            "@babel/helper-regex": "^7.10.1",
-            "regexpu-core": "^4.7.0"
-          }
-        },
-        "@babel/helper-hoist-variables": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.1.tgz",
-          "integrity": "sha512-vLm5srkU8rI6X3+aQ1rQJyfjvCBLXP8cAGeuw04zeAM2ItKb1e7pmVmLyHb4sDaAYnLL13RHOZPLEtcGZ5xvjg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.1"
-          }
-        },
-        "@babel/helper-module-imports": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.1.tgz",
-          "integrity": "sha512-SFxgwYmZ3HZPyZwJRiVNLRHWuW2OgE5k2nrVs6D9Iv4PPnXVffuEHy83Sfx/l4SqF+5kyJXjAyUmrG7tNm+qVg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.1"
-          }
-        },
-        "@babel/helper-module-transforms": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.10.1.tgz",
-          "integrity": "sha512-RLHRCAzyJe7Q7sF4oy2cB+kRnU4wDZY/H2xJFGof+M+SJEGhZsb+GFj5j1AD8NiSaVBJ+Pf0/WObiXu/zxWpFg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-imports": "^7.10.1",
-            "@babel/helper-replace-supers": "^7.10.1",
-            "@babel/helper-simple-access": "^7.10.1",
-            "@babel/helper-split-export-declaration": "^7.10.1",
-            "@babel/template": "^7.10.1",
-            "@babel/types": "^7.10.1",
-            "lodash": "^4.17.13"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz",
-          "integrity": "sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==",
-          "dev": true
-        },
-        "@babel/helper-regex": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.1.tgz",
-          "integrity": "sha512-7isHr19RsIJWWLLFn21ubFt223PjQyg1HY7CZEMRr820HttHPpVvrsIN3bUOo44DEfFV4kBXO7Abbn9KTUZV7g==",
-          "dev": true,
-          "requires": {
-            "lodash": "^4.17.13"
-          }
-        },
-        "@babel/helper-remap-async-to-generator": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.1.tgz",
-          "integrity": "sha512-RfX1P8HqsfgmJ6CwaXGKMAqbYdlleqglvVtht0HGPMSsy2V6MqLlOJVF/0Qyb/m2ZCi2z3q3+s6Pv7R/dQuZ6A==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-annotate-as-pure": "^7.10.1",
-            "@babel/helper-wrap-function": "^7.10.1",
-            "@babel/template": "^7.10.1",
-            "@babel/traverse": "^7.10.1",
-            "@babel/types": "^7.10.1"
-          }
-        },
-        "@babel/helper-simple-access": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.1.tgz",
-          "integrity": "sha512-VSWpWzRzn9VtgMJBIWTZ+GP107kZdQ4YplJlCmIrjoLVSi/0upixezHCDG8kpPVTBJpKfxTH01wDhh+jS2zKbw==",
-          "dev": true,
-          "requires": {
-            "@babel/template": "^7.10.1",
-            "@babel/types": "^7.10.1"
-          }
-        },
-        "@babel/helper-wrap-function": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.10.1.tgz",
-          "integrity": "sha512-C0MzRGteVDn+H32/ZgbAv5r56f2o1fZSA/rj/TYo8JEJNHg+9BdSmKBUND0shxWRztWhjlT2cvHYuynpPsVJwQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.1",
-            "@babel/template": "^7.10.1",
-            "@babel/traverse": "^7.10.1",
-            "@babel/types": "^7.10.1"
-          }
-        },
-        "@babel/helpers": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.1.tgz",
-          "integrity": "sha512-muQNHF+IdU6wGgkaJyhhEmI54MOZBKsFfsXFhboz1ybwJ1Kl7IHlbm2a++4jwrmY5UYsgitt5lfqo1wMFcHmyw==",
-          "dev": true,
-          "requires": {
-            "@babel/template": "^7.10.1",
-            "@babel/traverse": "^7.10.1",
-            "@babel/types": "^7.10.1"
-          }
-        },
-        "@babel/highlight": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.1.tgz",
-          "integrity": "sha512-8rMof+gVP8mxYZApLF/JgNDAkdKa+aJt3ZYxF8z6+j/hpeXL7iMsKCPHa2jNMHu/qqBwzQF4OHNoYi8dMA/rYg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/plugin-proposal-async-generator-functions": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.1.tgz",
-          "integrity": "sha512-vzZE12ZTdB336POZjmpblWfNNRpMSua45EYnRigE2XsZxcXcIyly2ixnTJasJE4Zq3U7t2d8rRF7XRUuzHxbOw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/helper-remap-async-to-generator": "^7.10.1",
-            "@babel/plugin-syntax-async-generators": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-class-properties": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.1.tgz",
-          "integrity": "sha512-sqdGWgoXlnOdgMXU+9MbhzwFRgxVLeiGBqTrnuS7LC2IBU31wSsESbTUreT2O418obpfPdGUR2GbEufZF1bpqw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-class-features-plugin": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-proposal-dynamic-import": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.1.tgz",
-          "integrity": "sha512-Cpc2yUVHTEGPlmiQzXj026kqwjEQAD9I4ZC16uzdbgWgitg/UHKHLffKNCQZ5+y8jpIZPJcKcwsr2HwPh+w3XA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-syntax-dynamic-import": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-json-strings": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.1.tgz",
-          "integrity": "sha512-m8r5BmV+ZLpWPtMY2mOKN7wre6HIO4gfIiV+eOmsnZABNenrt/kzYBwrh+KOfgumSWpnlGs5F70J8afYMSJMBg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-syntax-json-strings": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-nullish-coalescing-operator": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.1.tgz",
-          "integrity": "sha512-56cI/uHYgL2C8HVuHOuvVowihhX0sxb3nnfVRzUeVHTWmRHTZrKuAh/OBIMggGU/S1g/1D2CRCXqP+3u7vX7iA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-optional-catch-binding": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.1.tgz",
-          "integrity": "sha512-VqExgeE62YBqI3ogkGoOJp1R6u12DFZjqwJhqtKc2o5m1YTUuUWnos7bZQFBhwkxIFpWYJ7uB75U7VAPPiKETA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-optional-chaining": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.1.tgz",
-          "integrity": "sha512-dqQj475q8+/avvok72CF3AOSV/SGEcH29zT5hhohqqvvZ2+boQoOr7iGldBG5YXTO2qgCgc2B3WvVLUdbeMlGA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-syntax-optional-chaining": "^7.8.0"
-          }
-        },
-        "@babel/plugin-proposal-unicode-property-regex": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.1.tgz",
-          "integrity": "sha512-JjfngYRvwmPwmnbRZyNiPFI8zxCZb8euzbCG/LxyKdeTb59tVciKo9GK9bi6JYKInk1H11Dq9j/zRqIH4KigfQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-syntax-jsx": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.1.tgz",
-          "integrity": "sha512-+OxyOArpVFXQeXKLO9o+r2I4dIoVoy6+Uu0vKELrlweDM3QJADZj+Z+5ERansZqIZBcLj42vHnDI8Rz9BnRIuQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-syntax-top-level-await": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.1.tgz",
-          "integrity": "sha512-hgA5RYkmZm8FTFT3yu2N9Bx7yVVOKYT6yEdXXo6j2JTm0wNxgqaGeQVaSHRjhfnQbX91DtjFB6McRFSlcJH3xQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-arrow-functions": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.1.tgz",
-          "integrity": "sha512-6AZHgFJKP3DJX0eCNJj01RpytUa3SOGawIxweHkNX2L6PYikOZmoh5B0d7hIHaIgveMjX990IAa/xK7jRTN8OA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-async-to-generator": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.1.tgz",
-          "integrity": "sha512-XCgYjJ8TY2slj6SReBUyamJn3k2JLUIiiR5b6t1mNCMSvv7yx+jJpaewakikp0uWFQSF7ChPPoe3dHmXLpISkg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-imports": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/helper-remap-async-to-generator": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-block-scoped-functions": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.1.tgz",
-          "integrity": "sha512-B7K15Xp8lv0sOJrdVAoukKlxP9N59HS48V1J3U/JGj+Ad+MHq+am6xJVs85AgXrQn4LV8vaYFOB+pr/yIuzW8Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-block-scoping": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.1.tgz",
-          "integrity": "sha512-8bpWG6TtF5akdhIm/uWTyjHqENpy13Fx8chg7pFH875aNLwX8JxIxqm08gmAT+Whe6AOmaTeLPe7dpLbXt+xUw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "lodash": "^4.17.13"
-          }
-        },
-        "@babel/plugin-transform-computed-properties": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.1.tgz",
-          "integrity": "sha512-mqSrGjp3IefMsXIenBfGcPXxJxweQe2hEIwMQvjtiDQ9b1IBvDUjkAtV/HMXX47/vXf14qDNedXsIiNd1FmkaQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-destructuring": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.1.tgz",
-          "integrity": "sha512-V/nUc4yGWG71OhaTH705pU8ZSdM6c1KmmLP8ys59oOYbT7RpMYAR3MsVOt6OHL0WzG7BlTU076va9fjJyYzJMA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-dotall-regex": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.1.tgz",
-          "integrity": "sha512-19VIMsD1dp02RvduFUmfzj8uknaO3uiHHF0s3E1OHnVsNj8oge8EQ5RzHRbJjGSetRnkEuBYO7TG1M5kKjGLOA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-duplicate-keys": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.1.tgz",
-          "integrity": "sha512-wIEpkX4QvX8Mo9W6XF3EdGttrIPZWozHfEaDTU0WJD/TDnXMvdDh30mzUl/9qWhnf7naicYartcEfUghTCSNpA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-for-of": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.1.tgz",
-          "integrity": "sha512-US8KCuxfQcn0LwSCMWMma8M2R5mAjJGsmoCBVwlMygvmDUMkTCykc84IqN1M7t+agSfOmLYTInLCHJM+RUoz+w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-function-name": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.1.tgz",
-          "integrity": "sha512-//bsKsKFBJfGd65qSNNh1exBy5Y9gD9ZN+DvrJ8f7HXr4avE5POW6zB7Rj6VnqHV33+0vXWUwJT0wSHubiAQkw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-function-name": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-literals": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.1.tgz",
-          "integrity": "sha512-qi0+5qgevz1NHLZroObRm5A+8JJtibb7vdcPQF1KQE12+Y/xxl8coJ+TpPW9iRq+Mhw/NKLjm+5SHtAHCC7lAw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-modules-amd": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.1.tgz",
-          "integrity": "sha512-31+hnWSFRI4/ACFr1qkboBbrTxoBIzj7qA69qlq8HY8p7+YCzkCT6/TvQ1a4B0z27VeWtAeJd6pr5G04dc1iHw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-transforms": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "babel-plugin-dynamic-import-node": "^2.3.3"
-          }
-        },
-        "@babel/plugin-transform-modules-commonjs": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.1.tgz",
-          "integrity": "sha512-AQG4fc3KOah0vdITwt7Gi6hD9BtQP/8bhem7OjbaMoRNCH5Djx42O2vYMfau7QnAzQCa+RJnhJBmFFMGpQEzrg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-transforms": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/helper-simple-access": "^7.10.1",
-            "babel-plugin-dynamic-import-node": "^2.3.3"
-          }
-        },
-        "@babel/plugin-transform-modules-systemjs": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.1.tgz",
-          "integrity": "sha512-ewNKcj1TQZDL3YnO85qh9zo1YF1CHgmSTlRQgHqe63oTrMI85cthKtZjAiZSsSNjPQ5NCaYo5QkbYqEw1ZBgZA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-hoist-variables": "^7.10.1",
-            "@babel/helper-module-transforms": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "babel-plugin-dynamic-import-node": "^2.3.3"
-          }
-        },
-        "@babel/plugin-transform-modules-umd": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.1.tgz",
-          "integrity": "sha512-EIuiRNMd6GB6ulcYlETnYYfgv4AxqrswghmBRQbWLHZxN4s7mupxzglnHqk9ZiUpDI4eRWewedJJNj67PWOXKA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-transforms": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-new-target": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.1.tgz",
-          "integrity": "sha512-MBlzPc1nJvbmO9rPr1fQwXOM2iGut+JC92ku6PbiJMMK7SnQc1rytgpopveE3Evn47gzvGYeCdgfCDbZo0ecUw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-object-super": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.1.tgz",
-          "integrity": "sha512-WnnStUDN5GL+wGQrJylrnnVlFhFmeArINIR9gjhSeYyvroGhBrSAXYg/RHsnfzmsa+onJrTJrEClPzgNmmQ4Gw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/helper-replace-supers": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-parameters": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.1.tgz",
-          "integrity": "sha512-tJ1T0n6g4dXMsL45YsSzzSDZCxiHXAQp/qHrucOq5gEHncTA3xDxnd5+sZcoQp+N1ZbieAaB8r/VUCG0gqseOg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-react-display-name": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.1.tgz",
-          "integrity": "sha512-rBjKcVwjk26H3VX8pavMxGf33LNlbocMHdSeldIEswtQ/hrjyTG8fKKILW1cSkODyRovckN/uZlGb2+sAV9JUQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-react-jsx": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.1.tgz",
-          "integrity": "sha512-MBVworWiSRBap3Vs39eHt+6pJuLUAaK4oxGc8g+wY+vuSJvLiEQjW1LSTqKb8OUPtDvHCkdPhk7d6sjC19xyFw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-builder-react-jsx": "^7.10.1",
-            "@babel/helper-builder-react-jsx-experimental": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-syntax-jsx": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-react-jsx-self": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.1.tgz",
-          "integrity": "sha512-4p+RBw9d1qV4S749J42ZooeQaBomFPrSxa9JONLHJ1TxCBo3TzJ79vtmG2S2erUT8PDDrPdw4ZbXGr2/1+dILA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-syntax-jsx": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-react-jsx-source": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.1.tgz",
-          "integrity": "sha512-neAbaKkoiL+LXYbGDvh6PjPG+YeA67OsZlE78u50xbWh2L1/C81uHiNP5d1fw+uqUIoiNdCC8ZB+G4Zh3hShJA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-syntax-jsx": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-regenerator": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.1.tgz",
-          "integrity": "sha512-B3+Y2prScgJ2Bh/2l9LJxKbb8C8kRfsG4AdPT+n7ixBHIxJaIG8bi8tgjxUMege1+WqSJ+7gu1YeoMVO3gPWzw==",
-          "dev": true,
-          "requires": {
-            "regenerator-transform": "^0.14.2"
-          }
-        },
-        "@babel/plugin-transform-reserved-words": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.1.tgz",
-          "integrity": "sha512-qN1OMoE2nuqSPmpTqEM7OvJ1FkMEV+BjVeZZm9V9mq/x1JLKQ4pcv8riZJMNN3u2AUGl0ouOMjRr2siecvHqUQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-shorthand-properties": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.1.tgz",
-          "integrity": "sha512-AR0E/lZMfLstScFwztApGeyTHJ5u3JUKMjneqRItWeEqDdHWZwAOKycvQNCasCK/3r5YXsuNG25funcJDu7Y2g==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-spread": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.1.tgz",
-          "integrity": "sha512-8wTPym6edIrClW8FI2IoaePB91ETOtg36dOkj3bYcNe7aDMN2FXEoUa+WrmPc4xa1u2PQK46fUX2aCb+zo9rfw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-sticky-regex": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.1.tgz",
-          "integrity": "sha512-j17ojftKjrL7ufX8ajKvwRilwqTok4q+BjkknmQw9VNHnItTyMP5anPFzxFJdCQs7clLcWpCV3ma+6qZWLnGMA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/helper-regex": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-typeof-symbol": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.1.tgz",
-          "integrity": "sha512-qX8KZcmbvA23zDi+lk9s6hC1FM7jgLHYIjuLgULgc8QtYnmB3tAVIYkNoKRQ75qWBeyzcoMoK8ZQmogGtC/w0g==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/plugin-transform-unicode-regex": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.1.tgz",
-          "integrity": "sha512-Y/2a2W299k0VIUdbqYm9X2qS6fE0CUBhhiPpimK6byy7OJ/kORLlIX+J6UrjgNu5awvs62k+6RSslxhcvVw2Tw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-create-regexp-features-plugin": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1"
-          }
-        },
-        "@babel/preset-env": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.10.2.tgz",
-          "integrity": "sha512-MjqhX0RZaEgK/KueRzh+3yPSk30oqDKJ5HP5tqTSB1e2gzGS3PLy7K0BIpnp78+0anFuSwOeuCf1zZO7RzRvEA==",
-          "dev": true,
-          "requires": {
-            "@babel/compat-data": "^7.10.1",
-            "@babel/helper-compilation-targets": "^7.10.2",
-            "@babel/helper-module-imports": "^7.10.1",
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-proposal-async-generator-functions": "^7.10.1",
-            "@babel/plugin-proposal-class-properties": "^7.10.1",
-            "@babel/plugin-proposal-dynamic-import": "^7.10.1",
-            "@babel/plugin-proposal-json-strings": "^7.10.1",
-            "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
-            "@babel/plugin-proposal-numeric-separator": "^7.10.1",
-            "@babel/plugin-proposal-object-rest-spread": "^7.10.1",
-            "@babel/plugin-proposal-optional-catch-binding": "^7.10.1",
-            "@babel/plugin-proposal-optional-chaining": "^7.10.1",
-            "@babel/plugin-proposal-private-methods": "^7.10.1",
-            "@babel/plugin-proposal-unicode-property-regex": "^7.10.1",
-            "@babel/plugin-syntax-async-generators": "^7.8.0",
-            "@babel/plugin-syntax-class-properties": "^7.10.1",
-            "@babel/plugin-syntax-dynamic-import": "^7.8.0",
-            "@babel/plugin-syntax-json-strings": "^7.8.0",
-            "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
-            "@babel/plugin-syntax-numeric-separator": "^7.10.1",
-            "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
-            "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
-            "@babel/plugin-syntax-optional-chaining": "^7.8.0",
-            "@babel/plugin-syntax-top-level-await": "^7.10.1",
-            "@babel/plugin-transform-arrow-functions": "^7.10.1",
-            "@babel/plugin-transform-async-to-generator": "^7.10.1",
-            "@babel/plugin-transform-block-scoped-functions": "^7.10.1",
-            "@babel/plugin-transform-block-scoping": "^7.10.1",
-            "@babel/plugin-transform-classes": "^7.10.1",
-            "@babel/plugin-transform-computed-properties": "^7.10.1",
-            "@babel/plugin-transform-destructuring": "^7.10.1",
-            "@babel/plugin-transform-dotall-regex": "^7.10.1",
-            "@babel/plugin-transform-duplicate-keys": "^7.10.1",
-            "@babel/plugin-transform-exponentiation-operator": "^7.10.1",
-            "@babel/plugin-transform-for-of": "^7.10.1",
-            "@babel/plugin-transform-function-name": "^7.10.1",
-            "@babel/plugin-transform-literals": "^7.10.1",
-            "@babel/plugin-transform-member-expression-literals": "^7.10.1",
-            "@babel/plugin-transform-modules-amd": "^7.10.1",
-            "@babel/plugin-transform-modules-commonjs": "^7.10.1",
-            "@babel/plugin-transform-modules-systemjs": "^7.10.1",
-            "@babel/plugin-transform-modules-umd": "^7.10.1",
-            "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3",
-            "@babel/plugin-transform-new-target": "^7.10.1",
-            "@babel/plugin-transform-object-super": "^7.10.1",
-            "@babel/plugin-transform-parameters": "^7.10.1",
-            "@babel/plugin-transform-property-literals": "^7.10.1",
-            "@babel/plugin-transform-regenerator": "^7.10.1",
-            "@babel/plugin-transform-reserved-words": "^7.10.1",
-            "@babel/plugin-transform-shorthand-properties": "^7.10.1",
-            "@babel/plugin-transform-spread": "^7.10.1",
-            "@babel/plugin-transform-sticky-regex": "^7.10.1",
-            "@babel/plugin-transform-template-literals": "^7.10.1",
-            "@babel/plugin-transform-typeof-symbol": "^7.10.1",
-            "@babel/plugin-transform-unicode-escapes": "^7.10.1",
-            "@babel/plugin-transform-unicode-regex": "^7.10.1",
-            "@babel/preset-modules": "^0.1.3",
-            "@babel/types": "^7.10.2",
-            "browserslist": "^4.12.0",
-            "core-js-compat": "^3.6.2",
-            "invariant": "^2.2.2",
-            "levenary": "^1.1.1",
-            "semver": "^5.5.0"
-          }
-        },
-        "@babel/preset-react": {
-          "version": "7.10.1",
-          "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.10.1.tgz",
-          "integrity": "sha512-Rw0SxQ7VKhObmFjD/cUcKhPTtzpeviEFX1E6PgP+cYOhQ98icNqtINNFANlsdbQHrmeWnqdxA4Tmnl1jy5tp3Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.1",
-            "@babel/plugin-transform-react-display-name": "^7.10.1",
-            "@babel/plugin-transform-react-jsx": "^7.10.1",
-            "@babel/plugin-transform-react-jsx-development": "^7.10.1",
-            "@babel/plugin-transform-react-jsx-self": "^7.10.1",
-            "@babel/plugin-transform-react-jsx-source": "^7.10.1",
-            "@babel/plugin-transform-react-pure-annotations": "^7.10.1"
-          }
-        },
-        "@babel/types": {
-          "version": "7.10.2",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.2.tgz",
-          "integrity": "sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.1",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "babel-plugin-dynamic-import-node": {
-          "version": "2.3.3",
-          "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
-          "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
-          "dev": true,
-          "requires": {
-            "object.assign": "^4.1.0"
-          }
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "browserslist": {
-          "version": "4.12.0",
-          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz",
-          "integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==",
-          "dev": true,
-          "requires": {
-            "caniuse-lite": "^1.0.30001043",
-            "electron-to-chromium": "^1.3.413",
-            "node-releases": "^1.1.53",
-            "pkg-up": "^2.0.0"
-          }
-        },
-        "caniuse-lite": {
-          "version": "1.0.30001084",
-          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001084.tgz",
-          "integrity": "sha512-ftdc5oGmhEbLUuMZ/Qp3mOpzfZLCxPYKcvGv6v2dJJ+8EdqcvZRbAGOiLmkM/PV1QGta/uwBs8/nCl6sokDW6w==",
-          "dev": true
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "convert-source-map": {
-          "version": "1.7.0",
-          "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
-          "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "~5.1.1"
-          }
-        },
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "electron-to-chromium": {
-          "version": "1.3.474",
-          "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.474.tgz",
-          "integrity": "sha512-fPkSgT9IBKmVJz02XioNsIpg0WYmkPrvU1lUJblMMJALxyE7/32NGvbJQKKxpNokozPvqfqkuUqVClYsvetcLw==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "loader-utils": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-          "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^2.1.2"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "node-releases": {
-          "version": "1.1.58",
-          "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.58.tgz",
-          "integrity": "sha512-NxBudgVKiRh/2aPWMgPR7bPTX0VPmGx5QBwCtdHitnqFE5/O8DeBXuIMH1nwNnw/aMo6AjOrpsHzfY3UbUJ7yg==",
-          "dev": true
-        },
-        "regexpu-core": {
-          "version": "4.7.0",
-          "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz",
-          "integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==",
-          "dev": true,
-          "requires": {
-            "regenerate": "^1.4.0",
-            "regenerate-unicode-properties": "^8.2.0",
-            "regjsgen": "^0.5.1",
-            "regjsparser": "^0.6.4",
-            "unicode-match-property-ecmascript": "^1.0.4",
-            "unicode-match-property-value-ecmascript": "^1.2.0"
-          }
-        },
-        "regjsgen": {
-          "version": "0.5.2",
-          "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
-          "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
-          "dev": true
-        },
-        "regjsparser": {
-          "version": "0.6.4",
-          "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
-          "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
-          "dev": true,
-          "requires": {
-            "jsesc": "~0.5.0"
-          },
-          "dependencies": {
-            "jsesc": {
-              "version": "0.5.0",
-              "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
-              "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
-              "dev": true
-            }
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@testing-library/dom": {
-      "version": "7.27.1",
-      "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.27.1.tgz",
-      "integrity": "sha512-AF56RoeUU8bO4DOvLyMI44H3O1LVKZQi2D/m5fNDr+iR4drfOFikTr26hT6IY7YG+l8g69FXsHERa+uThaYYQg==",
-      "dev": true,
-      "requires": {
-        "@babel/code-frame": "^7.10.4",
-        "@babel/runtime": "^7.12.5",
-        "@types/aria-query": "^4.2.0",
-        "aria-query": "^4.2.2",
-        "chalk": "^4.1.0",
-        "dom-accessibility-api": "^0.5.4",
-        "lz-string": "^1.4.4",
-        "pretty-format": "^26.6.2"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
-          "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          },
-          "dependencies": {
-            "chalk": {
-              "version": "2.4.2",
-              "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-              "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-              "dev": true,
-              "requires": {
-                "ansi-styles": "^3.2.1",
-                "escape-string-regexp": "^1.0.5",
-                "supports-color": "^5.3.0"
-              }
-            }
-          }
-        },
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          },
-          "dependencies": {
-            "ansi-styles": {
-              "version": "4.3.0",
-              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-              "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-              "dev": true,
-              "requires": {
-                "color-convert": "^2.0.1"
-              }
-            },
-            "color-convert": {
-              "version": "2.0.1",
-              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-              "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-              "dev": true,
-              "requires": {
-                "color-name": "~1.1.4"
-              }
-            },
-            "has-flag": {
-              "version": "4.0.0",
-              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-              "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-              "dev": true
-            },
-            "supports-color": {
-              "version": "7.2.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-              "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^4.0.0"
-              }
-            }
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          },
-          "dependencies": {
-            "ansi-styles": {
-              "version": "4.3.0",
-              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-              "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-              "dev": true,
-              "requires": {
-                "color-convert": "^2.0.1"
-              }
-            },
-            "color-convert": {
-              "version": "2.0.1",
-              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-              "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-              "dev": true,
-              "requires": {
-                "color-name": "~1.1.4"
-              }
-            }
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "@testing-library/jest-dom": {
-      "version": "5.11.6",
-      "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.11.6.tgz",
-      "integrity": "sha512-cVZyUNRWwUKI0++yepYpYX7uhrP398I+tGz4zOlLVlUYnZS+Svuxv4fwLeCIy7TnBYKXUaOlQr3vopxL8ZfEnA==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.9.2",
-        "@types/testing-library__jest-dom": "^5.9.1",
-        "aria-query": "^4.2.2",
-        "chalk": "^3.0.0",
-        "css": "^3.0.0",
-        "css.escape": "^1.5.1",
-        "lodash": "^4.17.15",
-        "redent": "^3.0.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
-          "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "@testing-library/react": {
-      "version": "11.2.0",
-      "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.0.tgz",
-      "integrity": "sha512-90xKYJzskZ7q/AoSuWraQL4EGZlr75uZvDt3nrO4M+rugN02zjO45tmOBq/JBOgDiMIL1tkhHioKXjJsVaSINA==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.12.5",
-        "@testing-library/dom": "^7.27.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "@types/anymatch": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz",
-      "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==",
-      "dev": true
-    },
-    "@types/aria-query": {
-      "version": "4.2.0",
-      "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.0.tgz",
-      "integrity": "sha512-iIgQNzCm0v7QMhhe4Jjn9uRh+I6GoPmt03CbEtwx3ao8/EfoQcmgtqH4vQ5Db/lxiIGaWDv6nwvunuh0RyX0+A==",
-      "dev": true
-    },
-    "@types/babel__core": {
-      "version": "7.1.9",
-      "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.9.tgz",
-      "integrity": "sha512-sY2RsIJ5rpER1u3/aQ8OFSI7qGIy8o1NEEbgb2UaJcvOtXOMpd39ko723NBpjQFg9SIX7TXtjejZVGeIMLhoOw==",
-      "dev": true,
-      "requires": {
-        "@babel/parser": "^7.1.0",
-        "@babel/types": "^7.0.0",
-        "@types/babel__generator": "*",
-        "@types/babel__template": "*",
-        "@types/babel__traverse": "*"
-      }
-    },
-    "@types/babel__generator": {
-      "version": "7.6.1",
-      "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.1.tgz",
-      "integrity": "sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.0.0"
-      }
-    },
-    "@types/babel__template": {
-      "version": "7.0.2",
-      "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz",
-      "integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==",
-      "dev": true,
-      "requires": {
-        "@babel/parser": "^7.1.0",
-        "@babel/types": "^7.0.0"
-      }
-    },
-    "@types/babel__traverse": {
-      "version": "7.0.12",
-      "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.12.tgz",
-      "integrity": "sha512-t4CoEokHTfcyfb4hUaF9oOHu9RmmNWnm1CP0YmMqOOfClKascOmvlEM736vlqeScuGvBDsHkf8R2INd4DWreQA==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.3.0"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.10.3",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.3.tgz",
-          "integrity": "sha512-nZxaJhBXBQ8HVoIcGsf9qWep3Oh3jCENK54V4mRF7qaJabVsAYdbTtmSD8WmAp1R6ytPiu5apMwSXyxB1WlaBA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.3",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@types/braces": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/@types/braces/-/braces-3.0.0.tgz",
-      "integrity": "sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw==",
-      "dev": true
-    },
-    "@types/cheerio": {
-      "version": "0.22.21",
-      "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.21.tgz",
-      "integrity": "sha512-aGI3DfswwqgKPiEOTaiHV2ZPC9KEhprpgEbJnv0fZl3SGX0cGgEva1126dGrMC6AJM6v/aihlUgJn9M5DbDZ/Q==",
-      "dev": true,
-      "requires": {
-        "@types/node": "*"
-      }
-    },
-    "@types/classnames": {
-      "version": "2.2.10",
-      "resolved": "https://registry.npmjs.org/@types/classnames/-/classnames-2.2.10.tgz",
-      "integrity": "sha512-1UzDldn9GfYYEsWWnn/P4wkTlkZDH7lDb0wBMGbtIQc9zXEQq7FlKBdZUn6OBqD8sKZZ2RQO2mAjGpXiDGoRmQ=="
-    },
-    "@types/color-name": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
-      "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
-      "dev": true
-    },
-    "@types/d3": {
-      "version": "3.5.38",
-      "resolved": "https://registry.npmjs.org/@types/d3/-/d3-3.5.38.tgz",
-      "integrity": "sha1-dvjy6RWa5WKWWy+g5vvuGqZDobw="
-    },
-    "@types/d3-array": {
-      "version": "2.8.0",
-      "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-2.8.0.tgz",
-      "integrity": "sha512-Q0ubcGHAmCRPh90/hoYB4eKWhxYKUxphwSeQrlz2tiabQ8S9zqhaE2CZJtCaLH2cjqKcjr52WPvmOA7ha0O4ZA=="
-    },
-    "@types/d3-cloud": {
-      "version": "1.2.3",
-      "resolved": "https://registry.npmjs.org/@types/d3-cloud/-/d3-cloud-1.2.3.tgz",
-      "integrity": "sha512-VUcRA9YWM1V5Srg444/zVxgmhVyIYBrChIr5lg+0cPGNM4J4fLdBqEeAkk9ggRPM3Um4fUy/p/gtEKbAqL/hcw==",
-      "requires": {
-        "@types/d3": "^3"
-      }
-    },
-    "@types/d3-color": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-1.4.1.tgz",
-      "integrity": "sha512-xkPLi+gbgUU9ED6QX4g6jqYL2KCB0/3AlM+ncMGqn49OgH0gFMY/ITGqPF8HwEiLzJaC+2L0I+gNwBgABv1Pvg=="
-    },
-    "@types/d3-format": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-1.4.1.tgz",
-      "integrity": "sha512-ss9G2snEKmp2In5Z3T0Jpqv8QaDBc2xHltBw83KjnV5B5w+Iwphbvq5ph/Xnu4d03fmmsdt+o1aWch379rxIbA=="
-    },
-    "@types/d3-interpolate": {
-      "version": "1.4.2",
-      "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-1.4.2.tgz",
-      "integrity": "sha512-ylycts6llFf8yAEs1tXzx2loxxzDZHseuhPokrqKprTQSTcD3JbJI1omZP1rphsELZO3Q+of3ff0ZS7+O6yVzg==",
-      "requires": {
-        "@types/d3-color": "^1"
-      }
-    },
-    "@types/d3-path": {
-      "version": "1.0.9",
-      "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-1.0.9.tgz",
-      "integrity": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ=="
-    },
-    "@types/d3-scale": {
-      "version": "2.2.4",
-      "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-2.2.4.tgz",
-      "integrity": "sha512-wkQXT+IfgfAnKB5rtS1qMJg3FS32r1rVFHvqtiqk8pX8o5aQR3VwX1P7ErHjzNIicTlkWsaMiUTrYB+E75HFeA==",
-      "requires": {
-        "@types/d3-time": "^1"
-      }
-    },
-    "@types/d3-scale-chromatic": {
-      "version": "1.5.1",
-      "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-1.5.1.tgz",
-      "integrity": "sha512-7FtJYrmXTEWLykShjYhoGuDNR/Bda0+tstZMkFj4RRxUEryv16AGh3be21tqg84B6KfEwiZyEpBcTyPyU+GWjg=="
-    },
-    "@types/d3-shape": {
-      "version": "1.3.5",
-      "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-1.3.5.tgz",
-      "integrity": "sha512-aPEax03owTAKynoK8ZkmkZEDZvvT4Y5pWgii4Jp4oQt0gH45j6siDl9gNDVC5kl64XHN2goN9jbYoHK88tFAcA==",
-      "requires": {
-        "@types/d3-path": "^1"
-      }
-    },
-    "@types/d3-time": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-1.1.1.tgz",
-      "integrity": "sha512-ULX7LoqXTCYtM+tLYOaeAJK7IwCT+4Gxlm2MaH0ErKLi07R5lh8NHCAyWcDkCCmx1AfRcBEV6H9QE9R25uP7jw=="
-    },
-    "@types/d3-time-format": {
-      "version": "2.3.1",
-      "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-2.3.1.tgz",
-      "integrity": "sha512-fck0Z9RGfIQn3GJIEKVrp15h9m6Vlg0d5XXeiE/6+CQiBmMDZxfR21XtjEPuDeg7gC3bBM0SdieA5XF3GW1wKA=="
-    },
-    "@types/dom-to-image": {
-      "version": "2.6.0",
-      "resolved": "https://registry.npmjs.org/@types/dom-to-image/-/dom-to-image-2.6.0.tgz",
-      "integrity": "sha512-X7qEh5AI1s/fb/Ijb1WU/tl7nZjD/A3b0PZiq3QjD31EZkgPooPdpte9MCJWQgqjxA0F8AJFuPd53YDrFJFE7w==",
-      "dev": true,
-      "requires": {
-        "@types/node": "*"
-      }
-    },
-    "@types/enzyme": {
-      "version": "3.10.5",
-      "resolved": "https://registry.npmjs.org/@types/enzyme/-/enzyme-3.10.5.tgz",
-      "integrity": "sha512-R+phe509UuUYy9Tk0YlSbipRpfVtIzb/9BHn5pTEtjJTF5LXvUjrIQcZvNyANNEyFrd2YGs196PniNT1fgvOQA==",
-      "dev": true,
-      "requires": {
-        "@types/cheerio": "*",
-        "@types/react": "*"
-      }
-    },
-    "@types/enzyme-adapter-react-16": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/@types/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.0.6.tgz",
-      "integrity": "sha512-VonDkZ15jzqDWL8mPFIQnnLtjwebuL9YnDkqeCDYnB4IVgwUm0mwKkqhrxLL6mb05xm7qqa3IE95m8CZE9imCg==",
-      "dev": true,
-      "requires": {
-        "@types/enzyme": "*"
-      }
-    },
-    "@types/events": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz",
-      "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==",
-      "dev": true
-    },
-    "@types/fetch-mock": {
-      "version": "7.3.2",
-      "resolved": "https://registry.npmjs.org/@types/fetch-mock/-/fetch-mock-7.3.2.tgz",
-      "integrity": "sha512-NCEfv49jmDsBAixjMjEHKVgmVQlJ+uK56FOc+2roYPExnXCZDpi6mJOHQ3v23BiO84hBDStND9R2itJr7PNoow==",
-      "dev": true
-    },
-    "@types/glob": {
-      "version": "7.1.1",
-      "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz",
-      "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==",
-      "dev": true,
-      "requires": {
-        "@types/events": "*",
-        "@types/minimatch": "*",
-        "@types/node": "*"
-      }
-    },
-    "@types/glob-base": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/@types/glob-base/-/glob-base-0.3.0.tgz",
-      "integrity": "sha1-pYHWiDR+EOUN18F9byiAoQNUMZ0=",
-      "dev": true
-    },
-    "@types/graceful-fs": {
-      "version": "4.1.3",
-      "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.3.tgz",
-      "integrity": "sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ==",
-      "dev": true,
-      "requires": {
-        "@types/node": "*"
-      }
-    },
-    "@types/hast": {
-      "version": "2.3.1",
-      "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.1.tgz",
-      "integrity": "sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==",
-      "requires": {
-        "@types/unist": "*"
-      }
-    },
-    "@types/history": {
-      "version": "4.7.6",
-      "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.6.tgz",
-      "integrity": "sha512-GRTZLeLJ8ia00ZH8mxMO8t0aC9M1N9bN461Z2eaRurJo6Fpa+utgCwLzI4jQHcrdzuzp5WPN9jRwpsCQ1VhJ5w==",
-      "dev": true
-    },
-    "@types/hoist-non-react-statics": {
-      "version": "3.3.1",
-      "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz",
-      "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==",
-      "requires": {
-        "@types/react": "*",
-        "hoist-non-react-statics": "^3.3.0"
-      }
-    },
-    "@types/html-minifier-terser": {
-      "version": "5.1.0",
-      "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.0.tgz",
-      "integrity": "sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA==",
-      "dev": true
-    },
-    "@types/is-function": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/@types/is-function/-/is-function-1.0.0.tgz",
-      "integrity": "sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w==",
-      "dev": true
-    },
-    "@types/istanbul-lib-coverage": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz",
-      "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==",
-      "dev": true
-    },
-    "@types/istanbul-lib-report": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
-      "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
-      "dev": true,
-      "requires": {
-        "@types/istanbul-lib-coverage": "*"
-      }
-    },
-    "@types/istanbul-reports": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz",
-      "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==",
-      "dev": true,
-      "requires": {
-        "@types/istanbul-lib-coverage": "*",
-        "@types/istanbul-lib-report": "*"
-      }
-    },
-    "@types/jest": {
-      "version": "26.0.3",
-      "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.3.tgz",
-      "integrity": "sha512-v89ga1clpVL/Y1+YI0eIu1VMW+KU7Xl8PhylVtDKVWaSUHBHYPLXMQGBdrpHewaKoTvlXkksbYqPgz8b4cmRZg==",
-      "dev": true,
-      "requires": {
-        "jest-diff": "^25.2.1",
-        "pretty-format": "^25.2.1"
-      }
-    },
-    "@types/jquery": {
-      "version": "3.3.32",
-      "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.3.32.tgz",
-      "integrity": "sha512-UKoof2mnV/X1/Ix2g+V2Ny5sgHjV8nK/UJbiYxuo4zPwzGyFlZ/mp4KaePb2VqQrqJctmcDQNA57buU84/2uIw==",
-      "dev": true,
-      "requires": {
-        "@types/sizzle": "*"
-      }
-    },
-    "@types/js-levenshtein": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/@types/js-levenshtein/-/js-levenshtein-1.1.0.tgz",
-      "integrity": "sha512-14t0v1ICYRtRVcHASzes0v/O+TIeASb8aD55cWF1PidtInhFWSXcmhzhHqGjUWf9SUq1w70cvd1cWKUULubAfQ==",
-      "dev": true
-    },
-    "@types/json-bigint": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/@types/json-bigint/-/json-bigint-1.0.0.tgz",
-      "integrity": "sha512-WW+0cfH3ovFN6ROV+p/Xfw36dT6s16hbXBYIG49PYw6+j6e+AkpqYccctgxwyicBmC8CZDBnPhOH94shFhXgHQ==",
-      "dev": true
-    },
-    "@types/json-schema": {
-      "version": "7.0.4",
-      "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.4.tgz",
-      "integrity": "sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==",
-      "dev": true
-    },
-    "@types/json5": {
-      "version": "0.0.29",
-      "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
-      "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=",
-      "dev": true
-    },
-    "@types/lodash": {
-      "version": "4.14.149",
-      "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.149.tgz",
-      "integrity": "sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ=="
-    },
-    "@types/lodash.get": {
-      "version": "4.4.6",
-      "resolved": "https://registry.npmjs.org/@types/lodash.get/-/lodash.get-4.4.6.tgz",
-      "integrity": "sha512-E6zzjR3GtNig8UJG/yodBeJeIOtgPkMgsLjDU3CbgCAPC++vJ0eCMnJhVpRZb/ENqEFlov1+3K9TKtY4UdWKtQ==",
-      "requires": {
-        "@types/lodash": "*"
-      }
-    },
-    "@types/markdown-to-jsx": {
-      "version": "6.11.1",
-      "resolved": "https://registry.npmjs.org/@types/markdown-to-jsx/-/markdown-to-jsx-6.11.1.tgz",
-      "integrity": "sha512-fm/II24OzSx7J7CzXnHjEIf0d+s82bmdcokbyzY7PFMUnhyhnuGJgedt8R+yZgDn1mqhCLHmMjBPMsL8K4Xp9g==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/mathjs": {
-      "version": "6.0.11",
-      "resolved": "https://registry.npmjs.org/@types/mathjs/-/mathjs-6.0.11.tgz",
-      "integrity": "sha512-q9B8ZreO41L38iTY76bCZEtAqzeRs4mNIOZpZ1sLSlcYgvgfFrnf8y8qfmas0tVWrsODjmQbQJFD6RJJJCqJbQ==",
-      "requires": {
-        "decimal.js": "^10.0.0"
-      }
-    },
-    "@types/mdast": {
-      "version": "3.0.3",
-      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.3.tgz",
-      "integrity": "sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw==",
-      "dev": true,
-      "requires": {
-        "@types/unist": "*"
-      }
-    },
-    "@types/micromatch": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/@types/micromatch/-/micromatch-4.0.1.tgz",
-      "integrity": "sha512-my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw==",
-      "dev": true,
-      "requires": {
-        "@types/braces": "*"
-      }
-    },
-    "@types/minimatch": {
-      "version": "3.0.3",
-      "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz",
-      "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==",
-      "dev": true
-    },
-    "@types/node": {
-      "version": "10.12.15",
-      "resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.15.tgz",
-      "integrity": "sha512-9kROxduaN98QghwwHmxXO2Xz3MaWf+I1sLVAA6KJDF5xix+IyXVhds0MAfdNwtcpSrzhaTsNB0/jnL86fgUhqA==",
-      "dev": true
-    },
-    "@types/node-fetch": {
-      "version": "2.5.7",
-      "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.7.tgz",
-      "integrity": "sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw==",
-      "dev": true,
-      "requires": {
-        "@types/node": "*",
-        "form-data": "^3.0.0"
-      },
-      "dependencies": {
-        "combined-stream": {
-          "version": "1.0.8",
-          "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
-          "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
-          "dev": true,
-          "requires": {
-            "delayed-stream": "~1.0.0"
-          }
-        },
-        "form-data": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.0.tgz",
-          "integrity": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==",
-          "dev": true,
-          "requires": {
-            "asynckit": "^0.4.0",
-            "combined-stream": "^1.0.8",
-            "mime-types": "^2.1.12"
-          }
-        }
-      }
-    },
-    "@types/normalize-package-data": {
-      "version": "2.4.0",
-      "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
-      "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==",
-      "dev": true
-    },
-    "@types/npmlog": {
-      "version": "4.1.2",
-      "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.2.tgz",
-      "integrity": "sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==",
-      "dev": true
-    },
-    "@types/overlayscrollbars": {
-      "version": "1.12.0",
-      "resolved": "https://registry.npmjs.org/@types/overlayscrollbars/-/overlayscrollbars-1.12.0.tgz",
-      "integrity": "sha512-h/pScHNKi4mb+TrJGDon8Yb06ujFG0mSg12wIO0sWMUF3dQIe2ExRRdNRviaNt9IjxIiOfnRr7FsQAdHwK4sMg==",
-      "dev": true
-    },
-    "@types/parse-json": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
-      "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
-    },
-    "@types/parse5": {
-      "version": "5.0.3",
-      "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz",
-      "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==",
-      "dev": true
-    },
-    "@types/prettier": {
-      "version": "2.1.5",
-      "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz",
-      "integrity": "sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ==",
-      "dev": true
-    },
-    "@types/prop-types": {
-      "version": "15.5.8",
-      "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.5.8.tgz",
-      "integrity": "sha512-3AQoUxQcQtLHsK25wtTWIoIpgYjH3vSDroZOUr7PpCHw/jLY1RB9z9E8dBT/OSmwStVgkRNvdh+ZHNiomRieaw=="
-    },
-    "@types/q": {
-      "version": "1.5.2",
-      "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz",
-      "integrity": "sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==",
-      "dev": true
-    },
-    "@types/qs": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.4.tgz",
-      "integrity": "sha512-+wYo+L6ZF6BMoEjtf8zB2esQsqdV6WsjRK/GP9WOgLPrq87PbNWgIxS76dS5uvl/QXtHGakZmwTznIfcPXcKlQ==",
-      "dev": true
-    },
-    "@types/reach__router": {
-      "version": "1.3.5",
-      "resolved": "https://registry.npmjs.org/@types/reach__router/-/reach__router-1.3.5.tgz",
-      "integrity": "sha512-h0NbqXN/tJuBY/xggZSej1SKQEstbHO7J/omt1tYoFGmj3YXOodZKbbqD4mNDh7zvEGYd7YFrac1LTtAr3xsYQ==",
-      "dev": true,
-      "requires": {
-        "@types/history": "*",
-        "@types/react": "*"
-      }
-    },
-    "@types/react": {
-      "version": "16.9.43",
-      "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.43.tgz",
-      "integrity": "sha512-PxshAFcnJqIWYpJbLPriClH53Z2WlJcVZE+NP2etUtWQs2s7yIMj3/LDKZT/5CHJ/F62iyjVCDu2H3jHEXIxSg==",
-      "requires": {
-        "@types/prop-types": "*",
-        "csstype": "^2.2.0"
-      }
-    },
-    "@types/react-bootstrap": {
-      "version": "0.32.22",
-      "resolved": "https://registry.npmjs.org/@types/react-bootstrap/-/react-bootstrap-0.32.22.tgz",
-      "integrity": "sha512-pjUVcJzogMxns3lbvMqnnU+I8EOYxl3aI13tS2vvRm0RdAe1rs7Ds/VZA29GI6p8p3Un6NqKUpW3+dgwAjyzxg==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/react-color": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/@types/react-color/-/react-color-3.0.4.tgz",
-      "integrity": "sha512-EswbYJDF1kkrx93/YU+BbBtb46CCtDMvTiGmcOa/c5PETnwTiSWoseJ1oSWeRl/4rUXkhME9bVURvvPg0W5YQw==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*",
-        "@types/reactcss": "*"
-      }
-    },
-    "@types/react-dom": {
-      "version": "16.9.8",
-      "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.8.tgz",
-      "integrity": "sha512-ykkPQ+5nFknnlU6lDd947WbQ6TE3NNzbQAkInC2EKY1qeYdTKp7onFusmYZb+ityzx2YviqT6BXSu+LyWWJwcA==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/react-gravatar": {
-      "version": "2.6.8",
-      "resolved": "https://registry.npmjs.org/@types/react-gravatar/-/react-gravatar-2.6.8.tgz",
-      "integrity": "sha512-VMk0bF0w72l+opBm+EqLs0JqUG+hPowMBWCVGrbTwUWm/oDncvwNrf7P/ImwYwkTCKiLnU8Rc+/lyhehaIE/Rw==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/react-json-tree": {
-      "version": "0.6.11",
-      "resolved": "https://registry.npmjs.org/@types/react-json-tree/-/react-json-tree-0.6.11.tgz",
-      "integrity": "sha512-HP0Sf0ZHjCi1FHLJxh/pLaxaevEW6ILlV2C5Dn3EZFTkLjWkv+EVf/l/zvtmoU9ZwuO/3TKVeWK/700UDxunTw==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/react-loadable": {
-      "version": "5.5.4",
-      "resolved": "https://registry.npmjs.org/@types/react-loadable/-/react-loadable-5.5.4.tgz",
-      "integrity": "sha512-otKcjNCfVUzdBMdwOqFITTmBruIXw6GeoZitTBvJ6BMrif8Utu2JLy42GWukNnYI7ewJdncUCooz5Y/1dBz4+w==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*",
-        "@types/webpack": "*"
-      }
-    },
-    "@types/react-redux": {
-      "version": "7.1.10",
-      "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.10.tgz",
-      "integrity": "sha512-lmt2BPf0fFuYrXg1JM4udUd4sCmqnTlNUIxC7B6RIBTzmMuv/MxOfumGNUx1UyzVZieEZ2ttCQvFfh/3eUHvrQ==",
-      "dev": true,
-      "requires": {
-        "@types/hoist-non-react-statics": "^3.3.0",
-        "@types/react": "*",
-        "hoist-non-react-statics": "^3.3.0",
-        "redux": "^4.0.0"
-      },
-      "dependencies": {
-        "redux": {
-          "version": "4.0.5",
-          "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz",
-          "integrity": "sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==",
-          "dev": true,
-          "requires": {
-            "loose-envify": "^1.4.0",
-            "symbol-observable": "^1.2.0"
-          }
-        }
-      }
-    },
-    "@types/react-router": {
-      "version": "5.1.8",
-      "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.8.tgz",
-      "integrity": "sha512-HzOyJb+wFmyEhyfp4D4NYrumi+LQgQL/68HvJO+q6XtuHSDvw6Aqov7sCAhjbNq3bUPgPqbdvjXC5HeB2oEAPg==",
-      "dev": true,
-      "requires": {
-        "@types/history": "*",
-        "@types/react": "*"
-      }
-    },
-    "@types/react-router-dom": {
-      "version": "5.1.5",
-      "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.1.5.tgz",
-      "integrity": "sha512-ArBM4B1g3BWLGbaGvwBGO75GNFbLDUthrDojV2vHLih/Tq8M+tgvY1DSwkuNrPSwdp/GUL93WSEpTZs8nVyJLw==",
-      "dev": true,
-      "requires": {
-        "@types/history": "*",
-        "@types/react": "*",
-        "@types/react-router": "*"
-      }
-    },
-    "@types/react-select": {
-      "version": "3.0.19",
-      "resolved": "https://registry.npmjs.org/@types/react-select/-/react-select-3.0.19.tgz",
-      "integrity": "sha512-d+6qtfFXZeIOAABlVL1e50RZn8ctOABE4tFDxM6KW4lKuXgTTgLVrSik5AX9XjBjV7N80FtS6GTN/WeoXL9Jww==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*",
-        "@types/react-dom": "*",
-        "@types/react-transition-group": "*"
-      }
-    },
-    "@types/react-sticky": {
-      "version": "6.0.3",
-      "resolved": "https://registry.npmjs.org/@types/react-sticky/-/react-sticky-6.0.3.tgz",
-      "integrity": "sha512-tW0Y1hTr2Tao4yX58iKl0i7BaqrdObGXAzsyzd8VGVrWVEgbQuV6P6QKVd/kFC7FroXyelftiVNJ09pnfkcjww==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/react-syntax-highlighter": {
-      "version": "11.0.4",
-      "resolved": "https://registry.npmjs.org/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.4.tgz",
-      "integrity": "sha512-9GfTo3a0PHwQeTVoqs0g5bS28KkSY48pp5659wA+Dp4MqceDEa8EHBqrllJvvtyusszyJhViUEap0FDvlk/9Zg==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/react-table": {
-      "version": "7.0.19",
-      "resolved": "https://registry.npmjs.org/@types/react-table/-/react-table-7.0.19.tgz",
-      "integrity": "sha512-RYyEY7Yry6F2JsKhHeFsGdzuFF1hMqBStQrrazDzpBl4m/ECGHJxFVQjLBRzRwK+47ZKNPm79f7qEpHirbiCLA==",
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/react-transition-group": {
-      "version": "4.4.0",
-      "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.0.tgz",
-      "integrity": "sha512-/QfLHGpu+2fQOqQaXh8MG9q03bFENooTb/it4jr5kKaZlDQfWvjqWZg48AwzPVMBHlRuTRAY7hRHCEOXz5kV6w==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/react-ultimate-pagination": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/@types/react-ultimate-pagination/-/react-ultimate-pagination-1.2.0.tgz",
-      "integrity": "sha512-xFyJn6Jl26Q0bi+QTnLo4W5tCDKOGNU5Gn9iCg+Y6J+VqtuKuJ1wcP1Ax+nXAu5HF9qTgApI/hRn7ceCDC6TAA==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/react-virtualized": {
-      "version": "9.21.10",
-      "resolved": "https://registry.npmjs.org/@types/react-virtualized/-/react-virtualized-9.21.10.tgz",
-      "integrity": "sha512-f5Ti3A7gGdLkPPFNHTrvKblpsPNBiQoSorOEOD+JPx72g/Ng2lOt4MYfhvQFQNgyIrAro+Z643jbcKafsMW2ag==",
-      "dev": true,
-      "requires": {
-        "@types/prop-types": "*",
-        "@types/react": "*"
-      }
-    },
-    "@types/react-window": {
-      "version": "1.8.2",
-      "resolved": "https://registry.npmjs.org/@types/react-window/-/react-window-1.8.2.tgz",
-      "integrity": "sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F/y6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/reactcss": {
-      "version": "1.2.3",
-      "resolved": "https://registry.npmjs.org/@types/reactcss/-/reactcss-1.2.3.tgz",
-      "integrity": "sha512-d2gQQ0IL6hXLnoRfVYZukQNWHuVsE75DzFTLPUuyyEhJS8G2VvlE+qfQQ91SJjaMqlURRCNIsX7Jcsw6cEuJlA==",
-      "dev": true,
-      "requires": {
-        "@types/react": "*"
-      }
-    },
-    "@types/redux-localstorage": {
-      "version": "1.0.8",
-      "resolved": "https://registry.npmjs.org/@types/redux-localstorage/-/redux-localstorage-1.0.8.tgz",
-      "integrity": "sha512-pt+w3Y2K4Xwx79exTFZO356buBCgCM6NnyMv/EmASWb03a81g/EMEhNgH6w9dOnhTs1Clnmf2ykaia0FWXjsbQ==",
-      "dev": true,
-      "requires": {
-        "redux": "^3.6.0"
-      },
-      "dependencies": {
-        "redux": {
-          "version": "3.7.2",
-          "resolved": "https://registry.npmjs.org/redux/-/redux-3.7.2.tgz",
-          "integrity": "sha512-pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A==",
-          "dev": true,
-          "requires": {
-            "lodash": "^4.2.1",
-            "lodash-es": "^4.2.1",
-            "loose-envify": "^1.1.0",
-            "symbol-observable": "^1.0.3"
-          }
-        }
-      }
-    },
-    "@types/redux-mock-store": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/@types/redux-mock-store/-/redux-mock-store-1.0.2.tgz",
-      "integrity": "sha512-6LBtAQBN34i7SI5X+Qs4zpTEZO1tTDZ6sZ9fzFjYwTl3nLQXaBtwYdoV44CzNnyKu438xJ1lSIYyw0YMvunESw==",
-      "dev": true,
-      "requires": {
-        "redux": "^4.0.5"
-      },
-      "dependencies": {
-        "redux": {
-          "version": "4.0.5",
-          "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz",
-          "integrity": "sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==",
-          "dev": true,
-          "requires": {
-            "loose-envify": "^1.4.0",
-            "symbol-observable": "^1.2.0"
-          }
-        }
-      }
-    },
-    "@types/rison": {
-      "version": "0.0.6",
-      "resolved": "https://registry.npmjs.org/@types/rison/-/rison-0.0.6.tgz",
-      "integrity": "sha512-mE3eRK0fpTN/GnNBOIg2tGq2cFhchQXF6fCbrLxus75TgnoOECbdHikr948FGO/UAml7/ZhLMa5FbGkF5PKvmw=="
-    },
-    "@types/seedrandom": {
-      "version": "2.4.28",
-      "resolved": "https://registry.npmjs.org/@types/seedrandom/-/seedrandom-2.4.28.tgz",
-      "integrity": "sha512-SMA+fUwULwK7sd/ZJicUztiPs8F1yCPwF3O23Z9uQ32ME5Ha0NmDK9+QTsYE4O2tHXChzXomSWWeIhCnoN1LqA=="
-    },
-    "@types/shortid": {
-      "version": "0.0.29",
-      "resolved": "https://registry.npmjs.org/@types/shortid/-/shortid-0.0.29.tgz",
-      "integrity": "sha1-gJPuBBam4r8qpjOBCRFLP7/6Dps="
-    },
-    "@types/sinon": {
-      "version": "9.0.5",
-      "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-9.0.5.tgz",
-      "integrity": "sha512-4CnkGdM/5/FXDGqL32JQ1ttVrGvhOoesLLF7VnTh4KdjK5N5VQOtxaylFqqTjnHx55MnD9O02Nbk5c1ELC8wlQ==",
-      "dev": true,
-      "requires": {
-        "@types/sinonjs__fake-timers": "*"
-      }
-    },
-    "@types/sinonjs__fake-timers": {
-      "version": "6.0.1",
-      "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.1.tgz",
-      "integrity": "sha512-yYezQwGWty8ziyYLdZjwxyMb0CZR49h8JALHGrxjQHWlqGgc8kLdHEgWrgL0uZ29DMvEVBDnHU2Wg36zKSIUtA==",
-      "dev": true
-    },
-    "@types/sizzle": {
-      "version": "2.3.2",
-      "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.2.tgz",
-      "integrity": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==",
-      "dev": true
-    },
-    "@types/source-list-map": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz",
-      "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==",
-      "dev": true
-    },
-    "@types/stack-utils": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz",
-      "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==",
-      "dev": true
-    },
-    "@types/tapable": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.4.tgz",
-      "integrity": "sha512-78AdXtlhpCHT0K3EytMpn4JNxaf5tbqbLcbIRoQIHzpTIyjpxLQKRoxU55ujBXAtg3Nl2h/XWvfDa9dsMOd0pQ==",
-      "dev": true
-    },
-    "@types/testing-library__jest-dom": {
-      "version": "5.9.5",
-      "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.9.5.tgz",
-      "integrity": "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==",
-      "dev": true,
-      "requires": {
-        "@types/jest": "*"
-      }
-    },
-    "@types/uglify-js": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.0.4.tgz",
-      "integrity": "sha512-SudIN9TRJ+v8g5pTG8RRCqfqTMNqgWCKKd3vtynhGzkIIjxaicNAMuY5TRadJ6tzDu3Dotf3ngaMILtmOdmWEQ==",
-      "dev": true,
-      "requires": {
-        "source-map": "^0.6.1"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "@types/unist": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz",
-      "integrity": "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ=="
-    },
-    "@types/webpack": {
-      "version": "4.39.1",
-      "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.39.1.tgz",
-      "integrity": "sha512-rgO9ihNu/l72Sjx3shqwc9r6gi+tOMsqxhMEZhOEVIZt82GFOeUyEdpTk1BO2HqEHLS/XJW8ldUTIIfIMMyYFQ==",
-      "dev": true,
-      "requires": {
-        "@types/anymatch": "*",
-        "@types/node": "*",
-        "@types/tapable": "*",
-        "@types/uglify-js": "*",
-        "@types/webpack-sources": "*",
-        "source-map": "^0.6.0"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "@types/webpack-env": {
-      "version": "1.15.2",
-      "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.15.2.tgz",
-      "integrity": "sha512-67ZgZpAlhIICIdfQrB5fnDvaKFcDxpKibxznfYRVAT4mQE41Dido/3Ty+E3xGBmTogc5+0Qb8tWhna+5B8z1iQ==",
-      "dev": true
-    },
-    "@types/webpack-sources": {
-      "version": "0.1.5",
-      "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.5.tgz",
-      "integrity": "sha512-zfvjpp7jiafSmrzJ2/i3LqOyTYTuJ7u1KOXlKgDlvsj9Rr0x7ZiYu5lZbXwobL7lmsRNtPXlBfmaUD8eU2Hu8w==",
-      "dev": true,
-      "requires": {
-        "@types/node": "*",
-        "@types/source-list-map": "*",
-        "source-map": "^0.6.1"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "@types/yargs": {
-      "version": "12.0.12",
-      "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz",
-      "integrity": "sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==",
-      "dev": true
-    },
-    "@types/yargs-parser": {
-      "version": "15.0.0",
-      "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz",
-      "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==",
-      "dev": true
-    },
-    "@typescript-eslint/eslint-plugin": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.1.0.tgz",
-      "integrity": "sha512-U+nRJx8XDUqJxYF0FCXbpmD9nWt/xHDDG0zsw1vrVYAmEAuD/r49iowfurjSL2uTA2JsgtpsyG7mjO7PHf2dYw==",
-      "dev": true,
-      "requires": {
-        "@typescript-eslint/experimental-utils": "4.1.0",
-        "@typescript-eslint/scope-manager": "4.1.0",
-        "debug": "^4.1.1",
-        "functional-red-black-tree": "^1.0.1",
-        "regexpp": "^3.0.0",
-        "semver": "^7.3.2",
-        "tsutils": "^3.17.1"
-      },
-      "dependencies": {
-        "@nodelib/fs.stat": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz",
-          "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==",
-          "dev": true
-        },
-        "@typescript-eslint/experimental-utils": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.1.0.tgz",
-          "integrity": "sha512-paEYLA37iqRIDPeQwAmoYSiZ3PiHsaAc3igFeBTeqRHgPnHjHLJ9OGdmP6nwAkF65p2QzEsEBtpjNUBWByNWzA==",
-          "dev": true,
-          "requires": {
-            "@types/json-schema": "^7.0.3",
-            "@typescript-eslint/scope-manager": "4.1.0",
-            "@typescript-eslint/types": "4.1.0",
-            "@typescript-eslint/typescript-estree": "4.1.0",
-            "eslint-scope": "^5.0.0",
-            "eslint-utils": "^2.0.0"
-          }
-        },
-        "@typescript-eslint/typescript-estree": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.1.0.tgz",
-          "integrity": "sha512-r6et57qqKAWU173nWyw31x7OfgmKfMEcjJl9vlJEzS+kf9uKNRr4AVTRXfTCwebr7bdiVEkfRY5xGnpPaNPe4Q==",
-          "dev": true,
-          "requires": {
-            "@typescript-eslint/types": "4.1.0",
-            "@typescript-eslint/visitor-keys": "4.1.0",
-            "debug": "^4.1.1",
-            "globby": "^11.0.1",
-            "is-glob": "^4.0.1",
-            "lodash": "^4.17.15",
-            "semver": "^7.3.2",
-            "tsutils": "^3.17.1"
-          }
-        },
-        "array-union": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
-          "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
-          "dev": true
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "fast-glob": {
-          "version": "3.2.4",
-          "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz",
-          "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==",
-          "dev": true,
-          "requires": {
-            "@nodelib/fs.stat": "^2.0.2",
-            "@nodelib/fs.walk": "^1.2.3",
-            "glob-parent": "^5.1.0",
-            "merge2": "^1.3.0",
-            "micromatch": "^4.0.2",
-            "picomatch": "^2.2.1"
-          }
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "globby": {
-          "version": "11.0.1",
-          "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz",
-          "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==",
-          "dev": true,
-          "requires": {
-            "array-union": "^2.1.0",
-            "dir-glob": "^3.0.1",
-            "fast-glob": "^3.1.1",
-            "ignore": "^5.1.4",
-            "merge2": "^1.3.0",
-            "slash": "^3.0.0"
-          }
-        },
-        "ignore": {
-          "version": "5.1.8",
-          "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz",
-          "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "semver": {
-          "version": "7.3.2",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
-          "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
-          "dev": true
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "@typescript-eslint/experimental-utils": {
-      "version": "4.12.0",
-      "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.12.0.tgz",
-      "integrity": "sha512-MpXZXUAvHt99c9ScXijx7i061o5HEjXltO+sbYfZAAHxv3XankQkPaNi5myy0Yh0Tyea3Hdq1pi7Vsh0GJb0fA==",
-      "dev": true,
-      "requires": {
-        "@types/json-schema": "^7.0.3",
-        "@typescript-eslint/scope-manager": "4.12.0",
-        "@typescript-eslint/types": "4.12.0",
-        "@typescript-eslint/typescript-estree": "4.12.0",
-        "eslint-scope": "^5.0.0",
-        "eslint-utils": "^2.0.0"
-      },
-      "dependencies": {
-        "@typescript-eslint/scope-manager": {
-          "version": "4.12.0",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.12.0.tgz",
-          "integrity": "sha512-QVf9oCSVLte/8jvOsxmgBdOaoe2J0wtEmBr13Yz0rkBNkl5D8bfnf6G4Vhox9qqMIoG7QQoVwd2eG9DM/ge4Qg==",
-          "dev": true,
-          "requires": {
-            "@typescript-eslint/types": "4.12.0",
-            "@typescript-eslint/visitor-keys": "4.12.0"
-          }
-        },
-        "@typescript-eslint/types": {
-          "version": "4.12.0",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.12.0.tgz",
-          "integrity": "sha512-N2RhGeheVLGtyy+CxRmxdsniB7sMSCfsnbh8K/+RUIXYYq3Ub5+sukRCjVE80QerrUBvuEvs4fDhz5AW/pcL6g==",
-          "dev": true
-        },
-        "@typescript-eslint/visitor-keys": {
-          "version": "4.12.0",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.12.0.tgz",
-          "integrity": "sha512-hVpsLARbDh4B9TKYz5cLbcdMIOAoBYgFPCSP9FFS/liSF+b33gVNq8JHY3QGhHNVz85hObvL7BEYLlgx553WCw==",
-          "dev": true,
-          "requires": {
-            "@typescript-eslint/types": "4.12.0",
-            "eslint-visitor-keys": "^2.0.0"
-          }
-        },
-        "eslint-visitor-keys": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz",
-          "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==",
-          "dev": true
-        }
-      }
-    },
-    "@typescript-eslint/parser": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.1.0.tgz",
-      "integrity": "sha512-hM/WNCQTzDHgS0Ke3cR9zPndL3OTKr9OoN9CL3UqulsAjYDrglSwIIgswSmHBcSbOzLmgaMARwrQEbIumIglvQ==",
-      "dev": true,
-      "requires": {
-        "@typescript-eslint/scope-manager": "4.1.0",
-        "@typescript-eslint/types": "4.1.0",
-        "@typescript-eslint/typescript-estree": "4.1.0",
-        "debug": "^4.1.1"
-      },
-      "dependencies": {
-        "@nodelib/fs.stat": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz",
-          "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==",
-          "dev": true
-        },
-        "@typescript-eslint/typescript-estree": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.1.0.tgz",
-          "integrity": "sha512-r6et57qqKAWU173nWyw31x7OfgmKfMEcjJl9vlJEzS+kf9uKNRr4AVTRXfTCwebr7bdiVEkfRY5xGnpPaNPe4Q==",
-          "dev": true,
-          "requires": {
-            "@typescript-eslint/types": "4.1.0",
-            "@typescript-eslint/visitor-keys": "4.1.0",
-            "debug": "^4.1.1",
-            "globby": "^11.0.1",
-            "is-glob": "^4.0.1",
-            "lodash": "^4.17.15",
-            "semver": "^7.3.2",
-            "tsutils": "^3.17.1"
-          }
-        },
-        "array-union": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
-          "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
-          "dev": true
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "fast-glob": {
-          "version": "3.2.4",
-          "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz",
-          "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==",
-          "dev": true,
-          "requires": {
-            "@nodelib/fs.stat": "^2.0.2",
-            "@nodelib/fs.walk": "^1.2.3",
-            "glob-parent": "^5.1.0",
-            "merge2": "^1.3.0",
-            "micromatch": "^4.0.2",
-            "picomatch": "^2.2.1"
-          }
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "globby": {
-          "version": "11.0.1",
-          "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz",
-          "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==",
-          "dev": true,
-          "requires": {
-            "array-union": "^2.1.0",
-            "dir-glob": "^3.0.1",
-            "fast-glob": "^3.1.1",
-            "ignore": "^5.1.4",
-            "merge2": "^1.3.0",
-            "slash": "^3.0.0"
-          }
-        },
-        "ignore": {
-          "version": "5.1.8",
-          "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz",
-          "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "semver": {
-          "version": "7.3.2",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
-          "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
-          "dev": true
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "@typescript-eslint/scope-manager": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.1.0.tgz",
-      "integrity": "sha512-HD1/u8vFNnxwiHqlWKC/Pigdn0Mvxi84Y6GzbZ5f5sbLrFKu0al02573Er+D63Sw67IffVUXR0uR8rpdfdk+vA==",
-      "dev": true,
-      "requires": {
-        "@typescript-eslint/types": "4.1.0",
-        "@typescript-eslint/visitor-keys": "4.1.0"
-      }
-    },
-    "@typescript-eslint/types": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.1.0.tgz",
-      "integrity": "sha512-rkBqWsO7m01XckP9R2YHVN8mySOKKY2cophGM8K5uDK89ArCgahItQYdbg/3n8xMxzu2elss+an1TphlUpDuJw==",
-      "dev": true
-    },
-    "@typescript-eslint/typescript-estree": {
-      "version": "4.12.0",
-      "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.12.0.tgz",
-      "integrity": "sha512-gZkFcmmp/CnzqD2RKMich2/FjBTsYopjiwJCroxqHZIY11IIoN0l5lKqcgoAPKHt33H2mAkSfvzj8i44Jm7F4w==",
-      "dev": true,
-      "requires": {
-        "@typescript-eslint/types": "4.12.0",
-        "@typescript-eslint/visitor-keys": "4.12.0",
-        "debug": "^4.1.1",
-        "globby": "^11.0.1",
-        "is-glob": "^4.0.1",
-        "lodash": "^4.17.15",
-        "semver": "^7.3.2",
-        "tsutils": "^3.17.1"
-      },
-      "dependencies": {
-        "@nodelib/fs.stat": {
-          "version": "2.0.4",
-          "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz",
-          "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==",
-          "dev": true
-        },
-        "@typescript-eslint/types": {
-          "version": "4.12.0",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.12.0.tgz",
-          "integrity": "sha512-N2RhGeheVLGtyy+CxRmxdsniB7sMSCfsnbh8K/+RUIXYYq3Ub5+sukRCjVE80QerrUBvuEvs4fDhz5AW/pcL6g==",
-          "dev": true
-        },
-        "@typescript-eslint/visitor-keys": {
-          "version": "4.12.0",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.12.0.tgz",
-          "integrity": "sha512-hVpsLARbDh4B9TKYz5cLbcdMIOAoBYgFPCSP9FFS/liSF+b33gVNq8JHY3QGhHNVz85hObvL7BEYLlgx553WCw==",
-          "dev": true,
-          "requires": {
-            "@typescript-eslint/types": "4.12.0",
-            "eslint-visitor-keys": "^2.0.0"
-          }
-        },
-        "array-union": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
-          "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
-          "dev": true
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "eslint-visitor-keys": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz",
-          "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==",
-          "dev": true
-        },
-        "fast-glob": {
-          "version": "3.2.4",
-          "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz",
-          "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==",
-          "dev": true,
-          "requires": {
-            "@nodelib/fs.stat": "^2.0.2",
-            "@nodelib/fs.walk": "^1.2.3",
-            "glob-parent": "^5.1.0",
-            "merge2": "^1.3.0",
-            "micromatch": "^4.0.2",
-            "picomatch": "^2.2.1"
-          }
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "globby": {
-          "version": "11.0.2",
-          "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz",
-          "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==",
-          "dev": true,
-          "requires": {
-            "array-union": "^2.1.0",
-            "dir-glob": "^3.0.1",
-            "fast-glob": "^3.1.1",
-            "ignore": "^5.1.4",
-            "merge2": "^1.3.0",
-            "slash": "^3.0.0"
-          }
-        },
-        "ignore": {
-          "version": "5.1.8",
-          "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz",
-          "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "lru-cache": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
-          "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-          "dev": true,
-          "requires": {
-            "yallist": "^4.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "semver": {
-          "version": "7.3.4",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz",
-          "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
-          "dev": true,
-          "requires": {
-            "lru-cache": "^6.0.0"
-          }
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        },
-        "yallist": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
-          "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-          "dev": true
-        }
-      }
-    },
-    "@typescript-eslint/visitor-keys": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.1.0.tgz",
-      "integrity": "sha512-+taO0IZGCtCEsuNTTF2Q/5o8+fHrlml8i9YsZt2AiDCdYEJzYlsmRY991l/6f3jNXFyAWepdQj7n8Na6URiDRQ==",
-      "dev": true,
-      "requires": {
-        "@typescript-eslint/types": "4.1.0",
-        "eslint-visitor-keys": "^2.0.0"
-      },
-      "dependencies": {
-        "eslint-visitor-keys": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz",
-          "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==",
-          "dev": true
-        }
-      }
-    },
-    "@vx/axis": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/axis/-/axis-0.0.140.tgz",
-      "integrity": "sha1-qtVXwoHGzCHBUWl3MBVSxwUuUiQ=",
-      "requires": {
-        "@vx/group": "0.0.140",
-        "@vx/point": "0.0.136",
-        "@vx/shape": "0.0.140",
-        "classnames": "^2.2.5",
-        "prop-types": "15.5.10"
-      },
-      "dependencies": {
-        "prop-types": {
-          "version": "15.5.10",
-          "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.5.10.tgz",
-          "integrity": "sha1-J5ffwxJhguOpXj37suiT3ddFYVQ=",
-          "requires": {
-            "fbjs": "^0.8.9",
-            "loose-envify": "^1.3.1"
-          }
-        }
-      }
-    },
-    "@vx/bounds": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/bounds/-/bounds-0.0.140.tgz",
-      "integrity": "sha1-Tt6XZqq7QbeRpPv0wn/MGe2D+RA=",
-      "requires": {
-        "prop-types": "^15.5.10"
-      }
-    },
-    "@vx/clip-path": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/clip-path/-/clip-path-0.0.140.tgz",
-      "integrity": "sha1-smI9AE3Vw8imr+jQYN5Z31FHLZQ="
-    },
-    "@vx/curve": {
-      "version": "0.0.165",
-      "resolved": "https://registry.npmjs.org/@vx/curve/-/curve-0.0.165.tgz",
-      "integrity": "sha512-fiQAGrKNGjJbL+eixUckJqIZDWXH/1NtIyyDbSz3J7ksk0QpYr5BgWcNJN76HLNt7wfcLwNzCHeNs4iVYyFGTg==",
-      "requires": {
-        "d3-shape": "^1.0.6"
-      }
-    },
-    "@vx/event": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/event/-/event-0.0.140.tgz",
-      "integrity": "sha1-ZY7E3pLNYd9AuIMpYWjU4IJAFb8=",
-      "requires": {
-        "@vx/point": "0.0.136"
-      }
-    },
-    "@vx/glyph": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/glyph/-/glyph-0.0.140.tgz",
-      "integrity": "sha1-+DI/gq7iIZK2db7yV4m7t9dGkbo=",
-      "requires": {
-        "@vx/group": "0.0.140",
-        "classnames": "^2.2.5",
-        "d3-shape": "^1.2.0"
-      }
-    },
-    "@vx/gradient": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/gradient/-/gradient-0.0.140.tgz",
-      "integrity": "sha1-VrQhAWy64NywAZDP/7noYKKP6/Q=",
-      "requires": {
-        "classnames": "^2.2.5",
-        "prop-types": "^15.5.7"
-      }
-    },
-    "@vx/grid": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/grid/-/grid-0.0.140.tgz",
-      "integrity": "sha1-nf0wcbxdkNS0V91V1/eVaZIzsjA=",
-      "requires": {
-        "@vx/group": "0.0.140",
-        "@vx/point": "0.0.136",
-        "@vx/shape": "0.0.140",
-        "classnames": "^2.2.5"
-      }
-    },
-    "@vx/group": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.140.tgz",
-      "integrity": "sha1-y6mws/LwB+W+c0bzyG9z9w4DiiM=",
-      "requires": {
-        "classnames": "^2.2.5"
-      }
-    },
-    "@vx/legend": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/legend/-/legend-0.0.140.tgz",
-      "integrity": "sha1-QGLCfWvJxNYHMJ137/ErhEcnrpk=",
-      "requires": {
-        "@vx/group": "0.0.140",
-        "classnames": "^2.2.5",
-        "prop-types": "^15.5.10"
-      }
-    },
-    "@vx/pattern": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/pattern/-/pattern-0.0.140.tgz",
-      "integrity": "sha1-9J9XxvE8tbO6qlu+wXTF06p4Lac=",
-      "requires": {
-        "classnames": "^2.2.5",
-        "prop-types": "^15.5.10"
-      }
-    },
-    "@vx/point": {
-      "version": "0.0.136",
-      "resolved": "https://registry.npmjs.org/@vx/point/-/point-0.0.136.tgz",
-      "integrity": "sha1-k7MltLlcnVuW33QPQgQBf1c5ZVk="
-    },
-    "@vx/responsive": {
-      "version": "0.0.195",
-      "resolved": "https://registry.npmjs.org/@vx/responsive/-/responsive-0.0.195.tgz",
-      "integrity": "sha512-3zjkjqg8V3Kr1moSI7EAzlW7MLR87p2CXc+qh0zZg/zLrc3C89JnxyMYFfS7jM4PlHr26n634YddQDVydwARBA==",
-      "requires": {
-        "@types/lodash": "^4.14.146",
-        "@types/react": "*",
-        "lodash": "^4.17.10",
-        "prop-types": "^15.6.1",
-        "resize-observer-polyfill": "1.5.1"
-      }
-    },
-    "@vx/scale": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/scale/-/scale-0.0.140.tgz",
-      "integrity": "sha1-HrCH0R0AALJQws3EBhueIhLtsQ0=",
-      "requires": {
-        "d3-scale": "^1.0.5"
-      },
-      "dependencies": {
-        "d3-scale": {
-          "version": "1.0.7",
-          "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-1.0.7.tgz",
-          "integrity": "sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==",
-          "requires": {
-            "d3-array": "^1.2.0",
-            "d3-collection": "1",
-            "d3-color": "1",
-            "d3-format": "1",
-            "d3-interpolate": "1",
-            "d3-time": "1",
-            "d3-time-format": "2"
-          }
-        }
-      }
-    },
-    "@vx/shape": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.140.tgz",
-      "integrity": "sha1-aigtX986V1K26Ti7Pevpg+if9tM=",
-      "requires": {
-        "@vx/curve": "0.0.140",
-        "@vx/group": "0.0.140",
-        "@vx/point": "0.0.136",
-        "classnames": "^2.2.5",
-        "d3-shape": "^1.2.0",
-        "prop-types": "^15.5.10"
-      },
-      "dependencies": {
-        "@vx/curve": {
-          "version": "0.0.140",
-          "resolved": "https://registry.npmjs.org/@vx/curve/-/curve-0.0.140.tgz",
-          "integrity": "sha1-Ke84jos3GCE9ZqiW1WncHryO34k=",
-          "requires": {
-            "d3-shape": "^1.0.6"
-          }
-        }
-      }
-    },
-    "@vx/stats": {
-      "version": "0.0.165",
-      "resolved": "https://registry.npmjs.org/@vx/stats/-/stats-0.0.165.tgz",
-      "integrity": "sha512-FRW5N+7pXLZrQxT8JA8OH28PGKq7YfiycmnSG7jzXOnvw+sPm9MRKCoyRDTpFrCiggcOhHhvqhE8RiO2qF7d3Q==",
-      "requires": {
-        "@vx/group": "0.0.165",
-        "@vx/scale": "0.0.165",
-        "classnames": "^2.2.5",
-        "d3-shape": "^1.2.0"
-      },
-      "dependencies": {
-        "@vx/group": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.165.tgz",
-          "integrity": "sha512-gi1DSg8AAaVRseyWiq8y4bzyvKiQIXT6vDUYBVRmv2LBcpHocBGaxNiNK0X602RgLG0XmNyRv6qSCWLOaBs3Mg==",
-          "requires": {
-            "classnames": "^2.2.5"
-          }
-        },
-        "@vx/scale": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/scale/-/scale-0.0.165.tgz",
-          "integrity": "sha512-5jSgXJDU6J/KWIyCbpjHqysPCddp7tG3LbTV7UmtB1Qleb4m4slShTVSE7+EKU+zgiQPDGm0+E2ht4cet+7F7A==",
-          "requires": {
-            "d3-scale": "^2.0.0"
-          }
-        }
-      }
-    },
-    "@vx/text": {
-      "version": "0.0.179",
-      "resolved": "https://registry.npmjs.org/@vx/text/-/text-0.0.179.tgz",
-      "integrity": "sha512-UD3/8o15+AQfjDI8LQ1Zj3EdQCwA3cfuQMR/M2F/Le4+JXQNMheeWz4xGyF4ZDs6r7c5cUI9Cd1RaPmGhYsX9g==",
-      "requires": {
-        "babel-plugin-lodash": "^3.3.2",
-        "classnames": "^2.2.5",
-        "lodash": "^4.17.4",
-        "prop-types": "^15.6.2",
-        "reduce-css-calc": "^1.3.0"
-      }
-    },
-    "@vx/threshold": {
-      "version": "0.0.170",
-      "resolved": "https://registry.npmjs.org/@vx/threshold/-/threshold-0.0.170.tgz",
-      "integrity": "sha512-A3yWJrFqckbleXg3Q3iSsU6mdtHbMxEnE4jGZd8og4m9r2RDVTvFVP6ZRo4vunlfWj5YuMnNsKhx4ZSWKVMtXg==",
-      "requires": {
-        "@vx/clip-path": "0.0.165",
-        "@vx/shape": "0.0.170",
-        "classnames": "^2.2.5",
-        "prop-types": "^15.5.10"
-      },
-      "dependencies": {
-        "@vx/clip-path": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/clip-path/-/clip-path-0.0.165.tgz",
-          "integrity": "sha512-mBCbgguLMVyGvar5FbxqyyY4NQFlnXoSLF0TrhgWYkF/FCXdE1CzBC+Y4iXIJOY0ZTtluqL9XrNdIDpx49AmuA=="
-        },
-        "@vx/group": {
-          "version": "0.0.170",
-          "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.170.tgz",
-          "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==",
-          "requires": {
-            "classnames": "^2.2.5"
-          }
-        },
-        "@vx/point": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/point/-/point-0.0.165.tgz",
-          "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA=="
-        },
-        "@vx/shape": {
-          "version": "0.0.170",
-          "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.170.tgz",
-          "integrity": "sha512-rm8oVRP0ejgwGhQTVhqP5awqphWX60FgbnRt9X+YBUqgv7Qyedfgs/CHd/5QFZX3aPp8d4F+b4+lghbIYiMgmQ==",
-          "requires": {
-            "@vx/curve": "0.0.165",
-            "@vx/group": "0.0.170",
-            "@vx/point": "0.0.165",
-            "classnames": "^2.2.5",
-            "d3-path": "^1.0.5",
-            "d3-shape": "^1.2.0",
-            "prop-types": "^15.5.10"
-          }
-        }
-      }
-    },
-    "@vx/tooltip": {
-      "version": "0.0.140",
-      "resolved": "https://registry.npmjs.org/@vx/tooltip/-/tooltip-0.0.140.tgz",
-      "integrity": "sha1-xcgwYnKHfBu9TotHjqUpHxAZ/+M=",
-      "requires": {
-        "@vx/bounds": "0.0.140",
-        "classnames": "^2.2.5",
-        "prop-types": "^15.5.10"
-      }
-    },
-    "@vx/voronoi": {
-      "version": "0.0.165",
-      "resolved": "https://registry.npmjs.org/@vx/voronoi/-/voronoi-0.0.165.tgz",
-      "integrity": "sha512-oZT9KBAjDLCEcOrrqW01TPz8pLtrNNAFPa7mB9ignXvgntqEd3yVXCBkxXScfZLS+O8UQc+7/pawu0PPkE2eMw==",
-      "requires": {
-        "@vx/group": "0.0.165",
-        "classnames": "^2.2.5",
-        "d3-voronoi": "^1.1.2",
-        "prop-types": "^15.6.1"
-      },
-      "dependencies": {
-        "@vx/group": {
-          "version": "0.0.165",
-          "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.165.tgz",
-          "integrity": "sha512-gi1DSg8AAaVRseyWiq8y4bzyvKiQIXT6vDUYBVRmv2LBcpHocBGaxNiNK0X602RgLG0XmNyRv6qSCWLOaBs3Mg==",
-          "requires": {
-            "classnames": "^2.2.5"
-          }
-        }
-      }
-    },
-    "@webpack-contrib/schema-utils": {
-      "version": "1.0.0-beta.0",
-      "resolved": "https://registry.npmjs.org/@webpack-contrib/schema-utils/-/schema-utils-1.0.0-beta.0.tgz",
-      "integrity": "sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==",
-      "dev": true,
-      "requires": {
-        "ajv": "^6.1.0",
-        "ajv-keywords": "^3.1.0",
-        "chalk": "^2.3.2",
-        "strip-ansi": "^4.0.0",
-        "text-table": "^0.2.0",
-        "webpack-log": "^1.1.2"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
-          "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
-          "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^3.0.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "webpack-log": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-1.2.0.tgz",
-          "integrity": "sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.1.0",
-            "log-symbols": "^2.1.0",
-            "loglevelnext": "^1.0.1",
-            "uuid": "^3.1.0"
-          }
-        }
-      }
-    },
-    "@xtuc/ieee754": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
-      "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
-      "dev": true
-    },
-    "@xtuc/long": {
-      "version": "4.2.2",
-      "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
-      "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
-      "dev": true
-    },
-    "abab": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.3.tgz",
-      "integrity": "sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==",
-      "dev": true
-    },
-    "abbrev": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
-      "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
-      "dev": true
-    },
-    "abortcontroller-polyfill": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.2.1.tgz",
-      "integrity": "sha512-9jN7+BijYKWO8fxfcG7QZh7js6V+g3OjkxMRHfKWNjjs85048VY4cd27Uoe6yk55P66L/z7Dflu5+YEApgMzkA=="
-    },
-    "accepts": {
-      "version": "1.3.5",
-      "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz",
-      "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=",
-      "dev": true,
-      "requires": {
-        "mime-types": "~2.1.18",
-        "negotiator": "0.6.1"
-      }
-    },
-    "acorn": {
-      "version": "7.1.1",
-      "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz",
-      "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg=="
-    },
-    "acorn-globals": {
-      "version": "6.0.0",
-      "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
-      "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
-      "dev": true,
-      "requires": {
-        "acorn": "^7.1.1",
-        "acorn-walk": "^7.1.1"
-      }
-    },
-    "acorn-jsx": {
-      "version": "5.3.1",
-      "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz",
-      "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==",
-      "dev": true
-    },
-    "acorn-walk": {
-      "version": "7.2.0",
-      "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
-      "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
-      "dev": true
-    },
-    "address": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz",
-      "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==",
-      "dev": true
-    },
-    "aggregate-error": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz",
-      "integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==",
-      "dev": true,
-      "requires": {
-        "clean-stack": "^2.0.0",
-        "indent-string": "^4.0.0"
-      }
-    },
-    "airbnb-js-shims": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz",
-      "integrity": "sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==",
-      "dev": true,
-      "requires": {
-        "array-includes": "^3.0.3",
-        "array.prototype.flat": "^1.2.1",
-        "array.prototype.flatmap": "^1.2.1",
-        "es5-shim": "^4.5.13",
-        "es6-shim": "^0.35.5",
-        "function.prototype.name": "^1.1.0",
-        "globalthis": "^1.0.0",
-        "object.entries": "^1.1.0",
-        "object.fromentries": "^2.0.0 || ^1.0.0",
-        "object.getownpropertydescriptors": "^2.0.3",
-        "object.values": "^1.1.0",
-        "promise.allsettled": "^1.0.0",
-        "promise.prototype.finally": "^3.1.0",
-        "string.prototype.matchall": "^4.0.0 || ^3.0.1",
-        "string.prototype.padend": "^3.0.0",
-        "string.prototype.padstart": "^3.0.0",
-        "symbol.prototype.description": "^1.0.0"
-      }
-    },
-    "airbnb-prop-types": {
-      "version": "2.15.0",
-      "resolved": "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.15.0.tgz",
-      "integrity": "sha512-jUh2/hfKsRjNFC4XONQrxo/n/3GG4Tn6Hl0WlFQN5PY9OMC9loSCoAYKnZsWaP8wEfd5xcrPloK0Zg6iS1xwVA==",
-      "dev": true,
-      "requires": {
-        "array.prototype.find": "^2.1.0",
-        "function.prototype.name": "^1.1.1",
-        "has": "^1.0.3",
-        "is-regex": "^1.0.4",
-        "object-is": "^1.0.1",
-        "object.assign": "^4.1.0",
-        "object.entries": "^1.1.0",
-        "prop-types": "^15.7.2",
-        "prop-types-exact": "^1.2.0",
-        "react-is": "^16.9.0"
-      },
-      "dependencies": {
-        "react-is": {
-          "version": "16.9.0",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.9.0.tgz",
-          "integrity": "sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==",
-          "dev": true
-        }
-      }
-    },
-    "ajv": {
-      "version": "6.6.1",
-      "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.6.1.tgz",
-      "integrity": "sha512-ZoJjft5B+EJBjUyu9C9Hc0OZyPZSSlOF+plzouTrg6UlA8f+e/n8NIgBFG/9tppJtpPWfthHakK7juJdNDODww==",
-      "dev": true,
-      "requires": {
-        "fast-deep-equal": "^2.0.1",
-        "fast-json-stable-stringify": "^2.0.0",
-        "json-schema-traverse": "^0.4.1",
-        "uri-js": "^4.2.2"
-      }
-    },
-    "ajv-errors": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz",
-      "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==",
-      "dev": true
-    },
-    "ajv-keywords": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz",
-      "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=",
-      "dev": true
-    },
-    "alphanum-sort": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz",
-      "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=",
-      "dev": true
-    },
-    "ansi-align": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz",
-      "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==",
-      "dev": true,
-      "requires": {
-        "string-width": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
-          "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
-          "dev": true
-        },
-        "emoji-regex": {
-          "version": "7.0.3",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
-          "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
-          "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
-          "dev": true
-        },
-        "string-width": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
-          "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^7.0.1",
-            "is-fullwidth-code-point": "^2.0.0",
-            "strip-ansi": "^5.1.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "5.2.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
-          "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^4.1.0"
-          }
-        }
-      }
-    },
-    "ansi-colors": {
-      "version": "3.2.3",
-      "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz",
-      "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==",
-      "dev": true
-    },
-    "ansi-escapes": {
-      "version": "4.3.1",
-      "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz",
-      "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==",
-      "dev": true,
-      "requires": {
-        "type-fest": "^0.11.0"
-      },
-      "dependencies": {
-        "type-fest": {
-          "version": "0.11.0",
-          "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
-          "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==",
-          "dev": true
-        }
-      }
-    },
-    "ansi-html": {
-      "version": "0.0.7",
-      "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz",
-      "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=",
-      "dev": true
-    },
-    "ansi-regex": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
-      "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
-      "dev": true
-    },
-    "ansi-styles": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
-      "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
-      "dev": true
-    },
-    "ansi-to-html": {
-      "version": "0.6.14",
-      "resolved": "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.14.tgz",
-      "integrity": "sha512-7ZslfB1+EnFSDO5Ju+ue5Y6It19DRnZXWv8jrGHgIlPna5Mh4jz7BV5jCbQneXNFurQcKoolaaAjHtgSBfOIuA==",
-      "dev": true,
-      "requires": {
-        "entities": "^1.1.2"
-      }
-    },
-    "ansicolors": {
-      "version": "0.2.1",
-      "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.2.1.tgz",
-      "integrity": "sha1-vgiVmQl7dKXJxKhKDNvNtivYeu8="
-    },
-    "antd": {
-      "version": "4.9.4",
-      "resolved": "https://registry.npmjs.org/antd/-/antd-4.9.4.tgz",
-      "integrity": "sha512-kieGi1Isb/ddnn9E/AJVFCUgSZIqDv6HtFg7r5WWI0s6zf+nfCOtpes0oX8TdHO6mE/dL39pJG52aHNe8MwkJg==",
-      "requires": {
-        "@ant-design/colors": "^5.0.0",
-        "@ant-design/icons": "^4.3.0",
-        "@ant-design/react-slick": "~0.27.0",
-        "@babel/runtime": "^7.11.2",
-        "array-tree-filter": "^2.1.0",
-        "classnames": "^2.2.6",
-        "copy-to-clipboard": "^3.2.0",
-        "lodash": "^4.17.20",
-        "moment": "^2.25.3",
-        "omit.js": "^2.0.2",
-        "rc-cascader": "~1.4.0",
-        "rc-checkbox": "~2.3.0",
-        "rc-collapse": "~3.1.0",
-        "rc-dialog": "~8.4.0",
-        "rc-drawer": "~4.1.0",
-        "rc-dropdown": "~3.2.0",
-        "rc-field-form": "~1.17.0",
-        "rc-image": "~4.2.0",
-        "rc-input-number": "~6.1.0",
-        "rc-mentions": "~1.5.0",
-        "rc-menu": "~8.10.0",
-        "rc-motion": "^2.4.0",
-        "rc-notification": "~4.5.2",
-        "rc-pagination": "~3.1.2",
-        "rc-picker": "~2.4.1",
-        "rc-progress": "~3.1.0",
-        "rc-rate": "~2.9.0",
-        "rc-resize-observer": "^0.2.3",
-        "rc-select": "~11.5.3",
-        "rc-slider": "~9.6.1",
-        "rc-steps": "~4.1.0",
-        "rc-switch": "~3.2.0",
-        "rc-table": "~7.11.0",
-        "rc-tabs": "~11.7.0",
-        "rc-textarea": "~0.3.0",
-        "rc-tooltip": "~5.0.0",
-        "rc-tree": "~4.0.0",
-        "rc-tree-select": "~4.2.0",
-        "rc-upload": "~3.3.1",
-        "rc-util": "^5.1.0",
-        "scroll-into-view-if-needed": "^2.2.25",
-        "warning": "^4.0.3"
-      },
-      "dependencies": {
-        "@ant-design/colors": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-5.0.1.tgz",
-          "integrity": "sha512-x1TUaRILaqy3zgFNo+kIqOa3eTYPt81H1/3E4dCjDP4Qvk/xaPEizLDFdRUcIx0cWwyu2LklwfyLHWpbYK8v6A==",
-          "requires": {
-            "@ctrl/tinycolor": "^3.3.1"
-          }
-        },
-        "@ant-design/icons": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-4.3.0.tgz",
-          "integrity": "sha512-UoIbw4oz/L/msbkgqs2nls2KP7XNKScOxVR54wRrWwnXOzJaGNwwSdYjHQz+5ETf8C53YPpzMOnRX99LFCdeIQ==",
-          "requires": {
-            "@ant-design/colors": "^5.0.0",
-            "@ant-design/icons-svg": "^4.0.0",
-            "@babel/runtime": "^7.11.2",
-            "classnames": "^2.2.6",
-            "insert-css": "^2.0.0",
-            "rc-util": "^5.0.1"
-          }
-        },
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        },
-        "warning": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
-          "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
-          "requires": {
-            "loose-envify": "^1.0.0"
-          }
-        }
-      }
-    },
-    "anymatch": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
-      "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
-      "dev": true,
-      "requires": {
-        "micromatch": "^3.1.4",
-        "normalize-path": "^2.1.1"
-      }
-    },
-    "aphrodite": {
-      "version": "1.2.5",
-      "resolved": "https://registry.npmjs.org/aphrodite/-/aphrodite-1.2.5.tgz",
-      "integrity": "sha1-g1jDbIC7A67puXFlqqcBhiJbSYM=",
-      "requires": {
-        "asap": "^2.0.3",
-        "inline-style-prefixer": "^3.0.1",
-        "string-hash": "^1.1.3"
-      }
-    },
-    "app-root-dir": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz",
-      "integrity": "sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=",
-      "dev": true
-    },
-    "aproba": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
-      "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
-      "dev": true
-    },
-    "are-we-there-yet": {
-      "version": "1.1.5",
-      "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz",
-      "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==",
-      "dev": true,
-      "requires": {
-        "delegates": "^1.0.0",
-        "readable-stream": "^2.0.6"
-      }
-    },
-    "argparse": {
-      "version": "1.0.10",
-      "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
-      "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
-      "dev": true,
-      "requires": {
-        "sprintf-js": "~1.0.2"
-      }
-    },
-    "aria-query": {
-      "version": "4.2.2",
-      "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz",
-      "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.10.2",
-        "@babel/runtime-corejs3": "^7.10.2"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.11.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz",
-          "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@babel/runtime-corejs3": {
-          "version": "7.11.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.11.2.tgz",
-          "integrity": "sha512-qh5IR+8VgFz83VBa6OkaET6uN/mJOhHONuy3m1sgF0CV6mXdPSEBdA7e1eUbVvyNtANjMbg22JUv71BaDXLY6A==",
-          "dev": true,
-          "requires": {
-            "core-js-pure": "^3.0.0",
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "arr-diff": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
-      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
-      "dev": true
-    },
-    "arr-flatten": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
-      "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
-      "dev": true
-    },
-    "arr-union": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
-      "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
-      "dev": true
-    },
-    "array-equal": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
-      "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
-      "dev": true
-    },
-    "array-filter": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz",
-      "integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=",
-      "dev": true
-    },
-    "array-find": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/array-find/-/array-find-1.0.0.tgz",
-      "integrity": "sha1-bI4obRHtdoMn+OYuzuhzU8o+eLg=",
-      "dev": true
-    },
-    "array-flatten": {
-      "version": "2.1.2",
-      "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
-      "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="
-    },
-    "array-includes": {
-      "version": "3.0.3",
-      "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz",
-      "integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.2",
-        "es-abstract": "^1.7.0"
-      }
-    },
-    "array-move": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/array-move/-/array-move-2.2.1.tgz",
-      "integrity": "sha512-qQpEHBnVT6HAFgEVUwRdHVd8TYJThrZIT5wSXpEUTPwBaYhPLclw12mEpyUvRWVdl1VwPOqnIy6LqTFN3cSeUQ=="
-    },
-    "array-tree-filter": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/array-tree-filter/-/array-tree-filter-2.1.0.tgz",
-      "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw=="
-    },
-    "array-union": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
-      "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
-      "dev": true,
-      "requires": {
-        "array-uniq": "^1.0.1"
-      }
-    },
-    "array-uniq": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
-      "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
-      "dev": true
-    },
-    "array-unique": {
-      "version": "0.3.2",
-      "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
-      "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
-      "dev": true
-    },
-    "array.prototype.find": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.0.tgz",
-      "integrity": "sha512-Wn41+K1yuO5p7wRZDl7890c3xvv5UBrfVXTVIe28rSQb6LS0fZMDrQB6PAcxQFRFy6vJTLDc3A2+3CjQdzVKRg==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.13.0"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.13.0",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz",
-          "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.0",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "is-callable": "^1.1.4",
-            "is-regex": "^1.0.4",
-            "object-keys": "^1.0.12"
-          }
-        }
-      }
-    },
-    "array.prototype.flat": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.1.tgz",
-      "integrity": "sha512-rVqIs330nLJvfC7JqYvEWwqVr5QjYF1ib02i3YJtR/fICO6527Tjpc/e4Mvmxh3GIePPreRXMdaGyC99YphWEw==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.2",
-        "es-abstract": "^1.10.0",
-        "function-bind": "^1.1.1"
-      }
-    },
-    "array.prototype.flatmap": {
-      "version": "1.2.3",
-      "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz",
-      "integrity": "sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.0-next.1",
-        "function-bind": "^1.1.1"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "array.prototype.map": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/array.prototype.map/-/array.prototype.map-1.0.2.tgz",
-      "integrity": "sha512-Az3OYxgsa1g7xDYp86l0nnN4bcmuEITGe1rbdEBVkrqkzMgDcbdQ2R7r41pNzti+4NMces3H8gMmuioZUilLgw==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.0-next.1",
-        "es-array-method-boxes-properly": "^1.0.0",
-        "is-string": "^1.0.4"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "arrify": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
-      "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
-      "dev": true
-    },
-    "asap": {
-      "version": "2.0.6",
-      "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
-      "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
-    },
-    "asn1": {
-      "version": "0.2.4",
-      "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
-      "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
-      "dev": true,
-      "requires": {
-        "safer-buffer": "~2.1.0"
-      }
-    },
-    "asn1.js": {
-      "version": "4.10.1",
-      "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz",
-      "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==",
-      "dev": true,
-      "requires": {
-        "bn.js": "^4.0.0",
-        "inherits": "^2.0.1",
-        "minimalistic-assert": "^1.0.0"
-      }
-    },
-    "assert": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz",
-      "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=",
-      "dev": true,
-      "requires": {
-        "util": "0.10.3"
-      },
-      "dependencies": {
-        "inherits": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
-          "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
-          "dev": true
-        },
-        "util": {
-          "version": "0.10.3",
-          "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
-          "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
-          "dev": true,
-          "requires": {
-            "inherits": "2.0.1"
-          }
-        }
-      }
-    },
-    "assert-plus": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
-      "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
-      "dev": true
-    },
-    "assign-symbols": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
-      "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
-      "dev": true
-    },
-    "ast-types": {
-      "version": "0.14.2",
-      "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz",
-      "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==",
-      "dev": true,
-      "requires": {
-        "tslib": "^2.0.1"
-      },
-      "dependencies": {
-        "tslib": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
-          "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==",
-          "dev": true
-        }
-      }
-    },
-    "ast-types-flow": {
-      "version": "0.0.7",
-      "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
-      "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=",
-      "dev": true
-    },
-    "astral-regex": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
-      "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
-      "dev": true
-    },
-    "async": {
-      "version": "2.4.0",
-      "resolved": "https://registry.npmjs.org/async/-/async-2.4.0.tgz",
-      "integrity": "sha1-SZAgDxjqW4N8LMT4wDGmmFw4VhE=",
-      "dev": true,
-      "requires": {
-        "lodash": "^4.14.0"
-      }
-    },
-    "async-each": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
-      "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=",
-      "dev": true
-    },
-    "async-limiter": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz",
-      "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==",
-      "dev": true
-    },
-    "async-validator": {
-      "version": "3.5.1",
-      "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-3.5.1.tgz",
-      "integrity": "sha512-DDmKA7sdSAJtTVeNZHrnr2yojfFaoeW8MfQN8CeuXg8DDQHTqKk9Fdv38dSvnesHoO8MUwMI2HphOeSyIF+wmQ=="
-    },
-    "asynckit": {
-      "version": "0.4.0",
-      "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
-      "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
-      "dev": true
-    },
-    "at-least-node": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
-      "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
-      "dev": true
-    },
-    "atob": {
-      "version": "2.1.2",
-      "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
-      "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
-      "dev": true
-    },
-    "autoprefixer": {
-      "version": "9.8.6",
-      "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz",
-      "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==",
-      "dev": true,
-      "requires": {
-        "browserslist": "^4.12.0",
-        "caniuse-lite": "^1.0.30001109",
-        "colorette": "^1.2.1",
-        "normalize-range": "^0.1.2",
-        "num2fraction": "^1.2.2",
-        "postcss": "^7.0.32",
-        "postcss-value-parser": "^4.1.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "browserslist": {
-          "version": "4.14.0",
-          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz",
-          "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==",
-          "dev": true,
-          "requires": {
-            "caniuse-lite": "^1.0.30001111",
-            "electron-to-chromium": "^1.3.523",
-            "escalade": "^3.0.2",
-            "node-releases": "^1.1.60"
-          }
-        },
-        "caniuse-lite": {
-          "version": "1.0.30001116",
-          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001116.tgz",
-          "integrity": "sha512-f2lcYnmAI5Mst9+g0nkMIznFGsArRmZ0qU+dnq8l91hymdc2J3SFbiPhOJEeDqC1vtE8nc1qNQyklzB8veJefQ==",
-          "dev": true
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "electron-to-chromium": {
-          "version": "1.3.539",
-          "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.539.tgz",
-          "integrity": "sha512-rM0LWDIstdqfaRUADZetNrL6+zd/0NBmavbMEhBXgc2u/CC1d1GaDyN5hho29fFvBiOVFwrSWZkzmNcZnCEDog==",
-          "dev": true
-        },
-        "node-releases": {
-          "version": "1.1.60",
-          "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz",
-          "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==",
-          "dev": true
-        },
-        "postcss": {
-          "version": "7.0.32",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz",
-          "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "postcss-value-parser": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
-          "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "aws-sign2": {
-      "version": "0.7.0",
-      "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
-      "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
-      "dev": true
-    },
-    "aws4": {
-      "version": "1.8.0",
-      "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz",
-      "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==",
-      "dev": true
-    },
-    "axe-core": {
-      "version": "4.1.1",
-      "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.1.1.tgz",
-      "integrity": "sha512-5Kgy8Cz6LPC9DJcNb3yjAXTu3XihQgEdnIg50c//zOC/MyLP0Clg+Y8Sh9ZjjnvBrDZU4DgXS9C3T9r4/scGZQ==",
-      "dev": true
-    },
-    "axobject-query": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz",
-      "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==",
-      "dev": true
-    },
-    "babel-code-frame": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
-      "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
-      "dev": true,
-      "requires": {
-        "chalk": "^1.1.3",
-        "esutils": "^2.0.2",
-        "js-tokens": "^3.0.2"
-      },
-      "dependencies": {
-        "js-tokens": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
-          "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=",
-          "dev": true
-        }
-      }
-    },
-    "babel-eslint": {
-      "version": "10.1.0",
-      "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz",
-      "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==",
-      "dev": true,
-      "requires": {
-        "@babel/code-frame": "^7.0.0",
-        "@babel/parser": "^7.7.0",
-        "@babel/traverse": "^7.7.0",
-        "@babel/types": "^7.7.0",
-        "eslint-visitor-keys": "^1.0.0",
-        "resolve": "^1.12.0"
-      },
-      "dependencies": {
-        "@babel/types": {
-          "version": "7.8.7",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.7.tgz",
-          "integrity": "sha512-k2TreEHxFA4CjGkL+GYjRyx35W0Mr7DP5+9q6WMkyKXB+904bYmG40syjMFV0oLlhhFCwWl0vA0DyzTDkwAiJw==",
-          "dev": true,
-          "requires": {
-            "esutils": "^2.0.2",
-            "lodash": "^4.17.13",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "resolve": {
-          "version": "1.15.1",
-          "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz",
-          "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==",
-          "dev": true,
-          "requires": {
-            "path-parse": "^1.0.6"
-          }
-        }
-      }
-    },
-    "babel-helper-evaluate-path": {
-      "version": "0.5.0",
-      "resolved": "https://registry.npmjs.org/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.5.0.tgz",
-      "integrity": "sha512-mUh0UhS607bGh5wUMAQfOpt2JX2ThXMtppHRdRU1kL7ZLRWIXxoV2UIV1r2cAeeNeU1M5SB5/RSUgUxrK8yOkA==",
-      "dev": true
-    },
-    "babel-helper-flip-expressions": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.3.tgz",
-      "integrity": "sha1-NpZzahKKwYvCUlS19AoizrPB0/0=",
-      "dev": true
-    },
-    "babel-helper-is-nodes-equiv": {
-      "version": "0.0.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz",
-      "integrity": "sha1-NOmzALFHnd2Y7HfqC76TQt/jloQ=",
-      "dev": true
-    },
-    "babel-helper-is-void-0": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.3.tgz",
-      "integrity": "sha1-fZwBtFYee5Xb2g9u7kj1tg5nMT4=",
-      "dev": true
-    },
-    "babel-helper-mark-eval-scopes": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.3.tgz",
-      "integrity": "sha1-0kSjvvmESHJgP/tG4izorN9VFWI=",
-      "dev": true
-    },
-    "babel-helper-remove-or-void": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.3.tgz",
-      "integrity": "sha1-pPA7QAd6D/6I5F0HAQ3uJB/1rmA=",
-      "dev": true
-    },
-    "babel-helper-to-multiple-sequence-expressions": {
-      "version": "0.5.0",
-      "resolved": "https://registry.npmjs.org/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz",
-      "integrity": "sha512-m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA==",
-      "dev": true
-    },
-    "babel-jest": {
-      "version": "26.6.3",
-      "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz",
-      "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==",
-      "dev": true,
-      "requires": {
-        "@jest/transform": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/babel__core": "^7.1.7",
-        "babel-plugin-istanbul": "^6.0.0",
-        "babel-preset-jest": "^26.6.2",
-        "chalk": "^4.0.0",
-        "graceful-fs": "^4.2.4",
-        "slash": "^3.0.0"
-      },
-      "dependencies": {
-        "@jest/transform": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
-          "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
-          "dev": true,
-          "requires": {
-            "@babel/core": "^7.1.0",
-            "@jest/types": "^26.6.2",
-            "babel-plugin-istanbul": "^6.0.0",
-            "chalk": "^4.0.0",
-            "convert-source-map": "^1.4.0",
-            "fast-json-stable-stringify": "^2.0.0",
-            "graceful-fs": "^4.2.4",
-            "jest-haste-map": "^26.6.2",
-            "jest-regex-util": "^26.0.0",
-            "jest-util": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "pirates": "^4.0.1",
-            "slash": "^3.0.0",
-            "source-map": "^0.6.1",
-            "write-file-atomic": "^3.0.0"
-          }
-        },
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.12",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.12.tgz",
-          "integrity": "sha512-f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-haste-map": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
-          "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/graceful-fs": "^4.1.2",
-            "@types/node": "*",
-            "anymatch": "^3.0.3",
-            "fb-watchman": "^2.0.0",
-            "fsevents": "^2.1.2",
-            "graceful-fs": "^4.2.4",
-            "jest-regex-util": "^26.0.0",
-            "jest-serializer": "^26.6.2",
-            "jest-util": "^26.6.2",
-            "jest-worker": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "sane": "^4.0.3",
-            "walker": "^1.0.7"
-          }
-        },
-        "jest-serializer": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
-          "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "graceful-fs": "^4.2.4"
-          }
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "babel-loader": {
-      "version": "8.2.2",
-      "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz",
-      "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==",
-      "dev": true,
-      "requires": {
-        "find-cache-dir": "^3.3.1",
-        "loader-utils": "^1.4.0",
-        "make-dir": "^3.1.0",
-        "schema-utils": "^2.6.5"
-      },
-      "dependencies": {
-        "@types/json-schema": {
-          "version": "7.0.6",
-          "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz",
-          "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==",
-          "dev": true
-        },
-        "ajv": {
-          "version": "6.12.6",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
-          "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ajv-keywords": {
-          "version": "3.5.2",
-          "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-          "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-          "dev": true
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "find-cache-dir": {
-          "version": "3.3.1",
-          "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
-          "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==",
-          "dev": true,
-          "requires": {
-            "commondir": "^1.0.1",
-            "make-dir": "^3.0.2",
-            "pkg-dir": "^4.1.0"
-          }
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "json5": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-          "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.0"
-          }
-        },
-        "loader-utils": {
-          "version": "1.4.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
-          "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^1.0.1"
-          }
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "make-dir": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
-          "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
-          "dev": true,
-          "requires": {
-            "semver": "^6.0.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "pkg-dir": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
-          "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
-          "dev": true,
-          "requires": {
-            "find-up": "^4.0.0"
-          }
-        },
-        "schema-utils": {
-          "version": "2.7.1",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
-          "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
-          "dev": true,
-          "requires": {
-            "@types/json-schema": "^7.0.5",
-            "ajv": "^6.12.4",
-            "ajv-keywords": "^3.5.2"
-          }
-        },
-        "semver": {
-          "version": "6.3.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-          "dev": true
-        }
-      }
-    },
-    "babel-plugin-add-react-displayname": {
-      "version": "0.0.5",
-      "resolved": "https://registry.npmjs.org/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz",
-      "integrity": "sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=",
-      "dev": true
-    },
-    "babel-plugin-apply-mdx-type-prop": {
-      "version": "1.6.19",
-      "resolved": "https://registry.npmjs.org/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.19.tgz",
-      "integrity": "sha512-zAuL11EaBbeNpfTqsa9xP7mkvX3V4LaEV6M9UUaI4zQtTqN5JwvDyhNsALQs5Ud7WFQSXtoqU74saTgE+rgZOw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "7.10.4",
-        "@mdx-js/util": "1.6.19"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "babel-plugin-dynamic-import-node": {
-      "version": "2.3.3",
-      "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
-      "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
-      "dev": true,
-      "requires": {
-        "object.assign": "^4.1.0"
-      }
-    },
-    "babel-plugin-emotion": {
-      "version": "10.0.33",
-      "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz",
-      "integrity": "sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-module-imports": "^7.0.0",
-        "@emotion/hash": "0.8.0",
-        "@emotion/memoize": "0.7.4",
-        "@emotion/serialize": "^0.11.16",
-        "babel-plugin-macros": "^2.0.0",
-        "babel-plugin-syntax-jsx": "^6.18.0",
-        "convert-source-map": "^1.5.0",
-        "escape-string-regexp": "^1.0.5",
-        "find-root": "^1.1.0",
-        "source-map": "^0.5.7"
-      }
-    },
-    "babel-plugin-extract-import-names": {
-      "version": "1.6.19",
-      "resolved": "https://registry.npmjs.org/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.19.tgz",
-      "integrity": "sha512-5kbSEhQdg1ybR9OnxybbyR1PXw51z6T6ZCtX3vYSU6t1pC/+eBlSzWXyU2guStbwQgJyxS+mHWSNnL7PUdzAlw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "7.10.4"
-      },
-      "dependencies": {
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        }
-      }
-    },
-    "babel-plugin-istanbul": {
-      "version": "6.0.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz",
-      "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.0.0",
-        "@istanbuljs/load-nyc-config": "^1.0.0",
-        "@istanbuljs/schema": "^0.1.2",
-        "istanbul-lib-instrument": "^4.0.0",
-        "test-exclude": "^6.0.0"
-      }
-    },
-    "babel-plugin-jest-hoist": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz",
-      "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==",
-      "dev": true,
-      "requires": {
-        "@babel/template": "^7.3.3",
-        "@babel/types": "^7.3.3",
-        "@types/babel__core": "^7.0.0",
-        "@types/babel__traverse": "^7.0.6"
-      },
-      "dependencies": {
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.12.12",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
-          "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.12.11",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        }
-      }
-    },
-    "babel-plugin-jsx-remove-data-test-id": {
-      "version": "2.1.3",
-      "resolved": "https://registry.npmjs.org/babel-plugin-jsx-remove-data-test-id/-/babel-plugin-jsx-remove-data-test-id-2.1.3.tgz",
-      "integrity": "sha512-FTpcmzr3avLVStllCT4BceTTZNEb+1mJVtLpsicvXDqjojEkyrga1GGOxWj768Ra3tev6KWgNOhZ/Lrucb+MuQ==",
-      "dev": true
-    },
-    "babel-plugin-lodash": {
-      "version": "3.3.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz",
-      "integrity": "sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==",
-      "requires": {
-        "@babel/helper-module-imports": "^7.0.0-beta.49",
-        "@babel/types": "^7.0.0-beta.49",
-        "glob": "^7.1.1",
-        "lodash": "^4.17.10",
-        "require-package-name": "^2.0.1"
-      }
-    },
-    "babel-plugin-macros": {
-      "version": "2.8.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz",
-      "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==",
-      "requires": {
-        "@babel/runtime": "^7.7.2",
-        "cosmiconfig": "^6.0.0",
-        "resolve": "^1.12.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.9.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.2.tgz",
-          "integrity": "sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "cosmiconfig": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
-          "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
-          "requires": {
-            "@types/parse-json": "^4.0.0",
-            "import-fresh": "^3.1.0",
-            "parse-json": "^5.0.0",
-            "path-type": "^4.0.0",
-            "yaml": "^1.7.2"
-          }
-        },
-        "import-fresh": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz",
-          "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==",
-          "requires": {
-            "parent-module": "^1.0.0",
-            "resolve-from": "^4.0.0"
-          }
-        },
-        "parse-json": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz",
-          "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==",
-          "requires": {
-            "@babel/code-frame": "^7.0.0",
-            "error-ex": "^1.3.1",
-            "json-parse-better-errors": "^1.0.1",
-            "lines-and-columns": "^1.1.6"
-          }
-        },
-        "path-type": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
-          "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
-        },
-        "resolve": {
-          "version": "1.15.1",
-          "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz",
-          "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==",
-          "requires": {
-            "path-parse": "^1.0.6"
-          }
-        }
-      }
-    },
-    "babel-plugin-minify-builtins": {
-      "version": "0.5.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.5.0.tgz",
-      "integrity": "sha512-wpqbN7Ov5hsNwGdzuzvFcjgRlzbIeVv1gMIlICbPj0xkexnfoIDe7q+AZHMkQmAE/F9R5jkrB6TLfTegImlXag==",
-      "dev": true
-    },
-    "babel-plugin-minify-constant-folding": {
-      "version": "0.5.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.5.0.tgz",
-      "integrity": "sha512-Vj97CTn/lE9hR1D+jKUeHfNy+m1baNiJ1wJvoGyOBUx7F7kJqDZxr9nCHjO/Ad+irbR3HzR6jABpSSA29QsrXQ==",
-      "dev": true,
-      "requires": {
-        "babel-helper-evaluate-path": "^0.5.0"
-      }
-    },
-    "babel-plugin-minify-dead-code-elimination": {
-      "version": "0.5.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.5.1.tgz",
-      "integrity": "sha512-x8OJOZIrRmQBcSqxBcLbMIK8uPmTvNWPXH2bh5MDCW1latEqYiRMuUkPImKcfpo59pTUB2FT7HfcgtG8ZlR5Qg==",
-      "dev": true,
-      "requires": {
-        "babel-helper-evaluate-path": "^0.5.0",
-        "babel-helper-mark-eval-scopes": "^0.4.3",
-        "babel-helper-remove-or-void": "^0.4.3",
-        "lodash": "^4.17.11"
-      }
-    },
-    "babel-plugin-minify-flip-comparisons": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.3.tgz",
-      "integrity": "sha1-AMqHDLjxO0XAOLPB68DyJyk8llo=",
-      "dev": true,
-      "requires": {
-        "babel-helper-is-void-0": "^0.4.3"
-      }
-    },
-    "babel-plugin-minify-guarded-expressions": {
-      "version": "0.4.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.4.tgz",
-      "integrity": "sha512-RMv0tM72YuPPfLT9QLr3ix9nwUIq+sHT6z8Iu3sLbqldzC1Dls8DPCywzUIzkTx9Zh1hWX4q/m9BPoPed9GOfA==",
-      "dev": true,
-      "requires": {
-        "babel-helper-evaluate-path": "^0.5.0",
-        "babel-helper-flip-expressions": "^0.4.3"
-      }
-    },
-    "babel-plugin-minify-infinity": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.3.tgz",
-      "integrity": "sha1-37h2obCKBldjhO8/kuZTumB7Oco=",
-      "dev": true
-    },
-    "babel-plugin-minify-mangle-names": {
-      "version": "0.5.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.5.0.tgz",
-      "integrity": "sha512-3jdNv6hCAw6fsX1p2wBGPfWuK69sfOjfd3zjUXkbq8McbohWy23tpXfy5RnToYWggvqzuMOwlId1PhyHOfgnGw==",
-      "dev": true,
-      "requires": {
-        "babel-helper-mark-eval-scopes": "^0.4.3"
-      }
-    },
-    "babel-plugin-minify-numeric-literals": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.3.tgz",
-      "integrity": "sha1-jk/VYcefeAEob/YOjF/Z3u6TwLw=",
-      "dev": true
-    },
-    "babel-plugin-minify-replace": {
-      "version": "0.5.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.5.0.tgz",
-      "integrity": "sha512-aXZiaqWDNUbyNNNpWs/8NyST+oU7QTpK7J9zFEFSA0eOmtUNMU3fczlTTTlnCxHmq/jYNFEmkkSG3DDBtW3Y4Q==",
-      "dev": true
-    },
-    "babel-plugin-minify-simplify": {
-      "version": "0.5.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.5.1.tgz",
-      "integrity": "sha512-OSYDSnoCxP2cYDMk9gxNAed6uJDiDz65zgL6h8d3tm8qXIagWGMLWhqysT6DY3Vs7Fgq7YUDcjOomhVUb+xX6A==",
-      "dev": true,
-      "requires": {
-        "babel-helper-evaluate-path": "^0.5.0",
-        "babel-helper-flip-expressions": "^0.4.3",
-        "babel-helper-is-nodes-equiv": "^0.0.1",
-        "babel-helper-to-multiple-sequence-expressions": "^0.5.0"
-      }
-    },
-    "babel-plugin-minify-type-constructors": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.3.tgz",
-      "integrity": "sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA=",
-      "dev": true,
-      "requires": {
-        "babel-helper-is-void-0": "^0.4.3"
-      }
-    },
-    "babel-plugin-named-asset-import": {
-      "version": "0.3.7",
-      "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz",
-      "integrity": "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==",
-      "dev": true
-    },
-    "babel-plugin-react-docgen": {
-      "version": "4.2.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz",
-      "integrity": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==",
-      "dev": true,
-      "requires": {
-        "ast-types": "^0.14.2",
-        "lodash": "^4.17.15",
-        "react-docgen": "^5.0.0"
-      }
-    },
-    "babel-plugin-syntax-jsx": {
-      "version": "6.18.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
-      "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY="
-    },
-    "babel-plugin-transform-inline-consecutive-adds": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.3.tgz",
-      "integrity": "sha1-Mj1Ho+pjqDp6w8gRro5pQfrysNE=",
-      "dev": true
-    },
-    "babel-plugin-transform-member-expression-literals": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.4.tgz",
-      "integrity": "sha1-NwOcmgwzE6OUlfqsL/OmtbnQOL8=",
-      "dev": true
-    },
-    "babel-plugin-transform-merge-sibling-variables": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.4.tgz",
-      "integrity": "sha1-hbQi/DN3tEnJ0c3kQIcgNTJAHa4=",
-      "dev": true
-    },
-    "babel-plugin-transform-minify-booleans": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.4.tgz",
-      "integrity": "sha1-rLs+VqNVXdI5KOS1gtKFFi3SsZg=",
-      "dev": true
-    },
-    "babel-plugin-transform-property-literals": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.4.tgz",
-      "integrity": "sha1-mMHSHiVXNlc/k+zlRFn2ziSYXTk=",
-      "dev": true,
-      "requires": {
-        "esutils": "^2.0.2"
-      }
-    },
-    "babel-plugin-transform-regexp-constructors": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.3.tgz",
-      "integrity": "sha1-WLd3W2OvzzMyj66aX4j71PsLSWU=",
-      "dev": true
-    },
-    "babel-plugin-transform-remove-console": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.4.tgz",
-      "integrity": "sha1-uYA2DAZzhOJLNXpYjYB9PINSd4A=",
-      "dev": true
-    },
-    "babel-plugin-transform-remove-debugger": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.4.tgz",
-      "integrity": "sha1-QrcnYxyXl44estGZp67IShgznvI=",
-      "dev": true
-    },
-    "babel-plugin-transform-remove-undefined": {
-      "version": "0.5.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.5.0.tgz",
-      "integrity": "sha512-+M7fJYFaEE/M9CXa0/IRkDbiV3wRELzA1kKQFCJ4ifhrzLKn/9VCCgj9OFmYWwBd8IB48YdgPkHYtbYq+4vtHQ==",
-      "dev": true,
-      "requires": {
-        "babel-helper-evaluate-path": "^0.5.0"
-      }
-    },
-    "babel-plugin-transform-simplify-comparison-operators": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.4.tgz",
-      "integrity": "sha1-9ir+CWyrDh9ootdT/fKDiIRxzrk=",
-      "dev": true
-    },
-    "babel-plugin-transform-undefined-to-void": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz",
-      "integrity": "sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA=",
-      "dev": true
-    },
-    "babel-polyfill": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz",
-      "integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "^6.26.0",
-        "core-js": "^2.5.0",
-        "regenerator-runtime": "^0.10.5"
-      },
-      "dependencies": {
-        "core-js": {
-          "version": "2.6.11",
-          "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
-          "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==",
-          "dev": true
-        },
-        "regenerator-runtime": {
-          "version": "0.10.5",
-          "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz",
-          "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=",
-          "dev": true
-        }
-      }
-    },
-    "babel-preset-current-node-syntax": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
-      "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
-      "dev": true,
-      "requires": {
-        "@babel/plugin-syntax-async-generators": "^7.8.4",
-        "@babel/plugin-syntax-bigint": "^7.8.3",
-        "@babel/plugin-syntax-class-properties": "^7.8.3",
-        "@babel/plugin-syntax-import-meta": "^7.8.3",
-        "@babel/plugin-syntax-json-strings": "^7.8.3",
-        "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
-        "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
-        "@babel/plugin-syntax-numeric-separator": "^7.8.3",
-        "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
-        "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
-        "@babel/plugin-syntax-optional-chaining": "^7.8.3",
-        "@babel/plugin-syntax-top-level-await": "^7.8.3"
-      }
-    },
-    "babel-preset-jest": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz",
-      "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==",
-      "dev": true,
-      "requires": {
-        "babel-plugin-jest-hoist": "^26.6.2",
-        "babel-preset-current-node-syntax": "^1.0.0"
-      }
-    },
-    "babel-preset-minify": {
-      "version": "0.5.1",
-      "resolved": "https://registry.npmjs.org/babel-preset-minify/-/babel-preset-minify-0.5.1.tgz",
-      "integrity": "sha512-1IajDumYOAPYImkHbrKeiN5AKKP9iOmRoO2IPbIuVp0j2iuCcj0n7P260z38siKMZZ+85d3mJZdtW8IgOv+Tzg==",
-      "dev": true,
-      "requires": {
-        "babel-plugin-minify-builtins": "^0.5.0",
-        "babel-plugin-minify-constant-folding": "^0.5.0",
-        "babel-plugin-minify-dead-code-elimination": "^0.5.1",
-        "babel-plugin-minify-flip-comparisons": "^0.4.3",
-        "babel-plugin-minify-guarded-expressions": "^0.4.4",
-        "babel-plugin-minify-infinity": "^0.4.3",
-        "babel-plugin-minify-mangle-names": "^0.5.0",
-        "babel-plugin-minify-numeric-literals": "^0.4.3",
-        "babel-plugin-minify-replace": "^0.5.0",
-        "babel-plugin-minify-simplify": "^0.5.1",
-        "babel-plugin-minify-type-constructors": "^0.4.3",
-        "babel-plugin-transform-inline-consecutive-adds": "^0.4.3",
-        "babel-plugin-transform-member-expression-literals": "^6.9.4",
-        "babel-plugin-transform-merge-sibling-variables": "^6.9.4",
-        "babel-plugin-transform-minify-booleans": "^6.9.4",
-        "babel-plugin-transform-property-literals": "^6.9.4",
-        "babel-plugin-transform-regexp-constructors": "^0.4.3",
-        "babel-plugin-transform-remove-console": "^6.9.4",
-        "babel-plugin-transform-remove-debugger": "^6.9.4",
-        "babel-plugin-transform-remove-undefined": "^0.5.0",
-        "babel-plugin-transform-simplify-comparison-operators": "^6.9.4",
-        "babel-plugin-transform-undefined-to-void": "^6.9.4",
-        "lodash": "^4.17.11"
-      }
-    },
-    "babel-preset-typescript-vue": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/babel-preset-typescript-vue/-/babel-preset-typescript-vue-1.1.1.tgz",
-      "integrity": "sha512-wXeR7Y4xCsRUEdm4t4qlpv4wnxolS6jU0c7P2E6zJRWeG1sR0e6NL7DRN0tNuUwkUt0PU8bqVo4vzoA2VEuxnw==",
-      "dev": true,
-      "requires": {
-        "@babel/helper-plugin-utils": "^7.0.0",
-        "@babel/plugin-transform-typescript": "^7.3.2",
-        "@babel/preset-typescript": "^7.3.3",
-        "vue-template-compiler": "^2.6.11"
-      }
-    },
-    "babel-runtime": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
-      "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
-      "requires": {
-        "core-js": "^2.4.0",
-        "regenerator-runtime": "^0.11.0"
-      },
-      "dependencies": {
-        "core-js": {
-          "version": "2.6.0",
-          "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.0.tgz",
-          "integrity": "sha512-kLRC6ncVpuEW/1kwrOXYX6KQASCVtrh1gQr/UiaVgFlf9WE5Vp+lNe5+h3LuMr5PAucWnnEXwH0nQHRH/gpGtw=="
-        },
-        "regenerator-runtime": {
-          "version": "0.11.1",
-          "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
-          "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
-        }
-      }
-    },
-    "bail": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
-      "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ=="
-    },
-    "balanced-match": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
-      "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
-    },
-    "base": {
-      "version": "0.11.2",
-      "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
-      "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
-      "dev": true,
-      "requires": {
-        "cache-base": "^1.0.1",
-        "class-utils": "^0.3.5",
-        "component-emitter": "^1.2.1",
-        "define-property": "^1.0.0",
-        "isobject": "^3.0.1",
-        "mixin-deep": "^1.2.0",
-        "pascalcase": "^0.1.1"
-      },
-      "dependencies": {
-        "define-property": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
-          "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
-          "dev": true,
-          "requires": {
-            "is-descriptor": "^1.0.0"
-          }
-        },
-        "is-accessor-descriptor": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
-          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
-          "dev": true,
-          "requires": {
-            "kind-of": "^6.0.0"
-          }
-        },
-        "is-data-descriptor": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
-          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
-          "dev": true,
-          "requires": {
-            "kind-of": "^6.0.0"
-          }
-        },
-        "is-descriptor": {
-          "version": "1.0.2",
-          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
-          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
-          "dev": true,
-          "requires": {
-            "is-accessor-descriptor": "^1.0.0",
-            "is-data-descriptor": "^1.0.0",
-            "kind-of": "^6.0.2"
-          }
-        },
-        "kind-of": {
-          "version": "6.0.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
-          "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
-          "dev": true
-        }
-      }
-    },
-    "base16": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz",
-      "integrity": "sha1-4pf2DX7BAUp6lxo568ipjAtoHnA="
-    },
-    "base64-js": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz",
-      "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==",
-      "dev": true
-    },
-    "batch": {
-      "version": "0.6.1",
-      "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
-      "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=",
-      "dev": true
-    },
-    "batch-processor": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/batch-processor/-/batch-processor-1.0.0.tgz",
-      "integrity": "sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=",
-      "dev": true
-    },
-    "bcrypt-pbkdf": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
-      "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
-      "dev": true,
-      "requires": {
-        "tweetnacl": "^0.14.3"
-      }
-    },
-    "better-opn": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.0.0.tgz",
-      "integrity": "sha512-PPbGRgO/K0LowMHbH/JNvaV3qY3Vt+A2nH28fzJxy16h/DfR5OsVti6ldGl6S9SMsyUqT13sltikiAVtI6tKLA==",
-      "dev": true,
-      "requires": {
-        "open": "^7.0.3"
-      }
-    },
-    "bfj": {
-      "version": "6.1.2",
-      "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz",
-      "integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==",
-      "dev": true,
-      "requires": {
-        "bluebird": "^3.5.5",
-        "check-types": "^8.0.3",
-        "hoopy": "^0.1.4",
-        "tryer": "^1.0.1"
-      }
-    },
-    "big.js": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
-      "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q=="
-    },
-    "bignumber.js": {
-      "version": "9.0.0",
-      "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz",
-      "integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A=="
-    },
-    "binary-extensions": {
-      "version": "1.12.0",
-      "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz",
-      "integrity": "sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==",
-      "dev": true
-    },
-    "bindings": {
-      "version": "1.5.0",
-      "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
-      "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
-      "dev": true,
-      "optional": true,
-      "requires": {
-        "file-uri-to-path": "1.0.0"
-      }
-    },
-    "bluebird": {
-      "version": "3.5.5",
-      "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz",
-      "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==",
-      "dev": true
-    },
-    "bn.js": {
-      "version": "4.11.8",
-      "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
-      "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
-      "dev": true
-    },
-    "body-parser": {
-      "version": "1.18.3",
-      "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz",
-      "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=",
-      "dev": true,
-      "requires": {
-        "bytes": "3.0.0",
-        "content-type": "~1.0.4",
-        "debug": "2.6.9",
-        "depd": "~1.1.2",
-        "http-errors": "~1.6.3",
-        "iconv-lite": "0.4.23",
-        "on-finished": "~2.3.0",
-        "qs": "6.5.2",
-        "raw-body": "2.3.3",
-        "type-is": "~1.6.16"
-      },
-      "dependencies": {
-        "iconv-lite": {
-          "version": "0.4.23",
-          "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz",
-          "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==",
-          "dev": true,
-          "requires": {
-            "safer-buffer": ">= 2.1.2 < 3"
-          }
-        }
-      }
-    },
-    "bonjour": {
-      "version": "3.5.0",
-      "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz",
-      "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=",
-      "dev": true,
-      "requires": {
-        "array-flatten": "^2.1.0",
-        "deep-equal": "^1.0.1",
-        "dns-equal": "^1.0.0",
-        "dns-txt": "^2.0.2",
-        "multicast-dns": "^6.0.1",
-        "multicast-dns-service-types": "^1.1.0"
-      }
-    },
-    "boolbase": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
-      "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
-      "dev": true
-    },
-    "bootstrap": {
-      "version": "3.4.1",
-      "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.4.1.tgz",
-      "integrity": "sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA=="
-    },
-    "bootstrap-slider": {
-      "version": "10.4.0",
-      "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-10.4.0.tgz",
-      "integrity": "sha512-ONP9SGV17pr2l3RJHhoX+3qAUDF3ltByQD5rP7Dw2QytOYAL6JjRVOvyFKv/CR+Xq2T7hJtq3NZyDzfX9CZPFw=="
-    },
-    "bowser": {
-      "version": "1.9.4",
-      "resolved": "https://registry.npmjs.org/bowser/-/bowser-1.9.4.tgz",
-      "integrity": "sha512-9IdMmj2KjigRq6oWhmwv1W36pDuA4STQZ8q6YO9um+x07xgYNCD3Oou+WP/3L1HNz7iqythGet3/p4wvc8AAwQ=="
-    },
-    "boxen": {
-      "version": "4.2.0",
-      "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz",
-      "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==",
-      "dev": true,
-      "requires": {
-        "ansi-align": "^3.0.0",
-        "camelcase": "^5.3.1",
-        "chalk": "^3.0.0",
-        "cli-boxes": "^2.2.0",
-        "string-width": "^4.1.0",
-        "term-size": "^2.1.0",
-        "type-fest": "^0.8.1",
-        "widest-line": "^3.1.0"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
-          "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
-          "dev": true,
-          "requires": {
-            "@types/color-name": "^1.1.1",
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
-          "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "emoji-regex": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-          "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        },
-        "string-width": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
-          "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^8.0.0",
-            "is-fullwidth-code-point": "^3.0.0",
-            "strip-ansi": "^6.0.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        },
-        "supports-color": {
-          "version": "7.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
-          "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "brace": {
-      "version": "0.11.1",
-      "resolved": "https://registry.npmjs.org/brace/-/brace-0.11.1.tgz",
-      "integrity": "sha1-SJb8ydVE7vRfS7dmDbMg07N5/lg="
-    },
-    "brace-expansion": {
-      "version": "1.1.11",
-      "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
-      "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
-      "requires": {
-        "balanced-match": "^1.0.0",
-        "concat-map": "0.0.1"
-      }
-    },
-    "braces": {
-      "version": "2.3.2",
-      "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
-      "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
-      "dev": true,
-      "requires": {
-        "arr-flatten": "^1.1.0",
-        "array-unique": "^0.3.2",
-        "extend-shallow": "^2.0.1",
-        "fill-range": "^4.0.0",
-        "isobject": "^3.0.1",
-        "repeat-element": "^1.1.2",
-        "snapdragon": "^0.8.1",
-        "snapdragon-node": "^2.0.1",
-        "split-string": "^3.0.2",
-        "to-regex": "^3.0.1"
-      }
-    },
-    "brfs": {
-      "version": "1.6.1",
-      "resolved": "https://registry.npmjs.org/brfs/-/brfs-1.6.1.tgz",
-      "integrity": "sha512-OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ==",
-      "requires": {
-        "quote-stream": "^1.0.1",
-        "resolve": "^1.1.5",
-        "static-module": "^2.2.0",
-        "through2": "^2.0.0"
-      }
-    },
-    "brorand": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
-      "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
-      "dev": true
-    },
-    "browser-process-hrtime": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
-      "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
-      "dev": true
-    },
-    "browserify-aes": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
-      "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
-      "dev": true,
-      "requires": {
-        "buffer-xor": "^1.0.3",
-        "cipher-base": "^1.0.0",
-        "create-hash": "^1.1.0",
-        "evp_bytestokey": "^1.0.3",
-        "inherits": "^2.0.1",
-        "safe-buffer": "^5.0.1"
-      }
-    },
-    "browserify-cipher": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
-      "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
-      "dev": true,
-      "requires": {
-        "browserify-aes": "^1.0.4",
-        "browserify-des": "^1.0.0",
-        "evp_bytestokey": "^1.0.0"
-      }
-    },
-    "browserify-des": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
-      "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
-      "dev": true,
-      "requires": {
-        "cipher-base": "^1.0.1",
-        "des.js": "^1.0.0",
-        "inherits": "^2.0.1",
-        "safe-buffer": "^5.1.2"
-      }
-    },
-    "browserify-rsa": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
-      "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=",
-      "dev": true,
-      "requires": {
-        "bn.js": "^4.1.0",
-        "randombytes": "^2.0.1"
-      }
-    },
-    "browserify-sign": {
-      "version": "4.0.4",
-      "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz",
-      "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=",
-      "dev": true,
-      "requires": {
-        "bn.js": "^4.1.1",
-        "browserify-rsa": "^4.0.0",
-        "create-hash": "^1.1.0",
-        "create-hmac": "^1.1.2",
-        "elliptic": "^6.0.0",
-        "inherits": "^2.0.1",
-        "parse-asn1": "^5.0.0"
-      }
-    },
-    "browserify-zlib": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
-      "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
-      "dev": true,
-      "requires": {
-        "pako": "~1.0.5"
-      }
-    },
-    "browserslist": {
-      "version": "4.5.4",
-      "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.5.4.tgz",
-      "integrity": "sha512-rAjx494LMjqKnMPhFkuLmLp8JWEX0o8ADTGeAbOqaF+XCvYLreZrG5uVjnPBlAQ8REZK4pzXGvp0bWgrFtKaag==",
-      "dev": true,
-      "requires": {
-        "caniuse-lite": "^1.0.30000955",
-        "electron-to-chromium": "^1.3.122",
-        "node-releases": "^1.1.13"
-      },
-      "dependencies": {
-        "caniuse-lite": {
-          "version": "1.0.30000957",
-          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000957.tgz",
-          "integrity": "sha512-8wxNrjAzyiHcLXN/iunskqQnJquQQ6VX8JHfW5kLgAPRSiSuKZiNfmIkP5j7jgyXqAQBSoXyJxfnbCFS0ThSiQ==",
-          "dev": true
-        }
-      }
-    },
-    "bs-logger": {
-      "version": "0.2.6",
-      "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz",
-      "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
-      "dev": true,
-      "requires": {
-        "fast-json-stable-stringify": "2.x"
-      }
-    },
-    "bser": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
-      "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
-      "dev": true,
-      "requires": {
-        "node-int64": "^0.4.0"
-      }
-    },
-    "buffer": {
-      "version": "4.9.1",
-      "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz",
-      "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=",
-      "dev": true,
-      "requires": {
-        "base64-js": "^1.0.2",
-        "ieee754": "^1.1.4",
-        "isarray": "^1.0.0"
-      }
-    },
-    "buffer-equal": {
-      "version": "0.0.1",
-      "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz",
-      "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs="
-    },
-    "buffer-from": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
-      "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="
-    },
-    "buffer-indexof": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz",
-      "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==",
-      "dev": true
-    },
-    "buffer-xor": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
-      "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
-      "dev": true
-    },
-    "builtin-modules": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
-      "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
-      "dev": true
-    },
-    "builtin-status-codes": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
-      "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=",
-      "dev": true
-    },
-    "bytes": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
-      "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=",
-      "dev": true
-    },
-    "cacache": {
-      "version": "12.0.4",
-      "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz",
-      "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==",
-      "dev": true,
-      "requires": {
-        "bluebird": "^3.5.5",
-        "chownr": "^1.1.1",
-        "figgy-pudding": "^3.5.1",
-        "glob": "^7.1.4",
-        "graceful-fs": "^4.1.15",
-        "infer-owner": "^1.0.3",
-        "lru-cache": "^5.1.1",
-        "mississippi": "^3.0.0",
-        "mkdirp": "^0.5.1",
-        "move-concurrently": "^1.0.1",
-        "promise-inflight": "^1.0.1",
-        "rimraf": "^2.6.3",
-        "ssri": "^6.0.1",
-        "unique-filename": "^1.1.1",
-        "y18n": "^4.0.0"
-      },
-      "dependencies": {
-        "glob": {
-          "version": "7.1.6",
-          "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
-          "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
-          "dev": true,
-          "requires": {
-            "fs.realpath": "^1.0.0",
-            "inflight": "^1.0.4",
-            "inherits": "2",
-            "minimatch": "^3.0.4",
-            "once": "^1.3.0",
-            "path-is-absolute": "^1.0.0"
-          }
-        },
-        "rimraf": {
-          "version": "2.7.1",
-          "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
-          "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
-          "dev": true,
-          "requires": {
-            "glob": "^7.1.3"
-          }
-        },
-        "y18n": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
-          "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
-          "dev": true
-        }
-      }
-    },
-    "cache-base": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
-      "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
-      "dev": true,
-      "requires": {
-        "collection-visit": "^1.0.0",
-        "component-emitter": "^1.2.1",
-        "get-value": "^2.0.6",
-        "has-value": "^1.0.0",
-        "isobject": "^3.0.1",
-        "set-value": "^2.0.0",
-        "to-object-path": "^0.3.0",
-        "union-value": "^1.0.0",
-        "unset-value": "^1.0.0"
-      }
-    },
-    "cache-loader": {
-      "version": "1.2.5",
-      "resolved": "https://registry.npmjs.org/cache-loader/-/cache-loader-1.2.5.tgz",
-      "integrity": "sha512-enWKEQ4kO3YreDFd7AtVRjtJBmNiqh/X9hVDReu0C4qm8gsGmySkwuWtdc+N5O+vq5FzxL1mIZc30NyXCB7o/Q==",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^1.1.0",
-        "mkdirp": "^0.5.1",
-        "neo-async": "^2.5.0",
-        "schema-utils": "^0.4.2"
-      }
-    },
-    "call-bind": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.1.tgz",
-      "integrity": "sha512-tvAvUwNcRikl3RVF20X9lsYmmepsovzTWeJiXjO0PkJp15uy/6xKFZOQtuiSULwYW+6ToZBprphCgWXC2dSgcQ==",
-      "dev": true,
-      "requires": {
-        "function-bind": "^1.1.1",
-        "get-intrinsic": "^1.0.2"
-      }
-    },
-    "call-me-maybe": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz",
-      "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=",
-      "dev": true
-    },
-    "caller-callsite": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz",
-      "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=",
-      "dev": true,
-      "requires": {
-        "callsites": "^2.0.0"
-      },
-      "dependencies": {
-        "callsites": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
-          "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=",
-          "dev": true
-        }
-      }
-    },
-    "caller-path": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz",
-      "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=",
-      "dev": true,
-      "requires": {
-        "caller-callsite": "^2.0.0"
-      }
-    },
-    "callsites": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
-      "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
-    },
-    "camel-case": {
-      "version": "4.1.1",
-      "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.1.tgz",
-      "integrity": "sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q==",
-      "dev": true,
-      "requires": {
-        "pascal-case": "^3.1.1",
-        "tslib": "^1.10.0"
-      }
-    },
-    "camelcase": {
-      "version": "5.3.1",
-      "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
-      "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
-    },
-    "camelcase-css": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
-      "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
-      "dev": true
-    },
-    "caniuse-api": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
-      "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
-      "dev": true,
-      "requires": {
-        "browserslist": "^4.0.0",
-        "caniuse-lite": "^1.0.0",
-        "lodash.memoize": "^4.1.2",
-        "lodash.uniq": "^4.5.0"
-      }
-    },
-    "caniuse-lite": {
-      "version": "1.0.30000921",
-      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000921.tgz",
-      "integrity": "sha512-Bu09ciy0lMWLgpYC77I0YGuI8eFRBPPzaSOYJK1jTI64txCphYCqnWbxJYjHABYVt/TYX/p3jNjLBR87u1Bfpw==",
-      "dev": true
-    },
-    "capture-exit": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz",
-      "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==",
-      "dev": true,
-      "requires": {
-        "rsvp": "^4.8.4"
-      }
-    },
-    "cardinal": {
-      "version": "0.4.4",
-      "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-0.4.4.tgz",
-      "integrity": "sha1-ylu2iltRG5D+k7ms6km97lwyv+I=",
-      "requires": {
-        "ansicolors": "~0.2.1",
-        "redeyed": "~0.4.0"
-      }
-    },
-    "case-sensitive-paths-webpack-plugin": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz",
-      "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==",
-      "dev": true
-    },
-    "caseless": {
-      "version": "0.12.0",
-      "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
-      "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
-      "dev": true
-    },
-    "ccount": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz",
-      "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==",
-      "dev": true
-    },
-    "chalk": {
-      "version": "1.1.3",
-      "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
-      "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
-      "dev": true,
-      "requires": {
-        "ansi-styles": "^2.2.1",
-        "escape-string-regexp": "^1.0.2",
-        "has-ansi": "^2.0.0",
-        "strip-ansi": "^3.0.0",
-        "supports-color": "^2.0.0"
-      }
-    },
-    "change-emitter": {
-      "version": "0.1.6",
-      "resolved": "https://registry.npmjs.org/change-emitter/-/change-emitter-0.1.6.tgz",
-      "integrity": "sha1-6LL+PX8at9aaMhma/5HqaTFAlRU="
-    },
-    "char-regex": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
-      "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
-      "dev": true
-    },
-    "character-entities": {
-      "version": "1.2.2",
-      "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.2.tgz",
-      "integrity": "sha512-sMoHX6/nBiy3KKfC78dnEalnpn0Az0oSNvqUWYTtYrhRI5iUIYsROU48G+E+kMFQzqXaJ8kHJZ85n7y6/PHgwQ=="
-    },
-    "character-entities-legacy": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.2.tgz",
-      "integrity": "sha512-9NB2VbXtXYWdXzqrvAHykE/f0QJxzaKIpZ5QzNZrrgQ7Iyxr2vnfS8fCBNVW9nUEZE0lo57nxKRqnzY/dKrwlA=="
-    },
-    "character-reference-invalid": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.2.tgz",
-      "integrity": "sha512-7I/xceXfKyUJmSAn/jw8ve/9DyOP7XxufNYLI9Px7CmsKgEUaZLUTax6nZxGQtaoiZCjpu6cHPj20xC/vqRReQ=="
-    },
-    "chardet": {
-      "version": "0.7.0",
-      "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
-      "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
-      "dev": true
-    },
-    "charenc": {
-      "version": "0.0.2",
-      "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz",
-      "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc="
-    },
-    "check-types": {
-      "version": "8.0.3",
-      "resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz",
-      "integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==",
-      "dev": true
-    },
-    "cheerio": {
-      "version": "1.0.0-rc.3",
-      "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz",
-      "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==",
-      "dev": true,
-      "requires": {
-        "css-select": "~1.2.0",
-        "dom-serializer": "~0.1.1",
-        "entities": "~1.1.1",
-        "htmlparser2": "^3.9.1",
-        "lodash": "^4.15.0",
-        "parse5": "^3.0.1"
-      },
-      "dependencies": {
-        "dom-serializer": {
-          "version": "0.1.1",
-          "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz",
-          "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==",
-          "dev": true,
-          "requires": {
-            "domelementtype": "^1.3.0",
-            "entities": "^1.1.1"
-          }
-        }
-      }
-    },
-    "chokidar": {
-      "version": "2.0.4",
-      "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz",
-      "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==",
-      "dev": true,
-      "requires": {
-        "anymatch": "^2.0.0",
-        "async-each": "^1.0.0",
-        "braces": "^2.3.0",
-        "fsevents": "^1.2.2",
-        "glob-parent": "^3.1.0",
-        "inherits": "^2.0.1",
-        "is-binary-path": "^1.0.0",
-        "is-glob": "^4.0.0",
-        "lodash.debounce": "^4.0.8",
-        "normalize-path": "^2.1.1",
-        "path-is-absolute": "^1.0.0",
-        "readdirp": "^2.0.0",
-        "upath": "^1.0.5"
-      },
-      "dependencies": {
-        "fsevents": {
-          "version": "1.2.9",
-          "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz",
-          "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "nan": "^2.12.1",
-            "node-pre-gyp": "^0.12.0"
-          },
-          "dependencies": {
-            "abbrev": {
-              "version": "1.1.1",
-              "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
-              "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
-              "dev": true,
-              "optional": true
-            },
-            "ansi-regex": {
-              "version": "2.1.1",
-              "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
-              "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
-              "dev": true,
-              "optional": true
-            },
-            "aproba": {
-              "version": "1.2.0",
-              "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
-              "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
-              "dev": true,
-              "optional": true
-            },
-            "are-we-there-yet": {
-              "version": "1.1.5",
-              "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz",
-              "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "delegates": "^1.0.0",
-                "readable-stream": "^2.0.6"
-              }
-            },
-            "balanced-match": {
-              "version": "1.0.0",
-              "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
-              "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
-              "dev": true,
-              "optional": true
-            },
-            "brace-expansion": {
-              "version": "1.1.11",
-              "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
-              "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "balanced-match": "^1.0.0",
-                "concat-map": "0.0.1"
-              }
-            },
-            "code-point-at": {
-              "version": "1.1.0",
-              "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
-              "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
-              "dev": true,
-              "optional": true
-            },
-            "concat-map": {
-              "version": "0.0.1",
-              "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
-              "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
-              "dev": true,
-              "optional": true
-            },
-            "console-control-strings": {
-              "version": "1.1.0",
-              "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
-              "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
-              "dev": true,
-              "optional": true
-            },
-            "core-util-is": {
-              "version": "1.0.2",
-              "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
-              "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
-              "dev": true,
-              "optional": true
-            },
-            "debug": {
-              "version": "4.1.1",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-              "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "ms": "^2.1.1"
-              }
-            },
-            "deep-extend": {
-              "version": "0.6.0",
-              "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
-              "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
-              "dev": true,
-              "optional": true
-            },
-            "delegates": {
-              "version": "1.0.0",
-              "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
-              "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
-              "dev": true,
-              "optional": true
-            },
-            "detect-libc": {
-              "version": "1.0.3",
-              "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
-              "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=",
-              "dev": true,
-              "optional": true
-            },
-            "fs.realpath": {
-              "version": "1.0.0",
-              "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
-              "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
-              "dev": true,
-              "optional": true
-            },
-            "gauge": {
-              "version": "2.7.4",
-              "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz",
-              "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "aproba": "^1.0.3",
-                "console-control-strings": "^1.0.0",
-                "has-unicode": "^2.0.0",
-                "object-assign": "^4.1.0",
-                "signal-exit": "^3.0.0",
-                "string-width": "^1.0.1",
-                "strip-ansi": "^3.0.1",
-                "wide-align": "^1.1.0"
-              }
-            },
-            "glob": {
-              "version": "7.1.3",
-              "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz",
-              "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "fs.realpath": "^1.0.0",
-                "inflight": "^1.0.4",
-                "inherits": "2",
-                "minimatch": "^3.0.4",
-                "once": "^1.3.0",
-                "path-is-absolute": "^1.0.0"
-              }
-            },
-            "has-unicode": {
-              "version": "2.0.1",
-              "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
-              "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=",
-              "dev": true,
-              "optional": true
-            },
-            "iconv-lite": {
-              "version": "0.4.24",
-              "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
-              "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "safer-buffer": ">= 2.1.2 < 3"
-              }
-            },
-            "ignore-walk": {
-              "version": "3.0.1",
-              "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz",
-              "integrity": "sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "minimatch": "^3.0.4"
-              }
-            },
-            "inflight": {
-              "version": "1.0.6",
-              "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
-              "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "once": "^1.3.0",
-                "wrappy": "1"
-              }
-            },
-            "inherits": {
-              "version": "2.0.3",
-              "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
-              "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
-              "dev": true,
-              "optional": true
-            },
-            "is-fullwidth-code-point": {
-              "version": "1.0.0",
-              "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
-              "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "number-is-nan": "^1.0.0"
-              }
-            },
-            "isarray": {
-              "version": "1.0.0",
-              "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
-              "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
-              "dev": true,
-              "optional": true
-            },
-            "minimatch": {
-              "version": "3.0.4",
-              "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
-              "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "brace-expansion": "^1.1.7"
-              }
-            },
-            "minimist": {
-              "version": "1.2.5",
-              "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
-              "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
-              "dev": true,
-              "optional": true
-            },
-            "ms": {
-              "version": "2.1.1",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
-              "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
-              "dev": true,
-              "optional": true
-            },
-            "needle": {
-              "version": "2.3.0",
-              "resolved": "https://registry.npmjs.org/needle/-/needle-2.3.0.tgz",
-              "integrity": "sha512-QBZu7aAFR0522EyaXZM0FZ9GLpq6lvQ3uq8gteiDUp7wKdy0lSd2hPlgFwVuW1CBkfEs9PfDQsQzZghLs/psdg==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "debug": "^4.1.0",
-                "iconv-lite": "^0.4.4",
-                "sax": "^1.2.4"
-              }
-            },
-            "node-pre-gyp": {
-              "version": "0.12.0",
-              "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz",
-              "integrity": "sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "detect-libc": "^1.0.2",
-                "mkdirp": "^0.5.1",
-                "needle": "^2.2.1",
-                "nopt": "^4.0.1",
-                "npm-packlist": "^1.1.6",
-                "npmlog": "^4.0.2",
-                "rc": "^1.2.7",
-                "rimraf": "^2.6.1",
-                "semver": "^5.3.0",
-                "tar": "^4"
-              }
-            },
-            "nopt": {
-              "version": "4.0.1",
-              "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz",
-              "integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "abbrev": "1",
-                "osenv": "^0.1.4"
-              }
-            },
-            "npm-bundled": {
-              "version": "1.0.6",
-              "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.6.tgz",
-              "integrity": "sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==",
-              "dev": true,
-              "optional": true
-            },
-            "npm-packlist": {
-              "version": "1.4.1",
-              "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.1.tgz",
-              "integrity": "sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "ignore-walk": "^3.0.1",
-                "npm-bundled": "^1.0.1"
-              }
-            },
-            "npmlog": {
-              "version": "4.1.2",
-              "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz",
-              "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "are-we-there-yet": "~1.1.2",
-                "console-control-strings": "~1.1.0",
-                "gauge": "~2.7.3",
-                "set-blocking": "~2.0.0"
-              }
-            },
-            "number-is-nan": {
-              "version": "1.0.1",
-              "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
-              "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
-              "dev": true,
-              "optional": true
-            },
-            "object-assign": {
-              "version": "4.1.1",
-              "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
-              "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
-              "dev": true,
-              "optional": true
-            },
-            "once": {
-              "version": "1.4.0",
-              "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
-              "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "wrappy": "1"
-              }
-            },
-            "os-homedir": {
-              "version": "1.0.2",
-              "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
-              "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=",
-              "dev": true,
-              "optional": true
-            },
-            "os-tmpdir": {
-              "version": "1.0.2",
-              "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
-              "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
-              "dev": true,
-              "optional": true
-            },
-            "osenv": {
-              "version": "0.1.5",
-              "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz",
-              "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "os-homedir": "^1.0.0",
-                "os-tmpdir": "^1.0.0"
-              }
-            },
-            "path-is-absolute": {
-              "version": "1.0.1",
-              "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
-              "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
-              "dev": true,
-              "optional": true
-            },
-            "process-nextick-args": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
-              "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==",
-              "dev": true,
-              "optional": true
-            },
-            "rc": {
-              "version": "1.2.8",
-              "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
-              "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "deep-extend": "^0.6.0",
-                "ini": "~1.3.0",
-                "minimist": "^1.2.0",
-                "strip-json-comments": "~2.0.1"
-              }
-            },
-            "readable-stream": {
-              "version": "2.3.6",
-              "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
-              "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "core-util-is": "~1.0.0",
-                "inherits": "~2.0.3",
-                "isarray": "~1.0.0",
-                "process-nextick-args": "~2.0.0",
-                "safe-buffer": "~5.1.1",
-                "string_decoder": "~1.1.1",
-                "util-deprecate": "~1.0.1"
-              }
-            },
-            "rimraf": {
-              "version": "2.6.3",
-              "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
-              "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "glob": "^7.1.3"
-              }
-            },
-            "safe-buffer": {
-              "version": "5.1.2",
-              "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
-              "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
-              "dev": true,
-              "optional": true
-            },
-            "safer-buffer": {
-              "version": "2.1.2",
-              "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
-              "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
-              "dev": true,
-              "optional": true
-            },
-            "sax": {
-              "version": "1.2.4",
-              "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
-              "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
-              "dev": true,
-              "optional": true
-            },
-            "semver": {
-              "version": "5.7.0",
-              "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz",
-              "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==",
-              "dev": true,
-              "optional": true
-            },
-            "set-blocking": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
-              "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
-              "dev": true,
-              "optional": true
-            },
-            "signal-exit": {
-              "version": "3.0.2",
-              "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
-              "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=",
-              "dev": true,
-              "optional": true
-            },
-            "string-width": {
-              "version": "1.0.2",
-              "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
-              "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "code-point-at": "^1.0.0",
-                "is-fullwidth-code-point": "^1.0.0",
-                "strip-ansi": "^3.0.0"
-              }
-            },
-            "string_decoder": {
-              "version": "1.1.1",
-              "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
-              "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "safe-buffer": "~5.1.0"
-              }
-            },
-            "strip-ansi": {
-              "version": "3.0.1",
-              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
-              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "ansi-regex": "^2.0.0"
-              }
-            },
-            "strip-json-comments": {
-              "version": "2.0.1",
-              "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
-              "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
-              "dev": true,
-              "optional": true
-            },
-            "util-deprecate": {
-              "version": "1.0.2",
-              "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
-              "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
-              "dev": true,
-              "optional": true
-            },
-            "wide-align": {
-              "version": "1.1.3",
-              "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz",
-              "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "string-width": "^1.0.2 || 2"
-              }
-            },
-            "wrappy": {
-              "version": "1.0.2",
-              "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
-              "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
-              "dev": true,
-              "optional": true
-            }
-          }
-        },
-        "glob-parent": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
-          "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
-          "dev": true,
-          "requires": {
-            "is-glob": "^3.1.0",
-            "path-dirname": "^1.0.0"
-          },
-          "dependencies": {
-            "is-glob": {
-              "version": "3.1.0",
-              "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
-              "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
-              "dev": true,
-              "requires": {
-                "is-extglob": "^2.1.0"
-              }
-            }
-          }
-        },
-        "mkdirp": {
-          "version": "0.5.5",
-          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
-          "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        }
-      }
-    },
-    "chownr": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz",
-      "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==",
-      "dev": true
-    },
-    "chrome-trace-event": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz",
-      "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==",
-      "dev": true,
-      "requires": {
-        "tslib": "^1.9.0"
-      }
-    },
-    "chrono-node": {
-      "version": "1.3.11",
-      "resolved": "https://registry.npmjs.org/chrono-node/-/chrono-node-1.3.11.tgz",
-      "integrity": "sha512-jDWRnY6nYvzfV3HPYBqo+tot7tcsUs9i3arGbMdI0TouPSXP2C2y/Ctp27rxKTQDi6yuTxAB2cw+Q6igGhOhdQ==",
-      "requires": {
-        "moment": "2.21.0"
-      },
-      "dependencies": {
-        "moment": {
-          "version": "2.21.0",
-          "resolved": "https://registry.npmjs.org/moment/-/moment-2.21.0.tgz",
-          "integrity": "sha512-TCZ36BjURTeFTM/CwRcViQlfkMvL1/vFISuNLO5GkcVm1+QHfbSiNqZuWeMFjj1/3+uAjXswgRk30j1kkLYJBQ=="
-        }
-      }
-    },
-    "ci-info": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
-      "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
-      "dev": true
-    },
-    "cipher-base": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
-      "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
-      "dev": true,
-      "requires": {
-        "inherits": "^2.0.1",
-        "safe-buffer": "^5.0.1"
-      }
-    },
-    "circular-json-es6": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/circular-json-es6/-/circular-json-es6-2.0.2.tgz",
-      "integrity": "sha512-ODYONMMNb3p658Zv+Pp+/XPa5s6q7afhz3Tzyvo+VRh9WIrJ64J76ZC4GQxnlye/NesTn09jvOiuE8+xxfpwhQ==",
-      "dev": true
-    },
-    "cjs-module-lexer": {
-      "version": "0.6.0",
-      "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz",
-      "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==",
-      "dev": true
-    },
-    "class-utils": {
-      "version": "0.3.6",
-      "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
-      "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
-      "dev": true,
-      "requires": {
-        "arr-union": "^3.1.0",
-        "define-property": "^0.2.5",
-        "isobject": "^3.0.0",
-        "static-extend": "^0.1.1"
-      },
-      "dependencies": {
-        "define-property": {
-          "version": "0.2.5",
-          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
-          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
-          "dev": true,
-          "requires": {
-            "is-descriptor": "^0.1.0"
-          }
-        }
-      }
-    },
-    "classnames": {
-      "version": "2.2.6",
-      "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz",
-      "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="
-    },
-    "clean-css": {
-      "version": "4.2.3",
-      "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz",
-      "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==",
-      "dev": true,
-      "requires": {
-        "source-map": "~0.6.0"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "clean-stack": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
-      "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
-      "dev": true
-    },
-    "clean-webpack-plugin": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz",
-      "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==",
-      "dev": true,
-      "requires": {
-        "@types/webpack": "^4.4.31",
-        "del": "^4.1.1"
-      }
-    },
-    "cli-boxes": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.0.tgz",
-      "integrity": "sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==",
-      "dev": true
-    },
-    "cli-cursor": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
-      "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
-      "dev": true,
-      "requires": {
-        "restore-cursor": "^3.1.0"
-      }
-    },
-    "cli-table3": {
-      "version": "0.6.0",
-      "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.0.tgz",
-      "integrity": "sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==",
-      "dev": true,
-      "requires": {
-        "colors": "^1.1.2",
-        "object-assign": "^4.1.0",
-        "string-width": "^4.2.0"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "emoji-regex": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-          "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        },
-        "string-width": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
-          "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^8.0.0",
-            "is-fullwidth-code-point": "^3.0.0",
-            "strip-ansi": "^6.0.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        }
-      }
-    },
-    "cli-width": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
-      "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
-      "dev": true
-    },
-    "clipboard": {
-      "version": "2.0.4",
-      "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.4.tgz",
-      "integrity": "sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==",
-      "optional": true,
-      "requires": {
-        "good-listener": "^1.2.2",
-        "select": "^1.1.2",
-        "tiny-emitter": "^2.0.0"
-      }
-    },
-    "cliui": {
-      "version": "6.0.0",
-      "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
-      "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
-      "dev": true,
-      "requires": {
-        "string-width": "^4.2.0",
-        "strip-ansi": "^6.0.0",
-        "wrap-ansi": "^6.2.0"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "emoji-regex": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-          "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        },
-        "string-width": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
-          "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^8.0.0",
-            "is-fullwidth-code-point": "^3.0.0",
-            "strip-ansi": "^6.0.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        }
-      }
-    },
-    "clone": {
-      "version": "2.1.2",
-      "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
-      "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
-      "dev": true
-    },
-    "clone-deep": {
-      "version": "0.2.4",
-      "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz",
-      "integrity": "sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=",
-      "dev": true,
-      "requires": {
-        "for-own": "^0.1.3",
-        "is-plain-object": "^2.0.1",
-        "kind-of": "^3.0.2",
-        "lazy-cache": "^1.0.3",
-        "shallow-clone": "^0.1.2"
-      },
-      "dependencies": {
-        "kind-of": {
-          "version": "3.2.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
-          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.1.5"
-          }
-        }
-      }
-    },
-    "co": {
-      "version": "4.6.0",
-      "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
-      "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
-    },
-    "coa": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz",
-      "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==",
-      "dev": true,
-      "requires": {
-        "@types/q": "^1.5.1",
-        "chalk": "^2.4.1",
-        "q": "^1.1.2"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "code-point-at": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
-      "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
-      "dev": true
-    },
-    "collapse-white-space": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz",
-      "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ=="
-    },
-    "collect-v8-coverage": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
-      "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==",
-      "dev": true
-    },
-    "collection-visit": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
-      "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
-      "dev": true,
-      "requires": {
-        "map-visit": "^1.0.0",
-        "object-visit": "^1.0.0"
-      }
-    },
-    "color": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/color/-/color-3.1.0.tgz",
-      "integrity": "sha512-CwyopLkuRYO5ei2EpzpIh6LqJMt6Mt+jZhO5VI5f/wJLZriXQE32/SSqzmrh+QB+AZT81Cj8yv+7zwToW8ahZg==",
-      "dev": true,
-      "requires": {
-        "color-convert": "^1.9.1",
-        "color-string": "^1.5.2"
-      }
-    },
-    "color-convert": {
-      "version": "1.9.3",
-      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
-      "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
-      "requires": {
-        "color-name": "1.1.3"
-      }
-    },
-    "color-name": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
-      "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
-    },
-    "color-string": {
-      "version": "1.5.3",
-      "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
-      "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
-      "dev": true,
-      "requires": {
-        "color-name": "^1.0.0",
-        "simple-swizzle": "^0.2.2"
-      }
-    },
-    "colorette": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz",
-      "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==",
-      "dev": true
-    },
-    "colors": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
-      "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
-      "dev": true,
-      "optional": true
-    },
-    "combined-stream": {
-      "version": "1.0.7",
-      "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
-      "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
-      "dev": true,
-      "requires": {
-        "delayed-stream": "~1.0.0"
-      }
-    },
-    "comma-separated-tokens": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.5.tgz",
-      "integrity": "sha512-Cg90/fcK93n0ecgYTAz1jaA3zvnQ0ExlmKY1rdbyHqAx6BHxwoJc+J7HDu0iuQ7ixEs1qaa+WyQ6oeuBpYP1iA==",
-      "requires": {
-        "trim": "0.0.1"
-      }
-    },
-    "commander": {
-      "version": "2.19.0",
-      "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz",
-      "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg=="
-    },
-    "commondir": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
-      "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
-      "dev": true
-    },
-    "component-emitter": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
-      "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
-      "dev": true
-    },
-    "compressible": {
-      "version": "2.0.18",
-      "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
-      "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
-      "dev": true,
-      "requires": {
-        "mime-db": ">= 1.43.0 < 2"
-      },
-      "dependencies": {
-        "mime-db": {
-          "version": "1.44.0",
-          "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
-          "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==",
-          "dev": true
-        }
-      }
-    },
-    "compression": {
-      "version": "1.7.4",
-      "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
-      "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
-      "dev": true,
-      "requires": {
-        "accepts": "~1.3.5",
-        "bytes": "3.0.0",
-        "compressible": "~2.0.16",
-        "debug": "2.6.9",
-        "on-headers": "~1.0.2",
-        "safe-buffer": "5.1.2",
-        "vary": "~1.1.2"
-      }
-    },
-    "compute-scroll-into-view": {
-      "version": "1.0.16",
-      "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.16.tgz",
-      "integrity": "sha512-a85LHKY81oQnikatZYA90pufpZ6sQx++BoCxOEMsjpZx+ZnaKGQnCyCehTRr/1p9GBIAHTjcU9k71kSYWloLiQ=="
-    },
-    "concat-map": {
-      "version": "0.0.1",
-      "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
-      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
-    },
-    "concat-stream": {
-      "version": "1.6.2",
-      "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
-      "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
-      "requires": {
-        "buffer-from": "^1.0.0",
-        "inherits": "^2.0.3",
-        "readable-stream": "^2.2.2",
-        "typedarray": "^0.0.6"
-      }
-    },
-    "config-chain": {
-      "version": "1.1.12",
-      "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz",
-      "integrity": "sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==",
-      "dev": true,
-      "requires": {
-        "ini": "^1.3.4",
-        "proto-list": "~1.2.1"
-      }
-    },
-    "confusing-browser-globals": {
-      "version": "1.0.10",
-      "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz",
-      "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==",
-      "dev": true
-    },
-    "connect-history-api-fallback": {
-      "version": "1.6.0",
-      "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz",
-      "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==",
-      "dev": true
-    },
-    "console-browserify": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz",
-      "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=",
-      "dev": true,
-      "requires": {
-        "date-now": "^0.1.4"
-      }
-    },
-    "console-control-strings": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
-      "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
-      "dev": true
-    },
-    "constants-browserify": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
-      "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
-      "dev": true
-    },
-    "contains-path": {
-      "version": "0.1.0",
-      "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
-      "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=",
-      "dev": true
-    },
-    "content-disposition": {
-      "version": "0.5.2",
-      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
-      "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=",
-      "dev": true
-    },
-    "content-type": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
-      "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
-      "dev": true
-    },
-    "convert-source-map": {
-      "version": "1.6.0",
-      "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz",
-      "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==",
-      "requires": {
-        "safe-buffer": "~5.1.1"
-      }
-    },
-    "cookie": {
-      "version": "0.3.1",
-      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz",
-      "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=",
-      "dev": true
-    },
-    "cookie-signature": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
-      "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=",
-      "dev": true
-    },
-    "copy-concurrently": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
-      "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
-      "dev": true,
-      "requires": {
-        "aproba": "^1.1.1",
-        "fs-write-stream-atomic": "^1.0.8",
-        "iferr": "^0.1.5",
-        "mkdirp": "^0.5.1",
-        "rimraf": "^2.5.4",
-        "run-queue": "^1.0.0"
-      }
-    },
-    "copy-descriptor": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
-      "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
-      "dev": true
-    },
-    "copy-to-clipboard": {
-      "version": "3.3.1",
-      "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz",
-      "integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==",
-      "requires": {
-        "toggle-selection": "^1.0.6"
-      }
-    },
-    "copy-webpack-plugin": {
-      "version": "6.0.3",
-      "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.0.3.tgz",
-      "integrity": "sha512-q5m6Vz4elsuyVEIUXr7wJdIdePWTubsqVbEMvf1WQnHGv0Q+9yPRu7MtYFPt+GBOXRav9lvIINifTQ1vSCs+eA==",
-      "dev": true,
-      "requires": {
-        "cacache": "^15.0.4",
-        "fast-glob": "^3.2.4",
-        "find-cache-dir": "^3.3.1",
-        "glob-parent": "^5.1.1",
-        "globby": "^11.0.1",
-        "loader-utils": "^2.0.0",
-        "normalize-path": "^3.0.0",
-        "p-limit": "^3.0.1",
-        "schema-utils": "^2.7.0",
-        "serialize-javascript": "^4.0.0",
-        "webpack-sources": "^1.4.3"
-      },
-      "dependencies": {
-        "@nodelib/fs.stat": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz",
-          "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==",
-          "dev": true
-        },
-        "ajv": {
-          "version": "6.12.4",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz",
-          "integrity": "sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ajv-keywords": {
-          "version": "3.5.2",
-          "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-          "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-          "dev": true
-        },
-        "array-union": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
-          "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
-          "dev": true
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "cacache": {
-          "version": "15.0.5",
-          "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz",
-          "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==",
-          "dev": true,
-          "requires": {
-            "@npmcli/move-file": "^1.0.1",
-            "chownr": "^2.0.0",
-            "fs-minipass": "^2.0.0",
-            "glob": "^7.1.4",
-            "infer-owner": "^1.0.4",
-            "lru-cache": "^6.0.0",
-            "minipass": "^3.1.1",
-            "minipass-collect": "^1.0.2",
-            "minipass-flush": "^1.0.5",
-            "minipass-pipeline": "^1.2.2",
-            "mkdirp": "^1.0.3",
-            "p-map": "^4.0.0",
-            "promise-inflight": "^1.0.1",
-            "rimraf": "^3.0.2",
-            "ssri": "^8.0.0",
-            "tar": "^6.0.2",
-            "unique-filename": "^1.1.1"
-          }
-        },
-        "chownr": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
-          "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "fast-glob": {
-          "version": "3.2.4",
-          "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz",
-          "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==",
-          "dev": true,
-          "requires": {
-            "@nodelib/fs.stat": "^2.0.2",
-            "@nodelib/fs.walk": "^1.2.3",
-            "glob-parent": "^5.1.0",
-            "merge2": "^1.3.0",
-            "micromatch": "^4.0.2",
-            "picomatch": "^2.2.1"
-          }
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "find-cache-dir": {
-          "version": "3.3.1",
-          "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
-          "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==",
-          "dev": true,
-          "requires": {
-            "commondir": "^1.0.1",
-            "make-dir": "^3.0.2",
-            "pkg-dir": "^4.1.0"
-          }
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "glob": {
-          "version": "7.1.6",
-          "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
-          "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
-          "dev": true,
-          "requires": {
-            "fs.realpath": "^1.0.0",
-            "inflight": "^1.0.4",
-            "inherits": "2",
-            "minimatch": "^3.0.4",
-            "once": "^1.3.0",
-            "path-is-absolute": "^1.0.0"
-          }
-        },
-        "glob-parent": {
-          "version": "5.1.1",
-          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
-          "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
-          "dev": true,
-          "requires": {
-            "is-glob": "^4.0.1"
-          }
-        },
-        "globby": {
-          "version": "11.0.1",
-          "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz",
-          "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==",
-          "dev": true,
-          "requires": {
-            "array-union": "^2.1.0",
-            "dir-glob": "^3.0.1",
-            "fast-glob": "^3.1.1",
-            "ignore": "^5.1.4",
-            "merge2": "^1.3.0",
-            "slash": "^3.0.0"
-          }
-        },
-        "ignore": {
-          "version": "5.1.8",
-          "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz",
-          "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "loader-utils": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-          "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^2.1.2"
-          }
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "lru-cache": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
-          "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-          "dev": true,
-          "requires": {
-            "yallist": "^4.0.0"
-          }
-        },
-        "make-dir": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
-          "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
-          "dev": true,
-          "requires": {
-            "semver": "^6.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "minizlib": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
-          "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
-          "dev": true,
-          "requires": {
-            "minipass": "^3.0.0",
-            "yallist": "^4.0.0"
-          }
-        },
-        "mkdirp": {
-          "version": "1.0.4",
-          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
-          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
-          "dev": true
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "p-limit": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.0.2.tgz",
-          "integrity": "sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          },
-          "dependencies": {
-            "p-limit": {
-              "version": "2.3.0",
-              "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-              "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-              "dev": true,
-              "requires": {
-                "p-try": "^2.0.0"
-              }
-            }
-          }
-        },
-        "p-map": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
-          "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
-          "dev": true,
-          "requires": {
-            "aggregate-error": "^3.0.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "pkg-dir": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
-          "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
-          "dev": true,
-          "requires": {
-            "find-up": "^4.0.0"
-          }
-        },
-        "rimraf": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
-          "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
-          "dev": true,
-          "requires": {
-            "glob": "^7.1.3"
-          }
-        },
-        "schema-utils": {
-          "version": "2.7.0",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz",
-          "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==",
-          "dev": true,
-          "requires": {
-            "@types/json-schema": "^7.0.4",
-            "ajv": "^6.12.2",
-            "ajv-keywords": "^3.4.1"
-          }
-        },
-        "semver": {
-          "version": "6.3.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-          "dev": true
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "ssri": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.0.tgz",
-          "integrity": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==",
-          "dev": true,
-          "requires": {
-            "minipass": "^3.1.1"
-          }
-        },
-        "tar": {
-          "version": "6.0.5",
-          "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz",
-          "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==",
-          "dev": true,
-          "requires": {
-            "chownr": "^2.0.0",
-            "fs-minipass": "^2.0.0",
-            "minipass": "^3.0.0",
-            "minizlib": "^2.1.1",
-            "mkdirp": "^1.0.3",
-            "yallist": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        },
-        "yallist": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
-          "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-          "dev": true
-        }
-      }
-    },
-    "core-js": {
-      "version": "3.6.5",
-      "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
-      "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA=="
-    },
-    "core-js-compat": {
-      "version": "3.6.4",
-      "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.4.tgz",
-      "integrity": "sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA==",
-      "dev": true,
-      "requires": {
-        "browserslist": "^4.8.3",
-        "semver": "7.0.0"
-      },
-      "dependencies": {
-        "browserslist": {
-          "version": "4.9.1",
-          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.9.1.tgz",
-          "integrity": "sha512-Q0DnKq20End3raFulq6Vfp1ecB9fh8yUNV55s8sekaDDeqBaCtWlRHCUdaWyUeSSBJM7IbM6HcsyaeYqgeDhnw==",
-          "dev": true,
-          "requires": {
-            "caniuse-lite": "^1.0.30001030",
-            "electron-to-chromium": "^1.3.363",
-            "node-releases": "^1.1.50"
-          }
-        },
-        "caniuse-lite": {
-          "version": "1.0.30001035",
-          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001035.tgz",
-          "integrity": "sha512-C1ZxgkuA4/bUEdMbU5WrGY4+UhMFFiXrgNAfxiMIqWgFTWfv/xsZCS2xEHT2LMq7xAZfuAnu6mcqyDl0ZR6wLQ==",
-          "dev": true
-        },
-        "semver": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
-          "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
-          "dev": true
-        }
-      }
-    },
-    "core-js-pure": {
-      "version": "3.6.4",
-      "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.4.tgz",
-      "integrity": "sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw=="
-    },
-    "core-util-is": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
-      "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
-    },
-    "cosmiconfig": {
-      "version": "5.2.0",
-      "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.0.tgz",
-      "integrity": "sha512-nxt+Nfc3JAqf4WIWd0jXLjTJZmsPLrA9DDc4nRw2KFJQJK7DNooqSXrNI7tzLG50CF8axczly5UV929tBmh/7g==",
-      "dev": true,
-      "requires": {
-        "import-fresh": "^2.0.0",
-        "is-directory": "^0.3.1",
-        "js-yaml": "^3.13.0",
-        "parse-json": "^4.0.0"
-      },
-      "dependencies": {
-        "parse-json": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
-          "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
-          "dev": true,
-          "requires": {
-            "error-ex": "^1.3.1",
-            "json-parse-better-errors": "^1.0.1"
-          }
-        }
-      }
-    },
-    "create-ecdh": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
-      "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==",
-      "dev": true,
-      "requires": {
-        "bn.js": "^4.1.0",
-        "elliptic": "^6.0.0"
-      }
-    },
-    "create-hash": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
-      "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
-      "dev": true,
-      "requires": {
-        "cipher-base": "^1.0.1",
-        "inherits": "^2.0.1",
-        "md5.js": "^1.3.4",
-        "ripemd160": "^2.0.1",
-        "sha.js": "^2.4.0"
-      }
-    },
-    "create-hmac": {
-      "version": "1.1.7",
-      "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
-      "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
-      "dev": true,
-      "requires": {
-        "cipher-base": "^1.0.3",
-        "create-hash": "^1.1.0",
-        "inherits": "^2.0.1",
-        "ripemd160": "^2.0.0",
-        "safe-buffer": "^5.0.1",
-        "sha.js": "^2.4.8"
-      }
-    },
-    "create-react-context": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz",
-      "integrity": "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==",
-      "dev": true,
-      "requires": {
-        "gud": "^1.0.0",
-        "warning": "^4.0.3"
-      },
-      "dependencies": {
-        "warning": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
-          "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
-          "dev": true,
-          "requires": {
-            "loose-envify": "^1.0.0"
-          }
-        }
-      }
-    },
-    "cross-env": {
-      "version": "5.2.0",
-      "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz",
-      "integrity": "sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==",
-      "dev": true,
-      "requires": {
-        "cross-spawn": "^6.0.5",
-        "is-windows": "^1.0.0"
-      }
-    },
-    "cross-spawn": {
-      "version": "6.0.5",
-      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
-      "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
-      "dev": true,
-      "requires": {
-        "nice-try": "^1.0.4",
-        "path-key": "^2.0.1",
-        "semver": "^5.5.0",
-        "shebang-command": "^1.2.0",
-        "which": "^1.2.9"
-      }
-    },
-    "crypt": {
-      "version": "0.0.2",
-      "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz",
-      "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs="
-    },
-    "crypto-browserify": {
-      "version": "3.12.0",
-      "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
-      "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
-      "dev": true,
-      "requires": {
-        "browserify-cipher": "^1.0.0",
-        "browserify-sign": "^4.0.0",
-        "create-ecdh": "^4.0.0",
-        "create-hash": "^1.1.0",
-        "create-hmac": "^1.1.0",
-        "diffie-hellman": "^5.0.0",
-        "inherits": "^2.0.1",
-        "pbkdf2": "^3.0.3",
-        "public-encrypt": "^4.0.0",
-        "randombytes": "^2.0.0",
-        "randomfill": "^1.0.3"
-      }
-    },
-    "css": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz",
-      "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==",
-      "dev": true,
-      "requires": {
-        "inherits": "^2.0.4",
-        "source-map": "^0.6.1",
-        "source-map-resolve": "^0.6.0"
-      },
-      "dependencies": {
-        "inherits": {
-          "version": "2.0.4",
-          "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
-          "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "source-map-resolve": {
-          "version": "0.6.0",
-          "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz",
-          "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==",
-          "dev": true,
-          "requires": {
-            "atob": "^2.1.2",
-            "decode-uri-component": "^0.2.0"
-          }
-        }
-      }
-    },
-    "css-color-names": {
-      "version": "0.0.4",
-      "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz",
-      "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=",
-      "dev": true
-    },
-    "css-declaration-sorter": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz",
-      "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.1",
-        "timsort": "^0.3.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "css-in-js-utils": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz",
-      "integrity": "sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA==",
-      "requires": {
-        "hyphenate-style-name": "^1.0.2",
-        "isobject": "^3.0.1"
-      }
-    },
-    "css-loader": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-1.0.1.tgz",
-      "integrity": "sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==",
-      "dev": true,
-      "requires": {
-        "babel-code-frame": "^6.26.0",
-        "css-selector-tokenizer": "^0.7.0",
-        "icss-utils": "^2.1.0",
-        "loader-utils": "^1.0.2",
-        "lodash": "^4.17.11",
-        "postcss": "^6.0.23",
-        "postcss-modules-extract-imports": "^1.2.0",
-        "postcss-modules-local-by-default": "^1.2.0",
-        "postcss-modules-scope": "^1.1.0",
-        "postcss-modules-values": "^1.3.0",
-        "postcss-value-parser": "^3.3.0",
-        "source-list-map": "^2.0.0"
-      }
-    },
-    "css-select": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz",
-      "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=",
-      "dev": true,
-      "requires": {
-        "boolbase": "~1.0.0",
-        "css-what": "2.1",
-        "domutils": "1.5.1",
-        "nth-check": "~1.0.1"
-      }
-    },
-    "css-select-base-adapter": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz",
-      "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==",
-      "dev": true
-    },
-    "css-selector-tokenizer": {
-      "version": "0.7.1",
-      "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz",
-      "integrity": "sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA==",
-      "dev": true,
-      "requires": {
-        "cssesc": "^0.1.0",
-        "fastparse": "^1.1.1",
-        "regexpu-core": "^1.0.0"
-      }
-    },
-    "css-tree": {
-      "version": "1.0.0-alpha.37",
-      "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz",
-      "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==",
-      "dev": true,
-      "requires": {
-        "mdn-data": "2.0.4",
-        "source-map": "^0.6.1"
-      },
-      "dependencies": {
-        "mdn-data": {
-          "version": "2.0.4",
-          "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz",
-          "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "css-unit-converter": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz",
-      "integrity": "sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY=",
-      "dev": true
-    },
-    "css-what": {
-      "version": "2.1.2",
-      "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.2.tgz",
-      "integrity": "sha512-wan8dMWQ0GUeF7DGEPVjhHemVW/vy6xUYmFzRY8RYqgA0JtXC9rJmbScBjqSu6dg9q0lwPQy6ZAmJVr3PPTvqQ==",
-      "dev": true
-    },
-    "css.escape": {
-      "version": "1.5.1",
-      "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz",
-      "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=",
-      "dev": true
-    },
-    "csscolorparser": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz",
-      "integrity": "sha1-s085HupNqPPpgjHizNjfnAQfFxs="
-    },
-    "cssesc": {
-      "version": "0.1.0",
-      "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz",
-      "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=",
-      "dev": true
-    },
-    "cssfilter": {
-      "version": "0.0.10",
-      "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz",
-      "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4="
-    },
-    "cssnano": {
-      "version": "4.1.10",
-      "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz",
-      "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==",
-      "dev": true,
-      "requires": {
-        "cosmiconfig": "^5.0.0",
-        "cssnano-preset-default": "^4.0.7",
-        "is-resolvable": "^1.0.0",
-        "postcss": "^7.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "cssnano-preset-default": {
-      "version": "4.0.7",
-      "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz",
-      "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==",
-      "dev": true,
-      "requires": {
-        "css-declaration-sorter": "^4.0.1",
-        "cssnano-util-raw-cache": "^4.0.1",
-        "postcss": "^7.0.0",
-        "postcss-calc": "^7.0.1",
-        "postcss-colormin": "^4.0.3",
-        "postcss-convert-values": "^4.0.1",
-        "postcss-discard-comments": "^4.0.2",
-        "postcss-discard-duplicates": "^4.0.2",
-        "postcss-discard-empty": "^4.0.1",
-        "postcss-discard-overridden": "^4.0.1",
-        "postcss-merge-longhand": "^4.0.11",
-        "postcss-merge-rules": "^4.0.3",
-        "postcss-minify-font-values": "^4.0.2",
-        "postcss-minify-gradients": "^4.0.2",
-        "postcss-minify-params": "^4.0.2",
-        "postcss-minify-selectors": "^4.0.2",
-        "postcss-normalize-charset": "^4.0.1",
-        "postcss-normalize-display-values": "^4.0.2",
-        "postcss-normalize-positions": "^4.0.2",
-        "postcss-normalize-repeat-style": "^4.0.2",
-        "postcss-normalize-string": "^4.0.2",
-        "postcss-normalize-timing-functions": "^4.0.2",
-        "postcss-normalize-unicode": "^4.0.1",
-        "postcss-normalize-url": "^4.0.1",
-        "postcss-normalize-whitespace": "^4.0.2",
-        "postcss-ordered-values": "^4.1.2",
-        "postcss-reduce-initial": "^4.0.3",
-        "postcss-reduce-transforms": "^4.0.2",
-        "postcss-svgo": "^4.0.2",
-        "postcss-unique-selectors": "^4.0.1"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "cssnano-util-get-arguments": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz",
-      "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=",
-      "dev": true
-    },
-    "cssnano-util-get-match": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz",
-      "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=",
-      "dev": true
-    },
-    "cssnano-util-raw-cache": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz",
-      "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "cssnano-util-same-parent": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz",
-      "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==",
-      "dev": true
-    },
-    "csso": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/csso/-/csso-4.0.3.tgz",
-      "integrity": "sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==",
-      "dev": true,
-      "requires": {
-        "css-tree": "1.0.0-alpha.39"
-      },
-      "dependencies": {
-        "css-tree": {
-          "version": "1.0.0-alpha.39",
-          "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.39.tgz",
-          "integrity": "sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==",
-          "dev": true,
-          "requires": {
-            "mdn-data": "2.0.6",
-            "source-map": "^0.6.1"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "cssom": {
-      "version": "0.4.4",
-      "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
-      "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
-      "dev": true
-    },
-    "cssstyle": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
-      "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
-      "dev": true,
-      "requires": {
-        "cssom": "~0.3.6"
-      },
-      "dependencies": {
-        "cssom": {
-          "version": "0.3.8",
-          "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
-          "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
-          "dev": true
-        }
-      }
-    },
-    "csstype": {
-      "version": "2.6.9",
-      "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.9.tgz",
-      "integrity": "sha512-xz39Sb4+OaTsULgUERcCk+TJj8ylkL4aSVDQiX/ksxbELSqwkgt4d4RD7fovIdgJGSuNYqwZEiVjYY5l0ask+Q=="
-    },
-    "cyclist": {
-      "version": "0.2.2",
-      "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz",
-      "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=",
-      "dev": true
-    },
-    "d": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz",
-      "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==",
-      "dev": true,
-      "requires": {
-        "es5-ext": "^0.10.50",
-        "type": "^1.0.1"
-      }
-    },
-    "d3": {
-      "version": "3.5.17",
-      "resolved": "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz",
-      "integrity": "sha1-vEZ0gAQ3iyGjYMn8fPUjF5B2L7g="
-    },
-    "d3-array": {
-      "version": "1.2.4",
-      "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz",
-      "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw=="
-    },
-    "d3-cloud": {
-      "version": "1.2.5",
-      "resolved": "https://registry.npmjs.org/d3-cloud/-/d3-cloud-1.2.5.tgz",
-      "integrity": "sha512-4s2hXZgvs0CoUIw31oBAGrHt9Kt/7P9Ik5HIVzISFiWkD0Ga2VLAuO/emO/z1tYIpE7KG2smB4PhMPfFMJpahw==",
-      "requires": {
-        "d3-dispatch": "^1.0.3"
-      }
-    },
-    "d3-collection": {
-      "version": "1.0.7",
-      "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz",
-      "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A=="
-    },
-    "d3-color": {
-      "version": "1.2.3",
-      "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.2.3.tgz",
-      "integrity": "sha512-x37qq3ChOTLd26hnps36lexMRhNXEtVxZ4B25rL0DVdDsGQIJGB18S7y9XDwlDD6MD/ZBzITCf4JjGMM10TZkw=="
-    },
-    "d3-dispatch": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz",
-      "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA=="
-    },
-    "d3-drag": {
-      "version": "1.2.5",
-      "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.5.tgz",
-      "integrity": "sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w==",
-      "requires": {
-        "d3-dispatch": "1",
-        "d3-selection": "1"
-      }
-    },
-    "d3-dsv": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz",
-      "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==",
-      "requires": {
-        "commander": "2",
-        "iconv-lite": "0.4",
-        "rw": "1"
-      }
-    },
-    "d3-ease": {
-      "version": "1.0.7",
-      "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.7.tgz",
-      "integrity": "sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ=="
-    },
-    "d3-format": {
-      "version": "1.3.2",
-      "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.3.2.tgz",
-      "integrity": "sha512-Z18Dprj96ExragQ0DeGi+SYPQ7pPfRMtUXtsg/ChVIKNBCzjO8XYJvRTC1usblx52lqge56V5ect+frYTQc8WQ=="
-    },
-    "d3-geo-projection": {
-      "version": "0.2.16",
-      "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-0.2.16.tgz",
-      "integrity": "sha1-SZTs0QM92xUztsTFUoocgdzClCc=",
-      "requires": {
-        "brfs": "^1.3.0"
-      }
-    },
-    "d3-hexbin": {
-      "version": "0.2.2",
-      "resolved": "https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz",
-      "integrity": "sha1-nFg32s/UcasFM3qeke8Qv8T5iDE="
-    },
-    "d3-hierarchy": {
-      "version": "1.1.9",
-      "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz",
-      "integrity": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ=="
-    },
-    "d3-interpolate": {
-      "version": "1.3.2",
-      "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.3.2.tgz",
-      "integrity": "sha512-NlNKGopqaz9qM1PXh9gBF1KSCVh+jSFErrSlD/4hybwoNX/gt1d8CDbDW+3i+5UOHhjC6s6nMvRxcuoMVNgL2w==",
-      "requires": {
-        "d3-color": "1"
-      }
-    },
-    "d3-path": {
-      "version": "1.0.7",
-      "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.7.tgz",
-      "integrity": "sha512-q0cW1RpvA5c5ma2rch62mX8AYaiLX0+bdaSM2wxSU9tXjU4DNvkx9qiUvjkuWCj3p22UO/hlPivujqMiR9PDzA=="
-    },
-    "d3-queue": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/d3-queue/-/d3-queue-2.0.3.tgz",
-      "integrity": "sha1-B/vaOsrlNYqcUpmq+ICt8JU+0sI="
-    },
-    "d3-sankey": {
-      "version": "0.4.2",
-      "resolved": "https://registry.npmjs.org/d3-sankey/-/d3-sankey-0.4.2.tgz",
-      "integrity": "sha1-NKFRLytEBqNfgOrH/rz1gi2+xa0=",
-      "requires": {
-        "d3-array": "1",
-        "d3-collection": "1",
-        "d3-interpolate": "1"
-      }
-    },
-    "d3-sankey-diagram": {
-      "version": "0.7.3",
-      "resolved": "https://registry.npmjs.org/d3-sankey-diagram/-/d3-sankey-diagram-0.7.3.tgz",
-      "integrity": "sha512-k9DOe7MaLWhWV6J/aqY/CGw88Briu8drTQ+uGGyQg55MIR2WXjKUXryLs0ONFmRQkOSH1F+TSz5XiMc4KwKtuA==",
-      "requires": {
-        "d3-array": "^1.0.2",
-        "d3-collection": "^1.0.2",
-        "d3-dispatch": "^1.0.3",
-        "d3-format": "^1.1.1",
-        "d3-interpolate": "^1.1.3",
-        "d3-selection": "^1.0.3",
-        "d3-transition": "^1.0.4",
-        "graphlib": "~2.1.0"
-      }
-    },
-    "d3-scale": {
-      "version": "2.1.2",
-      "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.1.2.tgz",
-      "integrity": "sha512-bESpd64ylaKzCDzvULcmHKZTlzA/6DGSVwx7QSDj/EnX9cpSevsdiwdHFYI9ouo9tNBbV3v5xztHS2uFeOzh8Q==",
-      "requires": {
-        "d3-array": "^1.2.0",
-        "d3-collection": "1",
-        "d3-format": "1",
-        "d3-interpolate": "1",
-        "d3-time": "1",
-        "d3-time-format": "2"
-      }
-    },
-    "d3-scale-chromatic": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-2.0.0.tgz",
-      "integrity": "sha512-LLqy7dJSL8yDy7NRmf6xSlsFZ6zYvJ4BcWFE4zBrOPnQERv9zj24ohnXKRbyi9YHnYV+HN1oEO3iFK971/gkzA==",
-      "requires": {
-        "d3-color": "1 - 2",
-        "d3-interpolate": "1 - 2"
-      }
-    },
-    "d3-selection": {
-      "version": "1.4.2",
-      "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.4.2.tgz",
-      "integrity": "sha512-SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg=="
-    },
-    "d3-shape": {
-      "version": "1.2.2",
-      "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.2.2.tgz",
-      "integrity": "sha512-hUGEozlKecFZ2bOSNt7ENex+4Tk9uc/m0TtTEHBvitCBxUNjhzm5hS2GrrVRD/ae4IylSmxGeqX5tWC2rASMlQ==",
-      "requires": {
-        "d3-path": "1"
-      }
-    },
-    "d3-svg-legend": {
-      "version": "1.13.0",
-      "resolved": "https://registry.npmjs.org/d3-svg-legend/-/d3-svg-legend-1.13.0.tgz",
-      "integrity": "sha1-YhdHjJrdnWLLMzYX4ZYTEaQaTbM="
-    },
-    "d3-time": {
-      "version": "1.0.10",
-      "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.0.10.tgz",
-      "integrity": "sha512-hF+NTLCaJHF/JqHN5hE8HVGAXPStEq6/omumPE/SxyHVrR7/qQxusFDo0t0c/44+sCGHthC7yNGFZIEgju0P8g=="
-    },
-    "d3-time-format": {
-      "version": "2.1.3",
-      "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.3.tgz",
-      "integrity": "sha512-6k0a2rZryzGm5Ihx+aFMuO1GgelgIz+7HhB4PH4OEndD5q2zGn1mDfRdNrulspOfR6JXkb2sThhDK41CSK85QA==",
-      "requires": {
-        "d3-time": "1"
-      }
-    },
-    "d3-timer": {
-      "version": "1.0.10",
-      "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.10.tgz",
-      "integrity": "sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw=="
-    },
-    "d3-tip": {
-      "version": "0.9.1",
-      "resolved": "https://registry.npmjs.org/d3-tip/-/d3-tip-0.9.1.tgz",
-      "integrity": "sha512-EVBfG9d+HnjIoyVXfhpytWxlF59JaobwizqMX9EBXtsFmJytjwHeYiUs74ldHQjE7S9vzfKTx2LCtvUrIbuFYg==",
-      "requires": {
-        "d3-collection": "^1.0.4",
-        "d3-selection": "^1.3.0"
-      }
-    },
-    "d3-transition": {
-      "version": "1.3.2",
-      "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-1.3.2.tgz",
-      "integrity": "sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA==",
-      "requires": {
-        "d3-color": "1",
-        "d3-dispatch": "1",
-        "d3-ease": "1",
-        "d3-interpolate": "1",
-        "d3-selection": "^1.1.0",
-        "d3-timer": "1"
-      }
-    },
-    "d3-voronoi": {
-      "version": "1.1.4",
-      "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz",
-      "integrity": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg=="
-    },
-    "d3-zoom": {
-      "version": "1.8.3",
-      "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-1.8.3.tgz",
-      "integrity": "sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ==",
-      "requires": {
-        "d3-dispatch": "1",
-        "d3-drag": "1",
-        "d3-interpolate": "1",
-        "d3-selection": "1",
-        "d3-transition": "1"
-      }
-    },
-    "damerau-levenshtein": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz",
-      "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==",
-      "dev": true
-    },
-    "dashdash": {
-      "version": "1.14.1",
-      "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
-      "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "^1.0.0"
-      }
-    },
-    "data-urls": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
-      "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
-      "dev": true,
-      "requires": {
-        "abab": "^2.0.3",
-        "whatwg-mimetype": "^2.3.0",
-        "whatwg-url": "^8.0.0"
-      },
-      "dependencies": {
-        "tr46": {
-          "version": "2.0.2",
-          "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz",
-          "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==",
-          "dev": true,
-          "requires": {
-            "punycode": "^2.1.1"
-          }
-        },
-        "webidl-conversions": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
-          "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
-          "dev": true
-        },
-        "whatwg-url": {
-          "version": "8.4.0",
-          "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz",
-          "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==",
-          "dev": true,
-          "requires": {
-            "lodash.sortby": "^4.7.0",
-            "tr46": "^2.0.2",
-            "webidl-conversions": "^6.1.0"
-          }
-        }
-      }
-    },
-    "datamaps": {
-      "version": "0.5.9",
-      "resolved": "https://registry.npmjs.org/datamaps/-/datamaps-0.5.9.tgz",
-      "integrity": "sha512-GUXpO713URNzaExVUgBtqA5fr2UuxUG/fVitI04zEFHVL2FHSjd672alHq8E16oQqRNzF0m1bmx8WlTnDrGSqQ==",
-      "requires": {
-        "@types/d3": "3.5.38",
-        "d3": "^3.5.6",
-        "topojson": "^1.6.19"
-      }
-    },
-    "datatables.net": {
-      "version": "1.10.23",
-      "resolved": "https://registry.npmjs.org/datatables.net/-/datatables.net-1.10.23.tgz",
-      "integrity": "sha512-we3tlNkzpxvgkKKlTxTMXPCt35untVXNg8zUYWpQyC1U5vJc+lT0+Zdc1ztK8d3lh5CfdnuFde2p8n3XwaGl3Q==",
-      "requires": {
-        "jquery": ">=1.7"
-      }
-    },
-    "datatables.net-bs": {
-      "version": "1.10.23",
-      "resolved": "https://registry.npmjs.org/datatables.net-bs/-/datatables.net-bs-1.10.23.tgz",
-      "integrity": "sha512-O/kJxT93i9hIq8trdbHuIcHhrTodkVPfPqvxOqKK8lJ03XUUrT6V8ZoGyxROFjQGcgbye5CoRLVf7MY+5biOIQ==",
-      "requires": {
-        "datatables.net": "1.10.23",
-        "jquery": ">=1.7"
-      }
-    },
-    "date-fns": {
-      "version": "2.16.1",
-      "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.16.1.tgz",
-      "integrity": "sha512-sAJVKx/FqrLYHAQeN7VpJrPhagZc9R4ImZIWYRFZaaohR3KzmuK88touwsSwSVT8Qcbd4zoDsnGfX4GFB4imyQ=="
-    },
-    "date-now": {
-      "version": "0.1.4",
-      "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz",
-      "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=",
-      "dev": true
-    },
-    "dayjs": {
-      "version": "1.9.7",
-      "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.9.7.tgz",
-      "integrity": "sha512-IC877KBdMhBrCfBfJXHQlo0G8keZ0Opy7YIIq5QKtUbCuHMzim8S4PyiVK4YmihI3iOF9lhfUBW4AQWHTR5WHA=="
-    },
-    "de-indent": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz",
-      "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=",
-      "dev": true
-    },
-    "debug": {
-      "version": "2.6.9",
-      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-      "dev": true,
-      "requires": {
-        "ms": "2.0.0"
-      }
-    },
-    "decamelize": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
-      "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
-      "dev": true
-    },
-    "decimal.js": {
-      "version": "10.2.1",
-      "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz",
-      "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw=="
-    },
-    "deck.gl": {
-      "version": "7.1.11",
-      "resolved": "https://registry.npmjs.org/deck.gl/-/deck.gl-7.1.11.tgz",
-      "integrity": "sha512-OUj9JE544N6Y/DCdfdnsbqKn9o72bWgRfsKhyi8aZ8v76hq7XyelmO2GljBmHGYmuMNVLrKcymNMV0m8EEgpZA==",
-      "requires": {
-        "@deck.gl/aggregation-layers": "7.1.11",
-        "@deck.gl/core": "7.1.11",
-        "@deck.gl/geo-layers": "7.1.11",
-        "@deck.gl/google-maps": "7.1.11",
-        "@deck.gl/json": "7.1.11",
-        "@deck.gl/layers": "7.1.11",
-        "@deck.gl/mapbox": "7.1.11",
-        "@deck.gl/mesh-layers": "7.1.11",
-        "@deck.gl/react": "7.1.11"
-      }
-    },
-    "decode-uri-component": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
-      "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
-    },
-    "dedent": {
-      "version": "0.7.0",
-      "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
-      "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=",
-      "dev": true
-    },
-    "deep-equal": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
-      "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
-      "dev": true,
-      "requires": {
-        "is-arguments": "^1.0.4",
-        "is-date-object": "^1.0.1",
-        "is-regex": "^1.0.4",
-        "object-is": "^1.0.1",
-        "object-keys": "^1.1.1",
-        "regexp.prototype.flags": "^1.2.0"
-      },
-      "dependencies": {
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "deep-equal-ident": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/deep-equal-ident/-/deep-equal-ident-1.1.1.tgz",
-      "integrity": "sha1-BvS4nlNxDNbOpKd4HHqVZkLejck=",
-      "dev": true,
-      "requires": {
-        "lodash.isequal": "^3.0"
-      },
-      "dependencies": {
-        "lodash.isequal": {
-          "version": "3.0.4",
-          "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-3.0.4.tgz",
-          "integrity": "sha1-HDXrO27wzR/1F0Pj6jz3/f/ay2Q=",
-          "dev": true,
-          "requires": {
-            "lodash._baseisequal": "^3.0.0",
-            "lodash._bindcallback": "^3.0.0"
-          }
-        }
-      }
-    },
-    "deep-is": {
-      "version": "0.1.3",
-      "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
-      "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
-    },
-    "deep-object-diff": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.0.tgz",
-      "integrity": "sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==",
-      "dev": true
-    },
-    "deepmerge": {
-      "version": "1.5.2",
-      "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz",
-      "integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ=="
-    },
-    "default-gateway": {
-      "version": "4.2.0",
-      "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz",
-      "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==",
-      "dev": true,
-      "requires": {
-        "execa": "^1.0.0",
-        "ip-regex": "^2.1.0"
-      }
-    },
-    "define-properties": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
-      "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
-      "requires": {
-        "object-keys": "^1.0.12"
-      }
-    },
-    "define-property": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
-      "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
-      "dev": true,
-      "requires": {
-        "is-descriptor": "^1.0.2",
-        "isobject": "^3.0.1"
-      },
-      "dependencies": {
-        "is-accessor-descriptor": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
-          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
-          "dev": true,
-          "requires": {
-            "kind-of": "^6.0.0"
-          }
-        },
-        "is-data-descriptor": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
-          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
-          "dev": true,
-          "requires": {
-            "kind-of": "^6.0.0"
-          }
-        },
-        "is-descriptor": {
-          "version": "1.0.2",
-          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
-          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
-          "dev": true,
-          "requires": {
-            "is-accessor-descriptor": "^1.0.0",
-            "is-data-descriptor": "^1.0.0",
-            "kind-of": "^6.0.2"
-          }
-        },
-        "kind-of": {
-          "version": "6.0.3",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
-          "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
-          "dev": true
-        }
-      }
-    },
-    "del": {
-      "version": "4.1.1",
-      "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz",
-      "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==",
-      "dev": true,
-      "requires": {
-        "@types/glob": "^7.1.1",
-        "globby": "^6.1.0",
-        "is-path-cwd": "^2.0.0",
-        "is-path-in-cwd": "^2.0.0",
-        "p-map": "^2.0.0",
-        "pify": "^4.0.1",
-        "rimraf": "^2.6.3"
-      },
-      "dependencies": {
-        "pify": {
-          "version": "4.0.1",
-          "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
-          "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
-          "dev": true
-        },
-        "rimraf": {
-          "version": "2.7.1",
-          "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
-          "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
-          "dev": true,
-          "requires": {
-            "glob": "^7.1.3"
-          }
-        }
-      }
-    },
-    "delayed-stream": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
-      "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
-      "dev": true
-    },
-    "delegate": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
-      "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==",
-      "optional": true
-    },
-    "delegates": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
-      "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
-      "dev": true
-    },
-    "depd": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
-      "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
-      "dev": true
-    },
-    "des.js": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz",
-      "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=",
-      "dev": true,
-      "requires": {
-        "inherits": "^2.0.1",
-        "minimalistic-assert": "^1.0.0"
-      }
-    },
-    "destroy": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
-      "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
-      "dev": true
-    },
-    "detab": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.3.tgz",
-      "integrity": "sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==",
-      "dev": true,
-      "requires": {
-        "repeat-string": "^1.5.4"
-      }
-    },
-    "detect-file": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz",
-      "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=",
-      "dev": true
-    },
-    "detect-newline": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
-      "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
-      "dev": true
-    },
-    "detect-node": {
-      "version": "2.0.4",
-      "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz",
-      "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==",
-      "dev": true
-    },
-    "detect-port": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz",
-      "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==",
-      "dev": true,
-      "requires": {
-        "address": "^1.0.1",
-        "debug": "^2.6.0"
-      }
-    },
-    "diff": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
-      "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
-      "dev": true
-    },
-    "diff-sequences": {
-      "version": "25.2.6",
-      "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz",
-      "integrity": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==",
-      "dev": true
-    },
-    "diffie-hellman": {
-      "version": "5.0.3",
-      "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
-      "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
-      "dev": true,
-      "requires": {
-        "bn.js": "^4.1.0",
-        "miller-rabin": "^4.0.0",
-        "randombytes": "^2.0.0"
-      }
-    },
-    "dir-glob": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
-      "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
-      "dev": true,
-      "requires": {
-        "path-type": "^4.0.0"
-      },
-      "dependencies": {
-        "path-type": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
-          "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
-          "dev": true
-        }
-      }
-    },
-    "discontinuous-range": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz",
-      "integrity": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=",
-      "dev": true
-    },
-    "distributions": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/distributions/-/distributions-1.1.0.tgz",
-      "integrity": "sha512-mufW9T1kRlzLVAaekUhgdfcMgX2r/zYQmJx3sGdUAwe0/JSQWey0XgqiDtfUUqYcr/QWHCnBd2M/v45tS/+YAQ==",
-      "requires": {
-        "mathfn": "^1.0.0"
-      }
-    },
-    "dns-equal": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz",
-      "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=",
-      "dev": true
-    },
-    "dns-packet": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz",
-      "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==",
-      "dev": true,
-      "requires": {
-        "ip": "^1.1.0",
-        "safe-buffer": "^5.0.1"
-      }
-    },
-    "dns-txt": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz",
-      "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=",
-      "dev": true,
-      "requires": {
-        "buffer-indexof": "^1.0.0"
-      }
-    },
-    "doctrine": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
-      "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
-      "dev": true,
-      "requires": {
-        "esutils": "^2.0.2"
-      }
-    },
-    "dom-accessibility-api": {
-      "version": "0.5.4",
-      "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz",
-      "integrity": "sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==",
-      "dev": true
-    },
-    "dom-align": {
-      "version": "1.12.0",
-      "resolved": "https://registry.npmjs.org/dom-align/-/dom-align-1.12.0.tgz",
-      "integrity": "sha512-YkoezQuhp3SLFGdOlr5xkqZ640iXrnHAwVYcDg8ZKRUtO7mSzSC2BA5V0VuyAwPSJA4CLIc6EDDJh4bEsD2+zA=="
-    },
-    "dom-converter": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
-      "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
-      "dev": true,
-      "requires": {
-        "utila": "~0.4"
-      }
-    },
-    "dom-helpers": {
-      "version": "3.4.0",
-      "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
-      "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
-      "requires": {
-        "@babel/runtime": "^7.1.2"
-      }
-    },
-    "dom-serializer": {
-      "version": "0.1.0",
-      "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz",
-      "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=",
-      "dev": true,
-      "requires": {
-        "domelementtype": "~1.1.1",
-        "entities": "~1.1.1"
-      },
-      "dependencies": {
-        "domelementtype": {
-          "version": "1.1.3",
-          "resolved": "http://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz",
-          "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=",
-          "dev": true
-        }
-      }
-    },
-    "dom-to-image": {
-      "version": "2.6.0",
-      "resolved": "https://registry.npmjs.org/dom-to-image/-/dom-to-image-2.6.0.tgz",
-      "integrity": "sha1-ilA2CAiMh7HCL5A0rgMuGJiVWGc="
-    },
-    "dom-walk": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz",
-      "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg="
-    },
-    "domain-browser": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
-      "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
-      "dev": true
-    },
-    "domelementtype": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
-      "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==",
-      "dev": true
-    },
-    "domexception": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
-      "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
-      "dev": true,
-      "requires": {
-        "webidl-conversions": "^5.0.0"
-      },
-      "dependencies": {
-        "webidl-conversions": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
-          "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
-          "dev": true
-        }
-      }
-    },
-    "domhandler": {
-      "version": "2.4.2",
-      "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
-      "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
-      "dev": true,
-      "requires": {
-        "domelementtype": "1"
-      }
-    },
-    "dompurify": {
-      "version": "2.2.6",
-      "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.2.6.tgz",
-      "integrity": "sha512-7b7ZArhhH0SP6W2R9cqK6RjaU82FZ2UPM7RO8qN1b1wyvC/NY1FNWcX1Pu00fFOAnzEORtwXe4bPaClg6pUybQ=="
-    },
-    "domutils": {
-      "version": "1.5.1",
-      "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
-      "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
-      "dev": true,
-      "requires": {
-        "dom-serializer": "0",
-        "domelementtype": "1"
-      }
-    },
-    "dot-case": {
-      "version": "3.0.3",
-      "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.3.tgz",
-      "integrity": "sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA==",
-      "dev": true,
-      "requires": {
-        "no-case": "^3.0.3",
-        "tslib": "^1.10.0"
-      }
-    },
-    "dotenv": {
-      "version": "6.2.0",
-      "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-6.2.0.tgz",
-      "integrity": "sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==",
-      "dev": true
-    },
-    "dotenv-defaults": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/dotenv-defaults/-/dotenv-defaults-1.1.1.tgz",
-      "integrity": "sha512-6fPRo9o/3MxKvmRZBD3oNFdxODdhJtIy1zcJeUSCs6HCy4tarUpd+G67UTU9tF6OWXeSPqsm4fPAB+2eY9Rt9Q==",
-      "dev": true,
-      "requires": {
-        "dotenv": "^6.2.0"
-      }
-    },
-    "dotenv-expand": {
-      "version": "5.1.0",
-      "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz",
-      "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==",
-      "dev": true
-    },
-    "dotenv-webpack": {
-      "version": "1.8.0",
-      "resolved": "https://registry.npmjs.org/dotenv-webpack/-/dotenv-webpack-1.8.0.tgz",
-      "integrity": "sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg==",
-      "dev": true,
-      "requires": {
-        "dotenv-defaults": "^1.0.2"
-      }
-    },
-    "duplexer": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz",
-      "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=",
-      "dev": true
-    },
-    "duplexer2": {
-      "version": "0.1.4",
-      "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz",
-      "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=",
-      "requires": {
-        "readable-stream": "^2.0.2"
-      }
-    },
-    "duplexify": {
-      "version": "3.6.1",
-      "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.1.tgz",
-      "integrity": "sha512-vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA==",
-      "dev": true,
-      "requires": {
-        "end-of-stream": "^1.0.0",
-        "inherits": "^2.0.1",
-        "readable-stream": "^2.0.0",
-        "stream-shift": "^1.0.0"
-      }
-    },
-    "earcut": {
-      "version": "2.2.2",
-      "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.2.tgz",
-      "integrity": "sha512-eZoZPPJcUHnfRZ0PjLvx2qBordSiO8ofC3vt+qACLM95u+4DovnbYNpQtJh0DNsWj8RnxrQytD4WA8gj5cRIaQ=="
-    },
-    "ecc-jsbn": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
-      "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
-      "dev": true,
-      "requires": {
-        "jsbn": "~0.1.0",
-        "safer-buffer": "^2.1.0"
-      }
-    },
-    "echarts": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.0.1.tgz",
-      "integrity": "sha512-JYn22Dolt2esY2jEzUsw1OxbobuW67oGjIoTjZO3rW89SWkfJ4kbrmC2OW9JjsBrD1rdkmaWBuZZ2HgmThyxJw==",
-      "requires": {
-        "tslib": "2.0.3",
-        "zrender": "5.0.3"
-      },
-      "dependencies": {
-        "tslib": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
-          "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
-        }
-      }
-    },
-    "editorconfig": {
-      "version": "0.15.3",
-      "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz",
-      "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==",
-      "dev": true,
-      "requires": {
-        "commander": "^2.19.0",
-        "lru-cache": "^4.1.5",
-        "semver": "^5.6.0",
-        "sigmund": "^1.0.1"
-      },
-      "dependencies": {
-        "lru-cache": {
-          "version": "4.1.5",
-          "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
-          "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
-          "dev": true,
-          "requires": {
-            "pseudomap": "^1.0.2",
-            "yallist": "^2.1.2"
-          }
-        },
-        "yallist": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
-          "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
-          "dev": true
-        }
-      }
-    },
-    "ee-first": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
-      "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
-      "dev": true
-    },
-    "ejs": {
-      "version": "2.7.4",
-      "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz",
-      "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==",
-      "dev": true
-    },
-    "electron-to-chromium": {
-      "version": "1.3.377",
-      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.377.tgz",
-      "integrity": "sha512-cm2WzMKf/3dW5+hNANKm8GAW6SwIWOqLTJ6GPCD0Bbw1qJ9Wzm9nmx9M+byzSsgw8CdCv5fb/wzLFqVS5h6QrA==",
-      "dev": true
-    },
-    "element-resize-detector": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/element-resize-detector/-/element-resize-detector-1.2.1.tgz",
-      "integrity": "sha512-BdFsPepnQr9fznNPF9nF4vQ457U/ZJXQDSNF1zBe7yaga8v9AdZf3/NElYxFdUh7SitSGt040QygiTo6dtatIw==",
-      "dev": true,
-      "requires": {
-        "batch-processor": "1.0.0"
-      }
-    },
-    "elliptic": {
-      "version": "6.5.3",
-      "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz",
-      "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==",
-      "dev": true,
-      "requires": {
-        "bn.js": "^4.4.0",
-        "brorand": "^1.0.1",
-        "hash.js": "^1.0.0",
-        "hmac-drbg": "^1.0.0",
-        "inherits": "^2.0.1",
-        "minimalistic-assert": "^1.0.0",
-        "minimalistic-crypto-utils": "^1.0.0"
-      }
-    },
-    "emittery": {
-      "version": "0.7.2",
-      "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz",
-      "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==",
-      "dev": true
-    },
-    "emoji-regex": {
-      "version": "8.0.0",
-      "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-      "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-      "dev": true
-    },
-    "emojis-list": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
-      "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k="
-    },
-    "emotion-theming": {
-      "version": "10.0.27",
-      "resolved": "https://registry.npmjs.org/emotion-theming/-/emotion-theming-10.0.27.tgz",
-      "integrity": "sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==",
-      "requires": {
-        "@babel/runtime": "^7.5.5",
-        "@emotion/weak-memoize": "0.2.5",
-        "hoist-non-react-statics": "^3.3.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.4.tgz",
-          "integrity": "sha512-UpTN5yUJr9b4EX2CnGNWIvER7Ab83ibv0pcvvHc4UOdrBI5jb8bj+32cCwPX6xu0mt2daFNjYhoi+X7beH0RSw==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "emotion-ts-plugin": {
-      "version": "0.5.3",
-      "resolved": "https://registry.npmjs.org/emotion-ts-plugin/-/emotion-ts-plugin-0.5.3.tgz",
-      "integrity": "sha512-GK60jpSpQIH3RdOeG9+/cnbdMJLpto8zVYVBMsKaFGL8yK2Pm/ej1Pa3LgkeBxVww/ELQyvTjwCMi5R+ZQkNSA==",
-      "dev": true,
-      "requires": {
-        "@emotion/hash": "^0.7.3",
-        "convert-source-map": "^1.7.0",
-        "find-root": "^1.1.0",
-        "lodash": "^4.17.15",
-        "source-map": "^0.7.3",
-        "tslib": "^1.10.0"
-      },
-      "dependencies": {
-        "@emotion/hash": {
-          "version": "0.7.4",
-          "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.7.4.tgz",
-          "integrity": "sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A==",
-          "dev": true
-        },
-        "convert-source-map": {
-          "version": "1.7.0",
-          "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
-          "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "~5.1.1"
-          }
-        },
-        "source-map": {
-          "version": "0.7.3",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
-          "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
-          "dev": true
-        }
-      }
-    },
-    "encodable": {
-      "version": "0.7.8",
-      "resolved": "https://registry.npmjs.org/encodable/-/encodable-0.7.8.tgz",
-      "integrity": "sha512-rh5isin1c3ZJuultMyJZGBRbGIh8IrVHQuwlEG3lPMGZQ5yQUb2STIbXGGEbSifxT4POnojKjTxhm3ITTSdriw==",
-      "requires": {
-        "@encodable/color": "^1.1.0",
-        "@encodable/format": "^1.0.5",
-        "@types/d3-array": "^2.0.0",
-        "@types/d3-interpolate": "^1.3.1",
-        "@types/d3-scale": "^2.1.1",
-        "@types/d3-time": "^1.0.10",
-        "@types/lodash.get": "^4.4.6",
-        "d3-array": "^2.3.1",
-        "d3-interpolate": "^2.0.1",
-        "d3-scale": "^3.0.1",
-        "d3-time": "^2.0.0",
-        "lodash.get": "^4.4.2",
-        "reselect": "^4.0.0"
-      },
-      "dependencies": {
-        "d3-array": {
-          "version": "2.11.0",
-          "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz",
-          "integrity": "sha512-26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw==",
-          "requires": {
-            "internmap": "^1.0.0"
-          }
-        },
-        "d3-interpolate": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-2.0.1.tgz",
-          "integrity": "sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==",
-          "requires": {
-            "d3-color": "1 - 2"
-          }
-        },
-        "d3-scale": {
-          "version": "3.2.3",
-          "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-3.2.3.tgz",
-          "integrity": "sha512-8E37oWEmEzj57bHcnjPVOBS3n4jqakOeuv1EDdQSiSrYnMCBdMd3nc4HtKk7uia8DUHcY/CGuJ42xxgtEYrX0g==",
-          "requires": {
-            "d3-array": "^2.3.0",
-            "d3-format": "1 - 2",
-            "d3-interpolate": "1.2.0 - 2",
-            "d3-time": "1 - 2",
-            "d3-time-format": "2 - 3"
-          }
-        },
-        "d3-time": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-2.0.0.tgz",
-          "integrity": "sha512-2mvhstTFcMvwStWd9Tj3e6CEqtOivtD8AUiHT8ido/xmzrI9ijrUUihZ6nHuf/vsScRBonagOdj0Vv+SEL5G3Q=="
-        }
-      }
-    },
-    "encodeurl": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
-      "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
-      "dev": true
-    },
-    "encoding": {
-      "version": "0.1.12",
-      "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
-      "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=",
-      "requires": {
-        "iconv-lite": "~0.4.13"
-      }
-    },
-    "end-of-stream": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz",
-      "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==",
-      "dev": true,
-      "requires": {
-        "once": "^1.4.0"
-      }
-    },
-    "endent": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/endent/-/endent-2.0.1.tgz",
-      "integrity": "sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==",
-      "dev": true,
-      "requires": {
-        "dedent": "^0.7.0",
-        "fast-json-parse": "^1.0.3",
-        "objectorarray": "^1.0.4"
-      }
-    },
-    "enhanced-resolve": {
-      "version": "0.9.1",
-      "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz",
-      "integrity": "sha1-TW5omzcl+GCQknzMhs2fFjW4ni4=",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "^4.1.2",
-        "memory-fs": "^0.2.0",
-        "tapable": "^0.1.8"
-      }
-    },
-    "enquirer": {
-      "version": "2.3.6",
-      "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz",
-      "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==",
-      "dev": true,
-      "requires": {
-        "ansi-colors": "^4.1.1"
-      },
-      "dependencies": {
-        "ansi-colors": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
-          "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
-          "dev": true
-        }
-      }
-    },
-    "entities": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
-      "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==",
-      "dev": true
-    },
-    "enzyme": {
-      "version": "3.10.0",
-      "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.10.0.tgz",
-      "integrity": "sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg==",
-      "dev": true,
-      "requires": {
-        "array.prototype.flat": "^1.2.1",
-        "cheerio": "^1.0.0-rc.2",
-        "function.prototype.name": "^1.1.0",
-        "has": "^1.0.3",
-        "html-element-map": "^1.0.0",
-        "is-boolean-object": "^1.0.0",
-        "is-callable": "^1.1.4",
-        "is-number-object": "^1.0.3",
-        "is-regex": "^1.0.4",
-        "is-string": "^1.0.4",
-        "is-subset": "^0.1.1",
-        "lodash.escape": "^4.0.1",
-        "lodash.isequal": "^4.5.0",
-        "object-inspect": "^1.6.0",
-        "object-is": "^1.0.1",
-        "object.assign": "^4.1.0",
-        "object.entries": "^1.0.4",
-        "object.values": "^1.0.4",
-        "raf": "^3.4.0",
-        "rst-selector-parser": "^2.2.3",
-        "string.prototype.trim": "^1.1.2"
-      },
-      "dependencies": {
-        "object-inspect": {
-          "version": "1.6.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz",
-          "integrity": "sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==",
-          "dev": true
-        }
-      }
-    },
-    "enzyme-adapter-react-16": {
-      "version": "1.14.0",
-      "resolved": "https://registry.npmjs.org/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.14.0.tgz",
-      "integrity": "sha512-7PcOF7pb4hJUvjY7oAuPGpq3BmlCig3kxXGi2kFx0YzJHppqX1K8IIV9skT1IirxXlu8W7bneKi+oQ10QRnhcA==",
-      "dev": true,
-      "requires": {
-        "enzyme-adapter-utils": "^1.12.0",
-        "has": "^1.0.3",
-        "object.assign": "^4.1.0",
-        "object.values": "^1.1.0",
-        "prop-types": "^15.7.2",
-        "react-is": "^16.8.6",
-        "react-test-renderer": "^16.0.0-0",
-        "semver": "^5.7.0"
-      },
-      "dependencies": {
-        "react-is": {
-          "version": "16.9.0",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.9.0.tgz",
-          "integrity": "sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==",
-          "dev": true
-        },
-        "semver": {
-          "version": "5.7.1",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
-          "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
-          "dev": true
-        }
-      }
-    },
-    "enzyme-adapter-utils": {
-      "version": "1.12.0",
-      "resolved": "https://registry.npmjs.org/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.0.tgz",
-      "integrity": "sha512-wkZvE0VxcFx/8ZsBw0iAbk3gR1d9hK447ebnSYBf95+r32ezBq+XDSAvRErkc4LZosgH8J7et7H7/7CtUuQfBA==",
-      "dev": true,
-      "requires": {
-        "airbnb-prop-types": "^2.13.2",
-        "function.prototype.name": "^1.1.0",
-        "object.assign": "^4.1.0",
-        "object.fromentries": "^2.0.0",
-        "prop-types": "^15.7.2",
-        "semver": "^5.6.0"
-      }
-    },
-    "enzyme-matchers": {
-      "version": "7.1.2",
-      "resolved": "https://registry.npmjs.org/enzyme-matchers/-/enzyme-matchers-7.1.2.tgz",
-      "integrity": "sha512-03WqAg2XDl7id9rARIO97HQ1JIw9F2heJ3R4meGu/13hx0ULTDEgl0E67MGl2Uq1jq1DyRnJfto1/VSzskdV5A==",
-      "dev": true,
-      "requires": {
-        "circular-json-es6": "^2.0.1",
-        "deep-equal-ident": "^1.1.1"
-      }
-    },
-    "enzyme-to-json": {
-      "version": "3.5.0",
-      "resolved": "https://registry.npmjs.org/enzyme-to-json/-/enzyme-to-json-3.5.0.tgz",
-      "integrity": "sha512-clusXRsiaQhG7+wtyc4t7MU8N3zCOgf4eY9+CeSenYzKlFST4lxerfOvnWd4SNaToKhkuba+w6m242YpQOS7eA==",
-      "dev": true,
-      "requires": {
-        "lodash": "^4.17.15",
-        "react-is": "^16.12.0"
-      },
-      "dependencies": {
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
-          "dev": true
-        }
-      }
-    },
-    "errno": {
-      "version": "0.1.7",
-      "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz",
-      "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==",
-      "dev": true,
-      "requires": {
-        "prr": "~1.0.1"
-      }
-    },
-    "error-ex": {
-      "version": "1.3.2",
-      "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
-      "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
-      "requires": {
-        "is-arrayish": "^0.2.1"
-      }
-    },
-    "es-abstract": {
-      "version": "1.12.0",
-      "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz",
-      "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==",
-      "dev": true,
-      "requires": {
-        "es-to-primitive": "^1.1.1",
-        "function-bind": "^1.1.1",
-        "has": "^1.0.1",
-        "is-callable": "^1.1.3",
-        "is-regex": "^1.0.4"
-      }
-    },
-    "es-array-method-boxes-properly": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz",
-      "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==",
-      "dev": true
-    },
-    "es-get-iterator": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.0.tgz",
-      "integrity": "sha512-UfrmHuWQlNMTs35e1ypnvikg6jCz3SK8v8ImvmDsh36fCVUR1MqoFDiyn0/k52C8NqO3YsO8Oe0azeesNuqSsQ==",
-      "dev": true,
-      "requires": {
-        "es-abstract": "^1.17.4",
-        "has-symbols": "^1.0.1",
-        "is-arguments": "^1.0.4",
-        "is-map": "^2.0.1",
-        "is-set": "^2.0.1",
-        "is-string": "^1.0.5",
-        "isarray": "^2.0.5"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-string": {
-          "version": "1.0.5",
-          "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
-          "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
-          "dev": true
-        },
-        "isarray": {
-          "version": "2.0.5",
-          "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
-          "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
-          "dev": true
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "es-to-primitive": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz",
-      "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==",
-      "dev": true,
-      "requires": {
-        "is-callable": "^1.1.4",
-        "is-date-object": "^1.0.1",
-        "is-symbol": "^1.0.2"
-      }
-    },
-    "es5-ext": {
-      "version": "0.10.53",
-      "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz",
-      "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==",
-      "dev": true,
-      "requires": {
-        "es6-iterator": "~2.0.3",
-        "es6-symbol": "~3.1.3",
-        "next-tick": "~1.0.0"
-      }
-    },
-    "es5-shim": {
-      "version": "4.5.14",
-      "resolved": "https://registry.npmjs.org/es5-shim/-/es5-shim-4.5.14.tgz",
-      "integrity": "sha512-7SwlpL+2JpymWTt8sNLuC2zdhhc+wrfe5cMPI2j0o6WsPdfAiPwmFy2f0AocPB4RQVBOZ9kNTgi5YF7TdhkvEg==",
-      "dev": true
-    },
-    "es6-iterator": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
-      "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
-      "dev": true,
-      "requires": {
-        "d": "1",
-        "es5-ext": "^0.10.35",
-        "es6-symbol": "^3.1.1"
-      }
-    },
-    "es6-shim": {
-      "version": "0.35.5",
-      "resolved": "https://registry.npmjs.org/es6-shim/-/es6-shim-0.35.5.tgz",
-      "integrity": "sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg==",
-      "dev": true
-    },
-    "es6-symbol": {
-      "version": "3.1.3",
-      "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz",
-      "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==",
-      "dev": true,
-      "requires": {
-        "d": "^1.0.1",
-        "ext": "^1.1.2"
-      }
-    },
-    "es6bindall": {
-      "version": "0.0.9",
-      "resolved": "https://registry.npmjs.org/es6bindall/-/es6bindall-0.0.9.tgz",
-      "integrity": "sha1-ceAK+mn43VmsWsiYoNMcl434F9U="
-    },
-    "escalade": {
-      "version": "3.0.2",
-      "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.0.2.tgz",
-      "integrity": "sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==",
-      "dev": true
-    },
-    "escape-html": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
-      "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
-    },
-    "escape-latex": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/escape-latex/-/escape-latex-1.2.0.tgz",
-      "integrity": "sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw=="
-    },
-    "escape-string-regexp": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
-      "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
-    },
-    "escodegen": {
-      "version": "1.9.1",
-      "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.1.tgz",
-      "integrity": "sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q==",
-      "requires": {
-        "esprima": "^3.1.3",
-        "estraverse": "^4.2.0",
-        "esutils": "^2.0.2",
-        "optionator": "^0.8.1",
-        "source-map": "~0.6.1"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "optional": true
-        }
-      }
-    },
-    "eslint": {
-      "version": "7.17.0",
-      "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz",
-      "integrity": "sha512-zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ==",
-      "dev": true,
-      "requires": {
-        "@babel/code-frame": "^7.0.0",
-        "@eslint/eslintrc": "^0.2.2",
-        "ajv": "^6.10.0",
-        "chalk": "^4.0.0",
-        "cross-spawn": "^7.0.2",
-        "debug": "^4.0.1",
-        "doctrine": "^3.0.0",
-        "enquirer": "^2.3.5",
-        "eslint-scope": "^5.1.1",
-        "eslint-utils": "^2.1.0",
-        "eslint-visitor-keys": "^2.0.0",
-        "espree": "^7.3.1",
-        "esquery": "^1.2.0",
-        "esutils": "^2.0.2",
-        "file-entry-cache": "^6.0.0",
-        "functional-red-black-tree": "^1.0.1",
-        "glob-parent": "^5.0.0",
-        "globals": "^12.1.0",
-        "ignore": "^4.0.6",
-        "import-fresh": "^3.0.0",
-        "imurmurhash": "^0.1.4",
-        "is-glob": "^4.0.0",
-        "js-yaml": "^3.13.1",
-        "json-stable-stringify-without-jsonify": "^1.0.1",
-        "levn": "^0.4.1",
-        "lodash": "^4.17.19",
-        "minimatch": "^3.0.4",
-        "natural-compare": "^1.4.0",
-        "optionator": "^0.9.1",
-        "progress": "^2.0.0",
-        "regexpp": "^3.1.0",
-        "semver": "^7.2.1",
-        "strip-ansi": "^6.0.0",
-        "strip-json-comments": "^3.1.0",
-        "table": "^6.0.4",
-        "text-table": "^0.2.0",
-        "v8-compile-cache": "^2.0.3"
-      },
-      "dependencies": {
-        "ajv": {
-          "version": "6.12.6",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
-          "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "cross-spawn": {
-          "version": "7.0.3",
-          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
-          "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
-          "dev": true,
-          "requires": {
-            "path-key": "^3.1.0",
-            "shebang-command": "^2.0.0",
-            "which": "^2.0.1"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "eslint-scope": {
-          "version": "5.1.1",
-          "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
-          "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
-          "dev": true,
-          "requires": {
-            "esrecurse": "^4.3.0",
-            "estraverse": "^4.1.1"
-          }
-        },
-        "eslint-visitor-keys": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz",
-          "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==",
-          "dev": true
-        },
-        "esrecurse": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
-          "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
-          "dev": true,
-          "requires": {
-            "estraverse": "^5.2.0"
-          },
-          "dependencies": {
-            "estraverse": {
-              "version": "5.2.0",
-              "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz",
-              "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==",
-              "dev": true
-            }
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "globals": {
-          "version": "12.4.0",
-          "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
-          "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
-          "dev": true,
-          "requires": {
-            "type-fest": "^0.8.1"
-          }
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "import-fresh": {
-          "version": "3.3.0",
-          "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
-          "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
-          "dev": true,
-          "requires": {
-            "parent-module": "^1.0.0",
-            "resolve-from": "^4.0.0"
-          }
-        },
-        "levn": {
-          "version": "0.4.1",
-          "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
-          "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
-          "dev": true,
-          "requires": {
-            "prelude-ls": "^1.2.1",
-            "type-check": "~0.4.0"
-          }
-        },
-        "lru-cache": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
-          "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-          "dev": true,
-          "requires": {
-            "yallist": "^4.0.0"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "optionator": {
-          "version": "0.9.1",
-          "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
-          "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
-          "dev": true,
-          "requires": {
-            "deep-is": "^0.1.3",
-            "fast-levenshtein": "^2.0.6",
-            "levn": "^0.4.1",
-            "prelude-ls": "^1.2.1",
-            "type-check": "^0.4.0",
-            "word-wrap": "^1.2.3"
-          }
-        },
-        "path-key": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
-          "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
-          "dev": true
-        },
-        "prelude-ls": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
-          "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
-          "dev": true
-        },
-        "semver": {
-          "version": "7.3.4",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz",
-          "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
-          "dev": true,
-          "requires": {
-            "lru-cache": "^6.0.0"
-          }
-        },
-        "shebang-command": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
-          "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
-          "dev": true,
-          "requires": {
-            "shebang-regex": "^3.0.0"
-          }
-        },
-        "shebang-regex": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
-          "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
-          "dev": true
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "type-check": {
-          "version": "0.4.0",
-          "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
-          "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
-          "dev": true,
-          "requires": {
-            "prelude-ls": "^1.2.1"
-          }
-        },
-        "which": {
-          "version": "2.0.2",
-          "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
-          "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
-          "dev": true,
-          "requires": {
-            "isexe": "^2.0.0"
-          }
-        },
-        "yallist": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
-          "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-          "dev": true
-        }
-      }
-    },
-    "eslint-config-airbnb": {
-      "version": "18.2.1",
-      "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-18.2.1.tgz",
-      "integrity": "sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==",
-      "dev": true,
-      "requires": {
-        "eslint-config-airbnb-base": "^14.2.1",
-        "object.assign": "^4.1.2",
-        "object.entries": "^1.1.2"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.18.0-next.1",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
-          "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.2",
-            "is-negative-zero": "^2.0.0",
-            "is-regex": "^1.1.1",
-            "object-inspect": "^1.8.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.1",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.2",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
-          "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz",
-          "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        },
-        "object.assign": {
-          "version": "4.1.2",
-          "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
-          "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "has-symbols": "^1.0.1",
-            "object-keys": "^1.1.1"
-          }
-        },
-        "object.entries": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz",
-          "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "has": "^1.0.3"
-          }
-        }
-      }
-    },
-    "eslint-config-airbnb-base": {
-      "version": "14.2.1",
-      "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz",
-      "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==",
-      "dev": true,
-      "requires": {
-        "confusing-browser-globals": "^1.0.10",
-        "object.assign": "^4.1.2",
-        "object.entries": "^1.1.2"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.18.0-next.1",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
-          "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.2",
-            "is-negative-zero": "^2.0.0",
-            "is-regex": "^1.1.1",
-            "object-inspect": "^1.8.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.1",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.2",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
-          "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz",
-          "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        },
-        "object.assign": {
-          "version": "4.1.2",
-          "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
-          "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "has-symbols": "^1.0.1",
-            "object-keys": "^1.1.1"
-          }
-        },
-        "object.entries": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz",
-          "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "has": "^1.0.3"
-          }
-        }
-      }
-    },
-    "eslint-config-prettier": {
-      "version": "7.1.0",
-      "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-7.1.0.tgz",
-      "integrity": "sha512-9sm5/PxaFG7qNJvJzTROMM1Bk1ozXVTKI0buKOyb0Bsr1hrwi0H/TzxF/COtf1uxikIK8SwhX7K6zg78jAzbeA==",
-      "dev": true
-    },
-    "eslint-import-resolver-node": {
-      "version": "0.3.4",
-      "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz",
-      "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==",
-      "dev": true,
-      "requires": {
-        "debug": "^2.6.9",
-        "resolve": "^1.13.1"
-      },
-      "dependencies": {
-        "resolve": {
-          "version": "1.19.0",
-          "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
-          "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
-          "dev": true,
-          "requires": {
-            "is-core-module": "^2.1.0",
-            "path-parse": "^1.0.6"
-          }
-        }
-      }
-    },
-    "eslint-import-resolver-typescript": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.3.0.tgz",
-      "integrity": "sha512-MHSXvmj5e0SGOOBhBbt7C+fWj1bJbtSYFAD85Xeg8nvUtuooTod2HQb8bfhE9f5QyyNxEfgzqOYFCvmdDIcCuw==",
-      "dev": true,
-      "requires": {
-        "debug": "^4.1.1",
-        "glob": "^7.1.6",
-        "is-glob": "^4.0.1",
-        "resolve": "^1.17.0",
-        "tsconfig-paths": "^3.9.0"
-      },
-      "dependencies": {
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "glob": {
-          "version": "7.1.6",
-          "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
-          "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
-          "dev": true,
-          "requires": {
-            "fs.realpath": "^1.0.0",
-            "inflight": "^1.0.4",
-            "inherits": "2",
-            "minimatch": "^3.0.4",
-            "once": "^1.3.0",
-            "path-is-absolute": "^1.0.0"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "resolve": {
-          "version": "1.17.0",
-          "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz",
-          "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==",
-          "dev": true,
-          "requires": {
-            "path-parse": "^1.0.6"
-          }
-        }
-      }
-    },
-    "eslint-import-resolver-webpack": {
-      "version": "0.13.0",
-      "resolved": "https://registry.npmjs.org/eslint-import-resolver-webpack/-/eslint-import-resolver-webpack-0.13.0.tgz",
-      "integrity": "sha512-hZWGcmjaJZK/WSCYGI/y4+FMGQZT+cwW/1E/P4rDwFj2PbanlQHISViw4ccDJ+2wxAqjgwBfxwy3seABbVKDEw==",
-      "dev": true,
-      "requires": {
-        "array-find": "^1.0.0",
-        "debug": "^2.6.9",
-        "enhanced-resolve": "^0.9.1",
-        "find-root": "^1.1.0",
-        "has": "^1.0.3",
-        "interpret": "^1.2.0",
-        "lodash": "^4.17.15",
-        "node-libs-browser": "^1.0.0 || ^2.0.0",
-        "resolve": "^1.13.1",
-        "semver": "^5.7.1"
-      },
-      "dependencies": {
-        "interpret": {
-          "version": "1.4.0",
-          "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
-          "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==",
-          "dev": true
-        },
-        "resolve": {
-          "version": "1.19.0",
-          "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
-          "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
-          "dev": true,
-          "requires": {
-            "is-core-module": "^2.1.0",
-            "path-parse": "^1.0.6"
-          }
-        },
-        "semver": {
-          "version": "5.7.1",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
-          "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
-          "dev": true
-        }
-      }
-    },
-    "eslint-module-utils": {
-      "version": "2.6.0",
-      "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz",
-      "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==",
-      "dev": true,
-      "requires": {
-        "debug": "^2.6.9",
-        "pkg-dir": "^2.0.0"
-      },
-      "dependencies": {
-        "pkg-dir": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
-          "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
-          "dev": true,
-          "requires": {
-            "find-up": "^2.1.0"
-          }
-        }
-      }
-    },
-    "eslint-plugin-cypress": {
-      "version": "2.11.2",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.11.2.tgz",
-      "integrity": "sha512-1SergF1sGbVhsf7MYfOLiBhdOg6wqyeV9pXUAIDIffYTGMN3dTBQS9nFAzhLsHhO+Bn0GaVM1Ecm71XUidQ7VA==",
-      "dev": true,
-      "requires": {
-        "globals": "^11.12.0"
-      }
-    },
-    "eslint-plugin-import": {
-      "version": "2.22.1",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz",
-      "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==",
-      "dev": true,
-      "requires": {
-        "array-includes": "^3.1.1",
-        "array.prototype.flat": "^1.2.3",
-        "contains-path": "^0.1.0",
-        "debug": "^2.6.9",
-        "doctrine": "1.5.0",
-        "eslint-import-resolver-node": "^0.3.4",
-        "eslint-module-utils": "^2.6.0",
-        "has": "^1.0.3",
-        "minimatch": "^3.0.4",
-        "object.values": "^1.1.1",
-        "read-pkg-up": "^2.0.0",
-        "resolve": "^1.17.0",
-        "tsconfig-paths": "^3.9.0"
-      },
-      "dependencies": {
-        "array-includes": {
-          "version": "3.1.2",
-          "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.2.tgz",
-          "integrity": "sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "get-intrinsic": "^1.0.1",
-            "is-string": "^1.0.5"
-          }
-        },
-        "array.prototype.flat": {
-          "version": "1.2.4",
-          "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz",
-          "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1"
-          }
-        },
-        "doctrine": {
-          "version": "1.5.0",
-          "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
-          "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
-          "dev": true,
-          "requires": {
-            "esutils": "^2.0.2",
-            "isarray": "^1.0.0"
-          }
-        },
-        "es-abstract": {
-          "version": "1.18.0-next.1",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
-          "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.2",
-            "is-negative-zero": "^2.0.0",
-            "is-regex": "^1.1.1",
-            "object-inspect": "^1.8.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.1",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.2",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
-          "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-string": {
-          "version": "1.0.5",
-          "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
-          "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
-          "dev": true
-        },
-        "object-inspect": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz",
-          "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        },
-        "object.assign": {
-          "version": "4.1.2",
-          "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
-          "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "has-symbols": "^1.0.1",
-            "object-keys": "^1.1.1"
-          }
-        },
-        "object.values": {
-          "version": "1.1.2",
-          "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz",
-          "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "has": "^1.0.3"
-          }
-        },
-        "path-type": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
-          "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
-          "dev": true,
-          "requires": {
-            "pify": "^2.0.0"
-          }
-        },
-        "read-pkg": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
-          "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
-          "dev": true,
-          "requires": {
-            "load-json-file": "^2.0.0",
-            "normalize-package-data": "^2.3.2",
-            "path-type": "^2.0.0"
-          }
-        },
-        "read-pkg-up": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
-          "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
-          "dev": true,
-          "requires": {
-            "find-up": "^2.0.0",
-            "read-pkg": "^2.0.0"
-          }
-        },
-        "resolve": {
-          "version": "1.19.0",
-          "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
-          "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
-          "dev": true,
-          "requires": {
-            "is-core-module": "^2.1.0",
-            "path-parse": "^1.0.6"
-          }
-        }
-      }
-    },
-    "eslint-plugin-jest": {
-      "version": "24.1.3",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.1.3.tgz",
-      "integrity": "sha512-dNGGjzuEzCE3d5EPZQ/QGtmlMotqnYWD/QpCZ1UuZlrMAdhG5rldh0N0haCvhGnUkSeuORS5VNROwF9Hrgn3Lg==",
-      "dev": true,
-      "requires": {
-        "@typescript-eslint/experimental-utils": "^4.0.1"
-      }
-    },
-    "eslint-plugin-jest-dom": {
-      "version": "3.6.5",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-jest-dom/-/eslint-plugin-jest-dom-3.6.5.tgz",
-      "integrity": "sha512-iaJ5aSQghp9u2ciLAseWIVu7X5tW+WwNJwMBDToK4GBfwGXXQJDLt5IBNtm6fHvC3FRzCGwvyNMIG1g5gF+icQ==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.9.6",
-        "@testing-library/dom": "^7.28.1",
-        "requireindex": "^1.2.0"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
-          "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.12.11",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
-          "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          },
-          "dependencies": {
-            "chalk": {
-              "version": "2.4.2",
-              "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-              "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-              "dev": true,
-              "requires": {
-                "ansi-styles": "^3.2.1",
-                "escape-string-regexp": "^1.0.5",
-                "supports-color": "^5.3.0"
-              }
-            }
-          }
-        },
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@testing-library/dom": {
-          "version": "7.29.2",
-          "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.29.2.tgz",
-          "integrity": "sha512-CBMELfyY1jKdtLcSRmEnZWRzRkCRVSNPTzhzrn8wY8OnzUo7Pe/W+HgLzt4TDnWIPYeusHBodf9wUjJF48kPmA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/runtime": "^7.12.5",
-            "@types/aria-query": "^4.2.0",
-            "aria-query": "^4.2.2",
-            "chalk": "^4.1.0",
-            "dom-accessibility-api": "^0.5.4",
-            "lz-string": "^1.4.4",
-            "pretty-format": "^26.6.2"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.12",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.12.tgz",
-          "integrity": "sha512-f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          },
-          "dependencies": {
-            "ansi-styles": {
-              "version": "4.3.0",
-              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-              "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-              "dev": true,
-              "requires": {
-                "color-convert": "^2.0.1"
-              }
-            },
-            "color-convert": {
-              "version": "2.0.1",
-              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-              "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-              "dev": true,
-              "requires": {
-                "color-name": "~1.1.4"
-              }
-            },
-            "has-flag": {
-              "version": "4.0.0",
-              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-              "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-              "dev": true
-            },
-            "supports-color": {
-              "version": "7.2.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-              "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^4.0.0"
-              }
-            }
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          },
-          "dependencies": {
-            "ansi-styles": {
-              "version": "4.3.0",
-              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-              "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-              "dev": true,
-              "requires": {
-                "color-convert": "^2.0.1"
-              }
-            },
-            "color-convert": {
-              "version": "2.0.1",
-              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-              "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-              "dev": true,
-              "requires": {
-                "color-name": "~1.1.4"
-              }
-            }
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "eslint-plugin-jsx-a11y": {
-      "version": "6.4.1",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz",
-      "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.11.2",
-        "aria-query": "^4.2.2",
-        "array-includes": "^3.1.1",
-        "ast-types-flow": "^0.0.7",
-        "axe-core": "^4.0.2",
-        "axobject-query": "^2.2.0",
-        "damerau-levenshtein": "^1.0.6",
-        "emoji-regex": "^9.0.0",
-        "has": "^1.0.3",
-        "jsx-ast-utils": "^3.1.0",
-        "language-tags": "^1.0.5"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "array-includes": {
-          "version": "3.1.2",
-          "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.2.tgz",
-          "integrity": "sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "get-intrinsic": "^1.0.1",
-            "is-string": "^1.0.5"
-          }
-        },
-        "emoji-regex": {
-          "version": "9.2.0",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.0.tgz",
-          "integrity": "sha512-DNc3KFPK18bPdElMJnf/Pkv5TXhxFU3YFDEuGLDRtPmV4rkmCjBkCSEp22u6rBHdSN9Vlp/GK7k98prmE1Jgug==",
-          "dev": true
-        },
-        "es-abstract": {
-          "version": "1.18.0-next.1",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
-          "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.2",
-            "is-negative-zero": "^2.0.0",
-            "is-regex": "^1.1.1",
-            "object-inspect": "^1.8.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.1",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.2",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
-          "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-string": {
-          "version": "1.0.5",
-          "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
-          "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
-          "dev": true
-        },
-        "object-inspect": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz",
-          "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        },
-        "object.assign": {
-          "version": "4.1.2",
-          "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
-          "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "has-symbols": "^1.0.1",
-            "object-keys": "^1.1.1"
-          }
-        }
-      }
-    },
-    "eslint-plugin-no-only-tests": {
-      "version": "2.4.0",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-no-only-tests/-/eslint-plugin-no-only-tests-2.4.0.tgz",
-      "integrity": "sha512-azP9PwQYfGtXJjW273nIxQH9Ygr+5/UyeW2wEjYoDtVYPI+WPKwbj0+qcAKYUXFZLRumq4HKkFaoDBAwBoXImQ==",
-      "dev": true
-    },
-    "eslint-plugin-prettier": {
-      "version": "3.3.1",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz",
-      "integrity": "sha512-Rq3jkcFY8RYeQLgk2cCwuc0P7SEFwDravPhsJZOQ5N4YI4DSg50NyqJ/9gdZHzQlHf8MvafSesbNJCcP/FF6pQ==",
-      "dev": true,
-      "requires": {
-        "prettier-linter-helpers": "^1.0.0"
-      }
-    },
-    "eslint-plugin-react": {
-      "version": "7.22.0",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz",
-      "integrity": "sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==",
-      "dev": true,
-      "requires": {
-        "array-includes": "^3.1.1",
-        "array.prototype.flatmap": "^1.2.3",
-        "doctrine": "^2.1.0",
-        "has": "^1.0.3",
-        "jsx-ast-utils": "^2.4.1 || ^3.0.0",
-        "object.entries": "^1.1.2",
-        "object.fromentries": "^2.0.2",
-        "object.values": "^1.1.1",
-        "prop-types": "^15.7.2",
-        "resolve": "^1.18.1",
-        "string.prototype.matchall": "^4.0.2"
-      },
-      "dependencies": {
-        "array-includes": {
-          "version": "3.1.2",
-          "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.2.tgz",
-          "integrity": "sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "get-intrinsic": "^1.0.1",
-            "is-string": "^1.0.5"
-          }
-        },
-        "doctrine": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
-          "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
-          "dev": true,
-          "requires": {
-            "esutils": "^2.0.2"
-          }
-        },
-        "es-abstract": {
-          "version": "1.18.0-next.1",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
-          "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.2",
-            "is-negative-zero": "^2.0.0",
-            "is-regex": "^1.1.1",
-            "object-inspect": "^1.8.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.1",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.2",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
-          "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-string": {
-          "version": "1.0.5",
-          "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
-          "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
-          "dev": true
-        },
-        "object-inspect": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz",
-          "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        },
-        "object.assign": {
-          "version": "4.1.2",
-          "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
-          "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "has-symbols": "^1.0.1",
-            "object-keys": "^1.1.1"
-          }
-        },
-        "object.entries": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz",
-          "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "has": "^1.0.3"
-          }
-        },
-        "object.fromentries": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.3.tgz",
-          "integrity": "sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "has": "^1.0.3"
-          }
-        },
-        "object.values": {
-          "version": "1.1.2",
-          "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz",
-          "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "has": "^1.0.3"
-          }
-        },
-        "resolve": {
-          "version": "1.19.0",
-          "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
-          "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
-          "dev": true,
-          "requires": {
-            "is-core-module": "^2.1.0",
-            "path-parse": "^1.0.6"
-          }
-        }
-      }
-    },
-    "eslint-plugin-react-hooks": {
-      "version": "4.2.0",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz",
-      "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==",
-      "dev": true
-    },
-    "eslint-plugin-testing-library": {
-      "version": "3.10.1",
-      "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.1.tgz",
-      "integrity": "sha512-nQIFe2muIFv2oR2zIuXE4vTbcFNx8hZKRzgHZqJg8rfopIWwoTwtlbCCNELT/jXzVe1uZF68ALGYoDXjLczKiQ==",
-      "dev": true,
-      "requires": {
-        "@typescript-eslint/experimental-utils": "^3.10.1"
-      },
-      "dependencies": {
-        "@typescript-eslint/experimental-utils": {
-          "version": "3.10.1",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz",
-          "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==",
-          "dev": true,
-          "requires": {
-            "@types/json-schema": "^7.0.3",
-            "@typescript-eslint/types": "3.10.1",
-            "@typescript-eslint/typescript-estree": "3.10.1",
-            "eslint-scope": "^5.0.0",
-            "eslint-utils": "^2.0.0"
-          }
-        },
-        "@typescript-eslint/types": {
-          "version": "3.10.1",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz",
-          "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==",
-          "dev": true
-        },
-        "@typescript-eslint/typescript-estree": {
-          "version": "3.10.1",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz",
-          "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==",
-          "dev": true,
-          "requires": {
-            "@typescript-eslint/types": "3.10.1",
-            "@typescript-eslint/visitor-keys": "3.10.1",
-            "debug": "^4.1.1",
-            "glob": "^7.1.6",
-            "is-glob": "^4.0.1",
-            "lodash": "^4.17.15",
-            "semver": "^7.3.2",
-            "tsutils": "^3.17.1"
-          }
-        },
-        "@typescript-eslint/visitor-keys": {
-          "version": "3.10.1",
-          "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz",
-          "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==",
-          "dev": true,
-          "requires": {
-            "eslint-visitor-keys": "^1.1.0"
-          }
-        },
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "eslint-visitor-keys": {
-          "version": "1.3.0",
-          "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
-          "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
-          "dev": true
-        },
-        "glob": {
-          "version": "7.1.6",
-          "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
-          "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
-          "dev": true,
-          "requires": {
-            "fs.realpath": "^1.0.0",
-            "inflight": "^1.0.4",
-            "inherits": "2",
-            "minimatch": "^3.0.4",
-            "once": "^1.3.0",
-            "path-is-absolute": "^1.0.0"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "semver": {
-          "version": "7.3.2",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
-          "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
-          "dev": true
-        }
-      }
-    },
-    "eslint-scope": {
-      "version": "5.0.0",
-      "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.0.0.tgz",
-      "integrity": "sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==",
-      "dev": true,
-      "requires": {
-        "esrecurse": "^4.1.0",
-        "estraverse": "^4.1.1"
-      }
-    },
-    "eslint-utils": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
-      "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
-      "dev": true,
-      "requires": {
-        "eslint-visitor-keys": "^1.1.0"
-      },
-      "dependencies": {
-        "eslint-visitor-keys": {
-          "version": "1.3.0",
-          "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
-          "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
-          "dev": true
-        }
-      }
-    },
-    "eslint-visitor-keys": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz",
-      "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==",
-      "dev": true
-    },
-    "esm": {
-      "version": "3.2.25",
-      "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz",
-      "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA=="
-    },
-    "espree": {
-      "version": "7.3.1",
-      "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz",
-      "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==",
-      "dev": true,
-      "requires": {
-        "acorn": "^7.4.0",
-        "acorn-jsx": "^5.3.1",
-        "eslint-visitor-keys": "^1.3.0"
-      },
-      "dependencies": {
-        "acorn": {
-          "version": "7.4.1",
-          "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
-          "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
-          "dev": true
-        },
-        "eslint-visitor-keys": {
-          "version": "1.3.0",
-          "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
-          "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
-          "dev": true
-        }
-      }
-    },
-    "esprima": {
-      "version": "3.1.3",
-      "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz",
-      "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM="
-    },
-    "esquery": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz",
-      "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==",
-      "dev": true,
-      "requires": {
-        "estraverse": "^5.1.0"
-      },
-      "dependencies": {
-        "estraverse": {
-          "version": "5.2.0",
-          "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz",
-          "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==",
-          "dev": true
-        }
-      }
-    },
-    "esrecurse": {
-      "version": "4.2.1",
-      "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
-      "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
-      "dev": true,
-      "requires": {
-        "estraverse": "^4.1.0"
-      }
-    },
-    "estraverse": {
-      "version": "4.2.0",
-      "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
-      "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM="
-    },
-    "esutils": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
-      "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs="
-    },
-    "etag": {
-      "version": "1.8.1",
-      "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
-      "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
-      "dev": true
-    },
-    "eventemitter3": {
-      "version": "4.0.7",
-      "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
-      "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
-      "dev": true
-    },
-    "events": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz",
-      "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==",
-      "dev": true
-    },
-    "eventsource": {
-      "version": "1.0.7",
-      "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz",
-      "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==",
-      "dev": true,
-      "requires": {
-        "original": "^1.0.0"
-      }
-    },
-    "evp_bytestokey": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
-      "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
-      "dev": true,
-      "requires": {
-        "md5.js": "^1.3.4",
-        "safe-buffer": "^5.1.1"
-      }
-    },
-    "exec-sh": {
-      "version": "0.3.4",
-      "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz",
-      "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==",
-      "dev": true
-    },
-    "execa": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
-      "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
-      "dev": true,
-      "requires": {
-        "cross-spawn": "^6.0.0",
-        "get-stream": "^4.0.0",
-        "is-stream": "^1.1.0",
-        "npm-run-path": "^2.0.0",
-        "p-finally": "^1.0.0",
-        "signal-exit": "^3.0.0",
-        "strip-eof": "^1.0.0"
-      }
-    },
-    "exit": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
-      "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
-      "dev": true
-    },
-    "expand-brackets": {
-      "version": "2.1.4",
-      "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
-      "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
-      "dev": true,
-      "requires": {
-        "debug": "^2.3.3",
-        "define-property": "^0.2.5",
-        "extend-shallow": "^2.0.1",
-        "posix-character-classes": "^0.1.0",
-        "regex-not": "^1.0.0",
-        "snapdragon": "^0.8.1",
-        "to-regex": "^3.0.1"
-      },
-      "dependencies": {
-        "define-property": {
-          "version": "0.2.5",
-          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
-          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
-          "dev": true,
-          "requires": {
-            "is-descriptor": "^0.1.0"
-          }
-        }
-      }
-    },
-    "expand-tilde": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
-      "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
-      "dev": true,
-      "requires": {
-        "homedir-polyfill": "^1.0.1"
-      }
-    },
-    "expect": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz",
-      "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.6.2",
-        "ansi-styles": "^4.0.0",
-        "jest-get-type": "^26.3.0",
-        "jest-matcher-utils": "^26.6.2",
-        "jest-message-util": "^26.6.2",
-        "jest-regex-util": "^26.0.0"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "jest-get-type": {
-          "version": "26.3.0",
-          "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
-          "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "exports-loader": {
-      "version": "0.7.0",
-      "resolved": "https://registry.npmjs.org/exports-loader/-/exports-loader-0.7.0.tgz",
-      "integrity": "sha512-RKwCrO4A6IiKm0pG3c9V46JxIHcDplwwGJn6+JJ1RcVnh/WSGJa0xkmk5cRVtgOPzCAtTMGj2F7nluh9L0vpSA==",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^1.1.0",
-        "source-map": "0.5.0"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.5.0",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.0.tgz",
-          "integrity": "sha1-D+llA6yGpa213mP05BKuSHLNvoY=",
-          "dev": true
-        }
-      }
-    },
-    "express": {
-      "version": "4.16.4",
-      "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz",
-      "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==",
-      "dev": true,
-      "requires": {
-        "accepts": "~1.3.5",
-        "array-flatten": "1.1.1",
-        "body-parser": "1.18.3",
-        "content-disposition": "0.5.2",
-        "content-type": "~1.0.4",
-        "cookie": "0.3.1",
-        "cookie-signature": "1.0.6",
-        "debug": "2.6.9",
-        "depd": "~1.1.2",
-        "encodeurl": "~1.0.2",
-        "escape-html": "~1.0.3",
-        "etag": "~1.8.1",
-        "finalhandler": "1.1.1",
-        "fresh": "0.5.2",
-        "merge-descriptors": "1.0.1",
-        "methods": "~1.1.2",
-        "on-finished": "~2.3.0",
-        "parseurl": "~1.3.2",
-        "path-to-regexp": "0.1.7",
-        "proxy-addr": "~2.0.4",
-        "qs": "6.5.2",
-        "range-parser": "~1.2.0",
-        "safe-buffer": "5.1.2",
-        "send": "0.16.2",
-        "serve-static": "1.13.2",
-        "setprototypeof": "1.1.0",
-        "statuses": "~1.4.0",
-        "type-is": "~1.6.16",
-        "utils-merge": "1.0.1",
-        "vary": "~1.1.2"
-      },
-      "dependencies": {
-        "array-flatten": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
-          "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
-          "dev": true
-        },
-        "path-to-regexp": {
-          "version": "0.1.7",
-          "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
-          "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=",
-          "dev": true
-        }
-      }
-    },
-    "ext": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz",
-      "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==",
-      "dev": true,
-      "requires": {
-        "type": "^2.0.0"
-      },
-      "dependencies": {
-        "type": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz",
-          "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==",
-          "dev": true
-        }
-      }
-    },
-    "extend": {
-      "version": "3.0.2",
-      "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
-      "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
-    },
-    "extend-shallow": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
-      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
-      "dev": true,
-      "requires": {
-        "is-extendable": "^0.1.0"
-      }
-    },
-    "external-editor": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
-      "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
-      "dev": true,
-      "requires": {
-        "chardet": "^0.7.0",
-        "iconv-lite": "^0.4.24",
-        "tmp": "^0.0.33"
-      }
-    },
-    "extglob": {
-      "version": "2.0.4",
-      "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
-      "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
-      "dev": true,
-      "requires": {
-        "array-unique": "^0.3.2",
-        "define-property": "^1.0.0",
-        "expand-brackets": "^2.1.4",
-        "extend-shallow": "^2.0.1",
-        "fragment-cache": "^0.2.1",
-        "regex-not": "^1.0.0",
-        "snapdragon": "^0.8.1",
-        "to-regex": "^3.0.1"
-      },
-      "dependencies": {
-        "define-property": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
-          "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
-          "dev": true,
-          "requires": {
-            "is-descriptor": "^1.0.0"
-          }
-        },
-        "is-accessor-descriptor": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
-          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
-          "dev": true,
-          "requires": {
-            "kind-of": "^6.0.0"
-          }
-        },
-        "is-data-descriptor": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
-          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
-          "dev": true,
-          "requires": {
-            "kind-of": "^6.0.0"
-          }
-        },
-        "is-descriptor": {
-          "version": "1.0.2",
-          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
-          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
-          "dev": true,
-          "requires": {
-            "is-accessor-descriptor": "^1.0.0",
-            "is-data-descriptor": "^1.0.0",
-            "kind-of": "^6.0.2"
-          }
-        },
-        "kind-of": {
-          "version": "6.0.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
-          "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
-          "dev": true
-        }
-      }
-    },
-    "extsprintf": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
-      "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
-      "dev": true
-    },
-    "falafel": {
-      "version": "2.2.4",
-      "resolved": "https://registry.npmjs.org/falafel/-/falafel-2.2.4.tgz",
-      "integrity": "sha512-0HXjo8XASWRmsS0X1EkhwEMZaD3Qvp7FfURwjLKjG1ghfRm/MGZl2r4cWUTv41KdNghTw4OUMmVtdGQp3+H+uQ==",
-      "requires": {
-        "acorn": "^7.1.1",
-        "foreach": "^2.0.5",
-        "isarray": "^2.0.1",
-        "object-keys": "^1.0.6"
-      },
-      "dependencies": {
-        "isarray": {
-          "version": "2.0.5",
-          "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
-          "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
-        }
-      }
-    },
-    "fast-deep-equal": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
-      "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=",
-      "dev": true
-    },
-    "fast-diff": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz",
-      "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
-      "dev": true
-    },
-    "fast-glob": {
-      "version": "2.2.7",
-      "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz",
-      "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==",
-      "dev": true,
-      "requires": {
-        "@mrmlnc/readdir-enhanced": "^2.2.1",
-        "@nodelib/fs.stat": "^1.1.2",
-        "glob-parent": "^3.1.0",
-        "is-glob": "^4.0.0",
-        "merge2": "^1.2.3",
-        "micromatch": "^3.1.10"
-      },
-      "dependencies": {
-        "glob-parent": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
-          "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
-          "dev": true,
-          "requires": {
-            "is-glob": "^3.1.0",
-            "path-dirname": "^1.0.0"
-          },
-          "dependencies": {
-            "is-glob": {
-              "version": "3.1.0",
-              "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
-              "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
-              "dev": true,
-              "requires": {
-                "is-extglob": "^2.1.0"
-              }
-            }
-          }
-        }
-      }
-    },
-    "fast-json-parse": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz",
-      "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==",
-      "dev": true
-    },
-    "fast-json-stable-stringify": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
-      "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I="
-    },
-    "fast-levenshtein": {
-      "version": "2.0.6",
-      "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
-      "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
-    },
-    "fast-memoize": {
-      "version": "2.5.2",
-      "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz",
-      "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw=="
-    },
-    "fast-safe-stringify": {
-      "version": "2.0.7",
-      "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz",
-      "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="
-    },
-    "fastparse": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
-      "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==",
-      "dev": true
-    },
-    "fastq": {
-      "version": "1.8.0",
-      "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz",
-      "integrity": "sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==",
-      "dev": true,
-      "requires": {
-        "reusify": "^1.0.4"
-      }
-    },
-    "fault": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.2.tgz",
-      "integrity": "sha512-o2eo/X2syzzERAtN5LcGbiVQ0WwZSlN3qLtadwAz3X8Bu+XWD16dja/KMsjZLiQr+BLGPDnHGkc4yUJf1Xpkpw==",
-      "requires": {
-        "format": "^0.2.2"
-      }
-    },
-    "faye-websocket": {
-      "version": "0.10.0",
-      "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz",
-      "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=",
-      "dev": true,
-      "requires": {
-        "websocket-driver": ">=0.5.1"
-      }
-    },
-    "fb-watchman": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz",
-      "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==",
-      "dev": true,
-      "requires": {
-        "bser": "2.1.1"
-      }
-    },
-    "fbjs": {
-      "version": "0.8.17",
-      "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz",
-      "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=",
-      "requires": {
-        "core-js": "^1.0.0",
-        "isomorphic-fetch": "^2.1.1",
-        "loose-envify": "^1.0.0",
-        "object-assign": "^4.1.0",
-        "promise": "^7.1.1",
-        "setimmediate": "^1.0.5",
-        "ua-parser-js": "^0.7.18"
-      },
-      "dependencies": {
-        "core-js": {
-          "version": "1.2.7",
-          "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
-          "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY="
-        }
-      }
-    },
-    "fetch-mock": {
-      "version": "7.7.3",
-      "resolved": "https://registry.npmjs.org/fetch-mock/-/fetch-mock-7.7.3.tgz",
-      "integrity": "sha512-I4OkK90JFQnjH8/n3HDtWxH/I6D1wrxoAM2ri+nb444jpuH3RTcgvXx2el+G20KO873W727/66T7QhOvFxNHPg==",
-      "dev": true,
-      "requires": {
-        "babel-polyfill": "^6.26.0",
-        "core-js": "^2.6.9",
-        "glob-to-regexp": "^0.4.0",
-        "lodash.isequal": "^4.5.0",
-        "path-to-regexp": "^2.2.1",
-        "whatwg-url": "^6.5.0"
-      },
-      "dependencies": {
-        "core-js": {
-          "version": "2.6.11",
-          "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
-          "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==",
-          "dev": true
-        }
-      }
-    },
-    "fetch-retry": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.0.1.tgz",
-      "integrity": "sha512-EhIeVBkq9T2z1ANDr2kmLujoHOTdLvR9t/nzLSdX4PMIFinLyyZFYX9T6Fb3LrbiHQEhujq1O7ElsqjuqYIsEA=="
-    },
-    "figgy-pudding": {
-      "version": "3.5.1",
-      "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz",
-      "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==",
-      "dev": true
-    },
-    "figures": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
-      "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
-      "dev": true,
-      "requires": {
-        "escape-string-regexp": "^1.0.5"
-      }
-    },
-    "file-entry-cache": {
-      "version": "6.0.0",
-      "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz",
-      "integrity": "sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==",
-      "dev": true,
-      "requires": {
-        "flat-cache": "^3.0.4"
-      }
-    },
-    "file-loader": {
-      "version": "6.0.0",
-      "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.0.0.tgz",
-      "integrity": "sha512-/aMOAYEFXDdjG0wytpTL5YQLfZnnTmLNjn+AIrJ/6HVnTfDqLsVKUUwkDf4I4kgex36BvjuXEn/TX9B/1ESyqQ==",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^2.0.0",
-        "schema-utils": "^2.6.5"
-      },
-      "dependencies": {
-        "ajv": {
-          "version": "6.12.2",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz",
-          "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ajv-keywords": {
-          "version": "3.4.1",
-          "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz",
-          "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==",
-          "dev": true
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "loader-utils": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-          "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^2.1.2"
-          }
-        },
-        "schema-utils": {
-          "version": "2.7.0",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz",
-          "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==",
-          "dev": true,
-          "requires": {
-            "@types/json-schema": "^7.0.4",
-            "ajv": "^6.12.2",
-            "ajv-keywords": "^3.4.1"
-          }
-        }
-      }
-    },
-    "file-system-cache": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-1.0.5.tgz",
-      "integrity": "sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=",
-      "dev": true,
-      "requires": {
-        "bluebird": "^3.3.5",
-        "fs-extra": "^0.30.0",
-        "ramda": "^0.21.0"
-      },
-      "dependencies": {
-        "fs-extra": {
-          "version": "0.30.0",
-          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz",
-          "integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=",
-          "dev": true,
-          "requires": {
-            "graceful-fs": "^4.1.2",
-            "jsonfile": "^2.1.0",
-            "klaw": "^1.0.0",
-            "path-is-absolute": "^1.0.0",
-            "rimraf": "^2.2.8"
-          }
-        },
-        "jsonfile": {
-          "version": "2.4.0",
-          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
-          "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=",
-          "dev": true,
-          "requires": {
-            "graceful-fs": "^4.1.6"
-          }
-        },
-        "ramda": {
-          "version": "0.21.0",
-          "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.21.0.tgz",
-          "integrity": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=",
-          "dev": true
-        }
-      }
-    },
-    "file-uri-to-path": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
-      "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
-      "dev": true,
-      "optional": true
-    },
-    "filelist": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.1.tgz",
-      "integrity": "sha512-8zSK6Nu0DQIC08mUC46sWGXi+q3GGpKydAG36k+JDba6VRpkevvOWUW5a/PhShij4+vHT9M+ghgG7eM+a9JDUQ==",
-      "dev": true,
-      "requires": {
-        "minimatch": "^3.0.4"
-      }
-    },
-    "filesize": {
-      "version": "3.6.1",
-      "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz",
-      "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==",
-      "dev": true
-    },
-    "fill-range": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
-      "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
-      "dev": true,
-      "requires": {
-        "extend-shallow": "^2.0.1",
-        "is-number": "^3.0.0",
-        "repeat-string": "^1.6.1",
-        "to-regex-range": "^2.1.0"
-      }
-    },
-    "finalhandler": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz",
-      "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==",
-      "dev": true,
-      "requires": {
-        "debug": "2.6.9",
-        "encodeurl": "~1.0.2",
-        "escape-html": "~1.0.3",
-        "on-finished": "~2.3.0",
-        "parseurl": "~1.3.2",
-        "statuses": "~1.4.0",
-        "unpipe": "~1.0.0"
-      }
-    },
-    "find-cache-dir": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
-      "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
-      "dev": true,
-      "requires": {
-        "commondir": "^1.0.1",
-        "make-dir": "^2.0.0",
-        "pkg-dir": "^3.0.0"
-      }
-    },
-    "find-root": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
-      "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="
-    },
-    "find-up": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
-      "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
-      "dev": true,
-      "requires": {
-        "locate-path": "^2.0.0"
-      }
-    },
-    "findup-sync": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz",
-      "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==",
-      "dev": true,
-      "requires": {
-        "detect-file": "^1.0.0",
-        "is-glob": "^4.0.0",
-        "micromatch": "^3.0.4",
-        "resolve-dir": "^1.0.1"
-      }
-    },
-    "flat-cache": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
-      "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
-      "dev": true,
-      "requires": {
-        "flatted": "^3.1.0",
-        "rimraf": "^3.0.2"
-      },
-      "dependencies": {
-        "rimraf": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
-          "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
-          "dev": true,
-          "requires": {
-            "glob": "^7.1.3"
-          }
-        }
-      }
-    },
-    "flatted": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz",
-      "integrity": "sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==",
-      "dev": true
-    },
-    "flush-write-stream": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz",
-      "integrity": "sha512-calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==",
-      "dev": true,
-      "requires": {
-        "inherits": "^2.0.1",
-        "readable-stream": "^2.0.4"
-      }
-    },
-    "follow-redirects": {
-      "version": "1.13.0",
-      "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz",
-      "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==",
-      "dev": true
-    },
-    "fontsource-fira-code": {
-      "version": "3.0.5",
-      "resolved": "https://registry.npmjs.org/fontsource-fira-code/-/fontsource-fira-code-3.0.5.tgz",
-      "integrity": "sha512-pxhYUSBdgXYFnGIdO3QQTuemncqdRE3NEoVu94tm+jCx5/sUUGDugOdNdZqSY7Gd8w7Xk98hHbT5zFGgrxDL+A=="
-    },
-    "fontsource-inter": {
-      "version": "3.0.5",
-      "resolved": "https://registry.npmjs.org/fontsource-inter/-/fontsource-inter-3.0.5.tgz",
-      "integrity": "sha512-7AGbrHVjL2IcIz/Lv64IR5g0W+JuGQT/bFFF5nDD1zNOT5Ke8IMIMc+tE4rb5fCVNG2AGt0gtXH3kGLUURKY8w=="
-    },
-    "for-in": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
-      "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
-      "dev": true
-    },
-    "for-own": {
-      "version": "0.1.5",
-      "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz",
-      "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=",
-      "dev": true,
-      "requires": {
-        "for-in": "^1.0.1"
-      }
-    },
-    "foreach": {
-      "version": "2.0.5",
-      "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
-      "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
-    },
-    "forever-agent": {
-      "version": "0.6.1",
-      "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
-      "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
-      "dev": true
-    },
-    "fork-ts-checker-webpack-plugin": {
-      "version": "0.4.15",
-      "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-0.4.15.tgz",
-      "integrity": "sha512-qNYuygh2GxXehBvQZ5rI5YlQFn+7ZV6kmkyD9Sgs33dWl73NZdUOB5aCp8v0EXJn176AhPrZP8YCMT3h01fs+g==",
-      "dev": true,
-      "requires": {
-        "babel-code-frame": "^6.22.0",
-        "chalk": "^2.4.1",
-        "chokidar": "^2.0.4",
-        "lodash": "^4.17.11",
-        "micromatch": "^3.1.10",
-        "minimatch": "^3.0.4",
-        "resolve": "^1.5.0",
-        "tapable": "^1.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.1",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
-          "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "tapable": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.1.tgz",
-          "integrity": "sha512-9I2ydhj8Z9veORCw5PRm4u9uebCn0mcCa6scWoNcbZ6dAtoo2618u9UUzxgmsCOreJpqDDuv61LvwofW7hLcBA==",
-          "dev": true
-        }
-      }
-    },
-    "form-data": {
-      "version": "2.3.3",
-      "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
-      "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
-      "dev": true,
-      "requires": {
-        "asynckit": "^0.4.0",
-        "combined-stream": "^1.0.6",
-        "mime-types": "^2.1.12"
-      }
-    },
-    "format": {
-      "version": "0.2.2",
-      "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz",
-      "integrity": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs="
-    },
-    "forwarded": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
-      "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=",
-      "dev": true
-    },
-    "fragment-cache": {
-      "version": "0.2.1",
-      "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
-      "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
-      "dev": true,
-      "requires": {
-        "map-cache": "^0.2.2"
-      }
-    },
-    "fresh": {
-      "version": "0.5.2",
-      "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
-      "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
-      "dev": true
-    },
-    "from2": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
-      "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
-      "dev": true,
-      "requires": {
-        "inherits": "^2.0.1",
-        "readable-stream": "^2.0.0"
-      }
-    },
-    "fs-extra": {
-      "version": "7.0.1",
-      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
-      "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "^4.1.2",
-        "jsonfile": "^4.0.0",
-        "universalify": "^0.1.0"
-      }
-    },
-    "fs-minipass": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
-      "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
-      "dev": true,
-      "requires": {
-        "minipass": "^3.0.0"
-      }
-    },
-    "fs-readdir-recursive": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz",
-      "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==",
-      "dev": true
-    },
-    "fs-write-stream-atomic": {
-      "version": "1.0.10",
-      "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz",
-      "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "^4.1.2",
-        "iferr": "^0.1.5",
-        "imurmurhash": "^0.1.4",
-        "readable-stream": "1 || 2"
-      }
-    },
-    "fs.realpath": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
-      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
-    },
-    "fsevents": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.2.1.tgz",
-      "integrity": "sha512-bTLYHSeC0UH/EFXS9KqWnXuOl/wHK5Z/d+ghd5AsFMYN7wIGkUCOJyzy88+wJKkZPGON8u4Z9f6U4FdgURE9qA==",
-      "dev": true,
-      "optional": true
-    },
-    "function-bind": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
-      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
-    },
-    "function.prototype.name": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.1.tgz",
-      "integrity": "sha512-e1NzkiJuw6xqVH7YSdiW/qDHebcmMhPNe6w+4ZYYEg0VA+LaLzx37RimbPLuonHhYGFGPx1ME2nSi74JiaCr/Q==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "function-bind": "^1.1.1",
-        "functions-have-names": "^1.1.1",
-        "is-callable": "^1.1.4"
-      }
-    },
-    "functional-red-black-tree": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
-      "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
-      "dev": true
-    },
-    "functions-have-names": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.1.1.tgz",
-      "integrity": "sha512-U0kNHUoxwPNPWOJaMG7Z00d4a/qZVrFtzWJRaK8V9goaVOCXBSQSJpt3MYGNtkScKEBKovxLjnNdC9MlXwo5Pw==",
-      "dev": true
-    },
-    "fuse.js": {
-      "version": "3.3.0",
-      "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-3.3.0.tgz",
-      "integrity": "sha512-ESBRkGLWMuVkapqYCcNO1uqMg5qbCKkgb+VS6wsy17Rix0/cMS9kSOZoYkjH8Ko//pgJ/EEGu0GTjk2mjX2LGQ=="
-    },
-    "gauge": {
-      "version": "2.7.4",
-      "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz",
-      "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=",
-      "dev": true,
-      "requires": {
-        "aproba": "^1.0.3",
-        "console-control-strings": "^1.0.0",
-        "has-unicode": "^2.0.0",
-        "object-assign": "^4.1.0",
-        "signal-exit": "^3.0.0",
-        "string-width": "^1.0.1",
-        "strip-ansi": "^3.0.1",
-        "wide-align": "^1.1.0"
-      }
-    },
-    "gensync": {
-      "version": "1.0.0-beta.1",
-      "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz",
-      "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==",
-      "dev": true
-    },
-    "geojson-vt": {
-      "version": "3.2.1",
-      "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz",
-      "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg=="
-    },
-    "geolib": {
-      "version": "2.0.24",
-      "resolved": "https://registry.npmjs.org/geolib/-/geolib-2.0.24.tgz",
-      "integrity": "sha512-NR0AyYyEnGrFS9JvSFmmotQDxVCORJgDHdvBwSatxl5aHarOLMh3KuGI83bCvCfObjfoEiDe8Ung8GGLGAtthw=="
-    },
-    "get-caller-file": {
-      "version": "2.0.5",
-      "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
-      "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
-      "dev": true
-    },
-    "get-intrinsic": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz",
-      "integrity": "sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==",
-      "dev": true,
-      "requires": {
-        "function-bind": "^1.1.1",
-        "has": "^1.0.3",
-        "has-symbols": "^1.0.1"
-      },
-      "dependencies": {
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        }
-      }
-    },
-    "get-package-type": {
-      "version": "0.1.0",
-      "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
-      "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
-      "dev": true
-    },
-    "get-stream": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
-      "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
-      "dev": true,
-      "requires": {
-        "pump": "^3.0.0"
-      }
-    },
-    "get-value": {
-      "version": "2.0.6",
-      "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
-      "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
-      "dev": true
-    },
-    "getpass": {
-      "version": "0.1.7",
-      "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
-      "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "^1.0.0"
-      }
-    },
-    "gettext-parser": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.1.0.tgz",
-      "integrity": "sha1-LFpmONiTk0ubVQN9CtgstwBLJnk=",
-      "dev": true,
-      "requires": {
-        "encoding": "^0.1.11"
-      }
-    },
-    "github-slugger": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.3.0.tgz",
-      "integrity": "sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==",
-      "dev": true,
-      "requires": {
-        "emoji-regex": ">=6.0.0 <=6.1.1"
-      },
-      "dependencies": {
-        "emoji-regex": {
-          "version": "6.1.1",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz",
-          "integrity": "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=",
-          "dev": true
-        }
-      }
-    },
-    "gl-matrix": {
-      "version": "3.3.0",
-      "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.3.0.tgz",
-      "integrity": "sha512-COb7LDz+SXaHtl/h4LeaFcNdJdAQSDeVqjiIihSXNrkWObZLhDI4hIkZC11Aeqp7bcE72clzB0BnDXr2SmslRA=="
-    },
-    "glob": {
-      "version": "7.1.3",
-      "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz",
-      "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==",
-      "requires": {
-        "fs.realpath": "^1.0.0",
-        "inflight": "^1.0.4",
-        "inherits": "2",
-        "minimatch": "^3.0.4",
-        "once": "^1.3.0",
-        "path-is-absolute": "^1.0.0"
-      }
-    },
-    "glob-base": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz",
-      "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=",
-      "dev": true,
-      "requires": {
-        "glob-parent": "^2.0.0",
-        "is-glob": "^2.0.0"
-      },
-      "dependencies": {
-        "glob-parent": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz",
-          "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=",
-          "dev": true,
-          "requires": {
-            "is-glob": "^2.0.0"
-          }
-        },
-        "is-extglob": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
-          "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=",
-          "dev": true
-        },
-        "is-glob": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
-          "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
-          "dev": true,
-          "requires": {
-            "is-extglob": "^1.0.0"
-          }
-        }
-      }
-    },
-    "glob-parent": {
-      "version": "5.1.1",
-      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
-      "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
-      "dev": true,
-      "requires": {
-        "is-glob": "^4.0.1"
-      }
-    },
-    "glob-promise": {
-      "version": "3.4.0",
-      "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-3.4.0.tgz",
-      "integrity": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==",
-      "dev": true,
-      "requires": {
-        "@types/glob": "*"
-      }
-    },
-    "glob-to-regexp": {
-      "version": "0.4.1",
-      "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
-      "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
-      "dev": true
-    },
-    "global": {
-      "version": "4.4.0",
-      "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz",
-      "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==",
-      "requires": {
-        "min-document": "^2.19.0",
-        "process": "^0.11.10"
-      }
-    },
-    "global-box": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/global-box/-/global-box-1.2.0.tgz",
-      "integrity": "sha512-IgpqqAYWNG3eluK1tsCkI8Uxff16+OYWLEhDS/QrfkfmbRQ/tVlBXZfURn5tSoPPT6wtmeJp7VKhXrcc5jl/1A=="
-    },
-    "global-cache": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/global-cache/-/global-cache-1.2.1.tgz",
-      "integrity": "sha512-EOeUaup5DgWKlCMhA9YFqNRIlZwoxt731jCh47WBV9fQqHgXhr3Fa55hfgIUqilIcPsfdNKN7LHjrNY+Km40KA==",
-      "requires": {
-        "define-properties": "^1.1.2",
-        "is-symbol": "^1.0.1"
-      }
-    },
-    "global-modules": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz",
-      "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==",
-      "dev": true,
-      "requires": {
-        "global-prefix": "^3.0.0"
-      },
-      "dependencies": {
-        "global-prefix": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
-          "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==",
-          "dev": true,
-          "requires": {
-            "ini": "^1.3.5",
-            "kind-of": "^6.0.2",
-            "which": "^1.3.1"
-          }
-        },
-        "kind-of": {
-          "version": "6.0.3",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
-          "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
-          "dev": true
-        }
-      }
-    },
-    "global-prefix": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz",
-      "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=",
-      "dev": true,
-      "requires": {
-        "expand-tilde": "^2.0.2",
-        "homedir-polyfill": "^1.0.1",
-        "ini": "^1.3.4",
-        "is-windows": "^1.0.1",
-        "which": "^1.2.14"
-      }
-    },
-    "globals": {
-      "version": "11.12.0",
-      "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
-      "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
-      "dev": true
-    },
-    "globalthis": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.1.tgz",
-      "integrity": "sha512-mJPRTc/P39NH/iNG4mXa9aIhNymaQikTrnspeCa2ZuJ+mH2QN/rXwtX3XwKrHqWgUQFbNZKtHM105aHzJalElw==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3"
-      }
-    },
-    "globby": {
-      "version": "6.1.0",
-      "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
-      "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=",
-      "dev": true,
-      "requires": {
-        "array-union": "^1.0.1",
-        "glob": "^7.0.3",
-        "object-assign": "^4.0.1",
-        "pify": "^2.0.0",
-        "pinkie-promise": "^2.0.0"
-      }
-    },
-    "good-listener": {
-      "version": "1.2.2",
-      "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
-      "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=",
-      "optional": true,
-      "requires": {
-        "delegate": "^3.1.2"
-      }
-    },
-    "graceful-fs": {
-      "version": "4.1.15",
-      "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
-      "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==",
-      "dev": true
-    },
-    "graphlib": {
-      "version": "2.1.8",
-      "resolved": "https://registry.npmjs.org/graphlib/-/graphlib-2.1.8.tgz",
-      "integrity": "sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==",
-      "requires": {
-        "lodash": "^4.17.15"
-      }
-    },
-    "grid-index": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz",
-      "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA=="
-    },
-    "growly": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz",
-      "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=",
-      "dev": true,
-      "optional": true
-    },
-    "gud": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz",
-      "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw=="
-    },
-    "gzip-size": {
-      "version": "5.1.1",
-      "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz",
-      "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==",
-      "dev": true,
-      "requires": {
-        "duplexer": "^0.1.1",
-        "pify": "^4.0.1"
-      },
-      "dependencies": {
-        "pify": {
-          "version": "4.0.1",
-          "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
-          "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
-          "dev": true
-        }
-      }
-    },
-    "h3-js": {
-      "version": "3.7.0",
-      "resolved": "https://registry.npmjs.org/h3-js/-/h3-js-3.7.0.tgz",
-      "integrity": "sha512-EcH/qGU4khZsAEG39Uu8MvaCing0JFcuoe3K4Xmg5MofDIu1cNJl7z2AQS8ggvXGxboiLJqsGirhEqFKdd2gAA=="
-    },
-    "hammerjs": {
-      "version": "2.0.8",
-      "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz",
-      "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE="
-    },
-    "handle-thing": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz",
-      "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==",
-      "dev": true
-    },
-    "har-schema": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
-      "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
-      "dev": true
-    },
-    "har-validator": {
-      "version": "5.1.3",
-      "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
-      "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
-      "dev": true,
-      "requires": {
-        "ajv": "^6.5.5",
-        "har-schema": "^2.0.0"
-      }
-    },
-    "has": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
-      "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
-      "requires": {
-        "function-bind": "^1.1.1"
-      }
-    },
-    "has-ansi": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
-      "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
-      "dev": true,
-      "requires": {
-        "ansi-regex": "^2.0.0"
-      }
-    },
-    "has-color": {
-      "version": "0.1.7",
-      "resolved": "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz",
-      "integrity": "sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8=",
-      "dev": true
-    },
-    "has-flag": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
-      "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
-    },
-    "has-symbols": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz",
-      "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q="
-    },
-    "has-unicode": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
-      "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=",
-      "dev": true
-    },
-    "has-value": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
-      "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
-      "dev": true,
-      "requires": {
-        "get-value": "^2.0.6",
-        "has-values": "^1.0.0",
-        "isobject": "^3.0.0"
-      }
-    },
-    "has-values": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
-      "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
-      "dev": true,
-      "requires": {
-        "is-number": "^3.0.0",
-        "kind-of": "^4.0.0"
-      },
-      "dependencies": {
-        "kind-of": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
-          "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.1.5"
-          }
-        }
-      }
-    },
-    "hash-base": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz",
-      "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=",
-      "dev": true,
-      "requires": {
-        "inherits": "^2.0.1",
-        "safe-buffer": "^5.0.1"
-      }
-    },
-    "hash.js": {
-      "version": "1.1.7",
-      "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
-      "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
-      "dev": true,
-      "requires": {
-        "inherits": "^2.0.3",
-        "minimalistic-assert": "^1.0.1"
-      }
-    },
-    "hast-to-hyperscript": {
-      "version": "9.0.1",
-      "resolved": "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz",
-      "integrity": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==",
-      "dev": true,
-      "requires": {
-        "@types/unist": "^2.0.3",
-        "comma-separated-tokens": "^1.0.0",
-        "property-information": "^5.3.0",
-        "space-separated-tokens": "^1.0.0",
-        "style-to-object": "^0.3.0",
-        "unist-util-is": "^4.0.0",
-        "web-namespaces": "^1.0.0"
-      },
-      "dependencies": {
-        "property-information": {
-          "version": "5.6.0",
-          "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz",
-          "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==",
-          "dev": true,
-          "requires": {
-            "xtend": "^4.0.0"
-          }
-        },
-        "unist-util-is": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.3.tgz",
-          "integrity": "sha512-bTofCFVx0iQM8Jqb1TBDVRIQW03YkD3p66JOd/aCWuqzlLyUtx1ZAGw/u+Zw+SttKvSVcvTiKYbfrtLoLefykw==",
-          "dev": true
-        }
-      }
-    },
-    "hast-util-from-parse5": {
-      "version": "6.0.1",
-      "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz",
-      "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==",
-      "dev": true,
-      "requires": {
-        "@types/parse5": "^5.0.0",
-        "hastscript": "^6.0.0",
-        "property-information": "^5.0.0",
-        "vfile": "^4.0.0",
-        "vfile-location": "^3.2.0",
-        "web-namespaces": "^1.0.0"
-      },
-      "dependencies": {
-        "hastscript": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
-          "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==",
-          "dev": true,
-          "requires": {
-            "@types/hast": "^2.0.0",
-            "comma-separated-tokens": "^1.0.0",
-            "hast-util-parse-selector": "^2.0.0",
-            "property-information": "^5.0.0",
-            "space-separated-tokens": "^1.0.0"
-          }
-        },
-        "is-buffer": {
-          "version": "2.0.5",
-          "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
-          "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
-          "dev": true
-        },
-        "unist-util-stringify-position": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
-          "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.2"
-          }
-        },
-        "vfile": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.0.tgz",
-          "integrity": "sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "is-buffer": "^2.0.0",
-            "replace-ext": "1.0.0",
-            "unist-util-stringify-position": "^2.0.0",
-            "vfile-message": "^2.0.0"
-          }
-        },
-        "vfile-location": {
-          "version": "3.2.0",
-          "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz",
-          "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==",
-          "dev": true
-        },
-        "vfile-message": {
-          "version": "2.0.4",
-          "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz",
-          "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-stringify-position": "^2.0.0"
-          }
-        }
-      }
-    },
-    "hast-util-parse-selector": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.1.tgz",
-      "integrity": "sha512-Xyh0v+nHmQvrOqop2Jqd8gOdyQtE8sIP9IQf7mlVDqp924W4w/8Liuguk2L2qei9hARnQSG2m+wAOCxM7npJVw=="
-    },
-    "hast-util-raw": {
-      "version": "6.0.1",
-      "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.0.1.tgz",
-      "integrity": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==",
-      "dev": true,
-      "requires": {
-        "@types/hast": "^2.0.0",
-        "hast-util-from-parse5": "^6.0.0",
-        "hast-util-to-parse5": "^6.0.0",
-        "html-void-elements": "^1.0.0",
-        "parse5": "^6.0.0",
-        "unist-util-position": "^3.0.0",
-        "vfile": "^4.0.0",
-        "web-namespaces": "^1.0.0",
-        "xtend": "^4.0.0",
-        "zwitch": "^1.0.0"
-      },
-      "dependencies": {
-        "is-buffer": {
-          "version": "2.0.5",
-          "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
-          "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
-          "dev": true
-        },
-        "parse5": {
-          "version": "6.0.1",
-          "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
-          "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
-          "dev": true
-        },
-        "unist-util-stringify-position": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
-          "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.2"
-          }
-        },
-        "vfile": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.0.tgz",
-          "integrity": "sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "is-buffer": "^2.0.0",
-            "replace-ext": "1.0.0",
-            "unist-util-stringify-position": "^2.0.0",
-            "vfile-message": "^2.0.0"
-          }
-        },
-        "vfile-message": {
-          "version": "2.0.4",
-          "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz",
-          "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-stringify-position": "^2.0.0"
-          }
-        }
-      }
-    },
-    "hast-util-to-parse5": {
-      "version": "6.0.0",
-      "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz",
-      "integrity": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==",
-      "dev": true,
-      "requires": {
-        "hast-to-hyperscript": "^9.0.0",
-        "property-information": "^5.0.0",
-        "web-namespaces": "^1.0.0",
-        "xtend": "^4.0.0",
-        "zwitch": "^1.0.0"
-      }
-    },
-    "hastscript": {
-      "version": "5.0.0",
-      "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-5.0.0.tgz",
-      "integrity": "sha512-xJtuJ8D42Xtq5yJrnDg/KAIxl2cXBXKoiIJwmWX9XMf8113qHTGl/Bf7jEsxmENJ4w6q4Tfl8s/Y6mEZo8x8qw==",
-      "dev": true,
-      "requires": {
-        "comma-separated-tokens": "^1.0.0",
-        "hast-util-parse-selector": "^2.2.0",
-        "property-information": "^5.0.1",
-        "space-separated-tokens": "^1.0.0"
-      }
-    },
-    "he": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
-      "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
-      "dev": true
-    },
-    "hex-color-regex": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz",
-      "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==",
-      "dev": true
-    },
-    "highlight.js": {
-      "version": "10.3.2",
-      "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.3.2.tgz",
-      "integrity": "sha512-3jRT7OUYsVsKvukNKZCtnvRcFyCJqSEIuIMsEybAXRiFSwpt65qjPd/Pr+UOdYt7WJlt+lj3+ypUsHiySBp/Jw=="
-    },
-    "history": {
-      "version": "4.10.1",
-      "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz",
-      "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==",
-      "requires": {
-        "@babel/runtime": "^7.1.2",
-        "loose-envify": "^1.2.0",
-        "resolve-pathname": "^3.0.0",
-        "tiny-invariant": "^1.0.2",
-        "tiny-warning": "^1.0.0",
-        "value-equal": "^1.0.1"
-      }
-    },
-    "hmac-drbg": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
-      "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
-      "dev": true,
-      "requires": {
-        "hash.js": "^1.0.3",
-        "minimalistic-assert": "^1.0.0",
-        "minimalistic-crypto-utils": "^1.0.1"
-      }
-    },
-    "hoist-non-react-statics": {
-      "version": "3.3.2",
-      "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
-      "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
-      "requires": {
-        "react-is": "^16.7.0"
-      },
-      "dependencies": {
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "homedir-polyfill": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
-      "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==",
-      "dev": true,
-      "requires": {
-        "parse-passwd": "^1.0.0"
-      }
-    },
-    "hoopy": {
-      "version": "0.1.4",
-      "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz",
-      "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==",
-      "dev": true
-    },
-    "hosted-git-info": {
-      "version": "2.7.1",
-      "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz",
-      "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==",
-      "dev": true
-    },
-    "hpack.js": {
-      "version": "2.1.6",
-      "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz",
-      "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=",
-      "dev": true,
-      "requires": {
-        "inherits": "^2.0.1",
-        "obuf": "^1.0.0",
-        "readable-stream": "^2.0.1",
-        "wbuf": "^1.1.0"
-      }
-    },
-    "hsl-regex": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz",
-      "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=",
-      "dev": true
-    },
-    "hsla-regex": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz",
-      "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=",
-      "dev": true
-    },
-    "html-comment-regex": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz",
-      "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==",
-      "dev": true
-    },
-    "html-element-map": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.1.0.tgz",
-      "integrity": "sha512-iqiG3dTZmy+uUaTmHarTL+3/A2VW9ox/9uasKEZC+R/wAtUrTcRlXPSaPqsnWPfIu8wqn09jQNwMRqzL54jSYA==",
-      "dev": true,
-      "requires": {
-        "array-filter": "^1.0.0"
-      }
-    },
-    "html-encoding-sniffer": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
-      "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
-      "dev": true,
-      "requires": {
-        "whatwg-encoding": "^1.0.5"
-      }
-    },
-    "html-entities": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz",
-      "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=",
-      "dev": true
-    },
-    "html-escaper": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
-      "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
-      "dev": true
-    },
-    "html-minifier-terser": {
-      "version": "5.1.1",
-      "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz",
-      "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==",
-      "dev": true,
-      "requires": {
-        "camel-case": "^4.1.1",
-        "clean-css": "^4.2.3",
-        "commander": "^4.1.1",
-        "he": "^1.2.0",
-        "param-case": "^3.0.3",
-        "relateurl": "^0.2.7",
-        "terser": "^4.6.3"
-      },
-      "dependencies": {
-        "commander": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
-          "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
-          "dev": true
-        }
-      }
-    },
-    "html-tags": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz",
-      "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==",
-      "dev": true
-    },
-    "html-to-react": {
-      "version": "1.4.2",
-      "resolved": "https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.2.tgz",
-      "integrity": "sha512-TdTfxd95sRCo6QL8admCkE7mvNNrXtGoVr1dyS+7uvc8XCqAymnf/6ckclvnVbQNUo2Nh21VPwtfEHd0khiV7g==",
-      "requires": {
-        "domhandler": "^3.0",
-        "htmlparser2": "^4.0",
-        "lodash.camelcase": "^4.3.0",
-        "ramda": "^0.26"
-      },
-      "dependencies": {
-        "dom-serializer": {
-          "version": "0.2.2",
-          "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
-          "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
-          "requires": {
-            "domelementtype": "^2.0.1",
-            "entities": "^2.0.0"
-          }
-        },
-        "domelementtype": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz",
-          "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ=="
-        },
-        "domhandler": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.0.0.tgz",
-          "integrity": "sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==",
-          "requires": {
-            "domelementtype": "^2.0.1"
-          }
-        },
-        "domutils": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.0.0.tgz",
-          "integrity": "sha512-n5SelJ1axbO636c2yUtOGia/IcJtVtlhQbFiVDBZHKV5ReJO1ViX7sFEemtuyoAnBxk5meNSYgA8V4s0271efg==",
-          "requires": {
-            "dom-serializer": "^0.2.1",
-            "domelementtype": "^2.0.1",
-            "domhandler": "^3.0.0"
-          }
-        },
-        "entities": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz",
-          "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw=="
-        },
-        "htmlparser2": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.0.0.tgz",
-          "integrity": "sha512-cChwXn5Vam57fyXajDtPXL1wTYc8JtLbr2TN76FYu05itVVVealxLowe2B3IEznJG4p9HAYn/0tJaRlGuEglFQ==",
-          "requires": {
-            "domelementtype": "^2.0.1",
-            "domhandler": "^3.0.0",
-            "domutils": "^2.0.0",
-            "entities": "^2.0.0"
-          }
-        }
-      }
-    },
-    "html-void-elements": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz",
-      "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==",
-      "dev": true
-    },
-    "html-webpack-plugin": {
-      "version": "4.3.0",
-      "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.3.0.tgz",
-      "integrity": "sha512-C0fzKN8yQoVLTelcJxZfJCE+aAvQiY2VUf3UuKrR4a9k5UMWYOtpDLsaXwATbcVCnI05hUS7L9ULQHWLZhyi3w==",
-      "dev": true,
-      "requires": {
-        "@types/html-minifier-terser": "^5.0.0",
-        "@types/tapable": "^1.0.5",
-        "@types/webpack": "^4.41.8",
-        "html-minifier-terser": "^5.0.1",
-        "loader-utils": "^1.2.3",
-        "lodash": "^4.17.15",
-        "pretty-error": "^2.1.1",
-        "tapable": "^1.1.3",
-        "util.promisify": "1.0.0"
-      },
-      "dependencies": {
-        "@types/tapable": {
-          "version": "1.0.6",
-          "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz",
-          "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==",
-          "dev": true
-        },
-        "@types/webpack": {
-          "version": "4.41.21",
-          "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.21.tgz",
-          "integrity": "sha512-2j9WVnNrr/8PLAB5csW44xzQSJwS26aOnICsP3pSGCEdsu6KYtfQ6QJsVUKHWRnm1bL7HziJsfh5fHqth87yKA==",
-          "dev": true,
-          "requires": {
-            "@types/anymatch": "*",
-            "@types/node": "*",
-            "@types/tapable": "*",
-            "@types/uglify-js": "*",
-            "@types/webpack-sources": "*",
-            "source-map": "^0.6.0"
-          }
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "json5": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-          "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.0"
-          }
-        },
-        "loader-utils": {
-          "version": "1.4.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
-          "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^1.0.1"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "tapable": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
-          "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
-          "dev": true
-        }
-      }
-    },
-    "htmlparser2": {
-      "version": "3.10.1",
-      "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
-      "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==",
-      "dev": true,
-      "requires": {
-        "domelementtype": "^1.3.1",
-        "domhandler": "^2.3.0",
-        "domutils": "^1.5.1",
-        "entities": "^1.1.1",
-        "inherits": "^2.0.1",
-        "readable-stream": "^3.1.1"
-      },
-      "dependencies": {
-        "readable-stream": {
-          "version": "3.4.0",
-          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz",
-          "integrity": "sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==",
-          "dev": true,
-          "requires": {
-            "inherits": "^2.0.3",
-            "string_decoder": "^1.1.1",
-            "util-deprecate": "^1.0.1"
-          }
-        }
-      }
-    },
-    "http-deceiver": {
-      "version": "1.2.7",
-      "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz",
-      "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=",
-      "dev": true
-    },
-    "http-errors": {
-      "version": "1.6.3",
-      "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
-      "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
-      "dev": true,
-      "requires": {
-        "depd": "~1.1.2",
-        "inherits": "2.0.3",
-        "setprototypeof": "1.1.0",
-        "statuses": ">= 1.4.0 < 2"
-      }
-    },
-    "http-proxy": {
-      "version": "1.18.1",
-      "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz",
-      "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
-      "dev": true,
-      "requires": {
-        "eventemitter3": "^4.0.0",
-        "follow-redirects": "^1.0.0",
-        "requires-port": "^1.0.0"
-      }
-    },
-    "http-proxy-middleware": {
-      "version": "0.19.1",
-      "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz",
-      "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==",
-      "dev": true,
-      "requires": {
-        "http-proxy": "^1.17.0",
-        "is-glob": "^4.0.0",
-        "lodash": "^4.17.11",
-        "micromatch": "^3.1.10"
-      }
-    },
-    "http-signature": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
-      "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "^1.0.0",
-        "jsprim": "^1.2.2",
-        "sshpk": "^1.7.0"
-      }
-    },
-    "https-browserify": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
-      "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=",
-      "dev": true
-    },
-    "human-signals": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
-      "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
-      "dev": true
-    },
-    "hyphenate-style-name": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz",
-      "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ=="
-    },
-    "iconv-lite": {
-      "version": "0.4.24",
-      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
-      "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
-      "requires": {
-        "safer-buffer": ">= 2.1.2 < 3"
-      }
-    },
-    "icss-replace-symbols": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz",
-      "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=",
-      "dev": true
-    },
-    "icss-utils": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz",
-      "integrity": "sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=",
-      "dev": true,
-      "requires": {
-        "postcss": "^6.0.1"
-      }
-    },
-    "ieee754": {
-      "version": "1.1.12",
-      "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz",
-      "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA=="
-    },
-    "iferr": {
-      "version": "0.1.5",
-      "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz",
-      "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=",
-      "dev": true
-    },
-    "ignore": {
-      "version": "4.0.6",
-      "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
-      "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
-      "dev": true
-    },
-    "ignore-styles": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/ignore-styles/-/ignore-styles-5.0.1.tgz",
-      "integrity": "sha1-tJ7yJ0va/NikiAqWa/440aC/RnE=",
-      "dev": true
-    },
-    "image-size": {
-      "version": "0.5.5",
-      "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz",
-      "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=",
-      "dev": true,
-      "optional": true
-    },
-    "immer": {
-      "version": "1.10.0",
-      "resolved": "https://registry.npmjs.org/immer/-/immer-1.10.0.tgz",
-      "integrity": "sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==",
-      "dev": true
-    },
-    "immutable": {
-      "version": "4.0.0-rc.12",
-      "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.0.0-rc.12.tgz",
-      "integrity": "sha512-0M2XxkZLx/mi3t8NVwIm1g8nHoEmM9p9UBl/G9k4+hm0kBgOVdMV/B3CY5dQ8qG8qc80NN4gDV4HQv6FTJ5q7A=="
-    },
-    "import-cwd": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz",
-      "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=",
-      "dev": true,
-      "requires": {
-        "import-from": "^2.1.0"
-      }
-    },
-    "import-fresh": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz",
-      "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=",
-      "dev": true,
-      "requires": {
-        "caller-path": "^2.0.0",
-        "resolve-from": "^3.0.0"
-      },
-      "dependencies": {
-        "resolve-from": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
-          "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=",
-          "dev": true
-        }
-      }
-    },
-    "import-from": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz",
-      "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=",
-      "dev": true,
-      "requires": {
-        "resolve-from": "^3.0.0"
-      },
-      "dependencies": {
-        "resolve-from": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
-          "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=",
-          "dev": true
-        }
-      }
-    },
-    "import-local": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz",
-      "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==",
-      "dev": true,
-      "requires": {
-        "pkg-dir": "^3.0.0",
-        "resolve-cwd": "^2.0.0"
-      }
-    },
-    "imports-loader": {
-      "version": "0.7.1",
-      "resolved": "https://registry.npmjs.org/imports-loader/-/imports-loader-0.7.1.tgz",
-      "integrity": "sha1-8gS180cCoywdt9SNidXoZ6BEElM=",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^1.0.2",
-        "source-map": "^0.5.6"
-      }
-    },
-    "imurmurhash": {
-      "version": "0.1.4",
-      "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
-      "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
-      "dev": true
-    },
-    "indent-string": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
-      "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
-      "dev": true
-    },
-    "indexes-of": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
-      "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=",
-      "dev": true
-    },
-    "infer-owner": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
-      "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
-      "dev": true
-    },
-    "inflight": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
-      "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
-      "requires": {
-        "once": "^1.3.0",
-        "wrappy": "1"
-      }
-    },
-    "inherits": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
-      "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
-    },
-    "ini": {
-      "version": "1.3.8",
-      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
-      "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
-      "dev": true
-    },
-    "inline-style-parser": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
-      "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==",
-      "dev": true
-    },
-    "inline-style-prefixer": {
-      "version": "3.0.8",
-      "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-3.0.8.tgz",
-      "integrity": "sha1-hVG45bTVcyROZqNLBPfTIHaitTQ=",
-      "requires": {
-        "bowser": "^1.7.3",
-        "css-in-js-utils": "^2.0.0"
-      }
-    },
-    "inquirer": {
-      "version": "7.3.3",
-      "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz",
-      "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==",
-      "dev": true,
-      "requires": {
-        "ansi-escapes": "^4.2.1",
-        "chalk": "^4.1.0",
-        "cli-cursor": "^3.1.0",
-        "cli-width": "^3.0.0",
-        "external-editor": "^3.0.3",
-        "figures": "^3.0.0",
-        "lodash": "^4.17.19",
-        "mute-stream": "0.0.8",
-        "run-async": "^2.4.0",
-        "rxjs": "^6.6.0",
-        "string-width": "^4.1.0",
-        "strip-ansi": "^6.0.0",
-        "through": "^2.3.6"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "cli-width": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
-          "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
-          "dev": true
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "emoji-regex": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-          "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        },
-        "run-async": {
-          "version": "2.4.1",
-          "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
-          "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==",
-          "dev": true
-        },
-        "rxjs": {
-          "version": "6.6.3",
-          "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz",
-          "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==",
-          "dev": true,
-          "requires": {
-            "tslib": "^1.9.0"
-          }
-        },
-        "string-width": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
-          "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^8.0.0",
-            "is-fullwidth-code-point": "^3.0.0",
-            "strip-ansi": "^6.0.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "insert-css": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/insert-css/-/insert-css-2.0.0.tgz",
-      "integrity": "sha1-610Ql7dUL0x56jBg067gfQU4gPQ="
-    },
-    "internal-ip": {
-      "version": "4.3.0",
-      "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz",
-      "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==",
-      "dev": true,
-      "requires": {
-        "default-gateway": "^4.2.0",
-        "ipaddr.js": "^1.9.0"
-      },
-      "dependencies": {
-        "ipaddr.js": {
-          "version": "1.9.1",
-          "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
-          "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
-          "dev": true
-        }
-      }
-    },
-    "internal-slot": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.2.tgz",
-      "integrity": "sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g==",
-      "dev": true,
-      "requires": {
-        "es-abstract": "^1.17.0-next.1",
-        "has": "^1.0.3",
-        "side-channel": "^1.0.2"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "internmap": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/internmap/-/internmap-1.0.0.tgz",
-      "integrity": "sha512-SdoDWwNOTE2n4JWUsLn4KXZGuZPjPF9yyOGc8bnfWnBQh7BD/l80rzSznKc/r4Y0aQ7z3RTk9X+tV4tHBpu+dA=="
-    },
-    "interpret": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz",
-      "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=",
-      "dev": true
-    },
-    "interweave": {
-      "version": "11.2.0",
-      "resolved": "https://registry.npmjs.org/interweave/-/interweave-11.2.0.tgz",
-      "integrity": "sha512-33h9LOXbT52tMin3IyLBPcd5RbiwroP/Sxr0OamnJJU7A/jh0XtZKGvdcSNKYRC7sLZuDk+ZJ2XVrmkcMU5i6w==",
-      "requires": {
-        "@types/react": "*",
-        "escape-html": "^1.0.3",
-        "prop-types": "^15.7.2"
-      }
-    },
-    "invariant": {
-      "version": "2.2.4",
-      "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
-      "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
-      "requires": {
-        "loose-envify": "^1.0.0"
-      }
-    },
-    "invert-kv": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz",
-      "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==",
-      "dev": true
-    },
-    "ip": {
-      "version": "1.1.5",
-      "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
-      "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=",
-      "dev": true
-    },
-    "ip-regex": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
-      "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=",
-      "dev": true
-    },
-    "ipaddr.js": {
-      "version": "1.8.0",
-      "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz",
-      "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=",
-      "dev": true
-    },
-    "is-absolute-url": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz",
-      "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=",
-      "dev": true
-    },
-    "is-accessor-descriptor": {
-      "version": "0.1.6",
-      "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
-      "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
-      "dev": true,
-      "requires": {
-        "kind-of": "^3.0.2"
-      },
-      "dependencies": {
-        "kind-of": {
-          "version": "3.2.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
-          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.1.5"
-          }
-        }
-      }
-    },
-    "is-alphabetical": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.2.tgz",
-      "integrity": "sha512-V0xN4BYezDHcBSKb1QHUFMlR4as/XEuCZBzMJUU4n7+Cbt33SmUnSol+pnXFvLxSHNq2CemUXNdaXV6Flg7+xg=="
-    },
-    "is-alphanumerical": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.2.tgz",
-      "integrity": "sha512-pyfU/0kHdISIgslFfZN9nfY1Gk3MquQgUm1mJTjdkEPpkAKNWuBTSqFwewOpR7N351VkErCiyV71zX7mlQQqsg==",
-      "requires": {
-        "is-alphabetical": "^1.0.0",
-        "is-decimal": "^1.0.0"
-      }
-    },
-    "is-arguments": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz",
-      "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==",
-      "dev": true
-    },
-    "is-arrayish": {
-      "version": "0.2.1",
-      "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
-      "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0="
-    },
-    "is-binary-path": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
-      "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
-      "dev": true,
-      "requires": {
-        "binary-extensions": "^1.0.0"
-      }
-    },
-    "is-boolean-object": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.0.0.tgz",
-      "integrity": "sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M=",
-      "dev": true
-    },
-    "is-buffer": {
-      "version": "1.1.6",
-      "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
-      "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
-    },
-    "is-builtin-module": {
-      "version": "1.0.0",
-      "resolved": "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz",
-      "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=",
-      "dev": true,
-      "requires": {
-        "builtin-modules": "^1.0.0"
-      }
-    },
-    "is-callable": {
-      "version": "1.1.4",
-      "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz",
-      "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==",
-      "dev": true
-    },
-    "is-ci": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
-      "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==",
-      "dev": true,
-      "requires": {
-        "ci-info": "^2.0.0"
-      }
-    },
-    "is-color-stop": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz",
-      "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=",
-      "dev": true,
-      "requires": {
-        "css-color-names": "^0.0.4",
-        "hex-color-regex": "^1.1.0",
-        "hsl-regex": "^1.0.0",
-        "hsla-regex": "^1.0.0",
-        "rgb-regex": "^1.0.1",
-        "rgba-regex": "^1.0.0"
-      }
-    },
-    "is-core-module": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
-      "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
-      "dev": true,
-      "requires": {
-        "has": "^1.0.3"
-      }
-    },
-    "is-data-descriptor": {
-      "version": "0.1.4",
-      "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
-      "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
-      "dev": true,
-      "requires": {
-        "kind-of": "^3.0.2"
-      },
-      "dependencies": {
-        "kind-of": {
-          "version": "3.2.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
-          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.1.5"
-          }
-        }
-      }
-    },
-    "is-date-object": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz",
-      "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=",
-      "dev": true
-    },
-    "is-decimal": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.2.tgz",
-      "integrity": "sha512-TRzl7mOCchnhchN+f3ICUCzYvL9ul7R+TYOsZ8xia++knyZAJfv/uA1FvQXsAnYIl1T3B2X5E/J7Wb1QXiIBXg=="
-    },
-    "is-descriptor": {
-      "version": "0.1.6",
-      "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
-      "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
-      "dev": true,
-      "requires": {
-        "is-accessor-descriptor": "^0.1.6",
-        "is-data-descriptor": "^0.1.4",
-        "kind-of": "^5.0.0"
-      }
-    },
-    "is-directory": {
-      "version": "0.3.1",
-      "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz",
-      "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=",
-      "dev": true
-    },
-    "is-docker": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.0.0.tgz",
-      "integrity": "sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ==",
-      "dev": true
-    },
-    "is-dom": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/is-dom/-/is-dom-1.1.0.tgz",
-      "integrity": "sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==",
-      "dev": true,
-      "requires": {
-        "is-object": "^1.0.1",
-        "is-window": "^1.0.2"
-      }
-    },
-    "is-extendable": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
-      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
-      "dev": true
-    },
-    "is-extglob": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
-      "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
-      "dev": true
-    },
-    "is-fullwidth-code-point": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
-      "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
-      "dev": true,
-      "requires": {
-        "number-is-nan": "^1.0.0"
-      }
-    },
-    "is-function": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz",
-      "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==",
-      "dev": true
-    },
-    "is-generator-fn": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
-      "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
-      "dev": true
-    },
-    "is-glob": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
-      "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
-      "dev": true,
-      "requires": {
-        "is-extglob": "^2.1.1"
-      }
-    },
-    "is-hexadecimal": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.2.tgz",
-      "integrity": "sha512-but/G3sapV3MNyqiDBLrOi4x8uCIw0RY3o/Vb5GT0sMFHrVV7731wFSVy41T5FO1og7G0gXLJh0MkgPRouko/A=="
-    },
-    "is-map": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.1.tgz",
-      "integrity": "sha512-T/S49scO8plUiAOA2DBTBG3JHpn1yiw0kRp6dgiZ0v2/6twi5eiB0rHtHFH9ZIrvlWc6+4O+m4zg5+Z833aXgw==",
-      "dev": true
-    },
-    "is-negative-zero": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz",
-      "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==",
-      "dev": true
-    },
-    "is-number": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
-      "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
-      "dev": true,
-      "requires": {
-        "kind-of": "^3.0.2"
-      },
-      "dependencies": {
-        "kind-of": {
-          "version": "3.2.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
-          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.1.5"
-          }
-        }
-      }
-    },
-    "is-number-object": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.3.tgz",
-      "integrity": "sha1-8mWrian0RQNO9q/xWo8AsA9VF5k=",
-      "dev": true
-    },
-    "is-object": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz",
-      "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=",
-      "dev": true
-    },
-    "is-path-cwd": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
-      "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
-      "dev": true
-    },
-    "is-path-in-cwd": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz",
-      "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==",
-      "dev": true,
-      "requires": {
-        "is-path-inside": "^2.1.0"
-      }
-    },
-    "is-path-inside": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz",
-      "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==",
-      "dev": true,
-      "requires": {
-        "path-is-inside": "^1.0.2"
-      }
-    },
-    "is-plain-obj": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
-      "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4="
-    },
-    "is-plain-object": {
-      "version": "2.0.4",
-      "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
-      "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
-      "dev": true,
-      "requires": {
-        "isobject": "^3.0.1"
-      }
-    },
-    "is-potential-custom-element-name": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz",
-      "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=",
-      "dev": true
-    },
-    "is-promise": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
-      "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=",
-      "dev": true
-    },
-    "is-regex": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz",
-      "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=",
-      "dev": true,
-      "requires": {
-        "has": "^1.0.1"
-      }
-    },
-    "is-resolvable": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz",
-      "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==",
-      "dev": true
-    },
-    "is-retina": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/is-retina/-/is-retina-1.0.3.tgz",
-      "integrity": "sha1-10AbKGvqKuN/Ykd1iN5QTQuGR+M="
-    },
-    "is-root": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz",
-      "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==",
-      "dev": true
-    },
-    "is-set": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.1.tgz",
-      "integrity": "sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA==",
-      "dev": true
-    },
-    "is-stream": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
-      "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
-    },
-    "is-string": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz",
-      "integrity": "sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ=",
-      "dev": true
-    },
-    "is-subset": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz",
-      "integrity": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=",
-      "dev": true
-    },
-    "is-svg": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz",
-      "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==",
-      "dev": true,
-      "requires": {
-        "html-comment-regex": "^1.1.0"
-      }
-    },
-    "is-symbol": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz",
-      "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==",
-      "requires": {
-        "has-symbols": "^1.0.0"
-      }
-    },
-    "is-typedarray": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
-      "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
-      "dev": true
-    },
-    "is-whitespace-character": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz",
-      "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w=="
-    },
-    "is-window": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/is-window/-/is-window-1.0.2.tgz",
-      "integrity": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0=",
-      "dev": true
-    },
-    "is-windows": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
-      "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
-      "dev": true
-    },
-    "is-word-character": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz",
-      "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA=="
-    },
-    "is-wsl": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
-      "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=",
-      "dev": true
-    },
-    "isarray": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
-      "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
-    },
-    "isexe": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
-      "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
-      "dev": true
-    },
-    "isobject": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
-      "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
-    },
-    "isomorphic-fetch": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
-      "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=",
-      "requires": {
-        "node-fetch": "^1.0.1",
-        "whatwg-fetch": ">=0.10.0"
-      },
-      "dependencies": {
-        "node-fetch": {
-          "version": "1.7.3",
-          "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
-          "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
-          "requires": {
-            "encoding": "^0.1.11",
-            "is-stream": "^1.0.1"
-          }
-        }
-      }
-    },
-    "isstream": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
-      "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
-      "dev": true
-    },
-    "istanbul-lib-coverage": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz",
-      "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==",
-      "dev": true
-    },
-    "istanbul-lib-instrument": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz",
-      "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==",
-      "dev": true,
-      "requires": {
-        "@babel/core": "^7.7.5",
-        "@istanbuljs/schema": "^0.1.2",
-        "istanbul-lib-coverage": "^3.0.0",
-        "semver": "^6.3.0"
-      },
-      "dependencies": {
-        "semver": {
-          "version": "6.3.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-          "dev": true
-        }
-      }
-    },
-    "istanbul-lib-report": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
-      "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
-      "dev": true,
-      "requires": {
-        "istanbul-lib-coverage": "^3.0.0",
-        "make-dir": "^3.0.0",
-        "supports-color": "^7.1.0"
-      },
-      "dependencies": {
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "make-dir": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
-          "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
-          "dev": true,
-          "requires": {
-            "semver": "^6.0.0"
-          }
-        },
-        "semver": {
-          "version": "6.3.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "istanbul-lib-source-maps": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz",
-      "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==",
-      "dev": true,
-      "requires": {
-        "debug": "^4.1.1",
-        "istanbul-lib-coverage": "^3.0.0",
-        "source-map": "^0.6.1"
-      },
-      "dependencies": {
-        "debug": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
-          "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "istanbul-reports": {
-      "version": "3.0.2",
-      "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz",
-      "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==",
-      "dev": true,
-      "requires": {
-        "html-escaper": "^2.0.0",
-        "istanbul-lib-report": "^3.0.0"
-      }
-    },
-    "iterate-iterator": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/iterate-iterator/-/iterate-iterator-1.0.1.tgz",
-      "integrity": "sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw==",
-      "dev": true
-    },
-    "iterate-value": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/iterate-value/-/iterate-value-1.0.2.tgz",
-      "integrity": "sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==",
-      "dev": true,
-      "requires": {
-        "es-get-iterator": "^1.0.2",
-        "iterate-iterator": "^1.0.1"
-      }
-    },
-    "jake": {
-      "version": "10.8.2",
-      "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.2.tgz",
-      "integrity": "sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==",
-      "dev": true,
-      "requires": {
-        "async": "0.9.x",
-        "chalk": "^2.4.2",
-        "filelist": "^1.0.1",
-        "minimatch": "^3.0.4"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "async": {
-          "version": "0.9.2",
-          "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
-          "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=",
-          "dev": true
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "javascript-natural-sort": {
-      "version": "0.7.1",
-      "resolved": "https://registry.npmjs.org/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz",
-      "integrity": "sha1-+eIwPUUH9tdDVac2ZNFED7Wg71k="
-    },
-    "jed": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/jed/-/jed-1.1.1.tgz",
-      "integrity": "sha1-elSbvZ/+FYWwzQoZHiAwVb7ldLQ="
-    },
-    "jest": {
-      "version": "26.6.3",
-      "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz",
-      "integrity": "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==",
-      "dev": true,
-      "requires": {
-        "@jest/core": "^26.6.3",
-        "import-local": "^3.0.2",
-        "jest-cli": "^26.6.3"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "import-local": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz",
-          "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==",
-          "dev": true,
-          "requires": {
-            "pkg-dir": "^4.2.0",
-            "resolve-cwd": "^3.0.0"
-          }
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-cli": {
-          "version": "26.6.3",
-          "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz",
-          "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==",
-          "dev": true,
-          "requires": {
-            "@jest/core": "^26.6.3",
-            "@jest/test-result": "^26.6.2",
-            "@jest/types": "^26.6.2",
-            "chalk": "^4.0.0",
-            "exit": "^0.1.2",
-            "graceful-fs": "^4.2.4",
-            "import-local": "^3.0.2",
-            "is-ci": "^2.0.0",
-            "jest-config": "^26.6.3",
-            "jest-util": "^26.6.2",
-            "jest-validate": "^26.6.2",
-            "prompts": "^2.0.1",
-            "yargs": "^15.4.1"
-          }
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "pkg-dir": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
-          "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
-          "dev": true,
-          "requires": {
-            "find-up": "^4.0.0"
-          }
-        },
-        "resolve-cwd": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
-          "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
-          "dev": true,
-          "requires": {
-            "resolve-from": "^5.0.0"
-          }
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-changed-files": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz",
-      "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.6.2",
-        "execa": "^4.0.0",
-        "throat": "^5.0.0"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "cross-spawn": {
-          "version": "7.0.3",
-          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
-          "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
-          "dev": true,
-          "requires": {
-            "path-key": "^3.1.0",
-            "shebang-command": "^2.0.0",
-            "which": "^2.0.1"
-          }
-        },
-        "execa": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
-          "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
-          "dev": true,
-          "requires": {
-            "cross-spawn": "^7.0.0",
-            "get-stream": "^5.0.0",
-            "human-signals": "^1.1.1",
-            "is-stream": "^2.0.0",
-            "merge-stream": "^2.0.0",
-            "npm-run-path": "^4.0.0",
-            "onetime": "^5.1.0",
-            "signal-exit": "^3.0.2",
-            "strip-final-newline": "^2.0.0"
-          }
-        },
-        "get-stream": {
-          "version": "5.2.0",
-          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
-          "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
-          "dev": true,
-          "requires": {
-            "pump": "^3.0.0"
-          }
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-stream": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
-          "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==",
-          "dev": true
-        },
-        "npm-run-path": {
-          "version": "4.0.1",
-          "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
-          "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
-          "dev": true,
-          "requires": {
-            "path-key": "^3.0.0"
-          }
-        },
-        "path-key": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
-          "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
-          "dev": true
-        },
-        "shebang-command": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
-          "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
-          "dev": true,
-          "requires": {
-            "shebang-regex": "^3.0.0"
-          }
-        },
-        "shebang-regex": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
-          "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "which": {
-          "version": "2.0.2",
-          "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
-          "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
-          "dev": true,
-          "requires": {
-            "isexe": "^2.0.0"
-          }
-        }
-      }
-    },
-    "jest-config": {
-      "version": "26.6.3",
-      "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz",
-      "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==",
-      "dev": true,
-      "requires": {
-        "@babel/core": "^7.1.0",
-        "@jest/test-sequencer": "^26.6.3",
-        "@jest/types": "^26.6.2",
-        "babel-jest": "^26.6.3",
-        "chalk": "^4.0.0",
-        "deepmerge": "^4.2.2",
-        "glob": "^7.1.1",
-        "graceful-fs": "^4.2.4",
-        "jest-environment-jsdom": "^26.6.2",
-        "jest-environment-node": "^26.6.2",
-        "jest-get-type": "^26.3.0",
-        "jest-jasmine2": "^26.6.3",
-        "jest-regex-util": "^26.0.0",
-        "jest-resolve": "^26.6.2",
-        "jest-util": "^26.6.2",
-        "jest-validate": "^26.6.2",
-        "micromatch": "^4.0.2",
-        "pretty-format": "^26.6.2"
-      },
-      "dependencies": {
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.12.6",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
-          "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "@jest/transform": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
-          "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
-          "dev": true,
-          "requires": {
-            "@babel/core": "^7.1.0",
-            "@jest/types": "^26.6.2",
-            "babel-plugin-istanbul": "^6.0.0",
-            "chalk": "^4.0.0",
-            "convert-source-map": "^1.4.0",
-            "fast-json-stable-stringify": "^2.0.0",
-            "graceful-fs": "^4.2.4",
-            "jest-haste-map": "^26.6.2",
-            "jest-regex-util": "^26.0.0",
-            "jest-util": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "pirates": "^4.0.1",
-            "slash": "^3.0.0",
-            "source-map": "^0.6.1",
-            "write-file-atomic": "^3.0.0"
-          }
-        },
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "babel-jest": {
-          "version": "26.6.3",
-          "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz",
-          "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==",
-          "dev": true,
-          "requires": {
-            "@jest/transform": "^26.6.2",
-            "@jest/types": "^26.6.2",
-            "@types/babel__core": "^7.1.7",
-            "babel-plugin-istanbul": "^6.0.0",
-            "babel-preset-jest": "^26.6.2",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "slash": "^3.0.0"
-          }
-        },
-        "babel-plugin-jest-hoist": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz",
-          "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==",
-          "dev": true,
-          "requires": {
-            "@babel/template": "^7.3.3",
-            "@babel/types": "^7.3.3",
-            "@types/babel__core": "^7.0.0",
-            "@types/babel__traverse": "^7.0.6"
-          }
-        },
-        "babel-preset-current-node-syntax": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.0.tgz",
-          "integrity": "sha512-mGkvkpocWJes1CmMKtgGUwCeeq0pOhALyymozzDWYomHTbDLwueDYG6p4TK1YOeYHCzBzYPsWkgTto10JubI1Q==",
-          "dev": true,
-          "requires": {
-            "@babel/plugin-syntax-async-generators": "^7.8.4",
-            "@babel/plugin-syntax-bigint": "^7.8.3",
-            "@babel/plugin-syntax-class-properties": "^7.8.3",
-            "@babel/plugin-syntax-import-meta": "^7.8.3",
-            "@babel/plugin-syntax-json-strings": "^7.8.3",
-            "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
-            "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
-            "@babel/plugin-syntax-numeric-separator": "^7.8.3",
-            "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
-            "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
-            "@babel/plugin-syntax-optional-chaining": "^7.8.3",
-            "@babel/plugin-syntax-top-level-await": "^7.8.3"
-          }
-        },
-        "babel-preset-jest": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz",
-          "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==",
-          "dev": true,
-          "requires": {
-            "babel-plugin-jest-hoist": "^26.6.2",
-            "babel-preset-current-node-syntax": "^1.0.0"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "deepmerge": {
-          "version": "4.2.2",
-          "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
-          "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-get-type": {
-          "version": "26.3.0",
-          "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
-          "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
-          "dev": true
-        },
-        "jest-haste-map": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
-          "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/graceful-fs": "^4.1.2",
-            "@types/node": "*",
-            "anymatch": "^3.0.3",
-            "fb-watchman": "^2.0.0",
-            "fsevents": "^2.1.2",
-            "graceful-fs": "^4.2.4",
-            "jest-regex-util": "^26.0.0",
-            "jest-serializer": "^26.6.2",
-            "jest-util": "^26.6.2",
-            "jest-worker": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "sane": "^4.0.3",
-            "walker": "^1.0.7"
-          }
-        },
-        "jest-serializer": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
-          "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "graceful-fs": "^4.2.4"
-          }
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-diff": {
-      "version": "25.5.0",
-      "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.5.0.tgz",
-      "integrity": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==",
-      "dev": true,
-      "requires": {
-        "chalk": "^3.0.0",
-        "diff-sequences": "^25.2.6",
-        "jest-get-type": "^25.2.6",
-        "pretty-format": "^25.5.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "4.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
-          "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
-          "dev": true,
-          "requires": {
-            "@types/color-name": "^1.1.1",
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
-          "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
-          "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "jest-docblock": {
-      "version": "26.0.0",
-      "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz",
-      "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==",
-      "dev": true,
-      "requires": {
-        "detect-newline": "^3.0.0"
-      }
-    },
-    "jest-each": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz",
-      "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.6.2",
-        "chalk": "^4.0.0",
-        "jest-get-type": "^26.3.0",
-        "jest-util": "^26.6.2",
-        "pretty-format": "^26.6.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-get-type": {
-          "version": "26.3.0",
-          "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
-          "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
-          "dev": true
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-environment-enzyme": {
-      "version": "7.1.2",
-      "resolved": "https://registry.npmjs.org/jest-environment-enzyme/-/jest-environment-enzyme-7.1.2.tgz",
-      "integrity": "sha512-3tfaYAzO7qZSRrv+srQnfK16Vu5XwH/pHi8FpoqSHjKKngbHzXf7aBCBuWh8y3w0OtknHRfDMFrC60Khj+g1hA==",
-      "dev": true,
-      "requires": {
-        "jest-environment-jsdom": "^24.0.0"
-      },
-      "dependencies": {
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/types": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
-          "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "@jest/console": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz",
-          "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==",
-          "dev": true,
-          "requires": {
-            "@jest/source-map": "^24.9.0",
-            "chalk": "^2.0.1",
-            "slash": "^2.0.0"
-          }
-        },
-        "@jest/environment": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz",
-          "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==",
-          "dev": true,
-          "requires": {
-            "@jest/fake-timers": "^24.9.0",
-            "@jest/transform": "^24.9.0",
-            "@jest/types": "^24.9.0",
-            "jest-mock": "^24.9.0"
-          }
-        },
-        "@jest/fake-timers": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz",
-          "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^24.9.0",
-            "jest-message-util": "^24.9.0",
-            "jest-mock": "^24.9.0"
-          }
-        },
-        "@jest/source-map": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz",
-          "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==",
-          "dev": true,
-          "requires": {
-            "callsites": "^3.0.0",
-            "graceful-fs": "^4.1.15",
-            "source-map": "^0.6.0"
-          }
-        },
-        "@jest/test-result": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz",
-          "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==",
-          "dev": true,
-          "requires": {
-            "@jest/console": "^24.9.0",
-            "@jest/types": "^24.9.0",
-            "@types/istanbul-lib-coverage": "^2.0.0"
-          }
-        },
-        "@jest/transform": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz",
-          "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==",
-          "dev": true,
-          "requires": {
-            "@babel/core": "^7.1.0",
-            "@jest/types": "^24.9.0",
-            "babel-plugin-istanbul": "^5.1.0",
-            "chalk": "^2.0.1",
-            "convert-source-map": "^1.4.0",
-            "fast-json-stable-stringify": "^2.0.0",
-            "graceful-fs": "^4.1.15",
-            "jest-haste-map": "^24.9.0",
-            "jest-regex-util": "^24.9.0",
-            "jest-util": "^24.9.0",
-            "micromatch": "^3.1.10",
-            "pirates": "^4.0.1",
-            "realpath-native": "^1.1.0",
-            "slash": "^2.0.0",
-            "source-map": "^0.6.1",
-            "write-file-atomic": "2.4.1"
-          }
-        },
-        "@jest/types": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz",
-          "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^1.1.1",
-            "@types/yargs": "^13.0.0"
-          }
-        },
-        "@types/yargs": {
-          "version": "13.0.9",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.9.tgz",
-          "integrity": "sha512-xrvhZ4DZewMDhoH1utLtOAwYQy60eYFoXeje30TzM3VOvQlBwQaEpKFq5m34k1wOw2AKIi2pwtiAjdmhvlBUzg==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "acorn": {
-          "version": "5.7.4",
-          "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz",
-          "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==",
-          "dev": true
-        },
-        "acorn-globals": {
-          "version": "4.3.4",
-          "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz",
-          "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==",
-          "dev": true,
-          "requires": {
-            "acorn": "^6.0.1",
-            "acorn-walk": "^6.0.1"
-          },
-          "dependencies": {
-            "acorn": {
-              "version": "6.4.1",
-              "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz",
-              "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==",
-              "dev": true
-            }
-          }
-        },
-        "acorn-walk": {
-          "version": "6.2.0",
-          "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz",
-          "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "babel-plugin-istanbul": {
-          "version": "5.2.0",
-          "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz",
-          "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.0.0",
-            "find-up": "^3.0.0",
-            "istanbul-lib-instrument": "^3.3.0",
-            "test-exclude": "^5.2.3"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "cssom": {
-          "version": "0.3.8",
-          "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
-          "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
-          "dev": true
-        },
-        "cssstyle": {
-          "version": "1.4.0",
-          "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz",
-          "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==",
-          "dev": true,
-          "requires": {
-            "cssom": "0.3.x"
-          }
-        },
-        "data-urls": {
-          "version": "1.1.0",
-          "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz",
-          "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==",
-          "dev": true,
-          "requires": {
-            "abab": "^2.0.0",
-            "whatwg-mimetype": "^2.2.0",
-            "whatwg-url": "^7.0.0"
-          },
-          "dependencies": {
-            "whatwg-url": {
-              "version": "7.1.0",
-              "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz",
-              "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==",
-              "dev": true,
-              "requires": {
-                "lodash.sortby": "^4.7.0",
-                "tr46": "^1.0.1",
-                "webidl-conversions": "^4.0.2"
-              }
-            }
-          }
-        },
-        "domexception": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz",
-          "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==",
-          "dev": true,
-          "requires": {
-            "webidl-conversions": "^4.0.2"
-          }
-        },
-        "find-up": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
-          "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^3.0.0"
-          }
-        },
-        "fsevents": {
-          "version": "1.2.13",
-          "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
-          "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "bindings": "^1.5.0",
-            "nan": "^2.12.1"
-          }
-        },
-        "html-encoding-sniffer": {
-          "version": "1.0.2",
-          "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz",
-          "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==",
-          "dev": true,
-          "requires": {
-            "whatwg-encoding": "^1.0.1"
-          }
-        },
-        "istanbul-lib-coverage": {
-          "version": "2.0.5",
-          "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz",
-          "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==",
-          "dev": true
-        },
-        "istanbul-lib-instrument": {
-          "version": "3.3.0",
-          "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz",
-          "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==",
-          "dev": true,
-          "requires": {
-            "@babel/generator": "^7.4.0",
-            "@babel/parser": "^7.4.3",
-            "@babel/template": "^7.4.0",
-            "@babel/traverse": "^7.4.3",
-            "@babel/types": "^7.4.0",
-            "istanbul-lib-coverage": "^2.0.5",
-            "semver": "^6.0.0"
-          }
-        },
-        "jest-environment-jsdom": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz",
-          "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==",
-          "dev": true,
-          "requires": {
-            "@jest/environment": "^24.9.0",
-            "@jest/fake-timers": "^24.9.0",
-            "@jest/types": "^24.9.0",
-            "jest-mock": "^24.9.0",
-            "jest-util": "^24.9.0",
-            "jsdom": "^11.5.1"
-          }
-        },
-        "jest-haste-map": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz",
-          "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^24.9.0",
-            "anymatch": "^2.0.0",
-            "fb-watchman": "^2.0.0",
-            "fsevents": "^1.2.7",
-            "graceful-fs": "^4.1.15",
-            "invariant": "^2.2.4",
-            "jest-serializer": "^24.9.0",
-            "jest-util": "^24.9.0",
-            "jest-worker": "^24.9.0",
-            "micromatch": "^3.1.10",
-            "sane": "^4.0.3",
-            "walker": "^1.0.7"
-          }
-        },
-        "jest-message-util": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz",
-          "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.0.0",
-            "@jest/test-result": "^24.9.0",
-            "@jest/types": "^24.9.0",
-            "@types/stack-utils": "^1.0.1",
-            "chalk": "^2.0.1",
-            "micromatch": "^3.1.10",
-            "slash": "^2.0.0",
-            "stack-utils": "^1.0.1"
-          }
-        },
-        "jest-mock": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz",
-          "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^24.9.0"
-          }
-        },
-        "jest-regex-util": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz",
-          "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==",
-          "dev": true
-        },
-        "jest-serializer": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz",
-          "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==",
-          "dev": true
-        },
-        "jest-util": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz",
-          "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==",
-          "dev": true,
-          "requires": {
-            "@jest/console": "^24.9.0",
-            "@jest/fake-timers": "^24.9.0",
-            "@jest/source-map": "^24.9.0",
-            "@jest/test-result": "^24.9.0",
-            "@jest/types": "^24.9.0",
-            "callsites": "^3.0.0",
-            "chalk": "^2.0.1",
-            "graceful-fs": "^4.1.15",
-            "is-ci": "^2.0.0",
-            "mkdirp": "^0.5.1",
-            "slash": "^2.0.0",
-            "source-map": "^0.6.0"
-          }
-        },
-        "jest-worker": {
-          "version": "24.9.0",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz",
-          "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==",
-          "dev": true,
-          "requires": {
-            "merge-stream": "^2.0.0",
-            "supports-color": "^6.1.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "6.1.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-              "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "jsdom": {
-          "version": "11.12.0",
-          "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz",
-          "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==",
-          "dev": true,
-          "requires": {
-            "abab": "^2.0.0",
-            "acorn": "^5.5.3",
-            "acorn-globals": "^4.1.0",
-            "array-equal": "^1.0.0",
-            "cssom": ">= 0.3.2 < 0.4.0",
-            "cssstyle": "^1.0.0",
-            "data-urls": "^1.0.0",
-            "domexception": "^1.0.1",
-            "escodegen": "^1.9.1",
-            "html-encoding-sniffer": "^1.0.2",
-            "left-pad": "^1.3.0",
-            "nwsapi": "^2.0.7",
-            "parse5": "4.0.0",
-            "pn": "^1.1.0",
-            "request": "^2.87.0",
-            "request-promise-native": "^1.0.5",
-            "sax": "^1.2.4",
-            "symbol-tree": "^3.2.2",
-            "tough-cookie": "^2.3.4",
-            "w3c-hr-time": "^1.0.1",
-            "webidl-conversions": "^4.0.2",
-            "whatwg-encoding": "^1.0.3",
-            "whatwg-mimetype": "^2.1.0",
-            "whatwg-url": "^6.4.1",
-            "ws": "^5.2.0",
-            "xml-name-validator": "^3.0.0"
-          }
-        },
-        "load-json-file": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz",
-          "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=",
-          "dev": true,
-          "requires": {
-            "graceful-fs": "^4.1.2",
-            "parse-json": "^4.0.0",
-            "pify": "^3.0.0",
-            "strip-bom": "^3.0.0"
-          }
-        },
-        "locate-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
-          "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^3.0.0",
-            "path-exists": "^3.0.0"
-          }
-        },
-        "lodash": {
-          "version": "4.17.19",
-          "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
-          "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
-          "dev": true
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
-          "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.0.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "parse-json": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
-          "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
-          "dev": true,
-          "requires": {
-            "error-ex": "^1.3.1",
-            "json-parse-better-errors": "^1.0.1"
-          }
-        },
-        "parse5": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz",
-          "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==",
-          "dev": true
-        },
-        "pify": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
-          "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
-          "dev": true
-        },
-        "read-pkg": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz",
-          "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=",
-          "dev": true,
-          "requires": {
-            "load-json-file": "^4.0.0",
-            "normalize-package-data": "^2.3.2",
-            "path-type": "^3.0.0"
-          }
-        },
-        "read-pkg-up": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz",
-          "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==",
-          "dev": true,
-          "requires": {
-            "find-up": "^3.0.0",
-            "read-pkg": "^3.0.0"
-          }
-        },
-        "require-main-filename": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
-          "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
-          "dev": true
-        },
-        "semver": {
-          "version": "6.3.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "stack-utils": {
-          "version": "1.0.2",
-          "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz",
-          "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "test-exclude": {
-          "version": "5.2.3",
-          "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz",
-          "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==",
-          "dev": true,
-          "requires": {
-            "glob": "^7.1.3",
-            "minimatch": "^3.0.4",
-            "read-pkg-up": "^4.0.0",
-            "require-main-filename": "^2.0.0"
-          }
-        },
-        "write-file-atomic": {
-          "version": "2.4.1",
-          "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz",
-          "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==",
-          "dev": true,
-          "requires": {
-            "graceful-fs": "^4.1.11",
-            "imurmurhash": "^0.1.4",
-            "signal-exit": "^3.0.2"
-          }
-        },
-        "ws": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz",
-          "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==",
-          "dev": true,
-          "requires": {
-            "async-limiter": "~1.0.0"
-          }
-        }
-      }
-    },
-    "jest-environment-jsdom": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz",
-      "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==",
-      "dev": true,
-      "requires": {
-        "@jest/environment": "^26.6.2",
-        "@jest/fake-timers": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/node": "*",
-        "jest-mock": "^26.6.2",
-        "jest-util": "^26.6.2",
-        "jsdom": "^16.4.0"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-environment-node": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz",
-      "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==",
-      "dev": true,
-      "requires": {
-        "@jest/environment": "^26.6.2",
-        "@jest/fake-timers": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/node": "*",
-        "jest-mock": "^26.6.2",
-        "jest-util": "^26.6.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-enzyme": {
-      "version": "7.1.2",
-      "resolved": "https://registry.npmjs.org/jest-enzyme/-/jest-enzyme-7.1.2.tgz",
-      "integrity": "sha512-j+jkph3t5hGBS12eOldpfsnERYRCHi4c/0KWPMnqRPoJJXvCpLIc5th1MHl0xDznQDXVU0AHUXg3rqMrf8vGpA==",
-      "dev": true,
-      "requires": {
-        "enzyme-matchers": "^7.1.2",
-        "enzyme-to-json": "^3.3.0",
-        "jest-environment-enzyme": "^7.1.2"
-      }
-    },
-    "jest-get-type": {
-      "version": "25.2.6",
-      "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz",
-      "integrity": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==",
-      "dev": true
-    },
-    "jest-haste-map": {
-      "version": "26.1.0",
-      "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.1.0.tgz",
-      "integrity": "sha512-WeBS54xCIz9twzkEdm6+vJBXgRBQfdbbXD0dk8lJh7gLihopABlJmIQFdWSDDtuDe4PRiObsjZSUjbJ1uhWEpA==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.1.0",
-        "@types/graceful-fs": "^4.1.2",
-        "anymatch": "^3.0.3",
-        "fb-watchman": "^2.0.0",
-        "fsevents": "^2.1.2",
-        "graceful-fs": "^4.2.4",
-        "jest-serializer": "^26.1.0",
-        "jest-util": "^26.1.0",
-        "jest-worker": "^26.1.0",
-        "micromatch": "^4.0.2",
-        "sane": "^4.0.3",
-        "walker": "^1.0.7",
-        "which": "^2.0.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.1.0",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.1.0.tgz",
-          "integrity": "sha512-GXigDDsp6ZlNMhXQDeuy/iYCDsRIHJabWtDzvnn36+aqFfG14JmFV0e/iXxY4SP9vbXSiPNOWdehU5MeqrYHBQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^1.1.1",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.5",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.5.tgz",
-          "integrity": "sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
-          "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
-          "dev": true,
-          "requires": {
-            "@types/color-name": "^1.1.1",
-            "color-convert": "^2.0.1"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "fsevents": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
-          "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
-          "dev": true,
-          "optional": true
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
-          "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        },
-        "which": {
-          "version": "2.0.2",
-          "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
-          "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
-          "dev": true,
-          "requires": {
-            "isexe": "^2.0.0"
-          }
-        }
-      }
-    },
-    "jest-jasmine2": {
-      "version": "26.6.3",
-      "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz",
-      "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==",
-      "dev": true,
-      "requires": {
-        "@babel/traverse": "^7.1.0",
-        "@jest/environment": "^26.6.2",
-        "@jest/source-map": "^26.6.2",
-        "@jest/test-result": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/node": "*",
-        "chalk": "^4.0.0",
-        "co": "^4.6.0",
-        "expect": "^26.6.2",
-        "is-generator-fn": "^2.0.0",
-        "jest-each": "^26.6.2",
-        "jest-matcher-utils": "^26.6.2",
-        "jest-message-util": "^26.6.2",
-        "jest-runtime": "^26.6.3",
-        "jest-snapshot": "^26.6.2",
-        "jest-util": "^26.6.2",
-        "pretty-format": "^26.6.2",
-        "throat": "^5.0.0"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-leak-detector": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz",
-      "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==",
-      "dev": true,
-      "requires": {
-        "jest-get-type": "^26.3.0",
-        "pretty-format": "^26.6.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "jest-get-type": {
-          "version": "26.3.0",
-          "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
-          "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
-          "dev": true
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "jest-matcher-utils": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz",
-      "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==",
-      "dev": true,
-      "requires": {
-        "chalk": "^4.0.0",
-        "jest-diff": "^26.6.2",
-        "jest-get-type": "^26.3.0",
-        "pretty-format": "^26.6.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "diff-sequences": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz",
-          "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "jest-diff": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz",
-          "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==",
-          "dev": true,
-          "requires": {
-            "chalk": "^4.0.0",
-            "diff-sequences": "^26.6.2",
-            "jest-get-type": "^26.3.0",
-            "pretty-format": "^26.6.2"
-          }
-        },
-        "jest-get-type": {
-          "version": "26.3.0",
-          "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
-          "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
-          "dev": true
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "jest-message-util": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz",
-      "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==",
-      "dev": true,
-      "requires": {
-        "@babel/code-frame": "^7.0.0",
-        "@jest/types": "^26.6.2",
-        "@types/stack-utils": "^2.0.0",
-        "chalk": "^4.0.0",
-        "graceful-fs": "^4.2.4",
-        "micromatch": "^4.0.2",
-        "pretty-format": "^26.6.2",
-        "slash": "^3.0.0",
-        "stack-utils": "^2.0.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/stack-utils": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz",
-          "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==",
-          "dev": true
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-mock": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz",
-      "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.6.2",
-        "@types/node": "*"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "jest-pnp-resolver": {
-      "version": "1.2.2",
-      "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz",
-      "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==",
-      "dev": true
-    },
-    "jest-regex-util": {
-      "version": "26.0.0",
-      "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz",
-      "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==",
-      "dev": true
-    },
-    "jest-resolve": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz",
-      "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.6.2",
-        "chalk": "^4.0.0",
-        "graceful-fs": "^4.2.4",
-        "jest-pnp-resolver": "^1.2.2",
-        "jest-util": "^26.6.2",
-        "read-pkg-up": "^7.0.1",
-        "resolve": "^1.18.1",
-        "slash": "^3.0.0"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "resolve": {
-          "version": "1.19.0",
-          "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
-          "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
-          "dev": true,
-          "requires": {
-            "is-core-module": "^2.1.0",
-            "path-parse": "^1.0.6"
-          }
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-resolve-dependencies": {
-      "version": "26.6.3",
-      "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz",
-      "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.6.2",
-        "jest-regex-util": "^26.0.0",
-        "jest-snapshot": "^26.6.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "jest-runner": {
-      "version": "26.6.3",
-      "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz",
-      "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==",
-      "dev": true,
-      "requires": {
-        "@jest/console": "^26.6.2",
-        "@jest/environment": "^26.6.2",
-        "@jest/test-result": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/node": "*",
-        "chalk": "^4.0.0",
-        "emittery": "^0.7.1",
-        "exit": "^0.1.2",
-        "graceful-fs": "^4.2.4",
-        "jest-config": "^26.6.3",
-        "jest-docblock": "^26.0.0",
-        "jest-haste-map": "^26.6.2",
-        "jest-leak-detector": "^26.6.2",
-        "jest-message-util": "^26.6.2",
-        "jest-resolve": "^26.6.2",
-        "jest-runtime": "^26.6.3",
-        "jest-util": "^26.6.2",
-        "jest-worker": "^26.6.2",
-        "source-map-support": "^0.5.6",
-        "throat": "^5.0.0"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-haste-map": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
-          "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/graceful-fs": "^4.1.2",
-            "@types/node": "*",
-            "anymatch": "^3.0.3",
-            "fb-watchman": "^2.0.0",
-            "fsevents": "^2.1.2",
-            "graceful-fs": "^4.2.4",
-            "jest-regex-util": "^26.0.0",
-            "jest-serializer": "^26.6.2",
-            "jest-util": "^26.6.2",
-            "jest-worker": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "sane": "^4.0.3",
-            "walker": "^1.0.7"
-          }
-        },
-        "jest-serializer": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
-          "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "graceful-fs": "^4.2.4"
-          }
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-runtime": {
-      "version": "26.6.3",
-      "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz",
-      "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==",
-      "dev": true,
-      "requires": {
-        "@jest/console": "^26.6.2",
-        "@jest/environment": "^26.6.2",
-        "@jest/fake-timers": "^26.6.2",
-        "@jest/globals": "^26.6.2",
-        "@jest/source-map": "^26.6.2",
-        "@jest/test-result": "^26.6.2",
-        "@jest/transform": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/yargs": "^15.0.0",
-        "chalk": "^4.0.0",
-        "cjs-module-lexer": "^0.6.0",
-        "collect-v8-coverage": "^1.0.0",
-        "exit": "^0.1.2",
-        "glob": "^7.1.3",
-        "graceful-fs": "^4.2.4",
-        "jest-config": "^26.6.3",
-        "jest-haste-map": "^26.6.2",
-        "jest-message-util": "^26.6.2",
-        "jest-mock": "^26.6.2",
-        "jest-regex-util": "^26.0.0",
-        "jest-resolve": "^26.6.2",
-        "jest-snapshot": "^26.6.2",
-        "jest-util": "^26.6.2",
-        "jest-validate": "^26.6.2",
-        "slash": "^3.0.0",
-        "strip-bom": "^4.0.0",
-        "yargs": "^15.4.1"
-      },
-      "dependencies": {
-        "@jest/transform": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
-          "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
-          "dev": true,
-          "requires": {
-            "@babel/core": "^7.1.0",
-            "@jest/types": "^26.6.2",
-            "babel-plugin-istanbul": "^6.0.0",
-            "chalk": "^4.0.0",
-            "convert-source-map": "^1.4.0",
-            "fast-json-stable-stringify": "^2.0.0",
-            "graceful-fs": "^4.2.4",
-            "jest-haste-map": "^26.6.2",
-            "jest-regex-util": "^26.0.0",
-            "jest-util": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "pirates": "^4.0.1",
-            "slash": "^3.0.0",
-            "source-map": "^0.6.1",
-            "write-file-atomic": "^3.0.0"
-          }
-        },
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-haste-map": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
-          "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/graceful-fs": "^4.1.2",
-            "@types/node": "*",
-            "anymatch": "^3.0.3",
-            "fb-watchman": "^2.0.0",
-            "fsevents": "^2.1.2",
-            "graceful-fs": "^4.2.4",
-            "jest-regex-util": "^26.0.0",
-            "jest-serializer": "^26.6.2",
-            "jest-util": "^26.6.2",
-            "jest-worker": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "sane": "^4.0.3",
-            "walker": "^1.0.7"
-          }
-        },
-        "jest-serializer": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
-          "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "graceful-fs": "^4.2.4"
-          }
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "slash": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
-          "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "strip-bom": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
-          "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-serializer": {
-      "version": "26.1.0",
-      "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.1.0.tgz",
-      "integrity": "sha512-eqZOQG/0+MHmr25b2Z86g7+Kzd5dG9dhCiUoyUNJPgiqi38DqbDEOlHcNijyfZoj74soGBohKBZuJFS18YTJ5w==",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "^4.2.4"
-      },
-      "dependencies": {
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        }
-      }
-    },
-    "jest-snapshot": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz",
-      "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==",
-      "dev": true,
-      "requires": {
-        "@babel/types": "^7.0.0",
-        "@jest/types": "^26.6.2",
-        "@types/babel__traverse": "^7.0.4",
-        "@types/prettier": "^2.0.0",
-        "chalk": "^4.0.0",
-        "expect": "^26.6.2",
-        "graceful-fs": "^4.2.4",
-        "jest-diff": "^26.6.2",
-        "jest-get-type": "^26.3.0",
-        "jest-haste-map": "^26.6.2",
-        "jest-matcher-utils": "^26.6.2",
-        "jest-message-util": "^26.6.2",
-        "jest-resolve": "^26.6.2",
-        "natural-compare": "^1.4.0",
-        "pretty-format": "^26.6.2",
-        "semver": "^7.3.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "diff-sequences": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz",
-          "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-diff": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz",
-          "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==",
-          "dev": true,
-          "requires": {
-            "chalk": "^4.0.0",
-            "diff-sequences": "^26.6.2",
-            "jest-get-type": "^26.3.0",
-            "pretty-format": "^26.6.2"
-          }
-        },
-        "jest-get-type": {
-          "version": "26.3.0",
-          "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
-          "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
-          "dev": true
-        },
-        "jest-haste-map": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
-          "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/graceful-fs": "^4.1.2",
-            "@types/node": "*",
-            "anymatch": "^3.0.3",
-            "fb-watchman": "^2.0.0",
-            "fsevents": "^2.1.2",
-            "graceful-fs": "^4.2.4",
-            "jest-regex-util": "^26.0.0",
-            "jest-serializer": "^26.6.2",
-            "jest-util": "^26.6.2",
-            "jest-worker": "^26.6.2",
-            "micromatch": "^4.0.2",
-            "sane": "^4.0.3",
-            "walker": "^1.0.7"
-          }
-        },
-        "jest-serializer": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
-          "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "graceful-fs": "^4.2.4"
-          }
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "jest-worker": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
-          "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
-          "dev": true,
-          "requires": {
-            "@types/node": "*",
-            "merge-stream": "^2.0.0",
-            "supports-color": "^7.0.0"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "semver": {
-          "version": "7.3.2",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
-          "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-util": {
-      "version": "26.1.0",
-      "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.1.0.tgz",
-      "integrity": "sha512-rNMOwFQevljfNGvbzNQAxdmXQ+NawW/J72dmddsK0E8vgxXCMtwQ/EH0BiWEIxh0hhMcTsxwAxINt7Lh46Uzbg==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.1.0",
-        "chalk": "^4.0.0",
-        "graceful-fs": "^4.2.4",
-        "is-ci": "^2.0.0",
-        "micromatch": "^4.0.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.1.0",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.1.0.tgz",
-          "integrity": "sha512-GXigDDsp6ZlNMhXQDeuy/iYCDsRIHJabWtDzvnn36+aqFfG14JmFV0e/iXxY4SP9vbXSiPNOWdehU5MeqrYHBQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^1.1.1",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.5",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.5.tgz",
-          "integrity": "sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
-          "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
-          "dev": true,
-          "requires": {
-            "@types/color-name": "^1.1.1",
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "supports-color": {
-          "version": "7.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
-          "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-validate": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz",
-      "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^26.6.2",
-        "camelcase": "^6.0.0",
-        "chalk": "^4.0.0",
-        "jest-get-type": "^26.3.0",
-        "leven": "^3.1.0",
-        "pretty-format": "^26.6.2"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "camelcase": {
-          "version": "6.2.0",
-          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz",
-          "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==",
-          "dev": true
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "jest-get-type": {
-          "version": "26.3.0",
-          "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
-          "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
-          "dev": true
-        },
-        "pretty-format": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
-          "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "ansi-regex": "^5.0.0",
-            "ansi-styles": "^4.0.0",
-            "react-is": "^17.0.1"
-          }
-        },
-        "react-is": {
-          "version": "17.0.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
-          "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "jest-watcher": {
-      "version": "26.6.2",
-      "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz",
-      "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==",
-      "dev": true,
-      "requires": {
-        "@jest/test-result": "^26.6.2",
-        "@jest/types": "^26.6.2",
-        "@types/node": "*",
-        "ansi-escapes": "^4.2.1",
-        "chalk": "^4.0.0",
-        "jest-util": "^26.6.2",
-        "string-length": "^4.0.1"
-      },
-      "dependencies": {
-        "@jest/types": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
-          "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-coverage": "^2.0.0",
-            "@types/istanbul-reports": "^3.0.0",
-            "@types/node": "*",
-            "@types/yargs": "^15.0.0",
-            "chalk": "^4.0.0"
-          }
-        },
-        "@types/istanbul-reports": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
-          "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
-          "dev": true,
-          "requires": {
-            "@types/istanbul-lib-report": "*"
-          }
-        },
-        "@types/yargs": {
-          "version": "15.0.10",
-          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz",
-          "integrity": "sha512-z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ==",
-          "dev": true,
-          "requires": {
-            "@types/yargs-parser": "*"
-          }
-        },
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
-          "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^4.1.0",
-            "supports-color": "^7.1.0"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "graceful-fs": {
-          "version": "4.2.4",
-          "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
-          "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
-          "dev": true
-        },
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "jest-util": {
-          "version": "26.6.2",
-          "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
-          "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
-          "dev": true,
-          "requires": {
-            "@jest/types": "^26.6.2",
-            "@types/node": "*",
-            "chalk": "^4.0.0",
-            "graceful-fs": "^4.2.4",
-            "is-ci": "^2.0.0",
-            "micromatch": "^4.0.2"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "jest-worker": {
-      "version": "26.1.0",
-      "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.1.0.tgz",
-      "integrity": "sha512-Z9P5pZ6UC+kakMbNJn+tA2RdVdNX5WH1x+5UCBZ9MxIK24pjYtFt96fK+UwBTrjLYm232g1xz0L3eTh51OW+yQ==",
-      "dev": true,
-      "requires": {
-        "merge-stream": "^2.0.0",
-        "supports-color": "^7.0.0"
-      },
-      "dependencies": {
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
-          "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "jquery": {
-      "version": "3.5.1",
-      "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.5.1.tgz",
-      "integrity": "sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg=="
-    },
-    "js-beautify": {
-      "version": "1.11.0",
-      "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.11.0.tgz",
-      "integrity": "sha512-a26B+Cx7USQGSWnz9YxgJNMmML/QG2nqIaL7VVYPCXbqiKz8PN0waSNvroMtvAK6tY7g/wPdNWGEP+JTNIBr6A==",
-      "dev": true,
-      "requires": {
-        "config-chain": "^1.1.12",
-        "editorconfig": "^0.15.3",
-        "glob": "^7.1.3",
-        "mkdirp": "~1.0.3",
-        "nopt": "^4.0.3"
-      },
-      "dependencies": {
-        "mkdirp": {
-          "version": "1.0.4",
-          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
-          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
-          "dev": true
-        }
-      }
-    },
-    "js-levenshtein": {
-      "version": "1.1.6",
-      "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz",
-      "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g=="
-    },
-    "js-string-escape": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz",
-      "integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=",
-      "dev": true
-    },
-    "js-tokens": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
-      "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
-    },
-    "js-yaml": {
-      "version": "3.13.1",
-      "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
-      "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
-      "dev": true,
-      "requires": {
-        "argparse": "^1.0.7",
-        "esprima": "^4.0.0"
-      },
-      "dependencies": {
-        "esprima": {
-          "version": "4.0.1",
-          "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
-          "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
-          "dev": true
-        }
-      }
-    },
-    "jsbn": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
-      "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
-      "dev": true
-    },
-    "jsdom": {
-      "version": "16.4.0",
-      "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz",
-      "integrity": "sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==",
-      "dev": true,
-      "requires": {
-        "abab": "^2.0.3",
-        "acorn": "^7.1.1",
-        "acorn-globals": "^6.0.0",
-        "cssom": "^0.4.4",
-        "cssstyle": "^2.2.0",
-        "data-urls": "^2.0.0",
-        "decimal.js": "^10.2.0",
-        "domexception": "^2.0.1",
-        "escodegen": "^1.14.1",
-        "html-encoding-sniffer": "^2.0.1",
-        "is-potential-custom-element-name": "^1.0.0",
-        "nwsapi": "^2.2.0",
-        "parse5": "5.1.1",
-        "request": "^2.88.2",
-        "request-promise-native": "^1.0.8",
-        "saxes": "^5.0.0",
-        "symbol-tree": "^3.2.4",
-        "tough-cookie": "^3.0.1",
-        "w3c-hr-time": "^1.0.2",
-        "w3c-xmlserializer": "^2.0.0",
-        "webidl-conversions": "^6.1.0",
-        "whatwg-encoding": "^1.0.5",
-        "whatwg-mimetype": "^2.3.0",
-        "whatwg-url": "^8.0.0",
-        "ws": "^7.2.3",
-        "xml-name-validator": "^3.0.0"
-      },
-      "dependencies": {
-        "escodegen": {
-          "version": "1.14.3",
-          "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
-          "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
-          "dev": true,
-          "requires": {
-            "esprima": "^4.0.1",
-            "estraverse": "^4.2.0",
-            "esutils": "^2.0.2",
-            "optionator": "^0.8.1",
-            "source-map": "~0.6.1"
-          }
-        },
-        "esprima": {
-          "version": "4.0.1",
-          "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
-          "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
-          "dev": true
-        },
-        "parse5": {
-          "version": "5.1.1",
-          "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz",
-          "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==",
-          "dev": true
-        },
-        "request": {
-          "version": "2.88.2",
-          "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
-          "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
-          "dev": true,
-          "requires": {
-            "aws-sign2": "~0.7.0",
-            "aws4": "^1.8.0",
-            "caseless": "~0.12.0",
-            "combined-stream": "~1.0.6",
-            "extend": "~3.0.2",
-            "forever-agent": "~0.6.1",
-            "form-data": "~2.3.2",
-            "har-validator": "~5.1.3",
-            "http-signature": "~1.2.0",
-            "is-typedarray": "~1.0.0",
-            "isstream": "~0.1.2",
-            "json-stringify-safe": "~5.0.1",
-            "mime-types": "~2.1.19",
-            "oauth-sign": "~0.9.0",
-            "performance-now": "^2.1.0",
-            "qs": "~6.5.2",
-            "safe-buffer": "^5.1.2",
-            "tough-cookie": "~2.5.0",
-            "tunnel-agent": "^0.6.0",
-            "uuid": "^3.3.2"
-          },
-          "dependencies": {
-            "tough-cookie": {
-              "version": "2.5.0",
-              "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
-              "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
-              "dev": true,
-              "requires": {
-                "psl": "^1.1.28",
-                "punycode": "^2.1.1"
-              }
-            }
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true,
-          "optional": true
-        },
-        "tough-cookie": {
-          "version": "3.0.1",
-          "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz",
-          "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==",
-          "dev": true,
-          "requires": {
-            "ip-regex": "^2.1.0",
-            "psl": "^1.1.28",
-            "punycode": "^2.1.1"
-          }
-        },
-        "tr46": {
-          "version": "2.0.2",
-          "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz",
-          "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==",
-          "dev": true,
-          "requires": {
-            "punycode": "^2.1.1"
-          }
-        },
-        "webidl-conversions": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
-          "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
-          "dev": true
-        },
-        "whatwg-url": {
-          "version": "8.4.0",
-          "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz",
-          "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==",
-          "dev": true,
-          "requires": {
-            "lodash.sortby": "^4.7.0",
-            "tr46": "^2.0.2",
-            "webidl-conversions": "^6.1.0"
-          }
-        }
-      }
-    },
-    "jsesc": {
-      "version": "2.5.2",
-      "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
-      "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
-      "dev": true
-    },
-    "json-bigint": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
-      "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
-      "requires": {
-        "bignumber.js": "^9.0.0"
-      }
-    },
-    "json-parse-better-errors": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
-      "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="
-    },
-    "json-parse-even-better-errors": {
-      "version": "2.3.1",
-      "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
-      "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
-      "dev": true
-    },
-    "json-schema": {
-      "version": "0.2.3",
-      "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
-      "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
-      "dev": true
-    },
-    "json-schema-traverse": {
-      "version": "0.4.1",
-      "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
-      "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
-      "dev": true
-    },
-    "json-stable-stringify-without-jsonify": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
-      "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
-      "dev": true
-    },
-    "json-stringify-pretty-compact": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-2.0.0.tgz",
-      "integrity": "sha512-WRitRfs6BGq4q8gTgOy4ek7iPFXjbra0H3PmDLKm2xnZ+Gh1HUhiKGgCZkSPNULlP7mvfu6FV/mOLhCarspADQ=="
-    },
-    "json-stringify-safe": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
-      "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
-      "dev": true
-    },
-    "json2mq": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz",
-      "integrity": "sha1-tje9O6nqvhIsg+lyBIOusQ0skEo=",
-      "requires": {
-        "string-convert": "^0.2.0"
-      }
-    },
-    "json3": {
-      "version": "3.3.3",
-      "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz",
-      "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==",
-      "dev": true
-    },
-    "json5": {
-      "version": "0.5.1",
-      "resolved": "http://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
-      "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE="
-    },
-    "jsonfile": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
-      "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "^4.1.6"
-      }
-    },
-    "jsprim": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
-      "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "1.0.0",
-        "extsprintf": "1.3.0",
-        "json-schema": "0.2.3",
-        "verror": "1.10.0"
-      }
-    },
-    "jsx-ast-utils": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz",
-      "integrity": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==",
-      "dev": true,
-      "requires": {
-        "array-includes": "^3.1.2",
-        "object.assign": "^4.1.2"
-      },
-      "dependencies": {
-        "array-includes": {
-          "version": "3.1.2",
-          "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.2.tgz",
-          "integrity": "sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "es-abstract": "^1.18.0-next.1",
-            "get-intrinsic": "^1.0.1",
-            "is-string": "^1.0.5"
-          }
-        },
-        "es-abstract": {
-          "version": "1.18.0-next.1",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
-          "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.2",
-            "is-negative-zero": "^2.0.0",
-            "is-regex": "^1.1.1",
-            "object-inspect": "^1.8.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.1",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.2",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
-          "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-string": {
-          "version": "1.0.5",
-          "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
-          "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
-          "dev": true
-        },
-        "object-inspect": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz",
-          "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        },
-        "object.assign": {
-          "version": "4.1.2",
-          "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
-          "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
-          "dev": true,
-          "requires": {
-            "call-bind": "^1.0.0",
-            "define-properties": "^1.1.3",
-            "has-symbols": "^1.0.1",
-            "object-keys": "^1.1.1"
-          }
-        }
-      }
-    },
-    "just-extend": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-4.1.0.tgz",
-      "integrity": "sha512-ApcjaOdVTJ7y4r08xI5wIqpvwS48Q0PBG4DJROcEkH1f8MdAiNFyFxz3xoL0LWAVwjrwPYZdVHHxhRHcx/uGLA==",
-      "dev": true
-    },
-    "kdbush": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz",
-      "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew=="
-    },
-    "keycode": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/keycode/-/keycode-2.2.0.tgz",
-      "integrity": "sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ="
-    },
-    "killable": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz",
-      "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==",
-      "dev": true
-    },
-    "kind-of": {
-      "version": "5.1.0",
-      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
-      "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
-      "dev": true
-    },
-    "klaw": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
-      "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "^4.1.9"
-      }
-    },
-    "kleur": {
-      "version": "3.0.3",
-      "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
-      "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
-      "dev": true
-    },
-    "language-subtag-registry": {
-      "version": "0.3.21",
-      "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz",
-      "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==",
-      "dev": true
-    },
-    "language-tags": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
-      "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=",
-      "dev": true,
-      "requires": {
-        "language-subtag-registry": "~0.3.2"
-      }
-    },
-    "last-call-webpack-plugin": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz",
-      "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==",
-      "dev": true,
-      "requires": {
-        "lodash": "^4.17.5",
-        "webpack-sources": "^1.1.0"
-      }
-    },
-    "lazy-cache": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
-      "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=",
-      "dev": true
-    },
-    "lazy-universal-dotenv": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-3.0.1.tgz",
-      "integrity": "sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.5.0",
-        "app-root-dir": "^1.0.2",
-        "core-js": "^3.0.4",
-        "dotenv": "^8.0.0",
-        "dotenv-expand": "^5.1.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.11.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz",
-          "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "dotenv": {
-          "version": "8.2.0",
-          "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
-          "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==",
-          "dev": true
-        }
-      }
-    },
-    "lcid": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz",
-      "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==",
-      "dev": true,
-      "requires": {
-        "invert-kv": "^2.0.0"
-      }
-    },
-    "left-pad": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz",
-      "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==",
-      "dev": true
-    },
-    "less": {
-      "version": "3.12.2",
-      "resolved": "https://registry.npmjs.org/less/-/less-3.12.2.tgz",
-      "integrity": "sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==",
-      "dev": true,
-      "requires": {
-        "errno": "^0.1.1",
-        "graceful-fs": "^4.1.2",
-        "image-size": "~0.5.0",
-        "make-dir": "^2.1.0",
-        "mime": "^1.4.1",
-        "native-request": "^1.0.5",
-        "source-map": "~0.6.0",
-        "tslib": "^1.10.0"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true,
-          "optional": true
-        }
-      }
-    },
-    "less-loader": {
-      "version": "5.0.0",
-      "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-5.0.0.tgz",
-      "integrity": "sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==",
-      "dev": true,
-      "requires": {
-        "clone": "^2.1.1",
-        "loader-utils": "^1.1.0",
-        "pify": "^4.0.1"
-      },
-      "dependencies": {
-        "pify": {
-          "version": "4.0.1",
-          "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
-          "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
-          "dev": true
-        }
-      }
-    },
-    "leven": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
-      "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
-      "dev": true
-    },
-    "levenary": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz",
-      "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==",
-      "dev": true,
-      "requires": {
-        "leven": "^3.1.0"
-      }
-    },
-    "levn": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
-      "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
-      "requires": {
-        "prelude-ls": "~1.1.2",
-        "type-check": "~0.3.2"
-      }
-    },
-    "lines-and-columns": {
-      "version": "1.1.6",
-      "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz",
-      "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA="
-    },
-    "load-json-file": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
-      "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "^4.1.2",
-        "parse-json": "^2.2.0",
-        "pify": "^2.0.0",
-        "strip-bom": "^3.0.0"
-      }
-    },
-    "loader-runner": {
-      "version": "2.3.1",
-      "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.1.tgz",
-      "integrity": "sha512-By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw==",
-      "dev": true
-    },
-    "loader-utils": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz",
-      "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=",
-      "requires": {
-        "big.js": "^3.1.3",
-        "emojis-list": "^2.0.0",
-        "json5": "^0.5.0"
-      }
-    },
-    "locate-path": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
-      "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
-      "dev": true,
-      "requires": {
-        "p-locate": "^2.0.0",
-        "path-exists": "^3.0.0"
-      }
-    },
-    "lodash": {
-      "version": "4.17.20",
-      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
-      "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
-    },
-    "lodash-es": {
-      "version": "4.17.15",
-      "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.15.tgz",
-      "integrity": "sha512-rlrc3yU3+JNOpZ9zj5pQtxnx2THmvRykwL4Xlxoa8I9lHBlVbbyPhgyPMioxVZ4NqyxaVVtaJnzsyOidQIhyyQ=="
-    },
-    "lodash._baseisequal": {
-      "version": "3.0.7",
-      "resolved": "https://registry.npmjs.org/lodash._baseisequal/-/lodash._baseisequal-3.0.7.tgz",
-      "integrity": "sha1-2AJfdjOdKTQnZ9zIh85cuVpbUfE=",
-      "dev": true,
-      "requires": {
-        "lodash.isarray": "^3.0.0",
-        "lodash.istypedarray": "^3.0.0",
-        "lodash.keys": "^3.0.0"
-      }
-    },
-    "lodash._bindcallback": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz",
-      "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=",
-      "dev": true
-    },
-    "lodash._getnative": {
-      "version": "3.9.1",
-      "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz",
-      "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=",
-      "dev": true
-    },
-    "lodash.camelcase": {
-      "version": "4.3.0",
-      "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
-      "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY="
-    },
-    "lodash.curry": {
-      "version": "4.1.1",
-      "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz",
-      "integrity": "sha1-JI42By7ekGUB11lmIAqG2riyMXA="
-    },
-    "lodash.debounce": {
-      "version": "4.0.8",
-      "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
-      "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168="
-    },
-    "lodash.escape": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz",
-      "integrity": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=",
-      "dev": true
-    },
-    "lodash.flattendeep": {
-      "version": "4.4.0",
-      "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz",
-      "integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=",
-      "dev": true
-    },
-    "lodash.flow": {
-      "version": "3.5.0",
-      "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz",
-      "integrity": "sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o="
-    },
-    "lodash.get": {
-      "version": "4.4.2",
-      "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
-      "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
-    },
-    "lodash.isarguments": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz",
-      "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=",
-      "dev": true
-    },
-    "lodash.isarray": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz",
-      "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=",
-      "dev": true
-    },
-    "lodash.isequal": {
-      "version": "4.5.0",
-      "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
-      "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA="
-    },
-    "lodash.isplainobject": {
-      "version": "4.0.6",
-      "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
-      "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=",
-      "dev": true
-    },
-    "lodash.istypedarray": {
-      "version": "3.0.6",
-      "resolved": "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz",
-      "integrity": "sha1-yaR3SYYHUB2OhJTSg7h8OSgc72I=",
-      "dev": true
-    },
-    "lodash.keys": {
-      "version": "3.1.2",
-      "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz",
-      "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=",
-      "dev": true,
-      "requires": {
-        "lodash._getnative": "^3.0.0",
-        "lodash.isarguments": "^3.0.0",
-        "lodash.isarray": "^3.0.0"
-      }
-    },
-    "lodash.memoize": {
-      "version": "4.1.2",
-      "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
-      "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=",
-      "dev": true
-    },
-    "lodash.sortby": {
-      "version": "4.7.0",
-      "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
-      "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=",
-      "dev": true
-    },
-    "lodash.throttle": {
-      "version": "4.1.1",
-      "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz",
-      "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ="
-    },
-    "lodash.topath": {
-      "version": "4.5.2",
-      "resolved": "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz",
-      "integrity": "sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak="
-    },
-    "lodash.uniq": {
-      "version": "4.5.0",
-      "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
-      "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
-      "dev": true
-    },
-    "log-symbols": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz",
-      "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==",
-      "dev": true,
-      "requires": {
-        "chalk": "^2.0.1"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "loglevel": {
-      "version": "1.7.0",
-      "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.0.tgz",
-      "integrity": "sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ==",
-      "dev": true
-    },
-    "loglevelnext": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/loglevelnext/-/loglevelnext-1.0.5.tgz",
-      "integrity": "sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==",
-      "dev": true,
-      "requires": {
-        "es6-symbol": "^3.1.1",
-        "object.assign": "^4.1.0"
-      }
-    },
-    "long": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz",
-      "integrity": "sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s="
-    },
-    "loose-envify": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
-      "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
-      "requires": {
-        "js-tokens": "^3.0.0 || ^4.0.0"
-      }
-    },
-    "lower-case": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.1.tgz",
-      "integrity": "sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ==",
-      "dev": true,
-      "requires": {
-        "tslib": "^1.10.0"
-      }
-    },
-    "lowlight": {
-      "version": "1.16.0",
-      "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.16.0.tgz",
-      "integrity": "sha512-ECLdzIJvBEjK4ef51sWiGZyz21yx4IEPaF/62DRxLehoOHkWqN3OsLB1GUMfc6Mcf87rR5eW7z6lI9cNEXZDsQ==",
-      "requires": {
-        "fault": "^1.0.0",
-        "highlight.js": "~10.3.0"
-      }
-    },
-    "lru-cache": {
-      "version": "5.1.1",
-      "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
-      "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
-      "dev": true,
-      "requires": {
-        "yallist": "^3.0.2"
-      }
-    },
-    "lz-string": {
-      "version": "1.4.4",
-      "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz",
-      "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=",
-      "dev": true
-    },
-    "magic-string": {
-      "version": "0.22.5",
-      "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz",
-      "integrity": "sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==",
-      "requires": {
-        "vlq": "^0.2.2"
-      }
-    },
-    "make-dir": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
-      "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
-      "dev": true,
-      "requires": {
-        "pify": "^4.0.1",
-        "semver": "^5.6.0"
-      },
-      "dependencies": {
-        "pify": {
-          "version": "4.0.1",
-          "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
-          "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
-          "dev": true
-        }
-      }
-    },
-    "make-error": {
-      "version": "1.3.6",
-      "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
-      "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
-      "dev": true
-    },
-    "makeerror": {
-      "version": "1.0.11",
-      "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz",
-      "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=",
-      "dev": true,
-      "requires": {
-        "tmpl": "1.0.x"
-      }
-    },
-    "map-age-cleaner": {
-      "version": "0.1.3",
-      "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz",
-      "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==",
-      "dev": true,
-      "requires": {
-        "p-defer": "^1.0.0"
-      }
-    },
-    "map-cache": {
-      "version": "0.2.2",
-      "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
-      "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
-      "dev": true
-    },
-    "map-or-similar": {
-      "version": "1.5.0",
-      "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz",
-      "integrity": "sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=",
-      "dev": true
-    },
-    "map-visit": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
-      "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
-      "dev": true,
-      "requires": {
-        "object-visit": "^1.0.0"
-      }
-    },
-    "mapbox-gl": {
-      "version": "0.53.1",
-      "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-0.53.1.tgz",
-      "integrity": "sha512-dTtW/qlkUowKGlqOhE8fqII2Tj4lcokvlZwUDLnkjy4uQ9zMFnVBULGeSzzTVkj9HtQZ3Zbey10/jmoVPV9t5w==",
-      "requires": {
-        "@mapbox/geojson-rewind": "^0.4.0",
-        "@mapbox/geojson-types": "^1.0.2",
-        "@mapbox/jsonlint-lines-primitives": "^2.0.2",
-        "@mapbox/mapbox-gl-supported": "^1.4.0",
-        "@mapbox/point-geometry": "^0.1.0",
-        "@mapbox/tiny-sdf": "^1.1.0",
-        "@mapbox/unitbezier": "^0.0.0",
-        "@mapbox/vector-tile": "^1.3.1",
-        "@mapbox/whoots-js": "^3.1.0",
-        "csscolorparser": "~1.0.2",
-        "earcut": "^2.1.5",
-        "esm": "^3.0.84",
-        "geojson-vt": "^3.2.1",
-        "gl-matrix": "^3.0.0",
-        "grid-index": "^1.1.0",
-        "minimist": "0.0.8",
-        "murmurhash-js": "^1.0.0",
-        "pbf": "^3.0.5",
-        "potpack": "^1.0.1",
-        "quickselect": "^2.0.0",
-        "rw": "^1.3.3",
-        "supercluster": "^6.0.1",
-        "tinyqueue": "^2.0.0",
-        "vt-pbf": "^3.1.1"
-      },
-      "dependencies": {
-        "minimist": {
-          "version": "0.0.8",
-          "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
-          "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
-        },
-        "supercluster": {
-          "version": "6.0.2",
-          "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-6.0.2.tgz",
-          "integrity": "sha512-aa0v2HURjBTOpbcknilcfxGDuArM8khklKSmZ/T8ZXL0BuRwb5aRw95lz+2bmWpFvCXDX/+FzqHxmg0TIaJErw==",
-          "requires": {
-            "kdbush": "^3.0.0"
-          }
-        }
-      }
-    },
-    "markdown-escapes": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz",
-      "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg=="
-    },
-    "markdown-to-jsx": {
-      "version": "6.11.4",
-      "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz",
-      "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==",
-      "dev": true,
-      "requires": {
-        "prop-types": "^15.6.2",
-        "unquote": "^1.1.0"
-      }
-    },
-    "match-sorter": {
-      "version": "6.1.0",
-      "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-6.1.0.tgz",
-      "integrity": "sha512-sKPMf4kbF7Dm5Crx0bbfLpokK68PUJ/0STUIOPa1ZmTZEA3lCaPK3gapQR573oLmvdkTfGojzySkIwuq6Z6xRQ==",
-      "requires": {
-        "@babel/runtime": "^7.12.5",
-        "remove-accents": "0.4.2"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "material-colors": {
-      "version": "1.2.6",
-      "resolved": "https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz",
-      "integrity": "sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg=="
-    },
-    "math-expression-evaluator": {
-      "version": "1.2.22",
-      "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.22.tgz",
-      "integrity": "sha512-L0j0tFVZBQQLeEjmWOvDLoRciIY8gQGWahvkztXUal8jH8R5Rlqo9GCvgqvXcy9LQhEWdQCVvzqAbxgYNt4blQ=="
-    },
-    "math.gl": {
-      "version": "2.3.3",
-      "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-2.3.3.tgz",
-      "integrity": "sha512-wZhx7574KHUpJVMzkaQ559zfn3R8iB0BOilwNrfL/fOLQfPo2TPWsKX96PdfS4svKA2XIGi3yfizrv2Redcv0g==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "gl-matrix": "^3.0.0"
-      }
-    },
-    "mathfn": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/mathfn/-/mathfn-1.2.0.tgz",
-      "integrity": "sha512-QBcepxkFxuGk12q4G0KuNbuU3UCXhDROxWZllaNZSpBivkHl2z8qNvi7UGE/WLJt+c7GTC4jigYtur+JDL+40A=="
-    },
-    "mathjs": {
-      "version": "8.0.1",
-      "resolved": "https://registry.npmjs.org/mathjs/-/mathjs-8.0.1.tgz",
-      "integrity": "sha512-lvdYNHLNrRORYKRpRs22RMeeAoqVxRePUCjDealCZLfN5io0tJHqQLyNZuJJSXWa8Pl0dkM434D4cIUsbYR1Mg==",
-      "requires": {
-        "complex.js": "^2.0.11",
-        "decimal.js": "^10.2.1",
-        "escape-latex": "^1.2.0",
-        "fraction.js": "^4.0.12",
-        "javascript-natural-sort": "^0.7.1",
-        "seedrandom": "^3.0.5",
-        "tiny-emitter": "^2.1.0",
-        "typed-function": "^2.0.0"
-      },
-      "dependencies": {
-        "complex.js": {
-          "version": "2.0.11",
-          "resolved": "https://registry.npmjs.org/complex.js/-/complex.js-2.0.11.tgz",
-          "integrity": "sha512-6IArJLApNtdg1P1dFtn3dnyzoZBEF0MwMnrfF1exSBRpZYoy4yieMkpZhQDC0uwctw48vii0CFVyHfpgZ/DfGw=="
-        },
-        "decimal.js": {
-          "version": "10.2.1",
-          "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz",
-          "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw=="
-        },
-        "fraction.js": {
-          "version": "4.0.12",
-          "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.0.12.tgz",
-          "integrity": "sha512-8Z1K0VTG4hzYY7kA/1sj4/r1/RWLBD3xwReT/RCrUCbzPszjNQCCsy3ktkU/eaEqX3MYa4pY37a52eiBlPMlhA=="
-        },
-        "tiny-emitter": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
-          "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="
-        },
-        "typed-function": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/typed-function/-/typed-function-2.0.0.tgz",
-          "integrity": "sha512-Hhy1Iwo/e4AtLZNK10ewVVcP2UEs408DS35ubP825w/YgSBK1KVLwALvvIG4yX75QJrxjCpcWkzkVRB0BwwYlA=="
-        }
-      }
-    },
-    "md5": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz",
-      "integrity": "sha1-U6s41f48iJG6RlMp6iP6wFQBJvk=",
-      "requires": {
-        "charenc": "~0.0.1",
-        "crypt": "~0.0.1",
-        "is-buffer": "~1.1.1"
-      }
-    },
-    "md5.js": {
-      "version": "1.3.5",
-      "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
-      "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
-      "dev": true,
-      "requires": {
-        "hash-base": "^3.0.0",
-        "inherits": "^2.0.1",
-        "safe-buffer": "^5.1.2"
-      }
-    },
-    "mdast-add-list-metadata": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/mdast-add-list-metadata/-/mdast-add-list-metadata-1.0.1.tgz",
-      "integrity": "sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==",
-      "requires": {
-        "unist-util-visit-parents": "1.1.2"
-      }
-    },
-    "mdast-squeeze-paragraphs": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz",
-      "integrity": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==",
-      "dev": true,
-      "requires": {
-        "unist-util-remove": "^2.0.0"
-      }
-    },
-    "mdast-util-definitions": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-3.0.1.tgz",
-      "integrity": "sha512-BAv2iUm/e6IK/b2/t+Fx69EL/AGcq/IG2S+HxHjDJGfLJtd6i9SZUS76aC9cig+IEucsqxKTR0ot3m933R3iuA==",
-      "dev": true,
-      "requires": {
-        "unist-util-visit": "^2.0.0"
-      },
-      "dependencies": {
-        "unist-util-is": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.3.tgz",
-          "integrity": "sha512-bTofCFVx0iQM8Jqb1TBDVRIQW03YkD3p66JOd/aCWuqzlLyUtx1ZAGw/u+Zw+SttKvSVcvTiKYbfrtLoLefykw==",
-          "dev": true
-        },
-        "unist-util-visit": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
-          "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0",
-            "unist-util-visit-parents": "^3.0.0"
-          }
-        },
-        "unist-util-visit-parents": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
-          "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0"
-          }
-        }
-      }
-    },
-    "mdast-util-to-hast": {
-      "version": "9.1.1",
-      "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-9.1.1.tgz",
-      "integrity": "sha512-vpMWKFKM2mnle+YbNgDXxx95vv0CoLU0v/l3F5oFAG5DV7qwkZVWA206LsAdOnEVyf5vQcLnb3cWJywu7mUxsQ==",
-      "dev": true,
-      "requires": {
-        "@types/mdast": "^3.0.0",
-        "@types/unist": "^2.0.3",
-        "mdast-util-definitions": "^3.0.0",
-        "mdurl": "^1.0.0",
-        "unist-builder": "^2.0.0",
-        "unist-util-generated": "^1.0.0",
-        "unist-util-position": "^3.0.0",
-        "unist-util-visit": "^2.0.0"
-      },
-      "dependencies": {
-        "unist-util-is": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.3.tgz",
-          "integrity": "sha512-bTofCFVx0iQM8Jqb1TBDVRIQW03YkD3p66JOd/aCWuqzlLyUtx1ZAGw/u+Zw+SttKvSVcvTiKYbfrtLoLefykw==",
-          "dev": true
-        },
-        "unist-util-visit": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
-          "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0",
-            "unist-util-visit-parents": "^3.0.0"
-          }
-        },
-        "unist-util-visit-parents": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
-          "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0"
-          }
-        }
-      }
-    },
-    "mdast-util-to-string": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz",
-      "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==",
-      "dev": true
-    },
-    "mdn-data": {
-      "version": "2.0.6",
-      "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.6.tgz",
-      "integrity": "sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==",
-      "dev": true
-    },
-    "mdurl": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
-      "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=",
-      "dev": true
-    },
-    "media-typer": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
-      "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=",
-      "dev": true
-    },
-    "mem": {
-      "version": "4.3.0",
-      "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz",
-      "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==",
-      "dev": true,
-      "requires": {
-        "map-age-cleaner": "^0.1.1",
-        "mimic-fn": "^2.0.0",
-        "p-is-promise": "^2.0.0"
-      },
-      "dependencies": {
-        "mimic-fn": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
-          "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
-          "dev": true
-        }
-      }
-    },
-    "memoize-one": {
-      "version": "5.1.1",
-      "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.1.1.tgz",
-      "integrity": "sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA=="
-    },
-    "memoizerific": {
-      "version": "1.11.3",
-      "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz",
-      "integrity": "sha1-fIekZGREwy11Q4VwkF8tvRsagFo=",
-      "dev": true,
-      "requires": {
-        "map-or-similar": "^1.5.0"
-      }
-    },
-    "memory-fs": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz",
-      "integrity": "sha1-8rslNovBIeORwlIN6Slpyu4KApA=",
-      "dev": true
-    },
-    "merge-deep": {
-      "version": "3.0.2",
-      "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.2.tgz",
-      "integrity": "sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA==",
-      "dev": true,
-      "requires": {
-        "arr-union": "^3.1.0",
-        "clone-deep": "^0.2.4",
-        "kind-of": "^3.0.2"
-      },
-      "dependencies": {
-        "kind-of": {
-          "version": "3.2.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
-          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.1.5"
-          }
-        }
-      }
-    },
-    "merge-descriptors": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
-      "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=",
-      "dev": true
-    },
-    "merge-source-map": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.0.4.tgz",
-      "integrity": "sha1-pd5GU42uhNQRTMXqArR3KmNGcB8=",
-      "requires": {
-        "source-map": "^0.5.6"
-      }
-    },
-    "merge-stream": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
-      "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
-      "dev": true
-    },
-    "merge2": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
-      "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
-      "dev": true
-    },
-    "methods": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
-      "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
-      "dev": true
-    },
-    "microevent.ts": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz",
-      "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==",
-      "dev": true
-    },
-    "micromatch": {
-      "version": "3.1.10",
-      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
-      "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
-      "dev": true,
-      "requires": {
-        "arr-diff": "^4.0.0",
-        "array-unique": "^0.3.2",
-        "braces": "^2.3.1",
-        "define-property": "^2.0.2",
-        "extend-shallow": "^3.0.2",
-        "extglob": "^2.0.4",
-        "fragment-cache": "^0.2.1",
-        "kind-of": "^6.0.2",
-        "nanomatch": "^1.2.9",
-        "object.pick": "^1.3.0",
-        "regex-not": "^1.0.0",
-        "snapdragon": "^0.8.1",
-        "to-regex": "^3.0.2"
-      },
-      "dependencies": {
-        "extend-shallow": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
-          "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
-          "dev": true,
-          "requires": {
-            "assign-symbols": "^1.0.0",
-            "is-extendable": "^1.0.1"
-          }
-        },
-        "is-extendable": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
-          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
-          "dev": true,
-          "requires": {
-            "is-plain-object": "^2.0.4"
-          }
-        },
-        "kind-of": {
-          "version": "6.0.3",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
-          "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
-          "dev": true
-        }
-      }
-    },
-    "miller-rabin": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
-      "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
-      "dev": true,
-      "requires": {
-        "bn.js": "^4.0.0",
-        "brorand": "^1.0.1"
-      }
-    },
-    "mime": {
-      "version": "1.6.0",
-      "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
-      "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
-      "dev": true
-    },
-    "mime-db": {
-      "version": "1.37.0",
-      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz",
-      "integrity": "sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg==",
-      "dev": true
-    },
-    "mime-types": {
-      "version": "2.1.21",
-      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz",
-      "integrity": "sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==",
-      "dev": true,
-      "requires": {
-        "mime-db": "~1.37.0"
-      }
-    },
-    "mimic-fn": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
-      "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
-      "dev": true
-    },
-    "min-document": {
-      "version": "2.19.0",
-      "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz",
-      "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=",
-      "requires": {
-        "dom-walk": "^0.1.0"
-      }
-    },
-    "min-indent": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz",
-      "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==",
-      "dev": true
-    },
-    "mini-create-react-context": {
-      "version": "0.3.2",
-      "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.3.2.tgz",
-      "integrity": "sha512-2v+OeetEyliMt5VHMXsBhABoJ0/M4RCe7fatd/fBy6SMiKazUSEt3gxxypfnk2SHMkdBYvorHRoQxuGoiwbzAw==",
-      "requires": {
-        "@babel/runtime": "^7.4.0",
-        "gud": "^1.0.0",
-        "tiny-warning": "^1.0.2"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.7.4",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.7.4.tgz",
-          "integrity": "sha512-r24eVUUr0QqNZa+qrImUk8fn5SPhHq+IfYvIoIMg0do3GdK9sMdiLKP3GYVVaxpPKORgm8KRKaNTEhAjgIpLMw==",
-          "requires": {
-            "regenerator-runtime": "^0.13.2"
-          }
-        }
-      }
-    },
-    "mini-css-extract-plugin": {
-      "version": "0.4.5",
-      "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.5.tgz",
-      "integrity": "sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^1.1.0",
-        "schema-utils": "^1.0.0",
-        "webpack-sources": "^1.1.0"
-      },
-      "dependencies": {
-        "schema-utils": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
-          "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
-          "dev": true,
-          "requires": {
-            "ajv": "^6.1.0",
-            "ajv-errors": "^1.0.0",
-            "ajv-keywords": "^3.1.0"
-          }
-        }
-      }
-    },
-    "mini-store": {
-      "version": "3.0.6",
-      "resolved": "https://registry.npmjs.org/mini-store/-/mini-store-3.0.6.tgz",
-      "integrity": "sha512-YzffKHbYsMQGUWQRKdsearR79QsMzzJcDDmZKlJBqt5JNkqpyJHYlK6gP61O36X+sLf76sO9G6mhKBe83gIZIQ==",
-      "requires": {
-        "hoist-non-react-statics": "^3.3.2",
-        "shallowequal": "^1.0.2"
-      }
-    },
-    "minimalistic-assert": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
-      "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
-      "dev": true
-    },
-    "minimalistic-crypto-utils": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
-      "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=",
-      "dev": true
-    },
-    "minimatch": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
-      "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
-      "requires": {
-        "brace-expansion": "^1.1.7"
-      }
-    },
-    "minimist": {
-      "version": "1.2.5",
-      "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
-      "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
-    },
-    "minipass": {
-      "version": "3.1.3",
-      "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz",
-      "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==",
-      "dev": true,
-      "requires": {
-        "yallist": "^4.0.0"
-      },
-      "dependencies": {
-        "yallist": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
-          "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-          "dev": true
-        }
-      }
-    },
-    "minipass-collect": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
-      "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
-      "dev": true,
-      "requires": {
-        "minipass": "^3.0.0"
-      }
-    },
-    "minipass-flush": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
-      "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
-      "dev": true,
-      "requires": {
-        "minipass": "^3.0.0"
-      }
-    },
-    "minipass-pipeline": {
-      "version": "1.2.3",
-      "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz",
-      "integrity": "sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ==",
-      "dev": true,
-      "requires": {
-        "minipass": "^3.0.0"
-      }
-    },
-    "minizlib": {
-      "version": "1.3.3",
-      "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz",
-      "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==",
-      "dev": true,
-      "optional": true,
-      "requires": {
-        "minipass": "^2.9.0"
-      },
-      "dependencies": {
-        "minipass": {
-          "version": "2.9.0",
-          "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz",
-          "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "safe-buffer": "^5.1.2",
-            "yallist": "^3.0.0"
-          }
-        }
-      }
-    },
-    "mississippi": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
-      "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==",
-      "dev": true,
-      "requires": {
-        "concat-stream": "^1.5.0",
-        "duplexify": "^3.4.2",
-        "end-of-stream": "^1.1.0",
-        "flush-write-stream": "^1.0.0",
-        "from2": "^2.1.0",
-        "parallel-transform": "^1.1.0",
-        "pump": "^3.0.0",
-        "pumpify": "^1.3.3",
-        "stream-each": "^1.1.0",
-        "through2": "^2.0.0"
-      }
-    },
-    "mixin-deep": {
-      "version": "1.3.2",
-      "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
-      "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
-      "dev": true,
-      "requires": {
-        "for-in": "^1.0.2",
-        "is-extendable": "^1.0.1"
-      },
-      "dependencies": {
-        "is-extendable": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
-          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
-          "dev": true,
-          "requires": {
-            "is-plain-object": "^2.0.4"
-          }
-        }
-      }
-    },
-    "mixin-object": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz",
-      "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=",
-      "dev": true,
-      "requires": {
-        "for-in": "^0.1.3",
-        "is-extendable": "^0.1.1"
-      },
-      "dependencies": {
-        "for-in": {
-          "version": "0.1.8",
-          "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz",
-          "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=",
-          "dev": true
-        }
-      }
-    },
-    "mjolnir.js": {
-      "version": "2.5.0",
-      "resolved": "https://registry.npmjs.org/mjolnir.js/-/mjolnir.js-2.5.0.tgz",
-      "integrity": "sha512-YkVoyKs7qm9xvAgRgjx3Md/7eYqmq7VXOgTKQNnmuzcBJzMebjdIWa7FdTd0RZBrw3UL6V6TTktsxJwBMLXUNA==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "hammerjs": "^2.0.8"
-      }
-    },
-    "mkdirp": {
-      "version": "0.5.5",
-      "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
-      "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
-      "dev": true,
-      "requires": {
-        "minimist": "^1.2.5"
-      }
-    },
-    "moment": {
-      "version": "2.29.1",
-      "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz",
-      "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="
-    },
-    "moo": {
-      "version": "0.4.3",
-      "resolved": "https://registry.npmjs.org/moo/-/moo-0.4.3.tgz",
-      "integrity": "sha512-gFD2xGCl8YFgGHsqJ9NKRVdwlioeW3mI1iqfLNYQOv0+6JRwG58Zk9DIGQgyIaffSYaO1xsKnMaYzzNr1KyIAw==",
-      "dev": true
-    },
-    "mousetrap": {
-      "version": "1.6.2",
-      "resolved": "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.2.tgz",
-      "integrity": "sha512-jDjhi7wlHwdO6q6DS7YRmSHcuI+RVxadBkLt3KHrhd3C2b+w5pKefg3oj5beTcHZyVFA9Aksf+yEE1y5jxUjVA=="
-    },
-    "move-concurrently": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
-      "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=",
-      "dev": true,
-      "requires": {
-        "aproba": "^1.1.1",
-        "copy-concurrently": "^1.0.0",
-        "fs-write-stream-atomic": "^1.0.8",
-        "mkdirp": "^0.5.1",
-        "rimraf": "^2.5.4",
-        "run-queue": "^1.0.3"
-      }
-    },
-    "ms": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-      "dev": true
-    },
-    "multicast-dns": {
-      "version": "6.2.3",
-      "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz",
-      "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==",
-      "dev": true,
-      "requires": {
-        "dns-packet": "^1.3.1",
-        "thunky": "^1.0.2"
-      }
-    },
-    "multicast-dns-service-types": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz",
-      "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=",
-      "dev": true
-    },
-    "murmurhash-js": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz",
-      "integrity": "sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E="
-    },
-    "mustache": {
-      "version": "2.3.2",
-      "resolved": "https://registry.npmjs.org/mustache/-/mustache-2.3.2.tgz",
-      "integrity": "sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ=="
-    },
-    "mute-stream": {
-      "version": "0.0.8",
-      "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
-      "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
-      "dev": true
-    },
-    "nan": {
-      "version": "2.14.0",
-      "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz",
-      "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==",
-      "dev": true,
-      "optional": true
-    },
-    "nanoid": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-2.0.0.tgz",
-      "integrity": "sha512-SG2qscLE3iM4C0CNzGrsAojJHSVHMS1J8NnvJ31P1lH8P0hGHOiafmniNJz6w6q7vuoDlV7RdySlJgtqkFEVtQ=="
-    },
-    "nanomatch": {
-      "version": "1.2.13",
-      "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
-      "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
-      "dev": true,
-      "requires": {
-        "arr-diff": "^4.0.0",
-        "array-unique": "^0.3.2",
-        "define-property": "^2.0.2",
-        "extend-shallow": "^3.0.2",
-        "fragment-cache": "^0.2.1",
-        "is-windows": "^1.0.2",
-        "kind-of": "^6.0.2",
-        "object.pick": "^1.3.0",
-        "regex-not": "^1.0.0",
-        "snapdragon": "^0.8.1",
-        "to-regex": "^3.0.1"
-      },
-      "dependencies": {
-        "extend-shallow": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
-          "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
-          "dev": true,
-          "requires": {
-            "assign-symbols": "^1.0.0",
-            "is-extendable": "^1.0.1"
-          }
-        },
-        "is-extendable": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
-          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
-          "dev": true,
-          "requires": {
-            "is-plain-object": "^2.0.4"
-          }
-        },
-        "kind-of": {
-          "version": "6.0.3",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
-          "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
-          "dev": true
-        }
-      }
-    },
-    "native-request": {
-      "version": "1.0.8",
-      "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.0.8.tgz",
-      "integrity": "sha512-vU2JojJVelUGp6jRcLwToPoWGxSx23z/0iX+I77J3Ht17rf2INGjrhOoQnjVo60nQd8wVsgzKkPfRXBiVdD2ag==",
-      "dev": true,
-      "optional": true
-    },
-    "natural-compare": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
-      "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
-      "dev": true
-    },
-    "nearley": {
-      "version": "2.18.0",
-      "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.18.0.tgz",
-      "integrity": "sha512-/zQOMCeJcioI0xJtd5RpBiWw2WP7wLe6vq8/3Yu0rEwgus/G/+pViX80oA87JdVgjRt2895mZSv2VfZmy4W1uw==",
-      "dev": true,
-      "requires": {
-        "commander": "^2.19.0",
-        "moo": "^0.4.3",
-        "railroad-diagrams": "^1.0.0",
-        "randexp": "0.4.6",
-        "semver": "^5.4.1"
-      }
-    },
-    "negotiator": {
-      "version": "0.6.1",
-      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz",
-      "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=",
-      "dev": true
-    },
-    "neo-async": {
-      "version": "2.6.0",
-      "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz",
-      "integrity": "sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==",
-      "dev": true
-    },
-    "next-tick": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
-      "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=",
-      "dev": true
-    },
-    "nice-try": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
-      "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
-      "dev": true
-    },
-    "nise": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/nise/-/nise-4.0.3.tgz",
-      "integrity": "sha512-EGlhjm7/4KvmmE6B/UFsKh7eHykRl9VH+au8dduHLCyWUO/hr7+N+WtTvDUwc9zHuM1IaIJs/0lQ6Ag1jDkQSg==",
-      "dev": true,
-      "requires": {
-        "@sinonjs/commons": "^1.7.0",
-        "@sinonjs/fake-timers": "^6.0.0",
-        "@sinonjs/text-encoding": "^0.7.1",
-        "just-extend": "^4.0.2",
-        "path-to-regexp": "^1.7.0"
-      },
-      "dependencies": {
-        "isarray": {
-          "version": "0.0.1",
-          "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
-          "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
-          "dev": true
-        },
-        "path-to-regexp": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz",
-          "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==",
-          "dev": true,
-          "requires": {
-            "isarray": "0.0.1"
-          }
-        }
-      }
-    },
-    "no-case": {
-      "version": "3.0.3",
-      "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.3.tgz",
-      "integrity": "sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw==",
-      "dev": true,
-      "requires": {
-        "lower-case": "^2.0.1",
-        "tslib": "^1.10.0"
-      }
-    },
-    "node-dir": {
-      "version": "0.1.17",
-      "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz",
-      "integrity": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=",
-      "dev": true,
-      "requires": {
-        "minimatch": "^3.0.2"
-      }
-    },
-    "node-environment-flags": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.6.tgz",
-      "integrity": "sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==",
-      "dev": true,
-      "requires": {
-        "object.getownpropertydescriptors": "^2.0.3",
-        "semver": "^5.7.0"
-      },
-      "dependencies": {
-        "semver": {
-          "version": "5.7.1",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
-          "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
-          "dev": true
-        }
-      }
-    },
-    "node-fetch": {
-      "version": "2.6.1",
-      "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz",
-      "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==",
-      "dev": true
-    },
-    "node-forge": {
-      "version": "0.10.0",
-      "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz",
-      "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==",
-      "dev": true
-    },
-    "node-int64": {
-      "version": "0.4.0",
-      "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
-      "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=",
-      "dev": true
-    },
-    "node-libs-browser": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
-      "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==",
-      "dev": true,
-      "requires": {
-        "assert": "^1.1.1",
-        "browserify-zlib": "^0.2.0",
-        "buffer": "^4.3.0",
-        "console-browserify": "^1.1.0",
-        "constants-browserify": "^1.0.0",
-        "crypto-browserify": "^3.11.0",
-        "domain-browser": "^1.1.1",
-        "events": "^3.0.0",
-        "https-browserify": "^1.0.0",
-        "os-browserify": "^0.3.0",
-        "path-browserify": "0.0.1",
-        "process": "^0.11.10",
-        "punycode": "^1.2.4",
-        "querystring-es3": "^0.2.0",
-        "readable-stream": "^2.3.3",
-        "stream-browserify": "^2.0.1",
-        "stream-http": "^2.7.2",
-        "string_decoder": "^1.0.0",
-        "timers-browserify": "^2.0.4",
-        "tty-browserify": "0.0.0",
-        "url": "^0.11.0",
-        "util": "^0.11.0",
-        "vm-browserify": "^1.0.1"
-      },
-      "dependencies": {
-        "punycode": {
-          "version": "1.4.1",
-          "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
-          "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
-          "dev": true
-        }
-      }
-    },
-    "node-modules-regexp": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz",
-      "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=",
-      "dev": true
-    },
-    "node-notifier": {
-      "version": "8.0.0",
-      "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.0.tgz",
-      "integrity": "sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA==",
-      "dev": true,
-      "optional": true,
-      "requires": {
-        "growly": "^1.3.0",
-        "is-wsl": "^2.2.0",
-        "semver": "^7.3.2",
-        "shellwords": "^0.1.1",
-        "uuid": "^8.3.0",
-        "which": "^2.0.2"
-      },
-      "dependencies": {
-        "is-wsl": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
-          "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "is-docker": "^2.0.0"
-          }
-        },
-        "semver": {
-          "version": "7.3.2",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
-          "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
-          "dev": true,
-          "optional": true
-        },
-        "uuid": {
-          "version": "8.3.1",
-          "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz",
-          "integrity": "sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==",
-          "dev": true,
-          "optional": true
-        },
-        "which": {
-          "version": "2.0.2",
-          "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
-          "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "isexe": "^2.0.0"
-          }
-        }
-      }
-    },
-    "node-releases": {
-      "version": "1.1.52",
-      "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.52.tgz",
-      "integrity": "sha512-snSiT1UypkgGt2wxPqS6ImEUICbNCMb31yaxWrOLXjhlt2z2/IBpaOxzONExqSm4y5oLnAqjjRWu+wsDzK5yNQ==",
-      "dev": true,
-      "requires": {
-        "semver": "^6.3.0"
-      },
-      "dependencies": {
-        "semver": {
-          "version": "6.3.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-          "dev": true
-        }
-      }
-    },
-    "nomnom": {
-      "version": "1.8.1",
-      "resolved": "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz",
-      "integrity": "sha1-IVH3Ikcrp55Qp2/BJbuMjy5Nwqc=",
-      "dev": true,
-      "requires": {
-        "chalk": "~0.4.0",
-        "underscore": "~1.6.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz",
-          "integrity": "sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg=",
-          "dev": true
-        },
-        "chalk": {
-          "version": "0.4.0",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz",
-          "integrity": "sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8=",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "~1.0.0",
-            "has-color": "~0.1.0",
-            "strip-ansi": "~0.1.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "0.1.1",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz",
-          "integrity": "sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE=",
-          "dev": true
-        },
-        "underscore": {
-          "version": "1.6.0",
-          "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz",
-          "integrity": "sha1-izixDKze9jM3uLJOT/htRa6lKag=",
-          "dev": true
-        }
-      }
-    },
-    "nopt": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz",
-      "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==",
-      "dev": true,
-      "requires": {
-        "abbrev": "1",
-        "osenv": "^0.1.4"
-      }
-    },
-    "normalize-package-data": {
-      "version": "2.4.0",
-      "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
-      "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==",
-      "dev": true,
-      "requires": {
-        "hosted-git-info": "^2.1.4",
-        "is-builtin-module": "^1.0.0",
-        "semver": "2 || 3 || 4 || 5",
-        "validate-npm-package-license": "^3.0.1"
-      }
-    },
-    "normalize-path": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
-      "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
-      "dev": true,
-      "requires": {
-        "remove-trailing-separator": "^1.0.1"
-      }
-    },
-    "normalize-range": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
-      "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
-      "dev": true
-    },
-    "normalize-url": {
-      "version": "3.3.0",
-      "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz",
-      "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==",
-      "dev": true
-    },
-    "npm-run-path": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
-      "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
-      "dev": true,
-      "requires": {
-        "path-key": "^2.0.0"
-      }
-    },
-    "npmlog": {
-      "version": "4.1.2",
-      "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz",
-      "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==",
-      "dev": true,
-      "requires": {
-        "are-we-there-yet": "~1.1.2",
-        "console-control-strings": "~1.1.0",
-        "gauge": "~2.7.3",
-        "set-blocking": "~2.0.0"
-      }
-    },
-    "nth-check": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
-      "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
-      "dev": true,
-      "requires": {
-        "boolbase": "~1.0.0"
-      }
-    },
-    "num2fraction": {
-      "version": "1.2.2",
-      "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
-      "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=",
-      "dev": true
-    },
-    "number-is-nan": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
-      "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
-      "dev": true
-    },
-    "nvd3": {
-      "version": "1.8.6",
-      "resolved": "https://registry.npmjs.org/nvd3/-/nvd3-1.8.6.tgz",
-      "integrity": "sha1-LT66dL8zNjtRAevx0JPFmlOuc8Q="
-    },
-    "nvd3-fork": {
-      "version": "2.0.5",
-      "resolved": "https://registry.npmjs.org/nvd3-fork/-/nvd3-fork-2.0.5.tgz",
-      "integrity": "sha512-Sq3q2rvR/9FJ35LVmqdQJAnfmD15BaIHSBg5wZZL/WLcq/nthff8ukabwFdbW0zeE1c/yPq+DKl6MxnUTR45DA=="
-    },
-    "nwsapi": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
-      "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==",
-      "dev": true
-    },
-    "oauth-sign": {
-      "version": "0.9.0",
-      "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
-      "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
-      "dev": true
-    },
-    "object-assign": {
-      "version": "4.1.1",
-      "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
-      "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
-    },
-    "object-copy": {
-      "version": "0.1.0",
-      "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
-      "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
-      "dev": true,
-      "requires": {
-        "copy-descriptor": "^0.1.0",
-        "define-property": "^0.2.5",
-        "kind-of": "^3.0.3"
-      },
-      "dependencies": {
-        "define-property": {
-          "version": "0.2.5",
-          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
-          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
-          "dev": true,
-          "requires": {
-            "is-descriptor": "^0.1.0"
-          }
-        },
-        "kind-of": {
-          "version": "3.2.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
-          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.1.5"
-          }
-        }
-      }
-    },
-    "object-inspect": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.4.1.tgz",
-      "integrity": "sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw=="
-    },
-    "object-is": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.0.1.tgz",
-      "integrity": "sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY=",
-      "dev": true
-    },
-    "object-keys": {
-      "version": "1.0.12",
-      "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz",
-      "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag=="
-    },
-    "object-visit": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
-      "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
-      "dev": true,
-      "requires": {
-        "isobject": "^3.0.0"
-      }
-    },
-    "object.assign": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
-      "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.2",
-        "function-bind": "^1.1.1",
-        "has-symbols": "^1.0.0",
-        "object-keys": "^1.0.11"
-      }
-    },
-    "object.entries": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.0.tgz",
-      "integrity": "sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.12.0",
-        "function-bind": "^1.1.1",
-        "has": "^1.0.3"
-      }
-    },
-    "object.fromentries": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.0.tgz",
-      "integrity": "sha512-9iLiI6H083uiqUuvzyY6qrlmc/Gz8hLQFOcb/Ri/0xXFkSNS3ctV+CbE6yM2+AnkYfOB3dGjdzC0wrMLIhQICA==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.2",
-        "es-abstract": "^1.11.0",
-        "function-bind": "^1.1.1",
-        "has": "^1.0.1"
-      }
-    },
-    "object.getownpropertydescriptors": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz",
-      "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.2",
-        "es-abstract": "^1.5.1"
-      }
-    },
-    "object.pick": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
-      "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
-      "dev": true,
-      "requires": {
-        "isobject": "^3.0.1"
-      }
-    },
-    "object.values": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.0.tgz",
-      "integrity": "sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.12.0",
-        "function-bind": "^1.1.1",
-        "has": "^1.0.3"
-      }
-    },
-    "objectorarray": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.4.tgz",
-      "integrity": "sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==",
-      "dev": true
-    },
-    "obuf": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz",
-      "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==",
-      "dev": true
-    },
-    "omit.js": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/omit.js/-/omit.js-2.0.2.tgz",
-      "integrity": "sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg=="
-    },
-    "omnibar": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/omnibar/-/omnibar-2.1.1.tgz",
-      "integrity": "sha512-8txe0of2sb6amV+0vB/VbF7kzwQF8vo9lwmzZTt7TIuugWI661STacLORfl4O6r/A9c4fu69o8Rb+6HIdqArEQ=="
-    },
-    "on-finished": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
-      "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
-      "dev": true,
-      "requires": {
-        "ee-first": "1.1.1"
-      }
-    },
-    "on-headers": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
-      "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
-      "dev": true
-    },
-    "once": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
-      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
-      "requires": {
-        "wrappy": "1"
-      }
-    },
-    "onetime": {
-      "version": "5.1.2",
-      "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
-      "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
-      "dev": true,
-      "requires": {
-        "mimic-fn": "^2.1.0"
-      }
-    },
-    "open": {
-      "version": "7.1.0",
-      "resolved": "https://registry.npmjs.org/open/-/open-7.1.0.tgz",
-      "integrity": "sha512-lLPI5KgOwEYCDKXf4np7y1PBEkj7HYIyP2DY8mVDRnx0VIIu6bNrRB0R66TuO7Mack6EnTNLm4uvcl1UoklTpA==",
-      "dev": true,
-      "requires": {
-        "is-docker": "^2.0.0",
-        "is-wsl": "^2.1.1"
-      },
-      "dependencies": {
-        "is-wsl": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
-          "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
-          "dev": true,
-          "requires": {
-            "is-docker": "^2.0.0"
-          }
-        }
-      }
-    },
-    "opener": {
-      "version": "1.5.1",
-      "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.1.tgz",
-      "integrity": "sha512-goYSy5c2UXE4Ra1xixabeVh1guIX/ZV/YokJksb6q2lubWu6UbvPQ20p542/sFIll1nl8JnCyK9oBaOcCWXwvA==",
-      "dev": true
-    },
-    "opn": {
-      "version": "5.5.0",
-      "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz",
-      "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==",
-      "dev": true,
-      "requires": {
-        "is-wsl": "^1.1.0"
-      }
-    },
-    "optimist": {
-      "version": "0.3.7",
-      "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz",
-      "integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=",
-      "requires": {
-        "wordwrap": "~0.0.2"
-      },
-      "dependencies": {
-        "wordwrap": {
-          "version": "0.0.3",
-          "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
-          "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
-        }
-      }
-    },
-    "optimize-css-assets-webpack-plugin": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.1.tgz",
-      "integrity": "sha512-Rqm6sSjWtx9FchdP0uzTQDc7GXDKnwVEGoSxjezPkzMewx7gEWE9IMUYKmigTRC4U3RaNSwYVnUDLuIdtTpm0A==",
-      "dev": true,
-      "requires": {
-        "cssnano": "^4.1.0",
-        "last-call-webpack-plugin": "^3.0.0"
-      }
-    },
-    "optionator": {
-      "version": "0.8.2",
-      "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz",
-      "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=",
-      "requires": {
-        "deep-is": "~0.1.3",
-        "fast-levenshtein": "~2.0.4",
-        "levn": "~0.3.0",
-        "prelude-ls": "~1.1.2",
-        "type-check": "~0.3.2",
-        "wordwrap": "~1.0.0"
-      }
-    },
-    "original": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz",
-      "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==",
-      "dev": true,
-      "requires": {
-        "url-parse": "^1.4.3"
-      }
-    },
-    "os-browserify": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
-      "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=",
-      "dev": true
-    },
-    "os-homedir": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
-      "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=",
-      "dev": true
-    },
-    "os-locale": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz",
-      "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==",
-      "dev": true,
-      "requires": {
-        "execa": "^1.0.0",
-        "lcid": "^2.0.0",
-        "mem": "^4.0.0"
-      }
-    },
-    "os-tmpdir": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
-      "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
-      "dev": true
-    },
-    "osenv": {
-      "version": "0.1.5",
-      "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz",
-      "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==",
-      "dev": true,
-      "requires": {
-        "os-homedir": "^1.0.0",
-        "os-tmpdir": "^1.0.0"
-      }
-    },
-    "overlayscrollbars": {
-      "version": "1.13.0",
-      "resolved": "https://registry.npmjs.org/overlayscrollbars/-/overlayscrollbars-1.13.0.tgz",
-      "integrity": "sha512-p8oHrMeRAKxXDMPI/EBNITj/zTVHKNnAnM59Im+xnoZUlV07FyTg46wom2286jJlXGGfcPFG/ba5NUiCwWNd4w==",
-      "dev": true
-    },
-    "p-defer": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz",
-      "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=",
-      "dev": true
-    },
-    "p-each-series": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz",
-      "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==",
-      "dev": true
-    },
-    "p-finally": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
-      "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
-      "dev": true
-    },
-    "p-is-promise": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz",
-      "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==",
-      "dev": true
-    },
-    "p-limit": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
-      "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
-      "dev": true,
-      "requires": {
-        "p-try": "^1.0.0"
-      }
-    },
-    "p-locate": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
-      "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
-      "dev": true,
-      "requires": {
-        "p-limit": "^1.1.0"
-      }
-    },
-    "p-map": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz",
-      "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==",
-      "dev": true
-    },
-    "p-retry": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz",
-      "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==",
-      "dev": true,
-      "requires": {
-        "retry": "^0.12.0"
-      }
-    },
-    "p-try": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
-      "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
-      "dev": true
-    },
-    "pako": {
-      "version": "1.0.7",
-      "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.7.tgz",
-      "integrity": "sha512-3HNK5tW4x8o5mO8RuHZp3Ydw9icZXx0RANAOMzlMzx7LVXhMJ4mo3MOBpzyd7r/+RUu8BmndP47LXT+vzjtWcQ==",
-      "dev": true
-    },
-    "parallel-transform": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz",
-      "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=",
-      "dev": true,
-      "requires": {
-        "cyclist": "~0.2.2",
-        "inherits": "^2.0.3",
-        "readable-stream": "^2.1.5"
-      }
-    },
-    "param-case": {
-      "version": "3.0.3",
-      "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.3.tgz",
-      "integrity": "sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA==",
-      "dev": true,
-      "requires": {
-        "dot-case": "^3.0.3",
-        "tslib": "^1.10.0"
-      }
-    },
-    "parent-module": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
-      "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
-      "requires": {
-        "callsites": "^3.0.0"
-      }
-    },
-    "parse-asn1": {
-      "version": "5.1.1",
-      "resolved": "http://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz",
-      "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==",
-      "dev": true,
-      "requires": {
-        "asn1.js": "^4.0.0",
-        "browserify-aes": "^1.0.0",
-        "create-hash": "^1.1.0",
-        "evp_bytestokey": "^1.0.0",
-        "pbkdf2": "^3.0.3"
-      }
-    },
-    "parse-entities": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.0.tgz",
-      "integrity": "sha512-XXtDdOPLSB0sHecbEapQi6/58U/ODj/KWfIXmmMCJF/eRn8laX6LZbOyioMoETOOJoWRW8/qTSl5VQkUIfKM5g==",
-      "requires": {
-        "character-entities": "^1.0.0",
-        "character-entities-legacy": "^1.0.0",
-        "character-reference-invalid": "^1.0.0",
-        "is-alphanumerical": "^1.0.0",
-        "is-decimal": "^1.0.0",
-        "is-hexadecimal": "^1.0.0"
-      }
-    },
-    "parse-json": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
-      "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
-      "dev": true,
-      "requires": {
-        "error-ex": "^1.2.0"
-      }
-    },
-    "parse-ms": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz",
-      "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA=="
-    },
-    "parse-passwd": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
-      "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=",
-      "dev": true
-    },
-    "parse5": {
-      "version": "3.0.3",
-      "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz",
-      "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==",
-      "dev": true,
-      "requires": {
-        "@types/node": "*"
-      }
-    },
-    "parseurl": {
-      "version": "1.3.2",
-      "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz",
-      "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=",
-      "dev": true
-    },
-    "pascal-case": {
-      "version": "3.1.1",
-      "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.1.tgz",
-      "integrity": "sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA==",
-      "dev": true,
-      "requires": {
-        "no-case": "^3.0.3",
-        "tslib": "^1.10.0"
-      }
-    },
-    "pascalcase": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
-      "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
-      "dev": true
-    },
-    "path-browserify": {
-      "version": "0.0.1",
-      "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
-      "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==",
-      "dev": true
-    },
-    "path-dirname": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
-      "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
-      "dev": true
-    },
-    "path-exists": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
-      "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
-      "dev": true
-    },
-    "path-is-absolute": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
-      "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
-    },
-    "path-is-inside": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
-      "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
-      "dev": true
-    },
-    "path-key": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
-      "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
-      "dev": true
-    },
-    "path-parse": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
-      "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="
-    },
-    "path-to-regexp": {
-      "version": "2.4.0",
-      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.4.0.tgz",
-      "integrity": "sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==",
-      "dev": true
-    },
-    "path-type": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
-      "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
-      "dev": true,
-      "requires": {
-        "pify": "^3.0.0"
-      },
-      "dependencies": {
-        "pify": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
-          "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
-          "dev": true
-        }
-      }
-    },
-    "pbf": {
-      "version": "3.2.1",
-      "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz",
-      "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==",
-      "requires": {
-        "ieee754": "^1.1.12",
-        "resolve-protobuf-schema": "^2.1.0"
-      }
-    },
-    "pbkdf2": {
-      "version": "3.0.17",
-      "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz",
-      "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==",
-      "dev": true,
-      "requires": {
-        "create-hash": "^1.1.2",
-        "create-hmac": "^1.1.4",
-        "ripemd160": "^2.0.1",
-        "safe-buffer": "^5.0.1",
-        "sha.js": "^2.4.8"
-      }
-    },
-    "performance-now": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
-      "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
-    },
-    "picomatch": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.1.tgz",
-      "integrity": "sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA==",
-      "dev": true
-    },
-    "pify": {
-      "version": "2.3.0",
-      "resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
-      "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
-      "dev": true
-    },
-    "pinkie": {
-      "version": "2.0.4",
-      "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
-      "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
-      "dev": true
-    },
-    "pinkie-promise": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
-      "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
-      "dev": true,
-      "requires": {
-        "pinkie": "^2.0.0"
-      }
-    },
-    "pirates": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz",
-      "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==",
-      "dev": true,
-      "requires": {
-        "node-modules-regexp": "^1.0.0"
-      }
-    },
-    "pkg-dir": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
-      "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
-      "dev": true,
-      "requires": {
-        "find-up": "^3.0.0"
-      },
-      "dependencies": {
-        "find-up": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
-          "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^3.0.0"
-          }
-        },
-        "locate-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
-          "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^3.0.0",
-            "path-exists": "^3.0.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.2.2",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.2.tgz",
-          "integrity": "sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
-          "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.0.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        }
-      }
-    },
-    "pkg-up": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz",
-      "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=",
-      "dev": true,
-      "requires": {
-        "find-up": "^2.1.0"
-      }
-    },
-    "pn": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz",
-      "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==",
-      "dev": true
-    },
-    "pnp-webpack-plugin": {
-      "version": "1.6.4",
-      "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz",
-      "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==",
-      "dev": true,
-      "requires": {
-        "ts-pnp": "^1.1.6"
-      }
-    },
-    "po2json": {
-      "version": "0.4.5",
-      "resolved": "https://registry.npmjs.org/po2json/-/po2json-0.4.5.tgz",
-      "integrity": "sha1-R7spUtoy1Yob4vJWpZjuvAt0URg=",
-      "dev": true,
-      "requires": {
-        "gettext-parser": "1.1.0",
-        "nomnom": "1.8.1"
-      }
-    },
-    "polished": {
-      "version": "3.6.5",
-      "resolved": "https://registry.npmjs.org/polished/-/polished-3.6.5.tgz",
-      "integrity": "sha512-VwhC9MlhW7O5dg/z7k32dabcAFW1VI2+7fSe8cE/kXcfL7mVdoa5UxciYGW2sJU78ldDLT6+ROEKIZKFNTnUXQ==",
-      "requires": {
-        "@babel/runtime": "^7.9.2"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.11.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz",
-          "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "popper.js": {
-      "version": "1.16.1",
-      "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz",
-      "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==",
-      "dev": true
-    },
-    "portfinder": {
-      "version": "1.0.28",
-      "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz",
-      "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==",
-      "dev": true,
-      "requires": {
-        "async": "^2.6.2",
-        "debug": "^3.1.1",
-        "mkdirp": "^0.5.5"
-      },
-      "dependencies": {
-        "async": {
-          "version": "2.6.3",
-          "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
-          "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
-          "dev": true,
-          "requires": {
-            "lodash": "^4.17.14"
-          }
-        },
-        "debug": {
-          "version": "3.2.6",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
-          "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        }
-      }
-    },
-    "posix-character-classes": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
-      "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
-      "dev": true
-    },
-    "postcss": {
-      "version": "6.0.23",
-      "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
-      "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
-      "dev": true,
-      "requires": {
-        "chalk": "^2.4.1",
-        "source-map": "^0.6.1",
-        "supports-color": "^5.4.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.1",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
-          "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-calc": {
-      "version": "7.0.1",
-      "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.1.tgz",
-      "integrity": "sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ==",
-      "dev": true,
-      "requires": {
-        "css-unit-converter": "^1.1.1",
-        "postcss": "^7.0.5",
-        "postcss-selector-parser": "^5.0.0-rc.4",
-        "postcss-value-parser": "^3.3.1"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-colormin": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz",
-      "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==",
-      "dev": true,
-      "requires": {
-        "browserslist": "^4.0.0",
-        "color": "^3.0.0",
-        "has": "^1.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-convert-values": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz",
-      "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-discard-comments": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz",
-      "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-discard-duplicates": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz",
-      "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-discard-empty": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz",
-      "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-discard-overridden": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz",
-      "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-flexbugs-fixes": {
-      "version": "4.2.1",
-      "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz",
-      "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.26"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.32",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz",
-          "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-load-config": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz",
-      "integrity": "sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==",
-      "dev": true,
-      "requires": {
-        "cosmiconfig": "^5.0.0",
-        "import-cwd": "^2.0.0"
-      }
-    },
-    "postcss-loader": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz",
-      "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^1.1.0",
-        "postcss": "^7.0.0",
-        "postcss-load-config": "^2.0.0",
-        "schema-utils": "^1.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.32",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz",
-          "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "schema-utils": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
-          "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
-          "dev": true,
-          "requires": {
-            "ajv": "^6.1.0",
-            "ajv-errors": "^1.0.0",
-            "ajv-keywords": "^3.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-merge-longhand": {
-      "version": "4.0.11",
-      "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz",
-      "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==",
-      "dev": true,
-      "requires": {
-        "css-color-names": "0.0.4",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0",
-        "stylehacks": "^4.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-merge-rules": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz",
-      "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==",
-      "dev": true,
-      "requires": {
-        "browserslist": "^4.0.0",
-        "caniuse-api": "^3.0.0",
-        "cssnano-util-same-parent": "^4.0.0",
-        "postcss": "^7.0.0",
-        "postcss-selector-parser": "^3.0.0",
-        "vendors": "^1.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "is-obj": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
-          "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
-          "dev": true
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "postcss-selector-parser": {
-          "version": "3.1.2",
-          "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
-          "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==",
-          "dev": true,
-          "requires": {
-            "dot-prop": "^5.2.0",
-            "indexes-of": "^1.0.1",
-            "uniq": "^1.0.1"
-          },
-          "dependencies": {
-            "dot-prop": {
-              "version": "5.2.0",
-              "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz",
-              "integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==",
-              "dev": true,
-              "requires": {
-                "is-obj": "^2.0.0"
-              }
-            }
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-minify-font-values": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz",
-      "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-minify-gradients": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz",
-      "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==",
-      "dev": true,
-      "requires": {
-        "cssnano-util-get-arguments": "^4.0.0",
-        "is-color-stop": "^1.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-minify-params": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz",
-      "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==",
-      "dev": true,
-      "requires": {
-        "alphanum-sort": "^1.0.0",
-        "browserslist": "^4.0.0",
-        "cssnano-util-get-arguments": "^4.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0",
-        "uniqs": "^2.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-minify-selectors": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz",
-      "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==",
-      "dev": true,
-      "requires": {
-        "alphanum-sort": "^1.0.0",
-        "has": "^1.0.0",
-        "postcss": "^7.0.0",
-        "postcss-selector-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "is-obj": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
-          "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
-          "dev": true
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "postcss-selector-parser": {
-          "version": "3.1.2",
-          "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
-          "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==",
-          "dev": true,
-          "requires": {
-            "dot-prop": "^5.2.0",
-            "indexes-of": "^1.0.1",
-            "uniq": "^1.0.1"
-          },
-          "dependencies": {
-            "dot-prop": {
-              "version": "5.2.0",
-              "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz",
-              "integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==",
-              "dev": true,
-              "requires": {
-                "is-obj": "^2.0.0"
-              }
-            }
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-modules-extract-imports": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz",
-      "integrity": "sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==",
-      "dev": true,
-      "requires": {
-        "postcss": "^6.0.1"
-      }
-    },
-    "postcss-modules-local-by-default": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz",
-      "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=",
-      "dev": true,
-      "requires": {
-        "css-selector-tokenizer": "^0.7.0",
-        "postcss": "^6.0.1"
-      }
-    },
-    "postcss-modules-scope": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz",
-      "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=",
-      "dev": true,
-      "requires": {
-        "css-selector-tokenizer": "^0.7.0",
-        "postcss": "^6.0.1"
-      }
-    },
-    "postcss-modules-values": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz",
-      "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=",
-      "dev": true,
-      "requires": {
-        "icss-replace-symbols": "^1.1.0",
-        "postcss": "^6.0.1"
-      }
-    },
-    "postcss-normalize-charset": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz",
-      "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-normalize-display-values": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz",
-      "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==",
-      "dev": true,
-      "requires": {
-        "cssnano-util-get-match": "^4.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-normalize-positions": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz",
-      "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==",
-      "dev": true,
-      "requires": {
-        "cssnano-util-get-arguments": "^4.0.0",
-        "has": "^1.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-normalize-repeat-style": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz",
-      "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==",
-      "dev": true,
-      "requires": {
-        "cssnano-util-get-arguments": "^4.0.0",
-        "cssnano-util-get-match": "^4.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-normalize-string": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz",
-      "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==",
-      "dev": true,
-      "requires": {
-        "has": "^1.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-normalize-timing-functions": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz",
-      "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==",
-      "dev": true,
-      "requires": {
-        "cssnano-util-get-match": "^4.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-normalize-unicode": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz",
-      "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==",
-      "dev": true,
-      "requires": {
-        "browserslist": "^4.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-normalize-url": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz",
-      "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==",
-      "dev": true,
-      "requires": {
-        "is-absolute-url": "^2.0.0",
-        "normalize-url": "^3.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-normalize-whitespace": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz",
-      "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==",
-      "dev": true,
-      "requires": {
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-ordered-values": {
-      "version": "4.1.2",
-      "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz",
-      "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==",
-      "dev": true,
-      "requires": {
-        "cssnano-util-get-arguments": "^4.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-reduce-initial": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz",
-      "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==",
-      "dev": true,
-      "requires": {
-        "browserslist": "^4.0.0",
-        "caniuse-api": "^3.0.0",
-        "has": "^1.0.0",
-        "postcss": "^7.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-reduce-transforms": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz",
-      "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==",
-      "dev": true,
-      "requires": {
-        "cssnano-util-get-match": "^4.0.0",
-        "has": "^1.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-selector-parser": {
-      "version": "5.0.0",
-      "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
-      "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
-      "dev": true,
-      "requires": {
-        "cssesc": "^2.0.0",
-        "indexes-of": "^1.0.1",
-        "uniq": "^1.0.1"
-      },
-      "dependencies": {
-        "cssesc": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
-          "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
-          "dev": true
-        }
-      }
-    },
-    "postcss-svgo": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz",
-      "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==",
-      "dev": true,
-      "requires": {
-        "is-svg": "^3.0.0",
-        "postcss": "^7.0.0",
-        "postcss-value-parser": "^3.0.0",
-        "svgo": "^1.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-unique-selectors": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz",
-      "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==",
-      "dev": true,
-      "requires": {
-        "alphanum-sort": "^1.0.0",
-        "postcss": "^7.0.0",
-        "uniqs": "^2.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "postcss-value-parser": {
-      "version": "3.3.1",
-      "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
-      "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
-      "dev": true
-    },
-    "potpack": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.1.tgz",
-      "integrity": "sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw=="
-    },
-    "prelude-ls": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
-      "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ="
-    },
-    "prettier": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz",
-      "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==",
-      "dev": true
-    },
-    "prettier-linter-helpers": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
-      "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
-      "dev": true,
-      "requires": {
-        "fast-diff": "^1.1.2"
-      }
-    },
-    "pretty-error": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz",
-      "integrity": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=",
-      "dev": true,
-      "requires": {
-        "renderkid": "^2.0.1",
-        "utila": "~0.4"
-      }
-    },
-    "pretty-format": {
-      "version": "25.5.0",
-      "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz",
-      "integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==",
-      "dev": true,
-      "requires": {
-        "@jest/types": "^25.5.0",
-        "ansi-regex": "^5.0.0",
-        "ansi-styles": "^4.0.0",
-        "react-is": "^16.12.0"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
-          "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
-          "dev": true,
-          "requires": {
-            "@types/color-name": "^1.1.1",
-            "color-convert": "^2.0.1"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
-          "dev": true
-        }
-      }
-    },
-    "pretty-hrtime": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
-      "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=",
-      "dev": true
-    },
-    "pretty-ms": {
-      "version": "7.0.1",
-      "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz",
-      "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==",
-      "requires": {
-        "parse-ms": "^2.1.0"
-      }
-    },
-    "prismjs": {
-      "version": "1.15.0",
-      "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.15.0.tgz",
-      "integrity": "sha512-Lf2JrFYx8FanHrjoV5oL8YHCclLQgbJcVZR+gikGGMqz6ub5QVWDTM6YIwm3BuPxM/LOV+rKns3LssXNLIf+DA==",
-      "dev": true,
-      "requires": {
-        "clipboard": "^2.0.0"
-      }
-    },
-    "private": {
-      "version": "0.1.8",
-      "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
-      "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==",
-      "dev": true
-    },
-    "probe.gl": {
-      "version": "3.3.0",
-      "resolved": "https://registry.npmjs.org/probe.gl/-/probe.gl-3.3.0.tgz",
-      "integrity": "sha512-59E6AEw4N8sU4PKfAl7S2UBYJCOa064WpEFcXfeFOB/36FJtplYY+261DqLjLAvOqRRHiKVEQUBo63PQ3jKeWA==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "@probe.gl/stats": "3.3.0"
-      }
-    },
-    "process": {
-      "version": "0.11.10",
-      "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
-      "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="
-    },
-    "process-nextick-args": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
-      "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="
-    },
-    "progress": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
-      "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
-      "dev": true
-    },
-    "promise": {
-      "version": "7.3.1",
-      "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
-      "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
-      "requires": {
-        "asap": "~2.0.3"
-      }
-    },
-    "promise-inflight": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
-      "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
-      "dev": true
-    },
-    "promise.allsettled": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/promise.allsettled/-/promise.allsettled-1.0.2.tgz",
-      "integrity": "sha512-UpcYW5S1RaNKT6pd+s9jp9K9rlQge1UXKskec0j6Mmuq7UJCvlS2J2/s/yuPN8ehftf9HXMxWlKiPbGGUzpoRg==",
-      "dev": true,
-      "requires": {
-        "array.prototype.map": "^1.0.1",
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.0-next.1",
-        "function-bind": "^1.1.1",
-        "iterate-value": "^1.0.0"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "promise.prototype.finally": {
-      "version": "3.1.2",
-      "resolved": "https://registry.npmjs.org/promise.prototype.finally/-/promise.prototype.finally-3.1.2.tgz",
-      "integrity": "sha512-A2HuJWl2opDH0EafgdjwEw7HysI8ff/n4lW4QEVBCUXFk9QeGecBWv0Deph0UmLe3tTNYegz8MOjsVuE6SMoJA==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.0-next.0",
-        "function-bind": "^1.1.1"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "prompts": {
-      "version": "2.4.0",
-      "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz",
-      "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==",
-      "dev": true,
-      "requires": {
-        "kleur": "^3.0.3",
-        "sisteransi": "^1.0.5"
-      }
-    },
-    "prop-types": {
-      "version": "15.7.2",
-      "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz",
-      "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==",
-      "requires": {
-        "loose-envify": "^1.4.0",
-        "object-assign": "^4.1.1",
-        "react-is": "^16.8.1"
-      },
-      "dependencies": {
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "prop-types-exact": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz",
-      "integrity": "sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==",
-      "dev": true,
-      "requires": {
-        "has": "^1.0.3",
-        "object.assign": "^4.1.0",
-        "reflect.ownkeys": "^0.2.0"
-      }
-    },
-    "prop-types-extra": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz",
-      "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==",
-      "requires": {
-        "react-is": "^16.3.2",
-        "warning": "^4.0.0"
-      },
-      "dependencies": {
-        "warning": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
-          "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
-          "requires": {
-            "loose-envify": "^1.0.0"
-          }
-        }
-      }
-    },
-    "property-information": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.0.1.tgz",
-      "integrity": "sha512-nAtBDVeSwFM3Ot/YxT7s4NqZmqXI7lLzf46BThvotEtYf2uk2yH0ACYuWQkJ7gxKs49PPtKVY0UlDGkyN9aJlw==",
-      "requires": {
-        "xtend": "^4.0.1"
-      }
-    },
-    "proto-list": {
-      "version": "1.2.4",
-      "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
-      "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=",
-      "dev": true
-    },
-    "protocol-buffers-schema": {
-      "version": "3.4.0",
-      "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.4.0.tgz",
-      "integrity": "sha512-G/2kcamPF2S49W5yaMGdIpkG6+5wZF0fzBteLKgEHjbNzqjZQ85aAs1iJGto31EJaSTkNvHs5IXuHSaTLWBAiA=="
-    },
-    "proxy-addr": {
-      "version": "2.0.4",
-      "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz",
-      "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==",
-      "dev": true,
-      "requires": {
-        "forwarded": "~0.1.2",
-        "ipaddr.js": "1.8.0"
-      }
-    },
-    "prr": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
-      "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=",
-      "dev": true
-    },
-    "pseudomap": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
-      "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
-      "dev": true
-    },
-    "psl": {
-      "version": "1.1.31",
-      "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz",
-      "integrity": "sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw==",
-      "dev": true
-    },
-    "public-encrypt": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
-      "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
-      "dev": true,
-      "requires": {
-        "bn.js": "^4.1.0",
-        "browserify-rsa": "^4.0.0",
-        "create-hash": "^1.1.0",
-        "parse-asn1": "^5.0.0",
-        "randombytes": "^2.0.1",
-        "safe-buffer": "^5.1.2"
-      }
-    },
-    "pump": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
-      "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
-      "dev": true,
-      "requires": {
-        "end-of-stream": "^1.1.0",
-        "once": "^1.3.1"
-      }
-    },
-    "pumpify": {
-      "version": "1.5.1",
-      "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
-      "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
-      "dev": true,
-      "requires": {
-        "duplexify": "^3.6.0",
-        "inherits": "^2.0.3",
-        "pump": "^2.0.0"
-      },
-      "dependencies": {
-        "pump": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
-          "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
-          "dev": true,
-          "requires": {
-            "end-of-stream": "^1.1.0",
-            "once": "^1.3.1"
-          }
-        }
-      }
-    },
-    "punycode": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
-      "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
-      "dev": true
-    },
-    "pure-color": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz",
-      "integrity": "sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4="
-    },
-    "q": {
-      "version": "1.5.1",
-      "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
-      "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=",
-      "dev": true
-    },
-    "qs": {
-      "version": "6.5.2",
-      "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
-      "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
-      "dev": true
-    },
-    "query-string": {
-      "version": "6.13.7",
-      "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.7.tgz",
-      "integrity": "sha512-CsGs8ZYb39zu0WLkeOhe0NMePqgYdAuCqxOYKDR5LVCytDZYMGx3Bb+xypvQvPHVPijRXB0HZNFllCzHRe4gEA==",
-      "requires": {
-        "decode-uri-component": "^0.2.0",
-        "split-on-first": "^1.0.0",
-        "strict-uri-encode": "^2.0.0"
-      }
-    },
-    "querystring": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
-      "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
-      "dev": true
-    },
-    "querystring-es3": {
-      "version": "0.2.1",
-      "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
-      "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=",
-      "dev": true
-    },
-    "querystringify": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
-      "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
-      "dev": true
-    },
-    "quickselect": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz",
-      "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw=="
-    },
-    "quote-stream": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz",
-      "integrity": "sha1-hJY/jJwmuULhU/7rU6rnRlK34LI=",
-      "requires": {
-        "buffer-equal": "0.0.1",
-        "minimist": "^1.1.3",
-        "through2": "^2.0.0"
-      }
-    },
-    "raf": {
-      "version": "3.4.1",
-      "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz",
-      "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==",
-      "requires": {
-        "performance-now": "^2.1.0"
-      }
-    },
-    "raf-schd": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.2.tgz",
-      "integrity": "sha512-VhlMZmGy6A6hrkJWHLNTGl5gtgMUm+xfGza6wbwnE914yeQ5Ybm18vgM734RZhMgfw4tacUrWseGZlpUrrakEQ=="
-    },
-    "railroad-diagrams": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz",
-      "integrity": "sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=",
-      "dev": true
-    },
-    "ramda": {
-      "version": "0.26.1",
-      "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.26.1.tgz",
-      "integrity": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ=="
-    },
-    "randexp": {
-      "version": "0.4.6",
-      "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz",
-      "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==",
-      "dev": true,
-      "requires": {
-        "discontinuous-range": "1.0.0",
-        "ret": "~0.1.10"
-      }
-    },
-    "randombytes": {
-      "version": "2.0.6",
-      "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz",
-      "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==",
-      "dev": true,
-      "requires": {
-        "safe-buffer": "^5.1.0"
-      }
-    },
-    "randomfill": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
-      "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
-      "dev": true,
-      "requires": {
-        "randombytes": "^2.0.5",
-        "safe-buffer": "^5.1.0"
-      }
-    },
-    "range-parser": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz",
-      "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=",
-      "dev": true
-    },
-    "raw-body": {
-      "version": "2.3.3",
-      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz",
-      "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==",
-      "dev": true,
-      "requires": {
-        "bytes": "3.0.0",
-        "http-errors": "1.6.3",
-        "iconv-lite": "0.4.23",
-        "unpipe": "1.0.0"
-      },
-      "dependencies": {
-        "iconv-lite": {
-          "version": "0.4.23",
-          "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz",
-          "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==",
-          "dev": true,
-          "requires": {
-            "safer-buffer": ">= 2.1.2 < 3"
-          }
-        }
-      }
-    },
-    "raw-loader": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.1.tgz",
-      "integrity": "sha512-baolhQBSi3iNh1cglJjA0mYzga+wePk7vdEX//1dTFd+v4TsQlQE0jitJSNF1OIP82rdYulH7otaVmdlDaJ64A==",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^2.0.0",
-        "schema-utils": "^2.6.5"
-      },
-      "dependencies": {
-        "ajv": {
-          "version": "6.12.4",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz",
-          "integrity": "sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ajv-keywords": {
-          "version": "3.5.2",
-          "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-          "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-          "dev": true
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "loader-utils": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-          "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^2.1.2"
-          }
-        },
-        "schema-utils": {
-          "version": "2.7.0",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz",
-          "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==",
-          "dev": true,
-          "requires": {
-            "@types/json-schema": "^7.0.4",
-            "ajv": "^6.12.2",
-            "ajv-keywords": "^3.4.1"
-          }
-        }
-      }
-    },
-    "rc-align": {
-      "version": "4.0.9",
-      "resolved": "https://registry.npmjs.org/rc-align/-/rc-align-4.0.9.tgz",
-      "integrity": "sha512-myAM2R4qoB6LqBul0leaqY8gFaiECDJ3MtQDmzDo9xM9NRT/04TvWOYd2YHU9zvGzqk9QXF6S9/MifzSKDZeMw==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "2.x",
-        "dom-align": "^1.7.0",
-        "rc-util": "^5.3.0",
-        "resize-observer-polyfill": "^1.5.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-cascader": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/rc-cascader/-/rc-cascader-1.4.0.tgz",
-      "integrity": "sha512-6kgQljDQEKjVAVRkZtvvoi+2qv4u42M6oLuvt4ZDBa16r3X9ZN8TAq3atVyC840ivbGKlHT50OcdVx/iwiHc1w==",
-      "requires": {
-        "array-tree-filter": "^2.1.0",
-        "rc-trigger": "^5.0.4",
-        "rc-util": "^5.0.1",
-        "warning": "^4.0.1"
-      },
-      "dependencies": {
-        "warning": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
-          "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
-          "requires": {
-            "loose-envify": "^1.0.0"
-          }
-        }
-      }
-    },
-    "rc-checkbox": {
-      "version": "2.3.2",
-      "resolved": "https://registry.npmjs.org/rc-checkbox/-/rc-checkbox-2.3.2.tgz",
-      "integrity": "sha512-afVi1FYiGv1U0JlpNH/UaEXdh6WUJjcWokj/nUN2TgG80bfG+MDdbfHKlLcNNba94mbjy2/SXJ1HDgrOkXGAjg==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-collapse": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/rc-collapse/-/rc-collapse-3.1.0.tgz",
-      "integrity": "sha512-EwpNPJcLe7b+5JfyaxM9ZNnkCgqArt3QQO0Cr5p5plwz/C9h8liAmjYY5I4+hl9lAjBqb7ZwLu94+z+rt5g1WQ==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "2.x",
-        "rc-motion": "^2.3.4",
-        "rc-util": "^5.2.1",
-        "shallowequal": "^1.1.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-dialog": {
-      "version": "8.4.5",
-      "resolved": "https://registry.npmjs.org/rc-dialog/-/rc-dialog-8.4.5.tgz",
-      "integrity": "sha512-0a1Uuy1BRBTdIkfR1VE91kis6dBui7tAIPaQQLj28vBdGg9IqVkiLguCdaDW+4E4vZediePz49PKFbLkx2PL5Q==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.6",
-        "rc-motion": "^2.3.0",
-        "rc-util": "^5.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-drawer": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/rc-drawer/-/rc-drawer-4.1.0.tgz",
-      "integrity": "sha512-kjeQFngPjdzAFahNIV0EvEBoIKMOnvUsAxpkSPELoD/1DuR4nLafom5ryma+TIxGwkFJ92W6yjsMi1U9aiOTeQ==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.6",
-        "rc-util": "^5.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-dropdown": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/rc-dropdown/-/rc-dropdown-3.2.0.tgz",
-      "integrity": "sha512-j1HSw+/QqlhxyTEF6BArVZnTmezw2LnSmRk6I9W7BCqNCKaRwleRmMMs1PHbuaG8dKHVqP6e21RQ7vPBLVnnNw==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.6",
-        "rc-trigger": "^5.0.4"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-field-form": {
-      "version": "1.17.3",
-      "resolved": "https://registry.npmjs.org/rc-field-form/-/rc-field-form-1.17.3.tgz",
-      "integrity": "sha512-EocLncL7uDkxAGywqbtDXe6r8xbru9Yz94JHY7X6XsIdc8sAIGzafMYFaX0hHuwBGbvo7mv7L74cGCuD7xK5Fw==",
-      "requires": {
-        "@babel/runtime": "^7.8.4",
-        "async-validator": "^3.0.3",
-        "rc-util": "^5.0.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-image": {
-      "version": "4.2.0",
-      "resolved": "https://registry.npmjs.org/rc-image/-/rc-image-4.2.0.tgz",
-      "integrity": "sha512-yGqq6wPrIn86hMfC1Hl7M3NNS6zqnl9dvFWJg/StuI86jZBU0rm9rePTfKs+4uiwU3HXxpfsXlaG2p8GWRDLiw==",
-      "requires": {
-        "@ant-design/icons": "^4.2.2",
-        "@babel/runtime": "^7.11.2",
-        "classnames": "^2.2.6",
-        "rc-dialog": "~8.4.0",
-        "rc-util": "^5.0.6"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-input-number": {
-      "version": "6.1.2",
-      "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-6.1.2.tgz",
-      "integrity": "sha512-UvP0tpOUeGetx6caS8RzBs3Du+NwPUn9ijQ3LeR1jOmzjXNuXvv58U6hvIXSHx/4ulPleQ5BAQP/aLTsFB4yGw==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.5",
-        "rc-util": "^5.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-mentions": {
-      "version": "1.5.2",
-      "resolved": "https://registry.npmjs.org/rc-mentions/-/rc-mentions-1.5.2.tgz",
-      "integrity": "sha512-GqV0tOtHY3pLpOsFCxJ2i6Ad8AVfxFmz0NlD/8rb8IG8pMpthJKcdfnXlNZRx3Fa9O4YEgJpdSY1WEbmlx2DWQ==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.6",
-        "rc-menu": "^8.0.1",
-        "rc-textarea": "^0.3.0",
-        "rc-trigger": "^5.0.4",
-        "rc-util": "^5.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-menu": {
-      "version": "8.10.1",
-      "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-8.10.1.tgz",
-      "integrity": "sha512-HmTOLPkSrz5RcdDopD4+nI95YXR2DzdSq9ek3NX2EVgD1UHknlp1QAEJ5MompYdAqdtOspJUqgM/zNt0iQALOw==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "2.x",
-        "mini-store": "^3.0.1",
-        "omit.js": "^2.0.0",
-        "rc-motion": "^2.0.1",
-        "rc-trigger": "^5.1.2",
-        "rc-util": "^5.5.0",
-        "resize-observer-polyfill": "^1.5.0",
-        "shallowequal": "^1.1.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-motion": {
-      "version": "2.4.1",
-      "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.4.1.tgz",
-      "integrity": "sha512-TWLvymfMu8SngPx5MDH8dQ0D2RYbluNTfam4hY/dNNx9RQ3WtGuZ/GXHi2ymLMzH+UNd6EEFYkOuR5JTTtm8Xg==",
-      "requires": {
-        "@babel/runtime": "^7.11.1",
-        "classnames": "^2.2.1",
-        "rc-util": "^5.2.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-notification": {
-      "version": "4.5.4",
-      "resolved": "https://registry.npmjs.org/rc-notification/-/rc-notification-4.5.4.tgz",
-      "integrity": "sha512-VsN0ouF4uglE5g3C9oDsXLNYX0Sz++ZNUFYCswkxhpImYJ9u6nJOpyA71uOYDVCu6bAF54Y5Hi/b+EcnMzkepg==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "2.x",
-        "rc-motion": "^2.2.0",
-        "rc-util": "^5.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-pagination": {
-      "version": "3.1.2",
-      "resolved": "https://registry.npmjs.org/rc-pagination/-/rc-pagination-3.1.2.tgz",
-      "integrity": "sha512-KbJvkTvRiD51vTIAi0oTARPUHNb0iV6njbDBe8yLkc3PWYDJaszASfuss6YJ98EIxEeGzuEk6xsUAEKWRJgz2g==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-picker": {
-      "version": "2.4.3",
-      "resolved": "https://registry.npmjs.org/rc-picker/-/rc-picker-2.4.3.tgz",
-      "integrity": "sha512-tOIHslTQKpoGNmbpp6YOBwS39dQSvtAuhOm3bWCkkc4jCqUqeR/velCwqefZX1BX4+t1gUMc1dIia9XvOKrEkg==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.1",
-        "date-fns": "^2.15.0",
-        "dayjs": "^1.8.30",
-        "moment": "^2.24.0",
-        "rc-trigger": "^5.0.4",
-        "rc-util": "^5.4.0",
-        "shallowequal": "^1.1.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-progress": {
-      "version": "3.1.1",
-      "resolved": "https://registry.npmjs.org/rc-progress/-/rc-progress-3.1.1.tgz",
-      "integrity": "sha512-1ns3pW7ll9bHfdXtlVLF+vngdvlxiCDtiqwXnZFEdurst11JTiPxVdeqnCNbhWx5hP4kCKkAPqG1N0FVfTSUGA==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.6"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-rate": {
-      "version": "2.9.1",
-      "resolved": "https://registry.npmjs.org/rc-rate/-/rc-rate-2.9.1.tgz",
-      "integrity": "sha512-MmIU7FT8W4LYRRHJD1sgG366qKtSaKb67D0/vVvJYR0lrCuRrCiVQ5qhfT5ghVO4wuVIORGpZs7ZKaYu+KMUzA==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.5",
-        "rc-util": "^5.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-resize-observer": {
-      "version": "0.2.6",
-      "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-0.2.6.tgz",
-      "integrity": "sha512-YX6nYnd6fk7zbuvT6oSDMKiZjyngjHoy+fz+vL3Tez38d/G5iGdaDJa2yE7345G6sc4Mm1IGRUIwclvltddhmA==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.1",
-        "rc-util": "^5.0.0",
-        "resize-observer-polyfill": "^1.5.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-select": {
-      "version": "11.5.3",
-      "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-11.5.3.tgz",
-      "integrity": "sha512-ASSO4J/ayfbQQ+KOEounIMGhySDHpQtrIuH1WEABOBy8HgKec8kOLmyLH+YIXSUDnTf/gtxmflgFtl7sQ9pkSw==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "2.x",
-        "rc-motion": "^2.0.1",
-        "rc-trigger": "^5.0.4",
-        "rc-util": "^5.0.1",
-        "rc-virtual-list": "^3.2.0",
-        "warning": "^4.0.3"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "warning": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
-          "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
-          "requires": {
-            "loose-envify": "^1.0.0"
-          }
-        }
-      }
-    },
-    "rc-slider": {
-      "version": "9.6.5",
-      "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-9.6.5.tgz",
-      "integrity": "sha512-XRUJDK668hy8MwGnHzZlXCQXXIOUnEs4m2vwk1jgDILVBxI0GwGOlC6T499pYY+NEWg8YgdCOAucFs/+X5WHpg==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.5",
-        "rc-tooltip": "^5.0.1",
-        "rc-util": "^5.0.0",
-        "shallowequal": "^1.1.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-steps": {
-      "version": "4.1.3",
-      "resolved": "https://registry.npmjs.org/rc-steps/-/rc-steps-4.1.3.tgz",
-      "integrity": "sha512-GXrMfWQOhN3sVze3JnzNboHpQdNHcdFubOETUHyDpa/U3HEKBZC3xJ8XK4paBgF4OJ3bdUVLC+uBPc6dCxvDYA==",
-      "requires": {
-        "@babel/runtime": "^7.10.2",
-        "classnames": "^2.2.3",
-        "rc-util": "^5.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-switch": {
-      "version": "3.2.2",
-      "resolved": "https://registry.npmjs.org/rc-switch/-/rc-switch-3.2.2.tgz",
-      "integrity": "sha512-+gUJClsZZzvAHGy1vZfnwySxj+MjLlGRyXKXScrtCTcmiYNPzxDFOxdQ/3pK1Kt/0POvwJ/6ALOR8gwdXGhs+A==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.1",
-        "rc-util": "^5.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-table": {
-      "version": "7.11.3",
-      "resolved": "https://registry.npmjs.org/rc-table/-/rc-table-7.11.3.tgz",
-      "integrity": "sha512-YyZry1CdqUrcH7MmWtLQZVvVZWbmTEbI5m650AZ+zYw4D5VF701samkMYl5z/H9yQFr+ugvDtXcya+e3vwRkMQ==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.5",
-        "rc-resize-observer": "^0.2.0",
-        "rc-util": "^5.4.0",
-        "shallowequal": "^1.1.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-tabs": {
-      "version": "11.7.2",
-      "resolved": "https://registry.npmjs.org/rc-tabs/-/rc-tabs-11.7.2.tgz",
-      "integrity": "sha512-2M/XE4TdecnjsDylJSs49OmjJuDuix3VmSiNaPd50PMqFc+dc4fEof3J8/ad12enicVOcsH4BEQEms//Kn4DBw==",
-      "requires": {
-        "@babel/runtime": "^7.11.2",
-        "classnames": "2.x",
-        "rc-dropdown": "^3.1.3",
-        "rc-menu": "^8.6.1",
-        "rc-resize-observer": "^0.2.1",
-        "rc-util": "^5.5.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-textarea": {
-      "version": "0.3.2",
-      "resolved": "https://registry.npmjs.org/rc-textarea/-/rc-textarea-0.3.2.tgz",
-      "integrity": "sha512-569hiqCtkZFCcxBpKLM+IdnjZDQCFoy7RlQ4bkked0wp9uh+ofgk5zuQNJPiPyMYzpKYRlYeZgJ1bnK/8Po0Sg==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.1",
-        "omit.js": "^2.0.0",
-        "rc-resize-observer": "^0.2.3"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-tooltip": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/rc-tooltip/-/rc-tooltip-5.0.1.tgz",
-      "integrity": "sha512-3AnxhUS0j74xAV3khrKw8o6rg+Ima3nw09DJBezMPnX3ImQUAnayWsPSlN1mEnihjA43rcFkGM1emiKE+CXyMQ==",
-      "requires": {
-        "@babel/runtime": "^7.11.2",
-        "rc-trigger": "^5.0.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-tree": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-4.0.0.tgz",
-      "integrity": "sha512-C2xlkA+/IypkHBPzbpAJGVWJh2HjeRbYCusA/m5k09WT6hQT0nC7LtLVmnb7QZecdBQPhoOgQh8gPwBR+xEMjQ==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "2.x",
-        "rc-motion": "^2.0.1",
-        "rc-util": "^5.0.0",
-        "rc-virtual-list": "^3.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-tree-select": {
-      "version": "4.2.0",
-      "resolved": "https://registry.npmjs.org/rc-tree-select/-/rc-tree-select-4.2.0.tgz",
-      "integrity": "sha512-VrrvBiOov6WR44RTGMqSw1Dmodg6Y++EH6a6R0ew43qsV4Ob0FGYRgoX811kImtt2Z+oAPJ6zZXN4WKtsQd3Gw==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "2.x",
-        "rc-select": "^11.1.1",
-        "rc-tree": "^4.0.0",
-        "rc-util": "^5.0.5"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "rc-trigger": {
-      "version": "5.2.0",
-      "resolved": "https://registry.npmjs.org/rc-trigger/-/rc-trigger-5.2.0.tgz",
-      "integrity": "sha512-fpC1ZkM/IgIIDfF6XHx3Hb2zXy9wvdI5eMh+6DdLygk6Z3HGmkri6ZCXg9a0wfF9AFuzlYTeBLS1uRASZRsnMQ==",
-      "requires": {
-        "@babel/runtime": "^7.11.2",
-        "classnames": "^2.2.6",
-        "rc-align": "^4.0.0",
-        "rc-motion": "^2.0.0",
-        "rc-util": "^5.5.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-upload": {
-      "version": "3.3.4",
-      "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-3.3.4.tgz",
-      "integrity": "sha512-v2sirR4JL31UTHD/f0LGUdd+tpFaOVUTPeIEjAXRP9kRN8TFhqOgcXl5ixtyqj90FmtRUmKmafCv0EmhBQUHqQ==",
-      "requires": {
-        "@babel/runtime": "^7.10.1",
-        "classnames": "^2.2.5",
-        "rc-util": "^5.2.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-util": {
-      "version": "5.0.6",
-      "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.0.6.tgz",
-      "integrity": "sha512-uLGxF9WjbpJSjd6iDnIjl8ZeMUglpcuh1DwO26aaXh++yAmlB6eIAJMUwwJCuqJvo4quCvsDPg1VkqHILc4U0A==",
-      "requires": {
-        "react-is": "^16.12.0",
-        "shallowequal": "^1.1.0"
-      },
-      "dependencies": {
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "rc-virtual-list": {
-      "version": "3.2.3",
-      "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.2.3.tgz",
-      "integrity": "sha512-uEeYDQWwQhxR97SekPeGRbzPtHSbSpw/mYb6QpZZ9bA43kf7s1socV3fD3ySYhQVzo0I+/IUD9jFGit6FbM0WA==",
-      "requires": {
-        "classnames": "^2.2.6",
-        "rc-resize-observer": "^0.2.3",
-        "rc-util": "^5.0.7"
-      },
-      "dependencies": {
-        "rc-util": {
-          "version": "5.5.1",
-          "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.5.1.tgz",
-          "integrity": "sha512-lnkBptu1RX65GO6jf28scbDMM/9MVl/hYI0uMEVM+cQ0ALLhFChDzgv7ciNpjayCH88wSDHTp6582es4tzJHhA==",
-          "requires": {
-            "react-is": "^16.12.0",
-            "shallowequal": "^1.1.0"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "re-resizable": {
-      "version": "6.6.1",
-      "resolved": "https://registry.npmjs.org/re-resizable/-/re-resizable-6.6.1.tgz",
-      "integrity": "sha512-ttWVasZ9X7c0ir0+4YK47tkmm9EAFssW07YLkeLzG5HCOuFgFAlSVzMlzAH0h3i6hDShQCHHJecVx5rk+snoFA==",
-      "requires": {
-        "fast-memoize": "^2.5.1"
-      }
-    },
-    "react": {
-      "version": "16.13.1",
-      "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz",
-      "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==",
-      "requires": {
-        "loose-envify": "^1.1.0",
-        "object-assign": "^4.1.1",
-        "prop-types": "^15.6.2"
-      }
-    },
-    "react-ace": {
-      "version": "5.10.0",
-      "resolved": "https://registry.npmjs.org/react-ace/-/react-ace-5.10.0.tgz",
-      "integrity": "sha512-aEK/XZCowP8IXq91e2DYqOtGhabk1bbjt+fyeW0UBcIkzDzP/RX/MeJKeyW7wsZcwElACVwyy9nnwXBTqgky3A==",
-      "requires": {
-        "brace": "^0.11.0",
-        "lodash.get": "^4.4.2",
-        "lodash.isequal": "^4.1.1",
-        "prop-types": "^15.5.8"
-      }
-    },
-    "react-base16-styling": {
-      "version": "0.5.3",
-      "resolved": "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.5.3.tgz",
-      "integrity": "sha1-OFjyTpxN2MvT9wLz901YHKKRcmk=",
-      "requires": {
-        "base16": "^1.0.0",
-        "lodash.curry": "^4.0.1",
-        "lodash.flow": "^3.3.0",
-        "pure-color": "^1.2.0"
-      }
-    },
-    "react-bootstrap": {
-      "version": "0.33.1",
-      "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-0.33.1.tgz",
-      "integrity": "sha512-qWTRravSds87P8WC82tETy2yIso8qDqlIm0czsrduCaYAFtHuyLu0XDbUlfLXeRzqgwm5sRk2wRaTNoiVkk/YQ==",
-      "requires": {
-        "@babel/runtime-corejs2": "^7.0.0",
-        "classnames": "^2.2.5",
-        "dom-helpers": "^3.2.0",
-        "invariant": "^2.2.4",
-        "keycode": "^2.2.0",
-        "prop-types": "^15.6.1",
-        "prop-types-extra": "^1.0.1",
-        "react-overlays": "^0.9.0",
-        "react-prop-types": "^0.4.0",
-        "react-transition-group": "^2.0.0",
-        "uncontrollable": "^7.0.2",
-        "warning": "^3.0.0"
-      }
-    },
-    "react-bootstrap-slider": {
-      "version": "2.1.5",
-      "resolved": "https://registry.npmjs.org/react-bootstrap-slider/-/react-bootstrap-slider-2.1.5.tgz",
-      "integrity": "sha512-7rO3JlCVIpr+XtwiSfg8r+MPqyl9KdLI61pNuSMBYYQZ42IWBC+kk/UDyYevp76aGAMtd9SCW8erxOvq+VpekQ==",
-      "requires": {
-        "bootstrap-slider": "9.9.0",
-        "es6bindall": "^0.0.9"
-      },
-      "dependencies": {
-        "bootstrap-slider": {
-          "version": "9.9.0",
-          "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-9.9.0.tgz",
-          "integrity": "sha1-ThTsxkAZAdod33aBqiTjOwDa3Og="
-        }
-      }
-    },
-    "react-checkbox-tree": {
-      "version": "1.5.1",
-      "resolved": "https://registry.npmjs.org/react-checkbox-tree/-/react-checkbox-tree-1.5.1.tgz",
-      "integrity": "sha512-fBLMVpd7/YXavzIBz+3OMS5eo2oZLW9PlTY4M1zrJ3TdZRzgILicSzRj6V5VKKm80y8uQXn60skn98pwn3i3Ig==",
-      "requires": {
-        "classnames": "^2.2.5",
-        "lodash": "^4.17.10",
-        "nanoid": "^2.0.0",
-        "prop-types": "^15.5.8"
-      }
-    },
-    "react-color": {
-      "version": "2.14.1",
-      "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.14.1.tgz",
-      "integrity": "sha512-ssv2ArSZdhTbIs29hyfw8JW+s3G4BCx/ILkwCajWZzrcx/2ZQfRpsaLVt38LAPbxe50LLszlmGtRerA14JzzRw==",
-      "requires": {
-        "lodash": "^4.0.1",
-        "material-colors": "^1.2.1",
-        "prop-types": "^15.5.10",
-        "reactcss": "^1.2.0",
-        "tinycolor2": "^1.4.1"
-      }
-    },
-    "react-datetime": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/react-datetime/-/react-datetime-3.0.4.tgz",
-      "integrity": "sha512-v6MVwCve+DRaLN2f22LTO5TlrPpkUXumPkp1zfrbhaFtSYGl2grZ2JtwJfLxRj/T4ACyePAV4srCR6cMSiQ/Iw==",
-      "requires": {
-        "prop-types": "^15.5.7"
-      }
-    },
-    "react-dev-utils": {
-      "version": "10.2.1",
-      "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-10.2.1.tgz",
-      "integrity": "sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==",
-      "dev": true,
-      "requires": {
-        "@babel/code-frame": "7.8.3",
-        "address": "1.1.2",
-        "browserslist": "4.10.0",
-        "chalk": "2.4.2",
-        "cross-spawn": "7.0.1",
-        "detect-port-alt": "1.1.6",
-        "escape-string-regexp": "2.0.0",
-        "filesize": "6.0.1",
-        "find-up": "4.1.0",
-        "fork-ts-checker-webpack-plugin": "3.1.1",
-        "global-modules": "2.0.0",
-        "globby": "8.0.2",
-        "gzip-size": "5.1.1",
-        "immer": "1.10.0",
-        "inquirer": "7.0.4",
-        "is-root": "2.1.0",
-        "loader-utils": "1.2.3",
-        "open": "^7.0.2",
-        "pkg-up": "3.1.0",
-        "react-error-overlay": "^6.0.7",
-        "recursive-readdir": "2.2.2",
-        "shell-quote": "1.7.2",
-        "strip-ansi": "6.0.0",
-        "text-table": "0.2.0"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.8.3",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",
-          "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.8.3"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "ansi-escapes": {
-          "version": "4.3.1",
-          "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz",
-          "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==",
-          "dev": true,
-          "requires": {
-            "type-fest": "^0.11.0"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "binary-extensions": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
-          "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==",
-          "dev": true
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "browserslist": {
-          "version": "4.10.0",
-          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.10.0.tgz",
-          "integrity": "sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==",
-          "dev": true,
-          "requires": {
-            "caniuse-lite": "^1.0.30001035",
-            "electron-to-chromium": "^1.3.378",
-            "node-releases": "^1.1.52",
-            "pkg-up": "^3.1.0"
-          }
-        },
-        "caniuse-lite": {
-          "version": "1.0.30001116",
-          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001116.tgz",
-          "integrity": "sha512-f2lcYnmAI5Mst9+g0nkMIznFGsArRmZ0qU+dnq8l91hymdc2J3SFbiPhOJEeDqC1vtE8nc1qNQyklzB8veJefQ==",
-          "dev": true
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "escape-string-regexp": {
-              "version": "1.0.5",
-              "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
-              "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
-              "dev": true
-            }
-          }
-        },
-        "chokidar": {
-          "version": "3.4.2",
-          "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.2.tgz",
-          "integrity": "sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==",
-          "dev": true,
-          "requires": {
-            "anymatch": "~3.1.1",
-            "braces": "~3.0.2",
-            "fsevents": "~2.1.2",
-            "glob-parent": "~5.1.0",
-            "is-binary-path": "~2.1.0",
-            "is-glob": "~4.0.1",
-            "normalize-path": "~3.0.0",
-            "readdirp": "~3.4.0"
-          }
-        },
-        "cli-cursor": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
-          "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
-          "dev": true,
-          "requires": {
-            "restore-cursor": "^3.1.0"
-          }
-        },
-        "cross-spawn": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz",
-          "integrity": "sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==",
-          "dev": true,
-          "requires": {
-            "path-key": "^3.1.0",
-            "shebang-command": "^2.0.0",
-            "which": "^2.0.1"
-          }
-        },
-        "detect-port-alt": {
-          "version": "1.1.6",
-          "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz",
-          "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==",
-          "dev": true,
-          "requires": {
-            "address": "^1.0.1",
-            "debug": "^2.6.0"
-          }
-        },
-        "dir-glob": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz",
-          "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==",
-          "dev": true,
-          "requires": {
-            "arrify": "^1.0.1",
-            "path-type": "^3.0.0"
-          }
-        },
-        "electron-to-chromium": {
-          "version": "1.3.539",
-          "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.539.tgz",
-          "integrity": "sha512-rM0LWDIstdqfaRUADZetNrL6+zd/0NBmavbMEhBXgc2u/CC1d1GaDyN5hho29fFvBiOVFwrSWZkzmNcZnCEDog==",
-          "dev": true
-        },
-        "emoji-regex": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-          "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-          "dev": true
-        },
-        "escape-string-regexp": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
-          "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
-          "dev": true
-        },
-        "figures": {
-          "version": "3.2.0",
-          "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
-          "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
-          "dev": true,
-          "requires": {
-            "escape-string-regexp": "^1.0.5"
-          },
-          "dependencies": {
-            "escape-string-regexp": {
-              "version": "1.0.5",
-              "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
-              "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
-              "dev": true
-            }
-          }
-        },
-        "filesize": {
-          "version": "6.0.1",
-          "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.0.1.tgz",
-          "integrity": "sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg==",
-          "dev": true
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          },
-          "dependencies": {
-            "locate-path": {
-              "version": "5.0.0",
-              "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-              "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-              "dev": true,
-              "requires": {
-                "p-locate": "^4.1.0"
-              }
-            },
-            "p-locate": {
-              "version": "4.1.0",
-              "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-              "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-              "dev": true,
-              "requires": {
-                "p-limit": "^2.2.0"
-              }
-            },
-            "path-exists": {
-              "version": "4.0.0",
-              "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-              "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-              "dev": true
-            }
-          }
-        },
-        "fork-ts-checker-webpack-plugin": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz",
-          "integrity": "sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==",
-          "dev": true,
-          "requires": {
-            "babel-code-frame": "^6.22.0",
-            "chalk": "^2.4.1",
-            "chokidar": "^3.3.0",
-            "micromatch": "^3.1.10",
-            "minimatch": "^3.0.4",
-            "semver": "^5.6.0",
-            "tapable": "^1.0.0",
-            "worker-rpc": "^0.1.0"
-          }
-        },
-        "fsevents": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
-          "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
-          "dev": true,
-          "optional": true
-        },
-        "glob-parent": {
-          "version": "5.1.1",
-          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
-          "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
-          "dev": true,
-          "requires": {
-            "is-glob": "^4.0.1"
-          }
-        },
-        "globby": {
-          "version": "8.0.2",
-          "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz",
-          "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==",
-          "dev": true,
-          "requires": {
-            "array-union": "^1.0.1",
-            "dir-glob": "2.0.0",
-            "fast-glob": "^2.0.2",
-            "glob": "^7.1.2",
-            "ignore": "^3.3.5",
-            "pify": "^3.0.0",
-            "slash": "^1.0.0"
-          }
-        },
-        "ignore": {
-          "version": "3.3.10",
-          "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz",
-          "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==",
-          "dev": true
-        },
-        "inquirer": {
-          "version": "7.0.4",
-          "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.4.tgz",
-          "integrity": "sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ==",
-          "dev": true,
-          "requires": {
-            "ansi-escapes": "^4.2.1",
-            "chalk": "^2.4.2",
-            "cli-cursor": "^3.1.0",
-            "cli-width": "^2.0.0",
-            "external-editor": "^3.0.3",
-            "figures": "^3.0.0",
-            "lodash": "^4.17.15",
-            "mute-stream": "0.0.8",
-            "run-async": "^2.2.0",
-            "rxjs": "^6.5.3",
-            "string-width": "^4.1.0",
-            "strip-ansi": "^5.1.0",
-            "through": "^2.3.6"
-          },
-          "dependencies": {
-            "ansi-regex": {
-              "version": "4.1.0",
-              "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
-              "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
-              "dev": true
-            },
-            "strip-ansi": {
-              "version": "5.2.0",
-              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
-              "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
-              "dev": true,
-              "requires": {
-                "ansi-regex": "^4.1.0"
-              }
-            }
-          }
-        },
-        "is-binary-path": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
-          "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
-          "dev": true,
-          "requires": {
-            "binary-extensions": "^2.0.0"
-          }
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "json5": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-          "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.0"
-          }
-        },
-        "loader-utils": {
-          "version": "1.2.3",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz",
-          "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^2.0.0",
-            "json5": "^1.0.1"
-          }
-        },
-        "locate-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
-          "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^3.0.0",
-            "path-exists": "^3.0.0"
-          }
-        },
-        "mimic-fn": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
-          "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
-          "dev": true
-        },
-        "mute-stream": {
-          "version": "0.0.8",
-          "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
-          "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
-          "dev": true
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "onetime": {
-          "version": "5.1.2",
-          "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
-          "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
-          "dev": true,
-          "requires": {
-            "mimic-fn": "^2.1.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
-          "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.0.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-key": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
-          "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
-          "dev": true
-        },
-        "pify": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
-          "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
-          "dev": true
-        },
-        "pkg-up": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz",
-          "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==",
-          "dev": true,
-          "requires": {
-            "find-up": "^3.0.0"
-          },
-          "dependencies": {
-            "find-up": {
-              "version": "3.0.0",
-              "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
-              "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
-              "dev": true,
-              "requires": {
-                "locate-path": "^3.0.0"
-              }
-            }
-          }
-        },
-        "readdirp": {
-          "version": "3.4.0",
-          "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz",
-          "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==",
-          "dev": true,
-          "requires": {
-            "picomatch": "^2.2.1"
-          }
-        },
-        "restore-cursor": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
-          "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
-          "dev": true,
-          "requires": {
-            "onetime": "^5.1.0",
-            "signal-exit": "^3.0.2"
-          }
-        },
-        "shebang-command": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
-          "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
-          "dev": true,
-          "requires": {
-            "shebang-regex": "^3.0.0"
-          }
-        },
-        "shebang-regex": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
-          "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
-          "dev": true
-        },
-        "slash": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
-          "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=",
-          "dev": true
-        },
-        "string-width": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
-          "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^8.0.0",
-            "is-fullwidth-code-point": "^3.0.0",
-            "strip-ansi": "^6.0.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "tapable": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
-          "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
-          "dev": true
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        },
-        "type-fest": {
-          "version": "0.11.0",
-          "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
-          "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==",
-          "dev": true
-        },
-        "which": {
-          "version": "2.0.2",
-          "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
-          "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
-          "dev": true,
-          "requires": {
-            "isexe": "^2.0.0"
-          }
-        }
-      }
-    },
-    "react-dnd": {
-      "version": "11.1.3",
-      "resolved": "https://registry.npmjs.org/react-dnd/-/react-dnd-11.1.3.tgz",
-      "integrity": "sha512-8rtzzT8iwHgdSC89VktwhqdKKtfXaAyC4wiqp0SywpHG12TTLvfOoL6xNEIUWXwIEWu+CFfDn4GZJyynCEuHIQ==",
-      "requires": {
-        "@react-dnd/shallowequal": "^2.0.0",
-        "@types/hoist-non-react-statics": "^3.3.1",
-        "dnd-core": "^11.1.3",
-        "hoist-non-react-statics": "^3.3.0"
-      },
-      "dependencies": {
-        "dnd-core": {
-          "version": "11.1.3",
-          "resolved": "https://registry.npmjs.org/dnd-core/-/dnd-core-11.1.3.tgz",
-          "integrity": "sha512-QugF55dNW+h+vzxVJ/LSJeTeUw9MCJ2cllhmVThVPEtF16ooBkxj0WBE5RB+AceFxMFo1rO6bJKXtqKl+JNnyA==",
-          "requires": {
-            "@react-dnd/asap": "^4.0.0",
-            "@react-dnd/invariant": "^2.0.0",
-            "redux": "^4.0.4"
-          }
-        }
-      }
-    },
-    "react-dnd-html5-backend": {
-      "version": "11.1.3",
-      "resolved": "https://registry.npmjs.org/react-dnd-html5-backend/-/react-dnd-html5-backend-11.1.3.tgz",
-      "integrity": "sha512-/1FjNlJbW/ivkUxlxQd7o3trA5DE33QiRZgxent3zKme8DwF4Nbw3OFVhTRFGaYhHFNL1rZt6Rdj1D78BjnNLw==",
-      "requires": {
-        "dnd-core": "^11.1.3"
-      },
-      "dependencies": {
-        "dnd-core": {
-          "version": "11.1.3",
-          "resolved": "https://registry.npmjs.org/dnd-core/-/dnd-core-11.1.3.tgz",
-          "integrity": "sha512-QugF55dNW+h+vzxVJ/LSJeTeUw9MCJ2cllhmVThVPEtF16ooBkxj0WBE5RB+AceFxMFo1rO6bJKXtqKl+JNnyA==",
-          "requires": {
-            "@react-dnd/asap": "^4.0.0",
-            "@react-dnd/invariant": "^2.0.0",
-            "redux": "^4.0.4"
-          }
-        }
-      }
-    },
-    "react-docgen": {
-      "version": "5.3.1",
-      "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.3.1.tgz",
-      "integrity": "sha512-YG7YujVTwlLslr2Ny8nQiUfbBuEwKsLHJdQTSdEga1eY/nRFh/7LjCWUn6ogYhu2WDKg4z+6W/BJtUi+DPUIlA==",
-      "dev": true,
-      "requires": {
-        "@babel/core": "^7.7.5",
-        "@babel/runtime": "^7.7.6",
-        "ast-types": "^0.14.2",
-        "commander": "^2.19.0",
-        "doctrine": "^3.0.0",
-        "neo-async": "^2.6.1",
-        "node-dir": "^0.1.10",
-        "strip-indent": "^3.0.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "doctrine": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
-          "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
-          "dev": true,
-          "requires": {
-            "esutils": "^2.0.2"
-          }
-        },
-        "neo-async": {
-          "version": "2.6.2",
-          "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
-          "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
-          "dev": true
-        }
-      }
-    },
-    "react-docgen-typescript": {
-      "version": "1.20.5",
-      "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-1.20.5.tgz",
-      "integrity": "sha512-AbLGMtn76bn7SYBJSSaKJrZ0lgNRRR3qL60PucM5M4v/AXyC8221cKBXW5Pyt9TfDRfe+LDnPNlg7TibxX0ovA==",
-      "dev": true
-    },
-    "react-docgen-typescript-loader": {
-      "version": "3.7.2",
-      "resolved": "https://registry.npmjs.org/react-docgen-typescript-loader/-/react-docgen-typescript-loader-3.7.2.tgz",
-      "integrity": "sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==",
-      "dev": true,
-      "requires": {
-        "@webpack-contrib/schema-utils": "^1.0.0-beta.0",
-        "loader-utils": "^1.2.3",
-        "react-docgen-typescript": "^1.15.0"
-      },
-      "dependencies": {
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "json5": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-          "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.0"
-          }
-        },
-        "loader-utils": {
-          "version": "1.4.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
-          "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^1.0.1"
-          }
-        }
-      }
-    },
-    "react-docgen-typescript-plugin": {
-      "version": "0.5.2",
-      "resolved": "https://registry.npmjs.org/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-0.5.2.tgz",
-      "integrity": "sha512-NQfWyWLmzUnedkiN2nPDb6Nkm68ik6fqbC3UvgjqYSeZsbKijXUA4bmV6aU7qICOXdop9PevPdjEgJuAN0nNVQ==",
-      "dev": true,
-      "requires": {
-        "debug": "^4.1.1",
-        "endent": "^2.0.1",
-        "micromatch": "^4.0.2",
-        "react-docgen-typescript": "^1.20.1",
-        "react-docgen-typescript-loader": "^3.7.2",
-        "tslib": "^2.0.0"
-      },
-      "dependencies": {
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "debug": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
-          "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        },
-        "tslib": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
-          "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==",
-          "dev": true
-        }
-      }
-    },
-    "react-dom": {
-      "version": "16.13.0",
-      "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.13.0.tgz",
-      "integrity": "sha512-y09d2c4cG220DzdlFkPTnVvGTszVvNpC73v+AaLGLHbkpy3SSgvYq8x0rNwPJ/Rk/CicTNgk0hbHNw1gMEZAXg==",
-      "requires": {
-        "loose-envify": "^1.1.0",
-        "object-assign": "^4.1.1",
-        "prop-types": "^15.6.2",
-        "scheduler": "^0.19.0"
-      },
-      "dependencies": {
-        "scheduler": {
-          "version": "0.19.0",
-          "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.0.tgz",
-          "integrity": "sha512-xowbVaTPe9r7y7RUejcK73/j8tt2jfiyTednOvHbA8JoClvMYCp+r8QegLwK/n8zWQAtZb1fFnER4XLBZXrCxA==",
-          "requires": {
-            "loose-envify": "^1.1.0",
-            "object-assign": "^4.1.1"
-          }
-        }
-      }
-    },
-    "react-draggable": {
-      "version": "4.4.3",
-      "resolved": "https://registry.npmjs.org/react-draggable/-/react-draggable-4.4.3.tgz",
-      "integrity": "sha512-jV4TE59MBuWm7gb6Ns3Q1mxX8Azffb7oTtDtBgFkxRvhDp38YAARmRplrj0+XGkhOJB5XziArX+4HUUABtyZ0w==",
-      "dev": true,
-      "requires": {
-        "classnames": "^2.2.5",
-        "prop-types": "^15.6.0"
-      }
-    },
-    "react-element-to-jsx-string": {
-      "version": "14.3.1",
-      "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-14.3.1.tgz",
-      "integrity": "sha512-LRdQWRB+xcVPOL4PU4RYuTg6dUJ/FNmaQ8ls6w38YbzkbV6Yr5tFNESroub9GiSghtnMq8dQg2LcNN5aMIDzVg==",
-      "dev": true,
-      "requires": {
-        "@base2/pretty-print-object": "1.0.0",
-        "is-plain-object": "3.0.0"
-      },
-      "dependencies": {
-        "is-plain-object": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz",
-          "integrity": "sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==",
-          "dev": true,
-          "requires": {
-            "isobject": "^4.0.0"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        }
-      }
-    },
-    "react-error-boundary": {
-      "version": "1.2.5",
-      "resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-1.2.5.tgz",
-      "integrity": "sha512-5CPSeLJA2igJNppAgFRwnTL9aK3ojenk65enNzhVyoxYNbHpIJXnChUO7+4vPhkncRA9wvQMXq6Azp2XeXd+iQ=="
-    },
-    "react-error-overlay": {
-      "version": "6.0.7",
-      "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.7.tgz",
-      "integrity": "sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA==",
-      "dev": true
-    },
-    "react-fast-compare": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz",
-      "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==",
-      "dev": true
-    },
-    "react-gravatar": {
-      "version": "2.6.3",
-      "resolved": "https://registry.npmjs.org/react-gravatar/-/react-gravatar-2.6.3.tgz",
-      "integrity": "sha1-VAfrash+gw4qNN63YNKkxATrHaw=",
-      "requires": {
-        "is-retina": "^1.0.3",
-        "md5": "^2.1.0",
-        "query-string": "^4.2.2"
-      },
-      "dependencies": {
-        "query-string": {
-          "version": "4.3.4",
-          "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz",
-          "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=",
-          "requires": {
-            "object-assign": "^4.1.0",
-            "strict-uri-encode": "^1.0.0"
-          }
-        },
-        "strict-uri-encode": {
-          "version": "1.1.0",
-          "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
-          "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM="
-        }
-      }
-    },
-    "react-helmet-async": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.0.6.tgz",
-      "integrity": "sha512-t+bhAI4NgxfEv8ez4r77cLfR4O4Z55E/FH2DT+uiE4U7yfWgAk7OAOi7IxHxuYEVLI26bqjZvlVCkpC5/5AoNA==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.9.2",
-        "invariant": "^2.2.4",
-        "prop-types": "^15.7.2",
-        "react-fast-compare": "^3.0.1",
-        "shallowequal": "^1.1.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.5.tgz",
-          "integrity": "sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "react-hot-loader": {
-      "version": "4.12.20",
-      "resolved": "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-4.12.20.tgz",
-      "integrity": "sha512-lPlv1HVizi0lsi+UFACBJaydtRYILWkfHAC/lyCs6ZlAxlOZRQIfYHDqiGaRvL/GF7zyti+Qn9XpnDAUvdFA4A==",
-      "requires": {
-        "fast-levenshtein": "^2.0.6",
-        "global": "^4.3.0",
-        "hoist-non-react-statics": "^3.3.0",
-        "loader-utils": "^1.1.0",
-        "prop-types": "^15.6.1",
-        "react-lifecycles-compat": "^3.0.4",
-        "shallowequal": "^1.1.0",
-        "source-map": "^0.7.3"
-      },
-      "dependencies": {
-        "react-is": {
-          "version": "16.13.0",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.0.tgz",
-          "integrity": "sha512-GFMtL0vHkiBv9HluwNZTggSn/sCyEt9n02aM0dSAjGGyqyNlAyftYm4phPxdvCigG15JreC5biwxCgTAJZ7yAA=="
-        },
-        "source-map": {
-          "version": "0.7.3",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
-          "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
-        }
-      }
-    },
-    "react-hotkeys": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/react-hotkeys/-/react-hotkeys-2.0.0.tgz",
-      "integrity": "sha512-3n3OU8vLX/pfcJrR3xJ1zlww6KS1kEJt0Whxc4FiGV+MJrQ1mYSYI3qS/11d2MJDFm8IhOXMTFQirfu6AVOF6Q==",
-      "dev": true,
-      "requires": {
-        "prop-types": "^15.6.1"
-      }
-    },
-    "react-icons": {
-      "version": "3.11.0",
-      "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-3.11.0.tgz",
-      "integrity": "sha512-JRgiI/vdF6uyBgyZhVyYJUZAop95Sy4XDe/jmT3R/bKliFWpO/uZBwvSjWEdxwzec7SYbEPNPck0Kff2tUGM2Q==",
-      "requires": {
-        "camelcase": "^5.0.0"
-      }
-    },
-    "react-input-autosize": {
-      "version": "2.2.2",
-      "resolved": "https://registry.npmjs.org/react-input-autosize/-/react-input-autosize-2.2.2.tgz",
-      "integrity": "sha512-jQJgYCA3S0j+cuOwzuCd1OjmBmnZLdqQdiLKRYrsMMzbjUrVDS5RvJUDwJqA7sKuksDuzFtm6hZGKFu7Mjk5aw==",
-      "requires": {
-        "prop-types": "^15.5.8"
-      }
-    },
-    "react-inspector": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-5.0.1.tgz",
-      "integrity": "sha512-qRIENuAIcRaytrmg/TL5nN5igYZMzyQqIKlWA8zoYRDltULsZC1bWy2Ua5wYJuwEYnC3gK4FCjcIQnb+5OyLsQ==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.8.7",
-        "is-dom": "^1.1.0",
-        "prop-types": "^15.6.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.11.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz",
-          "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "react-is": {
-      "version": "16.6.3",
-      "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.6.3.tgz",
-      "integrity": "sha512-u7FDWtthB4rWibG/+mFbVd5FvdI20yde86qKGx4lVUTWmPlSWQ4QxbBIrrs+HnXGbxOUlUzTAP/VDmvCwaP2yA=="
-    },
-    "react-is-mounted-hook": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/react-is-mounted-hook/-/react-is-mounted-hook-1.0.3.tgz",
-      "integrity": "sha512-YCCYcTVYMPfTi6WhWIwM9EYBcpHoivjjkE90O5ScsE9wXSbeXGZvLDMGt4mdSNcWshhc8JD0AzgBmsleCSdSFA=="
-    },
-    "react-js-cron": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/react-js-cron/-/react-js-cron-1.2.0.tgz",
-      "integrity": "sha512-mWxTmXkqP58ughdziS3qjEUVl1O03XEo8WDvr45/kTQfbd0C6ITniAsG5wZzwmTOgmrOKQheHog7L0TP683WUA=="
-    },
-    "react-json-tree": {
-      "version": "0.11.2",
-      "resolved": "https://registry.npmjs.org/react-json-tree/-/react-json-tree-0.11.2.tgz",
-      "integrity": "sha512-aYhUPj1y5jR3ZQ+G3N7aL8FbTyO03iLwnVvvEikLcNFqNTyabdljo9xDftZndUBFyyyL0aK3qGO9+8EilILHUw==",
-      "requires": {
-        "babel-runtime": "^6.6.1",
-        "prop-types": "^15.5.8",
-        "react-base16-styling": "^0.5.1"
-      }
-    },
-    "react-jsonschema-form": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/react-jsonschema-form/-/react-jsonschema-form-1.2.0.tgz",
-      "integrity": "sha512-rR77qoFiQ5TxDYwsJz8UWmDner4jQ4xMnDqeV6Nvg7GtoEyOUoTVkI/SBMEzfXuF/piWZXYjquP96Hy/2L7C+Q==",
-      "requires": {
-        "ajv": "^5.2.3",
-        "babel-runtime": "^6.26.0",
-        "core-js": "^2.5.7",
-        "lodash.topath": "^4.5.2",
-        "prop-types": "^15.5.8"
-      },
-      "dependencies": {
-        "ajv": {
-          "version": "5.5.2",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz",
-          "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=",
-          "requires": {
-            "co": "^4.6.0",
-            "fast-deep-equal": "^1.0.0",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.3.0"
-          }
-        },
-        "core-js": {
-          "version": "2.6.9",
-          "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz",
-          "integrity": "sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A=="
-        },
-        "fast-deep-equal": {
-          "version": "1.1.0",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz",
-          "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ="
-        },
-        "json-schema-traverse": {
-          "version": "0.3.1",
-          "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz",
-          "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A="
-        }
-      }
-    },
-    "react-lifecycles-compat": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz",
-      "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="
-    },
-    "react-loadable": {
-      "version": "5.5.0",
-      "resolved": "https://registry.npmjs.org/react-loadable/-/react-loadable-5.5.0.tgz",
-      "integrity": "sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg==",
-      "requires": {
-        "prop-types": "^15.5.0"
-      }
-    },
-    "react-map-gl": {
-      "version": "4.1.16",
-      "resolved": "https://registry.npmjs.org/react-map-gl/-/react-map-gl-4.1.16.tgz",
-      "integrity": "sha512-EtiHCeqM69wKR9RDyLvtk6pTPS5+OFeAPIsYw6afnlGTauFAq3iD40SHuAOElgoJmm7J+cjPfHqu7m7tB4/FfA==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "mapbox-gl": "~0.54.0",
-        "mjolnir.js": "^2.2.0",
-        "prop-types": "^15.7.2",
-        "react-virtualized-auto-sizer": "^1.0.2",
-        "viewport-mercator-project": "^6.2.1"
-      },
-      "dependencies": {
-        "esm": {
-          "version": "3.0.84",
-          "resolved": "https://registry.npmjs.org/esm/-/esm-3.0.84.tgz",
-          "integrity": "sha512-SzSGoZc17S7P+12R9cg21Bdb7eybX25RnIeRZ80xZs+VZ3kdQKzqTp2k4hZJjR7p9l0186TTXSgrxzlMDBktlw=="
-        },
-        "mapbox-gl": {
-          "version": "0.54.1",
-          "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-0.54.1.tgz",
-          "integrity": "sha512-HtY+HobYTHTsFOJ3buTHtNvZv/Tjfp0vararhEWCjI7wQq8XxK16sEpsXucokrAhuu94js4KJylo13bKJx6l0Q==",
-          "requires": {
-            "@mapbox/geojson-rewind": "^0.4.0",
-            "@mapbox/geojson-types": "^1.0.2",
-            "@mapbox/jsonlint-lines-primitives": "^2.0.2",
-            "@mapbox/mapbox-gl-supported": "^1.4.0",
-            "@mapbox/point-geometry": "^0.1.0",
-            "@mapbox/tiny-sdf": "^1.1.0",
-            "@mapbox/unitbezier": "^0.0.0",
-            "@mapbox/vector-tile": "^1.3.1",
-            "@mapbox/whoots-js": "^3.1.0",
-            "csscolorparser": "~1.0.2",
-            "earcut": "^2.1.5",
-            "esm": "~3.0.84",
-            "geojson-vt": "^3.2.1",
-            "gl-matrix": "^3.0.0",
-            "grid-index": "^1.1.0",
-            "minimist": "0.0.8",
-            "murmurhash-js": "^1.0.0",
-            "pbf": "^3.0.5",
-            "potpack": "^1.0.1",
-            "quickselect": "^2.0.0",
-            "rw": "^1.3.3",
-            "supercluster": "^6.0.1",
-            "tinyqueue": "^2.0.0",
-            "vt-pbf": "^3.1.1"
-          }
-        },
-        "minimist": {
-          "version": "0.0.8",
-          "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
-          "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
-        },
-        "supercluster": {
-          "version": "6.0.2",
-          "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-6.0.2.tgz",
-          "integrity": "sha512-aa0v2HURjBTOpbcknilcfxGDuArM8khklKSmZ/T8ZXL0BuRwb5aRw95lz+2bmWpFvCXDX/+FzqHxmg0TIaJErw==",
-          "requires": {
-            "kdbush": "^3.0.0"
-          }
-        }
-      }
-    },
-    "react-markdown": {
-      "version": "4.3.1",
-      "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-4.3.1.tgz",
-      "integrity": "sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==",
-      "requires": {
-        "html-to-react": "^1.3.4",
-        "mdast-add-list-metadata": "1.0.1",
-        "prop-types": "^15.7.2",
-        "react-is": "^16.8.6",
-        "remark-parse": "^5.0.0",
-        "unified": "^6.1.5",
-        "unist-util-visit": "^1.3.0",
-        "xtend": "^4.0.1"
-      },
-      "dependencies": {
-        "react-is": {
-          "version": "16.12.0",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.12.0.tgz",
-          "integrity": "sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q=="
-        }
-      }
-    },
-    "react-move": {
-      "version": "2.9.1",
-      "resolved": "https://registry.npmjs.org/react-move/-/react-move-2.9.1.tgz",
-      "integrity": "sha512-5qKYsJrKKpSypEaaYyR2HBbBgX65htRqKDa8o5OGDkq2VfklmTCbLawtYFpdmcJRqbz4jCYpzo2Rrsazq9HA8Q==",
-      "requires": {
-        "@babel/runtime": "^7.2.0",
-        "d3-interpolate": "^1.3.2",
-        "d3-timer": "^1.0.9",
-        "prop-types": "^15.6.2",
-        "react-lifecycles-compat": "^3.0.4"
-      }
-    },
-    "react-overlays": {
-      "version": "0.9.2",
-      "resolved": "https://registry.npmjs.org/react-overlays/-/react-overlays-0.9.2.tgz",
-      "integrity": "sha512-wOi+WqO0acnUAMCbTTW06/GRkYjHdlvIoyX4bYkLvxKrLgl2kX9WzFVyBdwukl2jvN7I7oX7ZXAz7MNOWYdgCA==",
-      "requires": {
-        "classnames": "^2.2.5",
-        "dom-helpers": "^3.2.1",
-        "prop-types": "^15.5.10",
-        "prop-types-extra": "^1.0.1",
-        "react-transition-group": "^2.2.1",
-        "warning": "^3.0.0"
-      }
-    },
-    "react-popper": {
-      "version": "1.3.7",
-      "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.7.tgz",
-      "integrity": "sha512-nmqYTx7QVjCm3WUZLeuOomna138R1luC4EqkW3hxJUrAe+3eNz3oFCLYdnPwILfn0mX1Ew2c3wctrjlUMYYUww==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.1.2",
-        "create-react-context": "^0.3.0",
-        "deep-equal": "^1.1.1",
-        "popper.js": "^1.14.4",
-        "prop-types": "^15.6.1",
-        "typed-styles": "^0.0.7",
-        "warning": "^4.0.2"
-      },
-      "dependencies": {
-        "warning": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
-          "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
-          "dev": true,
-          "requires": {
-            "loose-envify": "^1.0.0"
-          }
-        }
-      }
-    },
-    "react-popper-tooltip": {
-      "version": "2.11.1",
-      "resolved": "https://registry.npmjs.org/react-popper-tooltip/-/react-popper-tooltip-2.11.1.tgz",
-      "integrity": "sha512-04A2f24GhyyMicKvg/koIOQ5BzlrRbKiAgP6L+Pdj1MVX3yJ1NeZ8+EidndQsbejFT55oW1b++wg2Z8KlAyhfQ==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.9.2",
-        "react-popper": "^1.3.7"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.10.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.5.tgz",
-          "integrity": "sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "react-prop-types": {
-      "version": "0.4.0",
-      "resolved": "https://registry.npmjs.org/react-prop-types/-/react-prop-types-0.4.0.tgz",
-      "integrity": "sha1-+ZsL+0AGkpya8gUefBQUpcdbk9A=",
-      "requires": {
-        "warning": "^3.0.0"
-      }
-    },
-    "react-redux": {
-      "version": "7.2.0",
-      "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.0.tgz",
-      "integrity": "sha512-EvCAZYGfOLqwV7gh849xy9/pt55rJXPwmYvI4lilPM5rUT/1NxuuN59ipdBksRVSvz0KInbPnp4IfoXJXCqiDA==",
-      "requires": {
-        "@babel/runtime": "^7.5.5",
-        "hoist-non-react-statics": "^3.3.0",
-        "loose-envify": "^1.4.0",
-        "prop-types": "^15.7.2",
-        "react-is": "^16.9.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "react-is": {
-          "version": "16.13.1",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
-          "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
-        }
-      }
-    },
-    "react-resize-detector": {
-      "version": "6.0.1-rc.1",
-      "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-6.0.1-rc.1.tgz",
-      "integrity": "sha512-r+UZtJottPZaW/2CKAyb4Vgpi6KROsXBH890UChK7mB8DSFf8nEvwqpvE9akfd8wQOGi0cXekcGLHzYp9FiscA==",
-      "requires": {
-        "lodash.debounce": "^4.0.8",
-        "lodash.throttle": "^4.1.1",
-        "raf-schd": "^4.0.2",
-        "resize-observer-polyfill": "^1.5.1"
-      }
-    },
-    "react-router": {
-      "version": "5.1.2",
-      "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.1.2.tgz",
-      "integrity": "sha512-yjEuMFy1ONK246B+rsa0cUam5OeAQ8pyclRDgpxuSCrAlJ1qN9uZ5IgyKC7gQg0w8OM50NXHEegPh/ks9YuR2A==",
-      "requires": {
-        "@babel/runtime": "^7.1.2",
-        "history": "^4.9.0",
-        "hoist-non-react-statics": "^3.1.0",
-        "loose-envify": "^1.3.1",
-        "mini-create-react-context": "^0.3.0",
-        "path-to-regexp": "^1.7.0",
-        "prop-types": "^15.6.2",
-        "react-is": "^16.6.0",
-        "tiny-invariant": "^1.0.2",
-        "tiny-warning": "^1.0.0"
-      },
-      "dependencies": {
-        "isarray": {
-          "version": "0.0.1",
-          "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
-          "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
-        },
-        "path-to-regexp": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz",
-          "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==",
-          "requires": {
-            "isarray": "0.0.1"
-          }
-        }
-      }
-    },
-    "react-router-dom": {
-      "version": "5.1.2",
-      "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.1.2.tgz",
-      "integrity": "sha512-7BPHAaIwWpZS074UKaw1FjVdZBSVWEk8IuDXdB+OkLb8vd/WRQIpA4ag9WQk61aEfQs47wHyjWUoUGGZxpQXew==",
-      "requires": {
-        "@babel/runtime": "^7.1.2",
-        "history": "^4.9.0",
-        "loose-envify": "^1.3.1",
-        "prop-types": "^15.6.2",
-        "react-router": "5.1.2",
-        "tiny-invariant": "^1.0.2",
-        "tiny-warning": "^1.0.0"
-      }
-    },
-    "react-search-input": {
-      "version": "0.11.3",
-      "resolved": "https://registry.npmjs.org/react-search-input/-/react-search-input-0.11.3.tgz",
-      "integrity": "sha512-Yo05lNR5YLeIY+mTEk0lMkYHX0qkTlElJmxMTw5JlZPu92EP8YWwIY3QSbEFULvX4wiTfyDdUovTUpp2VockpA==",
-      "requires": {
-        "fuse.js": "^3.0.0",
-        "prop-types": "^15.5.8"
-      }
-    },
-    "react-select": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/react-select/-/react-select-3.1.0.tgz",
-      "integrity": "sha512-wBFVblBH1iuCBprtpyGtd1dGMadsG36W5/t2Aj8OE6WbByDg5jIFyT7X5gT+l0qmT5TqWhxX+VsKJvCEl2uL9g==",
-      "requires": {
-        "@babel/runtime": "^7.4.4",
-        "@emotion/cache": "^10.0.9",
-        "@emotion/core": "^10.0.9",
-        "@emotion/css": "^10.0.9",
-        "memoize-one": "^5.0.0",
-        "prop-types": "^15.6.0",
-        "react-input-autosize": "^2.2.2",
-        "react-transition-group": "^4.3.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.9.6",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
-          "integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "dom-helpers": {
-          "version": "5.1.4",
-          "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.1.4.tgz",
-          "integrity": "sha512-TjMyeVUvNEnOnhzs6uAn9Ya47GmMo3qq7m+Lr/3ON0Rs5kHvb8I+SQYjLUSYn7qhEm0QjW0yrBkvz9yOrwwz1A==",
-          "requires": {
-            "@babel/runtime": "^7.8.7",
-            "csstype": "^2.6.7"
-          }
-        },
-        "react-transition-group": {
-          "version": "4.4.1",
-          "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz",
-          "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==",
-          "requires": {
-            "@babel/runtime": "^7.5.5",
-            "dom-helpers": "^5.0.1",
-            "loose-envify": "^1.4.0",
-            "prop-types": "^15.6.2"
-          }
-        }
-      }
-    },
-    "react-select-async-paginate": {
-      "version": "0.4.1",
-      "resolved": "https://registry.npmjs.org/react-select-async-paginate/-/react-select-async-paginate-0.4.1.tgz",
-      "integrity": "sha512-zWeaN9C9PVQej4bz1+OvU6/ylHE6rHscDYcP+KiWdBedVQ5j2vXBjf/5RWLEvobvtUUHBOTbUF8+m2HDoeIcvQ==",
-      "requires": {
-        "@babel/runtime": "^7.11.2",
-        "@seznam/compose-react-refs": "^1.0.4",
-        "react-is-mounted-hook": "^1.0.3",
-        "sleep-promise": "^8.0.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
-          "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "react-sizeme": {
-      "version": "2.6.12",
-      "resolved": "https://registry.npmjs.org/react-sizeme/-/react-sizeme-2.6.12.tgz",
-      "integrity": "sha512-tL4sCgfmvapYRZ1FO2VmBmjPVzzqgHA7kI8lSJ6JS6L78jXFNRdOZFpXyK6P1NBZvKPPCZxReNgzZNUajAerZw==",
-      "dev": true,
-      "requires": {
-        "element-resize-detector": "^1.2.1",
-        "invariant": "^2.2.4",
-        "shallowequal": "^1.1.0",
-        "throttle-debounce": "^2.1.0"
-      }
-    },
-    "react-sortable-hoc": {
-      "version": "1.11.0",
-      "resolved": "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-1.11.0.tgz",
-      "integrity": "sha512-v1CDCvdfoR3zLGNp6qsBa4J1BWMEVH25+UKxF/RvQRh+mrB+emqtVHMgZ+WreUiKJoEaiwYoScaueIKhMVBHUg==",
-      "requires": {
-        "@babel/runtime": "^7.2.0",
-        "invariant": "^2.2.4",
-        "prop-types": "^15.5.7"
-      }
-    },
-    "react-split": {
-      "version": "2.0.9",
-      "resolved": "https://registry.npmjs.org/react-split/-/react-split-2.0.9.tgz",
-      "integrity": "sha512-IxKtxxmcbNUmWMSd5vlNnlE0jwbgQS1HyQYxt7h8qFgPskSkUTNzMbO838xapmmNf9D+u9B/bdtFnVjt+JC2JA==",
-      "requires": {
-        "prop-types": "^15.5.7",
-        "split.js": "^1.6.0"
-      },
-      "dependencies": {
-        "split.js": {
-          "version": "1.6.2",
-          "resolved": "https://registry.npmjs.org/split.js/-/split.js-1.6.2.tgz",
-          "integrity": "sha512-72C7zcQePzlmWqPOKkB2Ro0sUmnWSx+qEWXjLJKk6Qp4jAkFRz1hJgJb+ay6ZQyz/Aw9r8N/PZiCEKbPVpFoDQ=="
-        }
-      }
-    },
-    "react-split-pane": {
-      "version": "0.1.92",
-      "resolved": "https://registry.npmjs.org/react-split-pane/-/react-split-pane-0.1.92.tgz",
-      "integrity": "sha512-GfXP1xSzLMcLJI5BM36Vh7GgZBpy+U/X0no+VM3fxayv+p1Jly5HpMofZJraeaMl73b3hvlr+N9zJKvLB/uz9w==",
-      "requires": {
-        "prop-types": "^15.7.2",
-        "react-lifecycles-compat": "^3.0.4",
-        "react-style-proptype": "^3.2.2"
-      }
-    },
-    "react-sticky": {
-      "version": "6.0.3",
-      "resolved": "https://registry.npmjs.org/react-sticky/-/react-sticky-6.0.3.tgz",
-      "integrity": "sha512-LNH4UJlRatOqo29/VHxDZOf6fwbgfgcHO4mkEFvrie5FuaZCSTGtug5R8NGqJ0kSnX8gHw8qZN37FcvnFBJpTQ==",
-      "requires": {
-        "prop-types": "^15.5.8",
-        "raf": "^3.3.0"
-      }
-    },
-    "react-style-proptype": {
-      "version": "3.2.2",
-      "resolved": "https://registry.npmjs.org/react-style-proptype/-/react-style-proptype-3.2.2.tgz",
-      "integrity": "sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==",
-      "requires": {
-        "prop-types": "^15.5.4"
-      }
-    },
-    "react-syntax-highlighter": {
-      "version": "15.3.0",
-      "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.3.0.tgz",
-      "integrity": "sha512-ghJkkmNw/3wRf9XEvfGeG7tfTuAMyThdNxJy50s9CmnwS3QusKDC+F5lX6lvX3mm+V0CwN+zpRioQb0kgdT11w==",
-      "requires": {
-        "@babel/runtime": "^7.3.1",
-        "highlight.js": "^10.1.1",
-        "lowlight": "^1.14.0",
-        "prismjs": "^1.22.0",
-        "refractor": "^3.2.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
-          "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "hastscript": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
-          "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==",
-          "requires": {
-            "@types/hast": "^2.0.0",
-            "comma-separated-tokens": "^1.0.0",
-            "hast-util-parse-selector": "^2.0.0",
-            "property-information": "^5.0.0",
-            "space-separated-tokens": "^1.0.0"
-          }
-        },
-        "parse-entities": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
-          "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
-          "requires": {
-            "character-entities": "^1.0.0",
-            "character-entities-legacy": "^1.0.0",
-            "character-reference-invalid": "^1.0.0",
-            "is-alphanumerical": "^1.0.0",
-            "is-decimal": "^1.0.0",
-            "is-hexadecimal": "^1.0.0"
-          }
-        },
-        "prismjs": {
-          "version": "1.22.0",
-          "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.22.0.tgz",
-          "integrity": "sha512-lLJ/Wt9yy0AiSYBf212kK3mM5L8ycwlyTlSxHBAneXLR0nzFMlZ5y7riFPF3E33zXOF2IH95xdY5jIyZbM9z/w==",
-          "requires": {
-            "clipboard": "^2.0.0"
-          }
-        },
-        "refractor": {
-          "version": "3.2.0",
-          "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.2.0.tgz",
-          "integrity": "sha512-hSo+EyMIZTLBvNNgIU5lW4yjCzNYMZ4dcEhBq/3nReGfqzd2JfVhdlPDfU9rEsgcAyWx+OimIIUoL4ZU7NtYHQ==",
-          "requires": {
-            "hastscript": "^6.0.0",
-            "parse-entities": "^2.0.0",
-            "prismjs": "~1.22.0"
-          }
-        }
-      }
-    },
-    "react-table": {
-      "version": "7.2.1",
-      "resolved": "https://registry.npmjs.org/react-table/-/react-table-7.2.1.tgz",
-      "integrity": "sha512-cICU3w5yFWTDluz9yFePziEQXGt3PK5R1Va3InP7qMGnZOKm8kv0GiDMli+VOqE1uM1dBYPb9BEad15up1ac6g==",
-      "requires": {
-        "@scarf/scarf": "^1.0.4"
-      }
-    },
-    "react-test-renderer": {
-      "version": "16.9.0",
-      "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.9.0.tgz",
-      "integrity": "sha512-R62stB73qZyhrJo7wmCW9jgl/07ai+YzvouvCXIJLBkRlRqLx4j9RqcLEAfNfU3OxTGucqR2Whmn3/Aad6L3hQ==",
-      "dev": true,
-      "requires": {
-        "object-assign": "^4.1.1",
-        "prop-types": "^15.6.2",
-        "react-is": "^16.9.0",
-        "scheduler": "^0.15.0"
-      },
-      "dependencies": {
-        "react-is": {
-          "version": "16.9.0",
-          "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.9.0.tgz",
-          "integrity": "sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==",
-          "dev": true
-        }
-      }
-    },
-    "react-textarea-autosize": {
-      "version": "8.3.0",
-      "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.0.tgz",
-      "integrity": "sha512-3GLWFAan2pbwBeoeNDoqGmSbrShORtgWfaWX0RJDivsUrpShh01saRM5RU/i4Zmf+whpBVEY5cA90Eq8Ub1N3w==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.10.2",
-        "use-composed-ref": "^1.0.0",
-        "use-latest": "^1.0.0"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "react-transition-group": {
-      "version": "2.5.3",
-      "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.5.3.tgz",
-      "integrity": "sha512-2DGFck6h99kLNr8pOFk+z4Soq3iISydwOFeeEVPjTN6+Y01CmvbWmnN02VuTWyFdnRtIDPe+wy2q6Ui8snBPZg==",
-      "requires": {
-        "dom-helpers": "^3.3.1",
-        "loose-envify": "^1.4.0",
-        "prop-types": "^15.6.2",
-        "react-lifecycles-compat": "^3.0.4"
-      }
-    },
-    "react-ultimate-pagination": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/react-ultimate-pagination/-/react-ultimate-pagination-1.2.0.tgz",
-      "integrity": "sha512-tBLzzskuBqsziQDUI98hA7FTBy2/Q5olRsvu3GdLYykfGUgDvYQOI7hLi9o5pD5zJeuAsVn3OoAUw0CaJi0WoQ==",
-      "requires": {
-        "prop-types": "^15.0.0",
-        "ultimate-pagination": "1.0.0"
-      }
-    },
-    "react-virtualized": {
-      "version": "9.19.1",
-      "resolved": "https://registry.npmjs.org/react-virtualized/-/react-virtualized-9.19.1.tgz",
-      "integrity": "sha512-2l6uFicZKZ3x4rdnS0W+1TfyLmPO/+hfZKsCtoChoSmH5aEezGLpSuHc7oplekNIOaEwChfCk30zjx+Zw6B8YQ==",
-      "requires": {
-        "babel-runtime": "^6.26.0",
-        "classnames": "^2.2.3",
-        "dom-helpers": "^2.4.0 || ^3.0.0",
-        "loose-envify": "^1.3.0",
-        "prop-types": "^15.6.0",
-        "react-lifecycles-compat": "^3.0.4"
-      }
-    },
-    "react-virtualized-auto-sizer": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.2.tgz",
-      "integrity": "sha512-MYXhTY1BZpdJFjUovvYHVBmkq79szK/k7V3MO+36gJkWGkrXKtyr4vCPtpphaTLRAdDNoYEYFZWE8LjN+PIHNg=="
-    },
-    "react-virtualized-select": {
-      "version": "3.1.3",
-      "resolved": "https://registry.npmjs.org/react-virtualized-select/-/react-virtualized-select-3.1.3.tgz",
-      "integrity": "sha512-u6j/EfynCB9s4Lz5GGZhNUCZHvFQdtLZws7W/Tcd/v03l19OjpQs3eYjK82iYS0FgD2+lDIBpqS8LpD/hjqDRQ==",
-      "requires": {
-        "babel-runtime": "^6.11.6",
-        "prop-types": "^15.5.8",
-        "react-select": "^1.0.0-rc.2",
-        "react-virtualized": "^9.0.0"
-      },
-      "dependencies": {
-        "react-select": {
-          "version": "1.3.0",
-          "resolved": "https://registry.npmjs.org/react-select/-/react-select-1.3.0.tgz",
-          "integrity": "sha512-g/QAU1HZrzSfxkwMAo/wzi6/ezdWye302RGZevsATec07hI/iSxcpB1hejFIp7V63DJ8mwuign6KmB3VjdlinQ==",
-          "requires": {
-            "classnames": "^2.2.4",
-            "prop-types": "^15.5.8",
-            "react-input-autosize": "^2.1.2"
-          }
-        }
-      }
-    },
-    "react-window": {
-      "version": "1.8.5",
-      "resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.5.tgz",
-      "integrity": "sha512-HeTwlNa37AFa8MDZFZOKcNEkuF2YflA0hpGPiTT9vR7OawEt+GZbfM6wqkBahD3D3pUjIabQYzsnY/BSJbgq6Q==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "memoize-one": ">=3.1.1 <6"
-      }
-    },
-    "react-with-styles": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/react-with-styles/-/react-with-styles-1.4.0.tgz",
-      "integrity": "sha1-oFsxHoK0mx5pt4evgtCinG4rBzE=",
-      "requires": {
-        "deepmerge": "^1.3.2",
-        "global-cache": "^1.2.0",
-        "hoist-non-react-statics": "^1.2.0",
-        "prop-types": "^15.5.8"
-      },
-      "dependencies": {
-        "hoist-non-react-statics": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz",
-          "integrity": "sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs="
-        }
-      }
-    },
-    "react-with-styles-interface-aphrodite": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/react-with-styles-interface-aphrodite/-/react-with-styles-interface-aphrodite-1.2.0.tgz",
-      "integrity": "sha1-IqCn05LY+RqJH3ItTJkvTID1oSk=",
-      "requires": {
-        "array-flatten": "^2.1.0",
-        "has": "^1.0.1"
-      }
-    },
-    "reactable-arc": {
-      "version": "0.15.0",
-      "resolved": "https://registry.npmjs.org/reactable-arc/-/reactable-arc-0.15.0.tgz",
-      "integrity": "sha512-XH1mryI/xvbYb3lCVOU3rx/KRacDE0PDa45KazL/PPTM0AgPZ/awVmCAxRi179BpjbStk7cgCyFjI2oYJ28E8A=="
-    },
-    "reactcss": {
-      "version": "1.2.3",
-      "resolved": "https://registry.npmjs.org/reactcss/-/reactcss-1.2.3.tgz",
-      "integrity": "sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==",
-      "requires": {
-        "lodash": "^4.0.1"
-      }
-    },
-    "read-pkg": {
-      "version": "5.2.0",
-      "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
-      "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
-      "dev": true,
-      "requires": {
-        "@types/normalize-package-data": "^2.4.0",
-        "normalize-package-data": "^2.5.0",
-        "parse-json": "^5.0.0",
-        "type-fest": "^0.6.0"
-      },
-      "dependencies": {
-        "normalize-package-data": {
-          "version": "2.5.0",
-          "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
-          "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
-          "dev": true,
-          "requires": {
-            "hosted-git-info": "^2.1.4",
-            "resolve": "^1.10.0",
-            "semver": "2 || 3 || 4 || 5",
-            "validate-npm-package-license": "^3.0.1"
-          }
-        },
-        "parse-json": {
-          "version": "5.1.0",
-          "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz",
-          "integrity": "sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.0.0",
-            "error-ex": "^1.3.1",
-            "json-parse-even-better-errors": "^2.3.0",
-            "lines-and-columns": "^1.1.6"
-          }
-        },
-        "resolve": {
-          "version": "1.19.0",
-          "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
-          "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
-          "dev": true,
-          "requires": {
-            "is-core-module": "^2.1.0",
-            "path-parse": "^1.0.6"
-          }
-        },
-        "type-fest": {
-          "version": "0.6.0",
-          "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
-          "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
-          "dev": true
-        }
-      }
-    },
-    "read-pkg-up": {
-      "version": "7.0.1",
-      "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
-      "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
-      "dev": true,
-      "requires": {
-        "find-up": "^4.1.0",
-        "read-pkg": "^5.2.0",
-        "type-fest": "^0.8.1"
-      },
-      "dependencies": {
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        }
-      }
-    },
-    "readable-stream": {
-      "version": "2.3.6",
-      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
-      "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
-      "requires": {
-        "core-util-is": "~1.0.0",
-        "inherits": "~2.0.3",
-        "isarray": "~1.0.0",
-        "process-nextick-args": "~2.0.0",
-        "safe-buffer": "~5.1.1",
-        "string_decoder": "~1.1.1",
-        "util-deprecate": "~1.0.1"
-      }
-    },
-    "readdirp": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
-      "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "^4.1.11",
-        "micromatch": "^3.1.10",
-        "readable-stream": "^2.0.2"
-      }
-    },
-    "realpath-native": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz",
-      "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==",
-      "dev": true,
-      "requires": {
-        "util.promisify": "^1.0.0"
-      }
-    },
-    "rechoir": {
-      "version": "0.6.2",
-      "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
-      "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=",
-      "dev": true,
-      "requires": {
-        "resolve": "^1.1.6"
-      }
-    },
-    "recompose": {
-      "version": "0.23.5",
-      "resolved": "https://registry.npmjs.org/recompose/-/recompose-0.23.5.tgz",
-      "integrity": "sha1-cqyCYSRr7DeCNdGHRn0CpyHosd4=",
-      "requires": {
-        "change-emitter": "^0.1.2",
-        "fbjs": "^0.8.1",
-        "hoist-non-react-statics": "^1.0.0",
-        "symbol-observable": "^1.0.4"
-      },
-      "dependencies": {
-        "hoist-non-react-statics": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz",
-          "integrity": "sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs="
-        }
-      }
-    },
-    "recursive-readdir": {
-      "version": "2.2.2",
-      "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz",
-      "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==",
-      "dev": true,
-      "requires": {
-        "minimatch": "3.0.4"
-      }
-    },
-    "redent": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz",
-      "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==",
-      "dev": true,
-      "requires": {
-        "indent-string": "^4.0.0",
-        "strip-indent": "^3.0.0"
-      }
-    },
-    "redeyed": {
-      "version": "0.4.4",
-      "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-0.4.4.tgz",
-      "integrity": "sha1-N+mQpvKyGyoRwuakj9QTVpjLqX8=",
-      "requires": {
-        "esprima": "~1.0.4"
-      },
-      "dependencies": {
-        "esprima": {
-          "version": "1.0.4",
-          "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz",
-          "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0="
-        }
-      }
-    },
-    "reduce-css-calc": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz",
-      "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=",
-      "requires": {
-        "balanced-match": "^0.4.2",
-        "math-expression-evaluator": "^1.2.14",
-        "reduce-function-call": "^1.0.1"
-      },
-      "dependencies": {
-        "balanced-match": {
-          "version": "0.4.2",
-          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
-          "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
-        }
-      }
-    },
-    "reduce-function-call": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz",
-      "integrity": "sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==",
-      "requires": {
-        "balanced-match": "^1.0.0"
-      }
-    },
-    "redux": {
-      "version": "4.0.5",
-      "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz",
-      "integrity": "sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==",
-      "requires": {
-        "loose-envify": "^1.4.0",
-        "symbol-observable": "^1.2.0"
-      }
-    },
-    "redux-localstorage": {
-      "version": "0.4.1",
-      "resolved": "https://registry.npmjs.org/redux-localstorage/-/redux-localstorage-0.4.1.tgz",
-      "integrity": "sha1-+vbXGcWBOXKU2BFHP/zt7gZckzw="
-    },
-    "redux-mock-store": {
-      "version": "1.5.4",
-      "resolved": "https://registry.npmjs.org/redux-mock-store/-/redux-mock-store-1.5.4.tgz",
-      "integrity": "sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==",
-      "dev": true,
-      "requires": {
-        "lodash.isplainobject": "^4.0.6"
-      }
-    },
-    "redux-thunk": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz",
-      "integrity": "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw=="
-    },
-    "redux-undo": {
-      "version": "1.0.0-beta9-9-7",
-      "resolved": "https://registry.npmjs.org/redux-undo/-/redux-undo-1.0.0-beta9-9-7.tgz",
-      "integrity": "sha1-/juqGycUI9fdu/w6gscbApotuLo="
-    },
-    "reflect.ownkeys": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz",
-      "integrity": "sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=",
-      "dev": true
-    },
-    "refractor": {
-      "version": "2.6.2",
-      "resolved": "https://registry.npmjs.org/refractor/-/refractor-2.6.2.tgz",
-      "integrity": "sha512-AMNEGkhaXfhoa0/0mW0bHdfizDJnuHDK29/D5oQaKICf6DALQ+kDEHW/36oDHCdfva4XrZ+cdMhRvPsTI4OIjA==",
-      "dev": true,
-      "requires": {
-        "hastscript": "^5.0.0",
-        "parse-entities": "^1.1.2",
-        "prismjs": "~1.15.0"
-      }
-    },
-    "regenerate": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz",
-      "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==",
-      "dev": true
-    },
-    "regenerate-unicode-properties": {
-      "version": "8.2.0",
-      "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz",
-      "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==",
-      "dev": true,
-      "requires": {
-        "regenerate": "^1.4.0"
-      }
-    },
-    "regenerator-runtime": {
-      "version": "0.13.5",
-      "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
-      "integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="
-    },
-    "regenerator-transform": {
-      "version": "0.14.3",
-      "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.3.tgz",
-      "integrity": "sha512-zXHNKJspmONxBViAb3ZUmFoFPnTBs3zFhCEZJiwp/gkNzxVbTqNJVjYKx6Qk1tQ1P4XLf4TbH9+KBB7wGoAaUw==",
-      "dev": true,
-      "requires": {
-        "@babel/runtime": "^7.8.4",
-        "private": "^0.1.8"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.8.7",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.8.7.tgz",
-          "integrity": "sha512-+AATMUFppJDw6aiR5NVPHqIQBlV/Pj8wY/EZH+lmvRdUo9xBaz/rF3alAwFJQavvKfeOlPE7oaaDHVbcySbCsg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "regex-not": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
-      "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
-      "dev": true,
-      "requires": {
-        "extend-shallow": "^3.0.2",
-        "safe-regex": "^1.1.0"
-      },
-      "dependencies": {
-        "extend-shallow": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
-          "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
-          "dev": true,
-          "requires": {
-            "assign-symbols": "^1.0.0",
-            "is-extendable": "^1.0.1"
-          }
-        },
-        "is-extendable": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
-          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
-          "dev": true,
-          "requires": {
-            "is-plain-object": "^2.0.4"
-          }
-        }
-      }
-    },
-    "regexp.prototype.flags": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz",
-      "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.0-next.1"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.4",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.4.tgz",
-          "integrity": "sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.1.5",
-            "is-regex": "^1.0.5",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimleft": "^2.1.1",
-            "string.prototype.trimright": "^2.1.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.1.5",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz",
-          "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.0.5",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz",
-          "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==",
-          "dev": true,
-          "requires": {
-            "has": "^1.0.3"
-          }
-        },
-        "object-inspect": {
-          "version": "1.7.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz",
-          "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "regexpp": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz",
-      "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==",
-      "dev": true
-    },
-    "regexpu-core": {
-      "version": "1.0.0",
-      "resolved": "http://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz",
-      "integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=",
-      "dev": true,
-      "requires": {
-        "regenerate": "^1.2.1",
-        "regjsgen": "^0.2.0",
-        "regjsparser": "^0.1.4"
-      }
-    },
-    "regjsgen": {
-      "version": "0.2.0",
-      "resolved": "http://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz",
-      "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=",
-      "dev": true
-    },
-    "regjsparser": {
-      "version": "0.1.5",
-      "resolved": "http://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
-      "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
-      "dev": true,
-      "requires": {
-        "jsesc": "~0.5.0"
-      },
-      "dependencies": {
-        "jsesc": {
-          "version": "0.5.0",
-          "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
-          "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
-          "dev": true
-        }
-      }
-    },
-    "relateurl": {
-      "version": "0.2.7",
-      "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
-      "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=",
-      "dev": true
-    },
-    "remark-external-links": {
-      "version": "6.1.0",
-      "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-6.1.0.tgz",
-      "integrity": "sha512-dJr+vhe3wuh1+E9jltQ+efRMqtMDOOnfFkhtoArOmhnBcPQX6THttXMkc/H0kdnAvkXTk7f2QdOYm5qo/sGqdw==",
-      "dev": true,
-      "requires": {
-        "extend": "^3.0.0",
-        "is-absolute-url": "^3.0.0",
-        "mdast-util-definitions": "^2.0.0",
-        "space-separated-tokens": "^1.0.0",
-        "unist-util-visit": "^2.0.0"
-      },
-      "dependencies": {
-        "is-absolute-url": {
-          "version": "3.0.3",
-          "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz",
-          "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==",
-          "dev": true
-        },
-        "mdast-util-definitions": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-2.0.1.tgz",
-          "integrity": "sha512-Co+DQ6oZlUzvUR7JCpP249PcexxygiaKk9axJh+eRzHDZJk2julbIdKB4PXHVxdBuLzvJ1Izb+YDpj2deGMOuA==",
-          "dev": true,
-          "requires": {
-            "unist-util-visit": "^2.0.0"
-          }
-        },
-        "unist-util-is": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.3.tgz",
-          "integrity": "sha512-bTofCFVx0iQM8Jqb1TBDVRIQW03YkD3p66JOd/aCWuqzlLyUtx1ZAGw/u+Zw+SttKvSVcvTiKYbfrtLoLefykw==",
-          "dev": true
-        },
-        "unist-util-visit": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
-          "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0",
-            "unist-util-visit-parents": "^3.0.0"
-          }
-        },
-        "unist-util-visit-parents": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
-          "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0"
-          }
-        }
-      }
-    },
-    "remark-footnotes": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz",
-      "integrity": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==",
-      "dev": true
-    },
-    "remark-mdx": {
-      "version": "1.6.19",
-      "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.19.tgz",
-      "integrity": "sha512-UKK1CFatVPNhgjsIlNQ3GjVl3+6O7x7Hag6oyntFTg8s7sgq+rhWaSfM/6lW5UWU6hzkj520KYBuBlsaSriGtA==",
-      "dev": true,
-      "requires": {
-        "@babel/core": "7.11.6",
-        "@babel/helper-plugin-utils": "7.10.4",
-        "@babel/plugin-proposal-object-rest-spread": "7.11.0",
-        "@babel/plugin-syntax-jsx": "7.10.4",
-        "@mdx-js/util": "1.6.19",
-        "is-alphabetical": "1.0.4",
-        "remark-parse": "8.0.3",
-        "unified": "9.2.0"
-      },
-      "dependencies": {
-        "@babel/code-frame": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
-          "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
-          "dev": true,
-          "requires": {
-            "@babel/highlight": "^7.10.4"
-          }
-        },
-        "@babel/core": {
-          "version": "7.11.6",
-          "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.11.6.tgz",
-          "integrity": "sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/generator": "^7.11.6",
-            "@babel/helper-module-transforms": "^7.11.0",
-            "@babel/helpers": "^7.10.4",
-            "@babel/parser": "^7.11.5",
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.11.5",
-            "@babel/types": "^7.11.5",
-            "convert-source-map": "^1.7.0",
-            "debug": "^4.1.0",
-            "gensync": "^1.0.0-beta.1",
-            "json5": "^2.1.2",
-            "lodash": "^4.17.19",
-            "resolve": "^1.3.2",
-            "semver": "^5.4.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/generator": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
-          "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5",
-            "jsesc": "^2.5.1",
-            "source-map": "^0.5.0"
-          }
-        },
-        "@babel/helper-function-name": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
-          "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-get-function-arity": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-get-function-arity": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
-          "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-member-expression-to-functions": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
-          "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-module-imports": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
-          "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-module-transforms": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
-          "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-module-imports": "^7.12.1",
-            "@babel/helper-replace-supers": "^7.12.1",
-            "@babel/helper-simple-access": "^7.12.1",
-            "@babel/helper-split-export-declaration": "^7.11.0",
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.12.1",
-            "@babel/types": "^7.12.1",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/helper-optimise-call-expression": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz",
-          "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/helper-plugin-utils": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
-          "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
-          "dev": true
-        },
-        "@babel/helper-replace-supers": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
-          "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-member-expression-to-functions": "^7.12.1",
-            "@babel/helper-optimise-call-expression": "^7.10.4",
-            "@babel/traverse": "^7.12.5",
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/helper-simple-access": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
-          "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.12.1"
-          }
-        },
-        "@babel/helper-split-export-declaration": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz",
-          "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==",
-          "dev": true,
-          "requires": {
-            "@babel/types": "^7.11.0"
-          }
-        },
-        "@babel/helper-validator-identifier": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
-          "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
-          "dev": true
-        },
-        "@babel/helpers": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
-          "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
-          "dev": true,
-          "requires": {
-            "@babel/template": "^7.10.4",
-            "@babel/traverse": "^7.12.5",
-            "@babel/types": "^7.12.5"
-          }
-        },
-        "@babel/highlight": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
-          "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "chalk": "^2.0.0",
-            "js-tokens": "^4.0.0"
-          }
-        },
-        "@babel/parser": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
-          "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==",
-          "dev": true
-        },
-        "@babel/plugin-proposal-object-rest-spread": {
-          "version": "7.11.0",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz",
-          "integrity": "sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4",
-            "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
-            "@babel/plugin-transform-parameters": "^7.10.4"
-          }
-        },
-        "@babel/plugin-syntax-jsx": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz",
-          "integrity": "sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/plugin-transform-parameters": {
-          "version": "7.12.1",
-          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
-          "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-plugin-utils": "^7.10.4"
-          }
-        },
-        "@babel/template": {
-          "version": "7.10.4",
-          "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
-          "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/parser": "^7.10.4",
-            "@babel/types": "^7.10.4"
-          }
-        },
-        "@babel/traverse": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
-          "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
-          "dev": true,
-          "requires": {
-            "@babel/code-frame": "^7.10.4",
-            "@babel/generator": "^7.12.5",
-            "@babel/helper-function-name": "^7.10.4",
-            "@babel/helper-split-export-declaration": "^7.11.0",
-            "@babel/parser": "^7.12.5",
-            "@babel/types": "^7.12.5",
-            "debug": "^4.1.0",
-            "globals": "^11.1.0",
-            "lodash": "^4.17.19"
-          }
-        },
-        "@babel/types": {
-          "version": "7.12.6",
-          "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
-          "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
-          "dev": true,
-          "requires": {
-            "@babel/helper-validator-identifier": "^7.10.4",
-            "lodash": "^4.17.19",
-            "to-fast-properties": "^2.0.0"
-          }
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "convert-source-map": {
-          "version": "1.7.0",
-          "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
-          "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "~5.1.1"
-          }
-        },
-        "debug": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
-          "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
-          "dev": true,
-          "requires": {
-            "ms": "2.1.2"
-          }
-        },
-        "is-alphabetical": {
-          "version": "1.0.4",
-          "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz",
-          "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==",
-          "dev": true
-        },
-        "is-buffer": {
-          "version": "2.0.5",
-          "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
-          "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
-          "dev": true
-        },
-        "is-plain-obj": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
-          "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
-          "dev": true
-        },
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "parse-entities": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
-          "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
-          "dev": true,
-          "requires": {
-            "character-entities": "^1.0.0",
-            "character-entities-legacy": "^1.0.0",
-            "character-reference-invalid": "^1.0.0",
-            "is-alphanumerical": "^1.0.0",
-            "is-decimal": "^1.0.0",
-            "is-hexadecimal": "^1.0.0"
-          }
-        },
-        "remark-parse": {
-          "version": "8.0.3",
-          "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz",
-          "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==",
-          "dev": true,
-          "requires": {
-            "ccount": "^1.0.0",
-            "collapse-white-space": "^1.0.2",
-            "is-alphabetical": "^1.0.0",
-            "is-decimal": "^1.0.0",
-            "is-whitespace-character": "^1.0.0",
-            "is-word-character": "^1.0.0",
-            "markdown-escapes": "^1.0.0",
-            "parse-entities": "^2.0.0",
-            "repeat-string": "^1.5.4",
-            "state-toggle": "^1.0.0",
-            "trim": "0.0.1",
-            "trim-trailing-lines": "^1.0.0",
-            "unherit": "^1.0.4",
-            "unist-util-remove-position": "^2.0.0",
-            "vfile-location": "^3.0.0",
-            "xtend": "^4.0.1"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "unified": {
-          "version": "9.2.0",
-          "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz",
-          "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==",
-          "dev": true,
-          "requires": {
-            "bail": "^1.0.0",
-            "extend": "^3.0.0",
-            "is-buffer": "^2.0.0",
-            "is-plain-obj": "^2.0.0",
-            "trough": "^1.0.0",
-            "vfile": "^4.0.0"
-          }
-        },
-        "unist-util-is": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.3.tgz",
-          "integrity": "sha512-bTofCFVx0iQM8Jqb1TBDVRIQW03YkD3p66JOd/aCWuqzlLyUtx1ZAGw/u+Zw+SttKvSVcvTiKYbfrtLoLefykw==",
-          "dev": true
-        },
-        "unist-util-remove-position": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz",
-          "integrity": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==",
-          "dev": true,
-          "requires": {
-            "unist-util-visit": "^2.0.0"
-          }
-        },
-        "unist-util-stringify-position": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
-          "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.2"
-          }
-        },
-        "unist-util-visit": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
-          "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0",
-            "unist-util-visit-parents": "^3.0.0"
-          }
-        },
-        "unist-util-visit-parents": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
-          "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0"
-          }
-        },
-        "vfile": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.0.tgz",
-          "integrity": "sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "is-buffer": "^2.0.0",
-            "replace-ext": "1.0.0",
-            "unist-util-stringify-position": "^2.0.0",
-            "vfile-message": "^2.0.0"
-          }
-        },
-        "vfile-location": {
-          "version": "3.2.0",
-          "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz",
-          "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==",
-          "dev": true
-        },
-        "vfile-message": {
-          "version": "2.0.4",
-          "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz",
-          "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-stringify-position": "^2.0.0"
-          }
-        }
-      }
-    },
-    "remark-parse": {
-      "version": "5.0.0",
-      "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz",
-      "integrity": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==",
-      "requires": {
-        "collapse-white-space": "^1.0.2",
-        "is-alphabetical": "^1.0.0",
-        "is-decimal": "^1.0.0",
-        "is-whitespace-character": "^1.0.0",
-        "is-word-character": "^1.0.0",
-        "markdown-escapes": "^1.0.0",
-        "parse-entities": "^1.1.0",
-        "repeat-string": "^1.5.4",
-        "state-toggle": "^1.0.0",
-        "trim": "0.0.1",
-        "trim-trailing-lines": "^1.0.0",
-        "unherit": "^1.0.4",
-        "unist-util-remove-position": "^1.0.0",
-        "vfile-location": "^2.0.0",
-        "xtend": "^4.0.1"
-      }
-    },
-    "remark-slug": {
-      "version": "6.0.0",
-      "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.0.0.tgz",
-      "integrity": "sha512-ln67v5BrGKHpETnm6z6adlJPhESFJwfuZZ3jrmi+lKTzeZxh2tzFzUfDD4Pm2hRGOarHLuGToO86MNMZ/hA67Q==",
-      "dev": true,
-      "requires": {
-        "github-slugger": "^1.0.0",
-        "mdast-util-to-string": "^1.0.0",
-        "unist-util-visit": "^2.0.0"
-      },
-      "dependencies": {
-        "unist-util-is": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.3.tgz",
-          "integrity": "sha512-bTofCFVx0iQM8Jqb1TBDVRIQW03YkD3p66JOd/aCWuqzlLyUtx1ZAGw/u+Zw+SttKvSVcvTiKYbfrtLoLefykw==",
-          "dev": true
-        },
-        "unist-util-visit": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
-          "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0",
-            "unist-util-visit-parents": "^3.0.0"
-          }
-        },
-        "unist-util-visit-parents": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
-          "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
-          "dev": true,
-          "requires": {
-            "@types/unist": "^2.0.0",
-            "unist-util-is": "^4.0.0"
-          }
-        }
-      }
-    },
-    "remark-squeeze-paragraphs": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz",
-      "integrity": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==",
-      "dev": true,
-      "requires": {
-        "mdast-squeeze-paragraphs": "^4.0.0"
-      }
-    },
-    "remove-accents": {
-      "version": "0.4.2",
-      "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz",
-      "integrity": "sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U="
-    },
-    "remove-trailing-separator": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
-      "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
-      "dev": true
-    },
-    "renderkid": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz",
-      "integrity": "sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==",
-      "dev": true,
-      "requires": {
-        "css-select": "^1.1.0",
-        "dom-converter": "^0.2",
-        "htmlparser2": "^3.3.0",
-        "strip-ansi": "^3.0.0",
-        "utila": "^0.4.0"
-      }
-    },
-    "repeat-element": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
-      "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==",
-      "dev": true
-    },
-    "repeat-string": {
-      "version": "1.6.1",
-      "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
-      "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc="
-    },
-    "replace-ext": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz",
-      "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs="
-    },
-    "request": {
-      "version": "2.88.0",
-      "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz",
-      "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==",
-      "dev": true,
-      "requires": {
-        "aws-sign2": "~0.7.0",
-        "aws4": "^1.8.0",
-        "caseless": "~0.12.0",
-        "combined-stream": "~1.0.6",
-        "extend": "~3.0.2",
-        "forever-agent": "~0.6.1",
-        "form-data": "~2.3.2",
-        "har-validator": "~5.1.0",
-        "http-signature": "~1.2.0",
-        "is-typedarray": "~1.0.0",
-        "isstream": "~0.1.2",
-        "json-stringify-safe": "~5.0.1",
-        "mime-types": "~2.1.19",
-        "oauth-sign": "~0.9.0",
-        "performance-now": "^2.1.0",
-        "qs": "~6.5.2",
-        "safe-buffer": "^5.1.2",
-        "tough-cookie": "~2.4.3",
-        "tunnel-agent": "^0.6.0",
-        "uuid": "^3.3.2"
-      }
-    },
-    "request-promise-core": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.3.tgz",
-      "integrity": "sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==",
-      "dev": true,
-      "requires": {
-        "lodash": "^4.17.15"
-      }
-    },
-    "request-promise-native": {
-      "version": "1.0.8",
-      "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.8.tgz",
-      "integrity": "sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==",
-      "dev": true,
-      "requires": {
-        "request-promise-core": "1.1.3",
-        "stealthy-require": "^1.1.1",
-        "tough-cookie": "^2.3.3"
-      }
-    },
-    "require-directory": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
-      "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
-      "dev": true
-    },
-    "require-from-string": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
-      "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
-      "dev": true
-    },
-    "require-main-filename": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
-      "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
-      "dev": true
-    },
-    "require-package-name": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz",
-      "integrity": "sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk="
-    },
-    "requireindex": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz",
-      "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==",
-      "dev": true
-    },
-    "requires-port": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
-      "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=",
-      "dev": true
-    },
-    "reselect": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.0.0.tgz",
-      "integrity": "sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA=="
-    },
-    "resize-observer-polyfill": {
-      "version": "1.5.1",
-      "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
-      "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg=="
-    },
-    "resolve": {
-      "version": "1.8.1",
-      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz",
-      "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==",
-      "requires": {
-        "path-parse": "^1.0.5"
-      }
-    },
-    "resolve-cwd": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz",
-      "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=",
-      "dev": true,
-      "requires": {
-        "resolve-from": "^3.0.0"
-      },
-      "dependencies": {
-        "resolve-from": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
-          "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=",
-          "dev": true
-        }
-      }
-    },
-    "resolve-dir": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz",
-      "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=",
-      "dev": true,
-      "requires": {
-        "expand-tilde": "^2.0.0",
-        "global-modules": "^1.0.0"
-      },
-      "dependencies": {
-        "global-modules": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz",
-          "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==",
-          "dev": true,
-          "requires": {
-            "global-prefix": "^1.0.1",
-            "is-windows": "^1.0.1",
-            "resolve-dir": "^1.0.0"
-          }
-        }
-      }
-    },
-    "resolve-from": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
-      "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
-    },
-    "resolve-pathname": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz",
-      "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng=="
-    },
-    "resolve-protobuf-schema": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz",
-      "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==",
-      "requires": {
-        "protocol-buffers-schema": "^3.3.1"
-      }
-    },
-    "resolve-url": {
-      "version": "0.2.1",
-      "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
-      "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
-      "dev": true
-    },
-    "restore-cursor": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
-      "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
-      "dev": true,
-      "requires": {
-        "onetime": "^5.1.0",
-        "signal-exit": "^3.0.2"
-      }
-    },
-    "ret": {
-      "version": "0.1.15",
-      "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
-      "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
-      "dev": true
-    },
-    "retry": {
-      "version": "0.12.0",
-      "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
-      "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=",
-      "dev": true
-    },
-    "reusify": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
-      "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
-      "dev": true
-    },
-    "rgb-regex": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz",
-      "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=",
-      "dev": true
-    },
-    "rgba-regex": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz",
-      "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=",
-      "dev": true
-    },
-    "rimraf": {
-      "version": "2.6.2",
-      "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz",
-      "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==",
-      "dev": true,
-      "requires": {
-        "glob": "^7.0.5"
-      }
-    },
-    "ripemd160": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
-      "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
-      "dev": true,
-      "requires": {
-        "hash-base": "^3.0.0",
-        "inherits": "^2.0.1"
-      }
-    },
-    "rison": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/rison/-/rison-0.1.1.tgz",
-      "integrity": "sha1-TcwFV7JBr/YOdheOd5ITVxPzMSA="
-    },
-    "rst-selector-parser": {
-      "version": "2.2.3",
-      "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz",
-      "integrity": "sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=",
-      "dev": true,
-      "requires": {
-        "lodash.flattendeep": "^4.4.0",
-        "nearley": "^2.7.10"
-      }
-    },
-    "rsvp": {
-      "version": "4.8.5",
-      "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz",
-      "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==",
-      "dev": true
-    },
-    "run-async": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz",
-      "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=",
-      "dev": true,
-      "requires": {
-        "is-promise": "^2.1.0"
-      }
-    },
-    "run-parallel": {
-      "version": "1.1.9",
-      "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz",
-      "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==",
-      "dev": true
-    },
-    "run-queue": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz",
-      "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=",
-      "dev": true,
-      "requires": {
-        "aproba": "^1.1.1"
-      }
-    },
-    "rw": {
-      "version": "1.3.3",
-      "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
-      "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q="
-    },
-    "rxjs": {
-      "version": "6.5.3",
-      "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.3.tgz",
-      "integrity": "sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA==",
-      "dev": true,
-      "requires": {
-        "tslib": "^1.9.0"
-      }
-    },
-    "s2-geometry": {
-      "version": "1.2.10",
-      "resolved": "https://registry.npmjs.org/s2-geometry/-/s2-geometry-1.2.10.tgz",
-      "integrity": "sha1-xv8i8+zK/Q7qSRtgtEwUG5iHrKs=",
-      "requires": {
-        "long": "^3.2.0"
-      }
-    },
-    "safe-buffer": {
-      "version": "5.1.2",
-      "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
-      "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
-    },
-    "safe-regex": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
-      "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
-      "dev": true,
-      "requires": {
-        "ret": "~0.1.10"
-      }
-    },
-    "safer-buffer": {
-      "version": "2.1.2",
-      "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
-      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
-    },
-    "sane": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz",
-      "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==",
-      "dev": true,
-      "requires": {
-        "@cnakazawa/watch": "^1.0.3",
-        "anymatch": "^2.0.0",
-        "capture-exit": "^2.0.0",
-        "exec-sh": "^0.3.2",
-        "execa": "^1.0.0",
-        "fb-watchman": "^2.0.0",
-        "micromatch": "^3.1.4",
-        "minimist": "^1.1.1",
-        "walker": "~1.0.5"
-      }
-    },
-    "sax": {
-      "version": "1.2.4",
-      "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
-      "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
-      "dev": true
-    },
-    "saxes": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
-      "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
-      "dev": true,
-      "requires": {
-        "xmlchars": "^2.2.0"
-      }
-    },
-    "scheduler": {
-      "version": "0.15.0",
-      "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.15.0.tgz",
-      "integrity": "sha512-xAefmSfN6jqAa7Kuq7LIJY0bwAPG3xlCj0HMEBQk1lxYiDKZscY2xJ5U/61ZTrYbmNQbXa+gc7czPkVo11tnCg==",
-      "dev": true,
-      "requires": {
-        "loose-envify": "^1.1.0",
-        "object-assign": "^4.1.1"
-      }
-    },
-    "schema-utils": {
-      "version": "0.4.7",
-      "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz",
-      "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==",
-      "dev": true,
-      "requires": {
-        "ajv": "^6.1.0",
-        "ajv-keywords": "^3.1.0"
-      }
-    },
-    "scroll-into-view-if-needed": {
-      "version": "2.2.26",
-      "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.26.tgz",
-      "integrity": "sha512-SQ6AOKfABaSchokAmmaxVnL9IArxEnLEX9j4wAZw+x4iUTb40q7irtHG3z4GtAWz5veVZcCnubXDBRyLVQaohw==",
-      "requires": {
-        "compute-scroll-into-view": "^1.0.16"
-      }
-    },
-    "seedrandom": {
-      "version": "3.0.5",
-      "resolved": "https://registry.npmjs.org/seedrandom/-/seedrandom-3.0.5.tgz",
-      "integrity": "sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg=="
-    },
-    "seer": {
-      "version": "0.2.5",
-      "resolved": "https://registry.npmjs.org/seer/-/seer-0.2.5.tgz",
-      "integrity": "sha512-//0Zwt0x97KQhIWrp4oq9AVNvGA2ctCx4dmFddpkORjRr6bW+hyC8eOhWBVIhiU3uHv1XLU1dekfFKOi28RGHA=="
-    },
-    "select": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
-      "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=",
-      "optional": true
-    },
-    "select-hose": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz",
-      "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=",
-      "dev": true
-    },
-    "selfsigned": {
-      "version": "1.10.8",
-      "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz",
-      "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==",
-      "dev": true,
-      "requires": {
-        "node-forge": "^0.10.0"
-      }
-    },
-    "semver": {
-      "version": "5.6.0",
-      "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz",
-      "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==",
-      "dev": true
-    },
-    "send": {
-      "version": "0.16.2",
-      "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
-      "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
-      "dev": true,
-      "requires": {
-        "debug": "2.6.9",
-        "depd": "~1.1.2",
-        "destroy": "~1.0.4",
-        "encodeurl": "~1.0.2",
-        "escape-html": "~1.0.3",
-        "etag": "~1.8.1",
-        "fresh": "0.5.2",
-        "http-errors": "~1.6.2",
-        "mime": "1.4.1",
-        "ms": "2.0.0",
-        "on-finished": "~2.3.0",
-        "range-parser": "~1.2.0",
-        "statuses": "~1.4.0"
-      },
-      "dependencies": {
-        "mime": {
-          "version": "1.4.1",
-          "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
-          "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==",
-          "dev": true
-        }
-      }
-    },
-    "serialize-javascript": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz",
-      "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==",
-      "dev": true,
-      "requires": {
-        "randombytes": "^2.1.0"
-      },
-      "dependencies": {
-        "randombytes": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
-          "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "^5.1.0"
-          }
-        }
-      }
-    },
-    "serialize-query-params": {
-      "version": "1.2.4",
-      "resolved": "https://registry.npmjs.org/serialize-query-params/-/serialize-query-params-1.2.4.tgz",
-      "integrity": "sha512-m4hGkOY5y+ksPDSEkw12cNxt3HRUJv5G6oF9/4yq+GCw4LznudxC73qnz++VTHqXa0j1x1/iaBIpoiMBxr6w2w=="
-    },
-    "serve-favicon": {
-      "version": "2.5.0",
-      "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz",
-      "integrity": "sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=",
-      "dev": true,
-      "requires": {
-        "etag": "~1.8.1",
-        "fresh": "0.5.2",
-        "ms": "2.1.1",
-        "parseurl": "~1.3.2",
-        "safe-buffer": "5.1.1"
-      },
-      "dependencies": {
-        "ms": {
-          "version": "2.1.1",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
-          "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
-          "dev": true
-        },
-        "safe-buffer": {
-          "version": "5.1.1",
-          "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
-          "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==",
-          "dev": true
-        }
-      }
-    },
-    "serve-index": {
-      "version": "1.9.1",
-      "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz",
-      "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=",
-      "dev": true,
-      "requires": {
-        "accepts": "~1.3.4",
-        "batch": "0.6.1",
-        "debug": "2.6.9",
-        "escape-html": "~1.0.3",
-        "http-errors": "~1.6.2",
-        "mime-types": "~2.1.17",
-        "parseurl": "~1.3.2"
-      }
-    },
-    "serve-static": {
-      "version": "1.13.2",
-      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
-      "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
-      "dev": true,
-      "requires": {
-        "encodeurl": "~1.0.2",
-        "escape-html": "~1.0.3",
-        "parseurl": "~1.3.2",
-        "send": "0.16.2"
-      }
-    },
-    "set-blocking": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
-      "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
-      "dev": true
-    },
-    "set-value": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
-      "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
-      "dev": true,
-      "requires": {
-        "extend-shallow": "^2.0.1",
-        "is-extendable": "^0.1.1",
-        "is-plain-object": "^2.0.3",
-        "split-string": "^3.0.1"
-      }
-    },
-    "setimmediate": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
-      "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
-    },
-    "setprototypeof": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
-      "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
-      "dev": true
-    },
-    "sha.js": {
-      "version": "2.4.11",
-      "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
-      "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
-      "dev": true,
-      "requires": {
-        "inherits": "^2.0.1",
-        "safe-buffer": "^5.0.1"
-      }
-    },
-    "shallow-clone": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz",
-      "integrity": "sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=",
-      "dev": true,
-      "requires": {
-        "is-extendable": "^0.1.1",
-        "kind-of": "^2.0.1",
-        "lazy-cache": "^0.2.3",
-        "mixin-object": "^2.0.1"
-      },
-      "dependencies": {
-        "kind-of": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz",
-          "integrity": "sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.0.2"
-          }
-        },
-        "lazy-cache": {
-          "version": "0.2.7",
-          "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz",
-          "integrity": "sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=",
-          "dev": true
-        }
-      }
-    },
-    "shallow-copy": {
-      "version": "0.0.1",
-      "resolved": "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz",
-      "integrity": "sha1-QV9CcC1z2BAzApLMXuhurhoRoXA="
-    },
-    "shallow-equal": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz",
-      "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==",
-      "dev": true
-    },
-    "shallowequal": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
-      "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ=="
-    },
-    "shapefile": {
-      "version": "0.3.1",
-      "resolved": "https://registry.npmjs.org/shapefile/-/shapefile-0.3.1.tgz",
-      "integrity": "sha1-m7mkKb1ghqDPsDli0Uz99CD/uhI=",
-      "requires": {
-        "d3-queue": "1",
-        "iconv-lite": "0.2",
-        "optimist": "0.3"
-      },
-      "dependencies": {
-        "d3-queue": {
-          "version": "1.2.3",
-          "resolved": "https://registry.npmjs.org/d3-queue/-/d3-queue-1.2.3.tgz",
-          "integrity": "sha1-FDpwHPpl/gISkvMhwQ0U6Yq9SRs="
-        },
-        "iconv-lite": {
-          "version": "0.2.11",
-          "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz",
-          "integrity": "sha1-HOYKOleGSiktEyH/RgnKS7llrcg="
-        }
-      }
-    },
-    "sharkdown": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/sharkdown/-/sharkdown-0.1.1.tgz",
-      "integrity": "sha512-exwooSpmo5s45lrexgz6Q0rFQM574wYIX3iDZ7RLLqOb7IAoQZu9nxlZODU972g19sR69OIpKP2cpHTzU+PHIg==",
-      "requires": {
-        "cardinal": "~0.4.2",
-        "minimist": "0.0.5",
-        "split": "~0.2.10"
-      },
-      "dependencies": {
-        "minimist": {
-          "version": "0.0.5",
-          "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.5.tgz",
-          "integrity": "sha1-16oye87PUY+RBqxrjwA/o7zqhWY="
-        }
-      }
-    },
-    "shebang-command": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
-      "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
-      "dev": true,
-      "requires": {
-        "shebang-regex": "^1.0.0"
-      }
-    },
-    "shebang-regex": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
-      "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
-      "dev": true
-    },
-    "shell-quote": {
-      "version": "1.7.2",
-      "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz",
-      "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==",
-      "dev": true
-    },
-    "shelljs": {
-      "version": "0.8.4",
-      "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz",
-      "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==",
-      "dev": true,
-      "requires": {
-        "glob": "^7.0.0",
-        "interpret": "^1.0.0",
-        "rechoir": "^0.6.2"
-      }
-    },
-    "shellwords": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz",
-      "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==",
-      "dev": true,
-      "optional": true
-    },
-    "shortid": {
-      "version": "2.2.14",
-      "resolved": "https://registry.npmjs.org/shortid/-/shortid-2.2.14.tgz",
-      "integrity": "sha512-4UnZgr9gDdA1kaKj/38IiudfC3KHKhDc1zi/HSxd9FQDR0VLwH3/y79tZJLsVYPsJgIjeHjqIWaWVRJUj9qZOQ==",
-      "requires": {
-        "nanoid": "^2.0.0"
-      }
-    },
-    "side-channel": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.2.tgz",
-      "integrity": "sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA==",
-      "dev": true,
-      "requires": {
-        "es-abstract": "^1.17.0-next.1",
-        "object-inspect": "^1.7.0"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "sigmund": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz",
-      "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=",
-      "dev": true
-    },
-    "signal-exit": {
-      "version": "3.0.2",
-      "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
-      "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=",
-      "dev": true
-    },
-    "simple-swizzle": {
-      "version": "0.2.2",
-      "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
-      "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=",
-      "dev": true,
-      "requires": {
-        "is-arrayish": "^0.3.1"
-      },
-      "dependencies": {
-        "is-arrayish": {
-          "version": "0.3.2",
-          "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
-          "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
-          "dev": true
-        }
-      }
-    },
-    "sinon": {
-      "version": "9.0.2",
-      "resolved": "https://registry.npmjs.org/sinon/-/sinon-9.0.2.tgz",
-      "integrity": "sha512-0uF8Q/QHkizNUmbK3LRFqx5cpTttEVXudywY9Uwzy8bTfZUhljZ7ARzSxnRHWYWtVTeh4Cw+tTb3iU21FQVO9A==",
-      "dev": true,
-      "requires": {
-        "@sinonjs/commons": "^1.7.2",
-        "@sinonjs/fake-timers": "^6.0.1",
-        "@sinonjs/formatio": "^5.0.1",
-        "@sinonjs/samsam": "^5.0.3",
-        "diff": "^4.0.2",
-        "nise": "^4.0.1",
-        "supports-color": "^7.1.0"
-      },
-      "dependencies": {
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
-          "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "sisteransi": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
-      "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
-      "dev": true
-    },
-    "slash": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz",
-      "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
-      "dev": true
-    },
-    "sleep-promise": {
-      "version": "8.0.1",
-      "resolved": "https://registry.npmjs.org/sleep-promise/-/sleep-promise-8.0.1.tgz",
-      "integrity": "sha1-jXlaJ+ojlT32tSuRCB5eImZZk8U="
-    },
-    "slice-ansi": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
-      "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
-      "dev": true,
-      "requires": {
-        "ansi-styles": "^4.0.0",
-        "astral-regex": "^2.0.0",
-        "is-fullwidth-code-point": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^2.0.1"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        }
-      }
-    },
-    "snapdragon": {
-      "version": "0.8.2",
-      "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
-      "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
-      "dev": true,
-      "requires": {
-        "base": "^0.11.1",
-        "debug": "^2.2.0",
-        "define-property": "^0.2.5",
-        "extend-shallow": "^2.0.1",
-        "map-cache": "^0.2.2",
-        "source-map": "^0.5.6",
-        "source-map-resolve": "^0.5.0",
-        "use": "^3.1.0"
-      },
-      "dependencies": {
-        "define-property": {
-          "version": "0.2.5",
-          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
-          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
-          "dev": true,
-          "requires": {
-            "is-descriptor": "^0.1.0"
-          }
-        }
-      }
-    },
-    "snapdragon-node": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
-      "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
-      "dev": true,
-      "requires": {
-        "define-property": "^1.0.0",
-        "isobject": "^3.0.0",
-        "snapdragon-util": "^3.0.1"
-      },
-      "dependencies": {
-        "define-property": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
-          "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
-          "dev": true,
-          "requires": {
-            "is-descriptor": "^1.0.0"
-          }
-        },
-        "is-accessor-descriptor": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
-          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
-          "dev": true,
-          "requires": {
-            "kind-of": "^6.0.0"
-          }
-        },
-        "is-data-descriptor": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
-          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
-          "dev": true,
-          "requires": {
-            "kind-of": "^6.0.0"
-          }
-        },
-        "is-descriptor": {
-          "version": "1.0.2",
-          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
-          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
-          "dev": true,
-          "requires": {
-            "is-accessor-descriptor": "^1.0.0",
-            "is-data-descriptor": "^1.0.0",
-            "kind-of": "^6.0.2"
-          }
-        },
-        "kind-of": {
-          "version": "6.0.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
-          "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
-          "dev": true
-        }
-      }
-    },
-    "snapdragon-util": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
-      "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
-      "dev": true,
-      "requires": {
-        "kind-of": "^3.2.0"
-      },
-      "dependencies": {
-        "kind-of": {
-          "version": "3.2.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
-          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.1.5"
-          }
-        }
-      }
-    },
-    "sockjs": {
-      "version": "0.3.20",
-      "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.20.tgz",
-      "integrity": "sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==",
-      "dev": true,
-      "requires": {
-        "faye-websocket": "^0.10.0",
-        "uuid": "^3.4.0",
-        "websocket-driver": "0.6.5"
-      },
-      "dependencies": {
-        "uuid": {
-          "version": "3.4.0",
-          "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
-          "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
-          "dev": true
-        }
-      }
-    },
-    "sockjs-client": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz",
-      "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==",
-      "dev": true,
-      "requires": {
-        "debug": "^3.2.5",
-        "eventsource": "^1.0.7",
-        "faye-websocket": "~0.11.1",
-        "inherits": "^2.0.3",
-        "json3": "^3.3.2",
-        "url-parse": "^1.4.3"
-      },
-      "dependencies": {
-        "debug": {
-          "version": "3.2.6",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
-          "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "faye-websocket": {
-          "version": "0.11.3",
-          "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz",
-          "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==",
-          "dev": true,
-          "requires": {
-            "websocket-driver": ">=0.5.1"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        }
-      }
-    },
-    "source-list-map": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
-      "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==",
-      "dev": true
-    },
-    "source-map": {
-      "version": "0.5.7",
-      "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
-      "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
-    },
-    "source-map-resolve": {
-      "version": "0.5.2",
-      "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz",
-      "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==",
-      "dev": true,
-      "requires": {
-        "atob": "^2.1.1",
-        "decode-uri-component": "^0.2.0",
-        "resolve-url": "^0.2.1",
-        "source-map-url": "^0.4.0",
-        "urix": "^0.1.0"
-      }
-    },
-    "source-map-support": {
-      "version": "0.5.16",
-      "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.16.tgz",
-      "integrity": "sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==",
-      "dev": true,
-      "requires": {
-        "buffer-from": "^1.0.0",
-        "source-map": "^0.6.0"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "source-map-url": {
-      "version": "0.4.0",
-      "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
-      "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=",
-      "dev": true
-    },
-    "space-separated-tokens": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.2.tgz",
-      "integrity": "sha512-G3jprCEw+xFEs0ORweLmblJ3XLymGGr6hxZYTYZjIlvDti9vOBUjRQa1Rzjt012aRrocKstHwdNi+F7HguPsEA==",
-      "requires": {
-        "trim": "0.0.1"
-      }
-    },
-    "spdx-correct": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz",
-      "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==",
-      "dev": true,
-      "requires": {
-        "spdx-expression-parse": "^3.0.0",
-        "spdx-license-ids": "^3.0.0"
-      }
-    },
-    "spdx-exceptions": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz",
-      "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==",
-      "dev": true
-    },
-    "spdx-expression-parse": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz",
-      "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==",
-      "dev": true,
-      "requires": {
-        "spdx-exceptions": "^2.1.0",
-        "spdx-license-ids": "^3.0.0"
-      }
-    },
-    "spdx-license-ids": {
-      "version": "3.0.2",
-      "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz",
-      "integrity": "sha512-qky9CVt0lVIECkEsYbNILVnPvycuEBkXoMFLRWsREkomQLevYhtRKC+R91a5TOAQ3bCMjikRwhyaRqj1VYatYg==",
-      "dev": true
-    },
-    "spdy": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz",
-      "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==",
-      "dev": true,
-      "requires": {
-        "debug": "^4.1.0",
-        "handle-thing": "^2.0.0",
-        "http-deceiver": "^1.2.7",
-        "select-hose": "^2.0.0",
-        "spdy-transport": "^3.0.0"
-      },
-      "dependencies": {
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        }
-      }
-    },
-    "spdy-transport": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz",
-      "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==",
-      "dev": true,
-      "requires": {
-        "debug": "^4.1.0",
-        "detect-node": "^2.0.4",
-        "hpack.js": "^2.1.6",
-        "obuf": "^1.1.2",
-        "readable-stream": "^3.0.6",
-        "wbuf": "^1.7.3"
-      },
-      "dependencies": {
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "readable-stream": {
-          "version": "3.6.0",
-          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
-          "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
-          "dev": true,
-          "requires": {
-            "inherits": "^2.0.3",
-            "string_decoder": "^1.1.1",
-            "util-deprecate": "^1.0.1"
-          }
-        }
-      }
-    },
-    "speed-measure-webpack-plugin": {
-      "version": "1.2.3",
-      "resolved": "https://registry.npmjs.org/speed-measure-webpack-plugin/-/speed-measure-webpack-plugin-1.2.3.tgz",
-      "integrity": "sha512-p+taQ69VkRUXYMoZOx2nxV/Tz8tt79ahctoZJyJDHWP7fEYvwFNf5Pd73k5kZ6auu0pTsPNLEUwWpM8mCk85Zw==",
-      "dev": true,
-      "requires": {
-        "chalk": "^2.0.1"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.1",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
-          "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "split": {
-      "version": "0.2.10",
-      "resolved": "https://registry.npmjs.org/split/-/split-0.2.10.tgz",
-      "integrity": "sha1-Zwl8YB1pfOE2j0GPBs0gHPBSGlc=",
-      "requires": {
-        "through": "2"
-      }
-    },
-    "split-on-first": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz",
-      "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw=="
-    },
-    "split-string": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
-      "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
-      "dev": true,
-      "requires": {
-        "extend-shallow": "^3.0.0"
-      },
-      "dependencies": {
-        "extend-shallow": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
-          "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
-          "dev": true,
-          "requires": {
-            "assign-symbols": "^1.0.0",
-            "is-extendable": "^1.0.1"
-          }
-        },
-        "is-extendable": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
-          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
-          "dev": true,
-          "requires": {
-            "is-plain-object": "^2.0.4"
-          }
-        }
-      }
-    },
-    "sprintf-js": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
-      "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
-      "dev": true
-    },
-    "sshpk": {
-      "version": "1.15.2",
-      "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.15.2.tgz",
-      "integrity": "sha512-Ra/OXQtuh0/enyl4ETZAfTaeksa6BXks5ZcjpSUNrjBr0DvrJKX+1fsKDPpT9TBXgHAFsa4510aNVgI8g/+SzA==",
-      "dev": true,
-      "requires": {
-        "asn1": "~0.2.3",
-        "assert-plus": "^1.0.0",
-        "bcrypt-pbkdf": "^1.0.0",
-        "dashdash": "^1.12.0",
-        "ecc-jsbn": "~0.1.1",
-        "getpass": "^0.1.1",
-        "jsbn": "~0.1.0",
-        "safer-buffer": "^2.0.2",
-        "tweetnacl": "~0.14.0"
-      }
-    },
-    "ssri": {
-      "version": "6.0.1",
-      "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz",
-      "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==",
-      "dev": true,
-      "requires": {
-        "figgy-pudding": "^3.5.1"
-      }
-    },
-    "stable": {
-      "version": "0.1.8",
-      "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
-      "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
-      "dev": true
-    },
-    "stack-utils": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz",
-      "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==",
-      "dev": true,
-      "requires": {
-        "escape-string-regexp": "^2.0.0"
-      },
-      "dependencies": {
-        "escape-string-regexp": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
-          "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
-          "dev": true
-        }
-      }
-    },
-    "state-toggle": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz",
-      "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ=="
-    },
-    "static-eval": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.1.0.tgz",
-      "integrity": "sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==",
-      "requires": {
-        "escodegen": "^1.11.1"
-      },
-      "dependencies": {
-        "escodegen": {
-          "version": "1.14.3",
-          "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
-          "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
-          "requires": {
-            "esprima": "^4.0.1",
-            "estraverse": "^4.2.0",
-            "esutils": "^2.0.2",
-            "optionator": "^0.8.1",
-            "source-map": "~0.6.1"
-          }
-        },
-        "esprima": {
-          "version": "4.0.1",
-          "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
-          "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "optional": true
-        }
-      }
-    },
-    "static-extend": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
-      "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
-      "dev": true,
-      "requires": {
-        "define-property": "^0.2.5",
-        "object-copy": "^0.1.0"
-      },
-      "dependencies": {
-        "define-property": {
-          "version": "0.2.5",
-          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
-          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
-          "dev": true,
-          "requires": {
-            "is-descriptor": "^0.1.0"
-          }
-        }
-      }
-    },
-    "static-module": {
-      "version": "2.2.5",
-      "resolved": "https://registry.npmjs.org/static-module/-/static-module-2.2.5.tgz",
-      "integrity": "sha512-D8vv82E/Kpmz3TXHKG8PPsCPg+RAX6cbCOyvjM6x04qZtQ47EtJFVwRsdov3n5d6/6ynrOY9XB4JkaZwB2xoRQ==",
-      "requires": {
-        "concat-stream": "~1.6.0",
-        "convert-source-map": "^1.5.1",
-        "duplexer2": "~0.1.4",
-        "escodegen": "~1.9.0",
-        "falafel": "^2.1.0",
-        "has": "^1.0.1",
-        "magic-string": "^0.22.4",
-        "merge-source-map": "1.0.4",
-        "object-inspect": "~1.4.0",
-        "quote-stream": "~1.0.2",
-        "readable-stream": "~2.3.3",
-        "shallow-copy": "~0.0.1",
-        "static-eval": "^2.0.0",
-        "through2": "~2.0.3"
-      }
-    },
-    "statuses": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
-      "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==",
-      "dev": true
-    },
-    "stealthy-require": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz",
-      "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=",
-      "dev": true
-    },
-    "store2": {
-      "version": "2.11.2",
-      "resolved": "https://registry.npmjs.org/store2/-/store2-2.11.2.tgz",
-      "integrity": "sha512-TQMKs+C6n9idtzLpxluikmDCYiDJrTbbIGn9LFxMg0BVTu+8JZKSlXTWYRpOFKlfKD5HlDWLVpJJyNGZ2e9l1A==",
-      "dev": true
-    },
-    "storybook-addon-jsx": {
-      "version": "7.3.3",
-      "resolved": "https://registry.npmjs.org/storybook-addon-jsx/-/storybook-addon-jsx-7.3.3.tgz",
-      "integrity": "sha512-GN793xr8Q5E0ou/6l1TgPoA86K1Xw68brgDDREEsUwXp3bZz7wpsJaumm/sclgfLKC3AVcxnd09BKrITVVDRNg==",
-      "dev": true,
-      "requires": {
-        "copy-to-clipboard": "^3.0.8",
-        "js-beautify": "^1.8.8",
-        "react-element-to-jsx-string": "^14.3.1",
-        "storybook-pretty-props": "^1.0.3"
-      }
-    },
-    "storybook-addon-paddings": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/storybook-addon-paddings/-/storybook-addon-paddings-3.2.0.tgz",
-      "integrity": "sha512-kqfZ2JIrJjb6wT5DtYzcNFOj03wS4e6xKdRBb4D+Okwn0pr+dGhiPblsQzbPIVRAbamq9VJw/b4pmiLeVL3FyA==",
-      "dev": true,
-      "requires": {
-        "@storybook/addons": "^6.0.21",
-        "@storybook/api": "^6.0.21",
-        "@storybook/components": "^6.0.21",
-        "@storybook/theming": "^6.0.21",
-        "core-js": "^3.6.5",
-        "memoizerific": "^1.11.3",
-        "react": "^16.13.1"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.12.5",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
-          "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
-          "dev": true,
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        },
-        "@emotion/core": {
-          "version": "10.1.1",
-          "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.1.1.tgz",
-          "integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==",
-          "dev": true,
-          "requires": {
-            "@babel/runtime": "^7.5.5",
-            "@emotion/cache": "^10.0.27",
-            "@emotion/css": "^10.0.27",
-            "@emotion/serialize": "^0.11.15",
-            "@emotion/sheet": "0.9.4",
-            "@emotion/utils": "0.11.3"
-          }
-        },
-        "@storybook/addons": {
-          "version": "6.1.11",
-          "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.1.11.tgz",
-          "integrity": "sha512-OZXsdmn60dVe482l9zWxzOqqJApD2jggk/8QJKn3/Ub9posmqdqg712bW6v71BBe0UXXG/QfkZA7gcyiyEENbw==",
-          "dev": true,
-          "requires": {
-            "@storybook/api": "6.1.11",
-            "@storybook/channels": "6.1.11",
-            "@storybook/client-logger": "6.1.11",
-            "@storybook/core-events": "6.1.11",
-            "@storybook/router": "6.1.11",
-            "@storybook/theming": "6.1.11",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "regenerator-runtime": "^0.13.7"
-          }
-        },
-        "@storybook/api": {
-          "version": "6.1.11",
-          "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.1.11.tgz",
-          "integrity": "sha512-/p4QW/p3uWO0AKVveNezX3I/CotyBKaJ5ui8PuvSPsl7yvqcsK41qI4evKOw7GMQn6oP+2enRbzHpGuCUgQSjA==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@storybook/channels": "6.1.11",
-            "@storybook/client-logger": "6.1.11",
-            "@storybook/core-events": "6.1.11",
-            "@storybook/csf": "0.0.1",
-            "@storybook/router": "6.1.11",
-            "@storybook/semver": "^7.3.2",
-            "@storybook/theming": "6.1.11",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "fast-deep-equal": "^3.1.1",
-            "global": "^4.3.2",
-            "lodash": "^4.17.15",
-            "memoizerific": "^1.11.3",
-            "regenerator-runtime": "^0.13.7",
-            "store2": "^2.7.1",
-            "telejson": "^5.0.2",
-            "ts-dedent": "^2.0.0",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/channels": {
-          "version": "6.1.11",
-          "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.1.11.tgz",
-          "integrity": "sha512-NvjWzQ95TSV1e18jaQBCOGoe+vptKH2NOKZ7QRQ7I0O5OoHKr47IXoh+MQ5C8CRD9FTdLE/xWdn1sVVEPRyHEw==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "ts-dedent": "^2.0.0",
-            "util-deprecate": "^1.0.2"
-          }
-        },
-        "@storybook/client-logger": {
-          "version": "6.1.11",
-          "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.1.11.tgz",
-          "integrity": "sha512-dSc+VKLW1UaiMPMhlZYRqhynrrHdHFiBEgU28+8LcmoZ1yhZBwLkcKdSD4YTT0CbMJAG1/+NUW5kRI8Geeg+rA==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1",
-            "global": "^4.3.2"
-          }
-        },
-        "@storybook/core-events": {
-          "version": "6.1.11",
-          "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.1.11.tgz",
-          "integrity": "sha512-hTib81W8PxepM7iXVvl3pBXSaGpChl5LTzaLCoIRO9sSB8dy0/x2DLAHzbQvShk/l1wqUc3TtOLIxq+eC9l3wg==",
-          "dev": true,
-          "requires": {
-            "core-js": "^3.0.1"
-          }
-        },
-        "@storybook/router": {
-          "version": "6.1.11",
-          "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.1.11.tgz",
-          "integrity": "sha512-YEYOoKMo/WI13MZCkdqI9X3H1G0Oj5OUxi7So4qd3khX3zcCjSr3LjiMDBcmIVZpFo5VAvzjhIY4KqpgvzTG0A==",
-          "dev": true,
-          "requires": {
-            "@reach/router": "^1.3.3",
-            "@types/reach__router": "^1.3.5",
-            "core-js": "^3.0.1",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "qs": "^6.6.0"
-          }
-        },
-        "@storybook/theming": {
-          "version": "6.1.11",
-          "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.1.11.tgz",
-          "integrity": "sha512-zRChacVgKoU2BmpvwK1ntiF3KIpc8QblJT7IGiKfP/BNpy9gNeXbLPLk3g/tkHszOvVYtkaZhEXni4Od8tqy1A==",
-          "dev": true,
-          "requires": {
-            "@emotion/core": "^10.1.1",
-            "@emotion/is-prop-valid": "^0.8.6",
-            "@emotion/styled": "^10.0.23",
-            "@storybook/client-logger": "6.1.11",
-            "core-js": "^3.0.1",
-            "deep-object-diff": "^1.1.0",
-            "emotion-theming": "^10.0.19",
-            "global": "^4.3.2",
-            "memoizerific": "^1.11.3",
-            "polished": "^3.4.4",
-            "resolve-from": "^5.0.0",
-            "ts-dedent": "^2.0.0"
-          }
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        },
-        "qs": {
-          "version": "6.9.4",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-          "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-          "dev": true
-        },
-        "regenerator-runtime": {
-          "version": "0.13.7",
-          "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
-          "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==",
-          "dev": true
-        },
-        "resolve-from": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
-          "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
-          "dev": true
-        },
-        "telejson": {
-          "version": "5.1.0",
-          "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.1.0.tgz",
-          "integrity": "sha512-Yy0N2OV0mosmr1SCZEm3Ezhu/oi5Dbao5RqauZu4+VI5I/XtVBHXajRk0txuqbFYtKdzzWGDZFGSif9ovVLjEA==",
-          "dev": true,
-          "requires": {
-            "@types/is-function": "^1.0.0",
-            "global": "^4.4.0",
-            "is-function": "^1.0.2",
-            "is-regex": "^1.1.1",
-            "is-symbol": "^1.0.3",
-            "isobject": "^4.0.0",
-            "lodash": "^4.17.20",
-            "memoizerific": "^1.11.3"
-          }
-        },
-        "ts-dedent": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.0.0.tgz",
-          "integrity": "sha512-DfxKjSFQfw9+uf7N9Cy8Ebx9fv5fquK4hZ6SD3Rzr+1jKP6AVA6H8+B5457ZpUs0JKsGpGqIevbpZ9DMQJDp1A==",
-          "dev": true
-        }
-      }
-    },
-    "storybook-pretty-props": {
-      "version": "1.2.1",
-      "resolved": "https://registry.npmjs.org/storybook-pretty-props/-/storybook-pretty-props-1.2.1.tgz",
-      "integrity": "sha512-3dUtu0UbBA6idA3Qo0i+CYGGz8GiqlXzhgCJdT065jnuJ3y9intKxZpv05ZbnQXCPnsPVSDos+hgOZ444hf6xA==",
-      "dev": true
-    },
-    "stream-browserify": {
-      "version": "2.0.1",
-      "resolved": "http://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz",
-      "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=",
-      "dev": true,
-      "requires": {
-        "inherits": "~2.0.1",
-        "readable-stream": "^2.0.2"
-      }
-    },
-    "stream-each": {
-      "version": "1.2.3",
-      "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz",
-      "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==",
-      "dev": true,
-      "requires": {
-        "end-of-stream": "^1.1.0",
-        "stream-shift": "^1.0.0"
-      }
-    },
-    "stream-http": {
-      "version": "2.8.3",
-      "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
-      "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
-      "dev": true,
-      "requires": {
-        "builtin-status-codes": "^3.0.0",
-        "inherits": "^2.0.1",
-        "readable-stream": "^2.3.6",
-        "to-arraybuffer": "^1.0.0",
-        "xtend": "^4.0.0"
-      }
-    },
-    "stream-shift": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz",
-      "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=",
-      "dev": true
-    },
-    "strict-uri-encode": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz",
-      "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY="
-    },
-    "string-convert": {
-      "version": "0.2.1",
-      "resolved": "https://registry.npmjs.org/string-convert/-/string-convert-0.2.1.tgz",
-      "integrity": "sha1-aYLMMEn7tM2F+LJFaLnZvznu/5c="
-    },
-    "string-hash": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz",
-      "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs="
-    },
-    "string-length": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz",
-      "integrity": "sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==",
-      "dev": true,
-      "requires": {
-        "char-regex": "^1.0.2",
-        "strip-ansi": "^6.0.0"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        }
-      }
-    },
-    "string-width": {
-      "version": "1.0.2",
-      "resolved": "http://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
-      "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
-      "dev": true,
-      "requires": {
-        "code-point-at": "^1.0.0",
-        "is-fullwidth-code-point": "^1.0.0",
-        "strip-ansi": "^3.0.0"
-      }
-    },
-    "string.prototype.matchall": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz",
-      "integrity": "sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.0",
-        "has-symbols": "^1.0.1",
-        "internal-slot": "^1.0.2",
-        "regexp.prototype.flags": "^1.3.0",
-        "side-channel": "^1.0.2"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "string.prototype.padend": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz",
-      "integrity": "sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.0-next.1"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "string.prototype.padstart": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/string.prototype.padstart/-/string.prototype.padstart-3.1.0.tgz",
-      "integrity": "sha512-envqZvUp2JItI+OeQ5UAh1ihbAV5G/2bixTojvlIa090GGqF+NQRxbWb2nv9fTGrZABv6+pE6jXoAZhhS2k4Hw==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.0-next.1"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "string.prototype.trim": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.0.tgz",
-      "integrity": "sha512-9EIjYD/WdlvLpn987+ctkLf0FfvBefOCuiEr2henD8X+7jfwPnyvTdmW8OJhj5p+M0/96mBdynLWkxUr+rHlpg==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.13.0",
-        "function-bind": "^1.1.1"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.13.0",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz",
-          "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.0",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "is-callable": "^1.1.4",
-            "is-regex": "^1.0.4",
-            "object-keys": "^1.0.12"
-          }
-        }
-      }
-    },
-    "string.prototype.trimend": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz",
-      "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.5"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "string.prototype.trimleft": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz",
-      "integrity": "sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "function-bind": "^1.1.1"
-      }
-    },
-    "string.prototype.trimright": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz",
-      "integrity": "sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "function-bind": "^1.1.1"
-      }
-    },
-    "string.prototype.trimstart": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz",
-      "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.3",
-        "es-abstract": "^1.17.5"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "string_decoder": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
-      "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
-      "requires": {
-        "safe-buffer": "~5.1.0"
-      }
-    },
-    "strip-ansi": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
-      "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
-      "dev": true,
-      "requires": {
-        "ansi-regex": "^2.0.0"
-      }
-    },
-    "strip-bom": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
-      "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
-      "dev": true
-    },
-    "strip-eof": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
-      "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
-      "dev": true
-    },
-    "strip-final-newline": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
-      "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
-      "dev": true
-    },
-    "strip-indent": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz",
-      "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==",
-      "dev": true,
-      "requires": {
-        "min-indent": "^1.0.0"
-      }
-    },
-    "strip-json-comments": {
-      "version": "3.1.1",
-      "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
-      "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
-      "dev": true
-    },
-    "style-loader": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.0.1.tgz",
-      "integrity": "sha512-CnpEkSR1C+REjudiTWCv4+ssP7SCiuaQZJTZDWBRwTJoS90mdqkB8uOGMHKgVeUzpaU7IfLWoyQbvvs5Joj3Xw==",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^1.2.3",
-        "schema-utils": "^2.0.1"
-      },
-      "dependencies": {
-        "ajv": {
-          "version": "6.10.2",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz",
-          "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^2.0.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ajv-keywords": {
-          "version": "3.4.1",
-          "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz",
-          "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==",
-          "dev": true
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "json5": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-          "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.0"
-          }
-        },
-        "loader-utils": {
-          "version": "1.2.3",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz",
-          "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^2.0.0",
-            "json5": "^1.0.1"
-          }
-        },
-        "schema-utils": {
-          "version": "2.6.1",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.1.tgz",
-          "integrity": "sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==",
-          "dev": true,
-          "requires": {
-            "ajv": "^6.10.2",
-            "ajv-keywords": "^3.4.1"
-          }
-        }
-      }
-    },
-    "style-to-object": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz",
-      "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==",
-      "dev": true,
-      "requires": {
-        "inline-style-parser": "0.1.1"
-      }
-    },
-    "stylehacks": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz",
-      "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==",
-      "dev": true,
-      "requires": {
-        "browserslist": "^4.0.0",
-        "postcss": "^7.0.0",
-        "postcss-selector-parser": "^3.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "is-obj": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
-          "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
-          "dev": true
-        },
-        "postcss": {
-          "version": "7.0.14",
-          "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
-          "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
-          "dev": true,
-          "requires": {
-            "chalk": "^2.4.2",
-            "source-map": "^0.6.1",
-            "supports-color": "^6.1.0"
-          }
-        },
-        "postcss-selector-parser": {
-          "version": "3.1.2",
-          "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
-          "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==",
-          "dev": true,
-          "requires": {
-            "dot-prop": "^5.2.0",
-            "indexes-of": "^1.0.1",
-            "uniq": "^1.0.1"
-          },
-          "dependencies": {
-            "dot-prop": {
-              "version": "5.2.0",
-              "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz",
-              "integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==",
-              "dev": true,
-              "requires": {
-                "is-obj": "^2.0.0"
-              }
-            }
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "supercluster": {
-      "version": "4.1.1",
-      "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-4.1.1.tgz",
-      "integrity": "sha512-sF0FfUOPFp96DKzwWFLeQOEqqKu2PpcesxAFeFsknA/q7g7igVVn/p3NI2XHEghNSyDAqunKNKqAbqNO8+7NDQ==",
-      "requires": {
-        "kdbush": "^2.0.1"
-      },
-      "dependencies": {
-        "kdbush": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-2.0.1.tgz",
-          "integrity": "sha512-9KqSdmWCkBIisFIGclT0FRagKhI7IVbMyUjsxCFG0Ly1Dg6whlxJ7b9lrq8ifk3X/fGeJzok1R75LQfZTfA5zQ=="
-        }
-      }
-    },
-    "supports-color": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
-      "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
-      "dev": true
-    },
-    "supports-hyperlinks": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz",
-      "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==",
-      "dev": true,
-      "requires": {
-        "has-flag": "^4.0.0",
-        "supports-color": "^7.0.0"
-      },
-      "dependencies": {
-        "has-flag": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "7.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^4.0.0"
-          }
-        }
-      }
-    },
-    "svg-parser": {
-      "version": "2.0.4",
-      "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz",
-      "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==",
-      "dev": true
-    },
-    "svgo": {
-      "version": "1.3.2",
-      "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz",
-      "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==",
-      "dev": true,
-      "requires": {
-        "chalk": "^2.4.1",
-        "coa": "^2.0.2",
-        "css-select": "^2.0.0",
-        "css-select-base-adapter": "^0.1.1",
-        "css-tree": "1.0.0-alpha.37",
-        "csso": "^4.0.2",
-        "js-yaml": "^3.13.1",
-        "mkdirp": "~0.5.1",
-        "object.values": "^1.1.0",
-        "sax": "~1.2.4",
-        "stable": "^0.1.8",
-        "unquote": "~1.1.1",
-        "util.promisify": "~1.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "css-select": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
-          "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==",
-          "dev": true,
-          "requires": {
-            "boolbase": "^1.0.0",
-            "css-what": "^3.2.1",
-            "domutils": "^1.7.0",
-            "nth-check": "^1.0.2"
-          }
-        },
-        "css-what": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.2.1.tgz",
-          "integrity": "sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==",
-          "dev": true
-        },
-        "domutils": {
-          "version": "1.7.0",
-          "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz",
-          "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==",
-          "dev": true,
-          "requires": {
-            "dom-serializer": "0",
-            "domelementtype": "1"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        }
-      }
-    },
-    "symbol-observable": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
-      "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
-    },
-    "symbol-tree": {
-      "version": "3.2.4",
-      "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
-      "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
-      "dev": true
-    },
-    "symbol.prototype.description": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/symbol.prototype.description/-/symbol.prototype.description-1.0.2.tgz",
-      "integrity": "sha512-2CW5SU4/Ki1cYOOHcL2cXK4rxSg5hCU1TwZ7X4euKhV9VnfqKslh7T6/UyKkubA8cq2tOmsOv7m3ZUmQslBRuw==",
-      "dev": true,
-      "requires": {
-        "es-abstract": "^1.17.0-next.1",
-        "has-symbols": "^1.0.1"
-      },
-      "dependencies": {
-        "es-abstract": {
-          "version": "1.17.6",
-          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
-          "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
-          "dev": true,
-          "requires": {
-            "es-to-primitive": "^1.2.1",
-            "function-bind": "^1.1.1",
-            "has": "^1.0.3",
-            "has-symbols": "^1.0.1",
-            "is-callable": "^1.2.0",
-            "is-regex": "^1.1.0",
-            "object-inspect": "^1.7.0",
-            "object-keys": "^1.1.1",
-            "object.assign": "^4.1.0",
-            "string.prototype.trimend": "^1.0.1",
-            "string.prototype.trimstart": "^1.0.1"
-          }
-        },
-        "es-to-primitive": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
-          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
-          "dev": true,
-          "requires": {
-            "is-callable": "^1.1.4",
-            "is-date-object": "^1.0.1",
-            "is-symbol": "^1.0.2"
-          }
-        },
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-callable": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
-          "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==",
-          "dev": true
-        },
-        "is-regex": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
-          "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "object-inspect": {
-          "version": "1.8.0",
-          "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
-          "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
-          "dev": true
-        },
-        "object-keys": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
-          "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
-          "dev": true
-        }
-      }
-    },
-    "table": {
-      "version": "6.0.7",
-      "resolved": "https://registry.npmjs.org/table/-/table-6.0.7.tgz",
-      "integrity": "sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==",
-      "dev": true,
-      "requires": {
-        "ajv": "^7.0.2",
-        "lodash": "^4.17.20",
-        "slice-ansi": "^4.0.0",
-        "string-width": "^4.2.0"
-      },
-      "dependencies": {
-        "ajv": {
-          "version": "7.0.3",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-7.0.3.tgz",
-          "integrity": "sha512-R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "json-schema-traverse": "^1.0.0",
-            "require-from-string": "^2.0.2",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        },
-        "json-schema-traverse": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
-          "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
-          "dev": true
-        },
-        "string-width": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
-          "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^8.0.0",
-            "is-fullwidth-code-point": "^3.0.0",
-            "strip-ansi": "^6.0.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        }
-      }
-    },
-    "tapable": {
-      "version": "0.1.10",
-      "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.1.10.tgz",
-      "integrity": "sha1-KcNXB8K3DlDQdIK10gLo7URtr9Q=",
-      "dev": true
-    },
-    "tar": {
-      "version": "4.4.13",
-      "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz",
-      "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==",
-      "dev": true,
-      "optional": true,
-      "requires": {
-        "chownr": "^1.1.1",
-        "fs-minipass": "^1.2.5",
-        "minipass": "^2.8.6",
-        "minizlib": "^1.2.1",
-        "mkdirp": "^0.5.0",
-        "safe-buffer": "^5.1.2",
-        "yallist": "^3.0.3"
-      },
-      "dependencies": {
-        "fs-minipass": {
-          "version": "1.2.7",
-          "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz",
-          "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "minipass": "^2.6.0"
-          }
-        },
-        "minipass": {
-          "version": "2.9.0",
-          "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz",
-          "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "safe-buffer": "^5.1.2",
-            "yallist": "^3.0.0"
-          }
-        }
-      }
-    },
-    "telejson": {
-      "version": "3.3.0",
-      "resolved": "https://registry.npmjs.org/telejson/-/telejson-3.3.0.tgz",
-      "integrity": "sha512-er08AylQ+LEbDLp1GRezORZu5wKOHaBczF6oYJtgC3Idv10qZ8A3p6ffT+J5BzDKkV9MqBvu8HAKiIIOp6KJ2w==",
-      "dev": true,
-      "requires": {
-        "@types/is-function": "^1.0.0",
-        "global": "^4.4.0",
-        "is-function": "^1.0.1",
-        "is-regex": "^1.0.4",
-        "is-symbol": "^1.0.3",
-        "isobject": "^4.0.0",
-        "lodash": "^4.17.15",
-        "memoizerific": "^1.11.3"
-      },
-      "dependencies": {
-        "has-symbols": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
-          "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
-          "dev": true
-        },
-        "is-symbol": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
-          "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
-          "dev": true,
-          "requires": {
-            "has-symbols": "^1.0.1"
-          }
-        },
-        "isobject": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
-          "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
-          "dev": true
-        }
-      }
-    },
-    "term-size": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz",
-      "integrity": "sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==",
-      "dev": true
-    },
-    "terminal-link": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
-      "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
-      "dev": true,
-      "requires": {
-        "ansi-escapes": "^4.2.1",
-        "supports-hyperlinks": "^2.0.0"
-      }
-    },
-    "terser": {
-      "version": "4.6.3",
-      "resolved": "https://registry.npmjs.org/terser/-/terser-4.6.3.tgz",
-      "integrity": "sha512-Lw+ieAXmY69d09IIc/yqeBqXpEQIpDGZqT34ui1QWXIUpR2RjbqEkT8X7Lgex19hslSqcWM5iMN2kM11eMsESQ==",
-      "dev": true,
-      "requires": {
-        "commander": "^2.20.0",
-        "source-map": "~0.6.1",
-        "source-map-support": "~0.5.12"
-      },
-      "dependencies": {
-        "commander": {
-          "version": "2.20.3",
-          "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
-          "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
-          "dev": true
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "terser-webpack-plugin": {
-      "version": "1.4.5",
-      "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz",
-      "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==",
-      "dev": true,
-      "requires": {
-        "cacache": "^12.0.2",
-        "find-cache-dir": "^2.1.0",
-        "is-wsl": "^1.1.0",
-        "schema-utils": "^1.0.0",
-        "serialize-javascript": "^4.0.0",
-        "source-map": "^0.6.1",
-        "terser": "^4.1.2",
-        "webpack-sources": "^1.4.0",
-        "worker-farm": "^1.7.0"
-      },
-      "dependencies": {
-        "randombytes": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
-          "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "^5.1.0"
-          }
-        },
-        "schema-utils": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
-          "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
-          "dev": true,
-          "requires": {
-            "ajv": "^6.1.0",
-            "ajv-errors": "^1.0.0",
-            "ajv-keywords": "^3.1.0"
-          }
-        },
-        "serialize-javascript": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz",
-          "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==",
-          "dev": true,
-          "requires": {
-            "randombytes": "^2.1.0"
-          }
-        },
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "test-exclude": {
-      "version": "6.0.0",
-      "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
-      "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
-      "dev": true,
-      "requires": {
-        "@istanbuljs/schema": "^0.1.2",
-        "glob": "^7.1.4",
-        "minimatch": "^3.0.4"
-      },
-      "dependencies": {
-        "glob": {
-          "version": "7.1.6",
-          "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
-          "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
-          "dev": true,
-          "requires": {
-            "fs.realpath": "^1.0.0",
-            "inflight": "^1.0.4",
-            "inherits": "2",
-            "minimatch": "^3.0.4",
-            "once": "^1.3.0",
-            "path-is-absolute": "^1.0.0"
-          }
-        }
-      }
-    },
-    "text-table": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
-      "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
-      "dev": true
-    },
-    "thread-loader": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-1.2.0.tgz",
-      "integrity": "sha512-acJ0rvUk53+ly9cqYWNOpPqOgCkNpmHLPDGduNm4hDQWF7EDKEJXAopG9iEWsPPcml09wePkq3NF+ZUqnO6tbg==",
-      "dev": true,
-      "requires": {
-        "async": "^2.3.0",
-        "loader-runner": "^2.3.0",
-        "loader-utils": "^1.1.0"
-      }
-    },
-    "throat": {
-      "version": "5.0.0",
-      "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz",
-      "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==",
-      "dev": true
-    },
-    "throttle-debounce": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-2.3.0.tgz",
-      "integrity": "sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ==",
-      "dev": true
-    },
-    "through": {
-      "version": "2.3.8",
-      "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
-      "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU="
-    },
-    "through2": {
-      "version": "2.0.5",
-      "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
-      "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
-      "requires": {
-        "readable-stream": "~2.3.6",
-        "xtend": "~4.0.1"
-      }
-    },
-    "thunky": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz",
-      "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==",
-      "dev": true
-    },
-    "timers-browserify": {
-      "version": "2.0.10",
-      "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz",
-      "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==",
-      "dev": true,
-      "requires": {
-        "setimmediate": "^1.0.4"
-      }
-    },
-    "timsort": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz",
-      "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=",
-      "dev": true
-    },
-    "tiny-emitter": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.2.tgz",
-      "integrity": "sha512-2NM0auVBGft5tee/OxP4PI3d8WItkDM+fPnaRAVo6xTDI2knbz9eC5ArWGqtGlYqiH3RU5yMpdyTTO7MguC4ow==",
-      "optional": true
-    },
-    "tiny-invariant": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.0.6.tgz",
-      "integrity": "sha512-FOyLWWVjG+aC0UqG76V53yAWdXfH8bO6FNmyZOuUrzDzK8DI3/JRY25UD7+g49JWM1LXwymsKERB+DzI0dTEQA=="
-    },
-    "tiny-warning": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz",
-      "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA=="
-    },
-    "tinycolor2": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz",
-      "integrity": "sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g="
-    },
-    "tinyqueue": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz",
-      "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA=="
-    },
-    "tmp": {
-      "version": "0.0.33",
-      "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
-      "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
-      "dev": true,
-      "requires": {
-        "os-tmpdir": "~1.0.2"
-      }
-    },
-    "tmpl": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz",
-      "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=",
-      "dev": true
-    },
-    "to-arraybuffer": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
-      "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=",
-      "dev": true
-    },
-    "to-fast-properties": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
-      "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
-    },
-    "to-object-path": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
-      "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
-      "dev": true,
-      "requires": {
-        "kind-of": "^3.0.2"
-      },
-      "dependencies": {
-        "kind-of": {
-          "version": "3.2.2",
-          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
-          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
-          "dev": true,
-          "requires": {
-            "is-buffer": "^1.1.5"
-          }
-        }
-      }
-    },
-    "to-regex": {
-      "version": "3.0.2",
-      "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
-      "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
-      "dev": true,
-      "requires": {
-        "define-property": "^2.0.2",
-        "extend-shallow": "^3.0.2",
-        "regex-not": "^1.0.2",
-        "safe-regex": "^1.1.0"
-      },
-      "dependencies": {
-        "extend-shallow": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
-          "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
-          "dev": true,
-          "requires": {
-            "assign-symbols": "^1.0.0",
-            "is-extendable": "^1.0.1"
-          }
-        },
-        "is-extendable": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
-          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
-          "dev": true,
-          "requires": {
-            "is-plain-object": "^2.0.4"
-          }
-        }
-      }
-    },
-    "to-regex-range": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
-      "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
-      "dev": true,
-      "requires": {
-        "is-number": "^3.0.0",
-        "repeat-string": "^1.6.1"
-      }
-    },
-    "toggle-selection": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz",
-      "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI="
-    },
-    "toidentifier": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
-      "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==",
-      "dev": true
-    },
-    "topojson": {
-      "version": "1.6.27",
-      "resolved": "https://registry.npmjs.org/topojson/-/topojson-1.6.27.tgz",
-      "integrity": "sha1-rb4zpn4vFnPTON8SZErSD8ILQu0=",
-      "requires": {
-        "d3": "3",
-        "d3-geo-projection": "0.2",
-        "d3-queue": "2",
-        "optimist": "0.3",
-        "rw": "1",
-        "shapefile": "0.3"
-      }
-    },
-    "tough-cookie": {
-      "version": "2.4.3",
-      "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz",
-      "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==",
-      "dev": true,
-      "requires": {
-        "psl": "^1.1.24",
-        "punycode": "^1.4.1"
-      },
-      "dependencies": {
-        "punycode": {
-          "version": "1.4.1",
-          "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
-          "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
-          "dev": true
-        }
-      }
-    },
-    "tr46": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz",
-      "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=",
-      "dev": true,
-      "requires": {
-        "punycode": "^2.1.0"
-      }
-    },
-    "transform-loader": {
-      "version": "0.2.4",
-      "resolved": "https://registry.npmjs.org/transform-loader/-/transform-loader-0.2.4.tgz",
-      "integrity": "sha1-5ch4d7qW1R0/IlNoWHtG4ibRzsk=",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^1.0.2"
-      }
-    },
-    "trim": {
-      "version": "0.0.1",
-      "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz",
-      "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0="
-    },
-    "trim-trailing-lines": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.3.tgz",
-      "integrity": "sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA=="
-    },
-    "trough": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz",
-      "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA=="
-    },
-    "tryer": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz",
-      "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==",
-      "dev": true
-    },
-    "ts-dedent": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-1.1.1.tgz",
-      "integrity": "sha512-UGTRZu1evMw4uTPyYF66/KFd22XiU+jMaIuHrkIHQ2GivAXVlLV0v/vHrpOuTRf9BmpNHi/SO7Vd0rLu0y57jg==",
-      "dev": true
-    },
-    "ts-essentials": {
-      "version": "2.0.12",
-      "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-2.0.12.tgz",
-      "integrity": "sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==",
-      "dev": true
-    },
-    "ts-jest": {
-      "version": "26.4.2",
-      "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-26.4.2.tgz",
-      "integrity": "sha512-0+MynTTzzbuy5rGjzsCKjxHJk5gY906c/FSaqQ3081+G7dp2Yygfa9hVlbrtNNcztffh1mC6Rs9jb/yHpcjsoQ==",
-      "dev": true,
-      "requires": {
-        "@jest/create-cache-key-function": "^26.5.0",
-        "@types/jest": "26.x",
-        "bs-logger": "0.x",
-        "buffer-from": "1.x",
-        "fast-json-stable-stringify": "2.x",
-        "jest-util": "^26.1.0",
-        "json5": "2.x",
-        "lodash.memoize": "4.x",
-        "make-error": "1.x",
-        "mkdirp": "1.x",
-        "semver": "7.x",
-        "yargs-parser": "20.x"
-      },
-      "dependencies": {
-        "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
-        },
-        "mkdirp": {
-          "version": "1.0.4",
-          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
-          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
-          "dev": true
-        },
-        "semver": {
-          "version": "7.3.2",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
-          "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
-          "dev": true
-        },
-        "yargs-parser": {
-          "version": "20.2.3",
-          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.3.tgz",
-          "integrity": "sha512-emOFRT9WVHw03QSvN5qor9QQT9+sw5vwxfYweivSMHTcAXPefwVae2FjO7JJjj8hCE4CzPOPeFM83VwT29HCww==",
-          "dev": true
-        }
-      }
-    },
-    "ts-loader": {
-      "version": "8.0.7",
-      "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.0.7.tgz",
-      "integrity": "sha512-ooa4wxlZ9TOXaJ/iVyZlWsim79Ul4KyifSwyT2hOrbQA6NZJypsLOE198o8Ko+JV+ZHnMArvWcl4AnRqpCU/Mw==",
-      "dev": true,
-      "requires": {
-        "chalk": "^2.3.0",
-        "enhanced-resolve": "^4.0.0",
-        "loader-utils": "^1.0.2",
-        "micromatch": "^4.0.0",
-        "semver": "^6.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "enhanced-resolve": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz",
-          "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==",
-          "dev": true,
-          "requires": {
-            "graceful-fs": "^4.1.2",
-            "memory-fs": "^0.5.0",
-            "tapable": "^1.0.0"
-          }
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true
-        },
-        "memory-fs": {
-          "version": "0.5.0",
-          "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
-          "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
-          "dev": true,
-          "requires": {
-            "errno": "^0.1.3",
-            "readable-stream": "^2.0.1"
-          }
-        },
-        "micromatch": {
-          "version": "4.0.2",
-          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
-          "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
-          "dev": true,
-          "requires": {
-            "braces": "^3.0.1",
-            "picomatch": "^2.0.5"
-          }
-        },
-        "semver": {
-          "version": "6.3.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-          "dev": true
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "tapable": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
-          "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
-          "dev": true
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "ts-pnp": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
-      "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==",
-      "dev": true
-    },
-    "tsconfig-paths": {
-      "version": "3.9.0",
-      "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz",
-      "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==",
-      "dev": true,
-      "requires": {
-        "@types/json5": "^0.0.29",
-        "json5": "^1.0.1",
-        "minimist": "^1.2.0",
-        "strip-bom": "^3.0.0"
-      },
-      "dependencies": {
-        "json5": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-          "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.0"
-          }
-        }
-      }
-    },
-    "tslib": {
-      "version": "1.11.1",
-      "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz",
-      "integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==",
-      "dev": true
-    },
-    "tsutils": {
-      "version": "3.17.1",
-      "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz",
-      "integrity": "sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==",
-      "dev": true,
-      "requires": {
-        "tslib": "^1.8.1"
-      }
-    },
-    "tty-browserify": {
-      "version": "0.0.0",
-      "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
-      "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=",
-      "dev": true
-    },
-    "tunnel-agent": {
-      "version": "0.6.0",
-      "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
-      "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
-      "dev": true,
-      "requires": {
-        "safe-buffer": "^5.0.1"
-      }
-    },
-    "tweetnacl": {
-      "version": "0.14.5",
-      "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
-      "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
-      "dev": true
-    },
-    "type": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz",
-      "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==",
-      "dev": true
-    },
-    "type-check": {
-      "version": "0.3.2",
-      "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
-      "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
-      "requires": {
-        "prelude-ls": "~1.1.2"
-      }
-    },
-    "type-detect": {
-      "version": "4.0.8",
-      "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
-      "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
-      "dev": true
-    },
-    "type-fest": {
-      "version": "0.8.1",
-      "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
-      "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
-      "dev": true
-    },
-    "type-is": {
-      "version": "1.6.16",
-      "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz",
-      "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==",
-      "dev": true,
-      "requires": {
-        "media-typer": "0.3.0",
-        "mime-types": "~2.1.18"
-      }
-    },
-    "typed-styles": {
-      "version": "0.0.7",
-      "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz",
-      "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==",
-      "dev": true
-    },
-    "typedarray": {
-      "version": "0.0.6",
-      "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
-      "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
-    },
-    "typedarray-to-buffer": {
-      "version": "3.1.5",
-      "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
-      "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
-      "dev": true,
-      "requires": {
-        "is-typedarray": "^1.0.0"
-      }
-    },
-    "typescript": {
-      "version": "4.0.3",
-      "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.0.3.tgz",
-      "integrity": "sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg==",
-      "dev": true
-    },
-    "ua-parser-js": {
-      "version": "0.7.23",
-      "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.23.tgz",
-      "integrity": "sha512-m4hvMLxgGHXG3O3fQVAyyAQpZzDOvwnhOTjYz5Xmr7r/+LpkNy3vJXdVRWgd1TkAb7NGROZuSy96CrlNVjA7KA=="
-    },
-    "ultimate-pagination": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/ultimate-pagination/-/ultimate-pagination-1.0.0.tgz",
-      "integrity": "sha1-H59UZWeNdBAVnVoXLCATRl6b2F8="
-    },
-    "uncontrollable": {
-      "version": "7.1.1",
-      "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.1.1.tgz",
-      "integrity": "sha512-EcPYhot3uWTS3w00R32R2+vS8Vr53tttrvMj/yA1uYRhf8hbTG2GyugGqWDY0qIskxn0uTTojVd6wPYW9ZEf8Q==",
-      "requires": {
-        "@babel/runtime": "^7.6.3",
-        "@types/react": "^16.9.11",
-        "invariant": "^2.2.4",
-        "react-lifecycles-compat": "^3.0.4"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.11.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz",
-          "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "underscore": {
-      "version": "1.12.0",
-      "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.0.tgz",
-      "integrity": "sha512-21rQzss/XPMjolTiIezSu3JAjgagXKROtNrYFEOWK109qY1Uv2tVjPTZ1ci2HgvQDA16gHYSthQIJfB+XId/rQ=="
-    },
-    "unfetch": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.1.0.tgz",
-      "integrity": "sha512-crP/n3eAPUJxZXM9T80/yv0YhkTEx2K1D3h7D1AJM6fzsWZrxdyRuLN0JH/dkZh1LNH8LxCnBzoPFCPbb2iGpg==",
-      "dev": true
-    },
-    "unherit": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz",
-      "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==",
-      "requires": {
-        "inherits": "^2.0.0",
-        "xtend": "^4.0.0"
-      }
-    },
-    "unicode-canonical-property-names-ecmascript": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz",
-      "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==",
-      "dev": true
-    },
-    "unicode-match-property-ecmascript": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz",
-      "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==",
-      "dev": true,
-      "requires": {
-        "unicode-canonical-property-names-ecmascript": "^1.0.4",
-        "unicode-property-aliases-ecmascript": "^1.0.4"
-      }
-    },
-    "unicode-match-property-value-ecmascript": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz",
-      "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==",
-      "dev": true
-    },
-    "unicode-property-aliases-ecmascript": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz",
-      "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==",
-      "dev": true
-    },
-    "unified": {
-      "version": "6.2.0",
-      "resolved": "https://registry.npmjs.org/unified/-/unified-6.2.0.tgz",
-      "integrity": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==",
-      "requires": {
-        "bail": "^1.0.0",
-        "extend": "^3.0.0",
-        "is-plain-obj": "^1.1.0",
-        "trough": "^1.0.0",
-        "vfile": "^2.0.0",
-        "x-is-string": "^0.1.0"
-      }
-    },
-    "union-value": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
-      "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
-      "dev": true,
-      "requires": {
-        "arr-union": "^3.1.0",
-        "get-value": "^2.0.6",
-        "is-extendable": "^0.1.1",
-        "set-value": "^2.0.1"
-      }
-    },
-    "uniq": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
-      "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=",
-      "dev": true
-    },
-    "uniqs": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz",
-      "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=",
-      "dev": true
-    },
-    "unique-filename": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
-      "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
-      "dev": true,
-      "requires": {
-        "unique-slug": "^2.0.0"
-      }
-    },
-    "unique-slug": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz",
-      "integrity": "sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==",
-      "dev": true,
-      "requires": {
-        "imurmurhash": "^0.1.4"
-      }
-    },
-    "unist-builder": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz",
-      "integrity": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==",
-      "dev": true
-    },
-    "unist-util-generated": {
-      "version": "1.1.6",
-      "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz",
-      "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==",
-      "dev": true
-    },
-    "unist-util-is": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz",
-      "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="
-    },
-    "unist-util-position": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz",
-      "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==",
-      "dev": true
-    },
-    "unist-util-remove": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.0.1.tgz",
-      "integrity": "sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q==",
-      "dev": true,
-      "requires": {
-        "unist-util-is": "^4.0.0"
-      },
-      "dependencies": {
-        "unist-util-is": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.3.tgz",
-          "integrity": "sha512-bTofCFVx0iQM8Jqb1TBDVRIQW03YkD3p66JOd/aCWuqzlLyUtx1ZAGw/u+Zw+SttKvSVcvTiKYbfrtLoLefykw==",
-          "dev": true
-        }
-      }
-    },
-    "unist-util-remove-position": {
-      "version": "1.1.4",
-      "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz",
-      "integrity": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==",
-      "requires": {
-        "unist-util-visit": "^1.1.0"
-      }
-    },
-    "unist-util-stringify-position": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz",
-      "integrity": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ=="
-    },
-    "unist-util-visit": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz",
-      "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==",
-      "requires": {
-        "unist-util-visit-parents": "^2.0.0"
-      },
-      "dependencies": {
-        "unist-util-visit-parents": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz",
-          "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==",
-          "requires": {
-            "unist-util-is": "^3.0.0"
-          }
-        }
-      }
-    },
-    "unist-util-visit-parents": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-1.1.2.tgz",
-      "integrity": "sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q=="
-    },
-    "universalify": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
-      "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
-      "dev": true
-    },
-    "unpipe": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
-      "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
-      "dev": true
-    },
-    "unquote": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz",
-      "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=",
-      "dev": true
-    },
-    "unset-value": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
-      "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
-      "dev": true,
-      "requires": {
-        "has-value": "^0.3.1",
-        "isobject": "^3.0.0"
-      },
-      "dependencies": {
-        "has-value": {
-          "version": "0.3.1",
-          "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
-          "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
-          "dev": true,
-          "requires": {
-            "get-value": "^2.0.3",
-            "has-values": "^0.1.4",
-            "isobject": "^2.0.0"
-          },
-          "dependencies": {
-            "isobject": {
-              "version": "2.1.0",
-              "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
-              "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
-              "dev": true,
-              "requires": {
-                "isarray": "1.0.0"
-              }
-            }
-          }
-        },
-        "has-values": {
-          "version": "0.1.4",
-          "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
-          "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
-          "dev": true
-        }
-      }
-    },
-    "upath": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz",
-      "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==",
-      "dev": true
-    },
-    "uri-js": {
-      "version": "4.2.2",
-      "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
-      "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
-      "dev": true,
-      "requires": {
-        "punycode": "^2.1.0"
-      }
-    },
-    "urijs": {
-      "version": "1.19.4",
-      "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.4.tgz",
-      "integrity": "sha512-2YF/wdFu02Gsly/wyx+S/f5w/oCF0ihVSgK/Sn8fcY/ZYMYtqxgi03Vi3V7HqyQP8mj8xHMuNFTBIPufmPRdoA=="
-    },
-    "urix": {
-      "version": "0.1.0",
-      "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
-      "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
-      "dev": true
-    },
-    "url": {
-      "version": "0.11.0",
-      "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
-      "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
-      "dev": true,
-      "requires": {
-        "punycode": "1.3.2",
-        "querystring": "0.2.0"
-      },
-      "dependencies": {
-        "punycode": {
-          "version": "1.3.2",
-          "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
-          "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=",
-          "dev": true
-        }
-      }
-    },
-    "url-loader": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-1.1.2.tgz",
-      "integrity": "sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg==",
-      "dev": true,
-      "requires": {
-        "loader-utils": "^1.1.0",
-        "mime": "^2.0.3",
-        "schema-utils": "^1.0.0"
-      },
-      "dependencies": {
-        "mime": {
-          "version": "2.4.0",
-          "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.0.tgz",
-          "integrity": "sha512-ikBcWwyqXQSHKtciCcctu9YfPbFYZ4+gbHEmE0Q8jzcTYQg5dHCr3g2wwAZjPoJfQVXZq6KXAjpXOTf5/cjT7w==",
-          "dev": true
-        },
-        "schema-utils": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
-          "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
-          "dev": true,
-          "requires": {
-            "ajv": "^6.1.0",
-            "ajv-errors": "^1.0.0",
-            "ajv-keywords": "^3.1.0"
-          }
-        }
-      }
-    },
-    "url-parse": {
-      "version": "1.4.7",
-      "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz",
-      "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==",
-      "dev": true,
-      "requires": {
-        "querystringify": "^2.1.1",
-        "requires-port": "^1.0.0"
-      }
-    },
-    "use": {
-      "version": "3.1.1",
-      "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
-      "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
-      "dev": true
-    },
-    "use-composed-ref": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.0.0.tgz",
-      "integrity": "sha512-RVqY3NFNjZa0xrmK3bIMWNmQ01QjKPDc7DeWR3xa/N8aliVppuutOE5bZzPkQfvL+5NRWMMp0DJ99Trd974FIw==",
-      "dev": true,
-      "requires": {
-        "ts-essentials": "^2.0.3"
-      }
-    },
-    "use-isomorphic-layout-effect": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.0.0.tgz",
-      "integrity": "sha512-JMwJ7Vd86NwAt1jH7q+OIozZSIxA4ND0fx6AsOe2q1H8ooBUp5aN6DvVCqZiIaYU6JaMRJGyR0FO7EBCIsb/Rg==",
-      "dev": true
-    },
-    "use-latest": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.1.0.tgz",
-      "integrity": "sha512-gF04d0ZMV3AMB8Q7HtfkAWe+oq1tFXP6dZKwBHQF5nVXtGsh2oAYeeqma5ZzxtlpOcW8Ro/tLcfmEodjDeqtuw==",
-      "dev": true,
-      "requires": {
-        "use-isomorphic-layout-effect": "^1.0.0"
-      }
-    },
-    "use-query-params": {
-      "version": "1.1.9",
-      "resolved": "https://registry.npmjs.org/use-query-params/-/use-query-params-1.1.9.tgz",
-      "integrity": "sha512-WAJ1GrKbFWv1TBn1RQpHqAwC7yyJsLaJjBhIfefrbY/h6mFSngzBQKirJndYwCS1ry77EwhpR/tQi5iovXWvuw==",
-      "requires": {
-        "serialize-query-params": "^1.2.3"
-      }
-    },
-    "util": {
-      "version": "0.11.1",
-      "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz",
-      "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
-      "dev": true,
-      "requires": {
-        "inherits": "2.0.3"
-      }
-    },
-    "util-deprecate": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
-      "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
-    },
-    "util.promisify": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
-      "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
-      "dev": true,
-      "requires": {
-        "define-properties": "^1.1.2",
-        "object.getownpropertydescriptors": "^2.0.3"
-      }
-    },
-    "utila": {
-      "version": "0.4.0",
-      "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz",
-      "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=",
-      "dev": true
-    },
-    "utils-merge": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
-      "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
-      "dev": true
-    },
-    "uuid": {
-      "version": "3.3.2",
-      "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz",
-      "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==",
-      "dev": true
-    },
-    "v8-compile-cache": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz",
-      "integrity": "sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w==",
-      "dev": true
-    },
-    "v8-to-istanbul": {
-      "version": "7.0.0",
-      "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.0.0.tgz",
-      "integrity": "sha512-fLL2rFuQpMtm9r8hrAV2apXX/WqHJ6+IC4/eQVdMDGBUgH/YMV4Gv3duk3kjmyg6uiQWBAA9nJwue4iJUOkHeA==",
-      "dev": true,
-      "requires": {
-        "@types/istanbul-lib-coverage": "^2.0.1",
-        "convert-source-map": "^1.6.0",
-        "source-map": "^0.7.3"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.7.3",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
-          "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
-          "dev": true
-        }
-      }
-    },
-    "v8flags": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz",
-      "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==",
-      "dev": true,
-      "requires": {
-        "homedir-polyfill": "^1.0.1"
-      }
-    },
-    "validate-npm-package-license": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
-      "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
-      "dev": true,
-      "requires": {
-        "spdx-correct": "^3.0.0",
-        "spdx-expression-parse": "^3.0.0"
-      }
-    },
-    "value-equal": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz",
-      "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw=="
-    },
-    "vary": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
-      "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=",
-      "dev": true
-    },
-    "vendors": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.2.tgz",
-      "integrity": "sha512-w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ==",
-      "dev": true
-    },
-    "verror": {
-      "version": "1.10.0",
-      "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
-      "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "^1.0.0",
-        "core-util-is": "1.0.2",
-        "extsprintf": "^1.2.0"
-      }
-    },
-    "vfile": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz",
-      "integrity": "sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==",
-      "requires": {
-        "is-buffer": "^1.1.4",
-        "replace-ext": "1.0.0",
-        "unist-util-stringify-position": "^1.0.0",
-        "vfile-message": "^1.0.0"
-      }
-    },
-    "vfile-location": {
-      "version": "2.0.6",
-      "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.6.tgz",
-      "integrity": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA=="
-    },
-    "vfile-message": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz",
-      "integrity": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==",
-      "requires": {
-        "unist-util-stringify-position": "^1.1.1"
-      }
-    },
-    "viewport-mercator-project": {
-      "version": "6.2.3",
-      "resolved": "https://registry.npmjs.org/viewport-mercator-project/-/viewport-mercator-project-6.2.3.tgz",
-      "integrity": "sha512-QQb0/qCLlP4DdfbHHSWVYXpghB2wkLIiiZQnoelOB59mXKQSyZVxjreq1S+gaBJFpcGkWEcyVtre0+2y2DTl/Q==",
-      "requires": {
-        "@babel/runtime": "^7.0.0",
-        "gl-matrix": "^3.0.0"
-      }
-    },
-    "vlq": {
-      "version": "0.2.3",
-      "resolved": "https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz",
-      "integrity": "sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow=="
-    },
-    "vm-browserify": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
-      "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==",
-      "dev": true
-    },
-    "vt-pbf": {
-      "version": "3.1.1",
-      "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.1.tgz",
-      "integrity": "sha512-pHjWdrIoxurpmTcbfBWXaPwSmtPAHS105253P1qyEfSTV2HJddqjM+kIHquaT/L6lVJIk9ltTGc0IxR/G47hYA==",
-      "requires": {
-        "@mapbox/point-geometry": "0.1.0",
-        "@mapbox/vector-tile": "^1.3.1",
-        "pbf": "^3.0.5"
-      }
-    },
-    "vue-template-compiler": {
-      "version": "2.6.11",
-      "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.11.tgz",
-      "integrity": "sha512-KIq15bvQDrcCjpGjrAhx4mUlyyHfdmTaoNfeoATHLAiWB+MU3cx4lOzMwrnUh9cCxy0Lt1T11hAFY6TQgroUAA==",
-      "dev": true,
-      "requires": {
-        "de-indent": "^1.0.2",
-        "he": "^1.1.0"
-      }
-    },
-    "w3c-hr-time": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
-      "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
-      "dev": true,
-      "requires": {
-        "browser-process-hrtime": "^1.0.0"
-      }
-    },
-    "w3c-xmlserializer": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
-      "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
-      "dev": true,
-      "requires": {
-        "xml-name-validator": "^3.0.0"
-      }
-    },
-    "walker": {
-      "version": "1.0.7",
-      "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz",
-      "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=",
-      "dev": true,
-      "requires": {
-        "makeerror": "1.0.x"
-      }
-    },
-    "warning": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/warning/-/warning-3.0.0.tgz",
-      "integrity": "sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=",
-      "requires": {
-        "loose-envify": "^1.0.0"
-      }
-    },
-    "watchpack": {
-      "version": "1.7.4",
-      "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.4.tgz",
-      "integrity": "sha512-aWAgTW4MoSJzZPAicljkO1hsi1oKj/RRq/OJQh2PKI2UKL04c2Bs+MBOB+BBABHTXJpf9mCwHN7ANCvYsvY2sg==",
-      "dev": true,
-      "requires": {
-        "chokidar": "^3.4.1",
-        "graceful-fs": "^4.1.2",
-        "neo-async": "^2.5.0",
-        "watchpack-chokidar2": "^2.0.0"
-      },
-      "dependencies": {
-        "anymatch": {
-          "version": "3.1.1",
-          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
-          "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "normalize-path": "^3.0.0",
-            "picomatch": "^2.0.4"
-          }
-        },
-        "binary-extensions": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
-          "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==",
-          "dev": true,
-          "optional": true
-        },
-        "braces": {
-          "version": "3.0.2",
-          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
-          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "fill-range": "^7.0.1"
-          }
-        },
-        "chokidar": {
-          "version": "3.4.2",
-          "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.2.tgz",
-          "integrity": "sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "anymatch": "~3.1.1",
-            "braces": "~3.0.2",
-            "fsevents": "~2.1.2",
-            "glob-parent": "~5.1.0",
-            "is-binary-path": "~2.1.0",
-            "is-glob": "~4.0.1",
-            "normalize-path": "~3.0.0",
-            "readdirp": "~3.4.0"
-          }
-        },
-        "fill-range": {
-          "version": "7.0.1",
-          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
-          "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "to-regex-range": "^5.0.1"
-          }
-        },
-        "fsevents": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
-          "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
-          "dev": true,
-          "optional": true
-        },
-        "glob-parent": {
-          "version": "5.1.1",
-          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
-          "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "is-glob": "^4.0.1"
-          }
-        },
-        "is-binary-path": {
-          "version": "2.1.0",
-          "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
-          "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "binary-extensions": "^2.0.0"
-          }
-        },
-        "is-number": {
-          "version": "7.0.0",
-          "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
-          "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
-          "dev": true,
-          "optional": true
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true,
-          "optional": true
-        },
-        "readdirp": {
-          "version": "3.4.0",
-          "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz",
-          "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "picomatch": "^2.2.1"
-          }
-        },
-        "to-regex-range": {
-          "version": "5.0.1",
-          "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
-          "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "is-number": "^7.0.0"
-          }
-        }
-      }
-    },
-    "watchpack-chokidar2": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz",
-      "integrity": "sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA==",
-      "dev": true,
-      "optional": true,
-      "requires": {
-        "chokidar": "^2.1.8"
-      },
-      "dependencies": {
-        "chokidar": {
-          "version": "2.1.8",
-          "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
-          "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "anymatch": "^2.0.0",
-            "async-each": "^1.0.1",
-            "braces": "^2.3.2",
-            "fsevents": "^1.2.7",
-            "glob-parent": "^3.1.0",
-            "inherits": "^2.0.3",
-            "is-binary-path": "^1.0.0",
-            "is-glob": "^4.0.0",
-            "normalize-path": "^3.0.0",
-            "path-is-absolute": "^1.0.0",
-            "readdirp": "^2.2.1",
-            "upath": "^1.1.1"
-          }
-        },
-        "fsevents": {
-          "version": "1.2.13",
-          "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
-          "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "bindings": "^1.5.0",
-            "nan": "^2.12.1"
-          }
-        },
-        "glob-parent": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
-          "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "is-glob": "^3.1.0",
-            "path-dirname": "^1.0.0"
-          },
-          "dependencies": {
-            "is-glob": {
-              "version": "3.1.0",
-              "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
-              "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
-              "dev": true,
-              "optional": true,
-              "requires": {
-                "is-extglob": "^2.1.0"
-              }
-            }
-          }
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true,
-          "optional": true
-        },
-        "upath": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
-          "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
-          "dev": true,
-          "optional": true
-        }
-      }
-    },
-    "wbuf": {
-      "version": "1.7.3",
-      "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz",
-      "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
-      "dev": true,
-      "requires": {
-        "minimalistic-assert": "^1.0.0"
-      }
-    },
-    "web-namespaces": {
-      "version": "1.1.4",
-      "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz",
-      "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==",
-      "dev": true
-    },
-    "webidl-conversions": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
-      "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==",
-      "dev": true
-    },
-    "webpack": {
-      "version": "4.44.1",
-      "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.1.tgz",
-      "integrity": "sha512-4UOGAohv/VGUNQJstzEywwNxqX417FnjZgZJpJQegddzPmTvph37eBIRbRTfdySXzVtJXLJfbMN3mMYhM6GdmQ==",
-      "dev": true,
-      "requires": {
-        "@webassemblyjs/ast": "1.9.0",
-        "@webassemblyjs/helper-module-context": "1.9.0",
-        "@webassemblyjs/wasm-edit": "1.9.0",
-        "@webassemblyjs/wasm-parser": "1.9.0",
-        "acorn": "^6.4.1",
-        "ajv": "^6.10.2",
-        "ajv-keywords": "^3.4.1",
-        "chrome-trace-event": "^1.0.2",
-        "enhanced-resolve": "^4.3.0",
-        "eslint-scope": "^4.0.3",
-        "json-parse-better-errors": "^1.0.2",
-        "loader-runner": "^2.4.0",
-        "loader-utils": "^1.2.3",
-        "memory-fs": "^0.4.1",
-        "micromatch": "^3.1.10",
-        "mkdirp": "^0.5.3",
-        "neo-async": "^2.6.1",
-        "node-libs-browser": "^2.2.1",
-        "schema-utils": "^1.0.0",
-        "tapable": "^1.1.3",
-        "terser-webpack-plugin": "^1.4.3",
-        "watchpack": "^1.7.4",
-        "webpack-sources": "^1.4.1"
-      },
-      "dependencies": {
-        "@webassemblyjs/ast": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz",
-          "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/helper-module-context": "1.9.0",
-            "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
-            "@webassemblyjs/wast-parser": "1.9.0"
-          }
-        },
-        "@webassemblyjs/floating-point-hex-parser": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz",
-          "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==",
-          "dev": true
-        },
-        "@webassemblyjs/helper-api-error": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz",
-          "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==",
-          "dev": true
-        },
-        "@webassemblyjs/helper-buffer": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz",
-          "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==",
-          "dev": true
-        },
-        "@webassemblyjs/helper-code-frame": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz",
-          "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/wast-printer": "1.9.0"
-          }
-        },
-        "@webassemblyjs/helper-fsm": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
-          "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==",
-          "dev": true
-        },
-        "@webassemblyjs/helper-module-context": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz",
-          "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/ast": "1.9.0"
-          }
-        },
-        "@webassemblyjs/helper-wasm-bytecode": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz",
-          "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==",
-          "dev": true
-        },
-        "@webassemblyjs/helper-wasm-section": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz",
-          "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/ast": "1.9.0",
-            "@webassemblyjs/helper-buffer": "1.9.0",
-            "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
-            "@webassemblyjs/wasm-gen": "1.9.0"
-          }
-        },
-        "@webassemblyjs/ieee754": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz",
-          "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==",
-          "dev": true,
-          "requires": {
-            "@xtuc/ieee754": "^1.2.0"
-          }
-        },
-        "@webassemblyjs/leb128": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz",
-          "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==",
-          "dev": true,
-          "requires": {
-            "@xtuc/long": "4.2.2"
-          }
-        },
-        "@webassemblyjs/utf8": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz",
-          "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==",
-          "dev": true
-        },
-        "@webassemblyjs/wasm-edit": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz",
-          "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/ast": "1.9.0",
-            "@webassemblyjs/helper-buffer": "1.9.0",
-            "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
-            "@webassemblyjs/helper-wasm-section": "1.9.0",
-            "@webassemblyjs/wasm-gen": "1.9.0",
-            "@webassemblyjs/wasm-opt": "1.9.0",
-            "@webassemblyjs/wasm-parser": "1.9.0",
-            "@webassemblyjs/wast-printer": "1.9.0"
-          }
-        },
-        "@webassemblyjs/wasm-gen": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz",
-          "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/ast": "1.9.0",
-            "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
-            "@webassemblyjs/ieee754": "1.9.0",
-            "@webassemblyjs/leb128": "1.9.0",
-            "@webassemblyjs/utf8": "1.9.0"
-          }
-        },
-        "@webassemblyjs/wasm-opt": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz",
-          "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/ast": "1.9.0",
-            "@webassemblyjs/helper-buffer": "1.9.0",
-            "@webassemblyjs/wasm-gen": "1.9.0",
-            "@webassemblyjs/wasm-parser": "1.9.0"
-          }
-        },
-        "@webassemblyjs/wasm-parser": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz",
-          "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/ast": "1.9.0",
-            "@webassemblyjs/helper-api-error": "1.9.0",
-            "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
-            "@webassemblyjs/ieee754": "1.9.0",
-            "@webassemblyjs/leb128": "1.9.0",
-            "@webassemblyjs/utf8": "1.9.0"
-          }
-        },
-        "@webassemblyjs/wast-parser": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz",
-          "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/ast": "1.9.0",
-            "@webassemblyjs/floating-point-hex-parser": "1.9.0",
-            "@webassemblyjs/helper-api-error": "1.9.0",
-            "@webassemblyjs/helper-code-frame": "1.9.0",
-            "@webassemblyjs/helper-fsm": "1.9.0",
-            "@xtuc/long": "4.2.2"
-          }
-        },
-        "@webassemblyjs/wast-printer": {
-          "version": "1.9.0",
-          "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz",
-          "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==",
-          "dev": true,
-          "requires": {
-            "@webassemblyjs/ast": "1.9.0",
-            "@webassemblyjs/wast-parser": "1.9.0",
-            "@xtuc/long": "4.2.2"
-          }
-        },
-        "acorn": {
-          "version": "6.4.1",
-          "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz",
-          "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==",
-          "dev": true
-        },
-        "ajv": {
-          "version": "6.12.4",
-          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz",
-          "integrity": "sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==",
-          "dev": true,
-          "requires": {
-            "fast-deep-equal": "^3.1.1",
-            "fast-json-stable-stringify": "^2.0.0",
-            "json-schema-traverse": "^0.4.1",
-            "uri-js": "^4.2.2"
-          }
-        },
-        "ajv-keywords": {
-          "version": "3.5.2",
-          "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
-          "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
-          "dev": true
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "emojis-list": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
-          "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
-          "dev": true
-        },
-        "enhanced-resolve": {
-          "version": "4.3.0",
-          "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz",
-          "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==",
-          "dev": true,
-          "requires": {
-            "graceful-fs": "^4.1.2",
-            "memory-fs": "^0.5.0",
-            "tapable": "^1.0.0"
-          },
-          "dependencies": {
-            "memory-fs": {
-              "version": "0.5.0",
-              "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
-              "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
-              "dev": true,
-              "requires": {
-                "errno": "^0.1.3",
-                "readable-stream": "^2.0.1"
-              }
-            }
-          }
-        },
-        "eslint-scope": {
-          "version": "4.0.3",
-          "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz",
-          "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==",
-          "dev": true,
-          "requires": {
-            "esrecurse": "^4.1.0",
-            "estraverse": "^4.1.1"
-          }
-        },
-        "events": {
-          "version": "3.2.0",
-          "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz",
-          "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==",
-          "dev": true
-        },
-        "fast-deep-equal": {
-          "version": "3.1.3",
-          "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
-          "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
-          "dev": true
-        },
-        "json5": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-          "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.0"
-          }
-        },
-        "loader-runner": {
-          "version": "2.4.0",
-          "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz",
-          "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==",
-          "dev": true
-        },
-        "loader-utils": {
-          "version": "1.4.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
-          "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^3.0.0",
-            "json5": "^1.0.1"
-          }
-        },
-        "memory-fs": {
-          "version": "0.4.1",
-          "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
-          "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
-          "dev": true,
-          "requires": {
-            "errno": "^0.1.3",
-            "readable-stream": "^2.0.1"
-          }
-        },
-        "neo-async": {
-          "version": "2.6.2",
-          "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
-          "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
-          "dev": true
-        },
-        "node-libs-browser": {
-          "version": "2.2.1",
-          "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
-          "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==",
-          "dev": true,
-          "requires": {
-            "assert": "^1.1.1",
-            "browserify-zlib": "^0.2.0",
-            "buffer": "^4.3.0",
-            "console-browserify": "^1.1.0",
-            "constants-browserify": "^1.0.0",
-            "crypto-browserify": "^3.11.0",
-            "domain-browser": "^1.1.1",
-            "events": "^3.0.0",
-            "https-browserify": "^1.0.0",
-            "os-browserify": "^0.3.0",
-            "path-browserify": "0.0.1",
-            "process": "^0.11.10",
-            "punycode": "^1.2.4",
-            "querystring-es3": "^0.2.0",
-            "readable-stream": "^2.3.3",
-            "stream-browserify": "^2.0.1",
-            "stream-http": "^2.7.2",
-            "string_decoder": "^1.0.0",
-            "timers-browserify": "^2.0.4",
-            "tty-browserify": "0.0.0",
-            "url": "^0.11.0",
-            "util": "^0.11.0",
-            "vm-browserify": "^1.0.1"
-          }
-        },
-        "path-browserify": {
-          "version": "0.0.1",
-          "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
-          "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==",
-          "dev": true
-        },
-        "punycode": {
-          "version": "1.4.1",
-          "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
-          "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
-          "dev": true
-        },
-        "schema-utils": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
-          "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
-          "dev": true,
-          "requires": {
-            "ajv": "^6.1.0",
-            "ajv-errors": "^1.0.0",
-            "ajv-keywords": "^3.1.0"
-          }
-        },
-        "tapable": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
-          "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
-          "dev": true
-        },
-        "util": {
-          "version": "0.11.1",
-          "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz",
-          "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
-          "dev": true,
-          "requires": {
-            "inherits": "2.0.3"
-          }
-        },
-        "vm-browserify": {
-          "version": "1.1.2",
-          "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
-          "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==",
-          "dev": true
-        }
-      }
-    },
-    "webpack-bundle-analyzer": {
-      "version": "3.6.1",
-      "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.6.1.tgz",
-      "integrity": "sha512-Nfd8HDwfSx1xBwC+P8QMGvHAOITxNBSvu/J/mCJvOwv+G4VWkU7zir9SSenTtyCi0LnVtmsc7G5SZo1uV+bxRw==",
-      "dev": true,
-      "requires": {
-        "acorn": "^7.1.1",
-        "acorn-walk": "^7.1.1",
-        "bfj": "^6.1.1",
-        "chalk": "^2.4.1",
-        "commander": "^2.18.0",
-        "ejs": "^2.6.1",
-        "express": "^4.16.3",
-        "filesize": "^3.6.1",
-        "gzip-size": "^5.0.0",
-        "lodash": "^4.17.15",
-        "mkdirp": "^0.5.1",
-        "opener": "^1.5.1",
-        "ws": "^6.0.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          }
-        },
-        "supports-color": {
-          "version": "5.5.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-          "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "ws": {
-          "version": "6.2.1",
-          "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz",
-          "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==",
-          "dev": true,
-          "requires": {
-            "async-limiter": "~1.0.0"
-          }
-        }
-      }
-    },
-    "webpack-cli": {
-      "version": "3.3.11",
-      "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.11.tgz",
-      "integrity": "sha512-dXlfuml7xvAFwYUPsrtQAA9e4DOe58gnzSxhgrO/ZM/gyXTBowrsYeubyN4mqGhYdpXMFNyQ6emjJS9M7OBd4g==",
-      "dev": true,
-      "requires": {
-        "chalk": "2.4.2",
-        "cross-spawn": "6.0.5",
-        "enhanced-resolve": "4.1.0",
-        "findup-sync": "3.0.0",
-        "global-modules": "2.0.0",
-        "import-local": "2.0.0",
-        "interpret": "1.2.0",
-        "loader-utils": "1.2.3",
-        "supports-color": "6.1.0",
-        "v8-compile-cache": "2.0.3",
-        "yargs": "13.2.4"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
-          "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "big.js": {
-          "version": "5.2.2",
-          "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
-          "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
-          "dev": true
-        },
-        "chalk": {
-          "version": "2.4.2",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
-          "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.1",
-            "escape-string-regexp": "^1.0.5",
-            "supports-color": "^5.3.0"
-          },
-          "dependencies": {
-            "supports-color": {
-              "version": "5.5.0",
-              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
-              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
-              "dev": true,
-              "requires": {
-                "has-flag": "^3.0.0"
-              }
-            }
-          }
-        },
-        "cliui": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
-          "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
-          "dev": true,
-          "requires": {
-            "string-width": "^3.1.0",
-            "strip-ansi": "^5.2.0",
-            "wrap-ansi": "^5.1.0"
-          }
-        },
-        "emoji-regex": {
-          "version": "7.0.3",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
-          "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
-          "dev": true
-        },
-        "enhanced-resolve": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz",
-          "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==",
-          "dev": true,
-          "requires": {
-            "graceful-fs": "^4.1.2",
-            "memory-fs": "^0.4.0",
-            "tapable": "^1.0.0"
-          }
-        },
-        "find-up": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
-          "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^3.0.0"
-          }
-        },
-        "get-caller-file": {
-          "version": "2.0.5",
-          "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
-          "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
-          "dev": true
-        },
-        "interpret": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz",
-          "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
-          "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
-          "dev": true
-        },
-        "json5": {
-          "version": "1.0.1",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-          "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.0"
-          }
-        },
-        "loader-utils": {
-          "version": "1.2.3",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz",
-          "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==",
-          "dev": true,
-          "requires": {
-            "big.js": "^5.2.2",
-            "emojis-list": "^2.0.0",
-            "json5": "^1.0.1"
-          }
-        },
-        "locate-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
-          "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^3.0.0",
-            "path-exists": "^3.0.0"
-          }
-        },
-        "memory-fs": {
-          "version": "0.4.1",
-          "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
-          "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
-          "dev": true,
-          "requires": {
-            "errno": "^0.1.3",
-            "readable-stream": "^2.0.1"
-          }
-        },
-        "p-limit": {
-          "version": "2.2.2",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.2.tgz",
-          "integrity": "sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
-          "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.0.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "require-main-filename": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
-          "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
-          "dev": true
-        },
-        "string-width": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
-          "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^7.0.1",
-            "is-fullwidth-code-point": "^2.0.0",
-            "strip-ansi": "^5.1.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "5.2.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
-          "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^4.1.0"
-          }
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "tapable": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
-          "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
-          "dev": true
-        },
-        "wrap-ansi": {
-          "version": "5.1.0",
-          "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
-          "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.0",
-            "string-width": "^3.0.0",
-            "strip-ansi": "^5.0.0"
-          }
-        },
-        "y18n": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
-          "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
-          "dev": true
-        },
-        "yargs": {
-          "version": "13.2.4",
-          "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.2.4.tgz",
-          "integrity": "sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg==",
-          "dev": true,
-          "requires": {
-            "cliui": "^5.0.0",
-            "find-up": "^3.0.0",
-            "get-caller-file": "^2.0.1",
-            "os-locale": "^3.1.0",
-            "require-directory": "^2.1.1",
-            "require-main-filename": "^2.0.0",
-            "set-blocking": "^2.0.0",
-            "string-width": "^3.0.0",
-            "which-module": "^2.0.0",
-            "y18n": "^4.0.0",
-            "yargs-parser": "^13.1.0"
-          }
-        },
-        "yargs-parser": {
-          "version": "13.1.2",
-          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz",
-          "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==",
-          "dev": true,
-          "requires": {
-            "camelcase": "^5.0.0",
-            "decamelize": "^1.2.0"
-          }
-        }
-      }
-    },
-    "webpack-dev-middleware": {
-      "version": "3.7.2",
-      "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz",
-      "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==",
-      "dev": true,
-      "requires": {
-        "memory-fs": "^0.4.1",
-        "mime": "^2.4.4",
-        "mkdirp": "^0.5.1",
-        "range-parser": "^1.2.1",
-        "webpack-log": "^2.0.0"
-      },
-      "dependencies": {
-        "memory-fs": {
-          "version": "0.4.1",
-          "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
-          "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
-          "dev": true,
-          "requires": {
-            "errno": "^0.1.3",
-            "readable-stream": "^2.0.1"
-          }
-        },
-        "mime": {
-          "version": "2.4.4",
-          "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz",
-          "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==",
-          "dev": true
-        },
-        "range-parser": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
-          "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
-          "dev": true
-        }
-      }
-    },
-    "webpack-dev-server": {
-      "version": "3.11.0",
-      "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz",
-      "integrity": "sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==",
-      "dev": true,
-      "requires": {
-        "ansi-html": "0.0.7",
-        "bonjour": "^3.5.0",
-        "chokidar": "^2.1.8",
-        "compression": "^1.7.4",
-        "connect-history-api-fallback": "^1.6.0",
-        "debug": "^4.1.1",
-        "del": "^4.1.1",
-        "express": "^4.17.1",
-        "html-entities": "^1.3.1",
-        "http-proxy-middleware": "0.19.1",
-        "import-local": "^2.0.0",
-        "internal-ip": "^4.3.0",
-        "ip": "^1.1.5",
-        "is-absolute-url": "^3.0.3",
-        "killable": "^1.0.1",
-        "loglevel": "^1.6.8",
-        "opn": "^5.5.0",
-        "p-retry": "^3.0.1",
-        "portfinder": "^1.0.26",
-        "schema-utils": "^1.0.0",
-        "selfsigned": "^1.10.7",
-        "semver": "^6.3.0",
-        "serve-index": "^1.9.1",
-        "sockjs": "0.3.20",
-        "sockjs-client": "1.4.0",
-        "spdy": "^4.0.2",
-        "strip-ansi": "^3.0.1",
-        "supports-color": "^6.1.0",
-        "url": "^0.11.0",
-        "webpack-dev-middleware": "^3.7.2",
-        "webpack-log": "^2.0.0",
-        "ws": "^6.2.1",
-        "yargs": "^13.3.2"
-      },
-      "dependencies": {
-        "accepts": {
-          "version": "1.3.7",
-          "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
-          "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
-          "dev": true,
-          "requires": {
-            "mime-types": "~2.1.24",
-            "negotiator": "0.6.2"
-          }
-        },
-        "ansi-regex": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
-          "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "3.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
-          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
-          "dev": true,
-          "requires": {
-            "color-convert": "^1.9.0"
-          }
-        },
-        "array-flatten": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
-          "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
-          "dev": true
-        },
-        "body-parser": {
-          "version": "1.19.0",
-          "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
-          "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
-          "dev": true,
-          "requires": {
-            "bytes": "3.1.0",
-            "content-type": "~1.0.4",
-            "debug": "2.6.9",
-            "depd": "~1.1.2",
-            "http-errors": "1.7.2",
-            "iconv-lite": "0.4.24",
-            "on-finished": "~2.3.0",
-            "qs": "6.7.0",
-            "raw-body": "2.4.0",
-            "type-is": "~1.6.17"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              }
-            },
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-              "dev": true
-            }
-          }
-        },
-        "bytes": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
-          "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==",
-          "dev": true
-        },
-        "chokidar": {
-          "version": "2.1.8",
-          "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
-          "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
-          "dev": true,
-          "requires": {
-            "anymatch": "^2.0.0",
-            "async-each": "^1.0.1",
-            "braces": "^2.3.2",
-            "fsevents": "^1.2.7",
-            "glob-parent": "^3.1.0",
-            "inherits": "^2.0.3",
-            "is-binary-path": "^1.0.0",
-            "is-glob": "^4.0.0",
-            "normalize-path": "^3.0.0",
-            "path-is-absolute": "^1.0.0",
-            "readdirp": "^2.2.1",
-            "upath": "^1.1.1"
-          }
-        },
-        "cliui": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
-          "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
-          "dev": true,
-          "requires": {
-            "string-width": "^3.1.0",
-            "strip-ansi": "^5.2.0",
-            "wrap-ansi": "^5.1.0"
-          },
-          "dependencies": {
-            "strip-ansi": {
-              "version": "5.2.0",
-              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
-              "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
-              "dev": true,
-              "requires": {
-                "ansi-regex": "^4.1.0"
-              }
-            }
-          }
-        },
-        "content-disposition": {
-          "version": "0.5.3",
-          "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
-          "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
-          "dev": true,
-          "requires": {
-            "safe-buffer": "5.1.2"
-          }
-        },
-        "cookie": {
-          "version": "0.4.0",
-          "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
-          "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==",
-          "dev": true
-        },
-        "debug": {
-          "version": "4.1.1",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
-          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "emoji-regex": {
-          "version": "7.0.3",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
-          "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
-          "dev": true
-        },
-        "express": {
-          "version": "4.17.1",
-          "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
-          "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
-          "dev": true,
-          "requires": {
-            "accepts": "~1.3.7",
-            "array-flatten": "1.1.1",
-            "body-parser": "1.19.0",
-            "content-disposition": "0.5.3",
-            "content-type": "~1.0.4",
-            "cookie": "0.4.0",
-            "cookie-signature": "1.0.6",
-            "debug": "2.6.9",
-            "depd": "~1.1.2",
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "etag": "~1.8.1",
-            "finalhandler": "~1.1.2",
-            "fresh": "0.5.2",
-            "merge-descriptors": "1.0.1",
-            "methods": "~1.1.2",
-            "on-finished": "~2.3.0",
-            "parseurl": "~1.3.3",
-            "path-to-regexp": "0.1.7",
-            "proxy-addr": "~2.0.5",
-            "qs": "6.7.0",
-            "range-parser": "~1.2.1",
-            "safe-buffer": "5.1.2",
-            "send": "0.17.1",
-            "serve-static": "1.14.1",
-            "setprototypeof": "1.1.1",
-            "statuses": "~1.5.0",
-            "type-is": "~1.6.18",
-            "utils-merge": "1.0.1",
-            "vary": "~1.1.2"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              }
-            },
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-              "dev": true
-            }
-          }
-        },
-        "finalhandler": {
-          "version": "1.1.2",
-          "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
-          "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
-          "dev": true,
-          "requires": {
-            "debug": "2.6.9",
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "on-finished": "~2.3.0",
-            "parseurl": "~1.3.3",
-            "statuses": "~1.5.0",
-            "unpipe": "~1.0.0"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              }
-            },
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-              "dev": true
-            }
-          }
-        },
-        "find-up": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
-          "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^3.0.0"
-          }
-        },
-        "fsevents": {
-          "version": "1.2.13",
-          "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
-          "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
-          "dev": true,
-          "optional": true,
-          "requires": {
-            "bindings": "^1.5.0",
-            "nan": "^2.12.1"
-          }
-        },
-        "glob-parent": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
-          "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
-          "dev": true,
-          "requires": {
-            "is-glob": "^3.1.0",
-            "path-dirname": "^1.0.0"
-          },
-          "dependencies": {
-            "is-glob": {
-              "version": "3.1.0",
-              "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
-              "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
-              "dev": true,
-              "requires": {
-                "is-extglob": "^2.1.0"
-              }
-            }
-          }
-        },
-        "html-entities": {
-          "version": "1.3.1",
-          "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz",
-          "integrity": "sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==",
-          "dev": true
-        },
-        "http-errors": {
-          "version": "1.7.2",
-          "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
-          "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
-          "dev": true,
-          "requires": {
-            "depd": "~1.1.2",
-            "inherits": "2.0.3",
-            "setprototypeof": "1.1.1",
-            "statuses": ">= 1.5.0 < 2",
-            "toidentifier": "1.0.0"
-          }
-        },
-        "ipaddr.js": {
-          "version": "1.9.1",
-          "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
-          "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
-          "dev": true
-        },
-        "is-absolute-url": {
-          "version": "3.0.3",
-          "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz",
-          "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
-          "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
-          "dev": true
-        },
-        "locate-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
-          "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^3.0.0",
-            "path-exists": "^3.0.0"
-          }
-        },
-        "mime-db": {
-          "version": "1.44.0",
-          "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
-          "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==",
-          "dev": true
-        },
-        "mime-types": {
-          "version": "2.1.27",
-          "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
-          "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
-          "dev": true,
-          "requires": {
-            "mime-db": "1.44.0"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        },
-        "negotiator": {
-          "version": "0.6.2",
-          "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
-          "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
-          "dev": true
-        },
-        "normalize-path": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
-          "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
-          "dev": true
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
-          "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.0.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "parseurl": {
-          "version": "1.3.3",
-          "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
-          "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
-          "dev": true
-        },
-        "path-to-regexp": {
-          "version": "0.1.7",
-          "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
-          "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=",
-          "dev": true
-        },
-        "proxy-addr": {
-          "version": "2.0.6",
-          "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz",
-          "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==",
-          "dev": true,
-          "requires": {
-            "forwarded": "~0.1.2",
-            "ipaddr.js": "1.9.1"
-          }
-        },
-        "qs": {
-          "version": "6.7.0",
-          "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
-          "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
-          "dev": true
-        },
-        "range-parser": {
-          "version": "1.2.1",
-          "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
-          "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
-          "dev": true
-        },
-        "raw-body": {
-          "version": "2.4.0",
-          "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz",
-          "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==",
-          "dev": true,
-          "requires": {
-            "bytes": "3.1.0",
-            "http-errors": "1.7.2",
-            "iconv-lite": "0.4.24",
-            "unpipe": "1.0.0"
-          }
-        },
-        "schema-utils": {
-          "version": "1.0.0",
-          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
-          "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
-          "dev": true,
-          "requires": {
-            "ajv": "^6.1.0",
-            "ajv-errors": "^1.0.0",
-            "ajv-keywords": "^3.1.0"
-          }
-        },
-        "semver": {
-          "version": "6.3.0",
-          "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
-          "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
-          "dev": true
-        },
-        "send": {
-          "version": "0.17.1",
-          "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz",
-          "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==",
-          "dev": true,
-          "requires": {
-            "debug": "2.6.9",
-            "depd": "~1.1.2",
-            "destroy": "~1.0.4",
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "etag": "~1.8.1",
-            "fresh": "0.5.2",
-            "http-errors": "~1.7.2",
-            "mime": "1.6.0",
-            "ms": "2.1.1",
-            "on-finished": "~2.3.0",
-            "range-parser": "~1.2.1",
-            "statuses": "~1.5.0"
-          },
-          "dependencies": {
-            "debug": {
-              "version": "2.6.9",
-              "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-              "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-              "dev": true,
-              "requires": {
-                "ms": "2.0.0"
-              },
-              "dependencies": {
-                "ms": {
-                  "version": "2.0.0",
-                  "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-                  "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-                  "dev": true
-                }
-              }
-            },
-            "ms": {
-              "version": "2.1.1",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
-              "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
-              "dev": true
-            }
-          }
-        },
-        "serve-static": {
-          "version": "1.14.1",
-          "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz",
-          "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==",
-          "dev": true,
-          "requires": {
-            "encodeurl": "~1.0.2",
-            "escape-html": "~1.0.3",
-            "parseurl": "~1.3.3",
-            "send": "0.17.1"
-          }
-        },
-        "setprototypeof": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
-          "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==",
-          "dev": true
-        },
-        "statuses": {
-          "version": "1.5.0",
-          "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
-          "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
-          "dev": true
-        },
-        "string-width": {
-          "version": "3.1.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
-          "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^7.0.1",
-            "is-fullwidth-code-point": "^2.0.0",
-            "strip-ansi": "^5.1.0"
-          },
-          "dependencies": {
-            "strip-ansi": {
-              "version": "5.2.0",
-              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
-              "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
-              "dev": true,
-              "requires": {
-                "ansi-regex": "^4.1.0"
-              }
-            }
-          }
-        },
-        "supports-color": {
-          "version": "6.1.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
-          "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
-          "dev": true,
-          "requires": {
-            "has-flag": "^3.0.0"
-          }
-        },
-        "type-is": {
-          "version": "1.6.18",
-          "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
-          "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
-          "dev": true,
-          "requires": {
-            "media-typer": "0.3.0",
-            "mime-types": "~2.1.24"
-          }
-        },
-        "upath": {
-          "version": "1.2.0",
-          "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
-          "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
-          "dev": true
-        },
-        "wrap-ansi": {
-          "version": "5.1.0",
-          "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
-          "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "^3.2.0",
-            "string-width": "^3.0.0",
-            "strip-ansi": "^5.0.0"
-          },
-          "dependencies": {
-            "strip-ansi": {
-              "version": "5.2.0",
-              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
-              "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
-              "dev": true,
-              "requires": {
-                "ansi-regex": "^4.1.0"
-              }
-            }
-          }
-        },
-        "ws": {
-          "version": "6.2.1",
-          "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz",
-          "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==",
-          "dev": true,
-          "requires": {
-            "async-limiter": "~1.0.0"
-          }
-        },
-        "yargs": {
-          "version": "13.3.2",
-          "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz",
-          "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==",
-          "dev": true,
-          "requires": {
-            "cliui": "^5.0.0",
-            "find-up": "^3.0.0",
-            "get-caller-file": "^2.0.1",
-            "require-directory": "^2.1.1",
-            "require-main-filename": "^2.0.0",
-            "set-blocking": "^2.0.0",
-            "string-width": "^3.0.0",
-            "which-module": "^2.0.0",
-            "y18n": "^4.0.0",
-            "yargs-parser": "^13.1.2"
-          }
-        },
-        "yargs-parser": {
-          "version": "13.1.2",
-          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz",
-          "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==",
-          "dev": true,
-          "requires": {
-            "camelcase": "^5.0.0",
-            "decamelize": "^1.2.0"
-          }
-        }
-      }
-    },
-    "webpack-hot-middleware": {
-      "version": "2.25.0",
-      "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz",
-      "integrity": "sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA==",
-      "dev": true,
-      "requires": {
-        "ansi-html": "0.0.7",
-        "html-entities": "^1.2.0",
-        "querystring": "^0.2.0",
-        "strip-ansi": "^3.0.0"
-      }
-    },
-    "webpack-log": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz",
-      "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==",
-      "dev": true,
-      "requires": {
-        "ansi-colors": "^3.0.0",
-        "uuid": "^3.3.2"
-      }
-    },
-    "webpack-manifest-plugin": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz",
-      "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==",
-      "dev": true,
-      "requires": {
-        "fs-extra": "^7.0.0",
-        "lodash": ">=3.5 <5",
-        "object.entries": "^1.1.0",
-        "tapable": "^1.0.0"
-      },
-      "dependencies": {
-        "tapable": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
-          "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
-          "dev": true
-        }
-      }
-    },
-    "webpack-sources": {
-      "version": "1.4.3",
-      "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
-      "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
-      "dev": true,
-      "requires": {
-        "source-list-map": "^2.0.0",
-        "source-map": "~0.6.1"
-      },
-      "dependencies": {
-        "source-map": {
-          "version": "0.6.1",
-          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-          "dev": true
-        }
-      }
-    },
-    "webpack-virtual-modules": {
-      "version": "0.2.2",
-      "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz",
-      "integrity": "sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==",
-      "dev": true,
-      "requires": {
-        "debug": "^3.0.0"
-      },
-      "dependencies": {
-        "debug": {
-          "version": "3.2.6",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
-          "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
-          "dev": true,
-          "requires": {
-            "ms": "^2.1.1"
-          }
-        },
-        "ms": {
-          "version": "2.1.2",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
-          "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
-          "dev": true
-        }
-      }
-    },
-    "websocket-driver": {
-      "version": "0.6.5",
-      "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz",
-      "integrity": "sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=",
-      "dev": true,
-      "requires": {
-        "websocket-extensions": ">=0.1.1"
-      }
-    },
-    "websocket-extensions": {
-      "version": "0.1.4",
-      "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz",
-      "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==",
-      "dev": true
-    },
-    "wgs84": {
-      "version": "0.0.0",
-      "resolved": "https://registry.npmjs.org/wgs84/-/wgs84-0.0.0.tgz",
-      "integrity": "sha1-NP3FVZF7blfPKigu0ENxDASc3HY="
-    },
-    "whatwg-encoding": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
-      "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
-      "dev": true,
-      "requires": {
-        "iconv-lite": "0.4.24"
-      }
-    },
-    "whatwg-fetch": {
-      "version": "3.5.0",
-      "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.5.0.tgz",
-      "integrity": "sha512-jXkLtsR42xhXg7akoDKvKWE40eJeI+2KZqcp2h3NsOrRnDvtWX36KcKl30dy+hxECivdk2BVUHVNrPtoMBUx6A=="
-    },
-    "whatwg-mimetype": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
-      "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
-      "dev": true
-    },
-    "whatwg-url": {
-      "version": "6.5.0",
-      "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz",
-      "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==",
-      "dev": true,
-      "requires": {
-        "lodash.sortby": "^4.7.0",
-        "tr46": "^1.0.1",
-        "webidl-conversions": "^4.0.2"
-      }
-    },
-    "which": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
-      "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
-      "dev": true,
-      "requires": {
-        "isexe": "^2.0.0"
-      }
-    },
-    "which-module": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
-      "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
-      "dev": true
-    },
-    "wide-align": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz",
-      "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==",
-      "dev": true,
-      "requires": {
-        "string-width": "^1.0.2 || 2"
-      }
-    },
-    "widest-line": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz",
-      "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==",
-      "dev": true,
-      "requires": {
-        "string-width": "^4.0.0"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "emoji-regex": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-          "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        },
-        "string-width": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
-          "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^8.0.0",
-            "is-fullwidth-code-point": "^3.0.0",
-            "strip-ansi": "^6.0.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        }
-      }
-    },
-    "word-wrap": {
-      "version": "1.2.3",
-      "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
-      "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
-      "dev": true
-    },
-    "wordwrap": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
-      "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus="
-    },
-    "worker-farm": {
-      "version": "1.7.0",
-      "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz",
-      "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==",
-      "dev": true,
-      "requires": {
-        "errno": "~0.1.7"
-      }
-    },
-    "worker-rpc": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz",
-      "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==",
-      "dev": true,
-      "requires": {
-        "microevent.ts": "~0.1.1"
-      }
-    },
-    "wrap-ansi": {
-      "version": "6.2.0",
-      "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
-      "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
-      "dev": true,
-      "requires": {
-        "ansi-styles": "^4.0.0",
-        "string-width": "^4.1.0",
-        "strip-ansi": "^6.0.0"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "ansi-styles": {
-          "version": "4.2.1",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
-          "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
-          "dev": true,
-          "requires": {
-            "@types/color-name": "^1.1.1",
-            "color-convert": "^2.0.1"
-          }
-        },
-        "color-convert": {
-          "version": "2.0.1",
-          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-          "dev": true,
-          "requires": {
-            "color-name": "~1.1.4"
-          }
-        },
-        "color-name": {
-          "version": "1.1.4",
-          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-          "dev": true
-        },
-        "emoji-regex": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-          "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-          "dev": true
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        },
-        "string-width": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
-          "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^8.0.0",
-            "is-fullwidth-code-point": "^3.0.0",
-            "strip-ansi": "^6.0.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        }
-      }
-    },
-    "wrappy": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
-      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
-    },
-    "write-file-atomic": {
-      "version": "3.0.3",
-      "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
-      "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
-      "dev": true,
-      "requires": {
-        "imurmurhash": "^0.1.4",
-        "is-typedarray": "^1.0.0",
-        "signal-exit": "^3.0.2",
-        "typedarray-to-buffer": "^3.1.5"
-      }
-    },
-    "ws": {
-      "version": "7.4.0",
-      "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.0.tgz",
-      "integrity": "sha512-kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ==",
-      "dev": true
-    },
-    "x-is-string": {
-      "version": "0.1.0",
-      "resolved": "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz",
-      "integrity": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI="
-    },
-    "xml-name-validator": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
-      "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
-      "dev": true
-    },
-    "xmlchars": {
-      "version": "2.2.0",
-      "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
-      "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
-      "dev": true
-    },
-    "xss": {
-      "version": "1.0.8",
-      "resolved": "https://registry.npmjs.org/xss/-/xss-1.0.8.tgz",
-      "integrity": "sha512-3MgPdaXV8rfQ/pNn16Eio6VXYPTkqwa0vc7GkiymmY/DqR1SE/7VPAAVZz1GJsJFrllMYO3RHfEaiUGjab6TNw==",
-      "requires": {
-        "commander": "^2.20.3",
-        "cssfilter": "0.0.10"
-      },
-      "dependencies": {
-        "commander": {
-          "version": "2.20.3",
-          "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
-          "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
-        }
-      }
-    },
-    "xtend": {
-      "version": "4.0.1",
-      "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz",
-      "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68="
-    },
-    "y18n": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
-      "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
-      "dev": true
-    },
-    "yallist": {
-      "version": "3.1.1",
-      "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
-      "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
-      "dev": true
-    },
-    "yaml": {
-      "version": "1.8.3",
-      "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.8.3.tgz",
-      "integrity": "sha512-X/v7VDnK+sxbQ2Imq4Jt2PRUsRsP7UcpSl3Llg6+NRRqWLIvxkMFYtH1FmvwNGYRKKPa+EPA4qDBlI9WVG1UKw==",
-      "requires": {
-        "@babel/runtime": "^7.8.7"
-      },
-      "dependencies": {
-        "@babel/runtime": {
-          "version": "7.9.2",
-          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.2.tgz",
-          "integrity": "sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==",
-          "requires": {
-            "regenerator-runtime": "^0.13.4"
-          }
-        }
-      }
-    },
-    "yargs": {
-      "version": "15.4.1",
-      "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
-      "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
-      "dev": true,
-      "requires": {
-        "cliui": "^6.0.0",
-        "decamelize": "^1.2.0",
-        "find-up": "^4.1.0",
-        "get-caller-file": "^2.0.1",
-        "require-directory": "^2.1.1",
-        "require-main-filename": "^2.0.0",
-        "set-blocking": "^2.0.0",
-        "string-width": "^4.2.0",
-        "which-module": "^2.0.0",
-        "y18n": "^4.0.0",
-        "yargs-parser": "^18.1.2"
-      },
-      "dependencies": {
-        "ansi-regex": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
-          "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
-          "dev": true
-        },
-        "emoji-regex": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-          "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-          "dev": true
-        },
-        "find-up": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
-          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
-          "dev": true,
-          "requires": {
-            "locate-path": "^5.0.0",
-            "path-exists": "^4.0.0"
-          }
-        },
-        "is-fullwidth-code-point": {
-          "version": "3.0.0",
-          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-          "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-          "dev": true
-        },
-        "locate-path": {
-          "version": "5.0.0",
-          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
-          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
-          "dev": true,
-          "requires": {
-            "p-locate": "^4.1.0"
-          }
-        },
-        "p-limit": {
-          "version": "2.3.0",
-          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
-          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
-          "dev": true,
-          "requires": {
-            "p-try": "^2.0.0"
-          }
-        },
-        "p-locate": {
-          "version": "4.1.0",
-          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
-          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
-          "dev": true,
-          "requires": {
-            "p-limit": "^2.2.0"
-          }
-        },
-        "p-try": {
-          "version": "2.2.0",
-          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
-          "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
-          "dev": true
-        },
-        "path-exists": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
-          "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
-          "dev": true
-        },
-        "string-width": {
-          "version": "4.2.0",
-          "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
-          "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
-          "dev": true,
-          "requires": {
-            "emoji-regex": "^8.0.0",
-            "is-fullwidth-code-point": "^3.0.0",
-            "strip-ansi": "^6.0.0"
-          }
-        },
-        "strip-ansi": {
-          "version": "6.0.0",
-          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
-          "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
-          "dev": true,
-          "requires": {
-            "ansi-regex": "^5.0.0"
-          }
-        }
-      }
-    },
-    "yargs-parser": {
-      "version": "18.1.3",
-      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
-      "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
-      "dev": true,
-      "requires": {
-        "camelcase": "^5.0.0",
-        "decamelize": "^1.2.0"
-      }
-    },
-    "zrender": {
-      "version": "5.0.3",
-      "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.0.3.tgz",
-      "integrity": "sha512-TVcN2IMdo7je3GEq/E4CER4AGBe/n50/izILdupppyHf/hVHuiXCRliqdu8+32Z1OmGg6RfKt5qQlkX+bOtU0g==",
-      "requires": {
-        "tslib": "2.0.3"
-      },
-      "dependencies": {
-        "tslib": {
-          "version": "2.0.3",
-          "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
-          "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
-        }
-      }
-    },
-    "zwitch": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz",
-      "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==",
-      "dev": true
-    }
-  }
-}
diff --git a/superset-frontend/package.json b/superset-frontend/package.json
index 76721f6..516de81 100644
--- a/superset-frontend/package.json
+++ b/superset-frontend/package.json
@@ -1,250 +1,92 @@
 {
-  "name": "superset",
-  "version": "0.999.0dev",
-  "description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
-  "license": "Apache-2.0",
-  "directories": {
-    "doc": "docs",
-    "test": "spec"
-  },
+  "name": "@superset-ui/monorepo",
+  "version": "0.0.0",
+  "description": "Superset UI",
+  "private": true,
   "scripts": {
-    "tdd": "NODE_ENV=test jest --watch",
-    "test": "NODE_ENV=test jest",
-    "type": "tsc --noEmit",
-    "cover": "NODE_ENV=test jest --coverage",
-    "dev": "webpack --mode=development --colors --debug --watch",
-    "dev-server": "NODE_ENV=development BABEL_ENV=development node --max_old_space_size=4096 ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode=development",
-    "prod": "npm run build",
-    "build-dev": "cross-env NODE_OPTIONS=--max_old_space_size=8192 NODE_ENV=development webpack --mode=development --colors",
-    "build-instrumented": "cross-env NODE_ENV=development BABEL_ENV=instrumented webpack --mode=development --colors",
-    "build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 NODE_ENV=production BABEL_ENV=production webpack --mode=production --colors",
-    "lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx,.ts,.tsx . && npm run type",
-    "prettier-check": "prettier --check '{src,stylesheets}/**/*.{css,less,sass,scss}'",
-    "lint-fix": "eslint --fix --ignore-path=.eslintignore --ext .js,.jsx,.ts,tsx . && npm run clean-css && npm run type",
-    "clean-css": "prettier --write '{src,stylesheets}/**/*.{css,less,sass,scss}'",
-    "format": "prettier --write './{src,spec,stylesheets,cypress-base}/**/*{.js,.jsx,.ts,.tsx,.css,.less,.scss,.sass}'",
-    "prettier": "npm run format",
-    "check-translation": "prettier --check ../superset/translations/**/LC_MESSAGES/*.json",
-    "clean-translation": "prettier --write ../superset/translations/**/LC_MESSAGES/*.json",
-    "storybook": "NODE_ENV=development BABEL_ENV=development start-storybook -p 6006",
-    "build-storybook": "build-storybook"
+    "build": "node ./scripts/build.js",
+    "build:assets": "node ./scripts/copyAssets.js",
+    "babel": "yarn build --no-type",
+    "demo": "cd packages/superset-ui-demo && yarn demo:build",
+    "demo:clean": "cd packages/superset-ui-demo && yarn demo:clean",
+    "demo:build": "cd packages/superset-ui-demo && yarn demo:build",
+    "storybook": "cd packages/superset-ui-demo && yarn storybook",
+    "build-storybook": "cd packages/superset-ui-demo && yarn build-storybook",
+    "chromatic": "cd packages/superset-ui-demo && yarn chromatic",
+    "sb": "yarn storybook",
+    "clean": "yarn build --clean --no-babel --no-type",
+    "commit": "superset-commit",
+    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 10",
+    "jest": "NODE_ENV=test jest --coverage --verbose",
+    "lint": "esprint check",
+    "lint:fix": "yarn lint --fix",
+    "format": "yarn prettier",
+    "prettier": "prettier --write .",
+    "test": "yarn jest",
+    "test:watch": "yarn lint:fix && yarn jest --watch",
+    "type": "yarn build --no-babel",
+    "prepare-release": "git checkout master && git pull --rebase origin master && yarn install && yarn test",
+    "prerelease": "yarn build",
+    "release": "yarn prepare-release && lerna publish && yarn postrelease",
+    "postrelease": "lerna run deploy-demo",
+    "list-changed-packages": "lerna changed",
+    "manual-release": "lerna publish --force-publish && yarn postrelease",
+    "clean-npm-lock": "rm -rf package-lock.json ./{packages,plugins}/*/package-lock.json",
+    "ci:create-patch-version": "yarn clean-npm-lock && lerna version patch --yes",
+    "ci:create-minor-version": "yarn clean-npm-lock && lerna version minor --yes",
+    "ci:create-conventional-version": "yarn clean-npm-lock && lerna version --conventional-commits --create-release github --yes",
+    "ci:release-from-tag": "yarn clean-npm-lock && lerna publish from-package --yes",
+    "ci:release-conventional": "yarn clean-npm-lock && lerna publish --conventional-commits --create-release github --yes"
   },
-  "repository": {
-    "type": "git",
-    "url": "git+https://github.com/apache/superset.git"
-  },
+  "repository": "https://github.com/apache-superset/superset-ui.git",
   "keywords": [
-    "big",
+    "apache",
+    "superset",
     "data",
-    "exploratory",
+    "analytics",
     "analysis",
+    "visualization",
     "react",
     "d3",
-    "airbnb",
-    "nerds",
-    "database",
-    "flask"
+    "data-ui",
+    "vx"
   ],
-  "author": "Apache",
-  "bugs": {
-    "url": "https://github.com/apache/superset/issues"
-  },
-  "browserslist": [
-    "last 3 chrome versions",
-    "last 3 firefox versions",
-    "last 3 safari versions",
-    "last 3 edge versions"
-  ],
-  "engines": {
-    "node": ">= 12.18.3 < 13",
-    "npm": ">= 6.14.8"
-  },
-  "homepage": "https://superset.apache.org/",
+  "license": "Apache-2.0",
   "dependencies": {
-    "@ant-design/icons": "^4.2.2",
-    "@babel/runtime-corejs3": "^7.12.5",
-    "@data-ui/sparkline": "^0.0.84",
-    "@emotion/core": "^10.0.35",
-    "@superset-ui/chart-controls": "^0.17.5",
-    "@superset-ui/core": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-calendar": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-chord": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-country-map": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-event-flow": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-force-directed": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-heatmap": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-histogram": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-horizon": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-map-box": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-paired-t-test": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-parallel-coordinates": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-partition": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-pivot-table": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-rose": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-sankey": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-sankey-loop": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-sunburst": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-treemap": "^0.17.5",
-    "@superset-ui/legacy-plugin-chart-world-map": "^0.17.5",
-    "@superset-ui/legacy-preset-chart-big-number": "^0.17.5",
-    "@superset-ui/legacy-preset-chart-deckgl": "^0.4.1",
-    "@superset-ui/legacy-preset-chart-nvd3": "^0.17.5",
-    "@superset-ui/plugin-chart-echarts": "^0.17.6",
-    "@superset-ui/plugin-chart-table": "^0.17.6",
-    "@superset-ui/plugin-chart-word-cloud": "^0.17.5",
-    "@superset-ui/preset-chart-xy": "^0.17.5",
-    "@vx/responsive": "^0.0.195",
-    "abortcontroller-polyfill": "^1.1.9",
-    "antd": "^4.9.4",
-    "array-move": "^2.2.1",
-    "bootstrap": "^3.4.1",
-    "bootstrap-slider": "^10.0.0",
-    "brace": "^0.11.1",
-    "chrono-node": "^1.3.11",
-    "classnames": "^2.2.5",
-    "core-js": "^3.6.5",
-    "d3-array": "^1.2.4",
-    "d3-color": "^1.2.0",
-    "d3-scale": "^2.1.2",
-    "dom-to-image": "^2.6.0",
-    "fontsource-fira-code": "^3.0.5",
-    "fontsource-inter": "^3.0.5",
-    "geolib": "^2.0.24",
-    "global-box": "^1.2.0",
-    "immutable": "^4.0.0-rc.12",
-    "interweave": "^11.2.0",
-    "jquery": "^3.5.1",
-    "js-levenshtein": "^1.1.6",
-    "json-bigint": "^1.0.0",
-    "json-stringify-pretty-compact": "^2.0.0",
-    "lodash": "^4.17.20",
-    "lodash-es": "^4.17.14",
-    "match-sorter": "^6.1.0",
-    "mathjs": "^8.0.1",
-    "memoize-one": "^5.1.1",
-    "moment": "^2.26.0",
-    "mousetrap": "^1.6.1",
-    "mustache": "^2.2.1",
-    "omnibar": "^2.1.1",
-    "polished": "^3.6.5",
-    "prop-types": "^15.7.2",
-    "query-string": "^6.13.7",
-    "re-resizable": "^6.6.1",
-    "react": "^16.13.1",
-    "react-ace": "^5.10.0",
-    "react-bootstrap": "^0.33.1",
-    "react-bootstrap-slider": "2.1.5",
-    "react-checkbox-tree": "^1.5.1",
-    "react-color": "^2.13.8",
-    "react-datetime": "^3.0.4",
-    "react-dnd": "^11.1.3",
-    "react-dnd-html5-backend": "^11.1.3",
-    "react-dom": "^16.13.0",
-    "react-gravatar": "^2.6.1",
-    "react-hot-loader": "^4.12.20",
-    "react-js-cron": "^1.2.0",
-    "react-json-tree": "^0.11.2",
-    "react-jsonschema-form": "^1.2.0",
-    "react-loadable": "^5.5.0",
-    "react-markdown": "^4.3.1",
-    "react-redux": "^7.2.0",
-    "react-resize-detector": "^6.0.1-rc.1",
-    "react-router-dom": "^5.1.2",
-    "react-search-input": "^0.11.3",
-    "react-select": "^3.1.0",
-    "react-select-async-paginate": "^0.4.1",
-    "react-sortable-hoc": "^1.11.0",
-    "react-split": "^2.0.9",
-    "react-sticky": "^6.0.3",
-    "react-syntax-highlighter": "^15.3.0",
-    "react-table": "^7.2.1",
-    "react-transition-group": "^2.5.3",
-    "react-ultimate-pagination": "^1.2.0",
-    "react-virtualized": "9.19.1",
-    "react-virtualized-auto-sizer": "^1.0.2",
-    "react-virtualized-select": "^3.1.3",
-    "react-window": "^1.8.5",
-    "redux": "^4.0.5",
-    "redux-localstorage": "^0.4.1",
-    "redux-thunk": "^2.1.0",
-    "redux-undo": "^1.0.0-beta9-9-7",
-    "regenerator-runtime": "^0.13.5",
-    "rison": "^0.1.1",
-    "shortid": "^2.2.6",
-    "urijs": "^1.19.4",
-    "use-query-params": "^1.1.9"
-  },
-  "devDependencies": {
-    "@babel/cli": "^7.12.10",
-    "@babel/compat-data": "^7.12.7",
-    "@babel/core": "^7.12.10",
-    "@babel/node": "^7.12.10",
-    "@babel/plugin-proposal-class-properties": "^7.12.1",
-    "@babel/plugin-proposal-optional-chaining": "^7.12.7",
+    "@airbnb/config-babel": "^3.1.0",
+    "@airbnb/config-jest": "^3.0.2",
+    "@airbnb/config-webpack": "^3.3.1",
+    "@babel/cli": "^7.11.5",
+    "@babel/compat-data": "^7.9.6",
+    "@babel/core": "^7.8.7",
+    "@babel/node": "^7.8.7",
+    "@babel/plugin-proposal-class-properties": "^7.8.3",
+    "@babel/plugin-proposal-optional-chaining": "^7.8.3",
     "@babel/plugin-syntax-dynamic-import": "^7.8.3",
-    "@babel/plugin-transform-runtime": "^7.12.10",
-    "@babel/preset-env": "^7.12.11",
-    "@babel/preset-react": "^7.12.10",
-    "@babel/register": "^7.12.10",
-    "@emotion/babel-preset-css-prop": "^10.2.1",
-    "@hot-loader/react-dom": "^16.13.0",
-    "@istanbuljs/nyc-config-typescript": "^1.0.1",
-    "@storybook/addon-actions": "^6.0.13",
-    "@storybook/addon-essentials": "^6.0.28",
-    "@storybook/addon-knobs": "^6.0.13",
-    "@storybook/addon-links": "^5.3.19",
-    "@storybook/addons": "^5.3.19",
-    "@storybook/client-api": "^6.0.21",
-    "@storybook/preset-typescript": "^3.0.0",
-    "@storybook/react": "^6.0.28",
-    "@svgr/webpack": "^5.4.0",
-    "@testing-library/jest-dom": "^5.11.6",
-    "@testing-library/react": "^11.2.0",
-    "@types/classnames": "^2.2.10",
-    "@types/dom-to-image": "^2.6.0",
-    "@types/enzyme": "^3.10.5",
-    "@types/enzyme-adapter-react-16": "^1.0.6",
-    "@types/fetch-mock": "^7.3.2",
-    "@types/jest": "^26.0.3",
-    "@types/jquery": "^3.3.32",
-    "@types/js-levenshtein": "^1.1.0",
-    "@types/json-bigint": "^1.0.0",
-    "@types/react": "^16.9.43",
-    "@types/react-bootstrap": "^0.32.22",
-    "@types/react-dom": "^16.9.8",
-    "@types/react-gravatar": "^2.6.8",
-    "@types/react-json-tree": "^0.6.11",
-    "@types/react-loadable": "^5.5.4",
-    "@types/react-redux": "^7.1.10",
-    "@types/react-router-dom": "^5.1.5",
-    "@types/react-select": "^3.0.19",
-    "@types/react-sticky": "^6.0.3",
-    "@types/react-table": "^7.0.19",
-    "@types/react-ultimate-pagination": "^1.2.0",
-    "@types/react-virtualized": "^9.21.10",
-    "@types/react-window": "^1.8.2",
-    "@types/redux-localstorage": "^1.0.8",
-    "@types/redux-mock-store": "^1.0.2",
-    "@types/rison": "0.0.6",
-    "@types/sinon": "^9.0.5",
-    "@types/yargs": "12 - 15",
+    "@babel/plugin-transform-runtime": "^7.8.3",
+    "@babel/preset-env": "^7.8.7",
+    "@babel/preset-react": "^7.8.3",
+    "@babel/preset-typescript": "^7.12.7",
+    "@babel/register": "^7.8.6",
+    "@superset-ui/commit-config": "^0.0.9",
+    "@types/enzyme": "^3.10.3",
+    "@types/jest": "^26.0.4",
+    "@types/jsdom": "^12.2.4",
+    "@types/react": "^16.14.2",
+    "@types/react-test-renderer": "^16.9.2",
     "@typescript-eslint/eslint-plugin": "^4.1.0",
     "@typescript-eslint/parser": "^4.1.0",
     "babel-eslint": "^10.1.0",
     "babel-jest": "^26.6.3",
     "babel-loader": "^8.2.2",
     "babel-plugin-dynamic-import-node": "^2.3.3",
-    "babel-plugin-emotion": "^10.0.33",
+    "babel-plugin-emotion": "^11.0.0",
     "babel-plugin-jsx-remove-data-test-id": "^2.1.3",
     "babel-plugin-lodash": "^3.3.4",
-    "cache-loader": "^1.2.2",
-    "clean-webpack-plugin": "^3.0.0",
-    "copy-webpack-plugin": "^6.0.3",
-    "cross-env": "^5.2.0",
-    "css-loader": "^1.0.0",
-    "emotion-ts-plugin": "^0.5.3",
-    "enzyme": "^3.10.0",
-    "enzyme-adapter-react-16": "^1.14.0",
+    "babel-plugin-typescript-to-proptypes": "^1.4.2",
+    "enzyme": "^3.11.0",
+    "enzyme-adapter-react-16": "^1.15.1",
+    "enzyme-to-json": "^3.4.3",
     "eslint": "^7.17.0",
     "eslint-config-airbnb": "^18.2.1",
     "eslint-config-prettier": "^7.1.0",
@@ -260,38 +102,30 @@
     "eslint-plugin-react": "^7.22.0",
     "eslint-plugin-react-hooks": "^4.2.0",
     "eslint-plugin-testing-library": "^3.10.1",
-    "exports-loader": "^0.7.0",
-    "fetch-mock": "^7.7.3",
-    "file-loader": "^6.0.0",
-    "fork-ts-checker-webpack-plugin": "^0.4.9",
-    "ignore-styles": "^5.0.1",
-    "imports-loader": "^0.7.1",
+    "eslint-plugin-unicorn": "^25.0.1",
+    "esprint": "^0.7.0",
+    "fast-glob": "^3.2.4",
+    "fs-extra": "^9.0.0",
+    "global-box": "^1.2.0",
+    "husky": "^4.2.5",
+    "identity-obj-proxy": "^3.0.0",
     "jest": "^26.6.3",
     "jest-environment-enzyme": "^7.1.2",
     "jest-enzyme": "^7.1.2",
+    "jest-mock-console": "^1.0.0",
     "jsdom": "^16.4.0",
-    "less": "^3.12.2",
-    "less-loader": "^5.0.0",
-    "mini-css-extract-plugin": "^0.4.0",
-    "node-fetch": "^2.6.1",
-    "optimize-css-assets-webpack-plugin": "^5.0.1",
-    "po2json": "^0.4.5",
+    "lerna": "^3.15.0",
+    "lint-staged": "^10.0.3",
     "prettier": "^2.2.1",
-    "react-test-renderer": "^16.9.0",
-    "redux-mock-store": "^1.5.4",
-    "sinon": "^9.0.2",
-    "source-map-support": "^0.5.16",
-    "speed-measure-webpack-plugin": "^1.2.3",
-    "storybook-addon-jsx": "^7.3.3",
-    "storybook-addon-paddings": "^3.2.0",
-    "style-loader": "^1.0.0",
-    "terser-webpack-plugin": "^1.1.0",
-    "thread-loader": "^1.2.0",
-    "transform-loader": "^0.2.3",
+    "react": "^16.13.1",
+    "react-bootstrap": "^0.33.1",
+    "react-dom": "^16.13.1",
+    "react-loadable": "^5.5.0",
+    "react-test-renderer": "^16.13.1",
+    "rimraf": "^3.0.2",
     "ts-jest": "^26.4.2",
     "ts-loader": "^8.0.7",
-    "typescript": "^4.0.3",
-    "url-loader": "^1.0.1",
+    "typescript": "^4.1.2",
     "webpack": "^4.42.0",
     "webpack-bundle-analyzer": "^3.6.1",
     "webpack-cli": "^3.3.11",
@@ -300,21 +134,33 @@
     "webpack-sources": "^1.4.3",
     "yargs": "^15.4.1"
   },
-  "stylelint": {
-    "rules": {
-      "block-opening-brace-space-before": "always",
-      "no-missing-end-of-source-newline": "never",
-      "rule-empty-line-before": [
-        "always",
-        {
-          "except": [
-            "first-nested"
-          ],
-          "ignore": [
-            "after-comment"
-          ]
-        }
-      ]
+  "resolutions": {
+    "@types/react-bootstrap/@types/react": "^16.14.2"
+  },
+  "engines": {
+    "node": ">=10.10.0",
+    "npm": ">=6.8.0",
+    "yarn": ">=1.13.0"
+  },
+  "workspaces": [
+    "./packages/*",
+    "./plugins/*"
+  ],
+  "browserslist": [
+    "last 3 chrome versions",
+    "last 3 firefox versions",
+    "last 3 safari versions",
+    "last 3 edge versions"
+  ],
+  "husky": {
+    "hooks": {
+      "pre-commit": "lint-staged",
+      "commit-msg": "./scripts/commitlint.js HUSKY_GIT_PARAMS"
     }
+  },
+  "lint-staged": {
+    "*.{js,jsx,ts,tsx,json,md}": [
+      "prettier --write"
+    ]
   }
 }
diff --git a/superset-frontend/packages/generator-superset/.gitattributes b/superset-frontend/packages/generator-superset/.gitattributes
new file mode 100644
index 0000000..176a458
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/.gitattributes
@@ -0,0 +1 @@
+* text=auto
diff --git a/superset-frontend/packages/generator-superset/README.md b/superset-frontend/packages/generator-superset/README.md
new file mode 100644
index 0000000..7723c45
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/README.md
@@ -0,0 +1,33 @@
+# generator-superset
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/generator-superset.svg?style=flat)](https://www.npmjs.com/package/@superset-ui/generator-superset)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fgenerator-superset&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/generator-superset)
+
+> Scaffolder for Superset
+
+## Installation
+
+First, install [Yeoman](http://yeoman.io) and `generator-superset` using
+[npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)).
+
+```bash
+npm install -g yo
+npm install -g @superset-ui/generator-superset
+```
+
+## Usage
+
+Generate a new package or visualization plugin in `@superset-ui`
+
+```bash
+cd superset-ui/packages
+mkdir superset-ui-new-package
+cd superset-ui-new-package
+yo @superset-ui/superset
+```
+
+## License
+
+Apache-2.0
+
+[learn more about Yeoman](http://yeoman.io/).
diff --git a/superset-frontend/packages/generator-superset/generators/app/index.js b/superset-frontend/packages/generator-superset/generators/app/index.js
new file mode 100644
index 0000000..0bfd8cb
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/app/index.js
@@ -0,0 +1,41 @@
+/* eslint-disable sort-keys */
+
+const Generator = require('yeoman-generator');
+const chalk = require('chalk');
+const yosay = require('yosay');
+
+module.exports = class extends Generator {
+  async prompting() {
+    // Have Yeoman greet the user.
+    this.log(yosay(`Welcome to the rad ${chalk.red('generator-superset')} generator!`));
+
+    this.option('skipInstall');
+
+    this.answers = await this.prompt([
+      {
+        type: 'list',
+        name: 'subgenerator',
+        message: 'What do you want to do?',
+        choices: [
+          {
+            name: 'Create superset-ui core package',
+            value: 'package',
+          },
+          {
+            name: 'Create superset-ui chart plugin package',
+            value: 'plugin-chart',
+          },
+        ],
+      },
+    ]);
+  }
+
+  configuring() {
+    // Redirect the default 'app' generator
+    // to 'package' subgenerator
+    // until there are multiple subgenerators
+    // then this can be changed into a menu to select
+    // subgenerator.
+    this.composeWith(require.resolve(`../${this.answers.subgenerator}`));
+  }
+};
diff --git a/superset-frontend/packages/generator-superset/generators/package/index.js b/superset-frontend/packages/generator-superset/generators/package/index.js
new file mode 100644
index 0000000..defd74d
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/package/index.js
@@ -0,0 +1,56 @@
+/* eslint-disable sort-keys */
+
+const Generator = require('yeoman-generator');
+const _ = require('lodash');
+
+module.exports = class extends Generator {
+  async prompting() {
+    this.option('skipInstall');
+
+    this.answers = await this.prompt([
+      {
+        type: 'input',
+        name: 'name',
+        message: 'Package name:',
+        default: _.kebabCase(this.appname.replace('superset ui', '').trim()), // Default to current folder name
+      },
+      {
+        type: 'list',
+        name: 'language',
+        message: 'Choose language',
+        default: 'typescript',
+        choices: [
+          {
+            name: 'typescript',
+            value: 'typescript',
+            short: 't',
+          },
+          {
+            name: 'javascript',
+            value: 'javascript',
+            short: 'j',
+          },
+        ],
+      },
+    ]);
+  }
+
+  writing() {
+    this.fs.copyTpl(
+      this.templatePath('_package.json'),
+      this.destinationPath('package.json'),
+      this.answers,
+    );
+    this.fs.copyTpl(
+      this.templatePath('README.md'),
+      this.destinationPath('README.md'),
+      this.answers,
+    );
+    const ext = this.answers.language === 'typescript' ? 'ts' : 'js';
+    this.fs.copy(this.templatePath('src/index.txt'), this.destinationPath(`src/index.${ext}`));
+    this.fs.copy(
+      this.templatePath('test/index.txt'),
+      this.destinationPath(`test/index.test.${ext}`),
+    );
+  }
+};
diff --git a/superset-frontend/packages/generator-superset/generators/package/templates/README.md b/superset-frontend/packages/generator-superset/generators/package/templates/README.md
new file mode 100644
index 0000000..db31b16
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/package/templates/README.md
@@ -0,0 +1,27 @@
+## @superset-ui/<%= name %>
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/<%= name
+%>.svg?style=flat)](https://img.shields.io/npm/v/@superset-ui/<%= name %>.svg?style=flat)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-<%=
+name
+%>&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-<%=
+name %>)
+
+Description
+
+#### Example usage
+
+```js
+import { xxx } from '@superset-ui/<%= name %>';
+```
+
+#### API
+
+`fn(args)`
+
+- Do something
+
+### Development
+
+`@data-ui/build-config` is used to manage the build configuration for this package including babel
+builds, jest testing, eslint, and prettier.
diff --git a/superset-frontend/packages/generator-superset/generators/package/templates/_package.json b/superset-frontend/packages/generator-superset/generators/package/templates/_package.json
new file mode 100644
index 0000000..5948f30
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/package/templates/_package.json
@@ -0,0 +1,23 @@
+{
+  "name": "@superset-ui/<%= name %>",
+  "version": "0.0.0",
+  "description": "Superset UI <%= name %>",
+  "sideEffects": false,
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": ["esm", "lib"],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": ["superset"],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  }
+}
diff --git a/superset-frontend/packages/generator-superset/generators/package/templates/src/index.txt b/superset-frontend/packages/generator-superset/generators/package/templates/src/index.txt
new file mode 100644
index 0000000..f3d181a
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/package/templates/src/index.txt
@@ -0,0 +1,2 @@
+const x = 1;
+export default x;
diff --git a/superset-frontend/packages/generator-superset/generators/package/templates/test/index.txt b/superset-frontend/packages/generator-superset/generators/package/templates/test/index.txt
new file mode 100644
index 0000000..457263a
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/package/templates/test/index.txt
@@ -0,0 +1,5 @@
+describe('My Test', () => {
+  it('tests something', () => {
+    expect(1).toEqual(1);
+  });
+});
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/index.js b/superset-frontend/packages/generator-superset/generators/plugin-chart/index.js
new file mode 100644
index 0000000..a55fb61
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/index.js
@@ -0,0 +1,99 @@
+/* eslint-disable sort-keys */
+
+const Generator = require('yeoman-generator');
+const _ = require('lodash');
+
+module.exports = class extends Generator {
+  async prompting() {
+    this.option('skipInstall');
+
+    this.answers = await this.prompt([
+      {
+        type: 'input',
+        name: 'packageName',
+        message: 'Package name:',
+        // Default to current folder name
+        default: _.kebabCase(this.appname.replace('plugin chart', '').trim()),
+      },
+      {
+        type: 'input',
+        name: 'description',
+        message: 'Description:',
+        // Default to current folder name
+        default: _.upperFirst(_.startCase(this.appname.replace('plugin chart', '').trim())),
+      },
+      {
+        type: 'list',
+        name: 'componentType',
+        message: 'What type of React component would you like?',
+        choices: [
+          {
+            name: 'Class component',
+            value: 'class',
+          },
+          {
+            name: 'Function component (with hooks)',
+            value: 'function',
+          },
+        ],
+      },
+      {
+        type: 'list',
+        name: 'chartType',
+        message: 'What type of chart would you like?',
+        choices: [
+          {
+            name: 'Time-series chart',
+            value: 'timeseries',
+          },
+          {
+            name: 'Regular chart',
+            value: 'regular',
+          },
+        ],
+      },
+      {
+        type: 'confirm',
+        name: 'addBadges',
+        message: "Add superset-ui badges to your plugin's README.md",
+        default: true,
+      },
+    ]);
+  }
+
+  writing() {
+    // 'hello-world' -> 'HelloWorld'
+    const packageLabel = _.upperFirst(_.camelCase(this.answers.packageName));
+
+    // 'hello-world' -> 'Hello World'
+    const pluginName = _.startCase(_.camelCase(this.answers.packageName));
+
+    const params = {
+      ...this.answers,
+      packageLabel,
+      pluginName,
+    };
+
+    [
+      ['package.erb', 'package.json'],
+      ['tsconfig.json', 'tsconfig.json'],
+      ['README.erb', 'README.md'],
+      ['src/index.erb', 'src/index.ts'],
+      ['src/plugin/buildQuery.erb', 'src/plugin/buildQuery.ts'],
+      ['src/plugin/controlPanel.erb', 'src/plugin/controlPanel.ts'],
+      ['src/plugin/index.erb', 'src/plugin/index.ts'],
+      ['src/plugin/transformProps.erb', 'src/plugin/transformProps.ts'],
+      ['src/types.erb', 'src/types.ts'],
+      ['src/MyChart.erb', `src/${packageLabel}.tsx`],
+      ['test/index.erb', 'test/index.test.ts'],
+      ['test/plugin/buildQuery.test.erb', 'test/plugin/buildQuery.test.ts'],
+      ['test/plugin/transformProps.test.erb', 'test/plugin/transformProps.test.ts'],
+    ].forEach(([src, dest]) => {
+      this.fs.copyTpl(this.templatePath(src), this.destinationPath(dest), params);
+    });
+
+    ['types/external.d.ts', 'src/images/thumbnail.png'].forEach(file => {
+      this.fs.copy(this.templatePath(file), this.destinationPath(file));
+    });
+  }
+};
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/README.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/README.erb
new file mode 100644
index 0000000..0aa1d21
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/README.erb
@@ -0,0 +1,54 @@
+## @superset-ui/plugin-chart-<%= packageName %>
+
+<%if (addBadges) { %>[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-<%= packageName %>.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-<%= packageName %>)<% } %>
+
+This plugin provides <%= description %> for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to lookup this chart throughout the app.
+
+```js
+import <%= packageLabel %>ChartPlugin from '@superset-ui/plugin-chart-<%= packageName %>';
+
+new <%= packageLabel %>ChartPlugin()
+  .configure({ key: '<%= packageName %>' })
+  .register();
+```
+
+Then use it via `SuperChart`. See [storybook](https://apache-superset.github.io/superset-ui/?selectedKind=plugin-chart-<%= packageName %>) for more details.
+
+```js
+<SuperChart
+  chartType="<%= packageName %>"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
+
+### File structure generated
+
+```
+├── package.json
+├── README.md
+├── tsconfig.json
+├── src
+│   ├── <%= packageLabel %>.tsx
+│   ├── images
+│   │   └── thumbnail.png
+│   ├── index.ts
+│   ├── plugin
+│   │   ├── buildQuery.ts
+│   │   ├── controlPanel.ts
+│   │   ├── index.ts
+│   │   └── transformProps.ts
+│   └── types.ts
+├── test
+│   └── index.test.ts
+└── types
+    └── external.d.ts
+```
\ No newline at end of file
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/package.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/package.erb
new file mode 100644
index 0000000..9d7ba4d
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/package.erb
@@ -0,0 +1,39 @@
+{
+  "name": "@superset-ui/plugin-chart-<%= packageName %>",
+  "version": "0.0.0",
+  "description": "Superset Chart - <%= description %>",
+  "sideEffects": false,
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/core": "^0.15.2",
+    "@superset-ui/chart-controls": "^0.15.2"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  },
+  "devDependencies": {
+    "@types/jest": "^26.0.0",
+    "jest": "^26.0.1"
+  }
+}
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb
new file mode 100644
index 0000000..a7a6b15
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb
@@ -0,0 +1,113 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { <%if (componentType == 'class') { %>PureComponent<% } %><%if (componentType == 'function') { %>useEffect<% } %>, createRef } from 'react';
+import { styled } from '@superset-ui/core';
+import { <%= packageLabel %>Props, <%= packageLabel %>StylesProps } from './types';
+
+// The following Styles component is a <div> element, which has been styled using Emotion
+// For docs, visit https://emotion.sh/docs/styled
+
+// Theming variables are provided for your use via a ThemeProvider
+// imported from @superset-ui/core. For variables available, please visit
+// https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-core/src/style/index.ts
+
+const Styles = styled.div<<%= packageLabel %>StylesProps>`
+  background-color: ${({ theme }) => theme.colors.secondary.light2};
+  padding: ${({ theme }) => theme.gridUnit * 4}px;
+  border-radius: ${({ theme }) => theme.gridUnit * 2}px;
+  height: ${({ height }) => height};
+  width: ${({ width }) => width};
+  overflow-y: scroll;
+
+  h3 {
+    /* You can use your props to control CSS! */
+    font-size: ${({ theme, headerFontSize }) => theme.typography.sizes[headerFontSize]};
+    font-weight: ${({ theme, boldText }) => theme.typography.weights[boldText ? 'bold' : 'normal']};
+  }
+`;
+
+/**
+ * ******************* WHAT YOU CAN BUILD HERE *******************
+ *  In essence, a chart is given a few key ingredients to work with:
+ *  * Data: provided via `props.data`
+ *  * A DOM element
+ *  * FormData (your controls!) provided as props by transformProps.ts
+ */
+
+<%if (componentType == 'class') { %>export default class <%= packageLabel %> extends PureComponent<<%= packageLabel %>Props> {
+  // Often, you just want to get a hold of the DOM and go nuts.
+  // Here, you can do that with createRef, and componentDidMount.
+
+  rootElem = createRef<HTMLDivElement>();
+
+  componentDidMount() {
+    const root = this.rootElem.current as HTMLElement;
+    console.log('Plugin element', root);
+  }
+
+  render() {
+    // height and width are the height and width of the DOM element as it exists in the dashboard.
+    // There is also a `data` prop, which is, of course, your DATA 🎉
+    console.log('Approach 1 props', this.props);
+    const { data, height, width } = this.props;
+
+    console.log('Plugin props', this.props);
+
+    return (
+      <Styles
+        ref={this.rootElem}
+        boldText={this.props.boldText}
+        headerFontSize={this.props.headerFontSize}
+        height={height}
+        width={width}
+      >
+        <h3>{this.props.headerText}</h3>
+        <pre>{JSON.stringify(data, null, 2)}</pre>
+      </Styles>
+    );
+  }
+}<% } %><%if (componentType == 'function') { %>export default function <%= packageLabel %>(props: <%= packageLabel %>Props) {
+  // height and width are the height and width of the DOM element as it exists in the dashboard.
+  // There is also a `data` prop, which is, of course, your DATA 🎉
+  const { data, height, width } = props;
+
+  const rootElem = createRef<HTMLDivElement>();
+
+  // Often, you just want to get a hold of the DOM and go nuts.
+  // Here, you can do that with createRef, and the useEffect hook.
+  useEffect(() => {
+    const root = rootElem.current as HTMLElement;
+    console.log('Plugin element', root);
+  });
+
+  console.log('Plugin props', props);
+
+  return (
+    <Styles
+      ref={rootElem}
+      boldText={props.boldText}
+      headerFontSize={props.headerFontSize}
+      height={height}
+      width={width}
+    >
+      <h3>{props.headerText}</h3>
+      <pre>${JSON.stringify(data, null, 2)}</pre>
+    </Styles>
+  );
+}<% } %>
diff --git a/superset-frontend/src/filters/components/Range/images/thumbnail.png b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/images/thumbnail.png
similarity index 100%
copy from superset-frontend/src/filters/components/Range/images/thumbnail.png
copy to superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/index.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/index.erb
new file mode 100644
index 0000000..21a23ad
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/index.erb
@@ -0,0 +1,27 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+// eslint-disable-next-line import/prefer-default-export
+export { default as <%= packageLabel %>ChartPlugin } from './plugin';
+/**
+ * Note: this file exports the default export from <%= packageLabel %>.tsx.
+ * If you want to export multiple visualization modules, you will need to
+ * either add additional plugin folders (similar in structure to ./plugin)
+ * OR export multiple instances of `ChartPlugin` extensions in ./plugin/index.ts
+ * which in turn load exports from <%= packageLabel %>.tsx
+ */
diff --git a/superset-frontend/src/filters/components/Select/buildQuery.ts b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/buildQuery.erb
similarity index 100%
copy from superset-frontend/src/filters/components/Select/buildQuery.ts
copy to superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/buildQuery.erb
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/controlPanel.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/controlPanel.erb
new file mode 100644
index 0000000..ca91365
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/controlPanel.erb
@@ -0,0 +1,179 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import { ControlPanelConfig } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  /**
+   * The control panel is split into two tabs: "Query" and
+   * "Chart Options". The controls that define the inputs to
+   * the chart data request, such as columns and metrics, usually
+   * reside within "Query", while controls that affect the visual
+   * appearance or functionality of the chart are under the
+   * "Chart Options" section.
+   *
+   * There are several predefined controls that can be used.
+   * Some examples:
+   * - groupby: columns to group by (tranlated to GROUP BY statement)
+   * - series: same as groupby, but single selection.
+   * - metrics: multiple metrics (translated to aggregate expression)
+   * - metric: sane as metrics, but single selection
+   * - adhoc_filters: filters (translated to WHERE or HAVING
+   *   depending on filter type)
+   * - row_limit: maximum number of rows (translated to LIMIT statement)
+   *
+   * If a control panel has both a `series` and `groupby` control, and
+   * the user has chosen `col1` as the value for the `series` control,
+   * and `col2` and `col3` as values for the `groupby` control,
+   * the resulting query will contain three `groupby` columns. This is because
+   * we considered `series` control a `groupby` query field and its value
+   * will automatically append the `groupby` field when the query is generated.
+   *
+   * It is also possible to define custom controls by importing the
+   * necessary dependencies and overriding the default parameters, which
+   * can then be placed in the `controlSetRows` section
+   * of the `Query` section instead of a predefined control.
+   *
+   * import { validateNonEmpty } from '@superset-ui/core';
+   * import {
+   *   sharedControls,
+   *   ControlConfig,
+   *   ControlPanelConfig,
+   * } from '@superset-ui/chart-controls';
+   *
+   * const myControl: ControlConfig<'SelectControl'> = {
+   *   name: 'secondary_entity',
+   *   config: {
+   *     ...sharedControls.entity,
+   *     type: 'SelectControl',
+   *     label: t('Secondary Entity'),
+   *     mapStateToProps: state => ({
+   *       sharedControls.columnChoices(state.datasource)
+   *       .columns.filter(c => c.groupby)
+   *     })
+   *     validators: [validateNonEmpty],
+   *   },
+   * }
+   *
+   * In addition to the basic drop down control, there are several predefined
+   * control types (can be set via the `type` property) that can be used. Some
+   * commonly used examples:
+   * - SelectControl: Dropdown to select single or multiple values,
+       usually columns
+   * - MetricsControl: Dropdown to select metrics, triggering a modal
+       to define Metric details
+   * - AdhocFilterControl: Control to choose filters
+   * - CheckboxControl: A checkbox for choosing true/false values
+   * - SliderControl: A slider with min/max values
+   * - TextControl: Control for text data
+   *
+   * For more control input types, check out the `incubator-superset` repo
+   * and open this file: superset-frontend/src/explore/components/controls/index.js
+   *
+   * To ensure all controls have been filled out correctly, the following
+   * validators are provided
+   * by the `@superset-ui/core/lib/validator`:
+   * - validateNonEmpty: must have at least one value
+   * - validateInteger: must be an integer value
+   * - validateNumber: must be an intger or decimal value
+   */
+
+  // For control input types, see: superset-frontend/src/explore/components/controls/index.js
+  controlPanelSections: [
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['groupby'], ['metrics'], ['adhoc_filters'], ['row_limit', null]],
+    },
+    {
+      label: t('Hello Controls!'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'header_text',
+            config: {
+              type: 'TextControl',
+              default: 'Hello, World!',
+              renderTrigger: true,
+              // ^ this makes it apply instantaneously, without triggering a "run query" button
+              label: t('Header Text'),
+              description: t('The text you want to see in the header'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'bold_text',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Bold Text'),
+              renderTrigger: true,
+              default: true,
+              description: t('A checkbox to make the '),
+            },
+          },
+        ],
+        [
+          {
+            name: 'header_font_size',
+            config: {
+              type: 'SelectControl',
+              label: t('Font Size'),
+              default: 'xl',
+              choices: [
+                // [value, label]
+                ['xxs', 'xx-small'],
+                ['xs', 'x-small'],
+                ['s', 'small'],
+                ['m', 'medium'],
+                ['l', 'large'],
+                ['xl', 'x-large'],
+                ['xxl', 'xx-large'],
+              ],
+              renderTrigger: true,
+              description: t('The size of your header font'),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+<%if (chartType === 'timeseries') { %>  // Time series charts need to override the `druidTimeSeries` and `sqlaTimeSeries`
+  // sections to add the time grain dropdown.
+  sectionOverrides: {
+    druidTimeSeries: {
+      controlSetRows: [['granularity', 'druid_time_origin'], ['time_range']],
+    },
+    sqlaTimeSeries: {
+      controlSetRows: [['granularity_sqla', 'time_grain_sqla'], ['time_range']],
+    },
+  },<% } %>
+  controlOverrides: {
+    series: {
+      validators: [validateNonEmpty],
+      clearable: false,
+    },
+    row_limit: {
+      default: 100,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/index.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/index.erb
new file mode 100644
index 0000000..6426df8
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/index.erb
@@ -0,0 +1,51 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import buildQuery from './buildQuery';
+import controlPanel from './controlPanel';
+import transformProps from './transformProps';
+import thumbnail from '../images/thumbnail.png';
+
+export default class <%= packageLabel %>ChartPlugin extends ChartPlugin {
+  /**
+   * The constructor is used to pass relevant metadata and callbacks that get
+   * registered in respective registries that are used throughout the library
+   * and application. A more thorough description of each property is given in
+   * the respective imported file.
+   *
+   * It is worth noting that `buildQuery` and is optional, and only needed for
+   * advanced visualizations that require either post processing operations
+   * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries.
+   */
+  constructor() {
+    const metadata = new ChartMetadata({
+      description: '<%= description %>',
+      name: t('<%= pluginName %>'),
+      thumbnail,
+    });
+
+    super({
+      buildQuery,
+      controlPanel,
+      loadChart: () => import('../<%= packageLabel %>'),
+      metadata,
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb
new file mode 100644
index 0000000..3acb701
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb
@@ -0,0 +1,72 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartProps, TimeseriesDataRecord } from '@superset-ui/core';
+
+export default function transformProps(chartProps: ChartProps) {
+  /**
+   * This function is called after a successful response has been
+   * received from the chart data endpoint, and is used to transform
+   * the incoming data prior to being sent to the Visualization.
+   *
+   * The transformProps function is also quite useful to return
+   * additional/modified props to your data viz component. The formData
+   * can also be accessed from your <%= packageLabel %>.tsx file, but
+   * doing supplying custom props here is often handy for integrating third
+   * party libraries that rely on specific props.
+   *
+   * A description of properties in `chartProps`:
+   * - `height`, `width`: the height/width of the DOM element in which
+   *   the chart is located
+   * - `formData`: the chart data request payload that was sent to the
+   *   backend.
+   * - `queriesData`: the chart data response payload that was received
+   *   from the backend. Some notable properties of `queriesData`:
+   *   - `data`: an array with data, each row with an object mapping
+   *     the column/alias to its value. Example:
+   *     `[{ col1: 'abc', metric1: 10 }, { col1: 'xyz', metric1: 20 }]`
+   *   - `rowcount`: the number of rows in `data`
+   *   - `query`: the query that was issued.
+   *
+   * Please note: the transformProps function gets cached when the
+   * application loads. When making changes to the `transformProps`
+   * function during development with hot reloading, changes won't
+   * be seen until restarting the development server.
+   */
+  const { width, height, formData, queriesData } = chartProps;
+  const { boldText, headerFontSize, headerText } = formData;
+  const data = queriesData[0].data as TimeseriesDataRecord[];
+
+  console.log('formData via TransformProps.ts', formData);
+
+  return {
+    width,
+    height,
+<%if (chartType === 'timeseries') { %>
+    data: data.map(item => ({
+      ...item,
+      // convert epoch to native Date
+      // eslint-disable-next-line no-underscore-dangle
+      __timestamp: new Date(item.__timestamp as number),
+    })),<% } else { %>    data,<% } %>
+    // and now your control data, manipulated as needed, and passed through as props!
+    boldText,
+    headerFontSize,
+    headerText,
+  };
+}
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/types.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/types.erb
new file mode 100644
index 0000000..509fd11
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/types.erb
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { QueryFormData, supersetTheme, TimeseriesDataRecord } from '@superset-ui/core';
+
+export interface <%= packageLabel %>StylesProps {
+  height: number;
+  width: number;
+  headerFontSize: keyof typeof supersetTheme.typography.sizes;
+  boldText: boolean;
+}
+
+interface <%= packageLabel %>CustomizeProps {
+  headerText: string;
+}
+
+export type <%= packageLabel %>QueryFormData = QueryFormData &
+  <%= packageLabel %>StylesProps &
+  <%= packageLabel %>CustomizeProps;
+
+export type <%= packageLabel %>Props = <%= packageLabel %>StylesProps &
+  <%= packageLabel %>CustomizeProps & {
+    data: TimeseriesDataRecord[];
+    // add typing here for the props you pass in from transformProps.ts!
+  };
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/index.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/index.erb
new file mode 100644
index 0000000..9eca957
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/index.erb
@@ -0,0 +1,33 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { <%= packageLabel %>ChartPlugin } from '../src';
+
+/**
+ * The example tests in this file act as a starting point, and
+ * we encourage you to build more. These tests check that the
+ * plugin loads properly, and focus on `transformProps`
+ * to ake sure that data, controls, and props are all
+ * treated correctly (e.g. formData from plugin controls
+ * properly transform the data and/or any resulting props).
+ */
+describe('@superset-ui/plugin-chart-<%= packageName %>', () => {
+  it('exists', () => {
+    expect(<%= packageLabel %>ChartPlugin).toBeDefined();
+  });
+});
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/plugin/buildQuery.test.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/plugin/buildQuery.test.erb
new file mode 100644
index 0000000..428b85a
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/plugin/buildQuery.test.erb
@@ -0,0 +1,16 @@
+import buildQuery from '../../src/plugin/buildQuery';
+
+describe('<%= packageLabel %> buildQuery', () => {
+  const formData = {
+    datasource: '5__table',
+    granularity_sqla: 'ds',
+    series: 'foo',
+    viz_type: 'my_chart',
+  };
+
+  it('should build groupby with series in form data', () => {
+    const queryContext = buildQuery(formData);
+    const [query] = queryContext.queries;
+    expect(query.groupby).toEqual(['foo']);
+  });
+});
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb
new file mode 100644
index 0000000..9b2ee53
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb
@@ -0,0 +1,34 @@
+import { ChartProps } from '@superset-ui/core';
+import transformProps from '../../src/plugin/transformProps';
+
+describe('<%= packageLabel %> tranformProps', () => {
+  const formData = {
+    colorScheme: 'bnbColors',
+    datasource: '3__table',
+    granularity_sqla: 'ds',
+    metric: 'sum__num',
+    series: 'name',
+    boldText: true,
+    headerFontSize: 'xs',
+    headerText: 'my text',
+  };
+  const chartProps = new ChartProps({
+    formData,
+    width: 800,
+    height: 600,
+    queriesData: [{
+      data: [{ name: 'Hulk', sum__num: 1<%if (chartType === 'timeseries') { %>, __timestamp: 599616000000<% } %> }],
+    }],
+  });
+
+  it('should tranform chart props for viz', () => {
+    expect(transformProps(chartProps)).toEqual({
+      width: 800,
+      height: 600,
+      boldText: true,
+      headerFontSize: 'xs',
+      headerText: 'my text',
+      data: [{ name: 'Hulk', sum__num: 1<%if (chartType === 'timeseries') { %>, __timestamp: new Date(599616000000)<% } %> }],
+    });
+  });
+});
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/tsconfig.json b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/tsconfig.json
new file mode 100644
index 0000000..f164c58
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/types/external.d.ts b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/types/external.d.ts
new file mode 100644
index 0000000..0935dbb
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/types/external.d.ts
@@ -0,0 +1,4 @@
+declare module '*.png' {
+  const value: any;
+  export default value;
+}
diff --git a/superset-frontend/packages/generator-superset/package.json b/superset-frontend/packages/generator-superset/package.json
new file mode 100644
index 0000000..1f53498
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/package.json
@@ -0,0 +1,41 @@
+{
+  "name": "@superset-ui/generator-superset",
+  "version": "0.17.0",
+  "description": "Scaffolder for Superset",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "author": "Superset",
+  "files": [
+    "generators"
+  ],
+  "main": "generators/index.js",
+  "keywords": [
+    "yeoman",
+    "generator",
+    "superset",
+    "yeoman-generator"
+  ],
+  "devDependencies": {
+    "yeoman-assert": "^3.1.0",
+    "yeoman-test": "^2.0.0"
+  },
+  "engines": {
+    "npm": ">= 4.0.0"
+  },
+  "dependencies": {
+    "chalk": "^4.0.0",
+    "lodash": "^4.17.11",
+    "yeoman-generator": "^4.0.0",
+    "yosay": "^2.0.2"
+  },
+  "license": "Apache-2.0",
+  "publishConfig": {
+    "access": "public"
+  }
+}
diff --git a/superset-frontend/packages/generator-superset/test/app.test.js b/superset-frontend/packages/generator-superset/test/app.test.js
new file mode 100644
index 0000000..f460c8f
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/test/app.test.js
@@ -0,0 +1,35 @@
+const path = require('path');
+const assert = require('yeoman-assert');
+const helpers = require('yeoman-test');
+
+describe('generator-superset:app', () => {
+  let dir;
+
+  beforeAll(() => {
+    dir = process.cwd();
+
+    return helpers.run(path.join(__dirname, '../generators/app')).withPrompts({
+      subgenerator: 'package',
+      name: 'my-package',
+    });
+  });
+
+  /*
+   * Change working directory back to original working directory
+   * after the test has completed.
+   * yeoman tests switch to tmp directory and write files there.
+   * Usually this is fine for solo package.
+   * However, for a monorepo like this one,
+   * it made jest confuses with current directory
+   * (being in tmp directory instead of superset-ui root)
+   * and interferes with other tests in sibling packages
+   * that are run after the yeoman tests.
+   */
+  afterAll(() => {
+    process.chdir(dir);
+  });
+
+  it('creates files', () => {
+    assert.file(['package.json', 'README.md', 'src/index.ts', 'test/index.test.ts']);
+  });
+});
diff --git a/superset-frontend/packages/generator-superset/test/package.test.js b/superset-frontend/packages/generator-superset/test/package.test.js
new file mode 100644
index 0000000..d9710c4
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/test/package.test.js
@@ -0,0 +1,52 @@
+const path = require('path');
+const assert = require('yeoman-assert');
+const helpers = require('yeoman-test');
+
+describe('generator-superset:package', () => {
+  let dir;
+
+  beforeAll(() => {
+    dir = process.cwd();
+  });
+
+  /*
+   * Change working directory back to original working directory
+   * after the test has completed.
+   * yeoman tests switch to tmp directory and write files there.
+   * Usually this is fine for solo package.
+   * However, for a monorepo like this one,
+   * it made jest confuses with current directory
+   * (being in tmp directory instead of superset-ui root)
+   * and interferes with other tests in sibling packages
+   * that are run after the yeoman tests.
+   */
+  afterAll(() => {
+    process.chdir(dir);
+  });
+
+  describe('typescript', () => {
+    beforeAll(() =>
+      helpers
+        .run(path.join(__dirname, '../generators/package'))
+        .withPrompts({ name: 'my-package', language: 'typescript' })
+        .withOptions({ skipInstall: true }),
+    );
+
+    it('creates files', () => {
+      assert.file(['package.json', 'README.md', 'src/index.ts', 'test/index.test.ts']);
+    });
+  });
+
+  describe('javascript', () => {
+    beforeAll(() =>
+      helpers
+        .run(path.join(__dirname, '../generators/package'))
+        .withPrompts({ name: 'my-package', language: 'javascript' })
+        .withOptions({ skipInstall: true }),
+    );
+
+    it('creates files', () => {
+      assert.file(['package.json', 'README.md', 'src/index.js', 'test/index.test.js']);
+    });
+  });
+});
diff --git a/superset-frontend/packages/generator-superset/test/plugin-chart.test.js b/superset-frontend/packages/generator-superset/test/plugin-chart.test.js
new file mode 100644
index 0000000..54bc8d0
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/test/plugin-chart.test.js
@@ -0,0 +1,50 @@
+/* eslint-env node */
+const path = require('path');
+const assert = require('yeoman-assert');
+const helpers = require('yeoman-test');
+
+describe('generator-superset:plugin-chart', () => {
+  let dir;
+
+  beforeAll(() => {
+    dir = process.cwd();
+
+    return helpers
+      .run(path.join(__dirname, '../generators/plugin-chart'))
+      .withPrompts({ packageName: 'cold-map', description: 'Cold Map' })
+      .withOptions({ skipInstall: true });
+  });
+
+  /*
+   * Change working directory back to original working directory
+   * after the test has completed.
+   * yeoman tests switch to tmp directory and write files there.
+   * Usually this is fine for solo package.
+   * However, for a monorepo like this one,
+   * it made jest confuses with current directory
+   * (being in tmp directory instead of superset-ui root)
+   * and interferes with other tests in sibling packages
+   * that are run after the yeoman tests.
+   */
+  afterAll(() => {
+    process.chdir(dir);
+  });
+
+  it('creates files', () => {
+    assert.file([
+      'package.json',
+      'README.md',
+      'src/plugin/buildQuery.ts',
+      'src/plugin/controlPanel.ts',
+      'src/plugin/index.ts',
+      'src/plugin/transformProps.ts',
+      'src/ColdMap.tsx',
+      'src/index.ts',
+      'test/index.test.ts',
+      'test/plugin/buildQuery.test.ts',
+      'test/plugin/transformProps.test.ts',
+      'types/external.d.ts',
+      'src/images/thumbnail.png',
+    ]);
+  });
+});
diff --git a/superset-frontend/packages/generator-superset/test/tsconfig.json b/superset-frontend/packages/generator-superset/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/packages/generator-superset/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/packages/superset-frontend/.eslintignore b/superset-frontend/packages/superset-frontend/.eslintignore
new file mode 100644
index 0000000..e21e918
--- /dev/null
+++ b/superset-frontend/packages/superset-frontend/.eslintignore
@@ -0,0 +1,30 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+**/*{.,-}min.js
+**/*.sh
+coverage/**
+dist/*
+images/*
+node_modules/*
+node_modules*/*
+stylesheets/*
+vendor/*
+docs/*
+src/dashboard/deprecated/*
+src/temp/*
+**/node_modules
+*.d.ts
diff --git a/superset-frontend/packages/superset-frontend/.eslintrc.js b/superset-frontend/packages/superset-frontend/.eslintrc.js
new file mode 100644
index 0000000..c25f689
--- /dev/null
+++ b/superset-frontend/packages/superset-frontend/.eslintrc.js
@@ -0,0 +1,254 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+module.exports = {
+  extends: [
+    'airbnb',
+    'prettier',
+    'prettier/react',
+    'plugin:react-hooks/recommended',
+  ],
+  parser: 'babel-eslint',
+  parserOptions: {
+    ecmaFeatures: {
+      experimentalObjectRestSpread: true,
+    },
+  },
+  env: {
+    browser: true,
+  },
+  settings: {
+    'import/resolver': 'webpack',
+    react: {
+      version: 'detect',
+    },
+  },
+  plugins: ['prettier', 'react'],
+  overrides: [
+    {
+      files: ['cypress-base/**/*'],
+      rules: {
+        'import/no-unresolved': 0,
+        'global-require': 0,
+      },
+    },
+    {
+      files: ['webpack*.js'],
+      env: {
+        node: true,
+      },
+      settings: {
+        'import/resolver': {
+          node: {},
+        },
+      },
+    },
+    {
+      files: ['*.ts', '*.tsx'],
+      parser: '@typescript-eslint/parser',
+      extends: [
+        'airbnb',
+        'plugin:@typescript-eslint/recommended',
+        'prettier',
+        'prettier/@typescript-eslint',
+        'prettier/react',
+      ],
+      plugins: ['@typescript-eslint/eslint-plugin', 'prettier', 'react'],
+      rules: {
+        '@typescript-eslint/ban-ts-ignore': 0,
+        '@typescript-eslint/ban-ts-comment': 0, // disabled temporarily
+        '@typescript-eslint/ban-types': 0, // disabled temporarily
+        '@typescript-eslint/no-empty-function': 0,
+        '@typescript-eslint/no-explicit-any': 0,
+        '@typescript-eslint/no-use-before-define': 1, // disabled temporarily
+        '@typescript-eslint/explicit-function-return-type': 0,
+        '@typescript-eslint/explicit-module-boundary-types': 0, // re-enable up for discussion
+        camelcase: 0,
+        'class-methods-use-this': 0,
+        curly: 1,
+        'func-names': 0,
+        'guard-for-in': 0,
+        'import/no-cycle': 0, // re-enable up for discussion, might require some major refactors
+        'import/extensions': [
+          'error',
+          {
+            '.ts': 'always',
+            '.tsx': 'always',
+            '.json': 'always',
+          },
+        ],
+        'import/no-named-as-default-member': 0,
+        'import/prefer-default-export': 0,
+        indent: 0,
+        'jsx-a11y/anchor-is-valid': 1,
+        'jsx-a11y/click-events-have-key-events': 0, // re-enable up for discussion
+        'jsx-a11y/mouse-events-have-key-events': 0, // re-enable up for discussion
+        'new-cap': 0,
+        'no-bitwise': 0,
+        'no-continue': 0,
+        'no-mixed-operators': 0,
+        'no-multi-assign': 0,
+        'no-multi-spaces': 0,
+        'no-prototype-builtins': 0,
+        'no-restricted-properties': 0,
+        'no-restricted-imports': [
+          'error',
+          {
+            paths: [
+              {
+                name: 'antd',
+                message:
+                  'Please import Ant components from the index of common/components',
+              },
+            ],
+          },
+        ],
+        'no-shadow': 0, // re-enable up for discussion
+        'no-use-before-define': 0, // disabled temporarily
+        'padded-blocks': 0,
+        'prefer-arrow-callback': 0,
+        'prefer-destructuring': ['error', { object: true, array: false }],
+        'react/destructuring-assignment': 0, // re-enable up for discussion
+        'react/forbid-prop-types': 0,
+        'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.tsx'] }],
+        'react/jsx-fragments': 1,
+        'react/jsx-no-bind': 0,
+        'react/jsx-props-no-spreading': 0, // re-enable up for discussion
+        'react/no-array-index-key': 0,
+        'react/no-string-refs': 0,
+        'react/no-unescaped-entities': 0,
+        'react/no-unused-prop-types': 0,
+        'react/prop-types': 0,
+        'react/require-default-props': 0,
+        'react/sort-comp': 0, // TODO: re-enable in separate PR
+        'react/static-property-placement': 0, // re-enable up for discussion
+        'prettier/prettier': 'error',
+      },
+      settings: {
+        'import/resolver': {
+          webpack: {},
+          typescript: {},
+        },
+        react: {
+          version: 'detect',
+        },
+      },
+    },
+    {
+      files: ['*.stories.jsx', '*.stories.tsx'],
+      rules: {
+        // this is to keep eslint from complaining about storybook addons,
+        // since they are included as dev dependencies rather than direct dependencies.
+        'import/no-extraneous-dependencies': [
+          'error',
+          { devDependencies: true },
+        ],
+      },
+    },
+    {
+      files: [
+        'src/**/*.test.ts',
+        'src/**/*.test.tsx',
+        'src/**/*.test.js',
+        'src/**/*.test.jsx',
+      ],
+      plugins: ['jest', 'jest-dom', 'no-only-tests'],
+      env: {
+        'jest/globals': true,
+      },
+      extends: ['plugin:jest/recommended', 'plugin:testing-library/react'],
+      rules: {
+        'import/no-extraneous-dependencies': [
+          'error',
+          { devDependencies: true },
+        ],
+        'jest/consistent-test-it': 'error',
+        'no-only-tests/no-only-tests': 'error',
+      },
+    },
+  ],
+  rules: {
+    camelcase: [
+      'error',
+      {
+        allow: ['^UNSAFE_'],
+        properties: 'never',
+      },
+    ],
+    'class-methods-use-this': 0,
+    curly: 1,
+    'func-names': 0,
+    'guard-for-in': 0,
+    'import/extensions': [
+      'error',
+      {
+        '.js': 'always',
+        '.jsx': 'always',
+        '.ts': 'always',
+        '.tsx': 'always',
+        '.json': 'always',
+      },
+    ],
+    'import/no-cycle': 0, // re-enable up for discussion, might require some major refactors
+    'import/prefer-default-export': 0,
+    indent: 0,
+    'jsx-a11y/anchor-is-valid': 1,
+    'jsx-a11y/click-events-have-key-events': 0, // re-enable up for discussion
+    'jsx-a11y/mouse-events-have-key-events': 0, // re-enable up for discussion
+    'new-cap': 0,
+    'no-bitwise': 0,
+    'no-continue': 0,
+    'no-mixed-operators': 0,
+    'no-multi-assign': 0,
+    'no-multi-spaces': 0,
+    'no-prototype-builtins': 0,
+    'no-restricted-properties': 0,
+    'no-restricted-imports': [
+      'error',
+      {
+        paths: [
+          {
+            name: 'antd',
+            message:
+              'Please import Ant components from the index of common/components',
+          },
+        ],
+      },
+    ],
+    'no-shadow': 0, // re-enable up for discussion
+    'padded-blocks': 0,
+    'prefer-arrow-callback': 0,
+    'prefer-object-spread': 1,
+    'prefer-destructuring': ['error', { object: true, array: false }],
+    'react/destructuring-assignment': 0, // re-enable up for discussion
+    'react/forbid-prop-types': 0,
+    'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.tsx'] }],
+    'react/jsx-fragments': 1,
+    'react/jsx-no-bind': 0,
+    'react/jsx-props-no-spreading': 0, // re-enable up for discussion
+    'react/no-array-index-key': 0,
+    'react/no-string-refs': 0,
+    'react/no-unescaped-entities': 0,
+    'react/no-unused-prop-types': 0,
+    'react/prop-types': 0,
+    'react/require-default-props': 0,
+    'react/sort-comp': 0, // TODO: re-enable in separate PR
+    'react/static-property-placement': 0, // disabled temporarily
+    'prettier/prettier': 'error',
+  },
+};
diff --git a/superset-frontend/packages/superset-frontend/.gitignore b/superset-frontend/packages/superset-frontend/.gitignore
new file mode 100644
index 0000000..0598bbb
--- /dev/null
+++ b/superset-frontend/packages/superset-frontend/.gitignore
@@ -0,0 +1,4 @@
+coverage/*
+cypress/screenshots
+cypress/videos
+src/temp
diff --git a/superset-frontend/packages/superset-frontend/.nvmrc b/superset-frontend/packages/superset-frontend/.nvmrc
new file mode 100644
index 0000000..976bea8
--- /dev/null
+++ b/superset-frontend/packages/superset-frontend/.nvmrc
@@ -0,0 +1 @@
+v12.19.0
diff --git a/superset-frontend/packages/superset-frontend/babel.config.js b/superset-frontend/packages/superset-frontend/babel.config.js
new file mode 100644
index 0000000..51ae332
--- /dev/null
+++ b/superset-frontend/packages/superset-frontend/babel.config.js
@@ -0,0 +1,84 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+const packageConfig = require('./package.json');
+
+module.exports = {
+  sourceMaps: true,
+  sourceType: 'module',
+  retainLines: true,
+  presets: [
+    [
+      '@babel/preset-env',
+      {
+        useBuiltIns: 'usage',
+        corejs: 3,
+        loose: true,
+        modules: false,
+        shippedProposals: true,
+        targets: packageConfig.browserslist,
+      },
+    ],
+    [
+      '@babel/preset-react',
+      { development: process.env.BABEL_ENV === 'development' },
+    ],
+  ],
+  plugins: [
+    'lodash',
+    '@babel/plugin-syntax-dynamic-import',
+    ['@babel/plugin-proposal-class-properties', { loose: true }],
+    ['@babel/plugin-proposal-optional-chaining', { loose: true }],
+    ['@babel/plugin-proposal-private-methods', { loose: true }],
+    ['@babel/plugin-transform-runtime', { corejs: 3 }],
+    'react-hot-loader/babel',
+  ],
+  env: {
+    // Setup a different config for tests as they run in node instead of a browser
+    test: {
+      presets: [
+        [
+          '@babel/preset-env',
+          {
+            useBuiltIns: 'usage',
+            corejs: 3,
+            loose: true,
+            shippedProposals: true,
+            modules: 'commonjs',
+            targets: { node: 'current' },
+          },
+        ],
+      ],
+      plugins: ['babel-plugin-dynamic-import-node'],
+    },
+    // build instrumented code for testing code coverage with Cypress
+    instrumented: {
+      plugins: ['istanbul'],
+    },
+    production: {
+      plugins: [
+        [
+          'babel-plugin-jsx-remove-data-test-id',
+          {
+            attributes: 'data-test',
+          },
+        ],
+      ],
+    },
+  },
+};
diff --git a/superset-frontend/cypress_build.sh b/superset-frontend/packages/superset-frontend/cypress_build.sh
similarity index 100%
rename from superset-frontend/cypress_build.sh
rename to superset-frontend/packages/superset-frontend/cypress_build.sh
diff --git a/superset-frontend/images/apache-kylin.png b/superset-frontend/packages/superset-frontend/images/apache-kylin.png
similarity index 100%
rename from superset-frontend/images/apache-kylin.png
rename to superset-frontend/packages/superset-frontend/images/apache-kylin.png
Binary files differ
diff --git a/superset-frontend/images/apache_feather.png b/superset-frontend/packages/superset-frontend/images/apache_feather.png
similarity index 100%
rename from superset-frontend/images/apache_feather.png
rename to superset-frontend/packages/superset-frontend/images/apache_feather.png
Binary files differ
diff --git a/superset-frontend/images/babies.png b/superset-frontend/packages/superset-frontend/images/babies.png
similarity index 100%
rename from superset-frontend/images/babies.png
rename to superset-frontend/packages/superset-frontend/images/babies.png
Binary files differ
diff --git a/superset-frontend/images/bubble.png b/superset-frontend/packages/superset-frontend/images/bubble.png
similarity index 100%
rename from superset-frontend/images/bubble.png
rename to superset-frontend/packages/superset-frontend/images/bubble.png
Binary files differ
diff --git a/superset-frontend/images/chart-card-fallback.svg b/superset-frontend/packages/superset-frontend/images/chart-card-fallback.svg
similarity index 100%
rename from superset-frontend/images/chart-card-fallback.svg
rename to superset-frontend/packages/superset-frontend/images/chart-card-fallback.svg
diff --git a/superset-frontend/images/clickhouse.png b/superset-frontend/packages/superset-frontend/images/clickhouse.png
similarity index 100%
rename from superset-frontend/images/clickhouse.png
rename to superset-frontend/packages/superset-frontend/images/clickhouse.png
Binary files differ
diff --git a/superset-frontend/images/cloud.png b/superset-frontend/packages/superset-frontend/images/cloud.png
similarity index 100%
rename from superset-frontend/images/cloud.png
rename to superset-frontend/packages/superset-frontend/images/cloud.png
Binary files differ
diff --git a/superset-frontend/images/create_role.png b/superset-frontend/packages/superset-frontend/images/create_role.png
similarity index 100%
rename from superset-frontend/images/create_role.png
rename to superset-frontend/packages/superset-frontend/images/create_role.png
Binary files differ
diff --git a/superset-frontend/images/dash.png b/superset-frontend/packages/superset-frontend/images/dash.png
similarity index 100%
rename from superset-frontend/images/dash.png
rename to superset-frontend/packages/superset-frontend/images/dash.png
Binary files differ
diff --git a/superset-frontend/images/dashboard-card-fallback.svg b/superset-frontend/packages/superset-frontend/images/dashboard-card-fallback.svg
similarity index 100%
rename from superset-frontend/images/dashboard-card-fallback.svg
rename to superset-frontend/packages/superset-frontend/images/dashboard-card-fallback.svg
diff --git a/superset-frontend/images/db2.png b/superset-frontend/packages/superset-frontend/images/db2.png
similarity index 100%
rename from superset-frontend/images/db2.png
rename to superset-frontend/packages/superset-frontend/images/db2.png
Binary files differ
diff --git a/superset-frontend/images/druid.png b/superset-frontend/packages/superset-frontend/images/druid.png
similarity index 100%
rename from superset-frontend/images/druid.png
rename to superset-frontend/packages/superset-frontend/images/druid.png
Binary files differ
diff --git a/superset-frontend/images/druid_agg.png b/superset-frontend/packages/superset-frontend/images/druid_agg.png
similarity index 100%
rename from superset-frontend/images/druid_agg.png
rename to superset-frontend/packages/superset-frontend/images/druid_agg.png
Binary files differ
diff --git a/superset-frontend/images/empty-charts.svg b/superset-frontend/packages/superset-frontend/images/empty-charts.svg
similarity index 100%
rename from superset-frontend/images/empty-charts.svg
rename to superset-frontend/packages/superset-frontend/images/empty-charts.svg
diff --git a/superset-frontend/images/empty-dashboard.svg b/superset-frontend/packages/superset-frontend/images/empty-dashboard.svg
similarity index 100%
rename from superset-frontend/images/empty-dashboard.svg
rename to superset-frontend/packages/superset-frontend/images/empty-dashboard.svg
diff --git a/superset-frontend/images/empty-queries.svg b/superset-frontend/packages/superset-frontend/images/empty-queries.svg
similarity index 100%
rename from superset-frontend/images/empty-queries.svg
rename to superset-frontend/packages/superset-frontend/images/empty-queries.svg
diff --git a/superset-frontend/images/empty-query.svg b/superset-frontend/packages/superset-frontend/images/empty-query.svg
similarity index 100%
rename from superset-frontend/images/empty-query.svg
rename to superset-frontend/packages/superset-frontend/images/empty-query.svg
diff --git a/superset-frontend/images/empty.svg b/superset-frontend/packages/superset-frontend/images/empty.svg
similarity index 100%
rename from superset-frontend/images/empty.svg
rename to superset-frontend/packages/superset-frontend/images/empty.svg
diff --git a/superset-frontend/images/exasol.png b/superset-frontend/packages/superset-frontend/images/exasol.png
similarity index 100%
rename from superset-frontend/images/exasol.png
rename to superset-frontend/packages/superset-frontend/images/exasol.png
Binary files differ
diff --git a/superset-frontend/images/favicon.png b/superset-frontend/packages/superset-frontend/images/favicon.png
similarity index 100%
rename from superset-frontend/images/favicon.png
rename to superset-frontend/packages/superset-frontend/images/favicon.png
Binary files differ
diff --git a/superset-frontend/images/firebird.png b/superset-frontend/packages/superset-frontend/images/firebird.png
similarity index 100%
rename from superset-frontend/images/firebird.png
rename to superset-frontend/packages/superset-frontend/images/firebird.png
Binary files differ
diff --git a/superset-frontend/images/google-biquery.png b/superset-frontend/packages/superset-frontend/images/google-biquery.png
similarity index 100%
rename from superset-frontend/images/google-biquery.png
rename to superset-frontend/packages/superset-frontend/images/google-biquery.png
Binary files differ
diff --git a/superset-frontend/images/greenplum.png b/superset-frontend/packages/superset-frontend/images/greenplum.png
similarity index 100%
rename from superset-frontend/images/greenplum.png
rename to superset-frontend/packages/superset-frontend/images/greenplum.png
Binary files differ
diff --git a/superset-frontend/images/hologres.png b/superset-frontend/packages/superset-frontend/images/hologres.png
similarity index 100%
rename from superset-frontend/images/hologres.png
rename to superset-frontend/packages/superset-frontend/images/hologres.png
Binary files differ
diff --git a/superset-frontend/images/icons/alert.svg b/superset-frontend/packages/superset-frontend/images/icons/alert.svg
similarity index 100%
rename from superset-frontend/images/icons/alert.svg
rename to superset-frontend/packages/superset-frontend/images/icons/alert.svg
diff --git a/superset-frontend/images/icons/alert_solid.svg b/superset-frontend/packages/superset-frontend/images/icons/alert_solid.svg
similarity index 100%
rename from superset-frontend/images/icons/alert_solid.svg
rename to superset-frontend/packages/superset-frontend/images/icons/alert_solid.svg
diff --git a/superset-frontend/images/icons/alert_solid_small.svg b/superset-frontend/packages/superset-frontend/images/icons/alert_solid_small.svg
similarity index 100%
rename from superset-frontend/images/icons/alert_solid_small.svg
rename to superset-frontend/packages/superset-frontend/images/icons/alert_solid_small.svg
diff --git a/superset-frontend/images/icons/binoculars.svg b/superset-frontend/packages/superset-frontend/images/icons/binoculars.svg
similarity index 100%
rename from superset-frontend/images/icons/binoculars.svg
rename to superset-frontend/packages/superset-frontend/images/icons/binoculars.svg
diff --git a/superset-frontend/images/icons/bolt.svg b/superset-frontend/packages/superset-frontend/images/icons/bolt.svg
similarity index 100%
rename from superset-frontend/images/icons/bolt.svg
rename to superset-frontend/packages/superset-frontend/images/icons/bolt.svg
diff --git a/superset-frontend/images/icons/bolt_small.svg b/superset-frontend/packages/superset-frontend/images/icons/bolt_small.svg
similarity index 100%
rename from superset-frontend/images/icons/bolt_small.svg
rename to superset-frontend/packages/superset-frontend/images/icons/bolt_small.svg
diff --git a/superset-frontend/images/icons/bolt_small_run.svg b/superset-frontend/packages/superset-frontend/images/icons/bolt_small_run.svg
similarity index 100%
rename from superset-frontend/images/icons/bolt_small_run.svg
rename to superset-frontend/packages/superset-frontend/images/icons/bolt_small_run.svg
diff --git a/superset-frontend/images/icons/calendar.svg b/superset-frontend/packages/superset-frontend/images/icons/calendar.svg
similarity index 100%
rename from superset-frontend/images/icons/calendar.svg
rename to superset-frontend/packages/superset-frontend/images/icons/calendar.svg
diff --git a/superset-frontend/images/icons/cancel-x.svg b/superset-frontend/packages/superset-frontend/images/icons/cancel-x.svg
similarity index 100%
rename from superset-frontend/images/icons/cancel-x.svg
rename to superset-frontend/packages/superset-frontend/images/icons/cancel-x.svg
diff --git a/superset-frontend/images/icons/cancel.svg b/superset-frontend/packages/superset-frontend/images/icons/cancel.svg
similarity index 100%
rename from superset-frontend/images/icons/cancel.svg
rename to superset-frontend/packages/superset-frontend/images/icons/cancel.svg
diff --git a/superset-frontend/images/icons/cancel_solid.svg b/superset-frontend/packages/superset-frontend/images/icons/cancel_solid.svg
similarity index 100%
rename from superset-frontend/images/icons/cancel_solid.svg
rename to superset-frontend/packages/superset-frontend/images/icons/cancel_solid.svg
diff --git a/superset-frontend/images/icons/card_view.svg b/superset-frontend/packages/superset-frontend/images/icons/card_view.svg
similarity index 100%
rename from superset-frontend/images/icons/card_view.svg
rename to superset-frontend/packages/superset-frontend/images/icons/card_view.svg
diff --git a/superset-frontend/images/icons/cards.svg b/superset-frontend/packages/superset-frontend/images/icons/cards.svg
similarity index 100%
rename from superset-frontend/images/icons/cards.svg
rename to superset-frontend/packages/superset-frontend/images/icons/cards.svg
diff --git a/superset-frontend/images/icons/cards_locked.svg b/superset-frontend/packages/superset-frontend/images/icons/cards_locked.svg
similarity index 100%
rename from superset-frontend/images/icons/cards_locked.svg
rename to superset-frontend/packages/superset-frontend/images/icons/cards_locked.svg
diff --git a/superset-frontend/images/icons/caret_down.svg b/superset-frontend/packages/superset-frontend/images/icons/caret_down.svg
similarity index 100%
rename from superset-frontend/images/icons/caret_down.svg
rename to superset-frontend/packages/superset-frontend/images/icons/caret_down.svg
diff --git a/superset-frontend/images/icons/caret_left.svg b/superset-frontend/packages/superset-frontend/images/icons/caret_left.svg
similarity index 100%
rename from superset-frontend/images/icons/caret_left.svg
rename to superset-frontend/packages/superset-frontend/images/icons/caret_left.svg
diff --git a/superset-frontend/images/icons/caret_right.svg b/superset-frontend/packages/superset-frontend/images/icons/caret_right.svg
similarity index 100%
rename from superset-frontend/images/icons/caret_right.svg
rename to superset-frontend/packages/superset-frontend/images/icons/caret_right.svg
diff --git a/superset-frontend/images/icons/caret_up.svg b/superset-frontend/packages/superset-frontend/images/icons/caret_up.svg
similarity index 100%
rename from superset-frontend/images/icons/caret_up.svg
rename to superset-frontend/packages/superset-frontend/images/icons/caret_up.svg
diff --git a/superset-frontend/images/icons/certified.svg b/superset-frontend/packages/superset-frontend/images/icons/certified.svg
similarity index 100%
rename from superset-frontend/images/icons/certified.svg
rename to superset-frontend/packages/superset-frontend/images/icons/certified.svg
diff --git a/superset-frontend/images/icons/check.svg b/superset-frontend/packages/superset-frontend/images/icons/check.svg
similarity index 100%
rename from superset-frontend/images/icons/check.svg
rename to superset-frontend/packages/superset-frontend/images/icons/check.svg
diff --git a/superset-frontend/images/icons/checkbox-half.svg b/superset-frontend/packages/superset-frontend/images/icons/checkbox-half.svg
similarity index 100%
rename from superset-frontend/images/icons/checkbox-half.svg
rename to superset-frontend/packages/superset-frontend/images/icons/checkbox-half.svg
diff --git a/superset-frontend/images/icons/checkbox-off.svg b/superset-frontend/packages/superset-frontend/images/icons/checkbox-off.svg
similarity index 100%
rename from superset-frontend/images/icons/checkbox-off.svg
rename to superset-frontend/packages/superset-frontend/images/icons/checkbox-off.svg
diff --git a/superset-frontend/images/icons/checkbox-on.svg b/superset-frontend/packages/superset-frontend/images/icons/checkbox-on.svg
similarity index 100%
rename from superset-frontend/images/icons/checkbox-on.svg
rename to superset-frontend/packages/superset-frontend/images/icons/checkbox-on.svg
diff --git a/superset-frontend/images/icons/circle.svg b/superset-frontend/packages/superset-frontend/images/icons/circle.svg
similarity index 100%
rename from superset-frontend/images/icons/circle.svg
rename to superset-frontend/packages/superset-frontend/images/icons/circle.svg
diff --git a/superset-frontend/images/icons/circle_check.svg b/superset-frontend/packages/superset-frontend/images/icons/circle_check.svg
similarity index 100%
rename from superset-frontend/images/icons/circle_check.svg
rename to superset-frontend/packages/superset-frontend/images/icons/circle_check.svg
diff --git a/superset-frontend/images/icons/circle_check_solid.svg b/superset-frontend/packages/superset-frontend/images/icons/circle_check_solid.svg
similarity index 100%
rename from superset-frontend/images/icons/circle_check_solid.svg
rename to superset-frontend/packages/superset-frontend/images/icons/circle_check_solid.svg
diff --git a/superset-frontend/images/icons/clock.svg b/superset-frontend/packages/superset-frontend/images/icons/clock.svg
similarity index 100%
rename from superset-frontend/images/icons/clock.svg
rename to superset-frontend/packages/superset-frontend/images/icons/clock.svg
diff --git a/superset-frontend/images/icons/close.svg b/superset-frontend/packages/superset-frontend/images/icons/close.svg
similarity index 100%
rename from superset-frontend/images/icons/close.svg
rename to superset-frontend/packages/superset-frontend/images/icons/close.svg
diff --git a/superset-frontend/images/icons/code.svg b/superset-frontend/packages/superset-frontend/images/icons/code.svg
similarity index 100%
rename from superset-frontend/images/icons/code.svg
rename to superset-frontend/packages/superset-frontend/images/icons/code.svg
diff --git a/superset-frontend/images/icons/cog.svg b/superset-frontend/packages/superset-frontend/images/icons/cog.svg
similarity index 100%
rename from superset-frontend/images/icons/cog.svg
rename to superset-frontend/packages/superset-frontend/images/icons/cog.svg
diff --git a/superset-frontend/images/icons/collapse.svg b/superset-frontend/packages/superset-frontend/images/icons/collapse.svg
similarity index 100%
rename from superset-frontend/images/icons/collapse.svg
rename to superset-frontend/packages/superset-frontend/images/icons/collapse.svg
diff --git a/superset-frontend/images/icons/color_palette.svg b/superset-frontend/packages/superset-frontend/images/icons/color_palette.svg
similarity index 100%
rename from superset-frontend/images/icons/color_palette.svg
rename to superset-frontend/packages/superset-frontend/images/icons/color_palette.svg
diff --git a/superset-frontend/images/icons/components.svg b/superset-frontend/packages/superset-frontend/images/icons/components.svg
similarity index 100%
rename from superset-frontend/images/icons/components.svg
rename to superset-frontend/packages/superset-frontend/images/icons/components.svg
diff --git a/superset-frontend/images/icons/copy.svg b/superset-frontend/packages/superset-frontend/images/icons/copy.svg
similarity index 100%
rename from superset-frontend/images/icons/copy.svg
rename to superset-frontend/packages/superset-frontend/images/icons/copy.svg
diff --git a/superset-frontend/images/icons/cursor_target.svg b/superset-frontend/packages/superset-frontend/images/icons/cursor_target.svg
similarity index 100%
rename from superset-frontend/images/icons/cursor_target.svg
rename to superset-frontend/packages/superset-frontend/images/icons/cursor_target.svg
diff --git a/superset-frontend/images/icons/database.svg b/superset-frontend/packages/superset-frontend/images/icons/database.svg
similarity index 100%
rename from superset-frontend/images/icons/database.svg
rename to superset-frontend/packages/superset-frontend/images/icons/database.svg
diff --git a/superset-frontend/images/icons/dataset_physical.svg b/superset-frontend/packages/superset-frontend/images/icons/dataset_physical.svg
similarity index 100%
rename from superset-frontend/images/icons/dataset_physical.svg
rename to superset-frontend/packages/superset-frontend/images/icons/dataset_physical.svg
diff --git a/superset-frontend/images/icons/dataset_virtual.svg b/superset-frontend/packages/superset-frontend/images/icons/dataset_virtual.svg
similarity index 100%
rename from superset-frontend/images/icons/dataset_virtual.svg
rename to superset-frontend/packages/superset-frontend/images/icons/dataset_virtual.svg
diff --git a/superset-frontend/images/icons/dataset_virtual_greyscale.svg b/superset-frontend/packages/superset-frontend/images/icons/dataset_virtual_greyscale.svg
similarity index 100%
rename from superset-frontend/images/icons/dataset_virtual_greyscale.svg
rename to superset-frontend/packages/superset-frontend/images/icons/dataset_virtual_greyscale.svg
diff --git a/superset-frontend/images/icons/download.svg b/superset-frontend/packages/superset-frontend/images/icons/download.svg
similarity index 100%
rename from superset-frontend/images/icons/download.svg
rename to superset-frontend/packages/superset-frontend/images/icons/download.svg
diff --git a/superset-frontend/images/icons/edit.svg b/superset-frontend/packages/superset-frontend/images/icons/edit.svg
similarity index 100%
rename from superset-frontend/images/icons/edit.svg
rename to superset-frontend/packages/superset-frontend/images/icons/edit.svg
diff --git a/superset-frontend/images/icons/edit_alt.svg b/superset-frontend/packages/superset-frontend/images/icons/edit_alt.svg
similarity index 100%
rename from superset-frontend/images/icons/edit_alt.svg
rename to superset-frontend/packages/superset-frontend/images/icons/edit_alt.svg
diff --git a/superset-frontend/images/icons/email.svg b/superset-frontend/packages/superset-frontend/images/icons/email.svg
similarity index 100%
rename from superset-frontend/images/icons/email.svg
rename to superset-frontend/packages/superset-frontend/images/icons/email.svg
diff --git a/superset-frontend/images/icons/error.svg b/superset-frontend/packages/superset-frontend/images/icons/error.svg
similarity index 100%
rename from superset-frontend/images/icons/error.svg
rename to superset-frontend/packages/superset-frontend/images/icons/error.svg
diff --git a/superset-frontend/images/icons/error_solid.svg b/superset-frontend/packages/superset-frontend/images/icons/error_solid.svg
similarity index 100%
rename from superset-frontend/images/icons/error_solid.svg
rename to superset-frontend/packages/superset-frontend/images/icons/error_solid.svg
diff --git a/superset-frontend/images/icons/error_solid_small.svg b/superset-frontend/packages/superset-frontend/images/icons/error_solid_small.svg
similarity index 100%
rename from superset-frontend/images/icons/error_solid_small.svg
rename to superset-frontend/packages/superset-frontend/images/icons/error_solid_small.svg
diff --git a/superset-frontend/images/icons/error_solid_small_red.svg b/superset-frontend/packages/superset-frontend/images/icons/error_solid_small_red.svg
similarity index 100%
rename from superset-frontend/images/icons/error_solid_small_red.svg
rename to superset-frontend/packages/superset-frontend/images/icons/error_solid_small_red.svg
diff --git a/superset-frontend/images/icons/exclamation.svg b/superset-frontend/packages/superset-frontend/images/icons/exclamation.svg
similarity index 100%
rename from superset-frontend/images/icons/exclamation.svg
rename to superset-frontend/packages/superset-frontend/images/icons/exclamation.svg
diff --git a/superset-frontend/images/icons/expand.svg b/superset-frontend/packages/superset-frontend/images/icons/expand.svg
similarity index 100%
rename from superset-frontend/images/icons/expand.svg
rename to superset-frontend/packages/superset-frontend/images/icons/expand.svg
diff --git a/superset-frontend/images/icons/eye.svg b/superset-frontend/packages/superset-frontend/images/icons/eye.svg
similarity index 100%
rename from superset-frontend/images/icons/eye.svg
rename to superset-frontend/packages/superset-frontend/images/icons/eye.svg
diff --git a/superset-frontend/images/icons/eye_slash.svg b/superset-frontend/packages/superset-frontend/images/icons/eye_slash.svg
similarity index 100%
rename from superset-frontend/images/icons/eye_slash.svg
rename to superset-frontend/packages/superset-frontend/images/icons/eye_slash.svg
diff --git a/superset-frontend/images/icons/favorite-selected.svg b/superset-frontend/packages/superset-frontend/images/icons/favorite-selected.svg
similarity index 100%
rename from superset-frontend/images/icons/favorite-selected.svg
rename to superset-frontend/packages/superset-frontend/images/icons/favorite-selected.svg
diff --git a/superset-frontend/images/icons/favorite-unselected.svg b/superset-frontend/packages/superset-frontend/images/icons/favorite-unselected.svg
similarity index 100%
rename from superset-frontend/images/icons/favorite-unselected.svg
rename to superset-frontend/packages/superset-frontend/images/icons/favorite-unselected.svg
diff --git a/superset-frontend/images/icons/favorite_small_selected.svg b/superset-frontend/packages/superset-frontend/images/icons/favorite_small_selected.svg
similarity index 100%
rename from superset-frontend/images/icons/favorite_small_selected.svg
rename to superset-frontend/packages/superset-frontend/images/icons/favorite_small_selected.svg
diff --git a/superset-frontend/images/icons/field_abc.svg b/superset-frontend/packages/superset-frontend/images/icons/field_abc.svg
similarity index 100%
rename from superset-frontend/images/icons/field_abc.svg
rename to superset-frontend/packages/superset-frontend/images/icons/field_abc.svg
diff --git a/superset-frontend/images/icons/field_boolean.svg b/superset-frontend/packages/superset-frontend/images/icons/field_boolean.svg
similarity index 100%
rename from superset-frontend/images/icons/field_boolean.svg
rename to superset-frontend/packages/superset-frontend/images/icons/field_boolean.svg
diff --git a/superset-frontend/images/icons/field_date.svg b/superset-frontend/packages/superset-frontend/images/icons/field_date.svg
similarity index 100%
rename from superset-frontend/images/icons/field_date.svg
rename to superset-frontend/packages/superset-frontend/images/icons/field_date.svg
diff --git a/superset-frontend/images/icons/field_derived.svg b/superset-frontend/packages/superset-frontend/images/icons/field_derived.svg
similarity index 100%
rename from superset-frontend/images/icons/field_derived.svg
rename to superset-frontend/packages/superset-frontend/images/icons/field_derived.svg
diff --git a/superset-frontend/images/icons/field_num.svg b/superset-frontend/packages/superset-frontend/images/icons/field_num.svg
similarity index 100%
rename from superset-frontend/images/icons/field_num.svg
rename to superset-frontend/packages/superset-frontend/images/icons/field_num.svg
diff --git a/superset-frontend/images/icons/field_struct.svg b/superset-frontend/packages/superset-frontend/images/icons/field_struct.svg
similarity index 100%
rename from superset-frontend/images/icons/field_struct.svg
rename to superset-frontend/packages/superset-frontend/images/icons/field_struct.svg
diff --git a/superset-frontend/images/icons/file.svg b/superset-frontend/packages/superset-frontend/images/icons/file.svg
similarity index 100%
rename from superset-frontend/images/icons/file.svg
rename to superset-frontend/packages/superset-frontend/images/icons/file.svg
diff --git a/superset-frontend/images/icons/filter.svg b/superset-frontend/packages/superset-frontend/images/icons/filter.svg
similarity index 100%
rename from superset-frontend/images/icons/filter.svg
rename to superset-frontend/packages/superset-frontend/images/icons/filter.svg
diff --git a/superset-frontend/images/icons/filter_small.svg b/superset-frontend/packages/superset-frontend/images/icons/filter_small.svg
similarity index 100%
rename from superset-frontend/images/icons/filter_small.svg
rename to superset-frontend/packages/superset-frontend/images/icons/filter_small.svg
diff --git a/superset-frontend/images/icons/folder.svg b/superset-frontend/packages/superset-frontend/images/icons/folder.svg
similarity index 100%
rename from superset-frontend/images/icons/folder.svg
rename to superset-frontend/packages/superset-frontend/images/icons/folder.svg
diff --git a/superset-frontend/images/icons/full.svg b/superset-frontend/packages/superset-frontend/images/icons/full.svg
similarity index 100%
rename from superset-frontend/images/icons/full.svg
rename to superset-frontend/packages/superset-frontend/images/icons/full.svg
diff --git a/superset-frontend/images/icons/function_x.svg b/superset-frontend/packages/superset-frontend/images/icons/function_x.svg
similarity index 100%
rename from superset-frontend/images/icons/function_x.svg
rename to superset-frontend/packages/superset-frontend/images/icons/function_x.svg
diff --git a/superset-frontend/images/icons/gear.svg b/superset-frontend/packages/superset-frontend/images/icons/gear.svg
similarity index 100%
rename from superset-frontend/images/icons/gear.svg
rename to superset-frontend/packages/superset-frontend/images/icons/gear.svg
diff --git a/superset-frontend/images/icons/grid.svg b/superset-frontend/packages/superset-frontend/images/icons/grid.svg
similarity index 100%
rename from superset-frontend/images/icons/grid.svg
rename to superset-frontend/packages/superset-frontend/images/icons/grid.svg
diff --git a/superset-frontend/images/icons/image.svg b/superset-frontend/packages/superset-frontend/images/icons/image.svg
similarity index 100%
rename from superset-frontend/images/icons/image.svg
rename to superset-frontend/packages/superset-frontend/images/icons/image.svg
diff --git a/superset-frontend/images/icons/import.svg b/superset-frontend/packages/superset-frontend/images/icons/import.svg
similarity index 100%
rename from superset-frontend/images/icons/import.svg
rename to superset-frontend/packages/superset-frontend/images/icons/import.svg
diff --git a/superset-frontend/images/icons/info-solid.svg b/superset-frontend/packages/superset-frontend/images/icons/info-solid.svg
similarity index 100%
rename from superset-frontend/images/icons/info-solid.svg
rename to superset-frontend/packages/superset-frontend/images/icons/info-solid.svg
diff --git a/superset-frontend/images/icons/info.svg b/superset-frontend/packages/superset-frontend/images/icons/info.svg
similarity index 100%
rename from superset-frontend/images/icons/info.svg
rename to superset-frontend/packages/superset-frontend/images/icons/info.svg
diff --git a/superset-frontend/images/icons/info_solid_small.svg b/superset-frontend/packages/superset-frontend/images/icons/info_solid_small.svg
similarity index 100%
rename from superset-frontend/images/icons/info_solid_small.svg
rename to superset-frontend/packages/superset-frontend/images/icons/info_solid_small.svg
diff --git a/superset-frontend/images/icons/join.svg b/superset-frontend/packages/superset-frontend/images/icons/join.svg
similarity index 100%
rename from superset-frontend/images/icons/join.svg
rename to superset-frontend/packages/superset-frontend/images/icons/join.svg
diff --git a/superset-frontend/images/icons/keyboard.svg b/superset-frontend/packages/superset-frontend/images/icons/keyboard.svg
similarity index 100%
rename from superset-frontend/images/icons/keyboard.svg
rename to superset-frontend/packages/superset-frontend/images/icons/keyboard.svg
diff --git a/superset-frontend/images/icons/layers.svg b/superset-frontend/packages/superset-frontend/images/icons/layers.svg
similarity index 100%
rename from superset-frontend/images/icons/layers.svg
rename to superset-frontend/packages/superset-frontend/images/icons/layers.svg
diff --git a/superset-frontend/images/icons/lightbulb.svg b/superset-frontend/packages/superset-frontend/images/icons/lightbulb.svg
similarity index 100%
rename from superset-frontend/images/icons/lightbulb.svg
rename to superset-frontend/packages/superset-frontend/images/icons/lightbulb.svg
diff --git a/superset-frontend/images/icons/link.svg b/superset-frontend/packages/superset-frontend/images/icons/link.svg
similarity index 100%
rename from superset-frontend/images/icons/link.svg
rename to superset-frontend/packages/superset-frontend/images/icons/link.svg
diff --git a/superset-frontend/images/icons/list.svg b/superset-frontend/packages/superset-frontend/images/icons/list.svg
similarity index 100%
rename from superset-frontend/images/icons/list.svg
rename to superset-frontend/packages/superset-frontend/images/icons/list.svg
diff --git a/superset-frontend/images/icons/list_view.svg b/superset-frontend/packages/superset-frontend/images/icons/list_view.svg
similarity index 100%
rename from superset-frontend/images/icons/list_view.svg
rename to superset-frontend/packages/superset-frontend/images/icons/list_view.svg
diff --git a/superset-frontend/images/icons/location.svg b/superset-frontend/packages/superset-frontend/images/icons/location.svg
similarity index 100%
rename from superset-frontend/images/icons/location.svg
rename to superset-frontend/packages/superset-frontend/images/icons/location.svg
diff --git a/superset-frontend/images/icons/lock_locked.svg b/superset-frontend/packages/superset-frontend/images/icons/lock_locked.svg
similarity index 100%
rename from superset-frontend/images/icons/lock_locked.svg
rename to superset-frontend/packages/superset-frontend/images/icons/lock_locked.svg
diff --git a/superset-frontend/images/icons/lock_unlocked.svg b/superset-frontend/packages/superset-frontend/images/icons/lock_unlocked.svg
similarity index 100%
rename from superset-frontend/images/icons/lock_unlocked.svg
rename to superset-frontend/packages/superset-frontend/images/icons/lock_unlocked.svg
diff --git a/superset-frontend/images/icons/map.svg b/superset-frontend/packages/superset-frontend/images/icons/map.svg
similarity index 100%
rename from superset-frontend/images/icons/map.svg
rename to superset-frontend/packages/superset-frontend/images/icons/map.svg
diff --git a/superset-frontend/images/icons/message.svg b/superset-frontend/packages/superset-frontend/images/icons/message.svg
similarity index 100%
rename from superset-frontend/images/icons/message.svg
rename to superset-frontend/packages/superset-frontend/images/icons/message.svg
diff --git a/superset-frontend/images/icons/minus.svg b/superset-frontend/packages/superset-frontend/images/icons/minus.svg
similarity index 100%
rename from superset-frontend/images/icons/minus.svg
rename to superset-frontend/packages/superset-frontend/images/icons/minus.svg
diff --git a/superset-frontend/images/icons/minus_solid.svg b/superset-frontend/packages/superset-frontend/images/icons/minus_solid.svg
similarity index 100%
rename from superset-frontend/images/icons/minus_solid.svg
rename to superset-frontend/packages/superset-frontend/images/icons/minus_solid.svg
diff --git a/superset-frontend/images/icons/more_horiz.svg b/superset-frontend/packages/superset-frontend/images/icons/more_horiz.svg
similarity index 100%
rename from superset-frontend/images/icons/more_horiz.svg
rename to superset-frontend/packages/superset-frontend/images/icons/more_horiz.svg
diff --git a/superset-frontend/images/icons/move.svg b/superset-frontend/packages/superset-frontend/images/icons/move.svg
similarity index 100%
rename from superset-frontend/images/icons/move.svg
rename to superset-frontend/packages/superset-frontend/images/icons/move.svg
diff --git a/superset-frontend/images/icons/nav_charts.svg b/superset-frontend/packages/superset-frontend/images/icons/nav_charts.svg
similarity index 100%
rename from superset-frontend/images/icons/nav_charts.svg
rename to superset-frontend/packages/superset-frontend/images/icons/nav_charts.svg
diff --git a/superset-frontend/images/icons/nav_dashboard.svg b/superset-frontend/packages/superset-frontend/images/icons/nav_dashboard.svg
similarity index 100%
rename from superset-frontend/images/icons/nav_dashboard.svg
rename to superset-frontend/packages/superset-frontend/images/icons/nav_dashboard.svg
diff --git a/superset-frontend/images/icons/nav_data.svg b/superset-frontend/packages/superset-frontend/images/icons/nav_data.svg
similarity index 100%
rename from superset-frontend/images/icons/nav_data.svg
rename to superset-frontend/packages/superset-frontend/images/icons/nav_data.svg
diff --git a/superset-frontend/images/icons/nav_explore.svg b/superset-frontend/packages/superset-frontend/images/icons/nav_explore.svg
similarity index 100%
rename from superset-frontend/images/icons/nav_explore.svg
rename to superset-frontend/packages/superset-frontend/images/icons/nav_explore.svg
diff --git a/superset-frontend/images/icons/nav_home.svg b/superset-frontend/packages/superset-frontend/images/icons/nav_home.svg
similarity index 100%
rename from superset-frontend/images/icons/nav_home.svg
rename to superset-frontend/packages/superset-frontend/images/icons/nav_home.svg
diff --git a/superset-frontend/images/icons/nav_lab.svg b/superset-frontend/packages/superset-frontend/images/icons/nav_lab.svg
similarity index 100%
rename from superset-frontend/images/icons/nav_lab.svg
rename to superset-frontend/packages/superset-frontend/images/icons/nav_lab.svg
diff --git a/superset-frontend/images/icons/note.svg b/superset-frontend/packages/superset-frontend/images/icons/note.svg
similarity index 100%
rename from superset-frontend/images/icons/note.svg
rename to superset-frontend/packages/superset-frontend/images/icons/note.svg
diff --git a/superset-frontend/images/icons/offline.svg b/superset-frontend/packages/superset-frontend/images/icons/offline.svg
similarity index 100%
rename from superset-frontend/images/icons/offline.svg
rename to superset-frontend/packages/superset-frontend/images/icons/offline.svg
diff --git a/superset-frontend/images/icons/paperclip.svg b/superset-frontend/packages/superset-frontend/images/icons/paperclip.svg
similarity index 100%
rename from superset-frontend/images/icons/paperclip.svg
rename to superset-frontend/packages/superset-frontend/images/icons/paperclip.svg
diff --git a/superset-frontend/images/icons/placeholder.svg b/superset-frontend/packages/superset-frontend/images/icons/placeholder.svg
similarity index 100%
rename from superset-frontend/images/icons/placeholder.svg
rename to superset-frontend/packages/superset-frontend/images/icons/placeholder.svg
diff --git a/superset-frontend/images/icons/plus.svg b/superset-frontend/packages/superset-frontend/images/icons/plus.svg
similarity index 100%
rename from superset-frontend/images/icons/plus.svg
rename to superset-frontend/packages/superset-frontend/images/icons/plus.svg
diff --git a/superset-frontend/images/icons/plus_large.svg b/superset-frontend/packages/superset-frontend/images/icons/plus_large.svg
similarity index 100%
rename from superset-frontend/images/icons/plus_large.svg
rename to superset-frontend/packages/superset-frontend/images/icons/plus_large.svg
diff --git a/superset-frontend/images/icons/plus_small.svg b/superset-frontend/packages/superset-frontend/images/icons/plus_small.svg
similarity index 100%
rename from superset-frontend/images/icons/plus_small.svg
rename to superset-frontend/packages/superset-frontend/images/icons/plus_small.svg
diff --git a/superset-frontend/images/icons/plus_solid.svg b/superset-frontend/packages/superset-frontend/images/icons/plus_solid.svg
similarity index 100%
rename from superset-frontend/images/icons/plus_solid.svg
rename to superset-frontend/packages/superset-frontend/images/icons/plus_solid.svg
diff --git a/superset-frontend/images/icons/queued.svg b/superset-frontend/packages/superset-frontend/images/icons/queued.svg
similarity index 100%
rename from superset-frontend/images/icons/queued.svg
rename to superset-frontend/packages/superset-frontend/images/icons/queued.svg
diff --git a/superset-frontend/images/icons/refresh.svg b/superset-frontend/packages/superset-frontend/images/icons/refresh.svg
similarity index 100%
rename from superset-frontend/images/icons/refresh.svg
rename to superset-frontend/packages/superset-frontend/images/icons/refresh.svg
diff --git a/superset-frontend/images/icons/running.svg b/superset-frontend/packages/superset-frontend/images/icons/running.svg
similarity index 100%
rename from superset-frontend/images/icons/running.svg
rename to superset-frontend/packages/superset-frontend/images/icons/running.svg
diff --git a/superset-frontend/images/icons/save.svg b/superset-frontend/packages/superset-frontend/images/icons/save.svg
similarity index 100%
rename from superset-frontend/images/icons/save.svg
rename to superset-frontend/packages/superset-frontend/images/icons/save.svg
diff --git a/superset-frontend/images/icons/search.svg b/superset-frontend/packages/superset-frontend/images/icons/search.svg
similarity index 100%
rename from superset-frontend/images/icons/search.svg
rename to superset-frontend/packages/superset-frontend/images/icons/search.svg
diff --git a/superset-frontend/images/icons/server.svg b/superset-frontend/packages/superset-frontend/images/icons/server.svg
similarity index 100%
rename from superset-frontend/images/icons/server.svg
rename to superset-frontend/packages/superset-frontend/images/icons/server.svg
diff --git a/superset-frontend/images/icons/share.svg b/superset-frontend/packages/superset-frontend/images/icons/share.svg
similarity index 100%
rename from superset-frontend/images/icons/share.svg
rename to superset-frontend/packages/superset-frontend/images/icons/share.svg
diff --git a/superset-frontend/images/icons/slack.svg b/superset-frontend/packages/superset-frontend/images/icons/slack.svg
similarity index 100%
rename from superset-frontend/images/icons/slack.svg
rename to superset-frontend/packages/superset-frontend/images/icons/slack.svg
diff --git a/superset-frontend/images/icons/sort.svg b/superset-frontend/packages/superset-frontend/images/icons/sort.svg
similarity index 100%
rename from superset-frontend/images/icons/sort.svg
rename to superset-frontend/packages/superset-frontend/images/icons/sort.svg
diff --git a/superset-frontend/images/icons/sort_asc.svg b/superset-frontend/packages/superset-frontend/images/icons/sort_asc.svg
similarity index 100%
rename from superset-frontend/images/icons/sort_asc.svg
rename to superset-frontend/packages/superset-frontend/images/icons/sort_asc.svg
diff --git a/superset-frontend/images/icons/sort_desc.svg b/superset-frontend/packages/superset-frontend/images/icons/sort_desc.svg
similarity index 100%
rename from superset-frontend/images/icons/sort_desc.svg
rename to superset-frontend/packages/superset-frontend/images/icons/sort_desc.svg
diff --git a/superset-frontend/images/icons/sql.svg b/superset-frontend/packages/superset-frontend/images/icons/sql.svg
similarity index 100%
rename from superset-frontend/images/icons/sql.svg
rename to superset-frontend/packages/superset-frontend/images/icons/sql.svg
diff --git a/superset-frontend/images/icons/table.svg b/superset-frontend/packages/superset-frontend/images/icons/table.svg
similarity index 100%
rename from superset-frontend/images/icons/table.svg
rename to superset-frontend/packages/superset-frontend/images/icons/table.svg
diff --git a/superset-frontend/images/icons/tag.svg b/superset-frontend/packages/superset-frontend/images/icons/tag.svg
similarity index 100%
rename from superset-frontend/images/icons/tag.svg
rename to superset-frontend/packages/superset-frontend/images/icons/tag.svg
diff --git a/superset-frontend/images/icons/trash.svg b/superset-frontend/packages/superset-frontend/images/icons/trash.svg
similarity index 100%
rename from superset-frontend/images/icons/trash.svg
rename to superset-frontend/packages/superset-frontend/images/icons/trash.svg
diff --git a/superset-frontend/images/icons/triangle_change.svg b/superset-frontend/packages/superset-frontend/images/icons/triangle_change.svg
similarity index 100%
rename from superset-frontend/images/icons/triangle_change.svg
rename to superset-frontend/packages/superset-frontend/images/icons/triangle_change.svg
diff --git a/superset-frontend/images/icons/triangle_down.svg b/superset-frontend/packages/superset-frontend/images/icons/triangle_down.svg
similarity index 100%
rename from superset-frontend/images/icons/triangle_down.svg
rename to superset-frontend/packages/superset-frontend/images/icons/triangle_down.svg
diff --git a/superset-frontend/images/icons/triangle_up.svg b/superset-frontend/packages/superset-frontend/images/icons/triangle_up.svg
similarity index 100%
rename from superset-frontend/images/icons/triangle_up.svg
rename to superset-frontend/packages/superset-frontend/images/icons/triangle_up.svg
diff --git a/superset-frontend/images/icons/up-level.svg b/superset-frontend/packages/superset-frontend/images/icons/up-level.svg
similarity index 100%
rename from superset-frontend/images/icons/up-level.svg
rename to superset-frontend/packages/superset-frontend/images/icons/up-level.svg
diff --git a/superset-frontend/images/icons/user.svg b/superset-frontend/packages/superset-frontend/images/icons/user.svg
similarity index 100%
rename from superset-frontend/images/icons/user.svg
rename to superset-frontend/packages/superset-frontend/images/icons/user.svg
diff --git a/superset-frontend/images/icons/warning.svg b/superset-frontend/packages/superset-frontend/images/icons/warning.svg
similarity index 100%
rename from superset-frontend/images/icons/warning.svg
rename to superset-frontend/packages/superset-frontend/images/icons/warning.svg
diff --git a/superset-frontend/images/icons/warning_solid.svg b/superset-frontend/packages/superset-frontend/images/icons/warning_solid.svg
similarity index 100%
rename from superset-frontend/images/icons/warning_solid.svg
rename to superset-frontend/packages/superset-frontend/images/icons/warning_solid.svg
diff --git a/superset-frontend/images/icons/x-large.svg b/superset-frontend/packages/superset-frontend/images/icons/x-large.svg
similarity index 100%
rename from superset-frontend/images/icons/x-large.svg
rename to superset-frontend/packages/superset-frontend/images/icons/x-large.svg
diff --git a/superset-frontend/images/icons/x-small.svg b/superset-frontend/packages/superset-frontend/images/icons/x-small.svg
similarity index 100%
rename from superset-frontend/images/icons/x-small.svg
rename to superset-frontend/packages/superset-frontend/images/icons/x-small.svg
diff --git a/superset-frontend/images/loading.gif b/superset-frontend/packages/superset-frontend/images/loading.gif
similarity index 100%
rename from superset-frontend/images/loading.gif
rename to superset-frontend/packages/superset-frontend/images/loading.gif
Binary files differ
diff --git a/superset-frontend/images/mariadb.png b/superset-frontend/packages/superset-frontend/images/mariadb.png
similarity index 100%
rename from superset-frontend/images/mariadb.png
rename to superset-frontend/packages/superset-frontend/images/mariadb.png
Binary files differ
diff --git a/superset-frontend/images/monet-db.png b/superset-frontend/packages/superset-frontend/images/monet-db.png
similarity index 100%
rename from superset-frontend/images/monet-db.png
rename to superset-frontend/packages/superset-frontend/images/monet-db.png
Binary files differ
diff --git a/superset-frontend/images/mssql-server.png b/superset-frontend/packages/superset-frontend/images/mssql-server.png
similarity index 100%
rename from superset-frontend/images/mssql-server.png
rename to superset-frontend/packages/superset-frontend/images/mssql-server.png
Binary files differ
diff --git a/superset-frontend/images/mysql.png b/superset-frontend/packages/superset-frontend/images/mysql.png
similarity index 100%
rename from superset-frontend/images/mysql.png
rename to superset-frontend/packages/superset-frontend/images/mysql.png
Binary files differ
diff --git a/superset-frontend/images/noimg.png b/superset-frontend/packages/superset-frontend/images/noimg.png
similarity index 100%
rename from superset-frontend/images/noimg.png
rename to superset-frontend/packages/superset-frontend/images/noimg.png
Binary files differ
diff --git a/superset-frontend/images/oracle.png b/superset-frontend/packages/superset-frontend/images/oracle.png
similarity index 100%
rename from superset-frontend/images/oracle.png
rename to superset-frontend/packages/superset-frontend/images/oracle.png
Binary files differ
diff --git a/superset-frontend/images/postgresql.png b/superset-frontend/packages/superset-frontend/images/postgresql.png
similarity index 100%
rename from superset-frontend/images/postgresql.png
rename to superset-frontend/packages/superset-frontend/images/postgresql.png
Binary files differ
diff --git a/superset-frontend/images/presto.png b/superset-frontend/packages/superset-frontend/images/presto.png
similarity index 100%
rename from superset-frontend/images/presto.png
rename to superset-frontend/packages/superset-frontend/images/presto.png
Binary files differ
diff --git a/superset-frontend/images/redshift.png b/superset-frontend/packages/superset-frontend/images/redshift.png
similarity index 100%
rename from superset-frontend/images/redshift.png
rename to superset-frontend/packages/superset-frontend/images/redshift.png
Binary files differ
diff --git a/superset-frontend/images/s.png b/superset-frontend/packages/superset-frontend/images/s.png
similarity index 100%
rename from superset-frontend/images/s.png
rename to superset-frontend/packages/superset-frontend/images/s.png
Binary files differ
diff --git a/superset-frontend/images/screenshots/bank_dash.png b/superset-frontend/packages/superset-frontend/images/screenshots/bank_dash.png
similarity index 100%
rename from superset-frontend/images/screenshots/bank_dash.png
rename to superset-frontend/packages/superset-frontend/images/screenshots/bank_dash.png
Binary files differ
diff --git a/superset-frontend/images/screenshots/deckgl_dash.png b/superset-frontend/packages/superset-frontend/images/screenshots/deckgl_dash.png
similarity index 100%
rename from superset-frontend/images/screenshots/deckgl_dash.png
rename to superset-frontend/packages/superset-frontend/images/screenshots/deckgl_dash.png
Binary files differ
diff --git a/superset-frontend/images/screenshots/explore.jpg b/superset-frontend/packages/superset-frontend/images/screenshots/explore.jpg
similarity index 100%
rename from superset-frontend/images/screenshots/explore.jpg
rename to superset-frontend/packages/superset-frontend/images/screenshots/explore.jpg
Binary files differ
diff --git a/superset-frontend/images/screenshots/explore.png b/superset-frontend/packages/superset-frontend/images/screenshots/explore.png
similarity index 100%
rename from superset-frontend/images/screenshots/explore.png
rename to superset-frontend/packages/superset-frontend/images/screenshots/explore.png
Binary files differ
diff --git a/superset-frontend/images/screenshots/explore_visualizations.jpg b/superset-frontend/packages/superset-frontend/images/screenshots/explore_visualizations.jpg
similarity index 100%
rename from superset-frontend/images/screenshots/explore_visualizations.jpg
rename to superset-frontend/packages/superset-frontend/images/screenshots/explore_visualizations.jpg
Binary files differ
diff --git a/superset-frontend/images/screenshots/gallery.jpg b/superset-frontend/packages/superset-frontend/images/screenshots/gallery.jpg
similarity index 100%
rename from superset-frontend/images/screenshots/gallery.jpg
rename to superset-frontend/packages/superset-frontend/images/screenshots/gallery.jpg
Binary files differ
diff --git a/superset-frontend/images/screenshots/gallery.png b/superset-frontend/packages/superset-frontend/images/screenshots/gallery.png
similarity index 100%
rename from superset-frontend/images/screenshots/gallery.png
rename to superset-frontend/packages/superset-frontend/images/screenshots/gallery.png
Binary files differ
diff --git a/superset-frontend/images/screenshots/geospatial_dash.jpg b/superset-frontend/packages/superset-frontend/images/screenshots/geospatial_dash.jpg
similarity index 100%
rename from superset-frontend/images/screenshots/geospatial_dash.jpg
rename to superset-frontend/packages/superset-frontend/images/screenshots/geospatial_dash.jpg
Binary files differ
diff --git a/superset-frontend/images/screenshots/slack_dash.jpg b/superset-frontend/packages/superset-frontend/images/screenshots/slack_dash.jpg
similarity index 100%
rename from superset-frontend/images/screenshots/slack_dash.jpg
rename to superset-frontend/packages/superset-frontend/images/screenshots/slack_dash.jpg
Binary files differ
diff --git a/superset-frontend/images/screenshots/sql_lab.jpg b/superset-frontend/packages/superset-frontend/images/screenshots/sql_lab.jpg
similarity index 100%
rename from superset-frontend/images/screenshots/sql_lab.jpg
rename to superset-frontend/packages/superset-frontend/images/screenshots/sql_lab.jpg
Binary files differ
diff --git a/superset-frontend/images/screenshots/sqllab.png b/superset-frontend/packages/superset-frontend/images/screenshots/sqllab.png
similarity index 100%
rename from superset-frontend/images/screenshots/sqllab.png
rename to superset-frontend/packages/superset-frontend/images/screenshots/sqllab.png
Binary files differ
diff --git a/superset-frontend/images/screenshots/visualizations.png b/superset-frontend/packages/superset-frontend/images/screenshots/visualizations.png
similarity index 100%
rename from superset-frontend/images/screenshots/visualizations.png
rename to superset-frontend/packages/superset-frontend/images/screenshots/visualizations.png
Binary files differ
diff --git a/superset-frontend/images/snowflake.png b/superset-frontend/packages/superset-frontend/images/snowflake.png
similarity index 100%
rename from superset-frontend/images/snowflake.png
rename to superset-frontend/packages/superset-frontend/images/snowflake.png
Binary files differ
diff --git a/superset-frontend/images/sqlite.png b/superset-frontend/packages/superset-frontend/images/sqlite.png
similarity index 100%
rename from superset-frontend/images/sqlite.png
rename to superset-frontend/packages/superset-frontend/images/sqlite.png
Binary files differ
diff --git a/superset-frontend/images/star-circle.svg b/superset-frontend/packages/superset-frontend/images/star-circle.svg
similarity index 100%
rename from superset-frontend/images/star-circle.svg
rename to superset-frontend/packages/superset-frontend/images/star-circle.svg
diff --git a/superset-frontend/images/superset-logo-horiz.png b/superset-frontend/packages/superset-frontend/images/superset-logo-horiz.png
similarity index 100%
rename from superset-frontend/images/superset-logo-horiz.png
rename to superset-frontend/packages/superset-frontend/images/superset-logo-horiz.png
Binary files differ
diff --git a/superset-frontend/images/superset.png b/superset-frontend/packages/superset-frontend/images/superset.png
similarity index 100%
rename from superset-frontend/images/superset.png
rename to superset-frontend/packages/superset-frontend/images/superset.png
Binary files differ
diff --git a/superset-frontend/images/superset_screenshot.png b/superset-frontend/packages/superset-frontend/images/superset_screenshot.png
similarity index 100%
rename from superset-frontend/images/superset_screenshot.png
rename to superset-frontend/packages/superset-frontend/images/superset_screenshot.png
Binary files differ
diff --git a/superset-frontend/images/sybase.png b/superset-frontend/packages/superset-frontend/images/sybase.png
similarity index 100%
rename from superset-frontend/images/sybase.png
rename to superset-frontend/packages/superset-frontend/images/sybase.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/add_db.png b/superset-frontend/packages/superset-frontend/images/tutorial/add_db.png
similarity index 100%
rename from superset-frontend/images/tutorial/add_db.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/add_db.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_01_sources_database.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_01_sources_database.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_01_sources_database.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_01_sources_database.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_02_add_database.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_02_add_database.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_02_add_database.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_02_add_database.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_03_database_name.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_03_database_name.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_03_database_name.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_03_database_name.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_04_sqlalchemy_connection_string.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_04_sqlalchemy_connection_string.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_04_sqlalchemy_connection_string.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_04_sqlalchemy_connection_string.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_05_connection_popup.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_05_connection_popup.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_05_connection_popup.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_05_connection_popup.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_06_list_of_tables.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_06_list_of_tables.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_06_list_of_tables.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_06_list_of_tables.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_07_save_button.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_07_save_button.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_07_save_button.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_07_save_button.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_08_sources_tables.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_08_sources_tables.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_08_sources_tables.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_08_sources_tables.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_09_add_new_table.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_09_add_new_table.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_09_add_new_table.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_09_add_new_table.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_10_table_name.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_10_table_name.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_10_table_name.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_10_table_name.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_11_choose_db.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_11_choose_db.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_11_choose_db.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_11_choose_db.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_12_table_creation_success_msg.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_12_table_creation_success_msg.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_12_table_creation_success_msg.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_12_table_creation_success_msg.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_13_edit_table_config.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_13_edit_table_config.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_13_edit_table_config.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_13_edit_table_config.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_14_field_config.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_14_field_config.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_14_field_config.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_14_field_config.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_15_click_table_name.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_15_click_table_name.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_15_click_table_name.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_15_click_table_name.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_16_datasource_chart_type.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_16_datasource_chart_type.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_16_datasource_chart_type.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_16_datasource_chart_type.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_17_choose_time_range.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_17_choose_time_range.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_17_choose_time_range.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_17_choose_time_range.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_18_choose_metric.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_18_choose_metric.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_18_choose_metric.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_18_choose_metric.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_19_click_query.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_19_click_query.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_19_click_query.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_19_click_query.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_20_count_star_result.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_20_count_star_result.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_20_count_star_result.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_20_count_star_result.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_21_group_by.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_21_group_by.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_21_group_by.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_21_group_by.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_22_group_by_result.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_22_group_by_result.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_22_group_by_result.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_22_group_by_result.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_23_group_by_more_dimensions.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_23_group_by_more_dimensions.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_23_group_by_more_dimensions.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_23_group_by_more_dimensions.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_24_max_metric.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_24_max_metric.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_24_max_metric.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_24_max_metric.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_25_max_temp_filter.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_25_max_temp_filter.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_25_max_temp_filter.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_25_max_temp_filter.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_26_row_limit.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_26_row_limit.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_26_row_limit.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_26_row_limit.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_27_top_10_max_temps.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_27_top_10_max_temps.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_27_top_10_max_temps.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_27_top_10_max_temps.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_28_bar_chart.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_28_bar_chart.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_28_bar_chart.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_28_bar_chart.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_29_bar_chart_series_metrics.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_29_bar_chart_series_metrics.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_29_bar_chart_series_metrics.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_29_bar_chart_series_metrics.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_30_bar_chart_results.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_30_bar_chart_results.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_30_bar_chart_results.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_30_bar_chart_results.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_31_save_slice_to_dashboard.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_31_save_slice_to_dashboard.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_31_save_slice_to_dashboard.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_31_save_slice_to_dashboard.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_32_save_slice_confirmation.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_32_save_slice_confirmation.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_32_save_slice_confirmation.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_32_save_slice_confirmation.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_33_dashboard.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_33_dashboard.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_33_dashboard.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_33_dashboard.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_34_weather_dashboard.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_34_weather_dashboard.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_34_weather_dashboard.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_34_weather_dashboard.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_35_slice_on_dashboard.png b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_35_slice_on_dashboard.png
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_35_slice_on_dashboard.png
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_35_slice_on_dashboard.png
Binary files differ
diff --git a/superset-frontend/images/tutorial/tutorial_36_adjust_dimensions.gif b/superset-frontend/packages/superset-frontend/images/tutorial/tutorial_36_adjust_dimensions.gif
similarity index 100%
rename from superset-frontend/images/tutorial/tutorial_36_adjust_dimensions.gif
rename to superset-frontend/packages/superset-frontend/images/tutorial/tutorial_36_adjust_dimensions.gif
Binary files differ
diff --git a/superset-frontend/images/union.png b/superset-frontend/packages/superset-frontend/images/union.png
similarity index 100%
rename from superset-frontend/images/union.png
rename to superset-frontend/packages/superset-frontend/images/union.png
Binary files differ
diff --git a/superset-frontend/images/union.svg b/superset-frontend/packages/superset-frontend/images/union.svg
similarity index 100%
rename from superset-frontend/images/union.svg
rename to superset-frontend/packages/superset-frontend/images/union.svg
diff --git a/superset-frontend/images/usertutorial/add_new_chart.png b/superset-frontend/packages/superset-frontend/images/usertutorial/add_new_chart.png
similarity index 100%
rename from superset-frontend/images/usertutorial/add_new_chart.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/add_new_chart.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/advanced_analytics_base.png b/superset-frontend/packages/superset-frontend/images/usertutorial/advanced_analytics_base.png
similarity index 100%
rename from superset-frontend/images/usertutorial/advanced_analytics_base.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/advanced_analytics_base.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/annotation.png b/superset-frontend/packages/superset-frontend/images/usertutorial/annotation.png
similarity index 100%
rename from superset-frontend/images/usertutorial/annotation.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/annotation.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/annotation_settings.png b/superset-frontend/packages/superset-frontend/images/usertutorial/annotation_settings.png
similarity index 100%
rename from superset-frontend/images/usertutorial/annotation_settings.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/annotation_settings.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/average_aggregate_for_cost.png b/superset-frontend/packages/superset-frontend/images/usertutorial/average_aggregate_for_cost.png
similarity index 100%
rename from superset-frontend/images/usertutorial/average_aggregate_for_cost.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/average_aggregate_for_cost.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/blue_bar_insert_component.png b/superset-frontend/packages/superset-frontend/images/usertutorial/blue_bar_insert_component.png
similarity index 100%
rename from superset-frontend/images/usertutorial/blue_bar_insert_component.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/blue_bar_insert_component.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/chose_a_datasource.png b/superset-frontend/packages/superset-frontend/images/usertutorial/chose_a_datasource.png
similarity index 100%
rename from superset-frontend/images/usertutorial/chose_a_datasource.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/chose_a_datasource.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/csv_to_database_configuration.png b/superset-frontend/packages/superset-frontend/images/usertutorial/csv_to_database_configuration.png
similarity index 100%
rename from superset-frontend/images/usertutorial/csv_to_database_configuration.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/csv_to_database_configuration.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/edit-record.png b/superset-frontend/packages/superset-frontend/images/usertutorial/edit-record.png
similarity index 100%
rename from superset-frontend/images/usertutorial/edit-record.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/edit-record.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/edit_annotation.png b/superset-frontend/packages/superset-frontend/images/usertutorial/edit_annotation.png
similarity index 100%
rename from superset-frontend/images/usertutorial/edit_annotation.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/edit_annotation.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/filter_on_origin_country.png b/superset-frontend/packages/superset-frontend/images/usertutorial/filter_on_origin_country.png
similarity index 100%
rename from superset-frontend/images/usertutorial/filter_on_origin_country.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/filter_on_origin_country.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/markdown.png b/superset-frontend/packages/superset-frontend/images/usertutorial/markdown.png
similarity index 100%
rename from superset-frontend/images/usertutorial/markdown.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/markdown.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/no_filter_on_time_filter.png b/superset-frontend/packages/superset-frontend/images/usertutorial/no_filter_on_time_filter.png
similarity index 100%
rename from superset-frontend/images/usertutorial/no_filter_on_time_filter.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/no_filter_on_time_filter.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/parse_dates_column.png b/superset-frontend/packages/superset-frontend/images/usertutorial/parse_dates_column.png
similarity index 100%
rename from superset-frontend/images/usertutorial/parse_dates_column.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/parse_dates_column.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/publish_dashboard.png b/superset-frontend/packages/superset-frontend/images/usertutorial/publish_dashboard.png
similarity index 100%
rename from superset-frontend/images/usertutorial/publish_dashboard.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/publish_dashboard.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/resample.png b/superset-frontend/packages/superset-frontend/images/usertutorial/resample.png
similarity index 100%
rename from superset-frontend/images/usertutorial/resample.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/resample.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/resize_tutorial_table_on_dashboard.png b/superset-frontend/packages/superset-frontend/images/usertutorial/resize_tutorial_table_on_dashboard.png
similarity index 100%
rename from superset-frontend/images/usertutorial/resize_tutorial_table_on_dashboard.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/resize_tutorial_table_on_dashboard.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/rolling_mean.png b/superset-frontend/packages/superset-frontend/images/usertutorial/rolling_mean.png
similarity index 100%
rename from superset-frontend/images/usertutorial/rolling_mean.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/rolling_mean.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/save_tutorial_table.png b/superset-frontend/packages/superset-frontend/images/usertutorial/save_tutorial_table.png
similarity index 100%
rename from superset-frontend/images/usertutorial/save_tutorial_table.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/save_tutorial_table.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/select_dates_pivot_table.png b/superset-frontend/packages/superset-frontend/images/usertutorial/select_dates_pivot_table.png
similarity index 100%
rename from superset-frontend/images/usertutorial/select_dates_pivot_table.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/select_dates_pivot_table.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/select_table_visualization_type.png b/superset-frontend/packages/superset-frontend/images/usertutorial/select_table_visualization_type.png
similarity index 100%
rename from superset-frontend/images/usertutorial/select_table_visualization_type.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/select_table_visualization_type.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/sum_cost_column.png b/superset-frontend/packages/superset-frontend/images/usertutorial/sum_cost_column.png
similarity index 100%
rename from superset-frontend/images/usertutorial/sum_cost_column.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/sum_cost_column.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/time_comparison_absolute_difference.png b/superset-frontend/packages/superset-frontend/images/usertutorial/time_comparison_absolute_difference.png
similarity index 100%
rename from superset-frontend/images/usertutorial/time_comparison_absolute_difference.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/time_comparison_absolute_difference.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/time_comparison_two_series.png b/superset-frontend/packages/superset-frontend/images/usertutorial/time_comparison_two_series.png
similarity index 100%
rename from superset-frontend/images/usertutorial/time_comparison_two_series.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/time_comparison_two_series.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/tutorial_line_chart.png b/superset-frontend/packages/superset-frontend/images/usertutorial/tutorial_line_chart.png
similarity index 100%
rename from superset-frontend/images/usertutorial/tutorial_line_chart.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/tutorial_line_chart.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/tutorial_pivot_table.png b/superset-frontend/packages/superset-frontend/images/usertutorial/tutorial_pivot_table.png
similarity index 100%
rename from superset-frontend/images/usertutorial/tutorial_pivot_table.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/tutorial_pivot_table.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/tutorial_table.png b/superset-frontend/packages/superset-frontend/images/usertutorial/tutorial_table.png
similarity index 100%
rename from superset-frontend/images/usertutorial/tutorial_table.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/tutorial_table.png
Binary files differ
diff --git a/superset-frontend/images/usertutorial/upload_a_csv.png b/superset-frontend/packages/superset-frontend/images/usertutorial/upload_a_csv.png
similarity index 100%
rename from superset-frontend/images/usertutorial/upload_a_csv.png
rename to superset-frontend/packages/superset-frontend/images/usertutorial/upload_a_csv.png
Binary files differ
diff --git a/superset-frontend/images/vertica.png b/superset-frontend/packages/superset-frontend/images/vertica.png
similarity index 100%
rename from superset-frontend/images/vertica.png
rename to superset-frontend/packages/superset-frontend/images/vertica.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/area.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/area.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/area.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/area.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/bar.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/bar.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/bar.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/bar.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/big_number.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/big_number.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/big_number.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/big_number.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/big_number_total.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/big_number_total.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/big_number_total.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/big_number_total.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/box_plot.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/box_plot.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/box_plot.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/box_plot.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/bubble.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/bubble.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/bubble.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/bubble.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/bullet.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/bullet.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/bullet.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/bullet.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/cal_heatmap.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/cal_heatmap.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/cal_heatmap.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/cal_heatmap.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/chord.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/chord.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/chord.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/chord.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/compare.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/compare.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/compare.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/compare.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/country_map.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/country_map.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/country_map.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/country_map.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/deck_arc.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_arc.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/deck_arc.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_arc.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/deck_geojson.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_geojson.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/deck_geojson.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_geojson.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/deck_grid.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_grid.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/deck_grid.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_grid.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/deck_hex.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_hex.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/deck_hex.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_hex.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/deck_multi.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_multi.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/deck_multi.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_multi.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/deck_path.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_path.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/deck_path.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_path.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/deck_polygon.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_polygon.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/deck_polygon.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_polygon.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/deck_scatter.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_scatter.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/deck_scatter.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_scatter.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/deck_screengrid.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_screengrid.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/deck_screengrid.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/deck_screengrid.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/directed_force.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/directed_force.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/directed_force.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/directed_force.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/dist_bar.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/dist_bar.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/dist_bar.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/dist_bar.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/dual_line.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/dual_line.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/dual_line.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/dual_line.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/event_flow.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/event_flow.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/event_flow.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/event_flow.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/filter_box.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/filter_box.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/filter_box.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/filter_box.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/heatmap.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/heatmap.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/heatmap.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/heatmap.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/histogram.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/histogram.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/histogram.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/histogram.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/horizon.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/horizon.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/horizon.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/horizon.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/iframe.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/iframe.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/iframe.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/iframe.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/line.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/line.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/line.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/line.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/line_multi.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/line_multi.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/line_multi.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/line_multi.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/mapbox.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/mapbox.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/mapbox.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/mapbox.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/markup.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/markup.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/markup.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/markup.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/multi.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/multi.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/multi.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/multi.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/paired_ttest.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/paired_ttest.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/paired_ttest.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/paired_ttest.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/para.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/para.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/para.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/para.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/partition.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/partition.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/partition.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/partition.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/pie.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/pie.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/pie.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/pie.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/pivot_table.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/pivot_table.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/pivot_table.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/pivot_table.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/rose.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/rose.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/rose.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/rose.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/sankey.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/sankey.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/sankey.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/sankey.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/separator.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/separator.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/separator.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/separator.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/sunburst.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/sunburst.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/sunburst.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/sunburst.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/table.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/table.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/table.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/table.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/time_pivot.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/time_pivot.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/time_pivot.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/time_pivot.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/time_table.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/time_table.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/time_table.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/time_table.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/treemap.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/treemap.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/treemap.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/treemap.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/word_cloud.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/word_cloud.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/word_cloud.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/word_cloud.png
Binary files differ
diff --git a/superset-frontend/images/viz_thumbnails/world_map.png b/superset-frontend/packages/superset-frontend/images/viz_thumbnails/world_map.png
similarity index 100%
rename from superset-frontend/images/viz_thumbnails/world_map.png
rename to superset-frontend/packages/superset-frontend/images/viz_thumbnails/world_map.png
Binary files differ
diff --git a/superset-frontend/packages/superset-frontend/jest.config.js b/superset-frontend/packages/superset-frontend/jest.config.js
new file mode 100644
index 0000000..272cece
--- /dev/null
+++ b/superset-frontend/packages/superset-frontend/jest.config.js
@@ -0,0 +1,46 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+module.exports = {
+  testRegex: '(\\/spec|\\/src)\\/.*(_spec|\\.test)\\.(j|t)sx?$',
+  moduleNameMapper: {
+    '\\.(css|less)$': '<rootDir>/spec/__mocks__/styleMock.js',
+    '\\.(gif|ttf|eot)$': '<rootDir>/spec/__mocks__/fileMock.js',
+    '\\.svg$': '<rootDir>/spec/__mocks__/svgrMock.js',
+    '^src/(.*)$': '<rootDir>/src/$1',
+    '^spec/(.*)$': '<rootDir>/spec/$1',
+  },
+  testEnvironment: 'enzyme',
+  setupFilesAfterEnv: ['<rootDir>/spec/helpers/setup.ts'],
+  testURL: 'http://localhost',
+  collectCoverageFrom: ['src/**/*.{js,jsx,ts,tsx}'],
+  coverageDirectory: '<rootDir>/coverage/',
+  transform: {
+    '^.+\\.jsx?$': 'babel-jest',
+    '^.+\\.tsx?$': 'ts-jest',
+  },
+  moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
+  globals: {
+    'ts-jest': {
+      babelConfig: true,
+      diagnostics: {
+        warnOnly: true,
+      },
+    },
+  },
+};
diff --git a/superset-frontend/js_build.sh b/superset-frontend/packages/superset-frontend/js_build.sh
similarity index 100%
rename from superset-frontend/js_build.sh
rename to superset-frontend/packages/superset-frontend/js_build.sh
diff --git a/superset-frontend/jsconfig.json b/superset-frontend/packages/superset-frontend/jsconfig.json
similarity index 100%
rename from superset-frontend/jsconfig.json
rename to superset-frontend/packages/superset-frontend/jsconfig.json
diff --git a/superset-frontend/packages/superset-frontend/package.json b/superset-frontend/packages/superset-frontend/package.json
new file mode 100644
index 0000000..cbd04f5
--- /dev/null
+++ b/superset-frontend/packages/superset-frontend/package.json
@@ -0,0 +1,321 @@
+{
+  "name": "superset",
+  "version": "0.999.0dev",
+  "description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
+  "private": true,
+  "license": "Apache-2.0",
+  "directories": {
+    "doc": "docs",
+    "test": "spec"
+  },
+  "scripts": {
+    "tdd": "NODE_ENV=test jest --watch",
+    "test": "NODE_ENV=test jest",
+    "type": "tsc --noEmit",
+    "cover": "NODE_ENV=test jest --coverage",
+    "dev": "webpack --mode=development --colors --debug --watch",
+    "dev-server": "NODE_ENV=development BABEL_ENV=development node --max_old_space_size=4096 ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode=development",
+    "prod": "npm run build",
+    "build-dev": "cross-env NODE_OPTIONS=--max_old_space_size=8192 NODE_ENV=development webpack --mode=development --colors",
+    "build-instrumented": "cross-env NODE_ENV=development BABEL_ENV=instrumented webpack --mode=development --colors",
+    "build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 NODE_ENV=production BABEL_ENV=production webpack --mode=production --colors",
+    "lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx,.ts,.tsx . && npm run type",
+    "prettier-check": "prettier --check '{src,stylesheets}/**/*.{css,less,sass,scss}'",
+    "lint-fix": "eslint --fix --ignore-path=.eslintignore --ext .js,.jsx,.ts,tsx . && npm run clean-css && npm run type",
+    "clean-css": "prettier --write '{src,stylesheets}/**/*.{css,less,sass,scss}'",
+    "format": "prettier --write './{src,spec,stylesheets,cypress-base}/**/*{.js,.jsx,.ts,.tsx,.css,.less,.scss,.sass}'",
+    "prettier": "npm run format",
+    "check-translation": "prettier --check ../superset/translations/**/LC_MESSAGES/*.json",
+    "clean-translation": "prettier --write ../superset/translations/**/LC_MESSAGES/*.json",
+    "storybook": "NODE_ENV=development BABEL_ENV=development start-storybook -p 6006",
+    "build-storybook": "build-storybook"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache/superset.git"
+  },
+  "keywords": [
+    "big",
+    "data",
+    "exploratory",
+    "analysis",
+    "react",
+    "d3",
+    "airbnb",
+    "nerds",
+    "database",
+    "flask"
+  ],
+  "author": "Apache",
+  "bugs": {
+    "url": "https://github.com/apache/superset/issues"
+  },
+  "browserslist": [
+    "last 3 chrome versions",
+    "last 3 firefox versions",
+    "last 3 safari versions",
+    "last 3 edge versions"
+  ],
+  "engines": {
+    "node": ">= 12.18.3 < 13",
+    "npm": ">= 6.14.8"
+  },
+  "homepage": "https://superset.apache.org/",
+  "dependencies": {
+    "@ant-design/icons": "^4.2.2",
+    "@babel/runtime-corejs3": "^7.12.5",
+    "@data-ui/sparkline": "^0.0.84",
+    "@emotion/core": "^10.0.35",
+    "@superset-ui/chart-controls": "^0.17.5",
+    "@superset-ui/core": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-calendar": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-chord": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-country-map": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-event-flow": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-force-directed": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-heatmap": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-histogram": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-horizon": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-map-box": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-paired-t-test": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-parallel-coordinates": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-partition": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-pivot-table": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-rose": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-sankey": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-sankey-loop": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-sunburst": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-treemap": "^0.17.5",
+    "@superset-ui/legacy-plugin-chart-world-map": "^0.17.5",
+    "@superset-ui/legacy-preset-chart-big-number": "^0.17.5",
+    "@superset-ui/legacy-preset-chart-deckgl": "^0.4.1",
+    "@superset-ui/legacy-preset-chart-nvd3": "^0.17.5",
+    "@superset-ui/plugin-chart-echarts": "^0.17.6",
+    "@superset-ui/plugin-chart-table": "^0.17.6",
+    "@superset-ui/plugin-chart-word-cloud": "^0.17.5",
+    "@superset-ui/preset-chart-xy": "^0.17.5",
+    "@vx/responsive": "^0.0.195",
+    "abortcontroller-polyfill": "^1.1.9",
+    "antd": "^4.9.4",
+    "array-move": "^2.2.1",
+    "bootstrap": "^3.4.1",
+    "bootstrap-slider": "^10.0.0",
+    "brace": "^0.11.1",
+    "chrono-node": "^1.3.11",
+    "classnames": "^2.2.5",
+    "core-js": "^3.6.5",
+    "d3-array": "^1.2.4",
+    "d3-color": "^1.2.0",
+    "d3-scale": "^2.1.2",
+    "dom-to-image": "^2.6.0",
+    "fontsource-fira-code": "^3.0.5",
+    "fontsource-inter": "^3.0.5",
+    "geolib": "^2.0.24",
+    "global-box": "^1.2.0",
+    "immutable": "^4.0.0-rc.12",
+    "interweave": "^11.2.0",
+    "jquery": "^3.5.1",
+    "js-levenshtein": "^1.1.6",
+    "json-bigint": "^1.0.0",
+    "json-stringify-pretty-compact": "^2.0.0",
+    "lodash": "^4.17.20",
+    "lodash-es": "^4.17.14",
+    "match-sorter": "^6.1.0",
+    "mathjs": "^8.0.1",
+    "memoize-one": "^5.1.1",
+    "moment": "^2.26.0",
+    "mousetrap": "^1.6.1",
+    "mustache": "^2.2.1",
+    "omnibar": "^2.1.1",
+    "polished": "^3.6.5",
+    "prop-types": "^15.7.2",
+    "query-string": "^6.13.7",
+    "re-resizable": "^6.6.1",
+    "react": "^16.13.1",
+    "react-ace": "^5.10.0",
+    "react-bootstrap": "^0.33.1",
+    "react-bootstrap-slider": "2.1.5",
+    "react-checkbox-tree": "^1.5.1",
+    "react-color": "^2.13.8",
+    "react-datetime": "^3.0.4",
+    "react-dnd": "^11.1.3",
+    "react-dnd-html5-backend": "^11.1.3",
+    "react-dom": "^16.13.0",
+    "react-gravatar": "^2.6.1",
+    "react-hot-loader": "^4.12.20",
+    "react-js-cron": "^1.2.0",
+    "react-json-tree": "^0.11.2",
+    "react-jsonschema-form": "^1.2.0",
+    "react-loadable": "^5.5.0",
+    "react-markdown": "^4.3.1",
+    "react-redux": "^7.2.0",
+    "react-resize-detector": "^6.0.1-rc.1",
+    "react-router-dom": "^5.1.2",
+    "react-search-input": "^0.11.3",
+    "react-select": "^3.1.0",
+    "react-select-async-paginate": "^0.4.1",
+    "react-sortable-hoc": "^1.11.0",
+    "react-split": "^2.0.9",
+    "react-sticky": "^6.0.3",
+    "react-syntax-highlighter": "^15.3.0",
+    "react-table": "^7.2.1",
+    "react-transition-group": "^2.5.3",
+    "react-ultimate-pagination": "^1.2.0",
+    "react-virtualized": "9.19.1",
+    "react-virtualized-auto-sizer": "^1.0.2",
+    "react-virtualized-select": "^3.1.3",
+    "react-window": "^1.8.5",
+    "redux": "^4.0.5",
+    "redux-localstorage": "^0.4.1",
+    "redux-thunk": "^2.1.0",
+    "redux-undo": "^1.0.0-beta9-9-7",
+    "regenerator-runtime": "^0.13.5",
+    "rison": "^0.1.1",
+    "shortid": "^2.2.6",
+    "urijs": "^1.19.4",
+    "use-query-params": "^1.1.9"
+  },
+  "devDependencies": {
+    "@babel/cli": "^7.12.10",
+    "@babel/compat-data": "^7.12.7",
+    "@babel/core": "^7.12.10",
+    "@babel/node": "^7.12.10",
+    "@babel/plugin-proposal-class-properties": "^7.12.1",
+    "@babel/plugin-proposal-optional-chaining": "^7.12.7",
+    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+    "@babel/plugin-transform-runtime": "^7.12.10",
+    "@babel/preset-env": "^7.12.11",
+    "@babel/preset-react": "^7.12.10",
+    "@babel/register": "^7.12.10",
+    "@emotion/babel-preset-css-prop": "^10.2.1",
+    "@hot-loader/react-dom": "^16.13.0",
+    "@istanbuljs/nyc-config-typescript": "^1.0.1",
+    "@storybook/addon-actions": "^6.0.13",
+    "@storybook/addon-essentials": "^6.0.28",
+    "@storybook/addon-knobs": "^6.0.13",
+    "@storybook/addon-links": "^5.3.19",
+    "@storybook/addons": "^5.3.19",
+    "@storybook/client-api": "^6.0.21",
+    "@storybook/preset-typescript": "^3.0.0",
+    "@storybook/react": "^6.0.28",
+    "@svgr/webpack": "^5.4.0",
+    "@testing-library/jest-dom": "^5.11.6",
+    "@testing-library/react": "^11.2.0",
+    "@types/classnames": "^2.2.10",
+    "@types/dom-to-image": "^2.6.0",
+    "@types/enzyme": "^3.10.5",
+    "@types/enzyme-adapter-react-16": "^1.0.6",
+    "@types/fetch-mock": "^7.3.2",
+    "@types/jest": "^26.0.3",
+    "@types/jquery": "^3.3.32",
+    "@types/js-levenshtein": "^1.1.0",
+    "@types/json-bigint": "^1.0.0",
+    "@types/react": "^16.9.43",
+    "@types/react-bootstrap": "^0.32.22",
+    "@types/react-dom": "^16.9.8",
+    "@types/react-gravatar": "^2.6.8",
+    "@types/react-json-tree": "^0.6.11",
+    "@types/react-loadable": "^5.5.4",
+    "@types/react-redux": "^7.1.10",
+    "@types/react-router-dom": "^5.1.5",
+    "@types/react-select": "^3.0.19",
+    "@types/react-sticky": "^6.0.3",
+    "@types/react-table": "^7.0.19",
+    "@types/react-ultimate-pagination": "^1.2.0",
+    "@types/react-virtualized": "^9.21.10",
+    "@types/react-window": "^1.8.2",
+    "@types/redux-localstorage": "^1.0.8",
+    "@types/redux-mock-store": "^1.0.2",
+    "@types/rison": "0.0.6",
+    "@types/sinon": "^9.0.5",
+    "@types/yargs": "12 - 15",
+    "@typescript-eslint/eslint-plugin": "^4.1.0",
+    "@typescript-eslint/parser": "^4.1.0",
+    "babel-eslint": "^10.1.0",
+    "babel-jest": "^26.6.3",
+    "babel-loader": "^8.2.2",
+    "babel-plugin-dynamic-import-node": "^2.3.3",
+    "babel-plugin-emotion": "^10.0.33",
+    "babel-plugin-jsx-remove-data-test-id": "^2.1.3",
+    "babel-plugin-lodash": "^3.3.4",
+    "cache-loader": "^1.2.2",
+    "clean-webpack-plugin": "^3.0.0",
+    "copy-webpack-plugin": "^6.0.3",
+    "cross-env": "^5.2.0",
+    "css-loader": "^1.0.0",
+    "emotion-ts-plugin": "^0.5.3",
+    "enzyme": "^3.10.0",
+    "enzyme-adapter-react-16": "^1.14.0",
+    "eslint": "^7.17.0",
+    "eslint-config-airbnb": "^18.2.1",
+    "eslint-config-prettier": "^7.1.0",
+    "eslint-import-resolver-typescript": "^2.3.0",
+    "eslint-import-resolver-webpack": "^0.13.0",
+    "eslint-plugin-cypress": "^2.11.2",
+    "eslint-plugin-import": "^2.22.1",
+    "eslint-plugin-jest": "^24.1.3",
+    "eslint-plugin-jest-dom": "^3.6.5",
+    "eslint-plugin-jsx-a11y": "^6.4.1",
+    "eslint-plugin-no-only-tests": "^2.4.0",
+    "eslint-plugin-prettier": "^3.3.1",
+    "eslint-plugin-react": "^7.22.0",
+    "eslint-plugin-react-hooks": "^4.2.0",
+    "eslint-plugin-testing-library": "^3.10.1",
+    "exports-loader": "^0.7.0",
+    "fetch-mock": "^7.7.3",
+    "file-loader": "^6.0.0",
+    "fork-ts-checker-webpack-plugin": "^0.4.9",
+    "ignore-styles": "^5.0.1",
+    "imports-loader": "^0.7.1",
+    "jest": "^26.6.3",
+    "jest-environment-enzyme": "^7.1.2",
+    "jest-enzyme": "^7.1.2",
+    "jsdom": "^16.4.0",
+    "less": "^3.12.2",
+    "less-loader": "^5.0.0",
+    "mini-css-extract-plugin": "^0.4.0",
+    "node-fetch": "^2.6.1",
+    "optimize-css-assets-webpack-plugin": "^5.0.1",
+    "po2json": "^0.4.5",
+    "prettier": "^2.2.1",
+    "react-test-renderer": "^16.9.0",
+    "redux-mock-store": "^1.5.4",
+    "sinon": "^9.0.2",
+    "source-map-support": "^0.5.16",
+    "speed-measure-webpack-plugin": "^1.2.3",
+    "storybook-addon-jsx": "^7.3.3",
+    "storybook-addon-paddings": "^3.2.0",
+    "style-loader": "^1.0.0",
+    "terser-webpack-plugin": "^1.1.0",
+    "thread-loader": "^1.2.0",
+    "transform-loader": "^0.2.3",
+    "ts-jest": "^26.4.2",
+    "ts-loader": "^8.0.7",
+    "typescript": "^4.0.3",
+    "url-loader": "^1.0.1",
+    "webpack": "^4.42.0",
+    "webpack-bundle-analyzer": "^3.6.1",
+    "webpack-cli": "^3.3.11",
+    "webpack-dev-server": "^3.11.0",
+    "webpack-manifest-plugin": "^2.2.0",
+    "webpack-sources": "^1.4.3",
+    "yargs": "^15.4.1"
+  },
+  "stylelint": {
+    "rules": {
+      "block-opening-brace-space-before": "always",
+      "no-missing-end-of-source-newline": "never",
+      "rule-empty-line-before": [
+        "always",
+        {
+          "except": [
+            "first-nested"
+          ],
+          "ignore": [
+            "after-comment"
+          ]
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/prettier.config.js b/superset-frontend/packages/superset-frontend/prettier.config.js
similarity index 100%
rename from superset-frontend/prettier.config.js
rename to superset-frontend/packages/superset-frontend/prettier.config.js
diff --git a/superset-frontend/spec/.eslintrc b/superset-frontend/packages/superset-frontend/spec/.eslintrc
similarity index 100%
rename from superset-frontend/spec/.eslintrc
rename to superset-frontend/packages/superset-frontend/spec/.eslintrc
diff --git a/superset-frontend/spec/__mocks__/fileMock.js b/superset-frontend/packages/superset-frontend/spec/__mocks__/fileMock.js
similarity index 100%
rename from superset-frontend/spec/__mocks__/fileMock.js
rename to superset-frontend/packages/superset-frontend/spec/__mocks__/fileMock.js
diff --git a/superset-frontend/spec/__mocks__/styleMock.js b/superset-frontend/packages/superset-frontend/spec/__mocks__/styleMock.js
similarity index 100%
rename from superset-frontend/spec/__mocks__/styleMock.js
rename to superset-frontend/packages/superset-frontend/spec/__mocks__/styleMock.js
diff --git a/superset-frontend/spec/__mocks__/svgrMock.js b/superset-frontend/packages/superset-frontend/spec/__mocks__/svgrMock.js
similarity index 100%
rename from superset-frontend/spec/__mocks__/svgrMock.js
rename to superset-frontend/packages/superset-frontend/spec/__mocks__/svgrMock.js
diff --git a/superset-frontend/spec/fixtures/mockChartQueries.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockChartQueries.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockChartQueries.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockChartQueries.js
diff --git a/superset-frontend/spec/fixtures/mockDashboardData.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardData.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockDashboardData.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardData.js
diff --git a/superset-frontend/spec/fixtures/mockDashboardFilters.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardFilters.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockDashboardFilters.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardFilters.js
diff --git a/superset-frontend/spec/fixtures/mockDashboardInfo.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardInfo.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockDashboardInfo.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardInfo.js
diff --git a/superset-frontend/spec/fixtures/mockDashboardLayout.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardLayout.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockDashboardLayout.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardLayout.js
diff --git a/superset-frontend/spec/fixtures/mockDashboardState.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardState.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockDashboardState.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockDashboardState.js
diff --git a/superset-frontend/spec/fixtures/mockDatasource.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockDatasource.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockDatasource.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockDatasource.js
diff --git a/superset-frontend/spec/fixtures/mockNativeFilters.ts b/superset-frontend/packages/superset-frontend/spec/fixtures/mockNativeFilters.ts
similarity index 100%
rename from superset-frontend/spec/fixtures/mockNativeFilters.ts
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockNativeFilters.ts
diff --git a/superset-frontend/spec/fixtures/mockSliceEntities.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockSliceEntities.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockSliceEntities.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockSliceEntities.js
diff --git a/superset-frontend/spec/fixtures/mockState.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockState.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockState.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockState.js
diff --git a/superset-frontend/spec/fixtures/mockStore.js b/superset-frontend/packages/superset-frontend/spec/fixtures/mockStore.js
similarity index 100%
rename from superset-frontend/spec/fixtures/mockStore.js
rename to superset-frontend/packages/superset-frontend/spec/fixtures/mockStore.js
diff --git a/superset-frontend/spec/helpers/ProviderWrapper.tsx b/superset-frontend/packages/superset-frontend/spec/helpers/ProviderWrapper.tsx
similarity index 100%
rename from superset-frontend/spec/helpers/ProviderWrapper.tsx
rename to superset-frontend/packages/superset-frontend/spec/helpers/ProviderWrapper.tsx
diff --git a/superset-frontend/spec/helpers/Worker.ts b/superset-frontend/packages/superset-frontend/spec/helpers/Worker.ts
similarity index 100%
rename from superset-frontend/spec/helpers/Worker.ts
rename to superset-frontend/packages/superset-frontend/spec/helpers/Worker.ts
diff --git a/superset-frontend/spec/helpers/setup.ts b/superset-frontend/packages/superset-frontend/spec/helpers/setup.ts
similarity index 100%
rename from superset-frontend/spec/helpers/setup.ts
rename to superset-frontend/packages/superset-frontend/spec/helpers/setup.ts
diff --git a/superset-frontend/spec/helpers/setupSupersetClient.js b/superset-frontend/packages/superset-frontend/spec/helpers/setupSupersetClient.js
similarity index 100%
rename from superset-frontend/spec/helpers/setupSupersetClient.js
rename to superset-frontend/packages/superset-frontend/spec/helpers/setupSupersetClient.js
diff --git a/superset-frontend/spec/helpers/shim.ts b/superset-frontend/packages/superset-frontend/spec/helpers/shim.ts
similarity index 100%
rename from superset-frontend/spec/helpers/shim.ts
rename to superset-frontend/packages/superset-frontend/spec/helpers/shim.ts
diff --git a/superset-frontend/spec/helpers/testing-library.tsx b/superset-frontend/packages/superset-frontend/spec/helpers/testing-library.tsx
similarity index 100%
rename from superset-frontend/spec/helpers/testing-library.tsx
rename to superset-frontend/packages/superset-frontend/spec/helpers/testing-library.tsx
diff --git a/superset-frontend/spec/helpers/theming.ts b/superset-frontend/packages/superset-frontend/spec/helpers/theming.ts
similarity index 100%
rename from superset-frontend/spec/helpers/theming.ts
rename to superset-frontend/packages/superset-frontend/spec/helpers/theming.ts
diff --git a/superset-frontend/spec/helpers/waitForComponentToPaint.ts b/superset-frontend/packages/superset-frontend/spec/helpers/waitForComponentToPaint.ts
similarity index 100%
rename from superset-frontend/spec/helpers/waitForComponentToPaint.ts
rename to superset-frontend/packages/superset-frontend/spec/helpers/waitForComponentToPaint.ts
diff --git a/superset-frontend/spec/javascripts/CRUD/CollectionTable_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/CRUD/CollectionTable_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/CRUD/CollectionTable_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/CRUD/CollectionTable_spec.jsx
diff --git a/superset-frontend/spec/javascripts/addSlice/AddSliceContainer_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/addSlice/AddSliceContainer_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/addSlice/AddSliceContainer_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/addSlice/AddSliceContainer_spec.tsx
diff --git a/superset-frontend/spec/javascripts/chart/ChartRenderer_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/chart/ChartRenderer_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/chart/ChartRenderer_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/chart/ChartRenderer_spec.jsx
diff --git a/superset-frontend/spec/javascripts/chart/chartActions_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/chart/chartActions_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/chart/chartActions_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/chart/chartActions_spec.js
diff --git a/superset-frontend/spec/javascripts/chart/chartReducers_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/chart/chartReducers_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/chart/chartReducers_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/chart/chartReducers_spec.js
diff --git a/superset-frontend/spec/javascripts/components/AlteredSliceTag_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/AlteredSliceTag_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/AlteredSliceTag_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/AlteredSliceTag_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/AnchorLink_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/AnchorLink_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/AnchorLink_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/AnchorLink_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/AsyncSelect_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/AsyncSelect_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/AsyncSelect_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/AsyncSelect_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/CachedLabel_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/CachedLabel_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/CachedLabel_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/CachedLabel_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/ColumnTypeLabel_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/ColumnTypeLabel_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/ColumnTypeLabel_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/ColumnTypeLabel_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/ConfirmStatusChange_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/ConfirmStatusChange_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/ConfirmStatusChange_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/ConfirmStatusChange_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/CopyToClipboard_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/CopyToClipboard_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/CopyToClipboard_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/CopyToClipboard_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/ErrorMessage/getErrorMessageComponentRegistry_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/ErrorMessage/getErrorMessageComponentRegistry_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/ErrorMessage/getErrorMessageComponentRegistry_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/ErrorMessage/getErrorMessageComponentRegistry_spec.tsx
diff --git a/superset-frontend/spec/javascripts/components/FilterableTable/FilterableTable_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/FilterableTable/FilterableTable_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/FilterableTable/FilterableTable_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/FilterableTable/FilterableTable_spec.tsx
diff --git a/superset-frontend/spec/javascripts/components/FormRow_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/FormRow_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/FormRow_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/FormRow_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/ListView/ListView_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/ListView/ListView_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/ListView/ListView_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/ListView/ListView_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/Menu_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/Menu_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/Menu_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/Menu_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/ModalTrigger_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/ModalTrigger_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/ModalTrigger_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/ModalTrigger_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/OnPasteSelect_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/OnPasteSelect_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/OnPasteSelect_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/OnPasteSelect_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/PopoverSection_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/PopoverSection_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/PopoverSection_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/PopoverSection_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/SearchInput_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/SearchInput_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/SearchInput_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/SearchInput_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/SubMenu_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/SubMenu_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/SubMenu_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/SubMenu_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/SupersetResourceSelect_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/SupersetResourceSelect_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/SupersetResourceSelect_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/SupersetResourceSelect_spec.tsx
diff --git a/superset-frontend/spec/javascripts/components/TableSelector_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/TableSelector_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/TableSelector_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/TableSelector_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/TableView/TableView_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/TableView/TableView_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/TableView/TableView_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/TableView/TableView_spec.tsx
diff --git a/superset-frontend/spec/javascripts/components/Timer_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/Timer_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/Timer_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/Timer_spec.tsx
diff --git a/superset-frontend/spec/javascripts/components/URLShortLinkButton_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/URLShortLinkButton_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/URLShortLinkButton_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/URLShortLinkButton_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/URLShortLinkModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/components/URLShortLinkModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/components/URLShortLinkModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/URLShortLinkModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/components/fixtures/AlteredSliceTag.js b/superset-frontend/packages/superset-frontend/spec/javascripts/components/fixtures/AlteredSliceTag.js
similarity index 100%
rename from superset-frontend/spec/javascripts/components/fixtures/AlteredSliceTag.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/components/fixtures/AlteredSliceTag.js
diff --git a/superset-frontend/spec/javascripts/dashboard/.eslintrc b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/.eslintrc
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/.eslintrc
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/.eslintrc
diff --git a/superset-frontend/spec/javascripts/dashboard/actions/dashboardLayout_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/actions/dashboardLayout_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/actions/dashboardLayout_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/actions/dashboardLayout_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/actions/dashboardState_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/actions/dashboardState_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/actions/dashboardState_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/actions/dashboardState_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/components/CssEditor_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/CssEditor_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/CssEditor_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/CssEditor_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/DashboardBuilder_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/DashboardBuilder_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/DashboardBuilder_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/DashboardBuilder_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/DashboardGrid_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/DashboardGrid_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/DashboardGrid_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/DashboardGrid_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/Dashboard_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/Dashboard_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/Dashboard_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/Dashboard_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/FiltersBadge_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/FiltersBadge_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/FiltersBadge_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/FiltersBadge_spec.tsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/HeaderActionsDropdown_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/HeaderActionsDropdown_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/HeaderActionsDropdown_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/HeaderActionsDropdown_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/Header_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/Header_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/Header_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/Header_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/MissingChart_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/MissingChart_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/MissingChart_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/MissingChart_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/PropertiesModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/PropertiesModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/PropertiesModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/PropertiesModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/RefreshIntervalModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/RefreshIntervalModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/RefreshIntervalModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/RefreshIntervalModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/SliceAdder_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/SliceAdder_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/SliceAdder_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/SliceAdder_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/dnd/DragDroppable_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/dnd/DragDroppable_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/dnd/DragDroppable_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/dnd/DragDroppable_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/ChartHolder_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/ChartHolder_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/ChartHolder_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/ChartHolder_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Chart_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Chart_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/Chart_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Chart_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Column_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Column_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/Column_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Column_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Divider_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Divider_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/Divider_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Divider_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Header_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Header_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/Header_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Header_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Markdown_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Markdown_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/Markdown_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Markdown_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Row_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Row_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/Row_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Row_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Tab_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Tab_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/Tab_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Tab_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Tabs_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Tabs_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/Tabs_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Tabs_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/DraggableNewComponent_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/DraggableNewComponent_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/DraggableNewComponent_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/DraggableNewComponent_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewColumn_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewColumn_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewColumn_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewColumn_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewDivider_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewDivider_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewDivider_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewDivider_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewHeader_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewHeader_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewHeader_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewHeader_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewRow_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewRow_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewRow_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewRow_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewTabs_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewTabs_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewTabs_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/gridComponents/new/NewTabs_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/menu/HoverMenu_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/menu/HoverMenu_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/menu/HoverMenu_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/menu/HoverMenu_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/menu/WithPopoverMenu_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/menu/WithPopoverMenu_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/menu/WithPopoverMenu_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/menu/WithPopoverMenu_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterBar_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterBar_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterBar_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterBar_spec.tsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterConfigurationLink_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterConfigurationLink_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterConfigurationLink_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterConfigurationLink_spec.tsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterScope_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterScope_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterScope_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/FilterScope_spec.tsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/NativeFiltersModal_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/NativeFiltersModal_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/nativeFilters/NativeFiltersModal_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/nativeFilters/NativeFiltersModal_spec.tsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/resizable/ResizableContainer_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/resizable/ResizableContainer_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/resizable/ResizableContainer_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/resizable/ResizableContainer_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/components/resizable/ResizableHandle_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/resizable/ResizableHandle_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/components/resizable/ResizableHandle_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/components/resizable/ResizableHandle_spec.jsx
diff --git a/superset-frontend/spec/javascripts/dashboard/fixtures/mockNativeFilters.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/fixtures/mockNativeFilters.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/fixtures/mockNativeFilters.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/fixtures/mockNativeFilters.js
diff --git a/superset-frontend/spec/javascripts/dashboard/reducers/dashboardFilters_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/reducers/dashboardFilters_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/reducers/dashboardFilters_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/reducers/dashboardFilters_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/reducers/dashboardLayout_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/reducers/dashboardLayout_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/reducers/dashboardLayout_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/reducers/dashboardLayout_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/reducers/dashboardState_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/reducers/dashboardState_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/reducers/dashboardState_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/reducers/dashboardState_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/reducers/sliceEntities_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/reducers/sliceEntities_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/reducers/sliceEntities_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/reducers/sliceEntities_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/componentIsResizable_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/componentIsResizable_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/componentIsResizable_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/componentIsResizable_spec.ts
diff --git a/superset-frontend/spec/javascripts/dashboard/util/dnd-reorder_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/dnd-reorder_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/dnd-reorder_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/dnd-reorder_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/dropOverflowsParent_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/dropOverflowsParent_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/dropOverflowsParent_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/dropOverflowsParent_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/findFirstParentContainer_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/findFirstParentContainer_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/findFirstParentContainer_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/findFirstParentContainer_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/findParentId_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/findParentId_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/findParentId_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/findParentId_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/findTabIndexByComponentId_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/findTabIndexByComponentId_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/findTabIndexByComponentId_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/findTabIndexByComponentId_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getChartAndLabelComponentIdFromPath_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getChartAndLabelComponentIdFromPath_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getChartAndLabelComponentIdFromPath_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getChartAndLabelComponentIdFromPath_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getChartIdsFromLayout_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getChartIdsFromLayout_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getChartIdsFromLayout_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getChartIdsFromLayout_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getDashboardUrl_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getDashboardUrl_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getDashboardUrl_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getDashboardUrl_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getDetailedComponentWidth_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getDetailedComponentWidth_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getDetailedComponentWidth_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getDetailedComponentWidth_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getDropPosition_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getDropPosition_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getDropPosition_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getDropPosition_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getEffectiveExtraFilters_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getEffectiveExtraFilters_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getEffectiveExtraFilters_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getEffectiveExtraFilters_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getFilterConfigsFromFormdata_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getFilterConfigsFromFormdata_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getFilterConfigsFromFormdata_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getFilterConfigsFromFormdata_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getFilterScopeFromNodesTree_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getFilterScopeFromNodesTree_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getFilterScopeFromNodesTree_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getFilterScopeFromNodesTree_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getFormDataWithExtraFilters_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getFormDataWithExtraFilters_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getFormDataWithExtraFilters_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getFormDataWithExtraFilters_spec.ts
diff --git a/superset-frontend/spec/javascripts/dashboard/util/getLeafComponentIdFromPath_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getLeafComponentIdFromPath_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/getLeafComponentIdFromPath_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/getLeafComponentIdFromPath_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/isDashboardEmpty_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/isDashboardEmpty_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/isDashboardEmpty_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/isDashboardEmpty_spec.ts
diff --git a/superset-frontend/spec/javascripts/dashboard/util/isValidChild_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/isValidChild_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/isValidChild_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/isValidChild_spec.ts
diff --git a/superset-frontend/spec/javascripts/dashboard/util/newComponentFactory_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/newComponentFactory_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/newComponentFactory_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/newComponentFactory_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/newEntitiesFromDrop_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/newEntitiesFromDrop_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/newEntitiesFromDrop_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/newEntitiesFromDrop_spec.js
diff --git a/superset-frontend/spec/javascripts/dashboard/util/updateComponentParentsList_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/updateComponentParentsList_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/dashboard/util/updateComponentParentsList_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/dashboard/util/updateComponentParentsList_spec.js
diff --git a/superset-frontend/spec/javascripts/datasource/ChangeDatasourceModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/datasource/ChangeDatasourceModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/datasource/ChangeDatasourceModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/datasource/ChangeDatasourceModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/datasource/DatasourceEditor_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/datasource/DatasourceEditor_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/datasource/DatasourceEditor_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/datasource/DatasourceEditor_spec.jsx
diff --git a/superset-frontend/spec/javascripts/datasource/DatasourceModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/datasource/DatasourceModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/datasource/DatasourceModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/datasource/DatasourceModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/datasource/fixtures.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/datasource/fixtures.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/datasource/fixtures.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/datasource/fixtures.tsx
diff --git a/superset-frontend/spec/javascripts/explore/AdhocFilter_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/AdhocFilter_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/AdhocFilter_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/AdhocFilter_spec.js
diff --git a/superset-frontend/spec/javascripts/explore/AdhocMetric_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/AdhocMetric_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/AdhocMetric_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/AdhocMetric_spec.js
diff --git a/superset-frontend/spec/javascripts/explore/components/AdhocFilterControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AdhocFilterControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopoverSimpleTabContent_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopoverSimpleTabContent_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopoverSimpleTabContent_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopoverSimpleTabContent_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopoverSqlTabContent_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopoverSqlTabContent_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopoverSqlTabContent_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopoverSqlTabContent_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopover_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopover_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopover_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterEditPopover_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/AdhocFilterOption_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterOption_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AdhocFilterOption_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocFilterOption_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/AdhocMetricEditPopoverTitle_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocMetricEditPopoverTitle_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AdhocMetricEditPopoverTitle_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocMetricEditPopoverTitle_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/AdhocMetricEditPopover_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocMetricEditPopover_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AdhocMetricEditPopover_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocMetricEditPopover_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/AdhocMetricOption_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocMetricOption_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AdhocMetricOption_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocMetricOption_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/AdhocMetricStaticOption_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocMetricStaticOption_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AdhocMetricStaticOption_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AdhocMetricStaticOption_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/AggregateOption_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AggregateOption_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/AggregateOption_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/AggregateOption_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/BoundsControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/BoundsControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/BoundsControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/BoundsControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/CheckboxControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/CheckboxControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/CheckboxControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/CheckboxControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/ColorPickerControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ColorPickerControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/ColorPickerControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ColorPickerControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/ColorScheme_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ColorScheme_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/ColorScheme_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ColorScheme_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/ControlPanelsContainer_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ControlPanelsContainer_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/ControlPanelsContainer_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ControlPanelsContainer_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/ControlRow_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ControlRow_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/ControlRow_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ControlRow_spec.tsx
diff --git a/superset-frontend/spec/javascripts/explore/components/DatasourceControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DatasourceControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/DatasourceControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DatasourceControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/DatasourcePanel_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DatasourcePanel_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/DatasourcePanel_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DatasourcePanel_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/DateFilterControl/utils_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DateFilterControl/utils_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/DateFilterControl/utils_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DateFilterControl/utils_spec.ts
diff --git a/superset-frontend/spec/javascripts/explore/components/DateFilterControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DateFilterControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/DateFilterControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DateFilterControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/DisplayQueryButton_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DisplayQueryButton_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/DisplayQueryButton_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/DisplayQueryButton_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/EmbedCodeButton_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/EmbedCodeButton_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/EmbedCodeButton_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/EmbedCodeButton_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/ExploreActionButtons_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ExploreActionButtons_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/ExploreActionButtons_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ExploreActionButtons_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/ExploreChartHeader_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ExploreChartHeader_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/ExploreChartHeader_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ExploreChartHeader_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/ExploreChartPanel_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ExploreChartPanel_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/ExploreChartPanel_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ExploreChartPanel_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/ExploreViewContainer_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ExploreViewContainer_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/ExploreViewContainer_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ExploreViewContainer_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/FilterBoxItemControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/FilterBoxItemControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/FilterBoxItemControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/FilterBoxItemControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/FilterBox_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/FilterBox_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/FilterBox_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/FilterBox_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/FilterDefinitionOption_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/FilterDefinitionOption_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/FilterDefinitionOption_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/FilterDefinitionOption_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/FixedOrMetricControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/FixedOrMetricControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/FixedOrMetricControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/FixedOrMetricControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/MetricDefinitionOption_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/MetricDefinitionOption_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/MetricDefinitionOption_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/MetricDefinitionOption_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/MetricDefinitionValue_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/MetricDefinitionValue_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/MetricDefinitionValue_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/MetricDefinitionValue_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/MetricsControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/MetricsControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/MetricsControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/MetricsControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/QueryAndSaveBtns_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/QueryAndSaveBtns_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/QueryAndSaveBtns_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/QueryAndSaveBtns_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/RowCountLabel_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/RowCountLabel_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/RowCountLabel_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/RowCountLabel_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/RunQueryActionButton_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/RunQueryActionButton_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/RunQueryActionButton_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/RunQueryActionButton_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/SaveModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/SaveModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/SaveModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/SaveModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/SelectControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/SelectControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/SelectControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/SelectControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/TextArea_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/TextArea_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/TextArea_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/TextArea_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/TimeSeriesColumnControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/TimeSeriesColumnControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/TimeSeriesColumnControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/TimeSeriesColumnControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/ViewportControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ViewportControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/ViewportControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/ViewportControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/VizTypeControl_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/VizTypeControl_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/VizTypeControl_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/VizTypeControl_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/components/withAsyncVerification_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/withAsyncVerification_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/components/withAsyncVerification_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/components/withAsyncVerification_spec.tsx
diff --git a/superset-frontend/spec/javascripts/explore/controlUtils_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/controlUtils_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/controlUtils_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/controlUtils_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/exploreActions_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/exploreActions_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/exploreActions_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/exploreActions_spec.js
diff --git a/superset-frontend/spec/javascripts/explore/fixtures.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/fixtures.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/fixtures.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/fixtures.jsx
diff --git a/superset-frontend/spec/javascripts/explore/store_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/store_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/store_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/store_spec.jsx
diff --git a/superset-frontend/spec/javascripts/explore/utils_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/explore/utils_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/explore/utils_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/explore/utils_spec.jsx
diff --git a/superset-frontend/spec/javascripts/filters/utils_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/filters/utils_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/filters/utils_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/filters/utils_spec.ts
diff --git a/superset-frontend/spec/javascripts/messageToasts/.eslintrc b/superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/.eslintrc
similarity index 100%
rename from superset-frontend/spec/javascripts/messageToasts/.eslintrc
rename to superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/.eslintrc
diff --git a/superset-frontend/spec/javascripts/messageToasts/components/ToastPresenter_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/components/ToastPresenter_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/messageToasts/components/ToastPresenter_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/components/ToastPresenter_spec.jsx
diff --git a/superset-frontend/spec/javascripts/messageToasts/components/Toast_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/components/Toast_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/messageToasts/components/Toast_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/components/Toast_spec.jsx
diff --git a/superset-frontend/spec/javascripts/messageToasts/mockMessageToasts.js b/superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/mockMessageToasts.js
similarity index 100%
rename from superset-frontend/spec/javascripts/messageToasts/mockMessageToasts.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/mockMessageToasts.js
diff --git a/superset-frontend/spec/javascripts/messageToasts/reducers/messageToasts_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/reducers/messageToasts_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/messageToasts/reducers/messageToasts_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/reducers/messageToasts_spec.js
diff --git a/superset-frontend/spec/javascripts/messageToasts/utils/getToastsFromPyFlashMessages_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/utils/getToastsFromPyFlashMessages_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/messageToasts/utils/getToastsFromPyFlashMessages_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/messageToasts/utils/getToastsFromPyFlashMessages_spec.js
diff --git a/superset-frontend/spec/javascripts/middleware/asyncEvent_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/middleware/asyncEvent_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/middleware/asyncEvent_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/middleware/asyncEvent_spec.ts
diff --git a/superset-frontend/spec/javascripts/middleware/logger_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/middleware/logger_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/middleware/logger_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/middleware/logger_spec.js
diff --git a/superset-frontend/spec/javascripts/modules/dates_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/modules/dates_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/modules/dates_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/modules/dates_spec.js
diff --git a/superset-frontend/spec/javascripts/modules/utils_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/modules/utils_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/modules/utils_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/modules/utils_spec.jsx
diff --git a/superset-frontend/spec/javascripts/profile/App_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/profile/App_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/profile/App_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/profile/App_spec.tsx
diff --git a/superset-frontend/spec/javascripts/profile/CreatedContent_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/profile/CreatedContent_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/profile/CreatedContent_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/profile/CreatedContent_spec.tsx
diff --git a/superset-frontend/spec/javascripts/profile/EditableTitle_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/profile/EditableTitle_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/profile/EditableTitle_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/profile/EditableTitle_spec.tsx
diff --git a/superset-frontend/spec/javascripts/profile/Favorites_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/profile/Favorites_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/profile/Favorites_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/profile/Favorites_spec.tsx
diff --git a/superset-frontend/spec/javascripts/profile/RecentActivity_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/profile/RecentActivity_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/profile/RecentActivity_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/profile/RecentActivity_spec.tsx
diff --git a/superset-frontend/spec/javascripts/profile/Security_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/profile/Security_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/profile/Security_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/profile/Security_spec.tsx
diff --git a/superset-frontend/spec/javascripts/profile/UserInfo_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/profile/UserInfo_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/profile/UserInfo_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/profile/UserInfo_spec.tsx
diff --git a/superset-frontend/spec/javascripts/profile/fixtures.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/profile/fixtures.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/profile/fixtures.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/profile/fixtures.tsx
diff --git a/superset-frontend/spec/javascripts/showSavedQuery/utils_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/showSavedQuery/utils_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/showSavedQuery/utils_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/showSavedQuery/utils_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/App_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/App_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/App_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/App_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/ColumnElement_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/ColumnElement_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/ColumnElement_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/ColumnElement_spec.tsx
diff --git a/superset-frontend/spec/javascripts/sqllab/ExploreResultsButton_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/ExploreResultsButton_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/ExploreResultsButton_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/ExploreResultsButton_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/HighlightedSql_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/HighlightedSql_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/HighlightedSql_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/HighlightedSql_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/IconTooltip_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/IconTooltip_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/IconTooltip_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/IconTooltip_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/QueryAutoRefresh_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/QueryAutoRefresh_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/QueryAutoRefresh_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/QueryAutoRefresh_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/QuerySearch_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/QuerySearch_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/QuerySearch_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/QuerySearch_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/QueryStateLabel_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/QueryStateLabel_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/QueryStateLabel_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/QueryStateLabel_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/QueryTable_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/QueryTable_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/QueryTable_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/QueryTable_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/ResultSet_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/ResultSet_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/ResultSet_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/ResultSet_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/SaveDatasetModal_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SaveDatasetModal_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/SaveDatasetModal_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SaveDatasetModal_spec.tsx
diff --git a/superset-frontend/spec/javascripts/sqllab/SaveQuery_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SaveQuery_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/SaveQuery_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SaveQuery_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/ShareSqlLabQuery_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/ShareSqlLabQuery_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/ShareSqlLabQuery_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/ShareSqlLabQuery_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/SouthPane_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SouthPane_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/SouthPane_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SouthPane_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/SqlEditorLeftBar_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SqlEditorLeftBar_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/SqlEditorLeftBar_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SqlEditorLeftBar_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/SqlEditor_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SqlEditor_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/SqlEditor_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/SqlEditor_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/TabStatusIcon_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/TabStatusIcon_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/TabStatusIcon_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/TabStatusIcon_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/TabbedSqlEditors_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/TabbedSqlEditors_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/TabbedSqlEditors_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/TabbedSqlEditors_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/TableElement_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/TableElement_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/TableElement_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/TableElement_spec.jsx
diff --git a/superset-frontend/spec/javascripts/sqllab/actions/sqlLab_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/actions/sqlLab_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/actions/sqlLab_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/actions/sqlLab_spec.js
diff --git a/superset-frontend/spec/javascripts/sqllab/fixtures.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/fixtures.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/fixtures.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/fixtures.ts
diff --git a/superset-frontend/spec/javascripts/sqllab/reducers/sqlLab_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/reducers/sqlLab_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/reducers/sqlLab_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/reducers/sqlLab_spec.js
diff --git a/superset-frontend/spec/javascripts/sqllab/utils/emptyQueryResults_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/utils/emptyQueryResults_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/sqllab/utils/emptyQueryResults_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/sqllab/utils/emptyQueryResults_spec.js
diff --git a/superset-frontend/spec/javascripts/utils/cacheWrapper_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/utils/cacheWrapper_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/utils/cacheWrapper_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/utils/cacheWrapper_spec.ts
diff --git a/superset-frontend/spec/javascripts/utils/common_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/utils/common_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/utils/common_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/utils/common_spec.jsx
diff --git a/superset-frontend/spec/javascripts/utils/getClientErrorObject_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/utils/getClientErrorObject_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/utils/getClientErrorObject_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/utils/getClientErrorObject_spec.ts
diff --git a/superset-frontend/spec/javascripts/utils/getControlsForVizType_spec.js b/superset-frontend/packages/superset-frontend/spec/javascripts/utils/getControlsForVizType_spec.js
similarity index 100%
rename from superset-frontend/spec/javascripts/utils/getControlsForVizType_spec.js
rename to superset-frontend/packages/superset-frontend/spec/javascripts/utils/getControlsForVizType_spec.js
diff --git a/superset-frontend/spec/javascripts/utils/parseCookie_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/utils/parseCookie_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/utils/parseCookie_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/utils/parseCookie_spec.ts
diff --git a/superset-frontend/spec/javascripts/utils/safeStringify_spec.ts b/superset-frontend/packages/superset-frontend/spec/javascripts/utils/safeStringify_spec.ts
similarity index 100%
rename from superset-frontend/spec/javascripts/utils/safeStringify_spec.ts
rename to superset-frontend/packages/superset-frontend/spec/javascripts/utils/safeStringify_spec.ts
diff --git a/superset-frontend/spec/javascripts/views/CRUD/alert/AlertList_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/alert/AlertList_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/alert/AlertList_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/alert/AlertList_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/alert/AlertReportModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/alert/AlertReportModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/alert/AlertReportModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/alert/AlertReportModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/alert/ExecutionLog_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/alert/ExecutionLog_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/alert/ExecutionLog_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/alert/ExecutionLog_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/annotation/AnnotationList_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/annotation/AnnotationList_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/annotation/AnnotationList_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/annotation/AnnotationList_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/annotation/AnnotationModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/annotation/AnnotationModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/annotation/AnnotationModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/annotation/AnnotationModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/annotationlayers/AnnotationLayerModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/annotationlayers/AnnotationLayerModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/annotationlayers/AnnotationLayerModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/annotationlayers/AnnotationLayerModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/annotationlayers/AnnotationLayersList_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/annotationlayers/AnnotationLayersList_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/annotationlayers/AnnotationLayersList_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/annotationlayers/AnnotationLayersList_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/chart/ChartList_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/chart/ChartList_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/chart/ChartList_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/chart/ChartList_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/csstemplates/CssTemplateModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/csstemplates/CssTemplateModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/csstemplates/CssTemplateModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/csstemplates/CssTemplateModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/csstemplates/CssTemplatesList_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/csstemplates/CssTemplatesList_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/csstemplates/CssTemplatesList_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/csstemplates/CssTemplatesList_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/dashboard/DashboardList_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/dashboard/DashboardList_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/dashboard/DashboardList_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/dashboard/DashboardList_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/data/database/DatabaseList_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/database/DatabaseList_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/data/database/DatabaseList_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/database/DatabaseList_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/data/database/DatabaseModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/database/DatabaseModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/data/database/DatabaseModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/database/DatabaseModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/data/dataset/DatasetList_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/dataset/DatasetList_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/data/dataset/DatasetList_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/dataset/DatasetList_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/data/savedquery/SavedQueryList_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/savedquery/SavedQueryList_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/data/savedquery/SavedQueryList_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/savedquery/SavedQueryList_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/data/savedquery/SavedQueryPreviewModal_spec.jsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/savedquery/SavedQueryPreviewModal_spec.jsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/data/savedquery/SavedQueryPreviewModal_spec.jsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/data/savedquery/SavedQueryPreviewModal_spec.jsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/welcome/ActivityTable_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/ActivityTable_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/welcome/ActivityTable_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/ActivityTable_spec.tsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/welcome/ChartTable_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/ChartTable_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/welcome/ChartTable_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/ChartTable_spec.tsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/welcome/DashboardTable_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/DashboardTable_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/welcome/DashboardTable_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/DashboardTable_spec.tsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/welcome/EmptyState_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/EmptyState_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/welcome/EmptyState_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/EmptyState_spec.tsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/welcome/SavedQueries_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/SavedQueries_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/welcome/SavedQueries_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/SavedQueries_spec.tsx
diff --git a/superset-frontend/spec/javascripts/views/CRUD/welcome/Welcome_spec.tsx b/superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/Welcome_spec.tsx
similarity index 100%
rename from superset-frontend/spec/javascripts/views/CRUD/welcome/Welcome_spec.tsx
rename to superset-frontend/packages/superset-frontend/spec/javascripts/views/CRUD/welcome/Welcome_spec.tsx
diff --git a/superset-frontend/src/CRUD/CollectionTable.tsx b/superset-frontend/packages/superset-frontend/src/CRUD/CollectionTable.tsx
similarity index 100%
rename from superset-frontend/src/CRUD/CollectionTable.tsx
rename to superset-frontend/packages/superset-frontend/src/CRUD/CollectionTable.tsx
diff --git a/superset-frontend/src/CRUD/Field.jsx b/superset-frontend/packages/superset-frontend/src/CRUD/Field.jsx
similarity index 100%
rename from superset-frontend/src/CRUD/Field.jsx
rename to superset-frontend/packages/superset-frontend/src/CRUD/Field.jsx
diff --git a/superset-frontend/src/CRUD/Fieldset.jsx b/superset-frontend/packages/superset-frontend/src/CRUD/Fieldset.jsx
similarity index 100%
rename from superset-frontend/src/CRUD/Fieldset.jsx
rename to superset-frontend/packages/superset-frontend/src/CRUD/Fieldset.jsx
diff --git a/superset-frontend/src/CRUD/crud.less b/superset-frontend/packages/superset-frontend/src/CRUD/crud.less
similarity index 100%
rename from superset-frontend/src/CRUD/crud.less
rename to superset-frontend/packages/superset-frontend/src/CRUD/crud.less
diff --git a/superset-frontend/src/CRUD/utils.js b/superset-frontend/packages/superset-frontend/src/CRUD/utils.js
similarity index 100%
rename from superset-frontend/src/CRUD/utils.js
rename to superset-frontend/packages/superset-frontend/src/CRUD/utils.js
diff --git a/superset-frontend/src/SqlLab/App.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/App.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/App.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/App.jsx
diff --git a/superset-frontend/src/SqlLab/actions/sqlLab.js b/superset-frontend/packages/superset-frontend/src/SqlLab/actions/sqlLab.js
similarity index 100%
rename from superset-frontend/src/SqlLab/actions/sqlLab.js
rename to superset-frontend/packages/superset-frontend/src/SqlLab/actions/sqlLab.js
diff --git a/superset-frontend/src/SqlLab/components/AceEditorWrapper.tsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/AceEditorWrapper.tsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/AceEditorWrapper.tsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/AceEditorWrapper.tsx
diff --git a/superset-frontend/src/SqlLab/components/App.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/App.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/App.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/App.jsx
diff --git a/superset-frontend/src/SqlLab/components/ColumnElement.tsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/ColumnElement.tsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/ColumnElement.tsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/ColumnElement.tsx
diff --git a/superset-frontend/src/SqlLab/components/EstimateQueryCostButton.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/EstimateQueryCostButton.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/EstimateQueryCostButton.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/EstimateQueryCostButton.jsx
diff --git a/superset-frontend/src/SqlLab/components/ExploreCtasResultsButton.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/ExploreCtasResultsButton.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/ExploreCtasResultsButton.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/ExploreCtasResultsButton.jsx
diff --git a/superset-frontend/src/SqlLab/components/ExploreResultsButton.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/ExploreResultsButton.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/ExploreResultsButton.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/ExploreResultsButton.jsx
diff --git a/superset-frontend/src/SqlLab/components/HighlightedSql.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/HighlightedSql.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/HighlightedSql.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/HighlightedSql.jsx
diff --git a/superset-frontend/src/SqlLab/components/QueryAutoRefresh.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/QueryAutoRefresh.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/QueryAutoRefresh.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/QueryAutoRefresh.jsx
diff --git a/superset-frontend/src/SqlLab/components/QueryHistory.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/QueryHistory.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/QueryHistory.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/QueryHistory.jsx
diff --git a/superset-frontend/src/SqlLab/components/QuerySearch.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/QuerySearch.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/QuerySearch.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/QuerySearch.jsx
diff --git a/superset-frontend/src/SqlLab/components/QueryStateLabel.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/QueryStateLabel.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/QueryStateLabel.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/QueryStateLabel.jsx
diff --git a/superset-frontend/src/SqlLab/components/QueryTable.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/QueryTable.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/QueryTable.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/QueryTable.jsx
diff --git a/superset-frontend/src/SqlLab/components/ResultSet.tsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/ResultSet.tsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/ResultSet.tsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/ResultSet.tsx
diff --git a/superset-frontend/src/SqlLab/components/RunQueryActionButton.tsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/RunQueryActionButton.tsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/RunQueryActionButton.tsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/RunQueryActionButton.tsx
diff --git a/superset-frontend/src/SqlLab/components/SaveDatasetModal.tsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/SaveDatasetModal.tsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/SaveDatasetModal.tsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/SaveDatasetModal.tsx
diff --git a/superset-frontend/src/SqlLab/components/SaveQuery.tsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/SaveQuery.tsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/SaveQuery.tsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/SaveQuery.tsx
diff --git a/superset-frontend/src/SqlLab/components/ScheduleQueryButton.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/ScheduleQueryButton.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/ScheduleQueryButton.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/ScheduleQueryButton.jsx
diff --git a/superset-frontend/src/SqlLab/components/ScheduleQueryButton.less b/superset-frontend/packages/superset-frontend/src/SqlLab/components/ScheduleQueryButton.less
similarity index 100%
rename from superset-frontend/src/SqlLab/components/ScheduleQueryButton.less
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/ScheduleQueryButton.less
diff --git a/superset-frontend/src/SqlLab/components/ShareSqlLabQuery.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/ShareSqlLabQuery.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/ShareSqlLabQuery.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/ShareSqlLabQuery.jsx
diff --git a/superset-frontend/src/SqlLab/components/ShowSQL.tsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/ShowSQL.tsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/ShowSQL.tsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/ShowSQL.tsx
diff --git a/superset-frontend/src/SqlLab/components/SouthPane.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/SouthPane.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/SouthPane.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/SouthPane.jsx
diff --git a/superset-frontend/src/SqlLab/components/SqlEditor.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/SqlEditor.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/SqlEditor.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/SqlEditor.jsx
diff --git a/superset-frontend/src/SqlLab/components/SqlEditorLeftBar.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/SqlEditorLeftBar.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/SqlEditorLeftBar.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/SqlEditorLeftBar.jsx
diff --git a/superset-frontend/src/SqlLab/components/TabStatusIcon.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/TabStatusIcon.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/TabStatusIcon.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/TabStatusIcon.jsx
diff --git a/superset-frontend/src/SqlLab/components/TabbedSqlEditors.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/TabbedSqlEditors.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/TabbedSqlEditors.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/TabbedSqlEditors.jsx
diff --git a/superset-frontend/src/SqlLab/components/TableElement.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/TableElement.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/TableElement.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/TableElement.jsx
diff --git a/superset-frontend/src/SqlLab/components/TemplateParamsEditor.jsx b/superset-frontend/packages/superset-frontend/src/SqlLab/components/TemplateParamsEditor.jsx
similarity index 100%
rename from superset-frontend/src/SqlLab/components/TemplateParamsEditor.jsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/components/TemplateParamsEditor.jsx
diff --git a/superset-frontend/src/SqlLab/constants.ts b/superset-frontend/packages/superset-frontend/src/SqlLab/constants.ts
similarity index 100%
rename from superset-frontend/src/SqlLab/constants.ts
rename to superset-frontend/packages/superset-frontend/src/SqlLab/constants.ts
diff --git a/superset-frontend/src/SqlLab/index.tsx b/superset-frontend/packages/superset-frontend/src/SqlLab/index.tsx
similarity index 100%
rename from superset-frontend/src/SqlLab/index.tsx
rename to superset-frontend/packages/superset-frontend/src/SqlLab/index.tsx
diff --git a/superset-frontend/src/SqlLab/main.less b/superset-frontend/packages/superset-frontend/src/SqlLab/main.less
similarity index 100%
rename from superset-frontend/src/SqlLab/main.less
rename to superset-frontend/packages/superset-frontend/src/SqlLab/main.less
diff --git a/superset-frontend/src/SqlLab/reducers/common.js b/superset-frontend/packages/superset-frontend/src/SqlLab/reducers/common.js
similarity index 100%
rename from superset-frontend/src/SqlLab/reducers/common.js
rename to superset-frontend/packages/superset-frontend/src/SqlLab/reducers/common.js
diff --git a/superset-frontend/src/SqlLab/reducers/getInitialState.js b/superset-frontend/packages/superset-frontend/src/SqlLab/reducers/getInitialState.js
similarity index 100%
rename from superset-frontend/src/SqlLab/reducers/getInitialState.js
rename to superset-frontend/packages/superset-frontend/src/SqlLab/reducers/getInitialState.js
diff --git a/superset-frontend/src/SqlLab/reducers/getInitialState.test.ts b/superset-frontend/packages/superset-frontend/src/SqlLab/reducers/getInitialState.test.ts
similarity index 100%
rename from superset-frontend/src/SqlLab/reducers/getInitialState.test.ts
rename to superset-frontend/packages/superset-frontend/src/SqlLab/reducers/getInitialState.test.ts
diff --git a/superset-frontend/src/SqlLab/reducers/index.js b/superset-frontend/packages/superset-frontend/src/SqlLab/reducers/index.js
similarity index 100%
rename from superset-frontend/src/SqlLab/reducers/index.js
rename to superset-frontend/packages/superset-frontend/src/SqlLab/reducers/index.js
diff --git a/superset-frontend/src/SqlLab/reducers/localStorageUsage.js b/superset-frontend/packages/superset-frontend/src/SqlLab/reducers/localStorageUsage.js
similarity index 100%
rename from superset-frontend/src/SqlLab/reducers/localStorageUsage.js
rename to superset-frontend/packages/superset-frontend/src/SqlLab/reducers/localStorageUsage.js
diff --git a/superset-frontend/src/SqlLab/reducers/sqlLab.js b/superset-frontend/packages/superset-frontend/src/SqlLab/reducers/sqlLab.js
similarity index 100%
rename from superset-frontend/src/SqlLab/reducers/sqlLab.js
rename to superset-frontend/packages/superset-frontend/src/SqlLab/reducers/sqlLab.js
diff --git a/superset-frontend/src/SqlLab/types.ts b/superset-frontend/packages/superset-frontend/src/SqlLab/types.ts
similarity index 100%
rename from superset-frontend/src/SqlLab/types.ts
rename to superset-frontend/packages/superset-frontend/src/SqlLab/types.ts
diff --git a/superset-frontend/src/SqlLab/utils/reduxStateToLocalStorageHelper.js b/superset-frontend/packages/superset-frontend/src/SqlLab/utils/reduxStateToLocalStorageHelper.js
similarity index 100%
rename from superset-frontend/src/SqlLab/utils/reduxStateToLocalStorageHelper.js
rename to superset-frontend/packages/superset-frontend/src/SqlLab/utils/reduxStateToLocalStorageHelper.js
diff --git a/superset-frontend/src/SqlLab/utils/sqlKeywords.ts b/superset-frontend/packages/superset-frontend/src/SqlLab/utils/sqlKeywords.ts
similarity index 100%
rename from superset-frontend/src/SqlLab/utils/sqlKeywords.ts
rename to superset-frontend/packages/superset-frontend/src/SqlLab/utils/sqlKeywords.ts
diff --git a/superset-frontend/src/addSlice/AddSliceContainer.tsx b/superset-frontend/packages/superset-frontend/src/addSlice/AddSliceContainer.tsx
similarity index 100%
rename from superset-frontend/src/addSlice/AddSliceContainer.tsx
rename to superset-frontend/packages/superset-frontend/src/addSlice/AddSliceContainer.tsx
diff --git a/superset-frontend/src/addSlice/App.tsx b/superset-frontend/packages/superset-frontend/src/addSlice/App.tsx
similarity index 100%
rename from superset-frontend/src/addSlice/App.tsx
rename to superset-frontend/packages/superset-frontend/src/addSlice/App.tsx
diff --git a/superset-frontend/src/addSlice/index.tsx b/superset-frontend/packages/superset-frontend/src/addSlice/index.tsx
similarity index 100%
rename from superset-frontend/src/addSlice/index.tsx
rename to superset-frontend/packages/superset-frontend/src/addSlice/index.tsx
diff --git a/superset-frontend/src/api/dataset.ts b/superset-frontend/packages/superset-frontend/src/api/dataset.ts
similarity index 100%
rename from superset-frontend/src/api/dataset.ts
rename to superset-frontend/packages/superset-frontend/src/api/dataset.ts
diff --git a/superset-frontend/src/chart/Chart.jsx b/superset-frontend/packages/superset-frontend/src/chart/Chart.jsx
similarity index 100%
rename from superset-frontend/src/chart/Chart.jsx
rename to superset-frontend/packages/superset-frontend/src/chart/Chart.jsx
diff --git a/superset-frontend/src/chart/ChartContainer.jsx b/superset-frontend/packages/superset-frontend/src/chart/ChartContainer.jsx
similarity index 100%
rename from superset-frontend/src/chart/ChartContainer.jsx
rename to superset-frontend/packages/superset-frontend/src/chart/ChartContainer.jsx
diff --git a/superset-frontend/src/chart/ChartRenderer.jsx b/superset-frontend/packages/superset-frontend/src/chart/ChartRenderer.jsx
similarity index 100%
rename from superset-frontend/src/chart/ChartRenderer.jsx
rename to superset-frontend/packages/superset-frontend/src/chart/ChartRenderer.jsx
diff --git a/superset-frontend/src/chart/chartAction.js b/superset-frontend/packages/superset-frontend/src/chart/chartAction.js
similarity index 100%
rename from superset-frontend/src/chart/chartAction.js
rename to superset-frontend/packages/superset-frontend/src/chart/chartAction.js
diff --git a/superset-frontend/src/chart/chartReducer.js b/superset-frontend/packages/superset-frontend/src/chart/chartReducer.js
similarity index 100%
rename from superset-frontend/src/chart/chartReducer.js
rename to superset-frontend/packages/superset-frontend/src/chart/chartReducer.js
diff --git a/superset-frontend/src/common/components/Badge.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Badge.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Badge.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Badge.tsx
diff --git a/superset-frontend/src/common/components/Collapse.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Collapse.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Collapse.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Collapse.tsx
diff --git a/superset-frontend/src/common/components/CronPicker.tsx b/superset-frontend/packages/superset-frontend/src/common/components/CronPicker.tsx
similarity index 100%
rename from superset-frontend/src/common/components/CronPicker.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/CronPicker.tsx
diff --git a/superset-frontend/src/common/components/DatePicker.tsx b/superset-frontend/packages/superset-frontend/src/common/components/DatePicker.tsx
similarity index 100%
rename from superset-frontend/src/common/components/DatePicker.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/DatePicker.tsx
diff --git a/superset-frontend/src/common/components/Dropdown.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Dropdown.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Dropdown.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Dropdown.tsx
diff --git a/superset-frontend/src/common/components/Fade.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Fade.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Fade.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Fade.tsx
diff --git a/superset-frontend/src/common/components/InfoTooltip.tsx b/superset-frontend/packages/superset-frontend/src/common/components/InfoTooltip.tsx
similarity index 100%
rename from superset-frontend/src/common/components/InfoTooltip.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/InfoTooltip.tsx
diff --git a/superset-frontend/src/common/components/Modal/Modal.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Modal/Modal.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Modal/Modal.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Modal/Modal.tsx
diff --git a/superset-frontend/src/common/components/Modal/index.ts b/superset-frontend/packages/superset-frontend/src/common/components/Modal/index.ts
similarity index 100%
rename from superset-frontend/src/common/components/Modal/index.ts
rename to superset-frontend/packages/superset-frontend/src/common/components/Modal/index.ts
diff --git a/superset-frontend/src/common/components/Popover.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Popover.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Popover.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Popover.tsx
diff --git a/superset-frontend/src/common/components/ProgressBar.tsx b/superset-frontend/packages/superset-frontend/src/common/components/ProgressBar.tsx
similarity index 100%
rename from superset-frontend/src/common/components/ProgressBar.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/ProgressBar.tsx
diff --git a/superset-frontend/src/common/components/Radio/Radio.stories.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Radio/Radio.stories.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Radio/Radio.stories.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Radio/Radio.stories.tsx
diff --git a/superset-frontend/src/common/components/Radio/index.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Radio/index.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Radio/index.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Radio/index.tsx
diff --git a/superset-frontend/src/common/components/Select.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Select.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Select.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Select.tsx
diff --git a/superset-frontend/src/common/components/Switch.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Switch.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Switch.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Switch.tsx
diff --git a/superset-frontend/src/common/components/Tabs/Tabs.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Tabs/Tabs.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Tabs/Tabs.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Tabs/Tabs.tsx
diff --git a/superset-frontend/src/common/components/Tabs/index.ts b/superset-frontend/packages/superset-frontend/src/common/components/Tabs/index.ts
similarity index 100%
rename from superset-frontend/src/common/components/Tabs/index.ts
rename to superset-frontend/packages/superset-frontend/src/common/components/Tabs/index.ts
diff --git a/superset-frontend/src/common/components/Tooltip.tsx b/superset-frontend/packages/superset-frontend/src/common/components/Tooltip.tsx
similarity index 100%
rename from superset-frontend/src/common/components/Tooltip.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/Tooltip.tsx
diff --git a/superset-frontend/src/common/components/common.stories.tsx b/superset-frontend/packages/superset-frontend/src/common/components/common.stories.tsx
similarity index 100%
rename from superset-frontend/src/common/components/common.stories.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/common.stories.tsx
diff --git a/superset-frontend/src/common/components/index.tsx b/superset-frontend/packages/superset-frontend/src/common/components/index.tsx
similarity index 100%
rename from superset-frontend/src/common/components/index.tsx
rename to superset-frontend/packages/superset-frontend/src/common/components/index.tsx
diff --git a/superset-frontend/src/common/hooks/useChangeEffect.ts b/superset-frontend/packages/superset-frontend/src/common/hooks/useChangeEffect.ts
similarity index 100%
rename from superset-frontend/src/common/hooks/useChangeEffect.ts
rename to superset-frontend/packages/superset-frontend/src/common/hooks/useChangeEffect.ts
diff --git a/superset-frontend/src/common/hooks/usePrevious.ts b/superset-frontend/packages/superset-frontend/src/common/hooks/usePrevious.ts
similarity index 100%
rename from superset-frontend/src/common/hooks/usePrevious.ts
rename to superset-frontend/packages/superset-frontend/src/common/hooks/usePrevious.ts
diff --git a/superset-frontend/src/components/AlteredSliceTag.jsx b/superset-frontend/packages/superset-frontend/src/components/AlteredSliceTag.jsx
similarity index 100%
rename from superset-frontend/src/components/AlteredSliceTag.jsx
rename to superset-frontend/packages/superset-frontend/src/components/AlteredSliceTag.jsx
diff --git a/superset-frontend/src/components/AnchorLink.jsx b/superset-frontend/packages/superset-frontend/src/components/AnchorLink.jsx
similarity index 100%
rename from superset-frontend/src/components/AnchorLink.jsx
rename to superset-frontend/packages/superset-frontend/src/components/AnchorLink.jsx
diff --git a/superset-frontend/src/components/AsyncAceEditor.tsx b/superset-frontend/packages/superset-frontend/src/components/AsyncAceEditor.tsx
similarity index 100%
rename from superset-frontend/src/components/AsyncAceEditor.tsx
rename to superset-frontend/packages/superset-frontend/src/components/AsyncAceEditor.tsx
diff --git a/superset-frontend/src/components/AsyncEsmComponent.tsx b/superset-frontend/packages/superset-frontend/src/components/AsyncEsmComponent.tsx
similarity index 100%
rename from superset-frontend/src/components/AsyncEsmComponent.tsx
rename to superset-frontend/packages/superset-frontend/src/components/AsyncEsmComponent.tsx
diff --git a/superset-frontend/src/components/AsyncSelect.jsx b/superset-frontend/packages/superset-frontend/src/components/AsyncSelect.jsx
similarity index 100%
rename from superset-frontend/src/components/AsyncSelect.jsx
rename to superset-frontend/packages/superset-frontend/src/components/AsyncSelect.jsx
diff --git a/superset-frontend/src/components/BootstrapSliderWrapper.jsx b/superset-frontend/packages/superset-frontend/src/components/BootstrapSliderWrapper.jsx
similarity index 100%
rename from superset-frontend/src/components/BootstrapSliderWrapper.jsx
rename to superset-frontend/packages/superset-frontend/src/components/BootstrapSliderWrapper.jsx
diff --git a/superset-frontend/src/components/BootstrapSliderWrapper.less b/superset-frontend/packages/superset-frontend/src/components/BootstrapSliderWrapper.less
similarity index 100%
rename from superset-frontend/src/components/BootstrapSliderWrapper.less
rename to superset-frontend/packages/superset-frontend/src/components/BootstrapSliderWrapper.less
diff --git a/superset-frontend/src/components/Button/Button.stories.tsx b/superset-frontend/packages/superset-frontend/src/components/Button/Button.stories.tsx
similarity index 100%
rename from superset-frontend/src/components/Button/Button.stories.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Button/Button.stories.tsx
diff --git a/superset-frontend/src/components/Button/Button.test.tsx b/superset-frontend/packages/superset-frontend/src/components/Button/Button.test.tsx
similarity index 100%
rename from superset-frontend/src/components/Button/Button.test.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Button/Button.test.tsx
diff --git a/superset-frontend/src/components/Button/index.tsx b/superset-frontend/packages/superset-frontend/src/components/Button/index.tsx
similarity index 100%
rename from superset-frontend/src/components/Button/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Button/index.tsx
diff --git a/superset-frontend/src/components/ButtonGroup/ButtonGroup.stories.tsx b/superset-frontend/packages/superset-frontend/src/components/ButtonGroup/ButtonGroup.stories.tsx
similarity index 100%
rename from superset-frontend/src/components/ButtonGroup/ButtonGroup.stories.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ButtonGroup/ButtonGroup.stories.tsx
diff --git a/superset-frontend/src/components/ButtonGroup/ButtonGroup.test.tsx b/superset-frontend/packages/superset-frontend/src/components/ButtonGroup/ButtonGroup.test.tsx
similarity index 100%
rename from superset-frontend/src/components/ButtonGroup/ButtonGroup.test.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ButtonGroup/ButtonGroup.test.tsx
diff --git a/superset-frontend/src/components/ButtonGroup/index.tsx b/superset-frontend/packages/superset-frontend/src/components/ButtonGroup/index.tsx
similarity index 100%
rename from superset-frontend/src/components/ButtonGroup/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ButtonGroup/index.tsx
diff --git a/superset-frontend/src/components/CachedLabel.jsx b/superset-frontend/packages/superset-frontend/src/components/CachedLabel.jsx
similarity index 100%
rename from superset-frontend/src/components/CachedLabel.jsx
rename to superset-frontend/packages/superset-frontend/src/components/CachedLabel.jsx
diff --git a/superset-frontend/src/components/CertifiedIconWithTooltip.tsx b/superset-frontend/packages/superset-frontend/src/components/CertifiedIconWithTooltip.tsx
similarity index 100%
rename from superset-frontend/src/components/CertifiedIconWithTooltip.tsx
rename to superset-frontend/packages/superset-frontend/src/components/CertifiedIconWithTooltip.tsx
diff --git a/superset-frontend/src/components/ChartIcon.tsx b/superset-frontend/packages/superset-frontend/src/components/ChartIcon.tsx
similarity index 100%
rename from superset-frontend/src/components/ChartIcon.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ChartIcon.tsx
diff --git a/superset-frontend/src/components/Checkbox/Checkbox.stories.jsx b/superset-frontend/packages/superset-frontend/src/components/Checkbox/Checkbox.stories.jsx
similarity index 100%
rename from superset-frontend/src/components/Checkbox/Checkbox.stories.jsx
rename to superset-frontend/packages/superset-frontend/src/components/Checkbox/Checkbox.stories.jsx
diff --git a/superset-frontend/src/components/Checkbox/Checkbox.test.tsx b/superset-frontend/packages/superset-frontend/src/components/Checkbox/Checkbox.test.tsx
similarity index 100%
rename from superset-frontend/src/components/Checkbox/Checkbox.test.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Checkbox/Checkbox.test.tsx
diff --git a/superset-frontend/src/components/Checkbox/index.tsx b/superset-frontend/packages/superset-frontend/src/components/Checkbox/index.tsx
similarity index 100%
rename from superset-frontend/src/components/Checkbox/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Checkbox/index.tsx
diff --git a/superset-frontend/src/components/CheckboxIcons.tsx b/superset-frontend/packages/superset-frontend/src/components/CheckboxIcons.tsx
similarity index 100%
rename from superset-frontend/src/components/CheckboxIcons.tsx
rename to superset-frontend/packages/superset-frontend/src/components/CheckboxIcons.tsx
diff --git a/superset-frontend/src/components/ConfirmStatusChange.tsx b/superset-frontend/packages/superset-frontend/src/components/ConfirmStatusChange.tsx
similarity index 100%
rename from superset-frontend/src/components/ConfirmStatusChange.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ConfirmStatusChange.tsx
diff --git a/superset-frontend/src/components/CopyToClipboard.jsx b/superset-frontend/packages/superset-frontend/src/components/CopyToClipboard.jsx
similarity index 100%
rename from superset-frontend/src/components/CopyToClipboard.jsx
rename to superset-frontend/packages/superset-frontend/src/components/CopyToClipboard.jsx
diff --git a/superset-frontend/src/components/DatabaseSelector.tsx b/superset-frontend/packages/superset-frontend/src/components/DatabaseSelector.tsx
similarity index 100%
rename from superset-frontend/src/components/DatabaseSelector.tsx
rename to superset-frontend/packages/superset-frontend/src/components/DatabaseSelector.tsx
diff --git a/superset-frontend/src/components/DeleteModal.tsx b/superset-frontend/packages/superset-frontend/src/components/DeleteModal.tsx
similarity index 100%
rename from superset-frontend/src/components/DeleteModal.tsx
rename to superset-frontend/packages/superset-frontend/src/components/DeleteModal.tsx
diff --git a/superset-frontend/src/components/DynamicPlugins/index.tsx b/superset-frontend/packages/superset-frontend/src/components/DynamicPlugins/index.tsx
similarity index 100%
rename from superset-frontend/src/components/DynamicPlugins/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/DynamicPlugins/index.tsx
diff --git a/superset-frontend/src/components/EditableTitle.tsx b/superset-frontend/packages/superset-frontend/src/components/EditableTitle.tsx
similarity index 100%
rename from superset-frontend/src/components/EditableTitle.tsx
rename to superset-frontend/packages/superset-frontend/src/components/EditableTitle.tsx
diff --git a/superset-frontend/src/components/ErrorBoundary.jsx b/superset-frontend/packages/superset-frontend/src/components/ErrorBoundary.jsx
similarity index 100%
rename from superset-frontend/src/components/ErrorBoundary.jsx
rename to superset-frontend/packages/superset-frontend/src/components/ErrorBoundary.jsx
diff --git a/superset-frontend/src/components/ErrorMessage/BasicErrorAlert.tsx b/superset-frontend/packages/superset-frontend/src/components/ErrorMessage/BasicErrorAlert.tsx
similarity index 100%
rename from superset-frontend/src/components/ErrorMessage/BasicErrorAlert.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ErrorMessage/BasicErrorAlert.tsx
diff --git a/superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx b/superset-frontend/packages/superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx
similarity index 100%
rename from superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx
diff --git a/superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx b/superset-frontend/packages/superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx
similarity index 100%
rename from superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx
diff --git a/superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx b/superset-frontend/packages/superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx
similarity index 100%
rename from superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx
diff --git a/superset-frontend/src/components/ErrorMessage/IssueCode.tsx b/superset-frontend/packages/superset-frontend/src/components/ErrorMessage/IssueCode.tsx
similarity index 100%
rename from superset-frontend/src/components/ErrorMessage/IssueCode.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ErrorMessage/IssueCode.tsx
diff --git a/superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx b/superset-frontend/packages/superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx
similarity index 100%
rename from superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx
diff --git a/superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx b/superset-frontend/packages/superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx
similarity index 100%
rename from superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx
diff --git a/superset-frontend/src/components/ErrorMessage/getErrorMessageComponentRegistry.ts b/superset-frontend/packages/superset-frontend/src/components/ErrorMessage/getErrorMessageComponentRegistry.ts
similarity index 100%
rename from superset-frontend/src/components/ErrorMessage/getErrorMessageComponentRegistry.ts
rename to superset-frontend/packages/superset-frontend/src/components/ErrorMessage/getErrorMessageComponentRegistry.ts
diff --git a/superset-frontend/src/components/ErrorMessage/types.ts b/superset-frontend/packages/superset-frontend/src/components/ErrorMessage/types.ts
similarity index 100%
rename from superset-frontend/src/components/ErrorMessage/types.ts
rename to superset-frontend/packages/superset-frontend/src/components/ErrorMessage/types.ts
diff --git a/superset-frontend/src/components/ExpandableList.tsx b/superset-frontend/packages/superset-frontend/src/components/ExpandableList.tsx
similarity index 100%
rename from superset-frontend/src/components/ExpandableList.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ExpandableList.tsx
diff --git a/superset-frontend/src/components/FacePile/FacePile.stories.tsx b/superset-frontend/packages/superset-frontend/src/components/FacePile/FacePile.stories.tsx
similarity index 100%
rename from superset-frontend/src/components/FacePile/FacePile.stories.tsx
rename to superset-frontend/packages/superset-frontend/src/components/FacePile/FacePile.stories.tsx
diff --git a/superset-frontend/src/components/FacePile/FacePile.test.tsx b/superset-frontend/packages/superset-frontend/src/components/FacePile/FacePile.test.tsx
similarity index 100%
rename from superset-frontend/src/components/FacePile/FacePile.test.tsx
rename to superset-frontend/packages/superset-frontend/src/components/FacePile/FacePile.test.tsx
diff --git a/superset-frontend/src/components/FacePile/index.tsx b/superset-frontend/packages/superset-frontend/src/components/FacePile/index.tsx
similarity index 100%
rename from superset-frontend/src/components/FacePile/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/FacePile/index.tsx
diff --git a/superset-frontend/src/components/FacePile/utils.tsx b/superset-frontend/packages/superset-frontend/src/components/FacePile/utils.tsx
similarity index 100%
rename from superset-frontend/src/components/FacePile/utils.tsx
rename to superset-frontend/packages/superset-frontend/src/components/FacePile/utils.tsx
diff --git a/superset-frontend/src/components/FaveStar.tsx b/superset-frontend/packages/superset-frontend/src/components/FaveStar.tsx
similarity index 100%
rename from superset-frontend/src/components/FaveStar.tsx
rename to superset-frontend/packages/superset-frontend/src/components/FaveStar.tsx
diff --git a/superset-frontend/src/components/FilterableTable/FilterableTable.tsx b/superset-frontend/packages/superset-frontend/src/components/FilterableTable/FilterableTable.tsx
similarity index 100%
rename from superset-frontend/src/components/FilterableTable/FilterableTable.tsx
rename to superset-frontend/packages/superset-frontend/src/components/FilterableTable/FilterableTable.tsx
diff --git a/superset-frontend/src/components/FilterableTable/FilterableTableStyles.less b/superset-frontend/packages/superset-frontend/src/components/FilterableTable/FilterableTableStyles.less
similarity index 100%
rename from superset-frontend/src/components/FilterableTable/FilterableTableStyles.less
rename to superset-frontend/packages/superset-frontend/src/components/FilterableTable/FilterableTableStyles.less
diff --git a/superset-frontend/src/components/FlashProvider.tsx b/superset-frontend/packages/superset-frontend/src/components/FlashProvider.tsx
similarity index 100%
rename from superset-frontend/src/components/FlashProvider.tsx
rename to superset-frontend/packages/superset-frontend/src/components/FlashProvider.tsx
diff --git a/superset-frontend/src/components/FormLabel.tsx b/superset-frontend/packages/superset-frontend/src/components/FormLabel.tsx
similarity index 100%
rename from superset-frontend/src/components/FormLabel.tsx
rename to superset-frontend/packages/superset-frontend/src/components/FormLabel.tsx
diff --git a/superset-frontend/src/components/FormRow.jsx b/superset-frontend/packages/superset-frontend/src/components/FormRow.jsx
similarity index 100%
rename from superset-frontend/src/components/FormRow.jsx
rename to superset-frontend/packages/superset-frontend/src/components/FormRow.jsx
diff --git a/superset-frontend/src/components/Hotkeys.jsx b/superset-frontend/packages/superset-frontend/src/components/Hotkeys.jsx
similarity index 100%
rename from superset-frontend/src/components/Hotkeys.jsx
rename to superset-frontend/packages/superset-frontend/src/components/Hotkeys.jsx
diff --git a/superset-frontend/src/components/Icon/icon.stories.jsx b/superset-frontend/packages/superset-frontend/src/components/Icon/icon.stories.jsx
similarity index 100%
rename from superset-frontend/src/components/Icon/icon.stories.jsx
rename to superset-frontend/packages/superset-frontend/src/components/Icon/icon.stories.jsx
diff --git a/superset-frontend/src/components/Icon/index.tsx b/superset-frontend/packages/superset-frontend/src/components/Icon/index.tsx
similarity index 100%
rename from superset-frontend/src/components/Icon/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Icon/index.tsx
diff --git a/superset-frontend/src/components/IconTooltip.tsx b/superset-frontend/packages/superset-frontend/src/components/IconTooltip.tsx
similarity index 100%
rename from superset-frontend/src/components/IconTooltip.tsx
rename to superset-frontend/packages/superset-frontend/src/components/IconTooltip.tsx
diff --git a/superset-frontend/src/components/ImportModal/ImportModal.test.tsx b/superset-frontend/packages/superset-frontend/src/components/ImportModal/ImportModal.test.tsx
similarity index 100%
rename from superset-frontend/src/components/ImportModal/ImportModal.test.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ImportModal/ImportModal.test.tsx
diff --git a/superset-frontend/src/components/ImportModal/index.tsx b/superset-frontend/packages/superset-frontend/src/components/ImportModal/index.tsx
similarity index 100%
rename from superset-frontend/src/components/ImportModal/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ImportModal/index.tsx
diff --git a/superset-frontend/src/components/IndeterminateCheckbox.tsx b/superset-frontend/packages/superset-frontend/src/components/IndeterminateCheckbox.tsx
similarity index 100%
rename from superset-frontend/src/components/IndeterminateCheckbox.tsx
rename to superset-frontend/packages/superset-frontend/src/components/IndeterminateCheckbox.tsx
diff --git a/superset-frontend/src/components/Label/Label.stories.tsx b/superset-frontend/packages/superset-frontend/src/components/Label/Label.stories.tsx
similarity index 100%
rename from superset-frontend/src/components/Label/Label.stories.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Label/Label.stories.tsx
diff --git a/superset-frontend/src/components/Label/Label.test.tsx b/superset-frontend/packages/superset-frontend/src/components/Label/Label.test.tsx
similarity index 100%
rename from superset-frontend/src/components/Label/Label.test.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Label/Label.test.tsx
diff --git a/superset-frontend/src/components/Label/index.tsx b/superset-frontend/packages/superset-frontend/src/components/Label/index.tsx
similarity index 100%
rename from superset-frontend/src/components/Label/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Label/index.tsx
diff --git a/superset-frontend/src/components/LastUpdated/LastUpdated.test.tsx b/superset-frontend/packages/superset-frontend/src/components/LastUpdated/LastUpdated.test.tsx
similarity index 100%
rename from superset-frontend/src/components/LastUpdated/LastUpdated.test.tsx
rename to superset-frontend/packages/superset-frontend/src/components/LastUpdated/LastUpdated.test.tsx
diff --git a/superset-frontend/src/components/LastUpdated/index.tsx b/superset-frontend/packages/superset-frontend/src/components/LastUpdated/index.tsx
similarity index 100%
rename from superset-frontend/src/components/LastUpdated/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/LastUpdated/index.tsx
diff --git a/superset-frontend/src/components/ListView/ActionsBar.tsx b/superset-frontend/packages/superset-frontend/src/components/ListView/ActionsBar.tsx
similarity index 100%
rename from superset-frontend/src/components/ListView/ActionsBar.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListView/ActionsBar.tsx
diff --git a/superset-frontend/src/components/ListView/CardCollection.tsx b/superset-frontend/packages/superset-frontend/src/components/ListView/CardCollection.tsx
similarity index 100%
rename from superset-frontend/src/components/ListView/CardCollection.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListView/CardCollection.tsx
diff --git a/superset-frontend/src/components/ListView/CardSortSelect.tsx b/superset-frontend/packages/superset-frontend/src/components/ListView/CardSortSelect.tsx
similarity index 100%
rename from superset-frontend/src/components/ListView/CardSortSelect.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListView/CardSortSelect.tsx
diff --git a/superset-frontend/src/components/ListView/Filters/Base.ts b/superset-frontend/packages/superset-frontend/src/components/ListView/Filters/Base.ts
similarity index 100%
rename from superset-frontend/src/components/ListView/Filters/Base.ts
rename to superset-frontend/packages/superset-frontend/src/components/ListView/Filters/Base.ts
diff --git a/superset-frontend/src/components/ListView/Filters/DateRange.tsx b/superset-frontend/packages/superset-frontend/src/components/ListView/Filters/DateRange.tsx
similarity index 100%
rename from superset-frontend/src/components/ListView/Filters/DateRange.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListView/Filters/DateRange.tsx
diff --git a/superset-frontend/src/components/ListView/Filters/Search.tsx b/superset-frontend/packages/superset-frontend/src/components/ListView/Filters/Search.tsx
similarity index 100%
rename from superset-frontend/src/components/ListView/Filters/Search.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListView/Filters/Search.tsx
diff --git a/superset-frontend/src/components/ListView/Filters/Select.tsx b/superset-frontend/packages/superset-frontend/src/components/ListView/Filters/Select.tsx
similarity index 100%
rename from superset-frontend/src/components/ListView/Filters/Select.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListView/Filters/Select.tsx
diff --git a/superset-frontend/src/components/ListView/Filters/index.tsx b/superset-frontend/packages/superset-frontend/src/components/ListView/Filters/index.tsx
similarity index 100%
rename from superset-frontend/src/components/ListView/Filters/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListView/Filters/index.tsx
diff --git a/superset-frontend/src/components/ListView/ListView.tsx b/superset-frontend/packages/superset-frontend/src/components/ListView/ListView.tsx
similarity index 100%
rename from superset-frontend/src/components/ListView/ListView.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListView/ListView.tsx
diff --git a/superset-frontend/src/components/ListView/index.ts b/superset-frontend/packages/superset-frontend/src/components/ListView/index.ts
similarity index 100%
rename from superset-frontend/src/components/ListView/index.ts
rename to superset-frontend/packages/superset-frontend/src/components/ListView/index.ts
diff --git a/superset-frontend/src/components/ListView/types.ts b/superset-frontend/packages/superset-frontend/src/components/ListView/types.ts
similarity index 100%
rename from superset-frontend/src/components/ListView/types.ts
rename to superset-frontend/packages/superset-frontend/src/components/ListView/types.ts
diff --git a/superset-frontend/src/components/ListView/utils.ts b/superset-frontend/packages/superset-frontend/src/components/ListView/utils.ts
similarity index 100%
rename from superset-frontend/src/components/ListView/utils.ts
rename to superset-frontend/packages/superset-frontend/src/components/ListView/utils.ts
diff --git a/superset-frontend/src/components/ListViewCard/ImageLoader.test.jsx b/superset-frontend/packages/superset-frontend/src/components/ListViewCard/ImageLoader.test.jsx
similarity index 100%
rename from superset-frontend/src/components/ListViewCard/ImageLoader.test.jsx
rename to superset-frontend/packages/superset-frontend/src/components/ListViewCard/ImageLoader.test.jsx
diff --git a/superset-frontend/src/components/ListViewCard/ImageLoader.tsx b/superset-frontend/packages/superset-frontend/src/components/ListViewCard/ImageLoader.tsx
similarity index 100%
rename from superset-frontend/src/components/ListViewCard/ImageLoader.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListViewCard/ImageLoader.tsx
diff --git a/superset-frontend/src/components/ListViewCard/ListViewCard.stories.tsx b/superset-frontend/packages/superset-frontend/src/components/ListViewCard/ListViewCard.stories.tsx
similarity index 100%
rename from superset-frontend/src/components/ListViewCard/ListViewCard.stories.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListViewCard/ListViewCard.stories.tsx
diff --git a/superset-frontend/src/components/ListViewCard/ListViewCard.test.jsx b/superset-frontend/packages/superset-frontend/src/components/ListViewCard/ListViewCard.test.jsx
similarity index 100%
rename from superset-frontend/src/components/ListViewCard/ListViewCard.test.jsx
rename to superset-frontend/packages/superset-frontend/src/components/ListViewCard/ListViewCard.test.jsx
diff --git a/superset-frontend/src/components/ListViewCard/index.tsx b/superset-frontend/packages/superset-frontend/src/components/ListViewCard/index.tsx
similarity index 100%
rename from superset-frontend/src/components/ListViewCard/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/ListViewCard/index.tsx
diff --git a/superset-frontend/src/components/Loading.tsx b/superset-frontend/packages/superset-frontend/src/components/Loading.tsx
similarity index 100%
rename from superset-frontend/src/components/Loading.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Loading.tsx
diff --git a/superset-frontend/src/components/Menu/LanguagePicker.tsx b/superset-frontend/packages/superset-frontend/src/components/Menu/LanguagePicker.tsx
similarity index 100%
rename from superset-frontend/src/components/Menu/LanguagePicker.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Menu/LanguagePicker.tsx
diff --git a/superset-frontend/src/components/Menu/Menu.tsx b/superset-frontend/packages/superset-frontend/src/components/Menu/Menu.tsx
similarity index 100%
rename from superset-frontend/src/components/Menu/Menu.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Menu/Menu.tsx
diff --git a/superset-frontend/src/components/Menu/MenuObject.tsx b/superset-frontend/packages/superset-frontend/src/components/Menu/MenuObject.tsx
similarity index 100%
rename from superset-frontend/src/components/Menu/MenuObject.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Menu/MenuObject.tsx
diff --git a/superset-frontend/src/components/Menu/NewMenu.tsx b/superset-frontend/packages/superset-frontend/src/components/Menu/NewMenu.tsx
similarity index 100%
rename from superset-frontend/src/components/Menu/NewMenu.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Menu/NewMenu.tsx
diff --git a/superset-frontend/src/components/Menu/SubMenu.tsx b/superset-frontend/packages/superset-frontend/src/components/Menu/SubMenu.tsx
similarity index 100%
rename from superset-frontend/src/components/Menu/SubMenu.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Menu/SubMenu.tsx
diff --git a/superset-frontend/src/components/ModalTrigger.jsx b/superset-frontend/packages/superset-frontend/src/components/ModalTrigger.jsx
similarity index 100%
rename from superset-frontend/src/components/ModalTrigger.jsx
rename to superset-frontend/packages/superset-frontend/src/components/ModalTrigger.jsx
diff --git a/superset-frontend/src/components/NavDropdown/index.tsx b/superset-frontend/packages/superset-frontend/src/components/NavDropdown/index.tsx
similarity index 100%
rename from superset-frontend/src/components/NavDropdown/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/NavDropdown/index.tsx
diff --git a/superset-frontend/src/components/OmniContainer.jsx b/superset-frontend/packages/superset-frontend/src/components/OmniContainer.jsx
similarity index 100%
rename from superset-frontend/src/components/OmniContainer.jsx
rename to superset-frontend/packages/superset-frontend/src/components/OmniContainer.jsx
diff --git a/superset-frontend/src/components/Pagination.tsx b/superset-frontend/packages/superset-frontend/src/components/Pagination.tsx
similarity index 100%
rename from superset-frontend/src/components/Pagination.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Pagination.tsx
diff --git a/superset-frontend/src/components/Popover/index.tsx b/superset-frontend/packages/superset-frontend/src/components/Popover/index.tsx
similarity index 100%
rename from superset-frontend/src/components/Popover/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Popover/index.tsx
diff --git a/superset-frontend/src/components/PopoverSection.jsx b/superset-frontend/packages/superset-frontend/src/components/PopoverSection.jsx
similarity index 100%
rename from superset-frontend/src/components/PopoverSection.jsx
rename to superset-frontend/packages/superset-frontend/src/components/PopoverSection.jsx
diff --git a/superset-frontend/src/components/RefreshChartOverlay.tsx b/superset-frontend/packages/superset-frontend/src/components/RefreshChartOverlay.tsx
similarity index 100%
rename from superset-frontend/src/components/RefreshChartOverlay.tsx
rename to superset-frontend/packages/superset-frontend/src/components/RefreshChartOverlay.tsx
diff --git a/superset-frontend/src/components/RefreshLabel.jsx b/superset-frontend/packages/superset-frontend/src/components/RefreshLabel.jsx
similarity index 100%
rename from superset-frontend/src/components/RefreshLabel.jsx
rename to superset-frontend/packages/superset-frontend/src/components/RefreshLabel.jsx
diff --git a/superset-frontend/src/components/RefreshLabel.less b/superset-frontend/packages/superset-frontend/src/components/RefreshLabel.less
similarity index 100%
rename from superset-frontend/src/components/RefreshLabel.less
rename to superset-frontend/packages/superset-frontend/src/components/RefreshLabel.less
diff --git a/superset-frontend/src/components/SearchInput.tsx b/superset-frontend/packages/superset-frontend/src/components/SearchInput.tsx
similarity index 100%
rename from superset-frontend/src/components/SearchInput.tsx
rename to superset-frontend/packages/superset-frontend/src/components/SearchInput.tsx
diff --git a/superset-frontend/src/components/Select/OnPasteSelect.jsx b/superset-frontend/packages/superset-frontend/src/components/Select/OnPasteSelect.jsx
similarity index 100%
rename from superset-frontend/src/components/Select/OnPasteSelect.jsx
rename to superset-frontend/packages/superset-frontend/src/components/Select/OnPasteSelect.jsx
diff --git a/superset-frontend/src/components/Select/Select.stories.tsx b/superset-frontend/packages/superset-frontend/src/components/Select/Select.stories.tsx
similarity index 100%
rename from superset-frontend/src/components/Select/Select.stories.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Select/Select.stories.tsx
diff --git a/superset-frontend/src/components/Select/SupersetStyledSelect.tsx b/superset-frontend/packages/superset-frontend/src/components/Select/SupersetStyledSelect.tsx
similarity index 100%
rename from superset-frontend/src/components/Select/SupersetStyledSelect.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Select/SupersetStyledSelect.tsx
diff --git a/superset-frontend/src/components/Select/WindowedSelect/WindowedMenuList.tsx b/superset-frontend/packages/superset-frontend/src/components/Select/WindowedSelect/WindowedMenuList.tsx
similarity index 100%
rename from superset-frontend/src/components/Select/WindowedSelect/WindowedMenuList.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Select/WindowedSelect/WindowedMenuList.tsx
diff --git a/superset-frontend/src/components/Select/WindowedSelect/index.tsx b/superset-frontend/packages/superset-frontend/src/components/Select/WindowedSelect/index.tsx
similarity index 100%
rename from superset-frontend/src/components/Select/WindowedSelect/index.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Select/WindowedSelect/index.tsx
diff --git a/superset-frontend/src/components/Select/WindowedSelect/windowed.tsx b/superset-frontend/packages/superset-frontend/src/components/Select/WindowedSelect/windowed.tsx
similarity index 100%
rename from superset-frontend/src/components/Select/WindowedSelect/windowed.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Select/WindowedSelect/windowed.tsx
diff --git a/superset-frontend/src/components/Select/index.ts b/superset-frontend/packages/superset-frontend/src/components/Select/index.ts
similarity index 100%
rename from superset-frontend/src/components/Select/index.ts
rename to superset-frontend/packages/superset-frontend/src/components/Select/index.ts
diff --git a/superset-frontend/src/components/Select/styles.tsx b/superset-frontend/packages/superset-frontend/src/components/Select/styles.tsx
similarity index 100%
rename from superset-frontend/src/components/Select/styles.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Select/styles.tsx
diff --git a/superset-frontend/src/components/Select/utils.ts b/superset-frontend/packages/superset-frontend/src/components/Select/utils.ts
similarity index 100%
rename from superset-frontend/src/components/Select/utils.ts
rename to superset-frontend/packages/superset-frontend/src/components/Select/utils.ts
diff --git a/superset-frontend/src/components/SupersetResourceSelect.tsx b/superset-frontend/packages/superset-frontend/src/components/SupersetResourceSelect.tsx
similarity index 100%
rename from superset-frontend/src/components/SupersetResourceSelect.tsx
rename to superset-frontend/packages/superset-frontend/src/components/SupersetResourceSelect.tsx
diff --git a/superset-frontend/src/components/TableLoader.tsx b/superset-frontend/packages/superset-frontend/src/components/TableLoader.tsx
similarity index 100%
rename from superset-frontend/src/components/TableLoader.tsx
rename to superset-frontend/packages/superset-frontend/src/components/TableLoader.tsx
diff --git a/superset-frontend/src/components/TableSelector.less b/superset-frontend/packages/superset-frontend/src/components/TableSelector.less
similarity index 100%
rename from superset-frontend/src/components/TableSelector.less
rename to superset-frontend/packages/superset-frontend/src/components/TableSelector.less
diff --git a/superset-frontend/src/components/TableSelector.tsx b/superset-frontend/packages/superset-frontend/src/components/TableSelector.tsx
similarity index 100%
rename from superset-frontend/src/components/TableSelector.tsx
rename to superset-frontend/packages/superset-frontend/src/components/TableSelector.tsx
diff --git a/superset-frontend/src/components/TableView/TableView.tsx b/superset-frontend/packages/superset-frontend/src/components/TableView/TableView.tsx
similarity index 100%
rename from superset-frontend/src/components/TableView/TableView.tsx
rename to superset-frontend/packages/superset-frontend/src/components/TableView/TableView.tsx
diff --git a/superset-frontend/src/components/TableView/index.ts b/superset-frontend/packages/superset-frontend/src/components/TableView/index.ts
similarity index 100%
rename from superset-frontend/src/components/TableView/index.ts
rename to superset-frontend/packages/superset-frontend/src/components/TableView/index.ts
diff --git a/superset-frontend/src/components/TableView/types.ts b/superset-frontend/packages/superset-frontend/src/components/TableView/types.ts
similarity index 100%
rename from superset-frontend/src/components/TableView/types.ts
rename to superset-frontend/packages/superset-frontend/src/components/TableView/types.ts
diff --git a/superset-frontend/src/components/Timer.tsx b/superset-frontend/packages/superset-frontend/src/components/Timer.tsx
similarity index 100%
rename from superset-frontend/src/components/Timer.tsx
rename to superset-frontend/packages/superset-frontend/src/components/Timer.tsx
diff --git a/superset-frontend/src/components/TooltipWrapper.jsx b/superset-frontend/packages/superset-frontend/src/components/TooltipWrapper.jsx
similarity index 100%
rename from superset-frontend/src/components/TooltipWrapper.jsx
rename to superset-frontend/packages/superset-frontend/src/components/TooltipWrapper.jsx
diff --git a/superset-frontend/src/components/URLShortLinkButton.jsx b/superset-frontend/packages/superset-frontend/src/components/URLShortLinkButton.jsx
similarity index 100%
rename from superset-frontend/src/components/URLShortLinkButton.jsx
rename to superset-frontend/packages/superset-frontend/src/components/URLShortLinkButton.jsx
diff --git a/superset-frontend/src/components/URLShortLinkModal.tsx b/superset-frontend/packages/superset-frontend/src/components/URLShortLinkModal.tsx
similarity index 100%
rename from superset-frontend/src/components/URLShortLinkModal.tsx
rename to superset-frontend/packages/superset-frontend/src/components/URLShortLinkModal.tsx
diff --git a/superset-frontend/src/components/dataViewCommon/Pagination.tsx b/superset-frontend/packages/superset-frontend/src/components/dataViewCommon/Pagination.tsx
similarity index 100%
rename from superset-frontend/src/components/dataViewCommon/Pagination.tsx
rename to superset-frontend/packages/superset-frontend/src/components/dataViewCommon/Pagination.tsx
diff --git a/superset-frontend/src/components/dataViewCommon/TableCollection.tsx b/superset-frontend/packages/superset-frontend/src/components/dataViewCommon/TableCollection.tsx
similarity index 100%
rename from superset-frontend/src/components/dataViewCommon/TableCollection.tsx
rename to superset-frontend/packages/superset-frontend/src/components/dataViewCommon/TableCollection.tsx
diff --git a/superset-frontend/src/components/dataViewCommon/index.ts b/superset-frontend/packages/superset-frontend/src/components/dataViewCommon/index.ts
similarity index 100%
rename from superset-frontend/src/components/dataViewCommon/index.ts
rename to superset-frontend/packages/superset-frontend/src/components/dataViewCommon/index.ts
diff --git a/superset-frontend/src/constants.ts b/superset-frontend/packages/superset-frontend/src/constants.ts
similarity index 100%
rename from superset-frontend/src/constants.ts
rename to superset-frontend/packages/superset-frontend/src/constants.ts
diff --git a/superset-frontend/src/dashboard/.eslintrc b/superset-frontend/packages/superset-frontend/src/dashboard/.eslintrc
similarity index 100%
rename from superset-frontend/src/dashboard/.eslintrc
rename to superset-frontend/packages/superset-frontend/src/dashboard/.eslintrc
diff --git a/superset-frontend/src/dashboard/App.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/App.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/App.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/App.jsx
diff --git a/superset-frontend/src/dashboard/actions/dashboardFilters.js b/superset-frontend/packages/superset-frontend/src/dashboard/actions/dashboardFilters.js
similarity index 100%
rename from superset-frontend/src/dashboard/actions/dashboardFilters.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/actions/dashboardFilters.js
diff --git a/superset-frontend/src/dashboard/actions/dashboardInfo.js b/superset-frontend/packages/superset-frontend/src/dashboard/actions/dashboardInfo.js
similarity index 100%
rename from superset-frontend/src/dashboard/actions/dashboardInfo.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/actions/dashboardInfo.js
diff --git a/superset-frontend/src/dashboard/actions/dashboardLayout.js b/superset-frontend/packages/superset-frontend/src/dashboard/actions/dashboardLayout.js
similarity index 100%
rename from superset-frontend/src/dashboard/actions/dashboardLayout.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/actions/dashboardLayout.js
diff --git a/superset-frontend/src/dashboard/actions/dashboardState.js b/superset-frontend/packages/superset-frontend/src/dashboard/actions/dashboardState.js
similarity index 100%
rename from superset-frontend/src/dashboard/actions/dashboardState.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/actions/dashboardState.js
diff --git a/superset-frontend/src/dashboard/actions/datasources.js b/superset-frontend/packages/superset-frontend/src/dashboard/actions/datasources.js
similarity index 100%
rename from superset-frontend/src/dashboard/actions/datasources.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/actions/datasources.js
diff --git a/superset-frontend/src/dashboard/actions/nativeFilters.ts b/superset-frontend/packages/superset-frontend/src/dashboard/actions/nativeFilters.ts
similarity index 100%
rename from superset-frontend/src/dashboard/actions/nativeFilters.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/actions/nativeFilters.ts
diff --git a/superset-frontend/src/dashboard/actions/sliceEntities.js b/superset-frontend/packages/superset-frontend/src/dashboard/actions/sliceEntities.js
similarity index 100%
rename from superset-frontend/src/dashboard/actions/sliceEntities.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/actions/sliceEntities.js
diff --git a/superset-frontend/src/dashboard/components/AddSliceCard.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/AddSliceCard.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/AddSliceCard.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/AddSliceCard.jsx
diff --git a/superset-frontend/src/dashboard/components/BuilderComponentPane.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/BuilderComponentPane.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/BuilderComponentPane.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/BuilderComponentPane.tsx
diff --git a/superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx
diff --git a/superset-frontend/src/dashboard/components/CssEditor.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/CssEditor.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/CssEditor.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/CssEditor.jsx
diff --git a/superset-frontend/src/dashboard/components/Dashboard.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/Dashboard.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/Dashboard.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/Dashboard.jsx
diff --git a/superset-frontend/src/dashboard/components/DashboardBuilder.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/DashboardBuilder.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/DashboardBuilder.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/DashboardBuilder.jsx
diff --git a/superset-frontend/src/dashboard/components/DashboardGrid.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/DashboardGrid.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/DashboardGrid.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/DashboardGrid.jsx
diff --git a/superset-frontend/src/dashboard/components/DeleteComponentButton.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/DeleteComponentButton.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/DeleteComponentButton.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/DeleteComponentButton.jsx
diff --git a/superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel.tsx
diff --git a/superset-frontend/src/dashboard/components/FiltersBadge/Styles.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/FiltersBadge/Styles.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/FiltersBadge/Styles.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/FiltersBadge/Styles.tsx
diff --git a/superset-frontend/src/dashboard/components/FiltersBadge/index.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/FiltersBadge/index.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/FiltersBadge/index.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/FiltersBadge/index.tsx
diff --git a/superset-frontend/src/dashboard/components/FiltersBadge/selectors.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/FiltersBadge/selectors.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/FiltersBadge/selectors.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/FiltersBadge/selectors.ts
diff --git a/superset-frontend/src/dashboard/components/Header.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/Header.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/Header.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/Header.jsx
diff --git a/superset-frontend/src/dashboard/components/HeaderActionsDropdown.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/HeaderActionsDropdown.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/HeaderActionsDropdown.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/HeaderActionsDropdown.jsx
diff --git a/superset-frontend/src/dashboard/components/IconButton.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/IconButton.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/IconButton.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/IconButton.jsx
diff --git a/superset-frontend/src/dashboard/components/MissingChart.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/MissingChart.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/MissingChart.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/MissingChart.jsx
diff --git a/superset-frontend/src/dashboard/components/PropertiesModal.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/PropertiesModal.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/PropertiesModal.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/PropertiesModal.jsx
diff --git a/superset-frontend/src/dashboard/components/PublishedStatus.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/PublishedStatus.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/PublishedStatus.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/PublishedStatus.jsx
diff --git a/superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx
diff --git a/superset-frontend/src/dashboard/components/SaveModal.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/SaveModal.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/SaveModal.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/SaveModal.tsx
diff --git a/superset-frontend/src/dashboard/components/SliceAdder.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/SliceAdder.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/SliceAdder.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/SliceAdder.jsx
diff --git a/superset-frontend/src/dashboard/components/SliceHeader.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/SliceHeader.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/SliceHeader.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/SliceHeader.jsx
diff --git a/superset-frontend/src/dashboard/components/SliceHeaderControls.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/SliceHeaderControls.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/SliceHeaderControls.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/SliceHeaderControls.jsx
diff --git a/superset-frontend/src/dashboard/components/StickyVerticalBar.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/StickyVerticalBar.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/StickyVerticalBar.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/StickyVerticalBar.tsx
diff --git a/superset-frontend/src/dashboard/components/UndoRedoKeylisteners.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/UndoRedoKeylisteners.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/UndoRedoKeylisteners.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/UndoRedoKeylisteners.jsx
diff --git a/superset-frontend/src/dashboard/components/dnd/AddSliceDragPreview.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/AddSliceDragPreview.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/dnd/AddSliceDragPreview.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/AddSliceDragPreview.jsx
diff --git a/superset-frontend/src/dashboard/components/dnd/DragDroppable.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/DragDroppable.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/dnd/DragDroppable.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/DragDroppable.jsx
diff --git a/superset-frontend/src/dashboard/components/dnd/DragHandle.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/DragHandle.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/dnd/DragHandle.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/DragHandle.jsx
diff --git a/superset-frontend/src/dashboard/components/dnd/dragDroppableConfig.js b/superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/dragDroppableConfig.js
similarity index 100%
rename from superset-frontend/src/dashboard/components/dnd/dragDroppableConfig.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/dragDroppableConfig.js
diff --git a/superset-frontend/src/dashboard/components/dnd/handleDrop.js b/superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/handleDrop.js
similarity index 100%
rename from superset-frontend/src/dashboard/components/dnd/handleDrop.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/handleDrop.js
diff --git a/superset-frontend/src/dashboard/components/dnd/handleHover.js b/superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/handleHover.js
similarity index 100%
rename from superset-frontend/src/dashboard/components/dnd/handleHover.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/handleHover.js
diff --git a/superset-frontend/src/dashboard/components/dnd/handleScroll.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/handleScroll.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/dnd/handleScroll.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/dnd/handleScroll.ts
diff --git a/superset-frontend/src/dashboard/components/filterscope/FilterFieldItem.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterFieldItem.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/filterscope/FilterFieldItem.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterFieldItem.jsx
diff --git a/superset-frontend/src/dashboard/components/filterscope/FilterFieldTree.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterFieldTree.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/filterscope/FilterFieldTree.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterFieldTree.jsx
diff --git a/superset-frontend/src/dashboard/components/filterscope/FilterScopeModal.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterScopeModal.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/filterscope/FilterScopeModal.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterScopeModal.tsx
diff --git a/superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx
diff --git a/superset-frontend/src/dashboard/components/filterscope/FilterScopeTree.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterScopeTree.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/filterscope/FilterScopeTree.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/FilterScopeTree.jsx
diff --git a/superset-frontend/src/dashboard/components/filterscope/renderFilterFieldTreeNodes.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/renderFilterFieldTreeNodes.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/filterscope/renderFilterFieldTreeNodes.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/renderFilterFieldTreeNodes.jsx
diff --git a/superset-frontend/src/dashboard/components/filterscope/renderFilterScopeTreeNodes.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/renderFilterScopeTreeNodes.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/filterscope/renderFilterScopeTreeNodes.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/renderFilterScopeTreeNodes.jsx
diff --git a/superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/Chart.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Column.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Column.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/Column.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Column.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Divider.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Divider.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/Divider.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Divider.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Header.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Header.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/Header.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Header.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Row.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Row.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/Row.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Row.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Tab.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Tab.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/Tab.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Tab.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/index.js b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/index.js
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/index.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/index.js
diff --git a/superset-frontend/src/dashboard/components/gridComponents/new/DraggableNewComponent.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/DraggableNewComponent.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/new/DraggableNewComponent.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/DraggableNewComponent.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx
diff --git a/superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx
diff --git a/superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.jsx
diff --git a/superset-frontend/src/dashboard/components/menu/HoverMenu.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/menu/HoverMenu.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/menu/HoverMenu.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/menu/HoverMenu.jsx
diff --git a/superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.jsx
diff --git a/superset-frontend/src/dashboard/components/menu/PopoverDropdown.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/menu/PopoverDropdown.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/menu/PopoverDropdown.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/menu/PopoverDropdown.jsx
diff --git a/superset-frontend/src/dashboard/components/menu/WithPopoverMenu.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/menu/WithPopoverMenu.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/menu/WithPopoverMenu.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/menu/WithPopoverMenu.jsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CascadeFilterControl.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CascadeFilterControl.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CascadeFilterControl.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CascadeFilterControl.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CascadePopover.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CascadePopover.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CascadePopover.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CascadePopover.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBar.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBar.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBar.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBar.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterConfigurationLink.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterConfigurationLink.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterConfigurationLink.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterConfigurationLink.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControl.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControl.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControl.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControl.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterValue.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterValue.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterValue.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterValue.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/state.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/state.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterBar/state.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/state.ts
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/types.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/types.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterBar/types.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/types.ts
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/utils.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/utils.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterBar/utils.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/utils.ts
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/CancelConfirmationAlert.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/CancelConfirmationAlert.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/CancelConfirmationAlert.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/CancelConfirmationAlert.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/ColumnSelect.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/ColumnSelect.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/ColumnSelect.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/ColumnSelect.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterConfigForm.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterConfigForm.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterConfigForm.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterConfigForm.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterConfigModal.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterConfigModal.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterConfigModal.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterConfigModal.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterScope.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterScope.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterScope.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FilterScope.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FiltersList.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FiltersList.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FiltersList.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/FiltersList.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/ScopingTree.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/ScopingTree.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/ScopingTree.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/ScopingTree.tsx
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/state.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/state.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/state.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/state.ts
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/types.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/types.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/types.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/types.ts
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/utils.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/utils.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/utils.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/FilterConfigModal/utils.ts
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/state.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/state.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/state.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/state.ts
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/types.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/types.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/types.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/types.ts
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/utils.ts b/superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/utils.ts
similarity index 100%
rename from superset-frontend/src/dashboard/components/nativeFilters/utils.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/nativeFilters/utils.ts
diff --git a/superset-frontend/src/dashboard/components/resizable/ResizableContainer.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/resizable/ResizableContainer.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/resizable/ResizableContainer.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/resizable/ResizableContainer.jsx
diff --git a/superset-frontend/src/dashboard/components/resizable/ResizableHandle.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/components/resizable/ResizableHandle.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/components/resizable/ResizableHandle.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/components/resizable/ResizableHandle.jsx
diff --git a/superset-frontend/src/dashboard/containers/Chart.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/containers/Chart.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/containers/Chart.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/containers/Chart.jsx
diff --git a/superset-frontend/src/dashboard/containers/Dashboard.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/containers/Dashboard.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/containers/Dashboard.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/containers/Dashboard.jsx
diff --git a/superset-frontend/src/dashboard/containers/DashboardBuilder.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/containers/DashboardBuilder.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/containers/DashboardBuilder.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/containers/DashboardBuilder.jsx
diff --git a/superset-frontend/src/dashboard/containers/DashboardComponent.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/containers/DashboardComponent.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/containers/DashboardComponent.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/containers/DashboardComponent.jsx
diff --git a/superset-frontend/src/dashboard/containers/DashboardGrid.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/containers/DashboardGrid.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/containers/DashboardGrid.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/containers/DashboardGrid.jsx
diff --git a/superset-frontend/src/dashboard/containers/DashboardHeader.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/containers/DashboardHeader.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/containers/DashboardHeader.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/containers/DashboardHeader.jsx
diff --git a/superset-frontend/src/dashboard/containers/FilterScope.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/containers/FilterScope.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/containers/FilterScope.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/containers/FilterScope.jsx
diff --git a/superset-frontend/src/dashboard/containers/FiltersBadge.tsx b/superset-frontend/packages/superset-frontend/src/dashboard/containers/FiltersBadge.tsx
similarity index 100%
rename from superset-frontend/src/dashboard/containers/FiltersBadge.tsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/containers/FiltersBadge.tsx
diff --git a/superset-frontend/src/dashboard/containers/SliceAdder.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/containers/SliceAdder.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/containers/SliceAdder.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/containers/SliceAdder.jsx
diff --git a/superset-frontend/src/dashboard/fixtures/emptyDashboardLayout.js b/superset-frontend/packages/superset-frontend/src/dashboard/fixtures/emptyDashboardLayout.js
similarity index 100%
rename from superset-frontend/src/dashboard/fixtures/emptyDashboardLayout.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/fixtures/emptyDashboardLayout.js
diff --git a/superset-frontend/src/dashboard/index.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/index.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/index.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/index.jsx
diff --git a/superset-frontend/src/dashboard/reducers/dashboardFilters.js b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/dashboardFilters.js
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/dashboardFilters.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/dashboardFilters.js
diff --git a/superset-frontend/src/dashboard/reducers/dashboardInfo.js b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/dashboardInfo.js
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/dashboardInfo.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/dashboardInfo.js
diff --git a/superset-frontend/src/dashboard/reducers/dashboardLayout.js b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/dashboardLayout.js
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/dashboardLayout.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/dashboardLayout.js
diff --git a/superset-frontend/src/dashboard/reducers/dashboardState.js b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/dashboardState.js
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/dashboardState.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/dashboardState.js
diff --git a/superset-frontend/src/dashboard/reducers/datasources.js b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/datasources.js
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/datasources.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/datasources.js
diff --git a/superset-frontend/src/dashboard/reducers/getInitialState.js b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/getInitialState.js
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/getInitialState.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/getInitialState.js
diff --git a/superset-frontend/src/dashboard/reducers/index.js b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/index.js
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/index.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/index.js
diff --git a/superset-frontend/src/dashboard/reducers/nativeFilters.ts b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/nativeFilters.ts
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/nativeFilters.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/nativeFilters.ts
diff --git a/superset-frontend/src/dashboard/reducers/sliceEntities.js b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/sliceEntities.js
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/sliceEntities.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/sliceEntities.js
diff --git a/superset-frontend/src/dashboard/reducers/types.ts b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/types.ts
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/types.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/types.ts
diff --git a/superset-frontend/src/dashboard/reducers/undoableDashboardLayout.js b/superset-frontend/packages/superset-frontend/src/dashboard/reducers/undoableDashboardLayout.js
similarity index 100%
rename from superset-frontend/src/dashboard/reducers/undoableDashboardLayout.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/reducers/undoableDashboardLayout.js
diff --git a/superset-frontend/src/dashboard/stylesheets/builder-sidepane.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/builder-sidepane.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/builder-sidepane.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/builder-sidepane.less
diff --git a/superset-frontend/src/dashboard/stylesheets/builder.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/builder.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/builder.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/builder.less
diff --git a/superset-frontend/src/dashboard/stylesheets/buttons.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/buttons.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/buttons.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/buttons.less
diff --git a/superset-frontend/src/dashboard/stylesheets/components/chart.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/chart.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/components/chart.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/chart.less
diff --git a/superset-frontend/src/dashboard/stylesheets/components/column.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/column.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/components/column.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/column.less
diff --git a/superset-frontend/src/dashboard/stylesheets/components/divider.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/divider.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/components/divider.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/divider.less
diff --git a/superset-frontend/src/dashboard/stylesheets/components/header.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/header.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/components/header.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/header.less
diff --git a/superset-frontend/src/dashboard/stylesheets/components/index.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/index.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/components/index.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/index.less
diff --git a/superset-frontend/src/dashboard/stylesheets/components/markdown.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/markdown.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/components/markdown.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/markdown.less
diff --git a/superset-frontend/src/dashboard/stylesheets/components/new-component.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/new-component.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/components/new-component.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/new-component.less
diff --git a/superset-frontend/src/dashboard/stylesheets/components/row.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/row.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/components/row.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/components/row.less
diff --git a/superset-frontend/src/dashboard/stylesheets/dashboard.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/dashboard.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/dashboard.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/dashboard.less
diff --git a/superset-frontend/src/dashboard/stylesheets/dnd.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/dnd.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/dnd.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/dnd.less
diff --git a/superset-frontend/src/dashboard/stylesheets/filter-scope-selector.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/filter-scope-selector.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/filter-scope-selector.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/filter-scope-selector.less
diff --git a/superset-frontend/src/dashboard/stylesheets/grid.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/grid.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/grid.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/grid.less
diff --git a/superset-frontend/src/dashboard/stylesheets/hover-menu.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/hover-menu.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/hover-menu.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/hover-menu.less
diff --git a/superset-frontend/src/dashboard/stylesheets/index.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/index.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/index.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/index.less
diff --git a/superset-frontend/src/dashboard/stylesheets/popover-menu.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/popover-menu.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/popover-menu.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/popover-menu.less
diff --git a/superset-frontend/src/dashboard/stylesheets/resizable.less b/superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/resizable.less
similarity index 100%
rename from superset-frontend/src/dashboard/stylesheets/resizable.less
rename to superset-frontend/packages/superset-frontend/src/dashboard/stylesheets/resizable.less
diff --git a/superset-frontend/src/dashboard/types.ts b/superset-frontend/packages/superset-frontend/src/dashboard/types.ts
similarity index 100%
rename from superset-frontend/src/dashboard/types.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/types.ts
diff --git a/superset-frontend/src/dashboard/util/activeDashboardFilters.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/activeDashboardFilters.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/activeDashboardFilters.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/activeDashboardFilters.js
diff --git a/superset-frontend/src/dashboard/util/activeDashboardNativeFilters.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/activeDashboardNativeFilters.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/activeDashboardNativeFilters.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/activeDashboardNativeFilters.ts
diff --git a/superset-frontend/src/dashboard/util/backgroundStyleOptions.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/backgroundStyleOptions.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/backgroundStyleOptions.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/backgroundStyleOptions.ts
diff --git a/superset-frontend/src/dashboard/util/buildFilterScopeTreeEntry.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/buildFilterScopeTreeEntry.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/buildFilterScopeTreeEntry.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/buildFilterScopeTreeEntry.js
diff --git a/superset-frontend/src/dashboard/util/charts/getEffectiveExtraFilters.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/charts/getEffectiveExtraFilters.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/charts/getEffectiveExtraFilters.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/charts/getEffectiveExtraFilters.ts
diff --git a/superset-frontend/src/dashboard/util/charts/getFormDataWithExtraFilters.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/charts/getFormDataWithExtraFilters.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/charts/getFormDataWithExtraFilters.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/charts/getFormDataWithExtraFilters.ts
diff --git a/superset-frontend/src/dashboard/util/componentIsResizable.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/componentIsResizable.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/componentIsResizable.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/componentIsResizable.ts
diff --git a/superset-frontend/src/dashboard/util/componentTypes.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/componentTypes.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/componentTypes.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/componentTypes.ts
diff --git a/superset-frontend/src/dashboard/util/constants.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/constants.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/constants.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/constants.ts
diff --git a/superset-frontend/src/dashboard/util/dnd-reorder.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/dnd-reorder.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/dnd-reorder.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/dnd-reorder.js
diff --git a/superset-frontend/src/dashboard/util/dropOverflowsParent.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/dropOverflowsParent.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/dropOverflowsParent.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/dropOverflowsParent.js
diff --git a/superset-frontend/src/dashboard/util/findFirstParentContainer.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/findFirstParentContainer.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/findFirstParentContainer.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/findFirstParentContainer.js
diff --git a/superset-frontend/src/dashboard/util/findParentId.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/findParentId.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/findParentId.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/findParentId.js
diff --git a/superset-frontend/src/dashboard/util/findTabIndexByComponentId.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/findTabIndexByComponentId.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/findTabIndexByComponentId.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/findTabIndexByComponentId.js
diff --git a/superset-frontend/src/dashboard/util/getChartAndLabelComponentIdFromPath.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getChartAndLabelComponentIdFromPath.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getChartAndLabelComponentIdFromPath.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getChartAndLabelComponentIdFromPath.js
diff --git a/superset-frontend/src/dashboard/util/getChartIdsFromLayout.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getChartIdsFromLayout.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getChartIdsFromLayout.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getChartIdsFromLayout.js
diff --git a/superset-frontend/src/dashboard/util/getComponentWidthFromDrop.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getComponentWidthFromDrop.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getComponentWidthFromDrop.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getComponentWidthFromDrop.js
diff --git a/superset-frontend/src/dashboard/util/getDashboardFilterKey.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/getDashboardFilterKey.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/getDashboardFilterKey.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getDashboardFilterKey.ts
diff --git a/superset-frontend/src/dashboard/util/getDashboardUrl.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getDashboardUrl.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getDashboardUrl.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getDashboardUrl.js
diff --git a/superset-frontend/src/dashboard/util/getDetailedComponentWidth.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getDetailedComponentWidth.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getDetailedComponentWidth.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getDetailedComponentWidth.js
diff --git a/superset-frontend/src/dashboard/util/getDirectPathToTabIndex.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getDirectPathToTabIndex.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getDirectPathToTabIndex.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getDirectPathToTabIndex.js
diff --git a/superset-frontend/src/dashboard/util/getDropPosition.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getDropPosition.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getDropPosition.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getDropPosition.js
diff --git a/superset-frontend/src/dashboard/util/getEmptyLayout.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getEmptyLayout.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getEmptyLayout.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getEmptyLayout.js
diff --git a/superset-frontend/src/dashboard/util/getFilterConfigsFromFormdata.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterConfigsFromFormdata.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getFilterConfigsFromFormdata.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterConfigsFromFormdata.js
diff --git a/superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js
diff --git a/superset-frontend/src/dashboard/util/getFilterScopeFromNodesTree.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterScopeFromNodesTree.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getFilterScopeFromNodesTree.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterScopeFromNodesTree.js
diff --git a/superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js
diff --git a/superset-frontend/src/dashboard/util/getFilterScopeParentNodes.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterScopeParentNodes.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getFilterScopeParentNodes.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterScopeParentNodes.js
diff --git a/superset-frontend/src/dashboard/util/getFilterValuesByFilterId.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterValuesByFilterId.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getFilterValuesByFilterId.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getFilterValuesByFilterId.js
diff --git a/superset-frontend/src/dashboard/util/getKeyForFilterScopeTree.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getKeyForFilterScopeTree.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getKeyForFilterScopeTree.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getKeyForFilterScopeTree.js
diff --git a/superset-frontend/src/dashboard/util/getLayoutComponentFromChartId.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getLayoutComponentFromChartId.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getLayoutComponentFromChartId.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getLayoutComponentFromChartId.js
diff --git a/superset-frontend/src/dashboard/util/getLeafComponentIdFromPath.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getLeafComponentIdFromPath.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getLeafComponentIdFromPath.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getLeafComponentIdFromPath.js
diff --git a/superset-frontend/src/dashboard/util/getLocationHash.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/getLocationHash.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/getLocationHash.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getLocationHash.ts
diff --git a/superset-frontend/src/dashboard/util/getRevertedFilterScope.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/getRevertedFilterScope.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/getRevertedFilterScope.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getRevertedFilterScope.ts
diff --git a/superset-frontend/src/dashboard/util/getSelectedChartIdForFilterScopeTree.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/getSelectedChartIdForFilterScopeTree.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/getSelectedChartIdForFilterScopeTree.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/getSelectedChartIdForFilterScopeTree.js
diff --git a/superset-frontend/src/dashboard/util/headerStyleOptions.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/headerStyleOptions.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/headerStyleOptions.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/headerStyleOptions.ts
diff --git a/superset-frontend/src/dashboard/util/injectCustomCss.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/injectCustomCss.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/injectCustomCss.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/injectCustomCss.js
diff --git a/superset-frontend/src/dashboard/util/isDashboardEmpty.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/isDashboardEmpty.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/isDashboardEmpty.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/isDashboardEmpty.ts
diff --git a/superset-frontend/src/dashboard/util/isDashboardLoading.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/isDashboardLoading.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/isDashboardLoading.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/isDashboardLoading.js
diff --git a/superset-frontend/src/dashboard/util/isInDifferentFilterScopes.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/isInDifferentFilterScopes.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/isInDifferentFilterScopes.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/isInDifferentFilterScopes.js
diff --git a/superset-frontend/src/dashboard/util/isValidChild.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/isValidChild.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/isValidChild.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/isValidChild.ts
diff --git a/superset-frontend/src/dashboard/util/logging/childChartsDidLoad.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/logging/childChartsDidLoad.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/logging/childChartsDidLoad.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/logging/childChartsDidLoad.js
diff --git a/superset-frontend/src/dashboard/util/logging/findNonTabChildChartIds.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/logging/findNonTabChildChartIds.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/logging/findNonTabChildChartIds.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/logging/findNonTabChildChartIds.js
diff --git a/superset-frontend/src/dashboard/util/logging/findTopLevelComponentIds.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/logging/findTopLevelComponentIds.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/logging/findTopLevelComponentIds.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/logging/findTopLevelComponentIds.js
diff --git a/superset-frontend/src/dashboard/util/logging/getLoadStatsPerTopLevelComponent.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/logging/getLoadStatsPerTopLevelComponent.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/logging/getLoadStatsPerTopLevelComponent.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/logging/getLoadStatsPerTopLevelComponent.js
diff --git a/superset-frontend/src/dashboard/util/newComponentFactory.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/newComponentFactory.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/newComponentFactory.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/newComponentFactory.js
diff --git a/superset-frontend/src/dashboard/util/newEntitiesFromDrop.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/newEntitiesFromDrop.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/newEntitiesFromDrop.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/newEntitiesFromDrop.js
diff --git a/superset-frontend/src/dashboard/util/propShapes.jsx b/superset-frontend/packages/superset-frontend/src/dashboard/util/propShapes.jsx
similarity index 100%
rename from superset-frontend/src/dashboard/util/propShapes.jsx
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/propShapes.jsx
diff --git a/superset-frontend/src/dashboard/util/resizableConfig.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/resizableConfig.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/resizableConfig.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/resizableConfig.ts
diff --git a/superset-frontend/src/dashboard/util/serializeActiveFilterValues.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/serializeActiveFilterValues.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/serializeActiveFilterValues.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/serializeActiveFilterValues.js
diff --git a/superset-frontend/src/dashboard/util/serializeFilterScopes.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/serializeFilterScopes.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/serializeFilterScopes.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/serializeFilterScopes.js
diff --git a/superset-frontend/src/dashboard/util/setPeriodicRunner.ts b/superset-frontend/packages/superset-frontend/src/dashboard/util/setPeriodicRunner.ts
similarity index 100%
rename from superset-frontend/src/dashboard/util/setPeriodicRunner.ts
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/setPeriodicRunner.ts
diff --git a/superset-frontend/src/dashboard/util/shouldWrapChildInRow.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/shouldWrapChildInRow.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/shouldWrapChildInRow.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/shouldWrapChildInRow.js
diff --git a/superset-frontend/src/dashboard/util/updateComponentParentsList.js b/superset-frontend/packages/superset-frontend/src/dashboard/util/updateComponentParentsList.js
similarity index 100%
rename from superset-frontend/src/dashboard/util/updateComponentParentsList.js
rename to superset-frontend/packages/superset-frontend/src/dashboard/util/updateComponentParentsList.js
diff --git a/superset-frontend/src/datasource/ChangeDatasourceModal.tsx b/superset-frontend/packages/superset-frontend/src/datasource/ChangeDatasourceModal.tsx
similarity index 100%
rename from superset-frontend/src/datasource/ChangeDatasourceModal.tsx
rename to superset-frontend/packages/superset-frontend/src/datasource/ChangeDatasourceModal.tsx
diff --git a/superset-frontend/src/datasource/DatasourceEditor.jsx b/superset-frontend/packages/superset-frontend/src/datasource/DatasourceEditor.jsx
similarity index 100%
rename from superset-frontend/src/datasource/DatasourceEditor.jsx
rename to superset-frontend/packages/superset-frontend/src/datasource/DatasourceEditor.jsx
diff --git a/superset-frontend/src/datasource/DatasourceModal.tsx b/superset-frontend/packages/superset-frontend/src/datasource/DatasourceModal.tsx
similarity index 100%
rename from superset-frontend/src/datasource/DatasourceModal.tsx
rename to superset-frontend/packages/superset-frontend/src/datasource/DatasourceModal.tsx
diff --git a/superset-frontend/src/explore/App.jsx b/superset-frontend/packages/superset-frontend/src/explore/App.jsx
similarity index 100%
rename from superset-frontend/src/explore/App.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/App.jsx
diff --git a/superset-frontend/src/explore/actions/exploreActions.ts b/superset-frontend/packages/superset-frontend/src/explore/actions/exploreActions.ts
similarity index 100%
rename from superset-frontend/src/explore/actions/exploreActions.ts
rename to superset-frontend/packages/superset-frontend/src/explore/actions/exploreActions.ts
diff --git a/superset-frontend/src/explore/actions/saveModalActions.js b/superset-frontend/packages/superset-frontend/src/explore/actions/saveModalActions.js
similarity index 100%
rename from superset-frontend/src/explore/actions/saveModalActions.js
rename to superset-frontend/packages/superset-frontend/src/explore/actions/saveModalActions.js
diff --git a/superset-frontend/src/explore/components/AggregateOption.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/AggregateOption.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/AggregateOption.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/AggregateOption.jsx
diff --git a/superset-frontend/src/explore/components/Control.less b/superset-frontend/packages/superset-frontend/src/explore/components/Control.less
similarity index 100%
rename from superset-frontend/src/explore/components/Control.less
rename to superset-frontend/packages/superset-frontend/src/explore/components/Control.less
diff --git a/superset-frontend/src/explore/components/Control.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/Control.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/Control.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/Control.tsx
diff --git a/superset-frontend/src/explore/components/ControlHeader.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/ControlHeader.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/ControlHeader.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/ControlHeader.jsx
diff --git a/superset-frontend/src/explore/components/ControlPanelsContainer.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/ControlPanelsContainer.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/ControlPanelsContainer.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/ControlPanelsContainer.jsx
diff --git a/superset-frontend/src/explore/components/ControlRow.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/ControlRow.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/ControlRow.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/ControlRow.jsx
diff --git a/superset-frontend/src/explore/components/DataTableControl.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/DataTableControl.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/DataTableControl.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/DataTableControl.tsx
diff --git a/superset-frontend/src/explore/components/DataTablesPane.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/DataTablesPane.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/DataTablesPane.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/DataTablesPane.tsx
diff --git a/superset-frontend/src/explore/components/DatasourcePanel.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/DatasourcePanel.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/DatasourcePanel.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/DatasourcePanel.tsx
diff --git a/superset-frontend/src/explore/components/DisplayQueryButton.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/DisplayQueryButton.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/DisplayQueryButton.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/DisplayQueryButton.jsx
diff --git a/superset-frontend/src/explore/components/EmbedCodeButton.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/EmbedCodeButton.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/EmbedCodeButton.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/EmbedCodeButton.jsx
diff --git a/superset-frontend/src/explore/components/ExploreActionButtons.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/ExploreActionButtons.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/ExploreActionButtons.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/ExploreActionButtons.jsx
diff --git a/superset-frontend/src/explore/components/ExploreChartHeader.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/ExploreChartHeader.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/ExploreChartHeader.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/ExploreChartHeader.jsx
diff --git a/superset-frontend/src/explore/components/ExploreChartPanel.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/ExploreChartPanel.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/ExploreChartPanel.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/ExploreChartPanel.jsx
diff --git a/superset-frontend/src/explore/components/ExploreViewContainer.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/ExploreViewContainer.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/ExploreViewContainer.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/ExploreViewContainer.jsx
diff --git a/superset-frontend/src/explore/components/OptionControls.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/OptionControls.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/OptionControls.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/OptionControls.tsx
diff --git a/superset-frontend/src/explore/components/PropertiesModal.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/PropertiesModal.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/PropertiesModal.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/PropertiesModal.tsx
diff --git a/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/QueryAndSaveBtns.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx
diff --git a/superset-frontend/src/explore/components/RowCountLabel.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/RowCountLabel.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/RowCountLabel.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/RowCountLabel.jsx
diff --git a/superset-frontend/src/explore/components/SaveModal.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/SaveModal.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/SaveModal.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/SaveModal.tsx
diff --git a/superset-frontend/src/explore/components/controls/AnnotationLayer.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/AnnotationLayer.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/AnnotationLayer.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/AnnotationLayer.jsx
diff --git a/superset-frontend/src/explore/components/controls/AnnotationLayer.less b/superset-frontend/packages/superset-frontend/src/explore/components/controls/AnnotationLayer.less
similarity index 100%
rename from superset-frontend/src/explore/components/controls/AnnotationLayer.less
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/AnnotationLayer.less
diff --git a/superset-frontend/src/explore/components/controls/AnnotationLayerControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/AnnotationLayerControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/AnnotationLayerControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/AnnotationLayerControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/BoundsControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/BoundsControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/BoundsControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/BoundsControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/CheckboxControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/CheckboxControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/CheckboxControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/CheckboxControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/CollectionControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/CollectionControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/CollectionControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/CollectionControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/CollectionControl.less b/superset-frontend/packages/superset-frontend/src/explore/components/controls/CollectionControl.less
similarity index 100%
rename from superset-frontend/src/explore/components/controls/CollectionControl.less
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/CollectionControl.less
diff --git a/superset-frontend/src/explore/components/controls/ColorMapControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/ColorMapControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/ColorMapControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/ColorMapControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/ColorPickerControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/ColorPickerControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/ColorPickerControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/ColorPickerControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/ColorSchemeControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/ColorSchemeControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/ColorSchemeControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/ColorSchemeControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/ColorSchemeControl.less b/superset-frontend/packages/superset-frontend/src/explore/components/controls/ColorSchemeControl.less
similarity index 100%
rename from superset-frontend/src/explore/components/controls/ColorSchemeControl.less
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/ColorSchemeControl.less
diff --git a/superset-frontend/src/explore/components/controls/DatasourceControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DatasourceControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DatasourceControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DatasourceControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl.less b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl.less
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl.less
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl.less
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterControl.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterControl.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterControl.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterControl.tsx
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/constants.ts b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/constants.ts
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/constants.ts
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/constants.ts
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/frame/AdvancedFrame.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/AdvancedFrame.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/frame/AdvancedFrame.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/AdvancedFrame.tsx
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/frame/CalendarFrame.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/CalendarFrame.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/frame/CalendarFrame.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/CalendarFrame.tsx
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/frame/CommonFrame.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/CommonFrame.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/frame/CommonFrame.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/CommonFrame.tsx
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/frame/CustomFrame.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/CustomFrame.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/frame/CustomFrame.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/CustomFrame.tsx
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/frame/DateFunctionTooltip.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/DateFunctionTooltip.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/frame/DateFunctionTooltip.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/DateFunctionTooltip.tsx
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/frame/index.ts b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/index.ts
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/frame/index.ts
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/frame/index.ts
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/types.ts b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/types.ts
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/types.ts
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/types.ts
diff --git a/superset-frontend/src/explore/components/controls/DateFilterControl/utils.ts b/superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/utils.ts
similarity index 100%
rename from superset-frontend/src/explore/components/controls/DateFilterControl/utils.ts
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/DateFilterControl/utils.ts
diff --git a/superset-frontend/src/explore/components/controls/FilterBoxItemControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterBoxItemControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FilterBoxItemControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterBoxItemControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilter.js b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilter.js
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FilterControl/AdhocFilter.js
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilter.js
diff --git a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover.jsx
diff --git a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx
diff --git a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent.jsx
diff --git a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterOption.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterOption.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterOption.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterOption.jsx
diff --git a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterPopoverTrigger.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterPopoverTrigger.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterPopoverTrigger.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterPopoverTrigger.tsx
diff --git a/superset-frontend/src/explore/components/controls/FilterControl/adhocFilterType.js b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/adhocFilterType.js
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FilterControl/adhocFilterType.js
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FilterControl/adhocFilterType.js
diff --git a/superset-frontend/src/explore/components/controls/FixedOrMetricControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/FixedOrMetricControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/FixedOrMetricControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/FixedOrMetricControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/HiddenControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/HiddenControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/HiddenControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/HiddenControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetric.js b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetric.js
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/AdhocMetric.js
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetric.js
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover.jsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.jsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricOption.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricOption.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricOption.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricOption.jsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricStaticOption.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricStaticOption.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricStaticOption.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricStaticOption.jsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/FilterDefinitionOption.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/FilterDefinitionOption.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/FilterDefinitionOption.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/FilterDefinitionOption.jsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/MetricDefinitionOption.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/MetricDefinitionOption.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/MetricDefinitionOption.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/MetricDefinitionOption.jsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/MetricDefinitionValue.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/MetricDefinitionValue.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/MetricDefinitionValue.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/MetricDefinitionValue.jsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/adhocMetricType.js b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/adhocMetricType.js
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/adhocMetricType.js
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/adhocMetricType.js
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/savedMetricType.js b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/savedMetricType.js
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/savedMetricType.js
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/savedMetricType.js
diff --git a/superset-frontend/src/explore/components/controls/MetricControl/types.ts b/superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/types.ts
similarity index 100%
rename from superset-frontend/src/explore/components/controls/MetricControl/types.ts
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/MetricControl/types.ts
diff --git a/superset-frontend/src/explore/components/controls/SelectAsyncControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/SelectAsyncControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/SelectAsyncControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/SelectAsyncControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/SelectControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/SelectControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/SelectControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/SelectControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/SliderControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/SliderControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/SliderControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/SliderControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/SpatialControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/SpatialControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/SpatialControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/SpatialControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/TextAreaControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/TextAreaControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/TextAreaControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/TextAreaControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/TextControl.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/TextControl.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/TextControl.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/TextControl.tsx
diff --git a/superset-frontend/src/explore/components/controls/TimeSeriesColumnControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/TimeSeriesColumnControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/TimeSeriesColumnControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/TimeSeriesColumnControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/ViewportControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/ViewportControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/ViewportControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/ViewportControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/VizTypeControl.jsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/VizTypeControl.jsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/VizTypeControl.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/VizTypeControl.jsx
diff --git a/superset-frontend/src/explore/components/controls/VizTypeControl.less b/superset-frontend/packages/superset-frontend/src/explore/components/controls/VizTypeControl.less
similarity index 100%
rename from superset-frontend/src/explore/components/controls/VizTypeControl.less
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/VizTypeControl.less
diff --git a/superset-frontend/src/explore/components/controls/index.js b/superset-frontend/packages/superset-frontend/src/explore/components/controls/index.js
similarity index 100%
rename from superset-frontend/src/explore/components/controls/index.js
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/index.js
diff --git a/superset-frontend/src/explore/components/controls/withAsyncVerification.tsx b/superset-frontend/packages/superset-frontend/src/explore/components/controls/withAsyncVerification.tsx
similarity index 100%
rename from superset-frontend/src/explore/components/controls/withAsyncVerification.tsx
rename to superset-frontend/packages/superset-frontend/src/explore/components/controls/withAsyncVerification.tsx
diff --git a/superset-frontend/src/explore/components/optionTypes.ts b/superset-frontend/packages/superset-frontend/src/explore/components/optionTypes.ts
similarity index 100%
rename from superset-frontend/src/explore/components/optionTypes.ts
rename to superset-frontend/packages/superset-frontend/src/explore/components/optionTypes.ts
diff --git a/superset-frontend/src/explore/constants.js b/superset-frontend/packages/superset-frontend/src/explore/constants.js
similarity index 100%
rename from superset-frontend/src/explore/constants.js
rename to superset-frontend/packages/superset-frontend/src/explore/constants.js
diff --git a/superset-frontend/src/explore/controlPanels/Separator.js b/superset-frontend/packages/superset-frontend/src/explore/controlPanels/Separator.js
similarity index 100%
rename from superset-frontend/src/explore/controlPanels/Separator.js
rename to superset-frontend/packages/superset-frontend/src/explore/controlPanels/Separator.js
diff --git a/superset-frontend/src/explore/controlPanels/TimeTable.js b/superset-frontend/packages/superset-frontend/src/explore/controlPanels/TimeTable.js
similarity index 100%
rename from superset-frontend/src/explore/controlPanels/TimeTable.js
rename to superset-frontend/packages/superset-frontend/src/explore/controlPanels/TimeTable.js
diff --git a/superset-frontend/src/explore/controlPanels/sections.jsx b/superset-frontend/packages/superset-frontend/src/explore/controlPanels/sections.jsx
similarity index 100%
rename from superset-frontend/src/explore/controlPanels/sections.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/controlPanels/sections.jsx
diff --git a/superset-frontend/src/explore/controlPanels/timeGrainSqlaAnimationOverrides.js b/superset-frontend/packages/superset-frontend/src/explore/controlPanels/timeGrainSqlaAnimationOverrides.js
similarity index 100%
rename from superset-frontend/src/explore/controlPanels/timeGrainSqlaAnimationOverrides.js
rename to superset-frontend/packages/superset-frontend/src/explore/controlPanels/timeGrainSqlaAnimationOverrides.js
diff --git a/superset-frontend/src/explore/controlUtils.js b/superset-frontend/packages/superset-frontend/src/explore/controlUtils.js
similarity index 100%
rename from superset-frontend/src/explore/controlUtils.js
rename to superset-frontend/packages/superset-frontend/src/explore/controlUtils.js
diff --git a/superset-frontend/src/explore/controls.jsx b/superset-frontend/packages/superset-frontend/src/explore/controls.jsx
similarity index 100%
rename from superset-frontend/src/explore/controls.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/controls.jsx
diff --git a/superset-frontend/src/explore/dateFilterUtils.ts b/superset-frontend/packages/superset-frontend/src/explore/dateFilterUtils.ts
similarity index 100%
rename from superset-frontend/src/explore/dateFilterUtils.ts
rename to superset-frontend/packages/superset-frontend/src/explore/dateFilterUtils.ts
diff --git a/superset-frontend/src/explore/exploreUtils.js b/superset-frontend/packages/superset-frontend/src/explore/exploreUtils.js
similarity index 100%
rename from superset-frontend/src/explore/exploreUtils.js
rename to superset-frontend/packages/superset-frontend/src/explore/exploreUtils.js
diff --git a/superset-frontend/src/explore/index.jsx b/superset-frontend/packages/superset-frontend/src/explore/index.jsx
similarity index 100%
rename from superset-frontend/src/explore/index.jsx
rename to superset-frontend/packages/superset-frontend/src/explore/index.jsx
diff --git a/superset-frontend/src/explore/main.less b/superset-frontend/packages/superset-frontend/src/explore/main.less
similarity index 100%
rename from superset-frontend/src/explore/main.less
rename to superset-frontend/packages/superset-frontend/src/explore/main.less
diff --git a/superset-frontend/src/explore/propTypes/aggregateOptionType.js b/superset-frontend/packages/superset-frontend/src/explore/propTypes/aggregateOptionType.js
similarity index 100%
rename from superset-frontend/src/explore/propTypes/aggregateOptionType.js
rename to superset-frontend/packages/superset-frontend/src/explore/propTypes/aggregateOptionType.js
diff --git a/superset-frontend/src/explore/propTypes/columnType.js b/superset-frontend/packages/superset-frontend/src/explore/propTypes/columnType.js
similarity index 100%
rename from superset-frontend/src/explore/propTypes/columnType.js
rename to superset-frontend/packages/superset-frontend/src/explore/propTypes/columnType.js
diff --git a/superset-frontend/src/explore/reducers/exploreReducer.js b/superset-frontend/packages/superset-frontend/src/explore/reducers/exploreReducer.js
similarity index 100%
rename from superset-frontend/src/explore/reducers/exploreReducer.js
rename to superset-frontend/packages/superset-frontend/src/explore/reducers/exploreReducer.js
diff --git a/superset-frontend/src/explore/reducers/getInitialState.js b/superset-frontend/packages/superset-frontend/src/explore/reducers/getInitialState.js
similarity index 100%
rename from superset-frontend/src/explore/reducers/getInitialState.js
rename to superset-frontend/packages/superset-frontend/src/explore/reducers/getInitialState.js
diff --git a/superset-frontend/src/explore/reducers/index.js b/superset-frontend/packages/superset-frontend/src/explore/reducers/index.js
similarity index 100%
rename from superset-frontend/src/explore/reducers/index.js
rename to superset-frontend/packages/superset-frontend/src/explore/reducers/index.js
diff --git a/superset-frontend/src/explore/reducers/saveModalReducer.js b/superset-frontend/packages/superset-frontend/src/explore/reducers/saveModalReducer.js
similarity index 100%
rename from superset-frontend/src/explore/reducers/saveModalReducer.js
rename to superset-frontend/packages/superset-frontend/src/explore/reducers/saveModalReducer.js
diff --git a/superset-frontend/src/explore/store.js b/superset-frontend/packages/superset-frontend/src/explore/store.js
similarity index 100%
rename from superset-frontend/src/explore/store.js
rename to superset-frontend/packages/superset-frontend/src/explore/store.js
diff --git a/superset-frontend/src/featureFlags.ts b/superset-frontend/packages/superset-frontend/src/featureFlags.ts
similarity index 100%
rename from superset-frontend/src/featureFlags.ts
rename to superset-frontend/packages/superset-frontend/src/featureFlags.ts
diff --git a/superset-frontend/src/filters/components/Range/AntdRangeFilter.tsx b/superset-frontend/packages/superset-frontend/src/filters/components/Range/AntdRangeFilter.tsx
similarity index 100%
rename from superset-frontend/src/filters/components/Range/AntdRangeFilter.tsx
rename to superset-frontend/packages/superset-frontend/src/filters/components/Range/AntdRangeFilter.tsx
diff --git a/superset-frontend/src/filters/components/Range/buildQuery.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Range/buildQuery.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Range/buildQuery.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Range/buildQuery.ts
diff --git a/superset-frontend/src/filters/components/Range/controlPanel.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Range/controlPanel.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Range/controlPanel.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Range/controlPanel.ts
diff --git a/superset-frontend/src/filters/components/Range/images/thumbnail.png b/superset-frontend/packages/superset-frontend/src/filters/components/Range/images/thumbnail.png
similarity index 100%
rename from superset-frontend/src/filters/components/Range/images/thumbnail.png
rename to superset-frontend/packages/superset-frontend/src/filters/components/Range/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/src/filters/components/Range/index.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Range/index.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Range/index.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Range/index.ts
diff --git a/superset-frontend/src/filters/components/Range/transformProps.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Range/transformProps.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Range/transformProps.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Range/transformProps.ts
diff --git a/superset-frontend/src/filters/components/Range/types.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Range/types.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Range/types.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Range/types.ts
diff --git a/superset-frontend/src/filters/components/Select/AntdSelectFilter.tsx b/superset-frontend/packages/superset-frontend/src/filters/components/Select/AntdSelectFilter.tsx
similarity index 100%
rename from superset-frontend/src/filters/components/Select/AntdSelectFilter.tsx
rename to superset-frontend/packages/superset-frontend/src/filters/components/Select/AntdSelectFilter.tsx
diff --git a/superset-frontend/src/filters/components/Select/buildQuery.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Select/buildQuery.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Select/buildQuery.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Select/buildQuery.ts
diff --git a/superset-frontend/src/filters/components/Select/controlPanel.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Select/controlPanel.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Select/controlPanel.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Select/controlPanel.ts
diff --git a/superset-frontend/src/filters/components/Select/images/thumbnail.png b/superset-frontend/packages/superset-frontend/src/filters/components/Select/images/thumbnail.png
similarity index 100%
rename from superset-frontend/src/filters/components/Select/images/thumbnail.png
rename to superset-frontend/packages/superset-frontend/src/filters/components/Select/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/src/filters/components/Select/index.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Select/index.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Select/index.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Select/index.ts
diff --git a/superset-frontend/src/filters/components/Select/transformProps.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Select/transformProps.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Select/transformProps.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Select/transformProps.ts
diff --git a/superset-frontend/src/filters/components/Select/types.ts b/superset-frontend/packages/superset-frontend/src/filters/components/Select/types.ts
similarity index 100%
rename from superset-frontend/src/filters/components/Select/types.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/Select/types.ts
diff --git a/superset-frontend/src/filters/components/index.ts b/superset-frontend/packages/superset-frontend/src/filters/components/index.ts
similarity index 100%
rename from superset-frontend/src/filters/components/index.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/index.ts
diff --git a/superset-frontend/src/filters/components/types.ts b/superset-frontend/packages/superset-frontend/src/filters/components/types.ts
similarity index 100%
rename from superset-frontend/src/filters/components/types.ts
rename to superset-frontend/packages/superset-frontend/src/filters/components/types.ts
diff --git a/superset-frontend/src/filters/utils.ts b/superset-frontend/packages/superset-frontend/src/filters/utils.ts
similarity index 100%
rename from superset-frontend/src/filters/utils.ts
rename to superset-frontend/packages/superset-frontend/src/filters/utils.ts
diff --git a/superset-frontend/src/logger/LogUtils.ts b/superset-frontend/packages/superset-frontend/src/logger/LogUtils.ts
similarity index 100%
rename from superset-frontend/src/logger/LogUtils.ts
rename to superset-frontend/packages/superset-frontend/src/logger/LogUtils.ts
diff --git a/superset-frontend/src/logger/actions/index.ts b/superset-frontend/packages/superset-frontend/src/logger/actions/index.ts
similarity index 100%
rename from superset-frontend/src/logger/actions/index.ts
rename to superset-frontend/packages/superset-frontend/src/logger/actions/index.ts
diff --git a/superset-frontend/src/messageToasts/actions/index.ts b/superset-frontend/packages/superset-frontend/src/messageToasts/actions/index.ts
similarity index 100%
rename from superset-frontend/src/messageToasts/actions/index.ts
rename to superset-frontend/packages/superset-frontend/src/messageToasts/actions/index.ts
diff --git a/superset-frontend/src/messageToasts/components/Toast.tsx b/superset-frontend/packages/superset-frontend/src/messageToasts/components/Toast.tsx
similarity index 100%
rename from superset-frontend/src/messageToasts/components/Toast.tsx
rename to superset-frontend/packages/superset-frontend/src/messageToasts/components/Toast.tsx
diff --git a/superset-frontend/src/messageToasts/components/ToastPresenter.tsx b/superset-frontend/packages/superset-frontend/src/messageToasts/components/ToastPresenter.tsx
similarity index 100%
rename from superset-frontend/src/messageToasts/components/ToastPresenter.tsx
rename to superset-frontend/packages/superset-frontend/src/messageToasts/components/ToastPresenter.tsx
diff --git a/superset-frontend/src/messageToasts/constants.ts b/superset-frontend/packages/superset-frontend/src/messageToasts/constants.ts
similarity index 100%
rename from superset-frontend/src/messageToasts/constants.ts
rename to superset-frontend/packages/superset-frontend/src/messageToasts/constants.ts
diff --git a/superset-frontend/src/messageToasts/containers/ToastPresenter.jsx b/superset-frontend/packages/superset-frontend/src/messageToasts/containers/ToastPresenter.jsx
similarity index 100%
rename from superset-frontend/src/messageToasts/containers/ToastPresenter.jsx
rename to superset-frontend/packages/superset-frontend/src/messageToasts/containers/ToastPresenter.jsx
diff --git a/superset-frontend/src/messageToasts/enhancers/withToasts.tsx b/superset-frontend/packages/superset-frontend/src/messageToasts/enhancers/withToasts.tsx
similarity index 100%
rename from superset-frontend/src/messageToasts/enhancers/withToasts.tsx
rename to superset-frontend/packages/superset-frontend/src/messageToasts/enhancers/withToasts.tsx
diff --git a/superset-frontend/src/messageToasts/reducers/index.js b/superset-frontend/packages/superset-frontend/src/messageToasts/reducers/index.js
similarity index 100%
rename from superset-frontend/src/messageToasts/reducers/index.js
rename to superset-frontend/packages/superset-frontend/src/messageToasts/reducers/index.js
diff --git a/superset-frontend/src/messageToasts/types.ts b/superset-frontend/packages/superset-frontend/src/messageToasts/types.ts
similarity index 100%
rename from superset-frontend/src/messageToasts/types.ts
rename to superset-frontend/packages/superset-frontend/src/messageToasts/types.ts
diff --git a/superset-frontend/src/messageToasts/utils/getToastsFromPyFlashMessages.js b/superset-frontend/packages/superset-frontend/src/messageToasts/utils/getToastsFromPyFlashMessages.js
similarity index 100%
rename from superset-frontend/src/messageToasts/utils/getToastsFromPyFlashMessages.js
rename to superset-frontend/packages/superset-frontend/src/messageToasts/utils/getToastsFromPyFlashMessages.js
diff --git a/superset-frontend/src/middleware/asyncEvent.ts b/superset-frontend/packages/superset-frontend/src/middleware/asyncEvent.ts
similarity index 100%
rename from superset-frontend/src/middleware/asyncEvent.ts
rename to superset-frontend/packages/superset-frontend/src/middleware/asyncEvent.ts
diff --git a/superset-frontend/src/middleware/loggerMiddleware.js b/superset-frontend/packages/superset-frontend/src/middleware/loggerMiddleware.js
similarity index 100%
rename from superset-frontend/src/middleware/loggerMiddleware.js
rename to superset-frontend/packages/superset-frontend/src/middleware/loggerMiddleware.js
diff --git a/superset-frontend/src/modules/AnnotationTypes.js b/superset-frontend/packages/superset-frontend/src/modules/AnnotationTypes.js
similarity index 100%
rename from superset-frontend/src/modules/AnnotationTypes.js
rename to superset-frontend/packages/superset-frontend/src/modules/AnnotationTypes.js
diff --git a/superset-frontend/src/modules/dates.js b/superset-frontend/packages/superset-frontend/src/modules/dates.js
similarity index 100%
rename from superset-frontend/src/modules/dates.js
rename to superset-frontend/packages/superset-frontend/src/modules/dates.js
diff --git a/superset-frontend/src/modules/utils.js b/superset-frontend/packages/superset-frontend/src/modules/utils.js
similarity index 100%
rename from superset-frontend/src/modules/utils.js
rename to superset-frontend/packages/superset-frontend/src/modules/utils.js
diff --git a/superset-frontend/src/preamble.ts b/superset-frontend/packages/superset-frontend/src/preamble.ts
similarity index 100%
rename from superset-frontend/src/preamble.ts
rename to superset-frontend/packages/superset-frontend/src/preamble.ts
diff --git a/superset-frontend/src/profile/App.tsx b/superset-frontend/packages/superset-frontend/src/profile/App.tsx
similarity index 100%
rename from superset-frontend/src/profile/App.tsx
rename to superset-frontend/packages/superset-frontend/src/profile/App.tsx
diff --git a/superset-frontend/src/profile/components/App.tsx b/superset-frontend/packages/superset-frontend/src/profile/components/App.tsx
similarity index 100%
rename from superset-frontend/src/profile/components/App.tsx
rename to superset-frontend/packages/superset-frontend/src/profile/components/App.tsx
diff --git a/superset-frontend/src/profile/components/CreatedContent.tsx b/superset-frontend/packages/superset-frontend/src/profile/components/CreatedContent.tsx
similarity index 100%
rename from superset-frontend/src/profile/components/CreatedContent.tsx
rename to superset-frontend/packages/superset-frontend/src/profile/components/CreatedContent.tsx
diff --git a/superset-frontend/src/profile/components/Favorites.tsx b/superset-frontend/packages/superset-frontend/src/profile/components/Favorites.tsx
similarity index 100%
rename from superset-frontend/src/profile/components/Favorites.tsx
rename to superset-frontend/packages/superset-frontend/src/profile/components/Favorites.tsx
diff --git a/superset-frontend/src/profile/components/RecentActivity.tsx b/superset-frontend/packages/superset-frontend/src/profile/components/RecentActivity.tsx
similarity index 100%
rename from superset-frontend/src/profile/components/RecentActivity.tsx
rename to superset-frontend/packages/superset-frontend/src/profile/components/RecentActivity.tsx
diff --git a/superset-frontend/src/profile/components/Security.tsx b/superset-frontend/packages/superset-frontend/src/profile/components/Security.tsx
similarity index 100%
rename from superset-frontend/src/profile/components/Security.tsx
rename to superset-frontend/packages/superset-frontend/src/profile/components/Security.tsx
diff --git a/superset-frontend/src/profile/components/UserInfo.tsx b/superset-frontend/packages/superset-frontend/src/profile/components/UserInfo.tsx
similarity index 100%
rename from superset-frontend/src/profile/components/UserInfo.tsx
rename to superset-frontend/packages/superset-frontend/src/profile/components/UserInfo.tsx
diff --git a/superset-frontend/src/profile/index.tsx b/superset-frontend/packages/superset-frontend/src/profile/index.tsx
similarity index 100%
rename from superset-frontend/src/profile/index.tsx
rename to superset-frontend/packages/superset-frontend/src/profile/index.tsx
diff --git a/superset-frontend/src/profile/main.less b/superset-frontend/packages/superset-frontend/src/profile/main.less
similarity index 100%
rename from superset-frontend/src/profile/main.less
rename to superset-frontend/packages/superset-frontend/src/profile/main.less
diff --git a/superset-frontend/src/profile/types.ts b/superset-frontend/packages/superset-frontend/src/profile/types.ts
similarity index 100%
rename from superset-frontend/src/profile/types.ts
rename to superset-frontend/packages/superset-frontend/src/profile/types.ts
diff --git a/superset-frontend/src/reduxUtils.ts b/superset-frontend/packages/superset-frontend/src/reduxUtils.ts
similarity index 100%
rename from superset-frontend/src/reduxUtils.ts
rename to superset-frontend/packages/superset-frontend/src/reduxUtils.ts
diff --git a/superset-frontend/src/setup/setupApp.ts b/superset-frontend/packages/superset-frontend/src/setup/setupApp.ts
similarity index 100%
rename from superset-frontend/src/setup/setupApp.ts
rename to superset-frontend/packages/superset-frontend/src/setup/setupApp.ts
diff --git a/superset-frontend/src/setup/setupClient.ts b/superset-frontend/packages/superset-frontend/src/setup/setupClient.ts
similarity index 100%
rename from superset-frontend/src/setup/setupClient.ts
rename to superset-frontend/packages/superset-frontend/src/setup/setupClient.ts
diff --git a/superset-frontend/src/setup/setupColors.ts b/superset-frontend/packages/superset-frontend/src/setup/setupColors.ts
similarity index 100%
rename from superset-frontend/src/setup/setupColors.ts
rename to superset-frontend/packages/superset-frontend/src/setup/setupColors.ts
diff --git a/superset-frontend/src/setup/setupErrorMessages.ts b/superset-frontend/packages/superset-frontend/src/setup/setupErrorMessages.ts
similarity index 100%
rename from superset-frontend/src/setup/setupErrorMessages.ts
rename to superset-frontend/packages/superset-frontend/src/setup/setupErrorMessages.ts
diff --git a/superset-frontend/src/setup/setupErrorMessagesExtra.ts b/superset-frontend/packages/superset-frontend/src/setup/setupErrorMessagesExtra.ts
similarity index 100%
rename from superset-frontend/src/setup/setupErrorMessagesExtra.ts
rename to superset-frontend/packages/superset-frontend/src/setup/setupErrorMessagesExtra.ts
diff --git a/superset-frontend/src/setup/setupFormatters.ts b/superset-frontend/packages/superset-frontend/src/setup/setupFormatters.ts
similarity index 100%
rename from superset-frontend/src/setup/setupFormatters.ts
rename to superset-frontend/packages/superset-frontend/src/setup/setupFormatters.ts
diff --git a/superset-frontend/src/setup/setupPlugins.ts b/superset-frontend/packages/superset-frontend/src/setup/setupPlugins.ts
similarity index 100%
rename from superset-frontend/src/setup/setupPlugins.ts
rename to superset-frontend/packages/superset-frontend/src/setup/setupPlugins.ts
diff --git a/superset-frontend/src/setup/setupPluginsExtra.ts b/superset-frontend/packages/superset-frontend/src/setup/setupPluginsExtra.ts
similarity index 100%
rename from superset-frontend/src/setup/setupPluginsExtra.ts
rename to superset-frontend/packages/superset-frontend/src/setup/setupPluginsExtra.ts
diff --git a/superset-frontend/src/showSavedQuery/index.jsx b/superset-frontend/packages/superset-frontend/src/showSavedQuery/index.jsx
similarity index 100%
rename from superset-frontend/src/showSavedQuery/index.jsx
rename to superset-frontend/packages/superset-frontend/src/showSavedQuery/index.jsx
diff --git a/superset-frontend/src/showSavedQuery/index.less b/superset-frontend/packages/superset-frontend/src/showSavedQuery/index.less
similarity index 100%
rename from superset-frontend/src/showSavedQuery/index.less
rename to superset-frontend/packages/superset-frontend/src/showSavedQuery/index.less
diff --git a/superset-frontend/src/showSavedQuery/utils.js b/superset-frontend/packages/superset-frontend/src/showSavedQuery/utils.js
similarity index 100%
rename from superset-frontend/src/showSavedQuery/utils.js
rename to superset-frontend/packages/superset-frontend/src/showSavedQuery/utils.js
diff --git a/superset-frontend/src/theme.ts b/superset-frontend/packages/superset-frontend/src/theme.ts
similarity index 100%
rename from superset-frontend/src/theme.ts
rename to superset-frontend/packages/superset-frontend/src/theme.ts
diff --git a/superset-frontend/src/types/Chart.ts b/superset-frontend/packages/superset-frontend/src/types/Chart.ts
similarity index 100%
rename from superset-frontend/src/types/Chart.ts
rename to superset-frontend/packages/superset-frontend/src/types/Chart.ts
diff --git a/superset-frontend/src/types/Dataset.ts b/superset-frontend/packages/superset-frontend/src/types/Dataset.ts
similarity index 100%
rename from superset-frontend/src/types/Dataset.ts
rename to superset-frontend/packages/superset-frontend/src/types/Dataset.ts
diff --git a/superset-frontend/src/types/Owner.ts b/superset-frontend/packages/superset-frontend/src/types/Owner.ts
similarity index 100%
rename from superset-frontend/src/types/Owner.ts
rename to superset-frontend/packages/superset-frontend/src/types/Owner.ts
diff --git a/superset-frontend/src/types/bootstrapTypes.ts b/superset-frontend/packages/superset-frontend/src/types/bootstrapTypes.ts
similarity index 100%
rename from superset-frontend/src/types/bootstrapTypes.ts
rename to superset-frontend/packages/superset-frontend/src/types/bootstrapTypes.ts
diff --git a/superset-frontend/src/types/brace.d.ts b/superset-frontend/packages/superset-frontend/src/types/brace.d.ts
similarity index 100%
rename from superset-frontend/src/types/brace.d.ts
rename to superset-frontend/packages/superset-frontend/src/types/brace.d.ts
diff --git a/superset-frontend/src/types/files.d.ts b/superset-frontend/packages/superset-frontend/src/types/files.d.ts
similarity index 100%
rename from superset-frontend/src/types/files.d.ts
rename to superset-frontend/packages/superset-frontend/src/types/files.d.ts
diff --git a/superset-frontend/src/types/react-table-config.d.ts b/superset-frontend/packages/superset-frontend/src/types/react-table-config.d.ts
similarity index 100%
rename from superset-frontend/src/types/react-table-config.d.ts
rename to superset-frontend/packages/superset-frontend/src/types/react-table-config.d.ts
diff --git a/superset-frontend/src/utils/DebouncedMessageQueue.js b/superset-frontend/packages/superset-frontend/src/utils/DebouncedMessageQueue.js
similarity index 100%
rename from superset-frontend/src/utils/DebouncedMessageQueue.js
rename to superset-frontend/packages/superset-frontend/src/utils/DebouncedMessageQueue.js
diff --git a/superset-frontend/src/utils/cacheWrapper.ts b/superset-frontend/packages/superset-frontend/src/utils/cacheWrapper.ts
similarity index 100%
rename from superset-frontend/src/utils/cacheWrapper.ts
rename to superset-frontend/packages/superset-frontend/src/utils/cacheWrapper.ts
diff --git a/superset-frontend/src/utils/common.js b/superset-frontend/packages/superset-frontend/src/utils/common.js
similarity index 100%
rename from superset-frontend/src/utils/common.js
rename to superset-frontend/packages/superset-frontend/src/utils/common.js
diff --git a/superset-frontend/src/utils/copy.ts b/superset-frontend/packages/superset-frontend/src/utils/copy.ts
similarity index 100%
rename from superset-frontend/src/utils/copy.ts
rename to superset-frontend/packages/superset-frontend/src/utils/copy.ts
diff --git a/superset-frontend/src/utils/downloadAsImage.ts b/superset-frontend/packages/superset-frontend/src/utils/downloadAsImage.ts
similarity index 100%
rename from superset-frontend/src/utils/downloadAsImage.ts
rename to superset-frontend/packages/superset-frontend/src/utils/downloadAsImage.ts
diff --git a/superset-frontend/src/utils/errorMessages.ts b/superset-frontend/packages/superset-frontend/src/utils/errorMessages.ts
similarity index 100%
rename from superset-frontend/src/utils/errorMessages.ts
rename to superset-frontend/packages/superset-frontend/src/utils/errorMessages.ts
diff --git a/superset-frontend/src/utils/getClientErrorObject.ts b/superset-frontend/packages/superset-frontend/src/utils/getClientErrorObject.ts
similarity index 100%
rename from superset-frontend/src/utils/getClientErrorObject.ts
rename to superset-frontend/packages/superset-frontend/src/utils/getClientErrorObject.ts
diff --git a/superset-frontend/src/utils/getControlsForVizType.js b/superset-frontend/packages/superset-frontend/src/utils/getControlsForVizType.js
similarity index 100%
rename from superset-frontend/src/utils/getControlsForVizType.js
rename to superset-frontend/packages/superset-frontend/src/utils/getControlsForVizType.js
diff --git a/superset-frontend/src/utils/hostNamesConfig.js b/superset-frontend/packages/superset-frontend/src/utils/hostNamesConfig.js
similarity index 100%
rename from superset-frontend/src/utils/hostNamesConfig.js
rename to superset-frontend/packages/superset-frontend/src/utils/hostNamesConfig.js
diff --git a/superset-frontend/src/utils/parseCookie.ts b/superset-frontend/packages/superset-frontend/src/utils/parseCookie.ts
similarity index 100%
rename from superset-frontend/src/utils/parseCookie.ts
rename to superset-frontend/packages/superset-frontend/src/utils/parseCookie.ts
diff --git a/superset-frontend/src/utils/reducerUtils.js b/superset-frontend/packages/superset-frontend/src/utils/reducerUtils.js
similarity index 100%
rename from superset-frontend/src/utils/reducerUtils.js
rename to superset-frontend/packages/superset-frontend/src/utils/reducerUtils.js
diff --git a/superset-frontend/src/utils/safeStringify.ts b/superset-frontend/packages/superset-frontend/src/utils/safeStringify.ts
similarity index 100%
rename from superset-frontend/src/utils/safeStringify.ts
rename to superset-frontend/packages/superset-frontend/src/utils/safeStringify.ts
diff --git a/superset-frontend/src/views/App.tsx b/superset-frontend/packages/superset-frontend/src/views/App.tsx
similarity index 100%
rename from superset-frontend/src/views/App.tsx
rename to superset-frontend/packages/superset-frontend/src/views/App.tsx
diff --git a/superset-frontend/src/views/CRUD/alert/AlertList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/alert/AlertList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/alert/AlertList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/alert/AlertList.tsx
diff --git a/superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/alert/AlertReportModal.tsx
diff --git a/superset-frontend/src/views/CRUD/alert/ExecutionLog.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/alert/ExecutionLog.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/alert/ExecutionLog.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/alert/ExecutionLog.tsx
diff --git a/superset-frontend/src/views/CRUD/alert/components/AlertReportCronScheduler.test.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/alert/components/AlertReportCronScheduler.test.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/alert/components/AlertReportCronScheduler.test.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/alert/components/AlertReportCronScheduler.test.tsx
diff --git a/superset-frontend/src/views/CRUD/alert/components/AlertReportCronScheduler.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/alert/components/AlertReportCronScheduler.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/alert/components/AlertReportCronScheduler.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/alert/components/AlertReportCronScheduler.tsx
diff --git a/superset-frontend/src/views/CRUD/alert/components/AlertStatusIcon.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/alert/components/AlertStatusIcon.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/alert/components/AlertStatusIcon.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/alert/components/AlertStatusIcon.tsx
diff --git a/superset-frontend/src/views/CRUD/alert/components/RecipientIcon.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/alert/components/RecipientIcon.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/alert/components/RecipientIcon.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/alert/components/RecipientIcon.tsx
diff --git a/superset-frontend/src/views/CRUD/alert/types.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/alert/types.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/alert/types.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/alert/types.ts
diff --git a/superset-frontend/src/views/CRUD/annotation/AnnotationList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/annotation/AnnotationList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/annotation/AnnotationList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/annotation/AnnotationList.tsx
diff --git a/superset-frontend/src/views/CRUD/annotation/AnnotationModal.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/annotation/AnnotationModal.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/annotation/AnnotationModal.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/annotation/AnnotationModal.tsx
diff --git a/superset-frontend/src/views/CRUD/annotation/types.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/annotation/types.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/annotation/types.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/annotation/types.ts
diff --git a/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayerModal.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayerModal.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayerModal.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayerModal.tsx
diff --git a/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayersList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayersList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayersList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayersList.tsx
diff --git a/superset-frontend/src/views/CRUD/annotationlayers/types.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/annotationlayers/types.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/annotationlayers/types.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/annotationlayers/types.ts
diff --git a/superset-frontend/src/views/CRUD/chart/ChartCard.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/chart/ChartCard.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/chart/ChartCard.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/chart/ChartCard.tsx
diff --git a/superset-frontend/src/views/CRUD/chart/ChartList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/chart/ChartList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/chart/ChartList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/chart/ChartList.tsx
diff --git a/superset-frontend/src/views/CRUD/chart/types.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/chart/types.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/chart/types.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/chart/types.ts
diff --git a/superset-frontend/src/views/CRUD/csstemplates/CssTemplateModal.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/csstemplates/CssTemplateModal.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/csstemplates/CssTemplateModal.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/csstemplates/CssTemplateModal.tsx
diff --git a/superset-frontend/src/views/CRUD/csstemplates/CssTemplatesList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/csstemplates/CssTemplatesList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/csstemplates/CssTemplatesList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/csstemplates/CssTemplatesList.tsx
diff --git a/superset-frontend/src/views/CRUD/csstemplates/types.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/csstemplates/types.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/csstemplates/types.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/csstemplates/types.ts
diff --git a/superset-frontend/src/views/CRUD/dashboard/DashboardCard.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/dashboard/DashboardCard.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/dashboard/DashboardCard.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/dashboard/DashboardCard.tsx
diff --git a/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx
diff --git a/superset-frontend/src/views/CRUD/dashboard/types.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/dashboard/types.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/dashboard/types.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/dashboard/types.ts
diff --git a/superset-frontend/src/views/CRUD/data/common.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/common.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/common.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/common.ts
diff --git a/superset-frontend/src/views/CRUD/data/components/SyntaxHighlighterCopy/index.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/components/SyntaxHighlighterCopy/index.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/components/SyntaxHighlighterCopy/index.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/components/SyntaxHighlighterCopy/index.tsx
diff --git a/superset-frontend/src/views/CRUD/data/database/DatabaseList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/database/DatabaseList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/database/DatabaseList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/database/DatabaseList.tsx
diff --git a/superset-frontend/src/views/CRUD/data/database/DatabaseModal.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/database/DatabaseModal.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/database/DatabaseModal.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/database/DatabaseModal.tsx
diff --git a/superset-frontend/src/views/CRUD/data/database/types.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/database/types.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/database/types.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/database/types.ts
diff --git a/superset-frontend/src/views/CRUD/data/dataset/AddDatasetModal.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/dataset/AddDatasetModal.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/dataset/AddDatasetModal.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/dataset/AddDatasetModal.tsx
diff --git a/superset-frontend/src/views/CRUD/data/dataset/DatasetList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/dataset/DatasetList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/dataset/DatasetList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/dataset/DatasetList.tsx
diff --git a/superset-frontend/src/views/CRUD/data/dataset/types.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/dataset/types.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/dataset/types.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/dataset/types.ts
diff --git a/superset-frontend/src/views/CRUD/data/hooks.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/hooks.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/hooks.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/hooks.ts
diff --git a/superset-frontend/src/views/CRUD/data/query/QueryList.test.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/query/QueryList.test.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/query/QueryList.test.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/query/QueryList.test.tsx
diff --git a/superset-frontend/src/views/CRUD/data/query/QueryList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/query/QueryList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/query/QueryList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/query/QueryList.tsx
diff --git a/superset-frontend/src/views/CRUD/data/query/QueryPreviewModal.test.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/query/QueryPreviewModal.test.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/query/QueryPreviewModal.test.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/query/QueryPreviewModal.test.tsx
diff --git a/superset-frontend/src/views/CRUD/data/query/QueryPreviewModal.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/query/QueryPreviewModal.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/query/QueryPreviewModal.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/query/QueryPreviewModal.tsx
diff --git a/superset-frontend/src/views/CRUD/data/savedquery/SavedQueryList.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/savedquery/SavedQueryList.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/savedquery/SavedQueryList.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/savedquery/SavedQueryList.tsx
diff --git a/superset-frontend/src/views/CRUD/data/savedquery/SavedQueryPreviewModal.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/data/savedquery/SavedQueryPreviewModal.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/data/savedquery/SavedQueryPreviewModal.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/data/savedquery/SavedQueryPreviewModal.tsx
diff --git a/superset-frontend/src/views/CRUD/hooks.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/hooks.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/hooks.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/hooks.ts
diff --git a/superset-frontend/src/views/CRUD/types.ts b/superset-frontend/packages/superset-frontend/src/views/CRUD/types.ts
similarity index 100%
rename from superset-frontend/src/views/CRUD/types.ts
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/types.ts
diff --git a/superset-frontend/src/views/CRUD/utils.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/utils.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/utils.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/utils.tsx
diff --git a/superset-frontend/src/views/CRUD/welcome/ActivityTable.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/ActivityTable.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/welcome/ActivityTable.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/ActivityTable.tsx
diff --git a/superset-frontend/src/views/CRUD/welcome/ChartTable.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/ChartTable.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/welcome/ChartTable.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/ChartTable.tsx
diff --git a/superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx
diff --git a/superset-frontend/src/views/CRUD/welcome/EmptyState.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/EmptyState.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/welcome/EmptyState.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/EmptyState.tsx
diff --git a/superset-frontend/src/views/CRUD/welcome/SavedQueries.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/SavedQueries.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/welcome/SavedQueries.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/SavedQueries.tsx
diff --git a/superset-frontend/src/views/CRUD/welcome/Welcome.tsx b/superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/Welcome.tsx
similarity index 100%
rename from superset-frontend/src/views/CRUD/welcome/Welcome.tsx
rename to superset-frontend/packages/superset-frontend/src/views/CRUD/welcome/Welcome.tsx
diff --git a/superset-frontend/src/views/index.tsx b/superset-frontend/packages/superset-frontend/src/views/index.tsx
similarity index 100%
rename from superset-frontend/src/views/index.tsx
rename to superset-frontend/packages/superset-frontend/src/views/index.tsx
diff --git a/superset-frontend/src/views/menu.tsx b/superset-frontend/packages/superset-frontend/src/views/menu.tsx
similarity index 100%
rename from superset-frontend/src/views/menu.tsx
rename to superset-frontend/packages/superset-frontend/src/views/menu.tsx
diff --git a/superset-frontend/src/visualizations/FilterBox/FilterBox.jsx b/superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/FilterBox.jsx
similarity index 100%
rename from superset-frontend/src/visualizations/FilterBox/FilterBox.jsx
rename to superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/FilterBox.jsx
diff --git a/superset-frontend/src/visualizations/FilterBox/FilterBox.less b/superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/FilterBox.less
similarity index 100%
rename from superset-frontend/src/visualizations/FilterBox/FilterBox.less
rename to superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/FilterBox.less
diff --git a/superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js b/superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js
similarity index 100%
rename from superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js
rename to superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js
diff --git a/superset-frontend/src/visualizations/FilterBox/controlPanel.jsx b/superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/controlPanel.jsx
similarity index 100%
rename from superset-frontend/src/visualizations/FilterBox/controlPanel.jsx
rename to superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/controlPanel.jsx
diff --git a/superset-frontend/src/visualizations/FilterBox/images/thumbnail.png b/superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/images/thumbnail.png
similarity index 100%
rename from superset-frontend/src/visualizations/FilterBox/images/thumbnail.png
rename to superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/src/visualizations/FilterBox/images/thumbnailLarge.png b/superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/images/thumbnailLarge.png
similarity index 100%
rename from superset-frontend/src/visualizations/FilterBox/images/thumbnailLarge.png
rename to superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/src/visualizations/FilterBox/transformProps.js b/superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/transformProps.js
similarity index 100%
rename from superset-frontend/src/visualizations/FilterBox/transformProps.js
rename to superset-frontend/packages/superset-frontend/src/visualizations/FilterBox/transformProps.js
diff --git a/superset-frontend/src/visualizations/TimeTable/FormattedNumber.jsx b/superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/FormattedNumber.jsx
similarity index 100%
rename from superset-frontend/src/visualizations/TimeTable/FormattedNumber.jsx
rename to superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/FormattedNumber.jsx
diff --git a/superset-frontend/src/visualizations/TimeTable/SparklineCell.jsx b/superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/SparklineCell.jsx
similarity index 100%
rename from superset-frontend/src/visualizations/TimeTable/SparklineCell.jsx
rename to superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/SparklineCell.jsx
diff --git a/superset-frontend/src/visualizations/TimeTable/TimeTable.jsx b/superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/TimeTable.jsx
similarity index 100%
rename from superset-frontend/src/visualizations/TimeTable/TimeTable.jsx
rename to superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/TimeTable.jsx
diff --git a/superset-frontend/src/visualizations/TimeTable/TimeTable.less b/superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/TimeTable.less
similarity index 100%
rename from superset-frontend/src/visualizations/TimeTable/TimeTable.less
rename to superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/TimeTable.less
diff --git a/superset-frontend/src/visualizations/TimeTable/TimeTableChartPlugin.js b/superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/TimeTableChartPlugin.js
similarity index 100%
rename from superset-frontend/src/visualizations/TimeTable/TimeTableChartPlugin.js
rename to superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/TimeTableChartPlugin.js
diff --git a/superset-frontend/src/visualizations/TimeTable/images/thumbnail.png b/superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/images/thumbnail.png
similarity index 100%
rename from superset-frontend/src/visualizations/TimeTable/images/thumbnail.png
rename to superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/src/visualizations/TimeTable/images/thumbnailLarge.png b/superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/images/thumbnailLarge.png
similarity index 100%
rename from superset-frontend/src/visualizations/TimeTable/images/thumbnailLarge.png
rename to superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/src/visualizations/TimeTable/transformProps.js b/superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/transformProps.js
similarity index 100%
rename from superset-frontend/src/visualizations/TimeTable/transformProps.js
rename to superset-frontend/packages/superset-frontend/src/visualizations/TimeTable/transformProps.js
diff --git a/superset-frontend/src/visualizations/constants.js b/superset-frontend/packages/superset-frontend/src/visualizations/constants.js
similarity index 100%
rename from superset-frontend/src/visualizations/constants.js
rename to superset-frontend/packages/superset-frontend/src/visualizations/constants.js
diff --git a/superset-frontend/src/visualizations/presets/MainPreset.js b/superset-frontend/packages/superset-frontend/src/visualizations/presets/MainPreset.js
similarity index 100%
rename from superset-frontend/src/visualizations/presets/MainPreset.js
rename to superset-frontend/packages/superset-frontend/src/visualizations/presets/MainPreset.js
diff --git a/superset-frontend/stylesheets/antd/index.less b/superset-frontend/packages/superset-frontend/stylesheets/antd/index.less
similarity index 100%
rename from superset-frontend/stylesheets/antd/index.less
rename to superset-frontend/packages/superset-frontend/stylesheets/antd/index.less
diff --git a/superset-frontend/stylesheets/less/cosmo/bootswatch.less b/superset-frontend/packages/superset-frontend/stylesheets/less/cosmo/bootswatch.less
similarity index 100%
rename from superset-frontend/stylesheets/less/cosmo/bootswatch.less
rename to superset-frontend/packages/superset-frontend/stylesheets/less/cosmo/bootswatch.less
diff --git a/superset-frontend/stylesheets/less/cosmo/cosmoTheme.js b/superset-frontend/packages/superset-frontend/stylesheets/less/cosmo/cosmoTheme.js
similarity index 100%
rename from superset-frontend/stylesheets/less/cosmo/cosmoTheme.js
rename to superset-frontend/packages/superset-frontend/stylesheets/less/cosmo/cosmoTheme.js
diff --git a/superset-frontend/stylesheets/less/cosmo/variables.less b/superset-frontend/packages/superset-frontend/stylesheets/less/cosmo/variables.less
similarity index 100%
rename from superset-frontend/stylesheets/less/cosmo/variables.less
rename to superset-frontend/packages/superset-frontend/stylesheets/less/cosmo/variables.less
diff --git a/superset-frontend/stylesheets/less/fonts.less b/superset-frontend/packages/superset-frontend/stylesheets/less/fonts.less
similarity index 100%
rename from superset-frontend/stylesheets/less/fonts.less
rename to superset-frontend/packages/superset-frontend/stylesheets/less/fonts.less
diff --git a/superset-frontend/stylesheets/less/index.less b/superset-frontend/packages/superset-frontend/stylesheets/less/index.less
similarity index 100%
rename from superset-frontend/stylesheets/less/index.less
rename to superset-frontend/packages/superset-frontend/stylesheets/less/index.less
diff --git a/superset-frontend/stylesheets/less/variables.less b/superset-frontend/packages/superset-frontend/stylesheets/less/variables.less
similarity index 100%
rename from superset-frontend/stylesheets/less/variables.less
rename to superset-frontend/packages/superset-frontend/stylesheets/less/variables.less
diff --git a/superset-frontend/stylesheets/reactable-pagination.less b/superset-frontend/packages/superset-frontend/stylesheets/reactable-pagination.less
similarity index 100%
rename from superset-frontend/stylesheets/reactable-pagination.less
rename to superset-frontend/packages/superset-frontend/stylesheets/reactable-pagination.less
diff --git a/superset-frontend/stylesheets/superset.less b/superset-frontend/packages/superset-frontend/stylesheets/superset.less
similarity index 100%
rename from superset-frontend/stylesheets/superset.less
rename to superset-frontend/packages/superset-frontend/stylesheets/superset.less
diff --git a/superset-frontend/packages/superset-frontend/tsconfig.json b/superset-frontend/packages/superset-frontend/tsconfig.json
new file mode 100644
index 0000000..0940343
--- /dev/null
+++ b/superset-frontend/packages/superset-frontend/tsconfig.json
@@ -0,0 +1,48 @@
+{
+  "compilerOptions": {
+    "allowJs": true,
+    "allowSyntheticDefaultImports": true,
+    "baseUrl": ".",
+    "esModuleInterop": false,
+    "forceConsistentCasingInFileNames": true,
+    "importHelpers": false,
+    "jsx": "preserve",
+    "lib": ["dom", "esnext"],
+    "module": "esnext",
+    "moduleResolution": "node",
+    "noImplicitAny": true,
+    "noImplicitReturns": true,
+    "noImplicitThis": true,
+    "noUnusedLocals": true,
+    "outDir": "./dist",
+    "pretty": true,
+    "paths": {
+      "@superset-ui/core": [
+        "./node_modules/@superset-ui/core/src",
+        "./node_modules/@superset-ui/core"
+      ],
+      "@superset-ui/chart-controls": [
+        "./node_modules/@superset-ui/chart-controls/src",
+        "./node_modules/@superset-ui/chart-controls"
+      ],
+      // for supressing errors caused by incompatible @types/react when `npm link`
+      // Ref: https://github.com/Microsoft/typescript/issues/6496#issuecomment-384786222
+      "react": ["./node_modules/@types/react", "react"]
+    },
+    "skipLibCheck": true,
+    "sourceMap": true,
+    "strictNullChecks": true,
+    "suppressImplicitAnyIndexErrors": true,
+    "target": "esnext"
+  },
+  "include": [
+    "./src/**/*",
+    "./spec/**/*",
+    // include the source code of each plugin
+    "./node_modules/*superset-ui*/**/src/**/*",
+    "./node_modules/*superset-ui*/**/types/**/*",
+    // and the type defs of their dependencies
+    "./node_modules/*superset-ui*/**/node_modules/**/*.d.ts"
+  ],
+  "exclude": ["./node_modules/*superset-ui*/**/node_modules/@superset-ui/**/*"]
+}
diff --git a/superset-frontend/webpack.config.js b/superset-frontend/packages/superset-frontend/webpack.config.js
similarity index 100%
rename from superset-frontend/webpack.config.js
rename to superset-frontend/packages/superset-frontend/webpack.config.js
diff --git a/superset-frontend/webpack.proxy-config.js b/superset-frontend/packages/superset-frontend/webpack.proxy-config.js
similarity index 100%
rename from superset-frontend/webpack.proxy-config.js
rename to superset-frontend/packages/superset-frontend/webpack.proxy-config.js
diff --git a/superset-frontend/packages/superset-ui-chart-controls/README.md b/superset-frontend/packages/superset-ui-chart-controls/README.md
new file mode 100644
index 0000000..b1ed880
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/README.md
@@ -0,0 +1,23 @@
+## @superset-ui/chart-controls
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/chart-controls.svg?style=flat)](https://www.npmjs.com/package/@superset-ui/chart-controls)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-chart-controls&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-chart-controls)
+
+Description
+
+#### Example usage
+
+```js
+import { xxx } from '@superset-ui/chart-controls';
+```
+
+#### API
+
+`fn(args)`
+
+- Do something
+
+### Development
+
+`@data-ui/build-config` is used to manage the build configuration for this package including babel
+builds, jest testing, eslint, and prettier.
diff --git a/superset-frontend/packages/superset-ui-chart-controls/package.json b/superset-frontend/packages/superset-ui-chart-controls/package.json
new file mode 100644
index 0000000..2021724
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/package.json
@@ -0,0 +1,40 @@
+{
+  "name": "@superset-ui/chart-controls",
+  "version": "0.17.5",
+  "description": "Superset UI control-utils",
+  "sideEffects": false,
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/core": "0.17.5",
+    "lodash": "^4.17.15",
+    "prop-types": "^15.7.2"
+  },
+  "peerDependencies": {
+    "@types/react": "*",
+    "@types/react-bootstrap": "*",
+    "antd": "^4.9.1",
+    "react": "^16.13.1",
+    "react-bootstrap": "^0.33.1"
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx
new file mode 100644
index 0000000..ee5279c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx
@@ -0,0 +1,66 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { Tooltip, OverlayTrigger } from 'react-bootstrap';
+import { kebabCase } from 'lodash';
+import { t, supersetTheme } from '@superset-ui/core';
+
+const tooltipStyle: React.CSSProperties = { wordWrap: 'break-word' };
+
+interface CertifiedIconWithTooltipProps {
+  certifiedBy?: string | null;
+  details?: string | null;
+  metricName: string;
+}
+
+function CertifiedIconWithTooltip({
+  certifiedBy,
+  details,
+  metricName,
+}: CertifiedIconWithTooltipProps) {
+  return (
+    <OverlayTrigger
+      placement="top"
+      overlay={
+        <Tooltip id={`${kebabCase(metricName)}-tooltip`} style={tooltipStyle}>
+          {certifiedBy && <div>{t('Certified by %s', certifiedBy)}</div>}
+          <div>{details}</div>
+        </Tooltip>
+      }
+    >
+      {/* TODO: move Icons to superset-ui to remove duplicated icon code here */}
+      <svg
+        xmlns="http://www.w3.org/2000/svg"
+        enableBackground="new 0 0 24 24"
+        height="16"
+        viewBox="0 0 24 24"
+        width="16"
+      >
+        <g>
+          <path
+            fill={supersetTheme.colors.primary.base}
+            d="M23,12l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7 l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,12z M9.38,16.01L7,13.61c-0.39-0.39-0.39-1.02,0-1.41 l0.07-0.07c0.39-0.39,1.03-0.39,1.42,0l1.61,1.62l5.15-5.16c0.39-0.39,1.03-0.39,1.42,0l0.07,0.07c0.39,0.39,0.39,1.02,0,1.41 l-5.92,5.94C10.41,16.4,9.78,16.4,9.38,16.01z"
+          />
+        </g>
+      </svg>
+    </OverlayTrigger>
+  );
+}
+
+export default CertifiedIconWithTooltip;
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnOption.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnOption.tsx
new file mode 100644
index 0000000..8403ba3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnOption.tsx
@@ -0,0 +1,73 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { Tooltip } from './Tooltip';
+import { ColumnTypeLabel } from './ColumnTypeLabel';
+import InfoTooltipWithTrigger from './InfoTooltipWithTrigger';
+import { ColumnMeta } from '../types';
+
+export type ColumnOptionProps = {
+  column: ColumnMeta;
+  showType?: boolean;
+};
+
+export function ColumnOption({ column, showType = false }: ColumnOptionProps) {
+  const hasExpression = column.expression && column.expression !== column.column_name;
+
+  let columnType = column.type;
+  if (column.is_dttm) {
+    columnType = 'time';
+  } else if (hasExpression) {
+    columnType = 'expression';
+  }
+
+  return (
+    <span>
+      {showType && columnType && <ColumnTypeLabel type={columnType} />}
+      <Tooltip
+        id="metric-name-tooltip"
+        title={column.verbose_name || column.column_name}
+        trigger={['hover']}
+        placement="top"
+      >
+        <span className="m-r-5 option-label">{column.verbose_name || column.column_name}</span>
+      </Tooltip>
+      {column.description && (
+        <InfoTooltipWithTrigger
+          className="m-r-5 text-muted"
+          icon="info"
+          tooltip={column.description}
+          label={`descr-${column.column_name}`}
+          placement="top"
+        />
+      )}
+      {hasExpression && (
+        <InfoTooltipWithTrigger
+          className="m-r-5 text-muted"
+          icon="question-circle-o"
+          tooltip={column.expression}
+          label={`expr-${column.column_name}`}
+          placement="top"
+        />
+      )}
+    </span>
+  );
+}
+
+export default ColumnOption;
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel.tsx
new file mode 100644
index 0000000..7b7b92d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel.tsx
@@ -0,0 +1,55 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+
+export type ColumnTypeLabelProps = {
+  type: string;
+};
+
+export function ColumnTypeLabel({ type }: ColumnTypeLabelProps) {
+  let stringIcon = '';
+  if (typeof type !== 'string') {
+    stringIcon = '?';
+  } else if (type === '' || type === 'expression') {
+    stringIcon = 'ƒ';
+  } else if (type === 'aggregate') {
+    stringIcon = 'AGG';
+  } else if (type.match(/.*char.*/i) || type.match(/string.*/i) || type.match(/.*text.*/i)) {
+    stringIcon = 'ABC';
+  } else if (type.match(/.*int.*/i) || type === 'LONG' || type === 'DOUBLE' || type === 'FLOAT') {
+    stringIcon = '#';
+  } else if (type.match(/.*bool.*/i)) {
+    stringIcon = 'T/F';
+  } else if (type.match(/.*time.*/i)) {
+    stringIcon = 'time';
+  } else if (type.match(/unknown/i)) {
+    stringIcon = '?';
+  }
+
+  const typeIcon =
+    stringIcon === 'time' ? (
+      <i className="fa fa-clock-o type-label" />
+    ) : (
+      <div className="type-label">{stringIcon}</div>
+    );
+
+  return <span>{typeIcon}</span>;
+}
+
+export default ColumnTypeLabel;
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx
new file mode 100644
index 0000000..ec78e1c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx
@@ -0,0 +1,73 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { kebabCase } from 'lodash';
+import { TooltipPlacement } from 'antd/lib/tooltip';
+import { t } from '@superset-ui/core';
+import { Tooltip } from './Tooltip';
+
+export interface InfoTooltipWithTriggerProps {
+  label?: string;
+  tooltip?: string;
+  icon?: string;
+  onClick?: () => void;
+  placement?: TooltipPlacement;
+  bsStyle?: string;
+  className?: string;
+}
+
+export function InfoTooltipWithTrigger({
+  label,
+  tooltip,
+  bsStyle,
+  onClick,
+  icon = 'info-circle',
+  className = 'text-muted',
+  placement = 'right',
+}: InfoTooltipWithTriggerProps) {
+  const iconClass = `fa fa-${icon} ${className} ${bsStyle ? `text-${bsStyle}` : ''}`;
+  const iconEl = (
+    <i
+      role="button"
+      aria-label={t('Show info tooltip')}
+      tabIndex={0}
+      className={iconClass}
+      style={{ cursor: onClick ? 'pointer' : undefined }}
+      onClick={onClick}
+      onKeyPress={
+        onClick &&
+        ((event: React.KeyboardEvent) => {
+          if (event.key === 'Enter' || event.key === ' ') {
+            onClick();
+          }
+        })
+      }
+    />
+  );
+  if (!tooltip) {
+    return iconEl;
+  }
+  return (
+    <Tooltip id={`${kebabCase(label)}-tooltip`} title={tooltip} placement={placement}>
+      {iconEl}
+    </Tooltip>
+  );
+}
+
+export default InfoTooltipWithTrigger;
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/components/MetricOption.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/components/MetricOption.tsx
new file mode 100644
index 0000000..6671cfe
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/components/MetricOption.tsx
@@ -0,0 +1,95 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { styled } from '@superset-ui/core';
+import InfoTooltipWithTrigger from './InfoTooltipWithTrigger';
+import { ColumnTypeLabel } from './ColumnTypeLabel';
+import CertifiedIconWithTooltip from './CertifiedIconWithTooltip';
+import { Metric } from '../types';
+
+const FlexRowContainer = styled.div`
+  align-items: center;
+  display: flex;
+
+  > svg {
+    margin-right: ${({ theme }) => theme.gridUnit}px;
+  }
+`;
+
+export interface MetricOptionProps {
+  metric: Metric;
+  openInNewWindow?: boolean;
+  showFormula?: boolean;
+  showType?: boolean;
+  url?: string;
+}
+
+export function MetricOption({
+  metric,
+  openInNewWindow = false,
+  showFormula = true,
+  showType = false,
+  url = '',
+}: MetricOptionProps) {
+  const verbose = metric.verbose_name || metric.metric_name || metric.label;
+  const link = url ? (
+    <a href={url} target={openInNewWindow ? '_blank' : ''} rel="noreferrer">
+      {verbose}
+    </a>
+  ) : (
+    verbose
+  );
+  return (
+    <FlexRowContainer className="metric-option">
+      {showType && <ColumnTypeLabel type="expression" />}
+      {metric.is_certified && (
+        <CertifiedIconWithTooltip
+          metricName={metric.metric_name}
+          certifiedBy={metric.certified_by}
+          details={metric.certification_details}
+        />
+      )}
+      <span className="option-label">{link}</span>
+      {metric.description && (
+        <InfoTooltipWithTrigger
+          className="text-muted"
+          icon="info"
+          tooltip={metric.description}
+          label={`descr-${metric.metric_name}`}
+        />
+      )}
+      {showFormula && (
+        <InfoTooltipWithTrigger
+          className="text-muted"
+          icon="question-circle-o"
+          tooltip={metric.expression}
+          label={`expr-${metric.metric_name}`}
+        />
+      )}
+      {metric.warning_text && (
+        <InfoTooltipWithTrigger
+          className="text-danger"
+          icon="warning"
+          tooltip={metric.warning_text}
+          label={`warn-${metric.metric_name}`}
+        />
+      )}
+    </FlexRowContainer>
+  );
+}
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/components/RadioButtonControl.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/components/RadioButtonControl.tsx
new file mode 100644
index 0000000..8d30811
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/components/RadioButtonControl.tsx
@@ -0,0 +1,91 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { ReactText, ReactNode, MouseEvent, useCallback } from 'react';
+import { styled } from '@superset-ui/core';
+import { InfoTooltipWithTrigger } from './InfoTooltipWithTrigger';
+
+export interface RadioButtonOption {
+  label: string;
+  value: ReactText;
+}
+
+export interface RadioButtonControlProps {
+  label?: ReactNode;
+  description?: string;
+  options: RadioButtonOption[];
+  hovered?: boolean;
+  value?: string;
+  onChange: (opt: string) => void;
+}
+
+const Styles = styled.div`
+  .btn:focus {
+    outline: none;
+  }
+  .control-label + .btn-group {
+    margin-top: 1px;
+  }
+  .btn-group .btn.active {
+    background: ${({ theme }) => theme.colors.secondary.light5};
+    box-shadow: none;
+    font-weight: ${({ theme }) => theme.typography.weights.bold};
+  }
+`;
+
+export default function RadioButtonControl({
+  label: controlLabel,
+  description,
+  value: initialValue,
+  hovered,
+  options,
+  onChange,
+}: RadioButtonControlProps) {
+  const currentValue = initialValue || options[0].value;
+  const onClick = useCallback(
+    (e: MouseEvent<HTMLButtonElement>) => {
+      onChange(e.currentTarget.value);
+    },
+    [onChange],
+  );
+  return (
+    <Styles>
+      {controlLabel && (
+        <div className="control-label">
+          {controlLabel}{' '}
+          {hovered && description && (
+            <InfoTooltipWithTrigger tooltip={description} placement="top" />
+          )}
+        </div>
+      )}
+      <div className="btn-group btn-group-sm">
+        {options.map(({ label, value }, i) => (
+          <button
+            key={value}
+            type="button"
+            className={`btn btn-default ${options[i].value === currentValue ? 'active' : ''}`}
+            value={value}
+            onClick={onClick}
+          >
+            {label}
+          </button>
+        ))}
+      </div>
+    </Styles>
+  );
+}
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/components/Tooltip.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/components/Tooltip.tsx
new file mode 100644
index 0000000..71b73a6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/components/Tooltip.tsx
@@ -0,0 +1,16 @@
+import React from 'react';
+import { useTheme } from '@superset-ui/core';
+import { Tooltip as BaseTooltip } from 'antd';
+import { TooltipProps } from 'antd/lib/tooltip';
+
+export const Tooltip = ({ overlayStyle, color, ...props }: TooltipProps) => {
+  const theme = useTheme();
+  const defaultColor = `${theme.colors.grayscale.dark2}e6`;
+  return (
+    <BaseTooltip
+      overlayStyle={{ fontSize: theme.typography.sizes.s, lineHeight: '1.6', ...overlayStyle }}
+      color={defaultColor || color}
+      {...props}
+    />
+  );
+};
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/constants.ts b/superset-frontend/packages/superset-ui-chart-controls/src/constants.ts
new file mode 100644
index 0000000..b9934ad
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/constants.ts
@@ -0,0 +1,28 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+
+// eslint-disable-next-line import/prefer-default-export
+export const TIME_FILTER_LABELS = {
+  time_range: t('Time Range'),
+  granularity_sqla: t('Time Column'),
+  time_grain_sqla: t('Time Grain'),
+  druid_time_origin: t('Origin'),
+  granularity: t('Time Granularity'),
+};
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/index.ts b/superset-frontend/packages/superset-ui-chart-controls/src/index.ts
new file mode 100644
index 0000000..e33cdbd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/index.ts
@@ -0,0 +1,37 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import * as sectionsModule from './sections';
+
+export * from './utils';
+export { default as sharedControls } from './shared-controls';
+
+// can't do `export * as sections from './sections'`, babel-transformer will fail
+export const sections = sectionsModule;
+
+export * from './components/InfoTooltipWithTrigger';
+export * from './components/ColumnOption';
+export * from './components/ColumnTypeLabel';
+export * from './components/MetricOption';
+
+// React control components
+export * from './components/RadioButtonControl';
+export * from './types';
+
+// hack for fixing invalid webpack builds when using `npm link`
+export { default as __hack_reexport__ } from './types';
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/sections.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/sections.tsx
new file mode 100644
index 0000000..b675d78
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/sections.tsx
@@ -0,0 +1,117 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelSectionConfig } from './types';
+
+// A few standard controls sections that are used internally.
+// Not recommended for use in third-party plugins.
+
+const baseTimeSection = {
+  label: t('Time'),
+  expanded: true,
+  description: t('Time related form attributes'),
+};
+
+export const legacyTimeseriesTime: ControlPanelSectionConfig = {
+  ...baseTimeSection,
+  controlSetRows: [
+    ['granularity'],
+    ['druid_time_origin'],
+    ['granularity_sqla'],
+    ['time_grain_sqla'],
+    ['time_range'],
+  ],
+};
+
+export const legacyRegularTime: ControlPanelSectionConfig = {
+  ...baseTimeSection,
+  controlSetRows: [['granularity_sqla'], ['time_range']],
+};
+
+export const datasourceAndVizType: ControlPanelSectionConfig = {
+  label: t('Datasource & Chart Type'),
+  expanded: true,
+  controlSetRows: [
+    ['datasource'],
+    ['viz_type'],
+    [
+      {
+        name: 'slice_id',
+        config: {
+          type: 'HiddenControl',
+          label: t('Chart ID'),
+          hidden: true,
+          description: t('The id of the active chart'),
+        },
+      },
+      {
+        name: 'cache_timeout',
+        config: {
+          type: 'HiddenControl',
+          label: t('Cache Timeout (seconds)'),
+          hidden: true,
+          description: t('The number of seconds before expiring the cache'),
+        },
+      },
+      {
+        name: 'url_params',
+        config: {
+          type: 'HiddenControl',
+          label: t('URL Parameters'),
+          hidden: true,
+          description: t('Extra parameters for use in jinja templated queries'),
+        },
+      },
+      {
+        name: 'time_range_endpoints',
+        config: {
+          type: 'HiddenControl',
+          label: t('Time range endpoints'),
+          hidden: true,
+          description: t('Time range endpoints (SIP-15)'),
+        },
+      },
+    ],
+  ],
+};
+
+export const colorScheme: ControlPanelSectionConfig = {
+  label: t('Color Scheme'),
+  controlSetRows: [['color_scheme', 'label_colors']],
+};
+
+export const annotations: ControlPanelSectionConfig = {
+  label: t('Annotations and Layers'),
+  tabOverride: 'data',
+  expanded: true,
+  controlSetRows: [
+    [
+      {
+        name: 'annotation_layers',
+        config: {
+          type: 'AnnotationLayerControl',
+          label: '',
+          default: [],
+          description: 'Annotation Layers',
+          renderTrigger: true,
+        },
+      },
+    ],
+  ],
+};
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components.tsx
new file mode 100644
index 0000000..bc01964
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components.tsx
@@ -0,0 +1,28 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import RadioButtonControl from '../components/RadioButtonControl';
+
+export * from '../components/RadioButtonControl';
+
+/**
+ * Aliases for Control Components
+ */
+export default {
+  RadioButtonControl,
+};
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/index.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/index.tsx
new file mode 100644
index 0000000..c4723c8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/index.tsx
@@ -0,0 +1,508 @@
+/* eslint-disable camelcase */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/**
+ * This file exports all controls available for use in chart plugins internal to Superset.
+ * It is not recommended to use the controls here for any third-party plugins.
+ *
+ * While the React components located in `controls/components` represent different
+ * types of controls (CheckboxControl, SelectControl, TextControl, ...), the controls here
+ * represent instances of control types, that can be reused across visualization types.
+ *
+ * When controls are reused across viz types, their values are carried over as a user
+ * changes the chart types.
+ *
+ * While the keys defined in the control itself get passed to the controlType as props,
+ * here's a list of the keys that are common to all controls, and as a result define the
+ * control interface.
+ */
+import React from 'react';
+import {
+  t,
+  getCategoricalSchemeRegistry,
+  getSequentialSchemeRegistry,
+  SequentialScheme,
+  legacyValidateInteger,
+  validateNonEmpty,
+  smartDateFormatter,
+} from '@superset-ui/core';
+
+import { mainMetric, formatSelectOptions } from '../utils';
+import { TIME_FILTER_LABELS } from '../constants';
+import {
+  Metric,
+  SharedControlConfig,
+  ColumnMeta,
+  ExtraControlProps,
+  SelectControlConfig,
+} from '../types';
+import { ColumnOption } from '../components/ColumnOption';
+
+const categoricalSchemeRegistry = getCategoricalSchemeRegistry();
+const sequentialSchemeRegistry = getSequentialSchemeRegistry();
+
+export const PRIMARY_COLOR = { r: 0, g: 122, b: 135, a: 1 };
+
+// input choices & options
+export const D3_FORMAT_OPTIONS = [
+  ['SMART_NUMBER', 'Adaptative formating'],
+  ['~g', 'Original value'],
+  [',d', ',d (12345.432 => 12,345)'],
+  ['.1s', '.1s (12345.432 => 10k)'],
+  ['.3s', '.3s (12345.432 => 12.3k)'],
+  [',.1%', ',.1% (12345.432 => 1,234,543.2%)'],
+  ['.3%', '.3% (12345.432 => 1234543.200%)'],
+  ['.4r', '.4r (12345.432 => 12350)'],
+  [',.3f', ',.3f (12345.432 => 12,345.432)'],
+  ['+,', '+, (12345.432 => +12,345.432)'],
+  ['$,.2f', '$,.2f (12345.432 => $12,345.43)'],
+  ['DURATION', 'Duration in ms (66000 => 1m 6s)'],
+  ['DURATION_SUB', 'Duration in ms (100.40008 => 100ms 400µs 80ns)'],
+];
+
+const ROW_LIMIT_OPTIONS = [10, 50, 100, 250, 500, 1000, 5000, 10000, 50000];
+const SERIES_LIMITS = [0, 5, 10, 25, 50, 100, 500];
+
+export const D3_FORMAT_DOCS = t('D3 format syntax: https://github.com/d3/d3-format');
+
+export const D3_TIME_FORMAT_OPTIONS = [
+  ['smart_date', t('Adaptative formating')],
+  ['%d/%m/%Y', '%d/%m/%Y | 14/01/2019'],
+  ['%m/%d/%Y', '%m/%d/%Y | 01/14/2019'],
+  ['%Y-%m-%d', '%Y-%m-%d | 2019-01-14'],
+  ['%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M:%S | 2019-01-14 01:32:10'],
+  ['%d-%m-%Y %H:%M:%S', '%Y-%m-%d %H:%M:%S | 14-01-2019 01:32:10'],
+  ['%H:%M:%S', '%H:%M:%S | 01:32:10'],
+];
+
+export const D3_TIME_FORMAT_DOCS = t('D3 time format syntax: https://github.com/d3/d3-time-format');
+
+const timeColumnOption = {
+  verbose_name: t('Time'),
+  column_name: '__timestamp',
+  description: t('A reference to the [Time] configuration, taking granularity into account'),
+};
+
+type Control = {
+  savedMetrics?: Metric[] | null;
+  default?: unknown;
+};
+
+const groupByControl: SharedControlConfig<'SelectControl', ColumnMeta> = {
+  type: 'SelectControl',
+  label: t('Group by'),
+  multi: true,
+  freeForm: true,
+  clearable: true,
+  default: [],
+  includeTime: false,
+  description: t('One or many columns to group by'),
+  optionRenderer: c => <ColumnOption showType column={c} />,
+  valueRenderer: c => <ColumnOption column={c} />,
+  valueKey: 'column_name',
+  allowAll: true,
+  filterOption: ({ data: opt }, text: string) =>
+    (opt.column_name && opt.column_name.toLowerCase().includes(text.toLowerCase())) ||
+    (opt.verbose_name && opt.verbose_name.toLowerCase().includes(text.toLowerCase())) ||
+    false,
+  promptTextCreator: (label: unknown) => label,
+  mapStateToProps(state, { includeTime }) {
+    const newState: ExtraControlProps = {};
+    if (state.datasource) {
+      const options = state.datasource.columns.filter(c => c.groupby);
+      if (includeTime) {
+        options.unshift(timeColumnOption);
+      }
+      newState.options = options;
+    }
+    return newState;
+  },
+  commaChoosesOption: false,
+};
+
+const metrics: SharedControlConfig<'MetricsControl'> = {
+  type: 'MetricsControl',
+  multi: true,
+  label: t('Metrics'),
+  validators: [validateNonEmpty],
+  default: (c: Control) => {
+    const metric = mainMetric(c.savedMetrics);
+    return metric ? [metric] : null;
+  },
+  mapStateToProps: ({ datasource }) => ({
+    columns: datasource ? datasource.columns : [],
+    savedMetrics: datasource ? datasource.metrics : [],
+    datasourceType: datasource?.type,
+  }),
+  description: t('One or many metrics to display'),
+};
+
+const metric: SharedControlConfig<'MetricsControl'> = {
+  ...metrics,
+  multi: false,
+  label: t('Metric'),
+  description: t('Metric'),
+  default: (c: Control) => mainMetric(c.savedMetrics),
+};
+
+const datasourceControl: SharedControlConfig<'DatasourceControl'> = {
+  type: 'DatasourceControl',
+  label: t('Datasource'),
+  default: null,
+  description: null,
+  mapStateToProps: ({ datasource }) => ({
+    datasource,
+  }),
+};
+
+const viz_type: SharedControlConfig<'VizTypeControl'> = {
+  type: 'VizTypeControl',
+  label: t('Visualization Type'),
+  default: 'table',
+  description: t('The type of visualization to display'),
+};
+
+const color_picker: SharedControlConfig<'ColorPickerControl'> = {
+  type: 'ColorPickerControl',
+  label: t('Fixed Color'),
+  description: t('Use this to define a static color for all circles'),
+  default: PRIMARY_COLOR,
+  renderTrigger: true,
+};
+
+const metric_2: SharedControlConfig<'MetricsControl'> = {
+  ...metric,
+  label: t('Right Axis Metric'),
+  clearable: true,
+  description: t('Choose a metric for right axis'),
+};
+
+const linear_color_scheme: SharedControlConfig<'ColorSchemeControl'> = {
+  type: 'ColorSchemeControl',
+  label: t('Linear Color Scheme'),
+  choices: () =>
+    (sequentialSchemeRegistry.values() as SequentialScheme[]).map(value => [value.id, value.label]),
+  default: sequentialSchemeRegistry.getDefaultKey(),
+  clearable: false,
+  description: '',
+  renderTrigger: true,
+  schemes: () => sequentialSchemeRegistry.getMap(),
+  isLinear: true,
+};
+
+const secondary_metric: SharedControlConfig<'MetricsControl'> = {
+  ...metric,
+  label: t('Color Metric'),
+  default: null,
+  validators: [],
+  description: t('A metric to use for color'),
+};
+
+const columnsControl: typeof groupByControl = {
+  ...groupByControl,
+  label: t('Columns'),
+  description: t('One or many columns to pivot as columns'),
+};
+
+const druid_time_origin: SharedControlConfig<'SelectControl'> = {
+  type: 'SelectControl',
+  freeForm: true,
+  label: TIME_FILTER_LABELS.druid_time_origin,
+  choices: [
+    ['', 'default'],
+    ['now', 'now'],
+  ],
+  default: null,
+  description: t(
+    'Defines the origin where time buckets start, ' +
+      'accepts natural dates as in `now`, `sunday` or `1970-01-01`',
+  ),
+};
+
+const granularity: SharedControlConfig<'SelectControl'> = {
+  type: 'SelectControl',
+  freeForm: true,
+  label: TIME_FILTER_LABELS.granularity,
+  default: 'one day',
+  choices: [
+    [null, 'all'],
+    ['PT5S', '5 seconds'],
+    ['PT30S', '30 seconds'],
+    ['PT1M', '1 minute'],
+    ['PT5M', '5 minutes'],
+    ['PT30M', '30 minutes'],
+    ['PT1H', '1 hour'],
+    ['PT6H', '6 hour'],
+    ['P1D', '1 day'],
+    ['P7D', '7 days'],
+    ['P1W', 'week'],
+    ['week_starting_sunday', 'week starting Sunday'],
+    ['week_ending_saturday', 'week ending Saturday'],
+    ['P1M', 'month'],
+    ['P3M', 'quarter'],
+    ['P1Y', 'year'],
+  ],
+  description: t(
+    'The time granularity for the visualization. Note that you ' +
+      'can type and use simple natural language as in `10 seconds`, ' +
+      '`1 day` or `56 weeks`',
+  ),
+};
+
+const granularity_sqla: SharedControlConfig<'SelectControl', ColumnMeta> = {
+  type: 'SelectControl',
+  label: TIME_FILTER_LABELS.granularity_sqla,
+  description: t(
+    'The time column for the visualization. Note that you ' +
+      'can define arbitrary expression that return a DATETIME ' +
+      'column in the table. Also note that the ' +
+      'filter below is applied against this column or ' +
+      'expression',
+  ),
+  default: (c: Control) => c.default,
+  clearable: false,
+  optionRenderer: c => <ColumnOption showType column={c} />,
+  valueRenderer: c => <ColumnOption column={c} />,
+  valueKey: 'column_name',
+  mapStateToProps: state => {
+    const props: Partial<SelectControlConfig<ColumnMeta>> = {};
+    if (state.datasource) {
+      props.options = state.datasource.columns.filter(c => c.is_dttm);
+      props.default = null;
+      if (state.datasource.main_dttm_col) {
+        props.default = state.datasource.main_dttm_col;
+      } else if (props.options && props.options.length > 0) {
+        props.default = props.options[0].column_name;
+      }
+    }
+    return props;
+  },
+};
+
+const time_grain_sqla: SharedControlConfig<'SelectControl'> = {
+  type: 'SelectControl',
+  label: TIME_FILTER_LABELS.time_grain_sqla,
+  default: 'P1D',
+  description: t(
+    'The time granularity for the visualization. This ' +
+      'applies a date transformation to alter ' +
+      'your time column and defines a new time granularity. ' +
+      'The options here are defined on a per database ' +
+      'engine basis in the Superset source code.',
+  ),
+  mapStateToProps: ({ datasource }) => ({
+    choices: datasource?.time_grain_sqla || null,
+  }),
+};
+
+const time_range: SharedControlConfig<'DateFilterControl'> = {
+  type: 'DateFilterControl',
+  freeForm: true,
+  label: TIME_FILTER_LABELS.time_range,
+  default: t('Last week'), // this value is translated, but the backend wouldn't understand a translated value?
+  description: t(
+    'The time range for the visualization. All relative times, e.g. "Last month", ' +
+      '"Last 7 days", "now", etc. are evaluated on the server using the server\'s ' +
+      'local time (sans timezone). All tooltips and placeholder times are expressed ' +
+      'in UTC (sans timezone). The timestamps are then evaluated by the database ' +
+      "using the engine's local timezone. Note one can explicitly set the timezone " +
+      'per the ISO 8601 format if specifying either the start and/or end time.',
+  ),
+  mapStateToProps: ({ form_data }) => ({
+    endpoints: form_data?.time_range_endpoints || null,
+  }),
+};
+
+const row_limit: SharedControlConfig<'SelectControl'> = {
+  type: 'SelectControl',
+  freeForm: true,
+  label: t('Row limit'),
+  validators: [legacyValidateInteger],
+  default: 10000,
+  choices: formatSelectOptions(ROW_LIMIT_OPTIONS),
+};
+
+const limit: SharedControlConfig<'SelectControl'> = {
+  type: 'SelectControl',
+  freeForm: true,
+  label: t('Series limit'),
+  validators: [legacyValidateInteger],
+  choices: formatSelectOptions(SERIES_LIMITS),
+  description: t(
+    'Limits the number of time series that get displayed. A sub query ' +
+      '(or an extra phase where sub queries are not supported) is applied to limit ' +
+      'the number of time series that get fetched and displayed. This feature is useful ' +
+      'when grouping by high cardinality dimension(s).',
+  ),
+};
+
+const timeseries_limit_metric: SharedControlConfig<'MetricsControl'> = {
+  type: 'MetricsControl',
+  label: t('Sort By'),
+  default: null,
+  description: t('Metric used to define the top series'),
+  mapStateToProps: ({ datasource }) => ({
+    columns: datasource?.columns || [],
+    savedMetrics: datasource?.metrics || [],
+    datasourceType: datasource?.type,
+  }),
+};
+
+const series: typeof groupByControl = {
+  ...groupByControl,
+  label: t('Series'),
+  multi: false,
+  default: null,
+  description: t(
+    'Defines the grouping of entities. ' +
+      'Each series is shown as a specific color on the chart and ' +
+      'has a legend toggle',
+  ),
+};
+
+const entity: typeof groupByControl = {
+  ...groupByControl,
+  label: t('Entity'),
+  default: null,
+  multi: false,
+  validators: [validateNonEmpty],
+  description: t('This defines the element to be plotted on the chart'),
+};
+
+const x: SharedControlConfig<'MetricsControl'> = {
+  ...metric,
+  label: t('X Axis'),
+  description: t('Metric assigned to the [X] axis'),
+  default: null,
+};
+
+const y: SharedControlConfig<'MetricsControl'> = {
+  ...metric,
+  label: t('Y Axis'),
+  default: null,
+  description: t('Metric assigned to the [Y] axis'),
+};
+
+const size: SharedControlConfig<'MetricsControl'> = {
+  ...metric,
+  label: t('Bubble Size'),
+  default: null,
+};
+
+const y_axis_format: SharedControlConfig<'SelectControl'> = {
+  type: 'SelectControl',
+  freeForm: true,
+  label: t('Y Axis Format'),
+  renderTrigger: true,
+  default: 'SMART_NUMBER',
+  choices: D3_FORMAT_OPTIONS,
+  description: D3_FORMAT_DOCS,
+  mapStateToProps: state => {
+    const showWarning = state.controls?.comparison_type?.value === 'percentage';
+    return {
+      warning: showWarning
+        ? t(
+            'When `Calculation type` is set to "Percentage change", the Y ' +
+              'Axis Format is forced to `.1%`',
+          )
+        : null,
+      disabled: showWarning,
+    };
+  },
+};
+
+const x_axis_time_format: SharedControlConfig<'SelectControl'> = {
+  type: 'SelectControl',
+  freeForm: true,
+  label: t('Time format'),
+  renderTrigger: true,
+  default: smartDateFormatter.id,
+  choices: D3_TIME_FORMAT_OPTIONS,
+  description: D3_TIME_FORMAT_DOCS,
+};
+
+const adhoc_filters: SharedControlConfig<'AdhocFilterControl'> = {
+  type: 'AdhocFilterControl',
+  label: t('Filters'),
+  default: null,
+  description: '',
+  mapStateToProps: ({ datasource }) => ({
+    columns: datasource?.columns.filter(c => c.filterable) || [],
+    savedMetrics: datasource?.metrics || [],
+    datasource,
+  }),
+  provideFormDataToProps: true,
+};
+
+const color_scheme: SharedControlConfig<'ColorSchemeControl'> = {
+  type: 'ColorSchemeControl',
+  label: t('Color Scheme'),
+  default: categoricalSchemeRegistry.getDefaultKey(),
+  renderTrigger: true,
+  choices: () => categoricalSchemeRegistry.keys().map(s => [s, s]),
+  description: t('The color scheme for rendering chart'),
+  schemes: () => categoricalSchemeRegistry.getMap(),
+};
+
+const label_colors: SharedControlConfig<'ColorMapControl'> = {
+  type: 'ColorMapControl',
+  label: t('Color Map'),
+  default: {},
+  renderTrigger: true,
+  mapStateToProps: ({
+    form_data: { color_namespace: colorNamespace, color_scheme: colorScheme },
+  }) => ({
+    colorNamespace,
+    colorScheme,
+  }),
+};
+
+const sharedControls = {
+  metrics,
+  metric,
+  datasource: datasourceControl,
+  viz_type,
+  color_picker,
+  metric_2,
+  linear_color_scheme,
+  secondary_metric,
+  groupby: groupByControl,
+  columns: columnsControl,
+  druid_time_origin,
+  granularity,
+  granularity_sqla,
+  time_grain_sqla,
+  time_range,
+  row_limit,
+  limit,
+  timeseries_limit_metric,
+  series,
+  entity,
+  x,
+  y,
+  size,
+  y_axis_format,
+  x_axis_time_format,
+  adhoc_filters,
+  color_scheme,
+  label_colors,
+};
+
+export default sharedControls;
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/types.ts b/superset-frontend/packages/superset-ui-chart-controls/src/types.ts
new file mode 100644
index 0000000..b47cc1c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/types.ts
@@ -0,0 +1,329 @@
+/* eslint-disable camelcase */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { ReactNode, ReactText, ReactElement } from 'react';
+import { QueryFormData, DatasourceType } from '@superset-ui/core';
+import sharedControls from './shared-controls';
+import sharedControlComponents from './shared-controls/components';
+
+export type Metric = {
+  metric_name: string;
+  verbose_name?: string;
+  label?: string;
+  description?: string;
+  warning_text?: string;
+  expression?: string;
+  is_certified?: boolean;
+  certified_by?: string | null;
+  certification_details?: string | null;
+};
+
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+type AnyDict = Record<string, any>;
+interface Action {
+  type: string;
+}
+interface AnyAction extends Action, AnyDict {}
+
+export type SharedControls = typeof sharedControls;
+export type SharedControlAlias = keyof typeof sharedControls;
+export type SharedControlComponents = typeof sharedControlComponents;
+
+/** ----------------------------------------------
+ * Input data/props while rendering
+ * ---------------------------------------------*/
+export interface ColumnMeta extends AnyDict {
+  column_name: string;
+  groupby?: string;
+  verbose_name?: string;
+  description?: string;
+  expression?: string;
+  is_dttm?: boolean;
+  type?: string;
+  filterable?: boolean;
+}
+
+export interface DatasourceMeta {
+  id: number;
+  type: DatasourceType;
+  columns: ColumnMeta[];
+  metrics: Metric[];
+  column_format: Record<string, string>;
+  verbose_map: Record<string, string>;
+  main_dttm_col: string;
+  // eg. ['["ds", true]', 'ds [asc]']
+  order_by_choices?: [string, string][] | null;
+  time_grain_sqla?: string;
+  granularity_sqla?: string;
+  datasource_name: string | null;
+  description: string | null;
+}
+
+export interface ControlPanelState {
+  form_data: QueryFormData;
+  datasource: DatasourceMeta | null;
+  controls: ControlStateMapping;
+}
+
+/**
+ * The action dispather will call Redux `dispatch` internally and return what's
+ * returned from `dispatch`, which by default is the original or another action.
+ */
+export interface ActionDispatcher<ARGS extends unknown[], A extends Action = AnyAction> {
+  (...args: ARGS): A;
+}
+
+/**
+ * Mapping of action dispatchers
+ */
+export interface ControlPanelActionDispatchers {
+  setDatasource: ActionDispatcher<[DatasourceMeta]>;
+}
+
+/**
+ * Additional control props obtained from `mapStateToProps`.
+ */
+export type ExtraControlProps = AnyDict;
+
+// Ref:superset-frontend/src/explore/store.js
+export type ControlState<T = ControlType, O extends SelectOption = SelectOption> = ControlConfig<
+  T,
+  O
+> &
+  ExtraControlProps;
+
+export interface ControlStateMapping {
+  [key: string]: ControlState;
+}
+
+// Ref: superset-frontend/src/explore/components/ControlPanelsContainer.jsx
+export interface ControlPanelsContainerProps extends AnyDict {
+  actions: ControlPanelActionDispatchers;
+  controls: ControlStateMapping;
+  exportState: AnyDict;
+  form_data: QueryFormData;
+}
+
+/** ----------------------------------------------
+ * Config for a chart Control
+ * ---------------------------------------------*/
+
+// Ref: superset-frontend/src/explore/components/controls/index.js
+export type InternalControlType =
+  | 'AnnotationLayerControl'
+  | 'BoundsControl'
+  | 'CheckboxControl'
+  | 'CollectionControl'
+  | 'ColorMapControl'
+  | 'ColorPickerControl'
+  | 'ColorSchemeControl'
+  | 'DatasourceControl'
+  | 'DateFilterControl'
+  | 'FixedOrMetricControl'
+  | 'HiddenControl'
+  | 'SelectAsyncControl'
+  | 'SelectControl'
+  | 'SliderControl'
+  | 'SpatialControl'
+  | 'TextAreaControl'
+  | 'TextControl'
+  | 'TimeSeriesColumnControl'
+  | 'ViewportControl'
+  | 'VizTypeControl'
+  | 'MetricsControl'
+  | 'AdhocFilterControl'
+  | 'FilterBoxItemControl'
+  | keyof SharedControlComponents; // expanded in `expandControlConfig`
+
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+export type ControlType = InternalControlType | React.ComponentType<any>;
+
+export type TabOverride = 'data' | 'customize' | boolean;
+
+/**
+ * Control config specifying how chart controls appear in the control panel, all
+ * these configs will be passed to the UI component for control as props.
+ *
+ * - type: the control type, referencing a React component of the same name
+ * - label: the label as shown in the control's header
+ * - description: shown in the info tooltip of the control's header
+ * - default: the default value when opening a new chart, or changing visualization type
+ * - renderTrigger: a bool that defines whether the visualization should be re-rendered
+ *    when changed. This should `true` for controls that only affect the rendering (client side)
+ *    and don't affect the query or backend data processing as those require to re run a query
+ *    and fetch the data
+ * - validators: an array of functions that will receive the value of the component and
+ *    should return error messages when the value is not valid. The error message gets
+ *    bubbled up to the control header, section header and query panel header.
+ * - warning: text shown as a tooltip on a warning icon in the control's header
+ * - error: text shown as a tooltip on a error icon in the control's header
+ * - mapStateToProps: a function that receives the App's state and return an object of k/v
+ *    to overwrite configuration at runtime. This is useful to alter a component based on
+ *    anything external to it, like another control's value. For instance it's possible to
+ *    show a warning based on the value of another component. It's also possible to bind
+ *    arbitrary data from the redux store to the component this way.
+ * - tabOverride: set to 'data' if you want to force a renderTrigger to show up on the `Data`
+     tab, or 'customize' if you want it to show up on that tam. Otherwise sections with ALL 
+     `renderTrigger: true` components will show up on the `Customize` tab.
+ * - visibility: a function that uses control panel props to check whether a control should
+ *    be visibile.
+ */
+export interface BaseControlConfig<
+  T extends ControlType = ControlType,
+  O extends SelectOption = SelectOption,
+  V = unknown
+> extends AnyDict {
+  type: T;
+  label?: ReactNode;
+  description?: ReactNode;
+  default?: V;
+  renderTrigger?: boolean;
+  validators?: ControlValueValidator<T, O, V>[];
+  warning?: ReactNode;
+  error?: ReactNode;
+  // override control panel state props
+  mapStateToProps?: (state: ControlPanelState, control: this) => ExtraControlProps;
+  visibility?: (props: ControlPanelsContainerProps) => boolean;
+}
+
+export interface ControlValueValidator<
+  T = ControlType,
+  O extends SelectOption = SelectOption,
+  V = unknown
+> {
+  (value: V, state: ControlState<T, O>): boolean | string;
+}
+
+/** --------------------------------------------
+ * Additional Config for specific control Types
+ * --------------------------------------------- */
+type SelectOption = AnyDict | string | [ReactText, ReactNode];
+type SelectControlType =
+  | 'SelectControl'
+  | 'SelectAsyncControl'
+  | 'MetricsControl'
+  | 'FixedOrMetricControl'
+  | 'AdhocFilterControl'
+  | 'FilterBoxItemControl';
+
+// via react-select/src/filters
+interface FilterOption<T extends SelectOption> {
+  label: string;
+  value: string;
+  data: T;
+}
+
+// Ref: superset-frontend/src/components/Select/SupersetStyledSelect.tsx
+export interface SelectControlConfig<
+  O extends SelectOption = SelectOption,
+  T extends SelectControlType = SelectControlType
+> extends BaseControlConfig<T, O> {
+  clearable?: boolean;
+  freeForm?: boolean;
+  multi?: boolean;
+  valueKey?: string;
+  labelKey?: string;
+  options?: O[];
+  optionRenderer?: (option: O) => ReactNode;
+  valueRenderer?: (option: O) => ReactNode;
+  filterOption?: ((option: FilterOption<O>, rawInput: string) => Boolean) | null;
+}
+
+export type SharedControlConfig<
+  T extends InternalControlType = InternalControlType,
+  O extends SelectOption = SelectOption
+> = T extends SelectControlType ? SelectControlConfig<O, T> : BaseControlConfig<T>;
+
+/** --------------------------------------------
+ * Custom controls
+ * --------------------------------------------- */
+export type CustomControlConfig<P = {}> = BaseControlConfig<React.ComponentType<P>> &
+  // two run-time properties from superset-frontend/src/explore/components/Control.jsx
+  Omit<P, 'onChange' | 'hovered'>;
+
+// Catch-all ControlConfig
+//  - if T is known control types, return SharedControlConfig,
+//  - if T is object, assume a CustomComponent
+//  - otherwise assume it's a custom component control
+export type ControlConfig<
+  T = AnyDict,
+  O extends SelectOption = SelectOption
+> = T extends InternalControlType
+  ? SharedControlConfig<T, O>
+  : T extends object
+  ? CustomControlConfig<T> // eslint-disable-next-line @typescript-eslint/no-explicit-any
+  : CustomControlConfig<any>;
+
+/** ===========================================================
+ * Chart plugin control panel config
+ * ========================================================= */
+export type SharedSectionAlias =
+  | 'annotations'
+  | 'colorScheme'
+  | 'datasourceAndVizType'
+  | 'druidTimeSeries'
+  | 'sqlaTimeSeries'
+  | 'NVD3TimeSeries';
+
+export interface OverrideSharedControlItem<A extends SharedControlAlias = SharedControlAlias> {
+  name: A;
+  override: Partial<SharedControls[A]>;
+}
+
+export type CustomControlItem = {
+  name: string;
+  // eslint-disable-next-line @typescript-eslint/no-explicit-any
+  config: BaseControlConfig<any, any, any>;
+};
+
+// use ReactElement instead of ReactNode because `string`, `number`, etc. may
+// interfere with other ControlSetItem types
+export type ExpandedControlItem = CustomControlItem | ReactElement | null;
+
+export type ControlSetItem = SharedControlAlias | OverrideSharedControlItem | ExpandedControlItem;
+
+export type ControlSetRow = ControlSetItem[];
+
+// Ref:
+//  - superset-frontend/src/explore/components/ControlPanelsContainer.jsx
+//  - superset-frontend/src/explore/components/ControlPanelSection.jsx
+export interface ControlPanelSectionConfig {
+  label: ReactNode;
+  description?: ReactNode;
+  expanded?: boolean;
+  tabOverride?: TabOverride;
+  controlSetRows: ControlSetRow[];
+}
+
+export interface ControlPanelConfig {
+  controlPanelSections: ControlPanelSectionConfig[];
+  controlOverrides?: ControlOverrides;
+  sectionOverrides?: SectionOverrides;
+  onInit?: (state: ControlStateMapping) => void;
+}
+
+export type ControlOverrides = {
+  [P in SharedControlAlias]?: Partial<SharedControls[P]>;
+};
+
+export type SectionOverrides = {
+  [P in SharedSectionAlias]?: Partial<ControlPanelSectionConfig>;
+};
+
+export default {};
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts b/superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts
new file mode 100644
index 0000000..fa377ab
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts
@@ -0,0 +1,49 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+// D3 specific formatting config
+
+export const D3_FORMAT_DOCS = 'D3 format syntax: https://github.com/d3/d3-format';
+
+// input choices & options
+export const D3_FORMAT_OPTIONS = [
+  ['SMART_NUMBER', 'Adaptative formating'],
+  ['~g', 'Original value'],
+  [',d', ',d (12345.432 => 12,345)'],
+  ['.1s', '.1s (12345.432 => 10k)'],
+  ['.3s', '.3s (12345.432 => 12.3k)'],
+  [',.1%', ',.1% (12345.432 => 1,234,543.2%)'],
+  ['.3%', '.3% (12345.432 => 1234543.200%)'],
+  ['.4r', '.4r (12345.432 => 12350)'],
+  [',.3f', ',.3f (12345.432 => 12,345.432)'],
+  ['+,', '+, (12345.432 => +12,345.432)'],
+  ['$,.2f', '$,.2f (12345.432 => $12,345.43)'],
+  ['DURATION', 'Duration in ms (66000 => 1m 6s)'],
+  ['DURATION_SUB', 'Duration in ms (100.40008 => 100ms 400µs 80ns)'],
+];
+
+export const D3_TIME_FORMAT_OPTIONS = [
+  ['smart_date', 'Adaptative formating'],
+  ['%d/%m/%Y', '%d/%m/%Y | 14/01/2019'],
+  ['%m/%d/%Y', '%m/%d/%Y | 01/14/2019'],
+  ['%Y-%m-%d', '%Y-%m-%d | 2019-01-14'],
+  ['%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M:%S | 2019-01-14 01:32:10'],
+  ['%d-%m-%Y %H:%M:%S', '%Y-%m-%d %H:%M:%S | 14-01-2019 01:32:10'],
+  ['%H:%M:%S', '%H:%M:%S | 01:32:10'],
+];
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/utils/columnChoices.ts b/superset-frontend/packages/superset-ui-chart-controls/src/utils/columnChoices.ts
new file mode 100644
index 0000000..5cca290
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/utils/columnChoices.ts
@@ -0,0 +1,30 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { DatasourceMeta } from '../types';
+
+/**
+ * Convert Dataource columns to column choices
+ */
+export default function columnChoices(datasource?: DatasourceMeta | null): [string, string][] {
+  return (
+    datasource?.columns
+      .map((col): [string, string] => [col.column_name, col.verbose_name || col.column_name])
+      .sort((opt1, opt2) => (opt1[1].toLowerCase() > opt2[1].toLowerCase() ? 1 : -1)) || []
+  );
+}
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/utils/expandControlConfig.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/utils/expandControlConfig.tsx
new file mode 100644
index 0000000..6c31f70
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/utils/expandControlConfig.tsx
@@ -0,0 +1,88 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { ReactElement } from 'react';
+import sharedControls from '../shared-controls';
+import sharedControlComponents from '../shared-controls/components';
+import { ControlType, ControlSetItem, ExpandedControlItem, ControlOverrides } from '../types';
+
+export function expandControlType(controlType: ControlType) {
+  if (typeof controlType === 'string' && controlType in sharedControlComponents) {
+    return sharedControlComponents[controlType as keyof typeof sharedControlComponents];
+  }
+  return controlType;
+}
+
+/**
+ * Expand a shorthand control config item to full config in the format of
+ *   {
+ *     name: ...,
+ *     config: {
+ *        type: ...,
+ *        ...
+ *     }
+ *   }
+ */
+export function expandControlConfig(
+  control: ControlSetItem,
+  controlOverrides: ControlOverrides = {},
+): ExpandedControlItem {
+  // one of the named shared controls
+  if (typeof control === 'string' && control in sharedControls) {
+    const name = control;
+    return {
+      name,
+      config: {
+        ...sharedControls[name],
+        ...controlOverrides[name],
+      },
+    };
+  }
+  // JSX/React element or NULL
+  if (!control || typeof control === 'string' || React.isValidElement(control)) {
+    return control as ReactElement;
+  }
+  // already fully expanded control config, e.g.
+  // {
+  //   name: 'metric',
+  //   config: {
+  //     type: 'SelectControl' | SelectComonent
+  //   }
+  // }
+  if ('name' in control && 'config' in control) {
+    return {
+      ...control,
+      config: {
+        ...control.config,
+        type: expandControlType(control.config.type as ControlType),
+      },
+    };
+  }
+  // apply overrides with shared controls
+  if ('override' in control && control.name in sharedControls) {
+    const { name, override } = control;
+    return {
+      name,
+      config: {
+        ...sharedControls[name],
+        ...override,
+      },
+    };
+  }
+  return null;
+}
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/utils/index.ts b/superset-frontend/packages/superset-ui-chart-controls/src/utils/index.ts
new file mode 100644
index 0000000..70bb4dd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/utils/index.ts
@@ -0,0 +1,23 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export * from './selectOptions';
+export * from './D3Formatting';
+export * from './expandControlConfig';
+export { default as mainMetric } from './mainMetric';
+export { default as columnChoices } from './columnChoices';
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/utils/mainMetric.ts b/superset-frontend/packages/superset-ui-chart-controls/src/utils/mainMetric.ts
new file mode 100644
index 0000000..a06ed31
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/utils/mainMetric.ts
@@ -0,0 +1,35 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { Metric } from '../types';
+
+export default function mainMetric(savedMetrics?: Metric[] | null) {
+  // Using 'count' as default metric if it exists, otherwise using whatever one shows up first
+  let metric;
+  if (savedMetrics && savedMetrics.length > 0) {
+    savedMetrics.forEach(m => {
+      if (m.metric_name === 'count') {
+        metric = 'count';
+      }
+    });
+    if (!metric) {
+      metric = savedMetrics[0].metric_name;
+    }
+  }
+  return metric;
+}
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/utils/selectOptions.ts b/superset-frontend/packages/superset-ui-chart-controls/src/utils/selectOptions.ts
new file mode 100644
index 0000000..666ab35
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/utils/selectOptions.ts
@@ -0,0 +1,44 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+// helper functions for select controls
+
+export type Formattable = string | number;
+
+export type Formatted = [Formattable, string];
+
+/** Turns an array of string/number options into options for a select input */
+export function formatSelectOptions<T extends Formattable>(
+  options: (T | [T, string])[],
+): [T, string][] {
+  return options.map(opt => (Array.isArray(opt) ? opt : [opt, opt.toString()]));
+}
+
+/**
+ * Outputs array of arrays
+ *   >> formatSelectOptionsForRange(1, 5)
+ *   >> [[1,'1'], [2,'2'], [3,'3'], [4,'4'], [5,'5']]
+ */
+export function formatSelectOptionsForRange(start: number, end: number) {
+  const options: Formatted[] = [];
+  for (let i = start; i <= end; i += 1) {
+    options.push([i, i.toString()]);
+  }
+  return options;
+}
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/components/ColumnOption.test.tsx b/superset-frontend/packages/superset-ui-chart-controls/test/components/ColumnOption.test.tsx
new file mode 100644
index 0000000..5034c8b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/components/ColumnOption.test.tsx
@@ -0,0 +1,106 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { shallow, ShallowWrapper } from 'enzyme';
+
+import {
+  ColumnOption,
+  ColumnOptionProps,
+  ColumnTypeLabel,
+  InfoTooltipWithTrigger,
+} from '../../src';
+
+describe('ColumnOption', () => {
+  const defaultProps = {
+    column: {
+      column_name: 'foo',
+      verbose_name: 'Foo',
+      expression: 'SUM(foo)',
+      description: 'Foo is the greatest column of all',
+    },
+    showType: false,
+  };
+
+  let wrapper: ShallowWrapper;
+  let props: ColumnOptionProps;
+  const factory = (o: ColumnOptionProps) => <ColumnOption {...o} />;
+  beforeEach(() => {
+    wrapper = shallow(factory(defaultProps));
+    props = { ...defaultProps };
+  });
+  it('is a valid element', () => {
+    expect(React.isValidElement(<ColumnOption {...defaultProps} />)).toBe(true);
+  });
+  it('shows a label with verbose_name', () => {
+    const lbl = wrapper.find('.option-label');
+    expect(lbl).toHaveLength(1);
+    expect(lbl.first().text()).toBe('Foo');
+  });
+  it('shows 2 InfoTooltipWithTrigger', () => {
+    expect(wrapper.find(InfoTooltipWithTrigger)).toHaveLength(2);
+  });
+  it('shows only 1 InfoTooltipWithTrigger when no descr', () => {
+    delete props.column.description;
+    wrapper = shallow(factory(props));
+    expect(wrapper.find(InfoTooltipWithTrigger)).toHaveLength(1);
+  });
+  it('shows a label with column_name when no verbose_name', () => {
+    delete props.column.verbose_name;
+    wrapper = shallow(factory(props));
+    expect(wrapper.find('.option-label').first().text()).toBe('foo');
+  });
+  it('shows a column type label when showType is true', () => {
+    wrapper = shallow(
+      factory({
+        ...props,
+        showType: true,
+        column: {
+          column_name: 'foo',
+          type: 'str',
+        },
+      }),
+    );
+    expect(wrapper.find(ColumnTypeLabel)).toHaveLength(1);
+  });
+  it('column with expression has correct column label if showType is true', () => {
+    props.showType = true;
+    wrapper = shallow(factory(props));
+    expect(wrapper.find(ColumnTypeLabel)).toHaveLength(1);
+    expect(wrapper.find(ColumnTypeLabel).props().type).toBe('expression');
+  });
+  it('shows no column type label when type is null', () => {
+    wrapper = shallow(
+      factory({
+        ...props,
+        showType: true,
+        column: {
+          column_name: 'foo',
+        },
+      }),
+    );
+    expect(wrapper.find(ColumnTypeLabel)).toHaveLength(0);
+  });
+  it('dttm column has correct column label if showType is true', () => {
+    props.showType = true;
+    props.column.is_dttm = true;
+    wrapper = shallow(factory(props));
+    expect(wrapper.find(ColumnTypeLabel)).toHaveLength(1);
+    expect(wrapper.find(ColumnTypeLabel).props().type).toBe('time');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/components/ColumnTypeLabel.test.tsx b/superset-frontend/packages/superset-ui-chart-controls/test/components/ColumnTypeLabel.test.tsx
new file mode 100644
index 0000000..6d3455b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/components/ColumnTypeLabel.test.tsx
@@ -0,0 +1,68 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { shallow } from 'enzyme';
+
+import { ColumnTypeLabel, ColumnTypeLabelProps } from '../../src';
+
+describe('ColumnOption', () => {
+  const defaultProps = {
+    type: 'string',
+  };
+
+  const props = { ...defaultProps };
+
+  function getWrapper(overrides: Partial<ColumnTypeLabelProps>) {
+    const wrapper = shallow(<ColumnTypeLabel {...props} {...overrides} />);
+    return wrapper;
+  }
+
+  it('is a valid element', () => {
+    expect(React.isValidElement(<ColumnTypeLabel {...defaultProps} />)).toBe(true);
+  });
+  it('string type shows ABC icon', () => {
+    const lbl = getWrapper({}).find('.type-label');
+    expect(lbl).toHaveLength(1);
+    expect(lbl.first().text()).toBe('ABC');
+  });
+  it('int type shows # icon', () => {
+    const lbl = getWrapper({ type: 'int(164)' }).find('.type-label');
+    expect(lbl).toHaveLength(1);
+    expect(lbl.first().text()).toBe('#');
+  });
+  it('bool type shows T/F icon', () => {
+    const lbl = getWrapper({ type: 'BOOL' }).find('.type-label');
+    expect(lbl).toHaveLength(1);
+    expect(lbl.first().text()).toBe('T/F');
+  });
+  it('expression type shows function icon', () => {
+    const lbl = getWrapper({ type: 'expression' }).find('.type-label');
+    expect(lbl).toHaveLength(1);
+    expect(lbl.first().text()).toBe('ƒ');
+  });
+  it('unknown type shows question mark', () => {
+    const lbl = getWrapper({ type: 'unknown' }).find('.type-label');
+    expect(lbl).toHaveLength(1);
+    expect(lbl.first().text()).toBe('?');
+  });
+  it('datetime type displays', () => {
+    const lbl = getWrapper({ type: 'datetime' }).find('.fa-clock-o');
+    expect(lbl).toHaveLength(1);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/components/InfoTooltipWithTrigger.test.tsx b/superset-frontend/packages/superset-ui-chart-controls/test/components/InfoTooltipWithTrigger.test.tsx
new file mode 100644
index 0000000..9e0dacc
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/components/InfoTooltipWithTrigger.test.tsx
@@ -0,0 +1,52 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { shallow } from 'enzyme';
+import { Tooltip } from '../../src/components/Tooltip';
+import { InfoTooltipWithTrigger } from '../../src';
+
+describe('InfoTooltipWithTrigger', () => {
+  it('renders a tooltip', () => {
+    const wrapper = shallow(<InfoTooltipWithTrigger label="test" tooltip="this is a test" />);
+    expect(wrapper.find(Tooltip)).toHaveLength(1);
+  });
+
+  it('renders an info icon', () => {
+    const wrapper = shallow(<InfoTooltipWithTrigger />);
+    expect(wrapper.find('.fa-info-circle')).toHaveLength(1);
+  });
+
+  it('responds to keypresses', () => {
+    const clickHandler = jest.fn();
+    const wrapper = shallow(
+      <InfoTooltipWithTrigger label="test" tooltip="this is a test" onClick={clickHandler} />,
+    );
+    wrapper.find('.fa-info-circle').simulate('keypress', { key: 'Tab' });
+    expect(clickHandler).toHaveBeenCalledTimes(0);
+    wrapper.find('.fa-info-circle').simulate('keypress', { key: 'Enter' });
+    expect(clickHandler).toHaveBeenCalledTimes(1);
+    wrapper.find('.fa-info-circle').simulate('keypress', { key: ' ' });
+    expect(clickHandler).toHaveBeenCalledTimes(2);
+  });
+
+  it('has a bsStyle', () => {
+    const wrapper = shallow(<InfoTooltipWithTrigger bsStyle="something" />);
+    expect(wrapper.find('.text-something')).toHaveLength(1);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/components/MetricOption.test.tsx b/superset-frontend/packages/superset-ui-chart-controls/test/components/MetricOption.test.tsx
new file mode 100644
index 0000000..08329c0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/components/MetricOption.test.tsx
@@ -0,0 +1,86 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { shallow, ShallowWrapper } from 'enzyme';
+import { MetricOption, MetricOptionProps } from '../../src';
+
+describe('MetricOption', () => {
+  const defaultProps = {
+    metric: {
+      metric_name: 'foo',
+      verbose_name: 'Foo',
+      expression: 'SUM(foo)',
+      label: 'test',
+      description: 'Foo is the greatest metric of all',
+      warning_text: 'Be careful when using foo',
+    },
+    openInNewWindow: false,
+    showFormula: true,
+    showType: true,
+    url: '',
+  };
+
+  let wrapper: ShallowWrapper;
+  let props: MetricOptionProps;
+  const factory = (o: MetricOptionProps) => <MetricOption {...o} />;
+  beforeEach(() => {
+    wrapper = shallow(factory(defaultProps));
+    props = { ...defaultProps };
+  });
+  it('is a valid element', () => {
+    expect(React.isValidElement(<MetricOption {...defaultProps} />)).toBe(true);
+  });
+  it('shows a label with verbose_name', () => {
+    const lbl = wrapper.find('.option-label');
+    expect(lbl).toHaveLength(1);
+    expect(lbl.first().text()).toBe('Foo');
+  });
+  it('shows 3 InfoTooltipWithTrigger', () => {
+    expect(wrapper.find('InfoTooltipWithTrigger')).toHaveLength(3);
+  });
+  it('shows only 2 InfoTooltipWithTrigger when no descr', () => {
+    props.metric.description = '';
+    wrapper = shallow(factory(props));
+    expect(wrapper.find('InfoTooltipWithTrigger')).toHaveLength(2);
+  });
+  it('shows a label with metric_name when no verbose_name', () => {
+    props.metric.verbose_name = '';
+    wrapper = shallow(factory(props));
+    expect(wrapper.find('.option-label').first().text()).toBe('foo');
+  });
+  it('shows only 1 InfoTooltipWithTrigger when no descr and no warning', () => {
+    props.metric.warning_text = '';
+    wrapper = shallow(factory(props));
+    expect(wrapper.find('InfoTooltipWithTrigger')).toHaveLength(1);
+  });
+  it('sets target="_blank" when openInNewWindow is true', () => {
+    props.url = 'https://github.com/apache/incubator-superset';
+    wrapper = shallow(factory(props));
+    expect(wrapper.find('a').prop('target')).toBe('');
+
+    props.openInNewWindow = true;
+    wrapper = shallow(factory(props));
+    expect(wrapper.find('a').prop('target')).toBe('_blank');
+  });
+  it('shows a metric type label when showType is true', () => {
+    props.showType = true;
+    wrapper = shallow(factory(props));
+    expect(wrapper.find('ColumnTypeLabel')).toHaveLength(1);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/index.test.ts b/superset-frontend/packages/superset-ui-chart-controls/test/index.test.ts
new file mode 100644
index 0000000..ebde70f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/index.test.ts
@@ -0,0 +1,26 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { sections } from '../src';
+
+describe('@superset-ui/chart-controls', () => {
+  it('exports sections', () => {
+    expect(sections).toBeDefined();
+    expect(sections.datasourceAndVizType).toBeDefined();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/tsconfig.json b/superset-frontend/packages/superset-ui-chart-controls/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx b/superset-frontend/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx
new file mode 100644
index 0000000..d4e34c7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx
@@ -0,0 +1,59 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { DatasourceType } from '@superset-ui/core';
+import { columnChoices } from '../../src';
+
+describe('columnChoices()', () => {
+  it('should convert columns to choices', () => {
+    expect(
+      columnChoices({
+        id: 1,
+        metrics: [],
+        type: DatasourceType.Table,
+        main_dttm_col: 'test',
+        time_grain_sqla: 'P1D',
+        columns: [
+          {
+            column_name: 'fiz',
+          },
+          {
+            column_name: 'about',
+            verbose_name: 'right',
+          },
+          {
+            column_name: 'foo',
+            verbose_name: 'bar',
+          },
+        ],
+        verbose_map: {},
+        column_format: { fiz: 'NUMERIC', about: 'STRING', foo: 'DATE' },
+        datasource_name: 'my_datasource',
+        description: 'this is my datasource',
+      }),
+    ).toEqual([
+      ['foo', 'bar'],
+      ['fiz', 'fiz'],
+      ['about', 'right'],
+    ]);
+  });
+
+  it('should return empty array when no columns', () => {
+    expect(columnChoices(undefined)).toEqual([]);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/utils/expandControlConfig.test.tsx b/superset-frontend/packages/superset-ui-chart-controls/test/utils/expandControlConfig.test.tsx
new file mode 100644
index 0000000..21a92de
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/utils/expandControlConfig.test.tsx
@@ -0,0 +1,86 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { expandControlConfig, sharedControls, CustomControlItem } from '../../src';
+import RadioButtonControl from '../../src/components/RadioButtonControl';
+
+describe('expandControlConfig()', () => {
+  it('expands shared control alias', () => {
+    expect(expandControlConfig('metrics')).toEqual({
+      name: 'metrics',
+      config: sharedControls.metrics,
+    });
+  });
+
+  it('expands control with overrides', () => {
+    expect(
+      expandControlConfig({
+        name: 'metrics',
+        override: {
+          label: 'Custom Metric',
+        },
+      }),
+    ).toEqual({
+      name: 'metrics',
+      config: {
+        ...sharedControls.metrics,
+        label: 'Custom Metric',
+      },
+    });
+  });
+
+  it('leave full control untouched', () => {
+    const input = {
+      name: 'metrics',
+      config: {
+        type: 'SelectControl',
+        label: 'Custom Metric',
+      },
+    };
+    expect(expandControlConfig(input)).toEqual(input);
+  });
+
+  it('load shared components in chart-controls', () => {
+    const input = {
+      name: 'metrics',
+      config: {
+        type: 'RadioButtonControl',
+        label: 'Custom Metric',
+      },
+    };
+    expect((expandControlConfig(input) as CustomControlItem).config.type).toEqual(
+      RadioButtonControl,
+    );
+  });
+
+  it('leave NULL and ReactElement untouched', () => {
+    expect(expandControlConfig(null)).toBeNull();
+    const input = <h1>Test</h1>;
+    expect(expandControlConfig(input)).toBe(input);
+  });
+
+  it('leave unknown text untouched', () => {
+    const input = 'superset-ui';
+    expect(expandControlConfig(input as never)).toBe(input);
+  });
+
+  it('return null for invalid configs', () => {
+    expect(expandControlConfig({ type: 'SelectControl', label: 'Hello' } as never)).toBeNull();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/utils/mainMetric.test.ts b/superset-frontend/packages/superset-ui-chart-controls/test/utils/mainMetric.test.ts
new file mode 100644
index 0000000..9385537
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/utils/mainMetric.test.ts
@@ -0,0 +1,38 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { mainMetric } from '../../src';
+
+describe('mainMetric', () => {
+  it('is null when no options', () => {
+    expect(mainMetric([])).toBeUndefined();
+    expect(mainMetric(null)).toBeUndefined();
+  });
+  it('prefers the "count" metric when first', () => {
+    const metrics = [{ metric_name: 'count' }, { metric_name: 'foo' }];
+    expect(mainMetric(metrics)).toBe('count');
+  });
+  it('prefers the "count" metric when not first', () => {
+    const metrics = [{ metric_name: 'foo' }, { metric_name: 'count' }];
+    expect(mainMetric(metrics)).toBe('count');
+  });
+  it('selects the first metric when "count" is not an option', () => {
+    const metrics = [{ metric_name: 'foo' }, { metric_name: 'not_count' }];
+    expect(mainMetric(metrics)).toBe('foo');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/utils/selectOptions.test.ts b/superset-frontend/packages/superset-ui-chart-controls/test/utils/selectOptions.test.ts
new file mode 100644
index 0000000..1a2a9e6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/utils/selectOptions.test.ts
@@ -0,0 +1,57 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { formatSelectOptions, formatSelectOptionsForRange } from '../../src';
+
+describe('formatSelectOptions', () => {
+  it('formats an array of options', () => {
+    expect(formatSelectOptions([1, 5, 10, 25, 50, 'unlimited'])).toEqual([
+      [1, '1'],
+      [5, '5'],
+      [10, '10'],
+      [25, '25'],
+      [50, '50'],
+      ['unlimited', 'unlimited'],
+    ]);
+  });
+  it('formats a mix of values and already formated options', () => {
+    expect(
+      formatSelectOptions<number | string>([[0, 'all'], 1, 5, 10, 25, 50, 'unlimited']),
+    ).toEqual([
+      [0, 'all'],
+      [1, '1'],
+      [5, '5'],
+      [10, '10'],
+      [25, '25'],
+      [50, '50'],
+      ['unlimited', 'unlimited'],
+    ]);
+  });
+});
+
+describe('formatSelectOptionsForRange', () => {
+  it('generates select options from a range', () => {
+    expect(formatSelectOptionsForRange(1, 5)).toEqual([
+      [1, '1'],
+      [2, '2'],
+      [3, '3'],
+      [4, '4'],
+      [5, '5'],
+    ]);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-chart-controls/tsconfig.json b/superset-frontend/packages/superset-ui-chart-controls/tsconfig.json
new file mode 100644
index 0000000..53e3141
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/tsconfig.json
@@ -0,0 +1,22 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/packages/superset-ui-core/README.md b/superset-frontend/packages/superset-ui-core/README.md
new file mode 100644
index 0000000..691cb08
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/README.md
@@ -0,0 +1,23 @@
+## @superset-ui/core
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/core.svg?style=flat)](https://www.npmjs.com/package/@superset-ui/core)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-core&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-core)
+
+Description
+
+#### Example usage
+
+```js
+import { xxx } from '@superset-ui/core';
+```
+
+#### API
+
+`fn(args)`
+
+- TBD
+
+### Development
+
+`@data-ui/build-config` is used to manage the build configuration for this package including babel
+builds, jest testing, eslint, and prettier.
diff --git a/superset-frontend/packages/superset-ui-core/package.json b/superset-frontend/packages/superset-ui-core/package.json
new file mode 100644
index 0000000..ef63bdf
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/package.json
@@ -0,0 +1,71 @@
+{
+  "name": "@superset-ui/core",
+  "version": "0.17.5",
+  "description": "Superset UI core",
+  "sideEffects": false,
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "devDependencies": {
+    "@types/fetch-mock": "^7.3.3",
+    "fetch-mock": "^6.5.2",
+    "jest-mock-console": "^1.0.0"
+  },
+  "dependencies": {
+    "@babel/runtime": "^7.1.2",
+    "@emotion/core": "^10.0.28",
+    "@emotion/styled": "^10.0.27",
+    "@types/d3-format": "^1.3.0",
+    "@types/d3-interpolate": "^1.3.1",
+    "@types/d3-scale": "^2.1.1",
+    "@types/d3-time": "^1.0.9",
+    "@types/d3-time-format": "^2.1.0",
+    "@types/lodash": "^4.14.149",
+    "@types/rison": "0.0.6",
+    "@types/seedrandom": "^2.4.28",
+    "@vx/responsive": "^0.0.199",
+    "csstype": "^2.6.4",
+    "d3-format": "^1.3.2",
+    "d3-interpolate": "^1.4.0",
+    "d3-scale": "^3.0.0",
+    "d3-time": "^1.0.10",
+    "d3-time-format": "^2.2.0",
+    "emotion-theming": "^10.0.27",
+    "fetch-retry": "^4.0.1",
+    "jed": "^1.1.1",
+    "lodash": "^4.17.11",
+    "pretty-ms": "^7.0.0",
+    "react-error-boundary": "^1.2.5",
+    "reselect": "^4.0.0",
+    "rison": "^0.1.1",
+    "seedrandom": "^3.0.5",
+    "whatwg-fetch": "^3.0.0"
+  },
+  "peerDependencies": {
+    "@types/react": "*",
+    "@types/react-bootstrap": "*",
+    "@types/react-loadable": "*",
+    "react": "^16.13.1",
+    "react-bootstrap": "^0.33.1",
+    "react-loadable": "^5.5.0"
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart-composition/ChartFrame.tsx b/superset-frontend/packages/superset-ui-core/src/chart-composition/ChartFrame.tsx
new file mode 100644
index 0000000..4827eda
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart-composition/ChartFrame.tsx
@@ -0,0 +1,47 @@
+import React, { PureComponent } from 'react';
+import { isDefined } from '../utils';
+
+function checkNumber(input: unknown): input is number {
+  return isDefined(input) && typeof input === 'number';
+}
+
+type Props = {
+  contentWidth?: number;
+  contentHeight?: number;
+  height: number;
+  renderContent: ({ height, width }: { height: number; width: number }) => React.ReactNode;
+  width: number;
+};
+
+export default class ChartFrame extends PureComponent<Props, {}> {
+  static defaultProps = {
+    renderContent() {},
+  };
+
+  render() {
+    const { contentWidth, contentHeight, width, height, renderContent } = this.props;
+
+    const overflowX = checkNumber(contentWidth) && contentWidth > width;
+    const overflowY = checkNumber(contentHeight) && contentHeight > height;
+
+    if (overflowX || overflowY) {
+      return (
+        <div
+          style={{
+            height,
+            overflowX: overflowX ? 'auto' : 'hidden',
+            overflowY: overflowY ? 'auto' : 'hidden',
+            width,
+          }}
+        >
+          {renderContent({
+            height: Math.max(contentHeight ?? 0, height),
+            width: Math.max(contentWidth ?? 0, width),
+          })}
+        </div>
+      );
+    }
+
+    return renderContent({ height, width });
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart-composition/index.ts b/superset-frontend/packages/superset-ui-core/src/chart-composition/index.ts
new file mode 100644
index 0000000..f0338d2
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart-composition/index.ts
@@ -0,0 +1,4 @@
+export { default as ChartFrame } from './ChartFrame';
+export { default as WithLegend } from './legend/WithLegend';
+export { default as TooltipFrame } from './tooltip/TooltipFrame';
+export { default as TooltipTable } from './tooltip/TooltipTable';
diff --git a/superset-frontend/packages/superset-ui-core/src/chart-composition/legend/WithLegend.tsx b/superset-frontend/packages/superset-ui-core/src/chart-composition/legend/WithLegend.tsx
new file mode 100644
index 0000000..4c8977d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart-composition/legend/WithLegend.tsx
@@ -0,0 +1,129 @@
+import React, { CSSProperties, ReactNode, PureComponent } from 'react';
+import { ParentSize } from '@vx/responsive';
+// eslint-disable-next-line import/no-unresolved
+import { FlexDirectionProperty } from 'csstype';
+
+const defaultProps = {
+  className: '',
+  height: 'auto' as number | string,
+  position: 'top',
+  width: 'auto' as number | string,
+};
+
+type Props = {
+  className: string;
+  debounceTime?: number;
+  width: number | string;
+  height: number | string;
+  legendJustifyContent?: 'center' | 'flex-start' | 'flex-end';
+  position: 'top' | 'left' | 'bottom' | 'right';
+  renderChart: (dim: { width: number; height: number }) => ReactNode;
+  renderLegend?: (params: { direction: string }) => ReactNode;
+} & Readonly<typeof defaultProps>;
+
+const LEGEND_STYLE_BASE: CSSProperties = {
+  display: 'flex',
+  flexGrow: 0,
+  flexShrink: 0,
+  order: -1,
+};
+
+const CHART_STYLE_BASE: CSSProperties = {
+  flexBasis: 'auto',
+  flexGrow: 1,
+  flexShrink: 1,
+  position: 'relative',
+};
+
+class WithLegend extends PureComponent<Props, {}> {
+  static defaultProps = defaultProps;
+
+  getContainerDirection(): FlexDirectionProperty {
+    const { position } = this.props;
+
+    if (position === 'left') {
+      return 'row';
+    }
+    if (position === 'right') {
+      return 'row-reverse';
+    }
+    if (position === 'bottom') {
+      return 'column-reverse';
+    }
+
+    return 'column';
+  }
+
+  getLegendJustifyContent() {
+    const { legendJustifyContent, position } = this.props;
+    if (legendJustifyContent) {
+      return legendJustifyContent;
+    }
+
+    if (position === 'left' || position === 'right') {
+      return 'flex-start';
+    }
+
+    return 'flex-end';
+  }
+
+  render() {
+    const {
+      className,
+      debounceTime,
+      width,
+      height,
+      position,
+      renderChart,
+      renderLegend,
+    } = this.props;
+
+    const isHorizontal = position === 'left' || position === 'right';
+
+    const style: CSSProperties = {
+      display: 'flex',
+      flexDirection: this.getContainerDirection(),
+      height,
+      width,
+    };
+
+    const chartStyle: CSSProperties = { ...CHART_STYLE_BASE };
+    if (isHorizontal) {
+      chartStyle.width = 0;
+    } else {
+      chartStyle.height = 0;
+    }
+
+    const legendDirection = isHorizontal ? 'column' : 'row';
+    const legendStyle: CSSProperties = {
+      ...LEGEND_STYLE_BASE,
+      flexDirection: legendDirection,
+      justifyContent: this.getLegendJustifyContent(),
+    };
+
+    return (
+      <div className={`with-legend ${className}`} style={style}>
+        {renderLegend && (
+          <div className="legend-container" style={legendStyle}>
+            {renderLegend({
+              // Pass flexDirection for @vx/legend to arrange legend items
+              direction: legendDirection,
+            })}
+          </div>
+        )}
+        <div className="main-container" style={chartStyle}>
+          <ParentSize debounceTime={debounceTime}>
+            {(parent: { width: number; height: number }) =>
+              parent.width > 0 && parent.height > 0
+                ? // Only render when necessary
+                  renderChart(parent)
+                : null
+            }
+          </ParentSize>
+        </div>
+      </div>
+    );
+  }
+}
+
+export default WithLegend;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart-composition/tooltip/TooltipFrame.tsx b/superset-frontend/packages/superset-ui-core/src/chart-composition/tooltip/TooltipFrame.tsx
new file mode 100644
index 0000000..d44ced2
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart-composition/tooltip/TooltipFrame.tsx
@@ -0,0 +1,28 @@
+import React, { PureComponent } from 'react';
+
+const defaultProps = {
+  className: '',
+};
+
+type Props = {
+  className?: string;
+  children: React.ReactNode;
+} & Readonly<typeof defaultProps>;
+
+const CONTAINER_STYLE = { padding: 8 };
+
+class TooltipFrame extends PureComponent<Props, {}> {
+  static defaultProps = defaultProps;
+
+  render() {
+    const { className, children } = this.props;
+
+    return (
+      <div className={className} style={CONTAINER_STYLE}>
+        {children}
+      </div>
+    );
+  }
+}
+
+export default TooltipFrame;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart-composition/tooltip/TooltipTable.tsx b/superset-frontend/packages/superset-ui-core/src/chart-composition/tooltip/TooltipTable.tsx
new file mode 100644
index 0000000..0e5b3e6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart-composition/tooltip/TooltipTable.tsx
@@ -0,0 +1,44 @@
+import React, { CSSProperties, PureComponent, ReactNode } from 'react';
+
+interface TooltipRowData {
+  key: string | number;
+  keyColumn?: ReactNode;
+  keyStyle?: CSSProperties;
+  valueColumn: ReactNode;
+  valueStyle?: CSSProperties;
+}
+
+const defaultProps = {
+  className: '',
+  data: [] as TooltipRowData[],
+};
+
+type Props = {
+  className?: string;
+  data: TooltipRowData[];
+} & Readonly<typeof defaultProps>;
+
+const VALUE_CELL_STYLE: CSSProperties = { paddingLeft: 8, textAlign: 'right' };
+
+export default class TooltipTable extends PureComponent<Props, {}> {
+  static defaultProps = defaultProps;
+
+  render() {
+    const { className, data } = this.props;
+
+    return (
+      <table className={className}>
+        <tbody>
+          {data.map(({ key, keyColumn, keyStyle, valueColumn, valueStyle }) => (
+            <tr key={key}>
+              <td style={keyStyle}>{keyColumn ?? key}</td>
+              <td style={valueStyle ? { ...VALUE_CELL_STYLE, ...valueStyle } : VALUE_CELL_STYLE}>
+                {valueColumn}
+              </td>
+            </tr>
+          ))}
+        </tbody>
+      </table>
+    );
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/clients/ChartClient.ts b/superset-frontend/packages/superset-ui-core/src/chart/clients/ChartClient.ts
new file mode 100644
index 0000000..c08679a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/clients/ChartClient.ts
@@ -0,0 +1,166 @@
+import {
+  isDefined,
+  SupersetClient,
+  SupersetClientInterface,
+  RequestConfig,
+  SupersetClientClass,
+  QueryFormData,
+  Datasource,
+} from '../..';
+import getChartBuildQueryRegistry from '../registries/ChartBuildQueryRegistrySingleton';
+import getChartMetadataRegistry from '../registries/ChartMetadataRegistrySingleton';
+import { QueryData } from '../types/QueryResponse';
+import { AnnotationLayerMetadata } from '../types/Annotation';
+import { PlainObject } from '../types/Base';
+
+// This expands to Partial<All> & (union of all possible single-property types)
+type AtLeastOne<All, Each = { [K in keyof All]: Pick<All, K> }> = Partial<All> & Each[keyof Each];
+
+export type SliceIdAndOrFormData = AtLeastOne<{
+  sliceId: number;
+  formData: Partial<QueryFormData>;
+}>;
+
+interface AnnotationData {
+  [key: string]: PlainObject;
+}
+
+export interface ChartData {
+  annotationData: AnnotationData;
+  datasource: PlainObject;
+  formData: QueryFormData;
+  queriesData: QueryData[];
+}
+
+export default class ChartClient {
+  readonly client: SupersetClientInterface | SupersetClientClass;
+
+  constructor(
+    config: {
+      client?: SupersetClientInterface | SupersetClientClass;
+    } = {},
+  ) {
+    const { client = SupersetClient } = config;
+    this.client = client;
+  }
+
+  loadFormData(
+    input: SliceIdAndOrFormData,
+    options?: Partial<RequestConfig>,
+  ): Promise<QueryFormData> {
+    /* If sliceId is provided, use it to fetch stored formData from API */
+    if ('sliceId' in input) {
+      const promise = this.client
+        .get({
+          endpoint: `/api/v1/form_data/?slice_id=${input.sliceId}`,
+          ...options,
+        } as RequestConfig)
+        .then(response => response.json as QueryFormData);
+
+      /*
+       * If formData is also specified, override API result
+       * with user-specified formData
+       */
+      return promise.then((dbFormData: QueryFormData) => ({
+        ...dbFormData,
+        ...input.formData,
+      }));
+    }
+
+    /* If sliceId is not provided, returned formData wrapped in a Promise */
+    return input.formData
+      ? Promise.resolve(input.formData as QueryFormData)
+      : Promise.reject(new Error('At least one of sliceId or formData must be specified'));
+  }
+
+  async loadQueryData(
+    formData: QueryFormData,
+    options?: Partial<RequestConfig>,
+  ): Promise<QueryData[]> {
+    const { viz_type: visType } = formData;
+    const metaDataRegistry = getChartMetadataRegistry();
+    const buildQueryRegistry = getChartBuildQueryRegistry();
+
+    if (metaDataRegistry.has(visType)) {
+      const { useLegacyApi } = metaDataRegistry.get(visType)!;
+      const buildQuery = (await buildQueryRegistry.get(visType)) ?? (() => formData);
+      const requestConfig: RequestConfig = useLegacyApi
+        ? {
+            endpoint: '/superset/explore_json/',
+            postPayload: {
+              form_data: buildQuery(formData),
+            },
+            ...options,
+          }
+        : {
+            endpoint: '/api/v1/chart/data',
+            jsonPayload: {
+              query_context: buildQuery(formData),
+            },
+            ...options,
+          };
+
+      return this.client
+        .post(requestConfig)
+        .then(response => (Array.isArray(response.json) ? response.json : [response.json]));
+    }
+
+    return Promise.reject(new Error(`Unknown chart type: ${visType}`));
+  }
+
+  loadDatasource(datasourceKey: string, options?: Partial<RequestConfig>): Promise<Datasource> {
+    return this.client
+      .get({
+        endpoint: `/superset/fetch_datasource_metadata?datasourceKey=${datasourceKey}`,
+        ...options,
+      } as RequestConfig)
+      .then(response => response.json as Datasource);
+  }
+
+  // eslint-disable-next-line class-methods-use-this
+  loadAnnotation(annotationLayer: AnnotationLayerMetadata): Promise<AnnotationData> {
+    /* When annotation does not require query */
+    if (!isDefined(annotationLayer.sourceType)) {
+      return Promise.resolve({} as AnnotationData);
+    }
+
+    // TODO: Implement
+    return Promise.reject(new Error('This feature is not implemented yet.'));
+  }
+
+  loadAnnotations(annotationLayers?: AnnotationLayerMetadata[]): Promise<AnnotationData> {
+    if (Array.isArray(annotationLayers) && annotationLayers.length > 0) {
+      return Promise.all(annotationLayers.map(layer => this.loadAnnotation(layer))).then(results =>
+        annotationLayers.reduce((prev, layer, i) => {
+          const output: AnnotationData = prev;
+          output[layer.name] = results[i];
+
+          return output;
+        }, {}),
+      );
+    }
+
+    return Promise.resolve({});
+  }
+
+  loadChartData(input: SliceIdAndOrFormData): Promise<ChartData> {
+    return this.loadFormData(input).then(
+      (
+        formData: QueryFormData & {
+          // eslint-disable-next-line camelcase
+          annotation_layers?: AnnotationLayerMetadata[];
+        },
+      ) =>
+        Promise.all([
+          this.loadAnnotations(formData.annotation_layers),
+          this.loadDatasource(formData.datasource),
+          this.loadQueryData(formData),
+        ]).then(([annotationData, datasource, queriesData]) => ({
+          annotationData,
+          datasource,
+          formData,
+          queriesData,
+        })),
+    );
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx b/superset-frontend/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx
new file mode 100644
index 0000000..174f8ca
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx
@@ -0,0 +1,140 @@
+/* eslint react/sort-comp: 'off' */
+import React, { ReactNode } from 'react';
+import { SupersetClientInterface, RequestConfig, QueryFormData, Datasource } from '../..';
+import ChartClient, { SliceIdAndOrFormData } from '../clients/ChartClient';
+import { QueryData } from '../types/QueryResponse';
+
+interface Payload {
+  formData: Partial<QueryFormData>;
+  queriesData: QueryData[];
+  datasource?: Datasource;
+}
+
+export interface ProvidedProps {
+  payload?: Payload;
+  error?: Error;
+  loading?: boolean;
+}
+
+export type ChartDataProviderProps =
+  /** User can pass either one or both of sliceId or formData */
+  SliceIdAndOrFormData & {
+    /** Child function called with ProvidedProps */
+    children: (provided: ProvidedProps) => ReactNode;
+    /** Superset client which is used to fetch data. It should already be configured and initialized. */
+    client?: SupersetClientInterface;
+    /** Will fetch and include datasource metadata for SliceIdAndOrFormData in the payload. */
+    loadDatasource?: boolean;
+    /** Callback when an error occurs. Enables wrapping the Provider in an ErrorBoundary. */
+    onError?: (error: ProvidedProps['error']) => void;
+    /** Callback when data is loaded. */
+    onLoaded?: (payload: ProvidedProps['payload']) => void;
+    /** Hook to override the formData request config. */
+    formDataRequestOptions?: Partial<RequestConfig>;
+    /** Hook to override the datasource request config. */
+    datasourceRequestOptions?: Partial<RequestConfig>;
+    /** Hook to override the queriesData request config. */
+    queryRequestOptions?: Partial<RequestConfig>;
+  };
+
+export type ChartDataProviderState = {
+  status: 'uninitialized' | 'loading' | 'error' | 'loaded';
+  payload?: ProvidedProps['payload'];
+  error?: ProvidedProps['error'];
+};
+
+class ChartDataProvider extends React.PureComponent<
+  ChartDataProviderProps,
+  ChartDataProviderState
+> {
+  readonly chartClient: ChartClient;
+
+  constructor(props: ChartDataProviderProps) {
+    super(props);
+    this.state = { status: 'uninitialized' };
+    this.chartClient = new ChartClient({ client: props.client });
+  }
+
+  componentDidMount() {
+    this.handleFetchData();
+  }
+
+  componentDidUpdate(prevProps: ChartDataProviderProps) {
+    const { formData, sliceId } = this.props;
+    if (formData !== prevProps.formData || sliceId !== prevProps.sliceId) {
+      this.handleFetchData();
+    }
+  }
+
+  private extractSliceIdAndFormData() {
+    const { formData, sliceId } = this.props;
+    return formData ? { formData } : { sliceId: sliceId as number };
+  }
+
+  private handleFetchData = () => {
+    const {
+      loadDatasource,
+      formDataRequestOptions,
+      datasourceRequestOptions,
+      queryRequestOptions,
+    } = this.props;
+
+    this.setState({ status: 'loading' }, () => {
+      try {
+        this.chartClient
+          .loadFormData(this.extractSliceIdAndFormData(), formDataRequestOptions)
+          .then(formData =>
+            Promise.all([
+              loadDatasource
+                ? this.chartClient.loadDatasource(formData.datasource, datasourceRequestOptions)
+                : Promise.resolve(undefined),
+              this.chartClient.loadQueryData(formData, queryRequestOptions),
+            ]).then(
+              ([datasource, queriesData]) =>
+                // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
+                ({
+                  datasource,
+                  formData,
+                  queriesData,
+                } as Payload),
+            ),
+          )
+          .then(this.handleReceiveData)
+          .catch(this.handleError);
+      } catch (error) {
+        this.handleError(error as Error);
+      }
+    });
+  };
+
+  private handleReceiveData = (payload?: Payload) => {
+    const { onLoaded } = this.props;
+    if (onLoaded) onLoaded(payload);
+    this.setState({ payload, status: 'loaded' });
+  };
+
+  private handleError = (error: ProvidedProps['error']) => {
+    const { onError } = this.props;
+    if (onError) onError(error);
+    this.setState({ error, status: 'error' });
+  };
+
+  render() {
+    const { children } = this.props;
+    const { status, payload, error } = this.state;
+
+    switch (status) {
+      case 'loading':
+        return children({ loading: true });
+      case 'loaded':
+        return children({ payload });
+      case 'error':
+        return children({ error });
+      case 'uninitialized':
+      default:
+        return null;
+    }
+  }
+}
+
+export default ChartDataProvider;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx b/superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx
new file mode 100644
index 0000000..e2038bd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx
@@ -0,0 +1,34 @@
+import React from 'react';
+import { FallbackPropsWithDimension } from './SuperChart';
+
+export type Props = FallbackPropsWithDimension;
+
+const CONTAINER_STYLE = {
+  backgroundColor: '#000',
+  color: '#fff',
+  overflow: 'auto',
+  padding: 32,
+};
+
+export default function FallbackComponent({ componentStack, error, height, width }: Props) {
+  return (
+    <div style={{ ...CONTAINER_STYLE, height, width }}>
+      <div>
+        <div>
+          <b>Oops! An error occured!</b>
+        </div>
+        <code>{error ? error.toString() : 'Unknown Error'}</code>
+      </div>
+      {componentStack && (
+        <div>
+          <b>Stack Trace:</b>
+          <code>
+            {componentStack.split('\n').map((row: string) => (
+              <div key={row}>{row}</div>
+            ))}
+          </code>
+        </div>
+      )}
+    </div>
+  );
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx b/superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx
new file mode 100644
index 0000000..176ed7e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx
@@ -0,0 +1,52 @@
+import React, { CSSProperties, useMemo } from 'react';
+
+const MESSAGE_STYLES: CSSProperties = { maxWidth: 800 };
+const TITLE_STYLES: CSSProperties = { fontSize: 16, fontWeight: 'bold', paddingBottom: 8 };
+const BODY_STYLES: CSSProperties = { fontSize: 14 };
+const MIN_WIDTH_FOR_BODY = 250;
+const BODY_STRING =
+  'No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.';
+
+const generateContainerStyles: (
+  height: number | string,
+  width: number | string,
+) => CSSProperties = (height: number | string, width: number | string) => ({
+  alignItems: 'center',
+  display: 'flex',
+  flexDirection: 'column',
+  height,
+  justifyContent: 'center',
+  padding: 16,
+  textAlign: 'center',
+  width,
+});
+
+type Props = {
+  className?: string;
+  height: number | string;
+  id?: string;
+  width: number | string;
+};
+
+const NoResultsComponent = ({ className, height, id, width }: Props) => {
+  const containerStyles = useMemo(() => generateContainerStyles(height, width), [height, width]);
+
+  // render the body if the width is auto/100% or greater than 250 pixels
+  const shouldRenderBody = typeof width === 'string' || width > MIN_WIDTH_FOR_BODY;
+
+  return (
+    <div
+      className={className}
+      id={id}
+      style={containerStyles}
+      title={shouldRenderBody ? undefined : BODY_STRING}
+    >
+      <div style={MESSAGE_STYLES}>
+        <div style={TITLE_STYLES}>No Results</div>
+        {shouldRenderBody && <div style={BODY_STYLES}>{BODY_STRING}</div>}
+      </div>
+    </div>
+  );
+};
+
+export default NoResultsComponent;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/components/SuperChart.tsx b/superset-frontend/packages/superset-ui-core/src/chart/components/SuperChart.tsx
new file mode 100644
index 0000000..c4fb355
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/components/SuperChart.tsx
@@ -0,0 +1,197 @@
+import React, { ReactNode } from 'react';
+import ErrorBoundary, { ErrorBoundaryProps, FallbackProps } from 'react-error-boundary';
+import { ParentSize } from '@vx/responsive';
+import { createSelector } from 'reselect';
+import { parseLength, Dimension } from '../../dimension';
+import SuperChartCore, { Props as SuperChartCoreProps } from './SuperChartCore';
+import DefaultFallbackComponent from './FallbackComponent';
+import ChartProps, { ChartPropsConfig } from '../models/ChartProps';
+import NoResultsComponent from './NoResultsComponent';
+
+const defaultProps = {
+  FallbackComponent: DefaultFallbackComponent,
+  height: 400 as string | number,
+  width: '100%' as string | number,
+};
+
+export type FallbackPropsWithDimension = FallbackProps & Partial<Dimension>;
+
+export type WrapperProps = Dimension & {
+  children: ReactNode;
+};
+
+export type Props = Omit<SuperChartCoreProps, 'chartProps'> &
+  Omit<ChartPropsConfig, 'width' | 'height'> & {
+    /**
+     * Set this to true to disable error boundary built-in in SuperChart
+     * and let the error propagate to upper level
+     * and handle by yourself
+     */
+    disableErrorBoundary?: boolean;
+    /** debounceTime to check for container resize */
+    debounceTime?: number;
+    /** Component to render when there are unexpected errors */
+    FallbackComponent?: React.ComponentType<FallbackPropsWithDimension>;
+    /** Event listener for unexpected errors from chart */
+    onErrorBoundary?: ErrorBoundaryProps['onError'];
+    /** Chart width */
+    height?: number | string;
+    /** Chart height */
+    width?: number | string;
+    /**
+     * Component to wrap the actual chart
+     * after the dynamic width and height are determined.
+     * This can be useful for handling tooltip z-index, etc.
+     * e.g. <div style={{ position: 'fixed' }} />
+     * You cannot just wrap this same component outside of SuperChart
+     * when using dynamic width or height
+     * because it will clash with auto-sizing.
+     */
+    Wrapper?: React.ComponentType<WrapperProps>;
+  };
+
+type PropsWithDefault = Props & Readonly<typeof defaultProps>;
+
+export default class SuperChart extends React.PureComponent<Props, {}> {
+  /**
+   * SuperChart's core
+   */
+  core?: SuperChartCore | null;
+
+  private createChartProps = ChartProps.createSelector();
+
+  private parseDimension = createSelector(
+    ({ width }: { width: string | number; height: string | number }) => width,
+    ({ height }) => height,
+    (width, height) => {
+      // Parse them in case they are % or 'auto'
+      const widthInfo = parseLength(width);
+      const heightInfo = parseLength(height);
+
+      const boxHeight = heightInfo.isDynamic ? `${heightInfo.multiplier * 100}%` : heightInfo.value;
+      const boxWidth = widthInfo.isDynamic ? `${widthInfo.multiplier * 100}%` : widthInfo.value;
+      const style = {
+        height: boxHeight,
+        width: boxWidth,
+      };
+
+      // bounding box will ensure that when one dimension is not dynamic
+      // e.g. height = 300
+      // the auto size will be bound to that value instead of being 100% by default
+      // e.g. height: 300 instead of height: '100%'
+      const BoundingBox =
+        widthInfo.isDynamic &&
+        heightInfo.isDynamic &&
+        widthInfo.multiplier === 1 &&
+        heightInfo.multiplier === 1
+          ? React.Fragment
+          : ({ children }: { children: ReactNode }) => <div style={style}>{children}</div>;
+
+      return { BoundingBox, heightInfo, widthInfo };
+    },
+  );
+
+  static defaultProps = defaultProps;
+
+  private setRef = (core: SuperChartCore | null) => {
+    this.core = core;
+  };
+
+  renderChart(width: number, height: number) {
+    const {
+      id,
+      className,
+      chartType,
+      preTransformProps,
+      overrideTransformProps,
+      postTransformProps,
+      onRenderSuccess,
+      onRenderFailure,
+      disableErrorBoundary,
+      FallbackComponent,
+      onErrorBoundary,
+      Wrapper,
+      queriesData,
+      ...rest
+    } = this.props as PropsWithDefault;
+
+    const chartProps = this.createChartProps({
+      ...rest,
+      queriesData,
+      height,
+      width,
+    });
+
+    let chart;
+    // Render the no results component if the query data is null or empty
+    const noResultQueries =
+      !queriesData ||
+      queriesData.every(({ data }) => !data || (Array.isArray(data) && data.length === 0));
+    if (noResultQueries) {
+      chart = <NoResultsComponent id={id} className={className} height={height} width={width} />;
+    } else {
+      const chartWithoutWrapper = (
+        <SuperChartCore
+          ref={this.setRef}
+          id={id}
+          className={className}
+          chartType={chartType}
+          chartProps={chartProps}
+          preTransformProps={preTransformProps}
+          overrideTransformProps={overrideTransformProps}
+          postTransformProps={postTransformProps}
+          onRenderSuccess={onRenderSuccess}
+          onRenderFailure={onRenderFailure}
+        />
+      );
+      chart = Wrapper ? (
+        <Wrapper width={width} height={height}>
+          {chartWithoutWrapper}
+        </Wrapper>
+      ) : (
+        chartWithoutWrapper
+      );
+    }
+    // Include the error boundary by default unless it is specifically disabled.
+    return disableErrorBoundary === true ? (
+      chart
+    ) : (
+      <ErrorBoundary
+        FallbackComponent={(props: FallbackProps) => (
+          <FallbackComponent width={width} height={height} {...props} />
+        )}
+        onError={onErrorBoundary}
+      >
+        {chart}
+      </ErrorBoundary>
+    );
+  }
+
+  render() {
+    const { heightInfo, widthInfo, BoundingBox } = this.parseDimension(
+      this.props as PropsWithDefault,
+    );
+
+    // If any of the dimension is dynamic, get parent's dimension
+    if (widthInfo.isDynamic || heightInfo.isDynamic) {
+      const { debounceTime } = this.props;
+
+      return (
+        <BoundingBox>
+          <ParentSize debounceTime={debounceTime}>
+            {({ width, height }) =>
+              width > 0 &&
+              height > 0 &&
+              this.renderChart(
+                widthInfo.isDynamic ? Math.floor(width) : widthInfo.value,
+                heightInfo.isDynamic ? Math.floor(height) : heightInfo.value,
+              )
+            }
+          </ParentSize>
+        </BoundingBox>
+      );
+    }
+
+    return this.renderChart(widthInfo.value, heightInfo.value);
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx b/superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx
new file mode 100644
index 0000000..4e3d78f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx
@@ -0,0 +1,204 @@
+/* eslint-disable react/jsx-sort-default-props */
+import * as React from 'react';
+import { createSelector } from 'reselect';
+import getChartComponentRegistry from '../registries/ChartComponentRegistrySingleton';
+import getChartTransformPropsRegistry from '../registries/ChartTransformPropsRegistrySingleton';
+import ChartProps from '../models/ChartProps';
+import createLoadableRenderer from './createLoadableRenderer';
+import { ChartType } from '../models/ChartPlugin';
+import { PreTransformProps, TransformProps, PostTransformProps } from '../types/TransformFunction';
+import { HandlerFunction } from '../types/Base';
+
+function IDENTITY<T>(x: T) {
+  return x;
+}
+
+const EMPTY = () => null;
+
+const defaultProps = {
+  id: '',
+  className: '',
+  preTransformProps: IDENTITY,
+  overrideTransformProps: undefined,
+  postTransformProps: IDENTITY,
+  onRenderSuccess() {},
+  onRenderFailure() {},
+};
+
+interface LoadingProps {
+  error: { toString(): string };
+}
+
+interface LoadedModules {
+  Chart: ChartType;
+  transformProps: TransformProps;
+}
+
+interface RenderProps {
+  chartProps: ChartProps;
+  preTransformProps?: PreTransformProps;
+  postTransformProps?: PostTransformProps;
+}
+
+const BLANK_CHART_PROPS = new ChartProps();
+
+export type Props = {
+  id?: string;
+  className?: string;
+  chartProps?: ChartProps | null;
+  chartType: string;
+  preTransformProps?: PreTransformProps;
+  overrideTransformProps?: TransformProps;
+  postTransformProps?: PostTransformProps;
+  onRenderSuccess?: HandlerFunction;
+  onRenderFailure?: HandlerFunction;
+};
+
+export default class SuperChartCore extends React.PureComponent<Props, {}> {
+  /**
+   * The HTML element that wraps all chart content
+   */
+  container?: HTMLElement | null;
+
+  /**
+   * memoized function so it will not recompute
+   * and return previous value
+   * unless one of
+   * - preTransformProps
+   * - transformProps
+   * - postTransformProps
+   * - chartProps
+   * is changed.
+   */
+  processChartProps = createSelector(
+    (input: {
+      chartProps: ChartProps;
+      preTransformProps?: PreTransformProps;
+      transformProps?: TransformProps;
+      postTransformProps?: PostTransformProps;
+    }) => input.chartProps,
+    input => input.preTransformProps,
+    input => input.transformProps,
+    input => input.postTransformProps,
+    (chartProps, pre = IDENTITY, transform = IDENTITY, post = IDENTITY) =>
+      post(transform(pre(chartProps))),
+  );
+
+  /**
+   * memoized function so it will not recompute
+   * and return previous value
+   * unless one of
+   * - chartType
+   * - overrideTransformProps
+   * is changed.
+   */
+  private createLoadableRenderer = createSelector(
+    (input: { chartType: string; overrideTransformProps?: TransformProps }) => input.chartType,
+    input => input.overrideTransformProps,
+    (chartType, overrideTransformProps) => {
+      if (chartType) {
+        const Renderer = createLoadableRenderer({
+          loader: {
+            Chart: () => getChartComponentRegistry().getAsPromise(chartType),
+            transformProps: overrideTransformProps
+              ? () => Promise.resolve(overrideTransformProps)
+              : () => getChartTransformPropsRegistry().getAsPromise(chartType),
+          },
+          loading: (loadingProps: LoadingProps) => this.renderLoading(loadingProps, chartType),
+          render: this.renderChart,
+        });
+
+        // Trigger preloading.
+        Renderer.preload();
+
+        return Renderer;
+      }
+
+      return EMPTY;
+    },
+  );
+
+  static defaultProps = defaultProps;
+
+  private renderChart = (loaded: LoadedModules, props: RenderProps) => {
+    const { Chart, transformProps } = loaded;
+    const { chartProps, preTransformProps, postTransformProps } = props;
+
+    return (
+      <Chart
+        {...this.processChartProps({
+          chartProps,
+          preTransformProps,
+          transformProps,
+          postTransformProps,
+        })}
+      />
+    );
+  };
+
+  private renderLoading = (loadingProps: LoadingProps, chartType: string) => {
+    const { error } = loadingProps;
+
+    if (error) {
+      return (
+        <div className="alert alert-warning" role="alert">
+          <strong>ERROR</strong>&nbsp;
+          <code>chartType=&quot;{chartType}&quot;</code> &mdash;
+          {error.toString()}
+        </div>
+      );
+    }
+
+    return null;
+  };
+
+  private setRef = (container: HTMLElement | null) => {
+    this.container = container;
+  };
+
+  render() {
+    const {
+      id,
+      className,
+      preTransformProps,
+      postTransformProps,
+      chartProps = BLANK_CHART_PROPS,
+      onRenderSuccess,
+      onRenderFailure,
+    } = this.props;
+
+    // Create LoadableRenderer and start preloading
+    // the lazy-loaded Chart components
+    const Renderer = this.createLoadableRenderer(this.props);
+
+    // Do not render if chartProps is set to null.
+    // but the pre-loading has been started in this.createLoadableRenderer
+    // to prepare for rendering once chartProps becomes available.
+    if (chartProps === null) {
+      return null;
+    }
+
+    const containerProps: {
+      id?: string;
+      className?: string;
+    } = {};
+    if (id) {
+      containerProps.id = id;
+    }
+    if (className) {
+      containerProps.className = className;
+    }
+
+    return (
+      <div {...containerProps} ref={this.setRef}>
+        <Renderer
+          preTransformProps={preTransformProps}
+          postTransformProps={postTransformProps}
+          chartProps={chartProps}
+          onRenderSuccess={onRenderSuccess}
+          onRenderFailure={onRenderFailure}
+        />
+      </div>
+    );
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/components/createLoadableRenderer.ts b/superset-frontend/packages/superset-ui-core/src/chart/components/createLoadableRenderer.ts
new file mode 100644
index 0000000..540be76
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/components/createLoadableRenderer.ts
@@ -0,0 +1,51 @@
+import Loadable from 'react-loadable';
+
+export type LoadableRendererProps = {
+  onRenderFailure?: Function;
+  onRenderSuccess?: Function;
+};
+
+const defaultProps = {
+  onRenderFailure() {},
+  onRenderSuccess() {},
+};
+
+export interface LoadableRenderer<Props>
+  extends React.ComponentClass<Props & LoadableRendererProps>,
+    Loadable.LoadableComponent {}
+
+export default function createLoadableRenderer<Props, Exports>(
+  options: Loadable.OptionsWithMap<Props, Exports>,
+): LoadableRenderer<Props> {
+  const LoadableRenderer = Loadable.Map(options) as LoadableRenderer<Props>;
+
+  // Extends the behavior of LoadableComponent to provide post-render listeners
+  class CustomLoadableRenderer extends LoadableRenderer {
+    static defaultProps: object;
+
+    componentDidMount() {
+      this.afterRender();
+    }
+
+    componentDidUpdate() {
+      this.afterRender();
+    }
+
+    afterRender() {
+      const { loaded, loading, error } = this.state;
+      const { onRenderFailure, onRenderSuccess } = this.props;
+      if (!loading) {
+        if (error) {
+          (onRenderFailure as Function)(error);
+        } else if (loaded && Object.keys(loaded).length > 0) {
+          (onRenderSuccess as Function)();
+        }
+      }
+    }
+  }
+
+  CustomLoadableRenderer.defaultProps = defaultProps;
+  CustomLoadableRenderer.preload = LoadableRenderer.preload;
+
+  return CustomLoadableRenderer;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/components/reactify.tsx b/superset-frontend/packages/superset-ui-core/src/chart/components/reactify.tsx
new file mode 100644
index 0000000..a3164b0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/components/reactify.tsx
@@ -0,0 +1,90 @@
+import React from 'react';
+
+// TODO: Note that id and className can collide between Props and ReactifyProps
+// leading to (likely) unexpected behaviors. We should either require Props to not
+// contain an id/className, or not combine them (via intersection), instead preferring
+// wrapping (composition). As an example:
+// interface MyProps {
+//   id: number;
+// }
+// function myRender(container: HTMLDivElement, props: Readonly<MyProps>): void {
+//   props.id // unusable: id is string & number
+// }
+// new (reactify(myRender))({ id: 5 }); // error: id has to be string & number
+
+export type ReactifyProps = {
+  id?: string;
+  className?: string;
+};
+
+// TODO: add more React lifecycle callbacks as needed
+export type LifeCycleCallbacks = {
+  componentWillUnmount?: () => void;
+};
+
+export interface RenderFuncType<Props> {
+  (container: HTMLDivElement, props: Readonly<Props & ReactifyProps>): void;
+  displayName?: string;
+  defaultProps?: Partial<Props & ReactifyProps>;
+  propTypes?: React.WeakValidationMap<Props & ReactifyProps>;
+}
+
+export default function reactify<Props extends object>(
+  renderFn: RenderFuncType<Props>,
+  callbacks?: LifeCycleCallbacks,
+): React.ComponentClass<Props & ReactifyProps> {
+  class ReactifiedComponent extends React.Component<Props & ReactifyProps> {
+    container?: HTMLDivElement;
+
+    constructor(props: Props & ReactifyProps) {
+      super(props);
+      this.setContainerRef = this.setContainerRef.bind(this);
+    }
+
+    componentDidMount() {
+      this.execute();
+    }
+
+    componentDidUpdate() {
+      this.execute();
+    }
+
+    componentWillUnmount() {
+      this.container = undefined;
+      if (callbacks?.componentWillUnmount) {
+        callbacks.componentWillUnmount.bind(this)();
+      }
+    }
+
+    setContainerRef(ref: HTMLDivElement) {
+      this.container = ref;
+    }
+
+    execute() {
+      if (this.container) {
+        renderFn(this.container, this.props);
+      }
+    }
+
+    render() {
+      const { id, className } = this.props;
+
+      return <div ref={this.setContainerRef} id={id} className={className} />;
+    }
+  }
+
+  const ReactifiedClass: React.ComponentClass<Props & ReactifyProps> = ReactifiedComponent;
+
+  if (renderFn.displayName) {
+    ReactifiedClass.displayName = renderFn.displayName;
+  }
+  // eslint-disable-next-line react/forbid-foreign-prop-types
+  if (renderFn.propTypes) {
+    ReactifiedClass.propTypes = { ...ReactifiedClass.propTypes, ...renderFn.propTypes };
+  }
+  if (renderFn.defaultProps) {
+    ReactifiedClass.defaultProps = renderFn.defaultProps;
+  }
+
+  return ReactifiedComponent;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/index.ts b/superset-frontend/packages/superset-ui-core/src/chart/index.ts
new file mode 100644
index 0000000..83aa7c1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/index.ts
@@ -0,0 +1,20 @@
+export { default as ChartClient } from './clients/ChartClient';
+export { default as ChartMetadata } from './models/ChartMetadata';
+export { default as ChartPlugin } from './models/ChartPlugin';
+export { default as ChartProps } from './models/ChartProps';
+
+export { default as createLoadableRenderer } from './components/createLoadableRenderer';
+export { default as reactify } from './components/reactify';
+export { default as SuperChart } from './components/SuperChart';
+
+export { default as getChartBuildQueryRegistry } from './registries/ChartBuildQueryRegistrySingleton';
+export { default as getChartComponentRegistry } from './registries/ChartComponentRegistrySingleton';
+export { default as getChartControlPanelRegistry } from './registries/ChartControlPanelRegistrySingleton';
+export { default as getChartMetadataRegistry } from './registries/ChartMetadataRegistrySingleton';
+export { default as getChartTransformPropsRegistry } from './registries/ChartTransformPropsRegistrySingleton';
+
+export { default as ChartDataProvider } from './components/ChartDataProvider';
+
+export * from './types/Base';
+export * from './types/TransformFunction';
+export * from './types/QueryResponse';
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/models/ChartControlPanel.ts b/superset-frontend/packages/superset-ui-core/src/chart/models/ChartControlPanel.ts
new file mode 100644
index 0000000..86da034
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/models/ChartControlPanel.ts
@@ -0,0 +1,2 @@
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+export type ChartControlPanel = { [key: string]: any };
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/models/ChartMetadata.ts b/superset-frontend/packages/superset-ui-core/src/chart/models/ChartMetadata.ts
new file mode 100644
index 0000000..4562b45
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/models/ChartMetadata.ts
@@ -0,0 +1,88 @@
+interface LookupTable {
+  [key: string]: boolean;
+}
+
+export interface ChartMetadataConfig {
+  name: string;
+  canBeAnnotationTypes?: string[];
+  credits?: string[];
+  description?: string;
+  show?: boolean;
+  supportedAnnotationTypes?: string[];
+  thumbnail: string;
+  useLegacyApi?: boolean;
+  isNativeFilter?: boolean;
+}
+
+export default class ChartMetadata {
+  name: string;
+
+  canBeAnnotationTypes?: string[];
+
+  canBeAnnotationTypesLookup: LookupTable;
+
+  credits: string[];
+
+  description: string;
+
+  show: boolean;
+
+  supportedAnnotationTypes: string[];
+
+  thumbnail: string;
+
+  useLegacyApi: boolean;
+
+  isNativeFilter: boolean;
+
+  constructor(config: ChartMetadataConfig) {
+    const {
+      name,
+      canBeAnnotationTypes = [],
+      credits = [],
+      description = '',
+      show = true,
+      supportedAnnotationTypes = [],
+      thumbnail,
+      useLegacyApi = false,
+      isNativeFilter = false,
+    } = config;
+
+    this.name = name;
+    this.credits = credits;
+    this.description = description;
+    this.show = show;
+    this.canBeAnnotationTypes = canBeAnnotationTypes;
+    this.canBeAnnotationTypesLookup = canBeAnnotationTypes.reduce(
+      (prev: LookupTable, type: string) => {
+        const lookup = prev;
+        lookup[type] = true;
+
+        return lookup;
+      },
+      {},
+    );
+    this.supportedAnnotationTypes = supportedAnnotationTypes;
+    this.thumbnail = thumbnail;
+    this.useLegacyApi = useLegacyApi;
+    this.isNativeFilter = isNativeFilter;
+  }
+
+  canBeAnnotationType(type: string): boolean {
+    return this.canBeAnnotationTypesLookup[type] || false;
+  }
+
+  clone() {
+    return new ChartMetadata({
+      canBeAnnotationTypes: this.canBeAnnotationTypes,
+      credits: this.credits,
+      description: this.description,
+      name: this.name,
+      show: this.show,
+      supportedAnnotationTypes: this.supportedAnnotationTypes,
+      thumbnail: this.thumbnail,
+      useLegacyApi: this.useLegacyApi,
+      isNativeFilter: this.isNativeFilter,
+    });
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/models/ChartPlugin.ts b/superset-frontend/packages/superset-ui-core/src/chart/models/ChartPlugin.ts
new file mode 100644
index 0000000..286a96d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/models/ChartPlugin.ts
@@ -0,0 +1,131 @@
+import { ComponentType } from 'react';
+import { isRequired, Plugin, QueryFormData } from '../..';
+import ChartMetadata from './ChartMetadata';
+import getChartMetadataRegistry from '../registries/ChartMetadataRegistrySingleton';
+import getChartBuildQueryRegistry from '../registries/ChartBuildQueryRegistrySingleton';
+import getChartComponentRegistry from '../registries/ChartComponentRegistrySingleton';
+import getChartControlPanelRegistry from '../registries/ChartControlPanelRegistrySingleton';
+import getChartTransformPropsRegistry from '../registries/ChartTransformPropsRegistrySingleton';
+import { BuildQueryFunction, TransformProps } from '../types/TransformFunction';
+import { ChartControlPanel } from './ChartControlPanel';
+import { ChartProps } from '..';
+
+function IDENTITY<T>(x: T) {
+  return x;
+}
+
+const EMPTY = {};
+
+export type PromiseOrValue<T> = Promise<T> | T;
+export type PromiseOrValueLoader<T> = () => PromiseOrValue<T>;
+export type ChartType = ComponentType<any>;
+type ValueOrModuleWithValue<T> = T | { default: T };
+
+interface ChartPluginConfig<
+  FormData extends QueryFormData = QueryFormData,
+  Props extends ChartProps = ChartProps
+> {
+  metadata: ChartMetadata;
+  /** Use buildQuery for immediate value. For lazy-loading, use loadBuildQuery. */
+  buildQuery?: BuildQueryFunction<FormData>;
+  /** Use loadBuildQuery for dynamic import (lazy-loading) */
+  loadBuildQuery?: PromiseOrValueLoader<ValueOrModuleWithValue<BuildQueryFunction<FormData>>>;
+  /** Use transformProps for immediate value. For lazy-loading, use loadTransformProps.  */
+  transformProps?: TransformProps<Props>;
+  /** Use loadTransformProps for dynamic import (lazy-loading) */
+  loadTransformProps?: PromiseOrValueLoader<ValueOrModuleWithValue<TransformProps<Props>>>;
+  /** Use Chart for immediate value. For lazy-loading, use loadChart. */
+  Chart?: ChartType;
+  /** Use loadChart for dynamic import (lazy-loading) */
+  loadChart?: PromiseOrValueLoader<ValueOrModuleWithValue<ChartType>>;
+  /** Control panel configuration object */
+  controlPanel?: ChartControlPanel;
+}
+
+/**
+ * Loaders of the form `() => import('foo')` may return esmodules
+ * which require the value to be extracted as `module.default`
+ * */
+function sanitizeLoader<T>(
+  loader: PromiseOrValueLoader<ValueOrModuleWithValue<T>>,
+): PromiseOrValueLoader<T> {
+  return () => {
+    const loaded = loader();
+
+    return loaded instanceof Promise
+      ? (loaded.then(module => ('default' in module && module.default) || module) as Promise<T>)
+      : (loaded as T);
+  };
+}
+
+export default class ChartPlugin<
+  FormData extends QueryFormData = QueryFormData,
+  Props extends ChartProps = ChartProps
+> extends Plugin {
+  controlPanel: ChartControlPanel;
+
+  metadata: ChartMetadata;
+
+  loadBuildQuery?: PromiseOrValueLoader<BuildQueryFunction<FormData>>;
+
+  loadTransformProps: PromiseOrValueLoader<TransformProps<Props>>;
+
+  loadChart: PromiseOrValueLoader<ChartType>;
+
+  constructor(config: ChartPluginConfig<FormData, Props>) {
+    super();
+    const {
+      metadata,
+      buildQuery,
+      loadBuildQuery,
+      transformProps = IDENTITY,
+      loadTransformProps,
+      Chart,
+      loadChart,
+      controlPanel = EMPTY,
+    } = config;
+    this.controlPanel = controlPanel;
+    this.metadata = metadata;
+    this.loadBuildQuery =
+      (loadBuildQuery && sanitizeLoader(loadBuildQuery)) ||
+      (buildQuery && sanitizeLoader(() => buildQuery)) ||
+      undefined;
+    this.loadTransformProps = sanitizeLoader(loadTransformProps ?? (() => transformProps));
+
+    if (loadChart) {
+      this.loadChart = sanitizeLoader<ChartType>(loadChart);
+    } else if (Chart) {
+      this.loadChart = () => Chart;
+    } else {
+      throw new Error('Chart or loadChart is required');
+    }
+  }
+
+  register() {
+    const key: string = this.config.key || isRequired('config.key');
+    getChartMetadataRegistry().registerValue(key, this.metadata);
+    getChartComponentRegistry().registerLoader(key, this.loadChart);
+    getChartControlPanelRegistry().registerValue(key, this.controlPanel);
+    getChartTransformPropsRegistry().registerLoader(key, this.loadTransformProps);
+    if (this.loadBuildQuery) {
+      getChartBuildQueryRegistry().registerLoader(key, this.loadBuildQuery);
+    }
+    return this;
+  }
+
+  unregister() {
+    const key: string = this.config.key || isRequired('config.key');
+    getChartMetadataRegistry().remove(key);
+    getChartComponentRegistry().remove(key);
+    getChartControlPanelRegistry().remove(key);
+    getChartTransformPropsRegistry().remove(key);
+    getChartBuildQueryRegistry().remove(key);
+    return this;
+  }
+
+  configure(config: { [key: string]: unknown }, replace?: boolean) {
+    super.configure(config, replace);
+
+    return this;
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/models/ChartProps.ts b/superset-frontend/packages/superset-ui-core/src/chart/models/ChartProps.ts
new file mode 100644
index 0000000..f9495e0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/models/ChartProps.ts
@@ -0,0 +1,129 @@
+import { createSelector } from 'reselect';
+import { convertKeysToCamelCase, Datasource } from '../..';
+import { HandlerFunction, PlainObject, SetExtraFormDataHook } from '../types/Base';
+import { QueryData, DataRecordFilters } from '..';
+
+// TODO: more specific typing for these fields of ChartProps
+type AnnotationData = PlainObject;
+type SnakeCaseDatasource = PlainObject;
+type CamelCaseFormData = PlainObject;
+type SnakeCaseFormData = PlainObject;
+type RawFormData = CamelCaseFormData | SnakeCaseFormData;
+
+type ChartPropsSelector = (c: ChartPropsConfig) => ChartProps;
+
+/** Optional field for event handlers, renderers */
+type Hooks = {
+  /**
+   * sync active filters between chart and dashboard, "add" actually
+   * also handles "change" and "remove".
+   */
+  onAddFilter?: (newFilters: DataRecordFilters, merge?: boolean) => void;
+  /** handle errors */
+  onError?: HandlerFunction;
+  /** use the vis as control to update state */
+  setControlValue?: HandlerFunction;
+  /** handle native filters */
+  setExtraFormData?: SetExtraFormDataHook;
+  /** handle tooltip */
+  setTooltip?: HandlerFunction;
+} & PlainObject;
+
+/**
+ * Preferred format for ChartProps config
+ */
+export interface ChartPropsConfig {
+  annotationData?: AnnotationData;
+  /** Datasource metadata */
+  datasource?: SnakeCaseDatasource;
+  /**
+   * Formerly called "filters", which was misleading because it is actually
+   * initial values of the filter_box and table vis
+   */
+  initialValues?: DataRecordFilters;
+  /** Main configuration of the chart */
+  formData?: RawFormData;
+  /** Chart height */
+  height?: number;
+  /** Programmatic overrides such as event handlers, renderers */
+  hooks?: Hooks;
+  /** The data returned for all queries objects in the request */
+  queriesData?: QueryData[];
+  /** Chart width */
+  width?: number;
+}
+
+const DEFAULT_WIDTH = 800;
+const DEFAULT_HEIGHT = 600;
+
+export default class ChartProps<FormData extends RawFormData = RawFormData> {
+  static createSelector: () => ChartPropsSelector;
+
+  annotationData: AnnotationData;
+
+  datasource: Datasource;
+
+  rawDatasource: SnakeCaseDatasource;
+
+  initialValues: DataRecordFilters;
+
+  formData: CamelCaseFormData;
+
+  rawFormData: FormData;
+
+  height: number;
+
+  hooks: Hooks;
+
+  queriesData: QueryData[];
+
+  width: number;
+
+  constructor(config: ChartPropsConfig & { formData?: FormData } = {}) {
+    const {
+      annotationData = {},
+      datasource = {},
+      formData = {} as FormData,
+      hooks = {},
+      initialValues = {},
+      queriesData = [],
+      width = DEFAULT_WIDTH,
+      height = DEFAULT_HEIGHT,
+    } = config;
+    this.width = width;
+    this.height = height;
+    this.annotationData = annotationData;
+    this.datasource = convertKeysToCamelCase(datasource) as Datasource;
+    this.rawDatasource = datasource;
+    this.formData = convertKeysToCamelCase(formData);
+    this.rawFormData = formData;
+    this.hooks = hooks;
+    this.initialValues = initialValues;
+    this.queriesData = queriesData;
+  }
+}
+
+// eslint-disable-next-line func-name-matching
+ChartProps.createSelector = function create(): ChartPropsSelector {
+  return createSelector(
+    (input: ChartPropsConfig) => input.annotationData,
+    input => input.datasource,
+    input => input.formData,
+    input => input.height,
+    input => input.hooks,
+    input => input.initialValues,
+    input => input.queriesData,
+    input => input.width,
+    (annotationData, datasource, formData, height, hooks, initialValues, queriesData, width) =>
+      new ChartProps({
+        annotationData,
+        datasource,
+        formData,
+        height,
+        hooks,
+        initialValues,
+        queriesData,
+        width,
+      }),
+  );
+};
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartBuildQueryRegistrySingleton.ts b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartBuildQueryRegistrySingleton.ts
new file mode 100644
index 0000000..3e7da4c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartBuildQueryRegistrySingleton.ts
@@ -0,0 +1,14 @@
+import { Registry, makeSingleton, OverwritePolicy, QueryContext } from '../..';
+
+// Ideally this would be <T extends QueryFormData>
+type BuildQuery = (formData: any) => QueryContext;
+
+class ChartBuildQueryRegistry extends Registry<BuildQuery> {
+  constructor() {
+    super({ name: 'ChartBuildQuery', overwritePolicy: OverwritePolicy.WARN });
+  }
+}
+
+const getInstance = makeSingleton(ChartBuildQueryRegistry);
+
+export default getInstance;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartComponentRegistrySingleton.ts b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartComponentRegistrySingleton.ts
new file mode 100644
index 0000000..875a7bb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartComponentRegistrySingleton.ts
@@ -0,0 +1,12 @@
+import { Registry, makeSingleton, OverwritePolicy } from '../..';
+import { ChartType } from '../models/ChartPlugin';
+
+class ChartComponentRegistry extends Registry<ChartType> {
+  constructor() {
+    super({ name: 'ChartComponent', overwritePolicy: OverwritePolicy.WARN });
+  }
+}
+
+const getInstance = makeSingleton(ChartComponentRegistry);
+
+export default getInstance;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartControlPanelRegistrySingleton.ts b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartControlPanelRegistrySingleton.ts
new file mode 100644
index 0000000..4e06901
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartControlPanelRegistrySingleton.ts
@@ -0,0 +1,12 @@
+import { Registry, makeSingleton } from '../..';
+import { ChartControlPanel } from '../models/ChartControlPanel';
+
+class ChartControlPanelRegistry extends Registry<ChartControlPanel, ChartControlPanel> {
+  constructor() {
+    super({ name: 'ChartControlPanel' });
+  }
+}
+
+const getInstance = makeSingleton(ChartControlPanelRegistry);
+
+export default getInstance;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartMetadataRegistrySingleton.ts b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartMetadataRegistrySingleton.ts
new file mode 100644
index 0000000..3c7daf7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartMetadataRegistrySingleton.ts
@@ -0,0 +1,12 @@
+import { Registry, makeSingleton, OverwritePolicy } from '../..';
+import ChartMetadata from '../models/ChartMetadata';
+
+class ChartMetadataRegistry extends Registry<ChartMetadata, ChartMetadata> {
+  constructor() {
+    super({ name: 'ChartMetadata', overwritePolicy: OverwritePolicy.WARN });
+  }
+}
+
+const getInstance = makeSingleton(ChartMetadataRegistry);
+
+export default getInstance;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts
new file mode 100644
index 0000000..9267aa1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts
@@ -0,0 +1,12 @@
+import { Registry, makeSingleton, OverwritePolicy } from '../..';
+import { TransformProps } from '../types/TransformFunction';
+
+class ChartTransformPropsRegistry extends Registry<TransformProps<any>> {
+  constructor() {
+    super({ name: 'ChartTransformProps', overwritePolicy: OverwritePolicy.WARN });
+  }
+}
+
+const getInstance = makeSingleton(ChartTransformPropsRegistry);
+
+export default getInstance;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/types/Annotation.ts b/superset-frontend/packages/superset-ui-core/src/chart/types/Annotation.ts
new file mode 100644
index 0000000..6eba20e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/types/Annotation.ts
@@ -0,0 +1,4 @@
+export type AnnotationLayerMetadata = {
+  name: string;
+  sourceType?: string;
+};
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/types/Base.ts b/superset-frontend/packages/superset-ui-core/src/chart/types/Base.ts
new file mode 100644
index 0000000..f206aec
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/types/Base.ts
@@ -0,0 +1,12 @@
+import { ExtraFormData } from '../../query';
+
+export type HandlerFunction = (...args: unknown[]) => void;
+
+export type SetExtraFormDataHook = {
+  (extraFormData: ExtraFormData): void;
+};
+
+export interface PlainObject {
+  // eslint-disable-next-line @typescript-eslint/no-explicit-any
+  [key: string]: any;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/types/QueryResponse.ts b/superset-frontend/packages/superset-ui-core/src/chart/types/QueryResponse.ts
new file mode 100644
index 0000000..2e289f0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/types/QueryResponse.ts
@@ -0,0 +1,27 @@
+/**
+ * Types for query response
+ */
+import { DataRecordValue, DataRecord, ChartDataResponseResult } from '../../types';
+import { PlainObject } from './Base';
+
+export interface TimeseriesDataRecord extends DataRecord {
+  __timestamp: number | string | Date | null;
+}
+
+// data record value filters from FilterBox
+export interface DataRecordFilters {
+  [key: string]: DataRecordValue[];
+}
+
+/**
+ * Legacy queried data for charts. List of arbitrary dictionaries generated
+ * by `viz.py`.
+ * TODO: clean this up when all charts have been migrated to v1 API.
+ */
+export type LegacyQueryData = PlainObject;
+
+/**
+ * Ambiguous query data type. Reserved for the generic QueryFormData.
+ * Don't use this for a specific chart (since you know which API it uses already).
+ */
+export type QueryData = LegacyQueryData | ChartDataResponseResult;
diff --git a/superset-frontend/packages/superset-ui-core/src/chart/types/TransformFunction.ts b/superset-frontend/packages/superset-ui-core/src/chart/types/TransformFunction.ts
new file mode 100644
index 0000000..61f1807
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/chart/types/TransformFunction.ts
@@ -0,0 +1,13 @@
+import { QueryFormData, QueryContext } from '../..';
+import ChartProps from '../models/ChartProps';
+import { PlainObject } from './Base';
+
+export type PlainProps = PlainObject;
+
+type TransformFunction<Input = PlainProps, Output = PlainProps> = (x: Input) => Output;
+
+export type PreTransformProps = TransformFunction<ChartProps, ChartProps>;
+export type TransformProps<Props extends ChartProps = ChartProps> = TransformFunction<Props>;
+export type PostTransformProps = TransformFunction;
+
+export type BuildQueryFunction<T extends QueryFormData> = (formData: T) => QueryContext;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/CategoricalColorNamespace.ts b/superset-frontend/packages/superset-ui-core/src/color/CategoricalColorNamespace.ts
new file mode 100644
index 0000000..d531aee
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/CategoricalColorNamespace.ts
@@ -0,0 +1,72 @@
+import CategoricalColorScale from './CategoricalColorScale';
+import { ColorsLookup } from './types';
+import getCategoricalSchemeRegistry from './CategoricalSchemeRegistrySingleton';
+import stringifyAndTrim from './stringifyAndTrim';
+
+export default class CategoricalColorNamespace {
+  name: string;
+
+  forcedItems: ColorsLookup;
+
+  scales: {
+    [key: string]: CategoricalColorScale;
+  };
+
+  constructor(name: string) {
+    this.name = name;
+    this.scales = {};
+    this.forcedItems = {};
+  }
+
+  getScale(schemeId?: string) {
+    const id = schemeId ?? getCategoricalSchemeRegistry().getDefaultKey() ?? '';
+    const scale = this.scales[id];
+    if (scale) {
+      return scale;
+    }
+    const scheme = getCategoricalSchemeRegistry().get(id);
+
+    const newScale = new CategoricalColorScale(scheme?.colors ?? [], this.forcedItems);
+    this.scales[id] = newScale;
+
+    return newScale;
+  }
+
+  /**
+   * Enforce specific color for given value
+   * This will apply across all color scales
+   * in this namespace.
+   * @param {*} value value
+   * @param {*} forcedColor color
+   */
+  setColor(value: string, forcedColor: string) {
+    this.forcedItems[stringifyAndTrim(value)] = forcedColor;
+
+    return this;
+  }
+}
+
+const namespaces: {
+  [key: string]: CategoricalColorNamespace;
+} = {};
+
+export const DEFAULT_NAMESPACE = 'GLOBAL';
+
+export function getNamespace(name: string = DEFAULT_NAMESPACE) {
+  const instance = namespaces[name];
+  if (instance) {
+    return instance;
+  }
+  const newInstance = new CategoricalColorNamespace(name);
+  namespaces[name] = newInstance;
+
+  return newInstance;
+}
+
+export function getColor(value?: string, schemeId?: string, namespace?: string) {
+  return getNamespace(namespace).getScale(schemeId).getColor(value);
+}
+
+export function getScale(scheme?: string, namespace?: string) {
+  return getNamespace(namespace).getScale(scheme);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/color/CategoricalColorScale.ts b/superset-frontend/packages/superset-ui-core/src/color/CategoricalColorScale.ts
new file mode 100644
index 0000000..6616706
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/CategoricalColorScale.ts
@@ -0,0 +1,163 @@
+/* eslint-disable no-dupe-class-members */
+import { scaleOrdinal, ScaleOrdinal } from 'd3-scale';
+import { ExtensibleFunction } from '../models';
+import { ColorsLookup } from './types';
+import stringifyAndTrim from './stringifyAndTrim';
+
+// Use type augmentation to correct the fact that
+// an instance of CategoricalScale is also a function
+
+interface CategoricalColorScale {
+  (x: { toString(): string }): string;
+}
+
+class CategoricalColorScale extends ExtensibleFunction {
+  colors: string[];
+
+  scale: ScaleOrdinal<{ toString(): string }, string>;
+
+  parentForcedColors?: ColorsLookup;
+
+  forcedColors: ColorsLookup;
+
+  /**
+   * Constructor
+   * @param {*} colors an array of colors
+   * @param {*} parentForcedColors optional parameter that comes from parent
+   * (usually CategoricalColorNamespace) and supersede this.forcedColors
+   */
+  constructor(colors: string[], parentForcedColors?: ColorsLookup) {
+    super((value: string) => this.getColor(value));
+
+    this.colors = colors;
+    this.scale = scaleOrdinal<{ toString(): string }, string>();
+    this.scale.range(colors);
+    this.parentForcedColors = parentForcedColors;
+    this.forcedColors = {};
+  }
+
+  getColor(value?: string) {
+    const cleanedValue = stringifyAndTrim(value);
+
+    const parentColor = this.parentForcedColors && this.parentForcedColors[cleanedValue];
+    if (parentColor) {
+      return parentColor;
+    }
+
+    const forcedColor = this.forcedColors[cleanedValue];
+    if (forcedColor) {
+      return forcedColor;
+    }
+
+    return this.scale(cleanedValue);
+  }
+
+  /**
+   * Enforce specific color for given value
+   * @param {*} value value
+   * @param {*} forcedColor forcedColor
+   */
+  setColor(value: string, forcedColor: string) {
+    this.forcedColors[stringifyAndTrim(value)] = forcedColor;
+
+    return this;
+  }
+
+  /**
+   * Get a mapping of data values to colors
+   * @returns an object where the key is the data value and the value is the hex color code
+   */
+  getColorMap() {
+    const colorMap: { [key: string]: string | undefined } = {};
+    this.scale.domain().forEach(value => {
+      colorMap[value.toString()] = this.scale(value);
+    });
+
+    return {
+      ...colorMap,
+      ...this.forcedColors,
+      ...this.parentForcedColors,
+    };
+  }
+
+  /**
+   * Returns an exact copy of this scale. Changes to this scale will not affect the returned scale, and vice versa.
+   */
+  copy() {
+    const copy = new CategoricalColorScale(this.scale.range(), this.parentForcedColors);
+    copy.forcedColors = { ...this.forcedColors };
+    copy.domain(this.domain());
+    copy.unknown(this.unknown());
+
+    return copy;
+  }
+
+  /**
+   * Returns the scale's current domain.
+   */
+  domain(): { toString(): string }[];
+
+  /**
+   * Expands the domain to include the specified array of values.
+   */
+  domain(newDomain: { toString(): string }[]): this;
+
+  domain(newDomain?: { toString(): string }[]): unknown {
+    if (typeof newDomain === 'undefined') {
+      return this.scale.domain();
+    }
+
+    this.scale.domain(newDomain);
+    return this;
+  }
+
+  /**
+   * Returns the scale's current range.
+   */
+  range(): string[];
+
+  /**
+   * Sets the range of the ordinal scale to the specified array of values.
+   *
+   * The first element in the domain will be mapped to the first element in range, the second domain value to the second range value, and so on.
+   *
+   * If there are fewer elements in the range than in the domain, the scale will reuse values from the start of the range.
+   *
+   * @param range Array of range values.
+   */
+  range(newRange: string[]): this;
+
+  range(newRange?: string[]): unknown {
+    if (typeof newRange === 'undefined') {
+      return this.scale.range();
+    }
+
+    this.colors = newRange;
+    this.scale.range(newRange);
+    return this;
+  }
+
+  /**
+   * Returns the current unknown value, which defaults to "implicit".
+   */
+  unknown(): string | { name: 'implicit' };
+
+  /**
+   * Sets the output value of the scale for unknown input values and returns this scale.
+   * The implicit value enables implicit domain construction. scaleImplicit can be used as a convenience to set the implicit value.
+   *
+   * @param value Unknown value to be used or scaleImplicit to set implicit scale generation.
+   */
+  unknown(value: string | { name: 'implicit' }): this;
+
+  unknown(value?: string | { name: 'implicit' }): unknown {
+    if (typeof value === 'undefined') {
+      return this.scale.unknown();
+    }
+
+    this.scale.unknown(value);
+    return this;
+  }
+}
+
+export default CategoricalColorScale;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/CategoricalScheme.ts b/superset-frontend/packages/superset-ui-core/src/color/CategoricalScheme.ts
new file mode 100644
index 0000000..c70ee58
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/CategoricalScheme.ts
@@ -0,0 +1,3 @@
+import ColorScheme from './ColorScheme';
+
+export default class CategoricalScheme extends ColorScheme {}
diff --git a/superset-frontend/packages/superset-ui-core/src/color/CategoricalSchemeRegistrySingleton.ts b/superset-frontend/packages/superset-ui-core/src/color/CategoricalSchemeRegistrySingleton.ts
new file mode 100644
index 0000000..44143ba
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/CategoricalSchemeRegistrySingleton.ts
@@ -0,0 +1,16 @@
+import makeSingleton from '../utils/makeSingleton';
+import CategoricalScheme from './CategoricalScheme';
+import ColorSchemeRegistry from './ColorSchemeRegistry';
+import schemes from './colorSchemes/categorical/d3';
+
+class CategoricalSchemeRegistry extends ColorSchemeRegistry<CategoricalScheme> {
+  constructor() {
+    super();
+
+    this.registerValue('SUPERSET_DEFAULT', schemes[0]);
+  }
+}
+
+const getInstance = makeSingleton(CategoricalSchemeRegistry);
+
+export default getInstance;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/ColorScheme.ts b/superset-frontend/packages/superset-ui-core/src/color/ColorScheme.ts
new file mode 100644
index 0000000..f61cdc2
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/ColorScheme.ts
@@ -0,0 +1,24 @@
+export interface ColorSchemeConfig {
+  colors: string[];
+  description?: string;
+  id: string;
+  label?: string;
+}
+
+export default class ColorScheme {
+  colors: string[];
+
+  description: string;
+
+  id: string;
+
+  label: string;
+
+  constructor(config: ColorSchemeConfig) {
+    const { colors, description = '', id, label } = config;
+    this.id = id;
+    this.label = label ?? id;
+    this.colors = colors;
+    this.description = description;
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/color/ColorSchemeRegistry.ts b/superset-frontend/packages/superset-ui-core/src/color/ColorSchemeRegistry.ts
new file mode 100644
index 0000000..ae1006e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/ColorSchemeRegistry.ts
@@ -0,0 +1,15 @@
+import { RegistryWithDefaultKey, OverwritePolicy } from '../models';
+
+export default class ColorSchemeRegistry<T> extends RegistryWithDefaultKey<T> {
+  constructor() {
+    super({
+      name: 'ColorScheme',
+      overwritePolicy: OverwritePolicy.WARN,
+      setFirstItemAsDefault: true,
+    });
+  }
+
+  get(key?: string) {
+    return super.get(key) as T | undefined;
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/color/SequentialScheme.ts b/superset-frontend/packages/superset-ui-core/src/color/SequentialScheme.ts
new file mode 100644
index 0000000..aefff4a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/SequentialScheme.ts
@@ -0,0 +1,57 @@
+import { scaleLinear } from 'd3-scale';
+import { interpolateHcl, interpolateNumber, piecewise, quantize } from 'd3-interpolate';
+import ColorScheme, { ColorSchemeConfig } from './ColorScheme';
+
+export interface SequentialSchemeConfig extends ColorSchemeConfig {
+  isDiverging?: boolean;
+}
+
+export default class SequentialScheme extends ColorScheme {
+  isDiverging: boolean;
+
+  constructor(config: SequentialSchemeConfig) {
+    super(config);
+    const { isDiverging = false } = config;
+    this.isDiverging = isDiverging;
+  }
+
+  /**
+   * Return a linear scale with a new domain interpolated from the input domain
+   * to match the number of elements in the color scheme
+   * because D3 continuous scale uses piecewise mapping between domain and range.
+   * This is a common use-case when the domain is [min, max]
+   * and the palette has more than two colors.
+   *
+   * @param domain domain of the scale
+   * @param modifyRange Set this to true if you don't want to modify the domain and
+   * want to interpolate range to have the same number of elements with domain instead.
+   */
+  createLinearScale(domain: number[] = [0, 1], modifyRange = false) {
+    const scale = scaleLinear<string>().interpolate(interpolateHcl).clamp(true);
+
+    return modifyRange || domain.length === this.colors.length
+      ? scale.domain(domain).range(this.getColors(domain.length))
+      : scale
+          .domain(quantize(piecewise(interpolateNumber, domain), this.colors.length))
+          .range(this.colors);
+  }
+
+  /**
+   * Get colors from this scheme
+   * @param numColors number of colors to return.
+   * Will interpolate the current scheme to match the number of colors requested
+   * @param extent The extent of the color range to use.
+   * For example [0.2, 1] will rescale the color scheme
+   * such that color values in the range [0, 0.2) are excluded from the scheme.
+   */
+  getColors(numColors = this.colors.length, extent: number[] = [0, 1]): string[] {
+    if (numColors === this.colors.length && extent[0] === 0 && extent[1] === 1) {
+      return this.colors;
+    }
+
+    const piecewiseScale: (t: number) => string = piecewise(interpolateHcl, this.colors);
+    const adjustExtent = scaleLinear().range(extent).clamp(true);
+
+    return quantize<string>(t => piecewiseScale(adjustExtent(t) as number), numColors);
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/color/SequentialSchemeRegistrySingleton.ts b/superset-frontend/packages/superset-ui-core/src/color/SequentialSchemeRegistrySingleton.ts
new file mode 100644
index 0000000..621fd1a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/SequentialSchemeRegistrySingleton.ts
@@ -0,0 +1,16 @@
+import makeSingleton from '../utils/makeSingleton';
+import ColorSchemeRegistry from './ColorSchemeRegistry';
+import SequentialScheme from './SequentialScheme';
+import schemes from './colorSchemes/sequential/d3';
+
+class SequentialSchemeRegistry extends ColorSchemeRegistry<SequentialScheme> {
+  constructor() {
+    super();
+
+    this.registerValue('SUPERSET_DEFAULT', schemes[0]);
+  }
+}
+
+const getInstance = makeSingleton(SequentialSchemeRegistry);
+
+export default getInstance;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/airbnb.ts b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/airbnb.ts
new file mode 100644
index 0000000..de5cbed
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/airbnb.ts
@@ -0,0 +1,33 @@
+import CategoricalScheme from '../../CategoricalScheme';
+
+const schemes = [
+  {
+    id: 'bnbColors',
+    label: 'Airbnb Colors',
+    colors: [
+      '#ff5a5f', // rausch
+      '#7b0051', // hackb
+      '#007A87', // kazan
+      '#00d1c1', // babu
+      '#8ce071', // lima
+      '#ffb400', // beach
+      '#b4a76c', // barol
+      '#ff8083',
+      '#cc0086',
+      '#00a1b3',
+      '#00ffeb',
+      '#bbedab',
+      '#ffd266',
+      '#cbc29a',
+      '#ff3339',
+      '#ff1ab1',
+      '#005c66',
+      '#00b3a5',
+      '#55d12e',
+      '#b37e00',
+      '#988b4e',
+    ],
+  },
+].map(s => new CategoricalScheme(s));
+
+export default schemes;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/d3.ts b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/d3.ts
new file mode 100644
index 0000000..a3d7806
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/d3.ts
@@ -0,0 +1,100 @@
+import CategoricalScheme from '../../CategoricalScheme';
+
+const schemes = [
+  {
+    id: 'd3Category10',
+    label: 'D3 Category 10',
+    colors: [
+      '#1f77b4',
+      '#ff7f0e',
+      '#2ca02c',
+      '#d62728',
+      '#9467bd',
+      '#8c564b',
+      '#e377c2',
+      '#7f7f7f',
+      '#bcbd22',
+      '#17becf',
+    ],
+  },
+  {
+    id: 'd3Category20',
+    label: 'D3 Category 20',
+    colors: [
+      '#1f77b4',
+      '#aec7e8',
+      '#ff7f0e',
+      '#ffbb78',
+      '#2ca02c',
+      '#98df8a',
+      '#d62728',
+      '#ff9896',
+      '#9467bd',
+      '#c5b0d5',
+      '#8c564b',
+      '#c49c94',
+      '#e377c2',
+      '#f7b6d2',
+      '#7f7f7f',
+      '#c7c7c7',
+      '#bcbd22',
+      '#dbdb8d',
+      '#17becf',
+      '#9edae5',
+    ],
+  },
+  {
+    id: 'd3Category20b',
+    label: 'D3 Category 20b',
+    colors: [
+      '#393b79',
+      '#5254a3',
+      '#6b6ecf',
+      '#9c9ede',
+      '#637939',
+      '#8ca252',
+      '#b5cf6b',
+      '#cedb9c',
+      '#8c6d31',
+      '#bd9e39',
+      '#e7ba52',
+      '#e7cb94',
+      '#843c39',
+      '#ad494a',
+      '#d6616b',
+      '#e7969c',
+      '#7b4173',
+      '#a55194',
+      '#ce6dbd',
+      '#de9ed6',
+    ],
+  },
+  {
+    id: 'd3Category20c',
+    label: 'D3 Category 20c',
+    colors: [
+      '#3182bd',
+      '#6baed6',
+      '#9ecae1',
+      '#c6dbef',
+      '#e6550d',
+      '#fd8d3c',
+      '#fdae6b',
+      '#fdd0a2',
+      '#31a354',
+      '#74c476',
+      '#a1d99b',
+      '#c7e9c0',
+      '#756bb1',
+      '#9e9ac8',
+      '#bcbddc',
+      '#dadaeb',
+      '#636363',
+      '#969696',
+      '#bdbdbd',
+      '#d9d9d9',
+    ],
+  },
+].map(s => new CategoricalScheme(s));
+
+export default schemes;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/echarts.ts b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/echarts.ts
new file mode 100644
index 0000000..1aada39
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/echarts.ts
@@ -0,0 +1,38 @@
+import CategoricalScheme from '../../CategoricalScheme';
+
+const schemes = [
+  {
+    id: 'echarts4Colors',
+    label: 'ECharts v4.x Colors',
+    colors: [
+      '#c23531',
+      '#2f4554',
+      '#61a0a8',
+      '#d48265',
+      '#91c7ae',
+      '#749f83',
+      '#ca8622',
+      '#bda29a',
+      '#6e7074',
+      '#546570',
+      '#c4ccd3',
+    ],
+  },
+  {
+    id: 'echarts5Colors',
+    label: 'ECharts v5.x Colors',
+    colors: [
+      '#5470C6',
+      '#91CC75',
+      '#FAC858',
+      '#EE6666',
+      '#73C0DE',
+      '#3BA272',
+      '#FC8452',
+      '#9A60B4',
+      '#EA7CCC',
+    ],
+  },
+].map(s => new CategoricalScheme(s));
+
+export default schemes;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/google.ts b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/google.ts
new file mode 100644
index 0000000..7131e16
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/google.ts
@@ -0,0 +1,48 @@
+import CategoricalScheme from '../../CategoricalScheme';
+
+const schemes = [
+  {
+    id: 'googleCategory10c',
+    label: 'Google Category 10c',
+    colors: [
+      '#3366cc',
+      '#dc3912',
+      '#ff9900',
+      '#109618',
+      '#990099',
+      '#0099c6',
+      '#dd4477',
+      '#66aa00',
+      '#b82e2e',
+      '#316395',
+    ],
+  },
+  {
+    id: 'googleCategory20c',
+    label: 'Google Category 20c',
+    colors: [
+      '#3366cc',
+      '#dc3912',
+      '#ff9900',
+      '#109618',
+      '#990099',
+      '#0099c6',
+      '#dd4477',
+      '#66aa00',
+      '#b82e2e',
+      '#316395',
+      '#994499',
+      '#22aa99',
+      '#aaaa11',
+      '#6633cc',
+      '#e67300',
+      '#8b0707',
+      '#651067',
+      '#329262',
+      '#5574a6',
+      '#3b3eac',
+    ],
+  },
+].map(s => new CategoricalScheme(s));
+
+export default schemes;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/lyft.ts b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/lyft.ts
new file mode 100644
index 0000000..4573675
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/lyft.ts
@@ -0,0 +1,22 @@
+import CategoricalScheme from '../../CategoricalScheme';
+
+const schemes = [
+  {
+    id: 'lyftColors',
+    label: 'Lyft Colors',
+    colors: [
+      '#EA0B8C',
+      '#6C838E',
+      '#29ABE2',
+      '#33D9C1',
+      '#9DACB9',
+      '#7560AA',
+      '#2D5584',
+      '#831C4A',
+      '#333D47',
+      '#AC2077',
+    ],
+  },
+].map(s => new CategoricalScheme(s));
+
+export default schemes;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/preset.ts b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/preset.ts
new file mode 100644
index 0000000..befa5cd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/preset.ts
@@ -0,0 +1,34 @@
+import CategoricalScheme from '../../CategoricalScheme';
+
+const schemes = [
+  {
+    id: 'presetColors',
+    label: 'Preset Colors',
+    colors: [
+      // Full color
+      '#6BD3B3',
+      '#FCC550',
+      '#408184',
+      '#66CBE2',
+      '#EE5960',
+      '#484E5A',
+      '#FF874E',
+      '#03748E',
+      '#C9BBAB',
+      '#B17BAA',
+      // Pastels
+      '#B5E9D9',
+      '#FDE2A7',
+      '#9FC0C1',
+      '#B2E5F0',
+      '#F6ACAF',
+      '#A4A6AC',
+      '#FFC3A6',
+      '#81B9C6',
+      '#E4DDD5',
+      '#D9BDD5',
+    ],
+  },
+].map(s => new CategoricalScheme(s));
+
+export default schemes;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/superset.ts b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/superset.ts
new file mode 100644
index 0000000..0581ffd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/superset.ts
@@ -0,0 +1,34 @@
+import CategoricalScheme from '../../CategoricalScheme';
+
+const schemes = [
+  {
+    id: 'supersetColors',
+    label: 'Superset Colors',
+    colors: [
+      // Full color
+      '#1FA8C9',
+      '#454E7C',
+      '#5AC189',
+      '#FF7F44',
+      '#666666',
+      '#E04355',
+      '#FCC700',
+      '#A868B7',
+      '#3CCCCB',
+      '#A38F79',
+      // Pastels
+      '#8FD3E4',
+      '#A1A6BD',
+      '#ACE1C4',
+      '#FEC0A1',
+      '#B2B2B2',
+      '#EFA1AA',
+      '#FDE380',
+      '#D3B3DA',
+      '#9EE5E5',
+      '#D1C6BC',
+    ],
+  },
+].map(s => new CategoricalScheme(s));
+
+export default schemes;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/sequential/common.ts b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/sequential/common.ts
new file mode 100644
index 0000000..d0a144c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/sequential/common.ts
@@ -0,0 +1,204 @@
+import SequentialScheme from '../../SequentialScheme';
+
+const schemes = [
+  {
+    id: 'blue_white_yellow',
+    label: 'blue/white/yellow',
+    colors: ['#00d1c1', 'white', '#ffb400'],
+  },
+  {
+    id: 'fire',
+    colors: ['white', 'yellow', 'red', 'black'],
+  },
+  {
+    id: 'white_black',
+    label: 'white/black',
+    colors: ['white', 'black'],
+  },
+  {
+    id: 'black_white',
+    label: 'black/white',
+    colors: ['black', 'white'],
+  },
+  {
+    id: 'dark_blue',
+    label: 'dark blues',
+    colors: ['#EBF5F8', '#6BB1CC', '#357E9B', '#1B4150', '#092935'],
+  },
+  {
+    id: 'pink_grey',
+    label: 'pink/grey',
+    isDiverging: true,
+    colors: ['#E70B81', '#FAFAFA', '#666666'],
+  },
+  {
+    id: 'greens',
+    colors: ['#ffffcc', '#78c679', '#006837'],
+  },
+  {
+    id: 'purples',
+    colors: ['#f2f0f7', '#9e9ac8', '#54278f'],
+  },
+  {
+    id: 'oranges',
+    colors: ['#fef0d9', '#fc8d59', '#b30000'],
+  },
+  {
+    id: 'red_yellow_blue',
+    label: 'red/yellow/blue',
+    isDiverging: true,
+    colors: ['#d7191c', '#fdae61', '#ffffbf', '#abd9e9', '#2c7bb6'],
+  },
+  {
+    id: 'brown_white_green',
+    label: 'brown/white/green',
+    isDiverging: true,
+    colors: ['#a6611a', '#dfc27d', '#f5f5f5', '#80cdc1', '#018571'],
+  },
+  {
+    id: 'purple_white_green',
+    label: 'purple/white/green',
+    isDiverging: true,
+    colors: ['#7b3294', '#c2a5cf', '#f7f7f7', '#a6dba0', '#008837'],
+  },
+  {
+    id: 'superset_seq_1',
+    label: 'Superset Sequential #1',
+    isDiverging: false,
+    colors: [
+      '#F4FAD4',
+      '#D7F1AC',
+      '#A9E3AF',
+      '#82CDBB',
+      '#63C1BF',
+      '#1FA8C9',
+      '#2367AC',
+      '#2A2D84',
+      '#251354',
+      '#050415',
+    ],
+  },
+  {
+    id: 'superset_seq_2',
+    label: 'Superset Sequential #2',
+    isDiverging: false,
+    colors: [
+      '#FBF1B4',
+      '#FDD093',
+      '#FEAD71',
+      '#FF7F44',
+      '#E04355',
+      '#C53D6F',
+      '#952B7B',
+      '#4F167B',
+      '#251354',
+      '#050415',
+    ],
+  },
+  {
+    id: 'superset_div_1',
+    label: 'Superset Diverging #1',
+    isDiverging: false,
+    colors: [
+      '#E04355',
+      '#E87180',
+      '#EFA1AA',
+      '#F7D0D4',
+      '#F6F6F7',
+      '#C8E9F1',
+      '#8FD3E4',
+      '#58BDD7',
+      '#1FA8C9',
+    ],
+  },
+  {
+    id: 'superset_div_2',
+    label: 'Superset Diverging #2',
+    isDiverging: false,
+    colors: [
+      '#FF7F44',
+      '#FF9E72',
+      '#FEC0A1',
+      '#FFDFD0',
+      '#F6F6F7',
+      '#C8E9F1',
+      '#8FD3E4',
+      '#58BDD7',
+      '#1FA8C9',
+    ],
+  },
+  {
+    id: 'preset_seq_1',
+    label: 'Preset Sequential #1',
+    isDiverging: false,
+    colors: [
+      '#F3FAEB',
+      '#DEF2D7',
+      '#CAEAC4',
+      '#98DEBC',
+      '#69D3B5',
+      '#4AA59D',
+      '#287886',
+      '#0D5B6A',
+      '#03273F',
+      '#03273F',
+    ],
+  },
+  {
+    id: 'preset_seq_2',
+    label: 'Preset Sequential #2',
+    isDiverging: false,
+    colors: [
+      '#FEECE8',
+      '#FDE2DA',
+      '#FCCEC2',
+      '#F998AA',
+      '#F76896',
+      '#D13186',
+      '#AC0378',
+      '#790071',
+      '#43026C',
+      '#050415',
+    ],
+  },
+  {
+    id: 'preset_div_1',
+    label: 'Preset Diverging #1',
+    isDiverging: false,
+    colors: [
+      '#B17BAA',
+      '#C59DC0',
+      '#D9BDD5',
+      '#D9BDD5',
+      '#F6F6F7',
+      '#CBEFE5',
+      '#98DECA',
+      '#64D0B0',
+      '#32BE96',
+    ],
+  },
+  {
+    id: 'preset_div_2',
+    label: 'Preset Diverging #2',
+    isDiverging: false,
+    colors: [
+      '#CB5171',
+      '#D87C94',
+      '#E5A8B7',
+      '#F2D3DB',
+      '#F6F6F7',
+      '#CEE8EC',
+      '#9CD1D8',
+      '#6CBAC6',
+      '#3AA3B2',
+    ],
+  },
+  {
+    id: 'echarts_gradient',
+    label: 'ECharts gradient',
+    isDiverging: false,
+    colors: ['#f6EFA6', '#D88273', '#BF444C'],
+  },
+].map(s => new SequentialScheme(s));
+
+export default schemes;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/sequential/d3.ts b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/sequential/d3.ts
new file mode 100644
index 0000000..07f18ce
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/colorSchemes/sequential/d3.ts
@@ -0,0 +1,510 @@
+import SequentialScheme from '../../SequentialScheme';
+
+const schemes = [
+  {
+    id: 'schemeRdBu',
+    label: 'red/blue',
+    isDiverging: true,
+    colors: [
+      '#67001f',
+      '#b2182b',
+      '#d6604d',
+      '#f4a582',
+      '#fddbc7',
+      '#d1e5f0',
+      '#92c5de',
+      '#4393c3',
+      '#2166ac',
+      '#053061',
+    ],
+  },
+  {
+    id: 'schemeBrBG',
+    label: 'brown/green',
+    isDiverging: true,
+    colors: [
+      '#543005',
+      '#8c510a',
+      '#bf812d',
+      '#dfc27d',
+      '#f6e8c3',
+      '#c7eae5',
+      '#80cdc1',
+      '#35978f',
+      '#01665e',
+      '#003c30',
+    ],
+  },
+  {
+    id: 'schemePRGn',
+    label: 'purple/green',
+    isDiverging: true,
+    colors: [
+      '#40004b',
+      '#762a83',
+      '#9970ab',
+      '#c2a5cf',
+      '#e7d4e8',
+      '#d9f0d3',
+      '#a6dba0',
+      '#5aae61',
+      '#1b7837',
+      '#00441b',
+    ],
+  },
+  {
+    id: 'schemePiYG',
+    label: 'pink/green',
+    isDiverging: true,
+    colors: [
+      '#8e0152',
+      '#c51b7d',
+      '#de77ae',
+      '#f1b6da',
+      '#fde0ef',
+      '#e6f5d0',
+      '#b8e186',
+      '#7fbc41',
+      '#4d9221',
+      '#276419',
+    ],
+  },
+  {
+    id: 'schemePuOr',
+    label: 'purple/orange',
+    isDiverging: true,
+    colors: [
+      '#2d004b',
+      '#542788',
+      '#8073ac',
+      '#b2abd2',
+      '#d8daeb',
+      '#fee0b6',
+      '#fdb863',
+      '#e08214',
+      '#b35806',
+      '#7f3b08',
+    ],
+  },
+  {
+    id: 'schemeRdGy',
+    label: 'red/gray/black',
+    isDiverging: true,
+    colors: [
+      '#67001f',
+      '#b2182b',
+      '#d6604d',
+      '#f4a582',
+      '#fddbc7',
+      '#e0e0e0',
+      '#bababa',
+      '#878787',
+      '#4d4d4d',
+      '#1a1a1a',
+    ],
+  },
+  {
+    id: 'schemeRdYlBu',
+    label: 'red/yellow/blue',
+    colors: [
+      '#a50026',
+      '#d73027',
+      '#f46d43',
+      '#fdae61',
+      '#fee090',
+      '#e0f3f8',
+      '#abd9e9',
+      '#74add1',
+      '#4575b4',
+      '#313695',
+    ],
+    isDiverging: true,
+  },
+  {
+    id: 'schemeRdYlGn',
+    label: 'red/yellow/green',
+    colors: [
+      '#a50026',
+      '#d73027',
+      '#f46d43',
+      '#fdae61',
+      '#fee08b',
+      '#d9ef8b',
+      '#a6d96a',
+      '#66bd63',
+      '#1a9850',
+      '#006837',
+    ],
+    isDiverging: true,
+  },
+  {
+    id: 'schemeSpectral',
+    label: 'rainbow',
+    colors: [
+      '#9e0142',
+      '#d53e4f',
+      '#f46d43',
+      '#fdae61',
+      '#fee08b',
+      '#e6f598',
+      '#abdda4',
+      '#66c2a5',
+      '#3288bd',
+      '#5e4fa2',
+    ],
+  },
+  {
+    id: 'schemeBlues',
+    label: 'blues',
+    colors: [
+      '#b5d4e9',
+      '#93c3df',
+      '#6daed5',
+      '#4b97c9',
+      '#2f7ebc',
+      '#1864aa',
+      '#0a4a90',
+      '#08306b',
+    ],
+  },
+  {
+    id: 'schemeGreens',
+    label: 'greens',
+    colors: [
+      '#b7e2b1',
+      '#97d494',
+      '#73c378',
+      '#4daf62',
+      '#2f984f',
+      '#157f3b',
+      '#036429',
+      '#00441b',
+    ],
+  },
+  {
+    id: 'schemeGrays',
+    label: 'grays',
+    colors: [
+      '#cecece',
+      '#b4b4b4',
+      '#979797',
+      '#7a7a7a',
+      '#5f5f5f',
+      '#404040',
+      '#1e1e1e',
+      '#000000',
+    ],
+  },
+  {
+    id: 'schemeOranges',
+    label: 'oranges',
+    colors: [
+      '#fdc28c',
+      '#fda762',
+      '#fb8d3d',
+      '#f2701d',
+      '#e25609',
+      '#c44103',
+      '#9f3303',
+      '#7f2704',
+    ],
+  },
+  {
+    id: 'schemePurples',
+    label: 'purples',
+    colors: [
+      '#cecee5',
+      '#b6b5d8',
+      '#9e9bc9',
+      '#8782bc',
+      '#7363ac',
+      '#61409b',
+      '#501f8c',
+      '#3f007d',
+    ],
+  },
+  {
+    id: 'schemeReds',
+    label: 'reds',
+    colors: [
+      '#fcaa8e',
+      '#fc8a6b',
+      '#f9694c',
+      '#ef4533',
+      '#d92723',
+      '#bb151a',
+      '#970b13',
+      '#67000d',
+    ],
+  },
+  {
+    id: 'schemeViridis',
+    label: 'Viridis',
+    colors: [
+      '#482475',
+      '#414487',
+      '#355f8d',
+      '#2a788e',
+      '#21918c',
+      '#22a884',
+      '#44bf70',
+      '#7ad151',
+      '#bddf26',
+      '#fde725',
+    ],
+  },
+  {
+    id: 'schemeInferno',
+    label: 'Inferno',
+    colors: [
+      '#160b39',
+      '#420a68',
+      '#6a176e',
+      '#932667',
+      '#bc3754',
+      '#dd513a',
+      '#f37819',
+      '#fca50a',
+      '#f6d746',
+      '#fcffa4',
+    ],
+  },
+  {
+    id: 'schemeMagma',
+    label: 'Magma',
+    colors: [
+      '#140e36',
+      '#3b0f70',
+      '#641a80',
+      '#8c2981',
+      '#b73779',
+      '#de4968',
+      '#f7705c',
+      '#fe9f6d',
+      '#fecf92',
+      '#fcfdbf',
+    ],
+  },
+  {
+    id: 'schemeWarm',
+    label: 'Warm',
+    colors: [
+      '#963db3',
+      '#bf3caf',
+      '#e4419d',
+      '#fe4b83',
+      '#ff5e63',
+      '#ff7847',
+      '#fb9633',
+      '#e2b72f',
+      '#c6d63c',
+      '#aff05b',
+    ],
+  },
+  {
+    id: 'schemeCool',
+    label: 'Cool',
+    colors: [
+      '#6054c8',
+      '#4c6edb',
+      '#368ce1',
+      '#23abd8',
+      '#1ac7c2',
+      '#1ddfa3',
+      '#30ef82',
+      '#52f667',
+      '#7ff658',
+      '#aff05b',
+    ],
+  },
+  {
+    id: 'schemeCubehelixDefault',
+    label: 'Cube Helix',
+    colors: [
+      '#1a1530',
+      '#163d4e',
+      '#1f6642',
+      '#54792f',
+      '#a07949',
+      '#d07e93',
+      '#cf9cda',
+      '#c1caf3',
+      '#d2eeef',
+      '#ffffff',
+    ],
+  },
+  {
+    id: 'schemeBuGn',
+    label: 'blue/green',
+    colors: [
+      '#b7e4da',
+      '#8fd3c1',
+      '#68c2a3',
+      '#49b17f',
+      '#2f9959',
+      '#157f3c',
+      '#036429',
+      '#00441b',
+    ],
+  },
+  {
+    id: 'schemeBuPu',
+    label: 'blue/purple',
+    colors: [
+      '#b2cae1',
+      '#9cb3d5',
+      '#8f95c6',
+      '#8c74b5',
+      '#8952a5',
+      '#852d8f',
+      '#730f71',
+      '#4d004b',
+    ],
+  },
+  {
+    id: 'schemeGnBu',
+    label: 'green/blue',
+    colors: [
+      '#bde5bf',
+      '#9ed9bb',
+      '#7bcbc4',
+      '#58b7cd',
+      '#399cc6',
+      '#1d7eb7',
+      '#0b60a1',
+      '#084081',
+    ],
+  },
+  {
+    id: 'schemeOrRd',
+    label: 'orange/red',
+    colors: [
+      '#fdca94',
+      '#fdb07a',
+      '#fa8e5d',
+      '#f16c49',
+      '#e04530',
+      '#c81d13',
+      '#a70403',
+      '#7f0000',
+    ],
+  },
+  {
+    id: 'schemePuBuGn',
+    label: 'purple/blue/green',
+    colors: [
+      '#bec9e2',
+      '#98b9d9',
+      '#69a8cf',
+      '#4096c0',
+      '#19879f',
+      '#037877',
+      '#016353',
+      '#014636',
+    ],
+  },
+  {
+    id: 'schemePuBu',
+    label: 'purple/blue',
+    colors: [
+      '#bfc9e2',
+      '#9bb9d9',
+      '#72a8cf',
+      '#4394c3',
+      '#1a7db6',
+      '#0667a1',
+      '#045281',
+      '#023858',
+    ],
+  },
+  {
+    id: 'schemePuRd',
+    label: 'purple/red',
+    colors: [
+      '#d0aad2',
+      '#d08ac2',
+      '#dd63ae',
+      '#e33890',
+      '#d71c6c',
+      '#b70b4f',
+      '#8f023a',
+      '#67001f',
+    ],
+  },
+  {
+    id: 'schemeRdPu',
+    label: 'red/purple',
+    colors: [
+      '#fbb5bc',
+      '#f993b0',
+      '#f369a3',
+      '#e03e98',
+      '#c01788',
+      '#99037c',
+      '#700174',
+      '#49006a',
+    ],
+  },
+  {
+    id: 'schemeYlGnBu',
+    label: 'yellow/green/blue',
+    colors: [
+      '#d5eeb3',
+      '#a9ddb7',
+      '#73c9bd',
+      '#45b4c2',
+      '#2897bf',
+      '#2073b2',
+      '#234ea0',
+      '#1c3185',
+      '#081d58',
+    ],
+  },
+  {
+    id: 'schemeYlGn',
+    label: 'yellow/green',
+    colors: [
+      '#e4f4ac',
+      '#c7e89b',
+      '#a2d88a',
+      '#78c578',
+      '#4eaf63',
+      '#2f944e',
+      '#15793f',
+      '#036034',
+      '#004529',
+    ],
+  },
+  {
+    id: 'schemeYlOrBr',
+    label: 'yellow/orange/brown',
+    colors: [
+      '#feeaa1',
+      '#fed676',
+      '#feba4a',
+      '#fb992c',
+      '#ee7918',
+      '#d85b0a',
+      '#b74304',
+      '#8f3204',
+      '#662506',
+    ],
+  },
+  {
+    id: 'schemeYlOrRd',
+    label: 'yellow/orange/red',
+    colors: [
+      '#fee087',
+      '#fec965',
+      '#feab4b',
+      '#fd893c',
+      '#fa5c2e',
+      '#ec3023',
+      '#d31121',
+      '#af0225',
+      '#800026',
+    ],
+  },
+].map(s => new SequentialScheme(s));
+
+export default schemes;
diff --git a/superset-frontend/packages/superset-ui-core/src/color/index.ts b/superset-frontend/packages/superset-ui-core/src/color/index.ts
new file mode 100644
index 0000000..d778fa1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/index.ts
@@ -0,0 +1,10 @@
+import * as CategoricalColorNamespace from './CategoricalColorNamespace';
+
+export { CategoricalColorNamespace };
+export { default as CategoricalColorScale } from './CategoricalColorScale';
+export { default as CategoricalScheme } from './CategoricalScheme';
+export { default as getCategoricalSchemeRegistry } from './CategoricalSchemeRegistrySingleton';
+export { default as getSequentialSchemeRegistry } from './SequentialSchemeRegistrySingleton';
+export { default as SequentialScheme } from './SequentialScheme';
+
+export const BRAND_COLOR = '#00A699';
diff --git a/superset-frontend/packages/superset-ui-core/src/color/stringifyAndTrim.ts b/superset-frontend/packages/superset-ui-core/src/color/stringifyAndTrim.ts
new file mode 100644
index 0000000..8160c63
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/stringifyAndTrim.ts
@@ -0,0 +1,7 @@
+/**
+ * Ensure value is a string
+ * @param {any} value
+ */
+export default function stringifyAndTrim(value?: number | string) {
+  return String(value).trim();
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/color/types.ts b/superset-frontend/packages/superset-ui-core/src/color/types.ts
new file mode 100644
index 0000000..85492a4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/color/types.ts
@@ -0,0 +1,3 @@
+export interface ColorsLookup {
+  [key: string]: string;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/README.md b/superset-frontend/packages/superset-ui-core/src/connection/README.md
new file mode 100644
index 0000000..89cbc3d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/README.md
@@ -0,0 +1,87 @@
+## @superset-ui/core/connection
+
+Connection modules for Superset:
+
+- `SupersetClient` requests and authentication
+- (future) `i18n` locales and translation
+
+### SupersetClient
+
+The `SupersetClient` handles all client-side requests to the Superset backend. It can be configured
+for use within the Superset application, or used to issue `CORS` requests in other applications. At
+a high-level it supports:
+
+- `CSRF` token authentication
+  - a token may be passed at configuration time, else the client will handle fetching and passing
+    the token in all subsequent requests.
+  - queues requests in the case that another request is made before the token is received.
+  - it checks for a token before every request, and will fail if no token was received or if it has
+    expired. In either case the user should be directed to re-authenticate.
+- supports `GET` and `POST` requests (no `PUT` or `DELETE`)
+- timeouts
+- query aborts through the `AbortController` API
+- conditional `GET` requests using `If-None-Match` and `ETag` headers
+
+#### Example usage
+
+```javascript
+// appSetup.js
+import { SupersetClient } from `@superset-ui/core`;
+
+SupersetClient.configure(...clientConfig);
+SupersetClient.init(); // CSRF auth, can also chain `.configure().init();
+
+// anotherFile.js
+import { SupersetClient } from `@superset-ui/core`;
+
+SupersetClient.post(...requestConfig)
+  .then(({ request, json }) => ...)
+  .catch((error) => ...);
+```
+
+#### API
+
+##### Client Configuration
+
+The following flags can be passed in the client config call
+`SupersetClient.configure(...clientConfig);`
+
+- `protocol = 'http:'`
+- `host`
+- `headers`
+- `credentials = 'same-origin'` (set to `include` for non-Superset apps)
+- `mode = 'same-origin'` (set to `cors` for non-Superset apps)
+- `timeout`
+- `csrfToken` you can configure the client with a CSRF token at configuration time, else the client
+  will attempt to fetch this before any other requests are issued
+
+##### Per-request Configuration
+
+The following flags can be passed on a per-request call `SupersetClient.get/post(...requestConfig);`
+
+- `url` or `endpoint`
+- `headers`
+- `body`
+- `timeout`
+- `signal` (for aborting, from `const { signal } = (new AbortController())`)
+- for `POST` requests
+  - `postPayload` (key values are added to a `new FormData()`)
+  - `stringify` whether to call `JSON.stringify` on `postPayload` values
+
+##### Request aborting
+
+Per-request aborting is implemented through the `AbortController` API:
+
+```javascript
+import { SupersetClient } from '@superset-ui/core';
+import AbortController from 'abortcontroller-polyfill';
+
+const controller = new AbortController();
+const { signal } = controller;
+
+SupersetClient.get({ ..., signal }).then(...).catch(...);
+
+if (IWantToCancelForSomeReason) {
+  signal.abort(); // Promise is rejected, request `catch` is invoked
+}
+```
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/SupersetClient.ts b/superset-frontend/packages/superset-ui-core/src/connection/SupersetClient.ts
new file mode 100644
index 0000000..91e0977
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/SupersetClient.ts
@@ -0,0 +1,32 @@
+import SupersetClientClass from './SupersetClientClass';
+import { SupersetClientInterface } from './types';
+
+let singletonClient: SupersetClientClass | undefined;
+
+function getInstance(): SupersetClientClass {
+  if (!singletonClient) {
+    throw new Error('You must call SupersetClient.configure(...) before calling other methods');
+  }
+  return singletonClient;
+}
+
+const SupersetClient: SupersetClientInterface = {
+  configure: config => {
+    singletonClient = new SupersetClientClass(config);
+    return singletonClient;
+  },
+  reset: () => {
+    singletonClient = undefined;
+  },
+  getInstance,
+  delete: request => getInstance().delete(request),
+  get: request => getInstance().get(request),
+  init: force => getInstance().init(force),
+  isAuthenticated: () => getInstance().isAuthenticated(),
+  post: request => getInstance().post(request),
+  put: request => getInstance().put(request),
+  reAuthenticate: () => getInstance().reAuthenticate(),
+  request: request => getInstance().request(request),
+};
+
+export default SupersetClient;
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/SupersetClientClass.ts b/superset-frontend/packages/superset-ui-core/src/connection/SupersetClientClass.ts
new file mode 100644
index 0000000..8915db5
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/SupersetClientClass.ts
@@ -0,0 +1,202 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import callApiAndParseWithTimeout from './callApi/callApiAndParseWithTimeout';
+import {
+  ClientConfig,
+  ClientTimeout,
+  Credentials,
+  CsrfPromise,
+  CsrfToken,
+  FetchRetryOptions,
+  Headers,
+  Host,
+  Mode,
+  Protocol,
+  RequestConfig,
+  ParseMethod,
+} from './types';
+import { DEFAULT_FETCH_RETRY_OPTIONS, DEFAULT_BASE_URL } from './constants';
+
+export default class SupersetClientClass {
+  credentials: Credentials;
+
+  csrfToken?: CsrfToken;
+
+  csrfPromise?: CsrfPromise;
+
+  fetchRetryOptions?: FetchRetryOptions;
+
+  baseUrl: string;
+
+  protocol: Protocol;
+
+  host: Host;
+
+  headers: Headers;
+
+  mode: Mode;
+
+  timeout: ClientTimeout;
+
+  constructor({
+    baseUrl = DEFAULT_BASE_URL,
+    host,
+    protocol,
+    headers = {},
+    fetchRetryOptions = {},
+    mode = 'same-origin',
+    timeout,
+    credentials = undefined,
+    csrfToken = undefined,
+  }: ClientConfig = {}) {
+    const url = new URL(
+      host || protocol ? `${protocol || 'https:'}//${host || 'localhost'}` : baseUrl,
+      // baseUrl for API could also be relative, so we provide current location.href
+      // as the base of baseUrl
+      window.location.href,
+    );
+    this.baseUrl = url.href.replace(/\/+$/, ''); // always strip trailing slash
+    this.host = url.host;
+    this.protocol = url.protocol as Protocol;
+    this.headers = { ...headers };
+    this.mode = mode;
+    this.timeout = timeout;
+    this.credentials = credentials;
+    this.csrfToken = csrfToken;
+    this.fetchRetryOptions = { ...DEFAULT_FETCH_RETRY_OPTIONS, ...fetchRetryOptions };
+    if (typeof this.csrfToken === 'string') {
+      this.headers = { ...this.headers, 'X-CSRFToken': this.csrfToken };
+      this.csrfPromise = Promise.resolve(this.csrfToken);
+    }
+  }
+
+  async init(force = false): CsrfPromise {
+    if (this.isAuthenticated() && !force) {
+      return this.csrfPromise as CsrfPromise;
+    }
+    return this.getCSRFToken();
+  }
+
+  async reAuthenticate() {
+    return this.init(true);
+  }
+
+  isAuthenticated(): boolean {
+    // if CSRF protection is disabled in the Superset app, the token may be an empty string
+    return this.csrfToken !== null && this.csrfToken !== undefined;
+  }
+
+  async get<T extends ParseMethod = 'json'>(requestConfig: RequestConfig & { parseMethod?: T }) {
+    return this.request({ ...requestConfig, method: 'GET' });
+  }
+
+  async delete<T extends ParseMethod = 'json'>(requestConfig: RequestConfig & { parseMethod?: T }) {
+    return this.request({ ...requestConfig, method: 'DELETE' });
+  }
+
+  async put<T extends ParseMethod = 'json'>(requestConfig: RequestConfig & { parseMethod?: T }) {
+    return this.request({ ...requestConfig, method: 'PUT' });
+  }
+
+  async post<T extends ParseMethod = 'json'>(requestConfig: RequestConfig & { parseMethod?: T }) {
+    return this.request({ ...requestConfig, method: 'POST' });
+  }
+
+  async request<T extends ParseMethod = 'json'>({
+    credentials,
+    mode,
+    endpoint,
+    host,
+    url,
+    headers,
+    timeout,
+    fetchRetryOptions,
+    ...rest
+  }: RequestConfig & { parseMethod?: T }) {
+    await this.ensureAuth();
+    return callApiAndParseWithTimeout({
+      ...rest,
+      credentials: credentials ?? this.credentials,
+      mode: mode ?? this.mode,
+      url: this.getUrl({ endpoint, host, url }),
+      headers: { ...this.headers, ...headers },
+      timeout: timeout ?? this.timeout,
+      fetchRetryOptions: fetchRetryOptions ?? this.fetchRetryOptions,
+    });
+  }
+
+  async ensureAuth(): CsrfPromise {
+    return (
+      this.csrfPromise ??
+      // eslint-disable-next-line prefer-promise-reject-errors
+      Promise.reject({
+        error: `SupersetClient has not been provided a CSRF token, ensure it is
+        initialized with \`client.getCSRFToken()\` or try logging in at
+        ${this.getUrl({ endpoint: '/login' })}`,
+      })
+    );
+  }
+
+  async getCSRFToken() {
+    this.csrfToken = undefined;
+    // If we can request this resource successfully, it means that the user has
+    // authenticated. If not we throw an error prompting to authenticate.
+    this.csrfPromise = callApiAndParseWithTimeout({
+      credentials: this.credentials,
+      headers: {
+        ...this.headers,
+      },
+      method: 'GET',
+      mode: this.mode,
+      timeout: this.timeout,
+      url: this.getUrl({ endpoint: 'superset/csrf_token/' }),
+      parseMethod: 'json',
+    }).then(({ json }) => {
+      if (typeof json === 'object') {
+        this.csrfToken = json.csrf_token as string;
+        if (typeof this.csrfToken === 'string') {
+          this.headers = { ...this.headers, 'X-CSRFToken': this.csrfToken };
+        }
+      }
+      if (this.isAuthenticated()) {
+        return this.csrfToken;
+      }
+      // eslint-disable-next-line prefer-promise-reject-errors
+      return Promise.reject({ error: 'Failed to fetch CSRF token' });
+    });
+    return this.csrfPromise;
+  }
+
+  getUrl({
+    host: inputHost,
+    endpoint = '',
+    url,
+  }: {
+    endpoint?: string;
+    host?: Host;
+    url?: string;
+  } = {}) {
+    if (typeof url === 'string') return url;
+
+    const host = inputHost ?? this.host;
+    const cleanHost = host.slice(-1) === '/' ? host.slice(0, -1) : host; // no backslash
+
+    return `${this.protocol}//${cleanHost}/${endpoint[0] === '/' ? endpoint.slice(1) : endpoint}`;
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/callApi/callApi.ts b/superset-frontend/packages/superset-ui-core/src/connection/callApi/callApi.ts
new file mode 100644
index 0000000..189b2f3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/callApi/callApi.ts
@@ -0,0 +1,126 @@
+import 'whatwg-fetch';
+import fetchRetry from 'fetch-retry';
+import { CallApi, Payload, JsonValue } from '../types';
+import { CACHE_AVAILABLE, CACHE_KEY, HTTP_STATUS_NOT_MODIFIED, HTTP_STATUS_OK } from '../constants';
+
+function tryParsePayload(payload: Payload) {
+  try {
+    return typeof payload === 'string' ? (JSON.parse(payload) as JsonValue) : payload;
+  } catch (error) {
+    throw new Error(`Invalid payload:\n\n${payload}`);
+  }
+}
+
+/**
+ * Try appending search params to an URL if needed.
+ */
+function getFullUrl(partialUrl: string, params: CallApi['searchParams']) {
+  if (params) {
+    const url = new URL(partialUrl, window.location.href);
+    const search = params instanceof URLSearchParams ? params : new URLSearchParams(params);
+    // will completely override any existing search params
+    url.search = search.toString();
+    return url.href;
+  }
+  return partialUrl;
+}
+
+/**
+ * Fetch an API response and returns the corresponding json.
+ *
+ * @param {Payload} postPayload payload to send as FormData in a post form
+ * @param {Payload} jsonPayload json payload to post, will automatically add Content-Type header
+ * @param {string} stringify whether to stringify field values when post as formData
+ */
+export default async function callApi({
+  body,
+  cache = 'default',
+  credentials = 'same-origin',
+  fetchRetryOptions,
+  headers,
+  method = 'GET',
+  mode = 'same-origin',
+  postPayload,
+  jsonPayload,
+  redirect = 'follow',
+  signal,
+  stringify = true,
+  url: url_,
+  searchParams,
+}: CallApi): Promise<Response> {
+  const fetchWithRetry = fetchRetry(fetch, fetchRetryOptions);
+  const url = `${getFullUrl(url_, searchParams)}`;
+
+  const request = {
+    body,
+    cache,
+    credentials,
+    headers,
+    method,
+    mode,
+    redirect,
+    signal,
+  };
+
+  if (
+    method === 'GET' &&
+    cache !== 'no-store' &&
+    cache !== 'reload' &&
+    CACHE_AVAILABLE &&
+    (window.location && window.location.protocol) === 'https:'
+  ) {
+    const supersetCache = await caches.open(CACHE_KEY);
+    const cachedResponse = await supersetCache.match(url);
+    if (cachedResponse) {
+      // if we have a cached response, send its ETag in the
+      // `If-None-Match` header in a conditional request
+      const etag = cachedResponse.headers.get('Etag') as string;
+      request.headers = { ...request.headers, 'If-None-Match': etag };
+    }
+
+    const response = await fetchWithRetry(url, request);
+
+    if (response.status === HTTP_STATUS_NOT_MODIFIED) {
+      const cachedFullResponse = await supersetCache.match(url);
+      if (cachedFullResponse) {
+        return cachedFullResponse.clone();
+      }
+      throw new Error('Received 304 but no content is cached!');
+    }
+    if (response.status === HTTP_STATUS_OK && response.headers.get('Etag')) {
+      supersetCache.delete(url);
+      supersetCache.put(url, response.clone());
+    }
+
+    return response;
+  }
+
+  if (method === 'POST' || method === 'PATCH' || method === 'PUT') {
+    if (postPayload && jsonPayload) {
+      throw new Error('Please provide only one of jsonPayload or postPayload');
+    }
+    if (postPayload instanceof FormData) {
+      request.body = postPayload;
+    } else if (postPayload) {
+      const payload = tryParsePayload(postPayload);
+      if (payload && typeof payload === 'object') {
+        // using FormData has the effect that Content-Type header is set to `multipart/form-data`,
+        // not e.g., 'application/x-www-form-urlencoded'
+        const formData: FormData = new FormData();
+        Object.keys(payload).forEach(key => {
+          const value = payload[key] as JsonValue;
+          if (typeof value !== 'undefined') {
+            formData.append(key, stringify ? JSON.stringify(value) : String(value));
+          }
+        });
+        request.body = formData;
+      }
+    }
+    if (jsonPayload !== undefined) {
+      request.body = JSON.stringify(jsonPayload);
+      request.headers = { ...request.headers, 'Content-Type': 'application/json' };
+    }
+  }
+
+  return fetchWithRetry(url, request);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/callApi/callApiAndParseWithTimeout.ts b/superset-frontend/packages/superset-ui-core/src/connection/callApi/callApiAndParseWithTimeout.ts
new file mode 100644
index 0000000..76a161a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/callApi/callApiAndParseWithTimeout.ts
@@ -0,0 +1,18 @@
+import callApi from './callApi';
+import rejectAfterTimeout from './rejectAfterTimeout';
+import parseResponse from './parseResponse';
+import { CallApi, ClientTimeout, ParseMethod } from '../types';
+
+export default async function callApiAndParseWithTimeout<T extends ParseMethod = 'json'>({
+  timeout,
+  parseMethod,
+  ...rest
+}: { timeout?: ClientTimeout; parseMethod?: T } & CallApi) {
+  const apiPromise = callApi(rest);
+  const racedPromise =
+    typeof timeout === 'number' && timeout > 0
+      ? Promise.race([apiPromise, rejectAfterTimeout<Response>(timeout)])
+      : apiPromise;
+
+  return parseResponse(racedPromise, parseMethod);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/callApi/index.ts b/superset-frontend/packages/superset-ui-core/src/connection/callApi/index.ts
new file mode 100644
index 0000000..12d1deb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/callApi/index.ts
@@ -0,0 +1 @@
+export { default } from './callApiAndParseWithTimeout';
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/callApi/parseResponse.ts b/superset-frontend/packages/superset-ui-core/src/connection/callApi/parseResponse.ts
new file mode 100644
index 0000000..1367f4f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/callApi/parseResponse.ts
@@ -0,0 +1,40 @@
+import { ParseMethod, TextResponse, JsonResponse } from '../types';
+
+export default async function parseResponse<T extends ParseMethod = 'json'>(
+  apiPromise: Promise<Response>,
+  parseMethod?: T,
+) {
+  type ReturnType = T extends 'raw' | null
+    ? Response
+    : T extends 'json' | undefined
+    ? JsonResponse
+    : T extends 'text'
+    ? TextResponse
+    : never;
+  const response = await apiPromise;
+  // reject failed HTTP requests with the raw response
+  if (!response.ok) {
+    return Promise.reject(response);
+  }
+  if (parseMethod === null || parseMethod === 'raw') {
+    return response as ReturnType;
+  }
+  if (parseMethod === 'text') {
+    const text = await response.text();
+    const result: TextResponse = {
+      response,
+      text,
+    };
+    return result as ReturnType;
+  }
+  // by default treat this as json
+  if (parseMethod === undefined || parseMethod === 'json') {
+    const json = await response.json();
+    const result: JsonResponse = {
+      json,
+      response,
+    };
+    return result as ReturnType;
+  }
+  throw new Error(`Expected parseResponse=json|text|raw|null, got '${parseMethod}'.`);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/callApi/rejectAfterTimeout.ts b/superset-frontend/packages/superset-ui-core/src/connection/callApi/rejectAfterTimeout.ts
new file mode 100644
index 0000000..39c8b59
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/callApi/rejectAfterTimeout.ts
@@ -0,0 +1,15 @@
+// returns a Promise that rejects after the specified timeout
+export default function rejectAfterTimeout<T>(timeout: number) {
+  return new Promise<T>((resolve, reject) => {
+    setTimeout(
+      () =>
+        // eslint-disable-next-line prefer-promise-reject-errors
+        reject({
+          error: 'Request timed out',
+          statusText: 'timeout',
+          timeout,
+        }),
+      timeout,
+    );
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/constants.ts b/superset-frontend/packages/superset-ui-core/src/connection/constants.ts
new file mode 100644
index 0000000..1dbd2d9
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/constants.ts
@@ -0,0 +1,17 @@
+import { FetchRetryOptions } from './types';
+
+export const DEFAULT_BASE_URL = 'http://localhost';
+
+// HTTP status codes
+export const HTTP_STATUS_OK = 200;
+export const HTTP_STATUS_NOT_MODIFIED = 304;
+
+// Namespace for Cache API
+export const CACHE_AVAILABLE = 'caches' in window;
+export const CACHE_KEY = '@SUPERSET-UI/CONNECTION';
+
+export const DEFAULT_FETCH_RETRY_OPTIONS: FetchRetryOptions = {
+  retries: 3,
+  retryDelay: 1000,
+  retryOn: [503],
+};
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/index.ts b/superset-frontend/packages/superset-ui-core/src/connection/index.ts
new file mode 100644
index 0000000..a78cfd7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/index.ts
@@ -0,0 +1,4 @@
+export { default as callApi } from './callApi';
+export { default as SupersetClient } from './SupersetClient';
+export { default as SupersetClientClass } from './SupersetClientClass';
+export * from './types';
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/types.ts b/superset-frontend/packages/superset-ui-core/src/connection/types.ts
new file mode 100644
index 0000000..4740a1b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/connection/types.ts
@@ -0,0 +1,142 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import SupersetClientClass from './SupersetClientClass';
+
+export type Body = RequestInit['body'];
+export type Cache = RequestInit['cache'];
+export type Credentials = RequestInit['credentials'];
+export type Endpoint = string;
+export type FetchRetryOptions = {
+  retries?: number;
+  retryDelay?: number | ((attempt: number, error: Error, response: Response) => number);
+  retryOn?: number[] | ((attempt: number, error: Error, response: Response) => boolean);
+};
+export type Headers = { [k: string]: string };
+export type Host = string;
+
+export type JsonPrimitive = string | number | boolean | null;
+/**
+ * More strict JSON value types. If this fails to satisfy TypeScript when using
+ * as function arguments, use `JsonObject` instead. `StrictJsonObject` helps make
+ * sure all values are plain objects, but it does not accept specific types when
+ * used as function arguments.
+ * (Ref: https://github.com/microsoft/TypeScript/issues/15300).
+ */
+export type StrictJsonValue = JsonPrimitive | StrictJsonObject | StrictJsonArray;
+export type StrictJsonArray = StrictJsonValue[];
+/**
+ * More strict JSON objects that makes sure all values are plain objects.
+ * If this fails to satisfy TypeScript when using as function arguments,
+ * use `JsonObject` instead.
+ * (Ref: https://github.com/microsoft/TypeScript/issues/15300).
+ */
+export type StrictJsonObject = { [member: string]: StrictJsonValue };
+
+export type JsonValue = JsonPrimitive | JsonObject | JsonArray;
+export type JsonArray = JsonValue[];
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+export type JsonObject = { [member: string]: any };
+
+/**
+ * Request payload, can be use in GET query string, Post form or POST JSON.
+ * If string, will parse with JSON.parse.
+ */
+export type Payload = JsonObject | string | null;
+
+export type Method = RequestInit['method'];
+export type Mode = RequestInit['mode'];
+export type Redirect = RequestInit['redirect'];
+export type ClientTimeout = number | undefined;
+export type ParseMethod = 'json' | 'text' | 'raw' | null | undefined;
+export type Signal = RequestInit['signal'];
+export type Stringify = boolean;
+export type Url = string;
+
+export interface RequestBase {
+  body?: Body;
+  credentials?: Credentials;
+  fetchRetryOptions?: FetchRetryOptions;
+  headers?: Headers;
+  host?: Host;
+  mode?: Mode;
+  method?: Method;
+  jsonPayload?: Payload;
+  postPayload?: Payload | FormData;
+  searchParams?: Payload | URLSearchParams;
+  signal?: Signal;
+  stringify?: Stringify;
+  timeout?: ClientTimeout;
+}
+
+export interface CallApi extends RequestBase {
+  url: Url;
+  cache?: Cache;
+  redirect?: Redirect;
+}
+
+export interface RequestWithEndpoint extends RequestBase {
+  endpoint: Endpoint;
+  url?: Url;
+}
+
+export interface RequestWithUrl extends RequestBase {
+  url: Url;
+  endpoint?: Endpoint;
+}
+
+// this make sure at least one of `url` or `endpoint` is set
+export type RequestConfig = RequestWithEndpoint | RequestWithUrl;
+
+export interface JsonResponse {
+  response: Response;
+  json: JsonObject;
+}
+
+export interface TextResponse {
+  response: Response;
+  text: string;
+}
+
+export type CsrfToken = string;
+export type CsrfPromise = Promise<string | undefined>;
+export type Protocol = 'http:' | 'https:';
+
+export interface ClientConfig {
+  baseUrl?: string;
+  host?: Host;
+  protocol?: Protocol;
+  credentials?: Credentials;
+  csrfToken?: CsrfToken;
+  fetchRetryOptions?: FetchRetryOptions;
+  headers?: Headers;
+  mode?: Mode;
+  timeout?: ClientTimeout;
+}
+
+export interface SupersetClientInterface
+  extends Pick<
+    SupersetClientClass,
+    'delete' | 'get' | 'post' | 'put' | 'request' | 'init' | 'isAuthenticated' | 'reAuthenticate'
+  > {
+  configure: (config?: ClientConfig) => SupersetClientClass;
+  getInstance: (maybeClient?: SupersetClientClass) => SupersetClientClass;
+  reset: () => void;
+}
+
+export type SupersetClientResponse = Response | JsonResponse | TextResponse;
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/computeMaxFontSize.ts b/superset-frontend/packages/superset-ui-core/src/dimension/computeMaxFontSize.ts
new file mode 100644
index 0000000..6790c3f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/computeMaxFontSize.ts
@@ -0,0 +1,53 @@
+import getTextDimension, { GetTextDimensionInput } from './getTextDimension';
+import { Dimension } from './types';
+
+function decreaseSizeUntil(
+  startSize: number,
+  computeDimension: (size: number) => Dimension,
+  condition: (dimension: Dimension) => boolean,
+): number {
+  let size = startSize;
+  let dimension = computeDimension(size);
+  while (!condition(dimension)) {
+    size -= 1;
+    dimension = computeDimension(size);
+  }
+
+  return size;
+}
+
+export default function computeMaxFontSize(
+  input: GetTextDimensionInput & {
+    maxWidth?: number;
+    maxHeight?: number;
+    idealFontSize?: number;
+  },
+) {
+  const { idealFontSize, maxWidth, maxHeight, style, ...rest } = input;
+
+  let size: number;
+  if (idealFontSize !== undefined && idealFontSize !== null) {
+    size = idealFontSize;
+  } else if (maxHeight === undefined || maxHeight === null) {
+    throw new Error('You must specify at least one of maxHeight or idealFontSize');
+  } else {
+    size = Math.floor(maxHeight);
+  }
+
+  function computeDimension(fontSize: number) {
+    return getTextDimension({
+      ...rest,
+      style: { ...style, fontSize: `${fontSize}px` },
+    });
+  }
+
+  if (maxWidth !== undefined && maxWidth !== null) {
+    size = decreaseSizeUntil(size, computeDimension, dim => dim.width <= maxWidth);
+  }
+
+  if (maxHeight !== undefined && maxHeight !== null) {
+    size = decreaseSizeUntil(size, computeDimension, dim => dim.height <= maxHeight);
+  }
+
+  return size;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/getMultipleTextDimensions.ts b/superset-frontend/packages/superset-ui-core/src/dimension/getMultipleTextDimensions.ts
new file mode 100644
index 0000000..58badcd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/getMultipleTextDimensions.ts
@@ -0,0 +1,65 @@
+import { TextStyle, Dimension } from './types';
+import getBBoxCeil from './svg/getBBoxCeil';
+import { hiddenSvgFactory, textFactory } from './svg/factories';
+import updateTextNode from './svg/updateTextNode';
+
+/**
+ * get dimensions of multiple texts with same style
+ * @param input
+ * @param defaultDimension
+ */
+export default function getMultipleTextDimensions(
+  input: {
+    className?: string;
+    container?: HTMLElement;
+    style?: TextStyle;
+    texts: string[];
+  },
+  defaultDimension?: Dimension,
+): Dimension[] {
+  const { texts, className, style, container } = input;
+
+  const cache = new Map<string, Dimension>();
+  // for empty string
+  cache.set('', { height: 0, width: 0 });
+  let textNode: SVGTextElement | undefined;
+  let svgNode: SVGSVGElement | undefined;
+
+  const dimensions = texts.map(text => {
+    // Check if this string has been computed already
+    if (cache.has(text)) {
+      return cache.get(text) as Dimension;
+    }
+
+    // Lazy creation of text and svg nodes
+    if (!textNode) {
+      svgNode = hiddenSvgFactory.createInContainer(container);
+      textNode = textFactory.createInContainer(svgNode);
+    }
+
+    // Update text and get dimension
+    updateTextNode(textNode, { className, style, text });
+    const dimension = getBBoxCeil(textNode, defaultDimension);
+    // Store result to cache
+    cache.set(text, dimension);
+
+    return dimension;
+  });
+
+  // Remove svg node, if any
+  if (svgNode && textNode) {
+    // The nodes are added to the DOM briefly only to make getBBox works.
+    // (If not added to DOM getBBox will always return 0x0.)
+    // After that the svg nodes are not needed.
+    // We delay its removal in case there are subsequent calls to this function
+    // that can reuse the svg nodes.
+    // Experiments have shown that reusing existing nodes
+    // instead of deleting and adding new ones can save lot of time.
+    setTimeout(() => {
+      textFactory.removeFromContainer(svgNode);
+      hiddenSvgFactory.removeFromContainer(container);
+    }, 500);
+  }
+
+  return dimensions;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/getTextDimension.ts b/superset-frontend/packages/superset-ui-core/src/dimension/getTextDimension.ts
new file mode 100644
index 0000000..ece65e3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/getTextDimension.ts
@@ -0,0 +1,42 @@
+import { TextStyle, Dimension } from './types';
+import updateTextNode from './svg/updateTextNode';
+import getBBoxCeil from './svg/getBBoxCeil';
+import { hiddenSvgFactory, textFactory } from './svg/factories';
+
+export interface GetTextDimensionInput {
+  className?: string;
+  container?: HTMLElement;
+  style?: TextStyle;
+  text: string;
+}
+
+export default function getTextDimension(
+  input: GetTextDimensionInput,
+  defaultDimension?: Dimension,
+): Dimension {
+  const { text, className, style, container } = input;
+
+  // Empty string
+  if (text.length === 0) {
+    return { height: 0, width: 0 };
+  }
+
+  const svgNode = hiddenSvgFactory.createInContainer(container);
+  const textNode = textFactory.createInContainer(svgNode);
+  updateTextNode(textNode, { className, style, text });
+  const dimension = getBBoxCeil(textNode, defaultDimension);
+
+  // The nodes are added to the DOM briefly only to make getBBox works.
+  // (If not added to DOM getBBox will always return 0x0.)
+  // After that the svg nodes are not needed.
+  // We delay its removal in case there are subsequent calls to this function
+  // that can reuse the svg nodes.
+  // Experiments have shown that reusing existing nodes
+  // instead of deleting and adding new ones can save lot of time.
+  setTimeout(() => {
+    textFactory.removeFromContainer(svgNode);
+    hiddenSvgFactory.removeFromContainer(container);
+  }, 500);
+
+  return dimension;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/index.ts b/superset-frontend/packages/superset-ui-core/src/dimension/index.ts
new file mode 100644
index 0000000..8f0de0c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/index.ts
@@ -0,0 +1,7 @@
+export { default as getTextDimension } from './getTextDimension';
+export { default as getMultipleTextDimensions } from './getMultipleTextDimensions';
+export { default as computeMaxFontSize } from './computeMaxFontSize';
+export { default as mergeMargin } from './mergeMargin';
+export { default as parseLength } from './parseLength';
+
+export * from './types';
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/mergeMargin.ts b/superset-frontend/packages/superset-ui-core/src/dimension/mergeMargin.ts
new file mode 100644
index 0000000..e7365f2
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/mergeMargin.ts
@@ -0,0 +1,24 @@
+import { Margin } from './types';
+
+function mergeOneSide(operation: (a: number, b: number) => number, a = 0, b = 0) {
+  if (Number.isNaN(a) || a === null) return b;
+  if (Number.isNaN(b) || b === null) return a;
+
+  return operation(a, b);
+}
+
+export default function mergeMargin(
+  margin1: Partial<Margin> = {},
+  margin2: Partial<Margin> = {},
+  mode: 'expand' | 'shrink' = 'expand',
+) {
+  const { top, left, bottom, right } = margin1;
+  const operation = mode === 'expand' ? Math.max : Math.min;
+
+  return {
+    bottom: mergeOneSide(operation, bottom, margin2.bottom),
+    left: mergeOneSide(operation, left, margin2.left),
+    right: mergeOneSide(operation, right, margin2.right),
+    top: mergeOneSide(operation, top, margin2.top),
+  };
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/parseLength.ts b/superset-frontend/packages/superset-ui-core/src/dimension/parseLength.ts
new file mode 100644
index 0000000..2d0170b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/parseLength.ts
@@ -0,0 +1,16 @@
+const HUNDRED_PERCENT = { isDynamic: true, multiplier: 1 } as const;
+
+export default function parseLength(
+  input: string | number,
+): { isDynamic: true; multiplier: number } | { isDynamic: false; value: number } {
+  if (input === 'auto' || input === '100%') {
+    return HUNDRED_PERCENT;
+  }
+
+  if (typeof input === 'string' && input.length > 0 && input[input.length - 1] === '%') {
+    return { isDynamic: true, multiplier: parseFloat(input) / 100 };
+  }
+  const value = typeof input === 'number' ? input : parseFloat(input);
+
+  return { isDynamic: false, value };
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/svg/LazyFactory.ts b/superset-frontend/packages/superset-ui-core/src/dimension/svg/LazyFactory.ts
new file mode 100644
index 0000000..bcd6e4f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/svg/LazyFactory.ts
@@ -0,0 +1,41 @@
+export default class LazyFactory<T extends HTMLElement | SVGElement> {
+  private activeNodes = new Map<
+    HTMLElement | SVGElement,
+    {
+      counter: number;
+      node: T;
+    }
+  >();
+
+  private factoryFn: () => T;
+
+  constructor(factoryFn: () => T) {
+    this.factoryFn = factoryFn;
+  }
+
+  createInContainer(container: HTMLElement | SVGElement = document.body) {
+    if (this.activeNodes.has(container)) {
+      const entry = this.activeNodes.get(container)!;
+      entry.counter += 1;
+
+      return entry.node;
+    }
+
+    const node = this.factoryFn();
+    container.append(node);
+    this.activeNodes.set(container, { counter: 1, node });
+
+    return node;
+  }
+
+  removeFromContainer(container: HTMLElement | SVGElement = document.body) {
+    if (this.activeNodes.has(container)) {
+      const entry = this.activeNodes.get(container)!;
+      entry.counter -= 1;
+      if (entry.counter === 0) {
+        container.removeChild(entry.node);
+        this.activeNodes.delete(container);
+      }
+    }
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/svg/constants.ts b/superset-frontend/packages/superset-ui-core/src/dimension/svg/constants.ts
new file mode 100644
index 0000000..1873033
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/svg/constants.ts
@@ -0,0 +1,2 @@
+// eslint-disable-next-line import/prefer-default-export
+export const SVG_NS = 'http://www.w3.org/2000/svg';
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/svg/createHiddenSvgNode.ts b/superset-frontend/packages/superset-ui-core/src/dimension/svg/createHiddenSvgNode.ts
new file mode 100644
index 0000000..218153c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/svg/createHiddenSvgNode.ts
@@ -0,0 +1,14 @@
+import { SVG_NS } from './constants';
+
+export default function createHiddenSvgNode() {
+  const svgNode = document.createElementNS(SVG_NS, 'svg');
+  svgNode.style.position = 'absolute'; // so it won't disrupt page layout
+  svgNode.style.top = '-100%';
+  svgNode.style.left = '-100%';
+  svgNode.style.width = '0'; // no dimensions
+  svgNode.style.height = '0';
+  svgNode.style.opacity = '0'; // not visible
+  svgNode.style.pointerEvents = 'none'; // won't capture mouse events
+
+  return svgNode;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/svg/createTextNode.ts b/superset-frontend/packages/superset-ui-core/src/dimension/svg/createTextNode.ts
new file mode 100644
index 0000000..c831f0d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/svg/createTextNode.ts
@@ -0,0 +1,5 @@
+import { SVG_NS } from './constants';
+
+export default function createTextNode() {
+  return document.createElementNS(SVG_NS, 'text');
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/svg/factories.ts b/superset-frontend/packages/superset-ui-core/src/dimension/svg/factories.ts
new file mode 100644
index 0000000..522efb4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/svg/factories.ts
@@ -0,0 +1,6 @@
+import LazyFactory from './LazyFactory';
+import createHiddenSvgNode from './createHiddenSvgNode';
+import createTextNode from './createTextNode';
+
+export const hiddenSvgFactory = new LazyFactory(createHiddenSvgNode);
+export const textFactory = new LazyFactory(createTextNode);
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/svg/getBBoxCeil.ts b/superset-frontend/packages/superset-ui-core/src/dimension/svg/getBBoxCeil.ts
new file mode 100644
index 0000000..87e93a5
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/svg/getBBoxCeil.ts
@@ -0,0 +1,15 @@
+import { Dimension } from '../types';
+
+const DEFAULT_DIMENSION = { height: 20, width: 100 };
+
+export default function getBBoxCeil(
+  node: SVGGraphicsElement,
+  defaultDimension: Dimension = DEFAULT_DIMENSION,
+) {
+  const { width, height } = node.getBBox ? node.getBBox() : defaultDimension;
+
+  return {
+    height: Math.ceil(height),
+    width: Math.ceil(width),
+  };
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/svg/updateTextNode.ts b/superset-frontend/packages/superset-ui-core/src/dimension/svg/updateTextNode.ts
new file mode 100644
index 0000000..016012f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/svg/updateTextNode.ts
@@ -0,0 +1,51 @@
+import { TextStyle } from '../types';
+
+const STYLE_FIELDS: (keyof TextStyle)[] = [
+  'font',
+  'fontWeight',
+  'fontStyle',
+  'fontSize',
+  'fontFamily',
+  'letterSpacing',
+];
+
+export default function updateTextNode(
+  node: SVGTextElement,
+  {
+    className,
+    style = {},
+    text,
+  }: {
+    className?: string;
+    style?: TextStyle;
+    text?: string;
+  } = {},
+) {
+  const textNode = node;
+
+  if (textNode.textContent !== text) {
+    textNode.textContent = typeof text === 'undefined' ? null : text;
+  }
+  if (textNode.getAttribute('class') !== className) {
+    textNode.setAttribute('class', className ?? '');
+  }
+
+  // Clear style
+  // Note: multi-word property names are hyphenated and not camel-cased.
+  textNode.style.removeProperty('font');
+  textNode.style.removeProperty('font-weight');
+  textNode.style.removeProperty('font-style');
+  textNode.style.removeProperty('font-size');
+  textNode.style.removeProperty('font-family');
+  textNode.style.removeProperty('letter-spacing');
+
+  // Apply new style
+  // Note: the font field will auto-populate other font fields when applicable.
+  STYLE_FIELDS.filter(
+    (field: keyof TextStyle) => typeof style[field] !== 'undefined' && style[field] !== null,
+  ).forEach((field: keyof TextStyle) => {
+    textNode.style[field] = `${style[field]}`;
+  });
+
+  return textNode;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dimension/types.ts b/superset-frontend/packages/superset-ui-core/src/dimension/types.ts
new file mode 100644
index 0000000..876ee4c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dimension/types.ts
@@ -0,0 +1,20 @@
+export interface TextStyle {
+  font?: string;
+  fontFamily?: string;
+  fontSize?: string | number;
+  fontStyle?: string;
+  fontWeight?: string | number;
+  letterSpacing?: string | number;
+}
+
+export interface Margin {
+  top: number;
+  left: number;
+  bottom: number;
+  right: number;
+}
+
+export interface Dimension {
+  width: number;
+  height: number;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/dynamic-plugins/index.ts b/superset-frontend/packages/superset-ui-core/src/dynamic-plugins/index.ts
new file mode 100644
index 0000000..59825f8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dynamic-plugins/index.ts
@@ -0,0 +1,20 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+export * from './shared-modules';
diff --git a/superset-frontend/packages/superset-ui-core/src/dynamic-plugins/shared-modules.ts b/superset-frontend/packages/superset-ui-core/src/dynamic-plugins/shared-modules.ts
new file mode 100644
index 0000000..5aefb19
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/dynamic-plugins/shared-modules.ts
@@ -0,0 +1,90 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/** The type of an imported module. Don't fully understand this, yet. */
+export type Module = any;
+
+/**
+ * This is where packages are stored. We use window, because it plays well with Webpack.
+ * To avoid
+ * Have to amend the type of window, because window's usual type doesn't describe these fields.
+ */
+interface ModuleReferencer {
+  [packageKey: string]: Promise<Module>;
+}
+
+declare const window: Window & typeof globalThis & ModuleReferencer;
+
+const modulePromises: { [key: string]: Promise<Module> } = {};
+
+const withNamespace = (name: string) => `__superset__/${name}`;
+
+/**
+ * Dependency management using global variables, because for the life of me
+ * I can't figure out how to hook into UMD from a dynamically imported package.
+ *
+ * This defines a dynamically imported js module that can be used to import from
+ * multiple different plugins.
+ *
+ * When importing a common module (such as react or lodash or superset-ui)
+ * from a plugin, the plugin's build config will be able to
+ * reference these globals instead of rebuilding them.
+ *
+ * @param name the module's name (should match name in package.json)
+ * @param promise the promise resulting from a call to `import(name)`
+ */
+export async function defineSharedModule(name: string, fetchModule: () => Promise<Module>) {
+  // this field on window is used by dynamic plugins to reference the module
+  const moduleKey = withNamespace(name);
+
+  if (!window[moduleKey] && !modulePromises[name]) {
+    // if the module has not been loaded, load it
+    const modulePromise = fetchModule();
+    modulePromises[name] = modulePromise;
+    // wait for the module to load, and attach the result to window
+    // so that it can be referenced by plugins
+    window[moduleKey] = await modulePromise;
+  }
+
+  // we always return a reference to the promise.
+  // Multiple consumers can `.then()` or `await` the same promise,
+  // even long after it has completed,
+  // and it will always call back with the same reference.
+  return modulePromises[name];
+}
+
+/**
+ * Define multiple shared modules at once, using a map of name -> `import(name)`
+ *
+ * @see defineSharedModule
+ * @param moduleMap
+ */
+export async function defineSharedModules(moduleMap: { [key: string]: () => Promise<Module> }) {
+  return Promise.all(
+    Object.entries(moduleMap).map(([name, fetchModule]) => defineSharedModule(name, fetchModule)),
+  );
+}
+
+// only exposed for tests
+export function reset() {
+  Object.keys(modulePromises).forEach(key => {
+    delete window[withNamespace(key)];
+    delete modulePromises[key];
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/index.ts b/superset-frontend/packages/superset-ui-core/src/index.ts
new file mode 100644
index 0000000..18fe460
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/index.ts
@@ -0,0 +1,33 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export * from './models';
+export * from './utils';
+export * from './types';
+export * from './translation';
+export * from './connection';
+export * from './dynamic-plugins';
+export * from './query';
+export * from './number-format';
+export * from './time-format';
+export * from './dimension';
+export * from './color';
+export * from './style';
+export * from './validator';
+export * from './chart';
+export * from './chart-composition';
diff --git a/superset-frontend/packages/superset-ui-core/src/models/ExtensibleFunction.ts b/superset-frontend/packages/superset-ui-core/src/models/ExtensibleFunction.ts
new file mode 100644
index 0000000..0ca3551
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/models/ExtensibleFunction.ts
@@ -0,0 +1,12 @@
+/**
+ * From https://stackoverflow.com/questions/36871299/how-to-extend-function-with-es6-classes
+ */
+
+export default class ExtensibleFunction extends Function {
+  constructor(fn: Function) {
+    super();
+
+    // eslint-disable-next-line @typescript-eslint/no-unsafe-return, no-constructor-return
+    return Object.setPrototypeOf(fn, new.target.prototype);
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/models/Plugin.ts b/superset-frontend/packages/superset-ui-core/src/models/Plugin.ts
new file mode 100644
index 0000000..e05480d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/models/Plugin.ts
@@ -0,0 +1,34 @@
+interface PlainObject {
+  // eslint-disable-next-line @typescript-eslint/no-explicit-any
+  [key: string]: any;
+}
+
+export default class Plugin {
+  config: PlainObject;
+
+  constructor() {
+    this.config = {};
+  }
+
+  resetConfig() {
+    // The child class can set default config
+    // by overriding this function.
+    this.config = {};
+
+    return this;
+  }
+
+  configure(config: PlainObject, replace = false) {
+    this.config = replace ? config : { ...this.config, ...config };
+
+    return this;
+  }
+
+  register() {
+    return this;
+  }
+
+  unregister() {
+    return this;
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/models/Preset.ts b/superset-frontend/packages/superset-ui-core/src/models/Preset.ts
new file mode 100644
index 0000000..c5b4689
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/models/Preset.ts
@@ -0,0 +1,37 @@
+import Plugin from './Plugin';
+
+export default class Preset {
+  name: string;
+
+  description: string;
+
+  presets: Preset[];
+
+  plugins: Plugin[];
+
+  constructor(
+    config: {
+      name?: string;
+      description?: string;
+      presets?: Preset[];
+      plugins?: Plugin[];
+    } = {},
+  ) {
+    const { name = '', description = '', presets = [], plugins = [] } = config;
+    this.name = name;
+    this.description = description;
+    this.presets = presets;
+    this.plugins = plugins;
+  }
+
+  register() {
+    this.presets.forEach(preset => {
+      preset.register();
+    });
+    this.plugins.forEach(plugin => {
+      plugin.register();
+    });
+
+    return this;
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/models/Registry.ts b/superset-frontend/packages/superset-ui-core/src/models/Registry.ts
new file mode 100644
index 0000000..7144583
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/models/Registry.ts
@@ -0,0 +1,215 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export enum OverwritePolicy {
+  ALLOW = 'ALLOW',
+  PROHIBIT = 'PROHIBIT',
+  WARN = 'WARN',
+}
+
+interface ItemWithValue<T> {
+  value: T;
+}
+
+interface ItemWithLoader<T> {
+  loader: () => T;
+}
+
+export interface RegistryConfig {
+  name?: string;
+  overwritePolicy?: OverwritePolicy;
+}
+
+/**
+ * Registry class
+ *
+ * Can use generic to specify type of item in the registry
+ * @type V Type of value
+ * @type W Type of value returned from loader function when using registerLoader().
+ * W can be either V, Promise<V> or V | Promise<V>
+ * Set W=V when does not support asynchronous loader.
+ * By default W is set to V | Promise<V> to support
+ * both synchronous and asynchronous loaders.
+ */
+export default class Registry<V, W extends V | Promise<V> = V | Promise<V>> {
+  name: string;
+
+  overwritePolicy: OverwritePolicy;
+
+  items: {
+    [key: string]: ItemWithValue<V> | ItemWithLoader<W>;
+  };
+
+  promises: {
+    [key: string]: Promise<V>;
+  };
+
+  constructor(config: RegistryConfig = {}) {
+    const { name = '', overwritePolicy = OverwritePolicy.ALLOW } = config;
+    this.name = name;
+    this.overwritePolicy = overwritePolicy;
+    this.items = {};
+    this.promises = {};
+  }
+
+  clear() {
+    this.items = {};
+    this.promises = {};
+
+    return this;
+  }
+
+  has(key: string) {
+    const item = this.items[key];
+
+    return item !== null && item !== undefined;
+  }
+
+  registerValue(key: string, value: V) {
+    const item = this.items[key];
+    const willOverwrite =
+      this.has(key) && (('value' in item && item.value !== value) || 'loader' in item);
+    if (willOverwrite) {
+      if (this.overwritePolicy === OverwritePolicy.WARN) {
+        // eslint-disable-next-line no-console
+        console.warn(`Item with key "${key}" already exists. You are assigning a new value.`);
+      } else if (this.overwritePolicy === OverwritePolicy.PROHIBIT) {
+        throw new Error(`Item with key "${key}" already exists. Cannot overwrite.`);
+      }
+    }
+    if (!item || willOverwrite) {
+      this.items[key] = { value };
+      delete this.promises[key];
+    }
+
+    return this;
+  }
+
+  registerLoader(key: string, loader: () => W) {
+    const item = this.items[key];
+    const willOverwrite =
+      this.has(key) && (('loader' in item && item.loader !== loader) || 'value' in item);
+    if (willOverwrite) {
+      if (this.overwritePolicy === OverwritePolicy.WARN) {
+        // eslint-disable-next-line no-console
+        console.warn(`Item with key "${key}" already exists. You are assigning a new value.`);
+      } else if (this.overwritePolicy === OverwritePolicy.PROHIBIT) {
+        throw new Error(`Item with key "${key}" already exists. Cannot overwrite.`);
+      }
+    }
+    if (!item || willOverwrite) {
+      this.items[key] = { loader };
+      delete this.promises[key];
+    }
+
+    return this;
+  }
+
+  get(key: string): V | W | undefined {
+    const item = this.items[key];
+    if (item !== undefined) {
+      if ('loader' in item) {
+        return item.loader && item.loader();
+      }
+
+      return item.value;
+    }
+
+    return undefined;
+  }
+
+  getAsPromise(key: string): Promise<V> {
+    const promise = this.promises[key];
+
+    if (typeof promise !== 'undefined') {
+      return promise;
+    }
+    const item = this.get(key);
+    if (item !== undefined) {
+      const newPromise = Promise.resolve(item) as Promise<V>;
+      this.promises[key] = newPromise;
+
+      return newPromise;
+    }
+
+    return Promise.reject<V>(new Error(`Item with key "${key}" is not registered.`));
+  }
+
+  getMap() {
+    return this.keys().reduce<{
+      [key: string]: V | W | undefined;
+    }>((prev, key) => {
+      const map = prev;
+      map[key] = this.get(key);
+
+      return map;
+    }, {});
+  }
+
+  getMapAsPromise() {
+    const keys = this.keys();
+
+    return Promise.all(keys.map(key => this.getAsPromise(key))).then(values =>
+      values.reduce<{
+        [key: string]: V;
+      }>((prev, value, i) => {
+        const map = prev;
+        map[keys[i]] = value;
+
+        return map;
+      }, {}),
+    );
+  }
+
+  keys(): string[] {
+    return Object.keys(this.items);
+  }
+
+  values(): (V | W | undefined)[] {
+    return this.keys().map(key => this.get(key));
+  }
+
+  valuesAsPromise(): Promise<V[]> {
+    return Promise.all(this.keys().map(key => this.getAsPromise(key)));
+  }
+
+  entries(): { key: string; value: V | W | undefined }[] {
+    return this.keys().map(key => ({
+      key,
+      value: this.get(key),
+    }));
+  }
+
+  entriesAsPromise(): Promise<{ key: string; value: V }[]> {
+    const keys = this.keys();
+
+    return Promise.all(keys.map(key => this.getAsPromise(key))).then(values =>
+      values.map((value, i) => ({
+        key: keys[i],
+        value,
+      })),
+    );
+  }
+
+  remove(key: string) {
+    delete this.items[key];
+    delete this.promises[key];
+
+    return this;
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/models/RegistryWithDefaultKey.ts b/superset-frontend/packages/superset-ui-core/src/models/RegistryWithDefaultKey.ts
new file mode 100644
index 0000000..cc920da
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/models/RegistryWithDefaultKey.ts
@@ -0,0 +1,74 @@
+import Registry, { RegistryConfig } from './Registry';
+
+interface RegistryWithDefaultKeyConfig extends RegistryConfig {
+  initialDefaultKey?: string;
+  setFirstItemAsDefault?: boolean;
+}
+
+export default class RegistryWithDefaultKey<
+  V,
+  W extends V | Promise<V> = V | Promise<V>
+> extends Registry<V, W> {
+  initialDefaultKey?: string;
+
+  defaultKey?: string;
+
+  setFirstItemAsDefault: boolean;
+
+  constructor(config: RegistryWithDefaultKeyConfig = {}) {
+    super(config);
+    const { initialDefaultKey = undefined, setFirstItemAsDefault = false } = config;
+    this.initialDefaultKey = initialDefaultKey;
+    this.defaultKey = initialDefaultKey;
+    this.setFirstItemAsDefault = setFirstItemAsDefault;
+  }
+
+  clear() {
+    super.clear();
+    this.defaultKey = this.initialDefaultKey;
+
+    return this;
+  }
+
+  get(key?: string) {
+    const targetKey = key ?? this.defaultKey;
+
+    return targetKey ? super.get(targetKey) : undefined;
+  }
+
+  registerValue(key: string, value: V) {
+    super.registerValue(key, value);
+    // If there is no default, set as default
+    if (this.setFirstItemAsDefault && !this.defaultKey) {
+      this.defaultKey = key;
+    }
+
+    return this;
+  }
+
+  registerLoader(key: string, loader: () => W) {
+    super.registerLoader(key, loader);
+    // If there is no default, set as default
+    if (this.setFirstItemAsDefault && !this.defaultKey) {
+      this.defaultKey = key;
+    }
+
+    return this;
+  }
+
+  getDefaultKey() {
+    return this.defaultKey;
+  }
+
+  setDefaultKey(key: string) {
+    this.defaultKey = key;
+
+    return this;
+  }
+
+  clearDefaultKey() {
+    this.defaultKey = undefined;
+
+    return this;
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/models/index.ts b/superset-frontend/packages/superset-ui-core/src/models/index.ts
new file mode 100644
index 0000000..10d46c2
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/models/index.ts
@@ -0,0 +1,23 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export { default as ExtensibleFunction } from './ExtensibleFunction';
+export { default as Plugin } from './Plugin';
+export { default as Preset } from './Preset';
+export { default as Registry, OverwritePolicy } from './Registry';
+export { default as RegistryWithDefaultKey } from './RegistryWithDefaultKey';
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormats.ts b/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormats.ts
new file mode 100644
index 0000000..c5a181f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormats.ts
@@ -0,0 +1,68 @@
+const DOLLAR = '$,.2f';
+const DOLLAR_SIGNED = '+$,.2f';
+const DOLLAR_ROUND = '$,d';
+const DOLLAR_ROUND_SIGNED = '+$,d';
+
+const FLOAT_1_POINT = ',.1f';
+const FLOAT_2_POINT = ',.2f';
+const FLOAT_3_POINT = ',.3f';
+const FLOAT = FLOAT_2_POINT;
+
+const FLOAT_SIGNED_1_POINT = '+,.1f';
+const FLOAT_SIGNED_2_POINT = '+,.2f';
+const FLOAT_SIGNED_3_POINT = '+,.3f';
+const FLOAT_SIGNED = FLOAT_SIGNED_2_POINT;
+
+const INTEGER = ',d';
+const INTEGER_SIGNED = '+,d';
+
+const PERCENT_1_POINT = ',.1%';
+const PERCENT_2_POINT = ',.2%';
+const PERCENT_3_POINT = ',.3%';
+const PERCENT = PERCENT_2_POINT;
+
+const PERCENT_SIGNED_1_POINT = '+,.1%';
+const PERCENT_SIGNED_2_POINT = '+,.2%';
+const PERCENT_SIGNED_3_POINT = '+,.3%';
+const PERCENT_SIGNED = PERCENT_SIGNED_2_POINT;
+
+const SI_1_DIGIT = '.1s';
+const SI_2_DIGIT = '.2s';
+const SI_3_DIGIT = '.3s';
+const SI = SI_3_DIGIT;
+
+const SMART_NUMBER = 'SMART_NUMBER';
+const SMART_NUMBER_SIGNED = 'SMART_NUMBER_SIGNED';
+
+const NumberFormats = {
+  DOLLAR,
+  DOLLAR_ROUND,
+  DOLLAR_ROUND_SIGNED,
+  DOLLAR_SIGNED,
+  FLOAT,
+  FLOAT_1_POINT,
+  FLOAT_2_POINT,
+  FLOAT_3_POINT,
+  FLOAT_SIGNED,
+  FLOAT_SIGNED_1_POINT,
+  FLOAT_SIGNED_2_POINT,
+  FLOAT_SIGNED_3_POINT,
+  INTEGER,
+  INTEGER_SIGNED,
+  PERCENT,
+  PERCENT_1_POINT,
+  PERCENT_2_POINT,
+  PERCENT_3_POINT,
+  PERCENT_SIGNED,
+  PERCENT_SIGNED_1_POINT,
+  PERCENT_SIGNED_2_POINT,
+  PERCENT_SIGNED_3_POINT,
+  SI,
+  SI_1_DIGIT,
+  SI_2_DIGIT,
+  SI_3_DIGIT,
+  SMART_NUMBER,
+  SMART_NUMBER_SIGNED,
+};
+
+export default NumberFormats;
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormatter.ts b/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormatter.ts
new file mode 100644
index 0000000..e8be9de
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormatter.ts
@@ -0,0 +1,86 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ExtensibleFunction } from '../models';
+import { isRequired } from '../utils';
+import { NumberFormatFunction } from './types';
+
+export const PREVIEW_VALUE = 12345.432;
+
+export interface NumberFormatterConfig {
+  id: string;
+  label?: string;
+  description?: string;
+  formatFunc: NumberFormatFunction;
+  isInvalid?: boolean;
+}
+
+// Use type augmentation to indicate that
+// an instance of NumberFormatter is also a function
+interface NumberFormatter {
+  (value: number | null | undefined): string;
+}
+
+class NumberFormatter extends ExtensibleFunction {
+  id: string;
+
+  label: string;
+
+  description: string;
+
+  formatFunc: NumberFormatFunction;
+
+  isInvalid: boolean;
+
+  constructor(config: NumberFormatterConfig) {
+    super((value: number) => this.format(value));
+
+    const {
+      id = isRequired('config.id'),
+      label,
+      description = '',
+      formatFunc = isRequired('config.formatFunc'),
+      isInvalid = false,
+    } = config;
+    this.id = id;
+    this.label = label ?? id;
+    this.description = description;
+    this.formatFunc = formatFunc;
+    this.isInvalid = isInvalid;
+  }
+
+  format(value: number | null | undefined) {
+    if (value === null || value === undefined || Number.isNaN(value)) {
+      return `${value}`;
+    }
+    if (value === Number.POSITIVE_INFINITY) {
+      return '∞';
+    }
+    if (value === Number.NEGATIVE_INFINITY) {
+      return '-∞';
+    }
+
+    return this.formatFunc(value);
+  }
+
+  preview(value = PREVIEW_VALUE) {
+    return `${value} => ${this.format(value)}`;
+  }
+}
+
+export default NumberFormatter;
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormatterRegistry.ts b/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormatterRegistry.ts
new file mode 100644
index 0000000..b827149
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormatterRegistry.ts
@@ -0,0 +1,66 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { RegistryWithDefaultKey, OverwritePolicy } from '../models';
+import createD3NumberFormatter from './factories/createD3NumberFormatter';
+import createSmartNumberFormatter from './factories/createSmartNumberFormatter';
+import NumberFormats from './NumberFormats';
+import NumberFormatter from './NumberFormatter';
+
+export default class NumberFormatterRegistry extends RegistryWithDefaultKey<
+  NumberFormatter,
+  NumberFormatter
+> {
+  constructor() {
+    super({
+      name: 'NumberFormatter',
+      overwritePolicy: OverwritePolicy.WARN,
+    });
+
+    this.registerValue(NumberFormats.SMART_NUMBER, createSmartNumberFormatter());
+    this.registerValue(
+      NumberFormats.SMART_NUMBER_SIGNED,
+      createSmartNumberFormatter({ signed: true }),
+    );
+    this.setDefaultKey(NumberFormats.SMART_NUMBER);
+  }
+
+  get(formatterId?: string) {
+    const targetFormat = `${
+      formatterId === null || typeof formatterId === 'undefined' || formatterId === ''
+        ? this.defaultKey
+        : formatterId
+    }`.trim();
+
+    if (this.has(targetFormat)) {
+      return super.get(targetFormat) as NumberFormatter;
+    }
+
+    // Create new formatter if does not exist
+    const formatter = createD3NumberFormatter({
+      formatString: targetFormat,
+    });
+    this.registerValue(targetFormat, formatter);
+
+    return formatter;
+  }
+
+  format(formatterId: string | undefined, value: number | null | undefined): string {
+    return this.get(formatterId)(value);
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormatterRegistrySingleton.ts b/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormatterRegistrySingleton.ts
new file mode 100644
index 0000000..9bb39ea
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormatterRegistrySingleton.ts
@@ -0,0 +1,32 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { makeSingleton } from '../utils';
+import NumberFormatterRegistry from './NumberFormatterRegistry';
+
+const getInstance = makeSingleton(NumberFormatterRegistry);
+
+export default getInstance;
+
+export function getNumberFormatter(format?: string) {
+  return getInstance().get(format);
+}
+
+export function formatNumber(format: string | undefined, value: number | null | undefined) {
+  return getInstance().format(format, value);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/README.md b/superset-frontend/packages/superset-ui-core/src/number-format/README.md
new file mode 100644
index 0000000..e8967fc
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/README.md
@@ -0,0 +1,63 @@
+## @superset-ui/core/number-format
+
+Description
+
+#### Example usage
+
+Functions `getNumberFormatter` and `formatNumber` should be used instead of calling `d3.format`
+directly.
+
+```js
+import { getNumberFormatter } from '@superset-ui/core';
+const formatter = getNumberFormatter('.2f');
+console.log(formatter(1000));
+```
+
+or
+
+```js
+import { formatNumber } from '@superset-ui/core';
+console.log(formatNumber('.2f', 1000));
+```
+
+It is powered by a registry to support registration of custom formatting, with fallback to
+`d3.format` and handle error for invalid format string.
+
+```js
+import { getNumberFormatterRegistry, formatNumber, NumberFormatter } from '@superset-ui/core';
+
+getNumberFormatterRegistry().registerValue('my_format', new NumberFormatter({
+  id: 'my_format',
+  formatFunc: v => `my special format of ${v}`
+});
+
+console.log(formatNumber('my_format', 1000));
+// prints 'my special format of 1000'
+```
+
+It also define constants for common d3 formats. See the full list of formats in
+[NumberFormats.js](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-number-format/src/NumberFormats.js).
+
+```js
+import { NumberFormats } from '@superset-ui-number-format';
+
+NumberFormats.PERCENT; // ,.2%
+NumberFormats.PERCENT_3_POINT; // ,.3%
+```
+
+There is also a formatter based on [pretty-ms](https://www.npmjs.com/package/pretty-ms) that can be
+used to format time durations:
+
+```js
+import { createDurationFormatter, formatNumber, getNumberFormatterRegistry } from from '@superset-ui-number-format';
+
+getNumberFormatterRegistry().registerValue('my_duration_format', createDurationFormatter({ colonNotation: true });
+console.log(formatNumber('my_duration_format', 95500))
+// prints '1:35.5'
+```
+
+#### API
+
+`fn(args)`
+
+- Do something
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/factories/createD3NumberFormatter.ts b/superset-frontend/packages/superset-ui-core/src/number-format/factories/createD3NumberFormatter.ts
new file mode 100644
index 0000000..839ab07
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/factories/createD3NumberFormatter.ts
@@ -0,0 +1,52 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { format as d3Format, formatLocale, FormatLocaleDefinition } from 'd3-format';
+import { isRequired } from '../../utils';
+import NumberFormatter from '../NumberFormatter';
+import { NumberFormatFunction } from '../types';
+
+export default function createD3NumberFormatter(config: {
+  description?: string;
+  formatString: string;
+  label?: string;
+  locale?: FormatLocaleDefinition;
+}) {
+  const { description, formatString = isRequired('config.formatString'), label, locale } = config;
+
+  let formatFunc: NumberFormatFunction;
+  let isInvalid = false;
+
+  try {
+    formatFunc =
+      typeof locale === 'undefined'
+        ? d3Format(formatString)
+        : formatLocale(locale).format(formatString);
+  } catch (error) {
+    formatFunc = value => `${value} (Invalid format: ${formatString})`;
+    isInvalid = true;
+  }
+
+  return new NumberFormatter({
+    description,
+    formatFunc,
+    id: formatString,
+    isInvalid,
+    label,
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/factories/createDurationFormatter.ts b/superset-frontend/packages/superset-ui-core/src/number-format/factories/createDurationFormatter.ts
new file mode 100644
index 0000000..8c0fcab
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/factories/createDurationFormatter.ts
@@ -0,0 +1,20 @@
+import prettyMsFormatter from 'pretty-ms';
+import NumberFormatter from '../NumberFormatter';
+
+export default function createDurationFormatter(
+  config: {
+    description?: string;
+    id?: string;
+    label?: string;
+    multiplier?: number;
+  } & prettyMsFormatter.Options = {},
+) {
+  const { description, id, label, multiplier = 1, ...prettyMsOptions } = config;
+
+  return new NumberFormatter({
+    description,
+    formatFunc: value => prettyMsFormatter(value * multiplier, prettyMsOptions),
+    id: id ?? 'duration_format',
+    label: label ?? `Duration formatter`,
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/factories/createSiAtMostNDigitFormatter.ts b/superset-frontend/packages/superset-ui-core/src/number-format/factories/createSiAtMostNDigitFormatter.ts
new file mode 100644
index 0000000..62e559e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/factories/createSiAtMostNDigitFormatter.ts
@@ -0,0 +1,26 @@
+import { format as d3Format } from 'd3-format';
+import NumberFormatter from '../NumberFormatter';
+
+export default function createSiAtMostNDigitFormatter(
+  config: {
+    description?: string;
+    n?: number;
+    id?: string;
+    label?: string;
+  } = {},
+) {
+  const { description, n = 3, id, label } = config;
+  const siFormatter = d3Format(`.${n}s`);
+
+  return new NumberFormatter({
+    description,
+    formatFunc: value => {
+      const si = siFormatter(value);
+
+      /* Removing trailing `.00` if any */
+      return si.slice(-1) < 'A' ? parseFloat(si).toString() : si;
+    },
+    id: id ?? `si_at_most_${n}_digit`,
+    label: label ?? `SI with at most ${n} significant digits`,
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/factories/createSmartNumberFormatter.ts b/superset-frontend/packages/superset-ui-core/src/number-format/factories/createSmartNumberFormatter.ts
new file mode 100644
index 0000000..4b57655
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/factories/createSmartNumberFormatter.ts
@@ -0,0 +1,48 @@
+import { format as d3Format } from 'd3-format';
+import NumberFormatter from '../NumberFormatter';
+import NumberFormats from '../NumberFormats';
+
+const siFormatter = d3Format(`.3~s`);
+const float2PointFormatter = d3Format(`.2~f`);
+const float4PointFormatter = d3Format(`.4~f`);
+
+function formatValue(value: number) {
+  if (value === 0) {
+    return '0';
+  }
+  const absoluteValue = Math.abs(value);
+  if (absoluteValue >= 1000) {
+    // Normal human being are more familiar
+    // with billion (B) that giga (G)
+    return siFormatter(value).replace('G', 'B');
+  }
+  if (absoluteValue >= 1) {
+    return float2PointFormatter(value);
+  }
+  if (absoluteValue >= 0.001) {
+    return float4PointFormatter(value);
+  }
+  if (absoluteValue > 0.000001) {
+    return `${siFormatter(value * 1000000)}µ`;
+  }
+  return siFormatter(value);
+}
+
+export default function createSmartNumberFormatter(
+  config: {
+    description?: string;
+    signed?: boolean;
+    id?: string;
+    label?: string;
+  } = {},
+) {
+  const { description, signed = false, id, label } = config;
+  const getSign = signed ? (value: number) => (value > 0 ? '+' : '') : () => '';
+
+  return new NumberFormatter({
+    description,
+    formatFunc: value => `${getSign(value)}${formatValue(value)}`,
+    id: id || signed ? NumberFormats.SMART_NUMBER_SIGNED : NumberFormats.SMART_NUMBER,
+    label: label ?? 'Adaptive formatter',
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/index.ts b/superset-frontend/packages/superset-ui-core/src/number-format/index.ts
new file mode 100644
index 0000000..797f81f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/index.ts
@@ -0,0 +1,14 @@
+export { default as NumberFormats } from './NumberFormats';
+export { default as NumberFormatter, PREVIEW_VALUE } from './NumberFormatter';
+
+export {
+  default as getNumberFormatterRegistry,
+  formatNumber,
+  getNumberFormatter,
+} from './NumberFormatterRegistrySingleton';
+
+export { default as NumberFormatterRegistry } from './NumberFormatterRegistry';
+export { default as createD3NumberFormatter } from './factories/createD3NumberFormatter';
+export { default as createDurationFormatter } from './factories/createDurationFormatter';
+export { default as createSiAtMostNDigitFormatter } from './factories/createSiAtMostNDigitFormatter';
+export { default as createSmartNumberFormatter } from './factories/createSmartNumberFormatter';
diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/types.ts b/superset-frontend/packages/superset-ui-core/src/number-format/types.ts
new file mode 100644
index 0000000..789ea44
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/number-format/types.ts
@@ -0,0 +1 @@
+export type NumberFormatFunction = (value: number) => string;
diff --git a/superset-frontend/packages/superset-ui-core/src/query/DatasourceKey.ts b/superset-frontend/packages/superset-ui-core/src/query/DatasourceKey.ts
new file mode 100644
index 0000000..c1840e3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/DatasourceKey.ts
@@ -0,0 +1,24 @@
+import { DatasourceType } from './types/Datasource';
+
+export default class DatasourceKey {
+  readonly id: number;
+
+  readonly type: DatasourceType;
+
+  constructor(key: string) {
+    const [idStr, typeStr] = key.split('__');
+    this.id = parseInt(idStr, 10);
+    this.type = typeStr === 'table' ? DatasourceType.Table : DatasourceType.Druid;
+  }
+
+  public toString() {
+    return `${this.id}__${this.type}`;
+  }
+
+  public toObject() {
+    return {
+      id: this.id,
+      type: this.type,
+    };
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/README.md b/superset-frontend/packages/superset-ui-core/src/query/README.md
new file mode 100644
index 0000000..91fd632
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/README.md
@@ -0,0 +1,11 @@
+## @superset-ui/core/query
+
+Utility to make API requests to Superset backend.
+
+#### Example usage
+
+TODO
+
+#### API
+
+TODO
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/legacy/fetchExploreJson.ts b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/fetchExploreJson.ts
new file mode 100644
index 0000000..5707d76
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/fetchExploreJson.ts
@@ -0,0 +1,28 @@
+import { SupersetClient, Method, Endpoint } from '../../../connection';
+import { QueryFormData } from '../../types/QueryFormData';
+import { LegacyChartDataResponse } from './types';
+import { BaseParams } from '../types';
+
+export interface Params extends BaseParams {
+  method?: Method;
+  endpoint?: Endpoint;
+  formData: QueryFormData;
+}
+
+export default async function fetchExploreJson({
+  client = SupersetClient,
+  method = 'POST',
+  requestConfig,
+  endpoint = '/superset/explore_json/',
+  formData,
+}: Params) {
+  const { json } = await client.request({
+    ...requestConfig,
+    method,
+    endpoint,
+    searchParams:
+      method === 'GET' ? new URLSearchParams({ form_data: JSON.stringify(formData) }) : undefined,
+    postPayload: method === 'POST' ? { form_data: formData } : undefined,
+  });
+  return json as LegacyChartDataResponse;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/legacy/getDatasourceMetadata.ts b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/getDatasourceMetadata.ts
new file mode 100644
index 0000000..004480e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/getDatasourceMetadata.ts
@@ -0,0 +1,20 @@
+import { SupersetClient } from '../../../connection';
+import { Datasource } from '../../types/Datasource';
+import { BaseParams } from '../types';
+
+export interface Params extends BaseParams {
+  datasourceKey: string;
+}
+
+export default function getDatasourceMetadata({
+  client = SupersetClient,
+  datasourceKey,
+  requestConfig,
+}: Params) {
+  return client
+    .get({
+      endpoint: `/superset/fetch_datasource_metadata?datasourceKey=${datasourceKey}`,
+      ...requestConfig,
+    })
+    .then(response => response.json as Datasource);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/legacy/getFormData.ts b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/getFormData.ts
new file mode 100644
index 0000000..8a67e75
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/getFormData.ts
@@ -0,0 +1,26 @@
+import { SupersetClient } from '../../../connection';
+import { BaseParams } from '../types';
+import { QueryFormData } from '../../types/QueryFormData';
+
+export interface Params extends BaseParams {
+  sliceId: number;
+  overrideFormData?: Partial<QueryFormData>;
+}
+
+export default function getFormData({
+  client = SupersetClient,
+  sliceId,
+  overrideFormData,
+  requestConfig,
+}: Params) {
+  const promise = client
+    .get({
+      endpoint: `/api/v1/form_data/?slice_id=${sliceId}`,
+      ...requestConfig,
+    })
+    .then(({ json }) => json as QueryFormData);
+
+  return overrideFormData
+    ? promise.then(formData => ({ ...formData, ...overrideFormData }))
+    : promise;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/legacy/index.ts b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/index.ts
new file mode 100644
index 0000000..874df6f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/index.ts
@@ -0,0 +1,5 @@
+export { default as fetchExploreJson } from './fetchExploreJson';
+export { default as getFormData } from './getFormData';
+export { default as getDatasourceMetadata } from './getDatasourceMetadata';
+
+export * from './types';
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/legacy/types.ts b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/types.ts
new file mode 100644
index 0000000..3afc138
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/legacy/types.ts
@@ -0,0 +1,23 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartDataResponseResult } from '../../types';
+
+export interface LegacyChartDataResponse extends Omit<ChartDataResponseResult, 'data'> {
+  data: Record<string, unknown>[] | Record<string, unknown>;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/types.ts b/superset-frontend/packages/superset-ui-core/src/query/api/types.ts
new file mode 100644
index 0000000..e7b7390
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/types.ts
@@ -0,0 +1,24 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { RequestConfig, SupersetClientInterface, SupersetClientClass } from '../../connection';
+
+export interface BaseParams {
+  client?: SupersetClientInterface | SupersetClientClass;
+  requestConfig?: RequestConfig;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/v1/handleError.ts b/superset-frontend/packages/superset-ui-core/src/query/api/v1/handleError.ts
new file mode 100644
index 0000000..9cc1bd6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/v1/handleError.ts
@@ -0,0 +1,94 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { SupersetApiError, SupersetApiErrorPayload, SupersetApiMultiErrorsPayload } from './types';
+
+export type ErrorInput = string | Error | Response | SupersetApiErrorPayload;
+
+/**
+ * Handle API request errors, convert to consistent Superset API error.
+ * @param error the catched error from SupersetClient.request(...)
+ */
+export default async function handleError(error: ErrorInput): Promise<never> {
+  // already a Sueprset error
+  if (error instanceof SupersetApiError) {
+    throw error;
+  }
+  // string is the error message itself
+  if (typeof error === 'string') {
+    throw new SupersetApiError({ message: error });
+  }
+  // JS errors, normally happens before request was sent
+  if (error instanceof Error) {
+    throw new SupersetApiError({
+      message: error.message || 'Unknown Error',
+      originalError: error,
+    });
+  }
+
+  let errorJson;
+  let originalError;
+  let errorMessage = 'Unknown Error';
+  let status: number | undefined;
+  let statusText: string | undefined;
+
+  // catch HTTP errors
+  if (error instanceof Response) {
+    const { status: responseStatus, statusText: responseStatusText } = error;
+    status = responseStatus;
+    statusText = responseStatusText;
+    errorMessage = `${status} ${statusText}`;
+    try {
+      errorJson = (await error.json()) as SupersetApiErrorPayload | SupersetApiMultiErrorsPayload;
+      originalError = errorJson;
+    } catch (error_) {
+      originalError = error;
+    }
+  } else if (error) {
+    errorJson = error;
+  }
+
+  // when API returns 200 but operation fails (see Python API json_error_response(...))
+  // or when frontend promise rejects with `{ error: ... }`
+  if (errorJson && ('error' in errorJson || 'message' in errorJson || 'errors' in errorJson)) {
+    let err;
+    if ('errors' in errorJson) {
+      err = errorJson.errors?.[0] || {};
+    } else if (typeof errorJson.error === 'object') {
+      err = errorJson.error;
+    } else {
+      err = errorJson;
+    }
+    errorMessage =
+      err.message || (err.error as string | undefined) || err.error_type || errorMessage;
+    throw new SupersetApiError({
+      status,
+      statusText,
+      message: errorMessage,
+      originalError,
+      ...err,
+    });
+  }
+  // all unknown error
+  throw new SupersetApiError({
+    status,
+    statusText,
+    message: errorMessage,
+    originalError: error,
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/v1/index.ts b/superset-frontend/packages/superset-ui-core/src/query/api/v1/index.ts
new file mode 100644
index 0000000..70d1f83
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/v1/index.ts
@@ -0,0 +1,32 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import makeApi from './makeApi';
+import { ChartDataResponse, QueryContext } from '../../types';
+
+export const getChartData = makeApi<QueryContext, ChartDataResponse>({
+  method: 'POST',
+  endpoint: '/api/v1/chart/data',
+});
+
+/**
+ * All v1 API
+ */
+export default {
+  getChartData,
+};
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/v1/makeApi.ts b/superset-frontend/packages/superset-ui-core/src/query/api/v1/makeApi.ts
new file mode 100644
index 0000000..eccb6df
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/v1/makeApi.ts
@@ -0,0 +1,136 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import rison from 'rison';
+import {
+  SupersetClient,
+  Payload as SupersetPayload,
+  JsonObject,
+  JsonValue,
+  ParseMethod,
+  Endpoint,
+  Method,
+  RequestBase,
+} from '../../../connection';
+import handleError, { ErrorInput } from './handleError';
+import { SupersetApiRequestOptions, SupersetApiErrorPayload, ParsedResponseType } from './types';
+
+const validRequestTypes = new Set(['form', 'json', 'search', 'rison']);
+
+interface SupersetApiFactoryOptions extends Omit<RequestBase, 'url'> {
+  /**
+   * API endpoint, must be relative.
+   */
+  endpoint: Endpoint;
+  /**
+   * Request method: 'GET' | 'POST' | 'DELETE' | 'PUT' | ...
+   */
+  method: Method;
+  /**
+   * How to send the payload:
+   *  - form: set request.body as FormData
+   *  - json: as JSON string with request Content-Type header set to application/json
+   *  - search: add to search params
+   */
+  requestType?: 'form' | 'json' | 'search' | 'rison';
+}
+
+function isPayloadless(method?: Method) {
+  return !method || method === 'GET' || method === 'DELETE' || method === 'HEAD';
+}
+
+/**
+ * Generate an API caller with predefined configs/typing and consistent
+ * return values.
+ */
+export default function makeApi<
+  Payload = SupersetPayload,
+  Result = JsonObject,
+  T extends ParseMethod = ParseMethod
+>({
+  endpoint,
+  method,
+  requestType: requestType_,
+  responseType,
+  processResponse,
+  ...requestOptions
+}: SupersetApiFactoryOptions & {
+  /**
+   * How to parse response, choose from: 'json' | 'text' | 'raw'.
+   */
+  responseType?: T;
+  /**
+   * Further process parsed response
+   */
+  processResponse?(result: ParsedResponseType<T>): Result;
+}) {
+  // use `search` payload (searchParams) when it's a GET request
+  const requestType = requestType_ || (isPayloadless(method) ? 'search' : 'json');
+  if (!validRequestTypes.has(requestType)) {
+    throw new Error(
+      `Invalid request payload type, choose from: ${[...validRequestTypes].join(' | ')}`,
+    );
+  }
+
+  async function request(
+    payload: Payload,
+    { client = SupersetClient }: SupersetApiRequestOptions = { client: SupersetClient },
+  ): Promise<Result> {
+    try {
+      const requestConfig = {
+        ...requestOptions,
+        method,
+        endpoint,
+      };
+      if (requestType === 'search') {
+        requestConfig.searchParams = payload;
+      } else if (requestType === 'rison') {
+        requestConfig.endpoint = `${endpoint}?q=${rison.encode(payload)}`;
+      } else if (requestType === 'form') {
+        requestConfig.postPayload = payload;
+      } else {
+        requestConfig.jsonPayload = payload;
+      }
+
+      let result: JsonValue | Response;
+      const response = await client.request({ ...requestConfig, parseMethod: 'raw' });
+
+      if (responseType === 'text') {
+        result = await response.text();
+      } else if (responseType === 'raw' || responseType === null) {
+        result = response;
+      } else {
+        result = await response.json();
+        // if response json has an "error" field
+        if (result && typeof result === 'object' && 'error' in result) {
+          return handleError(result as SupersetApiErrorPayload);
+        }
+      }
+      const typedResult = result as ParsedResponseType<T>;
+      return (processResponse ? processResponse(typedResult) : typedResult) as Result;
+    } catch (error) {
+      return handleError(error as ErrorInput);
+    }
+  }
+
+  request.method = method;
+  request.endpoint = endpoint;
+  request.requestType = requestType;
+
+  return request;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/api/v1/types.ts b/superset-frontend/packages/superset-ui-core/src/query/api/v1/types.ts
new file mode 100644
index 0000000..701370f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/api/v1/types.ts
@@ -0,0 +1,137 @@
+/* eslint-disable camelcase */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  SupersetClientClass,
+  SupersetClientInterface,
+  StrictJsonObject,
+  JsonValue,
+  JsonObject,
+} from '../../../connection';
+
+export type ParsedResponseType<T> = T extends 'text'
+  ? string
+  : T extends 'raw' | null
+  ? Response
+  : JsonValue;
+
+/**
+ * Runtime options when calling a Superset API. Currently only allow overriding
+ * SupersetClient instance.
+ */
+export interface SupersetApiRequestOptions {
+  client?: SupersetClientInterface | SupersetClientClass;
+}
+
+/**
+ * Superset API error types.
+ * Ref: https://github.com/apache/incubator-superset/blob/318e5347bc6f88119725775baa4ab9a398a6f0b0/superset/errors.py#L24
+ *
+ * TODO: migrate superset-frontend/src/components/ErrorMessage/types.ts over
+ */
+export enum SupersetApiErrorType {
+  // Generic unknown error
+  UNKNOWN_ERROR = 'UNKNOWN_ERROR',
+
+  // Frontend errors
+  FRONTEND_CSRF_ERROR = 'FRONTEND_CSRF_ERROR',
+  FRONTEND_NETWORK_ERROR = 'FRONTEND_NETWORK_ERROR',
+  FRONTEND_TIMEOUT_ERROR = 'FRONTEND_TIMEOUT_ERROR',
+
+  // DB Engine errors,
+  GENERIC_DB_ENGINE_ERROR = 'GENERIC_DB_ENGINE_ERROR',
+
+  // Viz errors,
+  VIZ_GET_DF_ERROR = 'VIZ_GET_DF_ERROR',
+  UNKNOWN_DATASOURCE_TYPE_ERROR = 'UNKNOWN_DATASOURCE_TYPE_ERROR',
+  FAILED_FETCHING_DATASOURCE_INFO_ERROR = 'FAILED_FETCHING_DATASOURCE_INFO_ERROR',
+
+  // Security access errors,
+  TABLE_SECURITY_ACCESS_ERROR = 'TABLE_SECURITY_ACCESS_ERROR',
+  DATASOURCE_SECURITY_ACCESS_ERROR = 'DATASOURCE_SECURITY_ACCESS_ERROR',
+  MISSING_OWNERSHIP_ERROR = 'MISSING_OWNERSHIP_ERROR',
+}
+
+/**
+ * API Error json response from the backend (or fetch API in the frontend).
+ * See SIP-40 and SIP-41: https://github.com/apache/incubator-superset/issues/9298
+ */
+export interface SupersetApiErrorPayload {
+  message?: string; // error message via FlaskAppBuilder, e.g. `response_404(message=...)`
+  error_type?: SupersetApiErrorType;
+  level?: 'error' | 'warn' | 'info';
+  extra?: StrictJsonObject;
+  /**
+   * Error message returned via `json_error_response`.
+   * Ref https://github.com/apache/incubator-superset/blob/8e23d4f369f35724b34b14def8a5a8bafb1d2ecb/superset/views/base.py#L94
+   */
+  error?: string | SupersetApiErrorPayload;
+  link?: string;
+}
+
+export interface SupersetApiMultiErrorsPayload {
+  errors: SupersetApiErrorPayload[];
+}
+
+export class SupersetApiError extends Error {
+  status?: number;
+
+  statusText?: string;
+
+  errorType: SupersetApiErrorType;
+
+  extra: JsonObject;
+
+  originalError?: Error | Response | JsonValue;
+
+  constructor({
+    status,
+    statusText,
+    message,
+    link,
+    extra,
+    stack,
+    error_type: errorType,
+    originalError,
+  }: Omit<SupersetApiErrorPayload, 'error'> & {
+    status?: number;
+    statusText?: string;
+    message: string;
+    stack?: Error['stack'];
+    // original JavaScript error or backend JSON response captured
+    originalError?: SupersetApiError['originalError'];
+  }) {
+    super(message);
+    const originalErrorStack =
+      stack || (originalError instanceof Error ? originalError.stack : undefined);
+    this.stack =
+      originalErrorStack && this.stack
+        ? [this.stack.split('\n')[0], ...originalErrorStack.split('\n').slice(1)].join('\n')
+        : this.stack;
+    this.name = 'SupersetApiError';
+    this.errorType = errorType || SupersetApiErrorType.UNKNOWN_ERROR;
+    this.extra = extra || {};
+    if (link) {
+      this.extra.link = link;
+    }
+    this.status = status;
+    this.statusText = statusText;
+    this.originalError = originalError;
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/buildQueryContext.ts b/superset-frontend/packages/superset-ui-core/src/query/buildQueryContext.ts
new file mode 100644
index 0000000..436e7eb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/buildQueryContext.ts
@@ -0,0 +1,19 @@
+import buildQueryObject from './buildQueryObject';
+import DatasourceKey from './DatasourceKey';
+import { QueryFormData } from './types/QueryFormData';
+import { QueryContext, QueryObject } from './types/Query';
+
+const WRAP_IN_ARRAY = (baseQueryObject: QueryObject) => [baseQueryObject];
+
+export default function buildQueryContext(
+  formData: QueryFormData,
+  buildQuery: (baseQueryObject: QueryObject) => QueryObject[] = WRAP_IN_ARRAY,
+): QueryContext {
+  return {
+    datasource: new DatasourceKey(formData.datasource).toObject(),
+    force: formData.force || false,
+    queries: buildQuery(buildQueryObject(formData)),
+    result_format: formData.result_format || 'json',
+    result_type: formData.result_type || 'full',
+  };
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/buildQueryObject.ts b/superset-frontend/packages/superset-ui-core/src/query/buildQueryObject.ts
new file mode 100644
index 0000000..5f297ce
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/buildQueryObject.ts
@@ -0,0 +1,73 @@
+/* eslint-disable camelcase */
+import { QueryObject } from './types/Query';
+import { QueryFieldAliases, QueryFormData } from './types/QueryFormData';
+import processFilters from './processFilters';
+import extractExtras from './extractExtras';
+import extractQueryFields from './extractQueryFields';
+import { appendExtraFormData, overrideExtraFormData } from './processExtraFormData';
+
+export const DTTM_ALIAS = '__timestamp';
+
+/**
+ * Build the common segments of all query objects (e.g. the granularity field derived from
+ * either sql alchemy or druid). The segments specific to each viz type is constructed in the
+ * buildQuery method for each viz type (see `wordcloud/buildQuery.ts` for an example).
+ * Note the type of the formData argument passed in here is the type of the formData for a
+ * specific viz, which is a subtype of the generic formData shared among all viz types.
+ */
+export default function buildQueryObject<T extends QueryFormData>(
+  formData: T,
+  queryFields?: QueryFieldAliases,
+): QueryObject {
+  const {
+    annotation_layers = [],
+    extra_form_data = {},
+    time_range,
+    since,
+    until,
+    row_limit,
+    row_offset,
+    order_desc,
+    limit,
+    timeseries_limit_metric,
+    granularity,
+    url_params = {},
+    ...residualFormData
+  } = formData;
+  const { append_form_data = {}, override_form_data = {} } = extra_form_data;
+
+  const numericRowLimit = Number(row_limit);
+  const numericRowOffset = Number(row_offset);
+  const { metrics, columns, orderby } = extractQueryFields(residualFormData, queryFields);
+
+  const extras = extractExtras(formData);
+  const extrasAndfilters = processFilters({
+    ...formData,
+    ...extras,
+  });
+
+  let queryObject: QueryObject = {
+    // fallback `null` to `undefined` so they won't be sent to the backend
+    // (JSON.strinify will ignore `undefined`.)
+    time_range: time_range || undefined,
+    since: since || undefined,
+    until: until || undefined,
+    granularity: granularity || undefined,
+    ...extras,
+    ...extrasAndfilters,
+    columns,
+    metrics,
+    orderby,
+    annotation_layers,
+    row_limit: row_limit == null || Number.isNaN(numericRowLimit) ? undefined : numericRowLimit,
+    row_offset: row_offset == null || Number.isNaN(numericRowOffset) ? undefined : numericRowOffset,
+    timeseries_limit: limit ? Number(limit) : 0,
+    timeseries_limit_metric: timeseries_limit_metric || undefined,
+    order_desc: typeof order_desc === 'undefined' ? true : order_desc,
+    url_params: url_params || undefined,
+  };
+  // append and override extra form data used by native filters
+  queryObject = appendExtraFormData(queryObject, append_form_data);
+  queryObject = overrideExtraFormData(queryObject, override_form_data);
+  return queryObject;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/convertFilter.ts b/superset-frontend/packages/superset-ui-core/src/query/convertFilter.ts
new file mode 100644
index 0000000..cb090db
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/convertFilter.ts
@@ -0,0 +1,31 @@
+import { SimpleAdhocFilter, isBinaryAdhocFilter, isUnaryAdhocFilter } from './types/Filter';
+import { QueryObjectFilterClause } from './types/Query';
+
+export default function convertFilter(filter: SimpleAdhocFilter): QueryObjectFilterClause {
+  const { subject } = filter;
+  if (isUnaryAdhocFilter(filter)) {
+    const { operator } = filter;
+
+    return {
+      col: subject,
+      op: operator,
+    };
+  }
+  if (isBinaryAdhocFilter(filter)) {
+    const { operator } = filter;
+
+    return {
+      col: subject,
+      op: operator,
+      val: filter.comparator,
+    };
+  }
+
+  const { operator } = filter;
+
+  return {
+    col: subject,
+    op: operator,
+    val: filter.comparator,
+  };
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/extractExtras.ts b/superset-frontend/packages/superset-ui-core/src/query/extractExtras.ts
new file mode 100644
index 0000000..f4eaa6a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/extractExtras.ts
@@ -0,0 +1,51 @@
+/* eslint-disable camelcase */
+import { isDruidFormData, QueryFormData } from './types/QueryFormData';
+import { QueryObject } from './types/Query';
+import { AppliedTimeExtras, TimeColumnConfigKey } from './types/Time';
+
+export default function extractExtras(formData: QueryFormData): Partial<QueryObject> {
+  const applied_time_extras: AppliedTimeExtras = {};
+  const { extras = {}, filters = [] } = formData;
+  const partialQueryObject: Partial<QueryObject> = {
+    filters,
+    extras,
+    applied_time_extras,
+  };
+
+  const reservedColumnsToQueryField: Record<TimeColumnConfigKey, keyof QueryObject> = {
+    __time_range: 'time_range',
+    __time_col: 'granularity_sqla',
+    __time_grain: 'time_grain_sqla',
+    __time_origin: 'druid_time_origin',
+    __granularity: 'granularity',
+  };
+
+  (formData.extra_filters || []).forEach(filter => {
+    if (filter.col in reservedColumnsToQueryField) {
+      const key = filter.col as TimeColumnConfigKey;
+      const queryField = reservedColumnsToQueryField[key];
+      partialQueryObject[queryField] = filter.val;
+      applied_time_extras[key] = filter.val as string;
+    } else {
+      filters.push(filter);
+    }
+  });
+
+  // map to undeprecated names and remove deprecated fields
+  if (isDruidFormData(formData) && !partialQueryObject.druid_time_origin) {
+    extras.druid_time_origin = formData.druid_time_origin;
+    delete partialQueryObject.druid_time_origin;
+  } else {
+    // SQL
+    extras.time_grain_sqla = partialQueryObject.time_grain_sqla || formData.time_grain_sqla;
+    partialQueryObject.granularity =
+      partialQueryObject.granularity_sqla || formData.granularity || formData.granularity_sqla;
+    delete partialQueryObject.granularity_sqla;
+    delete partialQueryObject.time_grain_sqla;
+  }
+
+  // map time range endpoints:
+  if (formData.time_range_endpoints) extras.time_range_endpoints = formData.time_range_endpoints;
+
+  return partialQueryObject;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts b/superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts
new file mode 100644
index 0000000..f966d9b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts
@@ -0,0 +1,113 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '../translation';
+import { DTTM_ALIAS } from './buildQueryObject';
+import { QueryFields, QueryFieldAliases, FormDataResidual, QueryMode } from './types/QueryFormData';
+
+/**
+ * Extra SQL query related fields from chart form data.
+ * Consolidate field values into arrays.
+ *
+ * @param formData - the (partial) form data obtained from chart controls.
+ * @param aliases - additional field aliases that maps arbitrary field names to
+ *                  query field names.
+ */
+export default function extractQueryFields(
+  formData: FormDataResidual,
+  aliases?: QueryFieldAliases,
+): QueryFields {
+  const queryFieldAliases: QueryFieldAliases = {
+    /** These are predefined for backward compatibility */
+    metric: 'metrics',
+    metric_2: 'metrics',
+    secondary_metric: 'metrics',
+    x: 'metrics',
+    y: 'metrics',
+    size: 'metrics',
+    all_columns: 'columns',
+    series: 'groupby',
+    order_by_cols: 'orderby',
+    ...aliases,
+  };
+  const finalQueryFields: QueryFields = {
+    columns: [],
+    metrics: [],
+    orderby: [],
+  };
+  const { query_mode: queryMode, include_time: includeTime, ...restFormData } = formData;
+
+  Object.entries(restFormData).forEach(([key, value]) => {
+    // ignore `null` or `undefined` value
+    if (value == null) {
+      return;
+    }
+
+    let normalizedKey: string = queryFieldAliases[key] || key;
+
+    // ignore groupby and metrics when in raw records mode
+    if (
+      queryMode === QueryMode.raw &&
+      (normalizedKey === 'groupby' || normalizedKey === 'metrics')
+    ) {
+      return;
+    }
+
+    // ignore columns when (specifically) in aggregate mode.
+    // For charts that support both aggregate and raw records mode,
+    // we store both `groupby` and `columns` in `formData`, so users can
+    // switch between modes while retaining the selected options for each.
+    if (queryMode === QueryMode.aggregate && normalizedKey === 'columns') {
+      return;
+    }
+
+    // groupby has been deprecated in QueryObject: https://github.com/apache/superset/pull/9366
+    // We translate all `groupby` to `columns`.
+    if (normalizedKey === 'groupby') {
+      normalizedKey = 'columns';
+    }
+
+    if (normalizedKey === 'metrics') {
+      finalQueryFields[normalizedKey] = finalQueryFields[normalizedKey].concat(value);
+    } else if (normalizedKey === 'columns') {
+      // currently the columns field only accept pre-defined columns (string shortcut)
+      finalQueryFields[normalizedKey] = finalQueryFields[normalizedKey]
+        .concat(value)
+        .filter(x => typeof x === 'string' && x);
+    } else if (normalizedKey === 'orderby') {
+      finalQueryFields[normalizedKey] = finalQueryFields[normalizedKey].concat(value).map(item => {
+        // value can be in the format of `['["col1", true]', '["col2", false]'],
+        // where the option strings come directly from `order_by_choices`.
+        if (typeof item === 'string') {
+          try {
+            return JSON.parse(item);
+          } catch (error) {
+            throw new Error(t('Found invalid orderby options'));
+          }
+        }
+        return item;
+      });
+    }
+  });
+
+  if (includeTime && !finalQueryFields.columns.includes(DTTM_ALIAS)) {
+    finalQueryFields.columns.unshift(DTTM_ALIAS);
+  }
+
+  return finalQueryFields;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/getMetricLabel.ts b/superset-frontend/packages/superset-ui-core/src/query/getMetricLabel.ts
new file mode 100644
index 0000000..fc5fe94
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/getMetricLabel.ts
@@ -0,0 +1,14 @@
+import { QueryFormMetric } from './types/QueryFormData';
+
+export default function getMetricLabel(metric: QueryFormMetric) {
+  if (typeof metric === 'string') {
+    return metric;
+  }
+  if (metric.label) {
+    return metric.label;
+  }
+  if (metric.expressionType === 'SIMPLE') {
+    return `${metric.aggregate}(${metric.column.columnName})`;
+  }
+  return metric.sqlExpression;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/index.ts b/superset-frontend/packages/superset-ui-core/src/query/index.ts
new file mode 100644
index 0000000..d38651f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/index.ts
@@ -0,0 +1,39 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import * as ApiLegacy from './api/legacy';
+import * as ApiV1 from './api/v1';
+
+export { default as buildQueryContext } from './buildQueryContext';
+export { default as buildQueryObject } from './buildQueryObject';
+export { default as convertFilter } from './convertFilter';
+export { default as getMetricLabel } from './getMetricLabel';
+export { default as DatasourceKey } from './DatasourceKey';
+
+export * from './types/AnnotationLayer';
+export * from './types/QueryFormData';
+export * from './types/Column';
+export * from './types/Datasource';
+export * from './types/Metric';
+export * from './types/Query';
+
+export * from './api/v1/types';
+export { default as makeApi } from './api/v1/makeApi';
+
+// API Callers
+export { ApiLegacy, ApiV1 };
diff --git a/superset-frontend/packages/superset-ui-core/src/query/processExtraFormData.ts b/superset-frontend/packages/superset-ui-core/src/query/processExtraFormData.ts
new file mode 100644
index 0000000..a720197
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/processExtraFormData.ts
@@ -0,0 +1,70 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { QueryObject } from './types/Query';
+
+const ALLOWED_OVERRIDES = ['time_grain_sqla', 'time_range', 'since', 'until'];
+const ALLOWED_APPENDS = ['adhoc_filters', 'filters', 'groupby'];
+
+export function overrideExtraFormData(
+  queryObject: QueryObject,
+  overrideFormData: Partial<QueryObject>,
+): QueryObject {
+  const overriddenFormData = { ...queryObject };
+  ALLOWED_OVERRIDES.forEach(key => {
+    if (key in overrideFormData) {
+      overriddenFormData[key] = overrideFormData[key];
+    }
+  });
+  return overriddenFormData;
+}
+
+export function appendExtraFormData(
+  queryObject: QueryObject,
+  appendFormData: Partial<QueryObject>,
+): QueryObject {
+  const appendedFormData = { ...queryObject };
+  ALLOWED_APPENDS.forEach(key => {
+    if (key in appendFormData) {
+      const append = appendFormData[key];
+      const currentValue = appendedFormData[key] || [];
+      // @ts-ignore
+      currentValue.push(...append);
+      appendedFormData[key] = currentValue;
+    }
+  });
+
+  // Add freeform where
+  const { extras = {} } = appendedFormData;
+  const { where = '' } = extras;
+  extras.where = where;
+
+  const { extras: appendExtras = {} } = appendFormData;
+  let { where: appendWhere } = appendExtras;
+
+  if (appendWhere) {
+    appendedFormData.extras = extras;
+    appendWhere = `(${appendWhere})`;
+  }
+  if (where) {
+    appendWhere = appendWhere ? `(${where}) AND ${appendWhere}` : where;
+  }
+  extras.where = appendWhere;
+
+  return appendedFormData;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/processFilters.ts b/superset-frontend/packages/superset-ui-core/src/query/processFilters.ts
new file mode 100644
index 0000000..8d3e7ab
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/processFilters.ts
@@ -0,0 +1,50 @@
+/* eslint-disable camelcase */
+import { QueryFormData } from './types/QueryFormData';
+import { QueryObjectFilterClause } from './types/Query';
+import { isSimpleAdhocFilter } from './types/Filter';
+import convertFilter from './convertFilter';
+
+/** Logic formerly in viz.py's process_query_filters */
+export default function processFilters(formData: QueryFormData): Partial<QueryFormData> {
+  // Split adhoc_filters into four fields according to
+  // (1) clause (WHERE or HAVING)
+  // (2) expressionType
+  //     2.1 SIMPLE (subject + operator + comparator)
+  //     2.2 SQL (freeform SQL expression))
+  const { adhoc_filters = [], extras = {}, filters = [], where } = formData;
+  const simpleWhere: QueryObjectFilterClause[] = filters;
+
+  const simpleHaving: QueryObjectFilterClause[] = [];
+  const freeformWhere: string[] = [];
+  if (where) freeformWhere.push(where);
+  const freeformHaving: string[] = [];
+
+  adhoc_filters.forEach(filter => {
+    const { clause } = filter;
+    if (isSimpleAdhocFilter(filter)) {
+      const filterClause = convertFilter(filter);
+      if (clause === 'WHERE') {
+        simpleWhere.push(filterClause);
+      } else {
+        simpleHaving.push(filterClause);
+      }
+    } else {
+      const { sqlExpression } = filter;
+      if (clause === 'WHERE') {
+        freeformWhere.push(sqlExpression);
+      } else {
+        freeformHaving.push(sqlExpression);
+      }
+    }
+  });
+
+  // some filter-related fields need to go in `extras`
+  extras.having = freeformHaving.map(exp => `(${exp})`).join(' AND ');
+  extras.having_druid = simpleHaving;
+  extras.where = freeformWhere.map(exp => `(${exp})`).join(' AND ');
+
+  return {
+    filters: simpleWhere,
+    extras,
+  };
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/AnnotationLayer.ts b/superset-frontend/packages/superset-ui-core/src/query/types/AnnotationLayer.ts
new file mode 100644
index 0000000..9a69f4a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/AnnotationLayer.ts
@@ -0,0 +1,163 @@
+/* eslint camelcase: 0 */
+import { DataRecord } from './QueryResponse';
+
+export enum AnnotationType {
+  Event = 'EVENT',
+  Formula = 'FORMULA',
+  Interval = 'INTERVAL',
+  Timeseries = 'TIME_SERIES',
+}
+
+export enum AnnotationSourceType {
+  Line = 'line',
+  Native = 'NATIVE',
+  Table = 'table',
+  Undefined = '',
+}
+
+export enum AnnotationOpacity {
+  High = 'opacityHigh',
+  Low = 'opacityLow',
+  Medium = 'opacityMedium',
+  Undefined = '',
+}
+
+export enum AnnotationStyle {
+  Dashed = 'dashed',
+  Dotted = 'dotted',
+  Solid = 'solid',
+  LongDashed = 'longDashed',
+}
+
+type BaseAnnotationLayer = {
+  color?: string | null;
+  name: string;
+  opacity?: AnnotationOpacity;
+  show: boolean;
+  style: AnnotationStyle;
+  width?: number;
+};
+
+type AnnotationOverrides = {
+  granularity?: string | null;
+  time_grain_sqla?: string | null;
+  time_range?: string | null;
+  time_shift?: string | null;
+};
+
+type LineSourceAnnotationLayer = {
+  hideLine?: boolean;
+  overrides?: AnnotationOverrides;
+  sourceType: AnnotationSourceType.Line;
+  titleColumn?: string;
+  // viz id
+  value: number;
+};
+
+type NativeSourceAnnotationLayer = {
+  sourceType: AnnotationSourceType.Native;
+  // annotation id
+  value: number;
+};
+
+type TableSourceAnnotationLayer = {
+  descriptionColumns?: string[];
+  timeColumn?: string;
+  intervalEndColumn?: string;
+  overrides?: AnnotationOverrides;
+  sourceType: AnnotationSourceType.Table;
+  titleColumn?: string;
+  // viz id
+  value: number;
+};
+
+export type EventAnnotationLayer = BaseAnnotationLayer &
+  (TableSourceAnnotationLayer | NativeSourceAnnotationLayer) & {
+    annotationType: AnnotationType.Event;
+  };
+
+export type IntervalAnnotationLayer = BaseAnnotationLayer &
+  (TableSourceAnnotationLayer | NativeSourceAnnotationLayer) & {
+    annotationType: AnnotationType.Interval;
+  };
+
+export type TableAnnotationLayer = BaseAnnotationLayer &
+  TableSourceAnnotationLayer & {
+    annotationType: AnnotationType.Event | AnnotationType.Interval;
+  };
+
+export type FormulaAnnotationLayer = BaseAnnotationLayer & {
+  annotationType: AnnotationType.Formula;
+  // the mathjs parseable formula
+  sourceType?: AnnotationSourceType.Undefined;
+  value: string;
+};
+
+export type TimeseriesAnnotationLayer = BaseAnnotationLayer &
+  LineSourceAnnotationLayer & {
+    annotationType: AnnotationType.Timeseries;
+    showMarkers?: boolean;
+    value: number;
+  };
+
+export type AnnotationLayer =
+  | EventAnnotationLayer
+  | IntervalAnnotationLayer
+  | FormulaAnnotationLayer
+  | TimeseriesAnnotationLayer;
+
+export function isFormulaAnnotationLayer(layer: AnnotationLayer): layer is FormulaAnnotationLayer {
+  return layer.annotationType === AnnotationType.Formula;
+}
+
+export function isEventAnnotationLayer(layer: AnnotationLayer): layer is EventAnnotationLayer {
+  return layer.annotationType === AnnotationType.Event;
+}
+
+export function isIntervalAnnotationLayer(
+  layer: AnnotationLayer,
+): layer is IntervalAnnotationLayer {
+  return layer.annotationType === AnnotationType.Interval;
+}
+
+export function isTimeseriesAnnotationLayer(
+  layer: AnnotationLayer,
+): layer is TimeseriesAnnotationLayer {
+  return layer.annotationType === AnnotationType.Timeseries;
+}
+
+export function isTableAnnotationLayer(layer: AnnotationLayer): layer is TableAnnotationLayer {
+  return layer.sourceType === AnnotationSourceType.Table;
+}
+
+export type RecordAnnotationResult = {
+  columns: string[];
+  records: DataRecord[];
+};
+
+export type TimeseriesAnnotationResult = [
+  { key: string; values: { x: string | number; y?: number }[] },
+];
+
+export type AnnotationResult = RecordAnnotationResult | TimeseriesAnnotationResult;
+
+export function isTimeseriesAnnotationResult(
+  result: AnnotationResult,
+): result is TimeseriesAnnotationResult {
+  return Array.isArray(result);
+}
+
+export function isRecordAnnotationResult(
+  result: AnnotationResult,
+): result is RecordAnnotationResult {
+  return 'columns' in result && 'records' in result;
+}
+
+export type AnnotationData = { [key: string]: AnnotationResult };
+
+export type Annotation = {
+  descriptions?: string[];
+  intervalEnd?: string;
+  time?: string;
+  title?: string;
+};
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/Column.ts b/superset-frontend/packages/superset-ui-core/src/query/types/Column.ts
new file mode 100644
index 0000000..05f3c3c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/Column.ts
@@ -0,0 +1,45 @@
+/* eslint-disable camelcase */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export enum ColumnType {
+  DOUBLE = 'DOUBLE',
+  FLOAT = 'FLOAT',
+  INT = 'INT',
+  BIGINT = 'BIGINT',
+  LONG = 'LONG',
+  REAL = 'REAL',
+  NUMERIC = 'NUMERIC',
+  DECIMAL = 'DECIMAL',
+  MONEY = 'MONEY',
+  DATE = 'DATE',
+  TIME = 'TIME',
+  DATETIME = 'DATETIME',
+  VARCHAR = 'VARCHAR',
+  STRING = 'STRING',
+  CHAR = 'CHAR',
+}
+
+/**
+ * Column information defined in datasource.
+ */
+export interface Column {
+  id: number;
+  type: ColumnType;
+  columnName: string;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/Datasource.ts b/superset-frontend/packages/superset-ui-core/src/query/types/Datasource.ts
new file mode 100644
index 0000000..69ff9bf
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/Datasource.ts
@@ -0,0 +1,44 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { Column } from './Column';
+import { Metric } from './Metric';
+
+export enum DatasourceType {
+  Table = 'table',
+  Druid = 'druid',
+}
+
+/**
+ * Datasource metadata.
+ */
+export interface Datasource {
+  id: number;
+  name: string;
+  type: DatasourceType;
+  columns: Column[];
+  metrics: Metric[];
+  description?: string;
+  // key is column names (labels)
+  columnFormats?: {
+    [key: string]: string;
+  };
+  verboseMap?: {
+    [key: string]: string;
+  };
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/Filter.ts b/superset-frontend/packages/superset-ui-core/src/query/types/Filter.ts
new file mode 100644
index 0000000..8d800c4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/Filter.ts
@@ -0,0 +1,58 @@
+import {
+  UnaryOperator,
+  BinaryOperator,
+  SetOperator,
+  isUnaryOperator,
+  isBinaryOperator,
+  isSetOperator,
+} from './Operator';
+
+interface BaseSimpleAdhocFilter {
+  expressionType: 'SIMPLE';
+  clause: 'WHERE' | 'HAVING';
+  subject: string;
+}
+
+export type UnaryAdhocFilter = BaseSimpleAdhocFilter & {
+  operator: UnaryOperator;
+};
+
+export type BinaryAdhocFilter = BaseSimpleAdhocFilter & {
+  operator: BinaryOperator;
+  comparator: string;
+};
+
+export type SetAdhocFilter = BaseSimpleAdhocFilter & {
+  operator: SetOperator;
+  comparator: string[];
+};
+
+export type SimpleAdhocFilter = UnaryAdhocFilter | BinaryAdhocFilter | SetAdhocFilter;
+
+export interface FreeFormAdhocFilter {
+  expressionType: 'SQL';
+  clause: 'WHERE' | 'HAVING';
+  sqlExpression: string;
+}
+
+export type AdhocFilter = SimpleAdhocFilter | FreeFormAdhocFilter;
+
+//---------------------------------------------------
+// Type guards
+//---------------------------------------------------
+
+export function isSimpleAdhocFilter(filter: AdhocFilter): filter is SimpleAdhocFilter {
+  return filter.expressionType === 'SIMPLE';
+}
+
+export function isUnaryAdhocFilter(filter: SimpleAdhocFilter): filter is UnaryAdhocFilter {
+  return isUnaryOperator(filter.operator);
+}
+
+export function isBinaryAdhocFilter(filter: SimpleAdhocFilter): filter is BinaryAdhocFilter {
+  return isBinaryOperator(filter.operator);
+}
+
+export function isSetAdhocFilter(filter: SimpleAdhocFilter): filter is SetAdhocFilter {
+  return isSetOperator(filter.operator);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/Metric.ts b/superset-frontend/packages/superset-ui-core/src/query/types/Metric.ts
new file mode 100644
index 0000000..d543be4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/Metric.ts
@@ -0,0 +1,62 @@
+/* eslint-disable camelcase */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { Maybe } from '../../types';
+import { Column } from './Column';
+
+export type Aggregate = 'AVG' | 'COUNT' | 'COUNT_DISTINCT' | 'MAX' | 'MIN' | 'SUM';
+
+export interface AdhocMetricBase {
+  label?: string;
+  optionName?: string;
+}
+
+export interface AdhocMetricSimple extends AdhocMetricBase {
+  expressionType: 'SIMPLE';
+  column: Column;
+  aggregate: Aggregate;
+}
+
+export interface AdhocMetricSQL extends AdhocMetricBase {
+  expressionType: 'SQL';
+  sqlExpression: string;
+}
+
+export type AdhocMetric = AdhocMetricSimple | AdhocMetricSQL;
+
+/**
+ * Select a predefined metric by its `metric_name`.
+ */
+export type SavedMetric = string;
+
+/**
+ * Metric definition stored in datasource metadata.
+ */
+export interface Metric {
+  id: number;
+  certification_details?: Maybe<string>;
+  certified_by?: Maybe<string>;
+  d3format?: Maybe<string>;
+  description?: Maybe<string>;
+  expression: Maybe<string>;
+  is_certified?: boolean;
+  metric_name: string;
+  verbose_name?: string;
+  warning_text?: Maybe<string>;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/Operator.ts b/superset-frontend/packages/superset-ui-core/src/query/types/Operator.ts
new file mode 100644
index 0000000..53d81dd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/Operator.ts
@@ -0,0 +1,43 @@
+/** List of operators that do not require another operand */
+const UNARY_OPERATORS = ['IS NOT NULL', 'IS NULL'] as const;
+
+/** List of operators that require another operand that is a single value */
+const BINARY_OPERATORS = ['==', '!=', '>', '<', '>=', '<=', 'LIKE', 'REGEX'] as const;
+
+/** List of operators that require another operand that is a set */
+const SET_OPERATORS = ['IN', 'NOT IN'] as const;
+
+//---------------------------------------------------
+// Derived types
+//---------------------------------------------------
+
+/** An operator that does not require another operand */
+export type UnaryOperator = typeof UNARY_OPERATORS[number];
+
+/** An operator that requires another operand that is a single value */
+export type BinaryOperator = typeof BINARY_OPERATORS[number];
+
+/** An operator that require another operand that is a set */
+export type SetOperator = typeof SET_OPERATORS[number];
+
+//---------------------------------------------------
+// Type guards
+//---------------------------------------------------
+
+const unaryOperatorSet = new Set<string>(UNARY_OPERATORS);
+
+export function isUnaryOperator(operator: string): operator is UnaryOperator {
+  return unaryOperatorSet.has(operator);
+}
+
+const binaryOperatorSet = new Set<string>(BINARY_OPERATORS);
+
+export function isBinaryOperator(operator: string): operator is BinaryOperator {
+  return binaryOperatorSet.has(operator);
+}
+
+const setOperatorSet = new Set<string>(SET_OPERATORS);
+
+export function isSetOperator(operator: string): operator is SetOperator {
+  return setOperatorSet.has(operator);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/PostProcessing.ts b/superset-frontend/packages/superset-ui-core/src/query/types/PostProcessing.ts
new file mode 100644
index 0000000..76b0419
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/PostProcessing.ts
@@ -0,0 +1,118 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { JsonObject } from '../../connection';
+import { TimeGranularity } from '../../time-format';
+
+export type NumpyFunction =
+  | 'average'
+  | 'argmin'
+  | 'argmax'
+  | 'count'
+  | 'count_nonzero'
+  | 'cumsum'
+  | 'cumprod'
+  | 'max'
+  | 'mean'
+  | 'median'
+  | 'nansum'
+  | 'nanmin'
+  | 'nanmax'
+  | 'nanmean'
+  | 'nanmedian'
+  | 'nanpercentile'
+  | 'min'
+  | 'percentile'
+  | 'prod'
+  | 'product'
+  | 'std'
+  | 'sum'
+  | 'var';
+
+interface Aggregates {
+  /**
+   * The name of the generated aggregate column.
+   */
+  [colname: string]: {
+    operator: NumpyFunction;
+    /**
+     * the name of the column to generate aggrates from.
+     */
+    column?: string;
+    options?: JsonObject;
+  };
+}
+
+export interface PostProcessingAggregation {
+  operation: 'aggregation';
+  options: {
+    groupby: string[];
+    aggregates: Aggregates;
+  };
+}
+
+export interface PostProcessingBoxplot {
+  operation: 'boxplot';
+  options: {
+    groupby: string[];
+    metrics: string[];
+    whisker_type: 'tukey' | 'min/max' | 'percentile';
+    percentiles?: [number, number];
+  };
+}
+
+export interface PostProcessingContribution {
+  operation: 'contribution';
+  options?: {
+    orientation?: 'row' | 'column';
+    columns?: string[];
+    rename_columns?: string[];
+  };
+}
+
+export interface PostProcessingPivot {
+  operation: 'pivot';
+  options: {
+    index: string[];
+    columns: string[];
+    aggregates: Aggregates;
+  };
+}
+
+export interface PostProcessingProphet {
+  operation: 'prophet';
+  options: {
+    time_grain: TimeGranularity;
+    periods: number;
+    confidence_interval: number;
+    yearly_seasonality?: boolean | number;
+    weekly_seasonality?: boolean | number;
+    daily_seasonality?: boolean | number;
+  };
+}
+
+/**
+ * Parameters for chart data postprocessing.
+ * See superset/utils/pandas_processing.py.
+ */
+export type PostProcessingRule =
+  | PostProcessingAggregation
+  | PostProcessingBoxplot
+  | PostProcessingContribution
+  | PostProcessingPivot
+  | PostProcessingProphet;
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/Query.ts b/superset-frontend/packages/superset-ui-core/src/query/types/Query.ts
new file mode 100644
index 0000000..17e6d07
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/Query.ts
@@ -0,0 +1,135 @@
+/* eslint camelcase: 0 */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { DatasourceType } from './Datasource';
+import { BinaryOperator, SetOperator, UnaryOperator } from './Operator';
+import { AppliedTimeExtras, TimeRange } from './Time';
+import { AnnotationLayer } from './AnnotationLayer';
+import { QueryFields, QueryFormMetric } from './QueryFormData';
+import { Maybe } from '../../types';
+import { PostProcessingRule } from './PostProcessing';
+
+export type QueryObjectFilterClause = {
+  col: string;
+} & (
+  | {
+      op: BinaryOperator;
+      val: string | number | boolean;
+    }
+  | {
+      op: SetOperator;
+      val: (string | number | boolean)[];
+    }
+  | {
+      op: UnaryOperator;
+    }
+);
+
+export type QueryObjectExtras = Partial<{
+  /** HAVING condition for Druid */
+  having_druid?: string;
+  druid_time_origin?: string;
+  /** HAVING condition for SQLAlchemy */
+  having?: string;
+  relative_start?: string;
+  relative_end?: string;
+  time_grain_sqla?: string;
+  time_range_endpoints?: string[];
+  /** WHERE condition */
+  where?: string;
+}>;
+
+export type ResidualQueryObjectData = {
+  [key: string]: unknown;
+};
+
+/**
+ * Query object directly compatible with the new chart data API.
+ * A stricter version of query form data.
+ *
+ * All information should be related to generating database queries. Config values
+ * for client-side processing and chart rendering should happen in `buildQuery`
+ * and `transformProps`.
+ */
+export interface QueryObject extends QueryFields, TimeRange, ResidualQueryObjectData {
+  /**
+   * Definition for annotation layers.
+   */
+  annotation_layers?: AnnotationLayer[];
+
+  /** Time filters that have been applied to the query object */
+  applied_time_extras?: AppliedTimeExtras;
+
+  /**
+   * Extra form data. Current stores information about time granularity, may be
+   * cleaned up in the future.
+   */
+  extras?: QueryObjectExtras;
+
+  /** SIMPLE where filters */
+  filters?: QueryObjectFilterClause[];
+
+  /** Time column. */
+  granularity?: string;
+
+  /** If set, will group by timestamp */
+  is_timeseries?: boolean;
+
+  /** Free-form HAVING SQL, multiple clauses are concatenated by AND */
+  having?: string;
+
+  /** SIMPLE having filters */
+  having_filters?: QueryObjectFilterClause[];
+
+  post_processing?: (PostProcessingRule | undefined)[];
+
+  /** Maximum numbers of rows to return */
+  row_limit?: number;
+
+  /** Number of rows to skip */
+  row_offset?: number;
+
+  /** Maximum number of series */
+  timeseries_limit?: number;
+
+  /** The metric used to sort the returned result. */
+  timeseries_limit_metric?: Maybe<QueryFormMetric>;
+
+  /** Direction to ordered by */
+  order_desc?: boolean;
+
+  url_params?: Record<string, string>;
+
+  /** Free-form WHERE SQL: multiple clauses are concatenated by AND */
+  where?: string;
+}
+
+export interface QueryContext {
+  datasource: {
+    id: number;
+    type: DatasourceType;
+  };
+  /** Force refresh of all queries */
+  force: boolean;
+  /** Type of result to return for queries */
+  result_type: string;
+  /** Response format */
+  result_format: string;
+  queries: QueryObject[];
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/QueryFormData.ts b/superset-frontend/packages/superset-ui-core/src/query/types/QueryFormData.ts
new file mode 100644
index 0000000..a5c569a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/QueryFormData.ts
@@ -0,0 +1,177 @@
+/* eslint-disable camelcase */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/**
+ * Types for the final QueryContext sent to /api/v1/chart/data.
+ */
+import { AdhocMetric, SavedMetric } from './Metric';
+import { AdhocFilter } from './Filter';
+import { BinaryOperator, SetOperator } from './Operator';
+import { AnnotationLayer } from './AnnotationLayer';
+import { QueryObject } from './Query';
+import { TimeRange, TimeRangeEndpoints } from './Time';
+import { TimeGranularity } from '../../time-format';
+
+/**
+ * Metric definition/reference in query object.
+ */
+export type QueryFormMetric = SavedMetric | AdhocMetric;
+
+/**
+ * Column selects in query object (used as dimensions in both groupby or raw
+ * query mode). Only support referring existing columns.
+ */
+export type QueryFormColumn = string;
+
+/**
+ * Order query results by columns.
+ * Format: [metric/column, is_ascending].
+ */
+export type QueryFormOrderBy = [QueryFormColumn | QueryFormMetric, boolean];
+
+export interface FormDataResidual {
+  [key: string]: any;
+}
+
+export enum QueryMode {
+  aggregate = 'aggregate',
+  raw = 'raw',
+}
+
+/**
+ * Query form fields related to SQL query and data outputs.
+ */
+export interface QueryFields {
+  columns: QueryFormColumn[];
+  metrics: QueryFormMetric[];
+  orderby: QueryFormOrderBy[];
+}
+
+/**
+ * Name of query fields.
+ */
+export type QueryField = keyof QueryFields;
+
+/**
+ * Map of arbitrary control field names to query field names
+ * (one of 'metrics' | 'columns' | 'groupby').
+ *
+ * Note that `groupby` is only added here because it is will be handled when
+ * processing aliases but will not be sent to final objects. See `extraQueryFields.ts`.
+ */
+export type QueryFieldAliases = {
+  [key: string]: QueryField | 'groupby';
+};
+
+/**
+ * Filter value for adhoc filters from dashboard FilterBox.
+ * Currently only Binary and Set filters are supported.
+ */
+export type QueryFormExtraFilter = {
+  col: string;
+} & (
+  | {
+      op: BinaryOperator;
+      val: string;
+    }
+  | {
+      op: SetOperator;
+      val: string[];
+    }
+);
+
+export type ExtraFormData = {
+  append_form_data?: Partial<QueryObject>;
+  override_form_data?: Partial<QueryObject>;
+};
+
+// Type signature for formData shared by all viz types
+// It will be gradually filled out as we build out the query object
+
+export interface BaseFormData extends TimeRange, FormDataResidual {
+  /** datasource identifier ${id}_${type} */
+  datasource: string;
+  /**
+   * visualization type
+   * - necessary if you use the plugin and want to use
+   * buildQuery function from the plugin.
+   * This must match the key used when registering the plugin.
+   * - not necessary if you do not plan to use the
+   * buildQuery function from the plugin.
+   * Can put "custom" (or any string) in this field in that case.
+   */
+  viz_type: string;
+  metrics?: QueryFormMetric[];
+  where?: string;
+  columns?: QueryFormColumn[];
+  groupby?: QueryFormColumn[];
+  all_columns?: QueryFormColumn[];
+  /** list of filters */
+  adhoc_filters?: AdhocFilter[];
+  extra_filters?: QueryFormExtraFilter[];
+  /** order descending */
+  order_desc?: boolean;
+  /** limit number of time series */
+  limit?: number;
+  /** limit number of row in the results */
+  row_limit?: string | number | null;
+  /** row offset for server side pagination */
+  row_offset?: string | number | null;
+  /** The metric used to order timeseries for limiting */
+  timeseries_limit_metric?: QueryFormColumn;
+  /** Force refresh */
+  force?: boolean;
+  result_format?: string;
+  result_type?: string;
+  time_range_endpoints?: TimeRangeEndpoints;
+  annotation_layers?: AnnotationLayer[];
+  url_params?: Record<string, string>;
+}
+
+/**
+ * Form data for SQLAlchemy based datasources.
+ */
+export interface SqlaFormData extends BaseFormData {
+  /**
+   * Name of the Time Column. Time column is optional.
+   */
+  granularity_sqla?: string;
+  time_grain_sqla?: TimeGranularity;
+  having?: string;
+}
+
+/**
+ * Form data for Druid datasources.
+ */
+export interface DruidFormData extends BaseFormData {
+  granularity: string;
+  having_druid?: string;
+  druid_time_origin?: string;
+}
+
+export type QueryFormData = DruidFormData | SqlaFormData;
+
+//---------------------------------------------------
+// Type guards
+//---------------------------------------------------
+
+export function isDruidFormData(formData: QueryFormData): formData is DruidFormData {
+  return 'granularity' in formData;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/QueryResponse.ts b/superset-frontend/packages/superset-ui-core/src/query/types/QueryResponse.ts
new file mode 100644
index 0000000..c5f2cc0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/QueryResponse.ts
@@ -0,0 +1,83 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import { TimeseriesDataRecord } from '../../chart';
+import { AnnotationData } from './AnnotationLayer';
+
+/**
+ * Generic data types, see enum of the same name in superset/utils/core.py.
+ */
+export enum GenericDataType {
+  NUMERIC = 0,
+  STRING = 1,
+  TEMPORAL = 2,
+  BOOLEAN = 3,
+}
+
+/**
+ * Primitive types for data field values.
+ */
+export type DataRecordValue = number | string | boolean | Date | null;
+
+export interface DataRecord {
+  [key: string]: DataRecordValue;
+}
+
+/**
+ * Queried data for charts. The `queries` field from `POST /chart/data`.
+ * See superset/charts/schemas.py for the class of the same name.
+ */
+export interface ChartDataResponseResult {
+  /**
+   * Data for the annotation layer.
+   */
+  annotation_data: AnnotationData[] | null;
+  cache_key: string | null;
+  cache_timeout: number | null;
+  cache_dttm: string | null;
+  /**
+   * Array of data records as dictionary
+   */
+  data: DataRecord[];
+  /**
+   * Name of each column, for retaining the order of the output columns.
+   */
+  colnames: string[];
+  /**
+   * Generic data types, based on the final output pandas dataframe.
+   */
+  coltypes: GenericDataType[];
+  error: string | null;
+  is_cached: boolean;
+  query: string;
+  rowcount: number;
+  stacktrace: string | null;
+  status: 'stopped' | 'failed' | 'pending' | 'running' | 'scheduled' | 'success' | 'timed_out';
+}
+
+export interface TimeseriesChartDataResponseResult extends ChartDataResponseResult {
+  data: TimeseriesDataRecord[];
+}
+
+/**
+ * Query response from /api/v1/chart/data
+ */
+export interface ChartDataResponse {
+  queries: ChartDataResponseResult[];
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/Time.ts b/superset-frontend/packages/superset-ui-core/src/query/types/Time.ts
new file mode 100644
index 0000000..a61cb59
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/Time.ts
@@ -0,0 +1,20 @@
+import { QueryObject } from './Query';
+
+export type TimeRange = {
+  /** Time range of the query [from, to] */
+  time_range?: string;
+  since?: string;
+  until?: string;
+};
+
+export type TimeColumnConfigKey =
+  | '__time_col'
+  | '__time_grain'
+  | '__time_range'
+  | '__time_origin'
+  | '__granularity';
+
+export type AppliedTimeExtras = Partial<Record<TimeColumnConfigKey, keyof QueryObject>>;
+
+export type TimeRangeEndpoint = 'unknown' | 'inclusive' | 'exclusive';
+export type TimeRangeEndpoints = [TimeRangeEndpoint, TimeRangeEndpoint];
diff --git a/superset-frontend/packages/superset-ui-core/src/query/types/index.ts b/superset-frontend/packages/superset-ui-core/src/query/types/index.ts
new file mode 100644
index 0000000..294732f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/query/types/index.ts
@@ -0,0 +1,27 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export * from './Datasource';
+export * from './Column';
+export * from './Filter';
+export * from './Metric';
+export * from './Operator';
+export * from './Query';
+export * from './QueryFormData';
+export * from './QueryResponse';
+export * from './Time';
diff --git a/superset-frontend/packages/superset-ui-core/src/style/index.ts b/superset-frontend/packages/superset-ui-core/src/style/index.ts
new file mode 100644
index 0000000..5e5cfe9
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/style/index.ts
@@ -0,0 +1,151 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import emotionStyled, { CreateStyled } from '@emotion/styled';
+import { useTheme as useThemeBasic } from 'emotion-theming';
+
+export { ThemeProvider, withTheme } from 'emotion-theming';
+export { css } from '@emotion/core';
+
+export function useTheme() {
+  const theme = useThemeBasic<SupersetTheme>();
+  // in the case there is no theme, useTheme returns an empty object
+  if (Object.keys(theme).length === 0 && theme.constructor === Object) {
+    throw new Error(
+      'useTheme() could not find a ThemeContext. The <ThemeProvider/> component is likely missing from the app.',
+    );
+  }
+  return theme;
+}
+
+const defaultTheme = {
+  borderRadius: 4,
+  colors: {
+    primary: {
+      base: '#20A7C9',
+      dark1: '#1A85A0',
+      dark2: '#156378',
+      light1: '#79CADE',
+      light2: '#A5DAE9',
+      light3: '#D2EDF4',
+      light4: '#E9F6F9',
+      light5: '#F3F8FA',
+    },
+    secondary: {
+      base: '#444E7C',
+      dark1: '#363E63',
+      dark2: '#282E4A',
+      dark3: '#1B1F31',
+      light1: '#8E94B0',
+      light2: '#B4B8CA',
+      light3: '#D9DBE4',
+      light4: '#ECEEF2',
+      light5: '#F5F5F8',
+    },
+    grayscale: {
+      base: '#666666',
+      dark1: '#323232',
+      dark2: '#000000',
+      light1: '#B2B2B2',
+      light2: '#E0E0E0',
+      light3: '#F0F0F0',
+      light4: '#F7F7F7',
+      light5: '#FFFFFF',
+    },
+    error: {
+      base: '#E04355',
+      dark1: '#A7323F',
+      dark2: '#6F212A',
+      light1: '#EFA1AA',
+      light2: '#FAEDEE',
+    },
+    warning: {
+      base: '#FF7F44',
+      dark1: '#BF5E33',
+      dark2: '#7F3F21',
+      light1: '#FEC0A1',
+      light2: '#FFF2EC',
+    },
+    alert: {
+      base: '#FCC700',
+      dark1: '#BC9501',
+      dark2: '#7D6300',
+      light1: '#FDE380',
+      light2: '#FEF9E6',
+    },
+    success: {
+      base: '#5AC189',
+      dark1: '#439066',
+      dark2: '#2B6144',
+      light1: '#ACE1C4',
+      light2: '#EEF8F3',
+    },
+    info: {
+      base: '#66BCFE',
+      dark1: '#4D8CBE',
+      dark2: '#315E7E',
+      light1: '#B3DEFE',
+      light2: '#EFF8FE',
+    },
+  },
+  opacity: {
+    light: '10%',
+    mediumLight: '35%',
+    mediumHeavy: '60%',
+    heavy: '80%',
+  },
+  typography: {
+    families: {
+      sansSerif: `'Inter', Helvetica, Arial`,
+      serif: `Georgia, 'Times New Roman', Times, serif`,
+      monospace: `'Fira Code', 'Courier New', monospace`,
+    },
+    weights: {
+      light: 200,
+      normal: 400,
+      bold: 700,
+    },
+    sizes: {
+      xxs: 9,
+      xs: 10,
+      s: 12,
+      m: 14,
+      l: 16,
+      xl: 21,
+      xxl: 28,
+    },
+  },
+  zIndex: {
+    aboveDashboardCharts: 10,
+    dropdown: 11,
+    max: 3000,
+  },
+  transitionTiming: 0.3,
+  gridUnit: 4,
+};
+
+export type SupersetTheme = typeof defaultTheme;
+
+export interface SupersetThemeProps {
+  theme: SupersetTheme;
+}
+
+export const styled: CreateStyled<SupersetTheme> = emotionStyled;
+export const supersetTheme = defaultTheme;
+
+export default styled;
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/README.md b/superset-frontend/packages/superset-ui-core/src/time-format/README.md
new file mode 100644
index 0000000..fba67d3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/README.md
@@ -0,0 +1,49 @@
+## @superset-ui/core/time-format
+
+Description
+
+#### Example usage
+
+```js
+import { getTimeFormatter } from '@superset-ui/core';
+const formatter = getTimeFormatter('%Y-%m-d');
+console.log(formatter(new Date()));
+```
+
+or
+
+```js
+import { formatTime } from '@superset-ui/core';
+console.log(formatTime('%Y-%m-d', new Date()));
+```
+
+It is powered by a registry to support registration of custom formatting, with fallback to
+`d3.utcFormat` or `d3.timeFormat` (if the formatId starts with `local!`)
+
+```js
+import { getTimeFormatterRegistry, formatTime, TimeFormatter } from '@superset-ui/core';
+
+getTimeFormatterRegistry().registerValue('my_format', new TimeFormatter({
+  id: 'my_format',
+  formatFunc: v => `my special format of ${utcFormat('%Y')(v)}`
+});
+
+console.log(formatTime('my_format', new Date(2018)));
+// prints 'my special format of 2018'
+```
+
+It also define constants for common d3 time formats. See
+[TimeFormats.js](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-time-format/src/TimeFormats.js).
+
+```js
+import { TimeFormats } from '@superset-ui/core';
+
+TimeFormats.DATABASE_DATETIME; // '%Y-%m-%d %H:%M:%S'
+TimeFormats.US_DATE; // '%m/%d/%Y'
+```
+
+#### API
+
+`fn(args)`
+
+- Do something
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormats.ts b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormats.ts
new file mode 100644
index 0000000..986bf93
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormats.ts
@@ -0,0 +1,19 @@
+export const LOCAL_PREFIX = 'local!';
+
+const DATABASE_DATETIME = '%Y-%m-%d %H:%M:%S';
+const DATABASE_DATETIME_REVERSE = '%d-%m-%Y %H:%M:%S';
+const US_DATE = '%m/%d/%Y';
+const INTERNATIONAL_DATE = '%d/%m/%Y';
+const DATABASE_DATE = '%Y-%m-%d';
+const TIME = '%H:%M:%S';
+
+const TimeFormats = {
+  DATABASE_DATE,
+  DATABASE_DATETIME,
+  DATABASE_DATETIME_REVERSE,
+  INTERNATIONAL_DATE,
+  TIME,
+  US_DATE,
+};
+
+export default TimeFormats;
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatsForGranularity.ts b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatsForGranularity.ts
new file mode 100644
index 0000000..7fdb07a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatsForGranularity.ts
@@ -0,0 +1,30 @@
+import TimeFormats from './TimeFormats';
+import { TimeGranularity } from './types';
+
+const { DATABASE_DATE, DATABASE_DATETIME } = TimeFormats;
+const MINUTE = '%Y-%m-%d %H:%M';
+
+/**
+ * Map time granularity to d3-format string
+ */
+const TimeFormatsForGranularity: Record<TimeGranularity, string> = {
+  [TimeGranularity.DATE]: DATABASE_DATE,
+  [TimeGranularity.SECOND]: DATABASE_DATETIME,
+  [TimeGranularity.MINUTE]: MINUTE,
+  [TimeGranularity.FIVE_MINUTES]: MINUTE,
+  [TimeGranularity.TEN_MINUTES]: MINUTE,
+  [TimeGranularity.FIFTEEN_MINUTES]: MINUTE,
+  [TimeGranularity.HALF_HOUR]: MINUTE,
+  [TimeGranularity.HOUR]: '%Y-%m-%d %H:00',
+  [TimeGranularity.DAY]: DATABASE_DATE,
+  [TimeGranularity.WEEK]: DATABASE_DATE,
+  [TimeGranularity.MONTH]: '%b %Y',
+  [TimeGranularity.QUARTER]: '%Y Q%q',
+  [TimeGranularity.YEAR]: '%Y',
+  [TimeGranularity.WEEK_STARTING_SUNDAY]: DATABASE_DATE,
+  [TimeGranularity.WEEK_STARTING_MONDAY]: DATABASE_DATE,
+  [TimeGranularity.WEEK_ENDING_SATURDAY]: DATABASE_DATE,
+  [TimeGranularity.WEEK_ENDING_SUNDAY]: DATABASE_DATE,
+};
+
+export default TimeFormatsForGranularity;
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatter.ts b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatter.ts
new file mode 100644
index 0000000..3a2a246
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatter.ts
@@ -0,0 +1,76 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ExtensibleFunction } from '../models';
+import { isRequired } from '../utils';
+import { TimeFormatFunction } from './types';
+import stringifyTimeInput from './utils/stringifyTimeInput';
+
+export const PREVIEW_TIME = new Date(Date.UTC(2017, 1, 14, 11, 22, 33));
+
+// Use type augmentation to indicate that
+// an instance of TimeFormatter is also a function
+interface TimeFormatter {
+  (value: Date | number | null | undefined): string;
+}
+
+class TimeFormatter extends ExtensibleFunction {
+  id: string;
+
+  label: string;
+
+  description: string;
+
+  formatFunc: TimeFormatFunction;
+
+  useLocalTime: boolean;
+
+  constructor(config: {
+    id: string;
+    label?: string;
+    description?: string;
+    formatFunc: TimeFormatFunction;
+    useLocalTime?: boolean;
+  }) {
+    super((value: Date | number | null | undefined) => this.format(value));
+
+    const {
+      id = isRequired('config.id'),
+      label,
+      description = '',
+      formatFunc = isRequired('config.formatFunc'),
+      useLocalTime = false,
+    } = config;
+
+    this.id = id;
+    this.label = label ?? id;
+    this.description = description;
+    this.formatFunc = formatFunc;
+    this.useLocalTime = useLocalTime;
+  }
+
+  format(value: Date | number | null | undefined) {
+    return stringifyTimeInput(value, time => this.formatFunc(time));
+  }
+
+  preview(value: Date = PREVIEW_TIME) {
+    return `${value.toUTCString()} => ${this.format(value)}`;
+  }
+}
+
+export default TimeFormatter;
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatterRegistry.ts b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatterRegistry.ts
new file mode 100644
index 0000000..dae16d6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatterRegistry.ts
@@ -0,0 +1,57 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { RegistryWithDefaultKey, OverwritePolicy } from '../models';
+import TimeFormats, { LOCAL_PREFIX } from './TimeFormats';
+import createD3TimeFormatter from './factories/createD3TimeFormatter';
+import TimeFormatter from './TimeFormatter';
+
+export default class TimeFormatterRegistry extends RegistryWithDefaultKey<
+  TimeFormatter,
+  TimeFormatter
+> {
+  constructor() {
+    super({
+      initialDefaultKey: TimeFormats.DATABASE_DATETIME,
+      name: 'TimeFormatter',
+      overwritePolicy: OverwritePolicy.WARN,
+    });
+  }
+
+  get(format?: string) {
+    const targetFormat = `${
+      format === null || typeof format === 'undefined' || format === '' ? this.defaultKey : format
+    }`.trim();
+
+    if (this.has(targetFormat)) {
+      return super.get(targetFormat) as TimeFormatter;
+    }
+
+    // Create new formatter if does not exist
+    const useLocalTime = targetFormat.startsWith(LOCAL_PREFIX);
+    const formatString = targetFormat.replace(LOCAL_PREFIX, '');
+    const formatter = createD3TimeFormatter({ formatString, useLocalTime });
+    this.registerValue(targetFormat, formatter);
+
+    return formatter;
+  }
+
+  format(format: string | undefined, value: Date | null | undefined): string {
+    return this.get(format)(value);
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatterRegistrySingleton.ts b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatterRegistrySingleton.ts
new file mode 100644
index 0000000..a79e440
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormatterRegistrySingleton.ts
@@ -0,0 +1,81 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { makeSingleton } from '../utils';
+import TimeFormatterRegistry from './TimeFormatterRegistry';
+import TimeFormatter from './TimeFormatter';
+import TimeFormatsForGranularity from './TimeFormatsForGranularity';
+import { LOCAL_PREFIX } from './TimeFormats';
+import { TimeGranularity } from './types';
+import createTimeRangeFromGranularity from './utils/createTimeRangeFromGranularity';
+import TimeRangeFormatter from './TimeRangeFormatter';
+
+const getInstance = makeSingleton(TimeFormatterRegistry);
+
+export default getInstance;
+
+export function getTimeRangeFormatter(formatId?: string) {
+  return new TimeRangeFormatter({
+    id: formatId || 'undefined',
+    formatFunc: (range: (Date | number | null | undefined)[]) => {
+      const format = getInstance().get(formatId);
+      const [start, end] = range.map(value => format(value));
+      return start === end ? start : [start, end].join(' — ');
+    },
+    useLocalTime: formatId?.startsWith(LOCAL_PREFIX),
+  });
+}
+
+export function formatTimeRange(formatId: string | undefined, range: (Date | null | undefined)[]) {
+  return getTimeRangeFormatter(formatId)(range);
+}
+
+export function getTimeFormatter(formatId?: string, granularity?: TimeGranularity) {
+  if (granularity) {
+    const formatString = formatId || TimeFormatsForGranularity[granularity];
+    const timeRangeFormatter = getTimeRangeFormatter(formatString);
+
+    return new TimeFormatter({
+      id: [formatString, granularity].join('/'),
+      formatFunc: (value: Date) =>
+        timeRangeFormatter.format(
+          createTimeRangeFromGranularity(value, granularity, timeRangeFormatter.useLocalTime),
+        ),
+      useLocalTime: timeRangeFormatter.useLocalTime,
+    });
+  }
+
+  return getInstance().get(formatId);
+}
+
+/**
+ * Syntactic sugar for backward compatibility
+ * TODO: Deprecate this in the next breaking change.
+ * @param granularity
+ */
+export function getTimeFormatterForGranularity(granularity?: TimeGranularity) {
+  return getTimeFormatter(undefined, granularity);
+}
+
+export function formatTime(
+  formatId: string | undefined,
+  value: Date | null | undefined,
+  granularity?: TimeGranularity,
+) {
+  return getTimeFormatter(formatId, granularity)(value);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/TimeRangeFormatter.ts b/superset-frontend/packages/superset-ui-core/src/time-format/TimeRangeFormatter.ts
new file mode 100644
index 0000000..36f53bd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/TimeRangeFormatter.ts
@@ -0,0 +1,62 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ExtensibleFunction } from '../models';
+import { TimeRangeFormatFunction } from './types';
+
+// Use type augmentation to indicate that
+// an instance of TimeFormatter is also a function
+interface TimeRangeFormatter {
+  (value: (Date | number | null | undefined)[]): string;
+}
+
+class TimeRangeFormatter extends ExtensibleFunction {
+  id: string;
+
+  label: string;
+
+  description: string;
+
+  formatFunc: TimeRangeFormatFunction;
+
+  useLocalTime: boolean;
+
+  constructor(config: {
+    id: string;
+    label?: string;
+    description?: string;
+    formatFunc: TimeRangeFormatFunction;
+    useLocalTime?: boolean;
+  }) {
+    super((value: (Date | number | null | undefined)[]) => this.format(value));
+
+    const { id, label, description = '', formatFunc, useLocalTime = false } = config;
+
+    this.id = id;
+    this.label = label ?? id;
+    this.description = description;
+    this.formatFunc = formatFunc;
+    this.useLocalTime = useLocalTime;
+  }
+
+  format(values: (Date | number | null | undefined)[]) {
+    return this.formatFunc(values);
+  }
+}
+
+export default TimeRangeFormatter;
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/factories/createD3TimeFormatter.ts b/superset-frontend/packages/superset-ui-core/src/time-format/factories/createD3TimeFormatter.ts
new file mode 100644
index 0000000..e8cbe42
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/factories/createD3TimeFormatter.ts
@@ -0,0 +1,59 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { utcFormat, timeFormat, timeFormatLocale, TimeLocaleDefinition } from 'd3-time-format';
+import { isRequired } from '../../utils';
+import TimeFormatter from '../TimeFormatter';
+import { LOCAL_PREFIX } from '../TimeFormats';
+
+export default function createD3TimeFormatter(config: {
+  description?: string;
+  formatString: string;
+  label?: string;
+  locale?: TimeLocaleDefinition;
+  useLocalTime?: boolean;
+}) {
+  const {
+    description,
+    formatString = isRequired('formatString'),
+    label,
+    locale,
+    useLocalTime = false,
+  } = config;
+
+  const id = useLocalTime ? `${LOCAL_PREFIX}${formatString}` : formatString;
+  let formatFunc;
+
+  if (typeof locale === 'undefined') {
+    const format = useLocalTime ? timeFormat : utcFormat;
+    formatFunc = format(formatString);
+  } else {
+    const localeObject = timeFormatLocale(locale);
+    formatFunc = useLocalTime
+      ? localeObject.format(formatString)
+      : localeObject.utcFormat(formatString);
+  }
+
+  return new TimeFormatter({
+    description,
+    formatFunc,
+    id,
+    label,
+    useLocalTime,
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/factories/createMultiFormatter.ts b/superset-frontend/packages/superset-ui-core/src/time-format/factories/createMultiFormatter.ts
new file mode 100644
index 0000000..2a339d4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/factories/createMultiFormatter.ts
@@ -0,0 +1,91 @@
+import { utcFormat, timeFormat } from 'd3-time-format';
+import { utcUtils, localTimeUtils } from '../utils/d3Time';
+import TimeFormatter from '../TimeFormatter';
+
+type FormatsByStep = Partial<{
+  millisecond: string;
+  second: string;
+  minute: string;
+  hour: string;
+  day: string;
+  week: string;
+  month: string;
+  year: string;
+}>;
+
+export default function createMultiFormatter({
+  id,
+  label,
+  description,
+  formats = {},
+  useLocalTime = false,
+}: {
+  id: string;
+  label?: string;
+  description?: string;
+  formats?: FormatsByStep;
+  useLocalTime?: boolean;
+}) {
+  const {
+    millisecond = '.%L',
+    second = ':%S',
+    minute = '%I:%M',
+    hour = '%I %p',
+    day = '%a %d',
+    week = '%b %d',
+    month = '%B',
+    year = '%Y',
+  } = formats;
+
+  const format = useLocalTime ? timeFormat : utcFormat;
+
+  const formatMillisecond = format(millisecond);
+  const formatSecond = format(second);
+  const formatMinute = format(minute);
+  const formatHour = format(hour);
+  const formatDay = format(day);
+  const formatFirstDayOfWeek = format(week);
+  const formatMonth = format(month);
+  const formatYear = format(year);
+
+  const {
+    hasMillisecond,
+    hasSecond,
+    hasMinute,
+    hasHour,
+    isNotFirstDayOfMonth,
+    isNotFirstDayOfWeek,
+    isNotFirstMonth,
+  } = useLocalTime ? localTimeUtils : utcUtils;
+
+  function multiFormatFunc(date: Date) {
+    if (hasMillisecond(date)) {
+      return formatMillisecond;
+    }
+    if (hasSecond(date)) {
+      return formatSecond;
+    }
+    if (hasMinute(date)) {
+      return formatMinute;
+    }
+    if (hasHour(date)) {
+      return formatHour;
+    }
+    if (isNotFirstDayOfMonth(date)) {
+      return isNotFirstDayOfWeek(date) ? formatDay : formatFirstDayOfWeek;
+    }
+    if (isNotFirstMonth(date)) {
+      return formatMonth;
+    }
+
+    return formatYear;
+  }
+
+  return new TimeFormatter({
+    description,
+    formatFunc: (date: Date) => multiFormatFunc(date)(date),
+    id,
+    label,
+    useLocalTime,
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/formatters/smartDate.ts b/superset-frontend/packages/superset-ui-core/src/time-format/formatters/smartDate.ts
new file mode 100644
index 0000000..2199d49
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/formatters/smartDate.ts
@@ -0,0 +1,18 @@
+import createMultiFormatter from '../factories/createMultiFormatter';
+
+const smartDateFormatter = createMultiFormatter({
+  id: 'smart_date',
+  label: 'Adaptative Formatting',
+  formats: {
+    millisecond: '.%Lms',
+    second: ':%Ss',
+    minute: '%I:%M',
+    hour: '%I %p',
+    day: '%a %d',
+    week: '%b %d',
+    month: '%B',
+    year: '%Y',
+  },
+});
+
+export default smartDateFormatter;
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/formatters/smartDateVerbose.ts b/superset-frontend/packages/superset-ui-core/src/time-format/formatters/smartDateVerbose.ts
new file mode 100644
index 0000000..08de934
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/formatters/smartDateVerbose.ts
@@ -0,0 +1,18 @@
+import createMultiFormatter from '../factories/createMultiFormatter';
+
+const smartDateFormatter = createMultiFormatter({
+  id: 'smart_date_verbose',
+  label: 'Verbose Adaptative Formatting',
+  formats: {
+    millisecond: '.%L',
+    second: '%a %b %d, %I:%M:%S %p',
+    minute: '%a %b %d, %I:%M %p',
+    hour: '%a %b %d, %I %p',
+    day: '%a %b %-e',
+    week: '%a %b %-e',
+    month: '%b %Y',
+    year: '%Y',
+  },
+});
+
+export default smartDateFormatter;
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/index.ts b/superset-frontend/packages/superset-ui-core/src/time-format/index.ts
new file mode 100644
index 0000000..fcb39df
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/index.ts
@@ -0,0 +1,19 @@
+export { default as TimeFormats, LOCAL_PREFIX } from './TimeFormats';
+export { default as TimeFormatter, PREVIEW_TIME } from './TimeFormatter';
+
+export {
+  default as getTimeFormatterRegistry,
+  formatTime,
+  formatTimeRange,
+  getTimeFormatter,
+  getTimeFormatterForGranularity,
+  getTimeRangeFormatter,
+} from './TimeFormatterRegistrySingleton';
+
+export { default as createD3TimeFormatter } from './factories/createD3TimeFormatter';
+export { default as createMultiFormatter } from './factories/createMultiFormatter';
+
+export { default as smartDateFormatter } from './formatters/smartDate';
+export { default as smartDateVerboseFormatter } from './formatters/smartDateVerbose';
+
+export * from './types';
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/types.ts b/superset-frontend/packages/superset-ui-core/src/time-format/types.ts
new file mode 100644
index 0000000..866baa5
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/types.ts
@@ -0,0 +1,30 @@
+export type TimeFormatFunction = (value: Date) => string;
+
+export type TimeRangeFormatFunction = (values: (Date | number | undefined | null)[]) => string;
+
+/**
+ * search for `builtin_time_grains` in incubator-superset/superset/db_engine_specs/base.py
+ */
+export const TimeGranularity = {
+  DATE: 'date',
+  SECOND: 'PT1S',
+  MINUTE: 'PT1M',
+  FIVE_MINUTES: 'PT5M',
+  TEN_MINUTES: 'PT10M',
+  FIFTEEN_MINUTES: 'PT15M',
+  HALF_HOUR: 'PT0.5H',
+  HOUR: 'PT1H',
+  DAY: 'P1D',
+  WEEK: 'P1W',
+  WEEK_STARTING_SUNDAY: '1969-12-28T00:00:00Z/P1W',
+  WEEK_STARTING_MONDAY: '1969-12-29T00:00:00Z/P1W',
+  WEEK_ENDING_SATURDAY: 'P1W/1970-01-03T00:00:00Z',
+  WEEK_ENDING_SUNDAY: 'P1W/1970-01-04T00:00:00Z',
+  MONTH: 'P1M',
+  QUARTER: 'P0.25Y',
+  YEAR: 'P1Y',
+} as const;
+
+type ValueOf<T> = T[keyof T];
+
+export type TimeGranularity = ValueOf<typeof TimeGranularity>;
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/utils/createTime.ts b/superset-frontend/packages/superset-ui-core/src/time-format/utils/createTime.ts
new file mode 100644
index 0000000..a1af899
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/utils/createTime.ts
@@ -0,0 +1,13 @@
+export default function createTime(
+  mode: 'local' | 'utc',
+  year: number,
+  month = 0,
+  date = 1,
+  hours = 0,
+  minutes = 0,
+  seconds = 0,
+  milliseconds = 0,
+): Date {
+  const args = [year, month, date, hours, minutes, seconds, milliseconds] as const;
+  return mode === 'local' ? new Date(...args) : new Date(Date.UTC(...args));
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/utils/createTimeRangeFromGranularity.ts b/superset-frontend/packages/superset-ui-core/src/time-format/utils/createTimeRangeFromGranularity.ts
new file mode 100644
index 0000000..8a4ceaa
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/utils/createTimeRangeFromGranularity.ts
@@ -0,0 +1,81 @@
+import { TimeGranularity } from '../types';
+import createTime from './createTime';
+
+const MS_IN_SECOND = 1000;
+const MS_IN_MINUTE = 60 * MS_IN_SECOND;
+const MS_IN_HOUR = 60 * MS_IN_MINUTE;
+
+function deductOneMs(time: Date) {
+  return new Date(time.getTime() - 1);
+}
+
+function computeEndTimeFromGranularity(
+  time: Date,
+  granularity: TimeGranularity,
+  useLocalTime: boolean,
+) {
+  const date = useLocalTime ? time.getDate() : time.getUTCDate();
+  const month = useLocalTime ? time.getMonth() : time.getUTCMonth();
+  const year = useLocalTime ? time.getFullYear() : time.getUTCFullYear();
+  const mode = useLocalTime ? 'local' : 'utc';
+
+  switch (granularity) {
+    case TimeGranularity.SECOND:
+      return new Date(time.getTime() + MS_IN_SECOND - 1);
+    case TimeGranularity.MINUTE:
+      return new Date(time.getTime() + MS_IN_MINUTE - 1);
+    case TimeGranularity.FIVE_MINUTES:
+      return new Date(time.getTime() + MS_IN_MINUTE * 5 - 1);
+    case TimeGranularity.TEN_MINUTES:
+      return new Date(time.getTime() + MS_IN_MINUTE * 10 - 1);
+    case TimeGranularity.FIFTEEN_MINUTES:
+      return new Date(time.getTime() + MS_IN_MINUTE * 15 - 1);
+    case TimeGranularity.HALF_HOUR:
+      return new Date(time.getTime() + MS_IN_MINUTE * 30 - 1);
+    case TimeGranularity.HOUR:
+      return new Date(time.getTime() + MS_IN_HOUR - 1);
+    // For the day granularity and above, using Date overflow is better than adding timestamp
+    // because it will also handle daylight saving.
+    case TimeGranularity.WEEK:
+    case TimeGranularity.WEEK_STARTING_SUNDAY:
+    case TimeGranularity.WEEK_STARTING_MONDAY:
+      return deductOneMs(createTime(mode, year, month, date + 7));
+    case TimeGranularity.MONTH:
+      return deductOneMs(createTime(mode, year, month + 1));
+    case TimeGranularity.QUARTER:
+      return deductOneMs(createTime(mode, year, (Math.floor(month / 3) + 1) * 3));
+    case TimeGranularity.YEAR:
+      return deductOneMs(createTime(mode, year + 1));
+    // For the WEEK_ENDING_XXX cases,
+    // currently assume "time" returned from database is supposed to be the end time
+    // (in contrast to all other granularities that the returned time is start time).
+    // However, the returned "time" is at 00:00:00.000, so have to add 23:59:59.999.
+    case TimeGranularity.WEEK_ENDING_SATURDAY:
+    case TimeGranularity.WEEK_ENDING_SUNDAY:
+    case TimeGranularity.DATE:
+    case TimeGranularity.DAY:
+    default:
+      return deductOneMs(createTime(mode, year, month, date + 1));
+  }
+}
+
+export default function createTimeRangeFromGranularity(
+  time: Date,
+  granularity: TimeGranularity,
+  useLocalTime = false,
+) {
+  const endTime = computeEndTimeFromGranularity(time, granularity, useLocalTime);
+
+  if (
+    granularity === TimeGranularity.WEEK_ENDING_SATURDAY ||
+    granularity === TimeGranularity.WEEK_ENDING_SUNDAY
+  ) {
+    const date = useLocalTime ? time.getDate() : time.getUTCDate();
+    const month = useLocalTime ? time.getMonth() : time.getUTCMonth();
+    const year = useLocalTime ? time.getFullYear() : time.getUTCFullYear();
+    const startTime = createTime(useLocalTime ? 'local' : 'utc', year, month, date - 6);
+    return [startTime, endTime];
+  }
+
+  return [time, endTime];
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/utils/d3Time.ts b/superset-frontend/packages/superset-ui-core/src/time-format/utils/d3Time.ts
new file mode 100644
index 0000000..71a3dbf
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/utils/d3Time.ts
@@ -0,0 +1,115 @@
+import {
+  timeSecond,
+  timeMinute,
+  timeHour,
+  timeDay,
+  timeWeek,
+  timeSunday,
+  timeMonday,
+  timeTuesday,
+  timeWednesday,
+  timeThursday,
+  timeFriday,
+  timeSaturday,
+  timeMonth,
+  timeYear,
+  utcSecond,
+  utcMinute,
+  utcHour,
+  utcDay,
+  utcWeek,
+  utcSunday,
+  utcMonday,
+  utcTuesday,
+  utcWednesday,
+  utcThursday,
+  utcFriday,
+  utcSaturday,
+  utcMonth,
+  utcYear,
+  CountableTimeInterval,
+} from 'd3-time';
+
+function createUtils(useLocalTime = false) {
+  let floorSecond: CountableTimeInterval;
+  let floorMinute: CountableTimeInterval;
+  let floorHour: CountableTimeInterval;
+  let floorDay: CountableTimeInterval;
+  let floorWeek: CountableTimeInterval;
+  let floorWeekStartOnSunday: CountableTimeInterval;
+  let floorWeekStartOnMonday: CountableTimeInterval;
+  let floorWeekStartOnTuesday: CountableTimeInterval;
+  let floorWeekStartOnWednesday: CountableTimeInterval;
+  let floorWeekStartOnThursday: CountableTimeInterval;
+  let floorWeekStartOnFriday: CountableTimeInterval;
+  let floorWeekStartOnSaturday: CountableTimeInterval;
+  let floorMonth: CountableTimeInterval;
+  let floorYear: CountableTimeInterval;
+  if (useLocalTime) {
+    floorSecond = timeSecond;
+    floorMinute = timeMinute;
+    floorHour = timeHour;
+    floorDay = timeDay;
+    floorWeek = timeWeek;
+    floorWeekStartOnSunday = timeSunday;
+    floorWeekStartOnMonday = timeMonday;
+    floorWeekStartOnTuesday = timeTuesday;
+    floorWeekStartOnWednesday = timeWednesday;
+    floorWeekStartOnThursday = timeThursday;
+    floorWeekStartOnFriday = timeFriday;
+    floorWeekStartOnSaturday = timeSaturday;
+    floorMonth = timeMonth;
+    floorYear = timeYear;
+  } else {
+    floorSecond = utcSecond;
+    floorMinute = utcMinute;
+    floorHour = utcHour;
+    floorDay = utcDay;
+    floorWeek = utcWeek;
+    floorWeekStartOnSunday = utcSunday;
+    floorWeekStartOnMonday = utcMonday;
+    floorWeekStartOnTuesday = utcTuesday;
+    floorWeekStartOnWednesday = utcWednesday;
+    floorWeekStartOnThursday = utcThursday;
+    floorWeekStartOnFriday = utcFriday;
+    floorWeekStartOnSaturday = utcSaturday;
+    floorMonth = utcMonth;
+    floorYear = utcYear;
+  }
+
+  return {
+    floorSecond,
+    floorMinute,
+    floorHour,
+    floorDay,
+    floorWeek,
+    floorWeekStartOnSunday,
+    floorWeekStartOnMonday,
+    floorWeekStartOnTuesday,
+    floorWeekStartOnWednesday,
+    floorWeekStartOnThursday,
+    floorWeekStartOnFriday,
+    floorWeekStartOnSaturday,
+    floorMonth,
+    floorYear,
+    hasMillisecond: (date: Date) => floorSecond(date) < date,
+    hasSecond: (date: Date) => floorMinute(date) < date,
+    hasMinute: (date: Date) => floorHour(date) < date,
+    hasHour: (date: Date) => floorDay(date) < date,
+    isNotFirstDayOfMonth: (date: Date) => floorMonth(date) < date,
+    isNotFirstDayOfWeek: (date: Date) => floorWeek(date) < date,
+    isNotFirstDayOfWeekStartOnSunday: (date: Date) => floorWeekStartOnSunday(date) < date,
+    isNotFirstDayOfWeekStartOnMonday: (date: Date) => floorWeekStartOnMonday(date) < date,
+    isNotFirstDayOfWeekStartOnTuesday: (date: Date) => floorWeekStartOnTuesday(date) < date,
+    isNotFirstDayOfWeekStartOnWednesday: (date: Date) => floorWeekStartOnWednesday(date) < date,
+    isNotFirstDayOfWeekStartOnThursday: (date: Date) => floorWeekStartOnThursday(date) < date,
+    isNotFirstDayOfWeekStartOnFriday: (date: Date) => floorWeekStartOnFriday(date) < date,
+    isNotFirstDayOfWeekStartOnSaturday: (date: Date) => floorWeekStartOnSaturday(date) < date,
+    isNotFirstMonth: (date: Date) => floorYear(date) < date,
+  };
+}
+
+const utcUtils = createUtils();
+const localTimeUtils = createUtils(true);
+
+export { utcUtils, localTimeUtils };
diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/utils/stringifyTimeInput.ts b/superset-frontend/packages/superset-ui-core/src/time-format/utils/stringifyTimeInput.ts
new file mode 100644
index 0000000..0fd7c24
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/time-format/utils/stringifyTimeInput.ts
@@ -0,0 +1,10 @@
+export default function stringifyTimeInput(
+  value: Date | number | undefined | null,
+  fn: (time: Date) => string,
+) {
+  if (value === null || value === undefined) {
+    return `${value}`;
+  }
+
+  return fn(value instanceof Date ? value : new Date(value));
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/translation/README.md b/superset-frontend/packages/superset-ui-core/src/translation/README.md
new file mode 100644
index 0000000..a09246f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/translation/README.md
@@ -0,0 +1,52 @@
+## @superset-ui/core/translation
+
+`i18n` locales and translation for Superset.
+
+### SupersetTranslation
+
+#### Example usage
+
+```js
+import { configure, t, tn } from '@superset-ui/core';
+
+configure({
+  languagePack: {...},
+});
+
+console.log(t('text to be translated'));
+console.log(tn('singular text', 'plural text', value));
+```
+
+#### API
+
+`configure({ [languagePack] })`
+
+- Initialize the translator
+- Initialize with the default language if no `languagePack` is specified.
+
+`t(text[, args])`
+
+- Translate `text`.
+- If `args` is provided, substitute `args` into the `sprintf` placeholders specified within `text`
+  translation.
+
+For example
+
+```js
+t('Hello %(name)s', user);
+```
+
+See [sprintf-js](https://github.com/alexei/sprintf.js) for more details on how to define
+placeholders.
+
+`tn(singular, plural, num, [, args])`
+
+- Translate and choose between `singular` and `plural` based on `num`.
+- If `args` is provided, substitute `args` into the `sprintf` placeholders specified within
+  `singular` or `plural` translations.
+
+For example
+
+```js
+tn('%d duck', '%d ducks', 2, 2);
+```
diff --git a/superset-frontend/packages/superset-ui-core/src/translation/Translator.ts b/superset-frontend/packages/superset-ui-core/src/translation/Translator.ts
new file mode 100644
index 0000000..bb4ad6b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/translation/Translator.ts
@@ -0,0 +1,96 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import UntypedJed from 'jed';
+import logging from '../utils/logging';
+import { Jed, TranslatorConfig, Locale, Translations, LocaleData, LanguagePack } from './types';
+
+const DEFAULT_LANGUAGE_PACK: LanguagePack = {
+  domain: 'superset',
+  locale_data: {
+    superset: {
+      '': {
+        domain: 'superset',
+        lang: 'en',
+        plural_forms: 'nplurals=2; plural=(n != 1)',
+      },
+    },
+  },
+};
+
+export default class Translator {
+  i18n: Jed;
+
+  locale: Locale;
+
+  constructor(config: TranslatorConfig = {}) {
+    const { languagePack = DEFAULT_LANGUAGE_PACK } = config;
+    this.i18n = new UntypedJed(languagePack) as Jed;
+    this.locale = this.i18n.options.locale_data.superset[''].lang as Locale;
+  }
+
+  /**
+   * Add additional translations on the fly, used by plugins.
+   */
+  addTranslation(key: string, texts: ReadonlyArray<string>) {
+    const translations = this.i18n.options.locale_data.superset;
+    if (key in translations) {
+      logging.warn(`Duplicate translation key "${key}", will override.`);
+    }
+    translations[key] = texts;
+  }
+
+  /**
+   * Add a series of translations.
+   */
+  addTranslations(translations: Translations) {
+    if (translations && !Array.isArray(translations)) {
+      Object.entries(translations).forEach(([key, vals]) => this.addTranslation(key, vals));
+    } else {
+      logging.warn('Invalid translations');
+    }
+  }
+
+  addLocaleData(data: LocaleData) {
+    // always fallback to English
+    const translations = data?.[this.locale] || data?.en;
+    if (translations) {
+      this.addTranslations(translations);
+    } else {
+      logging.warn('Invalid locale data');
+    }
+  }
+
+  translate(input: string, ...args: unknown[]): string {
+    return this.i18n.translate(input).fetch(...args);
+  }
+
+  translateWithNumber(key: string, ...args: unknown[]): string {
+    const [plural, num, ...rest] = args;
+    if (typeof plural === 'number') {
+      return this.i18n
+        .translate(key)
+        .ifPlural(plural, key)
+        .fetch(plural, num, ...args);
+    }
+    return this.i18n
+      .translate(key)
+      .ifPlural(num as number, plural as string)
+      .fetch(...rest);
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/translation/TranslatorSingleton.ts b/superset-frontend/packages/superset-ui-core/src/translation/TranslatorSingleton.ts
new file mode 100644
index 0000000..bfc6731
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/translation/TranslatorSingleton.ts
@@ -0,0 +1,48 @@
+/* eslint no-console: 0 */
+
+import Translator from './Translator';
+import { TranslatorConfig, Translations, LocaleData } from './types';
+
+let singleton: Translator | undefined;
+let isConfigured = false;
+
+function configure(config?: TranslatorConfig) {
+  singleton = new Translator(config);
+  isConfigured = true;
+
+  return singleton;
+}
+
+function getInstance() {
+  if (!isConfigured) {
+    console.warn('You should call configure(...) before calling other methods');
+  }
+
+  if (typeof singleton === 'undefined') {
+    singleton = new Translator();
+  }
+
+  return singleton;
+}
+
+function addTranslation(key: string, translations: string[]) {
+  return getInstance().addTranslation(key, translations);
+}
+
+function addTranslations(translations: Translations) {
+  return getInstance().addTranslations(translations);
+}
+
+function addLocaleData(data: LocaleData) {
+  return getInstance().addLocaleData(data);
+}
+
+function t(input: string, ...args: unknown[]) {
+  return getInstance().translate(input, ...args);
+}
+
+function tn(key: string, ...args: unknown[]) {
+  return getInstance().translateWithNumber(key, ...args);
+}
+
+export { configure, addTranslation, addTranslations, addLocaleData, t, tn };
diff --git a/superset-frontend/packages/superset-ui-core/src/translation/index.ts b/superset-frontend/packages/superset-ui-core/src/translation/index.ts
new file mode 100644
index 0000000..e5dffc7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/translation/index.ts
@@ -0,0 +1,2 @@
+export * from './TranslatorSingleton';
+export * from './types';
diff --git a/superset-frontend/packages/superset-ui-core/src/translation/types/index.ts b/superset-frontend/packages/superset-ui-core/src/translation/types/index.ts
new file mode 100644
index 0000000..e814d6f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/translation/types/index.ts
@@ -0,0 +1,59 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { Jed as BaseJed, JedOptions, DomainData, Translations } from './jed';
+
+export * from './jed';
+
+/**
+ * Superset supported languages.
+ */
+export type Locale = 'de' | 'en' | 'es' | 'fr' | 'it' | 'ja' | 'ko' | 'pt' | 'pt_BR' | 'ru' | 'zh'; // supported locales in Superset
+
+/**
+ * Language pack provided to `jed`.
+ */
+export type LanguagePack = JedOptions & {
+  // eslint-disable-next-line camelcase
+  locale_data: {
+    superset: DomainData & {
+      '': {
+        domain: 'superset';
+        lang: Locale;
+        // eslint-disable-next-line camelcase
+        plural_forms: string;
+      };
+    };
+  };
+};
+
+export interface Jed extends BaseJed {
+  options: LanguagePack;
+}
+
+/**
+ * Config options for Translator class.
+ */
+export interface TranslatorConfig {
+  languagePack?: LanguagePack;
+}
+
+/**
+ * Key-value mapping of translation key and the translations.
+ */
+export type LocaleData = Partial<Record<Locale, Translations>>;
diff --git a/superset-frontend/packages/superset-ui-core/src/translation/types/jed.ts b/superset-frontend/packages/superset-ui-core/src/translation/types/jed.ts
new file mode 100644
index 0000000..1353c40
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/translation/types/jed.ts
@@ -0,0 +1,35 @@
+/**
+ * Translations for a language in the format of { key: [singular, plural, ...]}.
+ */
+export type Translations = {
+  [key: string]: ReadonlyArray<string>;
+};
+
+export interface DomainConfig {
+  domain: string;
+  lang: string;
+  // eslint-disable-next-line camelcase
+  plural_forms: string;
+}
+
+export type DomainData = { '': DomainConfig } & {
+  [key: string]: ReadonlyArray<string> | DomainConfig;
+};
+
+export interface JedOptions {
+  domain: string;
+  // eslint-disable-next-line camelcase
+  locale_data: {
+    [domain: string]: DomainData;
+  };
+}
+
+export interface Jed {
+  translate(input: string): Jed;
+
+  ifPlural(value: number, plural: string): Jed;
+
+  fetch(...args: unknown[]): string;
+
+  options: JedOptions;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/types/index.ts b/superset-frontend/packages/superset-ui-core/src/types/index.ts
new file mode 100644
index 0000000..eaab5c0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/types/index.ts
@@ -0,0 +1,21 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export * from '../query/types';
+
+export type Maybe<T> = T | null;
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/convertKeysToCamelCase.ts b/superset-frontend/packages/superset-ui-core/src/utils/convertKeysToCamelCase.ts
new file mode 100644
index 0000000..88d9da0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/convertKeysToCamelCase.ts
@@ -0,0 +1,14 @@
+import camelCase from 'lodash/camelCase';
+import isPlainObject from 'lodash/isPlainObject';
+import mapKeys from 'lodash/mapKeys';
+
+export default function convertKeysToCamelCase<T>(object: T) {
+  if (object === null || object === undefined) {
+    return object;
+  }
+  if (isPlainObject(object)) {
+    // eslint-disable-next-line @typescript-eslint/no-explicit-any
+    return mapKeys(object as { [key: string]: any }, (_, k) => camelCase(k)) as T;
+  }
+  throw new Error(`Cannot convert input that is not a plain object: ${object}`);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/ensureIsArray.ts b/superset-frontend/packages/superset-ui-core/src/utils/ensureIsArray.ts
new file mode 100644
index 0000000..244643f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/ensureIsArray.ts
@@ -0,0 +1,29 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/**
+ * Ensure a nullable value input is an array. Useful when consolidating
+ * input format from a select control.
+ */
+export default function ensureIsArray<T>(value?: T[] | T | null): T[] {
+  if (value === undefined || value === null) {
+    return [];
+  }
+  return Array.isArray(value) ? value : [value];
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/index.ts b/superset-frontend/packages/superset-ui-core/src/utils/index.ts
new file mode 100644
index 0000000..df0ea96
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/index.ts
@@ -0,0 +1,27 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export { default as convertKeysToCamelCase } from './convertKeysToCamelCase';
+export { default as ensureIsArray } from './ensureIsArray';
+export { default as isDefined } from './isDefined';
+export { default as isRequired } from './isRequired';
+export { default as makeSingleton } from './makeSingleton';
+export { default as promiseTimeout } from './promiseTimeout';
+export { default as logging } from './logging';
+export { default as removeDuplicates } from './removeDuplicates';
+export * from './random';
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/isDefined.ts b/superset-frontend/packages/superset-ui-core/src/utils/isDefined.ts
new file mode 100644
index 0000000..63e5fbc
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/isDefined.ts
@@ -0,0 +1,3 @@
+export default function isDefined(x: unknown) {
+  return x !== null && x !== undefined;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/isRequired.ts b/superset-frontend/packages/superset-ui-core/src/utils/isRequired.ts
new file mode 100644
index 0000000..6a81534
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/isRequired.ts
@@ -0,0 +1,3 @@
+export default function isRequired(field: string): never {
+  throw new Error(`${field} is required.`);
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/logging.ts b/superset-frontend/packages/superset-ui-core/src/utils/logging.ts
new file mode 100644
index 0000000..929c4d0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/logging.ts
@@ -0,0 +1,38 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+const console = window.console || {};
+const log = console.log || (() => {});
+
+const logger = {
+  log,
+  debug: console.debug || log,
+  info: console.info || log,
+  warn: console.warn || log,
+  error: console.error || log,
+  trace: console.trace || log,
+  table: console.table || log,
+};
+
+/**
+ * Superset frontend logger, currently just an alias to console.
+ * This may be extended to support numerous console operations safely
+ * i.e.: https://developer.mozilla.org/en-US/docs/Web/API/Console
+ */
+export default logger;
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/makeSingleton.ts b/superset-frontend/packages/superset-ui-core/src/utils/makeSingleton.ts
new file mode 100644
index 0000000..a2426cf
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/makeSingleton.ts
@@ -0,0 +1,18 @@
+interface ClassInterface<T, Args extends unknown[]> {
+  new (...args: Args): T;
+}
+
+export default function makeSingleton<T, Args extends unknown[]>(
+  BaseClass: ClassInterface<T, Args>,
+  ...args: Args
+): () => T {
+  let singleton: T;
+
+  return function getInstance() {
+    if (!singleton) {
+      singleton = new BaseClass(...args);
+    }
+
+    return singleton;
+  };
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/promiseTimeout.ts b/superset-frontend/packages/superset-ui-core/src/utils/promiseTimeout.ts
new file mode 100644
index 0000000..523816d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/promiseTimeout.ts
@@ -0,0 +1,13 @@
+/** setTimeout that returns a promise */
+export default function promiseTimeout<T>(
+  /** A function to be executed after the timer expires. */
+  func: (...args: unknown[]) => T,
+  /** The time, in milliseconds (thousandths of a second), the timer should wait before the specified function or code is executed. If this parameter is omitted, a value of 0 is used, meaning execute "immediately", or more accurately, as soon as possible.  */
+  delay?: number,
+) {
+  return new Promise<T>(resolve => {
+    setTimeout(() => {
+      resolve(func());
+    }, delay);
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/random.ts b/superset-frontend/packages/superset-ui-core/src/utils/random.ts
new file mode 100644
index 0000000..38dbdbd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/random.ts
@@ -0,0 +1,30 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import seedrandom from 'seedrandom';
+
+let random = seedrandom('superset-ui');
+
+export function seed(seed: string) {
+  random = seedrandom(seed);
+  return random;
+}
+
+export function seedRandom() {
+  return random();
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/utils/removeDuplicates.ts b/superset-frontend/packages/superset-ui-core/src/utils/removeDuplicates.ts
new file mode 100644
index 0000000..70e7f84
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/utils/removeDuplicates.ts
@@ -0,0 +1,35 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/**
+ * Remove duplicate items from a list.
+ */
+export function removeDuplicates<T>(items: T[], hash?: (item: T) => unknown): T[] {
+  if (hash) {
+    const seen = new Set();
+    return items.filter(x => {
+      const itemHash = hash(x);
+      if (seen.has(itemHash)) return false;
+      seen.add(itemHash);
+      return true;
+    });
+  }
+  return [...new Set(items)];
+}
+
+export default removeDuplicates;
diff --git a/superset-frontend/packages/superset-ui-core/src/validator/index.ts b/superset-frontend/packages/superset-ui-core/src/validator/index.ts
new file mode 100644
index 0000000..edc93a7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/validator/index.ts
@@ -0,0 +1,5 @@
+export { default as legacyValidateInteger } from './legacyValidateInteger';
+export { default as legacyValidateNumber } from './legacyValidateNumber';
+export { default as validateInteger } from './validateInteger';
+export { default as validateNumber } from './validateNumber';
+export { default as validateNonEmpty } from './validateNonEmpty';
diff --git a/superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts b/superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts
new file mode 100644
index 0000000..6472261
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts
@@ -0,0 +1,12 @@
+import { t } from '../translation';
+
+/**
+ * formerly called integer()
+ * @param v
+ */
+export default function legacyValidateInteger(v: unknown) {
+  if (v && (Number.isNaN(Number(v)) || parseInt(v as string, 10) !== Number(v))) {
+    return t('is expected to be an integer');
+  }
+  return false;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts b/superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts
new file mode 100644
index 0000000..4805d87
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts
@@ -0,0 +1,12 @@
+import { t } from '../translation';
+
+/**
+ * formerly called numeric()
+ * @param v
+ */
+export default function numeric(v: unknown) {
+  if (v && Number.isNaN(Number(v))) {
+    return t('is expected to be a number');
+  }
+  return false;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts b/superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts
new file mode 100644
index 0000000..8eeca60
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts
@@ -0,0 +1,12 @@
+import { t } from '../translation';
+
+export default function validateInteger(v: unknown) {
+  if (
+    (typeof v === 'string' && v.trim().length > 0 && Number.isInteger(Number(v.trim()))) ||
+    (typeof v === 'number' && Number.isInteger(v))
+  ) {
+    return false;
+  }
+
+  return t('is expected to be an integer');
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts b/superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts
new file mode 100644
index 0000000..a3553fb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts
@@ -0,0 +1,8 @@
+import { t } from '../translation';
+
+export default function validateNonEmpty(v: unknown) {
+  if (v === null || typeof v === 'undefined' || v === '' || (Array.isArray(v) && v.length === 0)) {
+    return t('cannot be empty');
+  }
+  return false;
+}
diff --git a/superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts b/superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts
new file mode 100644
index 0000000..20aaabf
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts
@@ -0,0 +1,12 @@
+import { t } from '../translation';
+
+export default function validateInteger(v: unknown) {
+  if (
+    (typeof v === 'string' && v.trim().length > 0 && Number.isFinite(Number(v.trim()))) ||
+    (typeof v === 'number' && Number.isFinite(v))
+  ) {
+    return false;
+  }
+
+  return t('is expected to be a number');
+}
diff --git a/superset-frontend/packages/superset-ui-core/test/__mocks__/resize-observer-polyfill.ts b/superset-frontend/packages/superset-ui-core/test/__mocks__/resize-observer-polyfill.ts
new file mode 100644
index 0000000..9e2ba5d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/__mocks__/resize-observer-polyfill.ts
@@ -0,0 +1,30 @@
+interface ResizeObserverEntry {
+  contentRect: {
+    height: number;
+    width: number;
+  };
+}
+type ObserveCallback = (entries: ResizeObserverEntry[]) => void;
+
+const allCallbacks: ObserveCallback[] = [];
+
+export default function ResizeObserver(callback: ObserveCallback) {
+  return {
+    disconnect() {
+      allCallbacks.splice(allCallbacks.indexOf(callback), 1);
+    },
+    observe() {
+      if (callback) {
+        allCallbacks.push(callback);
+      }
+    },
+  };
+}
+
+export const DEFAULT_OUTPUT: ResizeObserverEntry[] = [{ contentRect: { height: 300, width: 300 } }];
+
+export function triggerResizeObserver(entries = DEFAULT_OUTPUT) {
+  allCallbacks.forEach(fn => {
+    fn(entries);
+  });
+}
diff --git a/superset-frontend/packages/superset-ui-core/test/chart-composition/ChartFrame.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart-composition/ChartFrame.test.tsx
new file mode 100644
index 0000000..5708489
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart-composition/ChartFrame.test.tsx
@@ -0,0 +1,108 @@
+import React from 'react';
+import { shallow } from 'enzyme';
+import { ChartFrame } from '@superset-ui/core/src';
+
+describe('TooltipFrame', () => {
+  it('renders content that requires smaller space than frame', () => {
+    const wrapper = shallow(
+      <ChartFrame
+        width={400}
+        height={400}
+        contentWidth={300}
+        contentHeight={300}
+        renderContent={({ width, height }) => (
+          <div>
+            {width}/{height}
+          </div>
+        )}
+      />,
+    );
+    expect(wrapper.find('div').text()).toEqual('400/400');
+  });
+
+  it('renders content without specifying content size', () => {
+    const wrapper = shallow(
+      <ChartFrame
+        width={400}
+        height={400}
+        renderContent={({ width, height }) => (
+          <div>
+            {width}/{height}
+          </div>
+        )}
+      />,
+    );
+    expect(wrapper.find('div').text()).toEqual('400/400');
+  });
+
+  it('renders content that requires same size with frame', () => {
+    const wrapper = shallow(
+      <ChartFrame
+        width={400}
+        height={400}
+        contentWidth={400}
+        contentHeight={400}
+        renderContent={({ width, height }) => (
+          <div>
+            {width}/{height}
+          </div>
+        )}
+      />,
+    );
+    expect(wrapper.find('div').text()).toEqual('400/400');
+  });
+
+  it('renders content that requires space larger than frame', () => {
+    const wrapper = shallow(
+      <ChartFrame
+        width={400}
+        height={400}
+        contentWidth={500}
+        contentHeight={500}
+        renderContent={({ width, height }) => (
+          <div className="chart">
+            {width}/{height}
+          </div>
+        )}
+      />,
+    );
+    expect(wrapper.find('div.chart').text()).toEqual('500/500');
+  });
+
+  it('renders content that width is larger than frame', () => {
+    const wrapper = shallow(
+      <ChartFrame
+        width={400}
+        height={400}
+        contentWidth={500}
+        renderContent={({ width, height }) => (
+          <div className="chart">
+            {width}/{height}
+          </div>
+        )}
+      />,
+    );
+    expect(wrapper.find('div.chart').text()).toEqual('500/400');
+  });
+
+  it('renders content that height is larger than frame', () => {
+    const wrapper = shallow(
+      <ChartFrame
+        width={400}
+        height={400}
+        contentHeight={600}
+        renderContent={({ width, height }) => (
+          <div className="chart">
+            {width}/{height}
+          </div>
+        )}
+      />,
+    );
+    expect(wrapper.find('div.chart').text()).toEqual('400/600');
+  });
+
+  it('renders an empty frame when renderContent is not given', () => {
+    const wrapper = shallow(<ChartFrame width={400} height={400} />);
+    expect(wrapper.find('div')).toHaveLength(0);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart-composition/legend/WithLegend.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart-composition/legend/WithLegend.test.tsx
new file mode 100644
index 0000000..d6b0d60
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart-composition/legend/WithLegend.test.tsx
@@ -0,0 +1,173 @@
+import React from 'react';
+import { mount, shallow } from 'enzyme';
+import { triggerResizeObserver } from 'resize-observer-polyfill';
+import { promiseTimeout } from '@superset-ui/core/src';
+import { WithLegend } from '@superset-ui/core/src/chart-composition';
+
+let renderChart = jest.fn();
+let renderLegend = jest.fn();
+
+describe('WithLegend', () => {
+  beforeEach(() => {
+    renderChart = jest.fn(() => <div className="chart" />);
+    renderLegend = jest.fn(() => <div className="legend" />);
+  });
+
+  it('sets className', () => {
+    const wrapper = shallow(
+      <WithLegend className="test-class" renderChart={renderChart} renderLegend={renderLegend} />,
+    );
+    expect(wrapper.hasClass('test-class')).toEqual(true);
+  });
+
+  it('renders when renderLegend is not set', () => {
+    const wrapper = mount(
+      <WithLegend debounceTime={1} width={500} height={500} renderChart={renderChart} />,
+    );
+
+    triggerResizeObserver();
+    // Have to delay more than debounceTime (1ms)
+    return promiseTimeout(() => {
+      expect(renderChart).toHaveBeenCalledTimes(1);
+      expect(wrapper.render().find('div.chart')).toHaveLength(1);
+      expect(wrapper.render().find('div.legend')).toHaveLength(0);
+    }, 100);
+  });
+
+  it('renders', () => {
+    const wrapper = mount(
+      <WithLegend
+        debounceTime={1}
+        width={500}
+        height={500}
+        renderChart={renderChart}
+        renderLegend={renderLegend}
+      />,
+    );
+
+    triggerResizeObserver();
+    // Have to delay more than debounceTime (1ms)
+    return promiseTimeout(() => {
+      expect(renderChart).toHaveBeenCalledTimes(1);
+      expect(renderLegend).toHaveBeenCalledTimes(1);
+      expect(wrapper.render().find('div.chart')).toHaveLength(1);
+      expect(wrapper.render().find('div.legend')).toHaveLength(1);
+    }, 100);
+  });
+
+  it('renders without width or height', () => {
+    const wrapper = mount(
+      <WithLegend debounceTime={1} renderChart={renderChart} renderLegend={renderLegend} />,
+    );
+
+    triggerResizeObserver();
+    // Have to delay more than debounceTime (1ms)
+    return promiseTimeout(() => {
+      expect(renderChart).toHaveBeenCalledTimes(1);
+      expect(renderLegend).toHaveBeenCalledTimes(1);
+      expect(wrapper.render().find('div.chart')).toHaveLength(1);
+      expect(wrapper.render().find('div.legend')).toHaveLength(1);
+    }, 100);
+  });
+
+  it('renders legend on the left', () => {
+    const wrapper = mount(
+      <WithLegend
+        debounceTime={1}
+        position="left"
+        renderChart={renderChart}
+        renderLegend={renderLegend}
+      />,
+    );
+
+    triggerResizeObserver();
+    // Have to delay more than debounceTime (1ms)
+    return promiseTimeout(() => {
+      expect(renderChart).toHaveBeenCalledTimes(1);
+      expect(renderLegend).toHaveBeenCalledTimes(1);
+      expect(wrapper.render().find('div.chart')).toHaveLength(1);
+      expect(wrapper.render().find('div.legend')).toHaveLength(1);
+    }, 100);
+  });
+
+  it('renders legend on the right', () => {
+    const wrapper = mount(
+      <WithLegend
+        debounceTime={1}
+        position="right"
+        renderChart={renderChart}
+        renderLegend={renderLegend}
+      />,
+    );
+
+    triggerResizeObserver();
+    // Have to delay more than debounceTime (1ms)
+    return promiseTimeout(() => {
+      expect(renderChart).toHaveBeenCalledTimes(1);
+      expect(renderLegend).toHaveBeenCalledTimes(1);
+      expect(wrapper.render().find('div.chart')).toHaveLength(1);
+      expect(wrapper.render().find('div.legend')).toHaveLength(1);
+    }, 100);
+  });
+
+  it('renders legend on the top', () => {
+    const wrapper = mount(
+      <WithLegend
+        debounceTime={1}
+        position="top"
+        renderChart={renderChart}
+        renderLegend={renderLegend}
+      />,
+    );
+
+    triggerResizeObserver();
+    // Have to delay more than debounceTime (1ms)
+    return promiseTimeout(() => {
+      expect(renderChart).toHaveBeenCalledTimes(1);
+      expect(renderLegend).toHaveBeenCalledTimes(1);
+      expect(wrapper.render().find('div.chart')).toHaveLength(1);
+      expect(wrapper.render().find('div.legend')).toHaveLength(1);
+    }, 100);
+  });
+
+  it('renders legend on the bottom', () => {
+    const wrapper = mount(
+      <WithLegend
+        debounceTime={1}
+        position="bottom"
+        renderChart={renderChart}
+        renderLegend={renderLegend}
+      />,
+    );
+
+    triggerResizeObserver();
+    // Have to delay more than debounceTime (1ms)
+    return promiseTimeout(() => {
+      expect(renderChart).toHaveBeenCalledTimes(1);
+      expect(renderLegend).toHaveBeenCalledTimes(1);
+      expect(wrapper.render().find('div.chart')).toHaveLength(1);
+      expect(wrapper.render().find('div.legend')).toHaveLength(1);
+    }, 100);
+  });
+
+  it('renders legend with justifyContent set', () => {
+    const wrapper = mount(
+      <WithLegend
+        debounceTime={1}
+        position="right"
+        legendJustifyContent="flex-start"
+        renderChart={renderChart}
+        renderLegend={renderLegend}
+      />,
+    );
+
+    triggerResizeObserver();
+    // Have to delay more than debounceTime (1ms)
+    return promiseTimeout(() => {
+      expect(renderChart).toHaveBeenCalledTimes(1);
+      expect(renderLegend).toHaveBeenCalledTimes(1);
+      expect(wrapper.render().find('div.chart')).toHaveLength(1);
+      expect(wrapper.render().find('div.legend')).toHaveLength(1);
+    }, 100);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart-composition/tooltip/TooltipFrame.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart-composition/tooltip/TooltipFrame.test.tsx
new file mode 100644
index 0000000..f9c422e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart-composition/tooltip/TooltipFrame.test.tsx
@@ -0,0 +1,25 @@
+import React from 'react';
+import { shallow } from 'enzyme';
+import { TooltipFrame } from '@superset-ui/core/src';
+
+describe('TooltipFrame', () => {
+  it('sets className', () => {
+    const wrapper = shallow(
+      <TooltipFrame className="test-class">
+        <span>Hi!</span>
+      </TooltipFrame>,
+    );
+    expect(wrapper.hasClass('test-class')).toEqual(true);
+  });
+
+  it('renders', () => {
+    const wrapper = shallow(
+      <TooltipFrame>
+        <span>Hi!</span>
+      </TooltipFrame>,
+    );
+    const span = wrapper.find('span');
+    expect(span).toHaveLength(1);
+    expect(span.text()).toEqual('Hi!');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart-composition/tooltip/TooltipTable.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart-composition/tooltip/TooltipTable.test.tsx
new file mode 100644
index 0000000..ba0bd91
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart-composition/tooltip/TooltipTable.test.tsx
@@ -0,0 +1,47 @@
+import React from 'react';
+import { shallow } from 'enzyme';
+import { TooltipTable } from '@superset-ui/core/src';
+
+describe('TooltipTable', () => {
+  it('sets className', () => {
+    const wrapper = shallow(<TooltipTable className="test-class" />);
+    expect(wrapper.render().hasClass('test-class')).toEqual(true);
+  });
+
+  it('renders empty table', () => {
+    const wrapper = shallow(<TooltipTable />);
+    expect(wrapper.find('tbody')).toHaveLength(1);
+    expect(wrapper.find('tr')).toHaveLength(0);
+  });
+
+  it('renders table with content', () => {
+    const wrapper = shallow(
+      <TooltipTable
+        data={[
+          {
+            key: 'Cersei',
+            keyColumn: 'Cersei',
+            keyStyle: { padding: '10' },
+            valueColumn: 2,
+            valueStyle: { textAlign: 'right' },
+          },
+          {
+            key: 'Jaime',
+            keyColumn: 'Jaime',
+            keyStyle: { padding: '10' },
+            valueColumn: 1,
+            valueStyle: { textAlign: 'right' },
+          },
+          {
+            key: 'Tyrion',
+            keyStyle: { padding: '10' },
+            valueColumn: 2,
+          },
+        ]}
+      />,
+    );
+    expect(wrapper.find('tbody')).toHaveLength(1);
+    expect(wrapper.find('tr')).toHaveLength(3);
+    expect(wrapper.find('tr > td').first().text()).toEqual('Cersei');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts b/superset-frontend/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts
new file mode 100644
index 0000000..86635c7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts
@@ -0,0 +1,278 @@
+import fetchMock from 'fetch-mock';
+import {
+  SupersetClientClass,
+  SupersetClient,
+  buildQueryContext,
+  QueryFormData,
+  configure as configureTranslation,
+} from '@superset-ui/core/src';
+
+import {
+  ChartClient,
+  getChartBuildQueryRegistry,
+  getChartMetadataRegistry,
+  ChartMetadata,
+} from '@superset-ui/core/src/chart';
+import { SliceIdAndOrFormData } from '@superset-ui/core/src/chart/clients/ChartClient';
+import { LOGIN_GLOB } from '../fixtures/constants';
+import { sankeyFormData } from '../fixtures/formData';
+
+configureTranslation();
+
+describe('ChartClient', () => {
+  let chartClient: ChartClient;
+
+  beforeAll(() => {
+    fetchMock.get(LOGIN_GLOB, { csrf_token: '1234' });
+    SupersetClient.reset();
+    SupersetClient.configure().init();
+  });
+
+  beforeEach(() => {
+    chartClient = new ChartClient();
+  });
+
+  afterEach(fetchMock.restore);
+
+  describe('new ChartClient(config)', () => {
+    it('creates a client without argument', () => {
+      expect(chartClient).toBeInstanceOf(ChartClient);
+    });
+    it('creates a client with specified config.client', () => {
+      const customClient = new SupersetClientClass();
+      chartClient = new ChartClient({ client: customClient });
+      expect(chartClient).toBeInstanceOf(ChartClient);
+      expect(chartClient.client).toBe(customClient);
+    });
+  });
+
+  describe('.loadFormData({ sliceId, formData }, options)', () => {
+    const sliceId = 123;
+    it('fetches formData if given only sliceId', () => {
+      fetchMock.get(`glob:*/api/v1/form_data/?slice_id=${sliceId}`, sankeyFormData);
+
+      return expect(chartClient.loadFormData({ sliceId })).resolves.toEqual(sankeyFormData);
+    });
+    it('fetches formData from sliceId and merges with specify formData if both fields are specified', () => {
+      fetchMock.get(`glob:*/api/v1/form_data/?slice_id=${sliceId}`, sankeyFormData);
+
+      return expect(
+        chartClient.loadFormData({
+          sliceId,
+          formData: {
+            granularity: 'second',
+            viz_type: 'bar',
+          },
+        }),
+      ).resolves.toEqual({
+        ...sankeyFormData,
+        granularity: 'second',
+        viz_type: 'bar',
+      });
+    });
+    it('returns promise of formData if only formData was given', () =>
+      expect(
+        chartClient.loadFormData({
+          formData: {
+            datasource: '1__table',
+            granularity: 'minute',
+            viz_type: 'line',
+          },
+        }),
+      ).resolves.toEqual({
+        datasource: '1__table',
+        granularity: 'minute',
+        viz_type: 'line',
+      }));
+    it('rejects if none of sliceId or formData is specified', () =>
+      expect(chartClient.loadFormData({} as SliceIdAndOrFormData)).rejects.toEqual(
+        new Error('At least one of sliceId or formData must be specified'),
+      ));
+  });
+
+  describe('.loadQueryData(formData, options)', () => {
+    it('returns a promise of query data for known chart type', () => {
+      getChartMetadataRegistry().registerValue(
+        'word_cloud',
+        new ChartMetadata({ name: 'Word Cloud', thumbnail: '' }),
+      );
+
+      getChartBuildQueryRegistry().registerValue('word_cloud', (formData: QueryFormData) =>
+        buildQueryContext(formData),
+      );
+      fetchMock.post('glob:*/api/v1/chart/data', [
+        {
+          field1: 'abc',
+          field2: 'def',
+        },
+      ]);
+
+      return expect(
+        chartClient.loadQueryData({
+          granularity: 'minute',
+          viz_type: 'word_cloud',
+          datasource: '1__table',
+        }),
+      ).resolves.toEqual([
+        {
+          field1: 'abc',
+          field2: 'def',
+        },
+      ]);
+    });
+    it('returns a promise that rejects for unknown chart type', () =>
+      expect(
+        chartClient.loadQueryData({
+          granularity: 'minute',
+          viz_type: 'rainbow_3d_pie',
+          datasource: '1__table',
+        }),
+      ).rejects.toEqual(new Error('Unknown chart type: rainbow_3d_pie')));
+
+    it('fetches data from the legacy API if ChartMetadata has useLegacyApi=true,', () => {
+      // note legacy charts do not register a buildQuery function in the registry
+      getChartMetadataRegistry().registerValue(
+        'word_cloud_legacy',
+        new ChartMetadata({
+          name: 'Legacy Word Cloud',
+          thumbnail: '.png',
+          useLegacyApi: true,
+        }),
+      );
+
+      fetchMock.post('glob:*/api/v1/chart/data', () =>
+        Promise.reject(new Error('Unexpected all to v1 API')),
+      );
+
+      fetchMock.post('glob:*/superset/explore_json/', {
+        field1: 'abc',
+        field2: 'def',
+      });
+
+      return expect(
+        chartClient.loadQueryData({
+          granularity: 'minute',
+          viz_type: 'word_cloud_legacy',
+          datasource: '1__table',
+        }),
+      ).resolves.toEqual([
+        {
+          field1: 'abc',
+          field2: 'def',
+        },
+      ]);
+    });
+  });
+
+  describe('.loadDatasource(datasourceKey, options)', () => {
+    it('fetches datasource', () => {
+      fetchMock.get('glob:*/superset/fetch_datasource_metadata?datasourceKey=1__table', {
+        field1: 'abc',
+        field2: 'def',
+      });
+
+      return expect(chartClient.loadDatasource('1__table')).resolves.toEqual({
+        field1: 'abc',
+        field2: 'def',
+      });
+    });
+  });
+
+  describe('.loadAnnotation(annotationLayer)', () => {
+    it('returns an empty object if the annotation layer does not require query', () =>
+      expect(
+        chartClient.loadAnnotation({
+          name: 'my-annotation',
+        }),
+      ).resolves.toEqual({}));
+    it('otherwise returns a rejected promise because it is not implemented yet', () =>
+      expect(
+        chartClient.loadAnnotation({
+          name: 'my-annotation',
+          sourceType: 'abc',
+        }),
+      ).rejects.toEqual(new Error('This feature is not implemented yet.')));
+  });
+
+  describe('.loadAnnotations(annotationLayers)', () => {
+    it('loads multiple annotation layers and combine results', () =>
+      expect(
+        chartClient.loadAnnotations([
+          {
+            name: 'anno1',
+          },
+          {
+            name: 'anno2',
+          },
+          {
+            name: 'anno3',
+          },
+        ]),
+      ).resolves.toEqual({
+        anno1: {},
+        anno2: {},
+        anno3: {},
+      }));
+    it('returns an empty object if input is not an array', () =>
+      expect(chartClient.loadAnnotations()).resolves.toEqual({}));
+    it('returns an empty object if input is an empty array', () =>
+      expect(chartClient.loadAnnotations()).resolves.toEqual({}));
+  });
+
+  describe('.loadChartData({ sliceId, formData })', () => {
+    const sliceId = 10120;
+    it('loadAllDataNecessaryForAChart', () => {
+      fetchMock.get(`glob:*/api/v1/form_data/?slice_id=${sliceId}`, {
+        granularity: 'minute',
+        viz_type: 'line',
+        datasource: '1__table',
+        color: 'living-coral',
+      });
+
+      fetchMock.get('glob:*/superset/fetch_datasource_metadata?datasourceKey=1__table', {
+        name: 'transactions',
+        schema: 'staging',
+      });
+
+      fetchMock.post('glob:*/api/v1/chart/data', {
+        lorem: 'ipsum',
+        dolor: 'sit',
+        amet: true,
+      });
+
+      getChartMetadataRegistry().registerValue(
+        'line',
+        new ChartMetadata({ name: 'Line', thumbnail: '.gif' }),
+      );
+
+      getChartBuildQueryRegistry().registerValue('line', (formData: QueryFormData) =>
+        buildQueryContext(formData),
+      );
+
+      return expect(
+        chartClient.loadChartData({
+          sliceId,
+        }),
+      ).resolves.toEqual({
+        annotationData: {},
+        datasource: {
+          name: 'transactions',
+          schema: 'staging',
+        },
+        formData: {
+          granularity: 'minute',
+          viz_type: 'line',
+          datasource: '1__table',
+          color: 'living-coral',
+        },
+        queriesData: [
+          {
+            lorem: 'ipsum',
+            dolor: 'sit',
+            amet: true,
+          },
+        ],
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx
new file mode 100644
index 0000000..f659453
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx
@@ -0,0 +1,292 @@
+import React from 'react';
+import { shallow } from 'enzyme';
+import ChartClient from '@superset-ui/core/src/chart/clients/ChartClient';
+import ChartDataProvider, { Props } from '@superset-ui/core/src/chart/components/ChartDataProvider';
+import { bigNumberFormData } from '../fixtures/formData';
+
+// Note: the mock implementation of these function directly affects the expected results below
+const defaultMockLoadFormData = jest.fn(({ formData }: { formData: unknown }) =>
+  Promise.resolve(formData),
+);
+
+type MockLoadFormData = typeof defaultMockLoadFormData | jest.Mock<Promise<unknown>, unknown[]>;
+
+let mockLoadFormData: MockLoadFormData = defaultMockLoadFormData;
+
+function createPromise<T>(input: T) {
+  return Promise.resolve(input);
+}
+
+function createArrayPromise<T>(input: T) {
+  return Promise.resolve([input]);
+}
+
+const mockLoadDatasource = jest.fn<Promise<unknown>, unknown[]>(createPromise);
+const mockLoadQueryData = jest.fn<Promise<unknown>, unknown[]>(createArrayPromise);
+
+// ChartClient is now a mock
+jest.mock('@superset-ui/core/src/chart/clients/ChartClient', () =>
+  jest.fn().mockImplementation(() => ({
+    loadDatasource: mockLoadDatasource,
+    loadFormData: mockLoadFormData,
+    loadQueryData: mockLoadQueryData,
+  })),
+);
+
+const ChartClientMock = ChartClient as jest.Mock<ChartClient>;
+
+describe('ChartDataProvider', () => {
+  beforeEach(() => {
+    ChartClientMock.mockClear();
+
+    mockLoadFormData = defaultMockLoadFormData;
+    mockLoadFormData.mockClear();
+    mockLoadDatasource.mockClear();
+    mockLoadQueryData.mockClear();
+  });
+
+  const props: Props = {
+    formData: { ...bigNumberFormData },
+    children: () => <div />,
+  };
+
+  function setup(overrideProps?: Partial<Props>) {
+    return shallow(<ChartDataProvider {...props} {...overrideProps} />);
+  }
+
+  it('instantiates a new ChartClient()', () => {
+    setup();
+    expect(ChartClientMock).toHaveBeenCalledTimes(1);
+  });
+
+  describe('ChartClient.loadFormData', () => {
+    it('calls method on mount', () => {
+      setup();
+      expect(mockLoadFormData.mock.calls).toHaveLength(1);
+      expect(mockLoadFormData.mock.calls[0][0]).toEqual({
+        sliceId: props.sliceId,
+        formData: props.formData,
+      });
+    });
+
+    it('should pass formDataRequestOptions to ChartClient.loadFormData', () => {
+      const options = { host: 'override' };
+      setup({ formDataRequestOptions: options });
+      expect(mockLoadFormData.mock.calls).toHaveLength(1);
+      expect(mockLoadFormData.mock.calls[0][1]).toEqual(options);
+    });
+
+    it('calls ChartClient.loadFormData when formData or sliceId change', () => {
+      const wrapper = setup();
+      const newProps = { sliceId: 123, formData: undefined };
+      expect(mockLoadFormData.mock.calls).toHaveLength(1);
+
+      wrapper.setProps(newProps);
+      expect(mockLoadFormData.mock.calls).toHaveLength(2);
+      expect(mockLoadFormData.mock.calls[1][0]).toEqual(newProps);
+    });
+  });
+
+  describe('ChartClient.loadDatasource', () => {
+    it('does not method if loadDatasource is false', () =>
+      new Promise(done => {
+        expect.assertions(1);
+        setup({ loadDatasource: false });
+        setTimeout(() => {
+          expect(mockLoadDatasource.mock.calls).toHaveLength(0);
+          done();
+        }, 0);
+      }));
+
+    it('calls method on mount if loadDatasource is true', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        setup({ loadDatasource: true });
+        setTimeout(() => {
+          expect(mockLoadDatasource.mock.calls).toHaveLength(1);
+          expect(mockLoadDatasource.mock.calls[0][0]).toEqual(props.formData.datasource);
+          done();
+        }, 0);
+      }));
+
+    it('should pass datasourceRequestOptions to ChartClient.loadDatasource', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        const options = { host: 'override' };
+        setup({ loadDatasource: true, datasourceRequestOptions: options });
+        setTimeout(() => {
+          expect(mockLoadDatasource.mock.calls).toHaveLength(1);
+          expect(mockLoadDatasource.mock.calls[0][1]).toEqual(options);
+          done();
+        }, 0);
+      }));
+
+    it('calls ChartClient.loadDatasource if loadDatasource is true and formData or sliceId change', () =>
+      new Promise(done => {
+        expect.assertions(3);
+        const newDatasource = 'test';
+        const wrapper = setup({ loadDatasource: true });
+        wrapper.setProps({ formData: { datasource: newDatasource }, sliceId: undefined });
+
+        setTimeout(() => {
+          expect(mockLoadDatasource.mock.calls).toHaveLength(2);
+          expect(mockLoadDatasource.mock.calls[0][0]).toEqual(props.formData.datasource);
+          expect(mockLoadDatasource.mock.calls[1][0]).toEqual(newDatasource);
+          done();
+        }, 0);
+      }));
+  });
+
+  describe('ChartClient.loadQueryData', () => {
+    it('calls method on mount', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        setup();
+        setTimeout(() => {
+          expect(mockLoadQueryData.mock.calls).toHaveLength(1);
+          expect(mockLoadQueryData.mock.calls[0][0]).toEqual(props.formData);
+          done();
+        }, 0);
+      }));
+
+    it('should pass queryDataRequestOptions to ChartClient.loadQueryData', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        const options = { host: 'override' };
+        setup({ queryRequestOptions: options });
+        setTimeout(() => {
+          expect(mockLoadQueryData.mock.calls).toHaveLength(1);
+          expect(mockLoadQueryData.mock.calls[0][1]).toEqual(options);
+          done();
+        }, 0);
+      }));
+
+    it('calls ChartClient.loadQueryData when formData or sliceId change', () =>
+      new Promise(done => {
+        expect.assertions(3);
+        const newFormData = { key: 'test' };
+        const wrapper = setup();
+        wrapper.setProps({ formData: newFormData, sliceId: undefined });
+
+        setTimeout(() => {
+          expect(mockLoadQueryData.mock.calls).toHaveLength(2);
+          expect(mockLoadQueryData.mock.calls[0][0]).toEqual(props.formData);
+          expect(mockLoadQueryData.mock.calls[1][0]).toEqual(newFormData);
+          done();
+        }, 0);
+      }));
+  });
+
+  describe('children', () => {
+    it('calls children({ loading: true }) when loading', () => {
+      const children = jest.fn<React.ReactNode, unknown[]>();
+      setup({ children });
+
+      // during the first tick (before more promises resolve) loading is true
+      expect(children.mock.calls).toHaveLength(1);
+      expect(children.mock.calls[0][0]).toEqual({ loading: true });
+    });
+
+    it('calls children({ payload }) when loaded', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        const children = jest.fn<React.ReactNode, unknown[]>();
+        setup({ children, loadDatasource: true });
+
+        setTimeout(() => {
+          expect(children.mock.calls).toHaveLength(2);
+          expect(children.mock.calls[1][0]).toEqual({
+            payload: {
+              formData: props.formData,
+              datasource: props.formData.datasource,
+              queriesData: [props.formData],
+            },
+          });
+          done();
+        }, 0);
+      }));
+
+    it('calls children({ error }) upon request error', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        const children = jest.fn<React.ReactNode, unknown[]>();
+        mockLoadFormData = jest.fn(() => Promise.reject(new Error('error')));
+
+        setup({ children });
+
+        setTimeout(() => {
+          expect(children.mock.calls).toHaveLength(2); // loading + error
+          expect(children.mock.calls[1][0]).toEqual({ error: new Error('error') });
+          done();
+        }, 0);
+      }));
+
+    it('calls children({ error }) upon JS error', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        const children = jest.fn<React.ReactNode, unknown[]>();
+
+        mockLoadFormData = jest.fn(() => {
+          throw new Error('non-async error');
+        });
+
+        setup({ children });
+
+        setTimeout(() => {
+          expect(children.mock.calls).toHaveLength(2); // loading + error
+          expect(children.mock.calls[1][0]).toEqual({ error: new Error('non-async error') });
+          done();
+        }, 0);
+      }));
+  });
+
+  describe('callbacks', () => {
+    it('calls onLoad(payload) when loaded', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        const onLoaded = jest.fn<void, unknown[]>();
+        setup({ onLoaded, loadDatasource: true });
+
+        setTimeout(() => {
+          expect(onLoaded.mock.calls).toHaveLength(1);
+          expect(onLoaded.mock.calls[0][0]).toEqual({
+            formData: props.formData,
+            datasource: props.formData.datasource,
+            queriesData: [props.formData],
+          });
+          done();
+        }, 0);
+      }));
+
+    it('calls onError(error) upon request error', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        const onError = jest.fn<void, unknown[]>();
+        mockLoadFormData = jest.fn(() => Promise.reject(new Error('error')));
+
+        setup({ onError });
+        setTimeout(() => {
+          expect(onError.mock.calls).toHaveLength(1);
+          expect(onError.mock.calls[0][0]).toEqual(new Error('error'));
+          done();
+        }, 0);
+      }));
+
+    it('calls onError(error) upon JS error', () =>
+      new Promise(done => {
+        expect.assertions(2);
+        const onError = jest.fn<void, unknown[]>();
+
+        mockLoadFormData = jest.fn(() => {
+          throw new Error('non-async error');
+        });
+
+        setup({ onError });
+        setTimeout(() => {
+          expect(onError.mock.calls).toHaveLength(1);
+          expect(onError.mock.calls[0][0]).toEqual(new Error('non-async error'));
+          done();
+        }, 0);
+      }));
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/components/FallbackComponent.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart/components/FallbackComponent.test.tsx
new file mode 100644
index 0000000..0bc1d46
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/components/FallbackComponent.test.tsx
@@ -0,0 +1,38 @@
+import React from 'react';
+import { shallow } from 'enzyme';
+import FallbackComponent from '@superset-ui/core/src/chart/components/FallbackComponent';
+
+describe('FallbackComponent', () => {
+  const ERROR = new Error('CaffeineOverLoadException');
+  const STACK_TRACE = 'Error at line 1: x.drink(coffee)';
+
+  it('renders error and stack trace', () => {
+    const wrapper = shallow(<FallbackComponent componentStack={STACK_TRACE} error={ERROR} />);
+    const messages = wrapper.find('code');
+    expect(messages).toHaveLength(2);
+    expect(messages.at(0).text()).toEqual('Error: CaffeineOverLoadException');
+    expect(messages.at(1).text()).toEqual('Error at line 1: x.drink(coffee)');
+  });
+
+  it('renders error only', () => {
+    const wrapper = shallow(<FallbackComponent error={ERROR} />);
+    const messages = wrapper.find('code');
+    expect(messages).toHaveLength(1);
+    expect(messages.at(0).text()).toEqual('Error: CaffeineOverLoadException');
+  });
+
+  it('renders stacktrace only', () => {
+    const wrapper = shallow(<FallbackComponent componentStack={STACK_TRACE} />);
+    const messages = wrapper.find('code');
+    expect(messages).toHaveLength(2);
+    expect(messages.at(0).text()).toEqual('Unknown Error');
+    expect(messages.at(1).text()).toEqual('Error at line 1: x.drink(coffee)');
+  });
+
+  it('renders when nothing is given', () => {
+    const wrapper = shallow(<FallbackComponent />);
+    const messages = wrapper.find('code');
+    expect(messages).toHaveLength(1);
+    expect(messages.at(0).text()).toEqual('Unknown Error');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/components/MockChartPlugins.tsx b/superset-frontend/packages/superset-ui-core/test/chart/components/MockChartPlugins.tsx
new file mode 100644
index 0000000..1e79ede
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/components/MockChartPlugins.tsx
@@ -0,0 +1,120 @@
+/* eslint-disable max-classes-per-file */
+import React from 'react';
+import { QueryFormData } from '@superset-ui/core';
+import { ChartMetadata, ChartPlugin } from '@superset-ui/core/src/chart';
+
+const DIMENSION_STYLE = {
+  fontSize: 36,
+  fontWeight: 700,
+  flex: '1 1 auto',
+  display: 'flex',
+  alignItems: 'center',
+};
+
+export const TestComponent = ({
+  formData,
+  message,
+  width,
+  height,
+}: {
+  formData?: unknown;
+  message?: string;
+  width?: number;
+  height?: number;
+}) => (
+  <div
+    className="test-component"
+    style={{
+      width,
+      height,
+      backgroundColor: '#00d1c1',
+      color: '#fff',
+      display: 'flex',
+      flexDirection: 'column',
+      alignItems: 'center',
+      borderRadius: 8,
+    }}
+  >
+    <div className="message" style={{ padding: 10 }}>
+      {message ?? 'custom component'}
+    </div>
+    <div className="dimension" style={DIMENSION_STYLE}>
+      {[width, height].join('x')}
+    </div>
+    <div className="formData" style={{ padding: 10 }}>
+      <code style={{ color: '#D3F9F7' }}>{JSON.stringify(formData)}</code>
+    </div>
+  </div>
+);
+
+export const ChartKeys = {
+  DILIGENT: 'diligent-chart',
+  LAZY: 'lazy-chart',
+  SLOW: 'slow-chart',
+  BUGGY: 'buggy-chart',
+};
+
+export class DiligentChartPlugin extends ChartPlugin<QueryFormData> {
+  constructor() {
+    super({
+      metadata: new ChartMetadata({
+        name: ChartKeys.DILIGENT,
+        thumbnail: '',
+      }),
+      Chart: TestComponent,
+      transformProps: x => x,
+    });
+  }
+}
+
+function identity<T>(x: T) {
+  return x;
+}
+
+export class LazyChartPlugin extends ChartPlugin<QueryFormData> {
+  constructor() {
+    super({
+      metadata: new ChartMetadata({
+        name: ChartKeys.LAZY,
+        thumbnail: '',
+      }),
+      // this mirrors `() => import(module)` syntax
+      loadChart: () => Promise.resolve({ default: TestComponent }),
+      // promise without .default
+      loadTransformProps: () => Promise.resolve(identity),
+    });
+  }
+}
+
+export class SlowChartPlugin extends ChartPlugin<QueryFormData> {
+  constructor() {
+    super({
+      metadata: new ChartMetadata({
+        name: ChartKeys.SLOW,
+        thumbnail: '',
+      }),
+      loadChart: () =>
+        new Promise(resolve => {
+          setTimeout(() => {
+            resolve(TestComponent);
+          }, 1000);
+        }),
+      transformProps: x => x,
+    });
+  }
+}
+
+export class BuggyChartPlugin extends ChartPlugin<QueryFormData> {
+  constructor() {
+    super({
+      metadata: new ChartMetadata({
+        name: ChartKeys.BUGGY,
+        thumbnail: '',
+      }),
+      Chart: () => {
+        throw new Error('The component is too buggy to render.');
+      },
+      transformProps: x => x,
+    });
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/components/NoResultsComponent.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart/components/NoResultsComponent.test.tsx
new file mode 100644
index 0000000..2d8fca0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/components/NoResultsComponent.test.tsx
@@ -0,0 +1,13 @@
+import React from 'react';
+import { shallow } from 'enzyme';
+import NoResultsComponent from '@superset-ui/core/src/chart/components/NoResultsComponent';
+
+describe('NoResultsComponent', () => {
+  it('renders the no results error', () => {
+    const wrapper = shallow(<NoResultsComponent height="400" width="300" />);
+
+    expect(wrapper.text()).toEqual(
+      'No ResultsNo results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.',
+    );
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx
new file mode 100644
index 0000000..31b590b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx
@@ -0,0 +1,371 @@
+import React from 'react';
+import { mount } from 'enzyme';
+import mockConsole, { RestoreConsole } from 'jest-mock-console';
+
+import { triggerResizeObserver } from 'resize-observer-polyfill';
+import ErrorBoundary from 'react-error-boundary';
+import { promiseTimeout } from '@superset-ui/core';
+import { SuperChart } from '@superset-ui/core/src/chart';
+import RealSuperChart, { WrapperProps } from '@superset-ui/core/src/chart/components/SuperChart';
+import NoResultsComponent from '@superset-ui/core/src/chart/components/NoResultsComponent';
+
+import { ChartKeys, DiligentChartPlugin, BuggyChartPlugin } from './MockChartPlugins';
+
+const DEFAULT_QUERY_DATA = { data: ['foo', 'bar'] };
+const DEFAULT_QUERIES_DATA = [{ data: ['foo', 'bar'] }, { data: ['foo2', 'bar2'] }];
+
+function expectDimension(renderedWrapper: Cheerio, width: number, height: number) {
+  expect(renderedWrapper.find('.dimension').text()).toEqual([width, height].join('x'));
+}
+
+describe('SuperChart', () => {
+  const plugins = [
+    new DiligentChartPlugin().configure({ key: ChartKeys.DILIGENT }),
+    new BuggyChartPlugin().configure({ key: ChartKeys.BUGGY }),
+  ];
+
+  let restoreConsole: RestoreConsole;
+
+  beforeAll(() => {
+    plugins.forEach(p => {
+      p.unregister().register();
+    });
+  });
+
+  afterAll(() => {
+    plugins.forEach(p => {
+      p.unregister();
+    });
+  });
+
+  beforeEach(() => {
+    restoreConsole = mockConsole();
+  });
+
+  afterEach(() => {
+    restoreConsole();
+  });
+
+  describe('includes ErrorBoundary', () => {
+    let expectedErrors = 0;
+    let actualErrors = 0;
+    function onError(e: Event) {
+      e.preventDefault();
+      actualErrors += 1;
+    }
+
+    beforeEach(() => {
+      expectedErrors = 0;
+      actualErrors = 0;
+      window.addEventListener('error', onError);
+    });
+
+    afterEach(() => {
+      window.removeEventListener('error', onError);
+      // eslint-disable-next-line jest/no-standalone-expect
+      expect(actualErrors).toBe(expectedErrors);
+      expectedErrors = 0;
+    });
+
+    it('renders default FallbackComponent', () => {
+      expectedErrors = 1;
+      jest.spyOn(RealSuperChart.defaultProps, 'FallbackComponent');
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.BUGGY}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          width="200"
+          height="200"
+        />,
+      );
+      const renderedWrapper = wrapper.render();
+
+      return promiseTimeout(() => {
+        expect(renderedWrapper.find('div.test-component')).toHaveLength(0);
+        expect(RealSuperChart.defaultProps.FallbackComponent).toHaveBeenCalledTimes(1);
+      }, 100);
+    });
+    it('renders custom FallbackComponent', () => {
+      expectedErrors = 1;
+      const CustomFallbackComponent = jest.fn(() => <div>Custom Fallback!</div>);
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.BUGGY}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          width="200"
+          height="200"
+          FallbackComponent={CustomFallbackComponent}
+        />,
+      );
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('div.test-component')).toHaveLength(0);
+        expect(CustomFallbackComponent).toHaveBeenCalledTimes(1);
+      });
+    });
+    it('call onErrorBoundary', () => {
+      expectedErrors = 1;
+      const handleError = jest.fn();
+      mount(
+        <SuperChart
+          chartType={ChartKeys.BUGGY}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          width="200"
+          height="200"
+          onErrorBoundary={handleError}
+        />,
+      );
+
+      return promiseTimeout(() => {
+        expect(handleError).toHaveBeenCalledTimes(1);
+      });
+    });
+    it('does not include ErrorBoundary if told so', () => {
+      expectedErrors = 1;
+      const inactiveErrorHandler = jest.fn();
+      const activeErrorHandler = jest.fn();
+      mount(
+        <ErrorBoundary onError={activeErrorHandler}>
+          <SuperChart
+            disableErrorBoundary
+            chartType={ChartKeys.BUGGY}
+            queriesData={[DEFAULT_QUERY_DATA]}
+            width="200"
+            height="200"
+            onErrorBoundary={inactiveErrorHandler}
+          />
+        </ErrorBoundary>,
+      );
+
+      return promiseTimeout(() => {
+        expect(activeErrorHandler).toHaveBeenCalledTimes(1);
+        expect(inactiveErrorHandler).toHaveBeenCalledTimes(0);
+      });
+    });
+  });
+
+  it('passes the props to renderer correctly', () => {
+    const wrapper = mount(
+      <SuperChart
+        chartType={ChartKeys.DILIGENT}
+        queriesData={[DEFAULT_QUERY_DATA]}
+        width={101}
+        height={118}
+        formData={{ abc: 1 }}
+      />,
+    );
+
+    return promiseTimeout(() => {
+      const renderedWrapper = wrapper.render();
+      expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+      expectDimension(renderedWrapper, 101, 118);
+    });
+  });
+
+  it('passes the props with multiple queries to renderer correctly', () => {
+    const wrapper = mount(
+      <SuperChart
+        chartType={ChartKeys.DILIGENT}
+        queriesData={DEFAULT_QUERIES_DATA}
+        width={101}
+        height={118}
+        formData={{ abc: 1 }}
+      />,
+    );
+
+    return promiseTimeout(() => {
+      const renderedWrapper = wrapper.render();
+      expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+      expectDimension(renderedWrapper, 101, 118);
+    });
+  });
+
+  it('passes the props with multiple queries and single query to renderer correctly (backward compatibility)', () => {
+    const wrapper = mount(
+      <SuperChart
+        chartType={ChartKeys.DILIGENT}
+        queriesData={DEFAULT_QUERIES_DATA}
+        width={101}
+        height={118}
+        formData={{ abc: 1 }}
+      />,
+    );
+
+    return promiseTimeout(() => {
+      const renderedWrapper = wrapper.render();
+      expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+      expectDimension(renderedWrapper, 101, 118);
+    });
+  });
+
+  describe('supports NoResultsComponent', () => {
+    it('renders NoResultsComponent when queriesData is missing', () => {
+      const wrapper = mount(<SuperChart chartType={ChartKeys.DILIGENT} width="200" height="200" />);
+
+      expect(wrapper.find(NoResultsComponent)).toHaveLength(1);
+    });
+
+    it('renders NoResultsComponent when queriesData data is null', () => {
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.DILIGENT}
+          queriesData={[{ data: null }]}
+          width="200"
+          height="200"
+        />,
+      );
+
+      expect(wrapper.find(NoResultsComponent)).toHaveLength(1);
+    });
+  });
+
+  describe('supports dynamic width and/or height', () => {
+    it('works with width and height that are numbers', () => {
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.DILIGENT}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          width={100}
+          height={100}
+        />,
+      );
+
+      return promiseTimeout(() => {
+        const renderedWrapper = wrapper.render();
+        expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+        expectDimension(renderedWrapper, 100, 100);
+      });
+    });
+    it('works when width and height are percent', () => {
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.DILIGENT}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          debounceTime={1}
+          width="100%"
+          height="100%"
+        />,
+      );
+      triggerResizeObserver();
+
+      return promiseTimeout(() => {
+        const renderedWrapper = wrapper.render();
+        expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+        expectDimension(renderedWrapper, 300, 300);
+      }, 100);
+    });
+    it('works when only width is percent', () => {
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.DILIGENT}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          debounceTime={1}
+          width="50%"
+          height="125"
+        />,
+      );
+      triggerResizeObserver([{ contentRect: { height: 125, width: 150 } }]);
+
+      return promiseTimeout(() => {
+        const renderedWrapper = wrapper.render();
+        const boundingBox = renderedWrapper.find('div.test-component').parent().parent().parent();
+        expect(boundingBox.css('width')).toEqual('50%');
+        expect(boundingBox.css('height')).toEqual('125px');
+        expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+        expectDimension(renderedWrapper, 150, 125);
+      }, 100);
+    });
+    it('works when only height is percent', () => {
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.DILIGENT}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          debounceTime={1}
+          width="50"
+          height="25%"
+        />,
+      );
+      triggerResizeObserver([{ contentRect: { height: 75, width: 50 } }]);
+
+      return promiseTimeout(() => {
+        const renderedWrapper = wrapper.render();
+        const boundingBox = renderedWrapper.find('div.test-component').parent().parent().parent();
+        expect(boundingBox.css('width')).toEqual('50px');
+        expect(boundingBox.css('height')).toEqual('25%');
+        expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+        expectDimension(renderedWrapper, 50, 75);
+      }, 100);
+    });
+    it('works when width and height are not specified', () => {
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.DILIGENT}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          debounceTime={1}
+        />,
+      );
+      triggerResizeObserver();
+
+      return promiseTimeout(() => {
+        const renderedWrapper = wrapper.render();
+        expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+        expectDimension(renderedWrapper, 300, 400);
+      }, 100);
+    });
+  });
+
+  describe('supports Wrapper', () => {
+    function MyWrapper({ width, height, children }: WrapperProps) {
+      return (
+        <div>
+          <div className="wrapper-insert">
+            {width}x{height}
+          </div>
+          {children}
+        </div>
+      );
+    }
+
+    it('works with width and height that are numbers', () => {
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.DILIGENT}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          width={100}
+          height={100}
+          Wrapper={MyWrapper}
+        />,
+      );
+
+      return promiseTimeout(() => {
+        const renderedWrapper = wrapper.render();
+        expect(renderedWrapper.find('div.wrapper-insert')).toHaveLength(1);
+        expect(renderedWrapper.find('div.wrapper-insert').text()).toEqual('100x100');
+        expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+        expectDimension(renderedWrapper, 100, 100);
+      }, 100);
+    });
+
+    it('works when width and height are percent', () => {
+      const wrapper = mount(
+        <SuperChart
+          chartType={ChartKeys.DILIGENT}
+          queriesData={[DEFAULT_QUERY_DATA]}
+          debounceTime={1}
+          width="100%"
+          height="100%"
+          Wrapper={MyWrapper}
+        />,
+      );
+      triggerResizeObserver();
+
+      return promiseTimeout(() => {
+        const renderedWrapper = wrapper.render();
+        expect(renderedWrapper.find('div.wrapper-insert')).toHaveLength(1);
+        expect(renderedWrapper.find('div.wrapper-insert').text()).toEqual('300x300');
+        expect(renderedWrapper.find('div.test-component')).toHaveLength(1);
+        expectDimension(renderedWrapper, 300, 300);
+      }, 100);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/components/SuperChartCore.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart/components/SuperChartCore.test.tsx
new file mode 100644
index 0000000..9338f6e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/components/SuperChartCore.test.tsx
@@ -0,0 +1,178 @@
+import React from 'react';
+import { mount, shallow } from 'enzyme';
+import { promiseTimeout } from '@superset-ui/core';
+import mockConsole, { RestoreConsole } from 'jest-mock-console';
+
+import { ChartProps } from '@superset-ui/core/src/chart';
+import SuperChartCore from '@superset-ui/core/src/chart/components/SuperChartCore';
+import {
+  ChartKeys,
+  DiligentChartPlugin,
+  LazyChartPlugin,
+  SlowChartPlugin,
+} from './MockChartPlugins';
+
+describe('SuperChartCore', () => {
+  const chartProps = new ChartProps();
+
+  const plugins = [
+    new DiligentChartPlugin().configure({ key: ChartKeys.DILIGENT }),
+    new LazyChartPlugin().configure({ key: ChartKeys.LAZY }),
+    new SlowChartPlugin().configure({ key: ChartKeys.SLOW }),
+  ];
+
+  let restoreConsole: RestoreConsole;
+
+  beforeAll(() => {
+    plugins.forEach(p => {
+      p.unregister().register();
+    });
+  });
+
+  afterAll(() => {
+    plugins.forEach(p => {
+      p.unregister();
+    });
+  });
+
+  beforeEach(() => {
+    restoreConsole = mockConsole();
+  });
+
+  afterEach(() => {
+    restoreConsole();
+  });
+
+  describe('registered charts', () => {
+    it('renders registered chart', () => {
+      const wrapper = shallow(
+        <SuperChartCore chartType={ChartKeys.DILIGENT} chartProps={chartProps} />,
+      );
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('div.test-component')).toHaveLength(1);
+      });
+    });
+    it('renders registered chart with lazy loading', () => {
+      const wrapper = shallow(<SuperChartCore chartType={ChartKeys.LAZY} />);
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('div.test-component')).toHaveLength(1);
+      });
+    });
+    it('does not render if chartType is not set', () => {
+      // Suppress warning
+      // @ts-ignore chartType is required
+      const wrapper = shallow(<SuperChartCore />);
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().children()).toHaveLength(0);
+      }, 5);
+    });
+    it('adds id to container if specified', () => {
+      const wrapper = shallow(<SuperChartCore chartType={ChartKeys.DILIGENT} id="the-chart" />);
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().attr('id')).toEqual('the-chart');
+      });
+    });
+    it('adds class to container if specified', () => {
+      const wrapper = shallow(
+        <SuperChartCore chartType={ChartKeys.DILIGENT} className="the-chart" />,
+      );
+
+      return promiseTimeout(() => {
+        expect(wrapper.hasClass('the-chart')).toBeTruthy();
+      }, 0);
+    });
+    it('uses overrideTransformProps when specified', () => {
+      const wrapper = shallow(
+        <SuperChartCore
+          chartType={ChartKeys.DILIGENT}
+          overrideTransformProps={() => ({ message: 'hulk' })}
+        />,
+      );
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('.message').text()).toEqual('hulk');
+      });
+    });
+    it('uses preTransformProps when specified', () => {
+      const chartPropsWithPayload = new ChartProps({
+        queriesData: [{ message: 'hulk' }],
+      });
+      const wrapper = shallow(
+        <SuperChartCore
+          chartType={ChartKeys.DILIGENT}
+          preTransformProps={() => chartPropsWithPayload}
+          overrideTransformProps={props => props.queriesData[0]}
+        />,
+      );
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('.message').text()).toEqual('hulk');
+      });
+    });
+    it('uses postTransformProps when specified', () => {
+      const wrapper = shallow(
+        <SuperChartCore
+          chartType={ChartKeys.DILIGENT}
+          postTransformProps={() => ({ message: 'hulk' })}
+        />,
+      );
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('.message').text()).toEqual('hulk');
+      });
+    });
+    it('renders if chartProps is not specified', () => {
+      const wrapper = shallow(<SuperChartCore chartType={ChartKeys.DILIGENT} />);
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('div.test-component')).toHaveLength(1);
+      });
+    });
+    it('does not render anything while waiting for Chart code to load', () => {
+      const wrapper = shallow(<SuperChartCore chartType={ChartKeys.SLOW} />);
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().children()).toHaveLength(0);
+      });
+    });
+    it('eventually renders after Chart is loaded', () => {
+      // Suppress warning
+      const wrapper = mount(<SuperChartCore chartType={ChartKeys.SLOW} />);
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('div.test-component')).toHaveLength(1);
+      }, 1500);
+    });
+    it('does not render if chartProps is null', () => {
+      const wrapper = shallow(<SuperChartCore chartType={ChartKeys.DILIGENT} chartProps={null} />);
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('div.test-component')).toHaveLength(0);
+      });
+    });
+  });
+
+  describe('unregistered charts', () => {
+    it('renders error message', () => {
+      const wrapper = mount(<SuperChartCore chartType="4d-pie-chart" chartProps={chartProps} />);
+
+      return promiseTimeout(() => {
+        expect(wrapper.render().find('.alert')).toHaveLength(1);
+      });
+    });
+  });
+
+  describe('.processChartProps()', () => {
+    it('use identity functions for unspecified transforms', () => {
+      const chart = new SuperChartCore({
+        chartType: ChartKeys.DILIGENT,
+      });
+      const chartProps2 = new ChartProps();
+      expect(chart.processChartProps({ chartProps: chartProps2 })).toBe(chartProps2);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/components/createLoadableRenderer.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart/components/createLoadableRenderer.test.tsx
new file mode 100644
index 0000000..2bb4272
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/components/createLoadableRenderer.test.tsx
@@ -0,0 +1,126 @@
+import React from 'react';
+import { shallow } from 'enzyme';
+import mockConsole, { RestoreConsole } from 'jest-mock-console';
+import createLoadableRenderer, {
+  LoadableRenderer as LoadableRendererType,
+} from '@superset-ui/core/src/chart/components/createLoadableRenderer';
+
+describe('createLoadableRenderer', () => {
+  function TestComponent() {
+    return <div className="test-component">test</div>;
+  }
+  let loadChartSuccess = jest.fn(() => Promise.resolve(TestComponent));
+  let render: (loaded: { Chart: React.ComponentType }) => JSX.Element;
+  let loading: () => JSX.Element;
+  let LoadableRenderer: LoadableRendererType<{}, {}>;
+  let restoreConsole: RestoreConsole;
+
+  beforeEach(() => {
+    restoreConsole = mockConsole();
+    loadChartSuccess = jest.fn(() => Promise.resolve(TestComponent));
+    render = jest.fn(loaded => {
+      const { Chart } = loaded;
+
+      return <Chart />;
+    });
+    loading = jest.fn(() => <div>Loading</div>);
+
+    LoadableRenderer = createLoadableRenderer({
+      loader: {
+        Chart: loadChartSuccess,
+      },
+      loading,
+      render,
+    });
+  });
+
+  afterEach(() => {
+    restoreConsole();
+  });
+
+  describe('returns a LoadableRenderer class', () => {
+    it('LoadableRenderer.preload() preloads the lazy-load components', () => {
+      expect(LoadableRenderer.preload).toBeInstanceOf(Function);
+      LoadableRenderer.preload();
+      expect(loadChartSuccess).toHaveBeenCalledTimes(1);
+    });
+
+    it('calls onRenderSuccess when succeeds', async () => {
+      const onRenderSuccess = jest.fn();
+      const onRenderFailure = jest.fn();
+      shallow(
+        <LoadableRenderer onRenderSuccess={onRenderSuccess} onRenderFailure={onRenderFailure} />,
+      );
+      expect(loadChartSuccess).toHaveBeenCalled();
+      jest.useRealTimers();
+      await new Promise(resolve => setTimeout(resolve, 10));
+      expect(render).toHaveBeenCalledTimes(1);
+      expect(onRenderSuccess).toHaveBeenCalledTimes(1);
+      expect(onRenderFailure).not.toHaveBeenCalled();
+    });
+
+    it('calls onRenderFailure when fails', () =>
+      new Promise(done => {
+        const loadChartFailure = jest.fn(() => Promise.reject(new Error('Invalid chart')));
+        const FailedRenderer = createLoadableRenderer({
+          loader: {
+            Chart: loadChartFailure,
+          },
+          loading,
+          render,
+        });
+        const onRenderSuccess = jest.fn();
+        const onRenderFailure = jest.fn();
+        shallow(
+          <FailedRenderer onRenderSuccess={onRenderSuccess} onRenderFailure={onRenderFailure} />,
+        );
+        expect(loadChartFailure).toHaveBeenCalledTimes(1);
+        setTimeout(() => {
+          expect(render).not.toHaveBeenCalled();
+          expect(onRenderSuccess).not.toHaveBeenCalled();
+          expect(onRenderFailure).toHaveBeenCalledTimes(1);
+          done();
+        }, 10);
+      }));
+
+    it('onRenderFailure is optional', () =>
+      new Promise(done => {
+        const loadChartFailure = jest.fn(() => Promise.reject(new Error('Invalid chart')));
+        const FailedRenderer = createLoadableRenderer({
+          loader: {
+            Chart: loadChartFailure,
+          },
+          loading,
+          render,
+        });
+        shallow(<FailedRenderer />);
+        expect(loadChartFailure).toHaveBeenCalledTimes(1);
+        setTimeout(() => {
+          expect(render).not.toHaveBeenCalled();
+          done();
+        }, 10);
+      }));
+
+    it('renders the lazy-load components', () =>
+      new Promise(done => {
+        const wrapper = shallow(<LoadableRenderer />);
+        // lazy-loaded component not rendered immediately
+        expect(wrapper.find(TestComponent)).toHaveLength(0);
+        setTimeout(() => {
+          // but rendered after the component is loaded.
+          expect(wrapper.find(TestComponent)).toHaveLength(1);
+          done();
+        }, 10);
+      }));
+
+    it('does not throw if loaders are empty', () => {
+      const NeverLoadingRenderer = createLoadableRenderer({
+        loader: {},
+        loading,
+        render: () => <div />,
+      });
+
+      expect(() => shallow(<NeverLoadingRenderer />)).not.toThrow();
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/components/reactify.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart/components/reactify.test.tsx
new file mode 100644
index 0000000..d8f7845
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/components/reactify.test.tsx
@@ -0,0 +1,115 @@
+import PropTypes from 'prop-types';
+import React from 'react';
+import { mount } from 'enzyme';
+import reactify, { RenderFuncType } from '@superset-ui/core/src/chart/components/reactify';
+
+describe('reactify(renderFn)', () => {
+  const renderFn: RenderFuncType<{ content?: string }> = jest.fn((element, props) => {
+    const container = element;
+    container.innerHTML = '';
+    const child = document.createElement('b');
+    child.innerHTML = props.content ?? '';
+    container.append(child);
+  });
+
+  renderFn.displayName = 'BoldText';
+
+  renderFn.propTypes = {
+    content: PropTypes.string,
+  };
+
+  renderFn.defaultProps = {
+    content: 'ghi',
+  };
+
+  const willUnmountCb = jest.fn();
+
+  const TheChart = reactify(renderFn);
+  const TheChartWithWillUnmountHook = reactify(renderFn, { componentWillUnmount: willUnmountCb });
+
+  class TestComponent extends React.PureComponent<{}, { content: string }> {
+    constructor(props = {}) {
+      super(props);
+      this.state = { content: 'abc' };
+    }
+
+    componentDidMount() {
+      setTimeout(() => {
+        this.setState({ content: 'def' });
+      }, 10);
+    }
+
+    render() {
+      const { content } = this.state;
+
+      return <TheChart id="test" content={content} />;
+    }
+  }
+
+  class AnotherTestComponent extends React.PureComponent<{}, {}> {
+    render() {
+      return <TheChartWithWillUnmountHook id="another_test" />;
+    }
+  }
+
+  it('returns a React component class', () =>
+    new Promise(done => {
+      const wrapper = mount(<TestComponent />);
+
+      expect(renderFn).toHaveBeenCalledTimes(1);
+      expect(wrapper.html()).toEqual('<div id="test"><b>abc</b></div>');
+      setTimeout(() => {
+        expect(renderFn).toHaveBeenCalledTimes(2);
+        expect(wrapper.html()).toEqual('<div id="test"><b>def</b></div>');
+        wrapper.unmount();
+        done();
+      }, 20);
+    }));
+  describe('displayName', () => {
+    it('has displayName if renderFn.displayName is defined', () => {
+      expect(TheChart.displayName).toEqual('BoldText');
+    });
+    it('does not have displayName if renderFn.displayName is not defined', () => {
+      const AnotherChart = reactify(() => {});
+      expect(AnotherChart.displayName).toBeUndefined();
+    });
+  });
+  describe('propTypes', () => {
+    it('has propTypes if renderFn.propTypes is defined', () => {
+      /* eslint-disable-next-line react/forbid-foreign-prop-types */
+      expect(Object.keys(TheChart.propTypes ?? {})).toEqual(['id', 'className', 'content']);
+    });
+    it('does not have propTypes if renderFn.propTypes is not defined', () => {
+      const AnotherChart = reactify(() => {});
+      /* eslint-disable-next-line react/forbid-foreign-prop-types */
+      expect(Object.keys(AnotherChart.propTypes ?? {})).toEqual(['id', 'className']);
+    });
+  });
+  describe('defaultProps', () => {
+    it('has defaultProps if renderFn.defaultProps is defined', () => {
+      expect(TheChart.defaultProps).toBe(renderFn.defaultProps);
+      const wrapper = mount(<TheChart id="test" />);
+      expect(wrapper.html()).toEqual('<div id="test"><b>ghi</b></div>');
+    });
+    it('does not have defaultProps if renderFn.defaultProps is not defined', () => {
+      const AnotherChart = reactify(() => {});
+      expect(AnotherChart.defaultProps).toBeUndefined();
+    });
+  });
+  it('does not try to render if not mounted', () => {
+    const anotherRenderFn = jest.fn();
+    const AnotherChart = reactify(anotherRenderFn); // enables valid new AnotherChart() call
+    // @ts-ignore
+    new AnotherChart({ id: 'test' }).execute();
+    expect(anotherRenderFn).not.toHaveBeenCalled();
+  });
+  it('calls willUnmount hook when it is provided', () =>
+    new Promise(done => {
+      const wrapper = mount(<AnotherTestComponent />);
+      setTimeout(() => {
+        wrapper.unmount();
+        expect(willUnmountCb).toHaveBeenCalledTimes(1);
+        done();
+      }, 20);
+    }));
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/fixtures/constants.ts b/superset-frontend/packages/superset-ui-core/test/chart/fixtures/constants.ts
new file mode 100644
index 0000000..4457bc0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/fixtures/constants.ts
@@ -0,0 +1 @@
+export const LOGIN_GLOB = 'glob:*superset/csrf_token/*'; // eslint-disable-line import/prefer-default-export
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/fixtures/formData.ts b/superset-frontend/packages/superset-ui-core/test/chart/fixtures/formData.ts
new file mode 100644
index 0000000..d7b7f8b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/fixtures/formData.ts
@@ -0,0 +1,64 @@
+/* eslint sort-keys: 'off' */
+/** The form data defined here is based on default visualizations packaged with Apache Superset */
+
+export const bigNumberFormData = {
+  datasource: '3__table',
+  viz_type: 'big_number',
+  slice_id: 54,
+  granularity_sqla: 'ds',
+  time_grain_sqla: 'P1D',
+  time_range: '100 years ago : now',
+  metric: 'sum__num',
+  adhoc_filters: [],
+  compare_lag: '5',
+  compare_suffix: 'over 5Y',
+  y_axis_format: '.3s',
+  show_trend_line: true,
+  start_y_axis_at_zero: true,
+};
+
+export const wordCloudFormData = {
+  datasource: '3__table',
+  viz_type: 'word_cloud',
+  slice_id: 60,
+  url_params: {},
+  granularity_sqla: 'ds',
+  time_grain_sqla: 'P1D',
+  time_range: '100 years ago : now',
+  series: 'name',
+  metric: 'sum__num',
+  adhoc_filters: [],
+  row_limit: 50,
+  size_from: 10,
+  size_to: 70,
+  rotation: 'square',
+};
+
+export const sunburstFormData = {
+  datasource: '2__table',
+  viz_type: 'sunburst',
+  slice_id: 47,
+  url_params: {},
+  granularity_sqla: 'year',
+  time_grain_sqla: 'P1D',
+  time_range: '2011-01-01 : 2011-01-01',
+  groupby: ['region', 'country_name'],
+  metric: 'sum__SP_POP_TOTL',
+  secondary_metric: 'sum__SP_RUR_TOTL',
+  adhoc_filters: [],
+  row_limit: 10000,
+};
+
+export const sankeyFormData = {
+  datasource: '1__table',
+  viz_type: 'sankey',
+  slice_id: 1,
+  url_params: {},
+  granularity_sqla: null,
+  time_grain_sqla: 'P1D',
+  time_range: 'Last week',
+  groupby: ['source', 'target'],
+  metric: 'sum__value',
+  adhoc_filters: [],
+  row_limit: 1000,
+};
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/index.test.ts b/superset-frontend/packages/superset-ui-core/test/chart/index.test.ts
new file mode 100644
index 0000000..024d60e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/index.test.ts
@@ -0,0 +1,31 @@
+import {
+  ChartClient,
+  ChartMetadata,
+  ChartPlugin,
+  ChartProps,
+  createLoadableRenderer,
+  getChartBuildQueryRegistry,
+  getChartComponentRegistry,
+  getChartControlPanelRegistry,
+  getChartMetadataRegistry,
+  getChartTransformPropsRegistry,
+  reactify,
+} from '@superset-ui/core/src/chart';
+
+describe('index', () => {
+  it('exports modules', () => {
+    [
+      ChartClient,
+      ChartMetadata,
+      ChartPlugin,
+      ChartProps,
+      createLoadableRenderer,
+      getChartBuildQueryRegistry,
+      getChartComponentRegistry,
+      getChartControlPanelRegistry,
+      getChartMetadataRegistry,
+      getChartTransformPropsRegistry,
+      reactify,
+    ].forEach(x => expect(x).toBeDefined());
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/models/ChartMetadata.test.ts b/superset-frontend/packages/superset-ui-core/test/chart/models/ChartMetadata.test.ts
new file mode 100644
index 0000000..7b63c17
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/models/ChartMetadata.test.ts
@@ -0,0 +1,54 @@
+import ChartMetadata from '@superset-ui/core/src/chart/models/ChartMetadata';
+
+describe('ChartMetadata', () => {
+  it('exists', () => {
+    expect(ChartMetadata).toBeDefined();
+  });
+  describe('new ChartMetadata({})', () => {
+    it('creates new metadata instance', () => {
+      const metadata = new ChartMetadata({
+        name: 'test chart',
+        credits: [],
+        description: 'some kind of chart',
+        thumbnail: 'test.png',
+      });
+      expect(metadata).toBeInstanceOf(ChartMetadata);
+    });
+  });
+  describe('.canBeAnnotationType(type)', () => {
+    const metadata = new ChartMetadata({
+      name: 'test chart',
+      canBeAnnotationTypes: ['event'],
+      credits: [],
+      description: 'some kind of chart',
+      thumbnail: 'test.png',
+    });
+    it('returns true if can', () => {
+      expect(metadata.canBeAnnotationType('event')).toBeTruthy();
+    });
+    it('returns false otherwise', () => {
+      expect(metadata.canBeAnnotationType('invalid-type')).toBeFalsy();
+    });
+  });
+  describe('.clone()', () => {
+    const metadata = new ChartMetadata({
+      name: 'test chart',
+      canBeAnnotationTypes: ['event'],
+      credits: [],
+      description: 'some kind of chart',
+      thumbnail: 'test.png',
+    });
+    const clone = metadata.clone();
+
+    it('returns a new instance', () => {
+      expect(metadata).not.toBe(clone);
+    });
+    it('returns a new instance with same field values', () => {
+      expect(metadata.name).toEqual(clone.name);
+      expect(metadata.credits).toEqual(clone.credits);
+      expect(metadata.description).toEqual(clone.description);
+      expect(metadata.canBeAnnotationTypes).toEqual(clone.canBeAnnotationTypes);
+      expect(metadata.thumbnail).toEqual(clone.thumbnail);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx b/superset-frontend/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx
new file mode 100644
index 0000000..8b0d358
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx
@@ -0,0 +1,230 @@
+import React from 'react';
+import { QueryFormData, DatasourceType } from '@superset-ui/core';
+import {
+  ChartPlugin,
+  ChartMetadata,
+  ChartProps,
+  BuildQueryFunction,
+  TransformProps,
+  getChartMetadataRegistry,
+  getChartComponentRegistry,
+  getChartTransformPropsRegistry,
+  getChartBuildQueryRegistry,
+  getChartControlPanelRegistry,
+} from '@superset-ui/core/src/chart';
+
+describe('ChartPlugin', () => {
+  const FakeChart = () => <span>test</span>;
+
+  const metadata = new ChartMetadata({
+    name: 'test-chart',
+    thumbnail: '',
+  });
+
+  const buildQuery = () => ({
+    datasource: { id: 1, type: DatasourceType.Table },
+    queries: [{ granularity: 'day' }],
+    force: false,
+    result_format: 'json',
+    result_type: 'full',
+  });
+
+  const controlPanel = { abc: 1 };
+
+  it('exists', () => {
+    expect(ChartPlugin).toBeDefined();
+  });
+
+  describe('new ChartPlugin()', () => {
+    const FORM_DATA = {
+      datasource: '1__table',
+      granularity: 'day',
+      viz_type: 'table',
+    };
+
+    it('creates a new plugin', () => {
+      const plugin = new ChartPlugin({
+        metadata,
+        Chart: FakeChart,
+      });
+      expect(plugin).toBeInstanceOf(ChartPlugin);
+    });
+    describe('buildQuery', () => {
+      it('defaults to undefined', () => {
+        const plugin = new ChartPlugin({
+          metadata,
+          Chart: FakeChart,
+        });
+        expect(plugin.loadBuildQuery).toBeUndefined();
+      });
+      it('uses loadBuildQuery field if specified', () => {
+        expect.assertions(2);
+        const plugin = new ChartPlugin({
+          metadata,
+          Chart: FakeChart,
+          loadBuildQuery: () => buildQuery,
+        });
+
+        const fn = plugin.loadBuildQuery!() as BuildQueryFunction<QueryFormData>;
+        expect(fn(FORM_DATA).queries[0]).toEqual({ granularity: 'day' });
+        expect(fn(FORM_DATA).force).toEqual(false);
+      });
+      it('uses buildQuery field if specified', () => {
+        expect.assertions(1);
+        const plugin = new ChartPlugin({
+          metadata,
+          Chart: FakeChart,
+          buildQuery,
+        });
+
+        const fn = plugin.loadBuildQuery!() as BuildQueryFunction<QueryFormData>;
+        expect(fn(FORM_DATA).queries[0]).toEqual({ granularity: 'day' });
+      });
+    });
+    describe('Chart', () => {
+      it('uses loadChart if specified', () => {
+        const loadChart = () => FakeChart;
+        const plugin = new ChartPlugin({
+          metadata,
+          loadChart,
+        });
+        // the loader is sanitized, so assert on the value
+        expect(plugin.loadChart()).toBe(loadChart());
+      });
+      it('uses Chart field if specified', () => {
+        const plugin = new ChartPlugin({
+          metadata,
+          Chart: FakeChart,
+        });
+        expect(plugin.loadChart()).toEqual(FakeChart);
+      });
+      it('throws an error if none of Chart or loadChart is specified', () => {
+        expect(() => new ChartPlugin({ metadata })).toThrow(Error);
+      });
+    });
+    describe('transformProps', () => {
+      const PROPS = new ChartProps({
+        formData: FORM_DATA,
+        width: 400,
+        height: 400,
+        queriesData: [{}],
+      });
+      it('defaults to identity function', () => {
+        const plugin = new ChartPlugin({
+          metadata,
+          Chart: FakeChart,
+        });
+        const fn = plugin.loadTransformProps() as TransformProps;
+        expect(fn(PROPS)).toBe(PROPS);
+      });
+      it('uses loadTransformProps field if specified', () => {
+        const plugin = new ChartPlugin({
+          metadata,
+          Chart: FakeChart,
+          loadTransformProps: () => () => ({ field2: 2 }),
+        });
+        const fn = plugin.loadTransformProps() as TransformProps;
+        expect(fn(PROPS)).toEqual({ field2: 2 });
+      });
+      it('uses transformProps field if specified', () => {
+        const plugin = new ChartPlugin({
+          metadata,
+          Chart: FakeChart,
+          transformProps: () => ({ field2: 2 }),
+        });
+        const fn = plugin.loadTransformProps() as TransformProps;
+        expect(fn(PROPS)).toEqual({ field2: 2 });
+      });
+    });
+    describe('controlPanel', () => {
+      it('takes controlPanel from input', () => {
+        const plugin = new ChartPlugin({
+          metadata,
+          Chart: FakeChart,
+          controlPanel,
+        });
+        expect(plugin.controlPanel).toBe(controlPanel);
+      });
+      it('defaults to empty object', () => {
+        const plugin = new ChartPlugin({
+          metadata,
+          Chart: FakeChart,
+        });
+        expect(plugin.controlPanel).toEqual({});
+      });
+    });
+  });
+
+  describe('.register()', () => {
+    let plugin: ChartPlugin;
+
+    beforeEach(() => {
+      plugin = new ChartPlugin({
+        metadata,
+        Chart: FakeChart,
+        buildQuery,
+        controlPanel,
+      });
+    });
+
+    it('throws an error if key is not provided', () => {
+      expect(() => plugin.register()).toThrow(Error);
+      expect(() => plugin.configure({ key: 'ab' }).register()).not.toThrow(Error);
+    });
+    it('add the plugin to the registries', () => {
+      plugin.configure({ key: 'cd' }).register();
+      expect(getChartMetadataRegistry().get('cd')).toBe(metadata);
+      expect(getChartComponentRegistry().get('cd')).toBe(FakeChart);
+      expect(getChartTransformPropsRegistry().has('cd')).toEqual(true);
+      expect(getChartBuildQueryRegistry().get('cd')).toBe(buildQuery);
+      expect(getChartControlPanelRegistry().get('cd')).toBe(controlPanel);
+    });
+    it('does not register buildQuery when it is not specified in the ChartPlugin', () => {
+      new ChartPlugin({
+        metadata,
+        Chart: FakeChart,
+      })
+        .configure({ key: 'ef' })
+        .register();
+      expect(getChartBuildQueryRegistry().has('ef')).toEqual(false);
+    });
+    it('returns itself', () => {
+      expect(plugin.configure({ key: 'gh' }).register()).toBe(plugin);
+    });
+  });
+
+  describe('.unregister()', () => {
+    let plugin: ChartPlugin;
+
+    beforeEach(() => {
+      plugin = new ChartPlugin({
+        metadata,
+        Chart: FakeChart,
+        buildQuery,
+        controlPanel,
+      });
+    });
+
+    it('throws an error if key is not provided', () => {
+      expect(() => plugin.unregister()).toThrow(Error);
+      expect(() => plugin.configure({ key: 'abc' }).unregister()).not.toThrow(Error);
+    });
+    it('removes the chart from the registries', () => {
+      plugin.configure({ key: 'def' }).register();
+      expect(getChartMetadataRegistry().get('def')).toBe(metadata);
+      expect(getChartComponentRegistry().get('def')).toBe(FakeChart);
+      expect(getChartTransformPropsRegistry().has('def')).toEqual(true);
+      expect(getChartBuildQueryRegistry().get('def')).toBe(buildQuery);
+      expect(getChartControlPanelRegistry().get('def')).toBe(controlPanel);
+      plugin.unregister();
+      expect(getChartMetadataRegistry().has('def')).toBeFalsy();
+      expect(getChartComponentRegistry().has('def')).toBeFalsy();
+      expect(getChartTransformPropsRegistry().has('def')).toBeFalsy();
+      expect(getChartBuildQueryRegistry().has('def')).toBeFalsy();
+      expect(getChartControlPanelRegistry().has('def')).toBeFalsy();
+    });
+    it('returns itself', () => {
+      expect(plugin.configure({ key: 'xyz' }).unregister()).toBe(plugin);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/chart/models/ChartProps.test.ts b/superset-frontend/packages/superset-ui-core/test/chart/models/ChartProps.test.ts
new file mode 100644
index 0000000..b5f9b4f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/chart/models/ChartProps.test.ts
@@ -0,0 +1,90 @@
+import { ChartProps } from '@superset-ui/core/src';
+
+const RAW_FORM_DATA = {
+  some_field: 1,
+};
+
+const RAW_DATASOURCE = {
+  column_formats: { test: '%s' },
+};
+
+const QUERY_DATA = { data: {} };
+const QUERIES_DATA = [QUERY_DATA];
+
+describe('ChartProps', () => {
+  it('exists', () => {
+    expect(ChartProps).toBeDefined();
+  });
+  describe('new ChartProps({})', () => {
+    it('returns new instance', () => {
+      const props = new ChartProps({
+        width: 800,
+        height: 600,
+        formData: RAW_FORM_DATA,
+        queriesData: QUERIES_DATA,
+      });
+      expect(props).toBeInstanceOf(ChartProps);
+    });
+    it('processes formData and datasource to convert field names to camelCase', () => {
+      const props = new ChartProps({
+        width: 800,
+        height: 600,
+        datasource: RAW_DATASOURCE,
+        formData: RAW_FORM_DATA,
+        queriesData: QUERIES_DATA,
+      });
+      expect(props.formData.someField as number).toEqual(1);
+      expect(props.datasource.columnFormats).toEqual(RAW_DATASOURCE.column_formats);
+      expect(props.rawFormData).toEqual(RAW_FORM_DATA);
+      expect(props.rawDatasource).toEqual(RAW_DATASOURCE);
+    });
+  });
+  describe('ChartProps.createSelector()', () => {
+    const selector = ChartProps.createSelector();
+    it('returns a selector function', () => {
+      expect(selector).toBeInstanceOf(Function);
+    });
+    it('selector returns previous chartProps if all input fields do not change', () => {
+      const props1 = selector({
+        width: 800,
+        height: 600,
+        datasource: RAW_DATASOURCE,
+        formData: RAW_FORM_DATA,
+        queriesData: QUERIES_DATA,
+      });
+      const props2 = selector({
+        width: 800,
+        height: 600,
+        datasource: RAW_DATASOURCE,
+        formData: RAW_FORM_DATA,
+        queriesData: QUERIES_DATA,
+      });
+      expect(props1).toBe(props2);
+    });
+    it('selector returns a new chartProps if some input fields change', () => {
+      const props1 = selector({
+        width: 800,
+        height: 600,
+        datasource: RAW_DATASOURCE,
+        formData: RAW_FORM_DATA,
+        queriesData: QUERIES_DATA,
+      });
+      const props2 = selector({
+        width: 800,
+        height: 600,
+        datasource: RAW_DATASOURCE,
+        formData: { new_field: 3 },
+        queriesData: QUERIES_DATA,
+      });
+      const props3 = selector({
+        width: 800,
+        height: 600,
+        datasource: RAW_DATASOURCE,
+        formData: RAW_FORM_DATA,
+        queriesData: QUERIES_DATA,
+      });
+      expect(props1).not.toBe(props2);
+      expect(props1).not.toBe(props3);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/color/CategoricalColorNameSpace.test.ts b/superset-frontend/packages/superset-ui-core/test/color/CategoricalColorNameSpace.test.ts
new file mode 100644
index 0000000..fa2f193
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/color/CategoricalColorNameSpace.test.ts
@@ -0,0 +1,149 @@
+import CategoricalColorNamespace, {
+  getNamespace,
+  getScale,
+  getColor,
+  DEFAULT_NAMESPACE,
+} from '@superset-ui/core/src/color/CategoricalColorNamespace';
+import getCategoricalSchemeRegistry from '@superset-ui/core/src/color/CategoricalSchemeRegistrySingleton';
+import CategoricalScheme from '@superset-ui/core/src/color/CategoricalScheme';
+
+describe('CategoricalColorNamespace', () => {
+  beforeAll(() => {
+    getCategoricalSchemeRegistry()
+      .registerValue(
+        'testColors',
+        new CategoricalScheme({
+          id: 'testColors',
+          colors: ['red', 'green', 'blue'],
+        }),
+      )
+      .registerValue(
+        'testColors2',
+        new CategoricalScheme({
+          id: 'testColors2',
+          colors: ['red', 'green', 'blue'],
+        }),
+      );
+  });
+  it('The class constructor cannot be accessed directly', () => {
+    expect(typeof CategoricalColorNamespace).not.toBe('Function');
+  });
+  describe('static getNamespace()', () => {
+    it('returns default namespace if name is not specified', () => {
+      const namespace = getNamespace();
+      expect(namespace !== undefined).toBe(true);
+      expect(namespace.name).toBe(DEFAULT_NAMESPACE);
+    });
+    it('returns namespace with specified name', () => {
+      const namespace = getNamespace('myNamespace');
+      expect(namespace !== undefined).toBe(true);
+      expect(namespace.name).toBe('myNamespace');
+    });
+    it('returns existing instance if the name already exists', () => {
+      const ns1 = getNamespace('myNamespace');
+      const ns2 = getNamespace('myNamespace');
+      expect(ns1).toBe(ns2);
+      const ns3 = getNamespace();
+      const ns4 = getNamespace();
+      expect(ns3).toBe(ns4);
+    });
+  });
+  describe('.getScale()', () => {
+    it('returns a CategoricalColorScale from given scheme name', () => {
+      const namespace = getNamespace('test-get-scale1');
+      const scale = namespace.getScale('testColors');
+      expect(scale).toBeDefined();
+      expect(scale.getColor('dog')).toBeDefined();
+    });
+    it('returns a scale when a schemeId is not specified and there is no default key', () => {
+      getCategoricalSchemeRegistry().clearDefaultKey();
+      const namespace = getNamespace('new-space');
+      const scale = namespace.getScale();
+      expect(scale).toBeDefined();
+      getCategoricalSchemeRegistry().setDefaultKey('testColors');
+    });
+    it('returns same scale if the scale with that name already exists in this namespace', () => {
+      const namespace = getNamespace('test-get-scale2');
+      const scale1 = namespace.getScale('testColors');
+      const scale2 = namespace.getScale('testColors2');
+      const scale3 = namespace.getScale('testColors2');
+      const scale4 = namespace.getScale('testColors');
+      expect(scale1).toBe(scale4);
+      expect(scale2).toBe(scale3);
+    });
+  });
+  describe('.setColor()', () => {
+    it('overwrites color for all CategoricalColorScales in this namespace', () => {
+      const namespace = getNamespace('test-set-scale1');
+      namespace.setColor('dog', 'black');
+      const scale = namespace.getScale('testColors');
+      expect(scale.getColor('dog')).toBe('black');
+      expect(scale.getColor('boy')).not.toBe('black');
+    });
+    it('can override forcedColors in each scale', () => {
+      const namespace = getNamespace('test-set-scale2');
+      namespace.setColor('dog', 'black');
+      const scale = namespace.getScale('testColors');
+      scale.setColor('dog', 'pink');
+      expect(scale.getColor('dog')).toBe('black');
+      expect(scale.getColor('boy')).not.toBe('black');
+    });
+    it('does not affect scales in other namespaces', () => {
+      const ns1 = getNamespace('test-set-scale3.1');
+      ns1.setColor('dog', 'black');
+      const scale1 = ns1.getScale('testColors');
+      const ns2 = getNamespace('test-set-scale3.2');
+      const scale2 = ns2.getScale('testColors');
+      expect(scale1.getColor('dog')).toBe('black');
+      expect(scale2.getColor('dog')).not.toBe('black');
+    });
+    it('returns the namespace instance', () => {
+      const ns1 = getNamespace('test-set-scale3.1');
+      const ns2 = ns1.setColor('dog', 'black');
+      expect(ns1).toBe(ns2);
+    });
+  });
+  describe('static getScale()', () => {
+    it('getScale() returns a CategoricalColorScale with default scheme in default namespace', () => {
+      const scale = getScale();
+      expect(scale).toBeDefined();
+      const scale2 = getNamespace().getScale();
+      expect(scale).toBe(scale2);
+    });
+    it('getScale(scheme) returns a CategoricalColorScale with specified scheme in default namespace', () => {
+      const scale = getScale('testColors');
+      expect(scale).toBeDefined();
+      const scale2 = getNamespace().getScale('testColors');
+      expect(scale).toBe(scale2);
+    });
+    it('getScale(scheme, namespace) returns a CategoricalColorScale with specified scheme in specified namespace', () => {
+      const scale = getScale('testColors', 'test-getScale');
+      expect(scale).toBeDefined();
+      const scale2 = getNamespace('test-getScale').getScale('testColors');
+      expect(scale).toBe(scale2);
+    });
+  });
+  describe('static getColor()', () => {
+    it('getColor(value) returns a color from default scheme in default namespace', () => {
+      const value = 'dog';
+      const color = getColor(value);
+      const color2 = getNamespace().getScale().getColor(value);
+      expect(color).toBe(color2);
+    });
+    it('getColor(value, scheme) returns a color from specified scheme in default namespace', () => {
+      const value = 'dog';
+      const scheme = 'testColors';
+      const color = getColor(value, scheme);
+      const color2 = getNamespace().getScale(scheme).getColor(value);
+      expect(color).toBe(color2);
+    });
+    it('getColor(value, scheme, namespace) returns a color from specified scheme in specified namespace', () => {
+      const value = 'dog';
+      const scheme = 'testColors';
+      const namespace = 'test-getColor';
+      const color = getColor(value, scheme, namespace);
+      const color2 = getNamespace(namespace).getScale(scheme).getColor(value);
+      expect(color).toBe(color2);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/color/CategoricalColorScale.test.ts b/superset-frontend/packages/superset-ui-core/test/color/CategoricalColorScale.test.ts
new file mode 100644
index 0000000..1c027a0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/color/CategoricalColorScale.test.ts
@@ -0,0 +1,169 @@
+import { ScaleOrdinal } from 'd3-scale';
+import CategoricalColorScale from '@superset-ui/core/src/color/CategoricalColorScale';
+
+describe('CategoricalColorScale', () => {
+  it('exists', () => {
+    expect(CategoricalColorScale !== undefined).toBe(true);
+  });
+
+  describe('new CategoricalColorScale(colors, parentForcedColors)', () => {
+    it('can create new scale when parentForcedColors is not given', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      expect(scale).toBeInstanceOf(CategoricalColorScale);
+    });
+    it('can create new scale when parentForcedColors is given', () => {
+      const parentForcedColors = {};
+      const scale = new CategoricalColorScale(['blue', 'red', 'green'], parentForcedColors);
+      expect(scale).toBeInstanceOf(CategoricalColorScale);
+      expect(scale.parentForcedColors).toBe(parentForcedColors);
+    });
+  });
+  describe('.getColor(value)', () => {
+    it('returns same color for same value', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      const c1 = scale.getColor('pig');
+      const c2 = scale.getColor('horse');
+      const c3 = scale.getColor('pig');
+      scale.getColor('cow');
+      const c5 = scale.getColor('horse');
+
+      expect(c1).toBe(c3);
+      expect(c2).toBe(c5);
+    });
+    it('returns different color for consecutive items', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      const c1 = scale.getColor('pig');
+      const c2 = scale.getColor('horse');
+      const c3 = scale.getColor('cat');
+
+      expect(c1).not.toBe(c2);
+      expect(c2).not.toBe(c3);
+      expect(c3).not.toBe(c1);
+    });
+    it('recycles colors when number of items exceed available colors', () => {
+      const colorSet: { [key: string]: number } = {};
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      const colors = [
+        scale.getColor('pig'),
+        scale.getColor('horse'),
+        scale.getColor('cat'),
+        scale.getColor('cow'),
+        scale.getColor('donkey'),
+        scale.getColor('goat'),
+      ];
+      colors.forEach(color => {
+        if (colorSet[color]) {
+          colorSet[color] += 1;
+        } else {
+          colorSet[color] = 1;
+        }
+      });
+      expect(Object.keys(colorSet)).toHaveLength(3);
+      ['blue', 'red', 'green'].forEach(color => {
+        expect(colorSet[color]).toBe(2);
+      });
+    });
+  });
+  describe('.setColor(value, forcedColor)', () => {
+    it('overrides default color', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      scale.setColor('pig', 'pink');
+      expect(scale.getColor('pig')).toBe('pink');
+    });
+    it('does not override parentForcedColors', () => {
+      const scale1 = new CategoricalColorScale(['blue', 'red', 'green']);
+      scale1.setColor('pig', 'black');
+      const scale2 = new CategoricalColorScale(['blue', 'red', 'green'], scale1.forcedColors);
+      scale2.setColor('pig', 'pink');
+      expect(scale1.getColor('pig')).toBe('black');
+      expect(scale2.getColor('pig')).toBe('black');
+    });
+    it('returns the scale', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      const output = scale.setColor('pig', 'pink');
+      expect(scale).toBe(output);
+    });
+  });
+  describe('.getColorMap()', () => {
+    it('returns correct mapping and parentForcedColors and forcedColors are specified', () => {
+      const scale1 = new CategoricalColorScale(['blue', 'red', 'green']);
+      scale1.setColor('cow', 'black');
+      const scale2 = new CategoricalColorScale(['blue', 'red', 'green'], scale1.forcedColors);
+      scale2.setColor('pig', 'pink');
+      scale2.getColor('cow');
+      scale2.getColor('pig');
+      scale2.getColor('horse');
+      expect(scale2.getColorMap()).toEqual({
+        cow: 'black',
+        pig: 'pink',
+        horse: 'blue',
+      });
+    });
+  });
+
+  describe('.copy()', () => {
+    it('returns a copy', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      const copy = scale.copy();
+      expect(copy).not.toBe(scale);
+      expect(copy('cat')).toEqual(scale('cat'));
+      expect(copy.domain()).toEqual(scale.domain());
+      expect(copy.range()).toEqual(scale.range());
+      expect(copy.unknown()).toEqual(scale.unknown());
+    });
+  });
+  describe('.domain()', () => {
+    it('when called without argument, returns domain', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      scale.getColor('pig');
+      expect(scale.domain()).toEqual(['pig']);
+    });
+    it('when called with argument, sets domain', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      scale.domain(['dog', 'pig', 'cat']);
+      expect(scale('pig')).toEqual('red');
+    });
+  });
+  describe('.range()', () => {
+    it('when called without argument, returns range', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      expect(scale.range()).toEqual(['blue', 'red', 'green']);
+    });
+    it('when called with argument, sets range', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      scale.range(['pink', 'gray', 'yellow']);
+      expect(scale.range()).toEqual(['pink', 'gray', 'yellow']);
+    });
+  });
+  describe('.unknown()', () => {
+    it('when called without argument, returns output for unknown value', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      scale.unknown('#666');
+      expect(scale.unknown()).toEqual('#666');
+    });
+    it('when called with argument, sets output for unknown value', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      scale.unknown('#222');
+      expect(scale.unknown()).toEqual('#222');
+    });
+  });
+
+  describe('a CategoricalColorScale instance is also a color function itself', () => {
+    it('scale(value) returns color similar to calling scale.getColor(value)', () => {
+      const scale = new CategoricalColorScale(['blue', 'red', 'green']);
+      expect(scale.getColor('pig')).toBe(scale('pig'));
+      expect(scale.getColor('cat')).toBe(scale('cat'));
+    });
+  });
+
+  describe("is compatible with D3's ScaleOrdinal", () => {
+    it('passes type check', () => {
+      const scale: ScaleOrdinal<{ toString(): string }, string> = new CategoricalColorScale([
+        'blue',
+        'red',
+        'green',
+      ]);
+      expect(scale('pig')).toBe('blue');
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/color/CategoricalSchemeRegistrySingleton.test.ts b/superset-frontend/packages/superset-ui-core/test/color/CategoricalSchemeRegistrySingleton.test.ts
new file mode 100644
index 0000000..b38f233
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/color/CategoricalSchemeRegistrySingleton.test.ts
@@ -0,0 +1,7 @@
+import { CategoricalScheme, getCategoricalSchemeRegistry } from '@superset-ui/core/src/color';
+
+describe('CategoricalSchemeRegistry', () => {
+  it('has default value out-of-the-box', () => {
+    expect(getCategoricalSchemeRegistry().get()).toBeInstanceOf(CategoricalScheme);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/color/ColorScheme.test.ts b/superset-frontend/packages/superset-ui-core/test/color/ColorScheme.test.ts
new file mode 100644
index 0000000..4da7056
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/color/ColorScheme.test.ts
@@ -0,0 +1,10 @@
+import ColorScheme from '@superset-ui/core/src/color/ColorScheme';
+
+describe('ColorScheme', () => {
+  describe('new ColorScheme()', () => {
+    it('returns an instance of ColorScheme', () => {
+      const scheme = new ColorScheme({ id: 'test', colors: ['red', 'blue'] });
+      expect(scheme).toBeInstanceOf(ColorScheme);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/color/ColorSchemeRegistry.test.ts b/superset-frontend/packages/superset-ui-core/test/color/ColorSchemeRegistry.test.ts
new file mode 100644
index 0000000..e103871
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/color/ColorSchemeRegistry.test.ts
@@ -0,0 +1,8 @@
+import ColorSchemeRegistry from '@superset-ui/core/src/color/ColorSchemeRegistry';
+
+describe('ColorSchemeRegistry', () => {
+  it('exists', () => {
+    expect(ColorSchemeRegistry).toBeDefined();
+    expect(ColorSchemeRegistry).toBeInstanceOf(Function);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/color/SequentialScheme.test.ts b/superset-frontend/packages/superset-ui-core/test/color/SequentialScheme.test.ts
new file mode 100644
index 0000000..4e3b4f4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/color/SequentialScheme.test.ts
@@ -0,0 +1,89 @@
+import SequentialScheme from '@superset-ui/core/src/color/SequentialScheme';
+
+describe('SequentialScheme', () => {
+  const scheme = new SequentialScheme({
+    id: 'white to black',
+    colors: ['#fff', '#000'],
+  });
+  it('exists', () => {
+    expect(SequentialScheme).toBeDefined();
+  });
+  describe('new SequentialScheme()', () => {
+    it('creates new instance', () => {
+      const scheme2 = new SequentialScheme({
+        id: 'white to black',
+        colors: ['#fff', '#000'],
+      });
+      expect(scheme2).toBeInstanceOf(SequentialScheme);
+    });
+  });
+  describe('.createLinearScale(domain, modifyRange)', () => {
+    it('returns a piecewise scale', () => {
+      const scale = scheme.createLinearScale([10, 100]);
+      expect(scale.domain()).toHaveLength(scale.range().length);
+      const scale2 = scheme.createLinearScale([0, 10, 100]);
+      expect(scale2.domain()).toHaveLength(scale2.range().length);
+    });
+    describe('domain', () => {
+      it('returns a linear scale for the given domain', () => {
+        const scale = scheme.createLinearScale([10, 100]);
+        expect(scale(1)).toEqual('rgb(255, 255, 255)');
+        expect(scale(10)).toEqual('rgb(255, 255, 255)');
+        expect(scale(55)).toEqual('rgb(119, 119, 119)');
+        expect(scale(100)).toEqual('rgb(0, 0, 0)');
+        expect(scale(1000)).toEqual('rgb(0, 0, 0)');
+      });
+      it('uses [0, 1] as domain if not specified', () => {
+        const scale = scheme.createLinearScale();
+        expect(scale(-1)).toEqual('rgb(255, 255, 255)');
+        expect(scale(0)).toEqual('rgb(255, 255, 255)');
+        expect(scale(0.5)).toEqual('rgb(119, 119, 119)');
+        expect(scale(1)).toEqual('rgb(0, 0, 0)');
+        expect(scale(2)).toEqual('rgb(0, 0, 0)');
+      });
+    });
+    describe('modifyRange', () => {
+      const scheme3 = new SequentialScheme({
+        id: 'test-scheme3',
+        colors: ['#fee087', '#fa5c2e', '#800026'],
+      });
+      it('modifies domain by default', () => {
+        const scale = scheme3.createLinearScale([0, 100]);
+        expect(scale.domain()).toEqual([0, 50, 100]);
+        expect(scale.range()).toEqual(['#fee087', '#fa5c2e', '#800026']);
+      });
+      it('modifies range instead of domain if set to true', () => {
+        const scale = scheme3.createLinearScale([0, 100], true);
+        expect(scale.domain()).toEqual([0, 100]);
+        expect(scale.range()).toEqual(['rgb(254, 224, 135)', 'rgb(128, 0, 38)']);
+      });
+    });
+  });
+  describe('.getColors(numColors, extent)', () => {
+    describe('numColors', () => {
+      it('returns the original colors if numColors is not specified', () => {
+        expect(scheme.getColors()).toEqual(['#fff', '#000']);
+      });
+      it('returns the exact number of colors if numColors is specified', () => {
+        expect(scheme.getColors(2)).toEqual(['#fff', '#000']);
+        expect(scheme.getColors(3)).toEqual([
+          'rgb(255, 255, 255)',
+          'rgb(119, 119, 119)',
+          'rgb(0, 0, 0)',
+        ]);
+        expect(scheme.getColors(4)).toEqual([
+          'rgb(255, 255, 255)',
+          'rgb(162, 162, 162)',
+          'rgb(78, 78, 78)',
+          'rgb(0, 0, 0)',
+        ]);
+      });
+    });
+    describe('extent', () => {
+      it('adjust the range if extent is specified', () => {
+        expect(scheme.getColors(2, [0, 0.5])).toEqual(['rgb(255, 255, 255)', 'rgb(119, 119, 119)']);
+        expect(scheme.getColors(2, [0.5, 1])).toEqual(['rgb(119, 119, 119)', 'rgb(0, 0, 0)']);
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/color/SequentialSchemeRegistrySingleton.test.ts b/superset-frontend/packages/superset-ui-core/test/color/SequentialSchemeRegistrySingleton.test.ts
new file mode 100644
index 0000000..e0c60a7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/color/SequentialSchemeRegistrySingleton.test.ts
@@ -0,0 +1,7 @@
+import { SequentialScheme, getSequentialSchemeRegistry } from '@superset-ui/core/src/color';
+
+describe('SequentialSchemeRegistry', () => {
+  it('has default value out-of-the-box', () => {
+    expect(getSequentialSchemeRegistry().get()).toBeInstanceOf(SequentialScheme);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/color/colorSchemes.test.ts b/superset-frontend/packages/superset-ui-core/test/color/colorSchemes.test.ts
new file mode 100644
index 0000000..10abc4c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/color/colorSchemes.test.ts
@@ -0,0 +1,38 @@
+import categoricalAirbnb from '@superset-ui/core/src/color/colorSchemes/categorical/airbnb';
+import categoricalEcharts from '@superset-ui/core/src/color/colorSchemes/categorical/echarts';
+import categoricalSuperset from '@superset-ui/core/src/color/colorSchemes/categorical/superset';
+import categoricalPreset from '@superset-ui/core/src/color/colorSchemes/categorical/preset';
+import categoricalD3 from '@superset-ui/core/src/color/colorSchemes/categorical/d3';
+import categoricalGoogle from '@superset-ui/core/src/color/colorSchemes/categorical/google';
+import categoricalLyft from '@superset-ui/core/src/color/colorSchemes/categorical/lyft';
+import sequentialCommon from '@superset-ui/core/src/color/colorSchemes/sequential/common';
+import sequentialD3 from '@superset-ui/core/src/color/colorSchemes/sequential/d3';
+import CategoricalScheme from '@superset-ui/core/src/color/CategoricalScheme';
+import SequentialScheme from '@superset-ui/core/src/color/SequentialScheme';
+
+describe('Color Schemes', () => {
+  describe('categorical', () => {
+    it('returns an array of CategoricalScheme', () => {
+      [
+        categoricalAirbnb,
+        categoricalEcharts,
+        categoricalD3,
+        categoricalGoogle,
+        categoricalLyft,
+        categoricalSuperset,
+        categoricalPreset,
+      ].forEach(group => {
+        expect(group).toBeInstanceOf(Array);
+        group.forEach(scheme => expect(scheme).toBeInstanceOf(CategoricalScheme));
+      });
+    });
+  });
+  describe('sequential', () => {
+    it('returns an array of SequentialScheme', () => {
+      [sequentialCommon, sequentialD3].forEach(group => {
+        expect(group).toBeInstanceOf(Array);
+        group.forEach(scheme => expect(scheme).toBeInstanceOf(SequentialScheme));
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/color/index.test.ts b/superset-frontend/packages/superset-ui-core/test/color/index.test.ts
new file mode 100644
index 0000000..8da4b47
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/color/index.test.ts
@@ -0,0 +1,23 @@
+import {
+  BRAND_COLOR,
+  CategoricalColorNamespace,
+  CategoricalColorScale,
+  CategoricalScheme,
+  getCategoricalSchemeRegistry,
+  getSequentialSchemeRegistry,
+  SequentialScheme,
+} from '@superset-ui/core/src/color';
+
+describe('index', () => {
+  it('exports modules', () => {
+    [
+      BRAND_COLOR,
+      CategoricalColorNamespace,
+      CategoricalColorScale,
+      CategoricalScheme,
+      getCategoricalSchemeRegistry,
+      getSequentialSchemeRegistry,
+      SequentialScheme,
+    ].forEach(x => expect(x).toBeDefined());
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/connection/SupersetClient.test.ts b/superset-frontend/packages/superset-ui-core/test/connection/SupersetClient.test.ts
new file mode 100644
index 0000000..95f5c58
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/connection/SupersetClient.test.ts
@@ -0,0 +1,115 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+
+import { SupersetClient, SupersetClientClass } from '@superset-ui/core/src/connection';
+import { LOGIN_GLOB } from './fixtures/constants';
+
+describe('SupersetClient', () => {
+  beforeAll(() => {
+    fetchMock.get(LOGIN_GLOB, { csrf_token: '' });
+  });
+
+  afterAll(fetchMock.restore);
+
+  afterEach(SupersetClient.reset);
+
+  it('exposes reset, configure, init, get, post, isAuthenticated, and reAuthenticate methods', () => {
+    expect(typeof SupersetClient.configure).toBe('function');
+    expect(typeof SupersetClient.init).toBe('function');
+    expect(typeof SupersetClient.get).toBe('function');
+    expect(typeof SupersetClient.post).toBe('function');
+    expect(typeof SupersetClient.isAuthenticated).toBe('function');
+    expect(typeof SupersetClient.reAuthenticate).toBe('function');
+    expect(typeof SupersetClient.request).toBe('function');
+    expect(typeof SupersetClient.reset).toBe('function');
+  });
+
+  it('throws if you call init, get, post, isAuthenticated, or reAuthenticate before configure', () => {
+    expect(SupersetClient.init).toThrow();
+    expect(SupersetClient.get).toThrow();
+    expect(SupersetClient.post).toThrow();
+    expect(SupersetClient.isAuthenticated).toThrow();
+    expect(SupersetClient.reAuthenticate).toThrow();
+    expect(SupersetClient.request).toThrow();
+    expect(SupersetClient.configure).not.toThrow();
+  });
+
+  // this also tests that the ^above doesn't throw if configure is called appropriately
+  it('calls appropriate SupersetClient methods when configured', async () => {
+    expect.assertions(10);
+    const mockGetUrl = '/mock/get/url';
+    const mockPostUrl = '/mock/post/url';
+    const mockRequestUrl = '/mock/request/url';
+    const mockPutUrl = '/mock/put/url';
+    const mockDeleteUrl = '/mock/delete/url';
+    const mockGetPayload = { get: 'payload' };
+    const mockPostPayload = { post: 'payload' };
+    const mockDeletePayload = { delete: 'ok' };
+    const mockPutPayload = { put: 'ok' };
+    fetchMock.get(mockGetUrl, mockGetPayload);
+    fetchMock.post(mockPostUrl, mockPostPayload);
+    fetchMock.delete(mockDeleteUrl, mockDeletePayload);
+    fetchMock.put(mockPutUrl, mockPutPayload);
+    fetchMock.get(mockRequestUrl, mockGetPayload);
+
+    const initSpy = jest.spyOn(SupersetClientClass.prototype, 'init');
+    const getSpy = jest.spyOn(SupersetClientClass.prototype, 'get');
+    const postSpy = jest.spyOn(SupersetClientClass.prototype, 'post');
+    const putSpy = jest.spyOn(SupersetClientClass.prototype, 'put');
+    const deleteSpy = jest.spyOn(SupersetClientClass.prototype, 'delete');
+    const authenticatedSpy = jest.spyOn(SupersetClientClass.prototype, 'isAuthenticated');
+    const csrfSpy = jest.spyOn(SupersetClientClass.prototype, 'getCSRFToken');
+    const requestSpy = jest.spyOn(SupersetClientClass.prototype, 'request');
+
+    SupersetClient.configure({});
+    await SupersetClient.init();
+
+    expect(initSpy).toHaveBeenCalledTimes(1);
+    expect(authenticatedSpy).toHaveBeenCalledTimes(2);
+    expect(csrfSpy).toHaveBeenCalledTimes(1);
+
+    await SupersetClient.get({ url: mockGetUrl });
+    await SupersetClient.post({ url: mockPostUrl });
+    await SupersetClient.delete({ url: mockDeleteUrl });
+    await SupersetClient.put({ url: mockPutUrl });
+    await SupersetClient.request({ url: mockRequestUrl });
+    SupersetClient.isAuthenticated();
+    await SupersetClient.reAuthenticate();
+
+    expect(initSpy).toHaveBeenCalledTimes(2);
+    expect(deleteSpy).toHaveBeenCalledTimes(1);
+    expect(putSpy).toHaveBeenCalledTimes(1);
+    expect(getSpy).toHaveBeenCalledTimes(1);
+    expect(postSpy).toHaveBeenCalledTimes(1);
+    expect(requestSpy).toHaveBeenCalledTimes(5); // request rewires to get
+    expect(csrfSpy).toHaveBeenCalledTimes(2); // from init() + reAuthenticate()
+
+    initSpy.mockRestore();
+    getSpy.mockRestore();
+    putSpy.mockRestore();
+    deleteSpy.mockRestore();
+    requestSpy.mockRestore();
+    postSpy.mockRestore();
+    authenticatedSpy.mockRestore();
+    csrfSpy.mockRestore();
+
+    fetchMock.reset();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/connection/SupersetClientClass.test.ts b/superset-frontend/packages/superset-ui-core/test/connection/SupersetClientClass.test.ts
new file mode 100644
index 0000000..1e2fce7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/connection/SupersetClientClass.test.ts
@@ -0,0 +1,448 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+import { SupersetClientClass, ClientConfig } from '@superset-ui/core/src/connection';
+import { LOGIN_GLOB } from './fixtures/constants';
+
+describe('SupersetClientClass', () => {
+  beforeAll(() => {
+    fetchMock.get(LOGIN_GLOB, { csrf_token: '' });
+  });
+
+  afterAll(fetchMock.restore);
+
+  describe('new SupersetClientClass()', () => {
+    it('fallback protocol to https when setting only host', () => {
+      const client = new SupersetClientClass({ host: 'TEST-HOST' });
+      expect(client.baseUrl).toEqual('https://test-host');
+    });
+  });
+
+  describe('.getUrl()', () => {
+    let client = new SupersetClientClass();
+
+    beforeEach(() => {
+      client = new SupersetClientClass({ protocol: 'https:', host: 'CONFIG_HOST' });
+    });
+
+    it('uses url if passed', () => {
+      expect(client.getUrl({ url: 'myUrl', endpoint: 'blah', host: 'blah' })).toBe('myUrl');
+    });
+
+    it('constructs a valid url from config.protocol + host + endpoint if passed', () => {
+      expect(client.getUrl({ endpoint: '/test', host: 'myhost' })).toBe('https://myhost/test');
+      expect(client.getUrl({ endpoint: '/test', host: 'myhost/' })).toBe('https://myhost/test');
+      expect(client.getUrl({ endpoint: 'test', host: 'myhost' })).toBe('https://myhost/test');
+      expect(client.getUrl({ endpoint: '/test/test//', host: 'myhost/' })).toBe(
+        'https://myhost/test/test//',
+      );
+    });
+
+    it('constructs a valid url from config.host + endpoint if host is omitted', () => {
+      expect(client.getUrl({ endpoint: '/test' })).toBe('https://config_host/test');
+    });
+
+    it('does not throw if url, endpoint, and host are all empty', () => {
+      client = new SupersetClientClass({ protocol: 'https:', host: '' });
+      expect(client.getUrl()).toBe('https://localhost/');
+    });
+  });
+
+  describe('.init()', () => {
+    afterEach(() => {
+      fetchMock.reset();
+      // reset
+      fetchMock.get(LOGIN_GLOB, { csrf_token: 1234 }, { overwriteRoutes: true });
+    });
+
+    it('calls superset/csrf_token/ when init() is called if no CSRF token is passed', async () => {
+      expect.assertions(1);
+      await new SupersetClientClass().init();
+      expect(fetchMock.calls(LOGIN_GLOB)).toHaveLength(1);
+    });
+
+    it('does NOT call superset/csrf_token/ when init() is called if a CSRF token is passed', async () => {
+      expect.assertions(1);
+      await new SupersetClientClass({ csrfToken: 'abc' }).init();
+      expect(fetchMock.calls(LOGIN_GLOB)).toHaveLength(0);
+    });
+
+    it('calls superset/csrf_token/ when init(force=true) is called even if a CSRF token is passed', async () => {
+      expect.assertions(4);
+      const initialToken = 'initial_token';
+      const client = new SupersetClientClass({ csrfToken: initialToken });
+
+      await client.init();
+      expect(fetchMock.calls(LOGIN_GLOB)).toHaveLength(0);
+      expect(client.csrfToken).toBe(initialToken);
+
+      await client.init(true);
+      expect(fetchMock.calls(LOGIN_GLOB)).toHaveLength(1);
+      expect(client.csrfToken).not.toBe(initialToken);
+    });
+
+    it('throws if superset/csrf_token/ returns an error', async () => {
+      expect.assertions(1);
+      const rejectError = { status: 403 };
+      fetchMock.get(LOGIN_GLOB, () => Promise.reject(rejectError), {
+        overwriteRoutes: true,
+      });
+
+      let error;
+      try {
+        await new SupersetClientClass({}).init();
+      } catch (err) {
+        error = err;
+      } finally {
+        expect(error as typeof rejectError).toEqual(rejectError);
+      }
+    });
+
+    const invalidCsrfTokenError = { error: 'Failed to fetch CSRF token' };
+
+    it('throws if superset/csrf_token/ does not return a token', async () => {
+      expect.assertions(1);
+      fetchMock.get(LOGIN_GLOB, {}, { overwriteRoutes: true });
+
+      let error;
+      try {
+        await new SupersetClientClass({}).init();
+      } catch (err) {
+        error = err;
+      } finally {
+        expect(error as typeof invalidCsrfTokenError).toEqual(invalidCsrfTokenError);
+      }
+    });
+
+    it('does not set csrfToken if response is not json', async () => {
+      expect.assertions(1);
+      fetchMock.get(LOGIN_GLOB, '123', {
+        overwriteRoutes: true,
+      });
+
+      let error;
+      try {
+        await new SupersetClientClass({}).init();
+      } catch (err) {
+        error = err;
+      } finally {
+        expect(error as typeof invalidCsrfTokenError).toEqual(invalidCsrfTokenError);
+      }
+    });
+  });
+
+  describe('.isAuthenticated()', () => {
+    afterEach(fetchMock.reset);
+
+    it('returns true if there is a token and false if not', async () => {
+      expect.assertions(2);
+      const client = new SupersetClientClass({});
+      expect(client.isAuthenticated()).toBe(false);
+      await client.init();
+      expect(client.isAuthenticated()).toBe(true);
+    });
+
+    it('returns true if a token is passed at configuration', () => {
+      expect.assertions(2);
+      const clientWithoutToken = new SupersetClientClass({ csrfToken: undefined });
+      const clientWithToken = new SupersetClientClass({ csrfToken: 'token' });
+      expect(clientWithoutToken.isAuthenticated()).toBe(false);
+      expect(clientWithToken.isAuthenticated()).toBe(true);
+    });
+  });
+
+  describe('.ensureAuth()', () => {
+    it(`returns a promise that rejects if .init() has not been called`, async () => {
+      expect.assertions(2);
+
+      const client = new SupersetClientClass({});
+      let error;
+
+      try {
+        await client.ensureAuth();
+      } catch (err) {
+        error = err;
+      } finally {
+        expect(error).toEqual({ error: expect.any(String) });
+      }
+      expect(client.isAuthenticated()).toBe(false);
+    });
+
+    it('returns a promise that resolves if .init() resolves successfully', async () => {
+      expect.assertions(1);
+
+      const client = new SupersetClientClass({});
+      await client.init();
+      await client.ensureAuth();
+
+      expect(client.isAuthenticated()).toBe(true);
+    });
+
+    it(`returns a promise that rejects if .init() is unsuccessful`, async () => {
+      expect.assertions(4);
+
+      const rejectValue = { status: 403 };
+      fetchMock.get(LOGIN_GLOB, () => Promise.reject(rejectValue), {
+        overwriteRoutes: true,
+      });
+
+      const client = new SupersetClientClass({});
+      let error;
+      let error2;
+
+      try {
+        await client.init();
+      } catch (err) {
+        error = err;
+      } finally {
+        expect(error).toEqual(expect.objectContaining(rejectValue));
+        expect(client.isAuthenticated()).toBe(false);
+        try {
+          await client.ensureAuth();
+        } catch (err) {
+          error2 = err;
+        } finally {
+          expect(error2).toEqual(expect.objectContaining(rejectValue));
+          expect(client.isAuthenticated()).toBe(false);
+        }
+      }
+
+      // reset
+      fetchMock.get(
+        LOGIN_GLOB,
+        { csrf_token: 1234 },
+        {
+          overwriteRoutes: true,
+        },
+      );
+    });
+  });
+
+  describe('requests', () => {
+    afterEach(fetchMock.reset);
+    const protocol = 'https:';
+    const host = 'host';
+    const mockGetEndpoint = '/get/url';
+    const mockRequestEndpoint = '/request/url';
+    const mockPostEndpoint = '/post/url';
+    const mockPutEndpoint = '/put/url';
+    const mockDeleteEndpoint = '/delete/url';
+    const mockTextEndpoint = '/text/endpoint';
+    const mockGetUrl = `${protocol}//${host}${mockGetEndpoint}`;
+    const mockRequestUrl = `${protocol}//${host}${mockRequestEndpoint}`;
+    const mockPostUrl = `${protocol}//${host}${mockPostEndpoint}`;
+    const mockTextUrl = `${protocol}//${host}${mockTextEndpoint}`;
+    const mockPutUrl = `${protocol}//${host}${mockPutEndpoint}`;
+    const mockDeleteUrl = `${protocol}//${host}${mockDeleteEndpoint}`;
+    const mockTextJsonResponse = '{ "value": 9223372036854775807 }';
+    const mockPayload = { json: () => Promise.resolve('payload') };
+
+    fetchMock.get(mockGetUrl, mockPayload);
+    fetchMock.post(mockPostUrl, mockPayload);
+    fetchMock.put(mockPutUrl, mockPayload);
+    fetchMock.delete(mockDeleteUrl, mockPayload);
+    fetchMock.delete(mockRequestUrl, mockPayload);
+    fetchMock.get(mockTextUrl, mockTextJsonResponse);
+    fetchMock.post(mockTextUrl, mockTextJsonResponse);
+
+    it('checks for authentication before every get and post request', async () => {
+      expect.assertions(6);
+
+      const authSpy = jest.spyOn(SupersetClientClass.prototype, 'ensureAuth');
+      const client = new SupersetClientClass({ protocol, host });
+
+      await client.init();
+      await client.get({ url: mockGetUrl });
+      await client.post({ url: mockPostUrl });
+      await client.put({ url: mockPutUrl });
+      await client.delete({ url: mockDeleteUrl });
+      await client.request({ url: mockRequestUrl, method: 'DELETE' });
+
+      expect(fetchMock.calls(mockGetUrl)).toHaveLength(1);
+      expect(fetchMock.calls(mockPostUrl)).toHaveLength(1);
+      expect(fetchMock.calls(mockDeleteUrl)).toHaveLength(1);
+      expect(fetchMock.calls(mockPutUrl)).toHaveLength(1);
+      expect(fetchMock.calls(mockRequestUrl)).toHaveLength(1);
+
+      expect(authSpy).toHaveBeenCalledTimes(5);
+      authSpy.mockRestore();
+    });
+
+    it('sets protocol, host, headers, mode, and credentials from config', async () => {
+      expect.assertions(3);
+
+      const clientConfig: ClientConfig = {
+        host,
+        protocol,
+        mode: 'cors',
+        credentials: 'include',
+        headers: { my: 'header' },
+      };
+
+      const client = new SupersetClientClass(clientConfig);
+      await client.init();
+      await client.get({ url: mockGetUrl });
+
+      const fetchRequest = fetchMock.calls(mockGetUrl)[0][1];
+      expect(fetchRequest.mode).toBe(clientConfig.mode);
+      expect(fetchRequest.credentials).toBe(clientConfig.credentials);
+      expect(fetchRequest.headers).toEqual(
+        expect.objectContaining(clientConfig.headers) as typeof fetchRequest.headers,
+      );
+    });
+
+    describe('.get()', () => {
+      it('makes a request using url or endpoint', async () => {
+        expect.assertions(2);
+
+        const client = new SupersetClientClass({ protocol, host });
+        await client.init();
+
+        await client.get({ url: mockGetUrl });
+        expect(fetchMock.calls(mockGetUrl)).toHaveLength(1);
+
+        await client.get({ endpoint: mockGetEndpoint });
+        expect(fetchMock.calls(mockGetUrl)).toHaveLength(2);
+      });
+
+      it('supports parsing a response as text', async () => {
+        expect.assertions(2);
+        const client = new SupersetClientClass({ protocol, host });
+        await client.init();
+        const { text } = await client.get({ url: mockTextUrl, parseMethod: 'text' });
+        expect(fetchMock.calls(mockTextUrl)).toHaveLength(1);
+        expect(text).toBe(mockTextJsonResponse);
+      });
+
+      it('allows overriding host, headers, mode, and credentials per-request', async () => {
+        expect.assertions(3);
+
+        const clientConfig: ClientConfig = {
+          host,
+          protocol,
+          mode: 'cors',
+          credentials: 'include',
+          headers: { my: 'header' },
+        };
+        const overrideConfig: ClientConfig = {
+          host: 'override_host',
+          mode: 'no-cors',
+          credentials: 'omit',
+          headers: { my: 'override', another: 'header' },
+        };
+
+        const client = new SupersetClientClass(clientConfig);
+        await client.init();
+        await client.get({ url: mockGetUrl, ...overrideConfig });
+
+        const fetchRequest = fetchMock.calls(mockGetUrl)[0][1];
+        expect(fetchRequest.mode).toBe(overrideConfig.mode);
+        expect(fetchRequest.credentials).toBe(overrideConfig.credentials);
+        expect(fetchRequest.headers).toEqual(
+          expect.objectContaining(overrideConfig.headers) as typeof fetchRequest.headers,
+        );
+      });
+    });
+
+    describe('.post()', () => {
+      it('makes a request using url or endpoint', async () => {
+        expect.assertions(2);
+
+        const client = new SupersetClientClass({ protocol, host });
+        await client.init();
+
+        await client.post({ url: mockPostUrl });
+        expect(fetchMock.calls(mockPostUrl)).toHaveLength(1);
+
+        await client.post({ endpoint: mockPostEndpoint });
+        expect(fetchMock.calls(mockPostUrl)).toHaveLength(2);
+      });
+
+      it('allows overriding host, headers, mode, and credentials per-request', async () => {
+        expect.assertions(3);
+        const clientConfig: ClientConfig = {
+          host,
+          protocol,
+          mode: 'cors',
+          credentials: 'include',
+          headers: { my: 'header' },
+        };
+        const overrideConfig: ClientConfig = {
+          host: 'override_host',
+          mode: 'no-cors',
+          credentials: 'omit',
+          headers: { my: 'override', another: 'header' },
+        };
+
+        const client = new SupersetClientClass(clientConfig);
+        await client.init();
+        await client.post({ url: mockPostUrl, ...overrideConfig });
+
+        const fetchRequest = fetchMock.calls(mockPostUrl)[0][1];
+
+        expect(fetchRequest.mode).toBe(overrideConfig.mode);
+        expect(fetchRequest.credentials).toBe(overrideConfig.credentials);
+        expect(fetchRequest.headers).toEqual(
+          expect.objectContaining(overrideConfig.headers) as typeof fetchRequest.headers,
+        );
+      });
+
+      it('supports parsing a response as text', async () => {
+        expect.assertions(2);
+        const client = new SupersetClientClass({ protocol, host });
+        await client.init();
+        const { text } = await client.post({ url: mockTextUrl, parseMethod: 'text' });
+        expect(fetchMock.calls(mockTextUrl)).toHaveLength(1);
+        expect(text).toBe(mockTextJsonResponse);
+      });
+
+      it('passes postPayload key,values in the body', async () => {
+        expect.assertions(3);
+
+        const postPayload = { number: 123, array: [1, 2, 3] };
+        const client = new SupersetClientClass({ protocol, host });
+        await client.init();
+        await client.post({ url: mockPostUrl, postPayload });
+
+        const formData = fetchMock.calls(mockPostUrl)[0][1].body as FormData;
+
+        expect(fetchMock.calls(mockPostUrl)).toHaveLength(1);
+        Object.entries(postPayload).forEach(([key, value]) => {
+          expect(formData.get(key)).toBe(JSON.stringify(value));
+        });
+      });
+
+      it('respects the stringify parameter for postPayload key,values', async () => {
+        expect.assertions(3);
+
+        const postPayload = { number: 123, array: [1, 2, 3] };
+        const client = new SupersetClientClass({ protocol, host });
+        await client.init();
+        await client.post({ url: mockPostUrl, postPayload, stringify: false });
+
+        const formData = fetchMock.calls(mockPostUrl)[0][1].body as FormData;
+
+        expect(fetchMock.calls(mockPostUrl)).toHaveLength(1);
+        Object.entries(postPayload).forEach(([key, value]) => {
+          expect(formData.get(key)).toBe(String(value));
+        });
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/connection/callApi/callApi.test.ts b/superset-frontend/packages/superset-ui-core/test/connection/callApi/callApi.test.ts
new file mode 100644
index 0000000..b3d8764
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/connection/callApi/callApi.test.ts
@@ -0,0 +1,581 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+import callApi from '@superset-ui/core/src/connection/callApi/callApi';
+import * as constants from '@superset-ui/core/src/connection/constants';
+import { CallApi, JsonObject } from '@superset-ui/core/src/connection/types';
+import { DEFAULT_FETCH_RETRY_OPTIONS } from '@superset-ui/core/src/connection/constants';
+
+import { LOGIN_GLOB } from '../fixtures/constants';
+
+describe('callApi()', () => {
+  beforeAll(() => {
+    fetchMock.get(LOGIN_GLOB, { csrf_token: '1234' });
+  });
+
+  afterAll(fetchMock.restore);
+
+  const mockGetUrl = '/mock/get/url';
+  const mockPostUrl = '/mock/post/url';
+  const mockPutUrl = '/mock/put/url';
+  const mockPatchUrl = '/mock/patch/url';
+  const mockCacheUrl = '/mock/cache/url';
+  const mockNotFound = '/mock/notfound';
+  const mockErrorUrl = '/mock/error/url';
+  const mock503 = '/mock/503';
+
+  const mockGetPayload = { get: 'payload' };
+  const mockPostPayload = { post: 'payload' };
+  const mockPutPayload = { post: 'payload' };
+  const mockPatchPayload = { post: 'payload' };
+  const mockCachePayload = {
+    status: 200,
+    body: 'BODY',
+    headers: { Etag: 'etag' },
+  };
+  const mockErrorPayload = { status: 500, statusText: 'Internal error' };
+
+  fetchMock.get(mockGetUrl, mockGetPayload);
+  fetchMock.post(mockPostUrl, mockPostPayload);
+  fetchMock.put(mockPutUrl, mockPutPayload);
+  fetchMock.patch(mockPatchUrl, mockPatchPayload);
+  fetchMock.get(mockCacheUrl, mockCachePayload);
+  fetchMock.get(mockNotFound, { status: 404 });
+  fetchMock.get(mock503, { status: 503 });
+  fetchMock.get(mockErrorUrl, () => Promise.reject(mockErrorPayload));
+
+  afterEach(fetchMock.reset);
+
+  describe('request config', () => {
+    it('calls the right url with the specified method', async () => {
+      expect.assertions(4);
+      await Promise.all([
+        callApi({ url: mockGetUrl, method: 'GET' }),
+        callApi({ url: mockPostUrl, method: 'POST' }),
+        callApi({ url: mockPutUrl, method: 'PUT' }),
+        callApi({ url: mockPatchUrl, method: 'PATCH' }),
+      ]);
+      expect(fetchMock.calls(mockGetUrl)).toHaveLength(1);
+      expect(fetchMock.calls(mockPostUrl)).toHaveLength(1);
+      expect(fetchMock.calls(mockPutUrl)).toHaveLength(1);
+      expect(fetchMock.calls(mockPatchUrl)).toHaveLength(1);
+    });
+
+    it('passes along mode, cache, credentials, headers, body, signal, and redirect parameters in the request', async () => {
+      expect.assertions(8);
+      const mockRequest: CallApi = {
+        url: mockGetUrl,
+        mode: 'cors',
+        cache: 'default',
+        credentials: 'include',
+        headers: {
+          custom: 'header',
+        },
+        redirect: 'follow',
+        signal: undefined,
+        body: 'BODY',
+      };
+
+      await callApi(mockRequest);
+      const calls = fetchMock.calls(mockGetUrl);
+      const fetchParams = calls[0][1];
+      expect(calls).toHaveLength(1);
+      expect(fetchParams.mode).toBe(mockRequest.mode);
+      expect(fetchParams.cache).toBe(mockRequest.cache);
+      expect(fetchParams.credentials).toBe(mockRequest.credentials);
+      expect(fetchParams.headers).toEqual(
+        expect.objectContaining(mockRequest.headers) as typeof fetchParams.headers,
+      );
+      expect(fetchParams.redirect).toBe(mockRequest.redirect);
+      expect(fetchParams.signal).toBe(mockRequest.signal);
+      expect(fetchParams.body).toBe(mockRequest.body);
+    });
+  });
+
+  describe('POST requests', () => {
+    it('encodes key,value pairs from postPayload', async () => {
+      expect.assertions(3);
+      const postPayload = { key: 'value', anotherKey: 1237 };
+
+      await callApi({ url: mockPostUrl, method: 'POST', postPayload });
+      const calls = fetchMock.calls(mockPostUrl);
+      expect(calls).toHaveLength(1);
+
+      const fetchParams = calls[0][1];
+      const body = fetchParams.body as FormData;
+
+      Object.entries(postPayload).forEach(([key, value]) => {
+        expect(body.get(key)).toBe(JSON.stringify(value));
+      });
+    });
+
+    // the reason for this is to omit strings like 'undefined' from making their way to the backend
+    it('omits key,value pairs from postPayload that have undefined values (POST)', async () => {
+      expect.assertions(3);
+      const postPayload = { key: 'value', noValue: undefined };
+
+      await callApi({ url: mockPostUrl, method: 'POST', postPayload });
+      const calls = fetchMock.calls(mockPostUrl);
+      expect(calls).toHaveLength(1);
+
+      const fetchParams = calls[0][1];
+      const body = fetchParams.body as FormData;
+      expect(body.get('key')).toBe(JSON.stringify(postPayload.key));
+      expect(body.get('noValue')).toBeNull();
+    });
+
+    it('respects the stringify flag in POST requests', async () => {
+      const postPayload = {
+        string: 'value',
+        number: 1237,
+        array: [1, 2, 3],
+        object: { a: 'a', 1: 1 },
+        null: null,
+        emptyString: '',
+      };
+
+      expect.assertions(1 + 3 * Object.keys(postPayload).length);
+
+      await Promise.all([
+        callApi({ url: mockPostUrl, method: 'POST', postPayload }),
+        callApi({ url: mockPostUrl, method: 'POST', postPayload, stringify: false }),
+        callApi({ url: mockPostUrl, method: 'POST', jsonPayload: postPayload }),
+      ]);
+      const calls = fetchMock.calls(mockPostUrl);
+      expect(calls).toHaveLength(3);
+
+      const stringified = calls[0][1].body as FormData;
+      const unstringified = calls[1][1].body as FormData;
+      const jsonRequestBody = JSON.parse(calls[2][1].body as string) as JsonObject;
+
+      Object.entries(postPayload).forEach(([key, value]) => {
+        expect(stringified.get(key)).toBe(JSON.stringify(value));
+        expect(unstringified.get(key)).toBe(String(value));
+        expect(jsonRequestBody[key]).toEqual(value);
+      });
+    });
+  });
+
+  describe('PUT requests', () => {
+    it('encodes key,value pairs from postPayload', async () => {
+      expect.assertions(3);
+      const postPayload = { key: 'value', anotherKey: 1237 };
+
+      await callApi({ url: mockPutUrl, method: 'PUT', postPayload });
+      const calls = fetchMock.calls(mockPutUrl);
+      expect(calls).toHaveLength(1);
+
+      const fetchParams = calls[0][1];
+      const body = fetchParams.body as FormData;
+
+      Object.entries(postPayload).forEach(([key, value]) => {
+        expect(body.get(key)).toBe(JSON.stringify(value));
+      });
+    });
+
+    // the reason for this is to omit strings like 'undefined' from making their way to the backend
+    it('omits key,value pairs from postPayload that have undefined values (PUT)', async () => {
+      expect.assertions(3);
+      const postPayload = { key: 'value', noValue: undefined };
+
+      await callApi({ url: mockPutUrl, method: 'PUT', postPayload });
+      const calls = fetchMock.calls(mockPutUrl);
+      expect(calls).toHaveLength(1);
+
+      const fetchParams = calls[0][1];
+      const body = fetchParams.body as FormData;
+      expect(body.get('key')).toBe(JSON.stringify(postPayload.key));
+      expect(body.get('noValue')).toBeNull();
+    });
+
+    it('respects the stringify flag in PUT requests', async () => {
+      const postPayload = {
+        string: 'value',
+        number: 1237,
+        array: [1, 2, 3],
+        object: { a: 'a', 1: 1 },
+        null: null,
+        emptyString: '',
+      };
+
+      expect.assertions(1 + 2 * Object.keys(postPayload).length);
+
+      await Promise.all([
+        callApi({ url: mockPutUrl, method: 'PUT', postPayload }),
+        callApi({ url: mockPutUrl, method: 'PUT', postPayload, stringify: false }),
+      ]);
+      const calls = fetchMock.calls(mockPutUrl);
+      expect(calls).toHaveLength(2);
+
+      const stringified = calls[0][1].body as FormData;
+      const unstringified = calls[1][1].body as FormData;
+
+      Object.entries(postPayload).forEach(([key, value]) => {
+        expect(stringified.get(key)).toBe(JSON.stringify(value));
+        expect(unstringified.get(key)).toBe(String(value));
+      });
+    });
+  });
+
+  describe('PATCH requests', () => {
+    it('encodes key,value pairs from postPayload', async () => {
+      expect.assertions(3);
+      const postPayload = { key: 'value', anotherKey: 1237 };
+
+      await callApi({ url: mockPatchUrl, method: 'PATCH', postPayload });
+      const calls = fetchMock.calls(mockPatchUrl);
+      expect(calls).toHaveLength(1);
+
+      const fetchParams = calls[0][1];
+      const body = fetchParams.body as FormData;
+
+      Object.entries(postPayload).forEach(([key, value]) => {
+        expect(body.get(key)).toBe(JSON.stringify(value));
+      });
+    });
+
+    // the reason for this is to omit strings like 'undefined' from making their way to the backend
+    it('omits key,value pairs from postPayload that have undefined values (PATCH)', async () => {
+      expect.assertions(3);
+      const postPayload = { key: 'value', noValue: undefined };
+
+      await callApi({ url: mockPatchUrl, method: 'PATCH', postPayload });
+      const calls = fetchMock.calls(mockPatchUrl);
+      expect(calls).toHaveLength(1);
+
+      const fetchParams = calls[0][1];
+      const body = fetchParams.body as FormData;
+      expect(body.get('key')).toBe(JSON.stringify(postPayload.key));
+      expect(body.get('noValue')).toBeNull();
+    });
+
+    it('respects the stringify flag in PATCH requests', async () => {
+      const postPayload = {
+        string: 'value',
+        number: 1237,
+        array: [1, 2, 3],
+        object: { a: 'a', 1: 1 },
+        null: null,
+        emptyString: '',
+      };
+
+      expect.assertions(1 + 2 * Object.keys(postPayload).length);
+
+      await Promise.all([
+        callApi({ url: mockPatchUrl, method: 'PATCH', postPayload }),
+        callApi({ url: mockPatchUrl, method: 'PATCH', postPayload, stringify: false }),
+      ]);
+      const calls = fetchMock.calls(mockPatchUrl);
+      expect(calls).toHaveLength(2);
+
+      const stringified = calls[0][1].body as FormData;
+      const unstringified = calls[1][1].body as FormData;
+
+      Object.entries(postPayload).forEach(([key, value]) => {
+        expect(stringified.get(key)).toBe(JSON.stringify(value));
+        expect(unstringified.get(key)).toBe(String(value));
+      });
+    });
+  });
+
+  describe('caching', () => {
+    const origLocation = window.location;
+
+    beforeAll(() => {
+      Object.defineProperty(window, 'location', { value: {} });
+    });
+
+    afterAll(() => {
+      Object.defineProperty(window, 'location', { value: origLocation });
+    });
+
+    beforeEach(async () => {
+      window.location.protocol = 'https:';
+      await caches.delete(constants.CACHE_KEY);
+    });
+
+    it('caches requests with ETags', async () => {
+      expect.assertions(2);
+      await callApi({ url: mockCacheUrl, method: 'GET' });
+      const calls = fetchMock.calls(mockCacheUrl);
+      expect(calls).toHaveLength(1);
+      const supersetCache = await caches.open(constants.CACHE_KEY);
+      const cachedResponse = await supersetCache.match(mockCacheUrl);
+      expect(cachedResponse).toBeDefined();
+    });
+
+    it('will not use cache when running off an insecure connection', async () => {
+      expect.assertions(2);
+      window.location.protocol = 'http:';
+
+      await callApi({ url: mockCacheUrl, method: 'GET' });
+      const calls = fetchMock.calls(mockCacheUrl);
+      expect(calls).toHaveLength(1);
+
+      const supersetCache = await caches.open(constants.CACHE_KEY);
+      const cachedResponse = await supersetCache.match(mockCacheUrl);
+      expect(cachedResponse).toBeUndefined();
+    });
+
+    it('works when the Cache API is disabled', async () => {
+      expect.assertions(5);
+      // eslint-disable-next-line no-import-assign
+      Object.defineProperty(constants, 'CACHE_AVAILABLE', { value: false });
+
+      const firstResponse = await callApi({ url: mockCacheUrl, method: 'GET' });
+      const calls = fetchMock.calls(mockCacheUrl);
+      expect(calls).toHaveLength(1);
+      const firstBody = await firstResponse.text();
+      expect(firstBody).toEqual('BODY');
+
+      const secondResponse = await callApi({ url: mockCacheUrl, method: 'GET' });
+      const fetchParams = calls[1][1];
+      expect(calls).toHaveLength(2);
+      // second call should not have If-None-Match header
+      expect(fetchParams.headers).toBeUndefined();
+      const secondBody = await secondResponse.text();
+      expect(secondBody).toEqual('BODY');
+
+      // eslint-disable-next-line no-import-assign
+      Object.defineProperty(constants, 'CACHE_AVAILABLE', { value: true });
+    });
+
+    it('sends known ETags in the If-None-Match header', async () => {
+      expect.assertions(3);
+      // first call sets the cache
+      await callApi({ url: mockCacheUrl, method: 'GET' });
+      const calls = fetchMock.calls(mockCacheUrl);
+      expect(calls).toHaveLength(1);
+
+      // second call sends the Etag in the If-None-Match header
+      await callApi({ url: mockCacheUrl, method: 'GET' });
+      const fetchParams = calls[1][1];
+      const headers = { 'If-None-Match': 'etag' };
+      expect(calls).toHaveLength(2);
+      expect(fetchParams.headers).toEqual(
+        expect.objectContaining(headers) as typeof fetchParams.headers,
+      );
+    });
+
+    it('reuses cached responses on 304 status', async () => {
+      expect.assertions(3);
+      // first call sets the cache
+      await callApi({ url: mockCacheUrl, method: 'GET' });
+      const calls = fetchMock.calls(mockCacheUrl);
+      expect(calls).toHaveLength(1);
+      // second call reuses the cached payload on a 304
+      const mockCachedPayload = { status: 304 };
+      fetchMock.get(mockCacheUrl, mockCachedPayload, { overwriteRoutes: true });
+
+      const secondResponse = await callApi({ url: mockCacheUrl, method: 'GET' });
+      expect(calls).toHaveLength(2);
+      const secondBody = await secondResponse.text();
+      expect(secondBody).toEqual('BODY');
+    });
+
+    it('throws error when cache fails on 304', async () => {
+      expect.assertions(2);
+
+      // this should never happen, since a 304 is only returned if we have
+      // the cached response and sent the If-None-Match header
+      const mockUncachedUrl = '/mock/uncached/url';
+      const mockCachedPayload = { status: 304 };
+      let error;
+      fetchMock.get(mockUncachedUrl, mockCachedPayload);
+
+      try {
+        await callApi({ url: mockUncachedUrl, method: 'GET' });
+      } catch (err) {
+        error = err;
+      } finally {
+        const calls = fetchMock.calls(mockUncachedUrl);
+        expect(calls).toHaveLength(1);
+        expect((error as { message: string }).message).toEqual(
+          'Received 304 but no content is cached!',
+        );
+      }
+    });
+
+    it('returns original response if no Etag', async () => {
+      expect.assertions(3);
+      const url = mockGetUrl;
+      const response = await callApi({ url, method: 'GET' });
+      const calls = fetchMock.calls(url);
+      expect(calls).toHaveLength(1);
+      expect(response.status).toEqual(200);
+      const body = await response.json();
+      expect(body as typeof mockGetPayload).toEqual(mockGetPayload);
+    });
+
+    it('returns original response if status not 304 or 200', async () => {
+      expect.assertions(2);
+      const url = mockNotFound;
+      const response = await callApi({ url, method: 'GET' });
+      const calls = fetchMock.calls(url);
+      expect(calls).toHaveLength(1);
+      expect(response.status).toEqual(404);
+    });
+  });
+
+  it('rejects after retrying thrice if the request throws', async () => {
+    expect.assertions(3);
+    let error;
+    try {
+      await callApi({
+        fetchRetryOptions: DEFAULT_FETCH_RETRY_OPTIONS,
+        url: mockErrorUrl,
+        method: 'GET',
+      });
+    } catch (err) {
+      error = err;
+    } finally {
+      const err = error as { status: number; statusText: string };
+      expect(fetchMock.calls(mockErrorUrl)).toHaveLength(4);
+      expect(err.status).toBe(mockErrorPayload.status);
+      expect(err.statusText).toBe(mockErrorPayload.statusText);
+    }
+  });
+
+  it('rejects without retries if the config is set to 0 retries', async () => {
+    expect.assertions(3);
+    let error;
+    try {
+      await callApi({
+        fetchRetryOptions: { retries: 0 },
+        url: mockErrorUrl,
+        method: 'GET',
+      });
+    } catch (err) {
+      error = err as { status: number; statusText: string };
+    } finally {
+      expect(fetchMock.calls(mockErrorUrl)).toHaveLength(1);
+      expect(error?.status).toBe(mockErrorPayload.status);
+      expect(error?.statusText).toBe(mockErrorPayload.statusText);
+    }
+  });
+
+  it('rejects after retrying thrice if the request returns a 503', async () => {
+    expect.assertions(2);
+    const url = mock503;
+    const response = await callApi({
+      fetchRetryOptions: DEFAULT_FETCH_RETRY_OPTIONS,
+      url,
+      method: 'GET',
+    });
+    const calls = fetchMock.calls(url);
+    expect(calls).toHaveLength(4);
+    expect(response.status).toEqual(503);
+  });
+
+  it('invalid json for postPayload should thrown error', async () => {
+    expect.assertions(2);
+    let error;
+    try {
+      await callApi({
+        url: mockPostUrl,
+        method: 'POST',
+        postPayload: 'haha',
+      });
+    } catch (err) {
+      error = err;
+    } finally {
+      expect(error).toBeInstanceOf(Error);
+      expect(error.message).toEqual('Invalid payload:\n\nhaha');
+    }
+  });
+
+  it('should accept search params object', async () => {
+    expect.assertions(3);
+    window.location.href = 'http://localhost';
+    fetchMock.get(`glob:*/get-search*`, { yes: 'ok' });
+    const response = await callApi({
+      url: '/get-search',
+      searchParams: {
+        abc: 1,
+      },
+      method: 'GET',
+    });
+    const result = await response.json();
+    expect(response.status).toEqual(200);
+    expect(result).toEqual({ yes: 'ok' });
+    expect(fetchMock.lastUrl()).toEqual(`http://localhost/get-search?abc=1`);
+  });
+
+  it('should accept URLSearchParams', async () => {
+    expect.assertions(2);
+    window.location.href = 'http://localhost';
+    fetchMock.post(`glob:*/post-search*`, { yes: 'ok' });
+    await callApi({
+      url: '/post-search',
+      searchParams: new URLSearchParams({
+        abc: '1',
+      }),
+      method: 'POST',
+      jsonPayload: { request: 'ok' },
+    });
+    expect(fetchMock.lastUrl()).toEqual(`http://localhost/post-search?abc=1`);
+    expect(fetchMock.lastOptions()).toEqual(
+      expect.objectContaining({
+        body: JSON.stringify({ request: 'ok' }),
+      }),
+    );
+  });
+
+  it('should throw when both payloads provided', async () => {
+    expect.assertions(1);
+    fetchMock.post('/post-both-payload', {});
+
+    let error;
+    try {
+      await callApi({
+        url: '/post-both-payload',
+        method: 'POST',
+        postPayload: { a: 1 },
+        jsonPayload: '{}',
+      });
+    } catch (err) {
+      error = err;
+    } finally {
+      expect((error as Error).message).toContain('provide only one of jsonPayload or postPayload');
+    }
+  });
+
+  it('should accept FormData as postPayload', async () => {
+    expect.assertions(1);
+    fetchMock.post('/post-formdata', {});
+    const payload = new FormData();
+    await callApi({
+      url: '/post-formdata',
+      method: 'POST',
+      postPayload: payload,
+    });
+    expect(fetchMock.lastOptions().body).toBe(payload);
+  });
+
+  it('should ignore "null" postPayload string', async () => {
+    expect.assertions(1);
+    fetchMock.post('/post-null-postpayload', {});
+    await callApi({
+      url: '/post-formdata',
+      method: 'POST',
+      postPayload: 'null',
+    });
+    expect(fetchMock.lastOptions().body).toBeUndefined();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/connection/callApi/callApiAndParseWithTimeout.test.ts b/superset-frontend/packages/superset-ui-core/test/connection/callApi/callApiAndParseWithTimeout.test.ts
new file mode 100644
index 0000000..a3df648
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/connection/callApi/callApiAndParseWithTimeout.test.ts
@@ -0,0 +1,123 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+
+import callApiAndParseWithTimeout from '@superset-ui/core/src/connection/callApi/callApiAndParseWithTimeout';
+
+// we import these via * so that we can spy on the 'default' property of the object
+import * as callApi from '@superset-ui/core/src/connection/callApi/callApi';
+import * as parseResponse from '@superset-ui/core/src/connection/callApi/parseResponse';
+import * as rejectAfterTimeout from '@superset-ui/core/src/connection/callApi/rejectAfterTimeout';
+
+import { LOGIN_GLOB } from '../fixtures/constants';
+
+describe('callApiAndParseWithTimeout()', () => {
+  beforeAll(() => {
+    fetchMock.get(LOGIN_GLOB, { csrf_token: '1234' });
+  });
+
+  afterAll(fetchMock.restore);
+
+  const mockGetUrl = '/mock/get/url';
+  const mockGetPayload = { get: 'payload' };
+  fetchMock.get(mockGetUrl, mockGetPayload);
+
+  afterEach(() => {
+    fetchMock.reset();
+    jest.useRealTimers();
+  });
+
+  describe('callApi', () => {
+    it('calls callApi()', () => {
+      const callApiSpy = jest.spyOn(callApi, 'default');
+      callApiAndParseWithTimeout({ url: mockGetUrl, method: 'GET' });
+
+      expect(callApiSpy).toHaveBeenCalledTimes(1);
+      callApiSpy.mockClear();
+    });
+  });
+
+  describe('parseResponse', () => {
+    it('calls parseResponse()', () => {
+      const parseSpy = jest.spyOn(parseResponse, 'default');
+      callApiAndParseWithTimeout({ url: mockGetUrl, method: 'GET' });
+
+      expect(parseSpy).toHaveBeenCalledTimes(1);
+      parseSpy.mockClear();
+    });
+  });
+
+  describe('timeout', () => {
+    it('does not create a rejection timer if no timeout passed', () => {
+      const rejectionSpy = jest.spyOn(rejectAfterTimeout, 'default');
+      callApiAndParseWithTimeout({ url: mockGetUrl, method: 'GET' });
+
+      expect(rejectionSpy).toHaveBeenCalledTimes(0);
+      rejectionSpy.mockClear();
+    });
+
+    it('creates a rejection timer if a timeout passed', () => {
+      jest.useFakeTimers(); // prevents the timeout from rejecting + failing test
+      const rejectionSpy = jest.spyOn(rejectAfterTimeout, 'default');
+      callApiAndParseWithTimeout({ url: mockGetUrl, method: 'GET', timeout: 10 });
+
+      expect(rejectionSpy).toHaveBeenCalledTimes(1);
+      rejectionSpy.mockClear();
+    });
+
+    it('rejects if the request exceeds the timeout', async () => {
+      expect.assertions(2);
+      jest.useFakeTimers();
+
+      const mockTimeoutUrl = '/mock/timeout/url';
+      const unresolvingPromise = new Promise(() => {});
+      let error;
+      fetchMock.get(mockTimeoutUrl, () => unresolvingPromise);
+
+      try {
+        const promise = callApiAndParseWithTimeout({
+          url: mockTimeoutUrl,
+          method: 'GET',
+          timeout: 1,
+        });
+        jest.advanceTimersByTime(2);
+        await promise;
+      } catch (err) {
+        error = err;
+      } finally {
+        expect(fetchMock.calls(mockTimeoutUrl)).toHaveLength(1);
+        expect(error).toEqual({
+          error: 'Request timed out',
+          statusText: 'timeout',
+          timeout: 1,
+        });
+      }
+    });
+
+    it('resolves if the request does not exceed the timeout', async () => {
+      expect.assertions(1);
+      const { json } = await callApiAndParseWithTimeout({
+        url: mockGetUrl,
+        method: 'GET',
+        timeout: 100,
+      });
+      expect(json).toEqual(mockGetPayload);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts b/superset-frontend/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts
new file mode 100644
index 0000000..a24578f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts
@@ -0,0 +1,143 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+import callApi from '@superset-ui/core/src/connection/callApi/callApi';
+import parseResponse from '@superset-ui/core/src/connection/callApi/parseResponse';
+
+import { LOGIN_GLOB } from '../fixtures/constants';
+
+describe('parseResponse()', () => {
+  beforeAll(() => {
+    fetchMock.get(LOGIN_GLOB, { csrf_token: '1234' });
+  });
+
+  afterAll(fetchMock.restore);
+
+  const mockGetUrl = '/mock/get/url';
+  const mockPostUrl = '/mock/post/url';
+  const mockErrorUrl = '/mock/error/url';
+  const mockNoParseUrl = '/mock/noparse/url';
+
+  const mockGetPayload = { get: 'payload' };
+  const mockPostPayload = { post: 'payload' };
+  const mockErrorPayload = { status: 500, statusText: 'Internal error' };
+
+  fetchMock.get(mockGetUrl, mockGetPayload);
+  fetchMock.post(mockPostUrl, mockPostPayload);
+  fetchMock.get(mockErrorUrl, () => Promise.reject(mockErrorPayload));
+  fetchMock.get(mockNoParseUrl, new Response('test response'));
+
+  afterEach(fetchMock.reset);
+
+  it('returns a Promise', () => {
+    const apiPromise = callApi({ url: mockGetUrl, method: 'GET' });
+    const parsedResponsePromise = parseResponse(apiPromise);
+    expect(parsedResponsePromise).toBeInstanceOf(Promise);
+  });
+
+  it('resolves to { json, response } if the request succeeds', async () => {
+    expect.assertions(4);
+    const args = await parseResponse(callApi({ url: mockGetUrl, method: 'GET' }));
+    expect(fetchMock.calls(mockGetUrl)).toHaveLength(1);
+    const keys = Object.keys(args);
+    expect(keys).toContain('response');
+    expect(keys).toContain('json');
+    expect(args.json).toEqual(expect.objectContaining(mockGetPayload) as typeof args.json);
+  });
+
+  it('throws if `parseMethod=json` and .json() fails', async () => {
+    expect.assertions(3);
+
+    const mockTextUrl = '/mock/text/url';
+    const mockTextResponse =
+      '<html><head></head><body>I could be a stack trace or something</body></html>';
+    fetchMock.get(mockTextUrl, mockTextResponse);
+
+    let error;
+    try {
+      await parseResponse(callApi({ url: mockTextUrl, method: 'GET' }));
+    } catch (err) {
+      error = err as Error;
+    } finally {
+      expect(fetchMock.calls(mockTextUrl)).toHaveLength(1);
+      expect(error?.stack).toBeDefined();
+      expect(error?.message).toContain('Unexpected token');
+    }
+  });
+
+  it('resolves to { text, response } if the `parseMethod=text`', async () => {
+    expect.assertions(4);
+
+    // test with json + bigint to ensure that it was not first parsed as json
+    const mockTextParseUrl = '/mock/textparse/url';
+    const mockTextJsonResponse = '{ "value": 9223372036854775807 }';
+    fetchMock.get(mockTextParseUrl, mockTextJsonResponse);
+
+    const args = await parseResponse(callApi({ url: mockTextParseUrl, method: 'GET' }), 'text');
+    expect(fetchMock.calls(mockTextParseUrl)).toHaveLength(1);
+    const keys = Object.keys(args);
+    expect(keys).toContain('response');
+    expect(keys).toContain('text');
+    expect(args.text).toBe(mockTextJsonResponse);
+  });
+
+  it('throws if parseMethod is not null|json|text', async () => {
+    expect.assertions(1);
+
+    let error;
+    try {
+      await parseResponse(
+        callApi({ url: mockNoParseUrl, method: 'GET' }),
+        'something-else' as never,
+      );
+    } catch (err) {
+      error = err;
+    } finally {
+      expect(error.message).toEqual(expect.stringContaining('Expected parseResponse=json'));
+    }
+  });
+
+  it('resolves to unmodified `Response` object if `parseMethod=null|raw`', async () => {
+    expect.assertions(3);
+    const responseNull = await parseResponse(callApi({ url: mockNoParseUrl, method: 'GET' }), null);
+    const responseRaw = await parseResponse(callApi({ url: mockNoParseUrl, method: 'GET' }), 'raw');
+    expect(fetchMock.calls(mockNoParseUrl)).toHaveLength(2);
+    expect(responseNull.bodyUsed).toBe(false);
+    expect(responseRaw.bodyUsed).toBe(false);
+  });
+
+  it('rejects if request.ok=false', async () => {
+    expect.assertions(3);
+    const mockNotOkayUrl = '/mock/notokay/url';
+    fetchMock.get(mockNotOkayUrl, 404); // 404s result in not response.ok=false
+
+    const apiPromise = callApi({ url: mockNotOkayUrl, method: 'GET' });
+
+    let error;
+    try {
+      await parseResponse(apiPromise);
+    } catch (err) {
+      error = err as { ok: boolean; status: number };
+    } finally {
+      expect(fetchMock.calls(mockNotOkayUrl)).toHaveLength(1);
+      expect(error?.ok).toBe(false);
+      expect(error?.status).toBe(404);
+    }
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/connection/callApi/rejectAfterTimeout.test.ts b/superset-frontend/packages/superset-ui-core/test/connection/callApi/rejectAfterTimeout.test.ts
new file mode 100644
index 0000000..da2161b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/connection/callApi/rejectAfterTimeout.test.ts
@@ -0,0 +1,38 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import rejectAfterTimeout from '@superset-ui/core/src/connection/callApi/rejectAfterTimeout';
+
+describe('rejectAfterTimeout()', () => {
+  it('returns a promise that rejects after the specified timeout', async () => {
+    expect.assertions(1);
+    jest.useFakeTimers();
+    let error;
+
+    try {
+      const promise = rejectAfterTimeout(10);
+      jest.advanceTimersByTime(11);
+      await promise;
+    } catch (err) {
+      error = err;
+    } finally {
+      expect(error).toBeDefined();
+    }
+    jest.useRealTimers();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/connection/fixtures/constants.ts b/superset-frontend/packages/superset-ui-core/test/connection/fixtures/constants.ts
new file mode 100644
index 0000000..30faacd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/connection/fixtures/constants.ts
@@ -0,0 +1,19 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export const LOGIN_GLOB = 'glob:*superset/csrf_token/*'; // eslint-disable-line import/prefer-default-export
diff --git a/superset-frontend/packages/superset-ui-core/test/dimension/computeMaxFontSize.test.ts b/superset-frontend/packages/superset-ui-core/test/dimension/computeMaxFontSize.test.ts
new file mode 100644
index 0000000..29856b3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dimension/computeMaxFontSize.test.ts
@@ -0,0 +1,44 @@
+import { computeMaxFontSize } from '@superset-ui/core/src';
+import { addDummyFill, removeDummyFill, SAMPLE_TEXT } from './getBBoxDummyFill';
+
+describe('computeMaxFontSize(input)', () => {
+  describe('returns dimension of the given text', () => {
+    beforeEach(addDummyFill);
+    afterEach(removeDummyFill);
+
+    it('requires either idealFontSize or maxHeight', () => {
+      expect(() => {
+        computeMaxFontSize({
+          text: SAMPLE_TEXT[0],
+        });
+      }).toThrow();
+    });
+    it('computes maximum font size for given maxWidth and maxHeight', () => {
+      expect(
+        computeMaxFontSize({
+          maxWidth: 400,
+          maxHeight: 30,
+          text: 'sample text',
+        }),
+      ).toEqual(30);
+    });
+    it('computes maximum font size for given idealFontSize and maxHeight', () => {
+      expect(
+        computeMaxFontSize({
+          maxHeight: 20,
+          idealFontSize: 40,
+          text: SAMPLE_TEXT[0],
+        }),
+      ).toEqual(20);
+    });
+    it('computes maximum font size for given maxWidth and idealFontSize', () => {
+      expect(
+        computeMaxFontSize({
+          maxWidth: 250,
+          idealFontSize: 40,
+          text: SAMPLE_TEXT[0],
+        }),
+      ).toEqual(25);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/dimension/getBBoxDummyFill.ts b/superset-frontend/packages/superset-ui-core/test/dimension/getBBoxDummyFill.ts
new file mode 100644
index 0000000..f78eb2b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dimension/getBBoxDummyFill.ts
@@ -0,0 +1,63 @@
+let originalFn: () => DOMRect;
+
+const textToWidth = {
+  paris: 200,
+  tokyo: 300,
+  beijing: 400,
+};
+
+export const SAMPLE_TEXT = Object.keys(textToWidth);
+
+export function addDummyFill() {
+  // @ts-ignore - fix jsdom
+  originalFn = SVGElement.prototype.getBBox;
+
+  // @ts-ignore - fix jsdom
+  SVGElement.prototype.getBBox = function getBBox() {
+    let width = textToWidth[this.textContent as keyof typeof textToWidth] || 200;
+    let height = 20;
+
+    if (this.getAttribute('class') === 'test-class') {
+      width /= 2;
+    }
+
+    if (this.style.fontFamily === 'Lobster') {
+      width *= 1.25;
+    }
+
+    if (this.style.fontSize) {
+      const size = Number(this.style.fontSize.replace('px', ''));
+      const ratio = size / 20;
+      width *= ratio;
+      height *= ratio;
+    }
+
+    if (this.style.fontStyle === 'italic') {
+      width *= 1.5;
+    }
+
+    if (this.style.fontWeight === '700') {
+      width *= 2;
+    }
+
+    if (this.style.letterSpacing) {
+      width *= 1.1;
+    }
+
+    return {
+      x: 0,
+      y: 0,
+      width,
+      height,
+      top: 0,
+      left: 0,
+      right: 0,
+      bottom: 0,
+    };
+  };
+}
+
+export function removeDummyFill() {
+  // @ts-ignore - fix jsdom
+  SVGElement.prototype.getBBox = originalFn;
+}
diff --git a/superset-frontend/packages/superset-ui-core/test/dimension/getMultipleTextDimensions.test.ts b/superset-frontend/packages/superset-ui-core/test/dimension/getMultipleTextDimensions.test.ts
new file mode 100644
index 0000000..93166f5
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dimension/getMultipleTextDimensions.test.ts
@@ -0,0 +1,202 @@
+import { getMultipleTextDimensions, promiseTimeout } from '@superset-ui/core/src';
+import { addDummyFill, removeDummyFill, SAMPLE_TEXT } from './getBBoxDummyFill';
+
+describe('getMultipleTextDimension(input)', () => {
+  describe('returns dimension of the given text', () => {
+    beforeEach(addDummyFill);
+    afterEach(removeDummyFill);
+
+    it('takes an array of text as argument', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1], ''],
+        }),
+      ).toEqual([
+        {
+          height: 20,
+          width: 200,
+        },
+        {
+          height: 20,
+          width: 300,
+        },
+        {
+          height: 0,
+          width: 0,
+        },
+      ]);
+    });
+    it('handles empty text', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: ['', ''],
+        }),
+      ).toEqual([
+        {
+          height: 0,
+          width: 0,
+        },
+        {
+          height: 0,
+          width: 0,
+        },
+      ]);
+    });
+    it('handles duplicate text', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[0]],
+        }),
+      ).toEqual([
+        {
+          height: 20,
+          width: 200,
+        },
+        {
+          height: 20,
+          width: 200,
+        },
+      ]);
+    });
+    it('accepts provided class via className', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]],
+          className: 'test-class',
+        }),
+      ).toEqual([
+        {
+          height: 20,
+          width: 100,
+        },
+        {
+          height: 20,
+          width: 150,
+        },
+      ]);
+    });
+    it('accepts provided style.font', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]],
+          style: {
+            font: 'italic 700 30px Lobster',
+          },
+        }),
+      ).toEqual([
+        {
+          height: 30, // 20 * (30/20) [fontSize=30]
+          width: 1125, // 200 * 1.25 [fontFamily=Lobster] * (30/20) [fontSize=30] * 1.5 [fontStyle=italic] * 2 [fontWeight=700]
+        },
+        {
+          height: 30,
+          width: 1688, // 300 * 1.25 [fontFamily=Lobster] * (30/20) [fontSize=30] * 1.5 [fontStyle=italic] * 2 [fontWeight=700]
+        },
+      ]);
+    });
+    it('accepts provided style.fontFamily', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]],
+          style: {
+            fontFamily: 'Lobster',
+          },
+        }),
+      ).toEqual([
+        {
+          height: 20,
+          width: 250, // 200 * 1.25 [fontFamily=Lobster]
+        },
+        {
+          height: 20,
+          width: 375, // 300 * 1.25 [fontFamily=Lobster]
+        },
+      ]);
+    });
+    it('accepts provided style.fontSize', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]],
+          style: {
+            fontSize: '40px',
+          },
+        }),
+      ).toEqual([
+        {
+          height: 40, // 20 [baseHeight] * (40/20) [fontSize=40]
+          width: 400, // 200 [baseWidth] * (40/20) [fontSize=40]
+        },
+        {
+          height: 40,
+          width: 600, // 300 [baseWidth] * (40/20) [fontSize=40]
+        },
+      ]);
+    });
+    it('accepts provided style.fontStyle', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]],
+          style: {
+            fontStyle: 'italic',
+          },
+        }),
+      ).toEqual([
+        {
+          height: 20,
+          width: 300, // 200 [baseWidth] * 1.5 [fontStyle=italic]
+        },
+        {
+          height: 20,
+          width: 450, // 300 [baseWidth] * 1.5 [fontStyle=italic]
+        },
+      ]);
+    });
+    it('accepts provided style.fontWeight', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]],
+          style: {
+            fontWeight: 700,
+          },
+        }),
+      ).toEqual([
+        {
+          height: 20,
+          width: 400, // 200 [baseWidth] * 2 [fontWeight=700]
+        },
+        {
+          height: 20,
+          width: 600, // 300 [baseWidth] * 2 [fontWeight=700]
+        },
+      ]);
+    });
+    it('accepts provided style.letterSpacing', () => {
+      expect(
+        getMultipleTextDimensions({
+          texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]],
+          style: {
+            letterSpacing: '1.1',
+          },
+        }),
+      ).toEqual([
+        {
+          height: 20,
+          width: 221, // Ceiling(200 [baseWidth] * 1.1 [letterSpacing=1.1])
+        },
+        {
+          height: 20,
+          width: 330, // Ceiling(300 [baseWidth] * 1.1 [letterSpacing=1.1])
+        },
+      ]);
+    });
+  });
+  it('cleans up DOM', async () => {
+    getMultipleTextDimensions({
+      texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]],
+    });
+
+    expect(document.querySelectorAll('svg')).toHaveLength(1);
+    await promiseTimeout(() => {}, 501);
+    expect(document.querySelector('svg')).toBeNull();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/dimension/getTextDimension.test.ts b/superset-frontend/packages/superset-ui-core/test/dimension/getTextDimension.test.ts
new file mode 100644
index 0000000..01b4ac8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dimension/getTextDimension.test.ts
@@ -0,0 +1,156 @@
+import { promiseTimeout, getTextDimension } from '@superset-ui/core/src';
+import { addDummyFill, removeDummyFill, SAMPLE_TEXT } from './getBBoxDummyFill';
+
+describe('getTextDimension(input)', () => {
+  describe('returns default dimension if getBBox() is not available', () => {
+    it('returns default value for default dimension', () => {
+      expect(
+        getTextDimension({
+          text: SAMPLE_TEXT[0],
+        }),
+      ).toEqual({
+        height: 20,
+        width: 100,
+      });
+    });
+    it('return specified value if specified', () => {
+      expect(
+        getTextDimension(
+          {
+            text: SAMPLE_TEXT[0],
+          },
+          {
+            height: 30,
+            width: 400,
+          },
+        ),
+      ).toEqual({
+        height: 30,
+        width: 400,
+      });
+    });
+  });
+  describe('returns dimension of the given text', () => {
+    beforeEach(addDummyFill);
+    afterEach(removeDummyFill);
+
+    it('takes text as argument', () => {
+      expect(
+        getTextDimension({
+          text: SAMPLE_TEXT[0],
+        }),
+      ).toEqual({
+        height: 20,
+        width: 200,
+      });
+    });
+    it('accepts provided class via className', () => {
+      expect(
+        getTextDimension({
+          text: SAMPLE_TEXT[0],
+          className: 'test-class',
+        }),
+      ).toEqual({
+        height: 20,
+        width: 100, // width is 100 after adding class
+      });
+    });
+    it('accepts provided style.font', () => {
+      expect(
+        getTextDimension({
+          text: SAMPLE_TEXT[0],
+          style: {
+            font: 'italic 700 30px Lobster',
+          },
+        }),
+      ).toEqual({
+        height: 30, // 20 * (30/20) [fontSize=30]
+        width: 1125, // 250 [fontFamily=Lobster] * (30/20) [fontSize=30] * 1.5 [fontStyle=italic] * 2 [fontWeight=700]
+      });
+    });
+    it('accepts provided style.fontFamily', () => {
+      expect(
+        getTextDimension({
+          text: SAMPLE_TEXT[0],
+          style: {
+            fontFamily: 'Lobster',
+          },
+        }),
+      ).toEqual({
+        height: 20,
+        width: 250, // (250 [fontFamily=Lobster]
+      });
+    });
+    it('accepts provided style.fontSize', () => {
+      expect(
+        getTextDimension({
+          text: SAMPLE_TEXT[0],
+          style: {
+            fontSize: '40px',
+          },
+        }),
+      ).toEqual({
+        height: 40, // 20 [baseHeight] * (40/20) [fontSize=40]
+        width: 400, // 200 [baseWidth] * (40/20) [fontSize=40]
+      });
+    });
+    it('accepts provided style.fontStyle', () => {
+      expect(
+        getTextDimension({
+          text: SAMPLE_TEXT[0],
+          style: {
+            fontStyle: 'italic',
+          },
+        }),
+      ).toEqual({
+        height: 20,
+        width: 300, // 200 [baseWidth] * 1.5 [fontStyle=italic]
+      });
+    });
+    it('accepts provided style.fontWeight', () => {
+      expect(
+        getTextDimension({
+          text: SAMPLE_TEXT[0],
+          style: {
+            fontWeight: 700,
+          },
+        }),
+      ).toEqual({
+        height: 20,
+        width: 400, // 200 [baseWidth] * 2 [fontWeight=700]
+      });
+    });
+    it('accepts provided style.letterSpacing', () => {
+      expect(
+        getTextDimension({
+          text: SAMPLE_TEXT[0],
+          style: {
+            letterSpacing: '1.1',
+          },
+        }),
+      ).toEqual({
+        height: 20,
+        width: 221, // Ceiling(200 [baseWidth] * 1.1 [letterSpacing=1.1])
+      });
+    });
+    it('handle empty text', () => {
+      expect(
+        getTextDimension({
+          text: '',
+        }),
+      ).toEqual({
+        height: 0,
+        width: 0,
+      });
+    });
+  });
+  it('cleans up DOM', async () => {
+    getTextDimension({
+      text: SAMPLE_TEXT[0],
+    });
+
+    expect(document.querySelectorAll('svg')).toHaveLength(1);
+    await promiseTimeout(() => {}, 501);
+    expect(document.querySelector('svg')).toBeNull();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/dimension/mergeMargin.test.ts b/superset-frontend/packages/superset-ui-core/test/dimension/mergeMargin.test.ts
new file mode 100644
index 0000000..2739c4c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dimension/mergeMargin.test.ts
@@ -0,0 +1,190 @@
+import { mergeMargin } from '@superset-ui/core/src';
+
+describe('mergeMargin(margin1, margin2, mode?)', () => {
+  it('combines two given margin', () => {
+    expect(
+      mergeMargin(
+        {
+          top: 1,
+          left: 1,
+          bottom: 2,
+          right: 2,
+        },
+        {
+          top: 2,
+          left: 2,
+          bottom: 1,
+          right: 1,
+        },
+      ),
+    ).toEqual({
+      top: 2,
+      left: 2,
+      bottom: 2,
+      right: 2,
+    });
+  });
+  describe('default values', () => {
+    it('works if margin1 is not defined', () => {
+      expect(
+        mergeMargin(undefined, {
+          top: 2,
+          left: 2,
+          bottom: 1,
+          right: 1,
+        }),
+      ).toEqual({
+        top: 2,
+        left: 2,
+        bottom: 1,
+        right: 1,
+      });
+    });
+    it('works if margin2 is not defined', () => {
+      expect(
+        mergeMargin(
+          {
+            top: 1,
+            left: 1,
+            bottom: 2,
+            right: 2,
+          },
+          undefined,
+        ),
+      ).toEqual({
+        top: 1,
+        left: 1,
+        bottom: 2,
+        right: 2,
+      });
+    });
+    it('use 0 for the side that is not specified', () => {
+      expect(mergeMargin({}, {})).toEqual({
+        top: 0,
+        left: 0,
+        bottom: 0,
+        right: 0,
+      });
+    });
+  });
+  describe('mode', () => {
+    it('if mode=expand, returns the larger margin for each side', () => {
+      expect(
+        mergeMargin(
+          {
+            top: 1,
+            left: 1,
+            bottom: 2,
+            right: 2,
+          },
+          {
+            top: 2,
+            left: 2,
+            bottom: 1,
+            right: 1,
+          },
+          'expand',
+        ),
+      ).toEqual({
+        top: 2,
+        left: 2,
+        bottom: 2,
+        right: 2,
+      });
+    });
+    it('if mode=shrink, returns the smaller margin for each side', () => {
+      expect(
+        mergeMargin(
+          {
+            top: 1,
+            left: 1,
+            bottom: 2,
+            right: 2,
+          },
+          {
+            top: 2,
+            left: 2,
+            bottom: 1,
+            right: 1,
+          },
+          'shrink',
+        ),
+      ).toEqual({
+        top: 1,
+        left: 1,
+        bottom: 1,
+        right: 1,
+      });
+    });
+    it('expand by default', () => {
+      expect(
+        mergeMargin(
+          {
+            top: 1,
+            left: 1,
+            bottom: 2,
+            right: 2,
+          },
+          {
+            top: 2,
+            left: 2,
+            bottom: 1,
+            right: 1,
+          },
+        ),
+      ).toEqual({
+        top: 2,
+        left: 2,
+        bottom: 2,
+        right: 2,
+      });
+    });
+  });
+  it('works correctly for negative margins', () => {
+    expect(
+      mergeMargin(
+        {
+          top: -3,
+          left: -3,
+          bottom: -2,
+          right: -2,
+        },
+        {
+          top: -2,
+          left: -2,
+          bottom: 0,
+          right: -1,
+        },
+      ),
+    ).toEqual({
+      top: -2,
+      left: -2,
+      bottom: 0,
+      right: -1,
+    });
+  });
+  it('if there are NaN or null, use another value', () => {
+    expect(
+      mergeMargin(
+        {
+          top: 10,
+          // @ts-ignore to let us pass `null` for testing
+          left: null,
+          bottom: 20,
+          right: NaN,
+        },
+        {
+          top: NaN,
+          left: 30,
+          bottom: null,
+          right: 40,
+        },
+      ),
+    ).toEqual({
+      top: 10,
+      left: 30,
+      bottom: 20,
+      right: 40,
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/dimension/parseLength.test.ts b/superset-frontend/packages/superset-ui-core/test/dimension/parseLength.test.ts
new file mode 100644
index 0000000..da295db
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dimension/parseLength.test.ts
@@ -0,0 +1,29 @@
+import { parseLength } from '@superset-ui/core/src';
+
+describe('parseLength(input)', () => {
+  it('handles string "auto"', () => {
+    expect(parseLength('auto')).toEqual({ isDynamic: true, multiplier: 1 });
+  });
+
+  it('handles strings with % at the end', () => {
+    expect(parseLength('100%')).toEqual({ isDynamic: true, multiplier: 1 });
+    expect(parseLength('50%')).toEqual({ isDynamic: true, multiplier: 0.5 });
+    expect(parseLength('0%')).toEqual({ isDynamic: true, multiplier: 0 });
+  });
+
+  it('handles strings that are numbers with px at the end', () => {
+    expect(parseLength('100px')).toEqual({ isDynamic: false, value: 100 });
+    expect(parseLength('20.5px')).toEqual({ isDynamic: false, value: 20.5 });
+  });
+
+  it('handles strings that are numbers', () => {
+    expect(parseLength('100')).toEqual({ isDynamic: false, value: 100 });
+    expect(parseLength('40.5')).toEqual({ isDynamic: false, value: 40.5 });
+    expect(parseLength('20.0')).toEqual({ isDynamic: false, value: 20 });
+  });
+
+  it('handles numbers', () => {
+    expect(parseLength(100)).toEqual({ isDynamic: false, value: 100 });
+    expect(parseLength(0)).toEqual({ isDynamic: false, value: 0 });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/dimension/svg/LazyFactory.test.ts b/superset-frontend/packages/superset-ui-core/test/dimension/svg/LazyFactory.test.ts
new file mode 100644
index 0000000..93edff5
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dimension/svg/LazyFactory.test.ts
@@ -0,0 +1,49 @@
+import LazyFactory from '@superset-ui/core/src/dimension/svg/LazyFactory';
+
+describe('LazyFactory', () => {
+  describe('createInContainer()', () => {
+    it('creates node in the specified container', () => {
+      const factory = new LazyFactory(() => document.createElement('div'));
+      const div = factory.createInContainer();
+      const innerDiv = factory.createInContainer(div);
+      expect(div.parentNode).toEqual(document.body);
+      expect(innerDiv.parentNode).toEqual(div);
+    });
+    it('reuses existing', () => {
+      const factoryFn = jest.fn(() => document.createElement('div'));
+      const factory = new LazyFactory(factoryFn);
+      const div1 = factory.createInContainer();
+      const div2 = factory.createInContainer();
+      expect(div1).toBe(div2);
+      expect(factoryFn).toHaveBeenCalledTimes(1);
+    });
+  });
+  describe('removeFromContainer', () => {
+    it('removes node from container', () => {
+      const factory = new LazyFactory(() => document.createElement('div'));
+      const div = factory.createInContainer();
+      const innerDiv = factory.createInContainer(div);
+      expect(div.parentNode).toEqual(document.body);
+      expect(innerDiv.parentNode).toEqual(div);
+      factory.removeFromContainer();
+      factory.removeFromContainer(div);
+      expect(div.parentNode).toBeNull();
+      expect(innerDiv.parentNode).toBeNull();
+    });
+    it('does not remove if others are using', () => {
+      const factory = new LazyFactory(() => document.createElement('div'));
+      const div1 = factory.createInContainer();
+      factory.createInContainer();
+      factory.removeFromContainer();
+      expect(div1.parentNode).toEqual(document.body);
+      factory.removeFromContainer();
+      expect(div1.parentNode).toBeNull();
+    });
+    it('does not crash if try to remove already removed node', () => {
+      const factory = new LazyFactory(() => document.createElement('div'));
+      factory.createInContainer();
+      factory.removeFromContainer();
+      expect(() => factory.removeFromContainer()).not.toThrow();
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/dimension/svg/getBBoxCeil.test.ts b/superset-frontend/packages/superset-ui-core/test/dimension/svg/getBBoxCeil.test.ts
new file mode 100644
index 0000000..a5d3cfc
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dimension/svg/getBBoxCeil.test.ts
@@ -0,0 +1,39 @@
+import getBBoxCeil from '@superset-ui/core/src/dimension/svg/getBBoxCeil';
+import createTextNode from '@superset-ui/core/src/dimension/svg/createTextNode';
+
+describe('getBBoxCeil(node, defaultDimension)', () => {
+  describe('returns default dimension if getBBox() is not available', () => {
+    it('returns default value for default dimension', () => {
+      expect(getBBoxCeil(createTextNode())).toEqual({
+        height: 20,
+        width: 100,
+      });
+    });
+    it('return specified value if specified', () => {
+      expect(
+        getBBoxCeil(createTextNode(), {
+          height: 30,
+          width: 400,
+        }),
+      ).toEqual({
+        height: 30,
+        width: 400,
+      });
+    });
+  });
+  describe('returns ceiling of the svg element', () => {
+    it('converts to ceiling if value is not integer', () => {
+      expect(getBBoxCeil(createTextNode(), { height: 10.6, width: 11.1 })).toEqual({
+        height: 11,
+        width: 12,
+      });
+    });
+
+    it('does nothing if value is integer', () => {
+      expect(getBBoxCeil(createTextNode())).toEqual({
+        height: 20,
+        width: 100,
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/dimension/svg/updateTextNode.test.ts b/superset-frontend/packages/superset-ui-core/test/dimension/svg/updateTextNode.test.ts
new file mode 100644
index 0000000..08859eb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dimension/svg/updateTextNode.test.ts
@@ -0,0 +1,74 @@
+import updateTextNode from '@superset-ui/core/src/dimension/svg/updateTextNode';
+import createTextNode from '@superset-ui/core/src/dimension/svg/createTextNode';
+
+describe('updateTextNode(node, options)', () => {
+  it('handles empty options', () => {
+    const node = updateTextNode(createTextNode());
+    expect(node.getAttribute('class')).toEqual('');
+    expect(node.style.font).toEqual('');
+    expect(node.style.fontWeight).toEqual('');
+    expect(node.style.fontSize).toEqual('');
+    expect(node.style.fontStyle).toEqual('');
+    expect(node.style.fontFamily).toEqual('');
+    expect(node.style.letterSpacing).toEqual('');
+    expect(node.textContent).toEqual('');
+  });
+
+  it('handles setting class', () => {
+    const node = updateTextNode(createTextNode(), { className: 'abc' });
+    expect(node.getAttribute('class')).toEqual('abc');
+    expect(node.style.font).toEqual('');
+    expect(node.style.fontWeight).toEqual('');
+    expect(node.style.fontSize).toEqual('');
+    expect(node.style.fontStyle).toEqual('');
+    expect(node.style.fontFamily).toEqual('');
+    expect(node.style.letterSpacing).toEqual('');
+    expect(node.textContent).toEqual('');
+  });
+
+  it('handles setting text', () => {
+    const node = updateTextNode(createTextNode(), { text: 'abc' });
+    expect(node.getAttribute('class')).toEqual('');
+    expect(node.style.font).toEqual('');
+    expect(node.style.fontWeight).toEqual('');
+    expect(node.style.fontSize).toEqual('');
+    expect(node.style.fontStyle).toEqual('');
+    expect(node.style.fontFamily).toEqual('');
+    expect(node.style.letterSpacing).toEqual('');
+    expect(node.textContent).toEqual('abc');
+  });
+
+  it('handles setting font', () => {
+    const node = updateTextNode(createTextNode(), {
+      style: {
+        font: 'italic 30px Lobster 700',
+      },
+    });
+    expect(node.getAttribute('class')).toEqual('');
+    expect(node.style.fontWeight).toEqual('700');
+    expect(node.style.fontSize).toEqual('30px');
+    expect(node.style.fontStyle).toEqual('italic');
+    expect(node.style.fontFamily).toEqual('Lobster');
+    expect(node.style.letterSpacing).toEqual('');
+    expect(node.textContent).toEqual('');
+  });
+
+  it('handles setting specific font style', () => {
+    const node = updateTextNode(createTextNode(), {
+      style: {
+        fontFamily: 'Lobster',
+        fontStyle: 'italic',
+        fontWeight: '700',
+        fontSize: '30px',
+        letterSpacing: 1.1,
+      },
+    });
+    expect(node.getAttribute('class')).toEqual('');
+    expect(node.style.fontWeight).toEqual('700');
+    expect(node.style.fontSize).toEqual('30px');
+    expect(node.style.fontStyle).toEqual('italic');
+    expect(node.style.fontFamily).toEqual('Lobster');
+    expect(node.style.letterSpacing).toEqual('1.1');
+    expect(node.textContent).toEqual('');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/dynamic-plugins/shared-modules.test.ts b/superset-frontend/packages/superset-ui-core/test/dynamic-plugins/shared-modules.test.ts
new file mode 100644
index 0000000..403b618
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/dynamic-plugins/shared-modules.test.ts
@@ -0,0 +1,67 @@
+import { defineSharedModule, defineSharedModules, reset } from '../../src';
+
+describe('shared modules', () => {
+  afterEach(() => {
+    reset();
+  });
+
+  it('assigns to window', async () => {
+    const fakeModule = { foo: 'bar' };
+    const fetchModule = jest.fn().mockResolvedValue(fakeModule);
+
+    await defineSharedModule('test-module', fetchModule);
+
+    expect((window as any)['__superset__/test-module']).toStrictEqual(fakeModule);
+  });
+
+  it('resolves to the same reference every time', async () => {
+    const fakeModule = { foo: 'bar' };
+    const fetchModule = jest.fn().mockResolvedValue(fakeModule);
+
+    const result1 = await defineSharedModule('test-module', fetchModule);
+    const result2 = await defineSharedModule('test-module', fetchModule);
+
+    expect(result1).toStrictEqual(fakeModule);
+    expect(result2).toStrictEqual(fakeModule);
+  });
+
+  it('does not redefine unnecessarily', async () => {
+    const fakeModule = { foo: 'bar' };
+    const fetchModule = jest.fn().mockResolvedValue(fakeModule);
+    const duplicateFetchModule = jest.fn().mockResolvedValue(fakeModule);
+
+    const result1 = await defineSharedModule('test-module', fetchModule);
+    const result2 = await defineSharedModule('test-module', duplicateFetchModule);
+
+    expect(result1).toStrictEqual(fakeModule);
+    expect(result2).toStrictEqual(fakeModule);
+    expect(duplicateFetchModule).not.toHaveBeenCalled();
+  });
+
+  it('deduplicates in-progress definitions', async () => {
+    const fakeModule = { foo: 'bar' };
+    // get a promise that actually takes a moment;
+    const fetchModule = jest
+      .fn()
+      .mockImplementation(() => Promise.resolve(setImmediate).then(() => fakeModule));
+
+    const promise1 = defineSharedModule('test-module', fetchModule);
+    const promise2 = defineSharedModule('test-module', fetchModule);
+    const [result1, result2] = await Promise.all([promise1, promise2]);
+
+    expect(fetchModule).toHaveBeenCalledTimes(1);
+    expect(result1).toStrictEqual(result2);
+  });
+
+  it('shares a map of modules', async () => {
+    const foo = { foo: 'bar' };
+    const fizz = { fizz: 'buzz' };
+    await defineSharedModules({
+      'module-foo': async () => foo,
+      'module-fizz': async () => fizz,
+    });
+
+    expect((window as any)['__superset__/module-foo']).toEqual(foo);
+    expect((window as any)['__superset__/module-fizz']).toEqual(fizz);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/index.test.ts b/superset-frontend/packages/superset-ui-core/test/index.test.ts
new file mode 100644
index 0000000..36424c9
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/index.test.ts
@@ -0,0 +1,27 @@
+import {
+  ExtensibleFunction,
+  Plugin,
+  Preset,
+  Registry,
+  RegistryWithDefaultKey,
+  convertKeysToCamelCase,
+  isDefined,
+  isRequired,
+  makeSingleton,
+} from '@superset-ui/core/src';
+
+describe('index', () => {
+  it('exports modules', () => {
+    [
+      ExtensibleFunction,
+      Plugin,
+      Preset,
+      Registry,
+      RegistryWithDefaultKey,
+      convertKeysToCamelCase,
+      isDefined,
+      isRequired,
+      makeSingleton,
+    ].forEach(x => expect(x).toBeDefined());
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts b/superset-frontend/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts
new file mode 100644
index 0000000..b3c59de
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts
@@ -0,0 +1,68 @@
+import { ExtensibleFunction } from '@superset-ui/core/src';
+
+describe('ExtensibleFunction', () => {
+  interface Func1 {
+    (): number;
+  }
+
+  class Func1 extends ExtensibleFunction {
+    constructor(x: unknown) {
+      super(() => x); // closure
+    }
+  }
+
+  interface Func2 {
+    (): number;
+  }
+
+  class Func2 extends ExtensibleFunction {
+    x: unknown;
+
+    constructor(x: unknown) {
+      super(() => this.x); // arrow function, refer to its own field
+      this.x = x;
+    }
+
+    // eslint-disable-next-line class-methods-use-this
+    hi() {
+      return 'hi';
+    }
+  }
+
+  class Func3 extends ExtensibleFunction {
+    x: unknown;
+
+    constructor(x: unknown) {
+      // @ts-ignore
+      super(function customName() {
+        // @ts-ignore
+        return customName.x as unknown;
+      }); // named function
+      this.x = x;
+    }
+  }
+
+  it('its subclass is an instance of Function', () => {
+    expect(Func1).toBeInstanceOf(Function);
+    expect(Func2).toBeInstanceOf(Function);
+    expect(Func3).toBeInstanceOf(Function);
+  });
+
+  const func1 = new Func1(100);
+  const func2 = new Func2(100);
+  const func3 = new Func3(100);
+
+  it('an instance of its subclass is executable like regular function', () => {
+    expect(func1()).toEqual(100);
+    expect(func2()).toEqual(100);
+  });
+
+  it('its subclass behaves like regular class with its own fields and functions', () => {
+    expect(func2.x).toEqual(100);
+    expect(func2.hi()).toEqual('hi');
+  });
+
+  it('its subclass can set name by passing named function to its constructor', () => {
+    expect(func3.name).toEqual('customName');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/models/Plugin.test.ts b/superset-frontend/packages/superset-ui-core/test/models/Plugin.test.ts
new file mode 100644
index 0000000..97f16ea
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/models/Plugin.test.ts
@@ -0,0 +1,60 @@
+import { Plugin } from '@superset-ui/core/src';
+
+describe('Plugin', () => {
+  it('exists', () => {
+    expect(Plugin).toBeDefined();
+  });
+
+  describe('new Plugin()', () => {
+    it('creates a new plugin', () => {
+      const plugin = new Plugin();
+      expect(plugin).toBeInstanceOf(Plugin);
+    });
+  });
+
+  describe('.configure(config, replace)', () => {
+    it('extends the default config with given config when replace is not set or false', () => {
+      const plugin = new Plugin();
+      plugin.configure({ key: 'abc', foo: 'bar' });
+      plugin.configure({ key: 'def' });
+      expect(plugin.config).toEqual({ key: 'def', foo: 'bar' });
+    });
+    it('replaces the default config with given config when replace is true', () => {
+      const plugin = new Plugin();
+      plugin.configure({ key: 'abc', foo: 'bar' });
+      plugin.configure({ key: 'def' }, true);
+      expect(plugin.config).toEqual({ key: 'def' });
+    });
+    it('returns the plugin itself', () => {
+      const plugin = new Plugin();
+      expect(plugin.configure({ key: 'abc' })).toBe(plugin);
+    });
+  });
+
+  describe('.resetConfig()', () => {
+    it('resets config back to default', () => {
+      const plugin = new Plugin();
+      plugin.configure({ key: 'abc', foo: 'bar' });
+      plugin.resetConfig();
+      expect(plugin.config).toEqual({});
+    });
+    it('returns the plugin itself', () => {
+      const plugin = new Plugin();
+      expect(plugin.resetConfig()).toBe(plugin);
+    });
+  });
+
+  describe('.register()', () => {
+    it('returns the plugin itself', () => {
+      const plugin = new Plugin();
+      expect(plugin.register()).toBe(plugin);
+    });
+  });
+
+  describe('.unregister()', () => {
+    it('returns the plugin itself', () => {
+      const plugin = new Plugin();
+      expect(plugin.unregister()).toBe(plugin);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/models/Preset.test.ts b/superset-frontend/packages/superset-ui-core/test/models/Preset.test.ts
new file mode 100644
index 0000000..8f7a016
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/models/Preset.test.ts
@@ -0,0 +1,67 @@
+import { Plugin, Preset } from '@superset-ui/core/src';
+
+describe('Preset', () => {
+  it('exists', () => {
+    expect(Preset).toBeDefined();
+  });
+
+  describe('new Preset()', () => {
+    it('creates new preset', () => {
+      const preset = new Preset();
+      expect(preset).toBeInstanceOf(Preset);
+    });
+  });
+
+  describe('.register()', () => {
+    it('register all listed presets then plugins', () => {
+      const values: number[] = [];
+      class Plugin1 extends Plugin {
+        register() {
+          values.push(1);
+
+          return this;
+        }
+      }
+      class Plugin2 extends Plugin {
+        register() {
+          values.push(2);
+
+          return this;
+        }
+      }
+      class Plugin3 extends Plugin {
+        register() {
+          values.push(3);
+
+          return this;
+        }
+      }
+      class Plugin4 extends Plugin {
+        register() {
+          const { key } = this.config;
+          values.push(key as number);
+
+          return this;
+        }
+      }
+
+      const preset1 = new Preset({
+        plugins: [new Plugin1()],
+      });
+      const preset2 = new Preset({
+        plugins: [new Plugin2()],
+      });
+      const preset3 = new Preset({
+        presets: [preset1, preset2],
+        plugins: [new Plugin3(), new Plugin4().configure({ key: 9 })],
+      });
+      preset3.register();
+      expect(values).toEqual([1, 2, 3, 9]);
+    });
+
+    it('returns itself', () => {
+      const preset = new Preset();
+      expect(preset.register()).toBe(preset);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/models/Registry.test.ts b/superset-frontend/packages/superset-ui-core/test/models/Registry.test.ts
new file mode 100644
index 0000000..a0c08ec
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/models/Registry.test.ts
@@ -0,0 +1,356 @@
+/* eslint no-console: 0 */
+import mockConsole from 'jest-mock-console';
+import { Registry, OverwritePolicy } from '@superset-ui/core/src';
+
+const loader = () => 'testValue';
+
+describe('Registry', () => {
+  it('exists', () => {
+    expect(Registry !== undefined).toBe(true);
+  });
+
+  describe('new Registry(config)', () => {
+    it('can create a new registry when config.name is not given', () => {
+      const registry = new Registry();
+      expect(registry).toBeInstanceOf(Registry);
+    });
+    it('can create a new registry when config.name is given', () => {
+      const registry = new Registry({ name: 'abc' });
+      expect(registry).toBeInstanceOf(Registry);
+      expect(registry.name).toBe('abc');
+    });
+  });
+
+  describe('.clear()', () => {
+    it('clears all registered items', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+      registry.clear();
+      expect(Object.keys(registry.items)).toHaveLength(0);
+      expect(Object.keys(registry.promises)).toHaveLength(0);
+    });
+    it('returns the registry itself', () => {
+      const registry = new Registry();
+      expect(registry.clear()).toBe(registry);
+    });
+  });
+
+  describe('.has(key)', () => {
+    it('returns true if an item with the given key exists', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+      expect(registry.has('a')).toBe(true);
+      registry.registerLoader('b', () => 'testValue2');
+      expect(registry.has('b')).toBe(true);
+    });
+    it('returns false if an item with the given key does not exist', () => {
+      const registry = new Registry();
+      expect(registry.has('a')).toBe(false);
+    });
+  });
+
+  describe('.registerValue(key, value)', () => {
+    it('registers the given value with the given key', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+      expect(registry.has('a')).toBe(true);
+      expect(registry.get('a')).toBe('testValue');
+    });
+    it('does not overwrite if value is exactly the same', () => {
+      const registry = new Registry();
+      const value = { a: 1 };
+      registry.registerValue('a', value);
+      const promise1 = registry.getAsPromise('a');
+      registry.registerValue('a', value);
+      const promise2 = registry.getAsPromise('a');
+      expect(promise1).toBe(promise2);
+      registry.registerValue('a', { a: 1 });
+      const promise3 = registry.getAsPromise('a');
+      expect(promise1).not.toBe(promise3);
+    });
+    it('overwrites item with loader', () => {
+      const registry = new Registry();
+      registry.registerLoader('a', () => 'ironman');
+      expect(registry.get('a')).toBe('ironman');
+      registry.registerValue('a', 'hulk');
+      expect(registry.get('a')).toBe('hulk');
+    });
+    it('returns the registry itself', () => {
+      const registry = new Registry();
+      expect(registry.registerValue('a', 'testValue')).toBe(registry);
+    });
+  });
+
+  describe('.registerLoader(key, loader)', () => {
+    it('registers the given loader with the given key', () => {
+      const registry = new Registry();
+      registry.registerLoader('a', () => 'testValue');
+      expect(registry.has('a')).toBe(true);
+      expect(registry.get('a')).toBe('testValue');
+    });
+    it('does not overwrite if loader is exactly the same', () => {
+      const registry = new Registry();
+      registry.registerLoader('a', loader);
+      const promise1 = registry.getAsPromise('a');
+      registry.registerLoader('a', loader);
+      const promise2 = registry.getAsPromise('a');
+      expect(promise1).toBe(promise2);
+      registry.registerLoader('a', () => 'testValue');
+      const promise3 = registry.getAsPromise('a');
+      expect(promise1).not.toBe(promise3);
+    });
+    it('overwrites item with value', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'hulk');
+      expect(registry.get('a')).toBe('hulk');
+      registry.registerLoader('a', () => 'ironman');
+      expect(registry.get('a')).toBe('ironman');
+    });
+    it('returns the registry itself', () => {
+      const registry = new Registry();
+      expect(registry.registerLoader('a', () => 'testValue')).toBe(registry);
+    });
+  });
+
+  describe('.get(key)', () => {
+    it('given the key, returns the value if the item is a value', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+      expect(registry.get('a')).toBe('testValue');
+    });
+    it('given the key, returns the result of the loader function if the item is a loader', () => {
+      const registry = new Registry();
+      registry.registerLoader('b', () => 'testValue2');
+      expect(registry.get('b')).toBe('testValue2');
+    });
+    it('returns undefined if the item with specified key does not exist', () => {
+      const registry = new Registry();
+      expect(registry.get('a')).toBeUndefined();
+    });
+    it('If the key was registered multiple times, returns the most recent item.', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+      expect(registry.get('a')).toBe('testValue');
+      registry.registerLoader('a', () => 'newValue');
+      expect(registry.get('a')).toBe('newValue');
+    });
+  });
+
+  describe('.getAsPromise(key)', () => {
+    it('given the key, returns a promise of item value if the item is a value', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+
+      return registry.getAsPromise('a').then(value => expect(value).toBe('testValue'));
+    });
+    it('given the key, returns a promise of result of the loader function if the item is a loader', () => {
+      const registry = new Registry();
+      registry.registerLoader('a', () => 'testValue');
+
+      return registry.getAsPromise('a').then(value => expect(value).toBe('testValue'));
+    });
+    it('returns same promise object for the same key unless user re-registers new value with the key.', () => {
+      const registry = new Registry();
+      registry.registerLoader('a', () => 'testValue');
+      const promise1 = registry.getAsPromise('a');
+      const promise2 = registry.getAsPromise('a');
+      expect(promise1).toBe(promise2);
+    });
+    it('returns a rejected promise if the item with specified key does not exist', () => {
+      const registry = new Registry();
+
+      return registry.getAsPromise('a').then(null, (err: Error) => {
+        expect(err.toString()).toEqual('Error: Item with key "a" is not registered.');
+      });
+    });
+    it('If the key was registered multiple times, returns a promise of the most recent item.', async () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+      expect(await registry.getAsPromise('a')).toBe('testValue');
+      registry.registerLoader('a', () => 'newValue');
+      expect(await registry.getAsPromise('a')).toBe('newValue');
+    });
+  });
+
+  describe('.getMap()', () => {
+    it('returns key-value map as plain object', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'cat');
+      registry.registerLoader('b', () => 'dog');
+      expect(registry.getMap()).toEqual({
+        a: 'cat',
+        b: 'dog',
+      });
+    });
+  });
+
+  describe('.getMapAsPromise()', () => {
+    it('returns a promise of key-value map', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'test1');
+      registry.registerLoader('b', () => 'test2');
+      registry.registerLoader('c', () => Promise.resolve('test3'));
+
+      return registry.getMapAsPromise().then(map =>
+        expect(map).toEqual({
+          a: 'test1',
+          b: 'test2',
+          c: 'test3',
+        }),
+      );
+    });
+  });
+
+  describe('.keys()', () => {
+    it('returns an array of keys', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+      registry.registerLoader('b', () => 'test2');
+      expect(registry.keys()).toEqual(['a', 'b']);
+    });
+  });
+
+  describe('.values()', () => {
+    it('returns an array of values', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'test1');
+      registry.registerLoader('b', () => 'test2');
+      expect(registry.values()).toEqual(['test1', 'test2']);
+    });
+  });
+
+  describe('.valuesAsPromise()', () => {
+    it('returns a Promise of an array { key, value }', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'test1');
+      registry.registerLoader('b', () => 'test2');
+      registry.registerLoader('c', () => Promise.resolve('test3'));
+
+      return registry
+        .valuesAsPromise()
+        .then(entries => expect(entries).toEqual(['test1', 'test2', 'test3']));
+    });
+  });
+
+  describe('.entries()', () => {
+    it('returns an array of { key, value }', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'test1');
+      registry.registerLoader('b', () => 'test2');
+      expect(registry.entries()).toEqual([
+        { key: 'a', value: 'test1' },
+        { key: 'b', value: 'test2' },
+      ]);
+    });
+  });
+
+  describe('.entriesAsPromise()', () => {
+    it('returns a Promise of an array { key, value }', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'test1');
+      registry.registerLoader('b', () => 'test2');
+      registry.registerLoader('c', () => Promise.resolve('test3'));
+
+      return registry.entriesAsPromise().then(entries =>
+        expect(entries).toEqual([
+          { key: 'a', value: 'test1' },
+          { key: 'b', value: 'test2' },
+          { key: 'c', value: 'test3' },
+        ]),
+      );
+    });
+  });
+
+  describe('.remove(key)', () => {
+    it('removes the item with given key', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+      registry.remove('a');
+      expect(registry.get('a')).toBeUndefined();
+    });
+    it('does not throw error if the key does not exist', () => {
+      const registry = new Registry();
+      expect(() => registry.remove('a')).not.toThrow();
+    });
+    it('returns itself', () => {
+      const registry = new Registry();
+      registry.registerValue('a', 'testValue');
+      expect(registry.remove('a')).toBe(registry);
+    });
+  });
+
+  describe('config.overwritePolicy', () => {
+    describe('=ALLOW', () => {
+      describe('.registerValue(key, value)', () => {
+        it('registers normally', () => {
+          const restoreConsole = mockConsole();
+          const registry = new Registry();
+          registry.registerValue('a', 'testValue');
+          expect(() => registry.registerValue('a', 'testValue2')).not.toThrow();
+          expect(registry.get('a')).toEqual('testValue2');
+          expect(console.warn).not.toHaveBeenCalled();
+          restoreConsole();
+        });
+      });
+      describe('.registerLoader(key, loader)', () => {
+        it('registers normally', () => {
+          const restoreConsole = mockConsole();
+          const registry = new Registry();
+          registry.registerLoader('a', () => 'testValue');
+          expect(() => registry.registerLoader('a', () => 'testValue2')).not.toThrow();
+          expect(registry.get('a')).toEqual('testValue2');
+          expect(console.warn).not.toHaveBeenCalled();
+          restoreConsole();
+        });
+      });
+    });
+    describe('=WARN', () => {
+      describe('.registerValue(key, value)', () => {
+        it('warns when overwrite', () => {
+          const restoreConsole = mockConsole();
+          const registry = new Registry({
+            overwritePolicy: OverwritePolicy.WARN,
+          });
+          registry.registerValue('a', 'testValue');
+          expect(() => registry.registerValue('a', 'testValue2')).not.toThrow();
+          expect(registry.get('a')).toEqual('testValue2');
+          expect(console.warn).toHaveBeenCalled();
+          restoreConsole();
+        });
+      });
+      describe('.registerLoader(key, loader)', () => {
+        it('warns when overwrite', () => {
+          const restoreConsole = mockConsole();
+          const registry = new Registry({
+            overwritePolicy: OverwritePolicy.WARN,
+          });
+          registry.registerLoader('a', () => 'testValue');
+          expect(() => registry.registerLoader('a', () => 'testValue2')).not.toThrow();
+          expect(registry.get('a')).toEqual('testValue2');
+          expect(console.warn).toHaveBeenCalled();
+          restoreConsole();
+        });
+      });
+    });
+    describe('=PROHIBIT', () => {
+      describe('.registerValue(key, value)', () => {
+        it('throws error when overwrite', () => {
+          const registry = new Registry({
+            overwritePolicy: OverwritePolicy.PROHIBIT,
+          });
+          registry.registerValue('a', 'testValue');
+          expect(() => registry.registerValue('a', 'testValue2')).toThrow();
+        });
+      });
+      describe('.registerLoader(key, loader)', () => {
+        it('warns when overwrite', () => {
+          const registry = new Registry({
+            overwritePolicy: OverwritePolicy.PROHIBIT,
+          });
+          registry.registerLoader('a', () => 'testValue');
+          expect(() => registry.registerLoader('a', () => 'testValue2')).toThrow();
+        });
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts b/superset-frontend/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts
new file mode 100644
index 0000000..ecabbe8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts
@@ -0,0 +1,164 @@
+import { Registry, RegistryWithDefaultKey } from '@superset-ui/core/src';
+
+describe('RegistryWithDefaultKey', () => {
+  let registry: RegistryWithDefaultKey<number>;
+
+  beforeEach(() => {
+    registry = new RegistryWithDefaultKey();
+  });
+
+  it('exists', () => {
+    expect(RegistryWithDefaultKey).toBeDefined();
+  });
+
+  describe('new RegistryWithDefaultKey(config)', () => {
+    it('returns a class that extends from Registry', () => {
+      expect(registry).toBeInstanceOf(Registry);
+    });
+  });
+
+  describe('.clear()', () => {
+    it('also resets default key', () => {
+      registry.setDefaultKey('abc');
+      registry.clear();
+      expect(registry.getDefaultKey()).toBeUndefined();
+    });
+    it('returns itself', () => {
+      expect(registry.clear()).toBe(registry);
+    });
+  });
+
+  describe('.get()', () => {
+    beforeEach(() => {
+      registry.registerValue('abc', 100).registerValue('def', 200).setDefaultKey('abc');
+    });
+    it('.get() returns value from default key', () => {
+      expect(registry.get()).toEqual(100);
+    });
+    it('.get(key) returns value from specified key', () => {
+      expect(registry.get('def')).toEqual(200);
+    });
+    it('returns undefined if no key was given and there is no default key', () => {
+      registry.clearDefaultKey();
+      expect(registry.get()).toBeUndefined();
+    });
+  });
+
+  describe('.getDefaultKey()', () => {
+    it('returns defaultKey', () => {
+      registry.setDefaultKey('abc');
+      expect(registry.getDefaultKey()).toEqual('abc');
+    });
+  });
+
+  describe('.setDefaultKey(key)', () => {
+    it('set the default key', () => {
+      registry.setDefaultKey('abc');
+      expect(registry.defaultKey).toEqual('abc');
+    });
+    it('returns itself', () => {
+      expect(registry.setDefaultKey('ghi')).toBe(registry);
+    });
+  });
+
+  describe('.clearDefaultKey()', () => {
+    it('set the default key to undefined', () => {
+      registry.clearDefaultKey();
+      expect(registry.defaultKey).toBeUndefined();
+    });
+    it('returns itself', () => {
+      expect(registry.clearDefaultKey()).toBe(registry);
+    });
+  });
+
+  describe('config.defaultKey', () => {
+    describe('when not set', () => {
+      it(`After creation, default key is undefined`, () => {
+        expect(registry.defaultKey).toBeUndefined();
+      });
+      it('.clear() reset defaultKey to undefined', () => {
+        registry.setDefaultKey('abc');
+        registry.clear();
+        expect(registry.getDefaultKey()).toBeUndefined();
+      });
+    });
+    describe('when config.initialDefaultKey is set', () => {
+      const registry2 = new RegistryWithDefaultKey({
+        initialDefaultKey: 'def',
+      });
+      it(`After creation, default key is undefined`, () => {
+        expect(registry2.defaultKey).toEqual('def');
+      });
+      it('.clear() reset defaultKey to this config.defaultKey', () => {
+        registry2.setDefaultKey('abc');
+        registry2.clear();
+        expect(registry2.getDefaultKey()).toEqual('def');
+      });
+    });
+  });
+
+  describe('config.setFirstItemAsDefault', () => {
+    describe('when true', () => {
+      const registry2 = new RegistryWithDefaultKey({ setFirstItemAsDefault: true });
+      beforeEach(() => {
+        registry2.clear();
+      });
+      describe('.registerValue(key, value)', () => {
+        it('sets the default key to this key if default key is not set', () => {
+          registry2.registerValue('abc', 100);
+          expect(registry2.getDefaultKey()).toEqual('abc');
+        });
+        it('does not modify the default key if already set', () => {
+          registry2.setDefaultKey('def').registerValue('abc', 100);
+          expect(registry2.getDefaultKey()).toEqual('def');
+        });
+        it('returns itself', () => {
+          expect(registry2.registerValue('ghi', 300)).toBe(registry2);
+        });
+      });
+      describe('.registerLoader(key, loader)', () => {
+        it('sets the default key to this key if default key is not set', () => {
+          registry2.registerLoader('abc', () => 100);
+          expect(registry2.getDefaultKey()).toEqual('abc');
+        });
+        it('does not modify the default key if already set', () => {
+          registry2.setDefaultKey('def').registerLoader('abc', () => 100);
+          expect(registry2.getDefaultKey()).toEqual('def');
+        });
+        it('returns itself', () => {
+          expect(registry2.registerLoader('ghi', () => 300)).toBe(registry2);
+        });
+      });
+    });
+    describe('when false', () => {
+      const registry2 = new RegistryWithDefaultKey({ setFirstItemAsDefault: false });
+      beforeEach(() => {
+        registry2.clear();
+      });
+      describe('.registerValue(key, value)', () => {
+        it('does not modify default key', () => {
+          registry2.registerValue('abc', 100);
+          expect(registry2.defaultKey).toBeUndefined();
+          registry2.setDefaultKey('def');
+          registry2.registerValue('ghi', 300);
+          expect(registry2.defaultKey).toEqual('def');
+        });
+        it('returns itself', () => {
+          expect(registry2.registerValue('ghi', 300)).toBe(registry2);
+        });
+      });
+      describe('.registerLoader(key, loader)', () => {
+        it('does not modify default key', () => {
+          registry2.registerValue('abc', () => 100);
+          expect(registry2.defaultKey).toBeUndefined();
+          registry2.setDefaultKey('def');
+          registry2.registerValue('ghi', () => 300);
+          expect(registry2.defaultKey).toEqual('def');
+        });
+        it('returns itself', () => {
+          expect(registry2.registerLoader('ghi', () => 300)).toBe(registry2);
+        });
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/number-format/NumberFormatter.test.ts b/superset-frontend/packages/superset-ui-core/test/number-format/NumberFormatter.test.ts
new file mode 100644
index 0000000..87b73fe
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/number-format/NumberFormatter.test.ts
@@ -0,0 +1,71 @@
+import { NumberFormatter } from '@superset-ui/core/src/number-format';
+
+describe('NumberFormatter', () => {
+  describe('new NumberFormatter(config)', () => {
+    it('requires config.id', () => {
+      expect(
+        () =>
+          // @ts-ignore
+          new NumberFormatter({
+            formatFunc: () => '',
+          }),
+      ).toThrow();
+    });
+    it('requires config.formatFunc', () => {
+      expect(
+        () =>
+          // @ts-ignore
+          new NumberFormatter({
+            id: 'my_format',
+          }),
+      ).toThrow();
+    });
+  });
+  describe('formatter is also a format function itself', () => {
+    const formatter = new NumberFormatter({
+      id: 'fixed_3',
+      formatFunc: value => value.toFixed(3),
+    });
+    it('returns formatted value', () => {
+      expect(formatter(12345.67)).toEqual('12345.670');
+    });
+    it('formatter(value) is the same with formatter.format(value)', () => {
+      const value = 12345.67;
+      expect(formatter(value)).toEqual(formatter.format(value));
+    });
+  });
+  describe('.format(value)', () => {
+    const formatter = new NumberFormatter({
+      id: 'fixed_3',
+      formatFunc: value => value.toFixed(3),
+    });
+    it('handles null', () => {
+      expect(formatter.format(null)).toEqual('null');
+    });
+    it('handles undefined', () => {
+      expect(formatter.format(undefined)).toEqual('undefined');
+    });
+    it('handles NaN', () => {
+      expect(formatter.format(NaN)).toEqual('NaN');
+    });
+    it('handles positive and negative infinity', () => {
+      expect(formatter.format(Number.POSITIVE_INFINITY)).toEqual('∞');
+      expect(formatter.format(Number.NEGATIVE_INFINITY)).toEqual('-∞');
+    });
+    it('otherwise returns formatted value', () => {
+      expect(formatter.format(12345.67)).toEqual('12345.670');
+    });
+  });
+  describe('.preview(value)', () => {
+    const formatter = new NumberFormatter({
+      id: 'fixed_2',
+      formatFunc: value => value.toFixed(2),
+    });
+    it('returns string comparing value before and after formatting', () => {
+      expect(formatter.preview(100)).toEqual('100 => 100.00');
+    });
+    it('uses the default preview value if not specified', () => {
+      expect(formatter.preview()).toEqual('12345.432 => 12345.43');
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/number-format/NumberFormatterRegistry.test.ts b/superset-frontend/packages/superset-ui-core/test/number-format/NumberFormatterRegistry.test.ts
new file mode 100644
index 0000000..60d1397
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/number-format/NumberFormatterRegistry.test.ts
@@ -0,0 +1,64 @@
+import { NumberFormats, NumberFormatter, NumberFormatterRegistry } from '@superset-ui/core/src';
+
+describe('NumberFormatterRegistry', () => {
+  let registry: NumberFormatterRegistry;
+  beforeEach(() => {
+    registry = new NumberFormatterRegistry();
+  });
+  it('has SMART_NUMBER as default formatter out of the box', () => {
+    expect(registry.getDefaultKey()).toBe(NumberFormats.SMART_NUMBER);
+  });
+  describe('.get(format)', () => {
+    it('creates and returns a new formatter if does not exist', () => {
+      const formatter = registry.get('.2f');
+      expect(formatter).toBeInstanceOf(NumberFormatter);
+      expect(formatter.format(100)).toEqual('100.00');
+    });
+    it('returns an existing formatter if already exists', () => {
+      const formatter = registry.get('.2f');
+      const formatter2 = registry.get('.2f');
+      expect(formatter).toBe(formatter2);
+    });
+    it('falls back to default format if format is not specified', () => {
+      registry.setDefaultKey('.1f');
+      const formatter = registry.get();
+      expect(formatter.format(100)).toEqual('100.0');
+    });
+    it('falls back to default format if format is null', () => {
+      registry.setDefaultKey('.1f');
+      // @ts-ignore
+      const formatter = registry.get(null);
+      expect(formatter.format(100)).toEqual('100.0');
+    });
+    it('falls back to default format if format is undefined', () => {
+      registry.setDefaultKey('.1f');
+      const formatter = registry.get(undefined);
+      expect(formatter.format(100)).toEqual('100.0');
+    });
+    it('falls back to default format if format is empty string', () => {
+      registry.setDefaultKey('.1f');
+      const formatter = registry.get('');
+      expect(formatter.format(100)).toEqual('100.0');
+    });
+    it('removes leading and trailing spaces from format', () => {
+      const formatter = registry.get(' .2f');
+      expect(formatter).toBeInstanceOf(NumberFormatter);
+      expect(formatter.format(100)).toEqual('100.00');
+      const formatter2 = registry.get('.2f ');
+      expect(formatter2).toBeInstanceOf(NumberFormatter);
+      expect(formatter2.format(100)).toEqual('100.00');
+      const formatter3 = registry.get(' .2f ');
+      expect(formatter3).toBeInstanceOf(NumberFormatter);
+      expect(formatter3.format(100)).toEqual('100.00');
+    });
+  });
+  describe('.format(format, value)', () => {
+    it('return the value with the specified format', () => {
+      expect(registry.format('.2f', 100)).toEqual('100.00');
+      expect(registry.format(',d', 100)).toEqual('100');
+    });
+    it('falls back to the default formatter if the format is undefined', () => {
+      expect(registry.format(undefined, 1000)).toEqual('1k');
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/number-format/NumberFormatterRegistrySingleton.test.ts b/superset-frontend/packages/superset-ui-core/test/number-format/NumberFormatterRegistrySingleton.test.ts
new file mode 100644
index 0000000..ee0dd7d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/number-format/NumberFormatterRegistrySingleton.test.ts
@@ -0,0 +1,37 @@
+import {
+  NumberFormatterRegistry,
+  getNumberFormatterRegistry,
+  getNumberFormatter,
+  formatNumber,
+} from '@superset-ui/core/src';
+
+describe('NumberFormatterRegistrySingleton', () => {
+  describe('getNumberFormatterRegistry()', () => {
+    it('returns a NumberFormatterRegisry', () => {
+      expect(getNumberFormatterRegistry()).toBeInstanceOf(NumberFormatterRegistry);
+    });
+  });
+  describe('getNumberFormatter(format)', () => {
+    it('returns a format function', () => {
+      const format = getNumberFormatter('.3s');
+      expect(format(12345)).toEqual('12.3k');
+    });
+    it('returns a format function even given invalid format', () => {
+      const format = getNumberFormatter('xkcd');
+      expect(format(12345)).toEqual('12345 (Invalid format: xkcd)');
+    });
+    it('falls back to default format if format is not specified', () => {
+      const formatter = getNumberFormatter();
+      expect(formatter.format(100)).toEqual('100');
+    });
+  });
+  describe('formatNumber(format, value)', () => {
+    it('format the given number using the specified format', () => {
+      const output = formatNumber('.3s', 12345);
+      expect(output).toEqual('12.3k');
+    });
+    it('falls back to the default formatter if the format is undefined', () => {
+      expect(formatNumber(undefined, 1000)).toEqual('1k');
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/number-format/factories/createD3NumberFormatter.test.ts b/superset-frontend/packages/superset-ui-core/test/number-format/factories/createD3NumberFormatter.test.ts
new file mode 100644
index 0000000..25f22f2
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/number-format/factories/createD3NumberFormatter.test.ts
@@ -0,0 +1,63 @@
+import { createD3NumberFormatter } from '@superset-ui/core/src/number-format';
+
+describe('createD3NumberFormatter(config)', () => {
+  it('requires config.formatString', () => {
+    // @ts-ignore -- intentionally pass invalid input
+    expect(() => createD3NumberFormatter({})).toThrow();
+  });
+  describe('config.formatString', () => {
+    it('creates a NumberFormatter with the formatString as id', () => {
+      const formatter = createD3NumberFormatter({ formatString: '.2f' });
+      expect(formatter.id).toEqual('.2f');
+    });
+    describe('if it is valid d3 formatString', () => {
+      it('uses d3.format(config.formatString) as format function', () => {
+        const formatter = createD3NumberFormatter({ formatString: '.2f' });
+        expect(formatter.format(100)).toEqual('100.00');
+      });
+    });
+    describe('if it is invalid d3 formatString', () => {
+      it('The format function displays error message', () => {
+        const formatter = createD3NumberFormatter({ formatString: 'i-am-groot' });
+        expect(formatter.format(12345.67)).toEqual('12345.67 (Invalid format: i-am-groot)');
+      });
+      it('also set formatter.isInvalid to true', () => {
+        const formatter = createD3NumberFormatter({ formatString: 'i-am-groot' });
+        expect(formatter.isInvalid).toEqual(true);
+      });
+    });
+  });
+  describe('config.label', () => {
+    it('set label if specified', () => {
+      const formatter = createD3NumberFormatter({
+        formatString: '.2f',
+        label: 'float formatter',
+      });
+      expect(formatter.label).toEqual('float formatter');
+    });
+  });
+  describe('config.description', () => {
+    it('set decription if specified', () => {
+      const formatter = createD3NumberFormatter({
+        description: 'lorem ipsum',
+        formatString: '.2f',
+      });
+      expect(formatter.description).toEqual('lorem ipsum');
+    });
+  });
+  describe('config.locale', () => {
+    it('supports locale customization such as currency', () => {
+      const formatter = createD3NumberFormatter({
+        description: 'lorem ipsum',
+        formatString: '$.2f',
+        locale: {
+          decimal: '.',
+          thousands: ',',
+          grouping: [3],
+          currency: ['€', ''],
+        },
+      });
+      expect(formatter(200)).toEqual('€200.00');
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/number-format/factories/createDurationFormatter.test.ts b/superset-frontend/packages/superset-ui-core/test/number-format/factories/createDurationFormatter.test.ts
new file mode 100644
index 0000000..6fd8aad
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/number-format/factories/createDurationFormatter.test.ts
@@ -0,0 +1,33 @@
+import { NumberFormatter, createDurationFormatter } from '@superset-ui/core/src/number-format';
+
+describe('createDurationFormatter()', () => {
+  it('creates an instance of NumberFormatter', () => {
+    const formatter = createDurationFormatter();
+    expect(formatter).toBeInstanceOf(NumberFormatter);
+  });
+  it('format milliseconds in human readable format with default options', () => {
+    const formatter = createDurationFormatter();
+    expect(formatter(0)).toBe('0ms');
+    expect(formatter(1000)).toBe('1s');
+    expect(formatter(1337)).toBe('1.3s');
+    expect(formatter(10500)).toBe('10.5s');
+    expect(formatter(60 * 1000)).toBe('1m');
+    expect(formatter(90 * 1000)).toBe('1m 30s');
+  });
+  it('format seconds in human readable format with default options', () => {
+    const formatter = createDurationFormatter({ multiplier: 1000 });
+    expect(formatter(0.5)).toBe('500ms');
+    expect(formatter(1)).toBe('1s');
+    expect(formatter(30)).toBe('30s');
+    expect(formatter(60)).toBe('1m');
+    expect(formatter(90)).toBe('1m 30s');
+  });
+  it('format milliseconds in human readable format with additional pretty-ms options', () => {
+    const colonNotationFormatter = createDurationFormatter({ colonNotation: true });
+    expect(colonNotationFormatter(10500)).toBe('0:10.5');
+    const zeroDecimalFormatter = createDurationFormatter({ secondsDecimalDigits: 0 });
+    expect(zeroDecimalFormatter(10500)).toBe('10s');
+    const subMillisecondFormatter = createDurationFormatter({ formatSubMilliseconds: true });
+    expect(subMillisecondFormatter(100.40008)).toBe('100ms 400µs 80ns');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/number-format/factories/createSiAtMostNDigitFormatter.test.ts b/superset-frontend/packages/superset-ui-core/test/number-format/factories/createSiAtMostNDigitFormatter.test.ts
new file mode 100644
index 0000000..2969786
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/number-format/factories/createSiAtMostNDigitFormatter.test.ts
@@ -0,0 +1,51 @@
+import {
+  NumberFormatter,
+  createSiAtMostNDigitFormatter,
+} from '@superset-ui/core/src/number-format';
+
+describe('createSiAtMostNDigitFormatter({ n })', () => {
+  it('creates an instance of NumberFormatter', () => {
+    const formatter = createSiAtMostNDigitFormatter({ n: 4 });
+    expect(formatter).toBeInstanceOf(NumberFormatter);
+  });
+  it('when n is specified, it formats number in SI format with at most n significant digits', () => {
+    const formatter = createSiAtMostNDigitFormatter({ n: 2 });
+    expect(formatter(10)).toBe('10');
+    expect(formatter(1)).toBe('1');
+    expect(formatter(1)).toBe('1');
+    expect(formatter(10)).toBe('10');
+    expect(formatter(10001)).toBe('10k');
+    expect(formatter(10100)).toBe('10k');
+    expect(formatter(111000000)).toBe('110M');
+    expect(formatter(0.23)).toBe('230m');
+    expect(formatter(0)).toBe('0');
+    expect(formatter(-10)).toBe('-10');
+    expect(formatter(-1)).toBe('-1');
+    expect(formatter(-1)).toBe('-1');
+    expect(formatter(-10)).toBe('-10');
+    expect(formatter(-10001)).toBe('-10k');
+    expect(formatter(-10101)).toBe('-10k');
+    expect(formatter(-111000000)).toBe('-110M');
+    expect(formatter(-0.23)).toBe('-230m');
+  });
+  it('when n is not specified, it defaults to n=3', () => {
+    const formatter = createSiAtMostNDigitFormatter();
+    expect(formatter(10)).toBe('10');
+    expect(formatter(1)).toBe('1');
+    expect(formatter(1)).toBe('1');
+    expect(formatter(10)).toBe('10');
+    expect(formatter(10001)).toBe('10.0k');
+    expect(formatter(10100)).toBe('10.1k');
+    expect(formatter(111000000)).toBe('111M');
+    expect(formatter(0.23)).toBe('230m');
+    expect(formatter(0)).toBe('0');
+    expect(formatter(-10)).toBe('-10');
+    expect(formatter(-1)).toBe('-1');
+    expect(formatter(-1)).toBe('-1');
+    expect(formatter(-10)).toBe('-10');
+    expect(formatter(-10001)).toBe('-10.0k');
+    expect(formatter(-10101)).toBe('-10.1k');
+    expect(formatter(-111000000)).toBe('-111M');
+    expect(formatter(-0.23)).toBe('-230m');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/number-format/factories/createSmartNumberFormatter.test.ts b/superset-frontend/packages/superset-ui-core/test/number-format/factories/createSmartNumberFormatter.test.ts
new file mode 100644
index 0000000..8656d44
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/number-format/factories/createSmartNumberFormatter.test.ts
@@ -0,0 +1,129 @@
+import { NumberFormatter, createSmartNumberFormatter } from '@superset-ui/core/src';
+
+describe('createSmartNumberFormatter(options)', () => {
+  it('creates an instance of NumberFormatter', () => {
+    const formatter = createSmartNumberFormatter();
+    expect(formatter).toBeInstanceOf(NumberFormatter);
+  });
+  describe('using default options', () => {
+    const formatter = createSmartNumberFormatter();
+    it('formats 0 correctly', () => {
+      expect(formatter(0)).toBe('0');
+    });
+    describe('for positive numbers', () => {
+      it('formats billion with B in stead of G', () => {
+        expect(formatter(1000000000)).toBe('1B');
+        expect(formatter(4560000000)).toBe('4.56B');
+      });
+      it('formats numbers that are >= 1,000 & <= 1,000,000,000 as SI format with precision 3', () => {
+        expect(formatter(1000)).toBe('1k');
+        expect(formatter(10001)).toBe('10k');
+        expect(formatter(10100)).toBe('10.1k');
+        expect(formatter(111000000)).toBe('111M');
+      });
+      it('formats number that are >= 1 & < 1,000 as integer or float with at most 2 decimal points', () => {
+        expect(formatter(1)).toBe('1');
+        expect(formatter(1)).toBe('1');
+        expect(formatter(10)).toBe('10');
+        expect(formatter(10)).toBe('10');
+        expect(formatter(10.23432)).toBe('10.23');
+        expect(formatter(274.2856)).toBe('274.29');
+        expect(formatter(999)).toBe('999');
+      });
+      it('formats numbers that are < 1 & >= 0.001 as float with at most 4 decimal points', () => {
+        expect(formatter(0.1)).toBe('0.1');
+        expect(formatter(0.23)).toBe('0.23');
+        expect(formatter(0.699)).toBe('0.699');
+        expect(formatter(0.0023)).toBe('0.0023');
+        expect(formatter(0.002300001)).toBe('0.0023');
+      });
+      it('formats numbers that are < 0.001 & >= 0.000001 as micron', () => {
+        expect(formatter(0.0002300001)).toBe('230µ');
+        expect(formatter(0.000023)).toBe('23µ');
+        expect(formatter(0.000001)).toBe('1µ');
+      });
+      it('formats numbers that are less than 0.000001 as SI format with precision 3', () => {
+        expect(formatter(0.0000001)).toBe('100n');
+      });
+    });
+    describe('for negative numbers', () => {
+      it('formats billion with B in stead of G', () => {
+        expect(formatter(-1000000000)).toBe('-1B');
+        expect(formatter(-4560000000)).toBe('-4.56B');
+      });
+      it('formats numbers that are >= 1,000 & <= 1,000,000,000 as SI format with precision 3', () => {
+        expect(formatter(-1000)).toBe('-1k');
+        expect(formatter(-10001)).toBe('-10k');
+        expect(formatter(-10100)).toBe('-10.1k');
+        expect(formatter(-111000000)).toBe('-111M');
+      });
+      it('formats number that are >= 1 & < 1,000 as integer or float with at most 2 decimal points', () => {
+        expect(formatter(-1)).toBe('-1');
+        expect(formatter(-1)).toBe('-1');
+        expect(formatter(-10)).toBe('-10');
+        expect(formatter(-10)).toBe('-10');
+        expect(formatter(-10.23432)).toBe('-10.23');
+        expect(formatter(-274.2856)).toBe('-274.29');
+        expect(formatter(-999)).toBe('-999');
+      });
+      it('formats numbers that are < 1 & >= 0.001 as float with at most 4 decimal points', () => {
+        expect(formatter(-0.1)).toBe('-0.1');
+        expect(formatter(-0.23)).toBe('-0.23');
+        expect(formatter(-0.699)).toBe('-0.699');
+        expect(formatter(-0.0023)).toBe('-0.0023');
+        expect(formatter(-0.002300001)).toBe('-0.0023');
+      });
+      it('formats numbers that are < 0.001 & >= 0.000001 as micron', () => {
+        expect(formatter(-0.0002300001)).toBe('-230µ');
+        expect(formatter(-0.000023)).toBe('-23µ');
+        expect(formatter(-0.000001)).toBe('-1µ');
+      });
+      it('formats numbers that are less than 0.000001 as SI format with precision 3', () => {
+        expect(formatter(-0.0000001)).toBe('-100n');
+      });
+    });
+  });
+
+  describe('when options.signed is true, it adds + for positive numbers', () => {
+    const formatter = createSmartNumberFormatter({ signed: true });
+    it('formats 0 correctly', () => {
+      expect(formatter(0)).toBe('0');
+    });
+    describe('for positive numbers', () => {
+      it('formats billion with B in stead of G', () => {
+        expect(formatter(1000000000)).toBe('+1B');
+        expect(formatter(4560000000)).toBe('+4.56B');
+      });
+      it('formats numbers that are >= 1,000 & <= 1,000,000,000 as SI format with precision 3', () => {
+        expect(formatter(1000)).toBe('+1k');
+        expect(formatter(10001)).toBe('+10k');
+        expect(formatter(10100)).toBe('+10.1k');
+        expect(formatter(111000000)).toBe('+111M');
+      });
+      it('formats number that are >= 1 & < 1,000 as integer or float with at most 2 decimal points', () => {
+        expect(formatter(1)).toBe('+1');
+        expect(formatter(1)).toBe('+1');
+        expect(formatter(10)).toBe('+10');
+        expect(formatter(10)).toBe('+10');
+        expect(formatter(10.23432)).toBe('+10.23');
+        expect(formatter(274.2856)).toBe('+274.29');
+        expect(formatter(999)).toBe('+999');
+      });
+      it('formats numbers that are < 1 & >= 0.001 as float with at most 4 decimal points', () => {
+        expect(formatter(0.1)).toBe('+0.1');
+        expect(formatter(0.23)).toBe('+0.23');
+        expect(formatter(0.699)).toBe('+0.699');
+        expect(formatter(0.0023)).toBe('+0.0023');
+        expect(formatter(0.002300001)).toBe('+0.0023');
+      });
+      it('formats numbers that are < 0.001 & >= 0.000001 as micron', () => {
+        expect(formatter(0.0002300001)).toBe('+230µ');
+        expect(formatter(0.000023)).toBe('+23µ');
+        expect(formatter(0.000001)).toBe('+1µ');
+      });
+      it('formats numbers that are less than 0.000001 as SI format with precision 3', () => {
+        expect(formatter(0.0000001)).toBe('+100n');
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/number-format/index.test.ts b/superset-frontend/packages/superset-ui-core/test/number-format/index.test.ts
new file mode 100644
index 0000000..43efa07
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/number-format/index.test.ts
@@ -0,0 +1,27 @@
+import {
+  createD3NumberFormatter,
+  createDurationFormatter,
+  createSiAtMostNDigitFormatter,
+  formatNumber,
+  getNumberFormatter,
+  getNumberFormatterRegistry,
+  NumberFormats,
+  NumberFormatter,
+  PREVIEW_VALUE,
+} from '@superset-ui/core/src';
+
+describe('index', () => {
+  it('exports modules', () => {
+    [
+      createD3NumberFormatter,
+      createDurationFormatter,
+      createSiAtMostNDigitFormatter,
+      formatNumber,
+      getNumberFormatter,
+      getNumberFormatterRegistry,
+      NumberFormats,
+      NumberFormatter,
+      PREVIEW_VALUE,
+    ].forEach(x => expect(x).toBeDefined());
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/DatasourceKey.test.ts b/superset-frontend/packages/superset-ui-core/test/query/DatasourceKey.test.ts
new file mode 100644
index 0000000..d0faab4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/DatasourceKey.test.ts
@@ -0,0 +1,36 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { DatasourceKey } from '@superset-ui/core/src/query';
+
+describe('DatasourceKey', () => {
+  const tableKey = '5__table';
+  const druidKey = '5__druid';
+
+  it('should handle table data sources', () => {
+    const datasourceKey = new DatasourceKey(tableKey);
+    expect(datasourceKey.toString()).toBe(tableKey);
+    expect(datasourceKey.toObject()).toEqual({ id: 5, type: 'table' });
+  });
+
+  it('should handle druid data sources', () => {
+    const datasourceKey = new DatasourceKey(druidKey);
+    expect(datasourceKey.toString()).toBe(druidKey);
+    expect(datasourceKey.toObject()).toEqual({ id: 5, type: 'druid' });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/api/legacy/fetchExploreJson.test.ts b/superset-frontend/packages/superset-ui-core/test/query/api/legacy/fetchExploreJson.test.ts
new file mode 100644
index 0000000..e1c031a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/api/legacy/fetchExploreJson.test.ts
@@ -0,0 +1,81 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+import { fetchExploreJson } from '@superset-ui/core/src/query/api/legacy';
+import setupClientForTest from '../setupClientForTest';
+
+describe('fetchExploreJson()', () => {
+  beforeAll(setupClientForTest);
+
+  afterEach(fetchMock.restore);
+
+  it('returns a promise of LegacyChartDataResponse', () => {
+    fetchMock.post('glob:*/superset/explore_json/', {
+      field1: 'abc',
+      field2: 'def',
+    });
+
+    return expect(
+      fetchExploreJson({
+        formData: {
+          granularity: 'minute',
+          viz_type: 'word_cloud',
+          datasource: '1__table',
+        },
+      }),
+    ).resolves.toEqual({
+      field1: 'abc',
+      field2: 'def',
+    });
+  });
+  it('uses GET when specified', async () => {
+    expect.assertions(4);
+    const mockUrl = 'glob:*/superset/explore_json/*';
+
+    fetchMock.get(mockUrl, {
+      field1: 'abc',
+      field2: 'def',
+    });
+
+    const result = await fetchExploreJson({
+      method: 'GET',
+      formData: {
+        granularity: 'minute',
+        viz_type: 'word_cloud',
+        datasource: '1__table',
+      },
+    });
+
+    expect(result).toEqual({
+      field1: 'abc',
+      field2: 'def',
+    });
+    const mockCalls = fetchMock.calls(mockUrl);
+    expect(mockCalls).toHaveLength(1);
+    expect(mockCalls[0][0]).toEqual(
+      'http://localhost/superset/explore_json/?form_data=%7B%22granularity%22%3A%22minute%22%2C%22viz_type%22%3A%22word_cloud%22%2C%22datasource%22%3A%221__table%22%7D',
+    );
+    expect(mockCalls[0][1]).toEqual(
+      expect.objectContaining({
+        method: 'GET',
+        body: undefined,
+      }),
+    );
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/api/legacy/getDatasourceMetadata.test.ts b/superset-frontend/packages/superset-ui-core/test/query/api/legacy/getDatasourceMetadata.test.ts
new file mode 100644
index 0000000..8e4cbd9
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/api/legacy/getDatasourceMetadata.test.ts
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+import { getDatasourceMetadata } from '@superset-ui/core/src/query/api/legacy';
+
+import setupClientForTest from '../setupClientForTest';
+
+describe('getFormData()', () => {
+  beforeAll(setupClientForTest);
+
+  afterEach(fetchMock.restore);
+
+  it('returns datasource metadata for given datasource key', () => {
+    const mockData = {
+      field1: 'abc',
+      field2: 'def',
+    };
+
+    fetchMock.get('glob:*/superset/fetch_datasource_metadata?datasourceKey=1__table', mockData);
+
+    return expect(
+      getDatasourceMetadata({
+        datasourceKey: '1__table',
+      }),
+    ).resolves.toEqual(mockData);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/api/legacy/getFormData.test.ts b/superset-frontend/packages/superset-ui-core/test/query/api/legacy/getFormData.test.ts
new file mode 100644
index 0000000..089a14b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/api/legacy/getFormData.test.ts
@@ -0,0 +1,68 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+import { getFormData } from '@superset-ui/core/src/query/api/legacy';
+
+import setupClientForTest from '../setupClientForTest';
+
+describe('getFormData()', () => {
+  beforeAll(setupClientForTest);
+
+  afterEach(fetchMock.restore);
+
+  const mockData = {
+    datasource: '1__table',
+    viz_type: 'sankey',
+    slice_id: 1,
+    url_params: {},
+    granularity_sqla: null,
+    time_grain_sqla: 'P1D',
+    time_range: 'Last week',
+    groupby: ['source', 'target'],
+    metric: 'sum__value',
+    adhoc_filters: [],
+    row_limit: 1000,
+  };
+
+  it('returns formData for given slice id', () => {
+    fetchMock.get(`glob:*/api/v1/form_data/?slice_id=1`, mockData);
+
+    return expect(
+      getFormData({
+        sliceId: 1,
+      }),
+    ).resolves.toEqual(mockData);
+  });
+
+  it('overrides formData when overrideFormData is specified', () => {
+    fetchMock.get(`glob:*/api/v1/form_data/?slice_id=1`, mockData);
+
+    return expect(
+      getFormData({
+        sliceId: 1,
+        overrideFormData: {
+          metric: 'avg__value',
+        },
+      }),
+    ).resolves.toEqual({
+      ...mockData,
+      metric: 'avg__value',
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/api/setupClientForTest.ts b/superset-frontend/packages/superset-ui-core/test/query/api/setupClientForTest.ts
new file mode 100644
index 0000000..651e57c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/api/setupClientForTest.ts
@@ -0,0 +1,28 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+import { SupersetClient } from '@superset-ui/core/src/connection';
+
+const LOGIN_GLOB = 'glob:*superset/csrf_token/*';
+
+export default function setupClientForTest() {
+  fetchMock.get(LOGIN_GLOB, { csrf_token: '1234' });
+  SupersetClient.reset();
+  SupersetClient.configure().init();
+}
diff --git a/superset-frontend/packages/superset-ui-core/test/query/api/v1/getChartData.test.ts b/superset-frontend/packages/superset-ui-core/test/query/api/v1/getChartData.test.ts
new file mode 100644
index 0000000..16af3da
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/api/v1/getChartData.test.ts
@@ -0,0 +1,48 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+import { buildQueryContext, ApiV1 } from '@superset-ui/core/src/query';
+import setupClientForTest from '../setupClientForTest';
+
+describe('API v1 > getChartData()', () => {
+  beforeAll(setupClientForTest);
+  afterEach(fetchMock.restore);
+
+  it('returns a promise of ChartDataResponse', async () => {
+    const response = {
+      result: [
+        {
+          field1: 'abc',
+          field2: 'def',
+        },
+      ],
+    };
+
+    fetchMock.post('glob:*/api/v1/chart/data', response);
+
+    const result = await ApiV1.getChartData(
+      buildQueryContext({
+        granularity: 'minute',
+        viz_type: 'word_cloud',
+        datasource: '1__table',
+      }),
+    );
+    return expect(result).toEqual(response);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/api/v1/handleError.test.ts b/superset-frontend/packages/superset-ui-core/test/query/api/v1/handleError.test.ts
new file mode 100644
index 0000000..69b868c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/api/v1/handleError.test.ts
@@ -0,0 +1,156 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import 'whatwg-fetch'; // for adding Response polyfill
+import { JsonObject } from '@superset-ui/core/src/connection';
+import handleError, { ErrorInput } from '@superset-ui/core/src/query/api/v1/handleError';
+import { SupersetApiError, SupersetApiErrorType } from '@superset-ui/core/src/query/api/v1/types';
+
+async function testHandleError(
+  inputError: ErrorInput,
+  expected: string | JsonObject,
+): Promise<SupersetApiError> {
+  try {
+    await handleError(inputError);
+  } catch (error) {
+    const typedError = error as SupersetApiError;
+    expect(typedError).toBeInstanceOf(SupersetApiError);
+    if (typeof expected === 'string') {
+      expect(typedError.message).toContain(expected);
+    } else {
+      expect(typedError).toEqual(expect.objectContaining(expected));
+    }
+    return error;
+  }
+  return new SupersetApiError({ message: 'Where is the error?' });
+}
+
+describe('handleError()', () => {
+  it('should throw error directly', async () => {
+    expect.assertions(3);
+    const input = new SupersetApiError({ message: 'timeout' });
+    const output = await testHandleError(input, 'timeout');
+    expect(input).toBe(output);
+  });
+
+  it('should handle error string', async () => {
+    expect.assertions(2);
+    await testHandleError('STOP', 'STOP');
+  });
+
+  it('should handle HTTP error', async () => {
+    expect.assertions(2);
+    const mockResponse = new Response('Ha?', { status: 404, statusText: 'NOT FOUND' });
+    await testHandleError(mockResponse, '404 NOT FOUND');
+  });
+
+  it('should handle HTTP error with status < 400', async () => {
+    expect.assertions(2);
+    const mockResponse = new Response('Ha haha?', { status: 302, statusText: 'Found' });
+    await testHandleError(mockResponse, '302 Found');
+  });
+
+  it('should use message from HTTP error', async () => {
+    expect.assertions(2);
+    const mockResponse = new Response('{ "message": "BAD BAD" }', {
+      status: 500,
+      statusText: 'Server Error',
+    });
+    await testHandleError(mockResponse, 'BAD BAD');
+  });
+
+  it('should handle response of single error', async () => {
+    expect.assertions(2);
+    const mockResponse = new Response(
+      '{ "error": "BAD BAD", "link": "https://superset.apache.org" }',
+      {
+        status: 403,
+        statusText: 'Access Denied',
+      },
+    );
+    await testHandleError(mockResponse, {
+      message: 'BAD BAD',
+      extra: { link: 'https://superset.apache.org' },
+    });
+  });
+
+  it('should handle single error object', async () => {
+    expect.assertions(2);
+    const mockError = {
+      error: {
+        message: 'Request timeout',
+        error_type: SupersetApiErrorType.FRONTEND_TIMEOUT_ERROR,
+      },
+    };
+    await testHandleError(mockError, {
+      message: 'Request timeout',
+      errorType: 'FRONTEND_TIMEOUT_ERROR',
+    });
+  });
+
+  it('should process multi errors in HTTP json', async () => {
+    expect.assertions(2);
+    const mockResponse = new Response('{ "errors": [{ "error_type": "NOT OK" }] }', {
+      status: 403,
+      statusText: 'Access Denied',
+    });
+    await testHandleError(mockResponse, 'NOT OK');
+  });
+
+  it('should handle invalid multi errors', async () => {
+    expect.assertions(4);
+    const mockResponse1 = new Response('{ "errors": [] }', {
+      status: 403,
+      statusText: 'Access Denied',
+    });
+    const mockResponse2 = new Response('{ "errors": null }', {
+      status: 400,
+      statusText: 'Bad Request',
+    });
+    await testHandleError(mockResponse1, '403 Access Denied');
+    await testHandleError(mockResponse2, '400 Bad Request');
+  });
+
+  it('should fallback to statusText', async () => {
+    expect.assertions(2);
+    const mockResponse = new Response('{ "failed": "random ramble" }', {
+      status: 403,
+      statusText: 'Access Denied',
+    });
+    await testHandleError(mockResponse, '403 Access Denied');
+  });
+
+  it('should handle regular JS error', async () => {
+    expect.assertions(4);
+    await testHandleError(new Error('What?'), 'What?');
+    const emptyError = new Error();
+    emptyError.stack = undefined;
+    await testHandleError(emptyError, 'Unknown Error');
+  });
+
+  it('should handle { error: ... }', async () => {
+    expect.assertions(2);
+    await testHandleError({ error: 'Hmm' }, 'Hmm');
+  });
+
+  it('should throw unknown error', async () => {
+    expect.assertions(4);
+    await testHandleError(Promise.resolve('Some random things') as never, 'Unknown Error');
+    await testHandleError(undefined as never, 'Unknown Error');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/api/v1/makeApi.test.ts b/superset-frontend/packages/superset-ui-core/test/query/api/v1/makeApi.test.ts
new file mode 100644
index 0000000..c2e1036
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/api/v1/makeApi.test.ts
@@ -0,0 +1,216 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import fetchMock from 'fetch-mock';
+import { JsonValue, SupersetClientClass } from '@superset-ui/core/src/connection';
+import { makeApi, SupersetApiError } from '@superset-ui/core/src/query';
+import setupClientForTest from '../setupClientForTest';
+
+describe('makeApi()', () => {
+  beforeAll(setupClientForTest);
+  afterEach(fetchMock.restore);
+
+  it('should expose method and endpoint', () => {
+    const api = makeApi({
+      method: 'GET',
+      endpoint: '/test',
+    });
+    expect(api.method).toEqual('GET');
+    expect(api.endpoint).toEqual('/test');
+    expect(api.requestType).toEqual('search');
+  });
+
+  it('should allow custom client', async () => {
+    expect.assertions(2);
+    const api = makeApi({
+      method: 'GET',
+      endpoint: '/test-custom-client',
+    });
+    const client = new SupersetClientClass({ baseUrl: 'http://foo/' });
+    const mockResponse = { yes: 'ok' };
+    const mockRequest = jest.fn(() =>
+      Promise.resolve(
+        new Response(JSON.stringify(mockResponse), {
+          headers: { 'Content-Type': 'application/json' },
+        }),
+      ),
+    );
+    Object.assign(client, {
+      request: mockRequest,
+    });
+    const result = await api(null, { client });
+    expect(result).toEqual(mockResponse);
+    expect(mockRequest).toHaveBeenCalledTimes(1);
+  });
+
+  it('should obtain json response by default', async () => {
+    expect.assertions(1);
+    const api = makeApi({
+      method: 'GET',
+      endpoint: '/test',
+    });
+    fetchMock.get('glob:*/test', { yes: 'ok' });
+    expect(await api({})).toEqual({ yes: 'ok' });
+  });
+
+  it('should allow custom parseResponse', async () => {
+    expect.assertions(2);
+    const responseJson = { items: [1, 2, 3] };
+    fetchMock.post('glob:*/test', responseJson);
+    const api = makeApi({
+      method: 'POST',
+      endpoint: '/test',
+      processResponse: (json: typeof responseJson) =>
+        json.items.reduce((a: number, b: number) => a + b),
+    });
+    expect(api.method).toEqual('POST');
+    expect(await api({})).toBe(6);
+  });
+
+  it('should post FormData when requestType=form', async () => {
+    expect.assertions(3);
+    const api = makeApi({
+      method: 'POST',
+      endpoint: '/test-formdata',
+      requestType: 'form',
+    });
+    fetchMock.post('glob:*/test-formdata', { test: 'ok' });
+
+    expect(await api({ request: 'test' })).toEqual({ test: 'ok' });
+
+    const expected = new FormData();
+    expected.append('request', JSON.stringify('test'));
+    const received = fetchMock.lastOptions().body as FormData;
+
+    expect(received).toBeInstanceOf(FormData);
+    expect(received.get('request')).toEqual(expected.get('request'));
+  });
+
+  it('should use searchParams for method=GET (`requestType=search` implied)', async () => {
+    expect.assertions(1);
+    const api = makeApi({
+      method: 'GET',
+      endpoint: '/test-get-search',
+    });
+    fetchMock.get('glob:*/test-get-search*', { search: 'get' });
+    await api({ p1: 1, p2: 2, p3: [1, 2] });
+    expect(fetchMock.lastUrl()).toContain('/test-get-search?p1=1&p2=2&p3=1%2C2');
+  });
+
+  it('should serialize rison for method=GET, requestType=rison', async () => {
+    expect.assertions(1);
+    const api = makeApi({
+      method: 'GET',
+      endpoint: '/test-post-search',
+      requestType: 'rison',
+    });
+    fetchMock.get('glob:*/test-post-search*', { rison: 'get' });
+    await api({ p1: 1, p3: [1, 2] });
+    expect(fetchMock.lastUrl()).toContain('/test-post-search?q=(p1:1,p3:!(1,2))');
+  });
+
+  it('should use searchParams for method=POST, requestType=search', async () => {
+    expect.assertions(1);
+    const api = makeApi({
+      method: 'POST',
+      endpoint: '/test-post-search',
+      requestType: 'search',
+    });
+    fetchMock.post('glob:*/test-post-search*', { search: 'post' });
+    await api({ p1: 1, p3: [1, 2] });
+    expect(fetchMock.lastUrl()).toContain('/test-post-search?p1=1&p3=1%2C2');
+  });
+
+  it('should throw when requestType is invalid', () => {
+    expect(() => {
+      makeApi({
+        method: 'POST',
+        endpoint: '/test-formdata',
+        // @ts-ignore
+        requestType: 'text',
+      });
+    }).toThrow('Invalid request payload type');
+  });
+
+  it('should handle errors', async () => {
+    expect.assertions(1);
+    const api = makeApi({
+      method: 'POST',
+      endpoint: '/test-formdata',
+      requestType: 'form',
+    });
+    let error;
+
+    fetchMock.post('glob:*/test-formdata', { test: 'ok' });
+
+    try {
+      await api('<This is an invalid JSON string>');
+    } catch (err) {
+      error = err;
+    } finally {
+      expect((error as SupersetApiError).message).toContain('Invalid payload');
+    }
+  });
+
+  it('should handle error on 200 response', async () => {
+    expect.assertions(1);
+    const api = makeApi({
+      method: 'POST',
+      endpoint: '/test-200-error',
+      requestType: 'json',
+    });
+    fetchMock.post('glob:*/test-200-error', { error: 'not ok' });
+
+    let error;
+    try {
+      await api({});
+    } catch (err) {
+      error = err;
+    } finally {
+      expect((error as SupersetApiError).message).toContain('not ok');
+    }
+  });
+
+  it('should parse text response when responseType=text', async () => {
+    expect.assertions(1);
+    const api = makeApi<JsonValue, string, 'text'>({
+      method: 'PUT',
+      endpoint: '/test-parse-text',
+      requestType: 'form',
+      responseType: 'text',
+      processResponse: text => `${text}?`,
+    });
+    fetchMock.put('glob:*/test-parse-text', 'ok');
+    const result = await api({ field1: 11 });
+    expect(result).toBe('ok?');
+  });
+
+  it('should return raw resposnse when responseType=raw', async () => {
+    expect.assertions(2);
+    const api = makeApi<JsonValue, number, 'raw'>({
+      method: 'DELETE',
+      endpoint: '/test-raw-response',
+      responseType: 'raw',
+      processResponse: response => response.status,
+    });
+    fetchMock.delete('glob:*/test-raw-response?*', 'ok');
+    const result = await api({ field1: 11 }, {});
+    expect(result).toEqual(200);
+    expect(fetchMock.lastUrl()).toContain('/test-raw-response?field1=11');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/buildQueryContext.test.ts b/superset-frontend/packages/superset-ui-core/test/query/buildQueryContext.test.ts
new file mode 100644
index 0000000..4e93a47
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/buildQueryContext.test.ts
@@ -0,0 +1,47 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { buildQueryContext } from '@superset-ui/core/src/query';
+
+describe('buildQueryContext', () => {
+  it('should build datasource for table sources and apply defaults', () => {
+    const queryContext = buildQueryContext({
+      datasource: '5__table',
+      granularity_sqla: 'ds',
+      viz_type: 'table',
+    });
+    expect(queryContext.datasource.id).toBe(5);
+    expect(queryContext.datasource.type).toBe('table');
+    expect(queryContext.force).toBe(false);
+    expect(queryContext.force).toBe(false);
+    expect(queryContext.result_format).toBe('json');
+    expect(queryContext.result_type).toBe('full');
+  });
+
+  it('should build datasource for druid sources and set force to true', () => {
+    const queryContext = buildQueryContext({
+      datasource: '5__druid',
+      granularity: 'ds',
+      viz_type: 'table',
+      force: true,
+    });
+    expect(queryContext.datasource.id).toBe(5);
+    expect(queryContext.datasource.type).toBe('druid');
+    expect(queryContext.force).toBe(true);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/buildQueryObject.test.ts b/superset-frontend/packages/superset-ui-core/test/query/buildQueryObject.test.ts
new file mode 100644
index 0000000..1fb6add
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/buildQueryObject.test.ts
@@ -0,0 +1,221 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  AnnotationLayer,
+  AnnotationOpacity,
+  AnnotationSourceType,
+  AnnotationStyle,
+  AnnotationType,
+  buildQueryObject,
+  QueryObject,
+} from '../../src/query';
+
+describe('buildQueryObject', () => {
+  let query: QueryObject;
+
+  it('should build granularity for sqlalchemy datasources', () => {
+    query = buildQueryObject({
+      datasource: '5__table',
+      granularity_sqla: 'ds',
+      viz_type: 'table',
+    });
+    expect(query.granularity).toEqual('ds');
+  });
+
+  it('should build granularity for druid datasources', () => {
+    query = buildQueryObject({
+      datasource: '5__druid',
+      granularity: 'ds',
+      viz_type: 'table',
+    });
+    expect(query.granularity).toEqual('ds');
+  });
+
+  it('should build metrics based on default queryFields', () => {
+    query = buildQueryObject({
+      datasource: '5__table',
+      granularity_sqla: 'ds',
+      viz_type: 'table',
+      metric: 'sum__num',
+      secondary_metric: 'avg__num',
+    });
+    expect(query.metrics).toEqual(['sum__num', 'avg__num']);
+  });
+
+  it('should group custom metric control', () => {
+    query = buildQueryObject(
+      {
+        datasource: '5__table',
+        granularity_sqla: 'ds',
+        viz_type: 'table',
+        my_custom_metric_control: 'sum__num',
+      },
+      { my_custom_metric_control: 'metrics' },
+    );
+    expect(query.metrics).toEqual(['sum__num']);
+  });
+
+  it('should group custom metric control with predefined metrics', () => {
+    query = buildQueryObject(
+      {
+        datasource: '5__table',
+        granularity_sqla: 'ds',
+        viz_type: 'table',
+        metrics: ['sum__num'],
+        my_custom_metric_control: 'avg__num',
+      },
+      { my_custom_metric_control: 'metrics' },
+    );
+    expect(query.metrics).toEqual(['sum__num', 'avg__num']);
+  });
+
+  it('should build limit', () => {
+    const limit = 2;
+    query = buildQueryObject({
+      datasource: '5__table',
+      granularity_sqla: 'ds',
+      viz_type: 'table',
+      limit,
+    });
+    expect(query.timeseries_limit).toEqual(limit);
+  });
+
+  it('should build order_desc', () => {
+    const orderDesc = false;
+    query = buildQueryObject({
+      datasource: '5__table',
+      granularity_sqla: 'ds',
+      viz_type: 'table',
+      order_desc: orderDesc,
+    });
+    expect(query.order_desc).toEqual(orderDesc);
+  });
+
+  it('should build timeseries_limit_metric', () => {
+    const metric = 'country';
+    query = buildQueryObject({
+      datasource: '5__table',
+      granularity_sqla: 'ds',
+      viz_type: 'table',
+      timeseries_limit_metric: metric,
+    });
+    expect(query.timeseries_limit_metric).toEqual(metric);
+  });
+
+  it('should handle null and non-numeric row_limit and row_offset', () => {
+    const baseQuery = {
+      datasource: '5__table',
+      granularity_sqla: 'ds',
+      viz_type: 'table',
+      row_limit: null,
+    };
+
+    // undefined
+    query = buildQueryObject({ ...baseQuery });
+    expect(query.row_limit).toBeUndefined();
+    expect(query.row_offset).toBeUndefined();
+
+    // null value
+    query = buildQueryObject({ ...baseQuery, row_limit: null, row_offset: null });
+    expect(query.row_limit).toBeUndefined();
+    expect(query.row_offset).toBeUndefined();
+
+    query = buildQueryObject({ ...baseQuery, row_limit: 1000, row_offset: 50 });
+    expect(query.row_limit).toStrictEqual(1000);
+    expect(query.row_offset).toStrictEqual(50);
+
+    // valid string
+    query = buildQueryObject({ ...baseQuery, row_limit: '200', row_offset: '100' });
+    expect(query.row_limit).toStrictEqual(200);
+    expect(query.row_offset).toStrictEqual(100);
+
+    // invalid string
+    query = buildQueryObject({ ...baseQuery, row_limit: 'two hundred', row_offset: 'twenty' });
+    expect(query.row_limit).toBeUndefined();
+    expect(query.row_offset).toBeUndefined();
+  });
+
+  it('should populate annotation_layers', () => {
+    const annotationLayers: AnnotationLayer[] = [
+      {
+        annotationType: AnnotationType.Formula,
+        color: '#ff7f44',
+        name: 'My Formula',
+        opacity: AnnotationOpacity.Low,
+        show: true,
+        style: AnnotationStyle.Solid,
+        value: '10*sin(x)',
+        width: 1,
+      },
+      {
+        annotationType: AnnotationType.Interval,
+        color: null,
+        show: false,
+        name: 'My Interval',
+        sourceType: AnnotationSourceType.Native,
+        style: AnnotationStyle.Dashed,
+        value: 1,
+        width: 100,
+      },
+      {
+        annotationType: AnnotationType.Event,
+        color: null,
+        descriptionColumns: [],
+        name: 'My Interval',
+        overrides: {
+          granularity: null,
+          time_grain_sqla: null,
+          time_range: null,
+        },
+        sourceType: AnnotationSourceType.Table,
+        show: false,
+        timeColumn: 'ds',
+        style: AnnotationStyle.Dashed,
+        value: 1,
+        width: 100,
+      },
+    ];
+    query = buildQueryObject({
+      datasource: '5__table',
+      granularity_sqla: 'ds',
+      viz_type: 'table',
+      annotation_layers: annotationLayers,
+    });
+    expect(query.annotation_layers).toEqual(annotationLayers);
+  });
+
+  it('should populate url_params', () => {
+    expect(
+      buildQueryObject({
+        datasource: '5__table',
+        granularity_sqla: 'ds',
+        viz_type: 'table',
+        url_params: { abc: '123' },
+      }).url_params,
+    ).toEqual({ abc: '123' });
+    expect(
+      buildQueryObject({
+        datasource: '5__table',
+        granularity_sqla: 'ds',
+        viz_type: 'table',
+        url_params: (null as unknown) as undefined,
+      }).url_params,
+    ).toBeUndefined();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/convertFilter.test.ts b/superset-frontend/packages/superset-ui-core/test/query/convertFilter.test.ts
new file mode 100644
index 0000000..9869c1e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/convertFilter.test.ts
@@ -0,0 +1,67 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { convertFilter } from '@superset-ui/core/src/query';
+
+describe('convertFilter', () => {
+  it('should handle unary filter', () => {
+    expect(
+      convertFilter({
+        expressionType: 'SIMPLE',
+        clause: 'WHERE',
+        subject: 'topping',
+        operator: 'IS NOT NULL',
+      }),
+    ).toEqual({
+      col: 'topping',
+      op: 'IS NOT NULL',
+    });
+  });
+
+  it('should convert binary filter', () => {
+    expect(
+      convertFilter({
+        expressionType: 'SIMPLE',
+        clause: 'WHERE',
+        subject: 'topping',
+        operator: '==',
+        comparator: 'grass jelly',
+      }),
+    ).toEqual({
+      col: 'topping',
+      op: '==',
+      val: 'grass jelly',
+    });
+  });
+
+  it('should convert set filter', () => {
+    expect(
+      convertFilter({
+        expressionType: 'SIMPLE',
+        clause: 'WHERE',
+        subject: 'toppings',
+        operator: 'IN',
+        comparator: ['boba', 'grass jelly'],
+      }),
+    ).toEqual({
+      col: 'toppings',
+      op: 'IN',
+      val: ['boba', 'grass jelly'],
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/extractExtras.test.ts b/superset-frontend/packages/superset-ui-core/test/query/extractExtras.test.ts
new file mode 100644
index 0000000..e483666
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/extractExtras.test.ts
@@ -0,0 +1,113 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import extractExtras from '@superset-ui/core/src/query/extractExtras';
+
+describe('extractExtras', () => {
+  const baseQueryFormData = {
+    datasource: '1__table',
+    granularity_sqla: 'ds',
+    time_grain_sqla: 'PT1M',
+    viz_type: 'my_viz',
+    filters: [
+      {
+        col: 'gender',
+        op: '==',
+        val: 'girl',
+      },
+    ],
+  };
+
+  it('should populate time range endpoints and override formData with double underscored date options', () => {
+    expect(
+      extractExtras({
+        ...baseQueryFormData,
+        time_range_endpoints: ['inclusive', 'exclusive'],
+        extra_filters: [
+          {
+            col: '__time_col',
+            op: '==',
+            val: 'ds2',
+          },
+          {
+            col: '__time_grain',
+            op: '==',
+            val: 'PT5M',
+          },
+          {
+            col: '__time_range',
+            op: '==',
+            val: '2009-07-17T00:00:00 : 2020-07-17T00:00:00',
+          },
+        ],
+      }),
+    ).toEqual({
+      applied_time_extras: {
+        __time_col: 'ds2',
+        __time_grain: 'PT5M',
+        __time_range: '2009-07-17T00:00:00 : 2020-07-17T00:00:00',
+      },
+      extras: {
+        time_grain_sqla: 'PT5M',
+        time_range_endpoints: ['inclusive', 'exclusive'],
+      },
+      filters: [
+        {
+          col: 'gender',
+          op: '==',
+          val: 'girl',
+        },
+      ],
+      granularity: 'ds2',
+      time_range: '2009-07-17T00:00:00 : 2020-07-17T00:00:00',
+    });
+  });
+
+  it('should create regular filters from non-reserved columns', () => {
+    expect(
+      extractExtras({
+        ...baseQueryFormData,
+        extra_filters: [
+          {
+            col: 'name',
+            op: 'IN',
+            val: ['Eve', 'Evelyn'],
+          },
+        ],
+      }),
+    ).toEqual({
+      applied_time_extras: {},
+      extras: {
+        time_grain_sqla: 'PT1M',
+      },
+      filters: [
+        {
+          col: 'gender',
+          op: '==',
+          val: 'girl',
+        },
+        {
+          col: 'name',
+          op: 'IN',
+          val: ['Eve', 'Evelyn'],
+        },
+      ],
+      granularity: 'ds',
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/extractQueryFields.test.ts b/superset-frontend/packages/superset-ui-core/test/query/extractQueryFields.test.ts
new file mode 100644
index 0000000..ea02d23
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/extractQueryFields.test.ts
@@ -0,0 +1,161 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import extractQueryFields from '@superset-ui/core/src/query/extractQueryFields';
+import { configure } from '../../src/translation';
+import { QueryMode } from '../../src';
+import { DTTM_ALIAS } from '../../src/query/buildQueryObject';
+
+configure();
+
+describe('extractQueryFields', () => {
+  it('should return default object', () => {
+    expect(extractQueryFields({})).toEqual({
+      columns: [],
+      metrics: [],
+      orderby: [],
+    });
+  });
+
+  it('should group single value to arrays', () => {
+    expect(
+      extractQueryFields({ metric: 'my_metric', columns: 'abc', orderby: '["ccc",true]' }),
+    ).toEqual({
+      metrics: ['my_metric'],
+      columns: ['abc'],
+      orderby: [['ccc', true]],
+    });
+  });
+
+  it('should combine field aliases', () => {
+    expect(
+      extractQueryFields(
+        { metric: 'metric_1', metric_2: 'metric_2', my_custom_metric: 'my_custom_metric' },
+        { my_custom_metric: 'metrics' },
+      ).metrics,
+    ).toEqual(['metric_1', 'metric_2', 'my_custom_metric']);
+  });
+
+  it('should extract columns', () => {
+    expect(extractQueryFields({ columns: 'col_1' })).toEqual({
+      columns: ['col_1'],
+      metrics: [],
+      orderby: [],
+    });
+  });
+
+  it('should extract groupby', () => {
+    expect(extractQueryFields({ groupby: 'col_1' })).toEqual({
+      columns: ['col_1'],
+      metrics: [],
+      orderby: [],
+    });
+  });
+
+  it('should extract custom columns', () => {
+    expect(
+      extractQueryFields({ series: 'col_1', metric: 'metric_1' }, { series: 'groupby' }),
+    ).toEqual({
+      columns: ['col_1'],
+      metrics: ['metric_1'],
+      orderby: [],
+    });
+  });
+
+  it('should merge custom groupby into columns', () => {
+    expect(
+      extractQueryFields(
+        { groupby: 'col_1', series: 'col_2', metric: 'metric_1' },
+        { series: 'groupby' },
+      ),
+    ).toEqual({
+      columns: ['col_1', 'col_2'],
+      metrics: ['metric_1'],
+      orderby: [],
+    });
+  });
+
+  it('should include time', () => {
+    expect(extractQueryFields({ groupby: 'col_1', include_time: true }).columns).toEqual([
+      DTTM_ALIAS,
+      'col_1',
+    ]);
+    expect(
+      extractQueryFields({ groupby: ['col_1', DTTM_ALIAS, ''], include_time: true }).columns,
+    ).toEqual(['col_1', DTTM_ALIAS]);
+  });
+
+  it('should ignore null values', () => {
+    expect(extractQueryFields({ series: ['a'], columns: null }).columns).toEqual(['a']);
+  });
+
+  it('should ignore groupby and metrics when in raw QueryMode', () => {
+    expect(
+      extractQueryFields({
+        columns: ['a'],
+        groupby: ['b'],
+        metric: ['m'],
+        query_mode: QueryMode.raw,
+      }),
+    ).toEqual({
+      metrics: [],
+      columns: ['a'],
+      orderby: [],
+    });
+  });
+
+  it('should ignore columns when in aggregate QueryMode', () => {
+    expect(
+      extractQueryFields({
+        columns: ['a'],
+        groupby: ['b'],
+        metric: ['m'],
+        query_mode: QueryMode.aggregate,
+      }),
+    ).toEqual({
+      metrics: ['m'],
+      columns: ['b'],
+      orderby: [],
+    });
+  });
+
+  it('should parse orderby if needed', () => {
+    expect(
+      extractQueryFields({
+        columns: ['a'],
+        order_by_cols: ['["foo",false]', '["bar",true]'],
+        orderby: [['abc', true]],
+      }),
+    ).toEqual({
+      columns: ['a'],
+      metrics: [],
+      orderby: [
+        ['foo', false],
+        ['bar', true],
+        ['abc', true],
+      ],
+    });
+  });
+  it('should throw error if parse orderby failed', () => {
+    expect(() => {
+      extractQueryFields({
+        orderby: ['ccc'],
+      });
+    }).toThrow('invalid orderby');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/getMetricLabel.test.ts b/superset-frontend/packages/superset-ui-core/test/query/getMetricLabel.test.ts
new file mode 100644
index 0000000..d3f80bd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/getMetricLabel.test.ts
@@ -0,0 +1,58 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ColumnType, getMetricLabel } from '@superset-ui/core/src/query';
+
+describe('getMetricLabel', () => {
+  it('should handle predefined metric name', () => {
+    expect(getMetricLabel('sum__num')).toEqual('sum__num');
+  });
+
+  it('should handle simple adhoc metrics', () => {
+    expect(
+      getMetricLabel({
+        expressionType: 'SIMPLE',
+        aggregate: 'AVG',
+        column: {
+          columnName: 'sum_girls',
+          id: 5,
+          type: ColumnType.BIGINT,
+        },
+      }),
+    ).toEqual('AVG(sum_girls)');
+  });
+
+  it('should handle SQL adhoc metrics', () => {
+    expect(
+      getMetricLabel({
+        expressionType: 'SQL',
+        sqlExpression: 'COUNT(sum_girls)',
+      }),
+    ).toEqual('COUNT(sum_girls)');
+  });
+
+  it('should handle adhoc metrics with custom labels', () => {
+    expect(
+      getMetricLabel({
+        expressionType: 'SQL',
+        label: 'foo',
+        sqlExpression: 'COUNT(sum_girls)',
+      }),
+    ).toEqual('foo');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/processExtraFormData.test.ts b/superset-frontend/packages/superset-ui-core/test/query/processExtraFormData.test.ts
new file mode 100644
index 0000000..cd626fa
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/processExtraFormData.test.ts
@@ -0,0 +1,207 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  appendExtraFormData,
+  overrideExtraFormData,
+} from '@superset-ui/core/src/query/processExtraFormData';
+
+describe('appendExtraFormData', () => {
+  it('should add allowed values to non-existent value', () => {
+    expect(
+      appendExtraFormData(
+        {
+          datasource: 'table_1',
+          granularity: 'something',
+          viz_type: 'custom',
+        },
+        {
+          filters: [{ col: 'my_col', op: '==', val: 'my value' }],
+        },
+      ),
+    ).toEqual({
+      datasource: 'table_1',
+      filters: [{ col: 'my_col', op: '==', val: 'my value' }],
+      granularity: 'something',
+      viz_type: 'custom',
+    });
+  });
+
+  it('should add allowed values to preexisting value(s)', () => {
+    expect(
+      appendExtraFormData(
+        {
+          granularity: 'something',
+          viz_type: 'custom',
+          datasource: 'table_1',
+          filters: [{ col: 'my_col', op: '==', val: 'my value' }],
+        },
+        {
+          filters: [{ col: 'my_other_col', op: '!=', val: 'my other value' }],
+        },
+      ),
+    ).toEqual({
+      granularity: 'something',
+      viz_type: 'custom',
+      datasource: 'table_1',
+      filters: [
+        { col: 'my_col', op: '==', val: 'my value' },
+        { col: 'my_other_col', op: '!=', val: 'my other value' },
+      ],
+    });
+  });
+
+  it('should add new freeform where', () => {
+    expect(
+      appendExtraFormData(
+        {
+          datasource: 'table_1',
+          granularity: 'something',
+          viz_type: 'custom',
+        },
+        {
+          extras: {
+            where: '1 = 0',
+          },
+        },
+      ),
+    ).toEqual({
+      datasource: 'table_1',
+      granularity: 'something',
+      viz_type: 'custom',
+      extras: {
+        where: '(1 = 0)',
+      },
+    });
+  });
+
+  it('should add new freeform where to existing where clause', () => {
+    expect(
+      appendExtraFormData(
+        {
+          datasource: 'table_1',
+          granularity: 'something',
+          viz_type: 'custom',
+          extras: {
+            where: 'abc = 1',
+          },
+        },
+        {
+          extras: {
+            where: '1 = 0',
+          },
+        },
+      ),
+    ).toEqual({
+      datasource: 'table_1',
+      granularity: 'something',
+      viz_type: 'custom',
+      extras: {
+        where: '(abc = 1) AND (1 = 0)',
+      },
+    });
+  });
+  it('should not change existing where if append where is missing', () => {
+    expect(
+      appendExtraFormData(
+        {
+          datasource: 'table_1',
+          granularity: 'something',
+          viz_type: 'custom',
+          extras: {
+            where: 'abc = 1',
+          },
+        },
+        {
+          extras: {},
+        },
+      ),
+    ).toEqual({
+      datasource: 'table_1',
+      granularity: 'something',
+      viz_type: 'custom',
+      extras: {
+        where: 'abc = 1',
+      },
+    });
+  });
+});
+
+describe('overrideExtraFormData', () => {
+  it('should assign allowed non-existent value', () => {
+    expect(
+      overrideExtraFormData(
+        {
+          granularity: 'something',
+          viz_type: 'custom',
+          datasource: 'table_1',
+        },
+        {
+          time_grain_sqla: 'PT1H',
+        },
+      ),
+    ).toEqual({
+      granularity: 'something',
+      viz_type: 'custom',
+      datasource: 'table_1',
+      time_grain_sqla: 'PT1H',
+    });
+  });
+
+  it('should override allowed preexisting value', () => {
+    expect(
+      overrideExtraFormData(
+        {
+          granularity: 'something',
+          viz_type: 'custom',
+          datasource: 'table_1',
+          time_grain_sqla: 'PT1H',
+        },
+        {
+          time_grain_sqla: 'PT2H',
+        },
+      ),
+    ).toEqual({
+      granularity: 'something',
+      viz_type: 'custom',
+      datasource: 'table_1',
+      time_grain_sqla: 'PT2H',
+    });
+  });
+
+  it('should not override non-allowed value', () => {
+    expect(
+      overrideExtraFormData(
+        {
+          granularity: 'something',
+          viz_type: 'custom',
+          datasource: 'table_1',
+          time_grain_sqla: 'PT1H',
+        },
+        {
+          viz_type: 'other custom viz',
+        },
+      ),
+    ).toEqual({
+      granularity: 'something',
+      viz_type: 'custom',
+      datasource: 'table_1',
+      time_grain_sqla: 'PT1H',
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/processFilters.test.ts b/superset-frontend/packages/superset-ui-core/test/query/processFilters.test.ts
new file mode 100644
index 0000000..2ae7fa2
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/processFilters.test.ts
@@ -0,0 +1,181 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import processFilters from '@superset-ui/core/src/query/processFilters';
+
+describe('processFilters', () => {
+  it('should handle non-array adhoc_filters', () => {
+    expect(
+      processFilters({
+        granularity: 'something',
+        viz_type: 'custom',
+        datasource: 'boba',
+      }),
+    ).toEqual(
+      expect.objectContaining({ extras: { having: '', having_druid: [], where: '' }, filters: [] }),
+    );
+  });
+
+  it('should merge simple adhoc_filters and filters', () => {
+    expect(
+      processFilters({
+        granularity: 'something',
+        viz_type: 'custom',
+        datasource: 'boba',
+        filters: [
+          {
+            col: 'name',
+            op: '==',
+            val: 'Aaron',
+          },
+        ],
+        adhoc_filters: [
+          {
+            expressionType: 'SIMPLE',
+            clause: 'WHERE',
+            subject: 'gender',
+            operator: 'IS NOT NULL',
+          },
+        ],
+      }),
+    ).toEqual({
+      extras: {
+        having: '',
+        having_druid: [],
+        where: '',
+      },
+      filters: [
+        {
+          col: 'name',
+          op: '==',
+          val: 'Aaron',
+        },
+        {
+          col: 'gender',
+          op: 'IS NOT NULL',
+        },
+      ],
+    });
+  });
+
+  it('should handle an empty array', () => {
+    expect(
+      processFilters({
+        where: '1 = 1',
+        granularity: 'something',
+        viz_type: 'custom',
+        datasource: 'boba',
+        adhoc_filters: [],
+      }),
+    ).toEqual({
+      filters: [],
+      extras: {
+        having: '',
+        having_druid: [],
+        where: '(1 = 1)',
+      },
+    });
+  });
+
+  it('should put adhoc_filters into the correct group and format accordingly', () => {
+    expect(
+      processFilters({
+        granularity: 'something',
+        viz_type: 'custom',
+        datasource: 'boba',
+        adhoc_filters: [
+          {
+            expressionType: 'SIMPLE',
+            clause: 'WHERE',
+            subject: 'milk',
+            operator: 'IS NOT NULL',
+          },
+          {
+            expressionType: 'SIMPLE',
+            clause: 'WHERE',
+            subject: 'milk',
+            operator: '==',
+            comparator: 'almond',
+          },
+          {
+            expressionType: 'SIMPLE',
+            clause: 'HAVING',
+            subject: 'sweetness',
+            operator: '>',
+            comparator: '0',
+          },
+          {
+            expressionType: 'SIMPLE',
+            clause: 'HAVING',
+            subject: 'sweetness',
+            operator: '<=',
+            comparator: '50',
+          },
+          {
+            expressionType: 'SQL',
+            clause: 'WHERE',
+            sqlExpression: 'tea = "jasmine"',
+          },
+          {
+            expressionType: 'SQL',
+            clause: 'WHERE',
+            sqlExpression: 'cup = "large"',
+          },
+          {
+            expressionType: 'SQL',
+            clause: 'HAVING',
+            sqlExpression: 'ice = 25 OR ice = 50',
+          },
+          {
+            expressionType: 'SQL',
+            clause: 'HAVING',
+            sqlExpression: 'waitTime <= 180',
+          },
+        ],
+      }),
+    ).toEqual({
+      extras: {
+        having: '(ice = 25 OR ice = 50) AND (waitTime <= 180)',
+        having_druid: [
+          {
+            col: 'sweetness',
+            op: '>',
+            val: '0',
+          },
+          {
+            col: 'sweetness',
+            op: '<=',
+            val: '50',
+          },
+        ],
+        where: '(tea = "jasmine") AND (cup = "large")',
+      },
+      filters: [
+        {
+          col: 'milk',
+          op: 'IS NOT NULL',
+        },
+        {
+          col: 'milk',
+          op: '==',
+          val: 'almond',
+        },
+      ],
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/types/AnnotationLayer.test.ts b/superset-frontend/packages/superset-ui-core/test/query/types/AnnotationLayer.test.ts
new file mode 100644
index 0000000..96d4af7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/types/AnnotationLayer.test.ts
@@ -0,0 +1,149 @@
+import {
+  AnnotationSourceType,
+  AnnotationStyle,
+  AnnotationType,
+  EventAnnotationLayer,
+  FormulaAnnotationLayer,
+  IntervalAnnotationLayer,
+  isEventAnnotationLayer,
+  isFormulaAnnotationLayer,
+  isIntervalAnnotationLayer,
+  isRecordAnnotationResult,
+  isTableAnnotationLayer,
+  isTimeseriesAnnotationLayer,
+  isTimeseriesAnnotationResult,
+  RecordAnnotationResult,
+  TableAnnotationLayer,
+  TimeseriesAnnotationLayer,
+  TimeseriesAnnotationResult,
+} from '@superset-ui/core/src/query/types/AnnotationLayer';
+
+describe('AnnotationLayer type guards', () => {
+  const formulaAnnotationLayer: FormulaAnnotationLayer = {
+    annotationType: AnnotationType.Formula,
+    name: 'My Formula',
+    value: 'sin(2*x)',
+    style: AnnotationStyle.Solid,
+    show: true,
+  };
+  const eventAnnotationLayer: EventAnnotationLayer = {
+    annotationType: AnnotationType.Event,
+    name: 'My Event',
+    value: 1,
+    style: AnnotationStyle.Solid,
+    show: true,
+    sourceType: AnnotationSourceType.Native,
+  };
+  const intervalAnnotationLayer: IntervalAnnotationLayer = {
+    annotationType: AnnotationType.Interval,
+    sourceType: AnnotationSourceType.Table,
+    name: 'My Event',
+    value: 1,
+    style: AnnotationStyle.Solid,
+    show: true,
+  };
+  const timeseriesAnnotationLayer: TimeseriesAnnotationLayer = {
+    annotationType: AnnotationType.Timeseries,
+    sourceType: AnnotationSourceType.Line,
+    name: 'My Event',
+    value: 1,
+    style: AnnotationStyle.Solid,
+    show: true,
+  };
+  const tableAnnotationLayer: TableAnnotationLayer = {
+    annotationType: AnnotationType.Interval,
+    sourceType: AnnotationSourceType.Table,
+    name: 'My Event',
+    value: 1,
+    style: AnnotationStyle.Solid,
+    show: true,
+  };
+  const timeseriesAnnotationResult: TimeseriesAnnotationResult = [
+    {
+      key: 'My Key',
+      values: [
+        { x: -1000, y: 0 },
+        { x: 0, y: 1000 },
+        { x: 1000, y: 2000 },
+      ],
+    },
+  ];
+  const recordAnnotationResult: RecordAnnotationResult = {
+    columns: ['col1', 'col2'],
+    records: [
+      { a: 1, b: 2 },
+      { a: 2, b: 3 },
+    ],
+  };
+
+  describe('isFormulaAnnotationLayer', () => {
+    it('should return true when it is the correct type', () => {
+      expect(isFormulaAnnotationLayer(formulaAnnotationLayer)).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(isFormulaAnnotationLayer(eventAnnotationLayer)).toEqual(false);
+      expect(isFormulaAnnotationLayer(intervalAnnotationLayer)).toEqual(false);
+      expect(isFormulaAnnotationLayer(timeseriesAnnotationLayer)).toEqual(false);
+    });
+  });
+
+  describe('isEventAnnotationLayer', () => {
+    it('should return true when it is the correct type', () => {
+      expect(isEventAnnotationLayer(eventAnnotationLayer)).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(isEventAnnotationLayer(formulaAnnotationLayer)).toEqual(false);
+      expect(isEventAnnotationLayer(intervalAnnotationLayer)).toEqual(false);
+      expect(isEventAnnotationLayer(timeseriesAnnotationLayer)).toEqual(false);
+    });
+  });
+
+  describe('isIntervalAnnotationLayer', () => {
+    it('should return true when it is the correct type', () => {
+      expect(isIntervalAnnotationLayer(intervalAnnotationLayer)).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(isIntervalAnnotationLayer(formulaAnnotationLayer)).toEqual(false);
+      expect(isIntervalAnnotationLayer(eventAnnotationLayer)).toEqual(false);
+      expect(isIntervalAnnotationLayer(timeseriesAnnotationLayer)).toEqual(false);
+    });
+  });
+
+  describe('isTimeseriesAnnotationLayer', () => {
+    it('should return true when it is the correct type', () => {
+      expect(isTimeseriesAnnotationLayer(timeseriesAnnotationLayer)).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(isTimeseriesAnnotationLayer(formulaAnnotationLayer)).toEqual(false);
+      expect(isTimeseriesAnnotationLayer(eventAnnotationLayer)).toEqual(false);
+      expect(isTimeseriesAnnotationLayer(intervalAnnotationLayer)).toEqual(false);
+    });
+  });
+
+  describe('isTableAnnotationLayer', () => {
+    it('should return true when it is the correct type', () => {
+      expect(isTableAnnotationLayer(tableAnnotationLayer)).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(isTableAnnotationLayer(formulaAnnotationLayer)).toEqual(false);
+    });
+  });
+
+  describe('isTimeseriesAnnotationResult', () => {
+    it('should return true when it is the correct type', () => {
+      expect(isTimeseriesAnnotationResult(timeseriesAnnotationResult)).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(isTimeseriesAnnotationResult(recordAnnotationResult)).toEqual(false);
+    });
+  });
+
+  describe('isRecordAnnotationResult', () => {
+    it('should return true when it is the correct type', () => {
+      expect(isRecordAnnotationResult(recordAnnotationResult)).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(isRecordAnnotationResult(timeseriesAnnotationResult)).toEqual(false);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/query/types/Filter.test.ts b/superset-frontend/packages/superset-ui-core/test/query/types/Filter.test.ts
new file mode 100644
index 0000000..ea88512
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/query/types/Filter.test.ts
@@ -0,0 +1,79 @@
+import {
+  isUnaryAdhocFilter,
+  isBinaryAdhocFilter,
+  isSetAdhocFilter,
+} from '@superset-ui/core/src/query/types/Filter';
+
+describe('Filter type guards', () => {
+  describe('isUnaryAdhocFilter', () => {
+    it('should return true when it is the correct type', () => {
+      expect(
+        isUnaryAdhocFilter({
+          expressionType: 'SIMPLE',
+          clause: 'WHERE',
+          subject: 'tea',
+          operator: 'IS NOT NULL',
+        }),
+      ).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(
+        isUnaryAdhocFilter({
+          expressionType: 'SIMPLE',
+          clause: 'WHERE',
+          subject: 'tea',
+          operator: '==',
+          comparator: 'matcha',
+        }),
+      ).toEqual(false);
+    });
+  });
+
+  describe('isBinaryAdhocFilter', () => {
+    it('should return true when it is the correct type', () => {
+      expect(
+        isBinaryAdhocFilter({
+          expressionType: 'SIMPLE',
+          clause: 'WHERE',
+          subject: 'tea',
+          operator: '!=',
+          comparator: 'matcha',
+        }),
+      ).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(
+        isBinaryAdhocFilter({
+          expressionType: 'SIMPLE',
+          clause: 'WHERE',
+          subject: 'tea',
+          operator: 'IS NOT NULL',
+        }),
+      ).toEqual(false);
+    });
+  });
+
+  describe('isSetAdhocFilter', () => {
+    it('should return true when it is the correct type', () => {
+      expect(
+        isSetAdhocFilter({
+          expressionType: 'SIMPLE',
+          clause: 'WHERE',
+          subject: 'tea',
+          operator: 'IN',
+          comparator: ['hojicha', 'earl grey'],
+        }),
+      ).toEqual(true);
+    });
+    it('should return false otherwise', () => {
+      expect(
+        isSetAdhocFilter({
+          expressionType: 'SIMPLE',
+          clause: 'WHERE',
+          subject: 'tea',
+          operator: 'IS NOT NULL',
+        }),
+      ).toEqual(false);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/style/index.test.tsx b/superset-frontend/packages/superset-ui-core/test/style/index.test.tsx
new file mode 100644
index 0000000..7df8d7d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/style/index.test.tsx
@@ -0,0 +1,49 @@
+import React from 'react';
+import { mount } from 'enzyme';
+import styled, {
+  supersetTheme,
+  SupersetThemeProps,
+  useTheme,
+  ThemeProvider,
+} from '@superset-ui/core/src/style';
+
+describe('@superset-ui/style package', () => {
+  it('exports a theme', () => {
+    expect(typeof supersetTheme).toBe('object');
+  });
+
+  it('exports styled component templater', () => {
+    expect(typeof styled.div).toBe('function');
+  });
+
+  it('exports SupersetThemeProps', () => {
+    const props: SupersetThemeProps = {
+      theme: supersetTheme,
+    };
+    expect(typeof props).toBe('object');
+  });
+
+  describe('useTheme()', () => {
+    it('returns the theme', () => {
+      function ThemeUser() {
+        expect(useTheme()).toStrictEqual(supersetTheme);
+        return <div>test</div>;
+      }
+      mount(<ThemeUser />, {
+        wrappingComponent: ({ children }) => (
+          <ThemeProvider theme={supersetTheme}>{children}</ThemeProvider>
+        ),
+      });
+    });
+
+    it('throws when a theme is not present', () => {
+      function ThemeUser() {
+        expect(useTheme).toThrow(/could not find a ThemeContext/);
+        return <div>test</div>;
+      }
+      mount(<ThemeUser />, {
+        wrappingComponent: ({ children }) => <div>{children}</div>,
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/TimeFormatter.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/TimeFormatter.test.ts
new file mode 100644
index 0000000..3a52925
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/TimeFormatter.test.ts
@@ -0,0 +1,68 @@
+import TimeFormatter, { PREVIEW_TIME } from '@superset-ui/core/src/time-format/TimeFormatter';
+
+describe('TimeFormatter', () => {
+  describe('new TimeFormatter(config)', () => {
+    it('requires config.id', () => {
+      expect(
+        () =>
+          // @ts-ignore -- intentionally pass invalid input
+          new TimeFormatter({
+            formatFunc: () => 'test',
+          }),
+      ).toThrow();
+    });
+    it('requires config.formatFunc', () => {
+      expect(
+        () =>
+          // @ts-ignore -- intentionally pass invalid input
+          new TimeFormatter({
+            id: 'my_format',
+          }),
+      ).toThrow();
+    });
+  });
+  describe('formatter is also a format function itself', () => {
+    const formatter = new TimeFormatter({
+      id: 'year_only',
+      formatFunc: (value: Date) => `${value.getFullYear()}`,
+    });
+    it('returns formatted value', () => {
+      expect(formatter(PREVIEW_TIME)).toEqual('2017');
+    });
+    it('formatter(value) is the same with formatter.format(value)', () => {
+      const value = PREVIEW_TIME;
+      expect(formatter(value)).toEqual(formatter.format(value));
+    });
+  });
+  describe('.format(value)', () => {
+    const formatter = new TimeFormatter({
+      id: 'year_only',
+      formatFunc: value => `${value.getFullYear()}`,
+    });
+    it('handles null', () => {
+      expect(formatter.format(null)).toEqual('null');
+    });
+    it('handles undefined', () => {
+      expect(formatter.format(undefined)).toEqual('undefined');
+    });
+    it('handles number, treating it as a timestamp', () => {
+      expect(formatter.format(PREVIEW_TIME.getTime())).toEqual('2017');
+    });
+    it('otherwise returns formatted value', () => {
+      expect(formatter.format(PREVIEW_TIME)).toEqual('2017');
+    });
+  });
+  describe('.preview(value)', () => {
+    const formatter = new TimeFormatter({
+      id: 'year_only',
+      formatFunc: value => `${value.getFullYear()}`,
+    });
+    it('returns string comparing value before and after formatting', () => {
+      const time = new Date(Date.UTC(2018, 10, 21, 22, 11, 44));
+      expect(formatter.preview(time)).toEqual('Wed, 21 Nov 2018 22:11:44 GMT => 2018');
+    });
+    it('uses the default preview value if not specified', () => {
+      expect(formatter.preview()).toEqual('Tue, 14 Feb 2017 11:22:33 GMT => 2017');
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/TimeFormatterRegistry.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/TimeFormatterRegistry.test.ts
new file mode 100644
index 0000000..a80eaa8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/TimeFormatterRegistry.test.ts
@@ -0,0 +1,56 @@
+import TimeFormatterRegistry from '@superset-ui/core/src/time-format/TimeFormatterRegistry';
+import { TimeFormats, TimeFormatter, PREVIEW_TIME } from '@superset-ui/core/src/time-format';
+
+describe('TimeFormatterRegistry', () => {
+  let registry: TimeFormatterRegistry;
+  beforeEach(() => {
+    registry = new TimeFormatterRegistry();
+  });
+  describe('.get(format)', () => {
+    it('creates and returns a new formatter if does not exist', () => {
+      const formatter = registry.get(TimeFormats.DATABASE_DATETIME);
+      expect(formatter).toBeInstanceOf(TimeFormatter);
+      expect(formatter.format(PREVIEW_TIME)).toEqual('2017-02-14 11:22:33');
+    });
+    it('returns an existing formatter if already exists', () => {
+      const formatter = registry.get(TimeFormats.TIME);
+      const formatter2 = registry.get(TimeFormats.TIME);
+      expect(formatter).toBe(formatter2);
+    });
+    it('falls back to default format if format is not specified', () => {
+      registry.setDefaultKey(TimeFormats.INTERNATIONAL_DATE);
+      const formatter = registry.get();
+      expect(formatter.format(PREVIEW_TIME)).toEqual('14/02/2017');
+    });
+    it('falls back to default format if format is null', () => {
+      registry.setDefaultKey(TimeFormats.INTERNATIONAL_DATE);
+      // @ts-ignore
+      const formatter = registry.get(null);
+      expect(formatter.format(PREVIEW_TIME)).toEqual('14/02/2017');
+    });
+    it('falls back to default format if format is undefined', () => {
+      registry.setDefaultKey(TimeFormats.INTERNATIONAL_DATE);
+      const formatter = registry.get(undefined);
+      expect(formatter.format(PREVIEW_TIME)).toEqual('14/02/2017');
+    });
+    it('falls back to default format if format is empty string', () => {
+      registry.setDefaultKey(TimeFormats.INTERNATIONAL_DATE);
+      const formatter = registry.get('');
+      expect(formatter.format(PREVIEW_TIME)).toEqual('14/02/2017');
+    });
+    it('removes leading and trailing spaces from format', () => {
+      const formatter = registry.get(' %Y ');
+      expect(formatter).toBeInstanceOf(TimeFormatter);
+      expect(formatter.format(PREVIEW_TIME)).toEqual('2017');
+    });
+  });
+  describe('.format(format, value)', () => {
+    it('return the value with the specified format', () => {
+      expect(registry.format(TimeFormats.US_DATE, PREVIEW_TIME)).toEqual('02/14/2017');
+      expect(registry.format(TimeFormats.TIME, PREVIEW_TIME)).toEqual('11:22:33');
+    });
+    it('falls back to the default formatter if the format is undefined', () => {
+      expect(registry.format(undefined, PREVIEW_TIME)).toEqual('2017-02-14 11:22:33');
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/TimeFormatterRegistrySingleton.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/TimeFormatterRegistrySingleton.test.ts
new file mode 100644
index 0000000..0247252
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/TimeFormatterRegistrySingleton.test.ts
@@ -0,0 +1,133 @@
+import getTimeFormatterRegistry, {
+  getTimeFormatter,
+  formatTime,
+  getTimeFormatterForGranularity,
+  formatTimeRange,
+} from '@superset-ui/core/src/time-format/TimeFormatterRegistrySingleton';
+import TimeFormatterRegistry from '@superset-ui/core/src/time-format/TimeFormatterRegistry';
+import { PREVIEW_TIME } from '@superset-ui/core/src/time-format/TimeFormatter';
+import { TimeGranularity, LOCAL_PREFIX } from '@superset-ui/core/src/time-format';
+
+describe('TimeFormatterRegistrySingleton', () => {
+  describe('getTimeFormatterRegistry()', () => {
+    it('returns a TimeFormatterRegisry', () => {
+      expect(getTimeFormatterRegistry()).toBeInstanceOf(TimeFormatterRegistry);
+    });
+  });
+  describe('getTimeFormatter(format)', () => {
+    it('returns a format function', () => {
+      const format = getTimeFormatter('%d/%m/%Y');
+      expect(format(PREVIEW_TIME)).toEqual('14/02/2017');
+    });
+    it('falls back to default format if format is not specified', () => {
+      const format = getTimeFormatter();
+      expect(format(PREVIEW_TIME)).toEqual('2017-02-14 11:22:33');
+    });
+    it(`use local time when format string has LOCAL_PREFIX (${LOCAL_PREFIX})`, () => {
+      const format = getTimeFormatter('local!%m-%d %H:%M');
+      expect(format(new Date(2019, 5, 18, 11, 23))).toEqual('06-18 11:23');
+    });
+  });
+  describe('getTimeFormatterForGranularity(granularity?)', () => {
+    it('returns the default formatter for that granularity', () => {
+      const date = new Date(Date.UTC(2020, 4, 10)); // May 10, 2020 is Sunday
+      expect(getTimeFormatterForGranularity(TimeGranularity.DATE)(date)).toEqual('2020-05-10');
+    });
+  });
+  describe('formatTimeRange(format?, values)', () => {
+    it('format the given time range with specified format', () => {
+      expect(
+        formatTimeRange('%m-%d', [new Date(Date.UTC(2017, 1, 1)), new Date(Date.UTC(2017, 1, 2))]),
+      ).toEqual('02-01 — 02-02');
+    });
+    it('show only one value if start and end are equal after formatting', () => {
+      expect(
+        formatTimeRange('%m-%d', [
+          new Date(Date.UTC(2017, 1, 1)),
+          new Date(Date.UTC(2017, 1, 1, 10)),
+        ]),
+      ).toEqual('02-01');
+    });
+    it('falls back to default format if format is not specified', () => {
+      expect(
+        formatTimeRange(undefined, [
+          new Date(Date.UTC(2017, 1, 1)),
+          new Date(Date.UTC(2017, 1, 2)),
+        ]),
+      ).toEqual('2017-02-01 00:00:00 — 2017-02-02 00:00:00');
+    });
+  });
+  describe('formatTime(format?, value, granularity?)', () => {
+    describe('without granularity', () => {
+      it('format the given time using the specified format', () => {
+        const output = formatTime('%Y-%m-%d', PREVIEW_TIME);
+        expect(output).toEqual('2017-02-14');
+      });
+      it('falls back to the default formatter if the format is undefined', () => {
+        expect(formatTime(undefined, PREVIEW_TIME)).toEqual('2017-02-14 11:22:33');
+      });
+    });
+    describe('with granularity', () => {
+      it('format the given time using specified format', () => {
+        const output = formatTime('%-m/%d', new Date(Date.UTC(2017, 4, 10)), TimeGranularity.WEEK);
+        expect(output).toEqual('5/10 — 5/16');
+      });
+      it('format the given time using default format if format is not specified', () => {
+        const date = new Date(Date.UTC(2020, 4, 10)); // May 10, 2020 is Sunday
+        expect(formatTime(undefined, date, TimeGranularity.DATE)).toEqual('2020-05-10');
+        expect(formatTime(undefined, date, TimeGranularity.SECOND)).toEqual('2020-05-10 00:00:00');
+        expect(formatTime(undefined, date, TimeGranularity.MINUTE)).toEqual('2020-05-10 00:00');
+        expect(formatTime(undefined, date, TimeGranularity.FIVE_MINUTES)).toEqual(
+          '2020-05-10 00:00 — 2020-05-10 00:04',
+        );
+        expect(formatTime(undefined, date, TimeGranularity.TEN_MINUTES)).toEqual(
+          '2020-05-10 00:00 — 2020-05-10 00:09',
+        );
+        expect(formatTime(undefined, date, TimeGranularity.FIFTEEN_MINUTES)).toEqual(
+          '2020-05-10 00:00 — 2020-05-10 00:14',
+        );
+        expect(formatTime(undefined, date, TimeGranularity.HALF_HOUR)).toEqual(
+          '2020-05-10 00:00 — 2020-05-10 00:29',
+        );
+        expect(formatTime(undefined, date, TimeGranularity.HOUR)).toEqual('2020-05-10 00:00');
+        expect(formatTime(undefined, date, TimeGranularity.DAY)).toEqual('2020-05-10');
+        expect(formatTime(undefined, date, TimeGranularity.WEEK)).toEqual(
+          '2020-05-10 — 2020-05-16',
+        );
+        expect(formatTime(undefined, date, TimeGranularity.WEEK_STARTING_SUNDAY)).toEqual(
+          '2020-05-10 — 2020-05-16',
+        );
+        expect(
+          formatTime(
+            undefined,
+            new Date(Date.UTC(2020, 4, 11)),
+            TimeGranularity.WEEK_STARTING_MONDAY,
+          ),
+        ).toEqual('2020-05-11 — 2020-05-17');
+        expect(
+          formatTime(
+            undefined,
+            new Date(Date.UTC(2020, 4, 10)),
+            TimeGranularity.WEEK_ENDING_SUNDAY,
+          ),
+        ).toEqual('2020-05-04 — 2020-05-10');
+        expect(
+          formatTime(
+            undefined,
+            new Date(Date.UTC(2020, 4, 9)),
+            TimeGranularity.WEEK_ENDING_SATURDAY,
+          ),
+        ).toEqual('2020-05-03 — 2020-05-09');
+        expect(
+          formatTime(undefined, new Date(Date.UTC(2020, 3, 1)), TimeGranularity.MONTH),
+        ).toEqual('Apr 2020');
+        expect(
+          formatTime(undefined, new Date(Date.UTC(2020, 3, 1)), TimeGranularity.QUARTER),
+        ).toEqual('2020 Q2');
+        expect(formatTime(undefined, new Date(Date.UTC(2020, 0, 1)), TimeGranularity.YEAR)).toEqual(
+          '2020',
+        );
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/factories/createD3TimeFormatter.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/factories/createD3TimeFormatter.test.ts
new file mode 100644
index 0000000..f918c1f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/factories/createD3TimeFormatter.test.ts
@@ -0,0 +1,101 @@
+import { TimeLocaleDefinition } from 'd3-time-format';
+import createD3TimeFormatter from '@superset-ui/core/src/time-format/factories/createD3TimeFormatter';
+import { PREVIEW_TIME } from '@superset-ui/core/src/time-format/TimeFormatter';
+import { TimeFormats } from '@superset-ui/core/src/time-format';
+
+const thLocale: TimeLocaleDefinition = {
+  dateTime: '%a %e %b %Y %X',
+  date: '%d/%m/%Y',
+  time: '%H:%M:%S',
+  periods: ['AM', 'PM'],
+  days: ['วันอาทิตย์', 'วันจันทร์', 'วันอังคาร', 'วันพุธ', 'วันพฤหัส', 'วันศุกร์', 'วันเสาร์'],
+  shortDays: ['อา.', 'จ.', 'อ.', 'พ.', 'พฤ', 'ศ.', 'ส.'],
+  months: [
+    'มกราคม',
+    'กุมภาพันธ์',
+    'มีนาคม',
+    'เมษายน',
+    'พฤษภาคม',
+    'มิถุนายน',
+    'กรกฎาคม',
+    'สิงหาคม',
+    'กันยายน',
+    'ตุลาคม',
+    'พฤศจิกายน',
+    'ธันวาคม',
+  ],
+  shortMonths: [
+    'ม.ค.',
+    'ก.พ.',
+    'มี.ค.',
+    'เม.ย.',
+    'พ.ค.',
+    'มิ.ย.',
+    'ก.ค.',
+    'ส.ค.',
+    'ก.ย.',
+    'ต.ค.',
+    'พ.ย.',
+    'ธ.ค.',
+  ],
+};
+
+describe('createD3TimeFormatter(config)', () => {
+  it('requires config.formatString', () => {
+    // @ts-ignore
+    expect(() => createD3TimeFormatter()).toThrow();
+    // @ts-ignore
+    expect(() => createD3TimeFormatter({})).toThrow();
+  });
+  describe('config.useLocalTime', () => {
+    it('if falsy, formats in UTC time', () => {
+      const formatter = createD3TimeFormatter({
+        formatString: TimeFormats.DATABASE_DATETIME,
+      });
+      expect(formatter.format(PREVIEW_TIME)).toEqual('2017-02-14 11:22:33');
+    });
+    it('if true, formats in local time', () => {
+      const formatter = createD3TimeFormatter({
+        formatString: TimeFormats.DATABASE_DATETIME,
+        useLocalTime: true,
+      });
+      const formatterInUTC = createD3TimeFormatter({
+        formatString: TimeFormats.DATABASE_DATETIME,
+      });
+      const offset = new Date().getTimezoneOffset(); // in minutes
+      const expected =
+        offset === 0
+          ? '2017-02-14 11:22:33'
+          : formatterInUTC(new Date(PREVIEW_TIME.valueOf() - 60 * 1000 * offset));
+      expect(formatter.format(PREVIEW_TIME)).toEqual(expected);
+    });
+  });
+
+  describe('config.locale', () => {
+    const TEST_TIME = new Date(Date.UTC(2015, 11, 20));
+    it('supports locale customization (utc time)', () => {
+      const formatter = createD3TimeFormatter({
+        formatString: '%c',
+        locale: thLocale,
+      });
+      expect(formatter(TEST_TIME)).toEqual('อา. 20 ธ.ค. 2015 00:00:00');
+    });
+    it('supports locale customization (local time)', () => {
+      const formatter = createD3TimeFormatter({
+        formatString: '%c',
+        locale: thLocale,
+        useLocalTime: true,
+      });
+      const formatterInUTC = createD3TimeFormatter({
+        formatString: '%c',
+        locale: thLocale,
+      });
+      const offset = new Date().getTimezoneOffset();
+      const expected =
+        offset === 0
+          ? 'อา. 20 ธ.ค. 2015 00:00:00'
+          : formatterInUTC(new Date(TEST_TIME.valueOf() - 60 * 1000 * offset));
+      expect(formatter(TEST_TIME)).toEqual(expected);
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/factories/createMultiFormatter.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/factories/createMultiFormatter.test.ts
new file mode 100644
index 0000000..4a4833b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/factories/createMultiFormatter.test.ts
@@ -0,0 +1,34 @@
+import createMultiFormatter from '@superset-ui/core/src/time-format/factories/createMultiFormatter';
+
+describe('createMultiFormatter()', () => {
+  describe('creates a multi-step formatter', () => {
+    const formatter = createMultiFormatter({
+      id: 'my_format',
+      useLocalTime: true,
+    });
+    it('formats millisecond', () => {
+      expect(formatter(new Date(2018, 10, 20, 11, 22, 33, 100))).toEqual('.100');
+    });
+    it('formats second', () => {
+      expect(formatter(new Date(2018, 10, 20, 11, 22, 33))).toEqual(':33');
+    });
+    it('format minutes', () => {
+      expect(formatter(new Date(2018, 10, 20, 11, 22))).toEqual('11:22');
+    });
+    it('format hours', () => {
+      expect(formatter(new Date(2018, 10, 20, 11))).toEqual('11 AM');
+    });
+    it('format first day of week', () => {
+      expect(formatter(new Date(2018, 10, 18))).toEqual('Nov 18');
+    });
+    it('format other day of week', () => {
+      expect(formatter(new Date(2018, 10, 20))).toEqual('Tue 20');
+    });
+    it('format month', () => {
+      expect(formatter(new Date(2018, 10))).toEqual('November');
+    });
+    it('format year', () => {
+      expect(formatter(new Date(2018, 0))).toEqual('2018');
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/formatters/smartDate.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/formatters/smartDate.test.ts
new file mode 100644
index 0000000..983d618
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/formatters/smartDate.test.ts
@@ -0,0 +1,24 @@
+import TimeFormatter from '@superset-ui/core/src/time-format/TimeFormatter';
+import smartDateFormatter from '@superset-ui/core/src/time-format/formatters/smartDate';
+
+describe('smartDateFormatter', () => {
+  it('is a function', () => {
+    expect(smartDateFormatter).toBeInstanceOf(TimeFormatter);
+  });
+
+  it('shows only year when 1st day of the year', () => {
+    expect(smartDateFormatter(new Date('2020-01-01'))).toBe('2020');
+  });
+
+  it('shows only month when 1st of month', () => {
+    expect(smartDateFormatter(new Date('2020-03-01'))).toBe('March');
+  });
+
+  it('does not show day of week when it is Sunday', () => {
+    expect(smartDateFormatter(new Date('2020-03-15'))).toBe('Mar 15');
+  });
+
+  it('shows weekday when it is not Sunday (and no ms/sec/min/hr)', () => {
+    expect(smartDateFormatter(new Date('2020-03-03'))).toBe('Tue 03');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/formatters/smartDateVerbose.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/formatters/smartDateVerbose.test.ts
new file mode 100644
index 0000000..f1f8f27
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/formatters/smartDateVerbose.test.ts
@@ -0,0 +1,23 @@
+import TimeFormatter from '@superset-ui/core/src/time-format/TimeFormatter';
+import smartDateVerboseFormatter from '@superset-ui/core/src/time-format/formatters/smartDateVerbose';
+
+describe('smartDateVerboseFormatter', () => {
+  const formatter = smartDateVerboseFormatter;
+
+  it('is a function', () => {
+    expect(formatter).toBeInstanceOf(TimeFormatter);
+  });
+
+  it('shows only year when 1st day of the year', () => {
+    expect(formatter(new Date('2020-01-01'))).toBe('2020');
+  });
+
+  it('shows month and year when 1st of month', () => {
+    expect(formatter(new Date('2020-03-01'))).toBe('Mar 2020');
+  });
+
+  it('shows weekday when any day of the month', () => {
+    expect(formatter(new Date('2020-03-03'))).toBe('Tue Mar 3');
+    expect(formatter(new Date('2020-03-15'))).toBe('Sun Mar 15');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/index.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/index.test.ts
new file mode 100644
index 0000000..d1639ab
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/index.test.ts
@@ -0,0 +1,31 @@
+import {
+  createD3TimeFormatter,
+  createMultiFormatter,
+  formatTime,
+  getTimeFormatter,
+  getTimeFormatterRegistry,
+  LOCAL_PREFIX,
+  PREVIEW_TIME,
+  smartDateFormatter,
+  smartDateVerboseFormatter,
+  TimeFormats,
+  TimeFormatter,
+} from '@superset-ui/core/src/time-format';
+
+describe('index', () => {
+  it('exports modules', () => {
+    [
+      createD3TimeFormatter,
+      createMultiFormatter,
+      formatTime,
+      getTimeFormatter,
+      getTimeFormatterRegistry,
+      LOCAL_PREFIX,
+      PREVIEW_TIME,
+      smartDateFormatter,
+      smartDateVerboseFormatter,
+      TimeFormats,
+      TimeFormatter,
+    ].forEach(x => expect(x).toBeDefined());
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/utils/createTime.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/utils/createTime.test.ts
new file mode 100644
index 0000000..802a8de
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/utils/createTime.test.ts
@@ -0,0 +1,37 @@
+import createTime from '@superset-ui/core/src/time-format/utils/createTime';
+
+describe('createTime(mode, year, month, date, hours, minutes, seconds, milliseconds)', () => {
+  describe('mode', () => {
+    it('creates UTC time when mode==="utc"', () => {
+      const time = createTime('utc', 2020, 5, 15);
+      expect(time.getUTCFullYear()).toEqual(2020);
+      expect(time.getUTCMonth()).toEqual(5);
+      expect(time.getUTCDate()).toEqual(15);
+    });
+    it('creates local time when mode==="local"', () => {
+      const time = createTime('local', 2020, 5, 15);
+      expect(time.getFullYear()).toEqual(2020);
+      expect(time.getMonth()).toEqual(5);
+      expect(time.getDate()).toEqual(15);
+    });
+  });
+  it('sets all the date parts', () => {
+    const time = createTime('local', 2020, 5, 15, 1, 2, 3, 4);
+    expect(time.getFullYear()).toEqual(2020);
+    expect(time.getMonth()).toEqual(5);
+    expect(time.getDate()).toEqual(15);
+    expect(time.getHours()).toEqual(1);
+    expect(time.getMinutes()).toEqual(2);
+    expect(time.getSeconds()).toEqual(3);
+    expect(time.getMilliseconds()).toEqual(4);
+  });
+  it('sets default values for date parts', () => {
+    const time = createTime('utc', 2020);
+    expect(time.getUTCMonth()).toEqual(0);
+    expect(time.getUTCDate()).toEqual(1);
+    expect(time.getUTCHours()).toEqual(0);
+    expect(time.getUTCMinutes()).toEqual(0);
+    expect(time.getUTCSeconds()).toEqual(0);
+    expect(time.getUTCMilliseconds()).toEqual(0);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/utils/createTimeRangeFromGranularity.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/utils/createTimeRangeFromGranularity.test.ts
new file mode 100644
index 0000000..e9923f8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/utils/createTimeRangeFromGranularity.test.ts
@@ -0,0 +1,170 @@
+import createTimeRangeFromGranularity from '@superset-ui/core/src/time-format/utils/createTimeRangeFromGranularity';
+import {
+  TimeGranularity,
+  getTimeRangeFormatter,
+  LOCAL_PREFIX,
+} from '@superset-ui/core/src/time-format';
+
+const formatString = '%Y-%m-%d %H:%M:%S.%L';
+const formatUTCTimeRange = getTimeRangeFormatter(formatString);
+const formatLocalTimeRange = getTimeRangeFormatter(`${LOCAL_PREFIX}${formatString}`);
+
+function testUTC(
+  granularity: TimeGranularity,
+  year: number,
+  month = 0,
+  date = 1,
+  hours = 0,
+  minutes = 0,
+  seconds = 0,
+) {
+  return formatUTCTimeRange(
+    createTimeRangeFromGranularity(
+      new Date(Date.UTC(year, month, date, hours, minutes, seconds)),
+      granularity,
+    ),
+  );
+}
+
+function testLocal(
+  granularity: TimeGranularity,
+  year: number,
+  month = 0,
+  date = 1,
+  hours = 0,
+  minutes = 0,
+  seconds = 0,
+) {
+  return formatLocalTimeRange(
+    createTimeRangeFromGranularity(
+      new Date(year, month, date, hours, minutes, seconds),
+      granularity,
+      true,
+    ),
+  );
+}
+
+describe('createTimeRangeFromGranularity(time, granularity, useLocalTime)', () => {
+  describe('UTC time', () => {
+    it('creates time range according to specified granularity', () => {
+      expect(testUTC(TimeGranularity.DATE, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.SECOND, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:00:00.999',
+      );
+      expect(testUTC(TimeGranularity.MINUTE, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:00:59.999',
+      );
+      expect(testUTC(TimeGranularity.FIVE_MINUTES, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:04:59.999',
+      );
+      expect(testUTC(TimeGranularity.TEN_MINUTES, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:09:59.999',
+      );
+      expect(testUTC(TimeGranularity.FIFTEEN_MINUTES, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:14:59.999',
+      );
+      expect(testUTC(TimeGranularity.HALF_HOUR, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:29:59.999',
+      );
+      expect(testUTC(TimeGranularity.HOUR, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.DAY, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.WEEK, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-21 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.WEEK_STARTING_SUNDAY, 2020, 4, 17)).toEqual(
+        '2020-05-17 00:00:00.000 — 2020-05-23 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.WEEK_STARTING_MONDAY, 2020, 4, 18)).toEqual(
+        '2020-05-18 00:00:00.000 — 2020-05-24 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.WEEK_ENDING_SATURDAY, 2020, 4, 16)).toEqual(
+        '2020-05-10 00:00:00.000 — 2020-05-16 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.WEEK_ENDING_SUNDAY, 2020, 4, 17)).toEqual(
+        '2020-05-11 00:00:00.000 — 2020-05-17 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.MONTH, 2020, 4, 1)).toEqual(
+        '2020-05-01 00:00:00.000 — 2020-05-31 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.MONTH, 2020, 11, 1)).toEqual(
+        '2020-12-01 00:00:00.000 — 2020-12-31 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.QUARTER, 2020, 3, 1)).toEqual(
+        '2020-04-01 00:00:00.000 — 2020-06-30 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.QUARTER, 2020, 9, 1)).toEqual(
+        '2020-10-01 00:00:00.000 — 2020-12-31 23:59:59.999',
+      );
+      expect(testUTC(TimeGranularity.YEAR, 2020, 0, 1)).toEqual(
+        '2020-01-01 00:00:00.000 — 2020-12-31 23:59:59.999',
+      );
+    });
+  });
+  describe('Local time', () => {
+    it('creates time range according to specified granularity', () => {
+      expect(testLocal(TimeGranularity.DATE, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.SECOND, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:00:00.999',
+      );
+      expect(testLocal(TimeGranularity.MINUTE, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:00:59.999',
+      );
+      expect(testLocal(TimeGranularity.FIVE_MINUTES, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:04:59.999',
+      );
+      expect(testLocal(TimeGranularity.TEN_MINUTES, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:09:59.999',
+      );
+      expect(testLocal(TimeGranularity.FIFTEEN_MINUTES, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:14:59.999',
+      );
+      expect(testLocal(TimeGranularity.HALF_HOUR, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:29:59.999',
+      );
+      expect(testLocal(TimeGranularity.HOUR, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 00:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.DAY, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-15 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.WEEK, 2020, 4, 15)).toEqual(
+        '2020-05-15 00:00:00.000 — 2020-05-21 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.WEEK_STARTING_SUNDAY, 2020, 4, 17)).toEqual(
+        '2020-05-17 00:00:00.000 — 2020-05-23 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.WEEK_STARTING_MONDAY, 2020, 4, 18)).toEqual(
+        '2020-05-18 00:00:00.000 — 2020-05-24 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.WEEK_ENDING_SATURDAY, 2020, 4, 16)).toEqual(
+        '2020-05-10 00:00:00.000 — 2020-05-16 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.WEEK_ENDING_SUNDAY, 2020, 4, 17)).toEqual(
+        '2020-05-11 00:00:00.000 — 2020-05-17 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.MONTH, 2020, 4, 1)).toEqual(
+        '2020-05-01 00:00:00.000 — 2020-05-31 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.MONTH, 2020, 11, 1)).toEqual(
+        '2020-12-01 00:00:00.000 — 2020-12-31 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.QUARTER, 2020, 3, 1)).toEqual(
+        '2020-04-01 00:00:00.000 — 2020-06-30 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.QUARTER, 2020, 9, 1)).toEqual(
+        '2020-10-01 00:00:00.000 — 2020-12-31 23:59:59.999',
+      );
+      expect(testLocal(TimeGranularity.YEAR, 2020, 0, 1)).toEqual(
+        '2020-01-01 00:00:00.000 — 2020-12-31 23:59:59.999',
+      );
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/time-format/utils/d3Time.test.ts b/superset-frontend/packages/superset-ui-core/test/time-format/utils/d3Time.test.ts
new file mode 100644
index 0000000..4f41131
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/time-format/utils/d3Time.test.ts
@@ -0,0 +1,92 @@
+import { utcUtils, localTimeUtils } from '@superset-ui/core/src/time-format/utils/d3Time';
+
+describe('utils', () => {
+  describe('utcUtils', () => {
+    it('has isNotFirstDayOfWeekStartOnSunday', () => {
+      const date = new Date(Date.UTC(2018, 10, 19));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnSunday(date)).toBeTruthy();
+      const date2 = new Date(Date.UTC(2018, 10, 18));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnSunday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnMonday', () => {
+      const date = new Date(Date.UTC(2018, 10, 20));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnMonday(date)).toBeTruthy();
+      const date2 = new Date(Date.UTC(2018, 10, 19));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnMonday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnTuesday', () => {
+      const date = new Date(Date.UTC(2018, 10, 21));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnTuesday(date)).toBeTruthy();
+      const date2 = new Date(Date.UTC(2018, 10, 20));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnTuesday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnWednesday', () => {
+      const date = new Date(Date.UTC(2018, 10, 22));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnWednesday(date)).toBeTruthy();
+      const date2 = new Date(Date.UTC(2018, 10, 21));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnWednesday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnThursday', () => {
+      const date = new Date(Date.UTC(2018, 10, 23));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnThursday(date)).toBeTruthy();
+      const date2 = new Date(Date.UTC(2018, 10, 22));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnThursday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnFriday', () => {
+      const date = new Date(Date.UTC(2018, 10, 24));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnFriday(date)).toBeTruthy();
+      const date2 = new Date(Date.UTC(2018, 10, 23));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnFriday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnSaturday', () => {
+      const date = new Date(Date.UTC(2018, 10, 25));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnSaturday(date)).toBeTruthy();
+      const date2 = new Date(Date.UTC(2018, 10, 24));
+      expect(utcUtils.isNotFirstDayOfWeekStartOnSaturday(date2)).toBeFalsy();
+    });
+  });
+  describe('localTimeUtils', () => {
+    it('has isNotFirstDayOfWeekStartOnSunday', () => {
+      const date = new Date(2018, 10, 19);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnSunday(date)).toBeTruthy();
+      const date2 = new Date(2018, 10, 18);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnSunday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnMonday', () => {
+      const date = new Date(2018, 10, 20);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnMonday(date)).toBeTruthy();
+      const date2 = new Date(2018, 10, 19);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnMonday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnTuesday', () => {
+      const date = new Date(2018, 10, 21);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnTuesday(date)).toBeTruthy();
+      const date2 = new Date(2018, 10, 20);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnTuesday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnWednesday', () => {
+      const date = new Date(2018, 10, 22);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnWednesday(date)).toBeTruthy();
+      const date2 = new Date(2018, 10, 21);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnWednesday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnThursday', () => {
+      const date = new Date(2018, 10, 23);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnThursday(date)).toBeTruthy();
+      const date2 = new Date(2018, 10, 22);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnThursday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnFriday', () => {
+      const date = new Date(2018, 10, 24);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnFriday(date)).toBeTruthy();
+      const date2 = new Date(2018, 10, 23);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnFriday(date2)).toBeFalsy();
+    });
+    it('has isNotFirstDayOfWeekStartOnSaturday', () => {
+      const date = new Date(2018, 10, 25);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnSaturday(date)).toBeTruthy();
+      const date2 = new Date(2018, 10, 24);
+      expect(localTimeUtils.isNotFirstDayOfWeekStartOnSaturday(date2)).toBeFalsy();
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/translation/Translator.test.ts b/superset-frontend/packages/superset-ui-core/test/translation/Translator.test.ts
new file mode 100644
index 0000000..ce58530
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/translation/Translator.test.ts
@@ -0,0 +1,153 @@
+import Translator from '@superset-ui/core/src/translation/Translator';
+import {
+  configure,
+  t,
+  tn,
+  addLocaleData,
+  addTranslation,
+  addTranslations,
+} from '@superset-ui/core/src/translation/TranslatorSingleton';
+import languagePackZh from './languagePacks/zh';
+import languagePackEn from './languagePacks/en';
+
+configure({
+  languagePack: languagePackEn,
+});
+
+describe('Translator', () => {
+  describe('new Translator(config)', () => {
+    it('initializes when config is not specified', () => {
+      expect(new Translator()).toBeInstanceOf(Translator);
+    });
+    it('initializes when config is an empty object', () => {
+      expect(new Translator({})).toBeInstanceOf(Translator);
+    });
+    it('initializes when config is specified', () => {
+      expect(
+        new Translator({
+          languagePack: languagePackZh,
+        }),
+      ).toBeInstanceOf(Translator);
+    });
+  });
+  describe('.translate(input, ...args)', () => {
+    const translator = new Translator({
+      languagePack: languagePackZh,
+    });
+    it('returns original text for unknown text', () => {
+      expect(translator.translate('abc')).toEqual('abc');
+    });
+    it('translates simple text', () => {
+      expect(translator.translate('second')).toEqual('秒');
+    });
+    it('translates template text with an argument', () => {
+      expect(translator.translate('Copy of %s', 1)).toEqual('1 的副本');
+      expect(translator.translate('Copy of %s', 2)).toEqual('2 的副本');
+    });
+    it('translates template text with multiple arguments', () => {
+      expect(translator.translate('test %d %d', 1, 2)).toEqual('test 1 2');
+    });
+  });
+  describe('.translateWithNumber(singular, plural, num, ...args)', () => {
+    const translator = new Translator({
+      languagePack: languagePackZh,
+    });
+    it('returns original text for unknown text', () => {
+      expect(translator.translateWithNumber('fish', 'fishes', 1)).toEqual('fish');
+    });
+    it('uses 0 as default value', () => {
+      expect(translator.translateWithNumber('box', 'boxes')).toEqual('boxes');
+    });
+    it('translates simple text', () => {
+      expect(translator.translateWithNumber('second', 'seconds', 1)).toEqual('秒');
+    });
+    it('translates template text with an argument', () => {
+      expect(translator.translateWithNumber('Copy of %s', 'Copies of %s', 12, 12)).toEqual(
+        '12 的副本',
+      );
+    });
+    it('translates template text with multiple arguments', () => {
+      expect(translator.translateWithNumber('%d glass %s', '%d glasses %s', 3, 3, 'abc')).toEqual(
+        '3 glasses abc',
+      );
+    });
+  });
+  describe('.translateWithNumber(key, num, ...args)', () => {
+    const translator = new Translator({
+      languagePack: languagePackEn,
+    });
+    it('translates template text with an argument', () => {
+      expect(translator.translateWithNumber('%s copies', 1)).toEqual('1 copy');
+      expect(translator.translateWithNumber('%s copies', 2)).toEqual('2 copies');
+    });
+  });
+
+  // Extending language pack
+  describe('.addTranslation(...)', () => {
+    it('can add new translation', () => {
+      addTranslation('haha', ['Hahaha']);
+      expect(t('haha')).toEqual('Hahaha');
+    });
+  });
+
+  describe('.addTranslations(...)', () => {
+    it('can add new translations', () => {
+      addTranslations({
+        foo: ['bar', '%s bars'],
+        bar: ['foo'],
+      });
+      // previous translation still exists
+      expect(t('haha')).toEqual('Hahaha');
+      // new translations work as expected
+      expect(tn('foo', 1)).toEqual('bar');
+      expect(tn('foo', 2)).toEqual('2 bars');
+      expect(tn('bar', 2)).toEqual('bar');
+    });
+    it('throw warning on invalid arguments', () => {
+      expect(() => addTranslations(undefined as never)).toThrow('Invalid translations');
+      expect(tn('bar', '2 foo', 2)).toEqual('2 foo');
+    });
+    it('throw warning on duplicates', () => {
+      expect(() => {
+        addTranslations({
+          haha: ['this is duplciate'],
+        });
+      }).toThrow('Duplicate translation key "haha"');
+      expect(t('haha')).toEqual('Hahaha');
+    });
+  });
+
+  describe('.addLocaleData(...)', () => {
+    it('can add new translations for language', () => {
+      addLocaleData({
+        en: {
+          yes: ['ok'],
+        },
+      });
+      expect(t('yes')).toEqual('ok');
+    });
+    it('throw on unknown locale', () => {
+      expect(() => {
+        addLocaleData({
+          zh: {
+            haha: ['yes'],
+          },
+        });
+      }).toThrow('Invalid locale data');
+    });
+    it('missing locale falls back to English', () => {
+      configure({
+        languagePack: languagePackZh,
+      });
+      // expect and error because zh is not current locale
+      expect(() => {
+        addLocaleData({
+          en: {
+            yes: ['OK'],
+          },
+        });
+      }).not.toThrow();
+      expect(t('yes')).toEqual('OK');
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/translation/TranslatorSingleton.test.ts b/superset-frontend/packages/superset-ui-core/test/translation/TranslatorSingleton.test.ts
new file mode 100644
index 0000000..8132780
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/translation/TranslatorSingleton.test.ts
@@ -0,0 +1,51 @@
+/* eslint no-console: 0 */
+import mockConsole from 'jest-mock-console';
+import Translator from '@superset-ui/core/src/translation/Translator';
+import { configure, t, tn } from '@superset-ui/core/src/translation/TranslatorSingleton';
+
+import languagePackEn from './languagePacks/en';
+import languagePackZh from './languagePacks/zh';
+
+describe('TranslatorSingleton', () => {
+  describe('before configure()', () => {
+    describe('t()', () => {
+      it('returns untranslated input and issues a warning', () => {
+        const restoreConsole = mockConsole();
+        expect(t('second')).toEqual('second');
+        expect(console.warn).toHaveBeenCalled();
+        restoreConsole();
+      });
+    });
+    describe('tn()', () => {
+      it('returns untranslated input and issues a warning', () => {
+        const restoreConsole = mockConsole();
+        expect(tn('ox', 'oxen', 2)).toEqual('oxen');
+        expect(console.warn).toHaveBeenCalled();
+        restoreConsole();
+      });
+    });
+  });
+  describe('after configure()', () => {
+    describe('configure()', () => {
+      it('creates and returns a translator', () => {
+        expect(configure()).toBeInstanceOf(Translator);
+      });
+    });
+    describe('t()', () => {
+      it('after configure() returns translated text', () => {
+        configure({
+          languagePack: languagePackZh,
+        });
+        expect(t('second')).toEqual('秒');
+      });
+    });
+    describe('tn()', () => {
+      it('after configure() returns translated text with singular/plural', () => {
+        configure({
+          languagePack: languagePackEn,
+        });
+        expect(tn('ox', 'oxen', 2)).toEqual('oxen');
+      });
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/translation/index.test.ts b/superset-frontend/packages/superset-ui-core/test/translation/index.test.ts
new file mode 100644
index 0000000..bc90e0e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/translation/index.test.ts
@@ -0,0 +1,16 @@
+import { configure, t, tn } from '@superset-ui/core/src/translation';
+
+describe('index', () => {
+  it('exports configure()', () => {
+    expect(configure).toBeDefined();
+    expect(configure).toBeInstanceOf(Function);
+  });
+  it('exports t()', () => {
+    expect(t).toBeDefined();
+    expect(t).toBeInstanceOf(Function);
+  });
+  it('exports tn()', () => {
+    expect(tn).toBeDefined();
+    expect(tn).toBeInstanceOf(Function);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/translation/languagePacks/en.ts b/superset-frontend/packages/superset-ui-core/test/translation/languagePacks/en.ts
new file mode 100644
index 0000000..668ea4b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/translation/languagePacks/en.ts
@@ -0,0 +1,18 @@
+import { LanguagePack } from '@superset-ui/core/src/translation';
+
+const languagePack: LanguagePack = {
+  domain: 'superset',
+  locale_data: {
+    superset: {
+      '': {
+        domain: 'superset',
+        plural_forms: 'nplurals=2; plural=(n != 1)',
+        lang: 'en',
+      },
+      second: [''],
+      '%s copies': ['%s copy', '%s copies'],
+    },
+  },
+};
+
+export default languagePack;
diff --git a/superset-frontend/packages/superset-ui-core/test/translation/languagePacks/zh.ts b/superset-frontend/packages/superset-ui-core/test/translation/languagePacks/zh.ts
new file mode 100644
index 0000000..4a3ba79
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/translation/languagePacks/zh.ts
@@ -0,0 +1,18 @@
+import { LanguagePack } from '@superset-ui/core/src/translation';
+
+const languagePack: LanguagePack = {
+  domain: 'superset',
+  locale_data: {
+    superset: {
+      '': {
+        domain: 'superset',
+        plural_forms: 'nplurals=1; plural=0;',
+        lang: 'zh',
+      },
+      second: ['秒'],
+      'Copy of %s': ['%s 的副本'],
+    },
+  },
+};
+
+export default languagePack;
diff --git a/superset-frontend/packages/superset-ui-core/test/tsconfig.json b/superset-frontend/packages/superset-ui-core/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts b/superset-frontend/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts
new file mode 100644
index 0000000..23cd961
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts
@@ -0,0 +1,33 @@
+import { convertKeysToCamelCase } from '@superset-ui/core/src';
+
+describe('convertKeysToCamelCase(object)', () => {
+  it('returns undefined for undefined input', () => {
+    expect(convertKeysToCamelCase(undefined)).toBeUndefined();
+  });
+  it('returns null for null input', () => {
+    expect(convertKeysToCamelCase(null)).toBeNull();
+  });
+  it('returns a new object that has all keys in camelCase', () => {
+    const input = {
+      is_happy: true,
+      'is-angry': false,
+      isHungry: false,
+    };
+    expect(convertKeysToCamelCase(input)).toEqual({
+      isHappy: true,
+      isAngry: false,
+      isHungry: false,
+    });
+  });
+  it('throws error if input is not a plain object', () => {
+    expect(() => {
+      convertKeysToCamelCase({});
+    }).not.toThrow();
+    expect(() => {
+      convertKeysToCamelCase('');
+    }).toThrow();
+    expect(() => {
+      convertKeysToCamelCase(new Map());
+    }).toThrow();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/utils/ensureIsArray.test.ts b/superset-frontend/packages/superset-ui-core/test/utils/ensureIsArray.test.ts
new file mode 100644
index 0000000..022e970
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/utils/ensureIsArray.test.ts
@@ -0,0 +1,30 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ensureIsArray } from '../../src';
+
+describe('ensureIsArray', () => {
+  it('handle inputs correctly', () => {
+    expect(ensureIsArray(undefined)).toEqual([]);
+    expect(ensureIsArray(null)).toEqual([]);
+    expect(ensureIsArray([])).toEqual([]);
+    expect(ensureIsArray('my_metric')).toEqual(['my_metric']);
+    expect(ensureIsArray(['my_metric'])).toEqual(['my_metric']);
+    expect(ensureIsArray(['my_metric_1', 'my_metric_2'])).toEqual(['my_metric_1', 'my_metric_2']);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/utils/isDefined.test.ts b/superset-frontend/packages/superset-ui-core/test/utils/isDefined.test.ts
new file mode 100644
index 0000000..a807651
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/utils/isDefined.test.ts
@@ -0,0 +1,20 @@
+import { isDefined } from '@superset-ui/core/src';
+
+describe('isDefined(value)', () => {
+  it('returns true if value is not null and not undefined', () => {
+    expect(isDefined(0)).toBe(true);
+    expect(isDefined(1)).toBe(true);
+    expect(isDefined('')).toBe(true);
+    expect(isDefined('a')).toBe(true);
+    expect(isDefined([])).toBe(true);
+    expect(isDefined([0])).toBe(true);
+    expect(isDefined([1])).toBe(true);
+    expect(isDefined({})).toBe(true);
+    expect(isDefined({ a: 1 })).toBe(true);
+    expect(isDefined([{}])).toBe(true);
+  });
+  it('returns false otherwise', () => {
+    expect(isDefined(null)).toBe(false);
+    expect(isDefined(undefined)).toBe(false);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/utils/isRequired.test.ts b/superset-frontend/packages/superset-ui-core/test/utils/isRequired.test.ts
new file mode 100644
index 0000000..13b5479
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/utils/isRequired.test.ts
@@ -0,0 +1,7 @@
+import { isRequired } from '@superset-ui/core/src';
+
+describe('isRequired(field)', () => {
+  it('should throw error with the given field in the message', () => {
+    expect(() => isRequired('myField')).toThrow(Error);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/utils/logging.test.ts b/superset-frontend/packages/superset-ui-core/test/utils/logging.test.ts
new file mode 100644
index 0000000..dcca3a6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/utils/logging.test.ts
@@ -0,0 +1,65 @@
+/* eslint-disable @typescript-eslint/no-var-requires */
+/* eslint-disable global-require */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+describe('logging', () => {
+  beforeEach(() => {
+    jest.resetModules();
+  });
+  it('should pipe to `console` methods', () => {
+    const { logging } = require('@superset-ui/core/src');
+
+    expect(() => {
+      logging.debug();
+      logging.log();
+      logging.info();
+    }).not.toThrow();
+    expect(() => {
+      logging.warn('warn');
+    }).toThrow('warn');
+    expect(() => {
+      logging.error('error');
+    }).toThrow('error');
+    expect(() => {
+      logging.trace();
+    }).toThrow('Trace:');
+  });
+  it('should use noop functions when console unavailable', () => {
+    const { console } = window;
+    Object.assign(window, { console: undefined });
+    const { logging } = require('@superset-ui/core/src');
+
+    afterAll(() => {
+      Object.assign(window, { console });
+    });
+
+    expect(() => {
+      logging.debug();
+      logging.log();
+      logging.info();
+      logging.warn('warn');
+      logging.error('error');
+      logging.trace();
+      logging.table([
+        [1, 2],
+        [3, 4],
+      ]);
+    }).not.toThrow();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/utils/makeSingleton.test.ts b/superset-frontend/packages/superset-ui-core/test/utils/makeSingleton.test.ts
new file mode 100644
index 0000000..7b69cb8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/utils/makeSingleton.test.ts
@@ -0,0 +1,40 @@
+import { makeSingleton } from '@superset-ui/core/src';
+
+describe('makeSingleton()', () => {
+  class Dog {
+    name: string;
+
+    isSitting?: boolean;
+
+    constructor(name?: string) {
+      this.name = name || 'Pluto';
+    }
+
+    sit() {
+      this.isSitting = true;
+    }
+  }
+  describe('makeSingleton(BaseClass)', () => {
+    const getInstance = makeSingleton(Dog);
+
+    it('returns a function for getting singleton instance of a given base class', () => {
+      expect(typeof getInstance).toBe('function');
+      expect(getInstance()).toBeInstanceOf(Dog);
+    });
+    it('returned function returns same instance across all calls', () => {
+      expect(getInstance()).toBe(getInstance());
+    });
+  });
+  describe('makeSingleton(BaseClass, ...args)', () => {
+    const getInstance = makeSingleton(Dog, 'Doug');
+
+    it('returns a function for getting singleton instance of a given base class constructed with the given arguments', () => {
+      expect(typeof getInstance).toBe('function');
+      expect(getInstance()).toBeInstanceOf(Dog);
+      expect(getInstance().name).toBe('Doug');
+    });
+    it('returned function returns same instance across all calls', () => {
+      expect(getInstance()).toBe(getInstance());
+    });
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/utils/promiseTimeout.test.ts b/superset-frontend/packages/superset-ui-core/test/utils/promiseTimeout.test.ts
new file mode 100644
index 0000000..cfdb972
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/utils/promiseTimeout.test.ts
@@ -0,0 +1,28 @@
+import { promiseTimeout } from '@superset-ui/core/src';
+
+describe('promiseTimeout(func, delay)', () => {
+  beforeEach(() => {
+    jest.useFakeTimers();
+  });
+  afterEach(() => {
+    jest.useRealTimers();
+  });
+
+  it('resolves after delay', async () => {
+    const promise = promiseTimeout(() => 'abcd', 10);
+    jest.advanceTimersByTime(10);
+    const result = await promise;
+    expect(result).toEqual('abcd');
+    expect(result).toHaveLength(4);
+  });
+
+  it('uses the timer', async () => {
+    const promise = Promise.race([
+      promiseTimeout(() => 'abc', 10),
+      promiseTimeout(() => 'def', 20),
+    ]);
+    jest.advanceTimersByTime(10);
+    const result = await promise;
+    expect(result).toEqual('abc');
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/utils/random.test.ts b/superset-frontend/packages/superset-ui-core/test/utils/random.test.ts
new file mode 100644
index 0000000..151d6d0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/utils/random.test.ts
@@ -0,0 +1,32 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import { seed, seedRandom } from '../../src';
+
+describe('random', () => {
+  it('seeded random should return the same value', () => {
+    expect(seedRandom()).toEqual(0.7237953289342797);
+  });
+
+  it('should allow update seed', () => {
+    const a = seed('abc');
+    const b = seed('abc');
+    expect(a()).toEqual(b());
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/utils/removeDuplicates.test.ts b/superset-frontend/packages/superset-ui-core/test/utils/removeDuplicates.test.ts
new file mode 100644
index 0000000..8b90030
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/utils/removeDuplicates.test.ts
@@ -0,0 +1,31 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { removeDuplicates } from '@superset-ui/core/src';
+
+describe('removeDuplicates([...])', () => {
+  it('should remove duplicates from a simple list', () => {
+    expect(removeDuplicates([1, 2, 4, 1, 1, 5, 2])).toEqual([1, 2, 4, 5]);
+  });
+  it('should remove duplicates by key getter', () => {
+    expect(removeDuplicates([{ a: 1 }, { a: 1 }, { b: 2 }], x => x.a)).toEqual([
+      { a: 1 },
+      { b: 2 },
+    ]);
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/validator/legacyValidateInteger.test.ts b/superset-frontend/packages/superset-ui-core/test/validator/legacyValidateInteger.test.ts
new file mode 100644
index 0000000..2543990
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/validator/legacyValidateInteger.test.ts
@@ -0,0 +1,21 @@
+import { legacyValidateInteger } from '@superset-ui/core/src';
+import './setup';
+
+describe('legacyValidateInteger()', () => {
+  it('returns the warning message if invalid', () => {
+    expect(legacyValidateInteger(10.1)).toBeTruthy();
+    expect(legacyValidateInteger('abc')).toBeTruthy();
+    expect(legacyValidateInteger(Infinity)).toBeTruthy();
+  });
+  it('returns false if the input is valid', () => {
+    // superset seems to operate on this incorrect behavior at the moment
+    expect(legacyValidateInteger(NaN)).toBeFalsy();
+    expect(legacyValidateInteger(undefined)).toBeFalsy();
+    expect(legacyValidateInteger(null)).toBeFalsy();
+    expect(legacyValidateInteger('')).toBeFalsy();
+
+    expect(legacyValidateInteger(0)).toBeFalsy();
+    expect(legacyValidateInteger(10)).toBeFalsy();
+    expect(legacyValidateInteger('10')).toBeFalsy();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/validator/legacyValidateNumber.test.ts b/superset-frontend/packages/superset-ui-core/test/validator/legacyValidateNumber.test.ts
new file mode 100644
index 0000000..7772a14
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/validator/legacyValidateNumber.test.ts
@@ -0,0 +1,21 @@
+import { legacyValidateNumber } from '@superset-ui/core/src';
+import './setup';
+
+describe('legacyValidateNumber()', () => {
+  it('returns the warning message if invalid', () => {
+    expect(legacyValidateNumber('abc')).toBeTruthy();
+  });
+  it('returns false if the input is valid', () => {
+    // superset seems to operate on this incorrect behavior at the moment
+    expect(legacyValidateNumber(NaN)).toBeFalsy();
+    expect(legacyValidateNumber(Infinity)).toBeFalsy();
+    expect(legacyValidateNumber(undefined)).toBeFalsy();
+    expect(legacyValidateNumber(null)).toBeFalsy();
+    expect(legacyValidateNumber('')).toBeFalsy();
+
+    expect(legacyValidateNumber(0)).toBeFalsy();
+    expect(legacyValidateNumber(10.1)).toBeFalsy();
+    expect(legacyValidateNumber(10)).toBeFalsy();
+    expect(legacyValidateNumber('10')).toBeFalsy();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/validator/setup.ts b/superset-frontend/packages/superset-ui-core/test/validator/setup.ts
new file mode 100644
index 0000000..d3ee361
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/validator/setup.ts
@@ -0,0 +1,3 @@
+import { configure as configureTranslation } from '@superset-ui/core/src';
+
+configureTranslation();
diff --git a/superset-frontend/packages/superset-ui-core/test/validator/validateInteger.test.ts b/superset-frontend/packages/superset-ui-core/test/validator/validateInteger.test.ts
new file mode 100644
index 0000000..4de0d03
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/validator/validateInteger.test.ts
@@ -0,0 +1,19 @@
+import { validateInteger } from '@superset-ui/core/src';
+import './setup';
+
+describe('validateInteger()', () => {
+  it('returns the warning message if invalid', () => {
+    expect(validateInteger(10.1)).toBeTruthy();
+    expect(validateInteger(NaN)).toBeTruthy();
+    expect(validateInteger(Infinity)).toBeTruthy();
+    expect(validateInteger(undefined)).toBeTruthy();
+    expect(validateInteger(null)).toBeTruthy();
+    expect(validateInteger('abc')).toBeTruthy();
+    expect(validateInteger('')).toBeTruthy();
+  });
+  it('returns false if the input is valid', () => {
+    expect(validateInteger(0)).toBeFalsy();
+    expect(validateInteger(10)).toBeFalsy();
+    expect(validateInteger('10')).toBeFalsy();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/validator/validateNonEmpty.test.ts b/superset-frontend/packages/superset-ui-core/test/validator/validateNonEmpty.test.ts
new file mode 100644
index 0000000..be342d3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/validator/validateNonEmpty.test.ts
@@ -0,0 +1,16 @@
+import { validateNonEmpty } from '@superset-ui/core/src';
+import './setup';
+
+describe('validateNonEmpty()', () => {
+  it('returns the warning message if invalid', () => {
+    expect(validateNonEmpty([])).toBeTruthy();
+    expect(validateNonEmpty(undefined)).toBeTruthy();
+    expect(validateNonEmpty(null)).toBeTruthy();
+    expect(validateNonEmpty('')).toBeTruthy();
+  });
+  it('returns false if the input is valid', () => {
+    expect(validateNonEmpty(0)).toBeFalsy();
+    expect(validateNonEmpty(10)).toBeFalsy();
+    expect(validateNonEmpty('abc')).toBeFalsy();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/test/validator/validateNumber.test.ts b/superset-frontend/packages/superset-ui-core/test/validator/validateNumber.test.ts
new file mode 100644
index 0000000..9b31d7350
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/validator/validateNumber.test.ts
@@ -0,0 +1,19 @@
+import { validateNumber } from '@superset-ui/core/src';
+import './setup';
+
+describe('validateNumber()', () => {
+  it('returns the warning message if invalid', () => {
+    expect(validateNumber(NaN)).toBeTruthy();
+    expect(validateNumber(Infinity)).toBeTruthy();
+    expect(validateNumber(undefined)).toBeTruthy();
+    expect(validateNumber(null)).toBeTruthy();
+    expect(validateNumber('abc')).toBeTruthy();
+    expect(validateNumber('')).toBeTruthy();
+  });
+  it('returns false if the input is valid', () => {
+    expect(validateNumber(0)).toBeFalsy();
+    expect(validateNumber(10.1)).toBeFalsy();
+    expect(validateNumber(10)).toBeFalsy();
+    expect(validateNumber('10')).toBeFalsy();
+  });
+});
diff --git a/superset-frontend/packages/superset-ui-core/tsconfig.json b/superset-frontend/packages/superset-ui-core/tsconfig.json
new file mode 100644
index 0000000..b2c7280
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/tsconfig.json
@@ -0,0 +1,18 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": []
+}
\ No newline at end of file
diff --git a/superset-frontend/packages/superset-ui-core/types/external.d.ts b/superset-frontend/packages/superset-ui-core/types/external.d.ts
new file mode 100644
index 0000000..31b0250
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/types/external.d.ts
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/**
+ * Stub for the untypped jed module.
+ */
+declare module 'jed';
diff --git a/superset-frontend/packages/superset-ui-core/types/resize-observer-polyfill.d.ts b/superset-frontend/packages/superset-ui-core/types/resize-observer-polyfill.d.ts
new file mode 100644
index 0000000..c1ae579
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/types/resize-observer-polyfill.d.ts
@@ -0,0 +1,4 @@
+declare module 'resize-observer-polyfill' {
+  // eslint-disable-next-line import/prefer-default-export
+  export function triggerResizeObserver(entries?: ResizeObserverEntry[]): void;
+}
diff --git a/superset-frontend/packages/superset-ui-demo/.eslintrc b/superset-frontend/packages/superset-ui-demo/.eslintrc
new file mode 100644
index 0000000..d445a4e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/.eslintrc
@@ -0,0 +1,5 @@
+{
+  "parserOptions": {
+    "project": "./tsconfig.json"
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-demo/.storybook/main.js b/superset-frontend/packages/superset-ui-demo/.storybook/main.js
new file mode 100644
index 0000000..82807f1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/.storybook/main.js
@@ -0,0 +1,71 @@
+const path = require('path');
+const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
+const { lstatSync, readdirSync } = require('fs');
+
+// find @superset-ui packages
+const basePath = path.resolve(__dirname, '../../../node_modules/@superset-ui');
+const packages = readdirSync(basePath).filter(name => {
+  const stat = lstatSync(path.join(basePath, name));
+  return stat.isSymbolicLink();
+});
+
+const PLUGIN_PACKAGES_PATH_REGEXP = new RegExp(
+  `${path.resolve(__dirname, '../../../plugins/(legacy-)*(plugin|preset)-')}.+/src`,
+);
+
+module.exports = {
+  addons: [
+    '@storybook/preset-typescript',
+    '@storybook/addon-knobs/register',
+    'storybook-addon-jsx/register',
+    '@storybook/addon-actions/register',
+    '@storybook/addon-links/register',
+  ],
+  stories: ['../storybook/stories/**/*Stories.[tj]sx'],
+  webpackFinal: config => {
+    // Make sure babel is applied to the package src
+    // These are excluded by the default rule
+    // because they reside in node_modules
+    config.module.rules.push({
+      include: PLUGIN_PACKAGES_PATH_REGEXP,
+      exclude: /node_modules/,
+      test: /\.jsx?$/,
+      use: config.module.rules[0].use,
+    });
+
+    config.module.rules.push({
+      test: /\.tsx?$/,
+      use: [
+        {
+          loader: require.resolve('ts-loader'),
+          options: {
+            transpileOnly: true,
+          },
+        },
+      ],
+    });
+
+    config.plugins.unshift(new ForkTsCheckerWebpackPlugin());
+
+    config.resolve.extensions.push('.ts', '.tsx');
+
+    // Let webpack know where to find the source code
+    Object.assign(config.resolve.alias, {
+      ...packages.reduce(
+        (acc, name) => ({
+          ...acc,
+          [`@superset-ui/${name}$`]: path.join(basePath, name, 'src'),
+        }),
+        {},
+      ),
+    });
+
+    config.devtool = 'eval-cheap-module-source-map';
+    config.devServer = {
+      ...config.devServer,
+      stats: 'minimal',
+    };
+
+    return config;
+  },
+};
diff --git a/superset-frontend/packages/superset-ui-demo/.storybook/preview.js b/superset-frontend/packages/superset-ui-demo/.storybook/preview.js
new file mode 100644
index 0000000..45f793e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/.storybook/preview.js
@@ -0,0 +1,76 @@
+import { addParameters, addDecorator } from '@storybook/react';
+import { jsxDecorator } from 'storybook-addon-jsx';
+import categoricalD3 from '@superset-ui/core/lib/color/colorSchemes/categorical/d3';
+import sequentialCommon from '@superset-ui/core/lib/color/colorSchemes/sequential/common';
+import sequentialD3 from '@superset-ui/core/lib/color/colorSchemes/sequential/d3';
+import {
+  configure,
+  getTimeFormatterRegistry,
+  smartDateFormatter,
+  getCategoricalSchemeRegistry,
+  getSequentialSchemeRegistry,
+} from '@superset-ui/core';
+import { configureEncodable } from '@superset-ui/preset-chart-xy';
+import themeDecorator from './themeDecorator';
+
+import 'bootstrap/dist/css/bootstrap.min.css';
+import './storybook.css';
+
+addDecorator(jsxDecorator);
+addDecorator(themeDecorator);
+
+addParameters({
+  options: {
+    name: '✨ Superset UI',
+    addonPanelInRight: false,
+    enableShortcuts: false,
+    goFullScreen: false,
+    hierarchyRootSeparator: null,
+    hierarchySeparator: /\|/,
+    selectedAddonPanel: undefined, // The order of addons in the "Addon panel" is the same as you import them in 'addons.js'. The first panel will be opened by default as you run Storybook
+    showAddonPanel: true,
+    showSearchBox: false,
+    showStoriesPanel: true,
+    sidebarAnimations: true,
+    sortStoriesByKind: false,
+    url: '#',
+    storySort: (a, b) => {
+      if (a[1].kind === b[1].kind) {
+        return 0;
+      }
+      if (a[1].id.startsWith('core-packages') && !b[1].id.startsWith('core-packages')) {
+        return -1;
+      }
+      if (!a[1].id.startsWith('core-packages') && b[1].id.startsWith('core-packages')) {
+        return 1;
+      }
+      return a[1].id.localeCompare(b[1].id, undefined, { numeric: true });
+    },
+  },
+});
+
+// Superset setup
+
+configure();
+
+// Register color schemes
+const categoricalSchemeRegistry = getCategoricalSchemeRegistry();
+[categoricalD3].forEach(group => {
+  group.forEach(scheme => {
+    categoricalSchemeRegistry.registerValue(scheme.id, scheme);
+  });
+});
+categoricalSchemeRegistry.setDefaultKey('d3Category10');
+
+const sequentialSchemeRegistry = getSequentialSchemeRegistry();
+[sequentialCommon, sequentialD3].forEach(group => {
+  group.forEach(scheme => {
+    sequentialSchemeRegistry.registerValue(scheme.id, scheme);
+  });
+});
+
+getTimeFormatterRegistry()
+  .registerValue('smart_date', smartDateFormatter)
+  .setDefaultKey('smart_date');
+
+configureEncodable();
diff --git a/superset-frontend/packages/superset-ui-demo/.storybook/storybook.css b/superset-frontend/packages/superset-ui-demo/.storybook/storybook.css
new file mode 100644
index 0000000..039f826
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/.storybook/storybook.css
@@ -0,0 +1,15 @@
+html,
+body,
+#root {
+  height: 100%;
+  font-family: BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
+  font-weight: 200;
+  color: #484848;
+}
+#root > div {
+  padding: 8px;
+}
+
+code {
+  background: none;
+}
diff --git a/superset-frontend/packages/superset-ui-demo/.storybook/themeDecorator.js b/superset-frontend/packages/superset-ui-demo/.storybook/themeDecorator.js
new file mode 100644
index 0000000..73946b2
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/.storybook/themeDecorator.js
@@ -0,0 +1,7 @@
+// themeDecorator.js
+import React from 'react';
+import { supersetTheme, ThemeProvider } from '@superset-ui/core';
+
+const ThemeDecorator = storyFn => <ThemeProvider theme={supersetTheme}>{storyFn()}</ThemeProvider>;
+
+export default ThemeDecorator;
diff --git a/superset-frontend/packages/superset-ui-demo/README.md b/superset-frontend/packages/superset-ui-demo/README.md
new file mode 100644
index 0000000..eb98b7d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/README.md
@@ -0,0 +1,53 @@
+## @superset-ui/demo
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/demo.svg?style=flat)](https://www.npmjs.com/package/@superset-ui/demo)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-demo&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-demo)
+
+Storybook of `@superset-ui` packages. See it live at
+[apache-superset.github.io/superset-ui](https://apache-superset.github.io/superset-ui)
+
+### Development
+
+#### Run storybook
+
+To view the storybook locally, you should first run `yarn install && yarn run bootstrap` in the
+`@superset-ui` monorepo root directory, which will install all dependencies for this package and
+sym-link any `@superset-ui` packages to your local system.
+
+After that run `yarn run storybook` which will open up a dev server at http://localhost:9001.
+
+#### Adding new stories
+
+###### Existing package
+
+If stories already exist for the package you are adding, simply extend the `examples` already
+exported for that package in the `storybook/stories/<package>/index.js` file.
+
+###### New package
+
+If you are creating stories for a package that doesn't yet have any stories, follow these steps:
+
+1. Add any new package dependencies (including any `@superset-ui/*` packages) via
+   `yarn add <package>`.
+
+2. Create a new folder that mirrors the package name
+
+   > e.g., `mkdir storybook/stories/superset-ui-color/`
+
+3. Add an `index.js` file to that folder with a default export with the following shape:
+
+> you can use the `|` separator within the `storyPath` string to denote _nested_ stories e.g.,
+> `storyPath: '@superset-ui/package|Nested i|Nested ii'`
+
+```javascript
+ default export {
+   examples: [
+     {
+       storyPath: <string>,
+       storyName: <string>,
+       renderStory: <func> () => node,
+     },
+     ...
+   ]
+ };
+```
diff --git a/superset-frontend/packages/superset-ui-demo/package.json b/superset-frontend/packages/superset-ui-demo/package.json
new file mode 100644
index 0000000..ad12eeb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/package.json
@@ -0,0 +1,92 @@
+{
+  "name": "@superset-ui/demo",
+  "version": "0.17.6",
+  "description": "Storybook for Superset UI ✨",
+  "private": true,
+  "main": "index.js",
+  "scripts": {
+    "demo:clean": "rm -rf _gh-pages",
+    "demo:build": "npm run demo:clean && build-storybook -o _gh-pages",
+    "demo:publish": "gh-pages -d _gh-pages",
+    "deploy-demo": "npm run demo:build && npm run demo:publish && npm run demo:clean",
+    "storybook": "start-storybook -p 9001",
+    "build-storybook": "npm run demo:clean && build-storybook"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "storybook",
+    "superset",
+    "ui",
+    "visualization",
+    "analysis",
+    "data"
+  ],
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "dependencies": {
+    "@data-ui/event-flow": "^0.0.84",
+    "@storybook/addon-actions": "^5.3.18",
+    "@storybook/addon-info": "^5.3.18",
+    "@storybook/addon-knobs": "^6.1.15",
+    "@storybook/addon-links": "^5.3.18",
+    "@storybook/addons": "^5.3.18",
+    "@storybook/preset-typescript": "^3.0.0",
+    "@storybook/react": "^5.3.18",
+    "@superset-ui/core": "file:../superset-ui-core/src",
+    "@superset-ui/legacy-plugin-chart-calendar": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-chord": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-country-map": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-event-flow": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-force-directed": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-heatmap": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-histogram": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-horizon": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-map-box": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-paired-t-test": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-parallel-coordinates": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-partition": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-pivot-table": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-rose": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-sankey": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-sankey-loop": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-sunburst": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-time-table": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-treemap": "0.17.5",
+    "@superset-ui/legacy-plugin-chart-word-cloud": "^0.11.15",
+    "@superset-ui/legacy-plugin-chart-world-map": "0.17.5",
+    "@superset-ui/legacy-preset-chart-big-number": "0.17.5",
+    "@superset-ui/plugin-chart-echarts": "0.17.6",
+    "@superset-ui/plugin-chart-table": "0.17.6",
+    "@superset-ui/plugin-chart-word-cloud": "0.17.5",
+    "@types/react-bootstrap": "^0.32.22",
+    "@types/react-loadable": "^5.5.3",
+    "@types/react-resizable": "^1.7.2",
+    "@types/storybook__react": "5.2.1",
+    "antd": "^4.9.1",
+    "bootstrap": "^3.4.1",
+    "core-js": "3.8.3",
+    "gh-pages": "^3.0.0",
+    "global-box": "^1.2.0",
+    "jquery": "^3.4.1",
+    "memoize-one": "^5.1.1",
+    "react": "^16.13.1",
+    "react-bootstrap": "^0.33.1",
+    "react-loadable": "^5.5.0",
+    "react-resizable": "^1.10.1",
+    "storybook-addon-jsx": "^7.2.3"
+  },
+  "devDependencies": {
+    "@babel/core": "^7.9.0",
+    "babel-loader": "^8.1.0",
+    "chromatic": "^5.4.0",
+    "fork-ts-checker-webpack-plugin": "^5.0.7",
+    "ts-loader": "^7.0.4",
+    "typescript": "^3.8.3"
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/shared/components/ErrorMessage.tsx b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/ErrorMessage.tsx
new file mode 100644
index 0000000..8b41aeb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/ErrorMessage.tsx
@@ -0,0 +1,18 @@
+import React from 'react';
+
+export type Props = {
+  error: Error;
+};
+
+export default function ErrorMessage({ error }: Props) {
+  // eslint-disable-next-line no-console
+  console.error(error);
+  return (
+    <pre className="alert alert-danger">
+      {error.stack || error.message}
+      {!error.message &&
+        !error.stack &&
+        (typeof error === 'object' ? JSON.stringify(error, null, 2) : String(error))}
+    </pre>
+  );
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/shared/components/Expandable.tsx b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/Expandable.tsx
new file mode 100644
index 0000000..f09ab00
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/Expandable.tsx
@@ -0,0 +1,38 @@
+import React, { ReactNode } from 'react';
+
+export type Props = {
+  children: ReactNode;
+  expandableWhat?: string;
+};
+
+type State = {
+  open: boolean;
+};
+
+export default class Expandable extends React.Component<Props, State> {
+  constructor(props: Props) {
+    super(props);
+    this.state = { open: false };
+    this.handleToggle = this.handleToggle.bind(this);
+  }
+
+  handleToggle() {
+    this.setState(({ open }) => ({ open: !open }));
+  }
+
+  render() {
+    const { open } = this.state;
+    const { children, expandableWhat } = this.props;
+
+    return (
+      <div>
+        <button type="button" className="btn btn-primary btn-sm" onClick={this.handleToggle}>
+          {`${open ? 'Hide' : 'Show'} ${expandableWhat}`}
+        </button>
+        <br />
+        <br />
+        {open ? children : null}
+      </div>
+    );
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/shared/components/ResizableChartDemo.tsx b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/ResizableChartDemo.tsx
new file mode 100644
index 0000000..c48df28
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/ResizableChartDemo.tsx
@@ -0,0 +1,45 @@
+import React, { useState, ReactNode } from 'react';
+import { styled } from '@superset-ui/core';
+import { DecoratorFunction } from '@storybook/addons';
+import ResizablePanel, { Size } from './ResizablePanel';
+
+export const SupersetBody = styled.div`
+  background: #f5f5f5;
+  padding: 16px;
+  min-height: 100%;
+
+  .panel {
+    margin-bottom: 0;
+  }
+`;
+
+export default function ResizableChartDemo({
+  children,
+  panelPadding = 30,
+  initialSize = { width: 500, height: 300 },
+}: {
+  children: (innerSize: Size) => ReactNode;
+  panelPadding?: number;
+  initialSize?: Size;
+}) {
+  // size are all inner size
+  const [size, setSize] = useState(initialSize);
+  return (
+    <SupersetBody>
+      <ResizablePanel initialSize={initialSize} onResize={(e, data) => setSize(data.size)}>
+        {children({ width: size.width - panelPadding, height: size.height - panelPadding })}
+      </ResizablePanel>
+    </SupersetBody>
+  );
+}
+
+export const withResizableChartDemo: DecoratorFunction<ReactNode> = (storyFn, context) => {
+  const {
+    parameters: { initialSize, panelPadding },
+  } = context;
+  return (
+    <ResizableChartDemo initialSize={initialSize as Size | undefined} panelPadding={panelPadding}>
+      {innerSize => storyFn({ ...context, ...innerSize })}
+    </ResizableChartDemo>
+  );
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/shared/components/ResizablePanel.tsx b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/ResizablePanel.tsx
new file mode 100644
index 0000000..d017645
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/ResizablePanel.tsx
@@ -0,0 +1,40 @@
+import React, { PropsWithChildren, ReactNode } from 'react';
+import { ResizableBox, ResizableBoxProps, ResizeCallbackData } from 'react-resizable';
+
+import 'react-resizable/css/styles.css';
+
+export type Size = ResizeCallbackData['size'];
+
+export default function ResizablePanel({
+  children,
+  heading = undefined,
+  initialSize = { width: 500, height: 300 },
+  minConstraints = [100, 100] as [number, number],
+  onResize,
+  ...props
+}: PropsWithChildren<Omit<ResizableBoxProps, 'width' | 'height'>> & {
+  heading?: ReactNode;
+  initialSize?: Size;
+}) {
+  const { width, height } = initialSize;
+  return (
+    <ResizableBox
+      className="panel"
+      width={width}
+      height={height}
+      minConstraints={minConstraints}
+      onResize={
+        onResize
+          ? (e, data) => {
+              const { size } = data;
+              onResize(e, { ...data, size });
+            }
+          : undefined
+      }
+      {...props}
+    >
+      {heading ? <div className="panel-heading">{heading}</div> : null}
+      <div className="panel-body">{children}</div>
+    </ResizableBox>
+  );
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/shared/components/VerifyCORS.tsx b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/VerifyCORS.tsx
new file mode 100644
index 0000000..29297a6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/VerifyCORS.tsx
@@ -0,0 +1,107 @@
+import React, { ReactNode } from 'react';
+import { SupersetClient, Method, makeApi, SupersetApiError } from '@superset-ui/core';
+import ErrorMessage from './ErrorMessage';
+
+export type Props = {
+  children: ({ payload }: { payload?: object }) => ReactNode;
+  endpoint?: string;
+  host: string;
+  method?: Method;
+  postPayload?: string;
+};
+
+type State = {
+  didVerify: boolean;
+  error?: Error | SupersetApiError;
+  payload?: object;
+};
+
+export const renderError = (error: Error) => (
+  <div>
+    The following error occurred, make sure you have <br />
+    1) configured CORS in Superset to receive requests from this domain. <br />
+    2) set the Superset host correctly below. <br />
+    3) debug the CORS configuration under the `@superset-ui/connection` stories.
+    <br />
+    <br />
+    <ErrorMessage error={error} />
+  </div>
+);
+
+export default class VerifyCORS extends React.Component<Props, State> {
+  constructor(props: Props) {
+    super(props);
+    this.state = { didVerify: false };
+    this.handleVerify = this.handleVerify.bind(this);
+  }
+
+  componentDidUpdate(prevProps: Props) {
+    const { endpoint, host, postPayload, method } = this.props;
+    if (
+      (this.state.didVerify || this.state.error) &&
+      (prevProps.endpoint !== endpoint ||
+        prevProps.host !== host ||
+        prevProps.postPayload !== postPayload ||
+        prevProps.method !== method)
+    ) {
+      // eslint-disable-next-line react/no-did-update-set-state
+      this.setState({ didVerify: false, error: undefined });
+    }
+  }
+
+  handleVerify() {
+    const { endpoint, host, postPayload, method } = this.props;
+    SupersetClient.reset();
+    SupersetClient.configure({
+      credentials: 'include',
+      host,
+      mode: 'cors',
+    })
+      .init()
+      .then(() => {
+        // Test an endpoint if specified
+        if (endpoint && postPayload) {
+          return makeApi({
+            endpoint,
+            method,
+          })(postPayload);
+        }
+        return { error: 'Must provide valid endpoint and payload.' };
+      })
+      .then(result => this.setState({ didVerify: true, error: undefined, payload: result }))
+      .catch(error => this.setState({ error }));
+  }
+
+  render() {
+    const { didVerify, error, payload } = this.state;
+    const { children } = this.props;
+
+    return didVerify ? (
+      children({ payload })
+    ) : (
+      <div className="row">
+        <div className="col-md-10">
+          This example requires CORS requests from this domain. <br />
+          <br />
+          1) enable CORS requests in your Superset App from {`${window.location.origin}`}
+          <br />
+          2) configure your Superset App host name below <br />
+          3) click below to verify authentication. You may debug CORS further using the
+          `@superset-ui/connection` story. <br />
+          <br />
+          <button type="button" className="btn btn-primary btn-sm" onClick={this.handleVerify}>
+            Verify
+          </button>
+          <br />
+          <br />
+        </div>
+
+        {error && (
+          <div className="col-md-8">
+            <ErrorMessage error={error} />
+          </div>
+        )}
+      </div>
+    );
+  }
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx
new file mode 100644
index 0000000..996a191
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx
@@ -0,0 +1,72 @@
+import React from 'react';
+import { text, select } from '@storybook/addon-knobs';
+import { SuperChart, ChartDataProvider, SupersetClient } from '@superset-ui/core';
+import Expandable from './Expandable';
+import VerifyCORS, { renderError } from './VerifyCORS';
+
+export default function createQueryStory({
+  choices,
+}: {
+  choices: {
+    [key: string]: {
+      chartType: string;
+      formData: {
+        [key: string]: any;
+      };
+    };
+  };
+}) {
+  const keys = Object.keys(choices);
+  const story = () => {
+    const host = text('Set Superset App host for CORS request', 'localhost:8088');
+    const mode = select('Choose mode:', keys, keys[0]);
+    const { formData: presetFormData, chartType } = choices[mode];
+    const width = text('Vis width', '400');
+    const height = text('Vis height', '400');
+    const formData = text('Override formData', JSON.stringify(presetFormData, null, 2));
+
+    return (
+      <div style={{ margin: 16 }}>
+        <VerifyCORS host={host}>
+          {() => (
+            <ChartDataProvider
+              client={SupersetClient}
+              formData={JSON.parse(formData.replace(/&quot;/g, '"'))}
+            >
+              {({ loading, payload, error }) => {
+                if (loading) return <div>Loading!</div>;
+
+                if (error) return renderError(error);
+
+                if (payload)
+                  return (
+                    <>
+                      <SuperChart
+                        chartType={chartType}
+                        width={width}
+                        height={height}
+                        formData={payload.formData}
+                        // @TODO fix typing
+                        // all vis's now expect objects but api/v1/ returns an array
+                        queriesData={payload.queriesData}
+                      />
+                      <br />
+                      <Expandable expandableWhat="payload">
+                        <pre style={{ fontSize: 11 }}>{JSON.stringify(payload, null, 2)}</pre>
+                      </Expandable>
+                    </>
+                  );
+
+                return null;
+              }}
+            </ChartDataProvider>
+          )}
+        </VerifyCORS>
+      </div>
+    );
+  };
+  story.parameters = {
+    chromatic: { disable: true },
+  };
+  return story;
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/shared/dummyDatasource.ts b/superset-frontend/packages/superset-ui-demo/storybook/shared/dummyDatasource.ts
new file mode 100644
index 0000000..24efcb1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/shared/dummyDatasource.ts
@@ -0,0 +1 @@
+export default { verboseMap: {} };
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx
new file mode 100644
index 0000000..5d52082
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx
@@ -0,0 +1,33 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import CalendarChartPlugin from '@superset-ui/legacy-plugin-chart-calendar';
+import data from './data';
+import dummyDatasource from '../../../shared/dummyDatasource';
+
+new CalendarChartPlugin().configure({ key: 'calendar' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-calendar',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="calendar"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      cellSize: 10,
+      cellPadding: 2,
+      cellRadius: 0,
+      linearColorScheme: 'schemeRdYlBu',
+      steps: 10,
+      yAxisFormat: '.3s',
+      xAxisTimeFormat: 'smart_date',
+      showLegend: true,
+      showValues: false,
+      showMetricName: true,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/data.ts
new file mode 100644
index 0000000..b4a02b9
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/data.ts
@@ -0,0 +1,100 @@
+/* eslint-disable sort-keys */
+export default {
+  data: {
+    count: {
+      '1518652800.0': 3,
+      '1518048000.0': 2,
+      '1518220800.0': 2,
+      '1523145600.0': 2,
+      '1529798400.0': 2,
+      '1534204800.0': 2,
+      '1541289600.0': 2,
+      '1542672000.0': 2,
+      '1543881600.0': 2,
+      '1517616000.0': 1,
+      '1517875200.0': 1,
+      '1517961600.0': 1,
+      '1518307200.0': 1,
+      '1518393600.0': 1,
+      '1519257600.0': 1,
+      '1519516800.0': 1,
+      '1519776000.0': 1,
+      '1520208000.0': 1,
+      '1520294400.0': 1,
+      '1520985600.0': 1,
+      '1521072000.0': 1,
+      '1521244800.0': 1,
+      '1521331200.0': 1,
+      '1521676800.0': 1,
+      '1522108800.0': 1,
+      '1522627200.0': 1,
+      '1522800000.0': 1,
+      '1522972800.0': 1,
+      '1523491200.0': 1,
+      '1524096000.0': 1,
+      '1524268800.0': 1,
+      '1524614400.0': 1,
+      '1524960000.0': 1,
+      '1525305600.0': 1,
+      '1525564800.0': 1,
+      '1525737600.0': 1,
+      '1525824000.0': 1,
+      '1525910400.0': 1,
+      '1526083200.0': 1,
+      '1526256000.0': 1,
+      '1526688000.0': 1,
+      '1527033600.0': 1,
+      '1527292800.0': 1,
+      '1527465600.0': 1,
+      '1527638400.0': 1,
+      '1528070400.0': 1,
+      '1528329600.0': 1,
+      '1529539200.0': 1,
+      '1529625600.0': 1,
+      '1529712000.0': 1,
+      '1529971200.0': 1,
+      '1530144000.0': 1,
+      '1530576000.0': 1,
+      '1531267200.0': 1,
+      '1531353600.0': 1,
+      '1531440000.0': 1,
+      '1532736000.0': 1,
+      '1533081600.0': 1,
+      '1533168000.0': 1,
+      '1533945600.0': 1,
+      '1534377600.0': 1,
+      '1534809600.0': 1,
+      '1535155200.0': 1,
+      '1535328000.0': 1,
+      '1535932800.0': 1,
+      '1536710400.0': 1,
+      '1537056000.0': 1,
+      '1537142400.0': 1,
+      '1537488000.0': 1,
+      '1537660800.0': 1,
+      '1538611200.0': 1,
+      '1538697600.0': 1,
+      '1539475200.0': 1,
+      '1540771200.0': 1,
+      '1541116800.0': 1,
+      '1541376000.0': 1,
+      '1541635200.0': 1,
+      '1542153600.0': 1,
+      '1542931200.0': 1,
+      '1543190400.0': 1,
+      '1545177600.0': 1,
+      '1545436800.0': 1,
+      '1545782400.0': 1,
+      '1545868800.0': 1,
+      '1546300800.0': 1,
+      '1546732800.0': 1,
+      '1547769600.0': 1,
+      '1547942400.0': 1,
+      '1548633600.0': 1,
+    },
+  },
+  start: 1517270400000.0,
+  domain: 'month',
+  range: 13,
+  subdomain: 'day',
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx
new file mode 100644
index 0000000..ac697b4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx
@@ -0,0 +1,23 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import ChordChartPlugin from '@superset-ui/legacy-plugin-chart-chord';
+import data from './data';
+
+new ChordChartPlugin().configure({ key: 'chord' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-chord',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="chord"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      yAxisFormat: '.2f',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/data.ts
new file mode 100644
index 0000000..d30e558
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/data.ts
@@ -0,0 +1,12 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default {
+  matrix: [
+    [381, 16, 14, 5, 4, 6],
+    [29, 535, 132, 20, 21, 16],
+    [22, 18, 1, 3, 0, 214],
+    [3, 4, 462, 152, 132, 0],
+    [16, 32, 299, 123, 146, 1],
+    [22, 83, 53, 21, 22, 6],
+  ],
+  nodes: ['Hong Kong', 'Tokyo', 'Taipei', 'Beijing', 'Bangkok', 'Jakarta', 'Singapore'],
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/Stories.tsx
new file mode 100644
index 0000000..9bd5296
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/Stories.tsx
@@ -0,0 +1,27 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import CountryMapChartPlugin from '@superset-ui/legacy-plugin-chart-country-map';
+import countries from '@superset-ui/legacy-plugin-chart-country-map/lib/countries';
+import { withKnobs, select } from '@storybook/addon-knobs';
+import data from './data';
+
+new CountryMapChartPlugin().configure({ key: 'country-map' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-country-map',
+  decorators: [withKnobs],
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="country-map"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      linearColorScheme: 'schemeRdYlBu',
+      numberFormat: '.3s',
+      selectCountry: select('Country', Object.keys(countries!), 'france', 'country'),
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/data.ts
new file mode 100644
index 0000000..863cf7e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/data.ts
@@ -0,0 +1,386 @@
+export default [
+  {
+    country_id: 'FR-01',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-02',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-03',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-04',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-05',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-06',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-07',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-08',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-09',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-10',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-11',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-12',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-13',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-14',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-15',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-16',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-17',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-18',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-19',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-21',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-22',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-23',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-24',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-25',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-26',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-27',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-28',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-29',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-2A',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-2B',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-30',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-31',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-32',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-33',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-34',
+    metric: 200.0,
+  },
+  {
+    country_id: 'FR-35',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-36',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-37',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-38',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-39',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-40',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-41',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-42',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-43',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-44',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-45',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-46',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-47',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-48',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-49',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-50',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-51',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-52',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-53',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-54',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-55',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-56',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-57',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-58',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-59',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-60',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-61',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-62',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-63',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-64',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-65',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-66',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-67',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-68',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-69',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-70',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-71',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-72',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-73',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-74',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-75',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-76',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-77',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-78',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-79',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-80',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-81',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-82',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-83',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-84',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-85',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-86',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-87',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-88',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-89',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-90',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-91',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-92',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-93',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-94',
+    metric: 2004.0,
+  },
+  {
+    country_id: 'FR-95',
+    metric: 2004.0,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx
new file mode 100644
index 0000000..42deee1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx
@@ -0,0 +1,30 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import sampleEvents from '@data-ui/event-flow/build/sampleEvents';
+import EventFlowChartPlugin from '@superset-ui/legacy-plugin-chart-event-flow';
+
+new EventFlowChartPlugin().configure({ key: 'event-flow' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-event-flow',
+};
+
+const data = sampleEvents.twentyUsers.allEvents.map(({ ENTITY_ID, EVENT_NAME, TS }) => ({
+  __timestamp: TS,
+  eventName: EVENT_NAME,
+  userId: ENTITY_ID,
+}));
+
+export const basic = () => (
+  <SuperChart
+    chartType="event-flow"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      allColumnsX: 'eventName',
+      entity: 'userId',
+      minLeafNodeEventCount: 1,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx
new file mode 100644
index 0000000..8f1f097
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx
@@ -0,0 +1,15 @@
+/* eslint-disable no-magic-numbers */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import ForceDirectedChartPlugin from '@superset-ui/legacy-plugin-chart-force-directed';
+import data from './data';
+
+new ForceDirectedChartPlugin().configure({ key: 'force-directed' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-force-directed',
+};
+
+export const basic = () => (
+  <SuperChart chartType="force-directed" width={400} height={400} queriesData={[{ data }]} />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/data.ts
new file mode 100644
index 0000000..ac03180
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/data.ts
@@ -0,0 +1,428 @@
+/* eslint-disable sort-keys */
+export default [
+  {
+    source: 'Energy',
+    target: 'Electricity and heat',
+    value: 24.9,
+  },
+  {
+    source: 'Energy',
+    target: 'Industry',
+    value: 14.7,
+  },
+  {
+    source: 'Energy',
+    target: 'Transportation',
+    value: 14.3,
+  },
+  {
+    source: 'Deforestation',
+    target: 'Carbon Dioxide',
+    value: 10.9,
+  },
+  {
+    source: 'Land Use Change',
+    target: 'Deforestation',
+    value: 10.9,
+  },
+  {
+    source: 'Road',
+    target: 'Carbon Dioxide',
+    value: 10.5,
+  },
+  {
+    source: 'Transportation',
+    target: 'Road',
+    value: 10.5,
+  },
+  {
+    source: 'Residential Buildings',
+    target: 'Carbon Dioxide',
+    value: 10.2,
+  },
+  {
+    source: 'Energy',
+    target: 'Other Fuel Combustion',
+    value: 8.6,
+  },
+  {
+    source: 'Other Industry',
+    target: 'Carbon Dioxide',
+    value: 6.6,
+  },
+  {
+    source: 'Commercial Buildings',
+    target: 'Carbon Dioxide',
+    value: 6.3,
+  },
+  {
+    source: 'Agriculture',
+    target: 'Livestock and Manure',
+    value: 5.4,
+  },
+  {
+    source: 'Agriculture',
+    target: 'Agriculture Soils',
+    value: 5.2,
+  },
+  {
+    source: 'Agriculture Soils',
+    target: 'Nitrous Oxide',
+    value: 5.2,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Residential Buildings',
+    value: 5.2,
+  },
+  {
+    source: 'Livestock and Manure',
+    target: 'Methane',
+    value: 5.1,
+  },
+  {
+    source: 'Cement',
+    target: 'Carbon Dioxide',
+    value: 5.0,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Commercial Buildings',
+    value: 5.0,
+  },
+  {
+    source: 'Other Fuel Combustion',
+    target: 'Residential Buildings',
+    value: 5.0,
+  },
+  {
+    source: 'Energy',
+    target: 'Fugitive Emissions',
+    value: 4.0,
+  },
+  {
+    source: 'Iron and Steel',
+    target: 'Carbon Dioxide',
+    value: 4.0,
+  },
+  {
+    source: 'Industry',
+    target: 'Other Industry',
+    value: 3.8,
+  },
+  {
+    source: 'Oil and Gas Processing',
+    target: 'Carbon Dioxide',
+    value: 3.6,
+  },
+  {
+    source: 'Chemicals',
+    target: 'Carbon Dioxide',
+    value: 3.4,
+  },
+  {
+    source: 'Fugitive Emissions',
+    target: 'Oil and Gas Processing',
+    value: 3.2,
+  },
+  {
+    source: 'Industry',
+    target: 'Iron and Steel',
+    value: 3.0,
+  },
+  {
+    source: 'Unallocated Fuel Combustion',
+    target: 'Carbon Dioxide',
+    value: 3.0,
+  },
+  {
+    source: 'Industrial Processes',
+    target: 'Cement',
+    value: 2.8,
+  },
+  {
+    source: 'Industry',
+    target: 'Oil and Gas Processing',
+    value: 2.8,
+  },
+  {
+    source: 'Oil and Gas Processing',
+    target: 'Methane',
+    value: 2.8,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Other Industry',
+    value: 2.7,
+  },
+  {
+    source: 'Rail - Ship and Other Transport',
+    target: 'Carbon Dioxide',
+    value: 2.5,
+  },
+  {
+    source: 'Transportation',
+    target: 'Rail - Ship and Other Transport',
+    value: 2.5,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'T and D Losses',
+    value: 2.2,
+  },
+  {
+    source: 'T and D Losses',
+    target: 'Carbon Dioxide',
+    value: 2.2,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Unallocated Fuel Combustion',
+    value: 2.0,
+  },
+  {
+    source: 'Industry',
+    target: 'Cement',
+    value: 1.9,
+  },
+  {
+    source: 'Other Fuel Combustion',
+    target: 'Unallocated Fuel Combustion',
+    value: 1.8,
+  },
+  {
+    source: 'Agriculture',
+    target: 'Other Agriculture',
+    value: 1.7,
+  },
+  {
+    source: 'Air',
+    target: 'Carbon Dioxide',
+    value: 1.7,
+  },
+  {
+    source: 'Landfills',
+    target: 'Methane',
+    value: 1.7,
+  },
+  {
+    source: 'Transportation',
+    target: 'Air',
+    value: 1.7,
+  },
+  {
+    source: 'Waste',
+    target: 'Landfills',
+    value: 1.7,
+  },
+  {
+    source: 'Agriculture',
+    target: 'Rice Cultivation',
+    value: 1.5,
+  },
+  {
+    source: 'Rice Cultivation',
+    target: 'Methane',
+    value: 1.5,
+  },
+  {
+    source: 'Waste',
+    target: 'Waste water - Other Waste',
+    value: 1.5,
+  },
+  {
+    source: 'Agricultural Energy Use',
+    target: 'Carbon Dioxide',
+    value: 1.4,
+  },
+  {
+    source: 'Industrial Processes',
+    target: 'Chemicals',
+    value: 1.4,
+  },
+  {
+    source: 'Industry',
+    target: 'Chemicals',
+    value: 1.4,
+  },
+  {
+    source: 'Other Agriculture',
+    target: 'Methane',
+    value: 1.4,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Chemicals',
+    value: 1.3,
+  },
+  {
+    source: 'Fugitive Emissions',
+    target: 'Coal Mining',
+    value: 1.3,
+  },
+  {
+    source: 'Harvest / Management',
+    target: 'Carbon Dioxide',
+    value: 1.3,
+  },
+  {
+    source: 'Land Use Change',
+    target: 'Harvest / Management',
+    value: 1.3,
+  },
+  {
+    source: 'Other Fuel Combustion',
+    target: 'Commercial Buildings',
+    value: 1.3,
+  },
+  {
+    source: 'Coal Mining',
+    target: 'Methane',
+    value: 1.2,
+  },
+  {
+    source: 'Waste water - Other Waste',
+    target: 'Methane',
+    value: 1.2,
+  },
+  {
+    source: 'Pulp - Paper and Printing',
+    target: 'Carbon Dioxide',
+    value: 1.1,
+  },
+  {
+    source: 'Aluminium Non-Ferrous Metals',
+    target: 'Carbon Dioxide',
+    value: 1.0,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Iron and Steel',
+    value: 1.0,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Machinery',
+    value: 1.0,
+  },
+  {
+    source: 'Food and Tobacco',
+    target: 'Carbon Dioxide',
+    value: 1.0,
+  },
+  {
+    source: 'Machinery',
+    target: 'Carbon Dioxide',
+    value: 1.0,
+  },
+  {
+    source: 'Other Fuel Combustion',
+    target: 'Agricultural Energy Use',
+    value: 1.0,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Pulp - Paper and Printing',
+    value: 0.6,
+  },
+  {
+    source: 'Chemicals',
+    target: 'HFCs - PFCs',
+    value: 0.5,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Food and Tobacco',
+    value: 0.5,
+  },
+  {
+    source: 'Industrial Processes',
+    target: 'Other Industry',
+    value: 0.5,
+  },
+  {
+    source: 'Industry',
+    target: 'Food and Tobacco',
+    value: 0.5,
+  },
+  {
+    source: 'Industry',
+    target: 'Pulp - Paper and Printing',
+    value: 0.5,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Aluminium Non-Ferrous Metals',
+    value: 0.4,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Oil and Gas Processing',
+    value: 0.4,
+  },
+  {
+    source: 'Electricity,heat',
+    target: 'Agricultural Energy Use',
+    value: 0.4,
+  },
+  {
+    source: 'Industrial Processes',
+    target: 'Aluminium Non-Ferrous Metals',
+    value: 0.4,
+  },
+  {
+    source: 'Industry',
+    target: 'Aluminium Non-Ferrous Metals',
+    value: 0.4,
+  },
+  {
+    source: 'Other Industry',
+    target: 'HFCs - PFCs',
+    value: 0.4,
+  },
+  {
+    source: 'Unallocated Fuel Combustion',
+    target: 'Methane',
+    value: 0.4,
+  },
+  {
+    source: 'Unallocated Fuel Combustion',
+    target: 'Nitrous Oxide',
+    value: 0.4,
+  },
+  {
+    source: 'Electricity and heat',
+    target: 'Cement',
+    value: 0.3,
+  },
+  {
+    source: 'Livestock and Manure',
+    target: 'Nitrous Oxide',
+    value: 0.3,
+  },
+  {
+    source: 'Other Agriculture',
+    target: 'Nitrous Oxide',
+    value: 0.3,
+  },
+  {
+    source: 'Waste water - Other Waste',
+    target: 'Nitrous Oxide',
+    value: 0.3,
+  },
+  {
+    source: 'Aluminium Non-Ferrous Metals',
+    target: 'HFCs - PFCs',
+    value: 0.2,
+  },
+  {
+    source: 'Chemicals',
+    target: 'Nitrous Oxide',
+    value: 0.2,
+  },
+  {
+    source: 'Coal Mining',
+    target: 'Carbon Dioxide',
+    value: 0.1,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx
new file mode 100644
index 0000000..5e7787a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx
@@ -0,0 +1,89 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import HeatmapChartPlugin from '@superset-ui/legacy-plugin-chart-heatmap';
+import data from './data';
+
+new HeatmapChartPlugin().configure({ key: 'heatmap' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-heatmap',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="heatmap"
+    width={400}
+    height={400}
+    formData={{
+      allColumnsX: 'source',
+      allColumnsY: 'target',
+      bottomMargin: 'auto',
+      canvasImageRendering: 'pixelated',
+      leftMargin: 'auto',
+      linearColorScheme: 'blue_white_yellow',
+      metric: 'sum__value',
+      normalized: false,
+      showLegend: true,
+      showPerc: true,
+      showValues: false,
+      sortXAxis: 'alpha_asc',
+      sortYAxis: 'alpha_asc',
+      xscaleInterval: '1',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yscaleInterval: '1',
+    }}
+    queriesData={[
+      {
+        data: {
+          records: data,
+          extents: [0.1, 24.9],
+        },
+      },
+    ]}
+  />
+);
+
+export const withNullData = () => (
+  <SuperChart
+    chartType="heatmap"
+    width={400}
+    height={400}
+    formData={{
+      allColumnsX: 'source',
+      allColumnsY: 'target',
+      bottomMargin: 'auto',
+      canvasImageRendering: 'pixelated',
+      leftMargin: 'auto',
+      linearColorScheme: 'blue_white_yellow',
+      metric: 'sum__value',
+      normalized: false,
+      showLegend: true,
+      showPerc: true,
+      showValues: false,
+      sortXAxis: 'alpha_asc',
+      sortYAxis: 'alpha_asc',
+      xscaleInterval: '1',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yscaleInterval: '1',
+    }}
+    queriesData={[
+      {
+        data: {
+          records: [
+            ...data,
+            {
+              x: null,
+              y: 'Electricity and heat',
+              v: 25.9,
+              perc: 0.43,
+              rank: 1.0,
+            },
+          ],
+          extents: [0.1, 24.9],
+        },
+      },
+    ]}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/data.ts
new file mode 100644
index 0000000..4c07c6e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/data.ts
@@ -0,0 +1,163 @@
+export default [
+  {
+    x: 'Energy',
+    y: 'Electricity and heat',
+    v: 24.9,
+    perc: 1.0,
+    rank: 1.0,
+  },
+  {
+    x: 'Energy',
+    y: 'Industry',
+    v: 14.7,
+    perc: 0.5887096774193549,
+    rank: 0.9882352941176471,
+  },
+  {
+    x: 'Energy',
+    y: 'Transportation',
+    v: 14.3,
+    perc: 0.5725806451612905,
+    rank: 0.9764705882352941,
+  },
+  {
+    x: 'Deforestation',
+    y: 'Carbon Dioxide',
+    v: 10.9,
+    perc: 0.435483870967742,
+    rank: 0.9588235294117647,
+  },
+  {
+    x: 'Land Use Change',
+    y: 'Deforestation',
+    v: 10.9,
+    perc: 0.435483870967742,
+    rank: 0.9588235294117647,
+  },
+  {
+    x: 'Road',
+    y: 'Carbon Dioxide',
+    v: 10.5,
+    perc: 0.4193548387096775,
+    rank: 0.9352941176470588,
+  },
+  {
+    x: 'Transportation',
+    y: 'Road',
+    v: 10.5,
+    perc: 0.4193548387096775,
+    rank: 0.9352941176470588,
+  },
+  {
+    x: 'Residential Buildings',
+    y: 'Carbon Dioxide',
+    v: 10.2,
+    perc: 0.40725806451612906,
+    rank: 0.9176470588235294,
+  },
+  {
+    x: 'Energy',
+    y: 'Other Fuel Combustion',
+    v: 8.6,
+    perc: 0.342741935483871,
+    rank: 0.9058823529411765,
+  },
+  {
+    x: 'Other Industry',
+    y: 'Carbon Dioxide',
+    v: 6.6,
+    perc: 0.26209677419354843,
+    rank: 0.8941176470588236,
+  },
+  {
+    x: 'Commercial Buildings',
+    y: 'Carbon Dioxide',
+    v: 6.3,
+    perc: 0.25000000000000006,
+    rank: 0.8823529411764706,
+  },
+  {
+    x: 'Agriculture',
+    y: 'Livestock and Manure',
+    v: 5.4,
+    perc: 0.2137096774193549,
+    rank: 0.8705882352941177,
+  },
+  {
+    x: 'Agriculture',
+    y: 'Agriculture Soils',
+    v: 5.2,
+    perc: 0.20564516129032262,
+    rank: 0.8470588235294118,
+  },
+  {
+    x: 'Agriculture Soils',
+    y: 'Nitrous Oxide',
+    v: 5.2,
+    perc: 0.20564516129032262,
+    rank: 0.8470588235294118,
+  },
+  {
+    x: 'Oil and Gas Processing',
+    y: 'Methane',
+    v: 2.8,
+    perc: 0.10887096774193548,
+    rank: 0.6705882352941176,
+  },
+  {
+    x: 'Electricity and heat',
+    y: 'Other Industry',
+    v: 2.7,
+    perc: 0.10483870967741937,
+    rank: 0.6470588235294118,
+  },
+  {
+    x: 'Rail - Ship and Other Transport',
+    y: 'Carbon Dioxide',
+    v: 2.5,
+    perc: 0.09677419354838711,
+    rank: 0.6294117647058823,
+  },
+  {
+    x: 'Transportation',
+    y: 'Rail - Ship and Other Transport',
+    v: 2.5,
+    perc: 0.09677419354838711,
+    rank: 0.6294117647058823,
+  },
+  {
+    x: 'Electricity and heat',
+    y: 'T and D Losses',
+    v: 2.2,
+    perc: 0.08467741935483872,
+    rank: 0.6058823529411764,
+  },
+  {
+    x: 'T and D Losses',
+    y: 'Carbon Dioxide',
+    v: 2.2,
+    perc: 0.08467741935483872,
+    rank: 0.6058823529411764,
+  },
+  {
+    x: 'Electricity and heat',
+    y: 'Unallocated Fuel Combustion',
+    v: 2.0,
+    perc: 0.07661290322580645,
+    rank: 0.5882352941176471,
+  },
+  {
+    x: 'Industry',
+    y: 'Cement',
+    v: 1.9,
+    perc: 0.07258064516129033,
+    rank: 0.5764705882352941,
+  },
+  {
+    x: 'Other Fuel Combustion',
+    y: 'Unallocated Fuel Combustion',
+    v: 1.8,
+    perc: 0.0685483870967742,
+    rank: 0.5647058823529412,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx
new file mode 100644
index 0000000..0ef50ba
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx
@@ -0,0 +1,28 @@
+/* eslint-disable no-magic-numbers */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import HistogramChartPlugin from '@superset-ui/legacy-plugin-chart-histogram';
+import data from './data';
+
+new HistogramChartPlugin().configure({ key: 'histogram' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-histogram',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="histogram"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      globalOpacity: 1,
+      linkLength: 15, // binCount
+      normalized: false,
+      xAxisLabel: 'Score',
+      yAxisLabel: 'Count',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/data.ts
new file mode 100644
index 0000000..6a05344
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/data.ts
@@ -0,0 +1,62 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    key: 'Entrance exam',
+    values: [
+      0.87,
+      0.944,
+      1.0,
+      0.879,
+      0.69,
+      0.667,
+      0.794,
+      0.838,
+      0.875,
+      0.385,
+      0.968,
+      0.804,
+      1.0,
+      0.943,
+      0.96,
+      0.333,
+      0.5,
+      0.929,
+      0.863,
+      0.75,
+      0.957,
+      0.914,
+      1.0,
+      0.909,
+      0.742,
+      0.964,
+      0.25,
+      0.75,
+      0.5,
+      0.867,
+      0.909,
+      0.333,
+      0.867,
+      0.952,
+      0.857,
+      0.949,
+      0.857,
+      0.333,
+      0.8,
+      0.707,
+      0.833,
+      0.75,
+      0.88,
+      0.771,
+      1.0,
+      1.0,
+      0.769,
+      1.0,
+      0.769,
+      0.622,
+      0.909,
+      0.725,
+      0.951,
+      1.0,
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx
new file mode 100644
index 0000000..cf54ad3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx
@@ -0,0 +1,23 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import HorizonChartPlugin from '@superset-ui/legacy-plugin-chart-horizon';
+import data from './data';
+
+new HorizonChartPlugin().configure({ key: 'horizon' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-horizon',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="horizon"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      horizonColorScale: 'series',
+      seriesHeight: '25',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/data.ts
new file mode 100644
index 0000000..c88c2d8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/data.ts
@@ -0,0 +1,908 @@
+/* eslint-disable sort-keys */
+export default [
+  {
+    key: ['Christopher'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 24703,
+      },
+      {
+        x: -126230400000.0,
+        y: 27861,
+      },
+      {
+        x: -94694400000.0,
+        y: 29436,
+      },
+      {
+        x: -63158400000.0,
+        y: 31463,
+      },
+      {
+        x: -31536000000.0,
+        y: 35718,
+      },
+      {
+        x: 0.0,
+        y: 41758,
+      },
+      {
+        x: 31536000000.0,
+        y: 48172,
+      },
+      {
+        x: 63072000000.0,
+        y: 52092,
+      },
+      {
+        x: 94694400000.0,
+        y: 48217,
+      },
+      {
+        x: 126230400000.0,
+        y: 48476,
+      },
+      {
+        x: 157766400000.0,
+        y: 46438,
+      },
+      {
+        x: 189302400000.0,
+        y: 45086,
+      },
+      {
+        x: 220924800000.0,
+        y: 46610,
+      },
+      {
+        x: 252460800000.0,
+        y: 47107,
+      },
+      {
+        x: 283996800000.0,
+        y: 50514,
+      },
+      {
+        x: 315532800000.0,
+        y: 48969,
+      },
+      {
+        x: 347155200000.0,
+        y: 50108,
+      },
+      {
+        x: 378691200000.0,
+        y: 59055,
+      },
+      {
+        x: 410227200000.0,
+        y: 59188,
+      },
+      {
+        x: 441763200000.0,
+        y: 59859,
+      },
+      {
+        x: 473385600000.0,
+        y: 59516,
+      },
+      {
+        x: 504921600000.0,
+        y: 56633,
+      },
+      {
+        x: 536457600000.0,
+        y: 54466,
+      },
+      {
+        x: 567993600000.0,
+        y: 52996,
+      },
+      {
+        x: 599616000000.0,
+        y: 53205,
+      },
+      {
+        x: 631152000000.0,
+        y: 52322,
+      },
+      {
+        x: 662688000000.0,
+        y: 47109,
+      },
+      {
+        x: 694224000000.0,
+        y: 42470,
+      },
+      {
+        x: 725846400000.0,
+        y: 38257,
+      },
+      {
+        x: 757382400000.0,
+        y: 34823,
+      },
+      {
+        x: 788918400000.0,
+        y: 32728,
+      },
+      {
+        x: 820454400000.0,
+        y: 30988,
+      },
+      {
+        x: 852076800000.0,
+        y: 29179,
+      },
+      {
+        x: 883612800000.0,
+        y: 27083,
+      },
+      {
+        x: 915148800000.0,
+        y: 25700,
+      },
+      {
+        x: 946684800000.0,
+        y: 24959,
+      },
+      {
+        x: 978307200000.0,
+        y: 23180,
+      },
+      {
+        x: 1009843200000.0,
+        y: 21731,
+      },
+      {
+        x: 1041379200000.0,
+        y: 20793,
+      },
+      {
+        x: 1072915200000.0,
+        y: 19739,
+      },
+      {
+        x: 1104537600000.0,
+        y: 19190,
+      },
+      {
+        x: 1136073600000.0,
+        y: 19674,
+      },
+      {
+        x: 1167609600000.0,
+        y: 19986,
+      },
+      {
+        x: 1199145600000.0,
+        y: 17771,
+      },
+    ],
+  },
+  {
+    key: ['Daniel'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 24717,
+      },
+      {
+        x: -126230400000.0,
+        y: 23168,
+      },
+      {
+        x: -94694400000.0,
+        y: 22128,
+      },
+      {
+        x: -63158400000.0,
+        y: 21940,
+      },
+      {
+        x: -31536000000.0,
+        y: 23103,
+      },
+      {
+        x: 0.0,
+        y: 23427,
+      },
+      {
+        x: 31536000000.0,
+        y: 21704,
+      },
+      {
+        x: 63072000000.0,
+        y: 22022,
+      },
+      {
+        x: 94694400000.0,
+        y: 23579,
+      },
+      {
+        x: 126230400000.0,
+        y: 23759,
+      },
+      {
+        x: 157766400000.0,
+        y: 23720,
+      },
+      {
+        x: 189302400000.0,
+        y: 24621,
+      },
+      {
+        x: 220924800000.0,
+        y: 25971,
+      },
+      {
+        x: 252460800000.0,
+        y: 26324,
+      },
+      {
+        x: 283996800000.0,
+        y: 28403,
+      },
+      {
+        x: 315532800000.0,
+        y: 29759,
+      },
+      {
+        x: 347155200000.0,
+        y: 30868,
+      },
+      {
+        x: 378691200000.0,
+        y: 32480,
+      },
+      {
+        x: 410227200000.0,
+        y: 34580,
+      },
+      {
+        x: 441763200000.0,
+        y: 36370,
+      },
+      {
+        x: 473385600000.0,
+        y: 38409,
+      },
+      {
+        x: 504921600000.0,
+        y: 36440,
+      },
+      {
+        x: 536457600000.0,
+        y: 35746,
+      },
+      {
+        x: 567993600000.0,
+        y: 34589,
+      },
+      {
+        x: 599616000000.0,
+        y: 34909,
+      },
+      {
+        x: 631152000000.0,
+        y: 33740,
+      },
+      {
+        x: 662688000000.0,
+        y: 30826,
+      },
+      {
+        x: 694224000000.0,
+        y: 29047,
+      },
+      {
+        x: 725846400000.0,
+        y: 28587,
+      },
+      {
+        x: 757382400000.0,
+        y: 27978,
+      },
+      {
+        x: 788918400000.0,
+        y: 26631,
+      },
+      {
+        x: 820454400000.0,
+        y: 25029,
+      },
+      {
+        x: 852076800000.0,
+        y: 23873,
+      },
+      {
+        x: 883612800000.0,
+        y: 23089,
+      },
+      {
+        x: 915148800000.0,
+        y: 22623,
+      },
+      {
+        x: 946684800000.0,
+        y: 22250,
+      },
+      {
+        x: 978307200000.0,
+        y: 20925,
+      },
+      {
+        x: 1009843200000.0,
+        y: 21247,
+      },
+      {
+        x: 1041379200000.0,
+        y: 20980,
+      },
+      {
+        x: 1072915200000.0,
+        y: 20914,
+      },
+      {
+        x: 1104537600000.0,
+        y: 20130,
+      },
+      {
+        x: 1136073600000.0,
+        y: 19946,
+      },
+      {
+        x: 1167609600000.0,
+        y: 20108,
+      },
+      {
+        x: 1199145600000.0,
+        y: 18695,
+      },
+    ],
+  },
+  {
+    key: ['David'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 67646,
+      },
+      {
+        x: -126230400000.0,
+        y: 66207,
+      },
+      {
+        x: -94694400000.0,
+        y: 66581,
+      },
+      {
+        x: -63158400000.0,
+        y: 63531,
+      },
+      {
+        x: -31536000000.0,
+        y: 63502,
+      },
+      {
+        x: 0.0,
+        y: 61570,
+      },
+      {
+        x: 31536000000.0,
+        y: 52948,
+      },
+      {
+        x: 63072000000.0,
+        y: 46218,
+      },
+      {
+        x: 94694400000.0,
+        y: 40968,
+      },
+      {
+        x: 126230400000.0,
+        y: 41654,
+      },
+      {
+        x: 157766400000.0,
+        y: 39019,
+      },
+      {
+        x: 189302400000.0,
+        y: 39165,
+      },
+      {
+        x: 220924800000.0,
+        y: 40407,
+      },
+      {
+        x: 252460800000.0,
+        y: 40533,
+      },
+      {
+        x: 283996800000.0,
+        y: 41898,
+      },
+      {
+        x: 315532800000.0,
+        y: 41743,
+      },
+      {
+        x: 347155200000.0,
+        y: 40486,
+      },
+      {
+        x: 378691200000.0,
+        y: 40283,
+      },
+      {
+        x: 410227200000.0,
+        y: 39048,
+      },
+      {
+        x: 441763200000.0,
+        y: 38346,
+      },
+      {
+        x: 473385600000.0,
+        y: 38395,
+      },
+      {
+        x: 504921600000.0,
+        y: 37021,
+      },
+      {
+        x: 536457600000.0,
+        y: 36672,
+      },
+      {
+        x: 567993600000.0,
+        y: 35214,
+      },
+      {
+        x: 599616000000.0,
+        y: 35139,
+      },
+      {
+        x: 631152000000.0,
+        y: 33661,
+      },
+      {
+        x: 662688000000.0,
+        y: 30347,
+      },
+      {
+        x: 694224000000.0,
+        y: 28344,
+      },
+      {
+        x: 725846400000.0,
+        y: 26947,
+      },
+      {
+        x: 757382400000.0,
+        y: 24784,
+      },
+      {
+        x: 788918400000.0,
+        y: 22967,
+      },
+      {
+        x: 820454400000.0,
+        y: 22941,
+      },
+      {
+        x: 852076800000.0,
+        y: 21824,
+      },
+      {
+        x: 883612800000.0,
+        y: 20816,
+      },
+      {
+        x: 915148800000.0,
+        y: 20267,
+      },
+      {
+        x: 946684800000.0,
+        y: 19695,
+      },
+      {
+        x: 978307200000.0,
+        y: 19281,
+      },
+      {
+        x: 1009843200000.0,
+        y: 18600,
+      },
+      {
+        x: 1041379200000.0,
+        y: 18557,
+      },
+      {
+        x: 1072915200000.0,
+        y: 18315,
+      },
+      {
+        x: 1104537600000.0,
+        y: 18017,
+      },
+      {
+        x: 1136073600000.0,
+        y: 17510,
+      },
+      {
+        x: 1167609600000.0,
+        y: 17400,
+      },
+      {
+        x: 1199145600000.0,
+        y: 16049,
+      },
+    ],
+  },
+  {
+    key: ['James'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 67506,
+      },
+      {
+        x: -126230400000.0,
+        y: 65036,
+      },
+      {
+        x: -94694400000.0,
+        y: 61554,
+      },
+      {
+        x: -63158400000.0,
+        y: 60584,
+      },
+      {
+        x: -31536000000.0,
+        y: 59824,
+      },
+      {
+        x: 0.0,
+        y: 61597,
+      },
+      {
+        x: 31536000000.0,
+        y: 54463,
+      },
+      {
+        x: 63072000000.0,
+        y: 46960,
+      },
+      {
+        x: 94694400000.0,
+        y: 42782,
+      },
+      {
+        x: 126230400000.0,
+        y: 41258,
+      },
+      {
+        x: 157766400000.0,
+        y: 39471,
+      },
+      {
+        x: 189302400000.0,
+        y: 38203,
+      },
+      {
+        x: 220924800000.0,
+        y: 39916,
+      },
+      {
+        x: 252460800000.0,
+        y: 39783,
+      },
+      {
+        x: 283996800000.0,
+        y: 39237,
+      },
+      {
+        x: 315532800000.0,
+        y: 39185,
+      },
+      {
+        x: 347155200000.0,
+        y: 38176,
+      },
+      {
+        x: 378691200000.0,
+        y: 38750,
+      },
+      {
+        x: 410227200000.0,
+        y: 36228,
+      },
+      {
+        x: 441763200000.0,
+        y: 35728,
+      },
+      {
+        x: 473385600000.0,
+        y: 35750,
+      },
+      {
+        x: 504921600000.0,
+        y: 33955,
+      },
+      {
+        x: 536457600000.0,
+        y: 32552,
+      },
+      {
+        x: 567993600000.0,
+        y: 32418,
+      },
+      {
+        x: 599616000000.0,
+        y: 32658,
+      },
+      {
+        x: 631152000000.0,
+        y: 32288,
+      },
+      {
+        x: 662688000000.0,
+        y: 30460,
+      },
+      {
+        x: 694224000000.0,
+        y: 28450,
+      },
+      {
+        x: 725846400000.0,
+        y: 26193,
+      },
+      {
+        x: 757382400000.0,
+        y: 24706,
+      },
+      {
+        x: 788918400000.0,
+        y: 22691,
+      },
+      {
+        x: 820454400000.0,
+        y: 21122,
+      },
+      {
+        x: 852076800000.0,
+        y: 20368,
+      },
+      {
+        x: 883612800000.0,
+        y: 19651,
+      },
+      {
+        x: 915148800000.0,
+        y: 18508,
+      },
+      {
+        x: 946684800000.0,
+        y: 17939,
+      },
+      {
+        x: 978307200000.0,
+        y: 17023,
+      },
+      {
+        x: 1009843200000.0,
+        y: 16905,
+      },
+      {
+        x: 1041379200000.0,
+        y: 16832,
+      },
+      {
+        x: 1072915200000.0,
+        y: 16459,
+      },
+      {
+        x: 1104537600000.0,
+        y: 16046,
+      },
+      {
+        x: 1136073600000.0,
+        y: 16139,
+      },
+      {
+        x: 1167609600000.0,
+        y: 15821,
+      },
+      {
+        x: 1199145600000.0,
+        y: 14920,
+      },
+    ],
+  },
+  {
+    key: ['Jennifer'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 15174,
+      },
+      {
+        x: -126230400000.0,
+        y: 18166,
+      },
+      {
+        x: -94694400000.0,
+        y: 18193,
+      },
+      {
+        x: -63158400000.0,
+        y: 26778,
+      },
+      {
+        x: -31536000000.0,
+        y: 33618,
+      },
+      {
+        x: 0.0,
+        y: 46022,
+      },
+      {
+        x: 31536000000.0,
+        y: 56607,
+      },
+      {
+        x: 63072000000.0,
+        y: 63400,
+      },
+      {
+        x: 94694400000.0,
+        y: 62229,
+      },
+      {
+        x: 126230400000.0,
+        y: 62854,
+      },
+      {
+        x: 157766400000.0,
+        y: 57960,
+      },
+      {
+        x: 189302400000.0,
+        y: 59255,
+      },
+      {
+        x: 220924800000.0,
+        y: 58682,
+      },
+      {
+        x: 252460800000.0,
+        y: 56064,
+      },
+      {
+        x: 283996800000.0,
+        y: 56472,
+      },
+      {
+        x: 315532800000.0,
+        y: 58130,
+      },
+      {
+        x: 347155200000.0,
+        y: 56779,
+      },
+      {
+        x: 378691200000.0,
+        y: 56867,
+      },
+      {
+        x: 410227200000.0,
+        y: 54136,
+      },
+      {
+        x: 441763200000.0,
+        y: 50375,
+      },
+      {
+        x: 473385600000.0,
+        y: 42500,
+      },
+      {
+        x: 504921600000.0,
+        y: 36063,
+      },
+      {
+        x: 536457600000.0,
+        y: 32613,
+      },
+      {
+        x: 567993600000.0,
+        y: 27798,
+      },
+      {
+        x: 599616000000.0,
+        y: 24006,
+      },
+      {
+        x: 631152000000.0,
+        y: 22160,
+      },
+      {
+        x: 662688000000.0,
+        y: 20616,
+      },
+      {
+        x: 694224000000.0,
+        y: 17783,
+      },
+      {
+        x: 725846400000.0,
+        y: 15704,
+      },
+      {
+        x: 757382400000.0,
+        y: 13976,
+      },
+      {
+        x: 788918400000.0,
+        y: 12655,
+      },
+      {
+        x: 820454400000.0,
+        y: 11703,
+      },
+      {
+        x: 852076800000.0,
+        y: 11803,
+      },
+      {
+        x: 883612800000.0,
+        y: 10671,
+      },
+      {
+        x: 915148800000.0,
+        y: 10593,
+      },
+      {
+        x: 946684800000.0,
+        y: 9308,
+      },
+      {
+        x: 978307200000.0,
+        y: 8843,
+      },
+      {
+        x: 1009843200000.0,
+        y: 8317,
+      },
+      {
+        x: 1041379200000.0,
+        y: 7475,
+      },
+      {
+        x: 1072915200000.0,
+        y: 6079,
+      },
+      {
+        x: 1104537600000.0,
+        y: 5413,
+      },
+      {
+        x: 1136073600000.0,
+        y: 4736,
+      },
+      {
+        x: 1167609600000.0,
+        y: 4001,
+      },
+      {
+        x: 1199145600000.0,
+        y: 3010,
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx
new file mode 100644
index 0000000..09a81db
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx
@@ -0,0 +1,36 @@
+/* eslint-disable no-magic-numbers */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import MapBoxChartPlugin from '@superset-ui/legacy-plugin-chart-map-box';
+import data from './data';
+
+new MapBoxChartPlugin().configure({ key: 'map-box' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-map-box',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="map-box"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      allColumnsX: 'LON',
+      allColumnsY: 'LAT',
+      clusteringRadius: '60',
+      globalOpacity: 1,
+      mapboxColor: 'rgb(0, 122, 135)',
+      mapboxLabel: [],
+      mapboxStyle: 'mapbox://styles/mapbox/light-v9',
+      pandasAggfunc: 'sum',
+      pointRadius: 'Auto',
+      pointRadiusUnit: 'Pixels',
+      renderWhileDragging: true,
+      viewportLatitude: 37.78711146014447,
+      viewportLongitude: -122.37633433151713,
+      viewportZoom: 10.026425338292782,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/data.ts
new file mode 100644
index 0000000..cf8b22b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/data.ts
@@ -0,0 +1,5523 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default {
+  geoJSON: {
+    type: 'FeatureCollection',
+    features: [
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3912672, 37.769092799999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3908502, 37.769425899999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.428577, 37.780626700000006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42853410000001, 37.780384999999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4285247, 37.7803172],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4289542, 37.780288299999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42854750000001, 37.7804295],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42856090000002, 37.7805154],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42777749999999, 37.7796098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42755859999998, 37.778689799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42743229999999, 37.777719399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4134558, 37.7484727],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4134693, 37.748557500000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4134719, 37.7486508],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41349609999999, 37.7487166],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41395, 37.7486402],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4139875, 37.7487919],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41354140000001, 37.7489449],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.413528, 37.7490021],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4135253, 37.7491167],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4135145, 37.749193],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.414019, 37.7491316],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4117365, 37.7486445],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41175259999999, 37.7487696],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4117285, 37.7485724],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4117795, 37.7490453],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4117929, 37.749128000000006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41121129999999, 37.7487523],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41121129999999, 37.7487523],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41122390000001, 37.748883500000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41122390000001, 37.748883500000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41122390000001, 37.748883500000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41122390000001, 37.748883500000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41121129999999, 37.7487523],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.411202, 37.748655299999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4113189, 37.7485282],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4117952, 37.7491739],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4118113, 37.74928],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41123770000002, 37.749056],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4112471, 37.749125799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41124040000001, 37.749056],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41123370000001, 37.748986200000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4113098, 37.749328600000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4113098, 37.749328600000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4113098, 37.749328600000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4112602, 37.7492628],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41125359999998, 37.7491943],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41261899999999, 37.748848100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42924, 37.773016299999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42922630000001, 37.7729485],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42925359999998, 37.773084000000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.429199, 37.7728129],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.429199, 37.7728129],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.429199, 37.7728129],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42921270000001, 37.7728807],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42921270000001, 37.7728807],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.429199, 37.7728129],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42803329999998, 37.772907000000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42803329999998, 37.772907000000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.36907930000001, 37.829124799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4194821, 37.7965601],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4194039, 37.79657],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41916909999999, 37.796599799999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4190509, 37.7966143],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4189344, 37.796629700000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4193241, 37.7965791],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4194821, 37.7965601],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4195577, 37.7965517],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4194039, 37.79657],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4194039, 37.79657],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4189344, 37.796629700000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4189344, 37.796629700000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4193241, 37.7965791],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4193241, 37.7965791],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4195577, 37.7965517],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4197094, 37.7964617],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4197094, 37.7964617],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4198895, 37.796369299999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4197094, 37.7964617],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.419622, 37.796477100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41922220000001, 37.7964735],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41922220000001, 37.7964735],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41922079999999, 37.7964746],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41922079999999, 37.7964746],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.419622, 37.796477100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.419622, 37.796477100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42507509999999, 37.805799],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3680513, 37.8109768],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42400220000002, 37.7726917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42400220000002, 37.7726917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42400220000002, 37.7726917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42400220000002, 37.7726917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42400220000002, 37.7726917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42400220000002, 37.7726917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42400220000002, 37.7726917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4242303, 37.7722281],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4238774, 37.772139200000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4240507, 37.7724944],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3958111, 37.794331],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3960615, 37.7961555],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39385370000001, 37.7941917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39385370000001, 37.7941917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39385370000001, 37.7941917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39385370000001, 37.7941917],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.475146, 37.804753000000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4753019, 37.804900399999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.47424170000001, 37.8046516],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37621399999999, 37.82493],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37621399999999, 37.82493],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37621399999999, 37.82493],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37621399999999, 37.82493],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37621399999999, 37.82493],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37621399999999, 37.82493],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37621399999999, 37.82493],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37600479999999, 37.8245274],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37600479999999, 37.8245274],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37600479999999, 37.8245274],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37600479999999, 37.8245274],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37600479999999, 37.8245274],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37600479999999, 37.8245274],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37600479999999, 37.8245274],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3759163, 37.8274638],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3760075, 37.827158700000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37581429999999, 37.8268833],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3754657, 37.8273198],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3985469, 37.7147003],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.43389350000001, 37.804396000000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.43389350000001, 37.804396000000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.43384569999999, 37.80415870000001],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4338662, 37.8042604],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4339084, 37.804563],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4339084, 37.804563],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4339084, 37.804563],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3676041, 37.8289299],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4280895, 37.803383200000006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4280746, 37.803309999999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4279744, 37.803245200000006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863600000001, 37.8033228],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863600000001, 37.8033228],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863600000001, 37.8033228],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863600000001, 37.8033228],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863600000001, 37.8033228],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4286077, 37.8033994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4286581, 37.8032157],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4286077, 37.8033994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863179999999, 37.80351829999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42812140000001, 37.803540500000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4285142, 37.8029385],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42859469999999, 37.8031195],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42853819999999, 37.8030571],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.428076, 37.8030467],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42853819999999, 37.8030571],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42859469999999, 37.8031195],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4278783, 37.803670200000006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42788300000001, 37.8036681],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42788829999999, 37.8036691],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4279398, 37.803498600000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4277419, 37.803523799999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4277419, 37.803523799999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4272755, 37.803583200000006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4274357, 37.803562799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4275639, 37.8035465],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4276493, 37.803535600000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42703529999999, 37.80374929999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4290591, 37.8033565],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4290591, 37.8033565],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42881650000001, 37.8034566],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4294863, 37.8033021],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4294863, 37.8033021],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42881650000001, 37.8034566],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4294009, 37.803313],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42881650000001, 37.8034566],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.428895, 37.8034118],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4289737, 37.8033673],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4291873, 37.8033401],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42931540000001, 37.803323799999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4294009, 37.803313],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4294863, 37.8033021],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863179999999, 37.80351829999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863179999999, 37.80351829999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863179999999, 37.80351829999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863179999999, 37.80351829999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863179999999, 37.80351829999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42863179999999, 37.80351829999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4071531, 37.8039556],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4071531, 37.8039556],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.40703490000001, 37.8039679],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4225845, 37.7450152],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42252090000001, 37.745434700000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4225145, 37.745363899999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4225749, 37.7450845],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4225657, 37.7451538],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4225657, 37.7451538],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4225605, 37.74522279999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.42256100000002, 37.7452914],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38996770000001, 37.769589],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3952066, 37.7711267],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3719278, 37.825213899999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37250719999999, 37.825984999999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37384240000002, 37.8252314],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39015079999999, 37.7747333],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39134640000002, 37.7746826],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.43379420000001, 37.7901049],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4338035, 37.79010170000001],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.388603, 37.755928000000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3895312, 37.75579929999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889626, 37.756876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888915, 37.7574041],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888915, 37.7574041],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888915, 37.7574041],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888915, 37.7574041],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888915, 37.7574041],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888915, 37.7574041],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888756, 37.7572329],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889752, 37.7571094],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38897390000001, 37.7571094],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889547, 37.757106],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888756, 37.7572329],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38886979999998, 37.7571708],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3886976, 37.7565519],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38898190000002, 37.757020399999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38898329999999, 37.7570225],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38897659999998, 37.7570246],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38898190000002, 37.757027799999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38897790000001, 37.757026700000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888193, 37.7567712],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38890740000001, 37.7575753],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3895229, 37.7574799],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38890740000001, 37.7575753],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.388901, 37.757506799999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3895229, 37.7574799],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38952920000001, 37.7575484],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38954199999999, 37.75768529999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38953559999999, 37.7576169],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38896580000001, 37.757709999999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38954199999999, 37.75768529999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889138, 37.7576438],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38896580000001, 37.757709999999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38953559999999, 37.7576169],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38954199999999, 37.75768529999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3896298, 37.7568335],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38881140000001, 37.7566641],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38888200000001, 37.757301399999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38940179999999, 37.7573381],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38940179999999, 37.7573381],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38940179999999, 37.7573381],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3894138, 37.7574072],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3894138, 37.7574072],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3894138, 37.7574072],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38954820000001, 37.7577471],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.387429, 37.7564374],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38748799999999, 37.7572135],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38743980000001, 37.756573100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38499540000001, 37.7565966],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38499540000001, 37.7565966],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38747190000001, 37.7570312],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38749340000001, 37.7574892],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3874827, 37.7569336],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38743980000001, 37.7566876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3874827, 37.7573365],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38751029999999, 37.7576727],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38751840000002, 37.7577395],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900683, 37.7536999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41864240000001, 37.75806179999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41864240000001, 37.75806179999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41864240000001, 37.75806179999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41864240000001, 37.75806179999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41929669999999, 37.7580568],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192706, 37.7577843],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4186227, 37.7578564],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4186227, 37.7578564],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192706, 37.7577843],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41861090000002, 37.757733200000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4185998, 37.757616799999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4193882, 37.7576486],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4185998, 37.757616799999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4193882, 37.7576486],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4185932, 37.757548299999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192135, 37.7571874],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192135, 37.7571874],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192135, 37.7571874],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4186189, 37.757409],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4193777, 37.7574404],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4185867, 37.7574798],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41860449999999, 37.7572584],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41860449999999, 37.7572584],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41860449999999, 37.7572584],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41860449999999, 37.7572584],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4186189, 37.757409],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41860449999999, 37.7572584],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192246, 37.7573037],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192784, 37.757865100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41863059999999, 37.7579385],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192784, 37.757865100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192875, 37.757961],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192875, 37.757961],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192875, 37.757961],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41860449999999, 37.7572584],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4192135, 37.7571874],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41863059999999, 37.7579385],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4186227, 37.7578564],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.40286329999999, 37.790087400000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.40286329999999, 37.790087400000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.40287140000001, 37.790098],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.40269709999998, 37.790225],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.40269709999998, 37.790225],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.40277340000002, 37.7901532],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.40252360000001, 37.7897601],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.41244499999999, 37.7101158],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.44410729999998, 37.757026],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.444148, 37.75711939999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.44403740000001, 37.7569565],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4439387, 37.7569094],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.44386180000001, 37.7568449],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.44403740000001, 37.7569565],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.443852, 37.7564226],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.44373859999999, 37.756323200000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.44373859999999, 37.756323200000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.44360520000001, 37.7566893],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.443754, 37.7567456],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4439962, 37.7565479],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3954717, 37.7901856],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39746059999999, 37.7891958],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39739979999999, 37.7893325],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3974095, 37.7894162],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3973043, 37.789744799999994],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39759340000002, 37.7894876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39759340000002, 37.7894876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39759340000002, 37.7894876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39759340000002, 37.7894876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39759340000002, 37.7894876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39759340000002, 37.7894876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39759340000002, 37.7894876],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3975057, 37.7894174],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39838950000001, 37.7185335],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3675625, 37.810389799999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.37165159999998, 37.8162006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.45272079999998, 37.7556186],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38902309999999, 37.7307125],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3890935, 37.7307524],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3891639, 37.7307923],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38881200000002, 37.7305929],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889527, 37.730672600000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38923559999999, 37.730833000000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38926809999998, 37.731458700000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38918899999999, 37.7314138],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3890746, 37.731349],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3889603, 37.7312842],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38888109999999, 37.7312393],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888019, 37.7311945],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38873159999999, 37.7311546],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3886436, 37.7311047],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3887, 37.730571600000005],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888824, 37.730632799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888824, 37.730632799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888824, 37.730632799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3888824, 37.730632799999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38853799999998, 37.73104489999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3884501, 37.7309951],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38840479999999, 37.7309272],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38859440000002, 37.7305117],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3883345, 37.7308874],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3882642, 37.730847499999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38859440000002, 37.7305117],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38859440000002, 37.7305117],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38853799999998, 37.73104489999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38951570000002, 37.730991700000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3895861, 37.7310316],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38972679999999, 37.731111299999995],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3896564, 37.7310714],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3897972, 37.731151200000006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3897972, 37.731151200000006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.389306, 37.73087279999999],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.389375, 37.7309119],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38944529999999, 37.7309518],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3898676, 37.731191100000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.38993789999999, 37.731231],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.39000829999999, 37.7312708],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3900787, 37.7313107],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3893913, 37.731528499999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.3901449, 37.7314143],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4646808, 37.743914200000006],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4645595, 37.7439238],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4644415, 37.7439331],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.46430120000001, 37.743945000000004],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.36871940000002, 37.8272473],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4485467, 37.7318206],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4485467, 37.7318206],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4485467, 37.7318206],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.44807079999998, 37.731822799999996],
+        },
+      },
+      {
+        type: 'Feature',
+        properties: {
+          metric: null,
+          radius: null,
+        },
+        geometry: {
+          type: 'Point',
+          coordinates: [-122.4487196, 37.7318198],
+        },
+      },
+    ],
+  },
+  hasCustomMetric: false,
+  mapboxApiKey:
+    'pk.eyJ1Ijoia3Jpc3R3IiwiYSI6ImNqbGg1N242NTFlczczdnBhazViMjgzZ2sifQ.lUneM-o3NucXN189EYyXxQ',
+  mapStyle: 'mapbox://styles/mapbox/light-v9',
+  aggregatorName: 'sum',
+  clusteringRadius: '60',
+  pointRadiusUnit: 'Pixels',
+  globalOpacity: 1,
+  bounds: [
+    [-122.4753019, 37.7101158],
+    [-122.3675625, 37.829124799999995],
+  ],
+  renderWhileDragging: true,
+  tooltip: null,
+  color: 'rgb(0, 122, 135)',
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx
new file mode 100644
index 0000000..4cf1737
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx
@@ -0,0 +1,27 @@
+/* eslint-disable no-magic-numbers */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import PairedTTestChartPlugin from '@superset-ui/legacy-plugin-chart-paired-t-test';
+import data from './data';
+
+new PairedTTestChartPlugin().configure({ key: 'paired-t-test' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-paired-t-test',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="paired-t-test"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      groupby: ['name'],
+      liftvaluePrecision: 4,
+      metrics: ['sum__num'],
+      pvaluePrecision: 6,
+      significanceLevel: 0.05,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/data.ts
new file mode 100644
index 0000000..3214eda
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/data.ts
@@ -0,0 +1,683 @@
+/* eslint-disable sort-keys */
+export default {
+  sum__num: [
+    {
+      group: ['Christopher'],
+      values: [
+        {
+          x: -157766400000.0,
+          y: null,
+        },
+        {
+          x: -126230400000.0,
+          y: null,
+        },
+        {
+          x: -94694400000.0,
+          y: null,
+        },
+        {
+          x: -63158400000.0,
+          y: null,
+        },
+        {
+          x: -31536000000.0,
+          y: null,
+        },
+        {
+          x: 0.0,
+          y: null,
+        },
+        {
+          x: 31536000000.0,
+          y: null,
+        },
+        {
+          x: 63072000000.0,
+          y: null,
+        },
+        {
+          x: 94694400000.0,
+          y: null,
+        },
+        {
+          x: 126230400000.0,
+          y: null,
+        },
+        {
+          x: 157766400000.0,
+          y: null,
+        },
+        {
+          x: 189302400000.0,
+          y: null,
+        },
+        {
+          x: 220924800000.0,
+          y: null,
+        },
+        {
+          x: 252460800000.0,
+          y: null,
+        },
+        {
+          x: 283996800000.0,
+          y: null,
+        },
+        {
+          x: 315532800000.0,
+          y: null,
+        },
+        {
+          x: 347155200000.0,
+          y: null,
+        },
+        {
+          x: 378691200000.0,
+          y: 59055.0,
+        },
+        {
+          x: 410227200000.0,
+          y: 59188.0,
+        },
+        {
+          x: 441763200000.0,
+          y: 59859.0,
+        },
+        {
+          x: 473385600000.0,
+          y: 59516.0,
+        },
+        {
+          x: 504921600000.0,
+          y: null,
+        },
+        {
+          x: 536457600000.0,
+          y: null,
+        },
+        {
+          x: 567993600000.0,
+          y: null,
+        },
+        {
+          x: 599616000000.0,
+          y: null,
+        },
+        {
+          x: 631152000000.0,
+          y: null,
+        },
+        {
+          x: 662688000000.0,
+          y: null,
+        },
+      ],
+    },
+    {
+      group: ['David'],
+      values: [
+        {
+          x: -157766400000.0,
+          y: 67646.0,
+        },
+        {
+          x: -126230400000.0,
+          y: 66207.0,
+        },
+        {
+          x: -94694400000.0,
+          y: 66581.0,
+        },
+        {
+          x: -63158400000.0,
+          y: 63531.0,
+        },
+        {
+          x: -31536000000.0,
+          y: 63502.0,
+        },
+        {
+          x: 0.0,
+          y: 61570.0,
+        },
+        {
+          x: 31536000000.0,
+          y: null,
+        },
+        {
+          x: 63072000000.0,
+          y: null,
+        },
+        {
+          x: 94694400000.0,
+          y: null,
+        },
+        {
+          x: 126230400000.0,
+          y: null,
+        },
+        {
+          x: 157766400000.0,
+          y: null,
+        },
+        {
+          x: 189302400000.0,
+          y: null,
+        },
+        {
+          x: 220924800000.0,
+          y: null,
+        },
+        {
+          x: 252460800000.0,
+          y: null,
+        },
+        {
+          x: 283996800000.0,
+          y: null,
+        },
+        {
+          x: 315532800000.0,
+          y: null,
+        },
+        {
+          x: 347155200000.0,
+          y: null,
+        },
+        {
+          x: 378691200000.0,
+          y: null,
+        },
+        {
+          x: 410227200000.0,
+          y: null,
+        },
+        {
+          x: 441763200000.0,
+          y: null,
+        },
+        {
+          x: 473385600000.0,
+          y: null,
+        },
+        {
+          x: 504921600000.0,
+          y: null,
+        },
+        {
+          x: 536457600000.0,
+          y: null,
+        },
+        {
+          x: 567993600000.0,
+          y: null,
+        },
+        {
+          x: 599616000000.0,
+          y: null,
+        },
+        {
+          x: 631152000000.0,
+          y: null,
+        },
+        {
+          x: 662688000000.0,
+          y: null,
+        },
+      ],
+    },
+    {
+      group: ['James'],
+      values: [
+        {
+          x: -157766400000.0,
+          y: 67506.0,
+        },
+        {
+          x: -126230400000.0,
+          y: 65036.0,
+        },
+        {
+          x: -94694400000.0,
+          y: 61554.0,
+        },
+        {
+          x: -63158400000.0,
+          y: 60584.0,
+        },
+        {
+          x: -31536000000.0,
+          y: 59824.0,
+        },
+        {
+          x: 0.0,
+          y: 61597.0,
+        },
+        {
+          x: 31536000000.0,
+          y: null,
+        },
+        {
+          x: 63072000000.0,
+          y: null,
+        },
+        {
+          x: 94694400000.0,
+          y: null,
+        },
+        {
+          x: 126230400000.0,
+          y: null,
+        },
+        {
+          x: 157766400000.0,
+          y: null,
+        },
+        {
+          x: 189302400000.0,
+          y: null,
+        },
+        {
+          x: 220924800000.0,
+          y: null,
+        },
+        {
+          x: 252460800000.0,
+          y: null,
+        },
+        {
+          x: 283996800000.0,
+          y: null,
+        },
+        {
+          x: 315532800000.0,
+          y: null,
+        },
+        {
+          x: 347155200000.0,
+          y: null,
+        },
+        {
+          x: 378691200000.0,
+          y: null,
+        },
+        {
+          x: 410227200000.0,
+          y: null,
+        },
+        {
+          x: 441763200000.0,
+          y: null,
+        },
+        {
+          x: 473385600000.0,
+          y: null,
+        },
+        {
+          x: 504921600000.0,
+          y: null,
+        },
+        {
+          x: 536457600000.0,
+          y: null,
+        },
+        {
+          x: 567993600000.0,
+          y: null,
+        },
+        {
+          x: 599616000000.0,
+          y: null,
+        },
+        {
+          x: 631152000000.0,
+          y: null,
+        },
+        {
+          x: 662688000000.0,
+          y: null,
+        },
+      ],
+    },
+    {
+      group: ['John'],
+      values: [
+        {
+          x: -157766400000.0,
+          y: 71390.0,
+        },
+        {
+          x: -126230400000.0,
+          y: 64858.0,
+        },
+        {
+          x: -94694400000.0,
+          y: 61480.0,
+        },
+        {
+          x: -63158400000.0,
+          y: 60754.0,
+        },
+        {
+          x: -31536000000.0,
+          y: 58644.0,
+        },
+        {
+          x: 0.0,
+          y: null,
+        },
+        {
+          x: 31536000000.0,
+          y: null,
+        },
+        {
+          x: 63072000000.0,
+          y: null,
+        },
+        {
+          x: 94694400000.0,
+          y: null,
+        },
+        {
+          x: 126230400000.0,
+          y: null,
+        },
+        {
+          x: 157766400000.0,
+          y: null,
+        },
+        {
+          x: 189302400000.0,
+          y: null,
+        },
+        {
+          x: 220924800000.0,
+          y: null,
+        },
+        {
+          x: 252460800000.0,
+          y: null,
+        },
+        {
+          x: 283996800000.0,
+          y: null,
+        },
+        {
+          x: 315532800000.0,
+          y: null,
+        },
+        {
+          x: 347155200000.0,
+          y: null,
+        },
+        {
+          x: 378691200000.0,
+          y: null,
+        },
+        {
+          x: 410227200000.0,
+          y: null,
+        },
+        {
+          x: 441763200000.0,
+          y: null,
+        },
+        {
+          x: 473385600000.0,
+          y: null,
+        },
+        {
+          x: 504921600000.0,
+          y: null,
+        },
+        {
+          x: 536457600000.0,
+          y: null,
+        },
+        {
+          x: 567993600000.0,
+          y: null,
+        },
+        {
+          x: 599616000000.0,
+          y: null,
+        },
+        {
+          x: 631152000000.0,
+          y: null,
+        },
+        {
+          x: 662688000000.0,
+          y: null,
+        },
+      ],
+    },
+    {
+      group: ['Michael'],
+      values: [
+        {
+          x: -157766400000.0,
+          y: 80812.0,
+        },
+        {
+          x: -126230400000.0,
+          y: 79709.0,
+        },
+        {
+          x: -94694400000.0,
+          y: 82204.0,
+        },
+        {
+          x: -63158400000.0,
+          y: 81785.0,
+        },
+        {
+          x: -31536000000.0,
+          y: 84893.0,
+        },
+        {
+          x: 0.0,
+          y: 85015.0,
+        },
+        {
+          x: 31536000000.0,
+          y: 77321.0,
+        },
+        {
+          x: 63072000000.0,
+          y: 71197.0,
+        },
+        {
+          x: 94694400000.0,
+          y: 67598.0,
+        },
+        {
+          x: 126230400000.0,
+          y: 67304.0,
+        },
+        {
+          x: 157766400000.0,
+          y: 68149.0,
+        },
+        {
+          x: 189302400000.0,
+          y: 66686.0,
+        },
+        {
+          x: 220924800000.0,
+          y: 67344.0,
+        },
+        {
+          x: 252460800000.0,
+          y: 66875.0,
+        },
+        {
+          x: 283996800000.0,
+          y: 67473.0,
+        },
+        {
+          x: 315532800000.0,
+          y: 68375.0,
+        },
+        {
+          x: 347155200000.0,
+          y: 68467.0,
+        },
+        {
+          x: 378691200000.0,
+          y: 67904.0,
+        },
+        {
+          x: 410227200000.0,
+          y: 67708.0,
+        },
+        {
+          x: 441763200000.0,
+          y: 67457.0,
+        },
+        {
+          x: 473385600000.0,
+          y: 64667.0,
+        },
+        {
+          x: 504921600000.0,
+          y: 63959.0,
+        },
+        {
+          x: 536457600000.0,
+          y: 63442.0,
+        },
+        {
+          x: 567993600000.0,
+          y: 63924.0,
+        },
+        {
+          x: 599616000000.0,
+          y: 65233.0,
+        },
+        {
+          x: 631152000000.0,
+          y: 65138.0,
+        },
+        {
+          x: 662688000000.0,
+          y: 60646.0,
+        },
+      ],
+    },
+    {
+      group: ['Robert'],
+      values: [
+        {
+          x: -157766400000.0,
+          y: 62973.0,
+        },
+        {
+          x: -126230400000.0,
+          y: 59162.0,
+        },
+        {
+          x: -94694400000.0,
+          y: null,
+        },
+        {
+          x: -63158400000.0,
+          y: null,
+        },
+        {
+          x: -31536000000.0,
+          y: null,
+        },
+        {
+          x: 0.0,
+          y: null,
+        },
+        {
+          x: 31536000000.0,
+          y: null,
+        },
+        {
+          x: 63072000000.0,
+          y: null,
+        },
+        {
+          x: 94694400000.0,
+          y: null,
+        },
+        {
+          x: 126230400000.0,
+          y: null,
+        },
+        {
+          x: 157766400000.0,
+          y: null,
+        },
+        {
+          x: 189302400000.0,
+          y: null,
+        },
+        {
+          x: 220924800000.0,
+          y: null,
+        },
+        {
+          x: 252460800000.0,
+          y: null,
+        },
+        {
+          x: 283996800000.0,
+          y: null,
+        },
+        {
+          x: 315532800000.0,
+          y: null,
+        },
+        {
+          x: 347155200000.0,
+          y: null,
+        },
+        {
+          x: 378691200000.0,
+          y: null,
+        },
+        {
+          x: 410227200000.0,
+          y: null,
+        },
+        {
+          x: 441763200000.0,
+          y: null,
+        },
+        {
+          x: 473385600000.0,
+          y: null,
+        },
+        {
+          x: 504921600000.0,
+          y: null,
+        },
+        {
+          x: 536457600000.0,
+          y: null,
+        },
+        {
+          x: 567993600000.0,
+          y: null,
+        },
+        {
+          x: 599616000000.0,
+          y: null,
+        },
+        {
+          x: 631152000000.0,
+          y: null,
+        },
+        {
+          x: 662688000000.0,
+          y: null,
+        },
+      ],
+    },
+  ],
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx
new file mode 100644
index 0000000..672a3cc
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx
@@ -0,0 +1,27 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import ParallelCoordinatesChartPlugin from '@superset-ui/legacy-plugin-chart-parallel-coordinates';
+import data from './data';
+
+new ParallelCoordinatesChartPlugin().configure({ key: 'parallel-coordinates' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-parallel-coordinates',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="parallel-coordinates"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      includeSeries: false,
+      linearColorScheme: 'schemeRdYlBu',
+      metrics: ['sum__SP_POP_TOTL', 'sum__SP_RUR_TOTL_ZS', 'sum__SH_DYN_AIDS'],
+      secondaryMetric: 'sum__SP_POP_TOTL',
+      series: 'country_name',
+      showDatatable: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/data.ts
new file mode 100644
index 0000000..fd248d3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/data.ts
@@ -0,0 +1,62 @@
+export default [
+  {
+    country_name: 'China',
+    sum__SP_POP_TOTL: 1344130000.0,
+    sum__SP_RUR_TOTL_ZS: 49.427,
+    sum__SH_DYN_AIDS: 0.0,
+  },
+  {
+    country_name: 'India',
+    sum__SP_POP_TOTL: 1247446011.0,
+    sum__SP_RUR_TOTL_ZS: 68.724,
+    sum__SH_DYN_AIDS: 0.0,
+  },
+  {
+    country_name: 'United States',
+    sum__SP_POP_TOTL: 311721632.0,
+    sum__SP_RUR_TOTL_ZS: 19.06,
+    sum__SH_DYN_AIDS: 0.0,
+  },
+  {
+    country_name: 'Indonesia',
+    sum__SP_POP_TOTL: 244808254.0,
+    sum__SP_RUR_TOTL_ZS: 49.288,
+    sum__SH_DYN_AIDS: 540000.0,
+  },
+  {
+    country_name: 'Brazil',
+    sum__SP_POP_TOTL: 200517584.0,
+    sum__SP_RUR_TOTL_ZS: 15.377,
+    sum__SH_DYN_AIDS: 0.0,
+  },
+  {
+    country_name: 'Pakistan',
+    sum__SP_POP_TOTL: 173669648.0,
+    sum__SP_RUR_TOTL_ZS: 62.993,
+    sum__SH_DYN_AIDS: 52000.0,
+  },
+  {
+    country_name: 'Nigeria',
+    sum__SP_POP_TOTL: 163770669.0,
+    sum__SP_RUR_TOTL_ZS: 55.638,
+    sum__SH_DYN_AIDS: 3000000.0,
+  },
+  {
+    country_name: 'Bangladesh',
+    sum__SP_POP_TOTL: 153405612.0,
+    sum__SP_RUR_TOTL_ZS: 68.775,
+    sum__SH_DYN_AIDS: 7800.0,
+  },
+  {
+    country_name: 'Russian Federation',
+    sum__SP_POP_TOTL: 142960868.0,
+    sum__SP_RUR_TOTL_ZS: 26.268,
+    sum__SH_DYN_AIDS: 0.0,
+  },
+  {
+    country_name: 'Japan',
+    sum__SP_POP_TOTL: 127817277.0,
+    sum__SP_RUR_TOTL_ZS: 8.752,
+    sum__SH_DYN_AIDS: 0.0,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx
new file mode 100644
index 0000000..c238e59
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx
@@ -0,0 +1,34 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import PartitionChartPlugin from '@superset-ui/legacy-plugin-chart-partition';
+import data from './data';
+import dummyDatasource from '../../../shared/dummyDatasource';
+
+new PartitionChartPlugin().configure({ key: 'partition' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-partition',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="partition"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      dateTimeFormat: '%Y-%m-%d',
+      equalDateSize: true,
+      groupby: ['region', 'country_code'],
+      logScale: false,
+      metrics: ['sum__SP_POP_TOTL'],
+      numberFormat: '.3s',
+      partitionLimit: '5',
+      partitionThreshold: '0.05',
+      richTooltip: true,
+      timeSeriesOption: 'not-time',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/data.ts
new file mode 100644
index 0000000..ed5deab
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/data.ts
@@ -0,0 +1,94 @@
+export default [
+  {
+    name: 'World',
+    val: 165709793794.0,
+    children: [
+      {
+        name: 'East Asia & Pacific',
+        val: 74157936990.0,
+        children: [
+          {
+            name: 'CHN',
+            val: 58345455000.0,
+            children: [],
+          },
+          {
+            name: 'IDN',
+            val: 9357861231.0,
+            children: [],
+          },
+          {
+            name: 'JPN',
+            val: 6454620759.0,
+            children: [],
+          },
+        ],
+      },
+      {
+        name: 'Europe & Central Asia',
+        val: 7667188460.0,
+        children: [
+          {
+            name: 'RUS',
+            val: 7667188460.0,
+            children: [],
+          },
+        ],
+      },
+      {
+        name: 'Latin America & Caribbean',
+        val: 7752058955.0,
+        children: [
+          {
+            name: 'BRA',
+            val: 7752058955.0,
+            children: [],
+          },
+        ],
+      },
+      {
+        name: 'North America',
+        val: 13604468357.0,
+        children: [
+          {
+            name: 'USA',
+            val: 13604468357.0,
+            children: [],
+          },
+        ],
+      },
+      {
+        name: 'South Asia',
+        val: 57268340539.0,
+        children: [
+          {
+            name: 'BGD',
+            val: 5549261462.0,
+            children: [],
+          },
+          {
+            name: 'IND',
+            val: 46023037597.0,
+            children: [],
+          },
+          {
+            name: 'PAK',
+            val: 5696041480.0,
+            children: [],
+          },
+        ],
+      },
+      {
+        name: 'Sub-Saharan Africa',
+        val: 5259800493.0,
+        children: [
+          {
+            name: 'NGA',
+            val: 5259800493.0,
+            children: [],
+          },
+        ],
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx
new file mode 100644
index 0000000..dc2fc91
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx
@@ -0,0 +1,68 @@
+/* eslint-disable no-magic-numbers */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import PivotTableChartPlugin from '@superset-ui/legacy-plugin-chart-pivot-table';
+import 'bootstrap/dist/css/bootstrap.min.css';
+
+new PivotTableChartPlugin().configure({ key: 'pivot-table' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-pivot-table',
+};
+
+const datasource = {
+  columnFormats: {},
+  verboseMap: {
+    sum__num: 'sum__num',
+  },
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="pivot-table"
+    width={400}
+    height={400}
+    datasource={datasource}
+    queriesData={[
+      {
+        data: {
+          columns: [
+            ['sum__num', 'other'],
+            ['sum__num', 'All'],
+          ],
+          html:
+            '<table border="1" class="dataframe dataframe table table-striped table-bordered table-condensed table-hover">\n  <thead>\n    <tr>\n      <th></th>\n      <th colspan="2" halign="left">sum__num</th>\n    </tr>\n    <tr>\n      <th>state</th>\n      <th>other</th>\n      <th>All</th>\n    </tr>\n    <tr>\n      <th>name</th>\n      <th></th>\n      <th></th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <th>Christopher</th>\n      <td>803607</td>\n      <td>803607</td>\n    </tr>\n    <tr>\n      <th>David</th>\n      <td>673992</td>\n      <td>673992</td>\n    </tr>\n    <tr>\n      <th>James</th>\n      <td>749686</td>\n      <td>749686</td>\n    </tr>\n    <tr>\n      <th>Jennifer</th>\n      <td>587540</td>\n      <td>587540</td>\n    </tr>\n    <tr>\n      <th>John</th>\n      <td>638450</td>\n      <td>638450</td>\n    </tr>\n    <tr>\n      <th>Joshua</th>\n      <td>548044</td>\n      <td>548044</td>\n    </tr>\n    <tr>\n      <th>Matthew</th>\n      <td>608212</td>\n      <td>608212</td>\n    </tr>\n    <tr>\n      <th>Michael</th>\n      <td>1047996</td>\n      <td>1047996</td>\n    </tr>\n    <tr>\n      <th>Robert</th>\n      <td>575592</td>\n      <td>575592</td>\n    </tr>\n    <tr>\n      <th>William</th>\n      <td>574464</td>\n      <td>574464</td>\n    </tr>\n    <tr>\n      <th>All</th>\n      <td>6807583</td>\n      <td>6807583</td>\n    </tr>\n  </tbody>\n</table>',
+        },
+      },
+    ]}
+    formData={{
+      groupby: ['name'],
+      numberFormat: '.3s',
+    }}
+  />
+);
+
+export const withNull = () => (
+  <SuperChart
+    chartType="pivot-table"
+    width={400}
+    height={400}
+    datasource={datasource}
+    queriesData={[
+      {
+        data: {
+          columns: [
+            ['sum__num', 'other'],
+            ['sum__num', 'All'],
+          ],
+          html:
+            '<table border="1" class="dataframe dataframe table table-striped table-bordered table-condensed table-hover">\n  <thead>\n    <tr>\n      <th></th>\n      <th colspan="2" halign="left">sum__num</th>\n    </tr>\n    <tr>\n      <th>state</th>\n      <th>other</th>\n      <th>All</th>\n    </tr>\n    <tr>\n      <th>name</th>\n      <th></th>\n      <th></th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <th>Christopher</th>\n      <td>null</td>\n      <td>803607</td>\n    </tr>\n    <tr>\n      <th>David</th>\n      <td>null</td>\n      <td>673992</td>\n    </tr>\n    <tr>\n      <th>James</th>\n      <td>749686</td>\n      <td>null</td>\n    </tr>\n    <tr>\n      <th>Jennifer</th>\n      <td>587540</td>\n      <td>null</td>\n    </tr>\n    <tr>\n      <th>John</th>\n      <td>638450</td>\n      <td>638450</td>\n    </tr>\n    <tr>\n      <th>Joshua</th>\n      <td>null</td>\n      <td>548044</td>\n    </tr>\n    <tr>\n      <th>Matthew</th>\n      <td>608212</td>\n      <td>608212</td>\n    </tr>\n    <tr>\n      <th>Michael</th>\n      <td>1047996</td>\n      <td>1047996</td>\n    </tr>\n    <tr>\n      <th>Robert</th>\n      <td>575592</td>\n      <td>575592</td>\n    </tr>\n    <tr>\n      <th>William</th>\n      <td>574464</td>\n      <td>574464</td>\n    </tr>\n    <tr>\n      <th>All</th>\n      <td>6807583</td>\n      <td>6807583</td>\n    </tr>\n  </tbody>\n</table>',
+        },
+      },
+    ]}
+    formData={{
+      groupby: ['name'],
+      numberFormat: '.3s',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx
new file mode 100644
index 0000000..f70fdd6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx
@@ -0,0 +1,27 @@
+/* eslint-disable no-magic-numbers, sort-keys */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import RoseChartPlugin from '@superset-ui/legacy-plugin-chart-rose';
+import data from './data';
+
+new RoseChartPlugin().configure({ key: 'rose' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-rose',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="rose"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      dateTimeFormat: '%Y-%m-%d',
+      numberFormat: '.3s',
+      richTooltip: true,
+      roseAreaProportion: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/data.ts
new file mode 100644
index 0000000..93754d8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/data.ts
@@ -0,0 +1,931 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default {
+  '-157766400000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: -157766400000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: -157766400000.0,
+    },
+    {
+      key: ['David'],
+      value: 6820.0,
+      name: ['David'],
+      time: -157766400000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: -157766400000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7835.0,
+      name: ['Michael'],
+      time: -157766400000.0,
+    },
+  ],
+  '-126230400000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: -126230400000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: -126230400000.0,
+    },
+    {
+      key: ['David'],
+      value: 6757.0,
+      name: ['David'],
+      time: -126230400000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: -126230400000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7678.0,
+      name: ['Michael'],
+      time: -126230400000.0,
+    },
+  ],
+  '-94694400000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: -94694400000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: -94694400000.0,
+    },
+    {
+      key: ['David'],
+      value: 6923.0,
+      name: ['David'],
+      time: -94694400000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: -94694400000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 8132.0,
+      name: ['Michael'],
+      time: -94694400000.0,
+    },
+  ],
+  '-63158400000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: -63158400000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: -63158400000.0,
+    },
+    {
+      key: ['David'],
+      value: 6490.0,
+      name: ['David'],
+      time: -63158400000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: -63158400000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 8079.0,
+      name: ['Michael'],
+      time: -63158400000.0,
+    },
+  ],
+  '-31536000000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: -31536000000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: -31536000000.0,
+    },
+    {
+      key: ['David'],
+      value: 6563.0,
+      name: ['David'],
+      time: -31536000000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: -31536000000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 8245.0,
+      name: ['Michael'],
+      time: -31536000000.0,
+    },
+  ],
+  '0': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 0.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 0.0,
+    },
+    {
+      key: ['David'],
+      value: 6367.0,
+      name: ['David'],
+      time: 0.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 0.0,
+    },
+    {
+      key: ['Michael'],
+      value: 8186.0,
+      name: ['Michael'],
+      time: 0.0,
+    },
+  ],
+  '31536000000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 31536000000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 31536000000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 31536000000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 31536000000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6825.0,
+      name: ['Michael'],
+      time: 31536000000.0,
+    },
+  ],
+  '63072000000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 63072000000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 63072000000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 63072000000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 6066.0,
+      name: ['Jennifer'],
+      time: 63072000000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6337.0,
+      name: ['Michael'],
+      time: 63072000000.0,
+    },
+  ],
+  '94694400000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 94694400000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 94694400000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 94694400000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 94694400000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 5877.0,
+      name: ['Michael'],
+      time: 94694400000.0,
+    },
+  ],
+  '126230400000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 126230400000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 126230400000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 126230400000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 5672.0,
+      name: ['Jennifer'],
+      time: 126230400000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6058.0,
+      name: ['Michael'],
+      time: 126230400000.0,
+    },
+  ],
+  '157766400000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 157766400000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 157766400000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 157766400000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 157766400000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6206.0,
+      name: ['Michael'],
+      time: 157766400000.0,
+    },
+  ],
+  '189302400000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 189302400000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 189302400000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 189302400000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 189302400000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6178.0,
+      name: ['Michael'],
+      time: 189302400000.0,
+    },
+  ],
+  '220924800000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 220924800000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 220924800000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 220924800000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 220924800000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6313.0,
+      name: ['Michael'],
+      time: 220924800000.0,
+    },
+  ],
+  '252460800000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 252460800000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 252460800000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 252460800000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 252460800000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6489.0,
+      name: ['Michael'],
+      time: 252460800000.0,
+    },
+  ],
+  '283996800000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 283996800000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 283996800000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 283996800000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 283996800000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6580.0,
+      name: ['Michael'],
+      time: 283996800000.0,
+    },
+  ],
+  '315532800000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 315532800000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 315532800000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 315532800000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 315532800000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6896.0,
+      name: ['Michael'],
+      time: 315532800000.0,
+    },
+  ],
+  '347155200000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 347155200000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 347155200000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 347155200000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 347155200000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7142.0,
+      name: ['Michael'],
+      time: 347155200000.0,
+    },
+  ],
+  '378691200000000000': [
+    {
+      key: ['Christopher'],
+      value: 6093.0,
+      name: ['Christopher'],
+      time: 378691200000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 378691200000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 378691200000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 5811.0,
+      name: ['Jennifer'],
+      time: 378691200000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7155.0,
+      name: ['Michael'],
+      time: 378691200000.0,
+    },
+  ],
+  '410227200000000000': [
+    {
+      key: ['Christopher'],
+      value: 6375.0,
+      name: ['Christopher'],
+      time: 410227200000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 410227200000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 410227200000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 5829.0,
+      name: ['Jennifer'],
+      time: 410227200000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7386.0,
+      name: ['Michael'],
+      time: 410227200000.0,
+    },
+  ],
+  '441763200000000000': [
+    {
+      key: ['Christopher'],
+      value: 6509.0,
+      name: ['Christopher'],
+      time: 441763200000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 441763200000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 441763200000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 441763200000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7478.0,
+      name: ['Michael'],
+      time: 441763200000.0,
+    },
+  ],
+  '473385600000000000': [
+    {
+      key: ['Christopher'],
+      value: 6744.0,
+      name: ['Christopher'],
+      time: 473385600000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 473385600000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 473385600000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 473385600000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7210.0,
+      name: ['Michael'],
+      time: 473385600000.0,
+    },
+  ],
+  '504921600000000000': [
+    {
+      key: ['Christopher'],
+      value: 6497.0,
+      name: ['Christopher'],
+      time: 504921600000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 504921600000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 504921600000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 504921600000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7259.0,
+      name: ['Michael'],
+      time: 504921600000.0,
+    },
+  ],
+  '536457600000000000': [
+    {
+      key: ['Christopher'],
+      value: 6549.0,
+      name: ['Christopher'],
+      time: 536457600000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 536457600000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 536457600000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 536457600000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7448.0,
+      name: ['Michael'],
+      time: 536457600000.0,
+    },
+  ],
+  '567993600000000000': [
+    {
+      key: ['Christopher'],
+      value: 6496.0,
+      name: ['Christopher'],
+      time: 567993600000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 567993600000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 567993600000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 567993600000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7748.0,
+      name: ['Michael'],
+      time: 567993600000.0,
+    },
+  ],
+  '599616000000000000': [
+    {
+      key: ['Christopher'],
+      value: 6526.0,
+      name: ['Christopher'],
+      time: 599616000000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 599616000000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 599616000000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 599616000000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7851.0,
+      name: ['Michael'],
+      time: 599616000000.0,
+    },
+  ],
+  '631152000000000000': [
+    {
+      key: ['Christopher'],
+      value: 6641.0,
+      name: ['Christopher'],
+      time: 631152000000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 5760.0,
+      name: ['Daniel'],
+      time: 631152000000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 631152000000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 631152000000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 8233.0,
+      name: ['Michael'],
+      time: 631152000000.0,
+    },
+  ],
+  '662688000000000000': [
+    {
+      key: ['Christopher'],
+      value: 5784.0,
+      name: ['Christopher'],
+      time: 662688000000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 662688000000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 662688000000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 662688000000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 7579.0,
+      name: ['Michael'],
+      time: 662688000000.0,
+    },
+  ],
+  '694224000000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 694224000000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 694224000000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 694224000000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 694224000000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 6627.0,
+      name: ['Michael'],
+      time: 694224000000.0,
+    },
+  ],
+  '725846400000000000': [
+    {
+      key: ['Christopher'],
+      value: 0,
+      name: ['Christopher'],
+      time: 725846400000.0,
+    },
+    {
+      key: ['Daniel'],
+      value: 0,
+      name: ['Daniel'],
+      time: 725846400000.0,
+    },
+    {
+      key: ['David'],
+      value: 0,
+      name: ['David'],
+      time: 725846400000.0,
+    },
+    {
+      key: ['Jennifer'],
+      value: 0,
+      name: ['Jennifer'],
+      time: 725846400000.0,
+    },
+    {
+      key: ['Michael'],
+      value: 5839.0,
+      name: ['Michael'],
+      time: 725846400000.0,
+    },
+  ],
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx
new file mode 100644
index 0000000..66643ca
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx
@@ -0,0 +1,23 @@
+/* eslint-disable no-magic-numbers */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import SankeyLoopChartPlugin from '@superset-ui/legacy-plugin-chart-sankey-loop';
+import data from './data';
+
+new SankeyLoopChartPlugin().configure({ key: 'sankey-loop' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-sankey-loop',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="sankey-loop"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/data.ts
new file mode 100644
index 0000000..acadf96
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/data.ts
@@ -0,0 +1,33 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    source: 'Lisdoonvarna',
+    target: 'Cliffs of Moher',
+    value: 50,
+  },
+  {
+    source: 'Cliffs of Moher',
+    target: 'Lisdoonvarna',
+    value: 35,
+  },
+  {
+    source: 'Cliffs of Moher',
+    target: 'Killarney',
+    value: 25,
+  },
+  {
+    source: 'Lisdoonvarna',
+    target: 'Killarney',
+    value: 25,
+  },
+  {
+    source: 'Lisdoonvarna',
+    target: 'Kinvarra',
+    value: 25,
+  },
+  {
+    source: 'Kinvarra',
+    target: 'Lisdoonvarna',
+    value: 25,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx
new file mode 100644
index 0000000..0a7f01a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx
@@ -0,0 +1,23 @@
+/* eslint-disable no-magic-numbers */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import SankeyChartPlugin from '@superset-ui/legacy-plugin-chart-sankey';
+import data from './data';
+
+new SankeyChartPlugin().configure({ key: 'sankey' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-sankey',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="sankey"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/data.ts
new file mode 100644
index 0000000..00f0bb4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/data.ts
@@ -0,0 +1,53 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    source: 'Energy',
+    target: 'Electricity and heat',
+    value: 24.9,
+  },
+  {
+    source: 'Energy',
+    target: 'Industry',
+    value: 14.7,
+  },
+  {
+    source: 'Energy',
+    target: 'Transportation',
+    value: 14.3,
+  },
+  {
+    source: 'Deforestation',
+    target: 'Carbon Dioxide',
+    value: 10.9,
+  },
+  {
+    source: 'Land Use Change',
+    target: 'Deforestation',
+    value: 10.9,
+  },
+  {
+    source: 'Road',
+    target: 'Carbon Dioxide',
+    value: 10.5,
+  },
+  {
+    source: 'Transportation',
+    target: 'Road',
+    value: 10.5,
+  },
+  {
+    source: 'Residential Buildings',
+    target: 'Carbon Dioxide',
+    value: 10.2,
+  },
+  {
+    source: 'Energy',
+    target: 'Other Fuel Combustion',
+    value: 8.6,
+  },
+  {
+    source: 'Other Industry',
+    target: 'Carbon Dioxide',
+    value: 6.6,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx
new file mode 100644
index 0000000..ce4153c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx
@@ -0,0 +1,25 @@
+/* eslint-disable no-magic-numbers */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import SunburstChartPlugin from '@superset-ui/legacy-plugin-chart-sunburst';
+import data from './data';
+
+new SunburstChartPlugin().configure({ key: 'sunburst' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-sunburst',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="sunburst"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      metric: 'sum__SP_POP_TOTL',
+      secondaryMetric: 'sum__SP_RUR_TOTL',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/data.ts
new file mode 100644
index 0000000..ae3dd0f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/data.ts
@@ -0,0 +1,13 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  ['East Asia & Pacific', 'China', 1344130000.0, 664363135.0],
+  ['South Asia', 'India', 1247446011.0, 857294797.0],
+  ['North America', 'United States', 311721632.0, 59414143.0],
+  ['East Asia & Pacific', 'Indonesia', 244808254.0, 120661092.0],
+  ['Latin America & Caribbean', 'Brazil', 200517584.0, 30833589.0],
+  ['South Asia', 'Pakistan', 173669648.0, 109399721.0],
+  ['Sub-Saharan Africa', 'Nigeria', 163770669.0, 91118725.0],
+  ['South Asia', 'Bangladesh', 153405612.0, 105504710.0],
+  ['Europe & Central Asia', 'Russian Federation', 142960868.0, 37552961.0],
+  ['East Asia & Pacific', 'Japan', 127817277.0, 11186568.0],
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx
new file mode 100644
index 0000000..b165816
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx
@@ -0,0 +1,55 @@
+/* eslint-disable no-magic-numbers */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import TimeTableChartPlugin from '@superset-ui/legacy-plugin-chart-time-table';
+import data from './data';
+
+new TimeTableChartPlugin().configure({ key: 'time-table' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-time-table',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="time-table"
+    width={400}
+    height={400}
+    queriesData={[
+      {
+        data: {
+          columns: [
+            'East Asia & Pacific',
+            'Latin America & Caribbean',
+            'Middle East & North Africa',
+            'Sub-Saharan Africa',
+          ],
+          records: data,
+        },
+      },
+    ]}
+    formData={{
+      adhocFilters: [],
+      groupby: ['region'],
+      columnCollection: [
+        {
+          bounds: [null, null],
+          colType: 'spark',
+          comparisonType: '',
+          d3format: '',
+          dateFormat: '',
+          height: '',
+          key: '0vFMepUDf',
+          label: 'Time Series Columns',
+          showYAxis: false,
+          timeLag: 0,
+          timeRatio: '',
+          tooltip: '',
+          width: '',
+          yAxisBounds: [null, null],
+        },
+      ],
+      vizType: 'time-table',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/data.ts
new file mode 100644
index 0000000..b9990d5
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/data.ts
@@ -0,0 +1,230 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default {
+  '1980-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 88,
+    'Sub-Saharan Africa': 92,
+  },
+  '1981-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 98,
+    'Middle East & North Africa': 80,
+    'Sub-Saharan Africa': 96,
+  },
+  '1982-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 89,
+    'Sub-Saharan Africa': 94,
+  },
+  '1983-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 88,
+    'Sub-Saharan Africa': 98,
+  },
+  '1984-01-01 00:00:00': {
+    'East Asia & Pacific': 97,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 91,
+    'Sub-Saharan Africa': 98,
+  },
+  '1985-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 94,
+    'Sub-Saharan Africa': 97,
+  },
+  '1986-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 98,
+    'Sub-Saharan Africa': 99,
+  },
+  '1987-01-01 00:00:00': {
+    'East Asia & Pacific': 98,
+    'Latin America & Caribbean': 98,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '1988-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 98,
+    'Sub-Saharan Africa': 99,
+  },
+  '1989-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 98,
+    'Sub-Saharan Africa': 99,
+  },
+  '1990-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '1991-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 98,
+    'Sub-Saharan Africa': 99,
+  },
+  '1992-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '1993-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '1994-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '1995-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '1996-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 98,
+    'Sub-Saharan Africa': 99,
+  },
+  '1997-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '1998-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '1999-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2000-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2001-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2002-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2003-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2004-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2005-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2006-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2007-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2008-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2009-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2010-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2011-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2012-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2013-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+  '2014-01-01 00:00:00': {
+    'East Asia & Pacific': 99,
+    'Latin America & Caribbean': 99,
+    'Middle East & North Africa': 99,
+    'Sub-Saharan Africa': 99,
+  },
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx
new file mode 100644
index 0000000..4cefb49
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx
@@ -0,0 +1,25 @@
+/* eslint-disable no-magic-numbers, sort-keys */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import TreemapChartPlugin from '@superset-ui/legacy-plugin-chart-treemap';
+import data from './data';
+
+new TreemapChartPlugin().configure({ key: 'treemap' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-treemap',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="treemap"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      numberFormat: '.3s',
+      treeMapRatio: 1.618033988749895,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/data.ts
new file mode 100644
index 0000000..2789cd9
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/data.ts
@@ -0,0 +1,36 @@
+/* eslint-disable sort-keys */
+export default [
+  {
+    name: 'Total Population',
+    children: [
+      {
+        name: 'East Asia & Pacific',
+        value: 92886288081,
+      },
+      {
+        name: 'South Asia',
+        value: 60081663698,
+      },
+      {
+        name: 'Europe & Central Asia',
+        value: 44338871387,
+      },
+      {
+        name: 'Sub-Saharan Africa',
+        value: 28161513610,
+      },
+      {
+        name: 'Latin America & Caribbean',
+        value: 23202014769,
+      },
+      {
+        name: 'North America',
+        value: 15077904555,
+      },
+      {
+        name: 'Middle East & North Africa',
+        value: 13187931450,
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx
new file mode 100644
index 0000000..1629b27
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx
@@ -0,0 +1,24 @@
+/* eslint-disable no-magic-numbers, sort-keys */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import WorldMapChartPlugin from '@superset-ui/legacy-plugin-chart-world-map';
+import data from './data';
+
+new WorldMapChartPlugin().configure({ key: 'world-map' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-plugin-chart-world-map',
+};
+
+export const basic = () => (
+  <SuperChart
+    chartType="world-map"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      maxBubbleSize: '25',
+      showBubbles: true,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/data.ts
new file mode 100644
index 0000000..3ca22a5
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/data.ts
@@ -0,0 +1,304 @@
+/* eslint-disable sort-keys */
+export default [
+  {
+    country: 'TTO',
+    m1: 91.45,
+    m2: 1354483.0,
+    latitude: 11,
+    longitude: -61,
+    name: 'Trinidad and Tobago',
+  },
+  {
+    country: 'BDI',
+    m1: 88.239,
+    m2: 10816860.0,
+    latitude: -3.5,
+    longitude: 30,
+    name: 'Burundi',
+  },
+  {
+    country: 'PNG',
+    m1: 87.015,
+    m2: 7463577.0,
+    latitude: -6,
+    longitude: 147,
+    name: 'Papua New Guinea',
+  },
+  {
+    country: 'LIE',
+    m1: 85.695,
+    m2: 37286.0,
+    latitude: 47.26666666,
+    longitude: 9.53333333,
+    name: 'Liechtenstein',
+  },
+  {
+    country: 'UGA',
+    m1: 84.234,
+    m2: 37782971.0,
+    latitude: 1,
+    longitude: 32,
+    name: 'Uganda',
+  },
+  {
+    country: 'MWI',
+    m1: 83.898,
+    m2: 16695253.0,
+    latitude: -13.5,
+    longitude: 34,
+    name: 'Malawi',
+  },
+  {
+    country: 'NPL',
+    m1: 81.757,
+    m2: 28174724.0,
+    latitude: 28,
+    longitude: 84,
+    name: 'Nepal',
+  },
+  {
+    country: 'LKA',
+    m1: 81.68,
+    m2: 20639000.0,
+    latitude: 7,
+    longitude: 81,
+    name: 'Sri Lanka',
+  },
+  {
+    country: 'NER',
+    m1: 81.531,
+    m2: 19113728.0,
+    latitude: 16,
+    longitude: 8,
+    name: 'Niger',
+  },
+  {
+    country: 'LCA',
+    m1: 81.523,
+    m2: 183645.0,
+    latitude: 13.88333333,
+    longitude: -60.96666666,
+    name: 'Saint Lucia',
+  },
+  {
+    country: 'SSD',
+    m1: 81.409,
+    m2: 11911184.0,
+    latitude: 7,
+    longitude: 30,
+    name: 'South Sudan',
+  },
+  {
+    country: 'ETH',
+    m1: 80.972,
+    m2: 96958732.0,
+    latitude: 8,
+    longitude: 38,
+    name: 'Ethiopia',
+  },
+  {
+    country: 'WSM',
+    m1: 80.74,
+    m2: 191845.0,
+    latitude: -13.58333333,
+    longitude: -172.33333333,
+    name: 'Samoa',
+  },
+  {
+    country: 'KHM',
+    m1: 79.486,
+    m2: 15328136.0,
+    latitude: 13,
+    longitude: 105,
+    name: 'Cambodia',
+  },
+  {
+    country: 'SWZ',
+    m1: 78.685,
+    m2: 1269112.0,
+    latitude: -26.5,
+    longitude: 31.5,
+    name: 'Swaziland',
+  },
+  {
+    country: 'SLB',
+    m1: 78.124,
+    m2: 572171.0,
+    latitude: -8,
+    longitude: 159,
+    name: 'Solomon Islands',
+  },
+  {
+    country: 'ERI',
+    m1: 77.807,
+    m2: 5110444.0,
+    latitude: 15,
+    longitude: 39,
+    name: 'Eritrea',
+  },
+  {
+    country: 'TCD',
+    m1: 77.659,
+    m2: 13587053.0,
+    latitude: 15,
+    longitude: 19,
+    name: 'Chad',
+  },
+  {
+    country: 'FSM',
+    m1: 77.622,
+    m2: 104044.0,
+    latitude: 6.91666666,
+    longitude: 158.25,
+    name: 'Micronesia',
+  },
+  {
+    country: 'TON',
+    m1: 76.368,
+    m2: 105586.0,
+    latitude: -20,
+    longitude: -175,
+    name: 'Tonga',
+  },
+  {
+    country: 'SLE',
+    m1: 60.422,
+    m2: 6315627.0,
+    latitude: 8.5,
+    longitude: -11.5,
+    name: 'Sierra Leone',
+  },
+  {
+    country: 'BIH',
+    m1: 60.384,
+    m2: 3817554.0,
+    latitude: 44,
+    longitude: 18,
+    name: 'Bosnia and Herzegovina',
+  },
+  {
+    country: 'GNQ',
+    m1: 60.244,
+    m2: 820885.0,
+    latitude: 2,
+    longitude: 10,
+    name: 'Equatorial Guinea',
+  },
+  {
+    country: 'CAF',
+    m1: 60.241,
+    m2: 4804316.0,
+    latitude: 7,
+    longitude: 21,
+    name: 'Central African Republic',
+  },
+  {
+    country: 'MUS',
+    m1: 60.186,
+    m2: 1260934.0,
+    latitude: -20.28333333,
+    longitude: 57.55,
+    name: 'Mauritius',
+  },
+  {
+    country: 'ZMB',
+    m1: 59.528,
+    m2: 15721343.0,
+    latitude: -15,
+    longitude: 30,
+    name: 'Zambia',
+  },
+  {
+    country: 'FRO',
+    m1: 58.257,
+    m2: 48221.0,
+    latitude: 62,
+    longitude: -7,
+    name: 'Faroe Islands',
+  },
+  {
+    country: 'ABW',
+    m1: 58.221,
+    m2: 103441.0,
+    latitude: 12.5,
+    longitude: -69.96666666,
+    name: 'Aruba',
+  },
+  {
+    country: 'XXX',
+    m1: 58.024,
+    m2: 74877030.0,
+  },
+  {
+    country: 'EGY',
+    m1: 56.931,
+    m2: 89579670.0,
+    latitude: 27,
+    longitude: 30,
+    name: 'Egypt',
+  },
+  {
+    country: 'AGO',
+    m1: 56.726,
+    m2: 24227524.0,
+    latitude: -12.5,
+    longitude: 18.5,
+    name: 'Angola',
+  },
+  {
+    country: 'SEN',
+    m1: 56.607,
+    m2: 14672557.0,
+    latitude: 14,
+    longitude: -14,
+    name: 'Senegal',
+  },
+  {
+    country: 'BEN',
+    m1: 56.486,
+    m2: 10598482.0,
+    latitude: 9.5,
+    longitude: 2.25,
+    name: 'Benin',
+  },
+  {
+    country: 'BLZ',
+    m1: 55.876,
+    m2: 351706.0,
+    latitude: 17.25,
+    longitude: -88.75,
+    name: 'Belize',
+  },
+  {
+    country: 'KIR',
+    m1: 55.827,
+    m2: 110470.0,
+    latitude: 1.41666666,
+    longitude: 173,
+    name: 'Kiribati',
+  },
+  {
+    country: 'PHL',
+    m1: 55.512,
+    m2: 99138690.0,
+    latitude: 13,
+    longitude: 122,
+    name: 'Philippines',
+  },
+  {
+    country: 'MDV',
+    m1: 55.506,
+    m2: 357415.0,
+    latitude: 3.25,
+    longitude: 73,
+    name: 'Maldives',
+  },
+  {
+    country: 'MDA',
+    m1: 55.075,
+    m2: 3556400.0,
+    latitude: 47,
+    longitude: 29,
+    name: 'Moldova',
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx
new file mode 100644
index 0000000..5e0910e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx
@@ -0,0 +1,131 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import { BigNumberChartPlugin } from '@superset-ui/legacy-preset-chart-big-number';
+import testData from './data';
+
+new BigNumberChartPlugin().configure({ key: 'big-number' }).register();
+
+const TIME_COLUMN = '__timestamp';
+
+const formData = {
+  colorPicker: {
+    r: 0,
+    g: 122,
+    b: 135,
+    a: 1,
+  },
+  compareLag: 1,
+  compareSuffix: 'over 10Y',
+  metric: 'sum__SP_POP_TOTL',
+  showTrendLine: true,
+  startYAxisAtZero: true,
+  timeGrainSqla: 'P1Y',
+  vizType: 'big_number',
+  yAxisFormat: '.3s',
+};
+
+/**
+ * Add null values to trendline data
+ * @param data input data
+ */
+function withNulls(origData: object[], nullPosition = 3) {
+  const data = [...origData];
+  data[nullPosition] = {
+    ...data[nullPosition],
+    sum__SP_POP_TOTL: null,
+  };
+  return data;
+}
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-big-number/BigNumber',
+};
+
+export const basicWithTrendline = () => (
+  <SuperChart
+    chartType="big-number"
+    width={400}
+    height={400}
+    queriesData={[{ data: testData }]}
+    formData={formData}
+  />
+);
+
+export const weeklyTimeGranularity = () => (
+  <SuperChart
+    chartType="big-number"
+    width={400}
+    height={400}
+    queriesData={[{ data: testData }]}
+    formData={{
+      ...formData,
+      timeGrainSqla: 'P1W',
+    }}
+  />
+);
+
+export const nullInTheMiddle = () => (
+  <SuperChart
+    chartType="big-number"
+    width={400}
+    height={400}
+    queriesData={[{ data: withNulls(testData, 3) }]}
+    formData={formData}
+  />
+);
+
+export const fixedRange = () => (
+  <SuperChart
+    chartType="big-number"
+    width={400}
+    height={400}
+    queriesData={[
+      {
+        data: testData.slice(0, 9),
+        from_dttm: testData[testData.length - 1][TIME_COLUMN],
+        to_dttm: null,
+      },
+    ]}
+    formData={{
+      ...formData,
+      timeRangeFixed: true,
+    }}
+  />
+);
+
+export const noFixedRange = () => (
+  <SuperChart
+    chartType="big-number"
+    width={400}
+    height={400}
+    queriesData={[
+      {
+        data: testData.slice(0, 9),
+        from_dttm: testData[testData.length - 1][TIME_COLUMN],
+        to_dttm: testData[0][TIME_COLUMN],
+      },
+    ]}
+    formData={{
+      ...formData,
+      timeRangeFixed: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/data.ts
new file mode 100644
index 0000000..cf0c78b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/data.ts
@@ -0,0 +1,59 @@
+/* eslint-disable sort-keys */
+export default [
+  {
+    __timestamp: 1388534400000.0,
+    sum__SP_POP_TOTL: 7237260256.0,
+  },
+  {
+    __timestamp: 1356998400000.0,
+    sum__SP_POP_TOTL: 7151135481.0,
+  },
+  {
+    __timestamp: 1325376000000.0,
+    sum__SP_POP_TOTL: 7066007165.0,
+  },
+  {
+    __timestamp: 1293840000000.0,
+    sum__SP_POP_TOTL: 6984252419.0,
+  },
+  {
+    __timestamp: 1262304000000.0,
+    sum__SP_POP_TOTL: 6901110512.0,
+  },
+  {
+    __timestamp: 1230768000000.0,
+    sum__SP_POP_TOTL: 6818457192.0,
+  },
+  {
+    __timestamp: 1199145600000.0,
+    sum__SP_POP_TOTL: 6735914031.0,
+  },
+  {
+    __timestamp: 1167609600000.0,
+    sum__SP_POP_TOTL: 6653571302.0,
+  },
+  {
+    __timestamp: 1136073600000.0,
+    sum__SP_POP_TOTL: 6572596462.0,
+  },
+  {
+    __timestamp: 1104537600000.0,
+    sum__SP_POP_TOTL: 6491857539.0,
+  },
+  {
+    __timestamp: 1072915200000.0,
+    sum__SP_POP_TOTL: 6411615629.0,
+  },
+  {
+    __timestamp: 1041379200000.0,
+    sum__SP_POP_TOTL: 6331766837.0,
+  },
+  {
+    __timestamp: 1009843200000.0,
+    sum__SP_POP_TOTL: 6252469127.0,
+  },
+  {
+    __timestamp: 978307200000.0,
+    sum__SP_POP_TOTL: 617333941.0,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx
new file mode 100644
index 0000000..f15cc94
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx
@@ -0,0 +1,58 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import { BigNumberTotalChartPlugin } from '@superset-ui/legacy-preset-chart-big-number';
+import data from './data';
+
+new BigNumberTotalChartPlugin().configure({ key: 'big-number-total' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-big-number/BigNumberTotal',
+};
+
+export const totalBasic = () => (
+  <SuperChart
+    chartType="big-number-total"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      metric: 'sum__num',
+      subheader: 'total female participants',
+      vizType: 'big_number_total',
+      yAxisFormat: '.3s',
+    }}
+  />
+);
+
+export const totalNoData = () => (
+  <SuperChart
+    chartType="big-number-total"
+    width={400}
+    height={400}
+    queriesData={[{ data: [] }]}
+    formData={{
+      metric: 'sum__num',
+      subheader: 'total female participants',
+      vizType: 'big_number_total',
+      yAxisFormat: '.3s',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/data.ts
new file mode 100644
index 0000000..9196307
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/data.ts
@@ -0,0 +1,5 @@
+export default [
+  {
+    sum__num: 32546308,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/Stories.tsx
new file mode 100644
index 0000000..b6aca11
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/Stories.tsx
@@ -0,0 +1,12 @@
+import { AreaChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new AreaChartPlugin().configure({ key: 'area' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/Area',
+};
+
+export { stacked } from './stories/stacked';
+export { stackedWithYAxisBounds, stackedWithYAxisBoundsMinOnly } from './stories/stackedWithBounds';
+export { expanded } from './stories/expanded';
+export { controlsShown } from './stories/controlsShown';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/data.ts
new file mode 100644
index 0000000..99c2b44
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/data.ts
@@ -0,0 +1,1128 @@
+/* eslint-disable sort-keys */
+export default [
+  {
+    key: ['East Asia & Pacific'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 1031863394.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 1034767718.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 1048537618.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 1073600747.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 1098305025.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 1124077872.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 1153296196.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 1181582226.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 1210302481.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 1242569208.0,
+      },
+      {
+        x: 0.0,
+        y: 1274888198.0,
+      },
+      {
+        x: 31536000000.0,
+        y: 1308215425.0,
+      },
+      {
+        x: 63072000000.0,
+        y: 1339781984.0,
+      },
+      {
+        x: 94694400000.0,
+        y: 1369814002.0,
+      },
+      {
+        x: 126230400000.0,
+        y: 1399636343.0,
+      },
+      {
+        x: 157766400000.0,
+        y: 1426562368.0,
+      },
+      {
+        x: 189302400000.0,
+        y: 1450503110.0,
+      },
+      {
+        x: 220924800000.0,
+        y: 1473091499.0,
+      },
+      {
+        x: 252460800000.0,
+        y: 1495573053.0,
+      },
+      {
+        x: 283996800000.0,
+        y: 1518439245.0,
+      },
+      {
+        x: 315532800000.0,
+        y: 1540823440.0,
+      },
+      {
+        x: 347155200000.0,
+        y: 1563926423.0,
+      },
+      {
+        x: 378691200000.0,
+        y: 1589245249.0,
+      },
+      {
+        x: 410227200000.0,
+        y: 1614538807.0,
+      },
+      {
+        x: 441763200000.0,
+        y: 1638618355.0,
+      },
+      {
+        x: 473385600000.0,
+        y: 1663385538.0,
+      },
+      {
+        x: 504921600000.0,
+        y: 1689894237.0,
+      },
+      {
+        x: 536457600000.0,
+        y: 1717904169.0,
+      },
+      {
+        x: 567993600000.0,
+        y: 1746140324.0,
+      },
+      {
+        x: 599616000000.0,
+        y: 1773743982.0,
+      },
+      {
+        x: 631152000000.0,
+        y: 1800365903.0,
+      },
+      {
+        x: 662688000000.0,
+        y: 1825955698.0,
+      },
+      {
+        x: 694224000000.0,
+        y: 1849800435.0,
+      },
+      {
+        x: 725846400000.0,
+        y: 1872809684.0,
+      },
+      {
+        x: 757382400000.0,
+        y: 1895892806.0,
+      },
+      {
+        x: 788918400000.0,
+        y: 1918680993.0,
+      },
+      {
+        x: 820454400000.0,
+        y: 1941199188.0,
+      },
+      {
+        x: 852076800000.0,
+        y: 1963227851.0,
+      },
+      {
+        x: 883612800000.0,
+        y: 1984508261.0,
+      },
+      {
+        x: 915148800000.0,
+        y: 2004495631.0,
+      },
+      {
+        x: 946684800000.0,
+        y: 2023534787.0,
+      },
+      {
+        x: 978307200000.0,
+        y: 2041915058.0,
+      },
+      {
+        x: 1009843200000.0,
+        y: 2059375225.0,
+      },
+      {
+        x: 1041379200000.0,
+        y: 2076029083.0,
+      },
+      {
+        x: 1072915200000.0,
+        y: 2092086887.0,
+      },
+      {
+        x: 1104537600000.0,
+        y: 2107802765.0,
+      },
+      {
+        x: 1136073600000.0,
+        y: 2123180222.0,
+      },
+      {
+        x: 1167609600000.0,
+        y: 2137834848.0,
+      },
+      {
+        x: 1199145600000.0,
+        y: 2152663168.0,
+      },
+      {
+        x: 1230768000000.0,
+        y: 2167098541.0,
+      },
+      {
+        x: 1262304000000.0,
+        y: 2181465325.0,
+      },
+      {
+        x: 1293840000000.0,
+        y: 2195899073.0,
+      },
+      {
+        x: 1325376000000.0,
+        y: 2210627396.0,
+      },
+      {
+        x: 1356998400000.0,
+        y: 2225523116.0,
+      },
+      {
+        x: 1388534400000.0,
+        y: 2240687901.0,
+      },
+    ],
+  },
+  {
+    key: ['South Asia'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 572036107.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 584143236.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 596701125.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 609571502.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 623073110.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 636963781.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 651325994.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 666134328.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 681405837.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 697060567.0,
+      },
+      {
+        x: 0.0,
+        y: 713115397.0,
+      },
+      {
+        x: 31536000000.0,
+        y: 729469562.0,
+      },
+      {
+        x: 63072000000.0,
+        y: 746222138.0,
+      },
+      {
+        x: 94694400000.0,
+        y: 763491289.0,
+      },
+      {
+        x: 126230400000.0,
+        y: 781254784.0,
+      },
+      {
+        x: 157766400000.0,
+        y: 799620311.0,
+      },
+      {
+        x: 189302400000.0,
+        y: 818590962.0,
+      },
+      {
+        x: 220924800000.0,
+        y: 838141522.0,
+      },
+      {
+        x: 252460800000.0,
+        y: 858266916.0,
+      },
+      {
+        x: 283996800000.0,
+        y: 878939779.0,
+      },
+      {
+        x: 315532800000.0,
+        y: 900085240.0,
+      },
+      {
+        x: 347155200000.0,
+        y: 921521635.0,
+      },
+      {
+        x: 378691200000.0,
+        y: 943662470.0,
+      },
+      {
+        x: 410227200000.0,
+        y: 966101576.0,
+      },
+      {
+        x: 441763200000.0,
+        y: 988898603.0,
+      },
+      {
+        x: 473385600000.0,
+        y: 1012110768.0,
+      },
+      {
+        x: 504921600000.0,
+        y: 1035703508.0,
+      },
+      {
+        x: 536457600000.0,
+        y: 1059570231.0,
+      },
+      {
+        x: 567993600000.0,
+        y: 1083711645.0,
+      },
+      {
+        x: 599616000000.0,
+        y: 1108132042.0,
+      },
+      {
+        x: 631152000000.0,
+        y: 1132775493.0,
+      },
+      {
+        x: 662688000000.0,
+        y: 1157716007.0,
+      },
+      {
+        x: 694224000000.0,
+        y: 1182766320.0,
+      },
+      {
+        x: 725846400000.0,
+        y: 1208041749.0,
+      },
+      {
+        x: 757382400000.0,
+        y: 1233462879.0,
+      },
+      {
+        x: 788918400000.0,
+        y: 1258964893.0,
+      },
+      {
+        x: 820454400000.0,
+        y: 1284467586.0,
+      },
+      {
+        x: 852076800000.0,
+        y: 1310020410.0,
+      },
+      {
+        x: 883612800000.0,
+        y: 1335551944.0,
+      },
+      {
+        x: 915148800000.0,
+        y: 1361114276.0,
+      },
+      {
+        x: 946684800000.0,
+        y: 1386400954.0,
+      },
+      {
+        x: 978307200000.0,
+        y: 1411281514.0,
+      },
+      {
+        x: 1009843200000.0,
+        y: 1436503016.0,
+      },
+      {
+        x: 1041379200000.0,
+        y: 1461682019.0,
+      },
+      {
+        x: 1072915200000.0,
+        y: 1486598228.0,
+      },
+      {
+        x: 1104537600000.0,
+        y: 1511119581.0,
+      },
+      {
+        x: 1136073600000.0,
+        y: 1535264779.0,
+      },
+      {
+        x: 1167609600000.0,
+        y: 1559023139.0,
+      },
+      {
+        x: 1199145600000.0,
+        y: 1582535507.0,
+      },
+      {
+        x: 1230768000000.0,
+        y: 1605893501.0,
+      },
+      {
+        x: 1262304000000.0,
+        y: 1629189137.0,
+      },
+      {
+        x: 1293840000000.0,
+        y: 1652449539.0,
+      },
+      {
+        x: 1325376000000.0,
+        y: 1674883124.0,
+      },
+      {
+        x: 1356998400000.0,
+        y: 1697955143.0,
+      },
+      {
+        x: 1388534400000.0,
+        y: 1720976995.0,
+      },
+    ],
+  },
+  {
+    key: ['Europe & Central Asia'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 660881033.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 668526708.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 676418331.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 684369825.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 692233988.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 699849949.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 706459925.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 712871897.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 719034272.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 725099571.0,
+      },
+      {
+        x: 0.0,
+        y: 730528170.0,
+      },
+      {
+        x: 31536000000.0,
+        y: 736135494.0,
+      },
+      {
+        x: 63072000000.0,
+        y: 742450677.0,
+      },
+      {
+        x: 94694400000.0,
+        y: 748475832.0,
+      },
+      {
+        x: 126230400000.0,
+        y: 754297089.0,
+      },
+      {
+        x: 157766400000.0,
+        y: 759928297.0,
+      },
+      {
+        x: 189302400000.0,
+        y: 765417984.0,
+      },
+      {
+        x: 220924800000.0,
+        y: 770663924.0,
+      },
+      {
+        x: 252460800000.0,
+        y: 775939424.0,
+      },
+      {
+        x: 283996800000.0,
+        y: 781099684.0,
+      },
+      {
+        x: 315532800000.0,
+        y: 786407417.0,
+      },
+      {
+        x: 347155200000.0,
+        y: 791686169.0,
+      },
+      {
+        x: 378691200000.0,
+        y: 796410256.0,
+      },
+      {
+        x: 410227200000.0,
+        y: 800966617.0,
+      },
+      {
+        x: 441763200000.0,
+        y: 805742116.0,
+      },
+      {
+        x: 473385600000.0,
+        y: 810633713.0,
+      },
+      {
+        x: 504921600000.0,
+        y: 815649358.0,
+      },
+      {
+        x: 536457600000.0,
+        y: 820716895.0,
+      },
+      {
+        x: 567993600000.0,
+        y: 825834599.0,
+      },
+      {
+        x: 599616000000.0,
+        y: 830998751.0,
+      },
+      {
+        x: 631152000000.0,
+        y: 842907397.0,
+      },
+      {
+        x: 662688000000.0,
+        y: 846199873.0,
+      },
+      {
+        x: 694224000000.0,
+        y: 849633122.0,
+      },
+      {
+        x: 725846400000.0,
+        y: 852664422.0,
+      },
+      {
+        x: 757382400000.0,
+        y: 854549337.0,
+      },
+      {
+        x: 788918400000.0,
+        y: 856102195.0,
+      },
+      {
+        x: 820454400000.0,
+        y: 857333424.0,
+      },
+      {
+        x: 852076800000.0,
+        y: 858726155.0,
+      },
+      {
+        x: 883612800000.0,
+        y: 859806214.0,
+      },
+      {
+        x: 915148800000.0,
+        y: 860985079.0,
+      },
+      {
+        x: 946684800000.0,
+        y: 862073997.0,
+      },
+      {
+        x: 978307200000.0,
+        y: 863554388.0,
+      },
+      {
+        x: 1009843200000.0,
+        y: 865246750.0,
+      },
+      {
+        x: 1041379200000.0,
+        y: 867562844.0,
+      },
+      {
+        x: 1072915200000.0,
+        y: 870213016.0,
+      },
+      {
+        x: 1104537600000.0,
+        y: 872968147.0,
+      },
+      {
+        x: 1136073600000.0,
+        y: 875755753.0,
+      },
+      {
+        x: 1167609600000.0,
+        y: 878819656.0,
+      },
+      {
+        x: 1199145600000.0,
+        y: 882358214.0,
+      },
+      {
+        x: 1230768000000.0,
+        y: 886063249.0,
+      },
+      {
+        x: 1262304000000.0,
+        y: 889630390.0,
+      },
+      {
+        x: 1293840000000.0,
+        y: 893094109.0,
+      },
+      {
+        x: 1325376000000.0,
+        y: 894962840.0,
+      },
+      {
+        x: 1356998400000.0,
+        y: 898837065.0,
+      },
+      {
+        x: 1388534400000.0,
+        y: 903095786.0,
+      },
+    ],
+  },
+  {
+    key: ['Sub-Saharan Africa'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 228268752.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 233759990.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 239403621.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 245217050.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 251215851.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 257414930.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 263830697.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 270477558.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 277365472.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 284502453.0,
+      },
+      {
+        x: 0.0,
+        y: 291897883.0,
+      },
+      {
+        x: 31536000000.0,
+        y: 299578724.0,
+      },
+      {
+        x: 63072000000.0,
+        y: 307524082.0,
+      },
+      {
+        x: 94694400000.0,
+        y: 315758889.0,
+      },
+      {
+        x: 126230400000.0,
+        y: 324316627.0,
+      },
+      {
+        x: 157766400000.0,
+        y: 333222446.0,
+      },
+      {
+        x: 189302400000.0,
+        y: 342489556.0,
+      },
+      {
+        x: 220924800000.0,
+        y: 352109622.0,
+      },
+      {
+        x: 252460800000.0,
+        y: 362076216.0,
+      },
+      {
+        x: 283996800000.0,
+        y: 372390972.0,
+      },
+      {
+        x: 315532800000.0,
+        y: 383043891.0,
+      },
+      {
+        x: 347155200000.0,
+        y: 394021126.0,
+      },
+      {
+        x: 378691200000.0,
+        y: 405328909.0,
+      },
+      {
+        x: 410227200000.0,
+        y: 416982682.0,
+      },
+      {
+        x: 441763200000.0,
+        y: 429008541.0,
+      },
+      {
+        x: 473385600000.0,
+        y: 441414277.0,
+      },
+      {
+        x: 504921600000.0,
+        y: 454197298.0,
+      },
+      {
+        x: 536457600000.0,
+        y: 467337821.0,
+      },
+      {
+        x: 567993600000.0,
+        y: 480809661.0,
+      },
+      {
+        x: 599616000000.0,
+        y: 494580339.0,
+      },
+      {
+        x: 631152000000.0,
+        y: 508616039.0,
+      },
+      {
+        x: 662688000000.0,
+        y: 523007873.0,
+      },
+      {
+        x: 694224000000.0,
+        y: 537759561.0,
+      },
+      {
+        x: 725846400000.0,
+        y: 552842678.0,
+      },
+      {
+        x: 757382400000.0,
+        y: 568228356.0,
+      },
+      {
+        x: 788918400000.0,
+        y: 583892679.0,
+      },
+      {
+        x: 820454400000.0,
+        y: 599858645.0,
+      },
+      {
+        x: 852076800000.0,
+        y: 616161312.0,
+      },
+      {
+        x: 883612800000.0,
+        y: 632857149.0,
+      },
+      {
+        x: 915148800000.0,
+        y: 650030484.0,
+      },
+      {
+        x: 946684800000.0,
+        y: 667742098.0,
+      },
+      {
+        x: 978307200000.0,
+        y: 685795280.0,
+      },
+      {
+        x: 1009843200000.0,
+        y: 704102354.0,
+      },
+      {
+        x: 1041379200000.0,
+        y: 722925207.0,
+      },
+      {
+        x: 1072915200000.0,
+        y: 742396040.0,
+      },
+      {
+        x: 1104537600000.0,
+        y: 762555740.0,
+      },
+      {
+        x: 1136073600000.0,
+        y: 783427658.0,
+      },
+      {
+        x: 1167609600000.0,
+        y: 805010175.0,
+      },
+      {
+        x: 1199145600000.0,
+        y: 827287676.0,
+      },
+      {
+        x: 1230768000000.0,
+        y: 850225069.0,
+      },
+      {
+        x: 1262304000000.0,
+        y: 873800152.0,
+      },
+      {
+        x: 1293840000000.0,
+        y: 898002051.0,
+      },
+      {
+        x: 1325376000000.0,
+        y: 922840423.0,
+      },
+      {
+        x: 1356998400000.0,
+        y: 948287652.0,
+      },
+      {
+        x: 1388534400000.0,
+        y: 974315323.0,
+      },
+    ],
+  },
+  {
+    key: ['Latin America & Caribbean'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 220564224.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 226764342.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 233183206.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 239771182.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 246458356.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 253195267.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 259965218.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 266776414.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 273654630.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 280641049.0,
+      },
+      {
+        x: 0.0,
+        y: 287763515.0,
+      },
+      {
+        x: 31536000000.0,
+        y: 295026304.0,
+      },
+      {
+        x: 63072000000.0,
+        y: 302408883.0,
+      },
+      {
+        x: 94694400000.0,
+        y: 309902169.0,
+      },
+      {
+        x: 126230400000.0,
+        y: 317479496.0,
+      },
+      {
+        x: 157766400000.0,
+        y: 325120067.0,
+      },
+      {
+        x: 189302400000.0,
+        y: 332817916.0,
+      },
+      {
+        x: 220924800000.0,
+        y: 340569396.0,
+      },
+      {
+        x: 252460800000.0,
+        y: 348391181.0,
+      },
+      {
+        x: 283996800000.0,
+        y: 356288443.0,
+      },
+      {
+        x: 315532800000.0,
+        y: 364270961.0,
+      },
+      {
+        x: 347155200000.0,
+        y: 372330102.0,
+      },
+      {
+        x: 378691200000.0,
+        y: 380466998.0,
+      },
+      {
+        x: 410227200000.0,
+        y: 388654061.0,
+      },
+      {
+        x: 441763200000.0,
+        y: 396869481.0,
+      },
+      {
+        x: 473385600000.0,
+        y: 405083115.0,
+      },
+      {
+        x: 504921600000.0,
+        y: 413292690.0,
+      },
+      {
+        x: 536457600000.0,
+        y: 421490233.0,
+      },
+      {
+        x: 567993600000.0,
+        y: 429668211.0,
+      },
+      {
+        x: 599616000000.0,
+        y: 437843614.0,
+      },
+      {
+        x: 631152000000.0,
+        y: 445998222.0,
+      },
+      {
+        x: 662688000000.0,
+        y: 454117634.0,
+      },
+      {
+        x: 694224000000.0,
+        y: 462201058.0,
+      },
+      {
+        x: 725846400000.0,
+        y: 470263697.0,
+      },
+      {
+        x: 757382400000.0,
+        y: 478310786.0,
+      },
+      {
+        x: 788918400000.0,
+        y: 486343677.0,
+      },
+      {
+        x: 820454400000.0,
+        y: 494384205.0,
+      },
+      {
+        x: 852076800000.0,
+        y: 502390020.0,
+      },
+      {
+        x: 883612800000.0,
+        y: 510356845.0,
+      },
+      {
+        x: 915148800000.0,
+        y: 518188225.0,
+      },
+      {
+        x: 946684800000.0,
+        y: 525886558.0,
+      },
+      {
+        x: 978307200000.0,
+        y: 533449671.0,
+      },
+      {
+        x: 1009843200000.0,
+        y: 540884684.0,
+      },
+      {
+        x: 1041379200000.0,
+        y: 548225528.0,
+      },
+      {
+        x: 1072915200000.0,
+        y: 555515431.0,
+      },
+      {
+        x: 1104537600000.0,
+        y: 562783235.0,
+      },
+      {
+        x: 1136073600000.0,
+        y: 570029991.0,
+      },
+      {
+        x: 1167609600000.0,
+        y: 577248307.0,
+      },
+      {
+        x: 1199145600000.0,
+        y: 584435842.0,
+      },
+      {
+        x: 1230768000000.0,
+        y: 591577623.0,
+      },
+      {
+        x: 1262304000000.0,
+        y: 598662941.0,
+      },
+      {
+        x: 1293840000000.0,
+        y: 605674766.0,
+      },
+      {
+        x: 1325376000000.0,
+        y: 612617659.0,
+      },
+      {
+        x: 1356998400000.0,
+        y: 619487273.0,
+      },
+      {
+        x: 1388534400000.0,
+        y: 626270167.0,
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx
new file mode 100644
index 0000000..bcf8749
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx
@@ -0,0 +1,35 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const controlsShown = () => (
+  <SuperChart
+    chartType="area"
+    datasource={dummyDatasource}
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorCcheme: 'd3Category10',
+      contribution: false,
+      groupby: ['region'],
+      lineInterpolation: 'linear',
+      metrics: ['sum__SP_POP_TOTL'],
+      richTooltip: true,
+      showBrush: 'auto',
+      showControls: true,
+      showLegend: true,
+      stackedStyle: 'stack',
+      vizType: 'area',
+      xAxisFormat: '%Y',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx
new file mode 100644
index 0000000..36f7d71
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx
@@ -0,0 +1,35 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const expanded = () => (
+  <SuperChart
+    chartType="area"
+    datasource={dummyDatasource}
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorCcheme: 'd3Category10',
+      contribution: false,
+      groupby: ['region'],
+      lineInterpolation: 'linear',
+      metrics: ['sum__SP_POP_TOTL'],
+      richTooltip: true,
+      showBrush: 'auto',
+      showControls: false,
+      showLegend: true,
+      stackedStyle: 'expand',
+      vizType: 'area',
+      xAxisFormat: '%Y',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx
new file mode 100644
index 0000000..6a3d78b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx
@@ -0,0 +1,36 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const stacked = () => (
+  <SuperChart
+    id="stacked-area-chart"
+    chartType="area"
+    datasource={dummyDatasource}
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      contribution: false,
+      groupby: ['region'],
+      lineInterpolation: 'linear',
+      metrics: ['sum__SP_POP_TOTL'],
+      richTooltip: true,
+      showBrush: 'auto',
+      showControls: false,
+      showLegend: true,
+      stackedStyle: 'stack',
+      vizType: 'area',
+      xAxisFormat: '%Y',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx
new file mode 100644
index 0000000..7ce9d1f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx
@@ -0,0 +1,74 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const stackedWithYAxisBounds = () => (
+  <SuperChart
+    chartType="area"
+    datasource={dummyDatasource}
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorCcheme: 'd3Category10',
+      contribution: false,
+      groupby: ['region'],
+      lineInterpolation: 'linear',
+      metrics: ['sum__SP_POP_TOTL'],
+      richTooltip: true,
+      showBrush: 'auto',
+      showControls: false,
+      showLegend: true,
+      stackedStyle: 'stack',
+      vizType: 'area',
+      xAxisFormat: '%Y',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [0, 3000000000],
+      yAxisFormat: '.3s',
+      yLogScale: false,
+    }}
+  />
+);
+
+stackedWithYAxisBounds.story = {
+  name: 'Stacked with yAxisBounds',
+};
+
+export const stackedWithYAxisBoundsMinOnly = () => (
+  <SuperChart
+    chartType="area"
+    datasource={dummyDatasource}
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorCcheme: 'd3Category10',
+      contribution: false,
+      groupby: ['region'],
+      lineInterpolation: 'linear',
+      metrics: ['sum__SP_POP_TOTL'],
+      richTooltip: true,
+      showBrush: 'auto',
+      showControls: true,
+      showLegend: true,
+      stackedStyle: 'stack',
+      vizType: 'area',
+      xAxisFormat: '%Y',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [1000000000, null],
+      yAxisFormat: '.3s',
+      yLogScale: false,
+    }}
+  />
+);
+
+stackedWithYAxisBoundsMinOnly.story = {
+  name: 'Stacked with yAxisBounds min only',
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/Stories.tsx
new file mode 100644
index 0000000..f34b472
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/Stories.tsx
@@ -0,0 +1,12 @@
+import { BarChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new BarChartPlugin().configure({ key: 'bar' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/Bar',
+};
+
+export { basic } from './stories/basic';
+export { barWithValues } from './stories/barWithValues';
+export { barWithPositiveAndNegativeValues } from './stories/barWithPositiveAndNegativeValues';
+export { stackedBarWithValues } from './stories/stackedBarWithValues';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/data.ts
new file mode 100644
index 0000000..4e7ac27
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/data.ts
@@ -0,0 +1,228 @@
+/* eslint-disable sort-keys */
+export default [
+  {
+    key: ['East Asia & Pacific'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 1031863394.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 1034767718.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 1048537618.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 1073600747.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 1098305025.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 1124077872.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 1153296196.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 1181582226.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 1210302481.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 1242569208.0,
+      },
+    ],
+  },
+  {
+    key: ['South Asia'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 572036107.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 584143236.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 596701125.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 609571502.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 623073110.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 636963781.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 651325994.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 666134328.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 681405837.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 697060567.0,
+      },
+    ],
+  },
+  {
+    key: ['Europe & Central Asia'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 660881033.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 668526708.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 676418331.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 684369825.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 692233988.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 699849949.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 706459925.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 712871897.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 719034272.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 725099571.0,
+      },
+    ],
+  },
+  {
+    key: ['Sub-Saharan Africa'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 228268752.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 233759990.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 239403621.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 245217050.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 251215851.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 257414930.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 263830697.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 270477558.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 277365472.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 284502453.0,
+      },
+    ],
+  },
+  {
+    key: ['Latin America & Caribbean'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 220564224.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 226764342.0,
+      },
+      {
+        x: -252460800000.0,
+        y: 233183206.0,
+      },
+      {
+        x: -220924800000.0,
+        y: 239771182.0,
+      },
+      {
+        x: -189388800000.0,
+        y: 246458356.0,
+      },
+      {
+        x: -157766400000.0,
+        y: 253195267.0,
+      },
+      {
+        x: -126230400000.0,
+        y: 259965218.0,
+      },
+      {
+        x: -94694400000.0,
+        y: 266776414.0,
+      },
+      {
+        x: -63158400000.0,
+        y: 273654630.0,
+      },
+      {
+        x: -31536000000.0,
+        y: 280641049.0,
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx
new file mode 100644
index 0000000..e46987d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx
@@ -0,0 +1,43 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const barWithPositiveAndNegativeValues = () => (
+  <SuperChart
+    chartType="bar"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[
+      {
+        data: data.map((group, i) => ({
+          ...group,
+          values: group.values.map(pair => ({ ...pair, y: (i % 2 === 0 ? 1 : -1) * pair.y })),
+        })),
+      },
+    ]}
+    formData={{
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      contribution: false,
+      groupby: ['region'],
+      lineInterpolation: 'linear',
+      metrics: ['sum__SP_POP_TOTL'],
+      richTooltip: true,
+      showBarValue: true,
+      showBrush: 'auto',
+      showControls: false,
+      showLegend: true,
+      stackedStyle: 'stack',
+      vizType: 'bar',
+      xAxisFormat: '%Y',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx
new file mode 100644
index 0000000..8c04d08
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx
@@ -0,0 +1,36 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const barWithValues = () => (
+  <SuperChart
+    chartType="bar"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      contribution: false,
+      groupby: ['region'],
+      lineInterpolation: 'linear',
+      metrics: ['sum__SP_POP_TOTL'],
+      richTooltip: true,
+      showBarValue: false,
+      showBrush: 'auto',
+      showControls: false,
+      showLegend: true,
+      stackedStyle: 'stack',
+      vizType: 'bar',
+      xAxisFormat: '%Y',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx
new file mode 100644
index 0000000..380c6ba
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx
@@ -0,0 +1,36 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="bar"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      contribution: false,
+      groupby: ['region'],
+      lineInterpolation: 'linear',
+      metrics: ['sum__SP_POP_TOTL'],
+      richTooltip: true,
+      showBarValue: false,
+      showBrush: 'auto',
+      showControls: false,
+      showLegend: true,
+      stackedStyle: 'stack',
+      vizType: 'bar',
+      xAxisFormat: '%Y',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx
new file mode 100644
index 0000000..5e30eb7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx
@@ -0,0 +1,37 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const stackedBarWithValues = () => (
+  <SuperChart
+    chartType="bar"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      barStacked: true,
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      contribution: false,
+      groupby: ['region'],
+      lineInterpolation: 'linear',
+      metrics: ['sum__SP_POP_TOTL'],
+      richTooltip: true,
+      showBarValue: true,
+      showBrush: 'auto',
+      showControls: false,
+      showLegend: true,
+      stackedStyle: 'stack',
+      vizType: 'bar',
+      xAxisFormat: '%Y',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/Stories.tsx
new file mode 100644
index 0000000..168a0f3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/Stories.tsx
@@ -0,0 +1,9 @@
+import { BoxPlotChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new BoxPlotChartPlugin().configure({ key: 'box-plot' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/BoxPlot',
+};
+
+export { basic } from './stories/basic';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/data.ts
new file mode 100644
index 0000000..5326c57
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/data.ts
@@ -0,0 +1,58 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    label: 'East Asia & Pacific',
+    values: {
+      Q1: 1384725172.5,
+      Q2: 1717904169.0,
+      Q3: 2032724922.5,
+      whisker_high: 2240687901.0,
+      whisker_low: 1031863394.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'Europe & Central Asia',
+    values: {
+      Q1: 751386460.5,
+      Q2: 820716895.0,
+      Q3: 862814192.5,
+      whisker_high: 903095786.0,
+      whisker_low: 660881033.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'Latin America & Caribbean',
+    values: {
+      Q1: 313690832.5,
+      Q2: 421490233.0,
+      Q3: 529668114.5,
+      whisker_high: 626270167.0,
+      whisker_low: 220564224.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'South Asia',
+    values: {
+      Q1: 772373036.5,
+      Q2: 1059570231.0,
+      Q3: 1398841234.0,
+      whisker_high: 1720976995.0,
+      whisker_low: 572036107.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'Sub-Saharan Africa',
+    values: {
+      Q1: 320037758.0,
+      Q2: 467337821.0,
+      Q3: 676768689.0,
+      whisker_high: 974315323.0,
+      whisker_low: 228268752.0,
+      outliers: [],
+    },
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx
new file mode 100644
index 0000000..5595610
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx
@@ -0,0 +1,19 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="box-plot"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      vizType: 'box_plot',
+      whiskerOptions: 'Min/max (no outliers)',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/Stories.tsx
new file mode 100644
index 0000000..74db0f1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/Stories.tsx
@@ -0,0 +1,9 @@
+import { BubbleChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new BubbleChartPlugin().configure({ key: 'bubble' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/Bubble',
+};
+
+export { basic } from './stories/basic';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/data.ts
new file mode 100644
index 0000000..37a26d3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/data.ts
@@ -0,0 +1,338 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    key: 'East Asia & Pacific',
+    values: [
+      {
+        country_name: 'China',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 1344130000.0,
+        sum__SP_RUR_TOTL_ZS: 49.427,
+        sum__SP_DYN_LE00_IN: 75.042,
+        x: 49.427,
+        y: 75.042,
+        size: 1344130000.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Indonesia',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 244808254.0,
+        sum__SP_RUR_TOTL_ZS: 49.288,
+        sum__SP_DYN_LE00_IN: 70.3915609756,
+        x: 49.288,
+        y: 70.3915609756,
+        size: 244808254.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Japan',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 127817277.0,
+        sum__SP_RUR_TOTL_ZS: 8.752,
+        sum__SP_DYN_LE00_IN: 82.5912195122,
+        x: 8.752,
+        y: 82.5912195122,
+        size: 127817277.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Philippines',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 94501233.0,
+        sum__SP_RUR_TOTL_ZS: 54.983,
+        sum__SP_DYN_LE00_IN: 68.3914878049,
+        x: 54.983,
+        y: 68.3914878049,
+        size: 94501233.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Vietnam',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 87840000.0,
+        sum__SP_RUR_TOTL_ZS: 68.971,
+        sum__SP_DYN_LE00_IN: 75.457902439,
+        x: 68.971,
+        y: 75.457902439,
+        size: 87840000.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Thailand',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 66902958.0,
+        sum__SP_RUR_TOTL_ZS: 54.606,
+        sum__SP_DYN_LE00_IN: 74.008902439,
+        x: 54.606,
+        y: 74.008902439,
+        size: 66902958.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Myanmar',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 52125411.0,
+        sum__SP_RUR_TOTL_ZS: 68.065,
+        sum__SP_DYN_LE00_IN: 64.7612439024,
+        x: 68.065,
+        y: 64.7612439024,
+        size: 52125411.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+    ],
+  },
+  {
+    key: 'South Asia',
+    values: [
+      {
+        country_name: 'India',
+        region: 'South Asia',
+        sum__SP_POP_TOTL: 1247446011.0,
+        sum__SP_RUR_TOTL_ZS: 68.724,
+        sum__SP_DYN_LE00_IN: 65.9584878049,
+        x: 68.724,
+        y: 65.9584878049,
+        size: 1247446011.0,
+        shape: 'circle',
+        group: 'South Asia',
+      },
+      {
+        country_name: 'Pakistan',
+        region: 'South Asia',
+        sum__SP_POP_TOTL: 173669648.0,
+        sum__SP_RUR_TOTL_ZS: 62.993,
+        sum__SP_DYN_LE00_IN: 66.2838780488,
+        x: 62.993,
+        y: 66.2838780488,
+        size: 173669648.0,
+        shape: 'circle',
+        group: 'South Asia',
+      },
+      {
+        country_name: 'Bangladesh',
+        region: 'South Asia',
+        sum__SP_POP_TOTL: 153405612.0,
+        sum__SP_RUR_TOTL_ZS: 68.775,
+        sum__SP_DYN_LE00_IN: 69.891804878,
+        x: 68.775,
+        y: 69.891804878,
+        size: 153405612.0,
+        shape: 'circle',
+        group: 'South Asia',
+      },
+    ],
+  },
+  {
+    key: 'North America',
+    values: [
+      {
+        country_name: 'United States',
+        region: 'North America',
+        sum__SP_POP_TOTL: 311721632.0,
+        sum__SP_RUR_TOTL_ZS: 19.06,
+        sum__SP_DYN_LE00_IN: 78.6414634146,
+        x: 19.06,
+        y: 78.6414634146,
+        size: 311721632.0,
+        shape: 'circle',
+        group: 'North America',
+      },
+    ],
+  },
+  {
+    key: 'Latin America & Caribbean',
+    values: [
+      {
+        country_name: 'Brazil',
+        region: 'Latin America & Caribbean',
+        sum__SP_POP_TOTL: 200517584.0,
+        sum__SP_RUR_TOTL_ZS: 15.377,
+        sum__SP_DYN_LE00_IN: 73.3473658537,
+        x: 15.377,
+        y: 73.3473658537,
+        size: 200517584.0,
+        shape: 'circle',
+        group: 'Latin America & Caribbean',
+      },
+      {
+        country_name: 'Mexico',
+        region: 'Latin America & Caribbean',
+        sum__SP_POP_TOTL: 120365271.0,
+        sum__SP_RUR_TOTL_ZS: 21.882,
+        sum__SP_DYN_LE00_IN: 76.9141707317,
+        x: 21.882,
+        y: 76.9141707317,
+        size: 120365271.0,
+        shape: 'circle',
+        group: 'Latin America & Caribbean',
+      },
+    ],
+  },
+  {
+    key: 'Sub-Saharan Africa',
+    values: [
+      {
+        country_name: 'Nigeria',
+        region: 'Sub-Saharan Africa',
+        sum__SP_POP_TOTL: 163770669.0,
+        sum__SP_RUR_TOTL_ZS: 55.638,
+        sum__SP_DYN_LE00_IN: 51.7102439024,
+        x: 55.638,
+        y: 51.7102439024,
+        size: 163770669.0,
+        shape: 'circle',
+        group: 'Sub-Saharan Africa',
+      },
+      {
+        country_name: 'Ethiopia',
+        region: 'Sub-Saharan Africa',
+        sum__SP_POP_TOTL: 89858696.0,
+        sum__SP_RUR_TOTL_ZS: 82.265,
+        sum__SP_DYN_LE00_IN: 62.2528536585,
+        x: 82.265,
+        y: 62.2528536585,
+        size: 89858696.0,
+        shape: 'circle',
+        group: 'Sub-Saharan Africa',
+      },
+      {
+        country_name: 'Congo, Dem. Rep.',
+        region: 'Sub-Saharan Africa',
+        sum__SP_POP_TOTL: 68087376.0,
+        sum__SP_RUR_TOTL_ZS: 59.558,
+        sum__SP_DYN_LE00_IN: 49.3007073171,
+        x: 59.558,
+        y: 49.3007073171,
+        size: 68087376.0,
+        shape: 'circle',
+        group: 'Sub-Saharan Africa',
+      },
+      {
+        country_name: 'South Africa',
+        region: 'Sub-Saharan Africa',
+        sum__SP_POP_TOTL: 51553479.0,
+        sum__SP_RUR_TOTL_ZS: 37.254,
+        sum__SP_DYN_LE00_IN: 55.2956585366,
+        x: 37.254,
+        y: 55.2956585366,
+        size: 51553479.0,
+        shape: 'circle',
+        group: 'Sub-Saharan Africa',
+      },
+    ],
+  },
+  {
+    key: 'Europe & Central Asia',
+    values: [
+      {
+        country_name: 'Russian Federation',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 142960868.0,
+        sum__SP_RUR_TOTL_ZS: 26.268,
+        sum__SP_DYN_LE00_IN: 69.6585365854,
+        x: 26.268,
+        y: 69.6585365854,
+        size: 142960868.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'Germany',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 81797673.0,
+        sum__SP_RUR_TOTL_ZS: 25.512,
+        sum__SP_DYN_LE00_IN: 80.7414634146,
+        x: 25.512,
+        y: 80.7414634146,
+        size: 81797673.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'Turkey',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 73199372.0,
+        sum__SP_RUR_TOTL_ZS: 28.718,
+        sum__SP_DYN_LE00_IN: 74.5404878049,
+        x: 28.718,
+        y: 74.5404878049,
+        size: 73199372.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'France',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 65342776.0,
+        sum__SP_RUR_TOTL_ZS: 21.416,
+        sum__SP_DYN_LE00_IN: 82.1146341463,
+        x: 21.416,
+        y: 82.1146341463,
+        size: 65342776.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'United Kingdom',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 63258918.0,
+        sum__SP_RUR_TOTL_ZS: 18.43,
+        sum__SP_DYN_LE00_IN: 80.9512195122,
+        x: 18.43,
+        y: 80.9512195122,
+        size: 63258918.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'Italy',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 59379449.0,
+        sum__SP_RUR_TOTL_ZS: 31.556,
+        sum__SP_DYN_LE00_IN: 82.187804878,
+        x: 31.556,
+        y: 82.187804878,
+        size: 59379449.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+    ],
+  },
+  {
+    key: 'Middle East & North Africa',
+    values: [
+      {
+        country_name: 'Egypt, Arab Rep.',
+        region: 'Middle East & North Africa',
+        sum__SP_POP_TOTL: 83787634.0,
+        sum__SP_RUR_TOTL_ZS: 57.0,
+        sum__SP_DYN_LE00_IN: 70.6785609756,
+        x: 57.0,
+        y: 70.6785609756,
+        size: 83787634.0,
+        shape: 'circle',
+        group: 'Middle East & North Africa',
+      },
+      {
+        country_name: 'Iran, Islamic Rep.',
+        region: 'Middle East & North Africa',
+        sum__SP_POP_TOTL: 75184322.0,
+        sum__SP_RUR_TOTL_ZS: 28.8,
+        sum__SP_DYN_LE00_IN: 73.4493170732,
+        x: 28.8,
+        y: 73.4493170732,
+        size: 75184322.0,
+        shape: 'circle',
+        group: 'Middle East & North Africa',
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx
new file mode 100644
index 0000000..268371f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx
@@ -0,0 +1,37 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="bubble"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      annotationData: {},
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      entity: 'country_name',
+      leftMargin: 'auto',
+      maxBubbleSize: '50',
+      series: 'region',
+      showLegend: true,
+      size: 'sum__SP_POP_TOTL',
+      vizType: 'bubble',
+      x: 'sum__SP_RUR_TOTL_ZS',
+      xAxisFormat: '.3s',
+      xAxisLabel: 'x-axis label',
+      xAxisShowminmax: false,
+      xLogScale: false,
+      xTicksLayout: 'auto',
+      y: 'sum__SP_DYN_LE00_IN',
+      yAxisFormat: '.3s',
+      yAxisLabel: '',
+      yAxisShowminmax: false,
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/Stories.tsx
new file mode 100644
index 0000000..3bdd1d9
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/Stories.tsx
@@ -0,0 +1,9 @@
+import { BulletChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new BulletChartPlugin().configure({ key: 'bullet' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/Bullet',
+};
+
+export { basic } from './stories/basic';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/data.ts
new file mode 100644
index 0000000..df677e9
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/data.ts
@@ -0,0 +1,10 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default {
+  measures: [75691],
+  ranges: [0, 83260.1],
+  rangeLabels: null,
+  markers: null,
+  markerLabels: null,
+  markerLines: null,
+  markerLineLabels: null,
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx
new file mode 100644
index 0000000..1c16d54
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx
@@ -0,0 +1,23 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="bullet"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      markerLabels: '',
+      markerLineLabels: '',
+      markerLines: '',
+      markers: '',
+      rangeLabels: '',
+      ranges: '',
+      vizType: 'bullet',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/Stories.tsx
new file mode 100644
index 0000000..6968d53
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/Stories.tsx
@@ -0,0 +1,10 @@
+import { CompareChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new CompareChartPlugin().configure({ key: 'compare' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/Compare',
+};
+
+export { basic } from './stories/basic';
+export { timeFormat } from './stories/timeFormat';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/data.ts
new file mode 100644
index 0000000..17c1032
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/data.ts
@@ -0,0 +1,908 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    key: ['Christopher'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 24703,
+      },
+      {
+        x: -126230400000.0,
+        y: 27861,
+      },
+      {
+        x: -94694400000.0,
+        y: 29436,
+      },
+      {
+        x: -63158400000.0,
+        y: 31463,
+      },
+      {
+        x: -31536000000.0,
+        y: 35718,
+      },
+      {
+        x: 0.0,
+        y: 41758,
+      },
+      {
+        x: 31536000000.0,
+        y: 48172,
+      },
+      {
+        x: 63072000000.0,
+        y: 52092,
+      },
+      {
+        x: 94694400000.0,
+        y: 48217,
+      },
+      {
+        x: 126230400000.0,
+        y: 48476,
+      },
+      {
+        x: 157766400000.0,
+        y: 46438,
+      },
+      {
+        x: 189302400000.0,
+        y: 45086,
+      },
+      {
+        x: 220924800000.0,
+        y: 46610,
+      },
+      {
+        x: 252460800000.0,
+        y: 47107,
+      },
+      {
+        x: 283996800000.0,
+        y: 50514,
+      },
+      {
+        x: 315532800000.0,
+        y: 48969,
+      },
+      {
+        x: 347155200000.0,
+        y: 50108,
+      },
+      {
+        x: 378691200000.0,
+        y: 59055,
+      },
+      {
+        x: 410227200000.0,
+        y: 59188,
+      },
+      {
+        x: 441763200000.0,
+        y: 59859,
+      },
+      {
+        x: 473385600000.0,
+        y: 59516,
+      },
+      {
+        x: 504921600000.0,
+        y: 56633,
+      },
+      {
+        x: 536457600000.0,
+        y: 54466,
+      },
+      {
+        x: 567993600000.0,
+        y: 52996,
+      },
+      {
+        x: 599616000000.0,
+        y: 53205,
+      },
+      {
+        x: 631152000000.0,
+        y: 52322,
+      },
+      {
+        x: 662688000000.0,
+        y: 47109,
+      },
+      {
+        x: 694224000000.0,
+        y: 42470,
+      },
+      {
+        x: 725846400000.0,
+        y: 38257,
+      },
+      {
+        x: 757382400000.0,
+        y: 34823,
+      },
+      {
+        x: 788918400000.0,
+        y: 32728,
+      },
+      {
+        x: 820454400000.0,
+        y: 30988,
+      },
+      {
+        x: 852076800000.0,
+        y: 29179,
+      },
+      {
+        x: 883612800000.0,
+        y: 27083,
+      },
+      {
+        x: 915148800000.0,
+        y: 25700,
+      },
+      {
+        x: 946684800000.0,
+        y: 24959,
+      },
+      {
+        x: 978307200000.0,
+        y: 23180,
+      },
+      {
+        x: 1009843200000.0,
+        y: 21731,
+      },
+      {
+        x: 1041379200000.0,
+        y: 20793,
+      },
+      {
+        x: 1072915200000.0,
+        y: 19739,
+      },
+      {
+        x: 1104537600000.0,
+        y: 19190,
+      },
+      {
+        x: 1136073600000.0,
+        y: 19674,
+      },
+      {
+        x: 1167609600000.0,
+        y: 19986,
+      },
+      {
+        x: 1199145600000.0,
+        y: 17771,
+      },
+    ],
+  },
+  {
+    key: ['David'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 67646,
+      },
+      {
+        x: -126230400000.0,
+        y: 66207,
+      },
+      {
+        x: -94694400000.0,
+        y: 66581,
+      },
+      {
+        x: -63158400000.0,
+        y: 63531,
+      },
+      {
+        x: -31536000000.0,
+        y: 63502,
+      },
+      {
+        x: 0.0,
+        y: 61570,
+      },
+      {
+        x: 31536000000.0,
+        y: 52948,
+      },
+      {
+        x: 63072000000.0,
+        y: 46218,
+      },
+      {
+        x: 94694400000.0,
+        y: 40968,
+      },
+      {
+        x: 126230400000.0,
+        y: 41654,
+      },
+      {
+        x: 157766400000.0,
+        y: 39019,
+      },
+      {
+        x: 189302400000.0,
+        y: 39165,
+      },
+      {
+        x: 220924800000.0,
+        y: 40407,
+      },
+      {
+        x: 252460800000.0,
+        y: 40533,
+      },
+      {
+        x: 283996800000.0,
+        y: 41898,
+      },
+      {
+        x: 315532800000.0,
+        y: 41743,
+      },
+      {
+        x: 347155200000.0,
+        y: 40486,
+      },
+      {
+        x: 378691200000.0,
+        y: 40283,
+      },
+      {
+        x: 410227200000.0,
+        y: 39048,
+      },
+      {
+        x: 441763200000.0,
+        y: 38346,
+      },
+      {
+        x: 473385600000.0,
+        y: 38395,
+      },
+      {
+        x: 504921600000.0,
+        y: 37021,
+      },
+      {
+        x: 536457600000.0,
+        y: 36672,
+      },
+      {
+        x: 567993600000.0,
+        y: 35214,
+      },
+      {
+        x: 599616000000.0,
+        y: 35139,
+      },
+      {
+        x: 631152000000.0,
+        y: 33661,
+      },
+      {
+        x: 662688000000.0,
+        y: 30347,
+      },
+      {
+        x: 694224000000.0,
+        y: 28344,
+      },
+      {
+        x: 725846400000.0,
+        y: 26947,
+      },
+      {
+        x: 757382400000.0,
+        y: 24784,
+      },
+      {
+        x: 788918400000.0,
+        y: 22967,
+      },
+      {
+        x: 820454400000.0,
+        y: 22941,
+      },
+      {
+        x: 852076800000.0,
+        y: 21824,
+      },
+      {
+        x: 883612800000.0,
+        y: 20816,
+      },
+      {
+        x: 915148800000.0,
+        y: 20267,
+      },
+      {
+        x: 946684800000.0,
+        y: 19695,
+      },
+      {
+        x: 978307200000.0,
+        y: 19281,
+      },
+      {
+        x: 1009843200000.0,
+        y: 18600,
+      },
+      {
+        x: 1041379200000.0,
+        y: 18557,
+      },
+      {
+        x: 1072915200000.0,
+        y: 18315,
+      },
+      {
+        x: 1104537600000.0,
+        y: 18017,
+      },
+      {
+        x: 1136073600000.0,
+        y: 17510,
+      },
+      {
+        x: 1167609600000.0,
+        y: 17400,
+      },
+      {
+        x: 1199145600000.0,
+        y: 16049,
+      },
+    ],
+  },
+  {
+    key: ['James'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 67506,
+      },
+      {
+        x: -126230400000.0,
+        y: 65036,
+      },
+      {
+        x: -94694400000.0,
+        y: 61554,
+      },
+      {
+        x: -63158400000.0,
+        y: 60584,
+      },
+      {
+        x: -31536000000.0,
+        y: 59824,
+      },
+      {
+        x: 0.0,
+        y: 61597,
+      },
+      {
+        x: 31536000000.0,
+        y: 54463,
+      },
+      {
+        x: 63072000000.0,
+        y: 46960,
+      },
+      {
+        x: 94694400000.0,
+        y: 42782,
+      },
+      {
+        x: 126230400000.0,
+        y: 41258,
+      },
+      {
+        x: 157766400000.0,
+        y: 39471,
+      },
+      {
+        x: 189302400000.0,
+        y: 38203,
+      },
+      {
+        x: 220924800000.0,
+        y: 39916,
+      },
+      {
+        x: 252460800000.0,
+        y: 39783,
+      },
+      {
+        x: 283996800000.0,
+        y: 39237,
+      },
+      {
+        x: 315532800000.0,
+        y: 39185,
+      },
+      {
+        x: 347155200000.0,
+        y: 38176,
+      },
+      {
+        x: 378691200000.0,
+        y: 38750,
+      },
+      {
+        x: 410227200000.0,
+        y: 36228,
+      },
+      {
+        x: 441763200000.0,
+        y: 35728,
+      },
+      {
+        x: 473385600000.0,
+        y: 35750,
+      },
+      {
+        x: 504921600000.0,
+        y: 33955,
+      },
+      {
+        x: 536457600000.0,
+        y: 32552,
+      },
+      {
+        x: 567993600000.0,
+        y: 32418,
+      },
+      {
+        x: 599616000000.0,
+        y: 32658,
+      },
+      {
+        x: 631152000000.0,
+        y: 32288,
+      },
+      {
+        x: 662688000000.0,
+        y: 30460,
+      },
+      {
+        x: 694224000000.0,
+        y: 28450,
+      },
+      {
+        x: 725846400000.0,
+        y: 26193,
+      },
+      {
+        x: 757382400000.0,
+        y: 24706,
+      },
+      {
+        x: 788918400000.0,
+        y: 22691,
+      },
+      {
+        x: 820454400000.0,
+        y: 21122,
+      },
+      {
+        x: 852076800000.0,
+        y: 20368,
+      },
+      {
+        x: 883612800000.0,
+        y: 19651,
+      },
+      {
+        x: 915148800000.0,
+        y: 18508,
+      },
+      {
+        x: 946684800000.0,
+        y: 17939,
+      },
+      {
+        x: 978307200000.0,
+        y: 17023,
+      },
+      {
+        x: 1009843200000.0,
+        y: 16905,
+      },
+      {
+        x: 1041379200000.0,
+        y: 16832,
+      },
+      {
+        x: 1072915200000.0,
+        y: 16459,
+      },
+      {
+        x: 1104537600000.0,
+        y: 16046,
+      },
+      {
+        x: 1136073600000.0,
+        y: 16139,
+      },
+      {
+        x: 1167609600000.0,
+        y: 15821,
+      },
+      {
+        x: 1199145600000.0,
+        y: 14920,
+      },
+    ],
+  },
+  {
+    key: ['John'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 71390,
+      },
+      {
+        x: -126230400000.0,
+        y: 64858,
+      },
+      {
+        x: -94694400000.0,
+        y: 61480,
+      },
+      {
+        x: -63158400000.0,
+        y: 60754,
+      },
+      {
+        x: -31536000000.0,
+        y: 58644,
+      },
+      {
+        x: 0.0,
+        y: 58348,
+      },
+      {
+        x: 31536000000.0,
+        y: 51382,
+      },
+      {
+        x: 63072000000.0,
+        y: 43028,
+      },
+      {
+        x: 94694400000.0,
+        y: 39061,
+      },
+      {
+        x: 126230400000.0,
+        y: 37553,
+      },
+      {
+        x: 157766400000.0,
+        y: 34970,
+      },
+      {
+        x: 189302400000.0,
+        y: 33876,
+      },
+      {
+        x: 220924800000.0,
+        y: 34103,
+      },
+      {
+        x: 252460800000.0,
+        y: 33895,
+      },
+      {
+        x: 283996800000.0,
+        y: 35305,
+      },
+      {
+        x: 315532800000.0,
+        y: 35131,
+      },
+      {
+        x: 347155200000.0,
+        y: 34761,
+      },
+      {
+        x: 378691200000.0,
+        y: 34560,
+      },
+      {
+        x: 410227200000.0,
+        y: 33047,
+      },
+      {
+        x: 441763200000.0,
+        y: 32484,
+      },
+      {
+        x: 473385600000.0,
+        y: 31397,
+      },
+      {
+        x: 504921600000.0,
+        y: 30103,
+      },
+      {
+        x: 536457600000.0,
+        y: 29462,
+      },
+      {
+        x: 567993600000.0,
+        y: 29301,
+      },
+      {
+        x: 599616000000.0,
+        y: 29751,
+      },
+      {
+        x: 631152000000.0,
+        y: 29011,
+      },
+      {
+        x: 662688000000.0,
+        y: 27727,
+      },
+      {
+        x: 694224000000.0,
+        y: 26156,
+      },
+      {
+        x: 725846400000.0,
+        y: 24918,
+      },
+      {
+        x: 757382400000.0,
+        y: 24119,
+      },
+      {
+        x: 788918400000.0,
+        y: 23174,
+      },
+      {
+        x: 820454400000.0,
+        y: 22104,
+      },
+      {
+        x: 852076800000.0,
+        y: 21330,
+      },
+      {
+        x: 883612800000.0,
+        y: 20556,
+      },
+      {
+        x: 915148800000.0,
+        y: 20280,
+      },
+      {
+        x: 946684800000.0,
+        y: 20032,
+      },
+      {
+        x: 978307200000.0,
+        y: 18839,
+      },
+      {
+        x: 1009843200000.0,
+        y: 17400,
+      },
+      {
+        x: 1041379200000.0,
+        y: 17170,
+      },
+      {
+        x: 1072915200000.0,
+        y: 16381,
+      },
+      {
+        x: 1104537600000.0,
+        y: 15692,
+      },
+      {
+        x: 1136073600000.0,
+        y: 15083,
+      },
+      {
+        x: 1167609600000.0,
+        y: 14348,
+      },
+      {
+        x: 1199145600000.0,
+        y: 13110,
+      },
+    ],
+  },
+  {
+    key: ['Michael'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 80812,
+      },
+      {
+        x: -126230400000.0,
+        y: 79709,
+      },
+      {
+        x: -94694400000.0,
+        y: 82204,
+      },
+      {
+        x: -63158400000.0,
+        y: 81785,
+      },
+      {
+        x: -31536000000.0,
+        y: 84893,
+      },
+      {
+        x: 0.0,
+        y: 85015,
+      },
+      {
+        x: 31536000000.0,
+        y: 77321,
+      },
+      {
+        x: 63072000000.0,
+        y: 71197,
+      },
+      {
+        x: 94694400000.0,
+        y: 67598,
+      },
+      {
+        x: 126230400000.0,
+        y: 67304,
+      },
+      {
+        x: 157766400000.0,
+        y: 68149,
+      },
+      {
+        x: 189302400000.0,
+        y: 66686,
+      },
+      {
+        x: 220924800000.0,
+        y: 67344,
+      },
+      {
+        x: 252460800000.0,
+        y: 66875,
+      },
+      {
+        x: 283996800000.0,
+        y: 67473,
+      },
+      {
+        x: 315532800000.0,
+        y: 68375,
+      },
+      {
+        x: 347155200000.0,
+        y: 68467,
+      },
+      {
+        x: 378691200000.0,
+        y: 67904,
+      },
+      {
+        x: 410227200000.0,
+        y: 67708,
+      },
+      {
+        x: 441763200000.0,
+        y: 67457,
+      },
+      {
+        x: 473385600000.0,
+        y: 64667,
+      },
+      {
+        x: 504921600000.0,
+        y: 63959,
+      },
+      {
+        x: 536457600000.0,
+        y: 63442,
+      },
+      {
+        x: 567993600000.0,
+        y: 63924,
+      },
+      {
+        x: 599616000000.0,
+        y: 65233,
+      },
+      {
+        x: 631152000000.0,
+        y: 65138,
+      },
+      {
+        x: 662688000000.0,
+        y: 60646,
+      },
+      {
+        x: 694224000000.0,
+        y: 54216,
+      },
+      {
+        x: 725846400000.0,
+        y: 49443,
+      },
+      {
+        x: 757382400000.0,
+        y: 44361,
+      },
+      {
+        x: 788918400000.0,
+        y: 41311,
+      },
+      {
+        x: 820454400000.0,
+        y: 38284,
+      },
+      {
+        x: 852076800000.0,
+        y: 37459,
+      },
+      {
+        x: 883612800000.0,
+        y: 36525,
+      },
+      {
+        x: 915148800000.0,
+        y: 33820,
+      },
+      {
+        x: 946684800000.0,
+        y: 31956,
+      },
+      {
+        x: 978307200000.0,
+        y: 29612,
+      },
+      {
+        x: 1009843200000.0,
+        y: 28156,
+      },
+      {
+        x: 1041379200000.0,
+        y: 27031,
+      },
+      {
+        x: 1072915200000.0,
+        y: 25418,
+      },
+      {
+        x: 1104537600000.0,
+        y: 23678,
+      },
+      {
+        x: 1136073600000.0,
+        y: 22498,
+      },
+      {
+        x: 1167609600000.0,
+        y: 21805,
+      },
+      {
+        x: 1199145600000.0,
+        y: 20271,
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx
new file mode 100644
index 0000000..ffda3e1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx
@@ -0,0 +1,30 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="compare"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      contribution: false,
+      leftMargin: 'auto',
+      vizType: 'compare',
+      xAxisFormat: 'smart_date',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yAxisLabel: '',
+      yAxisShowminmax: false,
+      yLogscale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx
new file mode 100644
index 0000000..c20795e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx
@@ -0,0 +1,231 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+export const timeFormat = () => (
+  <SuperChart
+    chartType="compare"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[
+      {
+        data: [
+          {
+            key: ['Africa and Middle East'],
+            values: [
+              {
+                x: 1606348800000,
+                y: 3985,
+              },
+              {
+                x: 1606435200000,
+                y: 5882,
+              },
+              {
+                x: 1606521600000,
+                y: 7983,
+              },
+              {
+                x: 1606608000000,
+                y: 16462,
+              },
+              {
+                x: 1606694400000,
+                y: 5542,
+              },
+              {
+                x: 1606780800000,
+                y: 2825,
+              },
+            ],
+          },
+          {
+            key: ['Asia'],
+            values: [
+              {
+                x: 1606348800000,
+                y: 34837,
+              },
+              {
+                x: 1606435200000,
+                y: 40718,
+              },
+              {
+                x: 1606521600000,
+                y: 58507,
+              },
+              {
+                x: 1606608000000,
+                y: 110120,
+              },
+              {
+                x: 1606694400000,
+                y: 43443,
+              },
+              {
+                x: 1606780800000,
+                y: 33538,
+              },
+            ],
+          },
+          {
+            key: ['Australia'],
+            values: [
+              {
+                x: 1606348800000,
+                y: 12975,
+              },
+              {
+                x: 1606435200000,
+                y: 18471,
+              },
+              {
+                x: 1606521600000,
+                y: 17880,
+              },
+              {
+                x: 1606608000000,
+                y: 52204,
+              },
+              {
+                x: 1606694400000,
+                y: 26690,
+              },
+              {
+                x: 1606780800000,
+                y: 16423,
+              },
+            ],
+          },
+          {
+            key: ['Europe'],
+            values: [
+              {
+                x: 1606348800000,
+                y: 127029,
+              },
+              {
+                x: 1606435200000,
+                y: 177637,
+              },
+              {
+                x: 1606521600000,
+                y: 172653,
+              },
+              {
+                x: 1606608000000,
+                y: 203654,
+              },
+              {
+                x: 1606694400000,
+                y: 79200,
+              },
+              {
+                x: 1606780800000,
+                y: 45238,
+              },
+            ],
+          },
+          {
+            key: ['LatAm'],
+            values: [
+              {
+                x: 1606348800000,
+                y: 22513,
+              },
+              {
+                x: 1606435200000,
+                y: 24594,
+              },
+              {
+                x: 1606521600000,
+                y: 32578,
+              },
+              {
+                x: 1606608000000,
+                y: 34733,
+              },
+              {
+                x: 1606694400000,
+                y: 71696,
+              },
+              {
+                x: 1606780800000,
+                y: 166611,
+              },
+            ],
+          },
+          {
+            key: ['North America'],
+            values: [
+              {
+                x: 1606348800000,
+                y: 104596,
+              },
+              {
+                x: 1606435200000,
+                y: 109850,
+              },
+              {
+                x: 1606521600000,
+                y: 136873,
+              },
+              {
+                x: 1606608000000,
+                y: 133243,
+              },
+              {
+                x: 1606694400000,
+                y: 327739,
+              },
+              {
+                x: 1606780800000,
+                y: 162711,
+              },
+            ],
+          },
+        ],
+      },
+    ]}
+    formData={{
+      datasource: '24771__table',
+      vizType: 'compare',
+      urlParams: {},
+      timeRangeEndpoints: ['inclusive', 'exclusive'],
+      granularitySqla: '__time',
+      timeGrainSqla: 'P1D',
+      timeRange: 'Last week',
+      metrics: ['random_metric'],
+      adhocFilters: [],
+      groupby: ['dim_origin_region'],
+      timeseriesLimitMetric: null,
+      orderDesc: true,
+      contribution: false,
+      rowLimit: 10000,
+      colorScheme: 'd3Category10',
+      labelColors: {},
+      xAxisLabel: '',
+      bottomMargin: 'auto',
+      xTicksLayout: 'auto',
+      xAxisFormat: 'smart_date',
+      xAxisShowminmax: false,
+      yAxisLabel: '',
+      leftMargin: 'auto',
+      yAxisShowminmax: false,
+      yLogScale: false,
+      yAxisFormat: 'SMART_NUMBER',
+      yAxisBounds: [null, null],
+      rollingType: 'None',
+      comparisonType: 'values',
+      resampleRule: null,
+      resampleMethod: null,
+      annotationLayers: [],
+      appliedTimeExtras: {},
+      where: '',
+      having: '',
+      havingFilters: [],
+      filters: [],
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/Stories.tsx
new file mode 100644
index 0000000..9f51af7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/Stories.tsx
@@ -0,0 +1,10 @@
+import { DistBarChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new DistBarChartPlugin().configure({ key: 'dist-bar' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/DistBar',
+};
+
+export { basic } from './stories/basic';
+export { manyBars } from './stories/manyBars';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/data.ts
new file mode 100644
index 0000000..00540a0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/data.ts
@@ -0,0 +1,93 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    key: 'sum__sum_boys',
+    values: [
+      {
+        x: 'CA',
+        y: 5430796,
+      },
+      {
+        x: 'TX',
+        y: 3311985,
+      },
+      {
+        x: 'NY',
+        y: 3543961,
+      },
+      {
+        x: 'OH',
+        y: 2376385,
+      },
+      {
+        x: 'PA',
+        y: 2390275,
+      },
+      {
+        x: 'IL',
+        y: 2357411,
+      },
+      {
+        x: 'MI',
+        y: 1938321,
+      },
+      {
+        x: 'FL',
+        y: 1968060,
+      },
+      {
+        x: 'NJ',
+        y: 1486126,
+      },
+      {
+        x: 'MA',
+        y: 1285126,
+      },
+    ],
+  },
+  {
+    key: 'sum__sum_girls',
+    values: [
+      {
+        x: 'CA',
+        y: 3567754,
+      },
+      {
+        x: 'TX',
+        y: 2313186,
+      },
+      {
+        x: 'NY',
+        y: 2280733,
+      },
+      {
+        x: 'OH',
+        y: 1622814,
+      },
+      {
+        x: 'PA',
+        y: 1615383,
+      },
+      {
+        x: 'IL',
+        y: 1614427,
+      },
+      {
+        x: 'MI',
+        y: 1326229,
+      },
+      {
+        x: 'FL',
+        y: 1312593,
+      },
+      {
+        x: 'NJ',
+        y: 992702,
+      },
+      {
+        x: 'MA',
+        y: 842146,
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx
new file mode 100644
index 0000000..9f7fe05
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx
@@ -0,0 +1,30 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="dist-bar"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      barstacked: false,
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      contribution: false,
+      orderBars: false,
+      reduceXTicks: false,
+      showBarValue: false,
+      showControls: false,
+      showLegend: true,
+      vizType: 'dist_bar',
+      xAxisLabel: 'ddd',
+      xTicksLayout: 'auto',
+      yAxisFormat: '.3s',
+      yAxisLabel: 'ddd',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx
new file mode 100644
index 0000000..5f804e3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx
@@ -0,0 +1,37 @@
+import React from 'react';
+import { SuperChart, seedRandom } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+const data: {
+  key: string;
+  values: {
+    x: string;
+    y: number;
+  }[];
+}[] = [{ key: 'sth', values: [] }];
+const LONG_LABEL =
+  'some extremely ridiculously extremely extremely extremely ridiculously extremely extremely ridiculously extremely extremely ridiculously extremely long category';
+
+for (let i = 0; i < 50; i += 1) {
+  data[0].values.push({
+    x: `${LONG_LABEL.substring(0, Math.round(seedRandom() * LONG_LABEL.length))} ${i + 1}`,
+    y: Math.round(seedRandom() * 10000),
+  });
+}
+
+export const manyBars = () => (
+  <SuperChart
+    chartType="dist-bar"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      showBarValue: false,
+      showLegend: true,
+      vizType: 'dist_bar',
+      xTicksLayout: 'auto',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/Stories.tsx
new file mode 100644
index 0000000..15c2730
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/Stories.tsx
@@ -0,0 +1,10 @@
+import { DualLineChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new DualLineChartPlugin().configure({ key: 'dual-line' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/DualLine',
+};
+
+export { basic } from './stories/basic';
+export { verifyConsistentColors } from './stories/verifyConsistentColors';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/data.ts
new file mode 100644
index 0000000..911d35c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/data.ts
@@ -0,0 +1,371 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    key: 'avg__num',
+    classed: '',
+    values: [
+      {
+        x: -157766400000.0,
+        y: 1435.6116838487972,
+      },
+      {
+        x: -126230400000.0,
+        y: 1359.0295103957076,
+      },
+      {
+        x: -94694400000.0,
+        y: 1291.0963777490297,
+      },
+      {
+        x: -63158400000.0,
+        y: 1254.5405915670233,
+      },
+      {
+        x: -31536000000.0,
+        y: 1244.9671332927571,
+      },
+      {
+        x: 0.0,
+        y: 1248.7126843657818,
+      },
+      {
+        x: 31536000000.0,
+        y: 1147.4195205479452,
+      },
+      {
+        x: 63072000000.0,
+        y: 1036.6540632054175,
+      },
+      {
+        x: 94694400000.0,
+        y: 980.8740906547285,
+      },
+      {
+        x: 126230400000.0,
+        y: 971.1190345584201,
+      },
+      {
+        x: 157766400000.0,
+        y: 947.5531453362256,
+      },
+      {
+        x: 189302400000.0,
+        y: 962.4153005464481,
+      },
+      {
+        x: 220924800000.0,
+        y: 1004.2832876712329,
+      },
+      {
+        x: 252460800000.0,
+        y: 1000.6107784431138,
+      },
+      {
+        x: 283996800000.0,
+        y: 1045.711965349215,
+      },
+      {
+        x: 315532800000.0,
+        y: 1089.5097402597403,
+      },
+      {
+        x: 347155200000.0,
+        y: 1094.7375201288244,
+      },
+      {
+        x: 378691200000.0,
+        y: 1113.3569511540527,
+      },
+      {
+        x: 410227200000.0,
+        y: 1117.585260892953,
+      },
+      {
+        x: 441763200000.0,
+        y: 1117.1530230069557,
+      },
+      {
+        x: 473385600000.0,
+        y: 1143.6297297297297,
+      },
+      {
+        x: 504921600000.0,
+        y: 1131.3461538461538,
+      },
+      {
+        x: 536457600000.0,
+        y: 1137.0865800865802,
+      },
+      {
+        x: 567993600000.0,
+        y: 1144.3100483610963,
+      },
+      {
+        x: 599616000000.0,
+        y: 1153.075821845175,
+      },
+      {
+        x: 631152000000.0,
+        y: 1170.1328,
+      },
+      {
+        x: 662688000000.0,
+        y: 1134.3757412398922,
+      },
+      {
+        x: 694224000000.0,
+        y: 1102.478189749182,
+      },
+      {
+        x: 725846400000.0,
+        y: 1065.1231527093596,
+      },
+      {
+        x: 757382400000.0,
+        y: 1035.223574986165,
+      },
+      {
+        x: 788918400000.0,
+        y: 997.9584026622297,
+      },
+      {
+        x: 820454400000.0,
+        y: 976.4625698324022,
+      },
+      {
+        x: 852076800000.0,
+        y: 953.0983698707139,
+      },
+      {
+        x: 883612800000.0,
+        y: 961.3199079401611,
+      },
+      {
+        x: 915148800000.0,
+        y: 962.3351032448378,
+      },
+      {
+        x: 946684800000.0,
+        y: 967.1753012048192,
+      },
+      {
+        x: 978307200000.0,
+        y: 955.8330218068536,
+      },
+      {
+        x: 1009843200000.0,
+        y: 947.7684413085311,
+      },
+      {
+        x: 1041379200000.0,
+        y: 951.2866622428667,
+      },
+      {
+        x: 1072915200000.0,
+        y: 913.469184890656,
+      },
+      {
+        x: 1104537600000.0,
+        y: 910.3797643797644,
+      },
+      {
+        x: 1136073600000.0,
+        y: 910.0478229835832,
+      },
+      {
+        x: 1167609600000.0,
+        y: 886.5323636363636,
+      },
+      {
+        x: 1199145600000.0,
+        y: 854.5530769230769,
+      },
+    ],
+    yAxis: 1,
+    type: 'line',
+  },
+  {
+    key: 'sum__num',
+    classed: '',
+    values: [
+      {
+        x: -157766400000.0,
+        y: 2088815,
+      },
+      {
+        x: -126230400000.0,
+        y: 2026313,
+      },
+      {
+        x: -94694400000.0,
+        y: 1996035,
+      },
+      {
+        x: -63158400000.0,
+        y: 1993465,
+      },
+      {
+        x: -31536000000.0,
+        y: 2045481,
+      },
+      {
+        x: 0.0,
+        y: 2116568,
+      },
+      {
+        x: 31536000000.0,
+        y: 2010279,
+      },
+      {
+        x: 63072000000.0,
+        y: 1836951,
+      },
+      {
+        x: 94694400000.0,
+        y: 1752822,
+      },
+      {
+        x: 126230400000.0,
+        y: 1770350,
+      },
+      {
+        x: 157766400000.0,
+        y: 1747288,
+      },
+      {
+        x: 189302400000.0,
+        y: 1761220,
+      },
+      {
+        x: 220924800000.0,
+        y: 1832817,
+      },
+      {
+        x: 252460800000.0,
+        y: 1838122,
+      },
+      {
+        x: 283996800000.0,
+        y: 1931430,
+      },
+      {
+        x: 315532800000.0,
+        y: 2013414,
+      },
+      {
+        x: 347155200000.0,
+        y: 2039496,
+      },
+      {
+        x: 378691200000.0,
+        y: 2074184,
+      },
+      {
+        x: 410227200000.0,
+        y: 2077591,
+      },
+      {
+        x: 441763200000.0,
+        y: 2087959,
+      },
+      {
+        x: 473385600000.0,
+        y: 2115715,
+      },
+      {
+        x: 504921600000.0,
+        y: 2088465,
+      },
+      {
+        x: 536457600000.0,
+        y: 2101336,
+      },
+      {
+        x: 567993600000.0,
+        y: 2129561,
+      },
+      {
+        x: 599616000000.0,
+        y: 2174701,
+      },
+      {
+        x: 631152000000.0,
+        y: 2193999,
+      },
+      {
+        x: 662688000000.0,
+        y: 2104267,
+      },
+      {
+        x: 694224000000.0,
+        y: 2021945,
+      },
+      {
+        x: 725846400000.0,
+        y: 1945980,
+      },
+      {
+        x: 757382400000.0,
+        y: 1870649,
+      },
+      {
+        x: 788918400000.0,
+        y: 1799319,
+      },
+      {
+        x: 820454400000.0,
+        y: 1747868,
+      },
+      {
+        x: 852076800000.0,
+        y: 1695562,
+      },
+      {
+        x: 883612800000.0,
+        y: 1670774,
+      },
+      {
+        x: 915148800000.0,
+        y: 1631158,
+      },
+      {
+        x: 946684800000.0,
+        y: 1605511,
+      },
+      {
+        x: 978307200000.0,
+        y: 1534112,
+      },
+      {
+        x: 1009843200000.0,
+        y: 1477571,
+      },
+      {
+        x: 1041379200000.0,
+        y: 1433589,
+      },
+      {
+        x: 1072915200000.0,
+        y: 1378425,
+      },
+      {
+        x: 1104537600000.0,
+        y: 1313678,
+      },
+      {
+        x: 1136073600000.0,
+        y: 1274977,
+      },
+      {
+        x: 1167609600000.0,
+        y: 1218982,
+      },
+      {
+        x: 1199145600000.0,
+        y: 1110919,
+      },
+    ],
+    yAxis: 2,
+    type: 'line',
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx
new file mode 100644
index 0000000..f4d0dd8
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx
@@ -0,0 +1,21 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="dual-line"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      vizType: 'dual_line',
+      xAxisFormat: 'smart_date',
+      yAxis2Format: '.3s',
+      yAxisFormat: '.3s',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx
new file mode 100644
index 0000000..66a50ec
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx
@@ -0,0 +1,46 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+const reverseData = data.map(series => ({
+  ...series,
+  yAxis: series.yAxis === 1 ? 2 : 1,
+}));
+
+export const verifyConsistentColors = () => (
+  <div>
+    <SuperChart
+      chartType="dual-line"
+      width={400}
+      height={400}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        colorScheme: 'd3Category10',
+        vizType: 'dual_line',
+        xAxisFormat: 'smart_date',
+        yAxis2Format: '.3s',
+        yAxisFormat: '.3s',
+      }}
+    />
+    <SuperChart
+      chartType="dual-line"
+      width={400}
+      height={400}
+      datasource={dummyDatasource}
+      queriesData={[{ data: reverseData }]}
+      formData={{
+        colorScheme: 'd3Category10',
+        vizType: 'dual_line',
+        xAxisFormat: 'smart_date',
+        yAxis2Format: '.3s',
+        yAxisFormat: '.3s',
+      }}
+    />
+  </div>
+);
+
+verifyConsistentColors.story = {
+  name: 'Swap y-axis with consistent color',
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/Stories.tsx
new file mode 100644
index 0000000..7b1cc21
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/Stories.tsx
@@ -0,0 +1,12 @@
+import { LineChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new LineChartPlugin().configure({ key: 'line' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/Line',
+};
+
+export { basic } from './stories/basic';
+export { markers } from './stories/markers';
+export { logScale } from './stories/logScale';
+export { yAxisBounds } from './stories/yAxisBounds';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/data.ts
new file mode 100644
index 0000000..17c1032
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/data.ts
@@ -0,0 +1,908 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    key: ['Christopher'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 24703,
+      },
+      {
+        x: -126230400000.0,
+        y: 27861,
+      },
+      {
+        x: -94694400000.0,
+        y: 29436,
+      },
+      {
+        x: -63158400000.0,
+        y: 31463,
+      },
+      {
+        x: -31536000000.0,
+        y: 35718,
+      },
+      {
+        x: 0.0,
+        y: 41758,
+      },
+      {
+        x: 31536000000.0,
+        y: 48172,
+      },
+      {
+        x: 63072000000.0,
+        y: 52092,
+      },
+      {
+        x: 94694400000.0,
+        y: 48217,
+      },
+      {
+        x: 126230400000.0,
+        y: 48476,
+      },
+      {
+        x: 157766400000.0,
+        y: 46438,
+      },
+      {
+        x: 189302400000.0,
+        y: 45086,
+      },
+      {
+        x: 220924800000.0,
+        y: 46610,
+      },
+      {
+        x: 252460800000.0,
+        y: 47107,
+      },
+      {
+        x: 283996800000.0,
+        y: 50514,
+      },
+      {
+        x: 315532800000.0,
+        y: 48969,
+      },
+      {
+        x: 347155200000.0,
+        y: 50108,
+      },
+      {
+        x: 378691200000.0,
+        y: 59055,
+      },
+      {
+        x: 410227200000.0,
+        y: 59188,
+      },
+      {
+        x: 441763200000.0,
+        y: 59859,
+      },
+      {
+        x: 473385600000.0,
+        y: 59516,
+      },
+      {
+        x: 504921600000.0,
+        y: 56633,
+      },
+      {
+        x: 536457600000.0,
+        y: 54466,
+      },
+      {
+        x: 567993600000.0,
+        y: 52996,
+      },
+      {
+        x: 599616000000.0,
+        y: 53205,
+      },
+      {
+        x: 631152000000.0,
+        y: 52322,
+      },
+      {
+        x: 662688000000.0,
+        y: 47109,
+      },
+      {
+        x: 694224000000.0,
+        y: 42470,
+      },
+      {
+        x: 725846400000.0,
+        y: 38257,
+      },
+      {
+        x: 757382400000.0,
+        y: 34823,
+      },
+      {
+        x: 788918400000.0,
+        y: 32728,
+      },
+      {
+        x: 820454400000.0,
+        y: 30988,
+      },
+      {
+        x: 852076800000.0,
+        y: 29179,
+      },
+      {
+        x: 883612800000.0,
+        y: 27083,
+      },
+      {
+        x: 915148800000.0,
+        y: 25700,
+      },
+      {
+        x: 946684800000.0,
+        y: 24959,
+      },
+      {
+        x: 978307200000.0,
+        y: 23180,
+      },
+      {
+        x: 1009843200000.0,
+        y: 21731,
+      },
+      {
+        x: 1041379200000.0,
+        y: 20793,
+      },
+      {
+        x: 1072915200000.0,
+        y: 19739,
+      },
+      {
+        x: 1104537600000.0,
+        y: 19190,
+      },
+      {
+        x: 1136073600000.0,
+        y: 19674,
+      },
+      {
+        x: 1167609600000.0,
+        y: 19986,
+      },
+      {
+        x: 1199145600000.0,
+        y: 17771,
+      },
+    ],
+  },
+  {
+    key: ['David'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 67646,
+      },
+      {
+        x: -126230400000.0,
+        y: 66207,
+      },
+      {
+        x: -94694400000.0,
+        y: 66581,
+      },
+      {
+        x: -63158400000.0,
+        y: 63531,
+      },
+      {
+        x: -31536000000.0,
+        y: 63502,
+      },
+      {
+        x: 0.0,
+        y: 61570,
+      },
+      {
+        x: 31536000000.0,
+        y: 52948,
+      },
+      {
+        x: 63072000000.0,
+        y: 46218,
+      },
+      {
+        x: 94694400000.0,
+        y: 40968,
+      },
+      {
+        x: 126230400000.0,
+        y: 41654,
+      },
+      {
+        x: 157766400000.0,
+        y: 39019,
+      },
+      {
+        x: 189302400000.0,
+        y: 39165,
+      },
+      {
+        x: 220924800000.0,
+        y: 40407,
+      },
+      {
+        x: 252460800000.0,
+        y: 40533,
+      },
+      {
+        x: 283996800000.0,
+        y: 41898,
+      },
+      {
+        x: 315532800000.0,
+        y: 41743,
+      },
+      {
+        x: 347155200000.0,
+        y: 40486,
+      },
+      {
+        x: 378691200000.0,
+        y: 40283,
+      },
+      {
+        x: 410227200000.0,
+        y: 39048,
+      },
+      {
+        x: 441763200000.0,
+        y: 38346,
+      },
+      {
+        x: 473385600000.0,
+        y: 38395,
+      },
+      {
+        x: 504921600000.0,
+        y: 37021,
+      },
+      {
+        x: 536457600000.0,
+        y: 36672,
+      },
+      {
+        x: 567993600000.0,
+        y: 35214,
+      },
+      {
+        x: 599616000000.0,
+        y: 35139,
+      },
+      {
+        x: 631152000000.0,
+        y: 33661,
+      },
+      {
+        x: 662688000000.0,
+        y: 30347,
+      },
+      {
+        x: 694224000000.0,
+        y: 28344,
+      },
+      {
+        x: 725846400000.0,
+        y: 26947,
+      },
+      {
+        x: 757382400000.0,
+        y: 24784,
+      },
+      {
+        x: 788918400000.0,
+        y: 22967,
+      },
+      {
+        x: 820454400000.0,
+        y: 22941,
+      },
+      {
+        x: 852076800000.0,
+        y: 21824,
+      },
+      {
+        x: 883612800000.0,
+        y: 20816,
+      },
+      {
+        x: 915148800000.0,
+        y: 20267,
+      },
+      {
+        x: 946684800000.0,
+        y: 19695,
+      },
+      {
+        x: 978307200000.0,
+        y: 19281,
+      },
+      {
+        x: 1009843200000.0,
+        y: 18600,
+      },
+      {
+        x: 1041379200000.0,
+        y: 18557,
+      },
+      {
+        x: 1072915200000.0,
+        y: 18315,
+      },
+      {
+        x: 1104537600000.0,
+        y: 18017,
+      },
+      {
+        x: 1136073600000.0,
+        y: 17510,
+      },
+      {
+        x: 1167609600000.0,
+        y: 17400,
+      },
+      {
+        x: 1199145600000.0,
+        y: 16049,
+      },
+    ],
+  },
+  {
+    key: ['James'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 67506,
+      },
+      {
+        x: -126230400000.0,
+        y: 65036,
+      },
+      {
+        x: -94694400000.0,
+        y: 61554,
+      },
+      {
+        x: -63158400000.0,
+        y: 60584,
+      },
+      {
+        x: -31536000000.0,
+        y: 59824,
+      },
+      {
+        x: 0.0,
+        y: 61597,
+      },
+      {
+        x: 31536000000.0,
+        y: 54463,
+      },
+      {
+        x: 63072000000.0,
+        y: 46960,
+      },
+      {
+        x: 94694400000.0,
+        y: 42782,
+      },
+      {
+        x: 126230400000.0,
+        y: 41258,
+      },
+      {
+        x: 157766400000.0,
+        y: 39471,
+      },
+      {
+        x: 189302400000.0,
+        y: 38203,
+      },
+      {
+        x: 220924800000.0,
+        y: 39916,
+      },
+      {
+        x: 252460800000.0,
+        y: 39783,
+      },
+      {
+        x: 283996800000.0,
+        y: 39237,
+      },
+      {
+        x: 315532800000.0,
+        y: 39185,
+      },
+      {
+        x: 347155200000.0,
+        y: 38176,
+      },
+      {
+        x: 378691200000.0,
+        y: 38750,
+      },
+      {
+        x: 410227200000.0,
+        y: 36228,
+      },
+      {
+        x: 441763200000.0,
+        y: 35728,
+      },
+      {
+        x: 473385600000.0,
+        y: 35750,
+      },
+      {
+        x: 504921600000.0,
+        y: 33955,
+      },
+      {
+        x: 536457600000.0,
+        y: 32552,
+      },
+      {
+        x: 567993600000.0,
+        y: 32418,
+      },
+      {
+        x: 599616000000.0,
+        y: 32658,
+      },
+      {
+        x: 631152000000.0,
+        y: 32288,
+      },
+      {
+        x: 662688000000.0,
+        y: 30460,
+      },
+      {
+        x: 694224000000.0,
+        y: 28450,
+      },
+      {
+        x: 725846400000.0,
+        y: 26193,
+      },
+      {
+        x: 757382400000.0,
+        y: 24706,
+      },
+      {
+        x: 788918400000.0,
+        y: 22691,
+      },
+      {
+        x: 820454400000.0,
+        y: 21122,
+      },
+      {
+        x: 852076800000.0,
+        y: 20368,
+      },
+      {
+        x: 883612800000.0,
+        y: 19651,
+      },
+      {
+        x: 915148800000.0,
+        y: 18508,
+      },
+      {
+        x: 946684800000.0,
+        y: 17939,
+      },
+      {
+        x: 978307200000.0,
+        y: 17023,
+      },
+      {
+        x: 1009843200000.0,
+        y: 16905,
+      },
+      {
+        x: 1041379200000.0,
+        y: 16832,
+      },
+      {
+        x: 1072915200000.0,
+        y: 16459,
+      },
+      {
+        x: 1104537600000.0,
+        y: 16046,
+      },
+      {
+        x: 1136073600000.0,
+        y: 16139,
+      },
+      {
+        x: 1167609600000.0,
+        y: 15821,
+      },
+      {
+        x: 1199145600000.0,
+        y: 14920,
+      },
+    ],
+  },
+  {
+    key: ['John'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 71390,
+      },
+      {
+        x: -126230400000.0,
+        y: 64858,
+      },
+      {
+        x: -94694400000.0,
+        y: 61480,
+      },
+      {
+        x: -63158400000.0,
+        y: 60754,
+      },
+      {
+        x: -31536000000.0,
+        y: 58644,
+      },
+      {
+        x: 0.0,
+        y: 58348,
+      },
+      {
+        x: 31536000000.0,
+        y: 51382,
+      },
+      {
+        x: 63072000000.0,
+        y: 43028,
+      },
+      {
+        x: 94694400000.0,
+        y: 39061,
+      },
+      {
+        x: 126230400000.0,
+        y: 37553,
+      },
+      {
+        x: 157766400000.0,
+        y: 34970,
+      },
+      {
+        x: 189302400000.0,
+        y: 33876,
+      },
+      {
+        x: 220924800000.0,
+        y: 34103,
+      },
+      {
+        x: 252460800000.0,
+        y: 33895,
+      },
+      {
+        x: 283996800000.0,
+        y: 35305,
+      },
+      {
+        x: 315532800000.0,
+        y: 35131,
+      },
+      {
+        x: 347155200000.0,
+        y: 34761,
+      },
+      {
+        x: 378691200000.0,
+        y: 34560,
+      },
+      {
+        x: 410227200000.0,
+        y: 33047,
+      },
+      {
+        x: 441763200000.0,
+        y: 32484,
+      },
+      {
+        x: 473385600000.0,
+        y: 31397,
+      },
+      {
+        x: 504921600000.0,
+        y: 30103,
+      },
+      {
+        x: 536457600000.0,
+        y: 29462,
+      },
+      {
+        x: 567993600000.0,
+        y: 29301,
+      },
+      {
+        x: 599616000000.0,
+        y: 29751,
+      },
+      {
+        x: 631152000000.0,
+        y: 29011,
+      },
+      {
+        x: 662688000000.0,
+        y: 27727,
+      },
+      {
+        x: 694224000000.0,
+        y: 26156,
+      },
+      {
+        x: 725846400000.0,
+        y: 24918,
+      },
+      {
+        x: 757382400000.0,
+        y: 24119,
+      },
+      {
+        x: 788918400000.0,
+        y: 23174,
+      },
+      {
+        x: 820454400000.0,
+        y: 22104,
+      },
+      {
+        x: 852076800000.0,
+        y: 21330,
+      },
+      {
+        x: 883612800000.0,
+        y: 20556,
+      },
+      {
+        x: 915148800000.0,
+        y: 20280,
+      },
+      {
+        x: 946684800000.0,
+        y: 20032,
+      },
+      {
+        x: 978307200000.0,
+        y: 18839,
+      },
+      {
+        x: 1009843200000.0,
+        y: 17400,
+      },
+      {
+        x: 1041379200000.0,
+        y: 17170,
+      },
+      {
+        x: 1072915200000.0,
+        y: 16381,
+      },
+      {
+        x: 1104537600000.0,
+        y: 15692,
+      },
+      {
+        x: 1136073600000.0,
+        y: 15083,
+      },
+      {
+        x: 1167609600000.0,
+        y: 14348,
+      },
+      {
+        x: 1199145600000.0,
+        y: 13110,
+      },
+    ],
+  },
+  {
+    key: ['Michael'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 80812,
+      },
+      {
+        x: -126230400000.0,
+        y: 79709,
+      },
+      {
+        x: -94694400000.0,
+        y: 82204,
+      },
+      {
+        x: -63158400000.0,
+        y: 81785,
+      },
+      {
+        x: -31536000000.0,
+        y: 84893,
+      },
+      {
+        x: 0.0,
+        y: 85015,
+      },
+      {
+        x: 31536000000.0,
+        y: 77321,
+      },
+      {
+        x: 63072000000.0,
+        y: 71197,
+      },
+      {
+        x: 94694400000.0,
+        y: 67598,
+      },
+      {
+        x: 126230400000.0,
+        y: 67304,
+      },
+      {
+        x: 157766400000.0,
+        y: 68149,
+      },
+      {
+        x: 189302400000.0,
+        y: 66686,
+      },
+      {
+        x: 220924800000.0,
+        y: 67344,
+      },
+      {
+        x: 252460800000.0,
+        y: 66875,
+      },
+      {
+        x: 283996800000.0,
+        y: 67473,
+      },
+      {
+        x: 315532800000.0,
+        y: 68375,
+      },
+      {
+        x: 347155200000.0,
+        y: 68467,
+      },
+      {
+        x: 378691200000.0,
+        y: 67904,
+      },
+      {
+        x: 410227200000.0,
+        y: 67708,
+      },
+      {
+        x: 441763200000.0,
+        y: 67457,
+      },
+      {
+        x: 473385600000.0,
+        y: 64667,
+      },
+      {
+        x: 504921600000.0,
+        y: 63959,
+      },
+      {
+        x: 536457600000.0,
+        y: 63442,
+      },
+      {
+        x: 567993600000.0,
+        y: 63924,
+      },
+      {
+        x: 599616000000.0,
+        y: 65233,
+      },
+      {
+        x: 631152000000.0,
+        y: 65138,
+      },
+      {
+        x: 662688000000.0,
+        y: 60646,
+      },
+      {
+        x: 694224000000.0,
+        y: 54216,
+      },
+      {
+        x: 725846400000.0,
+        y: 49443,
+      },
+      {
+        x: 757382400000.0,
+        y: 44361,
+      },
+      {
+        x: 788918400000.0,
+        y: 41311,
+      },
+      {
+        x: 820454400000.0,
+        y: 38284,
+      },
+      {
+        x: 852076800000.0,
+        y: 37459,
+      },
+      {
+        x: 883612800000.0,
+        y: 36525,
+      },
+      {
+        x: 915148800000.0,
+        y: 33820,
+      },
+      {
+        x: 946684800000.0,
+        y: 31956,
+      },
+      {
+        x: 978307200000.0,
+        y: 29612,
+      },
+      {
+        x: 1009843200000.0,
+        y: 28156,
+      },
+      {
+        x: 1041379200000.0,
+        y: 27031,
+      },
+      {
+        x: 1072915200000.0,
+        y: 25418,
+      },
+      {
+        x: 1104537600000.0,
+        y: 23678,
+      },
+      {
+        x: 1136073600000.0,
+        y: 22498,
+      },
+      {
+        x: 1167609600000.0,
+        y: 21805,
+      },
+      {
+        x: 1199145600000.0,
+        y: 20271,
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx
new file mode 100644
index 0000000..61b8cec
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx
@@ -0,0 +1,34 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="line"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      leftMargin: 'auto',
+      lineInterpolation: 'linear',
+      richTooltip: true,
+      showBrush: 'auto',
+      showLegend: true,
+      showMarkers: false,
+      vizType: 'line',
+      xAxisFormat: 'smart_date',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yAxisLabel: '',
+      yAxisShowminmax: false,
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx
new file mode 100644
index 0000000..698966d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx
@@ -0,0 +1,21 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const logScale = () => (
+  <SuperChart
+    chartType="line"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      richTooltip: true,
+      vizType: 'line',
+      yAxisBounds: [1, 60000],
+      yAxisFormat: ',d',
+      yLogScale: true,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx
new file mode 100644
index 0000000..ff5d5f7
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx
@@ -0,0 +1,34 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const markers = () => (
+  <SuperChart
+    chartType="line"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      leftMargin: 'auto',
+      lineInterpolation: 'linear',
+      richTooltip: true,
+      showBrush: 'auto',
+      showLegend: true,
+      showMarkers: true,
+      vizType: 'line',
+      xAxisFormat: 'smart_date',
+      xAxisLabel: '',
+      xAxisShowminmax: false,
+      xTicksLayout: 'auto',
+      yAxisBounds: [null, null],
+      yAxisFormat: '.3s',
+      yAxisLabel: '',
+      yAxisShowminmax: false,
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx
new file mode 100644
index 0000000..0d82607
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx
@@ -0,0 +1,79 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const yAxisBounds = () => (
+  <div className="container">
+    <h2>yAxisBounds</h2>
+    <pre>yAxisBounds=undefined</pre>
+    <SuperChart
+      chartType="line"
+      width={400}
+      height={200}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        richTooltip: true,
+        showLegend: false,
+        vizType: 'line',
+      }}
+    />
+    <pre>yAxisBounds=[0, 60000]</pre>
+    <SuperChart
+      chartType="line"
+      width={400}
+      height={200}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        richTooltip: true,
+        showLegend: false,
+        vizType: 'line',
+        yAxisBounds: [0, 60000],
+      }}
+    />
+    <pre>yAxisBounds=[null, 60000]</pre>
+    <SuperChart
+      chartType="line"
+      width={400}
+      height={200}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        richTooltip: true,
+        showLegend: false,
+        vizType: 'line',
+        yAxisBounds: [null, 60000],
+      }}
+    />
+    <pre>yAxisBounds=[40000, null]</pre>
+    <SuperChart
+      chartType="line"
+      width={400}
+      height={200}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        richTooltip: true,
+        showLegend: false,
+        vizType: 'line',
+        yAxisBounds: [40000, null],
+      }}
+    />
+    <pre>yAxisBounds=[40000, null] with Legend</pre>
+    <SuperChart
+      chartType="line"
+      width={400}
+      height={200}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        richTooltip: true,
+        showLegend: true,
+        vizType: 'line',
+        yAxisBounds: [40000, null],
+      }}
+    />
+  </div>
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/Stories.tsx
new file mode 100644
index 0000000..fc9d0c5
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/Stories.tsx
@@ -0,0 +1,10 @@
+import { PieChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new PieChartPlugin().configure({ key: 'pie' }).register();
+
+export default {
+  title: 'Legacy Chart Plugins|legacy-preset-chart-nvd3/Pie',
+};
+
+export { basic } from './stories/basic';
+export { noData } from './stories/noData';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/data.ts
new file mode 100644
index 0000000..09f61ae
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/data.ts
@@ -0,0 +1,11 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    x: 'boy',
+    y: 48133355,
+  },
+  {
+    x: 'girl',
+    y: 32546308,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx
new file mode 100644
index 0000000..69717eb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx
@@ -0,0 +1,24 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="pie"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      donut: false,
+      labelsOutside: true,
+      numberFormat: '.3s',
+      pieLabelType: 'key',
+      showLabels: true,
+      showLegend: true,
+      vizType: 'pie',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx
new file mode 100644
index 0000000..205212d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx
@@ -0,0 +1,23 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+export const noData = () => (
+  <SuperChart
+    chartType="pie"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data: [] }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      donut: false,
+      labelsOutside: true,
+      numberFormat: '.3s',
+      pieLabelType: 'key',
+      showLabels: true,
+      showLegend: true,
+      vizType: 'pie',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/Stories.tsx
new file mode 100644
index 0000000..81f86ad
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/Stories.tsx
@@ -0,0 +1,104 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import { withKnobs, select } from '@storybook/addon-knobs';
+import { maps, ChoroplethMapChartPlugin } from '@superset-ui/plugin-chart-choropleth-map';
+import useFakeMapData from './useFakeMapData';
+
+new ChoroplethMapChartPlugin().configure({ key: 'choropleth-map' }).register();
+
+export default {
+  title: 'Chart Plugins|plugin-chart-choropleth-map',
+  decorators: [withKnobs],
+};
+
+export const WorldMap = () => {
+  const map = select(
+    'Map',
+    maps.map(m => m.key),
+    'world',
+    'map',
+  );
+
+  return (
+    <SuperChart
+      chartType="choropleth-map"
+      width={800}
+      height={450}
+      queriesData={[{ data: useFakeMapData(map) }]}
+      formData={{
+        map,
+        encoding: {
+          key: {
+            field: 'key',
+            title: 'Location',
+          },
+          fill: {
+            type: 'quantitative',
+            field: 'numStudents',
+            scale: {
+              range: ['#cecee5', '#3f007d'],
+            },
+          },
+        },
+      }}
+    />
+  );
+};
+
+export const USA = () => (
+  <SuperChart
+    chartType="choropleth-map"
+    width={800}
+    height={450}
+    queriesData={[{ data: useFakeMapData('usa') }]}
+    formData={{
+      map: 'usa',
+      encoding: {
+        key: {
+          field: 'key',
+          title: 'State',
+        },
+        fill: {
+          type: 'quantitative',
+          field: 'numStudents',
+          title: 'No. of students',
+          scale: {
+            range: ['#fdc28c', '#7f2704'],
+          },
+        },
+        tooltip: [
+          {
+            field: 'favoriteFruit',
+            title: 'Fruit',
+          },
+        ],
+      },
+    }}
+  />
+);
+
+export const CategoricalColor = () => (
+  <SuperChart
+    chartType="choropleth-map"
+    width={800}
+    height={450}
+    queriesData={[{ data: useFakeMapData('usa') }]}
+    formData={{
+      map: 'usa',
+      encoding: {
+        key: {
+          field: 'key',
+          title: 'State',
+        },
+        fill: {
+          type: 'nominal',
+          field: 'favoriteFruit',
+          scale: {
+            domain: ['apple', 'banana', 'grape'],
+            range: ['#e74c3c', '#f1c40f', '#9b59b6'],
+          },
+        },
+      },
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/generateFakeMapData.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/generateFakeMapData.ts
new file mode 100644
index 0000000..3b2295f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/generateFakeMapData.ts
@@ -0,0 +1,45 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { seedRandom } from '@superset-ui/core';
+import loadMap from '../../../../../../plugins/plugin-chart-choropleth-map/src/chart/loadMap';
+
+const FRUITS = ['apple', 'banana', 'grape'];
+
+export type FakeMapData = {
+  key: string;
+  favoriteFruit: string;
+  numStudents: number;
+}[];
+
+/**
+ * Generate mock data for the given map
+ * Output is a promise of an array
+ * { key, favoriteFruit, numStudents }[]
+ * @param map map name
+ */
+export default async function generateFakeMapData(map: string) {
+  const { object, metadata } = await loadMap(map);
+  return object.features
+    .map(f => metadata.keyAccessor(f))
+    .map(key => ({
+      key,
+      favoriteFruit: FRUITS[Math.round(seedRandom() * 2)],
+      numStudents: Math.round(seedRandom() * 100),
+    }));
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/useFakeMapData.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/useFakeMapData.ts
new file mode 100644
index 0000000..1b8dedb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/useFakeMapData.ts
@@ -0,0 +1,14 @@
+import { useState, useEffect } from 'react';
+import generateFakeMapData, { FakeMapData } from './generateFakeMapData';
+
+export default function useFakeMapData(map: string) {
+  const [mapData, setMapData] = useState<FakeMapData | undefined>(undefined);
+
+  useEffect(() => {
+    generateFakeMapData(map).then(mapData => {
+      setMapData(mapData);
+    });
+  }, [map]);
+
+  return mapData;
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx
new file mode 100644
index 0000000..5890aeb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx
@@ -0,0 +1,35 @@
+import React from 'react';
+import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core';
+import { select, withKnobs } from '@storybook/addon-knobs';
+import { EchartsBoxPlotChartPlugin } from '@superset-ui/plugin-chart-echarts';
+import transformProps from '@superset-ui/plugin-chart-echarts/lib/BoxPlot/transformProps';
+import data from './data';
+import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo';
+
+new EchartsBoxPlotChartPlugin().configure({ key: 'echarts-boxplot' }).register();
+
+getChartTransformPropsRegistry().registerValue('echarts-boxplot', transformProps);
+
+export default {
+  title: 'Chart Plugins|plugin-chart-echarts/BoxPlot',
+  decorators: [withKnobs, withResizableChartDemo],
+};
+
+export const BoxPlot = ({ width, height }) => {
+  return (
+    <SuperChart
+      chartType="echarts-boxplot"
+      width={width}
+      height={height}
+      queriesData={[{ data }]}
+      formData={{
+        columns: [],
+        groupby: ['type', 'region'],
+        metrics: ['AVG(averageprice)'],
+        whiskerOptions: 'Tukey',
+        xTicksLayout: select('X Tick Layout', ['auto', 'flat', '45°', '90°', 'staggered'], '45°'),
+        yAxisFormat: 'SMART_NUMBER',
+      }}
+    />
+  );
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/data.ts
new file mode 100644
index 0000000..6181bdc
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/data.ts
@@ -0,0 +1,122 @@
+export default [
+  {
+    type: 'organic',
+    region: 'Charlotte',
+    'AVG(averageprice)__mean': 1.9405512820512825,
+    'AVG(averageprice)__median': 1.9025,
+    'AVG(averageprice)__max': 2.505,
+    'AVG(averageprice)__min': 1.4775,
+    'AVG(averageprice)__q1': 1.73875,
+    'AVG(averageprice)__q3': 2.105,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [2.735],
+  },
+  {
+    type: 'organic',
+    region: 'Hartford Springfield',
+    'AVG(averageprice)__mean': 2.231141025641026,
+    'AVG(averageprice)__median': 2.265,
+    'AVG(averageprice)__max': 2.595,
+    'AVG(averageprice)__min': 1.862,
+    'AVG(averageprice)__q1': 2.1285,
+    'AVG(averageprice)__q3': 2.32625,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [],
+  },
+  {
+    type: 'organic',
+    region: 'Jacksonville',
+    'AVG(averageprice)__mean': 1.829282051282052,
+    'AVG(averageprice)__median': 1.808,
+    'AVG(averageprice)__max': 2.255,
+    'AVG(averageprice)__min': 1.455,
+    'AVG(averageprice)__q1': 1.6945000000000001,
+    'AVG(averageprice)__q3': 1.9475,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [2.48, 2.406, 1.3075, 1.274],
+  },
+  {
+    type: 'organic',
+    region: 'NewYork',
+    'AVG(averageprice)__mean': 2.0531923076923073,
+    'AVG(averageprice)__median': 2.068,
+    'AVG(averageprice)__max': 2.348,
+    'AVG(averageprice)__min': 1.785,
+    'AVG(averageprice)__q1': 1.9725000000000001,
+    'AVG(averageprice)__q3': 2.125,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [2.3825, 2.38, 1.7075],
+  },
+  {
+    type: 'organic',
+    region: 'Northeast',
+    'AVG(averageprice)__mean': 1.8608333333333336,
+    'AVG(averageprice)__median': 1.868,
+    'AVG(averageprice)__max': 2.145,
+    'AVG(averageprice)__min': 1.5925,
+    'AVG(averageprice)__q1': 1.76375,
+    'AVG(averageprice)__q3': 1.96875,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [],
+  },
+  {
+    type: 'organic',
+    region: 'Orlando',
+    'AVG(averageprice)__mean': 1.7969999999999995,
+    'AVG(averageprice)__median': 1.8075,
+    'AVG(averageprice)__max': 2.1125,
+    'AVG(averageprice)__min': 1.306,
+    'AVG(averageprice)__q1': 1.6237499999999998,
+    'AVG(averageprice)__q3': 1.8697499999999998,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [2.3825, 2.358, 2.252],
+  },
+  {
+    type: 'organic',
+    region: 'Philadelphia',
+    'AVG(averageprice)__mean': 1.8673589743589747,
+    'AVG(averageprice)__median': 1.85,
+    'AVG(averageprice)__max': 2.2525,
+    'AVG(averageprice)__min': 1.56,
+    'AVG(averageprice)__q1': 1.7125,
+    'AVG(averageprice)__q3': 1.99575,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [],
+  },
+  {
+    type: 'organic',
+    region: 'Raleigh Greensboro',
+    'AVG(averageprice)__mean': 1.8851410256410257,
+    'AVG(averageprice)__median': 1.782,
+    'AVG(averageprice)__max': 2.402,
+    'AVG(averageprice)__min': 1.356,
+    'AVG(averageprice)__q1': 1.7000000000000002,
+    'AVG(averageprice)__q3': 2.0045,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [2.79, 2.6225, 2.5575, 2.5],
+  },
+  {
+    type: 'organic',
+    region: 'Sacramento',
+    'AVG(averageprice)__mean': 1.972871794871795,
+    'AVG(averageprice)__median': 1.9875,
+    'AVG(averageprice)__max': 2.655,
+    'AVG(averageprice)__min': 1.2925,
+    'AVG(averageprice)__q1': 1.74875,
+    'AVG(averageprice)__q3': 2.1465,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [],
+  },
+  {
+    type: 'organic',
+    region: 'San Francisco',
+    'AVG(averageprice)__mean': 2.213615384615385,
+    'AVG(averageprice)__median': 2.275,
+    'AVG(averageprice)__max': 2.9825,
+    'AVG(averageprice)__min': 1.2275,
+    'AVG(averageprice)__q1': 1.9675,
+    'AVG(averageprice)__q3': 2.541,
+    'AVG(averageprice)__count': 39,
+    'AVG(averageprice)__outliers': [],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx
new file mode 100644
index 0000000..d051136
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx
@@ -0,0 +1,74 @@
+import React from 'react';
+import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core';
+import { boolean, number, select, withKnobs } from '@storybook/addon-knobs';
+import { EchartsPieChartPlugin } from '@superset-ui/plugin-chart-echarts';
+import transformProps from '@superset-ui/plugin-chart-echarts/lib/Pie/transformProps';
+import { weekday, population } from './data';
+import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo';
+
+new EchartsPieChartPlugin().configure({ key: 'echarts-pie' }).register();
+
+getChartTransformPropsRegistry().registerValue('echarts-pie', transformProps);
+
+export default {
+  title: 'Chart Plugins|plugin-chart-echarts/Pie',
+  decorators: [withKnobs, withResizableChartDemo],
+};
+
+export const WeekdayPie = ({ width, height }) => {
+  return (
+    <SuperChart
+      chartType="echarts-pie"
+      width={width}
+      height={height}
+      queriesData={[{ data: weekday }]}
+      formData={{
+        colorScheme: 'supersetColors',
+        groupby: ['Day'],
+        metric: 'SUM(AIR_TIME)',
+        numberFormat: 'SMART_NUMBER',
+        donut: boolean('Donut', false),
+        innerRadius: number('Inner Radius', 30),
+        outerRadius: number('Outer Radius', 70),
+        labelsOutside: boolean('Labels outside', true),
+        labelLine: boolean('Label line', true),
+        showLabels: boolean('Show labels', true),
+        showLegend: boolean('Show legend', false),
+        labelType: select(
+          'Pie label type',
+          ['key', 'value', 'percent', 'key_value', 'key_percent', 'key_value_percent'],
+          'key',
+        ),
+      }}
+    />
+  );
+};
+
+export const PopulationPie = ({ width, height }) => {
+  return (
+    <SuperChart
+      chartType="echarts-pie"
+      width={width}
+      height={height}
+      queriesData={[{ data: population }]}
+      formData={{
+        colorScheme: 'supersetColors',
+        groupby: ['Country'],
+        metric: 'Population',
+        numberFormat: 'SMART_NUMBER',
+        donut: boolean('Donut', false),
+        innerRadius: number('Inner Radius', 30),
+        outerRadius: number('Outer Radius', 70),
+        labelsOutside: boolean('Labels outside', false),
+        labelLine: boolean('Label line', true),
+        showLabels: boolean('Show labels', true),
+        showLegend: boolean('Show legend', false),
+        labelType: select(
+          'Pie label type',
+          ['key', 'value', 'percent', 'key_value', 'key_percent', 'key_value_percent'],
+          'key',
+        ),
+      }}
+    />
+  );
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/data.ts
new file mode 100644
index 0000000..bc9b6a6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/data.ts
@@ -0,0 +1,223 @@
+export const weekday = [
+  { Day: 'Friday', 'SUM(AIR_TIME)': 1943661 },
+  { Day: 'Saturday', 'SUM(AIR_TIME)': 1798845 },
+  { Day: 'Thursday', 'SUM(AIR_TIME)': 1626157 },
+  { Day: 'Sunday', 'SUM(AIR_TIME)': 1048653 },
+];
+
+export const population = [
+  { Country: 'China', Population: 58345455000 },
+  { Country: 'India', Population: 46023037597 },
+  { Country: 'United States', Population: 13604468357 },
+  { Country: 'Indonesia', Population: 9357861231 },
+  { Country: 'Brazil', Population: 7752058955 },
+  { Country: 'Russian Federation', Population: 7667188460 },
+  { Country: 'Japan', Population: 6454620759 },
+  { Country: 'Pakistan', Population: 5696041480 },
+  { Country: 'Bangladesh', Population: 5549261462 },
+  { Country: 'Nigeria', Population: 5259800493 },
+  { Country: 'Mexico', Population: 4444653964 },
+  { Country: 'Germany', Population: 4361793335 },
+  { Country: 'Vietnam', Population: 3420037000 },
+  { Country: 'Philippines', Population: 3272015554 },
+  { Country: 'United Kingdom', Population: 3169118137 },
+  { Country: 'France', Population: 3151638853 },
+  { Country: 'Italy', Population: 3082869665 },
+  { Country: 'Egypt, Arab Rep.', Population: 2967887581 },
+  { Country: 'Thailand', Population: 2827157965 },
+  { Country: 'Turkey', Population: 2805220683 },
+  { Country: 'Ethiopia', Population: 2750952916 },
+  { Country: 'Iran, Islamic Rep.', Population: 2717528355 },
+  { Country: 'Ukraine', Population: 2657782543 },
+  { Country: 'Korea, Rep.', Population: 2216456927 },
+  { Country: 'Myanmar', Population: 2126848982 },
+  { Country: 'Spain', Population: 2115316751 },
+  { Country: 'Congo, Dem. Rep.', Population: 2015439254 },
+  { Country: 'Poland', Population: 1976772515 },
+  { Country: 'South Africa', Population: 1871083248 },
+  { Country: 'Colombia', Population: 1776189608 },
+  { Country: 'Argentina', Population: 1728332290 },
+  { Country: 'Canada', Population: 1470276931 },
+  { Country: 'Tanzania', Population: 1413734053 },
+  { Country: 'Algeria', Population: 1317290647 },
+  { Country: 'Morocco', Population: 1277441301 },
+  { Country: 'Kenya', Population: 1253201109 },
+  { Country: 'Romania', Population: 1171333228 },
+  { Country: 'Peru', Population: 1121937313 },
+  { Country: 'Sudan', Population: 1118903636 },
+  { Country: 'Uzbekistan', Population: 1053380227 },
+  { Country: 'Korea, Dem. Rep.', Population: 1047335229 },
+  { Country: 'Venezuela, RB', Population: 1036057583 },
+  { Country: 'Nepal', Population: 1007162709 },
+  { Country: 'Uganda', Population: 987376102 },
+  { Country: 'Iraq', Population: 983604177 },
+  { Country: 'Malaysia', Population: 978122682 },
+  { Country: 'Australia', Population: 903260509 },
+  { Country: 'Afghanistan', Population: 887557752 },
+  { Country: 'Sri Lanka', Population: 881137000 },
+  { Country: 'Saudi Arabia', Population: 828451525 },
+  { Country: 'Mozambique', Population: 807229371 },
+  { Country: 'Netherlands', Population: 803013980 },
+  { Country: 'Ghana', Population: 801844889 },
+  { Country: 'Kazakhstan', Population: 797168043 },
+  { Country: 'Chile', Population: 696739897 },
+  { Country: 'Yemen, Rep.', Population: 695646128 },
+  { Country: 'Cameroon', Population: 664127790 },
+  { Country: 'Syrian Arab Republic', Population: 663924524 },
+  { Country: 'Madagascar', Population: 656478313 },
+  { Country: 'Angola', Population: 641906296 },
+  { Country: "Cote d'Ivoire", Population: 634194484 },
+  { Country: 'Hungary', Population: 566995908 },
+  { Country: 'Czech Republic', Population: 559416359 },
+  { Country: 'Belgium', Population: 551921585 },
+  { Country: 'Cuba', Population: 550461345 },
+  { Country: 'Greece', Population: 547065293 },
+  { Country: 'Ecuador', Population: 537148542 },
+  { Country: 'Portugal', Population: 536945679 },
+  { Country: 'Belarus', Population: 524490000 },
+  { Country: 'Cambodia', Population: 523555378 },
+  { Country: 'Zimbabwe', Population: 509866860 },
+  { Country: 'Burkina Faso', Population: 505122912 },
+  { Country: 'Mali', Population: 500758830 },
+  { Country: 'Guatemala', Population: 498361800 },
+  { Country: 'Niger', Population: 471910464 },
+  { Country: 'Malawi', Population: 470725354 },
+  { Country: 'Sweden', Population: 468210684 },
+  { Country: 'Bulgaria', Population: 456247765 },
+  { Country: 'Zambia', Population: 438847085 },
+  { Country: 'Austria', Population: 426785647 },
+  { Country: 'Tunisia', Population: 415992799 },
+  { Country: 'Senegal', Population: 414475224 },
+  { Country: 'Haiti', Population: 377521290 },
+  { Country: 'Azerbaijan', Population: 374210660 },
+  { Country: 'Dominican Republic', Population: 373939753 },
+  { Country: 'Switzerland', Population: 369360744 },
+  { Country: 'Bolivia', Population: 368308373 },
+  { Country: 'Guinea', Population: 362469063 },
+  { Country: 'Chad', Population: 355875809 },
+  { Country: 'Rwanda', Population: 347121852 },
+  { Country: 'Somalia', Population: 332677926 },
+  { Country: 'South Sudan', Population: 319024522 },
+  { Country: 'Burundi', Population: 305731834 },
+  { Country: 'Hong Kong SAR, China', Population: 298353905 },
+  { Country: 'Benin', Population: 290736360 },
+  { Country: 'Denmark', Population: 283435789 },
+  { Country: 'Slovak Republic', Population: 276228375 },
+  { Country: 'Finland', Population: 271585488 },
+  { Country: 'Tajikistan', Population: 267603756 },
+  { Country: 'El Salvador', Population: 266413287 },
+  { Country: 'Israel', Population: 263866720 },
+  { Country: 'Honduras', Population: 257791863 },
+  { Country: 'Croatia', Population: 246197511 },
+  { Country: 'Georgia', Population: 241070850 },
+  { Country: 'Norway', Population: 233337059 },
+  { Country: 'Papua New Guinea', Population: 228299012 },
+  { Country: 'Lao PDR', Population: 227340983 },
+  { Country: 'Kyrgyz Republic', Population: 222809200 },
+  { Country: 'Paraguay', Population: 221768661 },
+  { Country: 'Libya', Population: 217716251 },
+  { Country: 'Bosnia and Herzegovina', Population: 215521543 },
+  { Country: 'Nicaragua', Population: 213048662 },
+  { Country: 'Togo', Population: 204624027 },
+  { Country: 'Sierra Leone', Population: 203443826 },
+  { Country: 'Ireland', Population: 196019322 },
+  { Country: 'Turkmenistan', Population: 189687365 },
+  { Country: 'New Zealand', Population: 187593600 },
+  { Country: 'Serbia', Population: 186596480 },
+  { Country: 'Moldova', Population: 186156257 },
+  { Country: 'Lithuania', Population: 182416949 },
+  { Country: 'Puerto Rico', Population: 181515497 },
+  { Country: 'Jordan', Population: 180850641 },
+  { Country: 'Singapore', Population: 173168000 },
+  { Country: 'Uruguay', Population: 167612670 },
+  { Country: 'Costa Rica', Population: 163515714 },
+  { Country: 'Lebanon', Population: 162031498 },
+  { Country: 'Eritrea', Population: 161125877 },
+  { Country: 'Armenia', Population: 160782905 },
+  { Country: 'Central African Republic', Population: 158650217 },
+  { Country: 'Albania', Population: 148154320 },
+  { Country: 'United Arab Emirates', Population: 134952923 },
+  { Country: 'Panama', Population: 130974461 },
+  { Country: 'Congo, Rep.', Population: 130701144 },
+  { Country: 'Latvia', Population: 130544986 },
+  { Country: 'Liberia', Population: 125666085 },
+  { Country: 'Jamaica', Population: 124779119 },
+  { Country: 'Mauritania', Population: 113489314 },
+  { Country: 'Mongolia', Population: 106717826 },
+  { Country: 'Slovenia', Population: 104119695 },
+  { Country: 'Macedonia, FYR', Population: 104100695 },
+  { Country: 'Oman', Population: 93132249 },
+  { Country: 'Kosovo', Population: 86627232 },
+  { Country: 'Kuwait', Population: 84737006 },
+  { Country: 'Lesotho', Population: 81971241 },
+  { Country: 'West Bank and Gaza', Population: 77390117 },
+  { Country: 'Estonia', Population: 77119567 },
+  { Country: 'Namibia', Population: 75238033 },
+  { Country: 'Botswana', Population: 70510085 },
+  { Country: 'Trinidad and Tobago', Population: 62771502 },
+  { Country: 'Guinea-Bissau', Population: 58400669 },
+  { Country: 'Mauritius', Population: 56066051 },
+  { Country: 'Gabon', Population: 52489952 },
+  { Country: 'Gambia, The', Population: 50232086 },
+  { Country: 'Cyprus', Population: 43711039 },
+  { Country: 'Swaziland', Population: 42858935 },
+  { Country: 'Timor-Leste', Population: 41694123 },
+  { Country: 'Guyana', Population: 39868752 },
+  { Country: 'Fiji', Population: 37505227 },
+  { Country: 'Montenegro', Population: 31652512 },
+  { Country: 'Qatar', Population: 30075210 },
+  { Country: 'Bahrain', Population: 29724096 },
+  { Country: 'Djibouti', Population: 26324244 },
+  { Country: 'Bhutan', Population: 25987074 },
+  { Country: 'Comoros', Population: 22692936 },
+  { Country: 'Suriname', Population: 22687861 },
+  { Country: 'Equatorial Guinea', Population: 22627794 },
+  { Country: 'Luxembourg', Population: 21852156 },
+  { Country: 'Malta', Population: 19363458 },
+  { Country: 'Cabo Verde', Population: 19178461 },
+  { Country: 'Macao SAR, China', Population: 18882494 },
+  { Country: 'Solomon Islands', Population: 16859526 },
+  { Country: 'Barbados', Population: 14146501 },
+  { Country: 'Iceland', Population: 13716537 },
+  { Country: 'Bahamas, The', Population: 13446111 },
+  { Country: 'Brunei Darussalam', Population: 13322318 },
+  { Country: 'Maldives', Population: 11478624 },
+  { Country: 'Belize', Population: 10571460 },
+  { Country: 'French Polynesia', Population: 9974982 },
+  { Country: 'New Caledonia', Population: 9225822 },
+  { Country: 'Samoa', Population: 8770470 },
+  { Country: 'Vanuatu', Population: 7966814 },
+  { Country: 'Curacao', Population: 7898637 },
+  { Country: 'Channel Islands', Population: 7515697 },
+  { Country: 'St. Lucia', Population: 7336842 },
+  { Country: 'Guam', Population: 6647797 },
+  { Country: 'Sao Tome and Principe', Population: 6169644 },
+  { Country: 'St. Vincent and the Grenadines', Population: 5557117 },
+  { Country: 'Grenada', Population: 5366107 },
+  { Country: 'Tonga', Population: 5038574 },
+  { Country: 'Virgin Islands (U.S.)', Population: 5006756 },
+  { Country: 'Micronesia, Fed. Sts.', Population: 4627492 },
+  { Country: 'Aruba', Population: 4048374 },
+  { Country: 'Antigua and Barbuda', Population: 3887170 },
+  { Country: 'Dominica', Population: 3881071 },
+  { Country: 'Kiribati', Population: 3874990 },
+  { Country: 'Seychelles', Population: 3761184 },
+  { Country: 'Isle of Man', Population: 3728525 },
+  { Country: 'Bermuda', Population: 3159267 },
+  { Country: 'Greenland', Population: 2807533 },
+  { Country: 'Andorra', Population: 2704725 },
+  { Country: 'St. Kitts and Nevis', Population: 2535482 },
+  { Country: 'Faeroe Islands', Population: 2399439 },
+  { Country: 'American Samoa', Population: 2294886 },
+  { Country: 'Marshall Islands', Population: 2086174 },
+  { Country: 'Northern Mariana Islands', Population: 2015842 },
+  { Country: 'Monaco', Population: 1595554 },
+  { Country: 'Liechtenstein', Population: 1527171 },
+  { Country: 'Cayman Islands', Population: 1480956 },
+  { Country: 'San Marino', Population: 1298411 },
+  { Country: 'St. Martin (French part)', Population: 1020457 },
+  { Country: 'Palau', Population: 833299 },
+  { Country: 'Turks and Caicos Islands', Population: 775185 },
+  { Country: 'Sint Maarten (Dutch part)', Population: 597781 },
+  { Country: 'Tuvalu', Population: 466709 },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx
new file mode 100644
index 0000000..82c8c6c
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx
@@ -0,0 +1,60 @@
+import React from 'react';
+import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core';
+import { boolean, number, select, withKnobs } from '@storybook/addon-knobs';
+import { EchartsTimeseriesChartPlugin } from '@superset-ui/plugin-chart-echarts';
+import transformProps from '@superset-ui/plugin-chart-echarts/lib/Timeseries/transformProps';
+import data from './data';
+import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo';
+
+new EchartsTimeseriesChartPlugin().configure({ key: 'echarts-timeseries' }).register();
+
+getChartTransformPropsRegistry().registerValue('echarts-timeseries', transformProps);
+
+export default {
+  title: 'Chart Plugins|plugin-chart-echarts/Timeseries',
+  decorators: [withKnobs, withResizableChartDemo],
+};
+
+export const Timeseries = ({ width, height }) => {
+  const forecastEnabled = boolean('Enable forecast', true);
+  const queryData = data
+    .map(row =>
+      forecastEnabled
+        ? row
+        : {
+            // eslint-disable-next-line no-underscore-dangle
+            __timestamp: row.__timestamp,
+            Boston: row.Boston,
+            California: row.California,
+            WestTexNewMexico: row.WestTexNewMexico,
+          },
+    )
+    .filter(row => forecastEnabled || !!row.Boston);
+  return (
+    <SuperChart
+      chartType="echarts-timeseries"
+      width={width}
+      height={height}
+      queriesData={[{ data: queryData }]}
+      formData={{
+        contributionMode: undefined,
+        forecastEnabled,
+        colorScheme: 'supersetColors',
+        seriesType: select(
+          'Line type',
+          ['line', 'scatter', 'smooth', 'bar', 'start', 'middle', 'end'],
+          'line',
+        ),
+        logAxis: boolean('Log axis', false),
+        yAxisFormat: 'SMART_NUMBER',
+        stack: boolean('Stack', false),
+        area: boolean('Area chart', false),
+        markerEnabled: boolean('Enable markers', false),
+        markerSize: number('Marker Size', 6),
+        minorSplitLine: boolean('Minor splitline', false),
+        opacity: number('Opacity', 0.2),
+        zoomable: boolean('Zoomable', false),
+      }}
+    />
+  );
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/data.ts
new file mode 100644
index 0000000..6edefa0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/data.ts
@@ -0,0 +1,3317 @@
+export default [
+  {
+    __timestamp: 1419811200000,
+    Boston__yhat: 1.5348466045278903,
+    Boston__yhat_lower: 1.4108696830290821,
+    Boston__yhat_upper: 1.65406759478647,
+    Boston: 1.425,
+    California__yhat: 1.1428578093572317,
+    California__yhat_lower: 0.9954265301846809,
+    California__yhat_upper: 1.285336837473888,
+    California: 1.085,
+    WestTexNewMexico__yhat: 1.2189159706952082,
+    WestTexNewMexico__yhat_lower: 1.04104376708674,
+    WestTexNewMexico__yhat_upper: 1.3729774938431487,
+    WestTexNewMexico: 1.195,
+  },
+  {
+    __timestamp: 1420416000000,
+    Boston__yhat: 1.5183086928032201,
+    Boston__yhat_lower: 1.4051623626305831,
+    Boston__yhat_upper: 1.6373864508998999,
+    Boston: 1.52,
+    California__yhat: 1.1473836815806109,
+    California__yhat_lower: 0.9896908958316125,
+    California__yhat_upper: 1.3074486619072236,
+    California: 1.01,
+    WestTexNewMexico__yhat: 1.2101876636102695,
+    WestTexNewMexico__yhat_lower: 1.0531768381015862,
+    WestTexNewMexico__yhat_upper: 1.3798811980337082,
+    WestTexNewMexico: 1.305,
+  },
+  {
+    __timestamp: 1421020800000,
+    Boston__yhat: 1.5008792239446107,
+    Boston__yhat_lower: 1.3900408734935294,
+    Boston__yhat_upper: 1.6209717523914786,
+    Boston: 1.615,
+    California__yhat: 1.1257411477192287,
+    California__yhat_lower: 0.9647179126679808,
+    California__yhat_upper: 1.2856214776337003,
+    California: 1.13,
+    WestTexNewMexico__yhat: 1.211700721257458,
+    WestTexNewMexico__yhat_lower: 1.0512509758817796,
+    WestTexNewMexico__yhat_upper: 1.3838299538827643,
+    WestTexNewMexico: 1.255,
+  },
+  {
+    __timestamp: 1421625600000,
+    Boston__yhat: 1.493895763520492,
+    Boston__yhat_lower: 1.3819463100452443,
+    Boston__yhat_upper: 1.614560073797367,
+    Boston: 1.59,
+    California__yhat: 1.0914497359848156,
+    California__yhat_lower: 0.9309999613012108,
+    California__yhat_upper: 1.2413000315404008,
+    California: 1.18,
+    WestTexNewMexico__yhat: 1.208627046579019,
+    WestTexNewMexico__yhat_lower: 1.0443728779662684,
+    WestTexNewMexico__yhat_upper: 1.3675637830491076,
+    WestTexNewMexico: 1.215,
+  },
+  {
+    __timestamp: 1422230400000,
+    Boston__yhat: 1.5016078116606606,
+    Boston__yhat_lower: 1.3867245804741557,
+    Boston__yhat_upper: 1.614234955854214,
+    Boston: 1.5,
+    California__yhat: 1.0697859033873383,
+    California__yhat_lower: 0.9250294445931526,
+    California__yhat_upper: 1.227180419756037,
+    California: 0.98,
+    WestTexNewMexico__yhat: 1.1903524073209464,
+    WestTexNewMexico__yhat_lower: 1.0158621722285877,
+    WestTexNewMexico__yhat_upper: 1.3552685059028697,
+    WestTexNewMexico: 1.24,
+  },
+  {
+    __timestamp: 1422835200000,
+    Boston__yhat: 1.5159923617934186,
+    Boston__yhat_lower: 1.3970137282601371,
+    Boston__yhat_upper: 1.6308844178549995,
+    Boston: 1.475,
+    California__yhat: 1.0746946690720922,
+    California__yhat_lower: 0.9113788241318873,
+    California__yhat_upper: 1.2273689220316724,
+    California: 1.13,
+    WestTexNewMexico__yhat: 1.162418169193016,
+    WestTexNewMexico__yhat_lower: 0.984399666972796,
+    WestTexNewMexico__yhat_upper: 1.3286127921414361,
+    WestTexNewMexico: 1.19,
+  },
+  {
+    __timestamp: 1423440000000,
+    Boston__yhat: 1.525604106275286,
+    Boston__yhat_lower: 1.4091552054110317,
+    Boston__yhat_upper: 1.6398544651033324,
+    Boston: 1.555,
+    California__yhat: 1.0983484232374483,
+    California__yhat_lower: 0.9499667479813172,
+    California__yhat_upper: 1.2604622036877084,
+    California: 1.24,
+    WestTexNewMexico__yhat: 1.1407497573494716,
+    WestTexNewMexico__yhat_lower: 0.9682090338277108,
+    WestTexNewMexico__yhat_upper: 1.3110751375528853,
+    WestTexNewMexico: 1.24,
+  },
+  {
+    __timestamp: 1424044800000,
+    Boston__yhat: 1.5285159859188788,
+    Boston__yhat_lower: 1.4151325345500827,
+    Boston__yhat_upper: 1.63898403722097,
+    Boston: 1.485,
+    California__yhat: 1.1215587530856748,
+    California__yhat_lower: 0.9680608180357422,
+    California__yhat_upper: 1.282442960930767,
+    California: 1.185,
+    WestTexNewMexico__yhat: 1.1360040254613264,
+    WestTexNewMexico__yhat_lower: 0.963307750313048,
+    WestTexNewMexico__yhat_upper: 1.2986544671046583,
+    WestTexNewMexico: 1.28,
+  },
+  {
+    __timestamp: 1424649600000,
+    Boston__yhat: 1.5334822003771225,
+    Boston__yhat_lower: 1.4176345632105387,
+    Boston__yhat_upper: 1.6496071238192505,
+    Boston: 1.48,
+    California__yhat: 1.1336412205342397,
+    California__yhat_lower: 0.9743289540694136,
+    California__yhat_upper: 1.2898768461219847,
+    California: 0.995,
+    WestTexNewMexico__yhat: 1.1446754348884136,
+    WestTexNewMexico__yhat_lower: 0.986235125109336,
+    WestTexNewMexico__yhat_upper: 1.307986287217312,
+    WestTexNewMexico: 1.24,
+  },
+  {
+    __timestamp: 1425254400000,
+    Boston__yhat: 1.547848654545939,
+    Boston__yhat_lower: 1.4328177356803633,
+    Boston__yhat_upper: 1.673661661344583,
+    Boston: 1.54,
+    California__yhat: 1.1421270972002817,
+    California__yhat_lower: 0.9880212170643778,
+    California__yhat_upper: 1.298074311825913,
+    California: 1.22,
+    WestTexNewMexico__yhat: 1.1538926041448758,
+    WestTexNewMexico__yhat_lower: 1.0019767923899103,
+    WestTexNewMexico__yhat_upper: 1.3221026377048228,
+    WestTexNewMexico: 1.16,
+  },
+  {
+    __timestamp: 1425859200000,
+    Boston__yhat: 1.5675203083502125,
+    Boston__yhat_lower: 1.4543946077807537,
+    Boston__yhat_upper: 1.6864674764386627,
+    Boston: 1.62,
+    California__yhat: 1.1632572393543539,
+    California__yhat_lower: 0.9970086508003331,
+    California__yhat_upper: 1.3209871054747437,
+    California: 1.29,
+    WestTexNewMexico__yhat: 1.1530029605889838,
+    WestTexNewMexico__yhat_lower: 0.9729319698723828,
+    WestTexNewMexico__yhat_upper: 1.3054475293729533,
+    WestTexNewMexico: 1.285,
+  },
+  {
+    __timestamp: 1426464000000,
+    Boston__yhat: 1.581607931619551,
+    Boston__yhat_lower: 1.4723154031359578,
+    Boston__yhat_upper: 1.7069606387126863,
+    Boston: 1.56,
+    California__yhat: 1.2030769562029524,
+    California__yhat_lower: 1.04933598570031,
+    California__yhat_upper: 1.3591487662881023,
+    California: 1.18,
+    WestTexNewMexico__yhat: 1.1414541767825306,
+    WestTexNewMexico__yhat_lower: 0.9717441065782068,
+    WestTexNewMexico__yhat_upper: 1.312661843170456,
+    WestTexNewMexico: 1.345,
+  },
+  {
+    __timestamp: 1427068800000,
+    Boston__yhat: 1.5853316979769883,
+    Boston__yhat_lower: 1.4708451743058149,
+    Boston__yhat_upper: 1.7117728705026014,
+    Boston: 1.585,
+    California__yhat: 1.2479444775684796,
+    California__yhat_lower: 1.0837411336417548,
+    California__yhat_upper: 1.3998890149965297,
+    California: 1.315,
+    WestTexNewMexico__yhat: 1.1283059431234486,
+    WestTexNewMexico__yhat_lower: 0.9778619797162577,
+    WestTexNewMexico__yhat_upper: 1.2954488963192434,
+    WestTexNewMexico: 1.255,
+  },
+  {
+    __timestamp: 1427673600000,
+    Boston__yhat: 1.5841383828593085,
+    Boston__yhat_lower: 1.4654575751911438,
+    Boston__yhat_upper: 1.6946343035808373,
+    Boston: 1.59,
+    California__yhat: 1.2739437360014318,
+    California__yhat_lower: 1.1100282969104833,
+    California__yhat_upper: 1.428117476226516,
+    California: 1.32,
+    WestTexNewMexico__yhat: 1.1249371539002126,
+    WestTexNewMexico__yhat_lower: 0.9695967792994402,
+    WestTexNewMexico__yhat_upper: 1.287869970682996,
+    WestTexNewMexico: 1.28,
+  },
+  {
+    __timestamp: 1428278400000,
+    Boston__yhat: 1.5839751550296846,
+    Boston__yhat_lower: 1.4658964846078435,
+    Boston__yhat_upper: 1.710402200124056,
+    Boston: 1.56,
+    California__yhat: 1.2665706718822929,
+    California__yhat_lower: 1.1158333765771138,
+    California__yhat_upper: 1.4320483959058965,
+    California: 1.28,
+    WestTexNewMexico__yhat: 1.1355965911503207,
+    WestTexNewMexico__yhat_lower: 0.964066677858961,
+    WestTexNewMexico__yhat_upper: 1.3022575299852956,
+    WestTexNewMexico: 1.21,
+  },
+  {
+    __timestamp: 1428883200000,
+    Boston__yhat: 1.5816178634356794,
+    Boston__yhat_lower: 1.4715929905435854,
+    Boston__yhat_upper: 1.7003122219671367,
+    Boston: 1.545,
+    California__yhat: 1.232881524770783,
+    California__yhat_lower: 1.0767786935430315,
+    California__yhat_upper: 1.3959964303961667,
+    California: 1.285,
+    WestTexNewMexico__yhat: 1.1523828742682716,
+    WestTexNewMexico__yhat_lower: 0.9811195853500172,
+    WestTexNewMexico__yhat_upper: 1.3138046554765905,
+    WestTexNewMexico: 1.15,
+  },
+  {
+    __timestamp: 1429488000000,
+    Boston__yhat: 1.5693505553611033,
+    Boston__yhat_lower: 1.454366551073654,
+    Boston__yhat_upper: 1.672997430777775,
+    Boston: 1.57,
+    California__yhat: 1.1961960021745208,
+    California__yhat_lower: 1.0574856955397094,
+    California__yhat_upper: 1.3527191406913728,
+    California: 1.325,
+    WestTexNewMexico__yhat: 1.1605683040698191,
+    WestTexNewMexico__yhat_lower: 1.0031473604785308,
+    WestTexNewMexico__yhat_upper: 1.3131490159580719,
+    WestTexNewMexico: 1.33,
+  },
+  {
+    __timestamp: 1430092800000,
+    Boston__yhat: 1.548687090028952,
+    Boston__yhat_lower: 1.4345338808929986,
+    Boston__yhat_upper: 1.674291034018414,
+    Boston: 1.495,
+    California__yhat: 1.17944168965866,
+    California__yhat_lower: 1.0208437159576145,
+    California__yhat_upper: 1.3437648164186333,
+    California: 1.18,
+    WestTexNewMexico__yhat: 1.152452251304891,
+    WestTexNewMexico__yhat_lower: 0.9925163021235553,
+    WestTexNewMexico__yhat_upper: 1.33370469389031,
+    WestTexNewMexico: 1.125,
+  },
+  {
+    __timestamp: 1430697600000,
+    Boston__yhat: 1.5339945463021136,
+    Boston__yhat_lower: 1.4131803310322042,
+    Boston__yhat_upper: 1.6534068731295286,
+    Boston: 1.58,
+    California__yhat: 1.1914708975476587,
+    California__yhat_lower: 1.0346943811155895,
+    California__yhat_upper: 1.346918284211045,
+    California: 1.165,
+    WestTexNewMexico__yhat: 1.136951442350726,
+    WestTexNewMexico__yhat_lower: 0.9785853981941628,
+    WestTexNewMexico__yhat_upper: 1.305120499270747,
+    WestTexNewMexico: 1.07,
+  },
+  {
+    __timestamp: 1431302400000,
+    Boston__yhat: 1.538494530655746,
+    Boston__yhat_lower: 1.417157877783077,
+    Boston__yhat_upper: 1.6657402419552576,
+    Boston: 1.585,
+    California__yhat: 1.2250425993396363,
+    California__yhat_lower: 1.0694624006721893,
+    California__yhat_upper: 1.3779793141537178,
+    California: 1.285,
+    WestTexNewMexico__yhat: 1.131850140196041,
+    WestTexNewMexico__yhat_lower: 0.9693152036413223,
+    WestTexNewMexico__yhat_upper: 1.2969371429211514,
+    WestTexNewMexico: 1.06,
+  },
+  {
+    __timestamp: 1431907200000,
+    Boston__yhat: 1.5586586605892516,
+    Boston__yhat_lower: 1.4437718674345732,
+    Boston__yhat_upper: 1.678444300307212,
+    Boston: 1.54,
+    California__yhat: 1.2640228484312774,
+    California__yhat_lower: 1.105695580617842,
+    California__yhat_upper: 1.4262751320209555,
+    California: 1.3,
+    WestTexNewMexico__yhat: 1.14279691969869,
+    WestTexNewMexico__yhat_lower: 0.9744635833347896,
+    WestTexNewMexico__yhat_upper: 1.309843116203469,
+    WestTexNewMexico: 1.065,
+  },
+  {
+    __timestamp: 1432512000000,
+    Boston__yhat: 1.5775197465059267,
+    Boston__yhat_lower: 1.4598708798261923,
+    Boston__yhat_upper: 1.6911276338952719,
+    Boston: 1.6,
+    California__yhat: 1.292475578711032,
+    California__yhat_lower: 1.1228796890918014,
+    California__yhat_upper: 1.4471391733217347,
+    California: 1.24,
+    WestTexNewMexico__yhat: 1.151946670246945,
+    WestTexNewMexico__yhat_lower: 0.9787075088274869,
+    WestTexNewMexico__yhat_upper: 1.3257344034341332,
+    WestTexNewMexico: 1.065,
+  },
+  {
+    __timestamp: 1433116800000,
+    Boston__yhat: 1.5847361491556036,
+    Boston__yhat_lower: 1.469478725883583,
+    Boston__yhat_upper: 1.698200477547973,
+    Boston: 1.625,
+    California__yhat: 1.301640708602741,
+    California__yhat_lower: 1.1448194258091566,
+    California__yhat_upper: 1.4657411831360765,
+    California: 1.325,
+    WestTexNewMexico__yhat: 1.1344270549760207,
+    WestTexNewMexico__yhat_lower: 0.9628949633601395,
+    WestTexNewMexico__yhat_upper: 1.2999364461809975,
+    WestTexNewMexico: 1.08,
+  },
+  {
+    __timestamp: 1433721600000,
+    Boston__yhat: 1.588841301654564,
+    Boston__yhat_lower: 1.4701868286368829,
+    Boston__yhat_upper: 1.708276878629705,
+    Boston: 1.555,
+    California__yhat: 1.2945568932951903,
+    California__yhat_lower: 1.1357913193434988,
+    California__yhat_upper: 1.441658100122194,
+    California: 1.325,
+    WestTexNewMexico__yhat: 1.090609476160724,
+    WestTexNewMexico__yhat_lower: 0.9171628023326979,
+    WestTexNewMexico__yhat_upper: 1.2519104172461586,
+    WestTexNewMexico: 1.125,
+  },
+  {
+    __timestamp: 1434326400000,
+    Boston__yhat: 1.60467809761448,
+    Boston__yhat_lower: 1.4872087156545453,
+    Boston__yhat_upper: 1.7206390174307566,
+    Boston: 1.65,
+    California__yhat: 1.2866911289244536,
+    California__yhat_lower: 1.1223304657283866,
+    California__yhat_upper: 1.4489712765550424,
+    California: 1.38,
+    WestTexNewMexico__yhat: 1.058286202137859,
+    WestTexNewMexico__yhat_lower: 0.8983319008178635,
+    WestTexNewMexico__yhat_upper: 1.2230688588329341,
+    WestTexNewMexico: 1.2,
+  },
+  {
+    __timestamp: 1434931200000,
+    Boston__yhat: 1.6296561292532252,
+    Boston__yhat_lower: 1.5147117985377605,
+    Boston__yhat_upper: 1.7484553862428687,
+    Boston: 1.64,
+    California__yhat: 1.298704180420278,
+    California__yhat_lower: 1.143996831592798,
+    California__yhat_upper: 1.4569530963291766,
+    California: 1.385,
+    WestTexNewMexico__yhat: 1.0837741118769433,
+    WestTexNewMexico__yhat_lower: 0.9165400527844431,
+    WestTexNewMexico__yhat_upper: 1.2633713277285281,
+    WestTexNewMexico: 1.145,
+  },
+  {
+    __timestamp: 1435536000000,
+    Boston__yhat: 1.6387330700540754,
+    Boston__yhat_lower: 1.5214382052884348,
+    Boston__yhat_upper: 1.7593446818133576,
+    Boston: 1.7,
+    California__yhat: 1.3419159537936654,
+    California__yhat_lower: 1.1824389777530346,
+    California__yhat_upper: 1.5077615808876883,
+    California: 1.395,
+    WestTexNewMexico__yhat: 1.1753283438356257,
+    WestTexNewMexico__yhat_lower: 1.0084515427055218,
+    WestTexNewMexico__yhat_upper: 1.3411968014102083,
+    WestTexNewMexico: 1.18,
+  },
+  {
+    __timestamp: 1436140800000,
+    Boston__yhat: 1.6078378110129543,
+    Boston__yhat_lower: 1.4858780410049368,
+    Boston__yhat_upper: 1.7333942938670541,
+    Boston: 1.665,
+    California__yhat: 1.4064610022347392,
+    California__yhat_lower: 1.2518481325894115,
+    California__yhat_upper: 1.5631376401498112,
+    California: 1.465,
+    WestTexNewMexico__yhat: 1.2876812690769497,
+    WestTexNewMexico__yhat_lower: 1.118277996711148,
+    WestTexNewMexico__yhat_upper: 1.453601368173299,
+    WestTexNewMexico: 1.365,
+  },
+  {
+    __timestamp: 1436745600000,
+    Boston__yhat: 1.54126454151401,
+    Boston__yhat_lower: 1.4242640278872807,
+    Boston__yhat_upper: 1.658820938407199,
+    Boston: 1.615,
+    California__yhat: 1.4648637533773619,
+    California__yhat_lower: 1.3165708549095063,
+    California__yhat_upper: 1.6123722518242183,
+    California: 1.535,
+    WestTexNewMexico__yhat: 1.359084635413718,
+    WestTexNewMexico__yhat_lower: 1.1923924916510695,
+    WestTexNewMexico__yhat_upper: 1.5397046826260015,
+    WestTexNewMexico: 1.25,
+  },
+  {
+    __timestamp: 1437350400000,
+    Boston__yhat: 1.4716975989229104,
+    Boston__yhat_lower: 1.3478802335545248,
+    Boston__yhat_upper: 1.5897005348114144,
+    Boston: 1.65,
+    California__yhat: 1.492196708250474,
+    California__yhat_lower: 1.3281011466171584,
+    California__yhat_upper: 1.6482617063876424,
+    California: 1.53,
+    WestTexNewMexico__yhat: 1.3665720856468249,
+    WestTexNewMexico__yhat_lower: 1.1985870084342607,
+    WestTexNewMexico__yhat_upper: 1.540444302838635,
+    WestTexNewMexico: 1.325,
+  },
+  {
+    __timestamp: 1437955200000,
+    Boston__yhat: 1.4316465654883939,
+    Boston__yhat_lower: 1.3151590237205186,
+    Boston__yhat_upper: 1.5502363732881383,
+    Boston: 1.645,
+    California__yhat: 1.486878703643501,
+    California__yhat_lower: 1.3387136764087475,
+    California__yhat_upper: 1.6406538496379224,
+    California: 1.575,
+    WestTexNewMexico__yhat: 1.3430004296140337,
+    WestTexNewMexico__yhat_lower: 1.1696134333274417,
+    WestTexNewMexico__yhat_upper: 1.5143254675484394,
+    WestTexNewMexico: 1.345,
+  },
+  {
+    __timestamp: 1438560000000,
+    Boston__yhat: 1.4271527274427822,
+    Boston__yhat_lower: 1.3009869979033386,
+    Boston__yhat_upper: 1.5444571765505344,
+    Boston: 1.545,
+    California__yhat: 1.4721251850161223,
+    California__yhat_lower: 1.3130424764080704,
+    California__yhat_upper: 1.6322300582937983,
+    California: 1.565,
+    WestTexNewMexico__yhat: 1.3385023304664054,
+    WestTexNewMexico__yhat_lower: 1.169557000507694,
+    WestTexNewMexico__yhat_upper: 1.501423586440048,
+    WestTexNewMexico: 1.3,
+  },
+  {
+    __timestamp: 1439164800000,
+    Boston__yhat: 1.4407299749907534,
+    Boston__yhat_lower: 1.323436292855159,
+    Boston__yhat_upper: 1.5636100946562665,
+    Boston: 1.62,
+    California__yhat: 1.4747274927843579,
+    California__yhat_lower: 1.3090246017944651,
+    California__yhat_upper: 1.6212028571910875,
+    California: 1.535,
+    WestTexNewMexico__yhat: 1.369033029466056,
+    WestTexNewMexico__yhat_lower: 1.2063418855681307,
+    WestTexNewMexico__yhat_upper: 1.5410908830393701,
+    WestTexNewMexico: 1.215,
+  },
+  {
+    __timestamp: 1439769600000,
+    Boston__yhat: 1.4558141240561584,
+    Boston__yhat_lower: 1.3384500860436346,
+    Boston__yhat_upper: 1.5593449899412495,
+    Boston: 1.535,
+    California__yhat: 1.5004588541583503,
+    California__yhat_lower: 1.3525771130800601,
+    California__yhat_upper: 1.6557709189818204,
+    California: 1.515,
+    WestTexNewMexico__yhat: 1.4078705349829708,
+    WestTexNewMexico__yhat_lower: 1.2465576754469605,
+    WestTexNewMexico__yhat_upper: 1.5765990094113416,
+    WestTexNewMexico: 1.205,
+  },
+  {
+    __timestamp: 1440374400000,
+    Boston__yhat: 1.4714837581619955,
+    Boston__yhat_lower: 1.3542849882799493,
+    Boston__yhat_upper: 1.587250053083524,
+    Boston: 1.58,
+    California__yhat: 1.5302322554730527,
+    California__yhat_lower: 1.3712263333300627,
+    California__yhat_upper: 1.6766472256899916,
+    California: 1.53,
+    WestTexNewMexico__yhat: 1.425931627994101,
+    WestTexNewMexico__yhat_lower: 1.2620778981321579,
+    WestTexNewMexico__yhat_upper: 1.5920830784029816,
+    WestTexNewMexico: 1.255,
+  },
+  {
+    __timestamp: 1440979200000,
+    Boston__yhat: 1.491444403016728,
+    Boston__yhat_lower: 1.3719274262306433,
+    Boston__yhat_upper: 1.6081603165448515,
+    Boston: 1.54,
+    California__yhat: 1.5411777460499874,
+    California__yhat_lower: 1.3904365117687372,
+    California__yhat_upper: 1.694546785101698,
+    California: 1.54,
+    WestTexNewMexico__yhat: 1.4320134472163049,
+    WestTexNewMexico__yhat_lower: 1.273365593253299,
+    WestTexNewMexico__yhat_upper: 1.5931974288222444,
+    WestTexNewMexico: 1.29,
+  },
+  {
+    __timestamp: 1441584000000,
+    Boston__yhat: 1.5051820756139245,
+    Boston__yhat_lower: 1.3835553327078385,
+    Boston__yhat_upper: 1.6240589221993718,
+    Boston: 1.515,
+    California__yhat: 1.5313765368007273,
+    California__yhat_lower: 1.3681294180618269,
+    California__yhat_upper: 1.6892153479755334,
+    California: 1.55,
+    WestTexNewMexico__yhat: 1.4638751687570226,
+    WestTexNewMexico__yhat_lower: 1.2864210645323784,
+    WestTexNewMexico__yhat_upper: 1.6187694320540935,
+    WestTexNewMexico: 1.37,
+  },
+  {
+    __timestamp: 1442188800000,
+    Boston__yhat: 1.4894325587299742,
+    Boston__yhat_lower: 1.3727869467332703,
+    Boston__yhat_upper: 1.6084226338870418,
+    Boston: 1.58,
+    California__yhat: 1.522640140138669,
+    California__yhat_lower: 1.3734557489282102,
+    California__yhat_upper: 1.6743091049728624,
+    California: 1.53,
+    WestTexNewMexico__yhat: 1.5400751405380166,
+    WestTexNewMexico__yhat_lower: 1.3774375535282375,
+    WestTexNewMexico__yhat_upper: 1.723050870346822,
+    WestTexNewMexico: 1.485,
+  },
+  {
+    __timestamp: 1442793600000,
+    Boston__yhat: 1.4322083667601824,
+    Boston__yhat_lower: 1.3101390870258312,
+    Boston__yhat_upper: 1.5571183048764867,
+    Boston: 1.535,
+    California__yhat: 1.5378925480202739,
+    California__yhat_lower: 1.3886019658089772,
+    California__yhat_upper: 1.6978496884233474,
+    California: 1.445,
+    WestTexNewMexico__yhat: 1.6287478669084643,
+    WestTexNewMexico__yhat_lower: 1.478287058860101,
+    WestTexNewMexico__yhat_upper: 1.795633152002224,
+    WestTexNewMexico: 1.275,
+  },
+  {
+    __timestamp: 1443398400000,
+    Boston__yhat: 1.351816621968265,
+    Boston__yhat_lower: 1.2376540378452352,
+    Boston__yhat_upper: 1.4729299390946764,
+    Boston: 1.175,
+    California__yhat: 1.5759661525657334,
+    California__yhat_lower: 1.4231456717732236,
+    California__yhat_upper: 1.733586091013307,
+    California: 1.51,
+    WestTexNewMexico__yhat: 1.6721603417638533,
+    WestTexNewMexico__yhat_lower: 1.508503941330916,
+    WestTexNewMexico__yhat_upper: 1.8462459308936394,
+    WestTexNewMexico: 1.43,
+  },
+  {
+    __timestamp: 1444003200000,
+    Boston__yhat: 1.286486461072129,
+    Boston__yhat_lower: 1.1680220690052265,
+    Boston__yhat_upper: 1.4035977590666622,
+    Boston: 1.2,
+    California__yhat: 1.6097139361369517,
+    California__yhat_lower: 1.4449082988736466,
+    California__yhat_upper: 1.7603053272180196,
+    California: 1.575,
+    WestTexNewMexico__yhat: 1.639290251177639,
+    WestTexNewMexico__yhat_lower: 1.473164681029519,
+    WestTexNewMexico__yhat_upper: 1.8064957246654998,
+    WestTexNewMexico: 1.47,
+  },
+  {
+    __timestamp: 1444608000000,
+    Boston__yhat: 1.2630051620190224,
+    Boston__yhat_lower: 1.1467376145041555,
+    Boston__yhat_upper: 1.377446221614078,
+    Boston: 1.1,
+    California__yhat: 1.6098713751752662,
+    California__yhat_lower: 1.4600843147210683,
+    California__yhat_upper: 1.763955521152191,
+    California: 1.54,
+    WestTexNewMexico__yhat: 1.5551952931382806,
+    WestTexNewMexico__yhat_lower: 1.3962129897996904,
+    WestTexNewMexico__yhat_upper: 1.726357454658797,
+    WestTexNewMexico: 1.415,
+  },
+  {
+    __timestamp: 1445212800000,
+    Boston__yhat: 1.276278781347193,
+    Boston__yhat_lower: 1.1580450205542776,
+    Boston__yhat_upper: 1.3920651070329326,
+    Boston: 1.145,
+    California__yhat: 1.571148844853862,
+    California__yhat_lower: 1.4083378535887405,
+    California__yhat_upper: 1.733966017882931,
+    California: 1.38,
+    WestTexNewMexico__yhat: 1.4722932415830279,
+    WestTexNewMexico__yhat_lower: 1.3050378331324088,
+    WestTexNewMexico__yhat_upper: 1.6418924805303612,
+    WestTexNewMexico: 1.41,
+  },
+  {
+    __timestamp: 1445817600000,
+    Boston__yhat: 1.2991073481696098,
+    Boston__yhat_lower: 1.1878452793959065,
+    Boston__yhat_upper: 1.424293199867907,
+    Boston: 1.18,
+    California__yhat: 1.5150187954091354,
+    California__yhat_lower: 1.3476318997481405,
+    California__yhat_upper: 1.677657858675358,
+    California: 1.275,
+    WestTexNewMexico__yhat: 1.4199561158957161,
+    WestTexNewMexico__yhat_lower: 1.263080331712721,
+    WestTexNewMexico__yhat_upper: 1.5718996342613911,
+    WestTexNewMexico: 1.36,
+  },
+  {
+    __timestamp: 1446422400000,
+    Boston__yhat: 1.308880887797368,
+    Boston__yhat_lower: 1.1862924735231104,
+    Boston__yhat_upper: 1.4168025454442827,
+    Boston: 1.13,
+    California__yhat: 1.467196455991084,
+    California__yhat_lower: 1.31469058277437,
+    California__yhat_upper: 1.6266140472626818,
+    California: 1.32,
+    WestTexNewMexico__yhat: 1.385809818488925,
+    WestTexNewMexico__yhat_lower: 1.2178231659097734,
+    WestTexNewMexico__yhat_upper: 1.5529990050614997,
+    WestTexNewMexico: 1.37,
+  },
+  {
+    __timestamp: 1447027200000,
+    Boston__yhat: 1.3030202507313675,
+    Boston__yhat_lower: 1.1871331759675903,
+    Boston__yhat_upper: 1.4220034213332513,
+    Boston: 1.1,
+    California__yhat: 1.432710953584346,
+    California__yhat_lower: 1.2824951329265597,
+    California__yhat_upper: 1.586661603708675,
+    California: 1.21,
+    WestTexNewMexico__yhat: 1.3404954026443072,
+    WestTexNewMexico__yhat_lower: 1.1821733202392815,
+    WestTexNewMexico__yhat_upper: 1.5011656305912942,
+    WestTexNewMexico: 1.315,
+  },
+  {
+    __timestamp: 1447632000000,
+    Boston__yhat: 1.2921088188147662,
+    Boston__yhat_lower: 1.1728345442847379,
+    Boston__yhat_upper: 1.4033407585022522,
+    Boston: 1.17,
+    California__yhat: 1.3931387239731783,
+    California__yhat_lower: 1.2432214745880616,
+    California__yhat_upper: 1.5498822030297323,
+    California: 1.26,
+    WestTexNewMexico__yhat: 1.276766317307663,
+    WestTexNewMexico__yhat_lower: 1.0999844956570386,
+    WestTexNewMexico__yhat_upper: 1.446687228788756,
+    WestTexNewMexico: 1.375,
+  },
+  {
+    __timestamp: 1448236800000,
+    Boston__yhat: 1.2844900175902454,
+    Boston__yhat_lower: 1.1751725419028316,
+    Boston__yhat_upper: 1.4071918419152338,
+    Boston: 1.235,
+    California__yhat: 1.3280733170736323,
+    California__yhat_lower: 1.168686173676362,
+    California__yhat_upper: 1.4828349526176714,
+    California: 1.33,
+    WestTexNewMexico__yhat: 1.2150153206911025,
+    WestTexNewMexico__yhat_lower: 1.0575514264315589,
+    WestTexNewMexico__yhat_upper: 1.3738174939464802,
+    WestTexNewMexico: 1.445,
+  },
+  {
+    __timestamp: 1448841600000,
+    Boston__yhat: 1.2805251906155837,
+    Boston__yhat_lower: 1.1707757707707065,
+    Boston__yhat_upper: 1.3999312395395147,
+    Boston: 1.155,
+    California__yhat: 1.2392981370779044,
+    California__yhat_lower: 1.0733806154601595,
+    California__yhat_upper: 1.4014509402239486,
+    California: 1.13,
+    WestTexNewMexico__yhat: 1.1770436607980383,
+    WestTexNewMexico__yhat_lower: 0.993583553273554,
+    WestTexNewMexico__yhat_upper: 1.333422820891247,
+    WestTexNewMexico: 0.74,
+  },
+  {
+    __timestamp: 1449446400000,
+    Boston__yhat: 1.279267142574869,
+    Boston__yhat_lower: 1.1585705827510129,
+    Boston__yhat_upper: 1.3983536869495787,
+    Boston: 1.28,
+    California__yhat: 1.1539951545645342,
+    California__yhat_lower: 0.9889501465743559,
+    California__yhat_upper: 1.3053289212843744,
+    California: 1.13,
+    WestTexNewMexico__yhat: 1.162380614252356,
+    WestTexNewMexico__yhat_lower: 0.9965272411245537,
+    WestTexNewMexico__yhat_upper: 1.3253180367221955,
+    WestTexNewMexico: 1.29,
+  },
+  {
+    __timestamp: 1450051200000,
+    Boston__yhat: 1.2787118961962491,
+    Boston__yhat_lower: 1.1556589108639785,
+    Boston__yhat_upper: 1.3974059178441982,
+    Boston: 1.24,
+    California__yhat: 1.1033410193628717,
+    California__yhat_lower: 0.9484140481619587,
+    California__yhat_upper: 1.2555949684536813,
+    California: 1.145,
+    WestTexNewMexico__yhat: 1.1520896013601485,
+    WestTexNewMexico__yhat_lower: 0.9997152961435812,
+    WestTexNewMexico__yhat_upper: 1.3302105801314474,
+    WestTexNewMexico: 1.375,
+  },
+  {
+    __timestamp: 1450656000000,
+    Boston__yhat: 1.2776031555754677,
+    Boston__yhat_lower: 1.1612004466043093,
+    Boston__yhat_upper: 1.4035768713473475,
+    Boston: 1.305,
+    California__yhat: 1.096588309779605,
+    California__yhat_lower: 0.9415733506798203,
+    California__yhat_upper: 1.2490758356944123,
+    California: 1.175,
+    WestTexNewMexico__yhat: 1.1337111672954372,
+    WestTexNewMexico__yhat_lower: 0.954609055292553,
+    WestTexNewMexico__yhat_upper: 1.2836888913740563,
+    WestTexNewMexico: 1.26,
+  },
+  {
+    __timestamp: 1451260800000,
+    Boston__yhat: 1.271539175332426,
+    Boston__yhat_lower: 1.1602294666896775,
+    Boston__yhat_upper: 1.3927950153599313,
+    Boston: 1.135,
+    California__yhat: 1.1135856352410936,
+    California__yhat_lower: 0.9662652364357288,
+    California__yhat_upper: 1.2612074611190671,
+    California: 1.08,
+    WestTexNewMexico__yhat: 1.1133445292606667,
+    WestTexNewMexico__yhat_lower: 0.9418476492410971,
+    WestTexNewMexico__yhat_upper: 1.2831043683897285,
+    WestTexNewMexico: 1.17,
+  },
+  {
+    __timestamp: 1451865600000,
+    Boston__yhat: 1.2575630846272903,
+    Boston__yhat_lower: 1.1354044143577229,
+    Boston__yhat_upper: 1.3692268733397173,
+    Boston: 1.235,
+    California__yhat: 1.12226100903928,
+    California__yhat_lower: 0.9741560937727196,
+    California__yhat_upper: 1.2802079796970842,
+    California: 1.1,
+    WestTexNewMexico__yhat: 1.103916478884385,
+    WestTexNewMexico__yhat_lower: 0.9375018938141186,
+    WestTexNewMexico__yhat_upper: 1.2684161261288411,
+    WestTexNewMexico: 1.055,
+  },
+  {
+    __timestamp: 1452470400000,
+    Boston__yhat: 1.240871451452071,
+    Boston__yhat_lower: 1.1207875334441375,
+    Boston__yhat_upper: 1.3557801021167788,
+    Boston: 1.075,
+    California__yhat: 1.1050499500884154,
+    California__yhat_lower: 0.9519377106454195,
+    California__yhat_upper: 1.2639244961611285,
+    California: 1.175,
+    WestTexNewMexico__yhat: 1.1063752098417272,
+    WestTexNewMexico__yhat_lower: 0.933034797251441,
+    WestTexNewMexico__yhat_upper: 1.2775982934739585,
+    WestTexNewMexico: 1.14,
+  },
+  {
+    __timestamp: 1453075200000,
+    Boston__yhat: 1.2351539301132308,
+    Boston__yhat_lower: 1.115608031670262,
+    Boston__yhat_upper: 1.3497725810593808,
+    Boston: 1.255,
+    California__yhat: 1.0712579159094295,
+    California__yhat_lower: 0.9231059439029868,
+    California__yhat_upper: 1.2253443303060034,
+    California: 1.12,
+    WestTexNewMexico__yhat: 1.1073566395068044,
+    WestTexNewMexico__yhat_lower: 0.9417096932160844,
+    WestTexNewMexico__yhat_upper: 1.2702276029860524,
+    WestTexNewMexico: 1.295,
+  },
+  {
+    __timestamp: 1453680000000,
+    Boston__yhat: 1.2443106245615798,
+    Boston__yhat_lower: 1.1191714513673907,
+    Boston__yhat_upper: 1.366170102828017,
+    Boston: 1.275,
+    California__yhat: 1.045805771170639,
+    California__yhat_lower: 0.8901943377875149,
+    California__yhat_upper: 1.2055800517103012,
+    California: 1.155,
+    WestTexNewMexico__yhat: 1.0939766137280855,
+    WestTexNewMexico__yhat_lower: 0.928443219272312,
+    WestTexNewMexico__yhat_upper: 1.2529202612702086,
+    WestTexNewMexico: 1.215,
+  },
+  {
+    __timestamp: 1454284800000,
+    Boston__yhat: 1.262231934275936,
+    Boston__yhat_lower: 1.145846856606446,
+    Boston__yhat_upper: 1.3863438310201472,
+    Boston: 1.335,
+    California__yhat: 1.0460144566739604,
+    California__yhat_lower: 0.8934791370393727,
+    California__yhat_upper: 1.1997559677917369,
+    California: 1.04,
+    WestTexNewMexico__yhat: 1.0687956997109116,
+    WestTexNewMexico__yhat_lower: 0.9196708157905598,
+    WestTexNewMexico__yhat_upper: 1.2343440062370625,
+    WestTexNewMexico: 1.085,
+  },
+  {
+    __timestamp: 1454889600000,
+    Boston__yhat: 1.2770169956947701,
+    Boston__yhat_lower: 1.159762228572037,
+    Boston__yhat_upper: 1.3955173344366019,
+    Boston: 1.285,
+    California__yhat: 1.0677334625792934,
+    California__yhat_lower: 0.9042156056309373,
+    California__yhat_upper: 1.2261522856156684,
+    California: 1.145,
+    WestTexNewMexico__yhat: 1.0469739471201525,
+    WestTexNewMexico__yhat_lower: 0.8794254462683391,
+    WestTexNewMexico__yhat_upper: 1.2098590403948033,
+    WestTexNewMexico: 1.045,
+  },
+  {
+    __timestamp: 1455494400000,
+    Boston__yhat: 1.2844722621861224,
+    Boston__yhat_lower: 1.1612648265404686,
+    Boston__yhat_upper: 1.4073856326551464,
+    Boston: 1.33,
+    California__yhat: 1.0923560584092606,
+    California__yhat_lower: 0.9419672486858788,
+    California__yhat_upper: 1.2578935375962572,
+    California: 1.16,
+    WestTexNewMexico__yhat: 1.0411381678377096,
+    WestTexNewMexico__yhat_lower: 0.885569135600006,
+    WestTexNewMexico__yhat_upper: 1.206333182286366,
+    WestTexNewMexico: 1.09,
+  },
+  {
+    __timestamp: 1456099200000,
+    Boston__yhat: 1.2946209118328944,
+    Boston__yhat_lower: 1.1763146584733386,
+    Boston__yhat_upper: 1.4046302946525782,
+    Boston: 1.36,
+    California__yhat: 1.1068253070435803,
+    California__yhat_lower: 0.9402023606548588,
+    California__yhat_upper: 1.2630289344685552,
+    California: 1.085,
+    WestTexNewMexico__yhat: 1.0506996394318162,
+    WestTexNewMexico__yhat_lower: 0.894064332771851,
+    WestTexNewMexico__yhat_upper: 1.2165355114608365,
+    WestTexNewMexico: 1.045,
+  },
+  {
+    __timestamp: 1456704000000,
+    Boston__yhat: 1.3135717434204854,
+    Boston__yhat_lower: 1.19598226754922,
+    Boston__yhat_upper: 1.4281779942403379,
+    Boston: 1.4,
+    California__yhat: 1.1152150156807379,
+    California__yhat_lower: 0.9645078102017577,
+    California__yhat_upper: 1.2660783651448067,
+    California: 1.12,
+    WestTexNewMexico__yhat: 1.0632783642039607,
+    WestTexNewMexico__yhat_lower: 0.8944563104320433,
+    WestTexNewMexico__yhat_upper: 1.2189946417833857,
+    WestTexNewMexico: 1.045,
+  },
+  {
+    __timestamp: 1457308800000,
+    Boston__yhat: 1.3393909950943907,
+    Boston__yhat_lower: 1.2247252996665285,
+    Boston__yhat_upper: 1.4514282373242835,
+    Boston: 1.32,
+    California__yhat: 1.1335714483377028,
+    California__yhat_lower: 0.9796821685944298,
+    California__yhat_upper: 1.292927457050505,
+    California: 1.185,
+    WestTexNewMexico__yhat: 1.0670347544656897,
+    WestTexNewMexico__yhat_lower: 0.9065118434460604,
+    WestTexNewMexico__yhat_upper: 1.2388026324708632,
+    WestTexNewMexico: 1.01,
+  },
+  {
+    __timestamp: 1457913600000,
+    Boston__yhat: 1.3614707072711327,
+    Boston__yhat_lower: 1.2436506325494527,
+    Boston__yhat_upper: 1.4915346261974671,
+    Boston: 1.345,
+    California__yhat: 1.1709505943114045,
+    California__yhat_lower: 1.0281150114928468,
+    California__yhat_upper: 1.3219512681551355,
+    California: 1.185,
+    WestTexNewMexico__yhat: 1.059402114816066,
+    WestTexNewMexico__yhat_lower: 0.8908095073771191,
+    WestTexNewMexico__yhat_upper: 1.2232547094584372,
+    WestTexNewMexico: 1.085,
+  },
+  {
+    __timestamp: 1458518400000,
+    Boston__yhat: 1.3731962396813198,
+    Boston__yhat_lower: 1.2580434253984463,
+    Boston__yhat_upper: 1.492475554460491,
+    Boston: 1.335,
+    California__yhat: 1.2170675127806618,
+    California__yhat_lower: 1.0693412261820932,
+    California__yhat_upper: 1.3789521035854242,
+    California: 1.175,
+    WestTexNewMexico__yhat: 1.0481116081191288,
+    WestTexNewMexico__yhat_lower: 0.8799236826031198,
+    WestTexNewMexico__yhat_upper: 1.2085461080495927,
+    WestTexNewMexico: 1.06,
+  },
+  {
+    __timestamp: 1459123200000,
+    Boston__yhat: 1.3813962329619323,
+    Boston__yhat_lower: 1.26161432990456,
+    Boston__yhat_upper: 1.4956362001975996,
+    Boston: 1.42,
+    California__yhat: 1.2492756158849017,
+    California__yhat_lower: 1.0902577705631182,
+    California__yhat_upper: 1.3961114387176121,
+    California: 1.16,
+    WestTexNewMexico__yhat: 1.0453669318672152,
+    WestTexNewMexico__yhat_lower: 0.880018640334351,
+    WestTexNewMexico__yhat_upper: 1.2114783493039134,
+    WestTexNewMexico: 1.01,
+  },
+  {
+    __timestamp: 1459728000000,
+    Boston__yhat: 1.3901037265229272,
+    Boston__yhat_lower: 1.2770286998811706,
+    Boston__yhat_upper: 1.5062632276621368,
+    Boston: 1.335,
+    California__yhat: 1.2492550362056745,
+    California__yhat_lower: 1.104424197641724,
+    California__yhat_upper: 1.3982138003395288,
+    California: 1.17,
+    WestTexNewMexico__yhat: 1.0567507538087313,
+    WestTexNewMexico__yhat_lower: 0.8882903778713199,
+    WestTexNewMexico__yhat_upper: 1.2202271780312777,
+    WestTexNewMexico: 1.04,
+  },
+  {
+    __timestamp: 1460332800000,
+    Boston__yhat: 1.3978691117516269,
+    Boston__yhat_lower: 1.2803306353511645,
+    Boston__yhat_upper: 1.513787192951786,
+    Boston: 1.335,
+    California__yhat: 1.2200894896539514,
+    California__yhat_lower: 1.0637919122116424,
+    California__yhat_upper: 1.3817089822591981,
+    California: 1.16,
+    WestTexNewMexico__yhat: 1.0764809347132152,
+    WestTexNewMexico__yhat_lower: 0.903254971967084,
+    WestTexNewMexico__yhat_upper: 1.2410429345467036,
+    WestTexNewMexico: 1.045,
+  },
+  {
+    __timestamp: 1460937600000,
+    Boston__yhat: 1.3967995570914404,
+    Boston__yhat_lower: 1.2775524616045004,
+    Boston__yhat_upper: 1.5128645378452974,
+    Boston: 1.4,
+    California__yhat: 1.1832691323436206,
+    California__yhat_lower: 1.0305934334474776,
+    California__yhat_upper: 1.3356802771773342,
+    California: 1.115,
+    WestTexNewMexico__yhat: 1.090164068838935,
+    WestTexNewMexico__yhat_lower: 0.9300661576818052,
+    WestTexNewMexico__yhat_upper: 1.2536103431855903,
+    WestTexNewMexico: 1.065,
+  },
+  {
+    __timestamp: 1461542400000,
+    Boston__yhat: 1.3859697249253664,
+    Boston__yhat_lower: 1.2636249671382607,
+    Boston__yhat_upper: 1.5049262303685809,
+    Boston: 1.42,
+    California__yhat: 1.1630585559396942,
+    California__yhat_lower: 1.0068041367734835,
+    California__yhat_upper: 1.3142932998835315,
+    California: 0.995,
+    WestTexNewMexico__yhat: 1.0877981841342876,
+    WestTexNewMexico__yhat_lower: 0.9234728270737066,
+    WestTexNewMexico__yhat_upper: 1.2675215898735945,
+    WestTexNewMexico: 0.91,
+  },
+  {
+    __timestamp: 1462147200000,
+    Boston__yhat: 1.3780621889016782,
+    Boston__yhat_lower: 1.2655370800557288,
+    Boston__yhat_upper: 1.4872536603725823,
+    Boston: 1.215,
+    California__yhat: 1.1713334574546839,
+    California__yhat_lower: 1.0183235764036245,
+    California__yhat_upper: 1.334211201339179,
+    California: 1.02,
+    WestTexNewMexico__yhat: 1.0753195555471162,
+    WestTexNewMexico__yhat_lower: 0.9138031185965445,
+    WestTexNewMexico__yhat_upper: 1.241542731790294,
+    WestTexNewMexico: 0.92,
+  },
+  {
+    __timestamp: 1462752000000,
+    Boston__yhat: 1.390579992253881,
+    Boston__yhat_lower: 1.2678098774291926,
+    Boston__yhat_upper: 1.514517582502428,
+    Boston: 1.32,
+    California__yhat: 1.2045753309987504,
+    California__yhat_lower: 1.052786503515949,
+    California__yhat_upper: 1.3621516718095754,
+    California: 1.235,
+    WestTexNewMexico__yhat: 1.0708076218477798,
+    WestTexNewMexico__yhat_lower: 0.89839426584527,
+    WestTexNewMexico__yhat_upper: 1.2432070811178022,
+    WestTexNewMexico: 0.975,
+  },
+  {
+    __timestamp: 1463356800000,
+    Boston__yhat: 1.4207891542698583,
+    Boston__yhat_lower: 1.3010916606934653,
+    Boston__yhat_upper: 1.5322542386945917,
+    Boston: 1.31,
+    California__yhat: 1.2463341560434724,
+    California__yhat_lower: 1.0872182425671355,
+    California__yhat_upper: 1.398196065122614,
+    California: 1.135,
+    WestTexNewMexico__yhat: 1.0830533836123841,
+    WestTexNewMexico__yhat_lower: 0.9270325265697668,
+    WestTexNewMexico__yhat_upper: 1.2433561617025806,
+    WestTexNewMexico: 1.08,
+  },
+  {
+    __timestamp: 1463961600000,
+    Boston__yhat: 1.4528802442431825,
+    Boston__yhat_lower: 1.339060636220628,
+    Boston__yhat_upper: 1.5651577314726575,
+    Boston: 1.335,
+    California__yhat: 1.2800536949604688,
+    California__yhat_lower: 1.1213938976676492,
+    California__yhat_upper: 1.4419002496176487,
+    California: 1.235,
+    WestTexNewMexico__yhat: 1.0980521279561197,
+    WestTexNewMexico__yhat_lower: 0.9322311004284876,
+    WestTexNewMexico__yhat_upper: 1.262519822257723,
+    WestTexNewMexico: 1.06,
+  },
+  {
+    __timestamp: 1464566400000,
+    Boston__yhat: 1.4738409532820527,
+    Boston__yhat_lower: 1.3555968485283043,
+    Boston__yhat_upper: 1.591684397428816,
+    Boston: 1.375,
+    California__yhat: 1.2952850761979349,
+    California__yhat_lower: 1.1438814607731747,
+    California__yhat_upper: 1.4594084279689081,
+    California: 1.245,
+    WestTexNewMexico__yhat: 1.089859801760547,
+    WestTexNewMexico__yhat_lower: 0.9336639795874753,
+    WestTexNewMexico__yhat_upper: 1.246993776569905,
+    WestTexNewMexico: 1.02,
+  },
+  {
+    __timestamp: 1465171200000,
+    Boston__yhat: 1.4890320660392282,
+    Boston__yhat_lower: 1.3753680086084525,
+    Boston__yhat_upper: 1.6067146520336024,
+    Boston: 1.33,
+    California__yhat: 1.2927494439397973,
+    California__yhat_lower: 1.128002682584889,
+    California__yhat_upper: 1.4466582402918686,
+    California: 1.255,
+    WestTexNewMexico__yhat: 1.0523846500937815,
+    WestTexNewMexico__yhat_lower: 0.878097580557322,
+    WestTexNewMexico__yhat_upper: 1.208712345324737,
+    WestTexNewMexico: 1.09,
+  },
+  {
+    __timestamp: 1465776000000,
+    Boston__yhat: 1.5155587976896643,
+    Boston__yhat_lower: 1.4072015263506499,
+    Boston__yhat_upper: 1.6355581427270762,
+    Boston: 1.425,
+    California__yhat: 1.2870463107367591,
+    California__yhat_lower: 1.1386143995965625,
+    California__yhat_upper: 1.4509670787815665,
+    California: 1.315,
+    WestTexNewMexico__yhat: 1.0177076740491202,
+    WestTexNewMexico__yhat_lower: 0.8522281057724683,
+    WestTexNewMexico__yhat_upper: 1.1828659506179917,
+    WestTexNewMexico: 1.08,
+  },
+  {
+    __timestamp: 1466380800000,
+    Boston__yhat: 1.553609825840023,
+    Boston__yhat_lower: 1.4363699394765241,
+    Boston__yhat_upper: 1.6646708738711482,
+    Boston: 1.465,
+    California__yhat: 1.2977535594821146,
+    California__yhat_lower: 1.1433922084496908,
+    California__yhat_upper: 1.452704521998053,
+    California: 1.27,
+    WestTexNewMexico__yhat: 1.034155336536419,
+    WestTexNewMexico__yhat_lower: 0.8767952483197881,
+    WestTexNewMexico__yhat_upper: 1.190431952173455,
+    WestTexNewMexico: 1.09,
+  },
+  {
+    __timestamp: 1466985600000,
+    Boston__yhat: 1.5810989180423636,
+    Boston__yhat_lower: 1.4712906617254233,
+    Boston__yhat_upper: 1.7031366663740148,
+    Boston: 1.495,
+    California__yhat: 1.3389938921935745,
+    California__yhat_lower: 1.195322302704384,
+    California__yhat_upper: 1.5034014849132746,
+    California: 1.34,
+    WestTexNewMexico__yhat: 1.119390863260118,
+    WestTexNewMexico__yhat_lower: 0.9566638997448632,
+    WestTexNewMexico__yhat_upper: 1.291382075169968,
+    WestTexNewMexico: 1.145,
+  },
+  {
+    __timestamp: 1467590400000,
+    Boston__yhat: 1.5713962603563556,
+    Boston__yhat_lower: 1.4584685851949164,
+    Boston__yhat_upper: 1.6931151296207205,
+    Boston: 1.455,
+    California__yhat: 1.404984500630841,
+    California__yhat_lower: 1.2470413467005759,
+    California__yhat_upper: 1.5606944221931451,
+    California: 1.295,
+    WestTexNewMexico__yhat: 1.236356118434577,
+    WestTexNewMexico__yhat_lower: 1.0646330757141054,
+    WestTexNewMexico__yhat_upper: 1.4018372284129585,
+    WestTexNewMexico: 1.26,
+  },
+  {
+    __timestamp: 1468195200000,
+    Boston__yhat: 1.5226860023566928,
+    Boston__yhat_lower: 1.4025316733171211,
+    Boston__yhat_upper: 1.633108802218944,
+    Boston: 1.665,
+    California__yhat: 1.4702697475325415,
+    California__yhat_lower: 1.3053129350593928,
+    California__yhat_upper: 1.6317344334869877,
+    California: 1.365,
+    WestTexNewMexico__yhat: 1.3219192645467641,
+    WestTexNewMexico__yhat_lower: 1.1496881516514708,
+    WestTexNewMexico__yhat_upper: 1.4815087912863347,
+    WestTexNewMexico: 1.42,
+  },
+  {
+    __timestamp: 1468800000000,
+    Boston__yhat: 1.4641432908645742,
+    Boston__yhat_lower: 1.3560733523952684,
+    Boston__yhat_upper: 1.5782310680743912,
+    Boston: 1.505,
+    California__yhat: 1.5084846078350787,
+    California__yhat_lower: 1.3587250298828615,
+    California__yhat_upper: 1.6619848148225922,
+    California: 1.38,
+    WestTexNewMexico__yhat: 1.3432530381551955,
+    WestTexNewMexico__yhat_lower: 1.1897339861076903,
+    WestTexNewMexico__yhat_upper: 1.5124981951028644,
+    WestTexNewMexico: 1.51,
+  },
+  {
+    __timestamp: 1469404800000,
+    Boston__yhat: 1.4307998991771547,
+    Boston__yhat_lower: 1.301667237997504,
+    Boston__yhat_upper: 1.5476934496120969,
+    Boston: 1.375,
+    California__yhat: 1.5122071787503633,
+    California__yhat_lower: 1.356841125041551,
+    California__yhat_upper: 1.6904832424865197,
+    California: 1.39,
+    WestTexNewMexico__yhat: 1.3247458635692688,
+    WestTexNewMexico__yhat_lower: 1.171319851493184,
+    WestTexNewMexico__yhat_upper: 1.4935185793456895,
+    WestTexNewMexico: 1.45,
+  },
+  {
+    __timestamp: 1470009600000,
+    Boston__yhat: 1.4341759361691848,
+    Boston__yhat_lower: 1.3207185699269184,
+    Boston__yhat_upper: 1.5541879075562277,
+    Boston: 1.395,
+    California__yhat: 1.5012739779918045,
+    California__yhat_lower: 1.350483607848206,
+    California__yhat_upper: 1.6487086197098788,
+    California: 1.325,
+    WestTexNewMexico__yhat: 1.3177013212501445,
+    WestTexNewMexico__yhat_lower: 1.1621873011805777,
+    WestTexNewMexico__yhat_upper: 1.4784327748468409,
+    WestTexNewMexico: 1.365,
+  },
+  {
+    __timestamp: 1470614400000,
+    Boston__yhat: 1.4594412989347867,
+    Boston__yhat_lower: 1.3360840052623852,
+    Boston__yhat_upper: 1.579071411905622,
+    Boston: 1.26,
+    California__yhat: 1.5039080884399674,
+    California__yhat_lower: 1.3550207323817558,
+    California__yhat_upper: 1.6580067767958333,
+    California: 1.27,
+    WestTexNewMexico__yhat: 1.346525292803424,
+    WestTexNewMexico__yhat_lower: 1.1845477241766214,
+    WestTexNewMexico__yhat_upper: 1.5253058180362393,
+    WestTexNewMexico: 1.325,
+  },
+  {
+    __timestamp: 1471219200000,
+    Boston__yhat: 1.4881079558997103,
+    Boston__yhat_lower: 1.3645503667323902,
+    Boston__yhat_upper: 1.6020332609252061,
+    Boston: 1.295,
+    California__yhat: 1.5307353814067561,
+    California__yhat_lower: 1.3672276366429863,
+    California__yhat_upper: 1.6931440212842594,
+    California: 1.29,
+    WestTexNewMexico__yhat: 1.3900463616834302,
+    WestTexNewMexico__yhat_lower: 1.2178728357390292,
+    WestTexNewMexico__yhat_upper: 1.5544448251077518,
+    WestTexNewMexico: 1.34,
+  },
+  {
+    __timestamp: 1471824000000,
+    Boston__yhat: 1.5165851119026208,
+    Boston__yhat_lower: 1.3993213687897126,
+    Boston__yhat_upper: 1.6362999718104112,
+    Boston: 1.365,
+    California__yhat: 1.5661166722198414,
+    California__yhat_lower: 1.4072590036196495,
+    California__yhat_upper: 1.7230281466014852,
+    California: 1.31,
+    WestTexNewMexico__yhat: 1.415867766350719,
+    WestTexNewMexico__yhat_lower: 1.2597339451914085,
+    WestTexNewMexico__yhat_upper: 1.581519285569223,
+    WestTexNewMexico: 1.31,
+  },
+  {
+    __timestamp: 1472428800000,
+    Boston__yhat: 1.5493319083996173,
+    Boston__yhat_lower: 1.4286383246773895,
+    Boston__yhat_upper: 1.6610584673423974,
+    Boston: 1.57,
+    California__yhat: 1.585754115558432,
+    California__yhat_lower: 1.4329128169945788,
+    California__yhat_upper: 1.7361132619288921,
+    California: 1.365,
+    WestTexNewMexico__yhat: 1.425003944497083,
+    WestTexNewMexico__yhat_lower: 1.263935849492006,
+    WestTexNewMexico__yhat_upper: 1.599883010034185,
+    WestTexNewMexico: 1.35,
+  },
+  {
+    __timestamp: 1473033600000,
+    Boston__yhat: 1.579097219503869,
+    Boston__yhat_lower: 1.4625124607540727,
+    Boston__yhat_upper: 1.69854277527247,
+    Boston: 1.555,
+    California__yhat: 1.5829289478592412,
+    California__yhat_lower: 1.4356249194166182,
+    California__yhat_upper: 1.7385318431729417,
+    California: 1.335,
+    WestTexNewMexico__yhat: 1.4530568901505994,
+    WestTexNewMexico__yhat_lower: 1.2927701064887283,
+    WestTexNewMexico__yhat_upper: 1.630286407059165,
+    WestTexNewMexico: 1.3,
+  },
+  {
+    __timestamp: 1473638400000,
+    Boston__yhat: 1.5835307321120848,
+    Boston__yhat_lower: 1.4570692824610627,
+    Boston__yhat_upper: 1.6964456413709623,
+    Boston: 1.655,
+    California__yhat: 1.5763283813423616,
+    California__yhat_lower: 1.4096833213932036,
+    California__yhat_upper: 1.7310434287097953,
+    California: 1.53,
+    WestTexNewMexico__yhat: 1.5255881976647532,
+    WestTexNewMexico__yhat_lower: 1.3561754955258563,
+    WestTexNewMexico__yhat_upper: 1.684027893319529,
+    WestTexNewMexico: 1.36,
+  },
+  {
+    __timestamp: 1474243200000,
+    Boston__yhat: 1.5466400307744965,
+    Boston__yhat_lower: 1.4338966810651357,
+    Boston__yhat_upper: 1.6648156828446639,
+    Boston: 1.625,
+    California__yhat: 1.590860884362237,
+    California__yhat_lower: 1.434309019444344,
+    California__yhat_upper: 1.7362166774986345,
+    California: 1.55,
+    WestTexNewMexico__yhat: 1.6196339680610776,
+    WestTexNewMexico__yhat_lower: 1.4497107031175656,
+    WestTexNewMexico__yhat_upper: 1.7806142462800227,
+    WestTexNewMexico: 1.95,
+  },
+  {
+    __timestamp: 1474848000000,
+    Boston__yhat: 1.4811283468885308,
+    Boston__yhat_lower: 1.3715392717145678,
+    Boston__yhat_upper: 1.587116073735804,
+    Boston: 1.61,
+    California__yhat: 1.6306839793835606,
+    California__yhat_lower: 1.4641855806125463,
+    California__yhat_upper: 1.7938003803814595,
+    California: 1.55,
+    WestTexNewMexico__yhat: 1.677591239818513,
+    WestTexNewMexico__yhat_lower: 1.5077716190904478,
+    WestTexNewMexico__yhat_upper: 1.8492022322889896,
+    WestTexNewMexico: 1.965,
+  },
+  {
+    __timestamp: 1475452800000,
+    Boston__yhat: 1.423734988977364,
+    Boston__yhat_lower: 1.3106773299859629,
+    Boston__yhat_upper: 1.537088463633997,
+    Boston: 1.53,
+    California__yhat: 1.672080021638384,
+    California__yhat_lower: 1.5130954164169301,
+    California__yhat_upper: 1.829975053984329,
+    California: 1.66,
+    WestTexNewMexico__yhat: 1.660660080985409,
+    WestTexNewMexico__yhat_lower: 1.5072494922262853,
+    WestTexNewMexico__yhat_upper: 1.8299157553498004,
+    WestTexNewMexico: 1.7,
+  },
+  {
+    __timestamp: 1476057600000,
+    Boston__yhat: 1.405528241764916,
+    Boston__yhat_lower: 1.2843080290225841,
+    Boston__yhat_upper: 1.5165997437269296,
+    Boston: 1.515,
+    California__yhat: 1.683903744657914,
+    California__yhat_lower: 1.527790433264822,
+    California__yhat_upper: 1.8494276842384527,
+    California: 1.71,
+    WestTexNewMexico__yhat: 1.584598918099223,
+    WestTexNewMexico__yhat_lower: 1.4331280394220376,
+    WestTexNewMexico__yhat_upper: 1.7554432844710093,
+    WestTexNewMexico: 1.9,
+  },
+  {
+    __timestamp: 1476662400000,
+    Boston__yhat: 1.4272680640340751,
+    Boston__yhat_lower: 1.312120538966425,
+    Boston__yhat_upper: 1.5460174589362479,
+    Boston: 1.45,
+    California__yhat: 1.6555051697315277,
+    California__yhat_lower: 1.4902473868501909,
+    California__yhat_upper: 1.8115544862731081,
+    California: 1.985,
+    WestTexNewMexico__yhat: 1.5007544229607501,
+    WestTexNewMexico__yhat_lower: 1.3259325266237634,
+    WestTexNewMexico__yhat_upper: 1.6625794037605102,
+    WestTexNewMexico: 1.635,
+  },
+  {
+    __timestamp: 1477267200000,
+    Boston__yhat: 1.4638545217981513,
+    Boston__yhat_lower: 1.3470853117000912,
+    Boston__yhat_upper: 1.5848099636614141,
+    Boston: 1.58,
+    California__yhat: 1.604700938940257,
+    California__yhat_lower: 1.4455803728171153,
+    California__yhat_upper: 1.7626934413166773,
+    California: 2.085,
+    WestTexNewMexico__yhat: 1.445462516001628,
+    WestTexNewMexico__yhat_lower: 1.2733202392309644,
+    WestTexNewMexico__yhat_upper: 1.6136849839376912,
+    WestTexNewMexico: 1.84,
+  },
+  {
+    __timestamp: 1477872000000,
+    Boston__yhat: 1.4900776161328921,
+    Boston__yhat_lower: 1.363288614749134,
+    Boston__yhat_upper: 1.6074611690548872,
+    Boston: 1.67,
+    California__yhat: 1.558597584307237,
+    California__yhat_lower: 1.4092137762693824,
+    California__yhat_upper: 1.7168151371065437,
+    California: 2.025,
+    WestTexNewMexico__yhat: 1.412395217151307,
+    WestTexNewMexico__yhat_lower: 1.2522003655479184,
+    WestTexNewMexico__yhat_upper: 1.5720725257028094,
+    WestTexNewMexico: 1.5,
+  },
+  {
+    __timestamp: 1478476800000,
+    Boston__yhat: 1.499719058422172,
+    Boston__yhat_lower: 1.3860677720273529,
+    Boston__yhat_upper: 1.6257991109615109,
+    Boston: 1.575,
+    California__yhat: 1.5269577836642934,
+    California__yhat_lower: 1.3684070398469637,
+    California__yhat_upper: 1.6834866934281587,
+    California: 1.805,
+    WestTexNewMexico__yhat: 1.372541136830551,
+    WestTexNewMexico__yhat_lower: 1.2048951837458486,
+    WestTexNewMexico__yhat_upper: 1.5399850010433882,
+    WestTexNewMexico: 1.275,
+  },
+  {
+    __timestamp: 1479081600000,
+    Boston__yhat: 1.5021946534076882,
+    Boston__yhat_lower: 1.3897701851514586,
+    Boston__yhat_upper: 1.6278988627377922,
+    Boston: 1.595,
+    California__yhat: 1.4944841530199826,
+    California__yhat_lower: 1.3367754674478323,
+    California__yhat_upper: 1.6476086861010533,
+    California: 1.71,
+    WestTexNewMexico__yhat: 1.3131629324634078,
+    WestTexNewMexico__yhat_lower: 1.1482685904140733,
+    WestTexNewMexico__yhat_upper: 1.4831223148967962,
+    WestTexNewMexico: 1.37,
+  },
+  {
+    __timestamp: 1479686400000,
+    Boston__yhat: 1.5070855180263265,
+    Boston__yhat_lower: 1.3758031420462578,
+    Boston__yhat_upper: 1.6224302637010204,
+    Boston: 1.695,
+    California__yhat: 1.4390549550559264,
+    California__yhat_lower: 1.2870897870341376,
+    California__yhat_upper: 1.581365165178595,
+    California: 1.625,
+    WestTexNewMexico__yhat: 1.2510530948882772,
+    WestTexNewMexico__yhat_lower: 1.096852315699185,
+    WestTexNewMexico__yhat_upper: 1.4228159851095246,
+    WestTexNewMexico: 1.26,
+  },
+  {
+    __timestamp: 1480291200000,
+    Boston__yhat: 1.515981385992619,
+    Boston__yhat_lower: 1.402752063281944,
+    Boston__yhat_upper: 1.6388822584558373,
+    Boston: 1.63,
+    California__yhat: 1.3574557027193999,
+    California__yhat_lower: 1.205330218116345,
+    California__yhat_upper: 1.511849266149104,
+    California: 1.435,
+    WestTexNewMexico__yhat: 1.2101138191889365,
+    WestTexNewMexico__yhat_lower: 1.047738882979899,
+    WestTexNewMexico__yhat_upper: 1.367409106353797,
+    WestTexNewMexico: 1.335,
+  },
+  {
+    __timestamp: 1480896000000,
+    Boston__yhat: 1.5265033621432893,
+    Boston__yhat_lower: 1.4094285111714948,
+    Boston__yhat_upper: 1.6393549781279129,
+    Boston: 1.55,
+    California__yhat: 1.2732924320010715,
+    California__yhat_lower: 1.1169415330014323,
+    California__yhat_upper: 1.4177684146143212,
+    California: 1.27,
+    WestTexNewMexico__yhat: 1.194106692692431,
+    WestTexNewMexico__yhat_lower: 1.0239408159790335,
+    WestTexNewMexico__yhat_upper: 1.3715283466293289,
+    WestTexNewMexico: 1.165,
+  },
+  {
+    __timestamp: 1481500800000,
+    Boston__yhat: 1.537749982540017,
+    Boston__yhat_lower: 1.4234510229315234,
+    Boston__yhat_upper: 1.6488062654403828,
+    Boston: 1.545,
+    California__yhat: 1.2191966639579936,
+    California__yhat_lower: 1.0561519515828182,
+    California__yhat_upper: 1.377229313367787,
+    California: 1.28,
+    WestTexNewMexico__yhat: 1.1860438398748636,
+    WestTexNewMexico__yhat_lower: 1.0194752346333227,
+    WestTexNewMexico__yhat_upper: 1.3555997235052395,
+    WestTexNewMexico: 1.05,
+  },
+  {
+    __timestamp: 1482105600000,
+    Boston__yhat: 1.54717287799282,
+    Boston__yhat_lower: 1.4325894419217593,
+    Boston__yhat_upper: 1.6607558950326091,
+    Boston: 1.63,
+    California__yhat: 1.209651359198234,
+    California__yhat_lower: 1.047376483523164,
+    California__yhat_upper: 1.3617192197077554,
+    California: 1.235,
+    WestTexNewMexico__yhat: 1.1708733574176018,
+    WestTexNewMexico__yhat_lower: 1.0094451550980346,
+    WestTexNewMexico__yhat_upper: 1.3284412755009747,
+    WestTexNewMexico: 1.02,
+  },
+  {
+    __timestamp: 1482710400000,
+    Boston__yhat: 1.5525446358914896,
+    Boston__yhat_lower: 1.4321559525418919,
+    Boston__yhat_upper: 1.6629300100050604,
+    Boston: 1.675,
+    California__yhat: 1.2290873108457203,
+    California__yhat_lower: 1.0834735690044874,
+    California__yhat_upper: 1.3911463424635342,
+    California: 1.175,
+    WestTexNewMexico__yhat: 1.1515358452259419,
+    WestTexNewMexico__yhat_lower: 0.9713798394863586,
+    WestTexNewMexico__yhat_upper: 1.328783456292196,
+    WestTexNewMexico: 1.015,
+  },
+  {
+    __timestamp: 1483315200000,
+    Boston__yhat: 1.550064954571874,
+    Boston__yhat_lower: 1.4280653228961655,
+    Boston__yhat_upper: 1.6639596214565613,
+    Boston: 1.52,
+    California__yhat: 1.2455583448467942,
+    California__yhat_lower: 1.082642369663905,
+    California__yhat_upper: 1.4067992651381476,
+    California: 1.25,
+    WestTexNewMexico__yhat: 1.141280771099041,
+    WestTexNewMexico__yhat_lower: 0.9795394160699816,
+    WestTexNewMexico__yhat_upper: 1.3070397301496142,
+    WestTexNewMexico: 0.97,
+  },
+  {
+    __timestamp: 1483920000000,
+    Boston__yhat: 1.543270380547365,
+    Boston__yhat_lower: 1.4259694605152158,
+    Boston__yhat_upper: 1.6640446618097087,
+    Boston: 1.59,
+    California__yhat: 1.2373507175673657,
+    California__yhat_lower: 1.080885612625107,
+    California__yhat_upper: 1.3882751108018838,
+    California: 1.295,
+    WestTexNewMexico__yhat: 1.1440394384901078,
+    WestTexNewMexico__yhat_lower: 0.9719642365657081,
+    WestTexNewMexico__yhat_upper: 1.305268597361833,
+    WestTexNewMexico: 0.96,
+  },
+  {
+    __timestamp: 1484524800000,
+    Boston__yhat: 1.543062570935502,
+    Boston__yhat_lower: 1.4250583449512002,
+    Boston__yhat_upper: 1.6627359664660957,
+    Boston: 1.595,
+    California__yhat: 1.209153215553262,
+    California__yhat_lower: 1.056458798823747,
+    California__yhat_upper: 1.359740673582503,
+    California: 1.145,
+    WestTexNewMexico__yhat: 1.148023830457049,
+    WestTexNewMexico__yhat_lower: 0.985310000972858,
+    WestTexNewMexico__yhat_upper: 1.3164989406131617,
+    WestTexNewMexico: 0.94,
+  },
+  {
+    __timestamp: 1485129600000,
+    Boston__yhat: 1.5563131537668164,
+    Boston__yhat_lower: 1.4359781802685476,
+    Boston__yhat_upper: 1.6695544001612004,
+    Boston: 1.61,
+    California__yhat: 1.1847373501547807,
+    California__yhat_lower: 1.026980478300004,
+    California__yhat_upper: 1.3383246188592155,
+    California: 1.1,
+    WestTexNewMexico__yhat: 1.1396463764407923,
+    WestTexNewMexico__yhat_lower: 0.9764521573834166,
+    WestTexNewMexico__yhat_upper: 1.3059493310264991,
+    WestTexNewMexico: 1.02,
+  },
+  {
+    __timestamp: 1485734400000,
+    Boston__yhat: 1.580213862921242,
+    Boston__yhat_lower: 1.471785065399228,
+    Boston__yhat_upper: 1.709859060053903,
+    Boston: 1.41,
+    California__yhat: 1.1843242136120449,
+    California__yhat_lower: 1.022209593451801,
+    California__yhat_upper: 1.3398729576536006,
+    California: 1.015,
+    WestTexNewMexico__yhat: 1.1177655399044324,
+    WestTexNewMexico__yhat_lower: 0.960870212492223,
+    WestTexNewMexico__yhat_upper: 1.2800085941377326,
+    WestTexNewMexico: 0.915,
+  },
+  {
+    __timestamp: 1486339200000,
+    Boston__yhat: 1.6028900169710594,
+    Boston__yhat_lower: 1.493195933295021,
+    Boston__yhat_upper: 1.7250787356916857,
+    Boston: 1.535,
+    California__yhat: 1.2076887864022636,
+    California__yhat_lower: 1.0480067008433784,
+    California__yhat_upper: 1.36157622282349,
+    California: 1.165,
+    WestTexNewMexico__yhat: 1.0962426365666094,
+    WestTexNewMexico__yhat_lower: 0.932735142613276,
+    WestTexNewMexico__yhat_upper: 1.2658710755999614,
+    WestTexNewMexico: 1.025,
+  },
+  {
+    __timestamp: 1486944000000,
+    Boston__yhat: 1.6180243254601834,
+    Boston__yhat_lower: 1.5019253494945275,
+    Boston__yhat_upper: 1.7317070139876698,
+    Boston: 1.685,
+    California__yhat: 1.2374898518140625,
+    California__yhat_lower: 1.0871874502535506,
+    California__yhat_upper: 1.38855460185599,
+    California: 1.225,
+    WestTexNewMexico__yhat: 1.0892946232201077,
+    WestTexNewMexico__yhat_lower: 0.912249776571317,
+    WestTexNewMexico__yhat_upper: 1.2635151884011402,
+    WestTexNewMexico: 1.02,
+  },
+  {
+    __timestamp: 1487548800000,
+    Boston__yhat: 1.6314681516138463,
+    Boston__yhat_lower: 1.5121633115952695,
+    Boston__yhat_upper: 1.744533492684596,
+    Boston: 1.625,
+    California__yhat: 1.2579896861798496,
+    California__yhat_lower: 1.1023005450129273,
+    California__yhat_upper: 1.410805180571987,
+    California: 1.145,
+    WestTexNewMexico__yhat: 1.0985988437581984,
+    WestTexNewMexico__yhat_lower: 0.9272276807854124,
+    WestTexNewMexico__yhat_upper: 1.268223154420295,
+    WestTexNewMexico: 0.975,
+  },
+  {
+    __timestamp: 1488153600000,
+    Boston__yhat: 1.6527362281945481,
+    Boston__yhat_lower: 1.5370156988376074,
+    Boston__yhat_upper: 1.7696617003294441,
+    Boston: 1.51,
+    California__yhat: 1.2703333061019455,
+    California__yhat_lower: 1.111723585156037,
+    California__yhat_upper: 1.4298462878930536,
+    California: 1.3,
+    WestTexNewMexico__yhat: 1.1134048111318713,
+    WestTexNewMexico__yhat_lower: 0.9390626068594005,
+    WestTexNewMexico__yhat_upper: 1.269659885739347,
+    WestTexNewMexico: 1.035,
+  },
+  {
+    __timestamp: 1488758400000,
+    Boston__yhat: 1.6796262551910217,
+    Boston__yhat_lower: 1.5600073429179953,
+    Boston__yhat_upper: 1.792138510302397,
+    Boston: 1.82,
+    California__yhat: 1.2897245790200202,
+    California__yhat_lower: 1.1379108799552407,
+    California__yhat_upper: 1.4458817032729592,
+    California: 1.42,
+    WestTexNewMexico__yhat: 1.1212520704642086,
+    WestTexNewMexico__yhat_lower: 0.9646525278187917,
+    WestTexNewMexico__yhat_upper: 1.297630020352523,
+    WestTexNewMexico: 1.005,
+  },
+  {
+    __timestamp: 1489363200000,
+    Boston__yhat: 1.7047676058220433,
+    Boston__yhat_lower: 1.588004698954538,
+    Boston__yhat_upper: 1.8237876916992442,
+    Boston: 1.8,
+    California__yhat: 1.3278000750010266,
+    California__yhat_lower: 1.1720801128566298,
+    California__yhat_upper: 1.479537972046816,
+    California: 1.44,
+    WestTexNewMexico__yhat: 1.1173287551594895,
+    WestTexNewMexico__yhat_lower: 0.9541083635720938,
+    WestTexNewMexico__yhat_upper: 1.2758173793309833,
+    WestTexNewMexico: 0.975,
+  },
+  {
+    __timestamp: 1489968000000,
+    Boston__yhat: 1.7199499907308777,
+    Boston__yhat_lower: 1.610430126823349,
+    Boston__yhat_upper: 1.848391211549295,
+    Boston: 1.765,
+    California__yhat: 1.3778452208195984,
+    California__yhat_lower: 1.2271930709177776,
+    California__yhat_upper: 1.526801020146615,
+    California: 1.515,
+    WestTexNewMexico__yhat: 1.1078235921572972,
+    WestTexNewMexico__yhat_lower: 0.9322343272693547,
+    WestTexNewMexico__yhat_upper: 1.2623819171505275,
+    WestTexNewMexico: 0.975,
+  },
+  {
+    __timestamp: 1490572800000,
+    Boston__yhat: 1.727509288653125,
+    Boston__yhat_lower: 1.608955989233979,
+    Boston__yhat_upper: 1.8398701134735855,
+    Boston: 1.78,
+    California__yhat: 1.417523866504537,
+    California__yhat_lower: 1.2563042947263576,
+    California__yhat_upper: 1.5679469295439363,
+    California: 1.43,
+    WestTexNewMexico__yhat: 1.104382522017206,
+    WestTexNewMexico__yhat_lower: 0.9348588827263966,
+    WestTexNewMexico__yhat_upper: 1.288927958936451,
+    WestTexNewMexico: 0.95,
+  },
+  {
+    __timestamp: 1491177600000,
+    Boston__yhat: 1.734748827915991,
+    Boston__yhat_lower: 1.617485284327697,
+    Boston__yhat_upper: 1.8492714064430869,
+    Boston: 1.765,
+    California__yhat: 1.4268238820259231,
+    California__yhat_lower: 1.2605967943877965,
+    California__yhat_upper: 1.5894250214309384,
+    California: 1.38,
+    WestTexNewMexico__yhat: 1.114763946566295,
+    WestTexNewMexico__yhat_lower: 0.9559054814545247,
+    WestTexNewMexico__yhat_upper: 1.2794678977894611,
+    WestTexNewMexico: 1.045,
+  },
+  {
+    __timestamp: 1491782400000,
+    Boston__yhat: 1.740284889793295,
+    Boston__yhat_lower: 1.6251285202563455,
+    Boston__yhat_upper: 1.8603081330891629,
+    Boston: 1.805,
+    California__yhat: 1.4047444660311283,
+    California__yhat_lower: 1.252187601408478,
+    California__yhat_upper: 1.5602879586786764,
+    California: 1.505,
+    WestTexNewMexico__yhat: 1.1354077134423013,
+    WestTexNewMexico__yhat_lower: 0.9669174773999973,
+    WestTexNewMexico__yhat_upper: 1.3060872164149298,
+    WestTexNewMexico: 1.025,
+  },
+  {
+    __timestamp: 1492387200000,
+    Boston__yhat: 1.7383035748849756,
+    Boston__yhat_lower: 1.6195011753192454,
+    Boston__yhat_upper: 1.8499952590613429,
+    Boston: 1.755,
+    California__yhat: 1.3704374467860099,
+    California__yhat_lower: 1.2135979946151467,
+    California__yhat_upper: 1.5264088446734072,
+    California: 1.43,
+    WestTexNewMexico__yhat: 1.1527001514520159,
+    WestTexNewMexico__yhat_lower: 0.989091347188803,
+    WestTexNewMexico__yhat_upper: 1.3117056024984444,
+    WestTexNewMexico: 1.19,
+  },
+  {
+    __timestamp: 1492992000000,
+    Boston__yhat: 1.7256885365731087,
+    Boston__yhat_lower: 1.601394933506115,
+    Boston__yhat_upper: 1.8416830344674322,
+    Boston: 1.815,
+    California__yhat: 1.3489909145619732,
+    California__yhat_lower: 1.1912572159413557,
+    California__yhat_upper: 1.5139736730705589,
+    California: 1.43,
+    WestTexNewMexico__yhat: 1.1547506519769346,
+    WestTexNewMexico__yhat_lower: 0.9937160393619098,
+    WestTexNewMexico__yhat_upper: 1.3128854780729509,
+    WestTexNewMexico: 1.285,
+  },
+  {
+    __timestamp: 1493596800000,
+    Boston__yhat: 1.7130353934560185,
+    Boston__yhat_lower: 1.596442859432103,
+    Boston__yhat_upper: 1.8308755987420824,
+    Boston: 1.735,
+    California__yhat: 1.355173473126275,
+    California__yhat_lower: 1.2003893000461905,
+    California__yhat_upper: 1.496417471603667,
+    California: 1.335,
+    WestTexNewMexico__yhat: 1.1443811288700725,
+    WestTexNewMexico__yhat_lower: 0.9698330014155393,
+    WestTexNewMexico__yhat_upper: 1.3058601268221433,
+    WestTexNewMexico: 1.28,
+  },
+  {
+    __timestamp: 1494201600000,
+    Boston__yhat: 1.7162180910739395,
+    Boston__yhat_lower: 1.5979253814194743,
+    Boston__yhat_upper: 1.8316564949879741,
+    Boston: 1.805,
+    California__yhat: 1.386991187887074,
+    California__yhat_lower: 1.2304414370019476,
+    California__yhat_upper: 1.5433100030609836,
+    California: 1.465,
+    WestTexNewMexico__yhat: 1.1382886920665993,
+    WestTexNewMexico__yhat_lower: 0.9703025376318066,
+    WestTexNewMexico__yhat_upper: 1.3068718678114037,
+    WestTexNewMexico: 1.305,
+  },
+  {
+    __timestamp: 1494806400000,
+    Boston__yhat: 1.7368683613674492,
+    Boston__yhat_lower: 1.6214553727141692,
+    Boston__yhat_upper: 1.852401124361395,
+    Boston: 1.805,
+    California__yhat: 1.4303795113868312,
+    California__yhat_lower: 1.2748442887820097,
+    California__yhat_upper: 1.5873278121590861,
+    California: 1.565,
+    WestTexNewMexico__yhat: 1.1488422721542977,
+    WestTexNewMexico__yhat_lower: 0.9867027869665088,
+    WestTexNewMexico__yhat_upper: 1.3275487440106781,
+    WestTexNewMexico: 1.31,
+  },
+  {
+    __timestamp: 1495411200000,
+    Boston__yhat: 1.7626826807520022,
+    Boston__yhat_lower: 1.6456053495618348,
+    Boston__yhat_upper: 1.8811360090158376,
+    Boston: 1.885,
+    California__yhat: 1.4684172268279105,
+    California__yhat_lower: 1.3138830044029726,
+    California__yhat_upper: 1.63065854402894,
+    California: 1.54,
+    WestTexNewMexico__yhat: 1.16625345390289,
+    WestTexNewMexico__yhat_lower: 0.9985190124373086,
+    WestTexNewMexico__yhat_upper: 1.3138394903646435,
+    WestTexNewMexico: 1.28,
+  },
+  {
+    __timestamp: 1496016000000,
+    Boston__yhat: 1.7785402290075782,
+    Boston__yhat_lower: 1.6615410733670033,
+    Boston__yhat_upper: 1.8864985273398323,
+    Boston: 1.885,
+    California__yhat: 1.489129750002956,
+    California__yhat_lower: 1.3443131604382104,
+    California__yhat_upper: 1.6419229046975075,
+    California: 1.42,
+    WestTexNewMexico__yhat: 1.1646218812567077,
+    WestTexNewMexico__yhat_lower: 0.9914621431594239,
+    WestTexNewMexico__yhat_upper: 1.3237637005616976,
+    WestTexNewMexico: 1.21,
+  },
+  {
+    __timestamp: 1496620800000,
+    Boston__yhat: 1.7863439428343726,
+    Boston__yhat_lower: 1.6711930247723719,
+    Boston__yhat_upper: 1.9001673638546457,
+    Boston: 1.895,
+    California__yhat: 1.4909845926050966,
+    California__yhat_lower: 1.332806158530423,
+    California__yhat_upper: 1.6412020513359216,
+    California: 1.505,
+    WestTexNewMexico__yhat: 1.132060708096326,
+    WestTexNewMexico__yhat_lower: 0.9572994286970965,
+    WestTexNewMexico__yhat_upper: 1.2868826416978039,
+    WestTexNewMexico: 1.245,
+  },
+  {
+    __timestamp: 1497225600000,
+    Boston__yhat: 1.8014575842684502,
+    Boston__yhat_lower: 1.6864035896068974,
+    Boston__yhat_upper: 1.9197232067167753,
+    Boston: 1.89,
+    California__yhat: 1.4853605712593696,
+    California__yhat_lower: 1.3373117186789285,
+    California__yhat_upper: 1.641800720034394,
+    California: 1.49,
+    WestTexNewMexico__yhat: 1.0941978529237113,
+    WestTexNewMexico__yhat_lower: 0.9205119886710038,
+    WestTexNewMexico__yhat_upper: 1.2590480686928345,
+    WestTexNewMexico: 0.87,
+  },
+  {
+    __timestamp: 1497830400000,
+    Boston__yhat: 1.8296276869237924,
+    Boston__yhat_lower: 1.7208486392007467,
+    Boston__yhat_upper: 1.945899396479988,
+    Boston: 1.905,
+    California__yhat: 1.4924712873078025,
+    California__yhat_lower: 1.3393635134719806,
+    California__yhat_upper: 1.6544132409285186,
+    California: 1.405,
+    WestTexNewMexico__yhat: 1.0997295717174325,
+    WestTexNewMexico__yhat_lower: 0.939148005703825,
+    WestTexNewMexico__yhat_upper: 1.2633924450577891,
+    WestTexNewMexico: 0.85,
+  },
+  {
+    __timestamp: 1498435200000,
+    Boston__yhat: 1.8519239358166282,
+    Boston__yhat_lower: 1.7280619166005051,
+    Boston__yhat_upper: 1.9671164546049593,
+    Boston: 1.9,
+    California__yhat: 1.5287615089133744,
+    California__yhat_lower: 1.375043969790753,
+    California__yhat_upper: 1.689154456278733,
+    California: 1.505,
+    WestTexNewMexico__yhat: 1.1748674500595282,
+    WestTexNewMexico__yhat_lower: 1.0104943955090295,
+    WestTexNewMexico__yhat_upper: 1.333997420395565,
+    WestTexNewMexico: 1.225,
+  },
+  {
+    __timestamp: 1499040000000,
+    Boston__yhat: 1.8406703252155177,
+    Boston__yhat_lower: 1.7370404368727717,
+    Boston__yhat_upper: 1.958611777470813,
+    Boston: 1.93,
+    California__yhat: 1.5925389601991373,
+    California__yhat_lower: 1.433119864992163,
+    California__yhat_upper: 1.74688745180964,
+    California: 1.45,
+    WestTexNewMexico__yhat: 1.2917496124135144,
+    WestTexNewMexico__yhat_lower: 1.1187336492585116,
+    WestTexNewMexico__yhat_upper: 1.4592024595410427,
+    WestTexNewMexico: 1.245,
+  },
+  {
+    __timestamp: 1499644800000,
+    Boston__yhat: 1.7881631960738633,
+    Boston__yhat_lower: 1.6667380687101898,
+    Boston__yhat_upper: 1.9071858100406684,
+    Boston: 1.585,
+    California__yhat: 1.6609781243647581,
+    California__yhat_lower: 1.4990967138637314,
+    California__yhat_upper: 1.8153555398137116,
+    California: 1.815,
+    WestTexNewMexico__yhat: 1.3878443216331735,
+    WestTexNewMexico__yhat_lower: 1.2030669817831299,
+    WestTexNewMexico__yhat_upper: 1.5506067509588624,
+    WestTexNewMexico: 1.275,
+  },
+  {
+    __timestamp: 1500249600000,
+    Boston__yhat: 1.7191840092864128,
+    Boston__yhat_lower: 1.6065776365501874,
+    Boston__yhat_upper: 1.839620918087611,
+    Boston: 1.48,
+    California__yhat: 1.7054047449754868,
+    California__yhat_lower: 1.535206762631946,
+    California__yhat_upper: 1.8577821614335777,
+    California: 1.815,
+    WestTexNewMexico__yhat: 1.4213934070254646,
+    WestTexNewMexico__yhat_lower: 1.2481435763626016,
+    WestTexNewMexico__yhat_upper: 1.5936239782584871,
+    WestTexNewMexico: 1.315,
+  },
+  {
+    __timestamp: 1500854400000,
+    Boston__yhat: 1.670256065786413,
+    Boston__yhat_lower: 1.553077857629512,
+    Boston__yhat_upper: 1.7869679292492795,
+    Boston: 1.545,
+    California__yhat: 1.714411769084566,
+    California__yhat_lower: 1.5643734411616905,
+    California__yhat_upper: 1.8667131285949061,
+    California: 1.76,
+    WestTexNewMexico__yhat: 1.407248985203041,
+    WestTexNewMexico__yhat_lower: 1.238049195039753,
+    WestTexNewMexico__yhat_upper: 1.5669510953410066,
+    WestTexNewMexico: 1.34,
+  },
+  {
+    __timestamp: 1501459200000,
+    Boston__yhat: 1.6582917033228237,
+    Boston__yhat_lower: 1.5409092935474398,
+    Boston__yhat_upper: 1.7845780519218253,
+    Boston: 1.58,
+    California__yhat: 1.7037623513454934,
+    California__yhat_lower: 1.5502705426731838,
+    California__yhat_upper: 1.8609802183770094,
+    California: 1.77,
+    WestTexNewMexico__yhat: 1.3959911883988048,
+    WestTexNewMexico__yhat_lower: 1.2357229389395101,
+    WestTexNewMexico__yhat_upper: 1.5488768665975765,
+    WestTexNewMexico: 1.365,
+  },
+  {
+    __timestamp: 1502064000000,
+    Boston__yhat: 1.6719325972202634,
+    Boston__yhat_lower: 1.5549665305959768,
+    Boston__yhat_upper: 1.7968206245970162,
+    Boston: 1.645,
+    California__yhat: 1.702279498346654,
+    California__yhat_lower: 1.5468903384299495,
+    California__yhat_upper: 1.8613392400539936,
+    California: 1.735,
+    WestTexNewMexico__yhat: 1.419826404697059,
+    WestTexNewMexico__yhat_lower: 1.2535254446063566,
+    WestTexNewMexico__yhat_upper: 1.587496068086963,
+    WestTexNewMexico: 1.48,
+  },
+  {
+    __timestamp: 1502668800000,
+    Boston__yhat: 1.6914240210366667,
+    Boston__yhat_lower: 1.572243044003606,
+    Boston__yhat_upper: 1.809374180252829,
+    Boston: 1.745,
+    California__yhat: 1.7251379246918526,
+    California__yhat_lower: 1.5656549380337181,
+    California__yhat_upper: 1.8664638530454856,
+    California: 2.005,
+    WestTexNewMexico__yhat: 1.4644529713654408,
+    WestTexNewMexico__yhat_lower: 1.2960084753426138,
+    WestTexNewMexico__yhat_upper: 1.6290333163133552,
+    WestTexNewMexico: 1.72,
+  },
+  {
+    __timestamp: 1503273600000,
+    Boston__yhat: 1.7102480252220476,
+    Boston__yhat_lower: 1.5920744149499648,
+    Boston__yhat_upper: 1.8280049793256221,
+    Boston: 1.77,
+    California__yhat: 1.76076006674544,
+    California__yhat_lower: 1.6040896711403747,
+    California__yhat_upper: 1.917339228742503,
+    California: 2.16,
+    WestTexNewMexico__yhat: 1.495655425762464,
+    WestTexNewMexico__yhat_lower: 1.3287121240767514,
+    WestTexNewMexico__yhat_upper: 1.6650107120670545,
+    WestTexNewMexico: 1.79,
+  },
+  {
+    __timestamp: 1503878400000,
+    Boston__yhat: 1.732895859621494,
+    Boston__yhat_lower: 1.6107061239405822,
+    Boston__yhat_upper: 1.845354975869303,
+    Boston: 1.785,
+    California__yhat: 1.7843378450931897,
+    California__yhat_lower: 1.6323654325281014,
+    California__yhat_upper: 1.9318196076295764,
+    California: 1.87,
+    WestTexNewMexico__yhat: 1.506710267457564,
+    WestTexNewMexico__yhat_lower: 1.3400550535218518,
+    WestTexNewMexico__yhat_upper: 1.669833705250297,
+    WestTexNewMexico: 1.765,
+  },
+  {
+    __timestamp: 1504483200000,
+    Boston__yhat: 1.755244450196397,
+    Boston__yhat_lower: 1.637449623542636,
+    Boston__yhat_upper: 1.871272038544953,
+    Boston: 1.685,
+    California__yhat: 1.7846281349885311,
+    California__yhat_lower: 1.622387183433942,
+    California__yhat_upper: 1.9439851659479768,
+    California: 1.955,
+    WestTexNewMexico__yhat: 1.5294803570968938,
+    WestTexNewMexico__yhat_lower: 1.3613502797411972,
+    WestTexNewMexico__yhat_upper: 1.6927229242339974,
+    WestTexNewMexico: 1.76,
+  },
+  {
+    __timestamp: 1505088000000,
+    Boston__yhat: 1.756615424009621,
+    Boston__yhat_lower: 1.6410463799636061,
+    Boston__yhat_upper: 1.870394173319885,
+    Boston: 1.57,
+    California__yhat: 1.7765246925015679,
+    California__yhat_lower: 1.6216879321213362,
+    California__yhat_upper: 1.9318739523532495,
+    California: 1.95,
+    WestTexNewMexico__yhat: 1.5951620379294922,
+    WestTexNewMexico__yhat_lower: 1.4376736726898494,
+    WestTexNewMexico__yhat_upper: 1.7655559117205906,
+    WestTexNewMexico: 1.78,
+  },
+  {
+    __timestamp: 1505692800000,
+    Boston__yhat: 1.7178097680607571,
+    Boston__yhat_lower: 1.6022240484885857,
+    Boston__yhat_upper: 1.8407005168977442,
+    Boston: 1.59,
+    California__yhat: 1.7859776752881176,
+    California__yhat_lower: 1.630448354264863,
+    California__yhat_upper: 1.941471247383345,
+    California: 1.895,
+    WestTexNewMexico__yhat: 1.6901750210424575,
+    WestTexNewMexico__yhat_lower: 1.5243936951119106,
+    WestTexNewMexico__yhat_upper: 1.8614950065165954,
+    WestTexNewMexico: 1.74,
+  },
+  {
+    __timestamp: 1506297600000,
+    Boston__yhat: 1.6457729015261873,
+    Boston__yhat_lower: 1.5322283465574804,
+    Boston__yhat_upper: 1.7646499117189138,
+    Boston: 1.615,
+    California__yhat: 1.8222195096881877,
+    California__yhat_lower: 1.6627006734537622,
+    California__yhat_upper: 1.977876902478907,
+    California: 1.925,
+    WestTexNewMexico__yhat: 1.75967388341635,
+    WestTexNewMexico__yhat_lower: 1.5945232197807684,
+    WestTexNewMexico__yhat_upper: 1.9332467068986767,
+    WestTexNewMexico: 1.795,
+  },
+  {
+    __timestamp: 1506902400000,
+    Boston__yhat: 1.5747145164848486,
+    Boston__yhat_lower: 1.4526178172739,
+    Boston__yhat_upper: 1.688227953801409,
+    Boston: 1.585,
+    California__yhat: 1.8656740212343985,
+    California__yhat_lower: 1.7126250130588196,
+    California__yhat_upper: 2.0176230395733374,
+    California: 1.955,
+    WestTexNewMexico__yhat: 1.7575841759379691,
+    WestTexNewMexico__yhat_lower: 1.5863235558049222,
+    WestTexNewMexico__yhat_upper: 1.9295182974675937,
+    WestTexNewMexico: 1.795,
+  },
+  {
+    __timestamp: 1507507200000,
+    Boston__yhat: 1.5391257682954589,
+    Boston__yhat_lower: 1.4325811215040265,
+    Boston__yhat_upper: 1.651378741623639,
+    Boston: 1.595,
+    California__yhat: 1.884287406049771,
+    California__yhat_lower: 1.7232418981208881,
+    California__yhat_upper: 2.040893202969264,
+    California: 1.89,
+    WestTexNewMexico__yhat: 1.6896884418687792,
+    WestTexNewMexico__yhat_lower: 1.5333015164189816,
+    WestTexNewMexico__yhat_upper: 1.8520706067206518,
+    WestTexNewMexico: 1.61,
+  },
+  {
+    __timestamp: 1508112000000,
+    Boston__yhat: 1.5457875712691287,
+    Boston__yhat_lower: 1.4237508862869774,
+    Boston__yhat_upper: 1.6566809290625377,
+    Boston: 1.53,
+    California__yhat: 1.8623246781854044,
+    California__yhat_lower: 1.71699357688764,
+    California__yhat_upper: 2.0166695308216984,
+    California: 1.765,
+    WestTexNewMexico__yhat: 1.6044826042052538,
+    WestTexNewMexico__yhat_lower: 1.4354026808463178,
+    WestTexNewMexico__yhat_upper: 1.774700503239314,
+    WestTexNewMexico: 1.425,
+  },
+  {
+    __timestamp: 1508716800000,
+    Boston__yhat: 1.5726067277125042,
+    Boston__yhat_lower: 1.4588518304131273,
+    Boston__yhat_upper: 1.6931394818598706,
+    Boston: 1.66,
+    California__yhat: 1.813276217297562,
+    California__yhat_lower: 1.6436630115090212,
+    California__yhat_upper: 1.9726143953562199,
+    California: 1.605,
+    WestTexNewMexico__yhat: 1.5443116800783563,
+    WestTexNewMexico__yhat_lower: 1.3762184866575962,
+    WestTexNewMexico__yhat_upper: 1.7109707070940048,
+    WestTexNewMexico: 1.455,
+  },
+  {
+    __timestamp: 1509321600000,
+    Boston__yhat: 1.5924432782000346,
+    Boston__yhat_lower: 1.4703826300286846,
+    Boston__yhat_upper: 1.7121204098890965,
+    Boston: 1.72,
+    California__yhat: 1.764716669699304,
+    California__yhat_lower: 1.6050564164237722,
+    California__yhat_upper: 1.9155961260848229,
+    California: 1.455,
+    WestTexNewMexico__yhat: 1.5102635492996923,
+    WestTexNewMexico__yhat_lower: 1.3491095695601811,
+    WestTexNewMexico__yhat_upper: 1.6780957297633348,
+    WestTexNewMexico: 1.34,
+  },
+  {
+    __timestamp: 1509926400000,
+    Boston__yhat: 1.5952916742523302,
+    Boston__yhat_lower: 1.4724655896157,
+    Boston__yhat_upper: 1.715043028690722,
+    Boston: 1.55,
+    California__yhat: 1.7308712112618871,
+    California__yhat_lower: 1.5739489361166974,
+    California__yhat_upper: 1.8856751719281246,
+    California: 1.57,
+    WestTexNewMexico__yhat: 1.4744099923739549,
+    WestTexNewMexico__yhat_lower: 1.3115443224203953,
+    WestTexNewMexico__yhat_upper: 1.6401515994802147,
+    WestTexNewMexico: 1.365,
+  },
+  {
+    __timestamp: 1510531200000,
+    Boston__yhat: 1.5888392408097436,
+    Boston__yhat_lower: 1.4668361685602658,
+    Boston__yhat_upper: 1.7046226875993664,
+    Boston: 1.585,
+    California__yhat: 1.700205239943529,
+    California__yhat_lower: 1.5485532218705247,
+    California__yhat_upper: 1.85030601233507,
+    California: 1.62,
+    WestTexNewMexico__yhat: 1.418973341834363,
+    WestTexNewMexico__yhat_lower: 1.258913708855633,
+    WestTexNewMexico__yhat_upper: 1.574537399654355,
+    WestTexNewMexico: 1.415,
+  },
+  {
+    __timestamp: 1511136000000,
+    Boston__yhat: 1.5836318701735101,
+    Boston__yhat_lower: 1.4645047458001548,
+    Boston__yhat_upper: 1.7040502830959576,
+    Boston: 1.6,
+    California__yhat: 1.6497771589307555,
+    California__yhat_lower: 1.4923567485580018,
+    California__yhat_upper: 1.8149873186283765,
+    California: 1.65,
+    WestTexNewMexico__yhat: 1.3563342745068379,
+    WestTexNewMexico__yhat_lower: 1.1846050321358912,
+    WestTexNewMexico__yhat_upper: 1.5060991373789618,
+    WestTexNewMexico: 1.41,
+  },
+  {
+    __timestamp: 1511740800000,
+    Boston__yhat: 1.5826517548445758,
+    Boston__yhat_lower: 1.467319909405141,
+    Boston__yhat_upper: 1.697456544854553,
+    Boston: 1.64,
+    California__yhat: 1.5716498507522567,
+    California__yhat_lower: 1.4030949862688427,
+    California__yhat_upper: 1.7196692318309386,
+    California: 1.45,
+    WestTexNewMexico__yhat: 1.3115312127819436,
+    WestTexNewMexico__yhat_lower: 1.1377047570253669,
+    WestTexNewMexico__yhat_upper: 1.4728488944922875,
+    WestTexNewMexico: 1.2,
+  },
+  {
+    __timestamp: 1512345600000,
+    Boston__yhat: 1.5836934227290973,
+    Boston__yhat_lower: 1.4706505426607004,
+    Boston__yhat_upper: 1.7028617092919829,
+    Boston: 1.44,
+    California__yhat: 1.4853000367022948,
+    California__yhat_lower: 1.3171932005626774,
+    California__yhat_upper: 1.6495818788885088,
+    California: 1.475,
+    WestTexNewMexico__yhat: 1.2929263032369593,
+    WestTexNewMexico__yhat_lower: 1.126161335435101,
+    WestTexNewMexico__yhat_upper: 1.4691437711105042,
+    WestTexNewMexico: 1.255,
+  },
+  {
+    __timestamp: 1512950400000,
+    Boston__yhat: 1.5854904493945186,
+    Boston__yhat_lower: 1.4663113792968328,
+    Boston__yhat_upper: 1.7064247946100661,
+    Boston: 1.55,
+    California__yhat: 1.423812565967093,
+    California__yhat_lower: 1.26337217088044,
+    California__yhat_upper: 1.5855591138371519,
+    California: 1.365,
+    WestTexNewMexico__yhat: 1.285918064954932,
+    WestTexNewMexico__yhat_lower: 1.1129613414382733,
+    WestTexNewMexico__yhat_upper: 1.4411417528866655,
+    WestTexNewMexico: 1.315,
+  },
+  {
+    __timestamp: 1513555200000,
+    Boston__yhat: 1.587534822853923,
+    Boston__yhat_lower: 1.474373213976285,
+    Boston__yhat_upper: 1.7093497653377143,
+    Boston: 1.64,
+    California__yhat: 1.406491332871266,
+    California__yhat_lower: 1.2614139028387,
+    California__yhat_upper: 1.567765188079335,
+    California: 1.475,
+    WestTexNewMexico__yhat: 1.2732538523839543,
+    WestTexNewMexico__yhat_lower: 1.1223850003357936,
+    WestTexNewMexico__yhat_upper: 1.4388208415738943,
+    WestTexNewMexico: 1.39,
+  },
+  {
+    __timestamp: 1514160000000,
+    Boston__yhat: 1.5864233934075276,
+    Boston__yhat_lower: 1.4692345690913347,
+    Boston__yhat_upper: 1.699449380613373,
+    Boston: 1.63,
+    California__yhat: 1.4228228692993976,
+    California__yhat_lower: 1.2632384697230399,
+    California__yhat_upper: 1.5883896474433383,
+    California: 1.32,
+    WestTexNewMexico__yhat: 1.254604177748047,
+    WestTexNewMexico__yhat_lower: 1.085917150263281,
+    WestTexNewMexico__yhat_upper: 1.410352311015645,
+    WestTexNewMexico: 1.255,
+  },
+  {
+    __timestamp: 1514764800000,
+    Boston__yhat: 1.5777769291785921,
+    Boston__yhat_lower: 1.4651241617944295,
+    Boston__yhat_upper: 1.6989433879444449,
+    Boston: 1.595,
+    California__yhat: 1.4419038492586702,
+    California__yhat_lower: 1.2879258053870268,
+    California__yhat_upper: 1.6080138658220995,
+    California: 1.57,
+    WestTexNewMexico__yhat: 1.2428419002960793,
+    WestTexNewMexico__yhat_lower: 1.0741263868912616,
+    WestTexNewMexico__yhat_upper: 1.407884738946383,
+    WestTexNewMexico: 1.25,
+  },
+  {
+    __timestamp: 1515369600000,
+    Boston__yhat: 1.5634839087431907,
+    Boston__yhat_lower: 1.4398553462505361,
+    Boston__yhat_upper: 1.6740426449964554,
+    Boston: 1.61,
+    California__yhat: 1.4384247589739614,
+    California__yhat_lower: 1.282408605059618,
+    California__yhat_upper: 1.6025657234949855,
+    California: 1.44,
+    WestTexNewMexico__yhat: 1.244658530051088,
+    WestTexNewMexico__yhat_lower: 1.06945490411183,
+    WestTexNewMexico__yhat_upper: 1.4129521329470152,
+    WestTexNewMexico: 1.415,
+  },
+  {
+    __timestamp: 1515974400000,
+    Boston__yhat: 1.5536680519017763,
+    Boston__yhat_lower: 1.4375790011864307,
+    Boston__yhat_upper: 1.677280818004328,
+    Boston: 1.47,
+    California__yhat: 1.4122047608516037,
+    California__yhat_lower: 1.2652264002363518,
+    California__yhat_upper: 1.567139643522832,
+    California: 1.405,
+    WestTexNewMexico__yhat: 1.2505394036574187,
+    WestTexNewMexico__yhat_lower: 1.0786475912939553,
+    WestTexNewMexico__yhat_upper: 1.428300983429678,
+    WestTexNewMexico: 1.355,
+  },
+  {
+    __timestamp: 1516579200000,
+    Boston__yhat: 1.557784526541132,
+    Boston__yhat_lower: 1.437971156562914,
+    Boston__yhat_upper: 1.6722358708824165,
+    Boston: 1.47,
+    California__yhat: 1.385077501398188,
+    California__yhat_lower: 1.2309216361341202,
+    California__yhat_upper: 1.5378930674747595,
+    California: 1.515,
+    WestTexNewMexico__yhat: 1.2452975589929682,
+    WestTexNewMexico__yhat_lower: 1.0812701428213654,
+    WestTexNewMexico__yhat_upper: 1.4042332991981532,
+    WestTexNewMexico: 1.28,
+  },
+  {
+    __timestamp: 1517184000000,
+    Boston__yhat: 1.5741548151277522,
+    Boston__yhat_lower: 1.4657951310241182,
+    Boston__yhat_upper: 1.6946934922897228,
+    Boston: 1.61,
+    California__yhat: 1.3795831010900481,
+    California__yhat_lower: 1.2240059315323881,
+    California__yhat_upper: 1.523348626269824,
+    California: 1.18,
+    WestTexNewMexico__yhat: 1.2253524085244434,
+    WestTexNewMexico__yhat_lower: 1.0676441338279083,
+    WestTexNewMexico__yhat_upper: 1.3853412571686063,
+    WestTexNewMexico: 1.195,
+  },
+  {
+    __timestamp: 1517788800000,
+    Boston__yhat: 1.5914104606043242,
+    Boston__yhat_lower: 1.4776611552150622,
+    Boston__yhat_upper: 1.703500126320889,
+    Boston: 1.575,
+    California__yhat: 1.3995428080393197,
+    California__yhat_lower: 1.2489325863292726,
+    California__yhat_upper: 1.546806803227574,
+    California: 1.415,
+    WestTexNewMexico__yhat: 1.2027703717982,
+    WestTexNewMexico__yhat_lower: 1.0400903472942626,
+    WestTexNewMexico__yhat_upper: 1.3629951573864216,
+    WestTexNewMexico: 1.16,
+  },
+  {
+    __timestamp: 1518393600000,
+    Boston__yhat: 1.6013473406363457,
+    Boston__yhat_lower: 1.4866943308203548,
+    Boston__yhat_upper: 1.724859161919591,
+    Boston: 1.67,
+    California__yhat: 1.4295335961237214,
+    California__yhat_lower: 1.27915620579144,
+    California__yhat_upper: 1.592093519009324,
+    California: 1.535,
+    WestTexNewMexico__yhat: 1.1929126764808942,
+    WestTexNewMexico__yhat_lower: 1.0346155123052385,
+    WestTexNewMexico__yhat_upper: 1.3712222245975092,
+    WestTexNewMexico: 1.225,
+  },
+  {
+    __timestamp: 1518998400000,
+    Boston__yhat: 1.607872039185895,
+    Boston__yhat_lower: 1.4920129289266784,
+    Boston__yhat_upper: 1.715879581587453,
+    Boston: 1.6,
+    California__yhat: 1.4520419324065412,
+    California__yhat_lower: 1.2928929013136694,
+    California__yhat_upper: 1.6171413049202863,
+    California: 1.425,
+    WestTexNewMexico__yhat: 1.2001106590202169,
+    WestTexNewMexico__yhat_lower: 1.0367540154507295,
+    WestTexNewMexico__yhat_upper: 1.3644853889790938,
+    WestTexNewMexico: 1.225,
+  },
+  {
+    __timestamp: 1519603200000,
+    Boston__yhat: 1.620911752423461,
+    Boston__yhat_lower: 1.506812351390597,
+    Boston__yhat_upper: 1.7396201454879228,
+    Boston: 1.555,
+    California__yhat: 1.464809552378173,
+    California__yhat_lower: 1.3094369240272457,
+    California__yhat_upper: 1.6219770630066919,
+    California: 1.35,
+    WestTexNewMexico__yhat: 1.2152346714300077,
+    WestTexNewMexico__yhat_lower: 1.0545341388963183,
+    WestTexNewMexico__yhat_upper: 1.3889597711960058,
+    WestTexNewMexico: 1.21,
+  },
+  {
+    __timestamp: 1520208000000,
+    Boston__yhat: 1.6429613225579054,
+    Boston__yhat_lower: 1.5250729066500823,
+    Boston__yhat_upper: 1.7591414050333753,
+    Boston: 1.595,
+    California__yhat: 1.4815834774378935,
+    California__yhat_lower: 1.3185475241546276,
+    California__yhat_upper: 1.6325722262914288,
+    California: 1.345,
+    WestTexNewMexico__yhat: 1.2250261625399055,
+    WestTexNewMexico__yhat_lower: 1.050233531841937,
+    WestTexNewMexico__yhat_upper: 1.3751543643791921,
+    WestTexNewMexico: 1.25,
+  },
+  {
+    __timestamp: 1520812800000,
+    Boston__yhat: 1.66531535419241,
+    Boston__yhat_lower: 1.551493461131107,
+    Boston__yhat_upper: 1.7761043327879456,
+    Boston: 1.605,
+    California__yhat: 1.5160660096342993,
+    California__yhat_lower: 1.3585529234416427,
+    California__yhat_upper: 1.6832384050593,
+    California: 1.385,
+    WestTexNewMexico__yhat: 1.2230294452897705,
+    WestTexNewMexico__yhat_lower: 1.0609477133832677,
+    WestTexNewMexico__yhat_upper: 1.3881474130429041,
+    WestTexNewMexico: 1.22,
+  },
+  {
+    __timestamp: 1521417600000,
+    Boston__yhat: 1.678487710603687,
+    Boston__yhat_lower: 1.564705165756329,
+    Boston__yhat_upper: 1.7926139100963339,
+    Boston: 1.565,
+    California__yhat: 1.5652070907846978,
+    California__yhat_lower: 1.4141177410387478,
+    California__yhat_upper: 1.7063662783920062,
+    California: 1.37,
+    WestTexNewMexico__yhat: 1.213712007592648,
+    WestTexNewMexico__yhat_lower: 1.0487714037236402,
+    WestTexNewMexico__yhat_upper: 1.386013473973569,
+    WestTexNewMexico: 1.23,
+  },
+  {
+    __timestamp: 1521936000000,
+    Boston__yhat: 1.682536686382473,
+    Boston__yhat_lower: 1.5601634078750455,
+    Boston__yhat_upper: 1.8039620879210212,
+    Boston: null,
+    California__yhat: 1.6035530548199777,
+    California__yhat_lower: 1.4510914166115723,
+    California__yhat_upper: 1.7623422592242224,
+    California: null,
+    WestTexNewMexico__yhat: 1.2084666171356633,
+    WestTexNewMexico__yhat_lower: 1.0559277454557903,
+    WestTexNewMexico__yhat_upper: 1.3716256677551577,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1522540800000,
+    Boston__yhat: 1.6853898579135072,
+    Boston__yhat_lower: 1.5607995110322577,
+    Boston__yhat_upper: 1.8073999911828285,
+    Boston: null,
+    California__yhat: 1.6237011645668817,
+    California__yhat_lower: 1.4757815983654023,
+    California__yhat_upper: 1.776587305341555,
+    California: null,
+    WestTexNewMexico__yhat: 1.214169410647762,
+    WestTexNewMexico__yhat_lower: 1.0581538648241648,
+    WestTexNewMexico__yhat_upper: 1.3695836853475196,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1523145600000,
+    Boston__yhat: 1.689351966157518,
+    Boston__yhat_lower: 1.575343391034058,
+    Boston__yhat_upper: 1.808105985585739,
+    Boston: null,
+    California__yhat: 1.6102888937664057,
+    California__yhat_lower: 1.4532428370809523,
+    California__yhat_upper: 1.765926876898847,
+    California: null,
+    WestTexNewMexico__yhat: 1.2326699540808301,
+    WestTexNewMexico__yhat_lower: 1.0682655062624615,
+    WestTexNewMexico__yhat_upper: 1.3981594060214781,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1523750400000,
+    Boston__yhat: 1.6884864805612496,
+    Boston__yhat_lower: 1.5742021894438218,
+    Boston__yhat_upper: 1.813433718348916,
+    Boston: null,
+    California__yhat: 1.576982498900054,
+    California__yhat_lower: 1.4203855126519214,
+    California__yhat_upper: 1.72592400619938,
+    California: null,
+    WestTexNewMexico__yhat: 1.252733863316836,
+    WestTexNewMexico__yhat_lower: 1.0911291189143066,
+    WestTexNewMexico__yhat_upper: 1.4184516602131139,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1524355200000,
+    Boston__yhat: 1.6766428888228289,
+    Boston__yhat_lower: 1.557133646049639,
+    Boston__yhat_upper: 1.8039224024168021,
+    Boston: null,
+    California__yhat: 1.5489376559301495,
+    California__yhat_lower: 1.3802162947230194,
+    California__yhat_upper: 1.6976601182869269,
+    California: null,
+    WestTexNewMexico__yhat: 1.2602503359540163,
+    WestTexNewMexico__yhat_lower: 1.0993497131417902,
+    WestTexNewMexico__yhat_upper: 1.4269438319760595,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1524960000000,
+    Boston__yhat: 1.6599997280355017,
+    Boston__yhat_lower: 1.5524988079395763,
+    Boston__yhat_upper: 1.78349334299218,
+    Boston: null,
+    California__yhat: 1.5455560009052383,
+    California__yhat_lower: 1.3837990457840332,
+    California__yhat_upper: 1.708515950009531,
+    California: null,
+    WestTexNewMexico__yhat: 1.2524804912613416,
+    WestTexNewMexico__yhat_lower: 1.0800104649716162,
+    WestTexNewMexico__yhat_upper: 1.4199408722695632,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1525564800000,
+    Boston__yhat: 1.6546573207704953,
+    Boston__yhat_lower: 1.5366452027236606,
+    Boston__yhat_upper: 1.7771963193090587,
+    Boston: null,
+    California__yhat: 1.5701567229289408,
+    California__yhat_lower: 1.4158647650377556,
+    California__yhat_upper: 1.7268920200592506,
+    California: null,
+    WestTexNewMexico__yhat: 1.2429798542762953,
+    WestTexNewMexico__yhat_lower: 1.0755052631291508,
+    WestTexNewMexico__yhat_upper: 1.392085560821767,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1526169600000,
+    Boston__yhat: 1.6695326494114453,
+    Boston__yhat_lower: 1.5459475971457444,
+    Boston__yhat_upper: 1.7950395799251673,
+    Boston: null,
+    California__yhat: 1.611624016941807,
+    California__yhat_lower: 1.458822882360371,
+    California__yhat_upper: 1.7587381622248586,
+    California: null,
+    WestTexNewMexico__yhat: 1.24801357713029,
+    WestTexNewMexico__yhat_lower: 1.095791907249141,
+    WestTexNewMexico__yhat_upper: 1.4187654522268498,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1526774400000,
+    Boston__yhat: 1.6952782619161684,
+    Boston__yhat_lower: 1.5846747431630068,
+    Boston__yhat_upper: 1.808599838384513,
+    Boston: null,
+    California__yhat: 1.6529694297425044,
+    California__yhat_lower: 1.4947904634826412,
+    California__yhat_upper: 1.805281327291899,
+    California: null,
+    WestTexNewMexico__yhat: 1.2657324831260757,
+    WestTexNewMexico__yhat_lower: 1.0916527617406069,
+    WestTexNewMexico__yhat_upper: 1.4262057072494774,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1527379200000,
+    Boston__yhat: 1.7146649368168043,
+    Boston__yhat_lower: 1.6036192075126363,
+    Boston__yhat_upper: 1.8320676234749995,
+    Boston: null,
+    California__yhat: 1.6799197400033026,
+    California__yhat_lower: 1.536795089675873,
+    California__yhat_upper: 1.8364148218420857,
+    California: null,
+    WestTexNewMexico__yhat: 1.2728989667058002,
+    WestTexNewMexico__yhat_lower: 1.1027680803304138,
+    WestTexNewMexico__yhat_upper: 1.4256330558513326,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1527984000000,
+    Boston__yhat: 1.7231845757821997,
+    Boston__yhat_lower: 1.6114211589061664,
+    Boston__yhat_upper: 1.8399473046932247,
+    Boston: null,
+    California__yhat: 1.687126504560837,
+    California__yhat_lower: 1.5206803552553565,
+    California__yhat_upper: 1.840568971602508,
+    California: null,
+    WestTexNewMexico__yhat: 1.2494226379667293,
+    WestTexNewMexico__yhat_lower: 1.0819385143193307,
+    WestTexNewMexico__yhat_upper: 1.4094953369349135,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1528588800000,
+    Boston__yhat: 1.7338736339181342,
+    Boston__yhat_lower: 1.624738247956961,
+    Boston__yhat_upper: 1.8600523588665385,
+    Boston: null,
+    California__yhat: 1.6818587206457696,
+    California__yhat_lower: 1.5238919914790512,
+    California__yhat_upper: 1.8359970540337893,
+    California: null,
+    WestTexNewMexico__yhat: 1.2082943772394181,
+    WestTexNewMexico__yhat_lower: 1.0433278198687912,
+    WestTexNewMexico__yhat_upper: 1.3775340586041351,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1529193600000,
+    Boston__yhat: 1.7582239199775676,
+    Boston__yhat_lower: 1.6392421463550373,
+    Boston__yhat_upper: 1.8744063811638438,
+    Boston: null,
+    California__yhat: 1.6824892628983004,
+    California__yhat_lower: 1.5270216934691514,
+    California__yhat_upper: 1.8355198991696158,
+    California: null,
+    WestTexNewMexico__yhat: 1.1949458431792086,
+    WestTexNewMexico__yhat_lower: 1.0326445933404091,
+    WestTexNewMexico__yhat_upper: 1.3582577205018647,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1529798400000,
+    Boston__yhat: 1.7854556021975714,
+    Boston__yhat_lower: 1.6701615867157495,
+    Boston__yhat_upper: 1.900992088604064,
+    Boston: null,
+    California__yhat: 1.7084141969678435,
+    California__yhat_lower: 1.550680184855059,
+    California__yhat_upper: 1.8697836855064995,
+    California: null,
+    WestTexNewMexico__yhat: 1.2480042263351998,
+    WestTexNewMexico__yhat_lower: 1.090434590083466,
+    WestTexNewMexico__yhat_upper: 1.424659399835797,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1530403200000,
+    Boston__yhat: 1.787354789852457,
+    Boston__yhat_lower: 1.6666480384188682,
+    Boston__yhat_upper: 1.9098732988582017,
+    Boston: null,
+    California__yhat: 1.764902407737053,
+    California__yhat_lower: 1.603223194893655,
+    California__yhat_upper: 1.920536350083403,
+    California: null,
+    WestTexNewMexico__yhat: 1.3575978077726572,
+    WestTexNewMexico__yhat_lower: 1.1882370626482208,
+    WestTexNewMexico__yhat_upper: 1.5259537413667061,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1531008000000,
+    Boston__yhat: 1.7468288679117425,
+    Boston__yhat_lower: 1.6269731637634024,
+    Boston__yhat_upper: 1.8742304717717988,
+    Boston: null,
+    California__yhat: 1.8350920426745763,
+    California__yhat_lower: 1.67180866418075,
+    California__yhat_upper: 2.0011556756788216,
+    California: null,
+    WestTexNewMexico__yhat: 1.4670856851172,
+    WestTexNewMexico__yhat_lower: 1.2964805935023214,
+    WestTexNewMexico__yhat_upper: 1.6345585674318333,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1531612800000,
+    Boston__yhat: 1.6790348325378448,
+    Boston__yhat_lower: 1.5595355918151659,
+    Boston__yhat_upper: 1.7981872661345062,
+    Boston: null,
+    California__yhat: 1.8896488936902816,
+    California__yhat_lower: 1.7312414010981845,
+    California__yhat_upper: 2.04742067910337,
+    California: null,
+    WestTexNewMexico__yhat: 1.5219801642499642,
+    WestTexNewMexico__yhat_lower: 1.3635554462698278,
+    WestTexNewMexico__yhat_upper: 1.6938078169246442,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1532217600000,
+    Boston__yhat: 1.6203830503925176,
+    Boston__yhat_lower: 1.4939148373489748,
+    Boston__yhat_upper: 1.7384178215507446,
+    Boston: null,
+    California__yhat: 1.9094868020939566,
+    California__yhat_lower: 1.7497539530943758,
+    California__yhat_upper: 2.066749203202386,
+    California: null,
+    WestTexNewMexico__yhat: 1.518353366307308,
+    WestTexNewMexico__yhat_lower: 1.3460315664515903,
+    WestTexNewMexico__yhat_upper: 1.6719233663023574,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1532822400000,
+    Boston__yhat: 1.5966181353875348,
+    Boston__yhat_lower: 1.4815110953922874,
+    Boston__yhat_upper: 1.7116303325920141,
+    Boston: null,
+    California__yhat: 1.9020960586545756,
+    California__yhat_lower: 1.7292057167448445,
+    California__yhat_upper: 2.059778801012867,
+    California: null,
+    WestTexNewMexico__yhat: 1.500722239431866,
+    WestTexNewMexico__yhat_lower: 1.3231682157027853,
+    WestTexNewMexico__yhat_upper: 1.666981600036425,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1533427200000,
+    Boston__yhat: 1.6043495104079866,
+    Boston__yhat_lower: 1.4840413633118215,
+    Boston__yhat_upper: 1.7221108099336726,
+    Boston: null,
+    California__yhat: 1.8948656849707521,
+    California__yhat_lower: 1.7377559285072435,
+    California__yhat_upper: 2.046199710416158,
+    California: null,
+    WestTexNewMexico__yhat: 1.5126502837159261,
+    WestTexNewMexico__yhat_lower: 1.348984942633407,
+    WestTexNewMexico__yhat_upper: 1.6787393215108342,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1534032000000,
+    Boston__yhat: 1.6235344564929182,
+    Boston__yhat_lower: 1.5088248982582535,
+    Boston__yhat_upper: 1.7493554888388345,
+    Boston: null,
+    California__yhat: 1.909902264089578,
+    California__yhat_lower: 1.7594830495975537,
+    California__yhat_upper: 2.0814790534495446,
+    California: null,
+    WestTexNewMexico__yhat: 1.5543880317362218,
+    WestTexNewMexico__yhat_lower: 1.3862928701653126,
+    WestTexNewMexico__yhat_upper: 1.7129273819479778,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1534636800000,
+    Boston__yhat: 1.6422721302404755,
+    Boston__yhat_lower: 1.5227340881288312,
+    Boston__yhat_upper: 1.7661948982300177,
+    Boston: null,
+    California__yhat: 1.9440191472850012,
+    California__yhat_lower: 1.7912658142139328,
+    California__yhat_upper: 2.1017712195687297,
+    California: null,
+    WestTexNewMexico__yhat: 1.5927167828625721,
+    WestTexNewMexico__yhat_lower: 1.4323724913431777,
+    WestTexNewMexico__yhat_upper: 1.7602140326496742,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1535241600000,
+    Boston__yhat: 1.663333153399757,
+    Boston__yhat_lower: 1.53999712206972,
+    Boston__yhat_upper: 1.7784281978322263,
+    Boston: null,
+    California__yhat: 1.973841750021734,
+    California__yhat_lower: 1.8101188114604603,
+    California__yhat_upper: 2.1242592035994017,
+    California: null,
+    WestTexNewMexico__yhat: 1.6082103462185078,
+    WestTexNewMexico__yhat_lower: 1.4521998997210814,
+    WestTexNewMexico__yhat_upper: 1.787305638512403,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1535846400000,
+    Boston__yhat: 1.68737589422853,
+    Boston__yhat_lower: 1.5546423881129967,
+    Boston__yhat_upper: 1.81339631040741,
+    Boston: null,
+    California__yhat: 1.9811962739192248,
+    California__yhat_lower: 1.8227510534530427,
+    California__yhat_upper: 2.1315985558632846,
+    California: null,
+    WestTexNewMexico__yhat: 1.6226614752470665,
+    WestTexNewMexico__yhat_lower: 1.4555221188950995,
+    WestTexNewMexico__yhat_upper: 1.7886204690874181,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1536451200000,
+    Boston__yhat: 1.698231894874985,
+    Boston__yhat_lower: 1.5796838319630206,
+    Boston__yhat_upper: 1.8162324829522731,
+    Boston: null,
+    California__yhat: 1.9729323635080123,
+    California__yhat_lower: 1.808535742832015,
+    California__yhat_upper: 2.133577781410305,
+    California: null,
+    WestTexNewMexico__yhat: 1.6733686994910637,
+    WestTexNewMexico__yhat_lower: 1.502944700626823,
+    WestTexNewMexico__yhat_upper: 1.8462362904169698,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1537056000000,
+    Boston__yhat: 1.673177148894755,
+    Boston__yhat_lower: 1.5453764645693406,
+    Boston__yhat_upper: 1.7925862861000987,
+    Boston: null,
+    California__yhat: 1.9744328609957065,
+    California__yhat_lower: 1.806134310310026,
+    California__yhat_upper: 2.1143435664934134,
+    California: null,
+    WestTexNewMexico__yhat: 1.7636853647310433,
+    WestTexNewMexico__yhat_lower: 1.5994080499191776,
+    WestTexNewMexico__yhat_upper: 1.9276560344065194,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1537660800000,
+    Boston__yhat: 1.6090525676489444,
+    Boston__yhat_lower: 1.4758075734046576,
+    Boston__yhat_upper: 1.7415461464646478,
+    Boston: null,
+    California__yhat: 2.002890676494782,
+    California__yhat_lower: 1.8393829384321998,
+    California__yhat_upper: 2.167554310098903,
+    California: null,
+    WestTexNewMexico__yhat: 1.8480377771380128,
+    WestTexNewMexico__yhat_lower: 1.6833511313602927,
+    WestTexNewMexico__yhat_upper: 2.0203956302646664,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1538265600000,
+    Boston__yhat: 1.5332238629414716,
+    Boston__yhat_lower: 1.395745532771652,
+    Boston__yhat_upper: 1.6594122074424231,
+    Boston: null,
+    California__yhat: 2.04750780058125,
+    California__yhat_lower: 1.8862667773178747,
+    California__yhat_upper: 2.1964678624483946,
+    California: null,
+    WestTexNewMexico__yhat: 1.871203717593608,
+    WestTexNewMexico__yhat_lower: 1.7079822731597716,
+    WestTexNewMexico__yhat_upper: 2.0301687351484716,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1538870400000,
+    Boston__yhat: 1.4838235218338653,
+    Boston__yhat_lower: 1.342874791691052,
+    Boston__yhat_upper: 1.6153763350017596,
+    Boston: null,
+    California__yhat: 2.077120900334973,
+    California__yhat_lower: 1.9153457544393646,
+    California__yhat_upper: 2.2257915381404114,
+    California: null,
+    WestTexNewMexico__yhat: 1.82041781992544,
+    WestTexNewMexico__yhat_lower: 1.6611091710560477,
+    WestTexNewMexico__yhat_upper: 1.9861967842346009,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1539475200000,
+    Boston__yhat: 1.4782598065971189,
+    Boston__yhat_lower: 1.344299563230488,
+    Boston__yhat_upper: 1.6120885230403785,
+    Boston: null,
+    California__yhat: 2.0680763229686003,
+    California__yhat_lower: 1.9058339107657098,
+    California__yhat_upper: 2.2271524402751357,
+    California: null,
+    WestTexNewMexico__yhat: 1.7347888113423426,
+    WestTexNewMexico__yhat_lower: 1.5635904551430955,
+    WestTexNewMexico__yhat_upper: 1.9156528167964688,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1540080000000,
+    Boston__yhat: 1.5019076277701395,
+    Boston__yhat_lower: 1.3599533884699693,
+    Boston__yhat_upper: 1.6280806469131115,
+    Boston: null,
+    California__yhat: 2.024848167646863,
+    California__yhat_lower: 1.8751718922611667,
+    California__yhat_upper: 2.181285898190137,
+    California: null,
+    WestTexNewMexico__yhat: 1.6642517414081586,
+    WestTexNewMexico__yhat_lower: 1.5057398973441602,
+    WestTexNewMexico__yhat_upper: 1.8294977831848556,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1540684800000,
+    Boston__yhat: 1.5261445315121063,
+    Boston__yhat_lower: 1.3842621727623396,
+    Boston__yhat_upper: 1.6621117556669727,
+    Boston: null,
+    California__yhat: 1.9734463765925931,
+    California__yhat_lower: 1.8088818677515675,
+    California__yhat_upper: 2.126982970675845,
+    California: null,
+    WestTexNewMexico__yhat: 1.6241900952059145,
+    WestTexNewMexico__yhat_lower: 1.4588876582071624,
+    WestTexNewMexico__yhat_upper: 1.784631618531262,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1541289600000,
+    Boston__yhat: 1.5342292058778846,
+    Boston__yhat_lower: 1.4009158870039455,
+    Boston__yhat_upper: 1.6712593477153987,
+    Boston: null,
+    California__yhat: 1.9349431912143948,
+    California__yhat_lower: 1.7885852175115098,
+    California__yhat_upper: 2.0873085211178646,
+    California: null,
+    WestTexNewMexico__yhat: 1.5920988447021243,
+    WestTexNewMexico__yhat_lower: 1.4263832621800148,
+    WestTexNewMexico__yhat_upper: 1.7531828975557295,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1541894400000,
+    Boston__yhat: 1.5294259663392042,
+    Boston__yhat_lower: 1.3924842007891862,
+    Boston__yhat_upper: 1.6507958373495442,
+    Boston: null,
+    California__yhat: 1.9057390728545534,
+    California__yhat_lower: 1.7475197483489708,
+    California__yhat_upper: 2.062712581571349,
+    California: null,
+    WestTexNewMexico__yhat: 1.543019079828916,
+    WestTexNewMexico__yhat_lower: 1.3695776164214464,
+    WestTexNewMexico__yhat_upper: 1.7087815320271016,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1542499200000,
+    Boston__yhat: 1.5230698969360126,
+    Boston__yhat_lower: 1.3809557482614745,
+    Boston__yhat_upper: 1.6589456998839296,
+    Boston: null,
+    California__yhat: 1.8637296678057955,
+    California__yhat_lower: 1.7018053289953212,
+    California__yhat_upper: 2.0257018609379758,
+    California: null,
+    WestTexNewMexico__yhat: 1.4799169293082408,
+    WestTexNewMexico__yhat_lower: 1.3145794440516334,
+    WestTexNewMexico__yhat_upper: 1.6522485434508896,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1543104000000,
+    Boston__yhat: 1.5208708829546633,
+    Boston__yhat_lower: 1.3604336968511885,
+    Boston__yhat_upper: 1.6609428389714096,
+    Boston: null,
+    California__yhat: 1.7936602026704043,
+    California__yhat_lower: 1.6379951921970646,
+    California__yhat_upper: 1.95152165636367,
+    California: null,
+    WestTexNewMexico__yhat: 1.4272257196828566,
+    WestTexNewMexico__yhat_lower: 1.272152994358733,
+    WestTexNewMexico__yhat_upper: 1.5868498721646007,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1543708800000,
+    Boston__yhat: 1.5215185621542675,
+    Boston__yhat_lower: 1.3697927259578533,
+    Boston__yhat_upper: 1.660287494127729,
+    Boston: null,
+    California__yhat: 1.7064731067231154,
+    California__yhat_lower: 1.5520676677402718,
+    California__yhat_upper: 1.8660397663631223,
+    California: null,
+    WestTexNewMexico__yhat: 1.400927639683618,
+    WestTexNewMexico__yhat_lower: 1.2311493844093724,
+    WestTexNewMexico__yhat_upper: 1.5721726483927894,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1544313600000,
+    Boston__yhat: 1.523082324505037,
+    Boston__yhat_lower: 1.3798605288416401,
+    Boston__yhat_upper: 1.6595545690681865,
+    Boston: null,
+    California__yhat: 1.63369712167469,
+    California__yhat_lower: 1.4812445505442762,
+    California__yhat_upper: 1.7895227430485967,
+    California: null,
+    WestTexNewMexico__yhat: 1.3924891998114304,
+    WestTexNewMexico__yhat_lower: 1.224927064552775,
+    WestTexNewMexico__yhat_upper: 1.5600454611520078,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1544918400000,
+    Boston__yhat: 1.5252374178893244,
+    Boston__yhat_lower: 1.3735876009017964,
+    Boston__yhat_upper: 1.6817643418736,
+    Boston: null,
+    California__yhat: 1.6018360669178997,
+    California__yhat_lower: 1.4448200304166305,
+    California__yhat_upper: 1.7653214982115613,
+    California: null,
+    WestTexNewMexico__yhat: 1.382668428202286,
+    WestTexNewMexico__yhat_lower: 1.2250854001550213,
+    WestTexNewMexico__yhat_upper: 1.5513127466776713,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1545523200000,
+    Boston__yhat: 1.5257009332678877,
+    Boston__yhat_lower: 1.373769486453698,
+    Boston__yhat_upper: 1.6777290304954673,
+    Boston: null,
+    California__yhat: 1.6101959065128604,
+    California__yhat_lower: 1.4485481898012444,
+    California__yhat_upper: 1.760224378777222,
+    California: null,
+    WestTexNewMexico__yhat: 1.3648297759239376,
+    WestTexNewMexico__yhat_lower: 1.1991014099251225,
+    WestTexNewMexico__yhat_upper: 1.5411049951690883,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1546128000000,
+    Boston__yhat: 1.519710895215176,
+    Boston__yhat_lower: 1.3633919544653097,
+    Boston__yhat_upper: 1.6659978660046513,
+    Boston: null,
+    California__yhat: 1.6319769496654943,
+    California__yhat_lower: 1.473710017010973,
+    California__yhat_upper: 1.791109895570328,
+    California: null,
+    WestTexNewMexico__yhat: 1.3494376178076892,
+    WestTexNewMexico__yhat_lower: 1.185383822109829,
+    WestTexNewMexico__yhat_upper: 1.532570105602063,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1546732800000,
+    Boston__yhat: 1.506436772565979,
+    Boston__yhat_lower: 1.355182359220297,
+    Boston__yhat_upper: 1.6593106513749971,
+    Boston: null,
+    California__yhat: 1.637152076200478,
+    California__yhat_lower: 1.4890084905935133,
+    California__yhat_upper: 1.805162095435664,
+    California: null,
+    WestTexNewMexico__yhat: 1.3471836387407383,
+    WestTexNewMexico__yhat_lower: 1.180741288403578,
+    WestTexNewMexico__yhat_upper: 1.5169593922257443,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1547337600000,
+    Boston__yhat: 1.493855241350894,
+    Boston__yhat_lower: 1.3402894910848755,
+    Boston__yhat_upper: 1.6502490151569948,
+    Boston: null,
+    California__yhat: 1.6165918986195917,
+    California__yhat_lower: 1.452717878742141,
+    California__yhat_upper: 1.7835907868934933,
+    California: null,
+    WestTexNewMexico__yhat: 1.3535250210168848,
+    WestTexNewMexico__yhat_lower: 1.1910941101898465,
+    WestTexNewMexico__yhat_upper: 1.5258253127470764,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1547942400000,
+    Boston__yhat: 1.4930213841534519,
+    Boston__yhat_lower: 1.32522086851355,
+    Boston__yhat_upper: 1.6395141150072567,
+    Boston: null,
+    California__yhat: 1.5868263660723425,
+    California__yhat_lower: 1.4139977641298356,
+    California__yhat_upper: 1.7378668908798396,
+    California: null,
+    WestTexNewMexico__yhat: 1.3530714721722696,
+    WestTexNewMexico__yhat_lower: 1.184666913955583,
+    WestTexNewMexico__yhat_upper: 1.5365947930677417,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1548547200000,
+    Boston__yhat: 1.5064260868778963,
+    Boston__yhat_lower: 1.349421678738668,
+    Boston__yhat_upper: 1.6717312468069758,
+    Boston: null,
+    California__yhat: 1.5728369500849846,
+    California__yhat_lower: 1.4078403234125212,
+    California__yhat_upper: 1.7232456421219013,
+    California: null,
+    WestTexNewMexico__yhat: 1.3371545702180658,
+    WestTexNewMexico__yhat_lower: 1.1688412736364369,
+    WestTexNewMexico__yhat_upper: 1.5027118067203777,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1549152000000,
+    Boston__yhat: 1.5247372779721031,
+    Boston__yhat_lower: 1.3626664019808368,
+    Boston__yhat_upper: 1.6814205406438416,
+    Boston: null,
+    California__yhat: 1.5856049867860793,
+    California__yhat_lower: 1.4318586175955552,
+    California__yhat_upper: 1.7445240758791,
+    California: null,
+    WestTexNewMexico__yhat: 1.3135544611621512,
+    WestTexNewMexico__yhat_lower: 1.1563716592544324,
+    WestTexNewMexico__yhat_upper: 1.475000207389841,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1549756800000,
+    Boston__yhat: 1.5372085738904104,
+    Boston__yhat_lower: 1.3646353055360099,
+    Boston__yhat_upper: 1.6996311340505321,
+    Boston: null,
+    California__yhat: 1.614619447033503,
+    California__yhat_lower: 1.4504777711726042,
+    California__yhat_upper: 1.7634410984148907,
+    California: null,
+    WestTexNewMexico__yhat: 1.2984131725315775,
+    WestTexNewMexico__yhat_lower: 1.1291455665989898,
+    WestTexNewMexico__yhat_upper: 1.464210408267379,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1550361600000,
+    Boston__yhat: 1.5437612828919351,
+    Boston__yhat_lower: 1.3714524418064908,
+    Boston__yhat_upper: 1.7050010452983988,
+    Boston: null,
+    California__yhat: 1.6407248315679368,
+    California__yhat_lower: 1.4791106123785347,
+    California__yhat_upper: 1.795498975466594,
+    California: null,
+    WestTexNewMexico__yhat: 1.3005896332658433,
+    WestTexNewMexico__yhat_lower: 1.1293433646870712,
+    WestTexNewMexico__yhat_upper: 1.4725109599593378,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1550966400000,
+    Boston__yhat: 1.553849796800034,
+    Boston__yhat_lower: 1.3933386147660276,
+    Boston__yhat_upper: 1.7212149787623847,
+    Boston: null,
+    California__yhat: 1.6556818697074631,
+    California__yhat_lower: 1.4986915548656765,
+    California__yhat_upper: 1.8167106850243597,
+    California: null,
+    WestTexNewMexico__yhat: 1.3146671428439285,
+    WestTexNewMexico__yhat_lower: 1.1499214021686772,
+    WestTexNewMexico__yhat_upper: 1.476282980039059,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1551571200000,
+    Boston__yhat: 1.5735220492749673,
+    Boston__yhat_lower: 1.39545277676677,
+    Boston__yhat_upper: 1.7405658280486025,
+    Boston: null,
+    California__yhat: 1.6692539026026865,
+    California__yhat_lower: 1.5070879158371504,
+    California__yhat_upper: 1.829855566706541,
+    California: null,
+    WestTexNewMexico__yhat: 1.3273697319920155,
+    WestTexNewMexico__yhat_lower: 1.1685181880635562,
+    WestTexNewMexico__yhat_upper: 1.5115103975610973,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1552176000000,
+    Boston__yhat: 1.5970706588853314,
+    Boston__yhat_lower: 1.4072734746191229,
+    Boston__yhat_upper: 1.7662443556254754,
+    Boston: null,
+    California__yhat: 1.6973629782335624,
+    California__yhat_lower: 1.5391932795723466,
+    California__yhat_upper: 1.8666554141457992,
+    California: null,
+    WestTexNewMexico__yhat: 1.3291860136148679,
+    WestTexNewMexico__yhat_lower: 1.146719318199386,
+    WestTexNewMexico__yhat_upper: 1.49430539305963,
+    WestTexNewMexico: null,
+  },
+  {
+    __timestamp: 1552780800000,
+    Boston__yhat: 1.6137166198890966,
+    Boston__yhat_lower: 1.435877479880376,
+    Boston__yhat_upper: 1.7773653706454762,
+    Boston: null,
+    California__yhat: 1.7434026274449044,
+    California__yhat_lower: 1.5808874223569025,
+    California__yhat_upper: 1.9029919670638462,
+    California: null,
+    WestTexNewMexico__yhat: 1.3211623123534868,
+    WestTexNewMexico__yhat_lower: 1.1561589813319189,
+    WestTexNewMexico__yhat_upper: 1.4849083926875184,
+    WestTexNewMexico: null,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx
new file mode 100644
index 0000000..cfca835
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx
@@ -0,0 +1,118 @@
+import React from 'react';
+import memoizeOne from 'memoize-one';
+import { withKnobs, number, boolean } from '@storybook/addon-knobs';
+import { SuperChart } from '@superset-ui/core';
+import TableChartPlugin, { TableChartProps } from '@superset-ui/plugin-chart-table/src';
+import { basicFormData, basicData, birthNames } from './testData';
+import { withResizableChartDemo } from '../../../shared/components/ResizableChartDemo';
+
+export default {
+  title: 'Chart Plugins|plugin-chart-table',
+  decorators: [withKnobs, withResizableChartDemo],
+};
+
+new TableChartPlugin().configure({ key: 'table' }).register();
+
+function expandArray<T>(input: T[], targetSize: number) {
+  if (!input || input.length === 0) {
+    throw new Error('Cannot expand an empty array');
+  }
+  let arr = input;
+  while (arr.length < targetSize) {
+    arr = arr.concat(arr);
+  }
+  return arr.slice(0, targetSize);
+}
+
+// memoize expanded array so to make sure we always return the same
+// data when changing page sizes
+const expandRecords = memoizeOne(expandArray);
+const expandColumns = memoizeOne(expandArray);
+
+/**
+ * Load sample data for testing
+ * @param props the original props passed to SuperChart
+ * @param pageLength number of records perpage
+ * @param rows the target number of records
+ * @param cols the target number of columns
+ */
+function loadData(
+  props: TableChartProps,
+  {
+    pageLength = 50,
+    rows = 1042,
+    cols = 8,
+    alignPn = false,
+    showCellBars = true,
+    includeSearch = true,
+  },
+): TableChartProps {
+  if (!props.queriesData || !props.queriesData[0]) return props;
+  const records = props.queriesData?.[0].data || [];
+  const columns = props.queriesData?.[0].colnames || [];
+  return {
+    ...props,
+    queriesData: [
+      {
+        ...props.queriesData[0],
+        data: expandRecords(records, rows),
+        colnames: expandColumns(columns, cols),
+      },
+    ],
+    formData: {
+      ...props.formData,
+      align_pn: alignPn,
+      page_length: pageLength,
+      show_cell_bars: showCellBars,
+      include_search: includeSearch,
+    },
+    height: window.innerHeight - 130,
+  };
+}
+
+export const basic = ({ width, height }) => (
+  <SuperChart
+    chartType="table"
+    datasource={{
+      columnFormats: {},
+    }}
+    width={width}
+    height={height}
+    queriesData={[{ data: basicData }]}
+    formData={basicFormData}
+  />
+);
+basic.story = {
+  parameters: {
+    initialSize: {
+      width: 680,
+      height: 420,
+    },
+  },
+};
+
+export const BigTable = ({ width, height }) => {
+  const rows = number('Records', 2046, { range: true, min: 0, max: 50000 });
+  const cols = number('Columns', 8, { range: true, min: 1, max: 20 });
+  const pageLength = number('Page size', 50, { range: true, min: 0, max: 100 });
+  const includeSearch = boolean('Include search', true);
+  const alignPn = boolean('Algin PosNeg', false);
+  const showCellBars = boolean('Show Cell Bars', true);
+  const chartProps = loadData(birthNames, {
+    pageLength,
+    rows,
+    cols,
+    alignPn,
+    showCellBars,
+    includeSearch,
+  });
+  return <SuperChart chartType="table" {...chartProps} width={width} height={height} />;
+};
+BigTable.story = {
+  parameters: {
+    initialSize: {
+      width: 620,
+      height: 440,
+    },
+  },
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json
new file mode 100644
index 0000000..456d8cf
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json
@@ -0,0 +1,13356 @@
+{
+  "disableErrorBoundary": true,
+  "id": "chart-id-86",
+  "className": "superset-chart-table",
+  "chartType": "table",
+  "width": 616,
+  "height": 632.1,
+  "datasource": {
+    "id": 3,
+    "column_formats": {},
+    "description": null,
+    "database": {
+      "id": 1,
+      "name": "examples",
+      "backend": "postgresql",
+      "allow_multi_schema_metadata_fetch": false,
+      "allows_subquery": true,
+      "allows_cost_estimate": null,
+      "allows_virtual_table_explore": true,
+      "explore_database_id": 1
+    },
+    "default_endpoint": null,
+    "filter_select": true,
+    "filter_select_enabled": true,
+    "name": "birth_names",
+    "datasource_name": "birth_names",
+    "table_name": "birth_names",
+    "type": "table",
+    "schema": null,
+    "offset": 0,
+    "cache_timeout": null,
+    "params": null,
+    "perm": "[examples].[birth_names](id:3)",
+    "edit_url": "/tablemodelview/edit/3",
+    "sql": null,
+    "columns": [
+      {
+        "id": 332,
+        "column_name": "ds",
+        "verbose_name": null,
+        "description": null,
+        "expression": null,
+        "filterable": true,
+        "groupby": true,
+        "is_dttm": true,
+        "type": "TIMESTAMP WITHOUT TIME ZONE",
+        "python_date_format": null
+      },
+      {
+        "id": 333,
+        "column_name": "gender",
+        "verbose_name": null,
+        "description": null,
+        "expression": null,
+        "filterable": true,
+        "groupby": true,
+        "is_dttm": false,
+        "type": "VARCHAR(16)",
+        "python_date_format": null
+      },
+      {
+        "id": 334,
+        "column_name": "name",
+        "verbose_name": null,
+        "description": null,
+        "expression": null,
+        "filterable": true,
+        "groupby": true,
+        "is_dttm": false,
+        "type": "VARCHAR(255)",
+        "python_date_format": null
+      },
+      {
+        "id": 335,
+        "column_name": "num",
+        "verbose_name": null,
+        "description": null,
+        "expression": null,
+        "filterable": true,
+        "groupby": true,
+        "is_dttm": false,
+        "type": "BIGINT",
+        "python_date_format": null
+      },
+      {
+        "id": 336,
+        "column_name": "state",
+        "verbose_name": null,
+        "description": null,
+        "expression": null,
+        "filterable": true,
+        "groupby": true,
+        "is_dttm": false,
+        "type": "VARCHAR(10)",
+        "python_date_format": null
+      },
+      {
+        "id": 337,
+        "column_name": "num_boys",
+        "verbose_name": null,
+        "description": null,
+        "expression": null,
+        "filterable": true,
+        "groupby": true,
+        "is_dttm": false,
+        "type": "BIGINT",
+        "python_date_format": null
+      },
+      {
+        "id": 338,
+        "column_name": "num_girls",
+        "verbose_name": null,
+        "description": null,
+        "expression": null,
+        "filterable": true,
+        "groupby": true,
+        "is_dttm": false,
+        "type": "BIGINT",
+        "python_date_format": null
+      },
+      {
+        "id": 339,
+        "column_name": "num_california",
+        "verbose_name": null,
+        "description": null,
+        "expression": "CASE WHEN state = 'CA' THEN num ELSE 0 END",
+        "filterable": true,
+        "groupby": true,
+        "is_dttm": false,
+        "type": null,
+        "python_date_format": null
+      }
+    ],
+    "metrics": [
+      {
+        "is_certified": false,
+        "certified_by": null,
+        "certification_details": null,
+        "id": 9,
+        "metric_name": "count",
+        "verbose_name": "COUNT(*)",
+        "description": null,
+        "expression": "COUNT(*)",
+        "warning_text": null,
+        "d3format": null
+      },
+      {
+        "is_certified": false,
+        "certified_by": null,
+        "certification_details": null,
+        "id": 10,
+        "metric_name": "sum__num",
+        "verbose_name": null,
+        "description": null,
+        "expression": "SUM(num)",
+        "warning_text": null,
+        "d3format": null
+      }
+    ],
+    "order_by_choices": [
+      ["[\"ds\", true]", "ds [asc]"],
+      ["[\"ds\", false]", "ds [desc]"],
+      ["[\"gender\", true]", "gender [asc]"],
+      ["[\"gender\", false]", "gender [desc]"],
+      ["[\"name\", true]", "name [asc]"],
+      ["[\"name\", false]", "name [desc]"],
+      ["[\"num\", true]", "num [asc]"],
+      ["[\"num\", false]", "num [desc]"],
+      ["[\"num_boys\", true]", "num_boys [asc]"],
+      ["[\"num_boys\", false]", "num_boys [desc]"],
+      ["[\"num_california\", true]", "num_california [asc]"],
+      ["[\"num_california\", false]", "num_california [desc]"],
+      ["[\"num_girls\", true]", "num_girls [asc]"],
+      ["[\"num_girls\", false]", "num_girls [desc]"],
+      ["[\"state\", true]", "state [asc]"],
+      ["[\"state\", false]", "state [desc]"]
+    ],
+    "owners": [],
+    "verbose_map": {
+      "__timestamp": "Time",
+      "count": "COUNT(*)",
+      "sum__num": "sum__num",
+      "ds": "ds",
+      "gender": "gender",
+      "name": "name",
+      "num": "num",
+      "state": "state",
+      "num_boys": "num_boys",
+      "num_girls": "num_girls",
+      "num_california": "num_california"
+    },
+    "select_star": "SELECT *\nFROM birth_names\nLIMIT 100",
+    "granularity_sqla": [["ds", "ds"]],
+    "time_grain_sqla": [
+      [null, "Time Column"],
+      ["PT1S", "second"],
+      ["PT1M", "minute"],
+      ["PT1H", "hour"],
+      ["P1D", "day"],
+      ["P1W", "week"],
+      ["P1M", "month"],
+      ["P0.25Y", "quarter"],
+      ["P1Y", "year"]
+    ],
+    "main_dttm_col": "ds",
+    "fetch_values_predicate": null,
+    "template_params": null,
+    "is_sqllab_view": false,
+    "health_check_message": null
+  },
+  "initialValues": {},
+  "formData": {
+    "datasource": "3__table",
+    "viz_type": "table",
+    "slice_id": 86,
+    "include_search": true,
+    "url_params": {},
+    "granularity_sqla": "ds",
+    "time_grain_sqla": "P0.25Y",
+    "time_range": "No filter",
+    "query_mode": "aggregate",
+    "groupby": ["state", "gender", "name"],
+    "metrics": [
+      "sum__num",
+      {
+        "aggregate": "SUM",
+        "column": {
+          "column_name": "num_girls",
+          "description": null,
+          "expression": null,
+          "filterable": true,
+          "groupby": true,
+          "id": 338,
+          "is_dttm": false,
+          "python_date_format": null,
+          "type": "BIGINT",
+          "verbose_name": null
+        },
+        "expressionType": "SIMPLE",
+        "hasCustomLabel": false,
+        "isNew": false,
+        "label": "SUM(num_girls)",
+        "optionName": "metric_xsmc8k1wo5e_euwhnr1wac7",
+        "sqlExpression": null
+      },
+      {
+        "aggregate": "SUM",
+        "column": {
+          "column_name": "num_boys",
+          "description": null,
+          "expression": null,
+          "filterable": true,
+          "groupby": true,
+          "id": 337,
+          "is_dttm": false,
+          "python_date_format": null,
+          "type": "BIGINT",
+          "verbose_name": null
+        },
+        "expressionType": "SIMPLE",
+        "hasCustomLabel": false,
+        "isNew": false,
+        "label": "SUM(num_boys)",
+        "optionName": "metric_ab6i6wwdg2_ev872k5w1fo",
+        "sqlExpression": null
+      }
+    ],
+    "all_columns": [],
+    "percent_metrics": [
+      "sum__num",
+      {
+        "aggregate": "SUM",
+        "column": {
+          "column_name": "num_girls",
+          "description": null,
+          "expression": null,
+          "filterable": true,
+          "groupby": true,
+          "id": 338,
+          "is_dttm": false,
+          "python_date_format": null,
+          "type": "BIGINT",
+          "verbose_name": null
+        },
+        "expressionType": "SIMPLE",
+        "hasCustomLabel": false,
+        "isNew": false,
+        "label": "SUM(num_girls)",
+        "optionName": "metric_9whr8bvg81_nae91j1dut",
+        "sqlExpression": null
+      },
+      {
+        "aggregate": "SUM",
+        "column": {
+          "column_name": "num_boys",
+          "description": null,
+          "expression": null,
+          "filterable": true,
+          "groupby": true,
+          "id": 337,
+          "is_dttm": false,
+          "python_date_format": null,
+          "type": "BIGINT",
+          "verbose_name": null
+        },
+        "expressionType": "SIMPLE",
+        "hasCustomLabel": true,
+        "isNew": false,
+        "label": "pct_boys",
+        "optionName": "metric_escshgd3oqb_uyb4l5xgfj",
+        "sqlExpression": null
+      }
+    ],
+    "order_by_cols": [],
+    "row_limit": 1000,
+    "include_time": true,
+    "order_desc": true,
+    "adhoc_filters": [],
+    "table_timestamp_format": "smart_date",
+    "color_pn": true,
+    "show_cell_bars": true
+  },
+  "hooks": {},
+  "queriesData": [
+    {
+      "cache_key": "075757ce3bdc03cb01d368afd6f48c6c",
+      "cached_dttm": "2021-01-09T08:29:43",
+      "cache_timeout": 600,
+      "annotation_data": {},
+      "error": null,
+      "is_cached": true,
+      "query": "SELECT DATE_TRUNC('quarter', ds) AS __timestamp,\n       state AS state,\n       gender AS gender,\n       name AS name,\n       SUM(num) AS sum__num,\n       sum(num_girls) AS \"SUM(num_girls)\",\n       sum(num_boys) AS \"SUM(num_boys)\",\n       sum(num_boys) AS pct_boys\nFROM birth_names\nGROUP BY state,\n         gender,\n         name,\n         DATE_TRUNC('quarter', ds)\nLIMIT 1000",
+      "status": "success",
+      "stacktrace": null,
+      "rowcount": 1000,
+      "colnames": [
+        "__timestamp",
+        "state",
+        "gender",
+        "name",
+        "sum__num",
+        "SUM(num_girls)",
+        "SUM(num_boys)",
+        "pct_boys",
+        "% sum__num",
+        "% SUM(num_girls)",
+        "% pct_boys"
+      ],
+      "coltypes": [2, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0],
+      "data": [
+        {
+          "__timestamp": 252460800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "<a href=\"http://superset.apache.org\" style=\"color: red;\">Juan</a>",
+          "sum__num": 149,
+          "SUM(num_girls)": -5120,
+          "SUM(num_boys)": 149,
+          "pct_boys": 149,
+          "% sum__num": 0.00013234268762240587,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002305791250063835
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Timothy <img width=\"30\" height=\"30\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z/C/HgAGgwJ/lK3Q6wAAAABJRU5ErkJggg==\">",
+          "sum__num": 243,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 243,
+          "pct_boys": 243,
+          "% sum__num": 0.00021583404759895725,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00037604515017819587
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Morgan",
+          "sum__num": 396,
+          "SUM(num_girls)": 396,
+          "SUM(num_boys)": -100,
+          "pct_boys": 0,
+          "% sum__num": 0.00035172955905015253,
+          "% SUM(num_girls)": 0.0008255744622299683,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Morgan",
+          "sum__num": 421,
+          "SUM(num_girls)": 421,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003739347079800864,
+          "% SUM(num_girls)": 0.0008776940621182239,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Cody",
+          "sum__num": 569,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 569,
+          "pct_boys": 569,
+          "% sum__num": 0.000505389189645295,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008805337055612899
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Richard",
+          "sum__num": 974,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 974,
+          "pct_boys": 974,
+          "% sum__num": 0.0008651126023102237,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015072756225249498
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Christian",
+          "sum__num": 166,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 166,
+          "pct_boys": 166,
+          "% sum__num": 0.0001474421888947609,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00025688681040979635
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 1038,
+          "SUM(num_girls)": 1038,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009219577835708544,
+          "% SUM(num_girls)": 0.0021640057873603714,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 450,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 450,
+          "pct_boys": 450,
+          "% sum__num": 0.0003996926807388097,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006963799077373998
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 1084,
+          "SUM(num_girls)": 1084,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009628152576019327,
+          "% SUM(num_girls)": 0.0022599058511547617,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Laura",
+          "sum__num": 589,
+          "SUM(num_girls)": 589,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005231533087892421,
+          "% SUM(num_girls)": 0.0012279377733673013,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Nathaniel",
+          "sum__num": 108,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 108,
+          "pct_boys": 108,
+          "% sum__num": 0.00009592624337731433,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00016713117785697594
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Emily",
+          "sum__num": 957,
+          "SUM(num_girls)": 957,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008500131010378687,
+          "% SUM(num_girls)": 0.0019951382837224236,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Jesus",
+          "sum__num": 1013,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1013,
+          "pct_boys": 1013,
+          "% sum__num": 0.0008997526346409205,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001567628547862191
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Carrie",
+          "sum__num": 593,
+          "SUM(num_girls)": 593,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005267061326180315,
+          "% SUM(num_girls)": 0.0012362769093494223,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Daniel",
+          "sum__num": 785,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 785,
+          "pct_boys": 785,
+          "% sum__num": 0.0006972416763999236,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012147960612752418
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Christine",
+          "sum__num": 342,
+          "SUM(num_girls)": 342,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003037664373614954,
+          "% SUM(num_girls)": 0.0007129961264713363,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Debra",
+          "sum__num": 244,
+          "SUM(num_girls)": 244,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002167222535561546,
+          "% SUM(num_girls)": 0.0005086872949093744,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Carlos",
+          "sum__num": 449,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 449,
+          "pct_boys": 449,
+          "% sum__num": 0.00039880447478161235,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006948323968313167
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 822,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 822,
+          "pct_boys": 822,
+          "% sum__num": 0.0007301052968162258,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012720539648003169
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Andrea",
+          "sum__num": 592,
+          "SUM(num_girls)": 592,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005258179266608342,
+          "% SUM(num_girls)": 0.001234192125353892,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Robin",
+          "sum__num": 186,
+          "SUM(num_girls)": 186,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000165206308038708,
+          "% SUM(num_girls)": 0.0003877698231686215,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Vincent",
+          "sum__num": 717,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 717,
+          "pct_boys": 717,
+          "% sum__num": 0.0006368436713105035,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011095653196615902
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Benjamin",
+          "sum__num": 337,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 337,
+          "pct_boys": 337,
+          "% sum__num": 0.00029932540757550863,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005215111753500083
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Erica",
+          "sum__num": 355,
+          "SUM(num_girls)": 355,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000315313114805061,
+          "% SUM(num_girls)": 0.0007400983184132292,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Brian",
+          "sum__num": 2016,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2016,
+          "pct_boys": 2016,
+          "% sum__num": 0.0017906232097098676,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.003119781986663551
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Charles",
+          "sum__num": 1609,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1609,
+          "pct_boys": 1609,
+          "% sum__num": 0.001429123385130544,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002489945047887725
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Courtney",
+          "sum__num": 262,
+          "SUM(num_girls)": 262,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00023270996078570699,
+          "% SUM(num_girls)": 0.0005462134068289185,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Lauren",
+          "sum__num": 577,
+          "SUM(num_girls)": 577,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005124948373028738,
+          "% SUM(num_girls)": 0.0012029203654209386,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Angela",
+          "sum__num": 215,
+          "SUM(num_girls)": 215,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001909642807974313,
+          "% SUM(num_girls)": 0.000448228559038998,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Erica",
+          "sum__num": 134,
+          "SUM(num_girls)": 134,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011901959826444556,
+          "% SUM(num_girls)": 0.0002793610554010499,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Shawn",
+          "sum__num": 472,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 472,
+          "pct_boys": 472,
+          "% sum__num": 0.0004192332117971515,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007304251476712283
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Sean",
+          "sum__num": 317,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 317,
+          "pct_boys": 317,
+          "% sum__num": 0.0002815612884315615,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004905609572283461
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Theresa",
+          "sum__num": 802,
+          "SUM(num_girls)": 802,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007123411776722786,
+          "% SUM(num_girls)": 0.001671996764415239,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Brianna",
+          "sum__num": 109,
+          "SUM(num_girls)": 109,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00009681444933451168,
+          "% SUM(num_girls)": 0.00022724145551279433,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Richard",
+          "sum__num": 207,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 207,
+          "pct_boys": 207,
+          "% sum__num": 0.00018385863313985246,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003203347575592039
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 288,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 288,
+          "pct_boys": 288,
+          "% sum__num": 0.0002558033156728382,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004456831409519359
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Jacqueline",
+          "sum__num": 189,
+          "SUM(num_girls)": 189,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00016787092591030007,
+          "% SUM(num_girls)": 0.00039402417515521215,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Justin",
+          "sum__num": 406,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 406,
+          "pct_boys": 406,
+          "% sum__num": 0.0003606116186221261,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006282894278697429
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Ian",
+          "sum__num": 169,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 169,
+          "pct_boys": 169,
+          "% sum__num": 0.00015010680676635297,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002615293431280457
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Alicia",
+          "sum__num": 199,
+          "SUM(num_girls)": 199,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00017675298548227363,
+          "% SUM(num_girls)": 0.0004148720151105144,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 1679,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1679,
+          "pct_boys": 1679,
+          "% sum__num": 0.0014912978021343589,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0025982708113135426
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 789,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 789,
+          "pct_boys": 789,
+          "% sum__num": 0.0007007945002287131,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012209861048995743
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "David",
+          "sum__num": 4059,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 4059,
+          "pct_boys": 4059,
+          "% sum__num": 0.003605227980264064,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.006281346767791346
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 10946,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 10946,
+          "pct_boys": 10946,
+          "% sum__num": 0.009722302407482246,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.016939054377985728
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Donald",
+          "sum__num": 400,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 400,
+          "pct_boys": 400,
+          "% sum__num": 0.000355282382878942,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006190043624332443
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Chad",
+          "sum__num": 201,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 201,
+          "pct_boys": 201,
+          "% sum__num": 0.00017852939739666833,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003110496921227052
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jerry",
+          "sum__num": 55,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 55,
+          "pct_boys": 55,
+          "% sum__num": 0.00004885132764585452,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00008511309983457108
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Antonio",
+          "sum__num": 222,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 222,
+          "pct_boys": 222,
+          "% sum__num": 0.0001971817224978128,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00034354742115045054
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Adrian",
+          "sum__num": 158,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 158,
+          "pct_boys": 158,
+          "% sum__num": 0.00014033654123718207,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002445067231611315
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Pamela",
+          "sum__num": 966,
+          "SUM(num_girls)": 966,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008580069546526448,
+          "% SUM(num_girls)": 0.0020139013396821954,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Bradley",
+          "sum__num": 287,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 287,
+          "pct_boys": 287,
+          "% sum__num": 0.00025491510971564085,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00044413563004585275
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 1358,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1358,
+          "pct_boys": 1358,
+          "% sum__num": 0.001206183689874008,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0021015198104608643
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Gregory",
+          "sum__num": 632,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 632,
+          "pct_boys": 632,
+          "% sum__num": 0.0005613461649487283,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000978026892644526
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Victoria",
+          "sum__num": 2197,
+          "SUM(num_girls)": 2197,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0019513884879625888,
+          "% SUM(num_girls)": 0.0045802704381799,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Jose",
+          "sum__num": 712,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 712,
+          "pct_boys": 712,
+          "% sum__num": 0.0006324026415245167,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011018277651311747
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Sherry",
+          "sum__num": 151,
+          "SUM(num_girls)": 151,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001341190995368006,
+          "% SUM(num_girls)": 0.0003148023833250637,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Stacey",
+          "sum__num": 157,
+          "SUM(num_girls)": 157,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00013944833527998474,
+          "% SUM(num_girls)": 0.000327311087298245,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Craig",
+          "sum__num": 222,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 222,
+          "pct_boys": 222,
+          "% sum__num": 0.0001971817224978128,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00034354742115045054
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Kenneth",
+          "sum__num": 811,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 811,
+          "pct_boys": 811,
+          "% sum__num": 0.0007203350312870549,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012550313448334027
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Nicholas",
+          "sum__num": 941,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 941,
+          "pct_boys": 941,
+          "% sum__num": 0.0008358018057227109,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001456207762624207
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Patricia",
+          "sum__num": 138,
+          "SUM(num_girls)": 138,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00012257242209323498,
+          "% SUM(num_girls)": 0.0002877001913831708,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Dawn",
+          "sum__num": 400,
+          "SUM(num_girls)": 400,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000355282382878942,
+          "% SUM(num_girls)": 0.0008339135982120893,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Juan",
+          "sum__num": 184,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 184,
+          "pct_boys": 184,
+          "% sum__num": 0.0001634298961243133,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002847420067192924
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Emily",
+          "sum__num": 172,
+          "SUM(num_girls)": 172,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00015277142463794504,
+          "% SUM(num_girls)": 0.00035858284723119837,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "David",
+          "sum__num": 15547,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 15547,
+          "pct_boys": 15547,
+          "% sum__num": 0.013808938016547277,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.02405915205687412
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Teresa",
+          "sum__num": 4880,
+          "SUM(num_girls)": 4880,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.004334445071123092,
+          "% SUM(num_girls)": 0.01017374589818749,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Joshua",
+          "sum__num": 1288,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1288,
+          "pct_boys": 1288,
+          "% sum__num": 0.001144009272870193,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0019931940470350466
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Linda",
+          "sum__num": 456,
+          "SUM(num_girls)": 456,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00040502191648199385,
+          "% SUM(num_girls)": 0.0009506615019617817,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Benjamin",
+          "sum__num": 651,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 651,
+          "pct_boys": 651,
+          "% sum__num": 0.0005782220781354781,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001007429599860105
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Kristen",
+          "sum__num": 288,
+          "SUM(num_girls)": 288,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002558033156728382,
+          "% SUM(num_girls)": 0.0006004177907127043,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Steven",
+          "sum__num": 956,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 956,
+          "pct_boys": 956,
+          "% sum__num": 0.0008491248950806713,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014794204262154537
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Brooke",
+          "sum__num": 133,
+          "SUM(num_girls)": 133,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011813139230724821,
+          "% SUM(num_girls)": 0.00027727627140551966,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Vanessa",
+          "sum__num": 252,
+          "SUM(num_girls)": 252,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00022382790121373345,
+          "% SUM(num_girls)": 0.0005253655668736163,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Dennis",
+          "sum__num": 227,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 227,
+          "pct_boys": 227,
+          "% sum__num": 0.00020162275228379956,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003512849756808661
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Elizabeth",
+          "sum__num": 7393,
+          "SUM(num_girls)": 7393,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.006566506641560045,
+          "% SUM(num_girls)": 0.01541280807895494,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Angela",
+          "sum__num": 511,
+          "SUM(num_girls)": 511,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00045387324412784834,
+          "% SUM(num_girls)": 0.001065324621715944,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jason",
+          "sum__num": 254,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 254,
+          "pct_boys": 254,
+          "% sum__num": 0.00022560431312812815,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003930677701451101
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Caleb",
+          "sum__num": 351,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 351,
+          "pct_boys": 351,
+          "% sum__num": 0.00031176029097627157,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005431763280351719
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Michele",
+          "sum__num": 165,
+          "SUM(num_girls)": 165,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00014655398293756357,
+          "% SUM(num_girls)": 0.0003439893592624868,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Brittany",
+          "sum__num": 2421,
+          "SUM(num_girls)": 2421,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0021503466223747963,
+          "% SUM(num_girls)": 0.00504726205317867,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Tara",
+          "sum__num": 146,
+          "SUM(num_girls)": 146,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001296780697508138,
+          "% SUM(num_girls)": 0.0003043784633474126,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Tina",
+          "sum__num": 177,
+          "SUM(num_girls)": 177,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00015721245442393183,
+          "% SUM(num_girls)": 0.00036900676720884947,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Maria",
+          "sum__num": 252,
+          "SUM(num_girls)": 252,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00022382790121373345,
+          "% SUM(num_girls)": 0.0005253655668736163,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 8976,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 8976,
+          "pct_boys": 8976,
+          "% sum__num": 0.007972536671803457,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.013890457893002
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Eric",
+          "sum__num": 742,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 742,
+          "pct_boys": 742,
+          "% sum__num": 0.0006590488202404374,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011482530923136681
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 258,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 258,
+          "pct_boys": 258,
+          "% sum__num": 0.00022915713695691758,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00039925781376944254
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Logan",
+          "sum__num": 484,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 484,
+          "pct_boys": 484,
+          "% sum__num": 0.0004298916832835198,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007489952785442256
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Bradley",
+          "sum__num": 351,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 351,
+          "pct_boys": 351,
+          "% sum__num": 0.00031176029097627157,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005431763280351719
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Sean",
+          "sum__num": 354,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 354,
+          "pct_boys": 354,
+          "% sum__num": 0.00031442490884786366,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005478188607534212
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Catherine",
+          "sum__num": 144,
+          "SUM(num_girls)": 144,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001279016578364191,
+          "% SUM(num_girls)": 0.00030020889535635215,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Shane",
+          "sum__num": 200,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 200,
+          "pct_boys": 200,
+          "% sum__num": 0.000177641191439471,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00030950218121662213
+        },
+        {
+          "__timestamp": 0,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Douglas",
+          "sum__num": 628,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 628,
+          "pct_boys": 628,
+          "% sum__num": 0.0005577933411199389,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009718368490201935
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Laura",
+          "sum__num": 556,
+          "SUM(num_girls)": 556,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004938425122017294,
+          "% SUM(num_girls)": 0.001159139901514804,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 461,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 461,
+          "pct_boys": 461,
+          "% sum__num": 0.0004094629462679806,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000713402527704314
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Alexandra",
+          "sum__num": 429,
+          "SUM(num_girls)": 429,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003810403556376653,
+          "% SUM(num_girls)": 0.0008943723340824657,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Monica",
+          "sum__num": 474,
+          "SUM(num_girls)": 474,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00042100962371154624,
+          "% SUM(num_girls)": 0.0009881876138813257,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Lisa",
+          "sum__num": 6862,
+          "SUM(num_girls)": 6862,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.006094869278288249,
+          "% SUM(num_girls)": 0.014305787777328391,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Sydney",
+          "sum__num": 148,
+          "SUM(num_girls)": 148,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00013145448166520854,
+          "% SUM(num_girls)": 0.000308548031338473,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Brandon",
+          "sum__num": 1192,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1192,
+          "pct_boys": 1192,
+          "% sum__num": 0.001058741500979247,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001844633000051068
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Carlos",
+          "sum__num": 917,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 917,
+          "pct_boys": 917,
+          "% sum__num": 0.0008144848627499744,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014190675008782124
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Melissa",
+          "sum__num": 722,
+          "SUM(num_girls)": 722,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006412847010964902,
+          "% SUM(num_girls)": 0.001505214044772821,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Abigail",
+          "sum__num": 683,
+          "SUM(num_girls)": 683,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006066446687657934,
+          "% SUM(num_girls)": 0.0014239074689471425,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 175,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 175,
+          "pct_boys": 175,
+          "% sum__num": 0.0001554360425095371,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00027081440856454436
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Cody",
+          "sum__num": 1489,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1489,
+          "pct_boys": 1489,
+          "% sum__num": 0.0013225386702668614,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0023042437391577516
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Dylan",
+          "sum__num": 354,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 354,
+          "pct_boys": 354,
+          "% sum__num": 0.00031442490884786366,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005478188607534212
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Carlos",
+          "sum__num": 184,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 184,
+          "pct_boys": 184,
+          "% sum__num": 0.0001634298961243133,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002847420067192924
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Antonio",
+          "sum__num": 320,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 320,
+          "pct_boys": 320,
+          "% sum__num": 0.0002842259063031536,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004952034899465954
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Jacqueline",
+          "sum__num": 583,
+          "SUM(num_girls)": 583,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005178240730460579,
+          "% SUM(num_girls)": 0.00121542906939412,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Zachary",
+          "sum__num": 63,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 63,
+          "pct_boys": 63,
+          "% sum__num": 0.00005595697530343336,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00009749318708323597
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Savannah",
+          "sum__num": 159,
+          "SUM(num_girls)": 159,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00014122474719437944,
+          "% SUM(num_girls)": 0.0003314806552893055,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Randy",
+          "sum__num": 143,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 143,
+          "pct_boys": 143,
+          "% sum__num": 0.00012701345187922174,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00022129405956988483
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 329,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 329,
+          "pct_boys": 329,
+          "% sum__num": 0.00029221975991792977,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005091310881013434
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Monica",
+          "sum__num": 125,
+          "SUM(num_girls)": 125,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011102574464966936,
+          "% SUM(num_girls)": 0.0002605979994412779,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Maria",
+          "sum__num": 1695,
+          "SUM(num_girls)": 1695,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0015055090974495167,
+          "% SUM(num_girls)": 0.0035337088724237283,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Chelsea",
+          "sum__num": 321,
+          "SUM(num_girls)": 321,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002851141122603509,
+          "% SUM(num_girls)": 0.0006692156625652016,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Angela",
+          "sum__num": 1350,
+          "SUM(num_girls)": 1350,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.001199078042216429,
+          "% SUM(num_girls)": 0.002814458393965801,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Angela",
+          "sum__num": 626,
+          "SUM(num_girls)": 626,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005560169292055442,
+          "% SUM(num_girls)": 0.0013050747812019196,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Joshua",
+          "sum__num": 1762,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1762,
+          "pct_boys": 1762,
+          "% sum__num": 0.0015650188965817395,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002726714216518441
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Shannon",
+          "sum__num": 1035,
+          "SUM(num_girls)": 1035,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009192931656992623,
+          "% SUM(num_girls)": 0.0021577514353737807,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Lisa",
+          "sum__num": 501,
+          "SUM(num_girls)": 501,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004449911845558748,
+          "% SUM(num_girls)": 0.0010444767817606418,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Dawn",
+          "sum__num": 775,
+          "SUM(num_girls)": 775,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006883596168279501,
+          "% SUM(num_girls)": 0.001615707596535923,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Haley",
+          "sum__num": 410,
+          "SUM(num_girls)": 410,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003641644424509155,
+          "% SUM(num_girls)": 0.0008547614381673915,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Sarah",
+          "sum__num": 1596,
+          "SUM(num_girls)": 1596,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0014175767076869785,
+          "% SUM(num_girls)": 0.003327315256866236,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Jacqueline",
+          "sum__num": 1225,
+          "SUM(num_girls)": 1225,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010880522975667598,
+          "% SUM(num_girls)": 0.002553860394524523,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Luke",
+          "sum__num": 4838,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 4838,
+          "pct_boys": 4838,
+          "% sum__num": 0.004297140420920803,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.007486857763630089
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Daniel",
+          "sum__num": 4160,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 4160,
+          "pct_boys": 4160,
+          "% sum__num": 0.0036949367819409966,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00643764536930574
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Diane",
+          "sum__num": 13,
+          "SUM(num_girls)": 13,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000011546677443565614,
+          "% SUM(num_girls)": 0.0000271021919418929,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Kristin",
+          "sum__num": 142,
+          "SUM(num_girls)": 142,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001261252459220244,
+          "% SUM(num_girls)": 0.00029603932736529167,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Samantha",
+          "sum__num": 9710,
+          "SUM(num_girls)": 9710,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.008624479844386317,
+          "% SUM(num_girls)": 0.020243252596598465,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Lauren",
+          "sum__num": 124,
+          "SUM(num_girls)": 124,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011013753869247201,
+          "% SUM(num_girls)": 0.00025851321544574765,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Wendy",
+          "sum__num": 86,
+          "SUM(num_girls)": 86,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00007638571231897252,
+          "% SUM(num_girls)": 0.00017929142361559918,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Patricia",
+          "sum__num": 1117,
+          "SUM(num_girls)": 1117,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009921260541894455,
+          "% SUM(num_girls)": 0.002328703723007259,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Luke",
+          "sum__num": 154,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 154,
+          "pct_boys": 154,
+          "% sum__num": 0.00013678371740839267,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00023831667953679904
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Rhonda",
+          "sum__num": 737,
+          "SUM(num_girls)": 737,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006546077904544506,
+          "% SUM(num_girls)": 0.0015364858047057744,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Patricia",
+          "sum__num": 507,
+          "SUM(num_girls)": 507,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00045032042029905894,
+          "% SUM(num_girls)": 0.001056985485733823,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Angel",
+          "sum__num": 562,
+          "SUM(num_girls)": 562,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004991717479449134,
+          "% SUM(num_girls)": 0.0011716486054879854,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Cameron",
+          "sum__num": 425,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 425,
+          "pct_boys": 425,
+          "% sum__num": 0.0003774875318088758,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000657692135085322
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Allison",
+          "sum__num": 129,
+          "SUM(num_girls)": 129,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011457856847845879,
+          "% SUM(num_girls)": 0.0002689371354233988,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Derek",
+          "sum__num": 182,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 182,
+          "pct_boys": 182,
+          "% sum__num": 0.0001616534842099186,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00028164698490712616
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Timothy",
+          "sum__num": 985,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 985,
+          "pct_boys": 985,
+          "% sum__num": 0.0008748828678393946,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001524298242491864
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Andrew",
+          "sum__num": 711,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 711,
+          "pct_boys": 711,
+          "% sum__num": 0.0006315144355673193,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011002802542250916
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Courtney",
+          "sum__num": 215,
+          "SUM(num_girls)": 215,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001909642807974313,
+          "% SUM(num_girls)": 0.000448228559038998,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Stephanie",
+          "sum__num": 312,
+          "SUM(num_girls)": 312,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00027712025864557474,
+          "% SUM(num_girls)": 0.0006504526066054297,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Christina",
+          "sum__num": 723,
+          "SUM(num_girls)": 723,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006421729070536876,
+          "% SUM(num_girls)": 0.0015072988287683513,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Mason",
+          "sum__num": 103,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 103,
+          "pct_boys": 103,
+          "% sum__num": 0.00009148521359132756,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0001593936233265604
+        },
+        {
+          "__timestamp": 0,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Stacy",
+          "sum__num": 202,
+          "SUM(num_girls)": 202,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001794176033538657,
+          "% SUM(num_girls)": 0.00042112636709710507,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Nathaniel",
+          "sum__num": 175,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 175,
+          "pct_boys": 175,
+          "% sum__num": 0.0001554360425095371,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00027081440856454436
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Brittany",
+          "sum__num": 410,
+          "SUM(num_girls)": 410,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003641644424509155,
+          "% SUM(num_girls)": 0.0008547614381673915,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Madison",
+          "sum__num": 1011,
+          "SUM(num_girls)": 1011,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008979762227265258,
+          "% SUM(num_girls)": 0.0021077166194810554,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Nancy",
+          "sum__num": 662,
+          "SUM(num_girls)": 662,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000587992343664649,
+          "% SUM(num_girls)": 0.0013801270050410076,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Donna",
+          "sum__num": 9,
+          "SUM(num_girls)": 9,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000007993853614776194,
+          "% SUM(num_girls)": 0.00001876305595977201,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Bradley",
+          "sum__num": 309,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 309,
+          "pct_boys": 309,
+          "% sum__num": 0.00027445564077398265,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00047818086997968116
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Andrew",
+          "sum__num": 792,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 792,
+          "pct_boys": 792,
+          "% sum__num": 0.0007034591181003051,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012256286376178236
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Ryan",
+          "sum__num": 1572,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1572,
+          "pct_boys": 1572,
+          "% sum__num": 0.001396259764714242,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00243268714436265
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Gabriel",
+          "sum__num": 297,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 297,
+          "pct_boys": 297,
+          "% sum__num": 0.0002637971692876144,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00045961073910668384
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 337,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 337,
+          "pct_boys": 337,
+          "% sum__num": 0.00029932540757550863,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005215111753500083
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Julia",
+          "sum__num": 119,
+          "SUM(num_girls)": 119,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00010569650890648523,
+          "% SUM(num_girls)": 0.00024808929546809655,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Diane",
+          "sum__num": 318,
+          "SUM(num_girls)": 318,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002824494943887589,
+          "% SUM(num_girls)": 0.000662961310578611,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Hunter",
+          "sum__num": 372,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 372,
+          "pct_boys": 372,
+          "% sum__num": 0.000330412616077416,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005756740570629172
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Andrea",
+          "sum__num": 416,
+          "SUM(num_girls)": 416,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00036949367819409966,
+          "% SUM(num_girls)": 0.0008672701421405728,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Troy",
+          "sum__num": 261,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 261,
+          "pct_boys": 261,
+          "% sum__num": 0.00023182175482850962,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004039003464876919
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Lauren",
+          "sum__num": 125,
+          "SUM(num_girls)": 125,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011102574464966936,
+          "% SUM(num_girls)": 0.0002605979994412779,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Julia",
+          "sum__num": 109,
+          "SUM(num_girls)": 109,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00009681444933451168,
+          "% SUM(num_girls)": 0.00022724145551279433,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Kathryn",
+          "sum__num": 1166,
+          "SUM(num_girls)": 1166,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010356481460921157,
+          "% SUM(num_girls)": 0.00243085813878824,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Laura",
+          "sum__num": 967,
+          "SUM(num_girls)": 967,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008588951606098422,
+          "% SUM(num_girls)": 0.0020159861236777256,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Alex",
+          "sum__num": 471,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 471,
+          "pct_boys": 471,
+          "% sum__num": 0.00041834500583995415,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007288776367651451
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Haley",
+          "sum__num": 225,
+          "SUM(num_girls)": 225,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00019984634036940486,
+          "% SUM(num_girls)": 0.0004690763989943002,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "William",
+          "sum__num": 1062,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1062,
+          "pct_boys": 1062,
+          "% sum__num": 0.0009432747265435909,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0016434565822602634
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Cynthia",
+          "sum__num": 163,
+          "SUM(num_girls)": 163,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00014477757102316884,
+          "% SUM(num_girls)": 0.00033981979127142636,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Jacob",
+          "sum__num": 520,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 520,
+          "pct_boys": 520,
+          "% sum__num": 0.00046186709774262457,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008047056711632175
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Megan",
+          "sum__num": 351,
+          "SUM(num_girls)": 351,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00031176029097627157,
+          "% SUM(num_girls)": 0.0007317591824311083,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 534,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 534,
+          "pct_boys": 534,
+          "% sum__num": 0.0004743019811433875,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008263708238483811
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Ryan",
+          "sum__num": 418,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 418,
+          "pct_boys": 418,
+          "% sum__num": 0.0003712700901084944,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006468595587427403
+        },
+        {
+          "__timestamp": 0,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Dana",
+          "sum__num": 433,
+          "SUM(num_girls)": 433,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003845931794664547,
+          "% SUM(num_girls)": 0.0009027114700645866,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 416,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 416,
+          "pct_boys": 416,
+          "% sum__num": 0.00036949367819409966,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000643764536930574
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Sara",
+          "sum__num": 195,
+          "SUM(num_girls)": 195,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001732001616534842,
+          "% SUM(num_girls)": 0.0004065328791283935,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Dawn",
+          "sum__num": 9,
+          "SUM(num_girls)": 9,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000007993853614776194,
+          "% SUM(num_girls)": 0.00001876305595977201,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Alexander",
+          "sum__num": 606,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 606,
+          "pct_boys": 606,
+          "% sum__num": 0.000538252810061597,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000937791609086365
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Samantha",
+          "sum__num": 2338,
+          "SUM(num_girls)": 2338,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0020766255279274157,
+          "% SUM(num_girls)": 0.004874224981549662,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "George",
+          "sum__num": 139,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 139,
+          "pct_boys": 139,
+          "% sum__num": 0.00012346062805043234,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00021510401594555237
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Steven",
+          "sum__num": 236,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 236,
+          "pct_boys": 236,
+          "% sum__num": 0.00020961660589857576,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00036521257383561413
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 606,
+          "SUM(num_girls)": 606,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000538252810061597,
+          "% SUM(num_girls)": 0.0012633791012913152,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Kimberly",
+          "sum__num": 1717,
+          "SUM(num_girls)": 1717,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0015250496285078585,
+          "% SUM(num_girls)": 0.003579574120325393,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Gregory",
+          "sum__num": 826,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 826,
+          "pct_boys": 826,
+          "% sum__num": 0.0007336581206450151,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012782440084246494
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Lindsey",
+          "sum__num": 163,
+          "SUM(num_girls)": 163,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00014477757102316884,
+          "% SUM(num_girls)": 0.00033981979127142636,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Danielle",
+          "sum__num": 376,
+          "SUM(num_girls)": 376,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00033396543990620546,
+          "% SUM(num_girls)": 0.0007838787823193639,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Austin",
+          "sum__num": 148,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 148,
+          "pct_boys": 148,
+          "% sum__num": 0.00013145448166520854,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00022903161410030038
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Stephen",
+          "sum__num": 620,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 620,
+          "pct_boys": 620,
+          "% sum__num": 0.00055068769346236,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009594567617715286
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Nicholas",
+          "sum__num": 87,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 87,
+          "pct_boys": 87,
+          "% sum__num": 0.00007727391827616988,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00013463344882923061
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Cassandra",
+          "sum__num": 315,
+          "SUM(num_girls)": 315,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002797848765171668,
+          "% SUM(num_girls)": 0.0006567069585920203,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Noah",
+          "sum__num": 253,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 253,
+          "pct_boys": 253,
+          "% sum__num": 0.0002247161071709308,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00039152025923902697
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Carlos",
+          "sum__num": 809,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 809,
+          "pct_boys": 809,
+          "% sum__num": 0.0007185586193726601,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012519363230212364
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Kaitlyn",
+          "sum__num": 14,
+          "SUM(num_girls)": 14,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000012434883400762968,
+          "% SUM(num_girls)": 0.000029186975937423125,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Heather",
+          "sum__num": 474,
+          "SUM(num_girls)": 474,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00042100962371154624,
+          "% SUM(num_girls)": 0.0009881876138813257,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 2118,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2118,
+          "pct_boys": 2118,
+          "% sum__num": 0.0018812202173439977,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.003277628099084028
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "George",
+          "sum__num": 211,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 211,
+          "pct_boys": 211,
+          "% sum__num": 0.0001874114569686419,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00032652480118353636
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Tyler",
+          "sum__num": 9805,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 9805,
+          "pct_boys": 9805,
+          "% sum__num": 0.008708859410320065,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.015173344434144899
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Madison",
+          "sum__num": 681,
+          "SUM(num_girls)": 681,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006048682568513987,
+          "% SUM(num_girls)": 0.001419737900956082,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Douglas",
+          "sum__num": 2399,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2399,
+          "pct_boys": 2399,
+          "% sum__num": 0.0021308060913164542,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0037124786636933823
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Victoria",
+          "sum__num": 366,
+          "SUM(num_girls)": 366,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00032508338033423193,
+          "% SUM(num_girls)": 0.0007630309423640616,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Taylor",
+          "sum__num": 1478,
+          "SUM(num_girls)": 1478,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0013127684047376906,
+          "% SUM(num_girls)": 0.00308131074539367,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Anthony",
+          "sum__num": 977,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 977,
+          "pct_boys": 977,
+          "% sum__num": 0.0008677772201818157,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001511918155243199
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Ashley",
+          "sum__num": 544,
+          "SUM(num_girls)": 544,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004831840407153611,
+          "% SUM(num_girls)": 0.0011341224935684413,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Nancy",
+          "sum__num": 895,
+          "SUM(num_girls)": 895,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007949443316916326,
+          "% SUM(num_girls)": 0.0018658816759995497,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Brenda",
+          "sum__num": 1784,
+          "SUM(num_girls)": 1784,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0015845594276400813,
+          "% SUM(num_girls)": 0.003719254648025918,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Brianna",
+          "sum__num": 491,
+          "SUM(num_girls)": 491,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004361091249839013,
+          "% SUM(num_girls)": 0.0010236289418053396,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Margaret",
+          "sum__num": 362,
+          "SUM(num_girls)": 362,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00032153055650544247,
+          "% SUM(num_girls)": 0.0007546918063819408,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Teresa",
+          "sum__num": 260,
+          "SUM(num_girls)": 260,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00023093354887131228,
+          "% SUM(num_girls)": 0.000542043838837858,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Madison",
+          "sum__num": 201,
+          "SUM(num_girls)": 201,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00017852939739666833,
+          "% SUM(num_girls)": 0.0004190415831015748,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Charles",
+          "sum__num": 360,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 360,
+          "pct_boys": 360,
+          "% sum__num": 0.0003197541445910478,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005571039261899198
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Dawn",
+          "sum__num": 2514,
+          "SUM(num_girls)": 2514,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0022329497763941505,
+          "% SUM(num_girls)": 0.005241146964762981,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jared",
+          "sum__num": 141,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 141,
+          "pct_boys": 141,
+          "% sum__num": 0.00012523703996482704,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00021819903775771859
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 541,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 541,
+          "pct_boys": 541,
+          "% sum__num": 0.000480519422843769,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008372034001909628
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Monica",
+          "sum__num": 175,
+          "SUM(num_girls)": 175,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001554360425095371,
+          "% SUM(num_girls)": 0.00036483719921778904,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Jason",
+          "sum__num": 1599,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1599,
+          "pct_boys": 1599,
+          "% sum__num": 0.0014202413255585706,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002474469938826894
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "John",
+          "sum__num": 3226,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 3226,
+          "pct_boys": 3226,
+          "% sum__num": 0.002865352417918667,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.004992270183024115
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Brittany",
+          "sum__num": 895,
+          "SUM(num_girls)": 895,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007949443316916326,
+          "% SUM(num_girls)": 0.0018658816759995497,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 866,
+          "SUM(num_girls)": 866,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007691863589329094,
+          "% SUM(num_girls)": 0.0018054229401291732,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Katherine",
+          "sum__num": 280,
+          "SUM(num_girls)": 280,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00024869766801525935,
+          "% SUM(num_girls)": 0.0005837395187484625,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Adam",
+          "sum__num": 802,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 802,
+          "pct_boys": 802,
+          "% sum__num": 0.0007123411776722786,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012411037466786548
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Denise",
+          "sum__num": 280,
+          "SUM(num_girls)": 280,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00024869766801525935,
+          "% SUM(num_girls)": 0.0005837395187484625,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Dylan",
+          "sum__num": 218,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 218,
+          "pct_boys": 218,
+          "% sum__num": 0.00019362889866902336,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003373573775261181
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "John",
+          "sum__num": 675,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 675,
+          "pct_boys": 675,
+          "% sum__num": 0.0005995390211082145,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0010445698616060996
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Nicholas",
+          "sum__num": 207,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 207,
+          "pct_boys": 207,
+          "% sum__num": 0.00018385863313985246,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003203347575592039
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "John",
+          "sum__num": 1003,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1003,
+          "pct_boys": 1003,
+          "% sum__num": 0.000890870575068947,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00155215343880136
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Cindy",
+          "sum__num": 404,
+          "SUM(num_girls)": 404,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003588352067077314,
+          "% SUM(num_girls)": 0.0008422527341942101,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Crystal",
+          "sum__num": 303,
+          "SUM(num_girls)": 303,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002691264050307985,
+          "% SUM(num_girls)": 0.0006316895506456576,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Patricia",
+          "sum__num": 293,
+          "SUM(num_girls)": 293,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000260244345458825,
+          "% SUM(num_girls)": 0.0006108417106903554,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Eric",
+          "sum__num": 1430,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1430,
+          "pct_boys": 1430,
+          "% sum__num": 0.0012701345187922175,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0022129405956988484
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Cody",
+          "sum__num": 235,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 235,
+          "pct_boys": 235,
+          "% sum__num": 0.0002087283999413784,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000363665062929531
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Jose",
+          "sum__num": 300,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 300,
+          "pct_boys": 300,
+          "% sum__num": 0.0002664617871592065,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004642532718249332
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "William",
+          "sum__num": 2203,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2203,
+          "pct_boys": 2203,
+          "% sum__num": 0.001956717723705773,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0034091665261010927
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Tiffany",
+          "sum__num": 954,
+          "SUM(num_girls)": 954,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008473484831662766,
+          "% SUM(num_girls)": 0.001988883931735833,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Sandra",
+          "sum__num": 371,
+          "SUM(num_girls)": 371,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003295244101202187,
+          "% SUM(num_girls)": 0.0007734548623417128,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Joshua",
+          "sum__num": 853,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 853,
+          "pct_boys": 853,
+          "% sum__num": 0.0007576396814893437,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0013200268028888934
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Nathaniel",
+          "sum__num": 255,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 255,
+          "pct_boys": 255,
+          "% sum__num": 0.00022649251908532552,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003946152810511932
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Lisa",
+          "sum__num": 403,
+          "SUM(num_girls)": 403,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00035794700075053403,
+          "% SUM(num_girls)": 0.0008401679501986799,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Kimberly",
+          "sum__num": 1606,
+          "SUM(num_girls)": 1606,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.001426458767258952,
+          "% SUM(num_girls)": 0.003348163096821538,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Nathan",
+          "sum__num": 513,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 513,
+          "pct_boys": 513,
+          "% sum__num": 0.0004556496560422431,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007938730948206358
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 1767,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1767,
+          "pct_boys": 1767,
+          "% sum__num": 0.001569459926367726,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0027344517710488564
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Corey",
+          "sum__num": 142,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 142,
+          "pct_boys": 142,
+          "% sum__num": 0.0001261252459220244,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002197465486638017
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Monica",
+          "sum__num": 153,
+          "SUM(num_girls)": 153,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001358955114511953,
+          "% SUM(num_girls)": 0.00031897195131612416,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Victoria",
+          "sum__num": 281,
+          "SUM(num_girls)": 281,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002495858739724567,
+          "% SUM(num_girls)": 0.0005858243027439927,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Megan",
+          "sum__num": 740,
+          "SUM(num_girls)": 740,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006572724083260427,
+          "% SUM(num_girls)": 0.0015427401566923652,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 15193,
+          "SUM(num_girls)": 15193,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.013494513107699413,
+          "% SUM(num_girls)": 0.03167412324409068,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Cassandra",
+          "sum__num": 1849,
+          "SUM(num_girls)": 1849,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0016422928148579093,
+          "% SUM(num_girls)": 0.0038547656077353824,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Tiffany",
+          "sum__num": 1405,
+          "SUM(num_girls)": 1405,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0012479293698622836,
+          "% SUM(num_girls)": 0.0029291215137199635,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Aaron",
+          "sum__num": 495,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 495,
+          "pct_boys": 495,
+          "% sum__num": 0.0004396619488126907,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007660178985111398
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Lucas",
+          "sum__num": 76,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 76,
+          "pct_boys": 76,
+          "% sum__num": 0.00006750365274699897,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00011761082886231641
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Mary",
+          "sum__num": 1693,
+          "SUM(num_girls)": 1693,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.001503732685535122,
+          "% SUM(num_girls)": 0.003529539304432668,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Tara",
+          "sum__num": 354,
+          "SUM(num_girls)": 354,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00031442490884786366,
+          "% SUM(num_girls)": 0.0007380135344176989,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Nathaniel",
+          "sum__num": 190,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 190,
+          "pct_boys": 190,
+          "% sum__num": 0.00016875913186749743,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00029402707215579104
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Benjamin",
+          "sum__num": 789,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 789,
+          "pct_boys": 789,
+          "% sum__num": 0.0007007945002287131,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012209861048995743
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 2456,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2456,
+          "pct_boys": 2456,
+          "% sum__num": 0.002181433830876704,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0038006867853401195
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Katelyn",
+          "sum__num": 237,
+          "SUM(num_girls)": 237,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00021050481185577312,
+          "% SUM(num_girls)": 0.0004940938069406629,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Corey",
+          "sum__num": 230,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 230,
+          "pct_boys": 230,
+          "% sum__num": 0.00020428737015539163,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003559275083991154
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Ryan",
+          "sum__num": 5775,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 5775,
+          "pct_boys": 5775,
+          "% sum__num": 0.005129389402814725,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.008936875482629964
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Brian",
+          "sum__num": 524,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 524,
+          "pct_boys": 524,
+          "% sum__num": 0.00046541992157141397,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00081089571478755
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "John",
+          "sum__num": 1933,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1933,
+          "pct_boys": 1933,
+          "% sum__num": 0.001716902115262487,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002991338581458653
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "John",
+          "sum__num": 1226,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1226,
+          "pct_boys": 1226,
+          "% sum__num": 0.0010889405035239572,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0018972483708578937
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Allison",
+          "sum__num": 34,
+          "SUM(num_girls)": 34,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00003019900254471007,
+          "% SUM(num_girls)": 0.00007088265584802758,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Michael",
+          "sum__num": 6157,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 6157,
+          "pct_boys": 6157,
+          "% sum__num": 0.005468684078464114,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.009528024648753712
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jeremy",
+          "sum__num": 457,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 457,
+          "pct_boys": 457,
+          "% sum__num": 0.0004059101224391912,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007072124840799815
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Jeffery",
+          "sum__num": 513,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 513,
+          "pct_boys": 513,
+          "% sum__num": 0.0004556496560422431,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007938730948206358
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Marcus",
+          "sum__num": 530,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 530,
+          "pct_boys": 530,
+          "% sum__num": 0.0004707491573145981,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008201807802240487
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 1087,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1087,
+          "pct_boys": 1087,
+          "% sum__num": 0.0009654798754735248,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0016821443549123413
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Karen",
+          "sum__num": 494,
+          "SUM(num_girls)": 494,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004387737428554933,
+          "% SUM(num_girls)": 0.0010298832937919301,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Brooke",
+          "sum__num": 282,
+          "SUM(num_girls)": 282,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002504740799296541,
+          "% SUM(num_girls)": 0.000587909086739523,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Donald",
+          "sum__num": 2048,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2048,
+          "pct_boys": 2048,
+          "% sum__num": 0.0018190458003401828,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0031693023356582106
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Cassandra",
+          "sum__num": 137,
+          "SUM(num_girls)": 137,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00012168421613603762,
+          "% SUM(num_girls)": 0.00028561540738764057,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 2039,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2039,
+          "pct_boys": 2039,
+          "% sum__num": 0.0018110519467254068,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0031553747375034627
+        },
+        {
+          "__timestamp": 0,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Kim",
+          "sum__num": 120,
+          "SUM(num_girls)": 120,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001065847148636826,
+          "% SUM(num_girls)": 0.0002501740794636268,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Vincent",
+          "sum__num": 459,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 459,
+          "pct_boys": 459,
+          "% sum__num": 0.0004076865343535859,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007103075058921478
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Jack",
+          "sum__num": 428,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 428,
+          "pct_boys": 428,
+          "% sum__num": 0.0003801521496804679,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006623346678035713
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Kristin",
+          "sum__num": 243,
+          "SUM(num_girls)": 243,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00021583404759895725,
+          "% SUM(num_girls)": 0.0005066025109138442,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Daniel",
+          "sum__num": 434,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 434,
+          "pct_boys": 434,
+          "% sum__num": 0.00038548138542365205,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00067161973324007
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Mary",
+          "sum__num": 1796,
+          "SUM(num_girls)": 1796,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0015952178991264494,
+          "% SUM(num_girls)": 0.0037442720559722805,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Ryan",
+          "sum__num": 1429,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1429,
+          "pct_boys": 1429,
+          "% sum__num": 0.0012692463128350202,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002211393084792765
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Craig",
+          "sum__num": 496,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 496,
+          "pct_boys": 496,
+          "% sum__num": 0.00044055015476988804,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007675654094172229
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Miguel",
+          "sum__num": 258,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 258,
+          "pct_boys": 258,
+          "% sum__num": 0.00022915713695691758,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00039925781376944254
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Rachel",
+          "sum__num": 158,
+          "SUM(num_girls)": 158,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00014033654123718207,
+          "% SUM(num_girls)": 0.00032939587129377526,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Brooke",
+          "sum__num": 151,
+          "SUM(num_girls)": 151,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001341190995368006,
+          "% SUM(num_girls)": 0.0003148023833250637,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Stephen",
+          "sum__num": 748,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 748,
+          "pct_boys": 748,
+          "% sum__num": 0.0006643780559836215,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011575381577501667
+        },
+        {
+          "__timestamp": 0,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Christine",
+          "sum__num": 855,
+          "SUM(num_girls)": 855,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007594160934037385,
+          "% SUM(num_girls)": 0.0017824903161783407,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Brooke",
+          "sum__num": 269,
+          "SUM(num_girls)": 269,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00023892740248608848,
+          "% SUM(num_girls)": 0.00056080689479763,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jeremy",
+          "sum__num": 187,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 187,
+          "pct_boys": 187,
+          "% sum__num": 0.00016609451399590537,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002893845394375417
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Bradley",
+          "sum__num": 312,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 312,
+          "pct_boys": 312,
+          "% sum__num": 0.00027712025864557474,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004828234026979305
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Nicole",
+          "sum__num": 314,
+          "SUM(num_girls)": 314,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00027889667055996947,
+          "% SUM(num_girls)": 0.00065462217459649,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Taylor",
+          "sum__num": 358,
+          "SUM(num_girls)": 358,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00031797773267665307,
+          "% SUM(num_girls)": 0.0007463526703998199,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 538,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 538,
+          "pct_boys": 538,
+          "% sum__num": 0.00047785480497217696,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008325608674727135
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Aaron",
+          "sum__num": 430,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 430,
+          "pct_boys": 430,
+          "% sum__num": 0.0003819285615948626,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006654296896157376
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Michelle",
+          "sum__num": 2022,
+          "SUM(num_girls)": 2022,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0017959524454530516,
+          "% SUM(num_girls)": 0.004215433238962111,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Vanessa",
+          "sum__num": 124,
+          "SUM(num_girls)": 124,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011013753869247201,
+          "% SUM(num_girls)": 0.00025851321544574765,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Stacy",
+          "sum__num": 3032,
+          "SUM(num_girls)": 3032,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00269304046222238,
+          "% SUM(num_girls)": 0.006321065074447636,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 461,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 461,
+          "pct_boys": 461,
+          "% sum__num": 0.0004094629462679806,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000713402527704314
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Grace",
+          "sum__num": 605,
+          "SUM(num_girls)": 605,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005373646041043998,
+          "% SUM(num_girls)": 0.001261294317295785,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Victoria",
+          "sum__num": 590,
+          "SUM(num_girls)": 590,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005240415147464394,
+          "% SUM(num_girls)": 0.0012300225573628316,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Alyssa",
+          "sum__num": 524,
+          "SUM(num_girls)": 524,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00046541992157141397,
+          "% SUM(num_girls)": 0.001092426813657837,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "John",
+          "sum__num": 1147,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1147,
+          "pct_boys": 1147,
+          "% sum__num": 0.001018772232905366,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001774995009277328
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Anna",
+          "sum__num": 342,
+          "SUM(num_girls)": 342,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003037664373614954,
+          "% SUM(num_girls)": 0.0007129961264713363,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Tiffany",
+          "sum__num": 249,
+          "SUM(num_girls)": 249,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00022116328334214139,
+          "% SUM(num_girls)": 0.0005191112148870255,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Christian",
+          "sum__num": 184,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 184,
+          "pct_boys": 184,
+          "% sum__num": 0.0001634298961243133,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002847420067192924
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Jeremy",
+          "sum__num": 227,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 227,
+          "pct_boys": 227,
+          "% sum__num": 0.00020162275228379956,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003512849756808661
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Mary",
+          "sum__num": 704,
+          "SUM(num_girls)": 704,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006252969938669379,
+          "% SUM(num_girls)": 0.0014676879328532771,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Brianna",
+          "sum__num": 191,
+          "SUM(num_girls)": 191,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001696473378246948,
+          "% SUM(num_girls)": 0.00039819374314627263,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Andrea",
+          "sum__num": 1092,
+          "SUM(num_girls)": 1092,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009699209052595115,
+          "% SUM(num_girls)": 0.0022765841231190036,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Steven",
+          "sum__num": 872,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 872,
+          "pct_boys": 872,
+          "% sum__num": 0.0007745155946760935,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0013494295101044724
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "James",
+          "sum__num": 1679,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1679,
+          "pct_boys": 1679,
+          "% sum__num": 0.0014912978021343589,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0025982708113135426
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Elizabeth",
+          "sum__num": 658,
+          "SUM(num_girls)": 658,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005844395198358595,
+          "% SUM(num_girls)": 0.0013717878690588869,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Benjamin",
+          "sum__num": 508,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 508,
+          "pct_boys": 508,
+          "% sum__num": 0.0004512086262562563,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007861355402902202
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Leslie",
+          "sum__num": 315,
+          "SUM(num_girls)": 315,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002797848765171668,
+          "% SUM(num_girls)": 0.0006567069585920203,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Theresa",
+          "sum__num": 186,
+          "SUM(num_girls)": 186,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000165206308038708,
+          "% SUM(num_girls)": 0.0003877698231686215,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Jasmine",
+          "sum__num": 5176,
+          "SUM(num_girls)": 5176,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.004597354034453509,
+          "% SUM(num_girls)": 0.010790841960864436,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Nancy",
+          "sum__num": 309,
+          "SUM(num_girls)": 309,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00027445564077398265,
+          "% SUM(num_girls)": 0.0006441982546188389,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Grace",
+          "sum__num": 230,
+          "SUM(num_girls)": 230,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00020428737015539163,
+          "% SUM(num_girls)": 0.00047950031897195134,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Sydney",
+          "sum__num": 278,
+          "SUM(num_girls)": 278,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002469212561008647,
+          "% SUM(num_girls)": 0.000579569950757402,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Christina",
+          "sum__num": 541,
+          "SUM(num_girls)": 541,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000480519422843769,
+          "% SUM(num_girls)": 0.0011278681415818506,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Jennifer",
+          "sum__num": 1406,
+          "SUM(num_girls)": 1406,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.001248817575819481,
+          "% SUM(num_girls)": 0.0029312062977154938,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Anna",
+          "sum__num": 369,
+          "SUM(num_girls)": 369,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00032774799820582397,
+          "% SUM(num_girls)": 0.0007692852943506523,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Amanda",
+          "sum__num": 3168,
+          "SUM(num_girls)": 3168,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0028138364724012203,
+          "% SUM(num_girls)": 0.0066045956978397465,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Julie",
+          "sum__num": 8402,
+          "SUM(num_girls)": 8402,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.007462706452372176,
+          "% SUM(num_girls)": 0.017516355130444933,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Kaitlyn",
+          "sum__num": 399,
+          "SUM(num_girls)": 399,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003543941769217446,
+          "% SUM(num_girls)": 0.000831828814216559,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Shawn",
+          "sum__num": 343,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 343,
+          "pct_boys": 343,
+          "% sum__num": 0.00030465464331869276,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000530796240786507
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Wendy",
+          "sum__num": 161,
+          "SUM(num_girls)": 161,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00014300115910877414,
+          "% SUM(num_girls)": 0.00033565022328036593,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Tina",
+          "sum__num": 111,
+          "SUM(num_girls)": 111,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0000985908612489064,
+          "% SUM(num_girls)": 0.00023141102350385476,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Christine",
+          "sum__num": 508,
+          "SUM(num_girls)": 508,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004512086262562563,
+          "% SUM(num_girls)": 0.0010590702697293533,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Emily",
+          "sum__num": 1174,
+          "SUM(num_girls)": 1174,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010427537937496947,
+          "% SUM(num_girls)": 0.002447536410752482,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Nicole",
+          "sum__num": 418,
+          "SUM(num_girls)": 418,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003712700901084944,
+          "% SUM(num_girls)": 0.0008714397101316333,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Laura",
+          "sum__num": 753,
+          "SUM(num_girls)": 753,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006688190857696083,
+          "% SUM(num_girls)": 0.001569842348634258,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Megan",
+          "sum__num": 756,
+          "SUM(num_girls)": 756,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006714837036412003,
+          "% SUM(num_girls)": 0.0015760967006208486,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Kyle",
+          "sum__num": 1168,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1168,
+          "pct_boys": 1168,
+          "% sum__num": 0.0010374245580065105,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0018074927383050733
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Linda",
+          "sum__num": 577,
+          "SUM(num_girls)": 577,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005124948373028738,
+          "% SUM(num_girls)": 0.0012029203654209386,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 408,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 408,
+          "pct_boys": 408,
+          "% sum__num": 0.0003623880305365208,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006313844496819091
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "April",
+          "sum__num": 432,
+          "SUM(num_girls)": 432,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003837049735092573,
+          "% SUM(num_girls)": 0.0009006266860690563,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Jeremy",
+          "sum__num": 299,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 299,
+          "pct_boys": 299,
+          "% sum__num": 0.0002655735812020091,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00046270576091885006
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Sean",
+          "sum__num": 304,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 304,
+          "pct_boys": 304,
+          "% sum__num": 0.0002700146109879959,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00047044331544926564
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 13341,
+          "SUM(num_girls)": 13341,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.011849555674969913,
+          "% SUM(num_girls)": 0.027813103284368708,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Rachel",
+          "sum__num": 477,
+          "SUM(num_girls)": 477,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004236742415831383,
+          "% SUM(num_girls)": 0.0009944419658679165,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 870,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 870,
+          "pct_boys": 870,
+          "% sum__num": 0.0007727391827616988,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0013463344882923061
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Tyler",
+          "sum__num": 961,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 961,
+          "pct_boys": 961,
+          "% sum__num": 0.0008535659248666581,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014871579807458693
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Corey",
+          "sum__num": 141,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 141,
+          "pct_boys": 141,
+          "% sum__num": 0.00012523703996482704,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00021819903775771859
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jesse",
+          "sum__num": 82,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 82,
+          "pct_boys": 82,
+          "% sum__num": 0.0000728328884901831,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00012689589429881507
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Christina",
+          "sum__num": 601,
+          "SUM(num_girls)": 601,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005338117802756103,
+          "% SUM(num_girls)": 0.001252955181313664,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Keith",
+          "sum__num": 281,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 281,
+          "pct_boys": 281,
+          "% sum__num": 0.0002495858739724567,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004348505646093541
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Donald",
+          "sum__num": 517,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 517,
+          "pct_boys": 517,
+          "% sum__num": 0.0004592024798710325,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008000631384449682
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Emily",
+          "sum__num": 520,
+          "SUM(num_girls)": 520,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00046186709774262457,
+          "% SUM(num_girls)": 0.001084087677675716,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Joel",
+          "sum__num": 204,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 204,
+          "pct_boys": 204,
+          "% sum__num": 0.0001811940152682604,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00031569222484095457
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Benjamin",
+          "sum__num": 497,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 497,
+          "pct_boys": 497,
+          "% sum__num": 0.0004414383607270854,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000769112920323306
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "William",
+          "sum__num": 626,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 626,
+          "pct_boys": 626,
+          "% sum__num": 0.0005560169292055442,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009687418272080273
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Jordan",
+          "sum__num": 147,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 147,
+          "pct_boys": 147,
+          "% sum__num": 0.00013056627570801117,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00022748410319421727
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Eric",
+          "sum__num": 641,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 641,
+          "pct_boys": 641,
+          "% sum__num": 0.0005693400185635045,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009919544907992738
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Karen",
+          "sum__num": 74,
+          "SUM(num_girls)": 74,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00006572724083260427,
+          "% SUM(num_girls)": 0.0001542740156692365,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Nancy",
+          "sum__num": 670,
+          "SUM(num_girls)": 670,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005950979913222278,
+          "% SUM(num_girls)": 0.0013968052770052496,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Angela",
+          "sum__num": 370,
+          "SUM(num_girls)": 370,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00032863620416302133,
+          "% SUM(num_girls)": 0.0007713700783461826,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Laura",
+          "sum__num": 6493,
+          "SUM(num_girls)": 6493,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.005767121280082425,
+          "% SUM(num_girls)": 0.013536502482977738,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "James",
+          "sum__num": 1156,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1156,
+          "pct_boys": 1156,
+          "% sum__num": 0.0010267660865201423,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017889226074320759
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Andrea",
+          "sum__num": 358,
+          "SUM(num_girls)": 358,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00031797773267665307,
+          "% SUM(num_girls)": 0.0007463526703998199,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Mary",
+          "sum__num": 3852,
+          "SUM(num_girls)": 3852,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.003421369347124211,
+          "% SUM(num_girls)": 0.00803058795078242,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Jill",
+          "sum__num": 1832,
+          "SUM(num_girls)": 1832,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0016271933135855543,
+          "% SUM(num_girls)": 0.0038193242798113688,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Corey",
+          "sum__num": 142,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 142,
+          "pct_boys": 142,
+          "% sum__num": 0.0001261252459220244,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002197465486638017
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Jack",
+          "sum__num": 382,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 382,
+          "pct_boys": 382,
+          "% sum__num": 0.0003392946756493896,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005911491661237482
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Jason",
+          "sum__num": 2016,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2016,
+          "pct_boys": 2016,
+          "% sum__num": 0.0017906232097098676,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.003119781986663551
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Cynthia",
+          "sum__num": 1191,
+          "SUM(num_girls)": 1191,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010578532950220496,
+          "% SUM(num_girls)": 0.0024829777386764958,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Kathleen",
+          "sum__num": 2404,
+          "SUM(num_girls)": 2404,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0021352471211024413,
+          "% SUM(num_girls)": 0.005011820725254656,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jacob",
+          "sum__num": 593,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 593,
+          "pct_boys": 593,
+          "% sum__num": 0.0005267061326180315,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009176739673072845
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Cameron",
+          "sum__num": 331,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 331,
+          "pct_boys": 331,
+          "% sum__num": 0.0002939961718323245,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005122261099135096
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Marcus",
+          "sum__num": 1643,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1643,
+          "pct_boys": 1643,
+          "% sum__num": 0.0014593223876752542,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002542560418694551
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Kayla",
+          "sum__num": 917,
+          "SUM(num_girls)": 917,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008144848627499744,
+          "% SUM(num_girls)": 0.0019117469239012146,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jacob",
+          "sum__num": 3373,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 3373,
+          "pct_boys": 3373,
+          "% sum__num": 0.002995918693626678,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.005219754286218332
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Luis",
+          "sum__num": 1417,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1417,
+          "pct_boys": 1417,
+          "% sum__num": 0.001258587841348652,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002192822953919768
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "James",
+          "sum__num": 1901,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1901,
+          "pct_boys": 1901,
+          "% sum__num": 0.0016884795246321718,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0029418182324639935
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Kaitlyn",
+          "sum__num": 112,
+          "SUM(num_girls)": 112,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00009947906720610375,
+          "% SUM(num_girls)": 0.000233495807499385,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Kathleen",
+          "sum__num": 401,
+          "SUM(num_girls)": 401,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003561705888361393,
+          "% SUM(num_girls)": 0.0008359983822076195,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Daniel",
+          "sum__num": 5451,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 5451,
+          "pct_boys": 5451,
+          "% sum__num": 0.0048416106726827815,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.008435481949059036
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Dana",
+          "sum__num": 7,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 7,
+          "pct_boys": 7,
+          "% sum__num": 0.000006217441700381484,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000010832576342581774
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Christina",
+          "sum__num": 137,
+          "SUM(num_girls)": 137,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00012168421613603762,
+          "% SUM(num_girls)": 0.00028561540738764057,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Barbara",
+          "sum__num": 6446,
+          "SUM(num_girls)": 6446,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00572537560009415,
+          "% SUM(num_girls)": 0.013438517635187818,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 16266,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 16266,
+          "pct_boys": 16266,
+          "% sum__num": 0.014447558099772176,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.025171812398347877
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Brandon",
+          "sum__num": 1353,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1353,
+          "pct_boys": 1353,
+          "% sum__num": 0.0012017426600880211,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0020937822559304485
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 161,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 161,
+          "pct_boys": 161,
+          "% sum__num": 0.00014300115910877414,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00024914925587938083
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Timothy",
+          "sum__num": 177,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 177,
+          "pct_boys": 177,
+          "% sum__num": 0.00015721245442393183,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002739094303767106
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Justin",
+          "sum__num": 1394,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1394,
+          "pct_boys": 1394,
+          "% sum__num": 0.0012381591043331129,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0021572302030798563
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Vincent",
+          "sum__num": 136,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 136,
+          "pct_boys": 136,
+          "% sum__num": 0.00012079601017884027,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00021046148322730304
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Eric",
+          "sum__num": 1114,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1114,
+          "pct_boys": 1114,
+          "% sum__num": 0.0009894614363178534,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017239271493765852
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Tyler",
+          "sum__num": 2107,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2107,
+          "pct_boys": 2107,
+          "% sum__num": 0.001871449951814827,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0032606054791171142
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Ryan",
+          "sum__num": 1353,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1353,
+          "pct_boys": 1353,
+          "% sum__num": 0.0012017426600880211,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0020937822559304485
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Haley",
+          "sum__num": 556,
+          "SUM(num_girls)": 556,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004938425122017294,
+          "% SUM(num_girls)": 0.001159139901514804,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 656,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 656,
+          "pct_boys": 656,
+          "% sum__num": 0.0005826631079214648,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0010151671543905205
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Brandon",
+          "sum__num": 297,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 297,
+          "pct_boys": 297,
+          "% sum__num": 0.0002637971692876144,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00045961073910668384
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Gary",
+          "sum__num": 231,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 231,
+          "pct_boys": 231,
+          "% sum__num": 0.000205175576112589,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00035747501930519855
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Jesus",
+          "sum__num": 1874,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1874,
+          "pct_boys": 1874,
+          "% sum__num": 0.0016644979637878432,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0029000354379997493
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Christopher",
+          "sum__num": 3733,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 3733,
+          "pct_boys": 3733,
+          "% sum__num": 0.003315672838217726,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.005776858212408252
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Brianna",
+          "sum__num": 338,
+          "SUM(num_girls)": 338,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00030021361353270594,
+          "% SUM(num_girls)": 0.0007046569904892154,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Larry",
+          "sum__num": 275,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 275,
+          "pct_boys": 275,
+          "% sum__num": 0.0002442566382292726,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00042556549917285543
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Patricia",
+          "sum__num": 604,
+          "SUM(num_girls)": 604,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005364763981472024,
+          "% SUM(num_girls)": 0.0012592095333002547,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Savannah",
+          "sum__num": 176,
+          "SUM(num_girls)": 176,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00015632424846673447,
+          "% SUM(num_girls)": 0.0003669219832133193,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Jason",
+          "sum__num": 2282,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2282,
+          "pct_boys": 2282,
+          "% sum__num": 0.002026885994324364,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0035314198876816583
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Jamie",
+          "sum__num": 960,
+          "SUM(num_girls)": 960,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008526777189094608,
+          "% SUM(num_girls)": 0.0020013926357090144,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jesus",
+          "sum__num": 520,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 520,
+          "pct_boys": 520,
+          "% sum__num": 0.00046186709774262457,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008047056711632175
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Zachary",
+          "sum__num": 918,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 918,
+          "pct_boys": 918,
+          "% sum__num": 0.0008153730687071718,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014206150117842956
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Samantha",
+          "sum__num": 421,
+          "SUM(num_girls)": 421,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003739347079800864,
+          "% SUM(num_girls)": 0.0008776940621182239,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Andrea",
+          "sum__num": 771,
+          "SUM(num_girls)": 771,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006848067929991606,
+          "% SUM(num_girls)": 0.001607368460553802,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Kelly",
+          "sum__num": 909,
+          "SUM(num_girls)": 909,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008073792150923956,
+          "% SUM(num_girls)": 0.001895068651936973,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Eric",
+          "sum__num": 3023,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 3023,
+          "pct_boys": 3023,
+          "% sum__num": 0.002685046608607604,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.004678125469089243
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Jason",
+          "sum__num": 2811,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2811,
+          "pct_boys": 2811,
+          "% sum__num": 0.002496746945681765,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.004350053156999624
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Justin",
+          "sum__num": 1006,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1006,
+          "pct_boys": 1006,
+          "% sum__num": 0.0008935351929405391,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015567959715196093
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jacob",
+          "sum__num": 92,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 92,
+          "pct_boys": 92,
+          "% sum__num": 0.00008171494806215665,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0001423710033596462
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Jerry",
+          "sum__num": 228,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 228,
+          "pct_boys": 228,
+          "% sum__num": 0.00020251095824099692,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003528324865869492
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Sophia",
+          "sum__num": 6414,
+          "SUM(num_girls)": 6414,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0056969530094638345,
+          "% SUM(num_girls)": 0.013371804547330852,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Dawn",
+          "sum__num": 388,
+          "SUM(num_girls)": 388,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003446239113925737,
+          "% SUM(num_girls)": 0.0008088961902657266,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Sarah",
+          "sum__num": 1102,
+          "SUM(num_girls)": 1102,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000978802964831485,
+          "% SUM(num_girls)": 0.002297431963074306,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Stephanie",
+          "sum__num": 2035,
+          "SUM(num_girls)": 2035,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0018074991228966173,
+          "% SUM(num_girls)": 0.004242535430904004,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Lisa",
+          "sum__num": 1037,
+          "SUM(num_girls)": 1037,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000921069577613657,
+          "% SUM(num_girls)": 0.002161921003364841,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Morgan",
+          "sum__num": 4787,
+          "SUM(num_girls)": 4787,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.004251841917103738,
+          "% SUM(num_girls)": 0.009979860986603178,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Jill",
+          "sum__num": 387,
+          "SUM(num_girls)": 387,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00034373570543537636,
+          "% SUM(num_girls)": 0.0008068114062701964,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Olivia",
+          "sum__num": 1158,
+          "SUM(num_girls)": 1158,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.001028542498434537,
+          "% SUM(num_girls)": 0.0024141798668239982,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Joel",
+          "sum__num": 152,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 152,
+          "pct_boys": 152,
+          "% sum__num": 0.00013500730549399794,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00023522165772463282
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Steven",
+          "sum__num": 604,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 604,
+          "pct_boys": 604,
+          "% sum__num": 0.0005364763981472024,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009346965872741988
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Kristin",
+          "sum__num": 316,
+          "SUM(num_girls)": 316,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00028067308247436414,
+          "% SUM(num_girls)": 0.0006587917425875505,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Joel",
+          "sum__num": 182,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 182,
+          "pct_boys": 182,
+          "% sum__num": 0.0001616534842099186,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00028164698490712616
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Alexander",
+          "sum__num": 346,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 346,
+          "pct_boys": 346,
+          "% sum__num": 0.0003073192611902848,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005354387735047563
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 232,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 232,
+          "pct_boys": 232,
+          "% sum__num": 0.00020606378206978635,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00035902253021128164
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Erica",
+          "sum__num": 584,
+          "SUM(num_girls)": 584,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005187122790032552,
+          "% SUM(num_girls)": 0.0012175138533896503,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Alicia",
+          "sum__num": 450,
+          "SUM(num_girls)": 450,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003996926807388097,
+          "% SUM(num_girls)": 0.0009381527979886004,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Elijah",
+          "sum__num": 727,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 727,
+          "pct_boys": 727,
+          "% sum__num": 0.000645725730882477,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011250404287224214
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Ashley",
+          "sum__num": 3500,
+          "SUM(num_girls)": 3500,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.003108720850190742,
+          "% SUM(num_girls)": 0.0072967439843557805,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Kenneth",
+          "sum__num": 1145,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1145,
+          "pct_boys": 1145,
+          "% sum__num": 0.0010169958209909713,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017718999874651617
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Daniel",
+          "sum__num": 959,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 959,
+          "pct_boys": 959,
+          "% sum__num": 0.0008517895129522634,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001484062958933703
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Sarah",
+          "sum__num": 1174,
+          "SUM(num_girls)": 1174,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010427537937496947,
+          "% SUM(num_girls)": 0.002447536410752482,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Linda",
+          "sum__num": 101,
+          "SUM(num_girls)": 101,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00008970880167693285,
+          "% SUM(num_girls)": 0.00021056318354855253,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Scott",
+          "sum__num": 334,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 334,
+          "pct_boys": 334,
+          "% sum__num": 0.00029666078970391654,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000516868642631759
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Randy",
+          "sum__num": 1661,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1661,
+          "pct_boys": 1661,
+          "% sum__num": 0.0014753100949048065,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0025704156150040468
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Zachary",
+          "sum__num": 380,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 380,
+          "pct_boys": 380,
+          "% sum__num": 0.00033751826373499487,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005880541443115821
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 2406,
+          "SUM(num_girls)": 2406,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.002137023533016836,
+          "% SUM(num_girls)": 0.0050159902932457165,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Anthony",
+          "sum__num": 7242,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 7242,
+          "pct_boys": 7242,
+          "% sum__num": 0.006432387542023244,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.011207073981853888
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Christina",
+          "sum__num": 268,
+          "SUM(num_girls)": 268,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00023803919652889112,
+          "% SUM(num_girls)": 0.0005587221108020998,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Cheryl",
+          "sum__num": 97,
+          "SUM(num_girls)": 97,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00008615597784814343,
+          "% SUM(num_girls)": 0.00020222404756643165,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Melissa",
+          "sum__num": 524,
+          "SUM(num_girls)": 524,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00046541992157141397,
+          "% SUM(num_girls)": 0.001092426813657837,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Logan",
+          "sum__num": 101,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 101,
+          "pct_boys": 101,
+          "% sum__num": 0.00008970880167693285,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00015629860151439418
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Adrian",
+          "sum__num": 105,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 105,
+          "pct_boys": 105,
+          "% sum__num": 0.00009326162550572226,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0001624886451387266
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Vincent",
+          "sum__num": 63,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 63,
+          "pct_boys": 63,
+          "% sum__num": 0.00005595697530343336,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00009749318708323597
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Phillip",
+          "sum__num": 451,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 451,
+          "pct_boys": 451,
+          "% sum__num": 0.0004005808866960071,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006979274186434829
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Scott",
+          "sum__num": 543,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 543,
+          "pct_boys": 543,
+          "% sum__num": 0.00048229583475816373,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008402984220031291
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Dawn",
+          "sum__num": 611,
+          "SUM(num_girls)": 611,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005426938398475839,
+          "% SUM(num_girls)": 0.0012738030212689664,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Nicholas",
+          "sum__num": 1000,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1000,
+          "pct_boys": 1000,
+          "% sum__num": 0.0008882059571973549,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015475109060831107
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Antonio",
+          "sum__num": 104,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 104,
+          "pct_boys": 104,
+          "% sum__num": 0.00009237341954852491,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0001609411342326435
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Adam",
+          "sum__num": 1118,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1118,
+          "pct_boys": 1118,
+          "% sum__num": 0.000993014260146643,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017301171930009177
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 992,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 992,
+          "pct_boys": 992,
+          "% sum__num": 0.0008811003095397761,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015351308188344458
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Rebecca",
+          "sum__num": 216,
+          "SUM(num_girls)": 216,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00019185248675462866,
+          "% SUM(num_girls)": 0.0004503133430345282,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jose",
+          "sum__num": 119,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 119,
+          "pct_boys": 119,
+          "% sum__num": 0.00010569650890648523,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00018415379782389017
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Keith",
+          "sum__num": 560,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 560,
+          "pct_boys": 560,
+          "% sum__num": 0.0004973953360305187,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008666061074065419
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Adam",
+          "sum__num": 100,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 100,
+          "pct_boys": 100,
+          "% sum__num": 0.0000888205957197355,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00015475109060831107
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Jeffery",
+          "sum__num": 501,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 501,
+          "pct_boys": 501,
+          "% sum__num": 0.0004449911845558748,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007753029639476385
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Elizabeth",
+          "sum__num": 1016,
+          "SUM(num_girls)": 1016,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009024172525125126,
+          "% SUM(num_girls)": 0.0021181405394587066,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Aaron",
+          "sum__num": 115,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 115,
+          "pct_boys": 115,
+          "% sum__num": 0.00010214368507769581,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0001779637541995577
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 164,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 164,
+          "pct_boys": 164,
+          "% sum__num": 0.0001456657769803662,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00025379178859763013
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Theresa",
+          "sum__num": 182,
+          "SUM(num_girls)": 182,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001616534842099186,
+          "% SUM(num_girls)": 0.0003794306871865006,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Kyle",
+          "sum__num": 1072,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1072,
+          "pct_boys": 1072,
+          "% sum__num": 0.0009521567861155645,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0016589316913210945
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Maria",
+          "sum__num": 863,
+          "SUM(num_girls)": 863,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007665217410613173,
+          "% SUM(num_girls)": 0.0017991685881425825,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Barbara",
+          "sum__num": 216,
+          "SUM(num_girls)": 216,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00019185248675462866,
+          "% SUM(num_girls)": 0.0004503133430345282,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Katelyn",
+          "sum__num": 174,
+          "SUM(num_girls)": 174,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00015454783655233977,
+          "% SUM(num_girls)": 0.0003627524152222588,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Hannah",
+          "sum__num": 527,
+          "SUM(num_girls)": 527,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00046808453944300607,
+          "% SUM(num_girls)": 0.0010986811656444277,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Benjamin",
+          "sum__num": 193,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 193,
+          "pct_boys": 193,
+          "% sum__num": 0.0001714237497390895,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00029866960487404034
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Noah",
+          "sum__num": 501,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 501,
+          "pct_boys": 501,
+          "% sum__num": 0.0004449911845558748,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007753029639476385
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Amy",
+          "sum__num": 521,
+          "SUM(num_girls)": 521,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00046275530369982193,
+          "% SUM(num_girls)": 0.0010861724616712462,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Brianna",
+          "sum__num": 318,
+          "SUM(num_girls)": 318,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002824494943887589,
+          "% SUM(num_girls)": 0.000662961310578611,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Daniel",
+          "sum__num": 421,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 421,
+          "pct_boys": 421,
+          "% sum__num": 0.0003739347079800864,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006515020914609896
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Jacqueline",
+          "sum__num": 148,
+          "SUM(num_girls)": 148,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00013145448166520854,
+          "% SUM(num_girls)": 0.000308548031338473,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Andrew",
+          "sum__num": 3011,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 3011,
+          "pct_boys": 3011,
+          "% sum__num": 0.0026743881371212356,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.004659555338216246
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 351,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 351,
+          "pct_boys": 351,
+          "% sum__num": 0.00031176029097627157,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005431763280351719
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Caleb",
+          "sum__num": 306,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 306,
+          "pct_boys": 306,
+          "% sum__num": 0.0002717910229023906,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00047353833726143185
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Jose",
+          "sum__num": 511,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 511,
+          "pct_boys": 511,
+          "% sum__num": 0.00045387324412784834,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007907780730084695
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 1212,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1212,
+          "pct_boys": 1212,
+          "% sum__num": 0.001076505620123194,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00187558321817273
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Marcus",
+          "sum__num": 297,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 297,
+          "pct_boys": 297,
+          "% sum__num": 0.0002637971692876144,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00045961073910668384
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Jenna",
+          "sum__num": 241,
+          "SUM(num_girls)": 241,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00021405763568456253,
+          "% SUM(num_girls)": 0.0005024329429227837,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Isaiah",
+          "sum__num": 210,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 210,
+          "pct_boys": 210,
+          "% sum__num": 0.00018652325101144453,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003249772902774532
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Lisa",
+          "sum__num": 541,
+          "SUM(num_girls)": 541,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000480519422843769,
+          "% SUM(num_girls)": 0.0011278681415818506,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Michael",
+          "sum__num": 8245,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 8245,
+          "pct_boys": 8245,
+          "% sum__num": 0.007323258117092191,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.012759227420655246
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Thomas",
+          "sum__num": 1453,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1453,
+          "pct_boys": 1453,
+          "% sum__num": 0.0012905632558077567,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0022485333465387595
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "David",
+          "sum__num": 817,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 817,
+          "pct_boys": 817,
+          "% sum__num": 0.000725664267030239,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012643164102699013
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Amanda",
+          "sum__num": 1952,
+          "SUM(num_girls)": 1952,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0017337780284492367,
+          "% SUM(num_girls)": 0.0040694983592749956,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Amy",
+          "sum__num": 1966,
+          "SUM(num_girls)": 1966,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0017462129118499998,
+          "% SUM(num_girls)": 0.004098685335212419,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Kayla",
+          "sum__num": 757,
+          "SUM(num_girls)": 757,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006723719095983976,
+          "% SUM(num_girls)": 0.0015781814846163788,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Logan",
+          "sum__num": 60,
+          "SUM(num_girls)": 60,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0000532923574318413,
+          "% SUM(num_girls)": 0.0001250870397318134,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jason",
+          "sum__num": 836,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 836,
+          "pct_boys": 836,
+          "% sum__num": 0.0007425401802169888,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012937191174854806
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jamie",
+          "sum__num": 75,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 75,
+          "pct_boys": 75,
+          "% sum__num": 0.00006661544678980162,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0001160633179562333
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Brianna",
+          "sum__num": 1293,
+          "SUM(num_girls)": 1293,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00114845030265618,
+          "% SUM(num_girls)": 0.0026956257062205786,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 2502,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2502,
+          "pct_boys": 2502,
+          "% sum__num": 0.002222291304907782,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0038718722870199427
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Rebecca",
+          "sum__num": 420,
+          "SUM(num_girls)": 420,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00037304650202288906,
+          "% SUM(num_girls)": 0.0008756092781226937,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Melanie",
+          "sum__num": 148,
+          "SUM(num_girls)": 148,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00013145448166520854,
+          "% SUM(num_girls)": 0.000308548031338473,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "David",
+          "sum__num": 2178,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2178,
+          "pct_boys": 2178,
+          "% sum__num": 0.0019345125747758391,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.003370478753449015
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Catherine",
+          "sum__num": 129,
+          "SUM(num_girls)": 129,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011457856847845879,
+          "% SUM(num_girls)": 0.0002689371354233988,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Christopher",
+          "sum__num": 2984,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2984,
+          "pct_boys": 2984,
+          "% sum__num": 0.002650406576276907,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.004617772543752002
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Eric",
+          "sum__num": 968,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 968,
+          "pct_boys": 968,
+          "% sum__num": 0.0008597833665670396,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014979905570884511
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Kristin",
+          "sum__num": 337,
+          "SUM(num_girls)": 337,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00029932540757550863,
+          "% SUM(num_girls)": 0.0007025722064936852,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Aaron",
+          "sum__num": 494,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 494,
+          "pct_boys": 494,
+          "% sum__num": 0.0004387737428554933,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007644703876050566
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Robert",
+          "sum__num": 499,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 499,
+          "pct_boys": 499,
+          "% sum__num": 0.0004432147726414801,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007722079421354722
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Eric",
+          "sum__num": 271,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 271,
+          "pct_boys": 271,
+          "% sum__num": 0.00024070381440048318,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000419375455548523
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Paul",
+          "sum__num": 1209,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1209,
+          "pct_boys": 1209,
+          "% sum__num": 0.0010738410022516022,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0018709406854544807
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "George",
+          "sum__num": 695,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 695,
+          "pct_boys": 695,
+          "% sum__num": 0.0006173031402521617,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0010755200797277619
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Jason",
+          "sum__num": 414,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 414,
+          "pct_boys": 414,
+          "% sum__num": 0.0003677172662797049,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006406695151184079
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 367,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 367,
+          "pct_boys": 367,
+          "% sum__num": 0.00032597158629142924,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005679365025325016
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Robin",
+          "sum__num": 347,
+          "SUM(num_girls)": 347,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00030820746714748217,
+          "% SUM(num_girls)": 0.0007234200464489875,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 955,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 955,
+          "pct_boys": 955,
+          "% sum__num": 0.0008482366891234739,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014778729153093707
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Kyle",
+          "sum__num": 826,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 826,
+          "pct_boys": 826,
+          "% sum__num": 0.0007336581206450151,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012782440084246494
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Heather",
+          "sum__num": 116,
+          "SUM(num_girls)": 116,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00010303189103489318,
+          "% SUM(num_girls)": 0.00024183494348150588,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Dawn",
+          "sum__num": 329,
+          "SUM(num_girls)": 329,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00029221975991792977,
+          "% SUM(num_girls)": 0.0006858939345294434,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Paul",
+          "sum__num": 1014,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1014,
+          "pct_boys": 1014,
+          "% sum__num": 0.0009006408405981179,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015691760587682741
+        },
+        {
+          "__timestamp": 0,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Stephanie",
+          "sum__num": 727,
+          "SUM(num_girls)": 727,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000645725730882477,
+          "% SUM(num_girls)": 0.0015156379647504722,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Andrew",
+          "sum__num": 1346,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1346,
+          "pct_boys": 1346,
+          "% sum__num": 0.0011955252183876398,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002082949679587867
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 2459,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2459,
+          "pct_boys": 2459,
+          "% sum__num": 0.0021840984487482957,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0038053293180583692
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Justin",
+          "sum__num": 411,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 411,
+          "pct_boys": 411,
+          "% sum__num": 0.0003650526484081129,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006360269824001584
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 13628,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 13628,
+          "pct_boys": 13628,
+          "% sum__num": 0.012104470784685553,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.021089478628100632
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Michael",
+          "sum__num": 5839,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 5839,
+          "pct_boys": 5839,
+          "% sum__num": 0.005186234584075355,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.009035916180619283
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Douglas",
+          "sum__num": 187,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 187,
+          "pct_boys": 187,
+          "% sum__num": 0.00016609451399590537,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002893845394375417
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "David",
+          "sum__num": 5458,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 5458,
+          "pct_boys": 5458,
+          "% sum__num": 0.004847828114383163,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.008446314525401618
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Amanda",
+          "sum__num": 2319,
+          "SUM(num_girls)": 2319,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.002059749614740666,
+          "% SUM(num_girls)": 0.004834614085634587,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Cassandra",
+          "sum__num": 130,
+          "SUM(num_girls)": 130,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011546677443565614,
+          "% SUM(num_girls)": 0.000271021919418929,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Andrew",
+          "sum__num": 849,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 849,
+          "pct_boys": 849,
+          "% sum__num": 0.0007540868576605543,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0013138367592645608
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Amber",
+          "sum__num": 389,
+          "SUM(num_girls)": 389,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003455121173497711,
+          "% SUM(num_girls)": 0.0008109809742612568,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Nathan",
+          "sum__num": 196,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 196,
+          "pct_boys": 196,
+          "% sum__num": 0.00017408836761068156,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003033121375922897
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Craig",
+          "sum__num": 224,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 224,
+          "pct_boys": 224,
+          "% sum__num": 0.0001989581344122075,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00034664244296261676
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Ashley",
+          "sum__num": 954,
+          "SUM(num_girls)": 954,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008473484831662766,
+          "% SUM(num_girls)": 0.001988883931735833,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Diana",
+          "sum__num": 258,
+          "SUM(num_girls)": 258,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00022915713695691758,
+          "% SUM(num_girls)": 0.0005378742708467976,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Jasmine",
+          "sum__num": 1659,
+          "SUM(num_girls)": 1659,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0014735336829904118,
+          "% SUM(num_girls)": 0.00345865664858464,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Luke",
+          "sum__num": 101,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 101,
+          "pct_boys": 101,
+          "% sum__num": 0.00008970880167693285,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00015629860151439418
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Alicia",
+          "sum__num": 480,
+          "SUM(num_girls)": 480,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004263388594547304,
+          "% SUM(num_girls)": 0.0010006963178545072,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Michael",
+          "sum__num": 1609,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1609,
+          "pct_boys": 1609,
+          "% sum__num": 0.001429123385130544,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002489945047887725
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Vanessa",
+          "sum__num": 2129,
+          "SUM(num_girls)": 2129,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0018909904828731687,
+          "% SUM(num_girls)": 0.004438505126483845,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Rebecca",
+          "sum__num": 203,
+          "SUM(num_girls)": 203,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00018030580931106306,
+          "% SUM(num_girls)": 0.0004232111510926353,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Stacy",
+          "sum__num": 379,
+          "SUM(num_girls)": 379,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003366300577777975,
+          "% SUM(num_girls)": 0.0007901331343059545,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Stephen",
+          "sum__num": 166,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 166,
+          "pct_boys": 166,
+          "% sum__num": 0.0001474421888947609,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00025688681040979635
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Bradley",
+          "sum__num": 311,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 311,
+          "pct_boys": 311,
+          "% sum__num": 0.0002762320526883774,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00048127589179184743
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Kyle",
+          "sum__num": 434,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 434,
+          "pct_boys": 434,
+          "% sum__num": 0.00038548138542365205,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00067161973324007
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Gregory",
+          "sum__num": 307,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 307,
+          "pct_boys": 307,
+          "% sum__num": 0.000272679228859588,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00047508584816751494
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Holly",
+          "sum__num": 364,
+          "SUM(num_girls)": 364,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003233069684198372,
+          "% SUM(num_girls)": 0.0007588613743730012,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Laura",
+          "sum__num": 849,
+          "SUM(num_girls)": 849,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007540868576605543,
+          "% SUM(num_girls)": 0.0017699816122051595,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 409,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 409,
+          "pct_boys": 409,
+          "% sum__num": 0.00036327623649371816,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006329319605879923
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Isaiah",
+          "sum__num": 271,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 271,
+          "pct_boys": 271,
+          "% sum__num": 0.00024070381440048318,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000419375455548523
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Diana",
+          "sum__num": 152,
+          "SUM(num_girls)": 152,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00013500730549399794,
+          "% SUM(num_girls)": 0.0003168871673205939,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "other",
+          "gender": "boy",
+          "name": "Matthew",
+          "sum__num": 8394,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 8394,
+          "pct_boys": 8394,
+          "% sum__num": 0.007455600804714598,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.01298980654566163
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Kenneth",
+          "sum__num": 420,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 420,
+          "pct_boys": 420,
+          "% sum__num": 0.00037304650202288906,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006499545805549065
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Craig",
+          "sum__num": 2484,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2484,
+          "pct_boys": 2484,
+          "% sum__num": 0.0022063035976782296,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.003844017090710447
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Natalie",
+          "sum__num": 91,
+          "SUM(num_girls)": 91,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0000808267421049593,
+          "% SUM(num_girls)": 0.0001897153435932503,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Sophia",
+          "sum__num": 187,
+          "SUM(num_girls)": 187,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00016609451399590537,
+          "% SUM(num_girls)": 0.0003898546071641517,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Kayla",
+          "sum__num": 881,
+          "SUM(num_girls)": 881,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007825094482908697,
+          "% SUM(num_girls)": 0.0018366947000621266,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Pamela",
+          "sum__num": 477,
+          "SUM(num_girls)": 477,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004236742415831383,
+          "% SUM(num_girls)": 0.0009944419658679165,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Emily",
+          "sum__num": 1219,
+          "SUM(num_girls)": 1219,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010827230618235756,
+          "% SUM(num_girls)": 0.002541351690551342,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Alicia",
+          "sum__num": 359,
+          "SUM(num_girls)": 359,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00031886593863385043,
+          "% SUM(num_girls)": 0.0007484374543953501,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 520,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 520,
+          "pct_boys": 520,
+          "% sum__num": 0.00046186709774262457,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008047056711632175
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Tiffany",
+          "sum__num": 927,
+          "SUM(num_girls)": 927,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008233669223219481,
+          "% SUM(num_girls)": 0.0019325947638565168,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Danielle",
+          "sum__num": 1944,
+          "SUM(num_girls)": 1944,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.001726672380791658,
+          "% SUM(num_girls)": 0.004052820087310754,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Stacy",
+          "sum__num": 423,
+          "SUM(num_girls)": 423,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00037571111989448115,
+          "% SUM(num_girls)": 0.0008818636301092844,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Jamie",
+          "sum__num": 734,
+          "SUM(num_girls)": 734,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006519431725828585,
+          "% SUM(num_girls)": 0.0015302314527191837,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Vanessa",
+          "sum__num": 699,
+          "SUM(num_girls)": 699,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000620855964080951,
+          "% SUM(num_girls)": 0.001457264012875626,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Theresa",
+          "sum__num": 399,
+          "SUM(num_girls)": 399,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003543941769217446,
+          "% SUM(num_girls)": 0.000831828814216559,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Christopher",
+          "sum__num": 3771,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 3771,
+          "pct_boys": 3771,
+          "% sum__num": 0.0033494246645912255,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00583566362683941
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Nathan",
+          "sum__num": 143,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 143,
+          "pct_boys": 143,
+          "% sum__num": 0.00012701345187922174,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00022129405956988483
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Rachel",
+          "sum__num": 341,
+          "SUM(num_girls)": 341,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00030287823140429804,
+          "% SUM(num_girls)": 0.0007109113424758061,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Pamela",
+          "sum__num": 659,
+          "SUM(num_girls)": 659,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005853277257930569,
+          "% SUM(num_girls)": 0.0013738726530544171,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Timothy",
+          "sum__num": 481,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 481,
+          "pct_boys": 481,
+          "% sum__num": 0.00042722706541192774,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007443527458259762
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 1057,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1057,
+          "pct_boys": 1057,
+          "% sum__num": 0.0009388336967576041,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0016357190277298478
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Nathaniel",
+          "sum__num": 69,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 69,
+          "pct_boys": 69,
+          "% sum__num": 0.00006128621104661749,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00010677825251973463
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jack",
+          "sum__num": 417,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 417,
+          "pct_boys": 417,
+          "% sum__num": 0.000370381884151297,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006453120478366572
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Charles",
+          "sum__num": 229,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 229,
+          "pct_boys": 229,
+          "% sum__num": 0.0002033991641981943,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00035437999749303234
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Karen",
+          "sum__num": 592,
+          "SUM(num_girls)": 592,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005258179266608342,
+          "% SUM(num_girls)": 0.001234192125353892,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Gregory",
+          "sum__num": 4640,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 4640,
+          "pct_boys": 4640,
+          "% sum__num": 0.004121275641395727,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.007180450604225634
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Justin",
+          "sum__num": 1619,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1619,
+          "pct_boys": 1619,
+          "% sum__num": 0.0014380054447025177,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002505420156948556
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Edward",
+          "sum__num": 239,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 239,
+          "pct_boys": 239,
+          "% sum__num": 0.00021228122377016782,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00036985510655386343
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Andrew",
+          "sum__num": 1476,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1476,
+          "pct_boys": 1476,
+          "% sum__num": 0.0013109919928232959,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002284126097378671
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Vincent",
+          "sum__num": 202,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 202,
+          "pct_boys": 202,
+          "% sum__num": 0.0001794176033538657,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00031259720302878835
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Vincent",
+          "sum__num": 394,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 394,
+          "pct_boys": 394,
+          "% sum__num": 0.00034995314713575786,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006097192969967456
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Jared",
+          "sum__num": 180,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 180,
+          "pct_boys": 180,
+          "% sum__num": 0.0001598770722955239,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002785519630949599
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Antonio",
+          "sum__num": 1334,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1334,
+          "pct_boys": 1334,
+          "% sum__num": 0.0011848667469012714,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0020643795487148694
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Derek",
+          "sum__num": 160,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 160,
+          "pct_boys": 160,
+          "% sum__num": 0.0001421129531515768,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002476017449732977
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Karen",
+          "sum__num": 490,
+          "SUM(num_girls)": 490,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004352209190267039,
+          "% SUM(num_girls)": 0.0010215441578098094,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Alexandra",
+          "sum__num": 608,
+          "SUM(num_girls)": 608,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005400292219759918,
+          "% SUM(num_girls)": 0.0012675486692823757,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Sandra",
+          "sum__num": 1101,
+          "SUM(num_girls)": 1101,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009779147588742877,
+          "% SUM(num_girls)": 0.0022953471790787758,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 117,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 117,
+          "pct_boys": 117,
+          "% sum__num": 0.00010392009699209053,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00018105877601172396
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Alex",
+          "sum__num": 238,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 238,
+          "pct_boys": 238,
+          "% sum__num": 0.00021139301781297046,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00036830759564778035
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Melissa",
+          "sum__num": 1096,
+          "SUM(num_girls)": 1096,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000973473729088301,
+          "% SUM(num_girls)": 0.0022849232591011246,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Sharon",
+          "sum__num": 214,
+          "SUM(num_girls)": 214,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00019007607484023396,
+          "% SUM(num_girls)": 0.00044614377504346775,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Stacy",
+          "sum__num": 202,
+          "SUM(num_girls)": 202,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001794176033538657,
+          "% SUM(num_girls)": 0.00042112636709710507,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Ashley",
+          "sum__num": 1873,
+          "SUM(num_girls)": 1873,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0016636097578306458,
+          "% SUM(num_girls)": 0.003904800423628108,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Barbara",
+          "sum__num": 159,
+          "SUM(num_girls)": 159,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00014122474719437944,
+          "% SUM(num_girls)": 0.0003314806552893055,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Matthew",
+          "sum__num": 17299,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 17299,
+          "pct_boys": 17299,
+          "% sum__num": 0.015365074853557042,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.02677039116433173
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Margaret",
+          "sum__num": 264,
+          "SUM(num_girls)": 264,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002344863727001017,
+          "% SUM(num_girls)": 0.000550382974819979,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Amy",
+          "sum__num": 1062,
+          "SUM(num_girls)": 1062,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009432747265435909,
+          "% SUM(num_girls)": 0.002214040603253097,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Anna",
+          "sum__num": 477,
+          "SUM(num_girls)": 477,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004236742415831383,
+          "% SUM(num_girls)": 0.0009944419658679165,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Carol",
+          "sum__num": 254,
+          "SUM(num_girls)": 254,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00022560431312812815,
+          "% SUM(num_girls)": 0.0005295351348646766,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Sarah",
+          "sum__num": 2611,
+          "SUM(num_girls)": 2611,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0023191057542422937,
+          "% SUM(num_girls)": 0.0054433710123294125,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Shawn",
+          "sum__num": 3859,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 3859,
+          "pct_boys": 3859,
+          "% sum__num": 0.0034275867888245927,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.005971844586574724
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Amanda",
+          "sum__num": 2517,
+          "SUM(num_girls)": 2517,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0022356143942657424,
+          "% SUM(num_girls)": 0.0052474013167495715,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Kelly",
+          "sum__num": 883,
+          "SUM(num_girls)": 883,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007842858602052643,
+          "% SUM(num_girls)": 0.001840864268053187,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Robert",
+          "sum__num": 526,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 526,
+          "pct_boys": 526,
+          "% sum__num": 0.0004671963334858087,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008139907365997162
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Amanda",
+          "sum__num": 769,
+          "SUM(num_girls)": 769,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006830303810847659,
+          "% SUM(num_girls)": 0.0016031988925627415,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Joshua",
+          "sum__num": 1711,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1711,
+          "pct_boys": 1711,
+          "% sum__num": 0.0015197203927646743,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002647791160308202
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 12800,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 12800,
+          "pct_boys": 12800,
+          "% sum__num": 0.011369036252126144,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.019808139597863816
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Chelsea",
+          "sum__num": 358,
+          "SUM(num_girls)": 358,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00031797773267665307,
+          "% SUM(num_girls)": 0.0007463526703998199,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Jeremy",
+          "sum__num": 510,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 510,
+          "pct_boys": 510,
+          "% sum__num": 0.00045298503817065103,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007892305621023864
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Nathaniel",
+          "sum__num": 170,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 170,
+          "pct_boys": 170,
+          "% sum__num": 0.00015099501272355034,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002630768540341288
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Emily",
+          "sum__num": 1218,
+          "SUM(num_girls)": 1218,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010818348558663783,
+          "% SUM(num_girls)": 0.002539266906555812,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Maria",
+          "sum__num": 79,
+          "SUM(num_girls)": 79,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00007016827061859104,
+          "% SUM(num_girls)": 0.00016469793564688763,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Alexandra",
+          "sum__num": 522,
+          "SUM(num_girls)": 522,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00046364350965701924,
+          "% SUM(num_girls)": 0.0010882572456667764,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 1435,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1435,
+          "pct_boys": 1435,
+          "% sum__num": 0.0012745755485782044,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0022206781502292637
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Cynthia",
+          "sum__num": 104,
+          "SUM(num_girls)": 104,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00009237341954852491,
+          "% SUM(num_girls)": 0.0002168175355351432,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "James",
+          "sum__num": 1195,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1195,
+          "pct_boys": 1195,
+          "% sum__num": 0.001061406118850839,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0018492755327693172
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Barbara",
+          "sum__num": 605,
+          "SUM(num_girls)": 605,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005373646041043998,
+          "% SUM(num_girls)": 0.001261294317295785,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Melissa",
+          "sum__num": 560,
+          "SUM(num_girls)": 560,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004973953360305187,
+          "% SUM(num_girls)": 0.001167479037496925,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Jennifer",
+          "sum__num": 26584,
+          "SUM(num_girls)": 26584,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.02361206716613448,
+          "% SUM(num_girls)": 0.05542189773717545,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Katherine",
+          "sum__num": 5010,
+          "SUM(num_girls)": 5010,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.004449911845558748,
+          "% SUM(num_girls)": 0.010444767817606417,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Christina",
+          "sum__num": 694,
+          "SUM(num_girls)": 694,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006164149342949643,
+          "% SUM(num_girls)": 0.001446840092897975,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Michael",
+          "sum__num": 8186,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 8186,
+          "pct_boys": 8186,
+          "% sum__num": 0.007270853965617548,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.012667924277196343
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Christian",
+          "sum__num": 70,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 70,
+          "pct_boys": 70,
+          "% sum__num": 0.00006217441700381484,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00010832576342581774
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Valerie",
+          "sum__num": 115,
+          "SUM(num_girls)": 115,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00010214368507769581,
+          "% SUM(num_girls)": 0.00023975015948597567,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Michele",
+          "sum__num": 311,
+          "SUM(num_girls)": 311,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002762320526883774,
+          "% SUM(num_girls)": 0.0006483678226098994,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Pamela",
+          "sum__num": 332,
+          "SUM(num_girls)": 332,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002948843777895218,
+          "% SUM(num_girls)": 0.0006921482865160341,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Angel",
+          "sum__num": 211,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 211,
+          "pct_boys": 211,
+          "% sum__num": 0.0001874114569686419,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00032652480118353636
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Phillip",
+          "sum__num": 175,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 175,
+          "pct_boys": 175,
+          "% sum__num": 0.0001554360425095371,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00027081440856454436
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Jesse",
+          "sum__num": 295,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 295,
+          "pct_boys": 295,
+          "% sum__num": 0.0002620207573732197,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004565157172945176
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Andrew",
+          "sum__num": 973,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 973,
+          "pct_boys": 973,
+          "% sum__num": 0.0008642243963530264,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015057281116188667
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Kimberly",
+          "sum__num": 1493,
+          "SUM(num_girls)": 1493,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0013260914940956508,
+          "% SUM(num_girls)": 0.003112582505326623,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Nancy",
+          "sum__num": 632,
+          "SUM(num_girls)": 632,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005613461649487283,
+          "% SUM(num_girls)": 0.001317583485175101,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Diana",
+          "sum__num": 428,
+          "SUM(num_girls)": 428,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003801521496804679,
+          "% SUM(num_girls)": 0.0008922875500869355,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Taylor",
+          "sum__num": 1647,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1647,
+          "pct_boys": 1647,
+          "% sum__num": 0.0014628752115040436,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002548750462318883
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Russell",
+          "sum__num": 133,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 133,
+          "pct_boys": 133,
+          "% sum__num": 0.00011813139230724821,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002058189505090537
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Rodney",
+          "sum__num": 444,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 444,
+          "pct_boys": 444,
+          "% sum__num": 0.0003943634449956256,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006870948423009011
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Raymond",
+          "sum__num": 160,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 160,
+          "pct_boys": 160,
+          "% sum__num": 0.0001421129531515768,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002476017449732977
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Nicole",
+          "sum__num": 346,
+          "SUM(num_girls)": 346,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003073192611902848,
+          "% SUM(num_girls)": 0.0007213352624534572,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Nathaniel",
+          "sum__num": 100,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 100,
+          "pct_boys": 100,
+          "% sum__num": 0.0000888205957197355,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00015475109060831107
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Kimberly",
+          "sum__num": 1463,
+          "SUM(num_girls)": 1463,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0012994453153797303,
+          "% SUM(num_girls)": 0.003050038985460716,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Robert",
+          "sum__num": 1213,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1213,
+          "pct_boys": 1213,
+          "% sum__num": 0.0010773938260803914,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0018771307290788132
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Benjamin",
+          "sum__num": 449,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 449,
+          "pct_boys": 449,
+          "% sum__num": 0.00039880447478161235,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006948323968313167
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Kelly",
+          "sum__num": 4717,
+          "SUM(num_girls)": 4717,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0041896675000999235,
+          "% SUM(num_girls)": 0.009833926106916063,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Ryan",
+          "sum__num": 962,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 962,
+          "pct_boys": 962,
+          "% sum__num": 0.0008544541308238555,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014887054916519523
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Derek",
+          "sum__num": 311,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 311,
+          "pct_boys": 311,
+          "% sum__num": 0.0002762320526883774,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00048127589179184743
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Megan",
+          "sum__num": 1808,
+          "SUM(num_girls)": 1808,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0016058763706128178,
+          "% SUM(num_girls)": 0.0037692894639186434,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Charles",
+          "sum__num": 10419,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 10419,
+          "pct_boys": 10419,
+          "% sum__num": 0.009254217868039242,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.01612351613047993
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Melissa",
+          "sum__num": 1543,
+          "SUM(num_girls)": 1543,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0013705017919555186,
+          "% SUM(num_girls)": 0.003216821705103134,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Joel",
+          "sum__num": 508,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 508,
+          "pct_boys": 508,
+          "% sum__num": 0.0004512086262562563,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007861355402902202
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Nathan",
+          "sum__num": 537,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 537,
+          "pct_boys": 537,
+          "% sum__num": 0.0004769665990149796,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008310133565666304
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 513,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 513,
+          "pct_boys": 513,
+          "% sum__num": 0.0004556496560422431,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007938730948206358
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Alexis",
+          "sum__num": 931,
+          "SUM(num_girls)": 931,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008269197461507374,
+          "% SUM(num_girls)": 0.0019409338998386378,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jordan",
+          "sum__num": 5796,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 5796,
+          "pct_boys": 5796,
+          "% sum__num": 0.005148041727915869,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00896937321165771
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 1123,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1123,
+          "pct_boys": 1123,
+          "% sum__num": 0.0009974552899326295,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017378547475313333
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Justin",
+          "sum__num": 771,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 771,
+          "pct_boys": 771,
+          "% sum__num": 0.0006848067929991606,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011931309085900783
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 1005,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1005,
+          "pct_boys": 1005,
+          "% sum__num": 0.0008926469869833417,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015552484606135262
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Frank",
+          "sum__num": 126,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 126,
+          "pct_boys": 126,
+          "% sum__num": 0.00011191395060686673,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00019498637416647194
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Rachel",
+          "sum__num": 712,
+          "SUM(num_girls)": 712,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006324026415245167,
+          "% SUM(num_girls)": 0.0014843662048175188,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Carrie",
+          "sum__num": 213,
+          "SUM(num_girls)": 213,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001891878688830366,
+          "% SUM(num_girls)": 0.0004440589910479375,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Jerry",
+          "sum__num": 664,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 664,
+          "pct_boys": 664,
+          "% sum__num": 0.0005897687555790436,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0010275472416391854
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Paul",
+          "sum__num": 1924,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1924,
+          "pct_boys": 1924,
+          "% sum__num": 0.001708908261647711,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0029774109833039047
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 1465,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1465,
+          "pct_boys": 1465,
+          "% sum__num": 0.0013012217272941249,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002267103477411757
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Michael",
+          "sum__num": 5792,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 5792,
+          "pct_boys": 5792,
+          "% sum__num": 0.0051444889040870795,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.008963183168033377
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Kristen",
+          "sum__num": 323,
+          "SUM(num_girls)": 323,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00028689052417474564,
+          "% SUM(num_girls)": 0.0006733852305562621,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Melanie",
+          "sum__num": 265,
+          "SUM(num_girls)": 265,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00023537457865729905,
+          "% SUM(num_girls)": 0.0005524677588155091,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Anthony",
+          "sum__num": 644,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 644,
+          "pct_boys": 644,
+          "% sum__num": 0.0005720046364350966,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009965970235175233
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Andrea",
+          "sum__num": 440,
+          "SUM(num_girls)": 440,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003908106211668362,
+          "% SUM(num_girls)": 0.0009173049580332982,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Tiffany",
+          "sum__num": 408,
+          "SUM(num_girls)": 408,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003623880305365208,
+          "% SUM(num_girls)": 0.000850591870176331,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Emma",
+          "sum__num": 1053,
+          "SUM(num_girls)": 1053,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009352808729288148,
+          "% SUM(num_girls)": 0.002195277547293325,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Mason",
+          "sum__num": 288,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 288,
+          "pct_boys": 288,
+          "% sum__num": 0.0002558033156728382,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004456831409519359
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Christian",
+          "sum__num": 2190,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2190,
+          "pct_boys": 2190,
+          "% sum__num": 0.0019451710462622073,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0033890488843220123
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Jesse",
+          "sum__num": 1080,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1080,
+          "pct_boys": 1080,
+          "% sum__num": 0.0009592624337731433,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0016713117785697594
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Nicholas",
+          "sum__num": 1136,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1136,
+          "pct_boys": 1136,
+          "% sum__num": 0.0010090019673761952,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017579723893104136
+        },
+        {
+          "__timestamp": 0,
+          "state": "other",
+          "gender": "girl",
+          "name": "Theresa",
+          "sum__num": 2338,
+          "SUM(num_girls)": 2338,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0020766255279274157,
+          "% SUM(num_girls)": 0.004874224981549662,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Erica",
+          "sum__num": 92,
+          "SUM(num_girls)": 92,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00008171494806215665,
+          "% SUM(num_girls)": 0.00019180012758878052,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "William",
+          "sum__num": 899,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 899,
+          "pct_boys": 899,
+          "% sum__num": 0.0007984971555204221,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0013912123045687163
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "John",
+          "sum__num": 5326,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 5326,
+          "pct_boys": 5326,
+          "% sum__num": 0.0047305849280331125,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.008242043085798647
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Justin",
+          "sum__num": 726,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 726,
+          "pct_boys": 726,
+          "% sum__num": 0.0006448375249252797,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011234929178163384
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Ethan",
+          "sum__num": 184,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 184,
+          "pct_boys": 184,
+          "% sum__num": 0.0001634298961243133,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002847420067192924
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Kelly",
+          "sum__num": 657,
+          "SUM(num_girls)": 657,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005835513138786622,
+          "% SUM(num_girls)": 0.0013697030850633566,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Joel",
+          "sum__num": 97,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 97,
+          "pct_boys": 97,
+          "% sum__num": 0.00008615597784814343,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00015010855789006174
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Kenneth",
+          "sum__num": 374,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 374,
+          "pct_boys": 374,
+          "% sum__num": 0.00033218902799181073,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005787690788750834
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Randy",
+          "sum__num": 267,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 267,
+          "pct_boys": 267,
+          "% sum__num": 0.00023715099057169375,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00041318541192419055
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Allison",
+          "sum__num": 141,
+          "SUM(num_girls)": 141,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00012523703996482704,
+          "% SUM(num_girls)": 0.0002939545433697615,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Tiffany",
+          "sum__num": 833,
+          "SUM(num_girls)": 833,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007398755623453967,
+          "% SUM(num_girls)": 0.0017366250682766759,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Luke",
+          "sum__num": 261,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 261,
+          "pct_boys": 261,
+          "% sum__num": 0.00023182175482850962,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004039003464876919
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Elizabeth",
+          "sum__num": 1193,
+          "SUM(num_girls)": 1193,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010596297069364444,
+          "% SUM(num_girls)": 0.0024871473066675562,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Travis",
+          "sum__num": 53,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 53,
+          "pct_boys": 53,
+          "% sum__num": 0.00004707491573145981,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00008201807802240486
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Sean",
+          "sum__num": 973,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 973,
+          "pct_boys": 973,
+          "% sum__num": 0.0008642243963530264,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015057281116188667
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Ashley",
+          "sum__num": 769,
+          "SUM(num_girls)": 769,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006830303810847659,
+          "% SUM(num_girls)": 0.0016031988925627415,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Christopher",
+          "sum__num": 2032,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2032,
+          "pct_boys": 2032,
+          "% sum__num": 0.0018048345050250252,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.003144542161160881
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Paula",
+          "sum__num": 155,
+          "SUM(num_girls)": 155,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00013767192336559,
+          "% SUM(num_girls)": 0.0003231415193071846,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Brooke",
+          "sum__num": 231,
+          "SUM(num_girls)": 231,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000205175576112589,
+          "% SUM(num_girls)": 0.0004815851029674815,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Sophia",
+          "sum__num": 6845,
+          "SUM(num_girls)": 6845,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.006079769777015895,
+          "% SUM(num_girls)": 0.014270346449404378,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Jeremy",
+          "sum__num": 591,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 591,
+          "pct_boys": 591,
+          "% sum__num": 0.0005249297207036368,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009145789454951184
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Monica",
+          "sum__num": 153,
+          "SUM(num_girls)": 153,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001358955114511953,
+          "% SUM(num_girls)": 0.00031897195131612416,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Jerry",
+          "sum__num": 513,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 513,
+          "pct_boys": 513,
+          "% sum__num": 0.0004556496560422431,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007938730948206358
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Jesse",
+          "sum__num": 168,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 168,
+          "pct_boys": 168,
+          "% sum__num": 0.00014921860080915563,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00025998183222196257
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Megan",
+          "sum__num": 1701,
+          "SUM(num_girls)": 1701,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0015108383331927007,
+          "% SUM(num_girls)": 0.0035462175763969093,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Rebecca",
+          "sum__num": 374,
+          "SUM(num_girls)": 374,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00033218902799181073,
+          "% SUM(num_girls)": 0.0007797092143283034,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Sara",
+          "sum__num": 397,
+          "SUM(num_girls)": 397,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003526177650073499,
+          "% SUM(num_girls)": 0.0008276592462254986,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Daniel",
+          "sum__num": 966,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 966,
+          "pct_boys": 966,
+          "% sum__num": 0.0008580069546526448,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014948955352762849
+        },
+        {
+          "__timestamp": 0,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Jerry",
+          "sum__num": 152,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 152,
+          "pct_boys": 152,
+          "% sum__num": 0.00013500730549399794,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00023522165772463282
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Michael",
+          "sum__num": 2644,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2644,
+          "pct_boys": 2644,
+          "% sum__num": 0.0023484165508298066,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.004091618835683744
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Brian",
+          "sum__num": 883,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 883,
+          "pct_boys": 883,
+          "% sum__num": 0.0007842858602052643,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0013664521300713866
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Leslie",
+          "sum__num": 175,
+          "SUM(num_girls)": 175,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001554360425095371,
+          "% SUM(num_girls)": 0.00036483719921778904,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Eric",
+          "sum__num": 1459,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1459,
+          "pct_boys": 1459,
+          "% sum__num": 0.0012958924915509409,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0022578184119752586
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Karen",
+          "sum__num": 1065,
+          "SUM(num_girls)": 1065,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000945939344415183,
+          "% SUM(num_girls)": 0.0022202949552396875,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Lisa",
+          "sum__num": 153,
+          "SUM(num_girls)": 153,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001358955114511953,
+          "% SUM(num_girls)": 0.00031897195131612416,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Patrick",
+          "sum__num": 1224,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1224,
+          "pct_boys": 1224,
+          "% sum__num": 0.0010871640916095624,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0018941533490457274
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 321,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 321,
+          "pct_boys": 321,
+          "% sum__num": 0.0002851141122603509,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004967510008526785
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Kimberly",
+          "sum__num": 852,
+          "SUM(num_girls)": 852,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007567514755321464,
+          "% SUM(num_girls)": 0.00177623596419175,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Victor",
+          "sum__num": 82,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 82,
+          "pct_boys": 82,
+          "% sum__num": 0.0000728328884901831,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00012689589429881507
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Kaitlyn",
+          "sum__num": 582,
+          "SUM(num_girls)": 582,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005169358670888606,
+          "% SUM(num_girls)": 0.0012133442853985898,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Melissa",
+          "sum__num": 1709,
+          "SUM(num_girls)": 1709,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0015179439808502796,
+          "% SUM(num_girls)": 0.0035628958483611512,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Jordan",
+          "sum__num": 118,
+          "SUM(num_girls)": 118,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00010480830294928788,
+          "% SUM(num_girls)": 0.0002460045114725663,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Victor",
+          "sum__num": 295,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 295,
+          "pct_boys": 295,
+          "% sum__num": 0.0002620207573732197,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004565157172945176
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Emily",
+          "sum__num": 1102,
+          "SUM(num_girls)": 1102,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000978802964831485,
+          "% SUM(num_girls)": 0.002297431963074306,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Elijah",
+          "sum__num": 412,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 412,
+          "pct_boys": 412,
+          "% sum__num": 0.00036594085436531025,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006375744933062416
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 425,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 425,
+          "pct_boys": 425,
+          "% sum__num": 0.0003774875318088758,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000657692135085322
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Erica",
+          "sum__num": 2324,
+          "SUM(num_girls)": 2324,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.002064190644526653,
+          "% SUM(num_girls)": 0.004845038005612238,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Kaitlyn",
+          "sum__num": 294,
+          "SUM(num_girls)": 294,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00026113255141602235,
+          "% SUM(num_girls)": 0.0006129264946858856,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Christian",
+          "sum__num": 4274,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 4274,
+          "pct_boys": 4274,
+          "% sum__num": 0.003796192261061495,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0066140616125992145
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Mary",
+          "sum__num": 223,
+          "SUM(num_girls)": 223,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00019806992845501016,
+          "% SUM(num_girls)": 0.00046490683100323976,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Cody",
+          "sum__num": 217,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 217,
+          "pct_boys": 217,
+          "% sum__num": 0.00019274069271182603,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000335809866620035
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Jennifer",
+          "sum__num": 2759,
+          "SUM(num_girls)": 2759,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0024505602359075024,
+          "% SUM(num_girls)": 0.005751919043667886,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Leslie",
+          "sum__num": 169,
+          "SUM(num_girls)": 169,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00015010680676635297,
+          "% SUM(num_girls)": 0.0003523284952446077,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Diana",
+          "sum__num": 426,
+          "SUM(num_girls)": 426,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003783757377660732,
+          "% SUM(num_girls)": 0.000888117982095875,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 373,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 373,
+          "pct_boys": 373,
+          "% sum__num": 0.00033130082203461337,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005772215679690002
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Alexander",
+          "sum__num": 974,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 974,
+          "pct_boys": 974,
+          "% sum__num": 0.0008651126023102237,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015072756225249498
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Jesse",
+          "sum__num": 381,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 381,
+          "pct_boys": 381,
+          "% sum__num": 0.00033840646969219223,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005896016552176651
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Dylan",
+          "sum__num": 314,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 314,
+          "pct_boys": 314,
+          "% sum__num": 0.00027889667055996947,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00048591842451009673
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Jacqueline",
+          "sum__num": 483,
+          "SUM(num_girls)": 483,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004290034773263224,
+          "% SUM(num_girls)": 0.0010069506698410977,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Tara",
+          "sum__num": 176,
+          "SUM(num_girls)": 176,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00015632424846673447,
+          "% SUM(num_girls)": 0.0003669219832133193,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Jill",
+          "sum__num": 421,
+          "SUM(num_girls)": 421,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003739347079800864,
+          "% SUM(num_girls)": 0.0008776940621182239,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Jill",
+          "sum__num": 143,
+          "SUM(num_girls)": 143,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00012701345187922174,
+          "% SUM(num_girls)": 0.0002981241113608219,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Elizabeth",
+          "sum__num": 580,
+          "SUM(num_girls)": 580,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005151594551744659,
+          "% SUM(num_girls)": 0.0012091747174075294,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Amy",
+          "sum__num": 1200,
+          "SUM(num_girls)": 1200,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.001065847148636826,
+          "% SUM(num_girls)": 0.002501740794636268,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Michelle",
+          "sum__num": 2349,
+          "SUM(num_girls)": 2349,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.002086395793456587,
+          "% SUM(num_girls)": 0.0048971576055004944,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Lisa",
+          "sum__num": 5614,
+          "SUM(num_girls)": 5614,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.004986388243705951,
+          "% SUM(num_girls)": 0.011703977350906673,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Justin",
+          "sum__num": 2286,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2286,
+          "pct_boys": 2286,
+          "% sum__num": 0.002030438818153153,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.003537609931305991
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Sara",
+          "sum__num": 569,
+          "SUM(num_girls)": 569,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000505389189645295,
+          "% SUM(num_girls)": 0.001186242093456697,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Anthony",
+          "sum__num": 1278,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1278,
+          "pct_boys": 1278,
+          "% sum__num": 0.0011351272132982197,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0019777189379742155
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Corey",
+          "sum__num": 271,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 271,
+          "pct_boys": 271,
+          "% sum__num": 0.00024070381440048318,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000419375455548523
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Ian",
+          "sum__num": 155,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 155,
+          "pct_boys": 155,
+          "% sum__num": 0.00013767192336559,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00023986419044288215
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Cody",
+          "sum__num": 637,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 637,
+          "pct_boys": 637,
+          "% sum__num": 0.0005657871947347151,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009857644471749415
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Ian",
+          "sum__num": 104,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 104,
+          "pct_boys": 104,
+          "% sum__num": 0.00009237341954852491,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0001609411342326435
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Vanessa",
+          "sum__num": 184,
+          "SUM(num_girls)": 184,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001634298961243133,
+          "% SUM(num_girls)": 0.00038360025517756105,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Benjamin",
+          "sum__num": 788,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 788,
+          "pct_boys": 788,
+          "% sum__num": 0.0006999062942715157,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001219438593993491
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Carrie",
+          "sum__num": 3897,
+          "SUM(num_girls)": 3897,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.003461338615198092,
+          "% SUM(num_girls)": 0.00812440323058128,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Travis",
+          "sum__num": 563,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 563,
+          "pct_boys": 563,
+          "% sum__num": 0.0005000599539021108,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008712486401247913
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Theresa",
+          "sum__num": 243,
+          "SUM(num_girls)": 243,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00021583404759895725,
+          "% SUM(num_girls)": 0.0005066025109138442,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "John",
+          "sum__num": 832,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 832,
+          "pct_boys": 832,
+          "% sum__num": 0.0007389873563881993,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001287529073861148
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "George",
+          "sum__num": 121,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 121,
+          "pct_boys": 121,
+          "% sum__num": 0.00010747292082087994,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0001872488196360564
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Sharon",
+          "sum__num": 695,
+          "SUM(num_girls)": 695,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006173031402521617,
+          "% SUM(num_girls)": 0.0014489248768935052,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Gregory",
+          "sum__num": 293,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 293,
+          "pct_boys": 293,
+          "% sum__num": 0.000260244345458825,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004534206954823514
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Logan",
+          "sum__num": 160,
+          "SUM(num_girls)": 160,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001421129531515768,
+          "% SUM(num_girls)": 0.0003335654392848357,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Stephen",
+          "sum__num": 600,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 600,
+          "pct_boys": 600,
+          "% sum__num": 0.000532923574318413,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009285065436498664
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Mary",
+          "sum__num": 582,
+          "SUM(num_girls)": 582,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005169358670888606,
+          "% SUM(num_girls)": 0.0012133442853985898,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Amy",
+          "sum__num": 113,
+          "SUM(num_girls)": 113,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00010036727316330111,
+          "% SUM(num_girls)": 0.0002355805914949152,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Alexander",
+          "sum__num": 857,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 857,
+          "pct_boys": 857,
+          "% sum__num": 0.0007611925053181332,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001326216846513226
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Frank",
+          "sum__num": 188,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 188,
+          "pct_boys": 188,
+          "% sum__num": 0.00016698271995310273,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002909320503436248
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Heather",
+          "sum__num": 940,
+          "SUM(num_girls)": 940,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008349135997655136,
+          "% SUM(num_girls)": 0.0019596969557984095,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 339,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 339,
+          "pct_boys": 339,
+          "% sum__num": 0.0003011018194899033,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005246061971621746
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Rachel",
+          "sum__num": 7944,
+          "SUM(num_girls)": 7944,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.007055908123975788,
+          "% SUM(num_girls)": 0.01656152406049209,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Charles",
+          "sum__num": 7566,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 7566,
+          "pct_boys": 7566,
+          "% sum__num": 0.006720166272155187,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.011708467515424814
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Logan",
+          "sum__num": 633,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 633,
+          "pct_boys": 633,
+          "% sum__num": 0.0005622343709059257,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000979574403550609
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Maria",
+          "sum__num": 433,
+          "SUM(num_girls)": 433,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003845931794664547,
+          "% SUM(num_girls)": 0.0009027114700645866,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Nicholas",
+          "sum__num": 195,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 195,
+          "pct_boys": 195,
+          "% sum__num": 0.0001732001616534842,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00030176462668620656
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Sandra",
+          "sum__num": 496,
+          "SUM(num_girls)": 496,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00044055015476988804,
+          "% SUM(num_girls)": 0.0010340528617829906,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Timothy",
+          "sum__num": 2000,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2000,
+          "pct_boys": 2000,
+          "% sum__num": 0.0017764119143947098,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0030950218121662213
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Laura",
+          "sum__num": 398,
+          "SUM(num_girls)": 398,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00035350597096454726,
+          "% SUM(num_girls)": 0.0008297440302210288,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Alex",
+          "sum__num": 454,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 454,
+          "pct_boys": 454,
+          "% sum__num": 0.0004032455045675991,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007025699513617322
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Emma",
+          "sum__num": 83,
+          "SUM(num_girls)": 83,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00007372109444738045,
+          "% SUM(num_girls)": 0.00017303707162900851,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "April",
+          "sum__num": 79,
+          "SUM(num_girls)": 79,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00007016827061859104,
+          "% SUM(num_girls)": 0.00016469793564688763,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Bryan",
+          "sum__num": 133,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 133,
+          "pct_boys": 133,
+          "% sum__num": 0.00011813139230724821,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002058189505090537
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Brittany",
+          "sum__num": 628,
+          "SUM(num_girls)": 628,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005577933411199389,
+          "% SUM(num_girls)": 0.00130924434919298,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "James",
+          "sum__num": 2067,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2067,
+          "pct_boys": 2067,
+          "% sum__num": 0.0018359217135269325,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0031987050428737896
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Elizabeth",
+          "sum__num": 424,
+          "SUM(num_girls)": 424,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00037659932585167846,
+          "% SUM(num_girls)": 0.0008839484141048146,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Robert",
+          "sum__num": 697,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 697,
+          "pct_boys": 697,
+          "% sum__num": 0.0006190795521665564,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0010786151015399282
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Gary",
+          "sum__num": 138,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 138,
+          "pct_boys": 138,
+          "% sum__num": 0.00012257242209323498,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00021355650503946926
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Sarah",
+          "sum__num": 564,
+          "SUM(num_girls)": 564,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005009481598593082,
+          "% SUM(num_girls)": 0.001175818173479046,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Christopher",
+          "sum__num": 1224,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1224,
+          "pct_boys": 1224,
+          "% sum__num": 0.0010871640916095624,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0018941533490457274
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Katie",
+          "sum__num": 182,
+          "SUM(num_girls)": 182,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001616534842099186,
+          "% SUM(num_girls)": 0.0003794306871865006,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Theresa",
+          "sum__num": 188,
+          "SUM(num_girls)": 188,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00016698271995310273,
+          "% SUM(num_girls)": 0.00039193939115968196,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Ian",
+          "sum__num": 759,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 759,
+          "pct_boys": 759,
+          "% sum__num": 0.0006741483215127924,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001174560777717081
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Chad",
+          "sum__num": 189,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 189,
+          "pct_boys": 189,
+          "% sum__num": 0.00016787092591030007,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002924795612497079
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Gregory",
+          "sum__num": 504,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 504,
+          "pct_boys": 504,
+          "% sum__num": 0.0004476558024274669,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007799454966658878
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Kelsey",
+          "sum__num": 565,
+          "SUM(num_girls)": 565,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005018363658165055,
+          "% SUM(num_girls)": 0.001177902957474576,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 378691200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jared",
+          "sum__num": 143,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 143,
+          "pct_boys": 143,
+          "% sum__num": 0.00012701345187922174,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00022129405956988483
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Brooke",
+          "sum__num": 288,
+          "SUM(num_girls)": 288,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002558033156728382,
+          "% SUM(num_girls)": 0.0006004177907127043,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Donna",
+          "sum__num": 101,
+          "SUM(num_girls)": 101,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00008970880167693285,
+          "% SUM(num_girls)": 0.00021056318354855253,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 7066,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 7066,
+          "pct_boys": 7066,
+          "% sum__num": 0.00627606329355651,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.01093471206238326
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Angel",
+          "sum__num": 225,
+          "SUM(num_girls)": 225,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00019984634036940486,
+          "% SUM(num_girls)": 0.0004690763989943002,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Julia",
+          "sum__num": 309,
+          "SUM(num_girls)": 309,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00027445564077398265,
+          "% SUM(num_girls)": 0.0006441982546188389,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Victoria",
+          "sum__num": 609,
+          "SUM(num_girls)": 609,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005409174279331891,
+          "% SUM(num_girls)": 0.001269633453277906,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "James",
+          "sum__num": 3883,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 3883,
+          "pct_boys": 3883,
+          "% sum__num": 0.003448903731797329,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0060089848483207186
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Lauren",
+          "sum__num": 235,
+          "SUM(num_girls)": 235,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002087283999413784,
+          "% SUM(num_girls)": 0.0004899242389496024,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Alex",
+          "sum__num": 485,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 485,
+          "pct_boys": 485,
+          "% sum__num": 0.00043077988924071714,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007505427894503086
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Luke",
+          "sum__num": 255,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 255,
+          "pct_boys": 255,
+          "% sum__num": 0.00022649251908532552,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003946152810511932
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Jeremy",
+          "sum__num": 189,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 189,
+          "pct_boys": 189,
+          "% sum__num": 0.00016787092591030007,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002924795612497079
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Benjamin",
+          "sum__num": 165,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 165,
+          "pct_boys": 165,
+          "% sum__num": 0.00014655398293756357,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00025533929950371327
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Tracy",
+          "sum__num": 72,
+          "SUM(num_girls)": 72,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00006395082891820955,
+          "% SUM(num_girls)": 0.00015010444767817608,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 448,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 448,
+          "pct_boys": 448,
+          "% sum__num": 0.000397916268824415,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006932848859252335
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Hunter",
+          "sum__num": 530,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 530,
+          "pct_boys": 530,
+          "% sum__num": 0.0004707491573145981,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008201807802240487
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Amy",
+          "sum__num": 586,
+          "SUM(num_girls)": 586,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00052048869091765,
+          "% SUM(num_girls)": 0.0012216834213807108,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 89,
+          "SUM(num_girls)": 89,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00007905033019056458,
+          "% SUM(num_girls)": 0.00018554577560218985,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Vincent",
+          "sum__num": 172,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 172,
+          "pct_boys": 172,
+          "% sum__num": 0.00015277142463794504,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000266171875846295
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Robert",
+          "sum__num": 1148,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1148,
+          "pct_boys": 1148,
+          "% sum__num": 0.0010196604388625634,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001776542520183411
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 10297,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 10297,
+          "pct_boys": 10297,
+          "% sum__num": 0.009145856741261164,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.01593471979993779
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Noah",
+          "sum__num": 293,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 293,
+          "pct_boys": 293,
+          "% sum__num": 0.000260244345458825,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004534206954823514
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Timothy",
+          "sum__num": 1073,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1073,
+          "pct_boys": 1073,
+          "% sum__num": 0.0009530449920727618,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0016604792022271778
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Alexander",
+          "sum__num": 944,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 944,
+          "pct_boys": 944,
+          "% sum__num": 0.000838466423594303,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014608502953424565
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Jose",
+          "sum__num": 447,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 447,
+          "pct_boys": 447,
+          "% sum__num": 0.0003970280628672176,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006917373750191505
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Andrea",
+          "sum__num": 40,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 40,
+          "pct_boys": 40,
+          "% sum__num": 0.0000355282382878942,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00006190043624332442
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Gary",
+          "sum__num": 567,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 567,
+          "pct_boys": 567,
+          "% sum__num": 0.0005036127777309003,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008774386837491238
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Kyle",
+          "sum__num": 509,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 509,
+          "pct_boys": 509,
+          "% sum__num": 0.00045209683221345367,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0007876830511963033
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Natalie",
+          "sum__num": 201,
+          "SUM(num_girls)": 201,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00017852939739666833,
+          "% SUM(num_girls)": 0.0004190415831015748,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 25802,
+          "SUM(num_girls)": 25802,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.022917490107606152,
+          "% SUM(num_girls)": 0.05379159665267082,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 1685,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1685,
+          "pct_boys": 1685,
+          "% sum__num": 0.001496627037877543,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0026075558767500416
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Charles",
+          "sum__num": 1006,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1006,
+          "pct_boys": 1006,
+          "% sum__num": 0.0008935351929405391,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0015567959715196093
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Charles",
+          "sum__num": 657,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 657,
+          "pct_boys": 657,
+          "% sum__num": 0.0005835513138786622,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0010167146652966038
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Kaitlyn",
+          "sum__num": 352,
+          "SUM(num_girls)": 352,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00031264849693346894,
+          "% SUM(num_girls)": 0.0007338439664266386,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Jeremy",
+          "sum__num": 1166,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1166,
+          "pct_boys": 1166,
+          "% sum__num": 0.0010356481460921157,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001804397716492907
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Rebecca",
+          "sum__num": 796,
+          "SUM(num_girls)": 796,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007070119419290945,
+          "% SUM(num_girls)": 0.0016594880604420576,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Andrea",
+          "sum__num": 525,
+          "SUM(num_girls)": 525,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00046630812752861134,
+          "% SUM(num_girls)": 0.0010945115976533672,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Jack",
+          "sum__num": 178,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 178,
+          "pct_boys": 178,
+          "% sum__num": 0.00015810066038112917,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00027545694128279367
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Kathryn",
+          "sum__num": 189,
+          "SUM(num_girls)": 189,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00016787092591030007,
+          "% SUM(num_girls)": 0.00039402417515521215,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Brian",
+          "sum__num": 2056,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2056,
+          "pct_boys": 2056,
+          "% sum__num": 0.0018261514479977618,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0031816824229068752
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Christian",
+          "sum__num": 1233,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1233,
+          "pct_boys": 1233,
+          "% sum__num": 0.0010951579452243387,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0019080809472004753
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Bradley",
+          "sum__num": 369,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 369,
+          "pct_boys": 369,
+          "% sum__num": 0.00032774799820582397,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005710315243446678
+        },
+        {
+          "__timestamp": 757382400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Brittany",
+          "sum__num": 813,
+          "SUM(num_girls)": 813,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007221114432014496,
+          "% SUM(num_girls)": 0.0016949293883660715,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Sean",
+          "sum__num": 418,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 418,
+          "pct_boys": 418,
+          "% sum__num": 0.0003712700901084944,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006468595587427403
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Kenneth",
+          "sum__num": 1980,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1980,
+          "pct_boys": 1980,
+          "% sum__num": 0.0017586477952507627,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.003064071594044559
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Steven",
+          "sum__num": 530,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 530,
+          "pct_boys": 530,
+          "% sum__num": 0.0004707491573145981,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008201807802240487
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Brenda",
+          "sum__num": 684,
+          "SUM(num_girls)": 684,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006075328747229908,
+          "% SUM(num_girls)": 0.0014259922529426725,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 1559,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1559,
+          "pct_boys": 1559,
+          "% sum__num": 0.0013847130872706762,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0024125695025835696
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 1114,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1114,
+          "pct_boys": 1114,
+          "% sum__num": 0.0009894614363178534,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017239271493765852
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Isaiah",
+          "sum__num": 242,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 242,
+          "pct_boys": 242,
+          "% sum__num": 0.0002149458416417599,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003744976392721128
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Amber",
+          "sum__num": 463,
+          "SUM(num_girls)": 463,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00041123935818237535,
+          "% SUM(num_girls)": 0.0009652549899304933,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Theresa",
+          "sum__num": 145,
+          "SUM(num_girls)": 145,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00012878986379361647,
+          "% SUM(num_girls)": 0.00030229367935188234,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Anthony",
+          "sum__num": 602,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 602,
+          "pct_boys": 602,
+          "% sum__num": 0.0005346999862328077,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009316015654620326
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Justin",
+          "sum__num": 2611,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2611,
+          "pct_boys": 2611,
+          "% sum__num": 0.0023191057542422937,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.004040550975783002
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Morgan",
+          "sum__num": 510,
+          "SUM(num_girls)": 510,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00045298503817065103,
+          "% SUM(num_girls)": 0.0010632398377204138,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Edward",
+          "sum__num": 437,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 437,
+          "pct_boys": 437,
+          "% sum__num": 0.0003881460032952441,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006762622659583193
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 1145,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1145,
+          "pct_boys": 1145,
+          "% sum__num": 0.0010169958209909713,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017718999874651617
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Elijah",
+          "sum__num": 6253,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 6253,
+          "pct_boys": 6253,
+          "% sum__num": 0.00555395185035506,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.009676585695737691
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Vincent",
+          "sum__num": 188,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 188,
+          "pct_boys": 188,
+          "% sum__num": 0.00016698271995310273,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002909320503436248
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Andrew",
+          "sum__num": 943,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 943,
+          "pct_boys": 943,
+          "% sum__num": 0.0008375782176371057,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014593027844363733
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Alexander",
+          "sum__num": 558,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 558,
+          "pct_boys": 558,
+          "% sum__num": 0.0004956189241161241,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008635110855943757
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Brooke",
+          "sum__num": 1213,
+          "SUM(num_girls)": 1213,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010773938260803914,
+          "% SUM(num_girls)": 0.0025288429865781606,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 556,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 556,
+          "pct_boys": 556,
+          "% sum__num": 0.0004938425122017294,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008604160637822095
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Teresa",
+          "sum__num": 301,
+          "SUM(num_girls)": 301,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00026734999311640384,
+          "% SUM(num_girls)": 0.0006275199826545971,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Stacy",
+          "sum__num": 4032,
+          "SUM(num_girls)": 4032,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0035812464194197352,
+          "% SUM(num_girls)": 0.00840584906997786,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Dennis",
+          "sum__num": 275,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 275,
+          "pct_boys": 275,
+          "% sum__num": 0.0002442566382292726,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00042556549917285543
+        },
+        {
+          "__timestamp": 410227200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Richard",
+          "sum__num": 524,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 524,
+          "pct_boys": 524,
+          "% sum__num": 0.00046541992157141397,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00081089571478755
+        },
+        {
+          "__timestamp": 0,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Melanie",
+          "sum__num": 129,
+          "SUM(num_girls)": 129,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00011457856847845879,
+          "% SUM(num_girls)": 0.0002689371354233988,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Frank",
+          "sum__num": 140,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 140,
+          "pct_boys": 140,
+          "% sum__num": 0.00012434883400762968,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00021665152685163548
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Cassandra",
+          "sum__num": 229,
+          "SUM(num_girls)": 229,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002033991641981943,
+          "% SUM(num_girls)": 0.0004774155349764211,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 429,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 429,
+          "pct_boys": 429,
+          "% sum__num": 0.0003810403556376653,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006638821787096545
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Brittany",
+          "sum__num": 1641,
+          "SUM(num_girls)": 1641,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0014575459757608595,
+          "% SUM(num_girls)": 0.003421130536665096,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 708,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 708,
+          "pct_boys": 708,
+          "% sum__num": 0.0006288498176957273,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0010956377215068423
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Brian",
+          "sum__num": 549,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 549,
+          "pct_boys": 549,
+          "% sum__num": 0.00048762507050134786,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008495834874396277
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Austin",
+          "sum__num": 1149,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1149,
+          "pct_boys": 1149,
+          "% sum__num": 0.0010205486448197608,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001778090031089494
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Charles",
+          "sum__num": 219,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 219,
+          "pct_boys": 219,
+          "% sum__num": 0.00019451710462622073,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00033890488843220124
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Crystal",
+          "sum__num": 255,
+          "SUM(num_girls)": 255,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00022649251908532552,
+          "% SUM(num_girls)": 0.0005316199188602069,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Christina",
+          "sum__num": 562,
+          "SUM(num_girls)": 562,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004991717479449134,
+          "% SUM(num_girls)": 0.0011716486054879854,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Cheryl",
+          "sum__num": 201,
+          "SUM(num_girls)": 201,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00017852939739666833,
+          "% SUM(num_girls)": 0.0004190415831015748,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Jordan",
+          "sum__num": 803,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 803,
+          "pct_boys": 803,
+          "% sum__num": 0.000713229383629476,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012426512575847378
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Julie",
+          "sum__num": 485,
+          "SUM(num_girls)": 485,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00043077988924071714,
+          "% SUM(num_girls)": 0.0010111202378321582,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Sophia",
+          "sum__num": 387,
+          "SUM(num_girls)": 387,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00034373570543537636,
+          "% SUM(num_girls)": 0.0008068114062701964,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Jacqueline",
+          "sum__num": 267,
+          "SUM(num_girls)": 267,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00023715099057169375,
+          "% SUM(num_girls)": 0.0005566373268065696,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Donna",
+          "sum__num": 756,
+          "SUM(num_girls)": 756,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006714837036412003,
+          "% SUM(num_girls)": 0.0015760967006208486,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Grace",
+          "sum__num": 577,
+          "SUM(num_girls)": 577,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005124948373028738,
+          "% SUM(num_girls)": 0.0012029203654209386,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Donna",
+          "sum__num": 101,
+          "SUM(num_girls)": 101,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00008970880167693285,
+          "% SUM(num_girls)": 0.00021056318354855253,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 946684800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Vanessa",
+          "sum__num": 259,
+          "SUM(num_girls)": 259,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00023004534291411492,
+          "% SUM(num_girls)": 0.0005399590548423277,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Joseph",
+          "sum__num": 1044,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1044,
+          "pct_boys": 1044,
+          "% sum__num": 0.0009272870193140385,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0016156013859507676
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Andrew",
+          "sum__num": 1438,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1438,
+          "pct_boys": 1438,
+          "% sum__num": 0.0012772401664497965,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002225320682947513
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Robert",
+          "sum__num": 609,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 609,
+          "pct_boys": 609,
+          "% sum__num": 0.0005409174279331891,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009424341418046144
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Amber",
+          "sum__num": 1488,
+          "SUM(num_girls)": 1488,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.001321650464309664,
+          "% SUM(num_girls)": 0.003102158585348972,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Julie",
+          "sum__num": 182,
+          "SUM(num_girls)": 182,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001616534842099186,
+          "% SUM(num_girls)": 0.0003794306871865006,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Charles",
+          "sum__num": 686,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 686,
+          "pct_boys": 686,
+          "% sum__num": 0.0006093092866373855,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001061592481573014
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Destiny",
+          "sum__num": 977,
+          "SUM(num_girls)": 977,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008677772201818157,
+          "% SUM(num_girls)": 0.002036833963633028,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Natalie",
+          "sum__num": 502,
+          "SUM(num_girls)": 502,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004458793905130722,
+          "% SUM(num_girls)": 0.001046561565756172,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Jill",
+          "sum__num": 172,
+          "SUM(num_girls)": 172,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00015277142463794504,
+          "% SUM(num_girls)": 0.00035858284723119837,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Lauren",
+          "sum__num": 619,
+          "SUM(num_girls)": 619,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005497994875051627,
+          "% SUM(num_girls)": 0.0012904812932332081,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Barbara",
+          "sum__num": 190,
+          "SUM(num_girls)": 190,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00016875913186749743,
+          "% SUM(num_girls)": 0.0003961089591507424,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Christopher",
+          "sum__num": 4057,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 4057,
+          "pct_boys": 4057,
+          "% sum__num": 0.003603451568349669,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00627825174597918
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Leslie",
+          "sum__num": 513,
+          "SUM(num_girls)": 513,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004556496560422431,
+          "% SUM(num_girls)": 0.0010694941897070045,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Jennifer",
+          "sum__num": 394,
+          "SUM(num_girls)": 394,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00034995314713575786,
+          "% SUM(num_girls)": 0.0008214048942389079,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Phillip",
+          "sum__num": 171,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 171,
+          "pct_boys": 171,
+          "% sum__num": 0.0001518832186807477,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002646243649402119
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Cassandra",
+          "sum__num": 187,
+          "SUM(num_girls)": 187,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00016609451399590537,
+          "% SUM(num_girls)": 0.0003898546071641517,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Andrea",
+          "sum__num": 393,
+          "SUM(num_girls)": 393,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003490649411785605,
+          "% SUM(num_girls)": 0.0008193201102433777,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Kevin",
+          "sum__num": 924,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 924,
+          "pct_boys": 924,
+          "% sum__num": 0.000820702304450356,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014299000772207942
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 69,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 69,
+          "pct_boys": 69,
+          "% sum__num": 0.00006128621104661749,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00010677825251973463
+        },
+        {
+          "__timestamp": 0,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Ronald",
+          "sum__num": 1181,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1181,
+          "pct_boys": 1181,
+          "% sum__num": 0.0010489712354500762,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0018276103800841537
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Luke",
+          "sum__num": 4823,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 4823,
+          "pct_boys": 4823,
+          "% sum__num": 0.004283817331562843,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.007463645100038842
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Adrian",
+          "sum__num": 704,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 704,
+          "pct_boys": 704,
+          "% sum__num": 0.0006252969938669379,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0010894476778825098
+        },
+        {
+          "__timestamp": 662688000000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Jasmine",
+          "sum__num": 299,
+          "SUM(num_girls)": 299,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002655735812020091,
+          "% SUM(num_girls)": 0.0006233504146635367,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Jessica",
+          "sum__num": 876,
+          "SUM(num_girls)": 876,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007780684185048829,
+          "% SUM(num_girls)": 0.0018262707800844754,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 788918400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 7071,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 7071,
+          "pct_boys": 7071,
+          "% sum__num": 0.006280504323342497,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.010942449616913675
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Samantha",
+          "sum__num": 1325,
+          "SUM(num_girls)": 1325,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0011768728932864954,
+          "% SUM(num_girls)": 0.0027623387940775455,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Noah",
+          "sum__num": 670,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 670,
+          "pct_boys": 670,
+          "% sum__num": 0.0005950979913222278,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001036832307075684
+        },
+        {
+          "__timestamp": -63158400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Nancy",
+          "sum__num": 1162,
+          "SUM(num_girls)": 1162,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010320953222633265,
+          "% SUM(num_girls)": 0.002422519002806119,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Shane",
+          "sum__num": 237,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 237,
+          "pct_boys": 237,
+          "% sum__num": 0.00021050481185577312,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003667600847416972
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Frank",
+          "sum__num": 386,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 386,
+          "pct_boys": 386,
+          "% sum__num": 0.000342847499478179,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005973392097480807
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "George",
+          "sum__num": 251,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 251,
+          "pct_boys": 251,
+          "% sum__num": 0.0002229396952565361,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00038842523742686075
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "April",
+          "sum__num": 427,
+          "SUM(num_girls)": 427,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00037926394372327055,
+          "% SUM(num_girls)": 0.0008902027660914053,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Frank",
+          "sum__num": 237,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 237,
+          "pct_boys": 237,
+          "% sum__num": 0.00021050481185577312,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003667600847416972
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Stephen",
+          "sum__num": 547,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 547,
+          "pct_boys": 547,
+          "% sum__num": 0.00048584865858695314,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0008464884656274616
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Christina",
+          "sum__num": 6040,
+          "SUM(num_girls)": 6040,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.005364763981472024,
+          "% SUM(num_girls)": 0.012592095333002547,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Jose",
+          "sum__num": 2038,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2038,
+          "pct_boys": 2038,
+          "% sum__num": 0.0018101637407682094,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0031538272265973794
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Stephen",
+          "sum__num": 624,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 624,
+          "pct_boys": 624,
+          "% sum__num": 0.0005542405172911495,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000965646805395861
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Jasmine",
+          "sum__num": 217,
+          "SUM(num_girls)": 217,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00019274069271182603,
+          "% SUM(num_girls)": 0.0004523981270300584,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Aaron",
+          "sum__num": 205,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 205,
+          "pct_boys": 205,
+          "% sum__num": 0.00018208222122545776,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00031723973574703765
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Sean",
+          "sum__num": 415,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 415,
+          "pct_boys": 415,
+          "% sum__num": 0.0003686054722369023,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006422170260244909
+        },
+        {
+          "__timestamp": 0,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Teresa",
+          "sum__num": 335,
+          "SUM(num_girls)": 335,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002975489956611139,
+          "% SUM(num_girls)": 0.0006984026385026248,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Natalie",
+          "sum__num": 738,
+          "SUM(num_girls)": 738,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006554959964116479,
+          "% SUM(num_girls)": 0.0015385705887013047,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Raymond",
+          "sum__num": 279,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 279,
+          "pct_boys": 279,
+          "% sum__num": 0.00024780946205806204,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00043175554279718787
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "MI",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 351,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 351,
+          "pct_boys": 351,
+          "% sum__num": 0.00031176029097627157,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005431763280351719
+        },
+        {
+          "__timestamp": 0,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Tina",
+          "sum__num": 740,
+          "SUM(num_girls)": 740,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006572724083260427,
+          "% SUM(num_girls)": 0.0015427401566923652,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Julie",
+          "sum__num": 1201,
+          "SUM(num_girls)": 1201,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010667353545940233,
+          "% SUM(num_girls)": 0.0025038255786317977,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jared",
+          "sum__num": 1836,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1836,
+          "pct_boys": 1836,
+          "% sum__num": 0.0016307461374143436,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0028412300235685912
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Allison",
+          "sum__num": 3566,
+          "SUM(num_girls)": 3566,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.003167342443365768,
+          "% SUM(num_girls)": 0.007434339728060776,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Matthew",
+          "sum__num": 2739,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2739,
+          "pct_boys": 2739,
+          "% sum__num": 0.002432796116763555,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00423863237176164
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Richard",
+          "sum__num": 357,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 357,
+          "pct_boys": 357,
+          "% sum__num": 0.0003170895267194557,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005524613934716705
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Stephanie",
+          "sum__num": 328,
+          "SUM(num_girls)": 328,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002913315539607324,
+          "% SUM(num_girls)": 0.0006838091505339132,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Brenda",
+          "sum__num": 714,
+          "SUM(num_girls)": 714,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0006341790534389114,
+          "% SUM(num_girls)": 0.0014885357728085793,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Stephen",
+          "sum__num": 715,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 715,
+          "pct_boys": 715,
+          "% sum__num": 0.0006350672593961088,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011064702978494242
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Paul",
+          "sum__num": 1234,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1234,
+          "pct_boys": 1234,
+          "% sum__num": 0.001096046151181536,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0019096284581065586
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Edward",
+          "sum__num": 126,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 126,
+          "pct_boys": 126,
+          "% sum__num": 0.00011191395060686673,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00019498637416647194
+        },
+        {
+          "__timestamp": 536457600000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Tiffany",
+          "sum__num": 166,
+          "SUM(num_girls)": 166,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001474421888947609,
+          "% SUM(num_girls)": 0.00034607414325801703,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Kyle",
+          "sum__num": 1154,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1154,
+          "pct_boys": 1154,
+          "% sum__num": 0.0010249896746057476,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017858275856199096
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Brooke",
+          "sum__num": 242,
+          "SUM(num_girls)": 242,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002149458416417599,
+          "% SUM(num_girls)": 0.000504517726918314,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Lisa",
+          "sum__num": 699,
+          "SUM(num_girls)": 699,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000620855964080951,
+          "% SUM(num_girls)": 0.001457264012875626,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Paul",
+          "sum__num": 596,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 596,
+          "pct_boys": 596,
+          "% sum__num": 0.0005293707504896235,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000922316500025534
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Jennifer",
+          "sum__num": 1258,
+          "SUM(num_girls)": 1258,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0011173630941542724,
+          "% SUM(num_girls)": 0.0026226582663770206,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Carlos",
+          "sum__num": 323,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 323,
+          "pct_boys": 323,
+          "% sum__num": 0.00028689052417474564,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004998460226648447
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Richard",
+          "sum__num": 299,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 299,
+          "pct_boys": 299,
+          "% sum__num": 0.0002655735812020091,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00046270576091885006
+        },
+        {
+          "__timestamp": 441763200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Jordan",
+          "sum__num": 79,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 79,
+          "pct_boys": 79,
+          "% sum__num": 0.00007016827061859104,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00012225336158056574
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Cody",
+          "sum__num": 1399,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1399,
+          "pct_boys": 1399,
+          "% sum__num": 0.0012426001341190995,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0021649677576102717
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Debra",
+          "sum__num": 454,
+          "SUM(num_girls)": 454,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0004032455045675991,
+          "% SUM(num_girls)": 0.0009464919339707213,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Dustin",
+          "sum__num": 171,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 171,
+          "pct_boys": 171,
+          "% sum__num": 0.0001518832186807477,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002646243649402119
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 7321,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 7321,
+          "pct_boys": 7321,
+          "% sum__num": 0.006502555812641835,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.011329327343434453
+        },
+        {
+          "__timestamp": 473385600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Lindsey",
+          "sum__num": 463,
+          "SUM(num_girls)": 463,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00041123935818237535,
+          "% SUM(num_girls)": 0.0009652549899304933,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Michelle",
+          "sum__num": 94,
+          "SUM(num_girls)": 94,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00008349135997655137,
+          "% SUM(num_girls)": 0.00019596969557984098,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Paul",
+          "sum__num": 1144,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1144,
+          "pct_boys": 1144,
+          "% sum__num": 0.001016107615033774,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0017703524765590787
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Dennis",
+          "sum__num": 195,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 195,
+          "pct_boys": 195,
+          "% sum__num": 0.0001732001616534842,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00030176462668620656
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Kathryn",
+          "sum__num": 149,
+          "SUM(num_girls)": 149,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00013234268762240587,
+          "% SUM(num_girls)": 0.00031063281533400325,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Robin",
+          "sum__num": 114,
+          "SUM(num_girls)": 114,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00010125547912049846,
+          "% SUM(num_girls)": 0.00023766537549044543,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Kimberly",
+          "sum__num": 1994,
+          "SUM(num_girls)": 1994,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0017710826786515258,
+          "% SUM(num_girls)": 0.004157059287087265,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "FL",
+          "gender": "girl",
+          "name": "Erica",
+          "sum__num": 199,
+          "SUM(num_girls)": 199,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00017675298548227363,
+          "% SUM(num_girls)": 0.0004148720151105144,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 126230400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Christine",
+          "sum__num": 390,
+          "SUM(num_girls)": 390,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0003464003233069684,
+          "% SUM(num_girls)": 0.000813065758256787,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Paula",
+          "sum__num": 13,
+          "SUM(num_girls)": 13,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.000011546677443565614,
+          "% SUM(num_girls)": 0.0000271021919418929,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 63072000000,
+          "state": "other",
+          "gender": "girl",
+          "name": "Donna",
+          "sum__num": 2931,
+          "SUM(num_girls)": 2931,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0026033316605454473,
+          "% SUM(num_girls)": 0.006110501890899084,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1072915200000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Kayla",
+          "sum__num": 1145,
+          "SUM(num_girls)": 1145,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0010169958209909713,
+          "% SUM(num_girls)": 0.0023870776748821055,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Nicole",
+          "sum__num": 836,
+          "SUM(num_girls)": 836,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007425401802169888,
+          "% SUM(num_girls)": 0.0017428794202632666,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 694224000000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Erin",
+          "sum__num": 249,
+          "SUM(num_girls)": 249,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00022116328334214139,
+          "% SUM(num_girls)": 0.0005191112148870255,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1009843200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Scott",
+          "sum__num": 37,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 37,
+          "pct_boys": 37,
+          "% sum__num": 0.000032863620416302134,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000057257903525075095
+        },
+        {
+          "__timestamp": 347155200000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Miguel",
+          "sum__num": 234,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 234,
+          "pct_boys": 234,
+          "% sum__num": 0.00020784019398418106,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0003621175520234479
+        },
+        {
+          "__timestamp": -94694400000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Heather",
+          "sum__num": 532,
+          "SUM(num_girls)": 532,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00047252556922899283,
+          "% SUM(num_girls)": 0.0011091050856220786,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 283996800000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Valerie",
+          "sum__num": 156,
+          "SUM(num_girls)": 156,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00013856012932278737,
+          "% SUM(num_girls)": 0.00032522630330271483,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Alex",
+          "sum__num": 321,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 321,
+          "pct_boys": 321,
+          "% sum__num": 0.0002851141122603509,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0004967510008526785
+        },
+        {
+          "__timestamp": -157766400000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "William",
+          "sum__num": 1636,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1636,
+          "pct_boys": 1636,
+          "% sum__num": 0.0014531049459748726,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.002531727842351969
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Rachel",
+          "sum__num": 539,
+          "SUM(num_girls)": 539,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00047874301092937433,
+          "% SUM(num_girls)": 0.0011236985735907903,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "John",
+          "sum__num": 2839,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2839,
+          "pct_boys": 2839,
+          "% sum__num": 0.0025216167124832906,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.004393383462369951
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Rachel",
+          "sum__num": 273,
+          "SUM(num_girls)": 273,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00024248022631487789,
+          "% SUM(num_girls)": 0.0005691460307797509,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Nathan",
+          "sum__num": 6199,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 6199,
+          "pct_boys": 6199,
+          "% sum__num": 0.005505988728666403,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.009593020106809203
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Nicholas",
+          "sum__num": 1036,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1036,
+          "pct_boys": 1036,
+          "% sum__num": 0.0009201813716564597,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0016032212987021027
+        },
+        {
+          "__timestamp": -126230400000,
+          "state": "NJ",
+          "gender": "girl",
+          "name": "Valerie",
+          "sum__num": 198,
+          "SUM(num_girls)": 198,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00017586477952507627,
+          "% SUM(num_girls)": 0.00041278723111498416,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "MI",
+          "gender": "girl",
+          "name": "Abigail",
+          "sum__num": 138,
+          "SUM(num_girls)": 138,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00012257242209323498,
+          "% SUM(num_girls)": 0.0002877001913831708,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 0,
+          "state": "other",
+          "gender": "boy",
+          "name": "Peter",
+          "sum__num": 2209,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 2209,
+          "pct_boys": 2209,
+          "% sum__num": 0.001962046959448957,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0034184515915375913
+        },
+        {
+          "__timestamp": 189302400000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Rebecca",
+          "sum__num": 839,
+          "SUM(num_girls)": 839,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0007452047980885808,
+          "% SUM(num_girls)": 0.001749133772249857,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 599616000000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 915,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 915,
+          "pct_boys": 915,
+          "% sum__num": 0.0008127084508355798,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0014159724790660463
+        },
+        {
+          "__timestamp": 252460800000,
+          "state": "NY",
+          "gender": "boy",
+          "name": "Vincent",
+          "sum__num": 417,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 417,
+          "pct_boys": 417,
+          "% sum__num": 0.000370381884151297,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006453120478366572
+        },
+        {
+          "__timestamp": 852076800000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Angela",
+          "sum__num": 294,
+          "SUM(num_girls)": 294,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00026113255141602235,
+          "% SUM(num_girls)": 0.0006129264946858856,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "OH",
+          "gender": "boy",
+          "name": "Jonathan",
+          "sum__num": 437,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 437,
+          "pct_boys": 437,
+          "% sum__num": 0.0003881460032952441,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0006762622659583193
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Angela",
+          "sum__num": 1041,
+          "SUM(num_girls)": 1041,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009246224014424465,
+          "% SUM(num_girls)": 0.002170260139346962,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "NY",
+          "gender": "girl",
+          "name": "Karen",
+          "sum__num": 922,
+          "SUM(num_girls)": 922,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0008189258925359612,
+          "% SUM(num_girls)": 0.0019221708438788656,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Crystal",
+          "sum__num": 332,
+          "SUM(num_girls)": 332,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002948843777895218,
+          "% SUM(num_girls)": 0.0006921482865160341,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Kristin",
+          "sum__num": 223,
+          "SUM(num_girls)": 223,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00019806992845501016,
+          "% SUM(num_girls)": 0.00046490683100323976,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 883612800000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jesus",
+          "sum__num": 798,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 798,
+          "pct_boys": 798,
+          "% sum__num": 0.0007087883538434892,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0012349137030543223
+        },
+        {
+          "__timestamp": 1199145600000,
+          "state": "CA",
+          "gender": "girl",
+          "name": "Abigail",
+          "sum__num": 1560,
+          "SUM(num_girls)": 1560,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0013856012932278736,
+          "% SUM(num_girls)": 0.003252263033027148,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 978307200000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Angel",
+          "sum__num": 172,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 172,
+          "pct_boys": 172,
+          "% sum__num": 0.00015277142463794504,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000266171875846295
+        },
+        {
+          "__timestamp": 1104537600000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Nathan",
+          "sum__num": 6295,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 6295,
+          "pct_boys": 6295,
+          "% sum__num": 0.005591256500557349,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.009741581153793182
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Noah",
+          "sum__num": 361,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 361,
+          "pct_boys": 361,
+          "% sum__num": 0.0003206423505482451,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005586514370960029
+        },
+        {
+          "__timestamp": 504921600000,
+          "state": "CA",
+          "gender": "boy",
+          "name": "Shawn",
+          "sum__num": 594,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 594,
+          "pct_boys": 594,
+          "% sum__num": 0.0005275943385752288,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009192214782133677
+        },
+        {
+          "__timestamp": 220924800000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Holly",
+          "sum__num": 303,
+          "SUM(num_girls)": 303,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002691264050307985,
+          "% SUM(num_girls)": 0.0006316895506456576,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Mark",
+          "sum__num": 748,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 748,
+          "pct_boys": 748,
+          "% sum__num": 0.0006643780559836215,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0011575381577501667
+        },
+        {
+          "__timestamp": 631152000000,
+          "state": "NJ",
+          "gender": "boy",
+          "name": "Jeffrey",
+          "sum__num": 434,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 434,
+          "pct_boys": 434,
+          "% sum__num": 0.00038548138542365205,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.00067161973324007
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Sydney",
+          "sum__num": 362,
+          "SUM(num_girls)": 362,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00032153055650544247,
+          "% SUM(num_girls)": 0.0007546918063819408,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Tara",
+          "sum__num": 245,
+          "SUM(num_girls)": 245,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00021761045951335196,
+          "% SUM(num_girls)": 0.0005107720789049047,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 820454400000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "David",
+          "sum__num": 1177,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1177,
+          "pct_boys": 1177,
+          "% sum__num": 0.0010454184116212868,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0018214203364598212
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "PA",
+          "gender": "girl",
+          "name": "Lisa",
+          "sum__num": 1050,
+          "SUM(num_girls)": 1050,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0009326162550572227,
+          "% SUM(num_girls)": 0.0021890231953067343,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "IL",
+          "gender": "girl",
+          "name": "Katie",
+          "sum__num": 202,
+          "SUM(num_girls)": 202,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0001794176033538657,
+          "% SUM(num_girls)": 0.00042112636709710507,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": -31536000000,
+          "state": "MA",
+          "gender": "girl",
+          "name": "Elizabeth",
+          "sum__num": 590,
+          "SUM(num_girls)": 590,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0005240415147464394,
+          "% SUM(num_girls)": 0.0012300225573628316,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 567993600000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Paul",
+          "sum__num": 359,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 359,
+          "pct_boys": 359,
+          "% sum__num": 0.00031886593863385043,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005555564152838367
+        },
+        {
+          "__timestamp": 31536000000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Craig",
+          "sum__num": 384,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 384,
+          "pct_boys": 384,
+          "% sum__num": 0.00034107108756378427,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0005942441879359145
+        },
+        {
+          "__timestamp": 1136073600000,
+          "state": "FL",
+          "gender": "boy",
+          "name": "Matthew",
+          "sum__num": 1236,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1236,
+          "pct_boys": 1236,
+          "% sum__num": 0.0010978225630959306,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0019127234799187246
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "OH",
+          "gender": "girl",
+          "name": "Sophia",
+          "sum__num": 620,
+          "SUM(num_girls)": 620,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.00055068769346236,
+          "% SUM(num_girls)": 0.0012925660772287384,
+          "% pct_boys": 0
+        },
+        {
+          "__timestamp": 1167609600000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Kyle",
+          "sum__num": 244,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 244,
+          "pct_boys": 244,
+          "% sum__num": 0.0002167222535561546,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.000377592661084279
+        },
+        {
+          "__timestamp": 725846400000,
+          "state": "PA",
+          "gender": "boy",
+          "name": "Timothy",
+          "sum__num": 696,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 696,
+          "pct_boys": 696,
+          "% sum__num": 0.0006181913462093591,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.001077067590633845
+        },
+        {
+          "__timestamp": 94694400000,
+          "state": "IL",
+          "gender": "boy",
+          "name": "Samuel",
+          "sum__num": 189,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 189,
+          "pct_boys": 189,
+          "% sum__num": 0.00016787092591030007,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002924795612497079
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Daniel",
+          "sum__num": 7609,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 7609,
+          "pct_boys": 7609,
+          "% sum__num": 0.006758359128314673,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.01177501048438639
+        },
+        {
+          "__timestamp": 157766400000,
+          "state": "other",
+          "gender": "boy",
+          "name": "Jacob",
+          "sum__num": 1423,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 1423,
+          "pct_boys": 1423,
+          "% sum__num": 0.001263917077091836,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0022021080193562665
+        },
+        {
+          "__timestamp": 915148800000,
+          "state": "MA",
+          "gender": "boy",
+          "name": "Luke",
+          "sum__num": 149,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 149,
+          "pct_boys": 149,
+          "% sum__num": 0.00013234268762240587,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0002305791250063835
+        },
+        {
+          "__timestamp": 1041379200000,
+          "state": "TX",
+          "gender": "boy",
+          "name": "Nathaniel",
+          "sum__num": 582,
+          "SUM(num_girls)": 0,
+          "SUM(num_boys)": 582,
+          "pct_boys": 582,
+          "% sum__num": 0.0005169358670888606,
+          "% SUM(num_girls)": 0,
+          "% pct_boys": 0.0009006513473403704
+        },
+        {
+          "__timestamp": 315532800000,
+          "state": "TX",
+          "gender": "girl",
+          "name": "Samantha",
+          "sum__num": 304,
+          "SUM(num_girls)": 304,
+          "SUM(num_boys)": 0,
+          "pct_boys": 0,
+          "% sum__num": 0.0002700146109879959,
+          "% SUM(num_girls)": 0.0006337743346411878,
+          "% pct_boys": 0
+        }
+      ],
+      "applied_filters": [],
+      "rejected_filters": []
+    }
+  ]
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts
new file mode 100644
index 0000000..2c3582a
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts
@@ -0,0 +1,102 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { TableChartProps } from '@superset-ui/plugin-chart-table/src';
+// @ts-ignore
+// eslint-disable-next-line import/extensions
+import birthNamesJson from './birthNames.json';
+
+export const birthNames = (birthNamesJson as unknown) as TableChartProps;
+export const basicFormData = {
+  alignPn: false,
+  colorPn: false,
+  includeSearch: false,
+  metrics: ['sum__num', 'MAX(ds)'],
+  orderDesc: true,
+  pageLength: 0,
+  percentMetrics: null,
+  showCellBars: true,
+  tableFilter: false,
+  tableTimestampFormat: 'smart_date',
+  timeseriesLimitMetric: null,
+};
+export const basicData = {
+  columns: ['name', 'sum__num', 'MAX(ds)', 'Abc.com'],
+  records: [
+    {
+      name: 'Michael',
+      sum__num: 2467063,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 110,
+    },
+    {
+      name: 'Christopher',
+      sum__num: 1725265,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 119,
+    },
+    {
+      name: 'David',
+      sum__num: 1570516,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 120,
+    },
+    {
+      name: 'James',
+      sum__num: 1506025,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 120,
+    },
+    {
+      name: 'John',
+      sum__num: 1426074,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 120,
+    },
+    {
+      name: 'Matthew',
+      sum__num: 1355803,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 120,
+    },
+    {
+      name: 'Robert',
+      sum__num: 1314800,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 120,
+    },
+    {
+      name: 'Daniel',
+      sum__num: 1159354,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 120,
+    },
+    {
+      name: 'Joseph',
+      sum__num: 1114098,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 120,
+    },
+    {
+      name: 'William',
+      sum__num: 1113701,
+      'MAX(ds)': '2008-01-01T00:00:00',
+      'Abc.com': 120,
+    },
+  ],
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx
new file mode 100644
index 0000000..8c9ab1b
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx
@@ -0,0 +1,143 @@
+import React from 'react';
+import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core';
+import { select, withKnobs } from '@storybook/addon-knobs';
+import {
+  WordCloudChartPlugin,
+  LegacyWordCloudChartPlugin,
+} from '@superset-ui/plugin-chart-word-cloud';
+import transformProps from '@superset-ui/plugin-chart-word-cloud/lib/plugin/transformProps';
+import { withResizableChartDemo } from '../../../shared/components/ResizableChartDemo';
+import data from './data';
+
+new WordCloudChartPlugin().configure({ key: 'word-cloud2' }).register();
+new LegacyWordCloudChartPlugin().configure({ key: 'legacy-word-cloud2' }).register();
+
+// Enable the new WordCloud Props to show case its full features
+// if the control panel is updated to be able to pass formData in the new format.
+getChartTransformPropsRegistry().registerValue('word-cloud2', transformProps);
+
+export default {
+  title: 'Chart Plugins|plugin-chart-word-cloud',
+  decorators: [withKnobs, withResizableChartDemo],
+};
+
+export const basic = ({ width, height }) => (
+  <SuperChart
+    chartType="word-cloud2"
+    width={width}
+    height={height}
+    queriesData={[{ data }]}
+    formData={{
+      encoding: {
+        color: {
+          value: '#0097e6',
+        },
+        fontSize: {
+          field: 'sum__num',
+          scale: {
+            range: [0, 70],
+            zero: true,
+          },
+          type: 'quantitative',
+        },
+        text: {
+          field: 'name',
+        },
+      },
+      metric: 'sum__num',
+      rotation: select('Rotation', ['square', 'flat', 'random'], 'flat'),
+      series: 'name',
+    }}
+  />
+);
+
+export const encodesColorByWordLength = ({ width, height }) => (
+  <SuperChart
+    chartType="word-cloud2"
+    width={width}
+    height={height}
+    queriesData={[{ data }]}
+    formData={{
+      encoding: {
+        color: {
+          field: 'name.length',
+          scale: {
+            range: ['#fbc531', '#c23616'],
+            type: 'linear',
+            zero: false,
+          },
+          type: 'quantitative',
+        },
+        fontSize: {
+          field: 'sum__num',
+          scale: {
+            range: [0, 70],
+            zero: true,
+          },
+          type: 'quantitative',
+        },
+        text: {
+          field: 'name',
+        },
+      },
+      metric: 'sum__num',
+      rotation: select('Rotation', ['square', 'flat', 'random'], 'flat'),
+      series: 'name',
+    }}
+  />
+);
+
+export const encodesFontByFirstLetter = ({ width, height }) => (
+  <SuperChart
+    chartType="word-cloud2"
+    width={width}
+    height={height}
+    queriesData={[{ data }]}
+    formData={{
+      encoding: {
+        color: {
+          value: '#8c7ae6',
+        },
+        fontFamily: {
+          field: 'name[0]',
+          scale: {
+            range: ['Helvetica', 'Monaco'],
+            type: 'ordinal',
+          },
+          type: 'nominal',
+        },
+        fontSize: {
+          field: 'sum__num',
+          scale: {
+            range: [0, 70],
+            zero: true,
+          },
+          type: 'quantitative',
+        },
+        text: {
+          field: 'name',
+        },
+      },
+      metric: 'sum__num',
+      rotation: select('Rotation', ['square', 'flat', 'random'], 'flat'),
+      series: 'name',
+    }}
+  />
+);
+
+export const legacyShim = ({ width, height }) => (
+  <SuperChart
+    chartType="legacy-word-cloud2"
+    width={width}
+    height={height}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      metric: 'sum__num',
+      rotation: select('Rotation', ['square', 'flat', 'random'], 'flat'),
+      series: 'name',
+      sizeFrom: '10',
+      sizeTo: '70',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/data.ts
new file mode 100644
index 0000000..0bb5b08
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/data.ts
@@ -0,0 +1,403 @@
+/* eslint-disable sort-keys */
+export default [
+  {
+    name: 'Michael',
+    sum__num: 2467129,
+  },
+  {
+    name: 'Christopher',
+    sum__num: 1725328,
+  },
+  {
+    name: 'David',
+    sum__num: 1570516,
+  },
+  {
+    name: 'James',
+    sum__num: 1506095,
+  },
+  {
+    name: 'John',
+    sum__num: 1426074,
+  },
+  {
+    name: 'Matthew',
+    sum__num: 1355877,
+  },
+  {
+    name: 'Jennifer',
+    sum__num: 1335587,
+  },
+  {
+    name: 'Robert',
+    sum__num: 1314800,
+  },
+  {
+    name: 'Daniel',
+    sum__num: 1159354,
+  },
+  {
+    name: 'Joseph',
+    sum__num: 1114167,
+  },
+  {
+    name: 'William',
+    sum__num: 1113793,
+  },
+  {
+    name: 'Joshua',
+    sum__num: 1073440,
+  },
+  {
+    name: 'Jessica',
+    sum__num: 997179,
+  },
+  {
+    name: 'Jason',
+    sum__num: 955817,
+  },
+  {
+    name: 'Andrew',
+    sum__num: 926315,
+  },
+  {
+    name: 'Anthony',
+    sum__num: 878978,
+  },
+  {
+    name: 'Brian',
+    sum__num: 874868,
+  },
+  {
+    name: 'Ryan',
+    sum__num: 816288,
+  },
+  {
+    name: 'Kevin',
+    sum__num: 791084,
+  },
+  {
+    name: 'Ashley',
+    sum__num: 789363,
+  },
+  {
+    name: 'Thomas',
+    sum__num: 746589,
+  },
+  {
+    name: 'Sarah',
+    sum__num: 744956,
+  },
+  {
+    name: 'Nicholas',
+    sum__num: 728617,
+  },
+  {
+    name: 'Amanda',
+    sum__num: 719676,
+  },
+  {
+    name: 'Elizabeth',
+    sum__num: 712676,
+  },
+  {
+    name: 'Justin',
+    sum__num: 704646,
+  },
+  {
+    name: 'Jacob',
+    sum__num: 700755,
+  },
+  {
+    name: 'Eric',
+    sum__num: 700518,
+  },
+  {
+    name: 'Jonathan',
+    sum__num: 691938,
+  },
+  {
+    name: 'Brandon',
+    sum__num: 682546,
+  },
+  {
+    name: 'Melissa',
+    sum__num: 664648,
+  },
+  {
+    name: 'Steven',
+    sum__num: 659750,
+  },
+  {
+    name: 'Michelle',
+    sum__num: 659302,
+  },
+  {
+    name: 'Richard',
+    sum__num: 652854,
+  },
+  {
+    name: 'Kimberly',
+    sum__num: 647609,
+  },
+  {
+    name: 'Timothy',
+    sum__num: 632770,
+  },
+  {
+    name: 'Stephanie',
+    sum__num: 628138,
+  },
+  {
+    name: 'Emily',
+    sum__num: 614741,
+  },
+  {
+    name: 'Lisa',
+    sum__num: 606540,
+  },
+  {
+    name: 'Mark',
+    sum__num: 589103,
+  },
+  {
+    name: 'Jeffrey',
+    sum__num: 557562,
+  },
+  {
+    name: 'Amy',
+    sum__num: 556835,
+  },
+  {
+    name: 'Charles',
+    sum__num: 556124,
+  },
+  {
+    name: 'Nicole',
+    sum__num: 545099,
+  },
+  {
+    name: 'Tyler',
+    sum__num: 499814,
+  },
+  {
+    name: 'Angela',
+    sum__num: 496228,
+  },
+  {
+    name: 'Samantha',
+    sum__num: 484266,
+  },
+  {
+    name: 'Benjamin',
+    sum__num: 482709,
+  },
+  {
+    name: 'Heather',
+    sum__num: 481474,
+  },
+  {
+    name: 'Scott',
+    sum__num: 469933,
+  },
+  {
+    name: 'Rebecca',
+    sum__num: 466847,
+  },
+  {
+    name: 'Adam',
+    sum__num: 459794,
+  },
+  {
+    name: 'Mary',
+    sum__num: 459471,
+  },
+  {
+    name: 'Zachary',
+    sum__num: 459381,
+  },
+  {
+    name: 'Aaron',
+    sum__num: 453035,
+  },
+  {
+    name: 'Rachel',
+    sum__num: 444351,
+  },
+  {
+    name: 'Alexander',
+    sum__num: 438239,
+  },
+  {
+    name: 'Paul',
+    sum__num: 411513,
+  },
+  {
+    name: 'Kyle',
+    sum__num: 409644,
+  },
+  {
+    name: 'Laura',
+    sum__num: 408963,
+  },
+  {
+    name: 'Lauren',
+    sum__num: 403946,
+  },
+  {
+    name: 'Megan',
+    sum__num: 402100,
+  },
+  {
+    name: 'Nathan',
+    sum__num: 393793,
+  },
+  {
+    name: 'Samuel',
+    sum__num: 390363,
+  },
+  {
+    name: 'Christina',
+    sum__num: 387580,
+  },
+  {
+    name: 'Kelly',
+    sum__num: 384611,
+  },
+  {
+    name: 'Jordan',
+    sum__num: 382963,
+  },
+  {
+    name: 'Patrick',
+    sum__num: 382673,
+  },
+  {
+    name: 'Jeremy',
+    sum__num: 381171,
+  },
+  {
+    name: 'Jose',
+    sum__num: 377759,
+  },
+  {
+    name: 'Stephen',
+    sum__num: 374269,
+  },
+  {
+    name: 'Sean',
+    sum__num: 366228,
+  },
+  {
+    name: 'Kenneth',
+    sum__num: 361043,
+  },
+  {
+    name: 'Gregory',
+    sum__num: 334166,
+  },
+  {
+    name: 'Brittany',
+    sum__num: 333252,
+  },
+  {
+    name: 'Amber',
+    sum__num: 331563,
+  },
+  {
+    name: 'Katherine',
+    sum__num: 329873,
+  },
+  {
+    name: 'Hannah',
+    sum__num: 329227,
+  },
+  {
+    name: 'Taylor',
+    sum__num: 327602,
+  },
+  {
+    name: 'Danielle',
+    sum__num: 322578,
+  },
+  {
+    name: 'Andrea',
+    sum__num: 318796,
+  },
+  {
+    name: 'Austin',
+    sum__num: 314059,
+  },
+  {
+    name: 'Tiffany',
+    sum__num: 301753,
+  },
+  {
+    name: 'Kayla',
+    sum__num: 291858,
+  },
+  {
+    name: 'Christian',
+    sum__num: 288189,
+  },
+  {
+    name: 'Maria',
+    sum__num: 287870,
+  },
+  {
+    name: 'Alexis',
+    sum__num: 286496,
+  },
+  {
+    name: 'Bryan',
+    sum__num: 282841,
+  },
+  {
+    name: 'Victoria',
+    sum__num: 277371,
+  },
+  {
+    name: 'Julie',
+    sum__num: 270542,
+  },
+  {
+    name: 'Shannon',
+    sum__num: 266886,
+  },
+  {
+    name: 'Christine',
+    sum__num: 264122,
+  },
+  {
+    name: 'Sara',
+    sum__num: 263050,
+  },
+  {
+    name: 'Erin',
+    sum__num: 262817,
+  },
+  {
+    name: 'Madison',
+    sum__num: 262812,
+  },
+  {
+    name: 'Crystal',
+    sum__num: 262697,
+  },
+  {
+    name: 'Karen',
+    sum__num: 257961,
+  },
+  {
+    name: 'Anna',
+    sum__num: 256136,
+  },
+  {
+    name: 'Dylan',
+    sum__num: 250778,
+  },
+  {
+    name: 'Edward',
+    sum__num: 248689,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/Stories.tsx
new file mode 100644
index 0000000..c4dbeab
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/Stories.tsx
@@ -0,0 +1,42 @@
+import React from 'react';
+import { action } from '@storybook/addon-actions';
+import { boolean, withKnobs } from '@storybook/addon-knobs';
+import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core';
+import { AntdSelectFilterPlugin } from '@superset-ui/plugin-filter-antd';
+import transformProps from '@superset-ui/plugin-filter-antd/lib/Select/transformProps';
+import data from './data';
+import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo';
+import 'antd/dist/antd.css';
+
+new AntdSelectFilterPlugin().configure({ key: 'filter_select' }).register();
+
+getChartTransformPropsRegistry().registerValue('filter_select', transformProps);
+
+export default {
+  title: 'Filter Plugins|plugin-filter-antd/Select',
+  decorators: [withKnobs, withResizableChartDemo],
+};
+
+export const Select = ({ width, height }) => {
+  return (
+    <SuperChart
+      chartType="filter_select"
+      width={width}
+      height={height}
+      queriesData={[{ data }]}
+      formData={{
+        adhoc_filters: [],
+        extra_filters: [],
+        multiSelect: boolean('Multi select', true),
+        inverseSelection: boolean('Inverse selection', false),
+        row_limit: 1000,
+        viz_type: 'filter_select',
+        groupby: ['country_name'],
+        metrics: ['SUM(SP_POP_TOTL)'],
+      }}
+      hooks={{
+        setExtraFormData: action('setExtraFormData'),
+      }}
+    />
+  );
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/data.ts
new file mode 100644
index 0000000..c2e5fa0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/data.ts
@@ -0,0 +1,216 @@
+export default [
+  { country_name: 'Afghanistan', 'SUM(SP_POP_TOTL)': 887557752 },
+  { country_name: 'Albania', 'SUM(SP_POP_TOTL)': 148154320 },
+  { country_name: 'Algeria', 'SUM(SP_POP_TOTL)': 1317290647 },
+  { country_name: 'American Samoa', 'SUM(SP_POP_TOTL)': 2294886 },
+  { country_name: 'Andorra', 'SUM(SP_POP_TOTL)': 2704725 },
+  { country_name: 'Angola', 'SUM(SP_POP_TOTL)': 641906296 },
+  { country_name: 'Antigua and Barbuda', 'SUM(SP_POP_TOTL)': 3887170 },
+  { country_name: 'Argentina', 'SUM(SP_POP_TOTL)': 1728332290 },
+  { country_name: 'Armenia', 'SUM(SP_POP_TOTL)': 160782905 },
+  { country_name: 'Aruba', 'SUM(SP_POP_TOTL)': 4048374 },
+  { country_name: 'Australia', 'SUM(SP_POP_TOTL)': 903260509 },
+  { country_name: 'Austria', 'SUM(SP_POP_TOTL)': 426785647 },
+  { country_name: 'Azerbaijan', 'SUM(SP_POP_TOTL)': 374210660 },
+  { country_name: 'Bahamas, The', 'SUM(SP_POP_TOTL)': 13446111 },
+  { country_name: 'Bahrain', 'SUM(SP_POP_TOTL)': 29724096 },
+  { country_name: 'Bangladesh', 'SUM(SP_POP_TOTL)': 5549261462 },
+  { country_name: 'Barbados', 'SUM(SP_POP_TOTL)': 14146501 },
+  { country_name: 'Belarus', 'SUM(SP_POP_TOTL)': 524490000 },
+  { country_name: 'Belgium', 'SUM(SP_POP_TOTL)': 551921585 },
+  { country_name: 'Belize', 'SUM(SP_POP_TOTL)': 10571460 },
+  { country_name: 'Benin', 'SUM(SP_POP_TOTL)': 290736360 },
+  { country_name: 'Bermuda', 'SUM(SP_POP_TOTL)': 3159267 },
+  { country_name: 'Bhutan', 'SUM(SP_POP_TOTL)': 25987074 },
+  { country_name: 'Bolivia', 'SUM(SP_POP_TOTL)': 368308373 },
+  { country_name: 'Bosnia and Herzegovina', 'SUM(SP_POP_TOTL)': 215521543 },
+  { country_name: 'Botswana', 'SUM(SP_POP_TOTL)': 70510085 },
+  { country_name: 'Brazil', 'SUM(SP_POP_TOTL)': 7752058955 },
+  { country_name: 'Brunei Darussalam', 'SUM(SP_POP_TOTL)': 13322318 },
+  { country_name: 'Bulgaria', 'SUM(SP_POP_TOTL)': 456247765 },
+  { country_name: 'Burkina Faso', 'SUM(SP_POP_TOTL)': 505122912 },
+  { country_name: 'Burundi', 'SUM(SP_POP_TOTL)': 305731834 },
+  { country_name: 'Cabo Verde', 'SUM(SP_POP_TOTL)': 19178461 },
+  { country_name: 'Cambodia', 'SUM(SP_POP_TOTL)': 523555378 },
+  { country_name: 'Cameroon', 'SUM(SP_POP_TOTL)': 664127790 },
+  { country_name: 'Canada', 'SUM(SP_POP_TOTL)': 1470276931 },
+  { country_name: 'Cayman Islands', 'SUM(SP_POP_TOTL)': 1480956 },
+  { country_name: 'Central African Republic', 'SUM(SP_POP_TOTL)': 158650217 },
+  { country_name: 'Chad', 'SUM(SP_POP_TOTL)': 355875809 },
+  { country_name: 'Channel Islands', 'SUM(SP_POP_TOTL)': 7515697 },
+  { country_name: 'Chile', 'SUM(SP_POP_TOTL)': 696739897 },
+  { country_name: 'China', 'SUM(SP_POP_TOTL)': 58345455000 },
+  { country_name: 'Colombia', 'SUM(SP_POP_TOTL)': 1776189608 },
+  { country_name: 'Comoros', 'SUM(SP_POP_TOTL)': 22692936 },
+  { country_name: 'Congo, Dem. Rep.', 'SUM(SP_POP_TOTL)': 2015439254 },
+  { country_name: 'Congo, Rep.', 'SUM(SP_POP_TOTL)': 130701144 },
+  { country_name: 'Costa Rica', 'SUM(SP_POP_TOTL)': 163515714 },
+  { country_name: "Cote d'Ivoire", 'SUM(SP_POP_TOTL)': 634194484 },
+  { country_name: 'Croatia', 'SUM(SP_POP_TOTL)': 246197511 },
+  { country_name: 'Cuba', 'SUM(SP_POP_TOTL)': 550461345 },
+  { country_name: 'Curacao', 'SUM(SP_POP_TOTL)': 7898637 },
+  { country_name: 'Cyprus', 'SUM(SP_POP_TOTL)': 43711039 },
+  { country_name: 'Czech Republic', 'SUM(SP_POP_TOTL)': 559416359 },
+  { country_name: 'Denmark', 'SUM(SP_POP_TOTL)': 283435789 },
+  { country_name: 'Djibouti', 'SUM(SP_POP_TOTL)': 26324244 },
+  { country_name: 'Dominica', 'SUM(SP_POP_TOTL)': 3881071 },
+  { country_name: 'Dominican Republic', 'SUM(SP_POP_TOTL)': 373939753 },
+  { country_name: 'Ecuador', 'SUM(SP_POP_TOTL)': 537148542 },
+  { country_name: 'Egypt, Arab Rep.', 'SUM(SP_POP_TOTL)': 2967887581 },
+  { country_name: 'El Salvador', 'SUM(SP_POP_TOTL)': 266413287 },
+  { country_name: 'Equatorial Guinea', 'SUM(SP_POP_TOTL)': 22627794 },
+  { country_name: 'Eritrea', 'SUM(SP_POP_TOTL)': 161125877 },
+  { country_name: 'Estonia', 'SUM(SP_POP_TOTL)': 77119567 },
+  { country_name: 'Ethiopia', 'SUM(SP_POP_TOTL)': 2750952916 },
+  { country_name: 'Faeroe Islands', 'SUM(SP_POP_TOTL)': 2399439 },
+  { country_name: 'Fiji', 'SUM(SP_POP_TOTL)': 37505227 },
+  { country_name: 'Finland', 'SUM(SP_POP_TOTL)': 271585488 },
+  { country_name: 'France', 'SUM(SP_POP_TOTL)': 3151638853 },
+  { country_name: 'French Polynesia', 'SUM(SP_POP_TOTL)': 9974982 },
+  { country_name: 'Gabon', 'SUM(SP_POP_TOTL)': 52489952 },
+  { country_name: 'Gambia, The', 'SUM(SP_POP_TOTL)': 50232086 },
+  { country_name: 'Georgia', 'SUM(SP_POP_TOTL)': 241070850 },
+  { country_name: 'Germany', 'SUM(SP_POP_TOTL)': 4361793335 },
+  { country_name: 'Ghana', 'SUM(SP_POP_TOTL)': 801844889 },
+  { country_name: 'Greece', 'SUM(SP_POP_TOTL)': 547065293 },
+  { country_name: 'Greenland', 'SUM(SP_POP_TOTL)': 2807533 },
+  { country_name: 'Grenada', 'SUM(SP_POP_TOTL)': 5366107 },
+  { country_name: 'Guam', 'SUM(SP_POP_TOTL)': 6647797 },
+  { country_name: 'Guatemala', 'SUM(SP_POP_TOTL)': 498361800 },
+  { country_name: 'Guinea', 'SUM(SP_POP_TOTL)': 362469063 },
+  { country_name: 'Guinea-Bissau', 'SUM(SP_POP_TOTL)': 58400669 },
+  { country_name: 'Guyana', 'SUM(SP_POP_TOTL)': 39868752 },
+  { country_name: 'Haiti', 'SUM(SP_POP_TOTL)': 377521290 },
+  { country_name: 'Honduras', 'SUM(SP_POP_TOTL)': 257791863 },
+  { country_name: 'Hong Kong SAR, China', 'SUM(SP_POP_TOTL)': 298353905 },
+  { country_name: 'Hungary', 'SUM(SP_POP_TOTL)': 566995908 },
+  { country_name: 'Iceland', 'SUM(SP_POP_TOTL)': 13716537 },
+  { country_name: 'India', 'SUM(SP_POP_TOTL)': 46023037597 },
+  { country_name: 'Indonesia', 'SUM(SP_POP_TOTL)': 9357861231 },
+  { country_name: 'Iran, Islamic Rep.', 'SUM(SP_POP_TOTL)': 2717528355 },
+  { country_name: 'Iraq', 'SUM(SP_POP_TOTL)': 983604177 },
+  { country_name: 'Ireland', 'SUM(SP_POP_TOTL)': 196019322 },
+  { country_name: 'Isle of Man', 'SUM(SP_POP_TOTL)': 3728525 },
+  { country_name: 'Israel', 'SUM(SP_POP_TOTL)': 263866720 },
+  { country_name: 'Italy', 'SUM(SP_POP_TOTL)': 3082869665 },
+  { country_name: 'Jamaica', 'SUM(SP_POP_TOTL)': 124779119 },
+  { country_name: 'Japan', 'SUM(SP_POP_TOTL)': 6454620759 },
+  { country_name: 'Jordan', 'SUM(SP_POP_TOTL)': 180850641 },
+  { country_name: 'Kazakhstan', 'SUM(SP_POP_TOTL)': 797168043 },
+  { country_name: 'Kenya', 'SUM(SP_POP_TOTL)': 1253201109 },
+  { country_name: 'Kiribati', 'SUM(SP_POP_TOTL)': 3874990 },
+  { country_name: 'Korea, Dem. Rep.', 'SUM(SP_POP_TOTL)': 1047335229 },
+  { country_name: 'Korea, Rep.', 'SUM(SP_POP_TOTL)': 2216456927 },
+  { country_name: 'Kosovo', 'SUM(SP_POP_TOTL)': 86627232 },
+  { country_name: 'Kuwait', 'SUM(SP_POP_TOTL)': 84737006 },
+  { country_name: 'Kyrgyz Republic', 'SUM(SP_POP_TOTL)': 222809200 },
+  { country_name: 'Lao PDR', 'SUM(SP_POP_TOTL)': 227340983 },
+  { country_name: 'Latvia', 'SUM(SP_POP_TOTL)': 130544986 },
+  { country_name: 'Lebanon', 'SUM(SP_POP_TOTL)': 162031498 },
+  { country_name: 'Lesotho', 'SUM(SP_POP_TOTL)': 81971241 },
+  { country_name: 'Liberia', 'SUM(SP_POP_TOTL)': 125666085 },
+  { country_name: 'Libya', 'SUM(SP_POP_TOTL)': 217716251 },
+  { country_name: 'Liechtenstein', 'SUM(SP_POP_TOTL)': 1527171 },
+  { country_name: 'Lithuania', 'SUM(SP_POP_TOTL)': 182416949 },
+  { country_name: 'Luxembourg', 'SUM(SP_POP_TOTL)': 21852156 },
+  { country_name: 'Macao SAR, China', 'SUM(SP_POP_TOTL)': 18882494 },
+  { country_name: 'Macedonia, FYR', 'SUM(SP_POP_TOTL)': 104100695 },
+  { country_name: 'Madagascar', 'SUM(SP_POP_TOTL)': 656478313 },
+  { country_name: 'Malawi', 'SUM(SP_POP_TOTL)': 470725354 },
+  { country_name: 'Malaysia', 'SUM(SP_POP_TOTL)': 978122682 },
+  { country_name: 'Maldives', 'SUM(SP_POP_TOTL)': 11478624 },
+  { country_name: 'Mali', 'SUM(SP_POP_TOTL)': 500758830 },
+  { country_name: 'Malta', 'SUM(SP_POP_TOTL)': 19363458 },
+  { country_name: 'Marshall Islands', 'SUM(SP_POP_TOTL)': 2086174 },
+  { country_name: 'Mauritania', 'SUM(SP_POP_TOTL)': 113489314 },
+  { country_name: 'Mauritius', 'SUM(SP_POP_TOTL)': 56066051 },
+  { country_name: 'Mexico', 'SUM(SP_POP_TOTL)': 4444653964 },
+  { country_name: 'Micronesia, Fed. Sts.', 'SUM(SP_POP_TOTL)': 4627492 },
+  { country_name: 'Moldova', 'SUM(SP_POP_TOTL)': 186156257 },
+  { country_name: 'Monaco', 'SUM(SP_POP_TOTL)': 1595554 },
+  { country_name: 'Mongolia', 'SUM(SP_POP_TOTL)': 106717826 },
+  { country_name: 'Montenegro', 'SUM(SP_POP_TOTL)': 31652512 },
+  { country_name: 'Morocco', 'SUM(SP_POP_TOTL)': 1277441301 },
+  { country_name: 'Mozambique', 'SUM(SP_POP_TOTL)': 807229371 },
+  { country_name: 'Myanmar', 'SUM(SP_POP_TOTL)': 2126848982 },
+  { country_name: 'Namibia', 'SUM(SP_POP_TOTL)': 75238033 },
+  { country_name: 'Nepal', 'SUM(SP_POP_TOTL)': 1007162709 },
+  { country_name: 'Netherlands', 'SUM(SP_POP_TOTL)': 803013980 },
+  { country_name: 'New Caledonia', 'SUM(SP_POP_TOTL)': 9225822 },
+  { country_name: 'New Zealand', 'SUM(SP_POP_TOTL)': 187593600 },
+  { country_name: 'Nicaragua', 'SUM(SP_POP_TOTL)': 213048662 },
+  { country_name: 'Niger', 'SUM(SP_POP_TOTL)': 471910464 },
+  { country_name: 'Nigeria', 'SUM(SP_POP_TOTL)': 5259800493 },
+  { country_name: 'Northern Mariana Islands', 'SUM(SP_POP_TOTL)': 2015842 },
+  { country_name: 'Norway', 'SUM(SP_POP_TOTL)': 233337059 },
+  { country_name: 'Oman', 'SUM(SP_POP_TOTL)': 93132249 },
+  { country_name: 'Pakistan', 'SUM(SP_POP_TOTL)': 5696041480 },
+  { country_name: 'Palau', 'SUM(SP_POP_TOTL)': 833299 },
+  { country_name: 'Panama', 'SUM(SP_POP_TOTL)': 130974461 },
+  { country_name: 'Papua New Guinea', 'SUM(SP_POP_TOTL)': 228299012 },
+  { country_name: 'Paraguay', 'SUM(SP_POP_TOTL)': 221768661 },
+  { country_name: 'Peru', 'SUM(SP_POP_TOTL)': 1121937313 },
+  { country_name: 'Philippines', 'SUM(SP_POP_TOTL)': 3272015554 },
+  { country_name: 'Poland', 'SUM(SP_POP_TOTL)': 1976772515 },
+  { country_name: 'Portugal', 'SUM(SP_POP_TOTL)': 536945679 },
+  { country_name: 'Puerto Rico', 'SUM(SP_POP_TOTL)': 181515497 },
+  { country_name: 'Qatar', 'SUM(SP_POP_TOTL)': 30075210 },
+  { country_name: 'Romania', 'SUM(SP_POP_TOTL)': 1171333228 },
+  { country_name: 'Russian Federation', 'SUM(SP_POP_TOTL)': 7667188460 },
+  { country_name: 'Rwanda', 'SUM(SP_POP_TOTL)': 347121852 },
+  { country_name: 'Samoa', 'SUM(SP_POP_TOTL)': 8770470 },
+  { country_name: 'San Marino', 'SUM(SP_POP_TOTL)': 1298411 },
+  { country_name: 'Sao Tome and Principe', 'SUM(SP_POP_TOTL)': 6169644 },
+  { country_name: 'Saudi Arabia', 'SUM(SP_POP_TOTL)': 828451525 },
+  { country_name: 'Senegal', 'SUM(SP_POP_TOTL)': 414475224 },
+  { country_name: 'Serbia', 'SUM(SP_POP_TOTL)': 186596480 },
+  { country_name: 'Seychelles', 'SUM(SP_POP_TOTL)': 3761184 },
+  { country_name: 'Sierra Leone', 'SUM(SP_POP_TOTL)': 203443826 },
+  { country_name: 'Singapore', 'SUM(SP_POP_TOTL)': 173168000 },
+  { country_name: 'Sint Maarten (Dutch part)', 'SUM(SP_POP_TOTL)': 597781 },
+  { country_name: 'Slovak Republic', 'SUM(SP_POP_TOTL)': 276228375 },
+  { country_name: 'Slovenia', 'SUM(SP_POP_TOTL)': 104119695 },
+  { country_name: 'Solomon Islands', 'SUM(SP_POP_TOTL)': 16859526 },
+  { country_name: 'Somalia', 'SUM(SP_POP_TOTL)': 332677926 },
+  { country_name: 'South Africa', 'SUM(SP_POP_TOTL)': 1871083248 },
+  { country_name: 'South Sudan', 'SUM(SP_POP_TOTL)': 319024522 },
+  { country_name: 'Spain', 'SUM(SP_POP_TOTL)': 2115316751 },
+  { country_name: 'Sri Lanka', 'SUM(SP_POP_TOTL)': 881137000 },
+  { country_name: 'St. Kitts and Nevis', 'SUM(SP_POP_TOTL)': 2535482 },
+  { country_name: 'St. Lucia', 'SUM(SP_POP_TOTL)': 7336842 },
+  { country_name: 'St. Martin (French part)', 'SUM(SP_POP_TOTL)': 1020457 },
+  { country_name: 'St. Vincent and the Grenadines', 'SUM(SP_POP_TOTL)': 5557117 },
+  { country_name: 'Sudan', 'SUM(SP_POP_TOTL)': 1118903636 },
+  { country_name: 'Suriname', 'SUM(SP_POP_TOTL)': 22687861 },
+  { country_name: 'Swaziland', 'SUM(SP_POP_TOTL)': 42858935 },
+  { country_name: 'Sweden', 'SUM(SP_POP_TOTL)': 468210684 },
+  { country_name: 'Switzerland', 'SUM(SP_POP_TOTL)': 369360744 },
+  { country_name: 'Syrian Arab Republic', 'SUM(SP_POP_TOTL)': 663924524 },
+  { country_name: 'Tajikistan', 'SUM(SP_POP_TOTL)': 267603756 },
+  { country_name: 'Tanzania', 'SUM(SP_POP_TOTL)': 1413734053 },
+  { country_name: 'Thailand', 'SUM(SP_POP_TOTL)': 2827157965 },
+  { country_name: 'Timor-Leste', 'SUM(SP_POP_TOTL)': 41694123 },
+  { country_name: 'Togo', 'SUM(SP_POP_TOTL)': 204624027 },
+  { country_name: 'Tonga', 'SUM(SP_POP_TOTL)': 5038574 },
+  { country_name: 'Trinidad and Tobago', 'SUM(SP_POP_TOTL)': 62771502 },
+  { country_name: 'Tunisia', 'SUM(SP_POP_TOTL)': 415992799 },
+  { country_name: 'Turkey', 'SUM(SP_POP_TOTL)': 2805220683 },
+  { country_name: 'Turkmenistan', 'SUM(SP_POP_TOTL)': 189687365 },
+  { country_name: 'Turks and Caicos Islands', 'SUM(SP_POP_TOTL)': 775185 },
+  { country_name: 'Tuvalu', 'SUM(SP_POP_TOTL)': 466709 },
+  { country_name: 'Uganda', 'SUM(SP_POP_TOTL)': 987376102 },
+  { country_name: 'Ukraine', 'SUM(SP_POP_TOTL)': 2657782543 },
+  { country_name: 'United Arab Emirates', 'SUM(SP_POP_TOTL)': 134952923 },
+  { country_name: 'United Kingdom', 'SUM(SP_POP_TOTL)': 3169118137 },
+  { country_name: 'United States', 'SUM(SP_POP_TOTL)': 13604468357 },
+  { country_name: 'Uruguay', 'SUM(SP_POP_TOTL)': 167612670 },
+  { country_name: 'Uzbekistan', 'SUM(SP_POP_TOTL)': 1053380227 },
+  { country_name: 'Vanuatu', 'SUM(SP_POP_TOTL)': 7966814 },
+  { country_name: 'Venezuela, RB', 'SUM(SP_POP_TOTL)': 1036057583 },
+  { country_name: 'Vietnam', 'SUM(SP_POP_TOTL)': 3420037000 },
+  { country_name: 'Virgin Islands (U.S.)', 'SUM(SP_POP_TOTL)': 5006756 },
+  { country_name: 'West Bank and Gaza', 'SUM(SP_POP_TOTL)': 77390117 },
+  { country_name: 'Yemen, Rep.', 'SUM(SP_POP_TOTL)': 695646128 },
+  { country_name: 'Zambia', 'SUM(SP_POP_TOTL)': 438847085 },
+  { country_name: 'Zimbabwe', 'SUM(SP_POP_TOTL)': 509866860 },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/Stories.tsx
new file mode 100644
index 0000000..273fbb4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/Stories.tsx
@@ -0,0 +1,12 @@
+import { BoxPlotChartPlugin, LegacyBoxPlotChartPlugin } from '@superset-ui/preset-chart-xy';
+import { BOX_PLOT_PLUGIN_LEGACY_TYPE, BOX_PLOT_PLUGIN_TYPE } from './constants';
+
+new LegacyBoxPlotChartPlugin().configure({ key: BOX_PLOT_PLUGIN_LEGACY_TYPE }).register();
+new BoxPlotChartPlugin().configure({ key: BOX_PLOT_PLUGIN_TYPE }).register();
+
+export default {
+  title: 'Chart Plugins|preset-chart-xy/BoxPlot',
+};
+
+export { basic, horizontal } from './stories/Basic';
+export { legacy } from './stories/Legacy';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/constants.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/constants.ts
new file mode 100644
index 0000000..7e3c840
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/constants.ts
@@ -0,0 +1,2 @@
+export const BOX_PLOT_PLUGIN_TYPE = 'v2-box-plot';
+export const BOX_PLOT_PLUGIN_LEGACY_TYPE = 'v2-box-plot/legacy';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/data.ts
new file mode 100644
index 0000000..fc1ee8f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/data.ts
@@ -0,0 +1,80 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    label: 'East Asia & Pacific',
+    values: {
+      Q1: 1384725172.5,
+      Q2: 1717904169.0,
+      Q3: 2032724922.5,
+      whisker_high: 2240687901.0,
+      whisker_low: 1031863394.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'Europe & Central Asia',
+    values: {
+      Q1: 751386460.5,
+      Q2: 820716895.0,
+      Q3: 862814192.5,
+      whisker_high: 903095786.0,
+      whisker_low: 660881033.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'Latin America & Caribbean',
+    values: {
+      Q1: 313690832.5,
+      Q2: 421490233.0,
+      Q3: 529668114.5,
+      whisker_high: 626270167.0,
+      whisker_low: 220564224.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'Middle East & North Africa',
+    values: {
+      Q1: 152382756.5,
+      Q2: 232066828.0,
+      Q3: 318191071.5,
+      whisker_high: 417451428.0,
+      whisker_low: 105512645.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'North America',
+    values: {
+      Q1: 235506847.5,
+      Q2: 268896849.0,
+      Q3: 314553651.5,
+      whisker_high: 354462656.0,
+      whisker_low: 198624409.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'South Asia',
+    values: {
+      Q1: 772373036.5,
+      Q2: 1059570231.0,
+      Q3: 1398841234.0,
+      whisker_high: 1720976995.0,
+      whisker_low: 572036107.0,
+      outliers: [],
+    },
+  },
+  {
+    label: 'Sub-Saharan Africa',
+    values: {
+      Q1: 320037758.0,
+      Q2: 467337821.0,
+      Q3: 676768689.0,
+      whisker_high: 974315323.0,
+      whisker_low: 228268752.0,
+      outliers: [],
+    },
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx
new file mode 100644
index 0000000..bd980d6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx
@@ -0,0 +1,90 @@
+/* eslint-disable no-magic-numbers, sort-keys */
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import data from '../data';
+
+export const basic = () => (
+  <SuperChart
+    chartType="v2-box-plot"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      encoding: {
+        x: {
+          type: 'nominal',
+          field: 'label',
+          scale: {
+            type: 'band',
+            paddingInner: 0.15,
+            paddingOuter: 0.3,
+          },
+          axis: {
+            label: 'Region',
+          },
+        },
+        y: {
+          field: 'value',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+          },
+          axis: {
+            label: 'Population',
+            numTicks: 5,
+          },
+        },
+        color: {
+          type: 'nominal',
+          field: 'label',
+          scale: {
+            scheme: 'd3Category10',
+          },
+        },
+      },
+    }}
+  />
+);
+
+export const horizontal = () => (
+  <SuperChart
+    chartType="v2-box-plot"
+    width={400}
+    height={400}
+    queriesData={[{ data }]}
+    formData={{
+      encoding: {
+        y: {
+          type: 'nominal',
+          field: 'label',
+          scale: {
+            type: 'band',
+            paddingInner: 0.15,
+            paddingOuter: 0.3,
+          },
+          axis: {
+            label: 'Region',
+          },
+        },
+        x: {
+          field: 'value',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+          },
+          axis: {
+            label: 'Population',
+            numTicks: 5,
+          },
+        },
+        color: {
+          type: 'nominal',
+          field: 'label',
+          scale: {
+            scheme: 'd3Category10',
+          },
+        },
+      },
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx
new file mode 100644
index 0000000..64a52fb
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx
@@ -0,0 +1,21 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import data from '../data';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+export const legacy = () => (
+  <SuperChart
+    chartType="v2-box-plot/legacy"
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      colorScheme: 'd3Category10',
+      groupby: ['region'],
+      metrics: ['sum__SP_POP_TOTL'],
+      vizType: 'box_plot',
+      whiskerOptions: 'Min/max (no outliers)',
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/Stories.tsx
new file mode 100644
index 0000000..524e8e1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/Stories.tsx
@@ -0,0 +1,18 @@
+import { LineChartPlugin, LegacyLineChartPlugin } from '@superset-ui/preset-chart-xy';
+import { LINE_PLUGIN_TYPE, LINE_PLUGIN_LEGACY_TYPE } from './constants';
+import { withKnobs } from '@storybook/addon-knobs';
+
+new LegacyLineChartPlugin().configure({ key: LINE_PLUGIN_LEGACY_TYPE }).register();
+new LineChartPlugin().configure({ key: LINE_PLUGIN_TYPE }).register();
+
+export default {
+  title: 'Chart Plugins|preset-chart-xy/Line',
+  decorators: [withKnobs],
+};
+
+export { default as basic } from './stories/basic';
+export { default as withLabelFlush } from './stories/flush';
+export { default as withMissingData } from './stories/missing';
+export { default as legacyShim } from './stories/legacy';
+export { default as withTimeShift } from './stories/timeShift';
+export { default as query } from './stories/query';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/constants.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/constants.ts
new file mode 100644
index 0000000..2109c66
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/constants.ts
@@ -0,0 +1,2 @@
+export const LINE_PLUGIN_TYPE = 'v2-line';
+export const LINE_PLUGIN_LEGACY_TYPE = 'v2-line/legacy';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data.js b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data.js
new file mode 100644
index 0000000..17dfb0e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data.js
@@ -0,0 +1,223 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  { x: -157766400000, y: 24703, name: 'Christopher' },
+  { x: -126230400000, y: 27861, name: 'Christopher' },
+  { x: -94694400000, y: 29436, name: 'Christopher' },
+  { x: -63158400000, y: 31463, name: 'Christopher' },
+  { x: -31536000000, y: 35718, name: 'Christopher' },
+  { x: 0, y: 41758, name: 'Christopher' },
+  { x: 31536000000, y: 48172, name: 'Christopher' },
+  { x: 63072000000, y: 52092, name: 'Christopher' },
+  { x: 94694400000, y: 48217, name: 'Christopher' },
+  { x: 126230400000, y: 48476, name: 'Christopher' },
+  { x: 157766400000, y: 46438, name: 'Christopher' },
+  { x: 189302400000, y: 45086, name: 'Christopher' },
+  { x: 220924800000, y: 46610, name: 'Christopher' },
+  { x: 252460800000, y: 47107, name: 'Christopher' },
+  { x: 283996800000, y: 50514, name: 'Christopher' },
+  { x: 315532800000, y: 48969, name: 'Christopher' },
+  { x: 347155200000, y: 50108, name: 'Christopher' },
+  { x: 378691200000, y: 59055, name: 'Christopher' },
+  { x: 410227200000, y: 59188, name: 'Christopher' },
+  { x: 441763200000, y: 59859, name: 'Christopher' },
+  { x: 473385600000, y: 59516, name: 'Christopher' },
+  { x: 504921600000, y: 56633, name: 'Christopher' },
+  { x: 536457600000, y: 54466, name: 'Christopher' },
+  { x: 567993600000, y: 52996, name: 'Christopher' },
+  { x: 599616000000, y: 53205, name: 'Christopher' },
+  { x: 631152000000, y: 52322, name: 'Christopher' },
+  { x: 662688000000, y: 47109, name: 'Christopher' },
+  { x: 694224000000, y: 42470, name: 'Christopher' },
+  { x: 725846400000, y: 38257, name: 'Christopher' },
+  { x: 757382400000, y: 34823, name: 'Christopher' },
+  { x: 788918400000, y: 32728, name: 'Christopher' },
+  { x: 820454400000, y: 30988, name: 'Christopher' },
+  { x: 852076800000, y: 29179, name: 'Christopher' },
+  { x: 883612800000, y: 27083, name: 'Christopher' },
+  { x: 915148800000, y: 25700, name: 'Christopher' },
+  { x: 946684800000, y: 24959, name: 'Christopher' },
+  { x: 978307200000, y: 23180, name: 'Christopher' },
+  { x: 1009843200000, y: 21731, name: 'Christopher' },
+  { x: 1041379200000, y: 20793, name: 'Christopher' },
+  { x: 1072915200000, y: 19739, name: 'Christopher' },
+  { x: 1104537600000, y: 19190, name: 'Christopher' },
+  { x: 1136073600000, y: 19674, name: 'Christopher' },
+  { x: 1167609600000, y: 19986, name: 'Christopher' },
+  { x: 1199145600000, y: 17771, name: 'Christopher' },
+  { x: -157766400000, y: 67646, name: 'David' },
+  { x: -126230400000, y: 66207, name: 'David' },
+  { x: -94694400000, y: 66581, name: 'David' },
+  { x: -63158400000, y: 63531, name: 'David' },
+  { x: -31536000000, y: 63502, name: 'David' },
+  { x: 0, y: 61570, name: 'David' },
+  { x: 31536000000, y: 52948, name: 'David' },
+  { x: 63072000000, y: 46218, name: 'David' },
+  { x: 94694400000, y: 40968, name: 'David' },
+  { x: 126230400000, y: 41654, name: 'David' },
+  { x: 157766400000, y: 39019, name: 'David' },
+  { x: 189302400000, y: 39165, name: 'David' },
+  { x: 220924800000, y: 40407, name: 'David' },
+  { x: 252460800000, y: 40533, name: 'David' },
+  { x: 283996800000, y: 41898, name: 'David' },
+  { x: 315532800000, y: 41743, name: 'David' },
+  { x: 347155200000, y: 40486, name: 'David' },
+  { x: 378691200000, y: 40283, name: 'David' },
+  { x: 410227200000, y: 39048, name: 'David' },
+  { x: 441763200000, y: 38346, name: 'David' },
+  { x: 473385600000, y: 38395, name: 'David' },
+  { x: 504921600000, y: 37021, name: 'David' },
+  { x: 536457600000, y: 36672, name: 'David' },
+  { x: 567993600000, y: 35214, name: 'David' },
+  { x: 599616000000, y: 35139, name: 'David' },
+  { x: 631152000000, y: 33661, name: 'David' },
+  { x: 662688000000, y: 30347, name: 'David' },
+  { x: 694224000000, y: 28344, name: 'David' },
+  { x: 725846400000, y: 26947, name: 'David' },
+  { x: 757382400000, y: 24784, name: 'David' },
+  { x: 788918400000, y: 22967, name: 'David' },
+  { x: 820454400000, y: 22941, name: 'David' },
+  { x: 852076800000, y: 21824, name: 'David' },
+  { x: 883612800000, y: 20816, name: 'David' },
+  { x: 915148800000, y: 20267, name: 'David' },
+  { x: 946684800000, y: 19695, name: 'David' },
+  { x: 978307200000, y: 19281, name: 'David' },
+  { x: 1009843200000, y: 18600, name: 'David' },
+  { x: 1041379200000, y: 18557, name: 'David' },
+  { x: 1072915200000, y: 18315, name: 'David' },
+  { x: 1104537600000, y: 18017, name: 'David' },
+  { x: 1136073600000, y: 17510, name: 'David' },
+  { x: 1167609600000, y: 17400, name: 'David' },
+  { x: 1199145600000, y: 16049, name: 'David' },
+  { x: -157766400000, y: 67506, name: 'James' },
+  { x: -126230400000, y: 65036, name: 'James' },
+  { x: -94694400000, y: 61554, name: 'James' },
+  { x: -63158400000, y: 60584, name: 'James' },
+  { x: -31536000000, y: 59824, name: 'James' },
+  { x: 0, y: 61597, name: 'James' },
+  { x: 31536000000, y: 54463, name: 'James' },
+  { x: 63072000000, y: 46960, name: 'James' },
+  { x: 94694400000, y: 42782, name: 'James' },
+  { x: 126230400000, y: 41258, name: 'James' },
+  { x: 157766400000, y: 39471, name: 'James' },
+  { x: 189302400000, y: 38203, name: 'James' },
+  { x: 220924800000, y: 39916, name: 'James' },
+  { x: 252460800000, y: 39783, name: 'James' },
+  { x: 283996800000, y: 39237, name: 'James' },
+  { x: 315532800000, y: 39185, name: 'James' },
+  { x: 347155200000, y: 38176, name: 'James' },
+  { x: 378691200000, y: 38750, name: 'James' },
+  { x: 410227200000, y: 36228, name: 'James' },
+  { x: 441763200000, y: 35728, name: 'James' },
+  { x: 473385600000, y: 35750, name: 'James' },
+  { x: 504921600000, y: 33955, name: 'James' },
+  { x: 536457600000, y: 32552, name: 'James' },
+  { x: 567993600000, y: 32418, name: 'James' },
+  { x: 599616000000, y: 32658, name: 'James' },
+  { x: 631152000000, y: 32288, name: 'James' },
+  { x: 662688000000, y: 30460, name: 'James' },
+  { x: 694224000000, y: 28450, name: 'James' },
+  { x: 725846400000, y: 26193, name: 'James' },
+  { x: 757382400000, y: 24706, name: 'James' },
+  { x: 788918400000, y: 22691, name: 'James' },
+  { x: 820454400000, y: 21122, name: 'James' },
+  { x: 852076800000, y: 20368, name: 'James' },
+  { x: 883612800000, y: 19651, name: 'James' },
+  { x: 915148800000, y: 18508, name: 'James' },
+  { x: 946684800000, y: 17939, name: 'James' },
+  { x: 978307200000, y: 17023, name: 'James' },
+  { x: 1009843200000, y: 16905, name: 'James' },
+  { x: 1041379200000, y: 16832, name: 'James' },
+  { x: 1072915200000, y: 16459, name: 'James' },
+  { x: 1104537600000, y: 16046, name: 'James' },
+  { x: 1136073600000, y: 16139, name: 'James' },
+  { x: 1167609600000, y: 15821, name: 'James' },
+  { x: 1199145600000, y: 14920, name: 'James' },
+  { x: -157766400000, y: 71390, name: 'John' },
+  { x: -126230400000, y: 64858, name: 'John' },
+  { x: -94694400000, y: 61480, name: 'John' },
+  { x: -63158400000, y: 60754, name: 'John' },
+  { x: -31536000000, y: 58644, name: 'John' },
+  { x: 0, y: 58348, name: 'John' },
+  { x: 31536000000, y: 51382, name: 'John' },
+  { x: 63072000000, y: 43028, name: 'John' },
+  { x: 94694400000, y: 39061, name: 'John' },
+  { x: 126230400000, y: 37553, name: 'John' },
+  { x: 157766400000, y: 34970, name: 'John' },
+  { x: 189302400000, y: 33876, name: 'John' },
+  { x: 220924800000, y: 34103, name: 'John' },
+  { x: 252460800000, y: 33895, name: 'John' },
+  { x: 283996800000, y: 35305, name: 'John' },
+  { x: 315532800000, y: 35131, name: 'John' },
+  { x: 347155200000, y: 34761, name: 'John' },
+  { x: 378691200000, y: 34560, name: 'John' },
+  { x: 410227200000, y: 33047, name: 'John' },
+  { x: 441763200000, y: 32484, name: 'John' },
+  { x: 473385600000, y: 31397, name: 'John' },
+  { x: 504921600000, y: 30103, name: 'John' },
+  { x: 536457600000, y: 29462, name: 'John' },
+  { x: 567993600000, y: 29301, name: 'John' },
+  { x: 599616000000, y: 29751, name: 'John' },
+  { x: 631152000000, y: 29011, name: 'John' },
+  { x: 662688000000, y: 27727, name: 'John' },
+  { x: 694224000000, y: 26156, name: 'John' },
+  { x: 725846400000, y: 24918, name: 'John' },
+  { x: 757382400000, y: 24119, name: 'John' },
+  { x: 788918400000, y: 23174, name: 'John' },
+  { x: 820454400000, y: 22104, name: 'John' },
+  { x: 852076800000, y: 21330, name: 'John' },
+  { x: 883612800000, y: 20556, name: 'John' },
+  { x: 915148800000, y: 20280, name: 'John' },
+  { x: 946684800000, y: 20032, name: 'John' },
+  { x: 978307200000, y: 18839, name: 'John' },
+  { x: 1009843200000, y: 17400, name: 'John' },
+  { x: 1041379200000, y: 17170, name: 'John' },
+  { x: 1072915200000, y: 16381, name: 'John' },
+  { x: 1104537600000, y: 15692, name: 'John' },
+  { x: 1136073600000, y: 15083, name: 'John' },
+  { x: 1167609600000, y: 14348, name: 'John' },
+  { x: 1199145600000, y: 13110, name: 'John' },
+  { x: -157766400000, y: 80812, name: 'Michael' },
+  { x: -126230400000, y: 79709, name: 'Michael' },
+  { x: -94694400000, y: 82204, name: 'Michael' },
+  { x: -63158400000, y: 81785, name: 'Michael' },
+  { x: -31536000000, y: 84893, name: 'Michael' },
+  { x: 0, y: 85015, name: 'Michael' },
+  { x: 31536000000, y: 77321, name: 'Michael' },
+  { x: 63072000000, y: 71197, name: 'Michael' },
+  { x: 94694400000, y: 67598, name: 'Michael' },
+  { x: 126230400000, y: 67304, name: 'Michael' },
+  { x: 157766400000, y: 68149, name: 'Michael' },
+  { x: 189302400000, y: 66686, name: 'Michael' },
+  { x: 220924800000, y: 67344, name: 'Michael' },
+  { x: 252460800000, y: 66875, name: 'Michael' },
+  { x: 283996800000, y: 67473, name: 'Michael' },
+  { x: 315532800000, y: 68375, name: 'Michael' },
+  { x: 347155200000, y: 68467, name: 'Michael' },
+  { x: 378691200000, y: 67904, name: 'Michael' },
+  { x: 410227200000, y: 67708, name: 'Michael' },
+  { x: 441763200000, y: 67457, name: 'Michael' },
+  { x: 473385600000, y: 64667, name: 'Michael' },
+  { x: 504921600000, y: 63959, name: 'Michael' },
+  { x: 536457600000, y: 63442, name: 'Michael' },
+  { x: 567993600000, y: 63924, name: 'Michael' },
+  { x: 599616000000, y: 65233, name: 'Michael' },
+  { x: 631152000000, y: 65138, name: 'Michael' },
+  { x: 662688000000, y: 60646, name: 'Michael' },
+  { x: 694224000000, y: 54216, name: 'Michael' },
+  { x: 725846400000, y: 49443, name: 'Michael' },
+  { x: 757382400000, y: 44361, name: 'Michael' },
+  { x: 788918400000, y: 41311, name: 'Michael' },
+  { x: 820454400000, y: 38284, name: 'Michael' },
+  { x: 852076800000, y: 37459, name: 'Michael' },
+  { x: 883612800000, y: 36525, name: 'Michael' },
+  { x: 915148800000, y: 33820, name: 'Michael' },
+  { x: 946684800000, y: 31956, name: 'Michael' },
+  { x: 978307200000, y: 29612, name: 'Michael' },
+  { x: 1009843200000, y: 28156, name: 'Michael' },
+  { x: 1041379200000, y: 27031, name: 'Michael' },
+  { x: 1072915200000, y: 25418, name: 'Michael' },
+  { x: 1104537600000, y: 23678, name: 'Michael' },
+  { x: 1136073600000, y: 22498, name: 'Michael' },
+  { x: 1167609600000, y: 21805, name: 'Michael' },
+  { x: 1199145600000, y: 20271, name: 'Michael' },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data2.js b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data2.js
new file mode 100644
index 0000000..7b7c1dd
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data2.js
@@ -0,0 +1,91 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  { x: -157766400000, y: 24703, snapshot: 'Last year' },
+  { x: -126230400000, y: 27861, snapshot: 'Last year' },
+  { x: -94694400000, y: 29436, snapshot: 'Last year' },
+  { x: -63158400000, y: 31463, snapshot: 'Last year' },
+  { x: -31536000000, y: 35718, snapshot: 'Last year' },
+  { x: 0, y: 41758, snapshot: 'Last year' },
+  { x: 31536000000, y: 48172, snapshot: 'Last year' },
+  { x: 63072000000, y: 52092, snapshot: 'Last year' },
+  { x: 94694400000, y: 48217, snapshot: 'Last year' },
+  { x: 126230400000, y: 48476, snapshot: 'Last year' },
+  { x: 157766400000, y: 46438, snapshot: 'Last year' },
+  { x: 189302400000, y: 45086, snapshot: 'Last year' },
+  { x: 220924800000, y: 46610, snapshot: 'Last year' },
+  { x: 252460800000, y: 47107, snapshot: 'Last year' },
+  { x: 283996800000, y: 50514, snapshot: 'Last year' },
+  { x: 315532800000, y: 48969, snapshot: 'Last year' },
+  { x: 347155200000, y: 50108, snapshot: 'Last year' },
+  { x: 378691200000, y: 59055, snapshot: 'Last year' },
+  { x: 410227200000, y: 59188, snapshot: 'Last year' },
+  { x: 441763200000, y: 59859, snapshot: 'Last year' },
+  { x: 473385600000, y: 59516, snapshot: 'Last year' },
+  { x: 504921600000, y: 56633, snapshot: 'Last year' },
+  { x: 536457600000, y: 54466, snapshot: 'Last year' },
+  { x: 567993600000, y: 52996, snapshot: 'Last year' },
+  { x: 599616000000, y: 53205, snapshot: 'Last year' },
+  { x: 631152000000, y: 52322, snapshot: 'Last year' },
+  { x: 662688000000, y: 47109, snapshot: 'Last year' },
+  { x: 694224000000, y: 42470, snapshot: 'Last year' },
+  { x: 725846400000, y: 38257, snapshot: 'Last year' },
+  { x: 757382400000, y: 34823, snapshot: 'Last year' },
+  { x: 788918400000, y: 32728, snapshot: 'Last year' },
+  { x: 820454400000, y: 30988, snapshot: 'Last year' },
+  { x: 852076800000, y: 29179, snapshot: 'Last year' },
+  { x: 883612800000, y: 27083, snapshot: 'Last year' },
+  { x: 915148800000, y: 25700, snapshot: 'Last year' },
+  { x: 946684800000, y: 24959, snapshot: 'Last year' },
+  { x: 978307200000, y: 23180, snapshot: 'Last year' },
+  { x: 1009843200000, y: 21731, snapshot: 'Last year' },
+  { x: 1041379200000, y: 20793, snapshot: 'Last year' },
+  { x: 1072915200000, y: 19739, snapshot: 'Last year' },
+  { x: 1104537600000, y: 19190, snapshot: 'Last year' },
+  { x: 1136073600000, y: 19674, snapshot: 'Last year' },
+  { x: 1167609600000, y: 19986, snapshot: 'Last year' },
+  { x: 1199145600000, y: 17771, snapshot: 'Last year' },
+  { x: -157766400000, y: 80812, snapshot: 'Current' },
+  { x: -126230400000, y: 79709, snapshot: 'Current' },
+  { x: -94694400000, y: 82204, snapshot: 'Current' },
+  { x: -63158400000, y: 81785, snapshot: 'Current' },
+  { x: -31536000000, y: 84893, snapshot: 'Current' },
+  { x: 0, y: 85015, snapshot: 'Current' },
+  { x: 31536000000, y: 77321, snapshot: 'Current' },
+  { x: 63072000000, y: 71197, snapshot: 'Current' },
+  { x: 94694400000, y: 67598, snapshot: 'Current' },
+  { x: 126230400000, y: 67304, snapshot: 'Current' },
+  { x: 157766400000, y: 68149, snapshot: 'Current' },
+  { x: 189302400000, y: 66686, snapshot: 'Current' },
+  { x: 220924800000, y: 67344, snapshot: 'Current' },
+  { x: 252460800000, y: 66875, snapshot: 'Current' },
+  { x: 283996800000, y: 67473, snapshot: 'Current' },
+  { x: 315532800000, y: 68375, snapshot: 'Current' },
+  { x: 347155200000, y: 68467, snapshot: 'Current' },
+  { x: 378691200000, y: 67904, snapshot: 'Current' },
+  { x: 410227200000, y: 67708, snapshot: 'Current' },
+  { x: 441763200000, y: 67457, snapshot: 'Current' },
+  { x: 473385600000, y: 64667, snapshot: 'Current' },
+  { x: 504921600000, y: 63959, snapshot: 'Current' },
+  { x: 536457600000, y: 63442, snapshot: 'Current' },
+  { x: 567993600000, y: 63924, snapshot: 'Current' },
+  { x: 599616000000, y: 65233, snapshot: 'Current' },
+  { x: 631152000000, y: 65138, snapshot: 'Current' },
+  { x: 662688000000, y: 60646, snapshot: 'Current' },
+  { x: 694224000000, y: 54216, snapshot: 'Current' },
+  { x: 725846400000, y: 49443, snapshot: 'Current' },
+  { x: 757382400000, y: 44361, snapshot: 'Current' },
+  { x: 788918400000, y: 41311, snapshot: 'Current' },
+  { x: 820454400000, y: 38284, snapshot: 'Current' },
+  { x: 852076800000, y: 37459, snapshot: 'Current' },
+  { x: 883612800000, y: 36525, snapshot: 'Current' },
+  { x: 915148800000, y: 33820, snapshot: 'Current' },
+  { x: 946684800000, y: 31956, snapshot: 'Current' },
+  { x: 978307200000, y: 29612, snapshot: 'Current' },
+  { x: 1009843200000, y: 28156, snapshot: 'Current' },
+  { x: 1041379200000, y: 27031, snapshot: 'Current' },
+  { x: 1072915200000, y: 25418, snapshot: 'Current' },
+  { x: 1104537600000, y: 23678, snapshot: 'Current' },
+  { x: 1136073600000, y: 22498, snapshot: 'Current' },
+  { x: 1167609600000, y: 21805, snapshot: 'Current' },
+  { x: 1199145600000, y: 20271, snapshot: 'Current' },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/legacyData.js b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/legacyData.js
new file mode 100644
index 0000000..17c1032
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/legacyData.js
@@ -0,0 +1,908 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    key: ['Christopher'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 24703,
+      },
+      {
+        x: -126230400000.0,
+        y: 27861,
+      },
+      {
+        x: -94694400000.0,
+        y: 29436,
+      },
+      {
+        x: -63158400000.0,
+        y: 31463,
+      },
+      {
+        x: -31536000000.0,
+        y: 35718,
+      },
+      {
+        x: 0.0,
+        y: 41758,
+      },
+      {
+        x: 31536000000.0,
+        y: 48172,
+      },
+      {
+        x: 63072000000.0,
+        y: 52092,
+      },
+      {
+        x: 94694400000.0,
+        y: 48217,
+      },
+      {
+        x: 126230400000.0,
+        y: 48476,
+      },
+      {
+        x: 157766400000.0,
+        y: 46438,
+      },
+      {
+        x: 189302400000.0,
+        y: 45086,
+      },
+      {
+        x: 220924800000.0,
+        y: 46610,
+      },
+      {
+        x: 252460800000.0,
+        y: 47107,
+      },
+      {
+        x: 283996800000.0,
+        y: 50514,
+      },
+      {
+        x: 315532800000.0,
+        y: 48969,
+      },
+      {
+        x: 347155200000.0,
+        y: 50108,
+      },
+      {
+        x: 378691200000.0,
+        y: 59055,
+      },
+      {
+        x: 410227200000.0,
+        y: 59188,
+      },
+      {
+        x: 441763200000.0,
+        y: 59859,
+      },
+      {
+        x: 473385600000.0,
+        y: 59516,
+      },
+      {
+        x: 504921600000.0,
+        y: 56633,
+      },
+      {
+        x: 536457600000.0,
+        y: 54466,
+      },
+      {
+        x: 567993600000.0,
+        y: 52996,
+      },
+      {
+        x: 599616000000.0,
+        y: 53205,
+      },
+      {
+        x: 631152000000.0,
+        y: 52322,
+      },
+      {
+        x: 662688000000.0,
+        y: 47109,
+      },
+      {
+        x: 694224000000.0,
+        y: 42470,
+      },
+      {
+        x: 725846400000.0,
+        y: 38257,
+      },
+      {
+        x: 757382400000.0,
+        y: 34823,
+      },
+      {
+        x: 788918400000.0,
+        y: 32728,
+      },
+      {
+        x: 820454400000.0,
+        y: 30988,
+      },
+      {
+        x: 852076800000.0,
+        y: 29179,
+      },
+      {
+        x: 883612800000.0,
+        y: 27083,
+      },
+      {
+        x: 915148800000.0,
+        y: 25700,
+      },
+      {
+        x: 946684800000.0,
+        y: 24959,
+      },
+      {
+        x: 978307200000.0,
+        y: 23180,
+      },
+      {
+        x: 1009843200000.0,
+        y: 21731,
+      },
+      {
+        x: 1041379200000.0,
+        y: 20793,
+      },
+      {
+        x: 1072915200000.0,
+        y: 19739,
+      },
+      {
+        x: 1104537600000.0,
+        y: 19190,
+      },
+      {
+        x: 1136073600000.0,
+        y: 19674,
+      },
+      {
+        x: 1167609600000.0,
+        y: 19986,
+      },
+      {
+        x: 1199145600000.0,
+        y: 17771,
+      },
+    ],
+  },
+  {
+    key: ['David'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 67646,
+      },
+      {
+        x: -126230400000.0,
+        y: 66207,
+      },
+      {
+        x: -94694400000.0,
+        y: 66581,
+      },
+      {
+        x: -63158400000.0,
+        y: 63531,
+      },
+      {
+        x: -31536000000.0,
+        y: 63502,
+      },
+      {
+        x: 0.0,
+        y: 61570,
+      },
+      {
+        x: 31536000000.0,
+        y: 52948,
+      },
+      {
+        x: 63072000000.0,
+        y: 46218,
+      },
+      {
+        x: 94694400000.0,
+        y: 40968,
+      },
+      {
+        x: 126230400000.0,
+        y: 41654,
+      },
+      {
+        x: 157766400000.0,
+        y: 39019,
+      },
+      {
+        x: 189302400000.0,
+        y: 39165,
+      },
+      {
+        x: 220924800000.0,
+        y: 40407,
+      },
+      {
+        x: 252460800000.0,
+        y: 40533,
+      },
+      {
+        x: 283996800000.0,
+        y: 41898,
+      },
+      {
+        x: 315532800000.0,
+        y: 41743,
+      },
+      {
+        x: 347155200000.0,
+        y: 40486,
+      },
+      {
+        x: 378691200000.0,
+        y: 40283,
+      },
+      {
+        x: 410227200000.0,
+        y: 39048,
+      },
+      {
+        x: 441763200000.0,
+        y: 38346,
+      },
+      {
+        x: 473385600000.0,
+        y: 38395,
+      },
+      {
+        x: 504921600000.0,
+        y: 37021,
+      },
+      {
+        x: 536457600000.0,
+        y: 36672,
+      },
+      {
+        x: 567993600000.0,
+        y: 35214,
+      },
+      {
+        x: 599616000000.0,
+        y: 35139,
+      },
+      {
+        x: 631152000000.0,
+        y: 33661,
+      },
+      {
+        x: 662688000000.0,
+        y: 30347,
+      },
+      {
+        x: 694224000000.0,
+        y: 28344,
+      },
+      {
+        x: 725846400000.0,
+        y: 26947,
+      },
+      {
+        x: 757382400000.0,
+        y: 24784,
+      },
+      {
+        x: 788918400000.0,
+        y: 22967,
+      },
+      {
+        x: 820454400000.0,
+        y: 22941,
+      },
+      {
+        x: 852076800000.0,
+        y: 21824,
+      },
+      {
+        x: 883612800000.0,
+        y: 20816,
+      },
+      {
+        x: 915148800000.0,
+        y: 20267,
+      },
+      {
+        x: 946684800000.0,
+        y: 19695,
+      },
+      {
+        x: 978307200000.0,
+        y: 19281,
+      },
+      {
+        x: 1009843200000.0,
+        y: 18600,
+      },
+      {
+        x: 1041379200000.0,
+        y: 18557,
+      },
+      {
+        x: 1072915200000.0,
+        y: 18315,
+      },
+      {
+        x: 1104537600000.0,
+        y: 18017,
+      },
+      {
+        x: 1136073600000.0,
+        y: 17510,
+      },
+      {
+        x: 1167609600000.0,
+        y: 17400,
+      },
+      {
+        x: 1199145600000.0,
+        y: 16049,
+      },
+    ],
+  },
+  {
+    key: ['James'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 67506,
+      },
+      {
+        x: -126230400000.0,
+        y: 65036,
+      },
+      {
+        x: -94694400000.0,
+        y: 61554,
+      },
+      {
+        x: -63158400000.0,
+        y: 60584,
+      },
+      {
+        x: -31536000000.0,
+        y: 59824,
+      },
+      {
+        x: 0.0,
+        y: 61597,
+      },
+      {
+        x: 31536000000.0,
+        y: 54463,
+      },
+      {
+        x: 63072000000.0,
+        y: 46960,
+      },
+      {
+        x: 94694400000.0,
+        y: 42782,
+      },
+      {
+        x: 126230400000.0,
+        y: 41258,
+      },
+      {
+        x: 157766400000.0,
+        y: 39471,
+      },
+      {
+        x: 189302400000.0,
+        y: 38203,
+      },
+      {
+        x: 220924800000.0,
+        y: 39916,
+      },
+      {
+        x: 252460800000.0,
+        y: 39783,
+      },
+      {
+        x: 283996800000.0,
+        y: 39237,
+      },
+      {
+        x: 315532800000.0,
+        y: 39185,
+      },
+      {
+        x: 347155200000.0,
+        y: 38176,
+      },
+      {
+        x: 378691200000.0,
+        y: 38750,
+      },
+      {
+        x: 410227200000.0,
+        y: 36228,
+      },
+      {
+        x: 441763200000.0,
+        y: 35728,
+      },
+      {
+        x: 473385600000.0,
+        y: 35750,
+      },
+      {
+        x: 504921600000.0,
+        y: 33955,
+      },
+      {
+        x: 536457600000.0,
+        y: 32552,
+      },
+      {
+        x: 567993600000.0,
+        y: 32418,
+      },
+      {
+        x: 599616000000.0,
+        y: 32658,
+      },
+      {
+        x: 631152000000.0,
+        y: 32288,
+      },
+      {
+        x: 662688000000.0,
+        y: 30460,
+      },
+      {
+        x: 694224000000.0,
+        y: 28450,
+      },
+      {
+        x: 725846400000.0,
+        y: 26193,
+      },
+      {
+        x: 757382400000.0,
+        y: 24706,
+      },
+      {
+        x: 788918400000.0,
+        y: 22691,
+      },
+      {
+        x: 820454400000.0,
+        y: 21122,
+      },
+      {
+        x: 852076800000.0,
+        y: 20368,
+      },
+      {
+        x: 883612800000.0,
+        y: 19651,
+      },
+      {
+        x: 915148800000.0,
+        y: 18508,
+      },
+      {
+        x: 946684800000.0,
+        y: 17939,
+      },
+      {
+        x: 978307200000.0,
+        y: 17023,
+      },
+      {
+        x: 1009843200000.0,
+        y: 16905,
+      },
+      {
+        x: 1041379200000.0,
+        y: 16832,
+      },
+      {
+        x: 1072915200000.0,
+        y: 16459,
+      },
+      {
+        x: 1104537600000.0,
+        y: 16046,
+      },
+      {
+        x: 1136073600000.0,
+        y: 16139,
+      },
+      {
+        x: 1167609600000.0,
+        y: 15821,
+      },
+      {
+        x: 1199145600000.0,
+        y: 14920,
+      },
+    ],
+  },
+  {
+    key: ['John'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 71390,
+      },
+      {
+        x: -126230400000.0,
+        y: 64858,
+      },
+      {
+        x: -94694400000.0,
+        y: 61480,
+      },
+      {
+        x: -63158400000.0,
+        y: 60754,
+      },
+      {
+        x: -31536000000.0,
+        y: 58644,
+      },
+      {
+        x: 0.0,
+        y: 58348,
+      },
+      {
+        x: 31536000000.0,
+        y: 51382,
+      },
+      {
+        x: 63072000000.0,
+        y: 43028,
+      },
+      {
+        x: 94694400000.0,
+        y: 39061,
+      },
+      {
+        x: 126230400000.0,
+        y: 37553,
+      },
+      {
+        x: 157766400000.0,
+        y: 34970,
+      },
+      {
+        x: 189302400000.0,
+        y: 33876,
+      },
+      {
+        x: 220924800000.0,
+        y: 34103,
+      },
+      {
+        x: 252460800000.0,
+        y: 33895,
+      },
+      {
+        x: 283996800000.0,
+        y: 35305,
+      },
+      {
+        x: 315532800000.0,
+        y: 35131,
+      },
+      {
+        x: 347155200000.0,
+        y: 34761,
+      },
+      {
+        x: 378691200000.0,
+        y: 34560,
+      },
+      {
+        x: 410227200000.0,
+        y: 33047,
+      },
+      {
+        x: 441763200000.0,
+        y: 32484,
+      },
+      {
+        x: 473385600000.0,
+        y: 31397,
+      },
+      {
+        x: 504921600000.0,
+        y: 30103,
+      },
+      {
+        x: 536457600000.0,
+        y: 29462,
+      },
+      {
+        x: 567993600000.0,
+        y: 29301,
+      },
+      {
+        x: 599616000000.0,
+        y: 29751,
+      },
+      {
+        x: 631152000000.0,
+        y: 29011,
+      },
+      {
+        x: 662688000000.0,
+        y: 27727,
+      },
+      {
+        x: 694224000000.0,
+        y: 26156,
+      },
+      {
+        x: 725846400000.0,
+        y: 24918,
+      },
+      {
+        x: 757382400000.0,
+        y: 24119,
+      },
+      {
+        x: 788918400000.0,
+        y: 23174,
+      },
+      {
+        x: 820454400000.0,
+        y: 22104,
+      },
+      {
+        x: 852076800000.0,
+        y: 21330,
+      },
+      {
+        x: 883612800000.0,
+        y: 20556,
+      },
+      {
+        x: 915148800000.0,
+        y: 20280,
+      },
+      {
+        x: 946684800000.0,
+        y: 20032,
+      },
+      {
+        x: 978307200000.0,
+        y: 18839,
+      },
+      {
+        x: 1009843200000.0,
+        y: 17400,
+      },
+      {
+        x: 1041379200000.0,
+        y: 17170,
+      },
+      {
+        x: 1072915200000.0,
+        y: 16381,
+      },
+      {
+        x: 1104537600000.0,
+        y: 15692,
+      },
+      {
+        x: 1136073600000.0,
+        y: 15083,
+      },
+      {
+        x: 1167609600000.0,
+        y: 14348,
+      },
+      {
+        x: 1199145600000.0,
+        y: 13110,
+      },
+    ],
+  },
+  {
+    key: ['Michael'],
+    values: [
+      {
+        x: -157766400000.0,
+        y: 80812,
+      },
+      {
+        x: -126230400000.0,
+        y: 79709,
+      },
+      {
+        x: -94694400000.0,
+        y: 82204,
+      },
+      {
+        x: -63158400000.0,
+        y: 81785,
+      },
+      {
+        x: -31536000000.0,
+        y: 84893,
+      },
+      {
+        x: 0.0,
+        y: 85015,
+      },
+      {
+        x: 31536000000.0,
+        y: 77321,
+      },
+      {
+        x: 63072000000.0,
+        y: 71197,
+      },
+      {
+        x: 94694400000.0,
+        y: 67598,
+      },
+      {
+        x: 126230400000.0,
+        y: 67304,
+      },
+      {
+        x: 157766400000.0,
+        y: 68149,
+      },
+      {
+        x: 189302400000.0,
+        y: 66686,
+      },
+      {
+        x: 220924800000.0,
+        y: 67344,
+      },
+      {
+        x: 252460800000.0,
+        y: 66875,
+      },
+      {
+        x: 283996800000.0,
+        y: 67473,
+      },
+      {
+        x: 315532800000.0,
+        y: 68375,
+      },
+      {
+        x: 347155200000.0,
+        y: 68467,
+      },
+      {
+        x: 378691200000.0,
+        y: 67904,
+      },
+      {
+        x: 410227200000.0,
+        y: 67708,
+      },
+      {
+        x: 441763200000.0,
+        y: 67457,
+      },
+      {
+        x: 473385600000.0,
+        y: 64667,
+      },
+      {
+        x: 504921600000.0,
+        y: 63959,
+      },
+      {
+        x: 536457600000.0,
+        y: 63442,
+      },
+      {
+        x: 567993600000.0,
+        y: 63924,
+      },
+      {
+        x: 599616000000.0,
+        y: 65233,
+      },
+      {
+        x: 631152000000.0,
+        y: 65138,
+      },
+      {
+        x: 662688000000.0,
+        y: 60646,
+      },
+      {
+        x: 694224000000.0,
+        y: 54216,
+      },
+      {
+        x: 725846400000.0,
+        y: 49443,
+      },
+      {
+        x: 757382400000.0,
+        y: 44361,
+      },
+      {
+        x: 788918400000.0,
+        y: 41311,
+      },
+      {
+        x: 820454400000.0,
+        y: 38284,
+      },
+      {
+        x: 852076800000.0,
+        y: 37459,
+      },
+      {
+        x: 883612800000.0,
+        y: 36525,
+      },
+      {
+        x: 915148800000.0,
+        y: 33820,
+      },
+      {
+        x: 946684800000.0,
+        y: 31956,
+      },
+      {
+        x: 978307200000.0,
+        y: 29612,
+      },
+      {
+        x: 1009843200000.0,
+        y: 28156,
+      },
+      {
+        x: 1041379200000.0,
+        y: 27031,
+      },
+      {
+        x: 1072915200000.0,
+        y: 25418,
+      },
+      {
+        x: 1104537600000.0,
+        y: 23678,
+      },
+      {
+        x: 1136073600000.0,
+        y: 22498,
+      },
+      {
+        x: 1167609600000.0,
+        y: 21805,
+      },
+      {
+        x: 1199145600000.0,
+        y: 20271,
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx
new file mode 100644
index 0000000..37a6ead
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx
@@ -0,0 +1,53 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import { radios } from '@storybook/addon-knobs';
+import data from '../data/data';
+import { LINE_PLUGIN_TYPE } from '../constants';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+export default () => (
+  <SuperChart
+    key="line1"
+    chartType={LINE_PLUGIN_TYPE}
+    datasource={dummyDatasource}
+    formData={{
+      encoding: {
+        x: {
+          field: 'x',
+          type: 'temporal',
+          format: '%Y-%m',
+          scale: {
+            type: 'time',
+          },
+          axis: {
+            orient: radios('x.axis.orient', { top: 'top', bottom: 'bottom' }, 'bottom'),
+            title: radios('x.axis.title', { enable: 'Time', disable: '', '': undefined }, 'Time'),
+          },
+        },
+        y: {
+          field: 'y',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+          },
+          axis: {
+            orient: radios(
+              'y.axis.orient',
+              { left: 'left', right: 'right', '': undefined },
+              'left',
+            ),
+            title: radios('y.axis.title', { enable: 'Score', disable: '', '': undefined }, 'Score'),
+          },
+        },
+        stroke: {
+          field: 'name',
+          type: 'nominal',
+          legend: true,
+        },
+      },
+    }}
+    height={400}
+    queriesData={[{ data }]}
+    width={400}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx
new file mode 100644
index 0000000..0eebb50
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx
@@ -0,0 +1,117 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import { radios } from '@storybook/addon-knobs';
+import rawData from '../data/data';
+import { LINE_PLUGIN_TYPE } from '../constants';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+const MIN_TIME = new Date(Date.UTC(1980, 0, 1)).getTime();
+const MAX_TIME = new Date(Date.UTC(2000, 1, 1)).getTime();
+const data = rawData.filter(({ x }) => x >= MIN_TIME && x <= MAX_TIME);
+
+export default () => (
+  <>
+    <SuperChart
+      key="line1"
+      chartType={LINE_PLUGIN_TYPE}
+      width={400}
+      height={200}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        encoding: {
+          x: {
+            field: 'x',
+            type: 'temporal',
+            format: '%Y',
+            scale: {
+              type: 'utc',
+            },
+            axis: {
+              tickCount: 6,
+              orient: radios('x.axis.orient', { top: 'top', bottom: 'bottom' }, 'bottom'),
+              title: radios('x.axis.title', { enable: 'Time', disable: '', '': undefined }, 'Time'),
+            },
+          },
+          y: {
+            field: 'y',
+            type: 'quantitative',
+            scale: {
+              type: 'linear',
+            },
+            axis: {
+              tickCount: 3,
+              orient: radios(
+                'y.axis.orient',
+                { left: 'left', right: 'right', '': undefined },
+                'left',
+              ),
+              title: radios(
+                'y.axis.title',
+                { enable: 'Score', disable: '', '': undefined },
+                'Score',
+              ),
+            },
+          },
+          stroke: {
+            field: 'name',
+            type: 'nominal',
+            legend: true,
+          },
+        },
+      }}
+    />
+    ,
+    <SuperChart
+      key="line2"
+      chartType={LINE_PLUGIN_TYPE}
+      width={400}
+      height={200}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        encoding: {
+          x: {
+            field: 'x',
+            type: 'temporal',
+            format: '%Y',
+            scale: {
+              type: 'utc',
+            },
+            axis: {
+              labelFlush: 5,
+              tickCount: 6,
+              orient: radios('x.axis.orient', { top: 'top', bottom: 'bottom' }, 'bottom'),
+              title: radios('x.axis.title', { enable: 'Time', disable: '', '': undefined }, 'Time'),
+            },
+          },
+          y: {
+            field: 'y',
+            type: 'quantitative',
+            scale: {
+              type: 'linear',
+            },
+            axis: {
+              tickCount: 3,
+              orient: radios(
+                'y.axis.orient',
+                { left: 'left', right: 'right', '': undefined },
+                'left',
+              ),
+              title: radios(
+                'y.axis.title',
+                { enable: 'Score', disable: '', '': undefined },
+                'Score',
+              ),
+            },
+          },
+          stroke: {
+            field: 'name',
+            type: 'nominal',
+            legend: true,
+          },
+        },
+      }}
+    />
+  </>
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx
new file mode 100644
index 0000000..22599f4
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx
@@ -0,0 +1,67 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import data from '../data/legacyData';
+import { LINE_PLUGIN_LEGACY_TYPE } from '../constants';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+export default () => (
+  <>
+    <SuperChart
+      key="line1"
+      chartType={LINE_PLUGIN_LEGACY_TYPE}
+      width={400}
+      height={400}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        bottomMargin: 'auto',
+        colorScheme: 'd3Category10',
+        leftMargin: 'auto',
+        lineInterpolation: 'linear',
+        richTooltip: true,
+        showBrush: 'auto',
+        showLegend: true,
+        showMarkers: false,
+        vizType: 'line',
+        xAxisFormat: '%Y',
+        xAxisLabel: '',
+        xAxisShowminmax: false,
+        xTicksLayout: 'auto',
+        yAxisBounds: [null, null],
+        yAxisFormat: '',
+        yAxisLabel: '',
+        yAxisShowminmax: false,
+        yLogScale: false,
+      }}
+    />
+    ,
+    <SuperChart
+      key="line2"
+      chartType={LINE_PLUGIN_LEGACY_TYPE}
+      width={400}
+      height={400}
+      datasource={dummyDatasource}
+      queriesData={[{ data }]}
+      formData={{
+        bottomMargin: 'auto',
+        colorScheme: 'd3Category10',
+        leftMargin: 'auto',
+        lineInterpolation: 'linear',
+        richTooltip: true,
+        showBrush: 'auto',
+        showLegend: true,
+        showMarkers: false,
+        vizType: 'line',
+        xAxisFormat: '%Y-%m',
+        xAxisLabel: '',
+        xAxisShowminmax: false,
+        xTicksLayout: 'auto',
+        yAxisBounds: [null, null],
+        yAxisFormat: '',
+        yAxisLabel: '',
+        yAxisShowminmax: false,
+        yLogScale: false,
+      }}
+    />
+  </>
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx
new file mode 100644
index 0000000..b18131f
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx
@@ -0,0 +1,56 @@
+import React from 'react';
+import { SuperChart, seedRandom } from '@superset-ui/core';
+import data from '../data/data';
+import { LINE_PLUGIN_TYPE } from '../constants';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+const missingData = data.map(({ y, ...rest }) => ({
+  ...rest,
+  y: seedRandom() < 0.25 ? null : y,
+}));
+
+const missing = () => (
+  <SuperChart
+    key="line1"
+    chartType={LINE_PLUGIN_TYPE}
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data: missingData }]}
+    formData={{
+      encoding: {
+        x: {
+          field: 'x',
+          type: 'temporal',
+          format: '%Y',
+          scale: {
+            type: 'time',
+          },
+          axis: {
+            orient: 'bottom',
+            title: 'Time',
+          },
+        },
+        y: {
+          field: 'y',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+          },
+          axis: {
+            orient: 'left',
+            title: 'Score',
+          },
+        },
+        stroke: {
+          field: 'name',
+          type: 'nominal',
+          scale: {},
+          legend: true,
+        },
+      },
+    }}
+  />
+);
+
+export default missing;
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/query.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/query.tsx
new file mode 100644
index 0000000..9c61c1d
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/query.tsx
@@ -0,0 +1,64 @@
+import { LINE_PLUGIN_TYPE, LINE_PLUGIN_LEGACY_TYPE } from '../constants';
+import createQueryStory from '../../../../../shared/components/createQueryStory';
+
+export default createQueryStory({
+  choices: {
+    'Line Chart - Legacy API': {
+      chartType: LINE_PLUGIN_LEGACY_TYPE,
+      formData: {
+        datasource: '3__table',
+        viz_type: 'line',
+        url_params: {},
+        granularity_sqla: 'ds',
+        time_grain_sqla: 'P1D',
+        time_range: '100 years ago : now',
+        metrics: ['sum__num'],
+        adhoc_filters: [],
+        groupby: [],
+        limit: 25,
+        row_limit: 50000,
+      },
+    },
+    'Line Chart - /api/v1/query': {
+      chartType: LINE_PLUGIN_TYPE,
+      formData: {
+        viz_type: LINE_PLUGIN_TYPE,
+        datasource: '3__table',
+        granularity_sqla: 'ds',
+        time_grain_sqla: 'P1D',
+        time_range: '100 years ago : now',
+        metrics: ['sum__num'],
+        limit: 25,
+        row_limit: 50000,
+        encoding: {
+          x: {
+            field: '__timestamp',
+            type: 'temporal',
+            format: '%Y',
+            scale: {
+              type: 'time',
+            },
+            axis: {
+              title: 'Time',
+            },
+          },
+          y: {
+            field: 'sum__num',
+            type: 'quantitative',
+            scale: {
+              type: 'linear',
+            },
+            axis: {
+              title: 'Number of Babies',
+            },
+          },
+          stroke: {
+            field: 'gender',
+            type: 'nominal',
+            legend: true,
+          },
+        },
+      },
+    },
+  },
+});
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx
new file mode 100644
index 0000000..ea343c1
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx
@@ -0,0 +1,78 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import data from '../data/data2';
+import { LINE_PLUGIN_TYPE } from '../constants';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+export default () => (
+  <SuperChart
+    key="line1"
+    chartType={LINE_PLUGIN_TYPE}
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      encoding: {
+        x: {
+          field: 'x',
+          type: 'temporal',
+          format: '%Y',
+          scale: {
+            type: 'time',
+          },
+          axis: {
+            orient: 'bottom',
+            title: 'Time',
+          },
+        },
+        y: {
+          field: 'y',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+          },
+          axis: {
+            orient: 'left',
+            title: 'Score',
+          },
+        },
+        stroke: {
+          value: '#1abc9c',
+          type: 'nominal',
+          scale: false,
+        },
+        fill: {
+          field: 'snapshot',
+          type: 'nominal',
+          scale: {
+            type: 'ordinal',
+            domain: ['Current', 'Last year'],
+            range: [true, false],
+          },
+          legend: false,
+        },
+        strokeDasharray: {
+          field: 'snapshot',
+          type: 'nominal',
+          scale: {
+            type: 'ordinal',
+            domain: ['Current', 'Last year'],
+            range: [null, '4 4'],
+          },
+          legend: false,
+        },
+        strokeWidth: {
+          field: 'snapshot',
+          type: 'nominal',
+          scale: {
+            type: 'ordinal',
+            domain: ['Current', 'Last year'],
+            range: [3, 1.5],
+          },
+          legend: false,
+        },
+      },
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/Stories.tsx
new file mode 100644
index 0000000..a404cbf
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/Stories.tsx
@@ -0,0 +1,15 @@
+import { ScatterPlotChartPlugin, LegacyScatterPlotChartPlugin } from '@superset-ui/preset-chart-xy';
+import { SCATTER_PLOT_PLUGIN_TYPE, SCATTER_PLOT_PLUGIN_LEGACY_TYPE } from './constants';
+import { withKnobs } from '@storybook/addon-knobs';
+
+new LegacyScatterPlotChartPlugin().configure({ key: SCATTER_PLOT_PLUGIN_LEGACY_TYPE }).register();
+new ScatterPlotChartPlugin().configure({ key: SCATTER_PLOT_PLUGIN_TYPE }).register();
+
+export default {
+  title: 'Chart Plugins|preset-chart-xy/ScatterPlot',
+  decorators: [withKnobs],
+};
+
+export { default as basic } from './stories/basic';
+export { default as bubble } from './stories/bubble';
+export { default as legacy } from './stories/legacy';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/constants.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/constants.ts
new file mode 100644
index 0000000..70083c6
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/constants.ts
@@ -0,0 +1,2 @@
+export const SCATTER_PLOT_PLUGIN_TYPE = 'v2-scatter-plot';
+export const SCATTER_PLOT_PLUGIN_LEGACY_TYPE = 'v2-scatter-plot/legacy';
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/data.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/data.ts
new file mode 100644
index 0000000..e9aff58
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/data.ts
@@ -0,0 +1,178 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    country_name: 'China',
+    region: 'East Asia & Pacific',
+    sum__SP_POP_TOTL: 1344130000,
+    sum__SP_RUR_TOTL_ZS: 49.427,
+    sum__SP_DYN_LE00_IN: 75.042,
+  },
+  {
+    country_name: 'Indonesia',
+    region: 'East Asia & Pacific',
+    sum__SP_POP_TOTL: 244808254,
+    sum__SP_RUR_TOTL_ZS: 49.288,
+    sum__SP_DYN_LE00_IN: 70.3915609756,
+  },
+  {
+    country_name: 'Japan',
+    region: 'East Asia & Pacific',
+    sum__SP_POP_TOTL: 127817277,
+    sum__SP_RUR_TOTL_ZS: 8.752,
+    sum__SP_DYN_LE00_IN: 82.5912195122,
+  },
+  {
+    country_name: 'Philippines',
+    region: 'East Asia & Pacific',
+    sum__SP_POP_TOTL: 94501233,
+    sum__SP_RUR_TOTL_ZS: 54.983,
+    sum__SP_DYN_LE00_IN: 68.3914878049,
+  },
+  {
+    country_name: 'Vietnam',
+    region: 'East Asia & Pacific',
+    sum__SP_POP_TOTL: 87840000,
+    sum__SP_RUR_TOTL_ZS: 68.971,
+    sum__SP_DYN_LE00_IN: 75.457902439,
+  },
+  {
+    country_name: 'Thailand',
+    region: 'East Asia & Pacific',
+    sum__SP_POP_TOTL: 66902958,
+    sum__SP_RUR_TOTL_ZS: 54.606,
+    sum__SP_DYN_LE00_IN: 74.008902439,
+  },
+  {
+    country_name: 'Myanmar',
+    region: 'East Asia & Pacific',
+    sum__SP_POP_TOTL: 52125411,
+    sum__SP_RUR_TOTL_ZS: 68.065,
+    sum__SP_DYN_LE00_IN: 64.7612439024,
+  },
+  {
+    country_name: 'India',
+    region: 'South Asia',
+    sum__SP_POP_TOTL: 1247446011,
+    sum__SP_RUR_TOTL_ZS: 68.724,
+    sum__SP_DYN_LE00_IN: 65.9584878049,
+  },
+  {
+    country_name: 'Pakistan',
+    region: 'South Asia',
+    sum__SP_POP_TOTL: 173669648,
+    sum__SP_RUR_TOTL_ZS: 62.993,
+    sum__SP_DYN_LE00_IN: 66.2838780488,
+  },
+  {
+    country_name: 'Bangladesh',
+    region: 'South Asia',
+    sum__SP_POP_TOTL: 153405612,
+    sum__SP_RUR_TOTL_ZS: 68.775,
+    sum__SP_DYN_LE00_IN: 69.891804878,
+  },
+  {
+    country_name: 'United States',
+    region: 'North America',
+    sum__SP_POP_TOTL: 311721632,
+    sum__SP_RUR_TOTL_ZS: 19.06,
+    sum__SP_DYN_LE00_IN: 78.6414634146,
+  },
+  {
+    country_name: 'Brazil',
+    region: 'Latin America & Caribbean',
+    sum__SP_POP_TOTL: 200517584,
+    sum__SP_RUR_TOTL_ZS: 15.377,
+    sum__SP_DYN_LE00_IN: 73.3473658537,
+  },
+  {
+    country_name: 'Mexico',
+    region: 'Latin America & Caribbean',
+    sum__SP_POP_TOTL: 120365271,
+    sum__SP_RUR_TOTL_ZS: 21.882,
+    sum__SP_DYN_LE00_IN: 76.9141707317,
+  },
+  {
+    country_name: 'Nigeria',
+    region: 'Sub-Saharan Africa',
+    sum__SP_POP_TOTL: 163770669,
+    sum__SP_RUR_TOTL_ZS: 55.638,
+    sum__SP_DYN_LE00_IN: 51.7102439024,
+  },
+  {
+    country_name: 'Ethiopia',
+    region: 'Sub-Saharan Africa',
+    sum__SP_POP_TOTL: 89858696,
+    sum__SP_RUR_TOTL_ZS: 82.265,
+    sum__SP_DYN_LE00_IN: 62.2528536585,
+  },
+  {
+    country_name: 'Congo, Dem. Rep.',
+    region: 'Sub-Saharan Africa',
+    sum__SP_POP_TOTL: 68087376,
+    sum__SP_RUR_TOTL_ZS: 59.558,
+    sum__SP_DYN_LE00_IN: 49.3007073171,
+  },
+  {
+    country_name: 'South Africa',
+    region: 'Sub-Saharan Africa',
+    sum__SP_POP_TOTL: 51553479,
+    sum__SP_RUR_TOTL_ZS: 37.254,
+    sum__SP_DYN_LE00_IN: 55.2956585366,
+  },
+  {
+    country_name: 'Russian Federation',
+    region: 'Europe & Central Asia',
+    sum__SP_POP_TOTL: 142960868,
+    sum__SP_RUR_TOTL_ZS: 26.268,
+    sum__SP_DYN_LE00_IN: 69.6585365854,
+  },
+  {
+    country_name: 'Germany',
+    region: 'Europe & Central Asia',
+    sum__SP_POP_TOTL: 81797673,
+    sum__SP_RUR_TOTL_ZS: 25.512,
+    sum__SP_DYN_LE00_IN: 80.7414634146,
+  },
+  {
+    country_name: 'Turkey',
+    region: 'Europe & Central Asia',
+    sum__SP_POP_TOTL: 73199372,
+    sum__SP_RUR_TOTL_ZS: 28.718,
+    sum__SP_DYN_LE00_IN: 74.5404878049,
+  },
+  {
+    country_name: 'France',
+    region: 'Europe & Central Asia',
+    sum__SP_POP_TOTL: 65342776,
+    sum__SP_RUR_TOTL_ZS: 21.416,
+    sum__SP_DYN_LE00_IN: 82.1146341463,
+  },
+  {
+    country_name: 'United Kingdom',
+    region: 'Europe & Central Asia',
+    sum__SP_POP_TOTL: 63258918,
+    sum__SP_RUR_TOTL_ZS: 18.43,
+    sum__SP_DYN_LE00_IN: 80.9512195122,
+  },
+  {
+    country_name: 'Italy',
+    region: 'Europe & Central Asia',
+    sum__SP_POP_TOTL: 59379449,
+    sum__SP_RUR_TOTL_ZS: 31.556,
+    sum__SP_DYN_LE00_IN: 82.187804878,
+  },
+  {
+    country_name: 'Egypt, Arab Rep.',
+    region: 'Middle East & North Africa',
+    sum__SP_POP_TOTL: 83787634,
+    sum__SP_RUR_TOTL_ZS: 57,
+    sum__SP_DYN_LE00_IN: 70.6785609756,
+  },
+  {
+    country_name: 'Iran, Islamic Rep.',
+    region: 'Middle East & North Africa',
+    sum__SP_POP_TOTL: 75184322,
+    sum__SP_RUR_TOTL_ZS: 28.8,
+    sum__SP_DYN_LE00_IN: 73.4493170732,
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/legacyData.ts b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/legacyData.ts
new file mode 100644
index 0000000..37a26d3
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/legacyData.ts
@@ -0,0 +1,338 @@
+/* eslint-disable sort-keys, no-magic-numbers */
+export default [
+  {
+    key: 'East Asia & Pacific',
+    values: [
+      {
+        country_name: 'China',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 1344130000.0,
+        sum__SP_RUR_TOTL_ZS: 49.427,
+        sum__SP_DYN_LE00_IN: 75.042,
+        x: 49.427,
+        y: 75.042,
+        size: 1344130000.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Indonesia',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 244808254.0,
+        sum__SP_RUR_TOTL_ZS: 49.288,
+        sum__SP_DYN_LE00_IN: 70.3915609756,
+        x: 49.288,
+        y: 70.3915609756,
+        size: 244808254.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Japan',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 127817277.0,
+        sum__SP_RUR_TOTL_ZS: 8.752,
+        sum__SP_DYN_LE00_IN: 82.5912195122,
+        x: 8.752,
+        y: 82.5912195122,
+        size: 127817277.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Philippines',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 94501233.0,
+        sum__SP_RUR_TOTL_ZS: 54.983,
+        sum__SP_DYN_LE00_IN: 68.3914878049,
+        x: 54.983,
+        y: 68.3914878049,
+        size: 94501233.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Vietnam',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 87840000.0,
+        sum__SP_RUR_TOTL_ZS: 68.971,
+        sum__SP_DYN_LE00_IN: 75.457902439,
+        x: 68.971,
+        y: 75.457902439,
+        size: 87840000.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Thailand',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 66902958.0,
+        sum__SP_RUR_TOTL_ZS: 54.606,
+        sum__SP_DYN_LE00_IN: 74.008902439,
+        x: 54.606,
+        y: 74.008902439,
+        size: 66902958.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+      {
+        country_name: 'Myanmar',
+        region: 'East Asia & Pacific',
+        sum__SP_POP_TOTL: 52125411.0,
+        sum__SP_RUR_TOTL_ZS: 68.065,
+        sum__SP_DYN_LE00_IN: 64.7612439024,
+        x: 68.065,
+        y: 64.7612439024,
+        size: 52125411.0,
+        shape: 'circle',
+        group: 'East Asia & Pacific',
+      },
+    ],
+  },
+  {
+    key: 'South Asia',
+    values: [
+      {
+        country_name: 'India',
+        region: 'South Asia',
+        sum__SP_POP_TOTL: 1247446011.0,
+        sum__SP_RUR_TOTL_ZS: 68.724,
+        sum__SP_DYN_LE00_IN: 65.9584878049,
+        x: 68.724,
+        y: 65.9584878049,
+        size: 1247446011.0,
+        shape: 'circle',
+        group: 'South Asia',
+      },
+      {
+        country_name: 'Pakistan',
+        region: 'South Asia',
+        sum__SP_POP_TOTL: 173669648.0,
+        sum__SP_RUR_TOTL_ZS: 62.993,
+        sum__SP_DYN_LE00_IN: 66.2838780488,
+        x: 62.993,
+        y: 66.2838780488,
+        size: 173669648.0,
+        shape: 'circle',
+        group: 'South Asia',
+      },
+      {
+        country_name: 'Bangladesh',
+        region: 'South Asia',
+        sum__SP_POP_TOTL: 153405612.0,
+        sum__SP_RUR_TOTL_ZS: 68.775,
+        sum__SP_DYN_LE00_IN: 69.891804878,
+        x: 68.775,
+        y: 69.891804878,
+        size: 153405612.0,
+        shape: 'circle',
+        group: 'South Asia',
+      },
+    ],
+  },
+  {
+    key: 'North America',
+    values: [
+      {
+        country_name: 'United States',
+        region: 'North America',
+        sum__SP_POP_TOTL: 311721632.0,
+        sum__SP_RUR_TOTL_ZS: 19.06,
+        sum__SP_DYN_LE00_IN: 78.6414634146,
+        x: 19.06,
+        y: 78.6414634146,
+        size: 311721632.0,
+        shape: 'circle',
+        group: 'North America',
+      },
+    ],
+  },
+  {
+    key: 'Latin America & Caribbean',
+    values: [
+      {
+        country_name: 'Brazil',
+        region: 'Latin America & Caribbean',
+        sum__SP_POP_TOTL: 200517584.0,
+        sum__SP_RUR_TOTL_ZS: 15.377,
+        sum__SP_DYN_LE00_IN: 73.3473658537,
+        x: 15.377,
+        y: 73.3473658537,
+        size: 200517584.0,
+        shape: 'circle',
+        group: 'Latin America & Caribbean',
+      },
+      {
+        country_name: 'Mexico',
+        region: 'Latin America & Caribbean',
+        sum__SP_POP_TOTL: 120365271.0,
+        sum__SP_RUR_TOTL_ZS: 21.882,
+        sum__SP_DYN_LE00_IN: 76.9141707317,
+        x: 21.882,
+        y: 76.9141707317,
+        size: 120365271.0,
+        shape: 'circle',
+        group: 'Latin America & Caribbean',
+      },
+    ],
+  },
+  {
+    key: 'Sub-Saharan Africa',
+    values: [
+      {
+        country_name: 'Nigeria',
+        region: 'Sub-Saharan Africa',
+        sum__SP_POP_TOTL: 163770669.0,
+        sum__SP_RUR_TOTL_ZS: 55.638,
+        sum__SP_DYN_LE00_IN: 51.7102439024,
+        x: 55.638,
+        y: 51.7102439024,
+        size: 163770669.0,
+        shape: 'circle',
+        group: 'Sub-Saharan Africa',
+      },
+      {
+        country_name: 'Ethiopia',
+        region: 'Sub-Saharan Africa',
+        sum__SP_POP_TOTL: 89858696.0,
+        sum__SP_RUR_TOTL_ZS: 82.265,
+        sum__SP_DYN_LE00_IN: 62.2528536585,
+        x: 82.265,
+        y: 62.2528536585,
+        size: 89858696.0,
+        shape: 'circle',
+        group: 'Sub-Saharan Africa',
+      },
+      {
+        country_name: 'Congo, Dem. Rep.',
+        region: 'Sub-Saharan Africa',
+        sum__SP_POP_TOTL: 68087376.0,
+        sum__SP_RUR_TOTL_ZS: 59.558,
+        sum__SP_DYN_LE00_IN: 49.3007073171,
+        x: 59.558,
+        y: 49.3007073171,
+        size: 68087376.0,
+        shape: 'circle',
+        group: 'Sub-Saharan Africa',
+      },
+      {
+        country_name: 'South Africa',
+        region: 'Sub-Saharan Africa',
+        sum__SP_POP_TOTL: 51553479.0,
+        sum__SP_RUR_TOTL_ZS: 37.254,
+        sum__SP_DYN_LE00_IN: 55.2956585366,
+        x: 37.254,
+        y: 55.2956585366,
+        size: 51553479.0,
+        shape: 'circle',
+        group: 'Sub-Saharan Africa',
+      },
+    ],
+  },
+  {
+    key: 'Europe & Central Asia',
+    values: [
+      {
+        country_name: 'Russian Federation',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 142960868.0,
+        sum__SP_RUR_TOTL_ZS: 26.268,
+        sum__SP_DYN_LE00_IN: 69.6585365854,
+        x: 26.268,
+        y: 69.6585365854,
+        size: 142960868.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'Germany',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 81797673.0,
+        sum__SP_RUR_TOTL_ZS: 25.512,
+        sum__SP_DYN_LE00_IN: 80.7414634146,
+        x: 25.512,
+        y: 80.7414634146,
+        size: 81797673.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'Turkey',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 73199372.0,
+        sum__SP_RUR_TOTL_ZS: 28.718,
+        sum__SP_DYN_LE00_IN: 74.5404878049,
+        x: 28.718,
+        y: 74.5404878049,
+        size: 73199372.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'France',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 65342776.0,
+        sum__SP_RUR_TOTL_ZS: 21.416,
+        sum__SP_DYN_LE00_IN: 82.1146341463,
+        x: 21.416,
+        y: 82.1146341463,
+        size: 65342776.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'United Kingdom',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 63258918.0,
+        sum__SP_RUR_TOTL_ZS: 18.43,
+        sum__SP_DYN_LE00_IN: 80.9512195122,
+        x: 18.43,
+        y: 80.9512195122,
+        size: 63258918.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+      {
+        country_name: 'Italy',
+        region: 'Europe & Central Asia',
+        sum__SP_POP_TOTL: 59379449.0,
+        sum__SP_RUR_TOTL_ZS: 31.556,
+        sum__SP_DYN_LE00_IN: 82.187804878,
+        x: 31.556,
+        y: 82.187804878,
+        size: 59379449.0,
+        shape: 'circle',
+        group: 'Europe & Central Asia',
+      },
+    ],
+  },
+  {
+    key: 'Middle East & North Africa',
+    values: [
+      {
+        country_name: 'Egypt, Arab Rep.',
+        region: 'Middle East & North Africa',
+        sum__SP_POP_TOTL: 83787634.0,
+        sum__SP_RUR_TOTL_ZS: 57.0,
+        sum__SP_DYN_LE00_IN: 70.6785609756,
+        x: 57.0,
+        y: 70.6785609756,
+        size: 83787634.0,
+        shape: 'circle',
+        group: 'Middle East & North Africa',
+      },
+      {
+        country_name: 'Iran, Islamic Rep.',
+        region: 'Middle East & North Africa',
+        sum__SP_POP_TOTL: 75184322.0,
+        sum__SP_RUR_TOTL_ZS: 28.8,
+        sum__SP_DYN_LE00_IN: 73.4493170732,
+        x: 28.8,
+        y: 73.4493170732,
+        size: 75184322.0,
+        shape: 'circle',
+        group: 'Middle East & North Africa',
+      },
+    ],
+  },
+];
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx
new file mode 100644
index 0000000..52ca1f0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx
@@ -0,0 +1,48 @@
+/* eslint-disable no-magic-numbers, sort-keys */
+import * as React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import { radios } from '@storybook/addon-knobs';
+import data from '../data/data';
+import { SCATTER_PLOT_PLUGIN_TYPE } from '../constants';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+export default () => (
+  <SuperChart
+    key="scatter-plot1"
+    chartType={SCATTER_PLOT_PLUGIN_TYPE}
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      encoding: {
+        x: {
+          field: 'sum__SP_RUR_TOTL_ZS',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+          },
+          axis: {
+            orient: radios('x.axis.orient', { top: 'top', bottom: 'bottom' }, 'bottom'),
+          },
+        },
+        y: {
+          field: 'sum__SP_DYN_LE00_IN',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+          },
+          axis: {
+            orient: radios('y.axis.orient', { left: 'left', right: 'right' }, 'left'),
+          },
+        },
+        fill: {
+          field: 'region',
+          type: 'nominal',
+          legend: true,
+        },
+        group: [{ field: 'country_name', title: 'Country' }],
+      },
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx
new file mode 100644
index 0000000..8949a31
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx
@@ -0,0 +1,56 @@
+/* eslint-disable no-magic-numbers, sort-keys */
+import * as React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import { radios } from '@storybook/addon-knobs';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+import data from '../data/data';
+import { SCATTER_PLOT_PLUGIN_TYPE } from '../constants';
+
+export default () => (
+  <SuperChart
+    key="scatter-plot1"
+    chartType={SCATTER_PLOT_PLUGIN_TYPE}
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      encoding: {
+        x: {
+          field: 'sum__SP_RUR_TOTL_ZS',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+          },
+          axis: {
+            orient: radios('x.axis.orient', { top: 'top', bottom: 'bottom' }, 'bottom'),
+          },
+        },
+        y: {
+          field: 'sum__SP_DYN_LE00_IN',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+          },
+          axis: {
+            orient: radios('y.axis.orient', { left: 'left', right: 'right' }, 'left'),
+          },
+        },
+        size: {
+          field: 'sum__SP_POP_TOTL',
+          type: 'quantitative',
+          scale: {
+            type: 'linear',
+            range: [0, 30],
+          },
+        },
+        fill: {
+          field: 'region',
+          type: 'nominal',
+          legend: true,
+        },
+        group: [{ field: 'country_name', title: 'Country' }],
+      },
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx
new file mode 100644
index 0000000..5d0532e
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx
@@ -0,0 +1,39 @@
+import * as React from 'react';
+import { SuperChart } from '@superset-ui/core';
+import data from '../data/legacyData';
+import { SCATTER_PLOT_PLUGIN_LEGACY_TYPE } from '../constants';
+import dummyDatasource from '../../../../../shared/dummyDatasource';
+
+export default () => (
+  <SuperChart
+    key="scatter-plot1"
+    chartType={SCATTER_PLOT_PLUGIN_LEGACY_TYPE}
+    width={400}
+    height={400}
+    datasource={dummyDatasource}
+    queriesData={[{ data }]}
+    formData={{
+      annotationData: {},
+      bottomMargin: 'auto',
+      colorScheme: 'd3Category10',
+      entity: 'country_name',
+      leftMargin: 'auto',
+      maxBubbleSize: '50',
+      series: 'region',
+      showLegend: true,
+      size: 'sum__SP_POP_TOTL',
+      vizType: 'bubble',
+      x: 'sum__SP_RUR_TOTL_ZS',
+      xAxisFormat: '.3s',
+      xAxisLabel: 'x-axis label test',
+      xAxisShowminmax: false,
+      xLogScale: false,
+      xTicksLayout: 'auto',
+      y: 'sum__SP_DYN_LE00_IN',
+      yAxisFormat: '.3s',
+      yAxisLabel: '',
+      yAxisShowminmax: false,
+      yLogScale: false,
+    }}
+  />
+);
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx
new file mode 100644
index 0000000..ff634b9
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx
@@ -0,0 +1,97 @@
+import React from 'react';
+import { text, select, withKnobs } from '@storybook/addon-knobs';
+
+import { SuperChart, ChartDataProvider, SupersetClient } from '@superset-ui/core';
+import { BigNumberChartPlugin as LegacyBigNumberPlugin } from '@superset-ui/legacy-preset-chart-big-number';
+import LegacySankeyPlugin from '@superset-ui/legacy-plugin-chart-sankey';
+import LegacySunburstPlugin from '@superset-ui/legacy-plugin-chart-sunburst';
+import { WordCloudChartPlugin } from '@superset-ui/plugin-chart-word-cloud';
+
+import {
+  bigNumberFormData,
+  sankeyFormData,
+  sunburstFormData,
+  wordCloudFormData,
+} from '@superset-ui/core/test/chart/fixtures/formData';
+
+import Expandable from '../../shared/components/Expandable';
+import VerifyCORS, { renderError } from '../../shared/components/VerifyCORS';
+
+const BIG_NUMBER = bigNumberFormData.viz_type;
+const SANKEY = sankeyFormData.viz_type;
+const SUNBURST = sunburstFormData.viz_type;
+const WORD_CLOUD_LEGACY = wordCloudFormData.viz_type;
+const WORD_CLOUD = 'new_word_cloud';
+
+new LegacyBigNumberPlugin().configure({ key: BIG_NUMBER }).register();
+// eslint-disable-next-line
+new LegacySankeyPlugin().configure({ key: SANKEY }).register();
+// eslint-disable-next-line
+new LegacySunburstPlugin().configure({ key: SUNBURST }).register();
+// eslint-disable-next-line
+new WordCloudChartPlugin().configure({ key: WORD_CLOUD }).register();
+
+const VIS_TYPES = [BIG_NUMBER, SANKEY, SUNBURST, WORD_CLOUD, WORD_CLOUD_LEGACY];
+const FORM_DATA_LOOKUP = {
+  [BIG_NUMBER]: bigNumberFormData,
+  [SANKEY]: sankeyFormData,
+  [SUNBURST]: sunburstFormData,
+  [WORD_CLOUD]: { ...wordCloudFormData, viz_type: WORD_CLOUD },
+  [WORD_CLOUD_LEGACY]: wordCloudFormData,
+};
+
+export default {
+  title: 'Core / chart',
+  decorators: [
+    withKnobs({
+      escapeHTML: false,
+    }),
+  ],
+};
+
+export const dataProvider = () => {
+  const host = text('Set Superset App host for CORS request', 'localhost:8088');
+  const visType = select('Chart Plugin Type', VIS_TYPES, VIS_TYPES[0]);
+  const width = text('Vis width', '500');
+  const height = text('Vis height', '300');
+  const formData = text('Override formData', JSON.stringify(FORM_DATA_LOOKUP[visType]));
+
+  return (
+    <div style={{ margin: 16 }}>
+      <VerifyCORS host={host}>
+        {() => (
+          <ChartDataProvider client={SupersetClient} formData={JSON.parse(formData)}>
+            {({ loading, payload, error }) => {
+              if (loading) return <div>Loading!</div>;
+
+              if (error) return renderError(error);
+
+              if (payload)
+                return (
+                  <>
+                    <SuperChart
+                      chartType={visType}
+                      formData={payload.formData}
+                      height={Number(height)}
+                      // @TODO fix typing
+                      // all vis's now expect objects but api/v1/ returns an array
+                      queriesData={payload.queriesData}
+                      width={Number(width)}
+                    />
+                    <br />
+                    <Expandable expandableWhat="payload">
+                      <pre style={{ fontSize: 11 }}>{JSON.stringify(payload, null, 2)}</pre>
+                    </Expandable>
+                  </>
+                );
+
+              return null;
+            }}
+          </ChartDataProvider>
+        )}
+      </VerifyCORS>
+    </div>
+  );
+};
+
+dataProvider.story = { name: 'ChartDataProvider' };
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx
new file mode 100644
index 0000000..eafc442
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx
@@ -0,0 +1,146 @@
+import React from 'react';
+import { text, withKnobs } from '@storybook/addon-knobs';
+import { SuperChart } from '@superset-ui/core';
+import {
+  DiligentChartPlugin,
+  BuggyChartPlugin,
+  ChartKeys,
+} from '@superset-ui/core/test/chart/components/MockChartPlugins';
+import ResizableChartDemo from '../../shared/components/ResizableChartDemo';
+
+new DiligentChartPlugin().configure({ key: ChartKeys.DILIGENT }).register();
+new BuggyChartPlugin().configure({ key: ChartKeys.BUGGY }).register();
+
+const DEFAULT_QUERY_DATA = { data: ['foo', 'bar'] };
+
+export default {
+  title: 'Core / chart',
+  decorators: [withKnobs],
+};
+
+export const basic = () => {
+  const width = text('Vis width', '100%');
+  const height = text('Vis height', '100%');
+
+  return (
+    <SuperChart
+      chartType={ChartKeys.DILIGENT}
+      width={width}
+      height={height}
+      queriesData={[DEFAULT_QUERY_DATA]}
+      formData={{ hi: 1 }}
+    />
+  );
+};
+export const container50pct = () => {
+  const width = text('Vis width', '50%');
+  const height = text('Vis height', '50%');
+
+  return (
+    <SuperChart
+      chartType={ChartKeys.DILIGENT}
+      width={width}
+      height={height}
+      queriesData={[DEFAULT_QUERY_DATA]}
+      formData={{ hi: 1 }}
+    />
+  );
+};
+container50pct.story = { name: '50% of container' };
+
+export const Resizable = () => {
+  return (
+    <ResizableChartDemo>
+      {size => (
+        <SuperChart
+          chartType={ChartKeys.DILIGENT}
+          width={size.width}
+          height={size.height}
+          queriesData={[DEFAULT_QUERY_DATA]}
+        />
+      )}
+    </ResizableChartDemo>
+  );
+};
+
+export const fixedWidth100height = () => {
+  const width = text('Vis width', '500');
+  const height = text('Vis height', '100%');
+
+  return (
+    <SuperChart
+      chartType={ChartKeys.DILIGENT}
+      height={height}
+      width={width}
+      queriesData={[DEFAULT_QUERY_DATA]}
+    />
+  );
+};
+fixedWidth100height.story = { name: 'fixed width, 100% height' };
+
+export const fixedHeight100Width = () => {
+  const width = text('Vis width', '100%');
+  const height = text('Vis height', '300');
+
+  return (
+    <SuperChart
+      chartType={ChartKeys.DILIGENT}
+      height={height}
+      width={width}
+      queriesData={[DEFAULT_QUERY_DATA]}
+    />
+  );
+};
+fixedHeight100Width.story = { name: 'fixed height, 100% width' };
+
+export const withErrorBoundar = () => {
+  const width = text('Vis width', '500');
+  const height = text('Vis height', '300');
+
+  return (
+    <SuperChart
+      chartType={ChartKeys.BUGGY}
+      height={height}
+      width={width}
+      queriesData={[DEFAULT_QUERY_DATA]}
+    />
+  );
+};
+
+export const withWrapper = () => {
+  const width = text('Vis width', '100%');
+  const height = text('Vis height', '100%');
+
+  return (
+    <SuperChart
+      chartType={ChartKeys.DILIGENT}
+      width={width}
+      height={height}
+      queriesData={[DEFAULT_QUERY_DATA]}
+      Wrapper={({ children }) => (
+        <div>
+          <div style={{ margin: 10, position: 'fixed' }}>With wrapper!</div>
+          {children}
+        </div>
+      )}
+    />
+  );
+};
+export const withNoResults = () => {
+  const width = text('Vis width', '100%');
+  const height = text('Vis height', '100%');
+
+  return <SuperChart chartType={ChartKeys.DILIGENT} width={width} height={height} />;
+};
+export const withNoResultsAndMedium = () => {
+  const width = text('Vis width', '400');
+  const height = text('Vis height', '300');
+
+  return <SuperChart chartType={ChartKeys.DILIGENT} width={width} height={height} />;
+};
+export const withNoResultsAndSmall = () => {
+  const width = text('Vis width', '150');
+  const height = text('Vis height', '200');
+
+  return <SuperChart chartType={ChartKeys.DILIGENT} width={width} height={height} />;
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-color/ColorPallettesStories.jsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-color/ColorPallettesStories.jsx
new file mode 100644
index 0000000..cd28e91
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-color/ColorPallettesStories.jsx
@@ -0,0 +1,39 @@
+import React from 'react';
+
+import AirbnbPalettes from '@superset-ui/core/src/color/colorSchemes/categorical/airbnb';
+import D3Palettes from '@superset-ui/core/src/color/colorSchemes/categorical/d3';
+import EchartsPalettes from '@superset-ui/core/src/color/colorSchemes/categorical/echarts';
+import GooglePalettes from '@superset-ui/core/src/color/colorSchemes/categorical/google';
+import LyftPalettes from '@superset-ui/core/src/color/colorSchemes/categorical/lyft';
+import PresetPalettes from '@superset-ui/core/src/color/colorSchemes/categorical/preset';
+import SupersetPalettes from '@superset-ui/core/src/color/colorSchemes/categorical/superset';
+
+import SequantialCommonPalettes from '@superset-ui/core/src/color/colorSchemes/sequential/common';
+import SequantialD3Palettes from '@superset-ui/core/src/color/colorSchemes/sequential/d3';
+
+import RenderPalettes from './RenderPalettes';
+
+export default {
+  title: 'Core Packages|@superset-ui/color',
+};
+
+export const categoricalPalettes = () =>
+  [
+    { palettes: SupersetPalettes, storyName: 'Superset' },
+    { palettes: AirbnbPalettes, storyName: 'Airbnb' },
+    { palettes: D3Palettes, storyName: 'd3' },
+    { palettes: EchartsPalettes, storyName: 'ECharts' },
+    { palettes: GooglePalettes, storyName: 'Google' },
+    { palettes: LyftPalettes, storyName: 'Lyft' },
+    { palettes: PresetPalettes, storyName: 'Preset' },
+  ].map(({ palettes, storyName }) => (
+    <RenderPalettes key={storyName} title={storyName} palettes={palettes} />
+  ));
+
+export const sequentialPalettes = () =>
+  [
+    { palettes: SequantialCommonPalettes, storyName: 'Common' },
+    { palettes: SequantialD3Palettes, storyName: 'd3' },
+  ].map(({ palettes, storyName }) => (
+    <RenderPalettes key={storyName} title={storyName} palettes={palettes} />
+  ));
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-color/RenderPalettes.jsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-color/RenderPalettes.jsx
new file mode 100644
index 0000000..294bf90
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-color/RenderPalettes.jsx
@@ -0,0 +1,36 @@
+/* eslint react/prop-types: 'off' */
+import React from 'react';
+import './color-styles.css';
+
+export default function RenderPalettes({ title, palettes }) {
+  return (
+    <div>
+      {title && <h2>{title}</h2>}
+      <table>
+        <tbody>
+          {palettes.map(({ colors, id, label }) => (
+            <tr key={id}>
+              <td className="palette-label">
+                <strong>{label}</strong>
+              </td>
+              <td>
+                <div className="palette-container">
+                  {colors.map((color, i) => (
+                    <div
+                      key={color}
+                      className="palette-item"
+                      style={{
+                        backgroundColor: color,
+                        marginRight: i === colors.length - 1 ? 0 : 2,
+                      }}
+                    />
+                  ))}
+                </div>
+              </td>
+            </tr>
+          ))}
+        </tbody>
+      </table>
+    </div>
+  );
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-color/color-styles.css b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-color/color-styles.css
new file mode 100644
index 0000000..f89ad24
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-color/color-styles.css
@@ -0,0 +1,15 @@
+.palette-label {
+  margin: 4px 12px 4px 0;
+}
+
+.palette-container {
+  display: flex;
+  flex-direction: row;
+  border: 1px solid #eaeaea;
+  width: fit-content;
+}
+
+.palette-item {
+  width: 16px;
+  height: 16px;
+}
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-connection/ConnectionStories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-connection/ConnectionStories.tsx
new file mode 100644
index 0000000..c3e05fe
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-connection/ConnectionStories.tsx
@@ -0,0 +1,59 @@
+import React from 'react';
+import { select, text, withKnobs } from '@storybook/addon-knobs';
+import { bigNumberFormData } from '@superset-ui/core/test/chart/fixtures/formData';
+
+import VerifyCORS, { Props as VerifyCORSProps } from '../../shared/components/VerifyCORS';
+import Expandable from '../../shared/components/Expandable';
+
+const REQUEST_METHODS = ['GET', 'POST'];
+const ENDPOINTS = {
+  '(Empty - verify auth only)': '/',
+  '/api/v1/chart/data': '/api/v1/chart/data',
+};
+
+export default {
+  title: 'Core Packages|@superset-ui/connection',
+  decorators: [
+    withKnobs({
+      escapeHTML: false,
+    }),
+  ],
+};
+
+export const configureCORS = () => {
+  const host = text('Superset App host for CORS request', 'localhost:8088');
+  const selectEndpoint = select('Endpoint', ENDPOINTS, '');
+  const customEndpoint = text('Custom Endpoint (override above)', '');
+  const endpoint = customEndpoint || selectEndpoint;
+  const method = endpoint ? select('Request method', REQUEST_METHODS, 'POST') : undefined;
+  const postPayload =
+    endpoint && method === 'POST'
+      ? text('POST payload', JSON.stringify({ form_data: bigNumberFormData }))
+      : undefined;
+
+  return (
+    <div style={{ margin: 16 }}>
+      <VerifyCORS
+        host={host}
+        endpoint={endpoint}
+        method={method as VerifyCORSProps['method']}
+        postPayload={`${postPayload}`}
+      >
+        {({ payload }) => (
+          <>
+            <div className="alert alert-success">Success! Update knobs below to try again</div>
+            <br />
+            <Expandable expandableWhat="payload">
+              <br />
+              <pre style={{ fontSize: 11 }}>{JSON.stringify(payload, null, 2)}</pre>
+            </Expandable>
+          </>
+        )}
+      </VerifyCORS>
+    </div>
+  );
+};
+
+configureCORS.parameters = {
+  chromatic: { disable: true },
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/BigNumberStories.jsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/BigNumberStories.jsx
new file mode 100644
index 0000000..4b97444
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/BigNumberStories.jsx
@@ -0,0 +1,121 @@
+/* eslint-disable jsx-a11y/label-has-associated-control */
+import React from 'react';
+import { formatNumber } from '@superset-ui/core';
+
+const propTypes = {};
+const defaultProps = {};
+
+class NumberFormatValidator extends React.PureComponent {
+  constructor(props) {
+    super(props);
+
+    this.state = {
+      formatString: '.3~s',
+      testValues: [
+        987654321,
+        12345.6789,
+        3000,
+        400.14,
+        70.00002,
+        1,
+        0,
+        -1,
+        -70.00002,
+        -400.14,
+        -3000,
+        -12345.6789,
+        -987654321,
+        Number.POSITIVE_INFINITY,
+        Number.NEGATIVE_INFINITY,
+        NaN,
+        null,
+        undefined,
+      ],
+    };
+
+    this.handleFormatChange = this.handleFormatChange.bind(this);
+  }
+
+  handleFormatChange(event) {
+    this.setState({
+      formatString: event.target.value,
+    });
+  }
+
+  render() {
+    const { formatString, testValues } = this.state;
+
+    return (
+      <div className="container">
+        <div className="row" style={{ margin: '40px 20px 0 20px' }}>
+          <div className="col-sm">
+            <p>
+              This <code>@superset-ui/number-format</code> package enriches <code>d3-format</code>
+              to handle invalid formats as well as edge case values. Use the validator below to
+              preview outputs from the specified format string. See
+              <a
+                href="https://github.com/d3/d3-format#locale_format"
+                target="_blank"
+                rel="noopener noreferrer"
+              >
+                D3 Format Reference
+              </a>
+              for how to write a D3 format string.
+            </p>
+          </div>
+        </div>
+        <div className="row" style={{ margin: '10px 0 30px 0' }}>
+          <div className="col-sm" />
+          <div className="col-sm-8">
+            <div className="form">
+              <div className="form-group">
+                <label>Enter D3 format string:&nbsp;&nbsp;</label>
+                <input
+                  id="formatString"
+                  className="form-control form-control-lg"
+                  type="text"
+                  value={formatString}
+                  onChange={this.handleFormatChange}
+                />
+              </div>
+            </div>
+          </div>
+          <div className="col-sm" />
+        </div>
+        <div className="row">
+          <div className="col-sm">
+            <table className="table table-striped table-sm">
+              <thead>
+                <tr>
+                  <th>Input (number)</th>
+                  <th>Formatted output (string)</th>
+                </tr>
+              </thead>
+              <tbody>
+                {testValues.map(v => (
+                  <tr key={v}>
+                    <td>
+                      <code>{`${v}`}</code>
+                    </td>
+                    <td>
+                      <code>&quot;{formatNumber(formatString, v)}&quot;</code>
+                    </td>
+                  </tr>
+                ))}
+              </tbody>
+            </table>
+          </div>
+        </div>
+      </div>
+    );
+  }
+}
+
+NumberFormatValidator.propTypes = propTypes;
+NumberFormatValidator.defaultProps = defaultProps;
+
+export default {
+  title: 'Core Packages|@superset-ui/number-format',
+};
+
+export const validator = () => <NumberFormatValidator />;
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-style/ThemeStories.jsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-style/ThemeStories.jsx
new file mode 100644
index 0000000..500c430
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-style/ThemeStories.jsx
@@ -0,0 +1,30 @@
+import React from 'react';
+
+import { supersetTheme } from '@superset-ui/core';
+
+export default {
+  title: 'Core Packages|@superset-ui/style',
+};
+
+export const ThemeColors = () => {
+  const colors = supersetTheme.colors;
+  return Object.keys(colors).map(collection => (
+    <div>
+      <h2>{collection}</h2>
+      <table style={{ width: '300px' }}>
+        {Object.keys(colors[collection]).map(k => {
+          const hex = colors[collection][k];
+          return (
+            <tr>
+              <td>{k}</td>
+              <td>
+                <code>{hex}</code>
+              </td>
+              <td style={{ width: '150px', backgroundColor: hex }}></td>
+            </tr>
+          );
+        })}
+      </table>
+    </div>
+  ));
+};
diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/TimeFormatStories.jsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/TimeFormatStories.jsx
new file mode 100644
index 0000000..019df49
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/TimeFormatStories.jsx
@@ -0,0 +1,110 @@
+/* eslint-disable jsx-a11y/label-has-associated-control */
+import React from 'react';
+import { formatTime } from '@superset-ui/core';
+
+const propTypes = {};
+const defaultProps = {};
+
+class TimeFormatValidator extends React.PureComponent {
+  constructor(props) {
+    super(props);
+
+    this.state = {
+      formatString: '%Y-%m-%d %H:%M:%S',
+      testValues: [
+        new Date(Date.UTC(1986, 5, 14, 8, 30, 53)),
+        new Date(Date.UTC(2001, 9, 27, 13, 45, 2, 678)),
+        new Date(Date.UTC(2009, 1, 1, 0, 0, 0)),
+        new Date(Date.UTC(2018, 1, 1, 10, 20, 33)),
+        0,
+        null,
+        undefined,
+      ],
+    };
+
+    this.handleFormatChange = this.handleFormatChange.bind(this);
+  }
+
+  handleFormatChange(event) {
+    this.setState({
+      formatString: event.target.value,
+    });
+  }
+
+  render() {
+    const { formatString, testValues } = this.state;
+
+    return (
+      <div className="container">
+        <div className="row" style={{ margin: '40px 20px 0 20px' }}>
+          <div className="col-sm">
+            <p>
+              This <code>@superset-ui/time-format</code> package enriches
+              <code>d3-time-format</code> to handle invalid formats as well as edge case values. Use
+              the validator below to preview outputs from the specified format string. See
+              <a
+                href="https://github.com/d3/d3-time-format#locale_format"
+                target="_blank"
+                rel="noopener noreferrer"
+              >
+                D3 Time Format Reference
+              </a>
+              for how to write a D3 time format string.
+            </p>
+          </div>
+        </div>
+        <div className="row" style={{ margin: '10px 0 30px 0' }}>
+          <div className="col-sm" />
+          <div className="col-sm-8">
+            <div className="form">
+              <div className="form-group">
+                <label>Enter D3 time format string:&nbsp;&nbsp;</label>
+                <input
+                  id="formatString"
+                  className="form-control form-control-lg"
+                  type="text"
+                  value={formatString}
+                  onChange={this.handleFormatChange}
+                />
+              </div>
+            </div>
+          </div>
+          <div className="col-sm" />
+        </div>
+        <div className="row">
+          <div className="col-sm">
+            <table className="table table-striped table-sm">
+              <thead>
+                <tr>
+                  <th>Input (time)</th>
+                  <th>Formatted output (string)</th>
+                </tr>
+              </thead>
+              <tbody>
+                {testValues.map(v => (
+                  <tr key={v}>
+                    <td>
+                      <code>{v instanceof Date ? v.toUTCString() : `${v}`}</code>
+                    </td>
+                    <td>
+                      <code>&quot;{formatTime(formatString, v)}&quot;</code>
+                    </td>
+                  </tr>
+                ))}
+              </tbody>
+            </table>
+          </div>
+        </div>
+      </div>
+    );
+  }
+}
+
+TimeFormatValidator.propTypes = propTypes;
+TimeFormatValidator.defaultProps = defaultProps;
+
+export default {
+  title: 'Core Packages|@superset-ui/time-format',
+};
+
+export const validator = () => <TimeFormatValidator />;
diff --git a/superset-frontend/packages/superset-ui-demo/tsconfig.json b/superset-frontend/packages/superset-ui-demo/tsconfig.json
new file mode 100644
index 0000000..4b0dc75
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-demo/tsconfig.json
@@ -0,0 +1,21 @@
+{
+  "extends": "../../tsconfig.json",
+  "compilerOptions": {
+    "jsx": "react",
+    "outDir": "../../build/lib",
+    "rootDir": "../../",
+    "emitDeclarationOnly": false,
+    "sourceMap": true,
+    "allowSyntheticDefaultImports": true,
+    "emitDecoratorMetadata": true,
+    "experimentalDecorators": true,
+    "noImplicitAny": false,
+    "noEmit": false,
+  },
+  "exclude": ["node_modules"],
+  "include": [
+    "storybook",
+    "../**/src",
+    "../../plugins/**/src",
+  ]
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/README.md b/superset-frontend/plugins/legacy-plugin-chart-calendar/README.md
new file mode 100644
index 0000000..c347fef
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-calendar
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-calendar.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-calendar)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-calendar&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-calendar)
+
+This plugin provides Calendar Heatmap for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import CalendarChartPlugin from '@superset-ui/legacy-plugin-chart-calendar';
+
+new CalendarChartPlugin().configure({ key: 'calendar' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-calendar)
+for more details.
+
+```js
+<SuperChart
+  chartType="calendar"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/package.json b/superset-frontend/plugins/legacy-plugin-chart-calendar/package.json
new file mode 100644
index 0000000..e51b60d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/package.json
@@ -0,0 +1,41 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-calendar",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Calendar Heatmap",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3-array": "^2.0.3",
+    "d3-selection": "^1.4.0",
+    "d3-tip": "^0.9.1",
+    "prop-types": "^15.6.2"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js
new file mode 100644
index 0000000..2d651c3
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js
@@ -0,0 +1,165 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import PropTypes from 'prop-types';
+import { extent as d3Extent, range as d3Range } from 'd3-array';
+import { select as d3Select } from 'd3-selection';
+import {
+  getNumberFormatter,
+  getTimeFormatter,
+  getSequentialSchemeRegistry,
+} from '@superset-ui/core';
+import CalHeatMap from './vendor/cal-heatmap';
+import './vendor/cal-heatmap.css';
+
+function convertUTC(dttm) {
+  return new Date(
+    dttm.getUTCFullYear(),
+    dttm.getUTCMonth(),
+    dttm.getUTCDate(),
+    dttm.getUTCHours(),
+    dttm.getUTCMinutes(),
+    dttm.getUTCSeconds(),
+  );
+}
+
+const convertUTCTS = uts => convertUTC(new Date(uts)).getTime();
+
+const propTypes = {
+  data: PropTypes.shape({
+    // Object hashed by metric name,
+    // then hashed by timestamp (in seconds, not milliseconds) as float
+    // the innermost value is count
+    // e.g. { count_distinct_something: { 1535034236.0: 3 } }
+    data: PropTypes.object,
+    domain: PropTypes.string,
+    range: PropTypes.number,
+    // timestamp in milliseconds
+    start: PropTypes.number,
+    subdomain: PropTypes.string,
+  }),
+  height: PropTypes.number,
+  // eslint-disable-next-line react/sort-prop-types
+  cellPadding: PropTypes.number,
+  // eslint-disable-next-line react/sort-prop-types
+  cellRadius: PropTypes.number,
+  // eslint-disable-next-line react/sort-prop-types
+  cellSize: PropTypes.number,
+  linearColorScheme: PropTypes.string,
+  showLegend: PropTypes.bool,
+  showMetricName: PropTypes.bool,
+  showValues: PropTypes.bool,
+  steps: PropTypes.number,
+  timeFormat: PropTypes.string,
+  valueFormat: PropTypes.string,
+  verboseMap: PropTypes.object,
+};
+
+function Calendar(element, props) {
+  const {
+    data,
+    height,
+    cellPadding = 3,
+    cellRadius = 0,
+    cellSize = 10,
+    domainGranularity,
+    linearColorScheme,
+    showLegend,
+    showMetricName,
+    showValues,
+    steps,
+    subdomainGranularity,
+    timeFormat,
+    valueFormat,
+    verboseMap,
+  } = props;
+
+  const valueFormatter = getNumberFormatter(valueFormat);
+  const timeFormatter = getTimeFormatter(timeFormat);
+
+  const container = d3Select(element)
+    .classed('superset-legacy-chart-calendar', true)
+    .style('height', height);
+  container.selectAll('*').remove();
+  const div = container.append('div');
+
+  const subDomainTextFormat = showValues ? (date, value) => valueFormatter(value) : null;
+
+  // Trick to convert all timestamps to UTC
+  // TODO: Verify if this conversion is really necessary
+  // since all timestamps should always be in UTC.
+  const metricsData = {};
+  Object.keys(data.data).forEach(metric => {
+    metricsData[metric] = {};
+    Object.keys(data.data[metric]).forEach(ts => {
+      metricsData[metric][convertUTCTS(ts * 1000) / 1000] = data.data[metric][ts];
+    });
+  });
+
+  Object.keys(metricsData).forEach(metric => {
+    const calContainer = div.append('div');
+    if (showMetricName) {
+      calContainer.text(`Metric: ${verboseMap[metric] || metric}`);
+    }
+    const timestamps = metricsData[metric];
+    const extents = d3Extent(Object.keys(timestamps), key => timestamps[key]);
+    const step = (extents[1] - extents[0]) / (steps - 1);
+    const colorScale = getSequentialSchemeRegistry()
+      .get(linearColorScheme)
+      .createLinearScale(extents);
+
+    const legend = d3Range(steps).map(i => extents[0] + step * i);
+    const legendColors = legend.map(x => colorScale(x));
+
+    const cal = new CalHeatMap();
+    cal.init({
+      start: convertUTCTS(data.start),
+      data: timestamps,
+      itemSelector: calContainer.node(),
+      legendVerticalPosition: 'top',
+      cellSize,
+      cellPadding,
+      cellRadius,
+      legendCellSize: cellSize,
+      legendCellPadding: 2,
+      legendCellRadius: cellRadius,
+      tooltip: true,
+      domain: domainGranularity,
+      subDomain: subdomainGranularity,
+      range: data.range,
+      browsing: true,
+      legend,
+      legendColors: {
+        colorScale,
+        min: legendColors[0],
+        max: legendColors[legendColors.length - 1],
+        empty: 'white',
+      },
+      displayLegend: showLegend,
+      itemName: '',
+      valueFormatter,
+      timeFormatter,
+      subDomainTextFormat,
+    });
+  });
+}
+
+Calendar.displayName = 'Calendar';
+Calendar.propTypes = propTypes;
+
+export default Calendar;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.jsx b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.jsx
new file mode 100644
index 0000000..cf2097e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.jsx
@@ -0,0 +1,52 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import PropTypes from 'prop-types';
+import { reactify, styled } from '@superset-ui/core';
+import Component from './Calendar';
+
+const ReactComponent = reactify(Component);
+
+const Calender = ({ className, ...otherProps }) => (
+  <div className={className}>
+    <ReactComponent {...otherProps} />
+  </div>
+);
+
+Calender.defaultProps = {
+  otherProps: {},
+};
+
+Calender.propTypes = {
+  className: PropTypes.string.isRequired,
+  otherProps: PropTypes.objectOf(PropTypes.any),
+};
+
+export default styled(Calender)`
+  .superset-legacy-chart-calendar {
+    padding: 10px;
+    position: static !important;
+    overflow: auto !important;
+  }
+
+  .superset-legacy-chart-calendar .ch-tooltip {
+    margin-left: 20px;
+    margin-top: 5px;
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts
new file mode 100644
index 0000000..4b3208c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts
@@ -0,0 +1,182 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, legacyValidateInteger } from '@superset-ui/core';
+import {
+  ControlPanelConfig,
+  D3_FORMAT_DOCS,
+  D3_TIME_FORMAT_OPTIONS,
+  formatSelectOptions,
+  sections,
+} from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'domain_granularity',
+            config: {
+              type: 'SelectControl',
+              label: t('Domain'),
+              default: 'month',
+              choices: formatSelectOptions(['hour', 'day', 'week', 'month', 'year']),
+              description: t('The time unit used for the grouping of blocks'),
+            },
+          },
+          {
+            name: 'subdomain_granularity',
+            config: {
+              type: 'SelectControl',
+              label: t('Subdomain'),
+              default: 'day',
+              choices: formatSelectOptions(['min', 'hour', 'day', 'week', 'month']),
+              description: t(
+                'The time unit for each block. Should be a smaller unit than ' +
+                  'domain_granularity. Should be larger or equal to Time Grain',
+              ),
+            },
+          },
+        ],
+        ['metrics'],
+        ['adhoc_filters'],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      tabOverride: 'customize',
+      controlSetRows: [
+        ['linear_color_scheme'],
+        [
+          {
+            name: 'cell_size',
+            config: {
+              type: 'TextControl',
+              isInt: true,
+              default: 10,
+              validators: [legacyValidateInteger],
+              renderTrigger: true,
+              label: t('Cell Size'),
+              description: t('The size of the square cell, in pixels'),
+            },
+          },
+          {
+            name: 'cell_padding',
+            config: {
+              type: 'TextControl',
+              isInt: true,
+              validators: [legacyValidateInteger],
+              renderTrigger: true,
+              default: 2,
+              label: t('Cell Padding'),
+              description: t('The distance between cells, in pixels'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'cell_radius',
+            config: {
+              type: 'TextControl',
+              isInt: true,
+              validators: [legacyValidateInteger],
+              renderTrigger: true,
+              default: 0,
+              label: t('Cell Radius'),
+              description: t('The pixel radius'),
+            },
+          },
+          {
+            name: 'steps',
+            config: {
+              type: 'TextControl',
+              isInt: true,
+              validators: [legacyValidateInteger],
+              renderTrigger: true,
+              default: 10,
+              label: t('Color Steps'),
+              description: t('The number color "steps"'),
+            },
+          },
+        ],
+        [
+          'y_axis_format',
+          {
+            name: 'x_axis_time_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Time Format'),
+              renderTrigger: true,
+              default: 'smart_date',
+              choices: D3_TIME_FORMAT_OPTIONS,
+              description: D3_FORMAT_DOCS,
+            },
+          },
+        ],
+        [
+          {
+            name: 'show_legend',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Legend'),
+              renderTrigger: true,
+              default: true,
+              description: t('Whether to display the legend (toggles)'),
+            },
+          },
+          {
+            name: 'show_values',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Values'),
+              renderTrigger: true,
+              default: false,
+              description: t('Whether to display the numerical values within the cells'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'show_metric_name',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Metric Names'),
+              renderTrigger: true,
+              default: true,
+              description: t('Whether to display the metric name as a title'),
+            },
+          },
+          null,
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    y_axis_format: {
+      label: t('Number Format'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/images/thumbnail.png
new file mode 100644
index 0000000..bac8c28
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..8e0624b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js
new file mode 100644
index 0000000..066d026
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import controlPanel from './controlPanel';
+import thumbnail from './images/thumbnail.png';
+
+const metadata = new ChartMetadata({
+  credits: ['https://github.com/wa0x6e/cal-heatmap'],
+  description: '',
+  name: t('Calendar Heatmap'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class CalendarChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactCalendar'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/transformProps.js
new file mode 100644
index 0000000..cfd57d1
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/transformProps.js
@@ -0,0 +1,55 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { height, formData, queriesData, datasource } = chartProps;
+  const {
+    cellPadding,
+    cellRadius,
+    cellSize,
+    domainGranularity,
+    linearColorScheme,
+    showLegend,
+    showMetricName,
+    showValues,
+    steps,
+    subdomainGranularity,
+    xAxisTimeFormat,
+    yAxisFormat,
+  } = formData;
+
+  const { verboseMap } = datasource;
+
+  return {
+    height,
+    data: queriesData[0].data,
+    cellPadding,
+    cellRadius,
+    cellSize,
+    domainGranularity,
+    linearColorScheme,
+    showLegend,
+    showMetricName,
+    showValues,
+    steps,
+    subdomainGranularity,
+    timeFormat: xAxisTimeFormat,
+    valueFormat: yAxisFormat,
+    verboseMap,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.css b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.css
new file mode 100644
index 0000000..d55251e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.css
@@ -0,0 +1,130 @@
+/* [LICENSE TBD] */
+/* Cal-HeatMap CSS */
+
+.cal-heatmap-container {
+  display: block;
+}
+
+.cal-heatmap-container .graph-label {
+  fill: #999;
+  font-size: 10px;
+}
+
+.cal-heatmap-container .graph,
+.cal-heatmap-container .graph-legend rect {
+  shape-rendering: crispedges;
+}
+
+.cal-heatmap-container .graph-rect {
+  fill: #ededed;
+}
+
+.cal-heatmap-container .graph-subdomain-group rect:hover {
+  stroke: #000;
+  stroke-width: 1px;
+}
+
+.cal-heatmap-container .subdomain-text {
+  font-size: 8px;
+  fill: #999;
+  pointer-events: none;
+}
+
+.cal-heatmap-container .hover_cursor:hover {
+  cursor: pointer;
+}
+
+.cal-heatmap-container .qi {
+  background-color: #999;
+  fill: #999;
+}
+
+/*
+Remove comment to apply this style to date with value equal to 0
+.q0
+{
+  background-color: #fff;
+  fill: #fff;
+  stroke: #ededed
+}
+*/
+
+.cal-heatmap-container .q1 {
+  background-color: #dae289;
+  fill: #dae289;
+}
+
+.cal-heatmap-container .q2 {
+  background-color: #cedb9c;
+  fill: #9cc069;
+}
+
+.cal-heatmap-container .q3 {
+  background-color: #b5cf6b;
+  fill: #669d45;
+}
+
+.cal-heatmap-container .q4 {
+  background-color: #637939;
+  fill: #637939;
+}
+
+.cal-heatmap-container .q5 {
+  background-color: #3b6427;
+  fill: #3b6427;
+}
+
+.cal-heatmap-container rect.highlight {
+  stroke: #444;
+  stroke-width: 1;
+}
+
+.cal-heatmap-container text.highlight {
+  fill: #444;
+}
+
+.cal-heatmap-container rect.highlight-now {
+  stroke: red;
+}
+
+.cal-heatmap-container text.highlight-now {
+  fill: red;
+  font-weight: 800;
+}
+
+.cal-heatmap-container .domain-background {
+  fill: none;
+  shape-rendering: crispedges;
+}
+
+.ch-tooltip {
+  padding: 10px;
+  background: #222;
+  color: #bbb;
+  font-size: 12px;
+  line-height: 1.4;
+  width: 140px;
+  position: absolute;
+  z-index: 99999;
+  text-align: center;
+  border-radius: 2px;
+  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
+  display: none;
+  box-sizing: border-box;
+}
+
+.ch-tooltip::after {
+  position: absolute;
+  width: 0;
+  height: 0;
+  border-color: transparent;
+  border-style: solid;
+  content: '';
+  padding: 0;
+  display: block;
+  bottom: -6px;
+  left: 50%;
+  margin-left: -6px;
+  border-width: 6px 6px 0;
+  border-top-color: #222;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js
new file mode 100644
index 0000000..a8da0b3
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js
@@ -0,0 +1,3795 @@
+// [LICENSE TBD]
+/* Copied and altered from http://cal-heatmap.com/ , alterations around:
+ * - tuning tooltips
+ * - supporting multi-colors scales
+ * - legend format
+ * - UTC handling
+ */
+
+/* eslint-disable */
+
+import d3tip from 'd3-tip';
+import './d3tip.css';
+
+var d3 = typeof require === 'function' ? require('d3') : window.d3;
+
+var d3 = typeof require === 'function' ? require('d3') : window.d3;
+
+var CalHeatMap = function () {
+  'use strict';
+
+  var self = this;
+  self.tip = d3tip()
+    .attr('class', 'd3-tip')
+    .direction('n')
+    .offset([-5, 0])
+    .html(
+      d => `
+      ${self.options.timeFormatter(d.t)}: <strong>${self.options.valueFormatter(d.v)}</strong>
+    `,
+    );
+  self.legendTip = d3tip()
+    .attr('class', 'd3-tip')
+    .direction('n')
+    .offset([-5, 0])
+    .html(d => self.options.valueFormatter(d));
+
+  this.allowedDataType = ['json', 'csv', 'tsv', 'txt'];
+
+  // Default settings
+  this.options = {
+    // selector string of the container to append the graph to
+    // Accept any string value accepted by document.querySelector or CSS3
+    // or an Element object
+    itemSelector: '#cal-heatmap',
+
+    // Whether to paint the calendar on init()
+    // Used by testsuite to reduce testing time
+    paintOnLoad: true,
+
+    // ================================================
+    // DOMAIN
+    // ================================================
+
+    // Number of domain to display on the graph
+    range: 12,
+
+    // Size of each cell, in pixel
+    cellSize: 10,
+
+    // Padding between each cell, in pixel
+    cellPadding: 2,
+
+    // For rounded subdomain rectangles, in pixels
+    cellRadius: 0,
+
+    domainGutter: 2,
+
+    domainMargin: [0, 0, 0, 0],
+
+    valueFormatter: d => d,
+
+    timeFormatter: d => d,
+
+    domain: 'hour',
+
+    subDomain: 'min',
+
+    // Number of columns to split the subDomains to
+    // If not null, will takes precedence over rowLimit
+    colLimit: null,
+
+    // Number of rows to split the subDomains to
+    // Will be ignored if colLimit is not null
+    rowLimit: null,
+
+    // First day of the week is Monday
+    // 0 to start the week on Sunday
+    weekStartOnMonday: true,
+
+    // Start date of the graph
+    // @default now
+    start: new Date(),
+
+    minDate: null,
+
+    maxDate: null,
+
+    // ================================================
+    // DATA
+    // ================================================
+
+    // Data source
+    // URL, where to fetch the original datas
+    data: '',
+
+    // Data type
+    // Default: json
+    dataType: this.allowedDataType[0],
+
+    // Payload sent when using POST http method
+    // Leave to null (default) for GET request
+    // Expect a string, formatted like "a=b;c=d"
+    dataPostPayload: null,
+
+    // Additional headers sent when requesting data
+    // Expect an object formatted like:
+    // { 'X-CSRF-TOKEN': 'token' }
+    dataRequestHeaders: null,
+
+    // Whether to consider missing date:value from the datasource
+    // as equal to 0, or just leave them as missing
+    considerMissingDataAsZero: false,
+
+    // Load remote data on calendar creation
+    // When false, the calendar will be left empty
+    loadOnInit: true,
+
+    // Calendar orientation
+    // false: display domains side by side
+    // true : display domains one under the other
+    verticalOrientation: false,
+
+    // Domain dynamic width/height
+    // The width on a domain depends on the number of
+    domainDynamicDimension: true,
+
+    // Domain Label properties
+    label: {
+      // valid: top, right, bottom, left
+      position: 'bottom',
+
+      // Valid: left, center, right
+      // Also valid are the direct svg values: start, middle, end
+      align: 'center',
+
+      // By default, there is no margin/padding around the label
+      offset: {
+        x: 0,
+        y: 0,
+      },
+
+      rotate: null,
+
+      // Used only on vertical orientation
+      width: 100,
+
+      // Used only on horizontal orientation
+      height: null,
+    },
+
+    // ================================================
+    // LEGEND
+    // ================================================
+
+    // Threshold for the legend
+    legend: [10, 20, 30, 40],
+
+    // Whether to display the legend
+    displayLegend: true,
+
+    legendCellSize: 10,
+
+    legendCellPadding: 2,
+
+    legendMargin: [0, 0, 0, 0],
+
+    // Legend vertical position
+    // top: place legend above calendar
+    // bottom: place legend below the calendar
+    legendVerticalPosition: 'bottom',
+
+    // Legend horizontal position
+    // accepted values: left, center, right
+    legendHorizontalPosition: 'left',
+
+    // Legend rotation
+    // accepted values: horizontal, vertical
+    legendOrientation: 'horizontal',
+
+    // Objects holding all the heatmap different colors
+    // null to disable, and use the default css styles
+    //
+    // Examples:
+    // legendColors: {
+    //    min: "green",
+    //    max: "red",
+    //    empty: "#ffffff",
+    //    base: "grey",
+    //    overflow: "red",
+    //    colorScaler: null,
+    // }
+    legendColors: null,
+
+    // ================================================
+    // HIGHLIGHT
+    // ================================================
+
+    // List of dates to highlight
+    // Valid values:
+    // - []: don't highlight anything
+    // - "now": highlight the current date
+    // - an array of Date objects: highlight the specified dates
+    highlight: [],
+
+    // ================================================
+    // TEXT FORMATTING / i18n
+    // ================================================
+
+    // Name of the items to represent in the calendar
+    itemName: ['item', 'items'],
+
+    // Formatting of the domain label
+    // @default: null, will use the formatting according to domain type
+    // Accept a string used as specifier by d3.time.format()
+    // or a function
+    //
+    // Refer to https://github.com/mbostock/d3/wiki/Time-Formatting
+    // for accepted date formatting used by d3.time.format()
+    domainLabelFormat: null,
+
+    // Formatting of the title displayed when hovering a subDomain cell
+    subDomainTitleFormat: {
+      empty: '{date}',
+      filled: '{count} {name} {connector} {date}',
+    },
+
+    // Formatting of the {date} used in subDomainTitleFormat
+    // @default: null, will use the formatting according to subDomain type
+    // Accept a string used as specifier by d3.time.format()
+    // or a function
+    //
+    // Refer to https://github.com/mbostock/d3/wiki/Time-Formatting
+    // for accepted date formatting used by d3.time.format()
+    subDomainDateFormat: null,
+
+    // Formatting of the text inside each subDomain cell
+    // @default: null, no text
+    // Accept a string used as specifier by d3.time.format()
+    // or a function
+    //
+    // Refer to https://github.com/mbostock/d3/wiki/Time-Formatting
+    // for accepted date formatting used by d3.time.format()
+    subDomainTextFormat: null,
+
+    // Formatting of the title displayed when hovering a legend cell
+    legendTitleFormat: {
+      lower: 'less than {min} {name}',
+      inner: 'between {down} and {up} {name}',
+      upper: 'more than {max} {name}',
+    },
+
+    // Animation duration, in ms
+    animationDuration: 500,
+
+    nextSelector: false,
+
+    previousSelector: false,
+
+    itemNamespace: 'cal-heatmap',
+
+    tooltip: false,
+
+    // ================================================
+    // EVENTS CALLBACK
+    // ================================================
+
+    // Callback when clicking on a time block
+    onClick: null,
+
+    // Callback after painting the empty calendar
+    // Can be used to trigger an API call, once the calendar is ready to be filled
+    afterLoad: null,
+
+    // Callback after loading the next domain in the calendar
+    afterLoadNextDomain: null,
+
+    // Callback after loading the previous domain in the calendar
+    afterLoadPreviousDomain: null,
+
+    // Callback after finishing all actions on the calendar
+    onComplete: null,
+
+    // Callback after fetching the datas, but before applying them to the calendar
+    // Used mainly to convert the datas if they're not formatted like expected
+    // Takes the fetched "data" object as argument, must return a json object
+    // formatted like {timestamp:count, timestamp2:count2},
+    afterLoadData: function (data) {
+      return data;
+    },
+
+    // Callback triggered after calling and completing update().
+    afterUpdate: null,
+
+    // Callback triggered after calling next().
+    // The `status` argument is equal to true if there is no
+    // more next domain to load
+    //
+    // This callback is also executed once, after calling previous(),
+    // only when the max domain is reached
+    onMaxDomainReached: null,
+
+    // Callback triggered after calling previous().
+    // The `status` argument is equal to true if there is no
+    // more previous domain to load
+    //
+    // This callback is also executed once, after calling next(),
+    // only when the min domain is reached
+    onMinDomainReached: null,
+  };
+
+  this._domainType = {
+    min: {
+      name: 'minute',
+      level: 10,
+      maxItemNumber: 60,
+      defaultRowNumber: 10,
+      defaultColumnNumber: 6,
+      row: function (d) {
+        return self.getSubDomainRowNumber(d);
+      },
+      column: function (d) {
+        return self.getSubDomainColumnNumber(d);
+      },
+      position: {
+        x: function (d) {
+          return Math.floor(d.getMinutes() / self._domainType.min.row(d));
+        },
+        y: function (d) {
+          return d.getMinutes() % self._domainType.min.row(d);
+        },
+      },
+      format: {
+        date: '%H:%M, %A %B %-e, %Y',
+        legend: '',
+        connector: 'at',
+      },
+      extractUnit: function (d) {
+        return new Date(
+          d.getFullYear(),
+          d.getMonth(),
+          d.getDate(),
+          d.getHours(),
+          d.getMinutes(),
+        ).getTime();
+      },
+    },
+    hour: {
+      name: 'hour',
+      level: 20,
+      maxItemNumber: function (d) {
+        switch (self.options.domain) {
+          case 'day':
+            return 24;
+          case 'week':
+            return 24 * 7;
+          case 'month':
+            return 24 * (self.options.domainDynamicDimension ? self.getDayCountInMonth(d) : 31);
+        }
+      },
+      defaultRowNumber: 6,
+      defaultColumnNumber: function (d) {
+        switch (self.options.domain) {
+          case 'day':
+            return 4;
+          case 'week':
+            return 28;
+          case 'month':
+            return self.options.domainDynamicDimension ? self.getDayCountInMonth(d) : 31;
+        }
+      },
+      row: function (d) {
+        return self.getSubDomainRowNumber(d);
+      },
+      column: function (d) {
+        return self.getSubDomainColumnNumber(d);
+      },
+      position: {
+        x: function (d) {
+          if (self.options.domain === 'month') {
+            if (self.options.colLimit > 0 || self.options.rowLimit > 0) {
+              return Math.floor(
+                (d.getHours() + (d.getDate() - 1) * 24) / self._domainType.hour.row(d),
+              );
+            }
+            return Math.floor(d.getHours() / self._domainType.hour.row(d)) + (d.getDate() - 1) * 4;
+          } else if (self.options.domain === 'week') {
+            if (self.options.colLimit > 0 || self.options.rowLimit > 0) {
+              return Math.floor(
+                (d.getHours() + self.getWeekDay(d) * 24) / self._domainType.hour.row(d),
+              );
+            }
+            return Math.floor(d.getHours() / self._domainType.hour.row(d)) + self.getWeekDay(d) * 4;
+          }
+          return Math.floor(d.getHours() / self._domainType.hour.row(d));
+        },
+        y: function (d) {
+          var p = d.getHours();
+          if (self.options.colLimit > 0 || self.options.rowLimit > 0) {
+            switch (self.options.domain) {
+              case 'month':
+                p += (d.getDate() - 1) * 24;
+                break;
+              case 'week':
+                p += self.getWeekDay(d) * 24;
+                break;
+            }
+          }
+          return Math.floor(p % self._domainType.hour.row(d));
+        },
+      },
+      format: {
+        date: '%Hh, %A %B %-e, %Y',
+        legend: '%H:00',
+        connector: 'at',
+      },
+      extractUnit: function (d) {
+        return new Date(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours()).getTime();
+      },
+    },
+    day: {
+      name: 'day',
+      level: 30,
+      maxItemNumber: function (d) {
+        switch (self.options.domain) {
+          case 'week':
+            return 7;
+          case 'month':
+            return self.options.domainDynamicDimension ? self.getDayCountInMonth(d) : 31;
+          case 'year':
+            return self.options.domainDynamicDimension ? self.getDayCountInYear(d) : 366;
+        }
+      },
+      defaultColumnNumber: function (d) {
+        d = new Date(d);
+        switch (self.options.domain) {
+          case 'week':
+            return 1;
+          case 'month':
+            return self.options.domainDynamicDimension && !self.options.verticalOrientation
+              ? self.getWeekNumber(new Date(d.getFullYear(), d.getMonth() + 1, 0)) -
+                  self.getWeekNumber(d) +
+                  1
+              : 6;
+          case 'year':
+            return self.options.domainDynamicDimension
+              ? self.getWeekNumber(new Date(d.getFullYear(), 11, 31)) -
+                  self.getWeekNumber(new Date(d.getFullYear(), 0)) +
+                  1
+              : 54;
+        }
+      },
+      defaultRowNumber: 7,
+      row: function (d) {
+        return self.getSubDomainRowNumber(d);
+      },
+      column: function (d) {
+        return self.getSubDomainColumnNumber(d);
+      },
+      position: {
+        x: function (d) {
+          switch (self.options.domain) {
+            case 'week':
+              return Math.floor(self.getWeekDay(d) / self._domainType.day.row(d));
+            case 'month':
+              if (self.options.colLimit > 0 || self.options.rowLimit > 0) {
+                return Math.floor((d.getDate() - 1) / self._domainType.day.row(d));
+              }
+              return (
+                self.getWeekNumber(d) - self.getWeekNumber(new Date(d.getFullYear(), d.getMonth()))
+              );
+            case 'year':
+              if (self.options.colLimit > 0 || self.options.rowLimit > 0) {
+                return Math.floor((self.getDayOfYear(d) - 1) / self._domainType.day.row(d));
+              }
+              return self.getWeekNumber(d);
+          }
+        },
+        y: function (d) {
+          var p = self.getWeekDay(d);
+          if (self.options.colLimit > 0 || self.options.rowLimit > 0) {
+            switch (self.options.domain) {
+              case 'year':
+                p = self.getDayOfYear(d) - 1;
+                break;
+              case 'week':
+                p = self.getWeekDay(d);
+                break;
+              case 'month':
+                p = d.getDate() - 1;
+                break;
+            }
+          }
+          return Math.floor(p % self._domainType.day.row(d));
+        },
+      },
+      format: {
+        date: '%A %B %-e, %Y',
+        legend: '%e %b',
+        connector: 'on',
+      },
+      extractUnit: function (d) {
+        return new Date(d.getFullYear(), d.getMonth(), d.getDate()).getTime();
+      },
+    },
+    week: {
+      name: 'week',
+      level: 40,
+      maxItemNumber: 54,
+      defaultColumnNumber: function (d) {
+        d = new Date(d);
+        switch (self.options.domain) {
+          case 'year':
+            return self._domainType.week.maxItemNumber;
+          case 'month':
+            return self.options.domainDynamicDimension
+              ? self.getWeekNumber(new Date(d.getFullYear(), d.getMonth() + 1, 0)) -
+                  self.getWeekNumber(d)
+              : 5;
+        }
+      },
+      defaultRowNumber: 1,
+      row: function (d) {
+        return self.getSubDomainRowNumber(d);
+      },
+      column: function (d) {
+        return self.getSubDomainColumnNumber(d);
+      },
+      position: {
+        x: function (d) {
+          switch (self.options.domain) {
+            case 'year':
+              return Math.floor(self.getWeekNumber(d) / self._domainType.week.row(d));
+            case 'month':
+              return Math.floor(self.getMonthWeekNumber(d) / self._domainType.week.row(d));
+          }
+        },
+        y: function (d) {
+          return self.getWeekNumber(d) % self._domainType.week.row(d);
+        },
+      },
+      format: {
+        date: '%B Week #%W',
+        legend: '%B Week #%W',
+        connector: 'in',
+      },
+      extractUnit: function (d) {
+        var dt = new Date(d.getFullYear(), d.getMonth(), d.getDate());
+        // According to ISO-8601, week number computation are based on week starting on Monday
+        var weekDay = dt.getDay() - (self.options.weekStartOnMonday ? 1 : 0);
+        if (weekDay < 0) {
+          weekDay = 6;
+        }
+        dt.setDate(dt.getDate() - weekDay);
+        return dt.getTime();
+      },
+    },
+    month: {
+      name: 'month',
+      level: 50,
+      maxItemNumber: 12,
+      defaultColumnNumber: 12,
+      defaultRowNumber: 1,
+      row: function () {
+        return self.getSubDomainRowNumber();
+      },
+      column: function () {
+        return self.getSubDomainColumnNumber();
+      },
+      position: {
+        x: function (d) {
+          return Math.floor(d.getMonth() / self._domainType.month.row(d));
+        },
+        y: function (d) {
+          return d.getMonth() % self._domainType.month.row(d);
+        },
+      },
+      format: {
+        date: '%B %Y',
+        legend: '%B',
+        connector: 'in',
+      },
+      extractUnit: function (d) {
+        return new Date(d.getFullYear(), d.getMonth()).getTime();
+      },
+    },
+    year: {
+      name: 'year',
+      level: 60,
+      row: function () {
+        return self.options.rowLimit || 1;
+      },
+      column: function () {
+        return self.options.colLimit || 1;
+      },
+      position: {
+        x: function () {
+          return 1;
+        },
+        y: function () {
+          return 1;
+        },
+      },
+      format: {
+        date: '%Y',
+        legend: '%Y',
+        connector: 'in',
+      },
+      extractUnit: function (d) {
+        return new Date(d.getFullYear()).getTime();
+      },
+    },
+  };
+
+  for (var type in this._domainType) {
+    if (this._domainType.hasOwnProperty(type)) {
+      var d = this._domainType[type];
+      this._domainType['x_' + type] = {
+        name: 'x_' + type,
+        level: d.type,
+        maxItemNumber: d.maxItemNumber,
+        defaultRowNumber: d.defaultRowNumber,
+        defaultColumnNumber: d.defaultColumnNumber,
+        row: d.column,
+        column: d.row,
+        position: {
+          x: d.position.y,
+          y: d.position.x,
+        },
+        format: d.format,
+        extractUnit: d.extractUnit,
+      };
+    }
+  }
+
+  // Record the address of the last inserted domain when browsing
+  this.lastInsertedSvg = null;
+
+  this._completed = false;
+
+  // Record all the valid domains
+  // Each domain value is a timestamp in milliseconds
+  this._domains = d3.map();
+
+  this.graphDim = {
+    width: 0,
+    height: 0,
+  };
+
+  this.legendDim = {
+    width: 0,
+    height: 0,
+  };
+
+  this.NAVIGATE_LEFT = 1;
+  this.NAVIGATE_RIGHT = 2;
+
+  // Various update mode when using the update() API
+  this.RESET_ALL_ON_UPDATE = 0;
+  this.RESET_SINGLE_ON_UPDATE = 1;
+  this.APPEND_ON_UPDATE = 2;
+
+  this.DEFAULT_LEGEND_MARGIN = 10;
+
+  this.root = null;
+  this.tooltip = null;
+
+  this._maxDomainReached = false;
+  this._minDomainReached = false;
+
+  this.domainPosition = new DomainPosition();
+  this.Legend = null;
+  this.legendScale = null;
+
+  // List of domains that are skipped because of DST
+  // All times belonging to these domains should be re-assigned to the previous domain
+  this.DSTDomain = [];
+
+  /**
+   * Display the graph for the first time
+   * @return bool True if the calendar is created
+   */
+  this._init = function () {
+    self
+      .getDomain(self.options.start)
+      .map(function (d) {
+        return d.getTime();
+      })
+      .map(function (d) {
+        self._domains.set(
+          d,
+          self.getSubDomain(d).map(function (d) {
+            return { t: self._domainType[self.options.subDomain].extractUnit(d), v: null };
+          }),
+        );
+      });
+
+    self.root = d3
+      .select(self.options.itemSelector)
+      .append('svg')
+      .attr('class', 'cal-heatmap-container');
+
+    self.root.attr('x', 0).attr('y', 0).append('svg').attr('class', 'graph');
+
+    self.Legend = new Legend(self);
+
+    if (self.options.paintOnLoad) {
+      _initCalendar();
+    }
+    self.root.call(self.tip);
+    self.root.call(self.legendTip);
+
+    return true;
+  };
+
+  function _initCalendar() {
+    self.verticalDomainLabel =
+      self.options.label.position === 'top' || self.options.label.position === 'bottom';
+
+    self.domainVerticalLabelHeight =
+      self.options.label.height === null
+        ? Math.max(25, self.options.cellSize * 2)
+        : self.options.label.height;
+    self.domainHorizontalLabelWidth = 0;
+
+    if (self.options.domainLabelFormat === '' && self.options.label.height === null) {
+      self.domainVerticalLabelHeight = 0;
+    }
+
+    if (!self.verticalDomainLabel) {
+      self.domainVerticalLabelHeight = 0;
+      self.domainHorizontalLabelWidth = self.options.label.width;
+    }
+
+    self.paint();
+
+    // =========================================================================//
+    // ATTACHING DOMAIN NAVIGATION EVENT                    //
+    // =========================================================================//
+    if (self.options.nextSelector !== false) {
+      d3.select(self.options.nextSelector).on('click.' + self.options.itemNamespace, function () {
+        d3.event.preventDefault();
+        return self.loadNextDomain(1);
+      });
+    }
+
+    if (self.options.previousSelector !== false) {
+      d3.select(self.options.previousSelector).on(
+        'click.' + self.options.itemNamespace,
+        function () {
+          d3.event.preventDefault();
+          return self.loadPreviousDomain(1);
+        },
+      );
+    }
+
+    self.Legend.redraw(self.graphDim.width - self.options.domainGutter - self.options.cellPadding);
+    self.afterLoad();
+
+    var domains = self.getDomainKeys();
+
+    // Fill the graph with some datas
+    if (self.options.loadOnInit) {
+      self.getDatas(
+        self.options.data,
+        new Date(domains[0]),
+        self.getSubDomain(domains[domains.length - 1]).pop(),
+        function () {
+          self.fill();
+          self.onComplete();
+        },
+      );
+    } else {
+      self.onComplete();
+    }
+
+    self.checkIfMinDomainIsReached(domains[0]);
+    self.checkIfMaxDomainIsReached(self.getNextDomain().getTime());
+  }
+
+  // Return the width of the domain block, without the domain gutter
+  // @param int d Domain start timestamp
+  function w(d, outer) {
+    var width =
+      self.options.cellSize * self._domainType[self.options.subDomain].column(d) +
+      self.options.cellPadding * self._domainType[self.options.subDomain].column(d);
+    if (arguments.length === 2 && outer === true) {
+      return (width +=
+        self.domainHorizontalLabelWidth +
+        self.options.domainGutter +
+        self.options.domainMargin[1] +
+        self.options.domainMargin[3]);
+    }
+    return width;
+  }
+
+  // Return the height of the domain block, without the domain gutter
+  function h(d, outer) {
+    var height =
+      self.options.cellSize * self._domainType[self.options.subDomain].row(d) +
+      self.options.cellPadding * self._domainType[self.options.subDomain].row(d);
+    if (arguments.length === 2 && outer === true) {
+      height +=
+        self.options.domainGutter +
+        self.domainVerticalLabelHeight +
+        self.options.domainMargin[0] +
+        self.options.domainMargin[2];
+    }
+    return height;
+  }
+
+  /**
+   *
+   *
+   * @param int navigationDir
+   */
+  this.paint = function (navigationDir) {
+    var options = self.options;
+
+    if (arguments.length === 0) {
+      navigationDir = false;
+    }
+
+    // Painting all the domains
+    var domainSvg = self.root
+      .select('.graph')
+      .selectAll('.graph-domain')
+      .data(
+        function () {
+          var data = self.getDomainKeys();
+          return navigationDir === self.NAVIGATE_LEFT ? data.reverse() : data;
+        },
+        function (d) {
+          return d;
+        },
+      );
+    var enteringDomainDim = 0;
+    var exitingDomainDim = 0;
+
+    // =========================================================================//
+    // PAINTING DOMAIN                              //
+    // =========================================================================//
+
+    var svg = domainSvg
+      .enter()
+      .append('svg')
+      .attr('width', function (d) {
+        return w(d, true);
+      })
+      .attr('height', function (d) {
+        return h(d, true);
+      })
+      .attr('x', function (d) {
+        if (options.verticalOrientation) {
+          self.graphDim.width = Math.max(self.graphDim.width, w(d, true));
+          return 0;
+        } else {
+          return getDomainPosition(d, self.graphDim, 'width', w(d, true));
+        }
+      })
+      .attr('y', function (d) {
+        if (options.verticalOrientation) {
+          return getDomainPosition(d, self.graphDim, 'height', h(d, true));
+        } else {
+          self.graphDim.height = Math.max(self.graphDim.height, h(d, true));
+          return 0;
+        }
+      })
+      .attr('class', function (d) {
+        var classname = 'graph-domain';
+        var date = new Date(d);
+        switch (options.domain) {
+          case 'hour':
+            classname += ' h_' + date.getHours();
+          /* falls through */
+          case 'day':
+            classname += ' d_' + date.getDate() + ' dy_' + date.getDay();
+          /* falls through */
+          case 'week':
+            classname += ' w_' + self.getWeekNumber(date);
+          /* falls through */
+          case 'month':
+            classname += ' m_' + (date.getMonth() + 1);
+          /* falls through */
+          case 'year':
+            classname += ' y_' + date.getFullYear();
+        }
+        return classname;
+      });
+    self.lastInsertedSvg = svg;
+
+    function getDomainPosition(domainIndex, graphDim, axis, domainDim) {
+      var tmp = 0;
+      switch (navigationDir) {
+        case false:
+          tmp = graphDim[axis];
+
+          graphDim[axis] += domainDim;
+          self.domainPosition.setPosition(domainIndex, tmp);
+          return tmp;
+
+        case self.NAVIGATE_RIGHT:
+          self.domainPosition.setPosition(domainIndex, graphDim[axis]);
+
+          enteringDomainDim = domainDim;
+          exitingDomainDim = self.domainPosition.getPositionFromIndex(1);
+
+          self.domainPosition.shiftRightBy(exitingDomainDim);
+          return graphDim[axis];
+
+        case self.NAVIGATE_LEFT:
+          tmp = -domainDim;
+
+          enteringDomainDim = -tmp;
+          exitingDomainDim = graphDim[axis] - self.domainPosition.getLast();
+
+          self.domainPosition.setPosition(domainIndex, tmp);
+          self.domainPosition.shiftLeftBy(enteringDomainDim);
+          return tmp;
+      }
+    }
+
+    svg
+      .append('rect')
+      .attr('width', function (d) {
+        return w(d, true) - options.domainGutter - options.cellPadding;
+      })
+      .attr('height', function (d) {
+        return h(d, true) - options.domainGutter - options.cellPadding;
+      })
+      .attr('class', 'domain-background');
+
+    // =========================================================================//
+    // PAINTING SUBDOMAINS                            //
+    // =========================================================================//
+    var subDomainSvgGroup = svg
+      .append('svg')
+      .attr('x', function () {
+        if (options.label.position === 'left') {
+          return self.domainHorizontalLabelWidth + options.domainMargin[3];
+        } else {
+          return options.domainMargin[3];
+        }
+      })
+      .attr('y', function () {
+        if (options.label.position === 'top') {
+          return self.domainVerticalLabelHeight + options.domainMargin[0];
+        } else {
+          return options.domainMargin[0];
+        }
+      })
+      .attr('class', 'graph-subdomain-group');
+    var rect = subDomainSvgGroup
+      .selectAll('g')
+      .data(function (d) {
+        return self._domains.get(d);
+      })
+      .enter()
+      .append('g');
+    rect
+      .append('rect')
+      .attr('class', function (d) {
+        return (
+          'graph-rect' +
+          self.getHighlightClassName(d.t) +
+          (options.onClick !== null ? ' hover_cursor' : '')
+        );
+      })
+      .attr('width', options.cellSize)
+      .attr('height', options.cellSize)
+      .attr('x', function (d) {
+        return self.positionSubDomainX(d.t);
+      })
+      .attr('y', function (d) {
+        return self.positionSubDomainY(d.t);
+      })
+      .on('click', function (d) {
+        if (options.onClick !== null) {
+          return self.onClick(new Date(d.t), d.v);
+        }
+      })
+      .call(function (selection) {
+        if (options.cellRadius > 0) {
+          selection.attr('rx', options.cellRadius).attr('ry', options.cellRadius);
+        }
+
+        if (
+          self.legendScale !== null &&
+          options.legendColors !== null &&
+          options.legendColors.hasOwnProperty('base')
+        ) {
+          selection.attr('fill', options.legendColors.base);
+        }
+
+        if (options.tooltip) {
+          selection
+            .on('mouseover', function (d) {
+              self.tip.show(d, this);
+            })
+            .on('mouseout', function () {
+              self.tip.hide(d);
+            });
+        }
+      });
+
+    // Appending a title to each subdomain
+    if (!options.tooltip) {
+      rect.append('title').text(function (d) {
+        return self.formatDate(new Date(d.t), options.subDomainDateFormat);
+      });
+    }
+
+    // =========================================================================//
+    // PAINTING LABEL                              //
+    // =========================================================================//
+    if (options.domainLabelFormat !== '') {
+      svg
+        .append('text')
+        .attr('class', 'graph-label')
+        .attr('y', function (d) {
+          var y = options.domainMargin[0];
+          switch (options.label.position) {
+            case 'top':
+              y += self.domainVerticalLabelHeight / 2;
+              break;
+            case 'bottom':
+              y += h(d) + self.domainVerticalLabelHeight / 2;
+          }
+
+          return (
+            y +
+            options.label.offset.y *
+              ((options.label.rotate === 'right' && options.label.position === 'right') ||
+              (options.label.rotate === 'left' && options.label.position === 'left')
+                ? -1
+                : 1)
+          );
+        })
+        .attr('x', function (d) {
+          var x = options.domainMargin[3];
+          switch (options.label.position) {
+            case 'right':
+              x += w(d);
+              break;
+            case 'bottom':
+            case 'top':
+              x += w(d) / 2;
+          }
+
+          if (options.label.align === 'right') {
+            return (
+              x +
+              self.domainHorizontalLabelWidth -
+              options.label.offset.x * (options.label.rotate === 'right' ? -1 : 1)
+            );
+          }
+          return x + options.label.offset.x;
+        })
+        .attr('text-anchor', function () {
+          switch (options.label.align) {
+            case 'start':
+            case 'left':
+              return 'start';
+            case 'end':
+            case 'right':
+              return 'end';
+            default:
+              return 'middle';
+          }
+        })
+        .attr('dominant-baseline', function () {
+          return self.verticalDomainLabel ? 'middle' : 'top';
+        })
+        .text(function (d) {
+          return self.formatDate(new Date(d), options.domainLabelFormat);
+        })
+        .call(domainRotate);
+    }
+
+    function domainRotate(selection) {
+      switch (options.label.rotate) {
+        case 'right':
+          selection.attr('transform', function (d) {
+            var s = 'rotate(90), ';
+            switch (options.label.position) {
+              case 'right':
+                s += 'translate(-' + w(d) + ' , -' + w(d) + ')';
+                break;
+              case 'left':
+                s += 'translate(0, -' + self.domainHorizontalLabelWidth + ')';
+                break;
+            }
+
+            return s;
+          });
+          break;
+        case 'left':
+          selection.attr('transform', function (d) {
+            var s = 'rotate(270), ';
+            switch (options.label.position) {
+              case 'right':
+                s += 'translate(-' + (w(d) + self.domainHorizontalLabelWidth) + ' , ' + w(d) + ')';
+                break;
+              case 'left':
+                s +=
+                  'translate(-' +
+                  self.domainHorizontalLabelWidth +
+                  ' , ' +
+                  self.domainHorizontalLabelWidth +
+                  ')';
+                break;
+            }
+
+            return s;
+          });
+          break;
+      }
+    }
+
+    // =========================================================================//
+    // PAINTING DOMAIN SUBDOMAIN CONTENT                    //
+    // =========================================================================//
+    if (options.subDomainTextFormat !== null) {
+      rect
+        .append('text')
+        .attr('class', function (d) {
+          return 'subdomain-text' + self.getHighlightClassName(d.t);
+        })
+        .attr('x', function (d) {
+          return self.positionSubDomainX(d.t) + options.cellSize / 2;
+        })
+        .attr('y', function (d) {
+          return self.positionSubDomainY(d.t) + options.cellSize / 2;
+        })
+        .attr('text-anchor', 'middle')
+        .attr('dominant-baseline', 'central')
+        .text(function (d) {
+          return self.formatDate(new Date(d.t), options.subDomainTextFormat);
+        });
+    }
+
+    // =========================================================================//
+    // ANIMATION                                //
+    // =========================================================================//
+
+    if (navigationDir !== false) {
+      domainSvg
+        .transition()
+        .duration(options.animationDuration)
+        .attr('x', function (d) {
+          return options.verticalOrientation ? 0 : self.domainPosition.getPosition(d);
+        })
+        .attr('y', function (d) {
+          return options.verticalOrientation ? self.domainPosition.getPosition(d) : 0;
+        });
+    }
+
+    var tempWidth = self.graphDim.width;
+    var tempHeight = self.graphDim.height;
+
+    if (options.verticalOrientation) {
+      self.graphDim.height += enteringDomainDim - exitingDomainDim;
+    } else {
+      self.graphDim.width += enteringDomainDim - exitingDomainDim;
+    }
+
+    // At the time of exit, domainsWidth and domainsHeight already automatically shifted
+    domainSvg
+      .exit()
+      .transition()
+      .duration(options.animationDuration)
+      .attr('x', function (d) {
+        if (options.verticalOrientation) {
+          return 0;
+        } else {
+          switch (navigationDir) {
+            case self.NAVIGATE_LEFT:
+              return Math.min(self.graphDim.width, tempWidth);
+            case self.NAVIGATE_RIGHT:
+              return -w(d, true);
+          }
+        }
+      })
+      .attr('y', function (d) {
+        if (options.verticalOrientation) {
+          switch (navigationDir) {
+            case self.NAVIGATE_LEFT:
+              return Math.min(self.graphDim.height, tempHeight);
+            case self.NAVIGATE_RIGHT:
+              return -h(d, true);
+          }
+        } else {
+          return 0;
+        }
+      })
+      .remove();
+
+    // Resize the root container
+    self.resize();
+  };
+};
+
+CalHeatMap.prototype = {
+  /**
+   * Validate and merge user settings with default settings
+   *
+   * @param  {object} settings User settings
+   * @return {bool} False if settings contains error
+   */
+  /* jshint maxstatements:false */
+  init: function (settings) {
+    'use strict';
+
+    var parent = this;
+
+    var options = (parent.options = mergeRecursive(parent.options, settings));
+
+    // Fatal errors
+    // Stop script execution on error
+    validateDomainType();
+    validateSelector(options.itemSelector, false, 'itemSelector');
+
+    if (parent.allowedDataType.indexOf(options.dataType) === -1) {
+      throw new Error("The data type '" + options.dataType + "' is not valid data type");
+    }
+
+    if (d3.select(options.itemSelector)[0][0] === null) {
+      throw new Error(
+        "The node '" + options.itemSelector + "' specified in itemSelector does not exists",
+      );
+    }
+
+    try {
+      validateSelector(options.nextSelector, true, 'nextSelector');
+      validateSelector(options.previousSelector, true, 'previousSelector');
+    } catch (error) {
+      console.log(error.message);
+      return false;
+    }
+
+    // If other settings contains error, will fallback to default
+
+    if (!settings.hasOwnProperty('subDomain')) {
+      this.options.subDomain = getOptimalSubDomain(settings.domain);
+    }
+
+    if (typeof options.itemNamespace !== 'string' || options.itemNamespace === '') {
+      console.log('itemNamespace can not be empty, falling back to cal-heatmap');
+      options.itemNamespace = 'cal-heatmap';
+    }
+
+    // Don't touch these settings
+    var s = [
+      'data',
+      'onComplete',
+      'onClick',
+      'afterLoad',
+      'afterLoadData',
+      'afterLoadPreviousDomain',
+      'afterLoadNextDomain',
+      'afterUpdate',
+    ];
+
+    for (var k in s) {
+      if (settings.hasOwnProperty(s[k])) {
+        options[s[k]] = settings[s[k]];
+      }
+    }
+
+    options.subDomainDateFormat =
+      typeof options.subDomainDateFormat === 'string' ||
+      typeof options.subDomainDateFormat === 'function'
+        ? options.subDomainDateFormat
+        : this._domainType[options.subDomain].format.date;
+    options.domainLabelFormat =
+      typeof options.domainLabelFormat === 'string' ||
+      typeof options.domainLabelFormat === 'function'
+        ? options.domainLabelFormat
+        : this._domainType[options.domain].format.legend;
+    options.subDomainTextFormat =
+      (typeof options.subDomainTextFormat === 'string' && options.subDomainTextFormat !== '') ||
+      typeof options.subDomainTextFormat === 'function'
+        ? options.subDomainTextFormat
+        : null;
+    options.domainMargin = expandMarginSetting(options.domainMargin);
+    options.legendMargin = expandMarginSetting(options.legendMargin);
+    options.highlight = parent.expandDateSetting(options.highlight);
+    options.itemName = expandItemName(options.itemName);
+    options.colLimit = parseColLimit(options.colLimit);
+    options.rowLimit = parseRowLimit(options.rowLimit);
+    if (!settings.hasOwnProperty('legendMargin')) {
+      autoAddLegendMargin();
+    }
+    autoAlignLabel();
+
+    /**
+     * Validate that a queryString is valid
+     *
+     * @param  {Element|string|bool} selector   The queryString to test
+     * @param  {bool}  canBeFalse  Whether false is an accepted and valid value
+     * @param  {string} name    Name of the tested selector
+     * @throws {Error}        If the selector is not valid
+     * @return {bool}        True if the selector is a valid queryString
+     */
+    function validateSelector(selector, canBeFalse, name) {
+      if (
+        ((canBeFalse && selector === false) ||
+          selector instanceof Element ||
+          typeof selector === 'string') &&
+        selector !== ''
+      ) {
+        return true;
+      }
+      throw new Error('The ' + name + ' is not valid');
+    }
+
+    /**
+     * Return the optimal subDomain for the specified domain
+     *
+     * @param  {string} domain a domain name
+     * @return {string}        the subDomain name
+     */
+    function getOptimalSubDomain(domain) {
+      switch (domain) {
+        case 'year':
+          return 'month';
+        case 'month':
+          return 'day';
+        case 'week':
+          return 'day';
+        case 'day':
+          return 'hour';
+        default:
+          return 'min';
+      }
+    }
+
+    /**
+     * Ensure that the domain and subdomain are valid
+     *
+     * @throw {Error} when domain or subdomain are not valid
+     * @return {bool} True if domain and subdomain are valid and compatible
+     */
+    function validateDomainType() {
+      if (
+        !parent._domainType.hasOwnProperty(options.domain) ||
+        options.domain === 'min' ||
+        options.domain.substring(0, 2) === 'x_'
+      ) {
+        throw new Error("The domain '" + options.domain + "' is not valid");
+      }
+
+      if (!parent._domainType.hasOwnProperty(options.subDomain) || options.subDomain === 'year') {
+        throw new Error("The subDomain '" + options.subDomain + "' is not valid");
+      }
+
+      if (parent._domainType[options.domain].level <= parent._domainType[options.subDomain].level) {
+        throw new Error(
+          "'" + options.subDomain + "' is not a valid subDomain to '" + options.domain + "'",
+        );
+      }
+
+      return true;
+    }
+
+    /**
+     * Fine-tune the label alignement depending on its position
+     *
+     * @return void
+     */
+    function autoAlignLabel() {
+      // Auto-align label, depending on it's position
+      if (
+        !settings.hasOwnProperty('label') ||
+        (settings.hasOwnProperty('label') && !settings.label.hasOwnProperty('align'))
+      ) {
+        switch (options.label.position) {
+          case 'left':
+            options.label.align = 'right';
+            break;
+          case 'right':
+            options.label.align = 'left';
+            break;
+          default:
+            options.label.align = 'center';
+        }
+
+        if (options.label.rotate === 'left') {
+          options.label.align = 'right';
+        } else if (options.label.rotate === 'right') {
+          options.label.align = 'left';
+        }
+      }
+
+      if (
+        !settings.hasOwnProperty('label') ||
+        (settings.hasOwnProperty('label') && !settings.label.hasOwnProperty('offset'))
+      ) {
+        if (options.label.position === 'left' || options.label.position === 'right') {
+          options.label.offset = {
+            x: 10,
+            y: 15,
+          };
+        }
+      }
+    }
+
+    /**
+     * If not specified, add some margin around the legend depending on its position
+     *
+     * @return void
+     */
+    function autoAddLegendMargin() {
+      switch (options.legendVerticalPosition) {
+        case 'top':
+          options.legendMargin[2] = parent.DEFAULT_LEGEND_MARGIN;
+          break;
+        case 'bottom':
+          options.legendMargin[0] = parent.DEFAULT_LEGEND_MARGIN;
+          break;
+        case 'middle':
+        case 'center':
+          options.legendMargin[options.legendHorizontalPosition === 'right' ? 3 : 1] =
+            parent.DEFAULT_LEGEND_MARGIN;
+      }
+    }
+
+    /**
+     * Expand a number of an array of numbers to an usable 4 values array
+     *
+     * @param  {integer|array} value
+     * @return {array}        array
+     */
+    function expandMarginSetting(value) {
+      if (typeof value === 'number') {
+        value = [value];
+      }
+
+      if (!Array.isArray(value)) {
+        console.log('Margin only takes an integer or an array of integers');
+        value = [0];
+      }
+
+      switch (value.length) {
+        case 1:
+          return [value[0], value[0], value[0], value[0]];
+        case 2:
+          return [value[0], value[1], value[0], value[1]];
+        case 3:
+          return [value[0], value[1], value[2], value[1]];
+        case 4:
+          return value;
+        default:
+          return value.slice(0, 4);
+      }
+    }
+
+    /**
+     * Convert a string to an array like [singular-form, plural-form]
+     *
+     * @param  {string|array} value Date to convert
+     * @return {array}       An array like [singular-form, plural-form]
+     */
+    function expandItemName(value) {
+      if (typeof value === 'string') {
+        return [value, value + (value !== '' ? 's' : '')];
+      }
+
+      if (Array.isArray(value)) {
+        if (value.length === 1) {
+          return [value[0], value[0] + 's'];
+        } else if (value.length > 2) {
+          return value.slice(0, 2);
+        }
+
+        return value;
+      }
+
+      return ['item', 'items'];
+    }
+
+    function parseColLimit(value) {
+      return value > 0 ? value : null;
+    }
+
+    function parseRowLimit(value) {
+      if (value > 0 && options.colLimit > 0) {
+        console.log('colLimit and rowLimit are mutually exclusive, rowLimit will be ignored');
+        return null;
+      }
+      return value > 0 ? value : null;
+    }
+
+    return this._init();
+  },
+
+  /**
+   * Convert a keyword or an array of keyword/date to an array of date objects
+   *
+   * @param  {string|array|Date} value Data to convert
+   * @return {array}       An array of Dates
+   */
+  expandDateSetting: function (value) {
+    'use strict';
+
+    if (!Array.isArray(value)) {
+      value = [value];
+    }
+
+    return value
+      .map(function (data) {
+        if (data === 'now') {
+          return new Date();
+        }
+        if (data instanceof Date) {
+          return data;
+        }
+        return false;
+      })
+      .filter(function (d) {
+        return d !== false;
+      });
+  },
+
+  /**
+   * Fill the calendar by coloring the cells
+   *
+   * @param array svg An array of html node to apply the transformation to (optional)
+   *                  It's used to limit the painting to only a subset of the calendar
+   * @return void
+   */
+  fill: function (svg) {
+    'use strict';
+
+    var parent = this;
+    var options = parent.options;
+
+    if (arguments.length === 0) {
+      svg = parent.root.selectAll('.graph-domain');
+    }
+
+    var rect = svg
+      .selectAll('svg')
+      .selectAll('g')
+      .data(function (d) {
+        return parent._domains.get(d);
+      });
+    /**
+     * Colorize the cell via a style attribute if enabled
+     */
+    function addStyle(element) {
+      if (parent.legendScale === null) {
+        return false;
+      }
+
+      element.attr('fill', function (d) {
+        if (
+          d.v === null &&
+          options.hasOwnProperty('considerMissingDataAsZero') &&
+          !options.considerMissingDataAsZero
+        ) {
+          if (options.legendColors.hasOwnProperty('base')) {
+            return options.legendColors.base;
+          }
+        }
+
+        if (
+          options.legendColors !== null &&
+          options.legendColors.hasOwnProperty('empty') &&
+          (d.v === 0 ||
+            (d.v === null &&
+              options.hasOwnProperty('considerMissingDataAsZero') &&
+              options.considerMissingDataAsZero))
+        ) {
+          return options.legendColors.empty;
+        }
+
+        if (
+          d.v < 0 &&
+          options.legend[0] > 0 &&
+          options.legendColors !== null &&
+          options.legendColors.hasOwnProperty('overflow')
+        ) {
+          return options.legendColors.overflow;
+        }
+
+        return parent.legendScale(Math.min(d.v, options.legend[options.legend.length - 1]));
+      });
+    }
+
+    rect
+      .transition()
+      .duration(options.animationDuration)
+      .select('rect')
+      .attr('class', function (d) {
+        var htmlClass = parent.getHighlightClassName(d.t).trim().split(' ');
+        var pastDate = parent.dateIsLessThan(d.t, new Date());
+        var sameDate = parent.dateIsEqual(d.t, new Date());
+
+        if (
+          parent.legendScale === null ||
+          (d.v === null &&
+            options.hasOwnProperty('considerMissingDataAsZero') &&
+            !options.considerMissingDataAsZero &&
+            !options.legendColors.hasOwnProperty('base'))
+        ) {
+          htmlClass.push('graph-rect');
+        }
+
+        if (sameDate) {
+          htmlClass.push('now');
+        } else if (!pastDate) {
+          htmlClass.push('future');
+        }
+
+        if (d.v !== null) {
+          htmlClass.push(parent.Legend.getClass(d.v, parent.legendScale === null));
+        } else if (options.considerMissingDataAsZero && pastDate) {
+          htmlClass.push(parent.Legend.getClass(0, parent.legendScale === null));
+        }
+
+        if (options.onClick !== null) {
+          htmlClass.push('hover_cursor');
+        }
+
+        return htmlClass.join(' ');
+      })
+      .call(addStyle);
+
+    rect
+      .transition()
+      .duration(options.animationDuration)
+      .select('title')
+      .text(function (d) {
+        return parent.getSubDomainTitle(d);
+      });
+
+    function formatSubDomainText(element) {
+      if (typeof options.subDomainTextFormat === 'function') {
+        element.text(function (d) {
+          return options.subDomainTextFormat(d.t, d.v);
+        });
+      }
+    }
+
+    /**
+     * Change the subDomainText class if necessary
+     * Also change the text, e.g when text is representing the value
+     * instead of the date
+     */
+    rect
+      .transition()
+      .duration(options.animationDuration)
+      .select('text')
+      .attr('class', function (d) {
+        return 'subdomain-text' + parent.getHighlightClassName(d.t);
+      })
+      .call(formatSubDomainText);
+  },
+
+  /**
+   * Sprintf like function.
+   * Replaces placeholders {0} in string with values from provided object.
+   *
+   * @param string formatted String containing placeholders.
+   * @param object args Object with properties to replace placeholders in string.
+   *
+   * @return String
+   */
+  formatStringWithObject: function (formatted, args) {
+    'use strict';
+    for (var prop in args) {
+      if (args.hasOwnProperty(prop)) {
+        var regexp = new RegExp('\\{' + prop + '\\}', 'gi');
+        formatted = formatted.replace(regexp, args[prop]);
+      }
+    }
+    return formatted;
+  },
+
+  // =========================================================================//
+  // EVENTS CALLBACK                              //
+  // =========================================================================//
+
+  /**
+   * Helper method for triggering event callback
+   *
+   * @param  string  eventName       Name of the event to trigger
+   * @param  array  successArgs     List of argument to pass to the callback
+   * @param  boolean  skip      Whether to skip the event triggering
+   * @return mixed  True when the triggering was skipped, false on error, else the callback function
+   */
+  triggerEvent: function (eventName, successArgs, skip) {
+    'use strict';
+
+    if ((arguments.length === 3 && skip) || this.options[eventName] === null) {
+      return true;
+    }
+
+    if (typeof this.options[eventName] === 'function') {
+      if (typeof successArgs === 'function') {
+        successArgs = successArgs();
+      }
+      return this.options[eventName].apply(this, successArgs);
+    } else {
+      console.log('Provided callback for ' + eventName + ' is not a function.');
+      return false;
+    }
+  },
+
+  /**
+   * Event triggered on a mouse click on a subDomain cell
+   *
+   * @param  Date    d    Date of the subdomain block
+   * @param  int    itemNb  Number of items in that date
+   */
+  onClick: function (d, itemNb) {
+    'use strict';
+
+    return this.triggerEvent('onClick', [d, itemNb]);
+  },
+
+  /**
+   * Event triggered after drawing the calendar, byt before filling it with data
+   */
+  afterLoad: function () {
+    'use strict';
+
+    return this.triggerEvent('afterLoad');
+  },
+
+  /**
+   * Event triggered after completing drawing and filling the calendar
+   */
+  onComplete: function () {
+    'use strict';
+
+    var response = this.triggerEvent('onComplete', [], this._completed);
+    this._completed = true;
+    return response;
+  },
+
+  /**
+   * Event triggered after shifting the calendar one domain back
+   *
+   * @param  Date    start  Domain start date
+   * @param  Date    end    Domain end date
+   */
+  afterLoadPreviousDomain: function (start) {
+    'use strict';
+
+    var parent = this;
+    return this.triggerEvent('afterLoadPreviousDomain', function () {
+      var subDomain = parent.getSubDomain(start);
+      return [subDomain.shift(), subDomain.pop()];
+    });
+  },
+
+  /**
+   * Event triggered after shifting the calendar one domain above
+   *
+   * @param  Date    start  Domain start date
+   * @param  Date    end    Domain end date
+   */
+  afterLoadNextDomain: function (start) {
+    'use strict';
+
+    var parent = this;
+    return this.triggerEvent('afterLoadNextDomain', function () {
+      var subDomain = parent.getSubDomain(start);
+      return [subDomain.shift(), subDomain.pop()];
+    });
+  },
+
+  /**
+   * Event triggered after loading the leftmost domain allowed by minDate
+   *
+   * @param  boolean  reached True if the leftmost domain was reached
+   */
+  onMinDomainReached: function (reached) {
+    'use strict';
+
+    this._minDomainReached = reached;
+    return this.triggerEvent('onMinDomainReached', [reached]);
+  },
+
+  /**
+   * Event triggered after loading the rightmost domain allowed by maxDate
+   *
+   * @param  boolean  reached True if the rightmost domain was reached
+   */
+  onMaxDomainReached: function (reached) {
+    'use strict';
+
+    this._maxDomainReached = reached;
+    return this.triggerEvent('onMaxDomainReached', [reached]);
+  },
+
+  checkIfMinDomainIsReached: function (date, upperBound) {
+    'use strict';
+
+    if (this.minDomainIsReached(date)) {
+      this.onMinDomainReached(true);
+    }
+
+    if (arguments.length === 2) {
+      if (this._maxDomainReached && !this.maxDomainIsReached(upperBound)) {
+        this.onMaxDomainReached(false);
+      }
+    }
+  },
+
+  checkIfMaxDomainIsReached: function (date, lowerBound) {
+    'use strict';
+
+    if (this.maxDomainIsReached(date)) {
+      this.onMaxDomainReached(true);
+    }
+
+    if (arguments.length === 2) {
+      if (this._minDomainReached && !this.minDomainIsReached(lowerBound)) {
+        this.onMinDomainReached(false);
+      }
+    }
+  },
+
+  afterUpdate: function () {
+    'use strict';
+
+    return this.triggerEvent('afterUpdate');
+  },
+
+  // =========================================================================//
+  // FORMATTER                                //
+  // =========================================================================//
+
+  formatNumber: d3.format(',g'),
+
+  formatDate: function (d, format) {
+    'use strict';
+
+    if (arguments.length < 2) {
+      format = 'title';
+    }
+
+    if (typeof format === 'function') {
+      return format(d);
+    } else {
+      var f = d3.time.format(format);
+      return f(d);
+    }
+  },
+
+  getSubDomainTitle: function (d) {
+    'use strict';
+
+    if (d.v === null && !this.options.considerMissingDataAsZero) {
+      return this.formatStringWithObject(this.options.subDomainTitleFormat.empty, {
+        date: this.formatDate(new Date(d.t), this.options.subDomainDateFormat),
+      });
+    } else {
+      var value = d.v;
+      // Consider null as 0
+      if (value === null && this.options.considerMissingDataAsZero) {
+        value = 0;
+      }
+
+      return this.formatStringWithObject(this.options.subDomainTitleFormat.filled, {
+        count: this.formatNumber(value),
+        name: this.options.itemName[value !== 1 ? 1 : 0],
+        connector: this._domainType[this.options.subDomain].format.connector,
+        date: this.formatDate(new Date(d.t), this.options.subDomainDateFormat),
+      });
+    }
+  },
+
+  // =========================================================================//
+  // DOMAIN NAVIGATION                            //
+  // =========================================================================//
+
+  /**
+   * Shift the calendar one domain forward
+   *
+   * The new domain is loaded only if it's not beyond maxDate
+   *
+   * @param int n Number of domains to load
+   * @return bool True if the next domain was loaded, else false
+   */
+  loadNextDomain: function (n) {
+    'use strict';
+
+    if (this._maxDomainReached || n === 0) {
+      return false;
+    }
+
+    var bound = this.loadNewDomains(this.NAVIGATE_RIGHT, this.getDomain(this.getNextDomain(), n));
+
+    this.afterLoadNextDomain(bound.end);
+    this.checkIfMaxDomainIsReached(this.getNextDomain().getTime(), bound.start);
+
+    return true;
+  },
+
+  /**
+   * Shift the calendar one domain backward
+   *
+   * The previous domain is loaded only if it's not beyond the minDate
+   *
+   * @param int n Number of domains to load
+   * @return bool True if the previous domain was loaded, else false
+   */
+  loadPreviousDomain: function (n) {
+    'use strict';
+
+    if (this._minDomainReached || n === 0) {
+      return false;
+    }
+
+    var bound = this.loadNewDomains(
+      this.NAVIGATE_LEFT,
+      this.getDomain(this.getDomainKeys()[0], -n).reverse(),
+    );
+
+    this.afterLoadPreviousDomain(bound.start);
+    this.checkIfMinDomainIsReached(bound.start, bound.end);
+
+    return true;
+  },
+
+  loadNewDomains: function (direction, newDomains) {
+    'use strict';
+
+    var parent = this;
+    var backward = direction === this.NAVIGATE_LEFT;
+    var i = -1;
+    var total = newDomains.length;
+    var domains = this.getDomainKeys();
+
+    function buildSubDomain(d) {
+      return { t: parent._domainType[parent.options.subDomain].extractUnit(d), v: null };
+    }
+
+    // Remove out of bound domains from list of new domains to prepend
+    while (++i < total) {
+      if (backward && this.minDomainIsReached(newDomains[i])) {
+        newDomains = newDomains.slice(0, i + 1);
+        break;
+      }
+      if (!backward && this.maxDomainIsReached(newDomains[i])) {
+        newDomains = newDomains.slice(0, i);
+        break;
+      }
+    }
+
+    newDomains = newDomains.slice(-this.options.range);
+
+    for (i = 0, total = newDomains.length; i < total; i += 1) {
+      this._domains.set(
+        newDomains[i].getTime(),
+        this.getSubDomain(newDomains[i]).map(buildSubDomain),
+      );
+
+      this._domains.remove(backward ? domains.pop() : domains.shift());
+    }
+
+    domains = this.getDomainKeys();
+
+    if (backward) {
+      newDomains = newDomains.reverse();
+    }
+
+    this.paint(direction);
+
+    this.getDatas(
+      this.options.data,
+      newDomains[0],
+      this.getSubDomain(newDomains[newDomains.length - 1]).pop(),
+      function () {
+        parent.fill(parent.lastInsertedSvg);
+      },
+    );
+
+    return {
+      start: newDomains[backward ? 0 : 1],
+      end: domains[domains.length - 1],
+    };
+  },
+
+  /**
+   * Return whether a date is inside the scope determined by maxDate
+   *
+   * @param int datetimestamp The timestamp in ms to test
+   * @return bool True if the specified date correspond to the calendar upper bound
+   */
+  maxDomainIsReached: function (datetimestamp) {
+    'use strict';
+
+    return this.options.maxDate !== null && this.options.maxDate.getTime() < datetimestamp;
+  },
+
+  /**
+   * Return whether a date is inside the scope determined by minDate
+   *
+   * @param int datetimestamp The timestamp in ms to test
+   * @return bool True if the specified date correspond to the calendar lower bound
+   */
+  minDomainIsReached: function (datetimestamp) {
+    'use strict';
+
+    return this.options.minDate !== null && this.options.minDate.getTime() >= datetimestamp;
+  },
+
+  /**
+   * Return the list of the calendar's domain timestamp
+   *
+   * @return Array a sorted array of timestamp
+   */
+  getDomainKeys: function () {
+    'use strict';
+
+    return this._domains
+      .keys()
+      .map(function (d) {
+        return parseInt(d, 10);
+      })
+      .sort(function (a, b) {
+        return a - b;
+      });
+  },
+
+  // =========================================================================//
+  // POSITIONNING                                //
+  // =========================================================================//
+
+  positionSubDomainX: function (d) {
+    'use strict';
+
+    var index = this._domainType[this.options.subDomain].position.x(new Date(d));
+    return index * this.options.cellSize + index * this.options.cellPadding;
+  },
+
+  positionSubDomainY: function (d) {
+    'use strict';
+
+    var index = this._domainType[this.options.subDomain].position.y(new Date(d));
+    return index * this.options.cellSize + index * this.options.cellPadding;
+  },
+
+  getSubDomainColumnNumber: function (d) {
+    'use strict';
+
+    if (this.options.rowLimit > 0) {
+      var i = this._domainType[this.options.subDomain].maxItemNumber;
+      if (typeof i === 'function') {
+        i = i(d);
+      }
+      return Math.ceil(i / this.options.rowLimit);
+    }
+
+    var j = this._domainType[this.options.subDomain].defaultColumnNumber;
+    if (typeof j === 'function') {
+      j = j(d);
+    }
+    return this.options.colLimit || j;
+  },
+
+  getSubDomainRowNumber: function (d) {
+    'use strict';
+
+    if (this.options.colLimit > 0) {
+      var i = this._domainType[this.options.subDomain].maxItemNumber;
+      if (typeof i === 'function') {
+        i = i(d);
+      }
+      return Math.ceil(i / this.options.colLimit);
+    }
+
+    var j = this._domainType[this.options.subDomain].defaultRowNumber;
+    if (typeof j === 'function') {
+      j = j(d);
+    }
+    return this.options.rowLimit || j;
+  },
+
+  /**
+   * Return a classname if the specified date should be highlighted
+   *
+   * @param  timestamp date Date of the current subDomain
+   * @return String the highlight class
+   */
+  getHighlightClassName: function (d) {
+    'use strict';
+
+    d = new Date(d);
+
+    if (this.options.highlight.length > 0) {
+      for (var i in this.options.highlight) {
+        if (this.dateIsEqual(this.options.highlight[i], d)) {
+          return this.isNow(this.options.highlight[i]) ? ' highlight-now' : ' highlight';
+        }
+      }
+    }
+    return '';
+  },
+
+  /**
+   * Return whether the specified date is now,
+   * according to the type of subdomain
+   *
+   * @param  Date d The date to compare
+   * @return bool True if the date correspond to a subdomain cell
+   */
+  isNow: function (d) {
+    'use strict';
+
+    return this.dateIsEqual(d, new Date());
+  },
+
+  /**
+   * Return whether 2 dates are equals
+   * This function is subdomain-aware,
+   * and dates comparison are dependent of the subdomain
+   *
+   * @param  Date dateA First date to compare
+   * @param  Date dateB Secon date to compare
+   * @return bool true if the 2 dates are equals
+   */
+  /* jshint maxcomplexity: false */
+  dateIsEqual: function (dateA, dateB) {
+    'use strict';
+
+    if (!(dateA instanceof Date)) {
+      dateA = new Date(dateA);
+    }
+
+    if (!(dateB instanceof Date)) {
+      dateB = new Date(dateB);
+    }
+
+    switch (this.options.subDomain) {
+      case 'x_min':
+      case 'min':
+        return (
+          dateA.getFullYear() === dateB.getFullYear() &&
+          dateA.getMonth() === dateB.getMonth() &&
+          dateA.getDate() === dateB.getDate() &&
+          dateA.getHours() === dateB.getHours() &&
+          dateA.getMinutes() === dateB.getMinutes()
+        );
+      case 'x_hour':
+      case 'hour':
+        return (
+          dateA.getFullYear() === dateB.getFullYear() &&
+          dateA.getMonth() === dateB.getMonth() &&
+          dateA.getDate() === dateB.getDate() &&
+          dateA.getHours() === dateB.getHours()
+        );
+      case 'x_day':
+      case 'day':
+        return (
+          dateA.getFullYear() === dateB.getFullYear() &&
+          dateA.getMonth() === dateB.getMonth() &&
+          dateA.getDate() === dateB.getDate()
+        );
+      case 'x_week':
+      case 'week':
+        return (
+          dateA.getFullYear() === dateB.getFullYear() &&
+          this.getWeekNumber(dateA) === this.getWeekNumber(dateB)
+        );
+      case 'x_month':
+      case 'month':
+        return dateA.getFullYear() === dateB.getFullYear() && dateA.getMonth() === dateB.getMonth();
+      default:
+        return false;
+    }
+  },
+
+  /**
+   * Returns wether or not dateA is less than or equal to dateB. This function is subdomain aware.
+   * Performs automatic conversion of values.
+   * @param dateA may be a number or a Date
+   * @param dateB may be a number or a Date
+   * @returns {boolean}
+   */
+  dateIsLessThan: function (dateA, dateB) {
+    'use strict';
+
+    if (!(dateA instanceof Date)) {
+      dateA = new Date(dateA);
+    }
+
+    if (!(dateB instanceof Date)) {
+      dateB = new Date(dateB);
+    }
+
+    function normalizedMillis(date, subdomain) {
+      switch (subdomain) {
+        case 'x_min':
+        case 'min':
+          return new Date(
+            date.getFullYear(),
+            date.getMonth(),
+            date.getDate(),
+            date.getHours(),
+            date.getMinutes(),
+          ).getTime();
+        case 'x_hour':
+        case 'hour':
+          return new Date(
+            date.getFullYear(),
+            date.getMonth(),
+            date.getDate(),
+            date.getHours(),
+          ).getTime();
+        case 'x_day':
+        case 'day':
+          return new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime();
+        case 'x_week':
+        case 'week':
+        case 'x_month':
+        case 'month':
+          return new Date(date.getFullYear(), date.getMonth()).getTime();
+        default:
+          return date.getTime();
+      }
+    }
+
+    return (
+      normalizedMillis(dateA, this.options.subDomain) <
+      normalizedMillis(dateB, this.options.subDomain)
+    );
+  },
+
+  // =========================================================================//
+  // DATE COMPUTATION                              //
+  // =========================================================================//
+
+  /**
+   * Return the day of the year for the date
+   * @param  Date
+   * @return  int Day of the year [1,366]
+   */
+  getDayOfYear: d3.time.format('%j'),
+
+  /**
+   * Return the week number of the year
+   * Monday as the first day of the week
+   * @return int  Week number [0-53]
+   */
+  getWeekNumber: function (d) {
+    'use strict';
+
+    var f = this.options.weekStartOnMonday === true ? d3.time.format('%W') : d3.time.format('%U');
+    return f(d);
+  },
+
+  /**
+   * Return the week number, relative to its month
+   *
+   * @param  int|Date d Date or timestamp in milliseconds
+   * @return int Week number, relative to the month [0-5]
+   */
+  getMonthWeekNumber: function (d) {
+    'use strict';
+
+    if (typeof d === 'number') {
+      d = new Date(d);
+    }
+
+    var monthFirstWeekNumber = this.getWeekNumber(new Date(d.getFullYear(), d.getMonth()));
+    return this.getWeekNumber(d) - monthFirstWeekNumber - 1;
+  },
+
+  /**
+   * Return the number of weeks in the dates' year
+   *
+   * @param  int|Date d Date or timestamp in milliseconds
+   * @return int Number of weeks in the date's year
+   */
+  getWeekNumberInYear: function (d) {
+    'use strict';
+
+    if (typeof d === 'number') {
+      d = new Date(d);
+    }
+  },
+
+  /**
+   * Return the number of days in the date's month
+   *
+   * @param  int|Date d Date or timestamp in milliseconds
+   * @return int Number of days in the date's month
+   */
+  getDayCountInMonth: function (d) {
+    'use strict';
+
+    return this.getEndOfMonth(d).getDate();
+  },
+
+  /**
+   * Return the number of days in the date's year
+   *
+   * @param  int|Date d Date or timestamp in milliseconds
+   * @return int Number of days in the date's year
+   */
+  getDayCountInYear: function (d) {
+    'use strict';
+
+    if (typeof d === 'number') {
+      d = new Date(d);
+    }
+    return new Date(d.getFullYear(), 1, 29).getMonth() === 1 ? 366 : 365;
+  },
+
+  /**
+   * Get the weekday from a date
+   *
+   * Return the week day number (0-6) of a date,
+   * depending on whether the week start on monday or sunday
+   *
+   * @param  Date d
+   * @return int The week day number (0-6)
+   */
+  getWeekDay: function (d) {
+    'use strict';
+
+    if (this.options.weekStartOnMonday === false) {
+      return d.getDay();
+    }
+    return d.getDay() === 0 ? 6 : d.getDay() - 1;
+  },
+
+  /**
+   * Get the last day of the month
+   * @param  Date|int  d  Date or timestamp in milliseconds
+   * @return Date      Last day of the month
+   */
+  getEndOfMonth: function (d) {
+    'use strict';
+
+    if (typeof d === 'number') {
+      d = new Date(d);
+    }
+    return new Date(d.getFullYear(), d.getMonth() + 1, 0);
+  },
+
+  /**
+   *
+   * @param  Date date
+   * @param  int count
+   * @param  string step
+   * @return Date
+   */
+  jumpDate: function (date, count, step) {
+    'use strict';
+
+    var d = new Date(date);
+    switch (step) {
+      case 'hour':
+        d.setHours(d.getHours() + count);
+        break;
+      case 'day':
+        d.setHours(d.getHours() + count * 24);
+        break;
+      case 'week':
+        d.setHours(d.getHours() + count * 24 * 7);
+        break;
+      case 'month':
+        d.setMonth(d.getMonth() + count);
+        break;
+      case 'year':
+        d.setFullYear(d.getFullYear() + count);
+    }
+
+    return new Date(d);
+  },
+
+  // =========================================================================//
+  // DOMAIN COMPUTATION                            //
+  // =========================================================================//
+
+  /**
+   * Return all the minutes between 2 dates
+   *
+   * @param  Date  d  date  A date
+   * @param  int|date  range  Number of minutes in the range, or a stop date
+   * @return array  An array of minutes
+   */
+  getMinuteDomain: function (d, range) {
+    'use strict';
+
+    var start = new Date(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours());
+    var stop = null;
+    if (range instanceof Date) {
+      stop = new Date(range.getFullYear(), range.getMonth(), range.getDate(), range.getHours());
+    } else {
+      stop = new Date(+start + range * 1000 * 60);
+    }
+    return d3.time.minutes(Math.min(start, stop), Math.max(start, stop));
+  },
+
+  /**
+   * Return all the hours between 2 dates
+   *
+   * @param  Date  d  A date
+   * @param  int|date  range  Number of hours in the range, or a stop date
+   * @return array  An array of hours
+   */
+  getHourDomain: function (d, range) {
+    'use strict';
+
+    var start = new Date(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours());
+    var stop = null;
+    if (range instanceof Date) {
+      stop = new Date(range.getFullYear(), range.getMonth(), range.getDate(), range.getHours());
+    } else {
+      stop = new Date(start);
+      stop.setHours(stop.getHours() + range);
+    }
+
+    var domains = d3.time.hours(Math.min(start, stop), Math.max(start, stop));
+
+    // Passing from DST to standard time
+    // If there are 25 hours, let's compress the duplicate hours
+    var i = 0;
+    var total = domains.length;
+    for (i = 0; i < total; i += 1) {
+      if (i > 0 && domains[i].getHours() === domains[i - 1].getHours()) {
+        this.DSTDomain.push(domains[i].getTime());
+        domains.splice(i, 1);
+        break;
+      }
+    }
+
+    // d3.time.hours is returning more hours than needed when changing
+    // from DST to standard time, because there is really 2 hours between
+    // 1am and 2am!
+    if (typeof range === 'number' && domains.length > Math.abs(range)) {
+      domains.splice(domains.length - 1, 1);
+    }
+
+    return domains;
+  },
+
+  /**
+   * Return all the days between 2 dates
+   *
+   * @param  Date    d    A date
+   * @param  int|date  range  Number of days in the range, or a stop date
+   * @return array  An array of weeks
+   */
+  getDayDomain: function (d, range) {
+    'use strict';
+
+    var start = new Date(d.getFullYear(), d.getMonth(), d.getDate());
+    var stop = null;
+    if (range instanceof Date) {
+      stop = new Date(range.getFullYear(), range.getMonth(), range.getDate());
+    } else {
+      stop = new Date(start);
+      stop = new Date(stop.setDate(stop.getDate() + parseInt(range, 10)));
+    }
+
+    return d3.time.days(Math.min(start, stop), Math.max(start, stop));
+  },
+
+  /**
+   * Return all the weeks between 2 dates
+   *
+   * @param  Date  d  A date
+   * @param  int|date  range  Number of minutes in the range, or a stop date
+   * @return array  An array of weeks
+   */
+  getWeekDomain: function (d, range) {
+    'use strict';
+
+    var weekStart;
+
+    if (this.options.weekStartOnMonday === false) {
+      weekStart = new Date(d.getFullYear(), d.getMonth(), d.getDate() - d.getDay());
+    } else {
+      if (d.getDay() === 1) {
+        weekStart = new Date(d.getFullYear(), d.getMonth(), d.getDate());
+      } else if (d.getDay() === 0) {
+        weekStart = new Date(d.getFullYear(), d.getMonth(), d.getDate());
+        weekStart.setDate(weekStart.getDate() - 6);
+      } else {
+        weekStart = new Date(d.getFullYear(), d.getMonth(), d.getDate() - d.getDay() + 1);
+      }
+    }
+
+    var endDate = new Date(weekStart);
+
+    var stop = range;
+    if (typeof range !== 'object') {
+      stop = new Date(endDate.setDate(endDate.getDate() + range * 7));
+    }
+
+    return this.options.weekStartOnMonday === true
+      ? d3.time.mondays(Math.min(weekStart, stop), Math.max(weekStart, stop))
+      : d3.time.sundays(Math.min(weekStart, stop), Math.max(weekStart, stop));
+  },
+
+  /**
+   * Return all the months between 2 dates
+   *
+   * @param  Date    d    A date
+   * @param  int|date  range  Number of months in the range, or a stop date
+   * @return array  An array of months
+   */
+  getMonthDomain: function (d, range) {
+    'use strict';
+
+    var start = new Date(d.getFullYear(), d.getMonth());
+    var stop = null;
+    if (range instanceof Date) {
+      stop = new Date(range.getFullYear(), range.getMonth());
+    } else {
+      stop = new Date(start);
+      stop = stop.setMonth(stop.getMonth() + range);
+    }
+
+    return d3.time.months(Math.min(start, stop), Math.max(start, stop));
+  },
+
+  /**
+   * Return all the years between 2 dates
+   *
+   * @param  Date  d  date  A date
+   * @param  int|date  range  Number of minutes in the range, or a stop date
+   * @return array  An array of hours
+   */
+  getYearDomain: function (d, range) {
+    'use strict';
+
+    var start = new Date(d.getFullYear(), 0);
+    var stop = null;
+    if (range instanceof Date) {
+      stop = new Date(range.getFullYear(), 0);
+    } else {
+      stop = new Date(d.getFullYear() + range, 0);
+    }
+
+    return d3.time.years(Math.min(start, stop), Math.max(start, stop));
+  },
+
+  /**
+   * Get an array of domain start dates
+   *
+   * @param  int|Date date A random date included in the wanted domain
+   * @param  int|Date range Number of dates to get, or a stop date
+   * @return Array of dates
+   */
+  getDomain: function (date, range) {
+    'use strict';
+
+    if (typeof date === 'number') {
+      date = new Date(date);
+    }
+
+    if (arguments.length < 2) {
+      range = this.options.range;
+    }
+
+    switch (this.options.domain) {
+      case 'hour':
+        var domains = this.getHourDomain(date, range);
+
+        // Case where an hour is missing, when passing from standard time to DST
+        // Missing hour is perfectly acceptabl in subDomain, but not in domains
+        if (typeof range === 'number' && domains.length < range) {
+          if (range > 0) {
+            domains.push(this.getHourDomain(domains[domains.length - 1], 2)[1]);
+          } else {
+            domains.shift(this.getHourDomain(domains[0], -2)[0]);
+          }
+        }
+        return domains;
+      case 'day':
+        return this.getDayDomain(date, range);
+      case 'week':
+        return this.getWeekDomain(date, range);
+      case 'month':
+        return this.getMonthDomain(date, range);
+      case 'year':
+        return this.getYearDomain(date, range);
+    }
+  },
+
+  /* jshint maxcomplexity: false */
+  getSubDomain: function (date) {
+    'use strict';
+
+    if (typeof date === 'number') {
+      date = new Date(date);
+    }
+
+    var parent = this;
+
+    /**
+     * @return int
+     */
+    var computeDaySubDomainSize = function (date, domain) {
+      switch (domain) {
+        case 'year':
+          return parent.getDayCountInYear(date);
+        case 'month':
+          return parent.getDayCountInMonth(date);
+        case 'week':
+          return 7;
+      }
+    };
+
+    /**
+     * @return int
+     */
+    var computeMinSubDomainSize = function (date, domain) {
+      switch (domain) {
+        case 'hour':
+          return 60;
+        case 'day':
+          return 60 * 24;
+        case 'week':
+          return 60 * 24 * 7;
+      }
+    };
+
+    /**
+     * @return int
+     */
+    var computeHourSubDomainSize = function (date, domain) {
+      switch (domain) {
+        case 'day':
+          return 24;
+        case 'week':
+          return 168;
+        case 'month':
+          return parent.getDayCountInMonth(date) * 24;
+      }
+    };
+
+    /**
+     * @return int
+     */
+    var computeWeekSubDomainSize = function (date, domain) {
+      if (domain === 'month') {
+        var endOfMonth = new Date(date.getFullYear(), date.getMonth() + 1, 0);
+        var endWeekNb = parent.getWeekNumber(endOfMonth);
+        var startWeekNb = parent.getWeekNumber(new Date(date.getFullYear(), date.getMonth()));
+
+        if (startWeekNb > endWeekNb) {
+          startWeekNb = 0;
+          endWeekNb += 1;
+        }
+
+        return endWeekNb - startWeekNb + 1;
+      } else if (domain === 'year') {
+        return parent.getWeekNumber(new Date(date.getFullYear(), 11, 31));
+      }
+    };
+
+    switch (this.options.subDomain) {
+      case 'x_min':
+      case 'min':
+        return this.getMinuteDomain(date, computeMinSubDomainSize(date, this.options.domain));
+      case 'x_hour':
+      case 'hour':
+        return this.getHourDomain(date, computeHourSubDomainSize(date, this.options.domain));
+      case 'x_day':
+      case 'day':
+        return this.getDayDomain(date, computeDaySubDomainSize(date, this.options.domain));
+      case 'x_week':
+      case 'week':
+        return this.getWeekDomain(date, computeWeekSubDomainSize(date, this.options.domain));
+      case 'x_month':
+      case 'month':
+        return this.getMonthDomain(date, 12);
+    }
+  },
+
+  /**
+   * Get the n-th next domain after the calendar newest (rightmost) domain
+   * @param  int n
+   * @return Date The start date of the wanted domain
+   */
+  getNextDomain: function (n) {
+    'use strict';
+
+    if (arguments.length === 0) {
+      n = 1;
+    }
+    return this.getDomain(this.jumpDate(this.getDomainKeys().pop(), n, this.options.domain), 1)[0];
+  },
+
+  /**
+   * Get the n-th domain before the calendar oldest (leftmost) domain
+   * @param  int n
+   * @return Date The start date of the wanted domain
+   */
+  getPreviousDomain: function (n) {
+    'use strict';
+
+    if (arguments.length === 0) {
+      n = 1;
+    }
+    return this.getDomain(
+      this.jumpDate(this.getDomainKeys().shift(), -n, this.options.domain),
+      1,
+    )[0];
+  },
+
+  // =========================================================================//
+  // DATAS                                  //
+  // =========================================================================//
+
+  /**
+   * Fetch and interpret data from the datasource
+   *
+   * @param string|object source
+   * @param Date startDate
+   * @param Date endDate
+   * @param function callback
+   * @param function|boolean afterLoad function used to convert the data into a json object. Use true to use the afterLoad callback
+   * @param updateMode
+   *
+   * @return mixed
+   * - True if there are no data to load
+   * - False if data are loaded asynchronously
+   */
+  getDatas: function (source, startDate, endDate, callback, afterLoad, updateMode) {
+    'use strict';
+
+    var self = this;
+    if (arguments.length < 5) {
+      afterLoad = true;
+    }
+    if (arguments.length < 6) {
+      updateMode = this.APPEND_ON_UPDATE;
+    }
+    var _callback = function (error, data) {
+      if (afterLoad !== false) {
+        if (typeof afterLoad === 'function') {
+          data = afterLoad(data);
+        } else if (typeof self.options.afterLoadData === 'function') {
+          data = self.options.afterLoadData(data);
+        } else {
+          console.log('Provided callback for afterLoadData is not a function.');
+        }
+      } else if (self.options.dataType === 'csv' || self.options.dataType === 'tsv') {
+        data = this.interpretCSV(data);
+      }
+      self.parseDatas(data, updateMode, startDate, endDate);
+      if (typeof callback === 'function') {
+        callback();
+      }
+    };
+
+    switch (typeof source) {
+      case 'string':
+        if (source === '') {
+          _callback(null, {});
+          return true;
+        } else {
+          var url = this.parseURI(source, startDate, endDate);
+          var requestType = 'GET';
+          if (self.options.dataPostPayload !== null) {
+            requestType = 'POST';
+          }
+          var payload = null;
+          if (self.options.dataPostPayload !== null) {
+            payload = this.parseURI(self.options.dataPostPayload, startDate, endDate);
+          }
+
+          var xhr = null;
+          switch (this.options.dataType) {
+            case 'json':
+              xhr = d3.json(url);
+              break;
+            case 'csv':
+              xhr = d3.csv(url);
+              break;
+            case 'tsv':
+              xhr = d3.tsv(url);
+              break;
+            case 'txt':
+              xhr = d3.text(url, 'text/plain');
+              break;
+          }
+
+          // jshint maxdepth:5
+          if (self.options.dataRequestHeaders !== null) {
+            for (var header in self.options.dataRequestHeaders) {
+              if (self.options.dataRequestHeaders.hasOwnProperty(header)) {
+                xhr.header(header, self.options.dataRequestHeaders[header]);
+              }
+            }
+          }
+
+          xhr.send(requestType, payload, _callback);
+        }
+        return false;
+      case 'object':
+        if (source === Object(source)) {
+          _callback(null, source);
+          return false;
+        }
+      /* falls through */
+      default:
+        _callback(null, {});
+        return true;
+    }
+  },
+
+  /**
+   * Populate the calendar internal data
+   *
+   * @param object data
+   * @param constant updateMode
+   * @param Date startDate
+   * @param Date endDate
+   *
+   * @return void
+   */
+  parseDatas: function (data, updateMode, startDate, endDate) {
+    'use strict';
+
+    if (updateMode === this.RESET_ALL_ON_UPDATE) {
+      this._domains.forEach(function (key, value) {
+        value.forEach(function (element, index, array) {
+          array[index].v = null;
+        });
+      });
+    }
+
+    var temp = {};
+
+    var extractTime = function (d) {
+      return d.t;
+    };
+
+    /*jshint forin:false */
+    for (var d in data) {
+      var date = new Date(d * 1000);
+      var domainUnit = this.getDomain(date)[0].getTime();
+      // The current data belongs to a domain that was compressed
+      // Compress the data for the two duplicate hours into the same hour
+      if (this.DSTDomain.indexOf(domainUnit) >= 0) {
+        // Re-assign all data to the first or the second duplicate hours
+        // depending on which is visible
+        if (this._domains.has(domainUnit - 3600 * 1000)) {
+          domainUnit -= 3600 * 1000;
+        }
+      }
+
+      // Skip if data is not relevant to current domain
+      if (
+        isNaN(d) ||
+        !data.hasOwnProperty(d) ||
+        !this._domains.has(domainUnit) ||
+        !(domainUnit >= +startDate && domainUnit < +endDate)
+      ) {
+        continue;
+      }
+
+      var subDomainsData = this._domains.get(domainUnit);
+
+      if (!temp.hasOwnProperty(domainUnit)) {
+        temp[domainUnit] = subDomainsData.map(extractTime);
+      }
+
+      var index = temp[domainUnit].indexOf(
+        this._domainType[this.options.subDomain].extractUnit(date),
+      );
+
+      if (updateMode === this.RESET_SINGLE_ON_UPDATE) {
+        subDomainsData[index].v = data[d];
+      } else {
+        if (!isNaN(subDomainsData[index].v)) {
+          subDomainsData[index].v += data[d];
+        } else {
+          subDomainsData[index].v = data[d];
+        }
+      }
+    }
+  },
+
+  parseURI: function (str, startDate, endDate) {
+    'use strict';
+
+    // Use a timestamp in seconds
+    str = str.replace(/\{\{t:start\}\}/g, startDate.getTime() / 1000);
+    str = str.replace(/\{\{t:end\}\}/g, endDate.getTime() / 1000);
+
+    // Use a string date, following the ISO-8601
+    str = str.replace(/\{\{d:start\}\}/g, startDate.toISOString());
+    str = str.replace(/\{\{d:end\}\}/g, endDate.toISOString());
+
+    return str;
+  },
+
+  interpretCSV: function (data) {
+    'use strict';
+
+    var d = {};
+    var keys = Object.keys(data[0]);
+    var i, total;
+    for (i = 0, total = data.length; i < total; i += 1) {
+      d[data[i][keys[0]]] = +data[i][keys[1]];
+    }
+    return d;
+  },
+
+  /**
+   * Handle the calendar layout and dimension
+   *
+   * Expand and shrink the container depending on its children dimension
+   * Also rearrange the children position depending on their dimension,
+   * and the legend position
+   *
+   * @return void
+   */
+  resize: function () {
+    'use strict';
+
+    var parent = this;
+    var options = parent.options;
+    var legendWidth = options.displayLegend
+      ? parent.Legend.getDim('width') + options.legendMargin[1] + options.legendMargin[3]
+      : 0;
+    var legendHeight = options.displayLegend
+      ? parent.Legend.getDim('height') + options.legendMargin[0] + options.legendMargin[2]
+      : 0;
+
+    var graphWidth = parent.graphDim.width - options.domainGutter - options.cellPadding;
+    var graphHeight = parent.graphDim.height - options.domainGutter - options.cellPadding;
+
+    this.root
+      .transition()
+      .duration(options.animationDuration)
+      .attr('width', function () {
+        if (
+          options.legendVerticalPosition === 'middle' ||
+          options.legendVerticalPosition === 'center'
+        ) {
+          return graphWidth + legendWidth;
+        }
+        return Math.max(graphWidth, legendWidth);
+      })
+      .attr('height', function () {
+        if (
+          options.legendVerticalPosition === 'middle' ||
+          options.legendVerticalPosition === 'center'
+        ) {
+          return Math.max(graphHeight, legendHeight);
+        }
+        return graphHeight + legendHeight;
+      });
+
+    this.root
+      .select('.graph')
+      .transition()
+      .duration(options.animationDuration)
+      .attr('y', function () {
+        if (options.legendVerticalPosition === 'top') {
+          return legendHeight;
+        }
+        return 0;
+      })
+      .attr('x', function () {
+        if (
+          (options.legendVerticalPosition === 'middle' ||
+            options.legendVerticalPosition === 'center') &&
+          options.legendHorizontalPosition === 'left'
+        ) {
+          return legendWidth;
+        }
+        return 0;
+      });
+  },
+
+  // =========================================================================//
+  // PUBLIC API                                //
+  // =========================================================================//
+
+  /**
+   * Shift the calendar forward
+   */
+  next: function (n) {
+    'use strict';
+
+    if (arguments.length === 0) {
+      n = 1;
+    }
+    return this.loadNextDomain(n);
+  },
+
+  /**
+   * Shift the calendar backward
+   */
+  previous: function (n) {
+    'use strict';
+
+    if (arguments.length === 0) {
+      n = 1;
+    }
+    return this.loadPreviousDomain(n);
+  },
+
+  /**
+   * Jump directly to a specific date
+   *
+   * JumpTo will scroll the calendar until the wanted domain with the specified
+   * date is visible. Unless you set reset to true, the wanted domain
+   * will not necessarily be the first (leftmost) domain of the calendar.
+   *
+   * @param Date date Jump to the domain containing that date
+   * @param bool reset Whether the wanted domain should be the first domain of the calendar
+   * @param bool True of the calendar was scrolled
+   */
+  jumpTo: function (date, reset) {
+    'use strict';
+
+    if (arguments.length < 2) {
+      reset = false;
+    }
+    var domains = this.getDomainKeys();
+    var firstDomain = domains[0];
+    var lastDomain = domains[domains.length - 1];
+
+    if (date < firstDomain) {
+      return this.loadPreviousDomain(this.getDomain(firstDomain, date).length);
+    } else {
+      if (reset) {
+        return this.loadNextDomain(this.getDomain(firstDomain, date).length);
+      }
+
+      if (date > lastDomain) {
+        return this.loadNextDomain(this.getDomain(lastDomain, date).length);
+      }
+    }
+
+    return false;
+  },
+
+  /**
+   * Navigate back to the start date
+   *
+   * @since  3.3.8
+   * @return void
+   */
+  rewind: function () {
+    'use strict';
+
+    this.jumpTo(this.options.start, true);
+  },
+
+  /**
+   * Update the calendar with new data
+   *
+   * @param  object|string    dataSource    The calendar's datasource, same type as this.options.data
+   * @param  boolean|function    afterLoad    Whether to execute afterLoad() on the data. Pass directly a function
+   * if you don't want to use the afterLoad() callback
+   */
+  update: function (dataSource, afterLoad, updateMode) {
+    'use strict';
+
+    if (arguments.length === 0) {
+      dataSource = this.options.data;
+    }
+    if (arguments.length < 2) {
+      afterLoad = true;
+    }
+    if (arguments.length < 3) {
+      updateMode = this.RESET_ALL_ON_UPDATE;
+    }
+
+    var domains = this.getDomainKeys();
+    var self = this;
+    this.getDatas(
+      dataSource,
+      new Date(domains[0]),
+      this.getSubDomain(domains[domains.length - 1]).pop(),
+      function () {
+        self.fill();
+        self.afterUpdate();
+      },
+      afterLoad,
+      updateMode,
+    );
+  },
+
+  /**
+   * Set the legend
+   *
+   * @param array legend an array of integer, representing the different threshold value
+   * @param array colorRange an array of 2 hex colors, for the minimum and maximum colors
+   */
+  setLegend: function () {
+    'use strict';
+
+    var oldLegend = this.options.legend.slice(0);
+    if (arguments.length >= 1 && Array.isArray(arguments[0])) {
+      this.options.legend = arguments[0];
+    }
+    if (arguments.length >= 2) {
+      if (Array.isArray(arguments[1]) && arguments[1].length >= 2) {
+        this.options.legendColors = [arguments[1][0], arguments[1][1]];
+      } else {
+        this.options.legendColors = arguments[1];
+      }
+    }
+
+    if (
+      (arguments.length > 0 && !arrayEquals(oldLegend, this.options.legend)) ||
+      arguments.length >= 2
+    ) {
+      this.Legend.buildColors();
+      this.fill();
+    }
+
+    this.Legend.redraw(this.graphDim.width - this.options.domainGutter - this.options.cellPadding);
+  },
+
+  /**
+   * Remove the legend
+   *
+   * @return bool False if there is no legend to remove
+   */
+  removeLegend: function () {
+    'use strict';
+
+    if (!this.options.displayLegend) {
+      return false;
+    }
+    this.options.displayLegend = false;
+    this.Legend.remove();
+    return true;
+  },
+
+  /**
+   * Display the legend
+   *
+   * @return bool False if the legend was already displayed
+   */
+  showLegend: function () {
+    'use strict';
+
+    if (this.options.displayLegend) {
+      return false;
+    }
+    this.options.displayLegend = true;
+    this.Legend.redraw(this.graphDim.width - this.options.domainGutter - this.options.cellPadding);
+    return true;
+  },
+
+  /**
+   * Highlight dates
+   *
+   * Add a highlight class to a set of dates
+   *
+   * @since  3.3.5
+   * @param  array Array of dates to highlight
+   * @return bool True if dates were highlighted
+   */
+  highlight: function (args) {
+    'use strict';
+
+    if ((this.options.highlight = this.expandDateSetting(args)).length > 0) {
+      this.fill();
+      return true;
+    }
+    return false;
+  },
+
+  /**
+   * Destroy the calendar
+   *
+   * Usage: cal = cal.destroy();
+   *
+   * @since  3.3.6
+   * @param function A callback function to trigger after destroying the calendar
+   * @return null
+   */
+  destroy: function (callback) {
+    'use strict';
+
+    this.root
+      .transition()
+      .duration(this.options.animationDuration)
+      .attr('width', 0)
+      .attr('height', 0)
+      .remove()
+      .each('end', function () {
+        if (typeof callback === 'function') {
+          callback();
+        } else if (typeof callback !== 'undefined') {
+          console.log('Provided callback for destroy() is not a function.');
+        }
+      });
+
+    return null;
+  },
+
+  getSVG: function () {
+    'use strict';
+
+    var styles = {
+      '.cal-heatmap-container': {},
+      '.graph': {},
+      '.graph-rect': {},
+      'rect.highlight': {},
+      'rect.now': {},
+      'rect.highlight-now': {},
+      'text.highlight': {},
+      'text.now': {},
+      'text.highlight-now': {},
+      '.domain-background': {},
+      '.graph-label': {},
+      '.subdomain-text': {},
+      '.q0': {},
+      '.qi': {},
+    };
+
+    for (var j = 1, total = this.options.legend.length + 1; j <= total; j += 1) {
+      styles['.q' + j] = {};
+    }
+
+    var root = this.root;
+
+    var whitelistStyles = [
+      // SVG specific properties
+      'stroke',
+      'stroke-width',
+      'stroke-opacity',
+      'stroke-dasharray',
+      'stroke-dashoffset',
+      'stroke-linecap',
+      'stroke-miterlimit',
+      'fill',
+      'fill-opacity',
+      'fill-rule',
+      'marker',
+      'marker-start',
+      'marker-mid',
+      'marker-end',
+      'alignement-baseline',
+      'baseline-shift',
+      'dominant-baseline',
+      'glyph-orientation-horizontal',
+      'glyph-orientation-vertical',
+      'kerning',
+      'text-anchor',
+      'shape-rendering',
+
+      // Text Specific properties
+      'text-transform',
+      'font-family',
+      'font',
+      'font-size',
+      'font-weight',
+    ];
+
+    var filterStyles = function (attribute, property, value) {
+      if (whitelistStyles.indexOf(property) !== -1) {
+        styles[attribute][property] = value;
+      }
+    };
+
+    var getElement = function (e) {
+      return root.select(e)[0][0];
+    };
+
+    /* jshint forin:false */
+    for (var element in styles) {
+      if (!styles.hasOwnProperty(element)) {
+        continue;
+      }
+
+      var dom = getElement(element);
+
+      if (dom === null) {
+        continue;
+      }
+
+      // The DOM Level 2 CSS way
+      /* jshint maxdepth: false */
+      if ('getComputedStyle' in window) {
+        var cs = getComputedStyle(dom, null);
+        if (cs.length !== 0) {
+          for (var i = 0; i < cs.length; i += 1) {
+            filterStyles(element, cs.item(i), cs.getPropertyValue(cs.item(i)));
+          }
+
+          // Opera workaround. Opera doesn"t support `item`/`length`
+          // on CSSStyleDeclaration.
+        } else {
+          for (var k in cs) {
+            if (cs.hasOwnProperty(k)) {
+              filterStyles(element, k, cs[k]);
+            }
+          }
+        }
+
+        // The IE way
+      } else if ('currentStyle' in dom) {
+        var css = dom.currentStyle;
+        for (var p in css) {
+          filterStyles(element, p, css[p]);
+        }
+      }
+    }
+
+    var string =
+      '<svg xmlns="http://www.w3.org/2000/svg" ' +
+      'xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css"><![CDATA[ ';
+
+    for (var style in styles) {
+      string += style + ' {\n';
+      for (var l in styles[style]) {
+        string += '\t' + l + ':' + styles[style][l] + ';\n';
+      }
+      string += '}\n';
+    }
+
+    string += ']]></style>';
+    string += new XMLSerializer().serializeToString(this.root[0][0]);
+    string += '</svg>';
+
+    return string;
+  },
+};
+
+// =========================================================================//
+// DOMAIN POSITION COMPUTATION                        //
+// =========================================================================//
+
+/**
+ * Compute the position of a domain, relative to the calendar
+ */
+var DomainPosition = function () {
+  'use strict';
+
+  this.positions = d3.map();
+};
+
+DomainPosition.prototype.getPosition = function (d) {
+  'use strict';
+
+  return this.positions.get(d);
+};
+
+DomainPosition.prototype.getPositionFromIndex = function (i) {
+  'use strict';
+
+  var domains = this.getKeys();
+  return this.positions.get(domains[i]);
+};
+
+DomainPosition.prototype.getLast = function () {
+  'use strict';
+
+  var domains = this.getKeys();
+  return this.positions.get(domains[domains.length - 1]);
+};
+
+DomainPosition.prototype.setPosition = function (d, dim) {
+  'use strict';
+
+  this.positions.set(d, dim);
+};
+
+DomainPosition.prototype.shiftRightBy = function (exitingDomainDim) {
+  'use strict';
+
+  this.positions.forEach(function (key, value) {
+    this.set(key, value - exitingDomainDim);
+  });
+
+  var domains = this.getKeys();
+  this.positions.remove(domains[0]);
+};
+
+DomainPosition.prototype.shiftLeftBy = function (enteringDomainDim) {
+  'use strict';
+
+  this.positions.forEach(function (key, value) {
+    this.set(key, value + enteringDomainDim);
+  });
+
+  var domains = this.getKeys();
+  this.positions.remove(domains[domains.length - 1]);
+};
+
+DomainPosition.prototype.getKeys = function () {
+  'use strict';
+
+  return this.positions.keys().sort(function (a, b) {
+    return parseInt(a, 10) - parseInt(b, 10);
+  });
+};
+
+// =========================================================================//
+// LEGEND                                  //
+// =========================================================================//
+
+var Legend = function (calendar) {
+  'use strict';
+
+  this.calendar = calendar;
+  this.computeDim();
+
+  if (calendar.options.legendColors !== null) {
+    this.buildColors();
+  }
+};
+
+Legend.prototype.computeDim = function () {
+  'use strict';
+
+  var options = this.calendar.options; // Shorter accessor for variable name mangling when minifying
+  this.dim = {
+    width:
+      options.legendCellSize * (options.legend.length + 1) +
+      options.legendCellPadding * options.legend.length,
+    height: options.legendCellSize,
+  };
+};
+
+Legend.prototype.remove = function () {
+  'use strict';
+
+  this.calendar.root.select('.graph-legend').remove();
+  this.calendar.resize();
+};
+
+Legend.prototype.redraw = function (width) {
+  'use strict';
+
+  if (!this.calendar.options.displayLegend) {
+    return false;
+  }
+
+  var parent = this;
+  var calendar = this.calendar;
+  var legend = calendar.root;
+  var legendItem;
+  var options = calendar.options; // Shorter accessor for variable name mangling when minifying
+
+  this.computeDim();
+
+  var _legend = options.legend.slice(0);
+  _legend.push(_legend[_legend.length - 1] + 1);
+
+  var legendElement = calendar.root.select('.graph-legend');
+  if (legendElement[0][0] !== null) {
+    legend = legendElement;
+    legendItem = legend.select('g').selectAll('rect').data(_legend);
+  } else {
+    // Creating the new legend DOM if it doesn't already exist
+    legend =
+      options.legendVerticalPosition === 'top'
+        ? legend.insert('svg', '.graph')
+        : legend.append('svg');
+
+    legend.attr('x', getLegendXPosition()).attr('y', getLegendYPosition());
+
+    legendItem = legend
+      .attr('class', 'graph-legend')
+      .attr('height', parent.getDim('height'))
+      .attr('width', parent.getDim('width'))
+      .append('g')
+      .selectAll()
+      .data(_legend);
+  }
+
+  legendItem
+    .enter()
+    .append('rect')
+    .call(legendCellLayout)
+    .attr('class', function (d) {
+      return calendar.Legend.getClass(d, calendar.legendScale === null);
+    })
+    .attr('fill-opacity', 0)
+    .call(function (selection) {
+      if (
+        calendar.legendScale !== null &&
+        options.legendColors !== null &&
+        options.legendColors.hasOwnProperty('base')
+      ) {
+        selection.attr('fill', options.legendColors.base);
+      }
+    })
+    .append('title');
+
+  legendItem
+    .exit()
+    .transition()
+    .duration(options.animationDuration)
+    .attr('fill-opacity', 0)
+    .remove();
+
+  legendItem
+    .transition()
+    .delay(function (d, i) {
+      return (options.animationDuration * i) / 10;
+    })
+    .call(legendCellLayout)
+    .attr('fill-opacity', 1)
+    .call(function (element) {
+      element.attr('fill', function (d, i) {
+        if (calendar.legendScale === null) {
+          return '';
+        }
+
+        if (i === 0) {
+          return calendar.legendScale(d - 1);
+        }
+        return calendar.legendScale(options.legend[i - 1]);
+      });
+
+      element.attr('class', function (d) {
+        return calendar.Legend.getClass(d, calendar.legendScale === null);
+      });
+    });
+
+  function legendCellLayout(selection) {
+    selection
+      .attr('width', options.legendCellSize)
+      .attr('height', options.legendCellSize)
+      .attr('rx', options.legendCellRadius)
+      .attr('ry', options.legendCellRadius)
+      .attr('x', function (d, i) {
+        return i * (options.legendCellSize + options.legendCellPadding);
+      });
+  }
+
+  legendItem.select('title').text(function (d, i) {
+    if (i === 0) {
+      return calendar.formatStringWithObject(options.legendTitleFormat.lower, {
+        min: options.legend[i],
+        name: options.itemName[1],
+      });
+    } else if (i === _legend.length - 1) {
+      return calendar.formatStringWithObject(options.legendTitleFormat.upper, {
+        max: options.legend[i - 1],
+        name: options.itemName[1],
+      });
+    } else {
+      return calendar.formatStringWithObject(options.legendTitleFormat.inner, {
+        down: options.legend[i - 1],
+        up: options.legend[i],
+        name: options.itemName[1],
+      });
+    }
+  });
+  legendItem
+    .on('mouseover', function (d) {
+      calendar.legendTip.show(d, this);
+    })
+    .on('mouseout', function () {
+      calendar.legendTip.hide();
+    });
+
+  legend
+    .transition()
+    .duration(options.animationDuration)
+    .attr('x', getLegendXPosition())
+    .attr('y', getLegendYPosition())
+    .attr('width', parent.getDim('width'))
+    .attr('height', parent.getDim('height'));
+
+  legend
+    .select('g')
+    .transition()
+    .duration(options.animationDuration)
+    .attr('transform', function () {
+      if (options.legendOrientation === 'vertical') {
+        return 'rotate(90 ' + options.legendCellSize / 2 + ' ' + options.legendCellSize / 2 + ')';
+      }
+      return '';
+    });
+
+  function getLegendXPosition() {
+    switch (options.legendHorizontalPosition) {
+      case 'right':
+        if (
+          options.legendVerticalPosition === 'center' ||
+          options.legendVerticalPosition === 'middle'
+        ) {
+          return width + options.legendMargin[3];
+        }
+        return width - parent.getDim('width') - options.legendMargin[1];
+      case 'middle':
+      case 'center':
+        return Math.round(width / 2 - parent.getDim('width') / 2);
+      default:
+        return options.legendMargin[3];
+    }
+  }
+
+  function getLegendYPosition() {
+    if (options.legendVerticalPosition === 'bottom') {
+      return (
+        calendar.graphDim.height +
+        options.legendMargin[0] -
+        options.domainGutter -
+        options.cellPadding
+      );
+    }
+    return options.legendMargin[0];
+  }
+
+  calendar.resize();
+};
+
+/**
+ * Return the dimension of the legend
+ *
+ * Takes into account rotation
+ *
+ * @param  string axis Width or height
+ * @return int height or width in pixels
+ */
+Legend.prototype.getDim = function (axis) {
+  'use strict';
+
+  var isHorizontal = this.calendar.options.legendOrientation === 'horizontal';
+
+  switch (axis) {
+    case 'width':
+      return this.dim[isHorizontal ? 'width' : 'height'];
+    case 'height':
+      return this.dim[isHorizontal ? 'height' : 'width'];
+  }
+};
+
+Legend.prototype.buildColors = function () {
+  'use strict';
+
+  var options = this.calendar.options; // Shorter accessor for variable name mangling when minifying
+
+  if (options.legendColors === null) {
+    this.calendar.legendScale = null;
+    return false;
+  }
+
+  var _colorRange = [];
+
+  if (Array.isArray(options.legendColors)) {
+    _colorRange = options.legendColors;
+  } else if (
+    options.legendColors.hasOwnProperty('min') &&
+    options.legendColors.hasOwnProperty('max')
+  ) {
+    _colorRange = [options.legendColors.min, options.legendColors.max];
+  } else {
+    options.legendColors = null;
+    return false;
+  }
+
+  var _legend = options.legend.slice(0);
+
+  if (_legend[0] > 0) {
+    _legend.unshift(0);
+  } else if (_legend[0] <= 0) {
+    // Let's guess the leftmost value, it we have to add one
+    _legend.unshift(_legend[0] - (_legend[_legend.length - 1] - _legend[0]) / _legend.length);
+  }
+  var colorScale;
+  if (options.legendColors.hasOwnProperty('colorScale')) {
+    colorScale = options.legendColors.colorScale;
+  } else {
+    colorScale = d3.scale
+      .linear()
+      .range(_colorRange)
+      .interpolate(d3.interpolateHcl)
+      .domain([d3.min(_legend), d3.max(_legend)]);
+  }
+
+  var legendColors = _legend.map(function (element) {
+    return colorScale(element);
+  });
+  this.calendar.legendScale = d3.scale.threshold().domain(options.legend).range(legendColors);
+
+  return true;
+};
+
+/**
+ * Return the classname on the legend for the specified value
+ *
+ * @param integer n Value associated to a date
+ * @param bool withCssClass Whether to display the css class used to style the cell.
+ *                          Disabling will allow styling directly via html fill attribute
+ *
+ * @return string Classname according to the legend
+ */
+Legend.prototype.getClass = function (n, withCssClass) {
+  'use strict';
+
+  if (n === null || isNaN(n)) {
+    return '';
+  }
+
+  var index = [this.calendar.options.legend.length + 1];
+
+  for (var i = 0, total = this.calendar.options.legend.length - 1; i <= total; i += 1) {
+    if (this.calendar.options.legend[0] > 0 && n < 0) {
+      index = ['1', 'i'];
+      break;
+    }
+
+    if (n <= this.calendar.options.legend[i]) {
+      index = [i + 1];
+      break;
+    }
+  }
+
+  if (n === 0) {
+    index.push(0);
+  }
+
+  index.unshift('');
+  return (index.join(' r') + (withCssClass ? index.join(' q') : '')).trim();
+};
+
+/**
+ * #source http://stackoverflow.com/a/383245/805649
+ */
+function mergeRecursive(obj1, obj2) {
+  'use strict';
+
+  /*jshint forin:false */
+  for (var p in obj2) {
+    try {
+      // Property in destination object set; update its value.
+      if (obj2[p].constructor === Object) {
+        obj1[p] = mergeRecursive(obj1[p], obj2[p]);
+      } else {
+        obj1[p] = obj2[p];
+      }
+    } catch (e) {
+      // Property in destination object not set; create it and set its value.
+      obj1[p] = obj2[p];
+    }
+  }
+
+  return obj1;
+}
+
+/**
+ * Check if 2 arrays are equals
+ *
+ * @link http://stackoverflow.com/a/14853974/805649
+ * @param  array array the array to compare to
+ * @return bool true of the 2 arrays are equals
+ */
+function arrayEquals(arrayA, arrayB) {
+  'use strict';
+
+  // if the other array is a falsy value, return
+  if (!arrayB || !arrayA) {
+    return false;
+  }
+
+  // compare lengths - can save a lot of time
+  if (arrayA.length !== arrayB.length) {
+    return false;
+  }
+
+  for (var i = 0; i < arrayA.length; i += 1) {
+    // Check if we have nested arrays
+    if (arrayA[i] instanceof Array && arrayB[i] instanceof Array) {
+      // recurse into the nested arrays
+      if (!arrayEquals(arrayA[i], arrayB[i])) {
+        return false;
+      }
+    } else if (arrayA[i] !== arrayB[i]) {
+      // Warning - two different object instances will never be equal: {x:20} != {x:20}
+      return false;
+    }
+  }
+  return true;
+}
+
+export default CalHeatMap;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/d3tip.css b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/d3tip.css
new file mode 100644
index 0000000..980a5be
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/d3tip.css
@@ -0,0 +1,74 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* from d3-tip */
+.d3-tip {
+  line-height: 1;
+  padding: 12px;
+  background: rgba(0, 0, 0, 0.8);
+  color: #fff;
+  border-radius: 2px;
+  pointer-events: none;
+  z-index: 1000;
+}
+
+/* Creates a small triangle extender for the tooltip */
+.d3-tip:after {
+  box-sizing: border-box;
+  display: inline;
+  font-size: 10px;
+  width: 100%;
+  line-height: 1;
+  color: rgba(0, 0, 0, 0.8);
+  position: absolute;
+  pointer-events: none;
+}
+
+/* Northward tooltips */
+.d3-tip.n:after {
+  content: '\25BC';
+  margin: -1px 0 0 0;
+  top: 100%;
+  left: 0;
+  text-align: center;
+}
+
+/* Eastward tooltips */
+.d3-tip.e:after {
+  content: '\25C0';
+  margin: -4px 0 0 0;
+  top: 50%;
+  left: -8px;
+}
+
+/* Southward tooltips */
+.d3-tip.s:after {
+  content: '\25B2';
+  margin: 0 0 1px 0;
+  top: -8px;
+  left: 0;
+  text-align: center;
+}
+
+/* Westward tooltips */
+.d3-tip.w:after {
+  content: '\25B6';
+  margin: -4px 0 0 -1px;
+  top: 50%;
+  left: 100%;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-calendar/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/README.md b/superset-frontend/plugins/legacy-plugin-chart-chord/README.md
new file mode 100644
index 0000000..e99df66
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-chord
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-chord.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-chord)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-chord&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-chord)
+
+This plugin provides Chord Diagram for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import ChordChartPlugin from '@superset-ui/legacy-plugin-chart-chord';
+
+new ChordChartPlugin().configure({ key: 'chord' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-chord)
+for more details.
+
+```js
+<SuperChart
+  chartType="chord"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/package.json b/superset-frontend/plugins/legacy-plugin-chart-chord/package.json
new file mode 100644
index 0000000..36d1f76
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/package.json
@@ -0,0 +1,37 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-chord",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Chord Diagram",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "prop-types": "^15.6.2",
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/src/Chord.js b/superset-frontend/plugins/legacy-plugin-chart-chord/src/Chord.js
new file mode 100644
index 0000000..b1c7adb
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/src/Chord.js
@@ -0,0 +1,136 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable no-param-reassign, react/sort-prop-types */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+import { getNumberFormatter, CategoricalColorNamespace } from '@superset-ui/core';
+
+const propTypes = {
+  data: PropTypes.shape({
+    matrix: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.number)),
+    nodes: PropTypes.arrayOf(PropTypes.string),
+  }),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  colorScheme: PropTypes.string,
+  numberFormat: PropTypes.string,
+};
+
+function Chord(element, props) {
+  const { data, width, height, numberFormat, colorScheme } = props;
+
+  element.innerHTML = '';
+
+  const div = d3.select(element);
+  div.classed('superset-legacy-chart-chord', true);
+  const { nodes, matrix } = data;
+  const f = getNumberFormatter(numberFormat);
+  const colorFn = CategoricalColorNamespace.getScale(colorScheme);
+
+  const outerRadius = Math.min(width, height) / 2 - 10;
+  const innerRadius = outerRadius - 24;
+
+  let chord;
+
+  const arc = d3.svg.arc().innerRadius(innerRadius).outerRadius(outerRadius);
+
+  const layout = d3.layout
+    .chord()
+    .padding(0.04)
+    .sortSubgroups(d3.descending)
+    .sortChords(d3.descending);
+
+  const path = d3.svg.chord().radius(innerRadius);
+
+  const svg = div
+    .append('svg')
+    .attr('width', width)
+    .attr('height', height)
+    .on('mouseout', () => chord.classed('fade', false))
+    .append('g')
+    .attr('id', 'circle')
+    .attr('transform', `translate(${width / 2}, ${height / 2})`);
+
+  svg.append('circle').attr('r', outerRadius);
+
+  // Compute the chord layout.
+  layout.matrix(matrix);
+
+  const group = svg
+    .selectAll('.group')
+    .data(layout.groups)
+    .enter()
+    .append('g')
+    .attr('class', 'group')
+    .on('mouseover', (d, i) => {
+      chord.classed('fade', p => p.source.index !== i && p.target.index !== i);
+    });
+
+  // Add a mouseover title.
+  group.append('title').text((d, i) => `${nodes[i]}: ${f(d.value)}`);
+
+  // Add the group arc.
+  const groupPath = group
+    .append('path')
+    .attr('id', (d, i) => `group${i}`)
+    .attr('d', arc)
+    .style('fill', (d, i) => colorFn(nodes[i]));
+
+  // Add a text label.
+  const groupText = group.append('text').attr('x', 6).attr('dy', 15);
+
+  groupText
+    .append('textPath')
+    .attr('xlink:href', (d, i) => `#group${i}`)
+    .text((d, i) => nodes[i]);
+  // Remove the labels that don't fit. :(
+  groupText
+    .filter(function filter(d, i) {
+      return groupPath[0][i].getTotalLength() / 2 - 16 < this.getComputedTextLength();
+    })
+    .remove();
+
+  // Add the chords.
+  chord = svg
+    .selectAll('.chord')
+    .data(layout.chords)
+    .enter()
+    .append('path')
+    .attr('class', 'chord')
+    .on('mouseover', d => {
+      chord.classed('fade', p => p !== d);
+    })
+    .style('fill', d => colorFn(nodes[d.source.index]))
+    .attr('d', path);
+
+  // Add an elaborate mouseover title for each chord.
+  chord
+    .append('title')
+    .text(
+      d =>
+        `${nodes[d.source.index]} → ${nodes[d.target.index]}: ${f(d.source.value)}\n${
+          nodes[d.target.index]
+        } → ${nodes[d.source.index]}: ${f(d.target.value)}`,
+    );
+}
+
+Chord.displayName = 'Chord';
+Chord.propTypes = propTypes;
+
+export default Chord;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/src/ReactChord.jsx b/superset-frontend/plugins/legacy-plugin-chart-chord/src/ReactChord.jsx
new file mode 100644
index 0000000..945f814
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/src/ReactChord.jsx
@@ -0,0 +1,56 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { reactify, styled } from '@superset-ui/core';
+import PropTypes from 'prop-types';
+import Component from './Chord';
+
+const ReactComponent = reactify(Component);
+
+const Chord = ({ className, ...otherProps }) => (
+  <div className={className}>
+    <ReactComponent {...otherProps} />
+  </div>
+);
+
+Chord.defaultProps = {
+  otherProps: {},
+};
+
+Chord.propTypes = {
+  className: PropTypes.string.isRequired,
+  otherProps: PropTypes.objectOf(PropTypes.any),
+};
+
+export default styled(Chord)`
+  .superset-legacy-chart-chord svg #circle circle {
+    fill: none;
+    pointer-events: all;
+  }
+  .superset-legacy-chart-chord svg .group path {
+    fill-opacity: 0.6;
+  }
+  .superset-legacy-chart-chord svg path.chord {
+    stroke: #000;
+    stroke-width: 0.25px;
+  }
+  .superset-legacy-chart-chord svg #circle:hover path.fade {
+    opacity: 0.2;
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts
new file mode 100644
index 0000000..7a53785
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts
@@ -0,0 +1,59 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['groupby'], ['columns'], ['metric'], ['adhoc_filters'], ['row_limit']],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['y_axis_format', null],
+        ['color_scheme', 'label_colors'],
+      ],
+    },
+  ],
+  controlOverrides: {
+    y_axis_format: {
+      label: t('Number format'),
+      description: t('Choose a number format'),
+    },
+    groupby: {
+      label: t('Source'),
+      multi: false,
+      validators: [validateNonEmpty],
+      description: t('Choose a source'),
+    },
+    columns: {
+      label: t('Target'),
+      multi: false,
+      validators: [validateNonEmpty],
+      description: t('Choose a target'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-chord/src/images/thumbnail.png
new file mode 100644
index 0000000..b148b19
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-chord/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..b70c681
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js
new file mode 100644
index 0000000..ca169c4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['https://github.com/d3/d3-chord'],
+  description: '',
+  name: t('Chord Diagram'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class ChordChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactChord'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-chord/src/transformProps.js
new file mode 100644
index 0000000..4c9d095
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/src/transformProps.js
@@ -0,0 +1,30 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { yAxisFormat, colorScheme } = formData;
+
+  return {
+    colorScheme,
+    data: queriesData[0].data,
+    height,
+    numberFormat: yAxisFormat,
+    width,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-chord/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-chord/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/README.md b/superset-frontend/plugins/legacy-plugin-chart-country-map/README.md
new file mode 100644
index 0000000..c5fd2a6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-country-map
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-country-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-country-map)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-country-map&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-country-map)
+
+This plugin provides Country Map for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import CountryMapChartPlugin from '@superset-ui/legacy-plugin-chart-country-map';
+
+new CountryMapChartPlugin().configure({ key: 'country-map' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-country-map)
+for more details.
+
+```js
+<SuperChart
+  chartType="country-map"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/package.json b/superset-frontend/plugins/legacy-plugin-chart-country-map/package.json
new file mode 100644
index 0000000..5f68a5b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/package.json
@@ -0,0 +1,37 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-country-map",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Country Map",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "d3-array": "^2.0.3",
+    "prop-types": "^15.6.2"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/CountryMap.css b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/CountryMap.css
new file mode 100644
index 0000000..f8234e0
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/CountryMap.css
@@ -0,0 +1,61 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+.superset-legacy-chart-country-map svg {
+  background-color: #feffff;
+}
+
+.superset-legacy-chart-country-map {
+  position: relative;
+}
+
+.superset-legacy-chart-country-map .background {
+  fill: rgba(255, 255, 255, 0);
+  pointer-events: all;
+}
+
+.superset-legacy-chart-country-map .map-layer {
+  fill: #fff;
+  stroke: #aaa;
+}
+
+.superset-legacy-chart-country-map .effect-layer {
+  pointer-events: none;
+}
+
+.superset-legacy-chart-country-map .text-layer {
+  color: #333333;
+  text-anchor: middle;
+  pointer-events: none;
+}
+
+.superset-legacy-chart-country-map text.result-text {
+  font-weight: 300;
+  font-size: 24px;
+}
+
+.superset-legacy-chart-country-map text.big-text {
+  font-weight: 700;
+  font-size: 16px;
+}
+
+.superset-legacy-chart-country-map path.region {
+  cursor: pointer;
+  stroke: #eee;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/CountryMap.js b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/CountryMap.js
new file mode 100644
index 0000000..9b77fe4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/CountryMap.js
@@ -0,0 +1,220 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/sort-prop-types */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+import { extent as d3Extent } from 'd3-array';
+import { getNumberFormatter, getSequentialSchemeRegistry } from '@superset-ui/core';
+import countries from './countries';
+import './CountryMap.css';
+
+const propTypes = {
+  data: PropTypes.arrayOf(
+    PropTypes.shape({
+      country_id: PropTypes.string,
+      metric: PropTypes.number,
+    }),
+  ),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  country: PropTypes.string,
+  linearColorScheme: PropTypes.string,
+  mapBaseUrl: PropTypes.string,
+  numberFormat: PropTypes.string,
+};
+
+const maps = {};
+
+function CountryMap(element, props) {
+  const { data, width, height, country, linearColorScheme, numberFormat } = props;
+
+  const container = element;
+  const format = getNumberFormatter(numberFormat);
+  const colorScale = getSequentialSchemeRegistry()
+    .get(linearColorScheme)
+    .createLinearScale(d3Extent(data, v => v.metric));
+  const colorMap = {};
+  data.forEach(d => {
+    colorMap[d.country_id] = colorScale(d.metric);
+  });
+  const colorFn = d => colorMap[d.properties.ISO] || 'none';
+
+  const path = d3.geo.path();
+  const div = d3.select(container);
+  div.classed('superset-legacy-chart-country-map', true);
+  div.selectAll('*').remove();
+  container.style.height = `${height}px`;
+  container.style.width = `${width}px`;
+  const svg = div
+    .append('svg:svg')
+    .attr('width', width)
+    .attr('height', height)
+    .attr('preserveAspectRatio', 'xMidYMid meet');
+  const backgroundRect = svg
+    .append('rect')
+    .attr('class', 'background')
+    .attr('width', width)
+    .attr('height', height);
+  const g = svg.append('g');
+  const mapLayer = g.append('g').classed('map-layer', true);
+  const textLayer = g
+    .append('g')
+    .classed('text-layer', true)
+    .attr('transform', `translate(${width / 2}, 45)`);
+  const bigText = textLayer.append('text').classed('big-text', true);
+  const resultText = textLayer.append('text').classed('result-text', true).attr('dy', '1em');
+
+  let centered;
+
+  const clicked = function clicked(d) {
+    const hasCenter = d && centered !== d;
+    let x;
+    let y;
+    let k;
+    const halfWidth = width / 2;
+    const halfHeight = height / 2;
+
+    if (hasCenter) {
+      const centroid = path.centroid(d);
+      [x, y] = centroid;
+      k = 4;
+      centered = d;
+    } else {
+      x = halfWidth;
+      y = halfHeight;
+      k = 1;
+      centered = null;
+    }
+
+    g.transition()
+      .duration(750)
+      .attr('transform', `translate(${halfWidth},${halfHeight})scale(${k})translate(${-x},${-y})`);
+    textLayer
+      .style('opacity', 0)
+      .attr('transform', `translate(0,0)translate(${x},${hasCenter ? y - 5 : 45})`)
+      .transition()
+      .duration(750)
+      .style('opacity', 1);
+    bigText
+      .transition()
+      .duration(750)
+      .style('font-size', hasCenter ? 6 : 16);
+    resultText
+      .transition()
+      .duration(750)
+      .style('font-size', hasCenter ? 16 : 24);
+  };
+
+  backgroundRect.on('click', clicked);
+
+  const selectAndDisplayNameOfRegion = function selectAndDisplayNameOfRegion(feature) {
+    let name = '';
+    if (feature && feature.properties) {
+      if (feature.properties.ID_2) {
+        name = feature.properties.NAME_2;
+      } else {
+        name = feature.properties.NAME_1;
+      }
+    }
+    bigText.text(name);
+  };
+
+  const updateMetrics = function updateMetrics(region) {
+    if (region.length > 0) {
+      resultText.text(format(region[0].metric));
+    }
+  };
+
+  const mouseenter = function mouseenter(d) {
+    // Darken color
+    let c = colorFn(d);
+    if (c !== 'none') {
+      c = d3.rgb(c).darker().toString();
+    }
+    d3.select(this).style('fill', c);
+    selectAndDisplayNameOfRegion(d);
+    const result = data.filter(region => region.country_id === d.properties.ISO);
+    updateMetrics(result);
+  };
+
+  const mouseout = function mouseout() {
+    d3.select(this).style('fill', colorFn);
+    bigText.text('');
+    resultText.text('');
+  };
+
+  function drawMap(mapData) {
+    const { features } = mapData;
+    const center = d3.geo.centroid(mapData);
+    const scale = 100;
+    const projection = d3.geo
+      .mercator()
+      .scale(scale)
+      .center(center)
+      .translate([width / 2, height / 2]);
+    path.projection(projection);
+
+    // Compute scale that fits container.
+    const bounds = path.bounds(mapData);
+    const hscale = (scale * width) / (bounds[1][0] - bounds[0][0]);
+    const vscale = (scale * height) / (bounds[1][1] - bounds[0][1]);
+    const newScale = hscale < vscale ? hscale : vscale;
+
+    // Compute bounds and offset using the updated scale.
+    projection.scale(newScale);
+    const newBounds = path.bounds(mapData);
+    projection.translate([
+      width - (newBounds[0][0] + newBounds[1][0]) / 2,
+      height - (newBounds[0][1] + newBounds[1][1]) / 2,
+    ]);
+
+    // Draw each province as a path
+    mapLayer
+      .selectAll('path')
+      .data(features)
+      .enter()
+      .append('path')
+      .attr('d', path)
+      .attr('class', 'region')
+      .attr('vector-effect', 'non-scaling-stroke')
+      .style('fill', colorFn)
+      .on('mouseenter', mouseenter)
+      .on('mouseout', mouseout)
+      .on('click', clicked);
+  }
+
+  const countryKey = country.toLowerCase();
+  const map = maps[countryKey];
+  if (map) {
+    drawMap(map);
+  } else {
+    const url = countries[countryKey];
+    d3.json(url, (error, mapData) => {
+      if (!error) {
+        maps[countryKey] = mapData;
+        drawMap(mapData);
+      }
+    });
+  }
+}
+
+CountryMap.displayName = 'CountryMap';
+CountryMap.propTypes = propTypes;
+
+export default CountryMap;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/ReactCountryMap.js b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/ReactCountryMap.js
new file mode 100644
index 0000000..40fc6e8
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/ReactCountryMap.js
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { reactify } from '@superset-ui/core';
+import Component from './CountryMap';
+
+export default reactify(Component);
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts
new file mode 100644
index 0000000..6cf9387
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts
@@ -0,0 +1,113 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import {
+  ControlPanelConfig,
+  D3_FORMAT_OPTIONS,
+  D3_FORMAT_DOCS,
+  sections,
+} from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['entity'], ['metric'], ['adhoc_filters']],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      tabOverride: 'customize',
+      controlSetRows: [
+        [
+          {
+            name: 'select_country',
+            config: {
+              type: 'SelectControl',
+              label: t('Country Name'),
+              default: 'France',
+              choices: [
+                'Belgium',
+                'Brazil',
+                'Bulgaria',
+                'China',
+                'Egypt',
+                'France',
+                'Germany',
+                'India',
+                'Iran',
+                'Italy',
+                'Japan',
+                'Korea',
+                'Liechtenstein',
+                'Morocco',
+                'Myanmar',
+                'Netherlands',
+                'Portugal',
+                'Russia',
+                'Singapore',
+                'Spain',
+                'Switzerland',
+                'Thailand',
+                'Timorleste',
+                'Uk',
+                'Ukraine',
+                'Usa',
+                'Zambia',
+              ].map(s => [s, s]),
+              description: t('The name of the country that Superset should display'),
+            },
+          },
+          {
+            name: 'number_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Number format'),
+              renderTrigger: true,
+              default: 'SMART_NUMBER',
+              choices: D3_FORMAT_OPTIONS,
+              description: D3_FORMAT_DOCS,
+            },
+          },
+        ],
+        ['linear_color_scheme'],
+      ],
+    },
+  ],
+  controlOverrides: {
+    entity: {
+      label: t('ISO 3166-2 Codes'),
+      description: t(
+        'Column containing ISO 3166-2 codes of region/province/department in your table.',
+      ),
+    },
+    metric: {
+      label: t('Metric'),
+      description: 'Metric to display bottom title',
+    },
+    linear_color_scheme: {
+      renderTrigger: false,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.js b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.js
new file mode 100644
index 0000000..4354ca3
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.js
@@ -0,0 +1,62 @@
+/* eslint-disable import/no-webpack-loader-syntax, import/no-unresolved */
+import belgium from 'file-loader!./countries/belgium.geojson';
+import brazil from 'file-loader!./countries/brazil.geojson';
+import bulgaria from 'file-loader!./countries/bulgaria.geojson';
+import canada from 'file-loader!./countries/canada.geojson';
+import china from 'file-loader!./countries/china.geojson';
+import egypt from 'file-loader!./countries/egypt.geojson';
+import france from 'file-loader!./countries/france.geojson';
+import germany from 'file-loader!./countries/germany.geojson';
+import india from 'file-loader!./countries/india.geojson';
+import iran from 'file-loader!./countries/iran.geojson';
+import italy from 'file-loader!./countries/italy.geojson';
+import japan from 'file-loader!./countries/japan.geojson';
+import korea from 'file-loader!./countries/korea.geojson';
+import liechtenstein from 'file-loader!./countries/liechtenstein.geojson';
+import morocco from 'file-loader!./countries/morocco.geojson';
+import myanmar from 'file-loader!./countries/myanmar.geojson';
+import netherlands from 'file-loader!./countries/netherlands.geojson';
+import portugal from 'file-loader!./countries/portugal.geojson';
+import russia from 'file-loader!./countries/russia.geojson';
+import singapore from 'file-loader!./countries/singapore.geojson';
+import spain from 'file-loader!./countries/spain.geojson';
+import switzerland from 'file-loader!./countries/switzerland.geojson';
+import thailand from 'file-loader!./countries/thailand.geojson';
+import timorleste from 'file-loader!./countries/timorleste.geojson';
+import uk from 'file-loader!./countries/uk.geojson';
+import ukraine from 'file-loader!./countries/ukraine.geojson';
+import usa from 'file-loader!./countries/usa.geojson';
+import zambia from 'file-loader!./countries/zambia.geojson';
+
+const countries = {
+  belgium,
+  brazil,
+  bulgaria,
+  canada,
+  china,
+  egypt,
+  france,
+  germany,
+  india,
+  iran,
+  italy,
+  japan,
+  korea,
+  liechtenstein,
+  morocco,
+  myanmar,
+  netherlands,
+  portugal,
+  russia,
+  singapore,
+  spain,
+  switzerland,
+  thailand,
+  timorleste,
+  uk,
+  ukraine,
+  usa,
+  zambia,
+};
+
+export default countries;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson
new file mode 100644
index 0000000..787fcb8
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson
@@ -0,0 +1,14 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.409863471984863,50.90990447998047],[4.412505626678467,50.909236907958984],[4.42184686660778,50.90971374511719],[4.426921367645321,50.903301239013615],[4.428298950195369,50.900524139404354],[4.428552150726318,50.89598846435546],[4.431266784667969,50.89382171630871],[4.431397914886475,50.89186859130865],[4.42842340469366,50.888671875000114],[4.435351371765137,50.8798179626466],[4.435228347778377,50.87713623046875],[4.427641391754264,50.874492645263786],[4.425368785858268,50.872783660888615],[4.423589229583853,50.86847686767589],[4.423013210296631,50.86370468139654],[4.423851013183594,50.86118698120117],[4.43182992935192,50.8602752685548],[4.43998193740839,50.85678482055663],[4.44671106338501,50.852764129638615],[4.453137397766113,50.848007202148494],[4.457602500915527,50.84250640869151],[4.459332466125545,50.837879180908146],[4.459523200988826,50.829414367675774],[4.458478450775203,50.82339859008789],[4.456301689147892,50.819305419921875],[4.448300838470459,50.81738281249994],[4.443833827972411,50.81269073486334],[4.443684577941951,50.810771942138786],[4.44574594497692,50.80740737915039],[4.448098182678223,50.805908203125114],[4.457549571991024,50.802398681640675],[4.46480846405035,50.798908233642635],[4.471469879150447,50.796409606933594],[4.471917629242,50.793884277343864],[4.468224525451774,50.791538238525334],[4.454542636871451,50.78776168823242],[4.454495906829948,50.78291702270519],[4.444179534912108,50.78215789794922],[4.432633876800594,50.77976226806651],[4.428128242492676,50.77827835083013],[4.419411182403621,50.77408981323248],[4.4131054878236,50.77251052856445],[4.403519153594971,50.774047851562614],[4.390567302703971,50.77049636840832],[4.378083229064941,50.767379760742294],[4.372328758239746,50.76770401000976],[4.371043205261174,50.77133178710943],[4.367992401123161,50.77239990234375],[4.35862398147583,50.773490905761825],[4.34830904006958,50.774047851562614],[4.343227863311824,50.77518463134777],[4.334693431854305,50.775222778320256],[4.321044921875,50.77606582641613],[4.323226451873779,50.7816276550293],[4.323740482330379,50.78579330444347],[4.322649002075252,50.78912734985357],[4.320200443267765,50.790401458740234],[4.313343524932975,50.79682922363281],[4.308412075042725,50.80068969726568],[4.300967693328857,50.801437377929744],[4.298927307128906,50.8037109375],[4.298885822296086,50.80713653564453],[4.294890403747559,50.80799484252929],[4.274653434753475,50.80966949462896],[4.270914554596004,50.81179809570324],[4.266596317291203,50.81278610229498],[4.259866714477539,50.81290054321283],[4.257053375244141,50.81364059448253],[4.254380702972412,50.817588806152344],[4.250339984893856,50.81900787353521],[4.244327068328857,50.819755554199276],[4.243638038635254,50.821361541748104],[4.246231079101506,50.825004577636655],[4.25148534774786,50.82748413085932],[4.254514217376709,50.830875396728516],[4.25527286529541,50.83431243896496],[4.25678014755249,50.83584213256836],[4.261881828308219,50.837047576904354],[4.26992130279541,50.83740615844732],[4.276174068451041,50.839191436767685],[4.281164169311579,50.8398323059082],[4.283812046051139,50.842094421386776],[4.28579568862915,50.847034454345646],[4.285871028900203,50.85370254516613],[4.286975860595703,50.85549926757824],[4.284823417663516,50.85826873779302],[4.28102970123291,50.86017990112316],[4.279821872711295,50.862651824951286],[4.281398773193472,50.86608123779297],[4.291715145111084,50.87336349487298],[4.298773765564022,50.87794113159174],[4.304327964782829,50.880317687988224],[4.299145221710262,50.885669708252],[4.298538208007812,50.88824462890631],[4.302279472351131,50.88960266113287],[4.304419040680045,50.894775390625114],[4.313412189483643,50.89376831054693],[4.318715572357291,50.89363479614258],[4.323376655578727,50.89438247680664],[4.335988521575985,50.899810791015625],[4.342049598693847,50.90095520019531],[4.35874176025402,50.90055847167969],[4.367551326751823,50.89942932128906],[4.372054100036735,50.89813995361334],[4.375820159912223,50.8995246887207],[4.386989116668701,50.904918670654354],[4.389441013336238,50.90568923950201],[4.392726421356201,50.908329010009766],[4.399668216705379,50.91016769409173],[4.409863471984863,50.90990447998047]]]},"properties":{"ID_0":23,"ISO":"BE-BRU","NAME_0":"Belgium","ID_1":1,"NAME_1":"Bruxelles","ID_2":1,"NAME_2":"Bruxelles","TYPE_2":"Hoofdstedelijk Gewest|Région Capitale","ENGTYPE_2":"Capital Region","NL_NAME_2":null,"VARNAME_2":"Brussel Hoofstadt|Brusselse Hoofdstedelijke Gewest|Brüssel|Bruxelas|Région de Bruxelles-Capitale|Brussels|Bruselas"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[4.963096141815129,51.454395294189446],[4.967648029327392,51.448505401611385],[4.960515975952148,51.44720458984375],[4.953164100646973,51.444541931152344],[4.951247215271053,51.43999099731457],[4.951035022735652,51.43605804443365],[4.952054023742789,51.43120574951172],[4.945246219635009,51.42885208129888],[4.937314987182674,51.42957305908208],[4.928979873657227,51.4322395324707],[4.927105903625488,51.437900543213],[4.927896976470946,51.44770431518555],[4.930860042572021,51.45014190673834],[4.937366962432918,51.45145416259771],[4.943729877472038,51.45044326782232],[4.963096141815129,51.454395294189446]]],[[[5.239571094512996,51.262336730957145],[5.229714870452938,51.24909210205084],[5.227700233459529,51.24262619018548],[5.227061271667424,51.227058410644645],[5.227417469024772,51.21967315673828],[5.229143142700195,51.21534729003912],[5.233153820037955,51.21090316772472],[5.24668550491333,51.20495223999029],[5.25067758560192,51.20179367065441],[5.257046699523869,51.19791793823248],[5.260843276977539,51.19339752197271],[5.264478683471793,51.1877670288087],[5.266909599304313,51.18019104003906],[5.268953323364371,51.17576599121088],[5.270822048187256,51.16968536376953],[5.274050712585505,51.16421508789068],[5.27274322509777,51.15922927856457],[5.267405986785832,51.151771545410156],[5.258239269256649,51.142951965332145],[5.246838569641169,51.14105224609369],[5.241306781768742,51.14073944091797],[5.224534034728947,51.14054870605468],[5.217691421508732,51.13924026489252],[5.213703632354736,51.1371688842774],[5.209149360656852,51.13270187377941],[5.204272747039737,51.12604904174816],[5.201982498169002,51.12157440185558],[5.160740852355956,51.12223815917968],[5.14595985412609,51.12307739257824],[5.138252258300895,51.11904907226568],[5.131552696228141,51.114528656005916],[5.125127315521354,51.106868743896484],[5.104276180267391,51.08905029296875],[5.097488880157528,51.08620834350597],[5.077497482299862,51.083812713623104],[5.068570137024039,51.08132934570324],[5.060279369354305,51.078350067138786],[5.050835609436035,51.07704544067394],[5.033034324645996,51.07664871215832],[5.025984287262077,51.074928283691406],[5.01834774017334,51.07002639770507],[5.007122993469295,51.057071685791016],[4.999913215637321,51.050415039062614],[4.997560501098746,51.04715347290039],[4.994604587554932,51.04140472412115],[4.983142375946102,51.044139862060604],[4.97057294845581,51.046470642089844],[4.957199573516788,51.0473747253418],[4.950301647186393,51.04724502563482],[4.945374965667838,51.04660415649414],[4.939480304718074,51.04490280151373],[4.930237770080566,51.043155670166016],[4.918544292450065,51.042060852050724],[4.913022518158073,51.040836334228516],[4.908148765564022,51.03871536254894],[4.896214008331413,51.031925201416016],[4.89150953292858,51.02965927124029],[4.879902362823486,51.025020599365234],[4.870729446411246,51.02258682250982],[4.860552310943547,51.0192985534668],[4.85106897354126,51.0183563232423],[4.829348564148063,51.018642425537216],[4.821960449218806,51.026073455810604],[4.8109774589538,51.03490066528332],[4.805189609527588,51.036708831787166],[4.795162200927791,51.039127349853516],[4.782798767089844,51.04388046264643],[4.770822525024414,51.039920806884766],[4.766013622284049,51.03528213500988],[4.753901481628418,51.03167343139642],[4.744027137756461,51.02912902832031],[4.739963054657039,51.0272827148438],[4.734666347503662,51.023300170898494],[4.729921817779541,51.0206184387207],[4.725505828857422,51.014617919921875],[4.717874050140381,51.00749588012695],[4.707288265228271,51.00265502929693],[4.705630779266413,51.01554107666027],[4.701743602752798,51.02060699462896],[4.697710990905875,51.0229606628418],[4.692750453949031,51.0244598388673],[4.685599327087516,51.02495574951172],[4.677803516387939,51.0246200561524],[4.664401531219539,51.025112152099666],[4.652591705322209,51.025154113769524],[4.64492130279541,51.02479171752941],[4.638265609741268,51.02391052246105],[4.633597850799617,51.01870727539068],[4.625666618347111,51.016113281250114],[4.618252277374324,51.01274871826171],[4.610688209533805,51.00738906860362],[4.601820468902531,50.99812698364258],[4.592682361602896,50.99661254882824],[4.585921764373836,50.99661254882824],[4.578203678131217,50.99840545654297],[4.563103199005241,51.0028915405274],[4.551182746887207,51.00477600097661],[4.533492565155086,51.00852966308594],[4.528186798095816,51.01134109497076],[4.519528865814323,51.014156341552734],[4.514202117919979,51.0150146484375],[4.500732421875,51.016391754150504],[4.497669219970816,51.01181030273443],[4.495145320892448,51.005817413330135],[4.492278575897273,51.002040863037166],[4.489727020263672,51.000057220458984],[4.481745719909725,50.9988632202149],[4.475311279296875,50.999786376953125],[4.4626784324646,51.00337219238281],[4.455388069152775,51.00415420532238],[4.447964668273926,51.00386810302746],[4.439062595367545,51.00221633911138],[4.424881458282471,51.000068664550895],[4.418742656707821,50.99977493286144],[4.414099216461295,51.000579833984425],[4.405846595764274,51.003730773925724],[4.398381233215332,51.005989074707145],[4.386740684509391,51.007350921630916],[4.387394428253174,51.021797180175895],[4.386933803558293,51.025039672851676],[4.384752750396785,51.02785491943365],[4.378576755523738,51.02935791015631],[4.371464729309025,51.02911376953124],[4.363585948944205,51.02767562866211],[4.34328222274786,51.03152465820324],[4.321650505065918,51.034000396728516],[4.31145715713501,51.039749145507926],[4.30253362655634,51.04311370849615],[4.292593002319335,51.045288085937614],[4.285531044006461,51.04591751098644],[4.278241157531737,51.04579544067383],[4.272442817688102,51.04518127441406],[4.253897666931152,51.04168319702154],[4.24867773056036,51.04213714599615],[4.243930816650447,51.0433235168457],[4.224333763122559,51.039127349853516],[4.218850612640495,51.03829956054687],[4.209434509277344,51.03800201416027],[4.192297935485896,51.03841400146496],[4.194415092468205,51.049335479736385],[4.194165706634635,51.061359405517635],[4.191631317138672,51.066947937011776],[4.189672470092887,51.07352066040045],[4.185780048370304,51.07962036132824],[4.178332805633544,51.08609390258789],[4.173614978790397,51.0927391052246],[4.173072814941463,51.097370147705135],[4.175231933593864,51.102916717529354],[4.178919792175407,51.1067123413087],[4.187142848968563,51.111274719238395],[4.204384803772029,51.12179565429682],[4.212789535522575,51.12486267089843],[4.220615386962891,51.12554931640636],[4.230647563934383,51.12544250488281],[4.238502502441463,51.12480926513683],[4.249611854553279,51.12292861938482],[4.261415958404655,51.12254714965826],[4.271099090576286,51.123386383056754],[4.280544281005916,51.125690460205185],[4.293947696685848,51.12771224975591],[4.303575992584341,51.12793350219738],[4.317935943603572,51.12762832641601],[4.326134681701774,51.13746643066406],[4.326570987701473,51.15448760986334],[4.327077865600585,51.19879531860351],[4.320000171661376,51.2056503295899],[4.316242218017635,51.213054656982365],[4.312294960021973,51.21904754638683],[4.3066024780274,51.22531509399413],[4.301985263824406,51.2334556579591],[4.299790859222412,51.24004745483404],[4.297354698181152,51.24552154541027],[4.295839786529541,51.25609588623047],[4.294036388397217,51.26255035400384],[4.304376125335692,51.277099609375],[4.305185794830322,51.28034973144531],[4.304560184478703,51.283622741699276],[4.299696445465031,51.28806304931652],[4.282232761383113,51.29532623291027],[4.278837680816707,51.2979965209962],[4.275197505951041,51.30278396606451],[4.271328926086369,51.31125259399425],[4.270382404327449,51.32368850708002],[4.268922328948975,51.328495025634766],[4.266629219055176,51.33128738403332],[4.259858131408691,51.33784103393555],[4.251997947692927,51.34387588500988],[4.246936321258659,51.34869384765631],[4.24208307266241,51.35142898559576],[4.232576847076473,51.355682373046875],[4.230599880218563,51.357475280761776],[4.223443984985352,51.35921096801758],[4.222165107727051,51.36574554443353],[4.216015815734806,51.37023925781256],[4.221158027649039,51.37612915039068],[4.234350204467717,51.37663650512701],[4.250617980956974,51.37644577026373],[4.2770290374757,51.3769416809082],[4.279046058654899,51.38016891479492],[4.280680179596061,51.38034057617193],[4.337417125701961,51.38127899169927],[4.346426010131893,51.36071777343756],[4.366444110870361,51.36121749877941],[4.379878997802733,51.36052703857427],[4.396659851074332,51.36003112792968],[4.408495903015194,51.36411285400396],[4.42266321182251,51.3678359985351],[4.427467823028621,51.376232147216854],[4.424565792083854,51.386028289795036],[4.399862766265868,51.4036254882813],[4.392259120941276,51.41722869873058],[4.395366191863957,51.44842910766596],[4.408965110778809,51.458827972412166],[4.415134906768856,51.460510253906364],[4.426202774047852,51.46437835693359],[4.442812919616699,51.471115112304744],[4.46682977676403,51.47652053833008],[4.478610992431754,51.48099899292003],[4.489480972290039,51.48001480102545],[4.505167961120605,51.48102951049816],[4.518927097320613,51.48291778564453],[4.537779808044547,51.484771728515625],[4.54447793960577,51.47943878173828],[4.551988124847469,51.47214889526373],[4.54948806762701,51.46809005737304],[4.538846969604549,51.457736968994254],[4.53347206115734,51.45201492309581],[4.530361175537109,51.447059631347656],[4.530519008636588,51.44551849365234],[4.537150859832764,51.423633575439396],[4.590851783752555,51.431396484375],[4.596758842468319,51.42980575561529],[4.614250183105526,51.42765045166021],[4.632566928863525,51.426769256591854],[4.640648841858024,51.42397689819347],[4.647445201873779,51.423614501953175],[4.654842853546143,51.42544555664057],[4.661338806152401,51.42472839355469],[4.662837982177848,51.42726516723633],[4.679113864898682,51.42538833618164],[4.678978919983024,51.43069458007818],[4.677420139312801,51.43796920776367],[4.678764820098876,51.44445419311523],[4.692807197570914,51.45040130615245],[4.707461833953857,51.4558448791505],[4.712071895599365,51.465816497802734],[4.719349861145133,51.46745300292969],[4.723608970642033,51.47019195556646],[4.728312969207821,51.47444915771496],[4.732659816742,51.481529235839844],[4.73692893981945,51.48659133911133],[4.752143859863338,51.49752426147466],[4.779335975647086,51.50382232666027],[4.804928779602108,51.49712753295898],[4.83863019943243,51.47982788085937],[4.839922904968262,51.45812225341797],[4.829224109649601,51.43962478637707],[4.834949970245417,51.422389984130916],[4.829008102417106,51.423896789550895],[4.810695171356258,51.4255485534668],[4.801196098327636,51.42774581909185],[4.786021232605093,51.43194961547857],[4.773284912109375,51.42889404296875],[4.778018951416072,51.42099761962902],[4.782611846923942,51.41544342041021],[4.791244983673209,51.41125488281256],[4.797492027282715,51.409458160400504],[4.832930088043327,51.40933609008789],[4.884724140167293,51.41562652587896],[4.925730228424186,51.39862442016613],[4.936068058014029,51.39749908447271],[4.945034027099609,51.401901245117244],[4.960960865020866,51.413646697998104],[4.970952033996525,51.420040130615234],[4.983663082122803,51.426940917968864],[4.994431972503662,51.433403015136825],[5.006558895111084,51.43910217285162],[5.010867118835506,51.444808959960994],[5.013113975525016,51.450469970703125],[5.016974925994929,51.455135345458984],[5.016713142395133,51.45949172973627],[5.014924049377441,51.46419525146484],[5.017857074737605,51.47073364257818],[5.022393226623535,51.47570800781256],[5.030433177947998,51.48140716552739],[5.037237167358454,51.48538970947265],[5.051019191742057,51.47152709960943],[5.082108020782584,51.46693038940424],[5.094810009002742,51.448932647705135],[5.097507953643798,51.42852783203125],[5.076618194580078,51.40473175048833],[5.07581615447998,51.39513397216797],[5.122406005859489,51.36013031005865],[5.13670921325695,51.31553268432617],[5.177507877349967,51.318603515625114],[5.181334972381592,51.32062149047862],[5.198300838470516,51.32144546508789],[5.209953784942627,51.32352447509771],[5.233023166656494,51.31309509277338],[5.245742797851562,51.305252075195426],[5.237619876861686,51.287895202636825],[5.228401184082088,51.27313232421881],[5.230206012725944,51.26713943481451],[5.239571094512996,51.262336730957145]]]]},"properties":{"ID_0":23,"ISO":"BE-VAN","NAME_0":"Belgium","ID_1":2,"NAME_1":"Vlaanderen","ID_2":2,"NAME_2":"Antwerpen","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Amberes|Antuérpia|Antwerp|Anvers|Anversa"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[5.896129608154411,50.75958633422857],[5.889423847198429,50.74941635131836],[5.885429382324219,50.74170303344738],[5.88486909866333,50.73515701293951],[5.886991977691593,50.729557037353516],[5.887659549713078,50.71998214721691],[5.887138843536434,50.71196746826172],[5.877957344055176,50.7120475769043],[5.866026401519775,50.711032867431754],[5.856453418731746,50.71121978759771],[5.835361957550106,50.71462631225597],[5.826517581939754,50.716419219970696],[5.805293560028076,50.71798706054698],[5.799057483673209,50.723720550537166],[5.794776439666805,50.72986984252941],[5.784869194030819,50.73592376708996],[5.779966354370174,50.73674774169922],[5.765116691589299,50.73801040649419],[5.753653049469108,50.74068832397466],[5.744046688079948,50.744171142578125],[5.739517688751278,50.744976043701286],[5.735059261322078,50.744773864746094],[5.72850847244274,50.74236297607433],[5.720372676849422,50.74085998535167],[5.709727764129581,50.740764617920036],[5.70356273651123,50.74215698242193],[5.699196338653564,50.74635314941412],[5.693084716796989,50.755371093750114],[5.692372798919791,50.760299682617294],[5.695435047149714,50.758277893066406],[5.69900894165039,50.75885772705078],[5.706765174865723,50.76276779174805],[5.732358932495231,50.762664794921875],[5.75455999374401,50.77846527099604],[5.761384010314998,50.77952575683599],[5.765114784240723,50.78172683715826],[5.773447990417537,50.78495407104498],[5.783214092254639,50.77985382080078],[5.786399841308707,50.774852752685604],[5.790698051452637,50.7695045471192],[5.793378829956168,50.76984786987305],[5.813356876373348,50.76006698608392],[5.832551956176815,50.76397323608404],[5.855858802795353,50.7611656188966],[5.881153106689453,50.76927185058605],[5.896129608154411,50.75958633422857]]],[[[5.690980434417668,50.809234619140625],[5.680764675140437,50.8058700561524],[5.674395084381217,50.802318572998104],[5.668262481689453,50.79743576049816],[5.658165454864502,50.790939331054744],[5.638574123382568,50.7791633605957],[5.63052129745489,50.77534866333008],[5.621693611145133,50.77272796630871],[5.614023685455379,50.77122497558588],[5.598823070526123,50.767604827880916],[5.587758064270133,50.766166687011776],[5.567357063293571,50.76243591308605],[5.552254199981802,50.76207733154296],[5.542725086212272,50.75820159912121],[5.538217067718505,50.75497817993164],[5.533227920532226,50.74650955200207],[5.532261848449821,50.739681243896484],[5.520458698272762,50.73588180541992],[5.513237476348876,50.73398971557617],[5.500510692596492,50.73163604736334],[5.497571468353328,50.729824066162166],[5.494567871093864,50.725944519043026],[5.485836505889893,50.724693298339844],[5.476349830627441,50.72471237182622],[5.469120025634709,50.72381973266596],[5.463170051574764,50.72132492065441],[5.456157684326114,50.71626663208013],[5.449454784393424,50.71430969238286],[5.435894012451286,50.712665557861385],[5.425975799560661,50.71467208862299],[5.41564416885376,50.71726608276373],[5.410488605499211,50.72043228149413],[5.40947437286377,50.7252578735351],[5.410171985626334,50.73654556274425],[5.409637451171932,50.740844726562614],[5.407900810241699,50.7434921264649],[5.404721260070801,50.74518966674799],[5.394875049591121,50.74466705322277],[5.382153987884521,50.74292755126959],[5.368960857391414,50.74213027954096],[5.363807201385612,50.74113845825207],[5.349058151245117,50.736251831054744],[5.337441921234188,50.7334098815918],[5.32700777053833,50.72928619384765],[5.323946475982723,50.727607727050774],[5.31430959701538,50.719863891601676],[5.294179916381892,50.723606109619254],[5.285480499267578,50.72399902343756],[5.282044410705623,50.72358703613281],[5.273265838623047,50.721111297607536],[5.266397476196345,50.718395233154354],[5.259901046753043,50.716896057128906],[5.25438022613531,50.71667098999029],[5.247096538543758,50.71737289428711],[5.229423522949332,50.722064971923935],[5.229677677154541,50.73812484741205],[5.23081254959112,50.74418640136718],[5.234035491943416,50.74734115600586],[5.234367847442627,50.756572723388786],[5.229905128479004,50.76343917846691],[5.22504997253418,50.76673889160162],[5.220779418945369,50.767574310302784],[5.213201522827092,50.767780303955135],[5.2023220062257,50.76717376708996],[5.198796272277889,50.76586532592779],[5.192119598388786,50.76515197753906],[5.181925296783561,50.76515579223644],[5.175235271453971,50.764450073242244],[5.167627334594783,50.76275634765631],[5.158460140228328,50.76258087158214],[5.153451919555663,50.761932373046875],[5.149806976318473,50.76068878173839],[5.140381336212215,50.759986877441406],[5.130300998687857,50.75775909423834],[5.125383377075195,50.757549285888786],[5.113746166229362,50.75787353515619],[5.10510969161993,50.758533477783146],[5.109626293182373,50.7629508972168],[5.113068580627498,50.767208099365284],[5.115010261535645,50.772171020507756],[5.113786697387695,50.77745056152349],[5.106708049774227,50.787342071533146],[5.120740890502929,50.78927230834961],[5.133152484893742,50.79191207885736],[5.136761188507194,50.79350662231445],[5.140206813812256,50.797134399414176],[5.142097473144645,50.80104827880865],[5.142440795898551,50.805835723876896],[5.141652584075985,50.8106079101563],[5.139581680297908,50.815177917480526],[5.138687610626278,50.820919036865234],[5.139229774475211,50.82438278198242],[5.144410610199031,50.836330413818466],[5.150712013244572,50.8451538085938],[5.156629085540885,50.85569000244152],[5.156763553619327,50.86115646362299],[5.158709049224854,50.86707305908209],[5.163393974304198,50.872325897216854],[5.16764068603527,50.874668121338004],[5.177734851837158,50.877468109130916],[5.182327747344971,50.87946319580084],[5.187740802764893,50.88277053833008],[5.190816879272518,50.88576126098627],[5.192530155181942,50.89030456542969],[5.192805290222225,50.89624404907221],[5.191988945007324,50.902225494384766],[5.189713001251164,50.907970428466854],[5.181466579437313,50.90855026245123],[5.157316684722957,50.90927886962902],[5.144743919372672,50.91128540039062],[5.129437446594352,50.91214370727539],[5.117744445800781,50.91218948364263],[5.10694789886486,50.91117095947277],[5.096708297729492,50.908695220947266],[5.088730812072697,50.90608978271484],[5.083992958068848,50.9129371643067],[5.078602313995304,50.91821289062506],[5.068372726440487,50.91852188110363],[5.065114021301383,50.919120788574276],[5.058685779571533,50.92193222045904],[5.054823398590088,50.92480087280285],[5.049398422241211,50.93117141723633],[5.050158023834229,50.93879699707037],[5.052103042602653,50.94455337524414],[5.062508106231689,50.94726943969732],[5.077712059021053,50.953987121582024],[5.082909584045467,50.958961486816406],[5.084508419036979,50.96277236938488],[5.084280014038086,50.96606063842768],[5.082726001739502,50.96910095214849],[5.078112602233887,50.974304199218864],[5.077085971832389,50.97744369506847],[5.077640056610107,50.980503082275504],[5.081507205963192,50.98340225219738],[5.088366985321045,50.98531341552739],[5.099818229675406,50.99031066894537],[5.108793258667049,50.99330520629894],[5.119160175323543,50.99598693847661],[5.125144481658992,50.99680328369151],[5.126358509063834,51.004798889160206],[5.129977226257267,51.00875854492193],[5.135479927063045,51.0117073059082],[5.144402980804443,51.014148712158196],[5.14924860000616,51.015998840332024],[5.166181564331112,51.0244598388673],[5.159650802612305,51.03295516967785],[5.156472206115723,51.035957336425724],[5.14860820770275,51.04145431518555],[5.136041641235465,51.04912948608404],[5.129860877990779,51.050769805908196],[5.122413158416748,51.05154418945324],[5.105188846588191,51.05206298828131],[5.096547126770075,51.05144119262701],[5.091957569122371,51.04854583740229],[5.09110593795782,51.04542160034179],[5.091146945953426,51.03741455078131],[5.090695381164664,51.03410339355469],[5.088820457458609,51.03119277954107],[5.085695743560848,51.02956008911144],[5.078582286834774,51.02720260620123],[5.067107677459717,51.024917602539055],[5.059502601623649,51.024665832519645],[5.045941352844237,51.024837493896484],[5.030416011810303,51.025836944580135],[5.022239208221435,51.0311164855957],[5.01378297805786,51.0351791381837],[4.999020099640006,51.03932571411133],[4.994604587554932,51.04140472412115],[4.997560501098746,51.04715347290039],[4.999913215637321,51.050415039062614],[5.007122993469295,51.057071685791016],[5.01834774017334,51.07002639770507],[5.025984287262077,51.074928283691406],[5.033034324645996,51.07664871215832],[5.050835609436035,51.07704544067394],[5.060279369354305,51.078350067138786],[5.068570137024039,51.08132934570324],[5.077497482299862,51.083812713623104],[5.097488880157528,51.08620834350597],[5.104276180267391,51.08905029296875],[5.125127315521354,51.106868743896484],[5.131552696228141,51.114528656005916],[5.138252258300895,51.11904907226568],[5.14595985412609,51.12307739257824],[5.160740852355956,51.12223815917968],[5.201982498169002,51.12157440185558],[5.204272747039737,51.12604904174816],[5.209149360656852,51.13270187377941],[5.213703632354736,51.1371688842774],[5.217691421508732,51.13924026489252],[5.224534034728947,51.14054870605468],[5.241306781768742,51.14073944091797],[5.246838569641169,51.14105224609369],[5.258239269256649,51.142951965332145],[5.267405986785832,51.151771545410156],[5.27274322509777,51.15922927856457],[5.274050712585505,51.16421508789068],[5.270822048187256,51.16968536376953],[5.268953323364371,51.17576599121088],[5.266909599304313,51.18019104003906],[5.264478683471793,51.1877670288087],[5.260843276977539,51.19339752197271],[5.257046699523869,51.19791793823248],[5.25067758560192,51.20179367065441],[5.24668550491333,51.20495223999029],[5.233153820037955,51.21090316772472],[5.229143142700195,51.21534729003912],[5.227417469024772,51.21967315673828],[5.227061271667424,51.227058410644645],[5.227700233459529,51.24262619018548],[5.229714870452938,51.24909210205084],[5.239571094512996,51.262336730957145],[5.241021156311092,51.261692047119084],[5.26488304138195,51.266914367675895],[5.279383182525748,51.26458358764648],[5.334092140197811,51.26382064819336],[5.35764217376709,51.27290725708019],[5.420667171478271,51.26112747192377],[5.428040027618465,51.26626205444347],[5.432981014251823,51.27128982543945],[5.44160079956066,51.27389144897472],[5.447806835174561,51.278816223144524],[5.456861972808952,51.28213119506836],[5.468880176544246,51.28384399414068],[5.480690002441406,51.28797531127941],[5.489470005035514,51.29738235473633],[5.496086120605582,51.29774093627923],[5.512876033783073,51.293033599853516],[5.551477909088192,51.26653671264654],[5.560273170471191,51.22884368896484],[5.576879024505614,51.216945648193416],[5.615064144134577,51.20907211303711],[5.651566028595028,51.199867248535156],[5.655365943908804,51.18644332885747],[5.709558963775634,51.18134689331066],[5.717188835144157,51.182712554931754],[5.722672939300537,51.181991577148494],[5.749197959899846,51.19004821777355],[5.76308202743536,51.187576293945426],[5.782691955566463,51.18131637573248],[5.781661987304687,51.17773056030285],[5.784115791320801,51.17460250854498],[5.780560970306396,51.169631958007926],[5.786121845245418,51.165454864502],[5.782736778259391,51.15991210937511],[5.821729183196965,51.162628173828125],[5.822772979736328,51.165317535400504],[5.828010082244929,51.168716430664006],[5.83412504196167,51.168460845947266],[5.837316036224479,51.16491699218749],[5.839006900787467,51.160202026367244],[5.843266963958854,51.15403747558594],[5.850687026977652,51.15060806274419],[5.858759880066031,51.14596176147461],[5.848534107208252,51.13900375366222],[5.843645095825309,51.13495254516607],[5.838119983673153,51.13285446166998],[5.829743862152156,51.13172149658203],[5.824966907501277,51.12927627563488],[5.817066192626953,51.12080764770507],[5.815732002258301,51.11489105224621],[5.819299221038931,51.11212158203125],[5.826327800750732,51.111454010009766],[5.833051204681396,51.10917282104492],[5.836369991302603,51.10416793823242],[5.834655761718864,51.10044479370123],[5.822856903076228,51.09464645385742],[5.811281204223633,51.09589385986328],[5.803187847137394,51.093589782714844],[5.800704002380371,51.08914566040038],[5.80607986450201,51.08078765869135],[5.802192211151123,51.07654571533214],[5.799757957458496,51.072834014892685],[5.801907062530518,51.06391906738287],[5.796287059783936,51.062065124511825],[5.782749176025391,51.06509399414074],[5.779297828674373,51.06140518188488],[5.777957916259766,51.05702209472662],[5.768663883209229,51.044963836670036],[5.764050960540828,51.03752136230469],[5.763566970825138,51.03270721435558],[5.769853115081844,51.0297966003418],[5.774485111236629,51.02516174316412],[5.770568847656364,51.020359039306754],[5.767807006835994,51.01391983032237],[5.767342090606746,51.01133346557623],[5.770719051361141,51.01115036010748],[5.763065814971981,50.992351531982536],[5.725789070129451,50.9640007019043],[5.724986076355037,50.959964752197266],[5.730968952178955,50.956417083740284],[5.737686157226618,50.95615386962896],[5.744450092315788,50.9582977294923],[5.751912117004451,50.959384918212834],[5.757164955139217,50.95642471313482],[5.757295131683406,50.953041076660156],[5.747467994690055,50.94179916381847],[5.741397857666072,50.936088562011776],[5.732224941253662,50.92445755004894],[5.728404998779354,50.915359497070426],[5.723505020141715,50.90905761718755],[5.707162857055664,50.90788650512689],[5.703488826751709,50.90611267089844],[5.697491168975944,50.89688110351574],[5.69225978851324,50.88946151733404],[5.689669132232609,50.886711120605526],[5.687693119049128,50.88209152221691],[5.681983947753963,50.880397796630966],[5.670166015625057,50.88031387329107],[5.651988029480094,50.872505187988224],[5.647942066192684,50.86005783081055],[5.647504806518497,50.852027893066456],[5.648804187774601,50.845230102539],[5.649746894836539,50.83691787719738],[5.652534961700496,50.829597473144524],[5.660498142242488,50.821987152099666],[5.67245721817028,50.819568634033146],[5.690980434417668,50.809234619140625]]]]},"properties":{"ID_0":23,"ISO":"BE-VLI","NAME_0":"Belgium","ID_1":2,"NAME_1":"Vlaanderen","ID_2":3,"NAME_2":"Limburg","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Limbourg|Limburgo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.232576847076473,51.355682373046875],[4.24208307266241,51.35142898559576],[4.246936321258659,51.34869384765631],[4.251997947692927,51.34387588500988],[4.259858131408691,51.33784103393555],[4.266629219055176,51.33128738403332],[4.268922328948975,51.328495025634766],[4.270382404327449,51.32368850708002],[4.271328926086369,51.31125259399425],[4.275197505951041,51.30278396606451],[4.278837680816707,51.2979965209962],[4.282232761383113,51.29532623291027],[4.299696445465031,51.28806304931652],[4.304560184478703,51.283622741699276],[4.305185794830322,51.28034973144531],[4.304376125335692,51.277099609375],[4.294036388397217,51.26255035400384],[4.295839786529541,51.25609588623047],[4.297354698181152,51.24552154541027],[4.299790859222412,51.24004745483404],[4.301985263824406,51.2334556579591],[4.3066024780274,51.22531509399413],[4.312294960021973,51.21904754638683],[4.316242218017635,51.213054656982365],[4.320000171661376,51.2056503295899],[4.327077865600585,51.19879531860351],[4.326570987701473,51.15448760986334],[4.326134681701774,51.13746643066406],[4.317935943603572,51.12762832641601],[4.303575992584341,51.12793350219738],[4.293947696685848,51.12771224975591],[4.280544281005916,51.125690460205185],[4.271099090576286,51.123386383056754],[4.261415958404655,51.12254714965826],[4.249611854553279,51.12292861938482],[4.238502502441463,51.12480926513683],[4.230647563934383,51.12544250488281],[4.220615386962891,51.12554931640636],[4.212789535522575,51.12486267089843],[4.204384803772029,51.12179565429682],[4.187142848968563,51.111274719238395],[4.178919792175407,51.1067123413087],[4.175231933593864,51.102916717529354],[4.173072814941463,51.097370147705135],[4.173614978790397,51.0927391052246],[4.178332805633544,51.08609390258789],[4.185780048370304,51.07962036132824],[4.189672470092887,51.07352066040045],[4.191631317138672,51.066947937011776],[4.194165706634635,51.061359405517635],[4.194415092468205,51.049335479736385],[4.192297935485896,51.03841400146496],[4.209434509277344,51.03800201416027],[4.218850612640495,51.03829956054687],[4.224333763122559,51.039127349853516],[4.243930816650447,51.0433235168457],[4.242400646209774,51.03449630737316],[4.238726615905762,51.02453231811529],[4.238165378570613,51.01258087158209],[4.237308979034424,51.00791549682623],[4.232768058776855,51.00117874145508],[4.225895881652945,50.99489593505871],[4.210656642913932,50.98761367797846],[4.193532466888484,50.988933563232536],[4.188358306884765,50.98960113525402],[4.178502559661979,50.99213027954113],[4.170099258422908,50.99526977539068],[4.165304660797176,50.989456176757805],[4.158428192138672,50.98222351074219],[4.149996280670223,50.974296569824325],[4.150999546051082,50.96940231323247],[4.152441978454646,50.96607208251959],[4.154804229736328,50.96347427368169],[4.162394046783504,50.95708847045893],[4.165952205658073,50.952678680420036],[4.167680740356559,50.94936370849604],[4.169786453247013,50.94295883178722],[4.160375595092773,50.935264587402344],[4.156063079834098,50.92974090576172],[4.152789592742919,50.92382431030279],[4.149717330932617,50.92016983032232],[4.14047479629528,50.92489242553711],[4.127593994140567,50.93045425415039],[4.11557054519659,50.93405532836914],[4.106604099273738,50.93447875976574],[4.100337982177791,50.93286514282221],[4.098210334777832,50.930057525634766],[4.097970008850154,50.91989898681646],[4.096945762634333,50.91412353515625],[4.092715263366813,50.90866470336914],[4.086257457733268,50.90524673461914],[4.080656051635742,50.90421676635753],[4.080770015716553,50.89691162109369],[4.081889152526799,50.892230987548935],[4.085982322692814,50.885520935058594],[4.090218067169246,50.88080215454096],[4.082449913024959,50.87328338623047],[4.078415393829403,50.867313385009766],[4.074045181274356,50.859119415283196],[4.07061672210699,50.856189727783146],[4.061762809753475,50.849906921386776],[4.058853626251221,50.84724807739258],[4.055192947387694,50.842555999755916],[4.054391860961857,50.83827972412115],[4.056893348693848,50.83452606201183],[4.063144683837947,50.83318328857433],[4.073387622833252,50.83289337158203],[4.078993320465201,50.83085632324224],[4.080935001373348,50.825820922851555],[4.080599784851074,50.812736511230526],[4.073676586151237,50.80380630493164],[4.060739994049186,50.79277038574213],[4.050070762634391,50.7848472595216],[4.045576095581055,50.77933883666992],[4.025604248046875,50.77409362792968],[4.019299030303955,50.773777008056754],[4.011229038238582,50.774566650390675],[4.005154132842961,50.77398300170893],[3.990963697433472,50.77113342285162],[3.984547853469849,50.77104568481451],[3.98045539855957,50.77186203002941],[3.97381401062006,50.77426910400385],[3.970697164535579,50.77659606933594],[3.965441703796444,50.77819824218756],[3.960383176803589,50.77833557128906],[3.955550193786621,50.77766036987305],[3.948070764541569,50.775386810302734],[3.939300298690796,50.77076721191412],[3.933359861373958,50.76609420776373],[3.929675102233829,50.76133728027344],[3.928164482116699,50.757003784179744],[3.928374052047843,50.75234222412103],[3.929718255996704,50.749275207519645],[3.933732271194458,50.744892120361385],[3.943493366241568,50.74139404296881],[3.948508262634277,50.737514495849716],[3.940354585647697,50.73553848266607],[3.927059412002677,50.73307418823248],[3.920488119125366,50.732402801513615],[3.915246486663761,50.73260116577143],[3.906505823135376,50.73405456542969],[3.892590045929068,50.73526763916021],[3.884006977081413,50.73691177368169],[3.878738403320312,50.74233245849615],[3.875122547149772,50.74496078491222],[3.869098663330078,50.74762725830078],[3.86400222778326,50.74841308593755],[3.858756542205811,50.74839782714844],[3.852779150009098,50.74742126464844],[3.847915649414176,50.74541091918945],[3.837750434875602,50.7398300170899],[3.83439493179327,50.738712310791016],[3.828039646148682,50.738224029541065],[3.816521883010978,50.740734100341854],[3.808620214462337,50.74328231811517],[3.800738334655705,50.744804382324276],[3.789552211761418,50.745121002197315],[3.780943632125798,50.74398422241222],[3.774646759033203,50.746765136718864],[3.765259027481079,50.74974822998052],[3.762834548950252,50.75173950195324],[3.756891727447566,50.75850296020519],[3.749187469482479,50.76546859741211],[3.741571426391715,50.767433166503906],[3.736004352569694,50.76752471923834],[3.728482961654663,50.766975402832145],[3.721306800842399,50.76567459106451],[3.714914798736629,50.765254974365234],[3.70317196846014,50.76571273803716],[3.695001602172965,50.766769409179744],[3.682890176773128,50.767051696777344],[3.675873517990226,50.76648330688482],[3.67325496673584,50.76197433471674],[3.670523643493766,50.755298614501896],[3.664734601974544,50.74360656738281],[3.662740468978939,50.73586273193365],[3.660099983215389,50.73236465454113],[3.653437614441031,50.72822189331055],[3.647624969482422,50.722816467285156],[3.641566276550349,50.72508239746094],[3.63165116310131,50.72790145874029],[3.615384817123413,50.73113632202148],[3.609710216522274,50.73149490356445],[3.598320722579956,50.73096084594732],[3.59113335609436,50.72959136962902],[3.582044601440373,50.72891998291015],[3.574754476547298,50.72945404052729],[3.563195705413818,50.73179626464844],[3.546725273132324,50.736331939697315],[3.552826404571476,50.743202209472656],[3.559222459793148,50.75326156616211],[3.551618099212646,50.7586402893067],[3.545578002929744,50.76073837280279],[3.535263776779232,50.76070404052746],[3.528159618377799,50.75937652587902],[3.518664598465079,50.758644104003906],[3.502916097641105,50.75837707519537],[3.493236064910889,50.758689880371094],[3.486185789108276,50.75991058349621],[3.475764989852905,50.763759613037166],[3.466958761215267,50.76655960083008],[3.479607105255127,50.775749206543075],[3.494108676910457,50.78480148315441],[3.500387907028198,50.787807464599666],[3.512284517288265,50.79213333129883],[3.51787972450262,50.795040130615284],[3.521427392959595,50.79765701293945],[3.528620004653931,50.80490112304693],[3.522930145263672,50.80874633789073],[3.516711711883545,50.81115722656255],[3.511961460113468,50.811382293701165],[3.509353160858154,50.82957839965826],[3.506824493408317,50.835189819335994],[3.504664421081657,50.84167861938487],[3.501014709472769,50.84888458251953],[3.495841026306266,50.85496520996093],[3.490841627120972,50.856884002685604],[3.481169700622502,50.85874176025402],[3.469055175781307,50.861461639404354],[3.471566438674927,50.87055587768555],[3.47539210319519,50.8762245178222],[3.478472709655819,50.88344955444347],[3.479180335998535,50.89069747924816],[3.478520870208854,50.896652221679744],[3.475665807724112,50.903381347656364],[3.474529743194523,50.908794403076286],[3.467059373855591,50.90847396850586],[3.4585058689118,50.90703582763671],[3.450150489807129,50.90407943725586],[3.441758155822754,50.90348052978521],[3.436298370361328,50.90534210205078],[3.431842088699398,50.91150665283209],[3.433364152908325,50.91697311401373],[3.431846380233821,50.92284393310558],[3.439898014068717,50.92705154418951],[3.446749210357723,50.93232345581055],[3.453221321106071,50.94085693359381],[3.439320564270133,50.950866699218864],[3.436186790466309,50.955001831054744],[3.436664342880249,50.95898437500006],[3.438136577606201,50.96086502075207],[3.445031881332454,50.966850280761776],[3.446926593780517,50.9710311889649],[3.446246862411555,50.97539138793957],[3.440944910049438,50.98246383666986],[3.44014549255371,50.98596954345714],[3.440877676010131,50.988868713378906],[3.443192958831787,50.99167251586913],[3.449027776718196,50.99698257446289],[3.450838327407837,51.00016784667969],[3.451658964157161,51.004821777343864],[3.452330112457332,51.01750564575207],[3.445057392120418,51.02536010742193],[3.435009241104126,51.032367706298885],[3.439502477645874,51.03804016113292],[3.444549083709774,51.043231964111385],[3.446722745895499,51.04784011840832],[3.447038650512809,51.05143356323248],[3.445295572280997,51.05728912353527],[3.442203760147208,51.06017684936529],[3.436619520187321,51.06312561035162],[3.424633979797477,51.066650390625114],[3.414635419845581,51.0712623596192],[3.401599407196159,51.0766105651856],[3.379027128219718,51.08415985107433],[3.365215063095206,51.0911979675293],[3.361908912658748,51.09254455566411],[3.354609012603816,51.09391021728526],[3.341104030609245,51.09407424926758],[3.341007471084595,51.10090637207037],[3.346619367599544,51.10363006591808],[3.35968375206005,51.10864639282232],[3.368745088577271,51.114616394043026],[3.379059553146476,51.11843109130865],[3.390187025070247,51.126953125],[3.395617008209285,51.13319778442383],[3.398891925811824,51.13909149169933],[3.404642343521118,51.14805221557617],[3.406955480575618,51.15684127807617],[3.408618450164851,51.16123199462902],[3.404630899429378,51.16921615600586],[3.396519184112492,51.17944717407238],[3.38603854179388,51.1892547607423],[3.375759601593018,51.19785308837902],[3.385952949523926,51.204353332519645],[3.390052080154362,51.2091178894043],[3.391413450241089,51.211883544921875],[3.391578435897884,51.21510696411144],[3.390401840209961,51.217975616455185],[3.385424613952693,51.2213249206543],[3.38358736038208,51.22604751586914],[3.384623527526855,51.22925949096691],[3.388754844665584,51.23292541503912],[3.39943432807928,51.23830032348632],[3.402764797210693,51.24200820922863],[3.404037952423209,51.244625091552784],[3.40361309051525,51.248607635498104],[3.398437023162955,51.25441360473644],[3.392368078231812,51.25743865966796],[3.388452768325806,51.26164627075207],[3.387484312057552,51.26437377929693],[3.389363050460815,51.26802444458008],[3.391882658004761,51.26910400390625],[3.398949384689274,51.2701797485351],[3.406198024749756,51.26391220092779],[3.414113998413142,51.26354217529297],[3.423526048660221,51.260898590088004],[3.427510023117065,51.25605010986339],[3.430077075958309,51.25024032592784],[3.440856933593807,51.24597549438482],[3.456166028976497,51.244823455810604],[3.472290992736816,51.24559020996094],[3.505681991577205,51.24670028686529],[3.525037050247135,51.24884033203125],[3.516129970550594,51.28213882446289],[3.51396298408514,51.28893661499035],[3.526571035385189,51.29172897338873],[3.538702964782771,51.29042434692388],[3.543509006500301,51.293201446533196],[3.55243706703186,51.29200363159191],[3.555901050567627,51.29784393310541],[3.561028957367057,51.2983627319337],[3.573566913604736,51.29254913330078],[3.579180002212524,51.291778564453125],[3.58169603347784,51.29699707031255],[3.583389997482243,51.30203628540045],[3.591856956481934,51.3075942993164],[3.605448961258048,51.30337905883795],[3.620414018631095,51.29809951782238],[3.643162012100276,51.29162216186535],[3.666872024536132,51.292861938476676],[3.683489084243774,51.28731536865246],[3.693880081176871,51.283439636230526],[3.713711023330688,51.27448654174805],[3.725938081741446,51.2725944519043],[3.7349410057069,51.27412414550786],[3.74349403381342,51.273475646972656],[3.755398035049552,51.27392196655273],[3.761953115463314,51.270229339599716],[3.764750003814811,51.26506042480469],[3.770838975906486,51.26338577270519],[3.778034925460759,51.26444244384776],[3.799316883087158,51.25763320922863],[3.791049003601074,51.2462158203125],[3.789516925811824,51.2410659790039],[3.788707971572933,51.21524429321294],[3.808010101318302,51.20494461059576],[3.87630200386053,51.21354675292969],[3.884201049804801,51.2011451721192],[3.902096986770743,51.198947906494084],[3.924190998077449,51.210544586181754],[3.962486982345638,51.2160415649414],[3.999691963195914,51.241340637207145],[4.056982994079704,51.24804306030279],[4.10438394546503,51.26794052124035],[4.183481216430778,51.30553817749034],[4.217710018157959,51.33745193481445],[4.23164892196661,51.346614837646484],[4.23712778091425,51.35125732421875],[4.232576847076473,51.355682373046875]]]},"properties":{"ID_0":23,"ISO":"BE-VOV","NAME_0":"Belgium","ID_1":2,"NAME_1":"Vlaanderen","ID_2":4,"NAME_2":"Oost-Vlaanderen","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Flandres Oriental|Fiandra Orientale|Flandes Oriental|Flandre orientale|East Flanders|Ost Flandern"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.10510969161993,50.758533477783146],[5.105834007263297,50.753131866455135],[5.106197357177734,50.7447509765625],[5.108302593231315,50.73809814453125],[5.113169193267879,50.73161697387707],[5.115173816680908,50.72293090820324],[5.117445945739859,50.71783447265625],[5.105806827545279,50.711772918701286],[5.099183559417724,50.70936965942383],[5.092097282409725,50.7076873779298],[5.082873821258602,50.70748138427746],[5.075724601745662,50.70881271362304],[5.064538478851375,50.71358489990246],[5.061855316162223,50.71532821655279],[5.053294658660946,50.72243881225597],[5.05498027801525,50.7255516052246],[5.053678035736083,50.73149871826183],[5.052161216735897,50.734561920166016],[5.047698974609318,50.739940643310604],[5.039706707000732,50.74469375610357],[5.035048961639404,50.74598312377929],[5.025736331939697,50.74761199951172],[5.021385192871093,50.74995422363287],[5.01687574386591,50.753757476806754],[5.012925624847354,50.75926589965832],[5.009578227996826,50.761924743652344],[5.003680229187125,50.764533996582145],[4.998558044433651,50.7652206420899],[4.993411064147892,50.76504898071289],[4.980415344238281,50.76305770874035],[4.979208469390926,50.760498046875114],[4.97552680969244,50.75722122192383],[4.969390869140682,50.755298614501896],[4.955706596374512,50.75371551513672],[4.948094367980957,50.75164794921881],[4.938088893890438,50.74803543090831],[4.927473068237418,50.745876312255916],[4.914893150329704,50.74715805053711],[4.901350021362248,50.74710845947271],[4.895846843719596,50.746406555175895],[4.883149623870906,50.742980957031364],[4.874955654144344,50.74220657348638],[4.869906902313346,50.743003845214844],[4.864158630371207,50.74687194824219],[4.861736774444523,50.755481719970646],[4.859369754791373,50.758342742919865],[4.853955745697021,50.76092910766607],[4.841142177581844,50.76375579833996],[4.835648536682128,50.7660903930664],[4.829455852508659,50.77167129516613],[4.811083316803035,50.77828216552729],[4.807112216949463,50.78216934204113],[4.804755687713736,50.78908157348632],[4.793995857238769,50.7959938049317],[4.783741950988826,50.798316955566406],[4.767848491668815,50.80256271362316],[4.76027250289917,50.803123474121094],[4.752627372741756,50.80281829833989],[4.747405529022217,50.8018188476563],[4.738806724548397,50.79887390136713],[4.731377601623592,50.7971572875976],[4.722010612487793,50.79393768310547],[4.717753410339468,50.79086303710932],[4.70901441574108,50.78701019287121],[4.695964813232479,50.78709411621094],[4.682721138000602,50.787593841552734],[4.670207023620662,50.78954315185546],[4.653656005859374,50.790397644043026],[4.644430160522404,50.79135513305664],[4.641890525817928,50.78416824340826],[4.641470432281608,50.77949142456066],[4.642665863037053,50.77268218994146],[4.649514675140495,50.76000595092785],[4.650230407714844,50.75549316406255],[4.649428367614746,50.75231170654308],[4.647622585296745,50.75047302246094],[4.643256187439079,50.74915313720703],[4.636498451232853,50.748928070068416],[4.625986576080321,50.74949645996094],[4.614942073822135,50.74955368042003],[4.60916900634777,50.75039672851574],[4.6030592918396,50.75278091430675],[4.593039512634333,50.758533477783146],[4.583347320556584,50.75678253173828],[4.577959060668888,50.754119873046875],[4.57322359085083,50.748664855957145],[4.571495056152343,50.742385864257926],[4.551074504852295,50.74140167236334],[4.543877601623592,50.740390777588004],[4.537346839904785,50.73767852783203],[4.525667667388916,50.73090362548834],[4.518861293792838,50.72856140136719],[4.513241767883301,50.72798538208019],[4.501827716827336,50.72838211059582],[4.495254993438721,50.72942733764654],[4.491684913635368,50.73450469970709],[4.486939907073975,50.739681243896484],[4.484776496887206,50.746139526367244],[4.485112667083739,50.75324249267589],[4.474150180816707,50.75286102294933],[4.465657711029053,50.751804351806754],[4.460805416107291,50.74997711181646],[4.454031944274959,50.74592208862316],[4.447765827179012,50.74060821533209],[4.442982196807918,50.73791885375988],[4.434916973114014,50.729259490966854],[4.427441120147648,50.73216247558594],[4.4212903976441,50.73394393920898],[4.408713817596492,50.733856201171875],[4.401798725128231,50.7334098815918],[4.386927127838248,50.730792999267635],[4.377505779266357,50.72863769531261],[4.372883796691951,50.726303100585994],[4.37183141708374,50.72445678710949],[4.370806694030875,50.71719741821289],[4.368168830871696,50.71261978149413],[4.361153125762883,50.707607269287045],[4.353211402893179,50.71611022949219],[4.344246387481689,50.724086761474666],[4.341983318328857,50.72538375854492],[4.331549644470272,50.72922515869152],[4.331412315368766,50.725025177001946],[4.330114364624023,50.72098159790039],[4.327553272247428,50.71756362915039],[4.324934005737418,50.715625762939396],[4.316043853759822,50.712135314941406],[4.313173770904541,50.70775222778332],[4.303747177124137,50.6963996887207],[4.296099662780762,50.69619750976568],[4.284305572509766,50.69675827026367],[4.27754449844366,50.69792938232433],[4.272983074188232,50.6980857849121],[4.269011497497615,50.697330474853516],[4.264748573303166,50.69486618041992],[4.257224559783935,50.693557739257926],[4.244431018829289,50.692935943603516],[4.234911918640137,50.69150924682623],[4.227256298065186,50.69532775878906],[4.212384223938102,50.70107650756847],[4.205283641815299,50.703144073486385],[4.197759151458854,50.70420074462896],[4.180058479309139,50.70470428466797],[4.172605991363639,50.70609664916992],[4.164781570434684,50.70996093750011],[4.150462150573787,50.71960449218756],[4.144532680511475,50.719573974609375],[4.136658191680851,50.72115707397455],[4.125786781311092,50.72063064575195],[4.120630741119498,50.71947479248058],[4.113833904266471,50.71579742431646],[4.107629776000977,50.70991516113287],[4.09829044342041,50.70996093750011],[4.087227344513053,50.70893859863287],[4.079140663147086,50.70706558227539],[4.076900482177848,50.7051620483399],[4.06610536575323,50.69985961914073],[4.05841064453125,50.69717788696289],[4.044104099273625,50.695419311523494],[4.031211376190186,50.69221878051758],[4.026175498962459,50.69142150878912],[4.018486499786434,50.691055297851676],[3.998857736587581,50.69107055664073],[3.99121689796442,50.69064331054693],[3.98599720001215,50.689613342285156],[3.970531463623047,50.68425750732422],[3.965271711349488,50.68285369873058],[3.954535245895385,50.683494567871094],[3.943840265274048,50.68517684936529],[3.938312530517578,50.685470581054744],[3.917531728744507,50.6858520507813],[3.907498598098755,50.68703842163086],[3.904652118682861,50.69023132324224],[3.891222238540649,50.70253753662121],[3.883864641189518,50.70973968505865],[3.881517410278377,50.71303939819341],[3.880307197570914,50.71895599365229],[3.880507707595882,50.72628402709972],[3.881532430648747,50.73111724853527],[3.884006977081413,50.73691177368169],[3.892590045929068,50.73526763916021],[3.906505823135376,50.73405456542969],[3.915246486663761,50.73260116577143],[3.920488119125366,50.732402801513615],[3.927059412002677,50.73307418823248],[3.940354585647697,50.73553848266607],[3.948508262634277,50.737514495849716],[3.943493366241568,50.74139404296881],[3.933732271194458,50.744892120361385],[3.929718255996704,50.749275207519645],[3.928374052047843,50.75234222412103],[3.928164482116699,50.757003784179744],[3.929675102233829,50.76133728027344],[3.933359861373958,50.76609420776373],[3.939300298690796,50.77076721191412],[3.948070764541569,50.775386810302734],[3.955550193786621,50.77766036987305],[3.960383176803589,50.77833557128906],[3.965441703796444,50.77819824218756],[3.970697164535579,50.77659606933594],[3.97381401062006,50.77426910400385],[3.98045539855957,50.77186203002941],[3.984547853469849,50.77104568481451],[3.990963697433472,50.77113342285162],[4.005154132842961,50.77398300170893],[4.011229038238582,50.774566650390675],[4.019299030303955,50.773777008056754],[4.025604248046875,50.77409362792968],[4.045576095581055,50.77933883666992],[4.050070762634391,50.7848472595216],[4.060739994049186,50.79277038574213],[4.073676586151237,50.80380630493164],[4.080599784851074,50.812736511230526],[4.080935001373348,50.825820922851555],[4.078993320465201,50.83085632324224],[4.073387622833252,50.83289337158203],[4.063144683837947,50.83318328857433],[4.056893348693848,50.83452606201183],[4.054391860961857,50.83827972412115],[4.055192947387694,50.842555999755916],[4.058853626251221,50.84724807739258],[4.061762809753475,50.849906921386776],[4.07061672210699,50.856189727783146],[4.074045181274356,50.859119415283196],[4.078415393829403,50.867313385009766],[4.082449913024959,50.87328338623047],[4.090218067169246,50.88080215454096],[4.085982322692814,50.885520935058594],[4.081889152526799,50.892230987548935],[4.080770015716553,50.89691162109369],[4.080656051635742,50.90421676635753],[4.086257457733268,50.90524673461914],[4.092715263366813,50.90866470336914],[4.096945762634333,50.91412353515625],[4.097970008850154,50.91989898681646],[4.098210334777832,50.930057525634766],[4.100337982177791,50.93286514282221],[4.106604099273738,50.93447875976574],[4.11557054519659,50.93405532836914],[4.127593994140567,50.93045425415039],[4.14047479629528,50.92489242553711],[4.149717330932617,50.92016983032232],[4.152789592742919,50.92382431030279],[4.156063079834098,50.92974090576172],[4.160375595092773,50.935264587402344],[4.169786453247013,50.94295883178722],[4.167680740356559,50.94936370849604],[4.165952205658073,50.952678680420036],[4.162394046783504,50.95708847045893],[4.154804229736328,50.96347427368169],[4.152441978454646,50.96607208251959],[4.150999546051082,50.96940231323247],[4.149996280670223,50.974296569824325],[4.158428192138672,50.98222351074219],[4.165304660797176,50.989456176757805],[4.170099258422908,50.99526977539068],[4.178502559661979,50.99213027954113],[4.188358306884765,50.98960113525402],[4.193532466888484,50.988933563232536],[4.210656642913932,50.98761367797846],[4.225895881652945,50.99489593505871],[4.232768058776855,51.00117874145508],[4.237308979034424,51.00791549682623],[4.238165378570613,51.01258087158209],[4.238726615905762,51.02453231811529],[4.242400646209774,51.03449630737316],[4.243930816650447,51.0433235168457],[4.24867773056036,51.04213714599615],[4.253897666931152,51.04168319702154],[4.272442817688102,51.04518127441406],[4.278241157531737,51.04579544067383],[4.285531044006461,51.04591751098644],[4.292593002319335,51.045288085937614],[4.30253362655634,51.04311370849615],[4.31145715713501,51.039749145507926],[4.321650505065918,51.034000396728516],[4.34328222274786,51.03152465820324],[4.363585948944205,51.02767562866211],[4.371464729309025,51.02911376953124],[4.378576755523738,51.02935791015631],[4.384752750396785,51.02785491943365],[4.386933803558293,51.025039672851676],[4.387394428253174,51.021797180175895],[4.386740684509391,51.007350921630916],[4.398381233215332,51.005989074707145],[4.405846595764274,51.003730773925724],[4.414099216461295,51.000579833984425],[4.418742656707821,50.99977493286144],[4.424881458282471,51.000068664550895],[4.439062595367545,51.00221633911138],[4.447964668273926,51.00386810302746],[4.455388069152775,51.00415420532238],[4.4626784324646,51.00337219238281],[4.475311279296875,50.999786376953125],[4.481745719909725,50.9988632202149],[4.489727020263672,51.000057220458984],[4.492278575897273,51.002040863037166],[4.495145320892448,51.005817413330135],[4.497669219970816,51.01181030273443],[4.500732421875,51.016391754150504],[4.514202117919979,51.0150146484375],[4.519528865814323,51.014156341552734],[4.528186798095816,51.01134109497076],[4.533492565155086,51.00852966308594],[4.551182746887207,51.00477600097661],[4.563103199005241,51.0028915405274],[4.578203678131217,50.99840545654297],[4.585921764373836,50.99661254882824],[4.592682361602896,50.99661254882824],[4.601820468902531,50.99812698364258],[4.610688209533805,51.00738906860362],[4.618252277374324,51.01274871826171],[4.625666618347111,51.016113281250114],[4.633597850799617,51.01870727539068],[4.638265609741268,51.02391052246105],[4.64492130279541,51.02479171752941],[4.652591705322209,51.025154113769524],[4.664401531219539,51.025112152099666],[4.677803516387939,51.0246200561524],[4.685599327087516,51.02495574951172],[4.692750453949031,51.0244598388673],[4.697710990905875,51.0229606628418],[4.701743602752798,51.02060699462896],[4.705630779266413,51.01554107666027],[4.707288265228271,51.00265502929693],[4.717874050140381,51.00749588012695],[4.725505828857422,51.014617919921875],[4.729921817779541,51.0206184387207],[4.734666347503662,51.023300170898494],[4.739963054657039,51.0272827148438],[4.744027137756461,51.02912902832031],[4.753901481628418,51.03167343139642],[4.766013622284049,51.03528213500988],[4.770822525024414,51.039920806884766],[4.782798767089844,51.04388046264643],[4.795162200927791,51.039127349853516],[4.805189609527588,51.036708831787166],[4.8109774589538,51.03490066528332],[4.821960449218806,51.026073455810604],[4.829348564148063,51.018642425537216],[4.85106897354126,51.0183563232423],[4.860552310943547,51.0192985534668],[4.870729446411246,51.02258682250982],[4.879902362823486,51.025020599365234],[4.89150953292858,51.02965927124029],[4.896214008331413,51.031925201416016],[4.908148765564022,51.03871536254894],[4.913022518158073,51.040836334228516],[4.918544292450065,51.042060852050724],[4.930237770080566,51.043155670166016],[4.939480304718074,51.04490280151373],[4.945374965667838,51.04660415649414],[4.950301647186393,51.04724502563482],[4.957199573516788,51.0473747253418],[4.97057294845581,51.046470642089844],[4.983142375946102,51.044139862060604],[4.994604587554932,51.04140472412115],[4.999020099640006,51.03932571411133],[5.01378297805786,51.0351791381837],[5.022239208221435,51.0311164855957],[5.030416011810303,51.025836944580135],[5.045941352844237,51.024837493896484],[5.059502601623649,51.024665832519645],[5.067107677459717,51.024917602539055],[5.078582286834774,51.02720260620123],[5.085695743560848,51.02956008911144],[5.088820457458609,51.03119277954107],[5.090695381164664,51.03410339355469],[5.091146945953426,51.03741455078131],[5.09110593795782,51.04542160034179],[5.091957569122371,51.04854583740229],[5.096547126770075,51.05144119262701],[5.105188846588191,51.05206298828131],[5.122413158416748,51.05154418945324],[5.129860877990779,51.050769805908196],[5.136041641235465,51.04912948608404],[5.14860820770275,51.04145431518555],[5.156472206115723,51.035957336425724],[5.159650802612305,51.03295516967785],[5.166181564331112,51.0244598388673],[5.14924860000616,51.015998840332024],[5.144402980804443,51.014148712158196],[5.135479927063045,51.0117073059082],[5.129977226257267,51.00875854492193],[5.126358509063834,51.004798889160206],[5.125144481658992,50.99680328369151],[5.119160175323543,50.99598693847661],[5.108793258667049,50.99330520629894],[5.099818229675406,50.99031066894537],[5.088366985321045,50.98531341552739],[5.081507205963192,50.98340225219738],[5.077640056610107,50.980503082275504],[5.077085971832389,50.97744369506847],[5.078112602233887,50.974304199218864],[5.082726001739502,50.96910095214849],[5.084280014038086,50.96606063842768],[5.084508419036979,50.96277236938488],[5.082909584045467,50.958961486816406],[5.077712059021053,50.953987121582024],[5.062508106231689,50.94726943969732],[5.052103042602653,50.94455337524414],[5.050158023834229,50.93879699707037],[5.049398422241211,50.93117141723633],[5.054823398590088,50.92480087280285],[5.058685779571533,50.92193222045904],[5.065114021301383,50.919120788574276],[5.068372726440487,50.91852188110363],[5.078602313995304,50.91821289062506],[5.083992958068848,50.9129371643067],[5.088730812072697,50.90608978271484],[5.096708297729492,50.908695220947266],[5.10694789886486,50.91117095947277],[5.117744445800781,50.91218948364263],[5.129437446594352,50.91214370727539],[5.144743919372672,50.91128540039062],[5.157316684722957,50.90927886962902],[5.181466579437313,50.90855026245123],[5.189713001251164,50.907970428466854],[5.191988945007324,50.902225494384766],[5.192805290222225,50.89624404907221],[5.192530155181942,50.89030456542969],[5.190816879272518,50.88576126098627],[5.187740802764893,50.88277053833008],[5.182327747344971,50.87946319580084],[5.177734851837158,50.877468109130916],[5.16764068603527,50.874668121338004],[5.163393974304198,50.872325897216854],[5.158709049224854,50.86707305908209],[5.156763553619327,50.86115646362299],[5.156629085540885,50.85569000244152],[5.150712013244572,50.8451538085938],[5.144410610199031,50.836330413818466],[5.139229774475211,50.82438278198242],[5.138687610626278,50.820919036865234],[5.139581680297908,50.815177917480526],[5.141652584075985,50.8106079101563],[5.142440795898551,50.805835723876896],[5.142097473144645,50.80104827880865],[5.140206813812256,50.797134399414176],[5.136761188507194,50.79350662231445],[5.133152484893742,50.79191207885736],[5.120740890502929,50.78927230834961],[5.106708049774227,50.787342071533146],[5.113786697387695,50.77745056152349],[5.115010261535645,50.772171020507756],[5.113068580627498,50.767208099365284],[5.109626293182373,50.7629508972168],[5.10510969161993,50.758533477783146]],[[4.409863471984863,50.90990447998047],[4.399668216705379,50.91016769409173],[4.392726421356201,50.908329010009766],[4.389441013336238,50.90568923950201],[4.386989116668701,50.904918670654354],[4.375820159912223,50.8995246887207],[4.372054100036735,50.89813995361334],[4.367551326751823,50.89942932128906],[4.35874176025402,50.90055847167969],[4.342049598693847,50.90095520019531],[4.335988521575985,50.899810791015625],[4.323376655578727,50.89438247680664],[4.318715572357291,50.89363479614258],[4.313412189483643,50.89376831054693],[4.304419040680045,50.894775390625114],[4.302279472351131,50.88960266113287],[4.298538208007812,50.88824462890631],[4.299145221710262,50.885669708252],[4.304327964782829,50.880317687988224],[4.298773765564022,50.87794113159174],[4.291715145111084,50.87336349487298],[4.281398773193472,50.86608123779297],[4.279821872711295,50.862651824951286],[4.28102970123291,50.86017990112316],[4.284823417663516,50.85826873779302],[4.286975860595703,50.85549926757824],[4.285871028900203,50.85370254516613],[4.28579568862915,50.847034454345646],[4.283812046051139,50.842094421386776],[4.281164169311579,50.8398323059082],[4.276174068451041,50.839191436767685],[4.26992130279541,50.83740615844732],[4.261881828308219,50.837047576904354],[4.25678014755249,50.83584213256836],[4.25527286529541,50.83431243896496],[4.254514217376709,50.830875396728516],[4.25148534774786,50.82748413085932],[4.246231079101506,50.825004577636655],[4.243638038635254,50.821361541748104],[4.244327068328857,50.819755554199276],[4.250339984893856,50.81900787353521],[4.254380702972412,50.817588806152344],[4.257053375244141,50.81364059448253],[4.259866714477539,50.81290054321283],[4.266596317291203,50.81278610229498],[4.270914554596004,50.81179809570324],[4.274653434753475,50.80966949462896],[4.294890403747559,50.80799484252929],[4.298885822296086,50.80713653564453],[4.298927307128906,50.8037109375],[4.300967693328857,50.801437377929744],[4.308412075042725,50.80068969726568],[4.313343524932975,50.79682922363281],[4.320200443267765,50.790401458740234],[4.322649002075252,50.78912734985357],[4.323740482330379,50.78579330444347],[4.323226451873779,50.7816276550293],[4.321044921875,50.77606582641613],[4.334693431854305,50.775222778320256],[4.343227863311824,50.77518463134777],[4.34830904006958,50.774047851562614],[4.35862398147583,50.773490905761825],[4.367992401123161,50.77239990234375],[4.371043205261174,50.77133178710943],[4.372328758239746,50.76770401000976],[4.378083229064941,50.767379760742294],[4.390567302703971,50.77049636840832],[4.403519153594971,50.774047851562614],[4.4131054878236,50.77251052856445],[4.419411182403621,50.77408981323248],[4.428128242492676,50.77827835083013],[4.432633876800594,50.77976226806651],[4.444179534912108,50.78215789794922],[4.454495906829948,50.78291702270519],[4.454542636871451,50.78776168823242],[4.468224525451774,50.791538238525334],[4.471917629242,50.793884277343864],[4.471469879150447,50.796409606933594],[4.46480846405035,50.798908233642635],[4.457549571991024,50.802398681640675],[4.448098182678223,50.805908203125114],[4.44574594497692,50.80740737915039],[4.443684577941951,50.810771942138786],[4.443833827972411,50.81269073486334],[4.448300838470459,50.81738281249994],[4.456301689147892,50.819305419921875],[4.458478450775203,50.82339859008789],[4.459523200988826,50.829414367675774],[4.459332466125545,50.837879180908146],[4.457602500915527,50.84250640869151],[4.453137397766113,50.848007202148494],[4.44671106338501,50.852764129638615],[4.43998193740839,50.85678482055663],[4.43182992935192,50.8602752685548],[4.423851013183594,50.86118698120117],[4.423013210296631,50.86370468139654],[4.423589229583853,50.86847686767589],[4.425368785858268,50.872783660888615],[4.427641391754264,50.874492645263786],[4.435228347778377,50.87713623046875],[4.435351371765137,50.8798179626466],[4.42842340469366,50.888671875000114],[4.431397914886475,50.89186859130865],[4.431266784667969,50.89382171630871],[4.428552150726318,50.89598846435546],[4.428298950195369,50.900524139404354],[4.426921367645321,50.903301239013615],[4.42184686660778,50.90971374511719],[4.412505626678467,50.909236907958984],[4.409863471984863,50.90990447998047]]]},"properties":{"ID_0":23,"ISO":"BE-VBR","NAME_0":"Belgium","ID_1":2,"NAME_1":"Vlaanderen","ID_2":5,"NAME_2":"Vlaams Brabant","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Brabant Flamand|Brabante Flamenco|Brabante Flamengo|Flemish Brabant"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[3.398949384689274,51.2701797485351],[3.391882658004761,51.26910400390625],[3.389363050460815,51.26802444458008],[3.387484312057552,51.26437377929693],[3.388452768325806,51.26164627075207],[3.392368078231812,51.25743865966796],[3.398437023162955,51.25441360473644],[3.40361309051525,51.248607635498104],[3.404037952423209,51.244625091552784],[3.402764797210693,51.24200820922863],[3.39943432807928,51.23830032348632],[3.388754844665584,51.23292541503912],[3.384623527526855,51.22925949096691],[3.38358736038208,51.22604751586914],[3.385424613952693,51.2213249206543],[3.390401840209961,51.217975616455185],[3.391578435897884,51.21510696411144],[3.391413450241089,51.211883544921875],[3.390052080154362,51.2091178894043],[3.385952949523926,51.204353332519645],[3.375759601593018,51.19785308837902],[3.38603854179388,51.1892547607423],[3.396519184112492,51.17944717407238],[3.404630899429378,51.16921615600586],[3.408618450164851,51.16123199462902],[3.406955480575618,51.15684127807617],[3.404642343521118,51.14805221557617],[3.398891925811824,51.13909149169933],[3.395617008209285,51.13319778442383],[3.390187025070247,51.126953125],[3.379059553146476,51.11843109130865],[3.368745088577271,51.114616394043026],[3.35968375206005,51.10864639282232],[3.346619367599544,51.10363006591808],[3.341007471084595,51.10090637207037],[3.341104030609245,51.09407424926758],[3.354609012603816,51.09391021728526],[3.361908912658748,51.09254455566411],[3.365215063095206,51.0911979675293],[3.379027128219718,51.08415985107433],[3.401599407196159,51.0766105651856],[3.414635419845581,51.0712623596192],[3.424633979797477,51.066650390625114],[3.436619520187321,51.06312561035162],[3.442203760147208,51.06017684936529],[3.445295572280997,51.05728912353527],[3.447038650512809,51.05143356323248],[3.446722745895499,51.04784011840832],[3.444549083709774,51.043231964111385],[3.439502477645874,51.03804016113292],[3.435009241104126,51.032367706298885],[3.445057392120418,51.02536010742193],[3.452330112457332,51.01750564575207],[3.451658964157161,51.004821777343864],[3.450838327407837,51.00016784667969],[3.449027776718196,50.99698257446289],[3.443192958831787,50.99167251586913],[3.440877676010131,50.988868713378906],[3.44014549255371,50.98596954345714],[3.440944910049438,50.98246383666986],[3.446246862411555,50.97539138793957],[3.446926593780517,50.9710311889649],[3.445031881332454,50.966850280761776],[3.438136577606201,50.96086502075207],[3.436664342880249,50.95898437500006],[3.436186790466309,50.955001831054744],[3.439320564270133,50.950866699218864],[3.453221321106071,50.94085693359381],[3.446749210357723,50.93232345581055],[3.439898014068717,50.92705154418951],[3.431846380233821,50.92284393310558],[3.433364152908325,50.91697311401373],[3.431842088699398,50.91150665283209],[3.436298370361328,50.90534210205078],[3.441758155822754,50.90348052978521],[3.450150489807129,50.90407943725586],[3.4585058689118,50.90703582763671],[3.467059373855591,50.90847396850586],[3.474529743194523,50.908794403076286],[3.475665807724112,50.903381347656364],[3.478520870208854,50.896652221679744],[3.479180335998535,50.89069747924816],[3.478472709655819,50.88344955444347],[3.47539210319519,50.8762245178222],[3.471566438674927,50.87055587768555],[3.469055175781307,50.861461639404354],[3.481169700622502,50.85874176025402],[3.490841627120972,50.856884002685604],[3.495841026306266,50.85496520996093],[3.501014709472769,50.84888458251953],[3.504664421081657,50.84167861938487],[3.506824493408317,50.835189819335994],[3.509353160858154,50.82957839965826],[3.511961460113468,50.811382293701165],[3.516711711883545,50.81115722656255],[3.522930145263672,50.80874633789073],[3.528620004653931,50.80490112304693],[3.521427392959595,50.79765701293945],[3.51787972450262,50.795040130615284],[3.512284517288265,50.79213333129883],[3.500387907028198,50.787807464599666],[3.494108676910457,50.78480148315441],[3.479607105255127,50.775749206543075],[3.466958761215267,50.76655960083008],[3.460653781890812,50.76322555541998],[3.45584511756897,50.75935363769542],[3.453065156936646,50.75527954101568],[3.451753377914542,50.75111770629883],[3.422520160675049,50.74093246459972],[3.407669305801392,50.73357772827148],[3.401331424713192,50.73252868652344],[3.388000965118522,50.72742080688488],[3.383272886276302,50.72505569458013],[3.374774694442863,50.71945571899414],[3.36576318740839,50.711956024170036],[3.358429908752441,50.711948394775504],[3.351872682571411,50.71299743652355],[3.339621782302913,50.717689514160156],[3.331037044525203,50.72159957885742],[3.32637619972229,50.72328567504883],[3.319378852844181,50.726638793945305],[3.314960479736271,50.73846435546875],[3.310605287551994,50.745254516601676],[3.305145502090568,50.75217819213872],[3.301532506942863,50.755649566650504],[3.299050331115836,50.75678634643566],[3.294067382812614,50.75752639770519],[3.288691043853873,50.7574577331543],[3.276248216629142,50.755386352539],[3.267051458358821,50.754947662353516],[3.261599302291927,50.755409240722656],[3.235417604446468,50.75955200195324],[3.217006206512394,50.7599830627442],[3.209883928299007,50.75515365600586],[3.203958749771061,50.75261306762707],[3.196821451187134,50.75167846679693],[3.183972358703613,50.752162933349666],[3.181449413299561,50.751960754394474],[3.161602973938102,50.772262573242244],[3.147109031677303,50.78990554809576],[3.125772476196289,50.78777313232433],[3.112210750579834,50.79303359985363],[3.102701663971061,50.78094100952154],[3.090193510055599,50.77439117431646],[3.080667972564697,50.77286148071289],[3.058744907379264,50.780708312988395],[3.040682792663574,50.775566101074325],[3.036681413650513,50.77155685424805],[3.034640550613403,50.77537536621105],[3.022404909134025,50.78964233398443],[3.017090797424373,50.79483032226574],[3.013222694397029,50.80022811889654],[3.006856203079223,50.804584503173885],[2.998424530029354,50.802757263183594],[2.987828254699821,50.80121231079113],[2.979665517807007,50.799659729003906],[2.964593410492057,50.79898071289068],[2.953750133514404,50.79752349853527],[2.947418689727897,50.792739868164176],[2.943073034286556,50.78722381591808],[2.941703319549561,50.78378677368169],[2.940480709076041,50.7755584716798],[2.938666105270329,50.77214431762695],[2.93397068977356,50.76808547973633],[2.925010204315242,50.76249694824218],[2.918220281601066,50.76403045654297],[2.911999225616569,50.766254425048885],[2.905073881149405,50.76707839965831],[2.89196705818182,50.767024993896534],[2.883933067321891,50.76599884033209],[2.877074003219604,50.76219940185558],[2.871130466461182,50.76029586791992],[2.866974353790283,50.75715637207031],[2.85846567153942,50.75265502929693],[2.854761838913021,50.7501487731933],[2.852146625518913,50.747211456298885],[2.852480173110962,50.74223327636713],[2.856580257415771,50.73899459838873],[2.865291118621769,50.73514175415039],[2.869011163711548,50.732677459716854],[2.872096776962337,50.728641510009766],[2.872944116592407,50.72534561157221],[2.874473810196037,50.71072769165038],[2.872738361358756,50.70827484130853],[2.871256828308219,50.703144073486385],[2.870172977447623,50.70291519165044],[2.848567724227848,50.72175979614258],[2.813275337219295,50.71694946289068],[2.791224718093986,50.72752761840826],[2.78203272819519,50.7476921081543],[2.759502649307307,50.76252746582036],[2.760956048965511,50.76926040649414],[2.754308223724479,50.774604797363395],[2.738555908203181,50.780590057373104],[2.725020170211906,50.79572677612299],[2.723564863204899,50.80950164794933],[2.7198264598847,50.81205368041998],[2.682146310806274,50.81392669677746],[2.670175313949528,50.82103729248047],[2.662318468093872,50.81628799438487],[2.654068708419857,50.81325149536144],[2.634982824325562,50.8127555847168],[2.624824285507259,50.836063385009815],[2.616994857788142,50.84089279174815],[2.614633083343506,50.8476676940918],[2.599112749099731,50.849815368652344],[2.599248647689876,50.85335159301757],[2.611419916153011,50.86359786987316],[2.607325077056942,50.872592926025334],[2.608896017074699,50.896289825439446],[2.604734420776367,50.90641021728526],[2.606653213501033,50.91270065307617],[2.592096567153931,50.91594696044933],[2.590013027191105,50.919097900390625],[2.609007120132446,50.931026458740234],[2.630090236663818,50.94580841064453],[2.629709243774471,50.94933319091808],[2.606478214263916,50.98890686035156],[2.597444534301815,50.99246978759759],[2.579993009567318,51.00296401977545],[2.570643901824951,51.04454803466791],[2.569693803787175,51.0455055236817],[2.555355548858756,51.09192276000988],[2.579165935516471,51.09986114501947],[2.592499017715511,51.10458374023449],[2.60805606842041,51.111251831054794],[2.620276927948112,51.11569595336919],[2.621944904327336,51.11680603027355],[2.631387948989868,51.12014007568359],[2.634721994400081,51.12208175659174],[2.643610954284668,51.12597274780279],[2.650832891464347,51.12791824340825],[2.654721975326594,51.129581451416016],[2.676944971084651,51.135139465331974],[2.69750094413763,51.14152908325189],[2.703054904937687,51.144306182861385],[2.715833902359009,51.1495819091798],[2.725832939148006,51.15430450439459],[2.741388082504272,51.15819549560558],[2.748610973358268,51.1609725952149],[2.75583291053772,51.164306640625114],[2.764166116714591,51.16708374023443],[2.766943931579647,51.16875076293957],[2.775832891464233,51.17208480834961],[2.788048982620296,51.17709350585948],[2.805833101272697,51.184860229492244],[2.814721107482967,51.188194274902344],[2.817467927932853,51.18993377685547],[2.833611011505127,51.196804046630966],[2.834722995758056,51.196804046630966],[2.842499971389714,51.2006950378418],[2.850833892822322,51.20430374145507],[2.895833969116211,51.22486114501958],[2.903609991073608,51.22708511352545],[2.910832881927547,51.23125076293951],[2.910832881927547,51.23236083984386],[2.915277004241943,51.23458480834972],[2.924165964126587,51.237915039062614],[2.929166078567618,51.23764038085943],[2.936388969421387,51.240970611572266],[2.948611974716243,51.2451400756837],[2.957499980926571,51.24902725219732],[2.975276947021484,51.25569534301763],[2.976943969726562,51.25680541992199],[2.991945028304996,51.26291656494152],[2.99305510520935,51.26291656494152],[3.004722118377742,51.2684707641601],[3.007499933242798,51.26902770996105],[3.011944055557194,51.27152633666998],[3.017501115799064,51.273750305175895],[3.024167060852051,51.27541732788097],[3.025276899337882,51.27680587768555],[3.031944036483878,51.279861450195426],[3.034722089767513,51.28041839599614],[3.043054103851318,51.28374862670904],[3.045279026031494,51.28569412231457],[3.049722909927368,51.28680419921875],[3.058612108230705,51.29124832153332],[3.061944007873649,51.29208374023449],[3.064166069030762,51.294582366943416],[3.066943883895988,51.29486083984381],[3.073055028915348,51.29791641235363],[3.075277090072689,51.30125045776373],[3.084167957306022,51.30430603027355],[3.087500095367488,51.30430603027355],[3.10027909278881,51.30902862548834],[3.103610992431754,51.3095817565918],[3.108055114746207,51.311527252197266],[3.112499952316341,51.31208419799805],[3.113611936569328,51.3131942749024],[3.121387958526668,51.31541824340826],[3.128055095672664,51.316806793213004],[3.148610115051383,51.32208251953125],[3.154722929000968,51.322917938232365],[3.165277957916373,51.32624816894542],[3.173055887222347,51.32736206054699],[3.175832033157349,51.32875061035156],[3.181945085525626,51.33041763305664],[3.179723024368343,51.3345832824707],[3.175834894180412,51.33680725097656],[3.174165964126701,51.34152603149419],[3.169166088104305,51.34736251831055],[3.168056011199951,51.351806640625114],[3.169722080230827,51.35430526733404],[3.178054094314632,51.35319519042969],[3.179723024368343,51.35541534423839],[3.183054924011287,51.35708236694336],[3.185832977294865,51.35541534423839],[3.184166908264217,51.35319519042969],[3.176944971084595,51.349861145019645],[3.17527794837963,51.344581604003906],[3.180279016494807,51.343750000000114],[3.184722900390682,51.34736251831055],[3.192500114440918,51.34736251831055],[3.195833921432609,51.34930419921886],[3.201387882232666,51.34902954101568],[3.201387882232666,51.34569549560558],[3.196388006210327,51.344581604003906],[3.191943883895874,51.340694427490234],[3.194721937179679,51.340694427490234],[3.195833921432609,51.335140228271484],[3.193591117859,51.33402633666992],[3.194721937179679,51.329860687255916],[3.19861006736761,51.331806182861385],[3.196388006210327,51.33319473266613],[3.199166059494075,51.335140228271484],[3.199166059494075,51.33847045898432],[3.201944112777653,51.33902740478527],[3.20305705070507,51.34180450439459],[3.206388950348014,51.341251373291016],[3.211361885070914,51.33819580078131],[3.211945056915397,51.340972900390625],[3.216389894485587,51.34208297729498],[3.219722032547054,51.34013748168945],[3.223056077957096,51.34180450439459],[3.222500085830802,51.34486007690424],[3.224165916442928,51.34791564941412],[3.220834016799984,51.34902954101568],[3.215276956558341,51.35652923583996],[3.222500085830802,51.357639312744084],[3.225833892822379,51.35680389404296],[3.227499961853027,51.34930419921886],[3.226387977600041,51.3484725952149],[3.226387977600041,51.34236145019537],[3.228055953979492,51.34013748168945],[3.241389036178645,51.34236145019537],[3.248611927032471,51.34208297729498],[3.260278940200805,51.34597396850597],[3.26694488525402,51.34597396850597],[3.281388044357357,51.35041809082037],[3.286945104599055,51.35374832153325],[3.303056001663265,51.35680389404296],[3.314167022705192,51.35958480834961],[3.324721097946167,51.360137939453175],[3.329721927642822,51.36180496215831],[3.343055009841976,51.36513900756836],[3.355278015136832,51.366249084472706],[3.360781908035278,51.36763763427745],[3.368916034698486,51.36155319213873],[3.372791051864681,51.35726547241211],[3.37323093414318,51.35308074951177],[3.371982097625789,51.34898757934576],[3.376354932784977,51.345623016357365],[3.382611036300773,51.34207916259777],[3.386715888977051,51.33610153198242],[3.386981010437125,51.33063125610357],[3.376956939697209,51.32466125488287],[3.371838092804012,51.31604003906255],[3.376775026321468,51.29185104370117],[3.384325027465934,51.288509368896534],[3.382940053939876,51.28329849243164],[3.382550001144466,51.27726745605468],[3.394272089004459,51.27461624145519],[3.398949384689274,51.2701797485351]]],[[[3.365832090377807,51.366546630859375],[3.369369983673096,51.367084503173885],[3.37319207191473,51.36449050903332],[3.374182939529533,51.360084533691406],[3.365832090377807,51.366546630859375]]]]},"properties":{"ID_0":23,"ISO":"BE-VWV","NAME_0":"Belgium","ID_1":2,"NAME_1":"Vlaanderen","ID_2":6,"NAME_2":"West-Vlaanderen","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Fiandra Occidentale|Flandes Occidental|Flandre occidentale|Flandres Ocidental|West Flandern|West Flanders"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.025736331939697,50.74761199951172],[5.022274971008301,50.740852355957145],[5.016911983490047,50.73458099365246],[5.015263557434081,50.731510162353516],[5.014392375946102,50.72587966918957],[5.014756202697754,50.7171249389649],[5.017655372619685,50.71224212646495],[5.019616603851318,50.699180603027344],[5.017429828643799,50.69243240356451],[5.014098644256649,50.68478775024413],[5.01349925994873,50.679988861083984],[5.013099670410213,50.66648864746105],[5.01200628280651,50.66176605224609],[5.001780509948843,50.64884185791021],[4.997304916381836,50.64536666870123],[4.990897178649901,50.641307830810604],[4.975744724273738,50.64482879638672],[4.971055507659969,50.64504241943365],[4.966705799102897,50.64415740966808],[4.963919162750301,50.64240264892584],[4.955821514129696,50.635490417480526],[4.948588371276799,50.6261558532716],[4.941232204437256,50.625701904296875],[4.914490699768123,50.621200561523494],[4.909219264984131,50.619411468505916],[4.904648303985653,50.61585235595709],[4.899568557739257,50.61273193359375],[4.895470142364502,50.610988616943416],[4.88788461685192,50.60875701904297],[4.867044925689697,50.60577392578131],[4.858005046844539,50.60569381713873],[4.848811149597282,50.60637283325195],[4.834124565124625,50.6050758361817],[4.823665618896598,50.603435516357536],[4.816554546356201,50.603176116943416],[4.797270774841309,50.60321044921875],[4.790669918060303,50.60276794433605],[4.779115200042725,50.6004257202149],[4.772855758666992,50.59829711914068],[4.762670040130672,50.59263610839855],[4.756371021270751,50.59053421020507],[4.748872756958008,50.59134674072277],[4.743273258209229,50.596889495849666],[4.734898567199764,50.60874557495123],[4.723093986511344,50.60494613647472],[4.719387531280574,50.6027221679688],[4.713971138000602,50.59809875488281],[4.710159778595084,50.595699310302734],[4.705554485321045,50.59389114379894],[4.69688892364502,50.593303680420036],[4.691704750061092,50.59421539306635],[4.675240039825552,50.5999488830567],[4.670643329620361,50.600440979003956],[4.665044307708797,50.600017547607536],[4.6626815795899,50.59701919555664],[4.662203311920166,50.593120574951286],[4.66374063491827,50.59029006958019],[4.668494701385555,50.58523559570324],[4.672712326049805,50.57941055297863],[4.676993370056209,50.56889343261719],[4.676634788513297,50.566009521484375],[4.672809123992977,50.563148498535156],[4.661992073059082,50.56091308593756],[4.656463146209774,50.560424804687614],[4.646832466125601,50.56032943725597],[4.635144710540884,50.56060409545898],[4.618077278137321,50.56226730346674],[4.618427753448486,50.564117431640625],[4.615025520324821,50.565616607666065],[4.611181735992432,50.56536102294933],[4.604893207550106,50.56188964843756],[4.595211029052734,50.55885314941412],[4.579463481903076,50.5513076782226],[4.581291675567627,50.54666900634777],[4.582718372345028,50.53672409057617],[4.566174507141227,50.536285400390625],[4.558616161346492,50.53558349609381],[4.545535087585563,50.533039093017685],[4.534244537353572,50.5304222106933],[4.522701263427678,50.526775360107536],[4.511967182159423,50.52590942382824],[4.506868362426758,50.530094146728516],[4.50313854217535,50.53435897827154],[4.499301910400391,50.53580093383789],[4.493356704711971,50.53551864624035],[4.485811710357666,50.5327262878418],[4.478561878204403,50.53209304809581],[4.474122524261475,50.53455734252941],[4.471581459045467,50.541225433349666],[4.46662425994873,50.54824829101557],[4.45870399475109,50.551914215088004],[4.450217723846435,50.554676055908196],[4.446880340576229,50.556949615478516],[4.441715240478572,50.558639526367244],[4.428278923034668,50.56074523925787],[4.421924114227295,50.56089782714844],[4.407921314239502,50.559181213378906],[4.389196395874137,50.55881500244146],[4.376518249511718,50.558197021484375],[4.357034206390381,50.55430603027355],[4.344854831695669,50.55411911010742],[4.338714122772274,50.56009292602545],[4.332463741302603,50.563663482666016],[4.317730426788444,50.56782913208008],[4.312020301818961,50.570316314697266],[4.30535984039318,50.57450485229492],[4.298953533172664,50.57995986938488],[4.29202842712408,50.58372879028326],[4.286014556884766,50.58804321289068],[4.283419132232666,50.58895874023443],[4.273616313934383,50.5909805297851],[4.264305591583252,50.59231567382807],[4.259270668029785,50.59457778930669],[4.258206367492676,50.59647369384777],[4.257777214050292,50.601802825927734],[4.258456707000732,50.60860061645519],[4.260599613189754,50.61453247070318],[4.253330230713004,50.61493301391601],[4.244671344757194,50.61623764038097],[4.231972694396973,50.617485046386655],[4.214859485626164,50.62257766723633],[4.211529254913273,50.62463760375971],[4.210022449493464,50.630069732666065],[4.210705757141113,50.63478088378912],[4.213285446167049,50.640407562255916],[4.213986873626823,50.64475250244152],[4.211369514465389,50.65013885498047],[4.201424598693791,50.659351348876896],[4.194995880127067,50.65840530395502],[4.18119573593151,50.657829284668026],[4.165170669555778,50.64737701416027],[4.160418033599854,50.64365768432628],[4.155512809753361,50.63713073730463],[4.153220653534049,50.631072998046875],[4.150781631469727,50.6286735534668],[4.145913124084586,50.62672042846691],[4.140733718872127,50.62547683715825],[4.135118007660026,50.62503433227539],[4.127446651458739,50.62517166137707],[4.121836662292537,50.62588882446295],[4.114275932312125,50.62817382812494],[4.110434055328483,50.6299934387207],[4.106410980224666,50.63320541381847],[4.098176002502498,50.64325714111328],[4.090909957885856,50.65326690673834],[4.08927583694458,50.657840728759766],[4.088926315307674,50.665004730224666],[4.091412544250601,50.66720962524413],[4.095609188079834,50.67262268066406],[4.096410274505615,50.67745971679693],[4.094264984130973,50.682846069335994],[4.093515396118164,50.690853118896484],[4.094167232513485,50.69377517700201],[4.098494529724178,50.700359344482365],[4.107629776000977,50.70991516113287],[4.113833904266471,50.71579742431646],[4.120630741119498,50.71947479248058],[4.125786781311092,50.72063064575195],[4.136658191680851,50.72115707397455],[4.144532680511475,50.719573974609375],[4.150462150573787,50.71960449218756],[4.164781570434684,50.70996093750011],[4.172605991363639,50.70609664916992],[4.180058479309139,50.70470428466797],[4.197759151458854,50.70420074462896],[4.205283641815299,50.703144073486385],[4.212384223938102,50.70107650756847],[4.227256298065186,50.69532775878906],[4.234911918640137,50.69150924682623],[4.244431018829289,50.692935943603516],[4.257224559783935,50.693557739257926],[4.264748573303166,50.69486618041992],[4.269011497497615,50.697330474853516],[4.272983074188232,50.6980857849121],[4.27754449844366,50.69792938232433],[4.284305572509766,50.69675827026367],[4.296099662780762,50.69619750976568],[4.303747177124137,50.6963996887207],[4.313173770904541,50.70775222778332],[4.316043853759822,50.712135314941406],[4.324934005737418,50.715625762939396],[4.327553272247428,50.71756362915039],[4.330114364624023,50.72098159790039],[4.331412315368766,50.725025177001946],[4.331549644470272,50.72922515869152],[4.341983318328857,50.72538375854492],[4.344246387481689,50.724086761474666],[4.353211402893179,50.71611022949219],[4.361153125762883,50.707607269287045],[4.368168830871696,50.71261978149413],[4.370806694030875,50.71719741821289],[4.37183141708374,50.72445678710949],[4.372883796691951,50.726303100585994],[4.377505779266357,50.72863769531261],[4.386927127838248,50.730792999267635],[4.401798725128231,50.7334098815918],[4.408713817596492,50.733856201171875],[4.4212903976441,50.73394393920898],[4.427441120147648,50.73216247558594],[4.434916973114014,50.729259490966854],[4.442982196807918,50.73791885375988],[4.447765827179012,50.74060821533209],[4.454031944274959,50.74592208862316],[4.460805416107291,50.74997711181646],[4.465657711029053,50.751804351806754],[4.474150180816707,50.75286102294933],[4.485112667083739,50.75324249267589],[4.484776496887206,50.746139526367244],[4.486939907073975,50.739681243896484],[4.491684913635368,50.73450469970709],[4.495254993438721,50.72942733764654],[4.501827716827336,50.72838211059582],[4.513241767883301,50.72798538208019],[4.518861293792838,50.72856140136719],[4.525667667388916,50.73090362548834],[4.537346839904785,50.73767852783203],[4.543877601623592,50.740390777588004],[4.551074504852295,50.74140167236334],[4.571495056152343,50.742385864257926],[4.57322359085083,50.748664855957145],[4.577959060668888,50.754119873046875],[4.583347320556584,50.75678253173828],[4.593039512634333,50.758533477783146],[4.6030592918396,50.75278091430675],[4.60916900634777,50.75039672851574],[4.614942073822135,50.74955368042003],[4.625986576080321,50.74949645996094],[4.636498451232853,50.748928070068416],[4.643256187439079,50.74915313720703],[4.647622585296745,50.75047302246094],[4.649428367614746,50.75231170654308],[4.650230407714844,50.75549316406255],[4.649514675140495,50.76000595092785],[4.642665863037053,50.77268218994146],[4.641470432281608,50.77949142456066],[4.641890525817928,50.78416824340826],[4.644430160522404,50.79135513305664],[4.653656005859374,50.790397644043026],[4.670207023620662,50.78954315185546],[4.682721138000602,50.787593841552734],[4.695964813232479,50.78709411621094],[4.70901441574108,50.78701019287121],[4.717753410339468,50.79086303710932],[4.722010612487793,50.79393768310547],[4.731377601623592,50.7971572875976],[4.738806724548397,50.79887390136713],[4.747405529022217,50.8018188476563],[4.752627372741756,50.80281829833989],[4.76027250289917,50.803123474121094],[4.767848491668815,50.80256271362316],[4.783741950988826,50.798316955566406],[4.793995857238769,50.7959938049317],[4.804755687713736,50.78908157348632],[4.807112216949463,50.78216934204113],[4.811083316803035,50.77828216552729],[4.829455852508659,50.77167129516613],[4.835648536682128,50.7660903930664],[4.841142177581844,50.76375579833996],[4.853955745697021,50.76092910766607],[4.859369754791373,50.758342742919865],[4.861736774444523,50.755481719970646],[4.864158630371207,50.74687194824219],[4.869906902313346,50.743003845214844],[4.874955654144344,50.74220657348638],[4.883149623870906,50.742980957031364],[4.895846843719596,50.746406555175895],[4.901350021362248,50.74710845947271],[4.914893150329704,50.74715805053711],[4.927473068237418,50.745876312255916],[4.938088893890438,50.74803543090831],[4.948094367980957,50.75164794921881],[4.955706596374512,50.75371551513672],[4.969390869140682,50.755298614501896],[4.97552680969244,50.75722122192383],[4.979208469390926,50.760498046875114],[4.980415344238281,50.76305770874035],[4.993411064147892,50.76504898071289],[4.998558044433651,50.7652206420899],[5.003680229187125,50.764533996582145],[5.009578227996826,50.761924743652344],[5.012925624847354,50.75926589965832],[5.01687574386591,50.753757476806754],[5.021385192871093,50.74995422363287],[5.025736331939697,50.74761199951172]]]},"properties":{"ID_0":23,"ISO":"BE-WBR","NAME_0":"Belgium","ID_1":3,"NAME_1":"Wallonie","ID_2":7,"NAME_2":"Brabant Wallon","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Waals Brabant|Walloon Brabant"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[3.884006977081413,50.73691177368169],[3.881532430648747,50.73111724853527],[3.880507707595882,50.72628402709972],[3.880307197570914,50.71895599365229],[3.881517410278377,50.71303939819341],[3.883864641189518,50.70973968505865],[3.891222238540649,50.70253753662121],[3.904652118682861,50.69023132324224],[3.907498598098755,50.68703842163086],[3.917531728744507,50.6858520507813],[3.938312530517578,50.685470581054744],[3.943840265274048,50.68517684936529],[3.954535245895385,50.683494567871094],[3.965271711349488,50.68285369873058],[3.970531463623047,50.68425750732422],[3.98599720001215,50.689613342285156],[3.99121689796442,50.69064331054693],[3.998857736587581,50.69107055664073],[4.018486499786434,50.691055297851676],[4.026175498962459,50.69142150878912],[4.031211376190186,50.69221878051758],[4.044104099273625,50.695419311523494],[4.05841064453125,50.69717788696289],[4.06610536575323,50.69985961914073],[4.076900482177848,50.7051620483399],[4.079140663147086,50.70706558227539],[4.087227344513053,50.70893859863287],[4.09829044342041,50.70996093750011],[4.107629776000977,50.70991516113287],[4.098494529724178,50.700359344482365],[4.094167232513485,50.69377517700201],[4.093515396118164,50.690853118896484],[4.094264984130973,50.682846069335994],[4.096410274505615,50.67745971679693],[4.095609188079834,50.67262268066406],[4.091412544250601,50.66720962524413],[4.088926315307674,50.665004730224666],[4.08927583694458,50.657840728759766],[4.090909957885856,50.65326690673834],[4.098176002502498,50.64325714111328],[4.106410980224666,50.63320541381847],[4.110434055328483,50.6299934387207],[4.114275932312125,50.62817382812494],[4.121836662292537,50.62588882446295],[4.127446651458739,50.62517166137707],[4.135118007660026,50.62503433227539],[4.140733718872127,50.62547683715825],[4.145913124084586,50.62672042846691],[4.150781631469727,50.6286735534668],[4.153220653534049,50.631072998046875],[4.155512809753361,50.63713073730463],[4.160418033599854,50.64365768432628],[4.165170669555778,50.64737701416027],[4.18119573593151,50.657829284668026],[4.194995880127067,50.65840530395502],[4.201424598693791,50.659351348876896],[4.211369514465389,50.65013885498047],[4.213986873626823,50.64475250244152],[4.213285446167049,50.640407562255916],[4.210705757141113,50.63478088378912],[4.210022449493464,50.630069732666065],[4.211529254913273,50.62463760375971],[4.214859485626164,50.62257766723633],[4.231972694396973,50.617485046386655],[4.244671344757194,50.61623764038097],[4.253330230713004,50.61493301391601],[4.260599613189754,50.61453247070318],[4.258456707000732,50.60860061645519],[4.257777214050292,50.601802825927734],[4.258206367492676,50.59647369384777],[4.259270668029785,50.59457778930669],[4.264305591583252,50.59231567382807],[4.273616313934383,50.5909805297851],[4.283419132232666,50.58895874023443],[4.286014556884766,50.58804321289068],[4.29202842712408,50.58372879028326],[4.298953533172664,50.57995986938488],[4.30535984039318,50.57450485229492],[4.312020301818961,50.570316314697266],[4.317730426788444,50.56782913208008],[4.332463741302603,50.563663482666016],[4.338714122772274,50.56009292602545],[4.344854831695669,50.55411911010742],[4.357034206390381,50.55430603027355],[4.376518249511718,50.558197021484375],[4.389196395874137,50.55881500244146],[4.407921314239502,50.559181213378906],[4.421924114227295,50.56089782714844],[4.428278923034668,50.56074523925787],[4.441715240478572,50.558639526367244],[4.446880340576229,50.556949615478516],[4.450217723846435,50.554676055908196],[4.45870399475109,50.551914215088004],[4.46662425994873,50.54824829101557],[4.471581459045467,50.541225433349666],[4.474122524261475,50.53455734252941],[4.478561878204403,50.53209304809581],[4.485811710357666,50.5327262878418],[4.493356704711971,50.53551864624035],[4.499301910400391,50.53580093383789],[4.50313854217535,50.53435897827154],[4.506868362426758,50.530094146728516],[4.511967182159423,50.52590942382824],[4.522701263427678,50.526775360107536],[4.534244537353572,50.5304222106933],[4.545535087585563,50.533039093017685],[4.558616161346492,50.53558349609381],[4.566174507141227,50.536285400390625],[4.582718372345028,50.53672409057617],[4.578056335449332,50.531257629394645],[4.570760726928824,50.52461624145513],[4.564922809600944,50.517322540283196],[4.561088562011832,50.510074615478516],[4.560025691986027,50.50659561157226],[4.559164047241325,50.4946174621582],[4.560823917388973,50.48932266235357],[4.563318252563477,50.4877662658692],[4.569901943206787,50.4868736267091],[4.57793569564825,50.4879035949707],[4.584355831146297,50.49145889282238],[4.588681221008414,50.49188613891596],[4.594860076904297,50.49040985107433],[4.598659515380859,50.48805618286144],[4.602882862091064,50.4828262329101],[4.601460933685303,50.47496795654308],[4.597136020660457,50.46677398681652],[4.59100675582897,50.457923889160206],[4.587961196899471,50.447505950927734],[4.588118553161678,50.440975189208984],[4.584446430206299,50.43452835083008],[4.609135627746582,50.432071685791065],[4.613696575164852,50.430828094482536],[4.617339134216422,50.42851638793957],[4.618886470794735,50.42646026611334],[4.619794368743952,50.421844482421875],[4.618285655975342,50.4146957397462],[4.609344482421989,50.39909362792963],[4.604897975921745,50.394111633300895],[4.603271007537899,50.39128112792963],[4.603039264679012,50.38831329345709],[4.604900836944637,50.38293075561535],[4.605379104614371,50.37836074829113],[4.604414939880371,50.37377548217785],[4.597908973693961,50.36178207397472],[4.596727371215877,50.35315322875982],[4.597183227539006,50.34453582763683],[4.600512504577637,50.33530044555658],[4.600812911987305,50.329292297363224],[4.5995774269104,50.324565887451286],[4.595333576202393,50.317977905273544],[4.575077533721923,50.31703186035167],[4.561775684356803,50.31449127197271],[4.553505420684871,50.31257247924816],[4.540560245513916,50.310272216796875],[4.535837173461914,50.31018829345714],[4.524686336517447,50.3110084533692],[4.518175125122127,50.31887054443364],[4.510960578918457,50.3232192993164],[4.504807949066105,50.325122833252],[4.500091075897274,50.32588577270513],[4.4931321144104,50.32608032226562],[4.485584735870474,50.32569885253906],[4.4830002784729,50.31981277465832],[4.477860927581901,50.31339263916021],[4.475190162658691,50.30727386474614],[4.470005035400504,50.30313873291027],[4.465182304382381,50.30199432373058],[4.460053920745906,50.301925659179744],[4.449708461761475,50.303726196289006],[4.437129974365291,50.305274963378906],[4.430087089538631,50.30675888061529],[4.421182632446231,50.30746078491211],[4.416154384613037,50.30694961547857],[4.411571502685604,50.304355621338004],[4.405935287475642,50.293903350830014],[4.402159214019775,50.29049682617193],[4.398056983947868,50.28877639770508],[4.383900165557975,50.285041809081974],[4.376698493957576,50.28261947631847],[4.370102882385254,50.277580261230575],[4.362391948699951,50.27368927001959],[4.357057571411246,50.2725181579591],[4.346035957336483,50.27172851562499],[4.340666770935059,50.270889282226676],[4.336028575897274,50.26922607421875],[4.329781532287711,50.26607894897461],[4.319901466369629,50.262176513671875],[4.309113502502498,50.25743865966797],[4.304174423217773,50.25156402587896],[4.304061412811392,50.24752426147472],[4.307253837585506,50.24347305297857],[4.311021327972355,50.240852355957024],[4.318380355835018,50.23719787597656],[4.341716289520377,50.229736328125],[4.345670700073299,50.22918701171875],[4.351780891418571,50.22957611083984],[4.357593536377009,50.23203659057623],[4.3608660697937,50.2346420288087],[4.364596366882324,50.24002075195307],[4.370472431182861,50.243671417236385],[4.375470161437931,50.24444198608404],[4.384006977081299,50.243316650390625],[4.39186620712286,50.240074157714844],[4.410700798034782,50.23302078247082],[4.409997463226432,50.222316741943416],[4.4070019721986,50.21436309814458],[4.405948162078914,50.204803466796875],[4.406074523925781,50.18765258789068],[4.404869556427001,50.18177032470709],[4.402405738830679,50.178672790527344],[4.398855209350643,50.17614364624029],[4.390590190887565,50.172328948974666],[4.38631534576416,50.16932296752941],[4.378743171691895,50.1654167175293],[4.376250743865967,50.162532806396484],[4.375375270843563,50.159122467041016],[4.375771045684871,50.155643463134766],[4.377694606781063,50.152374267578175],[4.381018638610954,50.14970779418939],[4.389312744140624,50.14542007446295],[4.391487121582088,50.143589019775504],[4.395810604095459,50.136337280273494],[4.402402400970515,50.123310089111385],[4.405216693878231,50.11898803710943],[4.403716564178467,50.11230850219737],[4.398709774017334,50.104042053222656],[4.400582313537597,50.09574508666992],[4.400547504424992,50.075740814208984],[4.401334762573299,50.0696754455567],[4.405756473541317,50.06025314331049],[4.409865856170711,50.053115844726555],[4.416442871093807,50.04484176635742],[4.421065330505485,50.03277587890631],[4.422223091125488,50.01876831054682],[4.42480373382574,50.01198959350597],[4.425655841827449,50.00249862670898],[4.425337314605827,49.98793411254894],[4.4261536598205,49.98204421997081],[4.428246974945124,49.97840118408203],[4.431720256805477,49.97441864013677],[4.436538219451904,49.97109222412104],[4.444722175598145,49.9670791625976],[4.449770927429313,49.96104431152344],[4.450994491577262,49.955272674560604],[4.450855731964225,49.93864822387701],[4.445803642272892,49.93716812133795],[4.41921043395996,49.94644546508789],[4.399174213409537,49.948402404785156],[4.388480186462516,49.94886398315424],[4.380828857421989,49.95372009277355],[4.349362373352051,49.952232360839844],[4.335185050964298,49.9627456665039],[4.319253921508846,49.96438980102545],[4.310615062713623,49.968570709228516],[4.290488719940242,49.964157104492244],[4.258202075958252,49.96399307250976],[4.233068466186523,49.95782470703131],[4.197356224060172,49.954486846923885],[4.195446491241569,49.96744918823248],[4.173917293548698,49.976039886474666],[4.154144287109375,49.975131988525504],[4.140979290008545,49.978805541992244],[4.156285285949821,49.98721313476568],[4.162405967712459,49.99655151367193],[4.16101694107067,49.99980545043945],[4.14718866348278,50.0040168762207],[4.135424137115478,50.01518249511718],[4.137324333190975,50.02178192138683],[4.160781383514461,50.04752349853527],[4.171064376831055,50.047004699706974],[4.19062185287487,50.04942321777355],[4.201024055481014,50.056900024414176],[4.224308967590389,50.06438827514654],[4.230134010314997,50.06984329223633],[4.227538585662898,50.079677581787216],[4.205374717712516,50.097988128662216],[4.204636096954403,50.10453414916992],[4.197657585143986,50.10944366455084],[4.203383445739803,50.115314483642635],[4.19524717330944,50.13459777832031],[4.163118839263973,50.13505935668945],[4.146143436431942,50.12895965576183],[4.126905918121338,50.134902954101676],[4.140635967254696,50.15370941162115],[4.153213977813834,50.160373687744254],[4.155059814453068,50.16713714599621],[4.15004491806036,50.17659378051769],[4.156581878662166,50.186061859130916],[4.156247138977108,50.1928367614746],[4.16052436828619,50.19819259643555],[4.150866508483944,50.213417053222706],[4.16592454910284,50.21508407592784],[4.173114776611328,50.22181320190424],[4.183380603790397,50.23214721679698],[4.199061870575065,50.240455627441406],[4.204553604125977,50.2405738830567],[4.220833778381461,50.25430297851574],[4.205972194671631,50.27251052856457],[4.184491157531852,50.2752304077149],[4.17957592010498,50.27677154541021],[4.170005798339901,50.285610198974666],[4.160448074340763,50.28590393066412],[4.152060031890811,50.2769660949707],[4.166818141937199,50.267070770263665],[4.163658142089844,50.25728988647455],[4.134955883026123,50.259086608886825],[4.138359546661491,50.26155853271496],[4.133791923522949,50.27402877807628],[4.124011516571045,50.27276229858398],[4.125055313110408,50.289466857910156],[4.118358612060547,50.302268981933594],[4.108440399169922,50.30389404296886],[4.099338531494197,50.312137603759815],[4.07916355133051,50.3096656799317],[4.077095508575553,50.320522308349666],[4.052173137664851,50.33866882324219],[4.037613391876334,50.34290313720709],[4.02521991729742,50.35789489746088],[4.013691902160645,50.35133743286133],[3.993216991424561,50.34770584106445],[3.986870288848934,50.34245681762701],[3.9721040725708,50.34650039672863],[3.967360258102417,50.340576171875],[3.967141151428279,50.347454071045036],[3.961807012557983,50.34807968139643],[3.919800996780396,50.332183837890625],[3.900850057601929,50.32745742797863],[3.886059761047363,50.327060699463004],[3.888876199722347,50.33328247070324],[3.885758399963322,50.33948135375988],[3.870705604553223,50.338699340820305],[3.857562065124625,50.347896575927734],[3.84014987945568,50.35386276245117],[3.825049400329704,50.35208511352533],[3.821792125701904,50.345947265625],[3.81165862083435,50.34488296508789],[3.814203739166259,50.35132217407221],[3.805724620819091,50.35462188720714],[3.796579837799186,50.35136795043945],[3.781047344207764,50.353279113769645],[3.765481948852539,50.35124206542969],[3.763554096221924,50.34808349609381],[3.742773294448909,50.348075866699276],[3.735054016113224,50.33925247192394],[3.734504461288509,50.33233261108404],[3.729810714721793,50.326873779296875],[3.731720447540397,50.31190109252929],[3.726564407348633,50.310821533203125],[3.714352369308472,50.3167839050294],[3.716778039932307,50.307868957519645],[3.710424423217773,50.303184509277344],[3.690841197967643,50.31817245483398],[3.684924602508545,50.3275604248048],[3.67367601394659,50.33493041992193],[3.675797462463378,50.3414764404298],[3.665248632431144,50.34902954101568],[3.666476488113517,50.36233520507812],[3.657830238342228,50.37057876586908],[3.672951936721744,50.38906478881847],[3.673437356948966,50.409648895263786],[3.668833494186515,50.436450958251946],[3.660364866256714,50.44450378417969],[3.660986185073909,50.45759201049804],[3.65394997596735,50.462600708007926],[3.643648862838802,50.46316528320324],[3.629447698593196,50.48139953613286],[3.607936859130802,50.49653244018555],[3.583316326141414,50.4910163879395],[3.568602323532218,50.500114440918026],[3.55863356590271,50.498416900634766],[3.521455526351929,50.49460220336914],[3.507428884506226,50.48932266235357],[3.502336025238037,50.48796844482433],[3.498915910720939,50.49071884155285],[3.497591972351131,50.497692108154354],[3.49887824058527,50.501113891601676],[3.517192840576172,50.51802062988286],[3.518115520477352,50.521492004394645],[3.515814542770499,50.524711608886776],[3.506385564804134,50.52829742431646],[3.474889516830501,50.53318023681634],[3.469987392425594,50.531547546386776],[3.456061124801693,50.520755767822266],[3.4500830173493,50.50722503662121],[3.439442157745361,50.507228851318416],[3.43563008308405,50.50912475585949],[3.405551195144767,50.49877929687506],[3.390125513076896,50.49676513671875],[3.377262353897094,50.49098968505871],[3.360271453857479,50.503696441650504],[3.334712266922054,50.50789642333989],[3.328858375549316,50.50812911987305],[3.320949792861938,50.51725769042974],[3.286531448364258,50.5275764465332],[3.279742479324341,50.539886474609375],[3.281645774841422,50.55282592773431],[3.275957345962581,50.558536529541065],[3.284500837326163,50.56192779541027],[3.278060436248836,50.56684494018548],[3.281664371490479,50.57625961303711],[3.27616906166088,50.58168411254894],[3.278310537338371,50.59420013427745],[3.270969152450618,50.605506896972656],[3.269480705261287,50.61197280883795],[3.256132364273014,50.62195205688488],[3.258703708648682,50.62817382812494],[3.25065898895258,50.63614273071289],[3.244402408599967,50.64086914062506],[3.248762130737362,50.64636993408208],[3.24507474899292,50.651428222656364],[3.242113590240592,50.66667938232433],[3.243893384933529,50.669754028320256],[3.261831045150814,50.67596435546881],[3.253688335418701,50.691139221191406],[3.259060144424495,50.6918182373048],[3.259901285171622,50.69873428344732],[3.248501777648982,50.709506988525504],[3.210946798324585,50.71276473999018],[3.192224979400634,50.724872589111385],[3.199032545089722,50.73401260375982],[3.196343898773307,50.7370491027832],[3.188168764114494,50.740222930908146],[3.184298515319824,50.74904632568371],[3.181449413299561,50.751960754394474],[3.183972358703613,50.752162933349666],[3.196821451187134,50.75167846679693],[3.203958749771061,50.75261306762707],[3.209883928299007,50.75515365600586],[3.217006206512394,50.7599830627442],[3.235417604446468,50.75955200195324],[3.261599302291927,50.755409240722656],[3.267051458358821,50.754947662353516],[3.276248216629142,50.755386352539],[3.288691043853873,50.7574577331543],[3.294067382812614,50.75752639770519],[3.299050331115836,50.75678634643566],[3.301532506942863,50.755649566650504],[3.305145502090568,50.75217819213872],[3.310605287551994,50.745254516601676],[3.314960479736271,50.73846435546875],[3.319378852844181,50.726638793945305],[3.32637619972229,50.72328567504883],[3.331037044525203,50.72159957885742],[3.339621782302913,50.717689514160156],[3.351872682571411,50.71299743652355],[3.358429908752441,50.711948394775504],[3.36576318740839,50.711956024170036],[3.374774694442863,50.71945571899414],[3.383272886276302,50.72505569458013],[3.388000965118522,50.72742080688488],[3.401331424713192,50.73252868652344],[3.407669305801392,50.73357772827148],[3.422520160675049,50.74093246459972],[3.451753377914542,50.75111770629883],[3.453065156936646,50.75527954101568],[3.45584511756897,50.75935363769542],[3.460653781890812,50.76322555541998],[3.466958761215267,50.76655960083008],[3.475764989852905,50.763759613037166],[3.486185789108276,50.75991058349621],[3.493236064910889,50.758689880371094],[3.502916097641105,50.75837707519537],[3.518664598465079,50.758644104003906],[3.528159618377799,50.75937652587902],[3.535263776779232,50.76070404052746],[3.545578002929744,50.76073837280279],[3.551618099212646,50.7586402893067],[3.559222459793148,50.75326156616211],[3.552826404571476,50.743202209472656],[3.546725273132324,50.736331939697315],[3.563195705413818,50.73179626464844],[3.574754476547298,50.72945404052729],[3.582044601440373,50.72891998291015],[3.59113335609436,50.72959136962902],[3.598320722579956,50.73096084594732],[3.609710216522274,50.73149490356445],[3.615384817123413,50.73113632202148],[3.63165116310131,50.72790145874029],[3.641566276550349,50.72508239746094],[3.647624969482422,50.722816467285156],[3.653437614441031,50.72822189331055],[3.660099983215389,50.73236465454113],[3.662740468978939,50.73586273193365],[3.664734601974544,50.74360656738281],[3.670523643493766,50.755298614501896],[3.67325496673584,50.76197433471674],[3.675873517990226,50.76648330688482],[3.682890176773128,50.767051696777344],[3.695001602172965,50.766769409179744],[3.70317196846014,50.76571273803716],[3.714914798736629,50.765254974365234],[3.721306800842399,50.76567459106451],[3.728482961654663,50.766975402832145],[3.736004352569694,50.76752471923834],[3.741571426391715,50.767433166503906],[3.749187469482479,50.76546859741211],[3.756891727447566,50.75850296020519],[3.762834548950252,50.75173950195324],[3.765259027481079,50.74974822998052],[3.774646759033203,50.746765136718864],[3.780943632125798,50.74398422241222],[3.789552211761418,50.745121002197315],[3.800738334655705,50.744804382324276],[3.808620214462337,50.74328231811517],[3.816521883010978,50.740734100341854],[3.828039646148682,50.738224029541065],[3.83439493179327,50.738712310791016],[3.837750434875602,50.7398300170899],[3.847915649414176,50.74541091918945],[3.852779150009098,50.74742126464844],[3.858756542205811,50.74839782714844],[3.86400222778326,50.74841308593755],[3.869098663330078,50.74762725830078],[3.875122547149772,50.74496078491222],[3.878738403320312,50.74233245849615],[3.884006977081413,50.73691177368169]]],[[[3.036681413650513,50.77155685424805],[3.035273551941032,50.77014923095709],[3.015253782272339,50.773624420166016],[3.009903907775822,50.76806259155285],[2.983294248580989,50.757186889648494],[2.971967697143612,50.75027465820312],[2.957143306732178,50.75281143188471],[2.940136671066227,50.74536514282238],[2.937651157379093,50.74257278442382],[2.943608522415218,50.73380661010742],[2.93717193603527,50.73005676269531],[2.930279493331909,50.72528839111328],[2.930072069168205,50.711738586425774],[2.922327280044613,50.70280456542969],[2.912152528762931,50.70348739624029],[2.909936189651546,50.69436264038091],[2.90043044090271,50.69328689575206],[2.884267807006893,50.705898284912045],[2.871256828308219,50.703144073486385],[2.872738361358756,50.70827484130853],[2.874473810196037,50.71072769165038],[2.872944116592407,50.72534561157221],[2.872096776962337,50.728641510009766],[2.869011163711548,50.732677459716854],[2.865291118621769,50.73514175415039],[2.856580257415771,50.73899459838873],[2.852480173110962,50.74223327636713],[2.852146625518913,50.747211456298885],[2.854761838913021,50.7501487731933],[2.85846567153942,50.75265502929693],[2.866974353790283,50.75715637207031],[2.871130466461182,50.76029586791992],[2.877074003219604,50.76219940185558],[2.883933067321891,50.76599884033209],[2.89196705818182,50.767024993896534],[2.905073881149405,50.76707839965831],[2.911999225616569,50.766254425048885],[2.918220281601066,50.76403045654297],[2.925010204315242,50.76249694824218],[2.93397068977356,50.76808547973633],[2.938666105270329,50.77214431762695],[2.940480709076041,50.7755584716798],[2.941703319549561,50.78378677368169],[2.943073034286556,50.78722381591808],[2.947418689727897,50.792739868164176],[2.953750133514404,50.79752349853527],[2.964593410492057,50.79898071289068],[2.979665517807007,50.799659729003906],[2.987828254699821,50.80121231079113],[2.998424530029354,50.802757263183594],[3.006856203079223,50.804584503173885],[3.013222694397029,50.80022811889654],[3.017090797424373,50.79483032226574],[3.022404909134025,50.78964233398443],[3.034640550613403,50.77537536621105],[3.036681413650513,50.77155685424805]]]]},"properties":{"ID_0":23,"ISO":"BE-WHT","NAME_0":"Belgium","ID_1":3,"NAME_1":"Wallonie","ID_2":8,"NAME_2":"Hainaut","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Henegouwen|Hennegau"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.896129608154411,50.75958633422857],[5.90474176406866,50.75516510009777],[5.959646224975643,50.76206588745122],[5.974009037017936,50.760063171386776],[5.986626148223877,50.75775909423834],[5.999074935913086,50.756366729736385],[6.007072925567627,50.757270812988395],[6.011619091033936,50.756889343261825],[6.012147903442383,50.75426483154297],[6.028616905212346,50.725215911865234],[6.028419017791805,50.72735214233404],[6.034927845001278,50.72393035888672],[6.060328960418701,50.71767044067394],[6.07892894744873,50.71860122680669],[6.078831195831299,50.719833374023494],[6.100728988647461,50.7186279296875],[6.118731975555477,50.70873641967784],[6.149145126342717,50.67687225341797],[6.173787117004395,50.65840530395502],[6.169487953186035,50.65266036987316],[6.17773008346569,50.64825057983409],[6.178049087524413,50.644531250000114],[6.171928882598934,50.64426040649425],[6.166120052337874,50.64027023315441],[6.165825843811035,50.644012451171875],[6.159657955169791,50.643730163574276],[6.168094158172607,50.636962890625],[6.173087120056209,50.62143325805664],[6.197566986083984,50.631160736083984],[6.199015140533504,50.63046264648432],[6.209949970245417,50.6309204101563],[6.228919029235839,50.62421035766613],[6.259338855743522,50.625400543212834],[6.265749931335563,50.621910095214844],[6.265902996063176,50.62017822265625],[6.278378963470459,50.61639785766613],[6.251566886901912,50.59209823608404],[6.241721153259277,50.593505859375],[6.232298851013297,50.58702087402344],[6.232649803161735,50.583309173583984],[6.220118999481315,50.586540222168075],[6.212152004242,50.5796775817871],[6.206236839294434,50.57698059082037],[6.202858924865723,50.57464981079113],[6.196749210357722,50.57440185546875],[6.197460174560774,50.566978454589844],[6.185599803924617,50.562770843505916],[6.179501056671256,50.5625114440918],[6.175640106201172,50.55985260009777],[6.172194004058838,50.55051422119152],[6.180831909179801,50.533061981201286],[6.210350990295467,50.51704025268566],[6.223847866058462,50.50228118896479],[6.24672794342041,50.50090789794933],[6.246985435485954,50.49833679199219],[6.253068923950252,50.49853134155285],[6.253439903259391,50.494831085205135],[6.259510040283317,50.49507141113281],[6.259140014648494,50.498771667480526],[6.264841079711914,50.502689361572315],[6.271269798278808,50.499221801757926],[6.277355194091854,50.49907302856451],[6.298900127410832,50.49778366088878],[6.315104961395376,50.502639770507926],[6.330028057098389,50.49364471435558],[6.342463016510066,50.464309692382926],[6.363673210144043,50.45222091674799],[6.366498947143782,50.454170227050895],[6.372869014740047,50.450660705566406],[6.373272895812988,50.44674682617199],[6.374671936035155,50.44594955444336],[6.362255096435774,50.42074584960943],[6.362065792083853,50.40473175048834],[6.340477943420524,50.39069366455089],[6.33975791931158,50.37989425659191],[6.344871997833309,50.37594223022461],[6.363688945770321,50.36526870727539],[6.364054203033561,50.36112594604498],[6.372738838195857,50.354415893554794],[6.376580238342284,50.35449981689453],[6.377384185791129,50.350830078125114],[6.382870197296143,50.35095214843755],[6.395440101623649,50.343849182128906],[6.396090984344539,50.336502075195426],[6.402060985565186,50.33662033081066],[6.402379989624137,50.33293914794922],[6.408339977264404,50.333068847656364],[6.403338909149227,50.32192993164068],[6.391717910766602,50.318019866943416],[6.385768890380973,50.31787872314453],[6.381913185119572,50.3200569152832],[6.35649585723877,50.31293487548828],[6.341369152069091,50.322834014892635],[6.325354099273682,50.32118225097662],[6.325169086456526,50.32323074340832],[6.319429874420279,50.31927871704096],[6.301178932190055,50.31853103637695],[6.302197933196965,50.3074302673341],[6.290039062500057,50.30691909790038],[6.29105615615839,50.29586410522461],[6.284987926483211,50.295570373535156],[6.285338878631649,50.291870117187614],[6.279261112213135,50.291610717773494],[6.280309200286865,50.28050994873047],[6.275083065033073,50.27131652832031],[6.275639057159537,50.26544189453125],[6.254786968231315,50.26453399658209],[6.242596149444637,50.262252807617244],[6.239579200744743,50.26015853881836],[6.228908061981144,50.25969314575201],[6.202786922454947,50.254802703857365],[6.191980838775692,50.243465423584034],[6.170382022857666,50.23625564575206],[6.189638137817496,50.189464569091854],[6.185587882995662,50.18708038330083],[6.169525146484431,50.179012298584034],[6.156820774078483,50.17729568481451],[6.157391071319694,50.17121887207031],[6.151369094848633,50.17111968994152],[6.146426200866699,50.17389297485363],[6.135292053222656,50.15470123291021],[6.153457164764518,50.1496315002442],[6.149800777435245,50.13739776611339],[6.142015933990706,50.13749313354503],[6.142289161682243,50.13412857055663],[6.129909038543644,50.13396072387701],[6.116354942321721,50.13761520385748],[6.125361919403076,50.15102005004894],[6.120429992675781,50.16320419311535],[6.101561069488469,50.17081069946295],[6.080800056457633,50.172397613525504],[6.077540874481258,50.15806961059582],[6.07083797454834,50.15641021728521],[6.060410976410026,50.15745162963872],[6.043893814087027,50.161163330078175],[6.031361103057861,50.16562652587901],[6.026518821716252,50.17766952514654],[6.028417110443171,50.17782592773449],[6.030869960784855,50.1855735778808],[6.032835483551082,50.18996047973627],[6.033082485199202,50.19293975830078],[6.031780719757137,50.19601058959972],[6.025649070739803,50.20196533203131],[6.023306846618652,50.2051773071289],[6.019141674041862,50.22132492065435],[6.018742561340388,50.22844696044921],[6.015602111816463,50.23347473144537],[6.011526107788143,50.24352645874035],[6.01126861572277,50.24929809570318],[6.012867450714111,50.255615234375114],[6.01547288894659,50.26318359375006],[6.01718282699585,50.27767944335943],[6.020225048065242,50.28444671630871],[6.021128177642936,50.287914276123104],[6.021990776062125,50.29749298095703],[6.021731853485221,50.30103302001964],[6.019784927368164,50.305419921875114],[6.015793800354061,50.3088264465332],[5.99491024017334,50.31931686401367],[5.982793807983512,50.323287963867244],[5.968837261200008,50.32860183715832],[5.96143627166748,50.33077239990246],[5.956703662872314,50.33152770996105],[5.949781894683838,50.3315048217774],[5.940999507904053,50.33013534545909],[5.933762073516789,50.3296623229981],[5.92260217666626,50.32973098754894],[5.915364742279166,50.33044052124029],[5.905023574829158,50.333686828613274],[5.895849227905217,50.33860015869152],[5.890114307403564,50.34057998657238],[5.882838249206543,50.34011459350586],[5.873032569885197,50.33439254760742],[5.865939617156926,50.32722473144531],[5.864109516143798,50.32346343994146],[5.870245933532772,50.312614440918026],[5.871038913726863,50.30799102783203],[5.869552135467586,50.30230331420893],[5.863310813903809,50.29377365112305],[5.863467693328857,50.28884506225591],[5.865231990814209,50.28700637817394],[5.869237899780329,50.285072326660156],[5.872703075408879,50.284427642822266],[5.88331317901617,50.283985137939396],[5.8895583152771,50.28253936767589],[5.892149448394775,50.27861022949219],[5.892017364501953,50.275272369384766],[5.890383720398063,50.27196121215832],[5.884195804596061,50.26822662353527],[5.87146186828619,50.26553344726574],[5.858254909515323,50.263328552246094],[5.839586257934626,50.262168884277344],[5.828647613525504,50.26063537597656],[5.817029476165771,50.2603988647462],[5.797335624694938,50.26084518432623],[5.789703845977897,50.26137542724621],[5.780876159667912,50.26285171508789],[5.771761894226188,50.26264190673834],[5.757280349731388,50.259403228759766],[5.738603115081844,50.25831222534185],[5.729144096374568,50.25674438476568],[5.732365131378231,50.266357421875],[5.737285614013786,50.27385711669927],[5.747006416320914,50.284439086914176],[5.752376556396484,50.28929138183594],[5.753684043884333,50.29210281372076],[5.75197696685791,50.295738220214844],[5.746017932891903,50.297252655029354],[5.737184047698974,50.297615051269645],[5.730032444000244,50.29885864257818],[5.724039554595947,50.30170059204112],[5.720292091369629,50.304374694824276],[5.716939926147403,50.30864715576183],[5.71616601943981,50.31222534179693],[5.716147422790641,50.318359375000114],[5.716803550720215,50.32824707031256],[5.717879772186279,50.33301925659179],[5.722978115081901,50.340534210205135],[5.727275848388729,50.34554672241222],[5.731984138488713,50.34972000122076],[5.71187067031866,50.35311889648449],[5.687608242034912,50.35860443115246],[5.68165493011486,50.360370635986385],[5.673711776733455,50.36345291137701],[5.659805297851562,50.36408996582036],[5.647420883178768,50.364135742187614],[5.641636371612663,50.370246887207145],[5.630400180816764,50.38002777099604],[5.621923446655387,50.38518905639654],[5.615801334381217,50.39049148559576],[5.608777999878043,50.39379501342785],[5.600898742675838,50.39413833618169],[5.586047649383602,50.39056396484375],[5.569744586944523,50.38790893554687],[5.562268257141113,50.387298583984375],[5.554653644561881,50.387462615966854],[5.547785758972225,50.38854217529302],[5.540555477142448,50.39100646972661],[5.536644458770866,50.393123626708984],[5.5272154808045,50.400115966796875],[5.525614261627311,50.406856536865234],[5.52407693862915,50.410701751708984],[5.514938354492301,50.42178344726574],[5.497604846954346,50.41300201416027],[5.48928260803234,50.410377502441406],[5.475772380828914,50.408390045166016],[5.470851898193359,50.40834426879877],[5.464316368103084,50.40985488891612],[5.446499824523926,50.416999816894645],[5.434639453887939,50.42350387573248],[5.429902076721305,50.42565536499035],[5.424934864044189,50.42686462402349],[5.418218612671011,50.42753601074219],[5.418365478515682,50.422855377197266],[5.419975280761832,50.41748428344738],[5.422833442687988,50.413516998291016],[5.428994178771916,50.40658569335937],[5.429896831512565,50.40337753295909],[5.429345607757567,50.40009307861328],[5.426841259002742,50.3967742919923],[5.419932842254696,50.391941070556584],[5.408824443817196,50.385765075683594],[5.398816108703613,50.38139343261719],[5.390975475311279,50.38208770751964],[5.382594585418815,50.38347244262701],[5.377845287323055,50.38354110717785],[5.367567539215202,50.38224029541021],[5.352109432220572,50.38130187988292],[5.345247268676871,50.37941360473633],[5.329523563385123,50.36902236938488],[5.322180747985839,50.3650741577149],[5.315358638763428,50.36343765258795],[5.30847692489624,50.363773345947266],[5.302789688110352,50.36597824096691],[5.297856330871696,50.37003326416021],[5.292446613311768,50.37347412109381],[5.288509845733699,50.378856658935604],[5.286416053772029,50.38368606567394],[5.28209400177002,50.391876220703125],[5.279173851013296,50.39479064941412],[5.271278858184871,50.39908599853526],[5.263683795928955,50.401279449463],[5.258191108703556,50.40199661254894],[5.245121955871639,50.402999877929744],[5.235250473022517,50.405223846435604],[5.228535175323485,50.40628814697277],[5.233579158783016,50.41982650756836],[5.23785495758068,50.42662429809582],[5.241974830627498,50.43136215209966],[5.238649368286246,50.43559646606457],[5.235603332519531,50.44124603271479],[5.22763013839733,50.44629669189459],[5.224419593811092,50.44944000244152],[5.221206188201904,50.45458221435558],[5.219542503356933,50.46254730224615],[5.214740276336784,50.470050811767635],[5.206289768218994,50.47747039794933],[5.192002773285026,50.47100448608404],[5.187576293945369,50.46954727172863],[5.181001663208065,50.46873474121094],[5.171534538269157,50.46862792968756],[5.162626266479606,50.47906875610363],[5.153983116149959,50.487365722656364],[5.145916938781737,50.49425125122076],[5.141460418701172,50.50042724609375],[5.132845878601074,50.50188064575201],[5.121635437011776,50.502113342285156],[5.114950180053825,50.503639221191406],[5.110570907592887,50.50683212280273],[5.107691764831543,50.512149810791016],[5.104135990142822,50.51655197143555],[5.101803779602051,50.51778793334972],[5.096908569335881,50.51868057250982],[5.086155891418399,50.5180778503418],[5.070198059081974,50.514129638671875],[5.053321361541748,50.512966156005916],[5.04451227188116,50.511505126953125],[5.029245376586857,50.510002136230526],[5.032145023346004,50.520915985107415],[5.033514022827261,50.52386856079107],[5.041014194488582,50.53319549560547],[5.048236846923828,50.539886474609375],[5.053042411804256,50.54648971557617],[5.056023597717342,50.554847717285206],[5.04908990859991,50.559646606445426],[5.045983791351318,50.56255340576166],[5.038270473480337,50.572830200195426],[5.035779953003042,50.57768249511719],[5.030356407165526,50.58506393432623],[5.023402214050293,50.587989807128906],[5.018319606781006,50.591899871826165],[5.01343679428112,50.59441375732416],[5.009727001190242,50.597507476806754],[5.004900455474966,50.60006713867193],[4.999832630157527,50.60455322265625],[4.985814571380672,50.61512756347661],[4.987081050872746,50.620742797851555],[4.989913940429688,50.62743759155279],[4.990725040435848,50.63310623168951],[4.990897178649901,50.641307830810604],[4.997304916381836,50.64536666870123],[5.001780509948843,50.64884185791021],[5.01200628280651,50.66176605224609],[5.013099670410213,50.66648864746105],[5.01349925994873,50.679988861083984],[5.014098644256649,50.68478775024413],[5.017429828643799,50.69243240356451],[5.019616603851318,50.699180603027344],[5.017655372619685,50.71224212646495],[5.014756202697754,50.7171249389649],[5.014392375946102,50.72587966918957],[5.015263557434081,50.731510162353516],[5.016911983490047,50.73458099365246],[5.022274971008301,50.740852355957145],[5.025736331939697,50.74761199951172],[5.035048961639404,50.74598312377929],[5.039706707000732,50.74469375610357],[5.047698974609318,50.739940643310604],[5.052161216735897,50.734561920166016],[5.053678035736083,50.73149871826183],[5.05498027801525,50.7255516052246],[5.053294658660946,50.72243881225597],[5.061855316162223,50.71532821655279],[5.064538478851375,50.71358489990246],[5.075724601745662,50.70881271362304],[5.082873821258602,50.70748138427746],[5.092097282409725,50.7076873779298],[5.099183559417724,50.70936965942383],[5.105806827545279,50.711772918701286],[5.117445945739859,50.71783447265625],[5.129890918731746,50.71366882324219],[5.137597560882625,50.70828628540045],[5.142505168914794,50.70560836791998],[5.150020599365177,50.69818115234375],[5.155230522155819,50.69206237792962],[5.174025535583553,50.70098876953136],[5.177697181701717,50.706714630126946],[5.179975986480713,50.71679687500006],[5.183067798614502,50.719230651855526],[5.187764167785758,50.72016525268566],[5.198338985443172,50.720840454101676],[5.209847927093563,50.7221565246582],[5.217588901519832,50.72237396240246],[5.229423522949332,50.722064971923935],[5.247096538543758,50.71737289428711],[5.25438022613531,50.71667098999029],[5.259901046753043,50.716896057128906],[5.266397476196345,50.718395233154354],[5.273265838623047,50.721111297607536],[5.282044410705623,50.72358703613281],[5.285480499267578,50.72399902343756],[5.294179916381892,50.723606109619254],[5.31430959701538,50.719863891601676],[5.323946475982723,50.727607727050774],[5.32700777053833,50.72928619384765],[5.337441921234188,50.7334098815918],[5.349058151245117,50.736251831054744],[5.363807201385612,50.74113845825207],[5.368960857391414,50.74213027954096],[5.382153987884521,50.74292755126959],[5.394875049591121,50.74466705322277],[5.404721260070801,50.74518966674799],[5.407900810241699,50.7434921264649],[5.409637451171932,50.740844726562614],[5.410171985626334,50.73654556274425],[5.40947437286377,50.7252578735351],[5.410488605499211,50.72043228149413],[5.41564416885376,50.71726608276373],[5.425975799560661,50.71467208862299],[5.435894012451286,50.712665557861385],[5.449454784393424,50.71430969238286],[5.456157684326114,50.71626663208013],[5.463170051574764,50.72132492065441],[5.469120025634709,50.72381973266596],[5.476349830627441,50.72471237182622],[5.485836505889893,50.724693298339844],[5.494567871093864,50.725944519043026],[5.497571468353328,50.729824066162166],[5.500510692596492,50.73163604736334],[5.513237476348876,50.73398971557617],[5.520458698272762,50.73588180541992],[5.532261848449821,50.739681243896484],[5.533227920532226,50.74650955200207],[5.538217067718505,50.75497817993164],[5.542725086212272,50.75820159912121],[5.552254199981802,50.76207733154296],[5.567357063293571,50.76243591308605],[5.587758064270133,50.766166687011776],[5.598823070526123,50.767604827880916],[5.614023685455379,50.77122497558588],[5.621693611145133,50.77272796630871],[5.63052129745489,50.77534866333008],[5.638574123382568,50.7791633605957],[5.658165454864502,50.790939331054744],[5.668262481689453,50.79743576049816],[5.674395084381217,50.802318572998104],[5.680764675140437,50.8058700561524],[5.690980434417668,50.809234619140625],[5.701066970825195,50.805370330810604],[5.705244064331168,50.7859382629395],[5.703442096710319,50.7819595336914],[5.699253082275447,50.77659988403331],[5.695539951324463,50.768737792968686],[5.691255092620906,50.76307296752941],[5.692372798919791,50.760299682617294],[5.693084716796989,50.755371093750114],[5.699196338653564,50.74635314941412],[5.70356273651123,50.74215698242193],[5.709727764129581,50.740764617920036],[5.720372676849422,50.74085998535167],[5.72850847244274,50.74236297607433],[5.735059261322078,50.744773864746094],[5.739517688751278,50.744976043701286],[5.744046688079948,50.744171142578125],[5.753653049469108,50.74068832397466],[5.765116691589299,50.73801040649419],[5.779966354370174,50.73674774169922],[5.784869194030819,50.73592376708996],[5.794776439666805,50.72986984252941],[5.799057483673209,50.723720550537166],[5.805293560028076,50.71798706054698],[5.826517581939754,50.716419219970696],[5.835361957550106,50.71462631225597],[5.856453418731746,50.71121978759771],[5.866026401519775,50.711032867431754],[5.877957344055176,50.7120475769043],[5.887138843536434,50.71196746826172],[5.887659549713078,50.71998214721691],[5.886991977691593,50.729557037353516],[5.88486909866333,50.73515701293951],[5.885429382324219,50.74170303344738],[5.889423847198429,50.74941635131836],[5.896129608154411,50.75958633422857]]]},"properties":{"ID_0":23,"ISO":"BE-WLG","NAME_0":"Belgium","ID_1":3,"NAME_1":"Wallonie","ID_2":9,"NAME_2":"Liège","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Luik|Liegi|Lieja|Lüttich"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.117445945739859,50.71783447265625],[5.115173816680908,50.72293090820324],[5.113169193267879,50.73161697387707],[5.108302593231315,50.73809814453125],[5.106197357177734,50.7447509765625],[5.105834007263297,50.753131866455135],[5.10510969161993,50.758533477783146],[5.113746166229362,50.75787353515619],[5.125383377075195,50.757549285888786],[5.130300998687857,50.75775909423834],[5.140381336212215,50.759986877441406],[5.149806976318473,50.76068878173839],[5.153451919555663,50.761932373046875],[5.158460140228328,50.76258087158214],[5.167627334594783,50.76275634765631],[5.175235271453971,50.764450073242244],[5.181925296783561,50.76515579223644],[5.192119598388786,50.76515197753906],[5.198796272277889,50.76586532592779],[5.2023220062257,50.76717376708996],[5.213201522827092,50.767780303955135],[5.220779418945369,50.767574310302784],[5.22504997253418,50.76673889160162],[5.229905128479004,50.76343917846691],[5.234367847442627,50.756572723388786],[5.234035491943416,50.74734115600586],[5.23081254959112,50.74418640136718],[5.229677677154541,50.73812484741205],[5.229423522949332,50.722064971923935],[5.217588901519832,50.72237396240246],[5.209847927093563,50.7221565246582],[5.198338985443172,50.720840454101676],[5.187764167785758,50.72016525268566],[5.183067798614502,50.719230651855526],[5.179975986480713,50.71679687500006],[5.177697181701717,50.706714630126946],[5.174025535583553,50.70098876953136],[5.155230522155819,50.69206237792962],[5.150020599365177,50.69818115234375],[5.142505168914794,50.70560836791998],[5.137597560882625,50.70828628540045],[5.129890918731746,50.71366882324219],[5.117445945739859,50.71783447265625]]]},"properties":{"ID_0":23,"ISO":"BE-VLI","NAME_0":"Belgium","ID_1":3,"NAME_1":"Wallonie","ID_2":10,"NAME_2":"Limburg","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Limbourg|Limburgo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.026518821716252,50.17766952514654],[6.024930000305289,50.18162155151367],[6.002239227294922,50.17652130126953],[5.987988948822078,50.17551422119151],[5.967640876770076,50.17080307006841],[5.954148769378776,50.134704589843864],[5.902341842651367,50.109767913818416],[5.901381969451904,50.10821151733404],[5.899428844451904,50.10029983520519],[5.894246101379508,50.09441757202148],[5.891685009002742,50.086765289306584],[5.88981294631958,50.07829284667969],[5.874896049499569,50.073902130127],[5.8639430999757,50.06753540039068],[5.859116077423153,50.06171035766607],[5.861655235290584,50.046310424804744],[5.855449199676457,50.030418395996094],[5.845753192901611,50.02041625976568],[5.827960014343319,50.01313400268566],[5.826231956482047,50.00666427612299],[5.827700138092098,49.999465942382926],[5.83520078659069,49.99449920654308],[5.843251228332576,49.98710250854497],[5.843355178833008,49.97994613647472],[5.836931228637752,49.97554397583019],[5.816674232482967,49.97257614135742],[5.815622806549072,49.964809417724666],[5.810860157012996,49.96091842651367],[5.801381111145133,49.963439941406364],[5.795301914215088,49.964229583740284],[5.791534900665283,49.9604225158692],[5.781013965606689,49.959678649902344],[5.778379917144832,49.95049667358404],[5.779318809509391,49.944431304931754],[5.778142929077262,49.93843460083008],[5.772482872009277,49.93231964111339],[5.766616821289062,49.919853210449276],[5.75987100601202,49.91223907470709],[5.753683090210018,49.911331176757926],[5.744140148162955,49.90258026123058],[5.745097160339299,49.89840698242199],[5.758536815643367,49.89336776733393],[5.773841857910156,49.88851165771484],[5.786119937896785,49.882858276367244],[5.786361217498779,49.87723922729498],[5.782749176025391,49.87642288208008],[5.776657104492301,49.86988449096691],[5.7750182151795,49.86904907226557],[5.758081912994442,49.869499206543026],[5.757266044616813,49.86830139160156],[5.758098125457821,49.862648010253956],[5.759564876556396,49.85874938964838],[5.757740020751953,49.855659484863395],[5.753330230712891,49.85362243652343],[5.753317832946834,49.84572601318371],[5.750578880310059,49.8458023071289],[5.750223159789982,49.84066390991222],[5.746118068695068,49.838768005371094],[5.749722003936824,49.83175277709955],[5.751540184020996,49.82413864135742],[5.747794151306209,49.81844711303711],[5.754362106323242,49.813117980957145],[5.757108211517334,49.804592132568416],[5.757693767547664,49.796417236328125],[5.782458782196045,49.79633331298839],[5.794256210327205,49.789226531982365],[5.827349185943716,49.7452278137207],[5.832016944885197,49.72824859619152],[5.831934928894042,49.725784301757926],[5.848493099212646,49.725227355956974],[5.860459804534969,49.728023529052734],[5.869063854217643,49.727207183838004],[5.876872062683219,49.722152709961044],[5.882627010345459,49.71610641479498],[5.889624118805045,49.71010971069336],[5.881442070007438,49.70488357543957],[5.874095916748046,49.699306488037166],[5.871623992919922,49.690929412841854],[5.872259140014648,49.684310913085994],[5.878962039947566,49.677841186523494],[5.890151023864688,49.67340469360363],[5.900941848754883,49.67043304443371],[5.912499904632625,49.66615676879894],[5.908157825470084,49.65912246704113],[5.906942844390926,49.6545677185058],[5.907876014709586,49.64690017700207],[5.907086849212703,49.639522552490234],[5.884276866912898,49.63866424560547],[5.880621910095215,49.63257598876953],[5.881649971008414,49.626518249511776],[5.874896049499569,49.62019729614269],[5.870451927185172,49.613491058349666],[5.871144771575928,49.60590744018565],[5.861946105956974,49.6017456054688],[5.853984832763786,49.59756088256835],[5.852081775665397,49.59076309204107],[5.868544101715088,49.586837768554744],[5.874228954315129,49.58715057373047],[5.874456882476807,49.576766967773494],[5.868050098419246,49.57180786132818],[5.857216835021973,49.56552505493164],[5.850542068481388,49.5601692199707],[5.833731174469108,49.55124664306652],[5.828113079071158,49.552825927734375],[5.815077304840031,49.54516601562511],[5.81288051605236,49.547969818115234],[5.793144702911491,49.5520401000976],[5.772744655609188,49.56255340576171],[5.758513450622672,49.559101104736385],[5.75715541839611,49.54256820678722],[5.742724418640194,49.539283752441406],[5.730061054229792,49.544475555420036],[5.721682548522949,49.54101181030279],[5.701262950897217,49.53951644897472],[5.689101696014461,49.54609298706054],[5.669230461120605,49.548507690429744],[5.660805702209472,49.55235290527349],[5.645203113555907,49.54969024658209],[5.6329221725465,49.54306030273449],[5.632797718048096,49.53955841064459],[5.61795806884777,49.53034591674816],[5.621092319488639,49.52066040039068],[5.617424488067684,49.51438140869146],[5.61103439331049,49.50589370727545],[5.607102394104118,49.50698471069335],[5.593825817108268,49.5213623046875],[5.569193363189696,49.52734375000006],[5.553982734680289,49.527870178222656],[5.54247522354126,49.51697158813482],[5.531455516815298,49.512519836425895],[5.500722885131893,49.50679016113292],[5.484814643859863,49.506687164306754],[5.470910549163818,49.49721527099614],[5.466285228729248,49.498928070068295],[5.463425159454346,49.50896453857421],[5.447196483612061,49.51788330078136],[5.464030265808161,49.52619934082036],[5.465261459350643,49.536308288574276],[5.442548751831112,49.55027389526367],[5.44135236740118,49.55213928222662],[5.446219444274959,49.55340194702154],[5.453856945037785,49.56596755981451],[5.439330577850455,49.569801330566406],[5.428995132446403,49.58919525146496],[5.430971622467098,49.59238433837896],[5.393536567688045,49.61708831787103],[5.346857547760067,49.63084411621094],[5.34012413024908,49.618083953857536],[5.321965217590332,49.61418914794933],[5.314977169036865,49.612030029296925],[5.304913043975887,49.63005828857416],[5.320583820343074,49.64726257324219],[5.332622051239127,49.65350341796886],[5.319152355194205,49.66366958618175],[5.286605834960993,49.681797027588004],[5.282208919525146,49.685573577880916],[5.280510902404842,49.689136505126946],[5.26838397979742,49.69595336914068],[5.246232032775993,49.68694305419921],[5.231140136718864,49.69035720825201],[5.21563625335699,49.68919754028326],[5.208661079406738,49.69443511962896],[5.19966030120861,49.6923179626466],[5.19051122665411,49.694503784179794],[5.166208267211914,49.692916870117244],[5.165421009063778,49.70936203002929],[5.160857200622615,49.715187072753906],[5.151701450347844,49.71766662597656],[5.143624305725211,49.709281921386776],[5.123073101043701,49.71730804443365],[5.12487363815319,49.726947784423885],[5.096602439880428,49.759784698486385],[5.089717388153133,49.76479339599615],[5.069024562835693,49.761581420898494],[5.046833992004508,49.77014160156256],[5.014911651611385,49.77950668334961],[5.001781463623161,49.79367065429699],[4.991471767425594,49.80022048950201],[4.97182035446167,49.80039596557623],[4.979648590088004,49.80058670043951],[4.98153734207159,49.80416107177746],[4.978381156921387,49.80408096313488],[4.979460716247615,49.806648254394645],[4.984670639038199,49.81009292602544],[4.990237712860221,49.81704711914068],[4.991074562072697,49.82057952880871],[4.991033554077148,49.82542419433593],[4.990031719207877,49.82896423339855],[4.985722541809139,49.83541488647461],[4.982779026031494,49.83829879760742],[4.993558883667049,49.84904861450201],[4.999894142150879,49.85316085815429],[5.003977775573787,49.85490036010742],[5.016336917877311,49.859157562255916],[5.028169155120963,49.86430358886719],[5.032432556152287,49.86735153198248],[5.040966033935547,49.87051391601574],[5.046802997589111,49.87197875976568],[5.050579547882079,49.88017272949219],[5.052694797515983,49.888950347900504],[5.054522514343319,49.89167785644537],[5.061678886413688,49.895877838134766],[5.070842266082821,49.9023551940918],[5.078346729278564,49.90569305419921],[5.090999126434325,49.912300109863395],[5.098744869232235,49.915523529052734],[5.104967594146785,49.91952896118163],[5.107078552246094,49.9224967956544],[5.107423305511531,49.925476074218864],[5.105774402618521,49.93078231811523],[5.105884075164795,49.936149597168075],[5.107609272003174,49.94049835205084],[5.107882499694824,49.94445800781256],[5.104503631591796,49.95011520385747],[5.100841045379752,49.95254135131836],[5.089766502380485,49.95676422119152],[5.084937572479362,49.960052490234375],[5.080753326416129,49.9659080505371],[5.075232505798397,49.97094345092785],[5.070174694061336,49.97454071044922],[5.063361644744987,49.97838973999035],[5.057147979736328,49.979793548583984],[5.052814006805534,49.97937774658208],[5.047593593597526,49.976196289062614],[5.040369987487793,49.9734497070313],[5.037071228027344,49.97273254394537],[5.030410289764518,49.972602844238395],[5.02729511260992,49.97323608398437],[5.024100303649959,49.97511672973638],[5.021350383758659,49.97858428955078],[5.01551532745367,49.99076843261719],[5.013537883758488,49.993785858154354],[5.001542091369743,50.00467300415045],[4.993929862976188,50.008872985839844],[4.9929456710816,50.013000488281364],[4.989341735839844,50.019729614257756],[4.986419677734489,50.02378845214843],[4.994700431823844,50.02841949462896],[5.00034952163702,50.030941009521484],[5.01129245758051,50.03298950195318],[5.022318363189697,50.040901184081974],[5.027714252471924,50.04559707641601],[5.035602569580077,50.05009841918957],[5.043961524963379,50.052497863769645],[5.046137332916203,50.053573608398494],[5.053401947021541,50.05948638916021],[5.05912542343151,50.06676864624023],[5.059660434722956,50.07334899902344],[5.057415485382194,50.0789413452149],[5.056472301483211,50.0860977172851],[5.056509494781608,50.09223175048828],[5.057302474975643,50.0994873046875],[5.059979915618896,50.10638427734375],[5.061727523803825,50.115493774414055],[5.065189361572266,50.11896514892578],[5.082617282867545,50.12315750122082],[5.082661151885986,50.11481094360346],[5.082190990448055,50.10377502441412],[5.082401275634822,50.100231170654354],[5.083697795868034,50.09684753417969],[5.089592456817626,50.09294509887701],[5.093100070953483,50.09220504760748],[5.100488185882568,50.091892242431754],[5.107924938201904,50.09242248535156],[5.120248794555664,50.09440994262695],[5.132795810699577,50.09445190429699],[5.139672756195125,50.09345626831055],[5.152327060699463,50.08861541748047],[5.175599098205623,50.08855056762695],[5.18312644958496,50.088947296142635],[5.188194751739502,50.089920043945256],[5.19843053817749,50.0930290222169],[5.210887908935547,50.09428024291998],[5.219791412353629,50.09572601318365],[5.232388019561767,50.09676361083996],[5.252452373504696,50.10057449340826],[5.259789466858024,50.10118865966797],[5.271255970001278,50.10119247436529],[5.271226882934684,50.107295989990284],[5.270146369934139,50.113185882568416],[5.268110752105713,50.11773300170898],[5.267220973968506,50.12570571899414],[5.267692565918025,50.128971099853516],[5.269291877746582,50.13184738159179],[5.271437168121451,50.1332015991212],[5.279349327087458,50.13499450683594],[5.286091804504395,50.137203216552784],[5.288966655731144,50.140548706054744],[5.289266586303824,50.14371109008795],[5.287253856658992,50.150798797607536],[5.286805629730337,50.15622711181646],[5.281607627868709,50.15863800048828],[5.277907848358211,50.161186218261776],[5.274393558502311,50.164855957031364],[5.267596244812069,50.17333602905285],[5.261561870574951,50.17953872680669],[5.257816314697266,50.18520736694336],[5.25595378875738,50.192962646484375],[5.254307270050049,50.195755004882926],[5.249981403350886,50.1984596252442],[5.246477127075309,50.20160675048834],[5.242084503173885,50.204174041748104],[5.238508224487362,50.20858764648437],[5.236346244812125,50.20970153808588],[5.230731010437012,50.21018218994146],[5.220071792602596,50.20899200439453],[5.21423959732067,50.210563659668026],[5.212089538574332,50.21218109130853],[5.210633754730281,50.215087890625],[5.212122440338135,50.220794677734375],[5.219893455505484,50.2233238220216],[5.228954792022704,50.22451782226574],[5.242395877838078,50.2248992919923],[5.247392177581787,50.225627899169865],[5.254805564880314,50.22775650024414],[5.262778759002686,50.23210525512689],[5.268091678619498,50.23441314697271],[5.275614261627197,50.23686599731457],[5.286271095275993,50.23960494995117],[5.293972969055233,50.240257263183594],[5.309916973114127,50.240200042724666],[5.315797328949088,50.24041748046875],[5.321409702301139,50.24127960205084],[5.328474044799805,50.2433471679688],[5.333349227905386,50.24553680419933],[5.339396476745549,50.24900436401373],[5.361606597900391,50.2628288269043],[5.376125335693416,50.27238845825195],[5.38101434707653,50.276371002197266],[5.386126518249455,50.27891540527355],[5.390315055847282,50.28215408325201],[5.395308971405029,50.284622192382926],[5.403212070465145,50.28690338134777],[5.40764760971075,50.28970336914068],[5.417450904846248,50.293296813964844],[5.422087192535457,50.296443939208984],[5.425021648406982,50.30241394042969],[5.427992343902645,50.306793212890625],[5.419111251831112,50.30937194824224],[5.406338214874268,50.31085586547862],[5.399314880371151,50.3121070861817],[5.391419887542781,50.31218338012707],[5.376050949096792,50.30971908569347],[5.364690780639648,50.305889129638786],[5.359693050384578,50.30518722534179],[5.353252887725944,50.305889129638786],[5.349560737609806,50.30951690673828],[5.349369049072266,50.31279373168939],[5.350498199462891,50.3161354064942],[5.354677677154598,50.319702148437614],[5.359222888946647,50.321224212646484],[5.369189262390137,50.32251739501959],[5.37816429138195,50.32474136352545],[5.389658927917537,50.32952117919922],[5.392368316650447,50.33157348632807],[5.393674373626823,50.33448791503906],[5.394681930542049,50.34075164794922],[5.39654636383068,50.3443336486817],[5.402202606201172,50.34857940673828],[5.406364440918026,50.35548019409191],[5.407655715942326,50.359909057617244],[5.407919883728141,50.36567306518555],[5.407131671905574,50.37020874023443],[5.403191089630127,50.37645721435547],[5.398816108703613,50.38139343261719],[5.408824443817196,50.385765075683594],[5.419932842254696,50.391941070556584],[5.426841259002742,50.3967742919923],[5.429345607757567,50.40009307861328],[5.429896831512565,50.40337753295909],[5.428994178771916,50.40658569335937],[5.422833442687988,50.413516998291016],[5.419975280761832,50.41748428344738],[5.418365478515682,50.422855377197266],[5.418218612671011,50.42753601074219],[5.424934864044189,50.42686462402349],[5.429902076721305,50.42565536499035],[5.434639453887939,50.42350387573248],[5.446499824523926,50.416999816894645],[5.464316368103084,50.40985488891612],[5.470851898193359,50.40834426879877],[5.475772380828914,50.408390045166016],[5.48928260803234,50.410377502441406],[5.497604846954346,50.41300201416027],[5.514938354492301,50.42178344726574],[5.52407693862915,50.410701751708984],[5.525614261627311,50.406856536865234],[5.5272154808045,50.400115966796875],[5.536644458770866,50.393123626708984],[5.540555477142448,50.39100646972661],[5.547785758972225,50.38854217529302],[5.554653644561881,50.387462615966854],[5.562268257141113,50.387298583984375],[5.569744586944523,50.38790893554687],[5.586047649383602,50.39056396484375],[5.600898742675838,50.39413833618169],[5.608777999878043,50.39379501342785],[5.615801334381217,50.39049148559576],[5.621923446655387,50.38518905639654],[5.630400180816764,50.38002777099604],[5.641636371612663,50.370246887207145],[5.647420883178768,50.364135742187614],[5.659805297851562,50.36408996582036],[5.673711776733455,50.36345291137701],[5.68165493011486,50.360370635986385],[5.687608242034912,50.35860443115246],[5.71187067031866,50.35311889648449],[5.731984138488713,50.34972000122076],[5.727275848388729,50.34554672241222],[5.722978115081901,50.340534210205135],[5.717879772186279,50.33301925659179],[5.716803550720215,50.32824707031256],[5.716147422790641,50.318359375000114],[5.71616601943981,50.31222534179693],[5.716939926147403,50.30864715576183],[5.720292091369629,50.304374694824276],[5.724039554595947,50.30170059204112],[5.730032444000244,50.29885864257818],[5.737184047698974,50.297615051269645],[5.746017932891903,50.297252655029354],[5.75197696685791,50.295738220214844],[5.753684043884333,50.29210281372076],[5.752376556396484,50.28929138183594],[5.747006416320914,50.284439086914176],[5.737285614013786,50.27385711669927],[5.732365131378231,50.266357421875],[5.729144096374568,50.25674438476568],[5.738603115081844,50.25831222534185],[5.757280349731388,50.259403228759766],[5.771761894226188,50.26264190673834],[5.780876159667912,50.26285171508789],[5.789703845977897,50.26137542724621],[5.797335624694938,50.26084518432623],[5.817029476165771,50.2603988647462],[5.828647613525504,50.26063537597656],[5.839586257934626,50.262168884277344],[5.858254909515323,50.263328552246094],[5.87146186828619,50.26553344726574],[5.884195804596061,50.26822662353527],[5.890383720398063,50.27196121215832],[5.892017364501953,50.275272369384766],[5.892149448394775,50.27861022949219],[5.8895583152771,50.28253936767589],[5.88331317901617,50.283985137939396],[5.872703075408879,50.284427642822266],[5.869237899780329,50.285072326660156],[5.865231990814209,50.28700637817394],[5.863467693328857,50.28884506225591],[5.863310813903809,50.29377365112305],[5.869552135467586,50.30230331420893],[5.871038913726863,50.30799102783203],[5.870245933532772,50.312614440918026],[5.864109516143798,50.32346343994146],[5.865939617156926,50.32722473144531],[5.873032569885197,50.33439254760742],[5.882838249206543,50.34011459350586],[5.890114307403564,50.34057998657238],[5.895849227905217,50.33860015869152],[5.905023574829158,50.333686828613274],[5.915364742279166,50.33044052124029],[5.92260217666626,50.32973098754894],[5.933762073516789,50.3296623229981],[5.940999507904053,50.33013534545909],[5.949781894683838,50.3315048217774],[5.956703662872314,50.33152770996105],[5.96143627166748,50.33077239990246],[5.968837261200008,50.32860183715832],[5.982793807983512,50.323287963867244],[5.99491024017334,50.31931686401367],[6.015793800354061,50.3088264465332],[6.019784927368164,50.305419921875114],[6.021731853485221,50.30103302001964],[6.021990776062125,50.29749298095703],[6.021128177642936,50.287914276123104],[6.020225048065242,50.28444671630871],[6.01718282699585,50.27767944335943],[6.01547288894659,50.26318359375006],[6.012867450714111,50.255615234375114],[6.01126861572277,50.24929809570318],[6.011526107788143,50.24352645874035],[6.015602111816463,50.23347473144537],[6.018742561340388,50.22844696044921],[6.019141674041862,50.22132492065435],[6.023306846618652,50.2051773071289],[6.025649070739803,50.20196533203131],[6.031780719757137,50.19601058959972],[6.033082485199202,50.19293975830078],[6.032835483551082,50.18996047973627],[6.030869960784855,50.1855735778808],[6.028417110443171,50.17782592773449],[6.026518821716252,50.17766952514654]]]},"properties":{"ID_0":23,"ISO":"BE-WLX","NAME_0":"Belgium","ID_1":3,"NAME_1":"Wallonie","ID_2":11,"NAME_2":"Luxembourg","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Lussemburgo|Luxemburg|Luxemburgo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.398816108703613,50.38139343261719],[5.403191089630127,50.37645721435547],[5.407131671905574,50.37020874023443],[5.407919883728141,50.36567306518555],[5.407655715942326,50.359909057617244],[5.406364440918026,50.35548019409191],[5.402202606201172,50.34857940673828],[5.39654636383068,50.3443336486817],[5.394681930542049,50.34075164794922],[5.393674373626823,50.33448791503906],[5.392368316650447,50.33157348632807],[5.389658927917537,50.32952117919922],[5.37816429138195,50.32474136352545],[5.369189262390137,50.32251739501959],[5.359222888946647,50.321224212646484],[5.354677677154598,50.319702148437614],[5.350498199462891,50.3161354064942],[5.349369049072266,50.31279373168939],[5.349560737609806,50.30951690673828],[5.353252887725944,50.305889129638786],[5.359693050384578,50.30518722534179],[5.364690780639648,50.305889129638786],[5.376050949096792,50.30971908569347],[5.391419887542781,50.31218338012707],[5.399314880371151,50.3121070861817],[5.406338214874268,50.31085586547862],[5.419111251831112,50.30937194824224],[5.427992343902645,50.306793212890625],[5.425021648406982,50.30241394042969],[5.422087192535457,50.296443939208984],[5.417450904846248,50.293296813964844],[5.40764760971075,50.28970336914068],[5.403212070465145,50.28690338134777],[5.395308971405029,50.284622192382926],[5.390315055847282,50.28215408325201],[5.386126518249455,50.27891540527355],[5.38101434707653,50.276371002197266],[5.376125335693416,50.27238845825195],[5.361606597900391,50.2628288269043],[5.339396476745549,50.24900436401373],[5.333349227905386,50.24553680419933],[5.328474044799805,50.2433471679688],[5.321409702301139,50.24127960205084],[5.315797328949088,50.24041748046875],[5.309916973114127,50.240200042724666],[5.293972969055233,50.240257263183594],[5.286271095275993,50.23960494995117],[5.275614261627197,50.23686599731457],[5.268091678619498,50.23441314697271],[5.262778759002686,50.23210525512689],[5.254805564880314,50.22775650024414],[5.247392177581787,50.225627899169865],[5.242395877838078,50.2248992919923],[5.228954792022704,50.22451782226574],[5.219893455505484,50.2233238220216],[5.212122440338135,50.220794677734375],[5.210633754730281,50.215087890625],[5.212089538574332,50.21218109130853],[5.21423959732067,50.210563659668026],[5.220071792602596,50.20899200439453],[5.230731010437012,50.21018218994146],[5.236346244812125,50.20970153808588],[5.238508224487362,50.20858764648437],[5.242084503173885,50.204174041748104],[5.246477127075309,50.20160675048834],[5.249981403350886,50.1984596252442],[5.254307270050049,50.195755004882926],[5.25595378875738,50.192962646484375],[5.257816314697266,50.18520736694336],[5.261561870574951,50.17953872680669],[5.267596244812069,50.17333602905285],[5.274393558502311,50.164855957031364],[5.277907848358211,50.161186218261776],[5.281607627868709,50.15863800048828],[5.286805629730337,50.15622711181646],[5.287253856658992,50.150798797607536],[5.289266586303824,50.14371109008795],[5.288966655731144,50.140548706054744],[5.286091804504395,50.137203216552784],[5.279349327087458,50.13499450683594],[5.271437168121451,50.1332015991212],[5.269291877746582,50.13184738159179],[5.267692565918025,50.128971099853516],[5.267220973968506,50.12570571899414],[5.268110752105713,50.11773300170898],[5.270146369934139,50.113185882568416],[5.271226882934684,50.107295989990284],[5.271255970001278,50.10119247436529],[5.259789466858024,50.10118865966797],[5.252452373504696,50.10057449340826],[5.232388019561767,50.09676361083996],[5.219791412353629,50.09572601318365],[5.210887908935547,50.09428024291998],[5.19843053817749,50.0930290222169],[5.188194751739502,50.089920043945256],[5.18312644958496,50.088947296142635],[5.175599098205623,50.08855056762695],[5.152327060699463,50.08861541748047],[5.139672756195125,50.09345626831055],[5.132795810699577,50.09445190429699],[5.120248794555664,50.09440994262695],[5.107924938201904,50.09242248535156],[5.100488185882568,50.091892242431754],[5.093100070953483,50.09220504760748],[5.089592456817626,50.09294509887701],[5.083697795868034,50.09684753417969],[5.082401275634822,50.100231170654354],[5.082190990448055,50.10377502441412],[5.082661151885986,50.11481094360346],[5.082617282867545,50.12315750122082],[5.065189361572266,50.11896514892578],[5.061727523803825,50.115493774414055],[5.059979915618896,50.10638427734375],[5.057302474975643,50.0994873046875],[5.056509494781608,50.09223175048828],[5.056472301483211,50.0860977172851],[5.057415485382194,50.0789413452149],[5.059660434722956,50.07334899902344],[5.05912542343151,50.06676864624023],[5.053401947021541,50.05948638916021],[5.046137332916203,50.053573608398494],[5.043961524963379,50.052497863769645],[5.035602569580077,50.05009841918957],[5.027714252471924,50.04559707641601],[5.022318363189697,50.040901184081974],[5.01129245758051,50.03298950195318],[5.00034952163702,50.030941009521484],[4.994700431823844,50.02841949462896],[4.986419677734489,50.02378845214843],[4.989341735839844,50.019729614257756],[4.9929456710816,50.013000488281364],[4.993929862976188,50.008872985839844],[5.001542091369743,50.00467300415045],[5.013537883758488,49.993785858154354],[5.01551532745367,49.99076843261719],[5.021350383758659,49.97858428955078],[5.024100303649959,49.97511672973638],[5.02729511260992,49.97323608398437],[5.030410289764518,49.972602844238395],[5.037071228027344,49.97273254394537],[5.040369987487793,49.9734497070313],[5.047593593597526,49.976196289062614],[5.052814006805534,49.97937774658208],[5.057147979736328,49.979793548583984],[5.063361644744987,49.97838973999035],[5.070174694061336,49.97454071044922],[5.075232505798397,49.97094345092785],[5.080753326416129,49.9659080505371],[5.084937572479362,49.960052490234375],[5.089766502380485,49.95676422119152],[5.100841045379752,49.95254135131836],[5.104503631591796,49.95011520385747],[5.107882499694824,49.94445800781256],[5.107609272003174,49.94049835205084],[5.105884075164795,49.936149597168075],[5.105774402618521,49.93078231811523],[5.107423305511531,49.925476074218864],[5.107078552246094,49.9224967956544],[5.104967594146785,49.91952896118163],[5.098744869232235,49.915523529052734],[5.090999126434325,49.912300109863395],[5.078346729278564,49.90569305419921],[5.070842266082821,49.9023551940918],[5.061678886413688,49.895877838134766],[5.054522514343319,49.89167785644537],[5.052694797515983,49.888950347900504],[5.050579547882079,49.88017272949219],[5.046802997589111,49.87197875976568],[5.040966033935547,49.87051391601574],[5.032432556152287,49.86735153198248],[5.028169155120963,49.86430358886719],[5.016336917877311,49.859157562255916],[5.003977775573787,49.85490036010742],[4.999894142150879,49.85316085815429],[4.993558883667049,49.84904861450201],[4.982779026031494,49.83829879760742],[4.985722541809139,49.83541488647461],[4.990031719207877,49.82896423339855],[4.991033554077148,49.82542419433593],[4.991074562072697,49.82057952880871],[4.990237712860221,49.81704711914068],[4.984670639038199,49.81009292602544],[4.979460716247615,49.806648254394645],[4.978381156921387,49.80408096313488],[4.98153734207159,49.80416107177746],[4.979648590088004,49.80058670043951],[4.97182035446167,49.80039596557623],[4.955675601959342,49.80054092407226],[4.946673870086726,49.79714202880853],[4.94302415847784,49.79068374633795],[4.935624599456901,49.791282653808594],[4.931437492370605,49.78670883178722],[4.92133092880249,49.788513183593864],[4.90623140335083,49.78560256958002],[4.897636890411491,49.78892135620122],[4.887263298034725,49.788047790527344],[4.874958992004508,49.79319763183594],[4.86173915863037,49.78927612304698],[4.85510158538824,49.79457092285162],[4.873641490936222,49.81897354125971],[4.867420196533203,49.83863830566412],[4.858623504638672,49.84255218505859],[4.855106830596924,49.84902191162104],[4.851549625396841,49.86268997192383],[4.861937522888184,49.86978149414073],[4.88287687301647,49.898448944091854],[4.885178089141903,49.91216278076172],[4.878683567047176,49.921905517578125],[4.858426570892391,49.93370437622076],[4.84519624710083,49.948928833007926],[4.813847064972038,49.9542694091798],[4.790924072265739,49.95839691162115],[4.790004730224666,49.96889495849615],[4.79558706283575,49.982219696045036],[4.805953979492244,49.984195709228516],[4.815224170684871,49.9924812316895],[4.816493988037109,49.99771499633789],[4.820602416992244,50.02365493774414],[4.840087890625057,50.04034423828125],[4.837235927581901,50.04634094238287],[4.828101158142204,50.04993057250987],[4.828003883361816,50.05693054199219],[4.819240093231201,50.060676574707145],[4.820781230926571,50.06526565551758],[4.839155197143668,50.06970977783203],[4.840480804443359,50.08279418945318],[4.845305442810002,50.08378219604492],[4.840224266052302,50.092983245849666],[4.850132942199764,50.10017776489258],[4.859797477722225,50.09827041625976],[4.863494873046875,50.09170150756847],[4.868221282959041,50.089984893798935],[4.872434616088924,50.092166900634766],[4.869122505187988,50.11978530883789],[4.877838611602897,50.12842178344732],[4.8956556320191,50.13627624511719],[4.895352840423584,50.13976669311535],[4.884614944458121,50.141181945800895],[4.874876022338867,50.15338516235351],[4.831695556640681,50.15510559082042],[4.822806835174617,50.167644500732365],[4.802541255950985,50.1510620117188],[4.779678344726676,50.141334533691456],[4.765172958373967,50.13739395141607],[4.755962371826115,50.12163543701172],[4.751018047332821,50.12127685546881],[4.751345634460563,50.111740112304744],[4.715218067169189,50.100044250488274],[4.713411808013972,50.097003936767635],[4.702781200408936,50.095653533935604],[4.681884288787899,50.067626953125],[4.686844348907528,50.057704925537166],[4.697027683258057,50.0592880249024],[4.696432590484619,50.043132781982415],[4.686632633209229,50.02778244018566],[4.688542366027889,50.01136779785156],[4.686140537261963,50.00494384765631],[4.694599151611328,49.996498107910156],[4.66801643371582,49.99634933471691],[4.633237838745116,49.98746490478527],[4.595972061157283,49.98596191406244],[4.576035976409969,49.98111724853521],[4.570190429687557,49.97362899780285],[4.561534881591854,49.969833374023494],[4.540829181671199,49.9682350158692],[4.524165630340576,49.95132064819347],[4.511319160461426,49.94680786132824],[4.479779243469351,49.947128295898494],[4.450855731964225,49.93864822387701],[4.450994491577262,49.955272674560604],[4.449770927429313,49.96104431152344],[4.444722175598145,49.9670791625976],[4.436538219451904,49.97109222412104],[4.431720256805477,49.97441864013677],[4.428246974945124,49.97840118408203],[4.4261536598205,49.98204421997081],[4.425337314605827,49.98793411254894],[4.425655841827449,50.00249862670898],[4.42480373382574,50.01198959350597],[4.422223091125488,50.01876831054682],[4.421065330505485,50.03277587890631],[4.416442871093807,50.04484176635742],[4.409865856170711,50.053115844726555],[4.405756473541317,50.06025314331049],[4.401334762573299,50.0696754455567],[4.400547504424992,50.075740814208984],[4.400582313537597,50.09574508666992],[4.398709774017334,50.104042053222656],[4.403716564178467,50.11230850219737],[4.405216693878231,50.11898803710943],[4.402402400970515,50.123310089111385],[4.395810604095459,50.136337280273494],[4.391487121582088,50.143589019775504],[4.389312744140624,50.14542007446295],[4.381018638610954,50.14970779418939],[4.377694606781063,50.152374267578175],[4.375771045684871,50.155643463134766],[4.375375270843563,50.159122467041016],[4.376250743865967,50.162532806396484],[4.378743171691895,50.1654167175293],[4.38631534576416,50.16932296752941],[4.390590190887565,50.172328948974666],[4.398855209350643,50.17614364624029],[4.402405738830679,50.178672790527344],[4.404869556427001,50.18177032470709],[4.406074523925781,50.18765258789068],[4.405948162078914,50.204803466796875],[4.4070019721986,50.21436309814458],[4.409997463226432,50.222316741943416],[4.410700798034782,50.23302078247082],[4.39186620712286,50.240074157714844],[4.384006977081299,50.243316650390625],[4.375470161437931,50.24444198608404],[4.370472431182861,50.243671417236385],[4.364596366882324,50.24002075195307],[4.3608660697937,50.2346420288087],[4.357593536377009,50.23203659057623],[4.351780891418571,50.22957611083984],[4.345670700073299,50.22918701171875],[4.341716289520377,50.229736328125],[4.318380355835018,50.23719787597656],[4.311021327972355,50.240852355957024],[4.307253837585506,50.24347305297857],[4.304061412811392,50.24752426147472],[4.304174423217773,50.25156402587896],[4.309113502502498,50.25743865966797],[4.319901466369629,50.262176513671875],[4.329781532287711,50.26607894897461],[4.336028575897274,50.26922607421875],[4.340666770935059,50.270889282226676],[4.346035957336483,50.27172851562499],[4.357057571411246,50.2725181579591],[4.362391948699951,50.27368927001959],[4.370102882385254,50.277580261230575],[4.376698493957576,50.28261947631847],[4.383900165557975,50.285041809081974],[4.398056983947868,50.28877639770508],[4.402159214019775,50.29049682617193],[4.405935287475642,50.293903350830014],[4.411571502685604,50.304355621338004],[4.416154384613037,50.30694961547857],[4.421182632446231,50.30746078491211],[4.430087089538631,50.30675888061529],[4.437129974365291,50.305274963378906],[4.449708461761475,50.303726196289006],[4.460053920745906,50.301925659179744],[4.465182304382381,50.30199432373058],[4.470005035400504,50.30313873291027],[4.475190162658691,50.30727386474614],[4.477860927581901,50.31339263916021],[4.4830002784729,50.31981277465832],[4.485584735870474,50.32569885253906],[4.4931321144104,50.32608032226562],[4.500091075897274,50.32588577270513],[4.504807949066105,50.325122833252],[4.510960578918457,50.3232192993164],[4.518175125122127,50.31887054443364],[4.524686336517447,50.3110084533692],[4.535837173461914,50.31018829345714],[4.540560245513916,50.310272216796875],[4.553505420684871,50.31257247924816],[4.561775684356803,50.31449127197271],[4.575077533721923,50.31703186035167],[4.595333576202393,50.317977905273544],[4.5995774269104,50.324565887451286],[4.600812911987305,50.329292297363224],[4.600512504577637,50.33530044555658],[4.597183227539006,50.34453582763683],[4.596727371215877,50.35315322875982],[4.597908973693961,50.36178207397472],[4.604414939880371,50.37377548217785],[4.605379104614371,50.37836074829113],[4.604900836944637,50.38293075561535],[4.603039264679012,50.38831329345709],[4.603271007537899,50.39128112792963],[4.604897975921745,50.394111633300895],[4.609344482421989,50.39909362792963],[4.618285655975342,50.4146957397462],[4.619794368743952,50.421844482421875],[4.618886470794735,50.42646026611334],[4.617339134216422,50.42851638793957],[4.613696575164852,50.430828094482536],[4.609135627746582,50.432071685791065],[4.584446430206299,50.43452835083008],[4.588118553161678,50.440975189208984],[4.587961196899471,50.447505950927734],[4.59100675582897,50.457923889160206],[4.597136020660457,50.46677398681652],[4.601460933685303,50.47496795654308],[4.602882862091064,50.4828262329101],[4.598659515380859,50.48805618286144],[4.594860076904297,50.49040985107433],[4.588681221008414,50.49188613891596],[4.584355831146297,50.49145889282238],[4.57793569564825,50.4879035949707],[4.569901943206787,50.4868736267091],[4.563318252563477,50.4877662658692],[4.560823917388973,50.48932266235357],[4.559164047241325,50.4946174621582],[4.560025691986027,50.50659561157226],[4.561088562011832,50.510074615478516],[4.564922809600944,50.517322540283196],[4.570760726928824,50.52461624145513],[4.578056335449332,50.531257629394645],[4.582718372345028,50.53672409057617],[4.581291675567627,50.54666900634777],[4.579463481903076,50.5513076782226],[4.595211029052734,50.55885314941412],[4.604893207550106,50.56188964843756],[4.611181735992432,50.56536102294933],[4.615025520324821,50.565616607666065],[4.618427753448486,50.564117431640625],[4.618077278137321,50.56226730346674],[4.635144710540884,50.56060409545898],[4.646832466125601,50.56032943725597],[4.656463146209774,50.560424804687614],[4.661992073059082,50.56091308593756],[4.672809123992977,50.563148498535156],[4.676634788513297,50.566009521484375],[4.676993370056209,50.56889343261719],[4.672712326049805,50.57941055297863],[4.668494701385555,50.58523559570324],[4.66374063491827,50.59029006958019],[4.662203311920166,50.593120574951286],[4.6626815795899,50.59701919555664],[4.665044307708797,50.600017547607536],[4.670643329620361,50.600440979003956],[4.675240039825552,50.5999488830567],[4.691704750061092,50.59421539306635],[4.69688892364502,50.593303680420036],[4.705554485321045,50.59389114379894],[4.710159778595084,50.595699310302734],[4.713971138000602,50.59809875488281],[4.719387531280574,50.6027221679688],[4.723093986511344,50.60494613647472],[4.734898567199764,50.60874557495123],[4.743273258209229,50.596889495849666],[4.748872756958008,50.59134674072277],[4.756371021270751,50.59053421020507],[4.762670040130672,50.59263610839855],[4.772855758666992,50.59829711914068],[4.779115200042725,50.6004257202149],[4.790669918060303,50.60276794433605],[4.797270774841309,50.60321044921875],[4.816554546356201,50.603176116943416],[4.823665618896598,50.603435516357536],[4.834124565124625,50.6050758361817],[4.848811149597282,50.60637283325195],[4.858005046844539,50.60569381713873],[4.867044925689697,50.60577392578131],[4.88788461685192,50.60875701904297],[4.895470142364502,50.610988616943416],[4.899568557739257,50.61273193359375],[4.904648303985653,50.61585235595709],[4.909219264984131,50.619411468505916],[4.914490699768123,50.621200561523494],[4.941232204437256,50.625701904296875],[4.948588371276799,50.6261558532716],[4.955821514129696,50.635490417480526],[4.963919162750301,50.64240264892584],[4.966705799102897,50.64415740966808],[4.971055507659969,50.64504241943365],[4.975744724273738,50.64482879638672],[4.990897178649901,50.641307830810604],[4.990725040435848,50.63310623168951],[4.989913940429688,50.62743759155279],[4.987081050872746,50.620742797851555],[4.985814571380672,50.61512756347661],[4.999832630157527,50.60455322265625],[5.004900455474966,50.60006713867193],[5.009727001190242,50.597507476806754],[5.01343679428112,50.59441375732416],[5.018319606781006,50.591899871826165],[5.023402214050293,50.587989807128906],[5.030356407165526,50.58506393432623],[5.035779953003042,50.57768249511719],[5.038270473480337,50.572830200195426],[5.045983791351318,50.56255340576166],[5.04908990859991,50.559646606445426],[5.056023597717342,50.554847717285206],[5.053042411804256,50.54648971557617],[5.048236846923828,50.539886474609375],[5.041014194488582,50.53319549560547],[5.033514022827261,50.52386856079107],[5.032145023346004,50.520915985107415],[5.029245376586857,50.510002136230526],[5.04451227188116,50.511505126953125],[5.053321361541748,50.512966156005916],[5.070198059081974,50.514129638671875],[5.086155891418399,50.5180778503418],[5.096908569335881,50.51868057250982],[5.101803779602051,50.51778793334972],[5.104135990142822,50.51655197143555],[5.107691764831543,50.512149810791016],[5.110570907592887,50.50683212280273],[5.114950180053825,50.503639221191406],[5.121635437011776,50.502113342285156],[5.132845878601074,50.50188064575201],[5.141460418701172,50.50042724609375],[5.145916938781737,50.49425125122076],[5.153983116149959,50.487365722656364],[5.162626266479606,50.47906875610363],[5.171534538269157,50.46862792968756],[5.181001663208065,50.46873474121094],[5.187576293945369,50.46954727172863],[5.192002773285026,50.47100448608404],[5.206289768218994,50.47747039794933],[5.214740276336784,50.470050811767635],[5.219542503356933,50.46254730224615],[5.221206188201904,50.45458221435558],[5.224419593811092,50.44944000244152],[5.22763013839733,50.44629669189459],[5.235603332519531,50.44124603271479],[5.238649368286246,50.43559646606457],[5.241974830627498,50.43136215209966],[5.23785495758068,50.42662429809582],[5.233579158783016,50.41982650756836],[5.228535175323485,50.40628814697277],[5.235250473022517,50.405223846435604],[5.245121955871639,50.402999877929744],[5.258191108703556,50.40199661254894],[5.263683795928955,50.401279449463],[5.271278858184871,50.39908599853526],[5.279173851013296,50.39479064941412],[5.28209400177002,50.391876220703125],[5.286416053772029,50.38368606567394],[5.288509845733699,50.378856658935604],[5.292446613311768,50.37347412109381],[5.297856330871696,50.37003326416021],[5.302789688110352,50.36597824096691],[5.30847692489624,50.363773345947266],[5.315358638763428,50.36343765258795],[5.322180747985839,50.3650741577149],[5.329523563385123,50.36902236938488],[5.345247268676871,50.37941360473633],[5.352109432220572,50.38130187988292],[5.367567539215202,50.38224029541021],[5.377845287323055,50.38354110717785],[5.382594585418815,50.38347244262701],[5.390975475311279,50.38208770751964],[5.398816108703613,50.38139343261719]]]},"properties":{"ID_0":23,"ISO":"BE-WNA","NAME_0":"Belgium","ID_1":3,"NAME_1":"Wallonie","ID_2":12,"NAME_2":"Namur","TYPE_2":"Provincie","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Namen"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/brazil.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/brazil.geojson
new file mode 100644
index 0000000..17be895
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/brazil.geojson
@@ -0,0 +1,29 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-66.80647277832031,-9.81451988220209],[-66.58875274658202,-9.903196334838809],[-66.63828277587885,-9.952140808105469],[-66.7502212524414,-9.99507999420166],[-66.99236297607416,-10.204010009765623],[-67.01644897460938,-10.258200645446664],[-67.13136291503906,-10.293260574340763],[-67.1877670288086,-10.340650558471623],[-67.31526184082031,-10.319379806518498],[-67.31144714355469,-10.372899055480957],[-67.4079360961914,-10.374230384826658],[-67.44438934326172,-10.45528125762928],[-67.5800476074218,-10.503149032592717],[-67.68360137939447,-10.627440452575627],[-67.70793151855463,-10.710809707641602],[-67.82022857666016,-10.661049842834416],[-68.00425720214844,-10.653699874877928],[-68.10623931884766,-10.717230796813965],[-68.10421752929688,-10.775760650634707],[-68.19725799560541,-10.859410285949648],[-68.2383422851562,-10.956472396850584],[-68.38996124267578,-11.042490959167424],[-68.48832702636713,-11.050909996032713],[-68.54354095458979,-11.110361099243107],[-68.71676635742188,-11.145160675048828],[-68.76608276367188,-11.066539764404238],[-68.74891662597656,-11.010899543762207],[-68.88318634033202,-11.010660171508789],[-69.16162872314442,-10.962751388549691],[-69.31207275390625,-10.956351280212346],[-69.42356109619139,-10.92717266082758],[-69.53333282470697,-10.959650993347168],[-69.5987091064453,-10.941499710083008],[-69.73591613769526,-10.974209785461426],[-69.78900909423828,-10.92953872680664],[-69.95445251464844,-10.928730010986271],[-70.09455871582031,-10.989529609680062],[-70.15896606445307,-11.040182113647404],[-70.34787750244135,-11.067590713500975],[-70.43826293945312,-11.026809692382812],[-70.47551727294922,-10.971369743347168],[-70.55108642578125,-10.939208984374943],[-70.62786102294922,-11.003930091857796],[-70.62696075439453,-10.366289138793888],[-70.62670135498045,-9.833668708801213],[-70.52765655517572,-9.723990440368652],[-70.5979766845703,-9.606190681457463],[-70.49446105957026,-9.42999076843256],[-70.58666229248047,-9.443670272827148],[-70.66055297851562,-9.521430015563965],[-70.74697875976557,-9.562990188598633],[-70.79995727539062,-9.641988754272404],[-70.86926269531244,-9.665190696716252],[-70.99816894531249,-9.818079948425236],[-71.05198669433588,-9.815939903259277],[-71.17040252685547,-9.889410018920898],[-71.22229766845697,-9.970390319824162],[-71.37586212158197,-10.000708580017033],[-72.18033599853516,-10.000248908996525],[-72.14660644531244,-9.87427043914795],[-72.15141296386719,-9.797018051147461],[-72.21560668945312,-9.777910232543832],[-72.25887298583973,-9.712698936462346],[-72.28190612792969,-9.542189598083496],[-72.40880584716797,-9.477060317993164],[-72.51763153076172,-9.486050605773869],[-72.71604919433588,-9.412429809570312],[-73.20939636230463,-9.413648605346678],[-73.18131256103516,-9.35459899902338],[-73.0344467163086,-9.23316860198969],[-72.94046020507807,-9.096088409423828],[-72.95246887207026,-8.987269401550291],[-73.03784942626953,-8.902419090270996],[-73.16226196289057,-8.707448005676213],[-73.26788330078125,-8.684700012207031],[-73.34092712402344,-8.583049774169922],[-73.34144592285155,-8.476998329162598],[-73.38812255859364,-8.472510337829533],[-73.5289688110351,-8.350530624389592],[-73.5373764038086,-8.260467529296818],[-73.58316040039062,-8.199200630187988],[-73.59085845947259,-8.11264801025385],[-73.63197326660145,-8.02011966705322],[-73.74674987792969,-7.956039905548038],[-73.76560974121094,-7.870499134063663],[-73.68350219726562,-7.843179225921517],[-73.7019271850586,-7.760611057281437],[-73.8222885131836,-7.715528964996338],[-73.93651580810545,-7.604518890380802],[-73.9446029663086,-7.522879123687743],[-73.91761016845703,-7.434829235076847],[-73.82057189941406,-7.337989807128906],[-73.6926498413086,-7.313790798187199],[-73.71446228027338,-7.220189094543456],[-73.78547668457031,-7.121319770812931],[-73.27481842041009,-7.350334167480468],[-72.65934753417969,-7.624979019164981],[-72.17317962646484,-7.723841190338136],[-72.00514221191406,-7.774846076965331],[-71.56923675537104,-7.874255180358887],[-70.93741607666016,-8.019089698791447],[-70.36952209472649,-8.141402244567814],[-69.43577575683588,-8.641596794128361],[-69.17823028564453,-8.76795864105219],[-68.78499603271477,-8.972588539123478],[-68.62057495117182,-9.048132896423338],[-67.94033813476557,-9.33721923828125],[-67.32801055908202,-9.594555854797306],[-66.80647277832031,-9.81451988220209]]]},"properties":{"ID_0":33,"ISO":"BR-AC","NAME_0":"Brazil","ID_1":1,"NAME_1":"Acre","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-35.151824951171875,-8.909582138061467],[-35.21597290039051,-9.006249427795353],[-35.3073616027832,-9.194026947021484],[-35.39847183227533,-9.304027557373047],[-35.485416412353516,-9.371251106262207],[-35.49819564819336,-9.415415763854924],[-35.678749084472656,-9.602084159851074],[-35.723194122314446,-9.676527023315373],[-35.815139770507756,-9.73319339752197],[-36.05930709838856,-10.085140228271484],[-36.28125,-10.285416603088322],[-36.29375076293945,-10.353471755981444],[-36.3912506103515,-10.501435279846078],[-36.431404113769474,-10.424283981323185],[-36.56361389160145,-10.417773246765137],[-36.5667839050293,-10.332721710205078],[-36.642982482910156,-10.252683639526367],[-36.68416976928711,-10.274503707885742],[-36.836849212646484,-10.202178001403809],[-36.954299926757756,-10.07064437866211],[-36.968685150146484,-9.992102622985783],[-37.0377311706543,-9.989083290100098],[-37.1528434753418,-9.900853157043455],[-37.226463317871094,-9.899447441101074],[-37.28530502319336,-9.830959320068303],[-37.41886520385731,-9.762598991394041],[-37.58171844482416,-9.733977317810059],[-37.711666107177734,-9.631301879882812],[-37.785133361816406,-9.638580322265625],[-37.88607406616199,-9.550169944763127],[-38.003326416015625,-9.515005111694336],[-38.028564453125,-9.46804141998291],[-38.154861450195305,-9.443422317504826],[-38.23633956909174,-9.330999374389592],[-38.20287322998041,-9.296895980834961],[-38.09219741821289,-9.172728538513127],[-37.97925186157226,-9.148381233215332],[-37.839004516601555,-8.978388786315918],[-37.82899475097656,-8.893792152404783],[-37.76020812988281,-8.857633590698242],[-37.643535614013615,-9.018292427062988],[-37.54106903076172,-8.958485603332463],[-37.46926498413086,-9.027680397033691],[-37.31540298461914,-9.094281196594181],[-37.233440399169865,-9.206595420837402],[-37.08388137817383,-9.252321243286076],[-36.95230484008783,-9.382543563842773],[-36.869724273681584,-9.268610000610352],[-36.79700469970703,-9.293032646179197],[-36.69368743896479,-9.275333404541016],[-36.586120605468636,-9.338085174560547],[-36.43685531616205,-9.212104797363281],[-36.36554718017578,-9.222623825073242],[-36.274009704589844,-9.166200637817326],[-36.19557571411127,-9.044831275939941],[-36.123943328857365,-9.03048133850092],[-36.12674331665038,-8.956012725830078],[-35.91111755371094,-8.861369132995605],[-35.78740692138666,-8.85112476348877],[-35.748203277587834,-8.91714382171625],[-35.669788360595696,-8.895236968994027],[-35.51782608032226,-8.817352294921875],[-35.151824951171875,-8.909582138061467]]]},"properties":{"ID_0":33,"ISO":"BR-AL","NAME_0":"Brazil","ID_1":2,"NAME_1":"Alagoas","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-50.40180587768543,2.121249914169425],[-50.31208419799804,1.952916979789734],[-50.35958480834961,1.893195033073425],[-50.43069458007807,1.86736094951641],[-50.493194580078125,1.985416054725647],[-50.50847244262695,2.091249942779655],[-50.40180587768543,2.121249914169425]]],[[[-50.512359619140625,2.191526889801025],[-50.41680526733398,2.118472099304199],[-50.50930404663086,2.099584102630615],[-50.512359619140625,2.191526889801025]]],[[[-50.07069396972645,0.698150992393607],[-50.15738296508778,0.705085992813224],[-50.3471794128418,0.666817009448948],[-50.43649291992182,0.600078999996299],[-50.47615432739258,0.481476008892173],[-50.57986831665039,0.269778013229484],[-50.668140411376896,0.185008004307804],[-50.78474044799805,0.112086996436119],[-50.97479248046874,0.041756998747701],[-51.06561660766601,-0.076251998543739],[-51.21630477905268,-0.118637003004551],[-51.3543968200683,-0.318549007177296],[-51.457733154296875,-0.51325798034668],[-51.59547805786133,-0.650461971759796],[-51.68339157104492,-0.794053971767426],[-51.687171936035156,-1.036034941673279],[-51.80904006958002,-1.157124996185246],[-51.88722991943353,-1.166422009468022],[-51.993343353271484,-1.128998041152954],[-52.10034179687499,-1.22651994228363],[-52.12020492553705,-1.146221995353642],[-52.33293151855469,-1.115913987159729],[-52.41673278808594,-1.025635004043522],[-52.403099060058594,-0.877171993255615],[-52.444263458251896,-0.834191977977753],[-52.516876220703125,-0.858640015125218],[-52.49734878540039,-0.711308002471924],[-52.53512191772461,-0.574110984802189],[-52.63994979858393,-0.584930002689361],[-52.69537734985346,-0.496425986289978],[-52.68411254882807,-0.314339011907578],[-52.851482391357365,-0.150187000632172],[-52.93364715576172,-0.139542996883392],[-52.97723388671875,0.023770000785703],[-53.09406661987305,0.258931994438115],[-53.17525100708002,0.381689995527211],[-53.14381408691406,0.696233987808341],[-53.19021224975586,0.768356978893337],[-53.411434173583984,0.92931699752819],[-53.45718383789057,1.138265013694877],[-53.396018981933594,1.179267048835868],[-53.4387092590332,1.232107043266296],[-53.55662918090814,1.284780025482178],[-53.538490295410156,1.340834975242671],[-53.783660888671875,1.402827978134155],[-53.850280761718686,1.39181494712841],[-53.89593887329095,1.455096960067749],[-53.99946594238281,1.50474405288702],[-54.08868789672845,1.491971015930176],[-54.10188674926757,1.584278941154594],[-54.309246063232415,1.741024017333928],[-54.37765884399408,1.763659954071045],[-54.49588394165038,1.746914982795715],[-54.60185623168939,1.784548997879028],[-54.744716644287045,1.775771975517273],[-54.77152633666986,1.940471053123588],[-54.81127548217768,2.039407968521175],[-54.80619430541992,2.138899087905941],[-54.76305007934564,2.202291011810416],[-54.81135940551758,2.266349077224788],[-54.794185638427734,2.312705993652457],[-54.86752319335937,2.441957950592098],[-54.743125915527344,2.478662014007568],[-54.70319747924805,2.341311931610221],[-54.54849624633789,2.337939023971501],[-54.46967697143548,2.227672100067081],[-54.37231826782221,2.216506004333553],[-54.33214950561518,2.163784980773982],[-54.181068420410156,2.179197072982788],[-54.11005401611322,2.128946065902767],[-54.08483505249023,2.191226005554256],[-53.95952606201172,2.236998081207332],[-53.942764282226506,2.288712024688778],[-53.829345703125,2.314709901809749],[-53.78903198242181,2.365223884582576],[-53.67853927612305,2.286102056503353],[-53.460384368896484,2.331587076187247],[-53.42184829711914,2.286181926727409],[-53.272804260253906,2.293842077255306],[-53.175830841064396,2.221817016601562],[-53.07341766357416,2.223311901092586],[-52.986690521240234,2.171376943588257],[-52.90116882324213,2.193671941757145],[-52.8527946472168,2.286691904068107],[-52.67211914062494,2.375355005264339],[-52.55472564697254,2.523370981216544],[-52.54964065551752,2.615036010742301],[-52.42778015136713,2.88460111618042],[-52.39543914794916,2.8982350826264],[-52.326900482177734,3.088793039321899],[-52.34651565551752,3.135360002517814],[-52.279541015625,3.236496925353947],[-52.228004455566406,3.250556945800895],[-51.9211311340332,3.773808002471924],[-51.79540634155267,3.889528989791984],[-51.75304412841791,3.997621059417838],[-51.65777206420892,4.050793170928955],[-51.60593032836914,4.236526966095028],[-51.55541610717773,4.259028911590576],[-51.57208251953125,4.349306106567382],[-51.51069259643554,4.441249847412052],[-51.40152740478509,4.37041711807251],[-51.21486282348633,4.149306774139461],[-51.174861907958984,4.01013803482067],[-51.12458419799798,3.909029006958121],[-51.0756950378418,3.891804933548087],[-51.08763885498046,3.73791599273693],[-51.07958221435535,3.489583969116211],[-51.088470458984375,3.362637996673584],[-51.03125,3.209861040115356],[-51.04152679443354,3.129582881927547],[-50.94458389282226,2.81847190856945],[-50.88513946533203,2.742916107177848],[-50.84597396850586,2.639581918716374],[-50.833473205566406,2.512083053588867],[-50.79597091674805,2.500416040420532],[-50.722084045410156,2.281527996063289],[-50.72541809082031,2.238472938537654],[-50.59624862670893,2.063193082809391],[-50.58986282348627,1.993193984031791],[-50.534027099609375,1.942360043525753],[-50.45986175537103,1.815417051315364],[-50.40013885498047,1.80152797698986],[-50.17124938964844,1.815139055252189],[-50.02069473266596,1.75680494308483],[-49.925415039062436,1.699028968811035],[-49.8979148864746,1.597638964653072],[-49.876804351806584,1.346528053283691],[-49.91986083984375,1.2801389694215],[-49.86680603027344,1.196805000305233],[-49.91069412231445,1.132359981536865],[-49.90986251831055,1.02236199378973],[-50.059028625488224,0.804584026336784],[-50.07069396972645,0.698150992393607]]]]},"properties":{"ID_0":33,"ISO":"BR-AP","NAME_0":"Brazil","ID_1":3,"NAME_1":"Amapá","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-63.37227630615235,2.211709022521973],[-63.28274154663085,2.153851032257194],[-63.14146041870105,2.172419071197567],[-63.119785308837834,2.09642505645752],[-63.02373504638672,2.014641046524162],[-62.94843673706043,2.031012058258113],[-62.838783264160156,2.016442060470638],[-62.70597839355462,1.939694046974239],[-62.73101806640625,1.818204998970146],[-62.72369384765624,1.712357044220028],[-62.80523300170898,1.591317057609558],[-62.73075103759765,1.499606013298035],[-62.63732528686517,1.433696031570491],[-62.58685684204101,1.255452036857719],[-62.521034240722656,1.083786964416561],[-62.44573593139643,0.976824998855591],[-62.486011505126946,0.866508007049561],[-62.45768356323242,0.785170018672943],[-62.528518676757756,0.710179984569663],[-62.532958984375,0.508795976638908],[-62.4462890625,0.379056006669998],[-62.46684265136719,0.332935005426407],[-62.452686309814396,0.207388997077942],[-62.414897918701165,0.074350997805652],[-62.34656143188471,0.029581999406219],[-62.31968307495105,-0.102550998330059],[-62.244983673095646,-0.174740001559258],[-62.253597259521484,-0.271405011415482],[-62.18831634521484,-0.33084499835968],[-62.22720718383788,-0.425850987434387],[-62.273880004882756,-0.454183012247029],[-62.31832122802729,-0.552519977092743],[-62.287483215332024,-0.638356983661595],[-62.36713027954101,-0.710099995136147],[-62.46962738037109,-0.693991005420571],[-62.50102233886718,-0.781491994857788],[-62.39574432373047,-0.820378005504551],[-62.31268692016596,-0.930381000041905],[-62.17185211181635,-1.005936026573124],[-62.09962463378906,-1.096766948699951],[-62.017402648925774,-1.141767978668213],[-61.89656829833984,-1.395378947257995],[-61.7979507446289,-1.380653023719731],[-61.60489654541009,-1.448155045509338],[-61.58211517333984,-1.35342895984644],[-61.62684631347657,-1.293992042541447],[-61.546566009521484,-1.071213006973267],[-61.578506469726555,-0.910099029540959],[-61.54351043701172,-0.852321982383728],[-61.53878784179682,-0.756218016147614],[-61.45684051513672,-0.657051026821023],[-61.348411560058594,-0.595547974109536],[-61.224056243896484,-0.559547007083893],[-61.22295379638661,-0.505658984184208],[-61.08739471435547,-0.500109016895181],[-60.97545242309564,-0.562602996826058],[-60.76100540161133,-0.761493980884552],[-60.75266265869135,-0.861208975315037],[-60.65461349487305,-0.883157014846802],[-60.591278076171875,-0.85343199968338],[-60.53100204467774,-0.875101983547154],[-60.47905731201166,-0.770938992500305],[-60.434608459472656,-0.772605001926365],[-60.303565979003906,-0.711292028427067],[-60.3998908996582,-0.510107994079533],[-60.34463500976562,-0.440634995698929],[-60.289882659911996,-0.293161988258305],[-60.285720825195305,-0.21065500378603],[-60.22043991088861,-0.135381996631622],[-60.20321273803712,-0.033615998923722],[-60.14316177368163,0.037388000637407],[-60.11622619628906,0.133212000131607],[-60.059017181396484,0.162971004843769],[-60.03789520263666,0.263489991426525],[-59.43348693847656,0.26350998878479],[-58.89534759521484,0.263505995273647],[-58.89498519897462,-0.010986000299454],[-58.8638191223144,-0.078055001795292],[-58.8809700012207,-0.196603998541832],[-58.87200164794921,-0.3430179953574],[-58.72515487670893,-0.442243993282261],[-58.71068572998041,-0.521494984626713],[-58.731933593749936,-0.62738299369812],[-58.560569763183544,-0.804641008377018],[-58.45898056030267,-0.86401700973505],[-58.4146957397461,-0.967077016830444],[-58.43001556396479,-1.027140974998474],[-58.36842727661132,-1.06604599952692],[-58.323223114013665,-1.143318057060242],[-58.25470352172845,-1.132614970207101],[-58.16258239746088,-1.229681015014648],[-58.081790924072266,-1.126505017280579],[-58.01747894287109,-1.106174945831242],[-57.96542739868164,-1.206107974052372],[-57.99632263183593,-1.344344973564148],[-57.91846084594721,-1.419831991195622],[-57.82397460937499,-1.439780950546265],[-57.773262023925774,-1.508823037147465],[-57.71310043334961,-1.504171013832092],[-57.6786155700683,-1.594360947608948],[-57.5900650024414,-1.580122947692814],[-57.47513961791992,-1.678024053573608],[-57.41187286376947,-1.673305988311768],[-57.352005004882805,-1.733189940452575],[-57.274333953857365,-1.709761023521423],[-57.097793579101555,-1.775128960609436],[-57.03714370727539,-1.91157603263855],[-56.85898208618164,-2.015949010848885],[-56.747821807861264,-2.01152491569519],[-56.72126770019531,-2.04914903640747],[-56.76936721801752,-2.140695095062256],[-56.67900848388672,-2.212585926055908],[-56.612850189208984,-2.210192918777409],[-56.52700424194335,-2.139218091964721],[-56.413818359375,-2.175971984863281],[-56.22831344604492,-2.056241989135742],[-56.09857559204096,-2.02708196640009],[-56.16936492919922,-2.145530939102116],[-56.263435363769474,-2.221077919006348],[-56.384254455566406,-2.270495891570988],[-56.46442413330078,-2.431615114212036],[-56.402095794677734,-2.456638097763004],[-56.57588577270502,-2.824132919311523],[-56.887176513671875,-3.499067068099976],[-57.01884460449213,-3.798324108123779],[-57.24941253662109,-4.287967205047607],[-57.54801940917968,-4.921609878539925],[-57.861320495605405,-5.60112285614008],[-58.26248550415039,-6.468937873840332],[-58.32557296752925,-6.499310016632023],[-58.34982299804677,-6.562417030334473],[-58.42724227905267,-6.61618423461914],[-58.478408813476555,-6.699629783630314],[-58.48168945312495,-6.781438827514591],[-58.434490203857365,-6.908822059631291],[-58.33872222900385,-6.983938217163086],[-58.18325424194335,-7.178287029266357],[-58.16994476318354,-7.313237190246582],[-58.13698959350585,-7.356139183044376],[-58.21294403076167,-7.458469867706299],[-58.20204544067383,-7.620935916900635],[-58.28091812133788,-7.70964002609253],[-58.29478836059564,-7.772321224212532],[-58.382881164550724,-7.839098930358829],[-58.37332534790039,-7.907220840454101],[-58.29157638549805,-8.074268341064453],[-58.32252883911127,-8.17001247406],[-58.3184928894043,-8.330199241638184],[-58.4169921875,-8.492003440856934],[-58.39117050170898,-8.592260360717773],[-58.43735504150385,-8.703430175781191],[-58.394840240478516,-8.779890060424691],[-58.50029373168939,-8.80283737182617],[-59.12720489501953,-8.80335807800293],[-59.85696792602538,-8.801086425781193],[-60.42017364501953,-8.796627998351994],[-60.84881591796869,-8.798162460327148],[-61.58290100097656,-8.798702239990178],[-61.62641143798828,-8.728866577148438],[-61.74179458618164,-8.695208549499455],[-61.77454757690423,-8.748244285583437],[-61.84405136108393,-8.747397422790527],[-61.85969161987299,-8.852987289428711],[-61.99016571044916,-8.872673988342285],[-62.03100585937488,-8.799722671508732],[-62.12491989135737,-8.801686286926213],[-62.18833923339838,-8.59057426452631],[-62.26883697509759,-8.575773239135685],[-62.36600112915033,-8.493574142455998],[-62.36075210571283,-8.398563385009652],[-62.465423583984375,-8.339750289916935],[-62.51842117309565,-8.384754180908203],[-62.58533859252925,-8.271894454956053],[-62.649898529052734,-8.237038612365723],[-62.69223403930664,-8.092922210693358],[-62.866573333740234,-7.97588396072382],[-63.50049972534173,-7.976333141326847],[-63.62075805664057,-7.969308853149414],[-63.62174987792968,-8.029622077941893],[-63.69339370727539,-8.158363342285156],[-63.72273254394531,-8.249509811401367],[-63.79120635986328,-8.333227157592773],[-63.87073516845692,-8.288831710815371],[-63.94409942626953,-8.33119869232172],[-63.94081497192377,-8.452274322509766],[-63.97315597534174,-8.47845935821533],[-63.92454528808594,-8.575535774230957],[-63.986186981201165,-8.585645675659178],[-64.03546142578125,-8.693568229675293],[-64.14305114746094,-8.743041038513184],[-64.15818786621094,-8.84317684173584],[-64.14175415039055,-8.945060729980469],[-64.2331924438476,-8.992317199706974],[-64.31130981445307,-8.996479034423828],[-64.3233871459961,-8.928870201110783],[-64.44656372070301,-8.97687816619873],[-64.55011749267572,-8.978278160095101],[-64.58795928955072,-9.009517669677734],[-64.87057495117188,-9.012198448181096],[-64.93994140625,-9.124572753906193],[-64.91969299316406,-9.220285415649357],[-65.00053405761713,-9.304619789123533],[-65.05356597900385,-9.402147293090763],[-65.14290618896479,-9.446814537048283],[-65.18685150146484,-9.415031433105469],[-65.21179962158202,-9.278998374938963],[-65.24668884277338,-9.257667541503906],[-65.37754821777344,-9.324430465698185],[-65.44024658203124,-9.311749458312988],[-65.45664215087889,-9.401209831237734],[-65.5031967163086,-9.469978332519531],[-65.59682464599608,-9.413866043090763],[-65.67948913574219,-9.451392173767033],[-65.72360229492182,-9.559058189392033],[-65.80007934570307,-9.585020065307617],[-65.82514190673828,-9.530090332031193],[-65.91270446777344,-9.483749389648322],[-65.97037506103516,-9.41315746307373],[-66.12397003173822,-9.408774375915527],[-66.17372131347656,-9.434416770935002],[-66.25975799560541,-9.410989761352539],[-66.37487792968744,-9.426360130310059],[-66.3925170898437,-9.500473022460938],[-66.50071716308594,-9.633559226989744],[-66.77551269531244,-9.753079414367619],[-66.80647277832031,-9.81451988220209],[-67.32801055908202,-9.594555854797306],[-67.94033813476557,-9.33721923828125],[-68.62057495117182,-9.048132896423338],[-68.78499603271477,-8.972588539123478],[-69.17823028564453,-8.76795864105219],[-69.43577575683588,-8.641596794128361],[-70.36952209472649,-8.141402244567814],[-70.93741607666016,-8.019089698791447],[-71.56923675537104,-7.874255180358887],[-72.00514221191406,-7.774846076965331],[-72.17317962646484,-7.723841190338136],[-72.65934753417969,-7.624979019164981],[-73.27481842041009,-7.350334167480468],[-73.78547668457031,-7.121319770812931],[-73.72902679443354,-6.996188163757324],[-73.7616577148437,-6.938489913940429],[-73.71192169189453,-6.842709064483643],[-73.63437652587889,-6.751539230346679],[-73.53961181640625,-6.686038970947209],[-73.38732147216791,-6.638120174407959],[-73.351806640625,-6.593729972839355],[-73.20011901855463,-6.569279193878174],[-73.1304702758789,-6.497288227081299],[-73.10190582275385,-6.402639865875243],[-73.16124725341797,-6.269429206848145],[-73.24559020996094,-6.143589019775334],[-73.235610961914,-6.031070232391357],[-73.194107055664,-6.004109859466495],[-73.1526489257812,-5.867741107940674],[-73.0539474487304,-5.793440818786621],[-72.96015930175781,-5.655599117279053],[-72.95970153808588,-5.46451997756958],[-72.87153625488281,-5.288690090179443],[-72.88823699951172,-5.160579204559326],[-72.71373748779297,-5.050389766693115],[-72.62078094482416,-5.04905891418457],[-72.59796142578125,-4.993480205535889],[-72.38257598876953,-4.85969877243042],[-72.36590576171875,-4.802659034728947],[-72.21568298339844,-4.767758846282902],[-72.10221099853516,-4.706480026245116],[-72.03674316406244,-4.637180805206242],[-71.98161315917963,-4.624519824981689],[-71.90091705322266,-4.529149055480843],[-71.78704833984375,-4.482439041137638],[-71.63445281982422,-4.508601188659667],[-71.37776184082026,-4.42460823059082],[-71.28327178955078,-4.441648960113525],[-71.23336029052727,-4.382389068603516],[-70.91744232177734,-4.361649036407414],[-70.80227661132812,-4.183669090270939],[-70.7483291625976,-4.160419940948429],[-70.67273712158203,-4.196300029754639],[-70.43667602539055,-4.132260799407959],[-70.29081726074219,-4.161428928375187],[-70.26021575927734,-4.308361053466797],[-70.20445251464838,-4.323838233947753],[-70.15158081054688,-4.271409034729004],[-70.07251739501953,-4.286368846893254],[-70.03240203857416,-4.362921237945557],[-69.9720687866211,-4.328339099884033],[-69.92212677001953,-4.161762237548771],[-69.77787780761713,-3.398278951644897],[-69.60833740234375,-2.444499015808105],[-69.44790649414057,-1.552427053451538],[-69.45211791992176,-1.475772976875191],[-69.3683471679687,-1.333701014518738],[-69.37514495849604,-1.173308968544006],[-69.43773651123047,-1.028684020042419],[-69.6087417602539,-0.754770994186344],[-69.55122375488281,-0.648002982139531],[-69.58978271484375,-0.523705005645638],[-69.7307357788086,-0.456755995750427],[-69.85031127929688,-0.335229992866402],[-69.90786743164057,-0.315768003463745],[-70.0680160522461,-0.134780004620552],[-70.03565216064447,0.370530009269828],[-70.03740692138672,0.545669972896576],[-69.91002655029297,0.589940011501312],[-69.79837036132807,0.584740996360779],[-69.65103149414057,0.67010098695755],[-69.46820831298822,0.734350025653953],[-69.35872650146479,0.622600018978119],[-69.29498291015625,0.648280978202877],[-69.2015380859375,0.601750016212577],[-69.11412048339838,0.652159988880157],[-69.18350219726562,0.730421006679592],[-69.13697814941405,0.868458986282462],[-69.25672149658203,1.025501012802238],[-69.32923889160156,1.062461018562374],[-69.4163818359375,1.023691058158818],[-69.45574951171875,1.056310057640076],[-69.60822296142572,1.073590040207023],[-69.70034027099604,1.055639982223568],[-69.75318145751947,1.095939993858394],[-69.85407257080072,1.06974995136261],[-69.85518646240234,1.714920997619686],[-69.74017333984375,1.735309958457947],[-69.65438079833979,1.725769996643123],[-69.5557403564453,1.775200009346008],[-69.39456176757812,1.725669026374874],[-68.91101837158203,1.726500988006705],[-68.21346282958977,1.729490995407161],[-68.2532730102539,1.88955998420721],[-68.21878051757812,2.00652003288269],[-68.12281799316406,1.965751051902885],[-67.94151306152344,1.830700993537959],[-67.77960968017578,2.031029939651546],[-67.62000274658197,2.023641109466553],[-67.55107879638672,2.141680002212581],[-67.38941192626942,2.243980884552116],[-67.34364318847656,2.205440998077393],[-67.3370132446289,2.098059892654419],[-67.2782211303711,1.875709056854248],[-67.15718078613276,1.848811030387992],[-67.09749603271473,1.732571005821341],[-67.07244873046875,1.442571043968201],[-67.0882797241211,1.166870951652641],[-66.8570327758789,1.230180978775138],[-66.31851196289055,0.755015015602169],[-66.2130279541015,0.780620992183742],[-66.151138305664,0.744445025920982],[-66.07010650634766,0.805031001567841],[-65.97141265869139,0.80600601434719],[-65.9366226196289,0.882111012935638],[-65.76722717285156,0.964021027088165],[-65.73944854736321,0.999559998512325],[-65.58557891845703,1.008911013603324],[-65.50837707519526,0.915509998798427],[-65.56416320800776,0.675684988498745],[-65.4527740478515,0.685415029525814],[-65.3974838256836,0.749894022941646],[-65.3980407714843,0.821299016475621],[-65.3291625976562,0.931541025638694],[-65.24081420898438,0.921020984649772],[-65.16498565673828,0.950451016426143],[-65.15505981445311,1.124938964843807],[-65.10308837890625,1.156630992889404],[-65.02224731445312,1.114920020103455],[-64.90663146972656,1.241580963134822],[-64.81051635742188,1.314355969429073],[-64.76385498046864,1.230741024017277],[-64.72245788574213,1.238456010818538],[-64.59078979492188,1.337383985519523],[-64.53134155273432,1.435191035270691],[-64.3513412475586,1.518244981765861],[-64.39995574951172,1.394845962524414],[-64.34272766113281,1.384297966957149],[-64.30216979980463,1.468256950378418],[-64.14411163330078,1.582406997680721],[-64.06522369384766,1.675981998443717],[-64.07799530029297,1.759013056755066],[-64.0618896484375,1.930709958076534],[-63.975494384765625,1.991278052330131],[-63.82965850830078,1.968201041221675],[-63.56187057495117,2.13233304023754],[-63.492427825927734,2.115437984466553],[-63.39770126342768,2.146856069564933],[-63.37227630615235,2.211709022521973]],[[-58.880996704101506,-2.230698108673096],[-59.10951995849598,-2.297424077987671],[-59.172931671142514,-2.385824918746891],[-59.19425582885742,-2.471970081329232],[-59.08237075805664,-2.575264930724984],[-58.9881134033202,-2.560648918151855],[-58.84976577758789,-2.602458953857422],[-58.78046798706048,-2.588226079940739],[-58.68451309204101,-2.663264036178532],[-58.503234863281186,-2.702739000320377],[-58.45517730712885,-2.652472972869759],[-58.30434036254883,-2.611609935760498],[-58.195510864257756,-2.66473388671875],[-58.179023742675774,-2.750073909759465],[-58.110351562499886,-2.859220027923584],[-58.04008483886719,-2.807538032531738],[-57.95814132690424,-2.79679894447321],[-57.93418502807611,-2.72746300697321],[-57.938423156738274,-2.620711088180485],[-58.01646041870117,-2.653731107711735],[-58.17984390258783,-2.576024055480843],[-58.33905029296874,-2.40510702133173],[-58.364166259765625,-2.340750932693425],[-58.45945739746088,-2.302951097488403],[-58.56169128417962,-2.319912910461426],[-58.61033248901361,-2.295039892196655],[-58.73013305664057,-2.347038984298706],[-58.78485488891595,-2.263783931732121],[-58.880996704101506,-2.230698108673096]]]},"properties":{"ID_0":33,"ISO":"BR-AM","NAME_0":"Brazil","ID_1":4,"NAME_1":"Amazonas","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Amazone"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-38.68458175659168,-12.879027366638184],[-38.60680389404297,-12.948751449584904],[-38.658748626708984,-13.03458309173584],[-38.79041671752924,-13.132081985473633],[-38.79458236694336,-13.052638053893986],[-38.6695823669433,-12.959583282470645],[-38.68458175659168,-12.879027366638184]]],[[[-39.66986083984375,-18.3498592376709],[-39.68887329101557,-18.320823669433594],[-40.22235107421869,-17.980426788330078],[-40.26342010498047,-17.921983718872013],[-40.17503356933594,-17.852672576904293],[-40.22388076782221,-17.734062194824162],[-40.280296325683594,-17.722782135009766],[-40.341587066650334,-17.619953155517578],[-40.39675140380859,-17.62560081481922],[-40.46035385131836,-17.568498611450195],[-40.52056503295893,-17.446502685546875],[-40.59967803955078,-17.390346527099553],[-40.55380249023437,-17.189027786254883],[-40.57830047607421,-17.147172927856445],[-40.54542160034179,-16.98429298400879],[-40.49114227294922,-16.88448524475092],[-40.366424560546875,-16.874168395996094],[-40.281581878662045,-16.90118217468256],[-40.25774383544916,-16.80653953552246],[-40.33577728271473,-16.779710769653317],[-40.275447845458984,-16.574026107788086],[-40.171150207519474,-16.52414894104004],[-40.02476501464838,-16.35689926147461],[-39.96044921875,-16.32189750671381],[-39.88332366943354,-16.194690704345703],[-39.85676193237305,-16.113826751708984],[-39.922134399414006,-16.028623580932617],[-40.00437164306629,-16.001834869384766],[-40.074783325195305,-15.920050621032656],[-40.15976333618163,-15.908464431762694],[-40.231052398681584,-15.803847312927244],[-40.42497253417969,-15.805704116821175],[-40.460578918456974,-15.753732681274412],[-40.56199264526367,-15.80328369140625],[-40.62933349609375,-15.715712547302246],[-40.69929885864252,-15.66862106323242],[-40.855396270751896,-15.687154769897402],[-40.96222305297846,-15.648887634277344],[-41.00712585449213,-15.713836669921875],[-41.16939926147461,-15.760518074035643],[-41.215225219726506,-15.737250328063851],[-41.33115005493164,-15.744673728942814],[-41.356365203857365,-15.500288963317871],[-41.8006591796875,-15.101098060607853],[-41.95338058471673,-15.175666809082031],[-42.09601974487305,-15.182447433471621],[-42.153297424316406,-15.099364280700684],[-42.26474761962885,-15.125177383422852],[-42.44287109375,-15.060606956481875],[-42.43674850463867,-15.022719383239744],[-42.62565994262695,-14.944699287414439],[-42.75508880615234,-14.846421241760252],[-42.90583801269531,-14.761046409606879],[-42.952644348144474,-14.708402633666879],[-43.176300048828125,-14.650548934936522],[-43.311180114746094,-14.669751167297305],[-43.461223602294865,-14.746230125427246],[-43.51111221313471,-14.796578407287539],[-43.71981048583984,-14.729543685913027],[-43.883460998535156,-14.65323352813715],[-43.87383270263672,-14.520586013793945],[-43.78314590454101,-14.33924674987793],[-43.98632431030268,-14.26755428314209],[-44.03445816040039,-14.288872718811033],[-44.24056243896478,-14.240703582763672],[-44.430301666259766,-14.289395332336367],[-44.55715179443359,-14.337038040161074],[-44.81376647949219,-14.504664421081543],[-44.87590789794916,-14.599662780761717],[-45.039478302001896,-14.680257797241154],[-45.09541320800781,-14.752880096435488],[-45.16641235351557,-14.735305786132812],[-45.49000549316395,-14.960762977600098],[-45.566082000732365,-14.944863319396916],[-45.67469406127924,-15.080490112304686],[-45.73033905029296,-15.11675834655756],[-45.91841125488281,-15.133514404296875],[-46.02799987792969,-15.201348304748533],[-46.04367065429682,-15.118131637573242],[-45.97547149658203,-15.038911819457951],[-45.96603012084961,-14.965646743774414],[-46.0373649597168,-14.874085426330565],[-45.98478317260742,-14.620813369750975],[-45.99877166748041,-14.429388999938965],[-45.927589416503906,-14.410319328308105],[-45.96321868896472,-14.285907745361328],[-46.01829147338867,-14.260635375976562],[-46.236347198486214,-14.1072416305542],[-46.21628189086914,-13.980290412902832],[-46.26808547973627,-13.943761825561523],[-46.22863769531249,-13.774501800537053],[-46.255924224853516,-13.693898200988768],[-46.161914825439446,-13.590933799743652],[-46.238639831542855,-13.554588317871037],[-46.214309692382756,-13.400718688964844],[-46.133975982666016,-13.375231742858887],[-46.04842376708984,-13.30920124053955],[-46.063758850097656,-13.261308670043944],[-46.279338836669865,-13.347900390625],[-46.330116271972656,-13.25281524658203],[-46.29492950439453,-13.13130855560297],[-46.322612762451165,-13.098286628723086],[-46.27332687377924,-13.014960289001408],[-46.12579345703119,-12.961482048034611],[-46.11459732055664,-12.918439865112248],[-46.30473709106445,-12.94987869262684],[-46.26226043701166,-12.831681251525879],[-46.29014587402344,-12.63176441192627],[-46.25905990600586,-12.548623085021973],[-46.16061401367181,-12.528590202331486],[-46.15962600708008,-12.474560737609806],[-46.24893188476557,-12.436996459960936],[-46.37432098388666,-12.289812088012695],[-46.37356567382806,-12.015480995178164],[-46.28494644165039,-11.885949134826602],[-46.37453460693347,-11.868609428405762],[-46.31504821777344,-11.644654273986816],[-46.1870002746582,-11.606145858764648],[-46.31340408325184,-11.539497375488281],[-46.41714477539057,-11.539184570312443],[-46.52001190185547,-11.483555793762205],[-46.549259185791016,-11.380727767944279],[-46.615894317626896,-11.302206993103027],[-46.58201217651367,-11.24677944183338],[-46.472312927246094,-11.191190719604492],[-46.39888381958008,-10.994400978088377],[-46.2833671569823,-10.906757354736326],[-46.19251251220703,-10.719710350036621],[-46.2109260559082,-10.649677276611271],[-46.05942535400385,-10.593470573425293],[-46.024978637695256,-10.542787551879883],[-45.864749908447266,-10.43889141082758],[-45.82239913940429,-10.364042282104492],[-45.75107955932617,-10.351987838745059],[-45.6960334777832,-10.257701873779297],[-45.72283935546875,-10.155317306518553],[-45.60313415527344,-10.10799503326416],[-45.51708221435541,-10.286556243896484],[-45.430271148681584,-10.359477043151799],[-45.402969360351555,-10.465340614318848],[-45.44720840454101,-10.507431983947697],[-45.43587112426758,-10.61988353729248],[-45.358169555664006,-10.732215881347656],[-45.24800491333007,-10.821977615356388],[-45.073184967041016,-10.840432167053164],[-44.93117141723633,-10.928766250610295],[-44.80839538574213,-10.86501407623291],[-44.78801345825195,-10.808530807495059],[-44.71336364746093,-10.762051582336367],[-44.58946990966796,-10.632429122924805],[-44.4795036315918,-10.640474319457951],[-44.33560180664062,-10.548977851867676],[-44.26397323608398,-10.624679565429688],[-44.16549301147461,-10.642908096313477],[-44.07254028320307,-10.58034133911127],[-44.0257949829101,-10.475481033325195],[-44.029273986816406,-10.416398048400877],[-43.919605255126946,-10.4252347946167],[-43.83811950683588,-10.303832054138184],[-43.83609390258789,-10.248900413513184],[-43.7790412902832,-10.180476188659611],[-43.759181976318246,-10.074614524841252],[-43.69287109374994,-10.077402114868164],[-43.66597747802729,-9.99023723602295],[-43.708992004394474,-9.913228988647404],[-43.65319824218744,-9.839065551757756],[-43.784873962402344,-9.762393951415959],[-43.841907501220696,-9.637437820434569],[-43.8496475219726,-9.548064231872502],[-43.76968002319336,-9.44206142425537],[-43.68676757812494,-9.41806411743164],[-43.574531555175724,-9.318100929260197],[-43.46162033081049,-9.261788368225098],[-43.28507232666009,-9.420036315917912],[-43.11994934082031,-9.372548103332463],[-43.01207733154296,-9.408011436462402],[-42.9572868347168,-9.43400859832758],[-42.94620132446289,-9.518424034118596],[-42.82050704956055,-9.619240760803223],[-42.76512145996094,-9.616759300231877],[-42.71684646606445,-9.556286811828612],[-42.6215934753418,-9.541241645812988],[-42.451717376708984,-9.462111473083496],[-42.31911468505853,-9.320263862609863],[-42.2436790466308,-9.288926124572697],[-42.10048294067383,-9.281038284301701],[-41.97221755981445,-9.24864864349365],[-41.924720764160156,-9.277806282043457],[-41.83791732788086,-9.242280960083008],[-41.80001831054682,-9.148036956787053],[-41.68040084838867,-9.012293815612736],[-41.5447998046875,-8.937994003295842],[-41.48779678344721,-8.843913078308104],[-41.424175262451115,-8.802478790283203],[-41.35826873779291,-8.70764446258545],[-41.281482696533196,-8.73610782623291],[-41.2269287109375,-8.704716682433968],[-41.11552429199219,-8.7040433883667],[-41.10171127319336,-8.781975746154785],[-41.03618621826172,-8.78588676452631],[-40.921287536621094,-8.835457801818789],[-40.851543426513665,-8.952515602111816],[-40.81993484497064,-9.080411911010742],[-40.66735458374018,-9.159086227416992],[-40.68057632446289,-9.25909233093256],[-40.73722839355469,-9.336896896362248],[-40.722145080566406,-9.445964813232363],[-40.62311553955067,-9.482916831970213],[-40.435829162597656,-9.362183570861816],[-40.3580589294433,-9.377203941345215],[-40.307762145996094,-9.271409034729004],[-40.27166366577142,-9.080998420715332],[-40.2112197875976,-9.062611579894961],[-40.12865447998047,-9.109613418579102],[-40.06558227539057,-9.063199996948185],[-39.957969665527344,-9.048619270324707],[-39.87389373779291,-8.93132495880127],[-39.87300109863281,-8.822653770446777],[-39.67452621459961,-8.787080764770508],[-39.691074371337834,-8.66233730316162],[-39.607524871826115,-8.656001091003361],[-39.38367080688476,-8.533636093139592],[-39.288513183593686,-8.56331539154047],[-39.23371124267567,-8.705780029296873],[-39.036960601806584,-8.735584259033145],[-38.94361877441406,-8.804259300231934],[-38.7945671081543,-8.795634269714299],[-38.70646286010742,-8.862276077270451],[-38.69283676147461,-8.935147285461426],[-38.64063262939453,-8.987286567687931],[-38.571155548095646,-8.831610679626465],[-38.469890594482365,-8.865496635437012],[-38.51937484741205,-8.948366165161133],[-38.40837860107416,-9.038521766662598],[-38.32055282592767,-8.991079330444336],[-38.31856536865223,-9.141016960144043],[-38.23739242553705,-9.329692840576172],[-38.20287322998041,-9.296895980834961],[-38.23633956909174,-9.330999374389592],[-38.154861450195305,-9.443422317504826],[-38.028564453125,-9.46804141998291],[-38.003326416015625,-9.515005111694336],[-38.04032516479492,-9.573088645935057],[-38.00691604614258,-9.651735305786076],[-38.03981399536133,-9.686598777770996],[-38.02811050415039,-9.776082038879393],[-37.97256469726557,-9.814451217651367],[-37.99764251708979,-9.910760879516602],[-37.967998504638665,-9.962568283081055],[-37.83168792724604,-10.00092601776123],[-37.77428436279291,-10.144798278808592],[-37.73606872558594,-10.33335113525385],[-37.83060073852539,-10.374975204467717],[-37.8590202331543,-10.426471710205078],[-37.81295776367187,-10.50849437713623],[-37.83033370971679,-10.58470439910883],[-37.81383514404297,-10.69104957580555],[-37.99977111816406,-10.764384269714299],[-38.05820465087885,-10.708579063415527],[-38.211856842041016,-10.709162712097111],[-38.24000549316406,-10.880989074707031],[-38.17595672607416,-10.985304832458494],[-38.111526489257805,-11.009933471679686],[-38.072307586669865,-11.152892112731932],[-37.98110198974609,-11.199104309081974],[-38.00328826904297,-11.28950309753418],[-37.96784591674805,-11.390617370605353],[-37.8679237365722,-11.442428588867186],[-37.81365585327143,-11.51431274414051],[-37.67018127441406,-11.564008712768498],[-37.671234130859375,-11.672359466552734],[-37.61129379272455,-11.650357246398924],[-37.54513931274414,-11.54747009277338],[-37.39180374145508,-11.511528015136662],[-37.51985931396473,-11.754861831664982],[-37.61125183105469,-11.95763874053955],[-37.754859924316406,-12.213472366332951],[-37.95569610595703,-12.492082595825194],[-37.99514007568354,-12.56791591644287],[-38.317081451416016,-12.927360534667912],[-38.4681930541991,-13.014305114746094],[-38.48485946655268,-12.92097282409668],[-38.47069549560547,-12.814028739929142],[-38.51097106933594,-12.737083435058537],[-38.6198616027832,-12.725972175598088],[-38.697639465331974,-12.629027366638125],[-38.75569534301752,-12.709304809570312],[-38.792640686035156,-12.841805458068848],[-38.75513839721674,-12.900138854980469],[-38.81041717529296,-13.108751296997069],[-38.86652755737299,-13.185972213745117],[-38.931804656982415,-13.22013854980463],[-38.965137481689396,-13.29291629791254],[-38.95319366455078,-13.403194427490234],[-38.89125061035156,-13.451250076293887],[-38.9323616027832,-13.579861640930119],[-38.89097213745117,-13.640418052673338],[-38.963470458984375,-13.6859712600708],[-39.00069427490229,-13.767640113830508],[-38.98236083984375,-13.831250190734806],[-39.07819366455078,-13.958749771118162],[-38.963748931884766,-13.973195075988656],[-38.99097061157221,-14.201250076293945],[-38.97986221313476,-14.291250228881779],[-39.06236267089844,-14.624027252197209],[-39.05902862548828,-14.771805763244627],[-39.029304504394474,-14.78458309173584],[-38.99791717529297,-14.985416412353514],[-38.99791717529297,-15.230137825012092],[-38.94263839721674,-15.527359962463322],[-38.93736267089844,-15.655415534973145],[-38.85569381713867,-15.856527328491154],[-38.953472137451165,-16.10124969482422],[-38.94819259643555,-16.151250839233395],[-39.0212516784668,-16.260139465331974],[-39.00902938842773,-16.374582290649414],[-39.060138702392464,-16.428192138671818],[-39.10680389404297,-16.708749771118164],[-39.14097213745117,-16.75541877746582],[-39.14236068725586,-16.869304656982422],[-39.180694580078125,-17.1068058013916],[-39.21208190917969,-17.15875053405756],[-39.221248626708984,-17.305416107177734],[-39.191806793212834,-17.446250915527287],[-39.19374847412098,-17.580139160156193],[-39.13708496093744,-17.690971374511605],[-39.19291687011719,-17.742639541625977],[-39.27736282348627,-17.87208366394043],[-39.43430709838867,-17.93847465515131],[-39.480972290039006,-17.984306335449162],[-39.63708496093744,-18.237361907958984],[-39.66986083984375,-18.3498592376709]]]]},"properties":{"ID_0":33,"ISO":"BR-BA","NAME_0":"Brazil","ID_1":5,"NAME_1":"Bahia","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Ba¡a"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-37.25208282470703,-4.832361221313477],[-37.64024353027344,-4.926418781280461],[-37.67705154418945,-5.052547931671143],[-37.72397232055664,-5.069858074188232],[-37.789943695068246,-5.21095323562622],[-37.78302001953125,-5.294829845428467],[-37.84738540649413,-5.340035915374699],[-37.90469741821289,-5.50115489959711],[-37.9899559020996,-5.555810928344727],[-38.08263397216797,-5.672267913818303],[-38.046993255615234,-5.730422973632812],[-38.10818862915039,-5.814829826354923],[-38.124858856201115,-5.887623786926213],[-38.25158691406244,-6.010366916656494],[-38.3047256469726,-6.086979866027832],[-38.44723892211914,-6.085290908813477],[-38.51963806152343,-6.223051071166992],[-38.578525543212834,-6.280207157134953],[-38.55485153198236,-6.437374114990234],[-38.642780303955014,-6.581190109252873],[-38.67307662963867,-6.697234153747559],[-38.64186096191395,-6.791251182556151],[-38.67534637451172,-6.861839771270752],[-38.75620651245105,-6.903603076934814],[-38.73051452636712,-7.012038230895996],[-38.66977691650385,-7.047715187072753],[-38.67681121826172,-7.16893577575678],[-38.53451156616211,-7.293803215026742],[-38.585227966308594,-7.434825897216796],[-38.64484786987305,-7.46002721786499],[-38.65525436401367,-7.565553188323917],[-38.71502685546875,-7.621930122375488],[-38.82188415527338,-7.714819908142032],[-38.94182205200195,-7.763055801391544],[-39.00133514404297,-7.840136051177921],[-39.0906753540039,-7.8092360496521],[-39.13557052612298,-7.723396778106689],[-39.271926879882756,-7.660462856292725],[-39.31715393066395,-7.541469097137394],[-39.3966064453125,-7.475296974182129],[-39.47886276245111,-7.446116924285774],[-39.607246398925724,-7.33622217178339],[-39.66566085815429,-7.310708999633789],[-39.915073394775334,-7.338125228881722],[-39.96141815185547,-7.388984203338566],[-40.24638366699213,-7.433736801147461],[-40.319274902343636,-7.374391078948974],[-40.548408508300724,-7.392722129821776],[-40.51211929321289,-7.3018159866333],[-40.48968887329096,-7.11870288848877],[-40.42766571044922,-7.033895015716553],[-40.4321174621582,-6.812992095947266],[-40.4761848449707,-6.734522819519043],[-40.607070922851506,-6.714086055755615],[-40.71012496948242,-6.676143169403076],[-40.74580001831055,-6.565561771392765],[-40.787616729736264,-6.523797035217285],[-40.80510330200195,-6.393146991729735],[-40.7796516418457,-6.344307899475098],[-40.85217666625971,-6.224236011505127],[-40.846858978271484,-6.132109165191594],[-40.938716888427734,-5.673357963562012],[-40.90101623535145,-5.615784168243407],[-40.93233108520508,-5.548912048339844],[-40.93605422973633,-5.36598014831543],[-40.91315460205078,-5.308066844940129],[-40.928936004638615,-5.171686172485351],[-41.080078125,-5.091106891632023],[-41.12255096435541,-5.00809383392334],[-41.221500396728516,-4.936889171600285],[-41.24912643432617,-4.869112014770508],[-41.17423248291009,-4.667479038238525],[-41.23307800292963,-4.609570980072021],[-41.19072723388666,-4.515548229217472],[-41.15996170043945,-4.381515979766846],[-41.11919403076166,-4.313255786895752],[-41.13748550415039,-4.120007991790715],[-41.120296478271484,-4.036356925964355],[-41.24919128417963,-3.989885091781559],[-41.22019195556634,-3.941526889800968],[-41.27680587768555,-3.825639963150024],[-41.255386352539006,-3.703277111053467],[-41.34169769287104,-3.680790901184082],[-41.32563018798828,-3.536432981491032],[-41.34473037719721,-3.41933798789978],[-41.42346954345703,-3.368026018142643],[-41.322437286376896,-3.179811954498234],[-41.2566032409668,-3.088036060333195],[-41.249732971191406,-3.029058933257943],[-41.32090759277338,-2.918195009231567],[-41.26208496093749,-2.885416030883732],[-41.01152801513666,-2.891804933547917],[-40.85985946655273,-2.861804008483886],[-40.59986114501953,-2.847640037536621],[-40.4970817565918,-2.785139083862305],[-40.43986129760742,-2.809026956558228],[-40.18513870239258,-2.812916994094848],[-39.99375152587885,-2.840694904327393],[-39.85680389404291,-2.902084112167302],[-39.71430587768555,-3.003748893737793],[-39.61513900756835,-3.031805038452091],[-39.387638092041016,-3.186527013778686],[-39.22902679443354,-3.240139007568246],[-39.08708190917968,-3.390971899032592],[-39.004581451416016,-3.396250009536686],[-38.91291809082031,-3.50097203254694],[-38.80819320678711,-3.544305086135864],[-38.75597381591797,-3.61375093460083],[-38.64930725097656,-3.684861898422241],[-38.492916107177734,-3.725138902664185],[-38.36569595336914,-3.879584074020328],[-38.27541732788086,-3.942082881927376],[-38.1198616027832,-4.145137786865234],[-37.90430450439453,-4.341250896453857],[-37.76958465576172,-4.399860858917236],[-37.71291732788086,-4.515696048736572],[-37.59097290039057,-4.626527786254826],[-37.32430648803711,-4.700971126556396],[-37.25208282470703,-4.832361221313477]]]},"properties":{"ID_0":33,"ISO":"BR-CE","NAME_0":"Brazil","ID_1":6,"NAME_1":"Ceará","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-47.309001922607415,-16.035945892333928],[-47.30875778198231,-16.0505313873291],[-48.279075622558594,-16.051555633544922],[-48.252445220947266,-15.936758995056037],[-48.28704833984375,-15.843138694763184],[-48.21349334716791,-15.759654045104924],[-48.240772247314396,-15.706986427307129],[-48.20027160644531,-15.621862411499023],[-48.20049285888672,-15.50016975402832],[-47.41729736328125,-15.500313758849984],[-47.374183654785156,-15.577832221984806],[-47.32578659057617,-15.589126586914064],[-47.31287384033203,-15.738094329833983],[-47.37606430053705,-15.88288021087635],[-47.368595123291016,-16.001937866210938],[-47.309001922607415,-16.035945892333928]]]},"properties":{"ID_0":33,"ISO":"BR-DF","NAME_0":"Brazil","ID_1":7,"NAME_1":"Distrito Federal","TYPE_1":"Distrito Federal","ENGTYPE_1":"Federal District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-40.22235107421869,-17.980426788330078],[-39.68887329101557,-18.320823669433594],[-39.66986083984375,-18.3498592376709],[-39.72874832153314,-18.52319526672352],[-39.7456932067871,-18.691249847412053],[-39.743473052978516,-18.94847297668457],[-39.68902587890625,-19.295137405395508],[-39.732639312744084,-19.473472595214787],[-39.81763839721674,-19.653472900390625],[-39.97569274902344,-19.73152732849121],[-40.061805725097656,-19.850139617919922],[-40.164306640624886,-20.039306640624996],[-40.19847106933594,-20.216249465942326],[-40.284027099609375,-20.354305267333984],[-40.426528930664006,-20.635139465331974],[-40.495140075683594,-20.659584045410156],[-40.582916259765625,-20.801807403564453],[-40.74180603027343,-20.846805572509766],[-40.8070831298827,-20.952083587646484],[-40.81236267089844,-21.03152847290039],[-40.86375045776367,-21.133192062377873],[-40.949859619140625,-21.22902870178217],[-40.95930480957031,-21.29718971252441],[-41.081382751464844,-21.221986770629826],[-41.205215454101506,-21.243909835815373],[-41.2412223815918,-21.221155166625977],[-41.488304138183594,-21.180356979370117],[-41.54838180541992,-21.1828556060791],[-41.73497390747064,-21.09881973266596],[-41.711894989013615,-20.981052398681527],[-41.74086380004883,-20.818288803100526],[-41.87485885620117,-20.766815185546875],[-41.799533843994084,-20.477590560913086],[-41.84708786010742,-20.32947921752924],[-41.78097534179676,-20.292537689208984],[-41.7567024230957,-20.20685958862293],[-41.411643981933594,-20.206674575805664],[-41.382057189941406,-20.188806533813477],[-41.30803680419916,-20.013011932373047],[-41.30031585693354,-19.93836212158203],[-41.18482589721674,-19.888954162597656],[-41.166118621826115,-19.80990219116211],[-41.19074249267567,-19.74687385559082],[-41.16841506958002,-19.672216415405273],[-40.9721794128418,-19.505287170410156],[-40.96788024902344,-19.428764343261715],[-40.90763473510742,-19.308805465698185],[-40.922611236572266,-19.204082489013672],[-40.984703063964844,-19.100711822509766],[-41.05379486083973,-19.068859100341797],[-41.0268440246582,-18.985818862914982],[-41.12678909301758,-18.894502639770508],[-41.24266815185547,-18.85394668579096],[-41.232490539550724,-18.7972736358642],[-41.134075164794865,-18.796035766601562],[-41.11044692993152,-18.83893394470209],[-40.963855743408146,-18.84116554260254],[-40.91671371459961,-18.81553840637207],[-40.943580627441406,-18.687572479248047],[-41.05083465576166,-18.6341495513916],[-41.02268981933588,-18.457685470581055],[-41.175498962402344,-18.443784713745117],[-41.052494049072266,-18.343742370605412],[-40.95999526977539,-18.383861541748047],[-40.84795379638672,-18.493974685668945],[-40.63817596435541,-18.51629447937006],[-40.52325820922846,-18.473001480102482],[-40.60767364501953,-18.41653823852539],[-40.58302688598627,-18.36737060546875],[-40.618865966796875,-18.28757476806635],[-40.545780181884766,-18.204254150390625],[-40.5581436157226,-18.114637374877873],[-40.638835906982365,-18.035118103027287],[-40.613388061523324,-17.939725875854435],[-40.52697753906244,-17.891941070556637],[-40.32173919677729,-17.939041137695312],[-40.22235107421869,-17.980426788330078]]]},"properties":{"ID_0":33,"ISO":"BR-ES","NAME_0":"Brazil","ID_1":8,"NAME_1":"Espírito Santo","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Espiritu Santo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-46.11459732055664,-12.918439865112248],[-46.12579345703119,-12.961482048034611],[-46.27332687377924,-13.014960289001408],[-46.322612762451165,-13.098286628723086],[-46.29492950439453,-13.13130855560297],[-46.330116271972656,-13.25281524658203],[-46.279338836669865,-13.347900390625],[-46.063758850097656,-13.261308670043944],[-46.04842376708984,-13.30920124053955],[-46.133975982666016,-13.375231742858887],[-46.214309692382756,-13.400718688964844],[-46.238639831542855,-13.554588317871037],[-46.161914825439446,-13.590933799743652],[-46.255924224853516,-13.693898200988768],[-46.22863769531249,-13.774501800537053],[-46.26808547973627,-13.943761825561523],[-46.21628189086914,-13.980290412902832],[-46.236347198486214,-14.1072416305542],[-46.01829147338867,-14.260635375976562],[-45.96321868896472,-14.285907745361328],[-45.927589416503906,-14.410319328308105],[-45.99877166748041,-14.429388999938965],[-45.98478317260742,-14.620813369750975],[-46.0373649597168,-14.874085426330565],[-46.088088989257805,-14.936395645141545],[-46.176425933837834,-14.94905185699457],[-46.286792755126896,-14.928150177001895],[-46.32214736938471,-14.814582824706974],[-46.46879196166992,-14.708827018737793],[-46.54413986206054,-14.753017425537111],[-46.5587539672851,-14.821079254150277],[-46.530757904052734,-15.005281448364144],[-46.502990722656186,-15.052579879760685],[-46.62539291381836,-15.089517593383789],[-46.78180694580078,-15.019327163696287],[-46.85684585571288,-15.010270118713379],[-46.91870498657215,-15.049869537353402],[-46.889095306396484,-15.111639022827148],[-46.9372940063476,-15.205021858215273],[-46.92760467529296,-15.255097389221133],[-46.83685302734369,-15.322600364685057],[-46.84942626953125,-15.37316513061512],[-46.93041610717768,-15.44309139251709],[-46.94904708862305,-15.55459976196289],[-46.854740142822266,-15.620355606079102],[-46.813098907470646,-15.78720378875727],[-46.82481384277344,-15.885722160339299],[-47.052738189697266,-15.937916755676213],[-47.151123046875,-15.935004234313963],[-47.228294372558594,-16.015762329101562],[-47.309001922607415,-16.035945892333928],[-47.368595123291016,-16.001937866210938],[-47.37606430053705,-15.88288021087635],[-47.31287384033203,-15.738094329833983],[-47.32578659057617,-15.589126586914064],[-47.374183654785156,-15.577832221984806],[-47.41729736328125,-15.500313758849984],[-48.20049285888672,-15.50016975402832],[-48.20027160644531,-15.621862411499023],[-48.240772247314396,-15.706986427307129],[-48.21349334716791,-15.759654045104924],[-48.28704833984375,-15.843138694763184],[-48.252445220947266,-15.936758995056037],[-48.279075622558594,-16.051555633544922],[-47.30875778198231,-16.0505313873291],[-47.35201644897455,-16.131959915161133],[-47.322410583496094,-16.231317520141545],[-47.3662223815918,-16.331499099731445],[-47.4271240234375,-16.394161224365174],[-47.44435882568354,-16.54076957702631],[-47.25010299682606,-16.66681480407715],[-47.14693069458008,-17.030784606933594],[-47.35193252563471,-17.166498184203988],[-47.42074203491211,-17.30104255676264],[-47.533271789550774,-17.394418716430607],[-47.50284957885742,-17.516550064086914],[-47.33087921142567,-17.524839401245117],[-47.26391601562494,-17.620458602905273],[-47.270362854003906,-17.674470901489258],[-47.336986541747926,-17.73742294311523],[-47.35877990722656,-17.887214660644474],[-47.28315353393555,-18.0582332611084],[-47.357742309570256,-18.085020065307617],[-47.497127532958984,-18.199100494384762],[-47.58140563964837,-18.23170471191395],[-47.698524475097535,-18.37723731994629],[-47.8090705871582,-18.400869369506832],[-47.86412811279297,-18.4643611907959],[-47.96214294433594,-18.496068954467773],[-48.047988891601555,-18.416967391967773],[-48.08857345581043,-18.429399490356445],[-48.27901840209955,-18.331531524658146],[-48.31489181518555,-18.36415481567377],[-48.477756500244084,-18.379196166992188],[-48.64711380004877,-18.34388923645014],[-48.83202743530268,-18.346130371093693],[-48.93671798706055,-18.306205749511715],[-49.005908966064396,-18.374355316162053],[-49.03396987915039,-18.524826049804688],[-49.18623352050775,-18.544534683227482],[-49.2491455078125,-18.522996902465763],[-49.41667556762695,-18.6385498046875],[-49.48177337646479,-18.561029434204045],[-49.48623275756835,-18.50825881958002],[-49.6454963684082,-18.557390213012695],[-49.7836341857909,-18.641340255737248],[-49.8851699829101,-18.60976791381836],[-50.01653289794922,-18.599838256835938],[-50.079986572265625,-18.6722412109375],[-50.16423034667962,-18.664350509643555],[-50.30930328369129,-18.69844818115234],[-50.37499237060541,-18.81029891967762],[-50.50024795532226,-18.9296932220459],[-50.4986839294433,-19.034025192260742],[-50.58496856689453,-19.137386322021428],[-50.677650451660156,-19.13968849182129],[-50.81706237792969,-19.289823532104435],[-50.87233734130854,-19.406127929687443],[-50.93574905395502,-19.467674255371094],[-51.057769775390625,-19.32944488525385],[-51.3077507019043,-19.218530654907227],[-51.36638259887695,-19.222360610961914],[-51.42041397094721,-19.166534423828125],[-51.592441558837834,-19.12741279602045],[-51.657890319824105,-19.137918472289982],[-51.81830596923828,-19.053579330444332],[-51.94025802612298,-18.96794891357422],[-52.08130264282221,-18.950904846191406],[-52.18141174316406,-18.847913742065373],[-52.34462738037104,-18.821533203124943],[-52.44905853271472,-18.690965652465817],[-52.55297470092768,-18.656986236572266],[-52.59280776977539,-18.689889907836857],[-52.82759475708008,-18.671892166137695],[-52.9142608642577,-18.61981773376465],[-52.96486663818354,-18.55002784729004],[-52.76184082031244,-18.371309280395508],[-52.78190994262695,-18.32559394836414],[-52.949348449706974,-18.296571731567326],[-53.06987380981439,-18.34288024902338],[-53.10108947753906,-18.31083106994629],[-53.1431770324707,-18.081836700439453],[-53.07192611694336,-18.039468765258732],[-53.07000732421875,-17.98653793334961],[-53.131370544433594,-17.916845321655217],[-53.17728424072254,-17.75586509704584],[-53.23828125,-17.714141845703068],[-53.25075912475586,-17.62806892395014],[-53.23025894165038,-17.427248001098633],[-53.197456359863274,-17.38133811950678],[-53.21857833862293,-17.299306869506836],[-53.068923950195256,-17.029968261718693],[-53.01405334472656,-16.864902496337777],[-52.96414566040039,-16.86700057983387],[-52.882225036621094,-16.77611160278309],[-52.79250717163086,-16.739734649658203],[-52.746803283691406,-16.63071060180664],[-52.63569641113281,-16.55163383483881],[-52.60433197021484,-16.46465873718256],[-52.676582336425724,-16.41230964660639],[-52.68686294555664,-16.315483093261662],[-52.65699768066406,-16.280166625976506],[-52.546279907226555,-16.258520126342773],[-52.548553466796875,-16.16511726379389],[-52.32769775390625,-16.06859588623047],[-52.25257492065423,-15.892660140991154],[-52.00798034667963,-15.885480880737303],[-51.94677734374999,-15.810563087463379],[-51.89220809936512,-15.830288887023926],[-51.762908935546875,-15.645635604858397],[-51.77585601806635,-15.558287620544434],[-51.7046165466308,-15.49670124053955],[-51.67132568359369,-15.371731758117619],[-51.6882438659668,-15.30885887145996],[-51.652038574218686,-15.179879188537486],[-51.598186492919865,-15.155446052551214],[-51.535903930664006,-15.069691658019961],[-51.428279876708984,-15.00923728942871],[-51.301868438720646,-14.986533164978026],[-51.24254608154291,-15.035402297973574],[-51.08402633666992,-14.916407585143986],[-51.08976745605463,-14.84116458892822],[-50.962818145751896,-14.52706623077387],[-50.99901580810547,-14.419235229492188],[-50.96123504638672,-14.249350547790527],[-50.83173370361328,-14.073386192321776],[-50.864021301269474,-13.721739768981877],[-50.80390548706054,-13.690969467163086],[-50.763397216796875,-13.530016899108887],[-50.66540145874012,-13.442285537719668],[-50.66559600830066,-13.376140594482365],[-50.60715103149414,-13.310861587524357],[-50.57686996459955,-13.051088333129826],[-50.52587509155268,-12.976426124572754],[-50.511016845703125,-12.860708236694336],[-50.41859436035144,-12.62460994720459],[-50.36587142944336,-12.546072959899902],[-50.21228027343744,-12.437126159667969],[-50.208293914794865,-12.57303714752197],[-50.29567337036133,-12.68449878692627],[-50.31122589111328,-12.798553466796875],[-50.183372497558594,-12.896775245666447],[-50.07883834838867,-12.905943870544432],[-49.939369201660035,-12.956930160522461],[-49.36944198608393,-13.274602890014648],[-49.34202194213867,-13.255134582519474],[-49.33741378784168,-13.066299438476504],[-49.249465942382756,-12.902787208557015],[-49.1190299987793,-12.790364265441895],[-48.97557830810541,-12.95720386505127],[-48.8698387145996,-12.804408073425236],[-48.73652267456055,-12.921031951904297],[-48.73069381713867,-12.989795684814453],[-48.6382827758789,-13.018381118774355],[-48.57861328125,-13.126596450805664],[-48.47250366210932,-13.142780303955021],[-48.44680404663085,-13.283736228942756],[-48.29255294799799,-13.219557762145996],[-48.17388534545898,-13.148106575012207],[-48.15148544311517,-13.306541442871037],[-48.02251434326172,-13.279841423034668],[-47.88885116577142,-13.318043708801268],[-47.823936462402344,-13.311871528625488],[-47.678932189941406,-13.467717170715275],[-47.63888549804682,-13.39106273651123],[-47.66884613037104,-13.2094087600708],[-47.61793136596673,-13.104711532592772],[-47.56302261352539,-13.18423557281494],[-47.47883605957031,-13.185147285461369],[-47.434795379638615,-13.268231391906681],[-47.37768173217768,-13.230617523193303],[-47.32294082641596,-13.258310317993107],[-47.22909927368158,-13.194874763488713],[-47.00968551635731,-13.140827178955078],[-46.819644927978516,-13.002476692199705],[-46.75056076049799,-12.969160079955998],[-46.4546012878418,-12.971158981323185],[-46.417564392089844,-12.823479652404785],[-46.366142272949105,-12.864859580993596],[-46.36382293701166,-12.991222381591797],[-46.19449996948242,-12.956678390502873],[-46.11459732055664,-12.918439865112248]]]},"properties":{"ID_0":33,"ISO":"BR-GO","NAME_0":"Brazil","ID_1":9,"NAME_1":"Goiás","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Goiáz|Goyáz"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-42.236526489257756,-2.685693025588989],[-42.14458465576166,-2.730139017105103],[-42.175140380859375,-2.776527881622314],[-42.25319290161133,-2.737082958221436],[-42.236526489257756,-2.685693025588989]]],[[[-42.21486282348627,-2.684026956558171],[-42.063472747802734,-2.688750028610229],[-42.082637786865234,-2.776249885559082],[-42.147914886474545,-2.710971117019596],[-42.21486282348627,-2.684026956558171]]],[[[-43.80208206176752,-2.391527891159058],[-43.743473052978516,-2.441248893737793],[-43.79208374023426,-2.547638893127441],[-43.84402847290033,-2.538194894790649],[-43.84097290039056,-2.435138940811157],[-43.80208206176752,-2.391527891159058]]],[[[-43.62374877929681,-2.251249074935856],[-43.640972137451165,-2.400137901306152],[-43.73430633544922,-2.421806097030583],[-43.71097183227539,-2.284306049346924],[-43.62374877929681,-2.251249074935856]]],[[[-44.977359771728516,-1.264861941337472],[-44.90486145019531,-1.340139985084534],[-44.96986007690424,-1.392361044883671],[-44.977359771728516,-1.264861941337472]]],[[[-45.95458221435547,-1.190971970558167],[-45.897361755371094,-1.117638945579472],[-45.79402923583978,-1.245416045188847],[-45.73541641235351,-1.205417990684509],[-45.639583587646484,-1.341528058052006],[-45.5926399230957,-1.26569402217865],[-45.476806640624936,-1.378193974494934],[-45.37097167968744,-1.396250009536743],[-45.30680465698231,-1.335417032241821],[-45.307083129882756,-1.495694994926396],[-45.36708450317383,-1.710139036178589],[-45.31986236572259,-1.749305963516179],[-45.225418090820256,-1.660138964653015],[-45.254859924316406,-1.614583969116211],[-45.22819519042963,-1.542359948158207],[-45.154304504394474,-1.470139026641846],[-45.0970840454101,-1.45541596412653],[-45.00541687011713,-1.486528038978577],[-44.951805114746094,-1.586806058883667],[-44.90847396850586,-1.612362027168274],[-44.77569580078119,-1.575139045715275],[-44.67652893066406,-1.568472981452942],[-44.63986206054682,-1.620694041252079],[-44.73736190795887,-1.650694966316223],[-44.762359619140625,-1.70458197593689],[-44.6029167175293,-1.766527056693974],[-44.520416259765625,-1.876804947852975],[-44.49180603027344,-2.038470983505249],[-44.58652877807617,-2.137917041778564],[-44.46374893188471,-2.14624905586237],[-44.39875030517578,-2.215138912200871],[-44.35763931274414,-2.340971946716252],[-44.38402938842762,-2.4037508964538],[-44.302360534667905,-2.487638950347844],[-44.22597122192377,-2.479027986526489],[-44.077362060546875,-2.40513896942133],[-44.02847290039057,-2.409027099609375],[-44.03708267211903,-2.557084083557129],[-44.07986068725586,-2.5626380443573],[-44.1379165649414,-2.682360887527409],[-44.264862060546875,-2.73874902725214],[-44.23541641235346,-2.775137901306152],[-44.13486099243163,-2.78013896942133],[-44.02736282348632,-2.657083034515324],[-43.955970764160156,-2.624861001968384],[-43.930694580078125,-2.56124997138977],[-43.78930664062494,-2.548194885253906],[-43.71597290039057,-2.475415945053101],[-43.618751525878906,-2.521527051925659],[-43.5676383972168,-2.493473052978458],[-43.48319625854492,-2.526527881622314],[-43.45208358764643,-2.345416069030762],[-43.3256950378418,-2.33680605888361],[-43.240970611572266,-2.35819506645197],[-42.92180633544922,-2.49541711807251],[-42.793750762939396,-2.562082052230835],[-42.69569396972656,-2.575417041778508],[-42.62208175659174,-2.645138025283813],[-42.481803894042905,-2.722637891769352],[-42.366527557372926,-2.714306116104069],[-42.277362823486214,-2.752638101577758],[-42.2301406860351,-2.811527013778687],[-42.045417785644474,-2.808751106262207],[-42.00263977050781,-2.715415954589787],[-41.816806793212834,-2.743750095367432],[-41.86544418334955,-2.8749001026153],[-41.79674530029297,-2.966576099395752],[-41.82422637939453,-3.024517059326058],[-41.92597579956055,-3.115488052368164],[-42.00017547607422,-3.241106986999512],[-42.11577987670892,-3.262346982955876],[-42.152145385742074,-3.387494087219181],[-42.21004104614258,-3.43632006645197],[-42.33076095581049,-3.433881044387761],[-42.39905929565429,-3.472915887832642],[-42.5065078735351,-3.478835105895996],[-42.67570495605463,-3.675617933273259],[-42.66881942749018,-3.729367017745972],[-42.72615814208973,-3.910024881362915],[-42.82360076904291,-3.992214918136596],[-42.862888336181584,-4.092888832092285],[-42.98914718627924,-4.23406982421875],[-42.96326446533203,-4.376433849334717],[-42.871990203857415,-4.428577899932861],[-42.8678741455077,-4.56358003616333],[-42.954544067382756,-4.689482212066594],[-42.948421478271484,-4.766877174377384],[-42.81856155395502,-5.093526840209904],[-42.800209045410156,-5.199390888214111],[-42.82626724243158,-5.346964836120548],[-42.913204193115234,-5.398845195770207],[-43.034553527831974,-5.592273235321045],[-43.0989532470702,-5.63320779800415],[-43.0993766784668,-5.901104927062875],[-43.050174713134766,-6.01310396194458],[-43.04993057250965,-6.099762916564941],[-42.96854019165039,-6.178270816802922],[-42.87432861328119,-6.228136062622013],[-42.84695434570307,-6.282508850097656],[-42.877708435058594,-6.417881011962891],[-42.87177658081048,-6.511956214904785],[-42.91972732543939,-6.670321941375732],[-43.001121520996094,-6.754475116729736],[-43.24464797973627,-6.766366958618107],[-43.27867889404297,-6.796631813049316],[-43.45725631713867,-6.846337795257568],[-43.637466430664,-6.719579219818115],[-43.7939834594726,-6.702743053436279],[-43.87982940673828,-6.757727146148624],[-43.961162567138615,-6.741913795471191],[-44.16084671020502,-6.872814178466797],[-44.173492431640625,-6.924349784850961],[-44.30615234375,-7.117186069488525],[-44.37998962402338,-7.119038105010986],[-44.564022064208984,-7.227546215057372],[-44.68793106079095,-7.394548892974854],[-44.816684722900334,-7.361218929290771],[-44.92439651489258,-7.470303058624267],[-45.04487228393555,-7.511248111724854],[-45.15540313720703,-7.51349496841425],[-45.21810150146479,-7.567862033843937],[-45.339717864990234,-7.580257892608643],[-45.46886444091797,-7.689144134521483],[-45.52079772949212,-7.888095855712891],[-45.57624053955078,-8.029102325439396],[-45.581417083740234,-8.156057357788029],[-45.661506652832024,-8.250032424926758],[-45.68748474121088,-8.355563163757324],[-45.74225997924804,-8.451149940490723],[-45.738410949706974,-8.501184463500977],[-45.81549835205078,-8.6332368850708],[-45.83989715576166,-8.715288162231445],[-45.938396453857365,-8.784948348999023],[-45.994243621826165,-8.926877975463867],[-45.94341278076172,-9.015324592590275],[-45.89860916137695,-9.209687232971078],[-45.907016754150334,-9.29802417755127],[-45.79779434204101,-9.417263984680176],[-45.78377532958984,-9.480117797851506],[-45.831893920898324,-9.536803245544432],[-45.82137298583979,-9.773135185241642],[-45.864379882812436,-9.861476898193303],[-45.84223556518555,-9.941568374633787],[-45.87849426269525,-10.110310554504338],[-45.94556808471674,-10.196453094482422],[-45.94632720947259,-10.258577346801758],[-46.01767349243153,-10.240401268005371],[-46.02317047119135,-10.183390617370605],[-46.164592742919915,-10.212915420532225],[-46.202030181884766,-10.173930168151855],[-46.32747268676758,-10.18370342254633],[-46.443836212158146,-10.07758712768549],[-46.47753524780262,-9.988312721252441],[-46.47285079956049,-9.877449035644531],[-46.51210021972656,-9.798994064331055],[-46.64273452758789,-9.741473197936955],[-46.57925415039057,-9.584088325500431],[-46.573204040527344,-9.47777271270752],[-46.62754058837884,-9.465735435485838],[-46.665924072265625,-9.39193153381342],[-46.75862503051758,-9.38122940063465],[-46.812870025634766,-9.305959701538086],[-46.81956481933594,-9.211627006530703],[-46.861064910888615,-9.14643383026123],[-46.9262580871582,-9.134954452514648],[-46.94295120239258,-9.064485549926756],[-47.05767822265625,-9.05296516418457],[-46.99250030517572,-8.879414558410588],[-46.90275573730463,-8.8145494461059],[-46.931228637695305,-8.726763725280705],[-46.886898040771484,-8.686503410339355],[-46.91264724731445,-8.591856956481934],[-46.8469352722168,-8.532048225402832],[-46.78238296508789,-8.368098258972111],[-46.63518524169922,-8.319332122802734],[-46.54458236694335,-8.319337844848576],[-46.48751068115229,-8.199920654296875],[-46.51458740234374,-8.167078018188477],[-46.47036743164057,-8.084755897521973],[-46.492080688476555,-7.981707096099854],[-46.604621887206974,-7.896190166473389],[-46.708400726318295,-7.909939765930175],[-46.80009841918945,-7.95543622970581],[-46.882617950439396,-7.964091777801513],[-46.99737548828119,-8.067242622375488],[-47.043453216552734,-8.053603172302246],[-47.14274597167969,-7.894848823547307],[-47.2235107421875,-7.826710224151611],[-47.261268615722656,-7.748301029205265],[-47.38185501098633,-7.654075145721436],[-47.38204574584961,-7.5999817848205],[-47.49790573120117,-7.479200839996338],[-47.49973678588867,-7.293870925903264],[-47.58905029296875,-7.264108180999641],[-47.6517219543457,-7.300271034240723],[-47.7354888916015,-7.218334197998047],[-47.745079040527344,-7.162519931793212],[-47.66032409667969,-7.151381969451904],[-47.54631423950184,-7.014830112457218],[-47.50698852539057,-6.872023105621337],[-47.498592376708984,-6.671247959136963],[-47.37876892089844,-6.270872116088867],[-47.41654586791992,-6.177840232849121],[-47.44791030883789,-5.992932796478215],[-47.442234039306584,-5.830804824829102],[-47.493324279785156,-5.730547904968262],[-47.48320770263672,-5.564914226531982],[-47.55531692504882,-5.465753078460637],[-47.6185684204101,-5.459743022918701],[-47.742176055908146,-5.381310939788818],[-47.82748794555664,-5.386606216430607],[-47.88551712036127,-5.260717868804875],[-48.003093719482365,-5.234705924987736],[-48.07922363281244,-5.275046825408879],[-48.1784934997558,-5.260793209075871],[-48.3638572692871,-5.168396949767953],[-48.51940917968744,-5.192152023315372],[-48.6060791015625,-5.336520195007324],[-48.679386138916016,-5.305838108062687],[-48.75510025024402,-5.349186897277775],[-48.434104919433594,-5.096251010894775],[-47.81610107421869,-4.614747047424316],[-47.789871215820256,-4.585527896881047],[-47.679889678955014,-4.608623027801457],[-47.581424713134766,-4.519952774047852],[-47.47609329223627,-4.355028152465763],[-47.47339630126953,-4.314453124999886],[-47.37962341308594,-4.220445156097355],[-47.31884765624994,-4.046940803527775],[-47.21979522705078,-3.995964050292968],[-47.13512420654296,-3.881808996200505],[-47.088066101074155,-3.855468988418522],[-47.04550933837885,-3.708010911941472],[-47.056201934814396,-3.646598100662174],[-47.01845550537098,-3.546910047531014],[-46.977012634277344,-3.526058912277222],[-46.94882965087885,-3.406909942626896],[-46.848415374755746,-3.335644006729069],[-46.80739593505854,-3.241871118545532],[-46.746395111083984,-3.178845882415715],[-46.65203475952143,-2.996537923812809],[-46.63661575317383,-2.851216077804565],[-46.59892272949212,-2.795705080032292],[-46.668033599853516,-2.734045028686467],[-46.62187194824219,-2.644543886184635],[-46.50495529174805,-2.614938020706177],[-46.433876037597656,-2.51484298706049],[-46.43161392211914,-2.298372983932438],[-46.291786193847656,-2.164582967758065],[-46.27334594726557,-2.058764934539795],[-46.21853256225586,-1.913226008415165],[-46.22927856445307,-1.800623059272709],[-46.31654739379877,-1.795057058334351],[-46.29111862182617,-1.723441958427429],[-46.22511291503906,-1.726065993309021],[-46.15357589721679,-1.675917983055115],[-46.131927490234375,-1.578832983970642],[-46.17658233642578,-1.475381016731205],[-46.13946151733398,-1.444419026374817],[-46.10610580444336,-1.332491040229797],[-46.162849426269524,-1.278329014778137],[-46.151092529296754,-1.224804043769836],[-46.08441543579096,-1.189643979072514],[-46.05145263671875,-1.105137944221497],[-45.980140686035156,-1.048194050788823],[-45.95458221435547,-1.190971970558167]]]]},"properties":{"ID_0":33,"ISO":"BR-MA","NAME_0":"Brazil","ID_1":10,"NAME_1":"Maranhão","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"São Luíz de Maranhão"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-53.07192611694336,-18.039468765258732],[-53.1431770324707,-18.081836700439453],[-53.10108947753906,-18.31083106994629],[-53.06987380981439,-18.34288024902338],[-52.949348449706974,-18.296571731567326],[-52.78190994262695,-18.32559394836414],[-52.76184082031244,-18.371309280395508],[-52.96486663818354,-18.55002784729004],[-52.9142608642577,-18.61981773376465],[-52.82759475708008,-18.671892166137695],[-52.59280776977539,-18.689889907836857],[-52.55297470092768,-18.656986236572266],[-52.44905853271472,-18.690965652465817],[-52.34462738037104,-18.821533203124943],[-52.18141174316406,-18.847913742065373],[-52.08130264282221,-18.950904846191406],[-51.94025802612298,-18.96794891357422],[-51.81830596923828,-19.053579330444332],[-51.657890319824105,-19.137918472289982],[-51.592441558837834,-19.12741279602045],[-51.42041397094721,-19.166534423828125],[-51.36638259887695,-19.222360610961914],[-51.3077507019043,-19.218530654907227],[-51.057769775390625,-19.32944488525385],[-50.93574905395502,-19.467674255371094],[-50.924106597900334,-19.558616638183537],[-50.98749542236328,-19.58950424194336],[-51.045372009277344,-19.73755264282221],[-50.999412536621094,-19.9063720703125],[-51.020339965820256,-19.962385177612187],[-51.000415802001896,-20.08538055419922],[-51.0691032409668,-20.25004577636713],[-51.16730499267572,-20.30636024475092],[-51.295623779296875,-20.328479766845703],[-51.35080718994129,-20.363176345825195],[-51.5234260559082,-20.588636398315373],[-51.59614562988281,-20.648759841918945],[-51.63483810424805,-20.754846572875977],[-51.61342239379877,-20.89007186889637],[-51.626625061035156,-20.94634437561035],[-51.71363830566406,-20.97145271301264],[-51.789608001708984,-21.102115631103516],[-51.878921508789006,-21.14813232421869],[-51.848453521728516,-21.266633987426644],[-51.86763381958008,-21.35165405273426],[-51.92861938476557,-21.455810546875],[-51.99810791015625,-21.51562309265131],[-52.05700683593749,-21.503602981567326],[-52.10322952270502,-21.559055328369084],[-52.049453735351506,-21.643106460571232],[-52.10284042358393,-21.74526596069336],[-52.16120147705078,-21.770769119262695],[-52.19050216674799,-21.84613609313965],[-52.319026947021484,-21.97236251831049],[-52.345371246337834,-22.061962127685547],[-52.48669815063471,-22.215190887451115],[-52.57912445068354,-22.251947402954045],[-52.798267364501896,-22.378267288208008],[-52.854698181152344,-22.43910598754877],[-52.99851989746094,-22.493181228637695],[-53.10512161254883,-22.621923446655273],[-53.18088912963861,-22.713632583618107],[-53.35448455810547,-22.777364730834957],[-53.53466796875,-22.8825626373291],[-53.60735702514643,-22.951326370239258],[-53.63652420043945,-23.125022888183594],[-53.771041870117074,-23.372125625610295],[-53.98279571533203,-23.46000099182129],[-54.07564544677723,-23.764478683471623],[-54.07984161376942,-23.88897132873535],[-54.129642486572266,-23.982101440429684],[-54.28385925292969,-24.06747436523437],[-54.39908218383789,-23.937421798706055],[-54.48265838623041,-23.881891250610238],[-54.675334930419915,-23.813564300536996],[-54.90420150756836,-23.905776977539006],[-54.931766510009766,-23.9614639282226],[-55.111503601074155,-23.960182189941406],[-55.23027801513671,-24.008590698242074],[-55.31419372558593,-23.95612525939941],[-55.353565216064396,-23.98891258239746],[-55.44090270996088,-23.90948867797846],[-55.44195556640619,-23.731216430664062],[-55.47669219970703,-23.640888214111328],[-55.53459930419922,-23.61095428466797],[-55.53695297241205,-23.444549560546818],[-55.50112533569336,-23.379241943359318],[-55.54849243164057,-23.31415367126459],[-55.51932525634765,-23.258966445922848],[-55.53881835937499,-23.162990570068356],[-55.589275360107415,-23.143989562988168],[-55.63899230957025,-23.026594161987305],[-55.66585159301758,-22.868566513061523],[-55.627353668212834,-22.766738891601562],[-55.62667083740229,-22.618640899658203],[-55.72369003295887,-22.545202255248967],[-55.74502563476556,-22.386493682861325],[-55.788978576660156,-22.379331588745117],[-55.860996246337834,-22.27632522583002],[-56.06004333496088,-22.290479660034123],[-56.20773696899413,-22.278108596801758],[-56.340785980224545,-22.20321083068842],[-56.40267562866205,-22.0747394561767],[-56.51827239990229,-22.100301742553654],[-56.5742568969726,-22.1967830657959],[-56.65064620971674,-22.256042480468746],[-56.75288772583002,-22.23407554626465],[-56.83046722412109,-22.297666549682614],[-56.99984359741211,-22.222686767578125],[-57.249507904052734,-22.24017715454096],[-57.58337402343749,-22.16428565979004],[-57.61576843261712,-22.093425750732422],[-57.700832366943295,-22.089618682861328],[-57.75571823120117,-22.13081359863281],[-57.920669555663956,-22.119312286376953],[-57.980224609375,-22.085548400878906],[-57.920166015624936,-21.872627258300724],[-57.896221160888615,-21.699850082397404],[-57.91535568237305,-21.587223052978516],[-57.96281814575183,-21.54905128479004],[-57.85876083374018,-21.31073570251465],[-57.84623718261719,-21.09894371032709],[-57.86509704589843,-21.03861045837391],[-57.818119049072216,-20.981237411499023],[-57.92005538940429,-20.881124496459904],[-57.85973358154296,-20.848274230956974],[-57.869922637939396,-20.7281494140625],[-57.914821624755795,-20.667705535888672],[-58.01480484008789,-20.60527038574213],[-58.003658294677734,-20.423196792602482],[-58.07678222656238,-20.376808166503793],[-58.086708068847656,-20.27056312561035],[-58.15318298339843,-20.261148452758732],[-58.15610885620111,-20.150840759277344],[-58.05030059814453,-20.100440979003903],[-57.87668991088861,-19.96588134765625],[-57.98727035522461,-19.888029098510742],[-58.13339996337884,-19.757841110229492],[-57.78419113159173,-19.03351020812977],[-57.71014022827148,-19.032590866088867],[-57.71977233886718,-18.89906883239746],[-57.766609191894524,-18.899288177490234],[-57.55776977539057,-18.2403507232666],[-57.505069732666016,-18.200340270996094],[-57.57479095458984,-18.13188934326172],[-57.600040435790895,-18.046369552612305],[-57.72060012817382,-17.827859878539982],[-57.7148094177246,-17.733718872070312],[-57.785049438476506,-17.645490646362305],[-57.752231597900334,-17.56445884704584],[-57.71201705932617,-17.544103622436523],[-57.684238433837834,-17.715637207031193],[-57.62304306030273,-17.736360549926758],[-57.60301208496094,-17.804351806640565],[-57.477519989013665,-17.859054565429688],[-57.2647705078125,-17.8203506469726],[-57.22706985473633,-17.78278732299799],[-57.11554336547846,-17.781089782714787],[-56.98815536499017,-17.659292221069336],[-56.94240188598633,-17.551897048950195],[-56.87590026855462,-17.532974243164062],[-56.75685119628906,-17.326736450195256],[-56.595825195312386,-17.332546234130803],[-56.490032196044865,-17.29831695556635],[-56.44326019287109,-17.33071327209467],[-56.280055999755795,-17.259166717529293],[-56.251277923583984,-17.219024658203125],[-56.113052368164,-17.167198181152287],[-56.0160026550293,-17.190231323242188],[-56.01071929931635,-17.2390460968017],[-55.874744415283146,-17.268636703491097],[-55.72218322753906,-17.34869956970215],[-55.58284378051758,-17.379074096679688],[-55.52223205566406,-17.472576141357365],[-55.29961013793945,-17.541194915771484],[-55.127193450927734,-17.65272331237793],[-54.974212646484375,-17.617046356201115],[-54.86080169677729,-17.623855590820312],[-54.75871658325195,-17.56569862365717],[-54.748889923095696,-17.522886276245004],[-54.50368881225586,-17.480112075805664],[-54.42101669311523,-17.53775405883789],[-54.33552169799793,-17.661724090576172],[-54.17876815795898,-17.602853775024414],[-54.08462905883789,-17.619035720825195],[-54.03756713867182,-17.486444473266545],[-53.95218276977538,-17.459337234497013],[-53.820011138916016,-17.29461669921869],[-53.759014129638615,-17.243143081664982],[-53.68001174926758,-17.253570556640625],[-53.70382308959961,-17.661344528198185],[-53.8558464050293,-17.702718734741154],[-53.955684661865234,-17.883020401000977],[-53.83749008178705,-17.93470382690424],[-53.77415466308587,-18.000772476196175],[-53.66118240356445,-17.97751235961914],[-53.46778869628906,-18.034893035888672],[-53.29894638061518,-17.995534896850586],[-53.173622131347656,-18.042049407958984],[-53.07192611694336,-18.039468765258732]]]},"properties":{"ID_0":33,"ISO":"BR-MS","NAME_0":"Brazil","ID_1":11,"NAME_1":"Mato Grosso do Sul","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-50.22717285156244,-9.84562969207758],[-50.31239700317383,-10.04567241668701],[-50.39209365844726,-10.134040832519474],[-50.38262939453119,-10.222892761230469],[-50.423145294189396,-10.330657005310002],[-50.516025543212834,-10.505141258239746],[-50.51967239379877,-10.562488555908203],[-50.60339736938471,-10.660944938659668],[-50.5705337524414,-10.752511978149414],[-50.621952056884766,-10.839422225952092],[-50.63289260864258,-10.935950279235783],[-50.6094017028808,-11.06746768951416],[-50.65796279907215,-11.128582954406738],[-50.65436553955078,-11.218374252319336],[-50.74200439453125,-11.454914093017576],[-50.740116119384766,-11.53861999511713],[-50.65818405151367,-11.592030525207463],[-50.663459777831974,-11.672493934631348],[-50.721534729003906,-11.731719970703068],[-50.686248779296875,-11.859002113342285],[-50.63923263549805,-11.884573936462346],[-50.68218231201166,-11.990894317626951],[-50.66756439208978,-12.064569473266602],[-50.678619384765625,-12.218859672546271],[-50.62681579589844,-12.384039878845101],[-50.623516082763615,-12.455289840698242],[-50.7064323425293,-12.609708786010742],[-50.62322616577143,-12.734309196472111],[-50.61345291137695,-12.818407058715763],[-50.511016845703125,-12.860708236694336],[-50.52587509155268,-12.976426124572754],[-50.57686996459955,-13.051088333129826],[-50.60715103149414,-13.310861587524357],[-50.66559600830066,-13.376140594482365],[-50.66540145874012,-13.442285537719668],[-50.763397216796875,-13.530016899108887],[-50.80390548706054,-13.690969467163086],[-50.864021301269474,-13.721739768981877],[-50.83173370361328,-14.073386192321776],[-50.96123504638672,-14.249350547790527],[-50.99901580810547,-14.419235229492188],[-50.962818145751896,-14.52706623077387],[-51.08976745605463,-14.84116458892822],[-51.08402633666992,-14.916407585143986],[-51.24254608154291,-15.035402297973574],[-51.301868438720646,-14.986533164978026],[-51.428279876708984,-15.00923728942871],[-51.535903930664006,-15.069691658019961],[-51.598186492919865,-15.155446052551214],[-51.652038574218686,-15.179879188537486],[-51.6882438659668,-15.30885887145996],[-51.67132568359369,-15.371731758117619],[-51.7046165466308,-15.49670124053955],[-51.77585601806635,-15.558287620544434],[-51.762908935546875,-15.645635604858397],[-51.89220809936512,-15.830288887023926],[-51.94677734374999,-15.810563087463379],[-52.00798034667963,-15.885480880737303],[-52.25257492065423,-15.892660140991154],[-52.32769775390625,-16.06859588623047],[-52.548553466796875,-16.16511726379389],[-52.546279907226555,-16.258520126342773],[-52.65699768066406,-16.280166625976506],[-52.68686294555664,-16.315483093261662],[-52.676582336425724,-16.41230964660639],[-52.60433197021484,-16.46465873718256],[-52.63569641113281,-16.55163383483881],[-52.746803283691406,-16.63071060180664],[-52.79250717163086,-16.739734649658203],[-52.882225036621094,-16.77611160278309],[-52.96414566040039,-16.86700057983387],[-53.01405334472656,-16.864902496337777],[-53.068923950195256,-17.029968261718693],[-53.21857833862293,-17.299306869506836],[-53.197456359863274,-17.38133811950678],[-53.23025894165038,-17.427248001098633],[-53.25075912475586,-17.62806892395014],[-53.23828125,-17.714141845703068],[-53.17728424072254,-17.75586509704584],[-53.131370544433594,-17.916845321655217],[-53.07000732421875,-17.98653793334961],[-53.07192611694336,-18.039468765258732],[-53.173622131347656,-18.042049407958984],[-53.29894638061518,-17.995534896850586],[-53.46778869628906,-18.034893035888672],[-53.66118240356445,-17.97751235961914],[-53.77415466308587,-18.000772476196175],[-53.83749008178705,-17.93470382690424],[-53.955684661865234,-17.883020401000977],[-53.8558464050293,-17.702718734741154],[-53.70382308959961,-17.661344528198185],[-53.68001174926758,-17.253570556640625],[-53.759014129638615,-17.243143081664982],[-53.820011138916016,-17.29461669921869],[-53.95218276977538,-17.459337234497013],[-54.03756713867182,-17.486444473266545],[-54.08462905883789,-17.619035720825195],[-54.17876815795898,-17.602853775024414],[-54.33552169799793,-17.661724090576172],[-54.42101669311523,-17.53775405883789],[-54.50368881225586,-17.480112075805664],[-54.748889923095696,-17.522886276245004],[-54.75871658325195,-17.56569862365717],[-54.86080169677729,-17.623855590820312],[-54.974212646484375,-17.617046356201115],[-55.127193450927734,-17.65272331237793],[-55.29961013793945,-17.541194915771484],[-55.52223205566406,-17.472576141357365],[-55.58284378051758,-17.379074096679688],[-55.72218322753906,-17.34869956970215],[-55.874744415283146,-17.268636703491097],[-56.01071929931635,-17.2390460968017],[-56.0160026550293,-17.190231323242188],[-56.113052368164,-17.167198181152287],[-56.251277923583984,-17.219024658203125],[-56.280055999755795,-17.259166717529293],[-56.44326019287109,-17.33071327209467],[-56.490032196044865,-17.29831695556635],[-56.595825195312386,-17.332546234130803],[-56.75685119628906,-17.326736450195256],[-56.87590026855462,-17.532974243164062],[-56.94240188598633,-17.551897048950195],[-56.98815536499017,-17.659292221069336],[-57.11554336547846,-17.781089782714787],[-57.22706985473633,-17.78278732299799],[-57.2647705078125,-17.8203506469726],[-57.477519989013665,-17.859054565429688],[-57.60301208496094,-17.804351806640565],[-57.62304306030273,-17.736360549926758],[-57.684238433837834,-17.715637207031193],[-57.71201705932617,-17.544103622436523],[-57.752231597900334,-17.56445884704584],[-57.89920043945307,-17.45949172973627],[-58.00255966186518,-17.519540786743107],[-58.060077667236264,-17.450721740722596],[-58.24198913574219,-17.362871170043945],[-58.395462036132805,-17.18445968627924],[-58.47434997558588,-16.934959411621037],[-58.46303939819335,-16.652221679687443],[-58.43601989746088,-16.592359542846623],[-58.343791961669865,-16.517728805541992],[-58.356189727783146,-16.42803955078125],[-58.32147979736322,-16.378320693969727],[-58.320308685302734,-16.26902961730957],[-58.430400848388615,-16.32129859924316],[-59.47002792358398,-16.279550552368107],[-60.17198181152338,-16.262117385864197],[-60.235233306884645,-15.473531723022404],[-60.559486389160035,-15.11141109466553],[-60.24424743652344,-15.096813201904297],[-60.27207946777343,-14.620298385620117],[-60.32105636596673,-14.608878135681154],[-60.334449768066406,-14.508839607238713],[-60.392589569091676,-14.428670883178654],[-60.38825988769531,-14.368611335754393],[-60.44916915893555,-14.289369583129883],[-60.48159027099609,-14.181341171264648],[-60.47111129760742,-14.098210334777775],[-60.37845993041986,-13.992450714111326],[-60.44145202636719,-13.932999610900877],[-60.467720031738224,-13.800960540771484],[-60.53474044799805,-13.802941322326602],[-60.574691772460945,-13.747440338134764],[-60.65625,-13.738349914550723],[-60.82852935791015,-13.629509925842285],[-60.918922424316285,-13.548334121704043],[-60.8650894165039,-13.541679382324217],[-60.705120086669915,-13.324747085571289],[-60.37143325805663,-13.318634033203068],[-60.28055191040038,-13.135627746581974],[-60.267551422119084,-13.077292442321777],[-60.18328094482421,-12.967638015747013],[-60.11709976196289,-12.959565162658691],[-60.07904815673828,-12.881149291992188],[-60.088958740234375,-12.740471839904671],[-60.02657699584961,-12.561638832092228],[-59.903095245361335,-12.472520828247069],[-59.868423461914006,-12.48237133026123],[-59.79287719726562,-12.345791816711424],[-59.8862838745116,-12.245482444763182],[-59.90117263793945,-12.115450859069767],[-59.979290008544915,-12.029559135436896],[-59.98510742187501,-11.91435432434082],[-60.098796844482415,-11.845566749572752],[-60.12159729003906,-11.712114334106387],[-60.090717315673764,-11.554890632629395],[-59.920570373535156,-11.398019790649414],[-59.92770767211914,-11.310445785522404],[-59.981964111328125,-11.233511924743596],[-60.019325256347535,-11.129109382629338],[-60.15921020507807,-11.095663070678652],[-60.39149093627929,-11.093803405761662],[-60.459987640380795,-10.98986530303955],[-61.428943634033146,-10.987543106079043],[-61.53002929687494,-10.979029655456543],[-61.49876022338856,-10.699950218200682],[-61.47616577148437,-10.607674598693734],[-61.461719512939396,-10.419917106628361],[-61.5336799621582,-10.331894874572754],[-61.60059356689447,-10.1538028717041],[-61.53113174438476,-9.989865303039494],[-61.507858276367195,-9.861091613769474],[-61.547294616699155,-9.787552833557129],[-61.53236007690429,-9.711790084838809],[-61.47911453247059,-9.633694648742676],[-61.5079727172851,-9.54047679901123],[-61.581661224365234,-9.459136009216309],[-61.55263137817377,-9.387434959411621],[-61.625328063964844,-9.339431762695256],[-61.6131019592284,-9.28001880645752],[-61.52028274536127,-9.192301750183105],[-61.554874420166016,-9.090265274047852],[-61.46843719482422,-8.917381286621094],[-61.526020050048764,-8.816848754882812],[-61.58290100097656,-8.798702239990178],[-60.84881591796869,-8.798162460327148],[-60.42017364501953,-8.796627998351994],[-59.85696792602538,-8.801086425781193],[-59.12720489501953,-8.80335807800293],[-58.50029373168939,-8.80283737182617],[-58.394840240478516,-8.779890060424691],[-58.43735504150385,-8.703430175781191],[-58.39117050170898,-8.592260360717773],[-58.4169921875,-8.492003440856934],[-58.3184928894043,-8.330199241638184],[-58.32252883911127,-8.17001247406],[-58.29157638549805,-8.074268341064453],[-58.37332534790039,-7.907220840454101],[-58.382881164550724,-7.839098930358829],[-58.29478836059564,-7.772321224212532],[-58.28091812133788,-7.70964002609253],[-58.20204544067383,-7.620935916900635],[-58.21294403076167,-7.458469867706299],[-58.13698959350585,-7.356139183044376],[-58.05897140502929,-7.400421142578068],[-57.972515106201115,-7.534605026245116],[-57.939491271972656,-7.653149127960147],[-57.8980827331543,-7.676039218902587],[-57.87377166748047,-7.801208972930907],[-57.83491516113275,-7.882768154144286],[-57.828765869140625,-7.972909927368164],[-57.72837448120111,-8.094229698181152],[-57.70457458496093,-8.168040275573729],[-57.64320755004878,-8.213688850402832],[-57.6792984008789,-8.318199157714844],[-57.6815185546875,-8.43313980102539],[-57.637577056884766,-8.513570785522461],[-57.59287261962884,-8.756489753723088],[-57.530323028564396,-8.74818706512451],[-57.416069030761655,-8.795891761779785],[-57.420406341552734,-8.849626541137695],[-57.19279479980463,-8.930065155029297],[-57.094539642333984,-9.01712512969965],[-57.03917694091791,-9.09830379486084],[-57.05776214599603,-9.184202194213867],[-56.99548339843744,-9.233853340148924],[-56.820045471191406,-9.246354103088379],[-56.77225875854492,-9.39097023010248],[-56.67181777954096,-9.36740779876709],[-55.79182815551758,-9.440700531005858],[-54.99549484252929,-9.505422592163029],[-54.10655212402344,-9.571932792663516],[-53.133323669433594,-9.644869804382266],[-52.25528335571289,-9.707819938659611],[-51.463748931884766,-9.762153625488281],[-50.842838287353516,-9.800833702087402],[-50.22717285156244,-9.84562969207758]]]},"properties":{"ID_0":33,"ISO":"BR-MT","NAME_0":"Brazil","ID_1":12,"NAME_1":"Mato Grosso","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Matto Grosso"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-40.22235107421869,-17.980426788330078],[-40.32173919677729,-17.939041137695312],[-40.52697753906244,-17.891941070556637],[-40.613388061523324,-17.939725875854435],[-40.638835906982365,-18.035118103027287],[-40.5581436157226,-18.114637374877873],[-40.545780181884766,-18.204254150390625],[-40.618865966796875,-18.28757476806635],[-40.58302688598627,-18.36737060546875],[-40.60767364501953,-18.41653823852539],[-40.52325820922846,-18.473001480102482],[-40.63817596435541,-18.51629447937006],[-40.84795379638672,-18.493974685668945],[-40.95999526977539,-18.383861541748047],[-41.052494049072266,-18.343742370605412],[-41.175498962402344,-18.443784713745117],[-41.02268981933588,-18.457685470581055],[-41.05083465576166,-18.6341495513916],[-40.943580627441406,-18.687572479248047],[-40.91671371459961,-18.81553840637207],[-40.963855743408146,-18.84116554260254],[-41.11044692993152,-18.83893394470209],[-41.134075164794865,-18.796035766601562],[-41.232490539550724,-18.7972736358642],[-41.24266815185547,-18.85394668579096],[-41.12678909301758,-18.894502639770508],[-41.0268440246582,-18.985818862914982],[-41.05379486083973,-19.068859100341797],[-40.984703063964844,-19.100711822509766],[-40.922611236572266,-19.204082489013672],[-40.90763473510742,-19.308805465698185],[-40.96788024902344,-19.428764343261715],[-40.9721794128418,-19.505287170410156],[-41.16841506958002,-19.672216415405273],[-41.19074249267567,-19.74687385559082],[-41.166118621826115,-19.80990219116211],[-41.18482589721674,-19.888954162597656],[-41.30031585693354,-19.93836212158203],[-41.30803680419916,-20.013011932373047],[-41.382057189941406,-20.188806533813477],[-41.411643981933594,-20.206674575805664],[-41.7567024230957,-20.20685958862293],[-41.78097534179676,-20.292537689208984],[-41.84708786010742,-20.32947921752924],[-41.799533843994084,-20.477590560913086],[-41.87485885620117,-20.766815185546875],[-41.925289154052734,-20.801576614379883],[-41.967281341552734,-20.916835784912053],[-42.13835144042969,-20.960554122924805],[-42.08041763305658,-21.035688400268555],[-42.164314270019474,-21.101451873779297],[-42.22893142700195,-21.284427642822266],[-42.22981262207031,-21.36656761169428],[-42.292564392089844,-21.460035324096566],[-42.252681732177734,-21.489831924438477],[-42.34618759155268,-21.58298492431635],[-42.2711448669433,-21.715682983398434],[-42.356487274169865,-21.741891860961914],[-42.79167556762684,-21.930871963500977],[-43.074077606201165,-22.09333992004389],[-43.154067993164,-22.077974319458008],[-43.23656845092762,-22.013248443603516],[-43.32175064086914,-22.006742477416932],[-43.46241760253906,-22.072645187377873],[-43.77738952636712,-22.06677436828613],[-43.98828125,-22.150171279907227],[-44.100032806396484,-22.173301696777287],[-44.21327972412109,-22.24625778198236],[-44.432662963867074,-22.2516250610351],[-44.543464660644474,-22.33175277709961],[-44.809181213378906,-22.405263900756836],[-44.898929595947266,-22.452819824218746],[-45.06063461303705,-22.472545623779293],[-45.17799377441406,-22.549869537353516],[-45.410442352294865,-22.651664733886662],[-45.471736907958984,-22.59051513671875],[-45.52487945556635,-22.646865844726562],[-45.57666397094721,-22.602342605590763],[-45.664955139160156,-22.65064811706543],[-45.729927062988224,-22.727233886718636],[-45.71674728393555,-22.779970169067383],[-45.766910552978516,-22.842336654663086],[-45.92253112792969,-22.824045181274357],[-46.00838851928705,-22.889215469360238],[-46.155281066894474,-22.864164352416992],[-46.34517288208007,-22.904672622680664],[-46.37675857543945,-22.82782173156738],[-46.33516311645508,-22.76018714904785],[-46.43939971923828,-22.726716995239258],[-46.39626312255854,-22.64597129821777],[-46.453502655029176,-22.52235031127924],[-46.63154220581048,-22.43581581115717],[-46.71789932250976,-22.316934585571286],[-46.67073822021479,-22.184240341186467],[-46.61298751831055,-22.15024566650385],[-46.68535614013671,-22.0373477935791],[-46.64381408691406,-21.974948883056584],[-46.690906524658196,-21.836940765380803],[-46.62598037719726,-21.766199111938473],[-46.640895843505746,-21.602266311645508],[-46.694786071777344,-21.61142349243158],[-46.763034820556584,-21.547195434570312],[-46.65134048461914,-21.438982009887695],[-46.776344299316406,-21.36281967163086],[-46.93408203125,-21.425212860107422],[-47.118736267089844,-21.185768127441406],[-47.11309814453125,-21.10491371154785],[-47.14366912841791,-20.982378005981445],[-47.23999023437494,-20.88527488708496],[-47.18620300292963,-20.73112869262695],[-47.11869812011719,-20.707237243652287],[-47.09732437133778,-20.644332885742188],[-47.15431976318354,-20.519723892211914],[-47.29172897338867,-20.44930458068842],[-47.29815673828119,-20.348440170288086],[-47.23105239868164,-20.219100952148438],[-47.30961990356445,-20.124494552612248],[-47.40305328369134,-20.082788467407227],[-47.46632385253906,-19.964216232299805],[-47.57896041870117,-19.995243072509652],[-47.63591766357422,-20.048376083373963],[-47.70418167114257,-19.979900360107422],[-47.8597297668457,-19.99298858642578],[-47.89432907104492,-20.123830795288026],[-48.00329589843744,-20.10462951660145],[-48.07038497924805,-20.14659881591797],[-48.178760528564396,-20.09579658508295],[-48.20333099365234,-20.045438766479435],[-48.31630325317377,-20.11371612548828],[-48.72948455810547,-20.150243759155217],[-48.85559082031244,-20.182081222534123],[-48.885398864746094,-20.26913452148426],[-48.867385864257805,-20.40009117126459],[-48.968841552734375,-20.393735885620004],[-48.96173095703119,-20.26329040527338],[-48.99219512939453,-20.165388107299748],[-49.06742477416981,-20.154737472534123],[-49.12028121948242,-20.269697189331055],[-49.226993560791016,-20.30353164672846],[-49.299190521240234,-20.16706275939941],[-49.297481536865234,-19.960540771484375],[-49.44032287597656,-19.98080062866211],[-49.55141067504877,-19.905841827392578],[-49.641159057617074,-19.931869506835938],[-49.78239822387684,-19.92445755004877],[-49.891223907470696,-19.9437198638916],[-50.04383850097656,-19.916492462158203],[-50.09957885742182,-19.875988006591793],[-50.35273742675781,-19.86458587646473],[-50.47184753417969,-19.779651641845703],[-50.57592773437494,-19.81601715087885],[-50.6568374633789,-19.90537261962885],[-50.783542633056584,-19.937225341796815],[-50.966400146484375,-20.03452491760254],[-51.000415802001896,-20.08538055419922],[-51.020339965820256,-19.962385177612187],[-50.999412536621094,-19.9063720703125],[-51.045372009277344,-19.73755264282221],[-50.98749542236328,-19.58950424194336],[-50.924106597900334,-19.558616638183537],[-50.93574905395502,-19.467674255371094],[-50.87233734130854,-19.406127929687443],[-50.81706237792969,-19.289823532104435],[-50.677650451660156,-19.13968849182129],[-50.58496856689453,-19.137386322021428],[-50.4986839294433,-19.034025192260742],[-50.50024795532226,-18.9296932220459],[-50.37499237060541,-18.81029891967762],[-50.30930328369129,-18.69844818115234],[-50.16423034667962,-18.664350509643555],[-50.079986572265625,-18.6722412109375],[-50.01653289794922,-18.599838256835938],[-49.8851699829101,-18.60976791381836],[-49.7836341857909,-18.641340255737248],[-49.6454963684082,-18.557390213012695],[-49.48623275756835,-18.50825881958002],[-49.48177337646479,-18.561029434204045],[-49.41667556762695,-18.6385498046875],[-49.2491455078125,-18.522996902465763],[-49.18623352050775,-18.544534683227482],[-49.03396987915039,-18.524826049804688],[-49.005908966064396,-18.374355316162053],[-48.93671798706055,-18.306205749511715],[-48.83202743530268,-18.346130371093693],[-48.64711380004877,-18.34388923645014],[-48.477756500244084,-18.379196166992188],[-48.31489181518555,-18.36415481567377],[-48.27901840209955,-18.331531524658146],[-48.08857345581043,-18.429399490356445],[-48.047988891601555,-18.416967391967773],[-47.96214294433594,-18.496068954467773],[-47.86412811279297,-18.4643611907959],[-47.8090705871582,-18.400869369506832],[-47.698524475097535,-18.37723731994629],[-47.58140563964837,-18.23170471191395],[-47.497127532958984,-18.199100494384762],[-47.357742309570256,-18.085020065307617],[-47.28315353393555,-18.0582332611084],[-47.35877990722656,-17.887214660644474],[-47.336986541747926,-17.73742294311523],[-47.270362854003906,-17.674470901489258],[-47.26391601562494,-17.620458602905273],[-47.33087921142567,-17.524839401245117],[-47.50284957885742,-17.516550064086914],[-47.533271789550774,-17.394418716430607],[-47.42074203491211,-17.30104255676264],[-47.35193252563471,-17.166498184203988],[-47.14693069458008,-17.030784606933594],[-47.25010299682606,-16.66681480407715],[-47.44435882568354,-16.54076957702631],[-47.4271240234375,-16.394161224365174],[-47.3662223815918,-16.331499099731445],[-47.322410583496094,-16.231317520141545],[-47.35201644897455,-16.131959915161133],[-47.30875778198231,-16.0505313873291],[-47.309001922607415,-16.035945892333928],[-47.228294372558594,-16.015762329101562],[-47.151123046875,-15.935004234313963],[-47.052738189697266,-15.937916755676213],[-46.82481384277344,-15.885722160339299],[-46.813098907470646,-15.78720378875727],[-46.854740142822266,-15.620355606079102],[-46.94904708862305,-15.55459976196289],[-46.93041610717768,-15.44309139251709],[-46.84942626953125,-15.37316513061512],[-46.83685302734369,-15.322600364685057],[-46.92760467529296,-15.255097389221133],[-46.9372940063476,-15.205021858215273],[-46.889095306396484,-15.111639022827148],[-46.91870498657215,-15.049869537353402],[-46.85684585571288,-15.010270118713379],[-46.78180694580078,-15.019327163696287],[-46.62539291381836,-15.089517593383789],[-46.502990722656186,-15.052579879760685],[-46.530757904052734,-15.005281448364144],[-46.5587539672851,-14.821079254150277],[-46.54413986206054,-14.753017425537111],[-46.46879196166992,-14.708827018737793],[-46.32214736938471,-14.814582824706974],[-46.286792755126896,-14.928150177001895],[-46.176425933837834,-14.94905185699457],[-46.088088989257805,-14.936395645141545],[-46.0373649597168,-14.874085426330565],[-45.96603012084961,-14.965646743774414],[-45.97547149658203,-15.038911819457951],[-46.04367065429682,-15.118131637573242],[-46.02799987792969,-15.201348304748533],[-45.91841125488281,-15.133514404296875],[-45.73033905029296,-15.11675834655756],[-45.67469406127924,-15.080490112304686],[-45.566082000732365,-14.944863319396916],[-45.49000549316395,-14.960762977600098],[-45.16641235351557,-14.735305786132812],[-45.09541320800781,-14.752880096435488],[-45.039478302001896,-14.680257797241154],[-44.87590789794916,-14.599662780761717],[-44.81376647949219,-14.504664421081543],[-44.55715179443359,-14.337038040161074],[-44.430301666259766,-14.289395332336367],[-44.24056243896478,-14.240703582763672],[-44.03445816040039,-14.288872718811033],[-43.98632431030268,-14.26755428314209],[-43.78314590454101,-14.33924674987793],[-43.87383270263672,-14.520586013793945],[-43.883460998535156,-14.65323352813715],[-43.71981048583984,-14.729543685913027],[-43.51111221313471,-14.796578407287539],[-43.461223602294865,-14.746230125427246],[-43.311180114746094,-14.669751167297305],[-43.176300048828125,-14.650548934936522],[-42.952644348144474,-14.708402633666879],[-42.90583801269531,-14.761046409606879],[-42.75508880615234,-14.846421241760252],[-42.62565994262695,-14.944699287414439],[-42.43674850463867,-15.022719383239744],[-42.44287109375,-15.060606956481875],[-42.26474761962885,-15.125177383422852],[-42.153297424316406,-15.099364280700684],[-42.09601974487305,-15.182447433471621],[-41.95338058471673,-15.175666809082031],[-41.8006591796875,-15.101098060607853],[-41.356365203857365,-15.500288963317871],[-41.33115005493164,-15.744673728942814],[-41.215225219726506,-15.737250328063851],[-41.16939926147461,-15.760518074035643],[-41.00712585449213,-15.713836669921875],[-40.96222305297846,-15.648887634277344],[-40.855396270751896,-15.687154769897402],[-40.69929885864252,-15.66862106323242],[-40.62933349609375,-15.715712547302246],[-40.56199264526367,-15.80328369140625],[-40.460578918456974,-15.753732681274412],[-40.42497253417969,-15.805704116821175],[-40.231052398681584,-15.803847312927244],[-40.15976333618163,-15.908464431762694],[-40.074783325195305,-15.920050621032656],[-40.00437164306629,-16.001834869384766],[-39.922134399414006,-16.028623580932617],[-39.85676193237305,-16.113826751708984],[-39.88332366943354,-16.194690704345703],[-39.96044921875,-16.32189750671381],[-40.02476501464838,-16.35689926147461],[-40.171150207519474,-16.52414894104004],[-40.275447845458984,-16.574026107788086],[-40.33577728271473,-16.779710769653317],[-40.25774383544916,-16.80653953552246],[-40.281581878662045,-16.90118217468256],[-40.366424560546875,-16.874168395996094],[-40.49114227294922,-16.88448524475092],[-40.54542160034179,-16.98429298400879],[-40.57830047607421,-17.147172927856445],[-40.55380249023437,-17.189027786254883],[-40.59967803955078,-17.390346527099553],[-40.52056503295893,-17.446502685546875],[-40.46035385131836,-17.568498611450195],[-40.39675140380859,-17.62560081481922],[-40.341587066650334,-17.619953155517578],[-40.280296325683594,-17.722782135009766],[-40.22388076782221,-17.734062194824162],[-40.17503356933594,-17.852672576904293],[-40.26342010498047,-17.921983718872013],[-40.22235107421869,-17.980426788330078]]]},"properties":{"ID_0":33,"ISO":"BR-MG","NAME_0":"Brazil","ID_1":13,"NAME_1":"Minas Gerais","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Minas|Minas Geraes"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-54.86752319335937,2.441957950592098],[-54.794185638427734,2.312705993652457],[-54.81135940551758,2.266349077224788],[-54.76305007934564,2.202291011810416],[-54.80619430541992,2.138899087905941],[-54.81127548217768,2.039407968521175],[-54.77152633666986,1.940471053123588],[-54.744716644287045,1.775771975517273],[-54.60185623168939,1.784548997879028],[-54.49588394165038,1.746914982795715],[-54.37765884399408,1.763659954071045],[-54.309246063232415,1.741024017333928],[-54.10188674926757,1.584278941154594],[-54.08868789672845,1.491971015930176],[-53.99946594238281,1.50474405288702],[-53.89593887329095,1.455096960067749],[-53.850280761718686,1.39181494712841],[-53.783660888671875,1.402827978134155],[-53.538490295410156,1.340834975242671],[-53.55662918090814,1.284780025482178],[-53.4387092590332,1.232107043266296],[-53.396018981933594,1.179267048835868],[-53.45718383789057,1.138265013694877],[-53.411434173583984,0.92931699752819],[-53.19021224975586,0.768356978893337],[-53.14381408691406,0.696233987808341],[-53.17525100708002,0.381689995527211],[-53.09406661987305,0.258931994438115],[-52.97723388671875,0.023770000785703],[-52.93364715576172,-0.139542996883392],[-52.851482391357365,-0.150187000632172],[-52.68411254882807,-0.314339011907578],[-52.69537734985346,-0.496425986289978],[-52.63994979858393,-0.584930002689361],[-52.53512191772461,-0.574110984802189],[-52.49734878540039,-0.711308002471924],[-52.516876220703125,-0.858640015125218],[-52.444263458251896,-0.834191977977753],[-52.403099060058594,-0.877171993255615],[-52.41673278808594,-1.025635004043522],[-52.33293151855469,-1.115913987159729],[-52.12020492553705,-1.146221995353642],[-52.10034179687499,-1.22651994228363],[-51.993343353271484,-1.128998041152954],[-51.88722991943353,-1.166422009468022],[-51.80904006958002,-1.157124996185246],[-51.687171936035156,-1.036034941673279],[-51.68339157104492,-0.794053971767426],[-51.59547805786133,-0.650461971759796],[-51.457733154296875,-0.51325798034668],[-51.3543968200683,-0.318549007177296],[-51.21630477905268,-0.118637003004551],[-51.06561660766601,-0.076251998543739],[-50.97479248046874,0.041756998747701],[-50.78474044799805,0.112086996436119],[-50.668140411376896,0.185008004307804],[-50.57986831665039,0.269778013229484],[-50.47615432739258,0.481476008892173],[-50.43649291992182,0.600078999996299],[-50.3471794128418,0.666817009448948],[-50.15738296508778,0.705085992813224],[-50.07069396972645,0.698150992393607],[-50.07764053344721,0.633749008178768],[-50.00847244262695,0.314305990934372],[-49.86958312988281,0.293749988079071],[-49.63430404663086,0.381803989410344],[-49.53680419921869,0.339305013418254],[-49.37291717529297,0.027084000408706],[-49.3245849609375,-0.161806002259198],[-49.202915191650334,-0.144029006361848],[-49.010417938232415,-0.16347199678421],[-48.94291687011719,-0.222916007041931],[-48.836528778076115,-0.223472997546139],[-48.707916259765625,-0.253194987773895],[-48.63763809204101,-0.232361003756523],[-48.4051399230957,-0.251803994178715],[-48.373748779296875,-0.309029012918415],[-48.05430603027338,-0.660417020320835],[-47.98764038085932,-0.695693016052189],[-47.92069625854486,-0.625137984752598],[-47.83652877807617,-0.680972993373814],[-47.82736206054676,-0.606251001358032],[-47.72097396850586,-0.646528005599975],[-47.67458343505848,-0.578751027584019],[-47.54708480834961,-0.636527001857644],[-47.48041534423817,-0.606251001358032],[-47.32152938842768,-0.592361986637115],[-47.29097366333008,-0.64180600643158],[-47.22375106811518,-0.632916986942291],[-47.211250305175774,-0.70319402217865],[-47.12236022949219,-0.67902797460556],[-47.06652832031249,-0.803471982479039],[-46.96569442749018,-0.765416979789734],[-46.91513824462885,-0.82541698217392],[-46.83986282348633,-0.740972995758],[-46.80958175659174,-0.84291702508915],[-46.73430633544921,-0.856805980205536],[-46.63680648803711,-0.7934730052948],[-46.60124969482422,-0.833472013473511],[-46.65486145019531,-0.973749995231571],[-46.55764007568348,-0.942084014415741],[-46.31847381591797,-1.02347195148468],[-46.22930526733398,-0.895416021347046],[-46.15819549560547,-1.010416984558049],[-46.05145263671875,-1.105137944221497],[-46.08441543579096,-1.189643979072514],[-46.151092529296754,-1.224804043769836],[-46.162849426269524,-1.278329014778137],[-46.10610580444336,-1.332491040229797],[-46.13946151733398,-1.444419026374817],[-46.17658233642578,-1.475381016731205],[-46.131927490234375,-1.578832983970642],[-46.15357589721679,-1.675917983055115],[-46.22511291503906,-1.726065993309021],[-46.29111862182617,-1.723441958427429],[-46.31654739379877,-1.795057058334351],[-46.22927856445307,-1.800623059272709],[-46.21853256225586,-1.913226008415165],[-46.27334594726557,-2.058764934539795],[-46.291786193847656,-2.164582967758065],[-46.43161392211914,-2.298372983932438],[-46.433876037597656,-2.51484298706049],[-46.50495529174805,-2.614938020706177],[-46.62187194824219,-2.644543886184635],[-46.668033599853516,-2.734045028686467],[-46.59892272949212,-2.795705080032292],[-46.63661575317383,-2.851216077804565],[-46.65203475952143,-2.996537923812809],[-46.746395111083984,-3.178845882415715],[-46.80739593505854,-3.241871118545532],[-46.848415374755746,-3.335644006729069],[-46.94882965087885,-3.406909942626896],[-46.977012634277344,-3.526058912277222],[-47.01845550537098,-3.546910047531014],[-47.056201934814396,-3.646598100662174],[-47.04550933837885,-3.708010911941472],[-47.088066101074155,-3.855468988418522],[-47.13512420654296,-3.881808996200505],[-47.21979522705078,-3.995964050292968],[-47.31884765624994,-4.046940803527775],[-47.37962341308594,-4.220445156097355],[-47.47339630126953,-4.314453124999886],[-47.47609329223627,-4.355028152465763],[-47.581424713134766,-4.519952774047852],[-47.679889678955014,-4.608623027801457],[-47.789871215820256,-4.585527896881047],[-47.81610107421869,-4.614747047424316],[-48.434104919433594,-5.096251010894775],[-48.75510025024402,-5.349186897277775],[-48.62907028198242,-5.410074234008732],[-48.51070022583008,-5.429666042327881],[-48.3934593200683,-5.394231796264592],[-48.30065536499018,-5.523021221160832],[-48.138099670410156,-5.602708816528263],[-48.17426300048828,-5.70923614501953],[-48.272491455078125,-5.725509166717529],[-48.29172134399413,-5.833617210388127],[-48.2315788269043,-5.946154117584115],[-48.3214111328125,-5.985517024993783],[-48.2831077575683,-6.081573963165282],[-48.43637847900379,-6.193415164947453],[-48.41199493408203,-6.306081771850586],[-48.5001602172851,-6.350944995880127],[-48.613101959228516,-6.453744888305664],[-48.66430282592768,-6.570587158203125],[-48.651908874511605,-6.639966011047362],[-48.81413650512695,-6.751779079437198],[-49.018829345703125,-6.784226894378662],[-49.11521911621094,-6.869965076446533],[-49.20944595336914,-6.925416946411133],[-49.18523025512695,-7.235185146331729],[-49.23142242431635,-7.325801849365233],[-49.37794494628895,-7.496460914611816],[-49.381759643554574,-7.566677093505859],[-49.3415908813476,-7.657280921935977],[-49.160686492919865,-7.791382789611704],[-49.162723541259766,-7.900545120239257],[-49.215801239013615,-8.194225311279297],[-49.283267974853516,-8.379569053649902],[-49.3493537902832,-8.418390274047852],[-49.40983200073242,-8.580012321472111],[-49.59235763549805,-8.839503288268986],[-49.684303283691406,-8.856487274169865],[-49.842533111572266,-9.027338027954045],[-49.90763854980469,-9.173836708068848],[-50.05070114135742,-9.313079833984375],[-50.05278015136719,-9.37268352508539],[-50.10528182983393,-9.475420951843205],[-50.089508056640625,-9.54570484161377],[-50.22717285156244,-9.84562969207758],[-50.842838287353516,-9.800833702087402],[-51.463748931884766,-9.762153625488281],[-52.25528335571289,-9.707819938659611],[-53.133323669433594,-9.644869804382266],[-54.10655212402344,-9.571932792663516],[-54.99549484252929,-9.505422592163029],[-55.79182815551758,-9.440700531005858],[-56.67181777954096,-9.36740779876709],[-56.77225875854492,-9.39097023010248],[-56.820045471191406,-9.246354103088379],[-56.99548339843744,-9.233853340148924],[-57.05776214599603,-9.184202194213867],[-57.03917694091791,-9.09830379486084],[-57.094539642333984,-9.01712512969965],[-57.19279479980463,-8.930065155029297],[-57.420406341552734,-8.849626541137695],[-57.416069030761655,-8.795891761779785],[-57.530323028564396,-8.74818706512451],[-57.59287261962884,-8.756489753723088],[-57.637577056884766,-8.513570785522461],[-57.6815185546875,-8.43313980102539],[-57.6792984008789,-8.318199157714844],[-57.64320755004878,-8.213688850402832],[-57.70457458496093,-8.168040275573729],[-57.72837448120111,-8.094229698181152],[-57.828765869140625,-7.972909927368164],[-57.83491516113275,-7.882768154144286],[-57.87377166748047,-7.801208972930907],[-57.8980827331543,-7.676039218902587],[-57.939491271972656,-7.653149127960147],[-57.972515106201115,-7.534605026245116],[-58.05897140502929,-7.400421142578068],[-58.13698959350585,-7.356139183044376],[-58.16994476318354,-7.313237190246582],[-58.18325424194335,-7.178287029266357],[-58.33872222900385,-6.983938217163086],[-58.434490203857365,-6.908822059631291],[-58.48168945312495,-6.781438827514591],[-58.478408813476555,-6.699629783630314],[-58.42724227905267,-6.61618423461914],[-58.34982299804677,-6.562417030334473],[-58.32557296752925,-6.499310016632023],[-58.26248550415039,-6.468937873840332],[-57.861320495605405,-5.60112285614008],[-57.54801940917968,-4.921609878539925],[-57.24941253662109,-4.287967205047607],[-57.01884460449213,-3.798324108123779],[-56.887176513671875,-3.499067068099976],[-56.57588577270502,-2.824132919311523],[-56.402095794677734,-2.456638097763004],[-56.46442413330078,-2.431615114212036],[-56.384254455566406,-2.270495891570988],[-56.263435363769474,-2.221077919006348],[-56.16936492919922,-2.145530939102116],[-56.09857559204096,-2.02708196640009],[-56.22831344604492,-2.056241989135742],[-56.413818359375,-2.175971984863281],[-56.52700424194335,-2.139218091964721],[-56.612850189208984,-2.210192918777409],[-56.67900848388672,-2.212585926055908],[-56.76936721801752,-2.140695095062256],[-56.72126770019531,-2.04914903640747],[-56.747821807861264,-2.01152491569519],[-56.85898208618164,-2.015949010848885],[-57.03714370727539,-1.91157603263855],[-57.097793579101555,-1.775128960609436],[-57.274333953857365,-1.709761023521423],[-57.352005004882805,-1.733189940452575],[-57.41187286376947,-1.673305988311768],[-57.47513961791992,-1.678024053573608],[-57.5900650024414,-1.580122947692814],[-57.6786155700683,-1.594360947608948],[-57.71310043334961,-1.504171013832092],[-57.773262023925774,-1.508823037147465],[-57.82397460937499,-1.439780950546265],[-57.91846084594721,-1.419831991195622],[-57.99632263183593,-1.344344973564148],[-57.96542739868164,-1.206107974052372],[-58.01747894287109,-1.106174945831242],[-58.081790924072266,-1.126505017280579],[-58.16258239746088,-1.229681015014648],[-58.25470352172845,-1.132614970207101],[-58.323223114013665,-1.143318057060242],[-58.36842727661132,-1.06604599952692],[-58.43001556396479,-1.027140974998474],[-58.4146957397461,-0.967077016830444],[-58.45898056030267,-0.86401700973505],[-58.560569763183544,-0.804641008377018],[-58.731933593749936,-0.62738299369812],[-58.71068572998041,-0.521494984626713],[-58.72515487670893,-0.442243993282261],[-58.87200164794921,-0.3430179953574],[-58.8809700012207,-0.196603998541832],[-58.8638191223144,-0.078055001795292],[-58.89498519897462,-0.010986000299454],[-58.89534759521484,0.263505995273647],[-58.89543151855468,1.227664947509822],[-58.79553222656244,1.176952004432735],[-58.746067047119084,1.199892997741699],[-58.69200897216796,1.288506031036434],[-58.50711059570313,1.264407038688773],[-58.473323822021364,1.29938900470745],[-58.481498718261655,1.463438987731934],[-58.38206100463867,1.470644950866756],[-58.37577438354492,1.546116948127803],[-58.31858444213867,1.593605041503963],[-58.141544342041016,1.50966203212738],[-58.00127029418945,1.505056023597774],[-57.999404907226506,1.666959047317505],[-57.93241882324218,1.646553993225098],[-57.816726684570305,1.680230021476746],[-57.76980209350587,1.719905018806571],[-57.63906097412109,1.691293001174984],[-57.54407501220703,1.702345013618469],[-57.423114776611264,1.906124949455261],[-57.30239868164051,1.990075945854244],[-57.253845214843686,1.945109009742737],[-57.12240600585932,2.014143943786678],[-56.98622512817377,1.910691976547241],[-56.91450119018554,1.917948961257992],[-56.80016326904291,1.863873958587703],[-56.72350692749017,1.919641971588135],[-56.62895584106445,1.939785003662109],[-56.5916748046875,1.915001988411063],[-56.453723907470646,1.944612026214599],[-56.364154815673764,1.938964962959346],[-56.253963470458984,1.886876940727234],[-56.213081359863224,1.895421981811523],[-55.99496841430664,1.831146001815796],[-55.90584945678711,1.891072988510246],[-55.90986251831055,2.032716989517212],[-56.04762649536127,2.228108882904053],[-56.12720489501953,2.253576040267944],[-56.09021759033203,2.352035045623836],[-56.04426574707031,2.344939947128296],[-55.98725509643549,2.427551984786987],[-55.9866600036621,2.518635034561214],[-55.938831329345646,2.531550884246826],[-55.73891448974604,2.401213884353694],[-55.591712951660156,2.433449983596859],[-55.42848587036133,2.439435005188045],[-55.29933547973632,2.521995067596492],[-55.21199417114258,2.512078046798706],[-55.12899780273437,2.569783926010132],[-55.10270690917969,2.52238488197338],[-54.97259521484375,2.604665994644222],[-54.959617614746094,2.54438304901123],[-54.86752319335937,2.441957950592098]]]},"properties":{"ID_0":33,"ISO":"BR-PA","NAME_0":"Brazil","ID_1":14,"NAME_1":"Pará","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-42.9572868347168,-9.43400859832758],[-43.01207733154296,-9.408011436462402],[-43.0145301818847,-9.269787788391113],[-42.98221206665033,-9.252436637878361],[-43.008804321289006,-9.14399623870844],[-42.90069580078125,-9.216512680053711],[-42.898502349853516,-9.280197143554688],[-42.80727005004883,-9.358247756958006],[-42.9572868347168,-9.43400859832758]]],[[[-34.96902847290039,-6.487946033477783],[-34.96319580078124,-6.632916927337646],[-34.932361602783196,-6.687639236450194],[-34.89902877807617,-6.867360115051213],[-34.82541656494135,-7.000693798065186],[-34.8426399230957,-7.051249980926514],[-34.79430389404297,-7.195138931274356],[-34.79513931274414,-7.334860801696776],[-34.82541656494135,-7.549026966094914],[-34.898193359374936,-7.545595169067383],[-34.96052551269531,-7.538756847381592],[-34.9869766235351,-7.463015079498291],[-35.097660064697266,-7.408308982849063],[-35.243553161621094,-7.374392986297551],[-35.42103958129883,-7.474072933196965],[-35.50309753417962,-7.456088066101017],[-35.53146743774413,-7.621676921844426],[-35.657344818115234,-7.697361946105957],[-35.87192153930664,-7.749540805816594],[-35.90423583984369,-7.79225015640253],[-35.99786758422846,-7.813317775726261],[-36.07056427001941,-7.780909061431828],[-36.24989318847656,-7.790602207183838],[-36.42390060424793,-7.815782070159855],[-36.4299430847168,-7.885698795318604],[-36.47998809814453,-7.924765110015869],[-36.5696067810058,-7.90392017364502],[-36.62770080566394,-7.986423015594482],[-36.62845993041981,-8.111055374145451],[-36.753364562988224,-8.191494941711426],[-36.89582443237305,-8.240826606750431],[-36.99103546142572,-8.302967071533203],[-37.08815383911133,-8.255470275878906],[-37.16009902954096,-8.170419692993164],[-37.151702880859375,-8.009385108947697],[-37.29545593261712,-7.96494197845459],[-37.30353164672846,-7.904180049896183],[-37.24454879760742,-7.874267101287842],[-37.23044967651367,-7.806760787963754],[-37.1388320922851,-7.745530128479004],[-37.19540023803705,-7.628345966339111],[-37.12140274047846,-7.536122798919677],[-36.9841194152832,-7.482133865356445],[-37.02614593505848,-7.387947082519474],[-37.165225982666016,-7.336602210998535],[-37.232826232910156,-7.275140762329101],[-37.33152389526367,-7.289721012115479],[-37.38560104370117,-7.356713771820068],[-37.46604156494134,-7.35810184478754],[-37.533050537109375,-7.47300910949707],[-37.65942382812499,-7.523159027099553],[-37.75575637817383,-7.619530200958251],[-37.85839462280268,-7.653636932372989],[-37.97099304199219,-7.777393817901611],[-38.03943634033203,-7.748153209686278],[-38.0770378112793,-7.830574989318791],[-38.164035797119084,-7.779934883117619],[-38.23848724365234,-7.830749034881591],[-38.297657012939396,-7.813955783843994],[-38.3206901550293,-7.697975158691349],[-38.4964981079101,-7.75005578994751],[-38.59354019165039,-7.754361152648869],[-38.626365661621094,-7.694746017456055],[-38.71502685546875,-7.621930122375488],[-38.65525436401367,-7.565553188323917],[-38.64484786987305,-7.46002721786499],[-38.585227966308594,-7.434825897216796],[-38.53451156616211,-7.293803215026742],[-38.67681121826172,-7.16893577575678],[-38.66977691650385,-7.047715187072753],[-38.73051452636712,-7.012038230895996],[-38.75620651245105,-6.903603076934814],[-38.67534637451172,-6.861839771270752],[-38.64186096191395,-6.791251182556151],[-38.67307662963867,-6.697234153747559],[-38.642780303955014,-6.581190109252873],[-38.55485153198236,-6.437374114990234],[-38.40101623535156,-6.409995079040527],[-38.288639068603516,-6.505627155303841],[-38.14780044555664,-6.491498947143555],[-38.107681274414006,-6.604419231414795],[-38.04954528808594,-6.583821773528996],[-38.00814056396473,-6.432205200195312],[-37.9279441833496,-6.421506881713867],[-37.85973739624017,-6.374886989593449],[-37.774784088134766,-6.231585979461613],[-37.70869445800781,-6.177202224731388],[-37.6466178894043,-6.189402103424015],[-37.56952285766596,-6.155449867248421],[-37.45885467529296,-6.145016193389836],[-37.29712295532226,-6.050158023834228],[-37.175464630126896,-6.054951190948486],[-37.165573120117074,-6.170384883880615],[-37.318706512451115,-6.280364036560059],[-37.37721633911133,-6.344388008117676],[-37.39678955078124,-6.514216899871826],[-37.46684646606445,-6.533899784088078],[-37.484596252441406,-6.710048198699894],[-37.31419372558594,-6.688982009887695],[-37.26381301879883,-6.732178211212158],[-37.25503540039062,-6.811069965362492],[-37.19055938720692,-6.825372219085693],[-37.13863754272461,-6.786149978637695],[-37.01034545898437,-6.86951017379755],[-36.908782958984375,-6.756486892700195],[-36.83490371704096,-6.731077194213809],[-36.73006820678711,-6.836400985717773],[-36.76572036743163,-6.936862945556584],[-36.6096572875976,-6.93684196472168],[-36.5733757019043,-6.858174800872803],[-36.506805419921875,-6.813029766082764],[-36.55763626098633,-6.710776805877685],[-36.513671875,-6.594397068023681],[-36.443252563476506,-6.560684204101562],[-36.52571105957031,-6.501166820526123],[-36.499710083007756,-6.358171939849854],[-36.43016052246088,-6.362263202667179],[-36.394416809081974,-6.293980121612491],[-36.307441711425724,-6.281504154205322],[-36.29545974731445,-6.393365859985352],[-36.24961853027344,-6.437365055084172],[-36.061573028564396,-6.410250186920165],[-36.00518035888672,-6.481056213378906],[-35.77314376831055,-6.482806205749512],[-35.658203125,-6.445971012115422],[-35.580337524414006,-6.487113952636604],[-35.40229415893549,-6.491380214691162],[-35.33055877685547,-6.544338226318359],[-35.232124328613274,-6.531774044036808],[-35.14551925659179,-6.552681922912598],[-34.96902847290039,-6.487946033477783]]]]},"properties":{"ID_0":33,"ISO":"BR-PB","NAME_0":"Brazil","ID_1":15,"NAME_1":"Paraíba","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Parahyba"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-48.257637023925724,-25.335136413574162],[-48.25180435180664,-25.465694427490178],[-48.34375,-25.41597175598133],[-48.257637023925724,-25.335136413574162]]],[[[-48.6003532409668,-25.979583740234375],[-48.960723876953125,-25.98102569580078],[-48.99809646606434,-26.011821746826172],[-49.17522811889648,-26.001844406127926],[-49.3874168395996,-26.15595626831049],[-49.4591064453125,-26.162729263305664],[-49.555034637451115,-26.237325668334957],[-49.645641326904176,-26.209596633911076],[-49.86547088623047,-26.03514289855957],[-49.993503570556584,-26.011623382568356],[-50.189247131347656,-26.091751098632812],[-50.14401245117182,-26.200197219848633],[-50.18804931640624,-26.273069381713867],[-50.28460311889637,-26.30893707275385],[-50.38859176635742,-26.152362823486328],[-50.361431121826115,-26.094709396362305],[-50.45967864990228,-26.027074813842717],[-50.591636657714844,-26.022132873535156],[-50.70163726806634,-26.184431076049748],[-50.9091682434082,-26.284881591796818],[-51.000427246093636,-26.230480194091797],[-51.243034362792905,-26.324710845947262],[-51.298721313476506,-26.419946670532227],[-51.22402954101557,-26.593345642089844],[-51.28337097167963,-26.653989791870114],[-51.435302734374886,-26.68812179565424],[-51.46816635131836,-26.62204360961914],[-51.665019989013615,-26.566080093383732],[-51.87356185913086,-26.60023498535156],[-52.01119232177729,-26.566549301147404],[-52.112220764160035,-26.47606086730951],[-52.304996490478516,-26.44073867797846],[-52.46500015258788,-26.437599182128793],[-52.522830963134766,-26.400615692138672],[-52.59408187866205,-26.41533851623535],[-52.67854309082031,-26.352676391601562],[-52.99029159545898,-26.347829818725586],[-53.09056854248041,-26.390493392944332],[-53.30590057373041,-26.25975227355951],[-53.385261535644474,-26.2462158203125],[-53.49715423583984,-26.302829742431584],[-53.598972320556584,-26.257482528686467],[-53.72377395629883,-26.126718521118104],[-53.71821975708007,-26.07321357727045],[-53.836578369140625,-25.96575546264648],[-53.848873138427734,-25.836719512939453],[-53.82233047485345,-25.795211791992184],[-53.875339508056584,-25.641998291015625],[-53.987430572509645,-25.578573226928597],[-54.159690856933594,-25.543689727783146],[-54.28728485107422,-25.5598087310791],[-54.45209503173828,-25.663230895996094],[-54.59564208984375,-25.59211921691883],[-54.6159553527832,-25.45621109008789],[-54.495975494384766,-25.27735710144043],[-54.436279296875,-25.14376449584961],[-54.46498489379882,-25.076322555541992],[-54.404533386230405,-24.83326911926264],[-54.33509063720703,-24.64640235900879],[-54.33230972290039,-24.48994636535639],[-54.26244354248041,-24.37445831298828],[-54.27827072143549,-24.286073684692383],[-54.323379516601506,-24.242517471313477],[-54.33061981201172,-24.148248672485295],[-54.28385925292969,-24.06747436523437],[-54.129642486572266,-23.982101440429684],[-54.07984161376942,-23.88897132873535],[-54.07564544677723,-23.764478683471623],[-53.98279571533203,-23.46000099182129],[-53.771041870117074,-23.372125625610295],[-53.63652420043945,-23.125022888183594],[-53.60735702514643,-22.951326370239258],[-53.53466796875,-22.8825626373291],[-53.35448455810547,-22.777364730834957],[-53.18088912963861,-22.713632583618107],[-53.10512161254883,-22.621923446655273],[-52.97236251831055,-22.570476531982422],[-52.858299255371094,-22.607997894287053],[-52.70118331909174,-22.627479553222543],[-52.58020782470703,-22.568996429443303],[-52.50324249267578,-22.634065628051758],[-52.43523025512684,-22.60738182067865],[-52.22819519042968,-22.665294647216797],[-52.1566162109375,-22.644712448120114],[-52.12561416625976,-22.519262313842717],[-51.94045257568354,-22.567333221435547],[-51.87345504760742,-22.628238677978402],[-51.77337265014642,-22.614557266235238],[-51.72581481933594,-22.66142463684082],[-51.615779876708984,-22.662586212158203],[-51.55950927734375,-22.697172164916992],[-51.446235656738224,-22.65325164794922],[-51.30623626708979,-22.674419403076172],[-51.157756805419865,-22.751663208007812],[-50.94506835937499,-22.804067611694336],[-50.89331054687494,-22.794958114623967],[-50.793079376220646,-22.90511131286615],[-50.709774017333984,-22.953428268432617],[-50.67596817016595,-22.900510787963864],[-50.576946258544915,-22.90396499633789],[-50.43020629882807,-22.945802688598633],[-50.27332687377924,-22.930992126464844],[-50.18327713012695,-22.953750610351562],[-50.06740951538086,-22.927505493163945],[-49.96131896972656,-22.930862426757812],[-49.90147399902338,-22.9991455078125],[-49.91154479980469,-23.05111122131342],[-49.726375579833984,-23.111593246459904],[-49.67826080322265,-23.165054321289006],[-49.595218658447266,-23.366926193237305],[-49.62106704711914,-23.6070499420166],[-49.549785614013615,-23.703712463378906],[-49.562305450439446,-23.81855964660639],[-49.48709487915039,-24.024589538574162],[-49.341453552246094,-24.138324737548825],[-49.34148406982416,-24.203111648559567],[-49.241340637206974,-24.3851318359375],[-49.24712371826172,-24.469139099121094],[-49.31592941284174,-24.555494308471676],[-49.31184005737299,-24.663614273071232],[-49.208850860595646,-24.700832366943303],[-49.0373420715332,-24.660408020019474],[-48.92236709594721,-24.67517471313471],[-48.82869720458979,-24.655588150024357],[-48.77859115600586,-24.69672203063965],[-48.61656188964843,-24.668663024902344],[-48.50228118896473,-24.744714736938477],[-48.555694580078125,-24.806192398071175],[-48.56745910644531,-24.972158432006832],[-48.598426818847656,-25.01905250549305],[-48.52852630615234,-25.100784301757812],[-48.47399139404296,-25.012542724609375],[-48.411010742187386,-24.98011970520014],[-48.21599578857422,-25.076660156249996],[-48.11482620239258,-25.25068855285639],[-48.05773544311518,-25.262081146240178],[-48.186527252197266,-25.40652847290039],[-48.22458267211914,-25.33625030517578],[-48.39208221435547,-25.309858322143555],[-48.44791793823231,-25.377082824706974],[-48.45652770996094,-25.472639083862305],[-48.64263916015619,-25.444583892822262],[-48.65208435058588,-25.49430465698236],[-48.48180389404297,-25.53263854980463],[-48.400138854980355,-25.60819435119629],[-48.56458282470703,-25.857082366943303],[-48.6003532409668,-25.979583740234375]]]]},"properties":{"ID_0":33,"ISO":"BR-PR","NAME_0":"Brazil","ID_1":16,"NAME_1":"Paraná","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-34.898193359374936,-7.545595169067383],[-34.80819320678711,-7.616528034210148],[-34.89097213745117,-7.765695095062255],[-34.84819412231445,-7.817916870117188],[-34.82013702392578,-7.925416946411133],[-34.87180709838867,-8.042637825012207],[-34.95236206054681,-8.294582366943303],[-34.96097183227539,-8.39847183227539],[-35.00763702392578,-8.563472747802733],[-35.096527099609375,-8.689583778381348],[-35.086250305175724,-8.744584083557129],[-35.151824951171875,-8.909582138061467],[-35.51782608032226,-8.817352294921875],[-35.669788360595696,-8.895236968994027],[-35.748203277587834,-8.91714382171625],[-35.78740692138666,-8.85112476348877],[-35.91111755371094,-8.861369132995605],[-36.12674331665038,-8.956012725830078],[-36.123943328857365,-9.03048133850092],[-36.19557571411127,-9.044831275939941],[-36.274009704589844,-9.166200637817326],[-36.36554718017578,-9.222623825073242],[-36.43685531616205,-9.212104797363281],[-36.586120605468636,-9.338085174560547],[-36.69368743896479,-9.275333404541016],[-36.79700469970703,-9.293032646179197],[-36.869724273681584,-9.268610000610352],[-36.95230484008783,-9.382543563842773],[-37.08388137817383,-9.252321243286076],[-37.233440399169865,-9.206595420837402],[-37.31540298461914,-9.094281196594181],[-37.46926498413086,-9.027680397033691],[-37.54106903076172,-8.958485603332463],[-37.643535614013615,-9.018292427062988],[-37.76020812988281,-8.857633590698242],[-37.82899475097656,-8.893792152404783],[-37.839004516601555,-8.978388786315918],[-37.97925186157226,-9.148381233215332],[-38.09219741821289,-9.172728538513127],[-38.20287322998041,-9.296895980834961],[-38.23739242553705,-9.329692840576172],[-38.31856536865223,-9.141016960144043],[-38.32055282592767,-8.991079330444336],[-38.40837860107416,-9.038521766662598],[-38.51937484741205,-8.948366165161133],[-38.469890594482365,-8.865496635437012],[-38.571155548095646,-8.831610679626465],[-38.64063262939453,-8.987286567687931],[-38.69283676147461,-8.935147285461426],[-38.70646286010742,-8.862276077270451],[-38.7945671081543,-8.795634269714299],[-38.94361877441406,-8.804259300231934],[-39.036960601806584,-8.735584259033145],[-39.23371124267567,-8.705780029296873],[-39.288513183593686,-8.56331539154047],[-39.38367080688476,-8.533636093139592],[-39.607524871826115,-8.656001091003361],[-39.691074371337834,-8.66233730316162],[-39.67452621459961,-8.787080764770508],[-39.87300109863281,-8.822653770446777],[-39.87389373779291,-8.93132495880127],[-39.957969665527344,-9.048619270324707],[-40.06558227539057,-9.063199996948185],[-40.12865447998047,-9.109613418579102],[-40.2112197875976,-9.062611579894961],[-40.27166366577142,-9.080998420715332],[-40.307762145996094,-9.271409034729004],[-40.3580589294433,-9.377203941345215],[-40.435829162597656,-9.362183570861816],[-40.62311553955067,-9.482916831970213],[-40.722145080566406,-9.445964813232363],[-40.73722839355469,-9.336896896362248],[-40.68057632446289,-9.25909233093256],[-40.66735458374018,-9.159086227416992],[-40.81993484497064,-9.080411911010742],[-40.851543426513665,-8.952515602111816],[-40.921287536621094,-8.835457801818789],[-41.03618621826172,-8.78588676452631],[-41.10171127319336,-8.781975746154785],[-41.11552429199219,-8.7040433883667],[-41.2269287109375,-8.704716682433968],[-41.281482696533196,-8.73610782623291],[-41.35826873779291,-8.70764446258545],[-41.20659637451172,-8.633453369140511],[-41.14859390258778,-8.533921241760254],[-41.05105209350586,-8.480496406555119],[-40.98078155517578,-8.398433685302678],[-40.92667007446277,-8.446249961853027],[-40.87106323242182,-8.358489036560059],[-40.77981567382812,-8.301959991455078],[-40.63296127319336,-8.13956165313715],[-40.544158935546875,-7.964622974395695],[-40.54368209838867,-7.835585117340088],[-40.653648376464844,-7.782233238220215],[-40.678146362304574,-7.725101947784424],[-40.64435195922846,-7.607750892639161],[-40.69431686401367,-7.538004875183048],[-40.70484924316395,-7.458756923675537],[-40.548408508300724,-7.392722129821776],[-40.319274902343636,-7.374391078948974],[-40.24638366699213,-7.433736801147461],[-39.96141815185547,-7.388984203338566],[-39.915073394775334,-7.338125228881722],[-39.66566085815429,-7.310708999633789],[-39.607246398925724,-7.33622217178339],[-39.47886276245111,-7.446116924285774],[-39.3966064453125,-7.475296974182129],[-39.31715393066395,-7.541469097137394],[-39.271926879882756,-7.660462856292725],[-39.13557052612298,-7.723396778106689],[-39.0906753540039,-7.8092360496521],[-39.00133514404297,-7.840136051177921],[-38.94182205200195,-7.763055801391544],[-38.82188415527338,-7.714819908142032],[-38.71502685546875,-7.621930122375488],[-38.626365661621094,-7.694746017456055],[-38.59354019165039,-7.754361152648869],[-38.4964981079101,-7.75005578994751],[-38.3206901550293,-7.697975158691349],[-38.297657012939396,-7.813955783843994],[-38.23848724365234,-7.830749034881591],[-38.164035797119084,-7.779934883117619],[-38.0770378112793,-7.830574989318791],[-38.03943634033203,-7.748153209686278],[-37.97099304199219,-7.777393817901611],[-37.85839462280268,-7.653636932372989],[-37.75575637817383,-7.619530200958251],[-37.65942382812499,-7.523159027099553],[-37.533050537109375,-7.47300910949707],[-37.46604156494134,-7.35810184478754],[-37.38560104370117,-7.356713771820068],[-37.33152389526367,-7.289721012115479],[-37.232826232910156,-7.275140762329101],[-37.165225982666016,-7.336602210998535],[-37.02614593505848,-7.387947082519474],[-36.9841194152832,-7.482133865356445],[-37.12140274047846,-7.536122798919677],[-37.19540023803705,-7.628345966339111],[-37.1388320922851,-7.745530128479004],[-37.23044967651367,-7.806760787963754],[-37.24454879760742,-7.874267101287842],[-37.30353164672846,-7.904180049896183],[-37.29545593261712,-7.96494197845459],[-37.151702880859375,-8.009385108947697],[-37.16009902954096,-8.170419692993164],[-37.08815383911133,-8.255470275878906],[-36.99103546142572,-8.302967071533203],[-36.89582443237305,-8.240826606750431],[-36.753364562988224,-8.191494941711426],[-36.62845993041981,-8.111055374145451],[-36.62770080566394,-7.986423015594482],[-36.5696067810058,-7.90392017364502],[-36.47998809814453,-7.924765110015869],[-36.4299430847168,-7.885698795318604],[-36.42390060424793,-7.815782070159855],[-36.24989318847656,-7.790602207183838],[-36.07056427001941,-7.780909061431828],[-35.99786758422846,-7.813317775726261],[-35.90423583984369,-7.79225015640253],[-35.87192153930664,-7.749540805816594],[-35.657344818115234,-7.697361946105957],[-35.53146743774413,-7.621676921844426],[-35.50309753417962,-7.456088066101017],[-35.42103958129883,-7.474072933196965],[-35.243553161621094,-7.374392986297551],[-35.097660064697266,-7.408308982849063],[-34.9869766235351,-7.463015079498291],[-34.96052551269531,-7.538756847381592],[-34.898193359374936,-7.545595169067383]]]},"properties":{"ID_0":33,"ISO":"BR-PE","NAME_0":"Brazil","ID_1":17,"NAME_1":"Pernambuco","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Pernambouc"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-41.816806793212834,-2.743750095367432],[-41.63291549682617,-2.883749961853027],[-41.32090759277338,-2.918195009231567],[-41.249732971191406,-3.029058933257943],[-41.2566032409668,-3.088036060333195],[-41.322437286376896,-3.179811954498234],[-41.42346954345703,-3.368026018142643],[-41.34473037719721,-3.41933798789978],[-41.32563018798828,-3.536432981491032],[-41.34169769287104,-3.680790901184082],[-41.255386352539006,-3.703277111053467],[-41.27680587768555,-3.825639963150024],[-41.22019195556634,-3.941526889800968],[-41.24919128417963,-3.989885091781559],[-41.120296478271484,-4.036356925964355],[-41.13748550415039,-4.120007991790715],[-41.11919403076166,-4.313255786895752],[-41.15996170043945,-4.381515979766846],[-41.19072723388666,-4.515548229217472],[-41.23307800292963,-4.609570980072021],[-41.17423248291009,-4.667479038238525],[-41.24912643432617,-4.869112014770508],[-41.221500396728516,-4.936889171600285],[-41.12255096435541,-5.00809383392334],[-41.080078125,-5.091106891632023],[-40.928936004638615,-5.171686172485351],[-40.91315460205078,-5.308066844940129],[-40.93605422973633,-5.36598014831543],[-40.93233108520508,-5.548912048339844],[-40.90101623535145,-5.615784168243407],[-40.938716888427734,-5.673357963562012],[-40.846858978271484,-6.132109165191594],[-40.85217666625971,-6.224236011505127],[-40.7796516418457,-6.344307899475098],[-40.80510330200195,-6.393146991729735],[-40.787616729736264,-6.523797035217285],[-40.74580001831055,-6.565561771392765],[-40.71012496948242,-6.676143169403076],[-40.607070922851506,-6.714086055755615],[-40.4761848449707,-6.734522819519043],[-40.4321174621582,-6.812992095947266],[-40.42766571044922,-7.033895015716553],[-40.48968887329096,-7.11870288848877],[-40.51211929321289,-7.3018159866333],[-40.548408508300724,-7.392722129821776],[-40.70484924316395,-7.458756923675537],[-40.69431686401367,-7.538004875183048],[-40.64435195922846,-7.607750892639161],[-40.678146362304574,-7.725101947784424],[-40.653648376464844,-7.782233238220215],[-40.54368209838867,-7.835585117340088],[-40.544158935546875,-7.964622974395695],[-40.63296127319336,-8.13956165313715],[-40.77981567382812,-8.301959991455078],[-40.87106323242182,-8.358489036560059],[-40.92667007446277,-8.446249961853027],[-40.98078155517578,-8.398433685302678],[-41.05105209350586,-8.480496406555119],[-41.14859390258778,-8.533921241760254],[-41.20659637451172,-8.633453369140511],[-41.35826873779291,-8.70764446258545],[-41.424175262451115,-8.802478790283203],[-41.48779678344721,-8.843913078308104],[-41.5447998046875,-8.937994003295842],[-41.68040084838867,-9.012293815612736],[-41.80001831054682,-9.148036956787053],[-41.83791732788086,-9.242280960083008],[-41.924720764160156,-9.277806282043457],[-41.97221755981445,-9.24864864349365],[-42.10048294067383,-9.281038284301701],[-42.2436790466308,-9.288926124572697],[-42.31911468505853,-9.320263862609863],[-42.451717376708984,-9.462111473083496],[-42.6215934753418,-9.541241645812988],[-42.71684646606445,-9.556286811828612],[-42.76512145996094,-9.616759300231877],[-42.82050704956055,-9.619240760803223],[-42.94620132446289,-9.518424034118596],[-42.9572868347168,-9.43400859832758],[-42.80727005004883,-9.358247756958006],[-42.898502349853516,-9.280197143554688],[-42.90069580078125,-9.216512680053711],[-43.008804321289006,-9.14399623870844],[-42.98221206665033,-9.252436637878361],[-43.0145301818847,-9.269787788391113],[-43.01207733154296,-9.408011436462402],[-43.11994934082031,-9.372548103332463],[-43.28507232666009,-9.420036315917912],[-43.46162033081049,-9.261788368225098],[-43.574531555175724,-9.318100929260197],[-43.68676757812494,-9.41806411743164],[-43.76968002319336,-9.44206142425537],[-43.8496475219726,-9.548064231872502],[-43.841907501220696,-9.637437820434569],[-43.784873962402344,-9.762393951415959],[-43.65319824218744,-9.839065551757756],[-43.708992004394474,-9.913228988647404],[-43.66597747802729,-9.99023723602295],[-43.69287109374994,-10.077402114868164],[-43.759181976318246,-10.074614524841252],[-43.7790412902832,-10.180476188659611],[-43.83609390258789,-10.248900413513184],[-43.83811950683588,-10.303832054138184],[-43.919605255126946,-10.4252347946167],[-44.029273986816406,-10.416398048400877],[-44.0257949829101,-10.475481033325195],[-44.07254028320307,-10.58034133911127],[-44.16549301147461,-10.642908096313477],[-44.26397323608398,-10.624679565429688],[-44.33560180664062,-10.548977851867676],[-44.4795036315918,-10.640474319457951],[-44.58946990966796,-10.632429122924805],[-44.71336364746093,-10.762051582336367],[-44.78801345825195,-10.808530807495059],[-44.80839538574213,-10.86501407623291],[-44.93117141723633,-10.928766250610295],[-45.073184967041016,-10.840432167053164],[-45.24800491333007,-10.821977615356388],[-45.358169555664006,-10.732215881347656],[-45.43587112426758,-10.61988353729248],[-45.44720840454101,-10.507431983947697],[-45.402969360351555,-10.465340614318848],[-45.430271148681584,-10.359477043151799],[-45.51708221435541,-10.286556243896484],[-45.60313415527344,-10.10799503326416],[-45.72283935546875,-10.155317306518553],[-45.74397659301758,-10.23996353149414],[-45.79369354248047,-10.267683029174748],[-45.8778076171875,-10.239345550536996],[-45.94632720947259,-10.258577346801758],[-45.94556808471674,-10.196453094482422],[-45.87849426269525,-10.110310554504338],[-45.84223556518555,-9.941568374633787],[-45.864379882812436,-9.861476898193303],[-45.82137298583979,-9.773135185241642],[-45.831893920898324,-9.536803245544432],[-45.78377532958984,-9.480117797851506],[-45.79779434204101,-9.417263984680176],[-45.907016754150334,-9.29802417755127],[-45.89860916137695,-9.209687232971078],[-45.94341278076172,-9.015324592590275],[-45.994243621826165,-8.926877975463867],[-45.938396453857365,-8.784948348999023],[-45.83989715576166,-8.715288162231445],[-45.81549835205078,-8.6332368850708],[-45.738410949706974,-8.501184463500977],[-45.74225997924804,-8.451149940490723],[-45.68748474121088,-8.355563163757324],[-45.661506652832024,-8.250032424926758],[-45.581417083740234,-8.156057357788029],[-45.57624053955078,-8.029102325439396],[-45.52079772949212,-7.888095855712891],[-45.46886444091797,-7.689144134521483],[-45.339717864990234,-7.580257892608643],[-45.21810150146479,-7.567862033843937],[-45.15540313720703,-7.51349496841425],[-45.04487228393555,-7.511248111724854],[-44.92439651489258,-7.470303058624267],[-44.816684722900334,-7.361218929290771],[-44.68793106079095,-7.394548892974854],[-44.564022064208984,-7.227546215057372],[-44.37998962402338,-7.119038105010986],[-44.30615234375,-7.117186069488525],[-44.173492431640625,-6.924349784850961],[-44.16084671020502,-6.872814178466797],[-43.961162567138615,-6.741913795471191],[-43.87982940673828,-6.757727146148624],[-43.7939834594726,-6.702743053436279],[-43.637466430664,-6.719579219818115],[-43.45725631713867,-6.846337795257568],[-43.27867889404297,-6.796631813049316],[-43.24464797973627,-6.766366958618107],[-43.001121520996094,-6.754475116729736],[-42.91972732543939,-6.670321941375732],[-42.87177658081048,-6.511956214904785],[-42.877708435058594,-6.417881011962891],[-42.84695434570307,-6.282508850097656],[-42.87432861328119,-6.228136062622013],[-42.96854019165039,-6.178270816802922],[-43.04993057250965,-6.099762916564941],[-43.050174713134766,-6.01310396194458],[-43.0993766784668,-5.901104927062875],[-43.0989532470702,-5.63320779800415],[-43.034553527831974,-5.592273235321045],[-42.913204193115234,-5.398845195770207],[-42.82626724243158,-5.346964836120548],[-42.800209045410156,-5.199390888214111],[-42.81856155395502,-5.093526840209904],[-42.948421478271484,-4.766877174377384],[-42.954544067382756,-4.689482212066594],[-42.8678741455077,-4.56358003616333],[-42.871990203857415,-4.428577899932861],[-42.96326446533203,-4.376433849334717],[-42.98914718627924,-4.23406982421875],[-42.862888336181584,-4.092888832092285],[-42.82360076904291,-3.992214918136596],[-42.72615814208973,-3.910024881362915],[-42.66881942749018,-3.729367017745972],[-42.67570495605463,-3.675617933273259],[-42.5065078735351,-3.478835105895996],[-42.39905929565429,-3.472915887832642],[-42.33076095581049,-3.433881044387761],[-42.21004104614258,-3.43632006645197],[-42.152145385742074,-3.387494087219181],[-42.11577987670892,-3.262346982955876],[-42.00017547607422,-3.241106986999512],[-41.92597579956055,-3.115488052368164],[-41.82422637939453,-3.024517059326058],[-41.79674530029297,-2.966576099395752],[-41.86544418334955,-2.8749001026153],[-41.816806793212834,-2.743750095367432]]]},"properties":{"ID_0":33,"ISO":"BR-PI","NAME_0":"Brazil","ID_1":18,"NAME_1":"Piauí","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Piauhy"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-44.23041534423828,-23.0748615264892],[-44.136249542236264,-23.167360305786133],[-44.245418548583984,-23.20069503784174],[-44.340972900390625,-23.153472900390625],[-44.23041534423828,-23.0748615264892]]],[[[-40.95930480957031,-21.29718971252441],[-40.9640274047851,-21.361803054809513],[-41.07374954223633,-21.511249542236328],[-41.012916564941406,-21.626806259155217],[-41.024028778076115,-21.737361907958984],[-40.97458267211914,-21.944026947021484],[-40.988750457763615,-22.00736045837402],[-41.23430633544916,-22.14402770996088],[-41.48374938964844,-22.211805343627873],[-41.67124938964844,-22.289304733276367],[-41.77402877807617,-22.36486053466797],[-41.862640380859375,-22.475973129272404],[-41.959304809570256,-22.53236007690424],[-41.9959716796875,-22.600139617919922],[-41.993473052978516,-22.693471908569336],[-41.910972595214844,-22.7784748077392],[-41.97486114501953,-22.82708358764637],[-42.05541610717768,-22.958471298217773],[-42.3618049621582,-22.934305191039982],[-42.58069610595697,-22.93263816833496],[-42.9154167175293,-22.975139617919922],[-43.0493049621582,-22.964860916137695],[-43.13541793823242,-22.882360458374023],[-43.03125,-22.74625015258789],[-43.085693359374886,-22.67736053466797],[-43.23819351196289,-22.74291610717773],[-43.262916564941406,-22.828750610351562],[-43.167362213134766,-22.894861221313477],[-43.1595840454101,-22.964582443237305],[-43.285137176513665,-23.01625061035156],[-43.37014007568353,-23.010972976684513],[-43.533748626708984,-23.05041885375971],[-43.85910797119135,-23.072360992431584],[-43.86515808105469,-23.04486656188965],[-43.795696258544865,-23.062084197998047],[-43.60347366333008,-23.026250839233338],[-43.70111846923828,-22.980150222778317],[-43.794307708740234,-22.903863906860295],[-44.046806335449105,-22.94208335876465],[-44.1129150390625,-23.023195266723572],[-44.32736206054681,-22.995136260986328],[-44.3470840454101,-22.923749923706055],[-44.426528930664006,-22.956529617309513],[-44.4448623657226,-23.01263809204096],[-44.66875076293945,-23.05486106872553],[-44.71430587768555,-23.229028701782227],[-44.51874923706049,-23.279306411743164],[-44.585414886474545,-23.359861373901367],[-44.63486099243164,-23.332916259765625],[-44.725418090820256,-23.36964607238764],[-44.88888168334955,-23.224496841430604],[-44.825569152831974,-23.162794113159123],[-44.79309463500976,-23.010242462158203],[-44.743797302246094,-22.94758987426752],[-44.60701370239258,-22.88568115234375],[-44.46694564819336,-22.885053634643555],[-44.2699089050293,-22.830293655395508],[-44.25751495361328,-22.76847648620594],[-44.160896301269524,-22.678316116333008],[-44.232868194579964,-22.608882904052617],[-44.39162063598627,-22.573398590087834],[-44.50853729248047,-22.64093780517578],[-44.645305633544865,-22.602554321289006],[-44.75504684448242,-22.4149169921875],[-44.809181213378906,-22.405263900756836],[-44.543464660644474,-22.33175277709961],[-44.432662963867074,-22.2516250610351],[-44.21327972412109,-22.24625778198236],[-44.100032806396484,-22.173301696777287],[-43.98828125,-22.150171279907227],[-43.77738952636712,-22.06677436828613],[-43.46241760253906,-22.072645187377873],[-43.32175064086914,-22.006742477416932],[-43.23656845092762,-22.013248443603516],[-43.154067993164,-22.077974319458008],[-43.074077606201165,-22.09333992004389],[-42.79167556762684,-21.930871963500977],[-42.356487274169865,-21.741891860961914],[-42.2711448669433,-21.715682983398434],[-42.34618759155268,-21.58298492431635],[-42.252681732177734,-21.489831924438477],[-42.292564392089844,-21.460035324096566],[-42.22981262207031,-21.36656761169428],[-42.22893142700195,-21.284427642822266],[-42.164314270019474,-21.101451873779297],[-42.08041763305658,-21.035688400268555],[-42.13835144042969,-20.960554122924805],[-41.967281341552734,-20.916835784912053],[-41.925289154052734,-20.801576614379883],[-41.87485885620117,-20.766815185546875],[-41.74086380004883,-20.818288803100526],[-41.711894989013615,-20.981052398681527],[-41.73497390747064,-21.09881973266596],[-41.54838180541992,-21.1828556060791],[-41.488304138183594,-21.180356979370117],[-41.2412223815918,-21.221155166625977],[-41.205215454101506,-21.243909835815373],[-41.081382751464844,-21.221986770629826],[-40.95930480957031,-21.29718971252441]]]]},"properties":{"ID_0":33,"ISO":"BR-RJ","NAME_0":"Brazil","ID_1":19,"NAME_1":"Rio de Janeiro","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-34.96902847290039,-6.487946033477783],[-35.14551925659179,-6.552681922912598],[-35.232124328613274,-6.531774044036808],[-35.33055877685547,-6.544338226318359],[-35.40229415893549,-6.491380214691162],[-35.580337524414006,-6.487113952636604],[-35.658203125,-6.445971012115422],[-35.77314376831055,-6.482806205749512],[-36.00518035888672,-6.481056213378906],[-36.061573028564396,-6.410250186920165],[-36.24961853027344,-6.437365055084172],[-36.29545974731445,-6.393365859985352],[-36.307441711425724,-6.281504154205322],[-36.394416809081974,-6.293980121612491],[-36.43016052246088,-6.362263202667179],[-36.499710083007756,-6.358171939849854],[-36.52571105957031,-6.501166820526123],[-36.443252563476506,-6.560684204101562],[-36.513671875,-6.594397068023681],[-36.55763626098633,-6.710776805877685],[-36.506805419921875,-6.813029766082764],[-36.5733757019043,-6.858174800872803],[-36.6096572875976,-6.93684196472168],[-36.76572036743163,-6.936862945556584],[-36.73006820678711,-6.836400985717773],[-36.83490371704096,-6.731077194213809],[-36.908782958984375,-6.756486892700195],[-37.01034545898437,-6.86951017379755],[-37.13863754272461,-6.786149978637695],[-37.19055938720692,-6.825372219085693],[-37.25503540039062,-6.811069965362492],[-37.26381301879883,-6.732178211212158],[-37.31419372558594,-6.688982009887695],[-37.484596252441406,-6.710048198699894],[-37.46684646606445,-6.533899784088078],[-37.39678955078124,-6.514216899871826],[-37.37721633911133,-6.344388008117676],[-37.318706512451115,-6.280364036560059],[-37.165573120117074,-6.170384883880615],[-37.175464630126896,-6.054951190948486],[-37.29712295532226,-6.050158023834228],[-37.45885467529296,-6.145016193389836],[-37.56952285766596,-6.155449867248421],[-37.6466178894043,-6.189402103424015],[-37.70869445800781,-6.177202224731388],[-37.774784088134766,-6.231585979461613],[-37.85973739624017,-6.374886989593449],[-37.9279441833496,-6.421506881713867],[-38.00814056396473,-6.432205200195312],[-38.04954528808594,-6.583821773528996],[-38.107681274414006,-6.604419231414795],[-38.14780044555664,-6.491498947143555],[-38.288639068603516,-6.505627155303841],[-38.40101623535156,-6.409995079040527],[-38.55485153198236,-6.437374114990234],[-38.578525543212834,-6.280207157134953],[-38.51963806152343,-6.223051071166992],[-38.44723892211914,-6.085290908813477],[-38.3047256469726,-6.086979866027832],[-38.25158691406244,-6.010366916656494],[-38.124858856201115,-5.887623786926213],[-38.10818862915039,-5.814829826354923],[-38.046993255615234,-5.730422973632812],[-38.08263397216797,-5.672267913818303],[-37.9899559020996,-5.555810928344727],[-37.90469741821289,-5.50115489959711],[-37.84738540649413,-5.340035915374699],[-37.78302001953125,-5.294829845428467],[-37.789943695068246,-5.21095323562622],[-37.72397232055664,-5.069858074188232],[-37.67705154418945,-5.052547931671143],[-37.64024353027344,-4.926418781280461],[-37.25208282470703,-4.832361221313477],[-37.15736007690423,-4.946249961853027],[-37.03569412231445,-4.950139999389648],[-36.958194732666016,-4.920693874359131],[-36.87930679321289,-4.952916145324707],[-36.72069549560546,-5.088749885559024],[-36.61069488525385,-5.097361087799015],[-36.44708251953125,-5.067916870117131],[-36.30986022949219,-5.110139846801701],[-36.12513732910156,-5.091806888580322],[-35.9779167175293,-5.041529178619385],[-35.78625106811518,-5.075417041778564],[-35.48930740356445,-5.157639026641846],[-35.3709716796875,-5.284305095672551],[-35.26124954223627,-5.484027862548771],[-35.22069549560547,-5.679306030273438],[-35.153751373291016,-5.883472919464111],[-35.151248931884766,-5.954861164092961],[-35.106250762939446,-6.007359981536865],[-35.09708404541015,-6.166806221008301],[-35.035972595214844,-6.235692977905273],[-35.03319549560547,-6.323472023010197],[-34.99097061157221,-6.3743062019347],[-34.96902847290039,-6.487946033477783]]]},"properties":{"ID_0":33,"ISO":"BR-RN","NAME_0":"Brazil","ID_1":20,"NAME_1":"Rio Grande do Norte","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-49.713470458984375,-29.326183319091797],[-49.91902923583979,-29.59986114501947],[-49.98625183105469,-29.710973739624023],[-50.16319274902338,-30.075138092041012],[-50.30625152587879,-30.44569206237793],[-50.38013839721674,-30.57013893127441],[-50.69208145141596,-30.995138168334904],[-50.76652908325195,-31.108749389648438],[-50.879306793212834,-31.226528167724606],[-51.03708267211914,-31.357360839843746],[-51.216251373291016,-31.53486061096191],[-51.452915191650334,-31.7126407623291],[-51.76124954223627,-31.877082824707028],[-51.961528778076115,-32.023750305175774],[-52.09791564941395,-31.835416793823185],[-52.002639770507756,-31.819305419921875],[-51.924583435058594,-31.863473892211857],[-51.80430603027344,-31.83875083923334],[-51.803470611572266,-31.78902626037598],[-51.688751220703125,-31.779582977294865],[-51.61347198486328,-31.731250762939336],[-51.44124984741211,-31.5040283203125],[-51.347637176513615,-31.529306411743107],[-51.232639312744084,-31.451803207397457],[-51.15708160400385,-31.271528244018494],[-51.174861907958984,-31.073194503784176],[-51.10736083984375,-31.098194122314396],[-50.979026794433594,-31.03652763366694],[-50.96638870239258,-30.908836364746094],[-50.911228179931584,-30.905748367309567],[-50.74440002441406,-30.812269210815426],[-50.70192337036127,-30.746309280395447],[-50.67947769165039,-30.609153747558533],[-50.70044708251953,-30.424743652343746],[-50.61103439331049,-30.48568916320795],[-50.56860733032215,-30.45840072631836],[-50.537715911865234,-30.273847579956055],[-50.59642791748041,-30.194925308227482],[-50.65882492065418,-30.199905395507752],[-50.67317962646484,-30.29662322998041],[-50.78194427490223,-30.284757614135685],[-50.79691696166981,-30.338363647460934],[-50.90692138671875,-30.323274612426705],[-50.929973602294915,-30.435754776000973],[-51.04708480834961,-30.38152694702148],[-51.02319335937494,-30.28208351135248],[-51.08402633666992,-30.241806030273434],[-51.18402862548828,-30.232639312744087],[-51.23458480834961,-30.058750152587894],[-51.30125045776367,-30.006526947021428],[-51.309028625488224,-30.18263816833496],[-51.29486083984375,-30.30319595336908],[-51.17263793945307,-30.383195877075195],[-51.25763702392578,-30.46347236633295],[-51.30319595336908,-30.62874984741211],[-51.38597106933587,-30.65069580078125],[-51.4059715270996,-30.75875091552734],[-51.37291717529291,-30.875415802001893],[-51.43986129760736,-30.869861602783146],[-51.49958419799805,-30.923194885253846],[-51.4676399230957,-31.09791755676269],[-51.62680435180664,-31.15041732788086],[-51.629859924316406,-31.268749237060547],[-51.799304962158146,-31.274860382080078],[-51.9154167175293,-31.313472747802734],[-51.98236083984375,-31.38652610778803],[-52.01680374145507,-31.530416488647457],[-52.109859466552734,-31.55624961853027],[-52.07125091552734,-31.68097305297846],[-52.226249694824155,-31.752361297607422],[-52.21958160400385,-31.872917175292965],[-52.137359619140625,-31.918193817138672],[-52.239028930664006,-31.98513793945312],[-52.22819519042968,-32.035972595214844],[-52.13680648803705,-32.05958175659174],[-52.10069274902344,-32.16180419921869],[-52.2437515258789,-32.270416259765625],[-52.38208389282221,-32.51319503784179],[-52.48708343505854,-32.84791564941406],[-52.63847351074219,-33.12486267089844],[-52.784027099609375,-33.28874969482421],[-53.15208435058588,-33.58625030517578],[-53.37402725219715,-33.74708175659179],[-53.52365875244129,-33.68610382080078],[-53.5001106262207,-33.39979171752924],[-53.53153610229492,-33.20769882202143],[-53.484397888183594,-33.07806396484375],[-53.29845809936523,-32.94843292236328],[-53.24782180786127,-32.86352920532221],[-53.09424591064453,-32.72418975830072],[-53.17014694213867,-32.652130126953125],[-53.41828155517578,-32.56121826171869],[-53.45887374877924,-32.47697830200195],[-53.51966857910156,-32.484241485595646],[-53.63163375854492,-32.38159942626953],[-53.74139404296874,-32.079097747802734],[-53.82884216308594,-32.051277160644474],[-53.85689163208008,-31.99263572692871],[-54.022468566894524,-31.892795562744084],[-54.095508575439446,-31.9055824279784],[-54.46139526367182,-31.664991378784123],[-54.42051315307617,-31.629465103149414],[-54.50460815429676,-31.513168334960938],[-54.72459411621088,-31.437736511230465],[-54.827922821044915,-31.44510841369629],[-54.9512100219726,-31.358831405639645],[-55.01370620727539,-31.281944274902283],[-55.115127563476506,-31.318918228149354],[-55.24435424804682,-31.253818511962834],[-55.33940505981445,-31.123176574706974],[-55.381790161132756,-31.027887344360355],[-55.600376129150334,-30.84371948242187],[-55.65108871459955,-30.95131301879877],[-55.697608947753906,-30.9582786560058],[-55.8697929382323,-31.079561233520504],[-56.007816314697266,-31.062643051147404],[-56.01482772827142,-30.937009811401367],[-55.9879035949707,-30.861925125122013],[-56.02067184448242,-30.78150177001953],[-56.13026809692383,-30.732589721679688],[-56.142044067382756,-30.676429748535156],[-56.53535079956049,-30.327016830444336],[-56.610740661621094,-30.30054092407221],[-56.6587028503418,-30.197235107421815],[-56.70001220703125,-30.19909477233881],[-56.835083007812436,-30.088199615478512],[-57.10939407348633,-30.111831665039062],[-57.206775665283196,-30.28145408630371],[-57.31235122680664,-30.25683593749994],[-57.39490509033191,-30.299652099609375],[-57.55514526367187,-30.212390899658203],[-57.41203689575189,-30.040691375732422],[-57.34196472167962,-30.00122451782227],[-57.318336486816406,-29.867580413818246],[-57.23598098754883,-29.778366088867184],[-57.10449218749994,-29.748962402343746],[-56.88169860839838,-29.511966705322262],[-56.82871627807617,-29.48898506164545],[-56.765151977539055,-29.380332946777287],[-56.70840072631836,-29.361932754516598],[-56.59306335449219,-29.122995376586857],[-56.42478561401367,-29.072883605956914],[-56.41016769409179,-28.9765682220459],[-56.31401062011713,-28.91596412658691],[-56.28425216674799,-28.791032791137695],[-56.19169616699218,-28.772745132446286],[-56.14143371582031,-28.703012466430664],[-56.01220703125,-28.60419273376459],[-55.99895095825195,-28.50310516357422],[-55.89349365234374,-28.481349945068356],[-55.867664337158146,-28.35382652282709],[-55.76964950561518,-28.36700248718256],[-55.68981170654291,-28.415363311767575],[-55.66825485229486,-28.337144851684513],[-55.76514053344721,-28.271844863891488],[-55.618972778320256,-28.158998489379826],[-55.56794357299798,-28.160516738891545],[-55.378635406494084,-28.040332794189396],[-55.385593414306584,-27.990064620971676],[-55.322998046875,-27.92808532714838],[-55.2030029296875,-27.866584777832028],[-55.148906707763615,-27.890228271484318],[-55.021022796630746,-27.79658508300781],[-54.9471817016601,-27.780012130737244],[-54.90295028686518,-27.646493911743107],[-54.78448867797846,-27.584030151367184],[-54.62035369873041,-27.54797172546381],[-54.44962310791015,-27.476463317871094],[-54.34554672241211,-27.468130111694332],[-54.22220993041986,-27.388364791870004],[-54.18703460693348,-27.273574829101502],[-54.11064147949213,-27.304794311523434],[-53.95955657958979,-27.201583862304574],[-53.948719024658196,-27.155435562133786],[-53.830329895019474,-27.170944213867127],[-53.748844146728516,-27.190977096557617],[-53.666599273681584,-27.1622314453125],[-53.52663421630859,-27.19626045227045],[-53.41115188598632,-27.14082717895502],[-53.38312911987305,-27.096420288085934],[-53.29301071166992,-27.139888763427734],[-53.12996673583979,-27.17852592468256],[-53.003429412841676,-27.13342857360834],[-52.969322204589844,-27.215679168701115],[-52.77402114868164,-27.20727539062494],[-52.676265716552734,-27.246650695800778],[-52.27434921264648,-27.30296516418457],[-52.21265029907226,-27.330820083618104],[-52.121402740478516,-27.303432464599553],[-52.040733337402344,-27.345130920410156],[-51.938747406005746,-27.4439697265625],[-51.79835891723627,-27.491056442260682],[-51.70337295532221,-27.483129501342717],[-51.58647155761719,-27.56099510192871],[-51.47780609130853,-27.57012176513672],[-51.41927337646479,-27.653961181640625],[-51.316562652587834,-27.674728393554688],[-51.27401351928705,-27.749540328979492],[-51.19077301025385,-27.777196884155273],[-51.05212402343749,-27.870363235473633],[-51.056243896484375,-27.901508331298828],[-50.92890167236317,-27.969102859497067],[-50.87733840942383,-28.038301467895508],[-50.85691452026367,-28.137372970580998],[-50.79233169555658,-28.13940811157221],[-50.75204849243164,-28.246370315551697],[-50.66492462158192,-28.337997436523438],[-50.576763153076165,-28.39365577697754],[-50.370052337646364,-28.424541473388615],[-50.27159881591791,-28.45674324035639],[-50.1456069946289,-28.446495056152287],[-50.03719329833979,-28.47841072082508],[-49.97150039672846,-28.4391078948974],[-49.877361297607365,-28.454652786254826],[-49.72825622558594,-28.518453598022404],[-49.7282257080077,-28.623365402221623],[-49.817276000976506,-28.640651702880803],[-49.84635925292963,-28.705461502075142],[-49.93533325195306,-28.728111267089787],[-49.96391296386719,-28.822225570678707],[-49.93775939941406,-28.965431213378906],[-49.96853637695307,-29.11667251586914],[-49.962581634521484,-29.19921493530268],[-49.86899948120117,-29.22446823120117],[-49.84098815917969,-29.277572631835938],[-49.713470458984375,-29.326183319091797]]]},"properties":{"ID_0":33,"ISO":"BR-RS","NAME_0":"Brazil","ID_1":21,"NAME_1":"Rio Grande do Sul","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.58290100097656,-8.798702239990178],[-61.526020050048764,-8.816848754882812],[-61.46843719482422,-8.917381286621094],[-61.554874420166016,-9.090265274047852],[-61.52028274536127,-9.192301750183105],[-61.6131019592284,-9.28001880645752],[-61.625328063964844,-9.339431762695256],[-61.55263137817377,-9.387434959411621],[-61.581661224365234,-9.459136009216309],[-61.5079727172851,-9.54047679901123],[-61.47911453247059,-9.633694648742676],[-61.53236007690429,-9.711790084838809],[-61.547294616699155,-9.787552833557129],[-61.507858276367195,-9.861091613769474],[-61.53113174438476,-9.989865303039494],[-61.60059356689447,-10.1538028717041],[-61.5336799621582,-10.331894874572754],[-61.461719512939396,-10.419917106628361],[-61.47616577148437,-10.607674598693734],[-61.49876022338856,-10.699950218200682],[-61.53002929687494,-10.979029655456543],[-61.428943634033146,-10.987543106079043],[-60.459987640380795,-10.98986530303955],[-60.39149093627929,-11.093803405761662],[-60.15921020507807,-11.095663070678652],[-60.019325256347535,-11.129109382629338],[-59.981964111328125,-11.233511924743596],[-59.92770767211914,-11.310445785522404],[-59.920570373535156,-11.398019790649414],[-60.090717315673764,-11.554890632629395],[-60.12159729003906,-11.712114334106387],[-60.098796844482415,-11.845566749572752],[-59.98510742187501,-11.91435432434082],[-59.979290008544915,-12.029559135436896],[-59.90117263793945,-12.115450859069767],[-59.8862838745116,-12.245482444763182],[-59.79287719726562,-12.345791816711424],[-59.868423461914006,-12.48237133026123],[-59.903095245361335,-12.472520828247069],[-60.02657699584961,-12.561638832092228],[-60.088958740234375,-12.740471839904671],[-60.07904815673828,-12.881149291992188],[-60.11709976196289,-12.959565162658691],[-60.18328094482421,-12.967638015747013],[-60.267551422119084,-13.077292442321777],[-60.28055191040038,-13.135627746581974],[-60.37143325805663,-13.318634033203068],[-60.705120086669915,-13.324747085571289],[-60.8650894165039,-13.541679382324217],[-60.918922424316285,-13.548334121704043],[-61.342578887939446,-13.491901397705078],[-61.49563980102539,-13.553750038146916],[-61.573520660400334,-13.497790336608885],[-61.79841995239257,-13.543508529663084],[-61.86183929443359,-13.450589179992676],[-62.00886154174798,-13.35176086425781],[-62.10808181762695,-13.256900787353514],[-62.119659423828075,-13.153539657592773],[-62.243778228759766,-13.122080802917424],[-62.27849197387695,-13.155490875244027],[-62.41411972045898,-13.129071235656681],[-62.472591400146484,-13.071730613708382],[-62.628780364990234,-13.045329093933105],[-62.674869537353516,-12.990971565246525],[-62.810298919677734,-12.980161666870117],[-62.921318054199155,-12.84086799621582],[-63.00918960571278,-12.837791442871037],[-63.04718017578124,-12.740691184997502],[-63.144821166992195,-12.643161773681584],[-63.245109558105405,-12.71290111541748],[-63.32656097412104,-12.70491981506342],[-63.42650985717768,-12.651011466979979],[-63.476169586181584,-12.562030792236328],[-63.54467010498041,-12.552310943603514],[-63.6604995727539,-12.470610618591252],[-63.773639678955014,-12.454469680786076],[-63.864028930664006,-12.467219352722166],[-63.89912033081048,-12.53394985198969],[-64.13731384277344,-12.52734088897705],[-64.23162841796875,-12.45508956909174],[-64.37339782714838,-12.466940879821777],[-64.51300811767571,-12.347820281982308],[-64.49286651611328,-12.294260025024357],[-64.54711151123047,-12.242711067199707],[-64.69883728027342,-12.187162399291935],[-64.82324981689447,-12.026426315307617],[-65.02263641357422,-11.999151229858398],[-65.01531219482416,-11.902069091796818],[-65.04704284667969,-11.75424861907959],[-65.1845474243164,-11.759127616882324],[-65.18045043945311,-11.607028007507324],[-65.23082733154297,-11.508378028869627],[-65.29854583740227,-11.497219085693303],[-65.36136627197266,-11.251359939575195],[-65.35608673095692,-11.128230094909611],[-65.28636932373036,-11.092209815978947],[-65.3012924194336,-11.032130241394043],[-65.25089263916004,-10.984551429748478],[-65.27558898925774,-10.871161460876465],[-65.34821319580078,-10.77845096588129],[-65.34879302978516,-10.672710418701172],[-65.42971038818348,-10.481014251708984],[-65.38949584960938,-10.387001991271973],[-65.30805206298828,-10.297120094299316],[-65.28225708007807,-10.19779109954834],[-65.3297119140625,-10.046510696411133],[-65.32125091552729,-9.906010627746582],[-65.28607940673822,-9.845491409301701],[-65.35463714599604,-9.723689079284668],[-65.44346618652344,-9.669329643249512],[-65.55304718017578,-9.835400581359863],[-65.630630493164,-9.834380149841252],[-65.71894073486322,-9.755950927734375],[-65.8415069580077,-9.789791107177734],[-65.88597869873047,-9.75247859954834],[-66.03940582275389,-9.787119865417479],[-66.15210723876947,-9.785619735717715],[-66.21340942382807,-9.834250450134277],[-66.31590270996094,-9.831400871276799],[-66.35971832275384,-9.866150856018066],[-66.55554962158203,-9.883980751037598],[-66.58875274658202,-9.903196334838809],[-66.80647277832031,-9.81451988220209],[-66.77551269531244,-9.753079414367619],[-66.50071716308594,-9.633559226989744],[-66.3925170898437,-9.500473022460938],[-66.37487792968744,-9.426360130310059],[-66.25975799560541,-9.410989761352539],[-66.17372131347656,-9.434416770935002],[-66.12397003173822,-9.408774375915527],[-65.97037506103516,-9.41315746307373],[-65.91270446777344,-9.483749389648322],[-65.82514190673828,-9.530090332031193],[-65.80007934570307,-9.585020065307617],[-65.72360229492182,-9.559058189392033],[-65.67948913574219,-9.451392173767033],[-65.59682464599608,-9.413866043090763],[-65.5031967163086,-9.469978332519531],[-65.45664215087889,-9.401209831237734],[-65.44024658203124,-9.311749458312988],[-65.37754821777344,-9.324430465698185],[-65.24668884277338,-9.257667541503906],[-65.21179962158202,-9.278998374938963],[-65.18685150146484,-9.415031433105469],[-65.14290618896479,-9.446814537048283],[-65.05356597900385,-9.402147293090763],[-65.00053405761713,-9.304619789123533],[-64.91969299316406,-9.220285415649357],[-64.93994140625,-9.124572753906193],[-64.87057495117188,-9.012198448181096],[-64.58795928955072,-9.009517669677734],[-64.55011749267572,-8.978278160095101],[-64.44656372070301,-8.97687816619873],[-64.3233871459961,-8.928870201110783],[-64.31130981445307,-8.996479034423828],[-64.2331924438476,-8.992317199706974],[-64.14175415039055,-8.945060729980469],[-64.15818786621094,-8.84317684173584],[-64.14305114746094,-8.743041038513184],[-64.03546142578125,-8.693568229675293],[-63.986186981201165,-8.585645675659178],[-63.92454528808594,-8.575535774230957],[-63.97315597534174,-8.47845935821533],[-63.94081497192377,-8.452274322509766],[-63.94409942626953,-8.33119869232172],[-63.87073516845692,-8.288831710815371],[-63.79120635986328,-8.333227157592773],[-63.72273254394531,-8.249509811401367],[-63.69339370727539,-8.158363342285156],[-63.62174987792968,-8.029622077941893],[-63.62075805664057,-7.969308853149414],[-63.50049972534173,-7.976333141326847],[-62.866573333740234,-7.97588396072382],[-62.69223403930664,-8.092922210693358],[-62.649898529052734,-8.237038612365723],[-62.58533859252925,-8.271894454956053],[-62.51842117309565,-8.384754180908203],[-62.465423583984375,-8.339750289916935],[-62.36075210571283,-8.398563385009652],[-62.36600112915033,-8.493574142455998],[-62.26883697509759,-8.575773239135685],[-62.18833923339838,-8.59057426452631],[-62.12491989135737,-8.801686286926213],[-62.03100585937488,-8.799722671508732],[-61.99016571044916,-8.872673988342285],[-61.85969161987299,-8.852987289428711],[-61.84405136108393,-8.747397422790527],[-61.77454757690423,-8.748244285583437],[-61.74179458618164,-8.695208549499455],[-61.62641143798828,-8.728866577148438],[-61.58290100097656,-8.798702239990178]]]},"properties":{"ID_0":33,"ISO":"BR-RO","NAME_0":"Brazil","ID_1":22,"NAME_1":"Rondônia","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Guaporé"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-58.89543151855468,1.227664947509822],[-58.89534759521484,0.263505995273647],[-59.43348693847656,0.26350998878479],[-60.03789520263666,0.263489991426525],[-60.059017181396484,0.162971004843769],[-60.11622619628906,0.133212000131607],[-60.14316177368163,0.037388000637407],[-60.20321273803712,-0.033615998923722],[-60.22043991088861,-0.135381996631622],[-60.285720825195305,-0.21065500378603],[-60.289882659911996,-0.293161988258305],[-60.34463500976562,-0.440634995698929],[-60.3998908996582,-0.510107994079533],[-60.303565979003906,-0.711292028427067],[-60.434608459472656,-0.772605001926365],[-60.47905731201166,-0.770938992500305],[-60.53100204467774,-0.875101983547154],[-60.591278076171875,-0.85343199968338],[-60.65461349487305,-0.883157014846802],[-60.75266265869135,-0.861208975315037],[-60.76100540161133,-0.761493980884552],[-60.97545242309564,-0.562602996826058],[-61.08739471435547,-0.500109016895181],[-61.22295379638661,-0.505658984184208],[-61.224056243896484,-0.559547007083893],[-61.348411560058594,-0.595547974109536],[-61.45684051513672,-0.657051026821023],[-61.53878784179682,-0.756218016147614],[-61.54351043701172,-0.852321982383728],[-61.578506469726555,-0.910099029540959],[-61.546566009521484,-1.071213006973267],[-61.62684631347657,-1.293992042541447],[-61.58211517333984,-1.35342895984644],[-61.60489654541009,-1.448155045509338],[-61.7979507446289,-1.380653023719731],[-61.89656829833984,-1.395378947257995],[-62.017402648925774,-1.141767978668213],[-62.09962463378906,-1.096766948699951],[-62.17185211181635,-1.005936026573124],[-62.31268692016596,-0.930381000041905],[-62.39574432373047,-0.820378005504551],[-62.50102233886718,-0.781491994857788],[-62.46962738037109,-0.693991005420571],[-62.36713027954101,-0.710099995136147],[-62.287483215332024,-0.638356983661595],[-62.31832122802729,-0.552519977092743],[-62.273880004882756,-0.454183012247029],[-62.22720718383788,-0.425850987434387],[-62.18831634521484,-0.33084499835968],[-62.253597259521484,-0.271405011415482],[-62.244983673095646,-0.174740001559258],[-62.31968307495105,-0.102550998330059],[-62.34656143188471,0.029581999406219],[-62.414897918701165,0.074350997805652],[-62.452686309814396,0.207388997077942],[-62.46684265136719,0.332935005426407],[-62.4462890625,0.379056006669998],[-62.532958984375,0.508795976638908],[-62.528518676757756,0.710179984569663],[-62.45768356323242,0.785170018672943],[-62.486011505126946,0.866508007049561],[-62.44573593139643,0.976824998855591],[-62.521034240722656,1.083786964416561],[-62.58685684204101,1.255452036857719],[-62.63732528686517,1.433696031570491],[-62.73075103759765,1.499606013298035],[-62.80523300170898,1.591317057609558],[-62.72369384765624,1.712357044220028],[-62.73101806640625,1.818204998970146],[-62.70597839355462,1.939694046974239],[-62.838783264160156,2.016442060470638],[-62.94843673706043,2.031012058258113],[-63.02373504638672,2.014641046524162],[-63.119785308837834,2.09642505645752],[-63.14146041870105,2.172419071197567],[-63.28274154663085,2.153851032257194],[-63.37227630615235,2.211709022521973],[-63.42551803588867,2.364233016967773],[-63.40680694580078,2.435909986496029],[-63.49994277954095,2.435955047607479],[-63.655925750732415,2.393882036209106],[-63.780818939208984,2.391247987747249],[-64.02077484130858,2.466536998748893],[-64.0571670532226,2.512928009033146],[-63.99162292480468,2.636245965957755],[-63.98660659790028,2.730709075927848],[-64.1024398803711,2.95153903961176],[-64.23522949218739,3.114319086074829],[-64.20828247070312,3.188760995864868],[-64.25522613525385,3.410975933075064],[-64.1868896484375,3.499587059021053],[-64.18577575683594,3.559587001800537],[-64.28912353515625,3.699589967727661],[-64.4285659790039,3.779867887496948],[-64.47245788574217,3.781533956527823],[-64.56835174560536,3.881722927093506],[-64.5802383422851,3.928262948989925],[-64.67385864257812,4.004589080810604],[-64.73218536376947,4.1201429367066],[-64.8105239868164,4.174582004547119],[-64.82497406005854,4.244025230407772],[-64.78052520751947,4.286530971527156],[-64.69136047363274,4.244587898254508],[-64.62745666503899,4.138475894927979],[-64.56049346923822,4.101533889770508],[-64.4316177368164,4.134590148925895],[-64.28967285156244,4.143753051757926],[-64.171890258789,4.128757953643799],[-64.11272430419922,4.09125280380249],[-64.0356674194336,3.93422889709467],[-63.9499397277832,3.886528968810978],[-63.85021591186517,3.94986891746521],[-63.70049667358392,3.944308042526188],[-63.6527137756347,4.001814842224234],[-63.57159805297852,3.883197069168034],[-63.452713012695256,3.858201980590877],[-63.353370666503785,3.960197925567741],[-63.20492935180663,3.951251983642521],[-63.233535766601555,3.881531000137386],[-63.2043724060058,3.811532020568961],[-63.1232566833496,3.804589986801204],[-63.06075286865228,3.751810073852596],[-63.07297897338861,3.685425043106136],[-62.98491668701172,3.609591960906982],[-62.83575439453124,3.738476991653386],[-62.73102569580078,3.707643985748348],[-62.73538208007807,3.8001549243927],[-62.78880310058593,3.893204927444571],[-62.732173919677734,4.035823822021541],[-62.64139556884765,4.051622867584342],[-62.55615234375,4.029202938079777],[-62.50979614257812,4.087165832519531],[-62.3554573059082,4.150284767150993],[-62.2330703735351,4.131924152374324],[-62.1345596313476,4.09125280380249],[-62.06065368652338,4.156741142273006],[-61.90314865112305,4.164978027343693],[-61.756721496581974,4.255393981933594],[-61.59051513671875,4.250426769256649],[-61.52329635620118,4.282258033752554],[-61.53794860839838,4.383833885192928],[-61.47499847412103,4.438243865966797],[-61.390861511230405,4.430208206176758],[-61.329322814941406,4.463661193847599],[-61.344749450683594,4.531844139099177],[-61.22252655029296,4.527145862579346],[-61.1497116088866,4.484355926513615],[-60.9913330078125,4.516063213348502],[-60.9289665222168,4.6073260307312],[-60.889514923095646,4.712080001831112],[-60.834461212158196,4.712596893310604],[-60.73152542114246,4.765439033508358],[-60.587852478027344,4.965773105621338],[-60.674156188964844,5.170005798339844],[-60.661682128906186,5.221683025360107],[-60.57181549072265,5.189376831054801],[-60.43804550170892,5.176926136016788],[-60.32917404174794,5.199077129364126],[-60.21232604980463,5.264453887939567],[-60.12193298339838,5.243931770324706],[-60.0854263305664,5.148698806762695],[-59.97662353515625,5.034758090973014],[-60.03333663940424,4.790381908416805],[-60.0284461975097,4.709795951843262],[-60.09170150756831,4.595231056213436],[-60.15955734252929,4.51964378356945],[-59.78559875488281,4.444613933563232],[-59.67125701904297,4.376558780670223],[-59.71799850463867,4.296010017395076],[-59.71303939819335,4.171568870544547],[-59.627830505371044,4.139078140258732],[-59.616886138916016,4.059394836425837],[-59.56879043579096,3.965207099914494],[-59.57560348510742,3.825129032135067],[-59.66592025756835,3.776824951171818],[-59.661338806152344,3.713190078735351],[-59.844989776611214,3.603478908538875],[-59.86485290527343,3.561639070510921],[-59.80381393432617,3.497345924377498],[-59.834896087646484,3.440710067748967],[-59.798114776611335,3.356441020965519],[-59.86987686157221,3.270085096359367],[-59.897445678710824,3.159965991973877],[-59.95899963378906,3.06294488906866],[-59.98157501220703,2.929233074188232],[-59.98783874511713,2.679122924804801],[-59.9311904907226,2.565139055252075],[-59.9087028503418,2.392432928085327],[-59.78753280639648,2.28593993186945],[-59.734474182128906,2.284734964370728],[-59.739925384521484,2.177516937255916],[-59.720230102539,2.030178070068303],[-59.752273559570256,1.910222053527775],[-59.67955017089843,1.785308003425598],[-59.61783981323242,1.730952024459896],[-59.548133850097656,1.7301620244981],[-59.37897491455078,1.518102049827576],[-59.33692932128906,1.517428994178829],[-59.25275039672846,1.397390007972717],[-59.15567016601556,1.34834897518158],[-58.91377258300781,1.298509001731929],[-58.89543151855468,1.227664947509822]]]},"properties":{"ID_0":33,"ISO":"BR-RR","NAME_0":"Brazil","ID_1":23,"NAME_1":"Roraima","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Rio Branco"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-47.42930603027344,-24.674585342407113],[-47.721527099609375,-24.87125015258783],[-47.86513900756835,-24.999584197998047],[-47.89374923706055,-24.967081069946175],[-47.73485946655262,-24.83569335937494],[-47.68402862548817,-24.813472747802678],[-47.62652587890624,-24.76180648803711],[-47.518470764160035,-24.69319534301752],[-47.485416412353516,-24.7056941986084],[-47.42930603027344,-24.674585342407113]]],[[[-46.12708282470703,-23.856252670288086],[-46.21263885498047,-23.984861373901307],[-46.300971984863224,-24.016805648803654],[-46.307640075683594,-23.924304962158203],[-46.20847320556635,-23.91875076293934],[-46.12708282470703,-23.856252670288086]]],[[[-45.32902908325195,-23.7220840454101],[-45.23236083984375,-23.776252746581974],[-45.305694580078125,-23.90902709960926],[-45.406806945800724,-23.939027786254883],[-45.46236038208008,-23.88875007629389],[-45.366249084472656,-23.810415267944336],[-45.32902908325195,-23.7220840454101]]],[[[-44.809181213378906,-22.405263900756836],[-44.75504684448242,-22.4149169921875],[-44.645305633544865,-22.602554321289006],[-44.50853729248047,-22.64093780517578],[-44.39162063598627,-22.573398590087834],[-44.232868194579964,-22.608882904052617],[-44.160896301269524,-22.678316116333008],[-44.25751495361328,-22.76847648620594],[-44.2699089050293,-22.830293655395508],[-44.46694564819336,-22.885053634643555],[-44.60701370239258,-22.88568115234375],[-44.743797302246094,-22.94758987426752],[-44.79309463500976,-23.010242462158203],[-44.825569152831974,-23.162794113159123],[-44.88888168334955,-23.224496841430604],[-44.725418090820256,-23.36964607238764],[-44.84430694580078,-23.387361526489258],[-44.90763854980469,-23.33402824401855],[-44.977638244628906,-23.400972366333004],[-45.06069564819336,-23.419584274291992],[-45.074584960937386,-23.48958396911621],[-45.22791671752924,-23.537361145019474],[-45.40736007690429,-23.624027252197262],[-45.43125152587885,-23.686250686645508],[-45.396804809570256,-23.781806945800664],[-45.42124938964843,-23.828470230102482],[-45.53541564941406,-23.829584121704098],[-45.67208480834961,-23.774026870727482],[-45.8176383972168,-23.755695343017575],[-45.91180419921869,-23.765972137451058],[-46.08541488647461,-23.819026947021484],[-46.20680618286133,-23.91402816772461],[-46.33180618286127,-23.901527404785156],[-46.42930603027344,-23.937084197998047],[-46.43152618408203,-24.01625251770014],[-46.54819488525385,-24.061527252197266],[-46.83708190917968,-24.21236038208002],[-47.00152587890624,-24.331249237060547],[-47.003192901611264,-24.410139083862305],[-47.10847091674799,-24.46486091613764],[-47.24625015258789,-24.573472976684513],[-47.47152709960932,-24.694860458374023],[-47.507915496826165,-24.696250915527287],[-47.51708221435547,-24.689861297607365],[-47.529582977294915,-24.69375038146967],[-47.73402786254883,-24.8295841217041],[-47.795696258544865,-24.883193969726506],[-47.86208343505859,-24.890972137451172],[-47.98291778564453,-25.019861221313473],[-48.0131950378418,-25.084583282470646],[-47.90097045898432,-25.104303359985295],[-47.92597198486317,-25.160137176513615],[-48.05773544311518,-25.262081146240178],[-48.11482620239258,-25.25068855285639],[-48.21599578857422,-25.076660156249996],[-48.411010742187386,-24.98011970520014],[-48.47399139404296,-25.012542724609375],[-48.52852630615234,-25.100784301757812],[-48.598426818847656,-25.01905250549305],[-48.56745910644531,-24.972158432006832],[-48.555694580078125,-24.806192398071175],[-48.50228118896473,-24.744714736938477],[-48.61656188964843,-24.668663024902344],[-48.77859115600586,-24.69672203063965],[-48.82869720458979,-24.655588150024357],[-48.92236709594721,-24.67517471313471],[-49.0373420715332,-24.660408020019474],[-49.208850860595646,-24.700832366943303],[-49.31184005737299,-24.663614273071232],[-49.31592941284174,-24.555494308471676],[-49.24712371826172,-24.469139099121094],[-49.241340637206974,-24.3851318359375],[-49.34148406982416,-24.203111648559567],[-49.341453552246094,-24.138324737548825],[-49.48709487915039,-24.024589538574162],[-49.562305450439446,-23.81855964660639],[-49.549785614013615,-23.703712463378906],[-49.62106704711914,-23.6070499420166],[-49.595218658447266,-23.366926193237305],[-49.67826080322265,-23.165054321289006],[-49.726375579833984,-23.111593246459904],[-49.91154479980469,-23.05111122131342],[-49.90147399902338,-22.9991455078125],[-49.96131896972656,-22.930862426757812],[-50.06740951538086,-22.927505493163945],[-50.18327713012695,-22.953750610351562],[-50.27332687377924,-22.930992126464844],[-50.43020629882807,-22.945802688598633],[-50.576946258544915,-22.90396499633789],[-50.67596817016595,-22.900510787963864],[-50.709774017333984,-22.953428268432617],[-50.793079376220646,-22.90511131286615],[-50.89331054687494,-22.794958114623967],[-50.94506835937499,-22.804067611694336],[-51.157756805419865,-22.751663208007812],[-51.30623626708979,-22.674419403076172],[-51.446235656738224,-22.65325164794922],[-51.55950927734375,-22.697172164916992],[-51.615779876708984,-22.662586212158203],[-51.72581481933594,-22.66142463684082],[-51.77337265014642,-22.614557266235238],[-51.87345504760742,-22.628238677978402],[-51.94045257568354,-22.567333221435547],[-52.12561416625976,-22.519262313842717],[-52.1566162109375,-22.644712448120114],[-52.22819519042968,-22.665294647216797],[-52.43523025512684,-22.60738182067865],[-52.50324249267578,-22.634065628051758],[-52.58020782470703,-22.568996429443303],[-52.70118331909174,-22.627479553222543],[-52.858299255371094,-22.607997894287053],[-52.97236251831055,-22.570476531982422],[-53.10512161254883,-22.621923446655273],[-52.99851989746094,-22.493181228637695],[-52.854698181152344,-22.43910598754877],[-52.798267364501896,-22.378267288208008],[-52.57912445068354,-22.251947402954045],[-52.48669815063471,-22.215190887451115],[-52.345371246337834,-22.061962127685547],[-52.319026947021484,-21.97236251831049],[-52.19050216674799,-21.84613609313965],[-52.16120147705078,-21.770769119262695],[-52.10284042358393,-21.74526596069336],[-52.049453735351506,-21.643106460571232],[-52.10322952270502,-21.559055328369084],[-52.05700683593749,-21.503602981567326],[-51.99810791015625,-21.51562309265131],[-51.92861938476557,-21.455810546875],[-51.86763381958008,-21.35165405273426],[-51.848453521728516,-21.266633987426644],[-51.878921508789006,-21.14813232421869],[-51.789608001708984,-21.102115631103516],[-51.71363830566406,-20.97145271301264],[-51.626625061035156,-20.94634437561035],[-51.61342239379877,-20.89007186889637],[-51.63483810424805,-20.754846572875977],[-51.59614562988281,-20.648759841918945],[-51.5234260559082,-20.588636398315373],[-51.35080718994129,-20.363176345825195],[-51.295623779296875,-20.328479766845703],[-51.16730499267572,-20.30636024475092],[-51.0691032409668,-20.25004577636713],[-51.000415802001896,-20.08538055419922],[-50.966400146484375,-20.03452491760254],[-50.783542633056584,-19.937225341796815],[-50.6568374633789,-19.90537261962885],[-50.57592773437494,-19.81601715087885],[-50.47184753417969,-19.779651641845703],[-50.35273742675781,-19.86458587646473],[-50.09957885742182,-19.875988006591793],[-50.04383850097656,-19.916492462158203],[-49.891223907470696,-19.9437198638916],[-49.78239822387684,-19.92445755004877],[-49.641159057617074,-19.931869506835938],[-49.55141067504877,-19.905841827392578],[-49.44032287597656,-19.98080062866211],[-49.297481536865234,-19.960540771484375],[-49.299190521240234,-20.16706275939941],[-49.226993560791016,-20.30353164672846],[-49.12028121948242,-20.269697189331055],[-49.06742477416981,-20.154737472534123],[-48.99219512939453,-20.165388107299748],[-48.96173095703119,-20.26329040527338],[-48.968841552734375,-20.393735885620004],[-48.867385864257805,-20.40009117126459],[-48.885398864746094,-20.26913452148426],[-48.85559082031244,-20.182081222534123],[-48.72948455810547,-20.150243759155217],[-48.31630325317377,-20.11371612548828],[-48.20333099365234,-20.045438766479435],[-48.178760528564396,-20.09579658508295],[-48.07038497924805,-20.14659881591797],[-48.00329589843744,-20.10462951660145],[-47.89432907104492,-20.123830795288026],[-47.8597297668457,-19.99298858642578],[-47.70418167114257,-19.979900360107422],[-47.63591766357422,-20.048376083373963],[-47.57896041870117,-19.995243072509652],[-47.46632385253906,-19.964216232299805],[-47.40305328369134,-20.082788467407227],[-47.30961990356445,-20.124494552612248],[-47.23105239868164,-20.219100952148438],[-47.29815673828119,-20.348440170288086],[-47.29172897338867,-20.44930458068842],[-47.15431976318354,-20.519723892211914],[-47.09732437133778,-20.644332885742188],[-47.11869812011719,-20.707237243652287],[-47.18620300292963,-20.73112869262695],[-47.23999023437494,-20.88527488708496],[-47.14366912841791,-20.982378005981445],[-47.11309814453125,-21.10491371154785],[-47.118736267089844,-21.185768127441406],[-46.93408203125,-21.425212860107422],[-46.776344299316406,-21.36281967163086],[-46.65134048461914,-21.438982009887695],[-46.763034820556584,-21.547195434570312],[-46.694786071777344,-21.61142349243158],[-46.640895843505746,-21.602266311645508],[-46.62598037719726,-21.766199111938473],[-46.690906524658196,-21.836940765380803],[-46.64381408691406,-21.974948883056584],[-46.68535614013671,-22.0373477935791],[-46.61298751831055,-22.15024566650385],[-46.67073822021479,-22.184240341186467],[-46.71789932250976,-22.316934585571286],[-46.63154220581048,-22.43581581115717],[-46.453502655029176,-22.52235031127924],[-46.39626312255854,-22.64597129821777],[-46.43939971923828,-22.726716995239258],[-46.33516311645508,-22.76018714904785],[-46.37675857543945,-22.82782173156738],[-46.34517288208007,-22.904672622680664],[-46.155281066894474,-22.864164352416992],[-46.00838851928705,-22.889215469360238],[-45.92253112792969,-22.824045181274357],[-45.766910552978516,-22.842336654663086],[-45.71674728393555,-22.779970169067383],[-45.729927062988224,-22.727233886718636],[-45.664955139160156,-22.65064811706543],[-45.57666397094721,-22.602342605590763],[-45.52487945556635,-22.646865844726562],[-45.471736907958984,-22.59051513671875],[-45.410442352294865,-22.651664733886662],[-45.17799377441406,-22.549869537353516],[-45.06063461303705,-22.472545623779293],[-44.898929595947266,-22.452819824218746],[-44.809181213378906,-22.405263900756836]]]]},"properties":{"ID_0":33,"ISO":"BR-SP","NAME_0":"Brazil","ID_1":24,"NAME_1":"São Paulo","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-48.41652679443354,-27.380418777465763],[-48.375137329101506,-27.480693817138615],[-48.4993057250976,-27.708471298217773],[-48.526527404785156,-27.638471603393555],[-48.51069259643555,-27.552085876464844],[-48.537082672119084,-27.477083206176758],[-48.41652679443354,-27.380418777465763]]],[[[-48.7551383972168,-28.510414123535153],[-48.832359313964844,-28.6068058013916],[-48.98125076293945,-28.675138473510685],[-49.259860992431584,-28.856805801391545],[-49.45069503784174,-29.02569389343256],[-49.713470458984375,-29.326183319091797],[-49.84098815917969,-29.277572631835938],[-49.86899948120117,-29.22446823120117],[-49.962581634521484,-29.19921493530268],[-49.96853637695307,-29.11667251586914],[-49.93775939941406,-28.965431213378906],[-49.96391296386719,-28.822225570678707],[-49.93533325195306,-28.728111267089787],[-49.84635925292963,-28.705461502075142],[-49.817276000976506,-28.640651702880803],[-49.7282257080077,-28.623365402221623],[-49.72825622558594,-28.518453598022404],[-49.877361297607365,-28.454652786254826],[-49.97150039672846,-28.4391078948974],[-50.03719329833979,-28.47841072082508],[-50.1456069946289,-28.446495056152287],[-50.27159881591791,-28.45674324035639],[-50.370052337646364,-28.424541473388615],[-50.576763153076165,-28.39365577697754],[-50.66492462158192,-28.337997436523438],[-50.75204849243164,-28.246370315551697],[-50.79233169555658,-28.13940811157221],[-50.85691452026367,-28.137372970580998],[-50.87733840942383,-28.038301467895508],[-50.92890167236317,-27.969102859497067],[-51.056243896484375,-27.901508331298828],[-51.05212402343749,-27.870363235473633],[-51.19077301025385,-27.777196884155273],[-51.27401351928705,-27.749540328979492],[-51.316562652587834,-27.674728393554688],[-51.41927337646479,-27.653961181640625],[-51.47780609130853,-27.57012176513672],[-51.58647155761719,-27.56099510192871],[-51.70337295532221,-27.483129501342717],[-51.79835891723627,-27.491056442260682],[-51.938747406005746,-27.4439697265625],[-52.040733337402344,-27.345130920410156],[-52.121402740478516,-27.303432464599553],[-52.21265029907226,-27.330820083618104],[-52.27434921264648,-27.30296516418457],[-52.676265716552734,-27.246650695800778],[-52.77402114868164,-27.20727539062494],[-52.969322204589844,-27.215679168701115],[-53.003429412841676,-27.13342857360834],[-53.12996673583979,-27.17852592468256],[-53.29301071166992,-27.139888763427734],[-53.38312911987305,-27.096420288085934],[-53.41115188598632,-27.14082717895502],[-53.52663421630859,-27.19626045227045],[-53.666599273681584,-27.1622314453125],[-53.748844146728516,-27.190977096557617],[-53.830329895019474,-27.170944213867127],[-53.67757034301752,-26.924072265625],[-53.66417694091797,-26.86813163757313],[-53.74619674682617,-26.745418548583928],[-53.741111755371094,-26.641704559326172],[-53.685997009277344,-26.441516876220703],[-53.68484878540039,-26.336620330810543],[-53.62553405761719,-26.336759567260742],[-53.598972320556584,-26.257482528686467],[-53.49715423583984,-26.302829742431584],[-53.385261535644474,-26.2462158203125],[-53.30590057373041,-26.25975227355951],[-53.09056854248041,-26.390493392944332],[-52.99029159545898,-26.347829818725586],[-52.67854309082031,-26.352676391601562],[-52.59408187866205,-26.41533851623535],[-52.522830963134766,-26.400615692138672],[-52.46500015258788,-26.437599182128793],[-52.304996490478516,-26.44073867797846],[-52.112220764160035,-26.47606086730951],[-52.01119232177729,-26.566549301147404],[-51.87356185913086,-26.60023498535156],[-51.665019989013615,-26.566080093383732],[-51.46816635131836,-26.62204360961914],[-51.435302734374886,-26.68812179565424],[-51.28337097167963,-26.653989791870114],[-51.22402954101557,-26.593345642089844],[-51.298721313476506,-26.419946670532227],[-51.243034362792905,-26.324710845947262],[-51.000427246093636,-26.230480194091797],[-50.9091682434082,-26.284881591796818],[-50.70163726806634,-26.184431076049748],[-50.591636657714844,-26.022132873535156],[-50.45967864990228,-26.027074813842717],[-50.361431121826115,-26.094709396362305],[-50.38859176635742,-26.152362823486328],[-50.28460311889637,-26.30893707275385],[-50.18804931640624,-26.273069381713867],[-50.14401245117182,-26.200197219848633],[-50.189247131347656,-26.091751098632812],[-49.993503570556584,-26.011623382568356],[-49.86547088623047,-26.03514289855957],[-49.645641326904176,-26.209596633911076],[-49.555034637451115,-26.237325668334957],[-49.4591064453125,-26.162729263305664],[-49.3874168395996,-26.15595626831049],[-49.17522811889648,-26.001844406127926],[-48.99809646606434,-26.011821746826172],[-48.960723876953125,-25.98102569580078],[-48.6003532409668,-25.979583740234375],[-48.61041641235346,-26.064306259155273],[-48.58458328247059,-26.173194885253906],[-48.504581451416016,-26.23597335815424],[-48.58874893188471,-26.398473739624023],[-48.598751068115234,-26.459583282470703],[-48.67736053466791,-26.60458374023426],[-48.675140380859375,-26.75625038146967],[-48.63263702392572,-26.84458351135254],[-48.633472442626896,-26.985694885253906],[-48.571529388427734,-27.015693664550724],[-48.612640380859375,-27.097360610961857],[-48.58569335937494,-27.14458274841303],[-48.61597061157226,-27.28847312927246],[-48.525417327880795,-27.339307785034123],[-48.561805725097656,-27.417083740234318],[-48.64597320556635,-27.48763656616211],[-48.6070823669433,-27.56958389282221],[-48.65930557250976,-27.64652633666992],[-48.62930679321278,-27.689861297607365],[-48.622917175292855,-27.81708335876465],[-48.58069610595703,-27.9012508392334],[-48.631805419921875,-27.991249084472653],[-48.608196258544865,-28.062084197997933],[-48.66041564941406,-28.230417251586914],[-48.76597213745106,-28.4637508392334],[-48.7551383972168,-28.510414123535153]]],[[[-58.880996704101506,-2.230698108673096],[-58.78485488891595,-2.263783931732121],[-58.73013305664057,-2.347038984298706],[-58.61033248901361,-2.295039892196655],[-58.56169128417962,-2.319912910461426],[-58.45945739746088,-2.302951097488403],[-58.364166259765625,-2.340750932693425],[-58.33905029296874,-2.40510702133173],[-58.17984390258783,-2.576024055480843],[-58.01646041870117,-2.653731107711735],[-57.938423156738274,-2.620711088180485],[-57.93418502807611,-2.72746300697321],[-57.95814132690424,-2.79679894447321],[-58.04008483886719,-2.807538032531738],[-58.110351562499886,-2.859220027923584],[-58.179023742675774,-2.750073909759465],[-58.195510864257756,-2.66473388671875],[-58.30434036254883,-2.611609935760498],[-58.45517730712885,-2.652472972869759],[-58.503234863281186,-2.702739000320377],[-58.68451309204101,-2.663264036178532],[-58.78046798706048,-2.588226079940739],[-58.84976577758789,-2.602458953857422],[-58.9881134033202,-2.560648918151855],[-59.08237075805664,-2.575264930724984],[-59.19425582885742,-2.471970081329232],[-59.172931671142514,-2.385824918746891],[-59.10951995849598,-2.297424077987671],[-58.880996704101506,-2.230698108673096]]]]},"properties":{"ID_0":33,"ISO":"BR-SC","NAME_0":"Brazil","ID_1":25,"NAME_1":"Santa Catarina","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Santa Catharina"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-36.3912506103515,-10.501435279846078],[-36.528751373291016,-10.540417671203556],[-36.80902862548828,-10.705971717834416],[-36.94819259643549,-10.84402847290039],[-37.27597045898432,-11.313195228576603],[-37.31819534301758,-11.425416946411131],[-37.453472137451115,-11.519860267639103],[-37.54513931274414,-11.54747009277338],[-37.61129379272455,-11.650357246398924],[-37.671234130859375,-11.672359466552734],[-37.67018127441406,-11.564008712768498],[-37.81365585327143,-11.51431274414051],[-37.8679237365722,-11.442428588867186],[-37.96784591674805,-11.390617370605353],[-38.00328826904297,-11.28950309753418],[-37.98110198974609,-11.199104309081974],[-38.072307586669865,-11.152892112731932],[-38.111526489257805,-11.009933471679686],[-38.17595672607416,-10.985304832458494],[-38.24000549316406,-10.880989074707031],[-38.211856842041016,-10.709162712097111],[-38.05820465087885,-10.708579063415527],[-37.99977111816406,-10.764384269714299],[-37.81383514404297,-10.69104957580555],[-37.83033370971679,-10.58470439910883],[-37.81295776367187,-10.50849437713623],[-37.8590202331543,-10.426471710205078],[-37.83060073852539,-10.374975204467717],[-37.73606872558594,-10.33335113525385],[-37.77428436279291,-10.144798278808592],[-37.83168792724604,-10.00092601776123],[-37.967998504638665,-9.962568283081055],[-37.99764251708979,-9.910760879516602],[-37.97256469726557,-9.814451217651367],[-38.02811050415039,-9.776082038879393],[-38.03981399536133,-9.686598777770996],[-38.00691604614258,-9.651735305786076],[-38.04032516479492,-9.573088645935057],[-38.003326416015625,-9.515005111694336],[-37.88607406616199,-9.550169944763127],[-37.785133361816406,-9.638580322265625],[-37.711666107177734,-9.631301879882812],[-37.58171844482416,-9.733977317810059],[-37.41886520385731,-9.762598991394041],[-37.28530502319336,-9.830959320068303],[-37.226463317871094,-9.899447441101074],[-37.1528434753418,-9.900853157043455],[-37.0377311706543,-9.989083290100098],[-36.968685150146484,-9.992102622985783],[-36.954299926757756,-10.07064437866211],[-36.836849212646484,-10.202178001403809],[-36.68416976928711,-10.274503707885742],[-36.642982482910156,-10.252683639526367],[-36.5667839050293,-10.332721710205078],[-36.56361389160145,-10.417773246765137],[-36.431404113769474,-10.424283981323185],[-36.3912506103515,-10.501435279846078]]]},"properties":{"ID_0":33,"ISO":"BR-SE","NAME_0":"Brazil","ID_1":26,"NAME_1":"Sergipe","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-45.94632720947259,-10.258577346801758],[-45.8778076171875,-10.239345550536996],[-45.79369354248047,-10.267683029174748],[-45.74397659301758,-10.23996353149414],[-45.72283935546875,-10.155317306518553],[-45.6960334777832,-10.257701873779297],[-45.75107955932617,-10.351987838745059],[-45.82239913940429,-10.364042282104492],[-45.864749908447266,-10.43889141082758],[-46.024978637695256,-10.542787551879883],[-46.05942535400385,-10.593470573425293],[-46.2109260559082,-10.649677276611271],[-46.19251251220703,-10.719710350036621],[-46.2833671569823,-10.906757354736326],[-46.39888381958008,-10.994400978088377],[-46.472312927246094,-11.191190719604492],[-46.58201217651367,-11.24677944183338],[-46.615894317626896,-11.302206993103027],[-46.549259185791016,-11.380727767944279],[-46.52001190185547,-11.483555793762205],[-46.41714477539057,-11.539184570312443],[-46.31340408325184,-11.539497375488281],[-46.1870002746582,-11.606145858764648],[-46.31504821777344,-11.644654273986816],[-46.37453460693347,-11.868609428405762],[-46.28494644165039,-11.885949134826602],[-46.37356567382806,-12.015480995178164],[-46.37432098388666,-12.289812088012695],[-46.24893188476557,-12.436996459960936],[-46.15962600708008,-12.474560737609806],[-46.16061401367181,-12.528590202331486],[-46.25905990600586,-12.548623085021973],[-46.29014587402344,-12.63176441192627],[-46.26226043701166,-12.831681251525879],[-46.30473709106445,-12.94987869262684],[-46.11459732055664,-12.918439865112248],[-46.19449996948242,-12.956678390502873],[-46.36382293701166,-12.991222381591797],[-46.366142272949105,-12.864859580993596],[-46.417564392089844,-12.823479652404785],[-46.4546012878418,-12.971158981323185],[-46.75056076049799,-12.969160079955998],[-46.819644927978516,-13.002476692199705],[-47.00968551635731,-13.140827178955078],[-47.22909927368158,-13.194874763488713],[-47.32294082641596,-13.258310317993107],[-47.37768173217768,-13.230617523193303],[-47.434795379638615,-13.268231391906681],[-47.47883605957031,-13.185147285461369],[-47.56302261352539,-13.18423557281494],[-47.61793136596673,-13.104711532592772],[-47.66884613037104,-13.2094087600708],[-47.63888549804682,-13.39106273651123],[-47.678932189941406,-13.467717170715275],[-47.823936462402344,-13.311871528625488],[-47.88885116577142,-13.318043708801268],[-48.02251434326172,-13.279841423034668],[-48.15148544311517,-13.306541442871037],[-48.17388534545898,-13.148106575012207],[-48.29255294799799,-13.219557762145996],[-48.44680404663085,-13.283736228942756],[-48.47250366210932,-13.142780303955021],[-48.57861328125,-13.126596450805664],[-48.6382827758789,-13.018381118774355],[-48.73069381713867,-12.989795684814453],[-48.73652267456055,-12.921031951904297],[-48.8698387145996,-12.804408073425236],[-48.97557830810541,-12.95720386505127],[-49.1190299987793,-12.790364265441895],[-49.249465942382756,-12.902787208557015],[-49.33741378784168,-13.066299438476504],[-49.34202194213867,-13.255134582519474],[-49.36944198608393,-13.274602890014648],[-49.939369201660035,-12.956930160522461],[-50.07883834838867,-12.905943870544432],[-50.183372497558594,-12.896775245666447],[-50.31122589111328,-12.798553466796875],[-50.29567337036133,-12.68449878692627],[-50.208293914794865,-12.57303714752197],[-50.21228027343744,-12.437126159667969],[-50.36587142944336,-12.546072959899902],[-50.41859436035144,-12.62460994720459],[-50.511016845703125,-12.860708236694336],[-50.61345291137695,-12.818407058715763],[-50.62322616577143,-12.734309196472111],[-50.7064323425293,-12.609708786010742],[-50.623516082763615,-12.455289840698242],[-50.62681579589844,-12.384039878845101],[-50.678619384765625,-12.218859672546271],[-50.66756439208978,-12.064569473266602],[-50.68218231201166,-11.990894317626951],[-50.63923263549805,-11.884573936462346],[-50.686248779296875,-11.859002113342285],[-50.721534729003906,-11.731719970703068],[-50.663459777831974,-11.672493934631348],[-50.65818405151367,-11.592030525207463],[-50.740116119384766,-11.53861999511713],[-50.74200439453125,-11.454914093017576],[-50.65436553955078,-11.218374252319336],[-50.65796279907215,-11.128582954406738],[-50.6094017028808,-11.06746768951416],[-50.63289260864258,-10.935950279235783],[-50.621952056884766,-10.839422225952092],[-50.5705337524414,-10.752511978149414],[-50.60339736938471,-10.660944938659668],[-50.51967239379877,-10.562488555908203],[-50.516025543212834,-10.505141258239746],[-50.423145294189396,-10.330657005310002],[-50.38262939453119,-10.222892761230469],[-50.39209365844726,-10.134040832519474],[-50.31239700317383,-10.04567241668701],[-50.22717285156244,-9.84562969207758],[-50.089508056640625,-9.54570484161377],[-50.10528182983393,-9.475420951843205],[-50.05278015136719,-9.37268352508539],[-50.05070114135742,-9.313079833984375],[-49.90763854980469,-9.173836708068848],[-49.842533111572266,-9.027338027954045],[-49.684303283691406,-8.856487274169865],[-49.59235763549805,-8.839503288268986],[-49.40983200073242,-8.580012321472111],[-49.3493537902832,-8.418390274047852],[-49.283267974853516,-8.379569053649902],[-49.215801239013615,-8.194225311279297],[-49.162723541259766,-7.900545120239257],[-49.160686492919865,-7.791382789611704],[-49.3415908813476,-7.657280921935977],[-49.381759643554574,-7.566677093505859],[-49.37794494628895,-7.496460914611816],[-49.23142242431635,-7.325801849365233],[-49.18523025512695,-7.235185146331729],[-49.20944595336914,-6.925416946411133],[-49.11521911621094,-6.869965076446533],[-49.018829345703125,-6.784226894378662],[-48.81413650512695,-6.751779079437198],[-48.651908874511605,-6.639966011047362],[-48.66430282592768,-6.570587158203125],[-48.613101959228516,-6.453744888305664],[-48.5001602172851,-6.350944995880127],[-48.41199493408203,-6.306081771850586],[-48.43637847900379,-6.193415164947453],[-48.2831077575683,-6.081573963165282],[-48.3214111328125,-5.985517024993783],[-48.2315788269043,-5.946154117584115],[-48.29172134399413,-5.833617210388127],[-48.272491455078125,-5.725509166717529],[-48.17426300048828,-5.70923614501953],[-48.138099670410156,-5.602708816528263],[-48.30065536499018,-5.523021221160832],[-48.3934593200683,-5.394231796264592],[-48.51070022583008,-5.429666042327881],[-48.62907028198242,-5.410074234008732],[-48.75510025024402,-5.349186897277775],[-48.679386138916016,-5.305838108062687],[-48.6060791015625,-5.336520195007324],[-48.51940917968744,-5.192152023315372],[-48.3638572692871,-5.168396949767953],[-48.1784934997558,-5.260793209075871],[-48.07922363281244,-5.275046825408879],[-48.003093719482365,-5.234705924987736],[-47.88551712036127,-5.260717868804875],[-47.82748794555664,-5.386606216430607],[-47.742176055908146,-5.381310939788818],[-47.6185684204101,-5.459743022918701],[-47.55531692504882,-5.465753078460637],[-47.48320770263672,-5.564914226531982],[-47.493324279785156,-5.730547904968262],[-47.442234039306584,-5.830804824829102],[-47.44791030883789,-5.992932796478215],[-47.41654586791992,-6.177840232849121],[-47.37876892089844,-6.270872116088867],[-47.498592376708984,-6.671247959136963],[-47.50698852539057,-6.872023105621337],[-47.54631423950184,-7.014830112457218],[-47.66032409667969,-7.151381969451904],[-47.745079040527344,-7.162519931793212],[-47.7354888916015,-7.218334197998047],[-47.6517219543457,-7.300271034240723],[-47.58905029296875,-7.264108180999641],[-47.49973678588867,-7.293870925903264],[-47.49790573120117,-7.479200839996338],[-47.38204574584961,-7.5999817848205],[-47.38185501098633,-7.654075145721436],[-47.261268615722656,-7.748301029205265],[-47.2235107421875,-7.826710224151611],[-47.14274597167969,-7.894848823547307],[-47.043453216552734,-8.053603172302246],[-46.99737548828119,-8.067242622375488],[-46.882617950439396,-7.964091777801513],[-46.80009841918945,-7.95543622970581],[-46.708400726318295,-7.909939765930175],[-46.604621887206974,-7.896190166473389],[-46.492080688476555,-7.981707096099854],[-46.47036743164057,-8.084755897521973],[-46.51458740234374,-8.167078018188477],[-46.48751068115229,-8.199920654296875],[-46.54458236694335,-8.319337844848576],[-46.63518524169922,-8.319332122802734],[-46.78238296508789,-8.368098258972111],[-46.8469352722168,-8.532048225402832],[-46.91264724731445,-8.591856956481934],[-46.886898040771484,-8.686503410339355],[-46.931228637695305,-8.726763725280705],[-46.90275573730463,-8.8145494461059],[-46.99250030517572,-8.879414558410588],[-47.05767822265625,-9.05296516418457],[-46.94295120239258,-9.064485549926756],[-46.9262580871582,-9.134954452514648],[-46.861064910888615,-9.14643383026123],[-46.81956481933594,-9.211627006530703],[-46.812870025634766,-9.305959701538086],[-46.75862503051758,-9.38122940063465],[-46.665924072265625,-9.39193153381342],[-46.62754058837884,-9.465735435485838],[-46.573204040527344,-9.47777271270752],[-46.57925415039057,-9.584088325500431],[-46.64273452758789,-9.741473197936955],[-46.51210021972656,-9.798994064331055],[-46.47285079956049,-9.877449035644531],[-46.47753524780262,-9.988312721252441],[-46.443836212158146,-10.07758712768549],[-46.32747268676758,-10.18370342254633],[-46.202030181884766,-10.173930168151855],[-46.164592742919915,-10.212915420532225],[-46.02317047119135,-10.183390617370605],[-46.01767349243153,-10.240401268005371],[-45.94632720947259,-10.258577346801758]]]},"properties":{"ID_0":33,"ISO":"BR-TO","NAME_0":"Brazil","ID_1":27,"NAME_1":"Tocantins","TYPE_1":"Estado","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson
new file mode 100644
index 0000000..6e8029c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson
@@ -0,0 +1,4251 @@
+{
+  "type": "FeatureCollection",
+  "crs": {
+    "type": "name",
+    "properties": {
+      "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
+    }
+  },
+  "features": [
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.5431330000001, 42.7014150000001], [26.5336400000001, 42.7014170000001], [26.5217025000001, 42.7042950000001], [26.51363, 42.7096825], [26.5096555000001, 42.710521], [26.511625, 42.716662], [26.500568, 42.731793], [26.4993925000001, 42.7389879990001], [26.5011020000001, 42.743138], [26.516757, 42.750053499], [26.5136130000001, 42.7685464990001], [26.5064985000001, 42.7825510000001], [26.4995220000001, 42.7863750000001], [26.500641, 42.7938854990001], [26.4743845, 42.7928725], [26.447373, 42.7942895], [26.4409755, 42.7986715000001], [26.4167865000001, 42.7914365], [26.4099125000001, 42.7858000000001], [26.4018145000001, 42.7858165000001], [26.3907495, 42.794493], [26.3787855, 42.7943930000001], [26.375437, 42.791637], [26.3771135000001, 42.7846445000001], [26.3662425000001, 42.7694020000001], [26.3547635, 42.7671225], [26.3480960000001, 42.7688225000001], [26.314314, 42.7710660000001], [26.314059, 42.774572], [26.3249030000001, 42.7866720000001], [26.3344175, 42.7957555], [26.3356430000001, 42.8002430000001], [26.3239675, 42.8146100010001], [26.3127240000001, 42.821675499], [26.2903010000001, 42.8238125], [26.2777560000001, 42.8307535010001], [26.2862655000001, 42.8341300000001], [26.2843205, 42.833761999], [26.27754, 42.835444001], [26.2563375, 42.83131], [26.226978, 42.833628], [26.2305925000001, 42.850807499], [26.2352530000001, 42.8516270000001], [26.207567, 42.872191001], [26.1976645, 42.8941665], [26.2003960000001, 42.9031190000001], [26.2100740000001, 42.905522999], [26.2083845, 42.907767], [26.2094020000001, 42.9130104990001], [26.216932, 42.9215745000001], [26.2095110000001, 42.926857], [26.193587, 42.9306315000001], [26.190371, 42.9349580000001], [26.1911905000001, 42.944757], [26.181831, 42.9476350000001], [26.17841, 42.9515480000001], [26.1674145000001, 42.9521555000001], [26.1651580000001, 42.9514320000001], [26.1645745000001, 42.9474835], [26.1719660000001, 42.938825001], [26.1741785, 42.930970501], [26.1649105000001, 42.916031], [26.16263, 42.9162755], [26.1501555, 42.901127], [26.1336945, 42.8968205], [26.1328835000001, 42.8964905], [26.1161775, 42.8976279990001], [26.0908245000001, 42.8806254990001], [26.0729690000001, 42.8792355], [26.0722625000001, 42.8789640000001], [26.062622, 42.8707130000001], [26.0503570000001, 42.8665325000001], [26.0417825000001, 42.8704145], [26.0363685, 42.8687120000001], [26.0399595000001, 42.866343499], [26.0583720000001, 42.8571795], [26.0657475, 42.8481535000001], [26.061804, 42.8456675], [26.0566845000001, 42.8360890000001], [26.0590340000001, 42.8317450000001], [26.0581745000001, 42.8258530000001], [26.0397555000001, 42.8181625010001], [26.0409585, 42.8170650000001], [26.0495730000001, 42.8104865], [26.061311, 42.8100025000001], [26.0846720000001, 42.8159815000001], [26.0968115000001, 42.822184], [26.0911575000001, 42.8079520000001], [26.0997205, 42.8049529990001], [26.1011035000001, 42.8000010000001], [26.1012105, 42.7964185000001], [26.0970425, 42.7914054990001], [26.0984515000001, 42.778863501], [26.1024165000001, 42.773374], [26.1112680000001, 42.7688055], [26.1140760000001, 42.7544815000001], [26.1136310000001, 42.7513490000001], [26.1186455000001, 42.7470155], [26.1393415000001, 42.7458850000001], [26.1479570000001, 42.732788], [26.1435155, 42.729338001], [26.1467240000001, 42.7224810000001], [26.1643295000001, 42.7218995000001], [26.1664565, 42.7196860000001], [26.1464045000001, 42.7036035], [26.1388400000001, 42.695541], [26.1330565000001, 42.6965420000001], [26.1218315, 42.7074205000001], [26.0994180000001, 42.7049995], [26.0954840000001, 42.703424], [26.0981195000001, 42.6925665000001], [26.1031995000001, 42.6897465000001], [26.100628, 42.6836974990001], [26.0889315000001, 42.6740955000001], [26.0918395000001, 42.665378499], [26.0934125000001, 42.6610100010001], [26.0889720000001, 42.656931], [26.0810290000001, 42.657471], [26.0728085000001, 42.6528930000001], [26.0739905, 42.642186], [26.0717315000001, 42.6385250000001], [26.0742005000001, 42.628229], [26.0695920000001, 42.623833], [26.0701360000001, 42.6233645], [26.0680985000001, 42.6199575000001], [26.0838255, 42.6058600010001], [26.08381, 42.5980250000001], [26.090722, 42.5971030000001], [26.0924745, 42.59401], [26.1093195, 42.5925435], [26.1215055000001, 42.5859960000001], [26.1190300000001, 42.5820145000001], [26.1192525000001, 42.575744], [26.128673, 42.5659545], [26.1251760000001, 42.5652975], [26.1261640000001, 42.5633104990001], [26.1400595000001, 42.5562560000001], [26.1433845, 42.5564565000001], [26.1593090000001, 42.5554710000001], [26.1785990000001, 42.5611855000001], [26.1798015000001, 42.5564800000001], [26.1807435000001, 42.5559280000001], [26.1803150000001, 42.5529670000001], [26.1868160000001, 42.5260050000001], [26.1981995, 42.5037960000001], [26.196599, 42.5045725000001], [26.1842975000001, 42.5022475000001], [26.1818905000001, 42.4915225], [26.1690530000001, 42.4935735], [26.1711750000001, 42.4923734990001], [26.179835, 42.4514770000001], [26.1771580000001, 42.449211], [26.1818385, 42.4444350000001], [26.1848195000001, 42.4435560000001], [26.1933775000001, 42.444831999], [26.19431, 42.452818], [26.200565, 42.4554689990001], [26.2235955, 42.454398], [26.2252255000001, 42.4568540000001], [26.2324395000001, 42.4697810000001], [26.238484, 42.4676420000001], [26.2469545000001, 42.4724395010001], [26.252502, 42.4704405000001], [26.2516865000001, 42.4688185000001], [26.2625625000001, 42.465156001], [26.271785, 42.4611355000001], [26.271865, 42.4523235], [26.2872075000001, 42.4517535000001], [26.2857195, 42.4598635], [26.2966235000001, 42.4578235010001], [26.300818, 42.457659999], [26.3026300000001, 42.4486650000001], [26.3156795, 42.4487570000001], [26.3145075, 42.4508170010001], [26.3180565000001, 42.452572], [26.3246375000001, 42.452548], [26.3254305, 42.4494905], [26.3407100000001, 42.454144999], [26.3338005, 42.4586895], [26.3385730000001, 42.4648095000001], [26.3613825, 42.4622955], [26.3587595000001, 42.4648115], [26.3583485, 42.4775525000001], [26.3619390000001, 42.477762], [26.3694605000001, 42.478353], [26.3757610000001, 42.4879915000001], [26.3739845000001, 42.4906350010001], [26.3781565, 42.4946650000001], [26.404703, 42.4975525], [26.4101435000001, 42.5083290000001], [26.404147, 42.5152189990001], [26.397728, 42.5179820000001], [26.3968370000001, 42.5296490000001], [26.3924555, 42.533579], [26.3915930000001, 42.5396895000001], [26.4127885, 42.548445499], [26.4223175000001, 42.5609400000001], [26.423191, 42.5639975], [26.4185835000001, 42.5652935000001], [26.4262525, 42.574234], [26.4264650000001, 42.5741905], [26.4281800000001, 42.5739105000001], [26.4357835000001, 42.5683695000001], [26.439711, 42.561535], [26.4614790000001, 42.5503600000001], [26.478099, 42.5531835000001], [26.4790800000001, 42.5565965010001], [26.496629, 42.5574540000001], [26.4952200000001, 42.5602215000001], [26.5019055000001, 42.5692835], [26.5171785000001, 42.5736765], [26.5127855000001, 42.5774895000001], [26.5222775, 42.5783985], [26.5212665, 42.5753145], [26.5520525000001, 42.5682165010001], [26.5622375, 42.5736545], [26.5690935000001, 42.5772650000001], [26.5837800000001, 42.5830290000001], [26.577954, 42.5848405], [26.574937, 42.593695], [26.5945115000001, 42.5965580000001], [26.6110335000001, 42.6031760000001], [26.6141145, 42.6240115000001], [26.6273675000001, 42.626789], [26.632685, 42.6259280000001], [26.634549, 42.6220345], [26.6261875000001, 42.6230075], [26.6183845, 42.6136425], [26.6449890000001, 42.611192999], [26.6448780000001, 42.6177625], [26.6569305, 42.631825501], [26.6646735, 42.6374230000001], [26.6725025000001, 42.637432], [26.671857, 42.6663065000001], [26.6687335, 42.676812], [26.6513985, 42.6767650000001], [26.642994, 42.6800305], [26.6371415, 42.689936501], [26.6405905, 42.6934325], [26.6342920000001, 42.6956680010001], [26.6345285, 42.6883385], [26.6299925000001, 42.6864325000001], [26.6183570000001, 42.6884840010001], [26.6080365, 42.6819065010001], [26.5928775, 42.683047001], [26.5804440000001, 42.6796115000001], [26.567598, 42.6858805000001], [26.5657355000001, 42.6942760000001], [26.5588745000001, 42.7001210000001], [26.5528570000001, 42.6991435], [26.5437065, 42.7007325000001], [26.5431330000001, 42.7014150000001] ] ] },
+    "properties": {
+      "ISO": "BG-SLV20",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67338",
+      "NAME_1": "SLV",
+      "TYPE_1": "Област",
+      "ID_2": "67338",
+      "NAME_2": "Сливен",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.1140760000001, 42.7544815000001], [26.1112680000001, 42.7688055], [26.1024165000001, 42.773374], [26.0984515000001, 42.778863501], [26.0970425, 42.7914054990001], [26.1012105, 42.7964185000001], [26.1011035000001, 42.8000010000001], [26.0997205, 42.8049529990001], [26.0911575000001, 42.8079520000001], [26.0968115000001, 42.822184], [26.0846720000001, 42.8159815000001], [26.061311, 42.8100025000001], [26.0495730000001, 42.8104865], [26.0409585, 42.8170650000001], [26.019752, 42.81318], [26.0170795, 42.8086455000001], [26.0057935, 42.797309], [25.989251, 42.7937115], [25.9832915000001, 42.7951350010001], [25.9734570000001, 42.7896170000001], [25.9711535000001, 42.7850260000001], [25.9709015, 42.7850555000001], [25.9636355000001, 42.7821305], [25.95719, 42.789092], [25.936109, 42.7867455000001], [25.9290415, 42.7906150000001], [25.9274415, 42.7927165], [25.8991785000001, 42.789048501], [25.8829680000001, 42.7908320000001], [25.8789175000001, 42.7878435010001], [25.8784975, 42.7823460000001], [25.8681455, 42.780348501], [25.8583025, 42.7829750010001], [25.8565530000001, 42.783623999], [25.8374910000001, 42.7772275], [25.8448165, 42.7732355000001], [25.846121, 42.7693765010001], [25.8362825, 42.7683319990001], [25.8227230000001, 42.7612810000001], [25.8079300000001, 42.763735001], [25.8113730000001, 42.754689], [25.8145400000001, 42.7514935], [25.8189400000001, 42.7437180000001], [25.8178715, 42.7408385000001], [25.819983, 42.7356599990001], [25.8305165, 42.7318635], [25.8361360000001, 42.7265860000001], [25.8367525, 42.711535], [25.842833, 42.6949500000001], [25.84957, 42.6824325000001], [25.8571015000001, 42.6751235], [25.86085, 42.660653], [25.8677635, 42.6567684990001], [25.866024, 42.6489705010001], [25.8561825, 42.6427265], [25.8553005000001, 42.6386155000001], [25.8587805, 42.6285545000001], [25.8659035000001, 42.6111730000001], [25.8733255000001, 42.600264], [25.8842045000001, 42.5975290010001], [25.885093, 42.5948720000001], [25.8878345000001, 42.5961550000001], [25.8904925000001, 42.606928999], [25.8956465000001, 42.6147324990001], [25.9033640000001, 42.6135550000001], [25.912496, 42.620414], [25.9241285000001, 42.6225280000001], [25.9302030000001, 42.6199635], [25.9383395, 42.6218230000001], [25.9442295000001, 42.6180905000001], [25.9504890000001, 42.6146315], [25.97247, 42.6217830000001], [25.9782695000001, 42.6266525], [25.996676, 42.6279720000001], [26.0082005, 42.6249435], [26.003832, 42.6170030010001], [26.005051, 42.6009615], [26.012318, 42.5985430010001], [26.0262520000001, 42.606686499], [26.027921, 42.6030489990001], [26.0393925000001, 42.6004080000001], [26.0509730000001, 42.6031520000001], [26.0532420000001, 42.5945750000001], [26.0576875, 42.591212], [26.0599515000001, 42.5911], [26.062303, 42.5963110000001], [26.0783020000001, 42.5946940000001], [26.08381, 42.5980250000001], [26.0838255, 42.6058600010001], [26.0680985000001, 42.6199575000001], [26.0701360000001, 42.6233645], [26.0695920000001, 42.623833], [26.0742005000001, 42.628229], [26.0717315000001, 42.6385250000001], [26.0739905, 42.642186], [26.0728085000001, 42.6528930000001], [26.0810290000001, 42.657471], [26.0889720000001, 42.656931], [26.0934125000001, 42.6610100010001], [26.0918395000001, 42.665378499], [26.0889315000001, 42.6740955000001], [26.100628, 42.6836974990001], [26.1031995000001, 42.6897465000001], [26.0981195000001, 42.6925665000001], [26.0954840000001, 42.703424], [26.0994180000001, 42.7049995], [26.1218315, 42.7074205000001], [26.1330565000001, 42.6965420000001], [26.1388400000001, 42.695541], [26.1464045000001, 42.7036035], [26.1664565, 42.7196860000001], [26.1643295000001, 42.7218995000001], [26.1467240000001, 42.7224810000001], [26.1435155, 42.729338001], [26.1479570000001, 42.732788], [26.1393415000001, 42.7458850000001], [26.1186455000001, 42.7470155], [26.1136310000001, 42.7513490000001], [26.1140760000001, 42.7544815000001] ] ] },
+    "properties": {
+      "ISO": "BG-SLV24",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67338",
+      "NAME_1": "SLV",
+      "TYPE_1": "Област",
+      "ID_2": "72165",
+      "NAME_2": "Твърдица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.70881, 42.7141675], [26.7079255, 42.7164035000001], [26.7117605, 42.7200605000001], [26.7104360000001, 42.7230650000001], [26.6984405000001, 42.718373], [26.6866620000001, 42.7255005000001], [26.682244, 42.7417485], [26.6868395000001, 42.7439810000001], [26.668323, 42.7443835010001], [26.6665975, 42.7589540000001], [26.6530910000001, 42.7563695000001], [26.6491730000001, 42.7619005000001], [26.6362080000001, 42.7656065], [26.6310800000001, 42.771124], [26.6067885000001, 42.7745599990001], [26.6053085, 42.7815250000001], [26.6095405, 42.7798060000001], [26.6118475000001, 42.7836320000001], [26.6116425000001, 42.7898405], [26.5943350000001, 42.8016270000001], [26.601958, 42.8051345000001], [26.6015565000001, 42.8072135], [26.5880530000001, 42.814829], [26.578655, 42.8148580000001], [26.6031545000001, 42.8280980000001], [26.5911810000001, 42.834148], [26.5990105000001, 42.8398040000001], [26.596891, 42.8527595], [26.5885640000001, 42.8606725000001], [26.5839095000001, 42.8703225], [26.5838945, 42.877968501], [26.5884755000001, 42.8856710000001], [26.5970715, 42.8960395010001], [26.6029080000001, 42.907001], [26.6032435000001, 42.9131395000001], [26.5971040000001, 42.9131945], [26.5912730000001, 42.9165150000001], [26.5899885000001, 42.9201185000001], [26.564627, 42.9276055], [26.556877, 42.9235820000001], [26.5543920000001, 42.928318], [26.5591355, 42.9326545000001], [26.5564285, 42.9359500000001], [26.556226, 42.9431430000001], [26.5568435000001, 42.955138], [26.5610100000001, 42.971072], [26.5678320000001, 42.978105], [26.5777255, 42.9856970000001], [26.580584, 42.9885174990001], [26.578518, 42.991477], [26.5399535, 43.0057935], [26.5356015, 43.0115435000001], [26.5316960000001, 43.0111400000001], [26.5242295, 43.010008], [26.5166775000001, 43.0174685000001], [26.5034410000001, 43.014413501], [26.5071855, 43.013839999], [26.503634, 43.009709001], [26.4909735, 43.0115895010001], [26.489971, 43.015042501], [26.4843255000001, 43.0160175], [26.48112, 43.0104509990001], [26.4867885, 43.0047720000001], [26.4724585000001, 43.0022080000001], [26.470916291, 43.0020071860001], [26.4707290000001, 43.0016640000001], [26.4685495000001, 43.001699], [26.4511945, 43.0001045000001], [26.446959, 42.9958875], [26.4435780000001, 42.9960830000001], [26.4290130000001, 43.0031295000001], [26.4235685, 43.0044755000001], [26.4199625000001, 43.005768], [26.4055500000001, 43.0130375000001], [26.410494, 43.0176825], [26.405488, 43.0242030000001], [26.397027, 43.020791], [26.383499, 43.02786], [26.3815765000001, 43.0289125000001], [26.3723875000001, 43.0200555000001], [26.354908, 43.016599], [26.353119, 43.0206820000001], [26.361836, 43.0297860000001], [26.3602665, 43.034337501], [26.3505465000001, 43.0320715010001], [26.3441505000001, 43.036349], [26.3384085000001, 43.0355459990001], [26.3282185000001, 43.0381205], [26.3181145, 43.0343960000001], [26.3146055, 43.0292194990001], [26.302936, 43.0259975000001], [26.278285, 43.029951], [26.27606, 43.027636], [26.2810775, 43.0177435], [26.2701835, 43.0155140000001], [26.2593380000001, 43.0102755], [26.2465195, 43.0096065000001], [26.2452375, 43.005951], [26.2504060000001, 42.9963855010001], [26.2446555000001, 42.982047499], [26.247238, 42.9804215], [26.2331265, 42.9662165], [26.2222405000001, 42.9661205], [26.1991320000001, 42.9725575000001], [26.1961855000001, 42.972285501], [26.188346, 42.972702], [26.1914805000001, 42.9707435], [26.1850405000001, 42.96615], [26.17841, 42.9515480000001], [26.181831, 42.9476350000001], [26.1911905000001, 42.944757], [26.190371, 42.9349580000001], [26.193587, 42.9306315000001], [26.2095110000001, 42.926857], [26.216932, 42.9215745000001], [26.2094020000001, 42.9130104990001], [26.2083845, 42.907767], [26.2100740000001, 42.905522999], [26.2003960000001, 42.9031190000001], [26.1976645, 42.8941665], [26.207567, 42.872191001], [26.2352530000001, 42.8516270000001], [26.2305925000001, 42.850807499], [26.226978, 42.833628], [26.2563375, 42.83131], [26.27754, 42.835444001], [26.2843205, 42.833761999], [26.2862655000001, 42.8341300000001], [26.2777560000001, 42.8307535010001], [26.2903010000001, 42.8238125], [26.3127240000001, 42.821675499], [26.3239675, 42.8146100010001], [26.3356430000001, 42.8002430000001], [26.3344175, 42.7957555], [26.3249030000001, 42.7866720000001], [26.314059, 42.774572], [26.314314, 42.7710660000001], [26.3480960000001, 42.7688225000001], [26.3547635, 42.7671225], [26.3662425000001, 42.7694020000001], [26.3771135000001, 42.7846445000001], [26.375437, 42.791637], [26.3787855, 42.7943930000001], [26.3907495, 42.794493], [26.4018145000001, 42.7858165000001], [26.4099125000001, 42.7858000000001], [26.4167865000001, 42.7914365], [26.4409755, 42.7986715000001], [26.447373, 42.7942895], [26.4743845, 42.7928725], [26.500641, 42.7938854990001], [26.4995220000001, 42.7863750000001], [26.5064985000001, 42.7825510000001], [26.5136130000001, 42.7685464990001], [26.516757, 42.750053499], [26.5011020000001, 42.743138], [26.4993925000001, 42.7389879990001], [26.500568, 42.731793], [26.511625, 42.716662], [26.5096555000001, 42.710521], [26.51363, 42.7096825], [26.5217025000001, 42.7042950000001], [26.5336400000001, 42.7014170000001], [26.5431330000001, 42.7014150000001], [26.5437065, 42.7007325000001], [26.5528570000001, 42.6991435], [26.5588745000001, 42.7001210000001], [26.5657355000001, 42.6942760000001], [26.567598, 42.6858805000001], [26.5804440000001, 42.6796115000001], [26.5928775, 42.683047001], [26.6080365, 42.6819065010001], [26.6183570000001, 42.6884840010001], [26.6299925000001, 42.6864325000001], [26.6345285, 42.6883385], [26.6342920000001, 42.6956680010001], [26.6405905, 42.6934325], [26.6428365, 42.693412499], [26.651918, 42.691288], [26.6495815000001, 42.694739], [26.668119, 42.6974735000001], [26.7140095, 42.6845615], [26.714457, 42.6872555], [26.7063660000001, 42.694669], [26.7057745000001, 42.700629001], [26.706307, 42.705201], [26.7143980000001, 42.703722], [26.714148, 42.7113265], [26.715039, 42.714341], [26.70881, 42.7141675] ] ] },
+    "properties": {
+      "ISO": "BG-SLV11",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67338",
+      "NAME_1": "SLV",
+      "TYPE_1": "Област",
+      "ID_2": "39030",
+      "NAME_2": "Котел",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.0393925000001, 42.6004080000001], [26.027921, 42.6030489990001], [26.0262520000001, 42.606686499], [26.012318, 42.5985430010001], [26.005051, 42.6009615], [26.003832, 42.6170030010001], [26.0082005, 42.6249435], [25.996676, 42.6279720000001], [25.9782695000001, 42.6266525], [25.97247, 42.6217830000001], [25.9504890000001, 42.6146315], [25.9442295000001, 42.6180905000001], [25.9383395, 42.6218230000001], [25.9302030000001, 42.6199635], [25.9241285000001, 42.6225280000001], [25.912496, 42.620414], [25.9033640000001, 42.6135550000001], [25.8956465000001, 42.6147324990001], [25.8904925000001, 42.606928999], [25.8878345000001, 42.5961550000001], [25.885093, 42.5948720000001], [25.8853055000001, 42.586981], [25.8997155000001, 42.5924695], [25.9068280000001, 42.589363], [25.9117545, 42.582457499], [25.9029235, 42.5829680000001], [25.8953765000001, 42.576988], [25.8992420000001, 42.572387], [25.8957350000001, 42.5690750000001], [25.8892455000001, 42.5616775], [25.8789405000001, 42.557736], [25.8710325000001, 42.5599685], [25.8602605, 42.5552510000001], [25.8447945, 42.5568745], [25.8475790000001, 42.5487570000001], [25.8478695000001, 42.5479], [25.864624, 42.5326405000001], [25.8764505, 42.5214100000001], [25.8824825, 42.5129315], [25.9054195000001, 42.4859105], [25.914383, 42.472559], [25.911095, 42.4648505000001], [25.883017, 42.4579205000001], [25.879471, 42.457008], [25.8829050000001, 42.4472565], [25.8743430000001, 42.4458624990001], [25.879312, 42.4291195000001], [25.8803600000001, 42.4262210000001], [25.8834335, 42.4206995010001], [25.8983295, 42.42001], [25.9016525000001, 42.4114730000001], [25.904839, 42.3876695000001], [25.900691, 42.385405], [25.9097365000001, 42.366399001], [25.926569, 42.356345], [25.9334920000001, 42.3567205000001], [25.9330075, 42.3526945], [25.9319045010001, 42.3448720000001], [25.937734001, 42.3444305], [25.9335760010001, 42.3262810000001], [25.9304775000001, 42.322276], [25.9473195000001, 42.3202434990001], [25.9858620000001, 42.3194645], [25.98605, 42.3076955000001], [25.9912255, 42.3069625000001], [25.9880825000001, 42.2921555], [25.9916915000001, 42.283285], [26.0092165, 42.2812585], [26.024231, 42.2841070000001], [26.0258215000001, 42.2876870000001], [26.0498695000001, 42.285245499], [26.0550175000001, 42.27027], [26.0590695000001, 42.267948501], [26.0817865000001, 42.2667320000001], [26.0940200000001, 42.2620650000001], [26.0894010000001, 42.2577910000001], [26.1055455000001, 42.2479080000001], [26.1230245, 42.252077], [26.1245835, 42.2457535], [26.1286125, 42.2448475], [26.1346790000001, 42.2476854990001], [26.1372925000001, 42.2659605000001], [26.1446795, 42.26489], [26.1446325000001, 42.2604815], [26.1660700000001, 42.264512], [26.175732, 42.2614610000001], [26.1895305, 42.2854305000001], [26.2042985, 42.2854075010001], [26.20446, 42.3032860000001], [26.2133930000001, 42.3074179990001], [26.2158490000001, 42.3137350000001], [26.2155105000001, 42.317668], [26.2254365000001, 42.3170870000001], [26.2249655000001, 42.3274185000001], [26.2310755, 42.3444270000001], [26.2509450000001, 42.361282999], [26.2599070000001, 42.3662810000001], [26.2570565, 42.3693290000001], [26.2547055000001, 42.3696875010001], [26.231906, 42.3800425000001], [26.2189355, 42.378631], [26.2190600000001, 42.3662620000001], [26.1939905, 42.3595359990001], [26.1861200000001, 42.3613270000001], [26.1874585, 42.3762325000001], [26.1852235000001, 42.394409001], [26.1810360000001, 42.4027005], [26.1853420000001, 42.4031005000001], [26.1790635, 42.415101001], [26.185706, 42.415436501], [26.192639, 42.4113565000001], [26.1918745, 42.4082530000001], [26.21198, 42.4075915000001], [26.224816, 42.4016990010001], [26.2352535000001, 42.407227], [26.2367305000001, 42.4107264990001], [26.2395520000001, 42.4149780010001], [26.2367815000001, 42.4273385000001], [26.2323545, 42.4543445], [26.2252255000001, 42.4568540000001], [26.2235955, 42.454398], [26.200565, 42.4554689990001], [26.19431, 42.452818], [26.1933775000001, 42.444831999], [26.1848195000001, 42.4435560000001], [26.1818385, 42.4444350000001], [26.1771580000001, 42.449211], [26.179835, 42.4514770000001], [26.1711750000001, 42.4923734990001], [26.1690530000001, 42.4935735], [26.1818905000001, 42.4915225], [26.1842975000001, 42.5022475000001], [26.196599, 42.5045725000001], [26.1981995, 42.5037960000001], [26.1868160000001, 42.5260050000001], [26.1803150000001, 42.5529670000001], [26.1807435000001, 42.5559280000001], [26.1798015000001, 42.5564800000001], [26.1785990000001, 42.5611855000001], [26.1593090000001, 42.5554710000001], [26.1433845, 42.5564565000001], [26.1400595000001, 42.5562560000001], [26.1261640000001, 42.5633104990001], [26.1251760000001, 42.5652975], [26.128673, 42.5659545], [26.1192525000001, 42.575744], [26.1190300000001, 42.5820145000001], [26.1215055000001, 42.5859960000001], [26.1093195, 42.5925435], [26.0924745, 42.59401], [26.090722, 42.5971030000001], [26.08381, 42.5980250000001], [26.0783020000001, 42.5946940000001], [26.062303, 42.5963110000001], [26.0599515000001, 42.5911], [26.0576875, 42.591212], [26.0532420000001, 42.5945750000001], [26.0509730000001, 42.6031520000001], [26.0393925000001, 42.6004080000001] ] ] },
+    "properties": {
+      "ISO": "BG-SLV16",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67338",
+      "NAME_1": "SLV",
+      "TYPE_1": "Област",
+      "ID_2": "51809",
+      "NAME_2": "Нова Загора",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.6407590000001, 43.8602095000001], [26.640838, 43.8602545], [26.63985, 43.8701555000001], [26.6209490000001, 43.8739435000001], [26.6201495, 43.8771280010001], [26.5865495, 43.8831925010001], [26.584173338, 43.888797976], [26.5840610000001, 43.8890630010001], [26.5861420000001, 43.889439501], [26.5975935000001, 43.8905970000001], [26.59623, 43.9045075000001], [26.5976975, 43.9110850000001], [26.5989660000001, 43.913255001], [26.580651, 43.921099], [26.573539, 43.928816], [26.5742030000001, 43.932798001], [26.5491015000001, 43.933409001], [26.5493575, 43.935867499], [26.5463945000001, 43.9358510000001], [26.5442645000001, 43.9286979990001], [26.5205330000001, 43.9169820000001], [26.5099300000001, 43.916523], [26.5086880000001, 43.9250890000001], [26.4949505000001, 43.923251001], [26.4772980000001, 43.940319], [26.4742475, 43.9513479990001], [26.47308, 43.950748], [26.460562, 43.9432845000001], [26.4538975, 43.951044999], [26.435642, 43.9488180000001], [26.4309935000001, 43.9516760010001], [26.416638, 43.9465530000001], [26.4068875, 43.9465070000001], [26.3892225000001, 43.9481520000001], [26.3752270000001, 43.946135999], [26.3707005000001, 43.939399], [26.3752035000001, 43.934197], [26.3686615, 43.9336029990001], [26.3731060000001, 43.8913959990001], [26.376922, 43.8893820000001], [26.3721575000001, 43.879447], [26.3727460000001, 43.8749260000001], [26.340967, 43.8662385000001], [26.3209625000001, 43.867238], [26.318298, 43.8636745000001], [26.3391655, 43.8639910000001], [26.3339495000001, 43.8613675], [26.3535015, 43.835135], [26.3569360000001, 43.8328270000001], [26.3470265, 43.816312], [26.3565560000001, 43.8023920000001], [26.358825, 43.7893940000001], [26.3515145000001, 43.777648], [26.3690140000001, 43.77324], [26.3899020000001, 43.7846930000001], [26.4119155000001, 43.781662], [26.420169, 43.7891950000001], [26.4253695, 43.7889065000001], [26.4312640000001, 43.785582], [26.4382410000001, 43.7883400000001], [26.451576, 43.780085], [26.4587770000001, 43.7665460000001], [26.4566885, 43.7589865], [26.4536235, 43.743341501], [26.4484725, 43.744397], [26.4274265, 43.7373425000001], [26.4261625, 43.7279135000001], [26.4296625000001, 43.720201], [26.4261795, 43.711216], [26.4137240000001, 43.7009645000001], [26.4100490000001, 43.6931665000001], [26.4187485000001, 43.693422501], [26.4187375000001, 43.6858094990001], [26.4164930000001, 43.6851500000001], [26.4455145000001, 43.6683585000001], [26.4494920000001, 43.6700020000001], [26.4443975, 43.6733179990001], [26.4489425, 43.6788415], [26.4608620000001, 43.675850499], [26.482873, 43.687054501], [26.4834845, 43.6906225010001], [26.4872235, 43.689266], [26.5050595000001, 43.6986415000001], [26.5345515000001, 43.7177500000001], [26.537539, 43.722786], [26.5326265, 43.731927999], [26.5267645000001, 43.7350825], [26.5278880000001, 43.7418040000001], [26.533195, 43.743685], [26.542742, 43.741792], [26.5512185000001, 43.7508155], [26.5483245, 43.7558110000001], [26.540489, 43.757189], [26.5427310000001, 43.764693499], [26.5588110000001, 43.765702], [26.5592950000001, 43.7794035000001], [26.554558, 43.781303], [26.562441, 43.7931915], [26.5662455, 43.795821499], [26.575045, 43.7880750000001], [26.5883260000001, 43.793283], [26.5866825000001, 43.7977609990001], [26.6026195000001, 43.7925730000001], [26.6155495, 43.7851170000001], [26.6311135, 43.7809185], [26.6350475, 43.7826455000001], [26.6215300000001, 43.79166], [26.6182235000001, 43.7996130000001], [26.6086815, 43.8038665], [26.6075915000001, 43.8099045000001], [26.6152440000001, 43.817745501], [26.6169350000001, 43.8355245000001], [26.6291945, 43.8492870000001], [26.6395930000001, 43.852782], [26.6407590000001, 43.8602095000001] ] ] },
+    "properties": {
+      "ISO": "BG-RAZ16",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "61710",
+      "NAME_1": "RAZ",
+      "TYPE_1": "Област",
+      "ID_2": "40422",
+      "NAME_2": "Кубрат",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.315613, 43.6177000000001], [26.317662, 43.6184885000001], [26.3034365, 43.6274685010001], [26.293666, 43.6301645], [26.2812925000001, 43.6456450000001], [26.28333, 43.6565125000001], [26.2841935000001, 43.6586295000001], [26.2865975, 43.657207499], [26.2797745, 43.6636385], [26.2724275, 43.6642985], [26.2664, 43.6605145010001], [26.274656, 43.657343999], [26.2748520000001, 43.6546705000001], [26.271167, 43.653603], [26.2596590000001, 43.6537720000001], [26.2425865000001, 43.6627365000001], [26.2411985000001, 43.6673099990001], [26.2409415000001, 43.6703205000001], [26.2340390000001, 43.671256], [26.2244765, 43.6637180000001], [26.231676, 43.6609435], [26.2272585000001, 43.6581450000001], [26.2181395000001, 43.661437], [26.2179505, 43.6584465], [26.224547, 43.6486005], [26.2236560000001, 43.645988], [26.1977365000001, 43.6357965010001], [26.1631455, 43.635791501], [26.1617735, 43.6337165], [26.1649590000001, 43.6309965], [26.1595100000001, 43.599922501], [26.1607625, 43.5853075000001], [26.1533285, 43.5654190000001], [26.153629, 43.5587889990001], [26.1564670000001, 43.5544810000001], [26.1680945000001, 43.5492800000001], [26.183275, 43.5376985], [26.184155, 43.523486], [26.1889780000001, 43.5173935], [26.200412, 43.5230655], [26.2000725, 43.525625001], [26.213014, 43.5231485], [26.2223520000001, 43.5222535], [26.2193055000001, 43.5356895000001], [26.2219715000001, 43.5470305000001], [26.2305240000001, 43.55114], [26.249584, 43.554296499], [26.254081, 43.5539209990001], [26.2551145, 43.5549225], [26.2676815, 43.5497140000001], [26.270207, 43.541545], [26.2660125, 43.5421575], [26.2683625, 43.5385755], [26.272336, 43.5367910000001], [26.2823005000001, 43.5323250000001], [26.2911025000001, 43.528616], [26.2916260000001, 43.5277820000001], [26.3100670000001, 43.5238065], [26.3143505, 43.5269480000001], [26.3129125, 43.5346335], [26.3350035, 43.5493965000001], [26.3320315, 43.5525075], [26.3368435, 43.5704005000001], [26.3216785000001, 43.5980165], [26.3257475, 43.6006115000001], [26.3185895, 43.6130035], [26.315613, 43.6177000000001] ] ] },
+    "properties": {
+      "ISO": "BG-RAZ36",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "61710",
+      "NAME_1": "RAZ",
+      "TYPE_1": "Област",
+      "ID_2": "77308",
+      "NAME_2": "Цар Калоян",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.525331, 43.4233885], [26.5235445000001, 43.4241285000001], [26.509378, 43.4249555000001], [26.5063735, 43.4222995000001], [26.4815195, 43.424337], [26.4771170000001, 43.4216070000001], [26.4952410000001, 43.410014], [26.5012120000001, 43.3928775], [26.5093900000001, 43.3872405000001], [26.5089, 43.38356], [26.4717920000001, 43.386627], [26.46894, 43.3838945000001], [26.4802915000001, 43.369877], [26.4750330000001, 43.365837001], [26.4773065000001, 43.3618720000001], [26.4874560000001, 43.3619675], [26.4865495, 43.349276], [26.4875500000001, 43.3472860000001], [26.5282045000001, 43.345259501], [26.5380520000001, 43.3402075000001], [26.542514, 43.3410135], [26.5457745000001, 43.345263], [26.5454515000001, 43.347715501], [26.562017, 43.3464880010001], [26.5997035, 43.3355550000001], [26.6023710000001, 43.3340020000001], [26.6041050000001, 43.329276], [26.6291475, 43.3301210000001], [26.64655, 43.3264120000001], [26.6453025000001, 43.3396855], [26.6530325000001, 43.3491195010001], [26.6513170000001, 43.3597075010001], [26.6614725000001, 43.367671], [26.6724655, 43.373866499], [26.680886, 43.3815895000001], [26.6852425000001, 43.392024], [26.680642, 43.403492], [26.6822135, 43.4038340010001], [26.6905190000001, 43.402605001], [26.6959045, 43.401737], [26.700414, 43.4077100000001], [26.7296180000001, 43.4079445], [26.7304395, 43.4101035], [26.7280685000001, 43.4104760000001], [26.7285265, 43.415128], [26.7350145, 43.4173040000001], [26.7433, 43.4329905000001], [26.745418, 43.4363494990001], [26.7443700000001, 43.4388730000001], [26.7390725000001, 43.4409859990001], [26.7360965, 43.438728], [26.719595, 43.447342], [26.7156115, 43.4550085000001], [26.7183660000001, 43.4572620000001], [26.7111825000001, 43.4852475000001], [26.7034995000001, 43.4891625000001], [26.698905, 43.4932385000001], [26.6994570000001, 43.4867390000001], [26.6965335, 43.4837240000001], [26.6916815000001, 43.4861240000001], [26.6774730000001, 43.4876560000001], [26.6694175000001, 43.4876465], [26.656302, 43.4929835], [26.6510485000001, 43.493814], [26.632817, 43.492289], [26.6352555, 43.4825495000001], [26.6051285, 43.4812385000001], [26.600205782, 43.4795837730001], [26.599607, 43.4793825], [26.6009715000001, 43.4780410000001], [26.59698, 43.4740785000001], [26.5948155, 43.4694700000001], [26.6056255, 43.4600935], [26.6038080000001, 43.4583270000001], [26.5953475000001, 43.464006001], [26.5760205, 43.4607620000001], [26.572172, 43.456826499], [26.5374805000001, 43.464408001], [26.523944, 43.4615430000001], [26.5304725, 43.4516160010001], [26.5317995, 43.448920001], [26.5346345, 43.443448], [26.5293825000001, 43.4282000000001], [26.525331, 43.4233885] ] ] },
+    "properties": {
+      "ISO": "BG-RAZ17",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "61710",
+      "NAME_1": "RAZ",
+      "TYPE_1": "Област",
+      "ID_2": "44166",
+      "NAME_2": "Лозница",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.358643, 43.496811], [26.3704265000001, 43.4962645000001], [26.3711355, 43.490847499], [26.3753605000001, 43.4883090010001], [26.3773225, 43.4853800000001], [26.3725925000001, 43.474702], [26.3697230000001, 43.469572], [26.3605105, 43.462637], [26.3685630000001, 43.4508905000001], [26.360555, 43.4457675000001], [26.3677415000001, 43.4377260000001], [26.3777190000001, 43.433499499], [26.3864985000001, 43.4399710000001], [26.3901225000001, 43.4362310000001], [26.4024245000001, 43.436116], [26.4161355000001, 43.4430345000001], [26.430686, 43.4463765], [26.437503, 43.4476440010001], [26.4624690000001, 43.4478], [26.4639250000001, 43.4450560000001], [26.4682605, 43.4441850000001], [26.4716550000001, 43.443183], [26.473626, 43.4373575010001], [26.4653675000001, 43.4392415], [26.4635105, 43.429306001], [26.46599, 43.4229065000001], [26.4771170000001, 43.4216070000001], [26.4815195, 43.424337], [26.5063735, 43.4222995000001], [26.509378, 43.4249555000001], [26.5235445000001, 43.4241285000001], [26.525331, 43.4233885], [26.5293825000001, 43.4282000000001], [26.5346345, 43.443448], [26.5317995, 43.448920001], [26.5304725, 43.4516160010001], [26.523944, 43.4615430000001], [26.5374805000001, 43.464408001], [26.572172, 43.456826499], [26.5760205, 43.4607620000001], [26.5953475000001, 43.464006001], [26.6038080000001, 43.4583270000001], [26.6056255, 43.4600935], [26.5948155, 43.4694700000001], [26.59698, 43.4740785000001], [26.6009715000001, 43.4780410000001], [26.599607, 43.4793825], [26.600205782, 43.4795837730001], [26.6051285, 43.4812385000001], [26.6352555, 43.4825495000001], [26.632817, 43.492289], [26.6510485000001, 43.493814], [26.656302, 43.4929835], [26.6565545, 43.4992825], [26.6643740000001, 43.5192145], [26.6853140000001, 43.5274635000001], [26.6874515000001, 43.5293015], [26.6922740000001, 43.5345145000001], [26.6956305000001, 43.5384270010001], [26.694391, 43.5445510000001], [26.6907680000001, 43.548147499], [26.66812, 43.5556385000001], [26.6777425000001, 43.5713470000001], [26.6806225, 43.5899935], [26.6854765, 43.5941310000001], [26.6891850000001, 43.5972565000001], [26.6884025000001, 43.5993430010001], [26.6836460000001, 43.608456], [26.6731765000001, 43.6236975], [26.6579100000001, 43.6313105], [26.664121, 43.6409275], [26.6632300000001, 43.6412715000001], [26.6665025, 43.652365], [26.6724590000001, 43.6583924990001], [26.670535, 43.661795001], [26.6465930000001, 43.6679500000001], [26.630429, 43.6645354990001], [26.6234905000001, 43.6577015], [26.6023770000001, 43.662118999], [26.6034940000001, 43.6635449990001], [26.5970045, 43.6702890010001], [26.583422, 43.6711269990001], [26.5921660000001, 43.6870010000001], [26.58628, 43.6880605010001], [26.5799245000001, 43.687893], [26.5692550000001, 43.6925400000001], [26.5675775, 43.697139], [26.5726935000001, 43.7102820000001], [26.5787415, 43.713599501], [26.5698975, 43.7121355], [26.5484185, 43.717905], [26.5406605000001, 43.723213], [26.5417400000001, 43.724478], [26.537539, 43.722786], [26.5345515000001, 43.7177500000001], [26.5050595000001, 43.6986415000001], [26.4872235, 43.689266], [26.4834845, 43.6906225010001], [26.482873, 43.687054501], [26.4608620000001, 43.675850499], [26.4489425, 43.6788415], [26.4443975, 43.6733179990001], [26.4494920000001, 43.6700020000001], [26.4455145000001, 43.6683585000001], [26.4423715, 43.6554755000001], [26.433956, 43.6517155000001], [26.4282775, 43.6410125000001], [26.4168935000001, 43.6374080000001], [26.40795, 43.6276285000001], [26.4066235, 43.6311515], [26.3886955, 43.6344290000001], [26.3713690000001, 43.6340515000001], [26.3691420000001, 43.6315000000001], [26.3619215000001, 43.6379925000001], [26.3505660000001, 43.6388155000001], [26.3476670000001, 43.633221], [26.317662, 43.6184885000001], [26.315613, 43.6177000000001], [26.3185895, 43.6130035], [26.3257475, 43.6006115000001], [26.3216785000001, 43.5980165], [26.3368435, 43.5704005000001], [26.3320315, 43.5525075], [26.3350035, 43.5493965000001], [26.3129125, 43.5346335], [26.3143505, 43.5269480000001], [26.3100670000001, 43.5238065], [26.3193005000001, 43.522363], [26.3332465, 43.5139854990001], [26.3318465, 43.511001499], [26.338511, 43.5047689990001], [26.3447605000001, 43.5049265000001], [26.3436090000001, 43.500611], [26.3480250000001, 43.4997950000001], [26.358643, 43.496811] ] ] },
+    "properties": {
+      "ISO": "BG-RAZ26",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "61710",
+      "NAME_1": "RAZ",
+      "TYPE_1": "Област",
+      "ID_2": "61710",
+      "NAME_2": "Разград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.0021005, 43.7114135], [26.9942915, 43.711422499], [26.9864185000001, 43.7115885000001], [26.9763255, 43.7236070000001], [26.974077, 43.7335335010001], [26.9713360000001, 43.7348385000001], [26.9702550000001, 43.7419375000001], [26.9634990000001, 43.7478015], [26.9402460000001, 43.7582455000001], [26.9365280000001, 43.7595175000001], [26.938975, 43.7634035], [26.916214, 43.7611430000001], [26.9164535, 43.7670409990001], [26.9163560000001, 43.7671985000001], [26.9136405, 43.7742375], [26.905558, 43.7828295], [26.9028265000001, 43.7950230000001], [26.8987295000001, 43.797697999], [26.876583, 43.8021830000001], [26.859748, 43.804671001], [26.8582545, 43.8072125], [26.8573835, 43.8226575], [26.8520515000001, 43.8230380000001], [26.841525, 43.830524], [26.8374645000001, 43.8399000000001], [26.8404140000001, 43.8435870000001], [26.8411400000001, 43.8443805000001], [26.8342815, 43.848426499], [26.823363, 43.8369210000001], [26.8151800000001, 43.8242450000001], [26.807988, 43.8219595], [26.796213, 43.8312625], [26.7900095000001, 43.8252325010001], [26.7923895000001, 43.8182855000001], [26.7775445, 43.8213910000001], [26.7754355000001, 43.8142695000001], [26.784528, 43.815569999], [26.779926, 43.8121130000001], [26.779842, 43.8055400000001], [26.7901630000001, 43.7908335000001], [26.800243, 43.7908295], [26.799672, 43.7875100000001], [26.7789185, 43.7868100000001], [26.779006, 43.7842395000001], [26.7700590000001, 43.7764290000001], [26.757644, 43.7715595000001], [26.7402960000001, 43.772223501], [26.7340770000001, 43.7523335000001], [26.7476105000001, 43.7433375000001], [26.7368335, 43.7450420000001], [26.7285395000001, 43.7437845000001], [26.7172135000001, 43.7410065], [26.7096255000001, 43.7352745000001], [26.7071120000001, 43.729190499], [26.700455, 43.727201], [26.7050795000001, 43.7234720000001], [26.7087550000001, 43.7150760000001], [26.7193730000001, 43.7078005000001], [26.7133785, 43.691849], [26.7103035000001, 43.6876810000001], [26.7104440000001, 43.678844], [26.70354, 43.6715825000001], [26.692553, 43.6582815], [26.6860290000001, 43.656238], [26.6771045, 43.6563665], [26.670535, 43.661795001], [26.6724590000001, 43.6583924990001], [26.6665025, 43.652365], [26.6632300000001, 43.6412715000001], [26.664121, 43.6409275], [26.6579100000001, 43.6313105], [26.6731765000001, 43.6236975], [26.6836460000001, 43.608456], [26.6884025000001, 43.5993430010001], [26.6891850000001, 43.5972565000001], [26.6854765, 43.5941310000001], [26.7052635000001, 43.6030210000001], [26.7135835, 43.599436], [26.7196050000001, 43.6058395010001], [26.7309295000001, 43.608528], [26.734158, 43.6071845000001], [26.741609, 43.6075255000001], [26.7474570000001, 43.616205], [26.7708985, 43.6159710000001], [26.7741935, 43.6165940000001], [26.7883805000001, 43.621947], [26.7946400000001, 43.6181365], [26.8027855, 43.6214600000001], [26.817259, 43.6328065000001], [26.8179515, 43.6383900000001], [26.8121640000001, 43.6483889990001], [26.811743, 43.653106], [26.8125735, 43.6554439990001], [26.8352150000001, 43.659765], [26.847858, 43.6598050000001], [26.8709160000001, 43.6606345000001], [26.8808260000001, 43.6569855010001], [26.8805600000001, 43.6537345], [26.8956620000001, 43.6541995010001], [26.899505, 43.654167], [26.929083, 43.6492145], [26.9317575000001, 43.644052], [26.9383955000001, 43.6318420000001], [26.9439555000001, 43.63275], [26.9645235, 43.6246090000001], [26.9638755, 43.6277020000001], [26.983105, 43.6416130000001], [26.9849935, 43.6486320000001], [26.9892360000001, 43.6525360000001], [27.0004640000001, 43.6499025000001], [27.0038040000001, 43.653261], [27.0289785000001, 43.6511505], [27.0352505000001, 43.6574605000001], [27.0268985000001, 43.6595790010001], [27.0278720000001, 43.6669125000001], [27.0256620000001, 43.6769839990001], [27.0149715000001, 43.6814610000001], [27.0019565000001, 43.6916815000001], [27.0018885000001, 43.696867501], [27.0021005, 43.7114135] ] ] },
+    "properties": {
+      "ISO": "BG-RAZ14",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "61710",
+      "NAME_1": "RAZ",
+      "TYPE_1": "Област",
+      "ID_2": "32874",
+      "NAME_2": "Исперих",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.771531, 43.8140960000001], [26.776443, 43.8188455000001], [26.7525400000001, 43.821763], [26.752573, 43.8298935], [26.7522835, 43.8419984990001], [26.7456980000001, 43.8478185000001], [26.728084, 43.848957], [26.7288585000001, 43.8547800000001], [26.7354565000001, 43.8576180000001], [26.7314460000001, 43.8590135000001], [26.7237265000001, 43.8584725000001], [26.723824, 43.8395199990001], [26.7212015000001, 43.8412965000001], [26.7063775, 43.8478860000001], [26.7017710000001, 43.848505], [26.6990260000001, 43.8455349990001], [26.6796385000001, 43.8505200000001], [26.6770290000001, 43.8551855000001], [26.6635460000001, 43.8615750000001], [26.665438, 43.8635705], [26.6512605, 43.870101], [26.6469000000001, 43.8690025000001], [26.6480735000001, 43.8610650000001], [26.640838, 43.8602545], [26.6407590000001, 43.8602095000001], [26.6395930000001, 43.852782], [26.6291945, 43.8492870000001], [26.6169350000001, 43.8355245000001], [26.6152440000001, 43.817745501], [26.6075915000001, 43.8099045000001], [26.6086815, 43.8038665], [26.6182235000001, 43.7996130000001], [26.6215300000001, 43.79166], [26.6350475, 43.7826455000001], [26.6311135, 43.7809185], [26.6155495, 43.7851170000001], [26.6026195000001, 43.7925730000001], [26.5866825000001, 43.7977609990001], [26.5883260000001, 43.793283], [26.575045, 43.7880750000001], [26.5662455, 43.795821499], [26.562441, 43.7931915], [26.554558, 43.781303], [26.5592950000001, 43.7794035000001], [26.5588110000001, 43.765702], [26.5427310000001, 43.764693499], [26.540489, 43.757189], [26.5483245, 43.7558110000001], [26.5512185000001, 43.7508155], [26.542742, 43.741792], [26.533195, 43.743685], [26.5278880000001, 43.7418040000001], [26.5267645000001, 43.7350825], [26.5326265, 43.731927999], [26.537539, 43.722786], [26.5417400000001, 43.724478], [26.5406605000001, 43.723213], [26.5484185, 43.717905], [26.5698975, 43.7121355], [26.5787415, 43.713599501], [26.5726935000001, 43.7102820000001], [26.5675775, 43.697139], [26.5692550000001, 43.6925400000001], [26.5799245000001, 43.687893], [26.58628, 43.6880605010001], [26.5921660000001, 43.6870010000001], [26.583422, 43.6711269990001], [26.5970045, 43.6702890010001], [26.6034940000001, 43.6635449990001], [26.6023770000001, 43.662118999], [26.6234905000001, 43.6577015], [26.630429, 43.6645354990001], [26.6465930000001, 43.6679500000001], [26.670535, 43.661795001], [26.6771045, 43.6563665], [26.6860290000001, 43.656238], [26.692553, 43.6582815], [26.70354, 43.6715825000001], [26.7104440000001, 43.678844], [26.7103035000001, 43.6876810000001], [26.7133785, 43.691849], [26.7193730000001, 43.7078005000001], [26.7087550000001, 43.7150760000001], [26.7050795000001, 43.7234720000001], [26.700455, 43.727201], [26.7071120000001, 43.729190499], [26.7096255000001, 43.7352745000001], [26.7172135000001, 43.7410065], [26.7285395000001, 43.7437845000001], [26.7368335, 43.7450420000001], [26.7476105000001, 43.7433375000001], [26.7340770000001, 43.7523335000001], [26.7402960000001, 43.772223501], [26.757644, 43.7715595000001], [26.7700590000001, 43.7764290000001], [26.779006, 43.7842395000001], [26.7789185, 43.7868100000001], [26.799672, 43.7875100000001], [26.800243, 43.7908295], [26.7901630000001, 43.7908335000001], [26.779842, 43.8055400000001], [26.779926, 43.8121130000001], [26.771531, 43.8140960000001] ] ] },
+    "properties": {
+      "ISO": "BG-RAZ11",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "61710",
+      "NAME_1": "RAZ",
+      "TYPE_1": "Област",
+      "ID_2": "30065",
+      "NAME_2": "Завет",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.8782840000001, 43.5987890000001], [26.8940315, 43.6106770000001], [26.9019615, 43.6069200000001], [26.905195, 43.5919985], [26.923726, 43.5933410010001], [26.9299685, 43.597792499], [26.9575645, 43.6061350000001], [26.9645235, 43.6246090000001], [26.9439555000001, 43.63275], [26.9383955000001, 43.6318420000001], [26.9317575000001, 43.644052], [26.929083, 43.6492145], [26.899505, 43.654167], [26.8956620000001, 43.6541995010001], [26.8805600000001, 43.6537345], [26.8808260000001, 43.6569855010001], [26.8709160000001, 43.6606345000001], [26.847858, 43.6598050000001], [26.8352150000001, 43.659765], [26.8125735, 43.6554439990001], [26.811743, 43.653106], [26.8121640000001, 43.6483889990001], [26.8179515, 43.6383900000001], [26.817259, 43.6328065000001], [26.8027855, 43.6214600000001], [26.7946400000001, 43.6181365], [26.7883805000001, 43.621947], [26.7741935, 43.6165940000001], [26.7708985, 43.6159710000001], [26.7474570000001, 43.616205], [26.741609, 43.6075255000001], [26.734158, 43.6071845000001], [26.7309295000001, 43.608528], [26.7196050000001, 43.6058395010001], [26.7135835, 43.599436], [26.7052635000001, 43.6030210000001], [26.6854765, 43.5941310000001], [26.6806225, 43.5899935], [26.6777425000001, 43.5713470000001], [26.66812, 43.5556385000001], [26.6907680000001, 43.548147499], [26.694391, 43.5445510000001], [26.6956305000001, 43.5384270010001], [26.6922740000001, 43.5345145000001], [26.6874515000001, 43.5293015], [26.6853140000001, 43.5274635000001], [26.6643740000001, 43.5192145], [26.6565545, 43.4992825], [26.656302, 43.4929835], [26.6694175000001, 43.4876465], [26.6774730000001, 43.4876560000001], [26.6916815000001, 43.4861240000001], [26.6965335, 43.4837240000001], [26.6994570000001, 43.4867390000001], [26.698905, 43.4932385000001], [26.7034995000001, 43.4891625000001], [26.7111825000001, 43.4852475000001], [26.7183660000001, 43.4572620000001], [26.7258570000001, 43.458239], [26.7331370000001, 43.4590125], [26.740711, 43.4577155000001], [26.7602250000001, 43.463156], [26.7699365, 43.467156], [26.759982, 43.4784945000001], [26.772228, 43.489203], [26.782411, 43.4904655], [26.7898775, 43.4851265], [26.8006770000001, 43.4888825000001], [26.80728, 43.4875930000001], [26.8117565000001, 43.494403], [26.825797, 43.5016555], [26.8242020000001, 43.5044220010001], [26.824579, 43.5077860010001], [26.817238, 43.5224964990001], [26.8092790000001, 43.5291375], [26.8058525000001, 43.5330035010001], [26.8012420000001, 43.5272465], [26.7956125000001, 43.5273804990001], [26.8085360000001, 43.546654], [26.8006775000001, 43.5523580010001], [26.8161155, 43.5613295000001], [26.827999, 43.5648375010001], [26.82816, 43.559156], [26.8518530000001, 43.563858], [26.862647, 43.5681935000001], [26.8697490000001, 43.5713170000001], [26.8635125000001, 43.579076], [26.8730815000001, 43.5858265], [26.8639885000001, 43.5926095], [26.8782840000001, 43.5987890000001] ] ] },
+    "properties": {
+      "ISO": "BG-RAZ29",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "61710",
+      "NAME_1": "RAZ",
+      "TYPE_1": "Област",
+      "ID_2": "65276",
+      "NAME_2": "Самуил",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.7987615960001, 42.847057432], [22.8022770000001, 42.8470205], [22.8170890000001, 42.8351969990001], [22.8290605, 42.8495], [22.8355110000001, 42.851905], [22.8534740000001, 42.8580595], [22.8669985, 42.852219501], [22.8714600000001, 42.85013], [22.8777995, 42.8511780000001], [22.8755340000001, 42.8536040000001], [22.8781295000001, 42.8627145], [22.8851, 42.8697725000001], [22.8912970000001, 42.8701350000001], [22.9015575, 42.8729480000001], [22.9102130000001, 42.8791415000001], [22.905332, 42.8816005], [22.9042385000001, 42.8856445000001], [22.9110315, 42.8878055000001], [22.9120070000001, 42.8924815010001], [22.917429, 42.892252], [22.9472485000001, 42.8855615000001], [22.9470170000001, 42.889398], [22.9549450000001, 42.9022250000001], [22.9660135, 42.9083155000001], [22.9713485, 42.9077300010001], [22.9806580000001, 42.9045140000001], [23.0079625000001, 42.9043634990001], [23.0247890000001, 42.8968385000001], [23.0248080000001, 42.8971040000001], [23.0395545000001, 42.9074745], [23.0490785000001, 42.9105555], [23.0606075000001, 42.9105660000001], [23.0723385000001, 42.9092095], [23.0789290000001, 42.9129695], [23.1130675000001, 42.9139960000001], [23.1159300000001, 42.918037], [23.1157225000001, 42.9247920010001], [23.120028, 42.928017501], [23.1289455, 42.9450440000001], [23.1303645, 42.9489095000001], [23.1291675000001, 42.9586785000001], [23.118796, 42.9683435000001], [23.118345, 42.9724115000001], [23.1169360000001, 42.9747630000001], [23.1038310000001, 42.970513], [23.098419, 42.9658219990001], [23.0801545000001, 42.9670695], [23.0791830000001, 42.9676890000001], [23.0732435, 42.9618080000001], [23.0677745, 42.9625885], [23.064646, 42.9594645000001], [23.0551110000001, 42.96687], [23.045869, 42.9638675], [23.031169, 42.9602695], [23.0179170000001, 42.9589215], [23.009394, 42.9581065], [22.9996935, 42.9577765000001], [22.9889785, 42.9558885000001], [22.9783610000001, 42.9580500000001], [22.9596480000001, 42.9594875000001], [22.9634985000001, 42.9667815], [22.9505595000001, 42.9679445], [22.9513785, 42.9748025000001], [22.953784, 42.9824505010001], [22.9528265000001, 42.9860810000001], [22.934696, 43.0026975000001], [22.9354375, 43.005366], [22.9325270000001, 43.009809499], [22.9389565000001, 43.0198385], [22.9083955, 43.0328925000001], [22.9000610000001, 43.0327829990001], [22.8970350000001, 43.035628499], [22.8802045, 43.0286775010001], [22.8625695000001, 43.021395], [22.8492840000001, 43.004712001], [22.8010650000001, 42.9867420000001], [22.783864, 42.981613], [22.7826575, 42.963738], [22.785154, 42.958464], [22.7753240000001, 42.949854499], [22.7685290000001, 42.947846], [22.7715305, 42.9409590000001], [22.7799545, 42.9318025000001], [22.777819, 42.9255835000001], [22.7738775, 42.918568501], [22.760325, 42.911128999], [22.7582385000001, 42.901368001], [22.7531685000001, 42.899279499], [22.7543190000001, 42.894595], [22.7483995000001, 42.8897875000001], [22.7515770000001, 42.8867430000001], [22.7554885000001, 42.8844080000001], [22.770583, 42.882086499], [22.7713600000001, 42.869708501], [22.7682160000001, 42.8644735], [22.770653, 42.8591930000001], [22.7747515, 42.8550724990001], [22.777857, 42.852671001], [22.7803275000001, 42.8492195000001], [22.7963755000001, 42.8470825000001], [22.798771, 42.8470405000001], [22.7987615960001, 42.847057432] ] ] },
+    "properties": {
+      "ISO": "BG-SFO16",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "23409",
+      "NAME_2": "Драгоман",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.0891895, 42.7373880000001], [23.0771040000001, 42.7334940000001], [23.0716560000001, 42.7252395], [23.0649705000001, 42.722178], [23.056514, 42.7127340000001], [23.054833, 42.6989635], [23.0571835000001, 42.698522], [23.0746730000001, 42.694090499], [23.0794925000001, 42.6950800000001], [23.0858595, 42.6918450000001], [23.0948375, 42.6927325], [23.0993280000001, 42.6937320000001], [23.1058380000001, 42.6948995000001], [23.1030205000001, 42.6894505000001], [23.1098515, 42.6841595000001], [23.109513, 42.6743875000001], [23.1151445, 42.6725980000001], [23.1183510000001, 42.667219], [23.124014, 42.6700000000001], [23.1434225, 42.6670905], [23.146039, 42.664626001], [23.1467190000001, 42.6622765000001], [23.1684000000001, 42.6575075000001], [23.1730435000001, 42.649186], [23.162723, 42.6416145000001], [23.1668300000001, 42.6337070000001], [23.175144, 42.6239095], [23.1707300000001, 42.6179320000001], [23.1729535000001, 42.6162370000001], [23.1718510000001, 42.613634], [23.1530000000001, 42.605461], [23.1396740000001, 42.594162499], [23.139441, 42.5915615000001], [23.144346, 42.5868595000001], [23.153668, 42.592094999], [23.1820805, 42.5918169990001], [23.1982915, 42.5901375], [23.2096645, 42.5850585000001], [23.2116970000001, 42.585661499], [23.2142680000001, 42.585607001], [23.224231, 42.5829965], [23.2299855000001, 42.5753120000001], [23.2405900000001, 42.5709925], [23.2490030000001, 42.5714395000001], [23.2585545000001, 42.5636710000001], [23.2854415, 42.561625], [23.2879425, 42.5541745], [23.2998475000001, 42.5447770000001], [23.2901870000001, 42.5327089990001], [23.2967590000001, 42.5312970000001], [23.3013480000001, 42.5246425], [23.311565, 42.528290499], [23.322882, 42.5138515], [23.3303805000001, 42.5087435], [23.3368850000001, 42.5063455000001], [23.3628715, 42.4950995], [23.3760705, 42.4941675000001], [23.3808385, 42.4897035000001], [23.391177, 42.4820970000001], [23.3919720000001, 42.481379501], [23.4081255, 42.471816], [23.4134325000001, 42.4639865], [23.4248245000001, 42.473014], [23.4450585000001, 42.478600999], [23.4479405000001, 42.4818605], [23.440749, 42.492622], [23.4414245, 42.4989640000001], [23.4298515, 42.5051950000001], [23.4251525, 42.5111669990001], [23.44768, 42.524866], [23.4541835000001, 42.5247345000001], [23.4651035000001, 42.5176974990001], [23.4796785, 42.5175750010001], [23.492823, 42.5122249990001], [23.5099775, 42.5122180000001], [23.509447, 42.4988435010001], [23.522993, 42.4898915], [23.524459, 42.4891480000001], [23.5388735, 42.4813500000001], [23.5416355, 42.4754050000001], [23.5362860000001, 42.4534525], [23.5295975, 42.4467130000001], [23.5337845, 42.439100501], [23.535265, 42.4369339990001], [23.533176, 42.4278715], [23.544922, 42.413891], [23.5513825, 42.4127445], [23.5626045000001, 42.4214605000001], [23.5702695000001, 42.4211545000001], [23.572074, 42.4168145], [23.580518, 42.4166795], [23.5904210000001, 42.4211575], [23.5970845000001, 42.419181], [23.614251, 42.4132925000001], [23.6261075, 42.4167355000001], [23.6332870000001, 42.415735499], [23.646283, 42.4217855000001], [23.6603870000001, 42.4213685], [23.66236, 42.4217285], [23.664028, 42.434262], [23.6588815000001, 42.4453675], [23.660577, 42.455727], [23.6492375, 42.4594530000001], [23.648918, 42.4693255], [23.6414125000001, 42.4802085000001], [23.623503, 42.486529499], [23.6221145000001, 42.4889420000001], [23.6271795000001, 42.4934045000001], [23.6301265000001, 42.500352999], [23.624671, 42.5025875000001], [23.614766, 42.5000850000001], [23.6062695, 42.505865], [23.5942890000001, 42.502709501], [23.5869635, 42.5051250000001], [23.5770675000001, 42.5158240000001], [23.5739875, 42.5231785], [23.5677380000001, 42.5281600000001], [23.5538470000001, 42.5311550000001], [23.5502895000001, 42.533011], [23.5513425, 42.5504615], [23.5639840000001, 42.5560465], [23.559305, 42.5618440000001], [23.5659145000001, 42.5669005], [23.5558665, 42.5771070000001], [23.5595005000001, 42.6162275], [23.5434520000001, 42.623992], [23.5307300000001, 42.6249845], [23.5343845, 42.6370034990001], [23.5319250000001, 42.6387750010001], [23.5099980000001, 42.6435240000001], [23.506893, 42.6381170000001], [23.492643, 42.6390855000001], [23.5083250000001, 42.645453999], [23.5068305, 42.649474], [23.502438, 42.6491549990001], [23.4963915000001, 42.6496365], [23.493812, 42.6697], [23.4973315, 42.6750660000001], [23.520883, 42.6795215000001], [23.5200705, 42.6843185000001], [23.531683, 42.68373], [23.5428945, 42.6806524990001], [23.5459970000001, 42.680642499], [23.5436405, 42.6937130000001], [23.548165, 42.7039795000001], [23.5631655, 42.7079835000001], [23.5796280000001, 42.7080580000001], [23.579624, 42.710286501], [23.5862165, 42.7087680010001], [23.5940275, 42.709847], [23.6003365, 42.7161170000001], [23.6101820000001, 42.730033], [23.6132815, 42.7358965000001], [23.6152635, 42.7478855000001], [23.6242330000001, 42.7672890000001], [23.6332735, 42.7717155], [23.6402170000001, 42.7679805000001], [23.6465595, 42.7757930000001], [23.6485950000001, 42.780962501], [23.6460650000001, 42.788312499], [23.6468465, 42.8001085000001], [23.6542190000001, 42.8177835000001], [23.6656975000001, 42.831287], [23.6786725000001, 42.8343345000001], [23.6769285, 42.844449501], [23.6658665, 42.8394860000001], [23.652269, 42.844617], [23.6362960000001, 42.8386560000001], [23.6326205, 42.8564395000001], [23.6215885, 42.856384], [23.6040095000001, 42.8602530000001], [23.59401, 42.8516270000001], [23.5772620000001, 42.8469395000001], [23.5676035000001, 42.8352150010001], [23.566085, 42.8296770000001], [23.5564395000001, 42.827613], [23.538513, 42.8328074990001], [23.5272615000001, 42.8490745], [23.5229775, 42.8563500000001], [23.5138705000001, 42.862551001], [23.5060270000001, 42.8639595010001], [23.4962985, 42.8592815000001], [23.4828415000001, 42.8652880000001], [23.479515, 42.8729700000001], [23.4756625000001, 42.8735895], [23.4693325000001, 42.8742225], [23.4648225, 42.8627915000001], [23.4535910000001, 42.8634125], [23.4498695, 42.8714095], [23.4496110000001, 42.8719595000001], [23.4407400000001, 42.8691480000001], [23.435078, 42.8616255000001], [23.4206615, 42.8579250000001], [23.4119525, 42.8533795000001], [23.4063380000001, 42.8484535000001], [23.3858750000001, 42.8474620000001], [23.372642, 42.8391645], [23.3657000000001, 42.8415285], [23.3738585, 42.847928], [23.3668975000001, 42.852528501], [23.3419855000001, 42.8559980000001], [23.3426640000001, 42.864024], [23.3389565000001, 42.8646345000001], [23.3377525000001, 42.8653884990001], [23.3297225000001, 42.8719785010001], [23.3199895000001, 42.883564001], [23.3067725, 42.8820170000001], [23.2967435000001, 42.888494999], [23.2937915000001, 42.8898580000001], [23.2828420000001, 42.8962375], [23.2738205000001, 42.8952550000001], [23.2638785, 42.8928460000001], [23.2644085000001, 42.8852505], [23.2600870000001, 42.874962], [23.2520680000001, 42.8725065], [23.2472540000001, 42.8666765], [23.2465665, 42.8644835000001], [23.255431, 42.849788], [23.2496365000001, 42.8401755], [23.2539870000001, 42.834641], [23.2511910000001, 42.8326450000001], [23.2520680000001, 42.8262], [23.2423545, 42.817661], [23.242778, 42.814154], [23.2510590000001, 42.8060750000001], [23.2507140000001, 42.797960001], [23.2478410000001, 42.7950430000001], [23.2417855, 42.7964830000001], [23.222028, 42.786324], [23.2153275000001, 42.784], [23.209617, 42.7838245], [23.2004835000001, 42.7710055000001], [23.2075335000001, 42.771888], [23.204844, 42.7664369990001], [23.218423, 42.7565995], [23.2138650000001, 42.7537340000001], [23.2122145000001, 42.7451620000001], [23.1968105, 42.728286], [23.190116, 42.7264155], [23.187915, 42.7300835], [23.1790980000001, 42.7302800000001], [23.1583000000001, 42.7258914990001], [23.1584950000001, 42.7281085000001], [23.149733, 42.7316095], [23.1451865, 42.7369615000001], [23.1181355000001, 42.7399819990001], [23.098101, 42.7370574990001], [23.0891895, 42.7373880000001] ] ] },
+    "properties": {
+      "ISO": "BG-SOF46",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SOF",
+      "TYPE_1": "Област",
+      "ID_2": "68134",
+      "NAME_2": "Столична",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.492823, 42.5122249990001], [23.4796785, 42.5175750010001], [23.4651035000001, 42.5176974990001], [23.4541835000001, 42.5247345000001], [23.44768, 42.524866], [23.4251525, 42.5111669990001], [23.4298515, 42.5051950000001], [23.4414245, 42.4989640000001], [23.440749, 42.492622], [23.4479405000001, 42.4818605], [23.4450585000001, 42.478600999], [23.4248245000001, 42.473014], [23.4134325000001, 42.4639865], [23.4081255, 42.471816], [23.3919720000001, 42.481379501], [23.391177, 42.4820970000001], [23.3808385, 42.4897035000001], [23.3760705, 42.4941675000001], [23.3628715, 42.4950995], [23.3368850000001, 42.5063455000001], [23.3303805000001, 42.5087435], [23.322882, 42.5138515], [23.311565, 42.528290499], [23.3013480000001, 42.5246425], [23.2967590000001, 42.5312970000001], [23.2901870000001, 42.5327089990001], [23.2843, 42.5318295000001], [23.279528, 42.533444], [23.2675795000001, 42.5248605000001], [23.259238, 42.5148060000001], [23.2561255, 42.506856499], [23.257571, 42.5027075], [23.2543705, 42.496701], [23.2339855000001, 42.4913135], [23.232989, 42.4827945000001], [23.221077, 42.4727895], [23.220713, 42.4660335], [23.2183260000001, 42.4432550020001], [23.218786, 42.432285001], [23.219366, 42.4294770010001], [23.222387, 42.423224501], [23.2248055000001, 42.4191125020001], [23.2379070000001, 42.413717999], [23.2398785, 42.4115815000001], [23.2422347770001, 42.404976596], [23.2424280000001, 42.404435], [23.242169392, 42.404206698], [23.2417970000001, 42.399822], [23.2337190000001, 42.3967470000001], [23.2291685000001, 42.3930270010001], [23.224096, 42.3770215010001], [23.2451380000001, 42.3794290000001], [23.2557165000001, 42.3762725], [23.2522760000001, 42.3683130000001], [23.2584635000001, 42.3597945000001], [23.2616870000001, 42.3602780000001], [23.2773375, 42.364493], [23.288392, 42.3726635], [23.2901590000001, 42.372959], [23.3006115000001, 42.3684079990001], [23.309395, 42.358548], [23.3100685000001, 42.3581285000001], [23.313839, 42.3583265], [23.312037, 42.3508715], [23.319619, 42.3425520000001], [23.3215900000001, 42.335295], [23.312756, 42.325705], [23.3161555, 42.3190520000001], [23.336013, 42.310455], [23.33829, 42.304026499], [23.3478420000001, 42.2964795], [23.3864, 42.2831830000001], [23.3821925, 42.2779805000001], [23.382481, 42.2721505000001], [23.38807, 42.2513865000001], [23.3927675, 42.2487390000001], [23.3934535000001, 42.243182], [23.3814915, 42.2428005000001], [23.3748670000001, 42.2490920000001], [23.3607775, 42.243702], [23.3541105, 42.244107], [23.350198, 42.2254780000001], [23.3321695000001, 42.2151049990001], [23.3167905, 42.1916590000001], [23.3138240000001, 42.1820730000001], [23.3201950000001, 42.1751415000001], [23.3366340000001, 42.1665830000001], [23.3608340000001, 42.170803], [23.369421, 42.1680860010001], [23.403193, 42.1756795000001], [23.410247, 42.181087], [23.4384115, 42.1864055], [23.448741, 42.1825525], [23.4519295000001, 42.173565001], [23.4521590000001, 42.1663015], [23.4574500000001, 42.1508690000001], [23.4800655, 42.1483870000001], [23.4895445, 42.1445180000001], [23.5022875, 42.1471675000001], [23.5150410000001, 42.141937], [23.5294720000001, 42.1270265], [23.5267765, 42.1175305], [23.5195495, 42.1122285000001], [23.5073915, 42.1136050000001], [23.4974250000001, 42.1053315], [23.4955625000001, 42.0975575000001], [23.4974905, 42.0970399990001], [23.4998120000001, 42.0975480000001], [23.5036240000001, 42.0916895], [23.531623, 42.0875155000001], [23.5389890000001, 42.0839295000001], [23.5564840000001, 42.0874185000001], [23.5724290000001, 42.0862445000001], [23.5717355, 42.10159], [23.5779680000001, 42.1041445010001], [23.5818225, 42.1127470000001], [23.5777675, 42.115818], [23.5777385000001, 42.118658], [23.5903745, 42.132101], [23.5935910000001, 42.1449835000001], [23.5927285000001, 42.151297], [23.5933555, 42.1541750000001], [23.6051645000001, 42.1607474990001], [23.6096745, 42.1619975], [23.6370455000001, 42.1559155], [23.649522, 42.1561415000001], [23.6527075000001, 42.1668510000001], [23.654497, 42.1752645], [23.6619180000001, 42.1719285], [23.6735570000001, 42.1695385], [23.6833525000001, 42.1699575000001], [23.702526, 42.154608001], [23.7145465, 42.1579835000001], [23.726522, 42.1549805000001], [23.7276600000001, 42.152199], [23.739061, 42.150993], [23.7348775, 42.1594650000001], [23.7305440000001, 42.1658925], [23.714641, 42.1693235010001], [23.710837, 42.1744820000001], [23.7143320000001, 42.1939745010001], [23.7177830000001, 42.216189], [23.7105270000001, 42.2274310000001], [23.7099615000001, 42.2319350000001], [23.716145, 42.2454395], [23.7240150000001, 42.252531], [23.7311315000001, 42.2667545], [23.7302685, 42.2835695000001], [23.7286765000001, 42.29668], [23.7261405, 42.3010065], [23.7300175, 42.3054934990001], [23.7257930000001, 42.3082180000001], [23.7265535, 42.3102075000001], [23.742755, 42.3152390000001], [23.7294460000001, 42.3189795000001], [23.7276200000001, 42.3288645000001], [23.732317, 42.3355675], [23.736247, 42.3359985000001], [23.7282720000001, 42.3475725000001], [23.720801, 42.3583175000001], [23.7129475, 42.367173], [23.6969360000001, 42.3781984990001], [23.686854, 42.3821935], [23.6758845, 42.381628], [23.6698815, 42.3808230000001], [23.6660285, 42.381382], [23.6616260000001, 42.386602501], [23.6619635000001, 42.3937575], [23.6685695, 42.3969485000001], [23.669267, 42.3994900000001], [23.6646355, 42.4064510000001], [23.6733320000001, 42.419355], [23.66236, 42.4217285], [23.6603870000001, 42.4213685], [23.646283, 42.4217855000001], [23.6332870000001, 42.415735499], [23.6261075, 42.4167355000001], [23.614251, 42.4132925000001], [23.5970845000001, 42.419181], [23.5904210000001, 42.4211575], [23.580518, 42.4166795], [23.572074, 42.4168145], [23.5702695000001, 42.4211545000001], [23.5626045000001, 42.4214605000001], [23.5513825, 42.4127445], [23.544922, 42.413891], [23.533176, 42.4278715], [23.535265, 42.4369339990001], [23.5337845, 42.439100501], [23.5295975, 42.4467130000001], [23.5362860000001, 42.4534525], [23.5416355, 42.4754050000001], [23.5388735, 42.4813500000001], [23.524459, 42.4891480000001], [23.522993, 42.4898915], [23.509447, 42.4988435010001], [23.5099775, 42.5122180000001], [23.492823, 42.5122249990001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO39",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "65231",
+      "NAME_2": "Самоков",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.4789955000001, 43.1306000000001], [23.486369, 43.1353600000001], [23.4778700000001, 43.1446470000001], [23.4781705, 43.1511205], [23.4745150000001, 43.1541130000001], [23.453386, 43.1526325], [23.442616, 43.1577050000001], [23.4407195000001, 43.1502845000001], [23.4353980000001, 43.1500910010001], [23.4157545000001, 43.1565905], [23.412767, 43.1605220000001], [23.4079595000001, 43.1613970000001], [23.4005245000001, 43.1577975000001], [23.390188, 43.1605890000001], [23.3845945, 43.1550955000001], [23.3683495, 43.153149], [23.3634855, 43.156524], [23.3454610000001, 43.1581775000001], [23.34108, 43.1580100000001], [23.3220555, 43.158782], [23.3178380000001, 43.1382780000001], [23.3151245, 43.1337980000001], [23.2899390000001, 43.1211385], [23.2588105, 43.1295910000001], [23.2542405, 43.130049], [23.2474475000001, 43.129371501], [23.2427735000001, 43.1247970000001], [23.2419115000001, 43.121626], [23.246138, 43.1191115], [23.2468695000001, 43.1124189990001], [23.2292745, 43.111270001], [23.2169425000001, 43.1143909990001], [23.204035, 43.113097], [23.2134155000001, 43.110174], [23.2285065, 43.0988735], [23.2214955000001, 43.0808195000001], [23.1958895000001, 43.0680355000001], [23.1865545000001, 43.0677200000001], [23.1782715000001, 43.048459001], [23.1750680000001, 43.0403475000001], [23.1805685, 43.0323605], [23.1748885000001, 43.0289700000001], [23.1698020000001, 43.0327070000001], [23.1508890000001, 43.0351194990001], [23.139615, 43.037044], [23.13617, 43.0316515000001], [23.1204075000001, 43.0321035000001], [23.1242505000001, 43.0264445], [23.1198275, 43.02254], [23.1217075000001, 43.0178995], [23.1227815, 43.0064560000001], [23.1289360000001, 42.9968825010001], [23.1276275000001, 42.9940875], [23.1372270000001, 42.995844], [23.141688, 42.9921860000001], [23.146132, 42.9956085000001], [23.1653850000001, 42.990845], [23.1613505, 42.9847130000001], [23.162471, 42.9709705000001], [23.1544605, 42.964768], [23.1573260000001, 42.9534840000001], [23.1734730000001, 42.9693005], [23.1860510000001, 42.9719805], [23.1915700000001, 42.9762075], [23.194574, 42.971837], [23.208152, 42.9716085000001], [23.2170305000001, 42.9640425000001], [23.2125350000001, 42.9581170000001], [23.2134965000001, 42.9522744990001], [23.2233495, 42.9493365000001], [23.2319535, 42.9494315000001], [23.23314, 42.9518880000001], [23.2394, 42.9525355000001], [23.2420845, 42.9571885], [23.261734, 42.9551815], [23.2687825, 42.955763], [23.268114, 42.9475205000001], [23.2622125, 42.931634], [23.285778, 42.9247040000001], [23.2805710000001, 42.9213070000001], [23.2738205000001, 42.8952550000001], [23.2828420000001, 42.8962375], [23.2937915000001, 42.8898580000001], [23.2967435000001, 42.888494999], [23.3067725, 42.8820170000001], [23.3199895000001, 42.883564001], [23.3297225000001, 42.8719785010001], [23.3377525000001, 42.8653884990001], [23.3389565000001, 42.8646345000001], [23.3426640000001, 42.864024], [23.3419855000001, 42.8559980000001], [23.3668975000001, 42.852528501], [23.3738585, 42.847928], [23.3657000000001, 42.8415285], [23.372642, 42.8391645], [23.3858750000001, 42.8474620000001], [23.4063380000001, 42.8484535000001], [23.4119525, 42.8533795000001], [23.4206615, 42.8579250000001], [23.435078, 42.8616255000001], [23.4407400000001, 42.8691480000001], [23.4496110000001, 42.8719595000001], [23.4498695, 42.8714095], [23.4535910000001, 42.8634125], [23.4648225, 42.8627915000001], [23.4693325000001, 42.8742225], [23.4756625000001, 42.8735895], [23.479515, 42.8729700000001], [23.4828415000001, 42.8652880000001], [23.4962985, 42.8592815000001], [23.5060270000001, 42.8639595010001], [23.5138705000001, 42.862551001], [23.5229775, 42.8563500000001], [23.5272615000001, 42.8490745], [23.538513, 42.8328074990001], [23.5564395000001, 42.827613], [23.566085, 42.8296770000001], [23.5676035000001, 42.8352150010001], [23.5772620000001, 42.8469395000001], [23.59401, 42.8516270000001], [23.6040095000001, 42.8602530000001], [23.6215885, 42.856384], [23.6326205, 42.8564395000001], [23.6362960000001, 42.8386560000001], [23.652269, 42.844617], [23.6658665, 42.8394860000001], [23.6769285, 42.844449501], [23.6785365000001, 42.8543605], [23.678793, 42.8702960000001], [23.6577905, 42.8834875000001], [23.6495325000001, 42.8947575], [23.6354925000001, 42.9004815000001], [23.6207525, 42.898156499], [23.6103095, 42.9002385000001], [23.606364, 42.9015840000001], [23.6003425000001, 42.9109089990001], [23.6016755000001, 42.919115], [23.581978, 42.9236920000001], [23.5806400000001, 42.9319265], [23.5821730000001, 42.936155], [23.5771975000001, 42.9402245000001], [23.5747650000001, 42.9474085000001], [23.5798315000001, 42.9528995000001], [23.5943485, 42.9577945], [23.5964040000001, 42.9603995000001], [23.5852625000001, 42.969274], [23.5725685, 42.9727475], [23.5661505, 42.987402499], [23.5665690000001, 42.9938930000001], [23.553686, 43.0038064990001], [23.5394175000001, 43.0105065000001], [23.527905, 43.0143935], [23.520742, 43.0220770000001], [23.523946, 43.030763999], [23.5153415, 43.0442105000001], [23.5022655000001, 43.0483130010001], [23.4942695, 43.0631585], [23.4914835000001, 43.0741205], [23.472968, 43.0727225000001], [23.4620145000001, 43.0913820000001], [23.4562530000001, 43.0933420000001], [23.4509845000001, 43.0973155], [23.4559085000001, 43.114787], [23.464572, 43.124379], [23.4789955000001, 43.1306000000001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO43",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "65869",
+      "NAME_2": "Своге",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.065346, 42.7497305000001], [24.0528125000001, 42.7536000000001], [24.0452560000001, 42.755499], [24.0324825000001, 42.7478885000001], [24.0301630000001, 42.7365095000001], [24.0206000000001, 42.7365355000001], [24.028313, 42.712571999], [24.0411350000001, 42.7102344990001], [24.043436, 42.7032120000001], [24.0430485000001, 42.688925], [24.0386255, 42.6844075000001], [24.0500245000001, 42.6853820000001], [24.066356, 42.6837665], [24.0723590000001, 42.6797555000001], [24.0897555, 42.6582865], [24.0990295, 42.6606245], [24.101233, 42.658243999], [24.1060055, 42.6596979990001], [24.1045845, 42.671098], [24.0900875, 42.6825040000001], [24.0986035, 42.690077], [24.1121855000001, 42.6959400000001], [24.11591, 42.7026660000001], [24.110376, 42.711621], [24.1062195000001, 42.7116015], [24.1047510000001, 42.7162245000001], [24.0966690000001, 42.7305889990001], [24.0841425, 42.7327875], [24.0767785, 42.738411999], [24.0755425, 42.751112999], [24.065346, 42.7497305000001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO58",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "80323",
+      "NAME_2": "Челопеч",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.6639595, 42.5934145000001], [23.6671375, 42.5955375], [23.6711255000001, 42.5915795000001], [23.6933915000001, 42.5908920000001], [23.7035855, 42.5907359990001], [23.7071025000001, 42.594457], [23.7156570000001, 42.595788], [23.7290850000001, 42.5939345], [23.726912, 42.5973529990001], [23.7377530000001, 42.5998195000001], [23.7440745000001, 42.5925655], [23.7540470000001, 42.594389], [23.764237, 42.5858170000001], [23.765675, 42.5884600000001], [23.7775455, 42.5857245], [23.7926725, 42.5892375000001], [23.7948860000001, 42.5923025010001], [23.7968105, 42.5915595000001], [23.8184605000001, 42.5867965], [23.822097, 42.5762045000001], [23.834527, 42.5687150000001], [23.8344845, 42.5539285], [23.8363220000001, 42.5536504990001], [23.8435345, 42.5506800000001], [23.862943, 42.5537935], [23.881197, 42.5518565], [23.8837865, 42.554358], [23.8847285000001, 42.5646175000001], [23.893805, 42.573725], [23.8900190000001, 42.583698], [23.8944320000001, 42.6008815000001], [23.886984, 42.614510501], [23.8968530000001, 42.6204919990001], [23.8942040000001, 42.6249855], [23.8704500000001, 42.6336265], [23.8662175000001, 42.6282025], [23.8449325, 42.6286215000001], [23.8209850000001, 42.6398315000001], [23.7973680000001, 42.6449495000001], [23.7942600000001, 42.6470640000001], [23.7956800000001, 42.650174], [23.7912715000001, 42.6502669990001], [23.7891255000001, 42.6514040010001], [23.7847200000001, 42.6405110000001], [23.7713895000001, 42.630834], [23.7641995000001, 42.6198125000001], [23.7354950000001, 42.6365470000001], [23.724165, 42.63946], [23.7249905, 42.645746499], [23.717047, 42.6600070000001], [23.7112815, 42.6617815010001], [23.6991625000001, 42.6525995010001], [23.674658, 42.6548295000001], [23.6645035, 42.6640115000001], [23.6644900000001, 42.6640695], [23.6635295, 42.6673685000001], [23.661435, 42.6740745000001], [23.65664, 42.682646], [23.6439590000001, 42.6863855], [23.6438345, 42.692847], [23.6528490000001, 42.69913], [23.6613155000001, 42.6968205000001], [23.6690130000001, 42.7028300000001], [23.6639025000001, 42.718191], [23.6715435, 42.7271070000001], [23.6795245000001, 42.7288115000001], [23.6852535, 42.7259175], [23.6917895, 42.7287155000001], [23.6935045000001, 42.7350685000001], [23.7001670000001, 42.7432670000001], [23.7040940000001, 42.7436765000001], [23.7144430000001, 42.7504935000001], [23.71817, 42.7563450000001], [23.732285, 42.760256499], [23.7382850000001, 42.7689545000001], [23.75336, 42.769738999], [23.7735995, 42.774724], [23.7748050000001, 42.7772340000001], [23.7631375, 42.8022065000001], [23.7478850000001, 42.803291001], [23.7398005000001, 42.8096655000001], [23.727694, 42.809023], [23.7220365000001, 42.817275501], [23.7166265000001, 42.8340795], [23.706263, 42.8358480000001], [23.6947325, 42.8365465000001], [23.6871320000001, 42.832508999], [23.6786725000001, 42.8343345000001], [23.6656975000001, 42.831287], [23.6542190000001, 42.8177835000001], [23.6468465, 42.8001085000001], [23.6460650000001, 42.788312499], [23.6485950000001, 42.780962501], [23.6465595, 42.7757930000001], [23.6402170000001, 42.7679805000001], [23.6332735, 42.7717155], [23.6242330000001, 42.7672890000001], [23.6152635, 42.7478855000001], [23.6132815, 42.7358965000001], [23.6101820000001, 42.730033], [23.6003365, 42.7161170000001], [23.5940275, 42.709847], [23.5862165, 42.7087680010001], [23.579624, 42.710286501], [23.5796280000001, 42.7080580000001], [23.5631655, 42.7079835000001], [23.548165, 42.7039795000001], [23.5436405, 42.6937130000001], [23.5459970000001, 42.680642499], [23.5428945, 42.6806524990001], [23.531683, 42.68373], [23.5200705, 42.6843185000001], [23.520883, 42.6795215000001], [23.4973315, 42.6750660000001], [23.493812, 42.6697], [23.4963915000001, 42.6496365], [23.502438, 42.6491549990001], [23.5068305, 42.649474], [23.5083250000001, 42.645453999], [23.492643, 42.6390855000001], [23.506893, 42.6381170000001], [23.5099980000001, 42.6435240000001], [23.5319250000001, 42.6387750010001], [23.5343845, 42.6370034990001], [23.5307300000001, 42.6249845], [23.5434520000001, 42.623992], [23.5595005000001, 42.6162275], [23.5558665, 42.5771070000001], [23.5659145000001, 42.5669005], [23.559305, 42.5618440000001], [23.5639840000001, 42.5560465], [23.5513425, 42.5504615], [23.5502895000001, 42.533011], [23.5538470000001, 42.5311550000001], [23.5677380000001, 42.5281600000001], [23.5739875, 42.5231785], [23.5770675000001, 42.5158240000001], [23.5869635, 42.5051250000001], [23.5942890000001, 42.502709501], [23.6062695, 42.505865], [23.614766, 42.5000850000001], [23.624671, 42.5025875000001], [23.6373550000001, 42.5103280000001], [23.6428515000001, 42.5158900000001], [23.639638, 42.5228195], [23.6394305000001, 42.537135], [23.6419760000001, 42.541145], [23.6441840000001, 42.547688], [23.6594195000001, 42.5640855], [23.6550405, 42.577590001], [23.647278, 42.5832385], [23.6584845, 42.586348501], [23.6623310000001, 42.5929215], [23.6639595, 42.5934145000001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO17",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "27303",
+      "NAME_2": "Елин Пелин",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.802735, 42.314241], [23.7951675, 42.3204590010001], [23.796793, 42.3273659990001], [23.8046015, 42.3308755], [23.8065955000001, 42.3345150000001], [23.7941715000001, 42.34274], [23.791452, 42.344749], [23.7824605000001, 42.3387025000001], [23.7734725, 42.3367345010001], [23.7606470000001, 42.3397580000001], [23.751538, 42.332706], [23.7416850000001, 42.3325520000001], [23.736247, 42.3359985000001], [23.732317, 42.3355675], [23.7276200000001, 42.3288645000001], [23.7294460000001, 42.3189795000001], [23.742755, 42.3152390000001], [23.7265535, 42.3102075000001], [23.7257930000001, 42.3082180000001], [23.7300175, 42.3054934990001], [23.7261405, 42.3010065], [23.7286765000001, 42.29668], [23.7302685, 42.2835695000001], [23.7311315000001, 42.2667545], [23.7240150000001, 42.252531], [23.716145, 42.2454395], [23.7099615000001, 42.2319350000001], [23.7105270000001, 42.2274310000001], [23.7177830000001, 42.216189], [23.7427700000001, 42.2314675000001], [23.7554215000001, 42.2364190000001], [23.7598955, 42.2446635000001], [23.7635415, 42.2490079990001], [23.7769115, 42.2604430000001], [23.7873050000001, 42.2601855], [23.7920935000001, 42.2697975], [23.79044, 42.277522], [23.7968710000001, 42.2825109990001], [23.810796, 42.2871045000001], [23.828268, 42.306905], [23.8309295, 42.3091805010001], [23.8123245, 42.3130224990001], [23.802735, 42.314241] ] ] },
+    "properties": {
+      "ISO": "BG-SFO59",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "22006",
+      "NAME_2": "Долна баня",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.3466215, 42.6960905], [24.345874, 42.6961275], [24.3463080000001, 42.6917250010001], [24.3401615000001, 42.6721095], [24.3181375, 42.6673185000001], [24.3135805000001, 42.6640915], [24.3157255, 42.6585095], [24.2957865000001, 42.6532090000001], [24.3045925000001, 42.6350650000001], [24.3010915, 42.6291110010001], [24.2885525, 42.6240740000001], [24.2817585, 42.6228005], [24.2907145, 42.6130175010001], [24.300465, 42.6080699990001], [24.309062, 42.6011855], [24.310122, 42.5910395010001], [24.3150445000001, 42.5832350000001], [24.317704, 42.5820775], [24.3439755000001, 42.5747165000001], [24.3491050000001, 42.5664200000001], [24.3547335000001, 42.5502060000001], [24.3742445, 42.5648695], [24.380619, 42.5668660000001], [24.4123210000001, 42.565142001], [24.4210095, 42.5530640000001], [24.4296410000001, 42.559467], [24.43875, 42.5590495000001], [24.4500875000001, 42.5537870000001], [24.466304, 42.5616350000001], [24.4585135, 42.568346499], [24.459256, 42.574054001], [24.4711160000001, 42.5773245], [24.4725815, 42.5878295000001], [24.4833580000001, 42.5900075010001], [24.4828585000001, 42.5998075000001], [24.4656355000001, 42.6070005], [24.4583065, 42.613772], [24.45448, 42.624853], [24.4266165, 42.6438025], [24.402053, 42.6455980000001], [24.3942750000001, 42.6506755], [24.383339, 42.6635460000001], [24.3570040000001, 42.6773085], [24.3644775000001, 42.6812174990001], [24.3673700000001, 42.6883485000001], [24.3629740000001, 42.6943660000001], [24.3466215, 42.6960905] ] ] },
+    "properties": {
+      "ISO": "BG-SFO24",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "38558",
+      "NAME_2": "Копривщица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.888001, 42.2840545], [23.8926335, 42.294477], [23.898712, 42.2993425000001], [23.9016080000001, 42.2972685], [23.9178370000001, 42.2949645], [23.9247175, 42.2866080000001], [23.9235525, 42.277661999], [23.9328705, 42.2751289990001], [23.9347635, 42.2721225000001], [23.945999, 42.2710405], [23.960567, 42.266055501], [23.961869, 42.2657170000001], [23.9670580000001, 42.2672505], [23.9715630000001, 42.274843], [23.9824345000001, 42.286427001], [23.994878, 42.2941115], [23.9929765000001, 42.2993520000001], [23.9828955, 42.3042245], [23.9604145000001, 42.313045], [23.95054, 42.32244], [23.9475085, 42.3247455000001], [23.9409020000001, 42.3307290000001], [23.9477305, 42.3366875], [23.955492, 42.3552375], [23.953896, 42.3681035000001], [23.962742, 42.373111], [23.957428, 42.3809705000001], [23.9585680000001, 42.3833015000001], [23.9362860000001, 42.3793220000001], [23.9310875, 42.381271999], [23.9253815000001, 42.38242], [23.9125375, 42.3853705000001], [23.9027570000001, 42.3863580010001], [23.8844800000001, 42.3801625], [23.8751405, 42.376932001], [23.8608815000001, 42.3816205000001], [23.8520320000001, 42.3851690000001], [23.8443555000001, 42.3733235], [23.837164, 42.3815760000001], [23.8266265, 42.3818835010001], [23.8232235, 42.384684], [23.8148210000001, 42.3810830000001], [23.802067, 42.3874000000001], [23.8006195, 42.387409], [23.794879, 42.3867805], [23.792001, 42.3911660000001], [23.7866000000001, 42.3910819990001], [23.7721250000001, 42.3919315000001], [23.7652115000001, 42.395203501], [23.7327250000001, 42.404096], [23.717794, 42.411161], [23.7024775, 42.412319], [23.696828, 42.4167394990001], [23.6759020000001, 42.4173185000001], [23.6733320000001, 42.419355], [23.6646355, 42.4064510000001], [23.669267, 42.3994900000001], [23.6685695, 42.3969485000001], [23.6619635000001, 42.3937575], [23.6616260000001, 42.386602501], [23.6660285, 42.381382], [23.6698815, 42.3808230000001], [23.6758845, 42.381628], [23.686854, 42.3821935], [23.6969360000001, 42.3781984990001], [23.7129475, 42.367173], [23.720801, 42.3583175000001], [23.7282720000001, 42.3475725000001], [23.736247, 42.3359985000001], [23.7416850000001, 42.3325520000001], [23.751538, 42.332706], [23.7606470000001, 42.3397580000001], [23.7734725, 42.3367345010001], [23.7824605000001, 42.3387025000001], [23.791452, 42.344749], [23.7941715000001, 42.34274], [23.8065955000001, 42.3345150000001], [23.8046015, 42.3308755], [23.796793, 42.3273659990001], [23.7951675, 42.3204590010001], [23.802735, 42.314241], [23.8123245, 42.3130224990001], [23.8309295, 42.3091805010001], [23.828268, 42.306905], [23.810796, 42.2871045000001], [23.7968710000001, 42.2825109990001], [23.79044, 42.277522], [23.7920935000001, 42.2697975], [23.7873050000001, 42.2601855], [23.7769115, 42.2604430000001], [23.7635415, 42.2490079990001], [23.7598955, 42.2446635000001], [23.7554215000001, 42.2364190000001], [23.7427700000001, 42.2314675000001], [23.7177830000001, 42.216189], [23.7143320000001, 42.1939745010001], [23.710837, 42.1744820000001], [23.714641, 42.1693235010001], [23.7305440000001, 42.1658925], [23.743867, 42.1835970000001], [23.7644315000001, 42.181951], [23.7722600000001, 42.181185499], [23.7792840000001, 42.1817750000001], [23.79596, 42.1965965000001], [23.7998915000001, 42.1969540000001], [23.8043000000001, 42.2051230000001], [23.840423, 42.2096095000001], [23.8525065000001, 42.224066], [23.86648, 42.2317345000001], [23.8850045, 42.2594750000001], [23.894599, 42.2747465], [23.888001, 42.2840545] ] ] },
+    "properties": {
+      "ISO": "BG-SFO25",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "38902",
+      "NAME_2": "Костенец",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.0771040000001, 42.7334940000001], [23.0891895, 42.7373880000001], [23.098101, 42.7370574990001], [23.1181355000001, 42.7399819990001], [23.1451865, 42.7369615000001], [23.149733, 42.7316095], [23.1584950000001, 42.7281085000001], [23.1583000000001, 42.7258914990001], [23.1790980000001, 42.7302800000001], [23.187915, 42.7300835], [23.190116, 42.7264155], [23.1968105, 42.728286], [23.2122145000001, 42.7451620000001], [23.2138650000001, 42.7537340000001], [23.218423, 42.7565995], [23.204844, 42.7664369990001], [23.2075335000001, 42.771888], [23.2004835000001, 42.7710055000001], [23.209617, 42.7838245], [23.1817150000001, 42.793282], [23.171476, 42.7969325], [23.142348, 42.8123675], [23.1098170000001, 42.8179370010001], [23.1135395000001, 42.8203915], [23.1083655000001, 42.8350175], [23.1057495000001, 42.8383815], [23.0963985000001, 42.8387700000001], [23.092524, 42.8389875], [23.0901905000001, 42.839281999], [23.0816495, 42.8328355], [23.0685980000001, 42.8296455], [23.0494600000001, 42.8158270000001], [23.0460015, 42.813740001], [23.0391995000001, 42.798797], [23.033169, 42.7956980000001], [23.0332990000001, 42.7954325000001], [23.0261810000001, 42.7950145], [23.023849, 42.7860465000001], [23.0138085, 42.784953999], [23.009441, 42.7805200000001], [22.9971565000001, 42.78033], [22.994244, 42.7782015000001], [22.9950010000001, 42.776297], [22.9824535000001, 42.7746724990001], [22.9941045000001, 42.76633], [22.98731, 42.7623865000001], [22.987942, 42.7562184990001], [23.02248, 42.7546609990001], [23.0338105000001, 42.7549330000001], [23.034295, 42.7497595], [23.0339540000001, 42.7458895], [23.0342665000001, 42.7369824990001], [23.03914, 42.7278049990001], [23.0408550000001, 42.723349], [23.037428, 42.7174180000001], [23.056514, 42.7127340000001], [23.0649705000001, 42.722178], [23.0716560000001, 42.7252395], [23.0771040000001, 42.7334940000001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO06",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "5027",
+      "NAME_2": "Божурище",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.2541005, 42.774845], [24.2442945, 42.7744500000001], [24.2338655, 42.7668945], [24.2292205000001, 42.7668985], [24.2254355000001, 42.7591990000001], [24.2269845000001, 42.7543245000001], [24.2210315, 42.748160499], [24.2199105, 42.7346445000001], [24.2290990000001, 42.7190640000001], [24.2425695000001, 42.7223295000001], [24.2434955, 42.7168995000001], [24.2736185000001, 42.7194175000001], [24.2784365000001, 42.7175645], [24.2922775000001, 42.7230615], [24.2982410000001, 42.7193080000001], [24.301298, 42.7159445010001], [24.3046265, 42.7037045000001], [24.3322670000001, 42.7060315000001], [24.3353070000001, 42.7005060000001], [24.345874, 42.6961275], [24.3466215, 42.6960905], [24.3629740000001, 42.6943660000001], [24.370007, 42.695946], [24.3704685000001, 42.7115125], [24.3788405, 42.7191335000001], [24.3864085000001, 42.7302025000001], [24.385927, 42.7499535000001], [24.3735665, 42.7487615000001], [24.3546305, 42.7548620000001], [24.335562, 42.7499755000001], [24.3227295, 42.7600645000001], [24.2861270000001, 42.7725765000001], [24.2541005, 42.774845] ] ] },
+    "properties": {
+      "ISO": "BG-SFO54",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "504",
+      "NAME_2": "Антон",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.9854365, 42.8777400000001], [23.9761475, 42.8777565], [23.9713345000001, 42.8805740000001], [23.9673295000001, 42.8781980000001], [23.9715, 42.8705830000001], [23.9498100000001, 42.873211999], [23.938319, 42.8717165], [23.9303295, 42.86474], [23.9244995, 42.8592170000001], [23.8998775000001, 42.8577645010001], [23.8889545000001, 42.8598180000001], [23.8808005000001, 42.8560705], [23.8586425, 42.8579720000001], [23.8495535000001, 42.8491455000001], [23.8524110000001, 42.8307339990001], [23.843894, 42.8288695000001], [23.8497155000001, 42.821448], [23.85761, 42.8182755], [23.8748705, 42.8184420000001], [23.8876915000001, 42.8113220000001], [23.882056, 42.806973], [23.8813210000001, 42.8029285000001], [23.896125, 42.7923450000001], [23.8956785, 42.7812755], [23.9073855, 42.7790355010001], [23.9117015, 42.77777], [23.9259740000001, 42.773044], [23.9338700000001, 42.7668], [23.964794, 42.7578050000001], [23.9698070000001, 42.7569295000001], [23.9911740000001, 42.7460305000001], [24.0206000000001, 42.7365355000001], [24.0301630000001, 42.7365095000001], [24.0324825000001, 42.7478885000001], [24.0452560000001, 42.755499], [24.0528125000001, 42.7536000000001], [24.065346, 42.7497305000001], [24.0755425, 42.751112999], [24.0764575000001, 42.7574665000001], [24.0907425, 42.762076], [24.0941885, 42.7653695000001], [24.1114765, 42.7673740000001], [24.127984, 42.7749480000001], [24.1279175, 42.7827750000001], [24.148403, 42.7870520000001], [24.1548295000001, 42.799179], [24.1949035000001, 42.8089400000001], [24.2023560000001, 42.8138709990001], [24.2029875000001, 42.8206895000001], [24.1920255000001, 42.821516], [24.172897, 42.8133460000001], [24.1675015000001, 42.816318499], [24.168053, 42.8278940000001], [24.1805895000001, 42.8284780000001], [24.1923365000001, 42.8341055010001], [24.168729, 42.8416980000001], [24.1659305000001, 42.85526], [24.1696195000001, 42.8734795], [24.1713245, 42.8883465000001], [24.1759545, 42.895574501], [24.176545, 42.901129], [24.1691455000001, 42.9206310000001], [24.1652915, 42.9297015000001], [24.1542215000001, 42.9352525], [24.14369, 42.9314], [24.1314615000001, 42.9294620000001], [24.1056165, 42.937234], [24.1025250000001, 42.9426260000001], [24.089748, 42.9420585010001], [24.0763395000001, 42.9400150000001], [24.0755820000001, 42.9352095], [24.0794935000001, 42.9354310000001], [24.0808530000001, 42.9316745], [24.0588735000001, 42.9189335], [24.053252, 42.917204], [24.0369585, 42.9064280000001], [24.0227180000001, 42.8992735], [24.0153925000001, 42.8993665], [24.0081730000001, 42.8910740000001], [23.9978175000001, 42.8866015], [23.991943, 42.8874334990001], [23.9854365, 42.8777400000001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO18",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "27632",
+      "NAME_2": "Етрополе",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.0990295, 42.6606245], [24.0897555, 42.6582865], [24.0723590000001, 42.6797555000001], [24.066356, 42.6837665], [24.0500245000001, 42.6853820000001], [24.0386255, 42.6844075000001], [24.026643, 42.6841735], [24.0213880000001, 42.6781569990001], [24.0207705, 42.6733955], [24.0242055000001, 42.6651375000001], [24.026256, 42.664727], [24.0335490000001, 42.660855], [24.0354235, 42.6530240000001], [24.0311080000001, 42.6431200000001], [24.0422865, 42.629313], [24.0399850000001, 42.6221619990001], [24.0377255000001, 42.6220045000001], [24.0400115, 42.6158100000001], [24.0489020000001, 42.614531501], [24.0669275000001, 42.5911815000001], [24.086528, 42.5761444990001], [24.0859820000001, 42.5719480000001], [24.1084685000001, 42.567953], [24.1237090000001, 42.5744955000001], [24.1282925, 42.5817065000001], [24.128854, 42.5882490010001], [24.1416295000001, 42.593165501], [24.1427875000001, 42.6051259990001], [24.1329170000001, 42.6188815], [24.1281230000001, 42.6308815000001], [24.1156030000001, 42.6320480000001], [24.1094150000001, 42.637709], [24.101613, 42.651545501], [24.099317, 42.6558864990001], [24.101233, 42.658243999], [24.0990295, 42.6606245] ] ] },
+    "properties": {
+      "ISO": "BG-SFO57",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "80011",
+      "NAME_2": "Чавдар",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.8412885000001, 42.976661], [23.8375610000001, 42.9768770000001], [23.8356405000001, 42.9646275010001], [23.8359645, 42.9627595000001], [23.8442735, 42.9585909990001], [23.8583100000001, 42.9509090000001], [23.8565745000001, 42.9429420000001], [23.860039, 42.9399625], [23.8690185, 42.935684], [23.8697355, 42.9329080000001], [23.8611045000001, 42.9236450000001], [23.860236, 42.9090115000001], [23.8711755, 42.892275], [23.872011, 42.8795660000001], [23.8808005000001, 42.8560705], [23.8889545000001, 42.8598180000001], [23.8998775000001, 42.8577645010001], [23.9244995, 42.8592170000001], [23.9303295, 42.86474], [23.938319, 42.8717165], [23.9498100000001, 42.873211999], [23.9715, 42.8705830000001], [23.9673295000001, 42.8781980000001], [23.9713345000001, 42.8805740000001], [23.9761475, 42.8777565], [23.9854365, 42.8777400000001], [23.991943, 42.8874334990001], [23.9978175000001, 42.8866015], [24.0081730000001, 42.8910740000001], [24.0153925000001, 42.8993665], [24.0227180000001, 42.8992735], [24.0369585, 42.9064280000001], [24.053252, 42.917204], [24.0588735000001, 42.9189335], [24.0808530000001, 42.9316745], [24.0794935000001, 42.9354310000001], [24.0755820000001, 42.9352095], [24.0763395000001, 42.9400150000001], [24.089748, 42.9420585010001], [24.0915150000001, 42.9488935], [24.0865555, 42.9563770010001], [24.0756465000001, 42.9575425], [24.0621515, 42.964795], [24.064426, 42.9762970000001], [24.0654865000001, 42.981367], [24.0710920000001, 42.981234], [24.071402, 42.9849745000001], [24.0769135, 42.9844225000001], [24.0679510000001, 42.9890205], [24.0589815000001, 43.0019050000001], [24.058167, 43.0145200000001], [24.0548525, 43.021308], [24.0443355, 43.0272555000001], [24.0421255000001, 43.03024], [24.045955, 43.0450880000001], [24.0439485000001, 43.0599290000001], [24.0354195, 43.0623105000001], [24.0185320000001, 43.064352], [24.0125925, 43.0595825], [24.003682, 43.0515305000001], [23.9986235000001, 43.0511490000001], [23.9813835, 43.0544775010001], [23.9715035, 43.0622515000001], [23.971346, 43.0623285], [23.9631005, 43.0503325], [23.9626430000001, 43.032222001], [23.9460405, 43.0254855000001], [23.935169, 43.0258205000001], [23.9246850000001, 43.0303520000001], [23.928776, 43.0363815000001], [23.9249695, 43.0408675], [23.91078, 43.0450725000001], [23.8866870000001, 43.046053], [23.8777470000001, 43.053008], [23.8775285, 43.055031], [23.872872, 43.0480620010001], [23.850848, 43.0480074990001], [23.8449380000001, 43.038286], [23.852521, 43.0283205000001], [23.8595385, 43.024366999], [23.8606580000001, 43.019499501], [23.8533325000001, 43.006157], [23.8552245000001, 42.9942155000001], [23.8451260000001, 42.9893045000001], [23.8412885000001, 42.976661] ] ] },
+    "properties": {
+      "ISO": "BG-SFO34",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "58030",
+      "NAME_2": "Правец",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.143223, 43.1114205000001], [23.1245270000001, 43.11879], [23.112964, 43.11528], [23.1081855, 43.1223185000001], [23.1066080000001, 43.1260290000001], [23.101682, 43.1316675], [23.0888145000001, 43.1460015000001], [23.0709254700001, 43.1614818680001], [23.070752, 43.1616320000001], [23.070837, 43.1624425], [23.0684695, 43.1650274990001], [23.0585035, 43.1610915000001], [23.057961, 43.1683780000001], [23.04537, 43.1696590000001], [23.042061, 43.179811], [23.0427395, 43.1845440000001], [23.039931, 43.184873501], [23.0252285, 43.1960064990001], [23.0146475, 43.197701501], [23.0062100000001, 43.1928785000001], [23.0063905000001, 43.1871125000001], [22.9864335, 43.1666660000001], [22.994469, 43.1621000000001], [22.9974260000001, 43.155829001], [22.9950865000001, 43.136128], [22.9832525, 43.1114650000001], [22.9527420000001, 43.0923895000001], [22.933273, 43.0882754990001], [22.918504, 43.080065], [22.909203, 43.0557625010001], [22.8997920000001, 43.048249501], [22.8970350000001, 43.035628499], [22.9000610000001, 43.0327829990001], [22.9083955, 43.0328925000001], [22.9389565000001, 43.0198385], [22.9325270000001, 43.009809499], [22.9354375, 43.005366], [22.934696, 43.0026975000001], [22.9528265000001, 42.9860810000001], [22.953784, 42.9824505010001], [22.9513785, 42.9748025000001], [22.9505595000001, 42.9679445], [22.9634985000001, 42.9667815], [22.9596480000001, 42.9594875000001], [22.9783610000001, 42.9580500000001], [22.9889785, 42.9558885000001], [22.9996935, 42.9577765000001], [23.009394, 42.9581065], [23.0179170000001, 42.9589215], [23.031169, 42.9602695], [23.045869, 42.9638675], [23.0551110000001, 42.96687], [23.064646, 42.9594645000001], [23.0677745, 42.9625885], [23.0732435, 42.9618080000001], [23.0791830000001, 42.9676890000001], [23.0801545000001, 42.9670695], [23.098419, 42.9658219990001], [23.1038310000001, 42.970513], [23.1169360000001, 42.9747630000001], [23.1193055, 42.9768780000001], [23.1206555000001, 42.9859635], [23.1276275000001, 42.9940875], [23.1289360000001, 42.9968825010001], [23.1227815, 43.0064560000001], [23.1217075000001, 43.0178995], [23.1198275, 43.02254], [23.1242505000001, 43.0264445], [23.1204075000001, 43.0321035000001], [23.13617, 43.0316515000001], [23.139615, 43.037044], [23.1508890000001, 43.0351194990001], [23.1698020000001, 43.0327070000001], [23.1748885000001, 43.0289700000001], [23.1805685, 43.0323605], [23.1750680000001, 43.0403475000001], [23.1782715000001, 43.048459001], [23.1865545000001, 43.0677200000001], [23.1958895000001, 43.0680355000001], [23.2214955000001, 43.0808195000001], [23.2285065, 43.0988735], [23.2134155000001, 43.110174], [23.204035, 43.113097], [23.1932935, 43.1165415], [23.1915705000001, 43.118159], [23.188452, 43.1160360000001], [23.1889875000001, 43.1123060000001], [23.1813445, 43.1098595], [23.1600875, 43.1108520000001], [23.143223, 43.1114205000001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO09",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "15309",
+      "NAME_2": "Годеч",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.9253815000001, 42.38242], [23.9310875, 42.381271999], [23.9362860000001, 42.3793220000001], [23.9585680000001, 42.3833015000001], [23.9708465000001, 42.3885395], [23.9971770000001, 42.3899710000001], [24.006113, 42.3944505000001], [24.0093755, 42.3881695000001], [24.0248060000001, 42.3907955000001], [24.0340615000001, 42.3977895], [24.0450090000001, 42.4092430000001], [24.0476800000001, 42.421080999], [24.046951, 42.428708], [24.0587380000001, 42.4497355], [24.0660565000001, 42.4499235000001], [24.05801, 42.4617295], [24.0444755, 42.4645370000001], [24.0375940000001, 42.4656425000001], [24.0074515000001, 42.4566465], [23.9894195000001, 42.453558], [23.9818435, 42.4581219990001], [23.9790590000001, 42.4665715], [23.9810605000001, 42.467273], [23.9788585000001, 42.4684575000001], [23.9669480000001, 42.4598085000001], [23.9626835, 42.4618880000001], [23.9658315, 42.4627235], [23.9640645000001, 42.4653870010001], [23.954258, 42.4636685], [23.9539115000001, 42.4659775000001], [23.9594955000001, 42.4702995000001], [23.9552860000001, 42.4789500000001], [23.9101250000001, 42.5039525], [23.9149360000001, 42.519665], [23.8958825, 42.536168499], [23.8953490000001, 42.5414850000001], [23.8904885000001, 42.546269501], [23.881197, 42.5518565], [23.862943, 42.5537935], [23.8435345, 42.5506800000001], [23.8363220000001, 42.5536504990001], [23.8344845, 42.5539285], [23.834527, 42.5687150000001], [23.822097, 42.5762045000001], [23.8184605000001, 42.5867965], [23.7968105, 42.5915595000001], [23.7948860000001, 42.5923025010001], [23.7926725, 42.5892375000001], [23.7775455, 42.5857245], [23.765675, 42.5884600000001], [23.764237, 42.5858170000001], [23.7540470000001, 42.594389], [23.7440745000001, 42.5925655], [23.7377530000001, 42.5998195000001], [23.726912, 42.5973529990001], [23.7290850000001, 42.5939345], [23.7156570000001, 42.595788], [23.7071025000001, 42.594457], [23.7035855, 42.5907359990001], [23.6933915000001, 42.5908920000001], [23.6711255000001, 42.5915795000001], [23.6671375, 42.5955375], [23.6639595, 42.5934145000001], [23.6623310000001, 42.5929215], [23.6584845, 42.586348501], [23.647278, 42.5832385], [23.6550405, 42.577590001], [23.6594195000001, 42.5640855], [23.6441840000001, 42.547688], [23.6419760000001, 42.541145], [23.6394305000001, 42.537135], [23.639638, 42.5228195], [23.6428515000001, 42.5158900000001], [23.6373550000001, 42.5103280000001], [23.624671, 42.5025875000001], [23.6301265000001, 42.500352999], [23.6271795000001, 42.4934045000001], [23.6221145000001, 42.4889420000001], [23.623503, 42.486529499], [23.6414125000001, 42.4802085000001], [23.648918, 42.4693255], [23.6492375, 42.4594530000001], [23.660577, 42.455727], [23.6588815000001, 42.4453675], [23.664028, 42.434262], [23.66236, 42.4217285], [23.6733320000001, 42.419355], [23.6759020000001, 42.4173185000001], [23.696828, 42.4167394990001], [23.7024775, 42.412319], [23.717794, 42.411161], [23.7327250000001, 42.404096], [23.7652115000001, 42.395203501], [23.7721250000001, 42.3919315000001], [23.7866000000001, 42.3910819990001], [23.792001, 42.3911660000001], [23.794879, 42.3867805], [23.8006195, 42.387409], [23.802067, 42.3874000000001], [23.8148210000001, 42.3810830000001], [23.8232235, 42.384684], [23.8266265, 42.3818835010001], [23.837164, 42.3815760000001], [23.8443555000001, 42.3733235], [23.8520320000001, 42.3851690000001], [23.8608815000001, 42.3816205000001], [23.8751405, 42.376932001], [23.8844800000001, 42.3801625], [23.9027570000001, 42.3863580010001], [23.9125375, 42.3853705000001], [23.9253815000001, 42.38242] ] ] },
+    "properties": {
+      "ISO": "BG-SFO20",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "32901",
+      "NAME_2": "Ихтиман",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [24.1542845000001, 42.615344501], [24.1783105000001, 42.6211979990001], [24.1959150000001, 42.6176955], [24.2054075, 42.6222185], [24.1997255000001, 42.6267345], [24.2077130000001, 42.6347375], [24.2043545, 42.6381984990001], [24.1907145000001, 42.634353], [24.1821105000001, 42.636540999], [24.1599735, 42.6610680000001], [24.1515420000001, 42.6727175], [24.153582, 42.7017445000001], [24.1701145000001, 42.7270395], [24.1799195, 42.7560470000001], [24.1800105, 42.7665025000001], [24.1487925000001, 42.7731880000001], [24.138135, 42.7761850000001], [24.127984, 42.7749480000001], [24.1114765, 42.7673740000001], [24.0941885, 42.7653695000001], [24.0907425, 42.762076], [24.0764575000001, 42.7574665000001], [24.0755425, 42.751112999], [24.0767785, 42.738411999], [24.0841425, 42.7327875], [24.0966690000001, 42.7305889990001], [24.1047510000001, 42.7162245000001], [24.1062195000001, 42.7116015], [24.110376, 42.711621], [24.11591, 42.7026660000001], [24.1121855000001, 42.6959400000001], [24.0986035, 42.690077], [24.0900875, 42.6825040000001], [24.1045845, 42.671098], [24.1060055, 42.6596979990001], [24.101233, 42.658243999], [24.099317, 42.6558864990001], [24.101613, 42.651545501], [24.1094150000001, 42.637709], [24.1156030000001, 42.6320480000001], [24.1281230000001, 42.6308815000001], [24.1329170000001, 42.6188815], [24.1427875000001, 42.6051259990001], [24.149526, 42.6075765], [24.15241, 42.6053115], [24.1542845000001, 42.615344501] ] ], [ [ [24.033889, 42.6280375000001], [24.0266665, 42.6319115000001], [24.0027015000001, 42.6303990010001], [23.9990595, 42.6311499990001], [23.999675, 42.633359], [23.9974030000001, 42.6360775000001], [23.9863750000001, 42.6326945000001], [23.9806005, 42.6344240000001], [23.9632260000001, 42.6179049990001], [23.9469530000001, 42.6113305000001], [23.966504, 42.5961195000001], [23.9616525000001, 42.5911369990001], [23.9610165, 42.5835655000001], [23.967591, 42.571169501], [23.9840555000001, 42.569754001], [23.990322, 42.56244], [24.0298145, 42.5458540000001], [24.0435595000001, 42.5482450000001], [24.0547465000001, 42.5574565000001], [24.0738680000001, 42.5613870010001], [24.0767240000001, 42.5640935000001], [24.076398, 42.5690065000001], [24.0859820000001, 42.5719480000001], [24.086528, 42.5761444990001], [24.0669275000001, 42.5911815000001], [24.0489020000001, 42.614531501], [24.0400115, 42.6158100000001], [24.0377255000001, 42.6220045000001], [24.033889, 42.6280375000001] ] ] ] },
+    "properties": {
+      "ISO": "BG-SFO47",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "31044",
+      "NAME_2": "Златица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.2425695000001, 42.7223295000001], [24.2290990000001, 42.7190640000001], [24.2199105, 42.7346445000001], [24.2210315, 42.748160499], [24.2269845000001, 42.7543245000001], [24.2254355000001, 42.7591990000001], [24.2292205000001, 42.7668985], [24.1907525, 42.7626120000001], [24.1800105, 42.7665025000001], [24.1799195, 42.7560470000001], [24.1701145000001, 42.7270395], [24.153582, 42.7017445000001], [24.1515420000001, 42.6727175], [24.1599735, 42.6610680000001], [24.1821105000001, 42.636540999], [24.1907145000001, 42.634353], [24.2043545, 42.6381984990001], [24.2077130000001, 42.6347375], [24.1997255000001, 42.6267345], [24.2054075, 42.6222185], [24.2117785, 42.618745], [24.2164005000001, 42.6227655000001], [24.217545, 42.6274754990001], [24.227927, 42.628997499], [24.234521, 42.6260680010001], [24.2486935000001, 42.6243565], [24.2608970000001, 42.6212905000001], [24.2722215000001, 42.6224970000001], [24.2760765, 42.625529], [24.2817585, 42.6228005], [24.2885525, 42.6240740000001], [24.3010915, 42.6291110010001], [24.3045925000001, 42.6350650000001], [24.2957865000001, 42.6532090000001], [24.3157255, 42.6585095], [24.3135805000001, 42.6640915], [24.3181375, 42.6673185000001], [24.3401615000001, 42.6721095], [24.3463080000001, 42.6917250010001], [24.345874, 42.6961275], [24.3353070000001, 42.7005060000001], [24.3322670000001, 42.7060315000001], [24.3046265, 42.7037045000001], [24.301298, 42.7159445010001], [24.2982410000001, 42.7193080000001], [24.2922775000001, 42.7230615], [24.2784365000001, 42.7175645], [24.2736185000001, 42.7194175000001], [24.2434955, 42.7168995000001], [24.2425695000001, 42.7223295000001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO55",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "56407",
+      "NAME_2": "Пирдоп",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.7891255000001, 42.6514040010001], [23.7912715000001, 42.6502669990001], [23.7956800000001, 42.650174], [23.7942600000001, 42.6470640000001], [23.7973680000001, 42.6449495000001], [23.8209850000001, 42.6398315000001], [23.8449325, 42.6286215000001], [23.8662175000001, 42.6282025], [23.8704500000001, 42.6336265], [23.8691435000001, 42.6384800000001], [23.8815660000001, 42.6431640000001], [23.8891235, 42.6526040000001], [23.8873165000001, 42.6555935000001], [23.8776980000001, 42.6612025000001], [23.866541, 42.6675069990001], [23.8757200000001, 42.6751955], [23.8799060000001, 42.674373501], [23.8829620000001, 42.67375], [23.8932315000001, 42.6866894990001], [23.899026, 42.704419], [23.9036360000001, 42.7200720000001], [23.898605, 42.7375215000001], [23.9040745, 42.7425455000001], [23.9010270000001, 42.752057], [23.9079980000001, 42.7606514990001], [23.9000695, 42.7635115], [23.9060325, 42.7724975], [23.9073855, 42.7790355010001], [23.8956785, 42.7812755], [23.896125, 42.7923450000001], [23.8813210000001, 42.8029285000001], [23.882056, 42.806973], [23.8876915000001, 42.8113220000001], [23.8748705, 42.8184420000001], [23.85761, 42.8182755], [23.8497155000001, 42.821448], [23.8456065, 42.8159010000001], [23.8287895, 42.812230501], [23.8259140000001, 42.8046995010001], [23.8154095, 42.80343], [23.8167125000001, 42.8015040000001], [23.81177, 42.793636], [23.800327, 42.7910475], [23.7676635, 42.8017130010001], [23.7631375, 42.8022065000001], [23.7748050000001, 42.7772340000001], [23.7735995, 42.774724], [23.75336, 42.769738999], [23.7382850000001, 42.7689545000001], [23.732285, 42.760256499], [23.71817, 42.7563450000001], [23.7144430000001, 42.7504935000001], [23.7040940000001, 42.7436765000001], [23.7001670000001, 42.7432670000001], [23.6935045000001, 42.7350685000001], [23.6917895, 42.7287155000001], [23.6852535, 42.7259175], [23.6795245000001, 42.7288115000001], [23.6715435, 42.7271070000001], [23.6639025000001, 42.718191], [23.6690130000001, 42.7028300000001], [23.6613155000001, 42.6968205000001], [23.6528490000001, 42.69913], [23.6438345, 42.692847], [23.6439590000001, 42.6863855], [23.65664, 42.682646], [23.661435, 42.6740745000001], [23.6635295, 42.6673685000001], [23.6644900000001, 42.6640695], [23.6645035, 42.6640115000001], [23.674658, 42.6548295000001], [23.6991625000001, 42.6525995010001], [23.7112815, 42.6617815010001], [23.717047, 42.6600070000001], [23.7249905, 42.645746499], [23.724165, 42.63946], [23.7354950000001, 42.6365470000001], [23.7641995000001, 42.6198125000001], [23.7713895000001, 42.630834], [23.7847200000001, 42.6405110000001], [23.7891255000001, 42.6514040010001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO10",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "16314",
+      "NAME_2": "Горна Малина",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.0138085, 42.784953999], [23.023849, 42.7860465000001], [23.0261810000001, 42.7950145], [23.0332990000001, 42.7954325000001], [23.033169, 42.7956980000001], [23.0391995000001, 42.798797], [23.0460015, 42.813740001], [23.0494600000001, 42.8158270000001], [23.0685980000001, 42.8296455], [23.0816495, 42.8328355], [23.0901905000001, 42.839281999], [23.0828460000001, 42.841421], [23.070408, 42.8522760000001], [23.0571180000001, 42.872468], [23.0587055, 42.883539], [23.0639795000001, 42.8882760000001], [23.0756645000001, 42.888583999], [23.0761945, 42.892523], [23.0723385000001, 42.9092095], [23.0606075000001, 42.9105660000001], [23.0490785000001, 42.9105555], [23.0395545000001, 42.9074745], [23.0248080000001, 42.8971040000001], [23.0247890000001, 42.8968385000001], [23.0079625000001, 42.9043634990001], [22.9806580000001, 42.9045140000001], [22.9713485, 42.9077300010001], [22.9660135, 42.9083155000001], [22.9549450000001, 42.9022250000001], [22.9470170000001, 42.889398], [22.9472485000001, 42.8855615000001], [22.917429, 42.892252], [22.9120070000001, 42.8924815010001], [22.9110315, 42.8878055000001], [22.9042385000001, 42.8856445000001], [22.905332, 42.8816005], [22.9102130000001, 42.8791415000001], [22.9015575, 42.8729480000001], [22.8912970000001, 42.8701350000001], [22.8851, 42.8697725000001], [22.8781295000001, 42.8627145], [22.8755340000001, 42.8536040000001], [22.8777995, 42.8511780000001], [22.8714600000001, 42.85013], [22.8669985, 42.852219501], [22.8528095, 42.8373495000001], [22.845021, 42.827932499], [22.8457115, 42.8228525000001], [22.854116, 42.8158965000001], [22.859763, 42.8149935000001], [22.8658060000001, 42.8099950000001], [22.8709855000001, 42.8100785], [22.8740240000001, 42.8137265], [22.8832715, 42.8270385000001], [22.88296, 42.8259065], [22.8926005000001, 42.8219675], [22.9045435, 42.8249890000001], [22.9105865, 42.813861], [22.9075530000001, 42.8063245000001], [22.90856, 42.8055005000001], [22.9146695000001, 42.798498001], [22.9136555000001, 42.7910880000001], [22.9151615000001, 42.789025999], [22.9207095, 42.7891925000001], [22.9397050000001, 42.7792220000001], [22.946857, 42.7707465], [22.9595785000001, 42.7778685000001], [22.970897, 42.7804380000001], [22.9824535000001, 42.7746724990001], [22.9950010000001, 42.776297], [22.994244, 42.7782015000001], [22.9971565000001, 42.78033], [23.009441, 42.7805200000001], [23.0138085, 42.784953999] ] ] },
+    "properties": {
+      "ISO": "BG-SFO45",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "67372",
+      "NAME_2": "Сливница",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.8239975000001, 43.0525825], [23.8101600000001, 43.0518500000001], [23.8128530000001, 43.0562235000001], [23.8033845, 43.0667910000001], [23.7892735, 43.068489], [23.7692805, 43.0667780000001], [23.7591370000001, 43.067882001], [23.7593615000001, 43.0707385010001], [23.7572535, 43.071043], [23.7558030000001, 43.0674585], [23.7429295000001, 43.0542170000001], [23.723059, 43.0402735000001], [23.6998295000001, 43.0269595], [23.697682, 43.0262805], [23.6892925000001, 43.027361], [23.6815195, 43.0326645000001], [23.6670545000001, 43.0346660000001], [23.6564710000001, 43.042492], [23.647523, 43.0452280000001], [23.6360855, 43.0593615000001], [23.6261900000001, 43.0580390000001], [23.6279385, 43.0548445000001], [23.620194, 43.0492090000001], [23.5929505, 43.0364880000001], [23.5906570000001, 43.0282980000001], [23.5800095000001, 43.0185575], [23.5763865000001, 43.004240999], [23.5711185000001, 42.9993965], [23.5665690000001, 42.9938930000001], [23.5661505, 42.987402499], [23.5725685, 42.9727475], [23.5852625000001, 42.969274], [23.5964040000001, 42.9603995000001], [23.5943485, 42.9577945], [23.5798315000001, 42.9528995000001], [23.5747650000001, 42.9474085000001], [23.5771975000001, 42.9402245000001], [23.5821730000001, 42.936155], [23.5806400000001, 42.9319265], [23.581978, 42.9236920000001], [23.6016755000001, 42.919115], [23.6003425000001, 42.9109089990001], [23.606364, 42.9015840000001], [23.6103095, 42.9002385000001], [23.6207525, 42.898156499], [23.6354925000001, 42.9004815000001], [23.6495325000001, 42.8947575], [23.6577905, 42.8834875000001], [23.678793, 42.8702960000001], [23.6785365000001, 42.8543605], [23.6769285, 42.844449501], [23.6786725000001, 42.8343345000001], [23.6871320000001, 42.832508999], [23.6947325, 42.8365465000001], [23.706263, 42.8358480000001], [23.7166265000001, 42.8340795], [23.7220365000001, 42.817275501], [23.727694, 42.809023], [23.7398005000001, 42.8096655000001], [23.7478850000001, 42.803291001], [23.7631375, 42.8022065000001], [23.7676635, 42.8017130010001], [23.800327, 42.7910475], [23.81177, 42.793636], [23.8167125000001, 42.8015040000001], [23.8154095, 42.80343], [23.8259140000001, 42.8046995010001], [23.8287895, 42.812230501], [23.8456065, 42.8159010000001], [23.8497155000001, 42.821448], [23.843894, 42.8288695000001], [23.8524110000001, 42.8307339990001], [23.8495535000001, 42.8491455000001], [23.8586425, 42.8579720000001], [23.8808005000001, 42.8560705], [23.872011, 42.8795660000001], [23.8711755, 42.892275], [23.860236, 42.9090115000001], [23.8611045000001, 42.9236450000001], [23.8697355, 42.9329080000001], [23.8690185, 42.935684], [23.860039, 42.9399625], [23.8565745000001, 42.9429420000001], [23.8583100000001, 42.9509090000001], [23.8442735, 42.9585909990001], [23.8359645, 42.9627595000001], [23.8356405000001, 42.9646275010001], [23.8375610000001, 42.9768770000001], [23.8412885000001, 42.976661], [23.8451260000001, 42.9893045000001], [23.8552245000001, 42.9942155000001], [23.8533325000001, 43.006157], [23.8606580000001, 43.019499501], [23.8595385, 43.024366999], [23.852521, 43.0283205000001], [23.8449380000001, 43.038286], [23.850848, 43.0480074990001], [23.8239975000001, 43.0525825] ] ] },
+    "properties": {
+      "ISO": "BG-SFO07",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "5815",
+      "NAME_2": "Ботевград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.9469530000001, 42.6113305000001], [23.9632260000001, 42.6179049990001], [23.9806005, 42.6344240000001], [23.9863750000001, 42.6326945000001], [23.9974030000001, 42.6360775000001], [23.999675, 42.633359], [23.9990595, 42.6311499990001], [24.0027015000001, 42.6303990010001], [24.0266665, 42.6319115000001], [24.033889, 42.6280375000001], [24.0377255000001, 42.6220045000001], [24.0399850000001, 42.6221619990001], [24.0422865, 42.629313], [24.0311080000001, 42.6431200000001], [24.0354235, 42.6530240000001], [24.0335490000001, 42.660855], [24.026256, 42.664727], [24.0242055000001, 42.6651375000001], [24.0207705, 42.6733955], [24.0213880000001, 42.6781569990001], [24.026643, 42.6841735], [24.0386255, 42.6844075000001], [24.0430485000001, 42.688925], [24.043436, 42.7032120000001], [24.0411350000001, 42.7102344990001], [24.028313, 42.712571999], [24.0206000000001, 42.7365355000001], [23.9911740000001, 42.7460305000001], [23.9698070000001, 42.7569295000001], [23.964794, 42.7578050000001], [23.9338700000001, 42.7668], [23.9259740000001, 42.773044], [23.9117015, 42.77777], [23.9073855, 42.7790355010001], [23.9060325, 42.7724975], [23.9000695, 42.7635115], [23.9079980000001, 42.7606514990001], [23.9010270000001, 42.752057], [23.9040745, 42.7425455000001], [23.898605, 42.7375215000001], [23.9036360000001, 42.7200720000001], [23.899026, 42.704419], [23.8932315000001, 42.6866894990001], [23.8829620000001, 42.67375], [23.8799060000001, 42.674373501], [23.8757200000001, 42.6751955], [23.866541, 42.6675069990001], [23.8776980000001, 42.6612025000001], [23.8873165000001, 42.6555935000001], [23.8891235, 42.6526040000001], [23.8815660000001, 42.6431640000001], [23.8691435000001, 42.6384800000001], [23.8704500000001, 42.6336265], [23.8942040000001, 42.6249855], [23.8968530000001, 42.6204919990001], [23.886984, 42.614510501], [23.8944320000001, 42.6008815000001], [23.8900190000001, 42.583698], [23.893805, 42.573725], [23.8847285000001, 42.5646175000001], [23.8837865, 42.554358], [23.881197, 42.5518565], [23.8904885000001, 42.546269501], [23.8996445, 42.5468330000001], [23.9076010000001, 42.5522485000001], [23.9169795, 42.560498001], [23.9372490000001, 42.5611994990001], [23.9533555, 42.5693235000001], [23.967591, 42.571169501], [23.9610165, 42.5835655000001], [23.9616525000001, 42.5911369990001], [23.966504, 42.5961195000001], [23.9469530000001, 42.6113305000001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO56",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "48324",
+      "NAME_2": "Мирково",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.2233495, 42.9493365000001], [23.2134965000001, 42.9522744990001], [23.2125350000001, 42.9581170000001], [23.2170305000001, 42.9640425000001], [23.208152, 42.9716085000001], [23.194574, 42.971837], [23.1915700000001, 42.9762075], [23.1860510000001, 42.9719805], [23.1734730000001, 42.9693005], [23.1573260000001, 42.9534840000001], [23.1544605, 42.964768], [23.162471, 42.9709705000001], [23.1613505, 42.9847130000001], [23.1653850000001, 42.990845], [23.146132, 42.9956085000001], [23.141688, 42.9921860000001], [23.1372270000001, 42.995844], [23.1276275000001, 42.9940875], [23.1206555000001, 42.9859635], [23.1193055, 42.9768780000001], [23.1169360000001, 42.9747630000001], [23.118345, 42.9724115000001], [23.118796, 42.9683435000001], [23.1291675000001, 42.9586785000001], [23.1303645, 42.9489095000001], [23.1289455, 42.9450440000001], [23.120028, 42.928017501], [23.1157225000001, 42.9247920010001], [23.1159300000001, 42.918037], [23.1130675000001, 42.9139960000001], [23.0789290000001, 42.9129695], [23.0723385000001, 42.9092095], [23.0761945, 42.892523], [23.0756645000001, 42.888583999], [23.0639795000001, 42.8882760000001], [23.0587055, 42.883539], [23.0571180000001, 42.872468], [23.070408, 42.8522760000001], [23.0828460000001, 42.841421], [23.0901905000001, 42.839281999], [23.092524, 42.8389875], [23.0963985000001, 42.8387700000001], [23.1057495000001, 42.8383815], [23.1083655000001, 42.8350175], [23.1135395000001, 42.8203915], [23.1098170000001, 42.8179370010001], [23.142348, 42.8123675], [23.171476, 42.7969325], [23.1817150000001, 42.793282], [23.209617, 42.7838245], [23.2153275000001, 42.784], [23.222028, 42.786324], [23.2417855, 42.7964830000001], [23.2478410000001, 42.7950430000001], [23.2507140000001, 42.797960001], [23.2510590000001, 42.8060750000001], [23.242778, 42.814154], [23.2423545, 42.817661], [23.2520680000001, 42.8262], [23.2511910000001, 42.8326450000001], [23.2539870000001, 42.834641], [23.2496365000001, 42.8401755], [23.255431, 42.849788], [23.2465665, 42.8644835000001], [23.2472540000001, 42.8666765], [23.2520680000001, 42.8725065], [23.2600870000001, 42.874962], [23.2644085000001, 42.8852505], [23.2638785, 42.8928460000001], [23.2738205000001, 42.8952550000001], [23.2805710000001, 42.9213070000001], [23.285778, 42.9247040000001], [23.2622125, 42.931634], [23.268114, 42.9475205000001], [23.2687825, 42.955763], [23.261734, 42.9551815], [23.2420845, 42.9571885], [23.2394, 42.9525355000001], [23.23314, 42.9518880000001], [23.2319535, 42.9494315000001], [23.2233495, 42.9493365000001] ] ] },
+    "properties": {
+      "ISO": "BG-SFO26",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68134",
+      "NAME_1": "SFO",
+      "TYPE_1": "Област",
+      "ID_2": "38978",
+      "NAME_2": "Костинброд",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.9125445, 43.1481405000001], [26.9089595, 43.156463], [26.9069620000001, 43.1603515], [26.9071675000001, 43.1637825010001], [26.898535, 43.1671115], [26.8959580000001, 43.1709225000001], [26.9001805, 43.1743705000001], [26.9049165000001, 43.1798225000001], [26.8984485, 43.186904], [26.9006670000001, 43.197779], [26.9129130000001, 43.2001215000001], [26.9149800000001, 43.205134001], [26.915626, 43.213671], [26.9061775000001, 43.2133260000001], [26.8921195, 43.2214405], [26.8930245, 43.2267315], [26.878226, 43.2436190000001], [26.8720305000001, 43.2464034990001], [26.8652480000001, 43.2454500000001], [26.8610015, 43.251924], [26.8622025, 43.2549735000001], [26.85952, 43.25732], [26.8481255, 43.259665], [26.84311, 43.2592215000001], [26.8377830000001, 43.2599615], [26.8118470000001, 43.2575850000001], [26.7866885, 43.2547945000001], [26.7760275000001, 43.2589655], [26.7730745000001, 43.2516885], [26.7744450000001, 43.2441135], [26.775474, 43.232761], [26.7697225000001, 43.2250370000001], [26.758926, 43.2047900000001], [26.7570565, 43.2027375000001], [26.734928, 43.2032375000001], [26.7359480000001, 43.19885], [26.7385140000001, 43.1989235], [26.7206365000001, 43.1734835], [26.729115, 43.169249], [26.7168545000001, 43.1618090000001], [26.7185865000001, 43.1529790000001], [26.706328, 43.152561001], [26.7024920000001, 43.1453740010001], [26.7058290000001, 43.1418215], [26.7119230000001, 43.1365105], [26.7280125, 43.1370494990001], [26.7305930000001, 43.1345840000001], [26.730891, 43.129488], [26.7419195000001, 43.1294185], [26.763361, 43.1311585], [26.7735375, 43.1168875000001], [26.7756845000001, 43.1154735010001], [26.78391, 43.115305], [26.7856115000001, 43.1131335000001], [26.7818185, 43.111411], [26.7839375, 43.110735], [26.814063, 43.1121295], [26.81534, 43.1063730000001], [26.8234830000001, 43.1064175000001], [26.8311185000001, 43.098847], [26.8306205000001, 43.0905525000001], [26.840159, 43.080787], [26.860328, 43.0754690000001], [26.8857400000001, 43.0668115], [26.8894215, 43.0677610000001], [26.9006680000001, 43.0780055000001], [26.9149845000001, 43.0737394990001], [26.9357210000001, 43.0604255000001], [26.9444435, 43.0602680000001], [26.9501920000001, 43.0667545000001], [26.9599665000001, 43.06552], [26.961978, 43.0700005], [26.9579430000001, 43.0737235], [26.978374, 43.0919950010001], [26.9905215000001, 43.0960940000001], [26.9946810000001, 43.093217], [26.9990955000001, 43.100376001], [26.9958785000001, 43.1098765], [26.9907275, 43.1121450000001], [26.9905440000001, 43.1185655], [26.9811350000001, 43.1300955], [26.9746285000001, 43.1340200000001], [26.96518, 43.1367685000001], [26.9610235000001, 43.1377625000001], [26.9510695000001, 43.1446025000001], [26.946872, 43.1516465], [26.9350565, 43.146643], [26.928506, 43.151034001], [26.9124735, 43.1375555000001], [26.9069285, 43.1386360000001], [26.9125445, 43.1481405000001] ] ] },
+    "properties": {
+      "ISO": "BG-SHU23",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "58222",
+      "NAME_2": "Велики Преслав",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.1406335, 43.5888675], [27.1414095000001, 43.5854585000001], [27.1495545000001, 43.5783525000001], [27.167331, 43.5830550000001], [27.1718235000001, 43.581707], [27.169181, 43.5781630000001], [27.1708185000001, 43.5775664990001], [27.1769675, 43.582595], [27.1754615, 43.589031], [27.1838675000001, 43.597463501], [27.1944385, 43.6067610000001], [27.1904075000001, 43.612552501], [27.1886375, 43.6195295000001], [27.21103, 43.636355], [27.2220175, 43.6333895000001], [27.2337805, 43.639894], [27.2372125000001, 43.6439795000001], [27.2215215000001, 43.6480225], [27.213785, 43.6542045000001], [27.2060240000001, 43.6617420000001], [27.2195365000001, 43.6646205000001], [27.1924270000001, 43.672539], [27.1821295, 43.6720425], [27.1816945, 43.676905499], [27.178279, 43.6794410000001], [27.1553085, 43.6726090000001], [27.1517695000001, 43.6685890000001], [27.1437215, 43.6686805000001], [27.1348850000001, 43.674877], [27.1270305, 43.6799685], [27.1076235, 43.6840090000001], [27.1059955000001, 43.6891200000001], [27.1074585000001, 43.7059065], [27.129808, 43.7107455], [27.1269715, 43.7180060000001], [27.1096915000001, 43.71155], [27.0818485, 43.7150980000001], [27.0819730000001, 43.7186370000001], [27.063702, 43.7207465000001], [27.0540130000001, 43.7157635], [27.0571660000001, 43.712223], [27.0395750000001, 43.7059550000001], [27.015951, 43.6970510000001], [27.0018885000001, 43.696867501], [27.0019565000001, 43.6916815000001], [27.0149715000001, 43.6814610000001], [27.0256620000001, 43.6769839990001], [27.0278720000001, 43.6669125000001], [27.0268985000001, 43.6595790010001], [27.0352505000001, 43.6574605000001], [27.0289785000001, 43.6511505], [27.0038040000001, 43.653261], [27.0004640000001, 43.6499025000001], [26.9892360000001, 43.6525360000001], [26.9849935, 43.6486320000001], [26.983105, 43.6416130000001], [26.9638755, 43.6277020000001], [26.9645235, 43.6246090000001], [26.9575645, 43.6061350000001], [26.9627585000001, 43.6057855], [26.993879, 43.6056295010001], [27.0019315000001, 43.6023970000001], [26.9996235, 43.5984349990001], [27.0194685000001, 43.595471], [27.0199075, 43.593103], [27.0222945, 43.5911935010001], [27.0230685000001, 43.5842290000001], [27.0212275000001, 43.5712585000001], [27.0143225000001, 43.5642050000001], [27.0237310000001, 43.5621505010001], [27.0206065, 43.5601570000001], [27.0227790000001, 43.5514444990001], [27.0241955000001, 43.5404545000001], [27.0254355000001, 43.528488], [27.0266, 43.5106230000001], [27.0221385, 43.5087780000001], [27.0399170000001, 43.5095205000001], [27.0604200000001, 43.507301001], [27.0680570000001, 43.50971], [27.058408, 43.4965465010001], [27.0698255, 43.4929660000001], [27.0693555, 43.4908175], [27.0614430000001, 43.4830210000001], [27.0508785000001, 43.4836334990001], [27.0625295, 43.4815970000001], [27.077887, 43.4834245000001], [27.0853875, 43.483275], [27.0913575000001, 43.4772195000001], [27.0928935000001, 43.482022], [27.1065585000001, 43.4867375000001], [27.1124165000001, 43.4938770000001], [27.1171035, 43.4942235010001], [27.1219445, 43.4906300000001], [27.1127245000001, 43.4978789990001], [27.1088550000001, 43.508544], [27.1118275000001, 43.5075819990001], [27.1387435, 43.5201674990001], [27.137661, 43.5235860000001], [27.1595520000001, 43.5303195010001], [27.1566470000001, 43.535645], [27.1459905, 43.5413455], [27.1380945000001, 43.5445250000001], [27.133139, 43.5542415], [27.1464710000001, 43.5614335010001], [27.1482315000001, 43.5677475000001], [27.1449355, 43.5745590000001], [27.1462745000001, 43.575574499], [27.1440515, 43.5788640000001], [27.1369015000001, 43.5853559990001], [27.1406335, 43.5888675] ] ] },
+    "properties": {
+      "ISO": "BG-SHU18",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "36079",
+      "NAME_2": "Каолиново",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.0735175, 43.2243265000001], [27.0565645, 43.2334085000001], [27.0460150000001, 43.2454929990001], [27.0441520000001, 43.2485195], [27.0485115000001, 43.251701], [27.039319, 43.2740225000001], [27.0280770000001, 43.2821979990001], [27.0382415, 43.2785025000001], [27.0722275000001, 43.2684590000001], [27.0788930000001, 43.2734165000001], [27.0940820000001, 43.2638150010001], [27.1161080000001, 43.2695400000001], [27.121115, 43.2746810000001], [27.119985, 43.2823045000001], [27.112898, 43.287899], [27.1057655000001, 43.2974960000001], [27.1013615000001, 43.3154460000001], [27.0905010000001, 43.3162340010001], [27.0973015000001, 43.325296], [27.0778530000001, 43.3334780000001], [27.0820915, 43.3390580000001], [27.0735950000001, 43.3433410000001], [27.0458475, 43.3480965000001], [27.0445215, 43.3559220000001], [27.046206, 43.3582855000001], [27.04252, 43.3621400000001], [27.0315360000001, 43.367425], [27.0290220000001, 43.3705005000001], [27.0315315, 43.3736515000001], [27.057763, 43.3988405000001], [27.0664380000001, 43.4107215010001], [27.0466520000001, 43.4339850000001], [26.9807805, 43.427942], [26.9993030000001, 43.4026004990001], [27.0103065000001, 43.387946001], [27.0157895, 43.3800165000001], [27.0142125, 43.372142], [27.0218130000001, 43.3701105000001], [27.0135185, 43.3672530000001], [27.013223, 43.3694770000001], [26.9886975000001, 43.369981501], [26.9793750000001, 43.3681520000001], [26.9794715, 43.3649735000001], [26.9848465000001, 43.3636240000001], [26.98114, 43.3597065010001], [26.9632315000001, 43.353150999], [26.95671, 43.3545534990001], [26.952276, 43.3557764990001], [26.9499805, 43.3515075], [26.92098, 43.362832], [26.9098125, 43.3676325000001], [26.8908675000001, 43.3648469990001], [26.8921645, 43.3536734990001], [26.8780305, 43.351525], [26.8712125000001, 43.3635340010001], [26.872265, 43.3720675000001], [26.8656425, 43.3771380000001], [26.8585995, 43.376239001], [26.8392020000001, 43.3799720000001], [26.8398, 43.3768305], [26.8243570000001, 43.3724045000001], [26.817256, 43.3628395000001], [26.8116845000001, 43.359480999], [26.813414, 43.3570930000001], [26.7949840000001, 43.3517845000001], [26.7932375, 43.354969], [26.7879475, 43.3576385000001], [26.7657865000001, 43.353732], [26.7611385000001, 43.3555460000001], [26.7529720000001, 43.343845], [26.7605095000001, 43.3437175], [26.761518, 43.3374655000001], [26.753972, 43.317482], [26.7427260000001, 43.303302], [26.7413295000001, 43.3002285000001], [26.7371145000001, 43.3010695], [26.7311255000001, 43.285131], [26.7445385, 43.2823975000001], [26.7426295000001, 43.2778505000001], [26.747197, 43.2741505000001], [26.754764, 43.2710785], [26.7645275, 43.2683615], [26.7665555, 43.266781], [26.7760275000001, 43.2589655], [26.7866885, 43.2547945000001], [26.8118470000001, 43.2575850000001], [26.8377830000001, 43.2599615], [26.84311, 43.2592215000001], [26.8481255, 43.259665], [26.85952, 43.25732], [26.8622025, 43.2549735000001], [26.8610015, 43.251924], [26.8652480000001, 43.2454500000001], [26.8720305000001, 43.2464034990001], [26.878226, 43.2436190000001], [26.8930245, 43.2267315], [26.8921195, 43.2214405], [26.9061775000001, 43.2133260000001], [26.915626, 43.213671], [26.9149800000001, 43.205134001], [26.9129130000001, 43.2001215000001], [26.9006670000001, 43.197779], [26.8984485, 43.186904], [26.9049165000001, 43.1798225000001], [26.9001805, 43.1743705000001], [26.8959580000001, 43.1709225000001], [26.898535, 43.1671115], [26.9071675000001, 43.1637825010001], [26.9069620000001, 43.1603515], [26.9089595, 43.156463], [26.9125445, 43.1481405000001], [26.9069285, 43.1386360000001], [26.9124735, 43.1375555000001], [26.928506, 43.151034001], [26.9350565, 43.146643], [26.946872, 43.1516465], [26.9510695000001, 43.1446025000001], [26.9610235000001, 43.1377625000001], [26.96518, 43.1367685000001], [26.9746285000001, 43.1340200000001], [26.9811350000001, 43.1300955], [26.9905440000001, 43.1185655], [26.9907275, 43.1121450000001], [26.9958785000001, 43.1098765], [27.0079675000001, 43.1068280000001], [27.0354115000001, 43.1085375000001], [27.0372265, 43.115368], [27.0428190000001, 43.1130064990001], [27.041349, 43.1139165010001], [27.0616605000001, 43.112984501], [27.0751020000001, 43.1104505000001], [27.0899700000001, 43.106437], [27.105131, 43.103421], [27.1066085, 43.114496], [27.109948, 43.1135650000001], [27.121856, 43.1099915], [27.1314955, 43.1132675000001], [27.145921, 43.1125030000001], [27.1630415000001, 43.1027995010001], [27.1613925, 43.1070340000001], [27.1656185000001, 43.118477999], [27.1812775000001, 43.137058], [27.1963470000001, 43.1516030000001], [27.211804, 43.1538570000001], [27.2046335000001, 43.1611655], [27.1804385, 43.16592], [27.1837075, 43.1684405], [27.18512, 43.174994], [27.180083, 43.1781445], [27.1773010000001, 43.1786215000001], [27.1724160000001, 43.1811505000001], [27.1734450000001, 43.184264501], [27.1663990000001, 43.1935230010001], [27.1519760000001, 43.2031690000001], [27.157271, 43.2148949990001], [27.1319050000001, 43.2253415000001], [27.1308940000001, 43.2164455010001], [27.0876455000001, 43.2256365000001], [27.0890905000001, 43.2281740000001], [27.0735175, 43.2243265000001] ] ] },
+    "properties": {
+      "ISO": "BG-SHU30",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "83510",
+      "NAME_2": "Шумен",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.3316555000001, 43.5389044990001], [27.3334285, 43.5418845], [27.3713015000001, 43.5483095000001], [27.3832185000001, 43.5550860000001], [27.3856700000001, 43.5590085000001], [27.4231735000001, 43.5779015000001], [27.4180215000001, 43.5856145010001], [27.4245050000001, 43.5884360000001], [27.4198010000001, 43.595418001], [27.4294635000001, 43.600267], [27.4339975, 43.6084660000001], [27.4142415000001, 43.6018040000001], [27.411794, 43.6050950000001], [27.4088365000001, 43.6093329990001], [27.4072850000001, 43.6130845000001], [27.3894605, 43.611413], [27.3877795000001, 43.6074615000001], [27.3472475, 43.5990245], [27.302918, 43.589795501], [27.3000045000001, 43.611371999], [27.2951155000001, 43.6234145000001], [27.2691070000001, 43.639978501], [27.2760410000001, 43.6423165], [27.2699255000001, 43.6459105000001], [27.2385565000001, 43.6440670000001], [27.2372125000001, 43.6439795000001], [27.2337805, 43.639894], [27.2220175, 43.6333895000001], [27.21103, 43.636355], [27.1886375, 43.6195295000001], [27.1904075000001, 43.612552501], [27.1944385, 43.6067610000001], [27.1838675000001, 43.597463501], [27.1754615, 43.589031], [27.1769675, 43.582595], [27.1708185000001, 43.5775664990001], [27.169181, 43.5781630000001], [27.1718235000001, 43.581707], [27.167331, 43.5830550000001], [27.1495545000001, 43.5783525000001], [27.1414095000001, 43.5854585000001], [27.1406335, 43.5888675], [27.1369015000001, 43.5853559990001], [27.1440515, 43.5788640000001], [27.1462745000001, 43.575574499], [27.1449355, 43.5745590000001], [27.1482315000001, 43.5677475000001], [27.1464710000001, 43.5614335010001], [27.133139, 43.5542415], [27.1380945000001, 43.5445250000001], [27.1459905, 43.5413455], [27.1566470000001, 43.535645], [27.1595520000001, 43.5303195010001], [27.137661, 43.5235860000001], [27.1387435, 43.5201674990001], [27.1118275000001, 43.5075819990001], [27.1088550000001, 43.508544], [27.1127245000001, 43.4978789990001], [27.1219445, 43.4906300000001], [27.1437110000001, 43.4917664990001], [27.1618715000001, 43.478731], [27.1668155, 43.4750770000001], [27.1616070000001, 43.456801001], [27.1643435, 43.4528575000001], [27.1718740000001, 43.457610001], [27.1844370000001, 43.458274999], [27.1881680000001, 43.4589980000001], [27.1956575, 43.4687280000001], [27.2022525, 43.4655970000001], [27.2066780000001, 43.4716760000001], [27.206396, 43.4784114990001], [27.2111140000001, 43.485871999], [27.2238835000001, 43.491097], [27.2364285, 43.4897305000001], [27.2508185, 43.4744600010001], [27.2738660000001, 43.4700535000001], [27.273374, 43.4819765], [27.285395, 43.5047910000001], [27.30116, 43.5088025000001], [27.305956, 43.5133325], [27.3044580000001, 43.5154345], [27.3076055000001, 43.5196040010001], [27.3244835, 43.5267920000001], [27.3316555000001, 43.5389044990001] ] ] },
+    "properties": {
+      "ISO": "BG-SHU21",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "51651",
+      "NAME_2": "Никола Козлево",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.0112105000001, 43.5032285], [27.013422, 43.5012970000001], [27.0183030000001, 43.508589], [27.0221385, 43.5087780000001], [27.0266, 43.5106230000001], [27.0254355000001, 43.528488], [27.0241955000001, 43.5404545000001], [27.0227790000001, 43.5514444990001], [27.0206065, 43.5601570000001], [27.0237310000001, 43.5621505010001], [27.0143225000001, 43.5642050000001], [27.0212275000001, 43.5712585000001], [27.0230685000001, 43.5842290000001], [27.0222945, 43.5911935010001], [27.0199075, 43.593103], [27.0194685000001, 43.595471], [26.9996235, 43.5984349990001], [27.0019315000001, 43.6023970000001], [26.993879, 43.6056295010001], [26.9627585000001, 43.6057855], [26.9575645, 43.6061350000001], [26.9299685, 43.597792499], [26.923726, 43.5933410010001], [26.905195, 43.5919985], [26.9019615, 43.6069200000001], [26.8940315, 43.6106770000001], [26.8782840000001, 43.5987890000001], [26.8639885000001, 43.5926095], [26.8730815000001, 43.5858265], [26.8635125000001, 43.579076], [26.8697490000001, 43.5713170000001], [26.862647, 43.5681935000001], [26.8518530000001, 43.563858], [26.82816, 43.559156], [26.827999, 43.5648375010001], [26.8161155, 43.5613295000001], [26.8006775000001, 43.5523580010001], [26.8085360000001, 43.546654], [26.7956125000001, 43.5273804990001], [26.8012420000001, 43.5272465], [26.8058525000001, 43.5330035010001], [26.8092790000001, 43.5291375], [26.817238, 43.5224964990001], [26.824579, 43.5077860010001], [26.8242020000001, 43.5044220010001], [26.825797, 43.5016555], [26.8117565000001, 43.494403], [26.80728, 43.4875930000001], [26.8078695, 43.4695580000001], [26.8251545000001, 43.4705000010001], [26.8332270000001, 43.4668425], [26.8468595000001, 43.4706885000001], [26.861255, 43.4618915], [26.8806825, 43.473124], [26.8779410000001, 43.4777764990001], [26.894842, 43.4786350000001], [26.8981115, 43.4794890000001], [26.8940450000001, 43.4728490000001], [26.899057, 43.4672350000001], [26.9223085, 43.4583925000001], [26.921841, 43.4659875], [26.9248690000001, 43.4712885000001], [26.9195105000001, 43.4831840000001], [26.9461670000001, 43.4902050010001], [26.945726, 43.496364], [26.9507675, 43.4975775010001], [26.9630965000001, 43.4967985010001], [26.9624045000001, 43.4948800000001], [26.9739565, 43.4940645], [26.9716730000001, 43.4863740000001], [26.9875515000001, 43.4877460000001], [27.0094955000001, 43.4901275], [27.0106740000001, 43.4929500000001], [27.0112105000001, 43.5032285] ] ] },
+    "properties": {
+      "ISO": "BG-SHU07",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "10642",
+      "NAME_2": "Венец",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.0850455, 43.0195385000001], [27.1139620000001, 43.032422], [27.1290475000001, 43.0330405], [27.1423520000001, 43.0326285], [27.1537080000001, 43.0307770000001], [27.174109, 43.029703], [27.1760185000001, 43.031731], [27.172668, 43.0330825], [27.1746025, 43.0404770000001], [27.182718, 43.0456960000001], [27.182511, 43.0432155], [27.1835865, 43.0398775], [27.1894415, 43.0376890000001], [27.2175455, 43.042375501], [27.223488, 43.041657], [27.2329835, 43.0401255], [27.233102, 43.040958], [27.2248960000001, 43.042082001], [27.2126730000001, 43.048657001], [27.2170185000001, 43.0536645010001], [27.2180890000001, 43.0574800000001], [27.2081905000001, 43.0638075], [27.2139270000001, 43.0742015000001], [27.192457, 43.0778100000001], [27.183387, 43.0715935000001], [27.166102, 43.0767935000001], [27.1819370000001, 43.0835365], [27.1814015, 43.0891070000001], [27.1755045, 43.097378], [27.1630415000001, 43.1027995010001], [27.145921, 43.1125030000001], [27.1314955, 43.1132675000001], [27.121856, 43.1099915], [27.109948, 43.1135650000001], [27.1066085, 43.114496], [27.105131, 43.103421], [27.0899700000001, 43.106437], [27.0751020000001, 43.1104505000001], [27.0616605000001, 43.112984501], [27.041349, 43.1139165010001], [27.0428190000001, 43.1130064990001], [27.0372265, 43.115368], [27.0354115000001, 43.1085375000001], [27.0079675000001, 43.1068280000001], [26.9958785000001, 43.1098765], [26.9990955000001, 43.100376001], [26.9946810000001, 43.093217], [26.9905215000001, 43.0960940000001], [26.978374, 43.0919950010001], [26.9579430000001, 43.0737235], [26.961978, 43.0700005], [26.9599665000001, 43.06552], [26.9501920000001, 43.0667545000001], [26.9444435, 43.0602680000001], [26.9357210000001, 43.0604255000001], [26.9149845000001, 43.0737394990001], [26.9006680000001, 43.0780055000001], [26.8894215, 43.0677610000001], [26.8870890000001, 43.065611], [26.8906165000001, 43.054016001], [26.9010910000001, 43.0395630000001], [26.896032, 43.0284375000001], [26.8912080000001, 43.0239755000001], [26.881135, 43.013137], [26.8788260000001, 43.0039585010001], [26.861181, 42.992691001], [26.8658185, 42.9846905000001], [26.870485, 42.9770555000001], [26.8614225000001, 42.9581025000001], [26.8611695000001, 42.9495205000001], [26.8692830000001, 42.9455225], [26.8994020000001, 42.9481690000001], [26.905361, 42.9368275], [26.9167425000001, 42.935322], [26.9169755, 42.9387505], [26.9209240000001, 42.9410675], [26.9353080000001, 42.935457], [26.953495, 42.9454215000001], [26.9777805, 42.9423985000001], [26.9865580000001, 42.9466320000001], [26.9934495000001, 42.9464390000001], [26.9949510000001, 42.9441115000001], [27.0018195000001, 42.926898001], [27.0060580000001, 42.9216210000001], [27.013272, 42.9269830000001], [27.0237525000001, 42.927066], [27.0387805, 42.9351855], [27.0508380000001, 42.934131501], [27.0606105000001, 42.9371120000001], [27.0910095, 42.947637], [27.0944335, 42.9539105000001], [27.0932300000001, 42.9647000000001], [27.0718620010001, 42.971888], [27.0669625, 42.9811885], [27.0657440000001, 42.9842600000001], [27.0676330000001, 43.0011660000001], [27.070771, 43.0067065000001], [27.0722680000001, 43.0134820000001], [27.0850455, 43.0195385000001] ] ] },
+    "properties": {
+      "ISO": "BG-SHU25",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "67708",
+      "NAME_2": "Смядово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.3267490000001, 43.4760150000001], [27.3353910000001, 43.4830045000001], [27.3383185000001, 43.485481], [27.3393885, 43.4949365], [27.3258805, 43.5036514990001], [27.307447, 43.505612], [27.307439, 43.511892], [27.305956, 43.5133325], [27.30116, 43.5088025000001], [27.285395, 43.5047910000001], [27.273374, 43.4819765], [27.2738660000001, 43.4700535000001], [27.2508185, 43.4744600010001], [27.2364285, 43.4897305000001], [27.2238835000001, 43.491097], [27.2111140000001, 43.485871999], [27.206396, 43.4784114990001], [27.2066780000001, 43.4716760000001], [27.2022525, 43.4655970000001], [27.1956575, 43.4687280000001], [27.1881680000001, 43.4589980000001], [27.1844370000001, 43.458274999], [27.1718740000001, 43.457610001], [27.1643435, 43.4528575000001], [27.1616070000001, 43.456801001], [27.1668155, 43.4750770000001], [27.1618715000001, 43.478731], [27.1437110000001, 43.4917664990001], [27.1219445, 43.4906300000001], [27.1171035, 43.4942235010001], [27.1124165000001, 43.4938770000001], [27.1065585000001, 43.4867375000001], [27.0928935000001, 43.482022], [27.0913575000001, 43.4772195000001], [27.0853875, 43.483275], [27.077887, 43.4834245000001], [27.0625295, 43.4815970000001], [27.0618050000001, 43.4538235000001], [27.0588315, 43.4521055000001], [27.0571560000001, 43.4615655000001], [27.0476715, 43.448378], [27.0486805, 43.440030499], [27.0466520000001, 43.4339850000001], [27.0664380000001, 43.4107215010001], [27.0793770000001, 43.410443], [27.0845180000001, 43.4140635000001], [27.088628, 43.4182474990001], [27.100223, 43.4162255000001], [27.106816, 43.4160485], [27.107493, 43.41141], [27.1191205000001, 43.3994589990001], [27.127935, 43.3993325000001], [27.127123, 43.391081], [27.13512, 43.3877494990001], [27.1601895000001, 43.3832685], [27.1606995000001, 43.3830065000001], [27.1531745, 43.359272], [27.156866, 43.3594650000001], [27.1561160000001, 43.3360500000001], [27.1559970000001, 43.3323580000001], [27.158848, 43.333223], [27.1672845000001, 43.3232475], [27.1729815, 43.323806499], [27.1856470000001, 43.317569001], [27.184787, 43.3135320000001], [27.199174, 43.3138995], [27.1986840000001, 43.3087404990001], [27.2020065, 43.3083565000001], [27.212024, 43.3079060000001], [27.214238, 43.299672], [27.2266535000001, 43.290265], [27.2382240000001, 43.2932175], [27.2445875, 43.2957480000001], [27.2397605, 43.2987705], [27.2444715, 43.304266501], [27.252417, 43.2981845000001], [27.2449855, 43.2950090000001], [27.2447330000001, 43.292069499], [27.2528760000001, 43.2926325], [27.2620785, 43.2917380010001], [27.2668295, 43.297828001], [27.2964515, 43.3033105000001], [27.2992955, 43.3074545000001], [27.2938730000001, 43.307625999], [27.2939715000001, 43.3280930000001], [27.3087850000001, 43.3268429990001], [27.3094390000001, 43.3290565], [27.306253, 43.335044], [27.2962840000001, 43.3391315000001], [27.293029, 43.343192], [27.292135, 43.343874], [27.2865545000001, 43.3539465000001], [27.2807930000001, 43.3582200000001], [27.2817555, 43.3731645], [27.2797415000001, 43.3755875000001], [27.2691595000001, 43.3757390000001], [27.2715675000001, 43.3812080000001], [27.2829005, 43.3876815], [27.2820750000001, 43.396778], [27.2835675000001, 43.3986475], [27.3019805000001, 43.3994645000001], [27.301361, 43.4092135000001], [27.3055705, 43.4092745], [27.309218, 43.4135465000001], [27.324437, 43.4141885000001], [27.3269340000001, 43.4144020000001], [27.3263125, 43.4218865], [27.3155180000001, 43.4204040000001], [27.31406, 43.4234785], [27.335836, 43.4261540000001], [27.324502, 43.434223], [27.345133, 43.4400605000001], [27.343016, 43.45433], [27.3467795, 43.457344], [27.342569, 43.462998], [27.3391145000001, 43.4619455000001], [27.3267490000001, 43.4760150000001] ] ] },
+    "properties": {
+      "ISO": "BG-SHU22",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "52009",
+      "NAME_2": "Нови пазар",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.1191205000001, 43.3994589990001], [27.107493, 43.41141], [27.106816, 43.4160485], [27.100223, 43.4162255000001], [27.088628, 43.4182474990001], [27.0845180000001, 43.4140635000001], [27.0793770000001, 43.410443], [27.0664380000001, 43.4107215010001], [27.057763, 43.3988405000001], [27.0315315, 43.3736515000001], [27.0290220000001, 43.3705005000001], [27.0315360000001, 43.367425], [27.04252, 43.3621400000001], [27.046206, 43.3582855000001], [27.0445215, 43.3559220000001], [27.0458475, 43.3480965000001], [27.0735950000001, 43.3433410000001], [27.0820915, 43.3390580000001], [27.0778530000001, 43.3334780000001], [27.0973015000001, 43.325296], [27.0905010000001, 43.3162340010001], [27.1013615000001, 43.3154460000001], [27.1057655000001, 43.2974960000001], [27.112898, 43.287899], [27.119985, 43.2823045000001], [27.121115, 43.2746810000001], [27.1161080000001, 43.2695400000001], [27.0940820000001, 43.2638150010001], [27.0788930000001, 43.2734165000001], [27.0722275000001, 43.2684590000001], [27.0382415, 43.2785025000001], [27.0280770000001, 43.2821979990001], [27.039319, 43.2740225000001], [27.0485115000001, 43.251701], [27.0441520000001, 43.2485195], [27.0460150000001, 43.2454929990001], [27.0565645, 43.2334085000001], [27.0735175, 43.2243265000001], [27.0890905000001, 43.2281740000001], [27.0876455000001, 43.2256365000001], [27.1308940000001, 43.2164455010001], [27.1319050000001, 43.2253415000001], [27.157271, 43.2148949990001], [27.1519760000001, 43.2031690000001], [27.1663990000001, 43.1935230010001], [27.1734450000001, 43.184264501], [27.1724160000001, 43.1811505000001], [27.1773010000001, 43.1786215000001], [27.180083, 43.1781445], [27.18512, 43.174994], [27.2298455000001, 43.1620045000001], [27.250501, 43.1717130010001], [27.258523, 43.1783275000001], [27.258545, 43.182465], [27.2666525000001, 43.181707999], [27.2731250000001, 43.182827], [27.2843985000001, 43.1780635000001], [27.2954145, 43.1797510000001], [27.2939845000001, 43.1897500000001], [27.2833400000001, 43.1953555000001], [27.2816950000001, 43.20802], [27.2730685000001, 43.2243845], [27.2773475000001, 43.235184501], [27.275247, 43.2460310000001], [27.259829, 43.2478365010001], [27.256293, 43.262549], [27.2411245000001, 43.265608], [27.2402555, 43.270139], [27.2405820000001, 43.280016501], [27.244041, 43.2862450000001], [27.2514735, 43.285296499], [27.2528760000001, 43.2926325], [27.2447330000001, 43.292069499], [27.2449855, 43.2950090000001], [27.252417, 43.2981845000001], [27.2444715, 43.304266501], [27.2397605, 43.2987705], [27.2445875, 43.2957480000001], [27.2382240000001, 43.2932175], [27.2266535000001, 43.290265], [27.214238, 43.299672], [27.212024, 43.3079060000001], [27.2020065, 43.3083565000001], [27.1986840000001, 43.3087404990001], [27.199174, 43.3138995], [27.184787, 43.3135320000001], [27.1856470000001, 43.317569001], [27.1729815, 43.323806499], [27.1672845000001, 43.3232475], [27.158848, 43.333223], [27.1559970000001, 43.3323580000001], [27.1561160000001, 43.3360500000001], [27.156866, 43.3594650000001], [27.1531745, 43.359272], [27.1606995000001, 43.3830065000001], [27.1601895000001, 43.3832685], [27.13512, 43.3877494990001], [27.127123, 43.391081], [27.127935, 43.3993325000001], [27.1191205000001, 43.3994589990001] ] ] },
+    "properties": {
+      "ISO": "BG-SHU19",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "36587",
+      "NAME_2": "Каспичан",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.6192765000001, 43.00678], [26.614766, 43.006404499], [26.5914725000001, 42.990925001], [26.584959, 42.9848860000001], [26.579434, 42.9841905000001], [26.5777255, 42.9856970000001], [26.5678320000001, 42.978105], [26.5610100000001, 42.971072], [26.5568435000001, 42.955138], [26.556226, 42.9431430000001], [26.5564285, 42.9359500000001], [26.5591355, 42.9326545000001], [26.5543920000001, 42.928318], [26.556877, 42.9235820000001], [26.564627, 42.9276055], [26.5899885000001, 42.9201185000001], [26.5957355, 42.9267965000001], [26.6133810000001, 42.9269249990001], [26.627143, 42.9313520000001], [26.6308255000001, 42.9292520000001], [26.633294, 42.9232534990001], [26.6427100000001, 42.9251160000001], [26.650627, 42.9307955], [26.663392, 42.9319365010001], [26.6671095, 42.9291925000001], [26.6700010000001, 42.9169400000001], [26.6665170000001, 42.9147594990001], [26.6682470000001, 42.919411499], [26.666619, 42.9230670000001], [26.6636975000001, 42.9233740000001], [26.6560245000001, 42.9099830010001], [26.6500070000001, 42.9063175000001], [26.6519685000001, 42.903374001], [26.6631370000001, 42.9001625000001], [26.6774800000001, 42.899838], [26.6825195000001, 42.896754], [26.7018675, 42.9049335], [26.7078025000001, 42.901927501], [26.7232550000001, 42.9016369990001], [26.7303715, 42.8980225], [26.7321405000001, 42.9017009990001], [26.7348655000001, 42.9043345010001], [26.748928, 42.9033485], [26.7587070000001, 42.9047475], [26.7596255, 42.9072225], [26.7676070000001, 42.9176570000001], [26.7756650000001, 42.918281], [26.780226, 42.921608], [26.7834105000001, 42.9337845000001], [26.7961125, 42.9495085], [26.8068845, 42.9483565], [26.8188225000001, 42.9462105000001], [26.8313375000001, 42.9457885], [26.855358, 42.9392105000001], [26.8692830000001, 42.9455225], [26.8611695000001, 42.9495205000001], [26.8614225000001, 42.9581025000001], [26.870485, 42.9770555000001], [26.8658185, 42.9846905000001], [26.861181, 42.992691001], [26.8788260000001, 43.0039585010001], [26.881135, 43.013137], [26.8912080000001, 43.0239755000001], [26.896032, 43.0284375000001], [26.9010910000001, 43.0395630000001], [26.8906165000001, 43.054016001], [26.8870890000001, 43.065611], [26.8894215, 43.0677610000001], [26.8857400000001, 43.0668115], [26.860328, 43.0754690000001], [26.840159, 43.080787], [26.8306205000001, 43.0905525000001], [26.8311185000001, 43.098847], [26.8234830000001, 43.1064175000001], [26.81534, 43.1063730000001], [26.814063, 43.1121295], [26.7839375, 43.110735], [26.7818185, 43.111411], [26.7856115000001, 43.1131335000001], [26.78391, 43.115305], [26.7756845000001, 43.1154735010001], [26.7735375, 43.1168875000001], [26.763361, 43.1311585], [26.7419195000001, 43.1294185], [26.730891, 43.129488], [26.7305930000001, 43.1345840000001], [26.7280125, 43.1370494990001], [26.7119230000001, 43.1365105], [26.7058290000001, 43.1418215], [26.7024920000001, 43.1453740010001], [26.706328, 43.152561001], [26.702725, 43.1497645010001], [26.692307, 43.1503720000001], [26.692484, 43.1539745000001], [26.6695960000001, 43.1572380000001], [26.6622190000001, 43.1583555], [26.6604435, 43.1529155000001], [26.668957, 43.15236], [26.6761055000001, 43.1460900000001], [26.6674275, 43.1313425000001], [26.6657020000001, 43.1087619990001], [26.6719690000001, 43.108501001], [26.6744410000001, 43.0986975000001], [26.682846, 43.0908680000001], [26.6991835000001, 43.092313], [26.6971580000001, 43.0785435000001], [26.6892435, 43.0727055], [26.6659085000001, 43.075228501], [26.6634780000001, 43.0718355000001], [26.655221, 43.071536], [26.654388, 43.065838], [26.6611720000001, 43.0652190000001], [26.6646180000001, 43.0543240000001], [26.661841, 43.048657], [26.658034, 43.0481975000001], [26.6499470000001, 43.0452535000001], [26.6184815, 43.0469029990001], [26.615419, 43.0370645], [26.6165195, 43.0319575], [26.6111230000001, 43.0305120000001], [26.611343, 43.0280725000001], [26.6300815000001, 43.0240645000001], [26.6256405, 43.0169495000001], [26.638767, 43.0161585000001], [26.6409800000001, 43.020497], [26.6440165000001, 43.019623999], [26.6540165000001, 43.0164670010001], [26.6373765000001, 43.0131734990001], [26.622732, 43.005215499], [26.6192765000001, 43.00678] ] ] },
+    "properties": {
+      "ISO": "BG-SHU10",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "12766",
+      "NAME_2": "Върбица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.8006770000001, 43.4888825000001], [26.7898775, 43.4851265], [26.782411, 43.4904655], [26.772228, 43.489203], [26.759982, 43.4784945000001], [26.7699365, 43.467156], [26.7602250000001, 43.463156], [26.740711, 43.4577155000001], [26.7331370000001, 43.4590125], [26.7258570000001, 43.458239], [26.7183660000001, 43.4572620000001], [26.7156115, 43.4550085000001], [26.719595, 43.447342], [26.7360965, 43.438728], [26.7390725000001, 43.4409859990001], [26.7443700000001, 43.4388730000001], [26.745418, 43.4363494990001], [26.7433, 43.4329905000001], [26.7350145, 43.4173040000001], [26.7285265, 43.415128], [26.7280685000001, 43.4104760000001], [26.7304395, 43.4101035], [26.7334645, 43.409881], [26.7465705000001, 43.4093975010001], [26.757097, 43.4034145000001], [26.7578960000001, 43.4030785], [26.7585570000001, 43.402502], [26.7709380000001, 43.408242], [26.7754005, 43.4051985], [26.7796480000001, 43.4080610010001], [26.7833000000001, 43.402949], [26.7986990000001, 43.371853501], [26.797761, 43.3689615000001], [26.7954275000001, 43.3610105000001], [26.8006335000001, 43.3610245], [26.802016, 43.355939], [26.7932375, 43.354969], [26.7949840000001, 43.3517845000001], [26.813414, 43.3570930000001], [26.8116845000001, 43.359480999], [26.817256, 43.3628395000001], [26.8243570000001, 43.3724045000001], [26.8398, 43.3768305], [26.8392020000001, 43.3799720000001], [26.8585995, 43.376239001], [26.8656425, 43.3771380000001], [26.872265, 43.3720675000001], [26.8712125000001, 43.3635340010001], [26.8780305, 43.351525], [26.8921645, 43.3536734990001], [26.8908675000001, 43.3648469990001], [26.9098125, 43.3676325000001], [26.92098, 43.362832], [26.9499805, 43.3515075], [26.952276, 43.3557764990001], [26.95671, 43.3545534990001], [26.9632315000001, 43.353150999], [26.98114, 43.3597065010001], [26.9848465000001, 43.3636240000001], [26.9794715, 43.3649735000001], [26.9793750000001, 43.3681520000001], [26.9886975000001, 43.369981501], [27.013223, 43.3694770000001], [27.0135185, 43.3672530000001], [27.0218130000001, 43.3701105000001], [27.0142125, 43.372142], [27.0157895, 43.3800165000001], [27.0103065000001, 43.387946001], [26.9993030000001, 43.4026004990001], [26.9807805, 43.427942], [27.0466520000001, 43.4339850000001], [27.0486805, 43.440030499], [27.0476715, 43.448378], [27.0571560000001, 43.4615655000001], [27.0588315, 43.4521055000001], [27.0618050000001, 43.4538235000001], [27.0625295, 43.4815970000001], [27.0508785000001, 43.4836334990001], [27.0614430000001, 43.4830210000001], [27.0693555, 43.4908175], [27.0698255, 43.4929660000001], [27.058408, 43.4965465010001], [27.0680570000001, 43.50971], [27.0604200000001, 43.507301001], [27.0399170000001, 43.5095205000001], [27.0221385, 43.5087780000001], [27.0183030000001, 43.508589], [27.013422, 43.5012970000001], [27.0112105000001, 43.5032285], [27.0106740000001, 43.4929500000001], [27.0094955000001, 43.4901275], [26.9875515000001, 43.4877460000001], [26.9716730000001, 43.4863740000001], [26.9739565, 43.4940645], [26.9624045000001, 43.4948800000001], [26.9630965000001, 43.4967985010001], [26.9507675, 43.4975775010001], [26.945726, 43.496364], [26.9461670000001, 43.4902050010001], [26.9195105000001, 43.4831840000001], [26.9248690000001, 43.4712885000001], [26.921841, 43.4659875], [26.9223085, 43.4583925000001], [26.899057, 43.4672350000001], [26.8940450000001, 43.4728490000001], [26.8981115, 43.4794890000001], [26.894842, 43.4786350000001], [26.8779410000001, 43.4777764990001], [26.8806825, 43.473124], [26.861255, 43.4618915], [26.8468595000001, 43.4706885000001], [26.8332270000001, 43.4668425], [26.8251545000001, 43.4705000010001], [26.8078695, 43.4695580000001], [26.80728, 43.4875930000001], [26.8006770000001, 43.4888825000001] ] ] },
+    "properties": {
+      "ISO": "BG-SHU11",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "83510",
+      "NAME_1": "SHU",
+      "TYPE_1": "Област",
+      "ID_2": "14516",
+      "NAME_2": "Хитрино",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.8060775000001, 42.4941995], [22.8013405, 42.4930850000001], [22.7985705, 42.477875], [22.8021180000001, 42.4695820000001], [22.8115480000001, 42.4563815000001], [22.8121995000001, 42.439167501], [22.8207100000001, 42.4382810000001], [22.8679470000001, 42.4714425000001], [22.886151, 42.4745115000001], [22.8757525, 42.4872515000001], [22.867061, 42.497777999], [22.8643205000001, 42.5008845], [22.8583935, 42.5017145], [22.858164, 42.5037095000001], [22.8534945000001, 42.5061155000001], [22.8706435, 42.5124895000001], [22.8857540000001, 42.5070640000001], [22.8844965000001, 42.51469], [22.8889775000001, 42.5201095], [22.9044025000001, 42.5283160000001], [22.902226, 42.5357114990001], [22.9090315, 42.5443555], [22.902209, 42.5429805010001], [22.9039875, 42.5523010000001], [22.8926505000001, 42.549765], [22.8911755, 42.5436795000001], [22.8830990000001, 42.5444830000001], [22.8706490000001, 42.5411935000001], [22.8586740000001, 42.5366280000001], [22.8502500000001, 42.5380065000001], [22.8473530000001, 42.545865], [22.847972, 42.551569], [22.8617115000001, 42.564762], [22.87685, 42.5731735], [22.8827365000001, 42.5770725], [22.880161, 42.5861990000001], [22.8727725000001, 42.592943], [22.8576045, 42.599161], [22.8549165000001, 42.5994595000001], [22.8628630000001, 42.6168005010001], [22.8615590000001, 42.6232945], [22.854522, 42.626177501], [22.8495350000001, 42.626433499], [22.8467650000001, 42.62771], [22.839748, 42.6163535000001], [22.8312090000001, 42.6132289990001], [22.8249020000001, 42.5976654990001], [22.8182125000001, 42.5990015], [22.8050630000001, 42.6092660000001], [22.8011510000001, 42.6154115000001], [22.8000040000001, 42.6166430000001], [22.7966995, 42.629442], [22.7911520000001, 42.628027], [22.7807925000001, 42.6323180000001], [22.7794405000001, 42.635541001], [22.7752590000001, 42.6321455], [22.776599, 42.6178835000001], [22.7704900000001, 42.6179774990001], [22.7632125000001, 42.6097265000001], [22.7624045000001, 42.6027185], [22.769146, 42.594077], [22.774059, 42.5889915000001], [22.7593655000001, 42.5879075], [22.7520445000001, 42.5751210000001], [22.7605725, 42.5714350000001], [22.7661430000001, 42.5628360000001], [22.7664975000001, 42.5584055], [22.7642000000001, 42.5515320000001], [22.7614805000001, 42.5425985000001], [22.7630565000001, 42.5333515], [22.7669050000001, 42.5278575], [22.772072, 42.5250235], [22.779282, 42.5227370000001], [22.7808475, 42.5103475010001], [22.7809090000001, 42.5092285000001], [22.7881015, 42.5071165], [22.8060775000001, 42.4941995] ] ] },
+    "properties": {
+      "ISO": "BG-PER22",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55871",
+      "NAME_1": "PER",
+      "TYPE_1": "Област",
+      "ID_2": "37513",
+      "NAME_2": "Ковачевци",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.144346, 42.5868595000001], [23.139441, 42.5915615000001], [23.1396740000001, 42.594162499], [23.1530000000001, 42.605461], [23.1718510000001, 42.613634], [23.1729535000001, 42.6162370000001], [23.1707300000001, 42.6179320000001], [23.175144, 42.6239095], [23.1668300000001, 42.6337070000001], [23.162723, 42.6416145000001], [23.1730435000001, 42.649186], [23.1684000000001, 42.6575075000001], [23.1467190000001, 42.6622765000001], [23.146039, 42.664626001], [23.1434225, 42.6670905], [23.124014, 42.6700000000001], [23.1183510000001, 42.667219], [23.1151445, 42.6725980000001], [23.109513, 42.6743875000001], [23.1098515, 42.6841595000001], [23.1030205000001, 42.6894505000001], [23.1058380000001, 42.6948995000001], [23.0993280000001, 42.6937320000001], [23.0948375, 42.6927325], [23.0858595, 42.6918450000001], [23.0794925000001, 42.6950800000001], [23.0746730000001, 42.694090499], [23.0571835000001, 42.698522], [23.054833, 42.6989635], [23.056514, 42.7127340000001], [23.037428, 42.7174180000001], [23.0408550000001, 42.723349], [23.03914, 42.7278049990001], [23.0342665000001, 42.7369824990001], [23.0339540000001, 42.7458895], [23.034295, 42.7497595], [23.0338105000001, 42.7549330000001], [23.02248, 42.7546609990001], [22.987942, 42.7562184990001], [22.9864175000001, 42.7557150000001], [22.9849625000001, 42.747893499], [22.994919, 42.7414000000001], [22.9892785000001, 42.733801], [22.9805325, 42.7358750000001], [22.9718485000001, 42.7315135000001], [22.9658030000001, 42.7376659990001], [22.9601700000001, 42.7334425010001], [22.9549410000001, 42.724299], [22.953697, 42.7107045000001], [22.9621690000001, 42.6872655000001], [22.969384, 42.689762], [22.9707690000001, 42.6850660010001], [22.9773090000001, 42.6796820000001], [22.974678, 42.6679300000001], [22.965871, 42.660019999], [22.9619930000001, 42.656858001], [22.9578185, 42.659029], [22.9454625000001, 42.6507275010001], [22.9292125000001, 42.6452675], [22.9245505000001, 42.649166], [22.9271225000001, 42.6613075000001], [22.9162235000001, 42.6658310010001], [22.9076465000001, 42.6645965000001], [22.904229, 42.6657255000001], [22.8868575000001, 42.652109501], [22.8743495000001, 42.6479495], [22.8733455, 42.638896], [22.8673375000001, 42.629756501], [22.861993, 42.6263670000001], [22.857286, 42.6284565], [22.854522, 42.626177501], [22.8615590000001, 42.6232945], [22.8628630000001, 42.6168005010001], [22.8549165000001, 42.5994595000001], [22.8576045, 42.599161], [22.8727725000001, 42.592943], [22.880161, 42.5861990000001], [22.8879915000001, 42.5887880000001], [22.9040215000001, 42.5864730000001], [22.9100250000001, 42.582279], [22.920781, 42.5850495], [22.9293050000001, 42.5877255], [22.9382625000001, 42.5856995], [22.9384840000001, 42.584749], [22.9463035000001, 42.5846325000001], [22.948813, 42.5782335000001], [22.9711055000001, 42.579374], [22.9761095000001, 42.5741560000001], [23.0171525000001, 42.5675155000001], [23.0256425000001, 42.5677524990001], [23.0346240000001, 42.5577815], [23.0450955000001, 42.5581080000001], [23.0523380000001, 42.5503535], [23.0535255, 42.5502325], [23.0670250000001, 42.539924], [23.0674875, 42.5354515000001], [23.0744755000001, 42.5306130000001], [23.0771540000001, 42.5296200000001], [23.081078, 42.5294620000001], [23.0900785000001, 42.5239035000001], [23.107315, 42.508766], [23.1185445, 42.4981130000001], [23.1267345000001, 42.4879635010001], [23.1460715000001, 42.481232999], [23.153467, 42.4801225], [23.1647390000001, 42.463289], [23.178655, 42.459554], [23.1879430000001, 42.459004], [23.1959135000001, 42.4669905000001], [23.2114465, 42.4693065010001], [23.220713, 42.4660335], [23.221077, 42.4727895], [23.232989, 42.4827945000001], [23.2339855000001, 42.4913135], [23.2543705, 42.496701], [23.257571, 42.5027075], [23.2561255, 42.506856499], [23.259238, 42.5148060000001], [23.2675795000001, 42.5248605000001], [23.279528, 42.533444], [23.2843, 42.5318295000001], [23.2901870000001, 42.5327089990001], [23.2998475000001, 42.5447770000001], [23.2879425, 42.5541745], [23.2854415, 42.561625], [23.2585545000001, 42.5636710000001], [23.2490030000001, 42.5714395000001], [23.2405900000001, 42.5709925], [23.2299855000001, 42.5753120000001], [23.224231, 42.5829965], [23.2142680000001, 42.585607001], [23.2116970000001, 42.585661499], [23.2096645, 42.5850585000001], [23.1982915, 42.5901375], [23.1820805, 42.5918169990001], [23.153668, 42.592094999], [23.144346, 42.5868595000001] ] ] },
+    "properties": {
+      "ISO": "BG-PER32",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55871",
+      "NAME_1": "PER",
+      "TYPE_1": "Област",
+      "ID_2": "55871",
+      "NAME_2": "Перник",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.9151615000001, 42.789025999], [22.9136555000001, 42.7910880000001], [22.9146695000001, 42.798498001], [22.90856, 42.8055005000001], [22.9075530000001, 42.8063245000001], [22.9105865, 42.813861], [22.9045435, 42.8249890000001], [22.8926005000001, 42.8219675], [22.88296, 42.8259065], [22.8832715, 42.8270385000001], [22.8740240000001, 42.8137265], [22.8709855000001, 42.8100785], [22.8658060000001, 42.8099950000001], [22.859763, 42.8149935000001], [22.854116, 42.8158965000001], [22.8457115, 42.8228525000001], [22.845021, 42.827932499], [22.8528095, 42.8373495000001], [22.8669985, 42.852219501], [22.8534740000001, 42.8580595], [22.8355110000001, 42.851905], [22.8290605, 42.8495], [22.8170890000001, 42.8351969990001], [22.8022770000001, 42.8470205], [22.7987615960001, 42.847057432], [22.798771, 42.8470405000001], [22.7963755000001, 42.8470825000001], [22.7803275000001, 42.8492195000001], [22.777857, 42.852671001], [22.7747515, 42.8550724990001], [22.7755470000001, 42.8479535000001], [22.7809245, 42.839252], [22.774816, 42.8337005000001], [22.7704415000001, 42.826534], [22.771773, 42.82386], [22.7747335, 42.8208045000001], [22.7750520000001, 42.819578], [22.7839395, 42.8096200000001], [22.789901, 42.8114695], [22.799203, 42.808228501], [22.8137085000001, 42.7784275000001], [22.8118335, 42.7769815], [22.8178090000001, 42.771438], [22.8094815000001, 42.769931], [22.8067735000001, 42.768265], [22.7940425, 42.7644070010001], [22.7685865, 42.7543295], [22.7602935, 42.7550935], [22.7542490000001, 42.7558865], [22.7374975000001, 42.7512430000001], [22.7312600000001, 42.7542155], [22.7204325000001, 42.7548600000001], [22.7132575000001, 42.7521375000001], [22.7081680000001, 42.738657501], [22.6929930000001, 42.7392300000001], [22.683813, 42.7312850000001], [22.6894605000001, 42.7214950000001], [22.683542, 42.7200340000001], [22.6709155, 42.7242155000001], [22.6677110000001, 42.7248685000001], [22.6498080000001, 42.714663], [22.6541315000001, 42.7086780000001], [22.650477, 42.7031955], [22.644263, 42.7078839990001], [22.6407570000001, 42.7108475000001], [22.6324230000001, 42.7058430010001], [22.6331220000001, 42.6955790000001], [22.6335055000001, 42.6945400000001], [22.6335825, 42.690523], [22.6355980000001, 42.6884029990001], [22.6380585000001, 42.674672], [22.6530015000001, 42.6650539990001], [22.6601150000001, 42.6663595000001], [22.6686225, 42.6620500000001], [22.6865295000001, 42.6492890000001], [22.6939415000001, 42.6527555000001], [22.7027005000001, 42.6507845], [22.7266460000001, 42.6527990000001], [22.7327710000001, 42.6506595000001], [22.7433475, 42.6504415000001], [22.7462100000001, 42.640653], [22.751738, 42.636640001], [22.761332, 42.6342050000001], [22.7679805000001, 42.6376520000001], [22.7723570000001, 42.6366255], [22.7747215000001, 42.6461665], [22.784258, 42.6579355000001], [22.7849625000001, 42.6570520000001], [22.797126, 42.6505445000001], [22.810592, 42.6414990010001], [22.8151115000001, 42.6338765], [22.8242700000001, 42.6343685000001], [22.8467650000001, 42.62771], [22.8495350000001, 42.626433499], [22.854522, 42.626177501], [22.857286, 42.6284565], [22.861993, 42.6263670000001], [22.8673375000001, 42.629756501], [22.8733455, 42.638896], [22.8743495000001, 42.6479495], [22.8868575000001, 42.652109501], [22.904229, 42.6657255000001], [22.9076465000001, 42.6645965000001], [22.9162235000001, 42.6658310010001], [22.9271225000001, 42.6613075000001], [22.9245505000001, 42.649166], [22.9292125000001, 42.6452675], [22.9454625000001, 42.6507275010001], [22.9578185, 42.659029], [22.9619930000001, 42.656858001], [22.965871, 42.660019999], [22.974678, 42.6679300000001], [22.9773090000001, 42.6796820000001], [22.9707690000001, 42.6850660010001], [22.969384, 42.689762], [22.9621690000001, 42.6872655000001], [22.953697, 42.7107045000001], [22.9549410000001, 42.724299], [22.9601700000001, 42.7334425010001], [22.9658030000001, 42.7376659990001], [22.9718485000001, 42.7315135000001], [22.9805325, 42.7358750000001], [22.9892785000001, 42.733801], [22.994919, 42.7414000000001], [22.9849625000001, 42.747893499], [22.9864175000001, 42.7557150000001], [22.987942, 42.7562184990001], [22.98731, 42.7623865000001], [22.9941045000001, 42.76633], [22.9824535000001, 42.7746724990001], [22.970897, 42.7804380000001], [22.9595785000001, 42.7778685000001], [22.946857, 42.7707465], [22.9397050000001, 42.7792220000001], [22.9207095, 42.7891925000001], [22.9151615000001, 42.789025999] ] ] },
+    "properties": {
+      "ISO": "BG-PER08",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55871",
+      "NAME_1": "PER",
+      "TYPE_1": "Област",
+      "ID_2": "6286",
+      "NAME_2": "Брезник",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.6601150000001, 42.6663595000001], [22.6530015000001, 42.6650539990001], [22.6380585000001, 42.674672], [22.6355980000001, 42.6884029990001], [22.6335825, 42.690523], [22.6216535, 42.6872395], [22.6248705, 42.679111], [22.6154275000001, 42.6574694990001], [22.6234335, 42.6529685], [22.6228705, 42.6430655], [22.6194465, 42.6412960010001], [22.6207435000001, 42.6367585], [22.621314, 42.6331700000001], [22.6255105000001, 42.6241785], [22.6398530000001, 42.6154525000001], [22.6477695, 42.614881], [22.6455760000001, 42.6069370000001], [22.659766, 42.6000759990001], [22.653327, 42.5891305000001], [22.6456170000001, 42.5855285000001], [22.648735, 42.566357001], [22.6421275000001, 42.5567145000001], [22.6510910000001, 42.5486780000001], [22.6528710000001, 42.5484125], [22.6527780000001, 42.522587001], [22.663096, 42.5180805000001], [22.6721315, 42.5233160000001], [22.676993, 42.5212895000001], [22.6910375, 42.516215], [22.6910090000001, 42.513738001], [22.6970385000001, 42.5116105000001], [22.7039125000001, 42.5173115000001], [22.7107935, 42.5090385], [22.7067230000001, 42.5026915], [22.7117845000001, 42.4962905], [22.7117940000001, 42.4898669990001], [22.7115390000001, 42.4837485], [22.709411, 42.4816785], [22.7017015000001, 42.483933], [22.6961270000001, 42.4809230000001], [22.6957115000001, 42.476613], [22.7013265000001, 42.4740285], [22.704263, 42.4736565000001], [22.7171720000001, 42.469139], [22.7314895000001, 42.4577760000001], [22.7287825, 42.4507285], [22.7310145000001, 42.436406], [22.7329145, 42.4361929990001], [22.7414420000001, 42.4322700000001], [22.7485315000001, 42.4260375000001], [22.7479525000001, 42.4215860000001], [22.750733, 42.4143425], [22.756917, 42.4197580000001], [22.766627, 42.4174390000001], [22.790219, 42.415649], [22.781546, 42.424472499], [22.7914825, 42.4261670000001], [22.8033245, 42.4227930000001], [22.8033215, 42.4254265000001], [22.8157695, 42.4361015000001], [22.8121995000001, 42.439167501], [22.8115480000001, 42.4563815000001], [22.8021180000001, 42.4695820000001], [22.7985705, 42.477875], [22.8013405, 42.4930850000001], [22.8060775000001, 42.4941995], [22.7881015, 42.5071165], [22.7809090000001, 42.5092285000001], [22.7808475, 42.5103475010001], [22.779282, 42.5227370000001], [22.772072, 42.5250235], [22.7669050000001, 42.5278575], [22.7630565000001, 42.5333515], [22.7614805000001, 42.5425985000001], [22.7642000000001, 42.5515320000001], [22.7664975000001, 42.5584055], [22.7661430000001, 42.5628360000001], [22.7605725, 42.5714350000001], [22.7520445000001, 42.5751210000001], [22.7593655000001, 42.5879075], [22.774059, 42.5889915000001], [22.769146, 42.594077], [22.7624045000001, 42.6027185], [22.7632125000001, 42.6097265000001], [22.7704900000001, 42.6179774990001], [22.776599, 42.6178835000001], [22.7752590000001, 42.6321455], [22.7794405000001, 42.635541001], [22.7807925000001, 42.6323180000001], [22.7911520000001, 42.628027], [22.7966995, 42.629442], [22.8000040000001, 42.6166430000001], [22.8011510000001, 42.6154115000001], [22.8050630000001, 42.6092660000001], [22.8182125000001, 42.5990015], [22.8249020000001, 42.5976654990001], [22.8312090000001, 42.6132289990001], [22.839748, 42.6163535000001], [22.8467650000001, 42.62771], [22.8242700000001, 42.6343685000001], [22.8151115000001, 42.6338765], [22.810592, 42.6414990010001], [22.797126, 42.6505445000001], [22.7849625000001, 42.6570520000001], [22.784258, 42.6579355000001], [22.7747215000001, 42.6461665], [22.7723570000001, 42.6366255], [22.7679805000001, 42.6376520000001], [22.761332, 42.6342050000001], [22.751738, 42.636640001], [22.7462100000001, 42.640653], [22.7433475, 42.6504415000001], [22.7327710000001, 42.6506595000001], [22.7266460000001, 42.6527990000001], [22.7027005000001, 42.6507845], [22.6939415000001, 42.6527555000001], [22.6865295000001, 42.6492890000001], [22.6686225, 42.6620500000001], [22.6601150000001, 42.6663595000001] ] ] },
+    "properties": {
+      "ISO": "BG-PER19",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55871",
+      "NAME_1": "PER",
+      "TYPE_1": "Област",
+      "ID_2": "30778",
+      "NAME_2": "Земен",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.770653, 42.8591930000001], [22.7682160000001, 42.8644735], [22.7713600000001, 42.869708501], [22.770583, 42.882086499], [22.7554885000001, 42.8844080000001], [22.7515770000001, 42.8867430000001], [22.7483995000001, 42.8897875000001], [22.73808, 42.8848435], [22.7300755000001, 42.888697], [22.713851, 42.886917], [22.6976165, 42.884441], [22.694581, 42.8813285000001], [22.6900175000001, 42.876025], [22.681522, 42.8720934990001], [22.6807915000001, 42.866676001], [22.6751825000001, 42.8667790000001], [22.6743505000001, 42.875394], [22.6564065000001, 42.8830065000001], [22.6494690000001, 42.8812495000001], [22.640363, 42.877962], [22.624696, 42.891919], [22.6194305000001, 42.8960065000001], [22.6039690000001, 42.8918639990001], [22.596506, 42.894185], [22.584075, 42.8920360010001], [22.5789565000001, 42.8821844990001], [22.5727440000001, 42.875595], [22.5721500000001, 42.871474], [22.5754480000001, 42.8628905], [22.536438, 42.8821004990001], [22.5262575, 42.8763220000001], [22.5250335000001, 42.8761230000001], [22.5231903920001, 42.8746549800001], [22.521149, 42.8735455], [22.5211715340001, 42.873047065], [22.5155105000001, 42.8685385000001], [22.5176575, 42.8617005], [22.5157620000001, 42.8567915], [22.5106235000001, 42.8543205], [22.497192, 42.8473734990001], [22.47313, 42.8314930000001], [22.4669960000001, 42.8328295000001], [22.4428215, 42.8254565010001], [22.4394305000001, 42.8220495], [22.4409170000001, 42.8057555], [22.449513, 42.7958150010001], [22.457001, 42.791333001], [22.459638, 42.7784070000001], [22.4673455000001, 42.7726280010001], [22.4756990000001, 42.7646065000001], [22.4871625000001, 42.748773], [22.4979920000001, 42.7450635000001], [22.5009160000001, 42.7391775], [22.4958405, 42.722383], [22.486527, 42.721505], [22.4763485, 42.710963501], [22.4710715000001, 42.6944185], [22.4585125, 42.6887850000001], [22.4605490000001, 42.683657], [22.4697615000001, 42.6818985], [22.4759715000001, 42.6757125], [22.472721, 42.6668975000001], [22.4588660000001, 42.6550780000001], [22.4614720000001, 42.6484905], [22.4637605, 42.6478745000001], [22.4742150000001, 42.6435215000001], [22.4967035, 42.6455665], [22.4996635000001, 42.6433695000001], [22.4985330000001, 42.638832], [22.500216, 42.6357475], [22.5105175000001, 42.6336855000001], [22.5200545000001, 42.6232195000001], [22.5262615, 42.6248085], [22.5284255, 42.622309], [22.538445, 42.630772], [22.5418720000001, 42.6287045], [22.5429590000001, 42.624649999], [22.5612765000001, 42.6298505010001], [22.5643215000001, 42.6249314990001], [22.573836, 42.630756499], [22.576787, 42.6377899990001], [22.5829965, 42.6386555], [22.585831, 42.6362755010001], [22.5953645000001, 42.6233315000001], [22.601729, 42.6168509990001], [22.6078700000001, 42.6047570000001], [22.603824, 42.5963855000001], [22.6085370000001, 42.5830570000001], [22.6083190000001, 42.581581], [22.61015, 42.5814940000001], [22.6147990000001, 42.570350499], [22.6252275, 42.5672970000001], [22.6285975000001, 42.5563965000001], [22.6421275000001, 42.5567145000001], [22.648735, 42.566357001], [22.6456170000001, 42.5855285000001], [22.653327, 42.5891305000001], [22.659766, 42.6000759990001], [22.6455760000001, 42.6069370000001], [22.6477695, 42.614881], [22.6398530000001, 42.6154525000001], [22.6255105000001, 42.6241785], [22.621314, 42.6331700000001], [22.6207435000001, 42.6367585], [22.6194465, 42.6412960010001], [22.6228705, 42.6430655], [22.6234335, 42.6529685], [22.6154275000001, 42.6574694990001], [22.6248705, 42.679111], [22.6216535, 42.6872395], [22.6335825, 42.690523], [22.6335055000001, 42.6945400000001], [22.6331220000001, 42.6955790000001], [22.6324230000001, 42.7058430010001], [22.6407570000001, 42.7108475000001], [22.644263, 42.7078839990001], [22.650477, 42.7031955], [22.6541315000001, 42.7086780000001], [22.6498080000001, 42.714663], [22.6677110000001, 42.7248685000001], [22.6709155, 42.7242155000001], [22.683542, 42.7200340000001], [22.6894605000001, 42.7214950000001], [22.683813, 42.7312850000001], [22.6929930000001, 42.7392300000001], [22.7081680000001, 42.738657501], [22.7132575000001, 42.7521375000001], [22.7204325000001, 42.7548600000001], [22.7312600000001, 42.7542155], [22.7374975000001, 42.7512430000001], [22.7542490000001, 42.7558865], [22.7602935, 42.7550935], [22.7685865, 42.7543295], [22.7940425, 42.7644070010001], [22.8067735000001, 42.768265], [22.8094815000001, 42.769931], [22.8178090000001, 42.771438], [22.8118335, 42.7769815], [22.8137085000001, 42.7784275000001], [22.799203, 42.808228501], [22.789901, 42.8114695], [22.7839395, 42.8096200000001], [22.7750520000001, 42.819578], [22.7747335, 42.8208045000001], [22.771773, 42.82386], [22.7704415000001, 42.826534], [22.774816, 42.8337005000001], [22.7809245, 42.839252], [22.7755470000001, 42.8479535000001], [22.7747515, 42.8550724990001], [22.770653, 42.8591930000001] ] ] },
+    "properties": {
+      "ISO": "BG-PER51",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55871",
+      "NAME_1": "PER",
+      "TYPE_1": "Област",
+      "ID_2": "73273",
+      "NAME_2": "Трън",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.2291685000001, 42.3930270010001], [23.2337190000001, 42.3967470000001], [23.2417970000001, 42.399822], [23.242169392, 42.404206698], [23.2424280000001, 42.404435], [23.2422347770001, 42.404976596], [23.2398785, 42.4115815000001], [23.2379070000001, 42.413717999], [23.2248055000001, 42.4191125020001], [23.222387, 42.423224501], [23.219366, 42.4294770010001], [23.218786, 42.432285001], [23.2183260000001, 42.4432550020001], [23.220713, 42.4660335], [23.2114465, 42.4693065010001], [23.1959135000001, 42.4669905000001], [23.1879430000001, 42.459004], [23.178655, 42.459554], [23.1647390000001, 42.463289], [23.153467, 42.4801225], [23.1460715000001, 42.481232999], [23.1267345000001, 42.4879635010001], [23.1185445, 42.4981130000001], [23.107315, 42.508766], [23.0900785000001, 42.5239035000001], [23.081078, 42.5294620000001], [23.0771540000001, 42.5296200000001], [23.0744755000001, 42.5306130000001], [23.0674875, 42.5354515000001], [23.0670250000001, 42.539924], [23.0535255, 42.5502325], [23.0523380000001, 42.5503535], [23.0450955000001, 42.5581080000001], [23.0346240000001, 42.5577815], [23.0256425000001, 42.5677524990001], [23.0171525000001, 42.5675155000001], [22.9761095000001, 42.5741560000001], [22.9711055000001, 42.579374], [22.948813, 42.5782335000001], [22.9463035000001, 42.5846325000001], [22.9384840000001, 42.584749], [22.9382625000001, 42.5856995], [22.9293050000001, 42.5877255], [22.920781, 42.5850495], [22.9100250000001, 42.582279], [22.9040215000001, 42.5864730000001], [22.8879915000001, 42.5887880000001], [22.880161, 42.5861990000001], [22.8827365000001, 42.5770725], [22.87685, 42.5731735], [22.8617115000001, 42.564762], [22.847972, 42.551569], [22.8473530000001, 42.545865], [22.8502500000001, 42.5380065000001], [22.8586740000001, 42.5366280000001], [22.8706490000001, 42.5411935000001], [22.8830990000001, 42.5444830000001], [22.8911755, 42.5436795000001], [22.8926505000001, 42.549765], [22.9039875, 42.5523010000001], [22.902209, 42.5429805010001], [22.9090315, 42.5443555], [22.902226, 42.5357114990001], [22.9044025000001, 42.5283160000001], [22.8889775000001, 42.5201095], [22.8844965000001, 42.51469], [22.8857540000001, 42.5070640000001], [22.8706435, 42.5124895000001], [22.8534945000001, 42.5061155000001], [22.858164, 42.5037095000001], [22.8583935, 42.5017145], [22.8643205000001, 42.5008845], [22.867061, 42.497777999], [22.8757525, 42.4872515000001], [22.886151, 42.4745115000001], [22.8679470000001, 42.4714425000001], [22.8207100000001, 42.4382810000001], [22.8121995000001, 42.439167501], [22.8157695, 42.4361015000001], [22.8033215, 42.4254265000001], [22.8033245, 42.4227930000001], [22.7914825, 42.4261670000001], [22.781546, 42.424472499], [22.790219, 42.415649], [22.7962715, 42.4078265000001], [22.7971695000001, 42.3954835000001], [22.8101595000001, 42.3868795000001], [22.805727, 42.3760115000001], [22.8199055000001, 42.376287], [22.837719, 42.3734745], [22.8408765, 42.3670165], [22.8536275000001, 42.3645845], [22.856835, 42.365772], [22.8720935000001, 42.3678315000001], [22.8791935, 42.3705185000001], [22.9020985, 42.3606485], [22.9067820000001, 42.3641025000001], [22.913576, 42.387346], [22.934894, 42.3897305], [22.9426570000001, 42.3956555], [22.9537020000001, 42.3966994990001], [22.967763, 42.392257], [22.9757445000001, 42.3892700000001], [22.9763605000001, 42.3884405000001], [22.9881085000001, 42.4020164990001], [22.994587, 42.404931], [23.000371, 42.4041925000001], [23.0067070000001, 42.4011995000001], [23.009331, 42.3948530000001], [23.0135095000001, 42.3915905000001], [23.0270905, 42.3912575000001], [23.026955, 42.3896040000001], [23.0287680000001, 42.3846790000001], [23.0366605, 42.376016], [23.0583225, 42.3798345000001], [23.0671120000001, 42.3777505], [23.0810500000001, 42.3671400000001], [23.0902990000001, 42.369622], [23.0927755000001, 42.3769455], [23.0894040000001, 42.3810535000001], [23.0937930000001, 42.3943630000001], [23.1061605, 42.4045765000001], [23.1090175, 42.4107965000001], [23.1204815, 42.4042115], [23.1257810000001, 42.4009604990001], [23.120578, 42.3944005000001], [23.1314115000001, 42.3794375000001], [23.141988, 42.3779935000001], [23.15759, 42.3814535000001], [23.165015, 42.38082], [23.167811, 42.3770690010001], [23.1727905000001, 42.3701225], [23.1693565, 42.365127], [23.1813300000001, 42.3656215], [23.193589, 42.3649360000001], [23.206261, 42.3727175000001], [23.224096, 42.3770215010001], [23.2291685000001, 42.3930270010001] ] ] },
+    "properties": {
+      "ISO": "BG-PER36",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55871",
+      "NAME_1": "PER",
+      "TYPE_1": "Област",
+      "ID_2": "61577",
+      "NAME_2": "Радомир",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.9770340000001, 41.4497400000001], [24.9863785000001, 41.4577125000001], [24.9863520000001, 41.4638590000001], [24.99769, 41.4665430000001], [25.0024710000001, 41.472827501], [25.0005840000001, 41.4808105000001], [25.0023, 41.4830690000001], [25.0096615, 41.4812655000001], [25.0152105, 41.4909085], [25.0253155, 41.490393], [25.0282110000001, 41.4943294990001], [25.0228555, 41.5081710000001], [25.0237485000001, 41.5109380000001], [25.030587, 41.5122265000001], [25.0314865, 41.5161235], [25.025541, 41.523101], [25.0211330000001, 41.525047], [25.0228505000001, 41.532291], [25.021664, 41.5375215], [25.0251400000001, 41.5410575000001], [25.0218150000001, 41.5534030000001], [25.0148585000001, 41.5588270000001], [25.0051080000001, 41.5614589990001], [24.9991450000001, 41.5672910000001], [25.0019820000001, 41.568939001], [25.0082215, 41.5863355010001], [25.0041605000001, 41.5902685], [25.0034245000001, 41.5949075], [24.9861355, 41.6004560000001], [24.9906395, 41.607879499], [24.985917, 41.6071305], [24.9750675, 41.609826501], [24.9678665000001, 41.6159185000001], [24.961079, 41.6148930000001], [24.95471, 41.6081825000001], [24.9544515000001, 41.608056], [24.9240305000001, 41.6022150000001], [24.914657, 41.588531001], [24.9178820000001, 41.5789655], [24.9106320000001, 41.5762760000001], [24.9120825000001, 41.567565501], [24.9105335, 41.5666645000001], [24.9108325, 41.554511], [24.8998280000001, 41.5535445], [24.8931595, 41.537044], [24.8822855, 41.5392625000001], [24.8746175000001, 41.5343205], [24.862196, 41.531388], [24.8632125, 41.5273450010001], [24.8733125000001, 41.5220115000001], [24.889464, 41.5060295000001], [24.8857385000001, 41.501971], [24.891781, 41.4878875000001], [24.8846980000001, 41.4774355000001], [24.8993410000001, 41.46745], [24.9063565000001, 41.4619890000001], [24.9130030000001, 41.4425020000001], [24.9131645000001, 41.4319265010001], [24.918953, 41.4291135], [24.9259535, 41.42774], [24.9469495000001, 41.4353895], [24.955876, 41.434261], [24.9631015000001, 41.4343710000001], [24.9597625000001, 41.4372345], [24.962249, 41.4405620000001], [24.973848, 41.443995], [24.9770340000001, 41.4497400000001] ] ] },
+    "properties": {
+      "ISO": "BG-SML16",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "46045",
+      "NAME_2": "Мадан",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.1979115, 41.5393769990001], [24.2107745000001, 41.5503390000001], [24.2128310000001, 41.5523825000001], [24.2292385000001, 41.5467645], [24.2339215000001, 41.553454], [24.2404845, 41.5624245010001], [24.2618365000001, 41.5735895010001], [24.2647445000001, 41.5797975], [24.2654390000001, 41.5972364990001], [24.2688650000001, 41.5999025], [24.282449, 41.6099785000001], [24.2826285, 41.6154315], [24.2867350000001, 41.6261195000001], [24.2899895, 41.628002001], [24.2884310000001, 41.6391100000001], [24.2832885, 41.6413170000001], [24.2875895, 41.6442915000001], [24.2794910000001, 41.650206], [24.271401, 41.6589885000001], [24.275065, 41.665424499], [24.2693835000001, 41.6737645000001], [24.249562, 41.674408], [24.2403150000001, 41.6775815], [24.2358105000001, 41.6762845000001], [24.2301605000001, 41.6803535010001], [24.2304675, 41.6904615], [24.220982, 41.7045745], [24.2263155000001, 41.713556001], [24.2248945000001, 41.719583001], [24.2056095, 41.7191825000001], [24.2013465000001, 41.7213755000001], [24.189982, 41.7214940000001], [24.180592, 41.7272485010001], [24.1818980000001, 41.7345300000001], [24.17888, 41.7398685000001], [24.1754525000001, 41.7379379990001], [24.156755, 41.7257960000001], [24.1348255, 41.7164115], [24.1243695000001, 41.708382499], [24.1078355000001, 41.7111825000001], [24.114583, 41.7033280000001], [24.0967380000001, 41.6970020000001], [24.0964105, 41.6935625], [24.100175, 41.692950501], [24.0936760000001, 41.6846405000001], [24.0831700000001, 41.6801145000001], [24.0745475000001, 41.6727040000001], [24.0968740000001, 41.6651295], [24.10697, 41.6571754990001], [24.1096075, 41.6521535000001], [24.1086525000001, 41.6462310000001], [24.10042, 41.639039], [24.0962730000001, 41.627694999], [24.0844690000001, 41.623136], [24.0845575000001, 41.6150645000001], [24.0819185, 41.604744], [24.087347, 41.596659501], [24.0923145, 41.5945115000001], [24.1112005000001, 41.5977845], [24.1148975, 41.595779], [24.1150725000001, 41.5898350000001], [24.1036715000001, 41.5854095], [24.0990095, 41.5868185], [24.0893395000001, 41.5859794990001], [24.0836120000001, 41.5823040000001], [24.0838430000001, 41.578923499], [24.0771530000001, 41.5759305], [24.0724635, 41.5674085000001], [24.0736965, 41.563], [24.0710970000001, 41.5547065000001], [24.0574245, 41.5290600000001], [24.059744, 41.522112], [24.0636955000001, 41.5270265], [24.075796, 41.5318175], [24.0771835, 41.5415605000001], [24.1022975000001, 41.5504445], [24.106028, 41.5452285000001], [24.1167895, 41.539721001], [24.1334485, 41.5333305010001], [24.15004, 41.5391795000001], [24.1579840000001, 41.5374830000001], [24.1605255000001, 41.53608], [24.1602785000001, 41.5291995000001], [24.1752270000001, 41.5154455000001], [24.1862715, 41.515052], [24.1919005, 41.518176], [24.1940035000001, 41.5220015], [24.1924675000001, 41.5318780000001], [24.1979115, 41.5393769990001] ] ] },
+    "properties": {
+      "ISO": "BG-SML10",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "23025",
+      "NAME_2": "Доспат",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.761958, 41.3759240000001], [24.7602505, 41.372034], [24.7679410000001, 41.3657500000001], [24.783956, 41.360189], [24.7892670000001, 41.3592635000001], [24.803345, 41.346060499], [24.8127005000001, 41.348963], [24.8156545000001, 41.3539469990001], [24.8144760000001, 41.370444499], [24.8179035000001, 41.3799905000001], [24.8223065, 41.3846605], [24.8192330000001, 41.4011420000001], [24.8384115000001, 41.3981665000001], [24.8482030000001, 41.399666999], [24.8680795000001, 41.3908065000001], [24.881535, 41.3921800000001], [24.8854010000001, 41.3990850000001], [24.8988160000001, 41.4078495000001], [24.9169640000001, 41.4084100000001], [24.918953, 41.4291135], [24.9131645000001, 41.4319265010001], [24.9130030000001, 41.4425020000001], [24.9063565000001, 41.4619890000001], [24.8993410000001, 41.46745], [24.8846980000001, 41.4774355000001], [24.891781, 41.4878875000001], [24.8857385000001, 41.501971], [24.889464, 41.5060295000001], [24.8733125000001, 41.5220115000001], [24.8632125, 41.5273450010001], [24.862196, 41.531388], [24.8458140000001, 41.5377335000001], [24.8444635000001, 41.5384290000001], [24.841104, 41.5340875000001], [24.8267990000001, 41.5332645], [24.8121275, 41.5291940000001], [24.8128990000001, 41.5227465], [24.8083, 41.5092565], [24.7934665, 41.508181], [24.7924165000001, 41.5053550000001], [24.7956965000001, 41.494632499], [24.7890580000001, 41.4978645], [24.7851380000001, 41.4980955], [24.7774575, 41.481591], [24.7710695000001, 41.4702090000001], [24.7671290000001, 41.4665300010001], [24.7683355, 41.4612710000001], [24.7635125000001, 41.45621], [24.7543175000001, 41.4507845000001], [24.7511155, 41.4474750000001], [24.7510120000001, 41.445095499], [24.7498295, 41.4398895], [24.7411795, 41.4298935], [24.732061, 41.426273001], [24.7225845, 41.416139], [24.7341975000001, 41.4127105000001], [24.7364885000001, 41.4093010010001], [24.7345585, 41.4052840000001], [24.7377335, 41.3992985], [24.7360985, 41.397968], [24.7460305000001, 41.3812645000001], [24.761958, 41.3759240000001] ] ] },
+    "properties": {
+      "ISO": "BG-SML27",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "63207",
+      "NAME_2": "Рудозем",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.7134955000001, 41.6624340000001], [24.7190505, 41.6700825], [24.7252115000001, 41.6780855000001], [24.7358370000001, 41.680259], [24.7432205000001, 41.6831735010001], [24.7413105000001, 41.6878105000001], [24.7527845000001, 41.7006805], [24.7508415, 41.7134315000001], [24.759438, 41.7123205], [24.7632550000001, 41.7192620000001], [24.7878700000001, 41.7315865], [24.7902770000001, 41.7321195010001], [24.7978445000001, 41.745459001], [24.796032, 41.748878], [24.8043700000001, 41.756109], [24.807559, 41.7635695000001], [24.7834085000001, 41.7677330000001], [24.7695210000001, 41.765681], [24.7643295, 41.7791795], [24.7490085000001, 41.781352], [24.7411255000001, 41.7965619990001], [24.7361275000001, 41.7998500000001], [24.740687, 41.8028080010001], [24.7568000000001, 41.8094780000001], [24.7712555000001, 41.8281275000001], [24.783461, 41.8404004990001], [24.7733450000001, 41.847185], [24.76079, 41.8693745], [24.761966, 41.8720365], [24.7528865, 41.8876285000001], [24.735685, 41.8932570000001], [24.7242495, 41.8902885000001], [24.713041, 41.8916780000001], [24.707319, 41.8989805000001], [24.693745, 41.903396], [24.6645950000001, 41.9068680010001], [24.6624485, 41.907203], [24.6565565000001, 41.9073260000001], [24.643924, 41.9028299990001], [24.6286465000001, 41.9037085000001], [24.6282735, 41.9024360000001], [24.6181060000001, 41.8935339990001], [24.6032205000001, 41.8925400000001], [24.5913670000001, 41.8846855], [24.57948, 41.8833195], [24.5685485000001, 41.8769320000001], [24.5575815, 41.8781135], [24.549022, 41.871762], [24.550642, 41.8628404990001], [24.548348, 41.8500615], [24.5568995, 41.832911499], [24.5486345, 41.826305], [24.549424, 41.823224], [24.543712, 41.8169735000001], [24.5425135, 41.8149530000001], [24.5431980000001, 41.8103655], [24.553842, 41.798277], [24.5565580000001, 41.7655885], [24.556384, 41.7631535], [24.5688870000001, 41.7577990010001], [24.5723275, 41.7557325000001], [24.583131, 41.750476], [24.5905250000001, 41.746136999], [24.5953480000001, 41.735489499], [24.615393, 41.7206505], [24.6263685000001, 41.7132005], [24.64338, 41.7029415000001], [24.643542, 41.699500001], [24.644052, 41.6977900000001], [24.6551125, 41.691541], [24.662992, 41.6855640000001], [24.6705390000001, 41.6772149990001], [24.6786755000001, 41.6758535000001], [24.6852755, 41.6733655], [24.68609, 41.6575490000001], [24.693181, 41.6506170000001], [24.6895920000001, 41.643741], [24.7143750000001, 41.6523780000001], [24.7163565000001, 41.6531475], [24.7134955000001, 41.6624340000001] ] ] },
+    "properties": {
+      "ISO": "BG-SML38",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "80371",
+      "NAME_2": "Чепеларе",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.387119, 41.64124], [24.384618, 41.648482501], [24.3813285000001, 41.6547345000001], [24.3739185000001, 41.653534], [24.3657160000001, 41.6471185], [24.3617705, 41.6477845000001], [24.3568745000001, 41.649031499], [24.3545105000001, 41.6520215], [24.3550705000001, 41.6573795], [24.3499675, 41.661553], [24.342065, 41.6635860010001], [24.3420315000001, 41.665219999], [24.3513330000001, 41.6739230000001], [24.3481155000001, 41.6783560000001], [24.3394365, 41.685635], [24.3374235000001, 41.693973], [24.3489450000001, 41.7122965], [24.351815, 41.7146505000001], [24.3480585, 41.7147884990001], [24.338787, 41.7220715], [24.334261, 41.7344714990001], [24.334935, 41.7393460010001], [24.344185, 41.7523215000001], [24.3299915000001, 41.7570045000001], [24.3267845, 41.758627501], [24.316781, 41.7497570000001], [24.3146935, 41.7498160000001], [24.3155485, 41.752705], [24.3138240000001, 41.7542715000001], [24.3083185, 41.754418], [24.3002165, 41.7445510000001], [24.2959220000001, 41.7401810000001], [24.2988345000001, 41.727943], [24.2957670000001, 41.7206795000001], [24.2760270000001, 41.7180695010001], [24.2698605, 41.7078545000001], [24.2535530000001, 41.7108650000001], [24.240236, 41.713540499], [24.2345615, 41.7210635000001], [24.2248945000001, 41.719583001], [24.2263155000001, 41.713556001], [24.220982, 41.7045745], [24.2304675, 41.6904615], [24.2301605000001, 41.6803535010001], [24.2358105000001, 41.6762845000001], [24.2403150000001, 41.6775815], [24.249562, 41.674408], [24.2693835000001, 41.6737645000001], [24.275065, 41.665424499], [24.271401, 41.6589885000001], [24.2794910000001, 41.650206], [24.2875895, 41.6442915000001], [24.2832885, 41.6413170000001], [24.2884310000001, 41.6391100000001], [24.2899895, 41.628002001], [24.2867350000001, 41.6261195000001], [24.2826285, 41.6154315], [24.282449, 41.6099785000001], [24.2688650000001, 41.5999025], [24.2654390000001, 41.5972364990001], [24.2647445000001, 41.5797975], [24.2618365000001, 41.5735895010001], [24.2626035000001, 41.5730005], [24.275382, 41.5680310010001], [24.2703310000001, 41.559246999], [24.2883065, 41.5511385], [24.302944, 41.5380765], [24.2952080000001, 41.5247895000001], [24.3019705, 41.5137770000001], [24.3111895000001, 41.513178], [24.3230760000001, 41.520254999], [24.331102, 41.5202090000001], [24.3375235, 41.5258949990001], [24.3432320000001, 41.524819], [24.3508170000001, 41.5248255010001], [24.3638445, 41.5164055010001], [24.369629, 41.5179485], [24.3705065, 41.522751], [24.3703880000001, 41.539048], [24.358544, 41.5422345000001], [24.356222824, 41.5496271450001], [24.3568030010001, 41.550755], [24.3600190010001, 41.5590740000001], [24.3539385, 41.568404], [24.3473480000001, 41.5728500000001], [24.341737, 41.5755120000001], [24.3287865, 41.5835875000001], [24.3246140000001, 41.5843235], [24.3242745000001, 41.590692], [24.3184150000001, 41.5998720000001], [24.319281, 41.6051925], [24.3224615, 41.6070550000001], [24.3393485, 41.5984720000001], [24.3550990000001, 41.604181001], [24.367125, 41.6029125000001], [24.3748535, 41.618999], [24.388562, 41.6253590000001], [24.387119, 41.64124] ] ] },
+    "properties": {
+      "ISO": "BG-SML05",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "5462",
+      "NAME_2": "Борино",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.0494595000001, 41.7981295000001], [25.032625, 41.8002690000001], [25.0285375, 41.8040585000001], [25.0353455000001, 41.8129695000001], [25.032856, 41.8195735000001], [25.0161315, 41.8270135000001], [25.0045530000001, 41.837233], [25.00188, 41.8391770000001], [24.9992185, 41.8327405000001], [24.9918925000001, 41.8312080000001], [24.9846410000001, 41.8236595000001], [24.9762605, 41.8166045], [24.9748075000001, 41.8122554990001], [24.9641455, 41.8055689990001], [24.9647160000001, 41.8015215], [24.9623505000001, 41.7851830000001], [24.9546745000001, 41.774725], [24.9535035000001, 41.7662340000001], [24.9576745000001, 41.7433960000001], [24.96838, 41.7440765000001], [24.96536, 41.740979001], [24.9644055000001, 41.7340270010001], [24.9601605, 41.7327315000001], [24.9345925000001, 41.7429245000001], [24.9201435, 41.741245], [24.9122515, 41.7398590000001], [24.911793, 41.7318440000001], [24.914751, 41.7249179990001], [24.9136580000001, 41.7210345], [24.907384, 41.7124945], [24.8999275, 41.7078960000001], [24.8857195, 41.7135480000001], [24.8715875, 41.7074105], [24.8731250000001, 41.7025935], [24.8749105000001, 41.6967995000001], [24.889731, 41.672539], [24.8923405, 41.6687140000001], [24.9142745, 41.6648000000001], [24.9207740000001, 41.6591270000001], [24.901278, 41.6553995], [24.9096740000001, 41.6293345], [24.912626, 41.6218720000001], [24.92067, 41.6165960000001], [24.9200115, 41.6090365000001], [24.9229855, 41.608329499], [24.9391210000001, 41.6191259990001], [24.9441875000001, 41.6183520000001], [24.95471, 41.6081825000001], [24.961079, 41.6148930000001], [24.9678665000001, 41.6159185000001], [24.9750675, 41.609826501], [24.985917, 41.6071305], [24.9906395, 41.607879499], [24.9861355, 41.6004560000001], [25.0034245000001, 41.5949075], [25.0041605000001, 41.5902685], [25.0082215, 41.5863355010001], [25.0148395000001, 41.5884405], [25.0180040000001, 41.5872565000001], [25.0263305, 41.590764], [25.044497, 41.5888185000001], [25.0502225000001, 41.5899650000001], [25.0638260000001, 41.5972830000001], [25.0713020000001, 41.603348499], [25.0784755, 41.6110839990001], [25.087434, 41.6114180000001], [25.099273, 41.6209004990001], [25.0940185000001, 41.6370660000001], [25.0882255000001, 41.637708], [25.0854305, 41.6408769990001], [25.091263, 41.653349], [25.0884365000001, 41.6650040000001], [25.0820985, 41.6757305], [25.0823120000001, 41.6767120000001], [25.0889915000001, 41.6818085], [25.077228, 41.6847780000001], [25.078602, 41.6929025000001], [25.072846, 41.7109], [25.069536, 41.717519999], [25.0690495000001, 41.718219], [25.0758225000001, 41.722564], [25.0779025000001, 41.7271400010001], [25.069358, 41.739811], [25.058096, 41.7366805], [25.0491045000001, 41.7461875000001], [25.0512860000001, 41.759437001], [25.0593950000001, 41.7766370000001], [25.0742245000001, 41.7934765000001], [25.058977, 41.8036220000001], [25.0494595000001, 41.7981295000001] ] ] },
+    "properties": {
+      "ISO": "BG-SML02",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "44402",
+      "NAME_2": "Баните",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.1673300000001, 41.4323355000001], [25.1757400000001, 41.430974], [25.1755645000001, 41.4362625], [25.1692075, 41.437445], [25.1653355, 41.4384165000001], [25.146915, 41.4369025], [25.143179, 41.4296015000001], [25.1298665, 41.4292195], [25.1094680000001, 41.432867], [25.0950330000001, 41.4369205], [25.0886305000001, 41.434585], [25.0718220000001, 41.4311295000001], [25.059514, 41.4427485000001], [25.0401505, 41.445644499], [25.0291600000001, 41.451383499], [25.0258485000001, 41.4522995], [25.01464, 41.452048], [25.0016365000001, 41.4521105000001], [24.9875720000001, 41.4566614990001], [24.9863785000001, 41.4577125000001], [24.9770340000001, 41.4497400000001], [24.973848, 41.443995], [24.962249, 41.4405620000001], [24.9597625000001, 41.4372345], [24.9631015000001, 41.4343710000001], [24.955876, 41.434261], [24.9469495000001, 41.4353895], [24.9259535, 41.42774], [24.918953, 41.4291135], [24.9169640000001, 41.4084100000001], [24.9180145, 41.4043955000001], [24.9236835, 41.4022140000001], [24.9412215, 41.3863930000001], [24.9490520000001, 41.387262999], [24.952616, 41.3878545000001], [24.977604, 41.375842], [24.9893005000001, 41.3769150000001], [25.0106220000001, 41.3726380000001], [25.033033, 41.3657585], [25.0441500000001, 41.3673515], [25.0638595, 41.360263], [25.065723, 41.352515], [25.0825265, 41.3384945], [25.0981155000001, 41.3341625], [25.1076565000001, 41.3389584990001], [25.115416, 41.3434500000001], [25.1262235, 41.3422565000001], [25.1223495, 41.3337275000001], [25.1319745000001, 41.3234245], [25.1448005, 41.3230510010001], [25.1597620000001, 41.3183005000001], [25.1627625, 41.3168445000001], [25.1706840000001, 41.313204], [25.1793755, 41.310188], [25.1695575000001, 41.3282130000001], [25.158706, 41.3326155], [25.1569270000001, 41.3346185], [25.1582100000001, 41.3371070000001], [25.1366640000001, 41.3404120000001], [25.127772, 41.3456765010001], [25.129307, 41.3570550000001], [25.1394740000001, 41.358859], [25.142881, 41.3660345000001], [25.1430515000001, 41.3673295], [25.1509415, 41.3761465000001], [25.1556775, 41.3780575000001], [25.161013, 41.385614], [25.1580595, 41.3878770000001], [25.158796, 41.3960585], [25.1573895000001, 41.3992020000001], [25.15747, 41.4027295000001], [25.1525950000001, 41.408375], [25.1555445000001, 41.413705], [25.167986, 41.413278], [25.1768665000001, 41.4190169990001], [25.1690975000001, 41.4220280000001], [25.167222, 41.4235515], [25.1683805000001, 41.4246509990001], [25.1673300000001, 41.4323355000001] ] ] },
+    "properties": {
+      "ISO": "BG-SML11",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "31111",
+      "NAME_2": "Златоград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.126791, 41.5158740000001], [25.1263465000001, 41.5177555000001], [25.1053860000001, 41.5263315], [25.1010935, 41.5246755000001], [25.0942470000001, 41.5196355], [25.0830290000001, 41.5058530000001], [25.083179, 41.497083], [25.082453, 41.4960485], [25.0807855, 41.4910535000001], [25.0762795000001, 41.4896995010001], [25.0610520000001, 41.4896235000001], [25.053499, 41.4957650000001], [25.0497945000001, 41.506623], [25.032545, 41.5152140000001], [25.0314865, 41.5161235], [25.030587, 41.5122265000001], [25.0237485000001, 41.5109380000001], [25.0228555, 41.5081710000001], [25.0282110000001, 41.4943294990001], [25.0253155, 41.490393], [25.0152105, 41.4909085], [25.0096615, 41.4812655000001], [25.0023, 41.4830690000001], [25.0005840000001, 41.4808105000001], [25.0024710000001, 41.472827501], [24.99769, 41.4665430000001], [24.9863520000001, 41.4638590000001], [24.9863785000001, 41.4577125000001], [24.9875720000001, 41.4566614990001], [25.0016365000001, 41.4521105000001], [25.01464, 41.452048], [25.0258485000001, 41.4522995], [25.0291600000001, 41.451383499], [25.0401505, 41.445644499], [25.059514, 41.4427485000001], [25.0718220000001, 41.4311295000001], [25.0886305000001, 41.434585], [25.0950330000001, 41.4369205], [25.1094680000001, 41.432867], [25.1298665, 41.4292195], [25.143179, 41.4296015000001], [25.146915, 41.4369025], [25.151682, 41.441033501], [25.1580760000001, 41.4511355000001], [25.1653860000001, 41.4581135], [25.1642900000001, 41.467049], [25.1692815000001, 41.4760095], [25.1708915, 41.4795570000001], [25.1724895, 41.4839145], [25.1669855000001, 41.4994725], [25.1641270000001, 41.500863], [25.1525905, 41.503997], [25.1484320000001, 41.5063845], [25.1384140000001, 41.5146395], [25.126791, 41.5158740000001] ] ] },
+    "properties": {
+      "ISO": "BG-SML18",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "51319",
+      "NAME_2": "Неделино",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.549424, 41.823224], [24.5486345, 41.826305], [24.5568995, 41.832911499], [24.548348, 41.8500615], [24.550642, 41.8628404990001], [24.549022, 41.871762], [24.5413375000001, 41.8825175000001], [24.533397, 41.885049], [24.518784, 41.8939245], [24.5202045, 41.9080000000001], [24.5105285000001, 41.918165], [24.5012820000001, 41.9175949990001], [24.4920545000001, 41.921031999], [24.472356, 41.9200415], [24.4645125000001, 41.9237185000001], [24.4526795, 41.9214210000001], [24.4485020000001, 41.9313240000001], [24.4441790000001, 41.9330340000001], [24.439807, 41.9382185000001], [24.4333015, 41.9361999990001], [24.4269580000001, 41.927106], [24.4373405000001, 41.9233664990001], [24.4490845, 41.905126001], [24.4481555, 41.9029755], [24.4441230000001, 41.8989195], [24.4386795, 41.8990539990001], [24.4231755000001, 41.8893860000001], [24.4208095000001, 41.8816060010001], [24.4192525, 41.8758205], [24.418802, 41.8702274990001], [24.4152100000001, 41.8716230000001], [24.3990425000001, 41.8644765000001], [24.3810595, 41.8646845000001], [24.3713965000001, 41.8578485], [24.3617980000001, 41.8599745000001], [24.3526660000001, 41.8442785010001], [24.3493995000001, 41.8416320000001], [24.3307810000001, 41.827926], [24.3331045, 41.817637], [24.3312215, 41.813297], [24.3218000000001, 41.8059900000001], [24.3191545, 41.798859], [24.3133785000001, 41.7810680000001], [24.3148380000001, 41.7710290000001], [24.3267845, 41.758627501], [24.3299915000001, 41.7570045000001], [24.344185, 41.7523215000001], [24.334935, 41.7393460010001], [24.334261, 41.7344714990001], [24.338787, 41.7220715], [24.3480585, 41.7147884990001], [24.351815, 41.7146505000001], [24.3489450000001, 41.7122965], [24.3374235000001, 41.693973], [24.3394365, 41.685635], [24.3481155000001, 41.6783560000001], [24.3513330000001, 41.6739230000001], [24.3420315000001, 41.665219999], [24.342065, 41.6635860010001], [24.3499675, 41.661553], [24.3550705000001, 41.6573795], [24.3545105000001, 41.6520215], [24.3568745000001, 41.649031499], [24.3617705, 41.6477845000001], [24.3657160000001, 41.6471185], [24.3739185000001, 41.653534], [24.3813285000001, 41.6547345000001], [24.384618, 41.648482501], [24.387119, 41.64124], [24.388562, 41.6253590000001], [24.3748535, 41.618999], [24.367125, 41.6029125000001], [24.3550990000001, 41.604181001], [24.3393485, 41.5984720000001], [24.3224615, 41.6070550000001], [24.319281, 41.6051925], [24.3184150000001, 41.5998720000001], [24.3242745000001, 41.590692], [24.3246140000001, 41.5843235], [24.3287865, 41.5835875000001], [24.341737, 41.5755120000001], [24.3473480000001, 41.5728500000001], [24.3539385, 41.568404], [24.3600190010001, 41.5590740000001], [24.3568030010001, 41.550755], [24.356222824, 41.5496271450001], [24.358544, 41.5422345000001], [24.3703880000001, 41.539048], [24.3705065, 41.522751], [24.374328, 41.5229395000001], [24.3783695000001, 41.5310480000001], [24.3841120000001, 41.536091501], [24.3952085, 41.538774], [24.4065215000001, 41.5398190000001], [24.410765, 41.538008], [24.4124605000001, 41.5308420000001], [24.4150225000001, 41.5287605], [24.4420615, 41.526777], [24.4501215, 41.5216385000001], [24.46317, 41.5288835000001], [24.4617095, 41.5406405000001], [24.4647665000001, 41.5453610000001], [24.4676555, 41.545396], [24.4738035, 41.547341999], [24.4737475000001, 41.551322], [24.4841300000001, 41.557570501], [24.4911280000001, 41.5570895000001], [24.4939265, 41.5534845], [24.4991590000001, 41.558613], [24.5019120000001, 41.571649], [24.4861625, 41.5821715000001], [24.4772750000001, 41.582575499], [24.4643565000001, 41.5904824990001], [24.4678765, 41.5969724990001], [24.4682730000001, 41.6038305010001], [24.465698, 41.6150450000001], [24.442037, 41.6123005000001], [24.4271235000001, 41.6150030000001], [24.4328335000001, 41.6212365000001], [24.4326365000001, 41.626785], [24.4450985, 41.6376940000001], [24.4346575000001, 41.642189499], [24.4330590000001, 41.6453965000001], [24.4372165, 41.6485285000001], [24.4394045, 41.6542335], [24.462224, 41.6472150000001], [24.4691480000001, 41.6520465], [24.4717840000001, 41.6615790000001], [24.488791, 41.6620335000001], [24.4992845, 41.6547735], [24.5043575, 41.6602425], [24.5070170000001, 41.6688335000001], [24.5186835000001, 41.677917], [24.5187550000001, 41.6862625000001], [24.5242275000001, 41.6932835000001], [24.503569, 41.7015500000001], [24.5222905000001, 41.6956650000001], [24.5327465, 41.6952415000001], [24.5512375000001, 41.7110470000001], [24.556115, 41.7174545], [24.5606490000001, 41.725936], [24.5648405000001, 41.7348240000001], [24.5682120000001, 41.750282], [24.5688870000001, 41.7577990010001], [24.556384, 41.7631535], [24.5565580000001, 41.7655885], [24.553842, 41.798277], [24.5431980000001, 41.8103655], [24.5425135, 41.8149530000001], [24.543712, 41.8169735000001], [24.549424, 41.823224] ] ] },
+    "properties": {
+      "ISO": "BG-SML09",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "20465",
+      "NAME_2": "Девин",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.7358370000001, 41.680259], [24.7252115000001, 41.6780855000001], [24.7190505, 41.6700825], [24.7134955000001, 41.6624340000001], [24.7163565000001, 41.6531475], [24.7143750000001, 41.6523780000001], [24.6895920000001, 41.643741], [24.693181, 41.6506170000001], [24.68609, 41.6575490000001], [24.6852755, 41.6733655], [24.6786755000001, 41.6758535000001], [24.6705390000001, 41.6772149990001], [24.662992, 41.6855640000001], [24.6551125, 41.691541], [24.644052, 41.6977900000001], [24.643542, 41.699500001], [24.64338, 41.7029415000001], [24.6263685000001, 41.7132005], [24.615393, 41.7206505], [24.5953480000001, 41.735489499], [24.5905250000001, 41.746136999], [24.583131, 41.750476], [24.5723275, 41.7557325000001], [24.5688870000001, 41.7577990010001], [24.5682120000001, 41.750282], [24.5648405000001, 41.7348240000001], [24.5606490000001, 41.725936], [24.556115, 41.7174545], [24.5512375000001, 41.7110470000001], [24.5327465, 41.6952415000001], [24.5222905000001, 41.6956650000001], [24.503569, 41.7015500000001], [24.5242275000001, 41.6932835000001], [24.5187550000001, 41.6862625000001], [24.5186835000001, 41.677917], [24.5070170000001, 41.6688335000001], [24.5043575, 41.6602425], [24.4992845, 41.6547735], [24.488791, 41.6620335000001], [24.4717840000001, 41.6615790000001], [24.4691480000001, 41.6520465], [24.462224, 41.6472150000001], [24.4394045, 41.6542335], [24.4372165, 41.6485285000001], [24.4330590000001, 41.6453965000001], [24.4346575000001, 41.642189499], [24.4450985, 41.6376940000001], [24.4326365000001, 41.626785], [24.4328335000001, 41.6212365000001], [24.4271235000001, 41.6150030000001], [24.442037, 41.6123005000001], [24.465698, 41.6150450000001], [24.4682730000001, 41.6038305010001], [24.4678765, 41.5969724990001], [24.4643565000001, 41.5904824990001], [24.4772750000001, 41.582575499], [24.4861625, 41.5821715000001], [24.5019120000001, 41.571649], [24.4991590000001, 41.558613], [24.5099010000001, 41.5588060000001], [24.5251700000001, 41.5688040000001], [24.5256370000001, 41.5687], [24.5345485, 41.564277001], [24.5340130000001, 41.5584235000001], [24.5362000000001, 41.5566959990001], [24.5427050000001, 41.557775], [24.5535540000001, 41.5504075000001], [24.5461020000001, 41.5392255000001], [24.5553055, 41.5247845000001], [24.5593930000001, 41.521645], [24.5636240000001, 41.5140620000001], [24.5608960000001, 41.5058875], [24.5617305000001, 41.5004510000001], [24.572458, 41.474947], [24.5827350000001, 41.47299], [24.5947655000001, 41.4671775], [24.5982805, 41.458890501], [24.5994605000001, 41.4563130000001], [24.5956945, 41.4479305], [24.5976375000001, 41.4409585000001], [24.6079095000001, 41.4276180000001], [24.6169515, 41.4240015], [24.6278475, 41.4318170000001], [24.6422245000001, 41.4307725], [24.6500235, 41.434986], [24.6639475000001, 41.4324255000001], [24.658717, 41.4265205], [24.655809, 41.4188125000001], [24.6738435, 41.4180180000001], [24.681429, 41.4250925010001], [24.6946395000001, 41.4193525000001], [24.7048820000001, 41.4202305000001], [24.7225845, 41.416139], [24.732061, 41.426273001], [24.7411795, 41.4298935], [24.7498295, 41.4398895], [24.7510120000001, 41.445095499], [24.7511155, 41.4474750000001], [24.7543175000001, 41.4507845000001], [24.7635125000001, 41.45621], [24.7683355, 41.4612710000001], [24.7671290000001, 41.4665300010001], [24.7710695000001, 41.4702090000001], [24.7774575, 41.481591], [24.7851380000001, 41.4980955], [24.7890580000001, 41.4978645], [24.7956965000001, 41.494632499], [24.7924165000001, 41.5053550000001], [24.7934665, 41.508181], [24.8083, 41.5092565], [24.8128990000001, 41.5227465], [24.8121275, 41.5291940000001], [24.8267990000001, 41.5332645], [24.841104, 41.5340875000001], [24.8444635000001, 41.5384290000001], [24.8458140000001, 41.5377335000001], [24.862196, 41.531388], [24.8746175000001, 41.5343205], [24.8822855, 41.5392625000001], [24.8931595, 41.537044], [24.8998280000001, 41.5535445], [24.9108325, 41.554511], [24.9105335, 41.5666645000001], [24.9120825000001, 41.567565501], [24.9106320000001, 41.5762760000001], [24.9178820000001, 41.5789655], [24.914657, 41.588531001], [24.9240305000001, 41.6022150000001], [24.9544515000001, 41.608056], [24.95471, 41.6081825000001], [24.9441875000001, 41.6183520000001], [24.9391210000001, 41.6191259990001], [24.9229855, 41.608329499], [24.9200115, 41.6090365000001], [24.92067, 41.6165960000001], [24.912626, 41.6218720000001], [24.9096740000001, 41.6293345], [24.901278, 41.6553995], [24.9207740000001, 41.6591270000001], [24.9142745, 41.6648000000001], [24.8923405, 41.6687140000001], [24.889731, 41.672539], [24.8749105000001, 41.6967995000001], [24.8731250000001, 41.7025935], [24.8715875, 41.7074105], [24.8539555, 41.7035245000001], [24.8516100000001, 41.6977755], [24.8534405, 41.695526], [24.852541, 41.689759], [24.8485655000001, 41.6836730000001], [24.8430740000001, 41.6830110000001], [24.8361915, 41.6867235], [24.82822, 41.692643], [24.8317995, 41.7018525], [24.8225315, 41.7048290000001], [24.8194205, 41.7049235000001], [24.8004985000001, 41.7113265], [24.7995075000001, 41.718841001], [24.7897885, 41.7187490000001], [24.7875365, 41.7257980000001], [24.7885405000001, 41.7311855], [24.7878700000001, 41.7315865], [24.7632550000001, 41.7192620000001], [24.759438, 41.7123205], [24.7508415, 41.7134315000001], [24.7527845000001, 41.7006805], [24.7413105000001, 41.6878105000001], [24.7432205000001, 41.6831735010001], [24.7358370000001, 41.680259] ] ] },
+    "properties": {
+      "ISO": "BG-SML31",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "67653",
+      "NAME_1": "SML",
+      "TYPE_1": "Област",
+      "ID_2": "67653",
+      "NAME_2": "Смолян",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.7316905000001, 42.1058090000001], [26.7344105, 42.1082064990001], [26.7235755, 42.1212175000001], [26.7233400000001, 42.122262], [26.7201700000001, 42.1346695], [26.7181515, 42.1324940000001], [26.6990685000001, 42.1338370010001], [26.7041570000001, 42.1412490000001], [26.6939925, 42.1451765], [26.6915925000001, 42.1493085000001], [26.6849105000001, 42.1548515000001], [26.6850385000001, 42.1642275], [26.695092, 42.1732165000001], [26.7017365, 42.1750079990001], [26.6966175000001, 42.180826], [26.6877190000001, 42.2040115], [26.691759, 42.2094714990001], [26.7090685000001, 42.2258675000001], [26.7244220000001, 42.2365150000001], [26.730959, 42.2313834990001], [26.7398850000001, 42.2446745], [26.7468655000001, 42.2609600000001], [26.747369, 42.2677295], [26.7659925, 42.2737265000001], [26.7509995, 42.2842410000001], [26.7450705000001, 42.2941805], [26.743687, 42.3067855], [26.7420415, 42.3145680010001], [26.7393940000001, 42.3155885], [26.6997125, 42.3040760000001], [26.6921850000001, 42.299292], [26.6801610000001, 42.2937695000001], [26.6738765000001, 42.2995205], [26.6675205, 42.2975795], [26.6556375000001, 42.298219999], [26.6392300000001, 42.2939275000001], [26.6060005000001, 42.2766255000001], [26.5960085, 42.27995], [26.5724135, 42.2720515], [26.57649, 42.2611284990001], [26.5857780000001, 42.2546825000001], [26.5845205000001, 42.247716], [26.5806155000001, 42.2467425], [26.584546, 42.2401780000001], [26.579008, 42.235848], [26.5746495000001, 42.2393939990001], [26.571288, 42.2346215000001], [26.5670910000001, 42.2320975000001], [26.5565405, 42.2374115000001], [26.5347550000001, 42.240752], [26.5341675, 42.237485], [26.5241445, 42.2341025000001], [26.5214865, 42.221933], [26.5159495, 42.2259895], [26.5091775000001, 42.2245245], [26.479136, 42.2242480000001], [26.4719135, 42.2216530000001], [26.471589275, 42.2250237610001], [26.471557236, 42.2246302570001], [26.472467, 42.2141080000001], [26.4607405, 42.2129725], [26.4539800000001, 42.2188755000001], [26.439445, 42.2232230000001], [26.423547, 42.2212845], [26.4108895, 42.226458], [26.409, 42.227335001], [26.3951210000001, 42.2312655000001], [26.3821815000001, 42.2120499990001], [26.3795335, 42.1940270000001], [26.380078, 42.1794715], [26.3719375000001, 42.170371], [26.380587, 42.171228], [26.3945775, 42.1597120000001], [26.4098795, 42.156261499], [26.4129290000001, 42.1519450010001], [26.4239375000001, 42.1538245], [26.4392290000001, 42.167513501], [26.4478635, 42.1707030000001], [26.447707, 42.1655595], [26.4498795000001, 42.1629855], [26.4694020000001, 42.15245], [26.4774255, 42.157584], [26.4718255, 42.162967], [26.490547, 42.1650555000001], [26.4890975000001, 42.1711060000001], [26.4914495, 42.1696845000001], [26.4967110000001, 42.1664290000001], [26.496051, 42.1547855000001], [26.4940325000001, 42.1538085], [26.4951580000001, 42.1457075000001], [26.5021100000001, 42.1466339990001], [26.5029125, 42.1507895], [26.5185230000001, 42.1572370000001], [26.538056, 42.1541969990001], [26.5238585000001, 42.138498999], [26.5296060000001, 42.1353345000001], [26.5342020000001, 42.1355605000001], [26.528892, 42.1326835], [26.5277160000001, 42.127355999], [26.5223350000001, 42.122781], [26.5136675000001, 42.1189755], [26.516508, 42.113255001], [26.5209110000001, 42.1108235], [26.5064550000001, 42.0984595], [26.5142875, 42.079417], [26.5101775000001, 42.075072], [26.514211, 42.0706175010001], [26.5090875000001, 42.0689925], [26.5073075, 42.0651930010001], [26.515366, 42.0581300000001], [26.526061, 42.0548245000001], [26.534074, 42.0472195], [26.535623, 42.0279160000001], [26.5175525000001, 42.0102380000001], [26.5085750000001, 42.0030035010001], [26.507864, 41.9999790000001], [26.5051510000001, 41.9944100000001], [26.5124695000001, 41.99078], [26.510412, 41.9876415000001], [26.5161335, 41.9824285], [26.5257225, 41.9805950000001], [26.526461, 41.9763065000001], [26.5215850000001, 41.9696480000001], [26.5226865000001, 41.9655645], [26.540192, 41.9563675000001], [26.5422060000001, 41.9514445], [26.5577375, 41.936874], [26.561291, 41.926678499], [26.5615445, 41.9262735], [26.5866565000001, 41.947666], [26.6185760000001, 41.9656870000001], [26.6233290000001, 41.9794810000001], [26.6365755, 41.9730185000001], [26.657898, 41.970154], [26.6681135000001, 41.964592], [26.673973, 41.9692575010001], [26.6787165000001, 41.9680060000001], [26.6790960000001, 41.9710235000001], [26.6807155000001, 41.967944501], [26.700901, 41.9662170010001], [26.7120400000001, 41.9685020000001], [26.7285440000001, 41.9608575], [26.7538185, 41.9584350000001], [26.759308, 41.970131], [26.773039, 41.9795950000001], [26.7793005, 41.9791755000001], [26.787407, 41.9896010000001], [26.7802560000001, 41.9995670000001], [26.7892925, 42.01077], [26.8014775, 42.015025], [26.7925900000001, 42.0173330000001], [26.7880835, 42.018649], [26.7646705, 42.0135505000001], [26.7446225000001, 42.0222305], [26.7385705, 42.021217], [26.737536, 42.0262090000001], [26.7414115, 42.040984], [26.7486855000001, 42.049561], [26.7327375, 42.061836999], [26.7290495, 42.0694030010001], [26.7374170000001, 42.0813830000001], [26.7329960000001, 42.087843999], [26.727603, 42.086845], [26.7260015000001, 42.0889715000001], [26.7324590000001, 42.1006275], [26.7316905000001, 42.1058090000001] ] ] },
+    "properties": {
+      "ISO": "BG-JAM07",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "87374",
+      "NAME_1": "JAM",
+      "TYPE_1": "Област",
+      "ID_2": "27382",
+      "NAME_2": "Елхово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.2857195, 42.4598635], [26.2872075000001, 42.4517535000001], [26.271865, 42.4523235], [26.271785, 42.4611355000001], [26.2625625000001, 42.465156001], [26.2516865000001, 42.4688185000001], [26.252502, 42.4704405000001], [26.2469545000001, 42.4724395010001], [26.238484, 42.4676420000001], [26.2324395000001, 42.4697810000001], [26.2252255000001, 42.4568540000001], [26.2323545, 42.4543445], [26.2367815000001, 42.4273385000001], [26.2395520000001, 42.4149780010001], [26.2367305000001, 42.4107264990001], [26.2352535000001, 42.407227], [26.224816, 42.4016990010001], [26.21198, 42.4075915000001], [26.1918745, 42.4082530000001], [26.192639, 42.4113565000001], [26.185706, 42.415436501], [26.1790635, 42.415101001], [26.1853420000001, 42.4031005000001], [26.1810360000001, 42.4027005], [26.1852235000001, 42.394409001], [26.1874585, 42.3762325000001], [26.1861200000001, 42.3613270000001], [26.1939905, 42.3595359990001], [26.2190600000001, 42.3662620000001], [26.2189355, 42.378631], [26.231906, 42.3800425000001], [26.2547055000001, 42.3696875010001], [26.2570565, 42.3693290000001], [26.2599070000001, 42.3662810000001], [26.2509450000001, 42.361282999], [26.2310755, 42.3444270000001], [26.2249655000001, 42.3274185000001], [26.2254365000001, 42.3170870000001], [26.2155105000001, 42.317668], [26.2158490000001, 42.3137350000001], [26.2133930000001, 42.3074179990001], [26.20446, 42.3032860000001], [26.2042985, 42.2854075010001], [26.1895305, 42.2854305000001], [26.175732, 42.2614610000001], [26.1684145, 42.2507135000001], [26.1706100000001, 42.2342075], [26.17495, 42.228664], [26.1763155, 42.2247200000001], [26.169701, 42.2208400000001], [26.1901015, 42.214524], [26.1927335, 42.20813], [26.1967120000001, 42.2060640010001], [26.198244, 42.2072635000001], [26.208765, 42.1993975], [26.218551, 42.1878330000001], [26.2357260000001, 42.194978501], [26.240818, 42.1924500000001], [26.2423295, 42.1921090000001], [26.2538135, 42.1868155000001], [26.267369, 42.1860525000001], [26.276573, 42.1769870000001], [26.3050365, 42.1747445], [26.3104975000001, 42.1736075000001], [26.3424585000001, 42.1616500000001], [26.3501525, 42.1643505000001], [26.3544265, 42.1616235000001], [26.3678345000001, 42.1618195], [26.370578, 42.1633565000001], [26.3719375000001, 42.170371], [26.380078, 42.1794715], [26.3795335, 42.1940270000001], [26.3821815000001, 42.2120499990001], [26.3951210000001, 42.2312655000001], [26.409, 42.227335001], [26.4108895, 42.226458], [26.423547, 42.2212845], [26.439445, 42.2232230000001], [26.4539800000001, 42.2188755000001], [26.4607405, 42.2129725], [26.472467, 42.2141080000001], [26.471557236, 42.2246302570001], [26.471589275, 42.2250237610001], [26.4719135, 42.2216530000001], [26.479136, 42.2242480000001], [26.5091775000001, 42.2245245], [26.5159495, 42.2259895], [26.5214865, 42.221933], [26.5241445, 42.2341025000001], [26.5341675, 42.237485], [26.5347550000001, 42.240752], [26.5565405, 42.2374115000001], [26.5670910000001, 42.2320975000001], [26.571288, 42.2346215000001], [26.5746495000001, 42.2393939990001], [26.579008, 42.235848], [26.584546, 42.2401780000001], [26.5806155000001, 42.2467425], [26.5845205000001, 42.247716], [26.5857780000001, 42.2546825000001], [26.57649, 42.2611284990001], [26.5724135, 42.2720515], [26.5960085, 42.27995], [26.6060005000001, 42.2766255000001], [26.6392300000001, 42.2939275000001], [26.6556375000001, 42.298219999], [26.6675205, 42.2975795], [26.6738765000001, 42.2995205], [26.6801610000001, 42.2937695000001], [26.6921850000001, 42.299292], [26.6997125, 42.3040760000001], [26.7393940000001, 42.3155885], [26.718734, 42.3236135000001], [26.7102975, 42.3302705], [26.709524, 42.3454755000001], [26.6962115000001, 42.3396994990001], [26.6818735000001, 42.3523550000001], [26.6818190000001, 42.3564030000001], [26.6858665, 42.364587], [26.683323, 42.3664850000001], [26.6878350000001, 42.3754135], [26.7113810000001, 42.3865345], [26.715269, 42.3821540010001], [26.7285215000001, 42.3940605000001], [26.7411055000001, 42.4056355000001], [26.7457850000001, 42.4124409990001], [26.7413730000001, 42.4206445], [26.7401525000001, 42.4340875], [26.7297205, 42.4281015], [26.7174365000001, 42.433971], [26.7072255, 42.434463], [26.6992260000001, 42.4346225], [26.7048970000001, 42.4424905000001], [26.704729, 42.4467050010001], [26.6980465, 42.4468630000001], [26.6941905, 42.450698], [26.7044980000001, 42.451108], [26.7060430000001, 42.464166], [26.703608, 42.473895], [26.6939430000001, 42.4804665], [26.6904640000001, 42.4881215010001], [26.6862330000001, 42.4897760000001], [26.6560125, 42.4900225000001], [26.6551225000001, 42.4962249990001], [26.6396175, 42.506875999], [26.636515, 42.5075640000001], [26.6322035000001, 42.5128055000001], [26.6115510000001, 42.509306], [26.6017140000001, 42.5142520000001], [26.5984325000001, 42.5261105010001], [26.5957005000001, 42.527722], [26.592342, 42.531533], [26.5804380000001, 42.5291575000001], [26.575231, 42.535695], [26.5830970000001, 42.537358], [26.5700475, 42.5486755000001], [26.5782315000001, 42.5552480000001], [26.566245, 42.563516], [26.5690935000001, 42.5772650000001], [26.5622375, 42.5736545], [26.5520525000001, 42.5682165010001], [26.5212665, 42.5753145], [26.5222775, 42.5783985], [26.5127855000001, 42.5774895000001], [26.5171785000001, 42.5736765], [26.5019055000001, 42.5692835], [26.4952200000001, 42.5602215000001], [26.496629, 42.5574540000001], [26.4790800000001, 42.5565965010001], [26.478099, 42.5531835000001], [26.4614790000001, 42.5503600000001], [26.439711, 42.561535], [26.4357835000001, 42.5683695000001], [26.4281800000001, 42.5739105000001], [26.4264650000001, 42.5741905], [26.4262525, 42.574234], [26.4185835000001, 42.5652935000001], [26.423191, 42.5639975], [26.4223175000001, 42.5609400000001], [26.4127885, 42.548445499], [26.3915930000001, 42.5396895000001], [26.3924555, 42.533579], [26.3968370000001, 42.5296490000001], [26.397728, 42.5179820000001], [26.404147, 42.5152189990001], [26.4101435000001, 42.5083290000001], [26.404703, 42.4975525], [26.3781565, 42.4946650000001], [26.3739845000001, 42.4906350010001], [26.3757610000001, 42.4879915000001], [26.3694605000001, 42.478353], [26.3619390000001, 42.477762], [26.3583485, 42.4775525000001], [26.3587595000001, 42.4648115], [26.3613825, 42.4622955], [26.3385730000001, 42.4648095000001], [26.3338005, 42.4586895], [26.3407100000001, 42.454144999], [26.3254305, 42.4494905], [26.3246375000001, 42.452548], [26.3180565000001, 42.452572], [26.3145075, 42.4508170010001], [26.3156795, 42.4487570000001], [26.3026300000001, 42.4486650000001], [26.300818, 42.457659999], [26.2966235000001, 42.4578235010001], [26.2857195, 42.4598635] ], [ [26.4413970000001, 42.4399960000001], [26.4569910000001, 42.427242], [26.467965, 42.4175535000001], [26.476643, 42.4272255000001], [26.4762160000001, 42.4307855000001], [26.5015770000001, 42.4331950000001], [26.5104845000001, 42.4307250000001], [26.5114340000001, 42.4245960000001], [26.5166455, 42.4264555], [26.5116765000001, 42.430145], [26.5072435000001, 42.4504660000001], [26.5130505000001, 42.45874], [26.5283230000001, 42.4552870000001], [26.5352130000001, 42.4571795], [26.5337870000001, 42.4604115000001], [26.5408620000001, 42.468041], [26.5499485, 42.4647535], [26.5677865000001, 42.4845455000001], [26.5688415000001, 42.4880075], [26.561656, 42.506500999], [26.5538520000001, 42.5155395], [26.5277185000001, 42.508694], [26.522544, 42.5098795000001], [26.5247880000001, 42.5133290000001], [26.5313140000001, 42.5140220000001], [26.5330195, 42.518090999], [26.5375355, 42.535621], [26.536166, 42.5417755], [26.5325465, 42.5482085], [26.5183375, 42.553652501], [26.505542, 42.548703001], [26.4999, 42.5525105], [26.497731, 42.5514205000001], [26.4964895000001, 42.5349120010001], [26.5035645, 42.5310930000001], [26.5102285, 42.5312385], [26.5123015, 42.5277035], [26.502531, 42.5232445], [26.5037830000001, 42.513267], [26.4864595, 42.5164235], [26.4802760000001, 42.5071560000001], [26.4607865, 42.5078715000001], [26.447911, 42.5136865000001], [26.4430790000001, 42.5094665010001], [26.4428725000001, 42.5043010010001], [26.434374, 42.495892499], [26.4251415000001, 42.495662], [26.4249310000001, 42.4918695000001], [26.43972, 42.467276], [26.4413000000001, 42.459097], [26.4359220000001, 42.4532755000001], [26.425391, 42.4464600000001], [26.4318955, 42.4394675], [26.4413970000001, 42.4399960000001] ] ] },
+    "properties": {
+      "ISO": "BG-JAM25",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "87374",
+      "NAME_1": "JAM",
+      "TYPE_1": "Област",
+      "ID_2": "87374",
+      "NAME_2": "Тунджа",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.5183375, 42.553652501], [26.505542, 42.548703001], [26.4999, 42.5525105], [26.497731, 42.5514205000001], [26.4964895000001, 42.5349120010001], [26.5035645, 42.5310930000001], [26.5102285, 42.5312385], [26.5123015, 42.5277035], [26.502531, 42.5232445], [26.5037830000001, 42.513267], [26.4864595, 42.5164235], [26.4802760000001, 42.5071560000001], [26.4607865, 42.5078715000001], [26.447911, 42.5136865000001], [26.4430790000001, 42.5094665010001], [26.4428725000001, 42.5043010010001], [26.434374, 42.495892499], [26.4251415000001, 42.495662], [26.4249310000001, 42.4918695000001], [26.43972, 42.467276], [26.4413000000001, 42.459097], [26.4359220000001, 42.4532755000001], [26.425391, 42.4464600000001], [26.4318955, 42.4394675], [26.4413970000001, 42.4399960000001], [26.4569910000001, 42.427242], [26.467965, 42.4175535000001], [26.476643, 42.4272255000001], [26.4762160000001, 42.4307855000001], [26.5015770000001, 42.4331950000001], [26.5104845000001, 42.4307250000001], [26.5114340000001, 42.4245960000001], [26.5166455, 42.4264555], [26.5116765000001, 42.430145], [26.5072435000001, 42.4504660000001], [26.5130505000001, 42.45874], [26.5283230000001, 42.4552870000001], [26.5352130000001, 42.4571795], [26.5337870000001, 42.4604115000001], [26.5408620000001, 42.468041], [26.5499485, 42.4647535], [26.5677865000001, 42.4845455000001], [26.5688415000001, 42.4880075], [26.561656, 42.506500999], [26.5538520000001, 42.5155395], [26.5277185000001, 42.508694], [26.522544, 42.5098795000001], [26.5247880000001, 42.5133290000001], [26.5313140000001, 42.5140220000001], [26.5330195, 42.518090999], [26.5375355, 42.535621], [26.536166, 42.5417755], [26.5325465, 42.5482085], [26.5183375, 42.553652501] ] ] },
+    "properties": {
+      "ISO": "BG-JAM26",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "87374",
+      "NAME_1": "JAM",
+      "TYPE_1": "Област",
+      "ID_2": "87374",
+      "NAME_2": "Ямбол",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.8465600000001, 42.2870740000001], [26.8720905000001, 42.2906814990001], [26.8787295000001, 42.2816290000001], [26.8809125000001, 42.2880520000001], [26.8871475, 42.2934755000001], [26.907521, 42.290553501], [26.9176340000001, 42.2911060000001], [26.921837, 42.294315], [26.9203665000001, 42.2982495000001], [26.90966, 42.3070995], [26.920174, 42.3197880010001], [26.9190755000001, 42.3277485], [26.9119180000001, 42.3363130010001], [26.9170730000001, 42.3415220000001], [26.899978, 42.3476235], [26.879893, 42.3670710010001], [26.866139, 42.3675825], [26.8613275000001, 42.3676085000001], [26.8671955, 42.3725645000001], [26.8679435, 42.3761135], [26.862353, 42.3876799990001], [26.86882, 42.3883765000001], [26.8684295000001, 42.3946355000001], [26.9044470000001, 42.4066445], [26.9400645000001, 42.4061280000001], [26.9572415000001, 42.4101885000001], [26.9645375000001, 42.4148785], [26.967949, 42.4166265000001], [26.9697475, 42.4311135], [26.96973, 42.4331035000001], [26.9471715, 42.4377065], [26.947592, 42.4468975], [26.9410290000001, 42.4523790000001], [26.8960305, 42.4506535], [26.898373, 42.4446130000001], [26.882638, 42.4497040000001], [26.8818995, 42.4504735], [26.8802650000001, 42.4586130000001], [26.8768775, 42.4587625], [26.8840290000001, 42.4775655010001], [26.8696135000001, 42.479963501], [26.8739645000001, 42.4878305], [26.8800640000001, 42.4908045000001], [26.8810155, 42.4958490010001], [26.864385, 42.4940875], [26.854318, 42.5029504990001], [26.8386865, 42.5073695], [26.8454295, 42.5187535000001], [26.8434965000001, 42.5223935000001], [26.8375595000001, 42.5225525000001], [26.8310625, 42.5272615000001], [26.8068440000001, 42.545019], [26.809669, 42.5564159990001], [26.8115575, 42.5683560000001], [26.785924, 42.582662], [26.7905870000001, 42.5873175], [26.7838350000001, 42.5890385000001], [26.781533, 42.6013315000001], [26.790648, 42.6050500000001], [26.7841605, 42.6202484990001], [26.7839565, 42.6208155000001], [26.7763185000001, 42.6229845], [26.7744805, 42.6288525000001], [26.772183, 42.6369125000001], [26.7571445, 42.6370125], [26.7406235, 42.6528710000001], [26.7407400000001, 42.6575815], [26.7444620000001, 42.6637405000001], [26.7295090000001, 42.6718745000001], [26.718441, 42.674788], [26.7140095, 42.6845615], [26.668119, 42.6974735000001], [26.6495815000001, 42.694739], [26.651918, 42.691288], [26.6428365, 42.693412499], [26.6405905, 42.6934325], [26.6371415, 42.689936501], [26.642994, 42.6800305], [26.6513985, 42.6767650000001], [26.6687335, 42.676812], [26.671857, 42.6663065000001], [26.6725025000001, 42.637432], [26.6646735, 42.6374230000001], [26.6569305, 42.631825501], [26.6448780000001, 42.6177625], [26.6449890000001, 42.611192999], [26.6183845, 42.6136425], [26.6261875000001, 42.6230075], [26.634549, 42.6220345], [26.632685, 42.6259280000001], [26.6273675000001, 42.626789], [26.6141145, 42.6240115000001], [26.6110335000001, 42.6031760000001], [26.5945115000001, 42.5965580000001], [26.574937, 42.593695], [26.577954, 42.5848405], [26.5837800000001, 42.5830290000001], [26.5690935000001, 42.5772650000001], [26.566245, 42.563516], [26.5782315000001, 42.5552480000001], [26.5700475, 42.5486755000001], [26.5830970000001, 42.537358], [26.575231, 42.535695], [26.5804380000001, 42.5291575000001], [26.592342, 42.531533], [26.5957005000001, 42.527722], [26.5984325000001, 42.5261105010001], [26.6017140000001, 42.5142520000001], [26.6115510000001, 42.509306], [26.6322035000001, 42.5128055000001], [26.636515, 42.5075640000001], [26.6396175, 42.506875999], [26.6551225000001, 42.4962249990001], [26.6560125, 42.4900225000001], [26.6862330000001, 42.4897760000001], [26.6904640000001, 42.4881215010001], [26.6939430000001, 42.4804665], [26.703608, 42.473895], [26.7060430000001, 42.464166], [26.7044980000001, 42.451108], [26.6941905, 42.450698], [26.6980465, 42.4468630000001], [26.704729, 42.4467050010001], [26.7048970000001, 42.4424905000001], [26.6992260000001, 42.4346225], [26.7072255, 42.434463], [26.7174365000001, 42.433971], [26.7297205, 42.4281015], [26.7401525000001, 42.4340875], [26.7413730000001, 42.4206445], [26.7457850000001, 42.4124409990001], [26.7411055000001, 42.4056355000001], [26.7285215000001, 42.3940605000001], [26.715269, 42.3821540010001], [26.7113810000001, 42.3865345], [26.6878350000001, 42.3754135], [26.683323, 42.3664850000001], [26.6858665, 42.364587], [26.6818190000001, 42.3564030000001], [26.6818735000001, 42.3523550000001], [26.6962115000001, 42.3396994990001], [26.709524, 42.3454755000001], [26.7102975, 42.3302705], [26.718734, 42.3236135000001], [26.7393940000001, 42.3155885], [26.7420415, 42.3145680010001], [26.743687, 42.3067855], [26.7450705000001, 42.2941805], [26.7509995, 42.2842410000001], [26.7659925, 42.2737265000001], [26.781059, 42.2832175010001], [26.7897990000001, 42.2844495000001], [26.791867, 42.2793065000001], [26.8004710000001, 42.270184499], [26.806996, 42.2670660000001], [26.8347325, 42.269298], [26.8352915, 42.2752475], [26.8465600000001, 42.2870740000001] ] ] },
+    "properties": {
+      "ISO": "BG-JAM22",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "87374",
+      "NAME_1": "JAM",
+      "TYPE_1": "Област",
+      "ID_2": "69660",
+      "NAME_2": "Стралджа",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.9403555000001, 42.2821275000001], [26.9334620000001, 42.2889280000001], [26.9260265, 42.2889684990001], [26.921837, 42.294315], [26.9176340000001, 42.2911060000001], [26.907521, 42.290553501], [26.8871475, 42.2934755000001], [26.8809125000001, 42.2880520000001], [26.8787295000001, 42.2816290000001], [26.8720905000001, 42.2906814990001], [26.8465600000001, 42.2870740000001], [26.8352915, 42.2752475], [26.8347325, 42.269298], [26.806996, 42.2670660000001], [26.8004710000001, 42.270184499], [26.791867, 42.2793065000001], [26.7897990000001, 42.2844495000001], [26.781059, 42.2832175010001], [26.7659925, 42.2737265000001], [26.747369, 42.2677295], [26.7468655000001, 42.2609600000001], [26.7398850000001, 42.2446745], [26.730959, 42.2313834990001], [26.7244220000001, 42.2365150000001], [26.7090685000001, 42.2258675000001], [26.691759, 42.2094714990001], [26.6877190000001, 42.2040115], [26.6966175000001, 42.180826], [26.7017365, 42.1750079990001], [26.695092, 42.1732165000001], [26.6850385000001, 42.1642275], [26.6849105000001, 42.1548515000001], [26.6915925000001, 42.1493085000001], [26.6939925, 42.1451765], [26.7041570000001, 42.1412490000001], [26.6990685000001, 42.1338370010001], [26.7181515, 42.1324940000001], [26.7201700000001, 42.1346695], [26.7233400000001, 42.122262], [26.7235755, 42.1212175000001], [26.7344105, 42.1082064990001], [26.7316905000001, 42.1058090000001], [26.7324590000001, 42.1006275], [26.7260015000001, 42.0889715000001], [26.727603, 42.086845], [26.7329960000001, 42.087843999], [26.7374170000001, 42.0813830000001], [26.7290495, 42.0694030010001], [26.7327375, 42.061836999], [26.7486855000001, 42.049561], [26.7414115, 42.040984], [26.737536, 42.0262090000001], [26.7385705, 42.021217], [26.7446225000001, 42.0222305], [26.7646705, 42.0135505000001], [26.7880835, 42.018649], [26.7925900000001, 42.0173330000001], [26.8014775, 42.015025], [26.7892925, 42.01077], [26.7802560000001, 41.9995670000001], [26.787407, 41.9896010000001], [26.7925090000001, 41.990169499], [26.794636, 41.983593], [26.8149755000001, 41.9736784990001], [26.8277185000001, 41.9735075], [26.8321780000001, 41.9691619990001], [26.8472135000001, 41.9698445010001], [26.847723, 41.980419], [26.852043, 41.984001], [26.8563345000001, 41.9822500000001], [26.871048, 41.9910735], [26.882826, 41.9884259990001], [26.8881700580001, 41.9877476140001], [26.898157306, 41.9864799470001], [26.9017295, 41.9860265], [26.9094565880001, 41.9920840510001], [26.9134030000001, 41.9951780000001], [26.921341, 41.9938700000001], [26.922484996, 41.9951130090001], [26.9275475000001, 42.0006139990001], [26.9492285000001, 42.0002135], [26.9576015000001, 41.9967385000001], [26.9664045000001, 42.0021820000001], [26.984993, 42.0202560000001], [26.981659, 42.024685], [26.982088, 42.0375480000001], [26.9950065, 42.0384940000001], [26.9965983180001, 42.0373786100001], [26.997465048, 42.036771329], [26.9983710000001, 42.0361365000001], [27.0075435000001, 42.0385245000001], [27.022091, 42.055351], [27.0258630000001, 42.0556295000001], [27.0278795, 42.0632360010001], [27.023081, 42.0672500000001], [27.0245610000001, 42.0736845000001], [27.0213450000001, 42.0736695000001], [27.0249595, 42.0812575], [27.0328230000001, 42.078987], [27.0421010000001, 42.084732], [27.0496615000001, 42.0835455000001], [27.0596505, 42.0883370000001], [27.0492390000001, 42.0931830000001], [27.0466420000001, 42.0998625], [27.0382785, 42.097906499], [27.0174050000001, 42.1003615000001], [27.0152725, 42.103221499], [27.005162, 42.1051455], [26.9919115000001, 42.0991510000001], [26.9841660000001, 42.1006095000001], [26.9838975000001, 42.1040860000001], [26.9794285, 42.1071295], [26.9770785000001, 42.1236870000001], [26.9736405, 42.1346745000001], [26.959186, 42.135773499], [26.9514045, 42.144885], [26.9430625000001, 42.144318501], [26.937908, 42.1602075000001], [26.9350395000001, 42.168172], [26.935345, 42.176404], [26.9401550000001, 42.1883490000001], [26.9714250000001, 42.1985295010001], [26.9752120000001, 42.2078070010001], [26.9898605000001, 42.2071740000001], [26.9764675000001, 42.2150120000001], [26.9588640000001, 42.2144535], [26.9440780000001, 42.2291680000001], [26.9412425, 42.2377045000001], [26.9368125, 42.2398185000001], [26.9358625, 42.2411960000001], [26.9503100000001, 42.2603325000001], [26.951446, 42.266777], [26.9673365, 42.2755995000001], [26.9681815000001, 42.2833410000001], [26.9403555000001, 42.2821275000001] ] ] },
+    "properties": {
+      "ISO": "BG-JAM03",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "87374",
+      "NAME_1": "JAM",
+      "TYPE_1": "Област",
+      "ID_2": "5284",
+      "NAME_2": "Болярово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.367241, 43.2563615], [23.354202, 43.260272], [23.3460685000001, 43.2641520010001], [23.3414080000001, 43.2705260000001], [23.3384875, 43.272906], [23.3318025, 43.2741695], [23.3297545, 43.269366], [23.321649, 43.2746290000001], [23.3185310000001, 43.2776715000001], [23.3170045000001, 43.2808875000001], [23.304513, 43.2744190000001], [23.2875530000001, 43.2773480000001], [23.2831255, 43.277293501], [23.2735645000001, 43.2721230000001], [23.26413, 43.2650165000001], [23.2593095, 43.2647695000001], [23.257595, 43.2670890000001], [23.250747, 43.2662705000001], [23.2288035, 43.2530875], [23.2252395, 43.248677], [23.2245730000001, 43.2411680010001], [23.2190570000001, 43.2339645000001], [23.2159605000001, 43.2340975000001], [23.2130125, 43.2325280000001], [23.2178575, 43.2271900000001], [23.238298, 43.2218725000001], [23.2416955, 43.2119789990001], [23.2388790000001, 43.2068170000001], [23.2265100000001, 43.1983430000001], [23.2120355000001, 43.1954390000001], [23.21408, 43.1948475], [23.1995825000001, 43.1554245], [23.191966, 43.1398160000001], [23.192507, 43.129964499], [23.2063625000001, 43.118999], [23.204035, 43.113097], [23.2169425000001, 43.1143909990001], [23.2292745, 43.111270001], [23.2468695000001, 43.1124189990001], [23.246138, 43.1191115], [23.2419115000001, 43.121626], [23.2427735000001, 43.1247970000001], [23.2474475000001, 43.129371501], [23.2542405, 43.130049], [23.2588105, 43.1295910000001], [23.2899390000001, 43.1211385], [23.3151245, 43.1337980000001], [23.3178380000001, 43.1382780000001], [23.3220555, 43.158782], [23.34108, 43.1580100000001], [23.3454610000001, 43.1581775000001], [23.3634855, 43.156524], [23.3683495, 43.153149], [23.3845945, 43.1550955000001], [23.390188, 43.1605890000001], [23.4005245000001, 43.1577975000001], [23.4079595000001, 43.1613970000001], [23.412767, 43.1605220000001], [23.4126610000001, 43.162940501], [23.405153, 43.1673724990001], [23.3982245, 43.1662275], [23.3929415000001, 43.1700740000001], [23.3891980000001, 43.1777960000001], [23.3927455, 43.184985], [23.4008675000001, 43.196428499], [23.411822, 43.2029945], [23.447012, 43.205923], [23.4512510000001, 43.2076505000001], [23.4494895, 43.2114164990001], [23.4549185000001, 43.214721501], [23.462142, 43.211777], [23.4685690000001, 43.2208375000001], [23.4731025, 43.224921001], [23.451336, 43.2343365], [23.4484645000001, 43.2366000000001], [23.4502375000001, 43.2386215010001], [23.4416175000001, 43.2429785], [23.4375625000001, 43.2490755000001], [23.412543, 43.2575840000001], [23.3987765000001, 43.2577965], [23.3768630000001, 43.258018], [23.367241, 43.2563615] ] ] },
+    "properties": {
+      "ISO": "BG-MON12",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "12961",
+      "NAME_2": "Вършец",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.3522825000001, 43.849076], [23.2931735, 43.8478700000001], [23.2800945000001, 43.847252], [23.267777, 43.846812001], [23.2466030000001, 43.83925], [23.228956, 43.837389], [23.1902195000001, 43.825429], [23.1270425000001, 43.804626], [23.056809, 43.7958065], [23.0537890000001, 43.7960220000001], [23.0519755, 43.7960670000001], [23.043034, 43.7962880000001], [23.0340110000001, 43.8008560000001], [23.0344625000001, 43.8027725000001], [22.99848, 43.8074485000001], [22.9971545000001, 43.807627], [22.9970295000001, 43.7986285000001], [23.002327, 43.7933135000001], [23.0235970000001, 43.7917805000001], [23.0419850000001, 43.7851765], [23.0512855000001, 43.7779485], [23.047312, 43.7740585000001], [23.0231665000001, 43.7777035], [23.0173125000001, 43.769846], [22.9969005, 43.7801490000001], [22.9901715, 43.7759560000001], [22.986457, 43.7786930010001], [22.9711760000001, 43.7765575000001], [22.9656150000001, 43.7654965], [22.9646665000001, 43.7559265], [22.9738905, 43.753369499], [22.9814260000001, 43.7554225010001], [22.9922625, 43.7491595010001], [22.9914870000001, 43.7427430000001], [22.9975880000001, 43.7425625000001], [23.008231, 43.7424309990001], [23.023463, 43.7400155], [23.0305735000001, 43.7405830000001], [23.0305700000001, 43.739552001], [23.0436470000001, 43.7354075000001], [23.049041, 43.740413], [23.0544905, 43.7473455000001], [23.0671090000001, 43.7511955000001], [23.0822210000001, 43.7561655000001], [23.091506, 43.7532580000001], [23.1377935, 43.7346880000001], [23.140312, 43.7363], [23.1520715, 43.730374], [23.1598165, 43.7214900000001], [23.1866425000001, 43.7095005], [23.19012, 43.718708], [23.2040255000001, 43.715759], [23.206485, 43.721933], [23.2181895000001, 43.7198490000001], [23.2204805000001, 43.7254665], [23.225717, 43.7244065000001], [23.2291345, 43.7329785000001], [23.2416945000001, 43.7373890000001], [23.2545020000001, 43.734765], [23.26505, 43.7362295], [23.2667950000001, 43.7425375], [23.274149, 43.741119499], [23.2801075, 43.7395770000001], [23.30944, 43.751315], [23.3208980000001, 43.7508875], [23.3380750000001, 43.7792175000001], [23.350784, 43.7803045000001], [23.3597565000001, 43.7843890010001], [23.3971295000001, 43.783977001], [23.3987025000001, 43.7914885000001], [23.4061265, 43.7906110000001], [23.4177060000001, 43.787588], [23.4351325000001, 43.7882305000001], [23.4352435000001, 43.7932239990001], [23.4441345000001, 43.7942860000001], [23.4800460000001, 43.7955635000001], [23.48425, 43.796768], [23.487825, 43.801973], [23.4792590000001, 43.809318999], [23.4727035, 43.8206559990001], [23.4836090000001, 43.8372425000001], [23.46432, 43.840093999], [23.4332470000001, 43.8505670000001], [23.421841, 43.8518045000001], [23.4056105, 43.8519400010001], [23.3911735, 43.8504960000001], [23.373481, 43.8475330000001], [23.3522825000001, 43.849076] ] ] },
+    "properties": {
+      "ISO": "BG-MON24",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "44238",
+      "NAME_2": "Лом",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.9538795, 43.365235999], [22.958181, 43.3671305], [22.9737315, 43.382704], [22.98152, 43.3867235000001], [22.9972565, 43.3883015000001], [23.0009885000001, 43.3883945000001], [23.0151510000001, 43.393671999], [23.018833, 43.3989990000001], [23.0143515, 43.403467], [23.0153565000001, 43.405963001], [23.0225085000001, 43.4096470000001], [23.0269765, 43.4127090000001], [23.03592, 43.4117055], [23.0385240000001, 43.4169415000001], [23.0210485000001, 43.4236010000001], [23.0216015, 43.43087], [23.023599, 43.432235], [23.0242495000001, 43.4365724990001], [23.01316, 43.4604545], [23.0048360000001, 43.4708440000001], [22.9999330000001, 43.4701565], [22.9836260000001, 43.4672485], [22.967452, 43.4699850000001], [22.9644595, 43.4707915000001], [22.949618, 43.4760810000001], [22.9260135000001, 43.4758085], [22.9115475, 43.4805030000001], [22.9135955, 43.488818], [22.9097185000001, 43.4929895000001], [22.9116305000001, 43.4994435], [22.909226, 43.5088900000001], [22.9016740000001, 43.515742], [22.8878895, 43.51187], [22.878628, 43.5079775], [22.862829, 43.5135445000001], [22.8534505000001, 43.5086030000001], [22.8344065000001, 43.5158365], [22.8249520000001, 43.5063885000001], [22.825929, 43.5013660000001], [22.8235730000001, 43.4954525000001], [22.8027815, 43.5040750000001], [22.7957710000001, 43.4862355000001], [22.804606, 43.4760875000001], [22.8126705, 43.4712275000001], [22.8131855, 43.4646895000001], [22.8030985, 43.4478295000001], [22.7878355, 43.439916], [22.7860000000001, 43.4340675], [22.785959, 43.434018], [22.7754705, 43.4179505020001], [22.767552, 43.4067380010001], [22.7556050000001, 43.3975935010001], [22.7474540000001, 43.3866130000001], [22.7684255, 43.3753320000001], [22.7699960000001, 43.3635885], [22.7817875000001, 43.3575915000001], [22.7911305000001, 43.349725], [22.7950625, 43.3426595], [22.8262100000001, 43.330405], [22.8440605000001, 43.344453501], [22.8648105, 43.3497845000001], [22.8902015, 43.3486960000001], [22.9127260000001, 43.3555365], [22.9367035000001, 43.3570750000001], [22.945725, 43.3576345000001], [22.9538795, 43.365235999] ] ] },
+    "properties": {
+      "ISO": "BG-MON36",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "81390",
+      "NAME_2": "Чипровци",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.155219, 43.676112], [23.1349765000001, 43.6744285], [23.128471, 43.6657255000001], [23.1111605, 43.6608370000001], [23.1142085000001, 43.659729499], [23.1136465000001, 43.6511785010001], [23.1067715, 43.6429830000001], [23.100223, 43.6387015], [23.096756, 43.6300735], [23.0840480000001, 43.6266615000001], [23.073718, 43.606452], [23.061922, 43.6096660000001], [23.0547585, 43.595757001], [23.0594485, 43.595149001], [23.0644090000001, 43.5967350000001], [23.1089105, 43.5746985000001], [23.1204700000001, 43.564032501], [23.1233970000001, 43.5563255000001], [23.1578735000001, 43.557894], [23.1571195000001, 43.5677395000001], [23.1593665, 43.5671300000001], [23.1634940000001, 43.5771965000001], [23.180508, 43.574166], [23.1792925, 43.5810910000001], [23.1833370000001, 43.58381], [23.1913005000001, 43.588014001], [23.202678, 43.590649501], [23.209367, 43.602224], [23.2141080000001, 43.6048185000001], [23.2227270000001, 43.603218], [23.2345980000001, 43.6084135], [23.2415925, 43.633478], [23.2395330000001, 43.634510999], [23.251356, 43.6403235000001], [23.251898, 43.6455425], [23.2645150000001, 43.649640499], [23.273472, 43.6477065], [23.2810605, 43.6462305000001], [23.278268, 43.6601945], [23.2837095, 43.673861], [23.290128, 43.672606], [23.2959035000001, 43.687614001], [23.300352, 43.6876580000001], [23.3022585000001, 43.6924264990001], [23.2707780000001, 43.6989330000001], [23.287603, 43.7367075000001], [23.2801075, 43.7395770000001], [23.274149, 43.741119499], [23.2667950000001, 43.7425375], [23.26505, 43.7362295], [23.2545020000001, 43.734765], [23.2416945000001, 43.7373890000001], [23.2291345, 43.7329785000001], [23.225717, 43.7244065000001], [23.2204805000001, 43.7254665], [23.2181895000001, 43.7198490000001], [23.206485, 43.721933], [23.2040255000001, 43.715759], [23.19012, 43.718708], [23.1866425000001, 43.7095005], [23.1598165, 43.7214900000001], [23.1522755, 43.7169335], [23.1520885000001, 43.7119210000001], [23.16398, 43.7077455], [23.1617265, 43.7021475000001], [23.174971, 43.6992579990001], [23.1646495000001, 43.6709010000001], [23.155219, 43.676112] ] ] },
+    "properties": {
+      "ISO": "BG-MON26",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "47593",
+      "NAME_2": "Медковец",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.0230605, 43.6912655], [23.008471, 43.6903185], [23.0083575, 43.683564001], [22.9998155000001, 43.6829095000001], [23.00043, 43.6804780000001], [22.9916985, 43.679786], [22.9896240000001, 43.6743910000001], [22.9939170000001, 43.6739205010001], [22.9678895000001, 43.6602305000001], [22.966028, 43.660962], [22.9757450000001, 43.6678810000001], [22.9596785000001, 43.6627550000001], [22.951083, 43.658394], [22.9452160000001, 43.6389805000001], [22.9470885000001, 43.6359660000001], [22.9470660000001, 43.6342335], [22.9599845000001, 43.6314635000001], [22.9458310000001, 43.618844999], [22.9422210000001, 43.6020105000001], [22.9449155, 43.594077], [22.9479185000001, 43.5881265], [22.9421540000001, 43.5766735], [22.938071, 43.5751790000001], [22.9642030000001, 43.564222], [22.9830505, 43.5722125], [22.9832305000001, 43.5721600000001], [23.020701, 43.586461], [23.0288175000001, 43.5895895], [23.0564390000001, 43.5909395], [23.0594485, 43.595149001], [23.0547585, 43.595757001], [23.061922, 43.6096660000001], [23.073718, 43.606452], [23.0840480000001, 43.6266615000001], [23.096756, 43.6300735], [23.100223, 43.6387015], [23.1067715, 43.6429830000001], [23.1136465000001, 43.6511785010001], [23.1142085000001, 43.659729499], [23.1111605, 43.6608370000001], [23.128471, 43.6657255000001], [23.1349765000001, 43.6744285], [23.155219, 43.676112], [23.1646495000001, 43.6709010000001], [23.174971, 43.6992579990001], [23.1617265, 43.7021475000001], [23.16398, 43.7077455], [23.1520885000001, 43.7119210000001], [23.1522755, 43.7169335], [23.1598165, 43.7214900000001], [23.1520715, 43.730374], [23.140312, 43.7363], [23.1377935, 43.7346880000001], [23.091506, 43.7532580000001], [23.0822210000001, 43.7561655000001], [23.0671090000001, 43.7511955000001], [23.0544905, 43.7473455000001], [23.049041, 43.740413], [23.0436470000001, 43.7354075000001], [23.041411, 43.736002], [23.0546620000001, 43.7087970000001], [23.058414, 43.694193], [23.0511305000001, 43.6951750000001], [23.0336715, 43.687214], [23.0316530000001, 43.6887130000001], [23.0230605, 43.6912655] ] ] },
+    "properties": {
+      "ISO": "BG-MON07",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "6570",
+      "NAME_2": "Брусарци",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.368281, 43.697228001], [23.3661675000001, 43.6976530000001], [23.3583150000001, 43.6990250000001], [23.3657355, 43.71928], [23.3667965000001, 43.7304635], [23.3641355, 43.7349830000001], [23.3208980000001, 43.7508875], [23.30944, 43.751315], [23.2801075, 43.7395770000001], [23.287603, 43.7367075000001], [23.2707780000001, 43.6989330000001], [23.3022585000001, 43.6924264990001], [23.300352, 43.6876580000001], [23.2959035000001, 43.687614001], [23.290128, 43.672606], [23.2837095, 43.673861], [23.278268, 43.6601945], [23.2810605, 43.6462305000001], [23.273472, 43.6477065], [23.2645150000001, 43.649640499], [23.251898, 43.6455425], [23.251356, 43.6403235000001], [23.2395330000001, 43.634510999], [23.2415925, 43.633478], [23.2345980000001, 43.6084135], [23.2227270000001, 43.603218], [23.2141080000001, 43.6048185000001], [23.209367, 43.602224], [23.202678, 43.590649501], [23.1913005000001, 43.588014001], [23.1833370000001, 43.58381], [23.1792925, 43.5810910000001], [23.180508, 43.574166], [23.190325, 43.572008], [23.1884195000001, 43.567210501], [23.203471, 43.5635830000001], [23.211774, 43.5534250000001], [23.2323040000001, 43.545486], [23.2397150000001, 43.558923], [23.2647485, 43.560368], [23.2692870000001, 43.5669354990001], [23.2844275, 43.568545], [23.3015770000001, 43.5643180000001], [23.3298125000001, 43.563502499], [23.3314685, 43.5710660010001], [23.346755, 43.5710470000001], [23.3466465000001, 43.5778655], [23.3797965000001, 43.5788030000001], [23.3787995000001, 43.5819980000001], [23.3810550000001, 43.5881620000001], [23.3883055000001, 43.5931630000001], [23.3982455, 43.5933945], [23.405763, 43.597197001], [23.416525, 43.60932], [23.4327105, 43.6102625], [23.4415455000001, 43.613075], [23.4472205000001, 43.6179605], [23.4480810000001, 43.6281260000001], [23.3994740000001, 43.632868], [23.3999685000001, 43.6413270000001], [23.3985665000001, 43.644622999], [23.3942255000001, 43.652544], [23.3883185, 43.6524870010001], [23.38777, 43.6863045010001], [23.3835605, 43.6915710000001], [23.368281, 43.697228001] ] ] },
+    "properties": {
+      "ISO": "BG-MON38",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "87299",
+      "NAME_2": "Якимово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.5883555, 43.6323105000001], [23.5798925, 43.6349935000001], [23.5904295, 43.6525265000001], [23.583824, 43.6542975], [23.591711, 43.6676075], [23.5986765000001, 43.6653790010001], [23.600808, 43.6689535], [23.6025275000001, 43.6728955], [23.6180335, 43.7057475], [23.620577, 43.7112944990001], [23.6325715, 43.7081585], [23.6327425000001, 43.713773501], [23.6318755, 43.7319760010001], [23.6262570000001, 43.7637320000001], [23.6255235, 43.7802110000001], [23.6300800000001, 43.7912600000001], [23.5810145, 43.7970915000001], [23.5438130000001, 43.8118265000001], [23.5376225000001, 43.8152430000001], [23.5152155000001, 43.8310740000001], [23.4897025000001, 43.8360180000001], [23.4836090000001, 43.8372425000001], [23.4727035, 43.8206559990001], [23.4792590000001, 43.809318999], [23.487825, 43.801973], [23.48425, 43.796768], [23.4800460000001, 43.7955635000001], [23.4441345000001, 43.7942860000001], [23.4352435000001, 43.7932239990001], [23.4351325000001, 43.7882305000001], [23.4177060000001, 43.787588], [23.4061265, 43.7906110000001], [23.3987025000001, 43.7914885000001], [23.3971295000001, 43.783977001], [23.3597565000001, 43.7843890010001], [23.350784, 43.7803045000001], [23.3380750000001, 43.7792175000001], [23.3208980000001, 43.7508875], [23.3641355, 43.7349830000001], [23.3667965000001, 43.7304635], [23.3657355, 43.71928], [23.3583150000001, 43.6990250000001], [23.3661675000001, 43.6976530000001], [23.368281, 43.697228001], [23.3835605, 43.6915710000001], [23.38777, 43.6863045010001], [23.3883185, 43.6524870010001], [23.3942255000001, 43.652544], [23.3985665000001, 43.644622999], [23.3999685000001, 43.6413270000001], [23.3994740000001, 43.632868], [23.4480810000001, 43.6281260000001], [23.4472205000001, 43.6179605], [23.4471985000001, 43.6133205000001], [23.4641520000001, 43.613258], [23.4646075000001, 43.6049640000001], [23.467879, 43.6014720000001], [23.4728215000001, 43.601456], [23.4852805, 43.5935260000001], [23.4922945000001, 43.5852435], [23.4950155, 43.5824515], [23.5054075, 43.5814930000001], [23.504304, 43.585112999], [23.5148715, 43.584159], [23.530542, 43.5827415000001], [23.5361585000001, 43.580581], [23.537813, 43.5753105000001], [23.5453745, 43.5775885], [23.556095, 43.594769], [23.5491410000001, 43.5995185], [23.5550465000001, 43.6076375000001], [23.5575595, 43.6068645], [23.564914, 43.6147685], [23.5712135000001, 43.6139890000001], [23.574936, 43.6161310000001], [23.580816, 43.6196515], [23.5861035, 43.6285615000001], [23.5883555, 43.6323105000001] ] ] },
+    "properties": {
+      "ISO": "BG-MON11",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "12543",
+      "NAME_2": "Вълчедръм",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.0232455, 43.336054], [23.0372085000001, 43.3376800010001], [23.038839, 43.3410365], [23.037762, 43.3525395], [23.0383640000001, 43.3583180000001], [23.049739, 43.3594345000001], [23.0606265000001, 43.365465], [23.077904, 43.3755050010001], [23.0932435, 43.3907935], [23.095896, 43.3971550000001], [23.0911895, 43.400377], [23.0869325, 43.4016730000001], [23.0866120000001, 43.4105265000001], [23.0934345000001, 43.4283925], [23.0951715, 43.4289875000001], [23.0832730000001, 43.4329804990001], [23.0749075000001, 43.4533345], [23.0768025, 43.4598375], [23.077773, 43.4629350000001], [23.0650685000001, 43.461265], [23.0542175, 43.465193], [23.045806, 43.470427], [23.039526, 43.4829800000001], [23.0413810000001, 43.4933065000001], [23.0275135000001, 43.5039165000001], [23.0246060000001, 43.5042744990001], [23.0099695000001, 43.4940080000001], [22.9972835, 43.4752980000001], [22.9999330000001, 43.4701565], [23.0048360000001, 43.4708440000001], [23.01316, 43.4604545], [23.0242495000001, 43.4365724990001], [23.023599, 43.432235], [23.0216015, 43.43087], [23.0210485000001, 43.4236010000001], [23.0385240000001, 43.4169415000001], [23.03592, 43.4117055], [23.0269765, 43.4127090000001], [23.0225085000001, 43.4096470000001], [23.0153565000001, 43.405963001], [23.0143515, 43.403467], [23.018833, 43.3989990000001], [23.0151510000001, 43.393671999], [23.0009885000001, 43.3883945000001], [22.9972565, 43.3883015000001], [22.98152, 43.3867235000001], [22.9737315, 43.382704], [22.958181, 43.3671305], [22.9538795, 43.365235999], [22.945725, 43.3576345000001], [22.9367035000001, 43.3570750000001], [22.9127260000001, 43.3555365], [22.8902015, 43.3486960000001], [22.8648105, 43.3497845000001], [22.8440605000001, 43.344453501], [22.8262100000001, 43.330405], [22.8310905000001, 43.312306], [22.837742, 43.3019735010001], [22.8454810000001, 43.296706], [22.8423385, 43.2863575000001], [22.848514, 43.2755805], [22.8589240000001, 43.2743164990001], [22.8689905000001, 43.2673885], [22.8705135000001, 43.2546320000001], [22.8839160000001, 43.240750001], [22.8932320000001, 43.2321180000001], [22.9079420000001, 43.220968], [22.9200735000001, 43.2186905], [22.9411890000001, 43.2025045], [22.961482, 43.2068550000001], [22.9830295, 43.2026090000001], [22.997034, 43.194216], [23.0062100000001, 43.1928785000001], [23.0146475, 43.197701501], [23.0147460000001, 43.204028501], [23.0095845000001, 43.2114025000001], [23.0095610000001, 43.2295245], [23.0176710000001, 43.2301245000001], [23.0139160000001, 43.2366255000001], [23.0012350000001, 43.2466670000001], [22.999201, 43.252395001], [22.9999365, 43.2598140000001], [23.0076575000001, 43.2721090000001], [23.023689, 43.27193], [23.029747, 43.275692], [23.0303625, 43.2794705000001], [23.0265005000001, 43.2825394990001], [23.024372, 43.292962001], [23.027362, 43.3099845], [23.0134160000001, 43.3154105], [23.015703, 43.3243465], [23.0278705000001, 43.3309599990001], [23.0232455, 43.336054] ] ] },
+    "properties": {
+      "ISO": "BG-MON14",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "14773",
+      "NAME_2": "Георги Дамяново",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.1204700000001, 43.564032501], [23.1089105, 43.5746985000001], [23.0644090000001, 43.5967350000001], [23.0594485, 43.595149001], [23.0564390000001, 43.5909395], [23.0288175000001, 43.5895895], [23.020701, 43.586461], [22.9832305000001, 43.5721600000001], [22.9830505, 43.5722125], [22.9642030000001, 43.564222], [22.938071, 43.5751790000001], [22.9421540000001, 43.5766735], [22.932016, 43.5754830000001], [22.9181805000001, 43.572478501], [22.9159515000001, 43.5662800000001], [22.9051175000001, 43.563634], [22.888471, 43.5536925000001], [22.8842055000001, 43.5465795010001], [22.8815725000001, 43.5360870000001], [22.883046, 43.5331495], [22.8739370000001, 43.5240920000001], [22.864016, 43.519972001], [22.862829, 43.5135445000001], [22.878628, 43.5079775], [22.8878895, 43.51187], [22.9016740000001, 43.515742], [22.909226, 43.5088900000001], [22.9116305000001, 43.4994435], [22.9097185000001, 43.4929895000001], [22.9135955, 43.488818], [22.9115475, 43.4805030000001], [22.9260135000001, 43.4758085], [22.949618, 43.4760810000001], [22.9644595, 43.4707915000001], [22.967452, 43.4699850000001], [22.9836260000001, 43.4672485], [22.9999330000001, 43.4701565], [22.9972835, 43.4752980000001], [23.0099695000001, 43.4940080000001], [23.0246060000001, 43.5042744990001], [23.0275135000001, 43.5039165000001], [23.0413810000001, 43.4933065000001], [23.039526, 43.4829800000001], [23.045806, 43.470427], [23.0542175, 43.465193], [23.0650685000001, 43.461265], [23.077773, 43.4629350000001], [23.0768025, 43.4598375], [23.0749075000001, 43.4533345], [23.0832730000001, 43.4329804990001], [23.0951715, 43.4289875000001], [23.0934345000001, 43.4283925], [23.0866120000001, 43.4105265000001], [23.0869325, 43.4016730000001], [23.0911895, 43.400377], [23.095896, 43.3971550000001], [23.0932435, 43.3907935], [23.077904, 43.3755050010001], [23.085881, 43.3729475000001], [23.0823325000001, 43.3698365000001], [23.084688, 43.3673645000001], [23.134552, 43.3841145000001], [23.1425405000001, 43.384106499], [23.132574, 43.379479001], [23.128863, 43.3704515000001], [23.1322710000001, 43.366514], [23.1457145000001, 43.364064001], [23.1590410000001, 43.3696325000001], [23.1656015, 43.3678905], [23.1722515000001, 43.3652155], [23.1767645000001, 43.3688105000001], [23.1858855, 43.362992499], [23.1850010000001, 43.356659499], [23.1845375, 43.3533640000001], [23.2029650000001, 43.3479815000001], [23.2030015, 43.343328], [23.2278385000001, 43.333263], [23.242578, 43.3444485000001], [23.2506915000001, 43.3425280000001], [23.2618210000001, 43.3478145], [23.2664415, 43.343937], [23.2756625000001, 43.340609499], [23.2782095000001, 43.3365575010001], [23.2962260000001, 43.336552], [23.3008965000001, 43.312395], [23.302582, 43.3114425000001], [23.3037680000001, 43.3060855000001], [23.3126775000001, 43.305078], [23.3243125000001, 43.2965305010001], [23.3279225000001, 43.2949799990001], [23.3330455, 43.2991170000001], [23.330944, 43.303223001], [23.3401975, 43.3113145], [23.3495705, 43.313225501], [23.3511335000001, 43.3128735000001], [23.355059, 43.3210910000001], [23.35319, 43.3235010000001], [23.3611285000001, 43.331261], [23.3803730000001, 43.3404970010001], [23.3765155, 43.3490640000001], [23.379395, 43.351979999], [23.3783795000001, 43.3561275000001], [23.3822450000001, 43.3594285], [23.385855, 43.3724970000001], [23.3954285, 43.3713475000001], [23.3984750000001, 43.38437], [23.4130745000001, 43.3908125], [23.4170730000001, 43.3918465], [23.4131325000001, 43.406715999], [23.4140245, 43.4105650000001], [23.417153, 43.4120165], [23.41123, 43.4220355], [23.4063350000001, 43.425147999], [23.400566, 43.429226], [23.3935660000001, 43.4259225000001], [23.3731145, 43.4369075000001], [23.366493, 43.4362925], [23.3519205000001, 43.4241880000001], [23.3358155, 43.437509], [23.3269235000001, 43.4395440010001], [23.3245175000001, 43.443724], [23.324059, 43.4447405000001], [23.3244700000001, 43.449016], [23.2877115000001, 43.470809], [23.278266, 43.4714355], [23.2647680000001, 43.4771625000001], [23.2349025, 43.4924564990001], [23.2488315000001, 43.5106795], [23.2506605, 43.5090145], [23.2701755000001, 43.502327], [23.282564, 43.5100375000001], [23.2958810000001, 43.5096550000001], [23.2936955000001, 43.5125350000001], [23.2965550000001, 43.5176895010001], [23.3139455, 43.5213775], [23.314895, 43.5398070000001], [23.3298125000001, 43.563502499], [23.3015770000001, 43.5643180000001], [23.2844275, 43.568545], [23.2692870000001, 43.5669354990001], [23.2647485, 43.560368], [23.2397150000001, 43.558923], [23.2323040000001, 43.545486], [23.211774, 43.5534250000001], [23.203471, 43.5635830000001], [23.1884195000001, 43.567210501], [23.190325, 43.572008], [23.180508, 43.574166], [23.1634940000001, 43.5771965000001], [23.1593665, 43.5671300000001], [23.1571195000001, 43.5677395000001], [23.1578735000001, 43.557894], [23.1233970000001, 43.5563255000001], [23.1204700000001, 43.564032501] ] ] },
+    "properties": {
+      "ISO": "BG-MON29",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "48489",
+      "NAME_2": "Монтана",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.2159605000001, 43.2340975000001], [23.2190570000001, 43.2339645000001], [23.2245730000001, 43.2411680010001], [23.2252395, 43.248677], [23.2288035, 43.2530875], [23.250747, 43.2662705000001], [23.257595, 43.2670890000001], [23.2593095, 43.2647695000001], [23.26413, 43.2650165000001], [23.2735645000001, 43.2721230000001], [23.2831255, 43.277293501], [23.2875530000001, 43.2773480000001], [23.304513, 43.2744190000001], [23.3170045000001, 43.2808875000001], [23.3185310000001, 43.2776715000001], [23.3174325000001, 43.2915355010001], [23.3243125000001, 43.2965305010001], [23.3126775000001, 43.305078], [23.3037680000001, 43.3060855000001], [23.302582, 43.3114425000001], [23.3008965000001, 43.312395], [23.2962260000001, 43.336552], [23.2782095000001, 43.3365575010001], [23.2756625000001, 43.340609499], [23.2664415, 43.343937], [23.2618210000001, 43.3478145], [23.2506915000001, 43.3425280000001], [23.242578, 43.3444485000001], [23.2278385000001, 43.333263], [23.2030015, 43.343328], [23.2029650000001, 43.3479815000001], [23.1845375, 43.3533640000001], [23.1850010000001, 43.356659499], [23.1858855, 43.362992499], [23.1767645000001, 43.3688105000001], [23.1722515000001, 43.3652155], [23.1656015, 43.3678905], [23.1590410000001, 43.3696325000001], [23.1457145000001, 43.364064001], [23.1322710000001, 43.366514], [23.128863, 43.3704515000001], [23.132574, 43.379479001], [23.1425405000001, 43.384106499], [23.134552, 43.3841145000001], [23.084688, 43.3673645000001], [23.0823325000001, 43.3698365000001], [23.085881, 43.3729475000001], [23.077904, 43.3755050010001], [23.0606265000001, 43.365465], [23.049739, 43.3594345000001], [23.0383640000001, 43.3583180000001], [23.037762, 43.3525395], [23.038839, 43.3410365], [23.0372085000001, 43.3376800010001], [23.0232455, 43.336054], [23.0278705000001, 43.3309599990001], [23.015703, 43.3243465], [23.0134160000001, 43.3154105], [23.027362, 43.3099845], [23.024372, 43.292962001], [23.0265005000001, 43.2825394990001], [23.0303625, 43.2794705000001], [23.029747, 43.275692], [23.023689, 43.27193], [23.0076575000001, 43.2721090000001], [22.9999365, 43.2598140000001], [22.999201, 43.252395001], [23.0012350000001, 43.2466670000001], [23.0139160000001, 43.2366255000001], [23.0176710000001, 43.2301245000001], [23.0095610000001, 43.2295245], [23.0095845000001, 43.2114025000001], [23.0147460000001, 43.204028501], [23.0146475, 43.197701501], [23.0252285, 43.1960064990001], [23.039931, 43.184873501], [23.0427395, 43.1845440000001], [23.042061, 43.179811], [23.04537, 43.1696590000001], [23.057961, 43.1683780000001], [23.0585035, 43.1610915000001], [23.0684695, 43.1650274990001], [23.070837, 43.1624425], [23.070752, 43.1616320000001], [23.0709254700001, 43.1614818680001], [23.0888145000001, 43.1460015000001], [23.101682, 43.1316675], [23.1066080000001, 43.1260290000001], [23.1081855, 43.1223185000001], [23.112964, 43.11528], [23.1245270000001, 43.11879], [23.143223, 43.1114205000001], [23.1600875, 43.1108520000001], [23.1813445, 43.1098595], [23.1889875000001, 43.1123060000001], [23.188452, 43.1160360000001], [23.1915705000001, 43.118159], [23.1932935, 43.1165415], [23.204035, 43.113097], [23.2063625000001, 43.118999], [23.192507, 43.129964499], [23.191966, 43.1398160000001], [23.1995825000001, 43.1554245], [23.21408, 43.1948475], [23.2120355000001, 43.1954390000001], [23.2265100000001, 43.1983430000001], [23.2388790000001, 43.2068170000001], [23.2416955, 43.2119789990001], [23.238298, 43.2218725000001], [23.2178575, 43.2271900000001], [23.2130125, 43.2325280000001], [23.2159605000001, 43.2340975000001] ] ] },
+    "properties": {
+      "ISO": "BG-MON02",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "3928",
+      "NAME_2": "Берковица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.4922945000001, 43.5852435], [23.4852805, 43.5935260000001], [23.4728215000001, 43.601456], [23.467879, 43.6014720000001], [23.4646075000001, 43.6049640000001], [23.4641520000001, 43.613258], [23.4471985000001, 43.6133205000001], [23.4472205000001, 43.6179605], [23.4415455000001, 43.613075], [23.4327105, 43.6102625], [23.416525, 43.60932], [23.405763, 43.597197001], [23.3982455, 43.5933945], [23.3883055000001, 43.5931630000001], [23.3810550000001, 43.5881620000001], [23.3787995000001, 43.5819980000001], [23.3797965000001, 43.5788030000001], [23.3466465000001, 43.5778655], [23.346755, 43.5710470000001], [23.3314685, 43.5710660010001], [23.3298125000001, 43.563502499], [23.314895, 43.5398070000001], [23.3139455, 43.5213775], [23.2965550000001, 43.5176895010001], [23.2936955000001, 43.5125350000001], [23.2958810000001, 43.5096550000001], [23.282564, 43.5100375000001], [23.2701755000001, 43.502327], [23.2506605, 43.5090145], [23.2488315000001, 43.5106795], [23.2349025, 43.4924564990001], [23.2647680000001, 43.4771625000001], [23.278266, 43.4714355], [23.2877115000001, 43.470809], [23.3244700000001, 43.449016], [23.324059, 43.4447405000001], [23.3245175000001, 43.443724], [23.3269235000001, 43.4395440010001], [23.3358155, 43.437509], [23.3519205000001, 43.4241880000001], [23.366493, 43.4362925], [23.3731145, 43.4369075000001], [23.3935660000001, 43.4259225000001], [23.400566, 43.429226], [23.4063350000001, 43.425147999], [23.4091690000001, 43.428548], [23.3999335, 43.4327320000001], [23.4043835000001, 43.4405824990001], [23.3973290000001, 43.443973], [23.4066920000001, 43.4536745], [23.4105490000001, 43.4602180000001], [23.4195120000001, 43.4715595000001], [23.4272290000001, 43.472810001], [23.435169, 43.4909985], [23.44003, 43.4898805], [23.4459285, 43.5028975000001], [23.4530365000001, 43.4994975000001], [23.4654790000001, 43.511585], [23.4724580000001, 43.509663], [23.492916, 43.4963805], [23.490954, 43.4935515000001], [23.5115885000001, 43.4857185000001], [23.5313395000001, 43.492918999], [23.5482915000001, 43.495802], [23.552759, 43.4880855000001], [23.5683875, 43.4942465], [23.562122, 43.4987800000001], [23.5627535, 43.5047045000001], [23.5706445000001, 43.5058135], [23.5751030000001, 43.5162455], [23.5822440000001, 43.5184129990001], [23.5845355000001, 43.522234], [23.6036365000001, 43.5204145000001], [23.601793, 43.522637], [23.6284695000001, 43.515545499], [23.636919, 43.5224690000001], [23.6396045000001, 43.53128], [23.6129465000001, 43.5433360000001], [23.6136375, 43.5471625000001], [23.6013985000001, 43.5524815000001], [23.5919660000001, 43.54929], [23.5874850000001, 43.5566885000001], [23.5837095000001, 43.5550255000001], [23.5702065, 43.564959999], [23.5462995, 43.5729620000001], [23.5453745, 43.5775885], [23.537813, 43.5753105000001], [23.5361585000001, 43.580581], [23.530542, 43.5827415000001], [23.5148715, 43.584159], [23.504304, 43.585112999], [23.5054075, 43.5814930000001], [23.4950155, 43.5824515], [23.4922945000001, 43.5852435] ] ] },
+    "properties": {
+      "ISO": "BG-MON04",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "48489",
+      "NAME_1": "MON",
+      "TYPE_1": "Област",
+      "ID_2": "5236",
+      "NAME_2": "Бойчиновци",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.4419100000001, 42.076691999], [24.4440515000001, 42.082166], [24.4663525, 42.0904685], [24.4663675, 42.0912075000001], [24.4512415, 42.1044210000001], [24.4455035, 42.1131505010001], [24.437736, 42.1132160000001], [24.4056325, 42.1084010000001], [24.401399, 42.109957501], [24.384536, 42.1069850000001], [24.3919195, 42.1024884990001], [24.3874050000001, 42.1032425000001], [24.3827880000001, 42.1033120000001], [24.370686, 42.0963340000001], [24.3484120000001, 42.0798695], [24.3494085, 42.063884], [24.3421520000001, 42.0553905000001], [24.343694, 42.0552685000001], [24.3417575, 42.0473170010001], [24.34673, 42.046251999], [24.3494630000001, 42.03912], [24.3339605, 42.029048], [24.3340425000001, 42.019729], [24.3360910000001, 42.0184214990001], [24.330566, 42.0076395], [24.3149145, 41.9994525000001], [24.3005575, 41.9901775000001], [24.304741, 41.9837019990001], [24.303973, 41.9830440000001], [24.3045465000001, 41.9773395], [24.3069075, 41.9675245010001], [24.3187530000001, 41.952749], [24.3100575, 41.9402440000001], [24.3149990000001, 41.9304490000001], [24.3138250000001, 41.926881999], [24.3080615000001, 41.9237480000001], [24.305549, 41.9178670000001], [24.306357, 41.9146215000001], [24.309216, 41.9108885000001], [24.3184705, 41.9130230000001], [24.337165, 41.905853], [24.3549365000001, 41.9041565000001], [24.3451305, 41.909793], [24.3546700000001, 41.9104590000001], [24.3635875000001, 41.9072060010001], [24.3782085, 41.908063], [24.4020325000001, 41.8986085000001], [24.4288530000001, 41.9046520000001], [24.4386795, 41.8990539990001], [24.4441230000001, 41.8989195], [24.4481555, 41.9029755], [24.4490845, 41.905126001], [24.4373405000001, 41.9233664990001], [24.4269580000001, 41.927106], [24.4333015, 41.9361999990001], [24.439807, 41.9382185000001], [24.4538615000001, 41.943786], [24.4600205, 41.955769999], [24.4543055, 41.965247999], [24.4574025000001, 41.967991], [24.4562135, 41.9712880000001], [24.455427, 41.9829735000001], [24.46842, 41.9915235], [24.4705740000001, 41.9899095000001], [24.4735475000001, 41.9950275], [24.460676, 42.005028], [24.457257, 42.0107879990001], [24.45773, 42.0249460000001], [24.4520105, 42.0415475], [24.4486245000001, 42.045016], [24.4439410000001, 42.043281499], [24.4397835, 42.0500375], [24.4444925, 42.067276], [24.4416215000001, 42.0711835000001], [24.4419100000001, 42.076691999] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ06",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "6207",
+      "NAME_2": "Брацигово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.960567, 42.266055501], [23.945999, 42.2710405], [23.9347635, 42.2721225000001], [23.9328705, 42.2751289990001], [23.9235525, 42.277661999], [23.9247175, 42.2866080000001], [23.9178370000001, 42.2949645], [23.9016080000001, 42.2972685], [23.898712, 42.2993425000001], [23.8926335, 42.294477], [23.888001, 42.2840545], [23.894599, 42.2747465], [23.8850045, 42.2594750000001], [23.86648, 42.2317345000001], [23.8525065000001, 42.224066], [23.840423, 42.2096095000001], [23.8043000000001, 42.2051230000001], [23.7998915000001, 42.1969540000001], [23.79596, 42.1965965000001], [23.7792840000001, 42.1817750000001], [23.7722600000001, 42.181185499], [23.7625955, 42.1721515], [23.760595, 42.164972], [23.7616905, 42.1568985000001], [23.7838325000001, 42.1470535], [23.7912950000001, 42.139460001], [23.805801, 42.1352545], [23.8108750000001, 42.1321185], [23.812821, 42.125553], [23.805931, 42.1222185], [23.794431, 42.1217805000001], [23.7918285000001, 42.105422], [23.798343, 42.099206], [23.8432335000001, 42.1003880000001], [23.8718650000001, 42.093009501], [23.8853510000001, 42.1015625000001], [23.890607, 42.1008545010001], [23.9006590000001, 42.1050435000001], [23.9207085, 42.1066465000001], [23.9522215000001, 42.1109510000001], [23.968263, 42.1134795], [23.9871150000001, 42.1255120000001], [23.9916355, 42.131358], [24.0033990000001, 42.1317515010001], [24.0187940000001, 42.1409375000001], [24.0211790000001, 42.1453265000001], [24.0442715, 42.1740965000001], [24.0565360000001, 42.192306], [24.0692395, 42.1982780000001], [24.0818330000001, 42.1981040000001], [24.0818585000001, 42.2004820000001], [24.079731, 42.2188075], [24.0794985000001, 42.2221700000001], [24.077161, 42.2356355000001], [24.0752145000001, 42.2371935], [24.071677, 42.2343025000001], [24.0693985, 42.2368240000001], [24.0728285000001, 42.2452145], [24.0620345, 42.2505125000001], [24.0450300000001, 42.2601250000001], [24.0421085, 42.26181], [24.013515, 42.2545035000001], [23.9994105000001, 42.259304], [23.992379, 42.2574585], [23.975561, 42.2601220000001], [23.961869, 42.2657170000001], [23.960567, 42.266055501] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ04",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "3592",
+      "NAME_2": "Белово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.0340830000001, 42.3484110000001], [24.0159120000001, 42.3586910000001], [23.9970700000001, 42.3567265], [23.989743, 42.3607485000001], [23.9741945000001, 42.3633105000001], [23.9676465000001, 42.3700620000001], [23.962742, 42.373111], [23.953896, 42.3681035000001], [23.955492, 42.3552375], [23.9477305, 42.3366875], [23.9409020000001, 42.3307290000001], [23.9475085, 42.3247455000001], [23.95054, 42.32244], [23.9604145000001, 42.313045], [23.9828955, 42.3042245], [23.9929765000001, 42.2993520000001], [23.994878, 42.2941115], [23.9824345000001, 42.286427001], [23.9715630000001, 42.274843], [23.9670580000001, 42.2672505], [23.961869, 42.2657170000001], [23.975561, 42.2601220000001], [23.992379, 42.2574585], [23.9994105000001, 42.259304], [24.013515, 42.2545035000001], [24.0421085, 42.26181], [24.0450300000001, 42.2601250000001], [24.0620345, 42.2505125000001], [24.0728285000001, 42.2452145], [24.0693985, 42.2368240000001], [24.071677, 42.2343025000001], [24.0752145000001, 42.2371935], [24.077161, 42.2356355000001], [24.0794985000001, 42.2221700000001], [24.079731, 42.2188075], [24.0818585000001, 42.2004820000001], [24.0818330000001, 42.1981040000001], [24.0692395, 42.1982780000001], [24.0565360000001, 42.192306], [24.0442715, 42.1740965000001], [24.0211790000001, 42.1453265000001], [24.0187940000001, 42.1409375000001], [24.0242565, 42.140381], [24.044884, 42.132883], [24.0565915, 42.1250025000001], [24.060052, 42.125663], [24.0625285, 42.1242720000001], [24.0698780000001, 42.128653001], [24.07858, 42.1265375], [24.0786545, 42.1265260000001], [24.0998365, 42.109422001], [24.1064500000001, 42.1080225000001], [24.1251225, 42.108456], [24.1334375000001, 42.1023925000001], [24.1521495000001, 42.103079001], [24.1540910000001, 42.1068375], [24.1532775000001, 42.1169485], [24.15024, 42.1209700000001], [24.1549150000001, 42.1288355], [24.1637670000001, 42.1307704990001], [24.1645485, 42.1447840000001], [24.1740355000001, 42.1485255000001], [24.1877745, 42.147836999], [24.1865805, 42.15797], [24.1955545000001, 42.157537], [24.1907125000001, 42.1685175000001], [24.1909655000001, 42.172225], [24.2164690000001, 42.1846800000001], [24.2124765, 42.1887210000001], [24.2279565000001, 42.189393501], [24.2265705, 42.1906480000001], [24.2318100000001, 42.1926789990001], [24.24253, 42.2126185000001], [24.2401830000001, 42.2143405000001], [24.2218945000001, 42.2139035000001], [24.2237630000001, 42.2292665000001], [24.2069275000001, 42.2529329990001], [24.198069, 42.258246001], [24.2003480000001, 42.2672395010001], [24.1911675000001, 42.2741605000001], [24.1880315, 42.2841605], [24.185481, 42.2915495], [24.1778430000001, 42.2959950000001], [24.1865, 42.3025295000001], [24.1826105000001, 42.306995], [24.1666040000001, 42.2992564990001], [24.145567, 42.316965], [24.1282695, 42.3204050000001], [24.1164815000001, 42.327007], [24.1126045, 42.332542], [24.1018595, 42.3303975000001], [24.097456, 42.331214], [24.0968955000001, 42.3339189990001], [24.0891125000001, 42.3329425000001], [24.0856850000001, 42.3342155], [24.034594, 42.3458175010001], [24.031733, 42.347495], [24.0340830000001, 42.3484110000001] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ29",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "66264",
+      "NAME_2": "Септември",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.9812250000001, 41.8135775010001], [23.9716115000001, 41.8206230000001], [23.962479, 41.8214850000001], [23.9528545000001, 41.8298255], [23.9481025000001, 41.8387450000001], [23.9340885, 41.840812], [23.9333875, 41.8415365000001], [23.9305775, 41.8481120000001], [23.9223270000001, 41.8537939990001], [23.9075035000001, 41.8692810000001], [23.897364, 41.8659185000001], [23.892821, 41.8589605000001], [23.8799950000001, 41.8525109990001], [23.860152, 41.8517445000001], [23.850923, 41.8592275], [23.8370235, 41.8613844990001], [23.8254005000001, 41.8739230000001], [23.8240315, 41.8806485000001], [23.8044095000001, 41.8946875], [23.7893425, 41.891403], [23.7851165000001, 41.8846615], [23.7860605000001, 41.8812565000001], [23.78, 41.8748370000001], [23.7772915, 41.8694255010001], [23.7813340000001, 41.862416001], [23.784406, 41.8599130000001], [23.7887680000001, 41.860931001], [23.7932795, 41.8547760000001], [23.788827, 41.8478525], [23.791259, 41.843309999], [23.7862170000001, 41.8335420000001], [23.8340985, 41.8150025], [23.8358635000001, 41.8144255], [23.8498135, 41.8094375000001], [23.8518710000001, 41.8025465000001], [23.8632390000001, 41.79405], [23.8676295000001, 41.7923554990001], [23.8809115, 41.7970175], [23.8948955000001, 41.797149], [23.9061475, 41.785804], [23.9189555, 41.778692], [23.9258215, 41.7679345000001], [23.9391985, 41.7647305], [23.9520360000001, 41.7565479990001], [23.9595715, 41.7479000010001], [23.987628, 41.7363245000001], [23.9911595, 41.732923], [23.990884, 41.728845], [24.0029660000001, 41.7202275010001], [24.0050945, 41.7227415], [24.0111385000001, 41.722309], [24.0120690000001, 41.7193075000001], [24.008139, 41.7144095], [24.0182465, 41.7064730000001], [24.0249095, 41.704349], [24.029498, 41.6981905000001], [24.0348025000001, 41.7048350000001], [24.047651, 41.6992040000001], [24.0493930000001, 41.6912830000001], [24.0425135, 41.6865585], [24.0579285000001, 41.681659], [24.0611025000001, 41.6792185], [24.0745475000001, 41.6727040000001], [24.0831700000001, 41.6801145000001], [24.0936760000001, 41.6846405000001], [24.100175, 41.692950501], [24.0964105, 41.6935625], [24.0967380000001, 41.6970020000001], [24.114583, 41.7033280000001], [24.1078355000001, 41.7111825000001], [24.1116720000001, 41.7163495], [24.1002530000001, 41.7235680000001], [24.092027, 41.7400520000001], [24.0810695000001, 41.7366625000001], [24.057086, 41.7453750000001], [24.060351, 41.7503760000001], [24.0570735000001, 41.7621530000001], [24.0493435000001, 41.768988], [24.0324175000001, 41.7753010000001], [24.01548, 41.7845790000001], [23.9963675000001, 41.7956845000001], [23.9938635, 41.7998515], [23.991975, 41.8129860000001], [23.9812250000001, 41.8135775010001] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ39",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "70648",
+      "NAME_2": "Сърница",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.3484120000001, 42.0798695], [24.370686, 42.0963340000001], [24.3827880000001, 42.1033120000001], [24.3874050000001, 42.1032425000001], [24.3919195, 42.1024884990001], [24.384536, 42.1069850000001], [24.3659010000001, 42.1067430000001], [24.3630145000001, 42.1097025], [24.3577635, 42.116003], [24.3568315000001, 42.121358], [24.3440000000001, 42.135632], [24.3352945, 42.138050499], [24.3223830000001, 42.1331975000001], [24.2969440000001, 42.1149185], [24.2845830000001, 42.1172335], [24.2826815, 42.1139830000001], [24.2774610000001, 42.1013635], [24.279004, 42.0958665000001], [24.2737005000001, 42.082101999], [24.2673325000001, 42.0753445], [24.2591525, 42.0683455000001], [24.2182, 42.0531980000001], [24.2138885, 42.0501445], [24.2135480000001, 42.0455885010001], [24.2089060000001, 42.0354075010001], [24.207609, 42.0258660000001], [24.199573, 42.0228425], [24.2012750000001, 42.021514999], [24.203175, 42.020814], [24.2012785000001, 42.007597], [24.2104180000001, 42.001363], [24.2288760000001, 41.9972940000001], [24.252171, 41.9882725000001], [24.2464610000001, 41.9830385000001], [24.2668150000001, 41.9765860000001], [24.304741, 41.9837019990001], [24.3005575, 41.9901775000001], [24.3149145, 41.9994525000001], [24.330566, 42.0076395], [24.3360910000001, 42.0184214990001], [24.3340425000001, 42.019729], [24.3339605, 42.029048], [24.3494630000001, 42.03912], [24.34673, 42.046251999], [24.3417575, 42.0473170010001], [24.343694, 42.0552685000001], [24.3421520000001, 42.0553905000001], [24.3494085, 42.063884], [24.3484120000001, 42.0798695] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ21",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "56277",
+      "NAME_2": "Пещера",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.252171, 41.9882725000001], [24.2288760000001, 41.9972940000001], [24.2104180000001, 42.001363], [24.2012785000001, 42.007597], [24.203175, 42.020814], [24.2012750000001, 42.021514999], [24.1938665000001, 42.0157280010001], [24.1816925000001, 42.012273], [24.1829105, 42.0073905], [24.185172, 42.0072975], [24.189157, 42.0005150000001], [24.1859010000001, 41.9949554990001], [24.1693435, 41.995931], [24.1604970000001, 41.9971795000001], [24.1521050000001, 41.9957555], [24.154237, 41.9880640000001], [24.1649430000001, 41.9845015000001], [24.179582, 41.9786530000001], [24.1775305, 41.9756445], [24.1596240000001, 41.9765400000001], [24.1458200000001, 41.9765035], [24.1410305000001, 41.974744999], [24.136871, 41.976843], [24.1303520000001, 41.9743030000001], [24.1281975000001, 41.9708450000001], [24.1298815000001, 41.9641375], [24.1413975, 41.9511190000001], [24.1528485000001, 41.9435915010001], [24.1568335000001, 41.941768], [24.1331205000001, 41.9283945], [24.1353715000001, 41.9151315], [24.1279495000001, 41.9062195000001], [24.1166805, 41.9166715000001], [24.1052665, 41.9193015000001], [24.0951545, 41.9150295000001], [24.0814555000001, 41.9031505], [24.082612, 41.892031], [24.078271, 41.8861345], [24.0580965, 41.891621001], [24.0420415, 41.8900105000001], [24.030293, 41.8855780000001], [24.0275305000001, 41.8876270000001], [24.0159955, 41.8622070000001], [24.020676, 41.8585600000001], [24.0130085000001, 41.8489365], [24.0028035, 41.844478], [23.9964820000001, 41.8347355000001], [23.9919955, 41.8239375000001], [23.991975, 41.8129860000001], [23.9938635, 41.7998515], [23.9963675000001, 41.7956845000001], [24.01548, 41.7845790000001], [24.0324175000001, 41.7753010000001], [24.0493435000001, 41.768988], [24.0570735000001, 41.7621530000001], [24.060351, 41.7503760000001], [24.057086, 41.7453750000001], [24.0810695000001, 41.7366625000001], [24.092027, 41.7400520000001], [24.1002530000001, 41.7235680000001], [24.1116720000001, 41.7163495], [24.1078355000001, 41.7111825000001], [24.1243695000001, 41.708382499], [24.1348255, 41.7164115], [24.156755, 41.7257960000001], [24.1754525000001, 41.7379379990001], [24.17888, 41.7398685000001], [24.1818980000001, 41.7345300000001], [24.180592, 41.7272485010001], [24.189982, 41.7214940000001], [24.2013465000001, 41.7213755000001], [24.2056095, 41.7191825000001], [24.2248945000001, 41.719583001], [24.2345615, 41.7210635000001], [24.240236, 41.713540499], [24.2535530000001, 41.7108650000001], [24.2698605, 41.7078545000001], [24.2760270000001, 41.7180695010001], [24.2957670000001, 41.7206795000001], [24.2988345000001, 41.727943], [24.2959220000001, 41.7401810000001], [24.3002165, 41.7445510000001], [24.3083185, 41.754418], [24.3138240000001, 41.7542715000001], [24.3155485, 41.752705], [24.3146935, 41.7498160000001], [24.316781, 41.7497570000001], [24.3267845, 41.758627501], [24.3148380000001, 41.7710290000001], [24.3133785000001, 41.7810680000001], [24.3191545, 41.798859], [24.3218000000001, 41.8059900000001], [24.3312215, 41.813297], [24.3331045, 41.817637], [24.3307810000001, 41.827926], [24.3493995000001, 41.8416320000001], [24.3526660000001, 41.8442785010001], [24.3617980000001, 41.8599745000001], [24.3713965000001, 41.8578485], [24.3810595, 41.8646845000001], [24.3990425000001, 41.8644765000001], [24.4152100000001, 41.8716230000001], [24.418802, 41.8702274990001], [24.4192525, 41.8758205], [24.4208095000001, 41.8816060010001], [24.4231755000001, 41.8893860000001], [24.4386795, 41.8990539990001], [24.4288530000001, 41.9046520000001], [24.4020325000001, 41.8986085000001], [24.3782085, 41.908063], [24.3635875000001, 41.9072060010001], [24.3546700000001, 41.9104590000001], [24.3451305, 41.909793], [24.3549365000001, 41.9041565000001], [24.337165, 41.905853], [24.3184705, 41.9130230000001], [24.309216, 41.9108885000001], [24.306357, 41.9146215000001], [24.305549, 41.9178670000001], [24.3080615000001, 41.9237480000001], [24.3138250000001, 41.926881999], [24.3149990000001, 41.9304490000001], [24.3100575, 41.9402440000001], [24.3187530000001, 41.952749], [24.3069075, 41.9675245010001], [24.3045465000001, 41.9773395], [24.303973, 41.9830440000001], [24.304741, 41.9837019990001], [24.2668150000001, 41.9765860000001], [24.2464610000001, 41.9830385000001], [24.252171, 41.9882725000001] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ03",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "2837",
+      "NAME_2": "Батак",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.217989, 42.3413495], [24.188475, 42.356551], [24.1874490000001, 42.3644320000001], [24.178498, 42.377642], [24.173819, 42.3807755], [24.1730475000001, 42.3824865], [24.1792600000001, 42.3908085], [24.1546720000001, 42.405945], [24.149167, 42.4147370000001], [24.1422505, 42.415699499], [24.1209720000001, 42.4286695000001], [24.0977405, 42.428619], [24.0854555, 42.4370960000001], [24.0844905000001, 42.4377870000001], [24.082164, 42.443811], [24.06802, 42.4461105], [24.0660565000001, 42.4499235000001], [24.0587380000001, 42.4497355], [24.046951, 42.428708], [24.0476800000001, 42.421080999], [24.0450090000001, 42.4092430000001], [24.0340615000001, 42.3977895], [24.0248060000001, 42.3907955000001], [24.0093755, 42.3881695000001], [24.006113, 42.3944505000001], [23.9971770000001, 42.3899710000001], [23.9708465000001, 42.3885395], [23.9585680000001, 42.3833015000001], [23.957428, 42.3809705000001], [23.962742, 42.373111], [23.9676465000001, 42.3700620000001], [23.9741945000001, 42.3633105000001], [23.989743, 42.3607485000001], [23.9970700000001, 42.3567265], [24.0159120000001, 42.3586910000001], [24.0340830000001, 42.3484110000001], [24.031733, 42.347495], [24.034594, 42.3458175010001], [24.0856850000001, 42.3342155], [24.0891125000001, 42.3329425000001], [24.0968955000001, 42.3339189990001], [24.097456, 42.331214], [24.1018595, 42.3303975000001], [24.1126045, 42.332542], [24.1164815000001, 42.327007], [24.1282695, 42.3204050000001], [24.145567, 42.316965], [24.1666040000001, 42.2992564990001], [24.1826105000001, 42.306995], [24.1865, 42.3025295000001], [24.1778430000001, 42.2959950000001], [24.185481, 42.2915495], [24.1880315, 42.2841605], [24.1911675000001, 42.2741605000001], [24.2003480000001, 42.2672395010001], [24.238171, 42.2701470000001], [24.2416365, 42.2651835], [24.2464575000001, 42.2677625000001], [24.243816, 42.2710260000001], [24.2556020000001, 42.2644965000001], [24.2615450000001, 42.27151], [24.26572, 42.2753195000001], [24.2683715000001, 42.2776700000001], [24.273984, 42.2766735000001], [24.2820075000001, 42.2760765], [24.2828095, 42.2779820010001], [24.2868765000001, 42.2902085010001], [24.292812, 42.2881785000001], [24.284885, 42.2978335000001], [24.263947, 42.3097225000001], [24.2706535, 42.320342], [24.2547660000001, 42.3246765000001], [24.242958, 42.3342830010001], [24.2288735000001, 42.3330815000001], [24.2260985, 42.3348369990001], [24.217989, 42.3413495] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ14",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "43369",
+      "NAME_2": "Лесичово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.8432335000001, 42.1003880000001], [23.798343, 42.099206], [23.8038865, 42.0893015], [23.8013040000001, 42.0849390000001], [23.7962415000001, 42.072596], [23.795873, 42.053999], [23.7953385000001, 42.0527415], [23.8015885, 42.050084], [23.806502, 42.0485095000001], [23.8225420000001, 42.0431510010001], [23.8254160000001, 42.0341405], [23.8077290000001, 42.0272649990001], [23.7967330000001, 42.0178450000001], [23.7920865, 42.017112], [23.7837835, 42.0110575], [23.7817690000001, 42.0053185], [23.7816350000001, 42.0030545000001], [23.7639160000001, 41.996027], [23.7561785, 41.985664], [23.7630100000001, 41.9811745000001], [23.7595010000001, 41.9761539990001], [23.7693805000001, 41.9617004990001], [23.7553475, 41.929205], [23.7619665, 41.9220705010001], [23.7689485000001, 41.9195260000001], [23.7780795000001, 41.9031140010001], [23.7765525, 41.8987035000001], [23.778223, 41.8927895000001], [23.7893425, 41.891403], [23.8044095000001, 41.8946875], [23.8240315, 41.8806485000001], [23.8254005000001, 41.8739230000001], [23.8370235, 41.8613844990001], [23.850923, 41.8592275], [23.860152, 41.8517445000001], [23.8799950000001, 41.8525109990001], [23.892821, 41.8589605000001], [23.897364, 41.8659185000001], [23.9075035000001, 41.8692810000001], [23.9223270000001, 41.8537939990001], [23.9305775, 41.8481120000001], [23.9333875, 41.8415365000001], [23.9340885, 41.840812], [23.9481025000001, 41.8387450000001], [23.9528545000001, 41.8298255], [23.962479, 41.8214850000001], [23.9716115000001, 41.8206230000001], [23.9812250000001, 41.8135775010001], [23.991975, 41.8129860000001], [23.9919955, 41.8239375000001], [23.9964820000001, 41.8347355000001], [24.0028035, 41.844478], [24.0130085000001, 41.8489365], [24.020676, 41.8585600000001], [24.0159955, 41.8622070000001], [24.0275305000001, 41.8876270000001], [24.0199210000001, 41.8985295000001], [24.006067, 41.908732], [24.006137, 41.924966], [24.0029065000001, 41.9410060010001], [24.0105885, 41.9581820000001], [24.0304595000001, 41.9656860000001], [24.0421075, 41.9906800000001], [24.0445930000001, 42.007683], [24.0561940000001, 42.0165680000001], [24.0663950000001, 42.0218320010001], [24.072792, 42.0189740000001], [24.0758660000001, 42.0195975], [24.0688485000001, 42.0308820000001], [24.0526860000001, 42.03502], [24.0537485, 42.0403380000001], [24.0504565, 42.0471650000001], [24.0524965000001, 42.0486135], [24.0567730000001, 42.0683910000001], [24.0532605000001, 42.0777785000001], [24.0605810000001, 42.0958015000001], [24.0625475000001, 42.094569], [24.0719040000001, 42.0909495000001], [24.0734305, 42.097522], [24.069308, 42.1049180000001], [24.0700235, 42.1106950000001], [24.07858, 42.1265375], [24.0698780000001, 42.128653001], [24.0625285, 42.1242720000001], [24.060052, 42.125663], [24.0565915, 42.1250025000001], [24.044884, 42.132883], [24.0242565, 42.140381], [24.0187940000001, 42.1409375000001], [24.0033990000001, 42.1317515010001], [23.9916355, 42.131358], [23.9871150000001, 42.1255120000001], [23.968263, 42.1134795], [23.9522215000001, 42.1109510000001], [23.9207085, 42.1066465000001], [23.9006590000001, 42.1050435000001], [23.890607, 42.1008545010001], [23.8853510000001, 42.1015625000001], [23.8718650000001, 42.093009501], [23.8432335000001, 42.1003880000001] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ08",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "10450",
+      "NAME_2": "Велинград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.4123210000001, 42.565142001], [24.380619, 42.5668660000001], [24.3742445, 42.5648695], [24.3547335000001, 42.5502060000001], [24.3491050000001, 42.5664200000001], [24.3439755000001, 42.5747165000001], [24.317704, 42.5820775], [24.3150445000001, 42.5832350000001], [24.3174990000001, 42.5791775000001], [24.3108720000001, 42.5610485], [24.296744, 42.5538225000001], [24.2754935, 42.531905], [24.2812325, 42.5256525], [24.275815, 42.5188240000001], [24.2688380000001, 42.5062800000001], [24.26865, 42.495776], [24.274171, 42.4775825], [24.2717565, 42.4712260000001], [24.2623520000001, 42.4645810000001], [24.2733355, 42.4670495], [24.2838185000001, 42.4631515], [24.287018, 42.458625999], [24.2989690000001, 42.4526275000001], [24.3316825000001, 42.453493], [24.3401855000001, 42.4576305000001], [24.3338475, 42.4484735], [24.33581, 42.4434765], [24.342613, 42.4418830000001], [24.3445095000001, 42.4348175000001], [24.332303, 42.4248445000001], [24.322238, 42.4187200000001], [24.2903725, 42.4177050000001], [24.2846660000001, 42.4090865000001], [24.287498, 42.4037605], [24.2945135, 42.397344], [24.3181325, 42.3796235], [24.3240215000001, 42.3732680000001], [24.3282350000001, 42.3704620010001], [24.3290900000001, 42.3728415], [24.3432070000001, 42.375817], [24.3479005, 42.3692575000001], [24.3681090000001, 42.372236], [24.3656955000001, 42.377624], [24.3681635, 42.375731], [24.3792030000001, 42.3755925], [24.3885710000001, 42.3672110000001], [24.3899200000001, 42.3653370000001], [24.3974415000001, 42.3645805], [24.41067, 42.3585], [24.4238125000001, 42.3517860000001], [24.4334720000001, 42.3543895], [24.4368615000001, 42.3628705], [24.445454, 42.3626895], [24.448829, 42.369082], [24.439442, 42.3711010000001], [24.4370135, 42.381223], [24.4447705000001, 42.3843140000001], [24.4457610000001, 42.391018], [24.4282405000001, 42.3976455000001], [24.4280355000001, 42.4026880000001], [24.4268720000001, 42.4075520000001], [24.4300455000001, 42.4163265010001], [24.440407, 42.4212010000001], [24.4441595000001, 42.4236980000001], [24.4359685000001, 42.435126999], [24.4270855, 42.43717], [24.4337055, 42.452749], [24.4116740000001, 42.4633295], [24.3923945, 42.4643510010001], [24.3880570000001, 42.4673095000001], [24.3887015, 42.4765680000001], [24.384531, 42.4769680000001], [24.380928, 42.4828965], [24.3812625000001, 42.4951915], [24.3929685000001, 42.5042070000001], [24.4077185, 42.5151774990001], [24.4216875000001, 42.5282530000001], [24.4231655, 42.5381775000001], [24.414882, 42.5491930000001], [24.4210095, 42.5530640000001], [24.4123210000001, 42.565142001] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ32",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "69835",
+      "NAME_2": "Стрелча",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.4238125000001, 42.3517860000001], [24.41067, 42.3585], [24.3974415000001, 42.3645805], [24.3899200000001, 42.3653370000001], [24.3885710000001, 42.3672110000001], [24.3792030000001, 42.3755925], [24.3681635, 42.375731], [24.3656955000001, 42.377624], [24.3681090000001, 42.372236], [24.3479005, 42.3692575000001], [24.3432070000001, 42.375817], [24.3290900000001, 42.3728415], [24.3282350000001, 42.3704620010001], [24.3240215000001, 42.3732680000001], [24.3173355000001, 42.3740795000001], [24.309158, 42.3741040000001], [24.3019095000001, 42.3651985000001], [24.2988070000001, 42.3541570000001], [24.2842185000001, 42.3492150000001], [24.2794185000001, 42.3480925000001], [24.2748755000001, 42.3504025010001], [24.2770565000001, 42.3533810000001], [24.2647615000001, 42.3568205], [24.2464595000001, 42.3514925000001], [24.249222, 42.3496410000001], [24.2487035, 42.3474265], [24.2404920000001, 42.3406150000001], [24.242958, 42.3342830010001], [24.2547660000001, 42.3246765000001], [24.2706535, 42.320342], [24.263947, 42.3097225000001], [24.284885, 42.2978335000001], [24.292812, 42.2881785000001], [24.2868765000001, 42.2902085010001], [24.2828095, 42.2779820010001], [24.2820075000001, 42.2760765], [24.273984, 42.2766735000001], [24.2683715000001, 42.2776700000001], [24.26572, 42.2753195000001], [24.2615450000001, 42.27151], [24.2556020000001, 42.2644965000001], [24.243816, 42.2710260000001], [24.2464575000001, 42.2677625000001], [24.2416365, 42.2651835], [24.238171, 42.2701470000001], [24.2003480000001, 42.2672395010001], [24.198069, 42.258246001], [24.2069275000001, 42.2529329990001], [24.2237630000001, 42.2292665000001], [24.2218945000001, 42.2139035000001], [24.2401830000001, 42.2143405000001], [24.24253, 42.2126185000001], [24.2318100000001, 42.1926789990001], [24.2265705, 42.1906480000001], [24.2279565000001, 42.189393501], [24.2124765, 42.1887210000001], [24.2164690000001, 42.1846800000001], [24.1909655000001, 42.172225], [24.1907125000001, 42.1685175000001], [24.1955545000001, 42.157537], [24.1865805, 42.15797], [24.1877745, 42.147836999], [24.1740355000001, 42.1485255000001], [24.1645485, 42.1447840000001], [24.1637670000001, 42.1307704990001], [24.1549150000001, 42.1288355], [24.15024, 42.1209700000001], [24.1532775000001, 42.1169485], [24.1540910000001, 42.1068375], [24.1521495000001, 42.103079001], [24.157318, 42.0895685], [24.1744670000001, 42.082185], [24.1753115000001, 42.0752130000001], [24.1859785, 42.0599995000001], [24.2138885, 42.0501445], [24.2182, 42.0531980000001], [24.2591525, 42.0683455000001], [24.2673325000001, 42.0753445], [24.2737005000001, 42.082101999], [24.279004, 42.0958665000001], [24.2774610000001, 42.1013635], [24.2826815, 42.1139830000001], [24.2845830000001, 42.1172335], [24.2969440000001, 42.1149185], [24.3223830000001, 42.1331975000001], [24.3352945, 42.138050499], [24.3440000000001, 42.135632], [24.3568315000001, 42.121358], [24.3577635, 42.116003], [24.3630145000001, 42.1097025], [24.3659010000001, 42.1067430000001], [24.384536, 42.1069850000001], [24.401399, 42.109957501], [24.4056325, 42.1084010000001], [24.437736, 42.1132160000001], [24.431455, 42.1242554990001], [24.4424955000001, 42.1244620000001], [24.4492665000001, 42.133334501], [24.4709255000001, 42.1461565000001], [24.4780930000001, 42.145657], [24.4803865000001, 42.1460670000001], [24.4918995, 42.145163], [24.4912965, 42.138116], [24.499416, 42.1343265], [24.5027475000001, 42.1417030000001], [24.5122865000001, 42.1462240000001], [24.5358375000001, 42.1507805000001], [24.537811, 42.1526555], [24.535765, 42.1613649990001], [24.5186205000001, 42.163778], [24.5179425000001, 42.1809410000001], [24.49915, 42.1807085], [24.491542, 42.1897595], [24.4966505, 42.2271675000001], [24.4950400000001, 42.2271050000001], [24.4891000000001, 42.2508305000001], [24.4891640000001, 42.2641780000001], [24.4731140000001, 42.266261], [24.4750510000001, 42.2756425000001], [24.4709875, 42.2811815000001], [24.4521805000001, 42.2929805000001], [24.4569645, 42.2983550000001], [24.4610845, 42.3029085000001], [24.4699895000001, 42.2985440000001], [24.479811, 42.305424499], [24.483141, 42.3147595], [24.4814630000001, 42.315502], [24.4847750000001, 42.3231930000001], [24.4662415, 42.337112], [24.470446, 42.3377365000001], [24.4682335000001, 42.3426495000001], [24.4385295000001, 42.3608825000001], [24.4368615000001, 42.3628705], [24.4334720000001, 42.3543895], [24.4238125000001, 42.3517860000001] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ19",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "55155",
+      "NAME_2": "Пазарджик",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.072792, 42.0189740000001], [24.0663950000001, 42.0218320010001], [24.0561940000001, 42.0165680000001], [24.0445930000001, 42.007683], [24.0421075, 41.9906800000001], [24.0304595000001, 41.9656860000001], [24.0105885, 41.9581820000001], [24.0029065000001, 41.9410060010001], [24.006137, 41.924966], [24.006067, 41.908732], [24.0199210000001, 41.8985295000001], [24.0275305000001, 41.8876270000001], [24.030293, 41.8855780000001], [24.0420415, 41.8900105000001], [24.0580965, 41.891621001], [24.078271, 41.8861345], [24.082612, 41.892031], [24.0814555000001, 41.9031505], [24.0951545, 41.9150295000001], [24.1052665, 41.9193015000001], [24.1166805, 41.9166715000001], [24.1279495000001, 41.9062195000001], [24.1353715000001, 41.9151315], [24.1331205000001, 41.9283945], [24.1568335000001, 41.941768], [24.1528485000001, 41.9435915010001], [24.1413975, 41.9511190000001], [24.1298815000001, 41.9641375], [24.1281975000001, 41.9708450000001], [24.1303520000001, 41.9743030000001], [24.136871, 41.976843], [24.1410305000001, 41.974744999], [24.1458200000001, 41.9765035], [24.1596240000001, 41.9765400000001], [24.1775305, 41.9756445], [24.179582, 41.9786530000001], [24.1649430000001, 41.9845015000001], [24.154237, 41.9880640000001], [24.1521050000001, 41.9957555], [24.1604970000001, 41.9971795000001], [24.1693435, 41.995931], [24.1859010000001, 41.9949554990001], [24.189157, 42.0005150000001], [24.185172, 42.0072975], [24.1829105, 42.0073905], [24.1816925000001, 42.012273], [24.1938665000001, 42.0157280010001], [24.2012750000001, 42.021514999], [24.199573, 42.0228425], [24.207609, 42.0258660000001], [24.2089060000001, 42.0354075010001], [24.2135480000001, 42.0455885010001], [24.2138885, 42.0501445], [24.1859785, 42.0599995000001], [24.1753115000001, 42.0752130000001], [24.1744670000001, 42.082185], [24.157318, 42.0895685], [24.1521495000001, 42.103079001], [24.1334375000001, 42.1023925000001], [24.1251225, 42.108456], [24.1064500000001, 42.1080225000001], [24.0998365, 42.109422001], [24.0786545, 42.1265260000001], [24.07858, 42.1265375], [24.0700235, 42.1106950000001], [24.069308, 42.1049180000001], [24.0734305, 42.097522], [24.0719040000001, 42.0909495000001], [24.0625475000001, 42.094569], [24.0605810000001, 42.0958015000001], [24.0532605000001, 42.0777785000001], [24.0567730000001, 42.0683910000001], [24.0524965000001, 42.0486135], [24.0504565, 42.0471650000001], [24.0537485, 42.0403380000001], [24.0526860000001, 42.03502], [24.0688485000001, 42.0308820000001], [24.0758660000001, 42.0195975], [24.072792, 42.0189740000001] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ24",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "62004",
+      "NAME_2": "Ракитово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.2623520000001, 42.4645810000001], [24.2717565, 42.4712260000001], [24.274171, 42.4775825], [24.26865, 42.495776], [24.2688380000001, 42.5062800000001], [24.275815, 42.5188240000001], [24.2812325, 42.5256525], [24.2754935, 42.531905], [24.296744, 42.5538225000001], [24.3108720000001, 42.5610485], [24.3174990000001, 42.5791775000001], [24.3150445000001, 42.5832350000001], [24.310122, 42.5910395010001], [24.309062, 42.6011855], [24.300465, 42.6080699990001], [24.2907145, 42.6130175010001], [24.2817585, 42.6228005], [24.2760765, 42.625529], [24.2722215000001, 42.6224970000001], [24.2608970000001, 42.6212905000001], [24.2486935000001, 42.6243565], [24.234521, 42.6260680010001], [24.227927, 42.628997499], [24.217545, 42.6274754990001], [24.2164005000001, 42.6227655000001], [24.2117785, 42.618745], [24.2054075, 42.6222185], [24.1959150000001, 42.6176955], [24.1783105000001, 42.6211979990001], [24.1542845000001, 42.615344501], [24.15241, 42.6053115], [24.149526, 42.6075765], [24.1427875000001, 42.6051259990001], [24.1416295000001, 42.593165501], [24.128854, 42.5882490010001], [24.1282925, 42.5817065000001], [24.1237090000001, 42.5744955000001], [24.1084685000001, 42.567953], [24.0859820000001, 42.5719480000001], [24.076398, 42.5690065000001], [24.0767240000001, 42.5640935000001], [24.0738680000001, 42.5613870010001], [24.0547465000001, 42.5574565000001], [24.0435595000001, 42.5482450000001], [24.0298145, 42.5458540000001], [23.990322, 42.56244], [23.9840555000001, 42.569754001], [23.967591, 42.571169501], [23.9533555, 42.5693235000001], [23.9372490000001, 42.5611994990001], [23.9169795, 42.560498001], [23.9076010000001, 42.5522485000001], [23.8996445, 42.5468330000001], [23.8904885000001, 42.546269501], [23.8953490000001, 42.5414850000001], [23.8958825, 42.536168499], [23.9149360000001, 42.519665], [23.9101250000001, 42.5039525], [23.9552860000001, 42.4789500000001], [23.9594955000001, 42.4702995000001], [23.9539115000001, 42.4659775000001], [23.954258, 42.4636685], [23.9640645000001, 42.4653870010001], [23.9658315, 42.4627235], [23.9626835, 42.4618880000001], [23.9669480000001, 42.4598085000001], [23.9788585000001, 42.4684575000001], [23.9810605000001, 42.467273], [23.9790590000001, 42.4665715], [23.9818435, 42.4581219990001], [23.9894195000001, 42.453558], [24.0074515000001, 42.4566465], [24.0375940000001, 42.4656425000001], [24.0444755, 42.4645370000001], [24.05801, 42.4617295], [24.0660565000001, 42.4499235000001], [24.06802, 42.4461105], [24.082164, 42.443811], [24.0844905000001, 42.4377870000001], [24.0854555, 42.4370960000001], [24.0977405, 42.428619], [24.1209720000001, 42.4286695000001], [24.1422505, 42.415699499], [24.149167, 42.4147370000001], [24.1546720000001, 42.405945], [24.1792600000001, 42.3908085], [24.1730475000001, 42.3824865], [24.173819, 42.3807755], [24.178498, 42.377642], [24.1874490000001, 42.3644320000001], [24.188475, 42.356551], [24.217989, 42.3413495], [24.2260985, 42.3348369990001], [24.2288735000001, 42.3330815000001], [24.242958, 42.3342830010001], [24.2404920000001, 42.3406150000001], [24.2487035, 42.3474265], [24.249222, 42.3496410000001], [24.2464595000001, 42.3514925000001], [24.2647615000001, 42.3568205], [24.2770565000001, 42.3533810000001], [24.2748755000001, 42.3504025010001], [24.2794185000001, 42.3480925000001], [24.2842185000001, 42.3492150000001], [24.2988070000001, 42.3541570000001], [24.3019095000001, 42.3651985000001], [24.309158, 42.3741040000001], [24.3173355000001, 42.3740795000001], [24.3240215000001, 42.3732680000001], [24.3181325, 42.3796235], [24.2945135, 42.397344], [24.287498, 42.4037605], [24.2846660000001, 42.4090865000001], [24.2903725, 42.4177050000001], [24.322238, 42.4187200000001], [24.332303, 42.4248445000001], [24.3445095000001, 42.4348175000001], [24.342613, 42.4418830000001], [24.33581, 42.4434765], [24.3338475, 42.4484735], [24.3401855000001, 42.4576305000001], [24.3316825000001, 42.453493], [24.2989690000001, 42.4526275000001], [24.287018, 42.458625999], [24.2838185000001, 42.4631515], [24.2733355, 42.4670495], [24.2623520000001, 42.4645810000001] ] ] },
+    "properties": {
+      "ISO": "BG-PAZ20",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "55155",
+      "NAME_1": "PAZ",
+      "TYPE_1": "Област",
+      "ID_2": "55302",
+      "NAME_2": "Панагюрище",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.938975, 43.7634035], [26.9365280000001, 43.7595175000001], [26.9402460000001, 43.7582455000001], [26.9634990000001, 43.7478015], [26.9702550000001, 43.7419375000001], [26.9713360000001, 43.7348385000001], [26.974077, 43.7335335010001], [26.9763255, 43.7236070000001], [26.9864185000001, 43.7115885000001], [26.9942915, 43.711422499], [27.0021005, 43.7114135], [27.0018885000001, 43.696867501], [27.015951, 43.6970510000001], [27.0395750000001, 43.7059550000001], [27.0571660000001, 43.712223], [27.0540130000001, 43.7157635], [27.063702, 43.7207465000001], [27.0819730000001, 43.7186370000001], [27.0818485, 43.7150980000001], [27.1096915000001, 43.71155], [27.1269715, 43.7180060000001], [27.129808, 43.7107455], [27.1074585000001, 43.7059065], [27.1059955000001, 43.6891200000001], [27.1076235, 43.6840090000001], [27.1270305, 43.6799685], [27.1348850000001, 43.674877], [27.1437215, 43.6686805000001], [27.1517695000001, 43.6685890000001], [27.1553085, 43.6726090000001], [27.178279, 43.6794410000001], [27.1816945, 43.676905499], [27.1821295, 43.6720425], [27.1924270000001, 43.672539], [27.2195365000001, 43.6646205000001], [27.2333310000001, 43.6635985], [27.232767, 43.6814140000001], [27.2213080000001, 43.6919985000001], [27.215715, 43.6920674990001], [27.2045785, 43.7033294990001], [27.1997660000001, 43.7049005010001], [27.1994280000001, 43.7073455], [27.2094135, 43.7146210000001], [27.210725, 43.7292635000001], [27.2092815, 43.742781], [27.223415, 43.7537120000001], [27.2289250000001, 43.7474925010001], [27.23391, 43.7481489990001], [27.244495, 43.7645004990001], [27.2479735000001, 43.770179], [27.249982, 43.774298001], [27.2584810000001, 43.7722400000001], [27.2544585000001, 43.7796230010001], [27.268062, 43.7795785000001], [27.2688755, 43.7867525], [27.2700215, 43.7927825], [27.27763, 43.799921999], [27.2851255, 43.8005924990001], [27.2755075000001, 43.8258720000001], [27.2781420000001, 43.8345360000001], [27.2760695000001, 43.8352300000001], [27.2661715, 43.8281180000001], [27.2582605000001, 43.829130999], [27.2457420000001, 43.8280510000001], [27.2421355000001, 43.839619999], [27.2376915, 43.8472955], [27.2090000000001, 43.8427780000001], [27.2257115, 43.8626265010001], [27.229138, 43.8638619990001], [27.231884, 43.8726530010001], [27.2239335, 43.8773825000001], [27.2220540000001, 43.8830225], [27.2056925000001, 43.8898510000001], [27.1910015, 43.8969270000001], [27.1909325, 43.8975835000001], [27.172736, 43.9035950000001], [27.1475080000001, 43.9034015], [27.1426625, 43.9027635], [27.143313, 43.8992335], [27.127957, 43.8978019990001], [27.1262915, 43.9000235], [27.1165585000001, 43.894105], [27.1103210000001, 43.9058515], [27.1103695, 43.909943501], [27.1128915, 43.9124805000001], [27.1157815, 43.9106905000001], [27.1031775000001, 43.9239690000001], [27.0902085000001, 43.921045001], [27.0801520000001, 43.9322305010001], [27.076785, 43.9302559990001], [27.066021, 43.9375064990001], [27.04047, 43.9301129990001], [27.038985, 43.92915], [27.0345840000001, 43.9206115000001], [27.031755, 43.9132970000001], [27.017953, 43.9033240000001], [27.0154410000001, 43.9090820000001], [26.9884125, 43.9026945000001], [26.9785685000001, 43.911598], [26.964553, 43.903104], [26.9610585, 43.9060065], [26.957228, 43.910309], [26.951284, 43.910509], [26.9431770000001, 43.9042295], [26.9432455, 43.8968735], [26.9386655000001, 43.8850405000001], [26.9084845, 43.8834894990001], [26.9154585000001, 43.868540501], [26.9265935, 43.8683810000001], [26.926922, 43.871604501], [26.956039, 43.870323], [26.9572315, 43.8615225], [26.95181, 43.8579500000001], [26.9536235, 43.8573835010001], [26.955141, 43.8363155000001], [26.9693755000001, 43.834974], [26.976685, 43.827236999], [26.9621555000001, 43.8248559990001], [26.9593955, 43.8254629990001], [26.9601035000001, 43.8279845000001], [26.9561340000001, 43.8330925000001], [26.9459765, 43.827348], [26.940387, 43.8209170000001], [26.9298190000001, 43.813996], [26.9236500000001, 43.8090985000001], [26.9177045000001, 43.8075995], [26.90923, 43.8077640000001], [26.8987295000001, 43.797697999], [26.9028265000001, 43.7950230000001], [26.905558, 43.7828295], [26.9136405, 43.7742375], [26.9163560000001, 43.7671985000001], [26.9164535, 43.7670409990001], [26.916214, 43.7611430000001], [26.938975, 43.7634035] ], [ [27.1933540000001, 43.7279615000001], [27.194822, 43.7360175000001], [27.1920865000001, 43.7373410010001], [27.1870865000001, 43.7362285], [27.185027, 43.7344400010001], [27.1848620000001, 43.727444], [27.1892070000001, 43.7268250000001], [27.1933540000001, 43.7279615000001] ] ] },
+    "properties": {
+      "ISO": "BG-SLS10",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "66425",
+      "NAME_1": "SLS",
+      "TYPE_1": "Област",
+      "ID_2": "24030",
+      "NAME_2": "Дулово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.9451935000001, 43.9106275], [26.9438315, 43.91851], [26.9554975, 43.9267080000001], [26.952567, 43.929021], [26.9525255, 43.929439501], [26.9567455000001, 43.9389355000001], [26.9504085, 43.940707], [26.9515955000001, 43.950886], [26.947644, 43.9558900000001], [26.9444765000001, 43.9548619990001], [26.9313935000001, 43.9598745000001], [26.9318940000001, 43.977499499], [26.9310815000001, 43.9814020000001], [26.906733, 43.9813035000001], [26.9208545000001, 43.994855], [26.908236, 44.009283], [26.919411, 44.0142165], [26.914749, 44.0188049990001], [26.9165560000001, 44.0303664990001], [26.920422, 44.0336465010001], [26.9296515, 44.0346205000001], [26.9246905000001, 44.042743], [26.8959165000001, 44.0520750000001], [26.8917485000001, 44.0538540000001], [26.864543, 44.0867910000001], [26.870548, 44.0903990000001], [26.8713175, 44.110194], [26.8760155000001, 44.1182795], [26.8749925000001, 44.1209865000001], [26.8528015000001, 44.1156905], [26.8029175, 44.0935380000001], [26.783485, 44.0852245], [26.7726730000001, 44.080809], [26.775067, 44.0754630000001], [26.778807, 44.0690015000001], [26.7766065000001, 44.0578195000001], [26.7699455000001, 44.0522735000001], [26.7765065, 44.0385115], [26.7799405000001, 44.0304195000001], [26.7741925, 44.0227055], [26.7737550000001, 44.0209130000001], [26.7682465, 44.023711001], [26.765458, 44.0238180010001], [26.7653735000001, 44.0155120000001], [26.7536015000001, 44.0177605010001], [26.7519235, 44.0092310000001], [26.7469760000001, 44.0004235000001], [26.7468625000001, 43.9753845000001], [26.7544725000001, 43.9729745010001], [26.7544280000001, 43.9650290000001], [26.7486020000001, 43.9574035000001], [26.7400200000001, 43.9468820000001], [26.7371335, 43.946668], [26.728577, 43.950029], [26.720921, 43.9516849990001], [26.7074685000001, 43.954321], [26.7050750000001, 43.9478824990001], [26.7210390000001, 43.9441], [26.718443, 43.9382595000001], [26.71504, 43.930323], [26.7183105, 43.9258790000001], [26.713584, 43.9203885000001], [26.7009325000001, 43.9167095000001], [26.6948245, 43.9048490000001], [26.6949985000001, 43.8979350000001], [26.7038525, 43.8961845000001], [26.7026935000001, 43.8913555], [26.7032965000001, 43.888296], [26.6514005, 43.8794740000001], [26.6469000000001, 43.8690025000001], [26.6512605, 43.870101], [26.665438, 43.8635705], [26.6635460000001, 43.8615750000001], [26.6770290000001, 43.8551855000001], [26.6796385000001, 43.8505200000001], [26.6990260000001, 43.8455349990001], [26.7017710000001, 43.848505], [26.7063775, 43.8478860000001], [26.7212015000001, 43.8412965000001], [26.723824, 43.8395199990001], [26.7237265000001, 43.8584725000001], [26.7314460000001, 43.8590135000001], [26.7354565000001, 43.8576180000001], [26.7288585000001, 43.8547800000001], [26.728084, 43.848957], [26.7456980000001, 43.8478185000001], [26.7522835, 43.8419984990001], [26.752573, 43.8298935], [26.7525400000001, 43.821763], [26.776443, 43.8188455000001], [26.771531, 43.8140960000001], [26.779926, 43.8121130000001], [26.784528, 43.815569999], [26.7754355000001, 43.8142695000001], [26.7775445, 43.8213910000001], [26.7923895000001, 43.8182855000001], [26.7900095000001, 43.8252325010001], [26.796213, 43.8312625], [26.807988, 43.8219595], [26.8151800000001, 43.8242450000001], [26.823363, 43.8369210000001], [26.8342815, 43.848426499], [26.8411400000001, 43.8443805000001], [26.8404140000001, 43.8435870000001], [26.8374645000001, 43.8399000000001], [26.841525, 43.830524], [26.8520515000001, 43.8230380000001], [26.8573835, 43.8226575], [26.8582545, 43.8072125], [26.859748, 43.804671001], [26.876583, 43.8021830000001], [26.8987295000001, 43.797697999], [26.90923, 43.8077640000001], [26.9177045000001, 43.8075995], [26.9236500000001, 43.8090985000001], [26.9298190000001, 43.813996], [26.940387, 43.8209170000001], [26.9459765, 43.827348], [26.9561340000001, 43.8330925000001], [26.9601035000001, 43.8279845000001], [26.9593955, 43.8254629990001], [26.9621555000001, 43.8248559990001], [26.976685, 43.827236999], [26.9693755000001, 43.834974], [26.955141, 43.8363155000001], [26.9536235, 43.8573835010001], [26.95181, 43.8579500000001], [26.9572315, 43.8615225], [26.956039, 43.870323], [26.926922, 43.871604501], [26.9265935, 43.8683810000001], [26.9154585000001, 43.868540501], [26.9084845, 43.8834894990001], [26.9386655000001, 43.8850405000001], [26.9432455, 43.8968735], [26.9431770000001, 43.9042295], [26.951284, 43.910509], [26.9451935000001, 43.9106275] ] ] },
+    "properties": {
+      "ISO": "BG-SLS07",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "66425",
+      "NAME_1": "SLS",
+      "TYPE_1": "Област",
+      "ID_2": "15031",
+      "NAME_2": "Главиница",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.765458, 44.0238180010001], [26.7682465, 44.023711001], [26.7737550000001, 44.0209130000001], [26.7741925, 44.0227055], [26.7799405000001, 44.0304195000001], [26.7765065, 44.0385115], [26.7699455000001, 44.0522735000001], [26.7766065000001, 44.0578195000001], [26.778807, 44.0690015000001], [26.775067, 44.0754630000001], [26.7726730000001, 44.080809], [26.723713, 44.0726685000001], [26.6999300000001, 44.0759835000001], [26.6779280000001, 44.0709209990001], [26.6627795000001, 44.064853], [26.663778, 44.062845], [26.6149615, 44.0561885000001], [26.592794, 44.0500365], [26.548981, 44.0543165], [26.5282550000001, 44.0536495000001], [26.4835670000001, 44.043623], [26.4451715000001, 44.0337415000001], [26.4226665, 44.0359770000001], [26.3892875, 44.0415070000001], [26.3799680000001, 44.0429510000001], [26.3583600000001, 44.038415501], [26.3570535000001, 44.030803], [26.3650375, 44.0299160000001], [26.3724045000001, 44.0274580010001], [26.3727675000001, 44.0210585], [26.3773430000001, 44.0153800000001], [26.3974860000001, 44.0146865], [26.4092160000001, 44.0094720000001], [26.40948, 44.0025855000001], [26.4062945000001, 43.9940020000001], [26.4006645000001, 43.989669], [26.3953450000001, 43.987845], [26.3823200000001, 43.9866950000001], [26.379696, 43.9759305000001], [26.3836635000001, 43.9705815], [26.38694, 43.9701215000001], [26.386937, 43.9558150010001], [26.3892225000001, 43.9481520000001], [26.4068875, 43.9465070000001], [26.416638, 43.9465530000001], [26.4309935000001, 43.9516760010001], [26.435642, 43.9488180000001], [26.4538975, 43.951044999], [26.460562, 43.9432845000001], [26.47308, 43.950748], [26.4742475, 43.9513479990001], [26.4772980000001, 43.940319], [26.4949505000001, 43.923251001], [26.5086880000001, 43.9250890000001], [26.5099300000001, 43.916523], [26.5205330000001, 43.9169820000001], [26.5442645000001, 43.9286979990001], [26.5463945000001, 43.9358510000001], [26.5493575, 43.935867499], [26.5491015000001, 43.933409001], [26.5742030000001, 43.932798001], [26.573539, 43.928816], [26.580651, 43.921099], [26.5989660000001, 43.913255001], [26.5976975, 43.9110850000001], [26.59623, 43.9045075000001], [26.5975935000001, 43.8905970000001], [26.5861420000001, 43.889439501], [26.5840610000001, 43.8890630010001], [26.584173338, 43.888797976], [26.5865495, 43.8831925010001], [26.6201495, 43.8771280010001], [26.6209490000001, 43.8739435000001], [26.63985, 43.8701555000001], [26.640838, 43.8602545], [26.6480735000001, 43.8610650000001], [26.6469000000001, 43.8690025000001], [26.6514005, 43.8794740000001], [26.7032965000001, 43.888296], [26.7026935000001, 43.8913555], [26.7038525, 43.8961845000001], [26.6949985000001, 43.8979350000001], [26.6948245, 43.9048490000001], [26.7009325000001, 43.9167095000001], [26.713584, 43.9203885000001], [26.7183105, 43.9258790000001], [26.71504, 43.930323], [26.718443, 43.9382595000001], [26.7210390000001, 43.9441], [26.7050750000001, 43.9478824990001], [26.7074685000001, 43.954321], [26.720921, 43.9516849990001], [26.728577, 43.950029], [26.7371335, 43.946668], [26.7400200000001, 43.9468820000001], [26.7486020000001, 43.9574035000001], [26.7544280000001, 43.9650290000001], [26.7544725000001, 43.9729745010001], [26.7468625000001, 43.9753845000001], [26.7469760000001, 44.0004235000001], [26.7519235, 44.0092310000001], [26.7536015000001, 44.0177605010001], [26.7653735000001, 44.0155120000001], [26.765458, 44.0238180010001] ] ] },
+    "properties": {
+      "ISO": "BG-SLS34",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "66425",
+      "NAME_1": "SLS",
+      "TYPE_1": "Област",
+      "ID_2": "73496",
+      "NAME_2": "Тутракан",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.3993975000001, 44.01237], [27.3707620000001, 44.0389205000001], [27.3696345000001, 44.040547501], [27.3561365, 44.0587095010001], [27.33336, 44.064241], [27.2911550000001, 44.0751744990001], [27.27684, 44.099251], [27.2762665000001, 44.1054215], [27.284114, 44.1098630000001], [27.2779205000001, 44.122506], [27.2713450000001, 44.126336499], [27.2697625000001, 44.126418001], [27.2418430000001, 44.1179555], [27.2286565000001, 44.1162325000001], [27.200883, 44.1191005000001], [27.1851625, 44.1204965000001], [27.1649135000001, 44.1317425], [27.1351125, 44.1404605000001], [27.133859, 44.1405845000001], [27.1087075, 44.137862], [27.0803445, 44.132982], [27.0567770000001, 44.1369750000001], [27.0473815, 44.1415570010001], [27.0480495, 44.1440025000001], [27.0186355000001, 44.1410770000001], [27.0059675000001, 44.1367005000001], [27.0069655, 44.1333550000001], [27.0106710000001, 44.1259180010001], [27.0068215000001, 44.103527001], [27.0028835000001, 44.0973015000001], [27.0041450000001, 44.0838325010001], [27.0050305, 44.0825090000001], [27.0073675, 44.0570875000001], [27.0086405000001, 44.0536080000001], [27.016336, 44.0563755000001], [27.0561200000001, 44.055237499], [27.0722010000001, 44.0406925], [27.0511965000001, 44.0157505000001], [27.0619070000001, 44.0132425000001], [27.0585155000001, 44.0050600000001], [27.0715520000001, 44.0075600000001], [27.0732800000001, 44.0041915], [27.0754620000001, 43.9969785000001], [27.0691165000001, 43.99411], [27.0666225, 43.9835955], [27.0766445, 43.981235], [27.0866015, 43.9729445], [27.0882395, 43.9682975000001], [27.0783815, 43.955812], [27.093506, 43.9456040000001], [27.0879210000001, 43.9404495000001], [27.0801520000001, 43.9322305010001], [27.0902085000001, 43.921045001], [27.1031775000001, 43.9239690000001], [27.1157815, 43.9106905000001], [27.1128915, 43.9124805000001], [27.1103695, 43.909943501], [27.1103210000001, 43.9058515], [27.1165585000001, 43.894105], [27.1262915, 43.9000235], [27.127957, 43.8978019990001], [27.143313, 43.8992335], [27.1426625, 43.9027635], [27.1475080000001, 43.9034015], [27.172736, 43.9035950000001], [27.1909325, 43.8975835000001], [27.1954865000001, 43.9184015000001], [27.2024165, 43.9246515], [27.2049700000001, 43.938359], [27.2125675, 43.9580770000001], [27.2886175, 43.987437], [27.2858585000001, 43.9912165000001], [27.2803795, 43.9905460000001], [27.2794615, 43.9962880000001], [27.2947810000001, 44.0003820000001], [27.3059285000001, 43.9966655000001], [27.3071870000001, 43.9898735], [27.31874, 43.980856499], [27.3199210000001, 43.983775], [27.3292435000001, 43.986485499], [27.3339845, 43.9799310000001], [27.3426615000001, 43.9762135], [27.3274510000001, 43.974007], [27.326328, 43.969413999], [27.3320130000001, 43.9659989990001], [27.3335305, 43.9617899990001], [27.337346, 43.9512315000001], [27.3590305000001, 43.949873], [27.3741885000001, 43.9525435], [27.3974620000001, 43.963309], [27.4049525, 43.9560445010001], [27.408144, 43.9641135000001], [27.4135840000001, 43.973242], [27.4322585, 43.9823115], [27.4318455000001, 44.0157425], [27.4340795000001, 44.0174565], [27.4127015, 44.014279], [27.3993975000001, 44.01237] ] ] },
+    "properties": {
+      "ISO": "BG-SLS31",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "66425",
+      "NAME_1": "SLS",
+      "TYPE_1": "Област",
+      "ID_2": "66425",
+      "NAME_2": "Силистра",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.2760695000001, 43.8352300000001], [27.2781420000001, 43.8345360000001], [27.2755075000001, 43.8258720000001], [27.2851255, 43.8005924990001], [27.292901, 43.8006179990001], [27.2974655, 43.8046670000001], [27.3175180000001, 43.803541501], [27.3170375, 43.8078875], [27.3247470000001, 43.8128265010001], [27.3445295000001, 43.817283999], [27.3517535, 43.815547], [27.3513595000001, 43.8120995000001], [27.3343315000001, 43.8096115000001], [27.3255365000001, 43.8116765], [27.3190980000001, 43.807625499], [27.351077, 43.8074320000001], [27.3528665000001, 43.8145395000001], [27.3734355, 43.8188365], [27.3730335000001, 43.8154480000001], [27.3783980000001, 43.8246635], [27.3835385, 43.829954501], [27.3953010000001, 43.8435680000001], [27.3951925000001, 43.853054], [27.3878530000001, 43.8690069990001], [27.3862770000001, 43.8723390000001], [27.386533, 43.873297], [27.3895625000001, 43.8782840000001], [27.3934415000001, 43.886918499], [27.391805, 43.9052605000001], [27.4101385000001, 43.9155185000001], [27.4057780000001, 43.9295755000001], [27.3992505000001, 43.9342485000001], [27.4037125, 43.9393650000001], [27.403351, 43.945430501], [27.4006315, 43.9474700000001], [27.4106380000001, 43.953404], [27.4049525, 43.9560445010001], [27.3974620000001, 43.963309], [27.3741885000001, 43.9525435], [27.3590305000001, 43.949873], [27.337346, 43.9512315000001], [27.3335305, 43.9617899990001], [27.3320130000001, 43.9659989990001], [27.326328, 43.969413999], [27.3274510000001, 43.974007], [27.3426615000001, 43.9762135], [27.3339845, 43.9799310000001], [27.3292435000001, 43.986485499], [27.3199210000001, 43.983775], [27.31874, 43.980856499], [27.3071870000001, 43.9898735], [27.3059285000001, 43.9966655000001], [27.2947810000001, 44.0003820000001], [27.2794615, 43.9962880000001], [27.2803795, 43.9905460000001], [27.2858585000001, 43.9912165000001], [27.2886175, 43.987437], [27.2125675, 43.9580770000001], [27.2049700000001, 43.938359], [27.2024165, 43.9246515], [27.1954865000001, 43.9184015000001], [27.1909325, 43.8975835000001], [27.1910015, 43.8969270000001], [27.2056925000001, 43.8898510000001], [27.2220540000001, 43.8830225], [27.2239335, 43.8773825000001], [27.231884, 43.8726530010001], [27.229138, 43.8638619990001], [27.2257115, 43.8626265010001], [27.2090000000001, 43.8427780000001], [27.2376915, 43.8472955], [27.2421355000001, 43.839619999], [27.2457420000001, 43.8280510000001], [27.2582605000001, 43.829130999], [27.2661715, 43.8281180000001], [27.2760695000001, 43.8352300000001] ] ] },
+    "properties": {
+      "ISO": "BG-SLS01",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "66425",
+      "NAME_1": "SLS",
+      "TYPE_1": "Област",
+      "ID_2": "415",
+      "NAME_2": "Алфатар",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.6736545000001, 44.0297815000001], [27.645544, 44.0467605000001], [27.6435375, 44.0479730000001], [27.6120415, 44.012211], [27.5935995, 44.0135460000001], [27.5858805, 44.014324], [27.4920735000001, 44.0209360000001], [27.468734, 44.022502], [27.4496005, 44.0197150000001], [27.4340795000001, 44.0174565], [27.4318455000001, 44.0157425], [27.4322585, 43.9823115], [27.4135840000001, 43.973242], [27.408144, 43.9641135000001], [27.4049525, 43.9560445010001], [27.4106380000001, 43.953404], [27.4006315, 43.9474700000001], [27.403351, 43.945430501], [27.4037125, 43.9393650000001], [27.3992505000001, 43.9342485000001], [27.4057780000001, 43.9295755000001], [27.4101385000001, 43.9155185000001], [27.391805, 43.9052605000001], [27.3934415000001, 43.886918499], [27.3895625000001, 43.8782840000001], [27.386533, 43.873297], [27.3862770000001, 43.8723390000001], [27.3878530000001, 43.8690069990001], [27.3951925000001, 43.853054], [27.4090620000001, 43.853194499], [27.4188835, 43.847851], [27.4444720000001, 43.8596665000001], [27.4460730000001, 43.8616005000001], [27.445072, 43.865853499], [27.450388, 43.8705560000001], [27.453068, 43.871247499], [27.4636175000001, 43.8586675000001], [27.468921, 43.8580515], [27.472695, 43.8468535000001], [27.4812965, 43.8478260000001], [27.485304, 43.8396155], [27.5038720000001, 43.8410525], [27.5132990000001, 43.8498700000001], [27.52439, 43.8494505], [27.524458, 43.8561715000001], [27.5207285000001, 43.8570710000001], [27.5218455, 43.8645975000001], [27.533323, 43.864513001], [27.5227155000001, 43.8729895000001], [27.5292875000001, 43.8750615000001], [27.5381695, 43.8835915000001], [27.531299, 43.888963], [27.5299035, 43.8990175000001], [27.5377135000001, 43.8996835], [27.5414895000001, 43.9050540000001], [27.543196, 43.9179665], [27.5462030000001, 43.9182040000001], [27.5667245000001, 43.9160380000001], [27.5760795000001, 43.9103375], [27.5872010000001, 43.8975354990001], [27.595758, 43.8925750000001], [27.5929285, 43.8888085], [27.6012280000001, 43.8970755], [27.6200305, 43.8969075000001], [27.615916, 43.9019625], [27.6286225000001, 43.9060440000001], [27.631222, 43.9100770000001], [27.6312590000001, 43.9185220000001], [27.6210780000001, 43.918443], [27.6157595, 43.9250445000001], [27.6230430000001, 43.932491], [27.6281760000001, 43.932918], [27.6355330000001, 43.9318965000001], [27.6370620000001, 43.9435740000001], [27.6539315000001, 43.9497630000001], [27.6450855000001, 43.959929], [27.641622, 43.9688080000001], [27.6585635000001, 43.979408], [27.69541, 43.9873430000001], [27.6736545000001, 44.0297815000001] ] ] },
+    "properties": {
+      "ISO": "BG-SLS15",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "66425",
+      "NAME_1": "SLS",
+      "TYPE_1": "Област",
+      "ID_2": "35242",
+      "NAME_2": "Кайнарджа",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.0041450000001, 44.0838325010001], [27.0028835000001, 44.0973015000001], [27.0068215000001, 44.103527001], [27.0106710000001, 44.1259180010001], [27.0069655, 44.1333550000001], [27.0059675000001, 44.1367005000001], [26.9867760000001, 44.1336395000001], [26.9689685000001, 44.1357634990001], [26.9284825, 44.132445499], [26.9066785000001, 44.1333320000001], [26.8847235000001, 44.125541], [26.8749925000001, 44.1209865000001], [26.8760155000001, 44.1182795], [26.8713175, 44.110194], [26.870548, 44.0903990000001], [26.864543, 44.0867910000001], [26.8917485000001, 44.0538540000001], [26.8959165000001, 44.0520750000001], [26.9246905000001, 44.042743], [26.9296515, 44.0346205000001], [26.920422, 44.0336465010001], [26.9165560000001, 44.0303664990001], [26.914749, 44.0188049990001], [26.919411, 44.0142165], [26.908236, 44.009283], [26.9208545000001, 43.994855], [26.906733, 43.9813035000001], [26.9310815000001, 43.9814020000001], [26.9318940000001, 43.977499499], [26.9313935000001, 43.9598745000001], [26.9444765000001, 43.9548619990001], [26.947644, 43.9558900000001], [26.9515955000001, 43.950886], [26.9504085, 43.940707], [26.9567455000001, 43.9389355000001], [26.9525255, 43.929439501], [26.952567, 43.929021], [26.9554975, 43.9267080000001], [26.9438315, 43.91851], [26.9451935000001, 43.9106275], [26.951284, 43.910509], [26.957228, 43.910309], [26.9610585, 43.9060065], [26.964553, 43.903104], [26.9785685000001, 43.911598], [26.9884125, 43.9026945000001], [27.0154410000001, 43.9090820000001], [27.017953, 43.9033240000001], [27.031755, 43.9132970000001], [27.0345840000001, 43.9206115000001], [27.038985, 43.92915], [27.04047, 43.9301129990001], [27.066021, 43.9375064990001], [27.076785, 43.9302559990001], [27.0801520000001, 43.9322305010001], [27.0879210000001, 43.9404495000001], [27.093506, 43.9456040000001], [27.0783815, 43.955812], [27.0882395, 43.9682975000001], [27.0866015, 43.9729445], [27.0766445, 43.981235], [27.0666225, 43.9835955], [27.0691165000001, 43.99411], [27.0754620000001, 43.9969785000001], [27.0732800000001, 44.0041915], [27.0715520000001, 44.0075600000001], [27.0585155000001, 44.0050600000001], [27.0619070000001, 44.0132425000001], [27.0511965000001, 44.0157505000001], [27.0722010000001, 44.0406925], [27.0561200000001, 44.055237499], [27.016336, 44.0563755000001], [27.0086405000001, 44.0536080000001], [27.0073675, 44.0570875000001], [27.0050305, 44.0825090000001], [27.0041450000001, 44.0838325010001] ] ] },
+    "properties": {
+      "ISO": "BG-SLS32",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "66425",
+      "NAME_1": "SLS",
+      "TYPE_1": "Област",
+      "ID_2": "66665",
+      "NAME_2": "Ситово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.4168985000001, 42.9303760000001], [25.423724, 42.933408], [25.4235860000001, 42.9436725], [25.430145, 42.947436], [25.4245515000001, 42.9577624990001], [25.4169615000001, 42.9649885000001], [25.4187890000001, 42.9676180000001], [25.413085, 42.9709940000001], [25.404461, 42.9683404990001], [25.3837875, 42.9630445000001], [25.3699445, 42.9606850000001], [25.3582910000001, 42.9669115], [25.3355760000001, 42.9675225], [25.3289805000001, 42.970357], [25.316739, 42.9691730000001], [25.3192525000001, 42.9666995000001], [25.315433, 42.9601345], [25.3119445, 42.960292999], [25.3040785000001, 42.9630125], [25.3035420000001, 42.96459], [25.3009420000001, 42.969832], [25.2925760000001, 42.9725940000001], [25.2902535000001, 42.9832985], [25.2744735000001, 42.9851760010001], [25.2612735000001, 42.9772869990001], [25.251698, 42.971889], [25.217228, 42.9733555], [25.207274, 42.9775205], [25.204263, 42.982419], [25.1846305, 42.9858535000001], [25.170527, 42.9979585], [25.1662440000001, 42.994788], [25.1604755000001, 42.9965685000001], [25.1527610000001, 42.996696499], [25.1514795000001, 42.9928875000001], [25.1292555000001, 42.9945165], [25.1266085, 42.990255501], [25.1283155, 42.987647], [25.1430035000001, 42.9863005], [25.1466005, 42.983641], [25.1418275, 42.9786800000001], [25.132755, 42.9803795], [25.1333750000001, 42.9774675], [25.142369, 42.95675], [25.1475025, 42.9472505000001], [25.1509535000001, 42.947567001], [25.1488925, 42.9400935], [25.1444415, 42.9346330000001], [25.1361695000001, 42.9307440000001], [25.128299, 42.9354735000001], [25.122505, 42.9335525000001], [25.1240785000001, 42.9295215000001], [25.120641, 42.9229144990001], [25.1083155000001, 42.9218895010001], [25.1100595, 42.9126775], [25.1177805, 42.9057520000001], [25.117488, 42.8901695000001], [25.110795, 42.8763065000001], [25.132505, 42.8682555], [25.1405735000001, 42.868972], [25.1483225000001, 42.8658195], [25.163058, 42.861604501], [25.1653475000001, 42.860062], [25.164886, 42.8575700010001], [25.1608120000001, 42.8490310010001], [25.1698400000001, 42.8414405], [25.1738525000001, 42.8276805], [25.1676905, 42.8101915], [25.1781175, 42.7966135], [25.1789645000001, 42.7890980000001], [25.1818680000001, 42.7875545000001], [25.2111435, 42.780987501], [25.2213925, 42.7683665000001], [25.224271, 42.7629249990001], [25.2273050000001, 42.7527415000001], [25.2425095, 42.7454430010001], [25.2497095000001, 42.7426515000001], [25.2522635, 42.7480735], [25.2589795000001, 42.7514985], [25.2651595, 42.7631880000001], [25.2703545, 42.7640450000001], [25.2751455000001, 42.76394], [25.2808665000001, 42.7580585000001], [25.2912035000001, 42.7545105], [25.31751, 42.7571695], [25.3176875, 42.7570465000001], [25.3199125, 42.752760499], [25.3245875000001, 42.7506500000001], [25.3414585, 42.749330501], [25.3435405000001, 42.7431765000001], [25.361136, 42.737651], [25.3721170000001, 42.739561], [25.3719225, 42.7414900000001], [25.390095, 42.7387810000001], [25.4033690000001, 42.7434415000001], [25.4109350000001, 42.7388570000001], [25.4177425, 42.7336720000001], [25.4232145, 42.7344420000001], [25.4347205, 42.749372001], [25.4346100000001, 42.7611890000001], [25.4324245, 42.7760605], [25.432671, 42.783364001], [25.4330230000001, 42.7895475], [25.4246465000001, 42.7932210000001], [25.4080710000001, 42.7977285000001], [25.4048505000001, 42.8016610000001], [25.4047610000001, 42.8115435], [25.40383, 42.8175685], [25.4094625000001, 42.8272739990001], [25.4009945, 42.8334505], [25.4051805, 42.8394084990001], [25.4210235000001, 42.8375750000001], [25.425124, 42.8468079990001], [25.4228650000001, 42.8579750000001], [25.4243175, 42.8620615], [25.428498, 42.8626550000001], [25.435619, 42.8658715], [25.4388295000001, 42.8741245000001], [25.4446330000001, 42.8772510000001], [25.4436815, 42.8806635], [25.4531595, 42.8834345000001], [25.434159, 42.8932005010001], [25.4324055000001, 42.894098], [25.4394895, 42.904021001], [25.4394085000001, 42.9076465000001], [25.4263120000001, 42.9086555000001], [25.4209625, 42.9185875000001], [25.4256290000001, 42.9216115], [25.4168985000001, 42.9303760000001] ] ] },
+    "properties": {
+      "ISO": "BG-GAB05",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "14218",
+      "NAME_1": "GAB",
+      "TYPE_1": "Област",
+      "ID_2": "14218",
+      "NAME_2": "Габрово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.326553, 43.056883], [25.3045565000001, 43.0568645000001], [25.3034910000001, 43.0600105], [25.3035605000001, 43.0705115000001], [25.3080545, 43.0719855], [25.3103855000001, 43.0837450000001], [25.3121065, 43.0968765000001], [25.3110990000001, 43.1002725000001], [25.3017170000001, 43.1023550000001], [25.299469, 43.1067845000001], [25.3012705, 43.1102010000001], [25.2984220000001, 43.1115], [25.2801855000001, 43.1100735000001], [25.2755530000001, 43.104788], [25.2646145, 43.1015985000001], [25.2429085000001, 43.0985190000001], [25.2230430000001, 43.0963205], [25.2257205, 43.0994455000001], [25.2199085, 43.0987585], [25.1980360000001, 43.1054335000001], [25.1960065000001, 43.1054995010001], [25.1771210000001, 43.100309499], [25.1661735000001, 43.1042870000001], [25.1514025000001, 43.1048835], [25.1525510000001, 43.1025675000001], [25.1508025000001, 43.099676501], [25.1315195, 43.0957125], [25.1311915000001, 43.0926600000001], [25.124037, 43.0887685000001], [25.1149050000001, 43.094541], [25.1146645000001, 43.1053540010001], [25.1068560000001, 43.1136675000001], [25.102025, 43.1146175010001], [25.093235, 43.1155605000001], [25.0982460000001, 43.118612999], [25.1089705000001, 43.117829], [25.1186060000001, 43.1201375], [25.1251385000001, 43.1252425000001], [25.1272520000001, 43.1312390000001], [25.1344250000001, 43.1332110000001], [25.1300845000001, 43.141831], [25.0946225000001, 43.1459195], [25.078764, 43.1601085], [25.0740750000001, 43.1739909990001], [25.076597, 43.1777805], [25.024754, 43.1785370000001], [25.0134025, 43.181136], [25.0123760000001, 43.1862975000001], [25.0047765000001, 43.1905320000001], [24.9954930000001, 43.1901810000001], [24.9949570000001, 43.193658499], [24.986765, 43.1938870000001], [24.973062, 43.1913835], [24.9601155, 43.1937629990001], [24.956582, 43.1874690000001], [24.958287, 43.185947501], [24.9559565000001, 43.184472999], [24.9634465, 43.1635160000001], [24.972904, 43.154661499], [24.9702990000001, 43.1352065], [24.963779, 43.1280005], [24.9665825000001, 43.1233205], [24.961033, 43.1191475000001], [24.9278620000001, 43.114082501], [24.9182230000001, 43.1046620000001], [24.9220750000001, 43.081244], [24.9256695, 43.076492], [24.9224780000001, 43.0716140010001], [24.918211, 43.0671630000001], [24.9266245000001, 43.058187], [24.9332140000001, 43.0575160000001], [24.941964, 43.0516515], [24.935957, 43.0436779990001], [24.930145, 43.041144], [24.9326990000001, 43.038377], [24.9516760000001, 43.0344950000001], [24.9515460000001, 43.0311965000001], [24.944822, 43.0300485000001], [24.9457580000001, 43.0280595], [24.9428675, 43.0289885], [24.9376415, 43.028921499], [24.8998165, 43.021709], [24.8892695000001, 43.01394], [24.8778310000001, 43.015251], [24.877665, 43.0120220000001], [24.8750145000001, 42.999716], [24.8721330000001, 42.9847560000001], [24.8702645000001, 42.9722080000001], [24.8717655, 42.9605304990001], [24.873542, 42.9492470000001], [24.8711200000001, 42.9458635], [24.883968, 42.937741499], [24.8876435, 42.932266], [24.8855955000001, 42.9215380000001], [24.8795365, 42.91371], [24.8805545000001, 42.9123700000001], [24.8795375, 42.9070985000001], [24.8848985000001, 42.9043580000001], [24.883585, 42.8965365], [24.8855300000001, 42.8965285000001], [24.9020835000001, 42.8859459990001], [24.9063550000001, 42.8795455000001], [24.9092375000001, 42.8741225000001], [24.932283, 42.8784445000001], [24.937574, 42.8820915000001], [24.9434015, 42.882271001], [24.9656590000001, 42.8781825], [24.9676675000001, 42.877255], [24.9656355000001, 42.870476001], [24.962588, 42.8625515000001], [24.9634995000001, 42.8565980000001], [24.9811865, 42.8523970000001], [24.9821915000001, 42.8491500000001], [24.9790875000001, 42.844698001], [24.981319, 42.8340450000001], [24.9947910000001, 42.8168460000001], [25.0026225, 42.815115], [25.0076760000001, 42.8089140000001], [25.0102295, 42.7910570000001], [25.0160645, 42.7827374990001], [25.0205575, 42.7771205000001], [25.018787, 42.7705970000001], [25.013881, 42.765229], [25.0159615000001, 42.7667895000001], [25.015474, 42.7562270000001], [25.014595683, 42.748554084], [25.025177, 42.7514455], [25.0310690000001, 42.7617040010001], [25.036892, 42.761058], [25.0425075000001, 42.7520685000001], [25.0496250000001, 42.7485115010001], [25.0689130000001, 42.7463960000001], [25.0695040000001, 42.7464390000001], [25.078065, 42.7427020000001], [25.091051, 42.7505570000001], [25.10193, 42.7586835000001], [25.110713, 42.759554], [25.1159215000001, 42.7580645000001], [25.134821, 42.7599440000001], [25.1720975000001, 42.781573001], [25.1789645000001, 42.7890980000001], [25.1781175, 42.7966135], [25.1676905, 42.8101915], [25.1738525000001, 42.8276805], [25.1698400000001, 42.8414405], [25.1608120000001, 42.8490310010001], [25.164886, 42.8575700010001], [25.1653475000001, 42.860062], [25.163058, 42.861604501], [25.1483225000001, 42.8658195], [25.1405735000001, 42.868972], [25.132505, 42.8682555], [25.110795, 42.8763065000001], [25.117488, 42.8901695000001], [25.1177805, 42.9057520000001], [25.1100595, 42.9126775], [25.1083155000001, 42.9218895010001], [25.120641, 42.9229144990001], [25.1240785000001, 42.9295215000001], [25.122505, 42.9335525000001], [25.128299, 42.9354735000001], [25.1361695000001, 42.9307440000001], [25.1444415, 42.9346330000001], [25.1488925, 42.9400935], [25.1509535000001, 42.947567001], [25.1475025, 42.9472505000001], [25.142369, 42.95675], [25.1333750000001, 42.9774675], [25.132755, 42.9803795], [25.1418275, 42.9786800000001], [25.1466005, 42.983641], [25.1430035000001, 42.9863005], [25.1283155, 42.987647], [25.1266085, 42.990255501], [25.1292555000001, 42.9945165], [25.1514795000001, 42.9928875000001], [25.1527610000001, 42.996696499], [25.1604755000001, 42.9965685000001], [25.1662440000001, 42.994788], [25.170527, 42.9979585], [25.1846305, 42.9858535000001], [25.204263, 42.982419], [25.207274, 42.9775205], [25.217228, 42.9733555], [25.251698, 42.971889], [25.2612735000001, 42.9772869990001], [25.2744735000001, 42.9851760010001], [25.2902535000001, 42.9832985], [25.294636, 42.9931415], [25.293352, 42.9949930000001], [25.295235, 43.0020145], [25.3081695000001, 43.0004059990001], [25.3174110000001, 43.0037360000001], [25.3190700000001, 43.0077655010001], [25.3219875, 43.0179250000001], [25.3346725000001, 43.0209], [25.3489070000001, 43.0462555], [25.3477025, 43.052694], [25.326553, 43.056883] ] ] },
+    "properties": {
+      "ISO": "BG-GAB29",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "14218",
+      "NAME_1": "GAB",
+      "TYPE_1": "Област",
+      "ID_2": "65927",
+      "NAME_2": "Севлиево",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.564514, 42.9267275010001], [25.558708, 42.9272030000001], [25.5497185, 42.919243001], [25.5315215, 42.9190100000001], [25.5308045, 42.9149835000001], [25.5212270000001, 42.9070415], [25.516492, 42.9073035000001], [25.5040040000001, 42.9095535000001], [25.4897875, 42.9121995], [25.491386, 42.9138580000001], [25.4887440000001, 42.919893501], [25.4812805, 42.9182440000001], [25.480043, 42.9146730000001], [25.472991, 42.9204725000001], [25.4746735000001, 42.921998], [25.4692485000001, 42.92274], [25.4654005, 42.9217640000001], [25.4637855, 42.9172990000001], [25.4635745, 42.9105645000001], [25.4667250000001, 42.9039615], [25.4656690000001, 42.9010215000001], [25.4576720000001, 42.8989980000001], [25.4394895, 42.904021001], [25.4324055000001, 42.894098], [25.434159, 42.8932005010001], [25.4531595, 42.8834345000001], [25.4436815, 42.8806635], [25.4446330000001, 42.8772510000001], [25.4388295000001, 42.8741245000001], [25.435619, 42.8658715], [25.428498, 42.8626550000001], [25.4243175, 42.8620615], [25.4228650000001, 42.8579750000001], [25.425124, 42.8468079990001], [25.4210235000001, 42.8375750000001], [25.4051805, 42.8394084990001], [25.4009945, 42.8334505], [25.4094625000001, 42.8272739990001], [25.40383, 42.8175685], [25.4047610000001, 42.8115435], [25.4048505000001, 42.8016610000001], [25.4080710000001, 42.7977285000001], [25.4246465000001, 42.7932210000001], [25.4330230000001, 42.7895475], [25.432671, 42.783364001], [25.4324245, 42.7760605], [25.4346100000001, 42.7611890000001], [25.443, 42.7638210010001], [25.449153, 42.761532], [25.4690055, 42.7630325000001], [25.4751195000001, 42.7548705], [25.4863500000001, 42.7591214990001], [25.5036860000001, 42.7660260000001], [25.5150545000001, 42.7656020000001], [25.5279550000001, 42.7625345000001], [25.5374350000001, 42.756338], [25.5443945000001, 42.753142], [25.5535285, 42.7621500000001], [25.5630605000001, 42.7612349990001], [25.5664875000001, 42.7644435], [25.5667225, 42.7686390000001], [25.571489, 42.7697690000001], [25.5754755, 42.7627415000001], [25.593514, 42.7517114990001], [25.6052275000001, 42.7475145010001], [25.6192315000001, 42.748022], [25.609296, 42.7509440000001], [25.6253350000001, 42.7598535000001], [25.6338335, 42.7574920000001], [25.634132, 42.7602415000001], [25.6292175, 42.7665125], [25.6083600000001, 42.7692010000001], [25.603371, 42.7725625], [25.6063370000001, 42.7824275], [25.6149615000001, 42.7868085000001], [25.6096370000001, 42.792824001], [25.6095570000001, 42.8019730010001], [25.592207, 42.820832], [25.598554, 42.8291590000001], [25.60911, 42.8334865], [25.6134105, 42.8373275010001], [25.6124795000001, 42.8387255010001], [25.6104960000001, 42.844389], [25.6173345, 42.8528600000001], [25.607044, 42.8703670000001], [25.6055995, 42.8747490010001], [25.6076625000001, 42.8797645000001], [25.592722, 42.8837760000001], [25.6030315, 42.8917550000001], [25.60607, 42.8987710000001], [25.6204690000001, 42.901165], [25.6175755, 42.9022705], [25.6159730000001, 42.9099085], [25.609883, 42.9154230010001], [25.5998065000001, 42.9122784990001], [25.595427, 42.909252999], [25.5818385000001, 42.9130895000001], [25.5627245000001, 42.9110190010001], [25.564514, 42.9267275010001] ] ] },
+    "properties": {
+      "ISO": "BG-GAB35",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "14218",
+      "NAME_1": "GAB",
+      "TYPE_1": "Област",
+      "ID_2": "73403",
+      "NAME_2": "Трявна",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.4692485000001, 42.92274], [25.4746735000001, 42.921998], [25.472991, 42.9204725000001], [25.480043, 42.9146730000001], [25.4812805, 42.9182440000001], [25.4887440000001, 42.919893501], [25.491386, 42.9138580000001], [25.4897875, 42.9121995], [25.5040040000001, 42.9095535000001], [25.516492, 42.9073035000001], [25.5212270000001, 42.9070415], [25.5308045, 42.9149835000001], [25.5315215, 42.9190100000001], [25.5497185, 42.919243001], [25.558708, 42.9272030000001], [25.5535780000001, 42.9331625], [25.5593145, 42.9397005000001], [25.5544395000001, 42.9486005000001], [25.5562705, 42.9569475000001], [25.5560395000001, 42.9583635000001], [25.5527200000001, 42.9715420000001], [25.5644905, 42.9759700000001], [25.5682715, 42.9881360000001], [25.5781905000001, 42.9917605000001], [25.5822415000001, 43.0032105010001], [25.588731, 43.0092545000001], [25.595224, 43.0141385000001], [25.5948100000001, 43.0191465], [25.5541850000001, 43.0251870000001], [25.5515675, 43.0299640000001], [25.5532630000001, 43.0306980010001], [25.5533425, 43.0309835], [25.553004365, 43.0309708080001], [25.550086714, 43.0340484170001], [25.5465055300001, 43.0378261450001], [25.54346, 43.0410390000001], [25.5373480000001, 43.041524], [25.5383860000001, 43.039814], [25.510029, 43.0375835], [25.5047280000001, 43.037425], [25.4876665, 43.0416960000001], [25.4791565, 43.0409835], [25.4708795, 43.0551760000001], [25.4720070000001, 43.0567750000001], [25.4498315000001, 43.0531179990001], [25.4436490000001, 43.0485805000001], [25.4358935000001, 43.044563], [25.4066720000001, 43.0417425000001], [25.3904255, 43.04515], [25.3854220000001, 43.0546135010001], [25.373998, 43.0552035000001], [25.3688655, 43.055306], [25.3695880000001, 43.051548], [25.3477025, 43.052694], [25.3489070000001, 43.0462555], [25.3346725000001, 43.0209], [25.3219875, 43.0179250000001], [25.3190700000001, 43.0077655010001], [25.3174110000001, 43.0037360000001], [25.3081695000001, 43.0004059990001], [25.295235, 43.0020145], [25.293352, 42.9949930000001], [25.294636, 42.9931415], [25.2902535000001, 42.9832985], [25.2925760000001, 42.9725940000001], [25.3009420000001, 42.969832], [25.3035420000001, 42.96459], [25.3040785000001, 42.9630125], [25.3119445, 42.960292999], [25.315433, 42.9601345], [25.3192525000001, 42.9666995000001], [25.316739, 42.9691730000001], [25.3289805000001, 42.970357], [25.3355760000001, 42.9675225], [25.3582910000001, 42.9669115], [25.3699445, 42.9606850000001], [25.3837875, 42.9630445000001], [25.404461, 42.9683404990001], [25.413085, 42.9709940000001], [25.4187890000001, 42.9676180000001], [25.4169615000001, 42.9649885000001], [25.4245515000001, 42.9577624990001], [25.430145, 42.947436], [25.4235860000001, 42.9436725], [25.423724, 42.933408], [25.4168985000001, 42.9303760000001], [25.4256290000001, 42.9216115], [25.4209625, 42.9185875000001], [25.4263120000001, 42.9086555000001], [25.4394085000001, 42.9076465000001], [25.4394895, 42.904021001], [25.4576720000001, 42.8989980000001], [25.4656690000001, 42.9010215000001], [25.4667250000001, 42.9039615], [25.4635745, 42.9105645000001], [25.4637855, 42.9172990000001], [25.4654005, 42.9217640000001], [25.4692485000001, 42.92274] ] ] },
+    "properties": {
+      "ISO": "BG-GAB12",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "14218",
+      "NAME_1": "GAB",
+      "TYPE_1": "Област",
+      "ID_2": "23947",
+      "NAME_2": "Дряново",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.7502535, 41.7259495000001], [25.7376115000001, 41.7269640010001], [25.7236825000001, 41.7247610000001], [25.7164785000001, 41.702168], [25.7221660000001, 41.702079], [25.7266975000001, 41.702052], [25.7302395, 41.6980070000001], [25.7397570000001, 41.6849075000001], [25.7401315000001, 41.6764360000001], [25.758588, 41.673935], [25.7649575, 41.6683605000001], [25.7677670000001, 41.6604915], [25.7681205000001, 41.6598745000001], [25.7741150000001, 41.6569885000001], [25.7757665, 41.656686], [25.778016, 41.6529675], [25.7930075, 41.6598185], [25.797128, 41.656074], [25.800308, 41.6502440000001], [25.802867, 41.653089499], [25.8125180000001, 41.650875], [25.8292675000001, 41.6503085000001], [25.8355770000001, 41.647931499], [25.83156, 41.641014], [25.835109, 41.6308135000001], [25.8251985000001, 41.626538], [25.8250195000001, 41.623185499], [25.8341, 41.6243720000001], [25.8402120000001, 41.6129995000001], [25.843778, 41.6127470000001], [25.8446670000001, 41.6086355], [25.8577970000001, 41.605335], [25.8658985000001, 41.6095405], [25.8660590000001, 41.6008004990001], [25.8793670000001, 41.5914779990001], [25.8861150000001, 41.5824645000001], [25.885813, 41.5780435], [25.8937645, 41.568221501], [25.9064920000001, 41.5639345000001], [25.9161675, 41.5656200000001], [25.9307600000001, 41.5754395000001], [25.9544145, 41.5737340000001], [25.9622205000001, 41.5779525], [25.9645195000001, 41.5849270000001], [25.966373, 41.5865695000001], [25.9652955, 41.5893970000001], [25.970554, 41.6038825000001], [25.9787185000001, 41.6200150000001], [25.981574, 41.6199235010001], [25.9857015000001, 41.6192389990001], [25.9745350000001, 41.6319795000001], [25.9685345, 41.6319575000001], [25.9564745000001, 41.6409144990001], [25.956371, 41.6544240010001], [25.9622205000001, 41.6575215], [25.9659990000001, 41.6604735000001], [25.9737185000001, 41.6675910000001], [25.9721975, 41.6835510000001], [25.9645140000001, 41.694849499], [25.9637460000001, 41.7040245000001], [25.9589605, 41.703788], [25.9542950000001, 41.7122075], [25.958018, 41.7210000000001], [25.9548985000001, 41.7279435], [25.9468545, 41.7292390000001], [25.9406695000001, 41.7277005], [25.9355355000001, 41.7309905000001], [25.9329585, 41.7366630000001], [25.9275305, 41.7371620000001], [25.9157745000001, 41.7374659990001], [25.9016805000001, 41.7304375000001], [25.8904840000001, 41.7347340000001], [25.8872445000001, 41.734158], [25.868685, 41.733143501], [25.8697145, 41.725984], [25.8592320000001, 41.734455], [25.847628, 41.7349565000001], [25.8365030000001, 41.7278190000001], [25.8288125, 41.7285830000001], [25.814555, 41.726117501], [25.808746, 41.7255845], [25.8032365, 41.7272385000001], [25.782242, 41.724842999], [25.7700605000001, 41.7271765], [25.7692260000001, 41.7249745], [25.7546285, 41.7260015000001], [25.7502535, 41.7259495000001] ] ] },
+    "properties": {
+      "ISO": "BG-HKV18",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "46084",
+      "NAME_2": "Маджарово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [25.5204225000001, 41.9960865], [25.530001, 41.986023501], [25.5346690000001, 41.985642], [25.547855, 41.9844180000001], [25.5569955, 41.9830380000001], [25.5608845, 41.9782235000001], [25.5731725000001, 41.9761975000001], [25.5762445, 41.9837785], [25.6003615000001, 41.9810085], [25.6080250000001, 41.985258], [25.6228165000001, 41.98785], [25.6438105, 41.9954990000001], [25.6474260000001, 41.988503], [25.654593, 41.9892760000001], [25.6848325, 42.0000650000001], [25.6876075000001, 42.0073965], [25.6960040000001, 42.0109464990001], [25.7060050000001, 42.0263660000001], [25.7164335000001, 42.034967001], [25.7213525, 42.0377960000001], [25.7260145000001, 42.027202], [25.725877, 42.023035], [25.7309875, 42.019003], [25.7574725000001, 42.012209], [25.783099, 42.0096915], [25.7824370000001, 42.012031], [25.7676910000001, 42.0126660010001], [25.7657835000001, 42.018941], [25.7667460000001, 42.030137499], [25.7735510000001, 42.041162], [25.769105, 42.0410245], [25.771059, 42.0529155], [25.7636085, 42.0523900000001], [25.7577440000001, 42.057082001], [25.7631905000001, 42.0645845000001], [25.7406100000001, 42.0678560000001], [25.7293225, 42.0791965000001], [25.7321945, 42.0814350000001], [25.740553, 42.080608001], [25.7267045, 42.089393999], [25.7230475000001, 42.0970360000001], [25.7238475, 42.1090770010001], [25.7191255000001, 42.1181165], [25.704915, 42.1211765], [25.7060070000001, 42.1285875], [25.6999520000001, 42.1361385000001], [25.683926, 42.137275], [25.6767370000001, 42.1421720000001], [25.6646480000001, 42.1444055000001], [25.6639595, 42.1394355000001], [25.646692, 42.1359815000001], [25.637345, 42.1273914990001], [25.637705, 42.123681], [25.6258480000001, 42.127232], [25.6172940000001, 42.1344290010001], [25.6172930000001, 42.1406699990001], [25.6211505000001, 42.1725710000001], [25.625524, 42.1722005], [25.6298435000001, 42.181402501], [25.609251, 42.2009590000001], [25.6014035000001, 42.1996385], [25.5944925000001, 42.1929030000001], [25.5917615000001, 42.2001060000001], [25.5908445000001, 42.1946235], [25.5877385000001, 42.1840890010001], [25.5821695000001, 42.1689440000001], [25.568834, 42.1650720000001], [25.5571440000001, 42.160062499], [25.555173, 42.159817], [25.5501225, 42.1570785000001], [25.523876, 42.1658535], [25.5275100000001, 42.1679625000001], [25.5187235000001, 42.176540501], [25.513491, 42.1736625], [25.5109130000001, 42.1762635000001], [25.5059165000001, 42.174113499], [25.4972195, 42.1723250000001], [25.483234, 42.1619370000001], [25.470692, 42.1641795], [25.4581395000001, 42.1610125], [25.4579555, 42.154584], [25.4577775000001, 42.1487730000001], [25.461484, 42.1410505000001], [25.466554, 42.139731], [25.4657550000001, 42.1236715000001], [25.4577550000001, 42.1125905000001], [25.4509350000001, 42.1113275000001], [25.4472860000001, 42.1009575], [25.4281355000001, 42.0991475000001], [25.4278485, 42.08948], [25.4245470000001, 42.0900605], [25.4059370000001, 42.097783], [25.4006175000001, 42.1039950000001], [25.3955480000001, 42.1060860000001], [25.379646, 42.104723], [25.3696705, 42.108913499], [25.3480640000001, 42.1143774990001], [25.3469575, 42.0935665000001], [25.3399640000001, 42.0780560000001], [25.3207850000001, 42.0719050000001], [25.315389, 42.05987], [25.3082460000001, 42.0612330010001], [25.306631, 42.0549139990001], [25.3039035, 42.0548465000001], [25.3011010000001, 42.0488385000001], [25.2951735, 42.044297], [25.3119465, 42.011109499], [25.3083050000001, 42.0039770000001], [25.3090510000001, 41.99395], [25.3126285000001, 41.9869735], [25.311203, 41.9827695000001], [25.3172575, 41.979251], [25.3236180000001, 41.9818930000001], [25.3335965000001, 41.988608501], [25.346072, 41.9946745], [25.3531320000001, 41.9865130000001], [25.3648220000001, 41.9927640010001], [25.38143, 41.9969665], [25.3833975000001, 41.993995], [25.3911375000001, 41.9962205], [25.4104915, 41.986524], [25.4256110000001, 41.9857595], [25.4302280000001, 41.9889755], [25.4451165, 41.988575], [25.4608005000001, 41.9924835000001], [25.4661725, 42.0006655], [25.4797255, 41.99827], [25.4819350000001, 42.0025460000001], [25.4918660000001, 42.000619], [25.505995, 41.9950890000001], [25.5157, 41.998362], [25.5204225000001, 41.9960865] ] ], [ [ [25.3570960000001, 42.121248001], [25.35216, 42.1223575000001], [25.3528385000001, 42.115572], [25.364204, 42.1179545000001], [25.3570960000001, 42.121248001] ] ] ] },
+    "properties": {
+      "ISO": "BG-HKV09",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "21052",
+      "NAME_2": "Димитровград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.8522750000001, 41.452797], [25.8510890000001, 41.4548075000001], [25.841552, 41.4530905], [25.8340765, 41.4459445000001], [25.8369205000001, 41.4403705], [25.8257640000001, 41.441248], [25.8241515, 41.4408265000001], [25.8222165, 41.439469], [25.8194175, 41.4355895000001], [25.8218705, 41.412065], [25.8238365, 41.4108735], [25.830246, 41.4090385000001], [25.8366300000001, 41.3959750000001], [25.8547620000001, 41.3964045000001], [25.8692600000001, 41.3925350000001], [25.874621, 41.394056], [25.8944865, 41.3935460000001], [25.905317, 41.3861150000001], [25.914658, 41.3902790000001], [25.9204520000001, 41.389298001], [25.9180645000001, 41.387028], [25.9035125, 41.3719515000001], [25.9095395000001, 41.3661585], [25.941517, 41.3722085000001], [25.933189, 41.3600795], [25.9442225, 41.350061], [25.945164, 41.3453500000001], [25.9424375, 41.3401365], [25.9434410000001, 41.3325035], [25.9463955, 41.3288235], [25.9565885000001, 41.3306185000001], [25.948626, 41.320342001], [25.9607465, 41.3197795], [25.9767855000001, 41.3184815010001], [25.9911700000001, 41.3264545000001], [25.9995105, 41.3263645000001], [26.0035085000001, 41.3333250000001], [26.0034180000001, 41.3383220000001], [26.010275, 41.3444875000001], [26.0304165000001, 41.3462200000001], [26.0314300000001, 41.3489110000001], [26.0369005000001, 41.350468], [26.0439495000001, 41.3496265000001], [26.053395, 41.3465630000001], [26.0678150000001, 41.3501765], [26.0807595000001, 41.3452840000001], [26.089367, 41.3455635], [26.093223, 41.346297], [26.091412, 41.3499560000001], [26.1001450000001, 41.3568270000001], [26.1076275, 41.3574835000001], [26.1212540000001, 41.3564030000001], [26.1274595, 41.3543645], [26.132438, 41.3549610000001], [26.1361715, 41.364088], [26.1362990000001, 41.3751715000001], [26.1471345000001, 41.3766265], [26.1504605000001, 41.3810950000001], [26.1506180000001, 41.386599501], [26.1558545, 41.3892240000001], [26.1586885, 41.3911825000001], [26.156982, 41.3975854990001], [26.1597765000001, 41.4000005], [26.1643560000001, 41.4067885010001], [26.159505, 41.4200015000001], [26.1727175, 41.4323220000001], [26.1891360000001, 41.4385550000001], [26.1979105, 41.4357555], [26.200408, 41.4376475], [26.1876665, 41.451645001], [26.1856345000001, 41.4526115], [26.174387, 41.464163], [26.1559060000001, 41.4738585000001], [26.1552555000001, 41.4738975000001], [26.1550735000001, 41.4752495000001], [26.1575995000001, 41.487823], [26.1707900000001, 41.4922725000001], [26.1740540000001, 41.5007255], [26.1718665000001, 41.5031865], [26.1802500000001, 41.5159405000001], [26.183923, 41.5169915000001], [26.1848975, 41.5201190010001], [26.1784225000001, 41.552552], [26.1764555, 41.5547995000001], [26.1521155, 41.5535145000001], [26.1474795, 41.5554405], [26.150001, 41.5961779990001], [26.1475565000001, 41.606856001], [26.138312, 41.6136505000001], [26.1377900000001, 41.6324815], [26.1262540000001, 41.63025], [26.119807, 41.6239365000001], [26.097635, 41.6265955000001], [26.091554, 41.631631], [26.0925375, 41.6373035], [26.0900175, 41.6429160000001], [26.0817925000001, 41.6414955000001], [26.0731060000001, 41.6341590000001], [26.0634625000001, 41.6303025], [26.0563490000001, 41.641895], [26.0402080000001, 41.6443235], [26.0382645, 41.6495810000001], [26.024008, 41.6452190000001], [26.0107400000001, 41.6191239990001], [26.0078300000001, 41.6128660000001], [25.9994295000001, 41.6112170010001], [25.9857015000001, 41.6192389990001], [25.981574, 41.6199235010001], [25.9787185000001, 41.6200150000001], [25.970554, 41.6038825000001], [25.9652955, 41.5893970000001], [25.966373, 41.5865695000001], [25.9645195000001, 41.5849270000001], [25.9622205000001, 41.5779525], [25.9544145, 41.5737340000001], [25.9307600000001, 41.5754395000001], [25.9161675, 41.5656200000001], [25.9064920000001, 41.5639345000001], [25.8937645, 41.568221501], [25.885813, 41.5780435], [25.8861150000001, 41.5824645000001], [25.8793670000001, 41.5914779990001], [25.8660590000001, 41.6008004990001], [25.8658985000001, 41.6095405], [25.8577970000001, 41.605335], [25.8446670000001, 41.6086355], [25.843778, 41.6127470000001], [25.8402120000001, 41.6129995000001], [25.8314060000001, 41.6018765000001], [25.8232945, 41.5985380000001], [25.796776, 41.584532], [25.7942045, 41.583942], [25.7885810000001, 41.5866395], [25.7908225, 41.5732605000001], [25.7809145000001, 41.552128501], [25.7847850000001, 41.5395100000001], [25.7771365, 41.5420455], [25.771595, 41.540892], [25.7589795000001, 41.5443325000001], [25.7551635, 41.5368515000001], [25.762215, 41.528465], [25.7625275, 41.5256180000001], [25.7742870000001, 41.52047], [25.7894820000001, 41.5191315000001], [25.7925035000001, 41.516326501], [25.7946025, 41.5092365], [25.7934605, 41.5056940000001], [25.801544, 41.508584], [25.8121335000001, 41.505546], [25.821671, 41.4962990000001], [25.824779, 41.4848375], [25.8385835, 41.4771055000001], [25.8472055, 41.4841145], [25.8535265, 41.4751525], [25.8643375, 41.4683870000001], [25.8683875, 41.468891], [25.8557735000001, 41.4627445], [25.8522750000001, 41.452797] ] ] },
+    "properties": {
+      "ISO": "BG-HKV11",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "32024",
+      "NAME_2": "Ивайловград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.757278, 41.9555565000001], [25.7543315, 41.9581000000001], [25.7504475000001, 41.9785795010001], [25.7592740000001, 41.9767430000001], [25.7635460000001, 41.9857280000001], [25.7514995, 41.9921275], [25.7583555000001, 41.9990785000001], [25.7551595, 42.0084735], [25.7574725000001, 42.012209], [25.7309875, 42.019003], [25.725877, 42.023035], [25.7260145000001, 42.027202], [25.7213525, 42.0377960000001], [25.7164335000001, 42.034967001], [25.7060050000001, 42.0263660000001], [25.6960040000001, 42.0109464990001], [25.6876075000001, 42.0073965], [25.6848325, 42.0000650000001], [25.654593, 41.9892760000001], [25.6474260000001, 41.988503], [25.6438105, 41.9954990000001], [25.6228165000001, 41.98785], [25.6080250000001, 41.985258], [25.6003615000001, 41.9810085], [25.5762445, 41.9837785], [25.5731725000001, 41.9761975000001], [25.5608845, 41.9782235000001], [25.5569955, 41.9830380000001], [25.547855, 41.9844180000001], [25.5346690000001, 41.985642], [25.530001, 41.986023501], [25.5204225000001, 41.9960865], [25.5157, 41.998362], [25.505995, 41.9950890000001], [25.4918660000001, 42.000619], [25.4819350000001, 42.0025460000001], [25.4797255, 41.99827], [25.4661725, 42.0006655], [25.4608005000001, 41.9924835000001], [25.4451165, 41.988575], [25.4302280000001, 41.9889755], [25.4256110000001, 41.9857595], [25.4104915, 41.986524], [25.4076795, 41.9794425000001], [25.3957045000001, 41.9766505000001], [25.3882745, 41.9706965], [25.39203, 41.9697725], [25.403491, 41.9703105], [25.4079100000001, 41.966391], [25.4226825000001, 41.9520010000001], [25.4253655000001, 41.946809], [25.427966, 41.9349060000001], [25.4290760000001, 41.9287840000001], [25.4064865, 41.9158995010001], [25.4055155, 41.907082501], [25.3988860000001, 41.9017125010001], [25.4001455000001, 41.8999015], [25.4018425, 41.8958225000001], [25.4093090000001, 41.8907835000001], [25.4110625000001, 41.886066], [25.4141230000001, 41.88102], [25.406096, 41.8776755000001], [25.3960690000001, 41.8687995010001], [25.376247, 41.8662825000001], [25.372755, 41.8631305000001], [25.355935, 41.868231499], [25.3465805000001, 41.871385], [25.3613845, 41.8574575010001], [25.3564715000001, 41.8528115], [25.3588095000001, 41.8515885000001], [25.3667405, 41.8416905], [25.3736185000001, 41.8414910000001], [25.3845375000001, 41.8305990000001], [25.3839110000001, 41.8202415000001], [25.3858230000001, 41.8150355010001], [25.3863985, 41.8126030000001], [25.398765, 41.7944475], [25.401349, 41.793664], [25.40678, 41.7890065], [25.420957, 41.7933449990001], [25.4282705000001, 41.7935175000001], [25.4347495000001, 41.7906114990001], [25.4411135, 41.7936565000001], [25.4498625, 41.7913705], [25.453764, 41.7816550000001], [25.4583225000001, 41.785076001], [25.466057, 41.7742455000001], [25.4767495, 41.7694070000001], [25.481206, 41.7642285000001], [25.484522, 41.76239], [25.50426, 41.7703175], [25.517593, 41.767734499], [25.5156930000001, 41.763869], [25.5194515000001, 41.7579234990001], [25.5281890000001, 41.756401], [25.5342430000001, 41.7598875], [25.5362155, 41.7564675], [25.5391260000001, 41.7528255], [25.5414305, 41.7522870000001], [25.54612, 41.7587775000001], [25.5492225, 41.7577450000001], [25.557581, 41.7571610000001], [25.5551830000001, 41.7690785], [25.5606050000001, 41.770988501], [25.5608105000001, 41.7744495000001], [25.5705425, 41.7822805000001], [25.5746245, 41.7782605], [25.5857615000001, 41.7923270000001], [25.5803045000001, 41.7961910000001], [25.5798375000001, 41.799761], [25.5838850000001, 41.8044359990001], [25.5937815, 41.804422], [25.6086950000001, 41.801707999], [25.613204, 41.8055455000001], [25.6237090000001, 41.8169439990001], [25.620668, 41.8344795000001], [25.6346035, 41.8355290000001], [25.6554985000001, 41.8435745], [25.6562880000001, 41.8418140000001], [25.6577265, 41.83232], [25.6603825, 41.8278340000001], [25.6666705000001, 41.8183510000001], [25.6697945, 41.8114210000001], [25.6728795000001, 41.803094001], [25.6731125000001, 41.8020965000001], [25.6966025, 41.802388501], [25.700969, 41.802127001], [25.7052570000001, 41.8061385], [25.7075275, 41.8050515], [25.725103, 41.8048965], [25.7392590000001, 41.820553499], [25.742148, 41.830632], [25.7541420000001, 41.8372700000001], [25.7649225000001, 41.835806], [25.7816215, 41.831422], [25.7913275, 41.8276290000001], [25.802738, 41.818972], [25.8109405000001, 41.820521], [25.815453, 41.823517], [25.823253, 41.8207965], [25.840286, 41.8248245], [25.8370845000001, 41.826895], [25.8376285000001, 41.8315255000001], [25.8443065000001, 41.8359475], [25.8358730000001, 41.8449055], [25.8362240000001, 41.8500599990001], [25.8401875000001, 41.859585], [25.8530845, 41.8625470000001], [25.8548910000001, 41.8661495010001], [25.8494065, 41.8726649990001], [25.8457330000001, 41.8776720010001], [25.8357435, 41.8815295000001], [25.8241725, 41.8815020000001], [25.808528, 41.8857675], [25.8029790000001, 41.8879615000001], [25.7999555000001, 41.8949775], [25.8170815, 41.896308], [25.82237, 41.9015275], [25.820342, 41.904767], [25.8124145, 41.90587], [25.809215, 41.9185630000001], [25.8085495, 41.9266845000001], [25.8194465, 41.9274005], [25.821647, 41.9385600000001], [25.8018695000001, 41.9403095000001], [25.7852045000001, 41.9456870000001], [25.7824645000001, 41.952777499], [25.7804675, 41.95662], [25.76606, 41.9560430000001], [25.757278, 41.9555565000001] ] ] },
+    "properties": {
+      "ISO": "BG-HKV34",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "77195",
+      "NAME_2": "Хасково",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.3564715000001, 41.8528115], [25.3613845, 41.8574575010001], [25.3465805000001, 41.871385], [25.355935, 41.868231499], [25.372755, 41.8631305000001], [25.376247, 41.8662825000001], [25.3960690000001, 41.8687995010001], [25.406096, 41.8776755000001], [25.4141230000001, 41.88102], [25.4110625000001, 41.886066], [25.4093090000001, 41.8907835000001], [25.4018425, 41.8958225000001], [25.4001455000001, 41.8999015], [25.3988860000001, 41.9017125010001], [25.4055155, 41.907082501], [25.4064865, 41.9158995010001], [25.4290760000001, 41.9287840000001], [25.427966, 41.9349060000001], [25.4253655000001, 41.946809], [25.4226825000001, 41.9520010000001], [25.4079100000001, 41.966391], [25.403491, 41.9703105], [25.39203, 41.9697725], [25.3882745, 41.9706965], [25.3957045000001, 41.9766505000001], [25.4076795, 41.9794425000001], [25.4104915, 41.986524], [25.3911375000001, 41.9962205], [25.3833975000001, 41.993995], [25.38143, 41.9969665], [25.3648220000001, 41.9927640010001], [25.3531320000001, 41.9865130000001], [25.346072, 41.9946745], [25.3335965000001, 41.988608501], [25.3236180000001, 41.9818930000001], [25.3172575, 41.979251], [25.309989, 41.9750780000001], [25.317624, 41.9679805000001], [25.3056185, 41.9626030000001], [25.3083125000001, 41.957158], [25.3014815, 41.9480955000001], [25.285243, 41.9442295000001], [25.2865335000001, 41.9429920000001], [25.2838405000001, 41.9379265000001], [25.2769655000001, 41.9365985000001], [25.26863, 41.923927], [25.264935, 41.913618], [25.263001, 41.9058880000001], [25.2509245, 41.896689501], [25.2181670000001, 41.895591], [25.2158615000001, 41.8933400000001], [25.2137695000001, 41.8776950000001], [25.2173065000001, 41.868068001], [25.2269450000001, 41.861683], [25.2272750000001, 41.8584550000001], [25.238013, 41.8559855], [25.240886, 41.850036], [25.2349985000001, 41.8493060000001], [25.2325585, 41.8450040000001], [25.2305890000001, 41.8370215000001], [25.2393970000001, 41.8327120010001], [25.25534, 41.8331395000001], [25.2520775, 41.8287575000001], [25.2545670000001, 41.826648], [25.2845675, 41.8154455000001], [25.2854265, 41.8124139990001], [25.2925275000001, 41.8021630000001], [25.3041675000001, 41.7999570000001], [25.303931, 41.8070960000001], [25.3119735000001, 41.8092905010001], [25.3144255, 41.8144465], [25.3150365000001, 41.8198105000001], [25.3120365, 41.8218825000001], [25.3199675000001, 41.824826999], [25.3216, 41.824783], [25.3251930000001, 41.8190445000001], [25.3306305, 41.816201], [25.3464865, 41.8190060000001], [25.3569190000001, 41.827703], [25.3467355, 41.8304035000001], [25.3563645, 41.84171], [25.3667405, 41.8416905], [25.3588095000001, 41.8515885000001], [25.3564715000001, 41.8528115] ] ] },
+    "properties": {
+      "ISO": "BG-HKV19",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "48297",
+      "NAME_2": "Минерални бани",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.7075275, 41.8050515], [25.7052570000001, 41.8061385], [25.700969, 41.802127001], [25.6966025, 41.802388501], [25.6731125000001, 41.8020965000001], [25.6728795000001, 41.803094001], [25.6697945, 41.8114210000001], [25.6666705000001, 41.8183510000001], [25.6603825, 41.8278340000001], [25.6577265, 41.83232], [25.6562880000001, 41.8418140000001], [25.6554985000001, 41.8435745], [25.6346035, 41.8355290000001], [25.620668, 41.8344795000001], [25.6237090000001, 41.8169439990001], [25.613204, 41.8055455000001], [25.6086950000001, 41.801707999], [25.5937815, 41.804422], [25.5838850000001, 41.8044359990001], [25.5798375000001, 41.799761], [25.5803045000001, 41.7961910000001], [25.5857615000001, 41.7923270000001], [25.5746245, 41.7782605], [25.5705425, 41.7822805000001], [25.5608105000001, 41.7744495000001], [25.5606050000001, 41.770988501], [25.5551830000001, 41.7690785], [25.557581, 41.7571610000001], [25.5631550000001, 41.755888999], [25.5912175, 41.7617395], [25.5915425000001, 41.7596585000001], [25.5877755000001, 41.752276501], [25.5897155000001, 41.749017], [25.5986360000001, 41.7448795], [25.6027145, 41.7465775000001], [25.606385, 41.7405605000001], [25.6090335000001, 41.739656], [25.6306155, 41.73121], [25.632033, 41.731362], [25.6320075, 41.7195805000001], [25.6321125000001, 41.715425501], [25.6357610000001, 41.710924999], [25.6320435000001, 41.7074945000001], [25.6422630000001, 41.6969515000001], [25.6455585, 41.6934365000001], [25.6461850000001, 41.6872520000001], [25.641331, 41.6756300000001], [25.6374015000001, 41.6713505000001], [25.636449, 41.6703575000001], [25.6330130000001, 41.662377], [25.6219865, 41.6565400000001], [25.6020810000001, 41.6417935000001], [25.604768, 41.634823], [25.599609, 41.6251950000001], [25.6017165000001, 41.6233745000001], [25.6108590000001, 41.621112], [25.6226195, 41.6242255000001], [25.6386650000001, 41.620395], [25.6411145000001, 41.6113540000001], [25.6465065, 41.6085535], [25.6572395000001, 41.6117105000001], [25.6730610000001, 41.6246120000001], [25.6803580000001, 41.6245200000001], [25.6967320000001, 41.6209060000001], [25.7043620000001, 41.6146245], [25.704393, 41.616539], [25.7153740000001, 41.6116855010001], [25.71556, 41.6101610010001], [25.7388300000001, 41.6200605000001], [25.7459705000001, 41.6245345], [25.7473385000001, 41.6355735000001], [25.7584385000001, 41.6490425000001], [25.7741150000001, 41.6569885000001], [25.7681205000001, 41.6598745000001], [25.7677670000001, 41.6604915], [25.7649575, 41.6683605000001], [25.758588, 41.673935], [25.7401315000001, 41.6764360000001], [25.7397570000001, 41.6849075000001], [25.7302395, 41.6980070000001], [25.7266975000001, 41.702052], [25.7221660000001, 41.702079], [25.7164785000001, 41.702168], [25.7236825000001, 41.7247610000001], [25.7376115000001, 41.7269640010001], [25.7502535, 41.7259495000001], [25.7546285, 41.7260015000001], [25.7692260000001, 41.7249745], [25.7700605000001, 41.7271765], [25.782242, 41.724842999], [25.8032365, 41.7272385000001], [25.808746, 41.7255845], [25.814555, 41.726117501], [25.8288125, 41.7285830000001], [25.8240460000001, 41.7375455010001], [25.8162235, 41.7426310000001], [25.8047375, 41.7595390000001], [25.8005865000001, 41.7728075000001], [25.7913370000001, 41.778606], [25.776097, 41.7788815000001], [25.7743505, 41.7828800010001], [25.7670585000001, 41.7796405], [25.7546790000001, 41.7796915000001], [25.756495, 41.7828050000001], [25.752958, 41.7859995000001], [25.74148, 41.788532], [25.7440005, 41.7956075000001], [25.725103, 41.8048965], [25.7075275, 41.8050515] ] ] },
+    "properties": {
+      "ISO": "BG-HKV30",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "68727",
+      "NAME_2": "Стамболово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.208765, 42.1993975], [26.198244, 42.2072635000001], [26.1967120000001, 42.2060640010001], [26.1927335, 42.20813], [26.1864210000001, 42.2012050000001], [26.1672830000001, 42.1930520000001], [26.165134, 42.1795990000001], [26.1683620000001, 42.175128], [26.1674400000001, 42.1714425000001], [26.1558140000001, 42.164611999], [26.1428690000001, 42.163219], [26.1463865000001, 42.1569045], [26.1376425, 42.154592], [26.1369755000001, 42.1454685], [26.1364740000001, 42.1398085000001], [26.1333025000001, 42.1181334990001], [26.1372045, 42.1078685000001], [26.1373265, 42.1047485], [26.1331260000001, 42.0996014990001], [26.13973, 42.0957375], [26.1565350000001, 42.0794845], [26.1566080000001, 42.0763145010001], [26.153311, 42.0740835], [26.1551670000001, 42.06528], [26.1524335, 42.048526], [26.1538705, 42.0412415000001], [26.1489540000001, 42.0369765], [26.1504975, 42.0306110000001], [26.152097, 42.0281325010001], [26.16306, 42.019031], [26.187558, 42.011083], [26.2005015, 42.012169], [26.2096990000001, 42.0055405000001], [26.2215515, 42.0043430000001], [26.2317840000001, 41.99931], [26.2436355, 42.0013205000001], [26.2527670000001, 41.994855], [26.2578130000001, 41.994712], [26.2739340000001, 42.002912], [26.2842325, 42.004796], [26.29625, 42.005456], [26.302219, 42.0098065], [26.3054790000001, 42.0094750000001], [26.3093535, 42.0051975000001], [26.320797, 42.0012175000001], [26.3264345000001, 41.9953065], [26.3347475000001, 41.9906090000001], [26.3428115, 41.9877455000001], [26.3434745000001, 41.9876865000001], [26.344696001, 41.9842035], [26.3546085, 41.9835525], [26.3602155, 41.9740455], [26.3632850010001, 41.9674835000001], [26.3655820000001, 41.9546980000001], [26.3655795, 41.9445245000001], [26.3691705000001, 41.9370510000001], [26.377737089, 41.9332008430001], [26.3779815, 41.9330909990001], [26.3793375010001, 41.9362820000001], [26.3991340000001, 41.943809], [26.4110925000001, 41.9429210000001], [26.4097975, 41.9545870000001], [26.39484, 41.9589445], [26.3866295, 41.9707000010001], [26.401305, 41.9847195], [26.4068990000001, 41.9859105], [26.4212465000001, 41.9776210000001], [26.4318995, 41.9728015000001], [26.4390145, 41.97725], [26.4685765, 41.9601610010001], [26.470829, 41.9586990010001], [26.4700425, 41.9553265000001], [26.4618075000001, 41.931704], [26.4626915000001, 41.9278850000001], [26.4730080000001, 41.9174400000001], [26.4743135000001, 41.9111725010001], [26.470305, 41.9059260000001], [26.4690725, 41.9029795000001], [26.4606365000001, 41.8996075000001], [26.4600590000001, 41.8956690000001], [26.4602655000001, 41.8948095000001], [26.4742985, 41.8879710000001], [26.4844785, 41.887909], [26.4865415, 41.8949255000001], [26.4895595, 41.8974205000001], [26.5042175, 41.8975300000001], [26.5054655000001, 41.8939775000001], [26.517145, 41.8762795010001], [26.5349615000001, 41.8767310000001], [26.544248, 41.8795965], [26.5503340000001, 41.884984], [26.56822, 41.887413], [26.584593, 41.902653], [26.571377, 41.9122965], [26.5615445, 41.9262735], [26.561291, 41.926678499], [26.5577375, 41.936874], [26.5422060000001, 41.9514445], [26.540192, 41.9563675000001], [26.5226865000001, 41.9655645], [26.5215850000001, 41.9696480000001], [26.526461, 41.9763065000001], [26.5257225, 41.9805950000001], [26.5161335, 41.9824285], [26.510412, 41.9876415000001], [26.5124695000001, 41.99078], [26.5051510000001, 41.9944100000001], [26.507864, 41.9999790000001], [26.5085750000001, 42.0030035010001], [26.5175525000001, 42.0102380000001], [26.535623, 42.0279160000001], [26.534074, 42.0472195], [26.526061, 42.0548245000001], [26.515366, 42.0581300000001], [26.5073075, 42.0651930010001], [26.5090875000001, 42.0689925], [26.514211, 42.0706175010001], [26.5101775000001, 42.075072], [26.5142875, 42.079417], [26.5064550000001, 42.0984595], [26.5209110000001, 42.1108235], [26.516508, 42.113255001], [26.5136675000001, 42.1189755], [26.5223350000001, 42.122781], [26.5277160000001, 42.127355999], [26.528892, 42.1326835], [26.5342020000001, 42.1355605000001], [26.5296060000001, 42.1353345000001], [26.5238585000001, 42.138498999], [26.538056, 42.1541969990001], [26.5185230000001, 42.1572370000001], [26.5029125, 42.1507895], [26.5021100000001, 42.1466339990001], [26.4951580000001, 42.1457075000001], [26.4940325000001, 42.1538085], [26.496051, 42.1547855000001], [26.4967110000001, 42.1664290000001], [26.4914495, 42.1696845000001], [26.4890975000001, 42.1711060000001], [26.490547, 42.1650555000001], [26.4718255, 42.162967], [26.4774255, 42.157584], [26.4694020000001, 42.15245], [26.4498795000001, 42.1629855], [26.447707, 42.1655595], [26.4478635, 42.1707030000001], [26.4392290000001, 42.167513501], [26.4239375000001, 42.1538245], [26.4129290000001, 42.1519450010001], [26.4098795, 42.156261499], [26.3945775, 42.1597120000001], [26.380587, 42.171228], [26.3719375000001, 42.170371], [26.370578, 42.1633565000001], [26.3678345000001, 42.1618195], [26.3544265, 42.1616235000001], [26.3501525, 42.1643505000001], [26.3424585000001, 42.1616500000001], [26.3104975000001, 42.1736075000001], [26.3050365, 42.1747445], [26.276573, 42.1769870000001], [26.267369, 42.1860525000001], [26.2538135, 42.1868155000001], [26.2423295, 42.1921090000001], [26.240818, 42.1924500000001], [26.2357260000001, 42.194978501], [26.218551, 42.1878330000001], [26.208765, 42.1993975] ] ] },
+    "properties": {
+      "ISO": "BG-HKV32",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "72761",
+      "NAME_2": "Тополовград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.2941685000001, 41.7107579990001], [26.3119905, 41.7094905000001], [26.3302345000001, 41.7153965000001], [26.357879, 41.7111045], [26.3459095000001, 41.7247925], [26.3284285, 41.7369805000001], [26.3280715000001, 41.7483790000001], [26.3294565, 41.7524795], [26.3338625000001, 41.7633705000001], [26.3376505000001, 41.7649955000001], [26.3409195, 41.7710684990001], [26.3429355000001, 41.783371], [26.3480510000001, 41.7891350000001], [26.3690605, 41.8206825], [26.4236965000001, 41.8228035010001], [26.4494020000001, 41.8229675000001], [26.4978885, 41.8232080000001], [26.5386085000001, 41.8234825000001], [26.552555, 41.848213001], [26.5642165, 41.8546410000001], [26.5654640000001, 41.866455], [26.5803740000001, 41.871856499], [26.579212, 41.8778955000001], [26.56822, 41.887413], [26.5503340000001, 41.884984], [26.544248, 41.8795965], [26.5349615000001, 41.8767310000001], [26.517145, 41.8762795010001], [26.5054655000001, 41.8939775000001], [26.5042175, 41.8975300000001], [26.4895595, 41.8974205000001], [26.4865415, 41.8949255000001], [26.4844785, 41.887909], [26.4742985, 41.8879710000001], [26.4602655000001, 41.8948095000001], [26.4600590000001, 41.8956690000001], [26.4606365000001, 41.8996075000001], [26.4690725, 41.9029795000001], [26.470305, 41.9059260000001], [26.4743135000001, 41.9111725010001], [26.4730080000001, 41.9174400000001], [26.4626915000001, 41.9278850000001], [26.4618075000001, 41.931704], [26.4700425, 41.9553265000001], [26.470829, 41.9586990010001], [26.4685765, 41.9601610010001], [26.4390145, 41.97725], [26.4318995, 41.9728015000001], [26.4212465000001, 41.9776210000001], [26.4068990000001, 41.9859105], [26.401305, 41.9847195], [26.3866295, 41.9707000010001], [26.39484, 41.9589445], [26.4097975, 41.9545870000001], [26.4110925000001, 41.9429210000001], [26.3991340000001, 41.943809], [26.3793375010001, 41.9362820000001], [26.3779815, 41.9330909990001], [26.377737089, 41.9332008430001], [26.3691705000001, 41.9370510000001], [26.3655795, 41.9445245000001], [26.3655820000001, 41.9546980000001], [26.3632850010001, 41.9674835000001], [26.3602155, 41.9740455], [26.3546085, 41.9835525], [26.344696001, 41.9842035], [26.3434745000001, 41.9876865000001], [26.3428115, 41.9877455000001], [26.3347475000001, 41.9906090000001], [26.3264345000001, 41.9953065], [26.320797, 42.0012175000001], [26.3093535, 42.0051975000001], [26.3054790000001, 42.0094750000001], [26.302219, 42.0098065], [26.29625, 42.005456], [26.2842325, 42.004796], [26.2739340000001, 42.002912], [26.2578130000001, 41.994712], [26.263337, 41.9869705], [26.258025, 41.9676665000001], [26.2504135, 41.9675990000001], [26.2483815000001, 41.9702295000001], [26.2425620000001, 41.969817], [26.2160900000001, 41.9501895000001], [26.214054, 41.9460100000001], [26.2069470000001, 41.9443625000001], [26.209976, 41.9332875000001], [26.2189755000001, 41.92051], [26.214682, 41.9078440000001], [26.2130875, 41.9006640000001], [26.2102185000001, 41.8879895000001], [26.2043820000001, 41.884715999], [26.191199, 41.8840430000001], [26.1861975000001, 41.8889705], [26.1722490000001, 41.8890015010001], [26.1702520000001, 41.8899774990001], [26.1719925, 41.8843160000001], [26.1720615, 41.8731885], [26.1708635000001, 41.871558501], [26.1529210000001, 41.8602505000001], [26.1428635, 41.8542170000001], [26.1373570000001, 41.8424455000001], [26.1191635000001, 41.8296120000001], [26.1320895000001, 41.813146999], [26.15407, 41.807900499], [26.1555310000001, 41.8012975010001], [26.1539195, 41.7971200000001], [26.1481905000001, 41.7993970000001], [26.1272365, 41.788508], [26.1214955, 41.791274], [26.110645, 41.787381], [26.1108215, 41.7920700000001], [26.0787, 41.7843775010001], [26.0624085000001, 41.783759], [26.0592045000001, 41.7861425], [26.0553350000001, 41.7797159990001], [26.0421160000001, 41.7698385], [26.0341930000001, 41.747196], [26.0362490000001, 41.7400575], [26.0250780000001, 41.7343070000001], [26.0259535000001, 41.7266270000001], [26.02421, 41.722185], [26.033507, 41.715941], [26.054918, 41.7177310000001], [26.0612465, 41.7116810000001], [26.070186, 41.7090745], [26.0859110000001, 41.7169135], [26.112672, 41.7135630000001], [26.1185645000001, 41.7272615000001], [26.1293220000001, 41.7338070000001], [26.1405355000001, 41.735711], [26.1694200000001, 41.7486915000001], [26.1747235, 41.7490525000001], [26.1756725000001, 41.7445040000001], [26.191632, 41.736092], [26.2138565000001, 41.7316915000001], [26.2275085000001, 41.7409095], [26.233893, 41.738147499], [26.2474760000001, 41.7252800000001], [26.2753990000001, 41.7147029990001], [26.2941685000001, 41.7107579990001] ] ] },
+    "properties": {
+      "ISO": "BG-HKV28",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "65677",
+      "NAME_2": "Свиленград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.9993610000001, 42.075925], [25.9746395, 42.096975], [25.9511495, 42.1055755], [25.941691, 42.1043135], [25.9221555, 42.108275], [25.9148020000001, 42.112595501], [25.9101020000001, 42.1205345000001], [25.9064215000001, 42.1227295], [25.8972365000001, 42.1203225000001], [25.8883175, 42.112599], [25.8775650000001, 42.113566], [25.8774505000001, 42.1309695], [25.8630725, 42.1305620000001], [25.8525495000001, 42.1260540000001], [25.8494180000001, 42.1238425000001], [25.8508875000001, 42.117219499], [25.8436810000001, 42.1096630000001], [25.8407595, 42.1093090000001], [25.8482015000001, 42.1020800000001], [25.8429505, 42.0943090000001], [25.8359980000001, 42.0855295000001], [25.8297675000001, 42.0810080000001], [25.8123405000001, 42.0836795000001], [25.8103785000001, 42.0814120000001], [25.8059730000001, 42.0833245000001], [25.8029290000001, 42.076237], [25.7907240000001, 42.0734835000001], [25.7847150000001, 42.066854499], [25.780511, 42.0572045000001], [25.7636085, 42.0523900000001], [25.771059, 42.0529155], [25.769105, 42.0410245], [25.7735510000001, 42.041162], [25.7667460000001, 42.030137499], [25.7657835000001, 42.018941], [25.7676910000001, 42.0126660010001], [25.7824370000001, 42.012031], [25.783099, 42.0096915], [25.7574725000001, 42.012209], [25.7551595, 42.0084735], [25.7583555000001, 41.9990785000001], [25.7514995, 41.9921275], [25.7635460000001, 41.9857280000001], [25.7592740000001, 41.9767430000001], [25.7504475000001, 41.9785795010001], [25.7543315, 41.9581000000001], [25.757278, 41.9555565000001], [25.76606, 41.9560430000001], [25.7648455, 41.971908], [25.7774630000001, 41.9801715], [25.7955295, 41.9819570000001], [25.8108465, 41.981238499], [25.825405, 41.9853195000001], [25.8262135000001, 41.985283], [25.8370160000001, 41.9818985000001], [25.8420845000001, 41.9768115000001], [25.8479705, 41.9788340000001], [25.8572750000001, 41.9812685000001], [25.866426, 41.9878214990001], [25.8826415, 41.9895970000001], [25.893178, 41.9867140000001], [25.8907290000001, 41.9963405], [25.8841465, 42.000909999], [25.8867240000001, 42.0071455], [25.9007195, 42.0117700000001], [25.916391, 42.0068170000001], [25.9450835000001, 42.0073185000001], [25.953449, 42.0106510000001], [25.9694730000001, 42.0251205000001], [25.9741330000001, 42.0344435000001], [25.9766325000001, 42.0362175000001], [25.9955435000001, 42.0287425000001], [26.0204525, 42.03954], [26.016716, 42.0615700000001], [26.0069105000001, 42.065813], [26.0048025, 42.071496], [25.9993610000001, 42.075925] ] ] },
+    "properties": {
+      "ISO": "BG-HKV29",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "47278",
+      "NAME_2": "Симеоновград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.1702520000001, 41.8899774990001], [26.1722490000001, 41.8890015010001], [26.1861975000001, 41.8889705], [26.191199, 41.8840430000001], [26.2043820000001, 41.884715999], [26.2102185000001, 41.8879895000001], [26.2130875, 41.9006640000001], [26.214682, 41.9078440000001], [26.2189755000001, 41.92051], [26.209976, 41.9332875000001], [26.2069470000001, 41.9443625000001], [26.1963385, 41.9497155], [26.193674, 41.9528805000001], [26.1879625, 41.949426999], [26.1772970000001, 41.9510215], [26.173574, 41.9509185000001], [26.1552840000001, 41.9485965000001], [26.143603, 41.9430564990001], [26.1271350000001, 41.930647499], [26.1126455, 41.9171390000001], [26.1109735000001, 41.909906999], [26.1092855000001, 41.9091195010001], [26.0991605, 41.9196105], [26.0905100000001, 41.9219285], [26.0878270000001, 41.9221505], [26.0841595000001, 41.9165055], [26.0735485000001, 41.917875], [26.0761595000001, 41.916500001], [26.0691975, 41.8915670000001], [26.0643005000001, 41.882773], [26.066045, 41.874424499], [26.0370510000001, 41.8877355000001], [26.0232885, 41.8813505000001], [26.0235765000001, 41.8773], [26.035562, 41.871024499], [26.0346265000001, 41.8636805000001], [26.0275975000001, 41.864521999], [26.0275015, 41.8518715000001], [26.0219945000001, 41.8477895], [26.0051920000001, 41.8457990000001], [25.993659, 41.8398350000001], [25.9619265000001, 41.8379945], [25.9506270000001, 41.8424625000001], [25.9494280000001, 41.837389999], [25.944397, 41.8332815000001], [25.9502685, 41.8230359990001], [25.9600905, 41.8213240000001], [25.962773, 41.8142825], [25.9597275, 41.8115575000001], [25.960046, 41.8017115000001], [25.970856, 41.7940495], [25.9547515, 41.7833345000001], [25.9482315000001, 41.7820725], [25.9461020000001, 41.7785135], [25.9467955000001, 41.774773], [25.940007, 41.760232], [25.9433445, 41.7400105], [25.9468545, 41.7292390000001], [25.9548985000001, 41.7279435], [25.958018, 41.7210000000001], [25.9542950000001, 41.7122075], [25.9589605, 41.703788], [25.9637460000001, 41.7040245000001], [25.9645140000001, 41.694849499], [25.9721975, 41.6835510000001], [25.9737185000001, 41.6675910000001], [25.9659990000001, 41.6604735000001], [25.9622205000001, 41.6575215], [25.956371, 41.6544240010001], [25.9564745000001, 41.6409144990001], [25.9685345, 41.6319575000001], [25.9745350000001, 41.6319795000001], [25.9857015000001, 41.6192389990001], [25.9994295000001, 41.6112170010001], [26.0078300000001, 41.6128660000001], [26.0107400000001, 41.6191239990001], [26.024008, 41.6452190000001], [26.0382645, 41.6495810000001], [26.0402080000001, 41.6443235], [26.0563490000001, 41.641895], [26.0634625000001, 41.6303025], [26.0731060000001, 41.6341590000001], [26.0817925000001, 41.6414955000001], [26.0695460000001, 41.651688], [26.0642275000001, 41.6624545000001], [26.060393, 41.688516001], [26.0607865000001, 41.698072], [26.0677575, 41.70631], [26.070186, 41.7090745], [26.0612465, 41.7116810000001], [26.054918, 41.7177310000001], [26.033507, 41.715941], [26.02421, 41.722185], [26.0259535000001, 41.7266270000001], [26.0250780000001, 41.7343070000001], [26.0362490000001, 41.7400575], [26.0341930000001, 41.747196], [26.0421160000001, 41.7698385], [26.0553350000001, 41.7797159990001], [26.0592045000001, 41.7861425], [26.0624085000001, 41.783759], [26.0787, 41.7843775010001], [26.1108215, 41.7920700000001], [26.110645, 41.787381], [26.1214955, 41.791274], [26.1272365, 41.788508], [26.1481905000001, 41.7993970000001], [26.1539195, 41.7971200000001], [26.1555310000001, 41.8012975010001], [26.15407, 41.807900499], [26.1320895000001, 41.813146999], [26.1191635000001, 41.8296120000001], [26.1373570000001, 41.8424455000001], [26.1428635, 41.8542170000001], [26.1529210000001, 41.8602505000001], [26.1708635000001, 41.871558501], [26.1720615, 41.8731885], [26.1719925, 41.8843160000001], [26.1702520000001, 41.8899774990001] ] ] },
+    "properties": {
+      "ISO": "BG-HKV17",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "44570",
+      "NAME_2": "Любимец",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.128585, 42.0416555], [26.1129715000001, 42.0381765000001], [26.1083675, 42.040442], [26.0971655000001, 42.0402510000001], [26.0876085, 42.031889], [26.078385, 42.028965], [26.0730315000001, 42.024072], [26.0578055, 42.019787001], [26.0577695000001, 42.0176565], [26.0402605, 42.0232125000001], [26.0299615000001, 42.0305880010001], [26.0242985, 42.038916], [26.0204525, 42.03954], [25.9955435000001, 42.0287425000001], [25.9766325000001, 42.0362175000001], [25.9741330000001, 42.0344435000001], [25.9694730000001, 42.0251205000001], [25.953449, 42.0106510000001], [25.9450835000001, 42.0073185000001], [25.916391, 42.0068170000001], [25.9007195, 42.0117700000001], [25.8867240000001, 42.0071455], [25.8841465, 42.000909999], [25.8907290000001, 41.9963405], [25.893178, 41.9867140000001], [25.8826415, 41.9895970000001], [25.866426, 41.9878214990001], [25.8572750000001, 41.9812685000001], [25.8479705, 41.9788340000001], [25.8420845000001, 41.9768115000001], [25.8370160000001, 41.9818985000001], [25.8262135000001, 41.985283], [25.825405, 41.9853195000001], [25.8108465, 41.981238499], [25.7955295, 41.9819570000001], [25.7774630000001, 41.9801715], [25.7648455, 41.971908], [25.76606, 41.9560430000001], [25.7804675, 41.95662], [25.7824645000001, 41.952777499], [25.7852045000001, 41.9456870000001], [25.8018695000001, 41.9403095000001], [25.821647, 41.9385600000001], [25.8194465, 41.9274005], [25.8085495, 41.9266845000001], [25.809215, 41.9185630000001], [25.8124145, 41.90587], [25.820342, 41.904767], [25.82237, 41.9015275], [25.8170815, 41.896308], [25.7999555000001, 41.8949775], [25.8029790000001, 41.8879615000001], [25.808528, 41.8857675], [25.8241725, 41.8815020000001], [25.8357435, 41.8815295000001], [25.8457330000001, 41.8776720010001], [25.8494065, 41.8726649990001], [25.8548910000001, 41.8661495010001], [25.8530845, 41.8625470000001], [25.8401875000001, 41.859585], [25.8362240000001, 41.8500599990001], [25.8358730000001, 41.8449055], [25.8443065000001, 41.8359475], [25.8376285000001, 41.8315255000001], [25.8370845000001, 41.826895], [25.840286, 41.8248245], [25.823253, 41.8207965], [25.815453, 41.823517], [25.8109405000001, 41.820521], [25.802738, 41.818972], [25.7913275, 41.8276290000001], [25.7816215, 41.831422], [25.7649225000001, 41.835806], [25.7541420000001, 41.8372700000001], [25.742148, 41.830632], [25.7392590000001, 41.820553499], [25.725103, 41.8048965], [25.7440005, 41.7956075000001], [25.74148, 41.788532], [25.752958, 41.7859995000001], [25.756495, 41.7828050000001], [25.7546790000001, 41.7796915000001], [25.7670585000001, 41.7796405], [25.7743505, 41.7828800010001], [25.776097, 41.7788815000001], [25.7913370000001, 41.778606], [25.8005865000001, 41.7728075000001], [25.8047375, 41.7595390000001], [25.8162235, 41.7426310000001], [25.8240460000001, 41.7375455010001], [25.8288125, 41.7285830000001], [25.8365030000001, 41.7278190000001], [25.847628, 41.7349565000001], [25.8592320000001, 41.734455], [25.8697145, 41.725984], [25.868685, 41.733143501], [25.8872445000001, 41.734158], [25.8904840000001, 41.7347340000001], [25.9016805000001, 41.7304375000001], [25.9157745000001, 41.7374659990001], [25.9275305, 41.7371620000001], [25.9329585, 41.7366630000001], [25.9355355000001, 41.7309905000001], [25.9406695000001, 41.7277005], [25.9468545, 41.7292390000001], [25.9433445, 41.7400105], [25.940007, 41.760232], [25.9467955000001, 41.774773], [25.9461020000001, 41.7785135], [25.9482315000001, 41.7820725], [25.9547515, 41.7833345000001], [25.970856, 41.7940495], [25.960046, 41.8017115000001], [25.9597275, 41.8115575000001], [25.962773, 41.8142825], [25.9600905, 41.8213240000001], [25.9502685, 41.8230359990001], [25.944397, 41.8332815000001], [25.9494280000001, 41.837389999], [25.9506270000001, 41.8424625000001], [25.9619265000001, 41.8379945], [25.993659, 41.8398350000001], [26.0051920000001, 41.8457990000001], [26.0219945000001, 41.8477895], [26.0275015, 41.8518715000001], [26.0275975000001, 41.864521999], [26.0346265000001, 41.8636805000001], [26.035562, 41.871024499], [26.0235765000001, 41.8773], [26.0232885, 41.8813505000001], [26.0370510000001, 41.8877355000001], [26.066045, 41.874424499], [26.0643005000001, 41.882773], [26.0691975, 41.8915670000001], [26.0761595000001, 41.916500001], [26.0735485000001, 41.917875], [26.0841595000001, 41.9165055], [26.0878270000001, 41.9221505], [26.0905100000001, 41.9219285], [26.0991605, 41.9196105], [26.1092855000001, 41.9091195010001], [26.1109735000001, 41.909906999], [26.1126455, 41.9171390000001], [26.1271350000001, 41.930647499], [26.143603, 41.9430564990001], [26.1552840000001, 41.9485965000001], [26.173574, 41.9509185000001], [26.1772970000001, 41.9510215], [26.1879625, 41.949426999], [26.193674, 41.9528805000001], [26.1963385, 41.9497155], [26.2069470000001, 41.9443625000001], [26.214054, 41.9460100000001], [26.2160900000001, 41.9501895000001], [26.2425620000001, 41.969817], [26.2483815000001, 41.9702295000001], [26.2504135, 41.9675990000001], [26.258025, 41.9676665000001], [26.263337, 41.9869705], [26.2578130000001, 41.994712], [26.2527670000001, 41.994855], [26.2436355, 42.0013205000001], [26.2317840000001, 41.99931], [26.2215515, 42.0043430000001], [26.2096990000001, 42.0055405000001], [26.2005015, 42.012169], [26.187558, 42.011083], [26.16306, 42.019031], [26.152097, 42.0281325010001], [26.1504975, 42.0306110000001], [26.1489540000001, 42.0369765], [26.128585, 42.0416555] ] ] },
+    "properties": {
+      "ISO": "BG-HKV33",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "77195",
+      "NAME_1": "HKV",
+      "TYPE_1": "Област",
+      "ID_2": "77181",
+      "NAME_2": "Харманли",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.116636, 43.2411964990001], [24.1241640000001, 43.2411010000001], [24.1305380000001, 43.24582], [24.13737, 43.2467625000001], [24.1485880000001, 43.244113], [24.1606650000001, 43.2358675], [24.1924295000001, 43.2395930000001], [24.196243, 43.2335625000001], [24.230394, 43.2260854990001], [24.2303185000001, 43.2299165000001], [24.2334250000001, 43.2299770000001], [24.2548275, 43.2238559990001], [24.2622885000001, 43.228079], [24.2640270000001, 43.2315565010001], [24.2809580000001, 43.2375480000001], [24.2979955000001, 43.2395355], [24.305643, 43.237965], [24.3269725000001, 43.2558920000001], [24.3111685000001, 43.2704785000001], [24.3029755000001, 43.2726855000001], [24.2970955000001, 43.2827070000001], [24.3008385000001, 43.2926650000001], [24.3005755, 43.3005885010001], [24.2917295, 43.3039285], [24.3028355000001, 43.3232905], [24.3141660000001, 43.3300885000001], [24.3116185000001, 43.3323455], [24.3258235000001, 43.3407440010001], [24.3136010000001, 43.351588], [24.308296, 43.3484290000001], [24.2991345, 43.3567015], [24.3008535000001, 43.3637185000001], [24.3011025000001, 43.367065], [24.285581, 43.3728820000001], [24.2763175000001, 43.370479001], [24.2625475, 43.3758749990001], [24.2527335, 43.365625999], [24.2342375000001, 43.3737130000001], [24.2439135000001, 43.38759], [24.24449, 43.3921095000001], [24.2360925, 43.4097345000001], [24.2256595000001, 43.4116625], [24.2321325, 43.417400001], [24.231551, 43.4265310000001], [24.229138, 43.428527], [24.191133, 43.4275960000001], [24.1889185000001, 43.4157605], [24.1846625000001, 43.4124755], [24.1754745000001, 43.417223999], [24.1682030000001, 43.4085025000001], [24.1497785, 43.411610501], [24.1477525, 43.408144], [24.1351815, 43.4051085], [24.1096370000001, 43.4026565], [24.1055725000001, 43.3985025000001], [24.1006155000001, 43.400221], [24.0946145, 43.395447501], [24.0888805000001, 43.3896290000001], [24.091075, 43.3826730000001], [24.0859325000001, 43.3602275000001], [24.063211, 43.3601015], [24.062622, 43.3622695], [24.0413675, 43.3623795], [24.038508, 43.359766], [24.0148875, 43.3597980000001], [24.0127475, 43.3650615000001], [23.999919, 43.366769499], [23.9951165000001, 43.3638155], [23.989155, 43.3620635], [23.9665295, 43.3588405], [23.964145, 43.3556385000001], [23.9654605000001, 43.3455124990001], [23.9573120000001, 43.3412275000001], [23.9672855000001, 43.3152165000001], [23.966843, 43.3052335], [23.9733785, 43.2952995000001], [23.9710985, 43.2904485], [23.9515105, 43.2745], [23.9623605, 43.2658435000001], [23.968487, 43.257484], [23.9608245000001, 43.2489705], [23.9592395, 43.2436765], [23.9665680000001, 43.2402050000001], [23.9561850000001, 43.2283830000001], [23.9627795000001, 43.2266135], [23.9633620000001, 43.2221630000001], [23.9735215000001, 43.225062499], [23.9849815000001, 43.223354], [23.9916555, 43.2233555], [23.99701, 43.2143770000001], [24.0064130000001, 43.2140705], [24.0171175, 43.211828], [24.028557, 43.2061594990001], [24.0483235, 43.2125380000001], [24.0594915, 43.2093375000001], [24.0756815, 43.2017020000001], [24.0772585, 43.2063635000001], [24.072641, 43.2127814990001], [24.052514, 43.2165790000001], [24.0507465000001, 43.2190264990001], [24.0530205000001, 43.223285], [24.0599480000001, 43.2250720000001], [24.0701470000001, 43.2227905], [24.0779365000001, 43.231747], [24.0858105, 43.236143], [24.0924420000001, 43.229835], [24.116636, 43.2411964990001] ] ] },
+    "properties": {
+      "ISO": "BG-PVN37",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "80501",
+      "NAME_2": "Червен бряг",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.9885185000001, 43.3251030000001], [25.0248515000001, 43.3200515], [25.0332280000001, 43.325911999], [25.0330995, 43.3329595000001], [25.021649, 43.3321785000001], [25.0219210000001, 43.3478230000001], [25.0333145000001, 43.3494775], [25.032903, 43.3604510000001], [25.0193180000001, 43.3615355000001], [25.0195305, 43.378202], [24.963756, 43.3788245000001], [24.9638170000001, 43.383674001], [24.9488650000001, 43.383716], [24.9499060000001, 43.385325499], [24.946222, 43.3896270000001], [24.9447715000001, 43.412453], [24.949535, 43.4352880000001], [24.9530375000001, 43.4464425000001], [24.9604405000001, 43.4530235], [24.965069, 43.4644565], [24.948539, 43.469562501], [24.9466605000001, 43.4694955000001], [24.9387295000001, 43.4692630000001], [24.9201915, 43.4528495000001], [24.8957280000001, 43.4513095], [24.8909885, 43.4440545], [24.8883060000001, 43.4370875000001], [24.8778095000001, 43.4330805000001], [24.875523, 43.4327665010001], [24.8746795000001, 43.4359860000001], [24.8446250000001, 43.4290120000001], [24.8403880000001, 43.4218475000001], [24.8403155, 43.417083], [24.83331, 43.413395], [24.8036890000001, 43.4177769990001], [24.7906295, 43.4231960000001], [24.7742295, 43.4215815000001], [24.774193, 43.4182875000001], [24.7605855, 43.417558], [24.7600800000001, 43.4081585010001], [24.7624745000001, 43.408014], [24.7621945000001, 43.4024580000001], [24.7588845000001, 43.3984320000001], [24.7529165, 43.3978450000001], [24.740569, 43.3813975], [24.7433990000001, 43.3814820000001], [24.7418575, 43.3803980000001], [24.7532245, 43.373717501], [24.7757765000001, 43.3670950000001], [24.775629, 43.3637110000001], [24.7854455, 43.3602275000001], [24.8024050000001, 43.364992], [24.8093385, 43.369714], [24.8310785000001, 43.3743964990001], [24.838238, 43.3739590000001], [24.8427435, 43.3711430000001], [24.842112, 43.3683140000001], [24.8482835, 43.3682184990001], [24.843217, 43.359923], [24.8270645000001, 43.3488310000001], [24.8226505000001, 43.3312045000001], [24.813674, 43.3157869990001], [24.833068, 43.3069224990001], [24.8325570000001, 43.3036270000001], [24.886216, 43.3024185], [24.8856165, 43.2976190000001], [24.8995005, 43.2966690000001], [24.9041755000001, 43.289042501], [24.9139945000001, 43.2872075000001], [24.9155105, 43.2905250000001], [24.9348955, 43.2937745], [24.931272, 43.305725], [24.9454265000001, 43.30564], [24.9454205000001, 43.2961290000001], [24.9771565, 43.2967355000001], [24.9793510000001, 43.3178375000001], [24.9885515, 43.318321], [24.9885185000001, 43.3251030000001] ] ] },
+    "properties": {
+      "ISO": "BG-PVN27",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "57772",
+      "NAME_2": "Пордим",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.5240900000001, 43.2931390000001], [24.520926, 43.2947215], [24.513544, 43.2904515000001], [24.505594, 43.2749155000001], [24.4833815000001, 43.272678501], [24.4735945, 43.2665205000001], [24.4750060000001, 43.2645105], [24.4637795, 43.2548190000001], [24.443026, 43.2684859990001], [24.4310980000001, 43.270288], [24.4251320000001, 43.2658785], [24.4102515000001, 43.2646020010001], [24.4038110000001, 43.2671865], [24.4036665, 43.270019], [24.3988825000001, 43.2771225000001], [24.3958729940001, 43.275914168], [24.3921843040001, 43.2741694420001], [24.395952, 43.2717505000001], [24.3952915, 43.2661470000001], [24.3892040000001, 43.2609370000001], [24.3915645000001, 43.2555184990001], [24.3996595, 43.2563600010001], [24.4283155000001, 43.2482785], [24.4282030000001, 43.2293450000001], [24.4432875000001, 43.2198944990001], [24.4610470000001, 43.216415999], [24.4693765000001, 43.2264740000001], [24.476279, 43.2298945000001], [24.481663, 43.2309300000001], [24.4893805, 43.2264495010001], [24.4901595000001, 43.223349], [24.4983685, 43.2235264990001], [24.5286550000001, 43.2112885010001], [24.5353265, 43.2134140000001], [24.5441585, 43.2098715000001], [24.572997, 43.2083520000001], [24.5778555000001, 43.2038810000001], [24.5963855000001, 43.208763], [24.6002340000001, 43.2103905000001], [24.6019965, 43.2145449990001], [24.619243, 43.2170800000001], [24.6203435, 43.2204340000001], [24.6256750000001, 43.2209285000001], [24.6339005, 43.2215654990001], [24.638602, 43.223395], [24.6312510000001, 43.225309], [24.6297530000001, 43.2314390000001], [24.6412125000001, 43.236678], [24.6442035000001, 43.2442275000001], [24.6562605, 43.2515289990001], [24.6531735, 43.2792625000001], [24.653938, 43.279213], [24.6682900000001, 43.2639850000001], [24.6693910000001, 43.2512219990001], [24.6826445, 43.2505785000001], [24.6834325, 43.2528570000001], [24.6877365, 43.2581000000001], [24.6835455, 43.2670625000001], [24.6859175000001, 43.274886501], [24.693972, 43.275744], [24.7065115, 43.2780994990001], [24.7157585, 43.2822755], [24.7294075, 43.28848], [24.7281855000001, 43.2942715], [24.7406310000001, 43.2955995], [24.74213, 43.3057495], [24.7544865, 43.305191], [24.7548035, 43.3131095], [24.8059430000001, 43.3143019990001], [24.8114155000001, 43.3168615000001], [24.813674, 43.3157869990001], [24.8226505000001, 43.3312045000001], [24.8270645000001, 43.3488310000001], [24.843217, 43.359923], [24.8482835, 43.3682184990001], [24.842112, 43.3683140000001], [24.8427435, 43.3711430000001], [24.838238, 43.3739590000001], [24.8310785000001, 43.3743964990001], [24.8093385, 43.369714], [24.8024050000001, 43.364992], [24.7854455, 43.3602275000001], [24.775629, 43.3637110000001], [24.7757765000001, 43.3670950000001], [24.7532245, 43.373717501], [24.7418575, 43.3803980000001], [24.7433990000001, 43.3814820000001], [24.740569, 43.3813975], [24.7529165, 43.3978450000001], [24.7588845000001, 43.3984320000001], [24.7621945000001, 43.4024580000001], [24.7624745000001, 43.408014], [24.7600800000001, 43.4081585010001], [24.7605855, 43.417558], [24.774193, 43.4182875000001], [24.7742295, 43.4215815000001], [24.7906295, 43.4231960000001], [24.8036890000001, 43.4177769990001], [24.83331, 43.413395], [24.8403155, 43.417083], [24.8403880000001, 43.4218475000001], [24.8446250000001, 43.4290120000001], [24.8746795000001, 43.4359860000001], [24.875523, 43.4327665010001], [24.8778095000001, 43.4330805000001], [24.8883060000001, 43.4370875000001], [24.8909885, 43.4440545], [24.8957280000001, 43.4513095], [24.9201915, 43.4528495000001], [24.9387295000001, 43.4692630000001], [24.9466605000001, 43.4694955000001], [24.948539, 43.469562501], [24.9476490000001, 43.4749265], [24.95336, 43.4747149990001], [24.956198, 43.4779140000001], [24.9546655, 43.4811089990001], [24.9513085, 43.4807325], [24.937443, 43.484678], [24.918237, 43.4906715010001], [24.9145590000001, 43.4929055000001], [24.9200115, 43.4987715], [24.9138905, 43.504928001], [24.906778, 43.5068345], [24.9037345, 43.5036465000001], [24.8762555000001, 43.5116600000001], [24.8758685, 43.512138], [24.8594765, 43.51457], [24.8380135, 43.5158440000001], [24.835402, 43.5223425], [24.837501, 43.5289470000001], [24.8409625, 43.5345760010001], [24.8515320000001, 43.54139], [24.846598, 43.547174], [24.832075, 43.5529995], [24.8146465, 43.5544909990001], [24.8169695, 43.5632064990001], [24.8188955000001, 43.5675235], [24.801459, 43.5696265], [24.8009855, 43.563265501], [24.7949795000001, 43.5633935000001], [24.7804435, 43.5664215], [24.7792680000001, 43.5665955000001], [24.7738315, 43.566154], [24.772843, 43.5600655000001], [24.7692915000001, 43.5567195], [24.7530215, 43.554042], [24.7352395, 43.5581310000001], [24.715626, 43.554808], [24.712899, 43.553185], [24.7047085, 43.5439135], [24.6842990000001, 43.531262], [24.68035, 43.53139], [24.6776080000001, 43.5234794990001], [24.6952655000001, 43.5150330000001], [24.7152780000001, 43.5120920000001], [24.7151535, 43.507554], [24.7119665000001, 43.501585999], [24.699534, 43.498076], [24.694283, 43.498431499], [24.6943075, 43.5032015000001], [24.6948665, 43.5075085], [24.6857885000001, 43.507884], [24.6800565, 43.514353], [24.6711470000001, 43.5145825010001], [24.6790785000001, 43.5113044990001], [24.669612, 43.4981795], [24.675438, 43.4958005], [24.6735055, 43.4941744990001], [24.6724100000001, 43.4903495], [24.6498055000001, 43.4910399990001], [24.6503900000001, 43.4858295000001], [24.6442500000001, 43.485862], [24.6263545, 43.4782535000001], [24.6113465, 43.4807450000001], [24.597993, 43.483886], [24.5833870000001, 43.4787655000001], [24.5807455, 43.4755555], [24.5819465000001, 43.4720070000001], [24.5797910000001, 43.4709500000001], [24.559917, 43.4761110000001], [24.5556335000001, 43.4771289990001], [24.5524100000001, 43.476836501], [24.5542925, 43.4701375000001], [24.5506205, 43.4625495000001], [24.546595, 43.4582065000001], [24.536933, 43.4627095010001], [24.5339185, 43.4492115000001], [24.534879, 43.4449615], [24.5298665, 43.4477775], [24.5232075000001, 43.442573], [24.5093745, 43.4399105000001], [24.486526, 43.4457880000001], [24.4789510000001, 43.4462205], [24.4783415000001, 43.4326395000001], [24.4805665000001, 43.432468], [24.4792035, 43.4237105], [24.4822275000001, 43.4236760000001], [24.4809145, 43.4193165], [24.4666725000001, 43.4148934990001], [24.4702875, 43.4083285], [24.4819065, 43.4057775], [24.462995, 43.3862395], [24.4682865, 43.3802675000001], [24.4753585, 43.381969], [24.4744545, 43.372961], [24.490146, 43.3663275000001], [24.4917805000001, 43.3652565], [24.501331, 43.3527725010001], [24.5055275, 43.3492255000001], [24.5094765000001, 43.3476685000001], [24.5231160000001, 43.346326999], [24.5234625000001, 43.3409960000001], [24.5313585000001, 43.3410390000001], [24.5354520000001, 43.3440565000001], [24.5455245000001, 43.3421690000001], [24.537648, 43.3345785000001], [24.5307675, 43.3345195000001], [24.5308030000001, 43.3295049990001], [24.5356295, 43.3280270000001], [24.5357970000001, 43.296701], [24.5275665, 43.2962800010001], [24.5240900000001, 43.2931390000001] ] ] },
+    "properties": {
+      "ISO": "BG-PVN24",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "56722",
+      "NAME_2": "Плевен",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [24.8363165000001, 43.6603155000001], [24.8419510000001, 43.6589915010001], [24.8485900000001, 43.6602035000001], [24.8478450000001, 43.6642619990001], [24.8498725000001, 43.6654465010001], [24.8451817490001, 43.6649142040001], [24.8430025000001, 43.663195], [24.8343495, 43.663685], [24.8363165000001, 43.6603155000001] ] ], [ [ [24.8429965, 43.67632], [24.843825, 43.6836125], [24.8364625, 43.68294], [24.8397790000001, 43.6727119990001], [24.84558, 43.6730475000001], [24.8429965, 43.67632] ] ], [ [ [24.7047995, 43.6937804990001], [24.6739455000001, 43.7120825000001], [24.6709310000001, 43.7141330010001], [24.6692005, 43.7173555000001], [24.641606, 43.733413], [24.6230745, 43.7423875000001], [24.6038705, 43.7476540010001], [24.5980815, 43.7490905010001], [24.5702215000001, 43.754848], [24.512644, 43.7625085000001], [24.5010145000001, 43.7623970000001], [24.4460550000001, 43.7419325000001], [24.444418, 43.7445515000001], [24.4393965, 43.7435425], [24.4416455, 43.7324630000001], [24.4561245, 43.7201045], [24.456222, 43.7041060000001], [24.4510080000001, 43.691654], [24.44899, 43.6896845000001], [24.441289, 43.6936250000001], [24.427622, 43.6802225000001], [24.4282660000001, 43.676339], [24.4234835, 43.6688755000001], [24.429408, 43.6647585000001], [24.4282395000001, 43.6617215000001], [24.4168930000001, 43.6551590010001], [24.4242765000001, 43.654079999], [24.4273995, 43.6538420000001], [24.428859, 43.659188], [24.4358070000001, 43.659003], [24.4441620000001, 43.6578390000001], [24.4483020000001, 43.6472445000001], [24.4803415000001, 43.6417740000001], [24.4832675000001, 43.6391895], [24.4876540000001, 43.634189], [24.4859825, 43.623063001], [24.486813, 43.6149695], [24.5028790000001, 43.610501501], [24.5036715000001, 43.613674001], [24.5163870000001, 43.610336999], [24.5115975, 43.6015570010001], [24.5262345, 43.592609], [24.541326, 43.6058390000001], [24.560644, 43.6162424990001], [24.5974725, 43.6098825], [24.599141, 43.6145020010001], [24.6118195, 43.6122025000001], [24.6179495000001, 43.6174030000001], [24.6219935, 43.6149485], [24.6274765000001, 43.6112389990001], [24.6389520000001, 43.607964499], [24.6537710000001, 43.60382], [24.6571480000001, 43.6001605000001], [24.6480980000001, 43.591775], [24.6493185000001, 43.5837930000001], [24.6542225000001, 43.5791795000001], [24.6598250000001, 43.5783785], [24.660242, 43.5699490000001], [24.65855, 43.5497480000001], [24.6597455, 43.5451810000001], [24.6687630000001, 43.544544], [24.6696375000001, 43.5308370000001], [24.68035, 43.53139], [24.6842990000001, 43.531262], [24.7047085, 43.5439135], [24.712899, 43.553185], [24.715626, 43.554808], [24.7352395, 43.5581310000001], [24.7530215, 43.554042], [24.7692915000001, 43.5567195], [24.772843, 43.5600655000001], [24.7738315, 43.566154], [24.7792680000001, 43.5665955000001], [24.7804435, 43.5664215], [24.7949795000001, 43.5633935000001], [24.7939605, 43.579611501], [24.8172505000001, 43.5938190000001], [24.8137465, 43.597091], [24.804826, 43.5973205000001], [24.8045865, 43.617852], [24.7968725000001, 43.6190025000001], [24.8002030000001, 43.641804], [24.8093690000001, 43.6419500000001], [24.8187435, 43.6428845], [24.8187045, 43.646085], [24.821329, 43.647455], [24.831798, 43.6473520000001], [24.8238465000001, 43.663285], [24.8128170000001, 43.6975640000001], [24.8089595000001, 43.6978085000001], [24.8064590000001, 43.7078025000001], [24.805842, 43.7107360000001], [24.798439, 43.7092650000001], [24.7725475, 43.6945655000001], [24.746456, 43.6861135], [24.7407455000001, 43.6852225000001], [24.7343465000001, 43.6850905000001], [24.7297345000001, 43.685884], [24.7047995, 43.6937804990001] ] ] ] },
+    "properties": {
+      "ISO": "BG-PVN08",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "18099",
+      "NAME_2": "Гулянци",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.4833815000001, 43.272678501], [24.505594, 43.2749155000001], [24.513544, 43.2904515000001], [24.520926, 43.2947215], [24.5240900000001, 43.2931390000001], [24.5275665, 43.2962800010001], [24.5357970000001, 43.296701], [24.5356295, 43.3280270000001], [24.5308030000001, 43.3295049990001], [24.5307675, 43.3345195000001], [24.537648, 43.3345785000001], [24.5455245000001, 43.3421690000001], [24.5354520000001, 43.3440565000001], [24.5313585000001, 43.3410390000001], [24.5234625000001, 43.3409960000001], [24.5231160000001, 43.346326999], [24.5094765000001, 43.3476685000001], [24.5055275, 43.3492255000001], [24.501331, 43.3527725010001], [24.4917805000001, 43.3652565], [24.490146, 43.3663275000001], [24.4744545, 43.372961], [24.4753585, 43.381969], [24.4682865, 43.3802675000001], [24.462995, 43.3862395], [24.4819065, 43.4057775], [24.4702875, 43.4083285], [24.4666725000001, 43.4148934990001], [24.4809145, 43.4193165], [24.4822275000001, 43.4236760000001], [24.4792035, 43.4237105], [24.4805665000001, 43.432468], [24.4783415000001, 43.4326395000001], [24.472046, 43.439914], [24.362128, 43.461107], [24.3632035000001, 43.4546645], [24.3445155000001, 43.453020001], [24.3460485000001, 43.439471499], [24.3437480000001, 43.4148549990001], [24.3385190000001, 43.4165660000001], [24.320862, 43.4033390000001], [24.31285, 43.3914174990001], [24.3043975000001, 43.3858275000001], [24.2972175, 43.3873160000001], [24.292332, 43.383792], [24.287691, 43.3730165000001], [24.285581, 43.3728820000001], [24.3011025000001, 43.367065], [24.3008535000001, 43.3637185000001], [24.2991345, 43.3567015], [24.308296, 43.3484290000001], [24.3136010000001, 43.351588], [24.3258235000001, 43.3407440010001], [24.3116185000001, 43.3323455], [24.3141660000001, 43.3300885000001], [24.3028355000001, 43.3232905], [24.2917295, 43.3039285], [24.3005755, 43.3005885010001], [24.3008385000001, 43.2926650000001], [24.2970955000001, 43.2827070000001], [24.3029755000001, 43.2726855000001], [24.3111685000001, 43.2704785000001], [24.3269725000001, 43.2558920000001], [24.3312635, 43.2612095010001], [24.369937, 43.270723], [24.3761620000001, 43.2769290000001], [24.3864627940001, 43.277347515], [24.3871885, 43.2773769990001], [24.389125413, 43.2761333830001], [24.3913445000001, 43.274096], [24.3921843040001, 43.2741694420001], [24.3958729940001, 43.275914168], [24.3988825000001, 43.2771225000001], [24.4036665, 43.270019], [24.4038110000001, 43.2671865], [24.4102515000001, 43.2646020010001], [24.4251320000001, 43.2658785], [24.4310980000001, 43.270288], [24.443026, 43.2684859990001], [24.4637795, 43.2548190000001], [24.4750060000001, 43.2645105], [24.4735945, 43.2665205000001], [24.4833815000001, 43.272678501] ] ] },
+    "properties": {
+      "ISO": "BG-PVN11",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "22407",
+      "NAME_2": "Долни Дъбник",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.1583625000001, 43.606567], [24.141876, 43.6064070000001], [24.133454, 43.5977485000001], [24.1269140000001, 43.5952495000001], [24.1405530000001, 43.5717675000001], [24.1685245, 43.5543390010001], [24.1686075000001, 43.5418319990001], [24.1583705, 43.5365455], [24.1584355000001, 43.5032330000001], [24.158556, 43.4956785000001], [24.1692370000001, 43.49301], [24.195025, 43.486141], [24.2235425000001, 43.480779], [24.2345135, 43.4812445000001], [24.2439395000001, 43.486769], [24.2467455, 43.4850480000001], [24.247104, 43.4810575000001], [24.2420775000001, 43.4802245000001], [24.234041, 43.472404501], [24.2229295000001, 43.450501], [24.2229305000001, 43.4466905], [24.2354100000001, 43.4317970000001], [24.249734, 43.4262705], [24.249173, 43.4225740000001], [24.2321325, 43.417400001], [24.2256595000001, 43.4116625], [24.2360925, 43.4097345000001], [24.24449, 43.3921095000001], [24.2439135000001, 43.38759], [24.2342375000001, 43.3737130000001], [24.2527335, 43.365625999], [24.2625475, 43.3758749990001], [24.2763175000001, 43.370479001], [24.285581, 43.3728820000001], [24.287691, 43.3730165000001], [24.292332, 43.383792], [24.2972175, 43.3873160000001], [24.3043975000001, 43.3858275000001], [24.31285, 43.3914174990001], [24.320862, 43.4033390000001], [24.3385190000001, 43.4165660000001], [24.3437480000001, 43.4148549990001], [24.3460485000001, 43.439471499], [24.3445155000001, 43.453020001], [24.3632035000001, 43.4546645], [24.362128, 43.461107], [24.3560000000001, 43.497478501], [24.3673745, 43.525649], [24.3655850000001, 43.5258475000001], [24.3582975, 43.526842], [24.3500765000001, 43.545085], [24.3401065, 43.551929999], [24.3257095000001, 43.553295], [24.308658, 43.55715], [24.3122085000001, 43.565113501], [24.3239580000001, 43.564598], [24.3286800000001, 43.568899001], [24.3240895000001, 43.5729515], [24.311924, 43.569487], [24.3029285000001, 43.5736840000001], [24.305029, 43.569536999], [24.304431, 43.5673600000001], [24.2970645, 43.5631670000001], [24.275152, 43.56158], [24.2590490000001, 43.559869], [24.2491445000001, 43.5556625], [24.2350230000001, 43.5556050000001], [24.229182, 43.5513745000001], [24.1984935, 43.5568345], [24.1915165, 43.561039001], [24.1707680000001, 43.5769520000001], [24.1709460000001, 43.591525501], [24.173703, 43.5953140010001], [24.1750095, 43.5968995000001], [24.1659595, 43.600543499], [24.1680855000001, 43.6029340000001], [24.1583625000001, 43.606567] ] ] },
+    "properties": {
+      "ISO": "BG-PVN23",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "55782",
+      "NAME_2": "Искър",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.278481, 43.652316], [24.2761885, 43.6524600000001], [24.2683690000001, 43.640164], [24.261381, 43.641082], [24.2600660000001, 43.636695], [24.2660020000001, 43.6334825000001], [24.223709, 43.6437685000001], [24.2135985, 43.646441999], [24.2067625, 43.646804], [24.1680855000001, 43.6029340000001], [24.1659595, 43.600543499], [24.1750095, 43.5968995000001], [24.173703, 43.5953140010001], [24.1709460000001, 43.591525501], [24.1707680000001, 43.5769520000001], [24.1915165, 43.561039001], [24.1984935, 43.5568345], [24.229182, 43.5513745000001], [24.2350230000001, 43.5556050000001], [24.2491445000001, 43.5556625], [24.2590490000001, 43.559869], [24.275152, 43.56158], [24.2970645, 43.5631670000001], [24.304431, 43.5673600000001], [24.305029, 43.569536999], [24.3029285000001, 43.5736840000001], [24.311924, 43.569487], [24.3240895000001, 43.5729515], [24.3286800000001, 43.568899001], [24.3239580000001, 43.564598], [24.3122085000001, 43.565113501], [24.308658, 43.55715], [24.3257095000001, 43.553295], [24.3401065, 43.551929999], [24.3500765000001, 43.545085], [24.3582975, 43.526842], [24.3655850000001, 43.5258475000001], [24.3673745, 43.525649], [24.3560000000001, 43.497478501], [24.362128, 43.461107], [24.472046, 43.439914], [24.4783415000001, 43.4326395000001], [24.4789510000001, 43.4462205], [24.486526, 43.4457880000001], [24.5093745, 43.4399105000001], [24.5232075000001, 43.442573], [24.5298665, 43.4477775], [24.534879, 43.4449615], [24.5339185, 43.4492115000001], [24.536933, 43.4627095010001], [24.546595, 43.4582065000001], [24.5506205, 43.4625495000001], [24.5542925, 43.4701375000001], [24.5524100000001, 43.476836501], [24.5556335000001, 43.4771289990001], [24.559917, 43.4761110000001], [24.5797910000001, 43.4709500000001], [24.5819465000001, 43.4720070000001], [24.5807455, 43.4755555], [24.5833870000001, 43.4787655000001], [24.597993, 43.483886], [24.6113465, 43.4807450000001], [24.6263545, 43.4782535000001], [24.6442500000001, 43.485862], [24.6503900000001, 43.4858295000001], [24.6498055000001, 43.4910399990001], [24.6724100000001, 43.4903495], [24.6735055, 43.4941744990001], [24.675438, 43.4958005], [24.669612, 43.4981795], [24.6790785000001, 43.5113044990001], [24.6711470000001, 43.5145825010001], [24.6800565, 43.514353], [24.6857885000001, 43.507884], [24.6948665, 43.5075085], [24.6943075, 43.5032015000001], [24.694283, 43.498431499], [24.699534, 43.498076], [24.7119665000001, 43.501585999], [24.7151535, 43.507554], [24.7152780000001, 43.5120920000001], [24.6952655000001, 43.5150330000001], [24.6776080000001, 43.5234794990001], [24.68035, 43.53139], [24.6696375000001, 43.5308370000001], [24.6687630000001, 43.544544], [24.6597455, 43.5451810000001], [24.65855, 43.5497480000001], [24.660242, 43.5699490000001], [24.6598250000001, 43.5783785], [24.6542225000001, 43.5791795000001], [24.6493185000001, 43.5837930000001], [24.6480980000001, 43.591775], [24.6571480000001, 43.6001605000001], [24.6537710000001, 43.60382], [24.6389520000001, 43.607964499], [24.6274765000001, 43.6112389990001], [24.6219935, 43.6149485], [24.6179495000001, 43.6174030000001], [24.6118195, 43.6122025000001], [24.599141, 43.6145020010001], [24.5974725, 43.6098825], [24.560644, 43.6162424990001], [24.541326, 43.6058390000001], [24.5262345, 43.592609], [24.5115975, 43.6015570010001], [24.5163870000001, 43.610336999], [24.5036715000001, 43.613674001], [24.5028790000001, 43.610501501], [24.486813, 43.6149695], [24.4859825, 43.623063001], [24.4876540000001, 43.634189], [24.4832675000001, 43.6391895], [24.4803415000001, 43.6417740000001], [24.4483020000001, 43.6472445000001], [24.4441620000001, 43.6578390000001], [24.4358070000001, 43.659003], [24.428859, 43.659188], [24.4273995, 43.6538420000001], [24.4242765000001, 43.654079999], [24.4168930000001, 43.6551590010001], [24.4282395000001, 43.6617215000001], [24.429408, 43.6647585000001], [24.4234835, 43.6688755000001], [24.4282660000001, 43.676339], [24.427622, 43.6802225000001], [24.441289, 43.6936250000001], [24.44899, 43.6896845000001], [24.4510080000001, 43.691654], [24.456222, 43.7041060000001], [24.4561245, 43.7201045], [24.4416455, 43.7324630000001], [24.4393965, 43.7435425], [24.405971, 43.735643], [24.3944760000001, 43.7251765], [24.3828445, 43.719620999], [24.3792505000001, 43.7158075], [24.381557, 43.7127365000001], [24.3546065, 43.6996090000001], [24.341284, 43.6972265000001], [24.3376660000001, 43.6975165000001], [24.3270945, 43.6993815000001], [24.3241320000001, 43.6995680000001], [24.318477, 43.6865465000001], [24.3133955000001, 43.6607440000001], [24.3017655, 43.6452640000001], [24.278481, 43.652316] ] ] },
+    "properties": {
+      "ISO": "BG-PVN10",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "22215",
+      "NAME_2": "Долна Митрополия",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [24.956865, 43.4961510000001], [24.9253765, 43.5025125000001], [24.918237, 43.4906715010001], [24.937443, 43.484678], [24.956865, 43.4961510000001] ] ], [ [ [25.071356, 43.494443], [25.0748645, 43.5136350000001], [25.0717460000001, 43.514325], [25.0413575000001, 43.5126565], [25.0409775000001, 43.509300501], [25.0245850000001, 43.509961], [25.0225960000001, 43.5080285000001], [25.0129465000001, 43.5064785000001], [25.0082485, 43.5110425], [25.0002385, 43.501403999], [24.99632, 43.4916555], [24.9931540000001, 43.490059], [24.9793485000001, 43.4878205000001], [24.9606030000001, 43.4941444990001], [24.9517450000001, 43.487667], [24.9513085, 43.4807325], [24.9546655, 43.4811089990001], [24.956198, 43.4779140000001], [24.95336, 43.4747149990001], [24.9476490000001, 43.4749265], [24.948539, 43.469562501], [24.965069, 43.4644565], [24.9604405000001, 43.4530235], [24.9530375000001, 43.4464425000001], [24.949535, 43.4352880000001], [24.9447715000001, 43.412453], [24.946222, 43.3896270000001], [24.9499060000001, 43.385325499], [24.9488650000001, 43.383716], [24.9638170000001, 43.383674001], [24.963756, 43.3788245000001], [25.0195305, 43.378202], [25.0280295000001, 43.379848], [25.0527425000001, 43.377713], [25.0496735, 43.3588475000001], [25.0592975000001, 43.3580290000001], [25.0815935000001, 43.3146545000001], [25.0846395, 43.303143], [25.0981395000001, 43.2984530000001], [25.0994665000001, 43.2861005], [25.1183715, 43.2856845000001], [25.1145975000001, 43.2691815000001], [25.1285855, 43.269684], [25.1299285000001, 43.276661001], [25.1387145000001, 43.276958], [25.1401980000001, 43.271245499], [25.14043, 43.2668305], [25.1436645000001, 43.266506], [25.153896, 43.2769645000001], [25.1604335000001, 43.2869505], [25.180749, 43.298188999], [25.1816045, 43.3040735000001], [25.2125905, 43.313727], [25.2287940000001, 43.323651], [25.2330345, 43.3337245000001], [25.2380410000001, 43.341235], [25.2551320000001, 43.345468501], [25.2561220000001, 43.3580055], [25.2380345, 43.3597395000001], [25.2381015, 43.371994999], [25.2215410000001, 43.3723465], [25.2161550000001, 43.376949499], [25.191263, 43.3716734990001], [25.1920425000001, 43.374396], [25.2011900000001, 43.3754045000001], [25.2021395, 43.387598499], [25.201986, 43.390586001], [25.2012520000001, 43.412120499], [25.2126210000001, 43.4122990000001], [25.211956, 43.4276355010001], [25.2024000000001, 43.4333975000001], [25.195526, 43.4379845010001], [25.184427, 43.4369624990001], [25.1764195000001, 43.4361215010001], [25.1770710000001, 43.4327220000001], [25.1448445, 43.4270260000001], [25.135338, 43.4276815000001], [25.132595, 43.4251424990001], [25.128134, 43.4306790000001], [25.1299545, 43.438153001], [25.1260515000001, 43.4520000000001], [25.1296875, 43.458087], [25.1443805000001, 43.4524145], [25.148335, 43.45381], [25.1479820000001, 43.4588699990001], [25.1631540000001, 43.4603035000001], [25.162197, 43.4694430000001], [25.1801775000001, 43.4727325010001], [25.191856, 43.479206999], [25.1919500000001, 43.4983725000001], [25.209436, 43.4982895000001], [25.2095580000001, 43.500569001], [25.209797, 43.5238670000001], [25.2220110000001, 43.5248300000001], [25.2345915000001, 43.5326920000001], [25.2281465, 43.5378595010001], [25.2195725, 43.5451165000001], [25.2128035000001, 43.543257], [25.2057960000001, 43.5497250000001], [25.1980015, 43.5594870000001], [25.1993265, 43.5619590000001], [25.1944955000001, 43.5622735000001], [25.1948810000001, 43.553183], [25.1888030000001, 43.545647], [25.166251, 43.5464245000001], [25.1523925000001, 43.53103], [25.151505, 43.5264240000001], [25.140632, 43.5273780000001], [25.137616, 43.5142685010001], [25.1286925000001, 43.5095690000001], [25.0986155, 43.4954305000001], [25.071356, 43.494443] ] ] ] },
+    "properties": {
+      "ISO": "BG-PVN16",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "43236",
+      "NAME_2": "Левски",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.02018, 43.4090210000001], [24.0175505, 43.4002580000001], [24.0076215, 43.3919735000001], [24.0006035000001, 43.395701], [23.993863, 43.3831385], [23.9951165000001, 43.3638155], [23.999919, 43.366769499], [24.0127475, 43.3650615000001], [24.0148875, 43.3597980000001], [24.038508, 43.359766], [24.0413675, 43.3623795], [24.062622, 43.3622695], [24.063211, 43.3601015], [24.0859325000001, 43.3602275000001], [24.091075, 43.3826730000001], [24.0888805000001, 43.3896290000001], [24.0946145, 43.395447501], [24.1006155000001, 43.400221], [24.1055725000001, 43.3985025000001], [24.1096370000001, 43.4026565], [24.1351815, 43.4051085], [24.1477525, 43.408144], [24.1497785, 43.411610501], [24.1682030000001, 43.4085025000001], [24.1754745000001, 43.417223999], [24.1846625000001, 43.4124755], [24.1889185000001, 43.4157605], [24.191133, 43.4275960000001], [24.229138, 43.428527], [24.231551, 43.4265310000001], [24.2321325, 43.417400001], [24.249173, 43.4225740000001], [24.249734, 43.4262705], [24.2354100000001, 43.4317970000001], [24.2229305000001, 43.4466905], [24.2229295000001, 43.450501], [24.234041, 43.472404501], [24.2420775000001, 43.4802245000001], [24.247104, 43.4810575000001], [24.2467455, 43.4850480000001], [24.2439395000001, 43.486769], [24.2345135, 43.4812445000001], [24.2235425000001, 43.480779], [24.195025, 43.486141], [24.1692370000001, 43.49301], [24.158556, 43.4956785000001], [24.1584355000001, 43.5032330000001], [24.1583705, 43.5365455], [24.1686075000001, 43.5418319990001], [24.1685245, 43.5543390010001], [24.1405530000001, 43.5717675000001], [24.1269140000001, 43.5952495000001], [24.1177035000001, 43.599747], [24.087473, 43.6143720000001], [24.072596, 43.5996240000001], [24.054178, 43.6094135000001], [24.0381335000001, 43.6090130010001], [24.043372, 43.6018349990001], [24.027881, 43.6050290000001], [24.0227735, 43.5929530010001], [24.0018000000001, 43.5417825000001], [23.9929760000001, 43.5440760000001], [23.9868445000001, 43.5316585000001], [23.9970435000001, 43.529116], [24.001271, 43.5246055000001], [24.0130455, 43.4836510000001], [24.0211985, 43.4843525000001], [24.018198, 43.4729285000001], [24.0459500000001, 43.4688115000001], [24.050375, 43.466981], [24.0619875, 43.4607940010001], [24.0595345, 43.4563174990001], [24.0729585, 43.4510935000001], [24.0615235000001, 43.4394990000001], [24.0480775, 43.4213305010001], [24.0378920000001, 43.4184705000001], [24.0282325000001, 43.4137535], [24.0237185, 43.4073475000001], [24.02018, 43.4090210000001] ] ] },
+    "properties": {
+      "ISO": "BG-PVN39",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "37376",
+      "NAME_2": "Кнежа",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.9993045000001, 43.5705115000001], [25.0047940000001, 43.5722525], [24.998723, 43.5811975], [25.0332845, 43.6027665], [25.0312445000001, 43.6071095], [25.0672870000001, 43.6220480000001], [25.073135, 43.628623501], [25.0718800000001, 43.631334], [25.0613645, 43.6317365000001], [25.054898, 43.6319915], [25.0554475000001, 43.625631], [25.0480375000001, 43.621922], [25.006647, 43.6236815], [25.0049220000001, 43.6274690000001], [24.9877110000001, 43.6273790010001], [24.9928855000001, 43.6326584990001], [24.9918825, 43.6348560000001], [24.9806520000001, 43.6398285000001], [24.9724790000001, 43.6403135], [24.982789, 43.6539080000001], [24.972317, 43.6621005000001], [24.9917485, 43.6617205000001], [25.0081995, 43.6698435010001], [25.0096340000001, 43.6682455000001], [25.012325, 43.6676715], [25.0174210000001, 43.6710295010001], [25.0386905, 43.664387], [25.0297025, 43.6752825], [25.0360445000001, 43.688162], [25.0440945, 43.6969815], [25.0155105000001, 43.7137905000001], [25.0103375000001, 43.7222625000001], [25.0054930000001, 43.7251120000001], [24.9721895000001, 43.7280265000001], [24.9653990000001, 43.7291065000001], [24.951356, 43.7294840000001], [24.9330665000001, 43.723302], [24.9329285000001, 43.7159535000001], [24.862061, 43.7060900000001], [24.8305730000001, 43.7132574990001], [24.8094535000001, 43.711216999], [24.805842, 43.7107360000001], [24.8064590000001, 43.7078025000001], [24.8089595000001, 43.6978085000001], [24.8128170000001, 43.6975640000001], [24.8238465000001, 43.663285], [24.831798, 43.6473520000001], [24.821329, 43.647455], [24.8187045, 43.646085], [24.8187435, 43.6428845], [24.8093690000001, 43.6419500000001], [24.8002030000001, 43.641804], [24.7968725000001, 43.6190025000001], [24.8045865, 43.617852], [24.804826, 43.5973205000001], [24.8137465, 43.597091], [24.8172505000001, 43.5938190000001], [24.7939605, 43.579611501], [24.7949795000001, 43.5633935000001], [24.8009855, 43.563265501], [24.801459, 43.5696265], [24.8188955000001, 43.5675235], [24.8169695, 43.5632064990001], [24.8146465, 43.5544909990001], [24.832075, 43.5529995], [24.846598, 43.547174], [24.8515320000001, 43.54139], [24.8409625, 43.5345760010001], [24.837501, 43.5289470000001], [24.835402, 43.5223425], [24.8380135, 43.5158440000001], [24.8594765, 43.51457], [24.8758685, 43.512138], [24.8762555000001, 43.5116600000001], [24.9037345, 43.5036465000001], [24.906778, 43.5068345], [24.9138905, 43.504928001], [24.9200115, 43.4987715], [24.9145590000001, 43.4929055000001], [24.918237, 43.4906715010001], [24.9253765, 43.5025125000001], [24.956865, 43.4961510000001], [24.937443, 43.484678], [24.9513085, 43.4807325], [24.9517450000001, 43.487667], [24.9606030000001, 43.4941444990001], [24.9793485000001, 43.4878205000001], [24.9931540000001, 43.490059], [24.99632, 43.4916555], [25.0002385, 43.501403999], [25.0082485, 43.5110425], [25.0129465000001, 43.5064785000001], [25.0225960000001, 43.5080285000001], [25.0245850000001, 43.509961], [25.0409775000001, 43.509300501], [25.0413575000001, 43.5126565], [25.0717460000001, 43.514325], [25.0772305, 43.5360955], [25.088557, 43.5371049990001], [25.1002365000001, 43.5443935000001], [25.1043740000001, 43.5529010000001], [25.102493, 43.5561920010001], [25.1135420000001, 43.5537615000001], [25.117643, 43.552628999], [25.1208510000001, 43.5591485], [25.111118, 43.561275999], [25.080471, 43.5694089990001], [25.0757205, 43.5687325010001], [25.0694995000001, 43.5701675], [25.0679415000001, 43.5650165000001], [25.062483, 43.5626565000001], [25.0426170000001, 43.560147], [25.0270635000001, 43.5610945000001], [25.0070185000001, 43.5688489990001], [24.999067, 43.5687585000001], [24.9993045000001, 43.5705115000001] ], [ [24.8363165000001, 43.6603155000001], [24.8419510000001, 43.6589915010001], [24.8485900000001, 43.6602035000001], [24.8478450000001, 43.6642619990001], [24.8498725000001, 43.6654465010001], [24.8451817490001, 43.6649142040001], [24.8430025000001, 43.663195], [24.8343495, 43.663685], [24.8363165000001, 43.6603155000001] ], [ [24.84558, 43.6730475000001], [24.8429965, 43.67632], [24.843825, 43.6836125], [24.8364625, 43.68294], [24.8397790000001, 43.6727119990001], [24.84558, 43.6730475000001] ] ] },
+    "properties": {
+      "ISO": "BG-PVN21",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "51723",
+      "NAME_2": "Никопол",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.186161, 43.6963035000001], [25.167315, 43.6974875000001], [25.137276, 43.6927280000001], [25.1112410000001, 43.6838710000001], [25.0583120000001, 43.6910665], [25.0440945, 43.6969815], [25.0360445000001, 43.688162], [25.0297025, 43.6752825], [25.0386905, 43.664387], [25.0174210000001, 43.6710295010001], [25.012325, 43.6676715], [25.0096340000001, 43.6682455000001], [25.0081995, 43.6698435010001], [24.9917485, 43.6617205000001], [24.972317, 43.6621005000001], [24.982789, 43.6539080000001], [24.9724790000001, 43.6403135], [24.9806520000001, 43.6398285000001], [24.9918825, 43.6348560000001], [24.9928855000001, 43.6326584990001], [24.9877110000001, 43.6273790010001], [25.0049220000001, 43.6274690000001], [25.006647, 43.6236815], [25.0480375000001, 43.621922], [25.0554475000001, 43.625631], [25.054898, 43.6319915], [25.0613645, 43.6317365000001], [25.0718800000001, 43.631334], [25.073135, 43.628623501], [25.0672870000001, 43.6220480000001], [25.0312445000001, 43.6071095], [25.0332845, 43.6027665], [24.998723, 43.5811975], [25.0047940000001, 43.5722525], [24.9993045000001, 43.5705115000001], [24.999067, 43.5687585000001], [25.0070185000001, 43.5688489990001], [25.0270635000001, 43.5610945000001], [25.0426170000001, 43.560147], [25.062483, 43.5626565000001], [25.0679415000001, 43.5650165000001], [25.0694995000001, 43.5701675], [25.0757205, 43.5687325010001], [25.080471, 43.5694089990001], [25.111118, 43.561275999], [25.1208510000001, 43.5591485], [25.117643, 43.552628999], [25.1135420000001, 43.5537615000001], [25.102493, 43.5561920010001], [25.1043740000001, 43.5529010000001], [25.1002365000001, 43.5443935000001], [25.088557, 43.5371049990001], [25.0772305, 43.5360955], [25.0717460000001, 43.514325], [25.0748645, 43.5136350000001], [25.071356, 43.494443], [25.0986155, 43.4954305000001], [25.1286925000001, 43.5095690000001], [25.137616, 43.5142685010001], [25.140632, 43.5273780000001], [25.151505, 43.5264240000001], [25.1523925000001, 43.53103], [25.166251, 43.5464245000001], [25.1888030000001, 43.545647], [25.1948810000001, 43.553183], [25.1944955000001, 43.5622735000001], [25.1993265, 43.5619590000001], [25.1966495, 43.5688295], [25.2008905000001, 43.5763955], [25.202528, 43.5809085000001], [25.201517, 43.587910999], [25.1742765000001, 43.6009135], [25.1733625, 43.6052385], [25.1796905000001, 43.6059989990001], [25.1894735000001, 43.6059490000001], [25.1886845000001, 43.6022990000001], [25.1950955, 43.6015380000001], [25.2144650000001, 43.615981], [25.2195800000001, 43.614604], [25.2200115000001, 43.6149315000001], [25.2140085, 43.636264], [25.208019, 43.6345630000001], [25.2042040000001, 43.6376325000001], [25.2235435000001, 43.643856499], [25.2337855000001, 43.6511214990001], [25.2593305, 43.6501725000001], [25.2860895000001, 43.6532550000001], [25.287432, 43.655672], [25.2937405000001, 43.654294], [25.2678, 43.6742155000001], [25.2522565, 43.6826765000001], [25.2224350000001, 43.6879975000001], [25.1893830000001, 43.6953445], [25.186161, 43.6963035000001] ] ] },
+    "properties": {
+      "ISO": "BG-PVN03",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56722",
+      "NAME_1": "PVN",
+      "TYPE_1": "Област",
+      "ID_2": "3366",
+      "NAME_2": "Белене",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.650071, 43.1710410000001], [27.6505565000001, 43.1699310000001], [27.658964, 43.1700405], [27.6591750000001, 43.1609930000001], [27.665829, 43.1561740000001], [27.6966155000001, 43.1507585000001], [27.7009805000001, 43.1493765000001], [27.699646, 43.1456885000001], [27.713013, 43.1440165000001], [27.7179535000001, 43.1436840000001], [27.7208785, 43.1574790000001], [27.7253700000001, 43.1602015], [27.7364935000001, 43.1502025], [27.743459, 43.1738895], [27.739378, 43.1868785], [27.742574, 43.191743], [27.746633, 43.191266], [27.7939925000001, 43.1898355000001], [27.794365, 43.2021195], [27.7929290000001, 43.205249501], [27.788711, 43.2054365000001], [27.7859945000001, 43.2161165000001], [27.7724795, 43.2168795000001], [27.7485820000001, 43.2090965], [27.7431990000001, 43.2097170010001], [27.7399070000001, 43.2159110000001], [27.726844, 43.2157695000001], [27.7267025, 43.2176935000001], [27.725375, 43.220736], [27.714613, 43.2206100000001], [27.710157, 43.2163560000001], [27.7040585, 43.2121029990001], [27.7023485, 43.2073365000001], [27.6929480000001, 43.2045935], [27.6919380000001, 43.1984895000001], [27.674379, 43.1966945], [27.662115, 43.191530001], [27.6438355, 43.187893], [27.6286490000001, 43.1874955010001], [27.6273160000001, 43.1789935], [27.6249510000001, 43.1794295], [27.6224235, 43.1580480000001], [27.6268125, 43.159609], [27.6252965, 43.1539080000001], [27.6117985000001, 43.1497805000001], [27.6169045, 43.1436475], [27.6211960000001, 43.1439980000001], [27.6347975, 43.1573045010001], [27.6478440000001, 43.1603515], [27.6403395, 43.168417], [27.650071, 43.1710410000001] ] ] },
+    "properties": {
+      "ISO": "BG-VAR04",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "3719",
+      "NAME_2": "Белослав",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.7949835000001, 43.019348], [27.8205075000001, 43.020906], [27.8452275000001, 43.0096050000001], [27.8553195000001, 43.0120515], [27.86805, 43.022774999], [27.8780135000001, 43.0219735000001], [27.8895855000001, 43.0228690000001], [27.8900185, 43.042133], [27.8976460000001, 43.0472525000001], [27.90642, 43.0554655], [27.9127085000001, 43.0619085000001], [27.9237365000001, 43.1063500000001], [27.8998, 43.100265], [27.8837285000001, 43.105937], [27.8745315, 43.1110275], [27.8686755, 43.1207975], [27.8630900000001, 43.1303490000001], [27.8498965000001, 43.1351395], [27.849005, 43.1399050000001], [27.8353905000001, 43.139753], [27.8187395, 43.1385455000001], [27.813233, 43.1301425], [27.7984155, 43.1286890000001], [27.791497, 43.1260220010001], [27.7826935000001, 43.1337055000001], [27.778151, 43.1444114990001], [27.7761525, 43.144461], [27.760382, 43.1511090010001], [27.7454730000001, 43.146470499], [27.7398395000001, 43.1507799990001], [27.7364935000001, 43.1502025], [27.7253700000001, 43.1602015], [27.7208785, 43.1574790000001], [27.7179535000001, 43.1436840000001], [27.713013, 43.1440165000001], [27.699646, 43.1456885000001], [27.7009805000001, 43.1493765000001], [27.6966155000001, 43.1507585000001], [27.665829, 43.1561740000001], [27.6591750000001, 43.1609930000001], [27.658964, 43.1700405], [27.6505565000001, 43.1699310000001], [27.650071, 43.1710410000001], [27.6403395, 43.168417], [27.6478440000001, 43.1603515], [27.6347975, 43.1573045010001], [27.6211960000001, 43.1439980000001], [27.6169045, 43.1436475], [27.6117985000001, 43.1497805000001], [27.6252965, 43.1539080000001], [27.6268125, 43.159609], [27.6224235, 43.1580480000001], [27.6249510000001, 43.1794295], [27.622401, 43.1791465000001], [27.60779, 43.1681760000001], [27.5974575000001, 43.1634490000001], [27.586032, 43.154503], [27.5736395000001, 43.1393295], [27.5655770000001, 43.133742], [27.573789, 43.1210175000001], [27.5690865, 43.120532499], [27.554587, 43.1170240000001], [27.547, 43.1093660000001], [27.539135, 43.1045090010001], [27.5329955, 43.1066675000001], [27.5278870000001, 43.0942915], [27.536254, 43.0913170000001], [27.5455055000001, 43.0869555], [27.5469155000001, 43.0813655000001], [27.5665865, 43.0734985], [27.5609160000001, 43.0705409990001], [27.5531445, 43.0581705000001], [27.5530425000001, 43.053484], [27.5662035, 43.0510780000001], [27.5699865, 43.0511905000001], [27.5788075, 43.0432755000001], [27.5844960000001, 43.027384], [27.6045110000001, 43.0272485], [27.6103885000001, 43.0364205000001], [27.6162845000001, 43.040986], [27.624625, 43.0423635000001], [27.6484390000001, 43.040178], [27.6473115000001, 43.0636015000001], [27.649666, 43.0661685000001], [27.659948, 43.073949], [27.6762975, 43.072867], [27.6773335, 43.0730995000001], [27.687572, 43.070098], [27.688773, 43.0600910000001], [27.7053605, 43.0452760000001], [27.7066510000001, 43.0389105], [27.7230455000001, 43.0380195000001], [27.7258625000001, 43.0287045000001], [27.734203, 43.0256660000001], [27.7337650000001, 43.02077], [27.7546285, 43.015763001], [27.7897860000001, 43.0200374990001], [27.7949835000001, 43.019348] ] ] },
+    "properties": {
+      "ISO": "BG-VAR01",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "84",
+      "NAME_2": "Аврен",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.4023145, 43.071316999], [27.4090210000001, 43.090469], [27.408918, 43.093689], [27.4040420000001, 43.0956330000001], [27.382913, 43.0988394990001], [27.3576865000001, 43.0977370000001], [27.3613815000001, 43.094137], [27.350741, 43.0966240000001], [27.343808, 43.0927055000001], [27.3398245000001, 43.0944955000001], [27.3342415000001, 43.0899150000001], [27.332548, 43.081875999], [27.321586, 43.0721550010001], [27.3022475000001, 43.069961], [27.3004980000001, 43.066828], [27.2819425000001, 43.0726450000001], [27.2608940000001, 43.0790115], [27.2605435, 43.0796790000001], [27.247663, 43.0764925], [27.2400670000001, 43.0782740000001], [27.234115, 43.0748960000001], [27.2326535, 43.080725], [27.233904, 43.0851665000001], [27.2139270000001, 43.0742015000001], [27.2081905000001, 43.0638075], [27.2180890000001, 43.0574800000001], [27.2170185000001, 43.0536645010001], [27.2126730000001, 43.048657001], [27.2248960000001, 43.042082001], [27.233102, 43.040958], [27.2329835, 43.0401255], [27.223488, 43.041657], [27.2175455, 43.042375501], [27.1894415, 43.0376890000001], [27.1835865, 43.0398775], [27.182511, 43.0432155], [27.182718, 43.0456960000001], [27.1746025, 43.0404770000001], [27.172668, 43.0330825], [27.1760185000001, 43.031731], [27.174109, 43.029703], [27.1537080000001, 43.0307770000001], [27.1423520000001, 43.0326285], [27.1290475000001, 43.0330405], [27.1139620000001, 43.032422], [27.0850455, 43.0195385000001], [27.0722680000001, 43.0134820000001], [27.070771, 43.0067065000001], [27.0676330000001, 43.0011660000001], [27.0657440000001, 42.9842600000001], [27.0669625, 42.9811885], [27.0718620010001, 42.971888], [27.0932300000001, 42.9647000000001], [27.0944335, 42.9539105000001], [27.104806426, 42.954410625], [27.1047675, 42.9545410000001], [27.109667501, 42.954645], [27.1266590000001, 42.953497], [27.1346475, 42.9570900000001], [27.146145001, 42.9581615000001], [27.15576, 42.9678465000001], [27.1731815000001, 42.976507], [27.198318, 42.9812210000001], [27.2079905, 42.9847070000001], [27.221442, 42.9840555000001], [27.2406350000001, 42.9827475000001], [27.2469850000001, 42.9822385000001], [27.2707655, 42.979505499], [27.2710690000001, 42.9756370000001], [27.2878565, 42.968798], [27.2874780000001, 42.9642870000001], [27.301633, 42.9667535], [27.3234175000001, 42.9634025], [27.326058, 42.955992999], [27.3135865, 42.9441814990001], [27.312422, 42.9359405000001], [27.330568, 42.938032999], [27.3391150000001, 42.9341945], [27.345893, 42.927177], [27.3487645000001, 42.9263535000001], [27.3602095000001, 42.9190055], [27.3620215, 42.9104], [27.372717, 42.910877], [27.3771380000001, 42.9087615], [27.4040745, 42.9044215000001], [27.4277220000001, 42.9082955000001], [27.4619645000001, 42.9063075], [27.4855435000001, 42.9118790000001], [27.4988270000001, 42.9120335000001], [27.5198985000001, 42.9198955000001], [27.519704, 42.924647], [27.507263, 42.929538499], [27.4993420000001, 42.9386370010001], [27.5034455000001, 42.946242001], [27.4936215000001, 42.953493], [27.5034150000001, 42.965341999], [27.49944, 42.9710955], [27.5062045, 42.9762840000001], [27.5128480000001, 42.9866915000001], [27.4898425000001, 42.9877785], [27.4843250000001, 43.0142490000001], [27.501377, 43.0331185000001], [27.5063275000001, 43.0338440000001], [27.475532, 43.0419140010001], [27.4791255000001, 43.0589680000001], [27.473443, 43.0590635], [27.4741720000001, 43.0632750010001], [27.4651715000001, 43.0697235000001], [27.4638850000001, 43.0701335000001], [27.4615545, 43.0647945000001], [27.452598, 43.0648029990001], [27.4415025000001, 43.0556435], [27.4384965, 43.0601035], [27.4303800000001, 43.0607555010001], [27.4262645000001, 43.0567050010001], [27.418683, 43.055617], [27.4088830000001, 43.0599295000001], [27.4023145, 43.071316999] ] ] },
+    "properties": {
+      "ISO": "BG-VAR16",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "24565",
+      "NAME_2": "Дългопол",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.4696805, 43.2759555000001], [27.470419, 43.278262], [27.449444, 43.2755955000001], [27.4439525, 43.2772465], [27.4377260000001, 43.2787745000001], [27.4198440000001, 43.275883499], [27.4044670000001, 43.275466], [27.3674685, 43.257541001], [27.360534, 43.2585990000001], [27.3557705000001, 43.257434], [27.33851, 43.2516155000001], [27.3386580000001, 43.248882], [27.334008, 43.2440825000001], [27.3294325000001, 43.243857501], [27.3226595, 43.2456144990001], [27.3176490000001, 43.2405905000001], [27.3114600000001, 43.240639], [27.2990295000001, 43.2451295010001], [27.2785900000001, 43.2464195000001], [27.275247, 43.2460310000001], [27.2773475000001, 43.235184501], [27.2730685000001, 43.2243845], [27.2816950000001, 43.20802], [27.2833400000001, 43.1953555000001], [27.2939845000001, 43.1897500000001], [27.2954145, 43.1797510000001], [27.2843985000001, 43.1780635000001], [27.2731250000001, 43.182827], [27.2666525000001, 43.181707999], [27.258545, 43.182465], [27.258523, 43.1783275000001], [27.250501, 43.1717130010001], [27.2298455000001, 43.1620045000001], [27.18512, 43.174994], [27.1837075, 43.1684405], [27.1804385, 43.16592], [27.2046335000001, 43.1611655], [27.211804, 43.1538570000001], [27.1963470000001, 43.1516030000001], [27.1812775000001, 43.137058], [27.1656185000001, 43.118477999], [27.1613925, 43.1070340000001], [27.1630415000001, 43.1027995010001], [27.1755045, 43.097378], [27.1814015, 43.0891070000001], [27.1819370000001, 43.0835365], [27.166102, 43.0767935000001], [27.183387, 43.0715935000001], [27.192457, 43.0778100000001], [27.2139270000001, 43.0742015000001], [27.233904, 43.0851665000001], [27.2326535, 43.080725], [27.234115, 43.0748960000001], [27.2400670000001, 43.0782740000001], [27.247663, 43.0764925], [27.2605435, 43.0796790000001], [27.2608940000001, 43.0790115], [27.2819425000001, 43.0726450000001], [27.3004980000001, 43.066828], [27.3022475000001, 43.069961], [27.321586, 43.0721550010001], [27.332548, 43.081875999], [27.3342415000001, 43.0899150000001], [27.3398245000001, 43.0944955000001], [27.343808, 43.0927055000001], [27.350741, 43.0966240000001], [27.3613815000001, 43.094137], [27.3576865000001, 43.0977370000001], [27.382913, 43.0988394990001], [27.4040420000001, 43.0956330000001], [27.408918, 43.093689], [27.4090210000001, 43.090469], [27.4023145, 43.071316999], [27.4088830000001, 43.0599295000001], [27.418683, 43.055617], [27.4262645000001, 43.0567050010001], [27.4303800000001, 43.0607555010001], [27.4384965, 43.0601035], [27.4415025000001, 43.0556435], [27.452598, 43.0648029990001], [27.4615545, 43.0647945000001], [27.4638850000001, 43.0701335000001], [27.4651715000001, 43.0697235000001], [27.4741720000001, 43.0632750010001], [27.473443, 43.0590635], [27.4791255000001, 43.0589680000001], [27.4889795, 43.0578860000001], [27.4940095000001, 43.0569325010001], [27.505727, 43.0684845010001], [27.5353155, 43.0623885], [27.5531445, 43.0581705000001], [27.5609160000001, 43.0705409990001], [27.5665865, 43.0734985], [27.5469155000001, 43.0813655000001], [27.5455055000001, 43.0869555], [27.536254, 43.0913170000001], [27.5278870000001, 43.0942915], [27.5329955, 43.1066675000001], [27.539135, 43.1045090010001], [27.547, 43.1093660000001], [27.554587, 43.1170240000001], [27.5690865, 43.120532499], [27.573789, 43.1210175000001], [27.5655770000001, 43.133742], [27.5458095000001, 43.1498485000001], [27.5392325, 43.1511], [27.5391310000001, 43.1561790000001], [27.5400565, 43.1579125000001], [27.5510435000001, 43.1723805], [27.5533675, 43.172491], [27.5560685, 43.1958405010001], [27.5540965000001, 43.1990065000001], [27.5439315, 43.2005275000001], [27.524864, 43.2122370000001], [27.520877, 43.2140830000001], [27.5138445000001, 43.2058395], [27.5068035, 43.2051685000001], [27.5000415000001, 43.2140635000001], [27.5058295000001, 43.2189050000001], [27.5081565, 43.2179090000001], [27.5113620000001, 43.2247425], [27.5116170000001, 43.2320760000001], [27.5056065000001, 43.2330210000001], [27.5076095000001, 43.2468420000001], [27.4952710000001, 43.2399340000001], [27.489515, 43.240462001], [27.4892755000001, 43.2436815], [27.4838745000001, 43.2496475], [27.4745330000001, 43.255639], [27.4714700000001, 43.2616485], [27.470758, 43.2724925000001], [27.4696805, 43.2759555000001] ] ] },
+    "properties": {
+      "ISO": "BG-VAR24",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "58503",
+      "NAME_2": "Провадия",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.6481935, 43.265168999], [27.6461125000001, 43.2600210000001], [27.6501135, 43.2537265], [27.6475115000001, 43.237623], [27.6634470000001, 43.235802999], [27.6753535, 43.2423735], [27.6900855000001, 43.2597955000001], [27.6949485000001, 43.2686855000001], [27.6947755, 43.27182], [27.6972125, 43.2713055], [27.7005785000001, 43.269056], [27.7137025000001, 43.261965], [27.7236970000001, 43.2605740000001], [27.7518575, 43.265381], [27.748752, 43.2780350000001], [27.744871, 43.2814595], [27.7433130000001, 43.2887635000001], [27.7415805000001, 43.297464], [27.7347545000001, 43.295005001], [27.7349825000001, 43.3068175000001], [27.7317360000001, 43.313479], [27.7302310000001, 43.3150150000001], [27.7189320000001, 43.327769501], [27.709209, 43.328109], [27.7085690000001, 43.329954501], [27.70791, 43.3388595000001], [27.7254755000001, 43.3400820000001], [27.7250235000001, 43.3460009990001], [27.7178825, 43.3550685010001], [27.7107500000001, 43.382847], [27.704464, 43.3860285000001], [27.697532, 43.382829499], [27.672534, 43.3855005], [27.6701325000001, 43.387887], [27.6746915000001, 43.3884365000001], [27.6691055000001, 43.3970819990001], [27.6677, 43.3958655000001], [27.6657365, 43.400285001], [27.6537910000001, 43.3845284990001], [27.637238, 43.3800565000001], [27.6362465, 43.3834435000001], [27.6224285000001, 43.3790530000001], [27.620281, 43.3829945000001], [27.6073335, 43.379283], [27.5916525000001, 43.386177], [27.5800095000001, 43.3971094990001], [27.5699495000001, 43.3939319990001], [27.5723630000001, 43.3909310000001], [27.5655885, 43.3856650000001], [27.5730945, 43.3803380000001], [27.5624475000001, 43.3766805000001], [27.5555105, 43.3669220000001], [27.5402790000001, 43.3473290000001], [27.5218165000001, 43.344322], [27.5215165000001, 43.333554], [27.5146115000001, 43.3250625000001], [27.5108300000001, 43.3243635000001], [27.517477, 43.3108310000001], [27.5222595000001, 43.3120385], [27.5294670000001, 43.3049505000001], [27.5452145, 43.281284], [27.5487185000001, 43.2815645000001], [27.5522105000001, 43.274844], [27.5506380000001, 43.2747840000001], [27.5568280000001, 43.264169001], [27.563859, 43.2658275000001], [27.567461, 43.2567285000001], [27.5744875, 43.2512725], [27.5771760000001, 43.2537805000001], [27.5856400000001, 43.2534130000001], [27.5918825000001, 43.2485050000001], [27.590196, 43.2466000000001], [27.596545, 43.2460405], [27.6065300000001, 43.250958499], [27.6044905000001, 43.2558725000001], [27.6050225000001, 43.2630600000001], [27.6317700000001, 43.2754265], [27.638476, 43.2744985], [27.6481935, 43.265168999] ] ] },
+    "properties": {
+      "ISO": "BG-VAR26",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "70175",
+      "NAME_2": "Суворово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.3874275000001, 43.4221010000001], [27.3813385, 43.429357], [27.3669045, 43.4298945], [27.3625515000001, 43.4344060000001], [27.3682185000001, 43.435599], [27.363346, 43.4405040010001], [27.3635595000001, 43.443614], [27.345133, 43.4400605000001], [27.324502, 43.434223], [27.335836, 43.4261540000001], [27.31406, 43.4234785], [27.3155180000001, 43.4204040000001], [27.3263125, 43.4218865], [27.3269340000001, 43.4144020000001], [27.324437, 43.4141885000001], [27.309218, 43.4135465000001], [27.3055705, 43.4092745], [27.301361, 43.4092135000001], [27.3019805000001, 43.3994645000001], [27.2835675000001, 43.3986475], [27.2820750000001, 43.396778], [27.2829005, 43.3876815], [27.2715675000001, 43.3812080000001], [27.2691595000001, 43.3757390000001], [27.2797415000001, 43.3755875000001], [27.2817555, 43.3731645], [27.2807930000001, 43.3582200000001], [27.2865545000001, 43.3539465000001], [27.292135, 43.343874], [27.293029, 43.343192], [27.2962840000001, 43.3391315000001], [27.306253, 43.335044], [27.3094390000001, 43.3290565], [27.3087850000001, 43.3268429990001], [27.2939715000001, 43.3280930000001], [27.2938730000001, 43.307625999], [27.2992955, 43.3074545000001], [27.2964515, 43.3033105000001], [27.2668295, 43.297828001], [27.2620785, 43.2917380010001], [27.2528760000001, 43.2926325], [27.2514735, 43.285296499], [27.244041, 43.2862450000001], [27.2405820000001, 43.280016501], [27.2402555, 43.270139], [27.2411245000001, 43.265608], [27.256293, 43.262549], [27.259829, 43.2478365010001], [27.275247, 43.2460310000001], [27.2785900000001, 43.2464195000001], [27.2990295000001, 43.2451295010001], [27.3114600000001, 43.240639], [27.3176490000001, 43.2405905000001], [27.3226595, 43.2456144990001], [27.3294325000001, 43.243857501], [27.334008, 43.2440825000001], [27.3386580000001, 43.248882], [27.33851, 43.2516155000001], [27.3557705000001, 43.257434], [27.360534, 43.2585990000001], [27.3674685, 43.257541001], [27.4044670000001, 43.275466], [27.4198440000001, 43.275883499], [27.4377260000001, 43.2787745000001], [27.4439525, 43.2772465], [27.449444, 43.2755955000001], [27.470419, 43.278262], [27.4696805, 43.2759555000001], [27.470758, 43.2724925000001], [27.4714700000001, 43.2616485], [27.4745330000001, 43.255639], [27.4838745000001, 43.2496475], [27.4892755000001, 43.2436815], [27.489515, 43.240462001], [27.4952710000001, 43.2399340000001], [27.5076095000001, 43.2468420000001], [27.5098845000001, 43.2487830000001], [27.514707, 43.2514985010001], [27.5241720000001, 43.2552870000001], [27.5353365, 43.259309999], [27.5443760000001, 43.2638915000001], [27.5506380000001, 43.2747840000001], [27.5522105000001, 43.274844], [27.5487185000001, 43.2815645000001], [27.5452145, 43.281284], [27.5294670000001, 43.3049505000001], [27.5222595000001, 43.3120385], [27.517477, 43.3108310000001], [27.5108300000001, 43.3243635000001], [27.5022685000001, 43.3247630000001], [27.4871125, 43.3248005], [27.4737275000001, 43.3441665], [27.4780375, 43.3461385000001], [27.475645, 43.354626001], [27.4732355, 43.3588415], [27.4507865, 43.351841], [27.4487330000001, 43.3530875000001], [27.4473540000001, 43.3547360000001], [27.4404050000001, 43.3654060000001], [27.4328145000001, 43.3635845000001], [27.424137, 43.3740175], [27.4128135, 43.3751710000001], [27.4006705000001, 43.3815984990001], [27.4015650000001, 43.4010355010001], [27.4070600000001, 43.407612], [27.4066975000001, 43.4160010000001], [27.3950235, 43.4208825000001], [27.3874275000001, 43.4221010000001] ] ] },
+    "properties": {
+      "ISO": "BG-VAR08",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "10865",
+      "NAME_2": "Ветрино",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.8315685000001, 42.9401635], [27.8259775000001, 42.9399655], [27.784883, 42.9275890000001], [27.7844155, 42.9272455], [27.7825960000001, 42.9248355], [27.7836985000001, 42.9174615000001], [27.7727990000001, 42.9113085000001], [27.7316445000001, 42.902457], [27.71876, 42.9062980000001], [27.7076745000001, 42.9111265000001], [27.7051210000001, 42.9124340000001], [27.691563, 42.9020350000001], [27.688636, 42.896667501], [27.688813, 42.8905070000001], [27.6995405000001, 42.8824814990001], [27.703357, 42.875929], [27.7007370000001, 42.8686825], [27.717566, 42.8603025], [27.7195585000001, 42.855801], [27.725103, 42.8545770000001], [27.7673955000001, 42.8384295000001], [27.7833910000001, 42.832184], [27.7987645000001, 42.8274765], [27.806313, 42.8294540000001], [27.828447, 42.826401], [27.8282560000001, 42.829329], [27.8448365, 42.8353450000001], [27.8654965000001, 42.8375860000001], [27.8700535, 42.8362545000001], [27.874112, 42.8415415000001], [27.8796145000001, 42.8387750000001], [27.88262, 42.8384134990001], [27.8899860000001, 42.8532070000001], [27.9028815, 42.8540190000001], [27.8978920000001, 42.8733520000001], [27.902298, 42.8871109990001], [27.8967475000001, 42.9134750000001], [27.897339, 42.9205095], [27.9067995, 42.9295655010001], [27.9014490000001, 42.9469030000001], [27.8979455000001, 42.945344], [27.889732, 42.9521350010001], [27.8799895000001, 42.9568840000001], [27.8762535000001, 42.955634], [27.858905, 42.9560990000001], [27.8475573260001, 42.9508383960001], [27.84716, 42.9502205000001], [27.8455105200001, 42.949889575], [27.8400050000001, 42.9473375000001], [27.8331380000001, 42.936856], [27.8315685000001, 42.9401635] ] ] },
+    "properties": {
+      "ISO": "BG-VAR05",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "7598",
+      "NAME_2": "Бяла",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.9594680000001, 43.2523785000001], [27.9664745000001, 43.261041], [27.9729135000001, 43.264493499], [27.9918040000001, 43.2573795000001], [28.002637, 43.2641735], [28.004196, 43.266672], [28.010003, 43.2760940000001], [28.016313, 43.2924579990001], [28.0285295000001, 43.2977110000001], [28.0461530000001, 43.3025485000001], [28.0483495, 43.3021430000001], [28.0601805000001, 43.316445001], [28.020566, 43.3413550000001], [28.0220965, 43.3537225000001], [28.0165115, 43.3547985000001], [28.0112175, 43.367533], [28.0114705, 43.3716680010001], [28.0079155, 43.3760980000001], [27.9971495, 43.3853500000001], [27.9862165000001, 43.388313], [27.9526980000001, 43.396102], [27.948042, 43.3922960000001], [27.939292, 43.3963840010001], [27.9370685000001, 43.400765001], [27.9134835, 43.3860175], [27.9002385000001, 43.3740565000001], [27.901495605, 43.3727387130001], [27.9012970000001, 43.37195], [27.900925412, 43.3719119730001], [27.8978280000001, 43.3715950000001], [27.891309, 43.3647080010001], [27.8819990000001, 43.3622455010001], [27.8780445, 43.3543745010001], [27.8630045, 43.3596620000001], [27.8512935000001, 43.365211], [27.8395990000001, 43.3794299990001], [27.8261075, 43.387253501], [27.8295840000001, 43.3923565000001], [27.8278540000001, 43.4038320000001], [27.8271695, 43.4064480000001], [27.806637, 43.4045955], [27.7840245, 43.4223970000001], [27.77903, 43.4255965], [27.774531, 43.4276035], [27.7679465, 43.432469499], [27.7615205000001, 43.430554], [27.7581260000001, 43.4324135000001], [27.749923, 43.4429215000001], [27.7406815000001, 43.4528729990001], [27.7243790000001, 43.464949], [27.7208745, 43.471864], [27.7107770000001, 43.475335], [27.7043390000001, 43.473894], [27.7012825, 43.4798195000001], [27.6923620000001, 43.480896], [27.6752625, 43.4758025], [27.6804080000001, 43.4591095000001], [27.6909875000001, 43.4607345000001], [27.671911, 43.431804501], [27.6721895000001, 43.4143165], [27.6691055000001, 43.3970819990001], [27.6746915000001, 43.3884365000001], [27.6701325000001, 43.387887], [27.672534, 43.3855005], [27.697532, 43.382829499], [27.704464, 43.3860285000001], [27.7107500000001, 43.382847], [27.7178825, 43.3550685010001], [27.7250235000001, 43.3460009990001], [27.7254755000001, 43.3400820000001], [27.70791, 43.3388595000001], [27.7085690000001, 43.329954501], [27.709209, 43.328109], [27.7189320000001, 43.327769501], [27.7302310000001, 43.3150150000001], [27.7317360000001, 43.313479], [27.7349825000001, 43.3068175000001], [27.7347545000001, 43.295005001], [27.7415805000001, 43.297464], [27.7433130000001, 43.2887635000001], [27.744871, 43.2814595], [27.748752, 43.2780350000001], [27.7518575, 43.265381], [27.7236970000001, 43.2605740000001], [27.7137025000001, 43.261965], [27.7005785000001, 43.269056], [27.6972125, 43.2713055], [27.6947755, 43.27182], [27.6949485000001, 43.2686855000001], [27.6900855000001, 43.2597955000001], [27.6753535, 43.2423735], [27.6634470000001, 43.235802999], [27.670287, 43.2240165000001], [27.6813710000001, 43.2176610000001], [27.6929480000001, 43.2045935], [27.7023485, 43.2073365000001], [27.7040585, 43.2121029990001], [27.710157, 43.2163560000001], [27.714613, 43.2206100000001], [27.725375, 43.220736], [27.7267025, 43.2176935000001], [27.726844, 43.2157695000001], [27.7399070000001, 43.2159110000001], [27.7431990000001, 43.2097170010001], [27.7485820000001, 43.2090965], [27.7724795, 43.2168795000001], [27.7859945000001, 43.2161165000001], [27.7908550000001, 43.2158040000001], [27.794634, 43.2270115000001], [27.805485, 43.22988], [27.8349680000001, 43.228714], [27.8363125000001, 43.240918999], [27.832799, 43.251426], [27.8299125, 43.258475], [27.836829, 43.2713375000001], [27.832975, 43.2759580000001], [27.8511985000001, 43.2715150010001], [27.869946, 43.2663225000001], [27.8795075, 43.2707380000001], [27.8814715, 43.2808795], [27.8849270000001, 43.2841355], [27.8917470000001, 43.276798], [27.8956655000001, 43.2942630000001], [27.9091005000001, 43.295197], [27.907609, 43.2939755], [27.9051105, 43.2763190000001], [27.9118585000001, 43.2664550010001], [27.9157220000001, 43.265974], [27.9162335, 43.268446], [27.919113, 43.2668475], [27.9173260000001, 43.2620305], [27.9326675, 43.2495070000001], [27.9391410000001, 43.2449745010001], [27.9459995, 43.2454085000001], [27.9594680000001, 43.2523785000001] ] ] },
+    "properties": {
+      "ISO": "BG-VAR02",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "182",
+      "NAME_2": "Аксаково",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.742574, 43.191743], [27.739378, 43.1868785], [27.743459, 43.1738895], [27.7364935000001, 43.1502025], [27.7398395000001, 43.1507799990001], [27.7454730000001, 43.146470499], [27.760382, 43.1511090010001], [27.7761525, 43.144461], [27.778151, 43.1444114990001], [27.7826935000001, 43.1337055000001], [27.791497, 43.1260220010001], [27.7984155, 43.1286890000001], [27.813233, 43.1301425], [27.8187395, 43.1385455000001], [27.8353905000001, 43.139753], [27.849005, 43.1399050000001], [27.8498965000001, 43.1351395], [27.8630900000001, 43.1303490000001], [27.8686755, 43.1207975], [27.8745315, 43.1110275], [27.8837285000001, 43.105937], [27.8998, 43.100265], [27.9237365000001, 43.1063500000001], [27.9307615000001, 43.1275445000001], [27.939831, 43.134529501], [27.9467680000001, 43.1683960010001], [27.9453185, 43.1719855000001], [27.9353714440001, 43.1736448180001], [27.9284675000001, 43.1747965000001], [27.9177935000001, 43.173393], [27.9131130000001, 43.1756745000001], [27.9089240000001, 43.1858255000001], [27.9113140000001, 43.1889684990001], [27.9270040000001, 43.2042425000001], [27.9437540000001, 43.2114525000001], [27.9560165, 43.2125015], [27.9752750000001, 43.2189980000001], [27.9918640500001, 43.218179954], [27.992218, 43.2181625000001], [28.0070250000001, 43.2210195000001], [28.0137140000001, 43.2267035], [28.0259550000001, 43.2449685], [28.0444125000001, 43.2771835], [28.0464106150001, 43.2898509990001], [28.0483495, 43.3021430000001], [28.0461530000001, 43.3025485000001], [28.0285295000001, 43.2977110000001], [28.016313, 43.2924579990001], [28.010003, 43.2760940000001], [28.004196, 43.266672], [28.002637, 43.2641735], [27.9918040000001, 43.2573795000001], [27.9729135000001, 43.264493499], [27.9664745000001, 43.261041], [27.9594680000001, 43.2523785000001], [27.9459995, 43.2454085000001], [27.9391410000001, 43.2449745010001], [27.9326675, 43.2495070000001], [27.9173260000001, 43.2620305], [27.919113, 43.2668475], [27.9162335, 43.268446], [27.9157220000001, 43.265974], [27.9118585000001, 43.2664550010001], [27.9051105, 43.2763190000001], [27.907609, 43.2939755], [27.9091005000001, 43.295197], [27.8956655000001, 43.2942630000001], [27.8917470000001, 43.276798], [27.8849270000001, 43.2841355], [27.8814715, 43.2808795], [27.8795075, 43.2707380000001], [27.869946, 43.2663225000001], [27.8511985000001, 43.2715150010001], [27.832975, 43.2759580000001], [27.836829, 43.2713375000001], [27.8299125, 43.258475], [27.832799, 43.251426], [27.8363125000001, 43.240918999], [27.8349680000001, 43.228714], [27.805485, 43.22988], [27.794634, 43.2270115000001], [27.7908550000001, 43.2158040000001], [27.7859945000001, 43.2161165000001], [27.788711, 43.2054365000001], [27.7929290000001, 43.205249501], [27.794365, 43.2021195], [27.7939925000001, 43.1898355000001], [27.746633, 43.191266], [27.742574, 43.191743] ] ] },
+    "properties": {
+      "ISO": "BG-VAR06",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "10135",
+      "NAME_2": "Варна",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.5076865, 43.4971135000001], [27.4891845000001, 43.5100885000001], [27.4893685000001, 43.5200330000001], [27.4930190000001, 43.5223270000001], [27.4930360000001, 43.5418615], [27.4842375000001, 43.552042], [27.4741835, 43.5697415000001], [27.452548, 43.5766545000001], [27.4455415000001, 43.5868205], [27.4397105, 43.5845244990001], [27.4294635000001, 43.600267], [27.4198010000001, 43.595418001], [27.4245050000001, 43.5884360000001], [27.4180215000001, 43.5856145010001], [27.4231735000001, 43.5779015000001], [27.3856700000001, 43.5590085000001], [27.3832185000001, 43.5550860000001], [27.3713015000001, 43.5483095000001], [27.3334285, 43.5418845], [27.3316555000001, 43.5389044990001], [27.3244835, 43.5267920000001], [27.3076055000001, 43.5196040010001], [27.3044580000001, 43.5154345], [27.305956, 43.5133325], [27.307439, 43.511892], [27.307447, 43.505612], [27.3258805, 43.5036514990001], [27.3393885, 43.4949365], [27.3383185000001, 43.485481], [27.3353910000001, 43.4830045000001], [27.3267490000001, 43.4760150000001], [27.3391145000001, 43.4619455000001], [27.342569, 43.462998], [27.3467795, 43.457344], [27.343016, 43.45433], [27.345133, 43.4400605000001], [27.3635595000001, 43.443614], [27.363346, 43.4405040010001], [27.3682185000001, 43.435599], [27.3625515000001, 43.4344060000001], [27.3669045, 43.4298945], [27.3813385, 43.429357], [27.3874275000001, 43.4221010000001], [27.3950235, 43.4208825000001], [27.4066975000001, 43.4160010000001], [27.4070600000001, 43.407612], [27.4015650000001, 43.4010355010001], [27.4006705000001, 43.3815984990001], [27.4128135, 43.3751710000001], [27.424137, 43.3740175], [27.4328145000001, 43.3635845000001], [27.4404050000001, 43.3654060000001], [27.4473540000001, 43.3547360000001], [27.4487330000001, 43.3530875000001], [27.4507865, 43.351841], [27.4732355, 43.3588415], [27.475645, 43.354626001], [27.4780375, 43.3461385000001], [27.4737275000001, 43.3441665], [27.4871125, 43.3248005], [27.5022685000001, 43.3247630000001], [27.5108300000001, 43.3243635000001], [27.5146115000001, 43.3250625000001], [27.5215165000001, 43.333554], [27.5218165000001, 43.344322], [27.5402790000001, 43.3473290000001], [27.5555105, 43.3669220000001], [27.5624475000001, 43.3766805000001], [27.5730945, 43.3803380000001], [27.5655885, 43.3856650000001], [27.5723630000001, 43.3909310000001], [27.5699495000001, 43.3939319990001], [27.5800095000001, 43.3971094990001], [27.5916525000001, 43.386177], [27.6073335, 43.379283], [27.620281, 43.3829945000001], [27.6224285000001, 43.3790530000001], [27.6362465, 43.3834435000001], [27.637238, 43.3800565000001], [27.6537910000001, 43.3845284990001], [27.6657365, 43.400285001], [27.6677, 43.3958655000001], [27.6691055000001, 43.3970819990001], [27.6721895000001, 43.4143165], [27.671911, 43.431804501], [27.6909875000001, 43.4607345000001], [27.6804080000001, 43.4591095000001], [27.6752625, 43.4758025], [27.6461410000001, 43.484133], [27.6359675, 43.4933609990001], [27.6440125, 43.4981875], [27.6438005000001, 43.5032670000001], [27.6363685000001, 43.515184999], [27.6158080000001, 43.5267194990001], [27.6065235, 43.5286285], [27.5923525000001, 43.5333850000001], [27.5897105, 43.529572], [27.5884765000001, 43.5140275000001], [27.5806425000001, 43.5112275000001], [27.577619, 43.5037644990001], [27.575684, 43.5064485], [27.540442, 43.4951625], [27.547248, 43.488705499], [27.5385045, 43.4940915], [27.5259080000001, 43.4927225000001], [27.5259315000001, 43.4952710000001], [27.5076865, 43.4971135000001] ] ] },
+    "properties": {
+      "ISO": "BG-VAR09",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "12574",
+      "NAME_2": "Вълчи дол",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.5788075, 43.0432755000001], [27.5699865, 43.0511905000001], [27.5662035, 43.0510780000001], [27.5530425000001, 43.053484], [27.5531445, 43.0581705000001], [27.5353155, 43.0623885], [27.505727, 43.0684845010001], [27.4940095000001, 43.0569325010001], [27.4889795, 43.0578860000001], [27.4791255000001, 43.0589680000001], [27.475532, 43.0419140010001], [27.5063275000001, 43.0338440000001], [27.501377, 43.0331185000001], [27.4843250000001, 43.0142490000001], [27.4898425000001, 42.9877785], [27.5128480000001, 42.9866915000001], [27.5062045, 42.9762840000001], [27.49944, 42.9710955], [27.5034150000001, 42.965341999], [27.4936215000001, 42.953493], [27.5034455000001, 42.946242001], [27.4993420000001, 42.9386370010001], [27.507263, 42.929538499], [27.519704, 42.924647], [27.5198985000001, 42.9198955000001], [27.4988270000001, 42.9120335000001], [27.4855435000001, 42.9118790000001], [27.4619645000001, 42.9063075], [27.4277220000001, 42.9082955000001], [27.4040745, 42.9044215000001], [27.4150205, 42.8895395010001], [27.4275650000001, 42.8904345], [27.4347935000001, 42.8817935000001], [27.4558815, 42.884332], [27.4697155000001, 42.8925340000001], [27.4767505, 42.8899970000001], [27.4841275000001, 42.889502501], [27.4889620000001, 42.883475], [27.496265, 42.8852585000001], [27.5119745000001, 42.8867515000001], [27.5088075, 42.8812455], [27.5129650000001, 42.8755230000001], [27.5204825000001, 42.8780455], [27.5496565, 42.8711015000001], [27.5486930000001, 42.8748160000001], [27.5450970000001, 42.875477], [27.5441565, 42.8853875], [27.5583550000001, 42.888309001], [27.5687465, 42.8899954990001], [27.5779640000001, 42.8896120000001], [27.584553, 42.8835675], [27.5993525000001, 42.8858730000001], [27.597787, 42.8962955000001], [27.6092190000001, 42.8970810000001], [27.625122, 42.8984730010001], [27.629622, 42.8950735010001], [27.646417, 42.8894980000001], [27.6532535000001, 42.8879825000001], [27.6622905, 42.884148], [27.6861375, 42.8841475], [27.703357, 42.875929], [27.6995405000001, 42.8824814990001], [27.688813, 42.8905070000001], [27.688636, 42.896667501], [27.691563, 42.9020350000001], [27.7051210000001, 42.9124340000001], [27.7076745000001, 42.9111265000001], [27.71876, 42.9062980000001], [27.7316445000001, 42.902457], [27.7727990000001, 42.9113085000001], [27.7836985000001, 42.9174615000001], [27.7825960000001, 42.9248355], [27.7844155, 42.9272455], [27.784883, 42.9275890000001], [27.8259775000001, 42.9399655], [27.8315685000001, 42.9401635], [27.8331380000001, 42.936856], [27.8400050000001, 42.9473375000001], [27.8455105200001, 42.949889575], [27.84716, 42.9502205000001], [27.8475573260001, 42.9508383960001], [27.858905, 42.9560990000001], [27.8762535000001, 42.955634], [27.8799895000001, 42.9568840000001], [27.889732, 42.9521350010001], [27.8979455000001, 42.945344], [27.9014490000001, 42.9469030000001], [27.8935625, 42.9803085], [27.8895855000001, 43.0228690000001], [27.8780135000001, 43.0219735000001], [27.86805, 43.022774999], [27.8553195000001, 43.0120515], [27.8452275000001, 43.0096050000001], [27.8205075000001, 43.020906], [27.7949835000001, 43.019348], [27.7897860000001, 43.0200374990001], [27.7546285, 43.015763001], [27.7337650000001, 43.02077], [27.734203, 43.0256660000001], [27.7258625000001, 43.0287045000001], [27.7230455000001, 43.0380195000001], [27.7066510000001, 43.0389105], [27.7053605, 43.0452760000001], [27.688773, 43.0600910000001], [27.687572, 43.070098], [27.6773335, 43.0730995000001], [27.6762975, 43.072867], [27.659948, 43.073949], [27.649666, 43.0661685000001], [27.6473115000001, 43.0636015000001], [27.6484390000001, 43.040178], [27.624625, 43.0423635000001], [27.6162845000001, 43.040986], [27.6103885000001, 43.0364205000001], [27.6045110000001, 43.0272485], [27.5844960000001, 43.027384], [27.5788075, 43.0432755000001] ] ] },
+    "properties": {
+      "ISO": "BG-VAR13",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "21912",
+      "NAME_2": "Долни чифлик",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.5918825000001, 43.2485050000001], [27.5856400000001, 43.2534130000001], [27.5771760000001, 43.2537805000001], [27.5744875, 43.2512725], [27.567461, 43.2567285000001], [27.563859, 43.2658275000001], [27.5568280000001, 43.264169001], [27.5506380000001, 43.2747840000001], [27.5443760000001, 43.2638915000001], [27.5353365, 43.259309999], [27.5241720000001, 43.2552870000001], [27.514707, 43.2514985010001], [27.5098845000001, 43.2487830000001], [27.5076095000001, 43.2468420000001], [27.5056065000001, 43.2330210000001], [27.5116170000001, 43.2320760000001], [27.5113620000001, 43.2247425], [27.5081565, 43.2179090000001], [27.5058295000001, 43.2189050000001], [27.5000415000001, 43.2140635000001], [27.5068035, 43.2051685000001], [27.5138445000001, 43.2058395], [27.520877, 43.2140830000001], [27.524864, 43.2122370000001], [27.5439315, 43.2005275000001], [27.5540965000001, 43.1990065000001], [27.5560685, 43.1958405010001], [27.5533675, 43.172491], [27.5510435000001, 43.1723805], [27.5400565, 43.1579125000001], [27.5391310000001, 43.1561790000001], [27.5392325, 43.1511], [27.5458095000001, 43.1498485000001], [27.5655770000001, 43.133742], [27.5736395000001, 43.1393295], [27.586032, 43.154503], [27.5974575000001, 43.1634490000001], [27.60779, 43.1681760000001], [27.622401, 43.1791465000001], [27.6249510000001, 43.1794295], [27.6273160000001, 43.1789935], [27.6286490000001, 43.1874955010001], [27.6438355, 43.187893], [27.662115, 43.191530001], [27.674379, 43.1966945], [27.6919380000001, 43.1984895000001], [27.6929480000001, 43.2045935], [27.6813710000001, 43.2176610000001], [27.670287, 43.2240165000001], [27.6634470000001, 43.235802999], [27.6475115000001, 43.237623], [27.6501135, 43.2537265], [27.6461125000001, 43.2600210000001], [27.6481935, 43.265168999], [27.638476, 43.2744985], [27.6317700000001, 43.2754265], [27.6050225000001, 43.2630600000001], [27.6044905000001, 43.2558725000001], [27.6065300000001, 43.250958499], [27.596545, 43.2460405], [27.590196, 43.2466000000001], [27.5918825000001, 43.2485050000001] ] ] },
+    "properties": {
+      "ISO": "BG-VAR14",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10135",
+      "NAME_1": "VAR",
+      "TYPE_1": "Област",
+      "ID_2": "20482",
+      "NAME_2": "Девня",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.448741, 42.1825525], [23.4384115, 42.1864055], [23.410247, 42.181087], [23.403193, 42.1756795000001], [23.369421, 42.1680860010001], [23.3608340000001, 42.170803], [23.3366340000001, 42.1665830000001], [23.3201950000001, 42.1751415000001], [23.3124945000001, 42.1726475], [23.3046485, 42.1832360000001], [23.2806325, 42.1809865000001], [23.2744060000001, 42.1756340000001], [23.2670170000001, 42.1757355], [23.259536, 42.1814525], [23.2499330000001, 42.183772999], [23.2462175000001, 42.1813230000001], [23.2416805, 42.1848390000001], [23.232694, 42.1823420000001], [23.2148415, 42.1810785000001], [23.2037165, 42.1859600000001], [23.1967605, 42.1822625], [23.1887815000001, 42.1853290000001], [23.1859660000001, 42.1863020000001], [23.1771345, 42.191154], [23.1720245000001, 42.194238001], [23.1663750000001, 42.1932295], [23.1597340000001, 42.187465], [23.1604755000001, 42.182258], [23.1535615, 42.1761920000001], [23.129854, 42.1670730000001], [23.0923055000001, 42.1612019990001], [23.0829115, 42.1555235000001], [23.083491, 42.1527075010001], [23.0790675000001, 42.1483955], [23.0723905, 42.1487340000001], [23.06839, 42.1401240000001], [23.0660135000001, 42.1396775000001], [23.06622, 42.1336565], [23.0714570000001, 42.1277805], [23.066357, 42.117894499], [23.062053, 42.1147300000001], [23.0687435, 42.1151625000001], [23.0803655, 42.1115085000001], [23.092298, 42.1153379990001], [23.1020985000001, 42.109468], [23.1172305000001, 42.1066815], [23.1383275000001, 42.095878], [23.1598495000001, 42.0975105000001], [23.1738685, 42.095359], [23.1800385, 42.0907565000001], [23.1847605, 42.0948175], [23.199266, 42.0987525], [23.202837, 42.094432], [23.2149295, 42.0945434990001], [23.220783, 42.0900365000001], [23.2254760000001, 42.091726], [23.2345510000001, 42.0939565], [23.2468270000001, 42.0902985000001], [23.263202, 42.0906895000001], [23.269304, 42.0876015000001], [23.26973, 42.083730001], [23.2720675000001, 42.0830540000001], [23.2887785, 42.0801025010001], [23.296524, 42.082501], [23.3090425, 42.0788075], [23.3199725000001, 42.0669445], [23.3895575, 42.060666], [23.4091985000001, 42.0529355], [23.421385, 42.053524], [23.4386315, 42.0616430000001], [23.4431915000001, 42.0613300000001], [23.4550805000001, 42.0643005000001], [23.4567755, 42.0657125000001], [23.455899, 42.0683240000001], [23.4711180000001, 42.0764610000001], [23.482737, 42.0944900000001], [23.4955625000001, 42.0975575000001], [23.4974250000001, 42.1053315], [23.5073915, 42.1136050000001], [23.5195495, 42.1122285000001], [23.5267765, 42.1175305], [23.5294720000001, 42.1270265], [23.5150410000001, 42.141937], [23.5022875, 42.1471675000001], [23.4895445, 42.1445180000001], [23.4800655, 42.1483870000001], [23.4574500000001, 42.1508690000001], [23.4521590000001, 42.1663015], [23.4519295000001, 42.173565001], [23.448741, 42.1825525] ] ] },
+    "properties": {
+      "ISO": "BG-KNL38",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "41112",
+      "NAME_1": "KNL",
+      "TYPE_1": "Област",
+      "ID_2": "62671",
+      "NAME_2": "Рила",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.1738685, 42.095359], [23.1598495000001, 42.0975105000001], [23.1383275000001, 42.095878], [23.1172305000001, 42.1066815], [23.1020985000001, 42.109468], [23.092298, 42.1153379990001], [23.0803655, 42.1115085000001], [23.0687435, 42.1151625000001], [23.062053, 42.1147300000001], [23.066357, 42.117894499], [23.0714570000001, 42.1277805], [23.06622, 42.1336565], [23.0660135000001, 42.1396775000001], [23.06839, 42.1401240000001], [23.0399265, 42.1449285000001], [23.039696, 42.138942], [23.030718, 42.138923499], [23.03272, 42.1446480000001], [23.0213190000001, 42.1435455000001], [23.0206355, 42.1406630000001], [23.0274695000001, 42.1274700000001], [23.0178500000001, 42.1238675000001], [23.0081115, 42.1288190000001], [22.9989475, 42.125725501], [22.9892835000001, 42.1272605], [22.9878385000001, 42.1353905], [22.9797560000001, 42.1538990000001], [22.965518, 42.1597015], [22.9335545000001, 42.167790999], [22.9276655, 42.162094], [22.9097745, 42.1648645000001], [22.9088800000001, 42.1659670000001], [22.9006620000001, 42.1610765], [22.8874955000001, 42.1515465000001], [22.8810970000001, 42.1320610000001], [22.8826560000001, 42.1292225], [22.8811870000001, 42.1214350000001], [22.86992, 42.1034355000001], [22.863351, 42.0990610000001], [22.8631235, 42.0903050000001], [22.8665185, 42.0825445], [22.8642095000001, 42.0813630000001], [22.877508, 42.0776550000001], [22.8818315, 42.0723], [22.9003690000001, 42.0653475], [22.919478, 42.0786130000001], [22.927557, 42.0796930000001], [22.9394980000001, 42.096531], [22.9453950000001, 42.0964925010001], [22.95845, 42.0902365000001], [22.9589355000001, 42.086963], [22.958628, 42.0825175000001], [22.9607550000001, 42.0723905], [22.9778455000001, 42.0655225], [22.9985105000001, 42.0638015000001], [23.0167680000001, 42.0679855010001], [23.0276930000001, 42.066897], [23.0277790000001, 42.0622670000001], [23.0245140000001, 42.0592365000001], [23.0256580000001, 42.0565345000001], [23.0327100000001, 42.054136], [23.0354665, 42.0503595000001], [23.0346000000001, 42.0474400000001], [23.0350020000001, 42.0469264990001], [23.056022, 42.041780999], [23.0684695000001, 42.050011], [23.077322, 42.052151], [23.07818, 42.049407], [23.0896515000001, 42.0562150000001], [23.1001910000001, 42.059721], [23.1191245000001, 42.0595445000001], [23.133381, 42.062619], [23.1524380000001, 42.0772315], [23.175195, 42.0817525000001], [23.1798870000001, 42.0855290000001], [23.1800385, 42.0907565000001], [23.1738685, 42.095359] ] ] },
+    "properties": {
+      "ISO": "BG-KNL27",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "41112",
+      "NAME_1": "KNL",
+      "TYPE_1": "Област",
+      "ID_2": "39116",
+      "NAME_2": "Кочериново",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.5105175000001, 42.6336855000001], [22.500216, 42.6357475], [22.4985330000001, 42.638832], [22.4996635000001, 42.6433695000001], [22.4967035, 42.6455665], [22.4742150000001, 42.6435215000001], [22.4637605, 42.6478745000001], [22.4614720000001, 42.6484905], [22.454193, 42.6464985000001], [22.467632, 42.640767501], [22.464903, 42.6325100010001], [22.4611975, 42.6308144990001], [22.4594835, 42.6255785000001], [22.4512940000001, 42.611786001], [22.4488155, 42.5952845], [22.4418655000001, 42.589728], [22.4411715000001, 42.5857134990001], [22.4391395000001, 42.5664645000001], [22.4710425000001, 42.5619155000001], [22.4773445000001, 42.5538345000001], [22.4921845000001, 42.546221501], [22.4990470000001, 42.5354100010001], [22.5031795, 42.533674499], [22.5136390000001, 42.5270790000001], [22.5196275000001, 42.5280775000001], [22.5463215, 42.5082140000001], [22.5514025000001, 42.495772001], [22.558634, 42.4856255], [22.5599515000001, 42.48569], [22.5622975000001, 42.4796135], [22.579369, 42.46324], [22.593873, 42.4658075], [22.590109, 42.4567125], [22.595421, 42.447729], [22.6009515000001, 42.4408695010001], [22.6033295, 42.4404525], [22.6153045, 42.4418620000001], [22.6196815000001, 42.446873499], [22.6229475000001, 42.444401], [22.636941, 42.4328120000001], [22.6364560000001, 42.4287285010001], [22.6455125000001, 42.433386], [22.6567625000001, 42.432103], [22.677042, 42.4330245], [22.6799755000001, 42.4350620000001], [22.6868930000001, 42.4448850000001], [22.688742, 42.462254999], [22.679444, 42.462295999], [22.6847835, 42.4674899990001], [22.7013265000001, 42.4740285], [22.6957115000001, 42.476613], [22.6961270000001, 42.4809230000001], [22.7017015000001, 42.483933], [22.709411, 42.4816785], [22.7115390000001, 42.4837485], [22.7117940000001, 42.4898669990001], [22.7117845000001, 42.4962905], [22.7067230000001, 42.5026915], [22.7107935, 42.5090385], [22.7039125000001, 42.5173115000001], [22.6970385000001, 42.5116105000001], [22.6910090000001, 42.513738001], [22.6910375, 42.516215], [22.676993, 42.5212895000001], [22.6721315, 42.5233160000001], [22.663096, 42.5180805000001], [22.6527780000001, 42.522587001], [22.6528710000001, 42.5484125], [22.6510910000001, 42.5486780000001], [22.6421275000001, 42.5567145000001], [22.6285975000001, 42.5563965000001], [22.6252275, 42.5672970000001], [22.6147990000001, 42.570350499], [22.61015, 42.5814940000001], [22.6083190000001, 42.581581], [22.6085370000001, 42.5830570000001], [22.603824, 42.5963855000001], [22.6078700000001, 42.6047570000001], [22.601729, 42.6168509990001], [22.5953645000001, 42.6233315000001], [22.585831, 42.6362755010001], [22.5829965, 42.6386555], [22.576787, 42.6377899990001], [22.573836, 42.630756499], [22.5643215000001, 42.6249314990001], [22.5612765000001, 42.6298505010001], [22.5429590000001, 42.624649999], [22.5418720000001, 42.6287045], [22.538445, 42.630772], [22.5284255, 42.622309], [22.5262615, 42.6248085], [22.5200545000001, 42.6232195000001], [22.5105175000001, 42.6336855000001] ] ] },
+    "properties": {
+      "ISO": "BG-KNL50",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "41112",
+      "NAME_1": "KNL",
+      "TYPE_1": "Област",
+      "ID_2": "73047",
+      "NAME_2": "Трекляно",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.3006115000001, 42.3684079990001], [23.2901590000001, 42.372959], [23.288392, 42.3726635], [23.2773375, 42.364493], [23.2616870000001, 42.3602780000001], [23.256314, 42.355267], [23.2586840000001, 42.3445530010001], [23.2466325, 42.3297425000001], [23.2505205000001, 42.3112985000001], [23.2306325000001, 42.3042570000001], [23.2301665000001, 42.3010855], [23.2276180000001, 42.3015105000001], [23.2062975000001, 42.2980054990001], [23.2028110000001, 42.2969355000001], [23.2016625000001, 42.2965830000001], [23.1633345000001, 42.2897310000001], [23.1569965, 42.2842735], [23.1700095, 42.2787440000001], [23.1774665, 42.2684175], [23.19017, 42.254898], [23.194057, 42.2510155000001], [23.210759, 42.2388685000001], [23.234546, 42.2272810010001], [23.253807, 42.2246125], [23.280852, 42.2122034990001], [23.2956090000001, 42.1982205], [23.297856, 42.1979150000001], [23.3167905, 42.1916590000001], [23.3321695000001, 42.2151049990001], [23.350198, 42.2254780000001], [23.3541105, 42.244107], [23.3607775, 42.243702], [23.3748670000001, 42.2490920000001], [23.3814915, 42.2428005000001], [23.3934535000001, 42.243182], [23.3927675, 42.2487390000001], [23.38807, 42.2513865000001], [23.382481, 42.2721505000001], [23.3821925, 42.2779805000001], [23.3864, 42.2831830000001], [23.3478420000001, 42.2964795], [23.33829, 42.304026499], [23.336013, 42.310455], [23.3161555, 42.3190520000001], [23.312756, 42.325705], [23.3215900000001, 42.335295], [23.319619, 42.3425520000001], [23.312037, 42.3508715], [23.313839, 42.3583265], [23.3100685000001, 42.3581285000001], [23.309395, 42.358548], [23.3006115000001, 42.3684079990001] ] ] },
+    "properties": {
+      "ISO": "BG-KNL41",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "41112",
+      "NAME_1": "KNL",
+      "TYPE_1": "Област",
+      "ID_2": "65365",
+      "NAME_2": "Сапарева баня",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.6444995, 42.1271755000001], [22.6447035, 42.1268410010001], [22.6486295, 42.1246945], [22.6534570000001, 42.1139785], [22.6618135, 42.112013], [22.673935, 42.1163565000001], [22.6787185000001, 42.1340450000001], [22.680713, 42.151822], [22.6870295000001, 42.1553640000001], [22.702858, 42.152232], [22.7036525, 42.1612115], [22.7062760000001, 42.1658075], [22.7050775000001, 42.1732445000001], [22.6996300000001, 42.1804240000001], [22.7039485, 42.1914935], [22.7026795, 42.1977039990001], [22.7245595000001, 42.2000085000001], [22.7234970000001, 42.2036155000001], [22.7324905, 42.2109645], [22.7541140000001, 42.2160230000001], [22.7800175, 42.2351060010001], [22.7906565000001, 42.237964499], [22.793122, 42.2385820000001], [22.7974575000001, 42.2499510000001], [22.8068355, 42.2557375000001], [22.8216395000001, 42.2596195], [22.82304, 42.2604585], [22.8305575000001, 42.2652975], [22.839001, 42.263313], [22.844166, 42.2700825000001], [22.852565, 42.2827855], [22.8550490000001, 42.293077], [22.8548485000001, 42.2965995000001], [22.8593855, 42.3052585], [22.8663340000001, 42.303502], [22.874065, 42.3111325], [22.8953230000001, 42.3158225], [22.8978125, 42.3128369990001], [22.8969795, 42.3187675], [22.8873750000001, 42.3409150000001], [22.88183, 42.3497869990001], [22.86956, 42.3568495000001], [22.8720935000001, 42.3678315000001], [22.856835, 42.365772], [22.8536275000001, 42.3645845], [22.8408765, 42.3670165], [22.837719, 42.3734745], [22.8199055000001, 42.376287], [22.805727, 42.3760115000001], [22.8101595000001, 42.3868795000001], [22.7971695000001, 42.3954835000001], [22.7962715, 42.4078265000001], [22.790219, 42.415649], [22.766627, 42.4174390000001], [22.756917, 42.4197580000001], [22.750733, 42.4143425], [22.7479525000001, 42.4215860000001], [22.7485315000001, 42.4260375000001], [22.7414420000001, 42.4322700000001], [22.7329145, 42.4361929990001], [22.7310145000001, 42.436406], [22.7287825, 42.4507285], [22.7314895000001, 42.4577760000001], [22.7171720000001, 42.469139], [22.704263, 42.4736565000001], [22.7013265000001, 42.4740285], [22.6847835, 42.4674899990001], [22.679444, 42.462295999], [22.688742, 42.462254999], [22.6868930000001, 42.4448850000001], [22.6799755000001, 42.4350620000001], [22.677042, 42.4330245], [22.6567625000001, 42.432103], [22.6455125000001, 42.433386], [22.6364560000001, 42.4287285010001], [22.636941, 42.4328120000001], [22.6229475000001, 42.444401], [22.6196815000001, 42.446873499], [22.6153045, 42.4418620000001], [22.6033295, 42.4404525], [22.6009515000001, 42.4408695010001], [22.595421, 42.447729], [22.590109, 42.4567125], [22.593873, 42.4658075], [22.579369, 42.46324], [22.5622975000001, 42.4796135], [22.5599515000001, 42.48569], [22.558634, 42.4856255], [22.5592550000001, 42.480284], [22.553475, 42.4715785000001], [22.5436350000001, 42.4631000000001], [22.5414995, 42.4403905], [22.535562, 42.4315075000001], [22.535331, 42.421163], [22.5274605000001, 42.4175895000001], [22.522975, 42.412764], [22.5202420000001, 42.3975735010001], [22.513783, 42.3946770000001], [22.5082835000001, 42.3973225], [22.47983, 42.3938265], [22.480603, 42.380227], [22.469345, 42.376016], [22.4650140000001, 42.3679145], [22.4593600000001, 42.361386], [22.4609820000001, 42.3474375010001], [22.4632735000001, 42.34486], [22.4555255000001, 42.3336570010001], [22.4333295000001, 42.3233255000001], [22.4247760000001, 42.332563001], [22.415763, 42.3292615], [22.4038205000001, 42.3324880000001], [22.4012985000001, 42.3262955000001], [22.3982225, 42.326372], [22.3681270000001, 42.322328], [22.3630660000001, 42.318001], [22.3602065000001, 42.311157001], [22.3733935000001, 42.307236], [22.3784755, 42.309146], [22.3820910000001, 42.3041710000001], [22.3843675000001, 42.3032940000001], [22.3890375, 42.2960880000001], [22.401715, 42.290159999], [22.4010900000001, 42.283128999], [22.4139495000001, 42.2691060000001], [22.4241220000001, 42.264081], [22.4248235000001, 42.2560490000001], [22.4344090000001, 42.258073499], [22.441183, 42.2461065000001], [22.4507405, 42.241243], [22.4482735, 42.2368650000001], [22.4563505, 42.227858999], [22.4591750000001, 42.21847], [22.4674815000001, 42.2094035000001], [22.4708675000001, 42.201665], [22.4856760000001, 42.201444], [22.5008625, 42.1962130000001], [22.500884, 42.1867755000001], [22.5056750000001, 42.1698059990001], [22.516224, 42.1579235], [22.510412, 42.1551585], [22.5236330000001, 42.1473820000001], [22.528741, 42.1392719990001], [22.548145, 42.1346755000001], [22.5658865, 42.1179435010001], [22.580569, 42.110108], [22.5899680000001, 42.110055], [22.5990975, 42.1000070000001], [22.61096, 42.1073920010001], [22.6154290000001, 42.1165355000001], [22.6197905000001, 42.1193225000001], [22.6330100000001, 42.117851], [22.633247, 42.122199999], [22.6363385, 42.1254105], [22.6444995, 42.1271755000001] ] ] },
+    "properties": {
+      "ISO": "BG-KNL29",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "41112",
+      "NAME_1": "KNL",
+      "TYPE_1": "Област",
+      "ID_2": "41112",
+      "NAME_2": "Кюстендил",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.9410040000001, 42.2696895], [22.9293640000001, 42.263653], [22.927781, 42.2487985000001], [22.929766, 42.2378840000001], [22.9232425000001, 42.227176], [22.9275425000001, 42.2210440000001], [22.9214475000001, 42.2181665], [22.925392, 42.2158260000001], [22.9214165000001, 42.2113130000001], [22.9181740000001, 42.201694], [22.9215765000001, 42.201779], [22.931253, 42.207269], [22.9347000000001, 42.2178675000001], [22.939357, 42.2164074990001], [22.9473560000001, 42.2196625], [22.937144, 42.227746], [22.9317025, 42.237039001], [22.9397395, 42.2354785000001], [22.9583630000001, 42.2232435000001], [22.9717420000001, 42.226119], [22.976772, 42.2305050000001], [22.97776, 42.2357175000001], [22.9888605, 42.2278815000001], [22.984749, 42.2234605000001], [22.993118, 42.22677], [22.9946560000001, 42.235031], [23.0003810000001, 42.240503], [23.0078535000001, 42.2419654990001], [23.004897, 42.2717700000001], [23.0144905, 42.275089], [23.0291135000001, 42.278537], [23.0423935000001, 42.2704655000001], [23.047826, 42.270716], [23.048031, 42.2730775000001], [23.065418, 42.281284999], [23.0701980000001, 42.2660474990001], [23.0720285, 42.2768750000001], [23.083224, 42.2845290010001], [23.088779, 42.284458], [23.0816835000001, 42.2914410000001], [23.0712510000001, 42.2961395], [23.0692120000001, 42.3029670000001], [23.0649760000001, 42.308143], [23.064966, 42.3099794990001], [23.0583855, 42.3211700000001], [23.0557355, 42.3333555], [23.0546890000001, 42.334508499], [23.051476, 42.339818501], [23.0548435000001, 42.343986], [23.0554330000001, 42.349202], [23.04821, 42.3531800000001], [23.0433375000001, 42.3616245010001], [23.0366605, 42.376016], [23.0287680000001, 42.3846790000001], [23.026955, 42.3896040000001], [23.0270905, 42.3912575000001], [23.0135095000001, 42.3915905000001], [23.009331, 42.3948530000001], [23.0067070000001, 42.4011995000001], [23.000371, 42.4041925000001], [22.994587, 42.404931], [22.9881085000001, 42.4020164990001], [22.9763605000001, 42.3884405000001], [22.9757445000001, 42.3892700000001], [22.967763, 42.392257], [22.9537020000001, 42.3966994990001], [22.9426570000001, 42.3956555], [22.934894, 42.3897305], [22.913576, 42.387346], [22.9067820000001, 42.3641025000001], [22.9020985, 42.3606485], [22.8791935, 42.3705185000001], [22.8720935000001, 42.3678315000001], [22.86956, 42.3568495000001], [22.88183, 42.3497869990001], [22.8873750000001, 42.3409150000001], [22.8969795, 42.3187675], [22.8978125, 42.3128369990001], [22.8980020000001, 42.2957855000001], [22.9051105, 42.2856405000001], [22.9077805000001, 42.2869830000001], [22.9258815000001, 42.2807855], [22.931965, 42.280556], [22.9251105000001, 42.2718665], [22.9411045000001, 42.2758965], [22.9437325000001, 42.269142], [22.9435085000001, 42.268971999], [22.9410040000001, 42.2696895] ] ] },
+    "properties": {
+      "ISO": "BG-KNL04",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "41112",
+      "NAME_1": "KNL",
+      "TYPE_1": "Област",
+      "ID_2": "4501",
+      "NAME_2": "Бобов дол",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.141988, 42.3779935000001], [23.1314115000001, 42.3794375000001], [23.120578, 42.3944005000001], [23.1257810000001, 42.4009604990001], [23.1204815, 42.4042115], [23.1090175, 42.4107965000001], [23.1061605, 42.4045765000001], [23.0937930000001, 42.3943630000001], [23.0894040000001, 42.3810535000001], [23.0927755000001, 42.3769455], [23.0902990000001, 42.369622], [23.0810500000001, 42.3671400000001], [23.0671120000001, 42.3777505], [23.0583225, 42.3798345000001], [23.0366605, 42.376016], [23.0433375000001, 42.3616245010001], [23.04821, 42.3531800000001], [23.0554330000001, 42.349202], [23.0548435000001, 42.343986], [23.051476, 42.339818501], [23.0546890000001, 42.334508499], [23.0557355, 42.3333555], [23.0583855, 42.3211700000001], [23.064966, 42.3099794990001], [23.0649760000001, 42.308143], [23.0692120000001, 42.3029670000001], [23.0712510000001, 42.2961395], [23.0816835000001, 42.2914410000001], [23.088779, 42.284458], [23.083224, 42.2845290010001], [23.0720285, 42.2768750000001], [23.0701980000001, 42.2660474990001], [23.065418, 42.281284999], [23.048031, 42.2730775000001], [23.047826, 42.270716], [23.0423935000001, 42.2704655000001], [23.0291135000001, 42.278537], [23.0144905, 42.275089], [23.004897, 42.2717700000001], [23.0078535000001, 42.2419654990001], [23.0080080000001, 42.2405575000001], [23.0234895, 42.2405650000001], [23.033491, 42.2347260000001], [23.0363770000001, 42.2292159990001], [23.0271905000001, 42.2193625], [23.028291, 42.2149840010001], [23.0315820000001, 42.214256], [23.0361245, 42.2134545000001], [23.0629275000001, 42.2109350000001], [23.0605725, 42.2028980010001], [23.0563755000001, 42.1989365000001], [23.081528, 42.1990035000001], [23.0852285, 42.1968830000001], [23.0880980000001, 42.1891695], [23.1090165000001, 42.1985175], [23.1236435000001, 42.2062435], [23.1266735, 42.2033480000001], [23.1442445000001, 42.1936755], [23.1663750000001, 42.1932295], [23.1720245000001, 42.194238001], [23.1771345, 42.191154], [23.1859660000001, 42.1863020000001], [23.1887815000001, 42.1853290000001], [23.1967605, 42.1822625], [23.2037165, 42.1859600000001], [23.2148415, 42.1810785000001], [23.232694, 42.1823420000001], [23.2416805, 42.1848390000001], [23.2462175000001, 42.1813230000001], [23.2499330000001, 42.183772999], [23.259536, 42.1814525], [23.2670170000001, 42.1757355], [23.2744060000001, 42.1756340000001], [23.2806325, 42.1809865000001], [23.3046485, 42.1832360000001], [23.3124945000001, 42.1726475], [23.3201950000001, 42.1751415000001], [23.3138240000001, 42.1820730000001], [23.3167905, 42.1916590000001], [23.297856, 42.1979150000001], [23.2956090000001, 42.1982205], [23.280852, 42.2122034990001], [23.253807, 42.2246125], [23.234546, 42.2272810010001], [23.210759, 42.2388685000001], [23.194057, 42.2510155000001], [23.19017, 42.254898], [23.1774665, 42.2684175], [23.1700095, 42.2787440000001], [23.1569965, 42.2842735], [23.1633345000001, 42.2897310000001], [23.2016625000001, 42.2965830000001], [23.2028110000001, 42.2969355000001], [23.2062975000001, 42.2980054990001], [23.2276180000001, 42.3015105000001], [23.2301665000001, 42.3010855], [23.2306325000001, 42.3042570000001], [23.2505205000001, 42.3112985000001], [23.2466325, 42.3297425000001], [23.2586840000001, 42.3445530010001], [23.256314, 42.355267], [23.2616870000001, 42.3602780000001], [23.2584635000001, 42.3597945000001], [23.2522760000001, 42.3683130000001], [23.2557165000001, 42.3762725], [23.2451380000001, 42.3794290000001], [23.224096, 42.3770215010001], [23.206261, 42.3727175000001], [23.193589, 42.3649360000001], [23.1813300000001, 42.3656215], [23.1693565, 42.365127], [23.1727905000001, 42.3701225], [23.167811, 42.3770690010001], [23.165015, 42.38082], [23.15759, 42.3814535000001], [23.141988, 42.3779935000001] ] ] },
+    "properties": {
+      "ISO": "BG-KNL48",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "41112",
+      "NAME_1": "KNL",
+      "TYPE_1": "Област",
+      "ID_2": "68789",
+      "NAME_2": "Дупница",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.0880980000001, 42.1891695], [23.0852285, 42.1968830000001], [23.081528, 42.1990035000001], [23.0563755000001, 42.1989365000001], [23.0605725, 42.2028980010001], [23.0629275000001, 42.2109350000001], [23.0361245, 42.2134545000001], [23.0315820000001, 42.214256], [23.028291, 42.2149840010001], [23.0271905000001, 42.2193625], [23.0363770000001, 42.2292159990001], [23.033491, 42.2347260000001], [23.0234895, 42.2405650000001], [23.0080080000001, 42.2405575000001], [23.0078535000001, 42.2419654990001], [23.0003810000001, 42.240503], [22.9946560000001, 42.235031], [22.993118, 42.22677], [22.984749, 42.2234605000001], [22.9888605, 42.2278815000001], [22.97776, 42.2357175000001], [22.976772, 42.2305050000001], [22.9717420000001, 42.226119], [22.9583630000001, 42.2232435000001], [22.9397395, 42.2354785000001], [22.9317025, 42.237039001], [22.937144, 42.227746], [22.9473560000001, 42.2196625], [22.939357, 42.2164074990001], [22.9347000000001, 42.2178675000001], [22.931253, 42.207269], [22.9215765000001, 42.201779], [22.9250720000001, 42.2013495], [22.9252715000001, 42.1984170000001], [22.9214065, 42.195137], [22.92008, 42.1872920000001], [22.9260570000001, 42.186838499], [22.907447, 42.182533], [22.9088800000001, 42.1659670000001], [22.9097745, 42.1648645000001], [22.9276655, 42.162094], [22.9335545000001, 42.167790999], [22.965518, 42.1597015], [22.9797560000001, 42.1538990000001], [22.9878385000001, 42.1353905], [22.9892835000001, 42.1272605], [22.9989475, 42.125725501], [23.0081115, 42.1288190000001], [23.0178500000001, 42.1238675000001], [23.0274695000001, 42.1274700000001], [23.0206355, 42.1406630000001], [23.0213190000001, 42.1435455000001], [23.03272, 42.1446480000001], [23.030718, 42.138923499], [23.039696, 42.138942], [23.0399265, 42.1449285000001], [23.06839, 42.1401240000001], [23.0723905, 42.1487340000001], [23.0790675000001, 42.1483955], [23.083491, 42.1527075010001], [23.0829115, 42.1555235000001], [23.0923055000001, 42.1612019990001], [23.129854, 42.1670730000001], [23.1535615, 42.1761920000001], [23.1604755000001, 42.182258], [23.1597340000001, 42.187465], [23.1663750000001, 42.1932295], [23.1442445000001, 42.1936755], [23.1266735, 42.2033480000001], [23.1236435000001, 42.2062435], [23.1090165000001, 42.1985175], [23.0880980000001, 42.1891695] ] ] },
+    "properties": {
+      "ISO": "BG-KNL05",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "41112",
+      "NAME_1": "KNL",
+      "TYPE_1": "Област",
+      "ID_2": "4532",
+      "NAME_2": "Бобошево",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.9077805000001, 42.2869830000001], [22.9051105, 42.2856405000001], [22.8980020000001, 42.2957855000001], [22.8978125, 42.3128369990001], [22.8953230000001, 42.3158225], [22.874065, 42.3111325], [22.8663340000001, 42.303502], [22.8593855, 42.3052585], [22.8548485000001, 42.2965995000001], [22.8550490000001, 42.293077], [22.852565, 42.2827855], [22.844166, 42.2700825000001], [22.839001, 42.263313], [22.8305575000001, 42.2652975], [22.82304, 42.2604585], [22.8216395000001, 42.2596195], [22.8068355, 42.2557375000001], [22.7974575000001, 42.2499510000001], [22.793122, 42.2385820000001], [22.7906565000001, 42.237964499], [22.7800175, 42.2351060010001], [22.7541140000001, 42.2160230000001], [22.7324905, 42.2109645], [22.7234970000001, 42.2036155000001], [22.7245595000001, 42.2000085000001], [22.7026795, 42.1977039990001], [22.7039485, 42.1914935], [22.6996300000001, 42.1804240000001], [22.7050775000001, 42.1732445000001], [22.7062760000001, 42.1658075], [22.7036525, 42.1612115], [22.702858, 42.152232], [22.6870295000001, 42.1553640000001], [22.680713, 42.151822], [22.6787185000001, 42.1340450000001], [22.673935, 42.1163565000001], [22.6618135, 42.112013], [22.6534570000001, 42.1139785], [22.6486295, 42.1246945], [22.6447035, 42.1268410010001], [22.6444995, 42.1271755000001], [22.6363385, 42.1254105], [22.633247, 42.122199999], [22.6330100000001, 42.117851], [22.6197905000001, 42.1193225000001], [22.6154290000001, 42.1165355000001], [22.61096, 42.1073920010001], [22.5990975, 42.1000070000001], [22.6120655, 42.0946605], [22.630213, 42.0938909990001], [22.6417135, 42.0857970000001], [22.6507070000001, 42.076753501], [22.6611960000001, 42.0730340000001], [22.6800630000001, 42.0634565010001], [22.6868395000001, 42.0644100000001], [22.6974245000001, 42.0633010000001], [22.7081010000001, 42.0666610000001], [22.7173965000001, 42.0684775], [22.718198, 42.0638745000001], [22.7286045000001, 42.0575775], [22.732899, 42.0485705], [22.740444, 42.044881], [22.750236, 42.0469880000001], [22.7573395000001, 42.0433405000001], [22.7809645, 42.0368555000001], [22.7924545000001, 42.0379585000001], [22.79862, 42.046229001], [22.800174, 42.044693001], [22.806158, 42.038241], [22.814765, 42.0285420010001], [22.8255045, 42.0220560000001], [22.832654, 42.0209120000001], [22.852386, 42.0254440000001], [22.867214, 42.0221995000001], [22.8735405, 42.0298445000001], [22.8836880000001, 42.0325145], [22.887727, 42.02597], [22.8931020000001, 42.0266979990001], [22.8959760000001, 42.0308210000001], [22.9031275, 42.0461050000001], [22.9125255000001, 42.0483225], [22.9109475000001, 42.05253], [22.9012605, 42.0602155], [22.9003690000001, 42.0653475], [22.8818315, 42.0723], [22.877508, 42.0776550000001], [22.8642095000001, 42.0813630000001], [22.8665185, 42.0825445], [22.8631235, 42.0903050000001], [22.863351, 42.0990610000001], [22.86992, 42.1034355000001], [22.8811870000001, 42.1214350000001], [22.8826560000001, 42.1292225], [22.8810970000001, 42.1320610000001], [22.8874955000001, 42.1515465000001], [22.9006620000001, 42.1610765], [22.9088800000001, 42.1659670000001], [22.907447, 42.182533], [22.9260570000001, 42.186838499], [22.92008, 42.1872920000001], [22.9214065, 42.195137], [22.9252715000001, 42.1984170000001], [22.9250720000001, 42.2013495], [22.9215765000001, 42.201779], [22.9181740000001, 42.201694], [22.9214165000001, 42.2113130000001], [22.925392, 42.2158260000001], [22.9214475000001, 42.2181665], [22.9275425000001, 42.2210440000001], [22.9232425000001, 42.227176], [22.929766, 42.2378840000001], [22.927781, 42.2487985000001], [22.9293640000001, 42.263653], [22.9410040000001, 42.2696895], [22.9435085000001, 42.268971999], [22.9437325000001, 42.269142], [22.9411045000001, 42.2758965], [22.9251105000001, 42.2718665], [22.931965, 42.280556], [22.9258815000001, 42.2807855], [22.9077805000001, 42.2869830000001] ] ] },
+    "properties": {
+      "ISO": "BG-KNL31",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "41112",
+      "NAME_1": "KNL",
+      "TYPE_1": "Област",
+      "ID_2": "51216",
+      "NAME_2": "Невестино",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.3618960000001, 43.2761215], [26.3705180000001, 43.275917], [26.3836690000001, 43.2835345], [26.385298, 43.2893915010001], [26.401235, 43.293122999], [26.4045725, 43.297463001], [26.3887285000001, 43.300729], [26.3837060000001, 43.311719], [26.3670075000001, 43.3148605000001], [26.3523890000001, 43.3152155000001], [26.3566680000001, 43.316676], [26.354608, 43.3278745000001], [26.3479810000001, 43.3369545], [26.346416, 43.34337], [26.345151, 43.349022], [26.3456590000001, 43.3503125], [26.3488550000001, 43.3553645000001], [26.3642755000001, 43.3560635000001], [26.3813925000001, 43.3593720000001], [26.3861220000001, 43.3612345000001], [26.3876030000001, 43.366879], [26.3896915, 43.3701905], [26.389959, 43.3707500000001], [26.3987900000001, 43.3774060000001], [26.418838, 43.3776720000001], [26.4255910000001, 43.3825055], [26.4399405, 43.3956870000001], [26.4390515000001, 43.39946], [26.4468025, 43.4000740000001], [26.4470935000001, 43.4089990000001], [26.46599, 43.4229065000001], [26.4635105, 43.429306001], [26.4653675000001, 43.4392415], [26.473626, 43.4373575010001], [26.4716550000001, 43.443183], [26.4682605, 43.4441850000001], [26.4639250000001, 43.4450560000001], [26.4624690000001, 43.4478], [26.437503, 43.4476440010001], [26.430686, 43.4463765], [26.4161355000001, 43.4430345000001], [26.4024245000001, 43.436116], [26.3901225000001, 43.4362310000001], [26.3864985000001, 43.4399710000001], [26.3777190000001, 43.433499499], [26.3677415000001, 43.4377260000001], [26.360555, 43.4457675000001], [26.3685630000001, 43.4508905000001], [26.3605105, 43.462637], [26.3697230000001, 43.469572], [26.3725925000001, 43.474702], [26.3773225, 43.4853800000001], [26.3753605000001, 43.4883090010001], [26.3711355, 43.490847499], [26.3704265000001, 43.4962645000001], [26.358643, 43.496811], [26.3480250000001, 43.4997950000001], [26.3436090000001, 43.500611], [26.3447605000001, 43.5049265000001], [26.338511, 43.5047689990001], [26.3318465, 43.511001499], [26.3332465, 43.5139854990001], [26.3193005000001, 43.522363], [26.3100670000001, 43.5238065], [26.2916260000001, 43.5277820000001], [26.2911025000001, 43.528616], [26.2823005000001, 43.5323250000001], [26.272336, 43.5367910000001], [26.2683625, 43.5385755], [26.2660125, 43.5421575], [26.270207, 43.541545], [26.2676815, 43.5497140000001], [26.2551145, 43.5549225], [26.254081, 43.5539209990001], [26.249584, 43.554296499], [26.2305240000001, 43.55114], [26.2219715000001, 43.5470305000001], [26.2193055000001, 43.5356895000001], [26.2223520000001, 43.5222535], [26.238366, 43.5082200000001], [26.2252275000001, 43.4925185000001], [26.2164105000001, 43.4925440000001], [26.2066375000001, 43.4842555000001], [26.210633, 43.4783855000001], [26.2180320000001, 43.4711875], [26.227399, 43.4641290000001], [26.2288615000001, 43.4606360000001], [26.2253220000001, 43.45525], [26.2267775, 43.4435100010001], [26.2226920000001, 43.4374090000001], [26.2240190000001, 43.4328835000001], [26.2089595000001, 43.432258], [26.2083335, 43.4276705010001], [26.210762, 43.4261295000001], [26.2073215, 43.4223870000001], [26.189238, 43.417987501], [26.1904825, 43.4151375000001], [26.1796915, 43.413755], [26.1730565, 43.4185785000001], [26.1770680000001, 43.420984499], [26.1747335000001, 43.4277345], [26.1692580000001, 43.426862], [26.1661990000001, 43.422558499], [26.1538865000001, 43.4160655000001], [26.133537, 43.4214465000001], [26.114988, 43.4213360000001], [26.1047595000001, 43.4264249990001], [26.0944630000001, 43.4295000000001], [26.0944260000001, 43.429454499], [26.0774050000001, 43.4262525], [26.0768890000001, 43.4301560000001], [26.0654885000001, 43.4376225], [26.0457715000001, 43.4395534990001], [26.0417485, 43.4434230000001], [26.0498105, 43.4467230010001], [26.049832, 43.4495595000001], [26.0438025, 43.4533095], [26.0293380000001, 43.4522640000001], [26.0300015, 43.4502755], [26.0236335000001, 43.4457775000001], [26.0127915, 43.4463870000001], [26.0140525, 43.4423095000001], [25.9937495, 43.427203499], [25.9823805, 43.4065370000001], [25.9638145000001, 43.403237], [25.9571555000001, 43.404437], [25.955364, 43.4074325], [25.9458920000001, 43.401871], [25.9437855, 43.3858010000001], [25.9483175, 43.3856455000001], [25.9598300000001, 43.3695470010001], [25.9865060000001, 43.3692865], [25.9967955000001, 43.363047001], [26.0058125000001, 43.3665160000001], [26.0159215, 43.3580045000001], [26.0117760000001, 43.3423730000001], [26.008881, 43.3338525], [26.010067, 43.332209999], [26.0192925000001, 43.3308850000001], [26.037181, 43.3356245000001], [26.020315, 43.3286605000001], [26.0071095000001, 43.326178999], [26.0053110000001, 43.3289270010001], [26.000344, 43.3284515], [26.0045850000001, 43.3187545000001], [26.020854, 43.3186250000001], [26.0261850000001, 43.3142405], [26.0383640000001, 43.3173825000001], [26.067621, 43.3090475000001], [26.0721310000001, 43.303465499], [26.0807665, 43.29517], [26.094859, 43.291906001], [26.0975405, 43.2867855000001], [26.0948910000001, 43.281416001], [26.0790215000001, 43.269119501], [26.0612410000001, 43.264572], [26.0539380000001, 43.2559525], [26.0547905, 43.2531275000001], [26.0821235, 43.2444175000001], [26.0816610000001, 43.2414965], [26.0863545, 43.2371220000001], [26.0845045, 43.2339960000001], [26.0985565, 43.2185385000001], [26.098336069, 43.2178194110001], [26.105174, 43.2179330010001], [26.1065475, 43.2117395000001], [26.1099750000001, 43.2113475], [26.1128245, 43.2141295000001], [26.1184210000001, 43.2132500000001], [26.1296770000001, 43.2232865], [26.1330780000001, 43.2222315000001], [26.1399960000001, 43.2165790000001], [26.149949, 43.215402], [26.16076, 43.218395], [26.1610335, 43.2221025000001], [26.1631595000001, 43.2218435], [26.1655465000001, 43.2144500000001], [26.17366, 43.2151705000001], [26.1999310000001, 43.2191305000001], [26.2047245000001, 43.2173405], [26.2056020000001, 43.217495], [26.2148990000001, 43.2194005000001], [26.222249, 43.214755], [26.2339935000001, 43.2203405000001], [26.2445285000001, 43.2213154990001], [26.246163, 43.224113], [26.2467305000001, 43.2222530000001], [26.2551135, 43.2206785000001], [26.2432880000001, 43.2152335000001], [26.2444095000001, 43.2115985], [26.2610625, 43.2095150000001], [26.2617525000001, 43.2025225], [26.2683950000001, 43.19845], [26.3056270000001, 43.1996455], [26.3080665000001, 43.2037169990001], [26.3121275, 43.199703], [26.3140625, 43.2033660000001], [26.3098065, 43.2071765000001], [26.3214795000001, 43.2126130010001], [26.322168, 43.215494], [26.334929, 43.217811], [26.342613, 43.228166], [26.3418080000001, 43.2314075], [26.3446300000001, 43.2341205010001], [26.3541495000001, 43.2409690000001], [26.3626835000001, 43.2414715], [26.3684935000001, 43.246767], [26.3789935, 43.2532085], [26.3787635, 43.262235], [26.3618960000001, 43.2761215] ] ] },
+    "properties": {
+      "ISO": "BG-TGV24",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "73626",
+      "NAME_1": "TGV",
+      "TYPE_1": "Област",
+      "ID_2": "57649",
+      "NAME_2": "Попово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.6211295, 43.0931215000001], [26.62089, 43.08453], [26.636131, 43.0804775], [26.6497815000001, 43.0780665], [26.655488, 43.0775300000001], [26.6590185000001, 43.0753115000001], [26.657, 43.0728475000001], [26.6634780000001, 43.0718355000001], [26.6659085000001, 43.075228501], [26.6892435, 43.0727055], [26.6971580000001, 43.0785435000001], [26.6991835000001, 43.092313], [26.682846, 43.0908680000001], [26.6744410000001, 43.0986975000001], [26.6719690000001, 43.108501001], [26.6657020000001, 43.1087619990001], [26.6674275, 43.1313425000001], [26.6761055000001, 43.1460900000001], [26.668957, 43.15236], [26.6604435, 43.1529155000001], [26.6622190000001, 43.1583555], [26.6695960000001, 43.1572380000001], [26.692484, 43.1539745000001], [26.692307, 43.1503720000001], [26.702725, 43.1497645010001], [26.706328, 43.152561001], [26.7185865000001, 43.1529790000001], [26.7168545000001, 43.1618090000001], [26.729115, 43.169249], [26.7206365000001, 43.1734835], [26.7385140000001, 43.1989235], [26.7359480000001, 43.19885], [26.734928, 43.2032375000001], [26.7570565, 43.2027375000001], [26.758926, 43.2047900000001], [26.7697225000001, 43.2250370000001], [26.775474, 43.232761], [26.7744450000001, 43.2441135], [26.7730745000001, 43.2516885], [26.7760275000001, 43.2589655], [26.7665555, 43.266781], [26.7645275, 43.2683615], [26.754764, 43.2710785], [26.747197, 43.2741505000001], [26.7426295000001, 43.2778505000001], [26.7445385, 43.2823975000001], [26.7311255000001, 43.285131], [26.7371145000001, 43.3010695], [26.7413295000001, 43.3002285000001], [26.7427260000001, 43.303302], [26.753972, 43.317482], [26.761518, 43.3374655000001], [26.7605095000001, 43.3437175], [26.7529720000001, 43.343845], [26.7611385000001, 43.3555460000001], [26.7657865000001, 43.353732], [26.7879475, 43.3576385000001], [26.7932375, 43.354969], [26.802016, 43.355939], [26.8006335000001, 43.3610245], [26.7954275000001, 43.3610105000001], [26.797761, 43.3689615000001], [26.7986990000001, 43.371853501], [26.7833000000001, 43.402949], [26.7796480000001, 43.4080610010001], [26.7754005, 43.4051985], [26.7709380000001, 43.408242], [26.7585570000001, 43.402502], [26.7578960000001, 43.4030785], [26.757097, 43.4034145000001], [26.7465705000001, 43.4093975010001], [26.7334645, 43.409881], [26.7304395, 43.4101035], [26.7296180000001, 43.4079445], [26.700414, 43.4077100000001], [26.6959045, 43.401737], [26.6905190000001, 43.402605001], [26.6822135, 43.4038340010001], [26.680642, 43.403492], [26.6852425000001, 43.392024], [26.680886, 43.3815895000001], [26.6724655, 43.373866499], [26.6614725000001, 43.367671], [26.6513170000001, 43.3597075010001], [26.6530325000001, 43.3491195010001], [26.6453025000001, 43.3396855], [26.64655, 43.3264120000001], [26.6291475, 43.3301210000001], [26.6041050000001, 43.329276], [26.6023710000001, 43.3340020000001], [26.5997035, 43.3355550000001], [26.562017, 43.3464880010001], [26.5454515000001, 43.347715501], [26.5457745000001, 43.345263], [26.542514, 43.3410135], [26.5380520000001, 43.3402075000001], [26.5282045000001, 43.345259501], [26.4875500000001, 43.3472860000001], [26.4865495, 43.349276], [26.4874560000001, 43.3619675], [26.4773065000001, 43.3618720000001], [26.4750330000001, 43.365837001], [26.4802915000001, 43.369877], [26.46894, 43.3838945000001], [26.4717920000001, 43.386627], [26.5089, 43.38356], [26.5093900000001, 43.3872405000001], [26.5012120000001, 43.3928775], [26.4952410000001, 43.410014], [26.4771170000001, 43.4216070000001], [26.46599, 43.4229065000001], [26.4470935000001, 43.4089990000001], [26.4468025, 43.4000740000001], [26.4390515000001, 43.39946], [26.4399405, 43.3956870000001], [26.4255910000001, 43.3825055], [26.418838, 43.3776720000001], [26.3987900000001, 43.3774060000001], [26.389959, 43.3707500000001], [26.3896915, 43.3701905], [26.3876030000001, 43.366879], [26.3861220000001, 43.3612345000001], [26.3813925000001, 43.3593720000001], [26.3642755000001, 43.3560635000001], [26.3488550000001, 43.3553645000001], [26.3456590000001, 43.3503125], [26.345151, 43.349022], [26.346416, 43.34337], [26.3479810000001, 43.3369545], [26.354608, 43.3278745000001], [26.3566680000001, 43.316676], [26.3523890000001, 43.3152155000001], [26.3670075000001, 43.3148605000001], [26.3837060000001, 43.311719], [26.3887285000001, 43.300729], [26.4045725, 43.297463001], [26.401235, 43.293122999], [26.385298, 43.2893915010001], [26.3836690000001, 43.2835345], [26.3705180000001, 43.275917], [26.3618960000001, 43.2761215], [26.3787635, 43.262235], [26.3789935, 43.2532085], [26.3684935000001, 43.246767], [26.3626835000001, 43.2414715], [26.3541495000001, 43.2409690000001], [26.3446300000001, 43.2341205010001], [26.3418080000001, 43.2314075], [26.342613, 43.228166], [26.334929, 43.217811], [26.3463105000001, 43.214068001], [26.353616, 43.213713], [26.3562045000001, 43.2018955], [26.368833, 43.201394001], [26.372078, 43.2020825000001], [26.3790535000001, 43.2027285], [26.3825340000001, 43.1959085], [26.3864215, 43.1895450000001], [26.390318, 43.188187999], [26.3904195000001, 43.1730245000001], [26.3920635000001, 43.1664645000001], [26.4042905000001, 43.168797501], [26.4173980000001, 43.159991], [26.4327825, 43.1664660000001], [26.434585, 43.164593], [26.4330380000001, 43.1621720000001], [26.440388, 43.1595700010001], [26.4590930000001, 43.1669265], [26.4804815000001, 43.1690070000001], [26.478646, 43.1665854990001], [26.483284, 43.1630495000001], [26.4976545000001, 43.161114501], [26.4985775000001, 43.1577685], [26.5016985, 43.1555625], [26.4923205000001, 43.1555440000001], [26.4910810000001, 43.1529090000001], [26.4913740000001, 43.141033001], [26.479322, 43.1376335], [26.478128, 43.1332065], [26.4880075, 43.1211625], [26.4924435, 43.1210425], [26.4894985, 43.1192015], [26.5124885000001, 43.1196665000001], [26.518354, 43.115711], [26.5296460000001, 43.1162709990001], [26.5619915, 43.1125005000001], [26.5675845000001, 43.1172045000001], [26.5668095, 43.1137209990001], [26.5728750000001, 43.114739], [26.5712175, 43.1174115000001], [26.5858710000001, 43.1171415000001], [26.588177, 43.1157095], [26.5898470000001, 43.1120275000001], [26.5931585000001, 43.1109135], [26.5992075, 43.1117545000001], [26.5950480000001, 43.1068905000001], [26.5951885000001, 43.1012000000001], [26.6211295, 43.0931215000001] ] ] },
+    "properties": {
+      "ISO": "BG-TGV35",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "73626",
+      "NAME_1": "TGV",
+      "TYPE_1": "Област",
+      "ID_2": "73626",
+      "NAME_2": "Търговище",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.2829310000001, 43.0628525000001], [26.2898015000001, 43.0777625010001], [26.2982210000001, 43.0794760000001], [26.2982505000001, 43.0976969990001], [26.3064675000001, 43.1039475000001], [26.3103885, 43.116524], [26.309468, 43.1242580000001], [26.3066665000001, 43.126407], [26.2947540000001, 43.131539], [26.2828775, 43.1338735000001], [26.27561, 43.144796], [26.2797935, 43.151666], [26.2931605000001, 43.154212], [26.2935305, 43.1529990000001], [26.3102510000001, 43.148211501], [26.3206880000001, 43.1526905000001], [26.347246, 43.1532595], [26.3517165000001, 43.1539375], [26.3559945000001, 43.1563615000001], [26.356272, 43.1592400000001], [26.3676125000001, 43.1612620000001], [26.3699790000001, 43.1585285], [26.3812285000001, 43.1571715000001], [26.3909635000001, 43.1665980000001], [26.3904195000001, 43.1730245000001], [26.390318, 43.188187999], [26.3864215, 43.1895450000001], [26.3825340000001, 43.1959085], [26.3790535000001, 43.2027285], [26.372078, 43.2020825000001], [26.368833, 43.201394001], [26.3562045000001, 43.2018955], [26.353616, 43.213713], [26.3463105000001, 43.214068001], [26.334929, 43.217811], [26.322168, 43.215494], [26.3214795000001, 43.2126130010001], [26.3098065, 43.2071765000001], [26.3140625, 43.2033660000001], [26.3121275, 43.199703], [26.3080665000001, 43.2037169990001], [26.3056270000001, 43.1996455], [26.2683950000001, 43.19845], [26.2617525000001, 43.2025225], [26.2610625, 43.2095150000001], [26.2444095000001, 43.2115985], [26.2432880000001, 43.2152335000001], [26.2551135, 43.2206785000001], [26.2467305000001, 43.2222530000001], [26.246163, 43.224113], [26.2445285000001, 43.2213154990001], [26.2339935000001, 43.2203405000001], [26.222249, 43.214755], [26.2148990000001, 43.2194005000001], [26.2056020000001, 43.217495], [26.2047245000001, 43.2173405], [26.1999310000001, 43.2191305000001], [26.17366, 43.2151705000001], [26.1655465000001, 43.2144500000001], [26.1631595000001, 43.2218435], [26.1610335, 43.2221025000001], [26.16076, 43.218395], [26.149949, 43.215402], [26.1399960000001, 43.2165790000001], [26.1330780000001, 43.2222315000001], [26.1296770000001, 43.2232865], [26.1184210000001, 43.2132500000001], [26.1128245, 43.2141295000001], [26.1099750000001, 43.2113475], [26.1165205, 43.1944465010001], [26.115534, 43.1938855000001], [26.1200395000001, 43.1801520000001], [26.1143165, 43.1748850000001], [26.1034260000001, 43.1752235000001], [26.0985410000001, 43.1676975], [26.0887375, 43.1649365000001], [26.0796245, 43.1645175], [26.07208, 43.1642805000001], [26.076055, 43.1570100000001], [26.0730475, 43.137634], [26.0625705, 43.1350725], [26.0626765000001, 43.1268745], [26.058638, 43.1188314990001], [26.0739095000001, 43.1118515000001], [26.0746995000001, 43.106778999], [26.0640145, 43.1039815], [26.0612620000001, 43.1022750000001], [26.0589435000001, 43.0947420000001], [26.0535675, 43.0928515000001], [26.0578110000001, 43.0886225], [26.058387, 43.08779], [26.0642975000001, 43.0776175], [26.0739665, 43.0754225000001], [26.076826, 43.0719970000001], [26.0781190000001, 43.0703370000001], [26.080658, 43.0625095], [26.081152, 43.0616715], [26.0776955000001, 43.0527245000001], [26.0833135, 43.0438815000001], [26.0942285, 43.0420235], [26.0967275, 43.0341010000001], [26.0953805, 43.030875501], [26.1195335, 43.0298750000001], [26.1249635, 43.0175980000001], [26.1154730000001, 43.008475], [26.0850165, 43.0024815], [26.0746345000001, 42.9849960000001], [26.0760705000001, 42.9792585000001], [26.0981410000001, 42.972815], [26.1211870000001, 42.9709770000001], [26.1276270000001, 42.9763530000001], [26.135752, 42.9727270000001], [26.1364785000001, 42.9653845], [26.1458240000001, 42.9608575], [26.1617825000001, 42.960453], [26.1673545, 42.9561169990001], [26.1674145000001, 42.9521555000001], [26.17841, 42.9515480000001], [26.1850405000001, 42.96615], [26.1914805000001, 42.9707435], [26.188346, 42.972702], [26.1961855000001, 42.972285501], [26.1991320000001, 42.9725575000001], [26.2222405000001, 42.9661205], [26.2331265, 42.9662165], [26.247238, 42.9804215], [26.2446555000001, 42.982047499], [26.2504060000001, 42.9963855010001], [26.2452375, 43.005951], [26.2465195, 43.0096065000001], [26.2593380000001, 43.0102755], [26.2701835, 43.0155140000001], [26.2644185, 43.0328564990001], [26.2751795, 43.0339655000001], [26.275267, 43.0362940000001], [26.2770170000001, 43.0363365000001], [26.276597, 43.040458001], [26.2739975000001, 43.0441560000001], [26.2806395000001, 43.0594165000001], [26.2829310000001, 43.0628525000001] ] ] },
+    "properties": {
+      "ISO": "BG-TGV02",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "73626",
+      "NAME_1": "TGV",
+      "TYPE_1": "Област",
+      "ID_2": "518",
+      "NAME_2": "Антоново",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.614766, 43.006404499], [26.6192765000001, 43.00678], [26.622732, 43.005215499], [26.6373765000001, 43.0131734990001], [26.6540165000001, 43.0164670010001], [26.6440165000001, 43.019623999], [26.6409800000001, 43.020497], [26.638767, 43.0161585000001], [26.6256405, 43.0169495000001], [26.6300815000001, 43.0240645000001], [26.611343, 43.0280725000001], [26.6111230000001, 43.0305120000001], [26.6165195, 43.0319575], [26.615419, 43.0370645], [26.6184815, 43.0469029990001], [26.6499470000001, 43.0452535000001], [26.658034, 43.0481975000001], [26.661841, 43.048657], [26.6646180000001, 43.0543240000001], [26.6611720000001, 43.0652190000001], [26.654388, 43.065838], [26.655221, 43.071536], [26.6634780000001, 43.0718355000001], [26.657, 43.0728475000001], [26.6590185000001, 43.0753115000001], [26.655488, 43.0775300000001], [26.6497815000001, 43.0780665], [26.636131, 43.0804775], [26.62089, 43.08453], [26.6211295, 43.0931215000001], [26.5951885000001, 43.1012000000001], [26.5950480000001, 43.1068905000001], [26.5992075, 43.1117545000001], [26.5931585000001, 43.1109135], [26.5898470000001, 43.1120275000001], [26.588177, 43.1157095], [26.5858710000001, 43.1171415000001], [26.5712175, 43.1174115000001], [26.5728750000001, 43.114739], [26.5668095, 43.1137209990001], [26.5675845000001, 43.1172045000001], [26.5619915, 43.1125005000001], [26.5296460000001, 43.1162709990001], [26.518354, 43.115711], [26.5124885000001, 43.1196665000001], [26.4894985, 43.1192015], [26.4924435, 43.1210425], [26.4880075, 43.1211625], [26.478128, 43.1332065], [26.479322, 43.1376335], [26.4913740000001, 43.141033001], [26.4910810000001, 43.1529090000001], [26.4923205000001, 43.1555440000001], [26.5016985, 43.1555625], [26.4985775000001, 43.1577685], [26.4976545000001, 43.161114501], [26.483284, 43.1630495000001], [26.478646, 43.1665854990001], [26.4804815000001, 43.1690070000001], [26.4590930000001, 43.1669265], [26.440388, 43.1595700010001], [26.4330380000001, 43.1621720000001], [26.434585, 43.164593], [26.4327825, 43.1664660000001], [26.4173980000001, 43.159991], [26.4042905000001, 43.168797501], [26.3920635000001, 43.1664645000001], [26.3904195000001, 43.1730245000001], [26.3909635000001, 43.1665980000001], [26.3812285000001, 43.1571715000001], [26.3699790000001, 43.1585285], [26.3676125000001, 43.1612620000001], [26.356272, 43.1592400000001], [26.3559945000001, 43.1563615000001], [26.3517165000001, 43.1539375], [26.347246, 43.1532595], [26.3206880000001, 43.1526905000001], [26.3102510000001, 43.148211501], [26.2935305, 43.1529990000001], [26.2931605000001, 43.154212], [26.2797935, 43.151666], [26.27561, 43.144796], [26.2828775, 43.1338735000001], [26.2947540000001, 43.131539], [26.3066665000001, 43.126407], [26.309468, 43.1242580000001], [26.3103885, 43.116524], [26.3064675000001, 43.1039475000001], [26.2982505000001, 43.0976969990001], [26.2982210000001, 43.0794760000001], [26.2898015000001, 43.0777625010001], [26.2829310000001, 43.0628525000001], [26.2806395000001, 43.0594165000001], [26.2739975000001, 43.0441560000001], [26.276597, 43.040458001], [26.2770170000001, 43.0363365000001], [26.275267, 43.0362940000001], [26.2751795, 43.0339655000001], [26.2644185, 43.0328564990001], [26.2701835, 43.0155140000001], [26.2810775, 43.0177435], [26.27606, 43.027636], [26.278285, 43.029951], [26.302936, 43.0259975000001], [26.3146055, 43.0292194990001], [26.3181145, 43.0343960000001], [26.3282185000001, 43.0381205], [26.3384085000001, 43.0355459990001], [26.3441505000001, 43.036349], [26.3505465000001, 43.0320715010001], [26.3602665, 43.034337501], [26.361836, 43.0297860000001], [26.353119, 43.0206820000001], [26.354908, 43.016599], [26.3723875000001, 43.0200555000001], [26.3815765000001, 43.0289125000001], [26.383499, 43.02786], [26.397027, 43.020791], [26.405488, 43.0242030000001], [26.410494, 43.0176825], [26.4055500000001, 43.0130375000001], [26.4199625000001, 43.005768], [26.4235685, 43.0044755000001], [26.4290130000001, 43.0031295000001], [26.4435780000001, 42.9960830000001], [26.446959, 42.9958875], [26.4511945, 43.0001045000001], [26.4685495000001, 43.001699], [26.4707290000001, 43.0016640000001], [26.470916291, 43.0020071860001], [26.4724585000001, 43.0022080000001], [26.4867885, 43.0047720000001], [26.48112, 43.0104509990001], [26.4843255000001, 43.0160175], [26.489971, 43.015042501], [26.4909735, 43.0115895010001], [26.503634, 43.009709001], [26.5071855, 43.013839999], [26.5034410000001, 43.014413501], [26.5166775000001, 43.0174685000001], [26.5242295, 43.010008], [26.5316960000001, 43.0111400000001], [26.5356015, 43.0115435000001], [26.5399535, 43.0057935], [26.578518, 42.991477], [26.580584, 42.9885174990001], [26.5777255, 42.9856970000001], [26.579434, 42.9841905000001], [26.584959, 42.9848860000001], [26.5914725000001, 42.990925001], [26.614766, 43.006404499] ] ] },
+    "properties": {
+      "ISO": "BG-TGV22",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "73626",
+      "NAME_1": "TGV",
+      "TYPE_1": "Област",
+      "ID_2": "53535",
+      "NAME_2": "Омуртаг",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.174495, 43.518226], [26.1564315000001, 43.5210700000001], [26.151418, 43.525855], [26.1382585000001, 43.5289080000001], [26.129214, 43.5244450010001], [26.118142, 43.5204210000001], [26.1075260000001, 43.524341], [26.0954990000001, 43.5244895000001], [26.0775840000001, 43.515545], [26.0674025000001, 43.5178940000001], [26.0462010000001, 43.5131400000001], [26.0446415000001, 43.5150174990001], [26.0407490000001, 43.5062465], [26.0402195, 43.495482], [26.0323675000001, 43.4871230000001], [26.0441750000001, 43.4760615000001], [26.0298465000001, 43.464434], [26.031595, 43.4629085], [26.0274475000001, 43.4573579990001], [26.0293380000001, 43.4522640000001], [26.0438025, 43.4533095], [26.049832, 43.4495595000001], [26.0498105, 43.4467230010001], [26.0417485, 43.4434230000001], [26.0457715000001, 43.4395534990001], [26.0654885000001, 43.4376225], [26.0768890000001, 43.4301560000001], [26.0774050000001, 43.4262525], [26.0944260000001, 43.429454499], [26.0944630000001, 43.4295000000001], [26.1047595000001, 43.4264249990001], [26.114988, 43.4213360000001], [26.133537, 43.4214465000001], [26.1538865000001, 43.4160655000001], [26.1661990000001, 43.422558499], [26.1692580000001, 43.426862], [26.1747335000001, 43.4277345], [26.1770680000001, 43.420984499], [26.1730565, 43.4185785000001], [26.1796915, 43.413755], [26.1904825, 43.4151375000001], [26.189238, 43.417987501], [26.2073215, 43.4223870000001], [26.210762, 43.4261295000001], [26.2083335, 43.4276705010001], [26.2089595000001, 43.432258], [26.2240190000001, 43.4328835000001], [26.2226920000001, 43.4374090000001], [26.2267775, 43.4435100010001], [26.2253220000001, 43.45525], [26.2288615000001, 43.4606360000001], [26.227399, 43.4641290000001], [26.2180320000001, 43.4711875], [26.210633, 43.4783855000001], [26.2066375000001, 43.4842555000001], [26.2164105000001, 43.4925440000001], [26.2252275000001, 43.4925185000001], [26.238366, 43.5082200000001], [26.2223520000001, 43.5222535], [26.213014, 43.5231485], [26.2000725, 43.525625001], [26.200412, 43.5230655], [26.1889780000001, 43.5173935], [26.1732715000001, 43.5166145000001], [26.174495, 43.518226] ] ] },
+    "properties": {
+      "ISO": "BG-TGV23",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "73626",
+      "NAME_1": "TGV",
+      "TYPE_1": "Област",
+      "ID_2": "53552",
+      "NAME_2": "Опака",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.9228345000001, 42.1050950000001], [27.9135190000001, 42.1112440000001], [27.9082145, 42.118843], [27.9036085000001, 42.1288795], [27.896932142, 42.1411015190001], [27.89559, 42.1435585], [27.8934849620001, 42.1436660630001], [27.8851395, 42.1440925000001], [27.8766155000001, 42.1504595000001], [27.8526650000001, 42.1654780000001], [27.8525220000001, 42.1697005], [27.85865341, 42.169579146], [27.8596460000001, 42.1695595], [27.8597050000001, 42.173252], [27.8404045, 42.1934965], [27.8302100000001, 42.1986470000001], [27.8247015000001, 42.1972465000001], [27.8181745000001, 42.2033079990001], [27.8188495000001, 42.2069175010001], [27.8044415000001, 42.2161295000001], [27.7965818260001, 42.215757567], [27.7928295, 42.2155800000001], [27.778219, 42.22596], [27.7763125000001, 42.2198090000001], [27.7564140000001, 42.2207795], [27.74812, 42.218537], [27.7399980000001, 42.2243225], [27.7158455000001, 42.2239575], [27.7064865, 42.2207640010001], [27.6944515000001, 42.2071940000001], [27.6925190000001, 42.1950464990001], [27.6916035, 42.1927060000001], [27.6711695000001, 42.1856090000001], [27.6547335000001, 42.1737795000001], [27.6466075000001, 42.1678004990001], [27.641217, 42.1681100000001], [27.6434395000001, 42.1641345], [27.6621385, 42.1676395000001], [27.6636350000001, 42.1567155000001], [27.6687170000001, 42.147954], [27.6607015000001, 42.1460915000001], [27.6648890000001, 42.1341965], [27.6404245000001, 42.127738499], [27.6385020000001, 42.1224940000001], [27.6363960000001, 42.1152105], [27.636516, 42.1068655], [27.6518555000001, 42.097809], [27.65104, 42.090104001], [27.6663745000001, 42.083383499], [27.6842, 42.0662645], [27.6860155000001, 42.0567970000001], [27.6934525, 42.0552255000001], [27.7073770000001, 42.0618505], [27.7157235, 42.0591375000001], [27.716482, 42.051923], [27.7173525000001, 42.037318], [27.7234980000001, 42.0319430000001], [27.7363605, 42.030758001], [27.734789, 42.0276290000001], [27.734768, 42.0271250000001], [27.74152, 42.028329], [27.7428840000001, 42.0179849990001], [27.7425450000001, 42.0074540000001], [27.7428320000001, 42.004282], [27.7594955000001, 41.9952925000001], [27.7829835000001, 42.0107745], [27.8283920000001, 41.9978025], [27.8313275, 41.9987795000001], [27.8347225000001, 41.9943620000001], [27.8447645000001, 41.9905205000001], [27.85474, 41.9907875000001], [27.8613340000001, 41.9945945000001], [27.858078, 42.0003395000001], [27.8598845000001, 42.0058785000001], [27.864544, 42.006042499], [27.86619396, 42.003701413], [27.8692760000001, 41.9993285], [27.8771835000001, 41.9999084990001], [27.879034, 41.994629], [27.8848610000001, 41.996094], [27.899912, 41.9918825], [27.9000550000001, 41.9817810000001], [27.9098855, 41.9733160000001], [27.9163610000001, 41.9727975000001], [27.9219475, 41.9827455000001], [27.9257260000001, 41.976162], [27.9313145, 41.9786455], [27.93359, 41.9848940000001], [27.9437945, 41.9772415], [27.9561560000001, 41.9811554990001], [27.9569970000001, 41.976166], [27.9762230000001, 41.9840545000001], [27.97608, 41.9898680000001], [27.9930075, 41.9802515000001], [28.0122015000001, 41.9798965000001], [28.0355125, 41.9830795], [28.0309335000001, 41.997265], [28.021736, 42.0035820000001], [28.0174675000001, 42.0203325000001], [28.010092, 42.0225715], [28.0151635, 42.0274810000001], [28.0029260000001, 42.0352665], [28.003931, 42.0401800010001], [27.9981215, 42.045933], [27.992899, 42.0460665000001], [27.9871175000001, 42.054073499], [27.993271, 42.05954], [27.991539, 42.063225], [27.9816720000001, 42.0627020000001], [27.973259378, 42.0677044880001], [27.9688155000001, 42.070347], [27.9617880000001, 42.0783270000001], [27.9559860000001, 42.0853655000001], [27.9546186120001, 42.093044175], [27.9546125000001, 42.0930785000001], [27.9462645, 42.1044005000001], [27.9369525000001, 42.1050110000001], [27.928634, 42.1018105], [27.9228345000001, 42.1050950000001] ] ] },
+    "properties": {
+      "ISO": "BG-BGS13",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "48619",
+      "NAME_2": "Царево",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.9143415, 42.7325440000001], [26.9205775, 42.7321205000001], [26.921566, 42.7372050000001], [26.9157765000001, 42.738727], [26.918328, 42.747847001], [26.9287725, 42.751092], [26.9297530000001, 42.7575175000001], [26.9265765000001, 42.7612255000001], [26.9314585000001, 42.7653940000001], [26.9458300000001, 42.7612005], [26.94138, 42.757240499], [26.9427255000001, 42.7532875000001], [26.9527675, 42.7516985], [26.9515995, 42.7570649990001], [26.9643235, 42.7589340000001], [26.9709115000001, 42.7556625], [26.9713610000001, 42.7483995000001], [26.9748425, 42.755393], [26.9728220000001, 42.7627635000001], [26.9813060000001, 42.7714149990001], [26.9830905000001, 42.7872245], [26.9781800000001, 42.787835499], [26.9766100000001, 42.7960305], [26.9786445, 42.801164], [26.9881335000001, 42.803412], [26.9914565, 42.8047320000001], [27.0144520000001, 42.8012595000001], [27.0288975, 42.8040935000001], [27.0429600000001, 42.8014775], [27.0414630000001, 42.8046615000001], [27.042221, 42.8121675000001], [27.0490215, 42.8189725], [27.0660945000001, 42.822886], [27.087659, 42.8238710000001], [27.093757, 42.8334885], [27.0846495000001, 42.841488], [27.072172, 42.8406189990001], [27.0614350000001, 42.84714], [27.0439720000001, 42.8466075000001], [27.049107, 42.8487850000001], [27.0513565000001, 42.8529130000001], [27.047782, 42.868588], [27.0411715000001, 42.8921485000001], [27.0362385, 42.8999575], [27.0224960000001, 42.903315499], [27.014596, 42.9159560000001], [27.0147285, 42.9195315000001], [27.013272, 42.9269830000001], [27.0060580000001, 42.9216210000001], [27.0018195000001, 42.926898001], [26.9949510000001, 42.9441115000001], [26.9934495000001, 42.9464390000001], [26.9865580000001, 42.9466320000001], [26.9777805, 42.9423985000001], [26.953495, 42.9454215000001], [26.9353080000001, 42.935457], [26.9209240000001, 42.9410675], [26.9169755, 42.9387505], [26.9167425000001, 42.935322], [26.905361, 42.9368275], [26.8994020000001, 42.9481690000001], [26.8692830000001, 42.9455225], [26.855358, 42.9392105000001], [26.8313375000001, 42.9457885], [26.8188225000001, 42.9462105000001], [26.8068845, 42.9483565], [26.7961125, 42.9495085], [26.7834105000001, 42.9337845000001], [26.780226, 42.921608], [26.7756650000001, 42.918281], [26.7676070000001, 42.9176570000001], [26.7596255, 42.9072225], [26.7587070000001, 42.9047475], [26.748928, 42.9033485], [26.7348655000001, 42.9043345010001], [26.7321405000001, 42.9017009990001], [26.7303715, 42.8980225], [26.7232550000001, 42.9016369990001], [26.7078025000001, 42.901927501], [26.7018675, 42.9049335], [26.6825195000001, 42.896754], [26.6774800000001, 42.899838], [26.6631370000001, 42.9001625000001], [26.6519685000001, 42.903374001], [26.6500070000001, 42.9063175000001], [26.6560245000001, 42.9099830010001], [26.6636975000001, 42.9233740000001], [26.666619, 42.9230670000001], [26.6682470000001, 42.919411499], [26.6665170000001, 42.9147594990001], [26.6700010000001, 42.9169400000001], [26.6671095, 42.9291925000001], [26.663392, 42.9319365010001], [26.650627, 42.9307955], [26.6427100000001, 42.9251160000001], [26.633294, 42.9232534990001], [26.6308255000001, 42.9292520000001], [26.627143, 42.9313520000001], [26.6133810000001, 42.9269249990001], [26.5957355, 42.9267965000001], [26.5899885000001, 42.9201185000001], [26.5912730000001, 42.9165150000001], [26.5971040000001, 42.9131945], [26.6032435000001, 42.9131395000001], [26.6029080000001, 42.907001], [26.5970715, 42.8960395010001], [26.5884755000001, 42.8856710000001], [26.5838945, 42.877968501], [26.5839095000001, 42.8703225], [26.5885640000001, 42.8606725000001], [26.596891, 42.8527595], [26.5990105000001, 42.8398040000001], [26.5911810000001, 42.834148], [26.6031545000001, 42.8280980000001], [26.578655, 42.8148580000001], [26.5880530000001, 42.814829], [26.6015565000001, 42.8072135], [26.601958, 42.8051345000001], [26.5943350000001, 42.8016270000001], [26.6116425000001, 42.7898405], [26.6118475000001, 42.7836320000001], [26.6095405, 42.7798060000001], [26.6053085, 42.7815250000001], [26.6067885000001, 42.7745599990001], [26.6310800000001, 42.771124], [26.6362080000001, 42.7656065], [26.6491730000001, 42.7619005000001], [26.6530910000001, 42.7563695000001], [26.6665975, 42.7589540000001], [26.668323, 42.7443835010001], [26.6868395000001, 42.7439810000001], [26.682244, 42.7417485], [26.6866620000001, 42.7255005000001], [26.6984405000001, 42.718373], [26.7104360000001, 42.7230650000001], [26.7117605, 42.7200605000001], [26.7079255, 42.7164035000001], [26.70881, 42.7141675], [26.715039, 42.714341], [26.714148, 42.7113265], [26.7143980000001, 42.703722], [26.706307, 42.705201], [26.7057745000001, 42.700629001], [26.7063660000001, 42.694669], [26.714457, 42.6872555], [26.7140095, 42.6845615], [26.718441, 42.674788], [26.7295090000001, 42.6718745000001], [26.7444620000001, 42.6637405000001], [26.7652715, 42.6639745000001], [26.76775, 42.6611695], [26.7860795, 42.6591340000001], [26.7931530000001, 42.6601645000001], [26.7919965, 42.6642285], [26.8002105, 42.6654769990001], [26.8039610000001, 42.6650729990001], [26.7965695, 42.680217], [26.8013925000001, 42.6843725000001], [26.7958665, 42.6933415], [26.7866585, 42.6943965], [26.7863425, 42.6984485], [26.7942305, 42.7015065000001], [26.79718, 42.7094770000001], [26.7943095000001, 42.7133400000001], [26.805575, 42.7094425000001], [26.8068615, 42.7125245], [26.8043035000001, 42.7174055], [26.8280735000001, 42.7128465000001], [26.8297365, 42.7171760000001], [26.836302, 42.7177845000001], [26.8433735, 42.7184290000001], [26.8528785, 42.717091], [26.8551205000001, 42.720381], [26.8623610000001, 42.717607], [26.8765815, 42.7089020000001], [26.8880005, 42.7168065010001], [26.9060725000001, 42.7185610000001], [26.910855, 42.7159080000001], [26.9143415, 42.7325440000001] ] ] },
+    "properties": {
+      "ISO": "BG-BGS23",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "70247",
+      "NAME_2": "Сунгурларе",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.5224825, 42.3270724990001], [27.5229640000001, 42.3309300010001], [27.5148100000001, 42.329391], [27.51117, 42.3315145], [27.5168430000001, 42.341963499], [27.5267385000001, 42.349069], [27.5090055000001, 42.3524860000001], [27.5089310000001, 42.3528150000001], [27.508141, 42.356313001], [27.5006715000001, 42.3677250010001], [27.499469, 42.3747415], [27.529836, 42.384309], [27.530182, 42.3952095000001], [27.5359260000001, 42.412222], [27.5380105, 42.415265], [27.5484520000001, 42.4157650000001], [27.5511445000001, 42.4204760000001], [27.546663, 42.424586], [27.5466890000001, 42.4276975000001], [27.5596455, 42.434695499], [27.5703925, 42.4457475], [27.559696, 42.4474714990001], [27.5390570000001, 42.45721], [27.5360220000001, 42.4541360000001], [27.538933, 42.4488145], [27.5212885, 42.42997], [27.5110705000001, 42.4282035000001], [27.508852, 42.4382400000001], [27.4916325, 42.4463920000001], [27.4795, 42.461754], [27.4722805000001, 42.4538880000001], [27.4766695000001, 42.450344], [27.4738282440001, 42.4478272310001], [27.4685000000001, 42.4431075000001], [27.4517000000001, 42.4565390000001], [27.4479045, 42.461487], [27.4469530000001, 42.4772340000001], [27.4564915, 42.488888], [27.4581850000001, 42.4828679990001], [27.4620550000001, 42.4829710000001], [27.4629699920001, 42.482997346], [27.4794025, 42.4834704990001], [27.4838485000001, 42.4959220000001], [27.4847105000001, 42.5099830010001], [27.488340797, 42.5192215080001], [27.4935875, 42.5325735010001], [27.5120985, 42.5531425], [27.5289095000001, 42.560032], [27.5399820000001, 42.5589790000001], [27.5403475000001, 42.5687635], [27.5366090000001, 42.575202], [27.5242215000001, 42.58558], [27.5155515000001, 42.5796530000001], [27.5088785, 42.584636], [27.5052085, 42.5895425000001], [27.5086395000001, 42.5914095000001], [27.5144980000001, 42.5892620000001], [27.5222775, 42.5949685], [27.5225070000001, 42.6012040000001], [27.519277, 42.6119850000001], [27.5160060000001, 42.6152415], [27.509758, 42.6141215000001], [27.5065930000001, 42.6203990000001], [27.5072025000001, 42.6397220010001], [27.5193365000001, 42.6447825000001], [27.5152945, 42.664501], [27.5055485, 42.6651975], [27.488792, 42.6853435000001], [27.493904, 42.701757], [27.4968950000001, 42.703225], [27.4830955, 42.707098], [27.480087, 42.7063675000001], [27.460677, 42.7122065], [27.4508480000001, 42.711773001], [27.4321880000001, 42.7121645], [27.4127375, 42.7076480000001], [27.4089460000001, 42.6982145000001], [27.4171240000001, 42.6934575000001], [27.4155725000001, 42.6863530000001], [27.425533, 42.6796255], [27.4163655, 42.6777949990001], [27.4136235, 42.669691], [27.4092655000001, 42.661975], [27.393831, 42.6575940000001], [27.385771, 42.659184], [27.3821400000001, 42.6664815], [27.3680650000001, 42.665195], [27.361411, 42.6649595000001], [27.3614455000001, 42.654639], [27.3554835000001, 42.6432340000001], [27.3374135, 42.639852999], [27.3167030000001, 42.646044999], [27.3045910000001, 42.6467124990001], [27.2808535, 42.646255501], [27.2725725, 42.653439], [27.267461, 42.6552795000001], [27.2692300900001, 42.6540873960001], [27.2700755000001, 42.6537745000001], [27.2705346340001, 42.65320834], [27.2789265000001, 42.6406495000001], [27.2757165, 42.6442460000001], [27.264714, 42.6198485000001], [27.256292, 42.6213220000001], [27.2459565, 42.6186475000001], [27.2349765000001, 42.6109795], [27.2397970000001, 42.6060120000001], [27.2631775, 42.5920515], [27.2755355, 42.5981195], [27.290201, 42.5987495000001], [27.2991615, 42.596925501], [27.3012640000001, 42.592791], [27.3230275, 42.5979055], [27.3684755, 42.564825], [27.360396, 42.5587725], [27.359991, 42.5501860000001], [27.3372725, 42.535423], [27.3446470000001, 42.527593], [27.3198685, 42.5197620000001], [27.316473, 42.518808], [27.2949065, 42.520725], [27.2769020000001, 42.532657], [27.2696585, 42.5317475000001], [27.2624135, 42.5443865], [27.2545895000001, 42.5415080000001], [27.2505045, 42.5475870000001], [27.210996, 42.5489185000001], [27.2089315000001, 42.548931], [27.2121865, 42.534525], [27.218783, 42.529028], [27.2253170000001, 42.5169250000001], [27.218488, 42.5115300000001], [27.2413760000001, 42.4900685000001], [27.252782, 42.4889269990001], [27.2563260000001, 42.4811290000001], [27.2603915, 42.4805885000001], [27.2706665000001, 42.4795605], [27.2715275, 42.4858810000001], [27.2871435000001, 42.487063], [27.2944575000001, 42.49397], [27.301883, 42.4968640000001], [27.3096225, 42.4937905], [27.3182755, 42.4936265000001], [27.3191555000001, 42.4873250000001], [27.3247715000001, 42.4888310000001], [27.3220265000001, 42.4730470000001], [27.3327105000001, 42.4693735000001], [27.3486120000001, 42.4709070000001], [27.3473715000001, 42.4676865000001], [27.3593275000001, 42.4584095000001], [27.3684450000001, 42.4559760000001], [27.3717535000001, 42.441308], [27.3867310000001, 42.4230795], [27.3572715, 42.4107025000001], [27.361144, 42.4031660000001], [27.3900285, 42.4052235], [27.3876355, 42.4010575], [27.3897900000001, 42.3951915000001], [27.397209, 42.3944275000001], [27.4049315, 42.3851470000001], [27.4155415000001, 42.3880045010001], [27.4324375000001, 42.3814665], [27.4345010000001, 42.372466], [27.4395315, 42.3705965], [27.4435065000001, 42.365038], [27.4427685000001, 42.3596415000001], [27.4366620000001, 42.351213], [27.4387770000001, 42.337925], [27.4448405000001, 42.3238975], [27.45194, 42.316106501], [27.4500645000001, 42.302743999], [27.4469125000001, 42.2955785], [27.4516605000001, 42.3031250000001], [27.4745765000001, 42.308391], [27.4870320000001, 42.3075825000001], [27.4969985000001, 42.3088005000001], [27.502664, 42.3183135], [27.5025055, 42.3241185000001], [27.5080155000001, 42.322527], [27.5167885000001, 42.3235279990001], [27.5224825, 42.3270724990001] ] ] },
+    "properties": {
+      "ISO": "BG-BGS04",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "7079",
+      "NAME_2": "Бургас",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.065594, 42.735218], [27.058054, 42.7438270000001], [27.0460465, 42.757102], [27.0409575, 42.759171], [27.0445320000001, 42.7605429990001], [27.0435890000001, 42.7705570000001], [27.0499595000001, 42.7752555000001], [27.058616, 42.7765165000001], [27.061904, 42.7840840000001], [27.0609115, 42.7867005000001], [27.0389910000001, 42.7883305010001], [27.0360055, 42.7926905], [27.0429600000001, 42.8014775], [27.0288975, 42.8040935000001], [27.0144520000001, 42.8012595000001], [26.9914565, 42.8047320000001], [26.9881335000001, 42.803412], [26.9786445, 42.801164], [26.9766100000001, 42.7960305], [26.9781800000001, 42.787835499], [26.9830905000001, 42.7872245], [26.9813060000001, 42.7714149990001], [26.9728220000001, 42.7627635000001], [26.9748425, 42.755393], [26.9713610000001, 42.7483995000001], [26.9709115000001, 42.7556625], [26.9643235, 42.7589340000001], [26.9515995, 42.7570649990001], [26.9527675, 42.7516985], [26.9427255000001, 42.7532875000001], [26.94138, 42.757240499], [26.9458300000001, 42.7612005], [26.9314585000001, 42.7653940000001], [26.9265765000001, 42.7612255000001], [26.9297530000001, 42.7575175000001], [26.9287725, 42.751092], [26.918328, 42.747847001], [26.9157765000001, 42.738727], [26.921566, 42.7372050000001], [26.9205775, 42.7321205000001], [26.9143415, 42.7325440000001], [26.910855, 42.7159080000001], [26.9060725000001, 42.7185610000001], [26.8880005, 42.7168065010001], [26.8765815, 42.7089020000001], [26.8623610000001, 42.717607], [26.8551205000001, 42.720381], [26.8528785, 42.717091], [26.8433735, 42.7184290000001], [26.836302, 42.7177845000001], [26.8297365, 42.7171760000001], [26.8280735000001, 42.7128465000001], [26.8043035000001, 42.7174055], [26.8068615, 42.7125245], [26.805575, 42.7094425000001], [26.7943095000001, 42.7133400000001], [26.79718, 42.7094770000001], [26.7942305, 42.7015065000001], [26.7863425, 42.6984485], [26.7866585, 42.6943965], [26.7958665, 42.6933415], [26.8013925000001, 42.6843725000001], [26.7965695, 42.680217], [26.8039610000001, 42.6650729990001], [26.8002105, 42.6654769990001], [26.7919965, 42.6642285], [26.7931530000001, 42.6601645000001], [26.7860795, 42.6591340000001], [26.76775, 42.6611695], [26.7652715, 42.6639745000001], [26.7444620000001, 42.6637405000001], [26.7407400000001, 42.6575815], [26.7406235, 42.6528710000001], [26.7571445, 42.6370125], [26.772183, 42.6369125000001], [26.7744805, 42.6288525000001], [26.7763185000001, 42.6229845], [26.7839565, 42.6208155000001], [26.7841605, 42.6202484990001], [26.790648, 42.6050500000001], [26.781533, 42.6013315000001], [26.7838350000001, 42.5890385000001], [26.7905870000001, 42.5873175], [26.785924, 42.582662], [26.8115575, 42.5683560000001], [26.809669, 42.5564159990001], [26.8068440000001, 42.545019], [26.8310625, 42.5272615000001], [26.8375595000001, 42.5225525000001], [26.8434965000001, 42.5223935000001], [26.8454295, 42.5187535000001], [26.8386865, 42.5073695], [26.854318, 42.5029504990001], [26.864385, 42.4940875], [26.8810155, 42.4958490010001], [26.8800640000001, 42.4908045000001], [26.8739645000001, 42.4878305], [26.8696135000001, 42.479963501], [26.8840290000001, 42.4775655010001], [26.8768775, 42.4587625], [26.8802650000001, 42.4586130000001], [26.8818995, 42.4504735], [26.882638, 42.4497040000001], [26.898373, 42.4446130000001], [26.8960305, 42.4506535], [26.9410290000001, 42.4523790000001], [26.947592, 42.4468975], [26.9471715, 42.4377065], [26.96973, 42.4331035000001], [26.9697475, 42.4311135], [26.988549, 42.4339805010001], [26.9889480000001, 42.4366865000001], [26.9953165000001, 42.4436220010001], [27.0102825000001, 42.4572435000001], [27.0220800000001, 42.458200999], [27.0432045000001, 42.458402], [27.06197, 42.4567045000001], [27.0635985000001, 42.4580095000001], [27.1069365000001, 42.4528485000001], [27.131197, 42.4432410000001], [27.1298850000001, 42.4485835], [27.132187, 42.4551770000001], [27.140751, 42.4620115000001], [27.1305560000001, 42.470381], [27.1256525000001, 42.4764250000001], [27.118118, 42.4910090000001], [27.1435595, 42.4990450000001], [27.141178, 42.5149250000001], [27.1291225000001, 42.524814], [27.1342335000001, 42.5322245], [27.1278750000001, 42.5409540000001], [27.1207075, 42.5349190000001], [27.1110955, 42.5410840000001], [27.1065390000001, 42.543330999], [27.100829, 42.5581505000001], [27.1054490000001, 42.5603845010001], [27.106791, 42.5665655000001], [27.1217310000001, 42.5864040000001], [27.1206055000001, 42.596774999], [27.1529540000001, 42.6039500010001], [27.1562890000001, 42.6102450010001], [27.1606495, 42.6114190000001], [27.1595885, 42.615212], [27.156012, 42.6271355000001], [27.1534115000001, 42.6346815000001], [27.1426505000001, 42.632398499], [27.1389165000001, 42.6303815000001], [27.1319115000001, 42.635771], [27.119246, 42.6317550000001], [27.1107185000001, 42.6328350000001], [27.098017, 42.6417665000001], [27.0930720000001, 42.6419690000001], [27.0984065000001, 42.6451840010001], [27.0935095, 42.649772], [27.0944490000001, 42.6529585000001], [27.1024485, 42.6583645000001], [27.1060685, 42.6712755], [27.1152135, 42.6731175], [27.1146450000001, 42.6796245], [27.1135345000001, 42.6833359990001], [27.0965915, 42.684135], [27.0935795, 42.6976100000001], [27.0860300000001, 42.7017265000001], [27.0807155, 42.7095200000001], [27.0770600000001, 42.7195505], [27.074285, 42.7282200000001], [27.0834945, 42.7435140000001], [27.0848835, 42.7552475000001], [27.0746915, 42.76023], [27.0703290000001, 42.7620385000001], [27.065123, 42.7460655000001], [27.0757550000001, 42.7450640010001], [27.0732310000001, 42.739356], [27.0665695000001, 42.7378610000001], [27.065594, 42.735218] ] ] },
+    "properties": {
+      "ISO": "BG-BGS09",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "36525",
+      "NAME_2": "Карнобат",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.2220820000001, 42.0985030000001], [27.2401255, 42.105015], [27.2536945, 42.0992620000001], [27.2706660000001, 42.1043205], [27.2730330000001, 42.1018295000001], [27.284096, 42.107023], [27.2871415000001, 42.1192370000001], [27.2876035, 42.1431435000001], [27.2806125000001, 42.1520950010001], [27.2743070000001, 42.1533715000001], [27.2688680000001, 42.155559], [27.267658, 42.160466], [27.2733815, 42.1755429990001], [27.2630975000001, 42.1782415000001], [27.2562165000001, 42.1861650000001], [27.2613485000001, 42.1925525010001], [27.2608985000001, 42.196989], [27.263353, 42.2008875010001], [27.2680360000001, 42.1993140000001], [27.2857805, 42.203671], [27.2938305000001, 42.199827499], [27.2984425000001, 42.2027830000001], [27.3000520000001, 42.2088130000001], [27.298683, 42.210402], [27.3019565000001, 42.2155230000001], [27.3262065000001, 42.2189010000001], [27.33763, 42.2257125], [27.3262755000001, 42.2361205], [27.3183945000001, 42.238169], [27.3126155, 42.244737], [27.3066095, 42.2565155], [27.3126125000001, 42.2684150000001], [27.3129575, 42.2725520000001], [27.3090280000001, 42.274724], [27.2829120000001, 42.2876255], [27.2818175, 42.294428], [27.2849425000001, 42.309064], [27.2825470000001, 42.3110379990001], [27.284317, 42.3222145], [27.290088, 42.319827], [27.3035015, 42.3309330000001], [27.3037345000001, 42.3350165000001], [27.2997535000001, 42.3372380000001], [27.2989095, 42.342117], [27.3174155, 42.3436255], [27.3237745000001, 42.3390190000001], [27.3300215, 42.3487145], [27.340041, 42.351977], [27.341191, 42.3548465000001], [27.333809, 42.3587725], [27.3346835, 42.375836], [27.319447, 42.402434], [27.3045045000001, 42.3974585], [27.2882765000001, 42.4034085000001], [27.2796710000001, 42.4077570000001], [27.2635910000001, 42.4161570000001], [27.2574230000001, 42.4099975], [27.2498575000001, 42.4145215], [27.2409030000001, 42.4074620000001], [27.2189095000001, 42.416957999], [27.2154810000001, 42.4183425000001], [27.2004200000001, 42.4228055], [27.173748, 42.425893], [27.1540075, 42.4370075], [27.1440840000001, 42.4405550000001], [27.131197, 42.4432410000001], [27.1069365000001, 42.4528485000001], [27.0635985000001, 42.4580095000001], [27.06197, 42.4567045000001], [27.0432045000001, 42.458402], [27.0220800000001, 42.458200999], [27.0102825000001, 42.4572435000001], [26.9953165000001, 42.4436220010001], [26.9889480000001, 42.4366865000001], [26.988549, 42.4339805010001], [26.9697475, 42.4311135], [26.967949, 42.4166265000001], [26.9645375000001, 42.4148785], [26.9572415000001, 42.4101885000001], [26.9400645000001, 42.4061280000001], [26.9044470000001, 42.4066445], [26.8684295000001, 42.3946355000001], [26.86882, 42.3883765000001], [26.862353, 42.3876799990001], [26.8679435, 42.3761135], [26.8671955, 42.3725645000001], [26.8613275000001, 42.3676085000001], [26.866139, 42.3675825], [26.879893, 42.3670710010001], [26.899978, 42.3476235], [26.9170730000001, 42.3415220000001], [26.9119180000001, 42.3363130010001], [26.9190755000001, 42.3277485], [26.920174, 42.3197880010001], [26.90966, 42.3070995], [26.9203665000001, 42.2982495000001], [26.921837, 42.294315], [26.9260265, 42.2889684990001], [26.9334620000001, 42.2889280000001], [26.9403555000001, 42.2821275000001], [26.9681815000001, 42.2833410000001], [26.9673365, 42.2755995000001], [26.951446, 42.266777], [26.9503100000001, 42.2603325000001], [26.9358625, 42.2411960000001], [26.9368125, 42.2398185000001], [26.9412425, 42.2377045000001], [26.9440780000001, 42.2291680000001], [26.9588640000001, 42.2144535], [26.9764675000001, 42.2150120000001], [26.9898605000001, 42.2071740000001], [26.9752120000001, 42.2078070010001], [26.9714250000001, 42.1985295010001], [26.9401550000001, 42.1883490000001], [26.935345, 42.176404], [26.9350395000001, 42.168172], [26.937908, 42.1602075000001], [26.9430625000001, 42.144318501], [26.9514045, 42.144885], [26.959186, 42.135773499], [26.9736405, 42.1346745000001], [26.9770785000001, 42.1236870000001], [26.9794285, 42.1071295], [26.9838975000001, 42.1040860000001], [26.9841660000001, 42.1006095000001], [26.9919115000001, 42.0991510000001], [27.005162, 42.1051455], [27.0152725, 42.103221499], [27.0174050000001, 42.1003615000001], [27.0382785, 42.097906499], [27.0466420000001, 42.0998625], [27.0492390000001, 42.0931830000001], [27.0596505, 42.0883370000001], [27.0670930000001, 42.0931815010001], [27.072954, 42.0891990000001], [27.1034965000001, 42.0851745000001], [27.1086275000001, 42.0869980000001], [27.1120970000001, 42.0835455000001], [27.1259840000001, 42.0768625000001], [27.131691, 42.0666654990001], [27.1413515, 42.0660590000001], [27.1532325000001, 42.0720595000001], [27.1592825000001, 42.0652160000001], [27.171768, 42.065342501], [27.1769445, 42.06987], [27.184765, 42.063579501], [27.1912555000001, 42.059943999], [27.2071265000001, 42.0606690000001], [27.2037580000001, 42.069622], [27.1982310000001, 42.0733065000001], [27.1986315, 42.0785215000001], [27.2027170000001, 42.0830195], [27.2168580000001, 42.085449], [27.2220820000001, 42.0985030000001] ] ] },
+    "properties": {
+      "ISO": "BG-BGS06",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "17974",
+      "NAME_2": "Средец",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.1146450000001, 42.6796245], [27.1152135, 42.6731175], [27.1060685, 42.6712755], [27.1024485, 42.6583645000001], [27.0944490000001, 42.6529585000001], [27.0935095, 42.649772], [27.0984065000001, 42.6451840010001], [27.0930720000001, 42.6419690000001], [27.098017, 42.6417665000001], [27.1107185000001, 42.6328350000001], [27.119246, 42.6317550000001], [27.1319115000001, 42.635771], [27.1389165000001, 42.6303815000001], [27.1426505000001, 42.632398499], [27.1534115000001, 42.6346815000001], [27.156012, 42.6271355000001], [27.1595885, 42.615212], [27.1606495, 42.6114190000001], [27.1607215000001, 42.611455], [27.163955, 42.6172990000001], [27.1933030000001, 42.6244895], [27.206528, 42.6260334990001], [27.208149, 42.6212170000001], [27.2135745, 42.6197485000001], [27.2225690000001, 42.612351], [27.2308860000001, 42.6142075000001], [27.2349765000001, 42.6109795], [27.2459565, 42.6186475000001], [27.256292, 42.6213220000001], [27.264714, 42.6198485000001], [27.2757165, 42.6442460000001], [27.2789265000001, 42.6406495000001], [27.2705346340001, 42.65320834], [27.2700755000001, 42.6537745000001], [27.2692300900001, 42.6540873960001], [27.267461, 42.6552795000001], [27.2725725, 42.653439], [27.2808535, 42.646255501], [27.3045910000001, 42.6467124990001], [27.3167030000001, 42.646044999], [27.3374135, 42.639852999], [27.3554835000001, 42.6432340000001], [27.3614455000001, 42.654639], [27.361411, 42.6649595000001], [27.3680650000001, 42.665195], [27.3821400000001, 42.6664815], [27.385771, 42.659184], [27.393831, 42.6575940000001], [27.4092655000001, 42.661975], [27.4136235, 42.669691], [27.4163655, 42.6777949990001], [27.425533, 42.6796255], [27.4155725000001, 42.6863530000001], [27.4171240000001, 42.6934575000001], [27.4089460000001, 42.6982145000001], [27.4127375, 42.7076480000001], [27.4321880000001, 42.7121645], [27.4306710000001, 42.7196405], [27.4194265, 42.7239685000001], [27.419701, 42.7277144990001], [27.4247740000001, 42.7430360000001], [27.4243690000001, 42.7604135], [27.4039905000001, 42.7669125], [27.4019135, 42.7700130000001], [27.3918535, 42.7698139990001], [27.3718420000001, 42.7695700000001], [27.3434295000001, 42.767142], [27.3322325, 42.7696065000001], [27.3240480000001, 42.770724], [27.3219645, 42.771986], [27.3146975000001, 42.7694215000001], [27.3018290000001, 42.7683710000001], [27.2656385, 42.769915], [27.2447695000001, 42.7713485], [27.22704, 42.7738075], [27.2268765000001, 42.7738305], [27.216485, 42.765791], [27.2057265, 42.7667335], [27.193245, 42.767907999], [27.1809280000001, 42.7554020000001], [27.156322, 42.7578105000001], [27.1486955, 42.7528140000001], [27.138738, 42.7561000000001], [27.1323525, 42.7607180000001], [27.1165475, 42.7636580000001], [27.1052320000001, 42.7783430000001], [27.1048675000001, 42.784476], [27.100221, 42.7859975000001], [27.0977340000001, 42.7812405000001], [27.0941710000001, 42.7838820000001], [27.0671855000001, 42.786390999], [27.0609115, 42.7867005000001], [27.061904, 42.7840840000001], [27.058616, 42.7765165000001], [27.0499595000001, 42.7752555000001], [27.0435890000001, 42.7705570000001], [27.0445320000001, 42.7605429990001], [27.0409575, 42.759171], [27.0460465, 42.757102], [27.058054, 42.7438270000001], [27.065594, 42.735218], [27.0665695000001, 42.7378610000001], [27.0732310000001, 42.739356], [27.0757550000001, 42.7450640010001], [27.065123, 42.7460655000001], [27.0703290000001, 42.7620385000001], [27.0746915, 42.76023], [27.0848835, 42.7552475000001], [27.0834945, 42.7435140000001], [27.074285, 42.7282200000001], [27.0770600000001, 42.7195505], [27.0807155, 42.7095200000001], [27.0860300000001, 42.7017265000001], [27.0935795, 42.6976100000001], [27.0965915, 42.684135], [27.1135345000001, 42.6833359990001], [27.1146450000001, 42.6796245] ] ] },
+    "properties": {
+      "ISO": "BG-BGS01",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "151",
+      "NAME_2": "Айтос",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.3391150000001, 42.9341945], [27.330568, 42.938032999], [27.312422, 42.9359405000001], [27.3135865, 42.9441814990001], [27.326058, 42.955992999], [27.3234175000001, 42.9634025], [27.301633, 42.9667535], [27.2874780000001, 42.9642870000001], [27.2878565, 42.968798], [27.2710690000001, 42.9756370000001], [27.2707655, 42.979505499], [27.2469850000001, 42.9822385000001], [27.2406350000001, 42.9827475000001], [27.221442, 42.9840555000001], [27.2079905, 42.9847070000001], [27.198318, 42.9812210000001], [27.1731815000001, 42.976507], [27.15576, 42.9678465000001], [27.146145001, 42.9581615000001], [27.1346475, 42.9570900000001], [27.1266590000001, 42.953497], [27.109667501, 42.954645], [27.1047675, 42.9545410000001], [27.104806426, 42.954410625], [27.0944335, 42.9539105000001], [27.0910095, 42.947637], [27.0606105000001, 42.9371120000001], [27.0508380000001, 42.934131501], [27.0387805, 42.9351855], [27.0237525000001, 42.927066], [27.013272, 42.9269830000001], [27.0147285, 42.9195315000001], [27.014596, 42.9159560000001], [27.0224960000001, 42.903315499], [27.0362385, 42.8999575], [27.0411715000001, 42.8921485000001], [27.047782, 42.868588], [27.0513565000001, 42.8529130000001], [27.049107, 42.8487850000001], [27.0439720000001, 42.8466075000001], [27.0614350000001, 42.84714], [27.072172, 42.8406189990001], [27.0846495000001, 42.841488], [27.093757, 42.8334885], [27.087659, 42.8238710000001], [27.0660945000001, 42.822886], [27.0490215, 42.8189725], [27.042221, 42.8121675000001], [27.0414630000001, 42.8046615000001], [27.0429600000001, 42.8014775], [27.0360055, 42.7926905], [27.0389910000001, 42.7883305010001], [27.0609115, 42.7867005000001], [27.0671855000001, 42.786390999], [27.0941710000001, 42.7838820000001], [27.0977340000001, 42.7812405000001], [27.100221, 42.7859975000001], [27.1048675000001, 42.784476], [27.1052320000001, 42.7783430000001], [27.1165475, 42.7636580000001], [27.1323525, 42.7607180000001], [27.138738, 42.7561000000001], [27.1486955, 42.7528140000001], [27.156322, 42.7578105000001], [27.1809280000001, 42.7554020000001], [27.193245, 42.767907999], [27.2057265, 42.7667335], [27.216485, 42.765791], [27.2268765000001, 42.7738305], [27.22704, 42.7738075], [27.2447695000001, 42.7713485], [27.2656385, 42.769915], [27.3018290000001, 42.7683710000001], [27.3146975000001, 42.7694215000001], [27.3219645, 42.771986], [27.3240480000001, 42.770724], [27.3322325, 42.7696065000001], [27.3434295000001, 42.767142], [27.3718420000001, 42.7695700000001], [27.3918535, 42.7698139990001], [27.4019135, 42.7700130000001], [27.4039905000001, 42.7669125], [27.4243690000001, 42.7604135], [27.4335715, 42.7664985000001], [27.4396320000001, 42.7657820000001], [27.4426395, 42.7780355], [27.4622880000001, 42.781344], [27.4746985, 42.7869709990001], [27.4869170000001, 42.7881085000001], [27.485775, 42.793958], [27.485169, 42.811764], [27.490416, 42.8234350000001], [27.486389, 42.8262844990001], [27.4845785000001, 42.8228745000001], [27.4774375000001, 42.8222475000001], [27.473804, 42.8299035000001], [27.4746975, 42.8355685000001], [27.4850895000001, 42.8399240000001], [27.4867565000001, 42.845442], [27.488102, 42.8569225000001], [27.4944105000001, 42.8667695010001], [27.5129650000001, 42.8755230000001], [27.5088075, 42.8812455], [27.5119745000001, 42.8867515000001], [27.496265, 42.8852585000001], [27.4889620000001, 42.883475], [27.4841275000001, 42.889502501], [27.4767505, 42.8899970000001], [27.4697155000001, 42.8925340000001], [27.4558815, 42.884332], [27.4347935000001, 42.8817935000001], [27.4275650000001, 42.8904345], [27.4150205, 42.8895395010001], [27.4040745, 42.9044215000001], [27.3771380000001, 42.9087615], [27.372717, 42.910877], [27.3620215, 42.9104], [27.3602095000001, 42.9190055], [27.3487645000001, 42.9263535000001], [27.345893, 42.927177], [27.3391150000001, 42.9341945] ] ] },
+    "properties": {
+      "ISO": "BG-BGS18",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "63224",
+      "NAME_2": "Руен",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.5994265, 42.190036499], [27.6005475000001, 42.1875630010001], [27.61823, 42.186001], [27.6227225000001, 42.1710890000001], [27.6239380000001, 42.1645845], [27.630521, 42.1638325000001], [27.6356670000001, 42.1686314990001], [27.641217, 42.1681100000001], [27.6466075000001, 42.1678004990001], [27.6547335000001, 42.1737795000001], [27.6711695000001, 42.1856090000001], [27.6916035, 42.1927060000001], [27.6925190000001, 42.1950464990001], [27.6944515000001, 42.2071940000001], [27.7064865, 42.2207640010001], [27.7158455000001, 42.2239575], [27.7399980000001, 42.2243225], [27.74812, 42.218537], [27.7564140000001, 42.2207795], [27.7763125000001, 42.2198090000001], [27.778219, 42.22596], [27.7782554720001, 42.229391536], [27.778347, 42.238003], [27.7735520000001, 42.2449035000001], [27.7683485000001, 42.241276], [27.756605, 42.2454985000001], [27.7510185, 42.2563895000001], [27.7543660000001, 42.285694], [27.7729170000001, 42.2949755010001], [27.7817590000001, 42.306381], [27.7798365, 42.3142550000001], [27.7785435000001, 42.32568], [27.784431, 42.3360175], [27.771641, 42.337002], [27.7703667980001, 42.336412755], [27.7621955000001, 42.332634], [27.7543565, 42.3276980000001], [27.7478750000001, 42.3264885], [27.738928, 42.328583], [27.729456, 42.3375625], [27.72855, 42.3343925], [27.7198510000001, 42.3293275], [27.7216675, 42.322930001], [27.7298640000001, 42.3221985000001], [27.700053, 42.3130815000001], [27.6910080000001, 42.3155404990001], [27.6927480000001, 42.3168360000001], [27.6927655000001, 42.3267970000001], [27.689463, 42.3333730000001], [27.66258, 42.3502065000001], [27.6507990000001, 42.3525705000001], [27.6370735, 42.3562635000001], [27.629284, 42.3643445000001], [27.6272020000001, 42.371803501], [27.6177125, 42.3727245000001], [27.6149, 42.3748065], [27.6015705, 42.3633495], [27.590266, 42.3577975000001], [27.5822830000001, 42.3527950000001], [27.5801985000001, 42.3453575], [27.5712385, 42.3346625], [27.5564945, 42.3262875], [27.563787, 42.326016999], [27.5653745000001, 42.322439], [27.548815, 42.3195375010001], [27.5452040000001, 42.3221579990001], [27.538283, 42.3187730000001], [27.543167, 42.3119055000001], [27.5355145, 42.313116], [27.5388085000001, 42.3066890000001], [27.5248340000001, 42.298531], [27.5224270000001, 42.2806560000001], [27.5219720000001, 42.2701835], [27.5082465, 42.2591135000001], [27.50102, 42.2486125], [27.4990305000001, 42.2409435000001], [27.5008305000001, 42.2372115000001], [27.5108675000001, 42.2333890000001], [27.509126, 42.226034], [27.5040040000001, 42.2213780000001], [27.5042525000001, 42.2165850000001], [27.5116830000001, 42.210451], [27.5025810000001, 42.199778], [27.504534, 42.193092], [27.5005895, 42.1827065000001], [27.504578, 42.1805905000001], [27.5145385000001, 42.1804245000001], [27.5269420000001, 42.1775315], [27.530645, 42.1753755], [27.536662, 42.1613380000001], [27.5465345000001, 42.1529830000001], [27.5532005000001, 42.151645], [27.558116, 42.1549085], [27.559898, 42.153603], [27.56625, 42.1506985], [27.5658365, 42.1566720000001], [27.5798915, 42.1614880000001], [27.5800255, 42.1737854990001], [27.5905915000001, 42.1823460000001], [27.5908410000001, 42.187456001], [27.5994265, 42.190036499] ] ] },
+    "properties": {
+      "ISO": "BG-BGS27",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "58356",
+      "NAME_2": "Приморско",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.725103, 42.8545770000001], [27.7195585000001, 42.855801], [27.717566, 42.8603025], [27.7007370000001, 42.8686825], [27.703357, 42.875929], [27.6861375, 42.8841475], [27.6622905, 42.884148], [27.6532535000001, 42.8879825000001], [27.646417, 42.8894980000001], [27.6408375, 42.881204], [27.646377, 42.8738250000001], [27.6685045, 42.8746565000001], [27.6655890000001, 42.8716345], [27.6598900000001, 42.8722255000001], [27.662383, 42.8659030000001], [27.6562195000001, 42.858333499], [27.645205, 42.8558115000001], [27.6348075000001, 42.8449825000001], [27.6308375, 42.822797001], [27.6291350000001, 42.8108340000001], [27.6266850000001, 42.8059215000001], [27.6149675, 42.8048145000001], [27.607515, 42.800527001], [27.5976165000001, 42.7899620000001], [27.582769, 42.8010879990001], [27.5774245000001, 42.7988094990001], [27.5790635000001, 42.7929300000001], [27.5828910000001, 42.7929105000001], [27.5784615000001, 42.7719055000001], [27.576716, 42.7610940000001], [27.5859005, 42.760777499], [27.5830435, 42.7418490000001], [27.5922975, 42.7336515000001], [27.5894410000001, 42.7296410010001], [27.591578, 42.7292785000001], [27.6023890000001, 42.7227245], [27.618999, 42.720218001], [27.6257405000001, 42.714882], [27.6194415000001, 42.7161725], [27.6161045000001, 42.697193], [27.6174275000001, 42.6935120000001], [27.6233625, 42.692939499], [27.6314635000001, 42.6825565], [27.6321595000001, 42.68199], [27.639579, 42.6783060000001], [27.6524805, 42.6794130000001], [27.6503010000001, 42.6691680000001], [27.6511505, 42.656285], [27.6581120000001, 42.6554935], [27.6666205000001, 42.6387595], [27.6747481780001, 42.636251982], [27.6766605, 42.635662], [27.6781177190001, 42.63718091], [27.691223, 42.6508410000001], [27.699648, 42.6520385000001], [27.7101765, 42.6460190000001], [27.7222235, 42.658806], [27.723219, 42.6615905], [27.716685931, 42.665496504], [27.7149565, 42.6665305000001], [27.7118415, 42.674881], [27.720293, 42.7019540000001], [27.7312605000001, 42.7091065000001], [27.7411955000001, 42.707634], [27.7498898380001, 42.7081227780001], [27.7616160000001, 42.708782], [27.7744014560001, 42.706828446], [27.8100240000001, 42.701385499], [27.822000614, 42.7043149790001], [27.8224545, 42.7044260000001], [27.8233070750001, 42.704245992], [27.8408125, 42.700549999], [27.879492, 42.70068], [27.8929575, 42.697727], [27.8990670000001, 42.700245501], [27.9007530000001, 42.7195095000001], [27.8952480620001, 42.732327635], [27.8913445000001, 42.7414170000001], [27.889984, 42.7550315], [27.892246088, 42.7575466270001], [27.9004345000001, 42.766651], [27.90081, 42.7718580000001], [27.8861255, 42.8153874990001], [27.88262, 42.8384134990001], [27.8796145000001, 42.8387750000001], [27.874112, 42.8415415000001], [27.8700535, 42.8362545000001], [27.8654965000001, 42.8375860000001], [27.8448365, 42.8353450000001], [27.8282560000001, 42.829329], [27.828447, 42.826401], [27.806313, 42.8294540000001], [27.7987645000001, 42.8274765], [27.7833910000001, 42.832184], [27.7673955000001, 42.8384295000001], [27.725103, 42.8545770000001] ] ] },
+    "properties": {
+      "ISO": "BG-BGS15",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "51500",
+      "NAME_2": "Несебър",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.4807205000001, 42.1869075000001], [27.4726680000001, 42.1867070010001], [27.4670095000001, 42.1814880000001], [27.435706, 42.1848445000001], [27.4320685000001, 42.192414], [27.4217845000001, 42.1919530000001], [27.4193025000001, 42.1933760000001], [27.4101065, 42.1875055], [27.3965515, 42.191246], [27.386065, 42.1945150000001], [27.3776185, 42.2039325000001], [27.372873, 42.204781], [27.368007, 42.205837], [27.3497255, 42.1967435], [27.342928, 42.1919320000001], [27.3397195000001, 42.1905185000001], [27.3336235, 42.1937245], [27.3321935000001, 42.1994930000001], [27.3157675, 42.2041100000001], [27.3086880000001, 42.203427], [27.3002520000001, 42.1984195000001], [27.2938305000001, 42.199827499], [27.2857805, 42.203671], [27.2680360000001, 42.1993140000001], [27.263353, 42.2008875010001], [27.2608985000001, 42.196989], [27.2613485000001, 42.1925525010001], [27.2562165000001, 42.1861650000001], [27.2630975000001, 42.1782415000001], [27.2733815, 42.1755429990001], [27.267658, 42.160466], [27.2688680000001, 42.155559], [27.2743070000001, 42.1533715000001], [27.2806125000001, 42.1520950010001], [27.2876035, 42.1431435000001], [27.2871415000001, 42.1192370000001], [27.284096, 42.107023], [27.2730330000001, 42.1018295000001], [27.2732355000001, 42.0990830000001], [27.2818415, 42.0954550000001], [27.2934910000001, 42.0971870000001], [27.3000525, 42.0865365000001], [27.3110025, 42.0871925000001], [27.3168465000001, 42.0786630000001], [27.321435609, 42.079321872], [27.32633, 42.0800245], [27.326461559, 42.077267998], [27.3267040000001, 42.0721895], [27.329466, 42.071762], [27.335785, 42.0673180000001], [27.33585, 42.060028], [27.3635865000001, 42.0584375], [27.377392, 42.0455665010001], [27.374962, 42.041252001], [27.381668, 42.0347140000001], [27.382914925, 42.027301917], [27.3837550000001, 42.0223085000001], [27.3917520000001, 42.018585], [27.3936195000001, 42.0060540000001], [27.40263, 42.0060845], [27.4131735, 41.9998434990001], [27.4148465000001, 41.9908140000001], [27.4205495000001, 41.9884455010001], [27.4325675000001, 41.9911575], [27.4388485000001, 41.9761695], [27.4459800000001, 41.9740755], [27.447838, 41.9665869990001], [27.4638155000001, 41.968738], [27.467974, 41.965225], [27.4677965000001, 41.9584580000001], [27.4862745, 41.9552305], [27.4903165000001, 41.952076], [27.4964125000001, 41.954437], [27.5034235000001, 41.952282], [27.5044635, 41.9578550000001], [27.5108110000001, 41.958191001], [27.5295980000001, 41.937355], [27.5309465, 41.9305685000001], [27.537913503, 41.9203250050001], [27.5408915, 41.9159470000001], [27.5480805, 41.9145925010001], [27.5593950000001, 41.9047815000001], [27.571646, 41.904415], [27.5716518680001, 41.9080998260001], [27.5716590000001, 41.9126285], [27.5630685, 41.9122925], [27.5617165, 41.9143865], [27.5658095000001, 41.9192464990001], [27.576605, 41.9196815000001], [27.5747985, 41.9233245], [27.5665415, 41.9238165], [27.5744245000001, 41.9325905000001], [27.574354, 41.9374810000001], [27.587652, 41.9365579990001], [27.5848065000001, 41.932152], [27.588778, 41.9314005000001], [27.6042125000001, 41.9474485000001], [27.6094915000001, 41.9448590000001], [27.6079100000001, 41.9393195000001], [27.612625, 41.938526], [27.6252325, 41.9486085], [27.623359, 41.9506720000001], [27.629648, 41.9498595000001], [27.625267433, 41.952387108], [27.6198425000001, 41.9555175], [27.620573, 41.9581030000001], [27.6338465000001, 41.9546320000001], [27.6381855000001, 41.9594535], [27.6391790000001, 41.954712], [27.6425935, 41.9541435], [27.65189, 41.96225], [27.6587085, 41.9608190000001], [27.6586845, 41.956692], [27.6678655000001, 41.962162], [27.6711235000001, 41.9562875], [27.6735765, 41.9630930010001], [27.6814460000001, 41.9639970010001], [27.6841680000001, 41.9715880000001], [27.6956785, 41.9778635000001], [27.7327215, 41.9736675], [27.7370760000001, 41.9799310000001], [27.7488615, 41.9723475000001], [27.7436525000001, 41.9678270000001], [27.7504405, 41.9700855], [27.7664280000001, 41.9676855000001], [27.7706015000001, 41.9597015000001], [27.7759565000001, 41.9659615], [27.7846210000001, 41.963623], [27.786148, 41.9606435000001], [27.7782915, 41.9555700000001], [27.7799835000001, 41.9530715000001], [27.790552, 41.954094001], [27.7938195, 41.9480285000001], [27.8020000000001, 41.953148001], [27.8146685, 41.9424555000001], [27.817623, 41.945160001], [27.81372, 41.9540105], [27.8191665000001, 41.9537885], [27.8262710000001, 41.9479525], [27.8360615, 41.9480405], [27.8336505, 41.9615900000001], [27.8260785000001, 41.9591795000001], [27.8202055, 41.9631540010001], [27.8260935000001, 41.9742620000001], [27.8188650000001, 41.9756625000001], [27.8216665000001, 41.9919435], [27.8278675, 41.993881], [27.8283920000001, 41.9978025], [27.7829835000001, 42.0107745], [27.7594955000001, 41.9952925000001], [27.7428320000001, 42.004282], [27.7425450000001, 42.0074540000001], [27.7428840000001, 42.0179849990001], [27.74152, 42.028329], [27.734768, 42.0271250000001], [27.734789, 42.0276290000001], [27.7363605, 42.030758001], [27.7234980000001, 42.0319430000001], [27.7173525000001, 42.037318], [27.716482, 42.051923], [27.7157235, 42.0591375000001], [27.7073770000001, 42.0618505], [27.6934525, 42.0552255000001], [27.6860155000001, 42.0567970000001], [27.6842, 42.0662645], [27.6663745000001, 42.083383499], [27.65104, 42.090104001], [27.6518555000001, 42.097809], [27.636516, 42.1068655], [27.6363960000001, 42.1152105], [27.6385020000001, 42.1224940000001], [27.6404245000001, 42.127738499], [27.6648890000001, 42.1341965], [27.6607015000001, 42.1460915000001], [27.6687170000001, 42.147954], [27.6636350000001, 42.1567155000001], [27.6621385, 42.1676395000001], [27.6434395000001, 42.1641345], [27.641217, 42.1681100000001], [27.6356670000001, 42.1686314990001], [27.630521, 42.1638325000001], [27.6239380000001, 42.1645845], [27.6227225000001, 42.1710890000001], [27.61823, 42.186001], [27.6005475000001, 42.1875630010001], [27.5994265, 42.190036499], [27.5908410000001, 42.187456001], [27.5905915000001, 42.1823460000001], [27.5800255, 42.1737854990001], [27.5798915, 42.1614880000001], [27.5658365, 42.1566720000001], [27.56625, 42.1506985], [27.559898, 42.153603], [27.558116, 42.1549085], [27.5532005000001, 42.151645], [27.5465345000001, 42.1529830000001], [27.536662, 42.1613380000001], [27.530645, 42.1753755], [27.5269420000001, 42.1775315], [27.5145385000001, 42.1804245000001], [27.504578, 42.1805905000001], [27.5005895, 42.1827065000001], [27.4952010000001, 42.1804285000001], [27.4807205000001, 42.1869075000001] ] ] },
+    "properties": {
+      "ISO": "BG-BGS12",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "46663",
+      "NAME_2": "Малко Търново",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.3572715, 42.4107025000001], [27.3867310000001, 42.4230795], [27.3717535000001, 42.441308], [27.3684450000001, 42.4559760000001], [27.3593275000001, 42.4584095000001], [27.3473715000001, 42.4676865000001], [27.3486120000001, 42.4709070000001], [27.3327105000001, 42.4693735000001], [27.3220265000001, 42.4730470000001], [27.3247715000001, 42.4888310000001], [27.3191555000001, 42.4873250000001], [27.3182755, 42.4936265000001], [27.3096225, 42.4937905], [27.301883, 42.4968640000001], [27.2944575000001, 42.49397], [27.2871435000001, 42.487063], [27.2715275, 42.4858810000001], [27.2706665000001, 42.4795605], [27.2603915, 42.4805885000001], [27.2563260000001, 42.4811290000001], [27.252782, 42.4889269990001], [27.2413760000001, 42.4900685000001], [27.218488, 42.5115300000001], [27.2253170000001, 42.5169250000001], [27.218783, 42.529028], [27.2121865, 42.534525], [27.2089315000001, 42.548931], [27.210996, 42.5489185000001], [27.2505045, 42.5475870000001], [27.2545895000001, 42.5415080000001], [27.2624135, 42.5443865], [27.2696585, 42.5317475000001], [27.2769020000001, 42.532657], [27.2949065, 42.520725], [27.316473, 42.518808], [27.3198685, 42.5197620000001], [27.3446470000001, 42.527593], [27.3372725, 42.535423], [27.359991, 42.5501860000001], [27.360396, 42.5587725], [27.3684755, 42.564825], [27.3230275, 42.5979055], [27.3012640000001, 42.592791], [27.2991615, 42.596925501], [27.290201, 42.5987495000001], [27.2755355, 42.5981195], [27.2631775, 42.5920515], [27.2397970000001, 42.6060120000001], [27.2349765000001, 42.6109795], [27.2308860000001, 42.6142075000001], [27.2225690000001, 42.612351], [27.2135745, 42.6197485000001], [27.208149, 42.6212170000001], [27.206528, 42.6260334990001], [27.1933030000001, 42.6244895], [27.163955, 42.6172990000001], [27.1607215000001, 42.611455], [27.1606495, 42.6114190000001], [27.1562890000001, 42.6102450010001], [27.1529540000001, 42.6039500010001], [27.1206055000001, 42.596774999], [27.1217310000001, 42.5864040000001], [27.106791, 42.5665655000001], [27.1054490000001, 42.5603845010001], [27.100829, 42.5581505000001], [27.1065390000001, 42.543330999], [27.1110955, 42.5410840000001], [27.1207075, 42.5349190000001], [27.1278750000001, 42.5409540000001], [27.1342335000001, 42.5322245], [27.1291225000001, 42.524814], [27.141178, 42.5149250000001], [27.1435595, 42.4990450000001], [27.118118, 42.4910090000001], [27.1256525000001, 42.4764250000001], [27.1305560000001, 42.470381], [27.140751, 42.4620115000001], [27.132187, 42.4551770000001], [27.1298850000001, 42.4485835], [27.131197, 42.4432410000001], [27.1440840000001, 42.4405550000001], [27.1540075, 42.4370075], [27.173748, 42.425893], [27.2004200000001, 42.4228055], [27.2154810000001, 42.4183425000001], [27.2189095000001, 42.416957999], [27.2409030000001, 42.4074620000001], [27.2498575000001, 42.4145215], [27.2574230000001, 42.4099975], [27.2635910000001, 42.4161570000001], [27.2796710000001, 42.4077570000001], [27.2882765000001, 42.4034085000001], [27.3045045000001, 42.3974585], [27.319447, 42.402434], [27.3346835, 42.375836], [27.333809, 42.3587725], [27.341191, 42.3548465000001], [27.3433325, 42.3544975], [27.3507900000001, 42.3640080000001], [27.3428315, 42.3712775000001], [27.342334, 42.3812535010001], [27.366133, 42.38802], [27.3661945000001, 42.3931260000001], [27.361144, 42.4031660000001], [27.3572715, 42.4107025000001] ] ] },
+    "properties": {
+      "ISO": "BG-BGS08",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "35883",
+      "NAME_2": "Камено",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.4469125000001, 42.2955785], [27.4500645000001, 42.302743999], [27.45194, 42.316106501], [27.4448405000001, 42.3238975], [27.4387770000001, 42.337925], [27.4366620000001, 42.351213], [27.4427685000001, 42.3596415000001], [27.4435065000001, 42.365038], [27.4395315, 42.3705965], [27.4345010000001, 42.372466], [27.4324375000001, 42.3814665], [27.4155415000001, 42.3880045010001], [27.4049315, 42.3851470000001], [27.397209, 42.3944275000001], [27.3897900000001, 42.3951915000001], [27.3876355, 42.4010575], [27.3900285, 42.4052235], [27.361144, 42.4031660000001], [27.3661945000001, 42.3931260000001], [27.366133, 42.38802], [27.342334, 42.3812535010001], [27.3428315, 42.3712775000001], [27.3507900000001, 42.3640080000001], [27.3433325, 42.3544975], [27.341191, 42.3548465000001], [27.340041, 42.351977], [27.3300215, 42.3487145], [27.3237745000001, 42.3390190000001], [27.3174155, 42.3436255], [27.2989095, 42.342117], [27.2997535000001, 42.3372380000001], [27.3037345000001, 42.3350165000001], [27.3035015, 42.3309330000001], [27.290088, 42.319827], [27.284317, 42.3222145], [27.2825470000001, 42.3110379990001], [27.2849425000001, 42.309064], [27.2818175, 42.294428], [27.2829120000001, 42.2876255], [27.3090280000001, 42.274724], [27.3129575, 42.2725520000001], [27.3126125000001, 42.2684150000001], [27.3066095, 42.2565155], [27.3126155, 42.244737], [27.3183945000001, 42.238169], [27.3262755000001, 42.2361205], [27.33763, 42.2257125], [27.3262065000001, 42.2189010000001], [27.3019565000001, 42.2155230000001], [27.298683, 42.210402], [27.3000520000001, 42.2088130000001], [27.2984425000001, 42.2027830000001], [27.2938305000001, 42.199827499], [27.3002520000001, 42.1984195000001], [27.3086880000001, 42.203427], [27.3157675, 42.2041100000001], [27.3321935000001, 42.1994930000001], [27.3336235, 42.1937245], [27.3397195000001, 42.1905185000001], [27.342928, 42.1919320000001], [27.3497255, 42.1967435], [27.368007, 42.205837], [27.372873, 42.204781], [27.3776185, 42.2039325000001], [27.386065, 42.1945150000001], [27.3965515, 42.191246], [27.4101065, 42.1875055], [27.4193025000001, 42.1933760000001], [27.4217845000001, 42.1919530000001], [27.4320685000001, 42.192414], [27.435706, 42.1848445000001], [27.4670095000001, 42.1814880000001], [27.4726680000001, 42.1867070010001], [27.4807205000001, 42.1869075000001], [27.4952010000001, 42.1804285000001], [27.5005895, 42.1827065000001], [27.504534, 42.193092], [27.5025810000001, 42.199778], [27.5116830000001, 42.210451], [27.5042525000001, 42.2165850000001], [27.5040040000001, 42.2213780000001], [27.509126, 42.226034], [27.5108675000001, 42.2333890000001], [27.5008305000001, 42.2372115000001], [27.4990305000001, 42.2409435000001], [27.50102, 42.2486125], [27.5082465, 42.2591135000001], [27.5219720000001, 42.2701835], [27.5224270000001, 42.2806560000001], [27.5248340000001, 42.298531], [27.5388085000001, 42.3066890000001], [27.5355145, 42.313116], [27.543167, 42.3119055000001], [27.538283, 42.3187730000001], [27.5452040000001, 42.3221579990001], [27.548815, 42.3195375010001], [27.5653745000001, 42.322439], [27.563787, 42.326016999], [27.5564945, 42.3262875], [27.5712385, 42.3346625], [27.5801985000001, 42.3453575], [27.5822830000001, 42.3527950000001], [27.590266, 42.3577975000001], [27.6015705, 42.3633495], [27.6149, 42.3748065], [27.6177125, 42.3727245000001], [27.6272020000001, 42.371803501], [27.629284, 42.3643445000001], [27.6370735, 42.3562635000001], [27.6507990000001, 42.3525705000001], [27.66258, 42.3502065000001], [27.689463, 42.3333730000001], [27.6927655000001, 42.3267970000001], [27.6927480000001, 42.3168360000001], [27.6910080000001, 42.3155404990001], [27.700053, 42.3130815000001], [27.7298640000001, 42.3221985000001], [27.7216675, 42.322930001], [27.7198510000001, 42.3293275], [27.72855, 42.3343925], [27.729456, 42.3375625], [27.7303485000001, 42.3447725], [27.7253596580001, 42.347621436], [27.721979, 42.3495520000001], [27.7094440000001, 42.3689430000001], [27.7065220000001, 42.393879], [27.710182, 42.4007455], [27.7240885000001, 42.3999480000001], [27.7290820000001, 42.4102895], [27.7184995000001, 42.4099275], [27.7122515, 42.406498001], [27.7037240000001, 42.41053], [27.6946810000001, 42.4218900000001], [27.7013840000001, 42.4259490000001], [27.68812, 42.4260180000001], [27.688545, 42.4229510000001], [27.694195, 42.425453501], [27.6891575000001, 42.4175260000001], [27.6761955660001, 42.4107437960001], [27.6728495, 42.4089930000001], [27.6617605000001, 42.4108430000001], [27.6512320000001, 42.4167215000001], [27.6453970000001, 42.4270480000001], [27.6454911230001, 42.427818808], [27.646984, 42.4400445], [27.6514530000001, 42.4503785000001], [27.635925, 42.448581501], [27.6259840000001, 42.4467315000001], [27.6166475000001, 42.4438590010001], [27.5986595, 42.450161], [27.5872385000001, 42.458809], [27.5853405, 42.4641075000001], [27.5798360000001, 42.4545935], [27.5828055000001, 42.4482840000001], [27.5703925, 42.4457475], [27.5596455, 42.434695499], [27.5466890000001, 42.4276975000001], [27.546663, 42.424586], [27.5511445000001, 42.4204760000001], [27.5484520000001, 42.4157650000001], [27.5380105, 42.415265], [27.5359260000001, 42.412222], [27.530182, 42.3952095000001], [27.529836, 42.384309], [27.499469, 42.3747415], [27.5006715000001, 42.3677250010001], [27.508141, 42.356313001], [27.5089310000001, 42.3528150000001], [27.5090055000001, 42.3524860000001], [27.5267385000001, 42.349069], [27.5168430000001, 42.341963499], [27.51117, 42.3315145], [27.5148100000001, 42.329391], [27.5229640000001, 42.3309300010001], [27.5224825, 42.3270724990001], [27.5167885000001, 42.3235279990001], [27.5080155000001, 42.322527], [27.5025055, 42.3241185000001], [27.502664, 42.3183135], [27.4969985000001, 42.3088005000001], [27.4870320000001, 42.3075825000001], [27.4745765000001, 42.308391], [27.4516605000001, 42.3031250000001], [27.4469125000001, 42.2955785] ] ] },
+    "properties": {
+      "ISO": "BG-BGS21",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "67800",
+      "NAME_2": "Созопол",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.6174275000001, 42.6935120000001], [27.6161045000001, 42.697193], [27.6194415000001, 42.7161725], [27.6257405000001, 42.714882], [27.618999, 42.720218001], [27.6023890000001, 42.7227245], [27.591578, 42.7292785000001], [27.5894410000001, 42.7296410010001], [27.5922975, 42.7336515000001], [27.5830435, 42.7418490000001], [27.5859005, 42.760777499], [27.576716, 42.7610940000001], [27.5784615000001, 42.7719055000001], [27.5828910000001, 42.7929105000001], [27.5790635000001, 42.7929300000001], [27.5774245000001, 42.7988094990001], [27.582769, 42.8010879990001], [27.5976165000001, 42.7899620000001], [27.607515, 42.800527001], [27.6149675, 42.8048145000001], [27.6266850000001, 42.8059215000001], [27.6291350000001, 42.8108340000001], [27.6308375, 42.822797001], [27.6348075000001, 42.8449825000001], [27.645205, 42.8558115000001], [27.6562195000001, 42.858333499], [27.662383, 42.8659030000001], [27.6598900000001, 42.8722255000001], [27.6655890000001, 42.8716345], [27.6685045, 42.8746565000001], [27.646377, 42.8738250000001], [27.6408375, 42.881204], [27.646417, 42.8894980000001], [27.629622, 42.8950735010001], [27.625122, 42.8984730010001], [27.6092190000001, 42.8970810000001], [27.597787, 42.8962955000001], [27.5993525000001, 42.8858730000001], [27.584553, 42.8835675], [27.5779640000001, 42.8896120000001], [27.5687465, 42.8899954990001], [27.5583550000001, 42.888309001], [27.5441565, 42.8853875], [27.5450970000001, 42.875477], [27.5486930000001, 42.8748160000001], [27.5496565, 42.8711015000001], [27.5204825000001, 42.8780455], [27.5129650000001, 42.8755230000001], [27.4944105000001, 42.8667695010001], [27.488102, 42.8569225000001], [27.4867565000001, 42.845442], [27.4850895000001, 42.8399240000001], [27.4746975, 42.8355685000001], [27.473804, 42.8299035000001], [27.4774375000001, 42.8222475000001], [27.4845785000001, 42.8228745000001], [27.486389, 42.8262844990001], [27.490416, 42.8234350000001], [27.485169, 42.811764], [27.485775, 42.793958], [27.4869170000001, 42.7881085000001], [27.4746985, 42.7869709990001], [27.4622880000001, 42.781344], [27.4426395, 42.7780355], [27.4396320000001, 42.7657820000001], [27.4335715, 42.7664985000001], [27.4243690000001, 42.7604135], [27.4247740000001, 42.7430360000001], [27.419701, 42.7277144990001], [27.4194265, 42.7239685000001], [27.4306710000001, 42.7196405], [27.4321880000001, 42.7121645], [27.4508480000001, 42.711773001], [27.460677, 42.7122065], [27.480087, 42.7063675000001], [27.4830955, 42.707098], [27.4968950000001, 42.703225], [27.493904, 42.701757], [27.488792, 42.6853435000001], [27.5055485, 42.6651975], [27.5152945, 42.664501], [27.5193365000001, 42.6447825000001], [27.5072025000001, 42.6397220010001], [27.5065930000001, 42.6203990000001], [27.509758, 42.6141215000001], [27.5160060000001, 42.6152415], [27.519277, 42.6119850000001], [27.5225070000001, 42.6012040000001], [27.5222775, 42.5949685], [27.5144980000001, 42.5892620000001], [27.5086395000001, 42.5914095000001], [27.5052085, 42.5895425000001], [27.5088785, 42.584636], [27.5155515000001, 42.5796530000001], [27.5242215000001, 42.58558], [27.5366090000001, 42.575202], [27.5403475000001, 42.5687635], [27.5399820000001, 42.5589790000001], [27.5400961010001, 42.5589294380001], [27.5589600000001, 42.5507355], [27.5831965, 42.564308], [27.5935605, 42.5637625000001], [27.6001225000001, 42.5581284990001], [27.6070310000001, 42.563698], [27.6169415000001, 42.5653685], [27.631832, 42.5614775000001], [27.6415365, 42.5521355000001], [27.6520100000001, 42.555820499], [27.6409340000001, 42.565304], [27.6335945000001, 42.5782550000001], [27.6308135, 42.6046675000001], [27.6352900000001, 42.6253740010001], [27.646618, 42.6385230000001], [27.6520635000001, 42.6389085000001], [27.653801, 42.636238001], [27.6666205000001, 42.6387595], [27.6581120000001, 42.6554935], [27.6511505, 42.656285], [27.6503010000001, 42.6691680000001], [27.6524805, 42.6794130000001], [27.639579, 42.6783060000001], [27.6321595000001, 42.68199], [27.6314635000001, 42.6825565], [27.6233625, 42.692939499], [27.6174275000001, 42.6935120000001] ] ] },
+    "properties": {
+      "ISO": "BG-BGS17",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "7079",
+      "NAME_1": "BGS",
+      "TYPE_1": "Област",
+      "ID_2": "57491",
+      "NAME_2": "Поморие",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [28.413301, 43.5216235], [28.404703, 43.5211350010001], [28.411149, 43.527403501], [28.407768, 43.5291695000001], [28.4348830000001, 43.55444], [28.424225, 43.5682100010001], [28.4217245, 43.58376], [28.4568055, 43.5919345], [28.4559120000001, 43.5940619990001], [28.4452000000001, 43.6180355000001], [28.4518400000001, 43.6194825000001], [28.4437390000001, 43.6379255000001], [28.4424415, 43.6411840000001], [28.4386170000001, 43.6501275000001], [28.4373850000001, 43.6526690000001], [28.4136070000001, 43.6672595000001], [28.4054620000001, 43.6670770000001], [28.3755795000001, 43.6660985], [28.3767385, 43.6492650000001], [28.3567725, 43.6485315000001], [28.3458235, 43.6481745], [28.3453460000001, 43.650044], [28.3208060000001, 43.6452925], [28.3238295, 43.6362084990001], [28.3069185000001, 43.629496999], [28.2794815, 43.6187325000001], [28.2831055, 43.611835501], [28.2487355000001, 43.5989575], [28.2592115, 43.579740499], [28.2231650000001, 43.56406], [28.2437315, 43.5325935000001], [28.253365, 43.5307775000001], [28.2473130000001, 43.5274000000001], [28.2605790000001, 43.515882], [28.266258, 43.5195425], [28.2922125000001, 43.4967865], [28.3043660000001, 43.500007], [28.3090935000001, 43.49044], [28.2723530000001, 43.4804865], [28.2772865000001, 43.4751910000001], [28.2573620000001, 43.4651295], [28.2452435000001, 43.4590265], [28.2517505000001, 43.4521255000001], [28.235784, 43.442845], [28.2311020000001, 43.4034575000001], [28.27993, 43.4132615], [28.2859020000001, 43.4123385], [28.3087790000001, 43.418186], [28.3349245000001, 43.415538999], [28.349449, 43.4111750000001], [28.356056, 43.4109995000001], [28.3789560000001, 43.406456], [28.387459, 43.404499], [28.408177848, 43.3918818700001], [28.4158800000001, 43.3871915], [28.4503340000001, 43.380726], [28.4639280000001, 43.3669510010001], [28.4659765000001, 43.3606760010001], [28.4700525000001, 43.3829305000001], [28.480669, 43.3902015000001], [28.4911483650001, 43.402797069], [28.4956685000001, 43.4082300000001], [28.508358, 43.415241], [28.5129981360001, 43.414612709], [28.5142995, 43.4144365000001], [28.529503, 43.4235380000001], [28.5458165000001, 43.4385869990001], [28.5710315000001, 43.4729425], [28.5681040000001, 43.475759], [28.5735185, 43.4840360000001], [28.5525920000001, 43.4856820000001], [28.548731, 43.4896375000001], [28.5311465, 43.4878305], [28.5263005, 43.4758295], [28.51485, 43.4789085], [28.4987850000001, 43.473128], [28.491337, 43.4864255000001], [28.483844, 43.4843845010001], [28.4722170000001, 43.4905135000001], [28.472044, 43.4999250000001], [28.4683205000001, 43.4994775000001], [28.4585720000001, 43.5146260000001], [28.4367525000001, 43.5072665000001], [28.413301, 43.5216235] ] ] },
+    "properties": {
+      "ISO": "BG-DOB17",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "72624",
+      "NAME_1": "DOB",
+      "TYPE_1": "Област",
+      "ID_2": "35064",
+      "NAME_2": "Каварна",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [27.194822, 43.7360175000001], [27.1920865000001, 43.7373410010001], [27.1870865000001, 43.7362285], [27.185027, 43.7344400010001], [27.1848620000001, 43.727444], [27.1892070000001, 43.7268250000001], [27.1933540000001, 43.7279615000001], [27.194822, 43.7360175000001] ] ], [ [ [27.5977175, 43.8197565], [27.599427, 43.8247400010001], [27.5955020000001, 43.84578], [27.5909785000001, 43.848648499], [27.5902145000001, 43.8494855000001], [27.592884, 43.8552475000001], [27.585835, 43.8572560000001], [27.5867075, 43.866246], [27.5846080000001, 43.868143], [27.5744815, 43.8662404990001], [27.5738615000001, 43.869467], [27.5806665000001, 43.8752625000001], [27.582166, 43.8803195], [27.5929285, 43.8888085], [27.595758, 43.8925750000001], [27.5872010000001, 43.8975354990001], [27.5760795000001, 43.9103375], [27.5667245000001, 43.9160380000001], [27.5462030000001, 43.9182040000001], [27.543196, 43.9179665], [27.5414895000001, 43.9050540000001], [27.5377135000001, 43.8996835], [27.5299035, 43.8990175000001], [27.531299, 43.888963], [27.5381695, 43.8835915000001], [27.5292875000001, 43.8750615000001], [27.5227155000001, 43.8729895000001], [27.533323, 43.864513001], [27.5218455, 43.8645975000001], [27.5207285000001, 43.8570710000001], [27.524458, 43.8561715000001], [27.52439, 43.8494505], [27.5132990000001, 43.8498700000001], [27.5038720000001, 43.8410525], [27.485304, 43.8396155], [27.4812965, 43.8478260000001], [27.472695, 43.8468535000001], [27.468921, 43.8580515], [27.4636175000001, 43.8586675000001], [27.453068, 43.871247499], [27.450388, 43.8705560000001], [27.445072, 43.865853499], [27.4460730000001, 43.8616005000001], [27.4444720000001, 43.8596665000001], [27.4188835, 43.847851], [27.4090620000001, 43.853194499], [27.3951925000001, 43.853054], [27.3953010000001, 43.8435680000001], [27.3835385, 43.829954501], [27.3783980000001, 43.8246635], [27.3730335000001, 43.8154480000001], [27.3734355, 43.8188365], [27.3528665000001, 43.8145395000001], [27.351077, 43.8074320000001], [27.3190980000001, 43.807625499], [27.3255365000001, 43.8116765], [27.3343315000001, 43.8096115000001], [27.3513595000001, 43.8120995000001], [27.3517535, 43.815547], [27.3445295000001, 43.817283999], [27.3247470000001, 43.8128265010001], [27.3170375, 43.8078875], [27.3175180000001, 43.803541501], [27.2974655, 43.8046670000001], [27.292901, 43.8006179990001], [27.2851255, 43.8005924990001], [27.27763, 43.799921999], [27.2700215, 43.7927825], [27.2688755, 43.7867525], [27.268062, 43.7795785000001], [27.2544585000001, 43.7796230010001], [27.2584810000001, 43.7722400000001], [27.249982, 43.774298001], [27.2479735000001, 43.770179], [27.244495, 43.7645004990001], [27.23391, 43.7481489990001], [27.2289250000001, 43.7474925010001], [27.223415, 43.7537120000001], [27.2092815, 43.742781], [27.210725, 43.7292635000001], [27.2094135, 43.7146210000001], [27.1994280000001, 43.7073455], [27.1997660000001, 43.7049005010001], [27.2045785, 43.7033294990001], [27.215715, 43.6920674990001], [27.2213080000001, 43.6919985000001], [27.232767, 43.6814140000001], [27.2333310000001, 43.6635985], [27.2195365000001, 43.6646205000001], [27.2060240000001, 43.6617420000001], [27.213785, 43.6542045000001], [27.2215215000001, 43.6480225], [27.2372125000001, 43.6439795000001], [27.2385565000001, 43.6440670000001], [27.2699255000001, 43.6459105000001], [27.2760410000001, 43.6423165], [27.2691070000001, 43.639978501], [27.2951155000001, 43.6234145000001], [27.3000045000001, 43.611371999], [27.302918, 43.589795501], [27.3472475, 43.5990245], [27.3877795000001, 43.6074615000001], [27.3894605, 43.611413], [27.4072850000001, 43.6130845000001], [27.4088365000001, 43.6093329990001], [27.411794, 43.6050950000001], [27.4142415000001, 43.6018040000001], [27.4339975, 43.6084660000001], [27.4440915000001, 43.6108495010001], [27.445768, 43.6144670000001], [27.443433, 43.6271085000001], [27.4548840000001, 43.6303950000001], [27.461017, 43.6428504990001], [27.4606055, 43.652117], [27.467749, 43.6506835010001], [27.4747105000001, 43.667983], [27.4790335000001, 43.6671905000001], [27.4934335, 43.7045630000001], [27.4923965, 43.7104975], [27.493229, 43.722319999], [27.4965035000001, 43.7292570000001], [27.4994305000001, 43.7276775], [27.5149775, 43.7445405], [27.5199115, 43.7465665010001], [27.5207215, 43.7568860000001], [27.5135315000001, 43.756896], [27.508408, 43.7671559990001], [27.507801, 43.7698419990001], [27.5247240000001, 43.7741644990001], [27.52871, 43.7844865000001], [27.5313535, 43.7966610010001], [27.5289065000001, 43.8073010000001], [27.539226, 43.807073001], [27.5535935, 43.8040645], [27.5623420000001, 43.7908400000001], [27.574736, 43.7907965000001], [27.5752210000001, 43.7853200000001], [27.5852395000001, 43.7827705], [27.5877065, 43.7780260000001], [27.5920160000001, 43.7789000000001], [27.5876060000001, 43.7871835], [27.5951545, 43.7890675], [27.610009, 43.7974970000001], [27.6109235000001, 43.8006390000001], [27.6222230000001, 43.8147500000001], [27.6114515, 43.8101490000001], [27.6138, 43.806967001], [27.6111770000001, 43.8063910000001], [27.6035445000001, 43.8115099990001], [27.606573, 43.8200204990001], [27.5977175, 43.8197565] ] ] ] },
+    "properties": {
+      "ISO": "BG-DOB27",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "72624",
+      "NAME_1": "DOB",
+      "TYPE_1": "Област",
+      "ID_2": "72271",
+      "NAME_2": "Тервел",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [28.4386170000001, 43.6501275000001], [28.4424415, 43.6411840000001], [28.4437390000001, 43.6379255000001], [28.4518400000001, 43.6194825000001], [28.4452000000001, 43.6180355000001], [28.4559120000001, 43.5940619990001], [28.4568055, 43.5919345], [28.4217245, 43.58376], [28.424225, 43.5682100010001], [28.4348830000001, 43.55444], [28.407768, 43.5291695000001], [28.411149, 43.527403501], [28.404703, 43.5211350010001], [28.413301, 43.5216235], [28.4367525000001, 43.5072665000001], [28.4585720000001, 43.5146260000001], [28.4683205000001, 43.4994775000001], [28.472044, 43.4999250000001], [28.4722170000001, 43.4905135000001], [28.483844, 43.4843845010001], [28.491337, 43.4864255000001], [28.4987850000001, 43.473128], [28.51485, 43.4789085], [28.5263005, 43.4758295], [28.5311465, 43.4878305], [28.548731, 43.4896375000001], [28.5525920000001, 43.4856820000001], [28.5735185, 43.4840360000001], [28.5681040000001, 43.475759], [28.5710315000001, 43.4729425], [28.5854955, 43.4902155], [28.5877725, 43.4994775000001], [28.6015055, 43.5197180000001], [28.607464, 43.5393715000001], [28.6038150000001, 43.5524215], [28.5907808860001, 43.5656772230001], [28.5784360000001, 43.5782320000001], [28.5710505000001, 43.5921595], [28.5679035000001, 43.601749999], [28.5696830000001, 43.6120945000001], [28.5731165, 43.629078], [28.579059, 43.6369325000001], [28.5715834850001, 43.647660251], [28.569128, 43.6511840000001], [28.5645105, 43.6751825000001], [28.5647310000001, 43.6939165000001], [28.575797559, 43.7002336030001], [28.5767460000001, 43.7007750000001], [28.5781135, 43.708175501], [28.5767500060001, 43.7121160120001], [28.5725630000001, 43.7242165000001], [28.5788840000001, 43.7387390000001], [28.5585215, 43.7379720010001], [28.4455755000001, 43.733799], [28.4477225000001, 43.7243580000001], [28.4225700000001, 43.721261499], [28.4313075000001, 43.6838675010001], [28.4026000000001, 43.6807975], [28.4054620000001, 43.6670770000001], [28.4136070000001, 43.6672595000001], [28.4373850000001, 43.6526690000001], [28.4386170000001, 43.6501275000001] ] ] },
+    "properties": {
+      "ISO": "BG-DOB29",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "72624",
+      "NAME_1": "DOB",
+      "TYPE_1": "Област",
+      "ID_2": "83017",
+      "NAME_2": "Шабла",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.7929300000001, 43.6251555000001], [27.7901580000001, 43.6117860000001], [27.7820465, 43.6059080000001], [27.7758170000001, 43.6083995000001], [27.7730560000001, 43.6130555010001], [27.773304, 43.622782999], [27.7764500000001, 43.6275470000001], [27.771444, 43.6296245], [27.751742, 43.6160610000001], [27.7388205, 43.594616], [27.7283895, 43.5888395000001], [27.7134265, 43.5885465000001], [27.7142880000001, 43.57124], [27.7159150000001, 43.55825], [27.7359835, 43.5587035], [27.7371745, 43.5525145010001], [27.7528205, 43.54936], [27.74884, 43.5466355], [27.752443, 43.538751], [27.7903875000001, 43.5380945010001], [27.7908315, 43.5332650010001], [27.8015535000001, 43.5331185000001], [27.7999955, 43.5273530000001], [27.803098, 43.5172015000001], [27.8249230000001, 43.5188690000001], [27.8239980000001, 43.5263725], [27.8296810000001, 43.5428765], [27.8494055, 43.54279], [27.855712, 43.5428150000001], [27.8603095, 43.5447070000001], [27.877931, 43.568205], [27.8729085000001, 43.5715660000001], [27.8843860000001, 43.5824850010001], [27.8748425000001, 43.5977485000001], [27.8832285, 43.599048001], [27.8916120000001, 43.6076674990001], [27.883839, 43.612572], [27.8749765000001, 43.6087955], [27.8642085000001, 43.6111060000001], [27.8651350000001, 43.622489], [27.846844, 43.62318], [27.8401880000001, 43.6251154990001], [27.804781, 43.6263604990001], [27.7929300000001, 43.6251555000001] ] ] },
+    "properties": {
+      "ISO": "BG-DOB28",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "72624",
+      "NAME_1": "DOB",
+      "TYPE_1": "Област",
+      "ID_2": "72624",
+      "NAME_2": "Добрич",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [28.1584485000001, 43.5735175], [28.143148, 43.5927645], [28.1328115000001, 43.5991030000001], [28.1248565000001, 43.5964080000001], [28.118993, 43.6055375], [28.1103870000001, 43.60265], [28.1051235, 43.6108180000001], [28.0807015, 43.6025290000001], [28.0647585, 43.627215], [28.0611715000001, 43.6327810000001], [28.061021, 43.6328635], [28.0452735000001, 43.62766], [28.043191, 43.6305380000001], [28.0114005, 43.6283250000001], [28.0271325000001, 43.6029195], [27.9897270000001, 43.5901085], [27.997488, 43.577948], [27.9902440000001, 43.5737835], [28.0031720000001, 43.5536460000001], [27.9803230000001, 43.554177], [27.9718455, 43.5421209990001], [27.9653025000001, 43.5445175], [27.9495200000001, 43.5215135], [27.9569985000001, 43.521793001], [27.9661835000001, 43.5028925], [27.960809, 43.5000700000001], [27.9707245000001, 43.4825045000001], [27.974745, 43.4847035000001], [27.9751820000001, 43.4773925000001], [27.9869255, 43.4824830000001], [27.9910645000001, 43.4790795000001], [27.983082, 43.456665], [27.9858400000001, 43.456308], [27.990169, 43.4327645000001], [27.976905, 43.4277420000001], [27.9727395, 43.4225685010001], [27.9847225, 43.422181999], [27.989063, 43.4164765], [27.990528, 43.4077025], [27.986994, 43.404145], [27.9890760000001, 43.396572], [27.9862165000001, 43.388313], [27.9971495, 43.3853500000001], [28.0079155, 43.3760980000001], [28.0114705, 43.3716680010001], [28.0112175, 43.367533], [28.0165115, 43.3547985000001], [28.0220965, 43.3537225000001], [28.020566, 43.3413550000001], [28.0601805000001, 43.316445001], [28.0697420000001, 43.3279150000001], [28.068559684, 43.3319991660001], [28.0675830000001, 43.3353730000001], [28.0817470000001, 43.3632775], [28.0923765000001, 43.3762100000001], [28.1047495, 43.380543], [28.1507780000001, 43.4047320000001], [28.1643505000001, 43.405288501], [28.1800325, 43.397876501], [28.1943015000001, 43.397144499], [28.223261, 43.3993265], [28.2311020000001, 43.4034575000001], [28.235784, 43.442845], [28.2517505000001, 43.4521255000001], [28.2452435000001, 43.4590265], [28.2573620000001, 43.4651295], [28.2772865000001, 43.4751910000001], [28.2723530000001, 43.4804865], [28.3090935000001, 43.49044], [28.3043660000001, 43.500007], [28.2922125000001, 43.4967865], [28.266258, 43.5195425], [28.2605790000001, 43.515882], [28.2473130000001, 43.5274000000001], [28.253365, 43.5307775000001], [28.2437315, 43.5325935000001], [28.2231650000001, 43.56406], [28.2058185000001, 43.564537], [28.193722, 43.5644655], [28.1688435, 43.5572945000001], [28.165514, 43.5625685000001], [28.1584485000001, 43.5735175] ] ] },
+    "properties": {
+      "ISO": "BG-DOB03",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "72624",
+      "NAME_1": "DOB",
+      "TYPE_1": "Област",
+      "ID_2": "2508",
+      "NAME_2": "Балчик",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [28.3453460000001, 43.650044], [28.3458235, 43.6481745], [28.3567725, 43.6485315000001], [28.3767385, 43.6492650000001], [28.3755795000001, 43.6660985], [28.4054620000001, 43.6670770000001], [28.4026000000001, 43.6807975], [28.4313075000001, 43.6838675010001], [28.4225700000001, 43.721261499], [28.4477225000001, 43.7243580000001], [28.4455755000001, 43.733799], [28.3787160000001, 43.7464805000001], [28.376898, 43.7468260000001], [28.34851, 43.7521935], [28.2768365000001, 43.7562445], [28.236143, 43.758522], [28.220127, 43.7636870000001], [28.1727900000001, 43.778945999], [28.1377430000001, 43.7902120000001], [28.1195890000001, 43.7960435000001], [28.0328030000001, 43.8302650000001], [28.0037510000001, 43.839838001], [27.9942645, 43.8429644990001], [27.9843905000001, 43.8748820010001], [27.9819115, 43.8820730000001], [27.9739970000001, 43.905018], [27.954193, 43.9401290010001], [27.9503, 43.9577065], [27.9477870000001, 43.9690650000001], [27.9443095, 43.9847830000001], [27.9307375000001, 43.9963880000001], [27.9168340000001, 44.008274], [27.8686695000001, 43.9807855], [27.8435365, 43.9663390000001], [27.8332995000001, 43.9652975000001], [27.8431925, 43.9524175000001], [27.8663250000001, 43.9261115000001], [27.853084, 43.9213715000001], [27.8543425, 43.9199080000001], [27.8448030000001, 43.9165170000001], [27.8385995, 43.9185435000001], [27.8432085000001, 43.909164], [27.8546470000001, 43.9130765], [27.8595125000001, 43.9081330010001], [27.8716450000001, 43.9006855000001], [27.8744205, 43.895532001], [27.882524, 43.8838010000001], [27.8934095000001, 43.8899920000001], [27.8963965, 43.8857820000001], [27.8814080000001, 43.8776549990001], [27.878457, 43.8479525000001], [27.8705715, 43.8508535], [27.8520285000001, 43.8308430000001], [27.8451545, 43.834283999], [27.8406265, 43.8295725], [27.8317825, 43.8202735], [27.840493, 43.8159150000001], [27.83185, 43.8066545], [27.8272865000001, 43.8032440010001], [27.839773, 43.7775730000001], [27.8538340000001, 43.7693565000001], [27.8650445000001, 43.7503415], [27.8658945, 43.7419885], [27.871927, 43.7423115], [27.8729720000001, 43.7329940000001], [27.8824915000001, 43.7335870000001], [27.8867135, 43.6948105000001], [27.8875170000001, 43.6873805000001], [27.9120745000001, 43.6893260000001], [27.9118130000001, 43.6800535], [27.9113595000001, 43.6761675000001], [27.9247515000001, 43.6756005], [27.9256795000001, 43.6730269990001], [27.9517260000001, 43.6717640000001], [27.9575350000001, 43.661843], [27.9641255, 43.6647405000001], [27.968485, 43.6594455000001], [27.957163, 43.6543635000001], [27.9611465, 43.6469695000001], [27.9636695, 43.6422930000001], [27.9705005000001, 43.6442385], [27.9804075000001, 43.644906001], [27.9808800000001, 43.6343765], [27.9809935000001, 43.6298325000001], [28.0053720000001, 43.637188999], [28.0103675, 43.628276], [28.0114005, 43.6283250000001], [28.043191, 43.6305380000001], [28.0452735000001, 43.62766], [28.061021, 43.6328635], [28.0611715000001, 43.6327810000001], [28.0647585, 43.627215], [28.0807015, 43.6025290000001], [28.1051235, 43.6108180000001], [28.1103870000001, 43.60265], [28.118993, 43.6055375], [28.1248565000001, 43.5964080000001], [28.1328115000001, 43.5991030000001], [28.143148, 43.5927645], [28.1584485000001, 43.5735175], [28.165514, 43.5625685000001], [28.1688435, 43.5572945000001], [28.193722, 43.5644655], [28.2058185000001, 43.564537], [28.2231650000001, 43.56406], [28.2592115, 43.579740499], [28.2487355000001, 43.5989575], [28.2831055, 43.611835501], [28.2794815, 43.6187325000001], [28.3069185000001, 43.629496999], [28.3238295, 43.6362084990001], [28.3208060000001, 43.6452925], [28.3453460000001, 43.650044] ] ] },
+    "properties": {
+      "ISO": "BG-DOB12",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "72624",
+      "NAME_1": "DOB",
+      "TYPE_1": "Област",
+      "ID_2": "14711",
+      "NAME_2": "Генерал Тошево",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.976905, 43.4277420000001], [27.990169, 43.4327645000001], [27.9858400000001, 43.456308], [27.983082, 43.456665], [27.9910645000001, 43.4790795000001], [27.9869255, 43.4824830000001], [27.9751820000001, 43.4773925000001], [27.974745, 43.4847035000001], [27.9707245000001, 43.4825045000001], [27.960809, 43.5000700000001], [27.9661835000001, 43.5028925], [27.9569985000001, 43.521793001], [27.9495200000001, 43.5215135], [27.9653025000001, 43.5445175], [27.9718455, 43.5421209990001], [27.9803230000001, 43.554177], [28.0031720000001, 43.5536460000001], [27.9902440000001, 43.5737835], [27.997488, 43.577948], [27.9897270000001, 43.5901085], [28.0271325000001, 43.6029195], [28.0114005, 43.6283250000001], [28.0103675, 43.628276], [28.0053720000001, 43.637188999], [27.9809935000001, 43.6298325000001], [27.9808800000001, 43.6343765], [27.9804075000001, 43.644906001], [27.9705005000001, 43.6442385], [27.9636695, 43.6422930000001], [27.9611465, 43.6469695000001], [27.957163, 43.6543635000001], [27.968485, 43.6594455000001], [27.9641255, 43.6647405000001], [27.9575350000001, 43.661843], [27.9517260000001, 43.6717640000001], [27.9256795000001, 43.6730269990001], [27.9247515000001, 43.6756005], [27.9113595000001, 43.6761675000001], [27.9118130000001, 43.6800535], [27.9120745000001, 43.6893260000001], [27.8875170000001, 43.6873805000001], [27.8867135, 43.6948105000001], [27.8824915000001, 43.7335870000001], [27.8729720000001, 43.7329940000001], [27.871927, 43.7423115], [27.8658945, 43.7419885], [27.8650445000001, 43.7503415], [27.8538340000001, 43.7693565000001], [27.839773, 43.7775730000001], [27.820183, 43.7712100000001], [27.8212290000001, 43.7694645], [27.7865435000001, 43.7583504990001], [27.7838130000001, 43.7621550000001], [27.7725610000001, 43.758477], [27.7538665000001, 43.7524480000001], [27.7641385000001, 43.7357135], [27.7397365, 43.7311470010001], [27.7300605, 43.7390740000001], [27.7215385000001, 43.735351], [27.719229, 43.7386475000001], [27.7026475000001, 43.7475610000001], [27.7062295000001, 43.7576775000001], [27.7058470000001, 43.769619], [27.7009705, 43.7757895010001], [27.6965165, 43.7791300000001], [27.6926905, 43.7818905], [27.6895880000001, 43.788891499], [27.6862105000001, 43.7931935], [27.6798475000001, 43.7956175000001], [27.680912, 43.7997980000001], [27.667315, 43.8131495010001], [27.6655040000001, 43.8178060000001], [27.6562745000001, 43.8248645], [27.6448780000001, 43.8254690000001], [27.6375850000001, 43.8224309990001], [27.6222230000001, 43.8147500000001], [27.6109235000001, 43.8006390000001], [27.610009, 43.7974970000001], [27.5951545, 43.7890675], [27.5876060000001, 43.7871835], [27.5920160000001, 43.7789000000001], [27.5877065, 43.7780260000001], [27.5852395000001, 43.7827705], [27.5752210000001, 43.7853200000001], [27.574736, 43.7907965000001], [27.5623420000001, 43.7908400000001], [27.5535935, 43.8040645], [27.539226, 43.807073001], [27.5289065000001, 43.8073010000001], [27.5313535, 43.7966610010001], [27.52871, 43.7844865000001], [27.5247240000001, 43.7741644990001], [27.507801, 43.7698419990001], [27.508408, 43.7671559990001], [27.5135315000001, 43.756896], [27.5207215, 43.7568860000001], [27.5199115, 43.7465665010001], [27.5149775, 43.7445405], [27.4994305000001, 43.7276775], [27.4965035000001, 43.7292570000001], [27.493229, 43.722319999], [27.4923965, 43.7104975], [27.4934335, 43.7045630000001], [27.4790335000001, 43.6671905000001], [27.4747105000001, 43.667983], [27.467749, 43.6506835010001], [27.4606055, 43.652117], [27.461017, 43.6428504990001], [27.4548840000001, 43.6303950000001], [27.443433, 43.6271085000001], [27.445768, 43.6144670000001], [27.4440915000001, 43.6108495010001], [27.4339975, 43.6084660000001], [27.4294635000001, 43.600267], [27.4397105, 43.5845244990001], [27.4455415000001, 43.5868205], [27.452548, 43.5766545000001], [27.4741835, 43.5697415000001], [27.4842375000001, 43.552042], [27.4930360000001, 43.5418615], [27.4930190000001, 43.5223270000001], [27.4893685000001, 43.5200330000001], [27.4891845000001, 43.5100885000001], [27.5076865, 43.4971135000001], [27.5259315000001, 43.4952710000001], [27.5259080000001, 43.4927225000001], [27.5385045, 43.4940915], [27.547248, 43.488705499], [27.540442, 43.4951625], [27.575684, 43.5064485], [27.577619, 43.5037644990001], [27.5806425000001, 43.5112275000001], [27.5884765000001, 43.5140275000001], [27.5897105, 43.529572], [27.5923525000001, 43.5333850000001], [27.6065235, 43.5286285], [27.6158080000001, 43.5267194990001], [27.6363685000001, 43.515184999], [27.6438005000001, 43.5032670000001], [27.6440125, 43.4981875], [27.6359675, 43.4933609990001], [27.6461410000001, 43.484133], [27.6752625, 43.4758025], [27.6923620000001, 43.480896], [27.7012825, 43.4798195000001], [27.7043390000001, 43.473894], [27.7107770000001, 43.475335], [27.7208745, 43.471864], [27.7243790000001, 43.464949], [27.7406815000001, 43.4528729990001], [27.749923, 43.4429215000001], [27.7581260000001, 43.4324135000001], [27.7615205000001, 43.430554], [27.7679465, 43.432469499], [27.774531, 43.4276035], [27.77903, 43.4255965], [27.7840245, 43.4223970000001], [27.806637, 43.4045955], [27.8271695, 43.4064480000001], [27.8278540000001, 43.4038320000001], [27.8295840000001, 43.3923565000001], [27.8261075, 43.387253501], [27.8395990000001, 43.3794299990001], [27.8512935000001, 43.365211], [27.8630045, 43.3596620000001], [27.8780445, 43.3543745010001], [27.8819990000001, 43.3622455010001], [27.891309, 43.3647080010001], [27.8978280000001, 43.3715950000001], [27.900925412, 43.3719119730001], [27.9012970000001, 43.37195], [27.901495605, 43.3727387130001], [27.9002385000001, 43.3740565000001], [27.9134835, 43.3860175], [27.9370685000001, 43.400765001], [27.939292, 43.3963840010001], [27.948042, 43.3922960000001], [27.9526980000001, 43.396102], [27.9862165000001, 43.388313], [27.9890760000001, 43.396572], [27.986994, 43.404145], [27.990528, 43.4077025], [27.989063, 43.4164765], [27.9847225, 43.422181999], [27.9727395, 43.4225685010001], [27.976905, 43.4277420000001] ], [ [27.7929300000001, 43.6251555000001], [27.7901580000001, 43.6117860000001], [27.7820465, 43.6059080000001], [27.7758170000001, 43.6083995000001], [27.7730560000001, 43.6130555010001], [27.773304, 43.622782999], [27.7764500000001, 43.6275470000001], [27.771444, 43.6296245], [27.751742, 43.6160610000001], [27.7388205, 43.594616], [27.7283895, 43.5888395000001], [27.7134265, 43.5885465000001], [27.7142880000001, 43.57124], [27.7159150000001, 43.55825], [27.7359835, 43.5587035], [27.7371745, 43.5525145010001], [27.7528205, 43.54936], [27.74884, 43.5466355], [27.752443, 43.538751], [27.7903875000001, 43.5380945010001], [27.7908315, 43.5332650010001], [27.8015535000001, 43.5331185000001], [27.7999955, 43.5273530000001], [27.803098, 43.5172015000001], [27.8249230000001, 43.5188690000001], [27.8239980000001, 43.5263725], [27.8296810000001, 43.5428765], [27.8494055, 43.54279], [27.855712, 43.5428150000001], [27.8603095, 43.5447070000001], [27.877931, 43.568205], [27.8729085000001, 43.5715660000001], [27.8843860000001, 43.5824850010001], [27.8748425000001, 43.5977485000001], [27.8832285, 43.599048001], [27.8916120000001, 43.6076674990001], [27.883839, 43.612572], [27.8749765000001, 43.6087955], [27.8642085000001, 43.6111060000001], [27.8651350000001, 43.622489], [27.846844, 43.62318], [27.8401880000001, 43.6251154990001], [27.804781, 43.6263604990001], [27.7929300000001, 43.6251555000001] ] ] },
+    "properties": {
+      "ISO": "BG-DOB15",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "72624",
+      "NAME_1": "DOB",
+      "TYPE_1": "Област",
+      "ID_2": "72624",
+      "NAME_2": "Добрич-селска",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [27.6355330000001, 43.9318965000001], [27.6281760000001, 43.932918], [27.6230430000001, 43.932491], [27.6157595, 43.9250445000001], [27.6210780000001, 43.918443], [27.6312590000001, 43.9185220000001], [27.631222, 43.9100770000001], [27.6286225000001, 43.9060440000001], [27.615916, 43.9019625], [27.6200305, 43.8969075000001], [27.6012280000001, 43.8970755], [27.5929285, 43.8888085], [27.582166, 43.8803195], [27.5806665000001, 43.8752625000001], [27.5738615000001, 43.869467], [27.5744815, 43.8662404990001], [27.5846080000001, 43.868143], [27.5867075, 43.866246], [27.585835, 43.8572560000001], [27.592884, 43.8552475000001], [27.5902145000001, 43.8494855000001], [27.5909785000001, 43.848648499], [27.5955020000001, 43.84578], [27.599427, 43.8247400010001], [27.5977175, 43.8197565], [27.606573, 43.8200204990001], [27.6035445000001, 43.8115099990001], [27.6111770000001, 43.8063910000001], [27.6138, 43.806967001], [27.6114515, 43.8101490000001], [27.6222230000001, 43.8147500000001], [27.6375850000001, 43.8224309990001], [27.6448780000001, 43.8254690000001], [27.6562745000001, 43.8248645], [27.6655040000001, 43.8178060000001], [27.667315, 43.8131495010001], [27.680912, 43.7997980000001], [27.6798475000001, 43.7956175000001], [27.6862105000001, 43.7931935], [27.6895880000001, 43.788891499], [27.6926905, 43.7818905], [27.6965165, 43.7791300000001], [27.7009705, 43.7757895010001], [27.7058470000001, 43.769619], [27.7062295000001, 43.7576775000001], [27.7026475000001, 43.7475610000001], [27.719229, 43.7386475000001], [27.7215385000001, 43.735351], [27.7300605, 43.7390740000001], [27.7397365, 43.7311470010001], [27.7641385000001, 43.7357135], [27.7538665000001, 43.7524480000001], [27.7725610000001, 43.758477], [27.7838130000001, 43.7621550000001], [27.7865435000001, 43.7583504990001], [27.8212290000001, 43.7694645], [27.820183, 43.7712100000001], [27.839773, 43.7775730000001], [27.8272865000001, 43.8032440010001], [27.83185, 43.8066545], [27.840493, 43.8159150000001], [27.8317825, 43.8202735], [27.8406265, 43.8295725], [27.8451545, 43.834283999], [27.8520285000001, 43.8308430000001], [27.8705715, 43.8508535], [27.878457, 43.8479525000001], [27.8814080000001, 43.8776549990001], [27.8963965, 43.8857820000001], [27.8934095000001, 43.8899920000001], [27.882524, 43.8838010000001], [27.8744205, 43.895532001], [27.8716450000001, 43.9006855000001], [27.8595125000001, 43.9081330010001], [27.8546470000001, 43.9130765], [27.8432085000001, 43.909164], [27.8385995, 43.9185435000001], [27.8448030000001, 43.9165170000001], [27.8543425, 43.9199080000001], [27.853084, 43.9213715000001], [27.8663250000001, 43.9261115000001], [27.8431925, 43.9524175000001], [27.8332995000001, 43.9652975000001], [27.818878, 43.9639625], [27.7555860000001, 43.958378], [27.7379990000001, 43.9534150000001], [27.7246400000001, 43.9560815], [27.709997, 43.959324], [27.7076030000001, 43.963922], [27.69541, 43.9873430000001], [27.6585635000001, 43.979408], [27.641622, 43.9688080000001], [27.6450855000001, 43.959929], [27.6539315000001, 43.9497630000001], [27.6370620000001, 43.9435740000001], [27.6355330000001, 43.9318965000001] ] ] },
+    "properties": {
+      "ISO": "BG-DOB20",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "72624",
+      "NAME_1": "DOB",
+      "TYPE_1": "Област",
+      "ID_2": "40097",
+      "NAME_2": "Крушари",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.018787, 42.7705970000001], [25.0205575, 42.7771205000001], [25.0160645, 42.7827374990001], [25.0102295, 42.7910570000001], [25.0076760000001, 42.8089140000001], [25.0026225, 42.815115], [24.9947910000001, 42.8168460000001], [24.981319, 42.8340450000001], [24.9790875000001, 42.844698001], [24.9821915000001, 42.8491500000001], [24.9811865, 42.8523970000001], [24.9634995000001, 42.8565980000001], [24.962588, 42.8625515000001], [24.9656355000001, 42.870476001], [24.9676675000001, 42.877255], [24.9656590000001, 42.8781825], [24.9434015, 42.882271001], [24.937574, 42.8820915000001], [24.932283, 42.8784445000001], [24.9092375000001, 42.8741225000001], [24.9063550000001, 42.8795455000001], [24.9020835000001, 42.8859459990001], [24.8855300000001, 42.8965285000001], [24.883585, 42.8965365], [24.8848985000001, 42.9043580000001], [24.8795375, 42.9070985000001], [24.8805545000001, 42.9123700000001], [24.8746035, 42.9138855], [24.8620720000001, 42.9109350000001], [24.8363465, 42.9138280000001], [24.8344280000001, 42.909188], [24.8367200000001, 42.9057325000001], [24.8304360000001, 42.9049935], [24.8280300000001, 42.9076635000001], [24.8216705, 42.9029325000001], [24.8110780000001, 42.9081459990001], [24.7974575000001, 42.9080885000001], [24.793146, 42.906233], [24.7906080000001, 42.9011735], [24.7902020000001, 42.8984675], [24.8044765000001, 42.8847800010001], [24.8128745000001, 42.8832655], [24.8135325000001, 42.8797535], [24.8242990000001, 42.873395499], [24.8285770000001, 42.8587415000001], [24.8206225000001, 42.8495535000001], [24.8331525, 42.840356], [24.8326030000001, 42.8351345], [24.8297210000001, 42.8268160000001], [24.8179285000001, 42.8161050000001], [24.8190455000001, 42.8116350000001], [24.8330305000001, 42.792157], [24.8507505000001, 42.784932], [24.8681205, 42.776016], [24.8691815, 42.7718860000001], [24.8663975000001, 42.7616455], [24.8609565, 42.7497920010001], [24.8644115000001, 42.728125], [24.8670735000001, 42.7218765000001], [24.88115, 42.7248325000001], [24.892253, 42.7220750000001], [24.915037, 42.7163325000001], [24.9238585, 42.729432999], [24.9374020000001, 42.7301825000001], [24.9464850000001, 42.723916], [24.9628000000001, 42.7316230010001], [25.0044665, 42.7398850000001], [25.0071955, 42.7376190000001], [25.008446, 42.740504], [25.003383, 42.745794], [24.9902710000001, 42.7471925], [24.9877230000001, 42.7511465010001], [24.9909345, 42.7528740000001], [25.014151, 42.7467490000001], [25.014535, 42.748024], [25.014595683, 42.748554084], [25.015474, 42.7562270000001], [25.0124210000001, 42.7522075000001], [24.9978980000001, 42.7534815000001], [24.999764, 42.758581], [25.013881, 42.765229], [25.018787, 42.7705970000001] ] ] },
+    "properties": {
+      "ISO": "BG-LOV02",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "43952",
+      "NAME_1": "LOV",
+      "TYPE_1": "Област",
+      "ID_2": "52218",
+      "NAME_2": "Априлци",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.4377985, 43.0161880000001], [24.4599365, 43.011517499], [24.4612065000001, 43.0171625], [24.4693575000001, 43.019501501], [24.4743455, 43.0189700010001], [24.4899815000001, 43.0124025000001], [24.5017790000001, 43.0129595000001], [24.5187475000001, 43.0163635000001], [24.5242910000001, 43.013764], [24.5483120000001, 43.0158030000001], [24.5674325000001, 43.0128135], [24.584686, 43.0136405000001], [24.5851960000001, 43.0180025000001], [24.5891625, 43.021529], [24.6033220000001, 43.0232195], [24.6280770000001, 43.0266320000001], [24.6375600000001, 43.0265755], [24.6416605000001, 43.0204150000001], [24.6505495000001, 43.022004001], [24.6506180000001, 43.0365840000001], [24.655668, 43.052738], [24.6632270000001, 43.0596085000001], [24.66582, 43.0655815000001], [24.6592665000001, 43.0661690000001], [24.6513580000001, 43.0635520010001], [24.6536390000001, 43.06089], [24.6501010000001, 43.0592245], [24.6363565, 43.0680685], [24.6210475, 43.0581970000001], [24.609746, 43.0573800000001], [24.6073945000001, 43.0632195000001], [24.603349, 43.06507], [24.5955555, 43.0629300000001], [24.591458, 43.0685845], [24.5954235, 43.0707044990001], [24.5962935000001, 43.0767975000001], [24.5847240000001, 43.0732355000001], [24.5841985000001, 43.0800879990001], [24.5889365, 43.0809794990001], [24.5682180000001, 43.0868090000001], [24.5605110000001, 43.0851690000001], [24.5571655000001, 43.0871670000001], [24.558953, 43.0879390000001], [24.5579740000001, 43.0930895000001], [24.55251, 43.0901499990001], [24.53864, 43.0974440000001], [24.5295775000001, 43.095128501], [24.5236565000001, 43.0986095000001], [24.5175885, 43.1077545000001], [24.521146, 43.1251885], [24.5265425000001, 43.1298295], [24.5376400000001, 43.1321290000001], [24.5415105000001, 43.1386735], [24.54758, 43.156104], [24.5431860000001, 43.1583555], [24.5420530000001, 43.1589554990001], [24.5654010000001, 43.160874], [24.5615685000001, 43.1658540000001], [24.5565215, 43.166116001], [24.552448, 43.1682825], [24.5513595, 43.1736000000001], [24.5566870000001, 43.1876475010001], [24.5778555000001, 43.2038810000001], [24.572997, 43.2083520000001], [24.5441585, 43.2098715000001], [24.5353265, 43.2134140000001], [24.5286550000001, 43.2112885010001], [24.4983685, 43.2235264990001], [24.4901595000001, 43.223349], [24.4893805, 43.2264495010001], [24.481663, 43.2309300000001], [24.476279, 43.2298945000001], [24.4693765000001, 43.2264740000001], [24.4610470000001, 43.216415999], [24.4432875000001, 43.2198944990001], [24.444851, 43.212953], [24.4374930000001, 43.2066875000001], [24.4547840000001, 43.2053220000001], [24.4544065000001, 43.1953355], [24.4448760000001, 43.195748], [24.439712, 43.1929925000001], [24.4298105, 43.1857675000001], [24.4059980000001, 43.193811], [24.388272, 43.198493501], [24.382101, 43.1983215000001], [24.3830315000001, 43.1925835000001], [24.3623400000001, 43.1904295000001], [24.358506, 43.1834030000001], [24.360646, 43.1739885000001], [24.3539875000001, 43.1686130000001], [24.34945, 43.1691494990001], [24.357471, 43.1587165], [24.3544505, 43.1583874990001], [24.3393335000001, 43.131894], [24.3333710000001, 43.1212775000001], [24.3323495000001, 43.1165705010001], [24.3216085, 43.1138375], [24.3216695, 43.1040065], [24.3275990000001, 43.0887445000001], [24.3378105, 43.0828895000001], [24.3356410000001, 43.0809410000001], [24.329506, 43.0812345000001], [24.3265050000001, 43.07455], [24.3229700000001, 43.0715465000001], [24.3032930000001, 43.064398], [24.285673, 43.0549960000001], [24.2955660000001, 43.0528800000001], [24.2956600000001, 43.0490355000001], [24.3035405000001, 43.043643], [24.3233395, 43.0419895000001], [24.322594, 43.0354675], [24.332116, 43.0351385000001], [24.3366750000001, 43.0334510000001], [24.3497055, 43.032834], [24.352678, 43.0251294990001], [24.3549180000001, 43.020916501], [24.3568065000001, 43.017584001], [24.35117, 43.008335], [24.349766, 42.9958945000001], [24.3305775000001, 42.9670355000001], [24.321198, 42.9635475000001], [24.3224960000001, 42.9581424990001], [24.3172015000001, 42.9527845000001], [24.3157055, 42.9473555000001], [24.3177345, 42.9443805000001], [24.328669, 42.9373760010001], [24.3492065, 42.9311250000001], [24.3546795, 42.9269950010001], [24.363237, 42.926070001], [24.3703390000001, 42.915041], [24.371265, 42.907568], [24.3869725000001, 42.908484], [24.3949620000001, 42.904775], [24.4239235000001, 42.904299], [24.449596, 42.8982354990001], [24.4602185000001, 42.889563001], [24.469835, 42.8806905000001], [24.4694905000001, 42.8858254990001], [24.4745800000001, 42.9000055000001], [24.4736990000001, 42.9119610000001], [24.4690860000001, 42.9171785], [24.4692170000001, 42.9200635], [24.4550055, 42.9368475000001], [24.4664100000001, 42.9404240000001], [24.4558335, 42.9548530000001], [24.426744, 42.9756745], [24.4273315, 42.984836], [24.4325690000001, 42.9882450000001], [24.4377985, 43.0161880000001] ] ] },
+    "properties": {
+      "ISO": "BG-LOV36",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "43952",
+      "NAME_1": "LOV",
+      "TYPE_1": "Област",
+      "ID_2": "75054",
+      "NAME_2": "Угърчин",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.2289960000001, 43.0762695000001], [24.2324330000001, 43.0830790000001], [24.2305650000001, 43.0866205], [24.241612, 43.0902770000001], [24.2416160000001, 43.0937420000001], [24.2307635, 43.1023355], [24.2378515, 43.110464], [24.2354555000001, 43.113028], [24.231069, 43.1113595], [24.203228, 43.1159280000001], [24.1986850000001, 43.1180494990001], [24.194687, 43.113662], [24.1913635, 43.1101375010001], [24.1704915, 43.1129940000001], [24.1698785, 43.1087220000001], [24.1713290000001, 43.104404], [24.151128, 43.1125025000001], [24.1333065000001, 43.1146815000001], [24.1192715, 43.1148105], [24.107043, 43.1203330000001], [24.103211, 43.1203860000001], [24.104072, 43.113653001], [24.0933515, 43.109539], [24.0600905000001, 43.1054165], [24.0482855000001, 43.107539], [24.0443175, 43.1104960000001], [24.0401335, 43.1091165], [24.0397575000001, 43.1061700000001], [24.028177, 43.10794], [24.000886, 43.1036950000001], [23.988567, 43.110084], [23.9689105000001, 43.11488], [23.963832, 43.1158945], [23.9651155, 43.1098860000001], [23.961712, 43.108191], [23.9593595000001, 43.0952025], [23.9713455, 43.0812415], [23.9715035, 43.0622515000001], [23.9813835, 43.0544775010001], [23.9986235000001, 43.0511490000001], [24.003682, 43.0515305000001], [24.0125925, 43.0595825], [24.0185320000001, 43.064352], [24.0354195, 43.0623105000001], [24.0439485000001, 43.0599290000001], [24.045955, 43.0450880000001], [24.0421255000001, 43.03024], [24.0443355, 43.0272555000001], [24.0548525, 43.021308], [24.058167, 43.0145200000001], [24.0589815000001, 43.0019050000001], [24.0679510000001, 42.9890205], [24.0769135, 42.9844225000001], [24.0902695, 42.9842605000001], [24.0978465000001, 42.9810635000001], [24.1047885, 42.9800505000001], [24.106098, 42.9749649990001], [24.1094595000001, 42.9727515010001], [24.1481365000001, 42.9725605], [24.1590670000001, 42.9744975], [24.162516, 42.9777445], [24.1486975, 42.9805835000001], [24.1352445000001, 43.0016255000001], [24.1325935, 43.0117445000001], [24.1324225000001, 43.015767501], [24.136711, 43.020318], [24.144348, 43.0195844990001], [24.147389, 43.022681999], [24.1406725000001, 43.0320285000001], [24.1424910000001, 43.0346745000001], [24.164232, 43.0478840000001], [24.1682910000001, 43.048619499], [24.1869075000001, 43.0438330000001], [24.1994855, 43.047868], [24.2156505, 43.0448845010001], [24.217225, 43.0476620000001], [24.224673, 43.0429255000001], [24.2285640000001, 43.048074501], [24.237214, 43.0534930000001], [24.239694, 43.0580955], [24.255319, 43.0599], [24.257391, 43.0620410000001], [24.256507292, 43.0627767610001], [24.2536515, 43.0651545000001], [24.2289960000001, 43.0762695000001] ] ] },
+    "properties": {
+      "ISO": "BG-LOV38",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "43952",
+      "NAME_1": "LOV",
+      "TYPE_1": "Област",
+      "ID_2": "87014",
+      "NAME_2": "Ябланица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.8711200000001, 42.9458635], [24.873542, 42.9492470000001], [24.8717655, 42.9605304990001], [24.8702645000001, 42.9722080000001], [24.8721330000001, 42.9847560000001], [24.8750145000001, 42.999716], [24.877665, 43.0120220000001], [24.8778310000001, 43.015251], [24.8693270000001, 43.0187125], [24.8677300000001, 43.0192505000001], [24.859769, 43.0160315000001], [24.8439565, 43.016942], [24.7755760000001, 43.0058640010001], [24.7521810000001, 43.0075395000001], [24.7417760000001, 43.0052690000001], [24.7374970000001, 42.9879270000001], [24.7198905000001, 42.987623], [24.709751, 42.9837395000001], [24.6942470000001, 42.986427], [24.6786520000001, 42.9847495000001], [24.6739935000001, 42.9905915000001], [24.6744935, 42.993033499], [24.6770655, 42.9989465], [24.6692775000001, 43.015248], [24.666567, 43.0193615000001], [24.657862, 43.0204965], [24.6505495000001, 43.022004001], [24.6416605000001, 43.0204150000001], [24.6375600000001, 43.0265755], [24.6280770000001, 43.0266320000001], [24.6033220000001, 43.0232195], [24.5891625, 43.021529], [24.5851960000001, 43.0180025000001], [24.584686, 43.0136405000001], [24.5674325000001, 43.0128135], [24.5483120000001, 43.0158030000001], [24.5242910000001, 43.013764], [24.5187475000001, 43.0163635000001], [24.5017790000001, 43.0129595000001], [24.4899815000001, 43.0124025000001], [24.4743455, 43.0189700010001], [24.4693575000001, 43.019501501], [24.4612065000001, 43.0171625], [24.4599365, 43.011517499], [24.4377985, 43.0161880000001], [24.4325690000001, 42.9882450000001], [24.4273315, 42.984836], [24.426744, 42.9756745], [24.4558335, 42.9548530000001], [24.4664100000001, 42.9404240000001], [24.4550055, 42.9368475000001], [24.4692170000001, 42.9200635], [24.4690860000001, 42.9171785], [24.4736990000001, 42.9119610000001], [24.4745800000001, 42.9000055000001], [24.4694905000001, 42.8858254990001], [24.469835, 42.8806905000001], [24.476751, 42.8808445000001], [24.477633, 42.8773915], [24.4827995000001, 42.8744525000001], [24.4959170000001, 42.8607535], [24.4925890000001, 42.8521845000001], [24.5006675000001, 42.8403284990001], [24.508266, 42.8353440000001], [24.5002085, 42.8228585000001], [24.4920335, 42.8179710000001], [24.4889645000001, 42.80274], [24.4939935, 42.7934215000001], [24.4946835000001, 42.7937020000001], [24.5115020000001, 42.7930700000001], [24.5295600000001, 42.7870339990001], [24.5467525, 42.7874350000001], [24.5578505, 42.788658], [24.56102, 42.7921929990001], [24.580811, 42.7883885000001], [24.6060245, 42.780430499], [24.612891, 42.7772965], [24.6223665000001, 42.7783820000001], [24.6297035000001, 42.7725045], [24.6409375000001, 42.7687250010001], [24.647362, 42.7520720000001], [24.6623635, 42.7446715], [24.664292, 42.734066999], [24.671634, 42.7328160000001], [24.67405, 42.7256795000001], [24.6861905000001, 42.7216035000001], [24.6873035, 42.7215795000001], [24.699683, 42.7160270000001], [24.7094555000001, 42.7177465], [24.720421, 42.714634], [24.728683, 42.7127610000001], [24.7549680000001, 42.7085280000001], [24.7807025000001, 42.7166265000001], [24.7811350000001, 42.7205200000001], [24.7902925000001, 42.7246685000001], [24.8126110000001, 42.721441], [24.8243420000001, 42.7264505000001], [24.838445, 42.7267450000001], [24.8490195000001, 42.7191095000001], [24.8670735000001, 42.7218765000001], [24.8644115000001, 42.728125], [24.8609565, 42.7497920010001], [24.8663975000001, 42.7616455], [24.8691815, 42.7718860000001], [24.8681205, 42.776016], [24.8507505000001, 42.784932], [24.8330305000001, 42.792157], [24.8190455000001, 42.8116350000001], [24.8179285000001, 42.8161050000001], [24.8297210000001, 42.8268160000001], [24.8326030000001, 42.8351345], [24.8331525, 42.840356], [24.8206225000001, 42.8495535000001], [24.8285770000001, 42.8587415000001], [24.8242990000001, 42.873395499], [24.8135325000001, 42.8797535], [24.8128745000001, 42.8832655], [24.8044765000001, 42.8847800010001], [24.7902020000001, 42.8984675], [24.7906080000001, 42.9011735], [24.793146, 42.906233], [24.7974575000001, 42.9080885000001], [24.8110780000001, 42.9081459990001], [24.8216705, 42.9029325000001], [24.8280300000001, 42.9076635000001], [24.8304360000001, 42.9049935], [24.8367200000001, 42.9057325000001], [24.8344280000001, 42.909188], [24.8363465, 42.9138280000001], [24.8620720000001, 42.9109350000001], [24.8746035, 42.9138855], [24.8805545000001, 42.9123700000001], [24.8795365, 42.91371], [24.8855955000001, 42.9215380000001], [24.8876435, 42.932266], [24.883968, 42.937741499], [24.8711200000001, 42.9458635] ] ] },
+    "properties": {
+      "ISO": "BG-LOV34",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "43952",
+      "NAME_1": "LOV",
+      "TYPE_1": "Област",
+      "ID_2": "73198",
+      "NAME_2": "Троян",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.0257705000001, 43.1516655], [24.0159465, 43.1374440000001], [24.020839, 43.13559], [24.0241790000001, 43.1305505010001], [24.0270315000001, 43.1121575000001], [24.028177, 43.10794], [24.0397575000001, 43.1061700000001], [24.0401335, 43.1091165], [24.0443175, 43.1104960000001], [24.0482855000001, 43.107539], [24.0600905000001, 43.1054165], [24.0933515, 43.109539], [24.104072, 43.113653001], [24.103211, 43.1203860000001], [24.107043, 43.1203330000001], [24.1192715, 43.1148105], [24.1333065000001, 43.1146815000001], [24.151128, 43.1125025000001], [24.1713290000001, 43.104404], [24.1698785, 43.1087220000001], [24.1704915, 43.1129940000001], [24.1913635, 43.1101375010001], [24.194687, 43.113662], [24.1986850000001, 43.1180494990001], [24.203228, 43.1159280000001], [24.231069, 43.1113595], [24.2354555000001, 43.113028], [24.2378515, 43.110464], [24.2307635, 43.1023355], [24.2416160000001, 43.0937420000001], [24.241612, 43.0902770000001], [24.2305650000001, 43.0866205], [24.2324330000001, 43.0830790000001], [24.2289960000001, 43.0762695000001], [24.2536515, 43.0651545000001], [24.256507292, 43.0627767610001], [24.2575840000001, 43.0653835000001], [24.2661955, 43.0655465], [24.267619, 43.0587354990001], [24.285673, 43.0549960000001], [24.3032930000001, 43.064398], [24.3229700000001, 43.0715465000001], [24.3265050000001, 43.07455], [24.329506, 43.0812345000001], [24.3356410000001, 43.0809410000001], [24.3378105, 43.0828895000001], [24.3275990000001, 43.0887445000001], [24.3216695, 43.1040065], [24.3216085, 43.1138375], [24.3323495000001, 43.1165705010001], [24.3333710000001, 43.1212775000001], [24.3393335000001, 43.131894], [24.3544505, 43.1583874990001], [24.357471, 43.1587165], [24.34945, 43.1691494990001], [24.3539875000001, 43.1686130000001], [24.360646, 43.1739885000001], [24.358506, 43.1834030000001], [24.3623400000001, 43.1904295000001], [24.3830315000001, 43.1925835000001], [24.382101, 43.1983215000001], [24.388272, 43.198493501], [24.4059980000001, 43.193811], [24.4298105, 43.1857675000001], [24.439712, 43.1929925000001], [24.4448760000001, 43.195748], [24.4544065000001, 43.1953355], [24.4547840000001, 43.2053220000001], [24.4374930000001, 43.2066875000001], [24.444851, 43.212953], [24.4432875000001, 43.2198944990001], [24.4282030000001, 43.2293450000001], [24.4283155000001, 43.2482785], [24.3996595, 43.2563600010001], [24.3915645000001, 43.2555184990001], [24.3892040000001, 43.2609370000001], [24.3952915, 43.2661470000001], [24.395952, 43.2717505000001], [24.3921843040001, 43.2741694420001], [24.3913445000001, 43.274096], [24.389125413, 43.2761333830001], [24.3871885, 43.2773769990001], [24.3864627940001, 43.277347515], [24.3761620000001, 43.2769290000001], [24.369937, 43.270723], [24.3312635, 43.2612095010001], [24.3269725000001, 43.2558920000001], [24.305643, 43.237965], [24.2979955000001, 43.2395355], [24.2809580000001, 43.2375480000001], [24.2640270000001, 43.2315565010001], [24.2622885000001, 43.228079], [24.2548275, 43.2238559990001], [24.2334250000001, 43.2299770000001], [24.2303185000001, 43.2299165000001], [24.230394, 43.2260854990001], [24.196243, 43.2335625000001], [24.1924295000001, 43.2395930000001], [24.1606650000001, 43.2358675], [24.1485880000001, 43.244113], [24.13737, 43.2467625000001], [24.1305380000001, 43.24582], [24.1241640000001, 43.2411010000001], [24.116636, 43.2411964990001], [24.0924420000001, 43.229835], [24.0858105, 43.236143], [24.0779365000001, 43.231747], [24.0701470000001, 43.2227905], [24.0599480000001, 43.2250720000001], [24.0530205000001, 43.223285], [24.0507465000001, 43.2190264990001], [24.052514, 43.2165790000001], [24.072641, 43.2127814990001], [24.0772585, 43.2063635000001], [24.0756815, 43.2017020000001], [24.0594915, 43.2093375000001], [24.0483235, 43.2125380000001], [24.028557, 43.2061594990001], [24.0331415000001, 43.1943415000001], [24.0216265, 43.1844055], [24.018558, 43.1784995000001], [24.021349, 43.1740645], [24.026421, 43.1724345000001], [24.0291950000001, 43.166954], [24.0257705000001, 43.1516655] ] ] },
+    "properties": {
+      "ISO": "BG-LOV19",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "43952",
+      "NAME_1": "LOV",
+      "TYPE_1": "Област",
+      "ID_2": "44327",
+      "NAME_2": "Луковит",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.2861270000001, 42.7725765000001], [24.3227295, 42.7600645000001], [24.335562, 42.7499755000001], [24.3546305, 42.7548620000001], [24.3735665, 42.7487615000001], [24.385927, 42.7499535000001], [24.4187585, 42.7510980010001], [24.4251655, 42.7543265], [24.44359, 42.749134], [24.4635695000001, 42.7499250000001], [24.4772035, 42.7581465000001], [24.4855055, 42.767392], [24.4823485000001, 42.7716590000001], [24.4809935000001, 42.7810345], [24.4939035, 42.7933420000001], [24.4939935, 42.7934215000001], [24.4889645000001, 42.80274], [24.4920335, 42.8179710000001], [24.5002085, 42.8228585000001], [24.508266, 42.8353440000001], [24.5006675000001, 42.8403284990001], [24.4925890000001, 42.8521845000001], [24.4959170000001, 42.8607535], [24.4827995000001, 42.8744525000001], [24.477633, 42.8773915], [24.476751, 42.8808445000001], [24.469835, 42.8806905000001], [24.4602185000001, 42.889563001], [24.449596, 42.8982354990001], [24.4239235000001, 42.904299], [24.3949620000001, 42.904775], [24.3869725000001, 42.908484], [24.371265, 42.907568], [24.3703390000001, 42.915041], [24.363237, 42.926070001], [24.3546795, 42.9269950010001], [24.3492065, 42.9311250000001], [24.328669, 42.9373760010001], [24.3177345, 42.9443805000001], [24.3157055, 42.9473555000001], [24.3172015000001, 42.9527845000001], [24.3224960000001, 42.9581424990001], [24.321198, 42.9635475000001], [24.3305775000001, 42.9670355000001], [24.349766, 42.9958945000001], [24.35117, 43.008335], [24.3568065000001, 43.017584001], [24.3549180000001, 43.020916501], [24.352678, 43.0251294990001], [24.3497055, 43.032834], [24.3366750000001, 43.0334510000001], [24.332116, 43.0351385000001], [24.322594, 43.0354675], [24.3233395, 43.0419895000001], [24.3035405000001, 43.043643], [24.2956600000001, 43.0490355000001], [24.2955660000001, 43.0528800000001], [24.285673, 43.0549960000001], [24.267619, 43.0587354990001], [24.2661955, 43.0655465], [24.2575840000001, 43.0653835000001], [24.256507292, 43.0627767610001], [24.257391, 43.0620410000001], [24.255319, 43.0599], [24.239694, 43.0580955], [24.237214, 43.0534930000001], [24.2285640000001, 43.048074501], [24.224673, 43.0429255000001], [24.217225, 43.0476620000001], [24.2156505, 43.0448845010001], [24.1994855, 43.047868], [24.1869075000001, 43.0438330000001], [24.1682910000001, 43.048619499], [24.164232, 43.0478840000001], [24.1424910000001, 43.0346745000001], [24.1406725000001, 43.0320285000001], [24.147389, 43.022681999], [24.144348, 43.0195844990001], [24.136711, 43.020318], [24.1324225000001, 43.015767501], [24.1325935, 43.0117445000001], [24.1352445000001, 43.0016255000001], [24.1486975, 42.9805835000001], [24.162516, 42.9777445], [24.1590670000001, 42.9744975], [24.1481365000001, 42.9725605], [24.1094595000001, 42.9727515010001], [24.106098, 42.9749649990001], [24.1047885, 42.9800505000001], [24.0978465000001, 42.9810635000001], [24.0902695, 42.9842605000001], [24.0769135, 42.9844225000001], [24.071402, 42.9849745000001], [24.0710920000001, 42.981234], [24.0654865000001, 42.981367], [24.064426, 42.9762970000001], [24.0621515, 42.964795], [24.0756465000001, 42.9575425], [24.0865555, 42.9563770010001], [24.0915150000001, 42.9488935], [24.089748, 42.9420585010001], [24.1025250000001, 42.9426260000001], [24.1056165, 42.937234], [24.1314615000001, 42.9294620000001], [24.14369, 42.9314], [24.1542215000001, 42.9352525], [24.1652915, 42.9297015000001], [24.1691455000001, 42.9206310000001], [24.176545, 42.901129], [24.1759545, 42.895574501], [24.1713245, 42.8883465000001], [24.1696195000001, 42.8734795], [24.1659305000001, 42.85526], [24.168729, 42.8416980000001], [24.1923365000001, 42.8341055010001], [24.1805895000001, 42.8284780000001], [24.168053, 42.8278940000001], [24.1675015000001, 42.816318499], [24.172897, 42.8133460000001], [24.1920255000001, 42.821516], [24.2029875000001, 42.8206895000001], [24.2023560000001, 42.8138709990001], [24.1949035000001, 42.8089400000001], [24.1548295000001, 42.799179], [24.148403, 42.7870520000001], [24.1279175, 42.7827750000001], [24.127984, 42.7749480000001], [24.138135, 42.7761850000001], [24.1487925000001, 42.7731880000001], [24.1800105, 42.7665025000001], [24.1907525, 42.7626120000001], [24.2292205000001, 42.7668985], [24.2338655, 42.7668945], [24.2442945, 42.7744500000001], [24.2541005, 42.774845], [24.2861270000001, 42.7725765000001] ] ] },
+    "properties": {
+      "ISO": "BG-LOV33",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "43952",
+      "NAME_1": "LOV",
+      "TYPE_1": "Област",
+      "ID_2": "72343",
+      "NAME_2": "Тетевен",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.7406310000001, 43.2955995], [24.7281855000001, 43.2942715], [24.7294075, 43.28848], [24.7157585, 43.2822755], [24.7065115, 43.2780994990001], [24.693972, 43.275744], [24.6859175000001, 43.274886501], [24.6835455, 43.2670625000001], [24.6877365, 43.2581000000001], [24.6834325, 43.2528570000001], [24.6826445, 43.2505785000001], [24.6693910000001, 43.2512219990001], [24.6682900000001, 43.2639850000001], [24.653938, 43.279213], [24.6531735, 43.2792625000001], [24.6562605, 43.2515289990001], [24.6442035000001, 43.2442275000001], [24.6412125000001, 43.236678], [24.6297530000001, 43.2314390000001], [24.6312510000001, 43.225309], [24.638602, 43.223395], [24.6339005, 43.2215654990001], [24.6256750000001, 43.2209285000001], [24.6203435, 43.2204340000001], [24.619243, 43.2170800000001], [24.6019965, 43.2145449990001], [24.6002340000001, 43.2103905000001], [24.5963855000001, 43.208763], [24.5778555000001, 43.2038810000001], [24.5566870000001, 43.1876475010001], [24.5513595, 43.1736000000001], [24.552448, 43.1682825], [24.5565215, 43.166116001], [24.5615685000001, 43.1658540000001], [24.5654010000001, 43.160874], [24.5420530000001, 43.1589554990001], [24.5431860000001, 43.1583555], [24.54758, 43.156104], [24.5415105000001, 43.1386735], [24.5376400000001, 43.1321290000001], [24.5265425000001, 43.1298295], [24.521146, 43.1251885], [24.5175885, 43.1077545000001], [24.5236565000001, 43.0986095000001], [24.5295775000001, 43.095128501], [24.53864, 43.0974440000001], [24.55251, 43.0901499990001], [24.5579740000001, 43.0930895000001], [24.558953, 43.0879390000001], [24.5571655000001, 43.0871670000001], [24.5605110000001, 43.0851690000001], [24.5682180000001, 43.0868090000001], [24.5889365, 43.0809794990001], [24.5841985000001, 43.0800879990001], [24.5847240000001, 43.0732355000001], [24.5962935000001, 43.0767975000001], [24.5954235, 43.0707044990001], [24.591458, 43.0685845], [24.5955555, 43.0629300000001], [24.603349, 43.06507], [24.6073945000001, 43.0632195000001], [24.609746, 43.0573800000001], [24.6210475, 43.0581970000001], [24.6363565, 43.0680685], [24.6501010000001, 43.0592245], [24.6536390000001, 43.06089], [24.6513580000001, 43.0635520010001], [24.6592665000001, 43.0661690000001], [24.66582, 43.0655815000001], [24.6632270000001, 43.0596085000001], [24.655668, 43.052738], [24.6506180000001, 43.0365840000001], [24.6505495000001, 43.022004001], [24.657862, 43.0204965], [24.666567, 43.0193615000001], [24.6692775000001, 43.015248], [24.6770655, 42.9989465], [24.6744935, 42.993033499], [24.6739935000001, 42.9905915000001], [24.6786520000001, 42.9847495000001], [24.6942470000001, 42.986427], [24.709751, 42.9837395000001], [24.7198905000001, 42.987623], [24.7374970000001, 42.9879270000001], [24.7417760000001, 43.0052690000001], [24.7521810000001, 43.0075395000001], [24.7755760000001, 43.0058640010001], [24.8439565, 43.016942], [24.859769, 43.0160315000001], [24.8677300000001, 43.0192505000001], [24.8693270000001, 43.0187125], [24.8778310000001, 43.015251], [24.8892695000001, 43.01394], [24.8998165, 43.021709], [24.9376415, 43.028921499], [24.9428675, 43.0289885], [24.9457580000001, 43.0280595], [24.944822, 43.0300485000001], [24.9515460000001, 43.0311965000001], [24.9516760000001, 43.0344950000001], [24.9326990000001, 43.038377], [24.930145, 43.041144], [24.935957, 43.0436779990001], [24.941964, 43.0516515], [24.9332140000001, 43.0575160000001], [24.9266245000001, 43.058187], [24.918211, 43.0671630000001], [24.9224780000001, 43.0716140010001], [24.9256695, 43.076492], [24.9220750000001, 43.081244], [24.9182230000001, 43.1046620000001], [24.9278620000001, 43.114082501], [24.961033, 43.1191475000001], [24.9665825000001, 43.1233205], [24.963779, 43.1280005], [24.9702990000001, 43.1352065], [24.972904, 43.154661499], [24.9634465, 43.1635160000001], [24.9559565000001, 43.184472999], [24.958287, 43.185947501], [24.956582, 43.1874690000001], [24.9601155, 43.1937629990001], [24.973062, 43.1913835], [24.9725730000001, 43.196088], [24.970271, 43.217040001], [24.9677935, 43.228379499], [24.9649995, 43.2342735], [24.9704705, 43.236652], [25.0123585000001, 43.2360165000001], [25.0122420000001, 43.248563001], [25.0093140000001, 43.2539505], [25.0120325, 43.2663905], [25.0160270000001, 43.268223], [25.0132675, 43.2785695000001], [25.006716, 43.2949135000001], [24.9829135000001, 43.2963720010001], [24.9771565, 43.2967355000001], [24.9454205000001, 43.2961290000001], [24.9454265000001, 43.30564], [24.931272, 43.305725], [24.9348955, 43.2937745], [24.9155105, 43.2905250000001], [24.9139945000001, 43.2872075000001], [24.9041755000001, 43.289042501], [24.8995005, 43.2966690000001], [24.8856165, 43.2976190000001], [24.886216, 43.3024185], [24.8325570000001, 43.3036270000001], [24.833068, 43.3069224990001], [24.813674, 43.3157869990001], [24.8114155000001, 43.3168615000001], [24.8059430000001, 43.3143019990001], [24.7548035, 43.3131095], [24.7544865, 43.305191], [24.74213, 43.3057495], [24.7406310000001, 43.2955995] ] ] },
+    "properties": {
+      "ISO": "BG-LOV18",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "43952",
+      "NAME_1": "LOV",
+      "TYPE_1": "Област",
+      "ID_2": "43952",
+      "NAME_2": "Ловеч",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.0280295000001, 43.379848], [25.0195305, 43.378202], [25.0193180000001, 43.3615355000001], [25.032903, 43.3604510000001], [25.0333145000001, 43.3494775], [25.0219210000001, 43.3478230000001], [25.021649, 43.3321785000001], [25.0330995, 43.3329595000001], [25.0332280000001, 43.325911999], [25.0248515000001, 43.3200515], [24.9885185000001, 43.3251030000001], [24.9885515, 43.318321], [24.9793510000001, 43.3178375000001], [24.9771565, 43.2967355000001], [24.9829135000001, 43.2963720010001], [25.006716, 43.2949135000001], [25.0132675, 43.2785695000001], [25.0160270000001, 43.268223], [25.0120325, 43.2663905], [25.0093140000001, 43.2539505], [25.0122420000001, 43.248563001], [25.0123585000001, 43.2360165000001], [24.9704705, 43.236652], [24.9649995, 43.2342735], [24.9677935, 43.228379499], [24.970271, 43.217040001], [24.9725730000001, 43.196088], [24.973062, 43.1913835], [24.986765, 43.1938870000001], [24.9949570000001, 43.193658499], [24.9954930000001, 43.1901810000001], [25.0047765000001, 43.1905320000001], [25.0123760000001, 43.1862975000001], [25.0134025, 43.181136], [25.024754, 43.1785370000001], [25.076597, 43.1777805], [25.1051215000001, 43.183564], [25.112494, 43.1913205000001], [25.1152510000001, 43.1984905], [25.1165820000001, 43.2100830000001], [25.1193890000001, 43.221431], [25.1272355, 43.2326404990001], [25.1315335, 43.2381715000001], [25.150063, 43.2546055], [25.1469195, 43.2578335000001], [25.1382205, 43.2522465000001], [25.1380140000001, 43.2657435], [25.14043, 43.2668305], [25.1401980000001, 43.271245499], [25.1387145000001, 43.276958], [25.1299285000001, 43.276661001], [25.1285855, 43.269684], [25.1145975000001, 43.2691815000001], [25.1183715, 43.2856845000001], [25.0994665000001, 43.2861005], [25.0981395000001, 43.2984530000001], [25.0846395, 43.303143], [25.0815935000001, 43.3146545000001], [25.0592975000001, 43.3580290000001], [25.0496735, 43.3588475000001], [25.0527425000001, 43.377713], [25.0280295000001, 43.379848] ] ] },
+    "properties": {
+      "ISO": "BG-LOV17",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "43952",
+      "NAME_1": "LOV",
+      "TYPE_1": "Област",
+      "ID_2": "43476",
+      "NAME_2": "Летница",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.5250945, 41.4052030010001], [23.5342435000001, 41.4021480000001], [23.5373135, 41.393985], [23.5436110000001, 41.39194], [23.5519200000001, 41.3862795000001], [23.5778745000001, 41.3906240000001], [23.586712, 41.387416], [23.5976470000001, 41.3775065], [23.606276, 41.379869], [23.6148385000001, 41.3755810000001], [23.624223, 41.3757275], [23.6364135000001, 41.3755015], [23.6463155000001, 41.3804325], [23.648379, 41.3849615], [23.647978, 41.3937215], [23.639863, 41.399367], [23.6402705, 41.403846], [23.6487655, 41.4093255000001], [23.6516795000001, 41.4160935000001], [23.6486025, 41.4244915], [23.6570320000001, 41.4362325000001], [23.6588605000001, 41.4433465000001], [23.6602405, 41.4527835000001], [23.6538695, 41.4588935], [23.6552060000001, 41.4673705000001], [23.6502100000001, 41.4767215000001], [23.6476595, 41.4852295000001], [23.6470815000001, 41.4902690000001], [23.6489790000001, 41.4938725000001], [23.6462195, 41.4996095000001], [23.648494, 41.5089925], [23.629281, 41.521754], [23.6270575, 41.527182], [23.6300800000001, 41.5345785000001], [23.6301875, 41.541731999], [23.6116715000001, 41.5634535], [23.6125870000001, 41.5703785010001], [23.615036, 41.579438], [23.611593, 41.583920499], [23.6107685000001, 41.6008175000001], [23.6008475, 41.6086965000001], [23.5712780000001, 41.6237255], [23.5593255000001, 41.6399195000001], [23.5249745, 41.6609569990001], [23.5186085, 41.6749290000001], [23.515433, 41.6867015], [23.5154370000001, 41.6932215], [23.5077545, 41.694438], [23.4976570000001, 41.6952245], [23.493345, 41.6965740000001], [23.491091, 41.701287], [23.477109, 41.7032855], [23.467634, 41.6990505000001], [23.459008, 41.7129855000001], [23.446245, 41.7238840000001], [23.4372985000001, 41.7306620000001], [23.4362355000001, 41.7323220000001], [23.4299350000001, 41.7276275], [23.4229020000001, 41.7267420000001], [23.399431, 41.7362015000001], [23.3967465000001, 41.7419080000001], [23.396536, 41.7451970000001], [23.3748585000001, 41.7388770000001], [23.3708075000001, 41.726142], [23.352067, 41.7237515], [23.3405295000001, 41.7160855000001], [23.339209, 41.7124370010001], [23.3240705000001, 41.70207], [23.320342, 41.6905595000001], [23.3110105000001, 41.679377], [23.286351, 41.6774560000001], [23.282204, 41.6711175], [23.2588085, 41.661866], [23.252129, 41.6528950000001], [23.2491935, 41.6370270000001], [23.2409685000001, 41.633768499], [23.230643, 41.622737], [23.2294880000001, 41.6178674990001], [23.2164905000001, 41.6122305000001], [23.2194410000001, 41.5992390000001], [23.2226365000001, 41.5922705], [23.2194280000001, 41.5855510000001], [23.215264, 41.5853235000001], [23.2119950000001, 41.5810015000001], [23.2114275000001, 41.572005], [23.1977465000001, 41.5739840000001], [23.1946735000001, 41.5751245000001], [23.1802615, 41.569419], [23.1674005, 41.561426], [23.1517045000001, 41.5522970000001], [23.151505, 41.5484225000001], [23.1548755000001, 41.5439695000001], [23.1497665000001, 41.5316285000001], [23.162628, 41.530928999], [23.1642945, 41.5310430010001], [23.1869705, 41.527201501], [23.1981045000001, 41.5307765000001], [23.2106200000001, 41.52698], [23.2074205000001, 41.5186170000001], [23.2080515000001, 41.5106640000001], [23.233638, 41.500127999], [23.253162, 41.5046840000001], [23.2532875000001, 41.503544], [23.2581960000001, 41.494852], [23.2665215000001, 41.486271], [23.2726695000001, 41.472603], [23.2803985, 41.4736145000001], [23.2893790000001, 41.4711175000001], [23.2964495000001, 41.4672705], [23.3072755000001, 41.4640895], [23.3135945000001, 41.4655760000001], [23.3206975, 41.4720035], [23.3277880000001, 41.4725230000001], [23.3315650000001, 41.469812], [23.3304590000001, 41.4795425], [23.3489615, 41.476773], [23.352972, 41.4844875000001], [23.353462, 41.4820940000001], [23.3604895, 41.4775350000001], [23.3680505, 41.4684855], [23.3619170000001, 41.460313], [23.3659345, 41.4582875], [23.3658730000001, 41.4357770010001], [23.3716065, 41.435751], [23.3849750000001, 41.4358490000001], [23.3955370000001, 41.4255315], [23.3959980000001, 41.4203990010001], [23.392302, 41.4126245000001], [23.3839965, 41.407086], [23.3835555000001, 41.401318001], [23.3924625000001, 41.3944295000001], [23.3977175000001, 41.395471001], [23.4043575000001, 41.4014870010001], [23.415894, 41.3996480010001], [23.4202585, 41.3984565000001], [23.4355755, 41.4056034990001], [23.440755, 41.404975], [23.4842790000001, 41.3987250000001], [23.5227805000001, 41.4050445], [23.5250945, 41.4052030010001] ] ] },
+    "properties": {
+      "ISO": "BG-BLG40",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "65334",
+      "NAME_2": "Сандански",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.954144, 41.845563], [22.946602, 41.850218], [22.937189, 41.847157], [22.9415055000001, 41.83205], [22.9436685000001, 41.827912], [22.94089, 41.8234650000001], [22.940678, 41.8171155000001], [22.953785, 41.7983475], [22.963469, 41.7893805], [22.9654370000001, 41.7815715], [22.963311, 41.7750455], [22.9700675, 41.7705165], [22.9830390000001, 41.7690430000001], [22.9897035000001, 41.771461], [23.0083865, 41.7690795], [23.0127005, 41.759598499], [23.0388625000001, 41.7519155000001], [23.0683205, 41.7766875], [23.078308, 41.7806045], [23.0874470000001, 41.793595], [23.0928235000001, 41.7974025], [23.09813, 41.795778], [23.1084795, 41.7957465000001], [23.116405, 41.7924945], [23.1215340000001, 41.7878415000001], [23.12334, 41.782184499], [23.1322545, 41.7769520000001], [23.1475090000001, 41.7804055], [23.1546215000001, 41.7772135000001], [23.1528835, 41.7867360000001], [23.1637525, 41.807892499], [23.170938, 41.8066419990001], [23.189919, 41.8116905000001], [23.1967545000001, 41.8054475000001], [23.2051515000001, 41.8032315], [23.206065, 41.7996325], [23.2226240000001, 41.8020700000001], [23.2321105, 41.8070195000001], [23.2513765, 41.815750501], [23.2666245, 41.8154060000001], [23.2761415000001, 41.8122755000001], [23.2903190000001, 41.8141350000001], [23.2903215000001, 41.8188355], [23.2925345, 41.8201905000001], [23.3123615000001, 41.8184115], [23.3080905, 41.816248], [23.3336325000001, 41.8224029990001], [23.335657, 41.8260110000001], [23.3348965000001, 41.8340910000001], [23.322257, 41.8341005], [23.3099780000001, 41.8417160000001], [23.2926675000001, 41.8470695], [23.2918005, 41.855056], [23.3163555, 41.889417], [23.3193935, 41.9038685], [23.3256010000001, 41.911672001], [23.3315220000001, 41.9145495010001], [23.3327205000001, 41.927199], [23.3312725000001, 41.933636], [23.3340180000001, 41.9371140000001], [23.340544, 41.934842001], [23.347788, 41.937234001], [23.3582470000001, 41.944396999], [23.3586965000001, 41.9495260000001], [23.3641515, 41.9677175000001], [23.3699875, 41.9750565000001], [23.365772, 41.9774175000001], [23.3544315, 41.981384001], [23.3393765000001, 41.9814045000001], [23.31161, 41.9952415010001], [23.296656, 41.9955385010001], [23.290628, 42.0036095], [23.2895970000001, 42.0101090000001], [23.267366, 42.0175005], [23.2616795000001, 42.0164645], [23.2489585000001, 42.002731001], [23.2441165000001, 42.0032835000001], [23.226009, 41.9960075000001], [23.2236990000001, 41.9925190000001], [23.2088420000001, 41.9886155], [23.2069825, 41.9805715], [23.1960465, 41.9693675], [23.1955805000001, 41.9662680000001], [23.1827375, 41.9619375], [23.1729605, 41.9566365000001], [23.152142, 41.9551745000001], [23.1458025000001, 41.9433365], [23.1354460000001, 41.9375220000001], [23.1119420000001, 41.9338460000001], [23.1116695000001, 41.939154], [23.1050285000001, 41.94059], [23.097894, 41.9435980000001], [23.0946955000001, 41.947478], [23.1016320000001, 41.9514915], [23.1036300000001, 41.9562325000001], [23.094702, 41.9605345], [23.07296, 41.9589770000001], [23.0635600000001, 41.9631030000001], [23.0614585000001, 41.962522], [23.053611, 41.9535354990001], [23.049111, 41.9598325000001], [23.0347115000001, 41.9529644990001], [23.033937, 41.9470220000001], [23.0341485000001, 41.922852], [23.0356860000001, 41.9119785], [23.03668, 41.9093745000001], [23.02295, 41.903312], [23.0228225000001, 41.895469], [23.0252590000001, 41.8893180000001], [23.0170585000001, 41.8788855000001], [23.0114265, 41.8621440000001], [22.9963965000001, 41.8600260000001], [22.9805665000001, 41.8556995000001], [22.9769295, 41.8507950000001], [22.9775960000001, 41.84556], [22.954144, 41.845563] ] ] },
+    "properties": {
+      "ISO": "BG-BLG44",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "66460",
+      "NAME_2": "Симитли",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.077322, 42.052151], [23.0684695000001, 42.050011], [23.056022, 42.041780999], [23.0350020000001, 42.0469264990001], [23.0346000000001, 42.0474400000001], [23.0354665, 42.0503595000001], [23.0327100000001, 42.054136], [23.0256580000001, 42.0565345000001], [23.0245140000001, 42.0592365000001], [23.0277790000001, 42.0622670000001], [23.0276930000001, 42.066897], [23.0167680000001, 42.0679855010001], [22.9985105000001, 42.0638015000001], [22.9778455000001, 42.0655225], [22.9607550000001, 42.0723905], [22.958628, 42.0825175000001], [22.9589355000001, 42.086963], [22.95845, 42.0902365000001], [22.9453950000001, 42.0964925010001], [22.9394980000001, 42.096531], [22.927557, 42.0796930000001], [22.919478, 42.0786130000001], [22.9003690000001, 42.0653475], [22.9012605, 42.0602155], [22.9109475000001, 42.05253], [22.9125255000001, 42.0483225], [22.9031275, 42.0461050000001], [22.8959760000001, 42.0308210000001], [22.8931020000001, 42.0266979990001], [22.887727, 42.02597], [22.8836880000001, 42.0325145], [22.8735405, 42.0298445000001], [22.867214, 42.0221995000001], [22.8703555000001, 42.0104975], [22.8662785000001, 42.0088930000001], [22.8640685, 42.0016580000001], [22.8758320000001, 41.9970710000001], [22.8747375, 41.9779015], [22.8781265000001, 41.9761710000001], [22.8738500000001, 41.9544080000001], [22.876385, 41.9397330000001], [22.8734485000001, 41.9361014990001], [22.877845, 41.9331965000001], [22.879553, 41.9259945000001], [22.8832320000001, 41.9225500000001], [22.891327, 41.9197215], [22.8964145, 41.9066760000001], [22.8994155, 41.9039910000001], [22.8973040000001, 41.8942175], [22.9014240000001, 41.8924715], [22.9019335, 41.877642], [22.9072150000001, 41.8753005], [22.9110680000001, 41.8778770000001], [22.916161, 41.8765095000001], [22.925895, 41.8634945000001], [22.93127, 41.8505365], [22.937189, 41.847157], [22.946602, 41.850218], [22.954144, 41.845563], [22.9775960000001, 41.84556], [22.9769295, 41.8507950000001], [22.9805665000001, 41.8556995000001], [22.9963965000001, 41.8600260000001], [23.0114265, 41.8621440000001], [23.0170585000001, 41.8788855000001], [23.0252590000001, 41.8893180000001], [23.0228225000001, 41.895469], [23.02295, 41.903312], [23.03668, 41.9093745000001], [23.0356860000001, 41.9119785], [23.0341485000001, 41.922852], [23.033937, 41.9470220000001], [23.0347115000001, 41.9529644990001], [23.049111, 41.9598325000001], [23.053611, 41.9535354990001], [23.0614585000001, 41.962522], [23.0635600000001, 41.9631030000001], [23.07296, 41.9589770000001], [23.094702, 41.9605345], [23.1036300000001, 41.9562325000001], [23.1016320000001, 41.9514915], [23.0946955000001, 41.947478], [23.097894, 41.9435980000001], [23.1050285000001, 41.94059], [23.1116695000001, 41.939154], [23.1119420000001, 41.9338460000001], [23.1354460000001, 41.9375220000001], [23.1458025000001, 41.9433365], [23.152142, 41.9551745000001], [23.1729605, 41.9566365000001], [23.1827375, 41.9619375], [23.1955805000001, 41.9662680000001], [23.1960465, 41.9693675], [23.2069825, 41.9805715], [23.2088420000001, 41.9886155], [23.2236990000001, 41.9925190000001], [23.226009, 41.9960075000001], [23.2441165000001, 42.0032835000001], [23.2489585000001, 42.002731001], [23.2616795000001, 42.0164645], [23.267366, 42.0175005], [23.2895970000001, 42.0101090000001], [23.290628, 42.0036095], [23.296656, 41.9955385010001], [23.31161, 41.9952415010001], [23.3393765000001, 41.9814045000001], [23.3544315, 41.981384001], [23.365772, 41.9774175000001], [23.3701975000001, 41.9900695000001], [23.3777925000001, 42.000661], [23.3868190000001, 41.9980465], [23.3968155000001, 42.001427], [23.4004665000001, 42.0058460000001], [23.400047, 42.0089530000001], [23.4079155000001, 42.0089834990001], [23.4114705000001, 42.0140835], [23.4268825, 42.0229800000001], [23.4231745000001, 42.0270200000001], [23.4243930000001, 42.0351040000001], [23.4420670000001, 42.0394945], [23.4397280000001, 42.0470759990001], [23.442864, 42.0531975000001], [23.4431915000001, 42.0613300000001], [23.4386315, 42.0616430000001], [23.421385, 42.053524], [23.4091985000001, 42.0529355], [23.3895575, 42.060666], [23.3199725000001, 42.0669445], [23.3090425, 42.0788075], [23.296524, 42.082501], [23.2887785, 42.0801025010001], [23.2720675000001, 42.0830540000001], [23.26973, 42.083730001], [23.269304, 42.0876015000001], [23.263202, 42.0906895000001], [23.2468270000001, 42.0902985000001], [23.2345510000001, 42.0939565], [23.2254760000001, 42.091726], [23.220783, 42.0900365000001], [23.2149295, 42.0945434990001], [23.202837, 42.094432], [23.199266, 42.0987525], [23.1847605, 42.0948175], [23.1800385, 42.0907565000001], [23.1798870000001, 42.0855290000001], [23.175195, 42.0817525000001], [23.1524380000001, 42.0772315], [23.133381, 42.062619], [23.1191245000001, 42.0595445000001], [23.1001910000001, 42.059721], [23.0896515000001, 42.0562150000001], [23.07818, 42.049407], [23.077322, 42.052151] ] ] },
+    "properties": {
+      "ISO": "BG-BLG03",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "4279",
+      "NAME_2": "Благоевград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.6621300000001, 41.8340964990001], [23.655556, 41.8339369990001], [23.6415290000001, 41.8228110010001], [23.6261275000001, 41.8167895], [23.626382, 41.818859], [23.6197245000001, 41.8229000000001], [23.6300170000001, 41.8276110000001], [23.6292905, 41.8322405000001], [23.6254430000001, 41.833537], [23.61666, 41.8346065000001], [23.6052080000001, 41.8391130000001], [23.599792, 41.847449], [23.5845675, 41.8520485000001], [23.5930645, 41.8556330000001], [23.5952295000001, 41.8606994990001], [23.5927545000001, 41.8682265000001], [23.5750705, 41.8615090000001], [23.563855, 41.8603315], [23.556182, 41.863028001], [23.5447160000001, 41.8530390000001], [23.5285355, 41.8526855000001], [23.511202, 41.857243], [23.4977335, 41.8684130010001], [23.4986425000001, 41.8724525000001], [23.4920960000001, 41.8730630000001], [23.4865695, 41.864042], [23.47175, 41.8646765], [23.455924, 41.8537700000001], [23.4388080000001, 41.848305], [23.4316895000001, 41.8509295000001], [23.4078025000001, 41.8326825], [23.3973505000001, 41.8195095], [23.3777260000001, 41.793029], [23.381763, 41.7876095], [23.3886925, 41.7858605010001], [23.3985970000001, 41.7766760000001], [23.4003900000001, 41.765476], [23.4003365, 41.7552085], [23.396536, 41.7451970000001], [23.3967465000001, 41.7419080000001], [23.399431, 41.7362015000001], [23.4229020000001, 41.7267420000001], [23.4299350000001, 41.7276275], [23.4362355000001, 41.7323220000001], [23.4372985000001, 41.7306620000001], [23.446245, 41.7238840000001], [23.459008, 41.7129855000001], [23.467634, 41.6990505000001], [23.477109, 41.7032855], [23.491091, 41.701287], [23.493345, 41.6965740000001], [23.4976570000001, 41.6952245], [23.5077545, 41.694438], [23.5154370000001, 41.6932215], [23.5222995, 41.6943800000001], [23.5347410000001, 41.7058325], [23.5444215000001, 41.7064305000001], [23.561742, 41.6974185], [23.5742250000001, 41.6980980000001], [23.58331, 41.7041365000001], [23.6126145000001, 41.7084675], [23.6174875, 41.714523501], [23.633545, 41.7158645000001], [23.6373110000001, 41.7138405000001], [23.6546895000001, 41.7116065000001], [23.6664745, 41.7142585], [23.6795615, 41.7087265000001], [23.6877555, 41.7144250000001], [23.6973705, 41.7149630000001], [23.6921905, 41.7233600000001], [23.6915835, 41.7285880000001], [23.6870945000001, 41.7312820000001], [23.6860255, 41.7383875], [23.6969835, 41.7362585000001], [23.7069055000001, 41.741591], [23.7161485, 41.739627], [23.723176, 41.7421020000001], [23.7314905000001, 41.7454235000001], [23.7481805, 41.7538355], [23.7515375, 41.7623775000001], [23.7480200000001, 41.7640519990001], [23.7485905, 41.7669230000001], [23.7648295000001, 41.7801200000001], [23.7844920000001, 41.784275], [23.796641, 41.7926655000001], [23.8158185, 41.7930145], [23.8200705, 41.8033625], [23.8257410000001, 41.811557001], [23.8340985, 41.8150025], [23.7862170000001, 41.8335420000001], [23.791259, 41.843309999], [23.788827, 41.8478525], [23.7932795, 41.8547760000001], [23.7887680000001, 41.860931001], [23.784406, 41.8599130000001], [23.7813340000001, 41.862416001], [23.7772915, 41.8694255010001], [23.78, 41.8748370000001], [23.7676845, 41.8761255000001], [23.7616695, 41.8731910000001], [23.750867, 41.8667575000001], [23.7481510000001, 41.863191], [23.7481320000001, 41.8567205000001], [23.745385293, 41.8556564800001], [23.744454858, 41.855962908], [23.7378925, 41.857983], [23.7304575000001, 41.8558850000001], [23.7196085, 41.8610315000001], [23.7097775, 41.8603410000001], [23.6930105000001, 41.854050499], [23.6841535, 41.8468250000001], [23.6845025000001, 41.8410985000001], [23.672783, 41.8337575], [23.6640150000001, 41.8339530000001], [23.6621300000001, 41.8340964990001] ] ] },
+    "properties": {
+      "ISO": "BG-BLG01",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "2676",
+      "NAME_2": "Банско",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.0574245, 41.5290600000001], [24.0710970000001, 41.5547065000001], [24.0736965, 41.563], [24.0724635, 41.5674085000001], [24.0771530000001, 41.5759305], [24.0838430000001, 41.578923499], [24.0836120000001, 41.5823040000001], [24.0893395000001, 41.5859794990001], [24.0990095, 41.5868185], [24.1036715000001, 41.5854095], [24.1150725000001, 41.5898350000001], [24.1148975, 41.595779], [24.1112005000001, 41.5977845], [24.0923145, 41.5945115000001], [24.087347, 41.596659501], [24.0819185, 41.604744], [24.0845575000001, 41.6150645000001], [24.0844690000001, 41.623136], [24.0962730000001, 41.627694999], [24.10042, 41.639039], [24.1086525000001, 41.6462310000001], [24.1096075, 41.6521535000001], [24.10697, 41.6571754990001], [24.0968740000001, 41.6651295], [24.0745475000001, 41.6727040000001], [24.0611025000001, 41.6792185], [24.0579285000001, 41.681659], [24.0425135, 41.6865585], [24.0493930000001, 41.6912830000001], [24.047651, 41.6992040000001], [24.0348025000001, 41.7048350000001], [24.029498, 41.6981905000001], [24.0249095, 41.704349], [24.0182465, 41.7064730000001], [24.008139, 41.7144095], [24.0120690000001, 41.7193075000001], [24.0111385000001, 41.722309], [24.0050945, 41.7227415], [24.0029660000001, 41.7202275010001], [23.9881925, 41.7233305], [23.9621935000001, 41.7158915000001], [23.9530335000001, 41.7065395000001], [23.92256, 41.6998140000001], [23.9162185000001, 41.6960060000001], [23.912742, 41.6864925], [23.8962335000001, 41.6799780000001], [23.8944935000001, 41.6761395], [23.896375, 41.6704535000001], [23.8977180000001, 41.668279], [23.8967860000001, 41.665537999], [23.8971040000001, 41.6635430000001], [23.9060615000001, 41.6521050000001], [23.9088600000001, 41.6405539990001], [23.8997745, 41.6262820000001], [23.8934495, 41.6217845], [23.9033490000001, 41.6140140000001], [23.9127780000001, 41.6105485], [23.9163585000001, 41.6056150000001], [23.915443, 41.6010605000001], [23.9154455, 41.5996020000001], [23.9213985000001, 41.5943715000001], [23.9431290000001, 41.5970280000001], [23.9394580000001, 41.588897], [23.9256545000001, 41.5799235000001], [23.9219835000001, 41.5726700000001], [23.9236125, 41.5717815], [23.9428855, 41.5517085000001], [23.9431730000001, 41.5485689990001], [23.9519085000001, 41.5401600000001], [23.9531690000001, 41.529364], [23.9516845000001, 41.5275325000001], [23.9578685000001, 41.5220315], [23.960449, 41.5116755000001], [23.9583845, 41.5091395010001], [23.9547295, 41.5101955000001], [23.9445765, 41.5006725000001], [23.9609765000001, 41.4927500000001], [23.9618485, 41.4919310000001], [23.9674610000001, 41.4874320000001], [23.9712180000001, 41.479318], [23.9772465, 41.4743975000001], [24.004194, 41.4702080000001], [24.0057985, 41.4732355], [24.0172775, 41.467812499], [24.0197380000001, 41.4665615000001], [24.0205480000001, 41.4597015000001], [24.0238890000001, 41.4558045], [24.0356770000001, 41.4565165000001], [24.0404695, 41.4516300000001], [24.0467790000001, 41.451286], [24.0554405, 41.4598930000001], [24.07266, 41.464873501], [24.0713730000001, 41.478127], [24.0685615, 41.482491], [24.060523, 41.4862159990001], [24.0650830000001, 41.498544], [24.0596305, 41.5117665010001], [24.059744, 41.522112], [24.0574245, 41.5290600000001] ] ] },
+    "properties": {
+      "ISO": "BG-BLG42",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "65440",
+      "NAME_2": "Сатовча",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.2532875000001, 41.503544], [23.253162, 41.5046840000001], [23.233638, 41.500127999], [23.2080515000001, 41.5106640000001], [23.2074205000001, 41.5186170000001], [23.2106200000001, 41.52698], [23.1981045000001, 41.5307765000001], [23.1869705, 41.527201501], [23.1642945, 41.5310430010001], [23.162628, 41.530928999], [23.1497665000001, 41.5316285000001], [23.140609, 41.533135499], [23.1347690000001, 41.5326015000001], [23.1203605000001, 41.533957], [23.1109145, 41.5249525], [23.0998995, 41.5227600010001], [23.0933375000001, 41.528354], [23.0896300000001, 41.5328470000001], [23.0893645, 41.5367825000001], [23.0807330000001, 41.541319], [23.0715430000001, 41.5529635], [23.070069, 41.552778], [23.0682065, 41.5538035000001], [23.0575915000001, 41.5515575000001], [23.0470505000001, 41.5396285], [23.0424165000001, 41.5379965010001], [23.017568, 41.5410095], [23.0169325000001, 41.5492495], [23.0100205000001, 41.5439620010001], [23.0026325000001, 41.549026999], [22.9893865, 41.5510005000001], [22.9698135, 41.5466920000001], [22.9697215000001, 41.5433305], [22.9602565000001, 41.5431160000001], [22.9583510000001, 41.535427], [22.9683275, 41.5198355000001], [22.9712710000001, 41.5149985], [22.9698435, 41.504596001], [22.9614455, 41.4986095], [22.9574680000001, 41.4937745], [22.960316, 41.492377], [22.9614725000001, 41.4778675000001], [22.9640670000001, 41.464844], [22.97711, 41.452629001], [22.9794775, 41.446876], [22.9776535, 41.4420390000001], [22.972948, 41.438881999], [22.9638915, 41.431519501], [22.9519795, 41.417487501], [22.9551230000001, 41.4121959990001], [22.96169, 41.4077], [22.960896, 41.4054415000001], [22.966257, 41.3929585000001], [22.9620140000001, 41.3788035000001], [22.9650555000001, 41.3519075], [22.9487340000001, 41.3515530000001], [22.9370680000001, 41.3409125000001], [22.9282630000001, 41.341241], [22.9275915000001, 41.3385395], [22.9318735000001, 41.3407119990001], [22.9725155, 41.332595], [22.9835455, 41.33563], [23.0034880000001, 41.330591], [23.0332885, 41.332724], [23.055959, 41.3257395000001], [23.080069, 41.3197805], [23.0864065000001, 41.3193415000001], [23.1057020000001, 41.3164895], [23.1168335, 41.3203675], [23.134576, 41.3202390000001], [23.1748050000001, 41.3212350000001], [23.1813715000001, 41.3188695000001], [23.2006725, 41.3238925], [23.2239950000001, 41.3361129990001], [23.231366, 41.3500480000001], [23.2259970000001, 41.3666040000001], [23.2322285000001, 41.376052499], [23.257911, 41.3836035], [23.280173, 41.397383], [23.2975870000001, 41.4013485], [23.3113535000001, 41.3984760000001], [23.3222125, 41.3996700000001], [23.341735, 41.3642185], [23.3496240000001, 41.3664495], [23.3617065, 41.3786450000001], [23.375795, 41.381375], [23.3911605000001, 41.392955], [23.395743, 41.3919005000001], [23.3977175000001, 41.395471001], [23.3924625000001, 41.3944295000001], [23.3835555000001, 41.401318001], [23.3839965, 41.407086], [23.392302, 41.4126245000001], [23.3959980000001, 41.4203990010001], [23.3955370000001, 41.4255315], [23.3849750000001, 41.4358490000001], [23.3716065, 41.435751], [23.3658730000001, 41.4357770010001], [23.3659345, 41.4582875], [23.3619170000001, 41.460313], [23.3680505, 41.4684855], [23.3604895, 41.4775350000001], [23.353462, 41.4820940000001], [23.352972, 41.4844875000001], [23.3489615, 41.476773], [23.3304590000001, 41.4795425], [23.3315650000001, 41.469812], [23.3277880000001, 41.4725230000001], [23.3206975, 41.4720035], [23.3135945000001, 41.4655760000001], [23.3072755000001, 41.4640895], [23.2964495000001, 41.4672705], [23.2893790000001, 41.4711175000001], [23.2803985, 41.4736145000001], [23.2726695000001, 41.472603], [23.2665215000001, 41.486271], [23.2581960000001, 41.494852], [23.2532875000001, 41.503544] ] ] },
+    "properties": {
+      "ISO": "BG-BLG33",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "56126",
+      "NAME_2": "Петрич",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.1546215000001, 41.7772135000001], [23.1475090000001, 41.7804055], [23.1322545, 41.7769520000001], [23.12334, 41.782184499], [23.1215340000001, 41.7878415000001], [23.116405, 41.7924945], [23.1084795, 41.7957465000001], [23.09813, 41.795778], [23.0928235000001, 41.7974025], [23.0874470000001, 41.793595], [23.078308, 41.7806045], [23.0683205, 41.7766875], [23.0388625000001, 41.7519155000001], [23.0127005, 41.759598499], [23.0160920000001, 41.7569325000001], [23.021287, 41.748318], [23.027139, 41.7367805000001], [23.0321240000001, 41.724301], [23.0311575000001, 41.7171035000001], [23.0339905000001, 41.7107590000001], [23.0341225, 41.7094445000001], [23.0369030000001, 41.709801], [23.0397325000001, 41.7078095000001], [23.0511025000001, 41.7000295010001], [23.056334, 41.6919750000001], [23.0665950000001, 41.6866855000001], [23.0912555, 41.6854885000001], [23.0969275000001, 41.6813325000001], [23.1229225000001, 41.6766395000001], [23.1365920000001, 41.6770015000001], [23.1464745000001, 41.682980001], [23.1636500000001, 41.682772001], [23.1723805, 41.6782190000001], [23.1771145000001, 41.682825], [23.1801385000001, 41.6804675000001], [23.180704, 41.6763355], [23.1730555, 41.669894], [23.184109, 41.6713155], [23.1935735000001, 41.664408001], [23.20142, 41.6591885], [23.2203630000001, 41.6689265000001], [23.2467730000001, 41.6932325000001], [23.2600735, 41.6919520000001], [23.275806, 41.710721], [23.2931530000001, 41.7157130000001], [23.296753, 41.7195485], [23.3048675000001, 41.7177435], [23.3064725, 41.7105145], [23.3168210000001, 41.7122880000001], [23.3274735000001, 41.7181180000001], [23.3405295000001, 41.7160855000001], [23.352067, 41.7237515], [23.3708075000001, 41.726142], [23.3748585000001, 41.7388770000001], [23.396536, 41.7451970000001], [23.4003365, 41.7552085], [23.4003900000001, 41.765476], [23.3985970000001, 41.7766760000001], [23.3886925, 41.7858605010001], [23.381763, 41.7876095], [23.3777260000001, 41.793029], [23.3588925, 41.7985340000001], [23.3517160000001, 41.797108501], [23.3473595, 41.802395], [23.345474, 41.813681], [23.3339905, 41.8212615], [23.3336325000001, 41.8224029990001], [23.3080905, 41.816248], [23.3123615000001, 41.8184115], [23.2925345, 41.8201905000001], [23.2903215000001, 41.8188355], [23.2903190000001, 41.8141350000001], [23.2761415000001, 41.8122755000001], [23.2666245, 41.8154060000001], [23.2513765, 41.815750501], [23.2321105, 41.8070195000001], [23.2226240000001, 41.8020700000001], [23.206065, 41.7996325], [23.2051515000001, 41.8032315], [23.1967545000001, 41.8054475000001], [23.189919, 41.8116905000001], [23.170938, 41.8066419990001], [23.1637525, 41.807892499], [23.1528835, 41.7867360000001], [23.1546215000001, 41.7772135000001] ] ] },
+    "properties": {
+      "ISO": "BG-BLG28",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "14492",
+      "NAME_2": "Кресна",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.7726715000001, 41.5778834990001], [23.7864925000001, 41.5721865], [23.787988, 41.571059], [23.7981510000001, 41.5627650000001], [23.8141815000001, 41.5581945000001], [23.8220245000001, 41.5496625000001], [23.8318165000001, 41.5460065], [23.8449805000001, 41.5337705000001], [23.8670295000001, 41.549386], [23.8792055000001, 41.5541390000001], [23.880033, 41.5560575000001], [23.881406, 41.5636775], [23.8962530000001, 41.5572755000001], [23.9009835000001, 41.5593709990001], [23.906571, 41.56692], [23.9172740000001, 41.5656950000001], [23.9219835000001, 41.5726700000001], [23.9256545000001, 41.5799235000001], [23.9394580000001, 41.588897], [23.9431290000001, 41.5970280000001], [23.9213985000001, 41.5943715000001], [23.9154455, 41.5996020000001], [23.915443, 41.6010605000001], [23.9163585000001, 41.6056150000001], [23.9127780000001, 41.6105485], [23.9033490000001, 41.6140140000001], [23.8934495, 41.6217845], [23.8997745, 41.6262820000001], [23.9088600000001, 41.6405539990001], [23.9060615000001, 41.6521050000001], [23.8971040000001, 41.6635430000001], [23.8967860000001, 41.665537999], [23.8977180000001, 41.668279], [23.896375, 41.6704535000001], [23.8944935000001, 41.6761395], [23.8962335000001, 41.6799780000001], [23.912742, 41.6864925], [23.9162185000001, 41.6960060000001], [23.92256, 41.6998140000001], [23.9530335000001, 41.7065395000001], [23.9621935000001, 41.7158915000001], [23.9881925, 41.7233305], [24.0029660000001, 41.7202275010001], [23.990884, 41.728845], [23.9911595, 41.732923], [23.987628, 41.7363245000001], [23.9595715, 41.7479000010001], [23.9520360000001, 41.7565479990001], [23.9391985, 41.7647305], [23.9258215, 41.7679345000001], [23.9189555, 41.778692], [23.9061475, 41.785804], [23.8948955000001, 41.797149], [23.8809115, 41.7970175], [23.8676295000001, 41.7923554990001], [23.8632390000001, 41.79405], [23.8518710000001, 41.8025465000001], [23.8498135, 41.8094375000001], [23.8358635000001, 41.8144255], [23.8340985, 41.8150025], [23.8257410000001, 41.811557001], [23.8200705, 41.8033625], [23.8158185, 41.7930145], [23.796641, 41.7926655000001], [23.7844920000001, 41.784275], [23.7648295000001, 41.7801200000001], [23.7485905, 41.7669230000001], [23.7480200000001, 41.7640519990001], [23.7515375, 41.7623775000001], [23.7481805, 41.7538355], [23.7314905000001, 41.7454235000001], [23.723176, 41.7421020000001], [23.7257295000001, 41.7417380000001], [23.7292545, 41.7351605000001], [23.7331360000001, 41.724357], [23.73576, 41.703494], [23.7324165000001, 41.6958980000001], [23.7436770000001, 41.6976040000001], [23.7415585000001, 41.6870660000001], [23.7425525, 41.678634], [23.751701, 41.6621655000001], [23.7487435, 41.6575790000001], [23.7518665000001, 41.6556185000001], [23.752641, 41.650399], [23.7415985000001, 41.6413915000001], [23.7443705000001, 41.6318115], [23.7541190000001, 41.6252075], [23.760294, 41.613256], [23.76289, 41.6096055], [23.7667545, 41.5865295], [23.7679365000001, 41.5858645000001], [23.7726715000001, 41.5778834990001] ] ] },
+    "properties": {
+      "ISO": "BG-BLG13",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "18366",
+      "NAME_2": "Гърмен",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.6247750000001, 41.8975845000001], [23.6228580000001, 41.9025485000001], [23.6189005000001, 41.8956330010001], [23.6083545000001, 41.8949205010001], [23.5936565000001, 41.887168999], [23.5905720000001, 41.882552], [23.571175, 41.885562], [23.5749200000001, 41.8995330000001], [23.5729435000001, 41.9014815000001], [23.568945, 41.9005115000001], [23.5578630000001, 41.9055510000001], [23.5578165000001, 41.9141314990001], [23.5469385000001, 41.9161545010001], [23.5462015000001, 41.919973], [23.538238, 41.9287785000001], [23.5382910000001, 41.939622001], [23.5330775, 41.9481270000001], [23.530892, 41.9498850000001], [23.5330865, 41.9580554990001], [23.5298145, 41.977115], [23.5165705000001, 41.9978249990001], [23.5063045000001, 42.0260989990001], [23.5104055, 42.030654], [23.5180515000001, 42.029523], [23.5215775, 42.025001], [23.5258845000001, 42.0321875000001], [23.5237270000001, 42.0378215000001], [23.509241, 42.0479080000001], [23.4958795000001, 42.052430499], [23.4833430000001, 42.0617540000001], [23.4727, 42.0740515000001], [23.4711180000001, 42.0764610000001], [23.455899, 42.0683240000001], [23.4567755, 42.0657125000001], [23.4550805000001, 42.0643005000001], [23.4431915000001, 42.0613300000001], [23.442864, 42.0531975000001], [23.4397280000001, 42.0470759990001], [23.4420670000001, 42.0394945], [23.4243930000001, 42.0351040000001], [23.4231745000001, 42.0270200000001], [23.4268825, 42.0229800000001], [23.4114705000001, 42.0140835], [23.4079155000001, 42.0089834990001], [23.400047, 42.0089530000001], [23.4004665000001, 42.0058460000001], [23.3968155000001, 42.001427], [23.3868190000001, 41.9980465], [23.3777925000001, 42.000661], [23.3701975000001, 41.9900695000001], [23.365772, 41.9774175000001], [23.3699875, 41.9750565000001], [23.3641515, 41.9677175000001], [23.3586965000001, 41.9495260000001], [23.3582470000001, 41.944396999], [23.347788, 41.937234001], [23.340544, 41.934842001], [23.3340180000001, 41.9371140000001], [23.3312725000001, 41.933636], [23.3327205000001, 41.927199], [23.3315220000001, 41.9145495010001], [23.3256010000001, 41.911672001], [23.3193935, 41.9038685], [23.3163555, 41.889417], [23.2918005, 41.855056], [23.2926675000001, 41.8470695], [23.3099780000001, 41.8417160000001], [23.322257, 41.8341005], [23.3348965000001, 41.8340910000001], [23.335657, 41.8260110000001], [23.3336325000001, 41.8224029990001], [23.3339905, 41.8212615], [23.345474, 41.813681], [23.3473595, 41.802395], [23.3517160000001, 41.797108501], [23.3588925, 41.7985340000001], [23.3777260000001, 41.793029], [23.3973505000001, 41.8195095], [23.4078025000001, 41.8326825], [23.4316895000001, 41.8509295000001], [23.4388080000001, 41.848305], [23.455924, 41.8537700000001], [23.47175, 41.8646765], [23.4865695, 41.864042], [23.4920960000001, 41.8730630000001], [23.4986425000001, 41.8724525000001], [23.4977335, 41.8684130010001], [23.511202, 41.857243], [23.5285355, 41.8526855000001], [23.5447160000001, 41.8530390000001], [23.556182, 41.863028001], [23.563855, 41.8603315], [23.5750705, 41.8615090000001], [23.5927545000001, 41.8682265000001], [23.5952295000001, 41.8606994990001], [23.5930645, 41.8556330000001], [23.5845675, 41.8520485000001], [23.599792, 41.847449], [23.6052080000001, 41.8391130000001], [23.61666, 41.8346065000001], [23.6254430000001, 41.833537], [23.6292905, 41.8322405000001], [23.6300170000001, 41.8276110000001], [23.6197245000001, 41.8229000000001], [23.626382, 41.818859], [23.6261275000001, 41.8167895], [23.6415290000001, 41.8228110010001], [23.655556, 41.8339369990001], [23.6621300000001, 41.8340964990001], [23.6640150000001, 41.8339530000001], [23.672783, 41.8337575], [23.6845025000001, 41.8410985000001], [23.6841535, 41.8468250000001], [23.6930105000001, 41.854050499], [23.7097775, 41.8603410000001], [23.7196085, 41.8610315000001], [23.7304575000001, 41.8558850000001], [23.7378925, 41.857983], [23.744454858, 41.855962908], [23.7202105000001, 41.8686905000001], [23.7246455000001, 41.8767915], [23.7314645000001, 41.879308999], [23.730372, 41.8825380000001], [23.716909, 41.8813565], [23.709484, 41.8778385000001], [23.6949730000001, 41.8790470000001], [23.6790525000001, 41.8892900000001], [23.6478925000001, 41.8927594990001], [23.6402685, 41.8946805], [23.6247750000001, 41.8975845000001] ] ] },
+    "properties": {
+      "ISO": "BG-BLG37",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "61813",
+      "NAME_2": "Разлог",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.909233, 41.4784845], [23.9161325000001, 41.4816265000001], [23.932849, 41.4711075000001], [23.9324540000001, 41.4655525000001], [23.9377630000001, 41.4630020000001], [23.9416785, 41.461691499], [23.9526145, 41.4493110000001], [23.965764, 41.4395335], [23.9739155, 41.4382835000001], [23.9818655, 41.4406699990001], [24.0084695, 41.4568895], [24.0172775, 41.467812499], [24.0057985, 41.4732355], [24.004194, 41.4702080000001], [23.9772465, 41.4743975000001], [23.9712180000001, 41.479318], [23.9674610000001, 41.4874320000001], [23.9618485, 41.4919310000001], [23.9609765000001, 41.4927500000001], [23.9445765, 41.5006725000001], [23.9547295, 41.5101955000001], [23.9583845, 41.5091395010001], [23.960449, 41.5116755000001], [23.9578685000001, 41.5220315], [23.9516845000001, 41.5275325000001], [23.9531690000001, 41.529364], [23.9519085000001, 41.5401600000001], [23.9431730000001, 41.5485689990001], [23.9428855, 41.5517085000001], [23.9236125, 41.5717815], [23.9219835000001, 41.5726700000001], [23.9172740000001, 41.5656950000001], [23.906571, 41.56692], [23.9009835000001, 41.5593709990001], [23.8962530000001, 41.5572755000001], [23.881406, 41.5636775], [23.880033, 41.5560575000001], [23.8792055000001, 41.5541390000001], [23.8670295000001, 41.549386], [23.8449805000001, 41.5337705000001], [23.8318165000001, 41.5460065], [23.8220245000001, 41.5496625000001], [23.8146840000001, 41.549611999], [23.7970470000001, 41.5467175000001], [23.801519, 41.542186499], [23.799087, 41.5384215], [23.7788180000001, 41.545897], [23.756082, 41.533694], [23.7529275000001, 41.536122], [23.7401525000001, 41.5357510000001], [23.731857, 41.5254345000001], [23.7196210000001, 41.5239955000001], [23.7249640000001, 41.5159615000001], [23.725491, 41.5122215000001], [23.7222550000001, 41.5112915], [23.714723, 41.508627], [23.7073500000001, 41.5115905000001], [23.6907775, 41.52464], [23.6817965000001, 41.5234945], [23.6773815, 41.5250194990001], [23.6534155000001, 41.5179160000001], [23.648494, 41.5089925], [23.6462195, 41.4996095000001], [23.6489790000001, 41.4938725000001], [23.6470815000001, 41.4902690000001], [23.6476595, 41.4852295000001], [23.6502100000001, 41.4767215000001], [23.6552060000001, 41.4673705000001], [23.6538695, 41.4588935], [23.6602405, 41.4527835000001], [23.6588605000001, 41.4433465000001], [23.6570320000001, 41.4362325000001], [23.6486025, 41.4244915], [23.6516795000001, 41.4160935000001], [23.6487655, 41.4093255000001], [23.6402705, 41.403846], [23.639863, 41.399367], [23.647978, 41.3937215], [23.6618745000001, 41.3999690000001], [23.6742375000001, 41.410700499], [23.695003, 41.4044920000001], [23.730353, 41.4078535], [23.7588295, 41.4026944990001], [23.7618140000001, 41.3979235], [23.767633, 41.3960920000001], [23.7806130000001, 41.4129225], [23.7893715000001, 41.4182470000001], [23.7922790000001, 41.4272050000001], [23.8004455, 41.4373515], [23.8229375, 41.4363315000001], [23.844182, 41.4417520010001], [23.8512450000001, 41.439959], [23.8564875000001, 41.4497915000001], [23.8693145, 41.4486870000001], [23.8901125, 41.4500840000001], [23.9059455, 41.457079499], [23.9099225000001, 41.4695750000001], [23.909233, 41.4784845] ] ] },
+    "properties": {
+      "ISO": "BG-BLG52",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "77058",
+      "NAME_2": "Хаджидимово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.0682065, 41.5538035000001], [23.070069, 41.552778], [23.0715430000001, 41.5529635], [23.0807330000001, 41.541319], [23.0893645, 41.5367825000001], [23.0896300000001, 41.5328470000001], [23.0933375000001, 41.528354], [23.0998995, 41.5227600010001], [23.1109145, 41.5249525], [23.1203605000001, 41.533957], [23.1347690000001, 41.5326015000001], [23.140609, 41.533135499], [23.1497665000001, 41.5316285000001], [23.1548755000001, 41.5439695000001], [23.151505, 41.5484225000001], [23.1517045000001, 41.5522970000001], [23.1674005, 41.561426], [23.1802615, 41.569419], [23.1946735000001, 41.5751245000001], [23.1977465000001, 41.5739840000001], [23.2114275000001, 41.572005], [23.2119950000001, 41.5810015000001], [23.215264, 41.5853235000001], [23.2194280000001, 41.5855510000001], [23.2226365000001, 41.5922705], [23.2194410000001, 41.5992390000001], [23.2164905000001, 41.6122305000001], [23.2294880000001, 41.6178674990001], [23.230643, 41.622737], [23.2409685000001, 41.633768499], [23.2491935, 41.6370270000001], [23.252129, 41.6528950000001], [23.2588085, 41.661866], [23.282204, 41.6711175], [23.286351, 41.6774560000001], [23.3110105000001, 41.679377], [23.320342, 41.6905595000001], [23.3240705000001, 41.70207], [23.339209, 41.7124370010001], [23.3405295000001, 41.7160855000001], [23.3274735000001, 41.7181180000001], [23.3168210000001, 41.7122880000001], [23.3064725, 41.7105145], [23.3048675000001, 41.7177435], [23.296753, 41.7195485], [23.2931530000001, 41.7157130000001], [23.275806, 41.710721], [23.2600735, 41.6919520000001], [23.2467730000001, 41.6932325000001], [23.2203630000001, 41.6689265000001], [23.20142, 41.6591885], [23.1935735000001, 41.664408001], [23.184109, 41.6713155], [23.1730555, 41.669894], [23.180704, 41.6763355], [23.1801385000001, 41.6804675000001], [23.1771145000001, 41.682825], [23.1723805, 41.6782190000001], [23.1636500000001, 41.682772001], [23.1464745000001, 41.682980001], [23.1365920000001, 41.6770015000001], [23.1229225000001, 41.6766395000001], [23.0969275000001, 41.6813325000001], [23.0912555, 41.6854885000001], [23.0665950000001, 41.6866855000001], [23.056334, 41.6919750000001], [23.0511025000001, 41.7000295010001], [23.0397325000001, 41.7078095000001], [23.0369030000001, 41.709801], [23.0341225, 41.7094445000001], [23.02678, 41.7025445], [23.0223395, 41.7028115000001], [23.0134145000001, 41.6918219990001], [23.0012725, 41.6780004990001], [22.995103, 41.6747925000001], [22.9847600000001, 41.657745], [22.9831435, 41.6541480000001], [22.9847525000001, 41.6500955000001], [22.981703, 41.6464235], [22.9797785000001, 41.648622501], [22.9600155000001, 41.6466365000001], [22.9519035000001, 41.6428149990001], [22.9484115000001, 41.6317965000001], [22.9533930000001, 41.6196055], [22.9497445000001, 41.5945790000001], [22.9523635000001, 41.5862550000001], [22.9606160000001, 41.5847895000001], [22.9656125000001, 41.578292], [22.969747, 41.563728], [22.9698135, 41.5466920000001], [22.9893865, 41.5510005000001], [23.0026325000001, 41.549026999], [23.0100205000001, 41.5439620010001], [23.0169325000001, 41.5492495], [23.017568, 41.5410095], [23.0424165000001, 41.5379965010001], [23.0470505000001, 41.5396285], [23.0575915000001, 41.5515575000001], [23.0682065, 41.5538035000001] ] ] },
+    "properties": {
+      "ISO": "BG-BLG49",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "69969",
+      "NAME_2": "Струмяни",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.6907775, 41.52464], [23.7073500000001, 41.5115905000001], [23.714723, 41.508627], [23.7222550000001, 41.5112915], [23.725491, 41.5122215000001], [23.7249640000001, 41.5159615000001], [23.7196210000001, 41.5239955000001], [23.731857, 41.5254345000001], [23.7401525000001, 41.5357510000001], [23.7529275000001, 41.536122], [23.756082, 41.533694], [23.7788180000001, 41.545897], [23.799087, 41.5384215], [23.801519, 41.542186499], [23.7970470000001, 41.5467175000001], [23.8146840000001, 41.549611999], [23.8220245000001, 41.5496625000001], [23.8141815000001, 41.5581945000001], [23.7981510000001, 41.5627650000001], [23.787988, 41.571059], [23.7864925000001, 41.5721865], [23.7726715000001, 41.5778834990001], [23.7679365000001, 41.5858645000001], [23.7667545, 41.5865295], [23.76289, 41.6096055], [23.760294, 41.613256], [23.7541190000001, 41.6252075], [23.7443705000001, 41.6318115], [23.7415985000001, 41.6413915000001], [23.752641, 41.650399], [23.7518665000001, 41.6556185000001], [23.7487435, 41.6575790000001], [23.751701, 41.6621655000001], [23.7425525, 41.678634], [23.7415585000001, 41.6870660000001], [23.7436770000001, 41.6976040000001], [23.7324165000001, 41.6958980000001], [23.73576, 41.703494], [23.7331360000001, 41.724357], [23.7292545, 41.7351605000001], [23.7257295000001, 41.7417380000001], [23.723176, 41.7421020000001], [23.7161485, 41.739627], [23.7069055000001, 41.741591], [23.6969835, 41.7362585000001], [23.6860255, 41.7383875], [23.6870945000001, 41.7312820000001], [23.6915835, 41.7285880000001], [23.6921905, 41.7233600000001], [23.6973705, 41.7149630000001], [23.6877555, 41.7144250000001], [23.6795615, 41.7087265000001], [23.6664745, 41.7142585], [23.6546895000001, 41.7116065000001], [23.6373110000001, 41.7138405000001], [23.633545, 41.7158645000001], [23.6174875, 41.714523501], [23.6126145000001, 41.7084675], [23.58331, 41.7041365000001], [23.5742250000001, 41.6980980000001], [23.561742, 41.6974185], [23.5444215000001, 41.7064305000001], [23.5347410000001, 41.7058325], [23.5222995, 41.6943800000001], [23.5154370000001, 41.6932215], [23.515433, 41.6867015], [23.5186085, 41.6749290000001], [23.5249745, 41.6609569990001], [23.5593255000001, 41.6399195000001], [23.5712780000001, 41.6237255], [23.6008475, 41.6086965000001], [23.6107685000001, 41.6008175000001], [23.611593, 41.583920499], [23.615036, 41.579438], [23.6125870000001, 41.5703785010001], [23.6116715000001, 41.5634535], [23.6301875, 41.541731999], [23.6300800000001, 41.5345785000001], [23.6270575, 41.527182], [23.629281, 41.521754], [23.648494, 41.5089925], [23.6534155000001, 41.5179160000001], [23.6773815, 41.5250194990001], [23.6817965000001, 41.5234945], [23.6907775, 41.52464] ] ] },
+    "properties": {
+      "ISO": "BG-BLG11",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "17395",
+      "NAME_2": "Гоце Делчев",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.7041985000001, 41.982111], [23.7110740000001, 41.9763875], [23.7156695000001, 41.9752720000001], [23.727179, 41.9743540000001], [23.739091, 41.972226], [23.7595010000001, 41.9761539990001], [23.7630100000001, 41.9811745000001], [23.7561785, 41.985664], [23.7639160000001, 41.996027], [23.7816350000001, 42.0030545000001], [23.7817690000001, 42.0053185], [23.7837835, 42.0110575], [23.7920865, 42.017112], [23.7967330000001, 42.0178450000001], [23.8077290000001, 42.0272649990001], [23.8254160000001, 42.0341405], [23.8225420000001, 42.0431510010001], [23.806502, 42.0485095000001], [23.8015885, 42.050084], [23.7953385000001, 42.0527415], [23.795873, 42.053999], [23.7962415000001, 42.072596], [23.8013040000001, 42.0849390000001], [23.8038865, 42.0893015], [23.798343, 42.099206], [23.7918285000001, 42.105422], [23.794431, 42.1217805000001], [23.805931, 42.1222185], [23.812821, 42.125553], [23.8108750000001, 42.1321185], [23.805801, 42.1352545], [23.7912950000001, 42.139460001], [23.7838325000001, 42.1470535], [23.7616905, 42.1568985000001], [23.760595, 42.164972], [23.7625955, 42.1721515], [23.7722600000001, 42.181185499], [23.7644315000001, 42.181951], [23.743867, 42.1835970000001], [23.7305440000001, 42.1658925], [23.7348775, 42.1594650000001], [23.739061, 42.150993], [23.7276600000001, 42.152199], [23.726522, 42.1549805000001], [23.7145465, 42.1579835000001], [23.702526, 42.154608001], [23.6833525000001, 42.1699575000001], [23.6735570000001, 42.1695385], [23.6619180000001, 42.1719285], [23.654497, 42.1752645], [23.6527075000001, 42.1668510000001], [23.649522, 42.1561415000001], [23.6370455000001, 42.1559155], [23.6096745, 42.1619975], [23.6051645000001, 42.1607474990001], [23.5933555, 42.1541750000001], [23.5927285000001, 42.151297], [23.5935910000001, 42.1449835000001], [23.5903745, 42.132101], [23.5777385000001, 42.118658], [23.5777675, 42.115818], [23.5818225, 42.1127470000001], [23.5779680000001, 42.1041445010001], [23.5717355, 42.10159], [23.5724290000001, 42.0862445000001], [23.584301, 42.086152499], [23.5989795, 42.0818840000001], [23.6052555000001, 42.0661675000001], [23.5934120000001, 42.0594585000001], [23.5909100000001, 42.049587], [23.5956535, 42.0422765000001], [23.6065695, 42.0401595000001], [23.6125410000001, 42.035559], [23.6111185, 42.025265001], [23.613971, 42.0196985000001], [23.6163905, 42.012845], [23.6094905, 41.9891605], [23.607559, 41.9719220000001], [23.6046745, 41.9780725000001], [23.6051390000001, 41.9875055000001], [23.609111, 41.9974700000001], [23.6071605000001, 41.9999520000001], [23.6063905, 41.9909870000001], [23.6032195, 41.9839905000001], [23.6033745, 41.9647919990001], [23.6128775, 41.962525], [23.6218445000001, 41.9646670000001], [23.6361795, 41.966669], [23.6373810000001, 41.9668975000001], [23.6442480000001, 41.978251501], [23.664636, 41.9855325], [23.6665095000001, 41.9845110000001], [23.670306, 41.9805195000001], [23.6815245, 41.9818890000001], [23.6873010000001, 41.9781750010001], [23.7023505, 41.9823055000001], [23.7041985000001, 41.982111] ] ] },
+    "properties": {
+      "ISO": "BG-BLG53",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "87338",
+      "NAME_2": "Якоруда",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.6402685, 41.8946805], [23.6478925000001, 41.8927594990001], [23.6790525000001, 41.8892900000001], [23.6949730000001, 41.8790470000001], [23.709484, 41.8778385000001], [23.716909, 41.8813565], [23.730372, 41.8825380000001], [23.7314645000001, 41.879308999], [23.7246455000001, 41.8767915], [23.7202105000001, 41.8686905000001], [23.744454858, 41.855962908], [23.745385293, 41.8556564800001], [23.7481320000001, 41.8567205000001], [23.7481510000001, 41.863191], [23.750867, 41.8667575000001], [23.7616695, 41.8731910000001], [23.7676845, 41.8761255000001], [23.78, 41.8748370000001], [23.7860605000001, 41.8812565000001], [23.7851165000001, 41.8846615], [23.7893425, 41.891403], [23.778223, 41.8927895000001], [23.7765525, 41.8987035000001], [23.7780795000001, 41.9031140010001], [23.7689485000001, 41.9195260000001], [23.7619665, 41.9220705010001], [23.7553475, 41.929205], [23.7693805000001, 41.9617004990001], [23.7595010000001, 41.9761539990001], [23.739091, 41.972226], [23.727179, 41.9743540000001], [23.7156695000001, 41.9752720000001], [23.7110740000001, 41.9763875], [23.7041985000001, 41.982111], [23.7023505, 41.9823055000001], [23.6873010000001, 41.9781750010001], [23.6815245, 41.9818890000001], [23.670306, 41.9805195000001], [23.6665095000001, 41.9845110000001], [23.664636, 41.9855325], [23.6442480000001, 41.978251501], [23.6373810000001, 41.9668975000001], [23.6361795, 41.966669], [23.6218445000001, 41.9646670000001], [23.6128775, 41.962525], [23.6033745, 41.9647919990001], [23.6032195, 41.9839905000001], [23.6063905, 41.9909870000001], [23.6071605000001, 41.9999520000001], [23.609111, 41.9974700000001], [23.6051390000001, 41.9875055000001], [23.6046745, 41.9780725000001], [23.607559, 41.9719220000001], [23.6094905, 41.9891605], [23.6163905, 42.012845], [23.613971, 42.0196985000001], [23.6111185, 42.025265001], [23.6125410000001, 42.035559], [23.6065695, 42.0401595000001], [23.5956535, 42.0422765000001], [23.5909100000001, 42.049587], [23.5934120000001, 42.0594585000001], [23.6052555000001, 42.0661675000001], [23.5989795, 42.0818840000001], [23.584301, 42.086152499], [23.5724290000001, 42.0862445000001], [23.5564840000001, 42.0874185000001], [23.5389890000001, 42.0839295000001], [23.531623, 42.0875155000001], [23.5036240000001, 42.0916895], [23.4998120000001, 42.0975480000001], [23.4974905, 42.0970399990001], [23.4955625000001, 42.0975575000001], [23.482737, 42.0944900000001], [23.4711180000001, 42.0764610000001], [23.4727, 42.0740515000001], [23.4833430000001, 42.0617540000001], [23.4958795000001, 42.052430499], [23.509241, 42.0479080000001], [23.5237270000001, 42.0378215000001], [23.5258845000001, 42.0321875000001], [23.5215775, 42.025001], [23.5180515000001, 42.029523], [23.5104055, 42.030654], [23.5063045000001, 42.0260989990001], [23.5165705000001, 41.9978249990001], [23.5298145, 41.977115], [23.5330865, 41.9580554990001], [23.530892, 41.9498850000001], [23.5330775, 41.9481270000001], [23.5382910000001, 41.939622001], [23.538238, 41.9287785000001], [23.5462015000001, 41.919973], [23.5469385000001, 41.9161545010001], [23.5578165000001, 41.9141314990001], [23.5578630000001, 41.9055510000001], [23.568945, 41.9005115000001], [23.5729435000001, 41.9014815000001], [23.5749200000001, 41.8995330000001], [23.571175, 41.885562], [23.5905720000001, 41.882552], [23.5936565000001, 41.887168999], [23.6083545000001, 41.8949205010001], [23.6189005000001, 41.8956330010001], [23.6228580000001, 41.9025485000001], [23.6247750000001, 41.8975845000001], [23.6402685, 41.8946805] ] ] },
+    "properties": {
+      "ISO": "BG-BLG02",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "4279",
+      "NAME_1": "BLG",
+      "TYPE_1": "Област",
+      "ID_2": "3504",
+      "NAME_2": "Белица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.4100490000001, 43.6931665000001], [26.4137240000001, 43.7009645000001], [26.4261795, 43.711216], [26.4296625000001, 43.720201], [26.4261625, 43.7279135000001], [26.4274265, 43.7373425000001], [26.4484725, 43.744397], [26.4536235, 43.743341501], [26.4566885, 43.7589865], [26.4587770000001, 43.7665460000001], [26.451576, 43.780085], [26.4382410000001, 43.7883400000001], [26.4312640000001, 43.785582], [26.4253695, 43.7889065000001], [26.420169, 43.7891950000001], [26.4119155000001, 43.781662], [26.3899020000001, 43.7846930000001], [26.3690140000001, 43.77324], [26.3515145000001, 43.777648], [26.3449150000001, 43.7752830000001], [26.336986, 43.7756335], [26.3352395000001, 43.771459], [26.3170230000001, 43.7759475], [26.3108915, 43.780719], [26.2696645, 43.7793825000001], [26.2473165000001, 43.784221501], [26.2476115000001, 43.7559915000001], [26.2376590000001, 43.7520224990001], [26.225807, 43.7482785], [26.2255440000001, 43.7385210000001], [26.2111135000001, 43.7337805000001], [26.1909285, 43.7283455], [26.1911870000001, 43.7201085], [26.1725675000001, 43.7235815000001], [26.170377, 43.7251185000001], [26.1360330000001, 43.6943455000001], [26.1328360000001, 43.6966575000001], [26.1282505, 43.671952], [26.1304395, 43.6595520000001], [26.1352305, 43.651440001], [26.1279445000001, 43.6459995000001], [26.1347650000001, 43.635427], [26.138587, 43.634416], [26.14313, 43.632163001], [26.1617735, 43.6337165], [26.1631455, 43.635791501], [26.1977365000001, 43.6357965010001], [26.2236560000001, 43.645988], [26.224547, 43.6486005], [26.2179505, 43.6584465], [26.2181395000001, 43.661437], [26.2272585000001, 43.6581450000001], [26.231676, 43.6609435], [26.2244765, 43.6637180000001], [26.2340390000001, 43.671256], [26.2409415000001, 43.6703205000001], [26.2411985000001, 43.6673099990001], [26.2425865000001, 43.6627365000001], [26.2596590000001, 43.6537720000001], [26.271167, 43.653603], [26.2748520000001, 43.6546705000001], [26.274656, 43.657343999], [26.2664, 43.6605145010001], [26.2724275, 43.6642985], [26.2797745, 43.6636385], [26.2865975, 43.657207499], [26.2841935000001, 43.6586295000001], [26.28333, 43.6565125000001], [26.2812925000001, 43.6456450000001], [26.293666, 43.6301645], [26.3034365, 43.6274685010001], [26.317662, 43.6184885000001], [26.3476670000001, 43.633221], [26.3505660000001, 43.6388155000001], [26.3619215000001, 43.6379925000001], [26.3691420000001, 43.6315000000001], [26.3713690000001, 43.6340515000001], [26.3886955, 43.6344290000001], [26.4066235, 43.6311515], [26.40795, 43.6276285000001], [26.4168935000001, 43.6374080000001], [26.4282775, 43.6410125000001], [26.433956, 43.6517155000001], [26.4423715, 43.6554755000001], [26.4455145000001, 43.6683585000001], [26.4164930000001, 43.6851500000001], [26.4187375000001, 43.6858094990001], [26.4187485000001, 43.693422501], [26.4100490000001, 43.6931665000001] ] ] },
+    "properties": {
+      "ISO": "BG-RSE05",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "63427",
+      "NAME_1": "RSE",
+      "TYPE_1": "Област",
+      "ID_2": "10803",
+      "NAME_2": "Ветово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.5477050000001, 43.5168800010001], [25.5500555, 43.5154605000001], [25.570728, 43.5045600010001], [25.578337, 43.5073150000001], [25.6027580000001, 43.5260890010001], [25.6212395000001, 43.5147745], [25.6364530000001, 43.485396], [25.6719345000001, 43.4871150000001], [25.6691750000001, 43.5061945], [25.6748950000001, 43.5120460000001], [25.6835355000001, 43.5123575010001], [25.6890915000001, 43.5089635], [25.6914540000001, 43.4982664990001], [25.709256, 43.4965960000001], [25.7244900000001, 43.498738501], [25.723579, 43.4911475000001], [25.7381590000001, 43.493227], [25.7454050000001, 43.493500501], [25.7260175000001, 43.5060635], [25.718107, 43.5067445], [25.7197415000001, 43.5014770000001], [25.6948560000001, 43.499715], [25.6926975000001, 43.5001990000001], [25.6905135000001, 43.508039], [25.6982115000001, 43.5073390000001], [25.7085425000001, 43.5176040000001], [25.737403, 43.5290825000001], [25.7323905000001, 43.5367205000001], [25.7354535000001, 43.5365880000001], [25.7195955, 43.5464965], [25.7305565, 43.5528045], [25.7375555, 43.5670905000001], [25.7512455, 43.5734130000001], [25.7410115000001, 43.5774740000001], [25.7356105000001, 43.5842845000001], [25.7367845000001, 43.587224], [25.7135435000001, 43.59144], [25.7037895, 43.5980284990001], [25.7027015, 43.5992275], [25.688902, 43.6047695], [25.6854735000001, 43.6118970000001], [25.6792475, 43.621540501], [25.650085, 43.6265890000001], [25.6504975, 43.635814], [25.6399060000001, 43.6613630000001], [25.6258155, 43.6596145], [25.6204415, 43.6709935000001], [25.5609975, 43.6443805000001], [25.5446405000001, 43.6429815000001], [25.5427335000001, 43.6365885000001], [25.5469715, 43.6307630000001], [25.5528, 43.629148499], [25.5533535000001, 43.6109450010001], [25.5389385, 43.609024], [25.5264910000001, 43.6015665], [25.5279575000001, 43.598379999], [25.5012655, 43.589547], [25.4989855000001, 43.591286], [25.485689, 43.58018], [25.4641550000001, 43.5778350000001], [25.4616590000001, 43.569761], [25.457617, 43.570886], [25.4758615000001, 43.557107], [25.471254, 43.5547495000001], [25.4685405000001, 43.552021], [25.4820365000001, 43.5474200000001], [25.484181, 43.5394885000001], [25.50165, 43.5359735000001], [25.5061095, 43.5296300000001], [25.5175995000001, 43.522630001], [25.505858, 43.5115685000001], [25.5191290000001, 43.5080815000001], [25.532637, 43.5041854990001], [25.534073, 43.510705], [25.5455265000001, 43.5104455000001], [25.5477050000001, 43.5168800010001] ] ] },
+    "properties": {
+      "ISO": "BG-RSE37",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "63427",
+      "NAME_1": "RSE",
+      "TYPE_1": "Област",
+      "ID_2": "78361",
+      "NAME_2": "Ценово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.1797965000001, 43.905604], [26.1769085, 43.9127590000001], [26.1696635000001, 43.91394], [26.162247, 43.9161549990001], [26.159159, 43.9219170000001], [26.150157, 43.9207250000001], [26.1484815000001, 43.9253675], [26.1518025, 43.936314], [26.1553945000001, 43.9438220000001], [26.1630285000001, 43.944261], [26.156194, 43.9622170000001], [26.152159, 43.9770974990001], [26.158872, 43.9801545], [26.1474000000001, 43.9807714990001], [26.147007, 43.9842004990001], [26.114924, 43.9740895], [26.1050985000001, 43.9663179990001], [26.0928295000001, 43.9526900000001], [26.0950760000001, 43.9512945000001], [26.0714170000001, 43.9319550000001], [26.045221, 43.9027540000001], [26.032789, 43.8966005], [26.0012745000001, 43.8836375000001], [25.9996985000001, 43.8852545], [25.9765955, 43.8699710010001], [25.952385, 43.8593470010001], [25.9398945, 43.8518305000001], [25.9292925, 43.8412945000001], [25.918596, 43.828448], [25.9079120000001, 43.8128530010001], [25.902839, 43.8086005000001], [25.8871875, 43.795085], [25.8812675, 43.7861925], [25.884333, 43.7834675010001], [25.8634545, 43.767142], [25.869091, 43.763155499], [25.8723325, 43.7600315], [25.9033675000001, 43.7582400000001], [25.9022775, 43.7562355000001], [25.9106815000001, 43.7443180000001], [25.926066, 43.7419965], [25.927712, 43.7395680000001], [25.93686, 43.7397655], [25.9643315000001, 43.747167], [26.0080990000001, 43.773513001], [26.020182, 43.775125001], [26.0181895000001, 43.7782285000001], [26.024145, 43.7746015000001], [26.033829, 43.773333], [26.0434540000001, 43.766931001], [26.0457695000001, 43.7597070000001], [26.0507815, 43.7564035], [26.0681020000001, 43.7632315010001], [26.0738325, 43.758523999], [26.082406, 43.763379], [26.0877905, 43.760946], [26.087543, 43.7602145000001], [26.0790480000001, 43.7422965000001], [26.0944415000001, 43.7386240000001], [26.0951210000001, 43.732565499], [26.1328360000001, 43.6966575000001], [26.1360330000001, 43.6943455000001], [26.170377, 43.7251185000001], [26.1725675000001, 43.7235815000001], [26.1911870000001, 43.7201085], [26.1909285, 43.7283455], [26.2111135000001, 43.7337805000001], [26.2255440000001, 43.7385210000001], [26.225807, 43.7482785], [26.2376590000001, 43.7520224990001], [26.2476115000001, 43.7559915000001], [26.2473165000001, 43.784221501], [26.2696645, 43.7793825000001], [26.3108915, 43.780719], [26.3170230000001, 43.7759475], [26.3352395000001, 43.771459], [26.336986, 43.7756335], [26.3449150000001, 43.7752830000001], [26.3515145000001, 43.777648], [26.358825, 43.7893940000001], [26.3565560000001, 43.8023920000001], [26.3470265, 43.816312], [26.3569360000001, 43.8328270000001], [26.3535015, 43.835135], [26.3339495000001, 43.8613675], [26.3391655, 43.8639910000001], [26.318298, 43.8636745000001], [26.3174940000001, 43.8602215000001], [26.2943965000001, 43.8542605010001], [26.2833365000001, 43.8577030000001], [26.2721995000001, 43.8511365], [26.273805, 43.8490485], [26.2469405, 43.838381], [26.243023, 43.847696], [26.223458, 43.873023], [26.2188905, 43.8877174990001], [26.215946, 43.8874500000001], [26.214663, 43.8874815], [26.2084645, 43.8899145], [26.194083, 43.8986875000001], [26.1891170000001, 43.903987], [26.1865705000001, 43.9044415000001], [26.1797965000001, 43.905604] ] ] },
+    "properties": {
+      "ISO": "BG-RSE27",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "63427",
+      "NAME_1": "RSE",
+      "TYPE_1": "Област",
+      "ID_2": "63427",
+      "NAME_2": "Русе",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [25.7676700000001, 43.487565499], [25.7737000000001, 43.491178], [25.7751660000001, 43.4958535000001], [25.7752745, 43.501743499], [25.7763165000001, 43.5083230000001], [25.7806820000001, 43.5100715], [25.7746915000001, 43.5162385], [25.7600355000001, 43.5193355000001], [25.749016, 43.520782], [25.7364040000001, 43.5232950000001], [25.738318, 43.528219], [25.737403, 43.5290825000001], [25.7085425000001, 43.5176040000001], [25.6982115000001, 43.5073390000001], [25.6905135000001, 43.508039], [25.6926975000001, 43.5001990000001], [25.6948560000001, 43.499715], [25.7197415000001, 43.5014770000001], [25.718107, 43.5067445], [25.7260175000001, 43.5060635], [25.7454050000001, 43.493500501], [25.7381590000001, 43.493227], [25.723579, 43.4911475000001], [25.7244900000001, 43.498738501], [25.709256, 43.4965960000001], [25.6914540000001, 43.4982664990001], [25.6890915000001, 43.5089635], [25.6835355000001, 43.5123575010001], [25.6748950000001, 43.5120460000001], [25.6691750000001, 43.5061945], [25.6719345000001, 43.4871150000001], [25.6364530000001, 43.485396], [25.6212395000001, 43.5147745], [25.6027580000001, 43.5260890010001], [25.578337, 43.5073150000001], [25.570728, 43.5045600010001], [25.5636655000001, 43.4973765], [25.561252, 43.4745205], [25.5652390000001, 43.457462499], [25.5407895000001, 43.447743501], [25.5410585000001, 43.4456220010001], [25.5412535, 43.4429050000001], [25.5539555, 43.4414775000001], [25.555525, 43.4363065000001], [25.5737970000001, 43.4331365], [25.5848945000001, 43.4284795], [25.5881630000001, 43.4240585000001], [25.6031455, 43.4202760000001], [25.6062475000001, 43.406686], [25.6165725000001, 43.4078964990001], [25.621065, 43.4044525], [25.621338, 43.400696501], [25.6249895, 43.398332], [25.6486355000001, 43.3985510000001], [25.6482255, 43.395161], [25.6700355, 43.3946414990001], [25.670775, 43.4000575000001], [25.6794125000001, 43.4072125000001], [25.676723, 43.4183330000001], [25.6888165, 43.4173020000001], [25.705628, 43.417876], [25.7057095000001, 43.414999999], [25.71261, 43.412363], [25.7170745, 43.4093700000001], [25.7252980000001, 43.3900620000001], [25.7424145000001, 43.3831200000001], [25.7500095, 43.384257], [25.7574725000001, 43.3859005], [25.7711175000001, 43.3827660000001], [25.7803765, 43.3802900000001], [25.7817775, 43.3796745000001], [25.7878515, 43.373543999], [25.8040825, 43.372283], [25.8045900000001, 43.3680070010001], [25.8197745000001, 43.3705369990001], [25.8241150000001, 43.368250001], [25.844385, 43.3686050000001], [25.8466990000001, 43.364206999], [25.861898, 43.359272], [25.8606785000001, 43.361142], [25.8639270000001, 43.3643974990001], [25.87233, 43.3662005], [25.8791515, 43.3665155], [25.8872910000001, 43.3700165000001], [25.897405, 43.3718480000001], [25.9015600000001, 43.3780520010001], [25.9139255000001, 43.377692], [25.9236165, 43.3743395000001], [25.9266065, 43.374989], [25.941875, 43.3802190000001], [25.9437855, 43.3858010000001], [25.9458920000001, 43.401871], [25.9260355000001, 43.4177095000001], [25.9234740000001, 43.423484], [25.9099195000001, 43.4243910000001], [25.8955445, 43.4269545000001], [25.8924315, 43.4284870000001], [25.8880045000001, 43.4372770000001], [25.865526, 43.4416575000001], [25.846486, 43.438477499], [25.841354, 43.4400465000001], [25.8475135, 43.4448945], [25.848738, 43.450232999], [25.8499575000001, 43.4568045], [25.8437910000001, 43.4631355000001], [25.8322215000001, 43.4572185000001], [25.7943120000001, 43.4565240000001], [25.7953635000001, 43.4634140000001], [25.784773, 43.4864475000001], [25.7676700000001, 43.487565499] ] ], [ [ [25.9967955000001, 43.363047001], [25.9865060000001, 43.3692865], [25.9598300000001, 43.3695470010001], [25.940867, 43.3607105], [25.9407485, 43.3480895000001], [25.9432955, 43.3365875000001], [25.9486850000001, 43.3309150000001], [25.9500145000001, 43.32629], [25.9720865, 43.3206645000001], [25.9929645, 43.3184325], [26.0045850000001, 43.3187545000001], [26.000344, 43.3284515], [26.0053110000001, 43.3289270010001], [26.0071095000001, 43.326178999], [26.020315, 43.3286605000001], [26.037181, 43.3356245000001], [26.0192925000001, 43.3308850000001], [26.010067, 43.332209999], [26.008881, 43.3338525], [26.0117760000001, 43.3423730000001], [26.0159215, 43.3580045000001], [26.0058125000001, 43.3665160000001], [25.9967955000001, 43.363047001] ] ] ] },
+    "properties": {
+      "ISO": "BG-RSE04",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "63427",
+      "NAME_1": "RSE",
+      "TYPE_1": "Област",
+      "ID_2": "7603",
+      "NAME_2": "Бяла",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.9106815000001, 43.7443180000001], [25.9022775, 43.7562355000001], [25.9033675000001, 43.7582400000001], [25.8723325, 43.7600315], [25.869091, 43.763155499], [25.8634545, 43.767142], [25.8549655, 43.7607645], [25.835672, 43.7530850000001], [25.8237505000001, 43.749848499], [25.8215510000001, 43.7516625000001], [25.8059715000001, 43.7415495000001], [25.7998715000001, 43.7344169990001], [25.7924985000001, 43.720423], [25.7830910000001, 43.7122370000001], [25.7584345000001, 43.7019005000001], [25.7583510000001, 43.6881695010001], [25.764728, 43.6884820000001], [25.7668945, 43.6837110000001], [25.7848195, 43.681566], [25.7953605000001, 43.6786210000001], [25.7964950000001, 43.6736900000001], [25.7891765000001, 43.670559999], [25.790737, 43.6693925000001], [25.8067675, 43.6698585], [25.807893, 43.656891], [25.8265155, 43.6560435010001], [25.826083, 43.6490700000001], [25.8358035000001, 43.639031], [25.8368965, 43.6278589990001], [25.8427425, 43.6215794990001], [25.8480485000001, 43.6270355], [25.8542155000001, 43.6206960000001], [25.8628820000001, 43.6284810000001], [25.8742355000001, 43.6246495], [25.8942195000001, 43.6308545000001], [25.898622, 43.6251524990001], [25.9025605000001, 43.6186175], [25.9108240000001, 43.6204885000001], [25.917781, 43.613878], [25.9223060000001, 43.615082], [25.9362150000001, 43.6187780000001], [25.9484420000001, 43.610864], [25.9541810000001, 43.6033445], [25.9742665000001, 43.5968184990001], [25.9602150000001, 43.5924600000001], [25.964369, 43.5810035000001], [25.9751390000001, 43.580137], [25.990885, 43.5721960000001], [25.99697, 43.573965], [26.008206, 43.570952], [26.0300570000001, 43.5743945], [26.0401640000001, 43.5776355], [26.0560070000001, 43.577907], [26.058386, 43.577301], [26.0618210000001, 43.5780405], [26.0880450000001, 43.5661465000001], [26.0988005, 43.5679615000001], [26.099185, 43.5491585], [26.1146085, 43.5463350000001], [26.126111, 43.5393509990001], [26.129214, 43.5244450010001], [26.1382585000001, 43.5289080000001], [26.151418, 43.525855], [26.1564315000001, 43.5210700000001], [26.174495, 43.518226], [26.1732715000001, 43.5166145000001], [26.1889780000001, 43.5173935], [26.184155, 43.523486], [26.183275, 43.5376985], [26.1680945000001, 43.5492800000001], [26.1564670000001, 43.5544810000001], [26.153629, 43.5587889990001], [26.1533285, 43.5654190000001], [26.1607625, 43.5853075000001], [26.1595100000001, 43.599922501], [26.1649590000001, 43.6309965], [26.1617735, 43.6337165], [26.14313, 43.632163001], [26.138587, 43.634416], [26.1347650000001, 43.635427], [26.1279445000001, 43.6459995000001], [26.1352305, 43.651440001], [26.1304395, 43.6595520000001], [26.1282505, 43.671952], [26.1328360000001, 43.6966575000001], [26.0951210000001, 43.732565499], [26.0944415000001, 43.7386240000001], [26.0790480000001, 43.7422965000001], [26.087543, 43.7602145000001], [26.0877905, 43.760946], [26.082406, 43.763379], [26.0738325, 43.758523999], [26.0681020000001, 43.7632315010001], [26.0507815, 43.7564035], [26.0457695000001, 43.7597070000001], [26.0434540000001, 43.766931001], [26.033829, 43.773333], [26.024145, 43.7746015000001], [26.0181895000001, 43.7782285000001], [26.020182, 43.775125001], [26.0080990000001, 43.773513001], [25.9643315000001, 43.747167], [25.93686, 43.7397655], [25.927712, 43.7395680000001], [25.926066, 43.7419965], [25.9106815000001, 43.7443180000001] ] ] },
+    "properties": {
+      "ISO": "BG-RSE13",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "63427",
+      "NAME_1": "RSE",
+      "TYPE_1": "Област",
+      "ID_2": "32095",
+      "NAME_2": "Иваново",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.6792475, 43.621540501], [25.6854735000001, 43.6118970000001], [25.688902, 43.6047695], [25.7027015, 43.5992275], [25.7037895, 43.5980284990001], [25.7135435000001, 43.59144], [25.7367845000001, 43.587224], [25.7356105000001, 43.5842845000001], [25.7410115000001, 43.5774740000001], [25.7512455, 43.5734130000001], [25.7375555, 43.5670905000001], [25.7305565, 43.5528045], [25.7195955, 43.5464965], [25.7354535000001, 43.5365880000001], [25.7323905000001, 43.5367205000001], [25.737403, 43.5290825000001], [25.738318, 43.528219], [25.7364040000001, 43.5232950000001], [25.749016, 43.520782], [25.7600355000001, 43.5193355000001], [25.7746915000001, 43.5162385], [25.7806820000001, 43.5100715], [25.7763165000001, 43.5083230000001], [25.7752745, 43.501743499], [25.7751660000001, 43.4958535000001], [25.7737000000001, 43.491178], [25.7676700000001, 43.487565499], [25.784773, 43.4864475000001], [25.7953635000001, 43.4634140000001], [25.7943120000001, 43.4565240000001], [25.8322215000001, 43.4572185000001], [25.8437910000001, 43.4631355000001], [25.8499575000001, 43.4568045], [25.848738, 43.450232999], [25.8489945000001, 43.4463815], [25.856033, 43.4488295000001], [25.8583780000001, 43.460855499], [25.862783, 43.4778680000001], [25.863634, 43.4803345], [25.8730415000001, 43.4797025], [25.8551765, 43.485990499], [25.8415025, 43.50192], [25.8386600000001, 43.5124265000001], [25.8409925, 43.5175825000001], [25.8270380000001, 43.5194030000001], [25.822685, 43.5302445], [25.8247395000001, 43.5400395010001], [25.8290795, 43.5465175000001], [25.8305720000001, 43.5487345000001], [25.8388145000001, 43.5469905], [25.8457120000001, 43.5556145], [25.8456695, 43.5602515000001], [25.8399385000001, 43.56958], [25.8386180000001, 43.5763915], [25.8365245000001, 43.5918615], [25.8447845000001, 43.6073155], [25.8475995000001, 43.613012], [25.8406605000001, 43.6144860000001], [25.8386765000001, 43.6233979990001], [25.8427425, 43.6215794990001], [25.8368965, 43.6278589990001], [25.8358035000001, 43.639031], [25.826083, 43.6490700000001], [25.8265155, 43.6560435010001], [25.807893, 43.656891], [25.8067675, 43.6698585], [25.790737, 43.6693925000001], [25.7891765000001, 43.670559999], [25.7964950000001, 43.6736900000001], [25.7953605000001, 43.6786210000001], [25.7848195, 43.681566], [25.7668945, 43.6837110000001], [25.764728, 43.6884820000001], [25.7583510000001, 43.6881695010001], [25.7584345000001, 43.7019005000001], [25.7341575, 43.692635001], [25.7185815, 43.6916160000001], [25.709418, 43.6916110010001], [25.6718625, 43.69134], [25.6204415, 43.6709935000001], [25.6258155, 43.6596145], [25.6399060000001, 43.6613630000001], [25.6504975, 43.635814], [25.650085, 43.6265890000001], [25.6792475, 43.621540501] ] ] },
+    "properties": {
+      "ISO": "BG-RSE03",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "63427",
+      "NAME_1": "RSE",
+      "TYPE_1": "Област",
+      "ID_2": "5611",
+      "NAME_2": "Борово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.3686615, 43.9336029990001], [26.3752035000001, 43.934197], [26.3707005000001, 43.939399], [26.3752270000001, 43.946135999], [26.3892225000001, 43.9481520000001], [26.386937, 43.9558150010001], [26.38694, 43.9701215000001], [26.3836635000001, 43.9705815], [26.379696, 43.9759305000001], [26.3823200000001, 43.9866950000001], [26.3953450000001, 43.987845], [26.4006645000001, 43.989669], [26.4062945000001, 43.9940020000001], [26.40948, 44.0025855000001], [26.4092160000001, 44.0094720000001], [26.3974860000001, 44.0146865], [26.3773430000001, 44.0153800000001], [26.3727675000001, 44.0210585], [26.3724045000001, 44.0274580010001], [26.3650375, 44.0299160000001], [26.3570535000001, 44.030803], [26.3583600000001, 44.038415501], [26.3354790000001, 44.0322905], [26.304805, 44.0265890000001], [26.2802585000001, 44.010256], [26.1945165000001, 43.9840585000001], [26.1883425, 43.983207], [26.16983, 43.9851390010001], [26.147007, 43.9842004990001], [26.1474000000001, 43.9807714990001], [26.158872, 43.9801545], [26.152159, 43.9770974990001], [26.156194, 43.9622170000001], [26.1630285000001, 43.944261], [26.1553945000001, 43.9438220000001], [26.1518025, 43.936314], [26.1484815000001, 43.9253675], [26.150157, 43.9207250000001], [26.159159, 43.9219170000001], [26.162247, 43.9161549990001], [26.1696635000001, 43.91394], [26.1769085, 43.9127590000001], [26.1797965000001, 43.905604], [26.1865705000001, 43.9044415000001], [26.1891170000001, 43.903987], [26.194083, 43.8986875000001], [26.2084645, 43.8899145], [26.214663, 43.8874815], [26.215946, 43.8874500000001], [26.2188905, 43.8877174990001], [26.223458, 43.873023], [26.243023, 43.847696], [26.2469405, 43.838381], [26.273805, 43.8490485], [26.2721995000001, 43.8511365], [26.2833365000001, 43.8577030000001], [26.2943965000001, 43.8542605010001], [26.3174940000001, 43.8602215000001], [26.318298, 43.8636745000001], [26.3209625000001, 43.867238], [26.340967, 43.8662385000001], [26.3727460000001, 43.8749260000001], [26.3721575000001, 43.879447], [26.376922, 43.8893820000001], [26.3731060000001, 43.8913959990001], [26.3686615, 43.9336029990001] ] ] },
+    "properties": {
+      "ISO": "BG-RSE33",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "63427",
+      "NAME_1": "RSE",
+      "TYPE_1": "Област",
+      "ID_2": "67444",
+      "NAME_2": "Сливо поле",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.99697, 43.573965], [25.990885, 43.5721960000001], [25.9751390000001, 43.580137], [25.964369, 43.5810035000001], [25.9602150000001, 43.5924600000001], [25.9742665000001, 43.5968184990001], [25.9541810000001, 43.6033445], [25.9484420000001, 43.610864], [25.9362150000001, 43.6187780000001], [25.9223060000001, 43.615082], [25.917781, 43.613878], [25.9108240000001, 43.6204885000001], [25.9025605000001, 43.6186175], [25.898622, 43.6251524990001], [25.8942195000001, 43.6308545000001], [25.8742355000001, 43.6246495], [25.8628820000001, 43.6284810000001], [25.8542155000001, 43.6206960000001], [25.8480485000001, 43.6270355], [25.8427425, 43.6215794990001], [25.8386765000001, 43.6233979990001], [25.8406605000001, 43.6144860000001], [25.8475995000001, 43.613012], [25.8447845000001, 43.6073155], [25.8365245000001, 43.5918615], [25.8386180000001, 43.5763915], [25.8399385000001, 43.56958], [25.8456695, 43.5602515000001], [25.8457120000001, 43.5556145], [25.8388145000001, 43.5469905], [25.8305720000001, 43.5487345000001], [25.8290795, 43.5465175000001], [25.8247395000001, 43.5400395010001], [25.822685, 43.5302445], [25.8270380000001, 43.5194030000001], [25.8409925, 43.5175825000001], [25.8386600000001, 43.5124265000001], [25.8415025, 43.50192], [25.8551765, 43.485990499], [25.8730415000001, 43.4797025], [25.863634, 43.4803345], [25.862783, 43.4778680000001], [25.8583780000001, 43.460855499], [25.856033, 43.4488295000001], [25.8489945000001, 43.4463815], [25.848738, 43.450232999], [25.8475135, 43.4448945], [25.841354, 43.4400465000001], [25.846486, 43.438477499], [25.865526, 43.4416575000001], [25.8880045000001, 43.4372770000001], [25.8924315, 43.4284870000001], [25.8955445, 43.4269545000001], [25.9099195000001, 43.4243910000001], [25.9234740000001, 43.423484], [25.9260355000001, 43.4177095000001], [25.9458920000001, 43.401871], [25.955364, 43.4074325], [25.9571555000001, 43.404437], [25.9638145000001, 43.403237], [25.9823805, 43.4065370000001], [25.9937495, 43.427203499], [26.0140525, 43.4423095000001], [26.0127915, 43.4463870000001], [26.0236335000001, 43.4457775000001], [26.0300015, 43.4502755], [26.0293380000001, 43.4522640000001], [26.0274475000001, 43.4573579990001], [26.031595, 43.4629085], [26.0298465000001, 43.464434], [26.0441750000001, 43.4760615000001], [26.0323675000001, 43.4871230000001], [26.0402195, 43.495482], [26.0407490000001, 43.5062465], [26.0446415000001, 43.5150174990001], [26.0462010000001, 43.5131400000001], [26.0674025000001, 43.5178940000001], [26.0775840000001, 43.515545], [26.0954990000001, 43.5244895000001], [26.1075260000001, 43.524341], [26.118142, 43.5204210000001], [26.129214, 43.5244450010001], [26.126111, 43.5393509990001], [26.1146085, 43.5463350000001], [26.099185, 43.5491585], [26.0988005, 43.5679615000001], [26.0880450000001, 43.5661465000001], [26.0618210000001, 43.5780405], [26.058386, 43.577301], [26.0560070000001, 43.577907], [26.0401640000001, 43.5776355], [26.0300570000001, 43.5743945], [26.008206, 43.570952], [25.99697, 43.573965] ] ] },
+    "properties": {
+      "ISO": "BG-RSE08",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "63427",
+      "NAME_1": "RSE",
+      "TYPE_1": "Област",
+      "ID_2": "20184",
+      "NAME_2": "Две могили",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.488392, 41.3992450000001], [25.486413, 41.4047899990001], [25.4757500000001, 41.408351], [25.4697217680001, 41.4138834340001], [25.4703814110001, 41.4147209400001], [25.4701675000001, 41.4168965000001], [25.4697985, 41.4192830000001], [25.4695995000001, 41.4243155], [25.470383, 41.425276501], [25.4766345, 41.4287100000001], [25.477449, 41.4337420000001], [25.4835, 41.4399785000001], [25.482287, 41.4428945000001], [25.4815265, 41.4432805000001], [25.4605110000001, 41.4396685], [25.4470010000001, 41.4416890000001], [25.4458530000001, 41.4411020000001], [25.4265725000001, 41.4473160000001], [25.4134700000001, 41.4443389990001], [25.3998070000001, 41.4406235000001], [25.399617, 41.4355860000001], [25.383924, 41.4378120000001], [25.3790645, 41.4363430000001], [25.3744695, 41.4299865], [25.3637225000001, 41.4323695], [25.3605165000001, 41.4373635000001], [25.3549170000001, 41.4374275010001], [25.3524170000001, 41.4396795000001], [25.3468145000001, 41.4393739990001], [25.3318810000001, 41.4399375], [25.3067, 41.4361965000001], [25.2993195, 41.4264230000001], [25.2860025000001, 41.419699499], [25.263088, 41.425733], [25.2603875, 41.427507], [25.2476035, 41.4279885], [25.2454230000001, 41.4276445], [25.2424050000001, 41.427085], [25.2381075000001, 41.42751], [25.2264015000001, 41.4377020000001], [25.2187950000001, 41.4375620000001], [25.2126855000001, 41.4356250000001], [25.2089425, 41.4291355], [25.2152545000001, 41.4217804990001], [25.208831, 41.4156865], [25.2040180000001, 41.410626001], [25.2039715, 41.4069460000001], [25.1852850000001, 41.4060495000001], [25.178277, 41.410762], [25.1754945000001, 41.4107040000001], [25.174358, 41.4049080010001], [25.158796, 41.3960585], [25.1580595, 41.3878770000001], [25.161013, 41.385614], [25.1556775, 41.3780575000001], [25.1509415, 41.3761465000001], [25.1430515000001, 41.3673295], [25.142881, 41.3660345000001], [25.1394740000001, 41.358859], [25.129307, 41.3570550000001], [25.127772, 41.3456765010001], [25.1366640000001, 41.3404120000001], [25.1582100000001, 41.3371070000001], [25.1569270000001, 41.3346185], [25.158706, 41.3326155], [25.1695575000001, 41.3282130000001], [25.1793755, 41.310188], [25.1787350000001, 41.302706501], [25.1834515, 41.2982850000001], [25.1895285000001, 41.2954980000001], [25.2009805000001, 41.2919365000001], [25.2090890000001, 41.2918485000001], [25.2206420000001, 41.2816550000001], [25.2258805000001, 41.2695640000001], [25.224094, 41.266784], [25.2246985, 41.2646310000001], [25.2257730000001, 41.2645200000001], [25.2337125, 41.2546790000001], [25.2329325000001, 41.247167001], [25.265245, 41.2441985], [25.2765680000001, 41.239537001], [25.2880475000001, 41.2353299990001], [25.2918975000001, 41.2427680000001], [25.2961530000001, 41.2449100000001], [25.3149675, 41.2442374990001], [25.3246875, 41.2405660000001], [25.3317465000001, 41.2427745], [25.3357075000001, 41.2409405000001], [25.34155, 41.2478130000001], [25.358029, 41.252347], [25.3674745000001, 41.260144], [25.3858660000001, 41.2561915000001], [25.3888965, 41.2582515], [25.4294245, 41.2655540000001], [25.4324710000001, 41.2756525], [25.4701200000001, 41.2827015], [25.4726250000001, 41.28767], [25.5007865000001, 41.286979], [25.517978, 41.2829865], [25.525431, 41.2762795], [25.531396, 41.2776825], [25.5386435, 41.296831], [25.544028, 41.3028115000001], [25.5448510000001, 41.3101810000001], [25.5578400000001, 41.315905], [25.5518305000001, 41.3263995], [25.5379745000001, 41.3357810010001], [25.5377520000001, 41.3427090000001], [25.5409695000001, 41.3436870000001], [25.5336065000001, 41.346935], [25.519931, 41.347475999], [25.515119, 41.343221], [25.5006760000001, 41.3462314990001], [25.4842705, 41.3414405], [25.4835855000001, 41.3421475000001], [25.4759855, 41.3441375000001], [25.4755965000001, 41.3538635], [25.4820095000001, 41.3624565000001], [25.4850095, 41.3690125000001], [25.483937, 41.3711059990001], [25.4825940000001, 41.3870410000001], [25.4891265000001, 41.3904410000001], [25.4820970000001, 41.3946585], [25.488392, 41.3992450000001] ] ] },
+    "properties": {
+      "ISO": "BG-KRZ14",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "40909",
+      "NAME_1": "KRZ",
+      "TYPE_1": "Област",
+      "ID_2": "36926",
+      "NAME_2": "Кирково",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.5947170000001, 41.487084501], [25.595464, 41.486067], [25.5944635000001, 41.480848501], [25.5913645000001, 41.469502], [25.5872325, 41.4560530000001], [25.5950980000001, 41.4575545000001], [25.5954275, 41.453330001], [25.592343, 41.4379665010001], [25.5888130000001, 41.4371485], [25.5683875, 41.439211], [25.565483, 41.4424355], [25.5445930000001, 41.432666], [25.5399475, 41.4297334990001], [25.542173, 41.42184], [25.5471675000001, 41.4198135], [25.5470755000001, 41.4156330000001], [25.5267000000001, 41.4196615000001], [25.5193695, 41.4140725010001], [25.5123245, 41.419607], [25.5133470000001, 41.4273575], [25.508741, 41.4328550000001], [25.4892980000001, 41.4380870000001], [25.4835, 41.4399785000001], [25.477449, 41.4337420000001], [25.4766345, 41.4287100000001], [25.470383, 41.425276501], [25.4695995000001, 41.4243155], [25.4697985, 41.4192830000001], [25.4701675000001, 41.4168965000001], [25.4703814110001, 41.4147209400001], [25.4697217680001, 41.4138834340001], [25.4757500000001, 41.408351], [25.486413, 41.4047899990001], [25.488392, 41.3992450000001], [25.4820970000001, 41.3946585], [25.4891265000001, 41.3904410000001], [25.4825940000001, 41.3870410000001], [25.483937, 41.3711059990001], [25.4850095, 41.3690125000001], [25.4820095000001, 41.3624565000001], [25.4755965000001, 41.3538635], [25.4759855, 41.3441375000001], [25.4835855000001, 41.3421475000001], [25.4842705, 41.3414405], [25.5006760000001, 41.3462314990001], [25.515119, 41.343221], [25.519931, 41.347475999], [25.5336065000001, 41.346935], [25.5409695000001, 41.3436870000001], [25.5377520000001, 41.3427090000001], [25.5379745000001, 41.3357810010001], [25.5518305000001, 41.3263995], [25.5578400000001, 41.315905], [25.5640395, 41.3179470000001], [25.574151, 41.31872], [25.5837125000001, 41.3143920000001], [25.5867520000001, 41.309512], [25.6239210000001, 41.3036090000001], [25.6465735, 41.313204], [25.6513055, 41.313001], [25.6579840000001, 41.314555], [25.664316, 41.3086985], [25.6834655000001, 41.3067169990001], [25.6946665, 41.3013120000001], [25.6965485000001, 41.296294], [25.7019345000001, 41.2925295000001], [25.7116510000001, 41.2909895000001], [25.7144870000001, 41.293302], [25.7148135, 41.3048320010001], [25.7186025, 41.3167625], [25.72349, 41.3189075000001], [25.7438745000001, 41.3170505000001], [25.757997, 41.320338], [25.762638, 41.32451], [25.7694310000001, 41.3195285000001], [25.7814855, 41.3224650000001], [25.784585, 41.329394499], [25.7891060000001, 41.3327805000001], [25.8094715, 41.3378275000001], [25.8167375, 41.337143], [25.8194885, 41.339841499], [25.820978, 41.3470475], [25.8240155, 41.347740001], [25.8352180000001, 41.3405625], [25.8461425, 41.3374390000001], [25.8527645, 41.328444], [25.8591355, 41.3269405], [25.8728790000001, 41.3280455], [25.8729375, 41.3208595], [25.8693665000001, 41.3141200000001], [25.879244, 41.3067380000001], [25.884355, 41.3043035000001], [25.9064375, 41.307575], [25.9196905000001, 41.3141525], [25.9295845, 41.3149175], [25.9351510000001, 41.320673501], [25.948626, 41.320342001], [25.9565885000001, 41.3306185000001], [25.9463955, 41.3288235], [25.9434410000001, 41.3325035], [25.9424375, 41.3401365], [25.945164, 41.3453500000001], [25.9442225, 41.350061], [25.933189, 41.3600795], [25.941517, 41.3722085000001], [25.9095395000001, 41.3661585], [25.9035125, 41.3719515000001], [25.9180645000001, 41.387028], [25.9204520000001, 41.389298001], [25.914658, 41.3902790000001], [25.905317, 41.3861150000001], [25.8944865, 41.3935460000001], [25.874621, 41.394056], [25.8692600000001, 41.3925350000001], [25.8547620000001, 41.3964045000001], [25.8366300000001, 41.3959750000001], [25.830246, 41.4090385000001], [25.8238365, 41.4108735], [25.8218705, 41.412065], [25.8194175, 41.4355895000001], [25.8222165, 41.439469], [25.8241515, 41.4408265000001], [25.8257640000001, 41.441248], [25.8369205000001, 41.4403705], [25.8340765, 41.4459445000001], [25.841552, 41.4530905], [25.8510890000001, 41.4548075000001], [25.8522750000001, 41.452797], [25.8557735000001, 41.4627445], [25.8683875, 41.468891], [25.8643375, 41.4683870000001], [25.8535265, 41.4751525], [25.8472055, 41.4841145], [25.8385835, 41.4771055000001], [25.824779, 41.4848375], [25.821671, 41.4962990000001], [25.8121335000001, 41.505546], [25.801544, 41.508584], [25.7934605, 41.5056940000001], [25.7946025, 41.5092365], [25.7925035000001, 41.516326501], [25.7894820000001, 41.5191315000001], [25.7742870000001, 41.52047], [25.7625275, 41.5256180000001], [25.762215, 41.528465], [25.7551635, 41.5368515000001], [25.7589795000001, 41.5443325000001], [25.771595, 41.540892], [25.7771365, 41.5420455], [25.7847850000001, 41.5395100000001], [25.7809145000001, 41.552128501], [25.7908225, 41.5732605000001], [25.7885810000001, 41.5866395], [25.7942045, 41.583942], [25.796776, 41.584532], [25.8232945, 41.5985380000001], [25.8314060000001, 41.6018765000001], [25.8402120000001, 41.6129995000001], [25.8341, 41.6243720000001], [25.8250195000001, 41.623185499], [25.8251985000001, 41.626538], [25.835109, 41.6308135000001], [25.83156, 41.641014], [25.8355770000001, 41.647931499], [25.8292675000001, 41.6503085000001], [25.8125180000001, 41.650875], [25.802867, 41.653089499], [25.800308, 41.6502440000001], [25.797128, 41.656074], [25.7930075, 41.6598185], [25.778016, 41.6529675], [25.7757665, 41.656686], [25.7741150000001, 41.6569885000001], [25.7584385000001, 41.6490425000001], [25.7473385000001, 41.6355735000001], [25.7459705000001, 41.6245345], [25.7388300000001, 41.6200605000001], [25.71556, 41.6101610010001], [25.7153740000001, 41.6116855010001], [25.704393, 41.616539], [25.7043620000001, 41.6146245], [25.6967320000001, 41.6209060000001], [25.6803580000001, 41.6245200000001], [25.6730610000001, 41.6246120000001], [25.6572395000001, 41.6117105000001], [25.6465065, 41.6085535], [25.6411145000001, 41.6113540000001], [25.6386650000001, 41.620395], [25.6226195, 41.6242255000001], [25.6108590000001, 41.621112], [25.6017165000001, 41.6233745000001], [25.599609, 41.6251950000001], [25.604768, 41.634823], [25.6020810000001, 41.6417935000001], [25.5871865, 41.6407060000001], [25.5870365000001, 41.6343230000001], [25.5827370000001, 41.6252045], [25.5759, 41.6169235], [25.5692100000001, 41.6141390000001], [25.5675905000001, 41.6058684990001], [25.572503, 41.6001465000001], [25.57658, 41.5996065], [25.5787550000001, 41.5938560000001], [25.5877315000001, 41.5876125], [25.5998315000001, 41.57225], [25.6102035000001, 41.561721], [25.6087105, 41.5459585], [25.6016700000001, 41.5446075], [25.5989520000001, 41.539355001], [25.595921, 41.5356025], [25.593395, 41.523849], [25.579012, 41.515029499], [25.5737510000001, 41.4960405000001], [25.574936, 41.4958930000001], [25.5818305, 41.4952625000001], [25.587723, 41.4838150000001], [25.5947170000001, 41.487084501] ] ] },
+    "properties": {
+      "ISO": "BG-KRZ15",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "40909",
+      "NAME_1": "KRZ",
+      "TYPE_1": "Област",
+      "ID_2": "39970",
+      "NAME_2": "Крумовград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.1992385, 41.5385985], [25.204847, 41.5504040000001], [25.2362835000001, 41.555885], [25.24593, 41.555757999], [25.2503620000001, 41.566242], [25.2360055, 41.569301001], [25.2471505, 41.5802840000001], [25.242868, 41.5819480000001], [25.23774, 41.581648999], [25.235289, 41.5846690010001], [25.223077, 41.5868770000001], [25.2233610000001, 41.5903355], [25.2310810000001, 41.5919765], [25.222724, 41.596252], [25.2207710000001, 41.5948435], [25.2156380000001, 41.599483499], [25.2152350000001, 41.6107630010001], [25.2216100000001, 41.6169235], [25.2335935, 41.6230390010001], [25.234561, 41.623229501], [25.2347810000001, 41.6236925000001], [25.238661, 41.6367755], [25.243765, 41.6382590000001], [25.247287, 41.6442215000001], [25.2502935000001, 41.6453785], [25.2505575000001, 41.6519265000001], [25.2570035, 41.651191499], [25.2707935, 41.6552950000001], [25.274391, 41.663059], [25.2707550000001, 41.658852], [25.265724, 41.6590780000001], [25.2637975000001, 41.6651870000001], [25.2707785000001, 41.6706830000001], [25.2701405, 41.6725375], [25.2690645000001, 41.673413], [25.255118, 41.6700445000001], [25.2468405000001, 41.6836950000001], [25.240392, 41.682759], [25.2366940000001, 41.6845080000001], [25.2334195, 41.691672], [25.2314875000001, 41.6989550000001], [25.2343070000001, 41.7024940000001], [25.2284955000001, 41.7062905000001], [25.2285170000001, 41.7108075], [25.2211555000001, 41.7216640010001], [25.2242036980001, 41.7263855810001], [25.2245115000001, 41.7279665], [25.222985931, 41.728065671], [25.2118255, 41.725869], [25.2056040000001, 41.7211160000001], [25.1794140000001, 41.719924501], [25.1754790000001, 41.7211994990001], [25.169678, 41.7173335000001], [25.143444, 41.7206235000001], [25.13147, 41.7262775], [25.1300925, 41.7325920000001], [25.1273675, 41.7309225000001], [25.1201510000001, 41.734137], [25.1042115000001, 41.7213110000001], [25.0814110000001, 41.7209550000001], [25.069536, 41.717519999], [25.072846, 41.7109], [25.078602, 41.6929025000001], [25.077228, 41.6847780000001], [25.0889915000001, 41.6818085], [25.0823120000001, 41.6767120000001], [25.0820985, 41.6757305], [25.0884365000001, 41.6650040000001], [25.091263, 41.653349], [25.0854305, 41.6408769990001], [25.0882255000001, 41.637708], [25.0940185000001, 41.6370660000001], [25.099273, 41.6209004990001], [25.087434, 41.6114180000001], [25.0784755, 41.6110839990001], [25.0713020000001, 41.603348499], [25.0638260000001, 41.5972830000001], [25.0502225000001, 41.5899650000001], [25.044497, 41.5888185000001], [25.0263305, 41.590764], [25.0180040000001, 41.5872565000001], [25.0148395000001, 41.5884405], [25.0082215, 41.5863355010001], [25.0019820000001, 41.568939001], [24.9991450000001, 41.5672910000001], [25.0051080000001, 41.5614589990001], [25.0148585000001, 41.5588270000001], [25.0218150000001, 41.5534030000001], [25.0251400000001, 41.5410575000001], [25.021664, 41.5375215], [25.0228505000001, 41.532291], [25.0211330000001, 41.525047], [25.025541, 41.523101], [25.0314865, 41.5161235], [25.032545, 41.5152140000001], [25.0497945000001, 41.506623], [25.053499, 41.4957650000001], [25.0610520000001, 41.4896235000001], [25.0762795000001, 41.4896995010001], [25.0807855, 41.4910535000001], [25.082453, 41.4960485], [25.083179, 41.497083], [25.0830290000001, 41.5058530000001], [25.0942470000001, 41.5196355], [25.1010935, 41.5246755000001], [25.1053860000001, 41.5263315], [25.1263465000001, 41.5177555000001], [25.126791, 41.5158740000001], [25.1384140000001, 41.5146395], [25.1484320000001, 41.5063845], [25.1525905, 41.503997], [25.1641270000001, 41.500863], [25.164253, 41.504873], [25.1700535000001, 41.5147825000001], [25.1880560000001, 41.5262635], [25.1926025000001, 41.5257500000001], [25.1949300000001, 41.5259125000001], [25.1981835, 41.5263235], [25.2125395, 41.5249175000001], [25.21045, 41.52765], [25.1992385, 41.5385985] ] ] },
+    "properties": {
+      "ISO": "BG-KRZ02",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "40909",
+      "NAME_1": "KRZ",
+      "TYPE_1": "Област",
+      "ID_2": "607",
+      "NAME_2": "Ардино",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.579012, 41.515029499], [25.593395, 41.523849], [25.595921, 41.5356025], [25.5989520000001, 41.539355001], [25.6016700000001, 41.5446075], [25.6087105, 41.5459585], [25.6102035000001, 41.561721], [25.5998315000001, 41.57225], [25.5877315000001, 41.5876125], [25.5787550000001, 41.5938560000001], [25.57658, 41.5996065], [25.572503, 41.6001465000001], [25.5675905000001, 41.6058684990001], [25.5692100000001, 41.6141390000001], [25.5759, 41.6169235], [25.5827370000001, 41.6252045], [25.5870365000001, 41.6343230000001], [25.5871865, 41.6407060000001], [25.57663, 41.6413145000001], [25.556881, 41.6444995000001], [25.5543480000001, 41.6461790000001], [25.5465405, 41.6406180000001], [25.5169310000001, 41.634875999], [25.5181940000001, 41.6326270000001], [25.5275940000001, 41.6157025], [25.5054195000001, 41.6090485], [25.5028555000001, 41.6051285], [25.4989315, 41.5997495], [25.4825205000001, 41.5903964990001], [25.4721025000001, 41.5959780000001], [25.4550410000001, 41.592746], [25.4469260000001, 41.5941005], [25.4459935, 41.6031090000001], [25.436838, 41.6013765000001], [25.4126495, 41.6001215000001], [25.4088840000001, 41.5998985000001], [25.4045005, 41.588624], [25.3979615000001, 41.5829175000001], [25.3956018170001, 41.580712324], [25.3956435000001, 41.5805435], [25.3932740000001, 41.5785369990001], [25.381406, 41.5762995000001], [25.3710140000001, 41.5711000000001], [25.3609045000001, 41.570613999], [25.350808, 41.5680015], [25.3475295000001, 41.5682880000001], [25.3461945, 41.5645175000001], [25.3371945000001, 41.56237], [25.330118, 41.5565165], [25.341533, 41.5441845], [25.3436515000001, 41.5425984990001], [25.3440705, 41.5400645], [25.3699360000001, 41.5494590000001], [25.376768, 41.5257235], [25.364408, 41.5136005000001], [25.3630975, 41.5092990000001], [25.3668295000001, 41.500741501], [25.365055, 41.4864355], [25.368842, 41.4794775], [25.367985, 41.4703500000001], [25.3688025000001, 41.4636785000001], [25.3685120000001, 41.462030499], [25.3655755, 41.4623354990001], [25.3645680000001, 41.4544310000001], [25.3671705, 41.4535270000001], [25.368049, 41.443609], [25.3571215000001, 41.4437955000001], [25.3524170000001, 41.4396795000001], [25.3549170000001, 41.4374275010001], [25.3605165000001, 41.4373635000001], [25.3637225000001, 41.4323695], [25.3744695, 41.4299865], [25.3790645, 41.4363430000001], [25.383924, 41.4378120000001], [25.399617, 41.4355860000001], [25.3998070000001, 41.4406235000001], [25.4134700000001, 41.4443389990001], [25.4265725000001, 41.4473160000001], [25.4458530000001, 41.4411020000001], [25.4470010000001, 41.4416890000001], [25.4605110000001, 41.4396685], [25.4815265, 41.4432805000001], [25.482287, 41.4428945000001], [25.4835, 41.4399785000001], [25.4892980000001, 41.4380870000001], [25.508741, 41.4328550000001], [25.5133470000001, 41.4273575], [25.5123245, 41.419607], [25.5193695, 41.4140725010001], [25.5267000000001, 41.4196615000001], [25.5470755000001, 41.4156330000001], [25.5471675000001, 41.4198135], [25.542173, 41.42184], [25.5399475, 41.4297334990001], [25.5445930000001, 41.432666], [25.565483, 41.4424355], [25.5683875, 41.439211], [25.5888130000001, 41.4371485], [25.592343, 41.4379665010001], [25.5954275, 41.453330001], [25.5950980000001, 41.4575545000001], [25.5872325, 41.4560530000001], [25.5913645000001, 41.469502], [25.5944635000001, 41.480848501], [25.595464, 41.486067], [25.5947170000001, 41.487084501], [25.587723, 41.4838150000001], [25.5818305, 41.4952625000001], [25.574936, 41.4958930000001], [25.5737510000001, 41.4960405000001], [25.579012, 41.515029499] ] ] },
+    "properties": {
+      "ISO": "BG-KRZ21",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "40909",
+      "NAME_1": "KRZ",
+      "TYPE_1": "Област",
+      "ID_2": "48996",
+      "NAME_2": "Момчилград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [25.2026725000001, 41.752593], [25.194738, 41.7530135010001], [25.188369, 41.7485360000001], [25.1722125000001, 41.7506305000001], [25.1571265000001, 41.7516415000001], [25.1322705000001, 41.7472545000001], [25.1201510000001, 41.734137], [25.1273675, 41.7309225000001], [25.1300925, 41.7325920000001], [25.13147, 41.7262775], [25.143444, 41.7206235000001], [25.169678, 41.7173335000001], [25.1754790000001, 41.7211994990001], [25.1794140000001, 41.719924501], [25.2056040000001, 41.7211160000001], [25.2118255, 41.725869], [25.222985931, 41.728065671], [25.2190895000001, 41.7337865000001], [25.2134035, 41.7486984990001], [25.209195, 41.7513035000001], [25.2026725000001, 41.752593] ] ], [ [ [25.6320075, 41.7195805000001], [25.632033, 41.731362], [25.6306155, 41.73121], [25.6090335000001, 41.739656], [25.606385, 41.7405605000001], [25.6027145, 41.7465775000001], [25.5986360000001, 41.7448795], [25.5897155000001, 41.749017], [25.5877755000001, 41.752276501], [25.5915425000001, 41.7596585000001], [25.5912175, 41.7617395], [25.5631550000001, 41.755888999], [25.557581, 41.7571610000001], [25.5492225, 41.7577450000001], [25.54612, 41.7587775000001], [25.5414305, 41.7522870000001], [25.5391260000001, 41.7528255], [25.5362155, 41.7564675], [25.5342430000001, 41.7598875], [25.5281890000001, 41.756401], [25.5194515000001, 41.7579234990001], [25.5156930000001, 41.763869], [25.517593, 41.767734499], [25.50426, 41.7703175], [25.484522, 41.76239], [25.481206, 41.7642285000001], [25.4767495, 41.7694070000001], [25.466057, 41.7742455000001], [25.4583225000001, 41.785076001], [25.453764, 41.7816550000001], [25.4498625, 41.7913705], [25.4411135, 41.7936565000001], [25.4347495000001, 41.7906114990001], [25.4282705000001, 41.7935175000001], [25.420957, 41.7933449990001], [25.40678, 41.7890065], [25.414163, 41.7714735000001], [25.4118285000001, 41.766695], [25.4049580000001, 41.7662395], [25.3952635000001, 41.7602860000001], [25.3920925, 41.757594], [25.3907435, 41.7507255], [25.38667, 41.7498125000001], [25.385271, 41.7450420000001], [25.37834, 41.7487360000001], [25.376698, 41.7410075000001], [25.3759670000001, 41.737602], [25.3824225000001, 41.7369545], [25.389256, 41.7317685], [25.3883695000001, 41.7189615], [25.387976, 41.716307999], [25.3729835, 41.7026495000001], [25.363457, 41.7117645000001], [25.3603685000001, 41.707055], [25.3502385, 41.7017264990001], [25.3477175, 41.7040230000001], [25.3459110000001, 41.7045015], [25.3446285000001, 41.7039470010001], [25.3431715, 41.7007645], [25.3421050000001, 41.7013165000001], [25.337879, 41.7029355000001], [25.3330995000001, 41.7065365], [25.3311905, 41.7138805000001], [25.3252360000001, 41.7160905000001], [25.320618, 41.7173875], [25.3149635, 41.713625], [25.3103915, 41.713937], [25.3071560000001, 41.7159560010001], [25.3045550000001, 41.7279145000001], [25.299065, 41.7259735000001], [25.2879045, 41.7335985], [25.2871325, 41.7346545], [25.2861800000001, 41.7342170000001], [25.2681640000001, 41.726638], [25.2634145000001, 41.7354955000001], [25.2569800000001, 41.7387445000001], [25.2487610000001, 41.7354360000001], [25.2439640000001, 41.723356999], [25.2485175000001, 41.7183690000001], [25.2449615, 41.7098035000001], [25.2284955000001, 41.7062905000001], [25.2343070000001, 41.7024940000001], [25.2314875000001, 41.6989550000001], [25.2334195, 41.691672], [25.2366940000001, 41.6845080000001], [25.240392, 41.682759], [25.2468405000001, 41.6836950000001], [25.255118, 41.6700445000001], [25.2690645000001, 41.673413], [25.2701405, 41.6725375], [25.2707785000001, 41.6706830000001], [25.2637975000001, 41.6651870000001], [25.265724, 41.6590780000001], [25.2707550000001, 41.658852], [25.274391, 41.663059], [25.2707935, 41.6552950000001], [25.2570035, 41.651191499], [25.2505575000001, 41.6519265000001], [25.2502935000001, 41.6453785], [25.247287, 41.6442215000001], [25.243765, 41.6382590000001], [25.238661, 41.6367755], [25.2347810000001, 41.6236925000001], [25.234561, 41.623229501], [25.2335935, 41.6230390010001], [25.2216100000001, 41.6169235], [25.2152350000001, 41.6107630010001], [25.2156380000001, 41.599483499], [25.2207710000001, 41.5948435], [25.222724, 41.596252], [25.2310810000001, 41.5919765], [25.2233610000001, 41.5903355], [25.223077, 41.5868770000001], [25.235289, 41.5846690010001], [25.23774, 41.581648999], [25.242868, 41.5819480000001], [25.2471505, 41.5802840000001], [25.2360055, 41.569301001], [25.2503620000001, 41.566242], [25.2524285000001, 41.566205999], [25.2678550000001, 41.5604050000001], [25.2865130000001, 41.5540465], [25.3012230000001, 41.5574305000001], [25.3233465000001, 41.5577740000001], [25.3281975, 41.5579565], [25.330118, 41.5565165], [25.3371945000001, 41.56237], [25.3461945, 41.5645175000001], [25.3475295000001, 41.5682880000001], [25.350808, 41.5680015], [25.3609045000001, 41.570613999], [25.3710140000001, 41.5711000000001], [25.381406, 41.5762995000001], [25.3932740000001, 41.5785369990001], [25.3956435000001, 41.5805435], [25.3956018170001, 41.580712324], [25.3979615000001, 41.5829175000001], [25.4045005, 41.588624], [25.4088840000001, 41.5998985000001], [25.4126495, 41.6001215000001], [25.436838, 41.6013765000001], [25.4459935, 41.6031090000001], [25.4469260000001, 41.5941005], [25.4550410000001, 41.592746], [25.4721025000001, 41.5959780000001], [25.4825205000001, 41.5903964990001], [25.4989315, 41.5997495], [25.5028555000001, 41.6051285], [25.5054195000001, 41.6090485], [25.5275940000001, 41.6157025], [25.5181940000001, 41.6326270000001], [25.5169310000001, 41.634875999], [25.5465405, 41.6406180000001], [25.5543480000001, 41.6461790000001], [25.556881, 41.6444995000001], [25.57663, 41.6413145000001], [25.5871865, 41.6407060000001], [25.6020810000001, 41.6417935000001], [25.6219865, 41.6565400000001], [25.6330130000001, 41.662377], [25.636449, 41.6703575000001], [25.6374015000001, 41.6713505000001], [25.641331, 41.6756300000001], [25.6461850000001, 41.6872520000001], [25.6455585, 41.6934365000001], [25.6422630000001, 41.6969515000001], [25.6320435000001, 41.7074945000001], [25.6357610000001, 41.710924999], [25.6321125000001, 41.715425501], [25.6320075, 41.7195805000001] ] ] ] },
+    "properties": {
+      "ISO": "BG-KRZ16",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "40909",
+      "NAME_1": "KRZ",
+      "TYPE_1": "Област",
+      "ID_2": "40909",
+      "NAME_2": "Кърджали",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.368049, 41.443609], [25.3671705, 41.4535270000001], [25.3645680000001, 41.4544310000001], [25.3655755, 41.4623354990001], [25.3685120000001, 41.462030499], [25.3688025000001, 41.4636785000001], [25.367985, 41.4703500000001], [25.368842, 41.4794775], [25.365055, 41.4864355], [25.3668295000001, 41.500741501], [25.3630975, 41.5092990000001], [25.364408, 41.5136005000001], [25.376768, 41.5257235], [25.3699360000001, 41.5494590000001], [25.3440705, 41.5400645], [25.3436515000001, 41.5425984990001], [25.341533, 41.5441845], [25.330118, 41.5565165], [25.3281975, 41.5579565], [25.3233465000001, 41.5577740000001], [25.3012230000001, 41.5574305000001], [25.2865130000001, 41.5540465], [25.2678550000001, 41.5604050000001], [25.2524285000001, 41.566205999], [25.2503620000001, 41.566242], [25.24593, 41.555757999], [25.2362835000001, 41.555885], [25.204847, 41.5504040000001], [25.1992385, 41.5385985], [25.21045, 41.52765], [25.2125395, 41.5249175000001], [25.1981835, 41.5263235], [25.1949300000001, 41.5259125000001], [25.1926025000001, 41.5257500000001], [25.1880560000001, 41.5262635], [25.1700535000001, 41.5147825000001], [25.164253, 41.504873], [25.1641270000001, 41.500863], [25.1669855000001, 41.4994725], [25.1724895, 41.4839145], [25.1708915, 41.4795570000001], [25.1692815000001, 41.4760095], [25.1642900000001, 41.467049], [25.1653860000001, 41.4581135], [25.1580760000001, 41.4511355000001], [25.151682, 41.441033501], [25.146915, 41.4369025], [25.1653355, 41.4384165000001], [25.1692075, 41.437445], [25.1755645000001, 41.4362625], [25.1757400000001, 41.430974], [25.1673300000001, 41.4323355000001], [25.1683805000001, 41.4246509990001], [25.167222, 41.4235515], [25.1690975000001, 41.4220280000001], [25.1768665000001, 41.4190169990001], [25.167986, 41.413278], [25.1555445000001, 41.413705], [25.1525950000001, 41.408375], [25.15747, 41.4027295000001], [25.1573895000001, 41.3992020000001], [25.158796, 41.3960585], [25.174358, 41.4049080010001], [25.1754945000001, 41.4107040000001], [25.178277, 41.410762], [25.1852850000001, 41.4060495000001], [25.2039715, 41.4069460000001], [25.2040180000001, 41.410626001], [25.208831, 41.4156865], [25.2152545000001, 41.4217804990001], [25.2089425, 41.4291355], [25.2126855000001, 41.4356250000001], [25.2187950000001, 41.4375620000001], [25.2264015000001, 41.4377020000001], [25.2381075000001, 41.42751], [25.2424050000001, 41.427085], [25.2454230000001, 41.4276445], [25.2476035, 41.4279885], [25.2603875, 41.427507], [25.263088, 41.425733], [25.2860025000001, 41.419699499], [25.2993195, 41.4264230000001], [25.3067, 41.4361965000001], [25.3318810000001, 41.4399375], [25.3468145000001, 41.4393739990001], [25.3524170000001, 41.4396795000001], [25.3571215000001, 41.4437955000001], [25.368049, 41.443609] ] ] },
+    "properties": {
+      "ISO": "BG-KRZ08",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "40909",
+      "NAME_1": "KRZ",
+      "TYPE_1": "Област",
+      "ID_2": "20746",
+      "NAME_2": "Джебел",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.3603685000001, 41.707055], [25.363457, 41.7117645000001], [25.3729835, 41.7026495000001], [25.387976, 41.716307999], [25.3883695000001, 41.7189615], [25.389256, 41.7317685], [25.3824225000001, 41.7369545], [25.3759670000001, 41.737602], [25.376698, 41.7410075000001], [25.37834, 41.7487360000001], [25.385271, 41.7450420000001], [25.38667, 41.7498125000001], [25.3907435, 41.7507255], [25.3920925, 41.757594], [25.3952635000001, 41.7602860000001], [25.4049580000001, 41.7662395], [25.4118285000001, 41.766695], [25.414163, 41.7714735000001], [25.40678, 41.7890065], [25.401349, 41.793664], [25.398765, 41.7944475], [25.3863985, 41.8126030000001], [25.3858230000001, 41.8150355010001], [25.3839110000001, 41.8202415000001], [25.3845375000001, 41.8305990000001], [25.3736185000001, 41.8414910000001], [25.3667405, 41.8416905], [25.3563645, 41.84171], [25.3467355, 41.8304035000001], [25.3569190000001, 41.827703], [25.3464865, 41.8190060000001], [25.3306305, 41.816201], [25.3251930000001, 41.8190445000001], [25.3216, 41.824783], [25.3199675000001, 41.824826999], [25.3120365, 41.8218825000001], [25.3150365000001, 41.8198105000001], [25.3144255, 41.8144465], [25.3119735000001, 41.8092905010001], [25.303931, 41.8070960000001], [25.3041675000001, 41.7999570000001], [25.2925275000001, 41.8021630000001], [25.2854265, 41.8124139990001], [25.2845675, 41.8154455000001], [25.2545670000001, 41.826648], [25.2520775, 41.8287575000001], [25.25534, 41.8331395000001], [25.2393970000001, 41.8327120010001], [25.2305890000001, 41.8370215000001], [25.2325585, 41.8450040000001], [25.2349985000001, 41.8493060000001], [25.240886, 41.850036], [25.238013, 41.8559855], [25.2272750000001, 41.8584550000001], [25.2269450000001, 41.861683], [25.2173065000001, 41.868068001], [25.2137695000001, 41.8776950000001], [25.2158615000001, 41.8933400000001], [25.2181670000001, 41.895591], [25.2094345, 41.901534499], [25.1993355000001, 41.9017460000001], [25.1868225000001, 41.8985950000001], [25.1823715, 41.8941970000001], [25.182512, 41.886125], [25.172175, 41.8759370000001], [25.1625920000001, 41.8722085000001], [25.1597790000001, 41.872438], [25.1473635, 41.8705585000001], [25.1431045, 41.8697250000001], [25.1461095, 41.8605865000001], [25.147638, 41.843876999], [25.1422200000001, 41.8374175000001], [25.1427405000001, 41.835224], [25.133496, 41.829436], [25.118956, 41.827302999], [25.108191, 41.818376501], [25.106857, 41.8105685], [25.1128005000001, 41.8066855000001], [25.1172315000001, 41.7995935000001], [25.0937690000001, 41.7965135000001], [25.0816380000001, 41.787967], [25.0742245000001, 41.7934765000001], [25.0593950000001, 41.7766370000001], [25.0512860000001, 41.759437001], [25.0491045000001, 41.7461875000001], [25.058096, 41.7366805], [25.069358, 41.739811], [25.0779025000001, 41.7271400010001], [25.0758225000001, 41.722564], [25.0690495000001, 41.718219], [25.069536, 41.717519999], [25.0814110000001, 41.7209550000001], [25.1042115000001, 41.7213110000001], [25.1201510000001, 41.734137], [25.1322705000001, 41.7472545000001], [25.1571265000001, 41.7516415000001], [25.1722125000001, 41.7506305000001], [25.188369, 41.7485360000001], [25.194738, 41.7530135010001], [25.2026725000001, 41.752593], [25.209195, 41.7513035000001], [25.2134035, 41.7486984990001], [25.2190895000001, 41.7337865000001], [25.222985931, 41.728065671], [25.2245115000001, 41.7279665], [25.2242036980001, 41.7263855810001], [25.2211555000001, 41.7216640010001], [25.2285170000001, 41.7108075], [25.2284955000001, 41.7062905000001], [25.2449615, 41.7098035000001], [25.2485175000001, 41.7183690000001], [25.2439640000001, 41.723356999], [25.2487610000001, 41.7354360000001], [25.2569800000001, 41.7387445000001], [25.2634145000001, 41.7354955000001], [25.2681640000001, 41.726638], [25.2861800000001, 41.7342170000001], [25.2871325, 41.7346545], [25.2879045, 41.7335985], [25.299065, 41.7259735000001], [25.3045550000001, 41.7279145000001], [25.3071560000001, 41.7159560010001], [25.3103915, 41.713937], [25.3149635, 41.713625], [25.320618, 41.7173875], [25.3252360000001, 41.7160905000001], [25.3311905, 41.7138805000001], [25.3330995000001, 41.7065365], [25.337879, 41.7029355000001], [25.3421050000001, 41.7013165000001], [25.3431715, 41.7007645], [25.3446285000001, 41.7039470010001], [25.3459110000001, 41.7045015], [25.3477175, 41.7040230000001], [25.3502385, 41.7017264990001], [25.3603685000001, 41.707055] ] ] },
+    "properties": {
+      "ISO": "BG-KRZ35",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "40909",
+      "NAME_1": "KRZ",
+      "TYPE_1": "Област",
+      "ID_2": "81236",
+      "NAME_2": "Черноочене",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.4369745000001, 43.2375515000001], [25.4463235000001, 43.2472195], [25.4715015, 43.2474865], [25.4773420000001, 43.2448000010001], [25.481657, 43.2376449990001], [25.4865540000001, 43.2368040000001], [25.5087715, 43.2427605], [25.515525, 43.2415965010001], [25.529227, 43.2339935], [25.528967, 43.2430625000001], [25.5381185, 43.2459125], [25.538099, 43.2576500000001], [25.5371675000001, 43.2591145000001], [25.5348460000001, 43.262619], [25.5229265, 43.2588775], [25.5170535, 43.26836], [25.5006300000001, 43.272972], [25.4964610000001, 43.2740745], [25.4985925, 43.2879780000001], [25.4887640000001, 43.2957315000001], [25.4814605, 43.3025460000001], [25.4775325000001, 43.3140065000001], [25.4760435000001, 43.3284655], [25.4689075000001, 43.338239], [25.4538055, 43.3480845], [25.4400150000001, 43.3457770010001], [25.431207, 43.3682075], [25.4279340000001, 43.3803545010001], [25.4348925, 43.3838805], [25.4351345000001, 43.3992899990001], [25.4285015, 43.4053940000001], [25.4244895000001, 43.4089540000001], [25.4159325000001, 43.4102990000001], [25.414638, 43.4136129990001], [25.4101075, 43.4134960000001], [25.3743155, 43.4131455], [25.374334, 43.4103635000001], [25.3530030000001, 43.401689], [25.3509, 43.406665], [25.2968655, 43.405575501], [25.2967655000001, 43.405583], [25.2903705000001, 43.4062575], [25.28794, 43.401827], [25.272573, 43.3982060000001], [25.2632780000001, 43.3916090000001], [25.259198, 43.3738310000001], [25.2381015, 43.371994999], [25.2380345, 43.3597395000001], [25.2561220000001, 43.3580055], [25.2551320000001, 43.345468501], [25.2380410000001, 43.341235], [25.2330345, 43.3337245000001], [25.2287940000001, 43.323651], [25.2125905, 43.313727], [25.1816045, 43.3040735000001], [25.180749, 43.298188999], [25.1604335000001, 43.2869505], [25.153896, 43.2769645000001], [25.1436645000001, 43.266506], [25.155588, 43.257766501], [25.1583900000001, 43.2455430000001], [25.1647875, 43.2381495000001], [25.1757680000001, 43.2350925000001], [25.173364, 43.228037], [25.1759675000001, 43.2244390000001], [25.1717005, 43.2230085], [25.1530205, 43.221730501], [25.13849, 43.2207560000001], [25.145452, 43.213423499], [25.1588780000001, 43.214226], [25.1833520000001, 43.203806], [25.1912755000001, 43.200277], [25.1958680000001, 43.197935], [25.2034370000001, 43.1978020000001], [25.2113535, 43.2026645], [25.2373595, 43.1969025000001], [25.238459, 43.196784501], [25.2439800000001, 43.1954285], [25.2444435, 43.1919285000001], [25.2398955, 43.1841460000001], [25.2434225000001, 43.1790500000001], [25.251106, 43.1754710000001], [25.2623980000001, 43.1769175000001], [25.2570755, 43.1746395000001], [25.2519275000001, 43.1591360000001], [25.2556805, 43.155745999], [25.2510510000001, 43.1485895000001], [25.2447535000001, 43.1431870000001], [25.261039, 43.1409610000001], [25.2554020000001, 43.1353705000001], [25.2559425000001, 43.1323925], [25.2560205, 43.1301305000001], [25.2575275, 43.1216415000001], [25.2584695, 43.1188175], [25.2699450000001, 43.1121450000001], [25.2801855000001, 43.1100735000001], [25.2984220000001, 43.1115], [25.3012705, 43.1102010000001], [25.3054075000001, 43.112356], [25.3071685, 43.1185545000001], [25.300917, 43.1192770000001], [25.305749, 43.1236620000001], [25.3142325000001, 43.123409], [25.320256, 43.1232010000001], [25.3210665, 43.1306365], [25.3430040000001, 43.1408930000001], [25.3547775000001, 43.1465195000001], [25.3620750000001, 43.144193499], [25.3634585, 43.1411605000001], [25.3762295000001, 43.142058499], [25.378343, 43.1447675000001], [25.3896085000001, 43.1434990000001], [25.3947005000001, 43.1430305000001], [25.3949055000001, 43.1359375000001], [25.3907790000001, 43.1230255], [25.3862645, 43.121390499], [25.3879390000001, 43.118974], [25.405084, 43.1211685000001], [25.4233355000001, 43.1309620000001], [25.4370270000001, 43.133477499], [25.4406805, 43.1359675], [25.4544285000001, 43.1335560000001], [25.4628650000001, 43.125597], [25.463784, 43.1255465], [25.4726945, 43.1250265000001], [25.474589, 43.1287980000001], [25.4635845, 43.1306765], [25.4493985, 43.1365995], [25.4425200000001, 43.1451549990001], [25.4494615, 43.1508635000001], [25.4498015, 43.1601205000001], [25.4466785000001, 43.1665255], [25.440169, 43.1665995000001], [25.4404705000001, 43.1793040000001], [25.433676, 43.1793235000001], [25.4533715000001, 43.1835535000001], [25.4531940000001, 43.1949735000001], [25.4540020000001, 43.2131915000001], [25.4530455, 43.229603001], [25.4500255, 43.233641], [25.4377455000001, 43.2349150000001], [25.4369745000001, 43.2375515000001] ], [ [25.2478795000001, 43.1846550000001], [25.2466505, 43.1811300000001], [25.251266, 43.1808465], [25.2581345, 43.185484], [25.2478795000001, 43.1846550000001] ] ] },
+    "properties": {
+      "ISO": "BG-VTR22",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "55052",
+      "NAME_2": "Павликени",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.0277525000001, 43.0918335000001], [26.0455675000001, 43.0904795000001], [26.0535675, 43.0928515000001], [26.0589435000001, 43.0947420000001], [26.0612620000001, 43.1022750000001], [26.0640145, 43.1039815], [26.0746995000001, 43.106778999], [26.0739095000001, 43.1118515000001], [26.058638, 43.1188314990001], [26.0626765000001, 43.1268745], [26.0625705, 43.1350725], [26.0730475, 43.137634], [26.076055, 43.1570100000001], [26.07208, 43.1642805000001], [26.0796245, 43.1645175], [26.0887375, 43.1649365000001], [26.0985410000001, 43.1676975], [26.1034260000001, 43.1752235000001], [26.1143165, 43.1748850000001], [26.1200395000001, 43.1801520000001], [26.115534, 43.1938855000001], [26.1165205, 43.1944465010001], [26.1099750000001, 43.2113475], [26.1065475, 43.2117395000001], [26.105174, 43.2179330010001], [26.098336069, 43.2178194110001], [26.0985565, 43.2185385000001], [26.0845045, 43.2339960000001], [26.0863545, 43.2371220000001], [26.0816610000001, 43.2414965], [26.0821235, 43.2444175000001], [26.0547905, 43.2531275000001], [26.0539380000001, 43.2559525], [26.0612410000001, 43.264572], [26.0790215000001, 43.269119501], [26.0948910000001, 43.281416001], [26.0975405, 43.2867855000001], [26.094859, 43.291906001], [26.0807665, 43.29517], [26.0721310000001, 43.303465499], [26.067621, 43.3090475000001], [26.0383640000001, 43.3173825000001], [26.0261850000001, 43.3142405], [26.020854, 43.3186250000001], [26.0045850000001, 43.3187545000001], [25.9929645, 43.3184325], [25.9720865, 43.3206645000001], [25.9500145000001, 43.32629], [25.9486850000001, 43.3309150000001], [25.9432955, 43.3365875000001], [25.9407485, 43.3480895000001], [25.940867, 43.3607105], [25.9598300000001, 43.3695470010001], [25.9483175, 43.3856455000001], [25.9437855, 43.3858010000001], [25.941875, 43.3802190000001], [25.9266065, 43.374989], [25.9236165, 43.3743395000001], [25.9139255000001, 43.377692], [25.9015600000001, 43.3780520010001], [25.897405, 43.3718480000001], [25.8872910000001, 43.3700165000001], [25.8791515, 43.3665155], [25.87233, 43.3662005], [25.8639270000001, 43.3643974990001], [25.8606785000001, 43.361142], [25.861898, 43.359272], [25.8466990000001, 43.364206999], [25.844385, 43.3686050000001], [25.8241150000001, 43.368250001], [25.8197745000001, 43.3705369990001], [25.8045900000001, 43.3680070010001], [25.8040825, 43.372283], [25.7878515, 43.373543999], [25.7817775, 43.3796745000001], [25.7803765, 43.3802900000001], [25.78058, 43.340223], [25.7681425000001, 43.340624999], [25.763179, 43.3383065000001], [25.7627345000001, 43.3356145000001], [25.7891690000001, 43.3246370000001], [25.7918385, 43.3232515], [25.830479, 43.32237], [25.8295910000001, 43.3140540000001], [25.8319745000001, 43.3118950000001], [25.842063, 43.316576501], [25.8426015000001, 43.3203050000001], [25.8503305, 43.3201985000001], [25.8567045, 43.3137520000001], [25.8576685, 43.3022450010001], [25.860148, 43.3016575], [25.847943, 43.3037100000001], [25.838764, 43.2977819990001], [25.8231065, 43.298779], [25.8121380000001, 43.294681], [25.8019885, 43.2967904990001], [25.8066595, 43.2997750000001], [25.8004665, 43.3024115000001], [25.7918355, 43.3027300000001], [25.7922795000001, 43.2942255], [25.7679065, 43.2901705], [25.7711555000001, 43.2754785010001], [25.7745870000001, 43.2612745000001], [25.7805530000001, 43.2434460000001], [25.7891940000001, 43.236339], [25.7992650000001, 43.236841], [25.8041765, 43.2417415], [25.825594, 43.2429405], [25.8488975000001, 43.2374955000001], [25.8492125000001, 43.2405870000001], [25.8550240000001, 43.2390110000001], [25.8620760000001, 43.2313735000001], [25.8677085000001, 43.2259230000001], [25.882076, 43.2239215000001], [25.8831335, 43.215948999], [25.8895130000001, 43.2102980010001], [25.8789775000001, 43.2060440000001], [25.8666315, 43.2065749990001], [25.853214, 43.1974950000001], [25.8538655, 43.1928105000001], [25.8550220000001, 43.1841865000001], [25.8752585, 43.1702325000001], [25.8836240000001, 43.1676350010001], [25.8908005000001, 43.168209], [25.911145, 43.1767155000001], [25.9154225, 43.1796560000001], [25.9168270000001, 43.1784985], [25.929408, 43.1763299990001], [25.9261910000001, 43.1746565], [25.9226395000001, 43.161818], [25.9297980000001, 43.154677], [25.942552, 43.1303340000001], [25.9466225, 43.132389], [25.9638630000001, 43.1225825010001], [25.9560095000001, 43.1166260000001], [25.9721055000001, 43.1157095], [25.9738045, 43.114720999], [25.9739485000001, 43.1146815000001], [25.9805860000001, 43.105961], [25.9781130000001, 43.1040570000001], [25.9838225, 43.098642], [26.0277525000001, 43.0918335000001] ] ] },
+    "properties": {
+      "ISO": "BG-VTR31",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "69633",
+      "NAME_2": "Стражица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.885273, 42.984295], [25.8826085000001, 42.9860640000001], [25.8738455000001, 42.9804565000001], [25.8638110000001, 42.9813820000001], [25.8621305, 42.9852445010001], [25.8588855, 42.9794370000001], [25.8469630000001, 42.9727755000001], [25.8355865, 42.9746010000001], [25.8251750000001, 42.9680465000001], [25.819462, 42.9674880000001], [25.8194585000001, 42.9669525], [25.81613, 42.9704030010001], [25.804291, 42.9735420000001], [25.7896825, 42.9699865000001], [25.7817430000001, 42.967201001], [25.7716105000001, 42.9709155000001], [25.756422, 42.963425999], [25.7463195, 42.9590030000001], [25.7439125000001, 42.9604659990001], [25.7422760000001, 42.9670350000001], [25.7377845, 42.9681655], [25.7230825, 42.958374], [25.7164285000001, 42.9522955], [25.7189415, 42.947303], [25.7265990000001, 42.9439125000001], [25.7265605000001, 42.9378295000001], [25.7229925, 42.931135], [25.7154415000001, 42.9347595], [25.6858095000001, 42.9258150000001], [25.6928980000001, 42.9133615000001], [25.6957820000001, 42.9118050000001], [25.7048415, 42.9118945000001], [25.6999275000001, 42.9037070000001], [25.7139735000001, 42.9003895010001], [25.7118305000001, 42.8953770000001], [25.7121015000001, 42.8879410000001], [25.7210205000001, 42.877147001], [25.724134, 42.8667025], [25.728895, 42.8623365], [25.7512255, 42.8615745000001], [25.7522675000001, 42.8555040000001], [25.7576120000001, 42.8514345], [25.7524355000001, 42.8455015000001], [25.7400430000001, 42.842051], [25.7296785, 42.8310185], [25.7334295000001, 42.8215955000001], [25.7318835, 42.815099], [25.7277975000001, 42.8114835000001], [25.7154840000001, 42.8088109990001], [25.7137955000001, 42.8038480000001], [25.719371, 42.800691], [25.7195195, 42.7925880010001], [25.7218835, 42.7898725010001], [25.746519, 42.7879155000001], [25.766306, 42.7820750000001], [25.7748015, 42.779158], [25.7794525, 42.782945], [25.7926140000001, 42.78403], [25.8374910000001, 42.7772275], [25.8565530000001, 42.783623999], [25.8583025, 42.7829750010001], [25.8681455, 42.780348501], [25.8784975, 42.7823460000001], [25.8789175000001, 42.7878435010001], [25.8829680000001, 42.7908320000001], [25.8991785000001, 42.789048501], [25.9274415, 42.7927165], [25.9290415, 42.7906150000001], [25.936109, 42.7867455000001], [25.95719, 42.789092], [25.9636355000001, 42.7821305], [25.9709015, 42.7850555000001], [25.9711535000001, 42.7850260000001], [25.9734570000001, 42.7896170000001], [25.9832915000001, 42.7951350010001], [25.989251, 42.7937115], [26.0057935, 42.797309], [26.0170795, 42.8086455000001], [26.019752, 42.81318], [26.0409585, 42.8170650000001], [26.0397555000001, 42.8181625010001], [26.0581745000001, 42.8258530000001], [26.0590340000001, 42.8317450000001], [26.0566845000001, 42.8360890000001], [26.061804, 42.8456675], [26.0657475, 42.8481535000001], [26.0583720000001, 42.8571795], [26.0399595000001, 42.866343499], [26.0363685, 42.8687120000001], [26.0417825000001, 42.8704145], [26.0503570000001, 42.8665325000001], [26.062622, 42.8707130000001], [26.0722625000001, 42.8789640000001], [26.0729690000001, 42.8792355], [26.0908245000001, 42.8806254990001], [26.1161775, 42.8976279990001], [26.1328835000001, 42.8964905], [26.1336945, 42.8968205], [26.1501555, 42.901127], [26.16263, 42.9162755], [26.1649105000001, 42.916031], [26.1741785, 42.930970501], [26.1719660000001, 42.938825001], [26.1645745000001, 42.9474835], [26.1651580000001, 42.9514320000001], [26.1674145000001, 42.9521555000001], [26.1673545, 42.9561169990001], [26.1617825000001, 42.960453], [26.1458240000001, 42.9608575], [26.1364785000001, 42.9653845], [26.135752, 42.9727270000001], [26.1276270000001, 42.9763530000001], [26.1211870000001, 42.9709770000001], [26.0981410000001, 42.972815], [26.0760705000001, 42.9792585000001], [26.0694105000001, 42.9791450000001], [26.058483, 42.9792675], [26.0507470000001, 42.984539], [26.0239550000001, 42.983575], [26.022639, 42.9840505000001], [26.019277, 43.0032785010001], [26.019845, 43.0120275000001], [26.0032915, 43.0200609990001], [26.0023135000001, 43.0217660000001], [25.9878645000001, 43.0175300010001], [25.9806305000001, 43.01182], [25.9674365000001, 42.9983700000001], [25.9602895, 42.997751501], [25.9479905000001, 42.9960070000001], [25.9478125000001, 42.9922465010001], [25.9251625000001, 42.99111], [25.9196020000001, 42.991026], [25.9064950000001, 42.9958720000001], [25.9004335000001, 42.9921355000001], [25.889195, 42.989582], [25.8869095000001, 42.983976999], [25.885273, 42.984295] ] ] },
+    "properties": {
+      "ISO": "BG-VTR13",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "27190",
+      "NAME_2": "Елена",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.471254, 43.5547495000001], [25.4758615000001, 43.557107], [25.457617, 43.570886], [25.4616590000001, 43.569761], [25.4641550000001, 43.5778350000001], [25.485689, 43.58018], [25.4989855000001, 43.591286], [25.5012655, 43.589547], [25.5279575000001, 43.598379999], [25.5264910000001, 43.6015665], [25.5389385, 43.609024], [25.5533535000001, 43.6109450010001], [25.5528, 43.629148499], [25.5469715, 43.6307630000001], [25.5427335000001, 43.6365885000001], [25.5446405000001, 43.6429815000001], [25.526375, 43.6449735000001], [25.513858, 43.6463489990001], [25.4766555, 43.6404565], [25.4470225000001, 43.6279020000001], [25.4194140000001, 43.6228780010001], [25.406441, 43.6206715000001], [25.3832855000001, 43.6195035000001], [25.3512045000001, 43.626567499], [25.3224540000001, 43.6438365010001], [25.2937405000001, 43.654294], [25.287432, 43.655672], [25.2860895000001, 43.6532550000001], [25.2593305, 43.6501725000001], [25.2337855000001, 43.6511214990001], [25.2235435000001, 43.643856499], [25.2042040000001, 43.6376325000001], [25.208019, 43.6345630000001], [25.2140085, 43.636264], [25.2200115000001, 43.6149315000001], [25.2195800000001, 43.614604], [25.2144650000001, 43.615981], [25.1950955, 43.6015380000001], [25.1886845000001, 43.6022990000001], [25.1894735000001, 43.6059490000001], [25.1796905000001, 43.6059989990001], [25.1733625, 43.6052385], [25.1742765000001, 43.6009135], [25.201517, 43.587910999], [25.202528, 43.5809085000001], [25.2008905000001, 43.5763955], [25.1966495, 43.5688295], [25.1993265, 43.5619590000001], [25.1980015, 43.5594870000001], [25.2057960000001, 43.5497250000001], [25.2128035000001, 43.543257], [25.2195725, 43.5451165000001], [25.2281465, 43.5378595010001], [25.2345915000001, 43.5326920000001], [25.2220110000001, 43.5248300000001], [25.209797, 43.5238670000001], [25.2095580000001, 43.500569001], [25.209436, 43.4982895000001], [25.1919500000001, 43.4983725000001], [25.191856, 43.479206999], [25.1801775000001, 43.4727325010001], [25.162197, 43.4694430000001], [25.1631540000001, 43.4603035000001], [25.1479820000001, 43.4588699990001], [25.148335, 43.45381], [25.1443805000001, 43.4524145], [25.1296875, 43.458087], [25.1260515000001, 43.4520000000001], [25.1299545, 43.438153001], [25.128134, 43.4306790000001], [25.132595, 43.4251424990001], [25.135338, 43.4276815000001], [25.1448445, 43.4270260000001], [25.1770710000001, 43.4327220000001], [25.1764195000001, 43.4361215010001], [25.184427, 43.4369624990001], [25.195526, 43.4379845010001], [25.2024000000001, 43.4333975000001], [25.211956, 43.4276355010001], [25.2126210000001, 43.4122990000001], [25.2012520000001, 43.412120499], [25.201986, 43.390586001], [25.2021395, 43.387598499], [25.2011900000001, 43.3754045000001], [25.1920425000001, 43.374396], [25.191263, 43.3716734990001], [25.2161550000001, 43.376949499], [25.2215410000001, 43.3723465], [25.2381015, 43.371994999], [25.259198, 43.3738310000001], [25.2632780000001, 43.3916090000001], [25.272573, 43.3982060000001], [25.28794, 43.401827], [25.2903705000001, 43.4062575], [25.2967655000001, 43.405583], [25.2968655, 43.405575501], [25.3509, 43.406665], [25.3530030000001, 43.401689], [25.374334, 43.4103635000001], [25.3743155, 43.4131455], [25.4101075, 43.4134960000001], [25.414638, 43.4136129990001], [25.4184950000001, 43.4199465], [25.4145765000001, 43.4206305000001], [25.415472, 43.4255325], [25.418864, 43.425237], [25.420377, 43.4342715000001], [25.4170760000001, 43.4406320000001], [25.4347585, 43.4400200000001], [25.451402, 43.4508315000001], [25.475759, 43.454121], [25.4644960000001, 43.477093], [25.4681035, 43.4800680000001], [25.4922470000001, 43.481672001], [25.4905680000001, 43.4924320000001], [25.513424, 43.499557], [25.5191290000001, 43.5080815000001], [25.505858, 43.5115685000001], [25.5175995000001, 43.522630001], [25.5061095, 43.5296300000001], [25.50165, 43.5359735000001], [25.484181, 43.5394885000001], [25.4820365000001, 43.5474200000001], [25.4685405000001, 43.552021], [25.471254, 43.5547495000001] ] ] },
+    "properties": {
+      "ISO": "BG-VTR28",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "65766",
+      "NAME_2": "Свищов",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [25.2466505, 43.1811300000001], [25.251266, 43.1808465], [25.2581345, 43.185484], [25.2478795000001, 43.1846550000001], [25.2466505, 43.1811300000001] ] ], [ [ [25.14043, 43.2668305], [25.1380140000001, 43.2657435], [25.1382205, 43.2522465000001], [25.1469195, 43.2578335000001], [25.150063, 43.2546055], [25.1315335, 43.2381715000001], [25.1272355, 43.2326404990001], [25.1193890000001, 43.221431], [25.1165820000001, 43.2100830000001], [25.1152510000001, 43.1984905], [25.112494, 43.1913205000001], [25.1051215000001, 43.183564], [25.076597, 43.1777805], [25.0740750000001, 43.1739909990001], [25.078764, 43.1601085], [25.0946225000001, 43.1459195], [25.1300845000001, 43.141831], [25.1344250000001, 43.1332110000001], [25.1272520000001, 43.1312390000001], [25.1251385000001, 43.1252425000001], [25.1186060000001, 43.1201375], [25.1089705000001, 43.117829], [25.0982460000001, 43.118612999], [25.093235, 43.1155605000001], [25.102025, 43.1146175010001], [25.1068560000001, 43.1136675000001], [25.1146645000001, 43.1053540010001], [25.1149050000001, 43.094541], [25.124037, 43.0887685000001], [25.1311915000001, 43.0926600000001], [25.1315195, 43.0957125], [25.1508025000001, 43.099676501], [25.1525510000001, 43.1025675000001], [25.1514025000001, 43.1048835], [25.1661735000001, 43.1042870000001], [25.1771210000001, 43.100309499], [25.1960065000001, 43.1054995010001], [25.1980360000001, 43.1054335000001], [25.2199085, 43.0987585], [25.2257205, 43.0994455000001], [25.2230430000001, 43.0963205], [25.2429085000001, 43.0985190000001], [25.2646145, 43.1015985000001], [25.2755530000001, 43.104788], [25.2801855000001, 43.1100735000001], [25.2699450000001, 43.1121450000001], [25.2584695, 43.1188175], [25.2575275, 43.1216415000001], [25.2560205, 43.1301305000001], [25.2559425000001, 43.1323925], [25.2554020000001, 43.1353705000001], [25.261039, 43.1409610000001], [25.2447535000001, 43.1431870000001], [25.2510510000001, 43.1485895000001], [25.2556805, 43.155745999], [25.2519275000001, 43.1591360000001], [25.2570755, 43.1746395000001], [25.2623980000001, 43.1769175000001], [25.251106, 43.1754710000001], [25.2434225000001, 43.1790500000001], [25.2398955, 43.1841460000001], [25.2444435, 43.1919285000001], [25.2439800000001, 43.1954285], [25.238459, 43.196784501], [25.2373595, 43.1969025000001], [25.2113535, 43.2026645], [25.2034370000001, 43.1978020000001], [25.1958680000001, 43.197935], [25.1912755000001, 43.200277], [25.1833520000001, 43.203806], [25.1588780000001, 43.214226], [25.145452, 43.213423499], [25.13849, 43.2207560000001], [25.1530205, 43.221730501], [25.1717005, 43.2230085], [25.1759675000001, 43.2244390000001], [25.173364, 43.228037], [25.1757680000001, 43.2350925000001], [25.1647875, 43.2381495000001], [25.1583900000001, 43.2455430000001], [25.155588, 43.257766501], [25.1436645000001, 43.266506], [25.14043, 43.2668305] ] ] ] },
+    "properties": {
+      "ISO": "BG-VTR32",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "70295",
+      "NAME_2": "Сухиндол",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.8346280000001, 43.088530001], [25.8479015, 43.0891915], [25.8666305, 43.0963075000001], [25.8788065000001, 43.0977925010001], [25.9014930000001, 43.1092545000001], [25.9100780000001, 43.1119165000001], [25.9198045000001, 43.1079025000001], [25.9257295, 43.1072245010001], [25.9261440000001, 43.1127255010001], [25.9305380000001, 43.1136265010001], [25.9492470000001, 43.1115895], [25.9560095000001, 43.1166260000001], [25.9638630000001, 43.1225825010001], [25.9466225, 43.132389], [25.942552, 43.1303340000001], [25.9297980000001, 43.154677], [25.9226395000001, 43.161818], [25.9261910000001, 43.1746565], [25.929408, 43.1763299990001], [25.9168270000001, 43.1784985], [25.9154225, 43.1796560000001], [25.911145, 43.1767155000001], [25.8908005000001, 43.168209], [25.8836240000001, 43.1676350010001], [25.8752585, 43.1702325000001], [25.8761555, 43.1678275], [25.873024, 43.1663740000001], [25.8644320000001, 43.1664105], [25.8638695000001, 43.1594755], [25.8556770000001, 43.160541499], [25.8496500000001, 43.165826], [25.849068, 43.163488], [25.8524745, 43.1611090010001], [25.848934, 43.1573680000001], [25.8265940000001, 43.1593109990001], [25.809517, 43.155087], [25.798958, 43.1460349990001], [25.7931565000001, 43.1370860000001], [25.7914445000001, 43.140382001], [25.776437, 43.1381105], [25.7701490000001, 43.1417850010001], [25.7462145000001, 43.1435555], [25.7457195000001, 43.1471295000001], [25.7498610000001, 43.1488135010001], [25.748498, 43.153175], [25.739496, 43.1460025000001], [25.73217, 43.15155], [25.7282875000001, 43.1483825], [25.7218605000001, 43.1404179990001], [25.7170995000001, 43.1274385], [25.6944055000001, 43.106993], [25.6878605000001, 43.107625], [25.6857385000001, 43.1021305], [25.6962325000001, 43.0944030000001], [25.69838, 43.0895824990001], [25.6993985, 43.0883425000001], [25.709952, 43.0789935000001], [25.713763, 43.078514001], [25.713807, 43.0732515], [25.7084995000001, 43.0726060000001], [25.702659, 43.0689965], [25.7158685000001, 43.0669800000001], [25.7154790000001, 43.059830499], [25.7072345, 43.052673], [25.7100970000001, 43.0500984990001], [25.7308265, 43.049403], [25.7524940000001, 43.0487855000001], [25.7680065000001, 43.0469770010001], [25.7679895000001, 43.0439515], [25.7908495, 43.0422095000001], [25.8078400000001, 43.0413705], [25.8131220000001, 43.0438745000001], [25.803975, 43.0460395010001], [25.8222040000001, 43.0461340000001], [25.825368, 43.0519795000001], [25.8276315, 43.0726685000001], [25.844119, 43.0698560000001], [25.840992, 43.082611], [25.8350085000001, 43.0855265000001], [25.8346280000001, 43.088530001] ] ] },
+    "properties": {
+      "ISO": "BG-VTR20",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "44793",
+      "NAME_2": "Лясковец",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.8492125000001, 43.2405870000001], [25.8488975000001, 43.2374955000001], [25.825594, 43.2429405], [25.8041765, 43.2417415], [25.7992650000001, 43.236841], [25.7891940000001, 43.236339], [25.7805530000001, 43.2434460000001], [25.7745870000001, 43.2612745000001], [25.7711555000001, 43.2754785010001], [25.7679065, 43.2901705], [25.7922795000001, 43.2942255], [25.7918355, 43.3027300000001], [25.8004665, 43.3024115000001], [25.8066595, 43.2997750000001], [25.8019885, 43.2967904990001], [25.8121380000001, 43.294681], [25.8231065, 43.298779], [25.838764, 43.2977819990001], [25.847943, 43.3037100000001], [25.860148, 43.3016575], [25.8576685, 43.3022450010001], [25.8567045, 43.3137520000001], [25.8503305, 43.3201985000001], [25.8426015000001, 43.3203050000001], [25.842063, 43.316576501], [25.8319745000001, 43.3118950000001], [25.8295910000001, 43.3140540000001], [25.830479, 43.32237], [25.7918385, 43.3232515], [25.7891690000001, 43.3246370000001], [25.7627345000001, 43.3356145000001], [25.757598, 43.3366750000001], [25.7506125, 43.3399125], [25.754402, 43.3318140000001], [25.736543, 43.3310635], [25.725472, 43.3266550000001], [25.7116170000001, 43.3186254990001], [25.7110710000001, 43.3168185000001], [25.7200975000001, 43.3135520000001], [25.715672, 43.3080100000001], [25.711378, 43.308592], [25.7061745, 43.3043460000001], [25.7205735000001, 43.30096], [25.7292275, 43.2835925000001], [25.7151035000001, 43.2810845000001], [25.7153475000001, 43.2718125000001], [25.7019020000001, 43.2711295], [25.6855210000001, 43.2717620000001], [25.6822155, 43.2622425000001], [25.6786415, 43.260454], [25.6718365, 43.2632520000001], [25.6567825000001, 43.2547920000001], [25.6551675000001, 43.2492265000001], [25.6433925000001, 43.250573], [25.6327395000001, 43.2489695000001], [25.6212990000001, 43.2463740000001], [25.6242050000001, 43.2178555], [25.626155, 43.2151775], [25.6235125000001, 43.2095675], [25.6110465, 43.2065125], [25.610235, 43.212297], [25.6022845000001, 43.213983], [25.5993595, 43.2026645], [25.6010890000001, 43.200831], [25.591839, 43.1919830000001], [25.6000445, 43.1914130000001], [25.6039145, 43.173613001], [25.6057105, 43.167782], [25.6172950000001, 43.165292999], [25.6182805, 43.1522565000001], [25.623796, 43.1443590000001], [25.6238375, 43.1400825000001], [25.619491, 43.1336635000001], [25.6227960000001, 43.1229880000001], [25.624511, 43.1205145000001], [25.6333100000001, 43.1204665000001], [25.6442065000001, 43.119921], [25.660644, 43.1242115000001], [25.6606540000001, 43.1231580000001], [25.6629525000001, 43.1231535000001], [25.6729940000001, 43.1135185000001], [25.6715505, 43.110133999], [25.6635655000001, 43.1074835000001], [25.6878605000001, 43.107625], [25.6944055000001, 43.106993], [25.7170995000001, 43.1274385], [25.7218605000001, 43.1404179990001], [25.7282875000001, 43.1483825], [25.73217, 43.15155], [25.739496, 43.1460025000001], [25.748498, 43.153175], [25.7498610000001, 43.1488135010001], [25.7457195000001, 43.1471295000001], [25.7462145000001, 43.1435555], [25.7701490000001, 43.1417850010001], [25.776437, 43.1381105], [25.7914445000001, 43.140382001], [25.7931565000001, 43.1370860000001], [25.798958, 43.1460349990001], [25.809517, 43.155087], [25.8265940000001, 43.1593109990001], [25.848934, 43.1573680000001], [25.8524745, 43.1611090010001], [25.849068, 43.163488], [25.8496500000001, 43.165826], [25.8556770000001, 43.160541499], [25.8638695000001, 43.1594755], [25.8644320000001, 43.1664105], [25.873024, 43.1663740000001], [25.8761555, 43.1678275], [25.8752585, 43.1702325000001], [25.8550220000001, 43.1841865000001], [25.8538655, 43.1928105000001], [25.853214, 43.1974950000001], [25.8666315, 43.2065749990001], [25.8789775000001, 43.2060440000001], [25.8895130000001, 43.2102980010001], [25.8831335, 43.215948999], [25.882076, 43.2239215000001], [25.8677085000001, 43.2259230000001], [25.8620760000001, 43.2313735000001], [25.8550240000001, 43.2390110000001], [25.8492125000001, 43.2405870000001] ] ] },
+    "properties": {
+      "ISO": "BG-VTR06",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "16359",
+      "NAME_2": "Горна Оряховица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [26.0239550000001, 42.983575], [26.0507470000001, 42.984539], [26.058483, 42.9792675], [26.0694105000001, 42.9791450000001], [26.0760705000001, 42.9792585000001], [26.0746345000001, 42.9849960000001], [26.0850165, 43.0024815], [26.1154730000001, 43.008475], [26.1249635, 43.0175980000001], [26.1195335, 43.0298750000001], [26.0953805, 43.030875501], [26.0967275, 43.0341010000001], [26.0942285, 43.0420235], [26.0833135, 43.0438815000001], [26.0776955000001, 43.0527245000001], [26.081152, 43.0616715], [26.080658, 43.0625095], [26.0781190000001, 43.0703370000001], [26.076826, 43.0719970000001], [26.0739665, 43.0754225000001], [26.0642975000001, 43.0776175], [26.058387, 43.08779], [26.0578110000001, 43.0886225], [26.0535675, 43.0928515000001], [26.0455675000001, 43.0904795000001], [26.0277525000001, 43.0918335000001], [25.9838225, 43.098642], [25.9781130000001, 43.1040570000001], [25.9805860000001, 43.105961], [25.9739485000001, 43.1146815000001], [25.9738045, 43.114720999], [25.9721055000001, 43.1157095], [25.9560095000001, 43.1166260000001], [25.9492470000001, 43.1115895], [25.9305380000001, 43.1136265010001], [25.9261440000001, 43.1127255010001], [25.9257295, 43.1072245010001], [25.9198045000001, 43.1079025000001], [25.9100780000001, 43.1119165000001], [25.9014930000001, 43.1092545000001], [25.8788065000001, 43.0977925010001], [25.8666305, 43.0963075000001], [25.8479015, 43.0891915], [25.8346280000001, 43.088530001], [25.8350085000001, 43.0855265000001], [25.840992, 43.082611], [25.844119, 43.0698560000001], [25.8276315, 43.0726685000001], [25.825368, 43.0519795000001], [25.8222040000001, 43.0461340000001], [25.8385950000001, 43.0465085000001], [25.837765, 43.0426420000001], [25.838938, 43.0398530000001], [25.8632910000001, 43.036365], [25.8648015000001, 43.0286315000001], [25.8682155000001, 43.0024110000001], [25.8669870000001, 42.98945], [25.8621305, 42.9852445010001], [25.8638110000001, 42.9813820000001], [25.8738455000001, 42.9804565000001], [25.8826085000001, 42.9860640000001], [25.885273, 42.984295], [25.8869095000001, 42.983976999], [25.889195, 42.989582], [25.9004335000001, 42.9921355000001], [25.9064950000001, 42.9958720000001], [25.9196020000001, 42.991026], [25.9251625000001, 42.99111], [25.9478125000001, 42.9922465010001], [25.9479905000001, 42.9960070000001], [25.9602895, 42.997751501], [25.9674365000001, 42.9983700000001], [25.9806305000001, 43.01182], [25.9878645000001, 43.0175300010001], [26.0023135000001, 43.0217660000001], [26.0032915, 43.0200609990001], [26.019845, 43.0120275000001], [26.019277, 43.0032785010001], [26.022639, 42.9840505000001], [26.0239550000001, 42.983575] ] ] },
+    "properties": {
+      "ISO": "BG-VTR14",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "30962",
+      "NAME_2": "Златарица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.6057105, 43.167782], [25.6039145, 43.173613001], [25.6000445, 43.1914130000001], [25.591839, 43.1919830000001], [25.6010890000001, 43.200831], [25.5993595, 43.2026645], [25.6022845000001, 43.213983], [25.610235, 43.212297], [25.6110465, 43.2065125], [25.6235125000001, 43.2095675], [25.626155, 43.2151775], [25.6242050000001, 43.2178555], [25.6212990000001, 43.2463740000001], [25.6188350000001, 43.2487620000001], [25.610128, 43.2674895000001], [25.607401, 43.267487499], [25.5939940000001, 43.266869], [25.5946645000001, 43.262258], [25.5879275, 43.2622205000001], [25.5848245, 43.262186], [25.5620465000001, 43.2606410000001], [25.5614840000001, 43.262871999], [25.5371675000001, 43.2591145000001], [25.538099, 43.2576500000001], [25.5381185, 43.2459125], [25.528967, 43.2430625000001], [25.529227, 43.2339935], [25.515525, 43.2415965010001], [25.5087715, 43.2427605], [25.4865540000001, 43.2368040000001], [25.481657, 43.2376449990001], [25.4773420000001, 43.2448000010001], [25.4715015, 43.2474865], [25.4463235000001, 43.2472195], [25.4369745000001, 43.2375515000001], [25.4377455000001, 43.2349150000001], [25.4500255, 43.233641], [25.4530455, 43.229603001], [25.4540020000001, 43.2131915000001], [25.4531940000001, 43.1949735000001], [25.4533715000001, 43.1835535000001], [25.433676, 43.1793235000001], [25.4404705000001, 43.1793040000001], [25.440169, 43.1665995000001], [25.4466785000001, 43.1665255], [25.4498015, 43.1601205000001], [25.4494615, 43.1508635000001], [25.4425200000001, 43.1451549990001], [25.4493985, 43.1365995], [25.4635845, 43.1306765], [25.474589, 43.1287980000001], [25.4726945, 43.1250265000001], [25.463784, 43.1255465], [25.4628650000001, 43.125597], [25.4544285000001, 43.1335560000001], [25.4406805, 43.1359675], [25.4370270000001, 43.133477499], [25.4233355000001, 43.1309620000001], [25.405084, 43.1211685000001], [25.3879390000001, 43.118974], [25.3862645, 43.121390499], [25.3907790000001, 43.1230255], [25.3949055000001, 43.1359375000001], [25.3947005000001, 43.1430305000001], [25.3896085000001, 43.1434990000001], [25.378343, 43.1447675000001], [25.3762295000001, 43.142058499], [25.3634585, 43.1411605000001], [25.3620750000001, 43.144193499], [25.3547775000001, 43.1465195000001], [25.3430040000001, 43.1408930000001], [25.3210665, 43.1306365], [25.320256, 43.1232010000001], [25.3142325000001, 43.123409], [25.305749, 43.1236620000001], [25.300917, 43.1192770000001], [25.3071685, 43.1185545000001], [25.3054075000001, 43.112356], [25.3012705, 43.1102010000001], [25.299469, 43.1067845000001], [25.3017170000001, 43.1023550000001], [25.3110990000001, 43.1002725000001], [25.3121065, 43.0968765000001], [25.3103855000001, 43.0837450000001], [25.3080545, 43.0719855], [25.3035605000001, 43.0705115000001], [25.3034910000001, 43.0600105], [25.3045565000001, 43.0568645000001], [25.326553, 43.056883], [25.3477025, 43.052694], [25.3695880000001, 43.051548], [25.3688655, 43.055306], [25.373998, 43.0552035000001], [25.3854220000001, 43.0546135010001], [25.3904255, 43.04515], [25.4066720000001, 43.0417425000001], [25.4358935000001, 43.044563], [25.4436490000001, 43.0485805000001], [25.4498315000001, 43.0531179990001], [25.4720070000001, 43.0567750000001], [25.4708795, 43.0551760000001], [25.4791565, 43.0409835], [25.4876665, 43.0416960000001], [25.5047280000001, 43.037425], [25.510029, 43.0375835], [25.5383860000001, 43.039814], [25.5373480000001, 43.041524], [25.54346, 43.0410390000001], [25.5465055300001, 43.0378261450001], [25.550086714, 43.0340484170001], [25.553004365, 43.0309708080001], [25.5533425, 43.0309835], [25.5532630000001, 43.0306980010001], [25.5515675, 43.0299640000001], [25.5541850000001, 43.0251870000001], [25.5948100000001, 43.0191465], [25.595224, 43.0141385000001], [25.588731, 43.0092545000001], [25.5822415000001, 43.0032105010001], [25.5781905000001, 42.9917605000001], [25.5682715, 42.9881360000001], [25.5644905, 42.9759700000001], [25.5527200000001, 42.9715420000001], [25.5560395000001, 42.9583635000001], [25.5562705, 42.9569475000001], [25.5544395000001, 42.9486005000001], [25.5593145, 42.9397005000001], [25.5535780000001, 42.9331625], [25.558708, 42.9272030000001], [25.564514, 42.9267275010001], [25.5627245000001, 42.9110190010001], [25.5818385000001, 42.9130895000001], [25.595427, 42.909252999], [25.5998065000001, 42.9122784990001], [25.609883, 42.9154230010001], [25.6159730000001, 42.9099085], [25.6175755, 42.9022705], [25.6204690000001, 42.901165], [25.60607, 42.8987710000001], [25.6030315, 42.8917550000001], [25.592722, 42.8837760000001], [25.6076625000001, 42.8797645000001], [25.6055995, 42.8747490010001], [25.607044, 42.8703670000001], [25.6173345, 42.8528600000001], [25.6104960000001, 42.844389], [25.6124795000001, 42.8387255010001], [25.6134105, 42.8373275010001], [25.60911, 42.8334865], [25.598554, 42.8291590000001], [25.592207, 42.820832], [25.6095570000001, 42.8019730010001], [25.6096370000001, 42.792824001], [25.6149615000001, 42.7868085000001], [25.6328785000001, 42.7822390000001], [25.6393855000001, 42.7891065000001], [25.655245, 42.7917565000001], [25.6595350000001, 42.797493499], [25.6765830000001, 42.7971020000001], [25.6810465, 42.8079885000001], [25.6879735000001, 42.8062610000001], [25.7007385000001, 42.8084735000001], [25.7137955000001, 42.8038480000001], [25.7154840000001, 42.8088109990001], [25.7277975000001, 42.8114835000001], [25.7318835, 42.815099], [25.7334295000001, 42.8215955000001], [25.7296785, 42.8310185], [25.7400430000001, 42.842051], [25.7524355000001, 42.8455015000001], [25.7576120000001, 42.8514345], [25.7522675000001, 42.8555040000001], [25.7512255, 42.8615745000001], [25.728895, 42.8623365], [25.724134, 42.8667025], [25.7210205000001, 42.877147001], [25.7121015000001, 42.8879410000001], [25.7118305000001, 42.8953770000001], [25.7139735000001, 42.9003895010001], [25.6999275000001, 42.9037070000001], [25.7048415, 42.9118945000001], [25.6957820000001, 42.9118050000001], [25.6928980000001, 42.9133615000001], [25.6858095000001, 42.9258150000001], [25.7154415000001, 42.9347595], [25.7229925, 42.931135], [25.7265605000001, 42.9378295000001], [25.7265990000001, 42.9439125000001], [25.7189415, 42.947303], [25.7164285000001, 42.9522955], [25.7230825, 42.958374], [25.7377845, 42.9681655], [25.7422760000001, 42.9670350000001], [25.7439125000001, 42.9604659990001], [25.7463195, 42.9590030000001], [25.756422, 42.963425999], [25.7716105000001, 42.9709155000001], [25.7817430000001, 42.967201001], [25.7896825, 42.9699865000001], [25.804291, 42.9735420000001], [25.81613, 42.9704030010001], [25.8194585000001, 42.9669525], [25.819462, 42.9674880000001], [25.8251750000001, 42.9680465000001], [25.8355865, 42.9746010000001], [25.8469630000001, 42.9727755000001], [25.8588855, 42.9794370000001], [25.8621305, 42.9852445010001], [25.8669870000001, 42.98945], [25.8682155000001, 43.0024110000001], [25.8648015000001, 43.0286315000001], [25.8632910000001, 43.036365], [25.838938, 43.0398530000001], [25.837765, 43.0426420000001], [25.8385950000001, 43.0465085000001], [25.8222040000001, 43.0461340000001], [25.803975, 43.0460395010001], [25.8131220000001, 43.0438745000001], [25.8078400000001, 43.0413705], [25.7908495, 43.0422095000001], [25.7679895000001, 43.0439515], [25.7680065000001, 43.0469770010001], [25.7524940000001, 43.0487855000001], [25.7308265, 43.049403], [25.7100970000001, 43.0500984990001], [25.7072345, 43.052673], [25.7154790000001, 43.059830499], [25.7158685000001, 43.0669800000001], [25.702659, 43.0689965], [25.7084995000001, 43.0726060000001], [25.713807, 43.0732515], [25.713763, 43.078514001], [25.709952, 43.0789935000001], [25.6993985, 43.0883425000001], [25.69838, 43.0895824990001], [25.6962325000001, 43.0944030000001], [25.6857385000001, 43.1021305], [25.6878605000001, 43.107625], [25.6635655000001, 43.1074835000001], [25.6715505, 43.110133999], [25.6729940000001, 43.1135185000001], [25.6629525000001, 43.1231535000001], [25.6606540000001, 43.1231580000001], [25.660644, 43.1242115000001], [25.6442065000001, 43.119921], [25.6333100000001, 43.1204665000001], [25.624511, 43.1205145000001], [25.6227960000001, 43.1229880000001], [25.619491, 43.1336635000001], [25.6238375, 43.1400825000001], [25.623796, 43.1443590000001], [25.6182805, 43.1522565000001], [25.6172950000001, 43.165292999], [25.6057105, 43.167782] ] ] },
+    "properties": {
+      "ISO": "BG-VTR04",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "10447",
+      "NAME_2": "Велико Търново",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.6482255, 43.395161], [25.6486355000001, 43.3985510000001], [25.6249895, 43.398332], [25.621338, 43.400696501], [25.621065, 43.4044525], [25.6165725000001, 43.4078964990001], [25.6062475000001, 43.406686], [25.6031455, 43.4202760000001], [25.5881630000001, 43.4240585000001], [25.5848945000001, 43.4284795], [25.5737970000001, 43.4331365], [25.555525, 43.4363065000001], [25.5539555, 43.4414775000001], [25.5412535, 43.4429050000001], [25.5410585000001, 43.4456220010001], [25.5407895000001, 43.447743501], [25.5652390000001, 43.457462499], [25.561252, 43.4745205], [25.5636655000001, 43.4973765], [25.570728, 43.5045600010001], [25.5500555, 43.5154605000001], [25.5477050000001, 43.5168800010001], [25.5455265000001, 43.5104455000001], [25.534073, 43.510705], [25.532637, 43.5041854990001], [25.5191290000001, 43.5080815000001], [25.513424, 43.499557], [25.4905680000001, 43.4924320000001], [25.4922470000001, 43.481672001], [25.4681035, 43.4800680000001], [25.4644960000001, 43.477093], [25.475759, 43.454121], [25.451402, 43.4508315000001], [25.4347585, 43.4400200000001], [25.4170760000001, 43.4406320000001], [25.420377, 43.4342715000001], [25.418864, 43.425237], [25.415472, 43.4255325], [25.4145765000001, 43.4206305000001], [25.4184950000001, 43.4199465], [25.414638, 43.4136129990001], [25.4159325000001, 43.4102990000001], [25.4244895000001, 43.4089540000001], [25.4285015, 43.4053940000001], [25.4351345000001, 43.3992899990001], [25.4348925, 43.3838805], [25.4279340000001, 43.3803545010001], [25.431207, 43.3682075], [25.4400150000001, 43.3457770010001], [25.4538055, 43.3480845], [25.4689075000001, 43.338239], [25.4760435000001, 43.3284655], [25.4775325000001, 43.3140065000001], [25.4814605, 43.3025460000001], [25.4887640000001, 43.2957315000001], [25.4985925, 43.2879780000001], [25.4964610000001, 43.2740745], [25.5006300000001, 43.272972], [25.5170535, 43.26836], [25.5229265, 43.2588775], [25.5348460000001, 43.262619], [25.5371675000001, 43.2591145000001], [25.5614840000001, 43.262871999], [25.5620465000001, 43.2606410000001], [25.5848245, 43.262186], [25.5879275, 43.2622205000001], [25.5946645000001, 43.262258], [25.5939940000001, 43.266869], [25.607401, 43.267487499], [25.610128, 43.2674895000001], [25.6188350000001, 43.2487620000001], [25.6212990000001, 43.2463740000001], [25.6327395000001, 43.2489695000001], [25.6433925000001, 43.250573], [25.6551675000001, 43.2492265000001], [25.6567825000001, 43.2547920000001], [25.6718365, 43.2632520000001], [25.6786415, 43.260454], [25.6822155, 43.2622425000001], [25.6855210000001, 43.2717620000001], [25.7019020000001, 43.2711295], [25.7153475000001, 43.2718125000001], [25.7151035000001, 43.2810845000001], [25.7292275, 43.2835925000001], [25.7205735000001, 43.30096], [25.7061745, 43.3043460000001], [25.711378, 43.308592], [25.715672, 43.3080100000001], [25.7200975000001, 43.3135520000001], [25.7110710000001, 43.3168185000001], [25.7116170000001, 43.3186254990001], [25.725472, 43.3266550000001], [25.736543, 43.3310635], [25.754402, 43.3318140000001], [25.7506125, 43.3399125], [25.757598, 43.3366750000001], [25.7627345000001, 43.3356145000001], [25.763179, 43.3383065000001], [25.7681425000001, 43.340624999], [25.78058, 43.340223], [25.7803765, 43.3802900000001], [25.7711175000001, 43.3827660000001], [25.7574725000001, 43.3859005], [25.7500095, 43.384257], [25.7424145000001, 43.3831200000001], [25.7252980000001, 43.3900620000001], [25.7170745, 43.4093700000001], [25.71261, 43.412363], [25.7057095000001, 43.414999999], [25.705628, 43.417876], [25.6888165, 43.4173020000001], [25.676723, 43.4183330000001], [25.6794125000001, 43.4072125000001], [25.670775, 43.4000575000001], [25.6700355, 43.3946414990001], [25.6482255, 43.395161] ] ] },
+    "properties": {
+      "ISO": "BG-VTR26",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10447",
+      "NAME_1": "VTR",
+      "TYPE_1": "Област",
+      "ID_2": "57354",
+      "NAME_2": "Полски Тръмбеш",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.3291905, 42.118139], [25.315616, 42.1483270000001], [25.3032200000001, 42.1461990000001], [25.2941975, 42.1471145], [25.277091, 42.156396], [25.2741385, 42.1599225000001], [25.2725540000001, 42.1618125000001], [25.2598485, 42.1844055010001], [25.2465965000001, 42.1815065000001], [25.250477, 42.1775444990001], [25.226527, 42.1694765], [25.216843, 42.1630445000001], [25.2094070000001, 42.1638475], [25.1972875000001, 42.1659135], [25.196381, 42.174176], [25.1750965, 42.1695245000001], [25.1754740000001, 42.1801129990001], [25.1666275000001, 42.180211], [25.170012, 42.1696470000001], [25.160261, 42.1703325], [25.1589765000001, 42.1618015000001], [25.1619680000001, 42.1618720000001], [25.1671430000001, 42.1521789990001], [25.159639, 42.1516940010001], [25.1560325, 42.148331], [25.1583845000001, 42.141749501], [25.166077, 42.1423365000001], [25.1596650000001, 42.138537], [25.154947, 42.1408249990001], [25.1525560000001, 42.1469870010001], [25.1567185000001, 42.1529124990001], [25.150987, 42.1572735], [25.1458010000001, 42.1585230000001], [25.1325580000001, 42.1534675], [25.1281855, 42.155017], [25.1057650000001, 42.1094705], [25.0950750000001, 42.108662999], [25.0924170000001, 42.0956415000001], [25.0754345, 42.0939215000001], [25.0746810000001, 42.091913999], [25.0807935, 42.0825060000001], [25.0872835000001, 42.082925], [25.0933470000001, 42.0623165000001], [25.0684245, 42.0542265], [25.056606, 42.0396895000001], [25.0559480000001, 42.0352695], [25.0762245, 42.0171355], [25.07969, 42.0186390000001], [25.0854905, 42.015048], [25.0915910000001, 42.0069405], [25.09504, 41.9976315000001], [25.0947395000001, 41.9908130000001], [25.087322, 41.9817330010001], [25.0990005, 41.978550001], [25.1124610000001, 41.980618501], [25.11803, 41.9783320000001], [25.12228, 41.9650005], [25.12321, 41.9624535], [25.118633, 41.9555385], [25.1140345000001, 41.9527610000001], [25.1110125000001, 41.9567325], [25.1053065, 41.9538555], [25.1006560000001, 41.9446465], [25.1004580000001, 41.9421395000001], [25.104479, 41.9332405000001], [25.1039660000001, 41.930548], [25.1085675000001, 41.9102515000001], [25.109965, 41.8970535], [25.1050890000001, 41.8763485000001], [25.1104605, 41.8743160000001], [25.1297275000001, 41.8646615000001], [25.1402130000001, 41.8610535], [25.1420405000001, 41.870531], [25.1473635, 41.8705585000001], [25.1597790000001, 41.872438], [25.1625920000001, 41.8722085000001], [25.172175, 41.8759370000001], [25.182512, 41.886125], [25.1823715, 41.8941970000001], [25.1868225000001, 41.8985950000001], [25.1993355000001, 41.9017460000001], [25.2094345, 41.901534499], [25.2181670000001, 41.895591], [25.2509245, 41.896689501], [25.263001, 41.9058880000001], [25.264935, 41.913618], [25.26863, 41.923927], [25.2769655000001, 41.9365985000001], [25.2838405000001, 41.9379265000001], [25.2865335000001, 41.9429920000001], [25.285243, 41.9442295000001], [25.3014815, 41.9480955000001], [25.3083125000001, 41.957158], [25.3056185, 41.9626030000001], [25.317624, 41.9679805000001], [25.309989, 41.9750780000001], [25.3172575, 41.979251], [25.311203, 41.9827695000001], [25.3126285000001, 41.9869735], [25.3090510000001, 41.99395], [25.3083050000001, 42.0039770000001], [25.3119465, 42.011109499], [25.2951735, 42.044297], [25.3011010000001, 42.0488385000001], [25.3039035, 42.0548465000001], [25.306631, 42.0549139990001], [25.3082460000001, 42.0612330010001], [25.315389, 42.05987], [25.3207850000001, 42.0719050000001], [25.3399640000001, 42.0780560000001], [25.3469575, 42.0935665000001], [25.3480640000001, 42.1143774990001], [25.3341130000001, 42.1130140000001], [25.3291905, 42.118139] ] ] },
+    "properties": {
+      "ISO": "BG-PDV23",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "59080",
+      "NAME_2": "Първомай",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [24.4996275, 41.932216], [24.4906985000001, 41.940095], [24.4882275000001, 41.9542205000001], [24.483255, 41.961262], [24.47743, 41.9679515], [24.4681385000001, 41.984993], [24.4705740000001, 41.9899095000001], [24.46842, 41.9915235], [24.455427, 41.9829735000001], [24.4562135, 41.9712880000001], [24.4574025000001, 41.967991], [24.4543055, 41.965247999], [24.4600205, 41.955769999], [24.4538615000001, 41.943786], [24.439807, 41.9382185000001], [24.4441790000001, 41.9330340000001], [24.4485020000001, 41.9313240000001], [24.4526795, 41.9214210000001], [24.4645125000001, 41.9237185000001], [24.472356, 41.9200415], [24.4920545000001, 41.921031999], [24.5012820000001, 41.9175949990001], [24.5105285000001, 41.918165], [24.5212075000001, 41.9303965], [24.4996275, 41.932216] ] ], [ [ [24.4956880010001, 42.0763615000001], [24.493494001, 42.0719280000001], [24.4856685, 42.0723820000001], [24.4667020000001, 42.0858430000001], [24.4663525, 42.0904685], [24.4440515000001, 42.082166], [24.4419100000001, 42.076691999], [24.4416215000001, 42.0711835000001], [24.4444925, 42.067276], [24.4397835, 42.0500375], [24.4439410000001, 42.043281499], [24.4486245000001, 42.045016], [24.4520105, 42.0415475], [24.45773, 42.0249460000001], [24.457257, 42.0107879990001], [24.460676, 42.005028], [24.4735475000001, 41.9950275], [24.4786205, 41.997530001], [24.4796235000001, 42.0017045010001], [24.4773565, 42.0051030000001], [24.4796850000001, 42.009305999], [24.4879855, 42.014459], [24.498609, 42.0143985], [24.4950850000001, 42.0190675000001], [24.494425, 42.0264829990001], [24.4992070000001, 42.0374620000001], [24.4934035000001, 42.0558510010001], [24.501047, 42.064267], [24.4944850000001, 42.0685635], [24.4994505, 42.0729045], [24.4999710000001, 42.076495999], [24.4956880010001, 42.0763615000001] ] ] ] },
+    "properties": {
+      "ISO": "BG-PDV39",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "39921",
+      "NAME_2": "Кричим",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.921279, 41.8407315000001], [24.9193585, 41.8461365000001], [24.923208, 41.8564105], [24.9267125000001, 41.859455], [24.9082935000001, 41.868253], [24.8984845000001, 41.8694695], [24.8873655, 41.8733635], [24.8641915000001, 41.8733715000001], [24.8481835000001, 41.880003], [24.85526, 41.8934465], [24.8488665, 41.9048230000001], [24.8442595000001, 41.907875], [24.8417095, 41.9081245], [24.8341005, 41.9233455], [24.8314800000001, 41.9232150010001], [24.8269110000001, 41.9196475000001], [24.811267, 41.916302], [24.7931945, 41.9094850000001], [24.7904160000001, 41.9044954990001], [24.7741320000001, 41.8962425], [24.7610935000001, 41.8927830010001], [24.7644090000001, 41.8832695], [24.770389, 41.879288], [24.770451, 41.8765250000001], [24.76079, 41.8693745], [24.7733450000001, 41.847185], [24.783461, 41.8404004990001], [24.7712555000001, 41.8281275000001], [24.7568000000001, 41.8094780000001], [24.740687, 41.8028080010001], [24.7361275000001, 41.7998500000001], [24.7411255000001, 41.7965619990001], [24.7490085000001, 41.781352], [24.7643295, 41.7791795], [24.7695210000001, 41.765681], [24.7834085000001, 41.7677330000001], [24.807559, 41.7635695000001], [24.8043700000001, 41.756109], [24.796032, 41.748878], [24.7978445000001, 41.745459001], [24.7902770000001, 41.7321195010001], [24.7878700000001, 41.7315865], [24.7885405000001, 41.7311855], [24.7875365, 41.7257980000001], [24.7897885, 41.7187490000001], [24.7995075000001, 41.718841001], [24.8004985000001, 41.7113265], [24.8194205, 41.7049235000001], [24.8225315, 41.7048290000001], [24.8317995, 41.7018525], [24.82822, 41.692643], [24.8361915, 41.6867235], [24.8430740000001, 41.6830110000001], [24.8485655000001, 41.6836730000001], [24.852541, 41.689759], [24.8534405, 41.695526], [24.8516100000001, 41.6977755], [24.8539555, 41.7035245000001], [24.8715875, 41.7074105], [24.8857195, 41.7135480000001], [24.8999275, 41.7078960000001], [24.907384, 41.7124945], [24.9136580000001, 41.7210345], [24.914751, 41.7249179990001], [24.911793, 41.7318440000001], [24.9122515, 41.7398590000001], [24.9201435, 41.741245], [24.9345925000001, 41.7429245000001], [24.9601605, 41.7327315000001], [24.9644055000001, 41.7340270010001], [24.96536, 41.740979001], [24.96838, 41.7440765000001], [24.9576745000001, 41.7433960000001], [24.9535035000001, 41.7662340000001], [24.9546745000001, 41.774725], [24.9623505000001, 41.7851830000001], [24.9647160000001, 41.8015215], [24.9641455, 41.8055689990001], [24.9472210000001, 41.8110095000001], [24.929917, 41.8318410000001], [24.921279, 41.8407315000001] ] ] },
+    "properties": {
+      "ISO": "BG-PDV15",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "44478",
+      "NAME_2": "Лъки",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.7739215, 42.1136910000001], [24.7686615000001, 42.1114820000001], [24.768196, 42.1140755010001], [24.7675200000001, 42.1093119990001], [24.7622575, 42.1045985000001], [24.7586030000001, 42.103108499], [24.755434, 42.102898], [24.7545905000001, 42.1078210000001], [24.75084, 42.1113050000001], [24.7438255000001, 42.1117795010001], [24.7432475, 42.1094765], [24.7314700000001, 42.0974600000001], [24.7277045000001, 42.097624001], [24.7245865, 42.0976475], [24.6973175000001, 42.0900025], [24.6851485, 42.0934725000001], [24.666836, 42.098617501], [24.6636545000001, 42.1060185000001], [24.6683830000001, 42.110329], [24.665087, 42.1185745000001], [24.6649175000001, 42.1257169990001], [24.666502, 42.133183499], [24.6577335000001, 42.1339055], [24.6583825000001, 42.1368815000001], [24.6591075000001, 42.1397465000001], [24.674944, 42.1390785], [24.6784530000001, 42.1435890000001], [24.678326, 42.1510069990001], [24.6554615000001, 42.1442245000001], [24.6490865000001, 42.1517395000001], [24.643539, 42.1527830000001], [24.63223, 42.1512080000001], [24.613613, 42.1482600000001], [24.6142985000001, 42.156438], [24.6018365, 42.1569615000001], [24.6018175, 42.193631999], [24.5998575, 42.2160240000001], [24.591015, 42.2266405], [24.581869, 42.2298565], [24.57924, 42.2321295], [24.5611195000001, 42.2313980000001], [24.5615530000001, 42.2292370000001], [24.557538, 42.2268915000001], [24.4966505, 42.2271675000001], [24.491542, 42.1897595], [24.49915, 42.1807085], [24.5179425000001, 42.1809410000001], [24.5186205000001, 42.163778], [24.535765, 42.1613649990001], [24.537811, 42.1526555], [24.5358375000001, 42.1507805000001], [24.5458425, 42.1540885010001], [24.557826, 42.150962501], [24.5696620000001, 42.1464500000001], [24.5853825, 42.1456700000001], [24.5848260000001, 42.1341355010001], [24.5831575, 42.1341905], [24.582614, 42.1269610000001], [24.5842315, 42.1220690000001], [24.5732600000001, 42.1181000010001], [24.579122, 42.1136220000001], [24.5672245000001, 42.1111865], [24.5709375000001, 42.1044115], [24.5680195, 42.1020535000001], [24.5625215000001, 42.1033100000001], [24.5700475, 42.0848595000001], [24.571017, 42.0805980000001], [24.5690795, 42.0761175000001], [24.5801730000001, 42.0619740000001], [24.5906825000001, 42.0561075000001], [24.581441, 42.0483300000001], [24.5800965, 42.0422], [24.583382, 42.0292245000001], [24.5815250000001, 42.0190900000001], [24.583577, 42.017278], [24.57651, 42.0098075000001], [24.563024, 42.003587], [24.5627125, 42.0116360000001], [24.5482280000001, 42.0090940000001], [24.5461855, 42.0110765000001], [24.5440090000001, 42.023219], [24.5369645000001, 42.027917501], [24.5386515000001, 42.044475], [24.5350195, 42.0498904990001], [24.5128755000001, 42.0591745], [24.5113165000001, 42.0626980000001], [24.5134210000001, 42.0647520000001], [24.5137005, 42.0716385000001], [24.5119735000001, 42.075703], [24.5073025, 42.0759390000001], [24.50573, 42.0697225010001], [24.5073595000001, 42.0664935], [24.501047, 42.064267], [24.4934035000001, 42.0558510010001], [24.4992070000001, 42.0374620000001], [24.494425, 42.0264829990001], [24.4950850000001, 42.0190675000001], [24.498609, 42.0143985], [24.4879855, 42.014459], [24.4796850000001, 42.009305999], [24.4773565, 42.0051030000001], [24.4796235000001, 42.0017045010001], [24.4786205, 41.997530001], [24.4735475000001, 41.9950275], [24.4705740000001, 41.9899095000001], [24.4681385000001, 41.984993], [24.47743, 41.9679515], [24.483255, 41.961262], [24.4882275000001, 41.9542205000001], [24.4906985000001, 41.940095], [24.4996275, 41.932216], [24.5212075000001, 41.9303965], [24.5105285000001, 41.918165], [24.5202045, 41.9080000000001], [24.518784, 41.8939245], [24.533397, 41.885049], [24.5413375000001, 41.8825175000001], [24.549022, 41.871762], [24.5575815, 41.8781135], [24.5685485000001, 41.8769320000001], [24.57948, 41.8833195], [24.5913670000001, 41.8846855], [24.6032205000001, 41.8925400000001], [24.6181060000001, 41.8935339990001], [24.6282735, 41.9024360000001], [24.6286465000001, 41.9037085000001], [24.643924, 41.9028299990001], [24.6565565000001, 41.9073260000001], [24.6624485, 41.907203], [24.6596395, 41.9153860000001], [24.6633975, 41.9154625], [24.671816, 41.9242030010001], [24.6703595000001, 41.929874], [24.681494, 41.943631], [24.679581, 41.9515895000001], [24.674109, 41.959976], [24.6769805000001, 41.9683375000001], [24.679428, 41.9880610000001], [24.6848855000001, 41.999820001], [24.678304, 42.0096830000001], [24.6785155000001, 42.012894499], [24.6802135, 42.0164585000001], [24.6904995, 42.0198585000001], [24.69915, 42.0316275000001], [24.6934640000001, 42.0394700000001], [24.6935730000001, 42.0424485], [24.696219, 42.0430284990001], [24.7046700000001, 42.0432385], [24.706596, 42.0375670000001], [24.71896, 42.041885], [24.717862, 42.038309499], [24.7387380000001, 42.0416010000001], [24.748475, 42.0424675], [24.7574345, 42.0385505], [24.7585280000001, 42.0359595], [24.764036, 42.0349235], [24.7631085, 42.0404304990001], [24.771235, 42.0462305], [24.7830750000001, 42.060482], [24.7850035000001, 42.0681475000001], [24.7919680000001, 42.0775170000001], [24.8014025000001, 42.080004], [24.8234555, 42.058788], [24.83581, 42.0725890000001], [24.843351, 42.0584160000001], [24.8526450000001, 42.0607250000001], [24.8564495000001, 42.0585085000001], [24.8641445000001, 42.0628310000001], [24.864722, 42.0692805], [24.8621910000001, 42.0731240000001], [24.8596375000001, 42.076089], [24.8544135000001, 42.0759065], [24.8528225000001, 42.0789245], [24.8540245, 42.081104501], [24.8518175, 42.0889295000001], [24.8536790000001, 42.095579], [24.8566700000001, 42.099233], [24.8661335, 42.1018185], [24.867958, 42.1368445000001], [24.872736, 42.1445025], [24.8958900000001, 42.1559845], [24.89372, 42.1560254990001], [24.8935225000001, 42.1566345000001], [24.862359, 42.1508885000001], [24.8240415000001, 42.1508115], [24.8237790000001, 42.1429265], [24.7990780000001, 42.1277625000001], [24.798908, 42.125098], [24.792699, 42.1124740000001], [24.7814825, 42.1074305010001], [24.7765880000001, 42.108574], [24.7739215, 42.1136910000001] ] ] },
+    "properties": {
+      "ISO": "BG-PDV26",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "56784",
+      "NAME_2": "Родопи",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.7005185, 42.6630135010001], [24.7047225000001, 42.6747995000001], [24.6994175, 42.680439], [24.705524, 42.6942049990001], [24.7175930000001, 42.711558], [24.720421, 42.714634], [24.7094555000001, 42.7177465], [24.699683, 42.7160270000001], [24.6873035, 42.7215795000001], [24.6861905000001, 42.7216035000001], [24.67405, 42.7256795000001], [24.671634, 42.7328160000001], [24.664292, 42.734066999], [24.6623635, 42.7446715], [24.647362, 42.7520720000001], [24.6409375000001, 42.7687250010001], [24.6297035000001, 42.7725045], [24.6223665000001, 42.7783820000001], [24.612891, 42.7772965], [24.6060245, 42.780430499], [24.580811, 42.7883885000001], [24.56102, 42.7921929990001], [24.5578505, 42.788658], [24.5467525, 42.7874350000001], [24.5295600000001, 42.7870339990001], [24.5115020000001, 42.7930700000001], [24.4946835000001, 42.7937020000001], [24.4939935, 42.7934215000001], [24.4939035, 42.7933420000001], [24.4809935000001, 42.7810345], [24.4823485000001, 42.7716590000001], [24.4855055, 42.767392], [24.4772035, 42.7581465000001], [24.4635695000001, 42.7499250000001], [24.44359, 42.749134], [24.4251655, 42.7543265], [24.4187585, 42.7510980010001], [24.385927, 42.7499535000001], [24.3864085000001, 42.7302025000001], [24.3788405, 42.7191335000001], [24.3704685000001, 42.7115125], [24.370007, 42.695946], [24.3629740000001, 42.6943660000001], [24.3673700000001, 42.6883485000001], [24.3644775000001, 42.6812174990001], [24.3570040000001, 42.6773085], [24.383339, 42.6635460000001], [24.3942750000001, 42.6506755], [24.402053, 42.6455980000001], [24.4266165, 42.6438025], [24.45448, 42.624853], [24.4583065, 42.613772], [24.4656355000001, 42.6070005], [24.4828585000001, 42.5998075000001], [24.4894845000001, 42.6010515], [24.493973, 42.5995380000001], [24.505146, 42.5892055], [24.5362435000001, 42.581824], [24.5372055, 42.5767069990001], [24.5579315000001, 42.570546], [24.5809635000001, 42.5726375], [24.5829905000001, 42.5719285000001], [24.5985250000001, 42.5648350000001], [24.61627, 42.5653995000001], [24.632015, 42.5620475000001], [24.6352365000001, 42.5577870000001], [24.6594635000001, 42.5574295000001], [24.6767385000001, 42.553139], [24.684922, 42.5585725], [24.6975870000001, 42.5590100000001], [24.700076, 42.5568970000001], [24.700609, 42.553317], [24.7068145000001, 42.5520000010001], [24.7191145, 42.5558815000001], [24.733976, 42.5455035000001], [24.7658695000001, 42.5391890000001], [24.7724295, 42.541235], [24.7873225000001, 42.5390830000001], [24.8055915, 42.5569995000001], [24.8080000000001, 42.5595985], [24.8091485, 42.558184], [24.8181125, 42.5480355], [24.8217970000001, 42.5392900000001], [24.839778, 42.5220380000001], [24.845582, 42.5207290000001], [24.8484960000001, 42.51842], [24.8407635, 42.5032850010001], [24.8470245, 42.5061765], [24.8494260000001, 42.5060325000001], [24.8569305, 42.5035615], [24.869733, 42.4923635000001], [24.8840230000001, 42.4941909990001], [24.8902120000001, 42.4901400000001], [24.9038245, 42.4933075000001], [24.929967, 42.4895955000001], [24.9324065000001, 42.486294], [24.9357360000001, 42.4846295], [24.968799, 42.4762014990001], [24.9781840000001, 42.4755030000001], [24.984291, 42.474584], [24.9892605000001, 42.4768330000001], [24.9847330000001, 42.482584], [24.9851890000001, 42.4921195000001], [24.9864785, 42.5033815], [24.993931, 42.5094325000001], [24.9824140000001, 42.5175835000001], [24.9773705000001, 42.5203490000001], [24.9792175000001, 42.5232275000001], [24.9726460000001, 42.5380645000001], [24.9753555, 42.5449245], [24.9802085000001, 42.547896999], [24.9831045, 42.545692], [24.9949980000001, 42.5415835000001], [25.016913, 42.541415], [25.0224250000001, 42.5455405010001], [25.0188405000001, 42.5643985], [25.0161440000001, 42.5730285000001], [25.0140445000001, 42.5782285000001], [25.0005705, 42.58831], [25.0043495, 42.607899], [25.0175765000001, 42.621676999], [25.019096, 42.630614], [25.0169720000001, 42.6352555], [25.0185490000001, 42.649637], [25.0158865000001, 42.668998], [25.0152495, 42.6789860000001], [25.0185740000001, 42.6908320000001], [25.0186370000001, 42.7046050010001], [25.005437, 42.73533], [25.0071955, 42.7376190000001], [25.0044665, 42.7398850000001], [24.9628000000001, 42.7316230010001], [24.9464850000001, 42.723916], [24.9374020000001, 42.7301825000001], [24.9238585, 42.729432999], [24.915037, 42.7163325000001], [24.892253, 42.7220750000001], [24.88115, 42.7248325000001], [24.8670735000001, 42.7218765000001], [24.8490195000001, 42.7191095000001], [24.838445, 42.7267450000001], [24.8243420000001, 42.7264505000001], [24.8126110000001, 42.721441], [24.7902925000001, 42.7246685000001], [24.7811350000001, 42.7205200000001], [24.7807025000001, 42.7166265000001], [24.7801010000001, 42.714953], [24.7819425000001, 42.7042095000001], [24.7886720000001, 42.6993825010001], [24.7958135000001, 42.6765980000001], [24.7956745000001, 42.6740560000001], [24.795222, 42.672602], [24.7844230000001, 42.6522039990001], [24.7720975, 42.641676499], [24.7843175, 42.6314360000001], [24.7612940000001, 42.6292460000001], [24.7497220000001, 42.6244715], [24.7316005000001, 42.6322770000001], [24.7269180000001, 42.6464030000001], [24.7089700000001, 42.6476485000001], [24.7087740000001, 42.650409], [24.7005185, 42.6630135010001] ] ] },
+    "properties": {
+      "ISO": "BG-PDV13",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "36498",
+      "NAME_2": "Карлово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.6756095000001, 42.3564405000001], [24.6617525, 42.3572350000001], [24.64439, 42.3797935000001], [24.6326465000001, 42.3896645], [24.6303935, 42.3985870000001], [24.635338, 42.400918501], [24.6289665000001, 42.4006200000001], [24.6209450000001, 42.4001655000001], [24.6199330000001, 42.3976095], [24.622736, 42.391714999], [24.6276065000001, 42.3919285000001], [24.6275795, 42.3872180000001], [24.613974, 42.3903215], [24.613185, 42.3934750000001], [24.6067085, 42.3977525000001], [24.6000260000001, 42.3975905], [24.5940285, 42.38329], [24.5699125, 42.3941955000001], [24.5591295, 42.396303], [24.5598945, 42.3941354990001], [24.5536945000001, 42.394886], [24.5448265000001, 42.3891535000001], [24.5478015000001, 42.3817700000001], [24.5339765000001, 42.382036], [24.5164110000001, 42.368054], [24.5060245, 42.3804630000001], [24.5035185, 42.3815155], [24.4932045000001, 42.3843475000001], [24.4990275000001, 42.3972630010001], [24.4713505, 42.3994515000001], [24.4571425, 42.4100425], [24.453539, 42.414789], [24.4616715, 42.4201925], [24.461734, 42.4216395], [24.4505505000001, 42.420468], [24.4504865000001, 42.4182735000001], [24.440407, 42.4212010000001], [24.4300455000001, 42.4163265010001], [24.4268720000001, 42.4075520000001], [24.4280355000001, 42.4026880000001], [24.4282405000001, 42.3976455000001], [24.4457610000001, 42.391018], [24.4447705000001, 42.3843140000001], [24.4370135, 42.381223], [24.439442, 42.3711010000001], [24.448829, 42.369082], [24.445454, 42.3626895], [24.4368615000001, 42.3628705], [24.4385295000001, 42.3608825000001], [24.4682335000001, 42.3426495000001], [24.470446, 42.3377365000001], [24.4662415, 42.337112], [24.4847750000001, 42.3231930000001], [24.4814630000001, 42.315502], [24.483141, 42.3147595], [24.479811, 42.305424499], [24.4699895000001, 42.2985440000001], [24.4610845, 42.3029085000001], [24.4569645, 42.2983550000001], [24.4521805000001, 42.2929805000001], [24.4709875, 42.2811815000001], [24.4750510000001, 42.2756425000001], [24.4731140000001, 42.266261], [24.4891640000001, 42.2641780000001], [24.4891000000001, 42.2508305000001], [24.4950400000001, 42.2271050000001], [24.4966505, 42.2271675000001], [24.557538, 42.2268915000001], [24.5615530000001, 42.2292370000001], [24.5611195000001, 42.2313980000001], [24.57924, 42.2321295], [24.581869, 42.2298565], [24.591015, 42.2266405], [24.5838010000001, 42.2356295000001], [24.599977, 42.2542595], [24.6059155, 42.2589810000001], [24.6122445, 42.2581675000001], [24.6423530000001, 42.255252], [24.6552310000001, 42.262256001], [24.6653900000001, 42.2733505000001], [24.6661005, 42.280849], [24.6629685, 42.287269499], [24.6688740000001, 42.2880605], [24.6744835000001, 42.2870080000001], [24.6874315000001, 42.2773775000001], [24.6922525, 42.2818875], [24.693811, 42.2895149990001], [24.6965255000001, 42.292973499], [24.7181610000001, 42.2956760000001], [24.7208355000001, 42.30188], [24.7133205000001, 42.3090515000001], [24.7008290000001, 42.3187525000001], [24.6819255, 42.350616001], [24.6831750000001, 42.352600001], [24.6756095000001, 42.3564405000001] ] ] },
+    "properties": {
+      "ISO": "BG-PDV33",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "70528",
+      "NAME_2": "Съединение",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.756813, 42.197999], [24.7360430000001, 42.1951995000001], [24.7119525000001, 42.1961215000001], [24.7125305000001, 42.176478], [24.7064485000001, 42.1725830010001], [24.6946810000001, 42.1750535], [24.6829310000001, 42.1759290000001], [24.6765800000001, 42.1742785000001], [24.67661, 42.1686325000001], [24.6863450000001, 42.166677], [24.6874780000001, 42.1543575000001], [24.6827345, 42.1497000000001], [24.678326, 42.1510069990001], [24.6784530000001, 42.1435890000001], [24.674944, 42.1390785], [24.6591075000001, 42.1397465000001], [24.6583825000001, 42.1368815000001], [24.6577335000001, 42.1339055], [24.666502, 42.133183499], [24.6649175000001, 42.1257169990001], [24.665087, 42.1185745000001], [24.6683830000001, 42.110329], [24.6636545000001, 42.1060185000001], [24.666836, 42.098617501], [24.6851485, 42.0934725000001], [24.6973175000001, 42.0900025], [24.7245865, 42.0976475], [24.7277045000001, 42.097624001], [24.7314700000001, 42.0974600000001], [24.7432475, 42.1094765], [24.7438255000001, 42.1117795010001], [24.75084, 42.1113050000001], [24.7545905000001, 42.1078210000001], [24.755434, 42.102898], [24.7586030000001, 42.103108499], [24.7622575, 42.1045985000001], [24.7675200000001, 42.1093119990001], [24.768196, 42.1140755010001], [24.7686615000001, 42.1114820000001], [24.7739215, 42.1136910000001], [24.7765880000001, 42.108574], [24.7814825, 42.1074305010001], [24.792699, 42.1124740000001], [24.798908, 42.125098], [24.7990780000001, 42.1277625000001], [24.8237790000001, 42.1429265], [24.8240415000001, 42.1508115], [24.8080125000001, 42.1524965], [24.8163095, 42.1677530010001], [24.806907, 42.1659615], [24.806274, 42.1684845], [24.8096015, 42.17161], [24.8055875000001, 42.1768965000001], [24.7783565, 42.1758945], [24.7775075000001, 42.1861220000001], [24.7682070000001, 42.1858560000001], [24.763789, 42.1922045000001], [24.756813, 42.197999] ] ] },
+    "properties": {
+      "ISO": "BG-PDV22",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "56784",
+      "NAME_2": "Пловдив",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.9071750000001, 42.2402055000001], [24.948883, 42.2429000000001], [24.9662865, 42.2318540000001], [24.9665325, 42.2225645], [24.9911485000001, 42.2077155000001], [24.9906050000001, 42.2004380000001], [24.9982285, 42.1993689990001], [24.9912785000001, 42.1804525000001], [24.9921935, 42.1787440000001], [24.9903430000001, 42.1786845], [24.9856100000001, 42.180506], [24.977724, 42.1744415000001], [24.979025, 42.1703715000001], [24.9761520000001, 42.1575685], [24.989449, 42.154092], [24.9976600000001, 42.1528755], [25.0128090000001, 42.1477580000001], [25.025452, 42.1395920000001], [25.0334355000001, 42.1459475], [25.0514430000001, 42.1533425000001], [25.0504465000001, 42.165879999], [25.0890455000001, 42.168173], [25.100651, 42.176156], [25.0897590000001, 42.1794380000001], [25.0811430000001, 42.1839365000001], [25.0867905000001, 42.221207], [25.085562, 42.2225645], [25.0842250000001, 42.2332455010001], [25.0830790000001, 42.2549165], [25.0775370000001, 42.2649690000001], [25.07329, 42.2681715000001], [25.053817, 42.2708595], [25.0536655, 42.2781920000001], [25.037407, 42.2994340000001], [25.0314680000001, 42.3040060000001], [25.027748, 42.3102185000001], [25.0180110000001, 42.3216865000001], [25.0119245000001, 42.319555001], [24.97493, 42.3303984990001], [24.9776400000001, 42.334571], [24.9658915000001, 42.340676], [24.9574495000001, 42.3262475000001], [24.9464445, 42.3233625], [24.9269630000001, 42.3294285000001], [24.9146655000001, 42.3334424990001], [24.9011745, 42.3378025000001], [24.898689, 42.3320565000001], [24.8804935000001, 42.3375975000001], [24.8674665, 42.315067001], [24.8649695, 42.3158589990001], [24.85378, 42.3006055000001], [24.8495425, 42.293443], [24.8407155, 42.2893685000001], [24.8335355, 42.2886750000001], [24.8143895000001, 42.2947775000001], [24.8223585000001, 42.2882020000001], [24.8124255000001, 42.2884855], [24.811881, 42.2822435000001], [24.8122970000001, 42.266009501], [24.814128, 42.265432], [24.8312465000001, 42.2632400000001], [24.837991, 42.2476530000001], [24.841257, 42.2496775000001], [24.847471, 42.2435625000001], [24.8507315000001, 42.2250045000001], [24.856954, 42.2212670000001], [24.8626955, 42.2230210010001], [24.873228, 42.2254960000001], [24.8930040000001, 42.2222410000001], [24.9030725000001, 42.2207730000001], [24.9132450000001, 42.2196975000001], [24.9071750000001, 42.2402055000001] ] ] },
+    "properties": {
+      "ISO": "BG-PDV25",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "62075",
+      "NAME_2": "Раковски",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.0890455000001, 42.168173], [25.0504465000001, 42.165879999], [25.0514430000001, 42.1533425000001], [25.0334355000001, 42.1459475], [25.025452, 42.1395920000001], [25.0128090000001, 42.1477580000001], [24.9976600000001, 42.1528755], [24.989449, 42.154092], [24.9761520000001, 42.1575685], [24.9678490000001, 42.1562195000001], [24.9669245000001, 42.1521730000001], [24.9645110000001, 42.151396], [24.9538830000001, 42.1606855000001], [24.935953, 42.1589010000001], [24.927262, 42.1548310000001], [24.9136915, 42.1574805000001], [24.8977150000001, 42.1565085], [24.8935225000001, 42.1566345000001], [24.89372, 42.1560254990001], [24.8958900000001, 42.1559845], [24.872736, 42.1445025], [24.867958, 42.1368445000001], [24.8661335, 42.1018185], [24.8566700000001, 42.099233], [24.8536790000001, 42.095579], [24.8518175, 42.0889295000001], [24.8540245, 42.081104501], [24.8528225000001, 42.0789245], [24.8544135000001, 42.0759065], [24.8596375000001, 42.076089], [24.8621910000001, 42.0731240000001], [24.864722, 42.0692805], [24.8641445000001, 42.0628310000001], [24.8654275000001, 42.054334999], [24.867559, 42.0534739990001], [24.8851020000001, 42.054785], [24.8980725000001, 42.0544830000001], [24.9099615000001, 42.0550965], [24.9156800000001, 42.0600460000001], [24.9128105, 42.0626415], [24.925941, 42.063456], [24.9386630000001, 42.0531165], [24.9618990000001, 42.0526355000001], [24.963585, 42.0579295000001], [24.9741325000001, 42.056549499], [24.9830235000001, 42.0594080000001], [24.9877565, 42.063341], [24.9832960000001, 42.0724445000001], [24.975332, 42.0709800000001], [24.97213, 42.0764800000001], [24.988035, 42.0854465], [24.995729, 42.079502], [25.004582, 42.081737], [25.0098915, 42.0707430000001], [25.0129680000001, 42.071602], [25.0128305000001, 42.0783950000001], [25.0183755000001, 42.0857945000001], [25.0295655, 42.0893060000001], [25.0599895, 42.0865330010001], [25.0592305000001, 42.0938420000001], [25.0746810000001, 42.091913999], [25.0754345, 42.0939215000001], [25.0924170000001, 42.0956415000001], [25.0950750000001, 42.108662999], [25.1057650000001, 42.1094705], [25.1281855, 42.155017], [25.1325580000001, 42.1534675], [25.1458010000001, 42.1585230000001], [25.1247485000001, 42.1592525], [25.116924, 42.168193], [25.1040095000001, 42.1750275000001], [25.100651, 42.176156], [25.0890455000001, 42.168173] ] ] },
+    "properties": {
+      "ISO": "BG-PDV28",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "65139",
+      "NAME_2": "Садово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.5663890000001, 42.114334], [24.5602005000001, 42.1151615000001], [24.560617, 42.1184845000001], [24.5428935, 42.111253], [24.532854001, 42.1049400000001], [24.527988001, 42.0985275], [24.51577, 42.0953095], [24.5018125010001, 42.0827855000001], [24.4999710000001, 42.076495999], [24.4994505, 42.0729045], [24.4944850000001, 42.0685635], [24.501047, 42.064267], [24.5073595000001, 42.0664935], [24.50573, 42.0697225010001], [24.5073025, 42.0759390000001], [24.5119735000001, 42.075703], [24.5137005, 42.0716385000001], [24.5134210000001, 42.0647520000001], [24.5113165000001, 42.0626980000001], [24.5128755000001, 42.0591745], [24.5350195, 42.0498904990001], [24.5386515000001, 42.044475], [24.5369645000001, 42.027917501], [24.5440090000001, 42.023219], [24.5461855, 42.0110765000001], [24.5482280000001, 42.0090940000001], [24.5627125, 42.0116360000001], [24.563024, 42.003587], [24.57651, 42.0098075000001], [24.583577, 42.017278], [24.5815250000001, 42.0190900000001], [24.583382, 42.0292245000001], [24.5800965, 42.0422], [24.581441, 42.0483300000001], [24.5906825000001, 42.0561075000001], [24.5801730000001, 42.0619740000001], [24.5690795, 42.0761175000001], [24.571017, 42.0805980000001], [24.5700475, 42.0848595000001], [24.5625215000001, 42.1033100000001], [24.5680195, 42.1020535000001], [24.5709375000001, 42.1044115], [24.5672245000001, 42.1111865], [24.5663890000001, 42.114334] ] ] },
+    "properties": {
+      "ISO": "BG-PDV40",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "55909",
+      "NAME_2": "Перущица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.1141045000001, 42.3892875000001], [25.1123055000001, 42.3963815000001], [25.1214115000001, 42.4158660000001], [25.130612, 42.4236575], [25.133182, 42.4234430000001], [25.1436495, 42.411631], [25.1657020000001, 42.408761999], [25.1803655, 42.3994635], [25.181208, 42.3968199990001], [25.1819865, 42.3921595], [25.1943470000001, 42.39117], [25.2009110000001, 42.4140530000001], [25.1996185, 42.4221465], [25.1890315000001, 42.4315255000001], [25.1646270000001, 42.4393505], [25.1546135, 42.4467495000001], [25.1539320000001, 42.4552355000001], [25.1625575, 42.4655515000001], [25.1750885000001, 42.4702625], [25.1786065000001, 42.48319], [25.1856645, 42.4826194990001], [25.1913185, 42.4917865000001], [25.1772, 42.4919545000001], [25.1760110000001, 42.49343], [25.1778915, 42.4948785], [25.1742980000001, 42.4995760000001], [25.1561090000001, 42.503945], [25.1543600000001, 42.5056750000001], [25.1415875000001, 42.4993745000001], [25.094979, 42.4984835010001], [25.0884515000001, 42.4946380000001], [25.081416, 42.4944160000001], [25.0763295, 42.4947895], [25.072982, 42.4986240000001], [25.0733290000001, 42.5038260000001], [25.0667875, 42.5096945000001], [25.0386565000001, 42.5186365000001], [25.039428, 42.525206], [25.0372370000001, 42.5275140000001], [25.0292235000001, 42.531221999], [25.0268645, 42.537449], [25.016913, 42.541415], [24.9949980000001, 42.5415835000001], [24.9831045, 42.545692], [24.9802085000001, 42.547896999], [24.9753555, 42.5449245], [24.9726460000001, 42.5380645000001], [24.9792175000001, 42.5232275000001], [24.9773705000001, 42.5203490000001], [24.9824140000001, 42.5175835000001], [24.993931, 42.5094325000001], [24.9864785, 42.5033815], [24.9851890000001, 42.4921195000001], [24.9847330000001, 42.482584], [24.9892605000001, 42.4768330000001], [24.984291, 42.474584], [24.9781840000001, 42.4755030000001], [24.968799, 42.4762014990001], [24.9357360000001, 42.4846295], [24.9324065000001, 42.486294], [24.9316795, 42.4813370000001], [24.9231530000001, 42.4783190000001], [24.9154595000001, 42.4672695000001], [24.9133360000001, 42.4459285], [24.9195725000001, 42.439801], [24.9299385, 42.436139], [24.9453130000001, 42.4366185000001], [24.9412525000001, 42.4263965000001], [24.9346160000001, 42.4263940000001], [24.93465, 42.4222745000001], [24.9255010000001, 42.4192815000001], [24.903737, 42.4182685010001], [24.8946085000001, 42.4147330000001], [24.873205, 42.3942645000001], [24.8759815, 42.3924250000001], [24.8728105000001, 42.3835500010001], [24.8725245000001, 42.3819145000001], [24.8719600000001, 42.379013501], [24.8695755000001, 42.3684865000001], [24.8722475000001, 42.3652315], [24.872328, 42.357758001], [24.8663115000001, 42.3486809990001], [24.8719025, 42.3415810000001], [24.8804935000001, 42.3375975000001], [24.898689, 42.3320565000001], [24.9011745, 42.3378025000001], [24.9146655000001, 42.3334424990001], [24.9269630000001, 42.3294285000001], [24.9464445, 42.3233625], [24.9574495000001, 42.3262475000001], [24.9658915000001, 42.340676], [24.9776400000001, 42.334571], [24.97493, 42.3303984990001], [25.0119245000001, 42.319555001], [25.0180110000001, 42.3216865000001], [25.027748, 42.3102185000001], [25.0314680000001, 42.3040060000001], [25.037407, 42.2994340000001], [25.0536655, 42.2781920000001], [25.053817, 42.2708595], [25.07329, 42.2681715000001], [25.0775370000001, 42.2649690000001], [25.0830790000001, 42.2549165], [25.0990125000001, 42.2625715], [25.1300735, 42.2649415000001], [25.1530605, 42.262972999], [25.1737590000001, 42.2712515000001], [25.1761575, 42.2793740000001], [25.1562215000001, 42.2800765000001], [25.1533645000001, 42.2912335], [25.1551705000001, 42.2921190000001], [25.143609, 42.2914860000001], [25.1260825000001, 42.2861395], [25.1303540000001, 42.300258], [25.1216870000001, 42.3303799990001], [25.1174355000001, 42.3360605], [25.1198195000001, 42.3408180000001], [25.1144315, 42.3432200010001], [25.1130065, 42.344606], [25.117627, 42.348892], [25.1225620000001, 42.350333], [25.123977, 42.3575290000001], [25.1182645000001, 42.3639015000001], [25.1227025000001, 42.3661785], [25.1172295000001, 42.388605], [25.1141045000001, 42.3892875000001] ] ] },
+    "properties": {
+      "ISO": "BG-PDV07",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "6361",
+      "NAME_2": "Брезово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.733976, 42.5455035000001], [24.7191145, 42.5558815000001], [24.7068145000001, 42.5520000010001], [24.700609, 42.553317], [24.700076, 42.5568970000001], [24.6975870000001, 42.5590100000001], [24.684922, 42.5585725], [24.6767385000001, 42.553139], [24.6594635000001, 42.5574295000001], [24.6352365000001, 42.5577870000001], [24.632015, 42.5620475000001], [24.61627, 42.5653995000001], [24.5985250000001, 42.5648350000001], [24.5829905000001, 42.5719285000001], [24.5809635000001, 42.5726375], [24.5579315000001, 42.570546], [24.5372055, 42.5767069990001], [24.5362435000001, 42.581824], [24.505146, 42.5892055], [24.493973, 42.5995380000001], [24.4894845000001, 42.6010515], [24.4828585000001, 42.5998075000001], [24.4833580000001, 42.5900075010001], [24.4725815, 42.5878295000001], [24.4711160000001, 42.5773245], [24.459256, 42.574054001], [24.4585135, 42.568346499], [24.466304, 42.5616350000001], [24.4500875000001, 42.5537870000001], [24.43875, 42.5590495000001], [24.4296410000001, 42.559467], [24.4210095, 42.5530640000001], [24.414882, 42.5491930000001], [24.4231655, 42.5381775000001], [24.4216875000001, 42.5282530000001], [24.4077185, 42.5151774990001], [24.3929685000001, 42.5042070000001], [24.3812625000001, 42.4951915], [24.380928, 42.4828965], [24.384531, 42.4769680000001], [24.3887015, 42.4765680000001], [24.3880570000001, 42.4673095000001], [24.3923945, 42.4643510010001], [24.4116740000001, 42.4633295], [24.4337055, 42.452749], [24.4270855, 42.43717], [24.4359685000001, 42.435126999], [24.4441595000001, 42.4236980000001], [24.440407, 42.4212010000001], [24.4504865000001, 42.4182735000001], [24.4505505000001, 42.420468], [24.461734, 42.4216395], [24.4616715, 42.4201925], [24.453539, 42.414789], [24.4571425, 42.4100425], [24.4713505, 42.3994515000001], [24.4990275000001, 42.3972630010001], [24.4932045000001, 42.3843475000001], [24.5035185, 42.3815155], [24.5060245, 42.3804630000001], [24.5164110000001, 42.368054], [24.5339765000001, 42.382036], [24.5478015000001, 42.3817700000001], [24.5448265000001, 42.3891535000001], [24.5536945000001, 42.394886], [24.5598945, 42.3941354990001], [24.5591295, 42.396303], [24.5699125, 42.3941955000001], [24.5940285, 42.38329], [24.6000260000001, 42.3975905], [24.6067085, 42.3977525000001], [24.613185, 42.3934750000001], [24.613974, 42.3903215], [24.6275795, 42.3872180000001], [24.6276065000001, 42.3919285000001], [24.622736, 42.391714999], [24.6199330000001, 42.3976095], [24.6209450000001, 42.4001655000001], [24.6289665000001, 42.4006200000001], [24.635338, 42.400918501], [24.6303935, 42.3985870000001], [24.6326465000001, 42.3896645], [24.64439, 42.3797935000001], [24.6527855, 42.3878005010001], [24.65157, 42.3895945000001], [24.6588995000001, 42.4014245000001], [24.6668385, 42.3994745000001], [24.674428, 42.4012545000001], [24.6994750000001, 42.4156735], [24.7105270000001, 42.4170339990001], [24.7119665000001, 42.4133435], [24.722519, 42.4138780010001], [24.7288635, 42.4037195000001], [24.7309125, 42.4036384990001], [24.7338645, 42.4133400000001], [24.7294225000001, 42.4209354990001], [24.733372, 42.4374080000001], [24.7421465, 42.4510035000001], [24.747255, 42.4636905], [24.7520860000001, 42.4672400000001], [24.7495725000001, 42.471254], [24.7476365000001, 42.4867725], [24.771979, 42.4890635], [24.780019, 42.4911410010001], [24.78016, 42.5084630000001], [24.7828235000001, 42.5085540000001], [24.79423, 42.5045325], [24.814776, 42.5047960000001], [24.8225715, 42.5022115], [24.8247210000001, 42.4978620000001], [24.8349715000001, 42.4949045000001], [24.8381425000001, 42.4966210000001], [24.8407635, 42.5032850010001], [24.8484960000001, 42.51842], [24.845582, 42.5207290000001], [24.839778, 42.5220380000001], [24.8217970000001, 42.5392900000001], [24.8181125, 42.5480355], [24.8091485, 42.558184], [24.8080000000001, 42.5595985], [24.8055915, 42.5569995000001], [24.7873225000001, 42.5390830000001], [24.7724295, 42.541235], [24.7658695000001, 42.5391890000001], [24.733976, 42.5455035000001] ] ] },
+    "properties": {
+      "ISO": "BG-PDV37",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "77270",
+      "NAME_2": "Хисаря",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.925941, 42.063456], [24.9128105, 42.0626415], [24.9156800000001, 42.0600460000001], [24.9099615000001, 42.0550965], [24.8980725000001, 42.0544830000001], [24.8851020000001, 42.054785], [24.867559, 42.0534739990001], [24.8654275000001, 42.054334999], [24.8641445000001, 42.0628310000001], [24.8564495000001, 42.0585085000001], [24.8526450000001, 42.0607250000001], [24.843351, 42.0584160000001], [24.8388725, 42.0584805], [24.829144, 42.0497095000001], [24.8242685000001, 42.0416109990001], [24.8253090000001, 42.036349], [24.8283125, 42.0343795000001], [24.8259125000001, 42.0319160000001], [24.8260185, 42.0236865000001], [24.8293565000001, 42.0154055], [24.8158195, 42.003481499], [24.8148430000001, 42.0003105000001], [24.8128750000001, 41.9951310000001], [24.8039430000001, 41.986660999], [24.800802, 41.9753660000001], [24.7975605, 41.9715620000001], [24.7753720000001, 41.9714265000001], [24.7811540000001, 41.9626450000001], [24.8062805000001, 41.9557300000001], [24.8108435, 41.9531195000001], [24.8106565000001, 41.949937], [24.8083605, 41.9347945000001], [24.7913365000001, 41.9357425000001], [24.7848495000001, 41.936554001], [24.7737730000001, 41.9289140000001], [24.766395, 41.9295365], [24.7540355, 41.9218290000001], [24.7553975000001, 41.920514], [24.727991, 41.9266930000001], [24.7120555000001, 41.9269395000001], [24.7018345000001, 41.9331340000001], [24.680395, 41.9295280010001], [24.671816, 41.9242030010001], [24.6633975, 41.9154625], [24.6596395, 41.9153860000001], [24.6624485, 41.907203], [24.6645950000001, 41.9068680010001], [24.693745, 41.903396], [24.707319, 41.8989805000001], [24.713041, 41.8916780000001], [24.7242495, 41.8902885000001], [24.735685, 41.8932570000001], [24.7528865, 41.8876285000001], [24.761966, 41.8720365], [24.76079, 41.8693745], [24.770451, 41.8765250000001], [24.770389, 41.879288], [24.7644090000001, 41.8832695], [24.7610935000001, 41.8927830010001], [24.7741320000001, 41.8962425], [24.7904160000001, 41.9044954990001], [24.7931945, 41.9094850000001], [24.811267, 41.916302], [24.8269110000001, 41.9196475000001], [24.8314800000001, 41.9232150010001], [24.8341005, 41.9233455], [24.8417095, 41.9081245], [24.8442595000001, 41.907875], [24.8488665, 41.9048230000001], [24.85526, 41.8934465], [24.8481835000001, 41.880003], [24.8641915000001, 41.8733715000001], [24.8873655, 41.8733635], [24.8984845000001, 41.8694695], [24.9082935000001, 41.868253], [24.9267125000001, 41.859455], [24.923208, 41.8564105], [24.9193585, 41.8461365000001], [24.921279, 41.8407315000001], [24.929917, 41.8318410000001], [24.9472210000001, 41.8110095000001], [24.9641455, 41.8055689990001], [24.9748075000001, 41.8122554990001], [24.9762605, 41.8166045], [24.9846410000001, 41.8236595000001], [24.9918925000001, 41.8312080000001], [24.9992185, 41.8327405000001], [25.00188, 41.8391770000001], [25.0045530000001, 41.837233], [25.0161315, 41.8270135000001], [25.032856, 41.8195735000001], [25.0353455000001, 41.8129695000001], [25.0285375, 41.8040585000001], [25.032625, 41.8002690000001], [25.0494595000001, 41.7981295000001], [25.058977, 41.8036220000001], [25.0742245000001, 41.7934765000001], [25.0816380000001, 41.787967], [25.0937690000001, 41.7965135000001], [25.1172315000001, 41.7995935000001], [25.1128005000001, 41.8066855000001], [25.106857, 41.8105685], [25.108191, 41.818376501], [25.118956, 41.827302999], [25.133496, 41.829436], [25.1427405000001, 41.835224], [25.1422200000001, 41.8374175000001], [25.147638, 41.843876999], [25.1461095, 41.8605865000001], [25.1431045, 41.8697250000001], [25.1473635, 41.8705585000001], [25.1420405000001, 41.870531], [25.1402130000001, 41.8610535], [25.1297275000001, 41.8646615000001], [25.1104605, 41.8743160000001], [25.1050890000001, 41.8763485000001], [25.109965, 41.8970535], [25.1085675000001, 41.9102515000001], [25.1039660000001, 41.930548], [25.104479, 41.9332405000001], [25.1004580000001, 41.9421395000001], [25.1006560000001, 41.9446465], [25.1053065, 41.9538555], [25.1110125000001, 41.9567325], [25.1140345000001, 41.9527610000001], [25.118633, 41.9555385], [25.12321, 41.9624535], [25.12228, 41.9650005], [25.11803, 41.9783320000001], [25.1124610000001, 41.980618501], [25.0990005, 41.978550001], [25.087322, 41.9817330010001], [25.0947395000001, 41.9908130000001], [25.09504, 41.9976315000001], [25.0915910000001, 42.0069405], [25.0854905, 42.015048], [25.07969, 42.0186390000001], [25.0762245, 42.0171355], [25.0559480000001, 42.0352695], [25.056606, 42.0396895000001], [25.0684245, 42.0542265], [25.0933470000001, 42.0623165000001], [25.0872835000001, 42.082925], [25.0807935, 42.0825060000001], [25.0746810000001, 42.091913999], [25.0592305000001, 42.0938420000001], [25.0599895, 42.0865330010001], [25.0295655, 42.0893060000001], [25.0183755000001, 42.0857945000001], [25.0128305000001, 42.0783950000001], [25.0129680000001, 42.071602], [25.0098915, 42.0707430000001], [25.004582, 42.081737], [24.995729, 42.079502], [24.988035, 42.0854465], [24.97213, 42.0764800000001], [24.975332, 42.0709800000001], [24.9832960000001, 42.0724445000001], [24.9877565, 42.063341], [24.9830235000001, 42.0594080000001], [24.9741325000001, 42.056549499], [24.963585, 42.0579295000001], [24.9618990000001, 42.0526355000001], [24.9386630000001, 42.0531165], [24.925941, 42.063456] ] ] },
+    "properties": {
+      "ISO": "BG-PDV01",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "702",
+      "NAME_2": "Асеновград",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.5831575, 42.1341905], [24.5848260000001, 42.1341355010001], [24.5853825, 42.1456700000001], [24.5696620000001, 42.1464500000001], [24.557826, 42.150962501], [24.5458425, 42.1540885010001], [24.5358375000001, 42.1507805000001], [24.5122865000001, 42.1462240000001], [24.5027475000001, 42.1417030000001], [24.499416, 42.1343265], [24.4912965, 42.138116], [24.4918995, 42.145163], [24.4803865000001, 42.1460670000001], [24.4780930000001, 42.145657], [24.4709255000001, 42.1461565000001], [24.4492665000001, 42.133334501], [24.4424955000001, 42.1244620000001], [24.431455, 42.1242554990001], [24.437736, 42.1132160000001], [24.4455035, 42.1131505010001], [24.4512415, 42.1044210000001], [24.4663675, 42.0912075000001], [24.4663525, 42.0904685], [24.4667020000001, 42.0858430000001], [24.4856685, 42.0723820000001], [24.493494001, 42.0719280000001], [24.4956880010001, 42.0763615000001], [24.4999710000001, 42.076495999], [24.5018125010001, 42.0827855000001], [24.51577, 42.0953095], [24.527988001, 42.0985275], [24.532854001, 42.1049400000001], [24.5428935, 42.111253], [24.560617, 42.1184845000001], [24.5602005000001, 42.1151615000001], [24.5663890000001, 42.114334], [24.5672245000001, 42.1111865], [24.579122, 42.1136220000001], [24.5732600000001, 42.1181000010001], [24.5842315, 42.1220690000001], [24.582614, 42.1269610000001], [24.5831575, 42.1341905] ] ] },
+    "properties": {
+      "ISO": "BG-PDV41",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "51980",
+      "NAME_2": "Стамболийски",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.7338645, 42.4133400000001], [24.7309125, 42.4036384990001], [24.7288635, 42.4037195000001], [24.722519, 42.4138780010001], [24.7119665000001, 42.4133435], [24.7105270000001, 42.4170339990001], [24.6994750000001, 42.4156735], [24.674428, 42.4012545000001], [24.6668385, 42.3994745000001], [24.6588995000001, 42.4014245000001], [24.65157, 42.3895945000001], [24.6527855, 42.3878005010001], [24.64439, 42.3797935000001], [24.6617525, 42.3572350000001], [24.6756095000001, 42.3564405000001], [24.6831750000001, 42.352600001], [24.6819255, 42.350616001], [24.7008290000001, 42.3187525000001], [24.7133205000001, 42.3090515000001], [24.7208355000001, 42.30188], [24.739539, 42.2970945000001], [24.75091, 42.297404], [24.7852415, 42.2869684990001], [24.7862125, 42.2819530000001], [24.811881, 42.2822435000001], [24.8124255000001, 42.2884855], [24.8223585000001, 42.2882020000001], [24.8143895000001, 42.2947775000001], [24.8335355, 42.2886750000001], [24.8407155, 42.2893685000001], [24.8495425, 42.293443], [24.85378, 42.3006055000001], [24.8649695, 42.3158589990001], [24.8674665, 42.315067001], [24.8804935000001, 42.3375975000001], [24.8719025, 42.3415810000001], [24.8663115000001, 42.3486809990001], [24.872328, 42.357758001], [24.8722475000001, 42.3652315], [24.8695755000001, 42.3684865000001], [24.8719600000001, 42.379013501], [24.8725245000001, 42.3819145000001], [24.8728105000001, 42.3835500010001], [24.8759815, 42.3924250000001], [24.873205, 42.3942645000001], [24.8946085000001, 42.4147330000001], [24.903737, 42.4182685010001], [24.9255010000001, 42.4192815000001], [24.93465, 42.4222745000001], [24.9346160000001, 42.4263940000001], [24.9412525000001, 42.4263965000001], [24.9453130000001, 42.4366185000001], [24.9299385, 42.436139], [24.9195725000001, 42.439801], [24.9133360000001, 42.4459285], [24.9154595000001, 42.4672695000001], [24.9231530000001, 42.4783190000001], [24.9316795, 42.4813370000001], [24.9324065000001, 42.486294], [24.929967, 42.4895955000001], [24.9038245, 42.4933075000001], [24.8902120000001, 42.4901400000001], [24.8840230000001, 42.4941909990001], [24.869733, 42.4923635000001], [24.8569305, 42.5035615], [24.8494260000001, 42.5060325000001], [24.8470245, 42.5061765], [24.8407635, 42.5032850010001], [24.8381425000001, 42.4966210000001], [24.8349715000001, 42.4949045000001], [24.8247210000001, 42.4978620000001], [24.8225715, 42.5022115], [24.814776, 42.5047960000001], [24.79423, 42.5045325], [24.7828235000001, 42.5085540000001], [24.78016, 42.5084630000001], [24.780019, 42.4911410010001], [24.771979, 42.4890635], [24.7476365000001, 42.4867725], [24.7495725000001, 42.471254], [24.7520860000001, 42.4672400000001], [24.747255, 42.4636905], [24.7421465, 42.4510035000001], [24.733372, 42.4374080000001], [24.7294225000001, 42.4209354990001], [24.7338645, 42.4133400000001] ] ] },
+    "properties": {
+      "ISO": "BG-PDV12",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "35523",
+      "NAME_2": "Калояново",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.873228, 42.2254960000001], [24.8626955, 42.2230210010001], [24.856954, 42.2212670000001], [24.8507315000001, 42.2250045000001], [24.847471, 42.2435625000001], [24.841257, 42.2496775000001], [24.837991, 42.2476530000001], [24.8312465000001, 42.2632400000001], [24.814128, 42.265432], [24.8122970000001, 42.266009501], [24.811881, 42.2822435000001], [24.7862125, 42.2819530000001], [24.7852415, 42.2869684990001], [24.75091, 42.297404], [24.739539, 42.2970945000001], [24.7208355000001, 42.30188], [24.7181610000001, 42.2956760000001], [24.6965255000001, 42.292973499], [24.693811, 42.2895149990001], [24.6922525, 42.2818875], [24.6874315000001, 42.2773775000001], [24.6744835000001, 42.2870080000001], [24.6688740000001, 42.2880605], [24.6629685, 42.287269499], [24.6661005, 42.280849], [24.6653900000001, 42.2733505000001], [24.6552310000001, 42.262256001], [24.6423530000001, 42.255252], [24.6122445, 42.2581675000001], [24.6059155, 42.2589810000001], [24.599977, 42.2542595], [24.5838010000001, 42.2356295000001], [24.591015, 42.2266405], [24.5998575, 42.2160240000001], [24.6018175, 42.193631999], [24.6018365, 42.1569615000001], [24.6142985000001, 42.156438], [24.613613, 42.1482600000001], [24.63223, 42.1512080000001], [24.643539, 42.1527830000001], [24.6490865000001, 42.1517395000001], [24.6554615000001, 42.1442245000001], [24.678326, 42.1510069990001], [24.6827345, 42.1497000000001], [24.6874780000001, 42.1543575000001], [24.6863450000001, 42.166677], [24.67661, 42.1686325000001], [24.6765800000001, 42.1742785000001], [24.6829310000001, 42.1759290000001], [24.6946810000001, 42.1750535], [24.7064485000001, 42.1725830010001], [24.7125305000001, 42.176478], [24.7119525000001, 42.1961215000001], [24.7360430000001, 42.1951995000001], [24.756813, 42.197999], [24.763789, 42.1922045000001], [24.7682070000001, 42.1858560000001], [24.7775075000001, 42.1861220000001], [24.7783565, 42.1758945], [24.8055875000001, 42.1768965000001], [24.8096015, 42.17161], [24.806274, 42.1684845], [24.806907, 42.1659615], [24.8163095, 42.1677530010001], [24.8080125000001, 42.1524965], [24.8240415000001, 42.1508115], [24.862359, 42.1508885000001], [24.8935225000001, 42.1566345000001], [24.8977150000001, 42.1565085], [24.9136915, 42.1574805000001], [24.927262, 42.1548310000001], [24.935953, 42.1589010000001], [24.9538830000001, 42.1606855000001], [24.9645110000001, 42.151396], [24.9669245000001, 42.1521730000001], [24.9678490000001, 42.1562195000001], [24.9761520000001, 42.1575685], [24.979025, 42.1703715000001], [24.977724, 42.1744415000001], [24.9856100000001, 42.180506], [24.9903430000001, 42.1786845], [24.9921935, 42.1787440000001], [24.9912785000001, 42.1804525000001], [24.9982285, 42.1993689990001], [24.9906050000001, 42.2004380000001], [24.9911485000001, 42.2077155000001], [24.9665325, 42.2225645], [24.9662865, 42.2318540000001], [24.948883, 42.2429000000001], [24.9071750000001, 42.2402055000001], [24.9132450000001, 42.2196975000001], [24.9030725000001, 42.2207730000001], [24.8930040000001, 42.2222410000001], [24.873228, 42.2254960000001] ] ] },
+    "properties": {
+      "ISO": "BG-PDV17",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "56784",
+      "NAME_2": "Марица",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.8158195, 42.003481499], [24.8293565000001, 42.0154055], [24.8260185, 42.0236865000001], [24.8259125000001, 42.0319160000001], [24.8283125, 42.0343795000001], [24.8253090000001, 42.036349], [24.8242685000001, 42.0416109990001], [24.829144, 42.0497095000001], [24.8388725, 42.0584805], [24.843351, 42.0584160000001], [24.83581, 42.0725890000001], [24.8234555, 42.058788], [24.8014025000001, 42.080004], [24.7919680000001, 42.0775170000001], [24.7850035000001, 42.0681475000001], [24.7830750000001, 42.060482], [24.771235, 42.0462305], [24.7631085, 42.0404304990001], [24.764036, 42.0349235], [24.7585280000001, 42.0359595], [24.7574345, 42.0385505], [24.748475, 42.0424675], [24.7387380000001, 42.0416010000001], [24.717862, 42.038309499], [24.71896, 42.041885], [24.706596, 42.0375670000001], [24.7046700000001, 42.0432385], [24.696219, 42.0430284990001], [24.6935730000001, 42.0424485], [24.6934640000001, 42.0394700000001], [24.69915, 42.0316275000001], [24.6904995, 42.0198585000001], [24.6802135, 42.0164585000001], [24.6785155000001, 42.012894499], [24.678304, 42.0096830000001], [24.6848855000001, 41.999820001], [24.679428, 41.9880610000001], [24.6769805000001, 41.9683375000001], [24.674109, 41.959976], [24.679581, 41.9515895000001], [24.681494, 41.943631], [24.6703595000001, 41.929874], [24.671816, 41.9242030010001], [24.680395, 41.9295280010001], [24.7018345000001, 41.9331340000001], [24.7120555000001, 41.9269395000001], [24.727991, 41.9266930000001], [24.7553975000001, 41.920514], [24.7540355, 41.9218290000001], [24.766395, 41.9295365], [24.7737730000001, 41.9289140000001], [24.7848495000001, 41.936554001], [24.7913365000001, 41.9357425000001], [24.8083605, 41.9347945000001], [24.8106565000001, 41.949937], [24.8108435, 41.9531195000001], [24.8062805000001, 41.9557300000001], [24.7811540000001, 41.9626450000001], [24.7753720000001, 41.9714265000001], [24.7975605, 41.9715620000001], [24.800802, 41.9753660000001], [24.8039430000001, 41.986660999], [24.8128750000001, 41.9951310000001], [24.8148430000001, 42.0003105000001], [24.8158195, 42.003481499] ] ] },
+    "properties": {
+      "ISO": "BG-PDV42",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "40467",
+      "NAME_2": "Куклен",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.7720975, 42.641676499], [24.7844230000001, 42.6522039990001], [24.795222, 42.672602], [24.7956745000001, 42.6740560000001], [24.7958135000001, 42.6765980000001], [24.7886720000001, 42.6993825010001], [24.7819425000001, 42.7042095000001], [24.7801010000001, 42.714953], [24.7807025000001, 42.7166265000001], [24.7549680000001, 42.7085280000001], [24.728683, 42.7127610000001], [24.720421, 42.714634], [24.7175930000001, 42.711558], [24.705524, 42.6942049990001], [24.6994175, 42.680439], [24.7047225000001, 42.6747995000001], [24.7005185, 42.6630135010001], [24.7087740000001, 42.650409], [24.7089700000001, 42.6476485000001], [24.7269180000001, 42.6464030000001], [24.7316005000001, 42.6322770000001], [24.7497220000001, 42.6244715], [24.7612940000001, 42.6292460000001], [24.7843175, 42.6314360000001], [24.7720975, 42.641676499] ] ] },
+    "properties": {
+      "ISO": "BG-PDV43",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "56784",
+      "NAME_1": "PDV",
+      "TYPE_1": "Област",
+      "ID_2": "68080",
+      "NAME_2": "Сопот",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.6944830000001, 44.2044815], [22.6834105, 44.2097390000001], [22.6751615000001, 44.2156630000001], [22.6682210000001, 44.2090605000001], [22.6812790000001, 44.200834501], [22.67182, 44.1961890000001], [22.6619935000001, 44.20261], [22.6558145000001, 44.2074675000001], [22.6537320000001, 44.2053364990001], [22.646147, 44.2089720000001], [22.647568, 44.2041695], [22.6455245000001, 44.1981295000001], [22.6326915000001, 44.1845740000001], [22.636063, 44.1780195000001], [22.6338865000001, 44.1739695000001], [22.6186695000001, 44.1729394990001], [22.6130115, 44.1655870000001], [22.6173220000001, 44.1611530000001], [22.6268480000001, 44.1582514990001], [22.6269475, 44.1547630000001], [22.6261965000001, 44.1473275000001], [22.6203775000001, 44.1507950000001], [22.611772, 44.1144535], [22.6099785000001, 44.10688], [22.6115770000001, 44.1034655], [22.6196585000001, 44.0977590000001], [22.6197815, 44.0824155], [22.615572, 44.0790145], [22.6245960000001, 44.07284], [22.6189385000001, 44.0688460000001], [22.6212120000001, 44.0633765000001], [22.5848490000001, 44.062309], [22.585561, 44.0589860000001], [22.5988035, 44.0554490000001], [22.593847, 44.0499394990001], [22.6038025, 44.0430005010001], [22.6075865, 44.0362730000001], [22.611339, 44.0400665000001], [22.6233515000001, 44.0426045], [22.634873, 44.0413715], [22.6393515, 44.0422184990001], [22.6541795000001, 44.050371], [22.668397, 44.0453719990001], [22.6786795, 44.0481980010001], [22.6905465, 44.0565015000001], [22.7101295000001, 44.0621315000001], [22.7333365000001, 44.0666600000001], [22.7353575000001, 44.0640760000001], [22.7410560000001, 44.0683250010001], [22.741143, 44.071586], [22.7565260000001, 44.0682380000001], [22.7554235000001, 44.0642225], [22.7508945000001, 44.064016], [22.7507665000001, 44.0603800000001], [22.7583565, 44.0591555], [22.7628375, 44.0569090000001], [22.7661825000001, 44.0641465], [22.7690670000001, 44.0639904990001], [22.7953410000001, 44.0506605], [22.7957430000001, 44.0513205], [22.7967475, 44.0573475000001], [22.781436, 44.0629205000001], [22.7766090000001, 44.082993001], [22.775725, 44.0886315000001], [22.7794200000001, 44.1094210000001], [22.7828730000001, 44.113429501], [22.755141, 44.1224340000001], [22.7502875000001, 44.1140335000001], [22.731566, 44.1186175], [22.7265745, 44.1061050000001], [22.7249225, 44.106882001], [22.7085045000001, 44.1137645000001], [22.721886, 44.131489], [22.7212945000001, 44.1346970000001], [22.7165225000001, 44.137436], [22.7160825, 44.142437], [22.7236145000001, 44.1524735], [22.726388, 44.1525645], [22.737441, 44.1583655000001], [22.7492655, 44.165197], [22.7625535, 44.187729], [22.7494170000001, 44.1978540000001], [22.7110240000001, 44.2030930000001], [22.6998045, 44.2035875], [22.6944830000001, 44.2044815] ] ] },
+    "properties": {
+      "ISO": "BG-VID06",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "6224",
+      "NAME_2": "Брегово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.6541040000001, 44.0241940000001], [22.6312290000001, 44.0252140000001], [22.6288795, 44.0288140000001], [22.6275690000001, 44.0293745000001], [22.6393515, 44.0422184990001], [22.634873, 44.0413715], [22.6233515000001, 44.0426045], [22.611339, 44.0400665000001], [22.6075865, 44.0362730000001], [22.6038025, 44.0430005010001], [22.593847, 44.0499394990001], [22.5988035, 44.0554490000001], [22.585561, 44.0589860000001], [22.5848490000001, 44.062309], [22.582145, 44.0620605], [22.580653, 44.054068], [22.5597665, 44.0575465000001], [22.5545030000001, 44.0535825000001], [22.5348635, 44.0522090000001], [22.5306755, 44.0483145000001], [22.536145, 44.0455115], [22.5419460000001, 44.0421195000001], [22.5434675000001, 44.0336525000001], [22.5387665000001, 44.0258170000001], [22.5310565, 44.020834], [22.5076455, 44.018409499], [22.4870415, 44.019890999], [22.4819440000001, 44.0189975010001], [22.4818063280001, 44.018569584], [22.4812427960001, 44.0184273960001], [22.4678335, 44.015043], [22.455208, 44.0165290000001], [22.4423390000001, 44.0165880000001], [22.4411925000001, 44.0102265], [22.4095390000001, 44.00424], [22.4086885, 43.987081], [22.4097355000001, 43.9844235000001], [22.4122205, 43.9798515000001], [22.413212, 43.9721690010001], [22.4114250000001, 43.9547650000001], [22.4062010000001, 43.947951501], [22.4084730000001, 43.9411650000001], [22.435011, 43.9470315], [22.4657260000001, 43.9480865], [22.4741205, 43.9456365], [22.4782485000001, 43.9404664990001], [22.480508, 43.9248420000001], [22.4831600000001, 43.9177745000001], [22.4944285, 43.906121], [22.4925920000001, 43.902252], [22.4849125000001, 43.9004360000001], [22.4927855, 43.8973130010001], [22.5002385, 43.8988385000001], [22.5059215000001, 43.90493], [22.5543890000001, 43.932874], [22.560212, 43.9358535010001], [22.573833, 43.9362175000001], [22.5738720000001, 43.9381710000001], [22.5711735, 43.94154], [22.5730970000001, 43.9489205], [22.5834835000001, 43.956197999], [22.5894260000001, 43.9658860000001], [22.5823535000001, 43.9678539990001], [22.5797440000001, 43.9826905], [22.5886170000001, 43.9915075000001], [22.5970590000001, 43.9964825000001], [22.6132475000001, 44.0091400000001], [22.625815, 44.0145765], [22.6422265, 44.019431], [22.6525795000001, 44.0180165], [22.6571355, 44.0211585000001], [22.6541040000001, 44.0241940000001] ] ] },
+    "properties": {
+      "ISO": "BG-VID03",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "5195",
+      "NAME_2": "Бойница",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.9008885000001, 43.718735], [22.913257, 43.7175365000001], [22.9199585000001, 43.7224790000001], [22.9160545, 43.7352015000001], [22.9287390000001, 43.7369875000001], [22.9397020000001, 43.737515], [22.9426780000001, 43.743576999], [22.9569000000001, 43.7445010000001], [22.9633755, 43.7498880000001], [22.961689, 43.7511505000001], [22.962052, 43.7560245000001], [22.9646665000001, 43.7559265], [22.9656150000001, 43.7654965], [22.9711760000001, 43.7765575000001], [22.986457, 43.7786930010001], [22.9901715, 43.7759560000001], [22.9969005, 43.7801490000001], [23.0173125000001, 43.769846], [23.0231665000001, 43.7777035], [23.047312, 43.7740585000001], [23.0512855000001, 43.7779485], [23.0419850000001, 43.7851765], [23.0235970000001, 43.7917805000001], [23.002327, 43.7933135000001], [22.9970295000001, 43.7986285000001], [22.9971545000001, 43.807627], [22.975192, 43.808525], [22.9584165000001, 43.8131555000001], [22.9527885000001, 43.8132010000001], [22.9470235000001, 43.8171154990001], [22.9484415000001, 43.8188089990001], [22.933948, 43.8235549990001], [22.9066395, 43.825881], [22.883249, 43.8322485], [22.8791350000001, 43.8334780000001], [22.8770860000001, 43.8299690010001], [22.8684880000001, 43.8272710000001], [22.850064, 43.8268725], [22.8502015, 43.8240470000001], [22.846952, 43.825972], [22.8452120000001, 43.826423499], [22.8313775, 43.8235025010001], [22.8246785000001, 43.8095660000001], [22.8063060000001, 43.804833], [22.7946405000001, 43.7965305000001], [22.7884385, 43.7935450000001], [22.7678985000001, 43.7975065], [22.7673215, 43.8006695], [22.750143, 43.8016000000001], [22.7447540000001, 43.7896885000001], [22.7443175, 43.789316], [22.743973, 43.784639999], [22.7380590000001, 43.7850465000001], [22.7352090000001, 43.7711420000001], [22.7350415, 43.7664645], [22.7115670000001, 43.761531], [22.704617, 43.749716], [22.6926475000001, 43.75237], [22.6873830000001, 43.748975], [22.6841275, 43.7524299990001], [22.6815365, 43.7481665], [22.6735355000001, 43.7517815], [22.6617390000001, 43.7456405], [22.644434, 43.7357210000001], [22.6353815000001, 43.7349130000001], [22.6294270000001, 43.7343460000001], [22.6274775000001, 43.728434501], [22.6349095, 43.7242525], [22.639397, 43.7155175], [22.6394100000001, 43.7112265000001], [22.6337715, 43.710112], [22.6355935, 43.707382001], [22.6452830000001, 43.700323], [22.6560635000001, 43.6998975000001], [22.6659125, 43.715089], [22.6689835, 43.7128420000001], [22.680485, 43.7094680000001], [22.6930655, 43.6973799990001], [22.7138575000001, 43.6779485010001], [22.7139095000001, 43.6727965000001], [22.7108430000001, 43.6691490000001], [22.7053930000001, 43.6616010000001], [22.698948, 43.652776999], [22.685842, 43.654734499], [22.6853505, 43.6482375], [22.6889855000001, 43.6427684990001], [22.7031880000001, 43.6343455000001], [22.7083920000001, 43.627052], [22.7310600000001, 43.6171245], [22.7300060000001, 43.6133905], [22.7194075, 43.6122930000001], [22.7349925, 43.6045725000001], [22.7471545000001, 43.6041290000001], [22.7458275000001, 43.6008915000001], [22.7527825, 43.598910499], [22.768721, 43.5995550000001], [22.777988, 43.595676], [22.7781870000001, 43.5926929990001], [22.7756405000001, 43.5916300000001], [22.77671, 43.5821565000001], [22.7802605000001, 43.5752955], [22.780448, 43.571496], [22.7842600000001, 43.5689725], [22.7939795, 43.571054001], [22.8000645000001, 43.5771165], [22.8111430000001, 43.5726290000001], [22.8154295000001, 43.5742814990001], [22.8049885, 43.5882235], [22.809744, 43.59506], [22.8069555000001, 43.600296502], [22.7964795, 43.6048625020001], [22.7973410000001, 43.607647], [22.7937315, 43.6167310000001], [22.7911475, 43.6173430000001], [22.801492, 43.6190555000001], [22.8030655000001, 43.6220115], [22.800572, 43.6281060000001], [22.799377, 43.631427], [22.809062, 43.6332325010001], [22.8193755, 43.646106], [22.8429140000001, 43.6469530000001], [22.8437240000001, 43.6504590010001], [22.8479345000001, 43.6511674990001], [22.855149, 43.6496525000001], [22.8666680000001, 43.6583195000001], [22.8704325, 43.6638635], [22.8763200000001, 43.6653335], [22.884132, 43.6788804990001], [22.8818440000001, 43.6860570000001], [22.8965910000001, 43.6910485000001], [22.9035450000001, 43.693881], [22.9074935, 43.7018175000001], [22.9008885000001, 43.718735] ] ] },
+    "properties": {
+      "ISO": "BG-VID16",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "21097",
+      "NAME_2": "Димово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.962052, 43.7560245000001], [22.961689, 43.7511505000001], [22.9633755, 43.7498880000001], [22.9569000000001, 43.7445010000001], [22.9426780000001, 43.743576999], [22.9397020000001, 43.737515], [22.9287390000001, 43.7369875000001], [22.9160545, 43.7352015000001], [22.9199585000001, 43.7224790000001], [22.913257, 43.7175365000001], [22.9008885000001, 43.718735], [22.9074935, 43.7018175000001], [22.9035450000001, 43.693881], [22.8965910000001, 43.6910485000001], [22.8818440000001, 43.6860570000001], [22.884132, 43.6788804990001], [22.8763200000001, 43.6653335], [22.8704325, 43.6638635], [22.8666680000001, 43.6583195000001], [22.855149, 43.6496525000001], [22.8479345000001, 43.6511674990001], [22.8437240000001, 43.6504590010001], [22.8429140000001, 43.6469530000001], [22.8193755, 43.646106], [22.809062, 43.6332325010001], [22.799377, 43.631427], [22.800572, 43.6281060000001], [22.8030655000001, 43.6220115], [22.801492, 43.6190555000001], [22.7911475, 43.6173430000001], [22.7937315, 43.6167310000001], [22.7973410000001, 43.607647], [22.7964795, 43.6048625020001], [22.8069555000001, 43.600296502], [22.809744, 43.59506], [22.8049885, 43.5882235], [22.8154295000001, 43.5742814990001], [22.8262875, 43.570798], [22.831331, 43.5654795], [22.8314885, 43.5598865000001], [22.8259835000001, 43.548842999], [22.8260855, 43.5376850000001], [22.828542, 43.531667999], [22.8233970000001, 43.523554], [22.8344065000001, 43.5158365], [22.8534505000001, 43.5086030000001], [22.862829, 43.5135445000001], [22.864016, 43.519972001], [22.8739370000001, 43.5240920000001], [22.883046, 43.5331495], [22.8815725000001, 43.5360870000001], [22.8842055000001, 43.5465795010001], [22.888471, 43.5536925000001], [22.9051175000001, 43.563634], [22.9159515000001, 43.5662800000001], [22.9181805000001, 43.572478501], [22.932016, 43.5754830000001], [22.9421540000001, 43.5766735], [22.9479185000001, 43.5881265], [22.9449155, 43.594077], [22.9422210000001, 43.6020105000001], [22.9458310000001, 43.618844999], [22.9599845000001, 43.6314635000001], [22.9470660000001, 43.6342335], [22.9470885000001, 43.6359660000001], [22.9452160000001, 43.6389805000001], [22.951083, 43.658394], [22.9596785000001, 43.6627550000001], [22.9757450000001, 43.6678810000001], [22.966028, 43.660962], [22.9678895000001, 43.6602305000001], [22.9939170000001, 43.6739205010001], [22.9896240000001, 43.6743910000001], [22.9916985, 43.679786], [23.00043, 43.6804780000001], [22.9998155000001, 43.6829095000001], [23.0083575, 43.683564001], [23.008471, 43.6903185], [23.0230605, 43.6912655], [23.0316530000001, 43.6887130000001], [23.0336715, 43.687214], [23.0511305000001, 43.6951750000001], [23.058414, 43.694193], [23.0546620000001, 43.7087970000001], [23.041411, 43.736002], [23.0436470000001, 43.7354075000001], [23.0305700000001, 43.739552001], [23.0305735000001, 43.7405830000001], [23.023463, 43.7400155], [23.008231, 43.7424309990001], [22.9975880000001, 43.7425625000001], [22.9914870000001, 43.7427430000001], [22.9922625, 43.7491595010001], [22.9814260000001, 43.7554225010001], [22.9738905, 43.753369499], [22.9646665000001, 43.7559265], [22.962052, 43.7560245000001] ] ] },
+    "properties": {
+      "ISO": "BG-VID33",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "63255",
+      "NAME_2": "Ружинци",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [22.7828730000001, 44.113429501], [22.7794200000001, 44.1094210000001], [22.775725, 44.0886315000001], [22.7766090000001, 44.082993001], [22.781436, 44.0629205000001], [22.7967475, 44.0573475000001], [22.7956295000001, 44.059848001], [22.8016650000001, 44.0649450000001], [22.7983945, 44.075838], [22.8000375, 44.079306], [22.82829, 44.083130999], [22.8313735, 44.0794855], [22.8377180000001, 44.0835315], [22.8450560000001, 44.0815699990001], [22.8496935000001, 44.0752315], [22.8537015000001, 44.074648], [22.8576225, 44.0751185010001], [22.8585455, 44.069217], [22.8834365000001, 44.0690660000001], [22.8880825000001, 44.068988001], [22.887641, 44.0733880000001], [22.8906290000001, 44.0794740000001], [22.9001455000001, 44.0903910000001], [22.9082095000001, 44.0871915000001], [22.9135170000001, 44.0981], [22.9198450000001, 44.0962480000001], [22.9236625, 44.102965], [22.8989560000001, 44.1147015000001], [22.8802085, 44.127622499], [22.8710095000001, 44.1331300000001], [22.8401415000001, 44.1459905], [22.8377155000001, 44.1472025], [22.8132095, 44.1538235], [22.7956795000001, 44.1633434990001], [22.7646965000001, 44.1856065000001], [22.7625535, 44.187729], [22.7492655, 44.165197], [22.737441, 44.1583655000001], [22.726388, 44.1525645], [22.7236145000001, 44.1524735], [22.7160825, 44.142437], [22.7165225000001, 44.137436], [22.7212945000001, 44.1346970000001], [22.721886, 44.131489], [22.7085045000001, 44.1137645000001], [22.7249225, 44.106882001], [22.7265745, 44.1061050000001], [22.731566, 44.1186175], [22.7502875000001, 44.1140335000001], [22.755141, 44.1224340000001], [22.7828730000001, 44.113429501] ] ], [ [ [22.6682210000001, 44.2090605000001], [22.6659625, 44.2132135000001], [22.6558145000001, 44.2074675000001], [22.6619935000001, 44.20261], [22.67182, 44.1961890000001], [22.6812790000001, 44.200834501], [22.6682210000001, 44.2090605000001] ] ] ] },
+    "properties": {
+      "ISO": "BG-VID30",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "52180",
+      "NAME_2": "Ново село",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.9135170000001, 44.0981], [22.9082095000001, 44.0871915000001], [22.9001455000001, 44.0903910000001], [22.8906290000001, 44.0794740000001], [22.887641, 44.0733880000001], [22.8880825000001, 44.068988001], [22.8834365000001, 44.0690660000001], [22.8585455, 44.069217], [22.8576225, 44.0751185010001], [22.8537015000001, 44.074648], [22.8496935000001, 44.0752315], [22.8450560000001, 44.0815699990001], [22.8377180000001, 44.0835315], [22.8313735, 44.0794855], [22.82829, 44.083130999], [22.8000375, 44.079306], [22.7983945, 44.075838], [22.8016650000001, 44.0649450000001], [22.7956295000001, 44.059848001], [22.7967475, 44.0573475000001], [22.7957430000001, 44.0513205], [22.7953410000001, 44.0506605], [22.7690670000001, 44.0639904990001], [22.7661825000001, 44.0641465], [22.7628375, 44.0569090000001], [22.7583565, 44.0591555], [22.7507665000001, 44.0603800000001], [22.7508945000001, 44.064016], [22.7554235000001, 44.0642225], [22.7565260000001, 44.0682380000001], [22.741143, 44.071586], [22.7410560000001, 44.0683250010001], [22.7353575000001, 44.0640760000001], [22.7333365000001, 44.0666600000001], [22.7101295000001, 44.0621315000001], [22.6905465, 44.0565015000001], [22.6786795, 44.0481980010001], [22.668397, 44.0453719990001], [22.6541795000001, 44.050371], [22.6393515, 44.0422184990001], [22.6275690000001, 44.0293745000001], [22.6288795, 44.0288140000001], [22.6312290000001, 44.0252140000001], [22.6541040000001, 44.0241940000001], [22.6571355, 44.0211585000001], [22.6525795000001, 44.0180165], [22.6422265, 44.019431], [22.625815, 44.0145765], [22.6132475000001, 44.0091400000001], [22.5970590000001, 43.9964825000001], [22.6221340000001, 43.9952205000001], [22.624334, 43.9957210000001], [22.6245450000001, 43.9988995], [22.6311565, 43.9983495000001], [22.639217, 43.9967245], [22.6485010000001, 43.9922735000001], [22.6477755, 43.9895710010001], [22.656569, 43.9889885000001], [22.681454, 43.9755050000001], [22.6857620000001, 43.973644499], [22.6918210000001, 43.9685635000001], [22.6759415000001, 43.9530139990001], [22.6779315000001, 43.9485500000001], [22.6812475, 43.9489215], [22.6859455000001, 43.947322], [22.6856710000001, 43.9411985], [22.674606, 43.9283315000001], [22.6654295000001, 43.9253325010001], [22.665103, 43.9248285000001], [22.6662835000001, 43.917626], [22.6627995000001, 43.91143], [22.6676795000001, 43.9098205000001], [22.6853885, 43.9126505], [22.6849585000001, 43.9109625], [22.6867695, 43.9109255000001], [22.70102, 43.9207445010001], [22.7056085, 43.9195265010001], [22.7111100000001, 43.923026], [22.7164455000001, 43.9152725000001], [22.7239250000001, 43.9100745000001], [22.7307750000001, 43.9116990000001], [22.7332705000001, 43.9066090000001], [22.731296, 43.9057635], [22.7529450000001, 43.9040665000001], [22.7500635000001, 43.8966635], [22.746065, 43.8906685000001], [22.7348605, 43.8716820000001], [22.7499770000001, 43.8713480010001], [22.749469, 43.8642145000001], [22.7527390000001, 43.8486060000001], [22.7561700000001, 43.8482195], [22.7599745000001, 43.8465100010001], [22.766086, 43.8373585000001], [22.7725810000001, 43.8345664990001], [22.7629250000001, 43.8235200010001], [22.7502895000001, 43.8128600000001], [22.7495115, 43.8087770010001], [22.7541805000001, 43.8088485000001], [22.750143, 43.8016000000001], [22.7673215, 43.8006695], [22.7678985000001, 43.7975065], [22.7884385, 43.7935450000001], [22.7946405000001, 43.7965305000001], [22.8063060000001, 43.804833], [22.8246785000001, 43.8095660000001], [22.8313775, 43.8235025010001], [22.8452120000001, 43.826423499], [22.846952, 43.825972], [22.8502015, 43.8240470000001], [22.850064, 43.8268725], [22.8684880000001, 43.8272710000001], [22.8770860000001, 43.8299690010001], [22.8791350000001, 43.8334780000001], [22.8665100000001, 43.8383115], [22.8592165000001, 43.8450740000001], [22.852963, 43.850468], [22.8438775000001, 43.8664840000001], [22.8419125, 43.8727595], [22.838719, 43.8778520010001], [22.8382795000001, 43.8866915], [22.8476615000001, 43.9042115], [22.8620550000001, 43.9238995000001], [22.8635360000001, 43.932873], [22.860242, 43.933773999], [22.868254, 43.9476255000001], [22.878725, 43.981567501], [22.891735, 43.9917965000001], [22.9263825, 44.000389], [22.9481135, 44.0047660000001], [22.969749, 44.008517999], [22.9707340000001, 44.0057160000001], [22.978601, 44.006374], [23.0100495, 44.0134300010001], [23.0165345, 44.0186275], [23.0138920000001, 44.020568999], [23.030531, 44.0354795000001], [23.0378115, 44.044676], [23.045898, 44.0637495], [23.0372855000001, 44.0795945], [23.024345, 44.0893605000001], [23.013205, 44.0936835000001], [23.0038705000001, 44.095450999], [22.9663995, 44.098525], [22.9254745000001, 44.1021390000001], [22.9236625, 44.102965], [22.9198450000001, 44.0962480000001], [22.9135170000001, 44.0981] ] ] },
+    "properties": {
+      "ISO": "BG-VID09",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "10971",
+      "NAME_2": "Видин",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.685842, 43.654734499], [22.698948, 43.652776999], [22.7053930000001, 43.6616010000001], [22.7108430000001, 43.6691490000001], [22.7139095000001, 43.6727965000001], [22.7138575000001, 43.6779485010001], [22.6930655, 43.6973799990001], [22.680485, 43.7094680000001], [22.6689835, 43.7128420000001], [22.6659125, 43.715089], [22.6560635000001, 43.6998975000001], [22.6452830000001, 43.700323], [22.6355935, 43.707382001], [22.6337715, 43.710112], [22.6394100000001, 43.7112265000001], [22.639397, 43.7155175], [22.6349095, 43.7242525], [22.6274775000001, 43.728434501], [22.6294270000001, 43.7343460000001], [22.6353815000001, 43.7349130000001], [22.6377585000001, 43.7361785000001], [22.634663, 43.7424875], [22.630429, 43.7443055000001], [22.6203360000001, 43.7402730010001], [22.6080655000001, 43.7483780000001], [22.606768, 43.7501950000001], [22.5945360000001, 43.7459045000001], [22.5747240000001, 43.7295050000001], [22.567546, 43.7295435], [22.5592895, 43.7332225000001], [22.5611775, 43.7444550000001], [22.5504290000001, 43.741021], [22.5477765000001, 43.749669], [22.545392, 43.750046], [22.515201, 43.7347015010001], [22.5013355, 43.7246025000001], [22.4939105, 43.7170170000001], [22.4777005, 43.717807001], [22.464566, 43.709188], [22.4604625000001, 43.6989869990001], [22.4491365000001, 43.6824605], [22.4396320000001, 43.6738360000001], [22.4590845000001, 43.659], [22.4764865000001, 43.6575525000001], [22.482512, 43.6529995000001], [22.4838760000001, 43.647257], [22.488958, 43.6428925000001], [22.491855, 43.6391715], [22.491298, 43.6333710000001], [22.48184, 43.6253400000001], [22.488501, 43.618099], [22.4936520000001, 43.6004320010001], [22.4872730000001, 43.5911115010001], [22.496159, 43.5841285000001], [22.4949385, 43.57759], [22.4878145000001, 43.568633], [22.4900715000001, 43.5559234990001], [22.493777, 43.550868501], [22.502796, 43.5414645000001], [22.5015125000001, 43.5295045], [22.5066695, 43.5163235000001], [22.5244920000001, 43.4860285], [22.5333285, 43.4714070000001], [22.553912, 43.4616400000001], [22.5758740000001, 43.4638820000001], [22.580228, 43.482262], [22.5771255, 43.4931545000001], [22.582858, 43.5118985], [22.5937555, 43.5229380000001], [22.6027455, 43.5251840000001], [22.6010245000001, 43.5321525000001], [22.6084530000001, 43.5430865000001], [22.5985670000001, 43.5442550000001], [22.587209, 43.5515125000001], [22.585724, 43.5600915000001], [22.5895640000001, 43.5697070000001], [22.5946105, 43.5713535], [22.5955375, 43.57937], [22.6059435, 43.5735710010001], [22.6271185000001, 43.5735005000001], [22.6400600000001, 43.56868], [22.6430370000001, 43.564649], [22.6501490000001, 43.5637655000001], [22.666728, 43.5736640000001], [22.686514, 43.587096], [22.697389, 43.6013605000001], [22.70097, 43.6019205000001], [22.7035760000001, 43.5994420010001], [22.7056850000001, 43.586119001], [22.706104, 43.5766495], [22.6953530000001, 43.5700570000001], [22.6978515000001, 43.5628995000001], [22.699734, 43.5591200000001], [22.7158345, 43.5556275000001], [22.7249615000001, 43.5565535000001], [22.7294145000001, 43.560934], [22.751112, 43.5697855000001], [22.7575985, 43.574125499], [22.7593360000001, 43.583424], [22.7676635, 43.5899465000001], [22.7756405000001, 43.5916300000001], [22.7781870000001, 43.5926929990001], [22.777988, 43.595676], [22.768721, 43.5995550000001], [22.7527825, 43.598910499], [22.7458275000001, 43.6008915000001], [22.7471545000001, 43.6041290000001], [22.7349925, 43.6045725000001], [22.7194075, 43.6122930000001], [22.7300060000001, 43.6133905], [22.7310600000001, 43.6171245], [22.7083920000001, 43.627052], [22.7031880000001, 43.6343455000001], [22.6889855000001, 43.6427684990001], [22.6853505, 43.6482375], [22.685842, 43.654734499] ] ] },
+    "properties": {
+      "ISO": "BG-VID01",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "3616",
+      "NAME_2": "Белоградчик",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.5118570000001, 43.81246], [22.504869, 43.8067740000001], [22.484051, 43.8032935000001], [22.4671295000001, 43.8055895000001], [22.456785, 43.812443], [22.4560900000001, 43.817522501], [22.4437725, 43.8121795000001], [22.4321590000001, 43.811837999], [22.4186985000001, 43.8148875000001], [22.4087485000001, 43.8302100010001], [22.4076175000001, 43.834165999], [22.4105080000001, 43.8382855], [22.3970170000001, 43.8361310000001], [22.3939740000001, 43.840199], [22.3821790000001, 43.8332955010001], [22.3816155000001, 43.8296510000001], [22.3700415000001, 43.8309745], [22.3659855, 43.8253805000001], [22.3606315000001, 43.823222], [22.3571305, 43.8094820000001], [22.3840425000001, 43.7678745000001], [22.3953875, 43.7592795], [22.4026905000001, 43.7589139990001], [22.399211, 43.7545260000001], [22.3982785000001, 43.7367860000001], [22.4015865000001, 43.7239315000001], [22.4046545, 43.716457], [22.4078375, 43.695975], [22.4246515, 43.678409], [22.4396320000001, 43.6738360000001], [22.4491365000001, 43.6824605], [22.4604625000001, 43.6989869990001], [22.464566, 43.709188], [22.4777005, 43.717807001], [22.4939105, 43.7170170000001], [22.5013355, 43.7246025000001], [22.515201, 43.7347015010001], [22.545392, 43.750046], [22.5477765000001, 43.749669], [22.5504290000001, 43.741021], [22.5611775, 43.7444550000001], [22.5592895, 43.7332225000001], [22.567546, 43.7295435], [22.5747240000001, 43.7295050000001], [22.5945360000001, 43.7459045000001], [22.606768, 43.7501950000001], [22.6080655000001, 43.7483780000001], [22.6203360000001, 43.7402730010001], [22.630429, 43.7443055000001], [22.634663, 43.7424875], [22.6377585000001, 43.7361785000001], [22.6353815000001, 43.7349130000001], [22.644434, 43.7357210000001], [22.6617390000001, 43.7456405], [22.6735355000001, 43.7517815], [22.6815365, 43.7481665], [22.6841275, 43.7524299990001], [22.6873830000001, 43.748975], [22.6926475000001, 43.75237], [22.704617, 43.749716], [22.7115670000001, 43.761531], [22.7350415, 43.7664645], [22.7352090000001, 43.7711420000001], [22.7380590000001, 43.7850465000001], [22.743973, 43.784639999], [22.7443175, 43.789316], [22.735872, 43.7946140000001], [22.7292635000001, 43.7937055], [22.716011, 43.8000325], [22.7086055, 43.800125], [22.664045, 43.7921650000001], [22.6638545000001, 43.788557], [22.6472615000001, 43.7920765000001], [22.6411695, 43.792970999], [22.6312465, 43.7827025], [22.62062, 43.7801230000001], [22.6065750000001, 43.7785065], [22.5924655000001, 43.7801630000001], [22.5931210000001, 43.7847235], [22.5748585000001, 43.7819200000001], [22.5682430000001, 43.7920975000001], [22.5642605, 43.8015875], [22.56739, 43.8053575000001], [22.5561835, 43.8018065], [22.5481770000001, 43.7975950000001], [22.534992, 43.8000239990001], [22.533402, 43.8058555000001], [22.5133955000001, 43.8140530000001], [22.5118570000001, 43.81246] ] ] },
+    "properties": {
+      "ISO": "BG-VID25",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "46245",
+      "NAME_2": "Макреш",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.7527390000001, 43.8486060000001], [22.749469, 43.8642145000001], [22.7499770000001, 43.8713480010001], [22.7348605, 43.8716820000001], [22.746065, 43.8906685000001], [22.7500635000001, 43.8966635], [22.7529450000001, 43.9040665000001], [22.731296, 43.9057635], [22.7332705000001, 43.9066090000001], [22.7307750000001, 43.9116990000001], [22.7239250000001, 43.9100745000001], [22.7164455000001, 43.9152725000001], [22.7111100000001, 43.923026], [22.7056085, 43.9195265010001], [22.70102, 43.9207445010001], [22.6867695, 43.9109255000001], [22.6849585000001, 43.9109625], [22.6853885, 43.9126505], [22.6733365000001, 43.905355], [22.6537445000001, 43.899435], [22.6506815000001, 43.9033650000001], [22.641222, 43.9028015010001], [22.6384780000001, 43.9014925000001], [22.6382355000001, 43.896652499], [22.6056615000001, 43.8882055], [22.601566, 43.8858490000001], [22.6014250000001, 43.8827380000001], [22.6026045, 43.8777889990001], [22.624153, 43.8762975000001], [22.6160075, 43.8660805000001], [22.6135425000001, 43.8616645000001], [22.6207745, 43.859071], [22.6060455000001, 43.8451870010001], [22.5963415000001, 43.8405320000001], [22.5835450000001, 43.8442710000001], [22.5808950000001, 43.8437680010001], [22.5812985000001, 43.8412330000001], [22.57485, 43.8436170000001], [22.5582455000001, 43.8397865000001], [22.5562995, 43.8440595000001], [22.551631, 43.8452825000001], [22.5475950000001, 43.8468105000001], [22.5371165, 43.8469515], [22.528537, 43.8453805], [22.5361755000001, 43.8331230000001], [22.5074685000001, 43.8208460000001], [22.516553, 43.8187045000001], [22.5133955000001, 43.8140530000001], [22.533402, 43.8058555000001], [22.534992, 43.8000239990001], [22.5481770000001, 43.7975950000001], [22.5561835, 43.8018065], [22.56739, 43.8053575000001], [22.5642605, 43.8015875], [22.5682430000001, 43.7920975000001], [22.5748585000001, 43.7819200000001], [22.5931210000001, 43.7847235], [22.5924655000001, 43.7801630000001], [22.6065750000001, 43.7785065], [22.62062, 43.7801230000001], [22.6312465, 43.7827025], [22.6411695, 43.792970999], [22.6472615000001, 43.7920765000001], [22.6638545000001, 43.788557], [22.664045, 43.7921650000001], [22.7086055, 43.800125], [22.716011, 43.8000325], [22.7292635000001, 43.7937055], [22.735872, 43.7946140000001], [22.7443175, 43.789316], [22.7447540000001, 43.7896885000001], [22.750143, 43.8016000000001], [22.7541805000001, 43.8088485000001], [22.7495115, 43.8087770010001], [22.7502895000001, 43.8128600000001], [22.7629250000001, 43.8235200010001], [22.7725810000001, 43.8345664990001], [22.766086, 43.8373585000001], [22.7599745000001, 43.8465100010001], [22.7561700000001, 43.8482195], [22.7527390000001, 43.8486060000001] ] ] },
+    "properties": {
+      "ISO": "BG-VID15",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "17645",
+      "NAME_2": "Грамада",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.4925920000001, 43.902252], [22.4944285, 43.906121], [22.4831600000001, 43.9177745000001], [22.480508, 43.9248420000001], [22.4782485000001, 43.9404664990001], [22.4741205, 43.9456365], [22.4657260000001, 43.9480865], [22.435011, 43.9470315], [22.4084730000001, 43.9411650000001], [22.4072795000001, 43.937935999], [22.3883690000001, 43.926728], [22.394572, 43.9090895000001], [22.3895810000001, 43.8900674990001], [22.3795675000001, 43.8475280000001], [22.3700415000001, 43.8309745], [22.3816155000001, 43.8296510000001], [22.3821790000001, 43.8332955010001], [22.3939740000001, 43.840199], [22.3970170000001, 43.8361310000001], [22.4105080000001, 43.8382855], [22.4076175000001, 43.834165999], [22.4087485000001, 43.8302100010001], [22.4186985000001, 43.8148875000001], [22.4321590000001, 43.811837999], [22.4437725, 43.8121795000001], [22.4560900000001, 43.817522501], [22.456785, 43.812443], [22.4671295000001, 43.8055895000001], [22.484051, 43.8032935000001], [22.504869, 43.8067740000001], [22.5118570000001, 43.81246], [22.5133955000001, 43.8140530000001], [22.516553, 43.8187045000001], [22.5074685000001, 43.8208460000001], [22.5361755000001, 43.8331230000001], [22.528537, 43.8453805], [22.5371165, 43.8469515], [22.5475950000001, 43.8468105000001], [22.551631, 43.8452825000001], [22.5562995, 43.8440595000001], [22.5582455000001, 43.8397865000001], [22.57485, 43.8436170000001], [22.5812985000001, 43.8412330000001], [22.5808950000001, 43.8437680010001], [22.5835450000001, 43.8442710000001], [22.5963415000001, 43.8405320000001], [22.6060455000001, 43.8451870010001], [22.6207745, 43.859071], [22.6135425000001, 43.8616645000001], [22.6160075, 43.8660805000001], [22.624153, 43.8762975000001], [22.6026045, 43.8777889990001], [22.6014250000001, 43.8827380000001], [22.601566, 43.8858490000001], [22.6056615000001, 43.8882055], [22.6382355000001, 43.896652499], [22.6384780000001, 43.9014925000001], [22.641222, 43.9028015010001], [22.6506815000001, 43.9033650000001], [22.6537445000001, 43.899435], [22.6733365000001, 43.905355], [22.6853885, 43.9126505], [22.6676795000001, 43.9098205000001], [22.6627995000001, 43.91143], [22.6662835000001, 43.917626], [22.665103, 43.9248285000001], [22.6654295000001, 43.9253325010001], [22.674606, 43.9283315000001], [22.6856710000001, 43.9411985], [22.6859455000001, 43.947322], [22.6812475, 43.9489215], [22.6779315000001, 43.9485500000001], [22.6759415000001, 43.9530139990001], [22.6918210000001, 43.9685635000001], [22.6857620000001, 43.973644499], [22.681454, 43.9755050000001], [22.656569, 43.9889885000001], [22.6477755, 43.9895710010001], [22.6485010000001, 43.9922735000001], [22.639217, 43.9967245], [22.6311565, 43.9983495000001], [22.6245450000001, 43.9988995], [22.624334, 43.9957210000001], [22.6221340000001, 43.9952205000001], [22.5970590000001, 43.9964825000001], [22.5886170000001, 43.9915075000001], [22.5797440000001, 43.9826905], [22.5823535000001, 43.9678539990001], [22.5894260000001, 43.9658860000001], [22.5834835000001, 43.956197999], [22.5730970000001, 43.9489205], [22.5711735, 43.94154], [22.5738720000001, 43.9381710000001], [22.573833, 43.9362175000001], [22.560212, 43.9358535010001], [22.5543890000001, 43.932874], [22.5059215000001, 43.90493], [22.5002385, 43.8988385000001], [22.4927855, 43.8973130010001], [22.4849125000001, 43.9004360000001], [22.4925920000001, 43.902252] ] ] },
+    "properties": {
+      "ISO": "BG-VID22",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "40525",
+      "NAME_2": "Кула",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [22.70097, 43.6019205000001], [22.697389, 43.6013605000001], [22.686514, 43.587096], [22.666728, 43.5736640000001], [22.6501490000001, 43.5637655000001], [22.6430370000001, 43.564649], [22.6400600000001, 43.56868], [22.6271185000001, 43.5735005000001], [22.6059435, 43.5735710010001], [22.5955375, 43.57937], [22.5946105, 43.5713535], [22.5895640000001, 43.5697070000001], [22.585724, 43.5600915000001], [22.587209, 43.5515125000001], [22.5985670000001, 43.5442550000001], [22.6084530000001, 43.5430865000001], [22.6010245000001, 43.5321525000001], [22.6027455, 43.5251840000001], [22.5937555, 43.5229380000001], [22.582858, 43.5118985], [22.5771255, 43.4931545000001], [22.580228, 43.482262], [22.5758740000001, 43.4638820000001], [22.586796, 43.4525925], [22.5914585, 43.4401754990001], [22.5977805000001, 43.4356564990001], [22.6275715, 43.4280825000001], [22.6386840000001, 43.433411001], [22.6611570000001, 43.425932001], [22.659615, 43.422986501], [22.6663355000001, 43.4126230000001], [22.6669755, 43.4027475010001], [22.6799045000001, 43.394303], [22.7231400000001, 43.395464501], [22.7325010000001, 43.3894300010001], [22.7474540000001, 43.3866130000001], [22.7556050000001, 43.3975935010001], [22.767552, 43.4067380010001], [22.7754705, 43.4179505020001], [22.785959, 43.434018], [22.7860000000001, 43.4340675], [22.7878355, 43.439916], [22.8030985, 43.4478295000001], [22.8131855, 43.4646895000001], [22.8126705, 43.4712275000001], [22.804606, 43.4760875000001], [22.7957710000001, 43.4862355000001], [22.8027815, 43.5040750000001], [22.8235730000001, 43.4954525000001], [22.825929, 43.5013660000001], [22.8249520000001, 43.5063885000001], [22.8344065000001, 43.5158365], [22.8233970000001, 43.523554], [22.828542, 43.531667999], [22.8260855, 43.5376850000001], [22.8259835000001, 43.548842999], [22.8314885, 43.5598865000001], [22.831331, 43.5654795], [22.8262875, 43.570798], [22.8154295000001, 43.5742814990001], [22.8111430000001, 43.5726290000001], [22.8000645000001, 43.5771165], [22.7939795, 43.571054001], [22.7842600000001, 43.5689725], [22.780448, 43.571496], [22.7802605000001, 43.5752955], [22.77671, 43.5821565000001], [22.7756405000001, 43.5916300000001], [22.7676635, 43.5899465000001], [22.7593360000001, 43.583424], [22.7575985, 43.574125499], [22.751112, 43.5697855000001], [22.7294145000001, 43.560934], [22.7249615000001, 43.5565535000001], [22.7158345, 43.5556275000001], [22.699734, 43.5591200000001], [22.6978515000001, 43.5628995000001], [22.6953530000001, 43.5700570000001], [22.706104, 43.5766495], [22.7056850000001, 43.586119001], [22.7035760000001, 43.5994420010001], [22.70097, 43.6019205000001] ] ] },
+    "properties": {
+      "ISO": "BG-VID37",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "10971",
+      "NAME_1": "VID",
+      "TYPE_1": "Област",
+      "ID_2": "81757",
+      "NAME_2": "Чупрене",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.8580905000001, 43.5934435], [23.8986630000001, 43.5859150000001], [23.9212105, 43.5885345], [23.9312815000001, 43.5903425000001], [23.9422530000001, 43.6022595000001], [23.9645390000001, 43.5984575000001], [23.9663445, 43.6051135000001], [23.9674015000001, 43.609275], [23.950225, 43.6139635000001], [23.955769, 43.6246935], [23.9422495000001, 43.6303820000001], [23.946222, 43.651646], [23.944064, 43.6557050000001], [23.9347780000001, 43.6584665], [23.9347935000001, 43.669538], [23.939064, 43.673415], [23.9392255000001, 43.6778465000001], [23.9367810000001, 43.6817675], [23.919385, 43.684399], [23.9224005, 43.6930135000001], [23.9010455000001, 43.6972220000001], [23.9132615, 43.7053020000001], [23.8859785000001, 43.7183415000001], [23.8660225, 43.7245915], [23.8706865, 43.7298760000001], [23.8638540000001, 43.7323425000001], [23.8732185000001, 43.7443870000001], [23.8757925, 43.7527325], [23.8734855000001, 43.7529855000001], [23.8660785000001, 43.7544975010001], [23.8572245, 43.734363], [23.8458715, 43.720754], [23.8357740000001, 43.708234501], [23.8310490000001, 43.697391999], [23.8354560000001, 43.6962355000001], [23.8336355000001, 43.6759730000001], [23.8253465, 43.6658715], [23.8148630000001, 43.666903], [23.8070155, 43.6628955], [23.7959825, 43.6548750000001], [23.7823470000001, 43.6558945000001], [23.78056, 43.6537920000001], [23.7894160000001, 43.6523415], [23.7885145000001, 43.6505265000001], [23.7605300000001, 43.6424045000001], [23.7409010000001, 43.6427735], [23.7247645000001, 43.6354700000001], [23.7170965, 43.634015], [23.7037990000001, 43.6228125000001], [23.6899290000001, 43.6254440000001], [23.69021, 43.6177415010001], [23.6855785000001, 43.611318001], [23.6863945000001, 43.6086245000001], [23.7070350000001, 43.6021805], [23.709725, 43.5986995000001], [23.7070925, 43.5938665000001], [23.7192725, 43.5905995000001], [23.7347385000001, 43.5867435000001], [23.7375355, 43.5920485], [23.7652355000001, 43.5846090000001], [23.7802150000001, 43.5866015], [23.7803525, 43.5839110000001], [23.774928, 43.583879], [23.7721525000001, 43.5738815], [23.7739235, 43.566593501], [23.7913695, 43.5603575000001], [23.7950300000001, 43.5660530000001], [23.8226910000001, 43.5593500000001], [23.8270945, 43.5589905], [23.8343245, 43.5746595000001], [23.8455500000001, 43.5806699990001], [23.8580905000001, 43.5934435] ] ] },
+    "properties": {
+      "ISO": "BG-VRC28",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "48043",
+      "NAME_2": "Мизия",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.7621215, 43.548998999], [23.7739235, 43.566593501], [23.7721525000001, 43.5738815], [23.774928, 43.583879], [23.7803525, 43.5839110000001], [23.7802150000001, 43.5866015], [23.7652355000001, 43.5846090000001], [23.7375355, 43.5920485], [23.7347385000001, 43.5867435000001], [23.7192725, 43.5905995000001], [23.7070925, 43.5938665000001], [23.709725, 43.5986995000001], [23.7070350000001, 43.6021805], [23.6863945000001, 43.6086245000001], [23.6855785000001, 43.611318001], [23.69021, 43.6177415010001], [23.6899290000001, 43.6254440000001], [23.6799940000001, 43.6295675000001], [23.6840280000001, 43.633626], [23.6600695000001, 43.6417825], [23.6618280000001, 43.6445015], [23.6409090000001, 43.6498255000001], [23.6383765, 43.657342], [23.600808, 43.6689535], [23.5986765000001, 43.6653790010001], [23.591711, 43.6676075], [23.583824, 43.6542975], [23.5904295, 43.6525265000001], [23.5798925, 43.6349935000001], [23.5883555, 43.6323105000001], [23.5861035, 43.6285615000001], [23.580816, 43.6196515], [23.574936, 43.6161310000001], [23.5712135000001, 43.6139890000001], [23.564914, 43.6147685], [23.5575595, 43.6068645], [23.5550465000001, 43.6076375000001], [23.5491410000001, 43.5995185], [23.556095, 43.594769], [23.5453745, 43.5775885], [23.5462995, 43.5729620000001], [23.5702065, 43.564959999], [23.5837095000001, 43.5550255000001], [23.5874850000001, 43.5566885000001], [23.5919660000001, 43.54929], [23.6013985000001, 43.5524815000001], [23.6136375, 43.5471625000001], [23.6129465000001, 43.5433360000001], [23.6396045000001, 43.53128], [23.636919, 43.5224690000001], [23.6385030000001, 43.5227820000001], [23.6443540000001, 43.518535], [23.651307, 43.5241115000001], [23.6711445, 43.5111225000001], [23.705652, 43.4991045], [23.7044300000001, 43.49706], [23.7370230000001, 43.4941615000001], [23.7380555, 43.5001050000001], [23.7412495, 43.5185225000001], [23.7401975000001, 43.5220865000001], [23.7511680000001, 43.5355905000001], [23.7598545000001, 43.5325255000001], [23.7686560000001, 43.5458145000001], [23.7621215, 43.548998999] ] ] },
+    "properties": {
+      "ISO": "BG-VRC35",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "77102",
+      "NAME_2": "Хайредин",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [24.095468, 43.7009235], [24.0922380000001, 43.7012455], [24.0720925000001, 43.7109350000001], [24.0733825, 43.7123740000001], [24.0695725, 43.7150165000001], [24.055819, 43.7204780000001], [24.0308685000001, 43.7269305], [24.0248705000001, 43.7281139990001], [23.9762605, 43.7422524990001], [23.910224, 43.7481915000001], [23.8856185000001, 43.7516555], [23.8757925, 43.7527325], [23.8732185000001, 43.7443870000001], [23.8638540000001, 43.7323425000001], [23.8706865, 43.7298760000001], [23.8660225, 43.7245915], [23.8859785000001, 43.7183415000001], [23.9132615, 43.7053020000001], [23.9010455000001, 43.6972220000001], [23.9224005, 43.6930135000001], [23.919385, 43.684399], [23.9367810000001, 43.6817675], [23.9392255000001, 43.6778465000001], [23.939064, 43.673415], [23.9347935000001, 43.669538], [23.9347780000001, 43.6584665], [23.944064, 43.6557050000001], [23.946222, 43.651646], [23.9422495000001, 43.6303820000001], [23.955769, 43.6246935], [23.950225, 43.6139635000001], [23.9674015000001, 43.609275], [23.9663445, 43.6051135000001], [23.9749855000001, 43.6039235000001], [23.983569, 43.5978640000001], [24.0227735, 43.5929530010001], [24.027881, 43.6050290000001], [24.043372, 43.6018349990001], [24.0381335000001, 43.6090130010001], [24.054178, 43.6094135000001], [24.072596, 43.5996240000001], [24.087473, 43.6143720000001], [24.1177035000001, 43.599747], [24.1269140000001, 43.5952495000001], [24.133454, 43.5977485000001], [24.141876, 43.6064070000001], [24.1583625000001, 43.606567], [24.1680855000001, 43.6029340000001], [24.2067625, 43.646804], [24.2135985, 43.646441999], [24.223709, 43.6437685000001], [24.2660020000001, 43.6334825000001], [24.2600660000001, 43.636695], [24.261381, 43.641082], [24.2683690000001, 43.640164], [24.2761885, 43.6524600000001], [24.278481, 43.652316], [24.3017655, 43.6452640000001], [24.3133955000001, 43.6607440000001], [24.318477, 43.6865465000001], [24.3241320000001, 43.6995680000001], [24.319625, 43.6999495000001], [24.2599550000001, 43.692736999], [24.2554335, 43.6913930000001], [24.1988695000001, 43.684610499], [24.195768, 43.6839035], [24.1733445, 43.6826175], [24.112719, 43.6995665000001], [24.095468, 43.7009235] ] ] },
+    "properties": {
+      "ISO": "BG-VRC31",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "54020",
+      "NAME_2": "Оряхово",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.6385030000001, 43.5227820000001], [23.636919, 43.5224690000001], [23.6284695000001, 43.515545499], [23.601793, 43.522637], [23.6036365000001, 43.5204145000001], [23.5845355000001, 43.522234], [23.5822440000001, 43.5184129990001], [23.5751030000001, 43.5162455], [23.5706445000001, 43.5058135], [23.5627535, 43.5047045000001], [23.562122, 43.4987800000001], [23.5683875, 43.4942465], [23.552759, 43.4880855000001], [23.5482915000001, 43.495802], [23.5313395000001, 43.492918999], [23.5115885000001, 43.4857185000001], [23.490954, 43.4935515000001], [23.492916, 43.4963805], [23.4724580000001, 43.509663], [23.4654790000001, 43.511585], [23.4530365000001, 43.4994975000001], [23.4459285, 43.5028975000001], [23.44003, 43.4898805], [23.435169, 43.4909985], [23.4272290000001, 43.472810001], [23.4195120000001, 43.4715595000001], [23.4105490000001, 43.4602180000001], [23.4066920000001, 43.4536745], [23.3973290000001, 43.443973], [23.4043835000001, 43.4405824990001], [23.3999335, 43.4327320000001], [23.4091690000001, 43.428548], [23.4063350000001, 43.425147999], [23.41123, 43.4220355], [23.417153, 43.4120165], [23.4140245, 43.4105650000001], [23.4131325000001, 43.406715999], [23.4170730000001, 43.3918465], [23.4130745000001, 43.3908125], [23.3984750000001, 43.38437], [23.3954285, 43.3713475000001], [23.385855, 43.3724970000001], [23.3822450000001, 43.3594285], [23.3783795000001, 43.3561275000001], [23.379395, 43.351979999], [23.3765155, 43.3490640000001], [23.3803730000001, 43.3404970010001], [23.3611285000001, 43.331261], [23.35319, 43.3235010000001], [23.355059, 43.3210910000001], [23.3511335000001, 43.3128735000001], [23.3495705, 43.313225501], [23.3401975, 43.3113145], [23.330944, 43.303223001], [23.3330455, 43.2991170000001], [23.3279225000001, 43.2949799990001], [23.3243125000001, 43.2965305010001], [23.3174325000001, 43.2915355010001], [23.3185310000001, 43.2776715000001], [23.321649, 43.2746290000001], [23.3297545, 43.269366], [23.3318025, 43.2741695], [23.3384875, 43.272906], [23.3414080000001, 43.2705260000001], [23.3460685000001, 43.2641520010001], [23.354202, 43.260272], [23.367241, 43.2563615], [23.3768630000001, 43.258018], [23.3987765000001, 43.2577965], [23.412543, 43.2575840000001], [23.4206070000001, 43.262552999], [23.421766, 43.2851140000001], [23.4410935, 43.2972675], [23.444917, 43.3009015010001], [23.4415685000001, 43.3092125000001], [23.4377250000001, 43.3100325], [23.4373900000001, 43.315523], [23.4517975000001, 43.3258065000001], [23.4589370000001, 43.3268445000001], [23.4667010000001, 43.3217765000001], [23.467654, 43.3248965000001], [23.474519, 43.328498], [23.471865, 43.3323965000001], [23.4924500000001, 43.3503235000001], [23.5067395, 43.3517425000001], [23.5168385000001, 43.360571], [23.5263815000001, 43.3654455000001], [23.534548, 43.3663995000001], [23.5350545000001, 43.3657295], [23.5458560000001, 43.3591995000001], [23.5736655000001, 43.3640530000001], [23.581599, 43.3723200000001], [23.5922215000001, 43.373835], [23.6003085, 43.3767690000001], [23.594882, 43.388763], [23.5848565000001, 43.396488], [23.5837225000001, 43.401666999], [23.5854215000001, 43.4067380000001], [23.5853945000001, 43.4080425000001], [23.5797920000001, 43.4214815010001], [23.5625375000001, 43.4350755], [23.5706765, 43.4401355000001], [23.5945630000001, 43.468942499], [23.608193, 43.4736815000001], [23.606882, 43.481414], [23.6180175000001, 43.485509], [23.631961, 43.4908115000001], [23.631399, 43.4979520000001], [23.6401925000001, 43.5098485010001], [23.6443540000001, 43.518535], [23.6385030000001, 43.5227820000001] ] ] },
+    "properties": {
+      "ISO": "BG-VRC21",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "39846",
+      "NAME_2": "Криводол",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.7044300000001, 43.49706], [23.705652, 43.4991045], [23.6711445, 43.5111225000001], [23.651307, 43.5241115000001], [23.6443540000001, 43.518535], [23.6401925000001, 43.5098485010001], [23.631399, 43.4979520000001], [23.631961, 43.4908115000001], [23.6320935000001, 43.4880840000001], [23.6323790000001, 43.4834665010001], [23.6333555000001, 43.4774625000001], [23.6353015, 43.468961], [23.6472435000001, 43.4470705000001], [23.6427715, 43.440234], [23.6731475, 43.4285065], [23.6751590000001, 43.421053999], [23.673746, 43.415601], [23.6707345, 43.414005], [23.6886270000001, 43.4026245000001], [23.696677, 43.404270501], [23.7003325000001, 43.399950501], [23.7341730000001, 43.3869910000001], [23.7385915, 43.3785480010001], [23.7409510000001, 43.3671410000001], [23.747942, 43.3603340010001], [23.7563670000001, 43.3655295], [23.7643175000001, 43.3664875000001], [23.7698585000001, 43.3627440000001], [23.7696950000001, 43.3571845000001], [23.7753625, 43.3569695], [23.7740235000001, 43.3615610000001], [23.7783275, 43.3665800000001], [23.7944525, 43.3602005000001], [23.8082515, 43.3584575], [23.8096005, 43.3711420000001], [23.8286095, 43.3836935], [23.8376940000001, 43.3861550010001], [23.8450525000001, 43.4078190000001], [23.8288870000001, 43.4119405000001], [23.8286665000001, 43.4214295], [23.8184810000001, 43.4227934990001], [23.8184880000001, 43.438476999], [23.8272135, 43.450924], [23.8352430000001, 43.4534315000001], [23.8295535, 43.4630510000001], [23.8260030000001, 43.4785389990001], [23.8292430000001, 43.4954249990001], [23.823298, 43.496132], [23.8200870000001, 43.5002595], [23.7983825000001, 43.5026720010001], [23.7994350000001, 43.5084175000001], [23.794132, 43.5092930010001], [23.7822075, 43.5159310000001], [23.7797150000001, 43.517371], [23.784974, 43.520658], [23.7675445, 43.5269125], [23.7691170000001, 43.529255999], [23.7598545000001, 43.5325255000001], [23.7511680000001, 43.5355905000001], [23.7401975000001, 43.5220865000001], [23.7412495, 43.5185225000001], [23.7380555, 43.5001050000001], [23.7370230000001, 43.4941615000001], [23.7044300000001, 43.49706] ] ] },
+    "properties": {
+      "ISO": "BG-VRC05",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "5548",
+      "NAME_2": "Борован",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.7885145000001, 43.6505265000001], [23.7894160000001, 43.6523415], [23.78056, 43.6537920000001], [23.7823470000001, 43.6558945000001], [23.7959825, 43.6548750000001], [23.8070155, 43.6628955], [23.8148630000001, 43.666903], [23.8253465, 43.6658715], [23.8336355000001, 43.6759730000001], [23.8354560000001, 43.6962355000001], [23.8310490000001, 43.697391999], [23.8357740000001, 43.708234501], [23.8458715, 43.720754], [23.8572245, 43.734363], [23.8660785000001, 43.7544975010001], [23.8310945000001, 43.7658450000001], [23.832158, 43.7674910000001], [23.8277885000001, 43.768739499], [23.8104035000001, 43.7755770000001], [23.7817075, 43.7797035], [23.765141, 43.7858610000001], [23.7537100000001, 43.7978660000001], [23.755435, 43.800103], [23.7142795, 43.803548999], [23.6639650000001, 43.799293499], [23.6435035000001, 43.7943939990001], [23.6300800000001, 43.7912600000001], [23.6255235, 43.7802110000001], [23.6262570000001, 43.7637320000001], [23.6318755, 43.7319760010001], [23.6327425000001, 43.713773501], [23.6325715, 43.7081585], [23.620577, 43.7112944990001], [23.6180335, 43.7057475], [23.6025275000001, 43.6728955], [23.600808, 43.6689535], [23.6383765, 43.657342], [23.6409090000001, 43.6498255000001], [23.6618280000001, 43.6445015], [23.6600695000001, 43.6417825], [23.6840280000001, 43.633626], [23.6799940000001, 43.6295675000001], [23.6899290000001, 43.6254440000001], [23.7037990000001, 43.6228125000001], [23.7170965, 43.634015], [23.7247645000001, 43.6354700000001], [23.7409010000001, 43.6427735], [23.7605300000001, 43.6424045000001], [23.7885145000001, 43.6505265000001] ] ] },
+    "properties": {
+      "ISO": "BG-VRC20",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "37798",
+      "NAME_2": "Козлодуй",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.9627795000001, 43.2266135], [23.9561850000001, 43.2283830000001], [23.9665680000001, 43.2402050000001], [23.9592395, 43.2436765], [23.9608245000001, 43.2489705], [23.968487, 43.257484], [23.9623605, 43.2658435000001], [23.9314200000001, 43.2455550000001], [23.914658, 43.2452754990001], [23.9012300000001, 43.2478700010001], [23.8759735, 43.261058], [23.8636205, 43.2633455000001], [23.8473075000001, 43.2603685], [23.846119, 43.2476570010001], [23.857721, 43.2391190000001], [23.8585855000001, 43.2279105000001], [23.8561665, 43.226732], [23.8660135000001, 43.2208645000001], [23.856767, 43.2174350000001], [23.8573645000001, 43.2059285], [23.851506, 43.2077840000001], [23.8393205, 43.193268], [23.840721, 43.189418], [23.8551685, 43.1846105000001], [23.8609720000001, 43.1764840010001], [23.8709105, 43.1711025000001], [23.8802470000001, 43.1543735000001], [23.8882380000001, 43.147676], [23.8839275, 43.1413420000001], [23.873679, 43.1421120000001], [23.8568040000001, 43.1380510000001], [23.8549295, 43.133923], [23.8573535, 43.1240410010001], [23.855083, 43.121899], [23.843417, 43.1252835000001], [23.8406875000001, 43.1358365], [23.8255275000001, 43.1356504990001], [23.8119345000001, 43.13426], [23.8011705000001, 43.1292585], [23.8081770000001, 43.129421999], [23.801944, 43.119762], [23.8021170000001, 43.11629], [23.808524, 43.098390001], [23.8147240000001, 43.0893970000001], [23.8123215, 43.0803595], [23.8033845, 43.0667910000001], [23.8128530000001, 43.0562235000001], [23.8101600000001, 43.0518500000001], [23.8239975000001, 43.0525825], [23.850848, 43.0480074990001], [23.872872, 43.0480620010001], [23.8775285, 43.055031], [23.8777470000001, 43.053008], [23.8866870000001, 43.046053], [23.91078, 43.0450725000001], [23.9249695, 43.0408675], [23.928776, 43.0363815000001], [23.9246850000001, 43.0303520000001], [23.935169, 43.0258205000001], [23.9460405, 43.0254855000001], [23.9626430000001, 43.032222001], [23.9631005, 43.0503325], [23.971346, 43.0623285], [23.9715035, 43.0622515000001], [23.9713455, 43.0812415], [23.9593595000001, 43.0952025], [23.961712, 43.108191], [23.9651155, 43.1098860000001], [23.963832, 43.1158945], [23.9689105000001, 43.11488], [23.988567, 43.110084], [24.000886, 43.1036950000001], [24.028177, 43.10794], [24.0270315000001, 43.1121575000001], [24.0241790000001, 43.1305505010001], [24.020839, 43.13559], [24.0159465, 43.1374440000001], [24.0257705000001, 43.1516655], [24.0291950000001, 43.166954], [24.026421, 43.1724345000001], [24.021349, 43.1740645], [24.018558, 43.1784995000001], [24.0216265, 43.1844055], [24.0331415000001, 43.1943415000001], [24.028557, 43.2061594990001], [24.0171175, 43.211828], [24.0064130000001, 43.2140705], [23.99701, 43.2143770000001], [23.9916555, 43.2233555], [23.9849815000001, 43.223354], [23.9735215000001, 43.225062499], [23.9633620000001, 43.2221630000001], [23.9627795000001, 43.2266135] ] ] },
+    "properties": {
+      "ISO": "BG-VRC32",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "62997",
+      "NAME_2": "Роман",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.983569, 43.5978640000001], [23.9749855000001, 43.6039235000001], [23.9663445, 43.6051135000001], [23.9645390000001, 43.5984575000001], [23.9422530000001, 43.6022595000001], [23.9312815000001, 43.5903425000001], [23.9212105, 43.5885345], [23.8986630000001, 43.5859150000001], [23.8580905000001, 43.5934435], [23.8455500000001, 43.5806699990001], [23.8343245, 43.5746595000001], [23.8270945, 43.5589905], [23.8226910000001, 43.5593500000001], [23.7950300000001, 43.5660530000001], [23.7913695, 43.5603575000001], [23.7739235, 43.566593501], [23.7621215, 43.548998999], [23.7686560000001, 43.5458145000001], [23.7598545000001, 43.5325255000001], [23.7691170000001, 43.529255999], [23.7675445, 43.5269125], [23.784974, 43.520658], [23.7797150000001, 43.517371], [23.7822075, 43.5159310000001], [23.794132, 43.5092930010001], [23.7994350000001, 43.5084175000001], [23.7983825000001, 43.5026720010001], [23.8200870000001, 43.5002595], [23.823298, 43.496132], [23.8292430000001, 43.4954249990001], [23.8260030000001, 43.4785389990001], [23.8295535, 43.4630510000001], [23.8352430000001, 43.4534315000001], [23.8272135, 43.450924], [23.8184880000001, 43.438476999], [23.8184810000001, 43.4227934990001], [23.8286665000001, 43.4214295], [23.8288870000001, 43.4119405000001], [23.8450525000001, 43.4078190000001], [23.8376940000001, 43.3861550010001], [23.8286095, 43.3836935], [23.8096005, 43.3711420000001], [23.8082515, 43.3584575], [23.7944525, 43.3602005000001], [23.7783275, 43.3665800000001], [23.7740235000001, 43.3615610000001], [23.7753625, 43.3569695], [23.7774625000001, 43.3441720000001], [23.7866530000001, 43.340316], [23.7960560000001, 43.3414555000001], [23.7995245000001, 43.3337755000001], [23.8135960000001, 43.323450501], [23.829264, 43.3133335], [23.833696, 43.309674499], [23.8443545000001, 43.3002915000001], [23.8674105000001, 43.3099409990001], [23.884735, 43.3084470000001], [23.8911385000001, 43.306006], [23.8820275000001, 43.2911810000001], [23.8823310000001, 43.280019], [23.8857620000001, 43.2780425], [23.877104, 43.2724325], [23.8825430000001, 43.2691515000001], [23.8825340000001, 43.2661405000001], [23.8759735, 43.261058], [23.9012300000001, 43.2478700010001], [23.914658, 43.2452754990001], [23.9314200000001, 43.2455550000001], [23.9623605, 43.2658435000001], [23.9515105, 43.2745], [23.9710985, 43.2904485], [23.9733785, 43.2952995000001], [23.966843, 43.3052335], [23.9672855000001, 43.3152165000001], [23.9573120000001, 43.3412275000001], [23.9654605000001, 43.3455124990001], [23.964145, 43.3556385000001], [23.9665295, 43.3588405], [23.989155, 43.3620635], [23.9951165000001, 43.3638155], [23.993863, 43.3831385], [24.0006035000001, 43.395701], [24.0076215, 43.3919735000001], [24.0175505, 43.4002580000001], [24.02018, 43.4090210000001], [24.0237185, 43.4073475000001], [24.0282325000001, 43.4137535], [24.0378920000001, 43.4184705000001], [24.0480775, 43.4213305010001], [24.0615235000001, 43.4394990000001], [24.0729585, 43.4510935000001], [24.0595345, 43.4563174990001], [24.0619875, 43.4607940010001], [24.050375, 43.466981], [24.0459500000001, 43.4688115000001], [24.018198, 43.4729285000001], [24.0211985, 43.4843525000001], [24.0130455, 43.4836510000001], [24.001271, 43.5246055000001], [23.9970435000001, 43.529116], [23.9868445000001, 43.5316585000001], [23.9929760000001, 43.5440760000001], [24.0018000000001, 43.5417825000001], [24.0227735, 43.5929530010001], [23.983569, 43.5978640000001] ] ] },
+    "properties": {
+      "ISO": "BG-VRC08",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "7702",
+      "NAME_2": "Бяла Слатина",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.6900665000001, 43.2497115], [23.698089, 43.2432420000001], [23.7095805000001, 43.2409035000001], [23.7245050000001, 43.254416], [23.7275925000001, 43.2632980000001], [23.7287605000001, 43.2594920000001], [23.7261215, 43.249875], [23.72959, 43.2436089990001], [23.7319200000001, 43.241275], [23.7453285, 43.240731], [23.7619985000001, 43.2359230000001], [23.7688185000001, 43.2425065], [23.778467, 43.242557], [23.7753980000001, 43.2519865], [23.7769880000001, 43.2565955000001], [23.7818770000001, 43.2558405], [23.7915380000001, 43.2608430010001], [23.7957475000001, 43.272456], [23.8021370000001, 43.2735955000001], [23.817329, 43.269149999], [23.8217215, 43.2624795], [23.8359025, 43.2649220000001], [23.8473075000001, 43.2603685], [23.8636205, 43.2633455000001], [23.8759735, 43.261058], [23.8825340000001, 43.2661405000001], [23.8825430000001, 43.2691515000001], [23.877104, 43.2724325], [23.8857620000001, 43.2780425], [23.8823310000001, 43.280019], [23.8820275000001, 43.2911810000001], [23.8911385000001, 43.306006], [23.884735, 43.3084470000001], [23.8674105000001, 43.3099409990001], [23.8443545000001, 43.3002915000001], [23.833696, 43.309674499], [23.829264, 43.3133335], [23.8135960000001, 43.323450501], [23.7995245000001, 43.3337755000001], [23.7960560000001, 43.3414555000001], [23.7866530000001, 43.340316], [23.7774625000001, 43.3441720000001], [23.7753625, 43.3569695], [23.7696950000001, 43.3571845000001], [23.7698585000001, 43.3627440000001], [23.7643175000001, 43.3664875000001], [23.7563670000001, 43.3655295], [23.747942, 43.3603340010001], [23.7409510000001, 43.3671410000001], [23.7385915, 43.3785480010001], [23.7341730000001, 43.3869910000001], [23.7003325000001, 43.399950501], [23.696677, 43.404270501], [23.6886270000001, 43.4026245000001], [23.6707345, 43.414005], [23.673746, 43.415601], [23.6751590000001, 43.421053999], [23.6731475, 43.4285065], [23.6427715, 43.440234], [23.6472435000001, 43.4470705000001], [23.6353015, 43.468961], [23.6333555000001, 43.4774625000001], [23.6323790000001, 43.4834665010001], [23.6320935000001, 43.4880840000001], [23.631961, 43.4908115000001], [23.6180175000001, 43.485509], [23.606882, 43.481414], [23.608193, 43.4736815000001], [23.5945630000001, 43.468942499], [23.5706765, 43.4401355000001], [23.5625375000001, 43.4350755], [23.5797920000001, 43.4214815010001], [23.5853945000001, 43.4080425000001], [23.5854215000001, 43.4067380000001], [23.5837225000001, 43.401666999], [23.5848565000001, 43.396488], [23.594882, 43.388763], [23.6003085, 43.3767690000001], [23.5922215000001, 43.373835], [23.581599, 43.3723200000001], [23.5736655000001, 43.3640530000001], [23.5458560000001, 43.3591995000001], [23.5350545000001, 43.3657295], [23.534548, 43.3663995000001], [23.5263815000001, 43.3654455000001], [23.5168385000001, 43.360571], [23.5067395, 43.3517425000001], [23.4924500000001, 43.3503235000001], [23.471865, 43.3323965000001], [23.474519, 43.328498], [23.467654, 43.3248965000001], [23.4667010000001, 43.3217765000001], [23.4589370000001, 43.3268445000001], [23.4517975000001, 43.3258065000001], [23.4373900000001, 43.315523], [23.4377250000001, 43.3100325], [23.4415685000001, 43.3092125000001], [23.444917, 43.3009015010001], [23.4410935, 43.2972675], [23.421766, 43.2851140000001], [23.4206070000001, 43.262552999], [23.412543, 43.2575840000001], [23.4375625000001, 43.2490755000001], [23.4416175000001, 43.2429785], [23.4502375000001, 43.2386215010001], [23.4484645000001, 43.2366000000001], [23.451336, 43.2343365], [23.4731025, 43.224921001], [23.4685690000001, 43.2208375000001], [23.462142, 43.211777], [23.4549185000001, 43.214721501], [23.4494895, 43.2114164990001], [23.4512510000001, 43.2076505000001], [23.447012, 43.205923], [23.411822, 43.2029945], [23.4008675000001, 43.196428499], [23.3927455, 43.184985], [23.3891980000001, 43.1777960000001], [23.3929415000001, 43.1700740000001], [23.3982245, 43.1662275], [23.405153, 43.1673724990001], [23.4126610000001, 43.162940501], [23.412767, 43.1605220000001], [23.4157545000001, 43.1565905], [23.4353980000001, 43.1500910010001], [23.4407195000001, 43.1502845000001], [23.442616, 43.1577050000001], [23.453386, 43.1526325], [23.4745150000001, 43.1541130000001], [23.4781705, 43.1511205], [23.4778700000001, 43.1446470000001], [23.486369, 43.1353600000001], [23.5009295, 43.1368875000001], [23.5075425000001, 43.1341645000001], [23.5068995, 43.1409335000001], [23.5022375, 43.1472640010001], [23.5091640000001, 43.151536499], [23.5306305, 43.1533875000001], [23.5325645, 43.1620275010001], [23.5350960000001, 43.1614655000001], [23.548233, 43.1527125000001], [23.5505250000001, 43.1495150000001], [23.5487615000001, 43.1466455], [23.5548235000001, 43.1446770000001], [23.5550375, 43.1445235], [23.547337, 43.1350004990001], [23.5658225, 43.1279450000001], [23.5743235, 43.1304465000001], [23.5775620000001, 43.122780999], [23.5774060000001, 43.113794001], [23.5938340000001, 43.1103600000001], [23.6027790000001, 43.1118775], [23.6131, 43.1122465], [23.6225645000001, 43.1148650000001], [23.63483, 43.123369], [23.638828, 43.1236939990001], [23.6337965000001, 43.1314035], [23.6291850000001, 43.1408895000001], [23.6364715, 43.146245499], [23.6364945, 43.1462875010001], [23.6333985000001, 43.1516535000001], [23.6222290000001, 43.1572435], [23.6115510000001, 43.1734270000001], [23.618191, 43.1795240010001], [23.625054, 43.1910500000001], [23.6217875, 43.1982865000001], [23.6410775000001, 43.2071829990001], [23.6454450000001, 43.207071501], [23.6493840000001, 43.2203850000001], [23.6606105000001, 43.2378840000001], [23.664408, 43.2371150000001], [23.6718955000001, 43.2415065000001], [23.6807705000001, 43.2483040010001], [23.6840320000001, 43.2492510000001], [23.6900665000001, 43.2497115] ] ] },
+    "properties": {
+      "ISO": "BG-VRC10",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "12259",
+      "NAME_2": "Враца",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [23.5938340000001, 43.1103600000001], [23.5774060000001, 43.113794001], [23.5775620000001, 43.122780999], [23.5743235, 43.1304465000001], [23.5658225, 43.1279450000001], [23.547337, 43.1350004990001], [23.5550375, 43.1445235], [23.5548235000001, 43.1446770000001], [23.5487615000001, 43.1466455], [23.5505250000001, 43.1495150000001], [23.548233, 43.1527125000001], [23.5350960000001, 43.1614655000001], [23.5325645, 43.1620275010001], [23.5306305, 43.1533875000001], [23.5091640000001, 43.151536499], [23.5022375, 43.1472640010001], [23.5068995, 43.1409335000001], [23.5075425000001, 43.1341645000001], [23.5009295, 43.1368875000001], [23.486369, 43.1353600000001], [23.4789955000001, 43.1306000000001], [23.464572, 43.124379], [23.4559085000001, 43.114787], [23.4509845000001, 43.0973155], [23.4562530000001, 43.0933420000001], [23.4620145000001, 43.0913820000001], [23.472968, 43.0727225000001], [23.4914835000001, 43.0741205], [23.4942695, 43.0631585], [23.5022655000001, 43.0483130010001], [23.5153415, 43.0442105000001], [23.523946, 43.030763999], [23.520742, 43.0220770000001], [23.527905, 43.0143935], [23.5394175000001, 43.0105065000001], [23.553686, 43.0038064990001], [23.5665690000001, 42.9938930000001], [23.5711185000001, 42.9993965], [23.5763865000001, 43.004240999], [23.5800095000001, 43.0185575], [23.5906570000001, 43.0282980000001], [23.5929505, 43.0364880000001], [23.620194, 43.0492090000001], [23.6279385, 43.0548445000001], [23.6261900000001, 43.0580390000001], [23.6360855, 43.0593615000001], [23.647523, 43.0452280000001], [23.6564710000001, 43.042492], [23.6670545000001, 43.0346660000001], [23.6815195, 43.0326645000001], [23.6892925000001, 43.027361], [23.697682, 43.0262805], [23.6998295000001, 43.0269595], [23.723059, 43.0402735000001], [23.7429295000001, 43.0542170000001], [23.7558030000001, 43.0674585], [23.7572535, 43.071043], [23.7593615000001, 43.0707385010001], [23.7591370000001, 43.067882001], [23.7692805, 43.0667780000001], [23.7892735, 43.068489], [23.8033845, 43.0667910000001], [23.8123215, 43.0803595], [23.8147240000001, 43.0893970000001], [23.808524, 43.098390001], [23.8021170000001, 43.11629], [23.801944, 43.119762], [23.8081770000001, 43.129421999], [23.8011705000001, 43.1292585], [23.8119345000001, 43.13426], [23.8255275000001, 43.1356504990001], [23.8406875000001, 43.1358365], [23.843417, 43.1252835000001], [23.855083, 43.121899], [23.8573535, 43.1240410010001], [23.8549295, 43.133923], [23.8568040000001, 43.1380510000001], [23.873679, 43.1421120000001], [23.8839275, 43.1413420000001], [23.8882380000001, 43.147676], [23.8802470000001, 43.1543735000001], [23.8709105, 43.1711025000001], [23.8609720000001, 43.1764840010001], [23.8551685, 43.1846105000001], [23.840721, 43.189418], [23.8393205, 43.193268], [23.851506, 43.2077840000001], [23.8573645000001, 43.2059285], [23.856767, 43.2174350000001], [23.8660135000001, 43.2208645000001], [23.8561665, 43.226732], [23.8585855000001, 43.2279105000001], [23.857721, 43.2391190000001], [23.846119, 43.2476570010001], [23.8473075000001, 43.2603685], [23.8359025, 43.2649220000001], [23.8217215, 43.2624795], [23.817329, 43.269149999], [23.8021370000001, 43.2735955000001], [23.7957475000001, 43.272456], [23.7915380000001, 43.2608430010001], [23.7818770000001, 43.2558405], [23.7769880000001, 43.2565955000001], [23.7753980000001, 43.2519865], [23.778467, 43.242557], [23.7688185000001, 43.2425065], [23.7619985000001, 43.2359230000001], [23.7453285, 43.240731], [23.7319200000001, 43.241275], [23.72959, 43.2436089990001], [23.7261215, 43.249875], [23.7287605000001, 43.2594920000001], [23.7275925000001, 43.2632980000001], [23.7245050000001, 43.254416], [23.7095805000001, 43.2409035000001], [23.698089, 43.2432420000001], [23.6900665000001, 43.2497115], [23.6840320000001, 43.2492510000001], [23.6807705000001, 43.2483040010001], [23.6718955000001, 43.2415065000001], [23.664408, 43.2371150000001], [23.6606105000001, 43.2378840000001], [23.6493840000001, 43.2203850000001], [23.6454450000001, 43.207071501], [23.6410775000001, 43.2071829990001], [23.6217875, 43.1982865000001], [23.625054, 43.1910500000001], [23.618191, 43.1795240010001], [23.6115510000001, 43.1734270000001], [23.6222290000001, 43.1572435], [23.6333985000001, 43.1516535000001], [23.6364945, 43.1462875010001], [23.6364715, 43.146245499], [23.6291850000001, 43.1408895000001], [23.6337965000001, 43.1314035], [23.638828, 43.1236939990001], [23.63483, 43.123369], [23.6225645000001, 43.1148650000001], [23.6131, 43.1122465], [23.6027790000001, 43.1118775], [23.5938340000001, 43.1103600000001] ] ] },
+    "properties": {
+      "ISO": "BG-VRC27",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "12259",
+      "NAME_1": "VRC",
+      "TYPE_1": "Област",
+      "ID_2": "47714",
+      "NAME_2": "Мездра",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.8336725, 42.560031], [25.828968, 42.561261501], [25.8068480000001, 42.5518294990001], [25.7963905, 42.5565565000001], [25.7912315, 42.557461], [25.780474, 42.553227], [25.7771755000001, 42.5481175], [25.764959, 42.5457575], [25.7380190000001, 42.5375165], [25.730628, 42.550916], [25.717267, 42.5466290000001], [25.7045680000001, 42.5466485000001], [25.7021495000001, 42.549084001], [25.69008, 42.5507705000001], [25.6828105000001, 42.5372055], [25.6598285000001, 42.5330710000001], [25.6562875000001, 42.523083], [25.6384135000001, 42.5205940000001], [25.6279545, 42.5221755000001], [25.619158, 42.5275090000001], [25.6101180000001, 42.5254815000001], [25.601708, 42.5243300000001], [25.5795890000001, 42.530506001], [25.5770545, 42.5278855], [25.5778115000001, 42.522253], [25.5744020000001, 42.5227330000001], [25.557332, 42.5182820000001], [25.553362, 42.511176], [25.536008, 42.5084879990001], [25.5238125000001, 42.496385999], [25.5140920000001, 42.4904695000001], [25.4918845, 42.487788499], [25.4855635000001, 42.4941890000001], [25.479047, 42.4959850000001], [25.4735655000001, 42.5014505], [25.4741940000001, 42.5057275], [25.4676685000001, 42.5106970000001], [25.4575565000001, 42.5072835010001], [25.4492715000001, 42.5107735], [25.4405135000001, 42.5115915010001], [25.4235120000001, 42.5170865000001], [25.4139910000001, 42.518715], [25.4086840000001, 42.5166380000001], [25.4046250000001, 42.520152501], [25.4015825000001, 42.5194300000001], [25.3907080000001, 42.5163509990001], [25.388518, 42.5126280000001], [25.3875195000001, 42.500524], [25.3661980000001, 42.4830489990001], [25.347627, 42.4823680000001], [25.33367, 42.4731105000001], [25.3104405, 42.4733335000001], [25.3047765000001, 42.481976], [25.2964200000001, 42.483815501], [25.2863610000001, 42.48398], [25.2795445, 42.479137001], [25.2817620000001, 42.4722405000001], [25.2892170000001, 42.4678765], [25.2848695000001, 42.4665955], [25.2838380000001, 42.4654635000001], [25.2834110000001, 42.4583335], [25.2857240000001, 42.4512580000001], [25.3022725000001, 42.4369290000001], [25.3067810000001, 42.4367165000001], [25.3218515, 42.431517], [25.3325760000001, 42.4320425000001], [25.3387795, 42.429215001], [25.3414205, 42.4234670000001], [25.3537355, 42.4213030010001], [25.3497655, 42.4109030000001], [25.362148, 42.4100675], [25.3643365, 42.4041819990001], [25.3691285, 42.3951235000001], [25.3785810000001, 42.387368], [25.3640310000001, 42.3818525], [25.3513825000001, 42.3842110000001], [25.352448, 42.3726675], [25.3434305000001, 42.3747485000001], [25.3471460000001, 42.369939], [25.3575585, 42.3683100000001], [25.377481, 42.3686025000001], [25.3879920000001, 42.3729745000001], [25.3884375000001, 42.3777405000001], [25.3916570000001, 42.3770290000001], [25.3954095, 42.373033499], [25.4112260000001, 42.366788], [25.4282940000001, 42.3623805], [25.4568800000001, 42.363215], [25.4507445, 42.3571705000001], [25.4384470000001, 42.355468], [25.4209280000001, 42.3281880000001], [25.433189, 42.322169], [25.4348725, 42.3081925000001], [25.4457495, 42.304495], [25.4553175, 42.3047595], [25.464409, 42.2949255], [25.4696455000001, 42.2998905000001], [25.4784050000001, 42.3020690000001], [25.490233, 42.3051345000001], [25.485625, 42.311701999], [25.4901375000001, 42.3159585000001], [25.4899795000001, 42.3138175], [25.4984715000001, 42.3111865000001], [25.5117205, 42.300264], [25.5151395, 42.280288], [25.510385, 42.277187], [25.5119965000001, 42.269976], [25.5069120000001, 42.263363], [25.5003575000001, 42.2643535], [25.4989800000001, 42.260364], [25.49796, 42.2486425010001], [25.49066, 42.2491095], [25.4750565, 42.2432835000001], [25.4666280000001, 42.2389835000001], [25.4616960000001, 42.235783], [25.4853865000001, 42.2240214990001], [25.4812685000001, 42.2104985], [25.4912975, 42.2044440000001], [25.495935, 42.2030005], [25.5003115000001, 42.2056700000001], [25.523738, 42.1942120000001], [25.522143, 42.1814160000001], [25.52817, 42.179760001], [25.5300930000001, 42.1906055000001], [25.5513775000001, 42.2058040000001], [25.5576395000001, 42.207026], [25.5621780000001, 42.2046970000001], [25.582024, 42.195366], [25.5908445000001, 42.1946235], [25.5917615000001, 42.2001060000001], [25.5944925000001, 42.1929030000001], [25.6014035000001, 42.1996385], [25.609251, 42.2009590000001], [25.616244, 42.2209425], [25.617062, 42.2178585], [25.6226625000001, 42.2180385], [25.6190415, 42.228325], [25.6301065000001, 42.232894], [25.6297695000001, 42.2365005], [25.6397175000001, 42.2394600000001], [25.6348320000001, 42.2472965000001], [25.6382315000001, 42.2490525000001], [25.6281505000001, 42.2664310000001], [25.637481, 42.2703335000001], [25.6526215000001, 42.285179], [25.6584950000001, 42.2827485], [25.6606015, 42.2957865000001], [25.659144, 42.2980840000001], [25.6693980000001, 42.2969835000001], [25.687288, 42.2907505000001], [25.710003, 42.287496], [25.7112645, 42.2861865], [25.7152625000001, 42.283646], [25.7189475000001, 42.2789415], [25.7234405, 42.2784599990001], [25.7352105000001, 42.271939499], [25.7528725, 42.2753210000001], [25.7652155000001, 42.2833170000001], [25.75926, 42.2999590000001], [25.751582, 42.3017085000001], [25.7527055000001, 42.3044445], [25.7369335000001, 42.308595], [25.7271420000001, 42.3009035000001], [25.7081505, 42.3051439990001], [25.706509, 42.3122230010001], [25.6972175000001, 42.3105190000001], [25.6866910000001, 42.328005499], [25.6835195, 42.3331880000001], [25.6878550000001, 42.3444775], [25.7037115000001, 42.3498990000001], [25.701258, 42.358454], [25.7129285, 42.3593960000001], [25.724932, 42.359828001], [25.7376375000001, 42.3648805], [25.7354940000001, 42.3732595000001], [25.7482785, 42.3748185000001], [25.7516105, 42.3722475000001], [25.76674, 42.3769455], [25.780001, 42.3721165000001], [25.7868045000001, 42.3790510000001], [25.7932085, 42.3739715], [25.798032, 42.376629501], [25.8003305, 42.384353499], [25.8055380000001, 42.3949994990001], [25.8370570000001, 42.395715], [25.8389360000001, 42.3930005], [25.8463600000001, 42.3886175000001], [25.860378, 42.371588], [25.8696455000001, 42.3668255000001], [25.8741235000001, 42.3588994990001], [25.8908080000001, 42.3523255000001], [25.8900255, 42.355844], [25.8974855010001, 42.366669001], [25.8998565000001, 42.3668900010001], [25.9097365000001, 42.366399001], [25.900691, 42.385405], [25.904839, 42.3876695000001], [25.9016525000001, 42.4114730000001], [25.8983295, 42.42001], [25.8834335, 42.4206995010001], [25.8803600000001, 42.4262210000001], [25.879312, 42.4291195000001], [25.8743430000001, 42.4458624990001], [25.8829050000001, 42.4472565], [25.879471, 42.457008], [25.883017, 42.4579205000001], [25.911095, 42.4648505000001], [25.914383, 42.472559], [25.9054195000001, 42.4859105], [25.8824825, 42.5129315], [25.8764505, 42.5214100000001], [25.864624, 42.5326405000001], [25.8478695000001, 42.5479], [25.8475790000001, 42.5487570000001], [25.8447945, 42.5568745], [25.8336725, 42.560031] ] ] },
+    "properties": {
+      "ISO": "BG-SZR31",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "68850",
+      "NAME_2": "Стара Загора",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.687288, 42.2907505000001], [25.6693980000001, 42.2969835000001], [25.659144, 42.2980840000001], [25.6606015, 42.2957865000001], [25.6584950000001, 42.2827485], [25.6526215000001, 42.285179], [25.637481, 42.2703335000001], [25.6281505000001, 42.2664310000001], [25.6382315000001, 42.2490525000001], [25.6348320000001, 42.2472965000001], [25.6397175000001, 42.2394600000001], [25.6297695000001, 42.2365005], [25.6301065000001, 42.232894], [25.6190415, 42.228325], [25.6226625000001, 42.2180385], [25.617062, 42.2178585], [25.616244, 42.2209425], [25.609251, 42.2009590000001], [25.6298435000001, 42.181402501], [25.625524, 42.1722005], [25.6211505000001, 42.1725710000001], [25.6172930000001, 42.1406699990001], [25.6172940000001, 42.1344290010001], [25.6258480000001, 42.127232], [25.637705, 42.123681], [25.637345, 42.1273914990001], [25.646692, 42.1359815000001], [25.6639595, 42.1394355000001], [25.6646480000001, 42.1444055000001], [25.6767370000001, 42.1421720000001], [25.683926, 42.137275], [25.6999520000001, 42.1361385000001], [25.7060070000001, 42.1285875], [25.704915, 42.1211765], [25.7191255000001, 42.1181165], [25.7238475, 42.1090770010001], [25.7230475000001, 42.0970360000001], [25.7267045, 42.089393999], [25.740553, 42.080608001], [25.7321945, 42.0814350000001], [25.7293225, 42.0791965000001], [25.7406100000001, 42.0678560000001], [25.7631905000001, 42.0645845000001], [25.7577440000001, 42.057082001], [25.7636085, 42.0523900000001], [25.780511, 42.0572045000001], [25.7847150000001, 42.066854499], [25.7907240000001, 42.0734835000001], [25.8029290000001, 42.076237], [25.8059730000001, 42.0833245000001], [25.8032485000001, 42.091051], [25.7859365, 42.109904], [25.7908420000001, 42.1253745000001], [25.779339, 42.1376455010001], [25.7715635000001, 42.1463120010001], [25.7666800000001, 42.15482], [25.7581065000001, 42.152228], [25.7642845, 42.1562485000001], [25.7515125, 42.169164999], [25.748232, 42.192892], [25.755798, 42.1959955], [25.77577, 42.1904775], [25.7742595, 42.193267501], [25.7826095, 42.1948830000001], [25.7855175, 42.201808], [25.8071455, 42.197973], [25.8209095, 42.2018215000001], [25.8286175000001, 42.2064935000001], [25.8314445, 42.2246880000001], [25.7938455, 42.232377], [25.7912545, 42.2361954990001], [25.7920415, 42.2390000010001], [25.784115, 42.2397855], [25.780514, 42.2572595], [25.7687515000001, 42.2561430000001], [25.7618875000001, 42.2666245], [25.7623600000001, 42.270223], [25.7528725, 42.2753210000001], [25.7352105000001, 42.271939499], [25.7234405, 42.2784599990001], [25.7189475000001, 42.2789415], [25.7152625000001, 42.283646], [25.7112645, 42.2861865], [25.710003, 42.287496], [25.687288, 42.2907505000001] ] ] },
+    "properties": {
+      "ISO": "BG-SZR23",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "53576",
+      "NAME_2": "Опан",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.362148, 42.4100675], [25.3497655, 42.4109030000001], [25.3537355, 42.4213030010001], [25.3414205, 42.4234670000001], [25.3387795, 42.429215001], [25.3325760000001, 42.4320425000001], [25.3218515, 42.431517], [25.3067810000001, 42.4367165000001], [25.3022725000001, 42.4369290000001], [25.2857240000001, 42.4512580000001], [25.2834110000001, 42.4583335], [25.2838380000001, 42.4654635000001], [25.2848695000001, 42.4665955], [25.2892170000001, 42.4678765], [25.2817620000001, 42.4722405000001], [25.2795445, 42.479137001], [25.2775155, 42.48555], [25.274192, 42.492664], [25.2593600000001, 42.4996170000001], [25.2548235, 42.5045505000001], [25.2521355000001, 42.5056890000001], [25.2462785000001, 42.501151], [25.2383970000001, 42.5026015], [25.2312370000001, 42.4990645], [25.2337625000001, 42.4909175000001], [25.229638, 42.4851174990001], [25.217699, 42.4850540000001], [25.2082315000001, 42.492979501], [25.1992490000001, 42.492150001], [25.1913185, 42.4917865000001], [25.1856645, 42.4826194990001], [25.1786065000001, 42.48319], [25.1750885000001, 42.4702625], [25.1625575, 42.4655515000001], [25.1539320000001, 42.4552355000001], [25.1546135, 42.4467495000001], [25.1646270000001, 42.4393505], [25.1890315000001, 42.4315255000001], [25.1996185, 42.4221465], [25.2009110000001, 42.4140530000001], [25.1943470000001, 42.39117], [25.1819865, 42.3921595], [25.181208, 42.3968199990001], [25.1803655, 42.3994635], [25.1657020000001, 42.408761999], [25.1436495, 42.411631], [25.133182, 42.4234430000001], [25.130612, 42.4236575], [25.1214115000001, 42.4158660000001], [25.1123055000001, 42.3963815000001], [25.1141045000001, 42.3892875000001], [25.1172295000001, 42.388605], [25.1227025000001, 42.3661785], [25.1182645000001, 42.3639015000001], [25.123977, 42.3575290000001], [25.1225620000001, 42.350333], [25.117627, 42.348892], [25.1130065, 42.344606], [25.1144315, 42.3432200010001], [25.1198195000001, 42.3408180000001], [25.1174355000001, 42.3360605], [25.1216870000001, 42.3303799990001], [25.1303540000001, 42.300258], [25.1260825000001, 42.2861395], [25.143609, 42.2914860000001], [25.1551705000001, 42.2921190000001], [25.1533645000001, 42.2912335], [25.1562215000001, 42.2800765000001], [25.1761575, 42.2793740000001], [25.1737590000001, 42.2712515000001], [25.1530605, 42.262972999], [25.1300735, 42.2649415000001], [25.0990125000001, 42.2625715], [25.0830790000001, 42.2549165], [25.0842250000001, 42.2332455010001], [25.085562, 42.2225645], [25.0867905000001, 42.221207], [25.0811430000001, 42.1839365000001], [25.0897590000001, 42.1794380000001], [25.100651, 42.176156], [25.1040095000001, 42.1750275000001], [25.116924, 42.168193], [25.1247485000001, 42.1592525], [25.1458010000001, 42.1585230000001], [25.150987, 42.1572735], [25.1567185000001, 42.1529124990001], [25.1525560000001, 42.1469870010001], [25.154947, 42.1408249990001], [25.1596650000001, 42.138537], [25.166077, 42.1423365000001], [25.1583845000001, 42.141749501], [25.1560325, 42.148331], [25.159639, 42.1516940010001], [25.1671430000001, 42.1521789990001], [25.1619680000001, 42.1618720000001], [25.1589765000001, 42.1618015000001], [25.160261, 42.1703325], [25.170012, 42.1696470000001], [25.1666275000001, 42.180211], [25.1754740000001, 42.1801129990001], [25.1750965, 42.1695245000001], [25.196381, 42.174176], [25.1972875000001, 42.1659135], [25.2094070000001, 42.1638475], [25.216843, 42.1630445000001], [25.226527, 42.1694765], [25.250477, 42.1775444990001], [25.2465965000001, 42.1815065000001], [25.2598485, 42.1844055010001], [25.255186, 42.186694], [25.2673835000001, 42.1920260000001], [25.2617760000001, 42.2136860000001], [25.2566855000001, 42.2201785], [25.263406, 42.2264540000001], [25.2716465, 42.2223545], [25.2766520000001, 42.2284010000001], [25.2722055, 42.232067], [25.2715225000001, 42.2439535], [25.2755765000001, 42.244294], [25.2764025000001, 42.2651090000001], [25.2738995, 42.266486], [25.2640480000001, 42.2696745000001], [25.2515480000001, 42.2676964990001], [25.2464165000001, 42.2785285], [25.247172, 42.2847045], [25.253718, 42.2859975000001], [25.2581430000001, 42.3062425000001], [25.2613650000001, 42.3112265], [25.2649785, 42.3115920000001], [25.2665585, 42.324706], [25.266332, 42.3258955000001], [25.2720195000001, 42.3270715], [25.2663410000001, 42.3388955], [25.2663705, 42.3447770000001], [25.2734505, 42.3499995000001], [25.2734100000001, 42.3474855000001], [25.2779305, 42.349571], [25.2967170000001, 42.3439079990001], [25.3011240000001, 42.3412759990001], [25.3133985000001, 42.347248], [25.3110060000001, 42.3510585000001], [25.3122185, 42.3538135000001], [25.3242680000001, 42.3596285], [25.3372415000001, 42.3611635], [25.3490615000001, 42.3681700000001], [25.3471460000001, 42.369939], [25.3434305000001, 42.3747485000001], [25.352448, 42.3726675], [25.3513825000001, 42.3842110000001], [25.3640310000001, 42.3818525], [25.3785810000001, 42.387368], [25.3691285, 42.3951235000001], [25.3643365, 42.4041819990001], [25.362148, 42.4100675] ] ] },
+    "properties": {
+      "ISO": "BG-SZR04",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "6183",
+      "NAME_2": "Братя Даскалови",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.7963905, 42.5565565000001], [25.8068480000001, 42.5518294990001], [25.828968, 42.561261501], [25.8290975, 42.570521], [25.8265005000001, 42.5738040000001], [25.8257885, 42.5803930000001], [25.8259815000001, 42.5974515], [25.8160815000001, 42.6041805], [25.8132335, 42.6093920000001], [25.8311835000001, 42.62073], [25.8340885000001, 42.6257985], [25.8236345, 42.630680501], [25.8217915000001, 42.6348985000001], [25.816474, 42.6337495000001], [25.795732, 42.639526], [25.780114, 42.6466785000001], [25.7715995, 42.6516530000001], [25.7658470000001, 42.6574175000001], [25.7632390000001, 42.6581325000001], [25.7548795000001, 42.6511755000001], [25.7501435, 42.652272], [25.7264935000001, 42.6523355000001], [25.718132, 42.6477980000001], [25.722816, 42.6408215000001], [25.7236600000001, 42.6309745], [25.7304765000001, 42.6166365], [25.7322055000001, 42.6174800000001], [25.7383445, 42.6106585000001], [25.733351, 42.6089240000001], [25.7178615, 42.5906775], [25.71874, 42.5851220000001], [25.7069665000001, 42.5871515000001], [25.6957765000001, 42.5815220000001], [25.7011830000001, 42.5662245], [25.7075945, 42.5621134990001], [25.706036, 42.5502534990001], [25.7045680000001, 42.5466485000001], [25.717267, 42.5466290000001], [25.730628, 42.550916], [25.7380190000001, 42.5375165], [25.764959, 42.5457575], [25.7771755000001, 42.5481175], [25.780474, 42.553227], [25.7912315, 42.557461], [25.7963905, 42.5565565000001] ] ] },
+    "properties": {
+      "ISO": "BG-SZR38",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "51648",
+      "NAME_2": "Николаево",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.7658470000001, 42.6574175000001], [25.7715995, 42.6516530000001], [25.780114, 42.6466785000001], [25.795732, 42.639526], [25.816474, 42.6337495000001], [25.8217915000001, 42.6348985000001], [25.8236345, 42.630680501], [25.8340885000001, 42.6257985], [25.8311835000001, 42.62073], [25.8132335, 42.6093920000001], [25.8160815000001, 42.6041805], [25.8259815000001, 42.5974515], [25.8257885, 42.5803930000001], [25.8265005000001, 42.5738040000001], [25.8290975, 42.570521], [25.828968, 42.561261501], [25.8336725, 42.560031], [25.8447945, 42.5568745], [25.8602605, 42.5552510000001], [25.8710325000001, 42.5599685], [25.8789405000001, 42.557736], [25.8892455000001, 42.5616775], [25.8957350000001, 42.5690750000001], [25.8992420000001, 42.572387], [25.8953765000001, 42.576988], [25.9029235, 42.5829680000001], [25.9117545, 42.582457499], [25.9068280000001, 42.589363], [25.8997155000001, 42.5924695], [25.8853055000001, 42.586981], [25.885093, 42.5948720000001], [25.8842045000001, 42.5975290010001], [25.8733255000001, 42.600264], [25.8659035000001, 42.6111730000001], [25.8587805, 42.6285545000001], [25.8553005000001, 42.6386155000001], [25.8561825, 42.6427265], [25.866024, 42.6489705010001], [25.8677635, 42.6567684990001], [25.86085, 42.660653], [25.8571015000001, 42.6751235], [25.84957, 42.6824325000001], [25.842833, 42.6949500000001], [25.8367525, 42.711535], [25.8361360000001, 42.7265860000001], [25.8305165, 42.7318635], [25.819983, 42.7356599990001], [25.8178715, 42.7408385000001], [25.8189400000001, 42.7437180000001], [25.8145400000001, 42.7514935], [25.8113730000001, 42.754689], [25.8079300000001, 42.763735001], [25.8227230000001, 42.7612810000001], [25.8362825, 42.7683319990001], [25.846121, 42.7693765010001], [25.8448165, 42.7732355000001], [25.8374910000001, 42.7772275], [25.7926140000001, 42.78403], [25.7794525, 42.782945], [25.7748015, 42.779158], [25.766306, 42.7820750000001], [25.746519, 42.7879155000001], [25.7218835, 42.7898725010001], [25.7195195, 42.7925880010001], [25.719371, 42.800691], [25.7137955000001, 42.8038480000001], [25.7007385000001, 42.8084735000001], [25.6879735000001, 42.8062610000001], [25.6810465, 42.8079885000001], [25.6765830000001, 42.7971020000001], [25.6595350000001, 42.797493499], [25.655245, 42.7917565000001], [25.6393855000001, 42.7891065000001], [25.6328785000001, 42.7822390000001], [25.6149615000001, 42.7868085000001], [25.6063370000001, 42.7824275], [25.603371, 42.7725625], [25.6083600000001, 42.7692010000001], [25.6292175, 42.7665125], [25.634132, 42.7602415000001], [25.6338335, 42.7574920000001], [25.6253350000001, 42.7598535000001], [25.609296, 42.7509440000001], [25.6192315000001, 42.748022], [25.631986, 42.724545], [25.634978, 42.7210775], [25.635678, 42.7203835010001], [25.6367725000001, 42.7172625000001], [25.6450125000001, 42.7177160000001], [25.6549935, 42.7040735], [25.6632930000001, 42.7072460000001], [25.6681740000001, 42.7035435010001], [25.6802420000001, 42.691332001], [25.6779225, 42.6813500000001], [25.6800065, 42.6725395010001], [25.6857615000001, 42.6620065000001], [25.6956125, 42.656189], [25.6960370000001, 42.6508895000001], [25.70005, 42.6489045000001], [25.6914865, 42.6412110000001], [25.691741, 42.6363105], [25.7082115000001, 42.6412114990001], [25.722816, 42.6408215000001], [25.718132, 42.6477980000001], [25.7264935000001, 42.6523355000001], [25.7501435, 42.652272], [25.7548795000001, 42.6511755000001], [25.7632390000001, 42.6581325000001], [25.7658470000001, 42.6574175000001] ] ] },
+    "properties": {
+      "ISO": "BG-SZR37",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "18157",
+      "NAME_2": "Гурково",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.4109350000001, 42.7388570000001], [25.4033690000001, 42.7434415000001], [25.390095, 42.7387810000001], [25.3719225, 42.7414900000001], [25.3721170000001, 42.739561], [25.361136, 42.737651], [25.3435405000001, 42.7431765000001], [25.3414585, 42.749330501], [25.3245875000001, 42.7506500000001], [25.3199125, 42.752760499], [25.3176875, 42.7570465000001], [25.31751, 42.7571695], [25.2912035000001, 42.7545105], [25.2808665000001, 42.7580585000001], [25.2751455000001, 42.76394], [25.2703545, 42.7640450000001], [25.2651595, 42.7631880000001], [25.2589795000001, 42.7514985], [25.2522635, 42.7480735], [25.2497095000001, 42.7426515000001], [25.2425095, 42.7454430010001], [25.2273050000001, 42.7527415000001], [25.224271, 42.7629249990001], [25.2213925, 42.7683665000001], [25.2111435, 42.780987501], [25.1818680000001, 42.7875545000001], [25.1789645000001, 42.7890980000001], [25.1810550000001, 42.7848585], [25.1989425, 42.7808590000001], [25.2051000000001, 42.772653], [25.2026540000001, 42.767720501], [25.201668, 42.7538460000001], [25.2069235000001, 42.7371610000001], [25.2115680000001, 42.7346400000001], [25.1928895, 42.726125], [25.192691, 42.7254780000001], [25.2083050000001, 42.6931475000001], [25.2147715, 42.6875615000001], [25.2198655, 42.6887170000001], [25.2300355, 42.6750515000001], [25.2244095, 42.6723575010001], [25.2400625000001, 42.6679435], [25.2496505, 42.6514845], [25.2555295, 42.644793], [25.2642950000001, 42.6464710000001], [25.270748, 42.6377025000001], [25.2745615000001, 42.638787], [25.2776050000001, 42.6324705000001], [25.2778135, 42.622387501], [25.267321, 42.6232830000001], [25.2731665000001, 42.614654], [25.2775980000001, 42.6118660000001], [25.2751585, 42.6055120010001], [25.2678520000001, 42.602133], [25.2639310000001, 42.5925819990001], [25.2621135000001, 42.5796945000001], [25.241005, 42.5735365], [25.2394315, 42.5685505010001], [25.232698, 42.5620079990001], [25.2275675000001, 42.557057], [25.2286770000001, 42.550216499], [25.2267265, 42.5426265], [25.2196020000001, 42.5323215000001], [25.2269755, 42.5188920000001], [25.2356305000001, 42.5134915], [25.2477165, 42.5149605], [25.2508990000001, 42.5121089990001], [25.25213, 42.5058825], [25.2521355000001, 42.5056890000001], [25.2548235, 42.5045505000001], [25.2593600000001, 42.4996170000001], [25.274192, 42.492664], [25.2775155, 42.48555], [25.2795445, 42.479137001], [25.2863610000001, 42.48398], [25.2964200000001, 42.483815501], [25.3047765000001, 42.481976], [25.3104405, 42.4733335000001], [25.33367, 42.4731105000001], [25.347627, 42.4823680000001], [25.3661980000001, 42.4830489990001], [25.3875195000001, 42.500524], [25.388518, 42.5126280000001], [25.3907080000001, 42.5163509990001], [25.4015825000001, 42.5194300000001], [25.4046250000001, 42.520152501], [25.4086840000001, 42.5166380000001], [25.4139910000001, 42.518715], [25.4235120000001, 42.5170865000001], [25.4405135000001, 42.5115915010001], [25.4492715000001, 42.5107735], [25.4575565000001, 42.5072835010001], [25.4676685000001, 42.5106970000001], [25.4741940000001, 42.5057275], [25.4735655000001, 42.5014505], [25.479047, 42.4959850000001], [25.4855635000001, 42.4941890000001], [25.4918845, 42.487788499], [25.5140920000001, 42.4904695000001], [25.5238125000001, 42.496385999], [25.536008, 42.5084879990001], [25.5372265, 42.5114800000001], [25.532883, 42.5177195000001], [25.5439525, 42.5251280000001], [25.5447820000001, 42.527764], [25.5414695000001, 42.5322875000001], [25.546341, 42.5417785000001], [25.5467465, 42.5427785000001], [25.5367515, 42.5458485], [25.5261935, 42.5430205000001], [25.518556, 42.5532915000001], [25.4970290000001, 42.5611480000001], [25.4985805000001, 42.5783190000001], [25.4905370000001, 42.6091785], [25.488437, 42.6194895], [25.4893740000001, 42.6212170000001], [25.4939410000001, 42.6234115010001], [25.510188, 42.6223815000001], [25.5107665, 42.6280665], [25.5062140000001, 42.6370985], [25.520521, 42.649027], [25.521283, 42.656371999], [25.5187095000001, 42.6598735000001], [25.521279, 42.6656070010001], [25.5050305, 42.6868779990001], [25.5079230000001, 42.7059170000001], [25.4991455000001, 42.7059870000001], [25.481549, 42.7118425], [25.4783045, 42.712173501], [25.4765735, 42.7125149990001], [25.4780105, 42.7330029990001], [25.487848, 42.743386001], [25.4751195000001, 42.7548705], [25.4690055, 42.7630325000001], [25.449153, 42.761532], [25.443, 42.7638210010001], [25.4346100000001, 42.7611890000001], [25.4347205, 42.749372001], [25.4232145, 42.7344420000001], [25.4177425, 42.7336720000001], [25.4109350000001, 42.7388570000001] ] ] },
+    "properties": {
+      "ISO": "BG-SZR12",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "35167",
+      "NAME_2": "Казанлък",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [25.0159615000001, 42.7667895000001], [25.013881, 42.765229], [24.999764, 42.758581], [24.9978980000001, 42.7534815000001], [25.0124210000001, 42.7522075000001], [25.015474, 42.7562270000001], [25.0159615000001, 42.7667895000001] ] ], [ [ [25.2083050000001, 42.6931475000001], [25.192691, 42.7254780000001], [25.1928895, 42.726125], [25.2115680000001, 42.7346400000001], [25.2069235000001, 42.7371610000001], [25.201668, 42.7538460000001], [25.2026540000001, 42.767720501], [25.2051000000001, 42.772653], [25.1989425, 42.7808590000001], [25.1810550000001, 42.7848585], [25.1789645000001, 42.7890980000001], [25.1720975000001, 42.781573001], [25.134821, 42.7599440000001], [25.1159215000001, 42.7580645000001], [25.110713, 42.759554], [25.10193, 42.7586835000001], [25.091051, 42.7505570000001], [25.078065, 42.7427020000001], [25.0695040000001, 42.7464390000001], [25.0689130000001, 42.7463960000001], [25.0496250000001, 42.7485115010001], [25.0425075000001, 42.7520685000001], [25.036892, 42.761058], [25.0310690000001, 42.7617040010001], [25.025177, 42.7514455], [25.014595683, 42.748554084], [25.014535, 42.748024], [25.014151, 42.7467490000001], [24.9909345, 42.7528740000001], [24.9877230000001, 42.7511465010001], [24.9902710000001, 42.7471925], [25.003383, 42.745794], [25.008446, 42.740504], [25.0071955, 42.7376190000001], [25.005437, 42.73533], [25.0186370000001, 42.7046050010001], [25.0185740000001, 42.6908320000001], [25.0152495, 42.6789860000001], [25.0158865000001, 42.668998], [25.0185490000001, 42.649637], [25.0169720000001, 42.6352555], [25.019096, 42.630614], [25.0175765000001, 42.621676999], [25.0043495, 42.607899], [25.0005705, 42.58831], [25.0140445000001, 42.5782285000001], [25.0161440000001, 42.5730285000001], [25.0188405000001, 42.5643985], [25.0224250000001, 42.5455405010001], [25.016913, 42.541415], [25.0268645, 42.537449], [25.0292235000001, 42.531221999], [25.0372370000001, 42.5275140000001], [25.039428, 42.525206], [25.0386565000001, 42.5186365000001], [25.0667875, 42.5096945000001], [25.0733290000001, 42.5038260000001], [25.072982, 42.4986240000001], [25.0763295, 42.4947895], [25.081416, 42.4944160000001], [25.0884515000001, 42.4946380000001], [25.094979, 42.4984835010001], [25.1415875000001, 42.4993745000001], [25.1543600000001, 42.5056750000001], [25.1561090000001, 42.503945], [25.1742980000001, 42.4995760000001], [25.1778915, 42.4948785], [25.1760110000001, 42.49343], [25.1772, 42.4919545000001], [25.1913185, 42.4917865000001], [25.1992490000001, 42.492150001], [25.2082315000001, 42.492979501], [25.217699, 42.4850540000001], [25.229638, 42.4851174990001], [25.2337625000001, 42.4909175000001], [25.2312370000001, 42.4990645], [25.2383970000001, 42.5026015], [25.2462785000001, 42.501151], [25.2521355000001, 42.5056890000001], [25.25213, 42.5058825], [25.2508990000001, 42.5121089990001], [25.2477165, 42.5149605], [25.2356305000001, 42.5134915], [25.2269755, 42.5188920000001], [25.2196020000001, 42.5323215000001], [25.2267265, 42.5426265], [25.2286770000001, 42.550216499], [25.2275675000001, 42.557057], [25.232698, 42.5620079990001], [25.2394315, 42.5685505010001], [25.241005, 42.5735365], [25.2621135000001, 42.5796945000001], [25.2639310000001, 42.5925819990001], [25.2678520000001, 42.602133], [25.2751585, 42.6055120010001], [25.2775980000001, 42.6118660000001], [25.2731665000001, 42.614654], [25.267321, 42.6232830000001], [25.2778135, 42.622387501], [25.2776050000001, 42.6324705000001], [25.2745615000001, 42.638787], [25.270748, 42.6377025000001], [25.2642950000001, 42.6464710000001], [25.2555295, 42.644793], [25.2496505, 42.6514845], [25.2400625000001, 42.6679435], [25.2244095, 42.6723575010001], [25.2300355, 42.6750515000001], [25.2198655, 42.6887170000001], [25.2147715, 42.6875615000001], [25.2083050000001, 42.6931475000001] ] ] ] },
+    "properties": {
+      "ISO": "BG-SZR24",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "55021",
+      "NAME_2": "Павел баня",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.5576395000001, 42.207026], [25.5513775000001, 42.2058040000001], [25.5300930000001, 42.1906055000001], [25.52817, 42.179760001], [25.522143, 42.1814160000001], [25.523738, 42.1942120000001], [25.5003115000001, 42.2056700000001], [25.495935, 42.2030005], [25.4912975, 42.2044440000001], [25.4812685000001, 42.2104985], [25.4853865000001, 42.2240214990001], [25.4616960000001, 42.235783], [25.4666280000001, 42.2389835000001], [25.4750565, 42.2432835000001], [25.49066, 42.2491095], [25.49796, 42.2486425010001], [25.4989800000001, 42.260364], [25.5003575000001, 42.2643535], [25.5069120000001, 42.263363], [25.5119965000001, 42.269976], [25.510385, 42.277187], [25.5151395, 42.280288], [25.5117205, 42.300264], [25.4984715000001, 42.3111865000001], [25.4899795000001, 42.3138175], [25.4901375000001, 42.3159585000001], [25.485625, 42.311701999], [25.490233, 42.3051345000001], [25.4784050000001, 42.3020690000001], [25.4696455000001, 42.2998905000001], [25.464409, 42.2949255], [25.4553175, 42.3047595], [25.4457495, 42.304495], [25.4348725, 42.3081925000001], [25.433189, 42.322169], [25.4209280000001, 42.3281880000001], [25.4384470000001, 42.355468], [25.4507445, 42.3571705000001], [25.4568800000001, 42.363215], [25.4282940000001, 42.3623805], [25.4112260000001, 42.366788], [25.3954095, 42.373033499], [25.3916570000001, 42.3770290000001], [25.3884375000001, 42.3777405000001], [25.3879920000001, 42.3729745000001], [25.377481, 42.3686025000001], [25.3575585, 42.3683100000001], [25.3471460000001, 42.369939], [25.3490615000001, 42.3681700000001], [25.3372415000001, 42.3611635], [25.3242680000001, 42.3596285], [25.3122185, 42.3538135000001], [25.3110060000001, 42.3510585000001], [25.3133985000001, 42.347248], [25.3011240000001, 42.3412759990001], [25.2967170000001, 42.3439079990001], [25.2779305, 42.349571], [25.2734100000001, 42.3474855000001], [25.2734505, 42.3499995000001], [25.2663705, 42.3447770000001], [25.2663410000001, 42.3388955], [25.2720195000001, 42.3270715], [25.266332, 42.3258955000001], [25.2665585, 42.324706], [25.2649785, 42.3115920000001], [25.2613650000001, 42.3112265], [25.2581430000001, 42.3062425000001], [25.253718, 42.2859975000001], [25.247172, 42.2847045], [25.2464165000001, 42.2785285], [25.2515480000001, 42.2676964990001], [25.2640480000001, 42.2696745000001], [25.2738995, 42.266486], [25.2764025000001, 42.2651090000001], [25.2755765000001, 42.244294], [25.2715225000001, 42.2439535], [25.2722055, 42.232067], [25.2766520000001, 42.2284010000001], [25.2716465, 42.2223545], [25.263406, 42.2264540000001], [25.2566855000001, 42.2201785], [25.2617760000001, 42.2136860000001], [25.2673835000001, 42.1920260000001], [25.255186, 42.186694], [25.2598485, 42.1844055010001], [25.2725540000001, 42.1618125000001], [25.2741385, 42.1599225000001], [25.277091, 42.156396], [25.2941975, 42.1471145], [25.3032200000001, 42.1461990000001], [25.315616, 42.1483270000001], [25.3291905, 42.118139], [25.3341130000001, 42.1130140000001], [25.3480640000001, 42.1143774990001], [25.3696705, 42.108913499], [25.379646, 42.104723], [25.3955480000001, 42.1060860000001], [25.4006175000001, 42.1039950000001], [25.4059370000001, 42.097783], [25.4245470000001, 42.0900605], [25.4278485, 42.08948], [25.4281355000001, 42.0991475000001], [25.4472860000001, 42.1009575], [25.4509350000001, 42.1113275000001], [25.4577550000001, 42.1125905000001], [25.4657550000001, 42.1236715000001], [25.466554, 42.139731], [25.461484, 42.1410505000001], [25.4577775000001, 42.1487730000001], [25.4579555, 42.154584], [25.4581395000001, 42.1610125], [25.470692, 42.1641795], [25.483234, 42.1619370000001], [25.4972195, 42.1723250000001], [25.5059165000001, 42.174113499], [25.5109130000001, 42.1762635000001], [25.513491, 42.1736625], [25.5187235000001, 42.176540501], [25.5275100000001, 42.1679625000001], [25.523876, 42.1658535], [25.5501225, 42.1570785000001], [25.555173, 42.159817], [25.5571440000001, 42.160062499], [25.568834, 42.1650720000001], [25.5821695000001, 42.1689440000001], [25.5877385000001, 42.1840890010001], [25.5908445000001, 42.1946235], [25.582024, 42.195366], [25.5621780000001, 42.2046970000001], [25.5576395000001, 42.207026] ], [ [25.364204, 42.1179545000001], [25.3570960000001, 42.121248001], [25.35216, 42.1223575000001], [25.3528385000001, 42.115572], [25.364204, 42.1179545000001] ] ] },
+    "properties": {
+      "ISO": "BG-SZR36",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "81414",
+      "NAME_2": "Чирпан",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.6052275000001, 42.7475145010001], [25.593514, 42.7517114990001], [25.5754755, 42.7627415000001], [25.571489, 42.7697690000001], [25.5667225, 42.7686390000001], [25.5664875000001, 42.7644435], [25.5630605000001, 42.7612349990001], [25.5535285, 42.7621500000001], [25.5443945000001, 42.753142], [25.5374350000001, 42.756338], [25.5279550000001, 42.7625345000001], [25.5150545000001, 42.7656020000001], [25.5036860000001, 42.7660260000001], [25.4863500000001, 42.7591214990001], [25.4751195000001, 42.7548705], [25.487848, 42.743386001], [25.4780105, 42.7330029990001], [25.4765735, 42.7125149990001], [25.4783045, 42.712173501], [25.481549, 42.7118425], [25.4991455000001, 42.7059870000001], [25.5079230000001, 42.7059170000001], [25.5050305, 42.6868779990001], [25.521279, 42.6656070010001], [25.5187095000001, 42.6598735000001], [25.521283, 42.656371999], [25.520521, 42.649027], [25.5062140000001, 42.6370985], [25.5107665, 42.6280665], [25.510188, 42.6223815000001], [25.4939410000001, 42.6234115010001], [25.4893740000001, 42.6212170000001], [25.488437, 42.6194895], [25.4905370000001, 42.6091785], [25.4985805000001, 42.5783190000001], [25.4970290000001, 42.5611480000001], [25.518556, 42.5532915000001], [25.5261935, 42.5430205000001], [25.5367515, 42.5458485], [25.5467465, 42.5427785000001], [25.546341, 42.5417785000001], [25.5414695000001, 42.5322875000001], [25.5447820000001, 42.527764], [25.5439525, 42.5251280000001], [25.532883, 42.5177195000001], [25.5372265, 42.5114800000001], [25.536008, 42.5084879990001], [25.553362, 42.511176], [25.557332, 42.5182820000001], [25.5744020000001, 42.5227330000001], [25.5778115000001, 42.522253], [25.5770545, 42.5278855], [25.5795890000001, 42.530506001], [25.601708, 42.5243300000001], [25.6101180000001, 42.5254815000001], [25.619158, 42.5275090000001], [25.6279545, 42.5221755000001], [25.6384135000001, 42.5205940000001], [25.6562875000001, 42.523083], [25.6598285000001, 42.5330710000001], [25.6828105000001, 42.5372055], [25.69008, 42.5507705000001], [25.7021495000001, 42.549084001], [25.7045680000001, 42.5466485000001], [25.706036, 42.5502534990001], [25.7075945, 42.5621134990001], [25.7011830000001, 42.5662245], [25.6957765000001, 42.5815220000001], [25.7069665000001, 42.5871515000001], [25.71874, 42.5851220000001], [25.7178615, 42.5906775], [25.733351, 42.6089240000001], [25.7383445, 42.6106585000001], [25.7322055000001, 42.6174800000001], [25.7304765000001, 42.6166365], [25.7236600000001, 42.6309745], [25.722816, 42.6408215000001], [25.7082115000001, 42.6412114990001], [25.691741, 42.6363105], [25.6914865, 42.6412110000001], [25.70005, 42.6489045000001], [25.6960370000001, 42.6508895000001], [25.6956125, 42.656189], [25.6857615000001, 42.6620065000001], [25.6800065, 42.6725395010001], [25.6779225, 42.6813500000001], [25.6802420000001, 42.691332001], [25.6681740000001, 42.7035435010001], [25.6632930000001, 42.7072460000001], [25.6549935, 42.7040735], [25.6450125000001, 42.7177160000001], [25.6367725000001, 42.7172625000001], [25.635678, 42.7203835010001], [25.634978, 42.7210775], [25.631986, 42.724545], [25.6192315000001, 42.748022], [25.6052275000001, 42.7475145010001] ] ] },
+    "properties": {
+      "ISO": "BG-SZR22",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "49494",
+      "NAME_2": "Мъглиж",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.9473195000001, 42.3202434990001], [25.9304775000001, 42.322276], [25.9335760010001, 42.3262810000001], [25.937734001, 42.3444305], [25.9319045010001, 42.3448720000001], [25.9330075, 42.3526945], [25.9334920000001, 42.3567205000001], [25.926569, 42.356345], [25.9097365000001, 42.366399001], [25.8998565000001, 42.3668900010001], [25.8974855010001, 42.366669001], [25.8900255, 42.355844], [25.8908080000001, 42.3523255000001], [25.8741235000001, 42.3588994990001], [25.8696455000001, 42.3668255000001], [25.860378, 42.371588], [25.8463600000001, 42.3886175000001], [25.8389360000001, 42.3930005], [25.8370570000001, 42.395715], [25.8055380000001, 42.3949994990001], [25.8003305, 42.384353499], [25.798032, 42.376629501], [25.7932085, 42.3739715], [25.7868045000001, 42.3790510000001], [25.780001, 42.3721165000001], [25.76674, 42.3769455], [25.7516105, 42.3722475000001], [25.7482785, 42.3748185000001], [25.7354940000001, 42.3732595000001], [25.7376375000001, 42.3648805], [25.724932, 42.359828001], [25.7129285, 42.3593960000001], [25.701258, 42.358454], [25.7037115000001, 42.3498990000001], [25.6878550000001, 42.3444775], [25.6835195, 42.3331880000001], [25.6866910000001, 42.328005499], [25.6972175000001, 42.3105190000001], [25.706509, 42.3122230010001], [25.7081505, 42.3051439990001], [25.7271420000001, 42.3009035000001], [25.7369335000001, 42.308595], [25.7527055000001, 42.3044445], [25.751582, 42.3017085000001], [25.75926, 42.2999590000001], [25.7652155000001, 42.2833170000001], [25.7528725, 42.2753210000001], [25.7623600000001, 42.270223], [25.7618875000001, 42.2666245], [25.7687515000001, 42.2561430000001], [25.780514, 42.2572595], [25.784115, 42.2397855], [25.7920415, 42.2390000010001], [25.7912545, 42.2361954990001], [25.7938455, 42.232377], [25.8314445, 42.2246880000001], [25.8457930000001, 42.2264275000001], [25.8490655000001, 42.2225605], [25.8582805, 42.2231255], [25.8818160000001, 42.209028], [25.8783625, 42.2062930000001], [25.8822030000001, 42.2006474990001], [25.8757215000001, 42.1884035], [25.8761165, 42.1849625], [25.8805875000001, 42.1860145000001], [25.8929695, 42.179065], [25.9020885, 42.1814265], [25.9065640000001, 42.1863375], [25.9198355, 42.1870620010001], [25.9281415, 42.188698], [25.930009, 42.183501], [25.9538220000001, 42.1767360000001], [25.956625, 42.174627], [25.9545145000001, 42.172942], [25.9865110000001, 42.1602915], [26.000573, 42.163963499], [26.0135125, 42.160306], [26.0140385, 42.1577530000001], [26.019459, 42.1555660000001], [26.036482, 42.1564715000001], [26.0599985000001, 42.163439], [26.0666685, 42.1594180000001], [26.0704335, 42.1664645000001], [26.0726230000001, 42.1674639990001], [26.0819755000001, 42.1678860000001], [26.091398, 42.1613140010001], [26.0914445, 42.159054], [26.106927, 42.155965001], [26.1329690000001, 42.1598165], [26.1362555000001, 42.159071499], [26.1376425, 42.154592], [26.1463865000001, 42.1569045], [26.1428690000001, 42.163219], [26.1558140000001, 42.164611999], [26.1674400000001, 42.1714425000001], [26.1683620000001, 42.175128], [26.165134, 42.1795990000001], [26.1672830000001, 42.1930520000001], [26.1864210000001, 42.2012050000001], [26.1927335, 42.20813], [26.1901015, 42.214524], [26.169701, 42.2208400000001], [26.1763155, 42.2247200000001], [26.17495, 42.228664], [26.1706100000001, 42.2342075], [26.1684145, 42.2507135000001], [26.175732, 42.2614610000001], [26.1660700000001, 42.264512], [26.1446325000001, 42.2604815], [26.1446795, 42.26489], [26.1372925000001, 42.2659605000001], [26.1346790000001, 42.2476854990001], [26.1286125, 42.2448475], [26.1245835, 42.2457535], [26.1230245, 42.252077], [26.1055455000001, 42.2479080000001], [26.0894010000001, 42.2577910000001], [26.0940200000001, 42.2620650000001], [26.0817865000001, 42.2667320000001], [26.0590695000001, 42.267948501], [26.0550175000001, 42.27027], [26.0498695000001, 42.285245499], [26.0258215000001, 42.2876870000001], [26.024231, 42.2841070000001], [26.0092165, 42.2812585], [25.9916915000001, 42.283285], [25.9880825000001, 42.2921555], [25.9912255, 42.3069625000001], [25.98605, 42.3076955000001], [25.9858620000001, 42.3194645], [25.9473195000001, 42.3202434990001] ] ] },
+    "properties": {
+      "ISO": "BG-SZR27",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "61460",
+      "NAME_2": "Раднево",
+      "TYPE_2": "Община"
+    }
+  },
+  {
+    "type": "Feature",
+    "geometry": { "type": "Polygon", "coordinates": [ [ [25.8407595, 42.1093090000001], [25.8436810000001, 42.1096630000001], [25.8508875000001, 42.117219499], [25.8494180000001, 42.1238425000001], [25.8525495000001, 42.1260540000001], [25.8630725, 42.1305620000001], [25.8774505000001, 42.1309695], [25.8775650000001, 42.113566], [25.8883175, 42.112599], [25.8972365000001, 42.1203225000001], [25.9064215000001, 42.1227295], [25.9101020000001, 42.1205345000001], [25.9148020000001, 42.112595501], [25.9221555, 42.108275], [25.941691, 42.1043135], [25.9511495, 42.1055755], [25.9746395, 42.096975], [25.9993610000001, 42.075925], [26.0048025, 42.071496], [26.0069105000001, 42.065813], [26.016716, 42.0615700000001], [26.0204525, 42.03954], [26.0242985, 42.038916], [26.0299615000001, 42.0305880010001], [26.0402605, 42.0232125000001], [26.0577695000001, 42.0176565], [26.0578055, 42.019787001], [26.0730315000001, 42.024072], [26.078385, 42.028965], [26.0876085, 42.031889], [26.0971655000001, 42.0402510000001], [26.1083675, 42.040442], [26.1129715000001, 42.0381765000001], [26.128585, 42.0416555], [26.1489540000001, 42.0369765], [26.1538705, 42.0412415000001], [26.1524335, 42.048526], [26.1551670000001, 42.06528], [26.153311, 42.0740835], [26.1566080000001, 42.0763145010001], [26.1565350000001, 42.0794845], [26.13973, 42.0957375], [26.1331260000001, 42.0996014990001], [26.1373265, 42.1047485], [26.1372045, 42.1078685000001], [26.1333025000001, 42.1181334990001], [26.1364740000001, 42.1398085000001], [26.1369755000001, 42.1454685], [26.1376425, 42.154592], [26.1362555000001, 42.159071499], [26.1329690000001, 42.1598165], [26.106927, 42.155965001], [26.0914445, 42.159054], [26.091398, 42.1613140010001], [26.0819755000001, 42.1678860000001], [26.0726230000001, 42.1674639990001], [26.0704335, 42.1664645000001], [26.0666685, 42.1594180000001], [26.0599985000001, 42.163439], [26.036482, 42.1564715000001], [26.019459, 42.1555660000001], [26.0140385, 42.1577530000001], [26.0135125, 42.160306], [26.000573, 42.163963499], [25.9865110000001, 42.1602915], [25.9545145000001, 42.172942], [25.956625, 42.174627], [25.9538220000001, 42.1767360000001], [25.930009, 42.183501], [25.9281415, 42.188698], [25.9198355, 42.1870620010001], [25.9065640000001, 42.1863375], [25.9020885, 42.1814265], [25.8929695, 42.179065], [25.8805875000001, 42.1860145000001], [25.8761165, 42.1849625], [25.8757215000001, 42.1884035], [25.8822030000001, 42.2006474990001], [25.8783625, 42.2062930000001], [25.8818160000001, 42.209028], [25.8582805, 42.2231255], [25.8490655000001, 42.2225605], [25.8457930000001, 42.2264275000001], [25.8314445, 42.2246880000001], [25.8286175000001, 42.2064935000001], [25.8209095, 42.2018215000001], [25.8071455, 42.197973], [25.7855175, 42.201808], [25.7826095, 42.1948830000001], [25.7742595, 42.193267501], [25.77577, 42.1904775], [25.755798, 42.1959955], [25.748232, 42.192892], [25.7515125, 42.169164999], [25.7642845, 42.1562485000001], [25.7581065000001, 42.152228], [25.7666800000001, 42.15482], [25.7715635000001, 42.1463120010001], [25.779339, 42.1376455010001], [25.7908420000001, 42.1253745000001], [25.7859365, 42.109904], [25.8032485000001, 42.091051], [25.8059730000001, 42.0833245000001], [25.8103785000001, 42.0814120000001], [25.8123405000001, 42.0836795000001], [25.8297675000001, 42.0810080000001], [25.8359980000001, 42.0855295000001], [25.8429505, 42.0943090000001], [25.8482015000001, 42.1020800000001], [25.8407595, 42.1093090000001] ] ] },
+    "properties": {
+      "ISO": "BG-SZR07",
+      "ID_0": "100",
+      "NAME_0": "Bulgaria",
+      "NL_NAME_0": "България",
+      "ID_1": "68850",
+      "NAME_1": "SZR",
+      "TYPE_1": "Област",
+      "ID_2": "18280",
+      "NAME_2": "Гълъбово",
+      "TYPE_2": "Община"
+    }
+  }
+]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson
new file mode 100644
index 0000000..7bc48d2
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson
@@ -0,0 +1,17 @@
+{"type":"FeatureCollection", "features": [
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-110,60.00000000000006],[-110.00011444091791,55.33396911621088],[-110.00567626953114,54.74772644042969],[-110.00502014160156,49.00005722045904],[-114.07023620605457,49.00068283081066],[-114.1749038696289,49.163551330566406],[-114.39895629882807,49.21036529541021],[-114.48762512207026,49.34732055664068],[-114.59843444824219,49.41256332397461],[-114.58824157714838,49.56539154052729],[-114.66207885742182,49.643386840820426],[-114.63993835449213,49.827720642089844],[-114.69178771972656,49.8962860107423],[-114.66636657714838,50.05094528198242],[-114.80392456054688,50.3648796081543],[-115.01369476318354,50.57085800170893],[-115.23098754882812,50.54487991333019],[-115.3276138305664,50.7219352722168],[-115.55091857910156,50.79706573486334],[-115.64883422851557,50.9975204467774],[-115.77239990234375,51.06699752807617],[-115.923599243164,51.083087921142635],[-116.00758361816406,51.22197341918957],[-116.26801300048828,51.31193161010748],[-116.29248046874994,51.46181488037121],[-116.59501647949219,51.66183090209972],[-116.68207550048828,51.81214523315441],[-116.9205703735351,51.709804534912166],[-117.01946258544916,51.891361236572266],[-117.19721984863276,51.980136871338004],[-117.38125610351562,52.13772583007818],[-117.61126708984375,52.14425659179693],[-117.81832122802734,52.226356506347656],[-117.72298431396479,52.355583190918026],[-117.76649475097656,52.417694091796875],[-118.02182006835938,52.4723014831543],[-118.04416656494135,52.39846038818365],[-118.21277618408197,52.37034225463873],[-118.23552703857422,52.49017715454113],[-118.33256530761713,52.580169677734375],[-118.29013824462885,52.67769241333019],[-118.44829559326172,52.8852653503418],[-118.66020965576172,52.96393585205078],[-118.78653717041004,53.15922164916998],[-118.97520446777344,53.241649627685604],[-119.04690551757812,53.14490127563482],[-119.23274230957026,53.18175888061529],[-119.40608215332031,53.36809158325201],[-119.72541809082026,53.3887557983399],[-119.92588806152338,53.61453628540045],[-119.74872589111328,53.59336853027344],[-119.79737854003906,53.707771301269474],[-119.9079818725586,53.71060180664074],[-119.99998474121088,53.806236267089844],[-120,60.00000000000006],[-110,60.00000000000006]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-123.59471893310547,48.945556640625],[-123.44341278076166,48.85654830932617],[-123.38833618164062,48.75249862670904],[-123.5014419555664,48.71532440185547],[-123.56256866455078,48.76628494262707],[-123.5240249633789,48.79494857788086],[-123.5718002319336,48.82197570800781],[-123.55028533935547,48.8680305480957],[-123.59471893310547,48.945556640625]]],[[[-126.1191635131836,49.396389007568416],[-126.08638763427734,49.246387481689396],[-126.2308349609375,49.28638839721691],[-126.22941589355469,49.39437866210943],[-126.1191635131836,49.396389007568416]]],[[[-126.79535675048828,49.885650634765625],[-126.74793243408203,49.85219955444336],[-126.71861267089838,49.86666488647455],[-126.66924285888672,49.854778289795036],[-126.65694427490234,49.789165496826286],[-126.62705230712885,49.72841262817383],[-126.65055847167969,49.7227783203125],[-126.61305236816395,49.59749984741222],[-126.82707977294922,49.618247985839844],[-126.90046691894526,49.67643356323248],[-126.95944213867188,49.83722305297857],[-126.79535675048828,49.885650634765625]]],[[[-124.86493682861322,50.29048538208008],[-124.75173950195307,50.15866851806646],[-124.84510040283197,50.11449432373058],[-124.98044586181635,50.24712371826172],[-124.86493682861322,50.29048538208008]]],[[[-125.2508926391601,50.30808258056652],[-125.13896179199207,50.192596435546875],[-125.21627807617182,50.10289764404297],[-125.31430816650385,50.13154983520519],[-125.37950897216797,50.279945373535156],[-125.2508926391601,50.30808258056652]]],[[[-124.73388671875,50.30861282348633],[-124.64221954345703,50.23277664184576],[-124.71277618408203,50.161109924316406],[-124.81222534179682,50.23916625976568],[-124.73388671875,50.30861282348633]]],[[[-126.32499694824219,50.834445953369084],[-126.21235656738281,50.770736694335994],[-126.26889038085938,50.65499877929693],[-126.4911117553711,50.63722229003912],[-126.56156158447266,50.736907958984375],[-126.32499694824219,50.834445953369084]]],[[[-128.05055236816406,50.8774986267091],[-127.90833282470692,50.875],[-127.48555755615229,50.76638793945318],[-127.41444396972656,50.695556640625],[-127.19555664062489,50.61444473266607],[-126.81916046142578,50.54927062988281],[-126.6045684814452,50.484039306640625],[-126.25337982177734,50.473274230957145],[-125.9438247680664,50.39050674438482],[-125.4474105834961,50.33349990844732],[-125.35842895507812,50.1287460327149],[-125.24666595458984,50.04249954223644],[-125.1824722290039,49.914443969726506],[-124.86353302001947,49.693649291992244],[-124.90754699707031,49.625164031982536],[-124.7848892211914,49.46643829345703],[-124.57360839843744,49.380554199218864],[-124.35626983642572,49.3517303466798],[-123.97136688232416,49.23527908325207],[-123.90528106689447,49.13527679443371],[-123.8182983398437,49.135902404785156],[-123.73743438720697,48.93829727172863],[-123.59228515624994,48.8478736877442],[-123.55854034423828,48.78316116333008],[-123.57749938964838,48.74583435058594],[-123.53472137451172,48.69444274902355],[-123.4817886352539,48.60615921020508],[-123.40972137451172,48.62722396850597],[-123.32221984863281,48.405277252197266],[-123.4397201538086,48.43070983886713],[-123.56055450439453,48.30944442749035],[-123.70055389404297,48.375278472900504],[-123.82199096679688,48.356353759765625],[-124.36536407470703,48.508579254150504],[-124.7219467163086,48.595275878906364],[-124.82611083984375,48.65861129760742],[-125.1005859375,48.721015930175724],[-125.17694091796875,48.787536621093864],[-125.00389099121088,48.947223663330135],[-125.15062713623047,49.010238647460994],[-125.24191284179688,48.94366455078125],[-125.36924743652338,48.997589111328125],[-125.47954559326172,48.92123031616211],[-125.56916809082031,48.93749999999994],[-125.75,49.06861114501959],[-125.75138854980463,49.23222351074219],[-125.8846664428711,49.28266143798834],[-126.02381896972656,49.26128005981445],[-126.0782470703125,49.437747955322266],[-126.14881896972656,49.400669097900504],[-126.40191650390625,49.410556793213004],[-126.54611206054688,49.378055572509766],[-126.58551788330078,49.69412994384777],[-126.62246704101557,49.73638916015631],[-126.65277862548828,49.81250000000006],[-126.64969635009766,49.900001525878906],[-126.67838287353504,49.8643913269043],[-126.7558364868164,49.875],[-126.80024719238276,49.90666580200207],[-126.82221984863281,49.882221221923885],[-127.15389251708984,49.85944366455084],[-127.28666687011719,50.04277801513683],[-127.42444610595703,50.034442901611385],[-127.51611328125,50.13333511352539],[-127.67500305175781,50.149723052978516],[-127.76059722900385,50.23727035522461],[-127.961669921875,50.36500167846691],[-127.9338912963866,50.465278625488224],[-128.1072235107422,50.46916580200207],[-128.2066650390625,50.526668548583984],[-128.413330078125,50.77555465698242],[-128.05055236816406,50.8774986267091]]],[[[-128.0927734374999,51.687778472900504],[-127.95976257324219,51.64563369750988],[-127.87533569335926,51.464309692382926],[-128.09056091308588,51.480556488037166],[-128.14666748046875,51.6702766418457],[-128.0927734374999,51.687778472900504]]],[[[-127.98267364501953,52.074111938476676],[-127.94586181640625,52.007408142089844],[-128.02000427246088,51.81611251831066],[-128.1138916015625,51.873054504394645],[-128.2288818359375,51.84873962402344],[-128.15444946289057,52.0497207641601],[-127.98267364501953,52.074111938476676]]],[[[-128.04611206054682,52.309165954589844],[-127.91580963134766,52.251300811767635],[-127.91523742675781,52.16433715820324],[-128.07611083984375,52.18805694580078],[-128.04611206054682,52.309165954589844]]],[[[-127.25987243652344,52.425411224365234],[-127.21562957763672,52.32081222534191],[-127.63619232177734,52.14036560058594],[-127.71333312988281,51.96389007568354],[-127.90389251708984,51.934722900390625],[-127.84908294677729,52.162162780761776],[-127.76551055908203,52.245979309081974],[-127.62545013427729,52.26122283935558],[-127.44999694824207,52.333610534668026],[-127.44400024414062,52.3763885498048],[-127.25987243652344,52.425411224365234]]],[[[-128.5216522216797,52.599647521972656],[-128.4658660888672,52.47285461425787],[-128.6266632080078,52.46888732910162],[-128.61555480957026,52.33277893066406],[-128.7410888671875,52.328918457031364],[-128.7555541992187,52.59305572509771],[-128.5216522216797,52.599647521972656]]],[[[-131.48594665527332,52.73811340332031],[-131.46385192871094,52.623878479003906],[-131.61026000976562,52.58506011962902],[-131.71875,52.697277069091854],[-131.48594665527332,52.73811340332031]]],[[[-129.272216796875,52.827514648437614],[-128.9299926757812,52.61277770996094],[-128.94332885742182,52.47527694702154],[-129.06944274902344,52.514999389648494],[-129.21554565429688,52.629150390625114],[-129.30389404296875,52.75444412231445],[-129.272216796875,52.827514648437614]]],[[[-128.15274047851557,52.787776947021484],[-128.29110717773432,52.52388763427729],[-128.44245910644526,52.54989624023443],[-128.42642211914062,52.71535491943371],[-128.35169982910145,52.78528976440424],[-128.15274047851557,52.787776947021484]]],[[[-129.48776245117188,53.190601348876896],[-129.32669067382812,53.05411911010748],[-129.32775878906244,52.95835113525402],[-129.54498291015625,53.103881835937614],[-129.48776245117188,53.190601348876896]]],[[[-131.81906127929682,53.260604858398494],[-131.77777099609364,53.15888977050781],[-131.64389038085938,53.10832595825201],[-131.61883544921875,52.92287445068371],[-131.7772216796875,52.884521484375114],[-131.81680297851562,52.712810516357365],[-131.73202514648438,52.68420028686518],[-131.64978027343744,52.54632568359381],[-131.43182373046875,52.469116210937614],[-131.3309478759765,52.29583740234381],[-131.17498779296875,52.325683593750114],[-131.08030700683594,52.215019226074276],[-131.17845153808588,52.11850738525396],[-131.5748901367187,52.34307861328125],[-131.6639404296875,52.47669219970709],[-131.78611755371094,52.51305389404297],[-131.9066619873047,52.61000061035162],[-132.2351837158203,52.799167633056754],[-132.35935974121094,52.94684982299805],[-132.4972229003905,53.027221679687614],[-132.56326293945312,53.11913299560558],[-132.0816650390625,53.148612976074276],[-131.81906127929682,53.260604858398494]]],[[[-129.01000976562494,53.30328369140625],[-128.636474609375,53.156311035156364],[-128.53614807128906,53.02117156982422],[-128.52278137207026,52.89864349365246],[-128.59271240234375,52.60827636718756],[-128.7554168701172,52.600006103515625],[-129.00610351562494,52.70083236694336],[-129.10354614257807,52.784790039062614],[-129.17337036132807,53.072277069091854],[-129.08660888671875,53.091674804687614],[-129.09500122070312,53.288887023925895],[-129.01000976562494,53.30328369140625]]],[[[-129.24394226074213,53.31989669799816],[-129.17218017578125,53.284484863281364],[-129.19088745117188,53.10576629638683],[-129.28134155273426,53.081882476806584],[-129.3453979492187,53.206295013427734],[-129.24394226074213,53.31989669799816]]],[[[-129.01000976562494,53.531677246093864],[-128.92782592773438,53.32813262939459],[-129.1538848876953,53.33777618408203],[-129.01000976562494,53.531677246093864]]],[[[-130.46777343749994,53.63777923583979],[-130.10667419433594,53.514167785644645],[-129.90667724609375,53.39312744140625],[-129.752197265625,53.214111328125114],[-129.80328369140614,53.161071777343864],[-129.95835876464844,53.16689682006847],[-130.10556030273438,53.312221527099666],[-130.28721618652344,53.37833404541027],[-130.43833923339832,53.502777099609375],[-130.46777343749994,53.63777923583979]]],[[[-128.86808776855463,53.716682434082145],[-128.89146423339838,53.55867385864269],[-129.02221679687494,53.55777740478521],[-129.17388916015625,53.445312500000114],[-129.17707824707026,53.62615585327154],[-128.86808776855463,53.716682434082145]]],[[[-130.28538513183594,53.80017471313488],[-130.1951293945312,53.708156585693416],[-130.12265014648432,53.69573211669933],[-130.1537475585937,53.56789016723633],[-130.33169555664057,53.61737823486328],[-130.4000244140625,53.70727539062506],[-130.28538513183594,53.80017471313488]]],[[[-130.20166015625,53.911109924316406],[-129.82421875,53.7100830078125],[-129.70483398437494,53.599369049072266],[-129.33441162109375,53.3636093139649],[-129.46063232421864,53.36721801757818],[-129.5013885498047,53.21435165405279],[-129.58815002441406,53.211776733398494],[-129.81889343261713,53.37833404541027],[-129.88269042968744,53.547729492187614],[-130.0621948242187,53.597473144531364],[-130.10382080078125,53.69909667968756],[-130.20611572265614,53.72138977050787],[-130.20166015625,53.911109924316406]]],[[[-130.4183349609375,54.103092193603516],[-130.2344512939453,53.97833251953131],[-130.34359741210938,53.827606201171875],[-130.55616760253906,53.89575958251959],[-130.66166687011713,54.00166702270508],[-130.4183349609375,54.103092193603516]]],[[[-131.67327880859375,54.091125488281364],[-131.6961059570312,53.99951171875006],[-131.8621826171875,53.80719757080078],[-131.95663452148438,53.51505279541021],[-131.91082763671875,53.4302978515625],[-131.99888610839844,53.24583435058594],[-132.17999267578125,53.24250030517584],[-132.21377563476557,53.14783096313488],[-132.47171020507812,53.135021209716854],[-132.65834045410156,53.25694274902344],[-132.66278076171864,53.4268798828125],[-132.93768310546875,53.515502929687614],[-132.93388366699213,53.62250137329107],[-133.11547851562494,53.77587890625],[-133.1578979492187,53.91528320312494],[-133.0802459716797,54.00788497924799],[-133.0263671875,54.184566497802734],[-132.8200073242187,54.12777709960932],[-132.66278076171864,54.15447998046869],[-132.56048583984375,54.042480468750114],[-132.3204956054687,54.111946105956974],[-132.17555236816395,54.015556335449276],[-132.10499572753906,53.880554199218864],[-132.26048278808594,53.76448440551769],[-132.5465240478515,53.69062042236328],[-132.20130920410156,53.659858703613395],[-132.09170532226557,53.901462554931584],[-132.1630249023437,54.0396728515625],[-131.94000244140625,54.036388397216854],[-131.67327880859375,54.091125488281364]]],[[[-130.893325805664,54.631111145019474],[-130.77444458007812,54.55194473266607],[-130.9511108398437,54.45777893066406],[-130.9638061523437,54.55389404296875],[-130.893325805664,54.631111145019474]]],[[[-130.18833923339844,55.02916717529308],[-130.1538848876953,54.95555496215826],[-130.2741088867187,54.83532714843756],[-130.42105102539057,54.76795959472662],[-130.48939514160156,54.82621383666992],[-130.18833923339844,55.02916717529308]]],[[[-122.12632751464844,49.17847824096691],[-122.23483276367176,49.140743255615234],[-122.31056213378906,49.123783111572266],[-122.427978515625,49.17142486572271],[-122.56806182861328,49.18342971801769],[-122.59269714355469,49.20659255981445],[-122.61953735351557,49.212478637695426],[-122.66662597656244,49.19870758056646],[-122.77680969238281,49.22772216796881],[-122.88096618652344,49.22399139404297],[-123.12671661376953,49.11006927490246],[-123.19905090332031,49.12465286254894],[-123.24241638183594,49.280239105224666],[-123.2115478515625,49.34049606323248],[-123.2611083984375,49.52626419067383],[-123.35741424560547,49.55427169799805],[-123.49258422851562,49.51827239990246],[-123.50049591064453,49.39311981201183],[-123.90262603759766,49.48040771484381],[-124.07245635986322,49.63721084594721],[-124.0343246459961,49.74180603027355],[-124.13113403320312,49.78139495849615],[-124.39659118652338,49.765880584716854],[-124.52677917480463,49.8041725158692],[-124.5932846069336,49.8885231018067],[-124.7520751953125,49.963352203369254],[-124.70845794677729,50.094512939453125],[-124.59708404541004,50.23456573486334],[-124.71111297607416,50.322223663330135],[-124.82833099365229,50.306945800781364],[-124.99333190917963,50.348056793213004],[-125.11457061767578,50.42996597290039],[-125.3504409790039,50.48156738281256],[-125.47611236572266,50.441143035888786],[-125.70346069335938,50.42204284667969],[-125.80911254882812,50.50407791137707],[-125.98182678222656,50.468971252441406],[-126.2079238891601,50.50044631958019],[-126.1816635131836,50.668056488037166],[-126.21630096435541,50.83217239379883],[-126.33014678955078,50.8501930236817],[-126.47631072998047,50.81323623657238],[-126.58889007568354,50.87722396850586],[-126.71602630615229,50.872150421142635],[-126.82953643798817,50.954742431640625],[-126.92610931396479,50.86083221435558],[-127.07722473144531,50.8391685485841],[-127.33777618408203,50.90583419799805],[-127.51555633544922,50.990276336669865],[-127.53638458251947,51.11520004272472],[-127.67091369628906,51.09204483032232],[-127.78277587890625,51.17916488647461],[-127.77834320068354,51.31944656372082],[-127.51802825927734,51.52095794677746],[-127.800552368164,51.53166580200201],[-127.8894424438476,51.69250106811529],[-127.87700653076172,51.9018440246582],[-127.6683349609375,51.951389312744084],[-127.60612487792969,52.121864318847656],[-127.21300506591791,52.273281097412166],[-127.16278076171875,52.34222412109381],[-127.26062774658203,52.47589492797863],[-127.4366683959961,52.41361236572277],[-127.4852828979491,52.34038925170904],[-127.89863586425781,52.22465133666998],[-127.94366455078125,52.32364273071295],[-128.15110778808588,52.409721374511776],[-128.284439086914,52.26083374023449],[-128.35722351074213,52.359443664550895],[-128.252227783203,52.4091682434082],[-128.2471923828125,52.526916503906364],[-128.1361083984375,52.71252441406244],[-128.12499999999994,52.8331298828125],[-128.24229431152338,52.79886627197277],[-128.4305572509765,52.814167022705135],[-128.50158691406244,52.88970947265619],[-128.51173400878906,53.01580810546875],[-128.60556030273432,53.1616668701173],[-128.75636291503906,53.215385437011776],[-128.88935852050776,53.31209182739252],[-128.88671875,53.412040710449276],[-128.97531127929688,53.49474716186529],[-128.81797790527344,53.56896209716797],[-128.71969604492182,53.81438827514654],[-128.78286743164062,53.9036102294923],[-128.9468994140625,53.770690917968864],[-129.11833190917963,53.716945648193416],[-129.23388671875,53.63083267211914],[-129.25616455078114,53.407558441162166],[-129.337646484375,53.38175582885742],[-129.6468963623047,53.56654357910162],[-129.7849884033203,53.70558166503912],[-130.07318115234375,53.89111328125],[-130.0869750976562,54.10668945312506],[-130.27932739257807,54.20444488525385],[-130.25186157226557,54.318584442138786],[-130.47601318359375,54.363281250000114],[-130.4509887695312,54.52191162109381],[-130.35945129394526,54.59751129150402],[-130.37023925781244,54.68000793457031],[-130.20944213867182,54.72027587890631],[-129.97756958007812,55.07450103759771],[-129.68222045898438,55.375278472900334],[-129.7278594970703,55.47201156616211],[-129.9022216796875,55.16448974609381],[-130.1116180419922,54.98724365234375],[-130.1670684814453,55.080257415771484],[-130.0978240966797,55.18363189697277],[-129.94555664062494,55.287498474121094],[-130.0239715576172,55.4593505859375],[-130.1096801757812,55.562072753906364],[-130.08644104003906,55.6821556091308],[-130.13333129882807,55.765834808349666],[-130.00610351562494,55.883609771728516],[-130.00302124023438,56.00790023803722],[-130.10540771484364,56.1226806640625],[-130.24591064453125,56.096313476562614],[-130.42547607421875,56.141723632812614],[-130.46820068359375,56.24328613281256],[-130.62298583984375,56.26690673828125],[-130.78179931640625,56.36712646484381],[-131.08697509765625,56.4061279296875],[-131.4716186523437,56.55267333984381],[-131.58129882812494,56.6123046875],[-131.83538818359375,56.59912109374994],[-131.8731079101562,56.8062744140625],[-132.12310791015625,56.87390136718756],[-132.0447998046874,57.04510498046875],[-132.36871337890625,57.09167480468756],[-132.24780273437494,57.21112060546881],[-132.36924743652344,57.349891662597656],[-132.55389404296875,57.496704101562614],[-132.8690185546875,57.8397216796875],[-133.06954956054688,58.00005340576183],[-133.1719512939452,58.153831481933594],[-133.45986938476562,58.38847732543957],[-133.37997436523438,58.43181228637695],[-133.69947814941406,58.60911560058594],[-133.84104919433582,58.72985458374029],[-134.25799560546864,58.860870361328125],[-134.4074096679687,58.97901153564459],[-134.48272705078125,59.13097000122076],[-134.5655059814453,59.130840301513615],[-134.70069885253906,59.24889755249018],[-134.9597778320312,59.28104019165045],[-135.10063171386713,59.42776107788097],[-135.0288848876953,59.56364059448242],[-135.23365783691406,59.69609069824213],[-135.47958374023438,59.798099517822266],[-135.94760131835932,59.66343307495117],[-136.1952514648437,59.63881301879883],[-136.3014373779297,59.46583938598633],[-136.46405029296875,59.46300125122076],[-136.457763671875,59.28142166137701],[-136.58198547363276,59.16554260253912],[-136.82467651367182,59.15980148315441],[-137.28269958496094,59.00009918212885],[-137.45150756835938,58.908535003662166],[-137.60743713378906,59.243480682373104],[-138.60920715332026,59.76000213623047],[-138.70578002929688,59.9062385559082],[-139.05220031738276,60.00004196166992],[-123.78933715820312,60.00003433227539],[-120,60.00000000000006],[-119.99998474121088,53.806236267089844],[-119.9079818725586,53.71060180664074],[-119.79737854003906,53.707771301269474],[-119.74872589111328,53.59336853027344],[-119.92588806152338,53.61453628540045],[-119.72541809082026,53.3887557983399],[-119.40608215332031,53.36809158325201],[-119.23274230957026,53.18175888061529],[-119.04690551757812,53.14490127563482],[-118.97520446777344,53.241649627685604],[-118.78653717041004,53.15922164916998],[-118.66020965576172,52.96393585205078],[-118.44829559326172,52.8852653503418],[-118.29013824462885,52.67769241333019],[-118.33256530761713,52.580169677734375],[-118.23552703857422,52.49017715454113],[-118.21277618408197,52.37034225463873],[-118.04416656494135,52.39846038818365],[-118.02182006835938,52.4723014831543],[-117.76649475097656,52.417694091796875],[-117.72298431396479,52.355583190918026],[-117.81832122802734,52.226356506347656],[-117.61126708984375,52.14425659179693],[-117.38125610351562,52.13772583007818],[-117.19721984863276,51.980136871338004],[-117.01946258544916,51.891361236572266],[-116.9205703735351,51.709804534912166],[-116.68207550048828,51.81214523315441],[-116.59501647949219,51.66183090209972],[-116.29248046874994,51.46181488037121],[-116.26801300048828,51.31193161010748],[-116.00758361816406,51.22197341918957],[-115.923599243164,51.083087921142635],[-115.77239990234375,51.06699752807617],[-115.64883422851557,50.9975204467774],[-115.55091857910156,50.79706573486334],[-115.3276138305664,50.7219352722168],[-115.23098754882812,50.54487991333019],[-115.01369476318354,50.57085800170893],[-114.80392456054688,50.3648796081543],[-114.66636657714838,50.05094528198242],[-114.69178771972656,49.8962860107423],[-114.63993835449213,49.827720642089844],[-114.66207885742182,49.643386840820426],[-114.58824157714838,49.56539154052729],[-114.59843444824219,49.41256332397461],[-114.48762512207026,49.34732055664068],[-114.39895629882807,49.21036529541021],[-114.1749038696289,49.163551330566406],[-114.07023620605457,49.00068283081066],[-116.42106628417969,49.001522064208984],[-121.95539093017572,49.0000457763673],[-122.75385284423828,49.00329208374029],[-122.86600494384766,49.02385711669933],[-122.88350677490229,49.212554931640625],[-122.71868133544922,49.20975494384771],[-122.66730499267572,49.19155883789057],[-122.60741424560541,49.2084846496582],[-122.57480621337885,49.170181274414176],[-122.4078979492187,49.15450668334961],[-122.33251953125,49.106079101562614],[-122.12632751464844,49.17847824096691]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":"Colombie britannique|New Caledonia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.96736907958984,56.8569450378418],[-89.64416503906239,56.44984817504894],[-90.43309783935547,55.95698928833036],[-91.163345336914,55.48350906372076],[-91.64778900146484,55.15848541259794],[-91.99999999999994,54.90601730346691],[-92.6586074829101,54.453392028808594],[-93.6298828125,53.75007247924805],[-94.2626724243164,53.381423950195256],[-95.15314483642572,52.84057235717802],[-95.15290832519531,49.746074676513786],[-95.14968872070307,49.3804550170899],[-95.1513900756836,48.99995040893583],[-101.36248016357422,49.000080108642805],[-101.41864776611328,49.53269577026367],[-101.41925811767572,49.887104034424],[-101.47529602050781,50.59421539306635],[-101.50926971435541,50.593273162841854],[-101.508544921875,50.948207855224666],[-101.53916931152344,51.301719665527344],[-101.57046508789062,51.30188751220703],[-101.5775527954101,51.96853637695318],[-101.66979980468744,52.85914611816435],[-101.66970062255854,52.85924148559582],[-101.70069122314447,53.01148986816412],[-101.7022094726562,53.36434936523443],[-101.73500823974604,53.53037261962902],[-101.73501586914057,53.53046035766613],[-101.73500823974604,53.53136062622076],[-101.73500823974604,53.53144836425787],[-101.73500823974604,53.53181076049816],[-101.7350006103515,53.53199005126959],[-101.7350006103515,53.53216934204113],[-101.73500823974604,53.53306579589838],[-101.73500823974604,53.53324508666998],[-101.7350006103515,53.53576278686529],[-101.73499298095703,53.5358505249024],[-101.73499298095703,53.53594207763672],[-101.73499298095703,53.53630065917963],[-101.7350006103515,53.536434173583984],[-101.7350006103515,53.53693008422863],[-101.7350006103515,53.53701782226574],[-101.73499298095703,53.53836822509777],[-101.7349853515625,53.53845596313488],[-101.7349853515625,53.53980255126953],[-101.7349853515625,53.53998565673828],[-101.7349853515625,53.54169082641613],[-101.7349853515625,53.54187011718767],[-101.7349853515625,53.54222869873064],[-101.7349853515625,53.54238128662138],[-101.73497772216797,53.54249954223627],[-101.7349853515625,53.5427703857423],[-101.7349853515625,53.54294967651367],[-101.7349853515625,53.54339981079113],[-101.7349853515625,53.54357528686529],[-101.73497772216797,53.54366683959961],[-101.73497772216797,53.54384613037115],[-101.7349853515625,53.54492568969738],[-101.73497772216797,53.54501342773443],[-101.73497772216797,53.5470809936524],[-101.73497772216797,53.54717254638666],[-101.73497772216797,53.54726028442394],[-101.73497772216797,53.54735183715826],[-101.7349624633789,53.54905700683605],[-101.73497009277344,53.54923629760742],[-101.7349624633789,53.55013656616205],[-101.7349624633789,53.55031585693365],[-101.7349624633789,53.55112457275402],[-101.73497009277344,53.55130386352539],[-101.7349624633789,53.55220031738281],[-101.7349624633789,53.55237960815441],[-101.7349624633789,53.55265045166027],[-101.73495483398438,53.55273818969732],[-101.73495483398438,53.55282974243164],[-101.7349624633789,53.55381774902355],[-101.7349624633789,53.55390930175781],[-101.73495483398438,53.55525588989269],[-101.73494720458984,53.55534744262695],[-101.7349395751952,53.55938720703119],[-101.7349395751952,53.55947875976568],[-101.73494720458984,53.56028747558605],[-101.73494720458984,53.56046676635742],[-101.7349395751952,53.56172180175781],[-101.7349395751952,53.5618133544923],[-101.7349395751952,53.56271362304693],[-101.7349395751952,53.56280136108404],[-101.7349395751952,53.56298065185558],[-101.73493194580072,53.56307220459007],[-101.73493194580072,53.5631637573245],[-101.7349395751952,53.56396865844732],[-101.7349395751952,53.564060211181584],[-101.7349395751952,53.56414794921869],[-101.7349395751952,53.56423950195318],[-101.73493194580072,53.565586090087834],[-101.7349243164062,53.56567764282249],[-101.7349243164062,53.567115783691634],[-101.7349243164062,53.56720352172874],[-101.73493194580072,53.56819152832031],[-101.7349243164062,53.568283081054744],[-101.7349243164062,53.569358825683594],[-101.7349243164062,53.56949996948248],[-101.7349243164062,53.570705413818644],[-101.7349243164062,53.57079696655296],[-101.73491668701166,53.57088851928722],[-101.73491668701166,53.5711555480957],[-101.73491668701166,53.57124710083019],[-101.73491668701166,53.57241439819347],[-101.73491668701166,53.572505950927734],[-101.73491668701166,53.57322311401367],[-101.73491668701166,53.573314666748104],[-101.73491668701166,53.573417663574276],[-101.73490905761713,53.573581695556754],[-101.73490905761713,53.574119567871094],[-101.73491668701166,53.574302673339844],[-101.73490905761713,53.57608032226568],[-101.73490142822266,53.57618713378923],[-101.73490142822266,53.578613281250114],[-101.73490142822266,53.578704833984375],[-101.73489379882812,53.580051422119425],[-101.73489379882812,53.580139160156534],[-101.73489379882812,53.580589294433764],[-101.73490142822266,53.580768585205135],[-101.73489379882812,53.581489562988565],[-101.73490142822266,53.5816535949707],[-101.73489379882812,53.582386016845874],[-101.73489379882812,53.58253860473661],[-101.73489379882812,53.58265686035173],[-101.7348861694336,53.583915710449276],[-101.7348861694336,53.584003448486385],[-101.73489379882812,53.584991455078296],[-101.7348861694336,53.585079193115234],[-101.7348861694336,53.585979461670036],[-101.7348861694336,53.58611297607422],[-101.73487854003906,53.586608886718864],[-101.73487854003906,53.586700439453125],[-101.73487854003906,53.588943481445256],[-101.73487091064453,53.589035034179744],[-101.73487091064453,53.593883514404354],[-101.73487091064453,53.594062805175895],[-101.73486328125,53.595230102539176],[-101.73485565185547,53.595413208007926],[-101.73485565185547,53.598556518554744],[-101.73485565185547,53.598735809326286],[-101.73485565185547,53.599094390869254],[-101.73484802246094,53.599273681640625],[-101.73484802246094,53.599456787109375],[-101.73485565185547,53.600444793701286],[-101.73485565185547,53.60054397583008],[-101.73484039306635,53.60351943969755],[-101.73484039306635,53.60369873046875],[-101.73484802246094,53.60468673706049],[-101.73484039306635,53.60477828979498],[-101.73483276367182,53.6063041687014],[-101.73483276367182,53.60639572143549],[-101.73484039306635,53.6071128845216],[-101.73484039306635,53.60720443725603],[-101.73484039306635,53.61088562011736],[-101.73484802246094,53.61104583740246],[-101.73484802246094,53.61241149902338],[-101.73484802246094,53.61259460449213],[-101.73484802246094,53.61268234252941],[-101.73485565185547,53.61295318603527],[-101.73485565185547,53.61501693725586],[-101.73486328125,53.61510848999029],[-101.73486328125,53.61600494384777],[-101.73486328125,53.616142272949276],[-101.73489379882812,53.62211608886747],[-101.73490142822266,53.622230529785384],[-101.7703018188476,53.70927047729492],[-101.76824951171875,54.0644264221192],[-101.81122589111322,54.064228057861555],[-101.8111572265625,54.41405868530279],[-101.8475112915039,54.539932250976676],[-101.84722900390625,54.552505493164176],[-101.84355926513666,54.74309539794922],[-101.84339141845703,54.74309921264654],[-101.8819732666015,54.898700714111385],[-101.8819732666015,54.89885330200195],[-101.8818969726562,54.909465789795206],[-101.8818969726562,54.90958786010765],[-101.8797988891601,55.105594635009766],[-101.8797988891601,55.10586929321295],[-101.920166015625,55.11171340942383],[-101.91478729248041,55.41780471801769],[-101.91476440429688,55.421249389648665],[-101.95520782470697,55.50004196166992],[-101.95515441894531,55.512714385986385],[-101.95087432861328,55.814037322998104],[-102,55.96755218505871],[-102,55.99990463256847],[-102,56.000000000000114],[-102,56.01438903808594],[-102,56.45178604125971],[-102,56.451946258545036],[-102,56.57289886474615],[-102,56.57737350463873],[-102,56.75118637084972],[-102,56.752265930175895],[-102,56.87717437744152],[-102,56.89306640625],[-102,56.979717254638786],[-102,56.97987365722656],[-102,57.000000000000114],[-102,57.002792358398494],[-102,57.07008361816406],[-102,57.07024765014654],[-102,57.21410751342785],[-102,57.21680831909174],[-102.00000762939453,58.36177062988281],[-102,58.479991912841854],[-102,58.51985168457031],[-102,58.53668212890631],[-102,58.581077575683594],[-102,58.58963012695307],[-102,58.662860870361385],[-102,58.6631431579591],[-101.99999237060547,58.744815826416016],[-102,58.74494171142578],[-102,58.94940185546875],[-102,58.9495849609375],[-102,59.007614135742244],[-102,59.01180648803722],[-102,59.01985168457037],[-102,59.02693939208996],[-102,59.03860855102545],[-102,59.14680862426769],[-102,59.27099227905285],[-101.99999237060547,59.29595565795904],[-101.99999237060547,59.30723953247082],[-102,59.3073463439942],[-102,60.00000000000006],[-94.82127380371088,60.00001525878929],[-94.79055786132807,59.7961120605471],[-94.82944488525374,59.641387939453296],[-94.71444702148426,59.36916732788109],[-94.81277465820307,59.22944259643566],[-94.77722167968727,59.02472305297874],[-94.60333251953108,58.92777633667015],[-94.58555603027332,58.855556488037394],[-94.40612792968744,58.70532226562523],[-94.17388916015608,58.77471923828148],[-94.03888702392555,58.761943817138956],[-93.68389892578102,58.78808593750023],[-93.17944335937489,58.738334655761946],[-93.10722351074213,58.47638702392595],[-92.88439941406233,58.17309570312517],[-92.69166564941389,57.74583435058611],[-92.49609374999983,57.529479980469034],[-92.4250030517577,57.357776641845874],[-92.43444824218739,57.261718750000284],[-92.6115112304687,56.98170471191435],[-92.45721435546852,57.04327392578148],[-92.21944427490223,57.07222366333036],[-92.04389190673805,57.04583358764671],[-91.87666320800781,57.072776794433764],[-91.13049316406239,57.251403808594034],[-90.88769531249983,57.265319824219034],[-90.63500213623024,57.238056182861555],[-90.35938262939436,57.153667449951456],[-89.9705581665039,57.00944519042986],[-89.51444244384754,56.929721832275675],[-88.96736907958984,56.8569450378418]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-66.78190612792963,44.80089569091797],[-66.74165344238276,44.65107345581055],[-66.89134216308594,44.66032409667969],[-66.78190612792963,44.80089569091797]]],[[[-64.6277618408202,47.886821746826286],[-64.50643157958979,47.84932708740246],[-64.65044403076166,47.72957611083979],[-64.70527648925776,47.83527755737316],[-64.6277618408202,47.886821746826286]]],[[[-64.04694366455072,45.981712341308594],[-64.1496353149414,45.979915618896484],[-64.27828216552734,45.83412170410162],[-64.35472106933588,45.86000061035156],[-64.47777557373047,45.766666412353516],[-64.57194519042963,45.82110977172857],[-64.6930541992187,45.68277740478527],[-64.86583709716797,45.631942749023494],[-65.03505706787104,45.53683090209961],[-65.33856964111328,45.449642181396484],[-65.5355224609375,45.32287597656244],[-65.80230712890614,45.26251220703131],[-65.90811920166016,45.19393920898432],[-66.02178192138672,45.26955032348644],[-66.21829986572254,45.14076232910156],[-66.47004699707026,45.07162475585949],[-66.53308105468744,45.13568115234381],[-66.70612335205078,45.05844497680664],[-66.88972473144531,45.03805541992199],[-66.95323944091797,45.15700912475597],[-67.0643920898437,45.124694824218864],[-67.28820800781244,45.1884765625],[-67.35400390624994,45.1373291015625],[-67.4776000976562,45.28729248046881],[-67.4215087890625,45.37628173828119],[-67.57849121093744,45.60028076171881],[-67.78874969482422,45.68232727050787],[-67.78098297119135,45.94573974609381],[-67.78359985351562,47.06317138671875],[-67.95795440673828,47.20030593872076],[-68.24383544921875,47.35255432128906],[-68.37779235839838,47.28829956054693],[-68.58042144775385,47.286880493164006],[-68.6124267578125,47.24597167968756],[-68.89749145507812,47.17663955688482],[-69.05052947998047,47.300170898437614],[-68.79962921142578,47.34894180297863],[-68.5692749023437,47.4271240234375],[-68.38349914550776,47.553199768066406],[-68.38233184814453,47.91611480712885],[-68.12279510498047,47.91632080078125],[-68.12260437011719,47.999843597412166],[-67.59805297851557,47.99989318847656],[-67.59465789794922,47.924972534179744],[-67.3647232055664,47.856216430664006],[-66.92127227783203,47.98460388183594],[-66.77474975585932,47.99764633178705],[-66.63467407226551,48.003684997558594],[-66.47284698486328,48.06160354614258],[-66.1091690063476,47.95444488525385],[-65.8311080932616,47.90777587890625],[-65.73278045654291,47.830001831054744],[-65.64083099365229,47.6694450378418],[-65.48944091796875,47.67472076416021],[-65.18111419677734,47.819168090820426],[-65.004165649414,47.83777618408203],[-64.96726989746082,47.791759490966854],[-64.80116271972656,47.80385208129894],[-64.76666259765625,47.67612075805664],[-64.90499877929676,47.54833221435558],[-64.9012603759765,47.39874649047846],[-64.97429656982416,47.27714157104498],[-65.27503204345703,47.11283111572271],[-65.16305541992182,47.03722381591797],[-65.01388549804682,47.085834503173885],[-64.80750274658197,47.076667785644645],[-64.81277465820301,46.97511291503912],[-64.9127807617187,46.8663902282716],[-64.89470672607422,46.74630737304699],[-64.72000122070312,46.690555572509766],[-64.66761016845697,46.466865539550895],[-64.51245117187494,46.322429656982365],[-64.51580810546875,46.24154663085943],[-64.27332305908203,46.236167907714844],[-64.16583251953125,46.19972229003906],[-63.83444595336914,46.153057098388615],[-64.0425033569336,46.04555511474621],[-64.04694366455072,45.981712341308594]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":"Nouveau-Brunswick|Acadia"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-53.93555450439453,48.2136116027832],[-53.86666488647455,48.15722274780279],[-53.72416687011719,48.14611053466808],[-53.57833480834961,48.18611145019537],[-53.560832977294865,48.08861160278332],[-53.85527801513672,48.08889007568371],[-53.93555450439453,48.2136116027832]]],[[[-58.88805389404291,48.70305633544933],[-58.78166580200195,48.52944564819336],[-59.23654937744129,48.5226783752442],[-59.086387634277344,48.62666702270519],[-58.88805389404291,48.70305633544933]]],[[[-54.1511116027832,49.75305557250982],[-54.11472320556635,49.609165191650334],[-54.288333892822266,49.56194305419933],[-54.31840133666992,49.675880432128906],[-54.1511116027832,49.75305557250982]]],[[[-55.90134429931635,51.63085556030279],[-55.87444305419916,51.520832061767635],[-55.7341423034668,51.49962615966808],[-55.47043228149414,51.599922180175895],[-55.4716682434082,51.43638992309582],[-55.61296081542963,51.30854797363281],[-55.81246566772455,51.34856796264654],[-55.86345291137695,51.23080825805664],[-55.73827743530268,51.198699951171875],[-55.73423385620117,51.0870742797851],[-55.864547729492074,50.937217712402344],[-56.10555648803711,50.72416687011719],[-56.129829406738224,50.637733459472656],[-56.39754104614252,50.405254364013786],[-56.47752380371094,50.27110671997076],[-56.752857208251896,50.02346420288086],[-56.72888946533203,49.95027923583996],[-56.83489608764643,49.784564971923885],[-56.74829101562494,49.673080444335994],[-56.617927551269474,49.81550598144531],[-56.41371536254883,49.922164916992244],[-56.160556793212834,50.157775878906364],[-55.73280715942383,49.92904663085943],[-55.52790832519531,50.00435256958019],[-55.48027801513666,49.94250106811529],[-55.69383239746088,49.830890655517635],[-55.87113952636719,49.78433227539074],[-55.95055389404291,49.70194625854498],[-55.726047515869084,49.42181396484375],[-55.55583190917963,49.41671752929693],[-55.454036712646484,49.499858856201286],[-55.315834045410156,49.40999984741222],[-55.28361129760742,49.54555511474604],[-55.13583374023432,49.48749923706055],[-55.2484512329101,49.346191406250114],[-55.24318313598633,49.25785446166992],[-54.96500015258789,49.307777404785156],[-54.8569450378418,49.301944732666016],[-54.671665191650334,49.39749908447277],[-54.54658889770508,49.54592132568371],[-54.465000152587834,49.431110382080135],[-54.31694412231445,49.44166564941406],[-54.25777816772455,49.37333297729498],[-54.161666870117074,49.457500457763786],[-54.02083206176758,49.46805572509771],[-53.68556976318354,49.36103820800787],[-53.48750686645502,49.229507446289006],[-53.61103439331055,49.11594390869146],[-53.936389923095646,48.91444396972656],[-53.9456672668457,48.84108352661127],[-53.83627319335926,48.70176696777344],[-53.77101898193354,48.512619018554744],[-53.66166687011719,48.54027938842785],[-53.57455444335932,48.45127868652355],[-53.453540802001896,48.612873077392635],[-53.2944450378418,48.54777908325195],[-53.0816650390625,48.66555404663097],[-53.00193405151367,48.609745025634766],[-53.059444427490234,48.45972061157232],[-53.19388961791992,48.38027954101568],[-53.28944396972656,48.389999389648494],[-53.42388916015619,48.284721374511776],[-53.63777923583979,48.176109313964844],[-53.84444427490229,48.18583297729498],[-53.956390380859375,48.23583221435547],[-53.938888549804574,48.08055496215826],[-53.68916702270508,48.07888793945318],[-53.635276794433594,47.988609313964844],[-53.85499954223633,47.72388839721691],[-53.713333129882756,47.57083511352539],[-53.546390533447266,47.552223205566406],[-53.50611114501942,47.74944305419922],[-53.30916595458979,48.00166702270508],[-53.004165649414006,48.085556030273494],[-52.988887786865234,47.98444366455078],[-53.27334976196289,47.62163162231451],[-53.08368682861328,47.47073745727545],[-52.92034530639643,47.54173278808594],[-52.78750610351557,47.809452056884766],[-52.72400283813465,47.76216888427746],[-52.64613723754883,47.48853683471691],[-52.90009689331055,47.09405517578125],[-52.893333435058594,46.94055557250988],[-52.93754577636719,46.81480407714838],[-53.09114456176752,46.64553833007818],[-53.219444274902344,46.63499832153332],[-53.367454528808594,46.7482147216798],[-53.55900192260742,46.61025238037115],[-53.652462005615234,46.70602416992193],[-53.602222442626896,46.892776489257926],[-53.61643981933588,47.131687164306754],[-53.781597137451115,47.03148651123041],[-53.91371536254883,46.885330200195426],[-54.060508728027344,46.7993545532226],[-54.18305587768555,46.816665649414176],[-54.16708374023432,46.99092102050781],[-54.075279235839844,47.1069450378418],[-53.92932128906244,47.38386917114252],[-53.90050506591797,47.60712051391607],[-54.000278472900334,47.79722213745117],[-54.15222167968744,47.84416580200195],[-54.40750122070307,47.5272216796875],[-54.44277954101557,47.419445037841854],[-54.600276947021484,47.3477783203125],[-54.6694450378418,47.37499999999994],[-54.89860916137695,47.34436798095709],[-55.06251907348633,47.21245193481445],[-55.08000183105469,47.080001831054744],[-55.17072677612299,47.04574584960949],[-55.24027633666992,46.933612823486385],[-55.381668090820256,46.874721527099666],[-55.573890686035156,46.92027664184576],[-55.826389312744084,46.86083221435547],[-55.96861267089844,46.90861129760742],[-55.97694396972656,46.99250030517584],[-55.766937255859375,47.1027717590332],[-55.51873016357416,47.14253234863281],[-55.33735275268549,47.24545288085949],[-55.289653778076115,47.39201736450207],[-55.178752899169865,47.46858978271496],[-54.95916748046875,47.50388717651367],[-55.24034118652338,47.65577697753906],[-55.41798782348633,47.634044647216854],[-55.41387176513672,47.483184814453125],[-55.574329376220646,47.43698883056635],[-55.61285018920893,47.50124359130871],[-55.809116363525334,47.455261230468864],[-55.86444473266596,47.61416625976574],[-55.97325134277338,47.76401901245117],[-56.04805374145508,47.701110839843864],[-56.38388824462885,47.60277938842785],[-56.65029525756836,47.61418914794922],[-56.80936050415039,47.53333282470703],[-57.0180549621582,47.59388732910162],[-57.32911682128906,47.58504867553722],[-57.41484451293945,47.63834381103527],[-57.990833282470646,47.66443634033209],[-58.046340942382756,47.70035171508789],[-58.23444366455078,47.66166687011713],[-58.37194442749012,47.69083404541027],[-58.62851333618164,47.61298751831055],[-58.89295959472656,47.60253524780279],[-59.16611099243164,47.56527709960943],[-59.30611038208008,47.646389007568416],[-59.30194473266596,47.75],[-59.396583557128906,47.922271728515625],[-59.08444595336914,48.09944534301769],[-58.97883987426752,48.12948989868164],[-58.62055587768549,48.399166107177734],[-58.44111251831055,48.44777679443365],[-58.540554046630746,48.542499542236385],[-58.712223052978516,48.563056945800895],[-58.68838882446289,48.6798667907716],[-58.53722381591797,48.87861251831066],[-58.500030517578125,49.00719070434582],[-58.40068054199219,49.13346099853521],[-58.34444427490229,49.052501678466854],[-58.163612365722656,49.06166839599604],[-58.066944122314396,49.210556030273494],[-58.20350265502924,49.22991943359375],[-58.25593185424805,49.29149627685541],[-58.21583175659168,49.42305374145508],[-57.955554962158146,49.61111068725586],[-57.96694564819336,49.66749954223644],[-57.83472061157221,49.88722229003906],[-57.77694320678705,49.923332214355526],[-57.605899810791016,50.17388916015625],[-57.475559234619084,50.47632217407232],[-57.38628768920893,50.53470230102545],[-57.35975646972656,50.70229339599615],[-57.098403930664006,50.78206634521496],[-56.98079681396479,50.88441085815441],[-56.79999923706049,51.24333190917969],[-56.70000076293945,51.33805465698242],[-56.43944549560547,51.4116668701173],[-55.90134429931635,51.63085556030279]]],[[[-61.07163619995117,56.17113494873047],[-61.04718017578119,56.009704589843864],[-61.19667053222656,56.04053878784191],[-61.07163619995117,56.17113494873047]]],[[[-61.740455627441406,56.40618515014643],[-61.49611282348633,56.40511322021496],[-61.47111129760742,56.31527709960949],[-61.71331787109369,56.3538818359375],[-61.740455627441406,56.40618515014643]]],[[[-61.47430419921875,56.95892333984381],[-61.36277770996094,56.6736106872558],[-61.43999862670893,56.60861206054699],[-61.56722259521479,56.69388961791992],[-61.66944503784174,56.66999816894537],[-61.601245880126896,56.89518737792969],[-61.47430419921875,56.95892333984381]]],[[[-61.72300720214844,57.54257202148443],[-61.70277404785156,57.40253829956066],[-61.872776031494084,57.45000076293951],[-61.72300720214844,57.54257202148443]]],[[[-61.89318847656244,57.59166717529308],[-61.793067932128906,57.50472259521479],[-61.939697265625,57.44750976562494],[-62.04888916015625,57.52447509765631],[-61.89318847656244,57.59166717529308]]],[[[-61.78722381591791,57.84860992431652],[-61.65502929687494,57.78472900390619],[-61.69386672973627,57.70807647705078],[-61.85665893554682,57.77862548828119],[-61.78722381591791,57.84860992431652]]],[[[-64.06154632568354,59.8717155456543],[-64.02222442626953,59.71277618408209],[-64.16000366210938,59.70138931274414],[-64.122802734375,59.849166870117244],[-64.06154632568354,59.8717155456543]]],[[[-64.441665649414,60.13124847412115],[-64.46666717529291,60.125000000000114],[-64.44791412353516,60.097915649414176],[-64.54374694824207,60.07291793823242],[-64.48958587646484,60.00208282470703],[-64.27708435058588,60.00208282470703],[-64.17681121826172,59.85351943969738],[-64.1738891601562,59.68888854980469],[-63.88531494140619,59.61871337890625],[-63.7218017578125,59.49951171875006],[-63.816265106201115,59.382160186767635],[-63.64417266845703,59.361003875732536],[-63.3970832824707,59.282787322998104],[-63.39025497436518,59.09527587890619],[-63.18521118164057,59.050514221191406],[-63.16964340209961,58.92806625366222],[-63.02614593505854,58.896728515625],[-62.845455169677734,58.67267227172863],[-62.990180969238224,58.56112670898443],[-63.16607666015625,58.5067138671875],[-63.013916015625,58.41809082031256],[-62.924644470214844,58.476356506347656],[-62.63631057739258,58.50349426269537],[-62.610553741454964,58.211730957031364],[-62.65557861328125,58.167480468750114],[-63.06111145019531,58.157775878906364],[-63.05279541015625,58.1038818359375],[-62.53858184814453,58.17930221557617],[-62.453079223632756,58.162803649902344],[-62.21099853515625,57.917724609375],[-62.15039062499994,57.97088623046869],[-61.901748657226506,57.6233863830567],[-62.10717773437494,57.580322265625],[-62.185791015625,57.47052001953131],[-61.884178161621094,57.4036102294923],[-61.947513580322266,57.24833297729492],[-61.849426269531136,57.175556182861385],[-61.480098724365234,57.16405868530279],[-61.38470458984375,57.109497070312614],[-61.3650016784668,56.991664886474666],[-61.5444450378418,56.968055725097656],[-61.646690368652344,56.88588333129877],[-61.656982421875,56.80987548828119],[-61.78768539428705,56.55894851684582],[-61.81666564941406,56.404731750488395],[-61.757686614990234,56.20585632324219],[-61.42222213745117,56.20777893066406],[-61.44444274902344,56.07777786254883],[-61.3690185546875,55.970371246337834],[-61.16358947753906,55.979560852050895],[-61.115478515624886,55.841125488281364],[-60.77880859374994,55.85308837890631],[-60.76333236694336,55.77055740356451],[-60.487670898437386,55.8063850402832],[-60.359016418456974,55.75272369384771],[-60.411109924316406,55.662776947021484],[-60.213890075683594,55.41916656494146],[-60.35321044921875,55.39806365966791],[-60.46112060546875,55.15499877929693],[-60.3643798828125,55.1680908203125],[-60.25048828124994,55.269470214843864],[-60.10100555419922,55.17588806152344],[-59.811668395996094,55.31279754638666],[-59.7238883972168,55.27833175659191],[-59.785556793212834,55.14055633544933],[-59.611568450927734,55.15347290039068],[-59.51112747192383,55.21861267089844],[-59.38891601562494,55.05389404296881],[-59.27972412109369,55.194702148437614],[-59.02462005615229,55.151821136474666],[-58.95833206176752,55.07249832153326],[-58.906162261962834,54.855049133300724],[-58.69409179687494,54.841674804687614],[-58.44610595703119,54.7686767578125],[-58.217777252197266,54.79360961914074],[-58.224998474121094,54.87861251831055],[-57.98583984375,54.870857238769645],[-57.716674804687386,54.64129638671875],[-57.45722198486328,54.65861129760748],[-57.37972640991205,54.50807952880871],[-57.44500732421875,54.44113159179699],[-57.7047119140625,54.36828613281244],[-57.88600540161133,54.398101806640625],[-58.175052642822266,54.363117218017635],[-58.25159454345692,54.24531555175781],[-58.44097900390619,54.23809814453131],[-58.44610595703119,54.16639328002924],[-58.61058044433594,54.039875030517635],[-58.935920715331974,54.001388549804744],[-59.48297882080067,53.83238220214844],[-59.850948333740234,53.84912109375],[-59.98833465576172,53.78888702392578],[-60.10760498046869,53.68548583984375],[-60.13269042968744,53.465515136718864],[-60.356426239013615,53.37731933593756],[-60.04937744140625,53.34509277343756],[-59.876052856445256,53.49744415283203],[-59.59199142456055,53.52896881103521],[-59.378684997558594,53.660476684570256],[-59.0283203125,53.71112060546881],[-59.06030654907215,53.79713058471674],[-58.85418701171869,53.9481201171875],[-58.718814849853516,53.952919006347656],[-58.55981445312494,54.01550292968756],[-58.393890380859375,54.02835083007824],[-58.3839111328125,54.19333267211914],[-58.16999816894531,54.23722076416027],[-57.86250686645508,54.200576782226676],[-57.41998291015619,54.186637878418026],[-57.20050048828125,53.868896484375114],[-57.13328552246088,53.7322349548341],[-57.3994140625,53.64892578125006],[-57.31609344482422,53.563098907470646],[-57.30850219726551,53.46134567260748],[-57.13897705078125,53.539123535156364],[-57.143150329589844,53.62487411499035],[-56.965339660644474,53.73289489746105],[-56.76877975463867,53.72004318237316],[-56.702667236328125,53.76045608520519],[-56.6102294921875,53.65252685546875],[-56.422222137451115,53.60944366455084],[-56.35162353515625,53.635070800781364],[-56.21508789062494,53.572509765625114],[-56.02728271484375,53.57770538330078],[-55.98498535156244,53.39349365234375],[-55.82391357421869,53.34588623046881],[-55.856689453125,53.103088378906364],[-55.92840576171875,53.01338577270519],[-55.837146759033146,52.896938323974666],[-56.017017364501896,52.77793502807623],[-55.95849609375,52.68048095703119],[-55.77468872070307,52.69333648681646],[-55.838340759277344,52.51737213134777],[-55.64398193359375,52.43048095703125],[-55.71055603027344,52.23583221435558],[-55.69752883911127,52.09416580200201],[-55.8944091796875,51.959716796875],[-56.20111083984375,51.7911109924317],[-56.67889022827137,51.63416671752941],[-56.856079101562386,51.45947265625006],[-57.10839843749994,51.42510986328125],[-57.1077880859375,51.99847412109375],[-61.806522369384766,51.9958114624024],[-63.808109283447266,51.99784851074219],[-63.67749404907221,52.08309936523432],[-63.75156784057617,52.26065444946295],[-63.82686233520502,52.330837249755916],[-64.01271820068354,52.362594604492244],[-64.09351348876942,52.466072082519645],[-64.0379409790039,52.560955047607536],[-63.850959777831974,52.62247085571295],[-63.429420471191406,52.6455192565918],[-63.45943832397461,52.71809768676769],[-63.59637451171875,52.79558944702143],[-63.87294006347656,52.773963928222656],[-63.937416076660156,52.731025695800724],[-64.1373825073241,52.7292366027832],[-64.21112060546875,52.573600769043026],[-64.10923004150385,52.39405822753906],[-64.22399139404297,52.22954177856445],[-64.28009796142578,51.974750518798885],[-64.3526992797851,51.84927749633795],[-64.27828979492188,51.74637985229492],[-64.55435943603516,51.5758056640625],[-64.65354919433594,51.70153427124018],[-64.811767578125,51.77779769897472],[-65.16230773925781,51.76458358764654],[-65.41228485107422,51.971313476562614],[-65.68656921386719,52.10375595092785],[-65.87699127197266,52.1104087829591],[-65.97039794921875,52.056503295898494],[-66.09636688232422,52.10780715942383],[-66.17697143554682,52.21329116821289],[-66.32357025146479,52.131816864013786],[-66.45408630371094,52.24627304077143],[-66.49051666259766,52.3416366577149],[-66.3908081054687,52.46593856811535],[-66.37973785400385,52.87748336791998],[-66.48863983154291,52.960449218750114],[-66.6258697509765,52.954257965088004],[-66.68662261962885,52.763713836670036],[-66.89476776123047,52.676673889160156],[-66.94957733154286,52.759597778320426],[-67.06700897216797,52.775115966796875],[-67.31682586669916,52.87544631958019],[-67.39233398437494,53.120857238769645],[-67.15422821044916,53.14722442626953],[-67.06848907470697,53.078872680664176],[-67.00612640380854,53.16847229003912],[-66.92287445068348,53.39993286132807],[-66.94452667236317,53.47605514526373],[-67.06202697753906,53.537078857421875],[-67.21877288818354,53.530338287353516],[-67.39472961425776,53.61465454101574],[-67.43373870849604,53.70650100708019],[-67.56676483154291,53.75593185424799],[-67.59630584716797,53.921695709228516],[-67.81466674804688,54.03207015991222],[-67.76503753662104,54.15700149536144],[-67.65704345703125,54.161525726318416],[-67.6799545288086,54.311923980712834],[-67.76896667480463,54.419555664062614],[-67.58165740966791,54.49411010742193],[-67.46763610839844,54.58375930786133],[-67.34923553466791,54.51699066162115],[-67.06290435791016,54.69293212890625],[-67.3351440429687,54.90348815917963],[-67.46370697021473,55.062858581543026],[-67.27281188964844,55.0764274597168],[-67.2574844360351,55.021274566650334],[-66.92704772949213,54.80217361450195],[-66.65943145751953,54.77021789550781],[-66.63200378417957,54.835697174072266],[-66.74937438964838,54.99999999999994],[-66.74890136718744,55.215698242187614],[-66.61803436279297,55.27815246582031],[-66.26028442382812,55.00018310546869],[-66.02339172363281,54.941951751708984],[-65.84984588623047,54.92721176147472],[-65.83831024169922,54.83652877807623],[-65.6931762695312,54.70816421508795],[-65.45552825927729,54.728584289550724],[-65.43462371826172,54.78418350219721],[-65.2096176147461,54.847957611083984],[-65.08581542968739,54.96956253051769],[-64.9719009399414,54.93739700317383],[-64.74787139892578,54.81399154663086],[-64.77808380126953,54.73346710205084],[-64.55688476562494,54.71366119384777],[-64.48529052734375,54.79372024536127],[-64.18775939941406,54.71083831787104],[-64.05427551269531,54.60090637207037],[-63.91144180297846,54.60425186157232],[-63.7689476013183,54.69984436035156],[-63.88974380493164,54.768360137939396],[-63.79171371459961,54.95589447021496],[-63.66128540039057,54.899951934814396],[-63.57630538940424,54.98810577392584],[-63.60648727416992,55.06119155883789],[-63.52994918823242,55.3418540954591],[-63.66539764404291,55.423049926757756],[-63.66849899291992,55.652286529541016],[-63.77702331542969,55.801479339599666],[-63.73394012451172,55.92801666259771],[-63.636722564697266,56.02352523803722],[-63.856178283691406,56.13713836669933],[-64.01805114746088,56.06726455688471],[-64.02214813232416,56.26781463623041],[-63.93106460571289,56.53376007080078],[-64.14531707763672,56.69975662231445],[-64.01298522949219,56.849845886230526],[-63.89950180053705,56.877304077148494],[-63.89007949829096,57.086082458496094],[-63.82014465332031,57.07550048828131],[-63.74146270751953,57.24076461791998],[-63.85581970214844,57.33430099487299],[-63.761257171630746,57.4393310546875],[-63.76548767089844,57.56076812744152],[-63.70277786254877,57.66376876831055],[-63.99725341796869,57.81208038330084],[-64.0719985961914,57.77002334594732],[-64.26926422119135,58.0614128112793],[-64.43309020996088,58.069908142089844],[-64.4217300415039,58.18667221069347],[-64.21777343749994,58.247734069824276],[-64.17222595214844,58.36187362670904],[-64.02253723144526,58.37102127075195],[-63.986579895019474,58.444358825683594],[-63.843101501464844,58.467826843261776],[-63.90736770629883,58.57349395751959],[-64.03408050537104,58.523448944091854],[-64.10494995117182,58.563228607177734],[-64.0472183227539,58.702629089355526],[-63.95025253295893,58.68524551391613],[-63.50679779052729,58.74257659912121],[-63.55078887939453,58.836551666259766],[-63.70999526977539,58.88705062866222],[-64.01973724365234,58.81666946411144],[-64.1377944946289,58.74616622924805],[-64.23365783691406,58.86411666870123],[-64.3325424194336,58.904563903808594],[-64.50891113281244,58.887584686279354],[-64.8403549194336,58.980327606201286],[-64.77924346923828,59.07495880126959],[-64.4603042602539,58.98151779174805],[-64.51159667968744,59.42298126220703],[-64.7285537719726,59.46663665771479],[-64.86870574951172,59.58642578125],[-64.75616455078125,59.8860321044923],[-64.8958740234375,60.066207885742244],[-64.74271392822266,60.05612945556646],[-64.59371948242176,60.117031097412166],[-64.853775024414,60.26941299438482],[-64.53440093994129,60.30833435058588],[-64.441665649414,60.13124847412115]]],[[[-64.72447967529297,60.504684448242244],[-64.47708129882801,60.40625],[-64.46041870117188,60.314582824707145],[-64.85624694824213,60.40625],[-64.72447967529297,60.504684448242244]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":"Newfoundland|Terre-Neuve|Terre-Neuve-et-Labrador"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-135.7687530517578,69.30625152587885],[-135.65415954589838,69.27916717529291],[-135.6494750976562,69.13906097412115],[-135.84323120117188,69.23384857177757],[-135.7687530517578,69.30625152587885]]],[[[-125.76249694824219,69.370834350586],[-125.5104141235351,69.31874847412115],[-125.3187484741211,69.37500000000006],[-125.2874984741211,69.44791412353544],[-125.26875305175776,69.53333282470709],[-125.2750015258789,69.5687484741211],[-125.43958282470703,69.59999847412126],[-125.37864685058594,69.67656707763678],[-125.21302032470703,69.68385314941435],[-125.0374984741211,69.74166870117199],[-124.91041564941406,69.93333435058622],[-125.1312484741211,70.02708435058594],[-125.01041412353516,70.03333282470697],[-124.58802032470697,70.06822967529308],[-124.53333282470703,70.15000152587896],[-124.40885162353516,70.09947967529308],[-124.46666717529297,69.96250152587896],[-124.41666412353516,69.84166717529297],[-124.43958282470703,69.70207977294922],[-124.15416717529291,69.69999694824219],[-124.27500152587885,69.55208587646496],[-124.45365142822254,69.47656250000011],[-124.496353149414,69.3682327270509],[-124.36875152587885,69.34166717529303],[-124.08958435058594,69.33750152587902],[-124.01041412353516,69.36250305175793],[-123.97291564941406,69.3916702270509],[-123.84583282470703,69.36250305175793],[-123.71458435058594,69.34583282470709],[-123.52083587646479,69.37291717529303],[-123.36666870117188,69.48750305175781],[-123.22499847412104,69.51041412353538],[-123.13541412353516,69.63333129882824],[-123.09583282470703,69.72291564941412],[-122.95833587646484,69.82707977294928],[-122.76457977294916,69.7937469482423],[-122.63541412353516,69.82499694824247],[-122.16874694824219,69.7937469482423],[-121.76249694824219,69.80625152587896],[-121.53125,69.7666702270509],[-121.40833282470703,69.77500152587896],[-121.125,69.68541717529308],[-120.9375,69.66458129882818],[-120.38711547851562,69.43428039550781],[-121.04924774169922,69.40641021728516],[-120.90374755859375,67.85517120361328],[-120.01416015625,67.60820007324219],[-118.59419250488281,67.19886016845703],[-117.06546020507812,66.9291763305664],[-116.39335632324213,66.70138549804682],[-115.34188079833984,66.33062744140625],[-113.8890609741211,65.78787994384771],[-112.73799133300781,65.33104705810553],[-111.56942749023438,65.38116455078125],[-111.56803894042969,65.38124847412115],[-110.8423843383789,65.40769958496094],[-109.80426025390614,65.02426910400385],[-109.07715606689447,64.74463653564447],[-107.22619628906239,64.6361923217774],[-105.59407806396473,64.521957397461],[-104.87500762939442,64.4659805297851],[-103.3287582397461,64.32474517822271],[-103.3224029541015,64.32412719726562],[-102.30763244628906,64.22166442871094],[-102.30739593505854,64.22164154052729],[-101.99999237060547,64.18904876708984],[-102,64.13135528564459],[-101.99999237060547,64.13124847412104],[-102,63.75771713256836],[-102,63.75745773315441],[-102,63.72708129882807],[-101.99999237060547,63.724998474121094],[-102,63.71255874633795],[-101.99999237060547,63.706253051757926],[-102,63.706069946289176],[-102,63.70413208007824],[-102,63.00006103515625],[-101.99999237060547,62.993751525878906],[-102,62.873363494873104],[-102,62.87318420410156],[-102,62.868801116943416],[-102,62.86730575561535],[-102,62.19789505004883],[-102,62.1974716186524],[-102,62.06472015380865],[-102,62.06261825561518],[-102,62.05646514892578],[-102.00000762939453,62.056251525878906],[-101.99999237060547,61.98131179809576],[-102,61.97906875610363],[-102,61.18756866455084],[-102,61.18743515014654],[-102,60.8125],[-102,60.80625152587896],[-102,60.60707092285156],[-101.99999237060547,60.606903076171875],[-102,60.52500152587902],[-102.00000762939453,60.52166748046881],[-102,60.00000000000006],[-110,60.00000000000006],[-120,60.00000000000006],[-123.78933715820312,60.00003433227539],[-124.0000610351562,60.10889816284191],[-124.12383270263672,60.20600128173834],[-124.21446990966786,60.364570617675895],[-124.19786071777338,60.44591522216797],[-124.3891372680664,60.458461761474666],[-124.44719696044922,60.572807312011776],[-124.5710678100586,60.6414146423341],[-124.49178314208979,60.72839736938488],[-124.53938293457026,60.93860626220709],[-124.7661514282226,60.958061218261776],[-124.82579803466797,60.837047576904354],[-125.14788055419922,60.83250808715826],[-125.26406860351557,60.76834869384777],[-125.5337905883789,60.81235504150396],[-125.66963958740234,60.803108215331974],[-125.83222961425781,60.881286621093864],[-125.96680450439453,60.7892417907716],[-126.06334686279291,60.85136795043951],[-126.18123626708984,60.84176254272461],[-126.28349304199219,60.75883102416992],[-126.48637390136713,60.80014801025396],[-126.63904571533203,60.730789184570426],[-126.84514617919916,60.77497863769537],[-126.85358428955078,60.93163299560558],[-126.96612548828125,61.05006790161133],[-127.07243347167963,61.06659698486334],[-126.99640655517572,61.2221412658692],[-127.1029586791991,61.45814895629894],[-127.23783874511719,61.500175476074276],[-127.46918487548828,61.48515701293951],[-127.76680755615223,61.594139099121094],[-128.04745483398432,61.72872161865246],[-128.0206451416015,61.82353973388666],[-128.18833923339844,61.82841873168945],[-128.24858093261713,61.937030792236385],[-128.5496368408203,62.11625289916992],[-128.66903686523438,62.109077453613224],[-128.73036193847656,62.04314041137707],[-128.94467163085932,62.11908340454096],[-129.12887573242188,62.09945678710943],[-129.2696685791015,62.2579803466798],[-129.2124633789062,62.50450515747082],[-129.32427978515625,62.52460479736334],[-129.5666961669922,62.6811790466308],[-129.66526794433588,62.81420135498058],[-129.6752166748047,62.92645645141596],[-129.58857727050776,63.04216384887701],[-129.74070739746088,63.06051254272472],[-130.05796813964844,63.30415725708008],[-129.86621093749994,63.3670768737793],[-129.96246337890625,63.60980224609375],[-130.0813598632812,63.60802459716808],[-130.1442413330078,63.861423492431754],[-130.33935546875,63.81327819824213],[-130.44290161132807,63.891143798828125],[-130.77569580078125,63.976249694824276],[-130.95541381835932,64.1133193969726],[-130.94395446777338,64.18578338623041],[-131.06817626953125,64.36132049560547],[-131.2955322265625,64.44678497314453],[-131.62351989746094,64.35366821289062],[-131.8084259033203,64.36882019042974],[-131.71604919433588,64.47549438476574],[-131.93809509277344,64.59033966064447],[-132.03771972656244,64.69642639160156],[-132.35696411132812,64.78317260742182],[-132.5460357666015,64.7702407836914],[-132.3361053466797,65.06072235107422],[-132.54273986816406,65.08989715576172],[-132.772720336914,65.1830444335938],[-132.53713989257812,65.3504638671875],[-132.37643432617188,65.40235900878906],[-132.16831970214844,65.60242462158203],[-132.31346130371094,65.73986053466808],[-132.56369018554682,65.83016967773438],[-132.49453735351557,65.9719924926759],[-132.65660095214844,66.01583099365263],[-132.909210205078,65.88404846191418],[-132.921142578125,66.02041625976574],[-133.1280670166015,66.03093719482433],[-133.40518188476557,65.93885803222656],[-133.6583251953124,65.95967864990234],[-133.54891967773432,66.1699905395509],[-133.62623596191406,66.29861450195312],[-133.7857666015625,66.29537963867188],[-133.67677307128906,66.58317565917969],[-133.84632873535156,66.72279357910156],[-133.75965881347656,66.80102539062523],[-133.94329833984375,66.90526580810558],[-133.8296356201172,67.00000000000006],[-136.16441345214844,67.00000000000006],[-136.23509216308594,67.17253875732422],[-136.13749694824207,67.23263549804688],[-136.19998168945312,67.56166076660156],[-136.28988647460932,67.63423156738293],[-136.44877624511707,67.64947509765653],[-136.45835876464844,67.81291198730474],[-136.46859741210932,68.86666870117188],[-136.35624694824213,68.87291717529314],[-136.18124389648432,68.86458587646507],[-136.05833435058588,68.78958129882812],[-135.97291564941406,68.83125305175787],[-135.7937469482422,68.80000305175793],[-135.84374999999994,68.74791717529325],[-135.8125,68.77291870117199],[-135.62290954589844,68.73332977294922],[-135.49583435058588,68.6812515258789],[-135.6416625976562,68.65416717529297],[-135.64375305175776,68.64791870117193],[-135.4374999999999,68.64791870117193],[-135.45208740234364,68.63333129882824],[-135.23333740234375,68.51457977294922],[-135.21249389648432,68.50624847412115],[-135.1666717529297,68.48542022705084],[-135.11874389648432,68.49166870117188],[-135.0729217529297,68.47916412353521],[-135.0416717529297,68.49583435058611],[-135.27291870117188,68.55625152587902],[-135.16250610351562,68.6041641235351],[-135.11874389648432,68.55625152587902],[-135.0479125976562,68.6041641235351],[-135.36250305175776,68.76041412353516],[-135.4619750976562,68.78593444824213],[-135.4895782470703,68.89791870117188],[-135.3458404541015,68.90625000000011],[-135.4250030517577,68.97291564941406],[-135.39791870117176,68.97708129882812],[-135.50209045410156,69.0166702270509],[-135.60208129882807,69.00833129882807],[-135.9395904541015,69.11042022705078],[-135.93333435058594,69.2416687011721],[-135.7395782470703,69.14167022705078],[-135.53125,69.08541870117188],[-135.5812530517578,69.12083435058605],[-135.52499389648438,69.12500000000028],[-135.47291564941406,69.17500305175793],[-135.53958129882812,69.18541717529303],[-135.61666870117182,69.32083129882818],[-135.4541625976562,69.32499694824219],[-135.3020782470702,69.2750015258789],[-135.23750305175776,69.42500305175787],[-135.10000610351562,69.33125305175798],[-135.07916259765625,69.4625015258789],[-134.82864379882807,69.45677185058594],[-134.6666717529297,69.49166870117188],[-134.602081298828,69.402084350586],[-134.62290954589844,69.4375],[-134.602081298828,69.43333435058594],[-134.566665649414,69.52916717529325],[-134.43124389648432,69.61042022705107],[-134.4895782470703,69.67292022705101],[-134.2833404541015,69.65208435058594],[-134.254165649414,69.57499694824213],[-134.160415649414,69.52083587646479],[-134.01042175292957,69.54166412353516],[-133.89114379882812,69.48802185058588],[-133.80416870117188,69.56041717529303],[-133.80833435058582,69.46875000000011],[-133.97084045410145,69.37291717529303],[-134.0833282470703,69.30625152587885],[-134.03541564941406,69.25000000000017],[-133.89530944824207,69.32031250000028],[-133.7083282470703,69.33333587646479],[-133.52291870117188,69.39375305175793],[-133.22500610351562,69.36666870117199],[-133.0104217529297,69.40416717529297],[-132.97500610351557,69.56041717529303],[-132.96041870117182,69.6145858764649],[-132.95416259765625,69.625],[-132.6750030517578,69.64791870117188],[-132.4875030517578,69.60832977294933],[-132.33541870117188,69.70625305175781],[-132.20625305175776,69.68333435058588],[-131.96458435058588,69.69374847412115],[-131.97708129882807,69.75208282470709],[-131.83541870117188,69.76457977294933],[-131.65156555175776,69.85990142822294],[-131.4374999999999,69.88749694824241],[-131.4166717529297,69.95833587646496],[-131.09426879882807,69.88176727294922],[-130.95625305175776,70.02916717529297],[-130.93333435058594,70.06041717529291],[-130.74426269531244,70.06093597412138],[-130.56249999999994,70.11458587646479],[-130.4791717529297,70.09999847412115],[-130.347915649414,70.09375000000011],[-130.2624969482422,70.07707977294922],[-130.03334045410156,70.03125000000017],[-129.9375,70.06041717529291],[-129.84375,70.14375305175793],[-129.68540954589832,70.11458587646479],[-129.6453094482422,70.1953125],[-129.50625610351562,70.13333129882812],[-129.56459045410156,70.12708282470709],[-129.41250610351562,70.07917022705078],[-129.52499389648432,70.01667022705084],[-129.53541564941406,69.99583435058616],[-130.22291564941406,69.84374999999994],[-130.4875030517578,69.7562484741211],[-130.625,69.67916870117188],[-130.76458740234364,69.66458129882818],[-130.95625305175776,69.54166412353516],[-131.15415954589838,69.60832977294933],[-131.34165954589832,69.558334350586],[-131.44999694824207,69.57083129882812],[-131.88958740234375,69.51667022705078],[-132.08749389648432,69.47708129882818],[-132.17291259765625,69.3499984741211],[-132.46665954589844,69.28333282470714],[-132.36041259765625,69.1999969482423],[-132.08489990234375,69.20051574707037],[-131.78073120117176,69.31614685058605],[-131.7687530517578,69.37708282470703],[-131.58958435058588,69.4375],[-131.3880157470703,69.41614532470703],[-131.2354125976562,69.52291870117199],[-131.19166564941406,69.59583282470703],[-131.04635620117188,69.49531555175781],[-130.90834045410156,69.34583282470709],[-131.02499389648438,69.2437515258789],[-130.9791717529297,69.11666870117182],[-130.9140625,69.28697967529308],[-130.7312469482422,69.3916702270509],[-130.45989990234375,69.56510162353516],[-130.33541870117182,69.68333435058588],[-130.08125305175776,69.69999694824219],[-129.7041625976562,69.77083587646496],[-129.59374999999994,69.81041717529297],[-129.17916870117182,69.8333358764649],[-129.13749694824213,69.68333435058588],[-128.99166870117188,69.6270828247072],[-128.91458129882812,69.66249847412121],[-128.83958435058588,69.73958587646496],[-128.63281249999994,69.85781097412121],[-128.33958435058582,69.93750000000006],[-128.28958129882807,69.92292022705078],[-128.25416564941406,69.90625000000028],[-128.23124694824207,69.91249847412115],[-128.26042175292963,69.94791412353516],[-128.40156555175776,70.07656097412115],[-128.24999999999994,70.14167022705072],[-128.00209045410156,70.06874847412115],[-127.94166564941406,70.1729202270509],[-127.54582977294916,70.21666717529297],[-127.54322814941406,70.15052032470726],[-127.48124694824213,70.15000152587896],[-127.50833129882807,70.15833282470703],[-127.54374694824207,70.23124694824224],[-127.84374999999994,70.24583435058594],[-128.06823730468744,70.28593444824219],[-128.19375610351557,70.36666870117193],[-128.1536407470703,70.49531555175781],[-128.00209045410156,70.5625],[-127.37916564941406,70.35416412353533],[-127.06041717529291,70.15416717529303],[-126.71250152587885,69.74375152587902],[-126.28489685058582,69.52135467529308],[-125.91041564941406,69.3854141235351],[-125.76249694824219,69.370834350586]]],[[[-109.8405532836914,72.94583129882824],[-109.83836364746094,72.94392395019543],[-109.84735870361322,72.93333435058594],[-109.84101867675781,72.5335464477539],[-110.04166412353516,72.65000152587902],[-110.20207977294922,72.67500305175793],[-110.25416564941406,72.82917022705078],[-110.54582977294916,72.84999847412115],[-110.69583129882807,72.91666412353527],[-110.68333435058588,72.99583435058588],[-110.45573425292969,73.01197814941412],[-110.07291412353504,72.98958587646484],[-109.8405532836914,72.94583129882824]]],[[[-109.8453521728515,72.443588256836],[-109.85298919677729,71.18614196777338],[-109.85302734375,71.1746978759765],[-109.86248016357422,69.92113494873058],[-110.7971420288086,69.92949676513678],[-112.9278945922851,69.92770385742188],[-113.2304458618164,69.923568725586],[-113.19101715087885,69.7408294677735],[-113.4872436523437,69.75106811523438],[-113.53598022460932,69.92378234863287],[-115.12065887451172,69.90512084960949],[-116.2216567993164,69.9089736938476],[-117.32119750976557,69.89804077148443],[-117.36406707763672,70.03489685058594],[-116.96666717529297,70.12500000000006],[-115.95833587646484,70.23124694824224],[-114.87291717529291,70.28749847412115],[-114.51667022705078,70.32291412353516],[-114.10208129882807,70.31458282470709],[-113.86302185058594,70.27552032470714],[-113.23802185058594,70.28073120117205],[-112.9562530517577,70.23332977294928],[-112.79374694824207,70.23750305175787],[-112.52291870117188,70.19791412353527],[-112.1588516235351,70.29114532470709],[-111.87708282470703,70.26457977294945],[-111.70207977294922,70.27708435058605],[-111.62916564941406,70.36666870117193],[-111.95625305175781,70.38333129882807],[-112.08333587646479,70.49375152587902],[-112.32499694824213,70.53125000000006],[-112.61042022705072,70.52083587646496],[-112.64583587646484,70.56458282470703],[-112.86666870117182,70.55000305175793],[-113.16926574707026,70.64323425292974],[-113.43541717529297,70.67292022705078],[-113.55833435058594,70.64583587646484],[-113.8151016235351,70.71406555175776],[-114.00208282470703,70.71250152587902],[-114.13333129882812,70.67500305175781],[-114.41666412353516,70.67916870117182],[-114.48542022705078,70.64375305175781],[-114.96041870117188,70.60416412353527],[-115.36042022705078,70.61042022705084],[-115.8062515258789,70.59583282470703],[-115.8541641235351,70.5479202270509],[-116.02083587646484,70.5374984741211],[-116.25,70.63957977294928],[-116.51457977294916,70.63749694824224],[-116.69791412353516,70.60624694824247],[-117.4828109741211,70.62551879882824],[-117.6812515258789,70.64791870117188],[-117.68698120117188,70.70885467529303],[-118.04792022705067,70.80000305175787],[-118.25364685058594,70.87968444824219],[-118.41197967529297,70.9776000976563],[-118.33541870117182,71.04374694824224],[-117.80833435058588,71.1687469482423],[-117.50468444824213,71.18593597412121],[-117.0770797729491,71.24166870117188],[-116.82707977294922,71.25208282470714],[-116.7750015258789,71.29582977294922],[-116.24375152587885,71.36875152587896],[-115.98332977294922,71.36666870117193],[-116.0416641235351,71.44583129882818],[-115.75,71.5062484741211],[-115.47291564941406,71.48124694824219],[-115.48542022705078,71.5500030517581],[-115.70207977294922,71.5625],[-116.16458129882807,71.50000000000006],[-116.26667022705078,71.50833129882812],[-116.8062515258789,71.43750000000011],[-117.02500152587885,71.44166564941435],[-117.17292022705067,71.40624999999994],[-117.51667022705078,71.38333129882824],[-117.85624694824219,71.4000015258789],[-117.98124694824213,71.37708282470703],[-118.24948120117188,71.39843750000017],[-118.2890625,71.48490142822288],[-118.03333282470703,71.55416870117193],[-117.73958587646479,71.53333282470703],[-117.99791717529291,71.67292022705078],[-118.16301727294916,71.60676574707031],[-118.40156555175781,71.5911483764649],[-118.48750305175781,71.66041564941412],[-118.84791564941406,71.66458129882818],[-118.89375305175781,71.59166717529297],[-119.0729141235351,71.67082977294922],[-119.1125030517577,71.85832977294922],[-118.9598999023437,71.98072814941418],[-118.72551727294922,72.05260467529308],[-118.51249694824219,72.19374847412121],[-118.13124847412104,72.22291564941435],[-118.17708587646484,72.3562469482423],[-118.4625015258789,72.35832977294928],[-118.52864837646479,72.4828109741211],[-118.31822967529297,72.58073425292997],[-117.9749984741211,72.68958282470726],[-117.625,72.77291870117188],[-117.40989685058588,72.89323425292969],[-116.77448272705078,72.99948120117188],[-116.26667022705078,73.10832977294933],[-115.97083282470703,73.13541412353527],[-115.43958282470697,73.22083282470709],[-115.30208587646479,73.26457977294916],[-114.77291870117188,73.33541870117193],[-114.70156097412104,73.37448120117188],[-114.45625305175776,73.37291717529291],[-114.20833587646484,73.32917022705084],[-113.94218444824219,73.16093444824224],[-114.01667022705078,73.01667022705078],[-114.02708435058594,72.80833435058588],[-114.21458435058594,72.80625152587908],[-114.30208587646484,72.683334350586],[-114.55000305175776,72.63124847412115],[-114.34583282470697,72.5562515258789],[-113.98958587646484,72.65833282470709],[-113.81666564941406,72.64167022705078],[-113.39375305175781,72.74583435058594],[-113.44635009765625,72.82759857177729],[-113.34375,72.92916870117193],[-113.07083129882812,73.01249694824241],[-112.45207977294922,72.94791412353527],[-112.18281555175776,72.8900985717774],[-111.91718292236328,72.87239837646496],[-111.70156097412104,72.81301879882818],[-111.53958129882812,72.80625152587908],[-111.18541717529297,72.72499847412126],[-111.23542022705072,72.56458282470697],[-111.36875152587885,72.54166412353527],[-111.43958282470703,72.46041870117199],[-111.71874999999994,72.40208435058611],[-111.70833587646479,72.32707977294933],[-111.36875152587885,72.44374847412115],[-111.27083587646484,72.3687515258789],[-111.0687484741211,72.35208129882824],[-110.94010162353516,72.44947814941412],[-110.80833435058594,72.47916412353516],[-110.6979141235351,72.57707977294928],[-110.38957977294922,72.5208358764649],[-110.32291412353516,72.55833435058594],[-110.02500152587885,72.44374847412115],[-109.8453521728515,72.443588256836]]],[[[-121.52239990234375,74.55677032470714],[-121.09426879882812,74.5182342529298],[-120.94166564941406,74.42916870117199],[-120.40833282470697,74.32291412353527],[-120.11458587646484,74.277084350586],[-119.66458129882807,74.23750305175793],[-119.65208435058588,74.12708282470697],[-119.51615142822266,74.21198272705078],[-119.12708282470697,74.21666717529325],[-118.96041870117188,74.00416564941412],[-118.82291412353516,74.06666564941406],[-118.76249694824213,74.21250152587902],[-118.17708587646484,74.277084350586],[-117.62291717529297,74.25000000000006],[-117.29792022705072,74.20417022705078],[-116.80416870117188,74.04166412353516],[-116.63333129882801,74.00416564941412],[-116.32031249999994,73.8734359741211],[-115.75416564941406,73.67916870117193],[-115.35051727294916,73.5536499023438],[-115.38333129882807,73.46875000000006],[-115.77916717529297,73.34375],[-116.63489532470703,73.22239685058605],[-116.89583587646484,73.14167022705084],[-117.44999694824219,73.05208587646496],[-118.01457977294922,72.88541412353516],[-118.25208282470697,72.85624694824219],[-118.98124694824213,72.67292022705072],[-119.2437515258789,72.65833282470709],[-119.2276000976562,72.50572967529303],[-119.40208435058594,72.3291702270509],[-119.54374694824213,72.31250000000023],[-119.78333282470703,72.22708129882818],[-120.15833282470703,72.23750305175781],[-120.14583587646484,72.09791564941406],[-120.43489837646484,71.95781707763683],[-120.33593749999994,71.83177185058588],[-120.43333435058588,71.60416412353521],[-120.54010009765625,71.519271850586],[-120.6937484741211,71.47291564941412],[-121.32707977294922,71.38124847412121],[-121.71041870117188,71.48750305175776],[-121.88541412353516,71.41874694824224],[-122.035415649414,71.29792022705095],[-122.48958587646484,71.22083282470714],[-122.81458282470703,71.08333587646479],[-123.1312484741211,71.07917022705078],[-123.42448425292969,71.21718597412121],[-123.62551879882812,71.49739837646496],[-123.80156707763672,71.5390625],[-123.97083282470703,71.67082977294922],[-124.21666717529297,71.74375152587896],[-124.60832977294916,71.79166412353544],[-125.09791564941406,71.91041564941406],[-125.17292022705078,71.96666717529297],[-125.3812484741211,71.98332977294928],[-125.74583435058594,71.95625305175787],[-125.67134857177734,72.06301879882835],[-125.74323272705078,72.14739990234386],[-125.46666717529297,72.34375],[-125.31614685058588,72.48072814941429],[-124.95417022705078,72.56041717529297],[-124.95677185058594,72.67968750000006],[-125.0374984741211,72.88957977294933],[-124.93333435058588,72.86875152587902],[-124.47499847412104,72.92500305175787],[-124.64583587646484,73.03333282470709],[-124.81822967529291,73.04426574707043],[-124.71458435058594,73.16458129882824],[-124.5171890258789,73.25051879882812],[-124.47499847412104,73.36666870117188],[-124.27708435058594,73.49375152587896],[-124.0374984741211,73.535415649414],[-124.03489685058594,73.65052032470709],[-123.83125305175776,73.70625305175787],[-123.81510162353516,73.82239532470709],[-124.15781402587885,73.86927032470703],[-124.191665649414,73.95207977294928],[-124.40416717529297,74.0749969482423],[-124.41666412353516,74.19374847412115],[-124.57083129882807,74.28958129882807],[-124.41458129882812,74.37708282470714],[-124.0374984741211,74.40625000000006],[-123.43541717529297,74.42500305175776],[-122.85832977294916,74.46041870117193],[-122.49791717529291,74.46250152587896],[-122.16666412353516,74.48750305175787],[-121.74583435058594,74.55000305175781],[-121.52239990234375,74.55677032470714]]],[[[-117.64739990234375,76.11927032470714],[-117.4937515258789,76.10416412353521],[-117.51301574707031,76.02343750000023],[-117.7291641235351,75.92292022705101],[-117.93333435058594,75.74375152587885],[-118.24323272705067,75.628646850586],[-118.28124999999994,75.58125305175798],[-118.535415649414,75.52916717529291],[-118.72708129882812,75.51875305175804],[-118.90000152587885,75.57499694824219],[-119.2125015258789,75.57707977294922],[-119.15676879882812,75.70051574707031],[-118.68333435058588,75.89583587646507],[-118.36458587646484,75.97291564941412],[-118.1624984741211,75.97291564941412],[-118.09947967529291,76.02864837646513],[-117.83958435058594,76.02500152587896],[-117.79582977294916,75.99166870117199],[-117.64739990234375,76.11927032470714]]],[[[-109.83528900146484,76.48958587646484],[-109.83451080322266,76.24791717529297],[-110.04792022705072,76.24166870117193],[-110.15833282470697,76.29792022705084],[-110.30416870117182,76.30416870117188],[-110.37968444824213,76.42864990234386],[-109.83528900146484,76.48958587646484]]],[[[-109.855728149414,75.53246307373047],[-109.83134460449207,75.53290557861334],[-109.83056640624994,74.87870025634771],[-109.99583435058588,74.84375000000006],[-110.35156249999994,74.847396850586],[-110.58541870117176,74.78958129882818],[-110.58541870117176,74.71666717529297],[-111.21874999999989,74.59999847412115],[-111.6421890258789,74.50260162353527],[-112.31041717529291,74.42916870117199],[-112.9562530517577,74.40416717529308],[-113.50416564941406,74.42916870117199],[-113.80208587646484,74.47083282470703],[-114.21875,74.57499694824241],[-114.2437515258789,74.64375305175793],[-114.17500305175781,74.76667022705078],[-113.72708129882807,74.82917022705072],[-113.48750305175781,74.82707977294916],[-113.23958587646473,74.87916564941406],[-113.1515655517577,74.9286499023438],[-112.84999847412104,74.98124694824219],[-112.54374694824219,75.00000000000006],[-111.88749694824219,75.00416564941412],[-111.70051574707026,74.98384857177746],[-111.55208587646484,75.01249694824219],[-111.00624847412104,75.17292022705078],[-111.00833129882812,75.27708435058594],[-111.23490142822266,75.2682342529298],[-111.29166412353516,75.20417022705095],[-111.46458435058588,75.16666412353521],[-112.16666412353516,75.13333129882818],[-112.32499694824213,75.17292022705078],[-112.4203109741211,75.2557296752932],[-112.52708435058588,75.20833587646496],[-112.64791870117182,75.285415649414],[-112.81041717529291,75.20625305175776],[-112.84583282470703,75.13124847412121],[-113.2874984741211,75.0833358764649],[-113.87499999999994,75.05416870117193],[-113.949478149414,75.09947967529297],[-113.80625152587885,75.32291412353521],[-113.95417022705072,75.4562530517581],[-114.12708282470703,75.24375152587896],[-114.47291564941406,75.058334350586],[-114.73750305175776,75.03125000000006],[-114.82917022705067,74.98958587646479],[-115.04792022705072,74.96458435058605],[-115.17708587646484,74.99583435058605],[-115.22656249999994,75.18385314941412],[-115.62708282470697,74.97708129882818],[-115.89375305175776,74.99791717529325],[-116.03541564941406,75.04374694824213],[-116.22916412353504,75.058334350586],[-116.25416564941406,75.21666717529303],[-116.58333587646479,75.16666412353521],[-116.69583129882812,75.1187515258789],[-116.94999694824219,75.16874694824219],[-117.16458129882812,75.16458129882818],[-117.65833282470697,75.24375152587896],[-117.56198120117188,75.35156250000011],[-117.25624847412104,75.47083282470703],[-117.08333587646479,75.48542022705084],[-116.00208282470697,75.48750305175787],[-115.58958435058594,75.58750152587902],[-115.70417022705067,75.64791870117193],[-116.17708587646479,75.5999984741211],[-116.34999847412098,75.56666564941412],[-117.11666870117188,75.58125305175798],[-117.15000152587885,75.67292022705084],[-116.84999847412104,75.80416870117199],[-116.01457977294916,75.81666564941406],[-115.95833587646484,75.8770828247072],[-116.44166564941406,75.8770828247072],[-116.7291641235351,75.90208435058594],[-116.69114685058594,76.04010009765636],[-116.55364990234375,76.12448120117188],[-116.22916412353504,76.2041702270509],[-115.82917022705072,76.25],[-115.7562484741211,76.37916564941412],[-115.4791641235351,76.41041564941406],[-115.18125152587885,76.47291564941418],[-114.78333282470703,76.48958587646484],[-114.16874694824213,76.47291564941418],[-114.0687484741211,76.42916870117193],[-114.11406707763672,76.30677032470714],[-113.94999694824219,76.1937484741211],[-113.65833282470697,76.19583129882812],[-113.26249694824219,76.2729187011721],[-112.87499999999989,76.25833129882824],[-112.84166717529297,76.21875000000023],[-112.49166870117188,76.17708587646496],[-112.39739990234364,76.04426574707037],[-111.9937515258789,76.0062484741211],[-111.71874999999994,75.90624999999994],[-112.07083129882807,75.8770828247072],[-112.07499694824219,75.81458282470726],[-111.80208587646479,75.83750152587896],[-111.61042022705072,75.82291412353533],[-111.34166717529291,75.73124694824224],[-111.36042022705078,75.6458358764649],[-111.2604141235351,75.52083587646484],[-110.98542022705078,75.52708435058611],[-110.43749999999989,75.57291412353516],[-110.38957977294922,75.54374694824224],[-109.855728149414,75.53246307373047]]],[[[-114.08073425292969,76.8921890258789],[-113.754165649414,76.88957977294928],[-113.4859390258789,76.8307342529298],[-113.50676727294922,76.73384857177729],[-113.98958587646484,76.72083282470714],[-114.67082977294916,76.75208282470709],[-114.67292022705078,76.87083435058594],[-114.55833435058594,76.88957977294928],[-114.08073425292969,76.8921890258789]]],[[[-116.4453125,77.53801727294922],[-116.16874694824219,77.49791717529308],[-116.04792022705078,77.45207977294928],[-115.72916412353516,77.42292022705107],[-115.46250152587885,77.34999847412132],[-115.54166412353504,77.26875305175787],[-116.19583129882812,77.20625305175793],[-116.3187484741211,77.14375305175798],[-116.20417022705072,77.03333282470703],[-115.84374999999994,76.9854202270509],[-115.910415649414,76.90208435058588],[-116.23542022705078,76.94999694824219],[-116.28958129882812,76.88124847412121],[-115.96458435058588,76.8125],[-116.00989532470697,76.68073272705084],[-116.29374694824219,76.58750152587919],[-116.50208282470697,76.57083129882812],[-117.04582977294922,76.56666564941412],[-116.97083282470697,76.34375000000011],[-117.28333282470697,76.26457977294928],[-117.59791564941406,76.28333282470697],[-117.8453140258789,76.33593750000011],[-118.03958129882812,76.41458129882812],[-117.96874999999994,76.51875305175781],[-117.92708587646473,76.68541717529314],[-117.7828140258789,76.72343444824241],[-117.85416412353516,76.8291702270509],[-117.96666717529286,76.76667022705095],[-118.25833129882812,76.78541564941406],[-118.34374999999989,76.65625],[-118.33541870117182,76.55625152587902],[-118.55833435058594,76.50624847412138],[-118.816665649414,76.56458282470709],[-118.79582977294922,76.46041870117193],[-118.58333587646484,76.40833282470703],[-118.6395797729491,76.28958129882824],[-118.8812484741211,76.28125000000017],[-118.96926879882812,76.13176727294922],[-119.12499999999989,76.10624694824224],[-119.29948425292963,76.13593292236328],[-119.47239685058588,76.30156707763678],[-119.64167022705072,76.32083129882818],[-119.63749694824213,75.99791717529303],[-119.7249984741211,75.88541412353527],[-120.05000305175781,75.84791564941406],[-120.19426727294922,75.89948272705084],[-120.29582977294922,75.81250000000006],[-120.472915649414,75.83125305175793],[-120.43541717529291,76.00833129882812],[-120.60624694824207,75.995834350586],[-120.71406555175781,76.0338516235351],[-120.72708129882812,76.17500305175776],[-120.86250305175781,76.20625305175793],[-121.02291870117188,76.15208435058605],[-121.02291870117188,76.05416870117193],[-121.34739685058594,75.92760467529308],[-121.5062484741211,76.01041412353516],[-121.80000305175781,76.02916717529303],[-121.88333129882812,76.07291412353527],[-122.07499694824207,76.0437469482423],[-122.17500305175776,75.98332977294922],[-122.4312515258789,75.92082977294928],[-122.51249694824219,76.0062484741211],[-122.47083282470697,76.12500000000011],[-122.58333587646484,76.17916870117199],[-122.61823272705078,76.34323120117182],[-122.33541870117182,76.402084350586],[-121.91874694824219,76.44374847412104],[-121.74375152587885,76.42082977294933],[-121.50833129882812,76.43958282470703],[-121.39375305175776,76.48124694824224],[-121.17500305175776,76.69583129882818],[-121.00676727294916,76.66093444824247],[-120.82917022705078,76.72499847412115],[-120.51249694824207,76.77083587646496],[-120.45833587646484,76.75416564941412],[-120.29374694824219,76.88957977294928],[-119.60208129882812,77.14375305175798],[-119.35832977294916,77.183334350586],[-119.30052185058594,77.25572967529297],[-119.14167022705072,77.32291412353538],[-118.9437484741211,77.28958129882818],[-118.83541870117188,77.34583282470709],[-118.55208587646484,77.36250305175793],[-118.08958435058588,77.35208129882812],[-117.74583435058594,77.36250305175793],[-117.23958587646473,77.28958129882818],[-117.01457977294916,77.35208129882812],[-116.83541870117176,77.31874847412115],[-116.92082977294916,77.46041870117188],[-116.60208129882812,77.53541564941412],[-116.4453125,77.53801727294922]]],[[[-114.33281707763672,78.07551574707031],[-114.28958129882801,78],[-114.12083435058594,77.99375152587896],[-113.90208435058588,77.90833282470709],[-113.70417022705078,77.89167022705078],[-113.68333435058582,77.7895812988283],[-113.78958129882812,77.74583435058622],[-114.29792022705078,77.71041870117182],[-115.05416870117188,77.92082977294922],[-114.70625305175781,78.0208358764649],[-114.33281707763672,78.07551574707031]]],[[[-109.80781555175781,78.10672760009777],[-109.83113098144526,77.93657684326183],[-110.23750305175776,77.89791870117205],[-110.78541564941406,77.87916564941418],[-110.66458129882812,77.77083587646496],[-110.07291412353504,77.78125000000023],[-110.06926727294916,77.56510162353516],[-110.22083282470703,77.50416564941412],[-110.4437484741211,77.46458435058594],[-110.58125305175781,77.47083282470714],[-110.87708282470703,77.40833282470703],[-111.32291412353516,77.42916870117193],[-111.73542022705072,77.35624694824219],[-112.06666564941395,77.33958435058605],[-112.46250152587885,77.37291717529303],[-112.61250305175781,77.46874999999994],[-112.9166641235351,77.46666717529314],[-112.94843292236317,77.52239990234375],[-113.19791412353504,77.52708435058605],[-113.15416717529297,77.62291717529297],[-113.30000305175781,77.77500152587896],[-113.21250152587879,77.92082977294922],[-112.99999999999994,77.90625000000011],[-112.64167022705078,77.94166564941412],[-112.48750305175776,77.995834350586],[-111.94583129882801,78.01875305175787],[-111.80000305175776,78.05416870117188],[-111.70625305175776,78.02916717529297],[-111.27916717529297,78.09166717529308],[-110.94166564941406,78.07917022705078],[-110.69583129882807,78.10832977294922],[-109.94791412353516,78.11458587646479],[-109.80781555175781,78.10672760009777]]],[[[-109.81652069091797,78.6349792480471],[-109.8312149047851,78.3138046264649],[-109.8312149047851,78.30416870117182],[-110.0104141235351,78.33541870117199],[-110.3687515258789,78.27708435058588],[-110.72499847412104,78.30000305175781],[-111.00833129882812,78.3812484741211],[-111.30208587646479,78.38541412353527],[-111.41874694824219,78.27500152587908],[-111.80364990234375,78.28176879882818],[-111.88749694824219,78.35416412353516],[-112.17292022705078,78.37916564941406],[-112.98958587646484,78.30208587646501],[-113.14791870117182,78.27291870117188],[-113.13749694824219,78.40208435058594],[-112.71666717529291,78.47916412353521],[-112.38124847412104,78.50833129882835],[-112.1875,78.55000305175793],[-111.64791870117188,78.54374694824236],[-111.51667022705072,78.58958435058616],[-111.35208129882812,78.59166717529297],[-111.14375305175781,78.69374847412115],[-110.78749847412098,78.72083282470709],[-110.67500305175781,78.75416564941406],[-110.3854141235351,78.75833129882812],[-109.81652069091797,78.6349792480471]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":6,"NAME_1":"Northwest Territories","TYPE_1":"Territoire","ENGTYPE_1":"Territory","NL_NAME_1":"","VARNAME_1":"Territoires du Nord-Ouest"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-64.27828216552734,45.83412170410162],[-64.1496353149414,45.979915618896484],[-64.04694366455072,45.981712341308594],[-63.90439987182606,45.98113250732422],[-63.81012725830078,45.892406463623104],[-63.6678352355957,45.8498153686524],[-63.431667327880746,45.868888854980526],[-63.295902252197266,45.72666931152338],[-62.99333190917963,45.79388809204113],[-62.71722412109375,45.761390686035156],[-62.48611068725586,45.61861038208002],[-62.08583450317377,45.78749847412121],[-61.935001373291016,45.88750076293957],[-61.91355514526367,45.68720245361328],[-61.642887115478516,45.631668090820426],[-61.48686218261719,45.69255828857422],[-61.26305389404297,45.45416641235363],[-61.43444442749018,45.34777832031256],[-60.99611282348633,45.33944320678711],[-61.05194473266596,45.235832214355526],[-61.32864761352539,45.2527694702149],[-61.407775878906136,45.1616668701173],[-61.5433349609375,45.162498474121094],[-61.85444259643549,45.03610992431646],[-62.20222091674805,44.95000076293951],[-62.99956130981445,44.72631454467785],[-63.04882431030268,44.6729087829591],[-63.2591667175293,44.7238883972168],[-63.404518127441406,44.67954635620123],[-63.518104553222656,44.50239562988281],[-63.619915008544865,44.4485321044923],[-63.91635513305664,44.48997879028332],[-63.92723083496094,44.652423858642635],[-64.15499877929682,44.573612213134766],[-64.29479980468744,44.55873870849621],[-64.3316650390625,44.36277770996094],[-64.28168487548828,44.25966262817383],[-64.4349975585937,44.22756958007818],[-64.47888946533197,44.15139007568354],[-64.6547241210937,44.04000091552729],[-64.83416748046875,43.8363876342774],[-65.03195190429688,43.694149017333984],[-65.21448516845703,43.75308609008789],[-65.32444763183594,43.69638824462896],[-65.3890533447265,43.546142578125114],[-65.49500274658197,43.491111755371094],[-65.73067474365229,43.492389678955135],[-65.7643051147461,43.67036437988281],[-65.84709167480469,43.774696350097656],[-66.11972045898438,43.73361206054693],[-66.20510864257807,44.11725234985357],[-66.1275024414062,44.332778930664006],[-65.8486099243164,44.56333160400402],[-65.91388702392567,44.61639022827154],[-65.30085754394526,44.934955596923885],[-64.8661117553711,45.136112213134766],[-64.41222381591791,45.26944351196289],[-64.35138702392567,45.16638946533209],[-64.21944427490234,45.10666656494146],[-64.1729965209961,45.18622970581055],[-63.80638885498047,45.31305694580084],[-63.56890869140625,45.314029693603516],[-63.60527801513672,45.39250183105463],[-63.78083419799805,45.400554656982536],[-63.91557693481445,45.35507965087902],[-64.09694671630848,45.40805435180664],[-64.38471984863281,45.37472152709961],[-64.56658935546875,45.40626525878906],[-64.8499984741211,45.35444259643549],[-64.91305541992188,45.43055725097662],[-64.68555450439442,45.53722381591808],[-64.27828216552734,45.83412170410162]]],[[[-60.593170166015625,47.041957855224666],[-60.453548431396484,46.95877456665039],[-60.42632293701166,46.877777099609375],[-60.30293655395502,46.84620666503912],[-60.35142135620117,46.61555480957031],[-60.45771408081049,46.43111038208019],[-60.437992095947266,46.290832519531364],[-60.649723052978516,46.11583328247082],[-60.84000015258789,46.07067871093756],[-60.81918716430664,45.94405746459961],[-60.98451614379877,45.927955627441406],[-60.97119140625,45.84239959716808],[-61.103572845458984,45.79131317138683],[-60.74277877807606,45.72027587890631],[-60.71900558471674,45.89900207519537],[-60.77027893066406,45.96154403686535],[-60.54666519165039,46.076946258544865],[-60.38805389404297,46.203056335449276],[-60.12922286987305,46.266532897949276],[-59.95333480834961,46.21611022949219],[-59.89500045776367,46.09527587890631],[-59.90552139282221,45.93592834472656],[-59.98107528686518,45.88439559936529],[-60.11944580078119,45.88499832153326],[-60.11611175537104,45.78305435180664],[-60.22249984741211,45.76416778564459],[-60.38222122192383,45.65999984741205],[-60.72750091552729,45.57500076293945],[-60.92222213745117,45.6216659545899],[-61.16277694702137,45.5649986267091],[-61.331111907958984,45.564723968505916],[-61.46611022949213,45.716945648193416],[-61.55166625976557,46.04138946533203],[-61.414802551269474,46.19294738769537],[-61.31055450439453,46.23638916015631],[-61.083065032958984,46.48088455200207],[-60.89472198486328,46.78499984741211],[-60.691864013671875,46.913658142089844],[-60.593170166015625,47.041957855224666]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":"Acadia|Nouvelle-Écosse"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.1197280883789,56.483085632324276],[-79.2974853515625,56.49723434448242],[-79.23413085937494,56.547355651855526],[-79.1197280883789,56.483085632324276]]],[[[-65.00289154052734,61.687770843505916],[-64.7328109741211,61.63906478881836],[-64.66510009765625,61.47760391235363],[-64.76457977294916,61.31666564941412],[-64.87083435058588,61.31041717529308],[-64.92500305175776,61.40208435058594],[-65.02083587646479,61.40000152587896],[-65.17708587646484,61.500000000000114],[-65.33958435058582,61.529167175293026],[-65.3937530517577,61.658332824707145],[-65.00289154052734,61.687770843505916]]],[[[-65.14531707763666,61.93593978881847],[-64.8421859741211,61.81198120117193],[-64.92708587646479,61.71458435058605],[-65.12916564941406,61.77916717529297],[-65.23542022705072,61.86875152587885],[-65.14531707763666,61.93593978881847]]],[[[-71.12864685058588,62.89010620117199],[-70.76249694824219,62.837501525878906],[-70.39583587646479,62.74166488647461],[-70.16718292236317,62.57551956176752],[-70.35832977294922,62.52500152587896],[-70.67760467529297,62.548435211181584],[-70.78593444824219,62.64114379882818],[-70.84375,62.75416564941406],[-71.12864685058588,62.89010620117199]]],[[[-82.24323272705072,62.98802185058594],[-81.902603149414,62.941143035888615],[-81.96666717529291,62.70000076293951],[-82.14167022705072,62.60416793823242],[-82.29166412353516,62.58541488647472],[-82.45207977294922,62.460414886474666],[-82.63749694824213,62.39374923706049],[-82.81458282470697,62.27500152587885],[-83.11666870117188,62.18541717529297],[-83.30416870117188,62.25833511352539],[-83.4166641235351,62.252082824707145],[-83.72239685058588,62.14218521118164],[-83.72760009765625,62.265106201171875],[-83.93385314941406,62.41406249999994],[-83.92864990234375,62.48905944824219],[-83.6484375,62.579685211181754],[-83.52864837646484,62.83697891235363],[-83.285415649414,62.93125152587896],[-83.21874999999994,62.85625076293957],[-83.0062484741211,62.843750000000114],[-82.7020797729491,62.94166564941406],[-82.39583587646479,62.935417175293026],[-82.24323272705072,62.98802185058594]]],[[[-64.37656402587879,63.86302185058605],[-64.15624999999994,63.8270835876466],[-64.24791717529286,63.70208358764654],[-64.35364532470697,63.748439788818416],[-64.37656402587879,63.86302185058605]]],[[[-77.62448120117188,64.03801727294922],[-77.68333435058594,63.922916412353516],[-77.79374694824219,63.92499923706055],[-77.9312515258789,64.02083587646484],[-77.62448120117188,64.03801727294922]]],[[[-80.90781402587885,64.11510467529303],[-80.67916870117188,64.00833129882818],[-80.54792022705067,63.98541641235346],[-80.58333587646484,63.872917175293026],[-80.20833587646484,63.80208206176769],[-80.20625305175781,63.73958206176758],[-80.49531555175781,63.71614837646496],[-80.57083129882812,63.635417938232365],[-80.90364837646484,63.534893035888786],[-81.01093292236317,63.4442710876466],[-81.61042022705078,63.55833435058594],[-81.80833435058594,63.62291717529308],[-82.14167022705072,63.695835113525504],[-82.40833282470697,63.67291641235357],[-82.42708587646484,63.81041717529291],[-82.13957977294916,63.852085113525504],[-82.09583282470692,63.92499923706055],[-81.98332977294922,63.91041564941406],[-81.62083435058594,64.02083587646484],[-81.26301574707031,64.06614685058605],[-80.9437484741211,63.97916793823242],[-80.90781402587885,64.11510467529303]]],[[[-65.00364685058594,64.3484344482423],[-64.90208435058594,64.25624847412115],[-64.9791641235351,64.18958282470714],[-65.0755157470702,64.24218750000006],[-65.00364685058594,64.3484344482423]]],[[[-85.49323272705078,65.9234390258789],[-85.38333129882807,65.82499694824219],[-85.18177032470703,65.80573272705078],[-85.05260467529286,65.57343292236328],[-85.18541717529291,65.54374694824224],[-84.97760009765625,65.40156555175781],[-84.98698425292963,65.3359375],[-84.86250305175776,65.20417022705078],[-84.77708435058582,65.21041870117182],[-84.71406555175781,65.34947967529297],[-84.51875305175781,65.4812469482423],[-84.31666564941406,65.37916564941418],[-84.19010162353504,65.35572814941418],[-84.13749694824219,65.21666717529308],[-83.80000305175781,65.15624999999994],[-83.49635314941406,65.1578140258789],[-83.31041717529291,65.0687484741211],[-83.29374694824219,65.00000000000011],[-83.15416717529297,64.9375],[-82.82343292236328,64.84947967529303],[-82.55416870117176,64.73750305175787],[-82.37239837646473,64.73490142822277],[-82.097915649414,64.68541717529303],[-81.7437515258789,64.48332977294916],[-81.76249694824213,64.33541870117193],[-81.58333587646484,64.17916870117188],[-81.59791564941395,64.11666870117193],[-81.83541870117188,64.08541870117199],[-81.94999694824213,64.10832977294933],[-82.18125152587885,64.01041412353521],[-82.27708435058594,63.883335113525504],[-82.53124999999994,63.952083587646484],[-82.88957977294922,63.98333358764643],[-83.01667022705072,63.952083587646484],[-83.08073425292969,64.03697967529308],[-83.00208282470697,64.17500305175787],[-83.53697967529297,64.097396850586],[-83.5796890258789,64.03489685058605],[-83.62916564941406,63.75208282470703],[-83.75624847412104,63.77291488647472],[-83.82759857177729,63.69531250000006],[-84.00572967529291,63.64947891235357],[-84.08333587646484,63.58958435058594],[-84.25833129882812,63.616664886474666],[-84.36250305175776,63.5625],[-84.46093749999994,63.37448120117193],[-84.58125305175781,63.291667938232536],[-85.19583129882807,63.11041641235357],[-85.46874999999994,63.10625076293951],[-85.60884857177729,63.17448043823242],[-85.65989685058588,63.41302108764643],[-85.58802032470703,63.62968826293957],[-85.65833282470703,63.73125076293951],[-85.51041412353516,63.90000152587896],[-85.57447814941406,63.98906326293945],[-85.6953125,63.91197586059582],[-85.89583587646479,63.93541717529297],[-86.01041412353516,63.87083435058605],[-86.01875305175776,63.683334350585994],[-86.27500152587885,63.62916564941412],[-86.39791870117182,63.65625000000006],[-86.63749694824213,63.65000152587902],[-86.76457977294922,63.57500076293945],[-86.9375,63.54375076293945],[-87.14791870117176,63.56041717529297],[-87.20259857177734,63.717189788818416],[-86.90364837646479,63.91197586059582],[-86.21458435058594,64.089584350586],[-86.19843292236322,64.16614532470697],[-86.30573272705067,64.22760009765625],[-86.37708282470703,64.35208129882824],[-86.39739990234375,64.5598983764649],[-86.19010162353516,64.87135314941406],[-86.20677185058594,64.99843597412115],[-86.12968444824207,65.11093902587896],[-86.15156555175781,65.3098983764649],[-86.08073425292963,65.5401000976563],[-85.97291564941406,65.73332977294928],[-85.60208129882807,65.90625],[-85.49323272705078,65.9234390258789]]],[[[-85.05573272705072,66.0296859741211],[-84.85208129882812,65.97291564941435],[-84.70207977294922,65.78749847412115],[-84.56041717529297,65.683334350586],[-84.56458282470697,65.61458587646479],[-84.72499847412104,65.53958129882824],[-84.87968444824213,65.67240142822266],[-85.11406707763672,65.75676727294928],[-85.15416717529286,65.93958282470714],[-85.05573272705072,66.0296859741211]]],[[[-84.3973999023437,66.1421890258789],[-84.03125,66.05208587646496],[-83.67968749999994,65.93489837646507],[-83.69947814941406,65.78385162353521],[-83.48124694824219,65.72916412353527],[-83.25624847412104,65.722915649414],[-83.26667022705078,65.62500000000006],[-83.67916870117188,65.64167022705072],[-83.80208587646484,65.74999999999994],[-84.07707977294916,65.7437515258789],[-84.15468597412104,65.97031402587908],[-84.35416412353516,65.97916412353521],[-84.44635009765614,66.07343292236357],[-84.3973999023437,66.1421890258789]]],[[[-62.39739608764643,67.17968750000006],[-62.599475860595646,67.0911483764649],[-62.60156249999994,67.17448425292991],[-62.39739608764643,67.17968750000006]]],[[[-107.5953140258789,67.21926879882812],[-107.42708587646484,67.13333129882818],[-107.47083282470703,67.0770797729495],[-107.5953140258789,67.21926879882812]]],[[[-63.50416564941406,67.35624694824219],[-63.66875076293934,67.27708435058594],[-63.69583511352528,67.35208129882818],[-63.50416564941406,67.35624694824219]]],[[[-63.95989608764643,67.6400985717774],[-63.80052185058588,67.56406402587902],[-63.98333358764643,67.48750305175787],[-63.95989608764643,67.6400985717774]]],[[[-108.06198120117182,67.67134857177757],[-107.94583129882807,67.6374969482423],[-108.04426574707031,67.46302032470703],[-108.09583282470697,67.56458282470709],[-108.06198120117182,67.67134857177757]]],[[[-109.21198272705078,68.00260162353516],[-109.0687484741211,67.95417022705078],[-108.92500305175781,67.97916412353516],[-108.9166641235351,67.84166717529297],[-109.21198272705078,68.00260162353516]]],[[[-74.32239532470703,68.17968750000006],[-74.11042022705072,68.07291412353527],[-73.78176879882807,67.99218750000006],[-73.55625152587879,68.04582977294933],[-73.38489532470703,67.88801574707031],[-73.40416717529297,67.77708435058605],[-73.70833587646479,67.77708435058605],[-73.8541641235351,67.80416870117199],[-74.32499694824213,67.76457977294922],[-74.48750305175776,67.78958129882812],[-74.66041564941395,67.88541412353544],[-74.77291870117182,67.98750305175793],[-74.73332977294922,68.0875015258789],[-74.49166870117188,68.0645828247072],[-74.32239532470703,68.17968750000006]]],[[[-86.64115142822266,68.30260467529291],[-86.41458129882812,68.214584350586],[-86.40156555175776,68.00781250000006],[-86.36042022705078,67.89791870117188],[-86.44843292236328,67.77760314941412],[-86.54792022705078,67.72916412353521],[-86.80208587646479,67.76667022705078],[-86.95677185058588,67.92968750000011],[-86.95051574707031,68.0463485717774],[-86.88489532470692,68.18281555175793],[-86.64115142822266,68.30260467529291]]],[[[-75.92864990234375,68.34635162353516],[-75.64375305175781,68.32291412353521],[-75.46874999999989,68.2708358764649],[-75.11875152587879,68.2354202270509],[-74.9984359741211,68.16510009765642],[-75.14531707763672,67.94635009765625],[-75.01093292236328,67.89531707763678],[-75.05677032470703,67.78801727294939],[-75.0416641235351,67.60624694824236],[-75.183853149414,67.4380187988283],[-75.35208129882807,67.37708282470709],[-75.78541564941406,67.2624969482423],[-76.24166870117182,67.25208282470703],[-76.45051574707031,67.33385467529308],[-76.61875152587885,67.32291412353521],[-76.66041564941406,67.26457977294933],[-77.07499694824213,67.3062515258789],[-77.21823120117182,67.46302032470703],[-77.19791412353516,67.53541564941435],[-77.29531097412104,67.7098999023438],[-77.13749694824219,67.92292022705078],[-76.97447967529291,68.07239532470697],[-76.66614532470703,68.2598953247072],[-76.32083129882807,68.31874847412115],[-76.04792022705078,68.29792022705084],[-75.92864990234375,68.34635162353516]]],[[[-79.1328125,68.36510467529303],[-78.93333435058588,68.35832977294922],[-78.80677032470697,68.27864837646507],[-79.00416564941406,68.18541717529303],[-79.18698120117188,68.24427032470703],[-79.1328125,68.36510467529303]]],[[[-74.30781555175776,68.46926879882824],[-74.07291412353516,68.33750152587902],[-74.22708129882812,68.254165649414],[-74.3765640258789,68.38801574707043],[-74.30781555175776,68.46926879882824]]],[[[-74.58281707763672,68.48176574707031],[-74.46041870117182,68.29166412353521],[-74.66041564941395,68.35208129882835],[-74.58281707763672,68.48176574707031]]],[[[-78.7015609741211,68.56510162353516],[-78.64583587646484,68.48750305175804],[-78.83333587646484,68.43333435058616],[-78.81666564941406,68.56250000000006],[-78.7015609741211,68.56510162353516]]],[[[-104.92448425292963,68.59426879882812],[-104.60208129882812,68.5687484741211],[-104.40260314941406,68.4911499023438],[-104.44635009765625,68.41510009765636],[-104.75208282470703,68.4187469482423],[-104.98542022705072,68.49583435058611],[-104.92448425292963,68.59426879882812]]],[[[-75.24323272705078,68.72760009765625],[-74.9859390258789,68.67240142822277],[-74.94114685058588,68.57968902587919],[-74.77291870117182,68.4583358764649],[-74.98750305175776,68.4583358764649],[-75.07917022705072,68.4145812988283],[-75.2291641235351,68.43541717529297],[-75.3973999023437,68.51301574707031],[-75.39115142822266,68.62656402587896],[-75.24323272705078,68.72760009765625]]],[[[-101.88072967529291,68.82135009765653],[-101.67134857177734,68.74427032470709],[-101.78125,68.66249847412121],[-101.81041717529297,68.57499694824219],[-101.941665649414,68.620834350586],[-102.22083282470697,68.6458358764649],[-102.20625305175781,68.72083282470732],[-101.99948120117182,68.82447814941406],[-101.88072967529291,68.82135009765653]]],[[[-89.91458129882812,68.83541870117193],[-89.79374694824219,68.777084350586],[-89.94010162353516,68.66093444824224],[-90.02864837646479,68.76823425292969],[-89.91458129882812,68.83541870117193]]],[[[-100.4703140258789,69.0484390258789],[-100.31666564941406,69.03125],[-100.28958129882812,68.96875000000006],[-100.1276016235351,68.91822814941412],[-100.15833282470703,68.80625152587896],[-100.39115142822266,68.71510314941412],[-100.49166870117188,68.80208587646513],[-100.60572814941406,68.77552032470709],[-100.59323120117188,69.00156402587896],[-100.4703140258789,69.0484390258789]]],[[[-90.64115142822266,69.37968444824213],[-90.43801879882812,69.27864837646484],[-90.57917022705078,69.1958312988283],[-90.64009857177734,69.24843597412121],[-90.78749847412104,69.33333587646479],[-90.73542022705072,69.36458587646496],[-90.64115142822266,69.37968444824213]]],[[[-78.47864532470703,69.394271850586],[-78.31249999999994,69.3854141235351],[-78.20677185058594,69.29740142822271],[-78.35832977294922,69.20207977294933],[-78.44166564941406,69.23332977294928],[-78.54010009765625,69.09426879882818],[-78.71406555175781,69.01093292236334],[-78.8109359741211,68.91926574707048],[-79.26249694824219,68.83750152587913],[-79.3812484741211,68.92916870117182],[-79.17500305175776,69.09791564941435],[-78.9296875,69.11302185058605],[-78.71406555175781,69.34323120117199],[-78.47864532470703,69.394271850586]]],[[[-90.19322967529297,69.43801879882824],[-90.13749694824207,69.38333129882812],[-90.24635314941406,69.26509857177734],[-90.3937530517577,69.30625152587885],[-90.40625,69.3916702270509],[-90.19322967529297,69.43801879882824]]],[[[-77.1099014282226,69.45051574707031],[-76.90625,69.37708282470703],[-76.67916870117188,69.4187469482423],[-76.65989685058594,69.31093597412115],[-76.82865142822266,69.25989532470714],[-77.09375,69.12500000000028],[-77.25781249999994,69.14635467529303],[-77.34010314941406,69.31301879882818],[-77.31874847412104,69.4312515258789],[-77.1099014282226,69.45051574707031]]],[[[-96.14009857177729,69.5775985717774],[-96.06093597412104,69.45677185058594],[-96.11250305175781,69.35208129882812],[-96.31822967529291,69.4109344482423],[-96.37499999999994,69.46041870117188],[-96.5765609741211,69.50676727294922],[-96.543228149414,69.57031250000006],[-96.38333129882812,69.58125305175793],[-96.29166412353516,69.52916717529325],[-96.14009857177729,69.5775985717774]]],[[[-101.25781249999994,69.58802032470703],[-101.04582977294922,69.54582977294939],[-101.09166717529291,69.40833282470703],[-101.22551727294922,69.41614532470703],[-101.25781249999994,69.58802032470703]]],[[[-95.75676727294922,69.63176727294928],[-95.57083129882807,69.61042022705107],[-95.33125305175781,69.52083587646479],[-95.36666870117182,69.41041564941406],[-95.48958587646479,69.33333587646479],[-95.66041564941395,69.34791564941412],[-95.63957977294922,69.54582977294939],[-95.89167022705072,69.36042022705072],[-95.9479141235351,69.51457977294922],[-95.85832977294922,69.6145858764649],[-95.75676727294922,69.63176727294928]]],[[[-67.9224014282226,69.71093750000028],[-67.78124999999994,69.66666412353521],[-67.96041870117188,69.52500152587902],[-68.17292022705072,69.57499694824213],[-68.07083129882812,69.67292022705101],[-67.9224014282226,69.71093750000028]]],[[[-78.14323425292957,69.75676727294916],[-77.98072814941395,69.70468902587902],[-78.07499694824219,69.58541870117193],[-78.44166564941406,69.52291870117199],[-78.6312484741211,69.52083587646479],[-78.80416870117188,69.4625015258789],[-78.85364532470703,69.50781250000011],[-78.56041717529297,69.63749694824224],[-78.20885467529297,69.68281555175781],[-78.14323425292957,69.75676727294916]]],[[[-82.78073120117182,69.81093597412104],[-82.48332977294922,69.777084350586],[-82.49791717529297,69.71250152587902],[-82.70625305175776,69.73958587646496],[-82.78073120117182,69.81093597412104]]],[[[-79.62239837646484,69.81510162353527],[-79.43593597412104,69.80364990234386],[-79.40208435058582,69.67708587646484],[-79.660415649414,69.61875152587913],[-79.78333282470697,69.68125152587908],[-79.87083435058594,69.65208435058594],[-79.97708129882812,69.71250152587902],[-80.21302032470703,69.53489685058605],[-80.47343444824213,69.67240142822271],[-80.75364685058594,69.66926574707031],[-80.69999694824213,69.75208282470709],[-80.52500152587885,69.72499847412115],[-80.47916412353504,69.7937469482423],[-80.33125305175781,69.77500152587896],[-80.18541717529291,69.80416870117193],[-79.96041870117188,69.72499847412115],[-79.62239837646484,69.81510162353527]]],[[[-98.011978149414,69.87968444824224],[-97.80208587646484,69.88124847412115],[-97.67708587646484,69.80625152587896],[-97.46458435058594,69.78125],[-97.36458587646484,69.67916870117188],[-97.21666717529297,69.66458129882818],[-96.87708282470697,69.50208282470732],[-96.75,69.50000000000011],[-96.28541564941406,69.35832977294916],[-96.10832977294916,69.18750000000023],[-95.92760467529291,69.16822814941406],[-95.92552185058588,69.0494842529298],[-95.81718444824213,68.89427185058588],[-95.64791870117182,68.83750152587913],[-95.25,68.90208435058588],[-95.2328109741211,68.8109359741211],[-95.47239685058594,68.71198272705078],[-95.53333282470703,68.78958129882812],[-95.75156402587885,68.77864837646496],[-95.84999847412104,68.64167022705084],[-96.05000305175781,68.6374969482423],[-96.14635467529297,68.53801727294922],[-96.2828140258789,68.53281402587902],[-96.38957977294916,68.4583358764649],[-96.54582977294922,68.45207977294928],[-96.9625015258789,68.53749847412115],[-97.0848999023437,68.597396850586],[-97.11666870117182,68.51249694824224],[-97.61666870117182,68.59791564941406],[-97.71666717529297,68.66249847412121],[-97.98958587646484,68.69583129882818],[-98.08958435058588,68.6812515258789],[-98.26457977294916,68.76249694824219],[-98.32343292236322,68.85781097412121],[-98.4151000976562,68.74843597412115],[-98.56614685058588,68.79948425292986],[-98.66874694824213,68.7874984741211],[-98.83906555175781,68.85051727294928],[-98.89635467529297,68.95365142822266],[-99.06041717529297,68.90625000000011],[-99.17916870117182,68.83125305175787],[-99.41614532470697,68.90573120117188],[-99.50364685058594,69.08698272705101],[-99.38333129882812,69.14375305175776],[-99.04792022705078,69.14167022705078],[-98.92448425292969,69.1901016235351],[-98.7171859741211,69.18177032470703],[-98.6187515258789,69.30625152587885],[-98.51249694824219,69.27916717529291],[-98.43749999999994,69.38957977294933],[-98.58750152587885,69.44583129882824],[-98.45207977294916,69.54166412353516],[-98.28541564941406,69.5916671752932],[-98.21875,69.79166412353527],[-98.06666564941406,69.8125],[-98.011978149414,69.87968444824224]]],[[[-87.08906555175776,70.1546859741211],[-86.77083587646473,70.08958435058605],[-86.63333129882812,70.11875152587902],[-86.44583129882812,70.00208282470703],[-86.62708282470697,69.96666717529303],[-87.1312484741211,70],[-87.27291870117182,70.03541564941418],[-87.08906555175776,70.1546859741211]]],[[[-102.09739685058588,70.331771850586],[-101.90833282470703,70.2437515258789],[-101.64531707763672,70.30781555175798],[-101.63906097412104,70.24427032470714],[-101.82707977294922,70.19374847412104],[-102.09739685058588,70.331771850586]]],[[[-100.45833587646479,70.67292022705078],[-100.26041412353516,70.60208129882824],[-100.30052185058594,70.50156402587902],[-100.45207977294922,70.50833129882812],[-100.63697814941406,70.56198120117193],[-100.62239837646484,70.63072967529314],[-100.45833587646479,70.67292022705078]]],[[[-103.07239532470703,70.68385314941412],[-102.9000015258789,70.62291717529297],[-102.9937515258789,70.54166412353516],[-103.07239532470703,70.68385314941412]]],[[[-71.86198425292969,71.06301879882818],[-71.6624984741211,71.01875305175787],[-71.36927032470697,71.00572967529297],[-71.41093444824213,70.92968750000006],[-71.58125305175776,70.9124984741211],[-72.03333282470692,70.81666564941418],[-72.10624694824219,70.91666412353516],[-72.01667022705078,71.04582977294945],[-71.86198425292969,71.06301879882818]]],[[[-73.15573120117188,71.55677032470703],[-73.12708282470697,71.45625305175781],[-72.99323272705078,71.51823425292969],[-72.92292022705067,71.43333435058588],[-73.10416412353516,71.33541870117193],[-73.37551879882807,71.51823425292969],[-73.15573120117188,71.55677032470703]]],[[[-72.74228668212885,71.66062164306646],[-72.75416564941406,71.53125000000023],[-73.02291870117188,71.57083129882824],[-72.99114990234375,71.64531707763678],[-72.74228668212885,71.66062164306646]]],[[[-81.8187484741211,68.89791870117188],[-82.19010162353516,68.75156402587902],[-82.55625152587885,68.68958282470714],[-82.45417022705078,68.6145858764649],[-82.20417022705067,68.56250000000006],[-82.18541717529297,68.63333129882824],[-81.97291564941406,68.6374969482423],[-82.03333282470697,68.79374694824213],[-81.91926574707031,68.84323120117193],[-81.77708435058588,68.82707977294933],[-81.70833587646479,68.88124847412121],[-81.43801879882812,68.75156402587902],[-81.29792022705078,68.72708129882818],[-81.2359390258789,68.6400985717774],[-81.49791717529297,68.57499694824219],[-81.57499694824213,68.51667022705078],[-81.73542022705072,68.53125000000011],[-81.77968597412098,68.46406555175787],[-81.95573425292957,68.425521850586],[-82.0651016235351,68.50885009765625],[-82.18958282470703,68.45625305175787],[-82.47916412353516,68.48542022705084],[-82.51249694824219,68.43958282470703],[-82.34166717529291,68.35832977294922],[-82.35624694824213,68.25833129882824],[-82.16458129882807,68.11666870117188],[-82.14375305175781,68.00833129882812],[-82.02239990234364,67.87343597412121],[-81.81301879882812,67.80156707763672],[-81.59739685058594,67.6651000976563],[-81.36718749999994,67.59114837646496],[-81.19635009765625,67.44635009765636],[-81.32865142822266,67.3036499023438],[-81.3880157470702,67.06510162353527],[-81.45677185058582,66.99843597412132],[-81.57551574707031,67.0140609741211],[-81.70417022705078,66.96458435058605],[-81.80833435058594,66.99583435058605],[-81.98332977294922,66.94791412353521],[-82.15208435058588,66.77291870117182],[-82.36042022705078,66.71041870117188],[-82.57135009765625,66.56718444824241],[-82.972915649414,66.55208587646484],[-82.98802185058594,66.48176574707037],[-83.39167022705072,66.34375000000011],[-83.51615142822266,66.35468292236328],[-83.5338516235351,66.43698120117199],[-83.65000152587885,66.52083587646507],[-83.94322967529297,66.57968902587902],[-84.00833129882801,66.70625305175787],[-84.27864837646484,66.71718597412121],[-84.39375305175781,66.80000305175776],[-84.42500305175781,66.9312515258789],[-84.53125,66.96666717529308],[-85.02708435058594,66.96041870117205],[-85.05208587646484,66.83750152587896],[-84.89948272705078,66.87551879882824],[-84.86250305175776,66.94374847412115],[-84.66458129882812,66.95417022705078],[-84.3687515258789,66.70625305175787],[-84.160415649414,66.69374847412121],[-84.12083435058588,66.56041717529308],[-83.88749694824207,66.4541702270509],[-83.82707977294922,66.30833435058594],[-83.66874694824219,66.18125152587885],[-83.9375,66.19166564941412],[-84.25208282470697,66.31666564941418],[-84.42082977294922,66.15208435058611],[-84.65208435058594,66.2249984741211],[-84.67708587646484,66.19166564941412],[-84.7953109741211,66.19218444824219],[-85.08281707763666,66.28801727294933],[-85.24583435058594,66.27500152587896],[-85.30625152587885,66.43125152587919],[-85.4234390258789,66.59323120117199],[-85.74791717529291,66.51457977294928],[-86.02916717529286,66.49375152587913],[-86.31041717529297,66.53749847412121],[-86.5223999023437,66.54322814941418],[-86.7411499023437,66.51509857177734],[-86.71302032470697,66.39948272705078],[-86.6083297729491,66.3125],[-86.316665649414,66.28749847412104],[-85.87968444824219,66.18698120117182],[-85.97291564941406,66.03125000000006],[-86.33177185058594,65.89635467529297],[-86.47708129882807,65.80000305175781],[-86.5250015258789,65.7083358764649],[-86.62499999999994,65.70417022705107],[-86.69791412353516,65.60208129882818],[-87.06041717529297,65.48750305175793],[-87.16093444824219,65.36302185058594],[-87.45625305175781,65.31874847412104],[-87.88749694824207,65.3249969482423],[-88.23124694824219,65.42292022705078],[-88.66614532470697,65.66093444824213],[-88.82135009765625,65.70156097412104],[-88.98958587646484,65.69166564941406],[-89.13176727294922,65.76615142822271],[-89.67343902587879,65.94531249999994],[-89.72916412353516,65.82499694824219],[-89.68958282470703,65.71666717529297],[-89.43541717529297,65.59999847412115],[-89.33906555175776,65.488021850586],[-89.16301727294916,65.43906402587902],[-89.03333282470692,65.32291412353527],[-88.59791564941406,65.31458282470703],[-88.5687484741211,65.2979202270509],[-88.06510162353516,65.2744827270509],[-87.55416870117182,65.2916641235351],[-87.05208587646484,65.23958587646496],[-86.96718597412104,65.04634857177746],[-87.13489532470703,64.99010467529308],[-87.18749999999989,64.91249847412104],[-87.56718444824219,64.55885314941418],[-87.80000305175781,64.50833129882807],[-87.84218597412104,64.38489532470714],[-88.00208282470703,64.29582977294933],[-88.02552032470703,64.19531250000011],[-88.19166564941406,64.16874694824224],[-88.3125,64.0999984741211],[-88.5562515258789,64.05000305175781],[-88.754165649414,63.98333358764643],[-88.90833282470703,64.00208282470714],[-89.1859359741211,63.9609375],[-89.49583435058588,64.03125000000011],[-89.80625152587885,64.05416870117199],[-89.816665649414,63.94166564941406],[-90.004165649414,63.84583282470709],[-90.08906555175781,63.690101623535156],[-90.37291717529297,63.60833358764643],[-90.63957977294916,63.58958435058594],[-90.62916564941406,63.44374847412115],[-90.91614532470697,63.538021087646484],[-91.05208587646484,63.61041641235363],[-91.32917022705078,63.633335113525334],[-91.5416641235351,63.72291564941406],[-92.11042022705078,63.72916793823248],[-92.38541412353516,63.76874923706049],[-92.47551727294916,63.82447814941412],[-92.63749694824219,63.822917938232365],[-92.83125305175781,63.89374923706055],[-93.324478149414,63.97135162353527],[-93.47708129882812,64.02916717529308],[-93.59166717529297,63.86875152587902],[-93.48542022705078,63.83750152587885],[-93.3526000976562,63.961978912353516],[-93.21041870117182,63.90000152587896],[-92.99583435058588,63.90625000000006],[-92.89115142822266,63.83385467529308],[-92.60832977294922,63.76041793823242],[-92.52916717529297,63.814582824707145],[-92.4046859741211,63.741146087646484],[-92.16666412353516,63.716667175293026],[-92.17500305175776,63.616664886474666],[-91.78124999999989,63.72291564941406],[-91.51667022705072,63.61041641235363],[-91.31458282470697,63.5625],[-91.14791870117176,63.477085113525504],[-91.01457977294916,63.47083282470709],[-90.74166870117188,63.360416412353516],[-90.64531707763666,63.0640602111817],[-90.72343444824207,62.956771850585994],[-91.07291412353516,62.90833282470709],[-91.41041564941406,62.78958511352539],[-91.62291717529291,62.79791641235346],[-92.0625,62.852085113525334],[-92.11042022705078,62.78958511352539],[-92.35832977294922,62.843750000000114],[-92.36458587646479,62.756248474121094],[-92.25624847412104,62.677082061767635],[-92.03958129882807,62.65208435058588],[-91.93541717529297,62.65000152587885],[-91.95051574707026,62.53073120117199],[-92.17864990234364,62.553646087646484],[-92.20259857177734,62.60260391235346],[-92.54374694824219,62.479167938232536],[-92.75364685058594,62.4630241394043],[-92.7375030517577,62.302082061767635],[-92.94999694824219,62.302082061767635],[-92.8973999023437,62.20885086059576],[-93.16458129882812,62.19374847412104],[-93.13124847412104,62.08750152587902],[-93.15416717529297,61.983333587646484],[-93.32499694824219,61.877082824707145],[-93.53593444824219,61.9119758605957],[-93.61823272705078,61.70677185058605],[-93.75208282470697,61.58541488647455],[-94.05000305175781,61.39791488647455],[-94.1500015258789,61.39791488647455],[-93.84843444824207,61.376560211181584],[-93.89427185058588,61.294269561767635],[-94.03124999999994,61.20833206176752],[-94.21823120117188,60.94739913940424],[-94.36042022705078,60.845832824706974],[-94.55156707763666,60.58280944824213],[-94.67343902587885,60.483856201171875],[-94.64948272705078,60.36406326293951],[-94.7203140258789,60.26614379882824],[-94.72968292236328,60.1317710876466],[-94.82127380371088,60.00001525878929],[-102,60.00000000000006],[-102.00000762939453,60.52166748046881],[-102,60.52500152587902],[-101.99999237060547,60.606903076171875],[-102,60.60707092285156],[-102,60.80625152587896],[-102,60.8125],[-102,61.18743515014654],[-102,61.18756866455084],[-102,61.97906875610363],[-101.99999237060547,61.98131179809576],[-102.00000762939453,62.056251525878906],[-102,62.05646514892578],[-102,62.06261825561518],[-102,62.06472015380865],[-102,62.1974716186524],[-102,62.19789505004883],[-102,62.86730575561535],[-102,62.868801116943416],[-102,62.87318420410156],[-102,62.873363494873104],[-101.99999237060547,62.993751525878906],[-102,63.00006103515625],[-102,63.70413208007824],[-102,63.706069946289176],[-101.99999237060547,63.706253051757926],[-102,63.71255874633795],[-101.99999237060547,63.724998474121094],[-102,63.72708129882807],[-102,63.75745773315441],[-102,63.75771713256836],[-101.99999237060547,64.13124847412104],[-102,64.13135528564459],[-101.99999237060547,64.18904876708984],[-102.30739593505854,64.22164154052729],[-102.30763244628906,64.22166442871094],[-103.3224029541015,64.32412719726562],[-103.3287582397461,64.32474517822271],[-104.87500762939442,64.4659805297851],[-105.59407806396473,64.521957397461],[-107.22619628906239,64.6361923217774],[-109.07715606689447,64.74463653564447],[-109.80426025390614,65.02426910400385],[-110.8423843383789,65.40769958496094],[-111.56803894042969,65.38124847412115],[-111.56942749023438,65.38116455078125],[-112.73799133300781,65.33104705810553],[-113.8890609741211,65.78787994384771],[-115.34188079833984,66.33062744140625],[-116.39335632324213,66.70138549804682],[-117.06546020507812,66.9291763305664],[-118.59419250488281,67.19886016845703],[-120.01416015625,67.60820007324219],[-120.90374755859375,67.85517120361328],[-121.04924774169922,69.40641021728516],[-120.38711547851562,69.43428039550781],[-119.94999694824213,69.34375000000006],[-119.25833129882812,69.30416870117205],[-118.65416717529286,69.22499847412104],[-118.38957977294922,69.10832977294922],[-117.97708129882812,69.01457977294933],[-117.71250152587885,68.97708129882812],[-117.38333129882812,68.96250152587902],[-117.10416412353504,68.89791870117188],[-116.98958587646484,68.94583129882812],[-116.65000152587885,68.8687515258789],[-116.37291717529297,68.88749694824224],[-116.22083282470697,68.83958435058594],[-115.92082977294916,68.93958282470709],[-115.79582977294922,68.96666717529303],[-115.77083587646484,69],[-115.2109375,68.89948272705078],[-115.08333587646484,68.85208129882824],[-114.98542022705078,68.87083435058594],[-114.83125305175776,68.81666564941406],[-114.76457977294916,68.74791717529325],[-114.50208282470703,68.70625305175781],[-114.4250030517577,68.6374969482423],[-114.17448425292969,68.55885314941412],[-114.06510162353516,68.46823120117188],[-114.0848999023437,68.40260314941406],[-114,68.24166870117193],[-114.20207977294922,68.24791717529297],[-114.41041564941395,68.29374694824224],[-114.59166717529297,68.2395858764649],[-114.73750305175776,68.24375152587896],[-114.86302185058588,68.15260314941412],[-115.1187515258789,68.183334350586],[-115.28333282470703,67.97708129882812],[-115.51249694824219,67.89791870117188],[-115.28749847412104,67.87916564941418],[-114.99166870117182,67.79166412353516],[-114.72083282470692,67.82083129882812],[-114.62708282470697,67.77708435058605],[-114.49791717529297,67.79792022705072],[-114.37708282470703,67.74375152587885],[-114.01875305175781,67.72916412353521],[-113.69166564941406,67.68541717529297],[-113.160415649414,67.70625305175804],[-113.09374999999994,67.67500305175787],[-112.4375,67.6791687011721],[-112.22760009765625,67.73490142822271],[-111.53697967529291,67.75989532470709],[-111.40833282470697,67.72499847412115],[-111.20417022705078,67.83541870117193],[-110.97083282470703,67.77083587646479],[-110.70781707763672,67.86406707763683],[-110.35416412353516,67.95833587646479],[-110.1624984741211,67.98542022705072],[-110.02916717529297,68.00833129882812],[-109.75833129882812,67.83541870117193],[-109.70989990234375,67.72135162353521],[-109.5,67.69166564941418],[-109.38281249999994,67.75572967529308],[-109.03958129882807,67.72708129882818],[-108.95051574707026,67.62239837646496],[-108.9000015258789,67.43125152587896],[-108.76927185058594,67.35884857177729],[-108.660415649414,67.6354141235351],[-108.55833435058594,67.60208129882812],[-108.4776000976562,67.38489532470709],[-108.37291717529297,67.44791412353527],[-108.27656555175776,67.38176727294922],[-107.98750305175776,67.29582977294928],[-107.88593292236322,67.17448425292991],[-107.90624999999994,67.0520858764649],[-108.11666870117188,67.08125305175787],[-108.2750015258789,67.027084350586],[-108.08385467529297,66.92031097412121],[-108.0921859741211,66.85260009765636],[-107.92134857177734,66.79948425292969],[-107.71823120117188,66.61927032470709],[-107.52083587646484,66.55208587646484],[-107.222915649414,66.34791564941418],[-107.22916412353516,66.42500305175793],[-107.51457977294916,66.56874847412115],[-107.67500305175781,66.75208282470714],[-107.6796875,66.86614990234386],[-107.59999847412104,66.97708129882818],[-107.41458129882812,66.88333129882824],[-107.41666412353516,66.98124694824219],[-107.18333435058594,66.8958358764649],[-107.18125152587885,66.96666717529308],[-107.36250305175781,67.027084350586],[-107.33541870117188,67.13333129882818],[-107.51667022705072,67.20417022705072],[-107.62083435058594,67.32499694824224],[-107.63489532470703,67.45156097412126],[-107.74635314941406,67.6161499023437],[-108.02552032470703,67.74531555175781],[-107.95625305175781,67.84583282470703],[-107.64009857177734,67.92968750000011],[-107.85208129882807,68.02291870117193],[-107.53124999999994,68.0645828247072],[-107.36875152587885,68.04166412353527],[-107.14375305175781,68.12083435058588],[-106.83333587646484,68.12500000000011],[-106.77500152587885,68.22083282470703],[-106.59114837646484,68.25572967529297],[-106.46666717529291,68.22291564941406],[-106.42292022705078,68.33958435058605],[-106.21458435058594,68.39583587646496],[-105.76249694824207,68.41041564941406],[-105.6786499023437,68.47656249999994],[-105.77291870117188,68.6104202270509],[-105.91041564941406,68.63541412353527],[-106.07707977294916,68.5687484741211],[-106.33958435058594,68.589584350586],[-106.45677185058582,68.48698425292974],[-106.5562515258789,68.29374694824224],[-106.79322814941395,68.40573120117193],[-106.95207977294916,68.31041717529308],[-107.02708435058594,68.33125305175781],[-107.23490142822266,68.2671890258789],[-107.31041717529297,68.33125305175781],[-107.79792022705067,68.34791564941412],[-107.86250305175781,68.26667022705084],[-107.57707977294922,68.18125152587902],[-107.77083587646473,68.183334350586],[-107.88957977294922,68.14375305175781],[-108.277603149414,68.20781707763666],[-108.41041564941406,68.30833435058588],[-108.6859359741211,68.23593902587896],[-108.70625305175781,68.35208129882835],[-108.5999984741211,68.38749694824236],[-108.35781097412104,68.60156250000023],[-108.26249694824219,68.63124847412104],[-107.90208435058594,68.64167022705084],[-107.75208282470703,68.65208435058594],[-107.33958435058582,68.69583129882818],[-106.97708129882807,68.76457977294939],[-106.80208587646479,68.81666564941406],[-106.6500015258789,68.81666564941406],[-106.20625305175781,68.94166564941412],[-105.87499999999994,68.87291717529314],[-105.78124999999994,68.88333129882818],[-105.45833587646479,68.74791717529325],[-105.5104141235351,68.68333435058594],[-105.39009857177734,68.57239532470709],[-105.44374847412104,68.4583358764649],[-105.02291870117176,68.31458282470714],[-104.62708282470703,68.25],[-104.64583587646473,68.16041564941412],[-104.50676727294916,68.05156707763683],[-104.51093292236328,67.95885467529308],[-104.2687530517577,67.93750000000011],[-104.07083129882807,68.01041412353533],[-103.98332977294922,67.98958587646496],[-103.5062484741211,68.0625],[-103.47551727294922,68.14635467529308],[-103.35624694824213,68.13333129882818],[-103.3463516235351,68.04114532470703],[-103.19583129882812,67.95417022705078],[-102.95207977294916,67.91041564941418],[-102.83125305175776,67.83541870117193],[-102.62291717529297,67.78958129882812],[-102.42708587646479,67.7874984741211],[-102.21458435058594,67.71875000000011],[-101.94947814941406,67.7953109741211],[-101.77760314941406,67.70259857177734],[-101.42448425292963,67.69010162353544],[-101.24010467529297,67.71926879882818],[-101.0848999023437,67.79322814941429],[-100.97916412353516,67.75000000000011],[-100.68749999999994,67.84999847412104],[-100.54792022705078,67.80416870117199],[-100.42500305175781,67.84583282470703],[-99.59583282470697,67.78541564941412],[-99.53124999999994,67.808334350586],[-99.30052185058594,67.77239990234375],[-99.18333435058594,67.71041870117188],[-99.08541870117182,67.74375152587885],[-98.92292022705072,67.70417022705084],[-98.83333587646484,67.76875305175798],[-98.7203140258789,67.75676727294922],[-98.45417022705072,67.80208587646496],[-98.69322967529297,67.96406555175798],[-98.69999694824219,68.07499694824224],[-98.56666564941406,68.10416412353521],[-98.19635009765625,67.91614532470714],[-98.09166717529297,67.77500152587902],[-97.93698120117188,67.70885467529291],[-97.77291870117188,67.68750000000017],[-97.57083129882812,67.60208129882812],[-97.50833129882807,67.70417022705084],[-97.16301727294916,67.63593292236357],[-97.14167022705078,67.8562469482423],[-97.35416412353516,67.87708282470697],[-97.63957977294922,68.02500152587896],[-97.91874694824219,67.92708587646484],[-98.17343902587885,67.91614532470714],[-98.3911514282226,68.02552032470703],[-98.49739837646479,68.11302185058588],[-98.45365142822266,68.19531250000006],[-98.67448425292963,68.35884857177746],[-98.60208129882812,68.38749694824236],[-98.47708129882807,68.33333587646484],[-98.38333129882807,68.36875152587902],[-98.12864685058594,68.31093597412115],[-97.910415649414,68.56250000000006],[-97.32917022705078,68.51667022705078],[-97.07917022705072,68.40416717529303],[-96.98332977294916,68.29582977294928],[-96.86250305175776,68.254165649414],[-96.66458129882812,68.28124999999994],[-96.46666717529297,68.20207977294933],[-96.6937484741211,68.08958435058594],[-96.65468597412104,68.0109329223634],[-96.43489837646473,68.14739990234375],[-96.16249847412104,68.22083282470703],[-95.99948120117188,68.0953140258789],[-96.13906097412104,67.92552185058588],[-96.19114685058594,67.7921829223634],[-96.13749694824219,67.60416412353516],[-96.28906249999994,67.61198425292969],[-96.40208435058588,67.55000305175781],[-96.2984390258789,67.44426727294933],[-96.0875015258789,67.402084350586],[-96.17760467529297,67.31718444824224],[-96.09426879882812,67.22135162353516],[-95.7750015258789,67.33333587646484],[-95.72083282470703,67.39167022705095],[-95.57291412353516,67.3062515258789],[-95.30208587646479,67.25416564941406],[-95.402603149414,67.0713500976563],[-95.29374694824219,66.8979187011721],[-95.191665649414,66.99166870117199],[-95.32031249999994,67.07865142822277],[-95.18958282470697,67.31458282470714],[-95.29114532470697,67.34218597412115],[-95.35624694824219,67.48750305175787],[-95.2984390258789,67.54948425292974],[-95.46875,67.65416717529297],[-95.66458129882807,67.69999694824224],[-95.50676727294916,67.82968902587896],[-95.5171890258789,67.91718292236328],[-95.41666412353516,67.98332977294939],[-95.42082977294916,68.0645828247072],[-95.20417022705072,68.03541564941406],[-95.11250305175776,68.08333587646507],[-94.79948425292969,68.0130157470706],[-94.57707977294922,68.15000152587902],[-94.18958282470703,68.26249694824247],[-94.18698120117182,68.378646850586],[-93.96198272705072,68.4703140258789],[-93.6338500976562,68.52135467529308],[-93.61510467529297,68.7963485717774],[-93.5609359741211,68.83906555175787],[-93.65208435058594,68.97708129882812],[-93.91197967529297,68.98072814941406],[-94.0729141235351,68.76041412353516],[-94.47291564941406,68.73542022705078],[-94.57083129882807,68.97708129882812],[-94.40625,68.94999694824219],[-94.17500305175781,69.12708282470709],[-94.2734375,69.1901016235351],[-94.19583129882807,69.33958435058605],[-93.6338500976562,69.363021850586],[-93.84635162353516,69.26509857177734],[-93.83541870117188,69.16458129882812],[-93.433853149414,69.32759857177746],[-93.52291870117182,69.41041564941406],[-93.54582977294916,69.53333282470709],[-93.80208587646473,69.49791717529308],[-93.89167022705078,69.4375],[-94.27500152587885,69.43958282470697],[-94.3671875,69.53176879882812],[-94.55989837646484,69.60364532470703],[-94.64167022705072,69.68333435058588],[-94.72291564941406,69.60208129882807],[-94.91666412353516,69.5791702270509],[-95.10832977294916,69.6500015258789],[-95.22864532470703,69.65052032470714],[-95.55000305175781,69.72708129882812],[-95.691665649414,69.79166412353527],[-95.76041412353516,69.74166870117199],[-96.02291870117188,69.81041717529297],[-96.0999984741211,69.95207977294916],[-96.24375152587885,69.96666717529303],[-96.47864532470697,70.09426879882818],[-96.55208587646479,70.27916717529308],[-96.46874999999989,70.39375305175787],[-96.3125,70.410415649414],[-96.24114990234375,70.55364990234386],[-96.11875152587879,70.53125000000006],[-96.02656555175781,70.64948272705101],[-96.17292022705067,70.68125152587902],[-96.25624847412104,70.64375305175781],[-96.37083435058594,70.68750000000028],[-96.5338516235351,70.88385009765625],[-96.34375,71.11042022705072],[-96.43125152587885,71.28333282470709],[-96.26927185058594,71.28801727294922],[-96.16614532470697,71.395317077637],[-96.02708435058588,71.42082977294928],[-95.83385467529291,71.3848953247072],[-95.7874984741211,71.32707977294933],[-95.52708435058588,71.28749847412115],[-95.4437484741211,71.38957977294928],[-95.52916717529291,71.48958587646496],[-95.81249999999994,71.50833129882812],[-95.83698272705078,71.62864685058588],[-95.68958282470697,71.63541412353521],[-95.46458435058594,71.7354202270509],[-95.39791870117188,71.84375000000011],[-95.2015609741211,71.84114837646484],[-95.16041564941406,71.95625305175787],[-94.66874694824219,71.99999999999994],[-94.52708435058594,71.99791717529314],[-94.43958282470697,71.92500305175793],[-94.48176574707026,71.81510162353521],[-94.27708435058588,71.73332977294933],[-94.23332977294916,71.78749847412121],[-93.9625015258789,71.745834350586],[-93.77500152587879,71.7708358764649],[-93.76041412353504,71.60832977294928],[-93.51667022705078,71.51457977294916],[-93.347915649414,71.48124694824219],[-93.03749847412104,71.37083435058594],[-92.92916870117182,71.29166412353516],[-92.83958435058594,71.13957977294933],[-92.90833282470703,70.9437484741211],[-92.87916564941406,70.82083129882824],[-92.67500305175776,70.78333282470703],[-92.64167022705078,70.68958282470709],[-92.50468444824213,70.68801879882818],[-92.24375152587885,70.60832977294928],[-92.23750305175781,70.49583435058605],[-91.91718292236328,70.378646850586],[-91.69791412353516,70.3604202270509],[-91.5374984741211,70.14791870117199],[-91.9703140258789,70.11093902587902],[-92.10624694824213,70.1687469482423],[-92.36250305175776,70.1875],[-92.42082977294922,70.08541870117205],[-92.0875015258789,70.09999847412115],[-92.10832977294916,69.97291564941406],[-92.19218444824213,69.90885162353516],[-92.48750305175781,69.8125],[-92.49166870117188,69.69791412353521],[-92.1937484741211,69.65208435058594],[-92.07291412353516,69.55625152587919],[-91.78385162353516,69.48490142822271],[-91.62083435058588,69.55625152587919],[-91.48542022705067,69.65833282470714],[-91.25833129882807,69.65624999999994],[-91.12083435058582,69.51249694824219],[-90.97916412353516,69.52916717529325],[-90.82499694824213,69.50000000000011],[-90.76457977294922,69.54582977294939],[-90.44635009765625,69.50156402587885],[-90.77291870117182,69.35624694824219],[-90.82447814941406,69.34114837646496],[-90.79634857177734,69.31093597412115],[-90.808853149414,69.2588500976563],[-90.83958435058588,69.23750305175787],[-90.67082977294922,68.99375152587896],[-90.44635009765625,68.89323425292974],[-90.51615142822266,68.74843597412115],[-90.46614837646484,68.59114837646496],[-90.52916717529291,68.4187469482423],[-90.31249999999989,68.38541412353516],[-90.26875305175781,68.25208282470703],[-90.1666641235351,68.2354202270509],[-89.89583587646473,68.45417022705084],[-89.93073272705072,68.62864685058616],[-89.6703109741211,68.81510162353527],[-89.75989532470703,68.96302032470709],[-89.63541412353516,69.05833435058594],[-89.43489837646479,69.12551879882818],[-89.31406402587885,69.2515640258789],[-89.12968444824219,69.12968444824219],[-88.95625305175776,69.21041870117193],[-88.74791717529297,69.05416870117188],[-88.58541870117188,69.035415649414],[-88.21458435058588,68.92292022705078],[-88.07343292236322,68.8453140258789],[-87.91718292236328,68.69843292236328],[-88.03176879882807,68.6223983764649],[-87.8515625,68.49739837646484],[-87.82343292236328,68.26093292236334],[-88.14167022705078,68.23332977294933],[-88.21458435058588,68.35832977294922],[-88.34166717529297,68.33333587646484],[-88.38072967529291,68.25364685058594],[-88.26615142822266,68.1161499023438],[-88.38957977294916,67.98750305175793],[-88.12031555175781,67.68385314941418],[-87.93125152587885,67.620834350586],[-87.30052185058594,67.22031402587896],[-87.06458282470703,67.21250152587919],[-86.98332977294922,67.34791564941412],[-86.74583435058588,67.4229202270509],[-86.54426574707031,67.34426879882818],[-86.4765625,67.54948425292974],[-86.5015640258789,67.69947814941418],[-86.08541870117182,67.98124694824219],[-85.93541717529286,68.01041412353533],[-85.83385467529286,68.12448120117188],[-85.84114837646484,68.2338485717774],[-85.74635314941406,68.35468292236322],[-85.75781249999994,68.42656707763683],[-85.66458129882812,68.5687484741211],[-85.70573425292969,68.6432342529298],[-85.60208129882807,68.74166870117199],[-85.39583587646484,68.78125000000006],[-85.2874984741211,68.71875000000011],[-85.21198272705078,68.76615142822266],[-85.07917022705078,68.74583435058605],[-85.00624847412104,68.91249847412115],[-84.74948120117188,69.0390625],[-85.19999694824219,69.12500000000028],[-85.37291717529291,69.2062530517581],[-85.46041870117188,69.31250000000011],[-85.51406097412104,69.52448272705078],[-85.48332977294922,69.67500305175781],[-85.27708435058588,69.81874847412121],[-85.05833435058594,69.77500152587896],[-84.84166717529297,69.83958435058594],[-84.69635009765625,69.83385467529297],[-84.45259857177734,69.87031555175781],[-84.09635162353504,69.8098983764649],[-84.05208587646479,69.76041412353516],[-83.61250305175781,69.69166564941412],[-82.69999694824219,69.68125152587908],[-82.62083435058594,69.70207977294922],[-82.57291412353516,69.57083129882812],[-82.22708129882812,69.52916717529325],[-82.24583435058588,69.23332977294928],[-82.06666564941406,69.22708129882824],[-81.97499847412098,69.27083587646484],[-81.69999694824219,69.26875305175804],[-81.43333435058594,69.1958312988283],[-81.32135009765614,69.19947814941406],[-81.29582977294922,69.11042022705078],[-81.47343444824213,69.05989837646507],[-81.57083129882801,68.98332977294933],[-81.66614532470703,68.99010467529303],[-81.8187484741211,68.89791870117188]]],[[[-96.67708587646484,72.89791870117193],[-96.70417022705078,72.72916412353527],[-96.93333435058594,72.7395858764649],[-96.87239837646484,72.85990142822266],[-96.67708587646484,72.89791870117193]]],[[[-96.82447814941406,73.18801879882818],[-96.64427185058594,73.136978149414],[-96.54634857177729,73.02656555175781],[-96.6624984741211,72.93958282470703],[-96.93125152587885,72.92500305175787],[-97.07343292236328,72.98906707763678],[-97.11614990234375,73.09323120117193],[-97.02083587646473,73.15416717529297],[-96.82447814941406,73.18801879882818]]],[[[-117.32119750976557,69.89804077148443],[-116.2216567993164,69.9089736938476],[-115.12065887451172,69.90512084960949],[-113.53598022460932,69.92378234863287],[-113.4872436523437,69.75106811523438],[-113.19101715087885,69.7408294677735],[-113.2304458618164,69.923568725586],[-112.9278945922851,69.92770385742188],[-110.7971420288086,69.92949676513678],[-109.86248016357422,69.92113494873058],[-109.85302734375,71.1746978759765],[-109.85298919677729,71.18614196777338],[-109.8453521728515,72.443588256836],[-109.84513854980463,72.45833587646479],[-109.86965179443354,72.48293304443371],[-109.84101867675781,72.5335464477539],[-109.84735870361322,72.93333435058594],[-109.64583587646479,72.9375],[-109.63541412353516,72.84999847412115],[-109.0875015258789,72.7395858764649],[-108.98750305175776,72.65416717529325],[-108.99166870117188,72.56458282470697],[-108.82917022705078,72.57083129882824],[-108.65625,72.62083435058605],[-108.55833435058594,72.5124969482423],[-108.64791870117182,72.3333358764649],[-108.39791870117188,72.16458129882824],[-108.2578125,71.909896850586],[-108.25833129882807,71.78541564941418],[-107.96250152587885,71.68750000000006],[-107.80468749999994,71.60468292236351],[-107.80208587646479,71.7312469482423],[-107.66041564941406,71.69999694824219],[-107.60208129882812,71.75624847412104],[-107.36250305175781,71.83541870117188],[-107.45207977294922,71.98542022705084],[-107.61250305175776,72.01667022705101],[-107.66301727294922,72.13176727294933],[-107.76249694824219,72.14791870117193],[-107.78958129882812,72.34375],[-107.86666870117182,72.45833587646479],[-107.8499984741211,72.5875015258789],[-107.96458435058594,72.62500000000011],[-108.10156249999994,72.83281707763672],[-108.09374999999989,73.00416564941435],[-108.21874999999994,73.18750000000011],[-108.01249694824207,73.20207977294922],[-108.01041412353516,73.34999847412121],[-107.74375152587879,73.33541870117193],[-107.4312515258789,73.28958129882812],[-107.18333435058594,73.19583129882818],[-107.03333282470697,73.277084350586],[-106.875,73.3125],[-106.67916870117176,73.23332977294922],[-106.45625305175781,73.22916412353516],[-106.37656402587879,73.15885162353544],[-105.56666564941406,72.91666412353527],[-105.35208129882812,72.80416870117188],[-105.33541870117182,72.683334350586],[-105.24323272705078,72.42552185058605],[-104.95417022705078,72.20833587646484],[-104.97708129882812,72.07707977294922],[-104.83333587646484,72.00833129882818],[-104.8229141235351,71.88957977294939],[-104.71250152587879,71.81666564941418],[-104.50051879882812,71.75572967529297],[-104.41874694824213,71.64583587646484],[-104.42082977294916,71.53541564941406],[-104.3062515258789,71.46875000000028],[-104.30208587646484,71.36875152587896],[-104.41874694824213,71.29166412353516],[-104.61042022705072,71.08958435058605],[-104.31666564941406,70.97916412353527],[-104.1812515258789,70.96875],[-104.03333282470703,70.89375305175798],[-104.01249694824213,70.78958129882824],[-103.62708282470703,70.67500305175781],[-103.49791717529297,70.5791702270509],[-103.29374694824219,70.58750152587896],[-103.06458282470703,70.50624847412115],[-102.74999999999994,70.51667022705095],[-102.44166564941406,70.44374847412121],[-102.26927185058588,70.3734359741211],[-102.21198272705078,70.19843292236334],[-101.79582977294922,70.09791564941412],[-101.75833129882812,70.1666641235351],[-101.50468444824219,70.11927032470709],[-101.31666564941406,70.17916870117193],[-100.96666717529297,70.17500305175793],[-100.9088516235351,70.05260467529291],[-100.98958587646484,69.86666870117188],[-100.92760467529297,69.70989990234375],[-101.02916717529297,69.67708587646484],[-101.31406402587885,69.68177032470714],[-101.43073272705078,69.79010009765636],[-101.62083435058594,69.71041870117182],[-101.95781707763672,69.77552032470703],[-102.23542022705072,69.92082977294922],[-102.32083129882812,69.76249694824213],[-102.37916564941406,69.83125305175787],[-102.48802185058588,69.75676727294916],[-102.48124694824219,69.5916671752932],[-102.59583282470703,69.54582977294939],[-102.78749847412104,69.53333282470709],[-102.8375015258789,69.5687484741211],[-103.13957977294916,69.61875152587913],[-103.26457977294922,69.70625305175781],[-103.39583587646479,69.71458435058605],[-103.34374999999994,69.58333587646513],[-103.05833435058588,69.52916717529325],[-103.0171890258789,69.25676727294928],[-102.8125,69.40000152587896],[-102.55208587646484,69.4270858764649],[-102.41249847412104,69.50000000000011],[-102.07499694824213,69.49166870117188],[-101.95885467529291,69.45573425292997],[-102.07447814941406,69.31406402587902],[-101.92500305175776,69.26875305175804],[-101.72447967529297,69.16197967529303],[-101.7916641235351,68.995834350586],[-102.06041717529291,69.00833129882807],[-102.2203140258789,68.94739532470709],[-102.3828125,68.96406555175793],[-102.44999694824213,68.87499999999994],[-102.629165649414,68.86458587646507],[-102.74999999999994,68.80625152587896],[-103.004165649414,68.80000305175793],[-103.16874694824219,68.84375],[-103.34583282470703,68.78333282470726],[-103.53958129882812,68.83541870117193],[-103.61458587646484,68.81458282470703],[-103.96666717529297,68.87708282470714],[-104.04582977294922,68.85416412353527],[-104.43801879882807,68.94531250000006],[-104.52916717529291,68.86250305175787],[-105.12291717529297,68.89583587646484],[-105.03541564941395,69.01457977294933],[-105.11666870117176,69.07707977294928],[-105.3687515258789,69.10624694824241],[-105.52916717529297,69.15416717529303],[-105.83958435058594,69.18541717529303],[-105.92864990234375,69.14948272705095],[-106.16458129882812,69.14375305175776],[-106.37968444824213,69.23384857177757],[-106.23958587646479,69.28541564941418],[-106.3046875,69.3994827270509],[-106.4463500976562,69.47239685058611],[-106.65208435058582,69.48124694824224],[-106.76667022705078,69.37916564941406],[-106.95833587646484,69.35624694824219],[-106.91093444824219,69.23281097412121],[-107.09166717529297,69.1729202270509],[-107.31041717529297,69.02500152587896],[-107.49166870117182,68.98332977294933],[-108.15833282470703,68.93541717529308],[-108.4640655517577,68.94947814941412],[-108.56926727294922,68.86718749999994],[-108.98542022705072,68.73332977294922],[-109.38749694824213,68.69999694824224],[-109.63541412353516,68.64375305175787],[-110.03749847412104,68.62291717529297],[-110.21875,68.6374969482423],[-110.31874847412104,68.57917022705072],[-110.50989532470703,68.63072967529297],[-110.92082977294922,68.55625152587902],[-110.97291564941406,68.6041641235351],[-111.17500305175781,68.52500152587885],[-111.52083587646484,68.55208587646479],[-112.00833129882812,68.52291870117205],[-112.097915649414,68.53749847412115],[-112.42916870117188,68.49791717529291],[-112.59114837646479,68.50989532470714],[-112.74791717529297,68.46875000000017],[-113.32083129882807,68.59166717529303],[-113.41718292236328,68.69322967529291],[-113.59374999999994,68.79166412353533],[-113.61875152587885,68.93333435058605],[-113.54426574707026,69.02031707763683],[-113.66874694824219,69.15208435058622],[-113.63749694824219,69.21041870117193],[-113.93333435058594,69.26249694824224],[-114.17916870117188,69.28125000000011],[-115.17292022705078,69.24791717529297],[-115.26667022705078,69.27083587646484],[-115.9437484741211,69.29582977294922],[-116.34791564941406,69.40000152587896],[-116.50208282470697,69.40833282470703],[-116.56093597412104,69.54740142822266],[-116.8229141235351,69.58541870117193],[-116.82759857177723,69.6473999023438],[-117.19322967529291,69.74427032470709],[-117.32119750976557,69.89804077148443]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":8,"NAME_1":"Nunavut","TYPE_1":"Territoire","ENGTYPE_1":"Territory","NL_NAME_1":"","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-81.9598999023437,73.73384857177734],[-81.55833435058588,73.722915649414],[-81.2942657470702,73.59947967529308],[-81.14843749999994,73.39739990234398],[-81.1500015258789,73.2562484741211],[-80.58541870117188,73.15416717529297],[-80.5130157470702,73.08281707763689],[-80.63541412353516,73.00208282470714],[-80.62239837646479,72.9213485717774],[-80.49739837646484,72.83177185058605],[-80.33125305175781,72.81041717529308],[-80.23124694824219,72.7312469482423],[-80.53697967529297,72.63072967529308],[-80.5562515258789,72.57499694824224],[-80.7562484741211,72.52500152587896],[-80.73124694824219,72.45625305175798],[-80.57499694824213,72.5124969482423],[-80.46093749999994,72.45781707763672],[-80.50833129882807,72.37500000000017],[-80.7953109741211,72.27760314941412],[-80.8578109741211,72.16926574707037],[-80.74791717529297,71.98332977294928],[-80.39583587646484,72.03749847412115],[-80.32968902587885,72.09114837646496],[-80.22083282470703,72.30625152587896],[-80.07239532470697,72.38281249999994],[-79.75572967529297,72.42656707763678],[-79.66249847412104,72.38333129882824],[-79.60208129882812,72.45833587646479],[-79.29374694824207,72.4000015258789],[-79.01875305175781,72.29166412353516],[-78.94843292236328,72.19947814941418],[-79.06874847412104,71.972915649414],[-78.91301727294916,72.01615142822271],[-78.80416870117188,72.15208435058594],[-78.79218292236322,72.31406402587896],[-78.3541641235351,72.37083435058594],[-78.54948425292963,72.44010162353538],[-78.41874694824213,72.5875015258789],[-77.96666717529297,72.69999694824213],[-77.78073120117182,72.706771850586],[-77.61458587646479,72.754165649414],[-77.28749847412104,72.7750015258789],[-77.06458282470703,72.73750305175787],[-76.72708129882812,72.71875],[-76.65573120117188,72.64218902587902],[-76.46458435058594,72.61250305175781],[-75.79582977294916,72.58541870117188],[-75.25208282470703,72.5104141235351],[-75.14531707763672,72.3838500976563],[-74.96875,72.27708435058622],[-75.02500152587885,72.18958282470714],[-75.2750015258789,72.10832977294933],[-75.16458129882812,72.01875305175781],[-75.03958129882807,72.11250305175793],[-74.22916412353504,72.06874847412115],[-74.11510467529286,71.9609375],[-74.16510009765625,71.86510467529308],[-74.39167022705067,71.80000305175787],[-74.51457977294916,71.82083129882818],[-74.74375152587885,71.7395858764649],[-74.98958587646484,71.68750000000006],[-74.875,71.61250305175804],[-74.67500305175776,71.67500305175798],[-74.84999847412104,71.46250152587902],[-74.5625,71.56874847412104],[-74.50833129882812,71.63541412353521],[-74.3187484741211,71.66458129882818],[-74.28333282470692,71.7249984741211],[-74.0875015258789,71.69999694824219],[-73.88957977294922,71.7708358764649],[-73.7125015258789,71.7750015258789],[-73.81249999999994,71.62291717529291],[-73.97708129882807,71.53333282470703],[-73.97291564941395,71.40208435058594],[-73.74583435058588,71.59166717529297],[-73.5651016235351,71.5557327270509],[-73.53124999999994,71.47291564941412],[-73.4208297729491,71.43958282470714],[-73.52083587646479,71.32291412353516],[-73.68333435058594,71.24791717529308],[-73.64583587646484,71.17082977294933],[-73.42500305175776,71.34375],[-73.34583282470703,71.34583282470703],[-73.23906707763672,71.23698425292974],[-73.05000305175781,71.21874999999994],[-72.9437484741211,71.30625152587902],[-72.96875,71.40416717529297],[-72.78749847412098,71.4000015258789],[-72.7916641235351,71.47916412353516],[-72.66874694824213,71.52083587646496],[-72.53958129882812,71.66041564941412],[-72.13124847412104,71.5833358764649],[-71.92916870117182,71.57083129882824],[-71.4749984741211,71.47083282470709],[-71.16718292236322,71.28489685058605],[-71.28906249999994,71.22656250000011],[-71.48542022705072,71.06250000000011],[-71.87708282470697,71.11458587646496],[-72.08958435058588,71.08333587646479],[-72.1875,70.96666717529297],[-72.33489990234375,70.93281555175793],[-72.25833129882812,70.78333282470703],[-72.15833282470697,70.7604141235351],[-71.88541412353504,70.78333282470703],[-71.61875152587885,70.85416412353521],[-71.3187484741211,70.88124847412115],[-71.20365142822266,71.00989532470697],[-71.07083129882812,71.0250015258789],[-70.79792022705072,71.120834350586],[-70.6187515258789,71.06458282470732],[-70.57917022705067,70.91666412353516],[-70.7291641235351,70.83333587646484],[-70.73176574707031,70.75885009765636],[-71.11875152587885,70.66666412353521],[-71.1812515258789,70.58958435058594],[-71.1515655517577,70.45156097412138],[-70.93541717529297,70.66249847412115],[-70.7874984741211,70.65416717529308],[-70.41458129882812,70.7666702270509],[-70.25833129882807,70.745834350586],[-69.89791870117188,70.87708282470709],[-69.88541412353516,70.7708358764649],[-70.2291641235351,70.64375305175781],[-70.0999984741211,70.61042022705084],[-69.98542022705078,70.65625000000011],[-69.72291564941406,70.69583129882835],[-69.46666717529297,70.78541564941423],[-69.20417022705078,70.76457977294933],[-69.08906555175781,70.71926879882812],[-68.52291870117182,70.6187515258789],[-68.2874984741211,70.52500152587902],[-68.50989532470703,70.37760162353527],[-68.67448425292963,70.4390640258789],[-68.69114685058588,70.35364532470703],[-68.8854141235351,70.30000305175781],[-69.02291870117188,70.30416870117199],[-69.38541412353516,70.26041412353521],[-69.8062515258789,70.15833282470703],[-69.79948425292969,70.06822967529308],[-69.53958129882812,70.18125152587896],[-69.20885467529297,70.2057342529298],[-69.09999847412104,70.1729202270509],[-68.97708129882807,70.1999969482423],[-68.67708587646484,70.21041870117193],[-68.82343292236322,70.03385162353544],[-68.71041870117182,69.93750000000006],[-68.43749999999989,70.07499694824224],[-68.36042022705072,70.06458282470714],[-68.32499694824219,70.22708129882824],[-68.05052185058594,70.32447814941412],[-67.4625015258789,70.14791870117199],[-67.2349014282226,69.97031402587896],[-67.15885162353516,69.77239990234386],[-67.21666717529291,69.71666717529308],[-67.40625,69.71875000000006],[-67.6979141235351,69.777084350586],[-68.09999847412098,69.7666702270509],[-68.3125,69.63124847412121],[-68.82083129882812,69.65833282470714],[-68.8125,69.58750152587896],[-68.54374694824219,69.57499694824213],[-67.97708129882812,69.45833587646484],[-67.76875305175776,69.48542022705078],[-67.2874984741211,69.47499847412138],[-66.86458587646479,69.370834350586],[-66.68801879882812,69.2828140258789],[-66.76667022705078,69.14375305175776],[-67.17500305175776,69.1958312988283],[-67.65624999999989,69.17500305175793],[-68.17292022705072,69.31666564941412],[-68.28958129882807,69.27083587646484],[-68.20207977294922,69.15000152587902],[-67.78541564941406,69.04582977294928],[-68.12291717529297,68.97916412353516],[-68.10884857177729,68.86927032470714],[-67.92292022705078,68.78125000000006],[-68.44583129882812,68.847915649414],[-68.62031555175776,68.8515625],[-68.68281555175781,68.73802185058605],[-68.40676879882807,68.73490142822271],[-68.42031097412104,68.59531402587896],[-68.12968444824219,68.57447814941429],[-68.12708282470692,68.53333282470709],[-67.77083587646484,68.52916717529308],[-67.65833282470697,68.5687484741211],[-67.4124984741211,68.48332977294928],[-67.31614685058588,68.49427032470714],[-67.21406555175781,68.40676879882812],[-67.11042022705078,68.48542022705084],[-66.92292022705078,68.4250030517581],[-66.9984359741211,68.3036499023438],[-66.78176879882812,68.24531555175787],[-66.84947967529297,68.11927032470714],[-66.5999984741211,68.13957977294922],[-66.36250305175781,68.04582977294933],[-66.27083587646479,68.0875015258789],[-66.2125015258789,68.00000000000006],[-66.02916717529291,68.0166702270509],[-65.89583587646479,67.83125305175793],[-65.83333587646484,67.83125305175793],[-65.65000152587885,67.99791717529303],[-65.49583435058594,67.99375152587919],[-65.42448425292969,67.91406250000011],[-65.19218444824219,67.95259857177746],[-65.0687484741211,68.04582977294933],[-64.94166564941406,68.0437469482423],[-64.875,67.92708587646484],[-65.01041412353516,67.89583587646484],[-65.06666564941406,67.75000000000011],[-64.75208282470703,67.8187484741211],[-64.55208587646484,67.8291702270509],[-64.3499984741211,67.71666717529291],[-64.246353149414,67.71823120117188],[-64.20417022705078,67.60416412353516],[-63.99843978881836,67.4557342529298],[-63.94635391235346,67.34010314941435],[-64.12083435058594,67.2708358764649],[-63.97916793823231,67.17292022705078],[-63.86822891235346,67.2328109741211],[-63.481250762939396,67.22291564941406],[-63.45468521118164,67.15885162353521],[-63.26823043823242,67.30781555175787],[-63.141666412353516,67.33125305175781],[-62.98176956176758,67.28073120117193],[-63.01094055175781,67.16718292236328],[-63.280731201171875,67.11406707763678],[-63.21718978881836,66.97968292236345],[-63.1036491394043,66.95468902587885],[-63.08333206176758,67.0770797729495],[-62.9359397888183,67.0453109741211],[-62.852085113525334,66.96458435058605],[-62.57500076293945,66.94999694824224],[-62.49114608764643,66.84426879882812],[-62.39374923706049,66.92082977294928],[-62.2526016235351,66.94635009765625],[-62.27864837646479,67.03281402587896],[-62.0609397888183,67.04948425292963],[-62.01458358764643,66.91249847412121],[-61.64583206176758,66.84375000000023],[-61.67499923706043,66.79374694824219],[-61.400001525878906,66.73542022705084],[-61.2869758605957,66.60781097412132],[-61.356250762939396,66.56041717529308],[-61.570835113525334,66.5250015258789],[-61.52968978881836,66.3296890258789],[-61.77083206176752,66.32707977294928],[-61.88541793823242,66.277084350586],[-62.041667938232365,66.32291412353544],[-62.17708206176752,66.30833435058594],[-62.22083282470703,66.40625000000006],[-62.47708511352539,66.41041564941412],[-62.31510162353504,66.2963485717774],[-62.452083587646484,66.18125152587885],[-62.06041717529297,66.09999847412104],[-62.06874847412104,65.96458435058588],[-62.33124923706055,65.96875000000011],[-62.50416564941406,66.02083587646496],[-62.386978149414006,65.84426879882812],[-62.60052108764643,65.76823425292974],[-62.6276016235351,65.60260009765625],[-63.227085113525334,65.63333129882812],[-63.32447814941406,65.72343444824247],[-63.36302185058594,65.52968597412121],[-63.58541488647461,65.52708435058594],[-63.33124923706055,65.22083282470709],[-63.470832824706974,65.18541717529308],[-63.44374847412104,65.0999984741211],[-63.5390625,64.8900985717774],[-63.82291793823242,64.97708129882818],[-63.90156555175781,65.07551574707043],[-64.01249694824219,65.10208129882807],[-64.10624694824219,65.04166412353516],[-64.3125,65.1458358764649],[-64.35051727294916,65.26718902587896],[-64.51875305175776,65.1062469482423],[-64.71666717529297,65.21041870117182],[-64.89167022705078,65.2666702270509],[-64.76875305175781,65.39167022705078],[-64.9312515258789,65.41249847412115],[-65.0687484741211,65.37083435058588],[-65.11250305175776,65.49166870117193],[-65.27239990234375,65.56822967529291],[-65.29166412353516,65.63333129882812],[-65.45207977294922,65.67500305175793],[-65.43489837646484,65.83489990234375],[-65.33073425292969,65.918228149414],[-64.91249847412104,66.00208282470709],[-65.03541564941406,66.06666564941406],[-65.4312515258789,65.97083282470714],[-65.74791717529291,65.96666717529308],[-65.86666870117182,65.94166564941418],[-65.97083282470703,66.10832977294928],[-66.13957977294922,66.13124847412121],[-66.33125305175781,66.2604141235351],[-66.44999694824219,66.20625305175798],[-66.5390625,66.24218750000006],[-66.54582977294922,66.39375305175781],[-66.67708587646479,66.37500000000011],[-66.86302185058594,66.56301879882818],[-67.14375305175781,66.48542022705107],[-67.11458587646484,66.31041717529297],[-67.15625,66.27291870117193],[-67.39375305175781,66.28958129882824],[-67.55833435058594,66.40625000000006],[-67.65208435058594,66.40833282470709],[-67.90781402587885,66.50051879882824],[-67.69843292236328,66.29531097412104],[-67.70989990234375,66.2276000976562],[-67.4224014282226,66.13176727294928],[-67.26301574707026,66.1015625],[-67.16458129882812,66.01667022705078],[-67.21666717529291,65.910415649414],[-67.43333435058594,65.89375305175787],[-67.70677185058588,65.92552185058594],[-67.80208587646484,65.87708282470703],[-67.92864990234375,65.90885162353527],[-68.0687484741211,66.07707977294933],[-68.20833587646473,65.98958587646484],[-68.11510467529297,65.92240142822277],[-68.09166717529291,65.79792022705078],[-67.93541717529297,65.74791717529314],[-67.88957977294916,65.62500000000006],[-67.62916564941395,65.6624984741211],[-67.3151016235351,65.66614532470703],[-67.27291870117188,65.56041717529291],[-67.34635162353516,65.46614837646496],[-67.07031249999989,65.44531250000006],[-67.11875152587885,65.31458282470703],[-67.07291412353516,65.23958587646496],[-66.8109359741211,65.05260467529303],[-66.67031097412104,64.85156250000006],[-66.55781555175781,65.01823425292974],[-66.46666717529297,64.9312515258789],[-66.1354141235351,64.87500000000006],[-65.9312515258789,64.72708129882824],[-65.93698120117188,64.86093902587902],[-65.7020797729491,64.84583282470709],[-65.49323272705078,64.66926574707043],[-65.28697967529297,64.7161483764649],[-65.36666870117176,64.53125],[-65.18333435058594,64.4854202270509],[-65.09583282470703,64.50208282470703],[-65.17708587646484,64.22916412353521],[-65.03124999999994,64.06250000000006],[-65.0484390258789,63.994274139404354],[-64.69583129882807,64.01667022705078],[-64.6500015258789,63.91041564941406],[-64.535415649414,63.883335113525504],[-64.25468444824207,63.643230438232536],[-64.27291870117188,63.34166717529297],[-64.46666717529291,63.58958435058594],[-64.47968292236328,63.27864837646479],[-64.58125305175781,63.23541641235363],[-64.69999694824219,63.27708435058605],[-64.77864837646484,63.40989303588873],[-64.93749999999994,63.368751525878906],[-64.97760009765625,63.17760467529297],[-64.78333282470703,63.141666412353516],[-64.73176574707031,62.835937500000114],[-64.93958282470697,62.90000152587902],[-65.0755157470702,62.89843750000006],[-64.95420074462885,62.616676330566406],[-64.67708587646484,62.53333282470703],[-64.38749694824213,62.53125000000006],[-64.37916564941406,62.441665649414176],[-64.6500015258789,62.33750152587896],[-64.89791870117182,62.41666793823242],[-65.04792022705072,62.53541564941406],[-65.19791412353516,62.56666564941406],[-65.34843444824213,62.690101623535156],[-65.36875152587885,62.83333206176769],[-65.58333587646479,62.82083511352539],[-65.63697814941406,62.901565551757756],[-65.76249694824219,62.96041488647455],[-66.04218292236328,62.99322891235346],[-66.1026000976562,62.94739913940441],[-66.34791564941406,62.99791717529297],[-66.54010009765625,63.08802413940424],[-66.62083435058588,63.02916717529291],[-66.77448272705067,63.14323043823248],[-66.86823272705067,63.16093826293945],[-66.95833587646479,63.2645835876466],[-67.16666412353516,63.30416488647461],[-67.32083129882807,63.410415649414176],[-67.449478149414,63.44635391235363],[-67.65989685058594,63.64114379882818],[-67.79322814941406,63.579685211181754],[-67.62291717529297,63.39583206176769],[-67.67708587646484,63.368751525878906],[-67.92916870117182,63.53125],[-68.31822967529297,63.638019561767635],[-68.42916870117182,63.72708511352545],[-68.62343597412104,63.7578125],[-68.87916564941406,63.674999237060604],[-68.74948120117188,63.55052185058594],[-68.5187530517577,63.439582824707145],[-68.42708587646479,63.45416641235357],[-68.14791870117188,63.191665649414176],[-67.89375305175781,63.14583206176758],[-67.74791717529297,63.07916641235357],[-67.76667022705072,63.01250076293945],[-67.52083587646484,63.03749847412115],[-67.14791870117182,62.845832824707145],[-66.99323272705072,62.705730438232536],[-66.84583282470703,62.65000152587885],[-66.7249984741211,62.66249847412115],[-66.41458129882812,62.43333435058594],[-65.96250152587885,62.162498474121094],[-66.0625,62.00624847412121],[-65.95207977294922,61.875000000000114],[-66.27916717529297,61.864582061767635],[-66.60572814941406,61.93072891235357],[-66.70625305175781,62.01666641235346],[-66.90208435058582,62.01250076293945],[-67.1703109741211,62.07760620117182],[-67.2874984741211,62.06874847412115],[-67.35260009765614,62.15573120117193],[-67.63333129882807,62.15000152587896],[-67.90625,62.1875],[-68.58958435058588,62.25624847412115],[-68.71875,62.320835113525504],[-69.199478149414,62.43593978881836],[-69.375,62.57083511352545],[-69.48542022705078,62.597915649414006],[-69.6083297729491,62.78749847412121],[-69.87083435058594,62.75208282470703],[-69.98542022705078,62.80833435058594],[-70.16041564941406,62.74375152587896],[-70.48176574707026,62.87448120117182],[-70.78958129882812,62.893749237060604],[-71.00416564941406,63.02083206176769],[-71.14375305175781,63.06041717529308],[-71.2421875,63.02656555175781],[-71.41458129882807,63.09583282470709],[-71.61666870117176,63.131248474121094],[-71.78906249999994,63.323440551757926],[-72.02291870117182,63.439582824707145],[-71.62291717529297,63.408332824707145],[-71.35990142822266,63.52030944824213],[-71.51457977294922,63.57916641235346],[-71.66926574707031,63.744274139404354],[-71.96041870117188,63.733333587646484],[-72.03489685058594,63.677604675293026],[-72.18541717529291,63.666667938232536],[-72.324478149414,63.73176956176758],[-72.1937484741211,63.83958435058605],[-72.29792022705078,63.88958358764654],[-72.3854141235351,63.77083206176769],[-72.59999847412104,63.86875152587902],[-72.62708282470697,63.93958282470703],[-72.78073120117188,64.01093292236328],[-72.92500305175776,64.01249694824224],[-72.89739990234375,64.15573120117193],[-73.04582977294916,64.19791412353521],[-73.1500015258789,64.28333282470709],[-73.37083435058588,64.26667022705072],[-73.50468444824219,64.3526000976563],[-73.63541412353516,64.3187484741211],[-73.6624984741211,64.45207977294922],[-73.94426727294916,64.40781402587885],[-74.0875015258789,64.3249969482423],[-74.090103149414,64.68385314941406],[-74.23332977294916,64.56874847412121],[-74.36875152587885,64.56874847412121],[-74.63957977294922,64.68541717529303],[-74.54792022705078,64.84166717529303],[-74.62031555175781,64.9036483764649],[-74.69999694824219,64.68125152587896],[-74.47343444824219,64.57447814941418],[-74.64583587646484,64.41041564941412],[-74.7750015258789,64.37708282470714],[-75.12291717529291,64.46041870117199],[-75.19739532470697,64.44010162353516],[-75.44583129882807,64.53125],[-75.71406555175781,64.5796890258789],[-75.81458282470703,64.3645858764649],[-75.98542022705072,64.40625000000011],[-76.10208129882807,64.38541412353521],[-76.28333282470703,64.27916717529303],[-76.48906707763666,64.27135467529303],[-76.5458297729491,64.30416870117193],[-76.82291412353516,64.23542022705078],[-77.121353149414,64.29740142822266],[-77.35832977294916,64.23750305175781],[-77.41301727294922,64.33281707763683],[-77.86823272705078,64.35676574707037],[-78.06874847412104,64.535415649414],[-78.17708587646479,64.57083129882824],[-78.1796875,64.75676727294928],[-78.07551574707026,64.81718444824219],[-78.1473999023437,64.94947814941418],[-77.95833587646484,65.04582977294922],[-77.7604141235351,65.08125305175793],[-77.59999847412104,65.14375305175787],[-77.48542022705078,65.13333129882824],[-77.3125,65.20207977294922],[-77.50364685058594,65.30677032470703],[-77.3375015258789,65.4749984741211],[-77.17082977294922,65.46666717529303],[-77.09323120117182,65.40885162353516],[-76.80625152587885,65.43125152587902],[-76.48124694824213,65.36458587646484],[-76.11458587646484,65.26875305175793],[-75.9375,65.3249969482423],[-75.47864532470697,65.28697967529303],[-75.25624847412104,65.25208282470709],[-75.11510467529291,65.27552032470703],[-75.10884857177734,65.39323425292974],[-74.785415649414,65.38124847412115],[-74.7203140258789,65.44322967529303],[-74.63176727294922,65.3411483764649],[-74.5250015258789,65.3333358764649],[-74.3671875,65.40052032470709],[-74.34583282470703,65.48332977294933],[-74.22916412353504,65.48332977294933],[-74.14167022705078,65.54582977294928],[-74.01667022705072,65.51041412353527],[-73.816665649414,65.52916717529297],[-73.58541870117182,65.464584350586],[-73.5729141235351,65.55208587646484],[-73.75676727294922,65.76615142822271],[-74.21614837646484,65.94218444824224],[-74.41614532470697,66.0775985717774],[-74.3828125,66.22031402587902],[-73.96302032470703,66.34843444824224],[-73.74791717529291,66.45833587646513],[-73.44322967529291,66.57865142822271],[-73.2036514282226,66.70156097412121],[-73.04166412353516,66.72291564941418],[-72.42708587646479,66.66041564941406],[-72.22499847412104,66.67916870117193],[-71.98124694824213,66.65416717529303],[-71.57083129882812,66.56458282470714],[-71.38333129882812,66.55625152587908],[-71.2984390258789,66.51406097412121],[-71.22447967529297,66.36614990234398],[-71.12968444824219,66.3453140258789],[-71.19583129882812,66.01249694824219],[-71.10156249999994,65.96926879882818],[-70.83333587646484,66.16249847412115],[-70.63801574707031,66.21510314941412],[-70.61666870117188,66.32499694824224],[-70.43906402587885,66.24739837646496],[-70.32291412353504,66.15833282470714],[-70.23332977294916,66.16666412353521],[-70.07291412353516,66.25833129882812],[-69.79740142822266,66.18801879882818],[-69.52083587646484,66.18750000000011],[-69.35260009765625,66.39739990234375],[-69.55000305175781,66.42082977294939],[-69.88801574707026,66.32447814941418],[-69.90573120117188,66.45573425292986],[-69.79792022705067,66.4895858764649],[-69.6953125,66.4505157470706],[-69.55833435058588,66.47291564941406],[-69.53333282470697,66.58125305175781],[-69.67916870117182,66.59583282470709],[-69.77916717529297,66.66041564941406],[-69.9765625,66.7046890258789],[-70.34375,66.71041870117188],[-70.35051727294922,66.62239837646496],[-70.66458129882807,66.87916564941423],[-70.76041412353516,66.89375305175787],[-70.80052185058594,66.98698425292969],[-70.9401016235351,66.97447967529308],[-71.05364990234375,67.02864837646496],[-71.17916870117188,66.8499984741211],[-71.2750015258789,66.80625152587902],[-71.39583587646484,66.6312484741211],[-71.76667022705072,66.68125152587896],[-71.81093597412098,66.65052032470703],[-72.14583587646479,66.69374847412121],[-72.59739685058588,66.68801879882824],[-72.98750305175781,66.74166870117188],[-73.02291870117188,66.82707977294916],[-72.86302185058588,66.92760467529291],[-72.81041717529297,67.04582977294933],[-72.64791870117188,67.08958435058594],[-72.41249847412104,67.0875015258789],[-72.27760314941406,67.15468597412115],[-72.2437515258789,67.25],[-72.35468292236322,67.37448120117199],[-72.49791717529297,67.62708282470703],[-72.6390609741211,67.6630172729495],[-72.62291717529297,67.79166412353516],[-72.6979141235351,67.88124847412121],[-72.84374999999994,67.84583282470703],[-72.92656707763672,67.94947814941412],[-72.90676879882807,68.06614685058594],[-73.00051879882807,68.23906707763683],[-73.14791870117188,68.214584350586],[-73.24999999999994,68.29166412353521],[-73.375,68.24791717529297],[-73.80208587646479,68.32083129882818],[-73.91666412353516,68.43333435058616],[-73.70833587646479,68.62291717529297],[-73.86250305175781,68.70833587646484],[-74.17082977294922,68.73332977294922],[-73.9000015258789,68.57083129882812],[-74.097915649414,68.52500152587885],[-74.3062515258789,68.53749847412115],[-74.48958587646479,68.65416717529297],[-74.81463623046875,68.78126525878912],[-74.85208129882807,68.92292022705078],[-74.79792022705072,69.07917022705084],[-74.95573425292963,69.0494842529298],[-75.125,68.89167022705101],[-75.34583282470703,68.94791412353516],[-75.46041870117182,69.02500152587896],[-75.58125305175776,68.88541412353521],[-75.72083282470703,68.85208129882824],[-75.94999694824219,68.82083129882807],[-76.01249694824219,68.777084350586],[-76.32499694824219,68.69166564941418],[-76.57291412353504,68.67500305175787],[-76.7036514282226,68.72239685058605],[-76.53176879882812,68.83177185058594],[-76.62031555175781,68.87760162353521],[-76.59166717529291,69.03333282470703],[-76.40573120117182,68.86927032470714],[-76.08333587646484,68.84166717529297],[-76.0104141235351,68.78958129882812],[-75.92292022705078,68.85832977294928],[-75.75624847412104,68.85208129882824],[-75.75624847412104,68.92292022705078],[-75.51457977294922,69.10624694824241],[-75.5921859741211,69.23906707763683],[-75.75624847412104,69.31250000000011],[-76.20207977294922,69.42916870117193],[-76.33958435058594,69.41666412353527],[-76.70833587646473,69.56250000000006],[-77.06041717529291,69.63333129882824],[-76.88749694824213,69.81041717529297],[-77.30573272705078,69.83385467529297],[-77.48124694824219,69.8687515258789],[-77.50885009765614,69.77552032470703],[-77.63072967529286,69.7484359741211],[-77.6875,69.9749984741211],[-77.65260314941406,70.07968902587885],[-77.67916870117182,70.20417022705084],[-77.88749694824219,70.26667022705078],[-78.1724014282226,70.19843292236334],[-78.39323425292969,70.2130203247072],[-78.55625152587885,70.36250305175793],[-78.65416717529297,70.33750152587919],[-78.76041412353516,70.43958282470714],[-78.89739990234364,70.4151000976563],[-79.14167022705078,70.51249694824219],[-79.21458435058588,70.41874694824224],[-79.34999847412104,70.53541564941406],[-79.56614685058594,70.39218902587896],[-79.32499694824213,70.36666870117193],[-79.10832977294916,70.30833435058605],[-79.01667022705072,70.34583282470726],[-78.74635314941406,70.17240142822266],[-78.65676879882807,69.9734344482423],[-78.83177185058588,69.89531707763695],[-79.46875,69.89167022705078],[-79.75572967529297,69.87760162353521],[-79.95207977294922,70.0250015258789],[-80.21875,70.0250015258789],[-80.28124999999994,69.99166870117193],[-80.5562515258789,70.05416870117188],[-81.0187530517577,70.06666564941418],[-81.0562515258789,70.09999847412115],[-81.38749694824219,70.09375000000011],[-81.71041870117182,70.13749694824219],[-81.69583129882807,70.07917022705078],[-81.433853149414,70.0286483764649],[-81.28333282470703,70.03541564941418],[-81.12448120117182,69.9359359741211],[-80.95885467529291,69.88281250000011],[-80.75051879882812,69.76301574707043],[-80.89375305175781,69.72708129882812],[-81.05781555175776,69.76301574707043],[-81.14843749999994,69.82656097412121],[-81.38489532470703,69.88385009765625],[-81.45625305175781,69.93125152587902],[-81.74791717529291,69.9770812988283],[-81.76197814941406,69.89218902587885],[-81.94166564941406,69.85416412353521],[-82.02291870117188,69.88541412353521],[-82.13176727294916,69.79531097412126],[-82.32499694824207,69.86458587646484],[-82.43958282470703,69.7874984741211],[-82.65208435058588,69.81041717529297],[-82.75,69.91666412353516],[-83.07083129882807,70.01667022705084],[-83.27291870117182,70.0229187011721],[-83.63749694824219,69.95833587646496],[-84.11042022705078,69.99166870117193],[-84.69999694824213,70.01041412353527],[-84.93958282470697,70.06666564941418],[-85.22760009765614,70.09010314941412],[-85.58541870117176,70.07499694824224],[-85.75833129882812,70],[-86.11042022705067,70.07707977294922],[-86.55573272705078,70.24427032470714],[-86.66093444824219,70.32759857177746],[-86.84375,70.32707977294939],[-86.9479141235351,70.38541412353527],[-86.99166870117188,70.28958129882818],[-87.23124694824213,70.30625152587902],[-87.2687530517577,70.37708282470703],[-87.4375,70.32707977294939],[-87.75,70.33333587646496],[-87.87708282470697,70.28958129882818],[-88.01093292236328,70.36614990234386],[-88.69166564941406,70.47499847412115],[-88.92916870117182,70.56458282470703],[-88.94322967529297,70.65468597412115],[-89.35832977294916,70.82291412353521],[-89.41666412353516,70.91458129882812],[-89.31458282470703,71.00416564941418],[-89.32083129882807,71.08333587646479],[-89.12291717529297,71.02291870117188],[-88.7375030517577,71.04582977294945],[-88.50833129882807,71.03541564941418],[-88.20833587646484,70.92708587646496],[-87.82917022705078,70.9499969482423],[-87.42708587646484,70.93541717529303],[-87.21458435058582,71.00208282470697],[-86.50833129882812,70.97916412353527],[-86.23124694824207,71.01041412353544],[-85.78125,71.1416702270509],[-85.32499694824219,71.17292022705107],[-85.1395797729491,71.1416702270509],[-85.09583282470703,71.19583129882824],[-84.92708587646479,71.191665649414],[-84.83958435058594,71.12500000000006],[-84.91666412353516,71.01875305175787],[-84.91041564941406,70.92916870117199],[-84.7874984741211,70.92708587646496],[-84.80885314941406,71.06093597412115],[-84.78489685058588,71.33385467529303],[-84.69999694824213,71.43958282470714],[-84.55833435058594,71.44166564941435],[-84.5484390258789,71.55156707763683],[-84.61927032470703,71.67448425292969],[-84.81666564941395,71.68333435058605],[-84.85832977294916,71.63333129882818],[-85.316665649414,71.68541717529303],[-85.45885467529291,71.7578125],[-85.5562515258789,71.90000152587919],[-85.78541564941406,71.96041870117193],[-85.75833129882812,72.04374694824219],[-85.50989532470703,72.06614685058605],[-85.4437484741211,72.23958587646484],[-85.31041717529297,72.26875305175776],[-84.97708129882812,72.25208282470709],[-84.8687515258789,72.37083435058594],[-84.95833587646484,72.42292022705078],[-85.07291412353504,72.37708282470697],[-85.3375015258789,72.40625000000011],[-85.53124999999989,72.47083282470709],[-85.7036514282226,72.65156555175798],[-85.68073272705078,72.80573272705078],[-85.59375,72.96666717529297],[-85.316665649414,72.97708129882841],[-84.9375,72.89791870117193],[-84.53125,72.84583282470709],[-84.54582977294922,72.89583587646496],[-84.77708435058582,72.92500305175787],[-84.90052032470703,72.97239685058594],[-85.15624999999994,73.01041412353521],[-85.535415649414,73.02708435058605],[-85.41249847412104,73.13957977294928],[-85.22916412353516,73.05625152587902],[-85.13749694824219,73.1458358764649],[-84.8375015258789,73.08750152587896],[-84.22708129882807,73.05000305175776],[-84.24791717529297,73.08541870117216],[-84.82499694824219,73.15416717529297],[-85.17448425292957,73.22968292236345],[-85.13489532470697,73.3078155517581],[-84.77708435058582,73.38749694824224],[-84.63749694824219,73.2937469482423],[-84.60832977294922,73.40625000000011],[-84.15208435058594,73.48124694824213],[-83.85832977294922,73.44583129882812],[-83.83333587646484,73.53958129882824],[-83.17916870117182,73.66458129882812],[-83.0374984741211,73.64375305175776],[-82.84999847412098,73.73542022705084],[-82.2604141235351,73.722915649414],[-81.9598999023437,73.73384857177734]]],[[[-105.4703140258789,73.77135467529291],[-105.08333587646484,73.74791717529297],[-104.74583435058594,73.63333129882812],[-104.58958435058594,73.60832977294922],[-104.47916412353516,73.52500152587913],[-104.54531097412104,73.3057327270509],[-104.92656707763666,73.09114837646496],[-104.93801879882807,73.02760314941412],[-105.21458435058588,72.93958282470703],[-105.26249694824219,72.86458587646496],[-105.5062484741211,72.98124694824224],[-105.73750305175776,73.04166412353516],[-105.88333129882812,73.16041564941418],[-106.05000305175776,73.18541717529291],[-106.06249999999994,73.28333282470703],[-106.6666641235351,73.43125152587902],[-106.71875,73.54374694824224],[-106.68333435058588,73.6624984741211],[-106.51041412353516,73.71666717529297],[-106.14375305175776,73.73542022705084],[-105.6979141235351,73.73332977294928],[-105.4703140258789,73.77135467529291]]],[[[-80.7036514282226,73.77552032470714],[-80.43958282470692,73.76667022705084],[-80.11458587646484,73.6999969482423],[-80.0062484741211,73.73542022705084],[-79.89167022705072,73.69583129882807],[-79.24791717529297,73.63541412353516],[-78.92500305175781,73.66041564941406],[-78.14167022705078,73.67082977294933],[-77.88541412353516,73.61250305175781],[-77.46875,73.56041717529314],[-77.21041870117182,73.51041412353527],[-77.0609359741211,73.42031097412115],[-77.01457977294922,73.3375015258789],[-76.78335571289057,73.3249969482423],[-76.57707977294916,73.22916412353516],[-76.6171875,73.1317672729495],[-76.31666564941406,73.09791564941406],[-76.34218597412104,72.97239685058594],[-76.06822967529286,72.9296875],[-76.10624694824213,72.85832977294922],[-76.26249694824219,72.82291412353521],[-76.58958435058588,72.82083129882818],[-76.98542022705078,72.83958435058605],[-77.60832977294922,72.90000152587896],[-78.24583435058588,72.89583587646496],[-78.72708129882812,72.83541870117182],[-78.98332977294922,72.77708435058594],[-79.26041412353516,72.74375152587913],[-79.472915649414,72.74791717529297],[-79.99166870117188,72.86666870117199],[-80.16406249999994,73.05989837646496],[-80.10468292236328,73.18593597412138],[-80.21926879882807,73.24635314941412],[-80.35416412353516,73.23958587646479],[-80.81666564941395,73.2874984741211],[-80.91041564941395,73.38124847412138],[-80.82083129882807,73.50416564941406],[-80.847915649414,73.62291717529308],[-80.7036514282226,73.77552032470714]]],[[[-86.15573120117188,73.86093902587896],[-85.58073425292963,73.81926727294922],[-85.09166717529291,73.81250000000028],[-84.91458129882807,73.7750015258789],[-84.93333435058594,73.66666412353516],[-85.20989990234375,73.60364532470732],[-85.86458587646484,73.39375305175781],[-86.13333129882812,73.24166870117199],[-86.39791870117182,73.00000000000011],[-86.6828155517577,72.85781097412132],[-86.74948120117188,72.7234344482423],[-86.69999694824219,72.65833282470709],[-86.44999694824213,72.55416870117193],[-86.25885009765625,72.44635009765625],[-86.4515609741211,72.21406555175781],[-86.38957977294922,72.01249694824224],[-86.1338500976562,71.7984390258789],[-85.7109375,71.63906097412115],[-85.6265640258789,71.58385467529297],[-85.1875,71.43958282470714],[-85.03958129882812,71.44583129882818],[-84.85624694824219,71.39791870117188],[-84.82343292236317,71.27552032470709],[-85.14375305175776,71.30208587646496],[-85.27083587646484,71.24791717529308],[-85.40208435058594,71.25833129882818],[-85.53333282470697,71.1770858764649],[-85.7062530517577,71.21041870117188],[-85.94791412353504,71.18541717529297],[-86.18177032470703,71.07551574707026],[-86.39791870117182,71.03749847412138],[-86.96458435058594,71],[-87.33125305175781,71.05208587646484],[-87.74010467529297,71.14323425292986],[-87.83333587646484,71.26457977294922],[-88.07707977294916,71.22499847412121],[-88.80208587646484,71.25833129882818],[-89.78333282470703,71.33333587646496],[-89.95365142822266,71.43177032470714],[-90,71.59999847412121],[-89.875,71.80000305175787],[-89.97239685058588,71.94843292236334],[-89.9437484741211,72.08541870117199],[-89.816665649414,72.14375305175787],[-90.01457977294922,72.33541870117193],[-89.89375305175781,72.44999694824219],[-89.78333282470703,72.48958587646496],[-89.75208282470697,72.62083435058605],[-89.59114837646484,72.7025985717774],[-89.53124999999989,72.78541564941418],[-89.43333435058594,72.78124999999994],[-89.30573272705078,72.93073272705107],[-89.222915649414,73.12916564941423],[-88.97083282470697,73.2916641235351],[-88.86042022705072,73.308334350586],[-88.63957977294922,73.43958282470709],[-88.47083282470697,73.464584350586],[-88.2750015258789,73.57499694824224],[-87.83958435058588,73.68958282470703],[-87.22708129882812,73.79166412353521],[-87.10832977294916,73.79166412353521],[-86.64375305175781,73.8499984741211],[-86.15573120117188,73.86093902587896]]],[[[-99.92448425292957,73.95051574707031],[-99.77708435058594,73.86875152587896],[-99.47083282470703,73.82917022705078],[-99.22291564941406,73.7437515258789],[-98.62708282470697,73.78958129882818],[-98.24166870117188,73.80625152587902],[-97.95417022705072,73.84375000000006],[-97.77916717529291,73.91458129882824],[-97.46874999999994,73.86250305175793],[-97.19583129882801,73.85832977294916],[-96.941665649414,73.74166870117188],[-97.04166412353516,73.60832977294922],[-97.22708129882807,73.55416870117188],[-97.4250030517577,73.58958435058588],[-97.40833282470703,73.5],[-97.2562484741211,73.3687515258789],[-97.62291717529297,73.32917022705084],[-97.84114837646479,73.28073120117216],[-97.94218444824219,73.18801879882818],[-98.15416717529291,73.12708282470703],[-98.4312515258789,73.00416564941435],[-98.410415649414,72.87291717529303],[-98.28125,72.97291564941418],[-97.93281555175776,73.04114532470709],[-97.5250015258789,73.01667022705078],[-97.28958129882801,72.97291564941418],[-97.2562484741211,72.85416412353516],[-96.89323425292957,72.68698120117199],[-96.68749999999994,72.714584350586],[-96.48958587646484,72.66666412353516],[-96.3125,72.42082977294922],[-96.43958282470703,72.3687515258789],[-96.6500015258789,72.34375],[-96.63333129882807,72.26875305175776],[-96.51667022705078,72.20625305175781],[-96.48750305175776,72.03541564941412],[-96.50833129882801,71.90416717529303],[-96.61458587646484,71.81041717529291],[-96.86666870117188,71.8062515258789],[-96.86458587646479,71.72708129882812],[-97.04740142822266,71.7171859741211],[-97.38749694824213,71.62500000000011],[-97.6041641235351,71.62083435058611],[-97.75833129882812,71.68125152587902],[-97.9703140258789,71.70781707763672],[-98.23176574707031,71.68177032470709],[-98.29582977294922,71.64167022705078],[-98.05885314941406,71.51718902587896],[-98.19322967529297,71.43698120117188],[-98.4921875,71.30885314941429],[-98.72551727294916,71.26927185058605],[-98.93541717529291,71.29374694824219],[-99.26406097412104,71.39115142822277],[-99.4000015258789,71.59583282470697],[-99.55833435058588,71.62500000000011],[-99.70625305175776,71.81458282470714],[-99.88124847412104,71.86250305175781],[-100.08958435058594,71.87291717529325],[-100.13957977294922,71.9375],[-100.29114532470697,71.97343444824247],[-100.49791717529291,72.1374969482423],[-100.6171875,72.1890640258789],[-101.01197814941406,72.20156097412121],[-101.04792022705078,72.27916717529303],[-101.1859359741211,72.3369827270509],[-101.4625015258789,72.30208587646496],[-101.64791870117188,72.3291702270509],[-101.75468444824219,72.40573120117188],[-101.91249847412104,72.43958282470709],[-102.01249694824219,72.5208358764649],[-102.27916717529291,72.58541870117188],[-102.63697814941406,72.76197814941418],[-102.6453170776366,72.86198425292969],[-102.56458282470703,72.99166870117188],[-102.38749694824219,73.09375000000023],[-102.129165649414,73.08333587646496],[-101.8854141235351,73.04166412353516],[-101.68541717529291,72.9124984741211],[-101.55468749999994,72.95365142822277],[-101.41874694824219,72.82083129882818],[-101.17082977294916,72.714584350586],[-100.98958587646484,72.75],[-100.65416717529297,72.76249694824224],[-100.60832977294916,72.79792022705101],[-100.33698272705078,72.78176879882841],[-100.38957977294916,72.92916870117193],[-100.26249694824219,72.96666717529297],[-100.19999694824213,72.8812484741211],[-100.10208129882812,72.90000152587896],[-100.26875305175776,73.16041564941418],[-100.46458435058594,73.1458358764649],[-100.58333587646484,73.28333282470703],[-100.96666717529297,73.27916717529303],[-101.04374694824219,73.3375015258789],[-101.28958129882812,73.36458587646484],[-101.29374694824213,73.40625000000011],[-101.53958129882812,73.46250152587919],[-101.44999694824219,73.56458282470714],[-101.2874984741211,73.55416870117188],[-101.23958587646479,73.60416412353521],[-100.85884857177734,73.59426879882818],[-100.72447967529297,73.49635314941406],[-100.60832977294916,73.4979171752932],[-100.59166717529291,73.60208129882818],[-100.90833282470703,73.62708282470709],[-101.07083129882812,73.75208282470714],[-100.97864532470697,73.81614685058605],[-100.73124694824219,73.82707977294922],[-100.56458282470697,73.86458587646496],[-100.34999847412104,73.82083129882835],[-99.9776000976562,73.78385162353521],[-99.96666717529297,73.84583282470709],[-100.22083282470703,73.83541870117199],[-100.25989532470703,73.92240142822277],[-99.92448425292957,73.95051574707031]]],[[[-97.70989990234375,74.12343597412121],[-97.64167022705072,74.04374694824219],[-98.09166717529297,73.8937530517581],[-98.41458129882812,73.84583282470709],[-98.85624694824213,73.81041717529308],[-99.09999847412104,73.81458282470709],[-99.35832977294922,73.86250305175793],[-99.4124984741211,73.9187469482423],[-99.004165649414,73.96458435058611],[-98.77031707763666,74.03697967529303],[-98.5250015258789,74.0374984741211],[-98.01249694824219,74.11250305175787],[-97.70989990234375,74.12343597412121]]],[[[-93.49531555175781,74.17760467529308],[-93.02708435058594,74.15416717529291],[-92.5875015258789,74.11042022705084],[-92.30416870117188,74.0374984741211],[-92.26667022705067,73.95207977294928],[-92.14583587646479,73.94791412353521],[-91.91458129882812,74.01875305175798],[-91.51457977294916,74.02916717529303],[-91.1312484741211,74.01457977294922],[-90.33958435058582,73.91249847412104],[-90.34010314941406,73.80052185058605],[-90.45677185058588,73.71926879882824],[-90.9286499023437,73.4828109741211],[-91.19531249999989,73.32656097412104],[-91.35468292236328,73.19010162353521],[-91.79114532470697,72.87968444824236],[-92.01927185058588,72.7671890258789],[-92.34375,72.70833587646513],[-93.3203125,72.82447814941412],[-93.55416870117188,72.78541564941418],[-93.93541717529297,72.77916717529314],[-93.92708587646479,72.70207977294933],[-93.57499694824213,72.59375000000011],[-93.43801879882812,72.45573425292969],[-93.63593292236322,72.33802032470703],[-93.82083129882812,72.31458282470703],[-94.02135467529297,72.09426879882812],[-94.24166870117188,72.01667022705101],[-94.45417022705078,72.02708435058588],[-95.14375305175781,71.97499847412121],[-95.19791412353516,72.25624847412115],[-95.14218902587879,72.4828109741211],[-95.30416870117188,72.53749847412104],[-95.3541641235351,72.64791870117199],[-95.58125305175776,72.69583129882812],[-95.66874694824219,72.80208587646484],[-95.61666870117188,72.94791412353527],[-95.64375305175781,73.13124847412104],[-95.5546875,73.17656707763678],[-95.6109390258789,73.5401000976563],[-95.67916870117182,73.63541412353516],[-95.62708282470703,73.74166870117188],[-95.28749847412104,73.77916717529308],[-95.1312484741211,73.70207977294933],[-94.9437484741211,73.73332977294928],[-95.29114532470697,73.88176727294933],[-95.27708435058594,73.99583435058605],[-94.6666641235351,74.09166717529297],[-94.1624984741211,74.13749694824224],[-93.89167022705078,74.13749694824224],[-93.49531555175781,74.17760467529308]]],[[[-97.41822814941395,74.62968444824219],[-97.37916564941406,74.51249694824247],[-97.62708282470692,74.464584350586],[-97.65208435058594,74.59166717529308],[-97.41822814941395,74.62968444824219]]],[[[-95.61183929443354,74.65047454833984],[-95.32291412353504,74.59375000000028],[-95.23332977294916,74.50624847412121],[-95.48332977294922,74.50208282470703],[-95.83125305175781,74.56874847412115],[-95.61183929443354,74.65047454833984]]],[[[-104.1161499023437,75.456771850586],[-103.80885314941406,75.36614990234375],[-103.6640625,75.23698425292969],[-103.6354141235351,75.14791870117188],[-103.85208129882807,75.0604171752932],[-104.43958282470703,75.03333282470726],[-104.71666717529291,75.0749969482423],[-104.777603149414,75.17968750000028],[-104.67031097412104,75.35156250000011],[-104.39583587646484,75.4499969482423],[-104.1161499023437,75.456771850586]]],[[[-94.89948272705067,75.6400985717774],[-94.54582977294916,75.62291717529303],[-94.3062515258789,75.58958435058605],[-93.8499984741211,75.40208435058622],[-93.67082977294916,75.36458587646484],[-93.51249694824219,75.0625],[-93.39218902587885,74.91614532470697],[-93.48332977294922,74.6729202270509],[-93.6875,74.63957977294916],[-94.3062515258789,74.65000152587896],[-94.65625,74.6312484741211],[-95.02083587646484,74.6750030517581],[-95.06666564941406,74.75416564941418],[-95.2604141235351,74.80416870117199],[-95.70833587646484,74.84583282470703],[-95.8187484741211,74.82499694824219],[-96.13333129882807,74.92082977294928],[-96.347915649414,74.91041564941418],[-96.37083435058594,75.01041412353516],[-96.51667022705078,75.01249694824219],[-96.59739685058588,75.06926727294933],[-96.34375,75.22708129882812],[-96.07499694824219,75.25208282470703],[-95.95833587646479,75.38749694824219],[-95.77916717529297,75.51667022705084],[-95.62656402587879,75.52760314941418],[-95.33125305175781,75.59583282470709],[-95.25624847412098,75.58750152587902],[-94.89948272705067,75.6400985717774]]],[[[-96.30989837646484,75.65676879882807],[-95.91093444824213,75.57759857177746],[-96.12291717529291,75.46041870117193],[-96.23124694824219,75.46250152587896],[-96.39167022705072,75.55833435058605],[-96.51823425292963,75.52343750000011],[-96.54374694824219,75.433334350586],[-96.84375,75.36042022705078],[-96.97551727294916,75.4453125],[-96.94791412353516,75.52083587646484],[-96.78958129882812,75.51457977294928],[-96.70207977294916,75.56250000000011],[-96.46458435058594,75.58541870117199],[-96.30989837646484,75.65676879882807]]],[[[-94.49114990234375,75.98593902587902],[-94.28749847412104,75.75833129882818],[-94.60624694824219,75.74791717529308],[-94.8062515258789,75.79582977294939],[-94.84374999999994,75.94999694824219],[-94.49114990234375,75.98593902587902]]],[[[-102.14115142822266,75.99218750000006],[-101.99791717529297,75.93750000000011],[-102.43489837646484,75.87448120117193],[-102.61042022705078,75.76875305175781],[-102.85884857177734,75.74843597412115],[-103.33333587646484,75.75416564941412],[-103.29792022705078,75.81458282470726],[-103.13749694824213,75.84375],[-103.06198120117188,75.90364837646484],[-102.72083282470697,75.94999694824219],[-102.14115142822266,75.99218750000006]]],[[[-102.40573120117182,76.09635162353521],[-102.51249694824219,76.00833129882812],[-103.34583282470703,75.91041564941418],[-103.38333129882807,75.85832977294933],[-103.70833587646484,75.84583282470703],[-103.81666564941406,75.96041870117182],[-103.51667022705072,75.97916412353516],[-102.84583282470703,76.07499694824247],[-102.40573120117182,76.09635162353521]]],[[[-78.94114685058588,76.11302185058611],[-78.86302185058594,76.0317687988283],[-79.17082977294922,75.96666717529308],[-79.44166564941406,75.82083129882812],[-79.5562515258789,75.8187484741211],[-79.55208587646479,75.94999694824219],[-79.285415649414,76.0062484741211],[-79.11250305175781,76.10832977294928],[-78.94114685058588,76.11302185058611]]],[[[-102.86823272705078,76.32135009765625],[-102.65208435058588,76.30000305175804],[-102.58125305175781,76.16249847412115],[-102.67500305175781,76.11458587646484],[-103.19583129882812,76.0520858764649],[-103.88124847412104,76.0437469482423],[-104.44374847412104,76.12500000000011],[-104.29740142822266,76.22031402587896],[-103.8541641235351,76.2375030517581],[-103.15000152587879,76.31250000000011],[-102.86823272705078,76.32135009765625]]],[[[-88.5640640258789,76.5921859741211],[-88.49635314941406,76.54843902587902],[-88.625,76.39583587646496],[-88.63333129882807,76.58750152587919],[-88.5640640258789,76.5921859741211]]],[[[-104.12031555175781,76.67760467529297],[-103.66249847412104,76.59166717529303],[-103.59323120117182,76.53385162353521],[-103.20625305175776,76.47499847412121],[-103.02343749999994,76.41510009765636],[-103.36666870117182,76.33541870117205],[-103.79166412353516,76.31250000000011],[-104.03958129882807,76.36042022705078],[-104.28958129882812,76.36042022705078],[-104.38333129882812,76.47083282470697],[-104.64167022705078,76.54792022705078],[-104.65156555175781,76.60572814941406],[-104.36458587646479,76.66874694824224],[-104.12031555175781,76.67760467529297]]],[[[-98.68073272705078,76.68801879882841],[-98.46875,76.6812515258789],[-98.24166870117188,76.5999984741211],[-97.92292022705078,76.56666564941412],[-97.89583587646484,76.51875305175781],[-97.68333435058588,76.49166870117188],[-97.74531555175776,76.34843444824219],[-97.722915649414,76.2708358764649],[-97.47291564941406,76.17708587646496],[-97.5609359741211,76.09114837646507],[-97.62864685058594,75.94739532470732],[-97.58541870117188,75.86250305175787],[-97.73542022705067,75.72916412353521],[-97.36666870117188,75.69166564941418],[-97.41822814941395,75.61093902587919],[-97.38333129882812,75.45207977294933],[-97.69166564941406,75.56874847412115],[-97.83541870117188,75.46041870117193],[-97.90989685058594,75.51823425292974],[-97.9749984741211,75.27500152587896],[-97.82707977294922,75.2624969482423],[-97.61458587646479,75.1187515258789],[-97.85208129882812,75.10832977294928],[-97.95833587646484,75.027084350586],[-98.3270797729491,75.027084350586],[-98.45207977294916,75.00208282470709],[-98.80000305175776,74.99583435058605],[-98.90208435058594,75.05625152587896],[-98.99791717529297,74.98750305175781],[-99.34791564941406,74.98958587646479],[-99.4124984741211,75.0749969482423],[-99.55416870117182,74.97499847412115],[-100.15416717529297,74.99375152587902],[-100.35832977294922,75.02500152587919],[-100.4375,75.22708129882812],[-100.26667022705078,75.22916412353516],[-100.22083282470703,75.31249999999994],[-100.49791717529291,75.29374694824247],[-100.53333282470703,75.44166564941406],[-100.01875305175781,75.46666717529297],[-99.85208129882807,75.58333587646479],[-99.8062515258789,75.6812515258789],[-100.5625,75.6458358764649],[-100.88541412353516,75.60832977294916],[-101.04582977294922,75.620834350586],[-101.2515640258789,75.58906555175776],[-101.52708435058594,75.58958435058605],[-102.07499694824213,75.54582977294922],[-102.41458129882812,75.54166412353521],[-102.61250305175776,75.49583435058594],[-102.73542022705072,75.53749847412115],[-102.67292022705078,75.6770858764649],[-102.34791564941406,75.73542022705078],[-102.28541564941406,75.86250305175787],[-101.85208129882812,75.90624999999994],[-101.6875,75.84999847412126],[-101.32707977294922,75.78333282470709],[-101.3375015258789,75.87083435058594],[-101.5104141235351,75.8645858764649],[-101.56458282470697,75.99166870117199],[-101.66666412353516,75.97708129882812],[-101.79374694824213,76.2249984741211],[-102.06249999999994,76.2291641235351],[-101.90208435058588,76.4499969482423],[-101.48542022705078,76.44374847412104],[-101.29582977294922,76.4166641235351],[-101.09166717529291,76.33333587646484],[-101.09166717529291,76.2624969482423],[-100.51249694824213,76.12500000000011],[-100.31666564941406,76.05833435058594],[-100.08489990234375,75.92448425292974],[-99.82917022705078,75.94374847412115],[-100.06718444824219,76.0546875],[-100.15625,76.18958282470709],[-100.30000305175781,76.22083282470703],[-100.32707977294922,76.28541564941418],[-99.96250152587885,76.27708435058594],[-100.02500152587879,76.35208129882818],[-100.25833129882807,76.38957977294916],[-100.69166564941406,76.37708282470709],[-100.8229141235351,76.433334350586],[-100.80416870117188,76.52083587646484],[-100.5999984741211,76.58750152587919],[-100.27291870117188,76.63957977294933],[-99.91666412353504,76.6104202270509],[-99.67292022705078,76.63124847412126],[-99.31458282470697,76.51041412353521],[-99.24791717529291,76.43958282470703],[-99.09166717529297,76.45417022705084],[-98.875,76.43125152587896],[-98.94999694824213,76.57083129882812],[-98.70207977294922,76.58750152587919],[-98.68073272705078,76.68801879882841]]],[[[-100.574478149414,76.76509857177746],[-100.63124847412104,76.65625],[-101.2562484741211,76.57291412353516],[-101.4520797729491,76.65625],[-101.05000305175776,76.68749999999994],[-101.0062484741211,76.72499847412115],[-100.574478149414,76.76509857177746]]],[[[-89.99948120117182,76.84010314941423],[-89.70833587646479,76.75000000000006],[-89.8270797729491,76.66874694824224],[-89.94999694824213,76.47083282470697],[-90.08541870117182,76.48332977294928],[-90.59583282470692,76.72916412353521],[-90.47291564941406,76.80208587646496],[-89.99948120117182,76.84010314941423]]],[[[-109.83056640624994,74.87870025634771],[-109.83134460449207,75.53290557861334],[-109.855728149414,75.53246307373047],[-109.761978149414,75.53697967529308],[-109.68541717529291,75.52083587646484],[-109.56614685058594,75.52864837646484],[-109.42500305175781,75.50833129882824],[-109.20625305175781,75.51041412353521],[-108.90833282470703,75.47708129882824],[-108.9124984741211,75.55625152587885],[-108.7874984741211,75.61458587646496],[-109.01927185058588,75.74843597412115],[-109.41874694824219,75.80625152587919],[-109.6500015258789,75.808334350586],[-109.64167022705078,75.875],[-109.83241271972656,75.86666870117193],[-109.83290100097656,75.92723083496088],[-109.61093902587885,75.95365142822271],[-109.3687515258789,76.03125],[-109.33177185058594,76.13072967529308],[-109.70625305175781,76.19791412353516],[-109.83451080322266,76.24791717529297],[-109.83528900146484,76.48958587646484],[-109.83529663085938,76.4925842285158],[-109.848403930664,76.5005569458009],[-109.69947814941406,76.60156250000006],[-109.61042022705078,76.58541870117199],[-109.46874999999994,76.72708129882818],[-109.31458282470703,76.80000305175793],[-108.65625,76.83541870117193],[-108.52083587646484,76.76667022705095],[-108.49791717529286,76.660415649414],[-108.55833435058594,76.54374694824219],[-108.56458282470692,76.4166641235351],[-108.2750015258789,76.39375305175793],[-108.16458129882807,76.30416870117188],[-108.34791564941406,76.18125152587902],[-108.40208435058594,76.0479202270509],[-108.13593292236328,76.04843902587896],[-107.99166870117188,76.07499694824247],[-107.7125015258789,76.04166412353527],[-107.69322967529297,75.96823120117199],[-107.91458129882812,75.88541412353527],[-107.86875152587885,75.79792022705072],[-107.72708129882812,75.88541412353527],[-107.41406249999994,75.91822814941418],[-107.15625,75.91249847412121],[-106.92292022705072,75.69583129882824],[-106.85416412353504,75.76667022705078],[-106.85832977294916,75.97916412353516],[-106.64531707763672,76.06406402587913],[-106.52291870117182,76.07083129882824],[-105.92916870117182,76.0166702270509],[-105.59166717529291,75.94166564941412],[-105.45781707763672,75.871353149414],[-105.35468292236322,75.6848983764649],[-105.47135162353516,75.55052185058605],[-105.625,75.53541564941418],[-105.69166564941406,75.42500305175793],[-105.64375305175776,75.36042022705078],[-105.84583282470697,75.285415649414],[-105.90781402587885,75.21093750000006],[-106.14167022705072,75.04582977294933],[-106.5,75.00208282470709],[-106.77864837646484,75.00468444824219],[-106.91249847412104,74.9312515258789],[-107.20833587646479,74.91249847412121],[-107.29374694824219,74.94374847412138],[-107.64583587646484,74.97291564941412],[-107.77500152587885,75.027084350586],[-107.99583435058594,75.01249694824219],[-108.1187515258789,74.9312515258789],[-108.38749694824219,74.92082977294928],[-108.51457977294916,74.96041870117188],[-108.5625,75.0479202270509],[-108.80833435058588,75.07707977294933],[-108.965103149414,75.00051879882812],[-109.254165649414,74.95625305175781],[-109.37916564941406,74.90208435058594],[-109.83056640624994,74.87870025634771]]],[[[-95.7015609741211,77.06926727294928],[-95.42292022705072,77.06041717529297],[-95.17500305175781,76.99375152587896],[-94.92082977294916,76.9749984741211],[-94.61250305175776,76.98124694824236],[-94.47291564941406,76.92500305175781],[-94.25833129882812,76.88957977294928],[-94.06458282470703,76.89167022705084],[-93.99791717529297,76.93750000000028],[-93.629165649414,76.90625000000011],[-93.2916641235351,76.75000000000006],[-93.23124694824219,76.65000152587913],[-93.42082977294922,76.45625305175787],[-93.12291717529297,76.58541870117199],[-92.84166717529297,76.61875152587896],[-92.63124847412104,76.59375000000006],[-92.12708282470703,76.61875152587896],[-91.95417022705078,76.66666412353527],[-91.46458435058594,76.69166564941418],[-90.98542022705078,76.65208435058594],[-90.8187484741211,76.58125305175793],[-90.59583282470692,76.56666564941412],[-90.65833282470703,76.4499969482423],[-90.95833587646484,76.48332977294928],[-91.15416717529297,76.47916412353544],[-91.38749694824219,76.51875305175781],[-91.41666412353504,76.46041870117193],[-91.01875305175776,76.4520797729495],[-90.92500305175781,76.42916870117193],[-90.34374999999994,76.39791870117199],[-90.01249694824219,76.36458587646479],[-89.77500152587885,76.32083129882818],[-89.30208587646484,76.30208587646484],[-89.21875,76.22291564941406],[-89.43749999999989,76.17708587646496],[-89.88749694824219,76.18541717529303],[-90.06458282470703,76.17082977294922],[-90.45625305175781,76.19583129882812],[-90.8187484741211,76.16874694824219],[-90.81666564941406,76.02291870117193],[-91.08541870117182,76.02500152587896],[-90.91666412353516,75.91666412353521],[-90.77916717529297,76.00000000000006],[-90.71926879882812,75.95781707763672],[-90.44999694824213,75.95625305175781],[-90.0625,75.98124694824219],[-89.7125015258789,75.9000015258789],[-89.79374694824219,75.79374694824219],[-89.38749694824213,75.82291412353533],[-89.22916412353516,75.67500305175787],[-89.1546859741211,75.50468444824224],[-88.8812484741211,75.4229202270509],[-88.70625305175781,75.47708129882824],[-88.79948425292963,75.58593750000006],[-88.60624694824213,75.652084350586],[-88.58541870117188,75.58750152587902],[-88.3812484741211,75.55000305175781],[-88.19583129882812,75.46875],[-88.03958129882807,75.5250015258789],[-87.82499694824213,75.55625152587885],[-87.58125305175776,75.48750305175787],[-87.42240142822266,75.60156250000006],[-87.32707977294916,75.620834350586],[-87.13333129882801,75.58125305175798],[-87.03958129882801,75.52291870117188],[-86.77864837646479,75.47135162353527],[-86.5374984741211,75.4583358764649],[-86.46041870117176,75.36250305175781],[-86.34166717529291,75.39375305175776],[-85.88333129882807,75.40416717529303],[-85.88957977294922,75.50208282470697],[-85.5729141235351,75.5999984741211],[-85.51875305175776,75.56250000000011],[-85.28125,75.56250000000011],[-85.07291412353504,75.66249847412104],[-84.6979141235351,75.63333129882812],[-84.660415649414,75.68958282470697],[-84.32707977294922,75.70417022705084],[-84.22499847412104,75.76249694824219],[-84.06041717529297,75.75000000000011],[-83.96458435058594,75.82083129882812],[-83.49999999999994,75.78125000000006],[-83.36042022705078,75.72916412353521],[-83.14375305175781,75.76667022705078],[-82.93958282470703,75.74583435058605],[-82.66458129882807,75.808334350586],[-82.36093902587885,75.82865142822266],[-82.08333587646473,75.808334350586],[-81.37083435058588,75.78749847412132],[-81.31458282470692,75.6374969482423],[-80.92292022705078,75.62291717529303],[-80.53333282470692,75.65416717529297],[-80.2437515258789,75.62500000000006],[-80.09791564941406,75.58125305175798],[-80.10208129882801,75.50000000000017],[-79.86042022705067,75.4541702270509],[-79.71458435058588,75.46666717529297],[-79.64375305175781,75.39375305175776],[-79.51249694824213,75.38749694824219],[-79.63957977294922,75.17500305175781],[-79.84583282470703,75.17082977294922],[-80.00833129882801,75.00208282470709],[-79.64583587646479,75.03333282470726],[-79.52552032470703,75.00781250000006],[-79.35624694824219,74.88124847412104],[-79.97083282470697,74.81250000000006],[-80.13124847412104,74.83333587646496],[-80.2213516235351,74.60468292236322],[-80.34583282470697,74.57707977294922],[-80.82499694824219,74.56250000000011],[-81.22708129882812,74.58750152587902],[-81.74999999999994,74.46875],[-82.35832977294922,74.52708435058594],[-82.43489837646484,74.57343292236328],[-82.55208587646484,74.52291870117188],[-82.79166412353516,74.52916717529297],[-83.08073425292969,74.6234359741211],[-83.1187515258789,74.81041717529303],[-83.29792022705072,74.82917022705072],[-83.53749847412098,74.91666412353544],[-83.54114532470703,74.81093597412132],[-83.31926727294916,74.75468444824224],[-83.56458282470692,74.55833435058588],[-84.25,74.50624847412121],[-84.63749694824219,74.50208282470703],[-84.71666717529297,74.52708435058594],[-84.90833282470703,74.5],[-85.05468749999994,74.5171890258789],[-85.21875,74.48750305175787],[-85.49114990234375,74.54634857177734],[-85.56249999999994,74.50208282470703],[-86.12708282470697,74.47916412353527],[-86.17916870117182,74.57917022705078],[-86.30000305175776,74.49166870117193],[-86.63541412353504,74.464584350586],[-87.16666412353516,74.46041870117193],[-87.43541717529291,74.4812469482423],[-87.58958435058594,74.4541702270509],[-88.543228149414,74.49635314941423],[-88.55364990234375,74.62656402587902],[-88.4224014282226,74.73906707763678],[-88.49583435058588,74.84166717529303],[-88.73124694824219,74.79582977294922],[-88.87291717529291,74.652084350586],[-89.02864837646479,74.75781250000011],[-89.11823272705078,74.62656402587902],[-89.26667022705072,74.57291412353521],[-89.63333129882812,74.53333282470714],[-89.98750305175781,74.53124999999994],[-90.37708282470703,74.59791564941412],[-90.62916564941406,74.61875152587902],[-90.7411499023437,74.66822814941406],[-90.87343597412104,74.84635162353533],[-91.30989837646484,74.65260314941406],[-91.59791564941406,74.65416717529303],[-91.72708129882801,74.72916412353521],[-91.87291717529297,74.6999969482423],[-92.03333282470703,74.77291870117205],[-92.05000305175781,74.96250152587885],[-92.15833282470692,74.98750305175781],[-92.24583435058594,75.13124847412121],[-92.40416717529291,75.16874694824219],[-92.46302032470697,75.2661514282226],[-92.4453125,75.4171829223634],[-92.24791717529297,75.53958129882818],[-92.09583282470697,75.56874847412115],[-92.03958129882807,75.6687469482423],[-92.15416717529297,75.88749694824224],[-92.41041564941406,75.93541717529308],[-92.61875152587885,76.0166702270509],[-92.68749999999994,76.14167022705078],[-92.78593444824213,76.20781707763689],[-92.96874999999994,76.2395858764649],[-93.10208129882807,76.36666870117199],[-93.33541870117182,76.36666870117199],[-93.63333129882812,76.29582977294928],[-93.88333129882807,76.2624969482423],[-94.19374847412104,76.28125000000017],[-94.61458587646479,76.27916717529297],[-94.67916870117182,76.3062515258789],[-94.99999999999989,76.24166870117193],[-95.22291564941406,76.36666870117199],[-95.82499694824213,76.39375305175793],[-96.10208129882812,76.48332977294928],[-96.05833435058594,76.58333587646496],[-96.26457977294922,76.63957977294933],[-96.40833282470703,76.63541412353527],[-96.54374694824219,76.69374847412121],[-96.89791870117188,76.70417022705101],[-96.89791870117188,76.8187484741211],[-96.65416717529297,76.76041412353516],[-96.69166564941406,76.87083435058594],[-96.82707977294922,76.85624694824247],[-96.80625152587885,76.98332977294916],[-96.37499999999994,76.98124694824236],[-96.35832977294922,77.0437469482423],[-95.7015609741211,77.06926727294928]]],[[[-91.04948425292963,77.25260162353527],[-90.89583587646479,77.25208282470697],[-90.86666870117182,77.13541412353516],[-91.03124999999994,77.13957977294922],[-91.04948425292963,77.25260162353527]]],[[[-85.16406249999994,77.58385467529303],[-84.99375152587885,77.57707977294933],[-84.85624694824219,77.48542022705101],[-85.11458587646479,77.45417022705084],[-85.16406249999994,77.58385467529303]]],[[[-90.84531402587879,77.66093444824224],[-90.72083282470697,77.63541412353527],[-90.29374694824219,77.62291717529297],[-89.73750305175776,77.46666717529314],[-89.71875,77.30625152587885],[-89.89375305175781,77.2312469482423],[-90.26875305175781,77.1999969482423],[-91.01457977294916,77.31874847412115],[-91.18958282470697,77.38749694824213],[-91.21406555175776,77.50364685058605],[-91.15416717529297,77.62083435058594],[-90.84531402587879,77.66093444824224]]],[[[-105.87031555175781,77.76718902587896],[-105.54582977294922,77.72916412353516],[-105.19999694824213,77.63124847412121],[-104.98958587646484,77.53125000000006],[-105.00833129882801,77.41458129882807],[-104.73124694824219,77.41041564941406],[-104.38333129882812,77.27291870117188],[-104.29374694824219,77.15625000000006],[-104.39791870117188,77.11875152587885],[-104.67500305175776,77.14167022705078],[-104.75624847412104,77.11458587646484],[-105.14583587646479,77.18125152587896],[-105.42864990234375,77.26301574707031],[-105.80625152587885,77.53541564941412],[-105.97708129882812,77.7666702270509],[-105.87031555175781,77.76718902587896]]],[[[-95.46614837646479,77.80677032470703],[-95.31926727294916,77.76718902587896],[-95.097915649414,77.75416564941429],[-94.95989990234375,77.7859344482423],[-94.26667022705078,77.78125000000023],[-93.88333129882807,77.74166870117199],[-93.66666412353504,77.78333282470703],[-93.23332977294922,77.73542022705078],[-93.32707977294922,77.64375305175787],[-93.49323272705078,77.55573272705072],[-93.47343444824213,77.47343444824224],[-93.94166564941406,77.441665649414],[-94.06249999999994,77.46458435058594],[-94.64375305175781,77.47291564941418],[-94.96458435058588,77.48958587646484],[-95.24791717529291,77.4625015258789],[-95.4375,77.47916412353521],[-95.89583587646484,77.47083282470714],[-96.0770797729491,77.50000000000011],[-96.2349014282226,77.56406402587919],[-96.23906707763672,77.69531250000011],[-95.93125152587885,77.76041412353516],[-95.60624694824207,77.77291870117216],[-95.46614837646479,77.80677032470703]]],[[[-101.74948120117188,77.90885162353538],[-101.40000152587885,77.87500000000011],[-101.12083435058588,77.7666702270509],[-101.160415649414,77.72291564941412],[-101.52083587646479,77.73124694824219],[-101.82291412353516,77.67500305175781],[-102.08125305175781,77.68750000000011],[-102.50208282470703,77.78541564941406],[-102.48542022705078,77.8687515258789],[-102.11042022705078,77.90000152587885],[-101.74948120117188,77.90885162353538]]],[[[-109.83113098144526,77.93657684326183],[-109.80781555175781,78.10672760009777],[-109.64167022705078,78.10208129882818],[-109.66666412353516,77.96250152587896],[-109.83113098144526,77.93657684326183]]],[[[-102.90989685058594,78.27343750000011],[-102.82551574707031,78.19843292236334],[-103.06874847412098,78.12291717529325],[-103.2604141235351,78.12708282470709],[-103.30416870117188,78.17082977294933],[-103.00624847412104,78.26875305175781],[-102.90989685058594,78.27343750000011]]],[[[-109.8312149047851,78.30416870117182],[-109.8312149047851,78.3138046264649],[-109.81652069091797,78.6349792480471],[-109.36302185058594,78.55468750000006],[-109.28541564941406,78.46458435058588],[-109.3359375,78.33802032470709],[-109.8312149047851,78.30416870117182]]],[[[-97.78697967529291,78.82551574707031],[-97.50624847412104,78.80416870117193],[-96.99583435058588,78.73958587646496],[-96.89167022705072,78.69791412353516],[-96.52083587646484,78.68333435058605],[-96.30416870117188,78.6187515258789],[-96.18749999999994,78.51667022705078],[-95.95417022705078,78.47708129882818],[-95.7291641235351,78.52291870117199],[-95.51875305175781,78.51457977294922],[-94.88541412353516,78.3958358764649],[-94.96250152587885,78.30833435058605],[-95.1666641235351,78.28749847412115],[-95.1005172729491,78.1848983764649],[-94.89375305175776,78.11250305175781],[-95.11042022705072,77.94583129882812],[-95.40833282470697,77.96875000000006],[-95.45468902587885,77.94218444824219],[-96.08541870117188,77.87291717529291],[-96.40208435058588,77.86458587646484],[-96.47708129882812,77.90625000000011],[-96.74791717529297,77.88541412353521],[-96.78333282470697,77.81041717529297],[-96.90000152587879,77.78541564941406],[-97.125,77.81874847412104],[-97.13541412353516,77.91874694824219],[-97.5,78.00624847412104],[-97.69999694824219,78.0145797729495],[-97.6937484741211,78.08125305175781],[-96.95625305175776,78.07291412353521],[-96.95625305175776,78.13333129882812],[-97.33541870117182,78.21041870117193],[-97.60832977294922,78.19791412353527],[-97.80416870117182,78.222915649414],[-97.90625,78.28958129882818],[-98.0562515258789,78.30000305175781],[-98.09999847412104,78.40625],[-98.39167022705078,78.46041870117188],[-98.33125305175776,78.53333282470709],[-98.05416870117188,78.5708312988283],[-98.37031555175781,78.65364837646484],[-98.38333129882807,78.777084350586],[-98.21041870117182,78.81666564941418],[-97.78697967529291,78.82551574707031]]],[[[-85.75989532470703,79.07135009765625],[-85.22916412353516,79.05208587646484],[-85.21875,78.99166870117193],[-85.78125,78.92916870117199],[-86.40416717529297,78.89167022705078],[-86.27083587646484,79.01249694824224],[-85.75989532470703,79.07135009765625]]],[[[-103.95156097412098,79.37343597412104],[-103.73124694824213,79.3645858764649],[-103.40208435058594,79.29582977294922],[-103.09375,79.28749847412115],[-102.88749694824219,79.17082977294933],[-102.629165649414,79.09999847412115],[-102.65208435058588,78.95833587646513],[-102.54166412353516,78.87500000000011],[-102.39583587646473,78.93541717529303],[-102.38749694824219,79.02083587646507],[-102.17082977294916,79.03333282470714],[-101.96874999999994,79.08958435058605],[-101.6041641235351,79.07707977294922],[-101.19999694824213,78.96041870117193],[-101.05052185058594,78.80781555175787],[-100.59791564941406,78.80000305175787],[-100.36458587646479,78.8375015258789],[-100.25,78.7708358764649],[-100.11666870117188,78.76457977294933],[-99.86042022705078,78.69999694824219],[-99.75,78.60416412353527],[-99.51457977294916,78.56250000000023],[-99.76875305175781,78.40208435058594],[-99.78958129882812,78.30208587646501],[-99.51457977294916,78.29166412353521],[-99.33958435058588,78.20207977294933],[-98.95625305175781,78.05000305175787],[-99.08385467529297,77.97864532470703],[-99.05000305175781,77.89167022705078],[-99.51667022705072,77.81666564941423],[-99.80416870117188,77.82291412353527],[-99.84791564941406,77.78541564941406],[-100.08333587646479,77.82291412353527],[-100.29374694824207,77.82291412353527],[-100.49166870117188,77.86042022705084],[-100.75989532470697,77.96614837646496],[-100.8687515258789,78.13124847412132],[-101.0104141235351,78.19583129882807],[-101.3125,78.1854171752932],[-101.4375,78.23958587646507],[-102.1666641235351,78.29374694824219],[-102.55416870117188,78.23750305175787],[-102.79374694824219,78.28749847412115],[-102.80208587646479,78.38957977294933],[-103.12916564941406,78.375],[-103.28749847412104,78.33750152587902],[-103.70625305175776,78.32083129882812],[-103.91458129882812,78.24583435058594],[-104.34583282470703,78.26041412353521],[-104.51041412353504,78.32499694824219],[-104.66458129882812,78.31874847412115],[-104.95625305175776,78.44166564941418],[-105.00989532470703,78.50989532470709],[-104.79792022705072,78.5812530517581],[-104.39583587646484,78.57707977294933],[-104.27083587646479,78.54166412353516],[-103.84375,78.51041412353516],[-103.49791717529297,78.50624847412115],[-103.5250015258789,78.77500152587896],[-103.88124847412104,78.80833435058594],[-104.06041717529297,78.7604141235351],[-103.95207977294922,78.92292022705072],[-104.12916564941406,78.9812469482423],[-104.4536514282226,78.95365142822266],[-104.7291641235351,78.81874847412121],[-104.98332977294916,78.79792022705084],[-104.9749984741211,78.85208129882818],[-104.80885314941406,78.90468597412115],[-104.70625305175781,79.03541564941418],[-104.98332977294916,79.03958129882818],[-105.2645797729491,79.01249694824224],[-105.51457977294922,79.01875305175787],[-105.65573120117188,79.05781555175781],[-105.64167022705078,79.17916870117193],[-105.46458435058594,79.25833129882818],[-105.44791412353516,79.33750152587896],[-105.19999694824213,79.29582977294922],[-103.95156097412098,79.37343597412104]]],[[[-99.5786514282226,80.15052032470703],[-99.44166564941406,80.10832977294916],[-99.06666564941406,80.13333129882812],[-98.9000015258789,80.09166717529303],[-98.70625305175776,79.972915649414],[-98.72916412353516,79.87916564941412],[-98.6338500976562,79.80677032470714],[-98.816665649414,79.67292022705078],[-98.95417022705078,79.7249984741211],[-99.3541641235351,79.76041412353527],[-99.30000305175776,79.84791564941412],[-99.54792022705078,79.89167022705095],[-100.06041717529297,79.87708282470709],[-100.14583587646484,79.89167022705095],[-100.10624694824213,80.04582977294922],[-100.02083587646484,80.09791564941412],[-99.79166412353516,80.14791870117193],[-99.5786514282226,80.15052032470703]]],[[[-95.3765640258789,80.7025985717774],[-95.1187515258789,80.69999694824213],[-95.18958282470697,80.60832977294928],[-95.3765640258789,80.7025985717774]]],[[[-93.49739837646484,81.37760162353521],[-93.05416870117188,81.347915649414],[-92.7874984741211,81.30416870117193],[-92.42916870117182,81.277084350586],[-92.02708435058588,81.22291564941412],[-91.75416564941395,81.14791870117193],[-91.74166870117182,81.07083129882812],[-91.51457977294916,80.98332977294928],[-91.42448425292957,80.91197967529303],[-91.11042022705072,80.82083129882818],[-91.06666564941395,80.75624847412121],[-90.64427185058588,80.69947814941406],[-90.53124999999994,80.57499694824224],[-90.37708282470703,80.55000305175787],[-89.8499984741211,80.527084350586],[-89.59375,80.54166412353527],[-89.22083282470703,80.527084350586],[-89.02916717529297,80.48332977294922],[-89.10781097412104,80.22656250000011],[-88.73542022705078,80.12500000000006],[-88.43333435058594,80.10208129882812],[-88.36458587646479,80.18958282470697],[-88.54166412353516,80.22083282470714],[-88.65624999999989,80.29582977294916],[-88.64375305175776,80.38749694824224],[-88.36458587646479,80.44166564941412],[-87.92916870117176,80.42916870117188],[-87.60572814941406,80.39635467529297],[-87.5296859741211,80.19010162353527],[-87.68958282470697,80.14791870117193],[-87.96458435058594,80.1374969482423],[-87.92916870117176,80.06666564941412],[-87.69999694824213,80.08541870117199],[-87.2687530517577,80.08125305175776],[-87.14009857177723,80.01197814941418],[-87.09583282470697,79.92708587646496],[-86.96458435058594,79.91666412353516],[-87.13593292236328,79.65260314941412],[-87.42708587646484,79.57291412353527],[-87.34166717529297,79.46041870117205],[-87.1812515258789,79.57917022705084],[-86.56874847412104,79.66249847412115],[-86.30208587646479,79.64583587646484],[-86.05833435058588,79.5749969482423],[-86.01041412353516,79.44166564941418],[-85.86250305175781,79.52083587646496],[-85.8270797729491,79.61666870117188],[-85.52291870117182,79.57291412353527],[-85.46458435058588,79.48332977294922],[-85.25416564941406,79.3958358764649],[-85.12291717529297,79.38957977294928],[-84.9390640258789,79.32447814941406],[-84.88333129882812,79.26249694824241],[-85.19374847412098,79.22916412353521],[-85.27916717529291,79.17916870117193],[-86.23332977294916,79.09583282470709],[-86.49583435058594,79.06041717529308],[-86.60624694824219,78.97083282470703],[-86.76667022705078,78.9541702270509],[-86.99166870117188,79.03958129882818],[-86.99791717529297,78.88957977294922],[-87.32083129882812,78.80416870117193],[-87.52760314941406,78.66614532470714],[-87.64791870117182,78.64167022705084],[-87.90833282470703,78.71041870117199],[-87.99739837646484,78.7859344482423],[-87.95207977294922,79.00624847412121],[-88.14583587646479,79.004165649414],[-88.2515640258789,78.85051727294928],[-88.14375305175781,78.66874694824224],[-87.98958587646484,78.65208435058611],[-87.9000015258789,78.5812530517581],[-88.02291870117176,78.48124694824241],[-88.27291870117188,78.4625015258789],[-88.65624999999989,78.62708282470697],[-88.75989532470697,78.53385162353516],[-88.5609359741211,78.44114685058594],[-88.54010009765625,78.3932342529298],[-88.73958587646479,78.25833129882818],[-88.80625152587885,78.152084350586],[-89.01249694824219,78.16666412353533],[-89.16614532470697,78.21198272705084],[-89.33958435058594,78.31874847412115],[-89.63541412353516,78.4270858764649],[-90.00624847412104,78.62083435058594],[-90.0687484741211,78.48750305175781],[-89.76875305175781,78.38333129882807],[-89.61093902587885,78.28073120117188],[-89.66254425048822,78.21041870117193],[-89.87708282470703,78.21041870117193],[-90.04792022705072,78.30625152587902],[-90.25416564941406,78.33333587646496],[-90.32499694824219,78.27916717529308],[-90.33125305175776,78.14167022705072],[-90.96458435058588,78.13749694824219],[-91.19999694824219,78.16874694824213],[-91.60624694824213,78.17916870117193],[-91.83125305175781,78.22708129882824],[-92.05208587646479,78.1999969482423],[-92.20625305175781,78.27708435058588],[-92.3187484741211,78.27291870117188],[-92.63957977294922,78.3604202270509],[-92.93541717529297,78.41874694824247],[-92.83333587646479,78.50416564941412],[-92.59791564941406,78.48332977294922],[-92.47708129882812,78.51457977294922],[-91.93125152587885,78.52916717529303],[-91.6354141235351,78.51667022705078],[-91.17708587646479,78.56666564941406],[-90.95833587646484,78.55000305175793],[-90.97291564941395,78.6187515258789],[-91.28749847412104,78.63333129882824],[-91.34375,78.59583282470703],[-91.63749694824213,78.5687484741211],[-92.21666717529291,78.5729141235351],[-92.59166717529291,78.59166717529297],[-92.8229141235351,78.62916564941418],[-92.94791412353516,78.59791564941423],[-93.28124999999994,78.57707977294933],[-93.43958282470697,78.65625000000011],[-93.57707977294916,78.67500305175781],[-93.59999847412104,78.83541870117188],[-93.87083435058588,78.82499694824224],[-94.04792022705072,78.90208435058605],[-94.17292022705078,79.004165649414],[-93.96041870117188,79.03958129882818],[-93.6500015258789,79.04374694824224],[-93.37291717529291,79.1624984741211],[-92.93333435058594,79.152084350586],[-92.75833129882812,79.16666412353527],[-92.45833587646479,79.14791870117193],[-92.0562515258789,79.152084350586],[-91.20833587646484,79.19583129882824],[-90.78958129882812,79.19999694824247],[-90.82083129882812,79.24583435058588],[-91.15833282470703,79.24791717529308],[-91.64583587646484,79.21458435058594],[-92.26249694824219,79.20625305175787],[-92.51249694824213,79.30625152587902],[-91.97916412353516,79.29374694824219],[-91.70625305175781,79.32499694824236],[-91.26249694824219,79.339584350586],[-91.26875305175781,79.37708282470703],[-91.55625152587885,79.37083435058616],[-91.83125305175781,79.33750152587896],[-92.10208129882812,79.34166717529303],[-92.34375,79.40625000000017],[-92.02291870117188,79.47916412353516],[-91.98332977294916,79.59375],[-92.10832977294916,79.62083435058594],[-92.23124694824219,79.57291412353527],[-92.41458129882807,79.44583129882818],[-92.5104141235351,79.46041870117205],[-92.81874847412104,79.41249847412121],[-93.04166412353516,79.48332977294922],[-93.08541870117188,79.35832977294933],[-93.32707977294922,79.339584350586],[-93.36042022705072,79.41666412353521],[-93.50416564941406,79.3499984741211],[-93.6624984741211,79.3625030517581],[-93.69999694824219,79.29166412353516],[-94.03958129882812,79.25624847412115],[-94.09166717529297,79.39167022705084],[-94.38957977294922,79.4312515258789],[-94.49791717529297,79.34375000000023],[-94.9312515258789,79.30416870117199],[-95.01041412353516,79.26457977294922],[-95.20625305175776,79.28749847412115],[-95.31458282470697,79.40625000000017],[-95.42916870117188,79.36875152587896],[-95.75989532470703,79.41614532470714],[-95.73384857177723,79.5109329223634],[-95.61458587646484,79.55416870117193],[-95.3187484741211,79.558334350586],[-94.52291870117188,79.63124847412138],[-94.32291412353516,79.67082977294922],[-94.32917022705072,79.75624847412126],[-94.49583435058594,79.74375152587896],[-94.71041870117188,79.67500305175781],[-95.50208282470697,79.63333129882818],[-95.9124984741211,79.65208435058605],[-96.18541717529286,79.74375152587896],[-96.36666870117188,79.83750152587908],[-96.50416564941406,79.82917022705101],[-96.61458587646484,79.902084350586],[-96.60624694824213,80.03958129882818],[-96.68749999999994,80.14791870117193],[-96.3062515258789,80.13957977294933],[-96.02083587646484,80.07917022705078],[-95.64583587646484,80.04374694824241],[-95.13749694824213,80.03749847412115],[-94.8541641235351,80.05208587646484],[-94.76667022705078,80.10208129882812],[-94.504165649414,80.15000152587896],[-94.53333282470697,80.22708129882818],[-94.72083282470697,80.15625],[-95.31666564941406,80.11458587646496],[-95.92500305175781,80.19166564941418],[-96.40208435058588,80.27500152587902],[-96.24791717529297,80.37291717529297],[-95.68541717529297,80.375],[-95.86458587646479,80.45833587646479],[-95.91041564941406,80.55000305175787],[-95.4937515258789,80.59166717529297],[-94.9479141235351,80.60416412353521],[-94.6187515258789,80.55416870117193],[-94.53801727294916,80.6026000976563],[-94.65833282470703,80.72291564941406],[-94.97708129882807,80.76457977294928],[-94.98332977294922,80.80416870117188],[-95.2958297729491,80.77916717529297],[-95.4479141235351,80.79792022705084],[-95.379165649414,80.9187469482423],[-95.22916412353504,81.00833129882818],[-94.8499984741211,81.05833435058605],[-94.50208282470692,81.03541564941412],[-94.39583587646479,80.96458435058594],[-94.28541564941406,81.01249694824224],[-94.10416412353516,81.00833129882818],[-94.06249999999994,81.09375000000006],[-93.79792022705078,81.1041641235351],[-93.46666717529291,81.07917022705072],[-93.1812515258789,81.08541870117199],[-93.1875,81.21250152587885],[-93.95207977294916,81.20207977294928],[-94.33333587646484,81.24166870117199],[-94.08958435058588,81.3645858764649],[-93.65416717529291,81.33541870117193],[-93.49739837646484,81.37760162353521]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":8,"NAME_1":"Nunavut","TYPE_1":"Territoire","ENGTYPE_1":"Territory","NL_NAME_1":"","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.8925170898437,83.10861206054688],[-69.66041564941406,83.08541870117193],[-69.52291870117188,82.99583435058605],[-68.98958587646473,83.02291870117199],[-68.8125,82.9312515258789],[-68.73124694824219,82.97916412353521],[-68.48958587646484,82.95207977294928],[-68.32917022705078,82.97499847412115],[-68.02708435058594,82.95417022705084],[-67.49791717529291,82.95207977294928],[-66.93541717529297,82.92292022705084],[-66.52083587646484,82.9312515258789],[-66.50416564941406,82.870834350586],[-66.93541717529297,82.80625152587902],[-67.36042022705067,82.75833129882818],[-68.23332977294922,82.69166564941406],[-68.24791717529297,82.64375305175793],[-67.92500305175781,82.65833282470703],[-67.44791412353516,82.65625000000006],[-66.94583129882807,82.72291564941418],[-66.70417022705072,82.71041870117193],[-66.66249847412104,82.74791717529291],[-65.75,82.84791564941406],[-65.504165649414,82.83541870117199],[-65.33333587646484,82.79582977294922],[-65.21874999999994,82.88541412353527],[-64.87291717529291,82.90833282470703],[-64.69583129882807,82.81041717529308],[-64.44583129882812,82.75624847412121],[-64.04792022705072,82.83333587646496],[-63.58333206176758,82.83333587646496],[-63.48749923706055,82.75208282470714],[-63.53749847412104,82.67082977294933],[-63.32500076293945,82.65000152587896],[-63.28124999999994,82.59583282470709],[-63.05208206176752,82.58750152587885],[-62.93125152587885,82.5124969482423],[-62.24375152587885,82.52916717529297],[-62.01250076293934,82.48750305175793],[-61.51041793823242,82.47291564941406],[-61.11458206176752,82.36666870117188],[-61.11458206176752,82.26249694824213],[-61.27500152587885,82.20207977294922],[-61.60625076293945,82.15624999999994],[-61.88541793823242,82.14167022705084],[-61.92083358764643,82.08541870117193],[-62.164585113525334,82.02916717529308],[-63.066665649414006,81.8916702270509],[-63.59166717529291,81.8499984741211],[-63.793750762939396,81.79582977294922],[-64.09999847412098,81.78125000000011],[-64.16041564941406,81.7395858764649],[-64.41249847412104,81.7083358764649],[-64.73332977294916,81.71875],[-64.8499984741211,81.75],[-65.47083282470703,81.71875],[-65.46458435058588,81.66458129882812],[-65.8499984741211,81.62500000000011],[-66.65625,81.61666870117182],[-67.61042022705078,81.59375000000011],[-67.64375305175776,81.54792022705084],[-67.05208587646479,81.56249999999994],[-66.79374694824207,81.54582977294928],[-66.754165649414,81.49166870117193],[-68.30833435058594,81.33750152587896],[-68.66458129882812,81.28541564941406],[-69.31249999999989,81.23332977294922],[-69.73750305175781,81.17708587646484],[-69.71666717529286,81.125],[-69.27083587646484,81.20625305175781],[-68.96666717529291,81.21875000000011],[-68.16041564941406,81.277084350586],[-67.6041641235351,81.33958435058594],[-66.82917022705078,81.38749694824224],[-65.53124999999994,81.5],[-65.08958435058594,81.52916717529297],[-64.5,81.54792022705084],[-64.4312515258789,81.45625305175776],[-64.5729141235351,81.40208435058588],[-64.94583129882812,81.33125305175787],[-65.5625,81.23332977294922],[-66.06458282470703,81.21666717529308],[-66.28125,81.13541412353527],[-66.43333435058588,81.11666870117193],[-66.52916717529291,81.05416870117199],[-67.19791412353504,80.93541717529297],[-67.50208282470703,80.9229202270509],[-67.54792022705078,80.87708282470709],[-67.81874847412104,80.84166717529308],[-67.92500305175781,80.78749847412121],[-68.13541412353516,80.77291870117188],[-69.20677185058594,80.503646850586],[-69.36042022705078,80.39375305175787],[-69.76249694824219,80.34375],[-70.07499694824219,80.33541870117193],[-70.20207977294916,80.43125152587885],[-70.58125305175776,80.52916717529303],[-70.58541870117188,80.48542022705072],[-70.34583282470703,80.41458129882818],[-70.3541641235351,80.31458282470703],[-70.14583587646484,80.28541564941412],[-70.11666870117188,80.1875],[-70.67500305175776,80.19583129882824],[-71.39167022705072,80.1312484741211],[-71.12291717529291,80.08750152587902],[-70.80416870117188,80.12916564941406],[-70.55000305175781,80.11666870117199],[-70.69999694824207,79.98124694824247],[-71.23750305175781,79.95625305175787],[-70.99583435058594,79.88749694824219],[-71.12291717529291,79.78125],[-71.44999694824219,79.72291564941406],[-71.92916870117182,79.70625305175793],[-72.26667022705072,79.65208435058605],[-72.44583129882812,79.68333435058605],[-72.69166564941406,79.67708587646479],[-72.93541717529297,79.70207977294939],[-72.94583129882812,79.75833129882807],[-73.14167022705072,79.81041717529314],[-73.504165649414,79.82917022705101],[-73.8499984741211,79.81666564941418],[-73.95625305175781,79.87500000000006],[-74.29582977294922,79.88333129882812],[-74.71458435058582,79.84791564941412],[-74.65416717529297,79.78125],[-73.88749694824219,79.78958129882824],[-73.81458282470697,79.75208282470703],[-73.61250305175776,79.7708358764649],[-73.34374999999994,79.7249984741211],[-73.14167022705072,79.6187515258789],[-73.14843749999994,79.52343750000006],[-73.3541641235351,79.49791717529303],[-73.74166870117188,79.50000000000006],[-73.9479141235351,79.5479202270509],[-74.04374694824213,79.43333435058611],[-74.67082977294922,79.43541717529291],[-74.7750015258789,79.47916412353516],[-75.07707977294922,79.3874969482423],[-75.46666717529297,79.38541412353527],[-75.97083282470697,79.41666412353521],[-76.125,79.44999694824224],[-76.2437515258789,79.34583282470703],[-76.86042022705072,79.34791564941406],[-77.00833129882807,79.375],[-77.12291717529297,79.44374847412115],[-77.22916412353516,79.43541717529291],[-77.23332977294916,79.25624847412115],[-76.76875305175781,79.27708435058605],[-76.07707977294916,79.26875305175781],[-75.82707977294922,79.22499847412121],[-75.71666717529297,79.23542022705084],[-74.566665649414,79.23124694824224],[-74.55625152587885,79.01249694824224],[-74.96041870117182,79.02291870117188],[-75.55833435058594,79.06250000000011],[-75.83750152587885,79.09999847412115],[-75.90208435058588,79.17500305175787],[-76.0875015258789,79.19999694824247],[-76.6500015258789,79.19999694824247],[-77.09999847412104,79.1875],[-77.29582977294922,79.20417022705084],[-77.63957977294916,79.16666412353527],[-76.67082977294916,79.15000152587896],[-76.14375305175776,79.11875152587902],[-76.13541412353516,79.07707977294922],[-76.89375305175781,79.08750152587902],[-77.30833435058594,79.06041717529308],[-77.45625305175781,79.02708435058594],[-77.79166412353516,79.07083129882818],[-77.875,78.97291564941406],[-77.99583435058594,78.964584350586],[-78.04374694824213,78.82917022705084],[-77.76249694824213,78.9437484741211],[-77.62499999999994,78.96875],[-77.2249984741211,78.97499847412126],[-76.64791870117188,79.02291870117188],[-76.57917022705078,79.00624847412121],[-75.97708129882812,78.99375152587913],[-75.89167022705072,78.92292022705072],[-75.566665649414,78.87708282470732],[-75.28541564941406,78.88957977294922],[-74.78333282470697,78.82707977294928],[-74.75416564941406,78.74791717529303],[-74.81458282470703,78.63957977294928],[-75.01249694824213,78.53333282470709],[-75.2249984741211,78.53333282470709],[-75.81874847412098,78.49791717529308],[-75.10832977294916,78.36875152587896],[-75.37083435058594,78.30208587646501],[-75.472915649414,78.21041870117193],[-75.65416717529297,78.19791412353527],[-76.13749694824219,78.24166870117188],[-76.61666870117182,78.2437515258789],[-76.7437515258789,78.17082977294933],[-76.30416870117176,78.14791870117199],[-76.17500305175781,78.11666870117199],[-76.01457977294922,78.14375305175793],[-75.59583282470703,78.12708282470709],[-75.65052032470692,78.04531097412121],[-75.90208435058588,77.95417022705072],[-76.22343444824219,78.02448272705084],[-76.47291564941406,77.99166870117193],[-76.54792022705072,77.94166564941412],[-76.73750305175776,77.93333435058605],[-76.8578109741211,77.83906555175787],[-76.77916717529291,77.71875000000028],[-76.90833282470703,77.67500305175781],[-77.24583435058594,77.65208435058594],[-77.51041412353516,77.5999984741211],[-77.68958282470703,77.63333129882824],[-77.816665649414,77.70417022705078],[-77.82343292236322,77.57968902587896],[-77.9937515258789,77.48958587646484],[-78.29948425292969,77.4453125],[-78.39375305175776,77.36666870117199],[-78.63333129882812,77.36042022705072],[-78.71874999999994,77.31666564941412],[-78.83125305175781,77.38957977294933],[-78.91666412353504,77.34166717529325],[-79.17292022705078,77.28749847412138],[-79.59166717529291,77.31458282470732],[-79.80625152587879,77.31250000000011],[-79.99166870117188,77.27291870117188],[-80.40625,77.29166412353521],[-80.754165649414,77.32917022705078],[-81.316665649414,77.4270858764649],[-81.43333435058594,77.48750305175781],[-81.66874694824213,77.53749847412115],[-81.73958587646484,77.42292022705107],[-81.50624847412104,77.37291717529303],[-81.37916564941406,77.30416870117188],[-82.14167022705072,77.31041717529308],[-81.9000015258789,77.24166870117193],[-81.79792022705078,77.15625000000006],[-81.30416870117182,77.25416564941418],[-80.87708282470703,77.27291870117188],[-80.3125,77.19583129882812],[-80.3125,77.07083129882824],[-79.97708129882812,77.1937484741211],[-79.63333129882807,77.23750305175787],[-79.32083129882801,77.21666717529297],[-79.10990142822266,77.16614532470709],[-79.16249847412104,77.07083129882824],[-79.38333129882812,77.04792022705084],[-79.33541870117182,76.92082977294922],[-79.05416870117182,76.9000015258789],[-78.6312484741211,76.93333435058605],[-78.48332977294922,77.00208282470703],[-78.23124694824213,77.03749847412104],[-78.00833129882812,76.99166870117216],[-77.83593749999994,76.8973999023438],[-77.82917022705072,76.63124847412126],[-78.02708435058594,76.64167022705107],[-78.18333435058594,76.52500152587885],[-78.36875152587885,76.50833129882818],[-78.40833282470697,76.4583358764649],[-78.56458282470703,76.46041870117193],[-78.64583587646484,76.57291412353516],[-78.8187484741211,76.56666564941412],[-78.98384857177734,76.41926574707037],[-79.26875305175776,76.38333129882812],[-79.33958435058588,76.30416870117188],[-79.61406707763666,76.30677032470714],[-80.11666870117176,76.2270812988283],[-80.33333587646479,76.2270812988283],[-80.4046859741211,76.19010162353516],[-80.80625152587885,76.15833282470709],[-81.00416564941406,76.20625305175793],[-80.79582977294922,76.4270858764649],[-80.96666717529291,76.47291564941418],[-81.308853149414,76.50676727294928],[-81.4625015258789,76.46875],[-81.8541641235351,76.47708129882824],[-82.2437515258789,76.51667022705078],[-82.24166870117188,76.39791870117199],[-82.60208129882812,76.40000152587896],[-82.78125,76.37916564941412],[-83.11250305175781,76.46666717529297],[-83.11250305175781,76.56041717529325],[-83.24583435058588,76.57291412353516],[-83.27916717529297,76.40833282470703],[-83.68749999999994,76.42082977294933],[-83.76667022705067,76.46458435058594],[-84.03749847412104,76.52083587646484],[-84.09791564941406,76.62708282470703],[-84.20417022705078,76.6229171752932],[-84.20207977294916,76.4520797729495],[-84.52916717529297,76.42916870117193],[-84.79792022705078,76.46875],[-84.89791870117176,76.55000305175781],[-85.03958129882812,76.57707977294939],[-84.95833587646484,76.4124984741211],[-84.63957977294922,76.38333129882812],[-84.69166564941406,76.30208587646484],[-84.91666412353516,76.27916717529297],[-85.24166870117188,76.27708435058594],[-85.73332977294916,76.34999847412115],[-85.91874694824219,76.33125305175781],[-86.00208282470692,76.36042022705078],[-86.33333587646484,76.37708282470709],[-86.42916870117188,76.42500305175793],[-86.69791412353516,76.44583129882824],[-86.82707977294916,76.39167022705072],[-87.03697967529291,76.40156555175793],[-87.19999694824219,76.44583129882824],[-87.52916717529291,76.433334350586],[-87.60832977294916,76.35416412353516],[-88.40416717529291,76.39375305175793],[-88.33750152587885,76.51667022705078],[-88.4937515258789,76.60208129882812],[-88.48750305175781,76.82291412353527],[-88.68281555175781,76.69635009765648],[-88.71041870117176,76.5999984741211],[-88.90000152587885,76.40416717529303],[-89.12708282470692,76.4187469482423],[-89.42082977294922,76.4937515258789],[-89.42916870117182,76.660415649414],[-89.51249694824219,76.84375],[-89.38957977294922,76.89167022705084],[-88.76457977294916,76.99375152587896],[-88.38749694824213,77.12291717529308],[-87.65625,77.14167022705078],[-87.45207977294922,77.12500000000011],[-87.35624694824219,77.18125152587896],[-87.15625,77.21250152587896],[-87.2249984741211,77.36250305175793],[-87.33125305175781,77.33333587646479],[-87.72083282470703,77.36042022705072],[-87.76041412353516,77.53333282470709],[-87.97708129882812,77.60416412353527],[-88.19166564941406,77.63124847412121],[-88.11458587646484,77.81458282470703],[-87.33125305175781,77.89583587646484],[-86.82499694824213,77.88541412353521],[-86.41874694824219,77.84166717529297],[-86.19791412353516,77.79582977294933],[-85.96041870117188,77.71041870117182],[-85.7125015258789,77.43541717529297],[-85.52916717529297,77.46041870117188],[-85.41666412353516,77.38749694824213],[-85.15208435058594,77.3916702270509],[-84.89167022705078,77.36875152587919],[-84.58125305175781,77.30000305175781],[-84.55416870117188,77.402084350586],[-84.36250305175776,77.38541412353533],[-84.11458587646484,77.40000152587896],[-83.8229141235351,77.36875152587919],[-83.76457977294922,77.4625015258789],[-83.58125305175776,77.47291564941418],[-83.35624694824219,77.52500152587902],[-82.88801574707026,77.72551727294922],[-82.54582977294922,77.92292022705078],[-82.55416870117176,78.03333282470697],[-82.66874694824219,78.0562515258789],[-82.7828140258789,78.0150985717774],[-82.75051879882807,77.92760467529325],[-83.14948272705078,77.7838516235351],[-83.183853149414,77.72135162353516],[-83.42916870117188,77.6062469482423],[-83.6937484741211,77.52500152587902],[-83.93801879882807,77.49948120117188],[-84.47708129882812,77.52500152587902],[-84.7750015258789,77.52291870117182],[-84.89167022705078,77.5999984741211],[-85.22916412353516,77.65208435058594],[-85.34166717529297,77.86250305175804],[-85.46458435058588,77.86250305175804],[-85.65833282470703,77.95207977294916],[-85.06041717529291,78.09375000000011],[-84.95207977294916,78.23542022705084],[-84.84374999999989,78.28125000000011],[-84.754165649414,78.51249694824219],[-84.82707977294922,78.52083587646496],[-85.0250015258789,78.28749847412115],[-85.12083435058594,78.28125000000011],[-85.20833587646473,78.1999969482423],[-85.41666412353516,78.11042022705078],[-86.15625,78.0562515258789],[-86.09999847412104,78.16666412353533],[-85.88957977294922,78.27916717529308],[-85.89167022705078,78.36875152587896],[-86.25416564941406,78.19374847412126],[-86.47083282470703,78.2208328247072],[-86.68958282470692,78.11875152587902],[-87.0999984741211,78.10208129882818],[-87.42292022705078,78.11875152587902],[-87.50989532470703,78.34531402587919],[-87.46458435058594,78.44999694824224],[-87.15416717529297,78.5479202270509],[-86.83750152587879,78.5479202270509],[-86.93333435058588,78.62916564941418],[-86.89167022705067,78.71875000000006],[-86.66197967529297,78.78801727294933],[-86.43958282470703,78.80833435058594],[-86.00208282470692,78.81874847412121],[-85.5729141235351,78.84999847412138],[-85.24166870117188,78.91458129882812],[-84.9625015258789,78.90416717529325],[-84.59166717529291,78.85208129882818],[-84.11666870117176,78.85208129882818],[-83.68541717529286,78.82707977294928],[-83.55416870117182,78.78749847412104],[-82.972915649414,78.68750000000011],[-82.81041717529286,78.69583129882818],[-82.61458587646484,78.60832977294928],[-82.40624999999989,78.5687484741211],[-82.56041717529297,78.73124694824219],[-82.82291412353504,78.73124694824219],[-82.86250305175781,78.7604141235351],[-83.21041870117188,78.8020858764649],[-83.24166870117176,78.84791564941418],[-82.72708129882812,78.85416412353521],[-82.3062515258789,78.83958435058594],[-82.097915649414,78.86250305175781],[-81.71458435058594,78.86042022705078],[-81.84166717529291,79.01875305175787],[-82.10416412353516,78.91249847412132],[-82.55416870117176,78.89167022705078],[-82.8187484741211,78.92916870117199],[-83.26457977294922,78.94166564941406],[-83.5770797729491,78.933334350586],[-84.15625,78.96041870117193],[-84.68541717529291,79.01667022705084],[-84.535415649414,79.14583587646496],[-84.1500015258789,79.120834350586],[-83.90624999999994,79.03541564941418],[-83.84583282470703,79.10832977294922],[-84.10624694824213,79.18541717529297],[-84.23542022705078,79.18541717529297],[-84.45625305175776,79.3291702270509],[-84.5104141235351,79.42082977294928],[-84.8499984741211,79.47499847412115],[-85.05000305175776,79.62291717529291],[-85.48124694824213,79.69999694824219],[-85.82083129882812,79.70417022705072],[-86.39167022705078,79.76041412353527],[-86.44583129882812,79.933334350586],[-86.63333129882812,80.11458587646496],[-86.50781249999989,80.29426574707043],[-86.39167022705078,80.32083129882812],[-85.8499984741211,80.3333358764649],[-85.34791564941406,80.27291870117199],[-84.0875015258789,80.27291870117199],[-83.81041717529291,80.25624847412115],[-83.54374694824219,80.21041870117188],[-83.23124694824213,80.1104202270509],[-82.79166412353516,80.01667022705084],[-82.48332977294922,79.9229202270509],[-82.29374694824219,79.90833282470709],[-82.07917022705078,79.84166717529308],[-81.97708129882807,79.70625305175793],[-81.82291412353516,79.67916870117199],[-81.73750305175776,79.58958435058594],[-81.61250305175776,79.5833358764649],[-81.504165649414,79.63333129882818],[-81.18125152587885,79.61458587646484],[-81.05000305175776,79.58125305175787],[-80.66041564941406,79.57083129882824],[-80.5999984741211,79.60416412353544],[-79.86042022705067,79.65000152587885],[-79.98542022705072,79.69791412353516],[-80.59791564941406,79.65000152587885],[-80.941665649414,79.66458129882818],[-81.1395797729491,79.69999694824219],[-81.48332977294922,79.714584350586],[-81.57551574707031,79.77552032470703],[-81.52083587646479,79.9499969482423],[-82.0729141235351,80.00208282470714],[-82.7604141235351,80.18541717529297],[-82.96875,80.26875305175781],[-82.84375,80.35832977294933],[-82.48958587646479,80.36666870117193],[-82.04374694824213,80.40208435058594],[-81.88749694824219,80.39583587646484],[-81.01041412353516,80.44166564941412],[-80.629165649414,80.47083282470709],[-80.38957977294916,80.46250152587902],[-80.25208282470697,80.53125],[-79.81041717529291,80.53541564941406],[-79.34583282470703,80.55625152587896],[-78.83541870117188,80.55625152587896],[-78.40416717529297,80.60624694824224],[-79.10208129882812,80.61250305175781],[-79.41874694824213,80.59583282470714],[-79.54792022705078,80.67916870117199],[-78.99999999999994,80.7395858764649],[-78.20833587646479,80.80416870117188],[-77.52916717529297,80.83541870117182],[-76.61875152587885,80.84166717529308],[-76.36458587646484,80.80000305175781],[-76.3125,80.73332977294933],[-76.20468902587885,80.79114532470714],[-76.47083282470703,80.87500000000006],[-77.26667022705078,80.88749694824219],[-77.79374694824219,80.90833282470703],[-78.94166564941406,80.84999847412115],[-78.84791564941406,81.00416564941418],[-78.4437484741211,81.08541870117199],[-78.32083129882812,81.17708587646484],[-78.0729141235351,81.20833587646484],[-78.004165649414,81.25416564941412],[-77.63749694824213,81.32291412353527],[-77.26457977294916,81.34375],[-76.99583435058588,81.38957977294928],[-76.92916870117188,81.43750000000006],[-78.16458129882807,81.2979202270509],[-78.56666564941395,81.19166564941418],[-78.79166412353516,81.15833282470697],[-78.84583282470703,81.09583282470703],[-79.17082977294922,81.13333129882824],[-79.41458129882812,81.18958282470714],[-79.34375,81.06041717529303],[-79.36250305175776,80.92082977294933],[-79.43541717529297,80.85832977294922],[-80.20833587646484,80.73750305175787],[-80.76667022705072,80.683334350586],[-80.91458129882807,80.65625000000006],[-81.57917022705078,80.59791564941418],[-82.81041717529286,80.5374984741211],[-83.15625,80.54582977294933],[-83.0953140258789,80.63906097412115],[-82.81041717529286,80.68750000000006],[-82.23332977294916,80.714584350586],[-81.89583587646479,80.7750015258789],[-81.9312515258789,80.83125305175781],[-82.46875,80.76457977294928],[-82.5374984741211,80.73750305175787],[-83.36042022705078,80.67500305175776],[-83.53125,80.69999694824213],[-83.58125305175776,80.7624969482423],[-83.77291870117188,80.54166412353527],[-84.55208587646479,80.50833129882812],[-85.33541870117188,80.50833129882812],[-85.51249694824219,80.527084350586],[-86.07083129882807,80.527084350586],[-86.7125015258789,80.59791564941418],[-86.62239837646484,80.67448425292969],[-86.24166870117188,80.78541564941418],[-85.69791412353516,80.96458435058594],[-85.12291717529297,81.00416564941418],[-85.19583129882807,81.04582977294922],[-85.64791870117188,81.04374694824219],[-86.16458129882807,80.95625305175787],[-86.43958282470703,80.85832977294922],[-86.99166870117188,80.72083282470703],[-87.26041412353516,80.62083435058588],[-87.53749847412098,80.62083435058588],[-88.2291641235351,80.68541717529303],[-88.49166870117188,80.7395858764649],[-89.36042022705072,80.86250305175776],[-89.18958282470703,80.94583129882824],[-88.19166564941406,81.00416564941418],[-87.92916870117176,81.00416564941418],[-87.54374694824219,80.97916412353521],[-87.11666870117188,80.98124694824224],[-86.52291870117188,81.01667022705078],[-86.32917022705072,81.05625152587902],[-85.95417022705072,81.08125305175793],[-85.87916564941406,81.1145858764649],[-85.37083435058588,81.20833587646484],[-84.87499999999994,81.26041412353516],[-84.98542022705078,81.31041717529303],[-85.14791870117188,81.28333282470709],[-86.01875305175776,81.20625305175781],[-86.31458282470697,81.125],[-86.95833587646484,81.09791564941406],[-87.35208129882807,81.06250000000006],[-87.8687515258789,81.05416870117199],[-88.03541564941406,81.06458282470709],[-88.79792022705078,81.04374694824219],[-89.58750152587885,81.00416564941418],[-89.86666870117188,81.01249694824224],[-90.13333129882812,81.05000305175781],[-90.29010009765625,81.1651000976563],[-89.77916717529291,81.30000305175793],[-89.22916412353516,81.42500305175781],[-88.941665649414,81.45833587646496],[-88.79792022705078,81.50416564941406],[-88.25,81.5208358764649],[-88.26041412353516,81.57499694824224],[-88.72291564941395,81.54582977294928],[-89.57499694824213,81.45833587646496],[-90.41874694824219,81.36042022705084],[-90.54166412353504,81.41249847412115],[-90.51875305175776,81.48958587646496],[-90.08958435058594,81.56249999999994],[-90.07917022705078,81.64375305175776],[-90.23124694824207,81.69583129882812],[-90.31249999999989,81.64583587646496],[-90.691665649414,81.6624984741211],[-90.89583587646479,81.62291717529308],[-91.05000305175781,81.52291870117193],[-91.41458129882812,81.51457977294933],[-91.38749694824219,81.58541870117188],[-91.660415649414,81.61042022705078],[-91.63333129882807,81.73332977294928],[-91.43541717529291,81.76667022705084],[-91.15000152587885,81.75416564941418],[-91.0062484741211,81.82707977294922],[-90.66249847412098,81.83333587646479],[-90.55416870117188,81.87916564941406],[-89.61042022705078,81.90833282470703],[-89.57083129882812,81.85832977294916],[-89.31458282470703,81.81250000000011],[-89.37083435058588,81.92082977294933],[-88.93958282470697,82.01667022705078],[-88.51457977294922,82.06666564941406],[-88.03958129882807,82.08541870117193],[-88.02291870117176,82.10416412353527],[-87.33333587646484,82.06458282470709],[-87.10208129882812,81.93958282470697],[-86.84583282470703,81.88333129882812],[-86.8541641235351,82.05000305175793],[-86.26457977294922,82.04374694824219],[-85.93749999999994,82.00208282470714],[-85.65208435058582,81.92292022705084],[-85.64791870117188,82.00208282470714],[-85.18958282470703,82.00208282470714],[-84.80416870117176,81.98124694824224],[-84.77708435058582,81.91041564941406],[-84.63957977294922,81.8812484741211],[-84.64009857177734,81.97656250000011],[-84.83958435058594,82.01875305175781],[-85.6875,82.04582977294922],[-86.03333282470697,82.09791564941406],[-86.52083587646484,82.1104202270509],[-86.78749847412104,82.16666412353521],[-86.79582977294922,82.22083282470709],[-85.875,82.21875000000006],[-85.69583129882807,82.23542022705078],[-85.34374999999994,82.22499847412115],[-85.33541870117188,82.37291717529308],[-85.13333129882812,82.35208129882824],[-84.93958282470697,82.26041412353516],[-84.58125305175781,82.27083587646496],[-84.60624694824213,82.34999847412121],[-84.08958435058582,82.37291717529308],[-83.65416717529297,82.34999847412121],[-83.32083129882812,82.25833129882812],[-83.31666564941406,82.21875000000006],[-82.93333435058588,82.14791870117188],[-83.01041412353516,82.05000305175793],[-82.6875,82.0687484741211],[-82.67916870117182,82.13957977294928],[-82.82707977294916,82.19166564941412],[-82.83541870117188,82.28541564941406],[-82.29166412353516,82.23124694824219],[-82.15000152587879,82.17500305175781],[-81.90416717529297,82.16041564941418],[-81.16874694824213,82.07707977294933],[-81.06666564941406,81.96875000000011],[-80.92708587646479,82.00000000000011],[-80.03541564941395,81.97916412353521],[-79.8229141235351,81.88957977294933],[-79.80625152587879,82.02083587646479],[-80.50208282470703,82.04374694824219],[-80.86042022705072,82.089584350586],[-80.90000152587885,82.15624999999994],[-81.2916641235351,82.16458129882818],[-82.44999694824213,82.3249969482423],[-82.51667022705072,82.49375152587896],[-82.35208129882801,82.50208282470703],[-81.71458435058594,82.4854202270509],[-81.59583282470703,82.52916717529297],[-81.36875152587879,82.53125],[-81.33333587646479,82.61042022705078],[-81.05833435058594,82.57291412353521],[-80.79792022705078,82.48750305175793],[-80.56666564941406,82.45833587646496],[-80.28333282470703,82.47083282470703],[-80.71458435058594,82.59166717529308],[-80.57291412353516,82.68958282470703],[-80.05416870117182,82.6624984741211],[-79.92500305175781,82.7083358764649],[-79.95625305175776,82.81041717529308],[-79.66458129882812,82.83750152587902],[-79.48332977294916,82.8916702270509],[-79.15833282470703,82.93333435058594],[-78.79374694824219,82.91249847412121],[-78.73958587646484,82.94166564941418],[-78.50833129882812,82.92082977294928],[-78.37708282470703,82.8499984741211],[-78.12291717529291,82.84791564941406],[-77.96041870117188,82.91249847412121],[-77.76457977294922,82.92500305175787],[-77.09166717529297,82.85832977294933],[-76.66458129882812,82.72291564941418],[-76.55208587646484,82.66458129882812],[-76,82.59375000000011],[-76.02083587646484,82.48332977294933],[-75.58125305175776,82.62708282470709],[-76,82.68541717529297],[-76.22708129882807,82.69583129882824],[-76.28124999999994,82.76667022705078],[-76.57499694824213,82.83333587646496],[-76.66041564941406,82.87916564941406],[-77.27083587646484,82.95417022705084],[-77.22083282470697,83.02291870117199],[-76.46458435058594,83.02083587646496],[-75.96458435058594,83.05416870117193],[-75.63749694824219,83.0479202270509],[-75.24375152587885,83.01875305175776],[-75.0625,83.03958129882812],[-74.41874694824213,83.027084350586],[-73.96666717529297,82.95833587646484],[-73.77291870117182,82.8499984741211],[-73.24999999999994,82.76249694824224],[-72.59426879882807,82.69322967529297],[-72.6953125,82.62968444824219],[-72.60208129882807,82.5],[-72.45833587646484,82.4749984741211],[-72.3812484741211,82.56041717529291],[-72.35832977294916,82.71458435058594],[-72.82917022705067,82.77500152587885],[-73.15208435058582,82.80208587646479],[-73.33541870117188,82.84166717529303],[-73.34791564941406,82.96875000000011],[-73.23958587646484,83.00833129882812],[-72.32291412353516,83.09375],[-71.62916564941395,83.09166717529297],[-71.67500305175776,82.98542022705078],[-71.45833587646479,82.93541717529297],[-71.15416717529297,82.95417022705084],[-71.25833129882812,83.05416870117193],[-70.62708282470703,83.10416412353527],[-69.8925170898437,83.10861206054688]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":8,"NAME_1":"Nunavut","TYPE_1":"Territoire","ENGTYPE_1":"Territory","NL_NAME_1":"","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-81.364990234375,53.219482421875114],[-81.17722320556635,53.19944381713873],[-80.97998046875,53.127502441406364],[-80.8215942382812,53.00750732421881],[-80.67053985595697,52.73802947998058],[-80.73999786376953,52.69638824462896],[-81.05500030517578,52.749443054199276],[-81.2650146484375,52.82891845703125],[-81.54555511474604,52.86722183227545],[-81.94889068603516,52.96111297607422],[-82.0488891601562,53.02532958984369],[-81.8200073242187,53.17590332031256],[-81.364990234375,53.219482421875114]]],[[[-79.51565551757807,51.459987640380916],[-79.51788330078125,51.00970458984375],[-79.517822265625,47.5583229064942],[-79.58103942871094,47.41511535644531],[-79.42684173583984,47.250068664550724],[-79.44299316406244,47.100997924804744],[-79.2138442993164,46.83330917358404],[-79.1708145141601,46.82523345947271],[-78.9898681640625,46.54885482788086],[-78.6758422851562,46.318241119384766],[-78.38838958740229,46.29168701171875],[-78.31236267089844,46.25236892700207],[-78.1299438476562,46.274505615234375],[-78.05554962158203,46.24384689331049],[-77.56607818603516,46.15922164916992],[-77.31474304199213,46.026851654052734],[-77.1903305053711,45.863861083984375],[-76.98497772216791,45.78607559204096],[-76.92756652832026,45.89225769042969],[-76.78015899658203,45.87237167358404],[-76.76689147949207,45.73269653320318],[-76.6600112915039,45.56063461303705],[-76.36174011230463,45.45709228515631],[-76.20100402832031,45.51887893676758],[-75.98715972900385,45.47964477539074],[-75.7970199584961,45.37832260131836],[-75.67756652832031,45.460849761963004],[-75.12277221679688,45.577087402343864],[-74.94300842285156,45.643405914306584],[-74.6380615234375,45.638759613037166],[-74.38127136230463,45.56610870361328],[-74.47220611572266,45.30266571044916],[-74.3460464477539,45.2066535949707],[-74.54686737060547,45.06381988525402],[-74.99223327636719,44.977695465088004],[-75.30772399902344,44.840999603271484],[-75.76744079589832,44.52051544189453],[-75.82401275634766,44.43101882934576],[-75.9724502563476,44.34394454956055],[-76.1628646850586,44.28158950805664],[-76.44113159179688,44.09443664550787],[-76.79833221435541,43.631408691406364],[-78.68121337890625,43.63359069824219],[-79.20278930664062,43.45099258422857],[-79.07113647460932,43.26202011108404],[-79.00718688964844,42.983379364013786],[-78.90618133544922,42.90505599975586],[-78.93692016601562,42.83100128173834],[-80.07332611083984,42.39255905151367],[-81.26055145263672,42.20552062988281],[-81.63878631591797,42.02144622802729],[-82.4076919555664,41.6769256591798],[-82.68122100830078,41.677291870117244],[-83.0678100585937,41.86261367797863],[-83.14656829833979,42.033199310302734],[-83.0953521728515,42.28422927856445],[-82.86828613281244,42.32759094238281],[-82.64121246337885,42.55479812622082],[-82.52133941650385,42.610420227050895],[-82.42434692382807,42.99829101562506],[-82.12290191650385,43.58837127685547],[-82.41751861572266,44.90666961669933],[-82.52536773681629,45.34091949462896],[-83.59211730957026,45.81868362426769],[-83.43562316894526,45.996528625488395],[-83.57113647460932,46.10256958007824],[-83.8258285522461,46.11650466918951],[-83.95479583740229,46.056240081787166],[-84.07260894775379,46.18754959106457],[-84.14324188232416,46.417133331298885],[-84.12928771972656,46.53134918212902],[-84.37106323242188,46.50828170776373],[-84.55606842041016,46.45965194702154],[-84.7637710571289,46.634880065918026],[-84.84339904785156,46.887283325195256],[-86.04337310791004,47.38558959960943],[-86.77288055419922,47.681743621826286],[-87.86489105224598,48.11369705200201],[-88.37091064453114,48.30424880981451],[-88.68901062011719,48.24150848388666],[-89.3390502929687,47.96989822387701],[-89.48774719238276,48.010860443115234],[-89.76985931396473,48.02291107177746],[-89.86762237548828,47.9980087280274],[-90.03350830078125,48.09634780883795],[-90.74224090576172,48.113662719726676],[-90.83993530273438,48.245868682861385],[-91.13675689697254,48.15468978881836],[-91.2653121948241,48.07798004150396],[-91.39911651611317,48.057098388671875],[-91.6910629272461,48.12732315063488],[-91.72283172607422,48.20127487182623],[-91.98326110839844,48.260986328125],[-92.05484008789057,48.35908889770502],[-92.26251220703125,48.35475921630871],[-92.26934814453125,48.25109481811535],[-92.36433410644531,48.233757019043026],[-92.5068359375,48.450401306152344],[-92.65268707275385,48.44081878662104],[-92.7268295288086,48.53911209106457],[-92.9472427368164,48.621395111083984],[-93.25643920898438,48.642494201660156],[-93.46360015869135,48.59195709228521],[-93.46788024902344,48.546634674072266],[-93.75177001953125,48.51976013183605],[-93.85050964355463,48.631637573242244],[-94.22329711914057,48.66024398803722],[-94.25695037841797,48.70345306396496],[-94.53514099121088,48.70233535766607],[-94.68231964111322,48.808830261230526],[-94.67808532714844,48.87779617309576],[-94.8254165649414,49.29474258422857],[-94.9560775756836,49.369449615478516],[-95.14968872070307,49.3804550170899],[-95.15290832519531,49.746074676513786],[-95.15314483642572,52.84057235717802],[-94.2626724243164,53.381423950195256],[-93.6298828125,53.75007247924805],[-92.6586074829101,54.453392028808594],[-91.99999999999994,54.90601730346691],[-91.64778900146484,55.15848541259794],[-91.163345336914,55.48350906372076],[-90.43309783935547,55.95698928833036],[-89.64416503906239,56.44984817504894],[-88.96736907958984,56.8569450378418],[-88.85441589355463,56.86115646362305],[-88.65389251708984,56.69361114501959],[-88.49218749999994,56.648315429687614],[-88.31223297119135,56.551391601562614],[-87.98444366455078,56.474998474121094],[-87.83110809326166,56.34166717529297],[-87.63777923583984,56.11416625976568],[-87.4488906860351,56.00999832153332],[-87.20166778564453,55.935554504394474],[-86.92055511474604,55.920555114746094],[-86.67828369140625,55.83831787109375],[-86.37833404541016,55.765834808349666],[-86.29777526855469,55.72055435180664],[-85.9555053710937,55.67169189453131],[-85.6016845703125,55.52911376953125],[-85.35888671874994,55.38138961791992],[-85.13055419921875,55.32805633544916],[-85.10277557373047,55.25972366333008],[-84.9655532836914,55.27555465698242],[-84.7933349609375,55.23500061035156],[-84.49944305419916,55.235553741455135],[-84.3027954101562,55.27532958984381],[-84.07777404785156,55.250831604003906],[-83.88777923583979,55.293884277343864],[-83.6716690063476,55.26944351196289],[-83.46888732910156,55.211666107177734],[-83.18111419677723,55.19361114501953],[-82.9749755859375,55.2216796875],[-82.76161193847656,55.12834930419933],[-82.6588745117187,55.15972900390631],[-82.44611358642567,55.116943359375],[-82.27220916748047,55.04889297485363],[-82.26220703125,54.89916610717785],[-82.1933364868164,54.79750061035156],[-82.28379058837885,54.64922714233404],[-82.31555175781244,54.51868057250971],[-82.43608093261713,54.27866744995123],[-82.42333221435547,54.19777679443354],[-82.24670410156239,54.059082031250114],[-82.11444091796875,53.775276184082145],[-82.18833160400385,53.68333435058605],[-82.19610595703125,53.523681640625114],[-82.10220336914057,53.26747512817383],[-82.21888732910156,53.2047233581543],[-82.28666687011719,53.05444335937506],[-82.23002624511719,52.92549514770508],[-81.94863891601562,52.77231597900396],[-81.91944122314453,52.702777862548885],[-81.66110992431635,52.50860977172857],[-81.53332519531244,52.44416809082031],[-81.4349975585937,52.17590332031256],[-81.3577880859375,52.10671615600586],[-80.97277832031244,51.98916625976568],[-80.90777587890625,51.910278320312614],[-80.65441894531244,51.7874755859375],[-80.56277465820307,51.688331604003906],[-80.44444274902338,51.38111114501959],[-80.3155517578125,51.3091659545899],[-80.11944580078125,51.291942596435604],[-79.89555358886719,51.16777801513672],[-79.8006973266601,51.157939910888615],[-79.6883316040039,51.263671875000114],[-79.72552490234375,51.353618621826286],[-79.51565551757807,51.459987640380916]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":"Upper Canada"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-63.98972320556635,47.050277709960994],[-63.97360992431635,46.880554199218864],[-64.04409027099604,46.82917785644531],[-63.878990173339844,46.63922882080084],[-63.787776947021484,46.4386100769043],[-63.70777893066406,46.56277847290039],[-63.31194305419916,46.48916625976574],[-63.2691650390625,46.428611755371094],[-63.010555267333984,46.397220611572266],[-62.643890380859375,46.46333312988281],[-62.16805648803711,46.48333358764654],[-62.18305587768555,46.346942901611385],[-62.317222595214844,46.349723815918026],[-62.46722412109375,46.120555877685604],[-62.499168395996094,45.97916793823242],[-62.828887939453125,45.96444320678711],[-62.96194458007807,46.07611083984375],[-62.9720344543457,46.19822692871094],[-63.11805725097656,46.19388961791992],[-63.25194549560547,46.12916564941406],[-63.59361267089844,46.209999084472656],[-63.93890762329096,46.41880035400402],[-64.12030792236322,46.40226745605469],[-64.1100006103515,46.52611160278332],[-64.21869659423822,46.63023376464844],[-64.38249969482422,46.61694335937506],[-64.39778137207031,46.7241668701173],[-64.16222381591797,46.95111083984381],[-63.98972320556635,47.050277709960994]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":10,"NAME_1":"Prince Edward Island","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":"Île de Saint-Jean|Île du Prince-Édouard"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-66.77474975585932,47.99764633178705],[-66.92127227783203,47.98460388183594],[-67.3647232055664,47.856216430664006],[-67.59465789794922,47.924972534179744],[-67.59805297851557,47.99989318847656],[-68.12260437011719,47.999843597412166],[-68.12279510498047,47.91632080078125],[-68.38233184814453,47.91611480712885],[-68.38349914550776,47.553199768066406],[-68.5692749023437,47.4271240234375],[-68.79962921142578,47.34894180297863],[-69.05052947998047,47.300170898437614],[-69.04431915283197,47.402751922607365],[-69.22181701660156,47.4576416015625],[-69.99708557128906,46.695831298828125],[-70.05715942382812,46.41468048095703],[-70.19534301757812,46.34339904785162],[-70.292007446289,46.190940856933594],[-70.31443023681629,45.96649169921881],[-70.26628875732422,45.88494110107433],[-70.41616058349604,45.795646667480526],[-70.39073181152344,45.731819152831974],[-70.55680847167969,45.665069580078125],[-70.82332611083984,45.402969360351676],[-70.80664825439453,45.3211402893067],[-70.89290618896479,45.24391937255854],[-70.95658874511719,45.34260940551769],[-71.16233062744135,45.246860504150504],[-71.28388214111328,45.30230712890625],[-71.4132080078125,45.22015762329113],[-71.51103210449219,45.01343536376959],[-72.3174819946289,45.003921508789176],[-73.05492401123047,45.01567077636719],[-74.15013122558594,44.99119567871088],[-74.48428344726562,45.035945892333984],[-74.4048843383789,45.12668609619146],[-74.16256713867182,45.20267868041992],[-74.09748077392578,45.295528411865234],[-73.88542175292969,45.313762664795036],[-73.79076385498036,45.36115264892584],[-73.51287841796875,45.42480468750006],[-73.50051879882812,45.53739166259771],[-73.41176605224604,45.69660949707037],[-73.27006530761719,45.80437088012707],[-73.14801025390625,46.04746627807623],[-72.93858337402344,46.12689590454113],[-72.7435531616211,46.165287017822266],[-72.48722839355469,46.313125610351676],[-72.2440795898437,46.40712356567383],[-72.15277862548828,46.54267883300781],[-71.84848785400385,46.62333679199219],[-71.6534194946289,46.61681365966808],[-71.4881362915039,46.69263458251959],[-71.2613906860351,46.74827575683594],[-71.16222381591791,46.83166503906256],[-70.98777770996094,46.83611297607433],[-70.87166595458984,46.89389038085943],[-70.55388641357416,46.99000167846674],[-70.34123229980469,47.1462287902832],[-70.19277954101562,47.30938720703119],[-70.05555725097656,47.37660980224615],[-70.02111053466797,47.48744201660162],[-69.7883071899414,47.613418579101506],[-69.5533828735351,47.83873367309582],[-69.48342895507812,47.95166778564459],[-68.95388793945307,48.290000915527344],[-68.57917022705078,48.443054199218864],[-68.1805572509765,48.63472366333008],[-67.96458435058594,48.68372344970709],[-67.86666870117188,48.73805618286144],[-67.27305603027338,48.9197235107423],[-67.09725189208984,48.960597991943416],[-66.74555206298822,49.088333129882926],[-66.47972106933594,49.12972259521496],[-66.24277496337885,49.196388244628906],[-65.56639099121094,49.25722122192394],[-65.32472229003906,49.252666473388786],[-64.92658233642578,49.20538711547846],[-64.6007461547851,49.10899734497076],[-64.39302825927729,49.00723266601568],[-64.21247100830078,48.87422180175781],[-64.3213882446289,48.61138916015625],[-64.22735595703125,48.501396179199276],[-64.34083557128906,48.41916656494146],[-64.68965911865223,48.33726119995123],[-64.77361297607422,48.205638885498104],[-64.95222473144531,48.14916610717779],[-65.16758728027344,48.04311370849621],[-65.45639038085932,48.006111145019645],[-65.53504943847656,48.068405151367244],[-65.81035614013672,48.1206626892091],[-65.9566650390625,48.194168090820426],[-66.04170989990234,48.11689376831055],[-66.49668121337879,48.11030578613281],[-66.77474975585932,47.99764633178705]]],[[[-64.14816284179676,49.9517707824707],[-63.92084884643555,49.88623046875],[-63.379554748535156,49.82655715942394],[-63.081417083740234,49.76710128784174],[-62.51338577270508,49.58822250366211],[-62.394443511962834,49.48416519165045],[-62.135833740234375,49.401943206787166],[-61.89706802368164,49.35260391235363],[-61.718055725097656,49.19499969482422],[-61.788738250732365,49.07634735107416],[-62.24428939819336,49.0625267028808],[-62.47888946533203,49.128612518310604],[-62.93461608886719,49.19170379638683],[-63.23674774169922,49.28115844726574],[-63.30888748168945,49.33611297607433],[-63.569168090820256,49.389999389648494],[-63.66055679321289,49.53610992431646],[-63.982635498046875,49.69745635986334],[-64.41487884521479,49.79914855957037],[-64.46255493164057,49.91339111328131],[-64.14816284179676,49.9517707824707]]],[[[-79.33887481689453,52.095275878906364],[-79.31722259521484,51.97138977050781],[-79.3782958984375,51.925903320312614],[-79.58444213867188,51.92139053344738],[-79.6070938110351,51.99716949462896],[-79.33887481689453,52.095275878906364]]],[[[-80.00054931640625,53.39089202880865],[-79.931655883789,53.26387786865246],[-80.08333587646484,53.24972152709955],[-80.0822143554687,53.3638916015625],[-80.00054931640625,53.39089202880865]]],[[[-78.68199920654297,56.437572479248104],[-78.65921783447266,56.212295532226676],[-78.75643920898432,56.147018432617244],[-78.81547546386713,56.35726165771479],[-78.68199920654297,56.437572479248104]]],[[[-79.53931427001947,56.53798294067377],[-79.63216400146484,56.34286499023443],[-79.69970703124994,56.297573089599666],[-80.04772186279286,56.17049789428711],[-80.03145599365234,56.3129768371582],[-79.8482055664062,56.32048034667969],[-79.61907958984375,56.398681640625],[-79.53931427001947,56.53798294067377]]],[[[-79.2974853515625,56.49723434448242],[-79.1197280883789,56.483085632324276],[-79.0145874023437,56.360473632812614],[-79.09092712402344,56.251243591308594],[-79.22573852539057,56.16806030273432],[-79.29069519042957,56.051086425781364],[-79.44701385498047,55.88579177856451],[-79.62581634521473,55.89999771118164],[-79.55204010009766,56.018157958984375],[-79.54894256591791,56.120033264160156],[-79.80361938476562,55.897335052490234],[-79.85940551757812,56.0114479064942],[-79.71392059326166,56.1611785888673],[-79.58915710449219,56.22507476806652],[-79.39709472656244,56.2207603454591],[-79.2974853515625,56.49723434448242]]],[[[-69.23092651367182,59.15935134887701],[-69.1182861328125,59.06311035156256],[-69.21773529052734,58.96556091308588],[-69.31402587890614,58.99111175537121],[-69.23092651367182,59.15935134887701]]],[[[-68.136978149414,60.5963516235351],[-68.01875305175781,60.58124923706055],[-67.82759857177729,60.446353912353516],[-67.95365142822266,60.3348960876466],[-68.32499694824219,60.19791793823248],[-68.43698120117188,60.270309448242244],[-68.23124694824219,60.58750152587896],[-68.136978149414,60.5963516235351]]],[[[-78.24948120117188,60.81510162353527],[-78.38385009765625,60.74427413940424],[-78.58125305175776,60.708332061767635],[-78.60208129882812,60.77500152587896],[-78.24948120117188,60.81510162353527]]],[[[-79.58698272705072,62.410934448242244],[-79.4625015258789,62.38333511352545],[-79.25885009765625,62.2359352111817],[-79.30260467529291,62.01927185058594],[-79.45051574707026,61.93906021118164],[-79.5474014282226,61.745315551757926],[-79.68801879882812,61.610935211181754],[-79.88697814941406,61.5984344482423],[-79.96874999999994,61.75208282470703],[-80.1812515258789,61.78541564941406],[-80.24739837646479,61.84218978881836],[-80.27083587646484,62.00208282470703],[-80.1437530517577,62.212501525878906],[-79.9375,62.370834350585994],[-79.58698272705072,62.410934448242244]]],[[[-72.87916564941406,62.14166641235357],[-72.88333129882807,62.12708282470709],[-72.72499847412104,62.14166641235357],[-72.58333587646484,61.98125076293945],[-72.37708282470703,61.88750076293957],[-72.23750305175776,61.88124847412115],[-72.129165649414,61.806251525878906],[-72.04634857177734,61.745315551757926],[-71.96093749999994,61.5984344482423],[-71.84375,61.70000076293957],[-71.52291870117182,61.60416793823242],[-71.72291564941406,61.54999923706055],[-71.754165649414,61.46458435058588],[-71.64167022705078,61.40833282470703],[-71.6812515258789,61.31874847412115],[-71.5687484741211,61.21875],[-71.43958282470703,61.16666793823248],[-70.98542022705072,61.12500000000006],[-70.76875305175776,61.07291793823242],[-70.55416870117182,61.014583587646484],[-70.4124984741211,61.02916717529297],[-70.30156707763672,61.09739303588873],[-70.09426879882812,60.97031021118164],[-70.05781555175781,60.838024139404354],[-69.90208435058594,60.79999923706055],[-69.83125305175781,60.8895835876466],[-69.65416717529291,60.87291717529291],[-69.68281555175781,60.98385620117193],[-69.59999847412104,61.07916641235363],[-69.46041870117188,61.025001525878906],[-69.3828125,60.9078102111817],[-69.410415649414,60.8125],[-69.6875,60.691665649414176],[-69.65833282470703,60.610416412353516],[-69.77916717529297,60.54375076293957],[-69.7125015258789,60.302082061767635],[-69.58333587646479,60.20833206176758],[-69.60624694824219,60.193748474121094],[-69.64167022705072,60.06041717529297],[-69.82343292236328,60.067184448242244],[-69.8640747070312,59.99487304687506],[-70.0812530517577,60.02083206176758],[-70.076416015625,59.959320068359375],[-69.7144775390625,59.96527099609375],[-69.58711242675781,59.87992095947277],[-69.60221862792963,59.793609619140625],[-69.5066680908202,59.67828369140631],[-69.63999938964844,59.58623886108404],[-69.6574478149414,59.46380615234375],[-69.5811157226562,59.32611083984375],[-69.45610809326166,59.359443664550724],[-69.2432861328125,59.33227539062506],[-69.22721862792963,59.22888946533209],[-69.37940216064453,59.190189361572266],[-69.37658691406239,59.12472152709972],[-69.5444946289062,58.809692382812614],[-69.68040466308588,58.80972290039074],[-69.68902587890625,58.94528579711914],[-69.82110595703125,59.03887939453125],[-69.78668212890625,58.83111572265625],[-70.06659698486328,58.78751373291021],[-69.8058853149414,58.58563232421869],[-69.57266235351551,58.78083038330084],[-69.38999938964838,58.87027740478521],[-69.23278045654297,58.903411865234375],[-68.97277832031244,58.88250732421881],[-68.635498046875,58.9102783203125],[-68.3483276367187,58.76892089843744],[-68.34417724609375,58.60192871093756],[-68.2699966430664,58.530277252197266],[-68.02999877929676,58.515834808349666],[-67.9271850585937,58.397521972656364],[-67.70610809326166,58.407222747802734],[-67.71379852294922,58.27891540527338],[-67.6303482055664,58.180130004882756],[-67.45611572265625,58.29722213745123],[-67.10277557373047,58.363334655761776],[-66.93457794189447,58.51336288452154],[-66.84664154052729,58.42551803588867],[-66.68220520019531,58.482524871826115],[-66.5433349609375,58.694721221923885],[-66.3786010742187,58.853065490722656],[-66.10166931152332,58.78916549682623],[-65.97949218749994,58.91912841796881],[-65.7677001953125,58.98272705078119],[-65.6527099609375,59.1116943359375],[-65.71995544433594,59.156166076660156],[-65.69776153564447,59.27889633178711],[-65.59447479248041,59.237220764160156],[-65.55090332031244,59.386108398437614],[-65.38166809082031,59.49722290039068],[-65.5327758789062,59.69970703124994],[-65.3727798461914,59.823333740234375],[-65.14987945556635,59.94138717651373],[-65.13333129882812,60.03958511352545],[-65.09166717529297,60.06041717529297],[-64.99739837646479,60.1265602111817],[-64.95573425292957,60.2578125],[-64.74635314941406,60.35510635375982],[-64.75794982910156,60.36343002319336],[-64.5942764282226,60.333507537841854],[-64.5859909057616,60.32933425903326],[-64.58405303955072,60.32915115356451],[-64.58007812499989,60.32877731323248],[-64.53440093994129,60.30833435058588],[-64.853775024414,60.26941299438482],[-64.59371948242176,60.117031097412166],[-64.74271392822266,60.05612945556646],[-64.8958740234375,60.066207885742244],[-64.75616455078125,59.8860321044923],[-64.86870574951172,59.58642578125],[-64.7285537719726,59.46663665771479],[-64.51159667968744,59.42298126220703],[-64.4603042602539,58.98151779174805],[-64.77924346923828,59.07495880126959],[-64.8403549194336,58.980327606201286],[-64.50891113281244,58.887584686279354],[-64.3325424194336,58.904563903808594],[-64.23365783691406,58.86411666870123],[-64.1377944946289,58.74616622924805],[-64.01973724365234,58.81666946411144],[-63.70999526977539,58.88705062866222],[-63.55078887939453,58.836551666259766],[-63.50679779052729,58.74257659912121],[-63.95025253295893,58.68524551391613],[-64.0472183227539,58.702629089355526],[-64.10494995117182,58.563228607177734],[-64.03408050537104,58.523448944091854],[-63.90736770629883,58.57349395751959],[-63.843101501464844,58.467826843261776],[-63.986579895019474,58.444358825683594],[-64.02253723144526,58.37102127075195],[-64.17222595214844,58.36187362670904],[-64.21777343749994,58.247734069824276],[-64.4217300415039,58.18667221069347],[-64.43309020996088,58.069908142089844],[-64.26926422119135,58.0614128112793],[-64.0719985961914,57.77002334594732],[-63.99725341796869,57.81208038330084],[-63.70277786254877,57.66376876831055],[-63.76548767089844,57.56076812744152],[-63.761257171630746,57.4393310546875],[-63.85581970214844,57.33430099487299],[-63.74146270751953,57.24076461791998],[-63.82014465332031,57.07550048828131],[-63.89007949829096,57.086082458496094],[-63.89950180053705,56.877304077148494],[-64.01298522949219,56.849845886230526],[-64.14531707763672,56.69975662231445],[-63.93106460571289,56.53376007080078],[-64.02214813232416,56.26781463623041],[-64.01805114746088,56.06726455688471],[-63.856178283691406,56.13713836669933],[-63.636722564697266,56.02352523803722],[-63.73394012451172,55.92801666259771],[-63.77702331542969,55.801479339599666],[-63.66849899291992,55.652286529541016],[-63.66539764404291,55.423049926757756],[-63.52994918823242,55.3418540954591],[-63.60648727416992,55.06119155883789],[-63.57630538940424,54.98810577392584],[-63.66128540039057,54.899951934814396],[-63.79171371459961,54.95589447021496],[-63.88974380493164,54.768360137939396],[-63.7689476013183,54.69984436035156],[-63.91144180297846,54.60425186157232],[-64.05427551269531,54.60090637207037],[-64.18775939941406,54.71083831787104],[-64.48529052734375,54.79372024536127],[-64.55688476562494,54.71366119384777],[-64.77808380126953,54.73346710205084],[-64.74787139892578,54.81399154663086],[-64.9719009399414,54.93739700317383],[-65.08581542968739,54.96956253051769],[-65.2096176147461,54.847957611083984],[-65.43462371826172,54.78418350219721],[-65.45552825927729,54.728584289550724],[-65.6931762695312,54.70816421508795],[-65.83831024169922,54.83652877807623],[-65.84984588623047,54.92721176147472],[-66.02339172363281,54.941951751708984],[-66.26028442382812,55.00018310546869],[-66.61803436279297,55.27815246582031],[-66.74890136718744,55.215698242187614],[-66.74937438964838,54.99999999999994],[-66.63200378417957,54.835697174072266],[-66.65943145751953,54.77021789550781],[-66.92704772949213,54.80217361450195],[-67.2574844360351,55.021274566650334],[-67.27281188964844,55.0764274597168],[-67.46370697021473,55.062858581543026],[-67.3351440429687,54.90348815917963],[-67.06290435791016,54.69293212890625],[-67.34923553466791,54.51699066162115],[-67.46763610839844,54.58375930786133],[-67.58165740966791,54.49411010742193],[-67.76896667480463,54.419555664062614],[-67.6799545288086,54.311923980712834],[-67.65704345703125,54.161525726318416],[-67.76503753662104,54.15700149536144],[-67.81466674804688,54.03207015991222],[-67.59630584716797,53.921695709228516],[-67.56676483154291,53.75593185424799],[-67.43373870849604,53.70650100708019],[-67.39472961425776,53.61465454101574],[-67.21877288818354,53.530338287353516],[-67.06202697753906,53.537078857421875],[-66.94452667236317,53.47605514526373],[-66.92287445068348,53.39993286132807],[-67.00612640380854,53.16847229003912],[-67.06848907470697,53.078872680664176],[-67.15422821044916,53.14722442626953],[-67.39233398437494,53.120857238769645],[-67.31682586669916,52.87544631958019],[-67.06700897216797,52.775115966796875],[-66.94957733154286,52.759597778320426],[-66.89476776123047,52.676673889160156],[-66.68662261962885,52.763713836670036],[-66.6258697509765,52.954257965088004],[-66.48863983154291,52.960449218750114],[-66.37973785400385,52.87748336791998],[-66.3908081054687,52.46593856811535],[-66.49051666259766,52.3416366577149],[-66.45408630371094,52.24627304077143],[-66.32357025146479,52.131816864013786],[-66.17697143554682,52.21329116821289],[-66.09636688232422,52.10780715942383],[-65.97039794921875,52.056503295898494],[-65.87699127197266,52.1104087829591],[-65.68656921386719,52.10375595092785],[-65.41228485107422,51.971313476562614],[-65.16230773925781,51.76458358764654],[-64.811767578125,51.77779769897472],[-64.65354919433594,51.70153427124018],[-64.55435943603516,51.5758056640625],[-64.27828979492188,51.74637985229492],[-64.3526992797851,51.84927749633795],[-64.28009796142578,51.974750518798885],[-64.22399139404297,52.22954177856445],[-64.10923004150385,52.39405822753906],[-64.21112060546875,52.573600769043026],[-64.1373825073241,52.7292366027832],[-63.937416076660156,52.731025695800724],[-63.87294006347656,52.773963928222656],[-63.59637451171875,52.79558944702143],[-63.45943832397461,52.71809768676769],[-63.429420471191406,52.6455192565918],[-63.850959777831974,52.62247085571295],[-64.0379409790039,52.560955047607536],[-64.09351348876942,52.466072082519645],[-64.01271820068354,52.362594604492244],[-63.82686233520502,52.330837249755916],[-63.75156784057617,52.26065444946295],[-63.67749404907221,52.08309936523432],[-63.808109283447266,51.99784851074219],[-61.806522369384766,51.9958114624024],[-57.1077880859375,51.99847412109375],[-57.10839843749994,51.42510986328125],[-57.24164962768543,51.504863739013786],[-57.86611175537104,51.395278930664176],[-57.98426437377924,51.31913375854492],[-58.307106018066406,51.26093673706049],[-58.42913818359369,51.31390762329113],[-58.62413024902344,51.20913696289074],[-58.96821975708008,50.967144012451286],[-58.97095489501953,50.81479644775396],[-59.324443817138615,50.69194412231457],[-59.45076370239258,50.623424530029354],[-59.58000183105469,50.47499847412121],[-59.8191299438476,50.42932128906256],[-59.8813858032226,50.29243087768555],[-60.13444519042969,50.22360992431652],[-60.29277801513672,50.27500152587896],[-60.374412536621094,50.22274398803722],[-60.61222076416004,50.201389312744254],[-60.764999389648324,50.23333358764654],[-61.07859420776367,50.18400955200207],[-61.21350479125971,50.19815063476568],[-61.45957565307617,50.16277313232416],[-61.75026321411133,50.08623123168945],[-61.873649597167855,50.22325897216797],[-62.0011100769043,50.20833206176758],[-62.41722106933588,50.28833389282238],[-62.61277770996094,50.260276794433594],[-62.770557403564396,50.28861236572277],[-63.14939498901367,50.287490844726676],[-63.17309188842768,50.24111175537121],[-63.40048599243164,50.2008323669433],[-63.606109619140625,50.23643112182623],[-63.74222183227539,50.29388809204113],[-64.08555603027344,50.29138946533203],[-64.16777801513666,50.25555419921881],[-64.41999816894531,50.31635284423828],[-64.5466690063476,50.283611297607365],[-64.9922256469726,50.266944885253906],[-65.34915924072266,50.30376052856451],[-65.69208526611328,50.25513839721691],[-65.99364471435547,50.2716178894043],[-66.0566635131836,50.20333480834961],[-66.3604888916015,50.186061859130916],[-66.45555877685541,50.269443511963004],[-66.5194473266601,50.16333389282232],[-66.70388793945307,50.1072235107423],[-66.7261123657226,50.053054809570426],[-66.9563522338866,49.98143768310547],[-67.01444244384766,49.850276947021484],[-67.17722320556629,49.76889038085949],[-67.16555786132807,49.668609619140625],[-67.23444366455067,49.59416580200195],[-67.24111175537104,49.45639038085943],[-67.38416290283197,49.316112518310604],[-67.50888824462885,49.325279235839844],[-68.1263656616211,49.270774841308594],[-68.1905517578125,49.099445343017635],[-68.39527893066406,49.046665191650504],[-68.57522583007812,49.06093978881847],[-68.6338882446289,48.944442749023494],[-68.79305267333984,48.885555267333984],[-69.0716552734375,48.72494888305664],[-69.15111541748041,48.56259155273443],[-69.28227996826172,48.4705543518067],[-69.46542358398438,48.26993179321295],[-69.72753906249989,48.107814788818416],[-69.80516815185536,47.91068267822271],[-69.90542602539062,47.76985168457031],[-70.12638854980469,47.650222778320256],[-70.23222351074207,47.48744201660162],[-70.4527740478515,47.42605590820324],[-70.71583557128906,47.10827636718756],[-70.9030151367187,47.02995681762701],[-71.19249725341797,46.848609924316406],[-71.29314422607422,46.74730300903326],[-71.5197982788086,46.715236663818416],[-71.72074127197266,46.65457153320324],[-71.8599853515625,46.67864990234375],[-72.04989624023432,46.58495712280279],[-72.19470977783203,46.550594329833984],[-72.29595184326166,46.43085098266607],[-72.48439788818354,46.38237762451183],[-72.6557388305664,46.270465850830135],[-72.84984588623041,46.243556976318416],[-73.06208038330078,46.17409896850586],[-73.1727447509765,46.101211547851676],[-73.2072525024414,45.96854019165045],[-73.49251556396479,45.69309997558588],[-73.52641296386719,45.461235046386776],[-73.6278457641601,45.40982055664074],[-73.783218383789,45.4362144470216],[-73.8902587890625,45.34836959838867],[-74.14891815185547,45.3034400939942],[-74.3460464477539,45.2066535949707],[-74.47220611572266,45.30266571044916],[-74.38127136230463,45.56610870361328],[-74.6380615234375,45.638759613037166],[-74.94300842285156,45.643405914306584],[-75.12277221679688,45.577087402343864],[-75.67756652832031,45.460849761963004],[-75.7970199584961,45.37832260131836],[-75.98715972900385,45.47964477539074],[-76.20100402832031,45.51887893676758],[-76.36174011230463,45.45709228515631],[-76.6600112915039,45.56063461303705],[-76.76689147949207,45.73269653320318],[-76.78015899658203,45.87237167358404],[-76.92756652832026,45.89225769042969],[-76.98497772216791,45.78607559204096],[-77.1903305053711,45.863861083984375],[-77.31474304199213,46.026851654052734],[-77.56607818603516,46.15922164916992],[-78.05554962158203,46.24384689331049],[-78.1299438476562,46.274505615234375],[-78.31236267089844,46.25236892700207],[-78.38838958740229,46.29168701171875],[-78.6758422851562,46.318241119384766],[-78.9898681640625,46.54885482788086],[-79.1708145141601,46.82523345947271],[-79.2138442993164,46.83330917358404],[-79.44299316406244,47.100997924804744],[-79.42684173583984,47.250068664550724],[-79.58103942871094,47.41511535644531],[-79.517822265625,47.5583229064942],[-79.51788330078125,51.00970458984375],[-79.51565551757807,51.459987640380916],[-79.5377197265625,51.54172897338867],[-79.31777954101551,51.66361236572277],[-79.25439453125,51.534484863281364],[-79.0955810546875,51.53228759765625],[-78.8983154296875,51.37890624999994],[-78.7738265991211,51.47752761840826],[-78.83999633789062,51.59888839721691],[-78.98999786376947,51.703056335449276],[-78.97418975830078,51.79922866821289],[-78.85574340820312,51.80199050903332],[-78.85882568359375,51.937667846679744],[-78.75483703613281,51.956161499023494],[-78.58000183105463,52.10277938842785],[-78.5054931640625,52.31451416015625],[-78.4993896484375,52.46612548828125],[-78.727783203125,52.567504882812614],[-78.79058837890614,52.740905761718864],[-78.76940917968744,52.8538818359375],[-78.88055419921875,52.88277816772461],[-78.85168457031244,53.008117675781364],[-78.9216918945312,53.054687500000114],[-78.95722198486328,53.18277740478521],[-78.94555664062494,53.39527893066412],[-79.066665649414,53.43444442749029],[-78.96166992187494,53.537498474121094],[-79.07567596435547,53.7441864013673],[-79.03559875488281,53.95503616333019],[-79.1466674804687,54.08893203735363],[-79.3294448852539,54.17250061035162],[-79.48833465576172,54.367221832275504],[-79.47552490234375,54.45194625854492],[-79.5765991210937,54.61669921875006],[-79.56222534179688,54.72305679321295],[-79.04222106933594,54.8233528137207],[-78.8363265991211,54.910812377929744],[-78.31675720214844,55.042301177978516],[-78.1288833618164,55.14845657348644],[-77.79638671875,55.260681152343864],[-77.62802124023438,55.381511688232536],[-77.12182617187494,55.66229248046875],[-77.0942153930664,55.742874145507926],[-76.71844482421864,56.02268600463867],[-76.62000274658197,56.15916824340832],[-76.38444519042963,56.112220764160156],[-76.13833618164062,56.09777832031256],[-75.9594116210937,56.18583297729498],[-76.29833221435541,56.33611297607422],[-76.38777923583979,56.45225143432623],[-76.45610809326172,56.253334045410156],[-76.54499816894531,56.16527938842785],[-76.53498840332031,56.83475494384771],[-76.55558013916016,57.08020782470703],[-76.65885925292969,57.36804962158209],[-76.77661132812494,57.492492675781364],[-76.8961181640625,57.70672607421869],[-77.09222412109375,57.94030761718756],[-77.3672256469726,58.08916854858404],[-77.50833129882812,58.22194290161144],[-77.60498046874989,58.23052978515625],[-78.03344726562494,58.36652374267578],[-78.04791259765625,58.422912597656364],[-78.5062255859375,58.62979507446289],[-78.48345184326172,58.75757217407221],[-78.5795288085937,58.8980712890625],[-78.50988769531244,58.93450927734375],[-78.36845397949219,58.90451812744152],[-78.2394409179687,59.078887939453125],[-78.10278320312494,59.2033576965332],[-78.00499725341797,59.213054656982365],[-77.75219726562494,59.378112792968864],[-77.90777587890625,59.46807861328131],[-77.7388916015625,59.57171630859369],[-77.80889892578125,59.678894042968864],[-77.4494018554687,59.78369140625],[-77.39501190185547,59.86806106567383],[-77.47129821777344,59.91902923583996],[-77.39167022705078,60.04375076293945],[-77.44583129882812,60.03125],[-77.60624694824219,60.08541488647472],[-77.51927185058594,60.243228912353516],[-77.5562515258789,60.28749847412121],[-77.60416412353516,60.3270835876466],[-77.69999694824219,60.35833358764654],[-77.74166870117188,60.42916488647455],[-77.62083435058594,60.49583435058588],[-77.8348999023437,60.657810211181754],[-77.83541870117188,60.76666641235357],[-78.10416412353516,60.808334350585994],[-78.19739532470697,60.855728149414176],[-77.99114990234375,60.98698043823248],[-77.84374999999994,61.04791641235346],[-77.74583435058588,61.222915649414006],[-77.78749847412104,61.41249847412104],[-77.55000305175781,61.63541793823242],[-77.722915649414,61.59166717529297],[-77.78749847412104,61.687500000000114],[-77.95833587646484,61.68333435058605],[-78.08489990234375,61.85260391235363],[-78.08125305175781,61.92708206176758],[-78.18281555175781,62.149478912353516],[-78.14583587646484,62.28749847412115],[-78.09947967529297,62.384899139404354],[-77.83333587646484,62.42916488647472],[-77.5078125,62.576564788818416],[-77.1390609741211,62.52864837646496],[-76.80000305175781,62.52083206176758],[-76.5921859741211,62.4473991394043],[-76.30833435058588,62.41875076293945],[-75.61927032470703,62.2869758605957],[-75.27083587646479,62.29583358764654],[-74.92500305175781,62.254165649414176],[-74.68541717529297,62.13958358764654],[-74.70833587646484,62.252082824707145],[-74.39375305175776,62.24583435058588],[-74.2604141235351,62.31666564941412],[-74.09583282470697,62.33750152587896],[-73.9078140258789,62.43281555175781],[-73.66510009765625,62.476562500000114],[-73.54166412353504,62.37708282470703],[-73.2249984741211,62.32291793823248],[-73.03333282470697,62.17916488647455],[-72.87916564941406,62.14166641235357]]],[[[-74.47447967529297,62.719268798828125],[-74.35624694824219,62.66875076293957],[-74.17916870117182,62.68125152587902],[-74.11458587646484,62.59375],[-74.55052185058588,62.67239379882818],[-74.47447967529297,62.719268798828125]]],[[[-78.1473999023437,63.47760391235357],[-77.81458282470697,63.460414886474666],[-77.64375305175781,63.418750762939396],[-77.50624847412104,63.260417938232536],[-77.55260467529291,63.173435211181754],[-77.93958282470703,63.08958435058605],[-78.0729141235351,63.14583206176758],[-78.47135162353516,63.38072586059576],[-78.504165649414,63.43333435058588],[-78.1473999023437,63.47760391235357]]],[[[-77.29948425292963,63.690101623535156],[-77.03124999999989,63.674999237060604],[-76.722915649414,63.57500076293945],[-76.58958435058588,63.4208335876466],[-76.6937484741211,63.36249923706055],[-76.94583129882812,63.39583206176769],[-77.39167022705078,63.58333206176769],[-77.29948425292963,63.690101623535156]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Québec","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":"Lower Canada"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102,60.00000000000006],[-102,59.3073463439942],[-101.99999237060547,59.30723953247082],[-101.99999237060547,59.29595565795904],[-102,59.27099227905285],[-102,59.14680862426769],[-102,59.03860855102545],[-102,59.02693939208996],[-102,59.01985168457037],[-102,59.01180648803722],[-102,59.007614135742244],[-102,58.9495849609375],[-102,58.94940185546875],[-102,58.74494171142578],[-101.99999237060547,58.744815826416016],[-102,58.6631431579591],[-102,58.662860870361385],[-102,58.58963012695307],[-102,58.581077575683594],[-102,58.53668212890631],[-102,58.51985168457031],[-102,58.479991912841854],[-102.00000762939453,58.36177062988281],[-102,57.21680831909174],[-102,57.21410751342785],[-102,57.07024765014654],[-102,57.07008361816406],[-102,57.002792358398494],[-102,57.000000000000114],[-102,56.97987365722656],[-102,56.979717254638786],[-102,56.89306640625],[-102,56.87717437744152],[-102,56.752265930175895],[-102,56.75118637084972],[-102,56.57737350463873],[-102,56.57289886474615],[-102,56.451946258545036],[-102,56.45178604125971],[-102,56.01438903808594],[-102,56.000000000000114],[-102,55.99990463256847],[-102,55.96755218505871],[-101.95087432861328,55.814037322998104],[-101.95515441894531,55.512714385986385],[-101.95520782470697,55.50004196166992],[-101.91476440429688,55.421249389648665],[-101.91478729248041,55.41780471801769],[-101.920166015625,55.11171340942383],[-101.8797988891601,55.10586929321295],[-101.8797988891601,55.105594635009766],[-101.8818969726562,54.90958786010765],[-101.8818969726562,54.909465789795206],[-101.8819732666015,54.89885330200195],[-101.8819732666015,54.898700714111385],[-101.84339141845703,54.74309921264654],[-101.84355926513666,54.74309539794922],[-101.84722900390625,54.552505493164176],[-101.8475112915039,54.539932250976676],[-101.8111572265625,54.41405868530279],[-101.81122589111322,54.064228057861555],[-101.76824951171875,54.0644264221192],[-101.7703018188476,53.70927047729492],[-101.73490142822266,53.622230529785384],[-101.73489379882812,53.62211608886747],[-101.73486328125,53.616142272949276],[-101.73486328125,53.61600494384777],[-101.73486328125,53.61510848999029],[-101.73485565185547,53.61501693725586],[-101.73485565185547,53.61295318603527],[-101.73484802246094,53.61268234252941],[-101.73484802246094,53.61259460449213],[-101.73484802246094,53.61241149902338],[-101.73484802246094,53.61104583740246],[-101.73484039306635,53.61088562011736],[-101.73484039306635,53.60720443725603],[-101.73484039306635,53.6071128845216],[-101.73483276367182,53.60639572143549],[-101.73483276367182,53.6063041687014],[-101.73484039306635,53.60477828979498],[-101.73484802246094,53.60468673706049],[-101.73484039306635,53.60369873046875],[-101.73484039306635,53.60351943969755],[-101.73485565185547,53.60054397583008],[-101.73485565185547,53.600444793701286],[-101.73484802246094,53.599456787109375],[-101.73484802246094,53.599273681640625],[-101.73485565185547,53.599094390869254],[-101.73485565185547,53.598735809326286],[-101.73485565185547,53.598556518554744],[-101.73485565185547,53.595413208007926],[-101.73486328125,53.595230102539176],[-101.73487091064453,53.594062805175895],[-101.73487091064453,53.593883514404354],[-101.73487091064453,53.589035034179744],[-101.73487854003906,53.588943481445256],[-101.73487854003906,53.586700439453125],[-101.73487854003906,53.586608886718864],[-101.7348861694336,53.58611297607422],[-101.7348861694336,53.585979461670036],[-101.7348861694336,53.585079193115234],[-101.73489379882812,53.584991455078296],[-101.7348861694336,53.584003448486385],[-101.7348861694336,53.583915710449276],[-101.73489379882812,53.58265686035173],[-101.73489379882812,53.58253860473661],[-101.73489379882812,53.582386016845874],[-101.73490142822266,53.5816535949707],[-101.73489379882812,53.581489562988565],[-101.73490142822266,53.580768585205135],[-101.73489379882812,53.580589294433764],[-101.73489379882812,53.580139160156534],[-101.73489379882812,53.580051422119425],[-101.73490142822266,53.578704833984375],[-101.73490142822266,53.578613281250114],[-101.73490142822266,53.57618713378923],[-101.73490905761713,53.57608032226568],[-101.73491668701166,53.574302673339844],[-101.73490905761713,53.574119567871094],[-101.73490905761713,53.573581695556754],[-101.73491668701166,53.573417663574276],[-101.73491668701166,53.573314666748104],[-101.73491668701166,53.57322311401367],[-101.73491668701166,53.572505950927734],[-101.73491668701166,53.57241439819347],[-101.73491668701166,53.57124710083019],[-101.73491668701166,53.5711555480957],[-101.73491668701166,53.57088851928722],[-101.7349243164062,53.57079696655296],[-101.7349243164062,53.570705413818644],[-101.7349243164062,53.56949996948248],[-101.7349243164062,53.569358825683594],[-101.7349243164062,53.568283081054744],[-101.73493194580072,53.56819152832031],[-101.7349243164062,53.56720352172874],[-101.7349243164062,53.567115783691634],[-101.7349243164062,53.56567764282249],[-101.73493194580072,53.565586090087834],[-101.7349395751952,53.56423950195318],[-101.7349395751952,53.56414794921869],[-101.7349395751952,53.564060211181584],[-101.7349395751952,53.56396865844732],[-101.73493194580072,53.5631637573245],[-101.73493194580072,53.56307220459007],[-101.7349395751952,53.56298065185558],[-101.7349395751952,53.56280136108404],[-101.7349395751952,53.56271362304693],[-101.7349395751952,53.5618133544923],[-101.7349395751952,53.56172180175781],[-101.73494720458984,53.56046676635742],[-101.73494720458984,53.56028747558605],[-101.7349395751952,53.55947875976568],[-101.7349395751952,53.55938720703119],[-101.73494720458984,53.55534744262695],[-101.73495483398438,53.55525588989269],[-101.7349624633789,53.55390930175781],[-101.7349624633789,53.55381774902355],[-101.73495483398438,53.55282974243164],[-101.73495483398438,53.55273818969732],[-101.7349624633789,53.55265045166027],[-101.7349624633789,53.55237960815441],[-101.7349624633789,53.55220031738281],[-101.73497009277344,53.55130386352539],[-101.7349624633789,53.55112457275402],[-101.7349624633789,53.55031585693365],[-101.7349624633789,53.55013656616205],[-101.73497009277344,53.54923629760742],[-101.7349624633789,53.54905700683605],[-101.73497772216797,53.54735183715826],[-101.73497772216797,53.54726028442394],[-101.73497772216797,53.54717254638666],[-101.73497772216797,53.5470809936524],[-101.73497772216797,53.54501342773443],[-101.7349853515625,53.54492568969738],[-101.73497772216797,53.54384613037115],[-101.73497772216797,53.54366683959961],[-101.7349853515625,53.54357528686529],[-101.7349853515625,53.54339981079113],[-101.7349853515625,53.54294967651367],[-101.7349853515625,53.5427703857423],[-101.73497772216797,53.54249954223627],[-101.7349853515625,53.54238128662138],[-101.7349853515625,53.54222869873064],[-101.7349853515625,53.54187011718767],[-101.7349853515625,53.54169082641613],[-101.7349853515625,53.53998565673828],[-101.7349853515625,53.53980255126953],[-101.7349853515625,53.53845596313488],[-101.73499298095703,53.53836822509777],[-101.7350006103515,53.53701782226574],[-101.7350006103515,53.53693008422863],[-101.7350006103515,53.536434173583984],[-101.73499298095703,53.53630065917963],[-101.73499298095703,53.53594207763672],[-101.73499298095703,53.5358505249024],[-101.7350006103515,53.53576278686529],[-101.73500823974604,53.53324508666998],[-101.73500823974604,53.53306579589838],[-101.7350006103515,53.53216934204113],[-101.7350006103515,53.53199005126959],[-101.73500823974604,53.53181076049816],[-101.73500823974604,53.53144836425787],[-101.73500823974604,53.53136062622076],[-101.73501586914057,53.53046035766613],[-101.73500823974604,53.53037261962902],[-101.7022094726562,53.36434936523443],[-101.70069122314447,53.01148986816412],[-101.66970062255854,52.85924148559582],[-101.66979980468744,52.85914611816435],[-101.5775527954101,51.96853637695318],[-101.57046508789062,51.30188751220703],[-101.53916931152344,51.301719665527344],[-101.508544921875,50.948207855224666],[-101.50926971435541,50.593273162841854],[-101.47529602050781,50.59421539306635],[-101.41925811767572,49.887104034424],[-101.41864776611328,49.53269577026367],[-101.36248016357422,49.000080108642805],[-106.10797119140625,49.00104141235357],[-110.00502014160156,49.00005722045904],[-110.00567626953114,54.74772644042969],[-110.00011444091791,55.33396911621088],[-110,60.00000000000006],[-102,60.00000000000006]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","TYPE_1":"Province","ENGTYPE_1":"Province","NL_NAME_1":"","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-138.42291259765625,69.21875],[-138.38333129882812,69.23750305175787],[-138.36874389648438,69.28958129882818],[-138.28489685058594,69.206771850586],[-138.01249694824213,69.11250305175781],[-137.2041625976562,68.92708587646501],[-137.10208129882812,68.92708587646501],[-137.0333404541015,68.93750000000006],[-136.86041259765625,68.87499999999994],[-136.55833435058588,68.87291717529314],[-136.46864318847656,68.87801361083996],[-136.46861267089832,68.87083435058594],[-136.46859741210932,68.86666870117188],[-136.45835876464844,67.81291198730474],[-136.44877624511707,67.64947509765653],[-136.28988647460932,67.63423156738293],[-136.19998168945312,67.56166076660156],[-136.13749694824207,67.23263549804688],[-136.23509216308594,67.17253875732422],[-136.16441345214844,67.00000000000006],[-133.8296356201172,67.00000000000006],[-133.94329833984375,66.90526580810558],[-133.75965881347656,66.80102539062523],[-133.84632873535156,66.72279357910156],[-133.67677307128906,66.58317565917969],[-133.7857666015625,66.29537963867188],[-133.62623596191406,66.29861450195312],[-133.54891967773432,66.1699905395509],[-133.6583251953124,65.95967864990234],[-133.40518188476557,65.93885803222656],[-133.1280670166015,66.03093719482433],[-132.921142578125,66.02041625976574],[-132.909210205078,65.88404846191418],[-132.65660095214844,66.01583099365263],[-132.49453735351557,65.9719924926759],[-132.56369018554682,65.83016967773438],[-132.31346130371094,65.73986053466808],[-132.16831970214844,65.60242462158203],[-132.37643432617188,65.40235900878906],[-132.53713989257812,65.3504638671875],[-132.772720336914,65.1830444335938],[-132.54273986816406,65.08989715576172],[-132.3361053466797,65.06072235107422],[-132.5460357666015,64.7702407836914],[-132.35696411132812,64.78317260742182],[-132.03771972656244,64.69642639160156],[-131.93809509277344,64.59033966064447],[-131.71604919433588,64.47549438476574],[-131.8084259033203,64.36882019042974],[-131.62351989746094,64.35366821289062],[-131.2955322265625,64.44678497314453],[-131.06817626953125,64.36132049560547],[-130.94395446777338,64.18578338623041],[-130.95541381835932,64.1133193969726],[-130.77569580078125,63.976249694824276],[-130.44290161132807,63.891143798828125],[-130.33935546875,63.81327819824213],[-130.1442413330078,63.861423492431754],[-130.0813598632812,63.60802459716808],[-129.96246337890625,63.60980224609375],[-129.86621093749994,63.3670768737793],[-130.05796813964844,63.30415725708008],[-129.74070739746088,63.06051254272472],[-129.58857727050776,63.04216384887701],[-129.6752166748047,62.92645645141596],[-129.66526794433588,62.81420135498058],[-129.5666961669922,62.6811790466308],[-129.32427978515625,62.52460479736334],[-129.2124633789062,62.50450515747082],[-129.2696685791015,62.2579803466798],[-129.12887573242188,62.09945678710943],[-128.94467163085932,62.11908340454096],[-128.73036193847656,62.04314041137707],[-128.66903686523438,62.109077453613224],[-128.5496368408203,62.11625289916992],[-128.24858093261713,61.937030792236385],[-128.18833923339844,61.82841873168945],[-128.0206451416015,61.82353973388666],[-128.04745483398432,61.72872161865246],[-127.76680755615223,61.594139099121094],[-127.46918487548828,61.48515701293951],[-127.23783874511719,61.500175476074276],[-127.1029586791991,61.45814895629894],[-126.99640655517572,61.2221412658692],[-127.07243347167963,61.06659698486334],[-126.96612548828125,61.05006790161133],[-126.85358428955078,60.93163299560558],[-126.84514617919916,60.77497863769537],[-126.63904571533203,60.730789184570426],[-126.48637390136713,60.80014801025396],[-126.28349304199219,60.75883102416992],[-126.18123626708984,60.84176254272461],[-126.06334686279291,60.85136795043951],[-125.96680450439453,60.7892417907716],[-125.83222961425781,60.881286621093864],[-125.66963958740234,60.803108215331974],[-125.5337905883789,60.81235504150396],[-125.26406860351557,60.76834869384777],[-125.14788055419922,60.83250808715826],[-124.82579803466797,60.837047576904354],[-124.7661514282226,60.958061218261776],[-124.53938293457026,60.93860626220709],[-124.49178314208979,60.72839736938488],[-124.5710678100586,60.6414146423341],[-124.44719696044922,60.572807312011776],[-124.3891372680664,60.458461761474666],[-124.19786071777338,60.44591522216797],[-124.21446990966786,60.364570617675895],[-124.12383270263672,60.20600128173834],[-124.0000610351562,60.10889816284191],[-123.78933715820312,60.00003433227539],[-139.05220031738276,60.00004196166992],[-139.177017211914,60.08286285400402],[-139.05207824707026,60.353725433349666],[-139.68006896972656,60.3357200622558],[-139.9740753173828,60.184513092041016],[-140.44796752929688,60.30796432495123],[-140.5203399658203,60.21905899047857],[-141.00157165527344,60.305068969726676],[-141.00233459472656,67.06340026855463],[-141.00686645507812,67.99990081787121],[-141.00303649902338,69.64615631103533],[-140.39166259765625,69.58750152587896],[-139.92083740234375,69.61042022705107],[-139.78541564941406,69.59999847412126],[-139.52551269531244,69.52239990234375],[-139.33541870117182,69.53125000000006],[-139.15208435058594,69.50208282470732],[-138.8895874023437,69.38333129882812],[-138.42291259765625,69.21875]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":13,"NAME_1":"Yukon","TYPE_1":"Territoire","ENGTYPE_1":"Territory","NL_NAME_1":"","VARNAME_1":"Yukon Territory|Territoire du Yukon|Yukon|Yuk¢n"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson
new file mode 100644
index 0000000..65522ac
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson
@@ -0,0 +1,36 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.63211059570311,31.139343261718803],[119.6291732788087,31.021799087524524],[119.554443359375,30.889356613159123],[119.57026672363315,30.838838577270565],[119.41265869140635,30.647205352783484],[119.3431854248048,30.67206382751476],[119.23678588867232,30.551254272460934],[119.32295989990246,30.53394317626976],[119.32678985595727,30.37599563598644],[119.20927429199241,30.29532051086443],[119.05308532714865,30.308387756347773],[118.94409942626952,30.363153457641882],[118.87991333007834,30.32014274597196],[118.86558532714855,30.10835075378418],[118.89150238037132,29.951297760009762],[118.74845886230491,29.83928489685064],[118.72238159179733,29.7166423797608],[118.57234954833984,29.635986328125053],[118.47203063964844,29.506912231445426],[118.30193328857422,29.477258682251147],[118.18945312500023,29.39522171020536],[118.1384963989259,29.49219703674339],[118.00888824462902,29.57979393005371],[117.87139892578125,29.548921585083125],[117.70237731933605,29.5515861511231],[117.64278411865244,29.617582321166992],[117.53356170654297,29.60194969177246],[117.449600219727,29.751541137695312],[117.33312988281283,29.850299835205135],[117.24764251708984,29.83720207214384],[117.21170806884788,29.929412841796985],[117.12251281738293,29.89785194396973],[117.1075592041018,29.714485168457202],[116.99089813232432,29.685926437377987],[116.83589935302734,29.573484420776534],[116.70677947998045,29.587591171264588],[116.6518249511722,29.688985824585018],[116.8073425292971,29.814264297485465],[116.89521026611362,29.952171325683594],[116.67045593261764,30.074922561645565],[116.58567047119142,30.05631828308111],[116.54703521728537,29.917903900146655],[116.4651412963867,29.900489807128906],[116.27577972412121,29.791370391845756],[116.12962341308592,29.824850082397575],[116.06858062744139,29.972360610962028],[116.0590591430664,30.209255218505916],[115.87910461425791,30.385009765625057],[115.90872955322298,30.517946243286133],[115.76095581054686,30.674276351928942],[115.83775329589854,30.839673995971737],[116.00116729736374,30.94951629638672],[115.87502288818358,31.144224166870117],[115.75873565673872,31.12035369873058],[115.6955490112307,31.20327758789068],[115.55741119384766,31.159700393676868],[115.36437225341831,31.40503883361816],[115.37071228027344,31.501697540283487],[115.48127746582043,31.612388610839897],[115.49180603027344,31.67566680908203],[115.67327880859398,31.782377243041935],[115.87413024902388,31.77674865722656],[115.90435791015625,31.8200187683106],[115.93076324462913,32.16601943969732],[115.88243865966797,32.419975280761776],[115.82931518554733,32.526969909668026],[115.61597442626953,32.410995483398494],[115.53920745849655,32.42340850830084],[115.40228271484375,32.552547454833984],[115.19152832031249,32.59048080444353],[115.17764282226598,32.796249389648665],[115.13391113281261,32.8995246887207],[114.9339981079106,32.93647766113287],[114.88988494873068,33.08601379394537],[115.10659027099632,33.08357620239258],[115.2856903076174,33.13598632812506],[115.35664367675805,33.32394409179682],[115.30757141113281,33.43203735351574],[115.40752410888672,33.55921554565424],[115.63195037841808,33.58683776855469],[115.59094238281263,33.72902297973633],[115.6263122558596,33.8379364013673],[115.5492858886721,33.89166641235346],[115.59432983398482,34.033966064453175],[115.72204589843751,34.08029937744146],[115.85777282714855,34.00820159912115],[115.95223236083984,34.00925445556634],[115.97711944580101,33.91727066040039],[116.1498565673828,33.711246490478516],[116.36834716796888,33.78225708007824],[116.43643951416027,33.85443878173828],[116.56187438964866,33.90975570678722],[116.63354492187501,33.98846435546869],[116.5594177246096,34.09311294555664],[116.51093292236327,34.297325134277344],[116.38353729248071,34.28071594238281],[116.17365264892611,34.431613922119254],[116.18591308593749,34.57946777343756],[116.36860656738281,34.64086914062506],[116.61669921875,34.48976135253906],[116.72081756591807,34.477474212646484],[116.82304382324264,34.39001083374035],[116.91522979736362,34.40842437744152],[117.01844024658203,34.17945861816412],[117.18663024902355,34.07017898559582],[117.34713745117199,34.09105300903326],[117.40442657470703,34.02824020385742],[117.50904083251953,34.06224822998058],[117.57020568847666,33.98442840576183],[117.75293731689489,33.88705825805675],[117.72579956054699,33.72898101806646],[117.93129730224608,33.73094177246105],[118.11162567138695,33.76447296142584],[118.16163635253918,33.713794708252],[117.96639251708984,33.28302764892584],[118.0342712402347,33.14204406738281],[118.20837402343749,33.19346237182623],[118.25928497314463,32.94922637939459],[118.24067687988281,32.84984970092785],[118.36602020263673,32.72114562988287],[118.70691680908226,32.72151565551775],[118.74137878417969,32.85739898681635],[118.84521484375045,32.95954895019537],[119.00771331787155,32.96199798584007],[119.11176300048827,32.824146270751946],[119.17800140380871,32.83283233642578],[119.21438598632812,32.63367843627935],[119.12901306152366,32.49342727661133],[118.71678161621092,32.61086273193365],[118.55628967285168,32.56743240356445],[118.68303680419945,32.476543426513956],[118.65695190429732,32.22014617919933],[118.50152587890636,32.196231842041186],[118.49331665039072,32.125400543213175],[118.38770294189487,32.083293914795036],[118.36409759521483,31.937202453613338],[118.4591293334962,31.87640190124506],[118.48813629150413,31.78578758239757],[118.68673706054686,31.71233558654785],[118.67173767089844,31.64154243469238],[118.85961151123047,31.624330520629996],[118.8759994506836,31.451343536377234],[118.70227050781249,31.30001449584961],[118.78681945800804,31.232364654541072],[119.08900451660156,31.237642288208065],[119.15931701660166,31.300914764404236],[119.47254943847669,31.15841674804693],[119.63211059570311,31.139343261718803]]]},"properties":{"ID_0":49,"ISO":"CN-34","NAME_0":"China","ID_1":1,"NAME_1":"Anhui","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"安徽|安徽","VARNAME_1":"Ānhuī"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[117.37973785400412,40.22687149047863],[117.3344192504884,40.14122009277344],[117.19398498535168,40.08278274536133],[117.0112533569337,40.03260803222667],[116.83486938476608,40.04358673095703],[116.75610351562511,39.966316223144524],[116.77923583984408,39.90305328369146],[116.91946411132811,39.84259796142584],[116.89429473876953,39.69630813598633],[116.79938507080122,39.610008239746094],[116.599464416504,39.62915420532221],[116.34479522705078,39.44854354858398],[116.13475799560547,39.56499862670904],[115.92529296875011,39.59505462646496],[115.75010681152365,39.5117301940918],[115.6816635131838,39.599796295166016],[115.56856536865256,39.59565353393555],[115.46726226806652,39.67020416259777],[115.53909301757812,39.797416687011776],[115.4408187866211,40.02623367309582],[115.67327880859398,40.13534545898443],[115.82250213623057,40.140216827392635],[115.95513153076172,40.261817932128956],[115.72922515869152,40.50187301635748],[115.90907287597655,40.61767959594738],[115.9893035888673,40.5810317993164],[116.10874938964855,40.62240600585932],[116.24459075927746,40.787345886230575],[116.45445251464842,40.79011154174816],[116.45097351074232,40.97891235351562],[116.66688537597666,40.97671127319336],[116.71550750732433,40.9009628295899],[116.83230590820312,40.840320587158146],[116.99423217773438,40.692958831787166],[117.13343048095736,40.70161437988281],[117.32102966308616,40.6551971435548],[117.29975891113315,40.5773315429688],[117.1950912475586,40.49690246582025],[117.26734161376952,40.307861328125114],[117.37973785400412,40.22687149047863]]]},"properties":{"ID_0":49,"ISO":"CN-11","NAME_0":"China","ID_1":2,"NAME_1":"Beijing","TYPE_1":"Zhíxiáshì","ENGTYPE_1":"Municipality","NL_NAME_1":"北京|北京","VARNAME_1":"Běijīng"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.57660675048832,31.733167648315373],[109.71514129638666,31.71221542358404],[109.74819946289062,31.615152359008903],[109.93403625488287,31.5234375],[110.05512237548832,31.41599845886231],[110.13822174072283,31.395578384399474],[110.19042968750028,31.150600433349723],[110.1156921386718,31.0982990264892],[110.16403198242193,30.986728668213004],[110.0757064819336,30.804096221923825],[109.89366149902355,30.89163589477539],[109.77353668212908,30.85263252258295],[109.63980102539057,30.716789245605412],[109.44674682617216,30.61709213256847],[109.37458801269537,30.51461982727062],[109.31575012207026,30.62170791625971],[109.1465530395509,30.53647994995117],[109.11232757568365,30.649772644043026],[108.95596313476568,30.6227264404298],[108.81961822509793,30.49818611145025],[108.72857666015648,30.500770568847713],[108.68711090087908,30.589031219482703],[108.55462646484396,30.47736167907709],[108.4205703735352,30.488988876342884],[108.40393829345709,30.37798500061041],[108.5693817138673,30.25385475158697],[108.5248107910158,30.07951164245605],[108.51653289794949,29.870521545410153],[108.38242340087896,29.854690551757812],[108.45027160644537,29.74233245849626],[108.58754730224626,29.858566284179744],[108.65667724609398,29.85115242004394],[108.67495727539068,29.69368362426763],[108.86813354492205,29.639493942260742],[108.86643981933594,29.44981193542486],[108.97126770019543,29.33089637756376],[109.1050109863283,29.36424255371105],[109.10571289062528,29.21516799926786],[109.22859954834001,29.12245559692388],[109.30027770996105,29.06493949890148],[109.231986999512,28.878896713256896],[109.26481628417963,28.668857574462944],[109.31582641601568,28.593660354614315],[109.2702026367189,28.503477096557617],[109.14983367919939,28.41257667541521],[109.12706756591825,28.309810638427678],[108.99082183837896,28.164127349853516],[108.8902816772461,28.22181892395031],[108.7324829101562,28.235145568847823],[108.77052307128912,28.42908668518072],[108.70655059814446,28.49793052673357],[108.6484375,28.33459281921415],[108.56976318359386,28.532268524169922],[108.63294982910173,28.627798080444446],[108.5006103515625,28.62965011596691],[108.3372192382813,28.67733383178722],[108.37995147705107,28.774686813354663],[108.29673004150396,29.045576095581055],[108.06352233886747,29.085281372070312],[107.86163330078124,28.96476745605491],[107.78807830810551,29.054252624511776],[107.80016326904291,29.1391220092774],[107.58477020263678,29.171329498291126],[107.56458282470732,29.21846580505382],[107.4031372070313,29.15673255920416],[107.36511230468744,29.014030456543022],[107.43206787109392,28.95671463012701],[107.38453674316418,28.85697364807123],[107.22039794921875,28.781482696533317],[107.11875152587895,28.89333152770996],[107.01056671142595,28.887796401977592],[106.81733703613298,28.741485595703235],[106.86291503906266,28.640344619750977],[106.7222518920899,28.533971786498967],[106.58585357666021,28.509456634521598],[106.63005828857422,28.614978790283146],[106.51525878906249,28.797227859497184],[106.50330352783207,28.620204925537337],[106.37358093261741,28.530485153198356],[106.24774932861357,28.799732208252006],[106.2549667358399,28.85392951965326],[106.11216735839838,28.899961471557734],[105.98811340332037,28.980567932128906],[105.79991149902355,28.94122695922857],[105.71887207031244,29.111965179443413],[105.69621276855486,29.27216911315918],[105.44914245605497,29.29393959045421],[105.43341064453124,29.40216636657726],[105.32424926757807,29.44178199768083],[105.28674316406256,29.54547691345215],[105.3824691772461,29.66498756408691],[105.56726074218767,29.739044189453235],[105.61170959472672,29.838090896606555],[105.72458648681634,29.856422424316406],[105.73922729492216,30.027923583984602],[105.59475708007812,30.11006927490251],[105.55877685546879,30.184236526489315],[105.61416625976557,30.266138076782397],[105.71224212646484,30.31063270568848],[105.790786743164,30.42348670959467],[105.9810867309573,30.383621215820312],[106.13938140869146,30.320039749145565],[106.20210266113304,30.212610244751033],[106.35874176025419,30.234788894653605],[106.44360351562506,30.296226501465014],[106.56037902832041,30.306888580322322],[106.72501373291031,30.03719139099121],[106.8717117309572,30.02734184265142],[106.96629333496111,30.082696914672848],[107.02802276611357,30.036109924316406],[107.22763061523438,30.22743988037115],[107.36215972900412,30.470155715942663],[107.48164367675776,30.606313705444506],[107.41993713378912,30.744838714599663],[107.51068115234375,30.844881057739258],[107.86900329589855,30.808849334716797],[107.97001647949224,30.89495468139654],[107.94728088378906,30.987459182739368],[108.04972839355474,31.04863739013683],[108.009780883789,31.105787277221793],[108.08136749267577,31.195667266845703],[108.07116699218778,31.267095565795955],[108.17851257324224,31.334787368774528],[108.23023223876982,31.51310539245605],[108.31633758544938,31.51035881042492],[108.39594268798851,31.609043121337944],[108.53423309326178,31.6771068572998],[108.52720642089872,31.757961273193363],[108.28655242919916,31.929058074951172],[108.3725891113283,32.18421173095708],[108.51454925537115,32.21204376220708],[108.67336273193354,32.10984039306646],[108.74031066894524,32.10990524291998],[108.88356018066423,31.99667358398437],[109.0261383056641,31.96888732910162],[109.27275848388678,31.801454544067436],[109.28453063964844,31.718706130981726],[109.57660675048832,31.733167648315373]]]},"properties":{"ID_0":49,"ISO":"CN-50","NAME_0":"China","ID_1":3,"NAME_1":"Chongqing","TYPE_1":"Zhíxiáshì","ENGTYPE_1":"Municipality","NL_NAME_1":"重慶|重庆","VARNAME_1":"Chóngqìng"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[118.17513275146506,24.664859771728455],[118.0943069458009,24.562360763549805],[118.19346618652389,24.527639389038086],[118.13236236572264,24.42374992370611],[117.92402648925814,24.47376060485851],[117.90513610839854,24.39402961730957],[118.05680847167967,24.41208267211925],[118.13458251953138,24.274860382080075],[117.96569061279308,24.204860687255856],[117.89847564697301,24.100694656372127],[117.69071197509778,24.01263999938965],[117.7062530517578,23.952083587646428],[117.62458038330111,23.855419158935547],[117.56069183349608,23.914861679077205],[117.44319152832065,23.78625106811529],[117.27041625976561,23.737922668457088],[117.18708038330077,23.618192672729492],[117.04617309570335,23.703323364257812],[116.96311950683594,23.910654067993107],[116.97557067871116,23.99999809265148],[116.92113494873058,24.077205657958928],[116.98881530761719,24.181470870971733],[116.93659210205111,24.21686744689947],[116.90676879882857,24.365011215210018],[116.84346771240244,24.476814270019588],[116.75096893310545,24.55849838256836],[116.72196197509777,24.66570281982433],[116.50968933105469,24.654195785522575],[116.40973663330088,24.746484756469727],[116.21189117431652,24.852706909179684],[116.0665893554692,24.852714538574276],[116.02613067626976,24.89831924438471],[115.87726593017578,24.93583488464361],[115.90413665771494,25.085796356201286],[115.85150909423862,25.213085174560547],[116.00704193115246,25.325311660766715],[115.9896240234375,25.470994949340934],[116.05012512207054,25.55576896667486],[116.05081939697301,25.69052124023449],[116.13201141357466,25.767911911010856],[116.1324615478519,25.870069503784237],[116.29248809814487,25.924467086792276],[116.42035675048838,26.07698249816906],[116.38374328613293,26.24109077453613],[116.59362030029297,26.489250183105522],[116.56420135498068,26.64577484130859],[116.51040649414085,26.72442436218273],[116.54402160644531,26.84349822998058],[116.67462158203148,26.98192405700695],[116.94204711914085,27.04147338867199],[117.16455841064453,27.29821205139166],[117.09513092041016,27.539754867553768],[117.01541137695312,27.565883636474894],[117.02031707763683,27.66392326354986],[117.19828033447298,27.688455581665096],[117.29500579833983,27.77881813049316],[117.28168487548828,27.875072479248157],[117.47182464599608,27.938741683959957],[117.7354660034182,27.806995391845817],[117.78416442871104,27.89917182922363],[117.92820739746104,27.972093582153377],[118.08811187744139,28.011186599731502],[118.14241027832043,28.066223144531303],[118.3367843627933,28.096084594726502],[118.42427062988293,28.292282104492244],[118.47968292236327,28.242441177368335],[118.60340881347666,28.257303237914982],[118.69368743896483,28.310081481933707],[118.8037033081058,28.229173660278377],[118.79248046874999,28.123294830322266],[118.7124252319337,28.06279945373535],[118.72288513183592,27.978706359863338],[118.82616424560547,27.88200569152832],[118.8965301513673,27.65051651000982],[118.86888122558604,27.537115097045955],[118.91139221191452,27.46161270141596],[119.00635528564476,27.50000953674322],[119.1194076538086,27.442722320556584],[119.23970794677746,27.424690246582145],[119.3717727661135,27.53801727294922],[119.46971893310558,27.542411804199215],[119.55113983154308,27.67979621887207],[119.70047760009778,27.51910972595215],[119.73795318603514,27.367782592773494],[119.87128448486328,27.305782318115178],[120,27.382801055908317],[120.24364471435558,27.434686660766598],[120.3465499877933,27.395959854126144],[120.43459320068382,27.17173385620117],[120.25402832031261,27.043750762939453],[120.23319244384811,26.9348602294923],[120.10902404785202,26.924583435058707],[120.04429626464844,26.82681083679205],[120.11292266845703,26.772079467773665],[120.09874725341795,26.62625122070324],[119.95486450195324,26.609861373901367],[120.03291320800825,26.76041984558111],[119.92457580566452,26.771251678466854],[119.89653015136741,26.662359237671126],[119.79902648925803,26.720140457153434],[119.66541290283213,26.73068809509283],[119.61096954345713,26.640420913696403],[119.71958160400402,26.615695953369084],[119.81540679931639,26.478202819824276],[119.7229232788088,26.444860458374194],[119.83429718017577,26.331251144409233],[119.7193069458009,26.277362823486325],[119.51568603515636,26.082920074463175],[119.71235656738315,26.01152992248541],[119.61875152587889,25.89264106750488],[119.59541320800791,25.689861297607536],[119.47597503662155,25.642360687255973],[119.4979171752931,25.56541824340826],[119.59319305419922,25.532085418701282],[119.57791900634766,25.432918548584098],[119.46375274658226,25.458194732666016],[119.3626403808595,25.527639389038086],[119.24847412109385,25.483472824096737],[119.15013885498068,25.39931106567388],[119.36180877685547,25.26791763305675],[119.26875305175781,25.175970077514705],[119.14013671875011,25.167360305786246],[119.0740280151367,25.236810684204215],[118.84402465820324,25.090974807739254],[118.91347503662132,24.960971832275447],[118.87152862548874,24.89680480957037],[118.66347503662108,24.800695419311637],[118.77569580078124,24.753469467163086],[118.68875122070337,24.66653060913097],[118.6662521362307,24.57736206054699],[118.48568725585949,24.63013839721691],[118.1945800781251,24.56708335876465],[118.17513275146506,24.664859771728455]]]},"properties":{"ID_0":49,"ISO":"CN-35","NAME_0":"China","ID_1":4,"NAME_1":"Fujian","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"福建","VARNAME_1":"Fújiàn"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.18472290039067,42.7716903686524],[97.84020996093766,41.65574645996099],[97.62551116943365,41.4967422485351],[97.6553421020509,41.40597915649419],[97.96666717529313,41.10291290283203],[98.33477020263666,40.91304779052745],[98.36934661865233,40.83678436279308],[98.25740051269537,40.52898025512701],[98.63681793212896,40.53940200805664],[98.84620666503912,40.73659515380865],[99.17937469482439,40.86471176147472],[99.56833648681646,40.84878921508795],[99.68782043457043,40.932682037353516],[100.01584625244169,40.90642547607422],[100.11625671386736,40.86449813842785],[100.22425079345703,40.72631454467773],[100.2417984008789,40.605705261230526],[100.0199279785158,40.39704895019537],[99.90689849853537,40.21214675903326],[99.61937713623064,40.06402969360346],[99.46066284179699,39.87522506713867],[99.76493835449219,39.88597488403326],[100.02754974365251,39.735771179199276],[100.25063323974615,39.687465667724716],[100.33266448974636,39.51032638549799],[100.50340270996105,39.47748565673828],[100.49961090087885,39.398361206054744],[100.837646484375,39.40134811401373],[100.82853698730491,39.21221923828131],[100.86227416992193,39.10592269897472],[101.00997161865261,38.95734024047863],[101.18752288818365,38.967781066894474],[101.32752227783207,38.78275299072277],[101.53044128417991,38.72551727294933],[101.61688232421903,38.66196441650396],[101.77305603027366,38.665138244628906],[102.08049011230474,38.89690017700207],[101.81523132324224,39.102142333984425],[102.20078277587906,39.17051696777355],[102.45579528808611,39.2540397644043],[102.60748291015625,39.18165969848644],[103.012504577637,39.10509109497075],[103.13194274902338,39.20756149291998],[103.36135101318388,39.34606933593749],[103.83745574951166,39.458847045898494],[103.94136810302763,39.46476364135742],[104.09106445312504,39.41781616210943],[104.05253601074224,39.297470092773494],[104.20571136474615,39.09294891357422],[104.17420959472679,38.94146347045904],[104.03190612792974,38.89115905761718],[103.87630462646489,38.64512252807628],[103.41771697998047,38.41262435913097],[103.47286224365239,38.34653854370123],[103.54444885253933,38.155284881591854],[103.36228942871122,38.09072113037115],[103.40696716308588,37.85186767578131],[103.66897583007818,37.78575134277355],[103.8916397094726,37.591625213623104],[104.17815399169939,37.40818786621094],[104.2790756225586,37.428287506103516],[104.47420501708984,37.44149017333996],[104.67339324951178,37.408348083496094],[104.70060729980467,37.33039474487316],[104.59353637695307,37.273872375488224],[104.65193176269548,37.20222473144537],[104.79535675048844,37.24415588378906],[104.91059875488281,37.09955215454107],[105.03395843505875,37.01701354980469],[105.16960906982422,36.9855842590332],[105.17917633056645,36.902107238769645],[105.27582550048845,36.86951065063482],[105.32637786865251,36.78458786010742],[105.1989974975586,36.70830535888683],[105.2446212768557,36.54238128662121],[105.35892486572293,36.49019622802734],[105.39843749999994,36.36856460571289],[105.47440338134766,36.286151885986264],[105.50463867187527,36.143032073974666],[105.32534027099638,36.01859283447277],[105.33605957031244,35.884445190429744],[105.48910522460938,35.7248649597168],[105.66387176513678,35.747375488281364],[105.7104873657226,35.65093612670904],[105.81684875488287,35.572719573974666],[105.96811676025419,35.54033279418957],[106.0878601074221,35.41488647460943],[106.2352981567385,35.40990066528332],[106.2427139282227,35.352371215820426],[106.3540344238283,35.23654556274413],[106.47063446044928,35.312320709228516],[106.50755310058588,35.438972473144645],[106.44417572021489,35.52415084838878],[106.47740173339855,35.588520050048885],[106.43910980224626,35.69412994384771],[106.54910278320341,35.74375152587901],[106.74959564208979,35.687606811523494],[106.92334747314463,35.80731201171869],[106.8548202514649,35.89708709716808],[106.93566894531273,35.945045471191406],[106.94766235351568,36.092304229736435],[106.86044311523455,36.20060348510748],[106.46853637695318,36.295066833496094],[106.51650238037121,36.454776763916016],[106.44644927978521,36.5618896484375],[106.52542114257818,36.73141479492182],[106.65255737304705,36.81812286376959],[106.57569885253905,36.94168090820318],[106.64400482177734,37.04540634155284],[106.60285949707037,37.108383178710994],[106.79940032959001,37.151260375976555],[107.02391052246111,37.11317443847661],[107.15986633300776,37.148857116699276],[107.27139282226567,37.08225250244146],[107.29496765136717,36.94154357910162],[107.47282409667997,36.90810775756847],[107.54070281982428,36.82651138305664],[107.89543151855474,36.76015853881836],[107.95442962646513,36.65525054931646],[108.15857696533219,36.56357955932623],[108.33563995361332,36.55873107910162],[108.42691802978509,36.43586730957037],[108.61451721191429,36.434116363525504],[108.71541595459007,36.352073669433594],[108.64480590820311,36.26212692260742],[108.70762634277348,36.13836288452148],[108.64005279541021,35.946445465087834],[108.50100708007818,35.895126342773494],[108.52468109130882,35.63646316528332],[108.6112289428711,35.563209533691406],[108.62655639648443,35.41919708251953],[108.57508850097685,35.308822631835994],[108.23188018798834,35.265869140625],[108.17214965820312,35.31041717529308],[107.95692443847685,35.243011474609425],[107.72364044189482,35.30328750610346],[107.69767761230474,35.19374084472656],[107.74325561523443,35.094215393066406],[107.85124969482449,35.005714416503906],[107.80170440673822,34.95686340332031],[107.57112121582047,34.971679687500114],[107.51925659179705,34.910839080810604],[107.28193664550774,34.93278884887701],[107.19623565673832,34.882575988769645],[106.91616058349608,35.09522247314458],[106.54570770263666,35.08773803710943],[106.48889160156267,34.941974639892635],[106.55184936523455,34.86247253417969],[106.54873657226572,34.75755310058594],[106.31894683837906,34.5910911560058],[106.33836364746105,34.52238464355469],[106.46202087402344,34.531536102295036],[106.71399688720703,34.37443161010742],[106.67990112304709,34.26151657104492],[106.59848022460943,34.25256347656256],[106.58864593505876,34.142406463623104],[106.49768066406267,34.10641479492193],[106.41545104980484,33.875953674316406],[106.47845458984379,33.70890808105469],[106.58400726318388,33.590778350830135],[106.53040313720732,33.50500869750988],[106.44264221191412,33.61472320556646],[106.29929351806658,33.60597229003912],[106.18309020996122,33.54811096191406],[105.95542907714844,33.6101341247558],[105.83818817138695,33.4919052124024],[105.83415222167973,33.412612915039176],[105.72897338867182,33.39280700683611],[105.74388885498064,33.300659179687614],[105.92945861816423,33.19445419311529],[105.91923522949224,33.008152008056754],[105.73158264160162,32.90739440917969],[105.58703613281278,32.87902069091797],[105.49535369873064,32.91073989868164],[105.38031768798821,32.88031768798828],[105.44912719726591,32.736293792724666],[105.14159393310553,32.59889602661133],[105.03254699707037,32.64676666259771],[104.88507843017601,32.598526000976676],[104.84946441650419,32.64872360229498],[104.64373779296892,32.661418914794865],[104.49718475341825,32.757114410400675],[104.30019378662104,32.83144378662121],[104.28546905517605,32.941749572753906],[104.38080596923834,32.99615859985346],[104.37222290039068,33.120979309082145],[104.26432800292963,33.393478393554744],[104.21485900878912,33.406211853027344],[104.15173339843756,33.545970916748104],[104.16682434082058,33.61078262329107],[104.04965972900413,33.68680572509771],[103.76624298095709,33.66038513183605],[103.59117889404325,33.71422958374035],[103.53887176513695,33.67300796508795],[103.43190765380888,33.75435256958008],[103.34721374511724,33.74501800537115],[103.15014648437506,33.811813354492294],[103.12075805664068,33.94302749633789],[103.16744232177751,34.093654632568295],[103.09801483154313,34.183258056640625],[103.00817871093767,34.18482589721674],[102.92523956298828,34.30934524536144],[102.73484802246111,34.26859283447277],[102.59779357910179,34.14724731445318],[102.4213485717774,34.08662033081055],[102.38580322265642,33.9734458923341],[102.30878448486328,33.99384307861328],[102.19335174560564,33.91864395141607],[102.3389739990235,33.72563171386713],[102.33715820312516,33.61697006225597],[102.43913269042997,33.581356048583984],[102.43972015380888,33.45528793334961],[102.3546295166016,33.393226623535156],[102.2216415405274,33.38579559326172],[102.20602416992209,33.23442459106445],[102.10443115234386,33.26874542236334],[102.05314636230463,33.19178009033203],[101.84082794189464,33.1848258972168],[101.76795959472685,33.24454116821289],[101.8753204345706,33.323116302490234],[101.93886566162121,33.44575881958007],[101.83661651611357,33.614463806152344],[101.77423095703152,33.548042297363395],[101.62786865234375,33.50222015380871],[101.61802673339872,33.60977172851568],[101.54747009277372,33.694004058838004],[101.39653778076195,33.649295806884766],[101.24060821533197,33.682319641113395],[101.10863494873064,33.85783767700201],[100.9883728027346,33.903324127197266],[100.81357574462908,34.15047836303722],[100.8104171752932,34.30268478393566],[100.90686798095703,34.38161087036144],[101.0457611083985,34.32815551757807],[101.1620864868164,34.32116317749035],[101.49298095703142,34.20014572143555],[101.6171646118164,34.184055328369084],[101.65080261230474,34.121707916259766],[101.8991088867188,34.132667541503906],[102.00997924804716,34.18645095825201],[102.0761795043948,34.28706359863287],[102.25090789794932,34.35848236083979],[102.07666015625,34.54387664794916],[102,34.54377365112316],[101.71864318847656,34.70427703857433],[101.91433715820312,34.742988586425895],[101.92398071289091,34.84535217285162],[102.00464630126982,34.950431823730526],[102.2791290283206,35.05853652954113],[102.38394927978521,35.23823928833019],[102.28775787353533,35.42110824584972],[102.44130706787126,35.43931198120117],[102.53208923339861,35.56439971923834],[102.72041320800787,35.527885437011655],[102.75676727294916,35.6146354675293],[102.68392181396501,35.76140594482422],[102.77229309082037,35.85988998413086],[102.95399475097673,35.865234375000114],[102.93271636962913,36.1076278686524],[102.99154663085932,36.265727996826286],[102.82682800292969,36.35511779785156],[102.7190246582033,36.61520385742199],[102.5953826904298,36.70555496215832],[102.72365570068365,36.766658782958984],[102.54882812500028,36.92440795898449],[102.47138214111357,36.95798873901373],[102.4861907958985,37.083602905273494],[102.59339904785179,37.15277862548828],[102.36363983154308,37.28149795532232],[102.2884216308596,37.36767578125011],[102.01169586181669,37.48405075073247],[102.07062530517584,37.55881118774419],[102,37.6074714660645],[101.97617340087896,37.74865341186534],[101.87764739990246,37.68978881835943],[101.85254669189452,37.53683853149414],[101.54251861572277,37.65631103515625],[101.11083221435553,37.935676574707145],[100.95064544677763,38.00680160522461],[100.63465881347673,38.10126113891607],[100.58907318115251,38.2494850158692],[100.33118438720696,38.31935501098644],[100.22772216796898,38.449733734130916],[100.11695098876982,38.48994064331055],[100.08118438720703,38.409706115722656],[100.16048431396479,38.328430175781364],[100.18139648437506,38.236789703369084],[99.82931518554716,38.36841583251958],[99.65830230712906,38.44895935058605],[99.44926452636736,38.603973388671925],[99.36062622070318,38.71766662597662],[99.22086334228543,38.78847503662121],[98.81810760498064,39.0838737487793],[98.75200653076195,39.07770919799815],[98.58390808105469,38.93408584594738],[98.45671844482428,38.95230484008789],[98.3831176757813,39.0286598205567],[98.09833526611334,38.81504821777344],[97.49990081787121,39.077648162841854],[97.40038299560563,39.14591217041027],[97.05175781249999,39.20782852172846],[96.9901733398438,39.17162322998058],[96.99402618408209,38.770145416259766],[96.93924713134771,38.62128067016613],[96.99226379394537,38.59049606323248],[96.95970153808622,38.338336944580135],[96.81450653076178,38.35615539550781],[96.70425415039068,38.42199707031256],[96.51573181152338,38.464706420898494],[96.52423095703148,38.534347534179744],[96.3150634765626,38.63799285888683],[96.1990356445313,38.626171112060604],[96.00000000000016,38.75643920898449],[95.89761352539061,38.77037429809575],[95.7732467651367,38.875358581543026],[95.69076538085966,38.87917327880864],[95.2647476196289,39.19168472290044],[95.15735626220703,39.17620468139648],[94.9188156127932,39.24051666259776],[94.73325347900419,39.2387809753418],[94.63012695312494,39.30706024169933],[94.28737640380854,39.306804656982536],[93.87920379638666,39.25775909423828],[93.60808563232445,39.263450622558594],[93.2477111816408,39.18296432495123],[92.97923278808616,39.1475944519043],[92.9505615234375,39.17105484008789],[92.92624664306669,39.292980194091854],[92.94313049316406,39.45827102661133],[92.87683105468778,39.54480361938488],[92.76416015624993,39.87979888916021],[92.91799163818365,40.10373306274413],[92.9138107299807,40.49829864501953],[93.35394287109392,40.47246170043945],[93.64675140380858,40.61911010742199],[93.80673980712906,40.87663650512701],[94.0770111083986,41.158325195312614],[94.41741943359403,41.391883850097656],[94.67984008789068,41.62221145629883],[95.04637145996094,41.77122879028325],[95.539115905762,41.8545875549317],[95.6865921020509,41.822109222412166],[95.8683547973634,41.843002319335994],[95.9896697998048,41.89428329467784],[96.05531311035173,42.0161972045899],[96.02552795410168,42.110931396484375],[96.09664154052763,42.59966659545893],[96.36516571044926,42.71707534790045],[96.69189453125006,42.74230957031256],[96.93282318115263,42.71215438842785],[97.18472290039067,42.7716903686524]]]},"properties":{"ID_0":49,"ISO":"CN-62","NAME_0":"China","ID_1":5,"NAME_1":"Gansu","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"甘肅|甘肃","VARNAME_1":"Gānsù"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.9423599243165,22.768751144409233],[114.96680450439499,22.678194046020565],[114.88403320312545,22.600421905517635],[114.75069427490257,22.598472595214897],[114.71347045898449,22.796249389648494],[114.58040618896484,22.740970611572266],[114.54514312744152,22.5715274810791],[114.61458587646518,22.502370834350586],[114.48208618164061,22.46986389160162],[114.4265289306644,22.601804733276424],[114.31180572509788,22.600973129272404],[114.04199218750011,22.505676269531246],[113.84819793701183,22.561809539795036],[113.75653076171875,22.737640380859375],[113.56125640869163,22.735420227050838],[113.64402770996105,22.640140533447322],[113.54541778564464,22.426809310913196],[113.59986114501964,22.328193664550838],[113.55158996582031,22.215900421142635],[113.51735687255882,22.17014122009277],[113.37791442871094,22.133193969726562],[113.40013885498047,22.00986099243164],[113.21679687500023,21.99208068847662],[113.00763702392588,22.097917556762695],[113.00235748291016,21.935970306396598],[112.89875030517578,21.854581832885856],[112.82736206054688,21.947639465332085],[112.74958038330111,21.923194885253906],[112.59208679199219,21.76097106933605],[112.42903137207054,21.820140838623104],[112.40180206298872,21.735139846801754],[112.26235961914085,21.702640533447322],[112.12040710449219,21.800140380859375],[111.91347503662132,21.695972442627006],[111.78597259521501,21.714309692382812],[111.76513671875028,21.619306564331055],[111.62319183349615,21.54319381713873],[111.480972290039,21.507083892822266],[111.26541900634777,21.498195648193416],[111.03152465820318,21.452083587646595],[110.88874816894526,21.387920379638725],[110.77014160156267,21.395971298217773],[110.6315307617188,21.227916717529354],[110.41541290283209,21.192920684814396],[110.3284759521485,21.1045818328858],[110.52819824218778,20.987640380859375],[110.34792327880882,20.995420455932614],[110.16652679443382,20.921527862548828],[110.20263671875027,20.84736061096197],[110.38680267333989,20.819860458374137],[110.40569305419928,20.655700683593864],[110.46485900878912,20.673194885253963],[110.5309829711914,20.481250762939567],[110.44069671630854,20.331809997558707],[110.28263854980469,20.254030227661246],[110.12625122070312,20.240695953369197],[110.0573577880861,20.29319953918457],[109.94958496093767,20.255971908569393],[109.90541839599632,20.4337482452392],[109.82041931152355,20.513200759887752],[109.75541687011736,20.757921218872127],[109.67346954345709,20.870138168335014],[109.71125030517601,21.061807632446403],[109.674858093262,21.119304656982422],[109.7681961059572,21.210971832275447],[109.77153015136723,21.324310302734432],[109.89708709716808,21.374309539794865],[109.75144195556639,21.565696716308707],[109.74053192138689,21.620956420898494],[109.89900207519543,21.657600402832145],[109.93541717529325,21.827411651611385],[110.2848434448245,21.911310195922965],[110.38186645507835,21.893510818481502],[110.34873199462919,22.093097686767635],[110.43418121337918,22.202239990234375],[110.63491821289062,22.150308609008903],[110.72112274169939,22.296020507812614],[110.70876312255864,22.437704086303654],[110.76023864746094,22.57716560363781],[111.05146789550798,22.65404129028326],[111.11331176757818,22.74464607238781],[111.21205902099626,22.750217437744254],[111.35180664062528,22.892566680908203],[111.42479705810553,23.03824806213379],[111.37277984619169,23.09476089477539],[111.35114288330078,23.287715911865348],[111.38588714599615,23.449352264404297],[111.45522308349604,23.513805389404297],[111.49916076660156,23.638370513916016],[111.6110534667968,23.645404815673825],[111.64163208007812,23.820308685302734],[111.80780029296898,23.820842742920036],[111.80680084228514,23.88875007629394],[111.92304229736355,23.968458175659237],[111.87071228027344,24.09034347534191],[111.87199401855486,24.2287921905517],[112.01347351074264,24.295175552368107],[112.05690002441429,24.365119934081974],[111.9803543090822,24.47433853149414],[111.99617767334001,24.549169540405273],[111.92090606689476,24.631265640258786],[112.0159149169923,24.73996162414545],[112.16409301757835,24.91137695312511],[112.14284515380871,25.01593017578125],[112.17819213867188,25.17727851867687],[112.39117431640636,25.142938613891715],[112.65400695800791,25.128871917724723],[112.77394866943371,24.896972656250053],[113.00085449218773,24.930334091186577],[112.96279907226574,25.160791397094723],[112.97397613525402,25.254402160644588],[112.86254882812499,25.247737884521598],[112.8527603149415,25.32934951782238],[113.01506042480479,25.348438262939567],[113.15413665771518,25.487932205200252],[113.29471588134764,25.494749069213977],[113.36460876464866,25.40072631835943],[113.53484344482455,25.365858078002873],[113.58399200439464,25.32307434082037],[113.75487518310592,25.359266281127987],[113.81206512451183,25.32813262939464],[113.89219665527365,25.43996620178217],[113.95921325683605,25.457321166992184],[114.11812591552733,25.312196731567383],[114.23008728027344,25.290590286254996],[114.3857650756836,25.319406509399528],[114.52974700927734,25.418529510498104],[114.732002258301,25.236312866210994],[114.64369201660179,25.077552795410156],[114.39031982421875,24.952095031738338],[114.39538574218761,24.877853393554688],[114.27632904052757,24.70924568176281],[114.16944885253906,24.673164367675724],[114.35216522216795,24.58781623840332],[114.42615509033203,24.487041473388786],[114.52752685546896,24.55403137207037],[114.68016052246092,24.537109375000114],[114.78713989257857,24.608608245849606],[114.87182617187544,24.56470108032238],[114.93382263183604,24.649627685546932],[115.03675079345727,24.696493148803768],[115.10470581054733,24.66470718383789],[115.21117401123045,24.725015640258846],[115.41083526611374,24.78082466125488],[115.47354888916027,24.759233474731385],[115.56167602539074,24.627124786376953],[115.67007446289061,24.59854125976574],[115.72159576416027,24.53724670410162],[115.83157348632834,24.565416336059684],[115.76219940185547,24.665426254272575],[115.76171112060545,24.797672271728512],[115.81189727783226,24.90282058715826],[115.87726593017578,24.93583488464361],[116.02613067626976,24.89831924438471],[116.0665893554692,24.852714538574276],[116.21189117431652,24.852706909179684],[116.40973663330088,24.746484756469727],[116.50968933105469,24.654195785522575],[116.72196197509777,24.66570281982433],[116.75096893310545,24.55849838256836],[116.84346771240244,24.476814270019588],[116.90676879882857,24.365011215210018],[116.93659210205111,24.21686744689947],[116.98881530761719,24.181470870971733],[116.92113494873058,24.077205657958928],[116.97557067871116,23.99999809265148],[116.96311950683594,23.910654067993107],[117.04617309570335,23.703323364257812],[117.18708038330077,23.618192672729492],[117.08319091796898,23.545419692993164],[116.89598083496092,23.543470382690487],[116.84986114501952,23.417642593383786],[116.74986267089878,23.342361450195426],[116.77236175537121,23.257080078125057],[116.60235595703169,23.193750381469783],[116.5318069458009,23.122922897338924],[116.5643081665039,23.019580841064393],[116.45569610595713,22.949310302734375],[116.26541900634764,22.950141906738338],[116.16541290283202,22.862361907959098],[115.87569427490234,22.797082901001087],[115.66291809082033,22.877361297607422],[115.51708221435592,22.75486183166504],[115.39153289794933,22.691528320312557],[115.23069763183592,22.83152961730957],[114.9423599243165,22.768751144409233]]]},"properties":{"ID_0":49,"ISO":"CN-44","NAME_0":"China","ID_1":6,"NAME_1":"Guangdong","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"廣東|广东","VARNAME_1":"Guǎngdōng"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.0159149169923,24.73996162414545],[111.92090606689476,24.631265640258786],[111.99617767334001,24.549169540405273],[111.9803543090822,24.47433853149414],[112.05690002441429,24.365119934081974],[112.01347351074264,24.295175552368107],[111.87199401855486,24.2287921905517],[111.87071228027344,24.09034347534191],[111.92304229736355,23.968458175659237],[111.80680084228514,23.88875007629394],[111.80780029296898,23.820842742920036],[111.64163208007812,23.820308685302734],[111.6110534667968,23.645404815673825],[111.49916076660156,23.638370513916016],[111.45522308349604,23.513805389404297],[111.38588714599615,23.449352264404297],[111.35114288330078,23.287715911865348],[111.37277984619169,23.09476089477539],[111.42479705810553,23.03824806213379],[111.35180664062528,22.892566680908203],[111.21205902099626,22.750217437744254],[111.11331176757818,22.74464607238781],[111.05146789550798,22.65404129028326],[110.76023864746094,22.57716560363781],[110.70876312255864,22.437704086303654],[110.72112274169939,22.296020507812614],[110.63491821289062,22.150308609008903],[110.43418121337918,22.202239990234375],[110.34873199462919,22.093097686767635],[110.38186645507835,21.893510818481502],[110.2848434448245,21.911310195922965],[109.93541717529325,21.827411651611385],[109.89900207519543,21.657600402832145],[109.74053192138689,21.620956420898494],[109.75144195556639,21.565696716308707],[109.58458709716803,21.582082748413086],[109.54347229003918,21.505971908569336],[109.41929626464855,21.453750610351506],[109.15708160400408,21.402639389038086],[109.04235839843756,21.4515323638916],[109.16764068603521,21.528749465942326],[109.04264068603531,21.6118049621582],[108.91208648681646,21.60958290100109],[108.8487472534182,21.685970306396428],[108.73958587646484,21.608194351196342],[108.7031860351563,21.693201065063477],[108.57347106933594,21.68430328369152],[108.51652526855497,21.586805343628043],[108.39375305175798,21.552917480468864],[108.30097198486334,21.597919464111385],[108.18736267089838,21.5887508392334],[108.13485717773466,21.518749237060543],[107.96765899658219,21.536149978637805],[107.87879943847656,21.638048171997013],[107.7817993164063,21.655660629272575],[107.6757278442385,21.609701156616325],[107.38234710693365,21.595428466796985],[107.30287170410183,21.740751266479435],[107.24111938476555,21.704500198364315],[107.08497619628906,21.809440612793082],[107.06096649169928,21.929410934448242],[106.96045684814459,21.919481277465877],[106.9185028076174,21.97347068786621],[106.81147003173828,21.97340011596674],[106.70754241943364,22.02420043945324],[106.67211151123075,22.181760787963864],[106.70281982421903,22.226980209350586],[106.65067291259766,22.339309692382926],[106.55935668945335,22.44678115844738],[106.6104278564453,22.603790283203182],[106.7333526611331,22.590549468994197],[106.77304077148449,22.816360473632756],[106.59741210937517,22.933120727539062],[106.34645080566406,22.856130599975696],[106.19693756103521,22.990079879760742],[106.00276184082037,22.992019653320256],[105.92183685302751,22.95049285888672],[105.80403900146507,22.993070602417106],[105.71599578857433,23.064620971679744],[105.57733154296886,23.068929672241268],[105.5384597778322,23.193382263183707],[105.5869979858399,23.31438446044922],[105.6827316284182,23.373731613159233],[105.81051635742193,23.504873275756836],[105.88883972167986,23.527698516845646],[106.05941772460943,23.490928649902457],[106.18795013427734,23.83817481994623],[105.99864959716825,24.13204383850109],[105.90697479248064,24.117866516113335],[105.838134765625,24.031015396118164],[105.76200866699236,24.076547622680778],[105.64262390136719,24.06056213378906],[105.62133026123053,24.134126663208065],[105.53104400634766,24.131656646728572],[105.4925308227539,24.028812408447266],[105.40964508056669,24.04160308837902],[105.3184204101563,24.121213912963924],[105.25254058837908,24.075328826904293],[105.19375610351574,24.329828262329215],[105.03990936279295,24.444688796997184],[104.97734069824219,24.415878295898438],[104.76401519775419,24.461069107055778],[104.71868896484392,24.34291648864757],[104.60913848876982,24.38091468811041],[104.50005340576183,24.59066390991205],[104.53002166748041,24.734367370605582],[104.71366119384794,24.623714447021484],[104.84278869628935,24.68211364746105],[104.87314605712885,24.74512481689453],[105.03293609619169,24.797790527343803],[105.03973388671875,24.881359100341797],[105.20810699462908,24.998548507690426],[105.27001190185553,24.935266494751087],[105.42365264892595,24.93633460998541],[105.5066833496096,24.810123443603572],[105.59496307373047,24.809631347656307],[105.77396392822293,24.717266082763786],[105.93656158447264,24.725927352905387],[105.99517059326178,24.648065567016598],[106.17253875732445,24.770753860473686],[106.19887542724615,24.843112945556697],[106.14587402343778,24.949848175048828],[106.30107116699224,24.980848312377987],[106.57819366455077,25.088983535766715],[106.64135742187504,25.166069030761715],[106.89469146728521,25.197292327880916],[107.00714874267578,25.278284072875977],[106.95890808105469,25.417385101318413],[107.05873870849636,25.561948776245117],[107.17170715332024,25.581859588623157],[107.32744598388695,25.502134323120174],[107.32131958007818,25.415100097656364],[107.41652679443364,25.395799636840877],[107.4283370971682,25.291849136352596],[107.50246429443375,25.219079971313587],[107.6051025390625,25.271997451782283],[107.81022644042997,25.133516311645508],[108.1295013427735,25.23711204528803],[108.14017486572271,25.390853881836048],[108.23620605468767,25.427225112915036],[108.30685424804693,25.530017852783317],[108.47271728515642,25.456684112548885],[108.61956024169916,25.335887908935547],[108.59804534912126,25.473947525024414],[108.66473388671903,25.586116790771424],[108.93418121337896,25.558532714843864],[109.02794647216813,25.51806068420416],[109.03469848632818,25.66152954101574],[109.10092163085943,25.807704925537223],[109.23330688476591,25.72507286071777],[109.30762481689457,25.770906448364258],[109.47801971435575,26.03277397155767],[109.70696258544939,26.00746154785162],[109.6570663452149,25.883638381958008],[109.8214721679688,25.914623260498047],[109.77788543701182,26.000400543213058],[109.86648559570318,26.036716461181697],[109.9562225341798,26.1942596435548],[110.08750915527344,26.142990112304684],[110.09620666503935,26.023202896118278],[110.33061218261747,25.995586395263782],[110.37230682373053,26.09749984741211],[110.56656646728526,26.26456069946283],[110.60779571533197,26.337228775024414],[110.75655364990227,26.252420425415096],[110.93292999267584,26.29232215881359],[110.98759460449219,26.333953857421875],[111.16111755371088,26.30673217773443],[111.25716400146489,26.21200752258312],[111.24438476562506,26.065874099731502],[111.19966125488298,26.01690673828125],[111.21540069580082,25.897918701171875],[111.42713165283232,25.880847930908203],[111.41054534912138,25.771030426025447],[111.31177520751964,25.73057937622076],[111.33367919921903,25.60984039306652],[111.28569030761736,25.436988830566463],[111.09198760986334,25.28190803527832],[111.00070190429682,25.16755485534668],[110.94228363037136,25.03656387329113],[110.99164581298851,24.922689437866268],[111.09198760986334,24.944536209106502],[111.09161376953129,25.0276718139649],[111.2711029052735,25.145952224731502],[111.43122863769548,25.101142883300895],[111.45989227294928,25.026561737060547],[111.44398498535173,24.85980033874523],[111.4740753173831,24.800382614135742],[111.4228515625,24.681093215942383],[111.56139373779303,24.64114570617687],[111.68432617187517,24.78155517578125],[111.76525115966803,24.788452148437553],[112.0159149169923,24.73996162414545]]]},"properties":{"ID_0":49,"ISO":"CN-45","NAME_0":"China","ID_1":7,"NAME_1":"Guangxi","TYPE_1":"Zìzhìqu","ENGTYPE_1":"Autonomous Region","NL_NAME_1":"廣西壯族自治區|广西壮族自治区","VARNAME_1":"Guǎngxī Zhuàngzú"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.2702026367189,28.503477096557617],[109.26879119873075,28.318523406982706],[109.37786102294928,28.266525268554744],[109.29934692382807,28.076446533203068],[109.36843872070312,28.023717880249137],[109.29888916015629,27.95776939392107],[109.36629486083979,27.741748809814567],[109.4282836914062,27.744571685791072],[109.45413208007835,27.580150604248104],[109.24102020263689,27.42149543762218],[109.15285491943352,27.445451736450252],[109.05762481689459,27.296564102172965],[108.90032196044916,27.21713447570806],[108.91187286376974,27.162935256958008],[108.82865905761719,27.060491561889762],[108.87377166748075,27.0005283355714],[109.11281585693354,27.12581443786621],[109.16427612304715,27.075754165649414],[109.25971984863281,27.135271072387695],[109.38927459716803,27.1656551361084],[109.50717163085942,27.076116561889705],[109.55052947998058,26.95048141479492],[109.49270629882841,26.826517105102596],[109.35031127929703,26.696563720703182],[109.3762741088867,26.465026855468803],[109.27001190185563,26.31878852844244],[109.33377838134788,26.270935058593864],[109.4244766235351,26.294462203979545],[109.4950790405275,26.14627647399908],[109.47801971435575,26.03277397155767],[109.30762481689457,25.770906448364258],[109.23330688476591,25.72507286071777],[109.10092163085943,25.807704925537223],[109.03469848632818,25.66152954101574],[109.02794647216813,25.51806068420416],[108.93418121337896,25.558532714843864],[108.66473388671903,25.586116790771424],[108.59804534912126,25.473947525024414],[108.61956024169916,25.335887908935547],[108.47271728515642,25.456684112548885],[108.30685424804693,25.530017852783317],[108.23620605468767,25.427225112915036],[108.14017486572271,25.390853881836048],[108.1295013427735,25.23711204528803],[107.81022644042997,25.133516311645508],[107.6051025390625,25.271997451782283],[107.50246429443375,25.219079971313587],[107.4283370971682,25.291849136352596],[107.41652679443364,25.395799636840877],[107.32131958007818,25.415100097656364],[107.32744598388695,25.502134323120174],[107.17170715332024,25.581859588623157],[107.05873870849636,25.561948776245117],[106.95890808105469,25.417385101318413],[107.00714874267578,25.278284072875977],[106.89469146728521,25.197292327880916],[106.64135742187504,25.166069030761715],[106.57819366455077,25.088983535766715],[106.30107116699224,24.980848312377987],[106.14587402343778,24.949848175048828],[106.19887542724615,24.843112945556697],[106.17253875732445,24.770753860473686],[105.99517059326178,24.648065567016598],[105.93656158447264,24.725927352905387],[105.77396392822293,24.717266082763786],[105.59496307373047,24.809631347656307],[105.5066833496096,24.810123443603572],[105.42365264892595,24.93633460998541],[105.27001190185553,24.935266494751087],[105.20810699462908,24.998548507690426],[105.03973388671875,24.881359100341797],[105.03293609619169,24.797790527343803],[104.87314605712885,24.74512481689453],[104.84278869628935,24.68211364746105],[104.71366119384794,24.623714447021484],[104.53002166748041,24.734367370605582],[104.54479217529301,24.826942443847656],[104.70897674560545,24.998239517211914],[104.66259765625016,25.073026657104606],[104.75211334228521,25.2172470092774],[104.65016174316418,25.298894882202262],[104.64119720458994,25.358638763427788],[104.54013061523432,25.411338806152344],[104.55878448486357,25.52507972717285],[104.43321990966803,25.52098464965826],[104.42408752441412,25.583690643310543],[104.30797576904324,25.658769607543945],[104.40510559082047,25.804899215698356],[104.46604156494163,26.020044326782227],[104.5228271484375,26.113374710083065],[104.5381469726563,26.25266838073736],[104.67794036865257,26.37670707702648],[104.55432128906256,26.591611862182674],[104.48223114013678,26.58381271362316],[104.41782379150419,26.711545944213867],[104.30657196044928,26.618005752563477],[104.12743377685547,26.64672660827642],[104.0076751708985,26.51918411254877],[103.81132507324212,26.53918838500988],[103.74365234375016,26.635738372802905],[103.7656021118164,26.735904693603516],[103.70027923584013,26.821123123168945],[103.7624588012698,26.868497848510742],[103.75336456298845,26.962678909301815],[103.63481140136741,27.11949157714855],[103.70276641845732,27.14001274108892],[103.82901000976567,27.267192840576456],[103.92717742919922,27.441984176635856],[104.17899322509771,27.27336311340332],[104.25457763671886,27.31318664550781],[104.3401107788086,27.46142768859863],[104.48960113525406,27.413248062134073],[104.61405944824224,27.312002182007063],[104.7346649169923,27.344867706298942],[104.86380004882807,27.293619155883846],[105.07233428955077,27.42026519775402],[105.23271179199236,27.4316349029541],[105.24489593505854,27.5604190826416],[105.30024719238298,27.709112167358626],[105.48232269287138,27.776836395263956],[105.6208572387697,27.66724586486839],[105.76389312744135,27.720869064330998],[106.18678283691423,27.758264541626033],[106.332748413086,27.8292884826663],[106.31727600097656,27.97634315490734],[106.25861358642605,28.080980300903377],[106.1459732055664,28.16761589050293],[105.97379302978538,28.116268157958984],[105.87796783447283,28.12946319580072],[105.88387298584,28.240835189819336],[105.77892303466825,28.335525512695312],[105.71227264404303,28.275840759277397],[105.63642883300808,28.31930732727068],[105.63368988037115,28.52494812011724],[105.73594665527366,28.614667892456055],[105.86843109130876,28.59096527099615],[105.96365356445312,28.751831054687443],[106.10343933105469,28.634981155395508],[106.28510284423832,28.540290832519645],[106.37358093261741,28.530485153198356],[106.50330352783207,28.620204925537337],[106.51525878906249,28.797227859497184],[106.63005828857422,28.614978790283146],[106.58585357666021,28.509456634521598],[106.7222518920899,28.533971786498967],[106.86291503906266,28.640344619750977],[106.81733703613298,28.741485595703235],[107.01056671142595,28.887796401977592],[107.11875152587895,28.89333152770996],[107.22039794921875,28.781482696533317],[107.38453674316418,28.85697364807123],[107.43206787109392,28.95671463012701],[107.36511230468744,29.014030456543022],[107.4031372070313,29.15673255920416],[107.56458282470732,29.21846580505382],[107.58477020263678,29.171329498291126],[107.80016326904291,29.1391220092774],[107.78807830810551,29.054252624511776],[107.86163330078124,28.96476745605491],[108.06352233886747,29.085281372070312],[108.29673004150396,29.045576095581055],[108.37995147705107,28.774686813354663],[108.3372192382813,28.67733383178722],[108.5006103515625,28.62965011596691],[108.63294982910173,28.627798080444446],[108.56976318359386,28.532268524169922],[108.6484375,28.33459281921415],[108.70655059814446,28.49793052673357],[108.77052307128912,28.42908668518072],[108.7324829101562,28.235145568847823],[108.8902816772461,28.22181892395031],[108.99082183837896,28.164127349853516],[109.12706756591825,28.309810638427678],[109.14983367919939,28.41257667541521],[109.2702026367189,28.503477096557617]]]},"properties":{"ID_0":49,"ISO":"CN-52","NAME_0":"China","ID_1":8,"NAME_1":"Guizhou","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"貴州|贵州","VARNAME_1":"Gùizhōu"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.68818664550804,20.16263961791998],[110.78901672363297,20.009029388427678],[110.94040679931652,20.001810073852596],[110.99569702148466,19.822919845580998],[110.98263549804688,19.643194198608512],[110.76180267333989,19.427360534668082],[110.67124938964872,19.382083892822205],[110.58625030517595,19.159309387207088],[110.56709289550786,19.04624938964855],[110.51319122314447,18.969863891601562],[110.53151702880876,18.79458045959467],[110.42846679687528,18.684579849243164],[110.25514221191422,18.65847015380865],[110.10041809082043,18.52986145019537],[110.05069732666016,18.386810302734432],[109.90820312500016,18.415700912475586],[109.76125335693388,18.387638092041016],[109.72735595703118,18.232641220092773],[109.53347015380865,18.211250305175724],[109.47070312500006,18.276531219482536],[109.32430267334013,18.305694580078125],[109.15515136718744,18.293750762939396],[109.10597229003923,18.362361907959098],[108.98957824707043,18.357080459594727],[108.83429718017607,18.462640762329215],[108.68624877929693,18.506811141967887],[108.69652557373053,18.73319435119629],[108.6229171752932,18.84152984619146],[108.6593017578125,18.93569374084484],[108.61429595947264,19.097921371460075],[108.67763519287115,19.182638168334957],[108.63458251953153,19.29153060913086],[108.68347167968744,19.37264060974121],[108.77791595459001,19.395416259765682],[109.00819396972679,19.58347129821783],[109.18125152587918,19.65347099304205],[109.16069793701189,19.787082672119197],[109.2581863403322,19.864032745361442],[109.51680755615251,19.903749465942383],[109.57681274414091,19.977640151977653],[109.71290588378905,20.01152992248541],[109.75930786132835,19.965129852295036],[109.94152832031261,19.993194580078182],[109.98929595947266,19.933750152587887],[110.12763977050787,20.002639770507756],[110.38597869873064,20.0790309906007],[110.51041412353521,20.01791572570812],[110.68818664550804,20.16263961791998]]]},"properties":{"ID_0":49,"ISO":"CN-46","NAME_0":"China","ID_1":9,"NAME_1":"Hainan","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"海南","VARNAME_1":"Hǎinán"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.89429473876953,39.69630813598633],[116.91946411132811,39.84259796142584],[116.77923583984408,39.90305328369146],[116.75610351562511,39.966316223144524],[116.83486938476608,40.04358673095703],[117.0112533569337,40.03260803222667],[117.19398498535168,40.08278274536133],[117.13152313232456,39.921825408935604],[117.22265625,39.857101440429744],[117.16275787353527,39.79872894287115],[117.15242004394554,39.62674331665039],[116.97351074218771,39.642501831054744],[116.89429473876953,39.69630813598633]]],[[[119.23310852050804,41.312511444091854],[119.18230438232457,41.19206619262695],[118.88581848144553,40.94926071166992],[118.8355941772461,40.803291320800774],[118.9892196655278,40.690673828125114],[119.13710784912143,40.6328582763673],[119.29592132568405,40.52883529663097],[119.53701019287153,40.54928588867193],[119.59908294677733,40.45381164550781],[119.58081054687499,40.37427520751953],[119.64680480957031,40.217468261718864],[119.73799133300804,40.19283676147461],[119.80721282958984,39.97958374023449],[119.58458709716797,39.91374969482427],[119.3454132080078,39.722640991210994],[119.2576370239259,39.49819946289074],[119.3056869506837,39.420970916748104],[119.18791961669933,39.35792160034191],[119.00319671630871,39.19708251953125],[118.81041717529297,39.143470764160156],[118.63153076171896,39.16791915893565],[118.33597564697266,39.0245819091798],[118.20847320556642,39.07041549682622],[118.14514923095703,39.17124938964855],[118.01268768310545,39.218193054199325],[118.01047515869142,39.361911773681754],[117.86926269531261,39.448425292968864],[117.92980957031251,39.580131530761776],[117.6935958862306,39.5805549621582],[117.57858276367199,39.7279891967774],[117.51319122314487,39.88500595092779],[117.54586791992209,39.98641967773443],[117.80303192138717,39.98414993286133],[117.74359893798864,40.07381439208996],[117.6408462524414,40.09823989868164],[117.55962371826183,40.213554382324276],[117.37973785400412,40.22687149047863],[117.26734161376952,40.307861328125114],[117.1950912475586,40.49690246582025],[117.29975891113315,40.5773315429688],[117.32102966308616,40.6551971435548],[117.13343048095736,40.70161437988281],[116.99423217773438,40.692958831787166],[116.83230590820312,40.840320587158146],[116.71550750732433,40.9009628295899],[116.66688537597666,40.97671127319336],[116.45097351074232,40.97891235351562],[116.45445251464842,40.79011154174816],[116.24459075927746,40.787345886230575],[116.10874938964855,40.62240600585932],[115.9893035888673,40.5810317993164],[115.90907287597655,40.61767959594738],[115.72922515869152,40.50187301635748],[115.95513153076172,40.261817932128956],[115.82250213623057,40.140216827392635],[115.67327880859398,40.13534545898443],[115.4408187866211,40.02623367309582],[115.53909301757812,39.797416687011776],[115.46726226806652,39.67020416259777],[115.56856536865256,39.59565353393555],[115.6816635131838,39.599796295166016],[115.75010681152365,39.5117301940918],[115.92529296875011,39.59505462646496],[116.13475799560547,39.56499862670904],[116.34479522705078,39.44854354858398],[116.599464416504,39.62915420532221],[116.79938507080122,39.610008239746094],[116.79687500000011,39.457607269287166],[116.8808059692385,39.347843170166016],[116.86456298828146,39.1648521423341],[116.90145874023438,39.06421661376959],[116.75588989257834,39.02737426757818],[116.70439910888716,38.9204559326173],[116.75075531005903,38.740154266357415],[116.91632080078136,38.6908073425293],[117.0191421508789,38.7020721435548],[117.10205841064476,38.58654022216797],[117.2062149047854,38.62799072265631],[117.26931762695322,38.56954574584966],[117.56430816650425,38.65569305419933],[117.69458007812534,38.38235855102539],[117.8575439453126,38.26736068725586],[117.87126159667991,38.26144027709961],[117.87111663818382,38.25597381591797],[117.70034027099608,38.07770919799816],[117.57433319091818,38.06839752197271],[117.4482574462893,37.86536026000982],[117.4058151245117,37.84362030029296],[116.89412689209007,37.84426879882818],[116.79441833496115,37.83129501342768],[116.60633850097679,37.62678146362315],[116.43196105957031,37.46987152099615],[116.22567749023449,37.4722633361817],[116.15882873535156,37.37846755981457],[115.98389434814452,37.33635330200195],[115.86469268798827,37.07368087768566],[115.68394470214866,36.81945800781255],[115.4960250854492,36.768993377685604],[115.33660125732432,36.61305999755865],[115.27890777587902,36.49432754516607],[115.36262512207043,36.342380523681754],[115.46441650390646,36.257820129394474],[115.47286987304697,36.16936111450207],[115.35760498046896,36.094387054443416],[115.25508880615234,36.17609405517584],[115.12049865722666,36.211357116699276],[115.00572204589889,36.07243728637701],[114.8892822265625,36.13651275634759],[114.57871246337902,36.125465393066406],[114.32044219970703,36.24585342407238],[114.04631805419966,36.27998733520519],[113.90455627441429,36.351284027099666],[113.72434234619162,36.360000610351676],[113.70201110839854,36.42330932617193],[113.58819580078136,36.45759582519537],[113.58167266845726,36.54844665527355],[113.48027801513682,36.63498687744146],[113.4928207397462,36.74032974243163],[113.6494598388673,36.78556442260748],[113.66993713378906,36.855419158935604],[113.78646850585938,36.894397735595646],[113.75170898437533,37.075168609619254],[113.8960418701173,37.30953216552729],[113.95367431640636,37.34847259521484],[114.11190032958996,37.58973693847656],[114.12183380126976,37.69730758666998],[113.96395111083984,37.83337020874035],[113.87711334228537,38.053985595703125],[113.70291137695312,38.21108627319336],[113.56385040283202,38.236957550048935],[113.51879119873057,38.38246536254894],[113.57701110839844,38.46552658081055],[113.55550384521507,38.55783462524414],[113.60639190673827,38.64554595947271],[113.76902770996094,38.70916748046875],[113.84912872314453,38.82835006713873],[113.7608871459961,38.9588356018067],[113.89168548583996,39.06693649291992],[114.04420471191429,39.13482666015636],[114.1020736694337,39.0512046813966],[114.35786437988314,39.1034507751466],[114.4162826538086,39.30722808837896],[114.54537200927734,39.547451019287166],[114.40162658691418,39.65062713623047],[114.3863754272463,39.867168426513786],[114.30547332763693,39.85608673095703],[114.05168151855479,39.92816925048828],[114.01647186279297,39.99241256713873],[114.08847045898482,40.09930419921881],[114.05783843994175,40.163112640380916],[114.46347045898447,40.26675033569347],[114.5243911743164,40.343955993652344],[114.30792236328125,40.36830520629882],[114.26274108886717,40.48538589477539],[114.2764663696289,40.589458465576286],[114.19120788574219,40.62958908081055],[114.12786102294922,40.73575973510753],[113.96630859375,40.98146057128911],[113.86180114746094,41.067337036132926],[113.9137954711914,41.17041015625],[113.93061065673862,41.38480758666998],[113.86356353759777,41.436580657958984],[114.01346588134787,41.51765441894537],[114.1511459350586,41.52384567260748],[114.23322296142601,41.637542724609375],[114.20509338378906,41.79763031005864],[114.33010864257834,41.920093536376946],[114.4928207397463,41.970363616943416],[114.47077178955112,42.049312591552784],[114.55392456054699,42.13053131103527],[114.76879882812523,42.109020233154354],[114.89532470703136,41.99150085449213],[114.93949127197276,41.820648193359375],[114.88992309570335,41.765785217285206],[114.88935089111351,41.6345481872558],[115.21518707275402,41.57805633544922],[115.3590240478519,41.61180114746094],[115.31996917724608,41.700107574463004],[115.42324066162153,41.726482391357365],[115.80461120605469,41.91062164306652],[115.91017150878929,41.94323348999029],[115.99418640136719,41.81492996215832],[116.18979644775438,41.862461090088004],[116.32083129882858,42.00352478027338],[116.52749633789062,41.93688964843756],[116.70923614501989,41.941905975341854],[116.87339019775435,42.01646423339855],[116.89810943603514,42.388458251953125],[117.0145187377932,42.454704284668026],[117.40394592285155,42.474704742431754],[117.4676284790039,42.5838737487793],[117.67736053466808,42.57886505126958],[117.7731399536134,42.61648941040039],[118.01770782470702,42.38269424438482],[118.0995025634769,42.16967010498047],[118.09095764160156,42.10280609130865],[118.30023193359398,41.977607727050774],[118.3283691406251,41.86101531982433],[118.28584289550793,41.77069854736328],[118.15925598144531,41.811031341552734],[118.12394714355467,41.73998641967785],[118.3426513671875,41.340641021728516],[118.76374816894554,41.351032257080135],[118.88467407226585,41.29891967773449],[119.19430541992197,41.28028106689453],[119.23310852050804,41.312511444091854]]]]},"properties":{"ID_0":49,"ISO":"CN-13","NAME_0":"China","ID_1":10,"NAME_1":"Hebei","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"河北","VARNAME_1":"Héběi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[131.27595520019554,43.47871780395519],[131.16365051269543,43.43925094604503],[130.99462890625023,43.497936248779354],[130.87660217285156,43.43532562255871],[130.73614501953148,43.551612854003956],[130.51580810546875,43.62832260131836],[130.33006286621116,43.94802093505871],[130.00299072265648,43.881027221679744],[129.99787902832043,43.995368957519474],[129.85945129394565,44.01048660278332],[129.6570739746095,43.867465972900504],[129.4636840820316,43.86940765380865],[129.3954315185547,43.813796997070305],[129.23046875,43.80673217773432],[129.20211791992233,43.574462890625],[129.00317382812545,43.51940155029302],[128.84960937500023,43.55955123901372],[128.7337951660156,43.79654312133789],[128.65280151367233,43.884819030761776],[128.51533508300793,44.11908721923834],[128.46276855468773,44.15715408325207],[128.46697998046886,44.37427520751959],[128.35960388183616,44.508617401123104],[128.21028137207054,44.42990112304687],[128.15715026855503,44.33892059326172],[128.04859924316418,44.35000228881847],[128.09790039062523,44.21200561523449],[128.04721069335983,44.10842132568371],[127.86141967773459,44.06307220458979],[127.73556518554697,44.092674255371094],[127.62081146240234,44.183494567871094],[127.61432647705078,44.27439498901373],[127.47427368164062,44.40299606323248],[127.44866943359399,44.607799530029354],[127.21187591552734,44.633880615234425],[127.0243148803712,44.5905380249024],[127.03566741943358,44.70638656616211],[126.98287200927747,44.77508926391607],[126.99614715576206,44.87908554077159],[127.08002471923827,44.95063781738287],[126.96325683593771,45.072299957275504],[126.60437011718783,45.23363494873047],[126.3949661254883,45.216625213623104],[126.23775482177744,45.13749694824219],[126.01431274414084,45.15170669555663],[125.90144348144575,45.19057846069347],[125.69538116455077,45.33446502685558],[125.67999267578146,45.50801086425787],[125.40406799316419,45.43107986450206],[125.06824493408202,45.38916015625006],[125.0384750366211,45.490486145019645],[124.86831665039062,45.43911361694347],[124.74886322021484,45.45964050292963],[124.5395050048828,45.40707397460943],[124.38897705078136,45.437797546386776],[124.33868408203125,45.54535293579113],[124.20967864990246,45.62885665893566],[124.1277084350586,45.6301765441895],[123.95042419433639,45.94403076171881],[124.03059387207065,46.013851165771484],[123.88510894775389,46.301368713378906],[123.72232818603516,46.25339508056646],[123.50250244140625,46.25378036499023],[123.36196136474621,46.220123291015625],[123.17104339599634,46.24668121337896],[123.01202392578136,46.418949127197266],[123.00372314453124,46.57372283935541],[123.26243591308638,46.611534118652344],[123.34964752197277,46.6744995117188],[123.58889770507811,46.68665695190435],[123.62447357177744,46.80361557006847],[123.35256958007812,46.860954284668075],[123.20538330078148,46.84386444091797],[123.15702819824251,46.742782592773494],[123.0269241333009,46.724731445312614],[122.88900756835938,46.815731048583984],[122.89059448242188,46.95026397705078],[122.84196472167969,47.05282592773449],[122.60468292236327,47.12254714965832],[122.38791656494185,47.344146728515625],[122.49520111083986,47.40611648559576],[122.54921722412108,47.52074050903326],[122.81840515136763,47.65956878662104],[123.20001220703148,47.81901931762701],[123.29052734375011,47.9519500732423],[123.57421874999999,48.04172134399414],[123.75467681884787,48.204475402832145],[124.07180023193393,48.429424285888786],[124.2668151855471,48.52974319458019],[124.30473327636719,48.36406326293945],[124.50231933593751,48.124053955078125],[124.57075500488315,48.257568359375],[124.51212310791037,48.40478515625],[124.51280212402344,48.5483283996582],[124.6108627319336,48.67626953125006],[124.64270782470703,48.82167434692383],[124.88232421875023,49.177158355712834],[125.14952850341808,49.143058776855575],[125.26615905761729,49.3585472106933],[125.21549224853516,49.48554229736328],[125.19312286376987,49.73693847656256],[125.27192687988281,50.12553024291992],[125.44105529785168,50.210117340088004],[125.4375915527345,50.265930175781364],[125.6349334716799,50.449859619140625],[125.81913757324219,50.54684448242193],[125.78872680664107,50.73558425903326],[126.06407165527342,50.95911407470703],[125.97352600097678,51.09569931030285],[125.84705352783226,51.20912933349621],[125.75080871582041,51.225524902343864],[125.69090270996094,51.33047866821294],[125.34353637695335,51.622177124023494],[125.12730407714855,51.632411956787166],[125.03956604003918,51.527923583984375],[124.92606353759777,51.49910736083984],[124.85720825195322,51.37818908691406],[124.68614959716831,51.331619262695305],[124.48261260986338,51.37877273559581],[124.39867401123045,51.270305633544915],[124.23169708251977,51.343036651611385],[123.88298797607422,51.317989349365234],[123.70346832275402,51.39673995971673],[123.63520812988314,51.3184928894044],[123.2828292846682,51.2494468688966],[122.96698760986372,51.33358383178722],[122.84770202636719,51.47627258300787],[122.84937286376987,51.60534667968749],[122.74273681640635,51.742351531982365],[122.71907806396496,51.97739410400401],[122.62368774414074,52.135234832763786],[122.76294708251963,52.17710494995123],[122.75592803955078,52.265460968017635],[122.57911682128906,52.26520919799805],[122.33618927001964,52.41145706176758],[122.30334472656249,52.47386169433605],[122.12637329101585,52.474529266357536],[121.9407272338867,52.29719161987299],[121.70687103271518,52.316814422607536],[121.63298034667991,52.443183898925895],[121.51914978027344,52.45304107666021],[121.19284057617222,52.60234069824219],[121.36288452148459,52.680671691894474],[121.61347198486328,52.85200119018565],[121.70822143554686,52.99644470214849],[121.80916595458983,53.06410598754894],[121.64614105224634,53.180465698242244],[121.67065429687499,53.23693466186535],[121.4893798828126,53.33117294311518],[121.69239044189453,53.388511657714844],[122.07605743408224,53.42113876342785],[122.32962036132847,53.49732208251959],[122.44212341308605,53.441848754882926],[122.83354187011751,53.4529037475587],[123.25701904296874,53.560859680175895],[123.52179718017588,53.55316925048834],[123.84442138671886,53.48871994018549],[124.11501312255882,53.34368133544922],[124.24575042724642,53.36550903320318],[124.37548828125,53.24618148803716],[124.53032684326206,53.19488906860357],[124.66304016113291,53.19919204711914],[124.83304595947266,53.13269042968761],[124.98197174072278,53.19285202026378],[125.1882095336914,53.191589355468864],[125.48206329345714,53.09030914306652],[125.579658508301,53.080730438232365],[125.73636627197266,52.984508514404354],[125.66265869140638,52.91595077514648],[125.84910583496095,52.86016082763672],[126.3436813354492,52.39595031738281],[126.30267333984375,52.223281860351506],[126.54995727539074,52.13016891479492],[126.4692077636721,51.93531036376953],[126.56086730957041,51.85640335083002],[126.83277893066428,51.526538848877],[126.78382110595714,51.44036483764659],[126.97986602783249,51.307769775390625],[126.89791107177768,51.188365936279354],[126.92285156250011,51.05799865722661],[127.11181640625021,50.93387222290039],[127.3593521118164,50.58327865600586],[127.28761291503905,50.47747039794933],[127.3610610961914,50.4039306640625],[127.3687973022461,50.29315948486333],[127.5714797973634,50.242759704589844],[127.59432983398438,50.17292022705078],[127.50132751464889,50.061019897460994],[127.51512908935581,49.834640502929744],[127.64972686767624,49.77777099609381],[127.68492126464844,49.67330932617198],[127.80242156982422,49.59124755859381],[127.96154785156271,49.61182022094738],[128.0659179687501,49.54223632812506],[128.26089477539074,49.499950408935604],[128.39202880859398,49.58887863159185],[128.5354461669924,49.60184097290045],[128.70825195312523,49.563720703125],[128.77296447753952,49.47060012817388],[128.99516296386764,49.45048904418945],[129.1181335449221,49.348709106445426],[129.20581054687534,49.39894104003906],[129.31790161132824,49.354351043701115],[129.38406372070335,49.43146133422851],[129.52096557617207,49.41189193725597],[129.54539489746105,49.299720764160156],[129.66775512695324,49.29019165039062],[129.84469604492233,49.167659759521484],[129.9064178466797,49.05399703979492],[130.25747680664062,48.86184692382818],[130.4432373046876,48.90032196044922],[130.63667297363293,48.81423950195324],[130.52542114257835,48.638519287109425],[130.60110473632835,48.51501083374029],[130.7223663330078,48.50586318969732],[130.76588439941406,48.355010986328125],[130.82553100585972,48.30009078979497],[130.65205383300804,48.109340667724666],[130.6846160888672,48.03916931152344],[130.86395263671898,47.93212127685558],[130.95217895507847,47.81850051879894],[130.9541931152346,47.7202720642091],[131.09564208984375,47.681346893310604],[131.25323486328136,47.73376083374029],[131.50099182128926,47.72776031494146],[131.57955932617188,47.660648345947266],[131.6824340820317,47.706150054931754],[131.8037261962893,47.66971206665045],[132.2450866699221,47.70516204833979],[132.37559509277355,47.753879547119254],[132.50482177734398,47.711250305175895],[132.69148254394565,47.953609466552734],[132.78602600097702,47.92716979980463],[132.87658691406273,48.000000000000114],[133.0079040527345,48.01818084716797],[133.16029357910168,48.10570144653326],[133.35501098632812,48.10374069213867],[133.4681549072269,48.06760025024425],[133.80044555664062,48.19977951049815],[134.05769348144543,48.3353843688966],[134.38926696777344,48.38570404052729],[134.57540893554688,48.36321640014654],[134.67109680175793,48.16424179077154],[134.55055236816418,48.02439880371105],[134.5888671875001,47.906829833984375],[134.7715606689455,47.753459930420036],[134.6698455810547,47.58382415771495],[134.4935302734376,47.44380950927746],[134.33404541015636,47.43637084960949],[134.18699645996094,47.33092880249029],[134.1490936279297,47.259510040283146],[134.22261047363304,47.180702209472656],[134.1345825195316,47.087821960449276],[134.02073669433594,46.82228088378906],[134.01470947265648,46.65436172485351],[133.9130096435547,46.58145904541021],[133.85086059570335,46.46068191528332],[133.90849304199264,46.27159118652338],[133.84939575195312,46.20109939575207],[133.7001190185547,46.157814025878956],[133.73445129394528,46.047340393066406],[133.65689086914085,45.93769454956066],[133.4638824462893,45.82897949218756],[133.4761199951173,45.6544189453125],[133.34210205078125,45.54794311523432],[133.21519470214855,45.50911331176769],[133.133026123047,45.41987991333008],[133.09385681152366,45.2875709533692],[133.13555908203125,45.12710952758789],[132.97265625,45.0199089050293],[132.85197448730477,45.055690765380916],[132.6968536376953,44.69006729125988],[132.56057739257858,44.55504226684581],[132.31622314453145,44.61523056030279],[132.1116180419923,44.7406845092774],[132.18359375,44.95685195922857],[132.0585937500001,45.23558807373047],[131.82678222656273,45.308731079101676],[131.68673706054688,45.1141815185548],[131.4698486328125,44.959480285644645],[131.34425354003952,44.98189926147472],[131.2709503173828,44.92235946655279],[131.1379547119144,44.93704223632812],[130.9630126953126,44.81761932373041],[131.10266113281284,44.691558837890625],[131.2931060791018,44.07970046997076],[131.20352172851562,43.823570251464844],[131.22850036621105,43.59860229492199],[131.27595520019554,43.47871780395519]]]},"properties":{"ID_0":49,"ISO":"CN-23","NAME_0":"China","ID_1":11,"NAME_1":"Heilongjiang","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"黑龙江省|黑龍江省","VARNAME_1":"Hēilóngjiāng"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.47286987304697,36.16936111450207],[115.44036865234385,36.01320648193365],[115.3520736694338,35.97102355957031],[115.33192443847666,35.804111480713004],[115.80311584472656,36.01005172729498],[116.01735687255882,36.06333923339844],[116.03987121582054,35.97148895263683],[115.91765594482423,35.96976470947276],[115.76693725585982,35.863945007324325],[115.66016387939453,35.744159698486385],[115.49507904052733,35.7292098999024],[115.40918731689489,35.64693832397472],[115.3487777709961,35.50680160522455],[115.21638488769531,35.417804718017635],[115.16888427734375,35.44613265991222],[115.01925659179734,35.37437057495123],[114.99708557128929,35.288627624511776],[114.84293365478514,35.17755126953125],[114.88049316406249,35.00461196899414],[115.11365509033224,35.0103874206543],[115.19261932373071,34.92622375488287],[115.42497253417979,34.796310424804744],[115.43881988525412,34.675373077392685],[115.53153228759778,34.57902526855469],[115.67130279541014,34.561328887939396],[116.09555816650412,34.60671997070318],[116.18591308593749,34.57946777343756],[116.17365264892611,34.431613922119254],[116.38353729248071,34.28071594238281],[116.51093292236327,34.297325134277344],[116.5594177246096,34.09311294555664],[116.63354492187501,33.98846435546869],[116.56187438964866,33.90975570678722],[116.43643951416027,33.85443878173828],[116.36834716796888,33.78225708007824],[116.1498565673828,33.711246490478516],[115.97711944580101,33.91727066040039],[115.95223236083984,34.00925445556634],[115.85777282714855,34.00820159912115],[115.72204589843751,34.08029937744146],[115.59432983398482,34.033966064453175],[115.5492858886721,33.89166641235346],[115.6263122558596,33.8379364013673],[115.59094238281263,33.72902297973633],[115.63195037841808,33.58683776855469],[115.40752410888672,33.55921554565424],[115.30757141113281,33.43203735351574],[115.35664367675805,33.32394409179682],[115.2856903076174,33.13598632812506],[115.10659027099632,33.08357620239258],[114.88988494873068,33.08601379394537],[114.9339981079106,32.93647766113287],[115.13391113281261,32.8995246887207],[115.17764282226598,32.796249389648665],[115.19152832031249,32.59048080444353],[115.40228271484375,32.552547454833984],[115.53920745849655,32.42340850830084],[115.61597442626953,32.410995483398494],[115.82931518554733,32.526969909668026],[115.88243865966797,32.419975280761776],[115.93076324462913,32.16601943969732],[115.90435791015625,31.8200187683106],[115.87413024902388,31.77674865722656],[115.67327880859398,31.782377243041935],[115.49180603027344,31.67566680908203],[115.48127746582043,31.612388610839897],[115.37071228027344,31.501697540283487],[115.36437225341831,31.40503883361816],[115.20182037353516,31.440713882446286],[115.22996520996115,31.553312301635913],[115.13275146484419,31.606878280639762],[115.05345153808604,31.509363174438473],[114.83003234863304,31.46220588684093],[114.54058837890659,31.616878509521538],[114.58032989501974,31.756343841552848],[114.42451477050793,31.73444938659679],[114.28305053710938,31.758928298950252],[114.16300201416038,31.853225708007812],[113.98043823242186,31.75673675537109],[113.9458999633789,31.8608970642091],[113.84163665771507,31.849065780639705],[113.7348098754884,32.250343322753906],[113.75866699218773,32.37360382080084],[113.660400390625,32.421482086181584],[113.57417297363281,32.3417854309082],[113.41719818115234,32.275146484375],[113.34838867187511,32.297382354736555],[113.21605682373092,32.42483901977545],[113.14096832275425,32.382629394531364],[112.85492706298828,32.3981094360351],[112.76566314697266,32.350788116455305],[112.54367065429697,32.404361724853516],[112.43756866455077,32.35496520996105],[112.1513595581057,32.38526153564459],[111.94658660888688,32.51931762695318],[111.88416290283214,32.50550842285173],[111.71526336669922,32.606510162353516],[111.57189941406278,32.595813751220646],[111.44577789306645,32.72005462646496],[111.37394714355479,32.830688476562614],[111.24909973144531,32.88604354858404],[111.23239898681669,33.04270172119146],[110.97766113281267,33.259674072265796],[111.02043151855474,33.37694549560558],[110.99770355224608,33.58365631103521],[110.82721710205084,33.67475128173828],[110.77207946777344,33.80183410644537],[110.5877990722658,33.88915634155284],[110.67118072509766,33.95417785644531],[110.58245849609392,34.10277557373047],[110.63906860351555,34.16409301757824],[110.41948699951199,34.28166198730469],[110.4951171875,34.33678054809582],[110.35552215576178,34.52358245849614],[110.38023376464838,34.604488372802734],[110.68240356445328,34.59413909912115],[110.75208282470724,34.656459808349716],[110.8956375122072,34.662040710449276],[111.15017700195318,34.80830383300781],[111.22097778320324,34.79192733764643],[111.567626953125,34.849540710449276],[111.6857528686524,34.99225997924805],[111.82504272460949,35.073120117187614],[112.05079650878929,35.05064392089855],[112.07186126708984,35.229129791259766],[112.43359375,35.229743957519645],[112.76907348632812,35.20890426635742],[112.91504669189474,35.24839401245117],[113.02401733398438,35.363502502441406],[113.10746765136741,35.33320617675781],[113.20276641845737,35.44199371337902],[113.49054718017578,35.53054809570307],[113.55655670166026,35.648105621338004],[113.56907653808615,35.817844390869254],[113.65067291259764,35.836864471435604],[113.65881347656284,36.11945724487305],[113.72434234619162,36.360000610351676],[113.90455627441429,36.351284027099666],[114.04631805419966,36.27998733520519],[114.32044219970703,36.24585342407238],[114.57871246337902,36.125465393066406],[114.8892822265625,36.13651275634759],[115.00572204589889,36.07243728637701],[115.12049865722666,36.211357116699276],[115.25508880615234,36.17609405517584],[115.35760498046896,36.094387054443416],[115.47286987304697,36.16936111450207]]]},"properties":{"ID_0":49,"ISO":"CN-41","NAME_0":"China","ID_1":12,"NAME_1":"Henan","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"河南","VARNAME_1":"Hénán"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.97766113281267,33.259674072265796],[111.23239898681669,33.04270172119146],[111.24909973144531,32.88604354858404],[111.37394714355479,32.830688476562614],[111.44577789306645,32.72005462646496],[111.57189941406278,32.595813751220646],[111.71526336669922,32.606510162353516],[111.88416290283214,32.50550842285173],[111.94658660888688,32.51931762695318],[112.1513595581057,32.38526153564459],[112.43756866455077,32.35496520996105],[112.54367065429697,32.404361724853516],[112.76566314697266,32.350788116455305],[112.85492706298828,32.3981094360351],[113.14096832275425,32.382629394531364],[113.21605682373092,32.42483901977545],[113.34838867187511,32.297382354736555],[113.41719818115234,32.275146484375],[113.57417297363281,32.3417854309082],[113.660400390625,32.421482086181584],[113.75866699218773,32.37360382080084],[113.7348098754884,32.250343322753906],[113.84163665771507,31.849065780639705],[113.9458999633789,31.8608970642091],[113.98043823242186,31.75673675537109],[114.16300201416038,31.853225708007812],[114.28305053710938,31.758928298950252],[114.42451477050793,31.73444938659679],[114.58032989501974,31.756343841552848],[114.54058837890659,31.616878509521538],[114.83003234863304,31.46220588684093],[115.05345153808604,31.509363174438473],[115.13275146484419,31.606878280639762],[115.22996520996115,31.553312301635913],[115.20182037353516,31.440713882446286],[115.36437225341831,31.40503883361816],[115.55741119384766,31.159700393676868],[115.6955490112307,31.20327758789068],[115.75873565673872,31.12035369873058],[115.87502288818358,31.144224166870117],[116.00116729736374,30.94951629638672],[115.83775329589854,30.839673995971737],[115.76095581054686,30.674276351928942],[115.90872955322298,30.517946243286133],[115.87910461425791,30.385009765625057],[116.0590591430664,30.209255218505916],[116.06858062744139,29.972360610962028],[116.12962341308592,29.824850082397575],[116.04251098632822,29.750391006469897],[115.87762451171886,29.735132217407394],[115.68840789794932,29.851032257080135],[115.50516510009766,29.841829299926815],[115.40324401855469,29.687685012817383],[115.14984893798827,29.66103744506836],[115.14858245849655,29.51283836364746],[115.00390624999999,29.572092056274414],[114.8637161254883,29.48360824584961],[114.86354827880858,29.40630340576172],[114.75524902343761,29.369329452514936],[114.65571594238325,29.39630126953136],[114.51341247558615,29.32709121704107],[114.28784179687511,29.366165161132923],[114.24340820312511,29.238464355468746],[114.06909942626953,29.214675903320366],[113.9401321411134,29.048280715942322],[113.81707000732433,29.10557556152349],[113.72635650634766,29.074455261230526],[113.59960937500021,29.25536346435558],[113.65735626220726,29.38130187988281],[113.74504089355469,29.450445175170838],[113.67118072509766,29.514804840087944],[113.73174285888693,29.578884124755916],[113.63464355468749,29.6696014404298],[113.54369354248058,29.682418823242298],[113.55618286132824,29.81902503967296],[113.4371566772462,29.763933181762862],[113.21038055419933,29.537681579589844],[113.14346313476562,29.448657989502067],[113.03498077392578,29.50967216491705],[112.93881225585938,29.47407531738287],[112.90138244628918,29.78754043579107],[112.80280303955112,29.741548538208292],[112.6781692504885,29.596908569335994],[112.4431381225588,29.635257720947262],[112.3623733520509,29.539342880249194],[112.0716018676759,29.736671447754137],[111.784896850586,29.911354064941406],[111.54385375976567,29.89404487609863],[111.38594055175808,29.918916702270568],[111.23004913330084,30.045486450195366],[110.92368316650408,30.06740570068382],[110.82026672363276,30.12800407409668],[110.52275848388689,30.062427520752067],[110.50106048583989,29.9149227142334],[110.60893249511713,29.835947036743224],[110.63321685791016,29.763694763183764],[110.37486267089872,29.640249252319336],[110.10845184326166,29.792104721069336],[109.86514282226568,29.777469635009876],[109.65676879882822,29.599243164062614],[109.51831817626946,29.623172760009876],[109.36788940429688,29.428064346313473],[109.32924652099636,29.27114105224615],[109.25901794433616,29.23217582702642],[109.22859954834001,29.12245559692388],[109.10571289062528,29.21516799926786],[109.1050109863283,29.36424255371105],[108.97126770019543,29.33089637756376],[108.86643981933594,29.44981193542486],[108.86813354492205,29.639493942260742],[108.67495727539068,29.69368362426763],[108.65667724609398,29.85115242004394],[108.58754730224626,29.858566284179744],[108.45027160644537,29.74233245849626],[108.38242340087896,29.854690551757812],[108.51653289794949,29.870521545410153],[108.5248107910158,30.07951164245605],[108.5693817138673,30.25385475158697],[108.40393829345709,30.37798500061041],[108.4205703735352,30.488988876342884],[108.55462646484396,30.47736167907709],[108.68711090087908,30.589031219482703],[108.72857666015648,30.500770568847713],[108.81961822509793,30.49818611145025],[108.95596313476568,30.6227264404298],[109.11232757568365,30.649772644043026],[109.1465530395509,30.53647994995117],[109.31575012207026,30.62170791625971],[109.37458801269537,30.51461982727062],[109.44674682617216,30.61709213256847],[109.63980102539057,30.716789245605412],[109.77353668212908,30.85263252258295],[109.89366149902355,30.89163589477539],[110.0757064819336,30.804096221923825],[110.16403198242193,30.986728668213004],[110.1156921386718,31.0982990264892],[110.19042968750028,31.150600433349723],[110.13822174072283,31.395578384399474],[110.05512237548832,31.41599845886231],[109.93403625488287,31.5234375],[109.74819946289062,31.615152359008903],[109.71514129638666,31.71221542358404],[109.57660675048832,31.733167648315373],[109.62648773193376,31.964570999145625],[109.61682128906254,32.10912322998058],[109.49041748046903,32.3025856018067],[109.4954223632812,32.38108444213867],[109.62696075439459,32.6024169921875],[109.90569305419916,32.59506225585943],[110.02306365966797,32.55052947998047],[110.1998367309572,32.62979888916044],[110.13690948486328,32.80475234985357],[110.0223236083985,32.87265777587885],[109.75891876220707,32.909706115722656],[109.78942871093754,33.06887435913086],[109.68303680419928,33.11854553222656],[109.5713272094726,33.112297058105696],[109.43367004394531,33.15377807617199],[109.50920104980469,33.239566802978516],[109.84026336669916,33.248893737793026],[110.02587890625016,33.193675994873104],[110.1597595214843,33.211009979248104],[110.21314239501964,33.16501998901367],[110.4556808471682,33.18463897705084],[110.80570983886724,33.148437500000114],[110.97766113281267,33.259674072265796]]]},"properties":{"ID_0":49,"ISO":"CN-42","NAME_0":"China","ID_1":13,"NAME_1":"Hubei","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"湖北","VARNAME_1":"Húběi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.9401321411134,29.048280715942322],[113.95168304443371,28.970525741577266],[114.05625915527355,28.854015350341797],[114.1455535888673,28.820493698120114],[114.11759185791016,28.598354339599723],[114.20749664306686,28.46985816955589],[114.24922943115244,28.332538604736325],[114.0786285400394,28.182449340820426],[114.03450012207077,28.087497711181697],[113.9183273315432,28.000001907348576],[113.80004882812511,27.98008728027355],[113.72681427001976,27.884246826171875],[113.75767517089842,27.802581787109375],[113.60186004638695,27.628822326660156],[113.57796478271483,27.528127670288143],[113.61128997802734,27.348873138427848],[113.69427490234386,27.33539009094244],[113.8673782348634,27.3883056640625],[113.84187316894543,27.22589683532726],[113.77390289306663,27.140529632568416],[113.81130981445335,27.050224304199276],[113.91623687744186,26.96213150024414],[113.83438873291038,26.80258750915533],[113.9014129638673,26.621789932250977],[114.11697387695312,26.59279632568365],[114.08189392089842,26.414947509765565],[113.96507263183638,26.243938446045036],[114.04072570800781,26.190862655639876],[114.16769409179722,26.21220397949213],[114.19464111328124,26.128807067871207],[114.0400085449221,26.076362609863395],[114.02571105957054,25.926094055175724],[113.91043853759766,25.729339599609432],[113.9859848022461,25.554302215576172],[113.95921325683605,25.457321166992184],[113.89219665527365,25.43996620178217],[113.81206512451183,25.32813262939464],[113.75487518310592,25.359266281127987],[113.58399200439464,25.32307434082037],[113.53484344482455,25.365858078002873],[113.36460876464866,25.40072631835943],[113.29471588134764,25.494749069213977],[113.15413665771518,25.487932205200252],[113.01506042480479,25.348438262939567],[112.8527603149415,25.32934951782238],[112.86254882812499,25.247737884521598],[112.97397613525402,25.254402160644588],[112.96279907226574,25.160791397094723],[113.00085449218773,24.930334091186577],[112.77394866943371,24.896972656250053],[112.65400695800791,25.128871917724723],[112.39117431640636,25.142938613891715],[112.17819213867188,25.17727851867687],[112.14284515380871,25.01593017578125],[112.16409301757835,24.91137695312511],[112.0159149169923,24.73996162414545],[111.76525115966803,24.788452148437553],[111.68432617187517,24.78155517578125],[111.56139373779303,24.64114570617687],[111.4228515625,24.681093215942383],[111.4740753173831,24.800382614135742],[111.44398498535173,24.85980033874523],[111.45989227294928,25.026561737060547],[111.43122863769548,25.101142883300895],[111.2711029052735,25.145952224731502],[111.09161376953129,25.0276718139649],[111.09198760986334,24.944536209106502],[110.99164581298851,24.922689437866268],[110.94228363037136,25.03656387329113],[111.00070190429682,25.16755485534668],[111.09198760986334,25.28190803527832],[111.28569030761736,25.436988830566463],[111.33367919921903,25.60984039306652],[111.31177520751964,25.73057937622076],[111.41054534912138,25.771030426025447],[111.42713165283232,25.880847930908203],[111.21540069580082,25.897918701171875],[111.19966125488298,26.01690673828125],[111.24438476562506,26.065874099731502],[111.25716400146489,26.21200752258312],[111.16111755371088,26.30673217773443],[110.98759460449219,26.333953857421875],[110.93292999267584,26.29232215881359],[110.75655364990227,26.252420425415096],[110.60779571533197,26.337228775024414],[110.56656646728526,26.26456069946283],[110.37230682373053,26.09749984741211],[110.33061218261747,25.995586395263782],[110.09620666503935,26.023202896118278],[110.08750915527344,26.142990112304684],[109.9562225341798,26.1942596435548],[109.86648559570318,26.036716461181697],[109.77788543701182,26.000400543213058],[109.8214721679688,25.914623260498047],[109.6570663452149,25.883638381958008],[109.70696258544939,26.00746154785162],[109.47801971435575,26.03277397155767],[109.4950790405275,26.14627647399908],[109.4244766235351,26.294462203979545],[109.33377838134788,26.270935058593864],[109.27001190185563,26.31878852844244],[109.3762741088867,26.465026855468803],[109.35031127929703,26.696563720703182],[109.49270629882841,26.826517105102596],[109.55052947998058,26.95048141479492],[109.50717163085942,27.076116561889705],[109.38927459716803,27.1656551361084],[109.25971984863281,27.135271072387695],[109.16427612304715,27.075754165649414],[109.11281585693354,27.12581443786621],[108.87377166748075,27.0005283355714],[108.82865905761719,27.060491561889762],[108.91187286376974,27.162935256958008],[108.90032196044916,27.21713447570806],[109.05762481689459,27.296564102172965],[109.15285491943352,27.445451736450252],[109.24102020263689,27.42149543762218],[109.45413208007835,27.580150604248104],[109.4282836914062,27.744571685791072],[109.36629486083979,27.741748809814567],[109.29888916015629,27.95776939392107],[109.36843872070312,28.023717880249137],[109.29934692382807,28.076446533203068],[109.37786102294928,28.266525268554744],[109.26879119873075,28.318523406982706],[109.2702026367189,28.503477096557617],[109.31582641601568,28.593660354614315],[109.26481628417963,28.668857574462944],[109.231986999512,28.878896713256896],[109.30027770996105,29.06493949890148],[109.22859954834001,29.12245559692388],[109.25901794433616,29.23217582702642],[109.32924652099636,29.27114105224615],[109.36788940429688,29.428064346313473],[109.51831817626946,29.623172760009876],[109.65676879882822,29.599243164062614],[109.86514282226568,29.777469635009876],[110.10845184326166,29.792104721069336],[110.37486267089872,29.640249252319336],[110.63321685791016,29.763694763183764],[110.60893249511713,29.835947036743224],[110.50106048583989,29.9149227142334],[110.52275848388689,30.062427520752067],[110.82026672363276,30.12800407409668],[110.92368316650408,30.06740570068382],[111.23004913330084,30.045486450195366],[111.38594055175808,29.918916702270568],[111.54385375976567,29.89404487609863],[111.784896850586,29.911354064941406],[112.0716018676759,29.736671447754137],[112.3623733520509,29.539342880249194],[112.4431381225588,29.635257720947262],[112.6781692504885,29.596908569335994],[112.80280303955112,29.741548538208292],[112.90138244628918,29.78754043579107],[112.93881225585938,29.47407531738287],[113.03498077392578,29.50967216491705],[113.14346313476562,29.448657989502067],[113.21038055419933,29.537681579589844],[113.4371566772462,29.763933181762862],[113.55618286132824,29.81902503967296],[113.54369354248058,29.682418823242298],[113.63464355468749,29.6696014404298],[113.73174285888693,29.578884124755916],[113.67118072509766,29.514804840087944],[113.74504089355469,29.450445175170838],[113.65735626220726,29.38130187988281],[113.59960937500021,29.25536346435558],[113.72635650634766,29.074455261230526],[113.81707000732433,29.10557556152349],[113.9401321411134,29.048280715942322]]]},"properties":{"ID_0":49,"ISO":"CN-43","NAME_0":"China","ID_1":14,"NAME_1":"Hunan","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"湖南","VARNAME_1":"Húnán"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.28437805175781,35.08986282348627],[119.22402954101572,35.05764007568365],[119.17180633544935,34.85736083984381],[119.29069519042969,34.7473602294923],[119.44513702392612,34.74402999877941],[119.44957733154295,34.675418853759766],[119.78208160400413,34.469860076904354],[119.94208526611338,34.446804046630916],[120.26403045654318,34.309028625488395],[120.3281936645509,34.12180709838873],[120.48042297363293,33.81792068481451],[120.52791595458996,33.77708435058605],[120.66319274902342,33.50986099243164],[120.62568664550791,33.40568923950195],[120.70735931396528,33.36597061157238],[120.82430267333984,33.1495819091798],[120.82791900634778,33.042083740234375],[120.89597320556663,33.004310607910156],[120.91485595703146,32.878189086914006],[120.85597229003906,32.76541900634777],[120.90484619140625,32.617641448974666],[120.98458099365234,32.552921295166016],[121.31513977050781,32.43097305297863],[121.39319610595714,32.37931060791021],[121.38430786132811,32.18791580200201],[121.43402862548852,32.12430953979486],[121.65791320800783,32.06264114379888],[121.85041809082053,31.91570281982433],[121.92874908447264,31.72847175598156],[121.87069702148447,31.68513870239263],[121.6290283203126,31.73708343505859],[121.32903289794956,31.878749847412163],[121.26875305175815,31.879863739013896],[121.09680175781261,31.783470153808647],[121.08374786376987,31.72347068786621],[121.18125152587889,31.665140151977653],[121.32597351074251,31.505416870117468],[121.20725250244162,31.474849700927848],[121.1216049194338,31.30657577514677],[121.05766296386719,31.26090431213385],[121.04059600830078,31.13811874389654],[120.88040924072277,31.136251449585018],[120.89511871337892,31.01197814941412],[120.70153045654297,30.972934722900447],[120.70520782470727,30.90073013305675],[120.58148193359386,30.8590545654298],[120.50706481933615,30.76718521118175],[120.43340301513695,30.90119361877447],[120.36167144775392,30.951988220214844],[120.15082550048828,30.936313629150447],[119.991981506348,31.026542663574162],[119.90895080566418,31.17524719238287],[119.7831954956057,31.18224334716797],[119.63211059570311,31.139343261718803],[119.47254943847669,31.15841674804693],[119.15931701660166,31.300914764404236],[119.08900451660156,31.237642288208065],[118.78681945800804,31.232364654541072],[118.70227050781249,31.30001449584961],[118.8759994506836,31.451343536377234],[118.85961151123047,31.624330520629996],[118.67173767089844,31.64154243469238],[118.68673706054686,31.71233558654785],[118.48813629150413,31.78578758239757],[118.4591293334962,31.87640190124506],[118.36409759521483,31.937202453613338],[118.38770294189487,32.083293914795036],[118.49331665039072,32.125400543213175],[118.50152587890636,32.196231842041186],[118.65695190429732,32.22014617919933],[118.68303680419945,32.476543426513956],[118.55628967285168,32.56743240356445],[118.71678161621092,32.61086273193365],[119.12901306152366,32.49342727661133],[119.21438598632812,32.63367843627935],[119.17800140380871,32.83283233642578],[119.11176300048827,32.824146270751946],[119.00771331787155,32.96199798584007],[118.84521484375045,32.95954895019537],[118.74137878417969,32.85739898681635],[118.70691680908226,32.72151565551775],[118.36602020263673,32.72114562988287],[118.24067687988281,32.84984970092785],[118.25928497314463,32.94922637939459],[118.20837402343749,33.19346237182623],[118.0342712402347,33.14204406738281],[117.96639251708984,33.28302764892584],[118.16163635253918,33.713794708252],[118.11162567138695,33.76447296142584],[117.93129730224608,33.73094177246105],[117.72579956054699,33.72898101806646],[117.75293731689489,33.88705825805675],[117.57020568847666,33.98442840576183],[117.50904083251953,34.06224822998058],[117.40442657470703,34.02824020385742],[117.34713745117199,34.09105300903326],[117.18663024902355,34.07017898559582],[117.01844024658203,34.17945861816412],[116.91522979736362,34.40842437744152],[116.82304382324264,34.39001083374035],[116.72081756591807,34.477474212646484],[116.61669921875,34.48976135253906],[116.36860656738281,34.64086914062506],[116.40851593017601,34.85988235473632],[116.45969390869186,34.89850997924816],[116.77940368652355,34.9440650939942],[116.96147918701183,34.87654113769531],[117.12274169921885,34.64001464843744],[117.16768646240257,34.482429504394645],[117.24007415771484,34.45858764648449],[117.35250091552756,34.59463882446295],[117.48045349121115,34.48172378540045],[117.55650329589842,34.4671745300293],[117.67935943603516,34.544261932373104],[117.79530334472656,34.52215957641607],[117.81449890136732,34.65426635742199],[117.96543121337889,34.67564010620117],[118.094970703125,34.64862442016607],[118.07673645019575,34.58001708984381],[118.16266632080078,34.39336013793945],[118.39965057373092,34.43804168701172],[118.46082305908227,34.677833557128906],[118.71508026123068,34.7608757019043],[118.92056274414072,35.061733245849666],[119.11466217041038,35.06107330322271],[119.28437805175781,35.08986282348627]]]},"properties":{"ID_0":49,"ISO":"CN-32","NAME_0":"China","ID_1":15,"NAME_1":"Jiangsu","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"江蘇|江苏","VARNAME_1":"Jiāngsū"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[118.18945312500023,29.39522171020536],[118.20594787597656,29.350814819336165],[118.03459930419932,29.210161209106726],[118.04351043701182,29.09466934204113],[118.09647369384764,28.993619918823356],[118.18122100830088,28.982320785522514],[118.36033630371116,28.811964035034237],[118.43223571777355,28.674160003662106],[118.4088363647461,28.575767517089957],[118.46610260009798,28.47573852539068],[118.42427062988293,28.292282104492244],[118.3367843627933,28.096084594726502],[118.14241027832043,28.066223144531303],[118.08811187744139,28.011186599731502],[117.92820739746104,27.972093582153377],[117.78416442871104,27.89917182922363],[117.7354660034182,27.806995391845817],[117.47182464599608,27.938741683959957],[117.28168487548828,27.875072479248157],[117.29500579833983,27.77881813049316],[117.19828033447298,27.688455581665096],[117.02031707763683,27.66392326354986],[117.01541137695312,27.565883636474894],[117.09513092041016,27.539754867553768],[117.16455841064453,27.29821205139166],[116.94204711914085,27.04147338867199],[116.67462158203148,26.98192405700695],[116.54402160644531,26.84349822998058],[116.51040649414085,26.72442436218273],[116.56420135498068,26.64577484130859],[116.59362030029297,26.489250183105522],[116.38374328613293,26.24109077453613],[116.42035675048838,26.07698249816906],[116.29248809814487,25.924467086792276],[116.1324615478519,25.870069503784237],[116.13201141357466,25.767911911010856],[116.05081939697301,25.69052124023449],[116.05012512207054,25.55576896667486],[115.9896240234375,25.470994949340934],[116.00704193115246,25.325311660766715],[115.85150909423862,25.213085174560547],[115.90413665771494,25.085796356201286],[115.87726593017578,24.93583488464361],[115.81189727783226,24.90282058715826],[115.76171112060545,24.797672271728512],[115.76219940185547,24.665426254272575],[115.83157348632834,24.565416336059684],[115.72159576416027,24.53724670410162],[115.67007446289061,24.59854125976574],[115.56167602539074,24.627124786376953],[115.47354888916027,24.759233474731385],[115.41083526611374,24.78082466125488],[115.21117401123045,24.725015640258846],[115.10470581054733,24.66470718383789],[115.03675079345727,24.696493148803768],[114.93382263183604,24.649627685546932],[114.87182617187544,24.56470108032238],[114.78713989257857,24.608608245849606],[114.68016052246092,24.537109375000114],[114.52752685546896,24.55403137207037],[114.42615509033203,24.487041473388786],[114.35216522216795,24.58781623840332],[114.16944885253906,24.673164367675724],[114.27632904052757,24.70924568176281],[114.39538574218761,24.877853393554688],[114.39031982421875,24.952095031738338],[114.64369201660179,25.077552795410156],[114.732002258301,25.236312866210994],[114.52974700927734,25.418529510498104],[114.3857650756836,25.319406509399528],[114.23008728027344,25.290590286254996],[114.11812591552733,25.312196731567383],[113.95921325683605,25.457321166992184],[113.9859848022461,25.554302215576172],[113.91043853759766,25.729339599609432],[114.02571105957054,25.926094055175724],[114.0400085449221,26.076362609863395],[114.19464111328124,26.128807067871207],[114.16769409179722,26.21220397949213],[114.04072570800781,26.190862655639876],[113.96507263183638,26.243938446045036],[114.08189392089842,26.414947509765565],[114.11697387695312,26.59279632568365],[113.9014129638673,26.621789932250977],[113.83438873291038,26.80258750915533],[113.91623687744186,26.96213150024414],[113.81130981445335,27.050224304199276],[113.77390289306663,27.140529632568416],[113.84187316894543,27.22589683532726],[113.8673782348634,27.3883056640625],[113.69427490234386,27.33539009094244],[113.61128997802734,27.348873138427848],[113.57796478271483,27.528127670288143],[113.60186004638695,27.628822326660156],[113.75767517089842,27.802581787109375],[113.72681427001976,27.884246826171875],[113.80004882812511,27.98008728027355],[113.9183273315432,28.000001907348576],[114.03450012207077,28.087497711181697],[114.0786285400394,28.182449340820426],[114.24922943115244,28.332538604736325],[114.20749664306686,28.46985816955589],[114.11759185791016,28.598354339599723],[114.1455535888673,28.820493698120114],[114.05625915527355,28.854015350341797],[113.95168304443371,28.970525741577266],[113.9401321411134,29.048280715942322],[114.06909942626953,29.214675903320366],[114.24340820312511,29.238464355468746],[114.28784179687511,29.366165161132923],[114.51341247558615,29.32709121704107],[114.65571594238325,29.39630126953136],[114.75524902343761,29.369329452514936],[114.86354827880858,29.40630340576172],[114.8637161254883,29.48360824584961],[115.00390624999999,29.572092056274414],[115.14858245849655,29.51283836364746],[115.14984893798827,29.66103744506836],[115.40324401855469,29.687685012817383],[115.50516510009766,29.841829299926815],[115.68840789794932,29.851032257080135],[115.87762451171886,29.735132217407394],[116.04251098632822,29.750391006469897],[116.12962341308592,29.824850082397575],[116.27577972412121,29.791370391845756],[116.4651412963867,29.900489807128906],[116.54703521728537,29.917903900146655],[116.58567047119142,30.05631828308111],[116.67045593261764,30.074922561645565],[116.89521026611362,29.952171325683594],[116.8073425292971,29.814264297485465],[116.6518249511722,29.688985824585018],[116.70677947998045,29.587591171264588],[116.83589935302734,29.573484420776534],[116.99089813232432,29.685926437377987],[117.1075592041018,29.714485168457202],[117.12251281738293,29.89785194396973],[117.21170806884788,29.929412841796985],[117.24764251708984,29.83720207214384],[117.33312988281283,29.850299835205135],[117.449600219727,29.751541137695312],[117.53356170654297,29.60194969177246],[117.64278411865244,29.617582321166992],[117.70237731933605,29.5515861511231],[117.87139892578125,29.548921585083125],[118.00888824462902,29.57979393005371],[118.1384963989259,29.49219703674339],[118.18945312500023,29.39522171020536]]]},"properties":{"ID_0":49,"ISO":"CN-36","NAME_0":"China","ID_1":16,"NAME_1":"Jiangxi","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"江西","VARNAME_1":"Jiāngxī"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[131.27595520019554,43.47871780395519],[131.30575561523438,43.392730712890675],[131.18988037109375,43.20090103149414],[131.20433044433628,43.14319229125982],[131.09658813476562,43.020431518554744],[131.1265869140626,42.930519104003906],[131.02960205078136,42.86328125000006],[130.78915405273438,42.86434555053722],[130.54434204101562,42.807689666748104],[130.53059387207043,42.697570800781364],[130.62303161621116,42.62267303466797],[130.6104888916018,42.55820846557622],[130.41555786132835,42.57017898559576],[130.24824523925804,42.71139144897472],[130.26582336425804,42.886070251464844],[130.11624145507812,42.902774810791016],[130.07073974609386,42.96932220458989],[129.89653015136741,43.0019989013673],[129.7618408203125,42.71091079711914],[129.74058532714844,42.464313507080135],[129.52586364746128,42.38634490966797],[129.44577026367188,42.44118499755865],[129.23498535156284,42.37416076660156],[129.1409149169922,42.14328384399414],[128.9551696777345,42.07561874389654],[128.94512939453125,42.01747894287109],[128.74354553222668,42.04288864135753],[128.5725860595703,41.99794006347667],[128.29060363769543,42.03458023071289],[128.06402587890625,41.96541976928722],[128.08639526367188,41.814525604248104],[128.14413452148438,41.723869323730575],[128.29730224609386,41.63393783569347],[128.3138122558596,41.58303070068364],[128.20202636718747,41.40959930419922],[128.1024627685547,41.36301803588873],[128.00027465820335,41.429031372070256],[127.61698913574253,41.424991607666016],[127.4087066650394,41.45542144775396],[127.15936279296886,41.539051055908196],[127.04412841796898,41.74277877807623],[126.94390106201172,41.78820037841797],[126.75700378417967,41.726505279541016],[126.61067199707065,41.642890930175774],[126.44696044921885,41.35438156127929],[126.30815887451205,41.22368240356457],[126.28719329833984,41.159488677978516],[126.16004943847679,41.0840682983399],[126.00634765625044,40.89154815673828],[125.9125137329106,40.89314270019537],[125.78570556640635,40.90217208862304],[125.70547485351561,40.866161346435604],[125.67092132568393,40.97814559936529],[125.78640747070334,41.160285949706974],[125.63453674316408,41.334068298339844],[125.43860626220736,41.599834442138615],[125.4460220336915,41.66999435424816],[125.31559753417969,41.68470382690424],[125.2836151123048,41.839859008789176],[125.31581115722656,41.97240447998058],[125.47946929931639,42.13902664184581],[125.333808898926,42.14725112915039],[125.26272583007824,42.264778137207145],[125.15403747558592,42.34770965576177],[125.16471862792969,42.429653167724666],[125.07175445556686,42.49752044677729],[124.98367309570325,42.77033233642578],[124.84268188476607,42.86259460449213],[124.86291503906261,42.97772979736334],[124.78251647949217,43.110992431640625],[124.51635742187499,42.86565780639654],[124.36603546142624,42.90604400634777],[124.3315429687501,42.99481201171875],[124.41047668457077,43.076862335205185],[124.2842254638673,43.15907287597662],[124.27725982666016,43.214859008789176],[124.01515197753939,43.28372192382824],[123.75955200195324,43.4728393554688],[123.69683837890625,43.37086868286133],[123.58676910400389,43.3707008361817],[123.4786071777347,43.46884155273443],[123.31695556640646,43.495536804199276],[123.32202148437533,43.556827545166016],[123.50308990478538,43.59367370605463],[123.52735137939476,43.66374206542969],[123.47249603271496,43.857593536376946],[123.34236907958996,44.02139282226568],[123.38014984130858,44.15814590454113],[123.29075622558592,44.19419097900396],[123.11921691894543,44.422187805175895],[123.02581787109375,44.50304794311523],[122.85549163818358,44.39595794677734],[122.43000793457031,44.22442245483404],[122.26073455810547,44.266525268554744],[122.28643035888695,44.47027206420904],[122.09339141845714,44.636604309082145],[122.0802459716799,44.910278320312614],[122.1178741455078,45.15877151489258],[122.23198699951172,45.222103118896484],[122.14030456542979,45.299797058105405],[122.16167449951182,45.43026733398432],[122.01477813720702,45.489044189453125],[121.9461593627932,45.70629501342785],[121.77812194824241,45.68417358398437],[121.66998291015648,45.7176132202149],[121.80608367919922,45.879211425781364],[121.82534790039062,46.02114868164073],[122.07074737548838,45.922912597656364],[122.24613189697264,45.8030624389649],[122.36753845214844,45.90985870361334],[122.48887634277354,45.853805541992244],[122.55725860595724,45.762821197509766],[122.71768951416037,45.713172912597656],[122.79521179199253,45.770717620849666],[122.82079315185548,45.88393402099615],[122.77993774414074,46.067497253418075],[123.03833770751964,46.09715652465832],[123.17104339599634,46.24668121337896],[123.36196136474621,46.220123291015625],[123.50250244140625,46.25378036499023],[123.72232818603516,46.25339508056646],[123.88510894775389,46.301368713378906],[124.03059387207065,46.013851165771484],[123.95042419433639,45.94403076171881],[124.1277084350586,45.6301765441895],[124.20967864990246,45.62885665893566],[124.33868408203125,45.54535293579113],[124.38897705078136,45.437797546386776],[124.5395050048828,45.40707397460943],[124.74886322021484,45.45964050292963],[124.86831665039062,45.43911361694347],[125.0384750366211,45.490486145019645],[125.06824493408202,45.38916015625006],[125.40406799316419,45.43107986450206],[125.67999267578146,45.50801086425787],[125.69538116455077,45.33446502685558],[125.90144348144575,45.19057846069347],[126.01431274414084,45.15170669555663],[126.23775482177744,45.13749694824219],[126.3949661254883,45.216625213623104],[126.60437011718783,45.23363494873047],[126.96325683593771,45.072299957275504],[127.08002471923827,44.95063781738287],[126.99614715576206,44.87908554077159],[126.98287200927747,44.77508926391607],[127.03566741943358,44.70638656616211],[127.0243148803712,44.5905380249024],[127.21187591552734,44.633880615234425],[127.44866943359399,44.607799530029354],[127.47427368164062,44.40299606323248],[127.61432647705078,44.27439498901373],[127.62081146240234,44.183494567871094],[127.73556518554697,44.092674255371094],[127.86141967773459,44.06307220458979],[128.04721069335983,44.10842132568371],[128.09790039062523,44.21200561523449],[128.04859924316418,44.35000228881847],[128.15715026855503,44.33892059326172],[128.21028137207054,44.42990112304687],[128.35960388183616,44.508617401123104],[128.46697998046886,44.37427520751959],[128.46276855468773,44.15715408325207],[128.51533508300793,44.11908721923834],[128.65280151367233,43.884819030761776],[128.7337951660156,43.79654312133789],[128.84960937500023,43.55955123901372],[129.00317382812545,43.51940155029302],[129.20211791992233,43.574462890625],[129.23046875,43.80673217773432],[129.3954315185547,43.813796997070305],[129.4636840820316,43.86940765380865],[129.6570739746095,43.867465972900504],[129.85945129394565,44.01048660278332],[129.99787902832043,43.995368957519474],[130.00299072265648,43.881027221679744],[130.33006286621116,43.94802093505871],[130.51580810546875,43.62832260131836],[130.73614501953148,43.551612854003956],[130.87660217285156,43.43532562255871],[130.99462890625023,43.497936248779354],[131.16365051269543,43.43925094604503],[131.27595520019554,43.47871780395519]]]},"properties":{"ID_0":49,"ISO":"CN-22","NAME_0":"China","ID_1":17,"NAME_1":"Jilin","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"吉林","VARNAME_1":"Jílín"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[121.7179183959962,39.4409637451173],[121.5929183959963,39.43264389038097],[121.53597259521518,39.379585266113224],[121.44069671630871,39.50680541992182],[121.31958007812511,39.59347534179693],[121.52041625976574,39.63042449951172],[121.45458221435547,39.74458694458008],[121.47180938720726,39.80736541748058],[121.7023620605471,39.928474426269645],[121.76985931396484,39.9131965637207],[122.10430908203136,40.24124908447271],[122.08930206298862,40.29430389404308],[122.30124664306642,40.47402954101562],[122.1518020629884,40.599578857421875],[122.15736389160168,40.68069458007818],[121.86930847168014,40.8143043518067],[121.73124694824217,40.84431076049816],[121.55652618408213,40.84097290039074],[121.49624633789074,40.88597106933605],[121.17180633544932,40.92208480834966],[120.93152618408214,40.77264022827148],[120.93708038330077,40.69153213500988],[120.82847595214888,40.6782112121582],[120.67430877685571,40.53792190551763],[120.49819183349645,40.32514190673833],[120.44264221191405,40.195693969726676],[120.3156967163086,40.18680953979503],[120.15319061279297,40.1106948852539],[119.94040679931688,40.053749084472706],[119.80721282958984,39.97958374023449],[119.73799133300804,40.19283676147461],[119.64680480957031,40.217468261718864],[119.58081054687499,40.37427520751953],[119.59908294677733,40.45381164550781],[119.53701019287153,40.54928588867193],[119.29592132568405,40.52883529663097],[119.13710784912143,40.6328582763673],[118.9892196655278,40.690673828125114],[118.8355941772461,40.803291320800774],[118.88581848144553,40.94926071166992],[119.18230438232457,41.19206619262695],[119.23310852050804,41.312511444091854],[119.39688110351597,41.4728736877442],[119.30364990234375,41.66513824462901],[119.28170776367188,41.7842369079591],[119.31414794921875,41.96540069580078],[119.37397766113293,42.08968734741211],[119.22856140136741,42.202850341796875],[119.27729034423861,42.26804733276373],[119.5371322631836,42.355705261230526],[119.60010528564464,42.25545120239258],[119.84078216552734,42.21323394775396],[119.83965301513695,42.09523773193371],[120.12115478515625,41.77027893066406],[120.3309783935549,41.978363037109375],[120.47286987304688,42.02441024780268],[120.46109771728538,42.10309600830078],[120.73976135253929,42.22132873535167],[120.91995239257812,42.27224731445324],[121.024757385254,42.246910095214844],[121.2657699584963,42.37526702880854],[121.40024566650415,42.48287582397472],[121.58621215820335,42.515361785888615],[121.6551895141605,42.43623352050787],[121.85715484619152,42.54022598266607],[121.93098449707064,42.684535980224545],[122.2056350708009,42.722877502441456],[122.33116149902344,42.67255020141601],[122.55168914794922,42.823490142822315],[122.61830139160178,42.77329635620117],[123.06138610839865,42.7733726501466],[123.17356109619186,42.855270385742244],[123.24979400634788,42.9931755065918],[123.43212127685547,43.0376701354981],[123.55663299560545,43.00646209716797],[123.62375640869175,43.07759094238281],[123.69683837890625,43.37086868286133],[123.75955200195324,43.4728393554688],[124.01515197753939,43.28372192382824],[124.27725982666016,43.214859008789176],[124.2842254638673,43.15907287597662],[124.41047668457077,43.076862335205185],[124.3315429687501,42.99481201171875],[124.36603546142624,42.90604400634777],[124.51635742187499,42.86565780639654],[124.78251647949217,43.110992431640625],[124.86291503906261,42.97772979736334],[124.84268188476607,42.86259460449213],[124.98367309570325,42.77033233642578],[125.07175445556686,42.49752044677729],[125.16471862792969,42.429653167724666],[125.15403747558592,42.34770965576177],[125.26272583007824,42.264778137207145],[125.333808898926,42.14725112915039],[125.47946929931639,42.13902664184581],[125.31581115722656,41.97240447998058],[125.2836151123048,41.839859008789176],[125.31559753417969,41.68470382690424],[125.4460220336915,41.66999435424816],[125.43860626220736,41.599834442138615],[125.63453674316408,41.334068298339844],[125.78640747070334,41.160285949706974],[125.67092132568393,40.97814559936529],[125.70547485351561,40.866161346435604],[125.78570556640635,40.90217208862304],[125.9125137329106,40.89314270019537],[125.77462005615244,40.886791229248104],[125.55963134765648,40.76443099975585],[125.4544677734375,40.668151855468864],[125.1899185180664,40.60818099975597],[124.88754272460947,40.470890045166016],[124.38584136962913,40.12308883666998],[124.34039306640624,39.98122024536144],[124.20153045654297,39.86014175415033],[124.00458526611374,39.80041885375987],[123.87180328369163,39.855422973632926],[123.65985870361328,39.85569763183593],[123.41152954101562,39.73096847534191],[123.41069793701183,39.80847167968756],[123.2629165649414,39.78819274902344],[123.26374816894554,39.707920074463004],[123.14514160156295,39.66347122192394],[123.029296875,39.67847061157232],[122.6651382446289,39.52569961547857],[122.57013702392612,39.46485900878906],[122.4318084716798,39.467926025390625],[122.24819183349608,39.342365264892635],[122.24124145507857,39.28208541870117],[122.09347534179699,39.19486618041992],[121.9548568725586,39.0373649597168],[121.73819732666014,39.03847503662115],[121.47207641601595,38.81792068481457],[121.34652709960949,38.8245849609375],[121.19735717773483,38.722358703613274],[121.13375091552733,38.72541809082031],[121.09430694580101,38.92874908447265],[121.20430755615234,38.931804656982536],[121.31708526611351,39.001529693603565],[121.65763854980479,39.07847595214844],[121.6115264892578,39.20486450195307],[121.7579193115239,39.31042480468756],[121.7179183959962,39.4409637451173]]]},"properties":{"ID_0":49,"ISO":"CN-21","NAME_0":"China","ID_1":18,"NAME_1":"Liaoning","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"遼寧|辽宁","VARNAME_1":"Liáoníng"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[123.17104339599634,46.24668121337896],[123.03833770751964,46.09715652465832],[122.77993774414074,46.067497253418075],[122.82079315185548,45.88393402099615],[122.79521179199253,45.770717620849666],[122.71768951416037,45.713172912597656],[122.55725860595724,45.762821197509766],[122.48887634277354,45.853805541992244],[122.36753845214844,45.90985870361334],[122.24613189697264,45.8030624389649],[122.07074737548838,45.922912597656364],[121.82534790039062,46.02114868164073],[121.80608367919922,45.879211425781364],[121.66998291015648,45.7176132202149],[121.77812194824241,45.68417358398437],[121.9461593627932,45.70629501342785],[122.01477813720702,45.489044189453125],[122.16167449951182,45.43026733398432],[122.14030456542979,45.299797058105405],[122.23198699951172,45.222103118896484],[122.1178741455078,45.15877151489258],[122.0802459716799,44.910278320312614],[122.09339141845714,44.636604309082145],[122.28643035888695,44.47027206420904],[122.26073455810547,44.266525268554744],[122.43000793457031,44.22442245483404],[122.85549163818358,44.39595794677734],[123.02581787109375,44.50304794311523],[123.11921691894543,44.422187805175895],[123.29075622558592,44.19419097900396],[123.38014984130858,44.15814590454113],[123.34236907958996,44.02139282226568],[123.47249603271496,43.857593536376946],[123.52735137939476,43.66374206542969],[123.50308990478538,43.59367370605463],[123.32202148437533,43.556827545166016],[123.31695556640646,43.495536804199276],[123.4786071777347,43.46884155273443],[123.58676910400389,43.3707008361817],[123.69683837890625,43.37086868286133],[123.62375640869175,43.07759094238281],[123.55663299560545,43.00646209716797],[123.43212127685547,43.0376701354981],[123.24979400634788,42.9931755065918],[123.17356109619186,42.855270385742244],[123.06138610839865,42.7733726501466],[122.61830139160178,42.77329635620117],[122.55168914794922,42.823490142822315],[122.33116149902344,42.67255020141601],[122.2056350708009,42.722877502441456],[121.93098449707064,42.684535980224545],[121.85715484619152,42.54022598266607],[121.6551895141605,42.43623352050787],[121.58621215820335,42.515361785888615],[121.40024566650415,42.48287582397472],[121.2657699584963,42.37526702880854],[121.024757385254,42.246910095214844],[120.91995239257812,42.27224731445324],[120.73976135253929,42.22132873535167],[120.46109771728538,42.10309600830078],[120.47286987304688,42.02441024780268],[120.3309783935549,41.978363037109375],[120.12115478515625,41.77027893066406],[119.83965301513695,42.09523773193371],[119.84078216552734,42.21323394775396],[119.60010528564464,42.25545120239258],[119.5371322631836,42.355705261230526],[119.27729034423861,42.26804733276373],[119.22856140136741,42.202850341796875],[119.37397766113293,42.08968734741211],[119.31414794921875,41.96540069580078],[119.28170776367188,41.7842369079591],[119.30364990234375,41.66513824462901],[119.39688110351597,41.4728736877442],[119.23310852050804,41.312511444091854],[119.19430541992197,41.28028106689453],[118.88467407226585,41.29891967773449],[118.76374816894554,41.351032257080135],[118.3426513671875,41.340641021728516],[118.12394714355467,41.73998641967785],[118.15925598144531,41.811031341552734],[118.28584289550793,41.77069854736328],[118.3283691406251,41.86101531982433],[118.30023193359398,41.977607727050774],[118.09095764160156,42.10280609130865],[118.0995025634769,42.16967010498047],[118.01770782470702,42.38269424438482],[117.7731399536134,42.61648941040039],[117.67736053466808,42.57886505126958],[117.4676284790039,42.5838737487793],[117.40394592285155,42.474704742431754],[117.0145187377932,42.454704284668026],[116.89810943603514,42.388458251953125],[116.87339019775435,42.01646423339855],[116.70923614501989,41.941905975341854],[116.52749633789062,41.93688964843756],[116.32083129882858,42.00352478027338],[116.18979644775438,41.862461090088004],[115.99418640136719,41.81492996215832],[115.91017150878929,41.94323348999029],[115.80461120605469,41.91062164306652],[115.42324066162153,41.726482391357365],[115.31996917724608,41.700107574463004],[115.3590240478519,41.61180114746094],[115.21518707275402,41.57805633544922],[114.88935089111351,41.6345481872558],[114.88992309570335,41.765785217285206],[114.93949127197276,41.820648193359375],[114.89532470703136,41.99150085449213],[114.76879882812523,42.109020233154354],[114.55392456054699,42.13053131103527],[114.47077178955112,42.049312591552784],[114.4928207397463,41.970363616943416],[114.33010864257834,41.920093536376946],[114.20509338378906,41.79763031005864],[114.23322296142601,41.637542724609375],[114.1511459350586,41.52384567260748],[114.01346588134787,41.51765441894537],[113.86356353759777,41.436580657958984],[113.93061065673862,41.38480758666998],[113.9137954711914,41.17041015625],[113.86180114746094,41.067337036132926],[113.96630859375,40.98146057128911],[114.12786102294922,40.73575973510753],[114.05723571777355,40.70555496215826],[114.05509948730513,40.527389526367294],[113.84435272216808,40.459472656250114],[113.7838745117192,40.50125503540039],[113.55307769775436,40.347541809082145],[113.31632995605491,40.31749343872082],[113.24909973144541,40.41027450561523],[112.89204406738293,40.32830047607416],[112.83833312988281,40.202842712402344],[112.72182464599621,40.16704177856445],[112.44920349121094,40.29874038696294],[112.30272674560547,40.25146484375],[111.97008514404297,39.79625701904302],[111.92712402343767,39.61918258667003],[111.76055908203153,39.58994674682623],[111.48661041259788,39.658477783203125],[111.33066558837884,39.4188346862793],[111.21085357666043,39.42956924438482],[111.13376617431646,39.36773300170904],[111.06042480468767,39.408031463623104],[111.13012695312523,39.52239990234386],[111.0276718139649,39.565837860107365],[110.86275482177761,39.48997116088867],[110.61533355712913,39.2487525939942],[110.53153228759783,39.374588012695426],[110.38414764404303,39.312988281250114],[110.2311935424807,39.446189880371094],[110.11435699462884,39.43654632568365],[110.2112884521486,39.283725738525504],[110.0106430053711,39.21313858032238],[109.84896087646507,39.090114593505966],[109.71360015869152,39.06563568115229],[109.67360687255876,38.93149948120117],[109.42097473144536,38.8035621643067],[109.38880157470697,38.71052932739269],[109.14798736572271,38.55510330200207],[108.96966552734396,38.33824539184582],[108.9410934448245,38.16735839843756],[109.05448150634783,38.08185577392578],[108.94341278076183,37.92190933227538],[108.87333679199224,37.993030548095646],[108.77796173095707,37.949836730956974],[108.77864837646479,37.68402862548833],[108.25249481201178,37.666648864746094],[108.14290618896496,37.61661911010748],[108.01074981689447,37.670696258544865],[107.95917510986334,37.79476165771479],[107.65174865722685,37.874370574951286],[107.4252853393557,37.94097900390631],[107.32537841796902,38.09282302856445],[107.16729736328136,38.15775680541998],[106.99632263183616,38.12188720703124],[106.78393554687494,38.17107772827154],[106.54116058349626,38.272808074951286],[106.50563049316418,38.36300277709972],[106.61534881591814,38.43887710571295],[106.68863677978516,38.57799911499035],[106.67697143554705,38.67112350463867],[106.8064956665039,38.82532501220703],[106.9643554687501,38.957740783691406],[106.96534729003923,39.05124664306646],[106.84243774414091,39.092735290527344],[106.78829193115261,39.23233413696295],[106.78872680664078,39.35830688476568],[106.59067535400419,39.364078521728516],[106.50195312500006,39.30188751220709],[106.27547454834001,39.26128387451183],[106.29103088378935,39.16716384887707],[106.1414413452149,39.1523056030274],[106.06916046142601,38.972263336181584],[105.96900177001959,38.910896301269645],[105.84742736816399,38.61778259277338],[105.8224868774414,38.425018310546875],[105.84873199462919,38.25043106079107],[105.77106475830082,38.18635559082031],[105.7764434814456,38.08433914184581],[105.83579254150385,38.00751495361334],[105.75645446777337,37.79936981201171],[105.63972473144524,37.77935028076172],[105.59505462646513,37.69903182983404],[105.31082916259771,37.701457977294915],[105.10706329345702,37.63306808471691],[104.98526000976591,37.544406890869254],[104.68183898925776,37.505451202392635],[104.57798004150396,37.538665771484375],[104.40944671630888,37.515586853027344],[104.2790756225586,37.428287506103516],[104.17815399169939,37.40818786621094],[103.8916397094726,37.591625213623104],[103.66897583007818,37.78575134277355],[103.40696716308588,37.85186767578131],[103.36228942871122,38.09072113037115],[103.54444885253933,38.155284881591854],[103.47286224365239,38.34653854370123],[103.41771697998047,38.41262435913097],[103.87630462646489,38.64512252807628],[104.03190612792974,38.89115905761718],[104.17420959472679,38.94146347045904],[104.20571136474615,39.09294891357422],[104.05253601074224,39.297470092773494],[104.09106445312504,39.41781616210943],[103.94136810302763,39.46476364135742],[103.83745574951166,39.458847045898494],[103.36135101318388,39.34606933593749],[103.13194274902338,39.20756149291998],[103.012504577637,39.10509109497075],[102.60748291015625,39.18165969848644],[102.45579528808611,39.2540397644043],[102.20078277587906,39.17051696777355],[101.81523132324224,39.102142333984425],[102.08049011230474,38.89690017700207],[101.77305603027366,38.665138244628906],[101.61688232421903,38.66196441650396],[101.53044128417991,38.72551727294933],[101.32752227783207,38.78275299072277],[101.18752288818365,38.967781066894474],[101.00997161865261,38.95734024047863],[100.86227416992193,39.10592269897472],[100.82853698730491,39.21221923828131],[100.837646484375,39.40134811401373],[100.49961090087885,39.398361206054744],[100.50340270996105,39.47748565673828],[100.33266448974636,39.51032638549799],[100.25063323974615,39.687465667724716],[100.02754974365251,39.735771179199276],[99.76493835449219,39.88597488403326],[99.46066284179699,39.87522506713867],[99.61937713623064,40.06402969360346],[99.90689849853537,40.21214675903326],[100.0199279785158,40.39704895019537],[100.2417984008789,40.605705261230526],[100.22425079345703,40.72631454467773],[100.11625671386736,40.86449813842785],[100.01584625244169,40.90642547607422],[99.68782043457043,40.932682037353516],[99.56833648681646,40.84878921508795],[99.17937469482439,40.86471176147472],[98.84620666503912,40.73659515380865],[98.63681793212896,40.53940200805664],[98.25740051269537,40.52898025512701],[98.36934661865233,40.83678436279308],[98.33477020263666,40.91304779052745],[97.96666717529313,41.10291290283203],[97.6553421020509,41.40597915649419],[97.62551116943365,41.4967422485351],[97.84020996093766,41.65574645996099],[97.18472290039067,42.7716903686524],[98.01983642578136,42.683349609375],[98.24787902832037,42.63785934448242],[99.01644897460932,42.60411071777355],[99.4962768554688,42.57008361816412],[99.99502563476585,42.64761352539074],[100.2826766967774,42.63079071044933],[100.32646179199219,42.68333053588872],[100.91158294677729,42.645259857177734],[101.81681823730462,42.47360992431646],[102.06329345703125,42.21868896484375],[102.41458129882807,42.140525817871094],[102.73903656005876,42.13415908813482],[102.97598266601562,42.02602005004888],[103.32208251953135,41.90747070312506],[103.86239624023466,41.80794143676758],[103.98348999023443,41.80713272094738],[104.54374694824213,41.88379287719737],[104.53401184082043,41.6626205444337],[104.94488525390642,41.64532470703119],[105.03448486328153,41.56768798828119],[105.26548767089838,41.73874664306652],[105.30593109130854,41.73463058471691],[105.80189514160156,41.95764541625971],[106.00920104980486,42.018299102783146],[106.68363189697283,42.259391784668026],[107.26647186279308,42.35665893554693],[107.29492187499994,42.407287597656364],[107.45279693603544,42.4618873596192],[107.55423736572271,42.426956176757756],[107.91242218017601,42.41201019287115],[108.23854827880858,42.46195220947271],[108.29219818115239,42.43943023681646],[108.52535247802729,42.45534133911133],[108.78234863281256,42.409713745117244],[108.96829986572266,42.45653152465825],[109.23860931396507,42.429569244384766],[109.54747772216808,42.471664428710994],[109.83471679687511,42.624961853027344],[110.14359283447266,42.636798858642685],[110.41650390625017,42.768920898437614],[110.45240020751952,42.85855865478527],[110.62195587158203,42.929962158203125],[110.70346832275395,43.0570678710938],[110.81427001953148,43.13012695312506],[111.04714202880865,43.343456268310604],[111.4383468627932,43.47341156005865],[111.57450866699224,43.48953247070307],[111.7539367675783,43.690742492675895],[111.97027587890625,43.7388916015625],[112.01568603515624,43.79132080078125],[111.85216522216814,43.99282836914074],[111.67044067382812,44.03451156616222],[111.39395141601591,44.32161331176752],[111.38784027099638,44.392890930175774],[111.51686096191423,44.588943481445305],[111.5598754882813,44.72308349609375],[111.74047851562523,44.96209716796881],[111.8331298828125,45.04852294921881],[111.97607421875028,45.09008789062506],[112.41552734375023,45.061523437500114],[112.55487060546875,44.96612548828131],[112.75808715820335,44.870479583740284],[112.90032958984396,44.865112304687436],[113.12091064453125,44.799682617187614],[113.46167755126964,44.79184341430664],[113.62380981445324,44.743957519531364],[113.79145812988293,44.84782409667968],[114.00749206542969,44.93271636962896],[114.3792724609375,45.165283203125114],[114.54870605468773,45.39849853515631],[114.75189208984386,45.45312500000011],[115.00012207031249,45.365173339843864],[115.33930206298851,45.38307571411133],[115.72115325927757,45.43843841552746],[115.76531982421875,45.50292968749994],[116.06511688232432,45.67551040649414],[116.1982955932617,45.686294555664055],[116.27349853515636,45.76110839843756],[116.26206970214866,45.95033264160162],[116.60528564453159,46.297119140625114],[116.93890380859375,46.351318359374936],[117.37146759033237,46.35477066040045],[117.43295288085959,46.57503890991216],[117.61551666259787,46.58037948608404],[117.70111083984375,46.507873535156364],[118.0410766601567,46.630310058593864],[118.27005004882811,46.787563323974666],[118.56262969970703,46.769142150878956],[118.67047119140646,46.80447006225586],[118.8014831542971,46.781379699707145],[118.93591308593749,46.819526672363395],[119.21196746826195,46.73436355590832],[119.40370178222666,46.63362121582031],[119.40284729003906,46.45494079589844],[119.51092529296886,46.46087646484381],[119.60554504394565,46.5564575195313],[119.77449035644541,46.62205886840832],[119.92072296142591,46.743499755859375],[119.80391693115268,46.923274993896484],[119.85070800781271,47.1016845703125],[119.70147705078136,47.19311523437506],[119.8271484375,47.26261138916027],[119.71611785888683,47.320999145507926],[119.49969482421909,47.33550262451183],[119.32192993164095,47.43679046630853],[119.33630371093773,47.53131103515631],[119.18785095214844,47.518459320068416],[119.12408447265636,47.70330810546875],[118.77584838867222,47.80654907226568],[118.47869873046875,48.00012207031256],[118.25292968750023,48.001892089843864],[118.06724548339854,48.0394401550293],[117.75969696044932,47.99018859863287],[117.55658721923851,47.7889404296875],[117.37451171875011,47.63805770874034],[117.1082763671875,47.80987548828119],[116.82678222656249,47.898399353027344],[116.64216613769554,47.89036178588873],[116.44989013671874,47.8428192138673],[116.25628662109375,47.87670898437506],[116.13771057128928,47.83546447753906],[115.94937133789062,47.679122924804744],[115.55377960205078,47.94832611083996],[115.51489257812499,48.18389892578119],[115.81250000000024,48.261474609375114],[115.8214950561528,48.53166580200206],[116.11102294921922,48.792751312255916],[116.05310058593761,48.8770751953125],[116.70027160644564,49.839855194091854],[116.93340301513672,49.72518920898449],[117.27426910400413,49.63154983520508],[117.47849273681642,49.62837600708019],[117.84203338623047,49.506931304931584],[118.15896606445324,49.660980224609375],[118.54898834228538,49.91485214233404],[118.67079925537108,49.948379516601676],[119.07359313964876,49.98377990722662],[119.19748687744162,50.01208877563482],[119.36380767822287,50.17494964599621],[119.34559631347656,50.34682083129888],[119.18374633789085,50.345920562744254],[119.2734909057617,50.60175323486333],[119.42825317382824,50.69343948364269],[119.58075714111361,50.975570678710994],[119.74944305419933,51.10062026977545],[119.75689697265646,51.21081161499023],[119.8677368164067,51.297435760498104],[119.9873733520509,51.45269012451183],[120.0864028930664,51.66909027099614],[120.17446899414061,51.68162155151373],[120.47400665283203,51.88294219970709],[120.65203094482443,51.934108734130916],[120.76122283935547,52.11244964599621],[120.75633239746107,52.2444801330567],[120.61812591552733,52.315029144287166],[120.71965026855467,52.52878952026367],[120.45249176025403,52.641300201416016],[120.06121063232456,52.58407211303711],[120.02459716796908,52.75965118408203],[120.28043365478537,52.866298675537216],[120.52926635742199,53.071357727050774],[120.87671661376976,53.28703308105469],[121.21849060058605,53.28129196166998],[121.69239044189453,53.388511657714844],[121.4893798828126,53.33117294311518],[121.67065429687499,53.23693466186535],[121.64614105224634,53.180465698242244],[121.80916595458983,53.06410598754894],[121.70822143554686,52.99644470214849],[121.61347198486328,52.85200119018565],[121.36288452148459,52.680671691894474],[121.19284057617222,52.60234069824219],[121.51914978027344,52.45304107666021],[121.63298034667991,52.443183898925895],[121.70687103271518,52.316814422607536],[121.9407272338867,52.29719161987299],[122.12637329101585,52.474529266357536],[122.30334472656249,52.47386169433605],[122.33618927001964,52.41145706176758],[122.57911682128906,52.26520919799805],[122.75592803955078,52.265460968017635],[122.76294708251963,52.17710494995123],[122.62368774414074,52.135234832763786],[122.71907806396496,51.97739410400401],[122.74273681640635,51.742351531982365],[122.84937286376987,51.60534667968749],[122.84770202636719,51.47627258300787],[122.96698760986372,51.33358383178722],[123.2828292846682,51.2494468688966],[123.63520812988314,51.3184928894044],[123.70346832275402,51.39673995971673],[123.88298797607422,51.317989349365234],[124.23169708251977,51.343036651611385],[124.39867401123045,51.270305633544915],[124.48261260986338,51.37877273559581],[124.68614959716831,51.331619262695305],[124.85720825195322,51.37818908691406],[124.92606353759777,51.49910736083984],[125.03956604003918,51.527923583984375],[125.12730407714855,51.632411956787166],[125.34353637695335,51.622177124023494],[125.69090270996094,51.33047866821294],[125.75080871582041,51.225524902343864],[125.84705352783226,51.20912933349621],[125.97352600097678,51.09569931030285],[126.06407165527342,50.95911407470703],[125.78872680664107,50.73558425903326],[125.81913757324219,50.54684448242193],[125.6349334716799,50.449859619140625],[125.4375915527345,50.265930175781364],[125.44105529785168,50.210117340088004],[125.27192687988281,50.12553024291992],[125.19312286376987,49.73693847656256],[125.21549224853516,49.48554229736328],[125.26615905761729,49.3585472106933],[125.14952850341808,49.143058776855575],[124.88232421875023,49.177158355712834],[124.64270782470703,48.82167434692383],[124.6108627319336,48.67626953125006],[124.51280212402344,48.5483283996582],[124.51212310791037,48.40478515625],[124.57075500488315,48.257568359375],[124.50231933593751,48.124053955078125],[124.30473327636719,48.36406326293945],[124.2668151855471,48.52974319458019],[124.07180023193393,48.429424285888786],[123.75467681884787,48.204475402832145],[123.57421874999999,48.04172134399414],[123.29052734375011,47.9519500732423],[123.20001220703148,47.81901931762701],[122.81840515136763,47.65956878662104],[122.54921722412108,47.52074050903326],[122.49520111083986,47.40611648559576],[122.38791656494185,47.344146728515625],[122.60468292236327,47.12254714965832],[122.84196472167969,47.05282592773449],[122.89059448242188,46.95026397705078],[122.88900756835938,46.815731048583984],[123.0269241333009,46.724731445312614],[123.15702819824251,46.742782592773494],[123.20538330078148,46.84386444091797],[123.35256958007812,46.860954284668075],[123.62447357177744,46.80361557006847],[123.58889770507811,46.68665695190435],[123.34964752197277,46.6744995117188],[123.26243591308638,46.611534118652344],[123.00372314453124,46.57372283935541],[123.01202392578136,46.418949127197266],[123.17104339599634,46.24668121337896]]]},"properties":{"ID_0":49,"ISO":"CN-15","NAME_0":"China","ID_1":19,"NAME_1":"Nei Mongol","TYPE_1":"Zìzhìqu","ENGTYPE_1":"Autonomous Region","NL_NAME_1":"內蒙古自治區|内蒙古自治区","VARNAME_1":"Inner Mongol|Nèiměnggǔ"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.65174865722685,37.874370574951286],[107.62453460693376,37.781639099121094],[107.49404144287104,37.76507568359375],[107.47991180419933,37.70582962036133],[107.31051635742216,37.593761444091854],[107.25147247314453,37.32836532592773],[107.32924652099604,37.1686897277832],[107.27139282226567,37.08225250244146],[107.15986633300776,37.148857116699276],[107.02391052246111,37.11317443847661],[106.79940032959001,37.151260375976555],[106.60285949707037,37.108383178710994],[106.64400482177734,37.04540634155284],[106.57569885253905,36.94168090820318],[106.65255737304705,36.81812286376959],[106.52542114257818,36.73141479492182],[106.44644927978521,36.5618896484375],[106.51650238037121,36.454776763916016],[106.46853637695318,36.295066833496094],[106.86044311523455,36.20060348510748],[106.94766235351568,36.092304229736435],[106.93566894531273,35.945045471191406],[106.8548202514649,35.89708709716808],[106.92334747314463,35.80731201171869],[106.74959564208979,35.687606811523494],[106.54910278320341,35.74375152587901],[106.43910980224626,35.69412994384771],[106.47740173339855,35.588520050048885],[106.44417572021489,35.52415084838878],[106.50755310058588,35.438972473144645],[106.47063446044928,35.312320709228516],[106.3540344238283,35.23654556274413],[106.2427139282227,35.352371215820426],[106.2352981567385,35.40990066528332],[106.0878601074221,35.41488647460943],[105.96811676025419,35.54033279418957],[105.81684875488287,35.572719573974666],[105.7104873657226,35.65093612670904],[105.66387176513678,35.747375488281364],[105.48910522460938,35.7248649597168],[105.33605957031244,35.884445190429744],[105.32534027099638,36.01859283447277],[105.50463867187527,36.143032073974666],[105.47440338134766,36.286151885986264],[105.39843749999994,36.36856460571289],[105.35892486572293,36.49019622802734],[105.2446212768557,36.54238128662121],[105.1989974975586,36.70830535888683],[105.32637786865251,36.78458786010742],[105.27582550048845,36.86951065063482],[105.17917633056645,36.902107238769645],[105.16960906982422,36.9855842590332],[105.03395843505875,37.01701354980469],[104.91059875488281,37.09955215454107],[104.79535675048844,37.24415588378906],[104.65193176269548,37.20222473144537],[104.59353637695307,37.273872375488224],[104.70060729980467,37.33039474487316],[104.67339324951178,37.408348083496094],[104.47420501708984,37.44149017333996],[104.2790756225586,37.428287506103516],[104.40944671630888,37.515586853027344],[104.57798004150396,37.538665771484375],[104.68183898925776,37.505451202392635],[104.98526000976591,37.544406890869254],[105.10706329345702,37.63306808471691],[105.31082916259771,37.701457977294915],[105.59505462646513,37.69903182983404],[105.63972473144524,37.77935028076172],[105.75645446777337,37.79936981201171],[105.83579254150385,38.00751495361334],[105.7764434814456,38.08433914184581],[105.77106475830082,38.18635559082031],[105.84873199462919,38.25043106079107],[105.8224868774414,38.425018310546875],[105.84742736816399,38.61778259277338],[105.96900177001959,38.910896301269645],[106.06916046142601,38.972263336181584],[106.1414413452149,39.1523056030274],[106.29103088378935,39.16716384887707],[106.27547454834001,39.26128387451183],[106.50195312500006,39.30188751220709],[106.59067535400419,39.364078521728516],[106.78872680664078,39.35830688476568],[106.78829193115261,39.23233413696295],[106.84243774414091,39.092735290527344],[106.96534729003923,39.05124664306646],[106.9643554687501,38.957740783691406],[106.8064956665039,38.82532501220703],[106.67697143554705,38.67112350463867],[106.68863677978516,38.57799911499035],[106.61534881591814,38.43887710571295],[106.50563049316418,38.36300277709972],[106.54116058349626,38.272808074951286],[106.78393554687494,38.17107772827154],[106.99632263183616,38.12188720703124],[107.16729736328136,38.15775680541998],[107.32537841796902,38.09282302856445],[107.4252853393557,37.94097900390631],[107.65174865722685,37.874370574951286]]]},"properties":{"ID_0":49,"ISO":"CN-64","NAME_0":"China","ID_1":20,"NAME_1":"Ningxia Hui","TYPE_1":"Zìzhìqu","ENGTYPE_1":"Autonomous Region","NL_NAME_1":"寧夏回族自治區|宁夏回族自治区","VARNAME_1":"Níngxià Húizú"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.77423095703152,33.548042297363395],[101.7749252319336,33.45697402954096],[101.68192291259793,33.41849136352539],[101.64779663085965,33.3287353515625],[101.73433685302757,33.27802658081066],[101.62555694580078,33.11393737792963],[101.48286437988298,33.22781753540045],[101.40853881835943,33.22873306274414],[101.16474914550781,33.16185379028349],[101.11636352539068,33.02778244018566],[101.11996459960943,32.912651062011776],[101.2371749877929,32.81775283813482],[101.21690368652372,32.716075897216854],[101.07468414306658,32.682334899902344],[100.93308258056646,32.60490417480469],[100.71881866455077,32.66272354125988],[100.65566253662126,32.602462768554915],[100.62380218505876,32.47063064575223],[100.53984832763666,32.41204833984392],[100.45097351074213,32.45735549926758],[100.54104614257811,32.571933746338004],[100.40502929687517,32.74549484252941],[100.23624420166016,32.715652465820426],[100.2217559814453,32.623817443847656],[100.11845397949224,32.63982009887706],[100.10599517822264,32.863166809082024],[99.97196960449224,32.94028854370134],[99.76866149902371,32.952419281005916],[99.78752899169928,32.863464355468864],[99.74240112304705,32.746673583984425],[99.36031341552761,32.91181945800781],[99.2709045410158,32.888332366943416],[99.1961669921875,33.03200149536144],[98.85239410400402,33.15933609008794],[98.76844024658232,33.28194808959961],[98.78303527832031,33.36363983154296],[98.72745513916044,33.50987243652355],[98.64933776855469,33.55310440063471],[98.66270446777344,33.65229415893549],[98.52503967285178,33.798118591308594],[98.41116333007835,33.87202835083008],[98.25473022460943,33.84984588623046],[98.25678253173845,33.915351867675895],[98.02371978759764,33.95146560668951],[97.81569671630882,33.85822677612316],[97.66010284423857,33.96232986450201],[97.53282165527348,33.90663909912104],[97.38832855224621,33.88874435424816],[97.37087249755865,33.83550262451172],[97.42955780029314,33.68623352050787],[97.51348876953142,33.58653259277355],[97.55538177490263,33.469425201416016],[97.76994323730497,33.42061996459984],[97.61968994140636,33.33772659301769],[97.60908508300781,33.276981353759766],[97.48731994628918,33.16833877563505],[97.54212951660155,33.05335998535179],[97.51634979248064,32.992546081543026],[97.3629608154298,32.950981140136776],[97.38430023193388,32.78768920898443],[97.48752593994135,32.65393829345703],[97.72996520996111,32.529659271240234],[97.64865875244169,32.478321075439396],[97.3977127075197,32.5204429626466],[97.4086532592774,32.29731369018549],[97.28708648681658,32.28674697875982],[97.26210784912126,32.18583679199236],[97.3019256591798,32.08260726928711],[96.96399688720703,32.02000045776367],[96.81362915039072,32.0182991027832],[96.73630523681646,31.983194351196513],[96.80891418457048,31.894855499267518],[96.76213836669932,31.829656600952262],[96.83872222900396,31.726831436157227],[96.73613739013695,31.67774009704596],[96.68083190917974,31.73003578186035],[96.56983947753935,31.71659088134777],[96.43717193603533,31.797254562377873],[96.31795501709,31.942878723144528],[96.25008392333983,31.93286705017084],[96.1353759765626,31.81841850280756],[96.2497711181641,31.695831298828068],[96.06051635742193,31.72340965271007],[95.85890197753906,31.717830657959098],[95.6384048461914,31.78522682189947],[95.52100372314482,31.751422882080018],[95.37197875976568,31.964406967163313],[95.44856262207026,32.06494903564453],[95.43338775634771,32.16000747680664],[95.28946685791027,32.25958251953153],[95.08084869384783,32.250434875488395],[94.95648956298845,32.342052459716854],[94.8959350585938,32.46239089965826],[94.81520080566406,32.48447036743164],[94.6223754882813,32.67022705078131],[94.54284667968756,32.60404586791992],[94.39097595214861,32.60127258300781],[94.36606597900413,32.52442932128906],[94.20251464843767,32.51846313476557],[94.13578033447266,32.435955047607536],[93.96201324462908,32.489112854003906],[93.85662078857428,32.47676467895519],[93.81033325195324,32.556056976318416],[93.65404510498068,32.57497787475597],[93.51541900634793,32.48030853271496],[93.38574218750011,32.52799224853527],[93.24640655517578,32.662952423095646],[93.0602951049807,32.632339477539006],[93.01750183105486,32.73899841308594],[92.85727691650408,32.70330810546875],[92.69166564941418,32.767780303955135],[92.6539382934572,32.72504043579107],[92.35968780517584,32.76605606079107],[92.20345306396484,32.751903533935774],[92.20835113525402,32.86090850830101],[92.12519836425776,32.88182449340826],[91.96720123291021,32.820003509521534],[91.79296875000017,32.945423126220646],[91.56113433837896,33.05408859252958],[91.3781509399414,33.238750457763786],[91.36598205566412,33.323455810546925],[91.18637084960966,33.305435180664006],[91.16146087646501,33.24025344848644],[90.94387054443365,33.217208862304744],[90.85399627685563,33.11772537231445],[90.70668029785185,33.13914108276373],[90.48712158203153,33.26638412475597],[90.40686035156261,33.25701904296875],[90.26480865478533,33.36758041381836],[90.18244934082037,33.54906845092785],[89.98716735839866,33.63319396972662],[90.00730133056658,33.689498901367244],[89.93082427978533,33.79388809204107],[89.73954772949219,33.91717147827159],[89.657211303711,34.023685455322266],[89.65811920166021,34.0953636169433],[89.8117065429688,34.16849136352545],[89.81417083740257,34.540431976318416],[89.73016357421892,34.73450851440441],[89.8569030761721,34.80925750732422],[89.81427001953142,34.90872955322277],[89.5919952392581,34.894687652588004],[89.56469726562523,34.95976257324224],[89.58079528808588,35.121234893798885],[89.45832061767607,35.23912429809576],[89.49705505371105,35.365894317626946],[89.68804168701172,35.421749114990234],[89.73441314697271,35.47107696533203],[89.71098327636741,35.577720642089844],[89.7855987548831,35.86180877685558],[89.67651367187528,35.85014724731445],[89.42065429687506,35.92338180541992],[89.40850067138678,36.03224182128906],[89.52570343017595,36.032970428466854],[89.73124694824247,36.08474349975586],[89.8720245361331,36.08062744140619],[89.98883056640625,36.15573883056652],[90.03012084960966,36.27914428710949],[90.2330169677735,36.16516113281249],[90.46916198730491,36.13347244262701],[90.67725372314476,36.13246917724621],[90.84373474121098,36.02142333984381],[90.96553039550776,36.10243606567394],[91.09886169433587,36.09480667114269],[91.09320831298834,36.21501541137695],[91.02243041992188,36.3355331420899],[91.02778625488287,36.53701400756836],[90.7301864624025,36.59137725830089],[90.71454620361344,36.79302215576166],[90.8472976684572,36.9190292358399],[90.97371673583996,36.916915893554744],[91.13368225097678,37.01247406005865],[91.30413055419938,37.01863479614258],[91.27729797363304,37.152542114257926],[91.18340301513672,37.21862411499035],[91.0907821655274,37.46339797973633],[90.94044494628912,37.479305267334034],[90.78543090820341,37.64322280883783],[90.52237701416038,37.73019027709972],[90.4132461547852,37.83528518676769],[90.48061370849614,37.958194732666016],[90.33097839355486,38.135093688964844],[90.23654937744134,38.308174133300895],[90.14225006103521,38.402130126953125],[90.41613769531271,38.494232177734375],[90.6306228637697,38.67548370361333],[90.75071716308622,38.66246795654297],[91.11454772949219,38.713237762451286],[91.29625701904308,38.75331878662115],[91.43598937988304,38.815647125244254],[91.7913436889649,38.868598937988224],[92.03942108154297,38.95489883422863],[92.3856201171875,39.00488662719721],[92.5000305175783,39.109432220458984],[92.85248565673844,39.140197753906364],[92.9505615234375,39.17105484008789],[92.97923278808616,39.1475944519043],[93.2477111816408,39.18296432495123],[93.60808563232445,39.263450622558594],[93.87920379638666,39.25775909423828],[94.28737640380854,39.306804656982536],[94.63012695312494,39.30706024169933],[94.73325347900419,39.2387809753418],[94.9188156127932,39.24051666259776],[95.15735626220703,39.17620468139648],[95.2647476196289,39.19168472290044],[95.69076538085966,38.87917327880864],[95.7732467651367,38.875358581543026],[95.89761352539061,38.77037429809575],[96.00000000000016,38.75643920898449],[96.1990356445313,38.626171112060604],[96.3150634765626,38.63799285888683],[96.52423095703148,38.534347534179744],[96.51573181152338,38.464706420898494],[96.70425415039068,38.42199707031256],[96.81450653076178,38.35615539550781],[96.95970153808622,38.338336944580135],[96.99226379394537,38.59049606323248],[96.93924713134771,38.62128067016613],[96.99402618408209,38.770145416259766],[96.9901733398438,39.17162322998058],[97.05175781249999,39.20782852172846],[97.40038299560563,39.14591217041027],[97.49990081787121,39.077648162841854],[98.09833526611334,38.81504821777344],[98.3831176757813,39.0286598205567],[98.45671844482428,38.95230484008789],[98.58390808105469,38.93408584594738],[98.75200653076195,39.07770919799815],[98.81810760498064,39.0838737487793],[99.22086334228543,38.78847503662121],[99.36062622070318,38.71766662597662],[99.44926452636736,38.603973388671925],[99.65830230712906,38.44895935058605],[99.82931518554716,38.36841583251958],[100.18139648437506,38.236789703369084],[100.16048431396479,38.328430175781364],[100.08118438720703,38.409706115722656],[100.11695098876982,38.48994064331055],[100.22772216796898,38.449733734130916],[100.33118438720696,38.31935501098644],[100.58907318115251,38.2494850158692],[100.63465881347673,38.10126113891607],[100.95064544677763,38.00680160522461],[101.11083221435553,37.935676574707145],[101.54251861572277,37.65631103515625],[101.85254669189452,37.53683853149414],[101.87764739990246,37.68978881835943],[101.97617340087896,37.74865341186534],[102,37.6074714660645],[102.07062530517584,37.55881118774419],[102.01169586181669,37.48405075073247],[102.2884216308596,37.36767578125011],[102.36363983154308,37.28149795532232],[102.59339904785179,37.15277862548828],[102.4861907958985,37.083602905273494],[102.47138214111357,36.95798873901373],[102.54882812500028,36.92440795898449],[102.72365570068365,36.766658782958984],[102.5953826904298,36.70555496215832],[102.7190246582033,36.61520385742199],[102.82682800292969,36.35511779785156],[102.99154663085932,36.265727996826286],[102.93271636962913,36.1076278686524],[102.95399475097673,35.865234375000114],[102.77229309082037,35.85988998413086],[102.68392181396501,35.76140594482422],[102.75676727294916,35.6146354675293],[102.72041320800787,35.527885437011655],[102.53208923339861,35.56439971923834],[102.44130706787126,35.43931198120117],[102.28775787353533,35.42110824584972],[102.38394927978521,35.23823928833019],[102.2791290283206,35.05853652954113],[102.00464630126982,34.950431823730526],[101.92398071289091,34.84535217285162],[101.91433715820312,34.742988586425895],[101.71864318847656,34.70427703857433],[102,34.54377365112316],[102.07666015625,34.54387664794916],[102.25090789794932,34.35848236083979],[102.0761795043948,34.28706359863287],[102.00997924804716,34.18645095825201],[101.8991088867188,34.132667541503906],[101.65080261230474,34.121707916259766],[101.6171646118164,34.184055328369084],[101.49298095703142,34.20014572143555],[101.1620864868164,34.32116317749035],[101.0457611083985,34.32815551757807],[100.90686798095703,34.38161087036144],[100.8104171752932,34.30268478393566],[100.81357574462908,34.15047836303722],[100.9883728027346,33.903324127197266],[101.10863494873064,33.85783767700201],[101.24060821533197,33.682319641113395],[101.39653778076195,33.649295806884766],[101.54747009277372,33.694004058838004],[101.61802673339872,33.60977172851568],[101.62786865234375,33.50222015380871],[101.77423095703152,33.548042297363395]]]},"properties":{"ID_0":49,"ISO":"CN-63","NAME_0":"China","ID_1":21,"NAME_1":"Qinghai","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"青海","VARNAME_1":"Qīnghǎi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.13376617431646,39.36773300170904],[111.20724487304699,39.23205566406256],[111.0954971313476,39.03009414672851],[110.97500610351562,38.97599411010748],[111.01371002197283,38.878551483154354],[110.87973022460965,38.62424468994152],[110.90679168701178,38.56518173217785],[110.84567260742203,38.43996810913086],[110.76875305175793,38.434734344482536],[110.66458892822294,38.31017684936535],[110.56798553466797,38.2904281616212],[110.50572204589855,38.192474365234375],[110.49893951416014,38.02187347412121],[110.66639709472656,37.79426193237316],[110.78576660156267,37.551132202148494],[110.74752807617193,37.466781616210994],[110.64065551757812,37.43668365478521],[110.69488525390629,37.352291107177784],[110.644790649414,37.25016403198242],[110.40833282470702,36.9943733215332],[110.42528533935564,36.65648651123047],[110.50008392333984,36.581142425537166],[110.44464111328129,36.164859771728516],[110.51223754882807,35.887783050537166],[110.55033111572293,35.86775970458996],[110.60104370117193,35.60580062866205],[110.51608276367205,35.405281066894524],[110.40204620361328,35.27748107910156],[110.31427764892595,35.011295318603516],[110.27056121826166,34.96877288818365],[110.28881072998053,34.62031173706055],[110.38023376464838,34.604488372802734],[110.35552215576178,34.52358245849614],[110.4951171875,34.33678054809582],[110.41948699951199,34.28166198730469],[110.63906860351555,34.16409301757824],[110.58245849609392,34.10277557373047],[110.67118072509766,33.95417785644531],[110.5877990722658,33.88915634155284],[110.77207946777344,33.80183410644537],[110.82721710205084,33.67475128173828],[110.99770355224608,33.58365631103521],[111.02043151855474,33.37694549560558],[110.97766113281267,33.259674072265796],[110.80570983886724,33.148437500000114],[110.4556808471682,33.18463897705084],[110.21314239501964,33.16501998901367],[110.1597595214843,33.211009979248104],[110.02587890625016,33.193675994873104],[109.84026336669916,33.248893737793026],[109.50920104980469,33.239566802978516],[109.43367004394531,33.15377807617199],[109.5713272094726,33.112297058105696],[109.68303680419928,33.11854553222656],[109.78942871093754,33.06887435913086],[109.75891876220707,32.909706115722656],[110.0223236083985,32.87265777587885],[110.13690948486328,32.80475234985357],[110.1998367309572,32.62979888916044],[110.02306365966797,32.55052947998047],[109.90569305419916,32.59506225585943],[109.62696075439459,32.6024169921875],[109.4954223632812,32.38108444213867],[109.49041748046903,32.3025856018067],[109.61682128906254,32.10912322998058],[109.62648773193376,31.964570999145625],[109.57660675048832,31.733167648315373],[109.28453063964844,31.718706130981726],[109.27275848388678,31.801454544067436],[109.0261383056641,31.96888732910162],[108.88356018066423,31.99667358398437],[108.74031066894524,32.10990524291998],[108.67336273193354,32.10984039306646],[108.51454925537115,32.21204376220708],[108.47605895996098,32.272045135498104],[108.23412322998063,32.27865600585966],[108.17733764648443,32.228519439697266],[108.01764678955095,32.21660232543957],[107.99150085449236,32.15409088134771],[107.84605407714865,32.20866012573242],[107.66918182373047,32.39353561401373],[107.52066040039085,32.38473129272461],[107.37308502197294,32.540969848632756],[107.25935363769553,32.40550994873058],[107.08066558837918,32.531551361083984],[107.10303497314447,32.60278320312517],[107.05493164062527,32.7119979858399],[106.78601837158214,32.703178405761776],[106.72840881347668,32.73145294189459],[106.58933258056669,32.66182327270507],[106.43012237548822,32.61944580078131],[106.32637023925776,32.67256927490245],[106.17360687255876,32.69555664062506],[105.95511627197271,32.84763717651367],[105.81519317626947,32.8092041015625],[105.61859130859375,32.69981384277355],[105.49535369873064,32.91073989868164],[105.58703613281278,32.87902069091797],[105.73158264160162,32.90739440917969],[105.91923522949224,33.008152008056754],[105.92945861816423,33.19445419311529],[105.74388885498064,33.300659179687614],[105.72897338867182,33.39280700683611],[105.83415222167973,33.412612915039176],[105.83818817138695,33.4919052124024],[105.95542907714844,33.6101341247558],[106.18309020996122,33.54811096191406],[106.29929351806658,33.60597229003912],[106.44264221191412,33.61472320556646],[106.53040313720732,33.50500869750988],[106.58400726318388,33.590778350830135],[106.47845458984379,33.70890808105469],[106.41545104980484,33.875953674316406],[106.49768066406267,34.10641479492193],[106.58864593505876,34.142406463623104],[106.59848022460943,34.25256347656256],[106.67990112304709,34.26151657104492],[106.71399688720703,34.37443161010742],[106.46202087402344,34.531536102295036],[106.33836364746105,34.52238464355469],[106.31894683837906,34.5910911560058],[106.54873657226572,34.75755310058594],[106.55184936523455,34.86247253417969],[106.48889160156267,34.941974639892635],[106.54570770263666,35.08773803710943],[106.91616058349608,35.09522247314458],[107.19623565673832,34.882575988769645],[107.28193664550774,34.93278884887701],[107.51925659179705,34.910839080810604],[107.57112121582047,34.971679687500114],[107.80170440673822,34.95686340332031],[107.85124969482449,35.005714416503906],[107.74325561523443,35.094215393066406],[107.69767761230474,35.19374084472656],[107.72364044189482,35.30328750610346],[107.95692443847685,35.243011474609425],[108.17214965820312,35.31041717529308],[108.23188018798834,35.265869140625],[108.57508850097685,35.308822631835994],[108.62655639648443,35.41919708251953],[108.6112289428711,35.563209533691406],[108.52468109130882,35.63646316528332],[108.50100708007818,35.895126342773494],[108.64005279541021,35.946445465087834],[108.70762634277348,36.13836288452148],[108.64480590820311,36.26212692260742],[108.71541595459007,36.352073669433594],[108.61451721191429,36.434116363525504],[108.42691802978509,36.43586730957037],[108.33563995361332,36.55873107910162],[108.15857696533219,36.56357955932623],[107.95442962646513,36.65525054931646],[107.89543151855474,36.76015853881836],[107.54070281982428,36.82651138305664],[107.47282409667997,36.90810775756847],[107.29496765136717,36.94154357910162],[107.27139282226567,37.08225250244146],[107.32924652099604,37.1686897277832],[107.25147247314453,37.32836532592773],[107.31051635742216,37.593761444091854],[107.47991180419933,37.70582962036133],[107.49404144287104,37.76507568359375],[107.62453460693376,37.781639099121094],[107.65174865722685,37.874370574951286],[107.95917510986334,37.79476165771479],[108.01074981689447,37.670696258544865],[108.14290618896496,37.61661911010748],[108.25249481201178,37.666648864746094],[108.77864837646479,37.68402862548833],[108.77796173095707,37.949836730956974],[108.87333679199224,37.993030548095646],[108.94341278076183,37.92190933227538],[109.05448150634783,38.08185577392578],[108.9410934448245,38.16735839843756],[108.96966552734396,38.33824539184582],[109.14798736572271,38.55510330200207],[109.38880157470697,38.71052932739269],[109.42097473144536,38.8035621643067],[109.67360687255876,38.93149948120117],[109.71360015869152,39.06563568115229],[109.84896087646507,39.090114593505966],[110.0106430053711,39.21313858032238],[110.2112884521486,39.283725738525504],[110.11435699462884,39.43654632568365],[110.2311935424807,39.446189880371094],[110.38414764404303,39.312988281250114],[110.53153228759783,39.374588012695426],[110.61533355712913,39.2487525939942],[110.86275482177761,39.48997116088867],[111.0276718139649,39.565837860107365],[111.13012695312523,39.52239990234386],[111.06042480468767,39.408031463623104],[111.13376617431646,39.36773300170904]]]},"properties":{"ID_0":49,"ISO":"CN-61","NAME_0":"China","ID_1":22,"NAME_1":"Shaanxi","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"陝西|陕西","VARNAME_1":"Shǎnxī"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.28437805175781,35.08986282348627],[119.11466217041038,35.06107330322271],[118.92056274414072,35.061733245849666],[118.71508026123068,34.7608757019043],[118.46082305908227,34.677833557128906],[118.39965057373092,34.43804168701172],[118.16266632080078,34.39336013793945],[118.07673645019575,34.58001708984381],[118.094970703125,34.64862442016607],[117.96543121337889,34.67564010620117],[117.81449890136732,34.65426635742199],[117.79530334472656,34.52215957641607],[117.67935943603516,34.544261932373104],[117.55650329589842,34.4671745300293],[117.48045349121115,34.48172378540045],[117.35250091552756,34.59463882446295],[117.24007415771484,34.45858764648449],[117.16768646240257,34.482429504394645],[117.12274169921885,34.64001464843744],[116.96147918701183,34.87654113769531],[116.77940368652355,34.9440650939942],[116.45969390869186,34.89850997924816],[116.40851593017601,34.85988235473632],[116.36860656738281,34.64086914062506],[116.18591308593749,34.57946777343756],[116.09555816650412,34.60671997070318],[115.67130279541014,34.561328887939396],[115.53153228759778,34.57902526855469],[115.43881988525412,34.675373077392685],[115.42497253417979,34.796310424804744],[115.19261932373071,34.92622375488287],[115.11365509033224,35.0103874206543],[114.88049316406249,35.00461196899414],[114.84293365478514,35.17755126953125],[114.99708557128929,35.288627624511776],[115.01925659179734,35.37437057495123],[115.16888427734375,35.44613265991222],[115.21638488769531,35.417804718017635],[115.3487777709961,35.50680160522455],[115.40918731689489,35.64693832397472],[115.49507904052733,35.7292098999024],[115.66016387939453,35.744159698486385],[115.76693725585982,35.863945007324325],[115.91765594482423,35.96976470947276],[116.03987121582054,35.97148895263683],[116.01735687255882,36.06333923339844],[115.80311584472656,36.01005172729498],[115.33192443847666,35.804111480713004],[115.3520736694338,35.97102355957031],[115.44036865234385,36.01320648193365],[115.47286987304697,36.16936111450207],[115.46441650390646,36.257820129394474],[115.36262512207043,36.342380523681754],[115.27890777587902,36.49432754516607],[115.33660125732432,36.61305999755865],[115.4960250854492,36.768993377685604],[115.68394470214866,36.81945800781255],[115.86469268798827,37.07368087768566],[115.98389434814452,37.33635330200195],[116.15882873535156,37.37846755981457],[116.22567749023449,37.4722633361817],[116.43196105957031,37.46987152099615],[116.60633850097679,37.62678146362315],[116.79441833496115,37.83129501342768],[116.89412689209007,37.84426879882818],[117.4058151245117,37.84362030029296],[117.4482574462893,37.86536026000982],[117.57433319091818,38.06839752197271],[117.70034027099608,38.07770919799816],[117.87111663818382,38.25597381591797],[118.1112518310549,38.14403152465826],[118.47430419921908,38.11208343505865],[118.84625244140625,38.14458465576172],[118.94403076171886,38.10069274902355],[118.99986267089855,37.95791625976568],[119.08985900878906,37.91292190551752],[119.09847259521496,37.83430480957031],[119.18541717529297,37.795700073242294],[119.28930664062536,37.68653106689459],[119.03652954101575,37.685699462890625],[118.93041992187523,37.52875137329112],[118.96679687499999,37.27624893188471],[119.24402618408226,37.134860992431754],[119.30652618408205,37.055690765380916],[119.43013000488281,37.11569976806652],[119.74903106689453,37.122920989990234],[119.88791656494152,37.23847198486334],[119.84513854980469,37.37597274780285],[120.08486175537142,37.44403076171875],[120.3156967163086,37.61069488525402],[120.31319427490234,37.68708419799816],[120.4562530517578,37.746810913085994],[120.56487274169966,37.75403213500988],[120.74652862548862,37.83097076416027],[120.94653320312544,37.80736160278326],[121.03597259521506,37.70653152465832],[121.13930511474608,37.70847320556646],[121.1415252685548,37.59847259521496],[121.3756942749028,37.55819320678711],[121.45903015136741,37.47819519042969],[121.59348297119162,37.427921295166016],[121.93680572509787,37.47124862670898],[122.06513977050805,37.5326385498048],[122.15735626220702,37.43542098999029],[122.24180603027365,37.462360382080185],[122.32596588134777,37.40874862670904],[122.47875213623057,37.41986083984381],[122.57125091552746,37.36180877685547],[122.55458068847668,37.272361755371094],[122.62124633789075,37.205421447753906],[122.45680236816405,37.14597320556646],[122.5031890869144,36.93069076538086],[122.42402648925791,36.86653137207037],[122.28680419921898,36.835693359375114],[122.19097137451172,36.86958312988287],[122.13846588134764,36.9473609924317],[122.00958251953125,36.967922210693416],[121.75930786132824,36.8806991577149],[121.62486267089878,36.809310913085994],[121.59847259521528,36.74402999877935],[121.46958160400402,36.774311065673885],[121.18596649169932,36.685424804687614],[120.97429656982422,36.539859771728516],[120.9031906127932,36.450141906738274],[120.742919921875,36.46097183227545],[120.68013763427746,36.38042068481445],[120.66735839843761,36.241249084472656],[120.70291900634788,36.1301383972168],[120.28569793701182,36.06042098999029],[120.367080688477,36.179027557373104],[120.2148590087893,36.21902847290039],[120.1015167236328,36.137641906738395],[120.21402740478514,36.02014541625982],[120.17958831787156,35.94792175292969],[120.05403137207054,35.88042449951172],[120.0090255737307,35.71986007690424],[119.91319274902355,35.635974884033196],[119.74124908447277,35.634304046630916],[119.63540649414087,35.586532592773494],[119.55847167968749,35.381805419921875],[119.40486145019531,35.26652908325195],[119.37319183349608,35.09930038452154],[119.28437805175781,35.08986282348627]]]},"properties":{"ID_0":49,"ISO":"CN-37","NAME_0":"China","ID_1":23,"NAME_1":"Shandong","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"山東|山东","VARNAME_1":"Shāndōng"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.26490020751953,30.689582824707255],[121.19924926757835,30.78400611877441],[121.0775604248049,30.851522445678768],[120.98263549804699,30.832660675048768],[120.9938354492192,31.004228591919063],[120.89511871337892,31.01197814941412],[120.88040924072277,31.136251449585018],[121.04059600830078,31.13811874389654],[121.05766296386719,31.26090431213385],[121.1216049194338,31.30657577514677],[121.20725250244162,31.474849700927848],[121.32597351074251,31.505416870117468],[121.51596832275389,31.388750076294055],[121.66680908203135,31.328193664550835],[121.8623580932617,31.11347007751459],[121.92263793945312,30.972085952758786],[121.89041900634764,30.847917556762695],[121.81485748291016,30.85874748229986],[121.52680206298838,30.82152938842779],[121.26490020751953,30.689582824707255]]],[[[121.29569244384764,31.869306564331165],[121.6665267944337,31.64958381652832],[121.8915328979492,31.593200683593864],[121.96514129638672,31.492370605468746],[121.8320770263673,31.438472747802734],[121.38957977294933,31.616529464721737],[121.16124725341818,31.787639617920036],[121.29569244384764,31.869306564331165]]]]},"properties":{"ID_0":49,"ISO":"CN-31","NAME_0":"China","ID_1":24,"NAME_1":"Shanghai","TYPE_1":"Zhíxiáshì","ENGTYPE_1":"Municipality","NL_NAME_1":"上海|上海","VARNAME_1":"Shànghǎi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.12786102294922,40.73575973510753],[114.19120788574219,40.62958908081055],[114.2764663696289,40.589458465576286],[114.26274108886717,40.48538589477539],[114.30792236328125,40.36830520629882],[114.5243911743164,40.343955993652344],[114.46347045898447,40.26675033569347],[114.05783843994175,40.163112640380916],[114.08847045898482,40.09930419921881],[114.01647186279297,39.99241256713873],[114.05168151855479,39.92816925048828],[114.30547332763693,39.85608673095703],[114.3863754272463,39.867168426513786],[114.40162658691418,39.65062713623047],[114.54537200927734,39.547451019287166],[114.4162826538086,39.30722808837896],[114.35786437988314,39.1034507751466],[114.1020736694337,39.0512046813966],[114.04420471191429,39.13482666015636],[113.89168548583996,39.06693649291992],[113.7608871459961,38.9588356018067],[113.84912872314453,38.82835006713873],[113.76902770996094,38.70916748046875],[113.60639190673827,38.64554595947271],[113.55550384521507,38.55783462524414],[113.57701110839844,38.46552658081055],[113.51879119873057,38.38246536254894],[113.56385040283202,38.236957550048935],[113.70291137695312,38.21108627319336],[113.87711334228537,38.053985595703125],[113.96395111083984,37.83337020874035],[114.12183380126976,37.69730758666998],[114.11190032958996,37.58973693847656],[113.95367431640636,37.34847259521484],[113.8960418701173,37.30953216552729],[113.75170898437533,37.075168609619254],[113.78646850585938,36.894397735595646],[113.66993713378906,36.855419158935604],[113.6494598388673,36.78556442260748],[113.4928207397462,36.74032974243163],[113.48027801513682,36.63498687744146],[113.58167266845726,36.54844665527355],[113.58819580078136,36.45759582519537],[113.70201110839854,36.42330932617193],[113.72434234619162,36.360000610351676],[113.65881347656284,36.11945724487305],[113.65067291259764,35.836864471435604],[113.56907653808615,35.817844390869254],[113.55655670166026,35.648105621338004],[113.49054718017578,35.53054809570307],[113.20276641845737,35.44199371337902],[113.10746765136741,35.33320617675781],[113.02401733398438,35.363502502441406],[112.91504669189474,35.24839401245117],[112.76907348632812,35.20890426635742],[112.43359375,35.229743957519645],[112.07186126708984,35.229129791259766],[112.05079650878929,35.05064392089855],[111.82504272460949,35.073120117187614],[111.6857528686524,34.99225997924805],[111.567626953125,34.849540710449276],[111.22097778320324,34.79192733764643],[111.15017700195318,34.80830383300781],[110.8956375122072,34.662040710449276],[110.75208282470724,34.656459808349716],[110.68240356445328,34.59413909912115],[110.38023376464838,34.604488372802734],[110.28881072998053,34.62031173706055],[110.27056121826166,34.96877288818365],[110.31427764892595,35.011295318603516],[110.40204620361328,35.27748107910156],[110.51608276367205,35.405281066894524],[110.60104370117193,35.60580062866205],[110.55033111572293,35.86775970458996],[110.51223754882807,35.887783050537166],[110.44464111328129,36.164859771728516],[110.50008392333984,36.581142425537166],[110.42528533935564,36.65648651123047],[110.40833282470702,36.9943733215332],[110.644790649414,37.25016403198242],[110.69488525390629,37.352291107177784],[110.64065551757812,37.43668365478521],[110.74752807617193,37.466781616210994],[110.78576660156267,37.551132202148494],[110.66639709472656,37.79426193237316],[110.49893951416014,38.02187347412121],[110.50572204589855,38.192474365234375],[110.56798553466797,38.2904281616212],[110.66458892822294,38.31017684936535],[110.76875305175793,38.434734344482536],[110.84567260742203,38.43996810913086],[110.90679168701178,38.56518173217785],[110.87973022460965,38.62424468994152],[111.01371002197283,38.878551483154354],[110.97500610351562,38.97599411010748],[111.0954971313476,39.03009414672851],[111.20724487304699,39.23205566406256],[111.13376617431646,39.36773300170904],[111.21085357666043,39.42956924438482],[111.33066558837884,39.4188346862793],[111.48661041259788,39.658477783203125],[111.76055908203153,39.58994674682623],[111.92712402343767,39.61918258667003],[111.97008514404297,39.79625701904302],[112.30272674560547,40.25146484375],[112.44920349121094,40.29874038696294],[112.72182464599621,40.16704177856445],[112.83833312988281,40.202842712402344],[112.89204406738293,40.32830047607416],[113.24909973144541,40.41027450561523],[113.31632995605491,40.31749343872082],[113.55307769775436,40.347541809082145],[113.7838745117192,40.50125503540039],[113.84435272216808,40.459472656250114],[114.05509948730513,40.527389526367294],[114.05723571777355,40.70555496215826],[114.12786102294922,40.73575973510753]]]},"properties":{"ID_0":49,"ISO":"CN-14","NAME_0":"China","ID_1":25,"NAME_1":"Shanxi","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"山西","VARNAME_1":"Shānxī"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.49535369873064,32.91073989868164],[105.61859130859375,32.69981384277355],[105.81519317626947,32.8092041015625],[105.95511627197271,32.84763717651367],[106.17360687255876,32.69555664062506],[106.32637023925776,32.67256927490245],[106.43012237548822,32.61944580078131],[106.58933258056669,32.66182327270507],[106.72840881347668,32.73145294189459],[106.78601837158214,32.703178405761776],[107.05493164062527,32.7119979858399],[107.10303497314447,32.60278320312517],[107.08066558837918,32.531551361083984],[107.25935363769553,32.40550994873058],[107.37308502197294,32.540969848632756],[107.52066040039085,32.38473129272461],[107.66918182373047,32.39353561401373],[107.84605407714865,32.20866012573242],[107.99150085449236,32.15409088134771],[108.01764678955095,32.21660232543957],[108.17733764648443,32.228519439697266],[108.23412322998063,32.27865600585966],[108.47605895996098,32.272045135498104],[108.51454925537115,32.21204376220708],[108.3725891113283,32.18421173095708],[108.28655242919916,31.929058074951172],[108.52720642089872,31.757961273193363],[108.53423309326178,31.6771068572998],[108.39594268798851,31.609043121337944],[108.31633758544938,31.51035881042492],[108.23023223876982,31.51310539245605],[108.17851257324224,31.334787368774528],[108.07116699218778,31.267095565795955],[108.08136749267577,31.195667266845703],[108.009780883789,31.105787277221793],[108.04972839355474,31.04863739013683],[107.94728088378906,30.987459182739368],[107.97001647949224,30.89495468139654],[107.86900329589855,30.808849334716797],[107.51068115234375,30.844881057739258],[107.41993713378912,30.744838714599663],[107.48164367675776,30.606313705444506],[107.36215972900412,30.470155715942663],[107.22763061523438,30.22743988037115],[107.02802276611357,30.036109924316406],[106.96629333496111,30.082696914672848],[106.8717117309572,30.02734184265142],[106.72501373291031,30.03719139099121],[106.56037902832041,30.306888580322322],[106.44360351562506,30.296226501465014],[106.35874176025419,30.234788894653605],[106.20210266113304,30.212610244751033],[106.13938140869146,30.320039749145565],[105.9810867309573,30.383621215820312],[105.790786743164,30.42348670959467],[105.71224212646484,30.31063270568848],[105.61416625976557,30.266138076782397],[105.55877685546879,30.184236526489315],[105.59475708007812,30.11006927490251],[105.73922729492216,30.027923583984602],[105.72458648681634,29.856422424316406],[105.61170959472672,29.838090896606555],[105.56726074218767,29.739044189453235],[105.3824691772461,29.66498756408691],[105.28674316406256,29.54547691345215],[105.32424926757807,29.44178199768083],[105.43341064453124,29.40216636657726],[105.44914245605497,29.29393959045421],[105.69621276855486,29.27216911315918],[105.71887207031244,29.111965179443413],[105.79991149902355,28.94122695922857],[105.98811340332037,28.980567932128906],[106.11216735839838,28.899961471557734],[106.2549667358399,28.85392951965326],[106.24774932861357,28.799732208252006],[106.37358093261741,28.530485153198356],[106.28510284423832,28.540290832519645],[106.10343933105469,28.634981155395508],[105.96365356445312,28.751831054687443],[105.86843109130876,28.59096527099615],[105.73594665527366,28.614667892456055],[105.63368988037115,28.52494812011724],[105.63642883300808,28.31930732727068],[105.71227264404303,28.275840759277397],[105.77892303466825,28.335525512695312],[105.88387298584,28.240835189819336],[105.87796783447283,28.12946319580072],[105.97379302978538,28.116268157958984],[106.1459732055664,28.16761589050293],[106.25861358642605,28.080980300903377],[106.31727600097656,27.97634315490734],[106.332748413086,27.8292884826663],[106.18678283691423,27.758264541626033],[105.76389312744135,27.720869064330998],[105.6208572387697,27.66724586486839],[105.48232269287138,27.776836395263956],[105.30024719238298,27.709112167358626],[105.17595672607443,28.068841934204215],[105.05834197998058,28.099634170532223],[104.97012329101568,28.059192657470874],[104.875717163086,27.912342071533203],[104.72583007812506,27.900220870971676],[104.56137847900396,27.852773666381893],[104.31070709228533,28.03518295288086],[104.3845291137697,28.06200408935547],[104.45614624023443,28.17436408996582],[104.43637847900385,28.275659561157223],[104.25334167480474,28.397077560424805],[104.26107025146496,28.6456298828125],[103.87841033935553,28.62539100646984],[103.78363800048857,28.518131256103516],[103.8640975952149,28.306711196899357],[103.69735717773443,28.20534324646013],[103.56365203857428,28.228448867798136],[103.42749023437523,28.055618286132926],[103.49340057373064,28.0204181671142],[103.50244140625023,27.84023094177257],[103.4399032592774,27.75361633300787],[103.27442169189447,27.632938385009762],[103.13661956787132,27.425537109375227],[102.98589324951172,27.37384033203125],[102.88175964355469,27.303371429443587],[102.90791320800787,27.15058326721197],[102.86739349365229,27.032140731811523],[102.89497375488287,26.91550254821783],[102.97955322265642,26.799079895019645],[103.01662445068365,26.591283798217887],[102.98928070068376,26.36440086364746],[102.77985382080095,26.306201934814453],[102.70614624023443,26.217643737793026],[102.59899139404325,26.253160476684624],[102.62078857421892,26.345222473144588],[102.4005355834961,26.30599975585949],[102.25107574462919,26.222623825073356],[102.12990570068365,26.09490966796892],[101.81679534912121,26.090187072753903],[101.7342605590822,26.22133445739746],[101.62286376953142,26.23652648925787],[101.6395034790039,26.388837814331055],[101.39495849609375,26.559118270874023],[101.48163604736334,26.680433273315426],[101.37313079834013,26.765348434448242],[101.36657714843756,26.887445449829045],[101.13964843750006,27.033498764038082],[101.16567230224626,27.20093345642107],[101.0467147827149,27.222856521606502],[100.8296508789063,27.684648513794],[100.71102905273443,27.805879592895508],[100.67755889892572,27.926382064819393],[100.54777526855491,27.815065383911357],[100.44800567626959,27.872024536132812],[100.32546234130854,27.72199058532726],[100.18659973144541,27.955966949463004],[100.08011627197271,28.04192543029796],[100.02705383300787,28.17434120178217],[100.16327667236334,28.216581344604435],[100.17864990234375,28.315002441406364],[100.05937957763683,28.376356124877987],[99.9564437866211,28.57198143005371],[99.83000946044926,28.60941123962408],[99.83236694335966,28.667627334594723],[99.73358154296903,28.732809066772514],[99.72283935546898,28.83901786804199],[99.62186431884783,28.81273460388189],[99.53871154785172,28.68799209594738],[99.51906585693375,28.585510253906193],[99.3909606933596,28.548915863037166],[99.38807678222662,28.396894454956055],[99.4205627441409,28.28846740722662],[99.30883026123058,28.22509956359863],[99.17343902587908,28.415414810180774],[99.19222259521507,28.496875762939567],[99.10897827148453,28.856487274169922],[99.12959289550798,28.904745101928825],[99.11231231689476,29.25111961364757],[99.0758743286135,29.296464920043945],[99.05204010009788,29.56004905700689],[98.99391174316435,29.67295265197771],[99.02009582519548,29.844123840332145],[99.07112884521489,29.931365966796875],[99.04269409179709,30.08236122131353],[98.98809814453125,30.152858734130973],[98.93891143798834,30.593173980712947],[98.9040985107423,30.697721481323246],[98.96224975585966,30.733436584472653],[98.77465820312499,30.90786743164074],[98.80412292480496,31.000701904296932],[98.6023406982423,31.23885536193859],[98.68820190429682,31.338266372680664],[98.78009033203152,31.2549667358399],[98.88133239746116,31.36942291259794],[98.84212493896479,31.432546615600696],[98.70890045166037,31.516067504882873],[98.56581878662115,31.64849472045898],[98.3977890014649,31.90719985961942],[98.43197631835943,32.01350402832037],[98.29969787597673,32.12960433959972],[98.21236419677734,32.34500122070318],[97.96907806396513,32.474918365478516],[97.72996520996111,32.529659271240234],[97.48752593994135,32.65393829345703],[97.38430023193388,32.78768920898443],[97.3629608154298,32.950981140136776],[97.51634979248064,32.992546081543026],[97.54212951660155,33.05335998535179],[97.48731994628918,33.16833877563505],[97.60908508300781,33.276981353759766],[97.61968994140636,33.33772659301769],[97.76994323730497,33.42061996459984],[97.55538177490263,33.469425201416016],[97.51348876953142,33.58653259277355],[97.42955780029314,33.68623352050787],[97.37087249755865,33.83550262451172],[97.38832855224621,33.88874435424816],[97.53282165527348,33.90663909912104],[97.66010284423857,33.96232986450201],[97.81569671630882,33.85822677612316],[98.02371978759764,33.95146560668951],[98.25678253173845,33.915351867675895],[98.25473022460943,33.84984588623046],[98.41116333007835,33.87202835083008],[98.52503967285178,33.798118591308594],[98.66270446777344,33.65229415893549],[98.64933776855469,33.55310440063471],[98.72745513916044,33.50987243652355],[98.78303527832031,33.36363983154296],[98.76844024658232,33.28194808959961],[98.85239410400402,33.15933609008794],[99.1961669921875,33.03200149536144],[99.2709045410158,32.888332366943416],[99.36031341552761,32.91181945800781],[99.74240112304705,32.746673583984425],[99.78752899169928,32.863464355468864],[99.76866149902371,32.952419281005916],[99.97196960449224,32.94028854370134],[100.10599517822264,32.863166809082024],[100.11845397949224,32.63982009887706],[100.2217559814453,32.623817443847656],[100.23624420166016,32.715652465820426],[100.40502929687517,32.74549484252941],[100.54104614257811,32.571933746338004],[100.45097351074213,32.45735549926758],[100.53984832763666,32.41204833984392],[100.62380218505876,32.47063064575223],[100.65566253662126,32.602462768554915],[100.71881866455077,32.66272354125988],[100.93308258056646,32.60490417480469],[101.07468414306658,32.682334899902344],[101.21690368652372,32.716075897216854],[101.2371749877929,32.81775283813482],[101.11996459960943,32.912651062011776],[101.11636352539068,33.02778244018566],[101.16474914550781,33.16185379028349],[101.40853881835943,33.22873306274414],[101.48286437988298,33.22781753540045],[101.62555694580078,33.11393737792963],[101.73433685302757,33.27802658081066],[101.64779663085965,33.3287353515625],[101.68192291259793,33.41849136352539],[101.7749252319336,33.45697402954096],[101.77423095703152,33.548042297363395],[101.83661651611357,33.614463806152344],[101.93886566162121,33.44575881958007],[101.8753204345706,33.323116302490234],[101.76795959472685,33.24454116821289],[101.84082794189464,33.1848258972168],[102.05314636230463,33.19178009033203],[102.10443115234386,33.26874542236334],[102.20602416992209,33.23442459106445],[102.2216415405274,33.38579559326172],[102.3546295166016,33.393226623535156],[102.43972015380888,33.45528793334961],[102.43913269042997,33.581356048583984],[102.33715820312516,33.61697006225597],[102.3389739990235,33.72563171386713],[102.19335174560564,33.91864395141607],[102.30878448486328,33.99384307861328],[102.38580322265642,33.9734458923341],[102.4213485717774,34.08662033081055],[102.59779357910179,34.14724731445318],[102.73484802246111,34.26859283447277],[102.92523956298828,34.30934524536144],[103.00817871093767,34.18482589721674],[103.09801483154313,34.183258056640625],[103.16744232177751,34.093654632568295],[103.12075805664068,33.94302749633789],[103.15014648437506,33.811813354492294],[103.34721374511724,33.74501800537115],[103.43190765380888,33.75435256958008],[103.53887176513695,33.67300796508795],[103.59117889404325,33.71422958374035],[103.76624298095709,33.66038513183605],[104.04965972900413,33.68680572509771],[104.16682434082058,33.61078262329107],[104.15173339843756,33.545970916748104],[104.21485900878912,33.406211853027344],[104.26432800292963,33.393478393554744],[104.37222290039068,33.120979309082145],[104.38080596923834,32.99615859985346],[104.28546905517605,32.941749572753906],[104.30019378662104,32.83144378662121],[104.49718475341825,32.757114410400675],[104.64373779296892,32.661418914794865],[104.84946441650419,32.64872360229498],[104.88507843017601,32.598526000976676],[105.03254699707037,32.64676666259771],[105.14159393310553,32.59889602661133],[105.44912719726591,32.736293792724666],[105.38031768798821,32.88031768798828],[105.49535369873064,32.91073989868164]]]},"properties":{"ID_0":49,"ISO":"CN-51","NAME_0":"China","ID_1":26,"NAME_1":"Sichuan","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"四川","VARNAME_1":"Sìchuān"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[118.01268768310545,39.218193054199325],[117.83403015136717,39.17626190185541],[117.7468032836914,39.09735870361328],[117.72152709960936,38.97013854980469],[117.58013916015658,38.77208328247076],[117.56430816650425,38.65569305419933],[117.26931762695322,38.56954574584966],[117.2062149047854,38.62799072265631],[117.10205841064476,38.58654022216797],[117.0191421508789,38.7020721435548],[116.91632080078136,38.6908073425293],[116.75075531005903,38.740154266357415],[116.70439910888716,38.9204559326173],[116.75588989257834,39.02737426757818],[116.90145874023438,39.06421661376959],[116.86456298828146,39.1648521423341],[116.8808059692385,39.347843170166016],[116.79687500000011,39.457607269287166],[116.79938507080122,39.610008239746094],[116.89429473876953,39.69630813598633],[116.97351074218771,39.642501831054744],[117.15242004394554,39.62674331665039],[117.16275787353527,39.79872894287115],[117.22265625,39.857101440429744],[117.13152313232456,39.921825408935604],[117.19398498535168,40.08278274536133],[117.3344192504884,40.14122009277344],[117.37973785400412,40.22687149047863],[117.55962371826183,40.213554382324276],[117.6408462524414,40.09823989868164],[117.74359893798864,40.07381439208996],[117.80303192138717,39.98414993286133],[117.54586791992209,39.98641967773443],[117.51319122314487,39.88500595092779],[117.57858276367199,39.7279891967774],[117.6935958862306,39.5805549621582],[117.92980957031251,39.580131530761776],[117.86926269531261,39.448425292968864],[118.01047515869142,39.361911773681754],[118.01268768310545,39.218193054199325]]]},"properties":{"ID_0":49,"ISO":"CN-12","NAME_0":"China","ID_1":27,"NAME_1":"Tianjin","TYPE_1":"Zhíxiáshì","ENGTYPE_1":"Municipality","NL_NAME_1":"天津|天津","VARNAME_1":"Tiānjīn"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.36516571044926,42.71707534790045],[96.09664154052763,42.59966659545893],[96.02552795410168,42.110931396484375],[96.05531311035173,42.0161972045899],[95.9896697998048,41.89428329467784],[95.8683547973634,41.843002319335994],[95.6865921020509,41.822109222412166],[95.539115905762,41.8545875549317],[95.04637145996094,41.77122879028325],[94.67984008789068,41.62221145629883],[94.41741943359403,41.391883850097656],[94.0770111083986,41.158325195312614],[93.80673980712906,40.87663650512701],[93.64675140380858,40.61911010742199],[93.35394287109392,40.47246170043945],[92.9138107299807,40.49829864501953],[92.91799163818365,40.10373306274413],[92.76416015624993,39.87979888916021],[92.87683105468778,39.54480361938488],[92.94313049316406,39.45827102661133],[92.92624664306669,39.292980194091854],[92.9505615234375,39.17105484008789],[92.85248565673844,39.140197753906364],[92.5000305175783,39.109432220458984],[92.3856201171875,39.00488662719721],[92.03942108154297,38.95489883422863],[91.7913436889649,38.868598937988224],[91.43598937988304,38.815647125244254],[91.29625701904308,38.75331878662115],[91.11454772949219,38.713237762451286],[90.75071716308622,38.66246795654297],[90.6306228637697,38.67548370361333],[90.41613769531271,38.494232177734375],[90.14225006103521,38.402130126953125],[90.23654937744134,38.308174133300895],[90.33097839355486,38.135093688964844],[90.48061370849614,37.958194732666016],[90.4132461547852,37.83528518676769],[90.52237701416038,37.73019027709972],[90.78543090820341,37.64322280883783],[90.94044494628912,37.479305267334034],[91.0907821655274,37.46339797973633],[91.18340301513672,37.21862411499035],[91.27729797363304,37.152542114257926],[91.30413055419938,37.01863479614258],[91.13368225097678,37.01247406005865],[90.97371673583996,36.916915893554744],[90.8472976684572,36.9190292358399],[90.71454620361344,36.79302215576166],[90.7301864624025,36.59137725830089],[91.02778625488287,36.53701400756836],[91.02243041992188,36.3355331420899],[91.09320831298834,36.21501541137695],[91.09886169433587,36.09480667114269],[90.96553039550776,36.10243606567394],[90.84373474121098,36.02142333984381],[90.67725372314476,36.13246917724621],[90.46916198730491,36.13347244262701],[90.2330169677735,36.16516113281249],[90.03012084960966,36.27914428710949],[89.98883056640625,36.15573883056652],[89.8720245361331,36.08062744140619],[89.73124694824247,36.08474349975586],[89.48770904541027,36.15145492553722],[89.23417663574247,36.29521942138672],[89.16053009033226,36.24711990356451],[88.93024444580095,36.3599739074707],[88.76565551757812,36.30178070068365],[88.62131500244163,36.389949798583984],[88.57082366943388,36.461677551269645],[88.46800231933622,36.48248672485357],[88.23899078369158,36.468994140625],[88.13172912597685,36.427383422851506],[87.97315216064453,36.436103820800895],[87.90692138671892,36.37609100341797],[87.72917175292986,36.385295867920036],[87.55146789550787,36.342540740966854],[87.3761291503908,36.41680145263677],[87.14658355712919,36.29771804809576],[86.99362182617216,36.30913543701166],[86.74362945556658,36.29245376586914],[86.67237091064459,36.23704910278325],[86.39032745361357,36.207294464111385],[86.1957473754885,36.12948608398437],[86.17725372314459,36.03277206420904],[86.05230712890648,35.84610748291021],[85.9533157348635,35.78454971313476],[85.69716644287132,35.75167465209972],[85.61204528808594,35.65629577636719],[85.26630401611334,35.78048706054693],[85.03217315673845,35.747024536132926],[84.83635711669928,35.640121459960994],[84.4456253051759,35.543003082275504],[84.44983673095696,35.47875976562506],[84.33398437500023,35.41498184204107],[84.09380340576172,35.36454010009771],[84.06267547607439,35.407478332519645],[83.88502502441435,35.366985321045036],[83.53900146484398,35.342594146728516],[83.2394256591798,35.420680999755916],[83.12372589111328,35.39918899536144],[82.99623870849621,35.485298156738395],[82.96472167968778,35.66818237304693],[82.78639221191435,35.686157226562614],[82.72863769531261,35.63856506347656],[82.62599182128935,35.69311141967784],[82.40589904785183,35.699996948242244],[82.32532501220709,35.56008911132824],[82.0455856323245,35.44977569580084],[82.04818725585943,35.363407135009766],[81.85121917724638,35.25978469848644],[81.68378448486338,35.23654556274413],[81.5320663452149,35.25843429565441],[81.44589996337919,35.354331970214844],[81.21689605712908,35.32008361816412],[81.05199432373051,35.40310668945323],[81.03451538085966,35.312324523925895],[80.84226989746105,35.3464241027832],[80.6871261596682,35.339969635009766],[80.52110290527361,35.45596694946295],[80.43515777587896,35.447147369384766],[80.29357147216814,35.360706329345646],[80.29506683349604,35.26585388183594],[80.14865112304692,35.09882354736334],[80.05039978027344,35.060012817382756],[79.99201965332048,34.86211013793957],[79.89976501464848,34.86171340942394],[79.86662292480497,34.749565124511776],[79.91581726074223,34.7082405090332],[79.79914855957026,34.480712890625114],[79.67353057861334,34.452995300293026],[79.50239562988298,34.456565856933594],[79.22739410400389,34.41580200195318],[79.07736206054716,34.415466308593864],[79.03726196289068,34.3362655639649],[78.92743682861357,34.37163543701183],[78.83809661865234,34.40652847290045],[78.56933593750017,34.611949920654354],[78.41812896728521,34.605400085449276],[78.28436279296892,34.66736221313488],[78.20732116699236,34.76610946655279],[78.18464660644531,34.88151931762707],[78.08287048339872,35.08248901367199],[77.99028778076172,35.379032135009766],[77.88862609863281,35.42887115478527],[77.81575012207031,35.51786041259771],[77.62321472167997,35.47655868530279],[77.42727661132835,35.469039916992244],[77.26693725585949,35.53540420532237],[77.18669891357439,35.52833938598644],[77.0567169189456,35.59941482543951],[76.76377105712919,35.669647216796875],[76.57852935791021,35.813060760498104],[76.5905151367188,35.89311599731451],[76.22182464599615,35.85093307495117],[76.08006286621094,36.018375396728516],[76.00155639648443,36.01816940307611],[75.93306732177756,36.12530899047863],[76.0530166625977,36.23731994628912],[75.98311614990229,36.33754348754888],[76.00837707519537,36.45330047607433],[75.91886901855486,36.62047958374034],[75.72970581054693,36.746459960937614],[75.54621887207037,36.76655197143566],[75.45449829101568,36.721614837646484],[75.37235260009794,36.94361877441412],[75.23030090332048,36.959739685058594],[75.14686584472662,37.019889831543026],[75.03984832763695,37.01552963256836],[74.922416687012,36.93455886840826],[74.82159423828124,37.06029891967785],[74.7294692993164,37.024898529052734],[74.67674255371122,37.09701156616211],[74.52906799316428,37.075340270996094],[74.43309783935553,37.115760803222656],[74.50798034667963,37.23918914794921],[74.89290618896501,37.22194290161132],[74.93490600585938,37.289508819580135],[75.11624908447283,37.32025146484375],[75.13382720947266,37.43743896484381],[75.05546569824224,37.52715301513683],[74.92801666259783,37.55624008178722],[74.89659881591803,37.65766143798828],[74.99507904052763,37.76279067993175],[74.90542602539091,37.842868804931754],[74.91455078125006,38.00902557373047],[74.82287597656244,38.083057403564396],[74.78579711914085,38.18553924560558],[74.78778076171868,38.35453033447277],[74.86943054199236,38.4035263061524],[74.86725616455084,38.49841690063482],[74.71865844726585,38.52225112915044],[74.6309967041015,38.583023071289176],[74.38221740722662,38.65303039550792],[74.13407135009771,38.66843414306646],[74.06979370117193,38.53106689453125],[73.92433929443376,38.53609085083008],[73.80670928955078,38.63349914550787],[73.70677947998053,38.88555145263683],[73.84552001953153,38.947700500488395],[73.74483489990246,39.03039550781249],[73.61621093750023,39.23781967163086],[73.66996765136724,39.390819549560604],[73.65153503417997,39.4539527893067],[73.86383056640653,39.47890472412121],[73.94136810302734,39.60290908813482],[73.91511535644558,39.71462631225586],[73.83508300781267,39.75947952270508],[73.84229278564463,39.83875274658208],[74.02391052246111,40.098304748535156],[74.25164031982438,40.13319015502935],[74.3404388427735,40.08385086059581],[74.52365875244156,40.204280853271484],[74.68321228027372,40.34507751464838],[74.89945983886724,40.33708953857422],[74.81200408935541,40.45386505126953],[74.82811737060553,40.52474975585932],[74.98786926269526,40.45056915283203],[75.19393920898443,40.43875122070312],[75.59310913085955,40.658714294433594],[75.64081573486328,40.50736618041992],[75.71948242187528,40.48509216308594],[75.66290283203142,40.35647583007824],[75.72240447998064,40.28881835937494],[75.92230224609392,40.327178955078125],[75.97482299804692,40.380111694335994],[76.32480621337896,40.370609283447266],[76.52132415771513,40.462623596191406],[76.53820037841814,40.53485488891607],[76.64036560058622,40.622840881347656],[76.63398742675787,40.75733947753912],[76.78881835937517,40.86001205444336],[76.78607177734402,40.9606552124024],[76.86404418945335,41.02094268798834],[77.04727935791014,41.0597038269043],[77.15281677246115,41.01639556884771],[77.33203125000017,41.030059814453125],[77.46984100341825,41.00110244750988],[77.6697540283206,41.00105667114269],[77.87751770019547,41.0732040405274],[78.07094573974626,41.04732131958008],[78.1900329589846,41.079029083252],[78.27237701416016,41.21327972412121],[78.3855133056641,41.27106857299804],[78.40503692626982,41.41349029541021],[78.63984680175793,41.469600677490234],[78.7084350585938,41.55069351196295],[78.83637237548828,41.575511932373104],[78.93701171875011,41.645545959472656],[79.45201873779291,41.849201202392635],[79.6704940795899,41.79009628295904],[79.8815231323245,42.0380096435548],[80.12651824951172,42.03474044799805],[80.28093719482433,42.072792053222656],[80.24562835693388,42.22089004516601],[80.2890167236328,42.26013183593756],[80.20852661132812,42.427730560302784],[80.2213134765625,42.53625869750982],[80.16732788085938,42.63658905029297],[80.25833129882818,42.828430175781364],[80.39808654785173,42.82738876342785],[80.56831359863287,42.92402648925781],[80.3949203491213,42.99540710449219],[80.40970611572283,43.05728912353527],[80.59308624267584,43.131755828857536],[80.79944610595709,43.17541885375982],[80.74475860595732,43.297882080078125],[80.66073608398455,43.31282043457037],[80.74595642089838,43.448501586914176],[80.59010314941435,43.74141311645507],[80.51973724365246,43.83420944213873],[80.4027862548831,44.19795989990234],[80.34282684326178,44.48129653930664],[80.48973846435553,44.71142959594738],[80.34062194824246,44.82025909423839],[80.24667358398438,44.83958435058594],[80.04017639160162,44.800418853759766],[79.96040344238287,44.878940582275334],[80.08183288574236,45.04956054687494],[80.40277862548857,45.0528297424317],[80.44513702392607,45.10269165039068],[80.60604858398443,45.11034393310558],[80.7514266967774,45.15773010253906],[80.85411071777338,45.12795257568353],[81.0752029418947,45.1744003295899],[81.11258697509783,45.21973037719737],[81.4527664184573,45.26869964599621],[81.68958282470703,45.366630554199276],[81.78814697265642,45.30688858032232],[81.82784271240251,45.19998931884776],[82.0082397460937,45.158466339111385],[82.24082183837896,45.23535919189453],[82.48620605468761,45.120670318603516],[82.59252166748047,45.231460571289176],[82.630859375,45.35965728759777],[82.590141296387,45.44562149047846],[82.42965698242192,45.46862030029297],[82.27571868896484,45.5453987121582],[82.28911590576193,45.632480621338004],[82.50444030761724,45.98337936401373],[82.52902984619146,46.18402099609386],[82.73902893066412,46.51768493652343],[82.8073120117188,46.74961853027344],[82.9798889160158,47.0307121276856],[83.0308761596682,47.212120056152344],[83.1746673583985,47.22366333007818],[83.34348297119146,47.17607116699218],[83.55531311035172,47.068309783935604],[84.03821563720714,46.96535110473644],[84.4204406738284,47.01091003417969],[84.50701904296903,46.97783279418945],[84.70473480224615,46.99623489379894],[84.82668304443388,46.8323478698731],[84.96259307861328,46.87163925170904],[85.2194137573245,47.05139923095709],[85.52972412109402,47.05939865112316],[85.57649993896496,47.190666198730526],[85.690658569336,47.218231201171875],[85.69830322265648,47.39778137207037],[85.603500366211,47.51965713500988],[85.62123870849614,47.60763549804699],[85.54159545898449,47.93943786621094],[85.61039733886724,48.156730651855526],[85.7354507446289,48.37100219726574],[85.83935546875017,48.42549514770508],[86.21438598632812,48.43546676635748],[86.31805419921903,48.50098419189458],[86.5847473144533,48.541519165039176],[86.76307678222649,48.71483993530273],[86.81044006347656,48.85033035278326],[86.72323608398455,48.990669250488395],[86.85520172119135,49.10752105712896],[86.98599243164091,49.103130340576286],[87.13469696044928,49.150798797607536],[87.43810272216813,49.08467102050787],[87.70231628417969,49.16968154907238],[87.832260131836,49.17500686645519],[87.8331909179688,49.05994033813482],[87.91448974609403,48.985900878906364],[87.75003051757818,48.89054107666027],[87.92465972900408,48.76227951049816],[88.07332611083989,48.691680908203125],[88.00425720214848,48.56599044799816],[88.34957885742215,48.47064208984375],[88.60107421875006,48.344116210937436],[88.57527160644547,48.27587890625],[88.67424011230463,48.17456054687494],[88.8991088867187,48.119873046875],[89.02851104736334,48.039772033691406],[89.04107666015625,47.94732666015631],[89.19303894042963,47.95016098022455],[89.3184204101563,48.02838897705084],[89.56591796874994,48.0487060546875],[89.61727142334001,47.94583892822277],[89.79641723632818,47.818149566650504],[89.93029785156254,47.816528320312614],[90.32345581054692,47.666992187500114],[90.4569091796875,47.487121582031364],[90.51784515380888,47.244155883789006],[90.73431396484403,47.001525878906364],[90.88115692138678,46.97636413574213],[90.95353698730486,46.826980590820426],[91.05173492431652,46.72601318359381],[91.07763671875028,46.563964843750114],[90.95587158203124,46.33648681640625],[90.93476867675808,46.20563888549816],[91.021484375,46.11309814453119],[91.01149749755854,46.0005340576173],[90.84808349609392,45.88330078125],[90.69985198974626,45.69068145751953],[90.66369628906256,45.51690673828125],[90.76786041259771,45.42153549194347],[90.813217163086,45.28636932373052],[90.93829345703142,45.18244171142589],[91.15808105468756,45.19413757324213],[91.37432861328125,45.10467529296869],[91.48205566406267,45.13571166992199],[91.65202331542986,45.05670928955083],[92.01647949218744,45.0692749023438],[92.17221832275396,45.03053665161144],[92.34112548828142,45.05072021484375],[92.51457977294928,45.00998687744146],[93.06984710693365,45.01840972900402],[93.50827026367186,44.96534347534174],[94.19741821289068,44.66250228881836],[94.33400726318365,44.5230598449707],[94.57597351074236,44.44833374023449],[94.69549560546903,44.34771728515624],[94.99050903320318,44.25455093383795],[95.42366027832037,44.28926849365246],[95.37063598632818,44.20970916748058],[95.37479400634766,44.021148681640625],[95.5507812500001,43.9886589050293],[95.67650604248064,43.70642852783203],[95.88110351562528,43.40209960937506],[95.91645050048844,43.233505249023494],[96.07395172119168,43.12535095214849],[96.15444183349638,43.01053619384771],[96.32444763183611,42.88243103027338],[96.36516571044926,42.71707534790045]]]},"properties":{"ID_0":49,"ISO":"CN-65","NAME_0":"China","ID_1":28,"NAME_1":"Xinjiang Uygur","TYPE_1":"Zìzhìqu","ENGTYPE_1":"Autonomous Region","NL_NAME_1":"新疆維吾爾自治區|新疆维吾尔自治区","VARNAME_1":"Xīnjiāng Wéiwúěr"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[89.73124694824247,36.08474349975586],[89.52570343017595,36.032970428466854],[89.40850067138678,36.03224182128906],[89.42065429687506,35.92338180541992],[89.67651367187528,35.85014724731445],[89.7855987548831,35.86180877685558],[89.71098327636741,35.577720642089844],[89.73441314697271,35.47107696533203],[89.68804168701172,35.421749114990234],[89.49705505371105,35.365894317626946],[89.45832061767607,35.23912429809576],[89.58079528808588,35.121234893798885],[89.56469726562523,34.95976257324224],[89.5919952392581,34.894687652588004],[89.81427001953142,34.90872955322277],[89.8569030761721,34.80925750732422],[89.73016357421892,34.73450851440441],[89.81417083740257,34.540431976318416],[89.8117065429688,34.16849136352545],[89.65811920166021,34.0953636169433],[89.657211303711,34.023685455322266],[89.73954772949219,33.91717147827159],[89.93082427978533,33.79388809204107],[90.00730133056658,33.689498901367244],[89.98716735839866,33.63319396972662],[90.18244934082037,33.54906845092785],[90.26480865478533,33.36758041381836],[90.40686035156261,33.25701904296875],[90.48712158203153,33.26638412475597],[90.70668029785185,33.13914108276373],[90.85399627685563,33.11772537231445],[90.94387054443365,33.217208862304744],[91.16146087646501,33.24025344848644],[91.18637084960966,33.305435180664006],[91.36598205566412,33.323455810546925],[91.3781509399414,33.238750457763786],[91.56113433837896,33.05408859252958],[91.79296875000017,32.945423126220646],[91.96720123291021,32.820003509521534],[92.12519836425776,32.88182449340826],[92.20835113525402,32.86090850830101],[92.20345306396484,32.751903533935774],[92.35968780517584,32.76605606079107],[92.6539382934572,32.72504043579107],[92.69166564941418,32.767780303955135],[92.85727691650408,32.70330810546875],[93.01750183105486,32.73899841308594],[93.0602951049807,32.632339477539006],[93.24640655517578,32.662952423095646],[93.38574218750011,32.52799224853527],[93.51541900634793,32.48030853271496],[93.65404510498068,32.57497787475597],[93.81033325195324,32.556056976318416],[93.85662078857428,32.47676467895519],[93.96201324462908,32.489112854003906],[94.13578033447266,32.435955047607536],[94.20251464843767,32.51846313476557],[94.36606597900413,32.52442932128906],[94.39097595214861,32.60127258300781],[94.54284667968756,32.60404586791992],[94.6223754882813,32.67022705078131],[94.81520080566406,32.48447036743164],[94.8959350585938,32.46239089965826],[94.95648956298845,32.342052459716854],[95.08084869384783,32.250434875488395],[95.28946685791027,32.25958251953153],[95.43338775634771,32.16000747680664],[95.44856262207026,32.06494903564453],[95.37197875976568,31.964406967163313],[95.52100372314482,31.751422882080018],[95.6384048461914,31.78522682189947],[95.85890197753906,31.717830657959098],[96.06051635742193,31.72340965271007],[96.2497711181641,31.695831298828068],[96.1353759765626,31.81841850280756],[96.25008392333983,31.93286705017084],[96.31795501709,31.942878723144528],[96.43717193603533,31.797254562377873],[96.56983947753935,31.71659088134777],[96.68083190917974,31.73003578186035],[96.73613739013695,31.67774009704596],[96.83872222900396,31.726831436157227],[96.76213836669932,31.829656600952262],[96.80891418457048,31.894855499267518],[96.73630523681646,31.983194351196513],[96.81362915039072,32.0182991027832],[96.96399688720703,32.02000045776367],[97.3019256591798,32.08260726928711],[97.26210784912126,32.18583679199236],[97.28708648681658,32.28674697875982],[97.4086532592774,32.29731369018549],[97.3977127075197,32.5204429626466],[97.64865875244169,32.478321075439396],[97.72996520996111,32.529659271240234],[97.96907806396513,32.474918365478516],[98.21236419677734,32.34500122070318],[98.29969787597673,32.12960433959972],[98.43197631835943,32.01350402832037],[98.3977890014649,31.90719985961942],[98.56581878662115,31.64849472045898],[98.70890045166037,31.516067504882873],[98.84212493896479,31.432546615600696],[98.88133239746116,31.36942291259794],[98.78009033203152,31.2549667358399],[98.68820190429682,31.338266372680664],[98.6023406982423,31.23885536193859],[98.80412292480496,31.000701904296932],[98.77465820312499,30.90786743164074],[98.96224975585966,30.733436584472653],[98.9040985107423,30.697721481323246],[98.93891143798834,30.593173980712947],[98.98809814453125,30.152858734130973],[99.04269409179709,30.08236122131353],[99.07112884521489,29.931365966796875],[99.02009582519548,29.844123840332145],[98.99391174316435,29.67295265197771],[99.05204010009788,29.56004905700689],[99.0758743286135,29.296464920043945],[99.11231231689476,29.25111961364757],[98.96210479736345,29.14582633972179],[99.01165771484386,29.034524917602653],[98.9209289550783,28.978324890136772],[98.90444946289091,28.804208755493164],[98.84078216552729,28.81069183349615],[98.77833557128928,29.003118515014933],[98.6559143066409,28.977781295776477],[98.6465454101563,28.886396408081165],[98.68777465820341,28.734224319458065],[98.59285736084001,28.673072814941573],[98.62803649902366,28.493793487548885],[98.75309753417969,28.33836174011236],[98.71213531494146,28.23954391479498],[98.39566802978516,28.112482070923132],[98.37372589111328,28.255189895629993],[98.27863311767607,28.393327713012695],[98.2023315429688,28.344818115234542],[98.26612854003923,28.24566650390625],[98.1647109985352,28.203407287597713],[98.14321136474636,28.04865264892578],[98.15088653564464,28.113918304443303],[97.90506744384783,28.37210273742687],[97.79055786132841,28.344070434570312],[97.71797943115234,28.503860473632923],[97.5485305786134,28.495832443237475],[97.47708129882812,28.369539260864315],[97.46086120605467,28.268100738525387],[97.35135650634783,28.234300613403544],[97.12593841552734,28.356220245361328],[96.99649810791021,28.31623077392578],[96.89866638183622,28.385900497436808],[96.77437591552751,28.37407112121582],[96.66456604003906,28.46577072143583],[96.37094116210947,28.394300460815543],[96.40077209472656,28.562370300293026],[96.58593750000017,28.721588134765682],[96.60838317871122,28.798070907592827],[96.52121734619169,28.965209960937784],[96.43579101562511,29.03758811950689],[96.34670257568388,29.032268524170036],[96.2281494140625,28.929330825805664],[96.15039062500021,29.05314064025885],[96.21749877929693,29.138099670410153],[96.34635925292962,29.17103004455572],[96.39280700683616,29.25650024414074],[96.23416900634794,29.243459701538196],[96.09281921386747,29.456430435180778],[95.9571075439453,29.38266754150413],[95.77762603759766,29.35639953613287],[95.58580017089848,29.217992782592773],[95.54502868652372,29.215589523315487],[95.45433807373047,29.03699111938482],[95.2501068115235,29.068571090698352],[95.25076293945324,29.109880447387813],[94.87180328369156,29.184289932251147],[94.62815856933622,29.348590850830078],[94.55789947509766,29.22891044616705],[94.43118286132805,29.22682189941406],[94.35016632080078,29.15020942688011],[94.21469116210947,29.084089279174805],[94.15513610839872,28.954761505127006],[93.99491119384771,28.841369628906303],[93.93456268310545,28.67709922790533],[93.84403991699224,28.707389831542912],[93.606986999512,28.655878067016655],[93.4955062866211,28.68402290344238],[93.33230590820341,28.633680343628043],[93.19375610351561,28.318040847778374],[93.02191162109375,28.299930572509762],[92.89525604248047,28.20461082458496],[92.7830276489259,28.183740615844727],[92.66293334960936,28.062770843505973],[92.739486694336,27.989410400390906],[92.56069183349626,27.82104110717779],[92.30738830566423,27.779239654541016],[92.25515747070312,27.862169265747067],[92.15609741210932,27.83702087402355],[92.05539703369135,27.75913047790533],[91.87864685058594,27.721839904785266],[91.82794952392601,27.807550430297795],[91.70957183837902,27.813289642334098],[91.6257934570313,27.89198493957525],[91.48600769042997,27.946329116821346],[91.46733093261747,28.00578117370617],[91.31130218505888,28.064329147338977],[91.20848083496122,27.988225936889762],[90.9805450439456,28.002061843872184],[90.93096923828153,28.043130874633786],[90.68881988525408,28.077556610107422],[90.59156036376953,28.02525138854992],[90.50657653808622,28.06843948364263],[90.3819351196289,28.061439514160156],[90.2960586547851,28.157180786132812],[90.12445068359375,28.14297866821289],[89.86026763916033,28.23016929626465],[89.71891021728533,28.174335479736442],[89.6138763427735,28.170415878296012],[89.46048736572283,28.037160873413086],[89.38732147216803,27.890411376953182],[89.2246780395509,27.78155136108404],[89.16954040527372,27.66936683654791],[89.03395080566418,27.5795955657959],[88.96806335449223,27.404869079589787],[88.88986206054693,27.336400985717773],[88.809326171875,27.405189514160437],[88.76706695556669,27.564960479736442],[88.8466110229495,27.668899536132812],[88.88018798828153,27.895240783691346],[88.84088134765653,27.991001129150447],[88.75108337402355,28.073312759399414],[88.5748367309573,28.085609436035323],[88.38880157470709,27.97784042358404],[88.24388885498075,27.948539733886776],[88.13906097412126,27.963479995727592],[88.03041839599632,27.905515670776367],[87.86851501464872,27.910615921020508],[87.726615905762,27.805114746093807],[87.58131408691418,27.861755371093807],[87.42174530029297,27.86026382446289],[87.32031250000023,27.825510025024414],[87.12883758544928,27.833919525146428],[87.04161834716803,27.950115203857422],[86.79254913330101,28.01871299743658],[86.69151306152372,28.108438491821346],[86.5788040161134,28.11266517639166],[86.44483184814459,27.905500411987248],[86.23981475830084,27.972814559936637],[86.1995162963867,28.138015747070426],[86.09291839599615,28.033016204834098],[86.12631988525413,27.92737197875988],[86.06741333007841,27.89951515197754],[85.89803314209013,28.066932678222656],[85.85067749023443,28.183111190795955],[85.66431427001953,28.304716110229663],[85.50921630859392,28.33301544189453],[85.25740051269543,28.29422760009777],[85.11038208007828,28.3467960357666],[85.12802886962896,28.487722396850643],[85.19985961914062,28.627033233642578],[85.0607986450197,28.682334899902404],[84.95107269287121,28.580038070678768],[84.85931396484403,28.5703144073488],[84.70301055908203,28.634365081787166],[84.6285705566408,28.736415863037166],[84.49398803710942,28.73465347290045],[84.41109466552763,28.853418350219727],[84.22260284423834,28.91559982299805],[84.25003814697271,29.03713607788086],[84.16603088378899,29.19396972656267],[84.20318603515652,29.240074157714954],[83.96481323242205,29.33131599426281],[83.8144607543948,29.301618576050085],[83.63550567626976,29.158428192138672],[83.53807067871122,29.2037868499757],[83.44040679931646,29.30871772766119],[83.41548156738276,29.421415328979602],[83.28421783447294,29.49870872497553],[83.19882202148455,29.611118316650447],[83.07142639160173,29.609912872314453],[82.91691589355486,29.70631599426264],[82.76481628417974,29.73111534118658],[82.69873046875017,29.855230331420895],[82.60415649414062,29.88915634155273],[82.38481140136719,30.025733947754016],[82.1725463867188,30.067626953125053],[82.11191558837913,30.345615386962944],[82.00005340576189,30.320764541626033],[81.63581848144537,30.445116043090874],[81.54931640625011,30.3721160888673],[81.40892028808622,30.420015335083118],[81.42466735839848,30.304491043090817],[81.39535522460966,30.206050872802848],[81.28852081298851,30.114337921142695],[81.2758178710937,30.044515609741268],[81.13436889648443,30.016540527344034],[81.01097869873053,30.26279067993164],[80.81128692626959,30.31998062133789],[80.73129272460955,30.402219772338814],[80.59355926513666,30.48223114013672],[80.53058624267607,30.46108818054205],[80.27799987792991,30.574480056762752],[80.21096038818376,30.582300186157283],[80.23726654052729,30.74065971374517],[80.15937042236351,30.812089920044002],[79.87998962402372,30.925279617309684],[79.74559020996111,31.006151199340934],[79.5848159790039,30.943990707397518],[79.49706268310564,31.041362762451175],[79.2996215820312,31.149240493774588],[79.24809265136747,31.296619415283256],[79.1288604736331,31.43873023986828],[79.05677795410185,31.472259521484485],[78.98056030273453,31.356981277465817],[78.87953948974632,31.270719528198295],[78.79547882080107,31.452762603759766],[78.72126007080105,31.54095077514654],[78.82688903808616,31.627990722656246],[78.73439788818365,31.691980361938533],[78.6913528442384,31.79335021972656],[78.73706817626959,32.00408172607422],[78.57431030273438,32.15861892700207],[78.59291076660183,32.218669891357706],[78.4643173217774,32.277778625488274],[78.51876068115251,32.41849899292015],[78.43811035156267,32.45639038085943],[78.41223907470726,32.556060791015625],[78.63233947753929,32.61106109619146],[78.73645019531256,32.69593048095709],[78.78032684326176,32.598320007324276],[78.78118133544933,32.47529983520508],[78.97096252441418,32.34428024291992],[79.06754302978516,32.384979248046875],[79.20295715332048,32.510829925537166],[79.34697723388672,32.52664184570323],[79.54535675048834,32.60736083984392],[79.54052734375017,32.74869155883795],[79.36503601074213,32.9569206237793],[79.40983581542997,33.178771972656364],[79.14144134521511,33.20009994506835],[79.06659698486327,33.29589080810558],[78.82325744628912,33.48348999023443],[78.70929718017572,33.6796112060548],[78.77522277832037,33.746219635009815],[78.71724700927763,33.890480041503906],[78.76362609863308,34.001510620117244],[78.72923278808615,34.09569931030285],[78.95619964599615,34.217830657958984],[78.9934005737307,34.28874206542969],[78.92743682861357,34.37163543701183],[79.03726196289068,34.3362655639649],[79.07736206054716,34.415466308593864],[79.22739410400389,34.41580200195318],[79.50239562988298,34.456565856933594],[79.67353057861334,34.452995300293026],[79.79914855957026,34.480712890625114],[79.91581726074223,34.7082405090332],[79.86662292480497,34.749565124511776],[79.89976501464848,34.86171340942394],[79.99201965332048,34.86211013793957],[80.05039978027344,35.060012817382756],[80.14865112304692,35.09882354736334],[80.29506683349604,35.26585388183594],[80.29357147216814,35.360706329345646],[80.43515777587896,35.447147369384766],[80.52110290527361,35.45596694946295],[80.6871261596682,35.339969635009766],[80.84226989746105,35.3464241027832],[81.03451538085966,35.312324523925895],[81.05199432373051,35.40310668945323],[81.21689605712908,35.32008361816412],[81.44589996337919,35.354331970214844],[81.5320663452149,35.25843429565441],[81.68378448486338,35.23654556274413],[81.85121917724638,35.25978469848644],[82.04818725585943,35.363407135009766],[82.0455856323245,35.44977569580084],[82.32532501220709,35.56008911132824],[82.40589904785183,35.699996948242244],[82.62599182128935,35.69311141967784],[82.72863769531261,35.63856506347656],[82.78639221191435,35.686157226562614],[82.96472167968778,35.66818237304693],[82.99623870849621,35.485298156738395],[83.12372589111328,35.39918899536144],[83.2394256591798,35.420680999755916],[83.53900146484398,35.342594146728516],[83.88502502441435,35.366985321045036],[84.06267547607439,35.407478332519645],[84.09380340576172,35.36454010009771],[84.33398437500023,35.41498184204107],[84.44983673095696,35.47875976562506],[84.4456253051759,35.543003082275504],[84.83635711669928,35.640121459960994],[85.03217315673845,35.747024536132926],[85.26630401611334,35.78048706054693],[85.61204528808594,35.65629577636719],[85.69716644287132,35.75167465209972],[85.9533157348635,35.78454971313476],[86.05230712890648,35.84610748291021],[86.17725372314459,36.03277206420904],[86.1957473754885,36.12948608398437],[86.39032745361357,36.207294464111385],[86.67237091064459,36.23704910278325],[86.74362945556658,36.29245376586914],[86.99362182617216,36.30913543701166],[87.14658355712919,36.29771804809576],[87.3761291503908,36.41680145263677],[87.55146789550787,36.342540740966854],[87.72917175292986,36.385295867920036],[87.90692138671892,36.37609100341797],[87.97315216064453,36.436103820800895],[88.13172912597685,36.427383422851506],[88.23899078369158,36.468994140625],[88.46800231933622,36.48248672485357],[88.57082366943388,36.461677551269645],[88.62131500244163,36.389949798583984],[88.76565551757812,36.30178070068365],[88.93024444580095,36.3599739074707],[89.16053009033226,36.24711990356451],[89.23417663574247,36.29521942138672],[89.48770904541027,36.15145492553722],[89.73124694824247,36.08474349975586]]]},"properties":{"ID_0":49,"ISO":"CN-54","NAME_0":"China","ID_1":29,"NAME_1":"Xizang","TYPE_1":"Zìzhìqu","ENGTYPE_1":"Autonomous Region","NL_NAME_1":"西藏自治區|西藏自治区","VARNAME_1":"Tibet|Xīzàng"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.30024719238298,27.709112167358626],[105.24489593505854,27.5604190826416],[105.23271179199236,27.4316349029541],[105.07233428955077,27.42026519775402],[104.86380004882807,27.293619155883846],[104.7346649169923,27.344867706298942],[104.61405944824224,27.312002182007063],[104.48960113525406,27.413248062134073],[104.3401107788086,27.46142768859863],[104.25457763671886,27.31318664550781],[104.17899322509771,27.27336311340332],[103.92717742919922,27.441984176635856],[103.82901000976567,27.267192840576456],[103.70276641845732,27.14001274108892],[103.63481140136741,27.11949157714855],[103.75336456298845,26.962678909301815],[103.7624588012698,26.868497848510742],[103.70027923584013,26.821123123168945],[103.7656021118164,26.735904693603516],[103.74365234375016,26.635738372802905],[103.81132507324212,26.53918838500988],[104.0076751708985,26.51918411254877],[104.12743377685547,26.64672660827642],[104.30657196044928,26.618005752563477],[104.41782379150419,26.711545944213867],[104.48223114013678,26.58381271362316],[104.55432128906256,26.591611862182674],[104.67794036865257,26.37670707702648],[104.5381469726563,26.25266838073736],[104.5228271484375,26.113374710083065],[104.46604156494163,26.020044326782227],[104.40510559082047,25.804899215698356],[104.30797576904324,25.658769607543945],[104.42408752441412,25.583690643310543],[104.43321990966803,25.52098464965826],[104.55878448486357,25.52507972717285],[104.54013061523432,25.411338806152344],[104.64119720458994,25.358638763427788],[104.65016174316418,25.298894882202262],[104.75211334228521,25.2172470092774],[104.66259765625016,25.073026657104606],[104.70897674560545,24.998239517211914],[104.54479217529301,24.826942443847656],[104.53002166748041,24.734367370605582],[104.50005340576183,24.59066390991205],[104.60913848876982,24.38091468811041],[104.71868896484392,24.34291648864757],[104.76401519775419,24.461069107055778],[104.97734069824219,24.415878295898438],[105.03990936279295,24.444688796997184],[105.19375610351574,24.329828262329215],[105.25254058837908,24.075328826904293],[105.3184204101563,24.121213912963924],[105.40964508056669,24.04160308837902],[105.4925308227539,24.028812408447266],[105.53104400634766,24.131656646728572],[105.62133026123053,24.134126663208065],[105.64262390136719,24.06056213378906],[105.76200866699236,24.076547622680778],[105.838134765625,24.031015396118164],[105.90697479248064,24.117866516113335],[105.99864959716825,24.13204383850109],[106.18795013427734,23.83817481994623],[106.05941772460943,23.490928649902457],[105.88883972167986,23.527698516845646],[105.81051635742193,23.504873275756836],[105.6827316284182,23.373731613159233],[105.5869979858399,23.31438446044922],[105.5384597778322,23.193382263183707],[105.3244705200197,23.39269065856945],[105.212257385254,23.2672500610351],[105.08943176269543,23.270870208740288],[105.024658203125,23.22073936462408],[104.8009872436524,23.122470855712947],[104.83001708984402,22.98573112487793],[104.72223663330107,22.820240020752067],[104.5472412109375,22.839508056640682],[104.39894866943386,22.702264785766655],[104.2777709960938,22.74012947082519],[104.26963806152372,22.837600708007866],[104.11379241943388,22.811098098754883],[104.0383529663086,22.722509384155273],[104.00718688964872,22.571479797363278],[103.96203613281267,22.506719589233512],[103.63845825195317,22.793989181518498],[103.5316009521485,22.594932556152344],[103.33245086669922,22.80796051025385],[103.27954864501964,22.67908096313488],[103.19362640380865,22.649370193481445],[103.18274688720709,22.55914115905773],[103.0245513916015,22.44621086120611],[102.92182922363287,22.507730484008846],[102.86106109619169,22.611850738525387],[102.50965118408209,22.77812194824224],[102.45400238037115,22.756731033325195],[102.40431976318376,22.63443946838373],[102.27440643310564,22.50007057189947],[102.26895904541037,22.424240112304684],[102.02439880371094,22.456890106201282],[101.86360931396484,22.39015960693365],[101.80690002441399,22.485900878906303],[101.69529724121104,22.474269866943303],[101.6797714233399,22.37304115295416],[101.61871337890625,22.274351119995174],[101.58200073242199,22.102310180664062],[101.62166595459013,21.976160049438587],[101.7814559936524,21.832490921020565],[101.75076293945318,21.738540649414062],[101.82670593261747,21.602979660034237],[101.77822113037115,21.513320922851562],[101.74030303955107,21.314830780029297],[101.84710693359402,21.25210952758789],[101.78785705566423,21.14003181457514],[101.70564270019548,21.14932060241699],[101.57991790771477,21.244949340820312],[101.38620758056639,21.22165107727062],[101.29039764404291,21.17806053161632],[101.23803710937523,21.25073051452648],[101.25984954833996,21.364160537719727],[101.19708251953152,21.416759490966854],[101.21362304687523,21.561260223388672],[101.12123870849625,21.65455818176275],[101.12654113769526,21.77544021606445],[101.01802062988276,21.712150573730582],[100.8918228149414,21.684900283813533],[100.71866607666037,21.50843048095714],[100.57778930664074,21.45025062561041],[100.36158752441412,21.536582946777344],[100.20258331298857,21.43935012817377],[100.11479187011724,21.586610794067383],[100.14003753662138,21.693990707397575],[99.98615264892572,21.718660354614315],[99.94966125488308,21.866020202636776],[100,21.97711753845215],[99.97059631347662,22.052030563354432],[99.85661315917979,22.023740768432674],[99.6526107788086,22.104871749877873],[99.21894073486334,22.118749618530387],[99.16896057128929,22.15524291992199],[99.23683929443365,22.253429412841797],[99.2896499633789,22.403280258178768],[99.38951873779308,22.49942016601562],[99.32546234130876,22.75107002258306],[99.45101165771484,22.85798263549816],[99.51864624023449,23.003999710083065],[99.51126861572264,23.083738327026364],[99.36086273193388,23.133808135986442],[99.10981750488304,23.093709945678768],[99.0405502319336,23.165739059448185],[98.89743041992182,23.21968078613287],[98.9307479858399,23.274179458618164],[98.92304992675781,23.42311286926281],[98.81105041503923,23.551168441772575],[98.88289642334011,23.59087944030756],[98.8036193847658,23.775249481201286],[98.70450592041021,23.789779663085994],[98.69281005859392,23.920351028442496],[98.84646606445341,24.13429069519037],[98.60822296142607,24.094741821289116],[98.53591918945317,24.129579544067496],[98.34590148925786,24.102199554443303],[98.23092651367209,24.11689949035644],[98.02976226806652,24.071229934692496],[97.88526153564453,24.010219573974723],[97.6731262207033,23.862070083618164],[97.5340881347658,23.94261169433605],[97.63262939453153,23.99999809265148],[97.73426818847662,24.117031097412223],[97.76146697998047,24.278789520263786],[97.67356109619146,24.453189849853516],[97.55757904052733,24.495992660522518],[97.57589721679688,24.76333045959478],[97.68678283691435,24.82523918151861],[97.76772308349626,24.823471069335934],[97.71743774414067,24.980840682983455],[97.84503173828129,25.267892837524528],[97.94904327392605,25.223720550537053],[98.1418762207034,25.40410041809076],[98.1826629638674,25.62532043457031],[98.32022857666043,25.546270370483512],[98.36915588378906,25.57299995422369],[98.47576904296874,25.797702789306637],[98.55204772949236,25.848430633544922],[98.63758087158209,25.804229736328125],[98.71266174316406,25.898082733154354],[98.61067199707054,25.98987007141113],[98.57286071777344,26.11908149719244],[98.73275756835943,26.1878604888916],[98.67279815673827,26.249950408935604],[98.73718261718778,26.3845405578615],[98.78105926513683,26.619880676269588],[98.73362731933611,27.005161285400504],[98.68685150146496,27.21372985839855],[98.7321701049807,27.317199707031477],[98.69644927978516,27.391059875488338],[98.69291687011747,27.58967018127447],[98.58091735839865,27.609790802002067],[98.46758270263672,27.69016265869152],[98.4247207641602,27.58872985839838],[98.31881713867193,27.54277038574213],[98.29535675048834,27.639631271362305],[98.22135925292974,27.732229232788143],[98.20735168457026,27.905109405517578],[98.13844299316435,27.96882057189947],[98.14321136474636,28.04865264892578],[98.1647109985352,28.203407287597713],[98.26612854003923,28.24566650390625],[98.2023315429688,28.344818115234542],[98.27863311767607,28.393327713012695],[98.37372589111328,28.255189895629993],[98.39566802978516,28.112482070923132],[98.71213531494146,28.23954391479498],[98.75309753417969,28.33836174011236],[98.62803649902366,28.493793487548885],[98.59285736084001,28.673072814941573],[98.68777465820341,28.734224319458065],[98.6465454101563,28.886396408081165],[98.6559143066409,28.977781295776477],[98.77833557128928,29.003118515014933],[98.84078216552729,28.81069183349615],[98.90444946289091,28.804208755493164],[98.9209289550783,28.978324890136772],[99.01165771484386,29.034524917602653],[98.96210479736345,29.14582633972179],[99.11231231689476,29.25111961364757],[99.12959289550798,28.904745101928825],[99.10897827148453,28.856487274169922],[99.19222259521507,28.496875762939567],[99.17343902587908,28.415414810180774],[99.30883026123058,28.22509956359863],[99.4205627441409,28.28846740722662],[99.38807678222662,28.396894454956055],[99.3909606933596,28.548915863037166],[99.51906585693375,28.585510253906193],[99.53871154785172,28.68799209594738],[99.62186431884783,28.81273460388189],[99.72283935546898,28.83901786804199],[99.73358154296903,28.732809066772514],[99.83236694335966,28.667627334594723],[99.83000946044926,28.60941123962408],[99.9564437866211,28.57198143005371],[100.05937957763683,28.376356124877987],[100.17864990234375,28.315002441406364],[100.16327667236334,28.216581344604435],[100.02705383300787,28.17434120178217],[100.08011627197271,28.04192543029796],[100.18659973144541,27.955966949463004],[100.32546234130854,27.72199058532726],[100.44800567626959,27.872024536132812],[100.54777526855491,27.815065383911357],[100.67755889892572,27.926382064819393],[100.71102905273443,27.805879592895508],[100.8296508789063,27.684648513794],[101.0467147827149,27.222856521606502],[101.16567230224626,27.20093345642107],[101.13964843750006,27.033498764038082],[101.36657714843756,26.887445449829045],[101.37313079834013,26.765348434448242],[101.48163604736334,26.680433273315426],[101.39495849609375,26.559118270874023],[101.6395034790039,26.388837814331055],[101.62286376953142,26.23652648925787],[101.7342605590822,26.22133445739746],[101.81679534912121,26.090187072753903],[102.12990570068365,26.09490966796892],[102.25107574462919,26.222623825073356],[102.4005355834961,26.30599975585949],[102.62078857421892,26.345222473144588],[102.59899139404325,26.253160476684624],[102.70614624023443,26.217643737793026],[102.77985382080095,26.306201934814453],[102.98928070068376,26.36440086364746],[103.01662445068365,26.591283798217887],[102.97955322265642,26.799079895019645],[102.89497375488287,26.91550254821783],[102.86739349365229,27.032140731811523],[102.90791320800787,27.15058326721197],[102.88175964355469,27.303371429443587],[102.98589324951172,27.37384033203125],[103.13661956787132,27.425537109375227],[103.27442169189447,27.632938385009762],[103.4399032592774,27.75361633300787],[103.50244140625023,27.84023094177257],[103.49340057373064,28.0204181671142],[103.42749023437523,28.055618286132926],[103.56365203857428,28.228448867798136],[103.69735717773443,28.20534324646013],[103.8640975952149,28.306711196899357],[103.78363800048857,28.518131256103516],[103.87841033935553,28.62539100646984],[104.26107025146496,28.6456298828125],[104.25334167480474,28.397077560424805],[104.43637847900385,28.275659561157223],[104.45614624023443,28.17436408996582],[104.3845291137697,28.06200408935547],[104.31070709228533,28.03518295288086],[104.56137847900396,27.852773666381893],[104.72583007812506,27.900220870971676],[104.875717163086,27.912342071533203],[104.97012329101568,28.059192657470874],[105.05834197998058,28.099634170532223],[105.17595672607443,28.068841934204215],[105.30024719238298,27.709112167358626]]]},"properties":{"ID_0":49,"ISO":"CN-53","NAME_0":"China","ID_1":30,"NAME_1":"Yunnan","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"雲南|云南","VARNAME_1":"Yúnnán"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.23542022705078,28.21820068359375],[121.27847290039072,28.085140228271484],[121.1843032836914,28.043750762939453],[121.15125274658214,28.138469696045203],[121.23542022705078,28.21820068359375]]],[[[121.9487533569336,30.184860229492188],[122.09735870361327,30.15902519226069],[122.28736114501964,30.066810607910153],[122.33403015136717,30.015970230102592],[122.29708099365256,29.927370071411246],[122.1634750366212,29.99430465698248],[122.02401733398449,29.993461608887003],[121.9487533569336,30.184860229492188]]],[[[121.82986450195312,29.54458427429205],[121.9504165649415,29.512359619140625],[121.97624969482422,29.468194961547905],[121.91430664062524,29.349582672119197],[121.96901702880882,29.26457977294922],[121.93541717529298,29.194311141967773],[121.8090286254885,29.157083511352596],[121.66152954101564,29.172639846801697],[121.59819793701172,29.244863510131836],[121.52569580078125,29.198194503784237],[121.68235778808605,29.01736259460472],[121.63764190673861,28.75152969360363],[121.51013946533226,28.664861679077145],[121.57569122314453,28.4545841217041],[121.65069580078136,28.302089691162166],[121.4773559570317,28.332918167114315],[121.358467102051,28.13904953002941],[121.27540588378919,28.20514106750494],[121.21514129638682,28.32263946533214],[121.01847076416016,28.12902832031278],[120.95486450195312,27.98097229003912],[120.87959289550827,27.998750686645565],[120.86597442626953,27.867082595825195],[120.68374633789072,27.698474884033317],[120.60736083984398,27.57152938842773],[120.68152618408203,27.47236061096197],[120.53263854980514,27.22458267211914],[120.43459320068382,27.17173385620117],[120.3465499877933,27.395959854126144],[120.24364471435558,27.434686660766598],[120,27.382801055908317],[119.87128448486328,27.305782318115178],[119.73795318603514,27.367782592773494],[119.70047760009778,27.51910972595215],[119.55113983154308,27.67979621887207],[119.46971893310558,27.542411804199215],[119.3717727661135,27.53801727294922],[119.23970794677746,27.424690246582145],[119.1194076538086,27.442722320556584],[119.00635528564476,27.50000953674322],[118.91139221191452,27.46161270141596],[118.86888122558604,27.537115097045955],[118.8965301513673,27.65051651000982],[118.82616424560547,27.88200569152832],[118.72288513183592,27.978706359863338],[118.7124252319337,28.06279945373535],[118.79248046874999,28.123294830322266],[118.8037033081058,28.229173660278377],[118.69368743896483,28.310081481933707],[118.60340881347666,28.257303237914982],[118.47968292236327,28.242441177368335],[118.42427062988293,28.292282104492244],[118.46610260009798,28.47573852539068],[118.4088363647461,28.575767517089957],[118.43223571777355,28.674160003662106],[118.36033630371116,28.811964035034237],[118.18122100830088,28.982320785522514],[118.09647369384764,28.993619918823356],[118.04351043701182,29.09466934204113],[118.03459930419932,29.210161209106726],[118.20594787597656,29.350814819336165],[118.18945312500023,29.39522171020536],[118.30193328857422,29.477258682251147],[118.47203063964844,29.506912231445426],[118.57234954833984,29.635986328125053],[118.72238159179733,29.7166423797608],[118.74845886230491,29.83928489685064],[118.89150238037132,29.951297760009762],[118.86558532714855,30.10835075378418],[118.87991333007834,30.32014274597196],[118.94409942626952,30.363153457641882],[119.05308532714865,30.308387756347773],[119.20927429199241,30.29532051086443],[119.32678985595727,30.37599563598644],[119.32295989990246,30.53394317626976],[119.23678588867232,30.551254272460934],[119.3431854248048,30.67206382751476],[119.41265869140635,30.647205352783484],[119.57026672363315,30.838838577270565],[119.554443359375,30.889356613159123],[119.6291732788087,31.021799087524524],[119.63211059570311,31.139343261718803],[119.7831954956057,31.18224334716797],[119.90895080566418,31.17524719238287],[119.991981506348,31.026542663574162],[120.15082550048828,30.936313629150447],[120.36167144775392,30.951988220214844],[120.43340301513695,30.90119361877447],[120.50706481933615,30.76718521118175],[120.58148193359386,30.8590545654298],[120.70520782470727,30.90073013305675],[120.70153045654297,30.972934722900447],[120.89511871337892,31.01197814941412],[120.9938354492192,31.004228591919063],[120.98263549804699,30.832660675048768],[121.0775604248049,30.851522445678768],[121.19924926757835,30.78400611877441],[121.26490020751953,30.689582824707255],[121.11207580566428,30.588470458984375],[121.00818634033216,30.57125091552729],[120.9334716796875,30.47680282592773],[120.90791320800781,30.372360229492184],[120.74874877929732,30.327083587646484],[120.68958282470714,30.261810302734432],[120.90178680419956,30.16597175598156],[121.17597198486351,30.32847213745123],[121.25680541992209,30.34347152709961],[121.42514038085949,30.288194656372355],[121.5929183959963,30.10847282409679],[121.67708587646486,29.988193511962947],[121.91401672363315,29.92291831970215],[121.99624633789064,29.82236099243164],[121.86042022705112,29.735139846801758],[121.700965881348,29.560689926147404],[121.82986450195312,29.54458427429205]]]]},"properties":{"ID_0":49,"ISO":"CN-33","NAME_0":"China","ID_1":31,"NAME_1":"Zhejiang","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"浙江","VARNAME_1":"Zhèjiāng"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[121.63599694100014,25.222805080000114],[121.71851647200015,25.15200429900011],[121.89283287900003,25.113674221000167],[121.9057723320002,24.95010000200014],[121.82349694100014,24.854925848000164],[121.81495201900032,24.644354559000192],[121.85596764400032,24.550523179000123],[121.78003991000003,24.43268463700008],[121.77271569100003,24.30923086100006],[121.66285241000014,24.193101304000038],[121.60743248800014,24.07684967700004],[121.62891686300009,24.026190497000158],[121.52149498800031,23.658677476000094],[121.46216881600026,23.34300364800015],[121.4088647800001,23.254584052000126],[121.40007571700005,23.145493882000153],[121.29957116000003,22.95917389500019],[121.19027754000001,22.843166408000144],[121.14144941500001,22.741766669000185],[121.02100670700008,22.647894598000136],[120.9482528000002,22.52680084800005],[120.87501061300014,22.289252020000134],[120.87924238400001,22.055812893000052],[120.84156334700009,21.925482489000103],[120.70435631600014,21.98139069200016],[120.69695071700016,22.113226630000156],[120.62126712300017,22.29507070500017],[120.51197350400025,22.42475006700016],[120.33122806100027,22.51972077000019],[120.17554772200015,22.88410065300016],[120.17025800900024,23.013373114000046],[120.05941816500012,23.151027736000174],[120.1301491600002,23.360960244000154],[120.12426153300032,23.520020550000083],[120.18921959700026,23.774807033000116],[120.29224694100003,23.911932684000192],[120.34009850400014,24.02179596600007],[120.4931746750002,24.23065827000005],[120.57081139400032,24.404933986000202],[120.64893639400009,24.48387278900023],[120.70215905000032,24.60700104400013],[120.84750410200013,24.710842190000108],[120.90235436300031,24.836818752000056],[121.05933678500003,25.050238348000164],[121.37875410200007,25.157945054000038],[121.43628991000026,25.24144114800012],[121.53972415500004,25.28742096600007],[121.63599694100014,25.222805080000114]]]},"properties":{"ID_0":49,"ISO":"CN-71","NAME_0":"China","ID_1":32,"NAME_1":"Taiwan","TYPE_1":"Shěng","ENGTYPE_1":"Province","NL_NAME_1":"台湾","VARNAME_1":"Táiwān"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.6094,22.4121],[114.5215,22.1484],[114.3457,22.1484],[113.9063,22.1484],[113.8184,22.1924],[113.9063,22.4121],[114.1699,22.5439],[114.3457,22.5439],[114.4336,22.5439],[114.4336,22.4121],[114.6094,22.4121]]]},"properties":{"ID_0":49,"ISO":"CN-91","NAME_0":"China","ID_1":33,"NAME_1":"Hong Kong","TYPE_1":"Tèbié Xíngzhèngqū","ENGTYPE_1":"Special Administrative Region","NL_NAME_1":"香港","VARNAME_1":"Xiānggǎng"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.5986,22.1649],[113.6096,22.1265],[113.5547,22.11],[113.5437,22.2034],[113.5767,22.2034],[113.5986,22.1649]]]},"properties":{"ID_0":49,"ISO":"CN-92","NAME_0":"China","ID_1":34,"NAME_1":"Macao","TYPE_1":"Tèbié Xíngzhèngqū","ENGTYPE_1":"Special Administrative Region","NL_NAME_1":"澳门","VARNAME_1":"Àomén"}}
+]}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson
new file mode 100644
index 0000000..4635d9a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson
@@ -0,0 +1,34 @@
+{
+"type": "FeatureCollection",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+                                                                                
+"features": [
+{ "type": "Feature", "properties": { "OBJECTID": "1", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "1", "NAME_1": "Ad Daqahliyah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0627><U+0644><U+062F><U+0642><U+0647><U+0644><U+064A><U+0629>", "VARNAME_1": "Al Daqahliyah|Dacahlia|Dagahlia|Dakahlieh|Dakahliya|Dakalieh|Daqaliya|Dakahlia|Dekahlia" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "2", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "2", "NAME_1": "Al Bahr al Ahmar", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+0628><U+062D><U+0631> <U+0627><U+0644><U+0623><U+062D><U+0645><U+0631>", "VARNAME_1": "Mar Rojo|Mar Vermelho|Mer Rouge|Red Sea" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "3", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "3", "NAME_1": "Al Buhayrah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0627><U+0644><U+0628><U+062D><U+064A><U+0631><U+0629>", "VARNAME_1": "Beheira|Behera|El Buhayra|Béhéra" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "4", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "4", "NAME_1": "Al Fayyum", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+0641><U+064A><U+0648><U+0645>", "VARNAME_1": "El Faiyum|el Fayoum|Faium|Faiyum|Fayum|Fayoum|Fayyum" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "5", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "5", "NAME_1": "Al Gharbiyah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+063A><U+0631><U+0628><U+064A><U+0629>", "VARNAME_1": "al-Garbiyah|El Gharbiya|Garbia|Gharbieh|Gharbiya|Gharbia" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "6", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "6", "NAME_1": "Al Iskandariyah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+0625><U+0633><U+0643><U+0646><U+062F><U+0631><U+064A><U+0629>", "VARNAME_1": "Alexandria|Alexandrie|El Iskandariya" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "7", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "7", "NAME_1": "Al Isma`iliyah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+0625><U+0633><U+0645><U+0627><U+0639><U+064A><U+0644><U+064A><U+0629>", "VARNAME_1": "As Ismailiyah|Ismailia|Ismaïlia|Isma'iliya" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "8", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "8", "NAME_1": "Al Jizah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "NA", "VARNAME_1": "El Giza|El Gizah|Gizeh|Giza|Guizèh" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "9", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "9", "NAME_1": "Al Minufiyah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+0645><U+0646><U+0648><U+0641><U+064A><U+0629>", "VARNAME_1": "Menoufieh|Menufia|Menufiya|Minufiya|Munufia|Menoufia|Minufia" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "10", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "10", "NAME_1": "Al Minya", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "NA", "VARNAME_1": "Minia|Minieh|Menia|Minya" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "11", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "11", "NAME_1": "Al Qahirah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "NA", "VARNAME_1": "Cairo|El Cairo|El Qahira|Le Caire" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "12", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "12", "NAME_1": "Al Qalyubiyah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+0642><U+0644><U+064A><U+0648><U+0628><U+064A><U+0629>", "VARNAME_1": "Caliubia|Kalioubieh|Kalioubiya|Qaliyubia|Qalyubiya|Kalyoubia|Kalyubia" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "13", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "13", "NAME_1": "Al Uqsur", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "NA", "VARNAME_1": "Luxor" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "14", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "14", "NAME_1": "Al Wadi al Jadid", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+0648><U+0627><U+062F><U+064A> <U+0627><U+0644><U+062C><U+062F><U+064A><U+062F><U+200E>", "VARNAME_1": "Al Wadi\/Al Jadid|El-Wadi El-Gidid|New Valley|Novo Vale|Ouadi El Guedid|Southern Desert" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "15", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "15", "NAME_1": "As Suways", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+0633><U+0648><U+064A><U+0633>", "VARNAME_1": "El Suweiz|Es Suweis|Suez" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "16", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "16", "NAME_1": "Ash Sharqiyah", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0627><U+0644><U+0634><U+0631><U+0642><U+064A><U+0629><U+200E>", "VARNAME_1": "Charkieh|Sharqia|Sharqiya|Sharquia|Sharkia" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "17", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "17", "NAME_1": "Aswan", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0623><U+0633><U+0648><U+0627><U+0646>", "VARNAME_1": "Assouan|Assuã|Assuán|Syene" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "18", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "18", "NAME_1": "Asyut", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "NA", "VARNAME_1": "Asyiut|Assiout|Assiut|Assyut|Asyout" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "19", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "19", "NAME_1": "Bani Suwayf", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0628><U+0646><U+0649> <U+0633><U+0648><U+064A><U+0641>", "VARNAME_1": "Beni Suwayf|Beni Souef|Beni Suef" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "20", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "20", "NAME_1": "Bur Sa`id", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0628><U+0648><U+0631><U+0633><U+0639><U+064A><U+062F>", "VARNAME_1": "Bur Said|Canal|Port Said|Port-Saïd" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "21", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "21", "NAME_1": "Dumyat", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "NA", "VARNAME_1": "Damietta|Damiette|Dumiat" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "22", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "22", "NAME_1": "Janub Sina'", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+062C><U+0646><U+0648><U+0628> <U+0633><U+064A><U+0646><U+0627><U+0621>", "VARNAME_1": "Janub Sina|Sina al-Janubiyah|Sina' al-Janubiyah|Sinai al Janubia|South Sinai|Sud Sinai" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "23", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "23", "NAME_1": "Kafr ash Shaykh", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0643><U+0641><U+0631> <U+0627><U+0644><U+0634><U+064A><U+062E>", "VARNAME_1": "Kafr-El-Sheikh|Kafr ash Shaikh|Kafr ash-Shayk|Kafr el Sheik|Kafr el Sheikh" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "24", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "24", "NAME_1": "Matrouh", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0645><U+0637><U+0631><U+0648><U+062D>", "VARNAME_1": "Marsa Matruh|Mersa Matruh|Western Desert|Matrouh" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "25", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "25", "NAME_1": "Qina", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0642><U+0646><U+0627>", "VARNAME_1": "Kena|Qena|Quena" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "26", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "26", "NAME_1": "Shamal Sina'", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "<U+0645><U+062D><U+0627><U+0641><U+0638><U+0629> <U+0634><U+0645><U+0627><U+0644> <U+0633><U+064A><U+0646><U+0627><U+0621>", "VARNAME_1": "Shamal Sina|Nord Sinaï|North Sinai|Sina ash-Shamaliyah|Sinai ash Shamaliya" }, "geometry": null },
+{ "type": "Feature", "properties": { "OBJECTID": "27", "ID_0": "69", "ISO": "EGY", "NAME_0": "Egypt", "ID_1": "27", "NAME_1": "Suhaj", "TYPE_1": "Muhafazah", "ENGTYPE_1": "Governorate", "NL_NAME_1": "NA", "VARNAME_1": "Girga|Girgeh|Sawhaj|Sohag|Suhag" }, "geometry": null }
+]
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson
new file mode 100644
index 0000000..bffaa86
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson
@@ -0,0 +1,98 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.635286331176758,49.05416870117199],[7.671083927154541,49.04597091674805],[7.730602264404354,49.05445861816406],[7.766453742981013,49.04668045043957],[7.799933910369872,49.06416320800781],[7.867407798767147,49.03349304199219],[7.890090465545767,49.0479469299317],[7.91527080535883,49.041908264160206],[7.937040328979606,49.05623245239252],[7.976319313049316,49.02830123901373],[8.051136016845703,49.01275634765631],[8.091376304626579,48.98925781250006],[8.19351768493658,48.976474761963],[8.197396278381404,48.95710372924805],[8.141568183898926,48.896072387695426],[8.121443748474178,48.86494064331055],[8.101068496704102,48.815814971923885],[8.062413215637207,48.78918838500988],[8.031856536865234,48.78814697265619],[8.017477035522518,48.762752532958984],[7.970248699188289,48.75622940063476],[7.961741924285889,48.72025680541998],[7.896251678466797,48.6672096252442],[7.845043659210204,48.645530700683594],[7.800177097320614,48.58316802978515],[7.805161952972468,48.513500213623104],[7.766868114471549,48.48680114746094],[7.766161918640136,48.46397399902349],[7.733546733856258,48.39868545532232],[7.730966091156062,48.382205963134766],[7.745231628418083,48.32982635498047],[7.693936824798699,48.302120208740234],[7.666151046752987,48.22109985351557],[7.641849994659537,48.20399475097656],[7.599499702453612,48.15563201904308],[7.598897457122859,48.13542938232433],[7.577859401702937,48.12139129638672],[7.518594741821346,48.12776565551758],[7.520334243774471,48.1494979858399],[7.47013950347906,48.16017532348633],[7.476943492889518,48.2035369873048],[7.35151195526123,48.24745559692394],[7.313147544860897,48.252143859863395],[7.299948692321833,48.28285598754882],[7.274333477020264,48.305076599121094],[7.198282241821233,48.310478210449276],[7.178990840911979,48.32862091064464],[7.117123603820801,48.33413314819336],[7.075964450836238,48.352584838867244],[7.100822448730469,48.37374496459972],[7.095686912536678,48.426532745361385],[7.125453948974723,48.499603271484375],[7.123165130615348,48.513591766357365],[7.077105522155989,48.51633453369151],[7.07936000823986,48.536418914795036],[7.168498992919978,48.528694152832145],[7.193254470825251,48.54924392700207],[7.21657133102417,48.552364349365234],[7.25628185272211,48.58867645263671],[7.280715942382869,48.63721847534179],[7.304355621338004,48.66020965576171],[7.26627588272106,48.66230010986328],[7.260134220123405,48.694713592529354],[7.308582782745418,48.76787948608398],[7.290898799896297,48.793907165527344],[7.245234966278132,48.81003189086913],[7.227121353149414,48.82846069335937],[7.203428268432674,48.826957702636776],[7.148854255676326,48.844596862793075],[7.147360801696834,48.82225036621105],[7.126799583435115,48.80115127563482],[7.087958335876408,48.80617141723627],[7.04711723327631,48.82063674926769],[7.055009841919059,48.864917755126896],[6.987973690033016,48.891368865966854],[6.957379817962646,48.89415740966808],[6.955067157745361,48.919960021972656],[6.977410316467285,48.93305587768555],[6.992516994476432,48.96052932739258],[7.032219409942627,48.95605087280285],[7.031687259674015,48.986366271972656],[7.052350997924862,49.008701324463004],[7.054912567138671,49.03062820434582],[7.078660011291446,49.050361633300895],[7.068600177764892,49.06338882446295],[7.099342346191463,49.077892303466854],[7.106357574463004,49.0453453063966],[7.12995100021385,49.0053596496582],[7.174240112304687,49.006366729736385],[7.209311485290527,48.98008728027344],[7.237987995147762,48.98765182495123],[7.293926715850887,48.972618103027344],[7.290202617645264,48.95651626586914],[7.326852798461914,48.94338226318371],[7.359096050262508,48.956470489501896],[7.379917621612605,48.95119857788086],[7.451631069183463,48.967971801757926],[7.536513805389404,48.9336395263673],[7.57992601394659,48.96161270141613],[7.588737010955754,48.99104690551758],[7.635286331176758,49.05416870117199]]]},"properties":{"ID_0":79,"ISO":"FR-67","NAME_0":"France","ID_1":1,"NAME_1":"Alsace","ID_2":1,"NAME_2":"Bas-Rhin","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Unterelsaá"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.577859401702937,48.12139129638672],[7.569315433502311,48.0806770324707],[7.568590164184626,48.036338806152344],[7.608582973480337,48.00032424926752],[7.622157096862792,47.97365951538085],[7.582633972168026,47.92988967895519],[7.582515239715689,47.89826202392584],[7.557729244232235,47.88094711303711],[7.562403202056942,47.841018676757805],[7.530228137969971,47.78344345092785],[7.548590183258113,47.735408782958984],[7.513751983642692,47.702819824218864],[7.524673938751163,47.660194396972656],[7.567355155944937,47.631736755371094],[7.593035697937068,47.60082244873041],[7.584266185760554,47.57571411132812],[7.517362594604549,47.54576873779297],[7.523452281951961,47.51704025268555],[7.507921218872127,47.4962272644043],[7.453484535217285,47.473575592041016],[7.42254638671875,47.44775390625006],[7.38629770278942,47.43196868896495],[7.338911056518668,47.44057083129883],[7.303975582122803,47.43825531005865],[7.247142314910945,47.421134948730575],[7.235901832580623,47.43687820434582],[7.174731731414908,47.44266891479492],[7.168905258178767,47.489501953125],[7.130345821380729,47.503025054931754],[7.142173290252742,47.52502441406256],[7.106215476989859,47.55133819580084],[7.085388183593807,47.593051910400504],[7.009212493896541,47.5993919372558],[7.005052566528433,47.619598388671925],[7.019805431365967,47.650680541992244],[7.045281887054499,47.67037582397461],[7.027565479278621,47.70536804199219],[7.03741788864147,47.721557617187436],[7.011684894561881,47.74163055419921],[6.974351882934513,47.75160217285162],[6.938450336456413,47.7711563110351],[6.864959716796989,47.78460693359381],[6.846179962158316,47.82294464111334],[6.896086215973128,47.832973480224666],[6.920047760009709,47.850288391113395],[6.898328304290828,47.888694763183594],[6.92751312255865,47.91213226318359],[6.920379638671874,47.945999145507926],[6.943508625030574,47.99873733520519],[7.002565860748291,48.023250579833984],[7.034357547759953,48.0753898620606],[7.051650047302303,48.082607269287166],[7.084163188934269,48.12922286987316],[7.059046268463192,48.139179229736264],[7.086996555328426,48.183753967285156],[7.106290340423698,48.19430923461914],[7.148723125457821,48.264339447021484],[7.198282241821233,48.310478210449276],[7.274333477020264,48.305076599121094],[7.299948692321833,48.28285598754882],[7.313147544860897,48.252143859863395],[7.35151195526123,48.24745559692394],[7.476943492889518,48.2035369873048],[7.47013950347906,48.16017532348633],[7.520334243774471,48.1494979858399],[7.518594741821346,48.12776565551758],[7.577859401702937,48.12139129638672]]]},"properties":{"ID_0":79,"ISO":"FR-68","NAME_0":"France","ID_1":1,"NAME_1":"Alsace","ID_2":2,"NAME_2":"Haut-Rhin","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Oberelsaá"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.253151893615779,45.444217681884815],[1.288270592689571,45.43352890014654],[1.260222077369804,45.40024948120117],[1.281683087349052,45.385089874267635],[1.323230504989738,45.383117675781364],[1.315957784652653,45.36117553710949],[1.285155534744263,45.352050781250114],[1.241603016853333,45.30130767822277],[1.227059960365352,45.271842956543026],[1.239384651184196,45.26044845581055],[1.2762850522995,45.25569915771496],[1.277687430381832,45.24208450317394],[1.233607888221798,45.22219467163091],[1.233455657959098,45.19842529296881],[1.272147893905696,45.20114517211914],[1.291399955749625,45.18564605712896],[1.254436254501343,45.15850448608409],[1.308754444122371,45.137016296386776],[1.320997476577759,45.14245223999029],[1.4130939245224,45.12491226196295],[1.392447471618652,45.105876922607536],[1.399564027786312,45.06118392944341],[1.448261499405021,45.01931381225597],[1.409130334854183,45.00672912597662],[1.414261221885738,44.97391510009771],[1.441561818122921,44.91878128051769],[1.421835780143851,44.89641189575201],[1.436070442199707,44.87298583984375],[1.405578136444149,44.863059997558594],[1.402507305145377,44.84904861450195],[1.365459203720093,44.84497070312506],[1.36410295963293,44.81156921386719],[1.30116593837738,44.797744750976676],[1.29715359210968,44.77696990966808],[1.321535348892269,44.7610969543457],[1.316050887107849,44.740375518798885],[1.287021398544255,44.71446228027343],[1.270040988922233,44.72208786010747],[1.224550008773917,44.684265136718864],[1.180560827255363,44.68268585205084],[1.146732687950134,44.67079544067394],[1.150893211364803,44.632854461670036],[1.075140833854675,44.57732391357421],[1.071130633354301,44.596229553222656],[1.012501597404423,44.61582946777337],[0.977296352386588,44.642990112304744],[0.927099049091396,44.63523483276367],[0.86999583244318,44.597316741943416],[0.835145711898804,44.60220336914068],[0.817003905773163,44.627010345458984],[0.835655510425568,44.63687896728521],[0.844563245773315,44.66583633422863],[0.828610479831809,44.68976974487305],[0.799457252025604,44.70078277587896],[0.778602540492955,44.684291839599666],[0.729133725166378,44.67599105834972],[0.65743404626852,44.6778564453125],[0.648099720478115,44.70217514038085],[0.576468050479889,44.69306182861339],[0.567171096801871,44.671512603759815],[0.546558022499141,44.6651496887207],[0.511835038661957,44.67776870727539],[0.470530122518539,44.66957855224621],[0.41695365309721,44.64521026611328],[0.366564273834285,44.661308288574276],[0.359541267156601,44.69131469726574],[0.336662083864326,44.73557281494152],[0.297325074672813,44.762294769287166],[0.28022626042366,44.774398803710994],[0.263719290494976,44.82641983032232],[0.281958401203269,44.82385253906255],[0.315055727958622,44.84537506103521],[0.288047045469398,44.86317825317383],[0.256445854902267,44.86751937866211],[0.209732785820961,44.84137344360346],[0.192843526601905,44.82080078125006],[0.148828119039592,44.82909393310547],[0.039303470402956,44.8276405334472],[0.022247236222029,44.84941864013683],[-0.010036071762386,44.85979080200201],[0.033907145261878,44.91496276855469],[0.005126500967947,44.94623947143565],[0.017709184438047,44.98063278198242],[0.040106356143951,44.99354934692394],[0.035640764981508,45.01434326171881],[0.073296248912811,45.070129394531364],[0.045793093741054,45.11346435546875],[-0.002243476454169,45.11936187744135],[-0.040200341492834,45.102382659912166],[-0.036750011146069,45.1407470703125],[0.004330746363905,45.19163131713873],[0.055581782013235,45.22716522216797],[0.100036896765289,45.22607421875006],[0.115843661129531,45.213573455810604],[0.145485624671039,45.214485168457145],[0.174738436937446,45.23920822143566],[0.172293275594711,45.25171279907232],[0.204415708780289,45.26360321044922],[0.220911905169601,45.290225982666016],[0.252620726823807,45.28940582275396],[0.270634382963181,45.31460571289068],[0.249430790543556,45.36358642578131],[0.270859807729664,45.41892623901367],[0.310780584812107,45.45875930786144],[0.356706649065018,45.466220855712834],[0.378383815288657,45.48412704467785],[0.432763397693748,45.50164794921875],[0.465736716985759,45.53962326049815],[0.506549119949398,45.55434036254877],[0.516323685646171,45.58806228637707],[0.501440644264278,45.61535263061535],[0.512656629085541,45.631458282470696],[0.538447558879852,45.62873840332037],[0.575447082519588,45.64092636108392],[0.587921559810752,45.66767501831055],[0.629742443561611,45.71456909179693],[0.662086367607174,45.68748092651367],[0.744137287140006,45.68826293945318],[0.775643348693791,45.667747497558594],[0.764133989811,45.631412506103516],[0.750612974166984,45.616874694824276],[0.777188122272548,45.592170715332145],[0.805857419967708,45.59496688842767],[0.811500310897884,45.57587051391613],[0.839995682239532,45.58130264282232],[0.869353055954093,45.62352752685547],[0.893740236759186,45.601032257080185],[0.946144878864402,45.612552642822266],[0.983447432518005,45.60362243652355],[1.023588418960571,45.607219696044915],[1.047748565673828,45.55783081054699],[1.086023807525692,45.534744262695426],[1.119312405586356,45.545963287353516],[1.16536366939539,45.52640151977544],[1.118435740470943,45.48790359497082],[1.135644912719727,45.47116851806646],[1.162444353103751,45.47834777832031],[1.185123085975704,45.455101013183594],[1.212122678756771,45.462371826171875],[1.253151893615779,45.444217681884815]]]},"properties":{"ID_0":79,"ISO":"FR-24","NAME_0":"France","ID_1":2,"NAME_1":"Aquitaine","ID_2":3,"NAME_2":"Dordogne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.717361986637002,45.328521728515675],[-0.6505326628685,45.32249069213873],[-0.568966627120858,45.331523895263786],[-0.567662417888585,45.29742050170892],[-0.513430058956146,45.28638458251959],[-0.472985565662327,45.293632507324276],[-0.416122585535049,45.267391204834034],[-0.405947506427765,45.24208068847662],[-0.419172704219704,45.21039199829112],[-0.378419399261475,45.156856536865234],[-0.362699329853058,45.17036056518565],[-0.275359451770782,45.14141082763677],[-0.257078230381012,45.11462020874029],[-0.191442385315838,45.0947494506837],[-0.143537327647209,45.0903434753418],[-0.111029207706395,45.115379333496094],[-0.087573483586311,45.12158203125005],[-0.065618291497174,45.10070419311529],[-0.040200341492834,45.102382659912166],[-0.002243476454169,45.11936187744135],[0.045793093741054,45.11346435546875],[0.073296248912811,45.070129394531364],[0.035640764981508,45.01434326171881],[0.040106356143951,44.99354934692394],[0.017709184438047,44.98063278198242],[0.005126500967947,44.94623947143565],[0.033907145261878,44.91496276855469],[-0.010036071762386,44.85979080200201],[0.022247236222029,44.84941864013683],[0.039303470402956,44.8276405334472],[0.148828119039592,44.82909393310547],[0.192843526601905,44.82080078125006],[0.209732785820961,44.84137344360346],[0.256445854902267,44.86751937866211],[0.288047045469398,44.86317825317383],[0.315055727958622,44.84537506103521],[0.281958401203269,44.82385253906255],[0.263719290494976,44.82641983032232],[0.28022626042366,44.774398803710994],[0.297325074672813,44.762294769287166],[0.253651082515773,44.7503929138183],[0.235944241285381,44.76419448852545],[0.194269537925834,44.74258041381836],[0.152620062232131,44.73082351684576],[0.136039108037949,44.711204528808594],[0.100344926118964,44.70098114013677],[0.107043243944702,44.685424804687614],[0.134422272443828,44.68241882324219],[0.182751506567115,44.66136169433605],[0.154362857341766,44.614910125732536],[0.110282234847546,44.59008026123041],[0.082236126065538,44.58391189575195],[0.068686962127686,44.54822158813476],[0.037738110870123,44.55414962768554],[-0.015564993023816,44.50479125976574],[-0.011696432717144,44.459861755371094],[0.006215024273956,44.45392608642578],[-0.011803831905013,44.42033004760748],[0.018551558256206,44.389328002929744],[-0.028820725157743,44.36019134521496],[-0.078819222748223,44.353694915771484],[-0.085752077400628,44.337608337402344],[-0.034811250865403,44.2967262268067],[-0.03360828384757,44.274013519287166],[-0.088479816913548,44.23847198486334],[-0.140688970685005,44.22641372680675],[-0.194665998220444,44.270393371582145],[-0.226004436612129,44.26478576660162],[-0.223447099327984,44.2058982849121],[-0.273620516061726,44.194015502929744],[-0.310572355985641,44.20306015014654],[-0.38961735367775,44.2094841003418],[-0.396314412355423,44.237468719482536],[-0.383387833833694,44.28631973266613],[-0.429624944925251,44.301544189453125],[-0.431839555501881,44.32257843017584],[-0.479411005973816,44.32509231567382],[-0.517635464668274,44.339111328125],[-0.528103113174382,44.364654541015625],[-0.625806272029763,44.40824508666992],[-0.628063917159977,44.44285583496094],[-0.671949684619847,44.456378936767635],[-0.685636758804208,44.44322204589844],[-0.726967811584473,44.44753646850586],[-0.774076759815159,44.44010162353527],[-0.780281484126931,44.4281120300293],[-0.84474736452097,44.41863250732422],[-0.919170439243317,44.44334411621105],[-0.971419095993042,44.429180145263786],[-1.007737636566162,44.436515808105575],[-0.981032907962685,44.48478698730463],[-0.991430282592773,44.5118293762207],[-1.03002226352686,44.50857925415039],[-1.085166454315185,44.53219604492193],[-1.106984972953683,44.50263595581055],[-1.253749251365662,44.46763610839844],[-1.251528024673405,44.54735946655279],[-1.223749995231628,44.57958221435541],[-1.205137968063354,44.61430740356451],[-1.191805005073491,44.66097259521496],[-1.143193960189706,44.660415649414176],[-1.141528010368233,44.64764022827148],[-1.083470940589791,44.64347076416027],[-1.030694961547795,44.654304504394645],[-1.019304037094059,44.66958236694336],[-1.057361006736755,44.685974121093864],[-1.044860005378666,44.69874954223633],[-1.152637958526554,44.766487121582145],[-1.170971989631596,44.76069259643549],[-1.20430600643158,44.717918395996094],[-1.221806049346924,44.7095832824707],[-1.237082958221436,44.68180465698248],[-1.238473057746887,44.656806945800895],[-1.260138034820557,44.65041732788097],[-1.252362012863102,44.70735931396495],[-1.222918033599854,44.86041641235363],[-1.202638030052185,44.99486160278332],[-1.180137991905212,45.17736053466797],[-1.161527037620544,45.301528930664055],[-1.160138964653015,45.415695190429744],[-1.150972008705082,45.44235992431646],[-1.155972957611084,45.46847152709972],[-1.138749003410339,45.5051383972168],[-1.101529002189636,45.53985977172851],[-1.088750004768371,45.5654182434082],[-1.037915945053101,45.53486251831066],[-1.068750023841801,45.51958465576172],[-0.970417022705078,45.45291519165039],[-0.938472986221257,45.44319534301757],[-0.903194010257664,45.40847396850586],[-0.84291702508915,45.378749847412166],[-0.802637994289341,45.345417022705135],[-0.761249005794468,45.27763748168945],[-0.746806025504952,45.23597335815441],[-0.744584023952484,45.19819259643565],[-0.68958401679987,45.08902740478527],[-0.652360975742226,45.0493049621582],[-0.607915997505188,45.014862060546875],[-0.585416018962746,45.01680374145519],[-0.603470981121063,45.04819488525402],[-0.63735997676838,45.07485961914068],[-0.668749988079071,45.12930679321294],[-0.669582009315491,45.167362213134766],[-0.687084019184112,45.2151374816895],[-0.697916984558105,45.26847076416027],[-0.717361986637002,45.328521728515675]]]},"properties":{"ID_0":79,"ISO":"FR-33","NAME_0":"France","ID_1":2,"NAME_1":"Aquitaine","ID_2":4,"NAME_2":"Gironde","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Bec-D'Ambes"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.140688970685005,44.22641372680675],[-0.1296426653862,44.20261383056646],[-0.129154518246651,44.15240859985363],[-0.087749987840652,44.15599060058593],[-0.003539166646078,44.14989852905285],[0.034593842923641,44.13065338134765],[0.135797336697578,44.12419509887707],[0.136731222271976,44.10987091064453],[0.100820630788917,44.086769104003906],[0.076223194599379,44.030735015869254],[0.060222655534801,44.02487564086914],[0.076045610010738,43.98314285278326],[0.055424667894897,43.957138061523494],[0.075081668794269,43.914680480956974],[0.058618139475584,43.89838027954095],[0.033177878707704,43.899978637695426],[-0.020385520532727,43.92929458618164],[0.005599549505916,43.95558547973644],[-0.036168925464096,43.983741760253906],[-0.044189833104554,43.9636688232423],[-0.102561041712704,43.92727661132806],[-0.125395178794861,43.943504333496094],[-0.177077353000641,43.935680389404354],[-0.200575128197613,43.91463851928711],[-0.232803344726506,43.90158462524425],[-0.193995684385243,43.8816871643067],[-0.208908215165081,43.85766983032232],[-0.189844444394112,43.833698272705185],[-0.194708436727467,43.809211730956974],[-0.218646913766861,43.79658889770508],[-0.2156824767589,43.77240753173828],[-0.194143295288029,43.73701858520502],[-0.247380658984184,43.70924377441417],[-0.239730194211006,43.67124176025396],[-0.274354100227299,43.61604309082031],[-0.24720419943327,43.61595916748058],[-0.242837071418762,43.58498382568365],[-0.283324629068318,43.58416366577154],[-0.305984854698181,43.55947875976574],[-0.33652526140213,43.5512313842774],[-0.353597313165665,43.56179046630871],[-0.406041949987411,43.5682258605957],[-0.449712991714478,43.54986953735363],[-0.460427254438343,43.56451416015625],[-0.431717306375504,43.58354568481451],[-0.449232310056686,43.59626770019537],[-0.552764296531677,43.54315948486328],[-0.567071855068093,43.55821609497076],[-0.60003882646555,43.53865432739252],[-0.657889127731266,43.55974960327154],[-0.707608759403229,43.55788040161144],[-0.708209633827153,43.54130554199224],[-0.770304560661316,43.57916641235357],[-0.803350985050201,43.55619049072271],[-0.820949554443303,43.56118392944336],[-0.85571300983429,43.54190063476568],[-0.893691062927189,43.550273895263786],[-0.923683226108551,43.534614562988274],[-0.988199651241246,43.54019927978521],[-0.992383241653385,43.504028320312436],[-1.046070218086242,43.51156234741205],[-1.107330203056335,43.51432037353527],[-1.116329073905945,43.5034294128418],[-1.169662237167245,43.49303054809582],[-1.164920330047551,43.508358001708984],[-1.134033560752755,43.52017974853521],[-1.174183845519963,43.54604721069347],[-1.291381478309575,43.498386383056754],[-1.322410583496094,43.504947662353516],[-1.369649648666382,43.49502182006836],[-1.417658448219186,43.49690628051757],[-1.428906202316284,43.51226043701172],[-1.456638097763062,43.517963409423885],[-1.479604840278569,43.53917694091797],[-1.523193955421448,43.52950668334961],[-1.48874902725214,43.57624816894536],[-1.446527957916146,43.645137786865234],[-1.43847203254694,43.70264053344738],[-1.418194055557194,43.777084350585994],[-1.369860053062439,43.93069458007824],[-1.309862017631531,44.15458297729492],[-1.270694971084595,44.35958480834961],[-1.253749251365662,44.46763610839844],[-1.106984972953683,44.50263595581055],[-1.085166454315185,44.53219604492193],[-1.03002226352686,44.50857925415039],[-0.991430282592773,44.5118293762207],[-0.981032907962685,44.48478698730463],[-1.007737636566162,44.436515808105575],[-0.971419095993042,44.429180145263786],[-0.919170439243317,44.44334411621105],[-0.84474736452097,44.41863250732422],[-0.780281484126931,44.4281120300293],[-0.774076759815159,44.44010162353527],[-0.726967811584473,44.44753646850586],[-0.685636758804208,44.44322204589844],[-0.671949684619847,44.456378936767635],[-0.628063917159977,44.44285583496094],[-0.625806272029763,44.40824508666992],[-0.528103113174382,44.364654541015625],[-0.517635464668274,44.339111328125],[-0.479411005973816,44.32509231567382],[-0.431839555501881,44.32257843017584],[-0.429624944925251,44.301544189453125],[-0.383387833833694,44.28631973266613],[-0.396314412355423,44.237468719482536],[-0.38961735367775,44.2094841003418],[-0.310572355985641,44.20306015014654],[-0.273620516061726,44.194015502929744],[-0.223447099327984,44.2058982849121],[-0.226004436612129,44.26478576660162],[-0.194665998220444,44.270393371582145],[-0.140688970685005,44.22641372680675]]]},"properties":{"ID_0":79,"ISO":"FR-40","NAME_0":"France","ID_1":2,"NAME_1":"Aquitaine","ID_2":5,"NAME_2":"Landes","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Landas"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.297325074672813,44.762294769287166],[0.336662083864326,44.73557281494152],[0.359541267156601,44.69131469726574],[0.366564273834285,44.661308288574276],[0.41695365309721,44.64521026611328],[0.470530122518539,44.66957855224621],[0.511835038661957,44.67776870727539],[0.546558022499141,44.6651496887207],[0.567171096801871,44.671512603759815],[0.576468050479889,44.69306182861339],[0.648099720478115,44.70217514038085],[0.65743404626852,44.6778564453125],[0.729133725166378,44.67599105834972],[0.778602540492955,44.684291839599666],[0.799457252025604,44.70078277587896],[0.828610479831809,44.68976974487305],[0.844563245773315,44.66583633422863],[0.835655510425568,44.63687896728521],[0.817003905773163,44.627010345458984],[0.835145711898804,44.60220336914068],[0.86999583244318,44.597316741943416],[0.927099049091396,44.63523483276367],[0.977296352386588,44.642990112304744],[1.012501597404423,44.61582946777337],[1.071130633354301,44.596229553222656],[1.075140833854675,44.57732391357421],[1.013166308403015,44.53613662719738],[1.021679401397648,44.44659805297851],[1.057488083839473,44.427677154541016],[1.064083814620972,44.37851333618164],[1.060229063034058,44.36606597900396],[0.950215697288627,44.35957717895502],[0.919845402240753,44.38441848754883],[0.887319982051906,44.364646911621094],[0.896113157272396,44.34622955322271],[0.869445145130214,44.30925369262695],[0.950788080692405,44.275070190429744],[0.919089794159049,44.238269805908146],[0.929239213466701,44.2302513122558],[0.903111338615474,44.19005584716808],[0.882225215434971,44.1739501953125],[0.888351321220512,44.14881134033209],[0.869091689586639,44.12651443481445],[0.796567738056183,44.14515304565441],[0.793164968490657,44.11845779418957],[0.754382967949027,44.104804992675895],[0.741884768009129,44.06520080566406],[0.707922756671906,44.058288574218864],[0.662558913230953,44.0245933532716],[0.652207732200736,44.04290771484374],[0.592675149440765,44.07926177978527],[0.566978871822471,44.06061553955078],[0.538427472114563,44.0529518127442],[0.5115802884103,44.06273651123046],[0.459759086370582,44.05537796020507],[0.442449927330074,44.02876281738281],[0.418932557106075,44.02828979492193],[0.382336765527782,44.00823974609381],[0.357013463973999,44.015411376953125],[0.32474011182785,44.00780105590832],[0.303003638982773,43.99123764038097],[0.232994541525898,44.009391784668026],[0.214733630418777,44.02278518676758],[0.189806640148277,44.01500701904291],[0.138624876737708,43.97659683227539],[0.107387967407817,43.985382080078175],[0.076045610010738,43.98314285278326],[0.060222655534801,44.02487564086914],[0.076223194599379,44.030735015869254],[0.100820630788917,44.086769104003906],[0.136731222271976,44.10987091064453],[0.135797336697578,44.12419509887707],[0.034593842923641,44.13065338134765],[-0.003539166646078,44.14989852905285],[-0.087749987840652,44.15599060058593],[-0.129154518246651,44.15240859985363],[-0.1296426653862,44.20261383056646],[-0.140688970685005,44.22641372680675],[-0.088479816913548,44.23847198486334],[-0.03360828384757,44.274013519287166],[-0.034811250865403,44.2967262268067],[-0.085752077400628,44.337608337402344],[-0.078819222748223,44.353694915771484],[-0.028820725157743,44.36019134521496],[0.018551558256206,44.389328002929744],[-0.011803831905013,44.42033004760748],[0.006215024273956,44.45392608642578],[-0.011696432717144,44.459861755371094],[-0.015564993023816,44.50479125976574],[0.037738110870123,44.55414962768554],[0.068686962127686,44.54822158813476],[0.082236126065538,44.58391189575195],[0.110282234847546,44.59008026123041],[0.154362857341766,44.614910125732536],[0.182751506567115,44.66136169433605],[0.134422272443828,44.68241882324219],[0.107043243944702,44.685424804687614],[0.100344926118964,44.70098114013677],[0.136039108037949,44.711204528808594],[0.152620062232131,44.73082351684576],[0.194269537925834,44.74258041381836],[0.235944241285381,44.76419448852545],[0.253651082515773,44.7503929138183],[0.297325074672813,44.762294769287166]]]},"properties":{"ID_0":79,"ISO":"FR-47","NAME_0":"France","ID_1":2,"NAME_1":"Aquitaine","ID_2":6,"NAME_2":"Lot-et-Garonne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.096782974898815,43.582405090332145],[-0.0871227607131,43.542377471923885],[-0.06973043829197,43.54675292968744],[-0.043700430542174,43.52298736572271],[-0.049103256314993,43.4919052124024],[-0.032106522470713,43.46603775024414],[-0.065754115581512,43.46348953247081],[-0.069604225456601,43.43420028686529],[-0.042983438819647,43.41020965576172],[-0.016534095629993,43.44394683837885],[0.009655310772473,43.42220306396479],[-0.004652889911085,43.375709533691406],[0.028665335849041,43.346618652343864],[0.012767912820038,43.32753372192383],[-0.02537138201285,43.32961654663086],[-0.044395878911018,43.30294036865245],[-0.04102635756135,43.28369522094726],[-0.018516158685088,43.26938629150402],[-0.044946491718292,43.233795166015625],[-0.07397249341011,43.22237777709972],[-0.067873999476433,43.17712020874029],[-0.116243176162243,43.17928695678722],[-0.146313965320587,43.12818527221674],[-0.197562798857689,43.099967956543026],[-0.190722703933716,43.05125045776373],[-0.223951518535614,43.03368759155279],[-0.26050540804863,43.038272857666065],[-0.264715641736984,43.01000976562511],[-0.287669211625939,43.00555419921881],[-0.289621949195805,42.96112060546881],[-0.279270291328373,42.942344665527344],[-0.324323385953846,42.90332794189459],[-0.307293713092804,42.86897659301752],[-0.313442856073323,42.84937667846679],[-0.293132483959198,42.8388290405274],[-0.350817173719349,42.83335876464855],[-0.384153068065643,42.803859710693416],[-0.414649367332345,42.80543518066406],[-0.444918990135193,42.796031951904354],[-0.509380161762181,42.825286865234425],[-0.529672980308533,42.791545867919865],[-0.567746877670174,42.7808723449707],[-0.57361793518055,42.80739974975586],[-0.600372016429901,42.802497863769645],[-0.602346956729889,42.83008575439458],[-0.648710012435856,42.855106353759766],[-0.679441630840245,42.882930755615234],[-0.698395013809204,42.878963470458984],[-0.733008027076664,42.897994995117244],[-0.733271777629795,42.94615936279296],[-0.752805233001595,42.966960906982536],[-0.7844140529632,42.96428680419921],[-0.808800995349884,42.95145416259777],[-0.864740014076233,42.95095443725597],[-0.910014152526855,42.963802337646484],[-0.934530019760018,42.952678680420036],[-0.974991023540497,42.96329879760748],[-1.010465979576054,42.99109649658214],[-1.07197105884552,42.99789428710943],[-1.113268375396729,43.02121734619146],[-1.181146025657597,43.03224945068365],[-1.212408661842289,43.05139541625982],[-1.247508406639099,43.04235839843756],[-1.308544993400517,43.06922149658203],[-1.299494028091374,43.09227752685547],[-1.2704980373382,43.11832046508789],[-1.3196120262146,43.112789154052734],[-1.345170617103576,43.092971801757926],[-1.34411883354187,43.05593872070324],[-1.353703975677433,43.02801895141612],[-1.441393017768746,43.046195983886776],[-1.472216010093632,43.081558227539006],[-1.471323013305664,43.091773986816456],[-1.415738105773926,43.12852859497082],[-1.401859998703003,43.17848587036144],[-1.384948015213013,43.18828964233398],[-1.384181141853275,43.25322341918951],[-1.413205623626652,43.27341461181652],[-1.438305020332336,43.26667404174805],[-1.491320013999882,43.28133010864269],[-1.505856394767704,43.29327774047857],[-1.55623197555542,43.27979660034191],[-1.574738979339543,43.25046539306646],[-1.616579055786133,43.25727081298828],[-1.63018798828125,43.28492355346691],[-1.623861193656865,43.303966522216854],[-1.669399142265263,43.31418991088867],[-1.694653034210205,43.31184768676769],[-1.728865027427616,43.29613113403325],[-1.73881995677948,43.32903671264643],[-1.78597104549408,43.35374832153326],[-1.78597104549408,43.37208175659191],[-1.739583969116097,43.37958145141596],[-1.629027962684631,43.413192749023544],[-1.599027991294861,43.43264007568371],[-1.567916989326477,43.475692749023494],[-1.546527981758061,43.49402618408209],[-1.523193955421448,43.52950668334961],[-1.479604840278569,43.53917694091797],[-1.456638097763062,43.517963409423885],[-1.428906202316284,43.51226043701172],[-1.417658448219186,43.49690628051757],[-1.369649648666382,43.49502182006836],[-1.322410583496094,43.504947662353516],[-1.291381478309575,43.498386383056754],[-1.174183845519963,43.54604721069347],[-1.134033560752755,43.52017974853521],[-1.164920330047551,43.508358001708984],[-1.169662237167245,43.49303054809582],[-1.116329073905945,43.5034294128418],[-1.107330203056335,43.51432037353527],[-1.046070218086242,43.51156234741205],[-0.992383241653385,43.504028320312436],[-0.988199651241246,43.54019927978521],[-0.923683226108551,43.534614562988274],[-0.893691062927189,43.550273895263786],[-0.85571300983429,43.54190063476568],[-0.820949554443303,43.56118392944336],[-0.803350985050201,43.55619049072271],[-0.770304560661316,43.57916641235357],[-0.708209633827153,43.54130554199224],[-0.707608759403229,43.55788040161144],[-0.657889127731266,43.55974960327154],[-0.60003882646555,43.53865432739252],[-0.567071855068093,43.55821609497076],[-0.552764296531677,43.54315948486328],[-0.449232310056686,43.59626770019537],[-0.431717306375504,43.58354568481451],[-0.460427254438343,43.56451416015625],[-0.449712991714478,43.54986953735363],[-0.406041949987411,43.5682258605957],[-0.353597313165665,43.56179046630871],[-0.33652526140213,43.5512313842774],[-0.305984854698181,43.55947875976574],[-0.283324629068318,43.58416366577154],[-0.242837071418762,43.58498382568365],[-0.176560878753605,43.59683227539068],[-0.162107899785042,43.58166503906244],[-0.096782974898815,43.582405090332145]],[[-0.093096010386887,43.373886108398494],[-0.087270952761116,43.33384323120117],[-0.109901435673123,43.31280517578131],[-0.075832143425941,43.306938171386776],[-0.06448258459568,43.35361480712896],[-0.093096010386887,43.373886108398494]],[[-0.089286983013039,43.30106353759777],[-0.117817156016827,43.30734634399414],[-0.140602961182537,43.271675109863395],[-0.118389882147198,43.24137496948248],[-0.089981473982277,43.254005432128906],[-0.079629443585759,43.27164840698242],[-0.089286983013039,43.30106353759777]]]},"properties":{"ID_0":79,"ISO":"FR-64","NAME_0":"France","ID_1":2,"NAME_1":"Aquitaine","ID_2":7,"NAME_2":"Pyrénées-Atlantiques","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Basses-Pyrénées|Pirinio Atlantiarrak"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.032068252563477,46.7949104309082],[3.049694061279297,46.75780868530279],[3.083478212356681,46.73777389526373],[3.129056215286369,46.72749328613281],[3.167414426803703,46.69096755981445],[3.204426527023372,46.67875289916992],[3.268544197082576,46.71592330932617],[3.298052310943547,46.7158775329591],[3.318052530288753,46.68844223022455],[3.366416215896606,46.69067764282238],[3.380713224411068,46.71232986450195],[3.434214115142936,46.71221923828124],[3.449235200881958,46.690788269043075],[3.455299139022884,46.652397155761776],[3.486833810806274,46.660560607910156],[3.520472288131828,46.68523788452148],[3.547825336456299,46.67943572998047],[3.548900365829581,46.70555114746094],[3.595874309539794,46.725543975830135],[3.578034639358521,46.74962234497082],[3.629423618316764,46.74945831298834],[3.62280178070074,46.740894317626896],[3.670168876648006,46.67237472534191],[3.695942640304622,46.66140747070324],[3.713443994522208,46.61072158813482],[3.734557390213013,46.60377883911133],[3.741006374359188,46.560218811035156],[3.75577640533453,46.536151885986385],[3.811745882034359,46.52058410644537],[3.837014198303279,46.53160476684581],[3.863827466964835,46.51267623901373],[3.865262031555119,46.489646911621094],[3.892563343048096,46.48088455200207],[3.916492223739568,46.49610137939453],[3.958134889602718,46.49059295654297],[3.998722076416129,46.46490478515631],[4.002691268920955,46.44049835205084],[3.977568626403865,46.39786911010748],[3.991544485092163,46.37041854858404],[3.983718633651677,46.31798553466797],[3.949013710022029,46.319343566894524],[3.947858572006226,46.303672790527344],[3.901973485946769,46.29315948486328],[3.899533510208187,46.27591323852539],[3.868897676467895,46.26366043090832],[3.807686805725154,46.2572135925293],[3.80270004272461,46.238510131835994],[3.773352622985953,46.22718811035156],[3.794089078903311,46.20851135253906],[3.791627168655396,46.15658569335932],[3.802830457687321,46.11013793945318],[3.821294069290161,46.090240478515625],[3.805605649948233,46.053062438964844],[3.827341794967765,46.000213623046875],[3.823220252990723,45.98815917968744],[3.781713008880672,45.97279357910162],[3.742071390152091,45.96669006347661],[3.709611654281673,45.97414016723627],[3.693891525268611,45.93095779418951],[3.678015947342032,45.955955505371094],[3.639159917831477,45.96542739868164],[3.601154088974113,46.01495742797846],[3.577777385711727,46.01784515380865],[3.486672639846802,46.014320373535156],[3.467401027679387,46.02788162231457],[3.453592777252254,46.06379318237299],[3.419741868972778,46.0743789672851],[3.369134187698364,46.05448532104492],[3.332797050476131,46.05355072021496],[3.28437256813055,46.06595611572277],[3.23308348655712,46.06406402587901],[3.214510917663631,46.074943542480405],[3.160065889358464,46.06643295288097],[3.100844860076961,46.08229827880865],[3.090955257415885,46.11173248291027],[3.050355195999259,46.100746154785156],[3.016919374465885,46.102458953857536],[2.994263172149715,46.123195648193416],[2.971743822097835,46.12168884277343],[2.943464994430542,46.168659210205185],[2.915694475173893,46.17413330078119],[2.915816783905086,46.21279144287121],[2.936353683471793,46.22090148925781],[2.936743259429932,46.24313354492199],[2.859759569168091,46.25658798217784],[2.819163084030095,46.24179077148449],[2.817312955856437,46.20502090454107],[2.786781787872428,46.19864654541021],[2.732597589492912,46.22341156005865],[2.723104953765869,46.181518554687614],[2.676567554473991,46.17219924926763],[2.654374599456844,46.1252555847168],[2.637202024459782,46.11938476562494],[2.565378904342708,46.1430397033692],[2.559154748916626,46.17440795898443],[2.528499126434326,46.184940338134766],[2.51520299911499,46.23854446411133],[2.488920211792106,46.250007629394645],[2.470214605331534,46.286350250244254],[2.443031549453849,46.294998168945426],[2.386079788208008,46.33197021484381],[2.357931852340698,46.32336807250988],[2.31458568572998,46.33464050292974],[2.312478780746517,46.37606048583995],[2.286935806274471,46.383304595947266],[2.2810475826264,46.42040634155284],[2.284665584564265,46.45135879516596],[2.305465459823608,46.47543334960949],[2.368300199508724,46.51843643188482],[2.44614839553833,46.52104568481445],[2.48292875289917,46.53269577026373],[2.536651849746761,46.519710540771484],[2.611052274704036,46.55150985717773],[2.598460674285832,46.595310211181754],[2.57738041877758,46.60673141479498],[2.593100547790471,46.6465797424317],[2.570550680160579,46.659267425537045],[2.631837844848746,46.672203063964844],[2.677795410156364,46.70461273193359],[2.704833030700797,46.73903656005871],[2.730642080307064,46.747993469238395],[2.74379754066473,46.73054885864269],[2.774749755859375,46.71895217895519],[2.793416023254451,46.73355484008795],[2.82748532295227,46.735332489013786],[2.880421876907349,46.77003097534191],[2.959914684295711,46.80387496948242],[3.032068252563477,46.7949104309082]]]},"properties":{"ID_0":79,"ISO":"FR-03","NAME_0":"France","ID_1":3,"NAME_1":"Auvergne","ID_2":8,"NAME_2":"Allier","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Basses-Alpes"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.103498220443726,45.354373931884815],[3.113416910171622,45.32708740234375],[3.100695848465023,45.31613540649414],[3.112195491790771,45.284751892089844],[3.161341428756657,45.28908538818371],[3.226851940155029,45.2719459533692],[3.222768068313599,45.24560546875011],[3.238011121749992,45.21836471557622],[3.272226095199642,45.20946121215832],[3.261231422424373,45.17374801635748],[3.288033246994075,45.120426177978516],[3.300835847854557,45.124370574951286],[3.351855278015194,45.10483551025402],[3.312027215957755,45.08086013793951],[3.298442125320435,45.03573226928705],[3.337173938751278,45.025348663330135],[3.363227128982601,44.99016189575195],[3.361342668533382,44.971412658691406],[3.285642385482788,44.92630767822277],[3.244564771652222,44.931716918945305],[3.226427555084285,44.90997695922863],[3.234992504119986,44.88877487182623],[3.190283536911011,44.862522125244254],[3.164672613144034,44.875179290771484],[3.142848491668701,44.902282714843864],[3.103126049041805,44.88463592529297],[3.094844818115348,44.85548019409174],[3.048270702362174,44.80426406860357],[3.048236608505362,44.76432418823242],[3.031344890594539,44.749637603759766],[3.029445171356258,44.716552734375],[3.016110181808472,44.71205520629877],[2.981677055359,44.644676208496094],[2.93934607505804,44.67757415771496],[2.923264503479118,44.72864913940424],[2.933773994445801,44.780647277832024],[2.920190811157283,44.794315338134766],[2.889642000198364,44.78832626342785],[2.855560064315796,44.851230621338004],[2.851404428482113,44.871952056884766],[2.804778099060172,44.87378692626959],[2.778589725494442,44.88749694824219],[2.776095151901245,44.90963745117193],[2.737687826156729,44.94036483764643],[2.716765642166138,44.9288330078125],[2.706372261047363,44.90708923339844],[2.681867837905884,44.90734863281255],[2.65304875373846,44.86977005004894],[2.629077434539852,44.87225723266613],[2.604162216186523,44.84309005737298],[2.600122690200806,44.79366683959972],[2.564486026763859,44.778091430664176],[2.553678035736027,44.75742340087896],[2.556230068206901,44.722229003906364],[2.500495910644531,44.68880844116211],[2.489523649215698,44.65871429443371],[2.468039989471549,44.6428947448731],[2.43565034866333,44.639743804931754],[2.380878210067692,44.64966964721691],[2.350984096527213,44.6412353515625],[2.324130058288574,44.66915512084961],[2.286239624023381,44.6664390563966],[2.208414077758903,44.6438446044923],[2.207475185394344,44.615531921386776],[2.169419050216788,44.63798522949219],[2.166010141372681,44.661285400390625],[2.17915225028986,44.6744499206544],[2.15466570854187,44.69936752319341],[2.148087263107413,44.722850799560604],[2.15349197387701,44.753108978271484],[2.171632766723746,44.79026031494146],[2.16628980636608,44.81206893920904],[2.13980054855358,44.823825836181584],[2.085555553436336,44.8849601745606],[2.108110427856559,44.91059875488286],[2.076351404190177,44.93478393554687],[2.080703020095825,44.951576232910156],[2.062914371490479,44.976505279541065],[2.093554258346671,44.98571014404297],[2.133292675018424,44.98574829101568],[2.140895843505916,45.00540924072271],[2.116937875747794,45.02196884155284],[2.095159292221183,45.056037902831974],[2.143402814865112,45.0863151550293],[2.172775745391903,45.08127975463878],[2.187932252884025,45.11671447753906],[2.178792953491325,45.13630294799805],[2.210419416427669,45.147159576416016],[2.221619606018066,45.1707115173341],[2.202461004257202,45.181419372558594],[2.19450759887701,45.220844268798885],[2.239868164062614,45.24879837036133],[2.269695043563843,45.2898902893067],[2.29032826423645,45.28847122192383],[2.316080331802482,45.3220329284668],[2.353415012359733,45.32979202270519],[2.368799448013306,45.386005401611385],[2.35025000572216,45.40960693359386],[2.380990982055721,45.413536071777344],[2.441551446914616,45.38452529907238],[2.523371696472282,45.38154602050787],[2.517482280731258,45.402050018310604],[2.487537860870361,45.41817092895507],[2.508408546447868,45.47850799560558],[2.543963193893433,45.47898101806646],[2.582689046859741,45.45267486572271],[2.605762958526611,45.45357131958019],[2.660432100296077,45.43479537963867],[2.688463926315421,45.437694549560604],[2.681746244430485,45.40910339355469],[2.714525461197013,45.38146591186529],[2.741279363632145,45.39295959472662],[2.785147666931266,45.38457870483393],[2.815353870391903,45.40039825439458],[2.852378606796321,45.392341613769524],[2.873529672622738,45.375373840332024],[2.892967462539787,45.37924194335943],[2.920385599136466,45.3621826171875],[2.948624849319515,45.30912399291997],[3.018304586410522,45.287067413330185],[3.059399366378784,45.306835174560604],[3.063178777694816,45.33137130737299],[3.103498220443726,45.354373931884815]]]},"properties":{"ID_0":79,"ISO":"FR-15","NAME_0":"France","ID_1":3,"NAME_1":"Auvergne","ID_2":9,"NAME_2":"Cantal","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.897408485412597,45.35708236694347],[3.918387413024902,45.35436630249029],[3.938752412796077,45.3713951110841],[3.978267669677791,45.37569427490246],[3.992932558059692,45.356170654296925],[4.02343225479126,45.34497070312511],[4.045380592346305,45.355667114257926],[4.080170631408691,45.35552597045904],[4.120395183563232,45.36837768554693],[4.144443035125788,45.384109497070256],[4.180821418762263,45.39170074462902],[4.200926303863525,45.382228851318416],[4.244341373443604,45.385276794433594],[4.27163124084484,45.35976409912114],[4.308199405670165,45.37098693847656],[4.348395824432373,45.36045837402338],[4.363379478454589,45.3374862670899],[4.331653118133659,45.31847763061529],[4.366258144378719,45.30128097534179],[4.350182533264274,45.27770233154297],[4.371186256408635,45.259887695312614],[4.419654846191406,45.275402069091854],[4.483134746551514,45.236446380615234],[4.472579002380485,45.17989349365234],[4.448111057281494,45.161960601806754],[4.438930988311768,45.12035751342785],[4.411158561706543,45.1408309936524],[4.376558780670223,45.144359588623104],[4.372570514678955,45.12807464599615],[4.39713716506958,45.105236053466854],[4.359231948852539,45.09957122802734],[4.347736835479736,45.06525039672862],[4.378729820251579,45.05286407470703],[4.379067897796745,45.03617477416992],[4.351543426513729,45.02766036987315],[4.318085670471248,45.029933929443416],[4.291110038757438,44.99732971191406],[4.314365386963003,44.97316741943365],[4.256587028503531,44.95987701416027],[4.223854541778564,44.9628791809082],[4.216572284698543,44.93357849121105],[4.184321403503418,44.90832519531256],[4.179478645324764,44.886512756347656],[4.156636714935303,44.87397766113287],[4.108429431915226,44.87793350219738],[4.069305419921932,44.867694854736264],[4.038909912109375,44.872764587402344],[3.998603105545101,44.82357406616222],[3.945542573928833,44.82434463500988],[3.924917936325187,44.769622802734375],[3.876486539840811,44.756801605224666],[3.862527370452937,44.743873596191406],[3.839418649673519,44.74711990356457],[3.833253145217952,44.775276184081974],[3.806989908218384,44.767581939697266],[3.743865728378353,44.83780288696289],[3.666364908218497,44.828777313232365],[3.673640251159725,44.85412597656256],[3.644297122955322,44.87713241577154],[3.595023632049618,44.87579345703119],[3.597830057144221,44.85870742797863],[3.568770170211849,44.834182739257926],[3.507375001907405,44.82423400878912],[3.486966848373526,44.80647277832037],[3.456170082092398,44.83122634887707],[3.435711383819637,44.88024520874035],[3.410380125045833,44.91778564453124],[3.403222322464103,44.956863403320256],[3.386025190353394,44.95290756225597],[3.361342668533382,44.971412658691406],[3.363227128982601,44.99016189575195],[3.337173938751278,45.025348663330135],[3.298442125320435,45.03573226928705],[3.312027215957755,45.08086013793951],[3.351855278015194,45.10483551025402],[3.300835847854557,45.124370574951286],[3.288033246994075,45.120426177978516],[3.261231422424373,45.17374801635748],[3.272226095199642,45.20946121215832],[3.238011121749992,45.21836471557622],[3.222768068313599,45.24560546875011],[3.226851940155029,45.2719459533692],[3.161341428756657,45.28908538818371],[3.112195491790771,45.284751892089844],[3.100695848465023,45.31613540649414],[3.113416910171622,45.32708740234375],[3.103498220443726,45.354373931884815],[3.181127786636466,45.35231018066406],[3.218652248382682,45.36948776245128],[3.236170768737736,45.394630432128906],[3.287523269653377,45.39960479736328],[3.30897331237793,45.41844177246087],[3.330263853073177,45.39720916748058],[3.355951070785579,45.422702789306754],[3.380009651184195,45.401157379150504],[3.455852270126456,45.40033721923828],[3.479402542114315,45.42029190063476],[3.555819988250732,45.39387893676769],[3.569313049316349,45.40229415893566],[3.590793371200618,45.35708618164062],[3.617813825607356,45.338165283203125],[3.663180112838745,45.36297607421875],[3.758874654770011,45.35595703125006],[3.789194107055721,45.358528137207145],[3.791406393051205,45.38477325439459],[3.836298942565975,45.38309478759777],[3.852785587310847,45.36156463623058],[3.897408485412597,45.35708236694347]]]},"properties":{"ID_0":79,"ISO":"FR-43","NAME_0":"France","ID_1":3,"NAME_1":"Auvergne","ID_2":10,"NAME_2":"Haute-Loire","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.693891525268611,45.93095779418951],[3.721349954605103,45.922744750976506],[3.754370689392147,45.886032104492244],[3.71912407875061,45.85006713867182],[3.72689151763916,45.83026885986328],[3.70039343833929,45.78355407714844],[3.728468418121337,45.7760124206543],[3.727105855941772,45.75557708740239],[3.755838155746403,45.74660873413086],[3.782380342483634,45.71165084838878],[3.777585029602051,45.690567016601676],[3.823924064636287,45.63214492797862],[3.856866359710807,45.625],[3.881631135940552,45.60369110107421],[3.908086538314933,45.5966911315918],[3.95447421073925,45.555828094482536],[3.946430206298942,45.54340362548828],[3.96567702293396,45.50056457519537],[3.985629320144654,45.4861793518067],[3.967553377151546,45.471549987793026],[3.975105762481633,45.44826889038097],[3.898540496826229,45.40981674194336],[3.890368223190308,45.39366531372076],[3.897408485412597,45.35708236694347],[3.852785587310847,45.36156463623058],[3.836298942565975,45.38309478759777],[3.791406393051205,45.38477325439459],[3.789194107055721,45.358528137207145],[3.758874654770011,45.35595703125006],[3.663180112838745,45.36297607421875],[3.617813825607356,45.338165283203125],[3.590793371200618,45.35708618164062],[3.569313049316349,45.40229415893566],[3.555819988250732,45.39387893676769],[3.479402542114315,45.42029190063476],[3.455852270126456,45.40033721923828],[3.380009651184195,45.401157379150504],[3.355951070785579,45.422702789306754],[3.330263853073177,45.39720916748058],[3.30897331237793,45.41844177246087],[3.287523269653377,45.39960479736328],[3.236170768737736,45.394630432128906],[3.218652248382682,45.36948776245128],[3.181127786636466,45.35231018066406],[3.103498220443726,45.354373931884815],[3.063178777694816,45.33137130737299],[3.059399366378784,45.306835174560604],[3.018304586410522,45.287067413330185],[2.948624849319515,45.30912399291997],[2.920385599136466,45.3621826171875],[2.892967462539787,45.37924194335943],[2.873529672622738,45.375373840332024],[2.852378606796321,45.392341613769524],[2.815353870391903,45.40039825439458],[2.785147666931266,45.38457870483393],[2.741279363632145,45.39295959472662],[2.714525461197013,45.38146591186529],[2.681746244430485,45.40910339355469],[2.688463926315421,45.437694549560604],[2.660432100296077,45.43479537963867],[2.605762958526611,45.45357131958019],[2.582689046859741,45.45267486572271],[2.543963193893433,45.47898101806646],[2.508408546447868,45.47850799560558],[2.518362283706608,45.5189094543457],[2.515879631042537,45.55388259887701],[2.496293544769344,45.55683135986334],[2.463471889495906,45.594680786132756],[2.478431940078792,45.60791778564458],[2.48628664016735,45.640823364257926],[2.513976573944148,45.63944244384777],[2.514567375183219,45.665775299072266],[2.528683662414608,45.682197570800895],[2.521507024765128,45.71134185791021],[2.49212551116949,45.737670898437614],[2.434118747711125,45.76985549926769],[2.430863142013607,45.78861618041992],[2.388020515441838,45.82737731933588],[2.447822809219474,45.845821380615234],[2.44342398643505,45.86674499511724],[2.492225408554077,45.86402893066406],[2.511872291565055,45.886955261230526],[2.553195714950618,45.91139221191411],[2.542185306549072,45.91991424560546],[2.568712472915706,45.95787429809582],[2.606830358505306,45.966423034667905],[2.593142747879085,45.99606323242193],[2.602696418762264,46.03287506103521],[2.5733420848847,46.04692459106451],[2.550607204437313,46.086448669433594],[2.550522565841788,46.118957519531364],[2.565378904342708,46.1430397033692],[2.637202024459782,46.11938476562494],[2.654374599456844,46.1252555847168],[2.676567554473991,46.17219924926763],[2.723104953765869,46.181518554687614],[2.732597589492912,46.22341156005865],[2.786781787872428,46.19864654541021],[2.817312955856437,46.20502090454107],[2.819163084030095,46.24179077148449],[2.859759569168091,46.25658798217784],[2.936743259429932,46.24313354492199],[2.936353683471793,46.22090148925781],[2.915816783905086,46.21279144287121],[2.915694475173893,46.17413330078119],[2.943464994430542,46.168659210205185],[2.971743822097835,46.12168884277343],[2.994263172149715,46.123195648193416],[3.016919374465885,46.102458953857536],[3.050355195999259,46.100746154785156],[3.090955257415885,46.11173248291027],[3.100844860076961,46.08229827880865],[3.160065889358464,46.06643295288097],[3.214510917663631,46.074943542480405],[3.23308348655712,46.06406402587901],[3.28437256813055,46.06595611572277],[3.332797050476131,46.05355072021496],[3.369134187698364,46.05448532104492],[3.419741868972778,46.0743789672851],[3.453592777252254,46.06379318237299],[3.467401027679387,46.02788162231457],[3.486672639846802,46.014320373535156],[3.577777385711727,46.01784515380865],[3.601154088974113,46.01495742797846],[3.639159917831477,45.96542739868164],[3.678015947342032,45.955955505371094],[3.693891525268611,45.93095779418951]]]},"properties":{"ID_0":79,"ISO":"FR-63","NAME_0":"France","ID_1":3,"NAME_1":"Auvergne","ID_2":11,"NAME_2":"Puy-de-Dôme","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.320718050003109,48.74875640869146],[2.353948116302604,48.73865890502924],[2.370706796646118,48.72017669677739],[2.51005482673645,48.73466110229492],[2.531076669692993,48.69978713989258],[2.571660280227718,48.692024230956974],[2.547460794448909,48.671920776367244],[2.5406653881073,48.63381958007824],[2.517495632171745,48.62981414794933],[2.541450262069702,48.59688568115234],[2.518276929855347,48.583259582519645],[2.51794362068182,48.56203460693365],[2.497610330581665,48.51724243164068],[2.513822793960571,48.50952911376953],[2.502459526062012,48.484249114990234],[2.505029201507625,48.429866790771484],[2.521783828735465,48.40404129028326],[2.482460737228507,48.382453918456974],[2.449840068817252,48.37370681762701],[2.402664184570369,48.320720672607536],[2.369945526123104,48.308673858642635],[2.312424421310481,48.33011627197271],[2.300207614898795,48.3112411499024],[2.269118309021052,48.315048217773494],[2.207089424133358,48.344944000244254],[2.182797908783016,48.323879241943416],[2.154723405838013,48.314529418945426],[2.161589384079093,48.29843521118158],[2.052708387374878,48.295475006103565],[2.043235778808537,48.28616714477545],[1.994084715843314,48.28658676147472],[1.959227204322872,48.308689117431754],[1.982344508171138,48.32831573486328],[1.97061991691595,48.33999252319347],[1.987355947494563,48.363811492920036],[1.977244138717765,48.39916610717773],[1.939015626907405,48.42216110229498],[1.922148942947331,48.457599639892635],[1.916825771331844,48.47369384765625],[1.962064623832703,48.53499603271496],[1.937964797019958,48.56177902221685],[2.017574071884155,48.557598114013786],[2.035012960434074,48.60485076904291],[2.057564258575496,48.61724853515619],[2.020277023315543,48.64208984375],[2.033637046814079,48.678668975830135],[2.082078695297298,48.68545532226568],[2.110332727432194,48.71438217163097],[2.100445508956966,48.73600387573242],[2.175249576568604,48.75751876831065],[2.187626838684139,48.77251434326166],[2.226559400558585,48.77610015869152],[2.269288539886531,48.76063919067382],[2.283447265625057,48.734130859375114],[2.320718050003109,48.74875640869146]]]},"properties":{"ID_0":79,"ISO":"FR-91","NAME_0":"France","ID_1":4,"NAME_1":"Île-de-France","ID_2":12,"NAME_2":"Essonne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.331908941269035,48.81701278686534],[2.320718050003109,48.74875640869146],[2.283447265625057,48.734130859375114],[2.269288539886531,48.76063919067382],[2.226559400558585,48.77610015869152],[2.176739215850944,48.81401062011724],[2.150744438171386,48.818847656250114],[2.150387287140006,48.87086868286133],[2.16934871673584,48.89581298828131],[2.200591087341309,48.90867996215826],[2.267584562301692,48.94608688354498],[2.290973663330078,48.950965881347706],[2.334910154342651,48.941543579101555],[2.313758373260612,48.914020538330135],[2.319884538650513,48.900459289550895],[2.231736421585197,48.86906814575207],[2.224224567413444,48.85351562500011],[2.25356054306036,48.83685684204113],[2.331908941269035,48.81701278686534]]]},"properties":{"ID_0":79,"ISO":"FR-92","NAME_0":"France","ID_1":4,"NAME_1":"Île-de-France","ID_2":13,"NAME_2":"Hauts-de-Seine","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.416339635849112,48.84923934936535],[2.467259645462036,48.839088439941406],[2.461247444152945,48.81834793090832],[2.403295755386466,48.82924270629894],[2.364139080047664,48.81638717651373],[2.331908941269035,48.81701278686534],[2.25356054306036,48.83685684204113],[2.224224567413444,48.85351562500011],[2.231736421585197,48.86906814575207],[2.319884538650513,48.900459289550895],[2.389444351196403,48.901157379150334],[2.413277149200496,48.87311935424798],[2.416339635849112,48.84923934936535]]]},"properties":{"ID_0":79,"ISO":"FR-75","NAME_0":"France","ID_1":4,"NAME_1":"Île-de-France","ID_2":14,"NAME_2":"Paris","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.485187530517635,48.851909637451286],[3.485241413116455,48.825504302978516],[3.444479703903311,48.81180191040045],[3.442154169082642,48.784854888916016],[3.409984111786002,48.78372192382824],[3.397129535675049,48.7613983154298],[3.467395544052181,48.738628387451286],[3.470862388610783,48.687267303466854],[3.442698001861629,48.67250442504883],[3.476752996444645,48.63752746582031],[3.492137432098446,48.64695739746105],[3.555613756179866,48.6202850341798],[3.508512735366821,48.605510711670036],[3.46551609039318,48.570484161376946],[3.482364177703857,48.54980850219738],[3.450707197189331,48.52866744995117],[3.405398130416927,48.52802276611328],[3.434908628463745,48.49685287475585],[3.384093523025626,48.47802734375],[3.405714035034237,48.453289031982536],[3.392912864685059,48.42522048950207],[3.420679807663021,48.41545104980463],[3.414791584015006,48.390274047851506],[3.385177135467529,48.39886474609369],[3.363938093185482,48.37532424926758],[3.310689926147461,48.37291336059576],[3.283174753189087,48.38138580322271],[3.251020669937133,48.36510086059576],[3.204450368881282,48.36420059204112],[3.180979967117366,48.374557495117244],[3.139868736267147,48.372600555420036],[3.098776817321777,48.3577499389649],[3.049451351165771,48.360031127929744],[3.040571212768554,48.32892990112316],[3.01568508148199,48.30731582641607],[3.043708086013794,48.27184295654297],[3.00599050521862,48.20942306518555],[2.971666336059627,48.203411102295036],[2.934748649597282,48.17882156372081],[2.936314344406241,48.16339111328131],[2.866823434829769,48.15603637695324],[2.820879936218375,48.12966537475586],[2.780977487564087,48.16736221313488],[2.755198240280208,48.14565277099614],[2.706547021865958,48.12482070922863],[2.664748191833552,48.120540618896484],[2.639666080474854,48.1389503479005],[2.577867984771729,48.131782531738395],[2.537505388259887,48.14051818847662],[2.522209644317684,48.12521362304687],[2.461097478866577,48.13820648193365],[2.523010969162044,48.19876098632824],[2.506191730499268,48.23853683471691],[2.484178543090877,48.23897171020508],[2.420108795166072,48.26670455932623],[2.420761823654232,48.299251556396484],[2.402664184570369,48.320720672607536],[2.449840068817252,48.37370681762701],[2.482460737228507,48.382453918456974],[2.521783828735465,48.40404129028326],[2.505029201507625,48.429866790771484],[2.502459526062012,48.484249114990234],[2.513822793960571,48.50952911376953],[2.497610330581665,48.51724243164068],[2.51794362068182,48.56203460693365],[2.518276929855347,48.583259582519645],[2.541450262069702,48.59688568115234],[2.517495632171745,48.62981414794933],[2.5406653881073,48.63381958007824],[2.547460794448909,48.671920776367244],[2.571660280227718,48.692024230956974],[2.568137168884277,48.70897293090826],[2.594679117202758,48.731803894043026],[2.587756872177181,48.74407577514654],[2.606440067291203,48.77330780029297],[2.592280387878418,48.807437896728565],[2.595794916153068,48.81426620483404],[2.559406518936214,48.8853378295899],[2.586001396179199,48.895164489746094],[2.591905355453548,48.94934844970703],[2.566334962844905,48.97525405883795],[2.579969167709407,48.98692321777344],[2.553060531616211,49.0098152160645],[2.579623937606755,49.04650115966802],[2.590524196624813,49.07965469360363],[2.633272886276302,49.10837554931652],[2.692186594009513,49.076568603515625],[2.724357128143367,49.08045959472662],[2.735012531280631,49.06045913696289],[2.760833501815853,49.063003540039006],[2.809254169464111,49.09753799438482],[2.844946384430045,49.0848846435548],[2.856089353561458,49.070034027099666],[2.901507854461784,49.08537292480468],[2.974612236023063,49.07483673095703],[3.056320667266959,49.10191726684576],[3.07188439369213,49.11755371093744],[3.165230274200553,49.09965896606456],[3.155808210372925,49.085502624511655],[3.190666913986149,49.0499725341798],[3.171569347381592,49.01249694824219],[3.249521970748901,48.9742317199707],[3.269479513168335,48.93745422363292],[3.30474948883068,48.94877243041997],[3.313075780868587,48.92121505737305],[3.33019924163824,48.907958984375],[3.361698389053458,48.91955947875982],[3.382333993911743,48.8736305236817],[3.485187530517635,48.851909637451286]]]},"properties":{"ID_0":79,"ISO":"FR-77","NAME_0":"France","ID_1":4,"NAME_1":"Île-de-France","ID_2":15,"NAME_2":"Seine-et-Marne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.592280387878418,48.807437896728565],[2.568665742874146,48.824413299560604],[2.496392011642399,48.85990905761719],[2.416339635849112,48.84923934936535],[2.413277149200496,48.87311935424798],[2.389444351196403,48.901157379150334],[2.319884538650513,48.900459289550895],[2.313758373260612,48.914020538330135],[2.334910154342651,48.941543579101555],[2.290973663330078,48.950965881347706],[2.298617124557609,48.96635437011719],[2.382446527481079,48.971294403076286],[2.407383680343742,48.95613098144542],[2.459489822387695,48.9550552368164],[2.511558294296321,48.98099899291998],[2.553060531616211,49.0098152160645],[2.579969167709407,48.98692321777344],[2.566334962844905,48.97525405883795],[2.591905355453548,48.94934844970703],[2.586001396179199,48.895164489746094],[2.559406518936214,48.8853378295899],[2.595794916153068,48.81426620483404],[2.592280387878418,48.807437896728565]]]},"properties":{"ID_0":79,"ISO":"FR-93","NAME_0":"France","ID_1":4,"NAME_1":"Île-de-France","ID_2":16,"NAME_2":"Seine-Saint-Denis","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.590524196624813,49.07965469360363],[2.579623937606755,49.04650115966802],[2.553060531616211,49.0098152160645],[2.511558294296321,48.98099899291998],[2.459489822387695,48.9550552368164],[2.407383680343742,48.95613098144542],[2.382446527481079,48.971294403076286],[2.298617124557609,48.96635437011719],[2.290973663330078,48.950965881347706],[2.267584562301692,48.94608688354498],[2.200591087341309,48.90867996215826],[2.20585823059082,48.949741363525504],[2.173141479492187,48.95329666137695],[2.175023317336979,48.97324752807628],[2.12745285034174,48.98905181884765],[2.126808881759643,49.00867080688482],[2.084914922714347,49.014678955078175],[2.026444911956787,49.00070190429693],[1.981510281562805,49.0192756652832],[1.937802195549011,49.0217781066895],[1.908522486686763,49.048023223876896],[1.86244094371807,49.020195007324276],[1.851334214210567,49.03336334228521],[1.865468740463313,49.05747222900385],[1.823601126670894,49.0766716003418],[1.723457217216492,49.044975280761776],[1.693668246269283,49.05667877197276],[1.670822381973267,49.078910827636776],[1.608796119689941,49.077892303466854],[1.655990839004573,49.13039016723644],[1.676291346550101,49.212188720703125],[1.704364180564824,49.232200622558594],[1.740453124046269,49.22344207763672],[1.715608477592525,49.20623779296869],[1.742694616317749,49.179801940918026],[1.776924133300895,49.1852264404298],[1.882568359375057,49.16249465942383],[1.974085569381714,49.18331527709961],[1.999445199966544,49.175571441650504],[2.021784305572623,49.188674926757926],[2.0807688236236,49.20720291137701],[2.095874547958488,49.19006347656249],[2.153026103973446,49.183925628662166],[2.168270587921199,49.16475296020502],[2.220277070999259,49.17919921875],[2.241582632064876,49.1515731811524],[2.286412954330501,49.15991973876953],[2.301197052002067,49.183887481689446],[2.321776866912955,49.184436798095696],[2.359295606613272,49.14734649658203],[2.440902709961051,49.1458015441895],[2.499226570129395,49.122268676757926],[2.489930868148746,49.106361389160156],[2.559478759765681,49.0976181030274],[2.590524196624813,49.07965469360363]]]},"properties":{"ID_0":79,"ISO":"FR-95","NAME_0":"France","ID_1":4,"NAME_1":"Île-de-France","ID_2":17,"NAME_2":"Val-d'Oise","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.592280387878418,48.807437896728565],[2.606440067291203,48.77330780029297],[2.587756872177181,48.74407577514654],[2.594679117202758,48.731803894043026],[2.568137168884277,48.70897293090826],[2.571660280227718,48.692024230956974],[2.531076669692993,48.69978713989258],[2.51005482673645,48.73466110229492],[2.370706796646118,48.72017669677739],[2.353948116302604,48.73865890502924],[2.320718050003109,48.74875640869146],[2.331908941269035,48.81701278686534],[2.364139080047664,48.81638717651373],[2.403295755386466,48.82924270629894],[2.461247444152945,48.81834793090832],[2.467259645462036,48.839088439941406],[2.416339635849112,48.84923934936535],[2.496392011642399,48.85990905761719],[2.568665742874146,48.824413299560604],[2.592280387878418,48.807437896728565]]]},"properties":{"ID_0":79,"ISO":"FR-94","NAME_0":"France","ID_1":4,"NAME_1":"Île-de-France","ID_2":18,"NAME_2":"Val-de-Marne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.608796119689941,49.077892303466854],[1.670822381973267,49.078910827636776],[1.693668246269283,49.05667877197276],[1.723457217216492,49.044975280761776],[1.823601126670894,49.0766716003418],[1.865468740463313,49.05747222900385],[1.851334214210567,49.03336334228521],[1.86244094371807,49.020195007324276],[1.908522486686763,49.048023223876896],[1.937802195549011,49.0217781066895],[1.981510281562805,49.0192756652832],[2.026444911956787,49.00070190429693],[2.084914922714347,49.014678955078175],[2.126808881759643,49.00867080688482],[2.12745285034174,48.98905181884765],[2.175023317336979,48.97324752807628],[2.173141479492187,48.95329666137695],[2.20585823059082,48.949741363525504],[2.200591087341309,48.90867996215826],[2.16934871673584,48.89581298828131],[2.150387287140006,48.87086868286133],[2.150744438171386,48.818847656250114],[2.176739215850944,48.81401062011724],[2.226559400558585,48.77610015869152],[2.187626838684139,48.77251434326166],[2.175249576568604,48.75751876831065],[2.100445508956966,48.73600387573242],[2.110332727432194,48.71438217163097],[2.082078695297298,48.68545532226568],[2.033637046814079,48.678668975830135],[2.020277023315543,48.64208984375],[2.057564258575496,48.61724853515619],[2.035012960434074,48.60485076904291],[2.017574071884155,48.557598114013786],[1.937964797019958,48.56177902221685],[1.962064623832703,48.53499603271496],[1.916825771331844,48.47369384765625],[1.922148942947331,48.457599639892635],[1.904506683349609,48.44026184082031],[1.847221136093196,48.44667434692383],[1.834566354751644,48.46723556518548],[1.802130699157658,48.468093872070256],[1.776842474937439,48.512874603271484],[1.787245035171622,48.55374526977545],[1.761452198028564,48.57168960571295],[1.709252834320068,48.57802581787109],[1.715143442153931,48.613147735595646],[1.666354537010307,48.61370849609381],[1.640838384628353,48.64488983154308],[1.602706551551819,48.66309738159191],[1.611295104026908,48.688457489013786],[1.582495450973624,48.70430374145519],[1.624960064888057,48.749031066894645],[1.584907293319702,48.76329803466808],[1.57701563835144,48.78525161743164],[1.590482711792049,48.817333221435604],[1.582962155342102,48.85749816894536],[1.546231389045658,48.872436523437614],[1.563741922378483,48.89062881469738],[1.538249373435974,48.92169189453125],[1.501523852348441,48.94105529785162],[1.49522519111639,48.96574401855469],[1.470889449119682,48.9748153686524],[1.477095484733638,49.014801025390625],[1.457762360572872,49.026298522949276],[1.447279453277588,49.05351257324219],[1.486533403396606,49.05173873901373],[1.52134740352642,49.06835174560547],[1.604106664657649,49.08377456665045],[1.608796119689941,49.077892303466854]]]},"properties":{"ID_0":79,"ISO":"FR-78","NAME_0":"France","ID_1":4,"NAME_1":"Île-de-France","ID_2":19,"NAME_2":"Yvelines","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.412814527750072,48.950626373291016],[0.377446562051887,48.97255706787121],[0.356623172760067,48.94962692260742],[0.333231478929576,48.94278335571289],[0.308721601963043,48.95422744750976],[0.238900318741798,48.94249725341797],[0.187315776944217,48.94107437133789],[0.15521219372755,48.925151824951286],[0.136288017034644,48.9504013061524],[0.065764389932212,48.92614364624018],[0.056447435170412,48.9025535583496],[-0.009860503487289,48.88379669189459],[-0.013320349156857,48.87662124633789],[-0.083340704441014,48.84433364868164],[-0.144832596182823,48.83246231079112],[-0.268018245696965,48.85318374633794],[-0.298548251390457,48.84915924072276],[-0.345416009426117,48.82183456420898],[-0.410851985216141,48.869960784912166],[-0.464764505624714,48.87098693847656],[-0.509979069232941,48.84597396850591],[-0.549649894237461,48.84627151489258],[-0.624501228332463,48.82697296142584],[-0.691249072551727,48.846233367919865],[-0.682171523570958,48.82183456420898],[-0.743942260742187,48.791923522949325],[-0.780626654624882,48.786651611328125],[-0.808230042457524,48.76011276245123],[-0.840936005115509,48.75222778320318],[-0.922325611114445,48.77135467529308],[-0.948841512203217,48.78706741333019],[-0.975072145462036,48.774517059326115],[-1.05873441696167,48.773349761963004],[-1.084108233451843,48.77931213378912],[-1.102298140525818,48.81427001953136],[-1.157974243164006,48.82535934448248],[-1.101994752883911,48.866359710693416],[-1.059165954589787,48.87725830078125],[-1.021892428398132,48.90512466430675],[-1.021219730377197,48.92628097534191],[-1.065538048744088,48.93190765380871],[-1.056539297103882,48.958621978759766],[-0.99047410488123,48.95084762573247],[-0.944261848926544,48.96699142456055],[-0.915084302425328,48.9895477294923],[-0.905113041400909,49.011398315429744],[-0.862558603286743,49.02641296386719],[-0.876058459281921,49.05484008789062],[-0.886705636978149,49.128360748291016],[-0.937614500522557,49.150062561035206],[-0.901575684547424,49.2048225402832],[-0.920925438404083,49.221584320068466],[-0.972219824790898,49.193447113037166],[-1.023564338684082,49.20336532592779],[-1.036842465400696,49.22140121459955],[-1.07454240322113,49.23258972167969],[-1.095279455184937,49.25262832641613],[-1.133356332778874,49.27149963378906],[-1.139452099800053,49.30960464477545],[-1.113307952880859,49.32669067382818],[-1.117220044135991,49.344581604003906],[-1.117640018463135,49.359306335449276],[-1.070693969726505,49.39069366455078],[-1.008749961853027,49.39625167846691],[-0.934028029441833,49.394584655761776],[-0.89597100019455,49.37541580200201],[-0.831529021263066,49.358470916748104],[-0.724307000637054,49.347412109375],[-0.647082984447366,49.34652709960943],[-0.594582974910736,49.33986282348632],[-0.516804993152618,49.34541702270508],[-0.450138002633992,49.33541488647472],[-0.412082999944687,49.33597183227545],[-0.36625000834465,49.32513809204113],[-0.287084013223648,49.29375076293945],[-0.227362006902638,49.277084350585994],[-0.210137993097305,49.285694122314446],[-0.153750002384186,49.28708267211913],[-0.09680599719286,49.2984733581543],[0.0095840003342,49.33013916015631],[0.06875000149023,49.362083435058594],[0.128472998738346,49.403194427490234],[0.223471999168453,49.428470611572315],[0.293195009231681,49.43337631225585],[0.297141581773872,49.43361282348638],[0.309067577123699,49.38688278198248],[0.301713615656013,49.37130355834972],[0.323661744594688,49.34011840820324],[0.307059824466762,49.3187980651856],[0.322438538074607,49.29633331298828],[0.365656018257255,49.295124053955135],[0.382786750793571,49.26401519775401],[0.321765959262962,49.24859237670904],[0.337502598762512,49.23117446899414],[0.393431842327175,49.20693969726568],[0.387361347675323,49.15317916870117],[0.432367354631367,49.14220046997082],[0.399783194065208,49.10081481933594],[0.408114433288688,49.076675415039176],[0.379250437021255,49.07092285156255],[0.384958535432816,49.03701400756835],[0.4245461523534,49.032032012939446],[0.446051925420818,49.01901245117193],[0.426760137081203,48.985717773437614],[0.432199895381871,48.971908569335994],[0.412814527750072,48.950626373291016]]]},"properties":{"ID_0":79,"ISO":"FR-14","NAME_0":"France","ID_1":5,"NAME_1":"Basse-Normandie","ID_2":20,"NAME_2":"Calvados","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.117220044135991,49.344581604003906],[-1.113307952880859,49.32669067382818],[-1.139452099800053,49.30960464477545],[-1.133356332778874,49.27149963378906],[-1.095279455184937,49.25262832641613],[-1.07454240322113,49.23258972167969],[-1.036842465400696,49.22140121459955],[-1.023564338684082,49.20336532592779],[-0.972219824790898,49.193447113037166],[-0.920925438404083,49.221584320068466],[-0.901575684547424,49.2048225402832],[-0.937614500522557,49.150062561035206],[-0.886705636978149,49.128360748291016],[-0.876058459281921,49.05484008789062],[-0.862558603286743,49.02641296386719],[-0.905113041400909,49.011398315429744],[-0.915084302425328,48.9895477294923],[-0.944261848926544,48.96699142456055],[-0.99047410488123,48.95084762573247],[-1.056539297103882,48.958621978759766],[-1.065538048744088,48.93190765380871],[-1.021219730377197,48.92628097534191],[-1.021892428398132,48.90512466430675],[-1.059165954589787,48.87725830078125],[-1.101994752883911,48.866359710693416],[-1.157974243164006,48.82535934448248],[-1.102298140525818,48.81427001953136],[-1.084108233451843,48.77931213378912],[-1.05873441696167,48.773349761963004],[-0.975072145462036,48.774517059326115],[-0.948841512203217,48.78706741333019],[-0.922325611114445,48.77135467529308],[-0.840936005115509,48.75222778320318],[-0.796915590763035,48.70907592773443],[-0.741063296794891,48.68077468872076],[-0.773293912410736,48.65670394897461],[-0.75300395488739,48.61964035034173],[-0.775711894035283,48.56183624267584],[-0.805632650852147,48.54975128173828],[-0.847514986991825,48.52085113525396],[-0.860362887382507,48.501457214355575],[-0.896032691001835,48.49487304687505],[-0.923879265785217,48.51313781738281],[-0.953884124755802,48.51679229736328],[-0.973776161670628,48.494834899902344],[-1.00297474861145,48.48907089233404],[-1.060748457908573,48.515392303466854],[-1.070164561271667,48.50849533081055],[-1.117276906967163,48.5216522216798],[-1.145708680152893,48.517654418945426],[-1.166723966598511,48.53007888793951],[-1.249492645263672,48.54369735717785],[-1.272910118103027,48.53372192382812],[-1.279003739356995,48.50917816162115],[-1.341414928436279,48.48920822143555],[-1.346532940864563,48.47311782836925],[-1.382966637611389,48.45687484741216],[-1.427751541137695,48.46234893798839],[-1.454089283943119,48.48772430419933],[-1.489947438239994,48.48937606811523],[-1.49573278427124,48.5083122253418],[-1.533109784126225,48.54943847656256],[-1.521005153656006,48.56705474853527],[-1.538887023925781,48.59745788574219],[-1.566049337387028,48.61482620239269],[-1.578202247619629,48.64097213745128],[-1.52791595458973,48.64180374145508],[-1.507639050483647,48.63124847412115],[-1.472916007041931,48.63930511474614],[-1.409584045410156,48.643196105956974],[-1.460139036178589,48.67088317871094],[-1.501528024673462,48.684860229492244],[-1.534031033515873,48.73070526123058],[-1.571527957916203,48.742916107177734],[-1.573472023010254,48.81930541992187],[-1.584028959274292,48.85013961791998],[-1.573194026947021,48.8804168701173],[-1.55791699886322,48.99402618408209],[-1.586807012557983,49.00819396972662],[-1.60930597782135,49.07430648803722],[-1.61041605472559,49.097637176513665],[-1.592360973358097,49.134090423583984],[-1.614029049873295,49.21680450439459],[-1.640138983726501,49.21958160400402],[-1.659584045410099,49.256526947021484],[-1.707362055778503,49.318473815918026],[-1.774860978126412,49.3698616027832],[-1.808472990989628,49.37152862548834],[-1.822916030883732,49.39989852905285],[-1.827082037925663,49.455696105957145],[-1.844861984252873,49.470973968505916],[-1.852084994316101,49.50958251953131],[-1.889304995536747,49.53347396850586],[-1.84069299697876,49.57402801513672],[-1.84597194194788,49.62125015258788],[-1.875694036483764,49.65847396850591],[-1.938750982284546,49.67097091674799],[-1.948470950126648,49.707637786865234],[-1.922083973884582,49.726806640625],[-1.872084021568299,49.707916259765625],[-1.838749051094055,49.710971832275504],[-1.824859976768437,49.690692901611385],[-1.774307012557983,49.68069458007818],[-1.713750004768372,49.67902755737305],[-1.672083020210209,49.657917022705135],[-1.629583954811096,49.65958404541027],[-1.603749990463257,49.64541625976568],[-1.570140004157963,49.65652847290038],[-1.509582996368351,49.660972595214844],[-1.436249017715454,49.69958496093756],[-1.381526947021371,49.70624923706049],[-1.288193941116333,49.69235992431646],[-1.242638945579529,49.65541839599604],[-1.229027986526489,49.60597229003917],[-1.254583954810983,49.6123619079591],[-1.266527056693974,49.59180450439458],[-1.30458402633667,49.572917938232536],[-1.302083969116211,49.53347396850586],[-1.247640013694649,49.47708511352545],[-1.181251049041748,49.42291641235357],[-1.158751010894775,49.39152908325207],[-1.176249980926457,49.36652755737316],[-1.145972013473454,49.36291503906256],[-1.117220044135991,49.344581604003906]]]},"properties":{"ID_0":79,"ISO":"FR-50","NAME_0":"France","ID_1":5,"NAME_1":"Basse-Normandie","ID_2":21,"NAME_2":"Manche","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.412814527750072,48.950626373291016],[0.386114388704414,48.91054916381836],[0.443109124898967,48.88128662109375],[0.47437018156046,48.88705825805664],[0.496543794870377,48.87878036499029],[0.549868464470023,48.87471008300792],[0.585984230041561,48.87860107421875],[0.619440674781913,48.85274887084961],[0.607868492603359,48.83248901367193],[0.690171241760368,48.79405975341791],[0.730522811412811,48.78559112548834],[0.775034308433646,48.73735809326183],[0.751169919967765,48.703979492187614],[0.767301619052887,48.69582366943371],[0.768455088138694,48.67072296142578],[0.814819097519035,48.67016983032237],[0.82356470823288,48.650665283203125],[0.822398364544028,48.60887527465826],[0.84590852260601,48.609016418457145],[0.849312484264487,48.585941314697266],[0.867284238338584,48.57394409179699],[0.925711214542389,48.55965423583979],[0.924195051193237,48.538040161132926],[0.967740058898983,48.52388000488287],[0.953055024147034,48.48015594482421],[0.935709059238548,48.4755096435548],[0.955576777458305,48.445301055908146],[0.948381423950252,48.40164566040039],[0.907346844673157,48.37010192871094],[0.827866911888236,48.3423118591308],[0.785431504249573,48.34043502807617],[0.756839871406612,48.30046463012701],[0.797485589981136,48.291446685791016],[0.787321388721409,48.26144409179693],[0.829446434974784,48.21136856079107],[0.797655463218746,48.19446182250988],[0.75920873880392,48.18009185791009],[0.723637044429893,48.19814300537115],[0.687393724918422,48.24078369140625],[0.652469277382011,48.26338958740246],[0.613135278225002,48.24273681640631],[0.546795129776058,48.250164031982536],[0.49442341923708,48.28348922729498],[0.505824327468986,48.29365921020519],[0.429964780807609,48.30867767333984],[0.395362317562103,48.3212890625],[0.372679382562637,48.410133361816406],[0.381724506616706,48.42478942871105],[0.363204777240867,48.45156097412109],[0.297909289598465,48.47981643676769],[0.217967852950153,48.4738006591798],[0.172326982021332,48.4638290405274],[0.153319001197872,48.437942504882926],[0.111593373119831,48.43231582641613],[0.103347465396098,48.4133186340332],[0.067361883819103,48.40605926513683],[0.023083170875964,48.38020706176769],[0.003370246384236,48.39599609374994],[-0.054531205445528,48.382003784179744],[-0.057580254971981,48.42908477783208],[-0.05069895833725,48.45058822631847],[-0.108255140483323,48.44802474975586],[-0.148946359753609,48.45878982543957],[-0.166668266057911,48.5147056579591],[-0.144603967666626,48.527751922607415],[-0.207346305251065,48.562519073486385],[-0.242639139294567,48.568000793457145],[-0.260578185319844,48.549133300781364],[-0.243056803941727,48.53706359863287],[-0.268389731645527,48.52066802978521],[-0.32023906707758,48.522930145263615],[-0.336825251579285,48.50242233276373],[-0.368081152439117,48.49311065673828],[-0.446882694959641,48.51493835449224],[-0.478198140859604,48.501571655273494],[-0.509293854236603,48.508842468261776],[-0.553156673908234,48.47296524047846],[-0.593207120895329,48.47084045410162],[-0.654215216636658,48.444545745849545],[-0.658167600631657,48.474845886230526],[-0.725250840187073,48.473468780517635],[-0.715918183326664,48.45089721679699],[-0.75648307800293,48.436935424804744],[-0.77787405252451,48.465412139892635],[-0.816024899482613,48.47118759155285],[-0.860362887382507,48.501457214355575],[-0.847514986991825,48.52085113525396],[-0.805632650852147,48.54975128173828],[-0.775711894035283,48.56183624267584],[-0.75300395488739,48.61964035034173],[-0.773293912410736,48.65670394897461],[-0.741063296794891,48.68077468872076],[-0.796915590763035,48.70907592773443],[-0.840936005115509,48.75222778320318],[-0.808230042457524,48.76011276245123],[-0.780626654624882,48.786651611328125],[-0.743942260742187,48.791923522949325],[-0.682171523570958,48.82183456420898],[-0.691249072551727,48.846233367919865],[-0.624501228332463,48.82697296142584],[-0.549649894237461,48.84627151489258],[-0.509979069232941,48.84597396850591],[-0.464764505624714,48.87098693847656],[-0.410851985216141,48.869960784912166],[-0.345416009426117,48.82183456420898],[-0.298548251390457,48.84915924072276],[-0.268018245696965,48.85318374633794],[-0.144832596182823,48.83246231079112],[-0.083340704441014,48.84433364868164],[-0.013320349156857,48.87662124633789],[-0.009860503487289,48.88379669189459],[0.056447435170412,48.9025535583496],[0.065764389932212,48.92614364624018],[0.136288017034644,48.9504013061524],[0.15521219372755,48.925151824951286],[0.187315776944217,48.94107437133789],[0.238900318741798,48.94249725341797],[0.308721601963043,48.95422744750976],[0.333231478929576,48.94278335571289],[0.356623172760067,48.94962692260742],[0.377446562051887,48.97255706787121],[0.412814527750072,48.950626373291016]]]},"properties":{"ID_0":79,"ISO":"FR-61","NAME_0":"France","ID_1":5,"NAME_1":"Basse-Normandie","ID_2":22,"NAME_2":"Orne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[4.115967273712215,47.123336791992244],[4.115067481994629,47.14616394042969],[4.181901931762752,47.1505126953125],[4.186563968658504,47.13448333740229],[4.150014400482235,47.11404418945324],[4.115967273712215,47.123336791992244]]],[[[4.704238414764518,48.02024078369151],[4.749530792236328,48.00431060791021],[4.789420604705867,48.007869720459034],[4.787781238556022,47.96525573730474],[4.845032691955566,47.9604263305664],[4.86520957946783,47.941562652588004],[4.834023952484131,47.90679550170904],[4.856782436370906,47.895633697509766],[4.874586105346737,47.91952133178716],[4.905961036682243,47.916469573974666],[4.954094409942741,47.86676788330078],[4.961502075195312,47.84057235717779],[4.994125366210938,47.819747924804794],[4.986103057861385,47.80359649658203],[4.917957782745475,47.77709579467779],[4.924775123596248,47.760623931884766],[4.958989620208854,47.761875152588004],[4.971535205841064,47.731079101562614],[4.954513549804744,47.70288848876953],[4.971371173858756,47.69023513793945],[5.056238174438533,47.6948127746582],[5.046803951263428,47.67556762695324],[5.12756538391119,47.64847183227539],[5.160201072692814,47.678153991699276],[5.173409938812313,47.653533935546875],[5.211390972137451,47.64165878295904],[5.236942291259879,47.61677551269537],[5.256230354309196,47.5765495300293],[5.306356430053768,47.60727691650402],[5.374078750610465,47.604541778564396],[5.39980506896984,47.597164154052734],[5.425594806671143,47.63207244873058],[5.478564262390194,47.60538482666026],[5.496639728546255,47.54713058471673],[5.447459697723332,47.496200561523494],[5.399215698242131,47.49901580810547],[5.379534244537297,47.466140747070426],[5.441021919250544,47.44655990600597],[5.430425643921012,47.421356201171875],[5.451393604278508,47.38397216796875],[5.496919155120906,47.38854980468749],[5.495005130767878,47.34143447875982],[5.474295139312744,47.31529617309576],[5.518538951873779,47.3041877746582],[5.488452434539909,47.28814697265631],[5.479135990142822,47.21851348876959],[5.449262142181396,47.20321655273443],[5.458915710449162,47.181934356689446],[5.438985347747803,47.14298629760742],[5.414566516876334,47.132762908935604],[5.41039323806757,47.113834381103516],[5.3856458663941,47.0817489624024],[5.323974609375057,47.073791503906364],[5.283483982086294,47.04631805419933],[5.275326728820914,47.02693557739263],[5.317198276519832,47.015804290771484],[5.275070190429688,46.99802780151367],[5.255236148834229,46.979888916015675],[5.222071647644157,46.9888534545899],[5.164630889892635,46.96423339843756],[5.074944972991943,46.961162567138786],[5.049303531646785,46.98158645629894],[5.003406524658202,46.97214508056652],[4.997223377227897,46.96112823486328],[4.914753913879451,46.96775817871105],[4.893081665039119,46.9514999389649],[4.80623197555542,46.93318176269537],[4.779335021972599,46.91888427734381],[4.744315147399959,46.924434661865234],[4.685219764709529,46.90095520019536],[4.666216373443604,46.912326812744254],[4.678434848785514,46.9304313659669],[4.595808506012019,46.95216369628906],[4.568143844604435,46.99090576171874],[4.547687530517521,46.9953231811524],[4.554809093475399,47.02005386352545],[4.512144565582389,47.01200485229498],[4.489643573760986,47.03200912475586],[4.427280426025504,47.040412902832145],[4.406283378601188,47.049999237060604],[4.402867317199764,47.08227920532238],[4.344250679016113,47.07242965698242],[4.3493847846986,47.096954345703125],[4.276623249053955,47.10799026489263],[4.251650333404598,47.131511688232536],[4.209834098816032,47.155410766601676],[4.21216869354248,47.18112945556646],[4.230875492096061,47.197021484375114],[4.219202518463192,47.219402313232536],[4.177722454071159,47.25273895263666],[4.135148525238151,47.2373619079591],[4.125355720520076,47.24950408935547],[4.115373611450309,47.30753707885753],[4.130406856536922,47.32057571411133],[4.106085777282772,47.33925628662115],[4.10567045211792,47.36601638793951],[4.078052997589111,47.38175201416021],[4.072978019714355,47.41365051269537],[4.119426727295036,47.44355392456066],[4.128831863403319,47.47046279907221],[4.115965843200684,47.48445892333996],[4.11463117599493,47.514755249023544],[4.13772010803234,47.51947402954096],[4.155973434448242,47.55053329467785],[4.172574520111141,47.55081939697277],[4.21257829666132,47.62784576416021],[4.247804641723576,47.65877532958996],[4.265892028808594,47.70395278930664],[4.241387844085807,47.724277496338],[4.260371685028076,47.74061965942388],[4.293037891388053,47.73284530639654],[4.331032752990779,47.75608825683588],[4.319976806640682,47.811428070068416],[4.324863433838004,47.84719848632824],[4.262689590454102,47.844013214111385],[4.264439582824821,47.87150192260748],[4.293424129486084,47.92567443847656],[4.312801837921086,47.962497711181754],[4.352546691894588,47.95663070678722],[4.416409969329834,47.96820068359375],[4.446962356567383,47.956199645996094],[4.495481967926082,47.968048095703125],[4.559968948364315,47.97142410278326],[4.53577423095703,48.006565093994254],[4.578579425811824,48.02833938598644],[4.616806983947867,48.03137588500987],[4.67296028137207,48.015018463134766],[4.704238414764518,48.02024078369151]]]]},"properties":{"ID_0":79,"ISO":"FR-21","NAME_0":"France","ID_1":6,"NAME_1":"Bourgogne","ID_2":23,"NAME_2":"Côte-d'Or","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.106085777282772,47.33925628662115],[4.130406856536922,47.32057571411133],[4.115373611450309,47.30753707885753],[4.125355720520076,47.24950408935547],[4.135148525238151,47.2373619079591],[4.177722454071159,47.25273895263666],[4.219202518463192,47.219402313232536],[4.230875492096061,47.197021484375114],[4.21216869354248,47.18112945556646],[4.209834098816032,47.155410766601676],[4.181901931762752,47.1505126953125],[4.115067481994629,47.14616394042969],[4.115967273712215,47.123336791992244],[4.060379028320369,47.120735168457145],[4.038853168487663,47.07973861694341],[4.071133136749381,47.057842254638786],[4.057330608368034,47.01577758789068],[4.037143707275391,46.98468780517583],[4.053854942321834,46.95977783203125],[4.039772987365779,46.94696426391607],[4.044686794281063,46.901168823242294],[4.06820917129528,46.89682769775385],[4.095235347747803,46.87240600585932],[4.09092712402355,46.8573379516601],[4.048388481140194,46.83795166015625],[4.062137126922721,46.78556060791021],[4.038512706756649,46.78684997558599],[3.963221549987906,46.766029357910156],[3.92824363708496,46.74138259887701],[3.889191389083862,46.728229522705135],[3.844924211502189,46.72198867797863],[3.82655239105236,46.703826904296875],[3.794654130935669,46.702033996582145],[3.783666133880672,46.73604965209966],[3.738632917404288,46.75196075439458],[3.661100625991821,46.73773574829107],[3.629423618316764,46.74945831298834],[3.578034639358521,46.74962234497082],[3.595874309539794,46.725543975830135],[3.548900365829581,46.70555114746094],[3.547825336456299,46.67943572998047],[3.520472288131828,46.68523788452148],[3.486833810806274,46.660560607910156],[3.455299139022884,46.652397155761776],[3.449235200881958,46.690788269043075],[3.434214115142936,46.71221923828124],[3.380713224411068,46.71232986450195],[3.366416215896606,46.69067764282238],[3.318052530288753,46.68844223022455],[3.298052310943547,46.7158775329591],[3.268544197082576,46.71592330932617],[3.204426527023372,46.67875289916992],[3.167414426803703,46.69096755981445],[3.129056215286369,46.72749328613281],[3.083478212356681,46.73777389526373],[3.049694061279297,46.75780868530279],[3.032068252563477,46.7949104309082],[3.057639598846549,46.82513809204107],[3.069401502609367,46.852256774902344],[3.061144828796444,46.89738082885748],[3.050227165222168,46.90915298461913],[3.078275442123413,46.953426361083984],[3.063970804214534,46.97694396972656],[3.074778556823844,47.02999496459972],[3.063618421554622,47.046169281005916],[3.022240638732967,47.063652038574276],[3.031362056732235,47.09288406372076],[3.028282880783138,47.12843704223644],[2.997741222381705,47.20085144042963],[2.979025840759277,47.22906494140636],[2.983390808105469,47.25963592529297],[2.912961483001766,47.30831909179693],[2.882418632507324,47.318023681640625],[2.870246887207145,47.34234237670898],[2.919770956039486,47.410469055175724],[2.931561231613102,47.44067001342785],[2.874625205993596,47.52042388916021],[2.851701736450252,47.53526687622082],[2.856629610061646,47.55141067504888],[2.897469282150382,47.554344177246094],[2.914297342300529,47.56597137451172],[2.958658218383789,47.55738067626953],[2.976537942886353,47.56942749023443],[3.017047405242977,47.55782699584961],[3.058680772781372,47.56875991821295],[3.088024616241512,47.58698654174816],[3.11158108711254,47.583896636963004],[3.123026609420776,47.5394287109375],[3.165190696716365,47.51750183105469],[3.204517126083374,47.523193359374936],[3.235027551651058,47.48963928222656],[3.274682283401603,47.49195480346691],[3.285251617431641,47.50393676757807],[3.339520692825317,47.47926330566412],[3.380385398864803,47.48783111572271],[3.391332387924251,47.50655746459961],[3.449537992477474,47.50387191772461],[3.488276720047053,47.493831634521534],[3.494746446609554,47.52128601074213],[3.514191865921077,47.527225494384815],[3.552142143249569,47.50341033935547],[3.579953908920288,47.497974395751946],[3.583275556564388,47.46149826049799],[3.679358243942318,47.44724273681652],[3.714782238006591,47.4068336486817],[3.738898038864193,47.39682769775396],[3.783302545547543,47.405170440673935],[3.813743352890128,47.38037490844738],[3.864382743835506,47.43432998657232],[3.893396615982112,47.410289764404354],[3.861455440521297,47.39337158203125],[3.871410369873104,47.36717224121088],[3.908792257309074,47.38205718994135],[3.963999271392879,47.365856170654354],[3.972953796386719,47.334999084472656],[4.000779628753719,47.312347412109425],[4.025465965271109,47.313606262207024],[4.048066616058406,47.33953475952154],[4.106085777282772,47.33925628662115]]]},"properties":{"ID_0":79,"ISO":"FR-58","NAME_0":"France","ID_1":6,"NAME_1":"Bourgogne","ID_2":24,"NAME_2":"Nièvre","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.255236148834229,46.979888916015675],[5.26313400268549,46.95352172851562],[5.307367324829102,46.93645858764648],[5.328718662261963,46.88931655883789],[5.360337257385197,46.88433837890631],[5.39160251617443,46.89407348632818],[5.415234565734862,46.861808776855526],[5.459286212921256,46.855243682861385],[5.459489822387809,46.830810546875114],[5.375267505645866,46.82698822021496],[5.328584671020565,46.81291580200201],[5.332496166229362,46.797714233398494],[5.39024829864502,46.770591735839844],[5.366759777069149,46.752395629882926],[5.361726284027213,46.73311233520507],[5.390789508819694,46.726360321045036],[5.42209005355835,46.673030853271484],[5.415008068084717,46.654144287109425],[5.44060134887701,46.63791275024414],[5.413790225982723,46.61464309692383],[5.405690670013541,46.581668853759766],[5.367879867553824,46.56694793701177],[5.359177589416617,46.52014541625982],[5.421061038971061,46.50043869018555],[5.420044422149715,46.48018264770508],[5.373790264129751,46.46044921875],[5.323350906372013,46.46250534057622],[5.310561180114746,46.44677352905285],[5.273676872253474,46.44858932495123],[5.215064048767147,46.46836090087896],[5.201220512390194,46.50782012939458],[5.141041755676383,46.508586883544865],[5.054751396179256,46.48427963256841],[4.980215549469108,46.51520538330078],[4.95371055603033,46.504112243652344],[4.935598850250187,46.51422882080078],[4.915284633636475,46.488235473632926],[4.914447784423942,46.46216201782232],[4.894443511962834,46.44537353515625],[4.888207912445068,46.40298080444336],[4.858530044555607,46.36801528930658],[4.851423263549804,46.32607650756836],[4.810817241668701,46.25454711914068],[4.780213356018123,46.176677703857536],[4.729059219360351,46.1794319152832],[4.721488475799561,46.19683837890625],[4.736181259155217,46.2332000732423],[4.705231189727897,46.25087356567394],[4.707479953765812,46.28470611572277],[4.679780006408805,46.30451583862305],[4.638724803924617,46.30142211914068],[4.617019176483211,46.280620574951286],[4.586510658264274,46.268692016601676],[4.557791709899959,46.29455184936535],[4.537996292114315,46.27025985717779],[4.504000663757324,46.26713943481445],[4.488464355468693,46.28799438476557],[4.435655593872184,46.29940795898449],[4.398757457733154,46.28432083129883],[4.388079643249511,46.21978759765631],[4.363353252410889,46.19856262207031],[4.326642513275203,46.18489456176769],[4.28243160247814,46.156814575195305],[4.245367527008057,46.18822479248058],[4.224992752075252,46.177631378173935],[4.20621538162237,46.19449234008789],[4.1781325340271,46.17368698120117],[4.133393287658691,46.177322387695426],[4.103832244873161,46.19844436645502],[4.059972286224365,46.18845748901373],[4.027487754821777,46.169593811035156],[3.988528490066528,46.169857025146484],[3.965168237686214,46.202865600585994],[3.917106151580754,46.203884124755916],[3.890132427215576,46.2144889831543],[3.908760309219417,46.2606239318847],[3.899533510208187,46.27591323852539],[3.901973485946769,46.29315948486328],[3.947858572006226,46.303672790527344],[3.949013710022029,46.319343566894524],[3.983718633651677,46.31798553466797],[3.991544485092163,46.37041854858404],[3.977568626403865,46.39786911010748],[4.002691268920955,46.44049835205084],[3.998722076416129,46.46490478515631],[3.958134889602718,46.49059295654297],[3.916492223739568,46.49610137939453],[3.892563343048096,46.48088455200207],[3.865262031555119,46.489646911621094],[3.863827466964835,46.51267623901373],[3.837014198303279,46.53160476684581],[3.811745882034359,46.52058410644537],[3.75577640533453,46.536151885986385],[3.741006374359188,46.560218811035156],[3.734557390213013,46.60377883911133],[3.713443994522208,46.61072158813482],[3.695942640304622,46.66140747070324],[3.670168876648006,46.67237472534191],[3.62280178070074,46.740894317626896],[3.629423618316764,46.74945831298834],[3.661100625991821,46.73773574829107],[3.738632917404288,46.75196075439458],[3.783666133880672,46.73604965209966],[3.794654130935669,46.702033996582145],[3.82655239105236,46.703826904296875],[3.844924211502189,46.72198867797863],[3.889191389083862,46.728229522705135],[3.92824363708496,46.74138259887701],[3.963221549987906,46.766029357910156],[4.038512706756649,46.78684997558599],[4.062137126922721,46.78556060791021],[4.048388481140194,46.83795166015625],[4.09092712402355,46.8573379516601],[4.095235347747803,46.87240600585932],[4.06820917129528,46.89682769775385],[4.044686794281063,46.901168823242294],[4.039772987365779,46.94696426391607],[4.053854942321834,46.95977783203125],[4.037143707275391,46.98468780517583],[4.057330608368034,47.01577758789068],[4.071133136749381,47.057842254638786],[4.038853168487663,47.07973861694341],[4.060379028320369,47.120735168457145],[4.115967273712215,47.123336791992244],[4.150014400482235,47.11404418945324],[4.186563968658504,47.13448333740229],[4.181901931762752,47.1505126953125],[4.209834098816032,47.155410766601676],[4.251650333404598,47.131511688232536],[4.276623249053955,47.10799026489263],[4.3493847846986,47.096954345703125],[4.344250679016113,47.07242965698242],[4.402867317199764,47.08227920532238],[4.406283378601188,47.049999237060604],[4.427280426025504,47.040412902832145],[4.489643573760986,47.03200912475586],[4.512144565582389,47.01200485229498],[4.554809093475399,47.02005386352545],[4.547687530517521,46.9953231811524],[4.568143844604435,46.99090576171874],[4.595808506012019,46.95216369628906],[4.678434848785514,46.9304313659669],[4.666216373443604,46.912326812744254],[4.685219764709529,46.90095520019536],[4.744315147399959,46.924434661865234],[4.779335021972599,46.91888427734381],[4.80623197555542,46.93318176269537],[4.893081665039119,46.9514999389649],[4.914753913879451,46.96775817871105],[4.997223377227897,46.96112823486328],[5.003406524658202,46.97214508056652],[5.049303531646785,46.98158645629894],[5.074944972991943,46.961162567138786],[5.164630889892635,46.96423339843756],[5.222071647644157,46.9888534545899],[5.255236148834229,46.979888916015675]]]},"properties":{"ID_0":79,"ISO":"FR-71","NAME_0":"France","ID_1":6,"NAME_1":"Bourgogne","ID_2":25,"NAME_2":"Saône-et-Loire","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.293424129486084,47.92567443847656],[4.264439582824821,47.87150192260748],[4.262689590454102,47.844013214111385],[4.324863433838004,47.84719848632824],[4.319976806640682,47.811428070068416],[4.331032752990779,47.75608825683588],[4.293037891388053,47.73284530639654],[4.260371685028076,47.74061965942388],[4.241387844085807,47.724277496338],[4.265892028808594,47.70395278930664],[4.247804641723576,47.65877532958996],[4.21257829666132,47.62784576416021],[4.172574520111141,47.55081939697277],[4.155973434448242,47.55053329467785],[4.13772010803234,47.51947402954096],[4.11463117599493,47.514755249023544],[4.115965843200684,47.48445892333996],[4.128831863403319,47.47046279907221],[4.119426727295036,47.44355392456066],[4.072978019714355,47.41365051269537],[4.078052997589111,47.38175201416021],[4.10567045211792,47.36601638793951],[4.106085777282772,47.33925628662115],[4.048066616058406,47.33953475952154],[4.025465965271109,47.313606262207024],[4.000779628753719,47.312347412109425],[3.972953796386719,47.334999084472656],[3.963999271392879,47.365856170654354],[3.908792257309074,47.38205718994135],[3.871410369873104,47.36717224121088],[3.861455440521297,47.39337158203125],[3.893396615982112,47.410289764404354],[3.864382743835506,47.43432998657232],[3.813743352890128,47.38037490844738],[3.783302545547543,47.405170440673935],[3.738898038864193,47.39682769775396],[3.714782238006591,47.4068336486817],[3.679358243942318,47.44724273681652],[3.583275556564388,47.46149826049799],[3.579953908920288,47.497974395751946],[3.552142143249569,47.50341033935547],[3.514191865921077,47.527225494384815],[3.494746446609554,47.52128601074213],[3.488276720047053,47.493831634521534],[3.449537992477474,47.50387191772461],[3.391332387924251,47.50655746459961],[3.380385398864803,47.48783111572271],[3.339520692825317,47.47926330566412],[3.285251617431641,47.50393676757807],[3.274682283401603,47.49195480346691],[3.235027551651058,47.48963928222656],[3.204517126083374,47.523193359374936],[3.165190696716365,47.51750183105469],[3.123026609420776,47.5394287109375],[3.11158108711254,47.583896636963004],[3.088024616241512,47.58698654174816],[3.058680772781372,47.56875991821295],[3.017047405242977,47.55782699584961],[2.976537942886353,47.56942749023443],[2.94035530090332,47.59820938110362],[2.93232083320629,47.62704467773443],[2.954234361648616,47.6456871032716],[2.918154954910335,47.66979980468756],[2.924160003662109,47.6824951171875],[2.848968982696647,47.71685028076172],[2.856477022171021,47.76173782348633],[2.912915229797306,47.76938629150401],[2.935591697692928,47.763248443603516],[2.988902330398559,47.786125183105526],[3.023797988891715,47.786373138427734],[3.013874053955135,47.83183670043951],[3.03382396697998,47.8438720703125],[3.011490821838379,47.87509918212885],[3.011818408966121,47.90482330322277],[3.105272054672241,47.94694137573242],[3.128118753433341,47.97251129150402],[3.120845317840689,48.00936126708996],[3.102175712585506,48.022457122802734],[3.095364570617733,48.05397415161133],[3.050471305847225,48.07233428955078],[3.027273178100643,48.130695343017635],[3.013229846954289,48.14347839355469],[2.936314344406241,48.16339111328131],[2.934748649597282,48.17882156372081],[2.971666336059627,48.203411102295036],[3.00599050521862,48.20942306518555],[3.043708086013794,48.27184295654297],[3.01568508148199,48.30731582641607],[3.040571212768554,48.32892990112316],[3.049451351165771,48.360031127929744],[3.098776817321777,48.3577499389649],[3.139868736267147,48.372600555420036],[3.180979967117366,48.374557495117244],[3.204450368881282,48.36420059204112],[3.251020669937133,48.36510086059576],[3.283174753189087,48.38138580322271],[3.310689926147461,48.37291336059576],[3.363938093185482,48.37532424926758],[3.385177135467529,48.39886474609369],[3.414791584015006,48.390274047851506],[3.450114965438956,48.37285232543945],[3.504410505294913,48.365489959716854],[3.545108795166072,48.33454895019542],[3.54390382766735,48.319789886474716],[3.587536334991512,48.29848098754883],[3.582508802414055,48.282840728759766],[3.615187406540031,48.27253723144542],[3.624601602554435,48.25600433349603],[3.601701259613038,48.238765716552734],[3.621602296829224,48.22561264038086],[3.575186491012573,48.188739776611435],[3.59396672248846,48.17869567871105],[3.623548269271965,48.192005157470646],[3.640509605407772,48.1846160888673],[3.667869567871207,48.13921356201183],[3.705728054046688,48.14519882202154],[3.745480060577449,48.16753387451172],[3.76893258094799,48.132854461670036],[3.80165958404541,48.106731414795036],[3.798608064651603,48.086170196533196],[3.826351881027222,48.06351470947277],[3.821979761123771,48.0439186096192],[3.870242118835506,48.01631164550781],[3.839811325073299,48.00389099121093],[3.850027084350529,47.98365783691406],[3.914165973663273,47.975589752197266],[3.902393102645874,47.93829345703125],[3.985625267028922,47.930515289306584],[4.054893970489502,47.93007659912109],[4.089797496795711,47.9439697265625],[4.113698482513371,47.92815780639654],[4.167336463928223,47.96001052856451],[4.223899841308707,47.9484977722168],[4.246209621429443,47.93040847778325],[4.293424129486084,47.92567443847656]]]},"properties":{"ID_0":79,"ISO":"FR-89","NAME_0":"France","ID_1":6,"NAME_1":"Bourgogne","ID_2":26,"NAME_2":"Yonne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.125972986221313,48.606597900390625],[-2.124900341033822,48.59341430664057],[-2.094321966171208,48.57175445556646],[-2.06006908416748,48.57009887695324],[-2.033971071243286,48.55110549926769],[-2.002640008926392,48.568771362304794],[-1.969861030578556,48.5360679626466],[-1.924801707267704,48.54517364501953],[-1.911376714706421,48.51651763916026],[-1.922972083091736,48.49943542480468],[-1.925874710083008,48.45744705200201],[-1.948634743690491,48.446456909179744],[-1.938068509101867,48.41984558105462],[-1.946466326713505,48.367122650146484],[-1.930317640304509,48.34813690185547],[-1.966897368430978,48.34281921386719],[-1.955451130866891,48.31879806518566],[-1.964571714401245,48.30143737792968],[-1.99603271484375,48.296649932861385],[-2.014100551605168,48.279533386230526],[-2.07761549949646,48.29175949096674],[-2.108601808547974,48.25479888916027],[-2.150047063827515,48.2587509155274],[-2.187172174453735,48.24399948120123],[-2.191934585571289,48.20822525024408],[-2.213881969451791,48.21365737915044],[-2.224738121032601,48.17060470581066],[-2.283247947692871,48.14529800415039],[-2.287278413772526,48.133747100830135],[-2.31692886352539,48.13411712646479],[-2.330117702484131,48.120361328125114],[-2.373472452163696,48.12441635131841],[-2.375704765319711,48.1414413452149],[-2.42090916633606,48.173244476318416],[-2.447034358978271,48.172519683838004],[-2.488395690917968,48.15791702270508],[-2.534345626830998,48.15694046020507],[-2.514927625656071,48.131233215332145],[-2.551780462265014,48.095745086669915],[-2.548678874969426,48.076480865478516],[-2.579224109649601,48.06974029541021],[-2.623323917388916,48.036903381347656],[-2.668667554855233,48.046779632568416],[-2.651993036270142,48.11997222900401],[-2.666523694992065,48.132453918457024],[-2.702304124832153,48.11872482299815],[-2.74816632270813,48.11386871337902],[-2.775248765945378,48.0870361328125],[-2.784963607788029,48.122615814208984],[-2.810400485992432,48.14655303955078],[-2.849796772003117,48.141212463378906],[-2.891453027725219,48.16473388671881],[-2.943871259689274,48.171703338623104],[-2.99975323677063,48.16071319580084],[-3.018382072448674,48.19109344482433],[-3.055000066757202,48.20650100708002],[-3.12992525100708,48.19867324829113],[-3.130223274230957,48.17687225341797],[-3.147882223129216,48.1610946655274],[-3.192225217819214,48.16396331787115],[-3.214832305908146,48.15190505981457],[-3.284694433212223,48.14376449584961],[-3.336929321289006,48.1715660095216],[-3.417596340179443,48.1456413269044],[-3.422076940536499,48.17334747314459],[-3.480453729629517,48.18585968017578],[-3.532567739486694,48.17832946777355],[-3.564838886260986,48.18574523925787],[-3.541258335113469,48.20918655395508],[-3.553804874420166,48.24085998535162],[-3.526511907577515,48.2610969543457],[-3.522957086562997,48.28171539306651],[-3.553027868270874,48.29301452636719],[-3.548160314559936,48.31487274169927],[-3.562813997268619,48.347023010253906],[-3.555155277252197,48.37691497802746],[-3.607681751251164,48.38832855224621],[-3.59876799583435,48.42264556884777],[-3.550496101379395,48.447830200195426],[-3.592162609100341,48.464504241943416],[-3.604167461395264,48.494049072265625],[-3.559418916702271,48.52703857421869],[-3.553823709487915,48.54128265380871],[-3.594583034515381,48.58574676513683],[-3.629297494888305,48.58836364746099],[-3.6541810035705,48.61729431152343],[-3.663535594940129,48.653800964355526],[-3.649798393249455,48.66708374023437],[-3.580694913864079,48.67041778564464],[-3.567915916442871,48.685417175293026],[-3.584861040115356,48.719860076904354],[-3.549860954284611,48.73236083984381],[-3.54958510398859,48.746528625488395],[-3.5881929397583,48.77125167846691],[-3.565972089767399,48.80875015258794],[-3.526251077651864,48.83097076416021],[-3.491250038146915,48.82958221435547],[-3.433471918106022,48.813472747802734],[-3.427361965179387,48.798473358154354],[-3.351249933242798,48.8212509155274],[-3.323194026947021,48.8381958007813],[-3.292917966842651,48.831249237060604],[-3.247915983200073,48.857639312744254],[-3.216805934905949,48.86541748046875],[-3.212084054946843,48.84069442749017],[-3.190416097640934,48.83874893188488],[-3.093194961547795,48.8704185485841],[-3.075695991516113,48.85874938964844],[-3.094583034515381,48.834304809570256],[-3.040138959884644,48.820137023925895],[-3.012083053588867,48.822082519531364],[-3.029027938842717,48.784027099609425],[-3.012917041778564,48.76680374145513],[-2.952084064483643,48.76541519165039],[-2.926805973052921,48.70958328247076],[-2.89069390296936,48.69958496093755],[-2.879582881927433,48.67458343505865],[-2.856249094009399,48.67430496215826],[-2.818471908569222,48.65013885498052],[-2.82013797760004,48.594306945800895],[-2.778470993041992,48.585140228271484],[-2.761528015136719,48.56597137451172],[-2.712915897369271,48.55236053466808],[-2.71402907371521,48.523193359375114],[-2.688194990158024,48.50097274780284],[-2.663194894790649,48.53402709960943],[-2.602361917495728,48.55402755737299],[-2.551527976989689,48.59624862670904],[-2.494859933853149,48.609027862548885],[-2.472359895706177,48.6243057250976],[-2.467916011810303,48.65069580078125],[-2.435139894485474,48.652637481689396],[-2.418751001358032,48.64097213745128],[-2.328471899032479,48.6734733581543],[-2.287082910537662,48.66847229003912],[-2.312361001968384,48.63291549682622],[-2.297084093093758,48.62680435180669],[-2.260694980621338,48.645694732666065],[-2.243192911148071,48.62069320678716],[-2.202359914779663,48.58402633666992],[-2.179305076599121,48.57680511474621],[-2.153750896453857,48.616806030273494],[-2.125972986221313,48.606597900390625]]]},"properties":{"ID_0":79,"ISO":"FR-22","NAME_0":"France","ID_1":7,"NAME_1":"Bretagne","ID_2":27,"NAME_2":"Côtes-d'Armor","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Cotes-Du-Nord"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.070693969726506,48.4859733581543],[-5.047083854675293,48.46429443359375],[-5.087360858917236,48.444305419921875],[-5.134028911590462,48.45958328247082],[-5.070693969726506,48.4859733581543]]],[[[-3.649798393249455,48.66708374023437],[-3.663535594940129,48.653800964355526],[-3.6541810035705,48.61729431152343],[-3.629297494888305,48.58836364746099],[-3.594583034515381,48.58574676513683],[-3.553823709487915,48.54128265380871],[-3.559418916702271,48.52703857421869],[-3.604167461395264,48.494049072265625],[-3.592162609100341,48.464504241943416],[-3.550496101379395,48.447830200195426],[-3.59876799583435,48.42264556884777],[-3.607681751251164,48.38832855224621],[-3.555155277252197,48.37691497802746],[-3.562813997268619,48.347023010253906],[-3.548160314559936,48.31487274169927],[-3.553027868270874,48.29301452636719],[-3.522957086562997,48.28171539306651],[-3.526511907577515,48.2610969543457],[-3.553804874420166,48.24085998535162],[-3.541258335113469,48.20918655395508],[-3.564838886260986,48.18574523925787],[-3.620747566223087,48.170978546142685],[-3.671561717987004,48.15147781372076],[-3.696016788482666,48.15201950073242],[-3.73248553276062,48.11294937133795],[-3.70804214477539,48.09815216064459],[-3.701509237289371,48.0648651123048],[-3.674598932266235,48.0549201965332],[-3.641040563583374,47.985794067382805],[-3.554116010665894,47.99188232421875],[-3.497449398040715,47.97672653198242],[-3.479923963546696,47.95079803466808],[-3.417730331420842,47.972167968750114],[-3.393208265304565,47.95728302001964],[-3.388025522231998,47.927036285400504],[-3.411355972289982,47.90480804443371],[-3.403891563415527,47.86838531494151],[-3.449854373931885,47.86132812500011],[-3.457661867141724,47.836631774902344],[-3.485876321792545,47.82529449462902],[-3.518946886062622,47.839061737060604],[-3.538018941879272,47.835231781005916],[-3.519305944442692,47.80306243896484],[-3.532639026641789,47.76652908325195],[-3.55125093460083,47.76235961914074],[-3.688194990158081,47.778751373291016],[-3.735137939453125,47.80347061157238],[-3.757361888885498,47.790416717529354],[-3.83847188949585,47.796806335449276],[-3.895138025283813,47.83291625976573],[-3.90819501876831,47.86458206176758],[-3.95847296714777,47.896526336670036],[-3.98902702331543,47.88208389282226],[-3.9809730052948,47.85374832153326],[-4.042082786560059,47.84652709960937],[-4.080694198608398,47.86458206176758],[-4.128193855285588,47.86375045776361],[-4.162360191345215,47.84986114501958],[-4.160416126251164,47.822917938232536],[-4.191805839538574,47.79541778564453],[-4.294861793518066,47.7918052673341],[-4.346250057220345,47.80014038085932],[-4.37375020980835,47.79430389404302],[-4.390139102935677,47.809860229492294],[-4.346528053283691,47.835414886474666],[-4.362916946411076,47.88930511474615],[-4.423470973968449,47.96291732788097],[-4.451806068420296,47.98152923583979],[-4.541250228881779,48.01263809204107],[-4.559028148651066,47.998748779296875],[-4.643194198608398,48.022914886474666],[-4.698194026947021,48.025138854980526],[-4.713472843170166,48.03291702270519],[-4.716248989105168,48.065418243408196],[-4.672359943389836,48.06180572509777],[-4.536528110504037,48.09013748168957],[-4.488471984863224,48.08736038208008],[-4.477362155914307,48.09708404541027],[-4.434028148651066,48.09736251831066],[-4.417638778686523,48.107360839843864],[-4.375137805938721,48.110694885253906],[-4.306805133819523,48.089305877685604],[-4.28680515289301,48.10347366333019],[-4.274581909179631,48.15569305419922],[-4.316805839538517,48.203750610351555],[-4.361804962158203,48.20597076416027],[-4.378471851348877,48.21847152709972],[-4.465694904327336,48.2379150390625],[-4.490694999694823,48.23569488525396],[-4.51847314834589,48.191249847412045],[-4.550416946411076,48.19402694702154],[-4.561528205871582,48.236526489257926],[-4.618750095367432,48.26680374145508],[-4.570694923400822,48.2823600769044],[-4.579583168029728,48.317916870117244],[-4.545138835906982,48.32513809204095],[-4.551805019378662,48.2940292358399],[-4.51847314834589,48.297916412353516],[-4.494861125945988,48.28180694580078],[-4.449862003326416,48.29319381713873],[-4.40930700302124,48.27597045898448],[-4.367361068725586,48.27791595458996],[-4.309027194976807,48.29735946655273],[-4.255972862243539,48.28152847290039],[-4.230416774749756,48.29624938964838],[-4.287640094757023,48.31375122070324],[-4.32791614532465,48.31513977050781],[-4.305973052978516,48.34263992309581],[-4.365971088409424,48.34458160400396],[-4.371806144714299,48.327083587646484],[-4.440694808959961,48.3265266418457],[-4.444582939147892,48.349861145019524],[-4.422639846801701,48.36708450317394],[-4.435416221618596,48.382915496826286],[-4.501804828643799,48.377082824707145],[-4.532916069030648,48.357917785644524],[-4.552639007568359,48.359027862548885],[-4.608194828033446,48.337638854980405],[-4.680417060852051,48.35569381713867],[-4.709582805633545,48.32986068725597],[-4.769583225250187,48.32791519165045],[-4.781527996063176,48.35402679443371],[-4.762639045715331,48.37874984741211],[-4.796248912811279,48.41430664062494],[-4.78430700302124,48.444026947021484],[-4.760694980621338,48.470138549804794],[-4.780694007873478,48.49514007568371],[-4.776805877685547,48.519584655761825],[-4.750693798065186,48.54402923583984],[-4.705138206481877,48.570693969726676],[-4.612915992736816,48.573192596435604],[-4.547916889190617,48.63597106933593],[-4.522360801696777,48.63680648803705],[-4.502360820770264,48.62152862548834],[-4.463472843170108,48.62736129760748],[-4.429862022399902,48.65319442749034],[-4.395970821380615,48.655693054199276],[-4.346806049346924,48.67708206176758],[-4.324028015136719,48.67708206176758],[-4.275972843170109,48.650417327880916],[-4.224027156829834,48.65347290039073],[-4.190415859222298,48.68430709838867],[-4.116250991821289,48.69625091552734],[-4.042916774749756,48.70291519165045],[-3.992640018463077,48.725692749023494],[-3.963195085525513,48.722637176513615],[-3.97569394111622,48.69874954223644],[-3.968749999999886,48.675415039062614],[-3.917083978652897,48.6731948852539],[-3.897082090377807,48.645694732666065],[-3.857083082199097,48.65124893188488],[-3.856805086135864,48.68624877929699],[-3.84263801574707,48.7073593139649],[-3.815694093704224,48.716526031494084],[-3.781527996063118,48.702362060546875],[-3.737360000610351,48.70958328247076],[-3.684307098388672,48.68847274780285],[-3.656250953674202,48.6973609924317],[-3.649798393249455,48.66708374023437]]]]},"properties":{"ID_0":79,"ISO":"FR-29","NAME_0":"France","ID_1":7,"NAME_1":"Bretagne","ID_2":28,"NAME_2":"Finistère","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.002640008926392,48.568771362304794],[-2.033971071243286,48.55110549926769],[-2.06006908416748,48.57009887695324],[-2.094321966171208,48.57175445556646],[-2.124900341033822,48.59341430664057],[-2.125972986221313,48.606597900390625],[-2.132082939147949,48.638748168945426],[-2.086250066757202,48.63486099243175],[-2.055696010589543,48.640693664550895],[-2.026248931884766,48.616806030273494],[-2.002640008926392,48.568771362304794]]],[[[-1.578202247619629,48.64097213745128],[-1.566049337387028,48.61482620239269],[-1.538887023925781,48.59745788574219],[-1.521005153656006,48.56705474853527],[-1.533109784126225,48.54943847656256],[-1.49573278427124,48.5083122253418],[-1.489947438239994,48.48937606811523],[-1.454089283943119,48.48772430419933],[-1.427751541137695,48.46234893798839],[-1.382966637611389,48.45687484741216],[-1.346532940864563,48.47311782836925],[-1.341414928436279,48.48920822143555],[-1.279003739356995,48.50917816162115],[-1.272910118103027,48.53372192382812],[-1.249492645263672,48.54369735717785],[-1.166723966598511,48.53007888793951],[-1.145708680152893,48.517654418945426],[-1.117276906967163,48.5216522216798],[-1.070164561271667,48.50849533081055],[-1.07739245891571,48.49109649658208],[-1.06464946269989,48.466911315918075],[-1.080219030380249,48.44190216064459],[-1.079734683036747,48.41738128662109],[-1.052792549133244,48.380928039550724],[-1.059720516204834,48.35104370117187],[-1.045829653739929,48.329654693603565],[-1.083227038383427,48.29624176025384],[-1.098671793937683,48.25130844116222],[-1.074356555938607,48.20046997070324],[-1.0782293081283,48.179965972900504],[-1.064167499542236,48.1584930419923],[-1.049132823944035,48.089595794677734],[-1.021497130393925,48.068405151367244],[-1.03355431556696,48.032608032226676],[-1.021712303161621,47.99540328979492],[-1.068830132484436,47.98294830322271],[-1.107516050338688,47.988876342773494],[-1.156194806098938,47.96445465087896],[-1.189162731170654,47.867710113525504],[-1.238251686096191,47.80998992919927],[-1.245882391929626,47.77671813964844],[-1.364081025123596,47.80070114135748],[-1.391528964042664,47.82831954956055],[-1.481872677802983,47.831802368164006],[-1.468448042869511,47.80590438842785],[-1.504019498825073,47.80105972290039],[-1.530422329902535,47.78477859497082],[-1.594141364097595,47.77603149414068],[-1.627131342887822,47.75982666015631],[-1.638130903243905,47.722209930420036],[-1.729713439941293,47.69934082031256],[-1.771608114242554,47.698677062988224],[-1.862789273262024,47.70733261108409],[-1.884930491447392,47.696010589599666],[-1.935304403304997,47.68680572509776],[-1.956328749656621,47.6711883544923],[-1.973400950431824,47.69415283203125],[-2.01228404045105,47.666454315185604],[-2.047413110732975,47.663787841796875],[-2.082051515579167,47.649421691894645],[-2.097035646438542,47.631359100341854],[-2.112425327301025,47.64754486083996],[-2.103850126266423,47.67618942260748],[-2.122663259506226,47.68267059326172],[-2.109456777572518,47.735877990722656],[-2.059859752654915,47.73831558227539],[-2.11009836196888,47.77859878540045],[-2.072891712188721,47.791828155517685],[-2.07046365737915,47.81140518188482],[-2.036044836044255,47.83346176147461],[-2.053929567336979,47.85095214843756],[-2.095195531845036,47.84325790405279],[-2.114176511764526,47.878829956054744],[-2.078951597213688,47.91949081420898],[-2.104672670364323,47.951976776123104],[-2.146601915359497,47.983940124511776],[-2.176728725433293,47.98005294799816],[-2.238196849822884,47.99933624267578],[-2.287538766860961,47.99150466918957],[-2.273288488388062,48.031070709228516],[-2.242425680160522,48.0526008605957],[-2.191350221633854,48.05244827270508],[-2.171431303024292,48.063194274902344],[-2.181674480438232,48.0831413269043],[-2.249160289764347,48.0841178894043],[-2.25633001327509,48.110321044921875],[-2.287278413772526,48.133747100830135],[-2.283247947692871,48.14529800415039],[-2.224738121032601,48.17060470581066],[-2.213881969451791,48.21365737915044],[-2.191934585571289,48.20822525024408],[-2.187172174453735,48.24399948120123],[-2.150047063827515,48.2587509155274],[-2.108601808547974,48.25479888916027],[-2.07761549949646,48.29175949096674],[-2.014100551605168,48.279533386230526],[-1.99603271484375,48.296649932861385],[-1.964571714401245,48.30143737792968],[-1.955451130866891,48.31879806518566],[-1.966897368430978,48.34281921386719],[-1.930317640304509,48.34813690185547],[-1.946466326713505,48.367122650146484],[-1.938068509101867,48.41984558105462],[-1.948634743690491,48.446456909179744],[-1.925874710083008,48.45744705200201],[-1.922972083091736,48.49943542480468],[-1.911376714706421,48.51651763916026],[-1.924801707267704,48.54517364501953],[-1.969861030578556,48.5360679626466],[-1.960973024368286,48.54902648925781],[-2.027360916137695,48.64097213745128],[-1.989583015441837,48.664028167724716],[-1.974583983421325,48.68291854858409],[-1.938472986221313,48.694358825683594],[-1.896528005599976,48.69180679321294],[-1.862082958221436,48.70069503784173],[-1.836526989936829,48.67874908447271],[-1.8626389503479,48.66708374023437],[-1.868749976158142,48.643196105956974],[-1.836248993873596,48.61319351196289],[-1.779304981231633,48.605693817138786],[-1.706527948379517,48.60680389404296],[-1.639307022094726,48.61819458007824],[-1.604027986526489,48.63902664184576],[-1.578202247619629,48.64097213745128]]]]},"properties":{"ID_0":79,"ISO":"FR-35","NAME_0":"France","ID_1":7,"NAME_1":"Bretagne","ID_2":29,"NAME_2":"Ille-et-Vilaine","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.252082109451237,47.39097213745117],[-3.193749904632568,47.365970611572266],[-3.155694961547738,47.362640380859375],[-3.14625096321106,47.333473205566406],[-3.103195905685425,47.31569290161138],[-3.057915925979614,47.31180572509777],[-3.074583053588867,47.286529541015625],[-3.137084007263127,47.2870826721192],[-3.175138950347844,47.301250457763786],[-3.21875,47.29319381713873],[-3.2501380443573,47.31652832031256],[-3.264305114746094,47.35208511352545],[-3.252082109451237,47.39097213745117]]],[[[-3.49680495262146,47.65430450439458],[-3.427361965179387,47.64152908325207],[-3.46347188949585,47.6198616027832],[-3.505970954895019,47.63791656494146],[-3.49680495262146,47.65430450439458]]],[[[-2.287278413772526,48.133747100830135],[-2.25633001327509,48.110321044921875],[-2.249160289764347,48.0841178894043],[-2.181674480438232,48.0831413269043],[-2.171431303024292,48.063194274902344],[-2.191350221633854,48.05244827270508],[-2.242425680160522,48.0526008605957],[-2.273288488388062,48.031070709228516],[-2.287538766860961,47.99150466918957],[-2.238196849822884,47.99933624267578],[-2.176728725433293,47.98005294799816],[-2.146601915359497,47.983940124511776],[-2.104672670364323,47.951976776123104],[-2.078951597213688,47.91949081420898],[-2.114176511764526,47.878829956054744],[-2.095195531845036,47.84325790405279],[-2.053929567336979,47.85095214843756],[-2.036044836044255,47.83346176147461],[-2.07046365737915,47.81140518188482],[-2.072891712188721,47.791828155517685],[-2.11009836196888,47.77859878540045],[-2.059859752654915,47.73831558227539],[-2.109456777572518,47.735877990722656],[-2.122663259506226,47.68267059326172],[-2.103850126266423,47.67618942260748],[-2.112425327301025,47.64754486083996],[-2.097035646438542,47.631359100341854],[-2.086480855941772,47.60325622558605],[-2.10252404212946,47.595302581787166],[-2.098851680755615,47.533451080322266],[-2.153398513793945,47.52202606201183],[-2.155189990997314,47.497817993164176],[-2.189703941345158,47.49587631225585],[-2.216831922531128,47.50705718994146],[-2.244283676147461,47.493610382080135],[-2.259483098983708,47.51185226440423],[-2.298099279403687,47.515476226806584],[-2.316133260726929,47.46251678466808],[-2.410409450531006,47.45883178710943],[-2.423027276992798,47.47712326049815],[-2.457982301711979,47.447639465332145],[-2.498193979263305,47.456806182861385],[-2.489027976989746,47.47263717651372],[-2.444581985473633,47.49958419799816],[-2.520694017410221,47.5268058776856],[-2.557917118072453,47.51347351074213],[-2.662360906600952,47.51958465576172],[-2.68069410324091,47.49680709838867],[-2.716804981231689,47.50652694702148],[-2.814028024673405,47.48569488525396],[-2.850972890853882,47.49874877929699],[-2.847081899642944,47.51180648803722],[-2.885138988494816,47.53791809082031],[-2.912360906600952,47.5412483215332],[-2.909027099609261,47.56041717529297],[-2.82013797760004,47.54291534423834],[-2.787637948989868,47.552917480468864],[-2.752917051315251,47.537639617919915],[-2.713193893432617,47.582916259765625],[-2.758749961853027,47.61430740356445],[-2.782083988189697,47.620693206787166],[-2.849307060241699,47.61875152587885],[-2.887548923492432,47.603473663330135],[-2.905694961547852,47.58180618286144],[-2.92736005783081,47.60152816772461],[-2.962639093398991,47.589862823486264],[-2.929582118988037,47.55402755737305],[-2.967638969421329,47.55819320678705],[-3.05124902725214,47.57819366455078],[-3.097917079925537,47.564582824706974],[-3.124583005905151,47.56680679321288],[-3.132917881011963,47.533195495605526],[-3.108472108840942,47.489028930664176],[-3.133471965789738,47.476806640625114],[-3.151804924011117,47.50180435180663],[-3.153194904327393,47.52763748168957],[-3.135694026947021,47.544303894043026],[-3.139859914779663,47.579029083251946],[-3.163471937179565,47.609306335449276],[-3.194859981536808,47.62097167968756],[-3.211527109146061,47.64236068725586],[-3.209027051925659,47.669303894042905],[-3.168194055557137,47.68041610717785],[-3.124305009841919,47.72097396850591],[-3.167360067367497,47.7301406860351],[-3.218472003936711,47.6654167175293],[-3.281528949737492,47.68652725219738],[-3.287360906600895,47.699306488037216],[-3.327362060546875,47.70763778686529],[-3.344027042388859,47.720417022705135],[-3.374305963516235,47.719860076904354],[-3.382637977600041,47.70180511474615],[-3.453192949294987,47.69541549682623],[-3.500972986221313,47.73041534423834],[-3.530972957611084,47.779582977295036],[-3.519305944442692,47.80306243896484],[-3.538018941879272,47.835231781005916],[-3.518946886062622,47.839061737060604],[-3.485876321792545,47.82529449462902],[-3.457661867141724,47.836631774902344],[-3.449854373931885,47.86132812500011],[-3.403891563415527,47.86838531494151],[-3.411355972289982,47.90480804443371],[-3.388025522231998,47.927036285400504],[-3.393208265304565,47.95728302001964],[-3.417730331420842,47.972167968750114],[-3.479923963546696,47.95079803466808],[-3.497449398040715,47.97672653198242],[-3.554116010665894,47.99188232421875],[-3.641040563583374,47.985794067382805],[-3.674598932266235,48.0549201965332],[-3.701509237289371,48.0648651123048],[-3.70804214477539,48.09815216064459],[-3.73248553276062,48.11294937133795],[-3.696016788482666,48.15201950073242],[-3.671561717987004,48.15147781372076],[-3.620747566223087,48.170978546142685],[-3.564838886260986,48.18574523925787],[-3.532567739486694,48.17832946777355],[-3.480453729629517,48.18585968017578],[-3.422076940536499,48.17334747314459],[-3.417596340179443,48.1456413269044],[-3.336929321289006,48.1715660095216],[-3.284694433212223,48.14376449584961],[-3.214832305908146,48.15190505981457],[-3.192225217819214,48.16396331787115],[-3.147882223129216,48.1610946655274],[-3.130223274230957,48.17687225341797],[-3.12992525100708,48.19867324829113],[-3.055000066757202,48.20650100708002],[-3.018382072448674,48.19109344482433],[-2.99975323677063,48.16071319580084],[-2.943871259689274,48.171703338623104],[-2.891453027725219,48.16473388671881],[-2.849796772003117,48.141212463378906],[-2.810400485992432,48.14655303955078],[-2.784963607788029,48.122615814208984],[-2.775248765945378,48.0870361328125],[-2.74816632270813,48.11386871337902],[-2.702304124832153,48.11872482299815],[-2.666523694992065,48.132453918457024],[-2.651993036270142,48.11997222900401],[-2.668667554855233,48.046779632568416],[-2.623323917388916,48.036903381347656],[-2.579224109649601,48.06974029541021],[-2.548678874969426,48.076480865478516],[-2.551780462265014,48.095745086669915],[-2.514927625656071,48.131233215332145],[-2.534345626830998,48.15694046020507],[-2.488395690917968,48.15791702270508],[-2.447034358978271,48.172519683838004],[-2.42090916633606,48.173244476318416],[-2.375704765319711,48.1414413452149],[-2.373472452163696,48.12441635131841],[-2.330117702484131,48.120361328125114],[-2.31692886352539,48.13411712646479],[-2.287278413772526,48.133747100830135]]]]},"properties":{"ID_0":79,"ISO":"FR-56","NAME_0":"France","ID_1":7,"NAME_1":"Bretagne","ID_2":30,"NAME_2":"Morbihan","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.874625205993596,47.52042388916021],[2.931561231613102,47.44067001342785],[2.919770956039486,47.410469055175724],[2.870246887207145,47.34234237670898],[2.882418632507324,47.318023681640625],[2.912961483001766,47.30831909179693],[2.983390808105469,47.25963592529297],[2.979025840759277,47.22906494140636],[2.997741222381705,47.20085144042963],[3.028282880783138,47.12843704223644],[3.031362056732235,47.09288406372076],[3.022240638732967,47.063652038574276],[3.063618421554622,47.046169281005916],[3.074778556823844,47.02999496459972],[3.063970804214534,46.97694396972656],[3.078275442123413,46.953426361083984],[3.050227165222168,46.90915298461913],[3.061144828796444,46.89738082885748],[3.069401502609367,46.852256774902344],[3.057639598846549,46.82513809204107],[3.032068252563477,46.7949104309082],[2.959914684295711,46.80387496948242],[2.880421876907349,46.77003097534191],[2.82748532295227,46.735332489013786],[2.793416023254451,46.73355484008795],[2.774749755859375,46.71895217895519],[2.74379754066473,46.73054885864269],[2.730642080307064,46.747993469238395],[2.704833030700797,46.73903656005871],[2.677795410156364,46.70461273193359],[2.631837844848746,46.672203063964844],[2.570550680160579,46.659267425537045],[2.593100547790471,46.6465797424317],[2.57738041877758,46.60673141479498],[2.598460674285832,46.595310211181754],[2.611052274704036,46.55150985717773],[2.536651849746761,46.519710540771484],[2.48292875289917,46.53269577026373],[2.44614839553833,46.52104568481445],[2.368300199508724,46.51843643188482],[2.305465459823608,46.47543334960949],[2.284665584564265,46.45135879516596],[2.2810475826264,46.42040634155284],[2.197830677032584,46.42829895019537],[2.167785644531193,46.42407608032238],[2.151401996612492,46.457698822021484],[2.19319391250616,46.47064208984381],[2.203788518905583,46.489494323730526],[2.15870022773754,46.5573463439942],[2.167145252227783,46.5889892578125],[2.184614181518612,46.60256576538097],[2.189446687698364,46.642139434814446],[2.166748523712101,46.64732742309576],[2.137272119522094,46.672313690185604],[2.155447959899959,46.69216156005854],[2.065751314163264,46.74249649047857],[2.114007234573421,46.77537536621094],[2.104204654693717,46.79355239868164],[2.071567773819083,46.80985260009759],[2.047998666763363,46.83233261108404],[2.077816724777335,46.838005065918026],[2.08796310424799,46.86588287353527],[2.140070199966431,46.88984680175787],[2.154965162277279,46.91167449951183],[2.110318660736141,46.91316604614257],[2.070684909820613,46.93402481079107],[2.070202827453727,46.954421997070256],[2.090839385986328,46.966690063476555],[2.096888780593929,47.01241302490228],[2.029379844665584,47.04553222656256],[2.055652856826782,47.07672119140625],[2.0462903976441,47.10606002807623],[2.026691198348942,47.103324890136776],[1.996660113334656,47.126998901367294],[1.963139772415161,47.12417984008795],[1.920261263847408,47.10403442382818],[1.88306808471691,47.100513458252],[1.828447580337524,47.121303558349666],[1.774451494216976,47.130756378173764],[1.842237114906311,47.17758178710932],[1.839079260826224,47.21930694580089],[1.875333309173641,47.207077026367244],[1.902768850326538,47.21515655517572],[1.915639042854423,47.23418426513683],[1.895493149757385,47.25480270385742],[1.922685146331787,47.26385498046875],[1.941373109817448,47.29006195068371],[1.996609449386596,47.26575088500987],[2.026877880096549,47.268302917480526],[2.07332634925848,47.28466415405284],[2.132894754409733,47.28119277954113],[2.157150983810482,47.30021286010748],[2.119390726089478,47.33343124389654],[2.126704454422111,47.345417022705135],[2.102738618850765,47.391616821289055],[2.188242435455379,47.435699462890625],[2.204829216003532,47.406078338623104],[2.243691682815609,47.41482543945324],[2.238214492797795,47.46894073486334],[2.247745037078857,47.49173355102544],[2.219440460205078,47.49544525146489],[2.214491367340145,47.52042770385736],[2.193774938583317,47.54856872558588],[2.131381988525447,47.550697326660156],[2.119575262069759,47.58295059204113],[2.156289577484074,47.6010475158692],[2.239213705062923,47.62097930908209],[2.28963232040411,47.62905502319341],[2.37268948555004,47.58544158935547],[2.438079357147274,47.60977172851574],[2.490300893783626,47.571773529052734],[2.550065517425594,47.574703216552784],[2.592984199523983,47.55813598632812],[2.612017631530819,47.52639007568371],[2.655870914459229,47.510395050048885],[2.6576087474823,47.49005889892578],[2.686362028121948,47.483188629150504],[2.727407455444335,47.498893737793026],[2.723601579666251,47.523376464843864],[2.76255822181696,47.52495574951171],[2.7975208759309,47.49734115600597],[2.826261997222844,47.49807357788097],[2.874625205993596,47.52042388916021]]]},"properties":{"ID_0":79,"ISO":"FR-18","NAME_0":"France","ID_1":8,"NAME_1":"Centre","ID_2":31,"NAME_2":"Cher","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.922148942947331,48.457599639892635],[1.939015626907405,48.42216110229498],[1.977244138717765,48.39916610717773],[1.987355947494563,48.363811492920036],[1.97061991691595,48.33999252319347],[1.982344508171138,48.32831573486328],[1.959227204322872,48.308689117431754],[1.994084715843314,48.28658676147472],[1.965903282165584,48.254444122314446],[1.962595343589726,48.222595214843864],[1.976353526115417,48.20060729980474],[1.971245884895438,48.17812728881836],[1.937050342559928,48.16909790039068],[1.89946806430811,48.12756347656256],[1.889713525772095,48.10558700561535],[1.828698396682853,48.080074310302734],[1.748593330383357,48.066146850585994],[1.67796707153326,48.0661506652832],[1.655995726585388,48.075317382812614],[1.62168562412262,48.06387710571289],[1.62123167514801,48.04832077026373],[1.591873407363892,48.03075408935546],[1.545306921005249,48.04458999633788],[1.514657258987427,48.02857208251959],[1.52012383937847,47.98227691650402],[1.441395878791809,48.01163101196289],[1.43724095821392,47.976497650146484],[1.407286286354179,47.970497131347656],[1.386946320533752,47.98128128051758],[1.370015859603996,47.95375061035156],[1.349708318710327,47.96344757080078],[1.308631062507573,47.95376205444347],[1.299580097198429,47.96816253662121],[1.265399932861385,47.9628639221192],[1.248007178306523,47.97857666015631],[1.205214977264518,47.96863937377941],[1.163611531257743,48.02854156494146],[1.124885797500724,48.035285949707145],[1.106606602668819,48.06079101562505],[1.112233281135616,48.08073043823248],[1.064873099327144,48.08575820922863],[1.009408950805721,48.08415985107421],[0.992331385612431,48.09591293334961],[1.044489502906799,48.118564605713004],[1.008922100067139,48.13171386718756],[0.955081343650875,48.10048294067383],[0.944029271602574,48.112380981445256],[0.888905465602931,48.1022682189942],[0.841217219829502,48.10306167602544],[0.850372314453239,48.13307952880865],[0.914338350296134,48.13584899902344],[0.884465754032135,48.161842346191406],[0.840574383735657,48.165531158447266],[0.797655463218746,48.19446182250988],[0.829446434974784,48.21136856079107],[0.787321388721409,48.26144409179693],[0.797485589981136,48.291446685791016],[0.756839871406612,48.30046463012701],[0.785431504249573,48.34043502807617],[0.827866911888236,48.3423118591308],[0.907346844673157,48.37010192871094],[0.948381423950252,48.40164566040039],[0.955576777458305,48.445301055908146],[0.935709059238548,48.4755096435548],[0.953055024147034,48.48015594482421],[0.967740058898983,48.52388000488287],[0.924195051193237,48.538040161132926],[0.925711214542389,48.55965423583979],[0.867284238338584,48.57394409179699],[0.849312484264487,48.585941314697266],[0.84590852260601,48.609016418457145],[0.822398364544028,48.60887527465826],[0.82356470823288,48.650665283203125],[0.814819097519035,48.67016983032237],[0.862586736679077,48.68807601928722],[0.876703202724457,48.71559143066412],[0.921202719211578,48.709178924560604],[0.963956236839408,48.726345062255916],[1.01592493057251,48.72905349731451],[1.063026547431946,48.75896835327154],[1.113736271858272,48.74630355834961],[1.118686676025391,48.78296279907226],[1.152118086814937,48.785739898681754],[1.162975311279354,48.76930999755859],[1.246022224426326,48.76967620849609],[1.258414506912231,48.7580299377442],[1.296934962272587,48.76801300048834],[1.327389359474182,48.760437011718864],[1.37680900096899,48.791938781738395],[1.356839895248527,48.81558609008789],[1.359781384468192,48.83119583129883],[1.404821634292716,48.86071395874034],[1.457628130912781,48.87151718139654],[1.470635771751517,48.898002624511825],[1.447959303855896,48.92464065551757],[1.461308479309139,48.9375572204591],[1.501523852348441,48.94105529785162],[1.538249373435974,48.92169189453125],[1.563741922378483,48.89062881469738],[1.546231389045658,48.872436523437614],[1.582962155342102,48.85749816894536],[1.590482711792049,48.817333221435604],[1.57701563835144,48.78525161743164],[1.584907293319702,48.76329803466808],[1.624960064888057,48.749031066894645],[1.582495450973624,48.70430374145519],[1.611295104026908,48.688457489013786],[1.602706551551819,48.66309738159191],[1.640838384628353,48.64488983154308],[1.666354537010307,48.61370849609381],[1.715143442153931,48.613147735595646],[1.709252834320068,48.57802581787109],[1.761452198028564,48.57168960571295],[1.787245035171622,48.55374526977545],[1.776842474937439,48.512874603271484],[1.802130699157658,48.468093872070256],[1.834566354751644,48.46723556518548],[1.847221136093196,48.44667434692383],[1.904506683349609,48.44026184082031],[1.922148942947331,48.457599639892635]]]},"properties":{"ID_0":79,"ISO":"FR-28","NAME_0":"France","ID_1":8,"NAME_1":"Centre","ID_2":32,"NAME_2":"Eure-et-Loir","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.32666552066803,47.186225891113274],[1.343526721000728,47.17355346679699],[1.363751530647278,47.13508605957031],[1.355669379234257,47.10847854614258],[1.317499756813106,47.1029510498048],[1.276096940040588,47.04080581665045],[1.23222029209137,47.01414489746093],[1.181068658828792,47.041042327880916],[1.160983085632324,47.0393638610841],[1.077615499496517,47.0158424377442],[1.056375980377197,46.9964370727539],[1.058043956756592,46.94968032836919],[1.03743505477911,46.94206237792969],[1.033831596374569,46.90735244750988],[1.010198593139648,46.83528137207031],[1.008930087089595,46.81444549560547],[0.985331594944114,46.801651000976506],[1.011689782142696,46.7578125],[0.982563257217407,46.76254653930669],[0.961023986339569,46.7400016784668],[0.907236635685081,46.75813674926763],[0.867468893528041,46.74821853637701],[0.813353598117885,46.79167938232433],[0.807996571063938,46.829139709472656],[0.753422677516937,46.86058425903326],[0.704670250415916,46.90288543701183],[0.706179261207637,46.936107635498104],[0.690171778202,46.974979400634766],[0.623983800411168,46.99368667602539],[0.618489921092987,47.00751495361328],[0.566949963569641,47.002540588378906],[0.573683023452759,46.983386993408196],[0.598804414272422,46.97492218017584],[0.598205327987671,46.95642852783209],[0.505189836025238,46.95991134643554],[0.44480341672903,46.94115829467784],[0.438709646463394,46.929580688476676],[0.364629656076374,46.94856643676769],[0.325352251529807,46.93094253540045],[0.310568571090698,46.9397087097168],[0.298205822706223,46.97126388549816],[0.309935390949306,47.028030395507926],[0.298426210880223,47.05397796630871],[0.264221280813217,47.046432495117244],[0.243871793151015,47.07094955444341],[0.208198502659798,47.05323791503906],[0.176861792802754,47.07371902465832],[0.200456321239585,47.091678619384766],[0.181687563657874,47.115356445312614],[0.161916881799812,47.1001091003418],[0.132102236151695,47.121391296386776],[0.07807111740118,47.12374114990246],[0.053739786148071,47.16461181640619],[0.072875916957969,47.21449279785162],[0.082382224500179,47.28687286376947],[0.117462240159625,47.33234405517584],[0.147298365831432,47.34537506103526],[0.153859853744621,47.363094329833984],[0.182142674923,47.38194274902349],[0.153864458203259,47.39872741699224],[0.180943384766579,47.416603088378906],[0.180874109268188,47.453224182128906],[0.220109254121724,47.50195312500005],[0.224843129515648,47.52727890014659],[0.20008730888361,47.543167114257926],[0.214089363813343,47.568786621093686],[0.234568119049129,47.57861328125006],[0.230001732707024,47.608398437500114],[0.259114831686077,47.61230087280279],[0.275411963462943,47.59910202026372],[0.322103917598724,47.59523773193371],[0.339106649160442,47.57973861694347],[0.378483653068656,47.56852722167974],[0.402577012777385,47.57851409912104],[0.364557266235408,47.62207031250006],[0.382787764072475,47.643104553222706],[0.422197550535316,47.61956405639659],[0.451411038637104,47.62145614624029],[0.461177259683552,47.64380645751953],[0.49841791391384,47.64476394653332],[0.593340694904441,47.671844482421875],[0.614431202411652,47.69421386718756],[0.62878125906002,47.708030700683594],[0.674774110317287,47.69901275634777],[0.712153255939597,47.68181228637695],[0.735651314258632,47.6955451965332],[0.787170708179417,47.680828094482536],[0.834168910980225,47.67693328857416],[0.85935032367712,47.66671752929693],[0.844708025455589,47.645111083984375],[0.864282011985892,47.59982681274414],[0.899154901504573,47.60371780395513],[0.919604957103672,47.63275527954112],[0.991789221763725,47.62002563476568],[0.987656772136745,47.591167449951286],[1.033352494239864,47.60700988769536],[1.076556801795959,47.561901092529354],[1.045035123825187,47.531574249267635],[1.068831562996024,47.51947402954096],[1.068855047226066,47.50299453735357],[1.093745589256343,47.47048568725585],[1.133366107940731,47.44895172119152],[1.110523343086356,47.40863037109375],[1.122414112091121,47.35507202148443],[1.094853281974906,47.328536987304744],[1.108126759529114,47.29840850830084],[1.131214499473685,47.29454040527344],[1.162064194679374,47.27220535278326],[1.223335146903935,47.29417800903332],[1.294761538505611,47.23598861694347],[1.32666552066803,47.186225891113274]]]},"properties":{"ID_0":79,"ISO":"FR-37","NAME_0":"France","ID_1":8,"NAME_1":"Centre","ID_2":33,"NAME_2":"Indre-et-Loire","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.839079260826224,47.21930694580089],[1.842237114906311,47.17758178710932],[1.774451494216976,47.130756378173764],[1.828447580337524,47.121303558349666],[1.88306808471691,47.100513458252],[1.920261263847408,47.10403442382818],[1.963139772415161,47.12417984008795],[1.996660113334656,47.126998901367294],[2.026691198348942,47.103324890136776],[2.0462903976441,47.10606002807623],[2.055652856826782,47.07672119140625],[2.029379844665584,47.04553222656256],[2.096888780593929,47.01241302490228],[2.090839385986328,46.966690063476555],[2.070202827453727,46.954421997070256],[2.070684909820613,46.93402481079107],[2.110318660736141,46.91316604614257],[2.154965162277279,46.91167449951183],[2.140070199966431,46.88984680175787],[2.08796310424799,46.86588287353527],[2.077816724777335,46.838005065918026],[2.047998666763363,46.83233261108404],[2.071567773819083,46.80985260009759],[2.104204654693717,46.79355239868164],[2.114007234573421,46.77537536621094],[2.065751314163264,46.74249649047857],[2.155447959899959,46.69216156005854],[2.137272119522094,46.672313690185604],[2.166748523712101,46.64732742309576],[2.189446687698364,46.642139434814446],[2.184614181518612,46.60256576538097],[2.167145252227783,46.5889892578125],[2.15870022773754,46.5573463439942],[2.203788518905583,46.489494323730526],[2.19319391250616,46.47064208984381],[2.151401996612492,46.457698822021484],[2.167785644531193,46.42407608032238],[2.072452068328857,46.420108795166016],[1.993082404136771,46.43091583251953],[1.97875273227703,46.44152450561529],[1.926118493080196,46.4319114685058],[1.818454504013062,46.43142318725591],[1.798244357109127,46.454906463623104],[1.747590184211731,46.45001983642584],[1.75973749160778,46.42748641967785],[1.750548720359859,46.40559387207037],[1.709384679794368,46.393428802490234],[1.683602571487427,46.41817855834955],[1.641089677810726,46.38558959960943],[1.600772142410335,46.41961669921875],[1.546187400817871,46.395931243896534],[1.543673634529227,46.41649627685558],[1.510587811469975,46.41925811767578],[1.436632752418518,46.356006622314446],[1.415190458297786,46.347217559814396],[1.40700268745428,46.362640380859375],[1.344678044319153,46.4015998840332],[1.310512185096854,46.37437438964855],[1.250655889511222,46.376750946045036],[1.217970013618583,46.36825561523449],[1.177279949188346,46.38395309448248],[1.213065862655753,46.43308258056646],[1.150917053222713,46.45029830932623],[1.135514140129146,46.47089004516607],[1.149143099784908,46.50221252441406],[1.090093851089591,46.537582397460994],[1.020409345626888,46.53714752197265],[1.01476442813879,46.56776428222667],[0.990254223346767,46.56590270996088],[0.941367268562374,46.58087921142583],[0.915865302085876,46.5966300964356],[0.894059300422668,46.62862396240246],[0.915637850761413,46.65067291259771],[0.902261495590153,46.67766571044916],[0.924812436103878,46.700218200683594],[0.898324728012142,46.73579788208008],[0.867468893528041,46.74821853637701],[0.907236635685081,46.75813674926763],[0.961023986339569,46.7400016784668],[0.982563257217407,46.76254653930669],[1.011689782142696,46.7578125],[0.985331594944114,46.801651000976506],[1.008930087089595,46.81444549560547],[1.010198593139648,46.83528137207031],[1.033831596374569,46.90735244750988],[1.03743505477911,46.94206237792969],[1.058043956756592,46.94968032836919],[1.056375980377197,46.9964370727539],[1.077615499496517,47.0158424377442],[1.160983085632324,47.0393638610841],[1.181068658828792,47.041042327880916],[1.23222029209137,47.01414489746093],[1.276096940040588,47.04080581665045],[1.317499756813106,47.1029510498048],[1.355669379234257,47.10847854614258],[1.363751530647278,47.13508605957031],[1.343526721000728,47.17355346679699],[1.32666552066803,47.186225891113274],[1.392843484878483,47.20869445800781],[1.421207785606384,47.22916412353521],[1.48293578624731,47.238677978515625],[1.534446120262203,47.22359085083019],[1.523952603340149,47.25534057617193],[1.593135595321769,47.274417877197266],[1.649460911750907,47.271484375],[1.6657009124757,47.2588882446289],[1.700437664985657,47.264080047607365],[1.715820074081478,47.276821136474716],[1.776110768318233,47.23138427734375],[1.79582071304327,47.23781967163086],[1.839079260826224,47.21930694580089]]]},"properties":{"ID_0":79,"ISO":"FR-36","NAME_0":"France","ID_1":8,"NAME_1":"Centre","ID_2":34,"NAME_2":"Indre","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.52012383937847,47.98227691650402],[1.56481862068182,47.989772796630966],[1.55595600605011,47.95531463623052],[1.526237845420894,47.94464111328131],[1.525423526763916,47.929115295410156],[1.579184412956351,47.903530120849666],[1.583626508712825,47.86848831176769],[1.535838484764156,47.838520050048935],[1.540854215622005,47.81701278686535],[1.570240736007804,47.796718597412166],[1.547817349433956,47.76953506469721],[1.596397399902344,47.7430877685548],[1.629261851310787,47.75941085815441],[1.673132181167659,47.73947906494151],[1.712264776229801,47.732616424560604],[1.746726393699703,47.65675354003906],[1.811414957046565,47.65250778198247],[1.845385670661983,47.659362792968864],[1.86585891246807,47.675949096679794],[1.937186121940726,47.67758178710943],[1.942070364952144,47.66182708740246],[1.995229840278739,47.66426086425787],[2.008922815322876,47.67745590209961],[2.064654111862183,47.67486190795904],[2.074550151824951,47.68215179443365],[2.149203538894767,47.67074584960943],[2.203685283660889,47.67854690551752],[2.24070930480957,47.64125823974604],[2.239213705062923,47.62097930908209],[2.156289577484074,47.6010475158692],[2.119575262069759,47.58295059204113],[2.131381988525447,47.550697326660156],[2.193774938583317,47.54856872558588],[2.214491367340145,47.52042770385736],[2.219440460205078,47.49544525146489],[2.247745037078857,47.49173355102544],[2.238214492797795,47.46894073486334],[2.243691682815609,47.41482543945324],[2.204829216003532,47.406078338623104],[2.188242435455379,47.435699462890625],[2.102738618850765,47.391616821289055],[2.126704454422111,47.345417022705135],[2.119390726089478,47.33343124389654],[2.157150983810482,47.30021286010748],[2.132894754409733,47.28119277954113],[2.07332634925848,47.28466415405284],[2.026877880096549,47.268302917480526],[1.996609449386596,47.26575088500987],[1.941373109817448,47.29006195068371],[1.922685146331787,47.26385498046875],[1.895493149757385,47.25480270385742],[1.915639042854423,47.23418426513683],[1.902768850326538,47.21515655517572],[1.875333309173641,47.207077026367244],[1.839079260826224,47.21930694580089],[1.79582071304327,47.23781967163086],[1.776110768318233,47.23138427734375],[1.715820074081478,47.276821136474716],[1.700437664985657,47.264080047607365],[1.6657009124757,47.2588882446289],[1.649460911750907,47.271484375],[1.593135595321769,47.274417877197266],[1.523952603340149,47.25534057617193],[1.534446120262203,47.22359085083019],[1.48293578624731,47.238677978515625],[1.421207785606384,47.22916412353521],[1.392843484878483,47.20869445800781],[1.32666552066803,47.186225891113274],[1.294761538505611,47.23598861694347],[1.223335146903935,47.29417800903332],[1.162064194679374,47.27220535278326],[1.131214499473685,47.29454040527344],[1.108126759529114,47.29840850830084],[1.094853281974906,47.328536987304744],[1.122414112091121,47.35507202148443],[1.110523343086356,47.40863037109375],[1.133366107940731,47.44895172119152],[1.093745589256343,47.47048568725585],[1.068855047226066,47.50299453735357],[1.068831562996024,47.51947402954096],[1.045035123825187,47.531574249267635],[1.076556801795959,47.561901092529354],[1.033352494239864,47.60700988769536],[0.987656772136745,47.591167449951286],[0.991789221763725,47.62002563476568],[0.919604957103672,47.63275527954112],[0.899154901504573,47.60371780395513],[0.864282011985892,47.59982681274414],[0.844708025455589,47.645111083984375],[0.85935032367712,47.66671752929693],[0.834168910980225,47.67693328857416],[0.787170708179417,47.680828094482536],[0.735651314258632,47.6955451965332],[0.712153255939597,47.68181228637695],[0.674774110317287,47.69901275634777],[0.62878125906002,47.708030700683594],[0.614431202411652,47.69421386718756],[0.580315470695552,47.71237945556652],[0.608728349208832,47.72529983520507],[0.626330792904014,47.75135803222656],[0.651199519634361,47.75511932373058],[0.712824046611843,47.7904891967774],[0.768412888050079,47.83110809326172],[0.77385222911829,47.850646972656364],[0.759813487529868,47.89809036254877],[0.786997556686458,47.91175079345703],[0.810550570487976,47.90824127197277],[0.81634867191309,47.93427658081066],[0.845574200153408,47.95390319824219],[0.820382893085536,47.98803329467779],[0.840563178062439,48.019035339355526],[0.794879317283744,48.04693222045904],[0.803562462329921,48.07159805297863],[0.843022644519806,48.0726432800293],[0.841217219829502,48.10306167602544],[0.888905465602931,48.1022682189942],[0.944029271602574,48.112380981445256],[0.955081343650875,48.10048294067383],[1.008922100067139,48.13171386718756],[1.044489502906799,48.118564605713004],[0.992331385612431,48.09591293334961],[1.009408950805721,48.08415985107421],[1.064873099327144,48.08575820922863],[1.112233281135616,48.08073043823248],[1.106606602668819,48.06079101562505],[1.124885797500724,48.035285949707145],[1.163611531257743,48.02854156494146],[1.205214977264518,47.96863937377941],[1.248007178306523,47.97857666015631],[1.265399932861385,47.9628639221192],[1.299580097198429,47.96816253662121],[1.308631062507573,47.95376205444347],[1.349708318710327,47.96344757080078],[1.370015859603996,47.95375061035156],[1.386946320533752,47.98128128051758],[1.407286286354179,47.970497131347656],[1.43724095821392,47.976497650146484],[1.441395878791809,48.01163101196289],[1.52012383937847,47.98227691650402]]]},"properties":{"ID_0":79,"ISO":"FR-41","NAME_0":"France","ID_1":8,"NAME_1":"Centre","ID_2":35,"NAME_2":"Loir-et-Cher","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.402664184570369,48.320720672607536],[2.420761823654232,48.299251556396484],[2.420108795166072,48.26670455932623],[2.484178543090877,48.23897171020508],[2.506191730499268,48.23853683471691],[2.523010969162044,48.19876098632824],[2.461097478866577,48.13820648193365],[2.522209644317684,48.12521362304687],[2.537505388259887,48.14051818847662],[2.577867984771729,48.131782531738395],[2.639666080474854,48.1389503479005],[2.664748191833552,48.120540618896484],[2.706547021865958,48.12482070922863],[2.755198240280208,48.14565277099614],[2.780977487564087,48.16736221313488],[2.820879936218375,48.12966537475586],[2.866823434829769,48.15603637695324],[2.936314344406241,48.16339111328131],[3.013229846954289,48.14347839355469],[3.027273178100643,48.130695343017635],[3.050471305847225,48.07233428955078],[3.095364570617733,48.05397415161133],[3.102175712585506,48.022457122802734],[3.120845317840689,48.00936126708996],[3.128118753433341,47.97251129150402],[3.105272054672241,47.94694137573242],[3.011818408966121,47.90482330322277],[3.011490821838379,47.87509918212885],[3.03382396697998,47.8438720703125],[3.013874053955135,47.83183670043951],[3.023797988891715,47.786373138427734],[2.988902330398559,47.786125183105526],[2.935591697692928,47.763248443603516],[2.912915229797306,47.76938629150401],[2.856477022171021,47.76173782348633],[2.848968982696647,47.71685028076172],[2.924160003662109,47.6824951171875],[2.918154954910335,47.66979980468756],[2.954234361648616,47.6456871032716],[2.93232083320629,47.62704467773443],[2.94035530090332,47.59820938110362],[2.976537942886353,47.56942749023443],[2.958658218383789,47.55738067626953],[2.914297342300529,47.56597137451172],[2.897469282150382,47.554344177246094],[2.856629610061646,47.55141067504888],[2.851701736450252,47.53526687622082],[2.874625205993596,47.52042388916021],[2.826261997222844,47.49807357788097],[2.7975208759309,47.49734115600597],[2.76255822181696,47.52495574951171],[2.723601579666251,47.523376464843864],[2.727407455444335,47.498893737793026],[2.686362028121948,47.483188629150504],[2.6576087474823,47.49005889892578],[2.655870914459229,47.510395050048885],[2.612017631530819,47.52639007568371],[2.592984199523983,47.55813598632812],[2.550065517425594,47.574703216552784],[2.490300893783626,47.571773529052734],[2.438079357147274,47.60977172851574],[2.37268948555004,47.58544158935547],[2.28963232040411,47.62905502319341],[2.239213705062923,47.62097930908209],[2.24070930480957,47.64125823974604],[2.203685283660889,47.67854690551752],[2.149203538894767,47.67074584960943],[2.074550151824951,47.68215179443365],[2.064654111862183,47.67486190795904],[2.008922815322876,47.67745590209961],[1.995229840278739,47.66426086425787],[1.942070364952144,47.66182708740246],[1.937186121940726,47.67758178710943],[1.86585891246807,47.675949096679794],[1.845385670661983,47.659362792968864],[1.811414957046565,47.65250778198247],[1.746726393699703,47.65675354003906],[1.712264776229801,47.732616424560604],[1.673132181167659,47.73947906494151],[1.629261851310787,47.75941085815441],[1.596397399902344,47.7430877685548],[1.547817349433956,47.76953506469721],[1.570240736007804,47.796718597412166],[1.540854215622005,47.81701278686535],[1.535838484764156,47.838520050048935],[1.583626508712825,47.86848831176769],[1.579184412956351,47.903530120849666],[1.525423526763916,47.929115295410156],[1.526237845420894,47.94464111328131],[1.55595600605011,47.95531463623052],[1.56481862068182,47.989772796630966],[1.52012383937847,47.98227691650402],[1.514657258987427,48.02857208251959],[1.545306921005249,48.04458999633788],[1.591873407363892,48.03075408935546],[1.62123167514801,48.04832077026373],[1.62168562412262,48.06387710571289],[1.655995726585388,48.075317382812614],[1.67796707153326,48.0661506652832],[1.748593330383357,48.066146850585994],[1.828698396682853,48.080074310302734],[1.889713525772095,48.10558700561535],[1.89946806430811,48.12756347656256],[1.937050342559928,48.16909790039068],[1.971245884895438,48.17812728881836],[1.976353526115417,48.20060729980474],[1.962595343589726,48.222595214843864],[1.965903282165584,48.254444122314446],[1.994084715843314,48.28658676147472],[2.043235778808537,48.28616714477545],[2.052708387374878,48.295475006103565],[2.161589384079093,48.29843521118158],[2.154723405838013,48.314529418945426],[2.182797908783016,48.323879241943416],[2.207089424133358,48.344944000244254],[2.269118309021052,48.315048217773494],[2.300207614898795,48.3112411499024],[2.312424421310481,48.33011627197271],[2.369945526123104,48.308673858642635],[2.402664184570369,48.320720672607536]]]},"properties":{"ID_0":79,"ISO":"FR-45","NAME_0":"France","ID_1":8,"NAME_1":"Centre","ID_2":36,"NAME_2":"Loiret","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.393536567688045,49.61708831787103],[5.377237319946346,49.59262084960948],[5.339980602264347,49.594188690185604],[5.308170795440731,49.56284713745117],[5.262710094452018,49.54182052612315],[5.234343528747672,49.56909179687506],[5.15988731384283,49.56669235229492],[5.145609378814754,49.58919525146496],[5.119714736938476,49.592678070068416],[5.09607982635498,49.55778503417969],[5.097719669342097,49.53364562988287],[5.059871673583984,49.504707336425895],[5.109860420227051,49.45624923706054],[5.100886344909725,49.44083404541027],[5.115028381347599,49.42058181762695],[5.084472179412899,49.4045867919923],[5.104149341583308,49.38977813720703],[5.088621616363525,49.369625091552734],[5.055816173553467,49.35943603515625],[5.027099609374943,49.33561325073253],[5.030794143676758,49.30817031860363],[5.05663633346569,49.29336547851574],[5.051180839538688,49.27405166625971],[5.011029243469238,49.26928710937505],[4.950989246368464,49.23686599731445],[4.913374900817985,49.26471710205084],[4.882242679596061,49.2576522827149],[4.86183691024786,49.238849639892635],[4.827131271362418,49.23530960083019],[4.744232177734318,49.24147415161133],[4.690096378326416,49.25748443603521],[4.670503139495963,49.24124145507818],[4.622180461883545,49.23657608032232],[4.606979846954459,49.26883697509765],[4.577483654022217,49.29552459716797],[4.541319370269889,49.286479949951165],[4.454542636871451,49.27601242065429],[4.425334453582764,49.28073883056646],[4.390817642212027,49.298797607421875],[4.375618934631348,49.32380676269537],[4.353710651397762,49.31654739379894],[4.308294296264705,49.32660293579107],[4.247956275940055,49.38080215454113],[4.201307773590088,49.38379287719732],[4.188997268676871,49.39870071411138],[4.143169879913387,49.4041976928712],[4.047973155975342,49.40564346313488],[4.037578582763729,49.438083648681584],[4.06140995025646,49.446731567382926],[4.042112350463867,49.47072601318365],[4.040711879730338,49.50853347778325],[4.074503898620605,49.51858520507818],[4.075648307800293,49.53895950317394],[4.051908016204777,49.54507446289068],[4.076769828796387,49.57072067260748],[4.064444065094051,49.59411621093756],[4.026275157928524,49.61992263793951],[4.050554752349853,49.63492965698242],[4.115690231323356,49.63326263427746],[4.12702131271368,49.67792129516607],[4.185269355774039,49.69887161254883],[4.191380977630615,49.71564483642589],[4.225406169891471,49.727275848388665],[4.242039203643742,49.765468597412166],[4.206332206726131,49.779621124267635],[4.233669757843018,49.84868621826172],[4.249004364013672,49.85695648193364],[4.255733966827506,49.90397644042969],[4.217773914337158,49.91625595092768],[4.233068466186523,49.95782470703131],[4.310615062713623,49.968570709228516],[4.349362373352051,49.952232360839844],[4.380828857421989,49.95372009277355],[4.445803642272892,49.93716812133795],[4.511319160461426,49.94680786132824],[4.540829181671199,49.9682350158692],[4.595972061157283,49.98596191406244],[4.633237838745116,49.98746490478527],[4.686140537261963,50.00494384765631],[4.697027683258057,50.0592880249024],[4.681884288787899,50.067626953125],[4.702781200408936,50.095653533935604],[4.751345634460563,50.111740112304744],[4.765172958373967,50.13739395141607],[4.802541255950985,50.1510620117188],[4.874876022338867,50.15338516235351],[4.872434616088924,50.092166900634766],[4.840224266052302,50.092983245849666],[4.840087890625057,50.04034423828125],[4.820602416992244,50.02365493774414],[4.815224170684871,49.9924812316895],[4.79558706283575,49.982219696045036],[4.790924072265739,49.95839691162115],[4.84519624710083,49.948928833007926],[4.878683567047176,49.921905517578125],[4.88287687301647,49.898448944091854],[4.851549625396841,49.86268997192383],[4.873641490936222,49.81897354125971],[4.85510158538824,49.79457092285162],[4.931437492370605,49.78670883178722],[4.955675601959342,49.80054092407226],[4.991471767425594,49.80022048950201],[5.014911651611385,49.77950668334961],[5.069024562835693,49.761581420898494],[5.089717388153133,49.76479339599615],[5.143624305725211,49.709281921386776],[5.166208267211914,49.692916870117244],[5.208661079406738,49.69443511962896],[5.246232032775993,49.68694305419921],[5.26838397979742,49.69595336914068],[5.332622051239127,49.65350341796886],[5.346857547760067,49.63084411621094],[5.393536567688045,49.61708831787103]]]},"properties":{"ID_0":79,"ISO":"FR-08","NAME_0":"France","ID_1":9,"NAME_1":"Champagne-Ardenne","ID_2":37,"NAME_2":"Ardennes","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.670183181762752,48.53188705444347],[4.653469085693416,48.47055816650401],[4.635781764984245,48.456611633300895],[4.673884868621826,48.444129943847656],[4.716525077819824,48.39434432983409],[4.760187625885123,48.3876113891601],[4.754580497741813,48.366546630859425],[4.84147119522089,48.339462280273494],[4.814217567443961,48.32300949096691],[4.850845336914176,48.29625320434576],[4.842941284179744,48.28351593017578],[4.851517200470084,48.22941207885742],[4.839345455169735,48.21566772460943],[4.862336158752441,48.198181152343864],[4.838845252990835,48.16885757446295],[4.85009384155279,48.141578674316406],[4.828601360321102,48.12907791137695],[4.81497955322277,48.10356521606445],[4.731874465942496,48.11944961547857],[4.69115781784069,48.07195281982422],[4.723154544830379,48.045761108398544],[4.704238414764518,48.02024078369151],[4.67296028137207,48.015018463134766],[4.616806983947867,48.03137588500987],[4.578579425811824,48.02833938598644],[4.53577423095703,48.006565093994254],[4.559968948364315,47.97142410278326],[4.495481967926082,47.968048095703125],[4.446962356567383,47.956199645996094],[4.416409969329834,47.96820068359375],[4.352546691894588,47.95663070678722],[4.312801837921086,47.962497711181754],[4.293424129486084,47.92567443847656],[4.246209621429443,47.93040847778325],[4.223899841308707,47.9484977722168],[4.167336463928223,47.96001052856451],[4.113698482513371,47.92815780639654],[4.089797496795711,47.9439697265625],[4.054893970489502,47.93007659912109],[3.985625267028922,47.930515289306584],[3.902393102645874,47.93829345703125],[3.914165973663273,47.975589752197266],[3.850027084350529,47.98365783691406],[3.839811325073299,48.00389099121093],[3.870242118835506,48.01631164550781],[3.821979761123771,48.0439186096192],[3.826351881027222,48.06351470947277],[3.798608064651603,48.086170196533196],[3.80165958404541,48.106731414795036],[3.76893258094799,48.132854461670036],[3.745480060577449,48.16753387451172],[3.705728054046688,48.14519882202154],[3.667869567871207,48.13921356201183],[3.640509605407772,48.1846160888673],[3.623548269271965,48.192005157470646],[3.59396672248846,48.17869567871105],[3.575186491012573,48.188739776611435],[3.621602296829224,48.22561264038086],[3.601701259613038,48.238765716552734],[3.624601602554435,48.25600433349603],[3.615187406540031,48.27253723144542],[3.582508802414055,48.282840728759766],[3.587536334991512,48.29848098754883],[3.54390382766735,48.319789886474716],[3.545108795166072,48.33454895019542],[3.504410505294913,48.365489959716854],[3.450114965438956,48.37285232543945],[3.414791584015006,48.390274047851506],[3.420679807663021,48.41545104980463],[3.392912864685059,48.42522048950207],[3.405714035034237,48.453289031982536],[3.384093523025626,48.47802734375],[3.434908628463745,48.49685287475585],[3.405398130416927,48.52802276611328],[3.450707197189331,48.52866744995117],[3.482364177703857,48.54980850219738],[3.46551609039318,48.570484161376946],[3.508512735366821,48.605510711670036],[3.555613756179866,48.6202850341798],[3.579891920089722,48.604858398437436],[3.60424447059637,48.572452545166065],[3.631398916244507,48.57156372070318],[3.643639326095695,48.53626251220709],[3.73176097869873,48.53754425048828],[3.796300172805786,48.527961730957145],[3.825896024704036,48.51517486572277],[3.8521764278413,48.52502059936535],[3.86383414268505,48.570049285888615],[3.898482322692985,48.575649261474666],[3.90842437744152,48.601753234863395],[3.949240207672176,48.60343170166021],[4.001695632934684,48.66388320922846],[4.044291019439754,48.66095352172857],[4.062843799591008,48.671817779541065],[4.079788208007869,48.701126098632926],[4.13109111785883,48.68614959716797],[4.177518367767391,48.708072662353565],[4.23304080963146,48.70231246948248],[4.296804428100643,48.71316909790045],[4.326948165893612,48.697410583496094],[4.333541870117301,48.674083709716854],[4.318393707275504,48.64973831176769],[4.33128738403326,48.629821777343864],[4.31491756439209,48.61621856689459],[4.392437934875602,48.56742095947277],[4.423309803009147,48.55414581298828],[4.495280742645376,48.538722991943466],[4.557946681976374,48.54247283935558],[4.592934131622314,48.55233764648443],[4.670183181762752,48.53188705444347]]]},"properties":{"ID_0":79,"ISO":"FR-10","NAME_0":"France","ID_1":9,"NAME_1":"Champagne-Ardenne","ID_2":38,"NAME_2":"Aube","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.98842811584467,48.684429168701286],[5.006401062011776,48.61138916015625],[5.032918930053825,48.61355590820318],[5.05173921585083,48.632911682128906],[5.070285797119254,48.595924377441406],[5.117875099182242,48.58689117431652],[5.143528461456356,48.563133239746094],[5.165067672729548,48.56534194946288],[5.229124546051139,48.5307731628418],[5.272637367248535,48.514316558838004],[5.327370643615723,48.50932312011718],[5.349470138549861,48.48198699951183],[5.398074150085505,48.47318649291992],[5.409501552581787,48.44554138183605],[5.445930480957145,48.424839019775504],[5.470061779022159,48.42092895507823],[5.409779071807861,48.392620086670036],[5.442883968353385,48.37938690185558],[5.418554782867432,48.36069488525402],[5.426048278808651,48.33106231689459],[5.474495887756404,48.354568481445426],[5.526526927947941,48.34685516357422],[5.533514022827148,48.325103759765625],[5.58552980422985,48.280433654785156],[5.611651897430534,48.29181671142589],[5.653809070587158,48.26852416992193],[5.640901088714656,48.242355346679744],[5.710844039916992,48.219936370849666],[5.730982780456486,48.18970108032238],[5.680172920227107,48.1786727905274],[5.685355663299674,48.150619506835994],[5.656557559967098,48.120552062988395],[5.633142948150692,48.08429718017589],[5.692103862762508,48.07552719116211],[5.740804195404166,48.049011230468864],[5.776419162750244,48.02240753173828],[5.794785022735596,47.99679565429682],[5.778491973876896,47.978008270263615],[5.788412094116325,47.952697753906364],[5.833769321441594,47.959617614746094],[5.884726524353084,47.926048278808594],[5.883190155029411,47.90024948120117],[5.851327419281063,47.90592575073242],[5.821859836578426,47.86911010742193],[5.828521251678467,47.85194778442382],[5.761191844940186,47.85934448242193],[5.748488426208495,47.8297691345216],[5.73142862319952,47.817634582519645],[5.698266029358024,47.82335662841808],[5.676611423492375,47.77915954589838],[5.70729303359991,47.76771926879888],[5.709419727325553,47.74494934082037],[5.689648151397762,47.733901977539176],[5.688783168792781,47.684780120849666],[5.596813678741569,47.67164611816406],[5.583657264709586,47.70088195800787],[5.567389488220329,47.707122802734375],[5.530594348907471,47.674007415771484],[5.482769966125545,47.68464279174815],[5.469339847564811,47.67483139038091],[5.406486034393367,47.67362213134771],[5.374919891357422,47.62135696411133],[5.374078750610465,47.604541778564396],[5.306356430053768,47.60727691650402],[5.256230354309196,47.5765495300293],[5.236942291259879,47.61677551269537],[5.211390972137451,47.64165878295904],[5.173409938812313,47.653533935546875],[5.160201072692814,47.678153991699276],[5.12756538391119,47.64847183227539],[5.046803951263428,47.67556762695324],[5.056238174438533,47.6948127746582],[4.971371173858756,47.69023513793945],[4.954513549804744,47.70288848876953],[4.971535205841064,47.731079101562614],[4.958989620208854,47.761875152588004],[4.924775123596248,47.760623931884766],[4.917957782745475,47.77709579467779],[4.986103057861385,47.80359649658203],[4.994125366210938,47.819747924804794],[4.961502075195312,47.84057235717779],[4.954094409942741,47.86676788330078],[4.905961036682243,47.916469573974666],[4.874586105346737,47.91952133178716],[4.856782436370906,47.895633697509766],[4.834023952484131,47.90679550170904],[4.86520957946783,47.941562652588004],[4.845032691955566,47.9604263305664],[4.787781238556022,47.96525573730474],[4.789420604705867,48.007869720459034],[4.749530792236328,48.00431060791021],[4.704238414764518,48.02024078369151],[4.723154544830379,48.045761108398544],[4.69115781784069,48.07195281982422],[4.731874465942496,48.11944961547857],[4.81497955322277,48.10356521606445],[4.828601360321102,48.12907791137695],[4.85009384155279,48.141578674316406],[4.838845252990835,48.16885757446295],[4.862336158752441,48.198181152343864],[4.839345455169735,48.21566772460943],[4.851517200470084,48.22941207885742],[4.842941284179744,48.28351593017578],[4.850845336914176,48.29625320434576],[4.814217567443961,48.32300949096691],[4.84147119522089,48.339462280273494],[4.754580497741813,48.366546630859425],[4.760187625885123,48.3876113891601],[4.716525077819824,48.39434432983409],[4.673884868621826,48.444129943847656],[4.635781764984245,48.456611633300895],[4.653469085693416,48.47055816650401],[4.670183181762752,48.53188705444347],[4.724835872650146,48.54140853881847],[4.799180507659969,48.52978897094738],[4.768135547638053,48.59343719482422],[4.85437917709362,48.612709045410156],[4.84196138381958,48.649665832519645],[4.77262115478527,48.65181732177734],[4.798326015472526,48.677494049072266],[4.867775917053279,48.66720581054699],[4.911001682281437,48.68885040283209],[4.98842811584467,48.684429168701286]]]},"properties":{"ID_0":79,"ISO":"FR-52","NAME_0":"France","ID_1":9,"NAME_1":"Champagne-Ardenne","ID_2":39,"NAME_2":"Haute-Marne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.047973155975342,49.40564346313488],[4.143169879913387,49.4041976928712],[4.188997268676871,49.39870071411138],[4.201307773590088,49.38379287719732],[4.247956275940055,49.38080215454113],[4.308294296264705,49.32660293579107],[4.353710651397762,49.31654739379894],[4.375618934631348,49.32380676269537],[4.390817642212027,49.298797607421875],[4.425334453582764,49.28073883056646],[4.454542636871451,49.27601242065429],[4.541319370269889,49.286479949951165],[4.577483654022217,49.29552459716797],[4.606979846954459,49.26883697509765],[4.622180461883545,49.23657608032232],[4.670503139495963,49.24124145507818],[4.690096378326416,49.25748443603521],[4.744232177734318,49.24147415161133],[4.827131271362418,49.23530960083019],[4.86183691024786,49.238849639892635],[4.882242679596061,49.2576522827149],[4.913374900817985,49.26471710205084],[4.950989246368464,49.23686599731445],[4.970838069915885,49.23553466796881],[4.991859436035156,49.21083831787109],[4.942377567291203,49.18677139282232],[4.996342658996582,49.106502532959034],[5.010010719299316,49.03468704223633],[5.035267353057975,49.02256011962885],[5.037756443023738,48.97412490844732],[5.030943393707389,48.954326629638786],[4.973320007324219,48.92886734008789],[4.936209201812743,48.92214202880865],[4.913592338562069,48.89767837524425],[4.912255764007568,48.869461059570305],[4.935492515564079,48.840499877929744],[4.88876104354864,48.81721115112316],[4.893365383148193,48.796958923339844],[4.93437576293951,48.790588378906364],[4.989574909210205,48.742046356201286],[5.009220123291128,48.741390228271484],[4.98842811584467,48.684429168701286],[4.911001682281437,48.68885040283209],[4.867775917053279,48.66720581054699],[4.798326015472526,48.677494049072266],[4.77262115478527,48.65181732177734],[4.84196138381958,48.649665832519645],[4.85437917709362,48.612709045410156],[4.768135547638053,48.59343719482422],[4.799180507659969,48.52978897094738],[4.724835872650146,48.54140853881847],[4.670183181762752,48.53188705444347],[4.592934131622314,48.55233764648443],[4.557946681976374,48.54247283935558],[4.495280742645376,48.538722991943466],[4.423309803009147,48.55414581298828],[4.392437934875602,48.56742095947277],[4.31491756439209,48.61621856689459],[4.33128738403326,48.629821777343864],[4.318393707275504,48.64973831176769],[4.333541870117301,48.674083709716854],[4.326948165893612,48.697410583496094],[4.296804428100643,48.71316909790045],[4.23304080963146,48.70231246948248],[4.177518367767391,48.708072662353565],[4.13109111785883,48.68614959716797],[4.079788208007869,48.701126098632926],[4.062843799591008,48.671817779541065],[4.044291019439754,48.66095352172857],[4.001695632934684,48.66388320922846],[3.949240207672176,48.60343170166021],[3.90842437744152,48.601753234863395],[3.898482322692985,48.575649261474666],[3.86383414268505,48.570049285888615],[3.8521764278413,48.52502059936535],[3.825896024704036,48.51517486572277],[3.796300172805786,48.527961730957145],[3.73176097869873,48.53754425048828],[3.643639326095695,48.53626251220709],[3.631398916244507,48.57156372070318],[3.60424447059637,48.572452545166065],[3.579891920089722,48.604858398437436],[3.555613756179866,48.6202850341798],[3.492137432098446,48.64695739746105],[3.476752996444645,48.63752746582031],[3.442698001861629,48.67250442504883],[3.470862388610783,48.687267303466854],[3.467395544052181,48.738628387451286],[3.397129535675049,48.7613983154298],[3.409984111786002,48.78372192382824],[3.442154169082642,48.784854888916016],[3.444479703903311,48.81180191040045],[3.485241413116455,48.825504302978516],[3.485187530517635,48.851909637451286],[3.528576374054012,48.91213989257812],[3.566684484481755,48.91349411010747],[3.574443340301457,48.939025878906186],[3.601246356964168,48.946681976318416],[3.621205806732291,48.9660301208496],[3.639824628830069,49.00399780273443],[3.677718877792415,49.01602935791027],[3.650133132934627,49.041358947753956],[3.614683628082332,49.03355026245117],[3.58520412445074,49.038867950439396],[3.587706327438468,49.05934906005871],[3.63224029541027,49.086090087890625],[3.610413551330624,49.12749862670904],[3.624456405639705,49.15135192871094],[3.683834791183471,49.15449142456055],[3.70329737663269,49.14320373535162],[3.748676300048942,49.15853118896496],[3.751147747039851,49.177700042724716],[3.706489801406974,49.180316925048885],[3.676669836044368,49.20726394653331],[3.654800891876278,49.21294784545904],[3.67701888084423,49.23708343505871],[3.655254602432365,49.26285171508789],[3.643261671066341,49.29588317871087],[3.669160604476986,49.324748992920036],[3.736195564270019,49.33555221557623],[3.803095340728873,49.35882186889654],[3.851309537887687,49.344944000244254],[3.859844207763786,49.38152313232416],[3.910301685333252,49.39533233642584],[3.924819469451961,49.4077262878419],[3.961308956146183,49.37734603881841],[3.986643791198787,49.37892150878906],[4.01272869110113,49.358306884765625],[4.035496234893799,49.35990524291992],[4.047973155975342,49.40564346313488]]]},"properties":{"ID_0":79,"ISO":"FR-51","NAME_0":"France","ID_1":9,"NAME_1":"Champagne-Ardenne","ID_2":40,"NAME_2":"Marne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.402084350585994,41.859306335449325],[9.406526565551815,41.81708526611334],[9.394583702087402,41.79819488525396],[9.408473014831598,41.76652908325189],[9.401249885559139,41.69235992431646],[9.372362136840875,41.67930603027344],[9.386804580688477,41.66041564941406],[9.35513877868658,41.643196105957145],[9.319581985473746,41.60514068603515],[9.368472099304142,41.59597396850597],[9.331526756286735,41.56013870239269],[9.2968044281007,41.540695190429744],[9.275138854980412,41.5040283203125],[9.284861564636287,41.47847366333019],[9.266249656677303,41.470417022705135],[9.229026794433594,41.426250457763786],[9.259584426879883,41.41347122192394],[9.236249923706055,41.394027709960994],[9.2209730148316,41.36791610717773],[9.17986202239996,41.36541748046881],[9.165416717529297,41.385417938232536],[9.09069538116455,41.39902877807617],[9.10541629791254,41.42847061157232],[9.090970993042049,41.44569396972662],[9.027638435363883,41.46263885498047],[8.992918014526424,41.48374938964855],[8.92319488525402,41.494583129882926],[8.890693664550838,41.50819396972656],[8.854027748107853,41.53625106811529],[8.78569507598877,41.564304351806754],[8.78125,41.58486175537103],[8.79458332061779,41.62458419799816],[8.851248741150016,41.648193359375],[8.878195762634219,41.651805877685604],[8.877915382385252,41.69597244262695],[8.844026565551815,41.69652938842768],[8.812359809875488,41.71458435058594],[8.783193588256779,41.708473205566406],[8.772084236145133,41.74124908447277],[8.722915649414176,41.72375106811534],[8.682916641235465,41.74708175659174],[8.712917327880973,41.760692596435604],[8.749305725097656,41.81180572509777],[8.774306297302246,41.81236267089855],[8.789583206176701,41.85235977172845],[8.785138130187988,41.87958145141613],[8.804306030273494,41.89236068725597],[8.783193588256779,41.92541503906256],[8.74041652679449,41.91902923583978],[8.718470573425293,41.9073600769043],[8.64124965667736,41.9098625183106],[8.594305992126522,41.965972900390625],[8.647638320922965,41.96847152709972],[8.668749809265194,41.983196258545036],[8.65541744232172,42.010139465332145],[8.685694694519043,42.02763748168957],[8.714583396911621,42.029861450195305],[8.747916221618594,42.05014038085943],[8.721805572509822,42.07263946533209],[8.70930480957037,42.09902954101574],[8.688195228576717,42.11041641235363],[8.664304733276479,42.10625076293945],[8.623750686645565,42.12236022949219],[8.57923412322998,42.15763854980463],[8.582082748413143,42.17847061157238],[8.570416450500543,42.20458221435547],[8.573748588562012,42.23930740356457],[8.604305267334041,42.250137329101506],[8.688195228576717,42.2634735107423],[8.686248779296932,42.282638549804744],[8.65819454193121,42.302082061767685],[8.607083320617788,42.30791854858404],[8.627361297607422,42.331806182861385],[8.601248741149846,42.35291671752929],[8.561528205871525,42.332084655761776],[8.551251411437988,42.3448600769043],[8.574238777160701,42.3801383972168],[8.57404804229742,42.38042831420904],[8.60111141204834,42.370136260986385],[8.63709831237793,42.37284088134765],[8.683479309081974,42.34803009033203],[8.714449882507267,42.34845352172863],[8.756263732910213,42.33844375610357],[8.771169662475529,42.32540893554693],[8.820055007934682,42.316665649414176],[8.86145114898676,42.32962799072277],[8.860726356506348,42.29912567138683],[8.904767990112362,42.2538681030274],[8.923216819763127,42.256607055664176],[8.948619842529354,42.23402404785161],[8.97232627868658,42.23233032226568],[9.023251533508414,42.20357513427746],[9.045742988586483,42.20772933959961],[9.04812240600586,42.17570877075195],[9.065062522888296,42.16587829589844],[9.092106819152946,42.11672210693365],[9.123633384704704,42.10540390014654],[9.133687973022518,42.090553283691406],[9.131868362426815,42.052871704101676],[9.16021156311035,42.02680206298828],[9.22108459472662,42.02760696411144],[9.215611457824707,41.994953155517635],[9.226045608520508,41.9722137451173],[9.213279724121149,41.91746139526367],[9.246355056762809,41.90930557250982],[9.227497100830192,41.85559082031256],[9.30909538269043,41.832145690918026],[9.377328872680721,41.86607742309582],[9.402084350585994,41.859306335449325]]]},"properties":{"ID_0":79,"ISO":"FR-2A","NAME_0":"France","ID_1":10,"NAME_1":"Corse","ID_2":41,"NAME_2":"Corse-du-Sud","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.57404804229742,42.38042831420904],[8.60819530487072,42.38735961914068],[8.605417251586971,42.41624832153326],[8.661526679992676,42.42514038085943],[8.676527976989803,42.476249694824276],[8.664584159851131,42.51263809204113],[8.704306602478027,42.52680587768548],[8.729027748107967,42.563194274902344],[8.75736045837408,42.57041549682623],[8.7837495803833,42.55680465698242],[8.803471565246637,42.569305419921875],[8.809860229492244,42.605140686035156],[8.869029045105037,42.607917785644645],[8.879584312438965,42.62930679321295],[8.92125129699707,42.63902664184575],[8.947639465331974,42.63319396972656],[9.020416259765682,42.643196105957145],[9.060138702392578,42.66125106811535],[9.053194046020508,42.68208312988287],[9.123472213745117,42.73263931274414],[9.16763877868658,42.73708343505854],[9.202083587646541,42.725418090820426],[9.256806373596305,42.718750000000114],[9.259028434753418,42.70124816894531],[9.285415649414176,42.67541503906256],[9.322360038757324,42.69652938842784],[9.321249961853141,42.71486282348627],[9.345137596130371,42.73513793945324],[9.337362289428766,42.765693664550724],[9.34263992309576,42.79708480834961],[9.309582710266055,42.8337516784668],[9.330416679382381,42.871250152588004],[9.332638740539663,42.906250000000114],[9.354582786560115,42.91652679443371],[9.35875129699707,42.94402694702154],[9.345693588256836,42.95819473266613],[9.343194007873592,43.00041580200195],[9.418471336364803,43.012084960937614],[9.461251258850153,42.98819351196283],[9.456804275512695,42.951248168945426],[9.469305038452148,42.936248779296875],[9.491805076599121,42.79375076293951],[9.47124862670904,42.769027709960994],[9.44680595397949,42.68652725219732],[9.449305534362907,42.657917022705135],[9.475418090820256,42.622917175293026],[9.510416030883789,42.589862823486385],[9.52763843536377,42.56486129760748],[9.534028053283691,42.5179176330567],[9.529583930969295,42.48875045776373],[9.540972709655762,42.455970764160156],[9.541251182556152,42.420139312744254],[9.532361984253043,42.381526947021484],[9.539306640624943,42.33680725097662],[9.559862136840877,42.284862518310604],[9.552914619445914,42.2426376342774],[9.559306144714412,42.197360992431754],[9.55486202239996,42.124305725097656],[9.535971641540584,42.092082977295036],[9.45736026763916,42.00208282470708],[9.4004163742066,41.94708251953125],[9.415693283081055,41.93319320678722],[9.397640228271598,41.880416870117244],[9.402084350585994,41.859306335449325],[9.377328872680721,41.86607742309582],[9.30909538269043,41.832145690918026],[9.227497100830192,41.85559082031256],[9.246355056762809,41.90930557250982],[9.213279724121149,41.91746139526367],[9.226045608520508,41.9722137451173],[9.215611457824707,41.994953155517635],[9.22108459472662,42.02760696411144],[9.16021156311035,42.02680206298828],[9.131868362426815,42.052871704101676],[9.133687973022518,42.090553283691406],[9.123633384704704,42.10540390014654],[9.092106819152946,42.11672210693365],[9.065062522888296,42.16587829589844],[9.04812240600586,42.17570877075195],[9.045742988586483,42.20772933959961],[9.023251533508414,42.20357513427746],[8.97232627868658,42.23233032226568],[8.948619842529354,42.23402404785161],[8.923216819763127,42.256607055664176],[8.904767990112362,42.2538681030274],[8.860726356506348,42.29912567138683],[8.86145114898676,42.32962799072277],[8.820055007934682,42.316665649414176],[8.771169662475529,42.32540893554693],[8.756263732910213,42.33844375610357],[8.714449882507267,42.34845352172863],[8.683479309081974,42.34803009033203],[8.63709831237793,42.37284088134765],[8.60111141204834,42.370136260986385],[8.57404804229742,42.38042831420904]]]},"properties":{"ID_0":79,"ISO":"FR-2B","NAME_0":"France","ID_1":10,"NAME_1":"Corse","ID_2":42,"NAME_2":"Haute-Corse","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.807005405426082,47.562801361083984],[6.816659927368163,47.54792404174805],[6.903906822204533,47.54837417602545],[6.925321578979549,47.519527435302734],[6.90761041641241,47.49455642700195],[6.939178943634033,47.43370056152355],[6.94000339508051,47.4097061157226],[6.883793830871696,47.371337890625114],[6.920492649078426,47.35556411743169],[6.999339103698844,47.36487197875982],[7.048191547393799,47.36053085327154],[7.060264110565186,47.34188461303722],[7.043934345245304,47.32695770263671],[7.009734630584717,47.32435607910162],[7.008409500122127,47.30272674560547],[6.94091892242443,47.2866325378418],[6.955122947692928,47.24316024780273],[6.88216066360485,47.20095825195318],[6.844374179840145,47.172069549560604],[6.85295581817627,47.159931182861435],[6.802145957946834,47.129459381103516],[6.740549564361629,47.10703659057623],[6.696344375610408,47.06650924682617],[6.715973854064998,47.05102920532221],[6.654189586639404,47.022373199463],[6.6339111328125,46.998569488525504],[6.505959033966178,46.96612930297862],[6.496685981750488,46.97418975830084],[6.433014392852839,46.92781829833989],[6.464538574218749,46.88991165161133],[6.459761142730655,46.85159301757824],[6.441891670226994,46.83004760742199],[6.434491157531738,46.802383422851676],[6.457247257232666,46.78857040405284],[6.424077033996809,46.754516601562614],[6.342652797699031,46.71078109741211],[6.270490646362305,46.68319320678716],[6.267798423767033,46.67675399780285],[6.17513704299921,46.613979339599666],[6.137713909149284,46.596374511718864],[6.112953662872371,46.57511901855469],[6.138108730316162,46.55765914916992],[6.131093502044791,46.553573608398494],[6.048566818237418,46.6077232360841],[6.059153556823958,46.6248512268067],[6.103265285492,46.65248870849603],[6.071210861206112,46.687568664550895],[6.137484550476074,46.72386550903332],[6.180197715759391,46.74144363403332],[6.2065749168396,46.76633834838873],[6.152239799499569,46.81953048706055],[6.105555057525692,46.84529876708996],[6.062986373901367,46.85820007324224],[6.023230552673454,46.85335922241216],[6.008435726165885,46.895561218261776],[5.981950283050594,46.90820693969726],[5.997221946716365,46.933498382568466],[5.965485095977782,46.94744873046881],[5.979788780212346,46.96347808837896],[5.968590736389102,46.980281829833984],[5.924782276153678,46.9810676574707],[5.907691478729305,46.9995994567871],[5.840656757354736,47.00851440429693],[5.791865825653132,47.022640228271484],[5.749513626098633,47.017242431640625],[5.750931262970027,47.040668487548885],[5.784717082977295,47.05491256713867],[5.768988609314078,47.090038299560604],[5.790199756622314,47.10229110717785],[5.816596984863281,47.13479614257818],[5.81146764755249,47.16905212402344],[5.779403686523438,47.19277191162115],[5.761384010314998,47.19418716430669],[5.720454216003532,47.22004318237305],[5.718945980072021,47.241474151611385],[5.698726177215576,47.26500701904297],[5.735195636749324,47.26343917846685],[5.795302391052359,47.28969573974621],[5.845067501068115,47.300891876220646],[5.926703929901123,47.344760894775334],[6.023554801941032,47.33235168457037],[6.038896083831787,47.34491348266613],[6.079537868499756,47.354652404785156],[6.082015991211051,47.3717155456543],[6.106090545654353,47.3832359313966],[6.168869972229004,47.391719818115234],[6.177622318267822,47.41604232788097],[6.260834693908691,47.4284934997558],[6.334475517272949,47.50600051879882],[6.368082523346061,47.51349258422857],[6.389786720275879,47.506156921386776],[6.411148548126334,47.52189636230469],[6.460669040680045,47.51244354248052],[6.47582912445074,47.49525070190424],[6.50056934356695,47.51025009155279],[6.517722129821777,47.496669769287166],[6.573512077331543,47.4954948425293],[6.581558227539175,47.540985107421875],[6.627004623413143,47.529846191406364],[6.670176029205379,47.55789947509777],[6.740108489990291,47.55680084228515],[6.781101703643742,47.53636550903326],[6.807005405426082,47.562801361083984]]]},"properties":{"ID_0":79,"ISO":"FR-25","NAME_0":"France","ID_1":11,"NAME_1":"Franche-Comté","ID_2":43,"NAME_2":"Doubs","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.823538780212459,47.813053131103516],[6.786245822906607,47.7822875976563],[6.757638454437256,47.747879028320256],[6.759074211120605,47.72280883789068],[6.7801513671875,47.68976974487316],[6.777236938476675,47.66598510742193],[6.798334598541487,47.64399719238281],[6.785643100738582,47.611358642578125],[6.807005405426082,47.562801361083984],[6.781101703643742,47.53636550903326],[6.740108489990291,47.55680084228515],[6.670176029205379,47.55789947509777],[6.627004623413143,47.529846191406364],[6.581558227539175,47.540985107421875],[6.573512077331543,47.4954948425293],[6.517722129821777,47.496669769287166],[6.50056934356695,47.51025009155279],[6.47582912445074,47.49525070190424],[6.460669040680045,47.51244354248052],[6.411148548126334,47.52189636230469],[6.389786720275879,47.506156921386776],[6.368082523346061,47.51349258422857],[6.334475517272949,47.50600051879882],[6.260834693908691,47.4284934997558],[6.177622318267822,47.41604232788097],[6.168869972229004,47.391719818115234],[6.106090545654353,47.3832359313966],[6.082015991211051,47.3717155456543],[6.079537868499756,47.354652404785156],[6.038896083831787,47.34491348266613],[6.023554801941032,47.33235168457037],[5.926703929901123,47.344760894775334],[5.845067501068115,47.300891876220646],[5.795302391052359,47.28969573974621],[5.735195636749324,47.26343917846685],[5.698726177215576,47.26500701904297],[5.676645278930664,47.27572250366205],[5.642305374145508,47.256191253662166],[5.601314067840633,47.260204315185604],[5.533237934112605,47.286529541015625],[5.518538951873779,47.3041877746582],[5.474295139312744,47.31529617309576],[5.495005130767878,47.34143447875982],[5.496919155120906,47.38854980468749],[5.451393604278508,47.38397216796875],[5.430425643921012,47.421356201171875],[5.441021919250544,47.44655990600597],[5.379534244537297,47.466140747070426],[5.399215698242131,47.49901580810547],[5.447459697723332,47.496200561523494],[5.496639728546255,47.54713058471673],[5.478564262390194,47.60538482666026],[5.425594806671143,47.63207244873058],[5.39980506896984,47.597164154052734],[5.374078750610465,47.604541778564396],[5.374919891357422,47.62135696411133],[5.406486034393367,47.67362213134771],[5.469339847564811,47.67483139038091],[5.482769966125545,47.68464279174815],[5.530594348907471,47.674007415771484],[5.567389488220329,47.707122802734375],[5.583657264709586,47.70088195800787],[5.596813678741569,47.67164611816406],[5.688783168792781,47.684780120849666],[5.689648151397762,47.733901977539176],[5.709419727325553,47.74494934082037],[5.70729303359991,47.76771926879888],[5.676611423492375,47.77915954589838],[5.698266029358024,47.82335662841808],[5.73142862319952,47.817634582519645],[5.748488426208495,47.8297691345216],[5.761191844940186,47.85934448242193],[5.828521251678467,47.85194778442382],[5.821859836578426,47.86911010742193],[5.851327419281063,47.90592575073242],[5.883190155029411,47.90024948120117],[5.884726524353084,47.926048278808594],[5.918042659759635,47.94736099243164],[5.921330451965446,47.971027374267635],[5.947534561157283,47.979709625244254],[5.970777988433838,47.957206726074276],[6.002262115478516,47.95608901977539],[6.036863803863639,48.00145339965832],[6.072221279144401,48.01554870605469],[6.109234809875602,48.01247024536144],[6.131397247314453,48.024085998535156],[6.156057834625358,48.00694274902344],[6.161246776580924,47.95829772949219],[6.182055950164851,47.95693206787104],[6.237987041473446,47.932842254638665],[6.277333736419735,47.95380783081055],[6.322461128234976,47.95008087158203],[6.364992618560847,47.96257400512695],[6.408420085906982,47.943195343017635],[6.431921482086125,47.943809509277344],[6.478261947631893,47.88544082641613],[6.542013645172119,47.902534484863395],[6.568707942962646,47.93449783325207],[6.601244449615479,47.944377899170036],[6.629285335540884,47.928180694580185],[6.645202636718807,47.90408706665045],[6.70367431640625,47.88142395019531],[6.738163948059082,47.8620491027832],[6.784952163696232,47.849575042724666],[6.79194593429571,47.83016586303722],[6.823538780212459,47.813053131103516]]]},"properties":{"ID_0":79,"ISO":"FR-70","NAME_0":"France","ID_1":11,"NAME_1":"Franche-Comté","ID_2":44,"NAME_2":"Haute-Saône","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.698726177215576,47.26500701904297],[5.718945980072021,47.241474151611385],[5.720454216003532,47.22004318237305],[5.761384010314998,47.19418716430669],[5.779403686523438,47.19277191162115],[5.81146764755249,47.16905212402344],[5.816596984863281,47.13479614257818],[5.790199756622314,47.10229110717785],[5.768988609314078,47.090038299560604],[5.784717082977295,47.05491256713867],[5.750931262970027,47.040668487548885],[5.749513626098633,47.017242431640625],[5.791865825653132,47.022640228271484],[5.840656757354736,47.00851440429693],[5.907691478729305,46.9995994567871],[5.924782276153678,46.9810676574707],[5.968590736389102,46.980281829833984],[5.979788780212346,46.96347808837896],[5.965485095977782,46.94744873046881],[5.997221946716365,46.933498382568466],[5.981950283050594,46.90820693969726],[6.008435726165885,46.895561218261776],[6.023230552673454,46.85335922241216],[6.062986373901367,46.85820007324224],[6.105555057525692,46.84529876708996],[6.152239799499569,46.81953048706055],[6.2065749168396,46.76633834838873],[6.180197715759391,46.74144363403332],[6.137484550476074,46.72386550903332],[6.071210861206112,46.687568664550895],[6.103265285492,46.65248870849603],[6.059153556823958,46.6248512268067],[6.048566818237418,46.6077232360841],[6.131093502044791,46.553573608398494],[6.138108730316162,46.55765914916992],[6.155487060546818,46.545558929443466],[6.120829582214469,46.51694107055675],[6.097317218780461,46.482456207275334],[6.073783874511776,46.464408874511825],[6.086247444152889,46.4431495666505],[6.064008712768612,46.41622543334972],[6.031020164489973,46.38809967041027],[5.984117031097526,46.36265563964849],[5.941530704498347,46.30926513671881],[5.918933391571159,46.30929565429693],[5.909197807312069,46.283943176269645],[5.850658416748047,46.26169967651373],[5.766045093536434,46.268329620361385],[5.725181102752742,46.26069259643555],[5.714552879333552,46.30807113647472],[5.684582233428955,46.31093215942394],[5.649797916412467,46.334190368652344],[5.612518310546875,46.326557159423885],[5.597891330718994,46.2978973388673],[5.564674377441463,46.29276657104498],[5.539301395416317,46.26890182495123],[5.475361824035701,46.2652206420899],[5.45767164230341,46.276847839355526],[5.475304603576774,46.31538391113287],[5.437145709991569,46.31512832641613],[5.42353439331049,46.34773254394531],[5.400996208191032,46.339298248291065],[5.373462200164738,46.352237701416016],[5.377880573272705,46.38232421875006],[5.348115921020621,46.399417877197315],[5.309145927429256,46.41025543212885],[5.321727275848502,46.42895507812494],[5.310561180114746,46.44677352905285],[5.323350906372013,46.46250534057622],[5.373790264129751,46.46044921875],[5.420044422149715,46.48018264770508],[5.421061038971061,46.50043869018555],[5.359177589416617,46.52014541625982],[5.367879867553824,46.56694793701177],[5.405690670013541,46.581668853759766],[5.413790225982723,46.61464309692383],[5.44060134887701,46.63791275024414],[5.415008068084717,46.654144287109425],[5.42209005355835,46.673030853271484],[5.390789508819694,46.726360321045036],[5.361726284027213,46.73311233520507],[5.366759777069149,46.752395629882926],[5.39024829864502,46.770591735839844],[5.332496166229362,46.797714233398494],[5.328584671020565,46.81291580200201],[5.375267505645866,46.82698822021496],[5.459489822387809,46.830810546875114],[5.459286212921256,46.855243682861385],[5.415234565734862,46.861808776855526],[5.39160251617443,46.89407348632818],[5.360337257385197,46.88433837890631],[5.328718662261963,46.88931655883789],[5.307367324829102,46.93645858764648],[5.26313400268549,46.95352172851562],[5.255236148834229,46.979888916015675],[5.275070190429688,46.99802780151367],[5.317198276519832,47.015804290771484],[5.275326728820914,47.02693557739263],[5.283483982086294,47.04631805419933],[5.323974609375057,47.073791503906364],[5.3856458663941,47.0817489624024],[5.41039323806757,47.113834381103516],[5.414566516876334,47.132762908935604],[5.438985347747803,47.14298629760742],[5.458915710449162,47.181934356689446],[5.449262142181396,47.20321655273443],[5.479135990142822,47.21851348876959],[5.488452434539909,47.28814697265631],[5.518538951873779,47.3041877746582],[5.533237934112605,47.286529541015625],[5.601314067840633,47.260204315185604],[5.642305374145508,47.256191253662166],[5.676645278930664,47.27572250366205],[5.698726177215576,47.26500701904297]]]},"properties":{"ID_0":79,"ISO":"FR-39","NAME_0":"France","ID_1":11,"NAME_1":"Franche-Comté","ID_2":45,"NAME_2":"Jura","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.130345821380729,47.503025054931754],[7.078799724578971,47.48905944824213],[7.024394512176571,47.50421524047845],[6.982897281646729,47.49425506591797],[6.998209476471003,47.45164108276367],[6.939178943634033,47.43370056152355],[6.90761041641241,47.49455642700195],[6.925321578979549,47.519527435302734],[6.903906822204533,47.54837417602545],[6.816659927368163,47.54792404174805],[6.807005405426082,47.562801361083984],[6.785643100738582,47.611358642578125],[6.798334598541487,47.64399719238281],[6.777236938476675,47.66598510742193],[6.7801513671875,47.68976974487316],[6.759074211120605,47.72280883789068],[6.757638454437256,47.747879028320256],[6.786245822906607,47.7822875976563],[6.823538780212459,47.813053131103516],[6.846179962158316,47.82294464111334],[6.864959716796989,47.78460693359381],[6.938450336456413,47.7711563110351],[6.974351882934513,47.75160217285162],[7.011684894561881,47.74163055419921],[7.03741788864147,47.721557617187436],[7.027565479278621,47.70536804199219],[7.045281887054499,47.67037582397461],[7.019805431365967,47.650680541992244],[7.005052566528433,47.619598388671925],[7.009212493896541,47.5993919372558],[7.085388183593807,47.593051910400504],[7.106215476989859,47.55133819580084],[7.142173290252742,47.52502441406256],[7.130345821380729,47.503025054931754]]]},"properties":{"ID_0":79,"ISO":"FR-90","NAME_0":"France","ID_1":11,"NAME_1":"Franche-Comté","ID_2":46,"NAME_2":"Territoire de Belfort","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.713937520980892,49.40922546386719],[1.720028877258414,49.395282745361385],[1.759340763092155,49.36824035644531],[1.774004220962638,49.335693359375114],[1.772390365600586,49.293663024902344],[1.802660226821899,49.27343368530285],[1.790288925170898,49.25369262695324],[1.75471997261053,49.27000808715831],[1.711645603179932,49.26452255249023],[1.704364180564824,49.232200622558594],[1.676291346550101,49.212188720703125],[1.655990839004573,49.13039016723644],[1.608796119689941,49.077892303466854],[1.604106664657649,49.08377456665045],[1.52134740352642,49.06835174560547],[1.486533403396606,49.05173873901373],[1.447279453277588,49.05351257324219],[1.457762360572872,49.026298522949276],[1.477095484733638,49.014801025390625],[1.470889449119682,48.9748153686524],[1.49522519111639,48.96574401855469],[1.501523852348441,48.94105529785162],[1.461308479309139,48.9375572204591],[1.447959303855896,48.92464065551757],[1.470635771751517,48.898002624511825],[1.457628130912781,48.87151718139654],[1.404821634292716,48.86071395874034],[1.359781384468192,48.83119583129883],[1.356839895248527,48.81558609008789],[1.37680900096899,48.791938781738395],[1.327389359474182,48.760437011718864],[1.296934962272587,48.76801300048834],[1.258414506912231,48.7580299377442],[1.246022224426326,48.76967620849609],[1.162975311279354,48.76930999755859],[1.152118086814937,48.785739898681754],[1.118686676025391,48.78296279907226],[1.113736271858272,48.74630355834961],[1.063026547431946,48.75896835327154],[1.01592493057251,48.72905349731451],[0.963956236839408,48.726345062255916],[0.921202719211578,48.709178924560604],[0.876703202724457,48.71559143066412],[0.862586736679077,48.68807601928722],[0.814819097519035,48.67016983032237],[0.768455088138694,48.67072296142578],[0.767301619052887,48.69582366943371],[0.751169919967765,48.703979492187614],[0.775034308433646,48.73735809326183],[0.730522811412811,48.78559112548834],[0.690171241760368,48.79405975341791],[0.607868492603359,48.83248901367193],[0.619440674781913,48.85274887084961],[0.585984230041561,48.87860107421875],[0.549868464470023,48.87471008300792],[0.496543794870377,48.87878036499029],[0.47437018156046,48.88705825805664],[0.443109124898967,48.88128662109375],[0.386114388704414,48.91054916381836],[0.412814527750072,48.950626373291016],[0.432199895381871,48.971908569335994],[0.426760137081203,48.985717773437614],[0.446051925420818,49.01901245117193],[0.4245461523534,49.032032012939446],[0.384958535432816,49.03701400756835],[0.379250437021255,49.07092285156255],[0.408114433288688,49.076675415039176],[0.399783194065208,49.10081481933594],[0.432367354631367,49.14220046997082],[0.387361347675323,49.15317916870117],[0.393431842327175,49.20693969726568],[0.337502598762512,49.23117446899414],[0.321765959262962,49.24859237670904],[0.382786750793571,49.26401519775401],[0.365656018257255,49.295124053955135],[0.322438538074607,49.29633331298828],[0.307059824466762,49.3187980651856],[0.323661744594688,49.34011840820324],[0.301713615656013,49.37130355834972],[0.309067577123699,49.38688278198248],[0.297141581773872,49.43361282348638],[0.386600673198643,49.447238922119084],[0.435335397720394,49.46041107177739],[0.493775337934551,49.48446655273448],[0.522109389305115,49.4796257019044],[0.581252694130058,49.43396377563482],[0.634685695171413,49.43386077880865],[0.660915970802421,49.40307617187494],[0.738287627696934,49.40806579589844],[0.767648577690181,49.418987274170036],[0.800941646099204,49.41494750976562],[0.818878650665283,49.39818954467785],[0.918119370937461,49.3854598999024],[0.920092701911983,49.33861160278326],[0.859372794628086,49.345390319824276],[0.844435155391807,49.32640457153325],[0.896387994289398,49.316204071044865],[0.937321841716766,49.32001495361334],[0.962375104427394,49.285423278808594],[0.999109447002468,49.2519760131837],[1.051249861717338,49.26162338256847],[1.065027117729301,49.28116989135742],[1.04814887046814,49.29788208007818],[1.094995021820182,49.309753417968864],[1.13399350643158,49.309841156005916],[1.145475864410514,49.335510253906364],[1.212223410606441,49.34972381591797],[1.272155284881705,49.347377777099666],[1.286130309104863,49.38692855834972],[1.308008551597595,49.39633560180663],[1.309631824493408,49.42873382568365],[1.344091296195984,49.446273803710994],[1.411997079849357,49.45563125610346],[1.476221203804016,49.451313018798885],[1.501866102218628,49.439544677734375],[1.576197028160095,49.440055847168075],[1.606956601142826,49.41085433959961],[1.62804818153387,49.41195678710943],[1.694283723831177,49.394863128662166],[1.713937520980892,49.40922546386719]]]},"properties":{"ID_0":79,"ISO":"FR-27","NAME_0":"France","ID_1":12,"NAME_1":"Haute-Normandie","ID_2":47,"NAME_2":"Eure","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.784845352172794,49.75790405273437],[1.749885678291321,49.76211547851568],[1.742890834808406,49.73855590820324],[1.712556719780025,49.7301483154298],[1.714367032051143,49.70719909667974],[1.752184510231075,49.68096542358404],[1.724131345749015,49.67180633544933],[1.708078145980949,49.64614868164068],[1.72168505191803,49.62332153320324],[1.69372546672821,49.60106658935541],[1.719389319419918,49.5822868347168],[1.726378798484916,49.54237365722656],[1.749279260635319,49.49359893798834],[1.787550449371338,49.506229400634766],[1.775770783424491,49.47343826293951],[1.726078152656498,49.43806457519537],[1.713937520980892,49.40922546386719],[1.694283723831177,49.394863128662166],[1.62804818153387,49.41195678710943],[1.606956601142826,49.41085433959961],[1.576197028160095,49.440055847168075],[1.501866102218628,49.439544677734375],[1.476221203804016,49.451313018798885],[1.411997079849357,49.45563125610346],[1.344091296195984,49.446273803710994],[1.309631824493408,49.42873382568365],[1.308008551597595,49.39633560180663],[1.286130309104863,49.38692855834972],[1.272155284881705,49.347377777099666],[1.212223410606441,49.34972381591797],[1.145475864410514,49.335510253906364],[1.13399350643158,49.309841156005916],[1.094995021820182,49.309753417968864],[1.04814887046814,49.29788208007818],[1.065027117729301,49.28116989135742],[1.051249861717338,49.26162338256847],[0.999109447002468,49.2519760131837],[0.962375104427394,49.285423278808594],[0.937321841716766,49.32001495361334],[0.896387994289398,49.316204071044865],[0.844435155391807,49.32640457153325],[0.859372794628086,49.345390319824276],[0.920092701911983,49.33861160278326],[0.918119370937461,49.3854598999024],[0.818878650665283,49.39818954467785],[0.800941646099204,49.41494750976562],[0.767648577690181,49.418987274170036],[0.738287627696934,49.40806579589844],[0.660915970802421,49.40307617187494],[0.634685695171413,49.43386077880865],[0.581252694130058,49.43396377563482],[0.522109389305115,49.4796257019044],[0.493775337934551,49.48446655273448],[0.435335397720394,49.46041107177739],[0.386600673198643,49.447238922119084],[0.297141581773872,49.43361282348638],[0.293195009231681,49.43337631225585],[0.287360996008033,49.44180679321295],[0.216804996132907,49.45236206054693],[0.160695001483077,49.45430374145508],[0.14708399772644,49.467361450195256],[0.093750000000171,49.488193511963004],[0.065416000783614,49.511249542236385],[0.071805000305403,49.53319549560547],[0.15319499373436,49.64541625976568],[0.162639006972256,49.68652725219732],[0.205972999334392,49.71458435058594],[0.277361989021415,49.73597335815441],[0.31986099481594,49.74152755737316],[0.380692988634166,49.769584655761776],[0.522361993789787,49.824028015136655],[0.569584012031612,49.84930419921881],[0.68819397687912,49.87125015258789],[0.76513797044754,49.872081756591854],[0.830973029136658,49.8890266418457],[0.931528985500393,49.907081604003956],[0.960138976574001,49.91986083984381],[1.019860982894954,49.915695190429744],[1.105692982673702,49.93652725219726],[1.205973029136658,49.97319412231451],[1.328611016273555,50.04624938964844],[1.379722952842712,50.06502914428705],[1.422133922576904,50.069377899170036],[1.459145903587398,50.0625],[1.452256202697811,50.04266738891613],[1.526949524879569,49.996578216552734],[1.574389457702694,49.97365570068365],[1.596047759056148,49.94798660278326],[1.678450703621024,49.918132781982536],[1.712090253829899,49.88640213012701],[1.73385405540472,49.81349945068371],[1.784845352172794,49.75790405273437]]]},"properties":{"ID_0":79,"ISO":"FR-76","NAME_0":"France","ID_1":12,"NAME_1":"Haute-Normandie","ID_2":48,"NAME_2":"Seine-Maritime","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Seine-Inférieure"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.565787315368766,43.42295837402355],[2.583821058273429,43.412666320800724],[2.557056903839225,43.389781951904354],[2.55523943901062,43.36636352539062],[2.5400807857514,43.34523391723644],[2.583539247512931,43.33391189575201],[2.60117506980896,43.298255920410156],[2.659253358841056,43.29296875000005],[2.677216291427555,43.31361389160161],[2.697157621383781,43.31675720214844],[2.70030331611639,43.282814025878906],[2.752520561218262,43.254592895507805],[2.772493362426758,43.258029937744254],[2.787239313125667,43.28768920898449],[2.837394952774105,43.32242965698248],[2.885118722915649,43.33324813842773],[2.946079254150334,43.31195831298822],[3.004423141479549,43.31970977783209],[3.005738258361816,43.28624343872075],[3.054346561431885,43.2800407409668],[3.0769784450531,43.26292800903326],[3.146507501602116,43.24738311767584],[3.201526165008659,43.2477645874024],[3.239354848861751,43.21347045898443],[3.159028053283805,43.15208435058605],[3.081249952316398,43.0759735107423],[3.009860992431697,43.11013793945323],[3.014862060546875,43.13347244262707],[2.98763990402233,43.14847183227538],[2.988193035125732,43.09513854980469],[2.960971117019767,43.0904159545899],[2.964584112167472,43.06986236572277],[3.006251096725578,43.047359466552734],[3.010416984558162,43.029582977294865],[3.042639970779476,43.02986145019525],[3.0612509250642,43.008750915527344],[3.031805038452148,42.962638854980526],[3.032361030578613,42.93902587890636],[3.060972929000854,42.91624832153332],[3.048749923705998,42.90180587768555],[3.005139112472648,42.895694732666016],[2.98902797698986,42.864540100097656],[2.917114973068351,42.88486099243164],[2.884215831756705,42.89927291870128],[2.865273952484131,42.91834259033203],[2.787163734436035,42.894412994384766],[2.761908531188908,42.873325347900504],[2.754346370697021,42.85170745849621],[2.727429866790885,42.83440399169922],[2.68201136589056,42.83071899414074],[2.664347171783504,42.8367538452149],[2.600078582763786,42.836593627929794],[2.558602333068961,42.845504760742244],[2.518538713455314,42.84313964843744],[2.500451564788875,42.850429534912216],[2.456819534301758,42.83747482299816],[2.382167577743644,42.848464965820426],[2.336096286773682,42.84070968627941],[2.321924686431885,42.82577514648432],[2.343922853469905,42.80122756958019],[2.34332537651062,42.77411270141607],[2.355345964431762,42.72805023193365],[2.322489976882991,42.70811080932623],[2.256681919098014,42.6982688903808],[2.244450807571354,42.6798324584962],[2.176088333129883,42.65300750732422],[2.16605377197277,42.66391754150396],[2.175521373748779,42.68274688720703],[2.161494493484497,42.700523376464844],[2.058119058608952,42.755485534668026],[2.003780126571769,42.73352813720703],[1.950255036354122,42.73765945434575],[1.909520149230957,42.76843643188488],[1.928959369659538,42.774604797363395],[1.895569682121277,42.80892944335943],[1.860177874565181,42.82742691040039],[1.875897049903983,42.852325439453125],[1.947126030921936,42.856689453125],[1.985040664672909,42.87085723876953],[1.989327311515922,42.910488128662166],[1.980574369430656,42.929580688476555],[1.933731198310852,42.93914413452159],[1.936138391494864,42.952056884765625],[1.979381680488586,42.9605064392091],[1.985468149185238,43.023479461669865],[1.975929021835384,43.04230499267578],[1.945866227150077,43.049396514892685],[1.961180686950797,43.06669998168951],[1.945064544677848,43.12235641479498],[1.91626942157751,43.133430480956974],[1.890102863311767,43.12347030639648],[1.874489903450069,43.14264678955078],[1.826187610626277,43.1456871032716],[1.711779952049369,43.186840057373104],[1.724626421928519,43.212497711181584],[1.688419699668884,43.273551940918026],[1.735951542854366,43.316017150878906],[1.746554732322693,43.343482971191406],[1.772272706031913,43.33697509765625],[1.805040955543632,43.359279632568416],[1.804530382156486,43.39160919189459],[1.856453418731689,43.443454742431754],[1.90211462974554,43.40870285034191],[1.958169817924556,43.425613403320426],[1.990858674049434,43.40938568115246],[2.012605428695736,43.41502761840832],[2.029132843017635,43.436897277831974],[2.053070545196476,43.43030929565424],[2.072800636291618,43.39569473266607],[2.108784675598088,43.394458770751896],[2.170411348342896,43.415813446044865],[2.186801910400391,43.39481353759771],[2.215023756027222,43.382614135742244],[2.229334115982056,43.40826797485357],[2.22249889373785,43.428283691406364],[2.256686687469482,43.45364379882824],[2.282011032104492,43.441226959228516],[2.304118156433162,43.44792938232433],[2.367331504821777,43.423179626464844],[2.398735046386832,43.41704940795904],[2.427590131759644,43.434490203857536],[2.494383096694946,43.43693542480469],[2.518988370895499,43.423717498779354],[2.565787315368766,43.42295837402355]]]},"properties":{"ID_0":79,"ISO":"FR-11","NAME_0":"France","ID_1":13,"NAME_1":"Languedoc-Roussillon","ID_2":49,"NAME_2":"Aude","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.649223804473877,44.27035903930664],[4.699935913086051,44.21610641479503],[4.716250896453857,44.17604446411144],[4.718133449554499,44.14067840576183],[4.705081939697266,44.10817337036144],[4.723213195800895,44.07935333251953],[4.762887001037654,44.07486724853527],[4.842254161834774,44.011100769043026],[4.840941429138184,43.98591613769537],[4.812966823577938,43.988006591796925],[4.814368724822998,43.96467590332031],[4.77728796005249,43.93819808959972],[4.739061355590877,43.92406845092784],[4.693608283996696,43.88521957397455],[4.641909599304199,43.867477416992244],[4.66667461395258,43.84721755981457],[4.642970085144156,43.832115173339844],[4.654428958892822,43.80915832519542],[4.651798248291129,43.784358978271484],[4.628118038177433,43.75771331787103],[4.612276077270621,43.724754333496094],[4.626948356628532,43.69167709350585],[4.598219871521053,43.686695098876946],[4.537796974182186,43.70703887939453],[4.486420631408691,43.69885253906255],[4.477648258209285,43.67280197143555],[4.451532840728817,43.66433334350597],[4.426920890808048,43.625835418701165],[4.43852519989025,43.61135482788085],[4.474191665649528,43.60398483276372],[4.448892593383789,43.58343887329113],[4.425405025482178,43.5847740173341],[4.372169971466178,43.549457550048885],[4.35365009307867,43.547393798828125],[4.293263912200985,43.51435852050781],[4.244232654571476,43.50146102905268],[4.229757785797119,43.45986175537115],[4.172917842865047,43.469306945800895],[4.136528968811149,43.482082366943416],[4.113194942474365,43.507362365722706],[4.140971183776969,43.528472900390625],[4.101309776306152,43.554862976074276],[4.099889278411922,43.585273742675895],[4.150215625762939,43.585563659668026],[4.193817615509089,43.65174484252941],[4.163625717163086,43.690139770507926],[4.141502857208309,43.73815917968756],[4.111703395843449,43.74017715454107],[4.083861827850342,43.76770782470709],[3.974202871322631,43.82721328735363],[3.958993434906063,43.85351181030285],[3.923111438751278,43.8587875366212],[3.919554233550969,43.88197326660162],[3.857115745544434,43.87616348266607],[3.830809593200683,43.86642456054682],[3.799542427063045,43.890823364257926],[3.828286409378108,43.92406082153326],[3.820307016372738,43.94240951538097],[3.795517921447867,43.94227600097662],[3.787337541580314,43.96686935424805],[3.73113656044012,43.97068023681646],[3.684487342834586,43.951660156250114],[3.67159104347229,43.91017913818365],[3.623588562011776,43.91697692871088],[3.582958459854239,43.87743377685558],[3.578907728195134,43.84356307983404],[3.521645069122371,43.86494827270519],[3.511682987213135,43.89563751220703],[3.482081651687565,43.890453338623104],[3.435181617736873,43.862960815429794],[3.435777902603206,43.90036773681651],[3.423923015594596,43.9113121032716],[3.358359336853027,43.91383361816412],[3.351584196090812,43.93761444091796],[3.377508640289307,43.96690368652355],[3.405615091323966,43.96968078613281],[3.418529033660945,43.99229431152355],[3.443552255630493,44.00233840942382],[3.450981378555298,44.02254104614252],[3.386653900146598,44.05496215820318],[3.337653160095272,44.058509826660156],[3.323059558868465,44.079849243164176],[3.295949459075985,44.069450378418026],[3.263300418853873,44.09255599975586],[3.323849201202336,44.108917236328125],[3.320353746414185,44.13594818115234],[3.336682081222477,44.15813064575206],[3.373648166656608,44.1707649230957],[3.428468227386588,44.14866638183605],[3.438627481460685,44.130371093750114],[3.505160331726074,44.12619781494152],[3.544308900833073,44.11437225341808],[3.565196275711173,44.12305068969738],[3.606166839599723,44.11590194702154],[3.632837533950863,44.121223449707145],[3.647169113159237,44.144290924072266],[3.630543470382804,44.1588706970216],[3.637706041336173,44.175434112548885],[3.671052694320736,44.18420028686529],[3.703778028488216,44.16622924804699],[3.759624004364127,44.151191711425724],[3.79699516296381,44.12738800048828],[3.832118272781372,44.13733673095703],[3.872730970382747,44.12866592407232],[3.927274465560913,44.16129684448248],[3.928445816040095,44.181720733642635],[3.950924158096257,44.21686935424816],[3.946433067321777,44.24104309082031],[3.97470068931591,44.259616851806754],[3.940030097961368,44.2838745117188],[3.922858953476066,44.30522537231445],[3.943703889846859,44.317886352539176],[3.911306858062857,44.370326995849666],[3.885817289352531,44.3879737854005],[3.917546510696525,44.40532302856457],[3.945338249206543,44.40086364746087],[3.998162984848079,44.45979690551763],[4.045418739318848,44.43349456787109],[4.037812709808406,44.420917510986385],[4.06843996047985,44.40505981445306],[4.042393207550049,44.394073486328175],[4.057089328765869,44.36414337158208],[4.051451683044546,44.31732177734369],[4.073842048645075,44.32902526855469],[4.126751899719181,44.337734222412166],[4.142867565155086,44.31335067749029],[4.177990436553955,44.31774139404297],[4.186579227447567,44.29973602294933],[4.216383934021053,44.28903961181652],[4.245138168335018,44.268074035644645],[4.27377271652216,44.27175140380859],[4.288995742797795,44.29214477539057],[4.28837442398077,44.315017700195426],[4.318097591400203,44.321750640869254],[4.325771331787165,44.33832550048828],[4.402346611022948,44.3350067138673],[4.391594409942684,44.304759979248104],[4.403570175170898,44.288177490234375],[4.448757171630858,44.29671096801763],[4.451067924499569,44.33409500122075],[4.506097316742057,44.340251922607536],[4.545630931854248,44.31970977783209],[4.557167530059871,44.30416870117182],[4.632679462432861,44.28499221801752],[4.649223804473877,44.27035903930664]]]},"properties":{"ID_0":79,"ISO":"FR-30","NAME_0":"France","ID_1":13,"NAME_1":"Languedoc-Roussillon","ID_2":50,"NAME_2":"Gard","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.101309776306152,43.554862976074276],[4.054305076599235,43.55791854858392],[3.970138072967529,43.54152679443365],[3.901526927947998,43.51486206054699],[3.833750009536856,43.475139617919865],[3.801527976989803,43.443473815918026],[3.729304075241202,43.41791534423834],[3.690972089767399,43.39152908325201],[3.656249046325797,43.390415191650504],[3.632917881011963,43.37819290161144],[3.564028024673576,43.32569503784185],[3.515417098999137,43.27402877807623],[3.479027986526489,43.27430725097662],[3.432917118072509,43.28958511352539],[3.368750095367432,43.27930450439464],[3.308470964431763,43.25430679321289],[3.239354848861751,43.21347045898443],[3.201526165008659,43.2477645874024],[3.146507501602116,43.24738311767584],[3.0769784450531,43.26292800903326],[3.054346561431885,43.2800407409668],[3.005738258361816,43.28624343872075],[3.004423141479549,43.31970977783209],[2.946079254150334,43.31195831298822],[2.885118722915649,43.33324813842773],[2.837394952774105,43.32242965698248],[2.787239313125667,43.28768920898449],[2.772493362426758,43.258029937744254],[2.752520561218262,43.254592895507805],[2.70030331611639,43.282814025878906],[2.697157621383781,43.31675720214844],[2.677216291427555,43.31361389160161],[2.659253358841056,43.29296875000005],[2.60117506980896,43.298255920410156],[2.583539247512931,43.33391189575201],[2.5400807857514,43.34523391723644],[2.55523943901062,43.36636352539062],[2.557056903839225,43.389781951904354],[2.583821058273429,43.412666320800724],[2.565787315368766,43.42295837402355],[2.606371402740535,43.43199539184582],[2.664626359939689,43.46388626098627],[2.655180931091365,43.494186401367244],[2.658852338791007,43.51692199707037],[2.616642713546867,43.56537628173834],[2.630437612533569,43.58291625976568],[2.616909265518302,43.601448059082145],[2.653636455535889,43.650016784668026],[2.722670078277702,43.64263916015636],[2.754523515701237,43.61413955688487],[2.795155286789054,43.62465286254894],[2.814752578735465,43.63930892944347],[2.8730788230896,43.646492004394645],[2.918087005615234,43.66099548339855],[2.919908761978263,43.68773651123047],[2.93546295166027,43.694667816162045],[2.982088088989201,43.70803070068365],[3.031300067901611,43.692451477050895],[3.060678243637085,43.69280624389648],[3.056274890899715,43.75495147705084],[3.074304819107056,43.76761245727545],[3.048567771911735,43.80149841308599],[3.064907550811824,43.83556747436535],[3.0882666110993,43.83510208129883],[3.127710819244498,43.81740570068354],[3.205308198928833,43.81296157836914],[3.249037027359122,43.829578399658196],[3.236856937408447,43.85407638549816],[3.242139577865601,43.87399673461914],[3.26643943786621,43.89609527587896],[3.34256815910345,43.89419174194336],[3.358359336853027,43.91383361816412],[3.423923015594596,43.9113121032716],[3.435777902603206,43.90036773681651],[3.435181617736873,43.862960815429794],[3.482081651687565,43.890453338623104],[3.511682987213135,43.89563751220703],[3.521645069122371,43.86494827270519],[3.578907728195134,43.84356307983404],[3.582958459854239,43.87743377685558],[3.623588562011776,43.91697692871088],[3.67159104347229,43.91017913818365],[3.684487342834586,43.951660156250114],[3.73113656044012,43.97068023681646],[3.787337541580314,43.96686935424805],[3.795517921447867,43.94227600097662],[3.820307016372738,43.94240951538097],[3.828286409378108,43.92406082153326],[3.799542427063045,43.890823364257926],[3.830809593200683,43.86642456054682],[3.857115745544434,43.87616348266607],[3.919554233550969,43.88197326660162],[3.923111438751278,43.8587875366212],[3.958993434906063,43.85351181030285],[3.974202871322631,43.82721328735363],[4.083861827850342,43.76770782470709],[4.111703395843449,43.74017715454107],[4.141502857208309,43.73815917968756],[4.163625717163086,43.690139770507926],[4.193817615509089,43.65174484252941],[4.150215625762939,43.585563659668026],[4.099889278411922,43.585273742675895],[4.101309776306152,43.554862976074276]]]},"properties":{"ID_0":79,"ISO":"FR-34","NAME_0":"France","ID_1":13,"NAME_1":"Languedoc-Roussillon","ID_2":51,"NAME_2":"Hérault","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.862527370452937,44.743873596191406],[3.871647119522095,44.6793365478515],[3.89477801322937,44.64996337890619],[3.894139766693229,44.61528778076172],[3.923566818237361,44.571884155273494],[3.948773860931396,44.572887420654354],[3.986860036850089,44.502166748046875],[3.998162984848079,44.45979690551763],[3.945338249206543,44.40086364746087],[3.917546510696525,44.40532302856457],[3.885817289352531,44.3879737854005],[3.911306858062857,44.370326995849666],[3.943703889846859,44.317886352539176],[3.922858953476066,44.30522537231445],[3.940030097961368,44.2838745117188],[3.97470068931591,44.259616851806754],[3.946433067321777,44.24104309082031],[3.950924158096257,44.21686935424816],[3.928445816040095,44.181720733642635],[3.927274465560913,44.16129684448248],[3.872730970382747,44.12866592407232],[3.832118272781372,44.13733673095703],[3.79699516296381,44.12738800048828],[3.759624004364127,44.151191711425724],[3.703778028488216,44.16622924804699],[3.671052694320736,44.18420028686529],[3.637706041336173,44.175434112548885],[3.630543470382804,44.1588706970216],[3.647169113159237,44.144290924072266],[3.632837533950863,44.121223449707145],[3.606166839599723,44.11590194702154],[3.565196275711173,44.12305068969738],[3.544308900833073,44.11437225341808],[3.505160331726074,44.12619781494152],[3.438627481460685,44.130371093750114],[3.428468227386588,44.14866638183605],[3.373648166656608,44.1707649230957],[3.360412120819092,44.201492309570426],[3.301043033599967,44.20647048950195],[3.239261150360164,44.19066238403326],[3.219211339950562,44.204502105712834],[3.230540037155265,44.23033905029308],[3.160531759262199,44.24628067016596],[3.154268264770621,44.27304077148448],[3.125306129455509,44.28541946411133],[3.154266595840568,44.30922698974615],[3.120220899581909,44.363311767578125],[3.137053251266479,44.39162063598627],[3.135486364364624,44.45551681518548],[3.117325305938834,44.473785400390625],[3.068931818008422,44.502704620361385],[3.083469867706412,44.560317993164006],[3.037130594253654,44.59553527832037],[2.981677055359,44.644676208496094],[3.016110181808472,44.71205520629877],[3.029445171356258,44.716552734375],[3.031344890594539,44.749637603759766],[3.048236608505362,44.76432418823242],[3.048270702362174,44.80426406860357],[3.094844818115348,44.85548019409174],[3.103126049041805,44.88463592529297],[3.142848491668701,44.902282714843864],[3.164672613144034,44.875179290771484],[3.190283536911011,44.862522125244254],[3.234992504119986,44.88877487182623],[3.226427555084285,44.90997695922863],[3.244564771652222,44.931716918945305],[3.285642385482788,44.92630767822277],[3.361342668533382,44.971412658691406],[3.386025190353394,44.95290756225597],[3.403222322464103,44.956863403320256],[3.410380125045833,44.91778564453124],[3.435711383819637,44.88024520874035],[3.456170082092398,44.83122634887707],[3.486966848373526,44.80647277832037],[3.507375001907405,44.82423400878912],[3.568770170211849,44.834182739257926],[3.597830057144221,44.85870742797863],[3.595023632049618,44.87579345703119],[3.644297122955322,44.87713241577154],[3.673640251159725,44.85412597656256],[3.666364908218497,44.828777313232365],[3.743865728378353,44.83780288696289],[3.806989908218384,44.767581939697266],[3.833253145217952,44.775276184081974],[3.839418649673519,44.74711990356457],[3.862527370452937,44.743873596191406]]]},"properties":{"ID_0":79,"ISO":"FR-48","NAME_0":"France","ID_1":13,"NAME_1":"Languedoc-Roussillon","ID_2":52,"NAME_2":"Lozère","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.027637958526554,42.84544372558594],[3.032361030578613,42.8432731628418],[3.035139083862362,42.841999053955135],[3.042083978653011,42.83880615234375],[3.034027099609432,42.67680740356451],[3.036791086196956,42.60985946655279],[3.058249950408935,42.5367317199707],[3.137082099914551,42.51652908325195],[3.131912708282471,42.482704162597656],[3.154305934906063,42.478195190429744],[3.174070119857788,42.43519210815441],[3.10809159278881,42.433589935302734],[3.085840940475464,42.42583847045904],[3.047425985336417,42.45684432983398],[2.986752748489494,42.4730682373048],[2.967549085617179,42.46552276611328],[2.945468902588004,42.480087280273494],[2.918404102325553,42.45623397827143],[2.839868068695182,42.45898818969732],[2.793810606002807,42.41819381713873],[2.77116703987133,42.41215133667003],[2.751865625381527,42.42537307739258],[2.72396111488348,42.422725677490234],[2.674422264099121,42.4047470092774],[2.653826713562125,42.38768005371094],[2.67544794082653,42.34234619140631],[2.616355419158935,42.34597396850597],[2.582230091094971,42.35707473754883],[2.555202484130916,42.35268020629882],[2.542030096054134,42.33394241333019],[2.498432397842521,42.3426246643067],[2.410337686538753,42.392154693603516],[2.356267929077205,42.40428161621094],[2.310598134994507,42.42844772338867],[2.291224956512451,42.422924041748104],[2.257082462310791,42.43848800659174],[2.201349496841487,42.416664123535156],[2.156949043273983,42.423377990722656],[2.13316917419445,42.41434097290045],[2.11365985870367,42.38169479370117],[2.08593320846569,42.36374664306646],[2.023496389388981,42.35522842407232],[1.985820055007934,42.36217880249034],[1.964365005493164,42.38256072998047],[1.933844804763794,42.454166412353516],[1.915668964385986,42.44618606567383],[1.84731495380413,42.46834564208978],[1.805248141288814,42.48865509033208],[1.730936050415096,42.49245071411144],[1.724010586738586,42.52024841308594],[1.73871898651123,42.56552886962896],[1.784208893775883,42.57571792602545],[1.838153481483459,42.58401107788097],[1.86532902717596,42.579887390136825],[1.91076564788824,42.60806274414068],[1.969060301780758,42.61674118041998],[1.997955799102726,42.66090393066412],[2.027051925659237,42.65262222290045],[2.073887109756583,42.665622711181754],[2.127885103225765,42.67203903198248],[2.16605377197277,42.66391754150396],[2.176088333129883,42.65300750732422],[2.244450807571354,42.6798324584962],[2.256681919098014,42.6982688903808],[2.322489976882991,42.70811080932623],[2.355345964431762,42.72805023193365],[2.34332537651062,42.77411270141607],[2.343922853469905,42.80122756958019],[2.321924686431885,42.82577514648432],[2.336096286773682,42.84070968627941],[2.382167577743644,42.848464965820426],[2.456819534301758,42.83747482299816],[2.500451564788875,42.850429534912216],[2.518538713455314,42.84313964843744],[2.558602333068961,42.845504760742244],[2.600078582763786,42.836593627929794],[2.664347171783504,42.8367538452149],[2.68201136589056,42.83071899414074],[2.727429866790885,42.83440399169922],[2.754346370697021,42.85170745849621],[2.761908531188908,42.873325347900504],[2.787163734436035,42.894412994384766],[2.865273952484131,42.91834259033203],[2.884215831756705,42.89927291870128],[2.917114973068351,42.88486099243164],[2.98902797698986,42.864540100097656],[2.957082986831665,42.84763717651367],[2.974859952926749,42.804306030273494],[3.02680611610424,42.809581756591854],[3.014027118682918,42.827915191650504],[3.027637958526554,42.84544372558594]],[[1.980405569076538,42.494445800781364],[1.956866025924683,42.45812988281256],[2.005080938339233,42.44804000854492],[1.980405569076538,42.494445800781364]]]},"properties":{"ID_0":79,"ISO":"FR-66","NAME_0":"France","ID_1":13,"NAME_1":"Languedoc-Roussillon","ID_2":53,"NAME_2":"Pyrénées-Orientales","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.49212551116949,45.737670898437614],[2.521507024765128,45.71134185791021],[2.528683662414608,45.682197570800895],[2.514567375183219,45.665775299072266],[2.513976573944148,45.63944244384777],[2.48628664016735,45.640823364257926],[2.478431940078792,45.60791778564458],[2.463471889495906,45.594680786132756],[2.496293544769344,45.55683135986334],[2.515879631042537,45.55388259887701],[2.518362283706608,45.5189094543457],[2.508408546447868,45.47850799560558],[2.487537860870361,45.41817092895507],[2.517482280731258,45.402050018310604],[2.523371696472282,45.38154602050787],[2.441551446914616,45.38452529907238],[2.380990982055721,45.413536071777344],[2.35025000572216,45.40960693359386],[2.368799448013306,45.386005401611385],[2.353415012359733,45.32979202270519],[2.316080331802482,45.3220329284668],[2.29032826423645,45.28847122192383],[2.269695043563843,45.2898902893067],[2.239868164062614,45.24879837036133],[2.19450759887701,45.220844268798885],[2.202461004257202,45.181419372558594],[2.221619606018066,45.1707115173341],[2.210419416427669,45.147159576416016],[2.178792953491325,45.13630294799805],[2.187932252884025,45.11671447753906],[2.172775745391903,45.08127975463878],[2.143402814865112,45.0863151550293],[2.095159292221183,45.056037902831974],[2.116937875747794,45.02196884155284],[2.140895843505916,45.00540924072271],[2.133292675018424,44.98574829101568],[2.093554258346671,44.98571014404297],[2.062914371490479,44.976505279541065],[2.045120716094971,44.98366546630865],[1.984336376190299,44.97372055053722],[1.940149903297424,44.97183990478521],[1.907779097557125,44.9782447814942],[1.887090682983455,44.956336975097656],[1.83157217502594,44.94342041015631],[1.824450731277466,44.9281005859375],[1.784546136856136,44.93051910400402],[1.753982305526847,44.94084930419922],[1.748795270919857,44.95682907104492],[1.708766579628104,44.96963500976557],[1.703376650810355,44.986576080322266],[1.671410918235836,45.00430679321289],[1.651891469955558,45.02528762817383],[1.540315151214656,45.04466629028332],[1.505799889564628,45.03949737548828],[1.460356593132133,45.013969421386776],[1.448261499405021,45.01931381225597],[1.399564027786312,45.06118392944341],[1.392447471618652,45.105876922607536],[1.4130939245224,45.12491226196295],[1.320997476577759,45.14245223999029],[1.308754444122371,45.137016296386776],[1.254436254501343,45.15850448608409],[1.291399955749625,45.18564605712896],[1.272147893905696,45.20114517211914],[1.233455657959098,45.19842529296881],[1.233607888221798,45.22219467163091],[1.277687430381832,45.24208450317394],[1.2762850522995,45.25569915771496],[1.239384651184196,45.26044845581055],[1.227059960365352,45.271842956543026],[1.241603016853333,45.30130767822277],[1.285155534744263,45.352050781250114],[1.315957784652653,45.36117553710949],[1.323230504989738,45.383117675781364],[1.281683087349052,45.385089874267635],[1.260222077369804,45.40024948120117],[1.288270592689571,45.43352890014654],[1.253151893615779,45.444217681884815],[1.285317420959473,45.490280151367244],[1.350077629089412,45.4668960571289],[1.372020363807678,45.49210357666015],[1.389600038528442,45.49615859985346],[1.408944010734501,45.52633285522461],[1.452689170837516,45.53505325317394],[1.45341527462017,45.552219390869254],[1.51134717464447,45.55213546752935],[1.517393827438411,45.56427764892584],[1.558782696723995,45.55094528198242],[1.584891438484249,45.556076049804744],[1.600403428077698,45.579444885253906],[1.625187277793998,45.578685760498104],[1.658936858177185,45.5969352722168],[1.664764881134033,45.61169433593749],[1.710733413696346,45.64133834838867],[1.750204801559448,45.64570999145508],[1.776995897293148,45.66109848022472],[1.785834431648368,45.68266296386719],[1.826436638832149,45.665046691894645],[1.874815821647758,45.66466522216808],[1.898730754852352,45.69827651977545],[1.918947458267326,45.71205520629894],[1.944381952285823,45.706954956054744],[1.956387162208671,45.72399520874029],[1.990889310836905,45.72302246093761],[2.01410174369812,45.75447845458996],[2.060475826263428,45.753902435302734],[2.113220930099487,45.72657394409173],[2.203400850296021,45.71713256835932],[2.210923671722469,45.70256042480474],[2.271074295043945,45.69164657592785],[2.271640777587834,45.664237976074325],[2.320097923278865,45.670539855957145],[2.367804527282829,45.71312332153326],[2.435855865478629,45.6992759704591],[2.49212551116949,45.737670898437614]]]},"properties":{"ID_0":79,"ISO":"FR-19","NAME_0":"France","ID_1":14,"NAME_1":"Limousin","ID_2":54,"NAME_2":"Corrèze","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.167785644531193,46.42407608032238],[2.197830677032584,46.42829895019537],[2.2810475826264,46.42040634155284],[2.286935806274471,46.383304595947266],[2.312478780746517,46.37606048583995],[2.31458568572998,46.33464050292974],[2.357931852340698,46.32336807250988],[2.386079788208008,46.33197021484381],[2.443031549453849,46.294998168945426],[2.470214605331534,46.286350250244254],[2.488920211792106,46.250007629394645],[2.51520299911499,46.23854446411133],[2.528499126434326,46.184940338134766],[2.559154748916626,46.17440795898443],[2.565378904342708,46.1430397033692],[2.550522565841788,46.118957519531364],[2.550607204437313,46.086448669433594],[2.5733420848847,46.04692459106451],[2.602696418762264,46.03287506103521],[2.593142747879085,45.99606323242193],[2.606830358505306,45.966423034667905],[2.568712472915706,45.95787429809582],[2.542185306549072,45.91991424560546],[2.553195714950618,45.91139221191411],[2.511872291565055,45.886955261230526],[2.492225408554077,45.86402893066406],[2.44342398643505,45.86674499511724],[2.447822809219474,45.845821380615234],[2.388020515441838,45.82737731933588],[2.430863142013607,45.78861618041992],[2.434118747711125,45.76985549926769],[2.49212551116949,45.737670898437614],[2.435855865478629,45.6992759704591],[2.367804527282829,45.71312332153326],[2.320097923278865,45.670539855957145],[2.271640777587834,45.664237976074325],[2.271074295043945,45.69164657592785],[2.210923671722469,45.70256042480474],[2.203400850296021,45.71713256835932],[2.113220930099487,45.72657394409173],[2.060475826263428,45.753902435302734],[2.01410174369812,45.75447845458996],[1.990889310836905,45.72302246093761],[1.956387162208671,45.72399520874029],[1.944381952285823,45.706954956054744],[1.918947458267326,45.71205520629894],[1.898730754852352,45.69827651977545],[1.873468518257084,45.72771835327143],[1.896354317665214,45.76007080078125],[1.883804917335624,45.79470825195324],[1.8430917263031,45.8139762878418],[1.815598845481929,45.814403533935604],[1.777870416641292,45.833263397216854],[1.755836963653621,45.85566711425781],[1.72966921329504,45.843494415283146],[1.652828097343445,45.84563064575195],[1.602398514747563,45.85746383666992],[1.602084875106925,45.88967514038086],[1.64156973361969,45.89622116088873],[1.604933738708496,45.933059692382805],[1.573382616043205,45.915824890136825],[1.547265052795467,45.91683197021479],[1.513821601867789,45.93107223510742],[1.518655657768249,45.95049667358393],[1.566240549087581,45.96368408203131],[1.56838762760168,45.99683761596673],[1.537903070449829,45.997337341308594],[1.5477232933045,46.03605651855469],[1.533002972602901,46.058986663818466],[1.541189193725586,46.07567596435558],[1.488492250442562,46.10815429687499],[1.504851460456962,46.123195648193416],[1.470089673996085,46.14960098266613],[1.452574014663696,46.181148529052734],[1.398495793342647,46.185882568359425],[1.379038929939327,46.21940994262707],[1.407696127891597,46.25443649291997],[1.425424695014897,46.29804229736334],[1.44238471984869,46.30341720581055],[1.440265893936271,46.335350036621094],[1.415190458297786,46.347217559814396],[1.436632752418518,46.356006622314446],[1.510587811469975,46.41925811767578],[1.543673634529227,46.41649627685558],[1.546187400817871,46.395931243896534],[1.600772142410335,46.41961669921875],[1.641089677810726,46.38558959960943],[1.683602571487427,46.41817855834955],[1.709384679794368,46.393428802490234],[1.750548720359859,46.40559387207037],[1.75973749160778,46.42748641967785],[1.747590184211731,46.45001983642584],[1.798244357109127,46.454906463623104],[1.818454504013062,46.43142318725591],[1.926118493080196,46.4319114685058],[1.97875273227703,46.44152450561529],[1.993082404136771,46.43091583251953],[2.072452068328857,46.420108795166016],[2.167785644531193,46.42407608032238]]]},"properties":{"ID_0":79,"ISO":"FR-23","NAME_0":"France","ID_1":14,"NAME_1":"Limousin","ID_2":55,"NAME_2":"Creuse","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.415190458297786,46.347217559814396],[1.440265893936271,46.335350036621094],[1.44238471984869,46.30341720581055],[1.425424695014897,46.29804229736334],[1.407696127891597,46.25443649291997],[1.379038929939327,46.21940994262707],[1.398495793342647,46.185882568359425],[1.452574014663696,46.181148529052734],[1.470089673996085,46.14960098266613],[1.504851460456962,46.123195648193416],[1.488492250442562,46.10815429687499],[1.541189193725586,46.07567596435558],[1.533002972602901,46.058986663818466],[1.5477232933045,46.03605651855469],[1.537903070449829,45.997337341308594],[1.56838762760168,45.99683761596673],[1.566240549087581,45.96368408203131],[1.518655657768249,45.95049667358393],[1.513821601867789,45.93107223510742],[1.547265052795467,45.91683197021479],[1.573382616043205,45.915824890136825],[1.604933738708496,45.933059692382805],[1.64156973361969,45.89622116088873],[1.602084875106925,45.88967514038086],[1.602398514747563,45.85746383666992],[1.652828097343445,45.84563064575195],[1.72966921329504,45.843494415283146],[1.755836963653621,45.85566711425781],[1.777870416641292,45.833263397216854],[1.815598845481929,45.814403533935604],[1.8430917263031,45.8139762878418],[1.883804917335624,45.79470825195324],[1.896354317665214,45.76007080078125],[1.873468518257084,45.72771835327143],[1.898730754852352,45.69827651977545],[1.874815821647758,45.66466522216808],[1.826436638832149,45.665046691894645],[1.785834431648368,45.68266296386719],[1.776995897293148,45.66109848022472],[1.750204801559448,45.64570999145508],[1.710733413696346,45.64133834838867],[1.664764881134033,45.61169433593749],[1.658936858177185,45.5969352722168],[1.625187277793998,45.578685760498104],[1.600403428077698,45.579444885253906],[1.584891438484249,45.556076049804744],[1.558782696723995,45.55094528198242],[1.517393827438411,45.56427764892584],[1.51134717464447,45.55213546752935],[1.45341527462017,45.552219390869254],[1.452689170837516,45.53505325317394],[1.408944010734501,45.52633285522461],[1.389600038528442,45.49615859985346],[1.372020363807678,45.49210357666015],[1.350077629089412,45.4668960571289],[1.285317420959473,45.490280151367244],[1.253151893615779,45.444217681884815],[1.212122678756771,45.462371826171875],[1.185123085975704,45.455101013183594],[1.162444353103751,45.47834777832031],[1.135644912719727,45.47116851806646],[1.118435740470943,45.48790359497082],[1.16536366939539,45.52640151977544],[1.119312405586356,45.545963287353516],[1.086023807525692,45.534744262695426],[1.047748565673828,45.55783081054699],[1.023588418960571,45.607219696044915],[0.983447432518005,45.60362243652355],[0.946144878864402,45.612552642822266],[0.893740236759186,45.601032257080185],[0.869353055954093,45.62352752685547],[0.839995682239532,45.58130264282232],[0.811500310897884,45.57587051391613],[0.805857419967708,45.59496688842767],[0.777188122272548,45.592170715332145],[0.750612974166984,45.616874694824276],[0.764133989811,45.631412506103516],[0.775643348693791,45.667747497558594],[0.744137287140006,45.68826293945318],[0.662086367607174,45.68748092651367],[0.629742443561611,45.71456909179693],[0.652866542339268,45.73937606811523],[0.695378899574337,45.76211929321294],[0.710514545440731,45.802200317382756],[0.742600083351249,45.8043785095216],[0.783778727054653,45.79347610473644],[0.782117664813995,45.82040405273443],[0.795988976955414,45.82988357543951],[0.827373206615505,45.8827476501466],[0.813539981841984,45.896884918213004],[0.821936547756195,45.931560516357536],[0.861097455024833,45.91978454589849],[0.884575426578579,45.923812866210994],[0.941492617130336,45.96058654785162],[0.924509346485252,46.01022720336914],[0.856265008449668,46.02972030639654],[0.817909300327358,46.04788589477545],[0.819170773029441,46.07739639282226],[0.832307457924003,46.104339599609375],[0.823433399200439,46.12858963012707],[0.84585261344921,46.13837051391596],[0.813373327255363,46.19768905639643],[0.80839920043951,46.22800445556646],[0.843548536300773,46.238883972168026],[0.861633241176605,46.26181793212902],[0.889699697494564,46.26854705810541],[0.901247560977993,46.28750610351568],[0.934185385704154,46.281326293945256],[1.00588679313671,46.280975341796875],[1.027162790298462,46.34344100952148],[1.048636555671806,46.356548309326286],[1.128578662872258,46.362220764160156],[1.177279949188346,46.38395309448248],[1.217970013618583,46.36825561523449],[1.250655889511222,46.376750946045036],[1.310512185096854,46.37437438964855],[1.344678044319153,46.4015998840332],[1.40700268745428,46.362640380859375],[1.415190458297786,46.347217559814396]]]},"properties":{"ID_0":79,"ISO":"FR-87","NAME_0":"France","ID_1":14,"NAME_1":"Limousin","ID_2":56,"NAME_2":"Haute-Vienne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.893401622772274,49.49691772460932],[5.929609298705998,49.48534774780285],[5.941791057586784,49.452636718750114],[5.911839962005671,49.40753555297863],[5.962819576263541,49.3448600769043],[5.951097965240535,49.327445983886776],[5.985220909118709,49.305171966552734],[6.000446319580135,49.275527954101555],[6.029171943664551,49.25003433227539],[6.02787542343151,49.23330688476574],[5.978771686554012,49.194858551025504],[6.017338752746582,49.17189025878917],[6.010886192321721,49.153678894043026],[5.982731342315674,49.14473724365239],[5.998959541320914,49.108333587646484],[5.93160343170166,49.10910415649414],[5.957571029663143,49.04782485961925],[6.005444526672476,49.034423828125],[6.044677734375,49.01244354248058],[6.043435096740779,48.97747802734381],[6.081322669982909,48.96304702758795],[6.114486217498835,48.967491149902344],[6.128252029418888,48.94935989379894],[6.175165176391715,48.936237335205185],[6.262561798095817,48.933509826660156],[6.311500549316349,48.89220428466802],[6.310247421264705,48.86348724365229],[6.288013458251953,48.84366989135748],[6.339646816253776,48.83348846435558],[6.332639694213867,48.81474685668957],[6.394874095916805,48.77476119995117],[6.433110237121696,48.7891006469726],[6.461365222930908,48.76732635498058],[6.491111278533936,48.76512527465831],[6.534210205078182,48.749599456787166],[6.562183856964111,48.75611114501947],[6.598965644836483,48.71569061279296],[6.661575317382869,48.70607757568371],[6.694580554962272,48.673019409179744],[6.726081371307373,48.66442108154297],[6.755129337310791,48.669876098632926],[6.782625675201415,48.64271926879877],[6.834289550781364,48.64362716674816],[6.847890853881893,48.623844146728516],[6.893295288085938,48.625003814697266],[6.930006980896109,48.63555145263683],[6.960798263549861,48.60828781127935],[7.034244537353629,48.5804176330567],[7.07936000823986,48.536418914795036],[7.077105522155989,48.51633453369151],[7.123165130615348,48.513591766357365],[7.09268665313715,48.51185607910162],[6.965266227722168,48.47154617309576],[6.892111301422233,48.41921234130871],[6.84918928146385,48.42383193969732],[6.815027236938533,48.39506912231451],[6.765889644622802,48.40163803100586],[6.712978839874381,48.42140197753906],[6.698643684387207,48.412860870361435],[6.647632122039795,48.4351310729981],[6.620753288268985,48.472408294677734],[6.584728717804011,48.45993041992187],[6.568589687347412,48.43822860717784],[6.534393787383975,48.43146133422857],[6.501791477203369,48.41456222534191],[6.456866264343375,48.41701507568359],[6.387394428253288,48.39214324951183],[6.308257579803524,48.411891937255966],[6.297321319580077,48.43374252319341],[6.270297527313176,48.426101684570426],[6.26044321060175,48.40640258789068],[6.178419589996452,48.39760971069347],[6.117049694061279,48.35383987426763],[6.079825401306209,48.36363983154297],[6.005126953125114,48.36041641235363],[5.964810371399039,48.35006332397466],[5.944654464721793,48.375816345214844],[5.949584960937557,48.39649963378912],[5.859340190887507,48.41650009155268],[5.897486686706486,48.44855117797846],[5.888674259185791,48.46940994262701],[5.904300212860107,48.482925415039176],[5.857234954834098,48.50685119628906],[5.810772418975886,48.49830245971691],[5.787024021148795,48.48291015625005],[5.765154838562012,48.49649429321295],[5.760970592498779,48.52146911621105],[5.776375293731803,48.540626525878906],[5.715484619140625,48.5623016357423],[5.717987537384147,48.59120941162115],[5.754817962646598,48.60630416870117],[5.760946273803825,48.63113784790039],[5.744509696960563,48.65689849853527],[5.76460170745861,48.701084136962834],[5.719037055969237,48.73291015625006],[5.740988731384221,48.75403213500982],[5.740039348602409,48.77224349975586],[5.7661590576173,48.78905487060558],[5.781350135803222,48.83536911010742],[5.765202999115047,48.87298965454101],[5.786585330963134,48.878200531005916],[5.751909255981559,48.92112350463872],[5.776647567749023,48.92515945434582],[5.799580097198429,48.94631958007812],[5.831350803375244,48.943973541259815],[5.849167823791618,48.96123123168957],[5.802735805511588,48.98711395263672],[5.821200370788517,49.01998519897455],[5.853476524353141,49.04045486450195],[5.82321310043335,49.08868408203131],[5.817852973937988,49.11104202270513],[5.760140419006348,49.109169006347656],[5.748301029205379,49.123123168945305],[5.758934974670524,49.152153015136776],[5.746400356292781,49.161479949951286],[5.765773296356315,49.19749832153326],[5.730303764343319,49.19516754150402],[5.719916343689022,49.21716308593749],[5.740555763244686,49.230117797851555],[5.720933437347355,49.24770736694347],[5.72472190856945,49.269786834716854],[5.760904788971004,49.27961349487305],[5.762899875640925,49.314331054687614],[5.732039451599121,49.310932159423885],[5.7208189964295,49.33008193969738],[5.737563610076961,49.35568237304693],[5.693565845489558,49.39720535278331],[5.691799640655631,49.41508865356451],[5.63355398178112,49.43787002563488],[5.584344863891602,49.41880798339849],[5.531253337860107,49.40774154663097],[5.493941783905029,49.407070159912166],[5.471244335174561,49.42803955078136],[5.464133739471549,49.4525985717774],[5.470910549163818,49.49721527099614],[5.531455516815298,49.512519836425895],[5.553982734680289,49.527870178222656],[5.593825817108268,49.5213623046875],[5.660805702209472,49.55235290527349],[5.701262950897217,49.53951644897472],[5.75715541839611,49.54256820678722],[5.772744655609188,49.56255340576171],[5.836172580719051,49.54177856445312],[5.836045742034969,49.51995849609386],[5.864011764526367,49.50125122070324],[5.893401622772274,49.49691772460932]]]},"properties":{"ID_0":79,"ISO":"FR-54","NAME_0":"France","ID_1":15,"NAME_1":"Lorraine","ID_2":57,"NAME_2":"Meurthe-et-Moselle","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.470910549163818,49.49721527099614],[5.464133739471549,49.4525985717774],[5.471244335174561,49.42803955078136],[5.493941783905029,49.407070159912166],[5.531253337860107,49.40774154663097],[5.584344863891602,49.41880798339849],[5.63355398178112,49.43787002563488],[5.691799640655631,49.41508865356451],[5.693565845489558,49.39720535278331],[5.737563610076961,49.35568237304693],[5.7208189964295,49.33008193969738],[5.732039451599121,49.310932159423885],[5.762899875640925,49.314331054687614],[5.760904788971004,49.27961349487305],[5.72472190856945,49.269786834716854],[5.720933437347355,49.24770736694347],[5.740555763244686,49.230117797851555],[5.719916343689022,49.21716308593749],[5.730303764343319,49.19516754150402],[5.765773296356315,49.19749832153326],[5.746400356292781,49.161479949951286],[5.758934974670524,49.152153015136776],[5.748301029205379,49.123123168945305],[5.760140419006348,49.109169006347656],[5.817852973937988,49.11104202270513],[5.82321310043335,49.08868408203131],[5.853476524353141,49.04045486450195],[5.821200370788517,49.01998519897455],[5.802735805511588,48.98711395263672],[5.849167823791618,48.96123123168957],[5.831350803375244,48.943973541259815],[5.799580097198429,48.94631958007812],[5.776647567749023,48.92515945434582],[5.751909255981559,48.92112350463872],[5.786585330963134,48.878200531005916],[5.765202999115047,48.87298965454101],[5.781350135803222,48.83536911010742],[5.7661590576173,48.78905487060558],[5.740039348602409,48.77224349975586],[5.740988731384221,48.75403213500982],[5.719037055969237,48.73291015625006],[5.76460170745861,48.701084136962834],[5.744509696960563,48.65689849853527],[5.760946273803825,48.63113784790039],[5.754817962646598,48.60630416870117],[5.717987537384147,48.59120941162115],[5.715484619140625,48.5623016357423],[5.776375293731803,48.540626525878906],[5.760970592498779,48.52146911621105],[5.765154838562012,48.49649429321295],[5.740233421325627,48.46586990356457],[5.715582370758056,48.46084594726556],[5.676377773284968,48.4715309143067],[5.615055084228516,48.4405136108399],[5.560826778411865,48.44147109985363],[5.515346527099609,48.42991256713867],[5.504005432128963,48.40933609008795],[5.470061779022159,48.42092895507823],[5.445930480957145,48.424839019775504],[5.409501552581787,48.44554138183605],[5.398074150085505,48.47318649291992],[5.349470138549861,48.48198699951183],[5.327370643615723,48.50932312011718],[5.272637367248535,48.514316558838004],[5.229124546051139,48.5307731628418],[5.165067672729548,48.56534194946288],[5.143528461456356,48.563133239746094],[5.117875099182242,48.58689117431652],[5.070285797119254,48.595924377441406],[5.05173921585083,48.632911682128906],[5.032918930053825,48.61355590820318],[5.006401062011776,48.61138916015625],[4.98842811584467,48.684429168701286],[5.009220123291128,48.741390228271484],[4.989574909210205,48.742046356201286],[4.93437576293951,48.790588378906364],[4.893365383148193,48.796958923339844],[4.88876104354864,48.81721115112316],[4.935492515564079,48.840499877929744],[4.912255764007568,48.869461059570305],[4.913592338562069,48.89767837524425],[4.936209201812743,48.92214202880865],[4.973320007324219,48.92886734008789],[5.030943393707389,48.954326629638786],[5.037756443023738,48.97412490844732],[5.035267353057975,49.02256011962885],[5.010010719299316,49.03468704223633],[4.996342658996582,49.106502532959034],[4.942377567291203,49.18677139282232],[4.991859436035156,49.21083831787109],[4.970838069915885,49.23553466796881],[4.950989246368464,49.23686599731445],[5.011029243469238,49.26928710937505],[5.051180839538688,49.27405166625971],[5.05663633346569,49.29336547851574],[5.030794143676758,49.30817031860363],[5.027099609374943,49.33561325073253],[5.055816173553467,49.35943603515625],[5.088621616363525,49.369625091552734],[5.104149341583308,49.38977813720703],[5.084472179412899,49.4045867919923],[5.115028381347599,49.42058181762695],[5.100886344909725,49.44083404541027],[5.109860420227051,49.45624923706054],[5.059871673583984,49.504707336425895],[5.097719669342097,49.53364562988287],[5.09607982635498,49.55778503417969],[5.119714736938476,49.592678070068416],[5.145609378814754,49.58919525146496],[5.15988731384283,49.56669235229492],[5.234343528747672,49.56909179687506],[5.262710094452018,49.54182052612315],[5.308170795440731,49.56284713745117],[5.339980602264347,49.594188690185604],[5.377237319946346,49.59262084960948],[5.393536567688045,49.61708831787103],[5.430971622467098,49.59238433837896],[5.442548751831112,49.55027389526367],[5.465261459350643,49.536308288574276],[5.447196483612061,49.51788330078136],[5.470910549163818,49.49721527099614]]]},"properties":{"ID_0":79,"ISO":"FR-55","NAME_0":"France","ID_1":15,"NAME_1":"Lorraine","ID_2":58,"NAME_2":"Meuse","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.635286331176758,49.05416870117199],[7.588737010955754,48.99104690551758],[7.57992601394659,48.96161270141613],[7.536513805389404,48.9336395263673],[7.451631069183463,48.967971801757926],[7.379917621612605,48.95119857788086],[7.359096050262508,48.956470489501896],[7.326852798461914,48.94338226318371],[7.290202617645264,48.95651626586914],[7.293926715850887,48.972618103027344],[7.237987995147762,48.98765182495123],[7.209311485290527,48.98008728027344],[7.174240112304687,49.006366729736385],[7.12995100021385,49.0053596496582],[7.106357574463004,49.0453453063966],[7.099342346191463,49.077892303466854],[7.068600177764892,49.06338882446295],[7.078660011291446,49.050361633300895],[7.054912567138671,49.03062820434582],[7.052350997924862,49.008701324463004],[7.031687259674015,48.986366271972656],[7.032219409942627,48.95605087280285],[6.992516994476432,48.96052932739258],[6.977410316467285,48.93305587768555],[6.955067157745361,48.919960021972656],[6.957379817962646,48.89415740966808],[6.987973690033016,48.891368865966854],[7.055009841919059,48.864917755126896],[7.04711723327631,48.82063674926769],[7.087958335876408,48.80617141723627],[7.126799583435115,48.80115127563482],[7.147360801696834,48.82225036621105],[7.148854255676326,48.844596862793075],[7.203428268432674,48.826957702636776],[7.227121353149414,48.82846069335937],[7.245234966278132,48.81003189086913],[7.290898799896297,48.793907165527344],[7.308582782745418,48.76787948608398],[7.260134220123405,48.694713592529354],[7.26627588272106,48.66230010986328],[7.304355621338004,48.66020965576171],[7.280715942382869,48.63721847534179],[7.25628185272211,48.58867645263671],[7.21657133102417,48.552364349365234],[7.193254470825251,48.54924392700207],[7.168498992919978,48.528694152832145],[7.07936000823986,48.536418914795036],[7.034244537353629,48.5804176330567],[6.960798263549861,48.60828781127935],[6.930006980896109,48.63555145263683],[6.893295288085938,48.625003814697266],[6.847890853881893,48.623844146728516],[6.834289550781364,48.64362716674816],[6.782625675201415,48.64271926879877],[6.755129337310791,48.669876098632926],[6.726081371307373,48.66442108154297],[6.694580554962272,48.673019409179744],[6.661575317382869,48.70607757568371],[6.598965644836483,48.71569061279296],[6.562183856964111,48.75611114501947],[6.534210205078182,48.749599456787166],[6.491111278533936,48.76512527465831],[6.461365222930908,48.76732635498058],[6.433110237121696,48.7891006469726],[6.394874095916805,48.77476119995117],[6.332639694213867,48.81474685668957],[6.339646816253776,48.83348846435558],[6.288013458251953,48.84366989135748],[6.310247421264705,48.86348724365229],[6.311500549316349,48.89220428466802],[6.262561798095817,48.933509826660156],[6.175165176391715,48.936237335205185],[6.128252029418888,48.94935989379894],[6.114486217498835,48.967491149902344],[6.081322669982909,48.96304702758795],[6.043435096740779,48.97747802734381],[6.044677734375,49.01244354248058],[6.005444526672476,49.034423828125],[5.957571029663143,49.04782485961925],[5.93160343170166,49.10910415649414],[5.998959541320914,49.108333587646484],[5.982731342315674,49.14473724365239],[6.010886192321721,49.153678894043026],[6.017338752746582,49.17189025878917],[5.978771686554012,49.194858551025504],[6.02787542343151,49.23330688476574],[6.029171943664551,49.25003433227539],[6.000446319580135,49.275527954101555],[5.985220909118709,49.305171966552734],[5.951097965240535,49.327445983886776],[5.962819576263541,49.3448600769043],[5.911839962005671,49.40753555297863],[5.941791057586784,49.452636718750114],[5.929609298705998,49.48534774780285],[5.893401622772274,49.49691772460932],[5.945434093475342,49.49964141845703],[5.97020149230957,49.49022293090825],[5.974236488342342,49.46641540527343],[6.042151451110954,49.447807312011776],[6.056343555450495,49.46540451049804],[6.100008487701416,49.46677780151373],[6.144611835479849,49.487735748291016],[6.156764030456543,49.50283813476557],[6.235638618469295,49.50806808471691],[6.276154041290282,49.503536224365234],[6.295624732971247,49.48171615600597],[6.333777427673454,49.46689224243164],[6.40320014953619,49.46595764160162],[6.422406673431396,49.47601318359381],[6.468185901641959,49.46473312377941],[6.535418987274113,49.434162139892635],[6.554641246795654,49.41904830932617],[6.540528297424373,49.40114593505871],[6.584013462066707,49.384719848632926],[6.599329471588135,49.366619110107415],[6.565380573272648,49.34928894042962],[6.615992069244611,49.30268478393555],[6.66784572601324,49.28043746948248],[6.661530017853011,49.257331848144645],[6.684309005737418,49.25207519531249],[6.692921638488769,49.21754837036144],[6.730622768402213,49.206710815429744],[6.712838172912541,49.189559936523494],[6.737987518310604,49.16456985473627],[6.784133911132926,49.1681480407716],[6.834462642669735,49.15137863159191],[6.860935211181641,49.17862701416015],[6.837654113769588,49.21126174926769],[6.858445644378776,49.22163009643555],[6.894287586212271,49.21019744873058],[6.934805393219222,49.222129821777344],[6.957561016082764,49.20380401611328],[7.033706188201847,49.18826293945324],[7.028265476227034,49.17131423950201],[7.058024406433162,49.1125869750976],[7.104239463806152,49.1386833190918],[7.158799171447754,49.1207733154298],[7.245446205139216,49.12971115112305],[7.293400287628287,49.115158081054744],[7.32595539093012,49.1434440612793],[7.362774372100886,49.14517593383789],[7.366178035736084,49.17201232910162],[7.445586204528752,49.18402481079096],[7.456798076629752,49.16413116455078],[7.491343021392765,49.16851043701172],[7.503565311431829,49.150531768798885],[7.489583015442008,49.13652801513677],[7.517829895019588,49.11877441406256],[7.531178951263484,49.097133636474666],[7.568486213684139,49.07990646362304],[7.599774837493897,49.083007812500114],[7.627396106720028,49.07339859008783],[7.635286331176758,49.05416870117199]]]},"properties":{"ID_0":79,"ISO":"FR-57","NAME_0":"France","ID_1":15,"NAME_1":"Lorraine","ID_2":59,"NAME_2":"Moselle","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Lothringen"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.123165130615348,48.513591766357365],[7.125453948974723,48.499603271484375],[7.095686912536678,48.426532745361385],[7.100822448730469,48.37374496459972],[7.075964450836238,48.352584838867244],[7.117123603820801,48.33413314819336],[7.178990840911979,48.32862091064464],[7.198282241821233,48.310478210449276],[7.148723125457821,48.264339447021484],[7.106290340423698,48.19430923461914],[7.086996555328426,48.183753967285156],[7.059046268463192,48.139179229736264],[7.084163188934269,48.12922286987316],[7.051650047302303,48.082607269287166],[7.034357547759953,48.0753898620606],[7.002565860748291,48.023250579833984],[6.943508625030574,47.99873733520519],[6.920379638671874,47.945999145507926],[6.92751312255865,47.91213226318359],[6.898328304290828,47.888694763183594],[6.920047760009709,47.850288391113395],[6.896086215973128,47.832973480224666],[6.846179962158316,47.82294464111334],[6.823538780212459,47.813053131103516],[6.79194593429571,47.83016586303722],[6.784952163696232,47.849575042724666],[6.738163948059082,47.8620491027832],[6.70367431640625,47.88142395019531],[6.645202636718807,47.90408706665045],[6.629285335540884,47.928180694580185],[6.601244449615479,47.944377899170036],[6.568707942962646,47.93449783325207],[6.542013645172119,47.902534484863395],[6.478261947631893,47.88544082641613],[6.431921482086125,47.943809509277344],[6.408420085906982,47.943195343017635],[6.364992618560847,47.96257400512695],[6.322461128234976,47.95008087158203],[6.277333736419735,47.95380783081055],[6.237987041473446,47.932842254638665],[6.182055950164851,47.95693206787104],[6.161246776580924,47.95829772949219],[6.156057834625358,48.00694274902344],[6.131397247314453,48.024085998535156],[6.109234809875602,48.01247024536144],[6.072221279144401,48.01554870605469],[6.036863803863639,48.00145339965832],[6.002262115478516,47.95608901977539],[5.970777988433838,47.957206726074276],[5.947534561157283,47.979709625244254],[5.921330451965446,47.971027374267635],[5.918042659759635,47.94736099243164],[5.884726524353084,47.926048278808594],[5.833769321441594,47.959617614746094],[5.788412094116325,47.952697753906364],[5.778491973876896,47.978008270263615],[5.794785022735596,47.99679565429682],[5.776419162750244,48.02240753173828],[5.740804195404166,48.049011230468864],[5.692103862762508,48.07552719116211],[5.633142948150692,48.08429718017589],[5.656557559967098,48.120552062988395],[5.685355663299674,48.150619506835994],[5.680172920227107,48.1786727905274],[5.730982780456486,48.18970108032238],[5.710844039916992,48.219936370849666],[5.640901088714656,48.242355346679744],[5.653809070587158,48.26852416992193],[5.611651897430534,48.29181671142589],[5.58552980422985,48.280433654785156],[5.533514022827148,48.325103759765625],[5.526526927947941,48.34685516357422],[5.474495887756404,48.354568481445426],[5.426048278808651,48.33106231689459],[5.418554782867432,48.36069488525402],[5.442883968353385,48.37938690185558],[5.409779071807861,48.392620086670036],[5.470061779022159,48.42092895507823],[5.504005432128963,48.40933609008795],[5.515346527099609,48.42991256713867],[5.560826778411865,48.44147109985363],[5.615055084228516,48.4405136108399],[5.676377773284968,48.4715309143067],[5.715582370758056,48.46084594726556],[5.740233421325627,48.46586990356457],[5.765154838562012,48.49649429321295],[5.787024021148795,48.48291015625005],[5.810772418975886,48.49830245971691],[5.857234954834098,48.50685119628906],[5.904300212860107,48.482925415039176],[5.888674259185791,48.46940994262701],[5.897486686706486,48.44855117797846],[5.859340190887507,48.41650009155268],[5.949584960937557,48.39649963378912],[5.944654464721793,48.375816345214844],[5.964810371399039,48.35006332397466],[6.005126953125114,48.36041641235363],[6.079825401306209,48.36363983154297],[6.117049694061279,48.35383987426763],[6.178419589996452,48.39760971069347],[6.26044321060175,48.40640258789068],[6.270297527313176,48.426101684570426],[6.297321319580077,48.43374252319341],[6.308257579803524,48.411891937255966],[6.387394428253288,48.39214324951183],[6.456866264343375,48.41701507568359],[6.501791477203369,48.41456222534191],[6.534393787383975,48.43146133422857],[6.568589687347412,48.43822860717784],[6.584728717804011,48.45993041992187],[6.620753288268985,48.472408294677734],[6.647632122039795,48.4351310729981],[6.698643684387207,48.412860870361435],[6.712978839874381,48.42140197753906],[6.765889644622802,48.40163803100586],[6.815027236938533,48.39506912231451],[6.84918928146385,48.42383193969732],[6.892111301422233,48.41921234130871],[6.965266227722168,48.47154617309576],[7.09268665313715,48.51185607910162],[7.123165130615348,48.513591766357365]]]},"properties":{"ID_0":79,"ISO":"FR-88","NAME_0":"France","ID_1":15,"NAME_1":"Lorraine","ID_2":60,"NAME_2":"Vosges","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.688419699668884,43.273551940918026],[1.724626421928519,43.212497711181584],[1.711779952049369,43.186840057373104],[1.826187610626277,43.1456871032716],[1.874489903450069,43.14264678955078],[1.890102863311767,43.12347030639648],[1.91626942157751,43.133430480956974],[1.945064544677848,43.12235641479498],[1.961180686950797,43.06669998168951],[1.945866227150077,43.049396514892685],[1.975929021835384,43.04230499267578],[1.985468149185238,43.023479461669865],[1.979381680488586,42.9605064392091],[1.936138391494864,42.952056884765625],[1.933731198310852,42.93914413452159],[1.980574369430656,42.929580688476555],[1.989327311515922,42.910488128662166],[1.985040664672909,42.87085723876953],[1.947126030921936,42.856689453125],[1.875897049903983,42.852325439453125],[1.860177874565181,42.82742691040039],[1.895569682121277,42.80892944335943],[1.928959369659538,42.774604797363395],[1.909520149230957,42.76843643188488],[1.950255036354122,42.73765945434575],[2.003780126571769,42.73352813720703],[2.058119058608952,42.755485534668026],[2.161494493484497,42.700523376464844],[2.175521373748779,42.68274688720703],[2.16605377197277,42.66391754150396],[2.127885103225765,42.67203903198248],[2.073887109756583,42.665622711181754],[2.027051925659237,42.65262222290045],[1.997955799102726,42.66090393066412],[1.969060301780758,42.61674118041998],[1.91076564788824,42.60806274414068],[1.86532902717596,42.579887390136825],[1.838153481483459,42.58401107788097],[1.784208893775883,42.57571792602545],[1.728249907493648,42.58957290649414],[1.722918033599967,42.61171722412121],[1.690446734428519,42.622329711914055],[1.605046987533569,42.62314605712896],[1.575307488441581,42.64736557006835],[1.551056981086845,42.65231704711914],[1.478919982910156,42.634738922119254],[1.479483008384761,42.610874176025504],[1.448205947875977,42.60021972656256],[1.428884029388541,42.61336135864269],[1.413033246994018,42.6526451110841],[1.392752051353568,42.66743087768555],[1.387916922569275,42.68730545043951],[1.351433992385921,42.704677581787166],[1.357378125190735,42.71942138671881],[1.251881957054195,42.71484756469738],[1.229292750358582,42.727722167968864],[1.165018081665039,42.70952606201177],[1.133241057396049,42.7282600402832],[1.12919294834137,42.75265502929693],[1.107016444206238,42.771453857421875],[1.073248028755188,42.78236389160162],[1.00707995891571,42.79023742675787],[0.984495997429008,42.786155700683594],[0.960393071174678,42.80515670776373],[0.925827205181179,42.789672851562614],[0.858305692672843,42.82571792602538],[0.842883288860321,42.88958358764643],[0.826681554317588,42.915500640869254],[0.877979457378387,42.92782592773432],[0.874911367893333,42.957775115966854],[0.912638902664298,42.959396362304744],[0.979101359844208,42.97443008422863],[1.005528807640189,43.00608825683594],[0.989041686058101,43.023395538330135],[0.985586166381836,43.062465667724666],[0.991670012474174,43.09117126464849],[1.009500741958732,43.11348342895519],[1.038230061531067,43.10030746459972],[1.062937736511174,43.13866806030285],[1.087976813316402,43.13382339477545],[1.124082088470572,43.15690612792968],[1.145858645439262,43.13853454589855],[1.174984216690063,43.140975952148494],[1.210750937461967,43.11509704589855],[1.22357106208807,43.08592605590826],[1.261853694915771,43.09165191650402],[1.260736584663448,43.10799026489258],[1.290166020393428,43.12343978881836],[1.273872494697628,43.14838790893566],[1.223737716674918,43.15207290649414],[1.230324387550468,43.187385559082145],[1.253253817558289,43.18379211425775],[1.276631951332206,43.195549011230526],[1.314607858657837,43.189994812011776],[1.327822327613944,43.20455932617199],[1.370204210281486,43.21067047119152],[1.374902963638363,43.238639831543026],[1.318422198295593,43.25115203857422],[1.294111132621765,43.264926910400504],[1.301558256149406,43.287563323974666],[1.323968291282767,43.30939865112305],[1.345491409301815,43.31549072265631],[1.426046729087886,43.255790710449276],[1.417138576507682,43.22647476196289],[1.468744039535466,43.209564208984375],[1.504521846771297,43.24952697753912],[1.488674044609127,43.26860427856445],[1.545386075973511,43.27679824829101],[1.565423369407767,43.25539016723644],[1.582583427429256,43.268871307373104],[1.637143492698669,43.25400924682623],[1.67361319065094,43.281345367431584],[1.688419699668884,43.273551940918026]]]},"properties":{"ID_0":79,"ISO":"FR-09","NAME_0":"France","ID_1":16,"NAME_1":"Midi-Pyrénées","ID_2":61,"NAME_2":"Ariège","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.981677055359,44.644676208496094],[3.037130594253654,44.59553527832037],[3.083469867706412,44.560317993164006],[3.068931818008422,44.502704620361385],[3.117325305938834,44.473785400390625],[3.135486364364624,44.45551681518548],[3.137053251266479,44.39162063598627],[3.120220899581909,44.363311767578125],[3.154266595840568,44.30922698974615],[3.125306129455509,44.28541946411133],[3.154268264770621,44.27304077148448],[3.160531759262199,44.24628067016596],[3.230540037155265,44.23033905029308],[3.219211339950562,44.204502105712834],[3.239261150360164,44.19066238403326],[3.301043033599967,44.20647048950195],[3.360412120819092,44.201492309570426],[3.373648166656608,44.1707649230957],[3.336682081222477,44.15813064575206],[3.320353746414185,44.13594818115234],[3.323849201202336,44.108917236328125],[3.263300418853873,44.09255599975586],[3.295949459075985,44.069450378418026],[3.323059558868465,44.079849243164176],[3.337653160095272,44.058509826660156],[3.386653900146598,44.05496215820318],[3.450981378555298,44.02254104614252],[3.443552255630493,44.00233840942382],[3.418529033660945,43.99229431152355],[3.405615091323966,43.96968078613281],[3.377508640289307,43.96690368652355],[3.351584196090812,43.93761444091796],[3.358359336853027,43.91383361816412],[3.34256815910345,43.89419174194336],[3.26643943786621,43.89609527587896],[3.242139577865601,43.87399673461914],[3.236856937408447,43.85407638549816],[3.249037027359122,43.829578399658196],[3.205308198928833,43.81296157836914],[3.127710819244498,43.81740570068354],[3.0882666110993,43.83510208129883],[3.064907550811824,43.83556747436535],[3.048567771911735,43.80149841308599],[3.074304819107056,43.76761245727545],[3.056274890899715,43.75495147705084],[3.060678243637085,43.69280624389648],[3.031300067901611,43.692451477050895],[2.982088088989201,43.70803070068365],[2.93546295166027,43.694667816162045],[2.919138908386344,43.732467651367244],[2.902605056762695,43.742271423339844],[2.87045335769659,43.73916244506836],[2.814518213272208,43.76158523559582],[2.781498908996525,43.736957550048935],[2.740542888641471,43.72895812988281],[2.713823318481502,43.74196624755865],[2.681730508804378,43.743515014648494],[2.629212617874259,43.780254364013786],[2.609146595001278,43.806808471679744],[2.561801910400391,43.84597396850585],[2.576271295547485,43.881759643554744],[2.552006721496696,43.89157104492199],[2.553841829299984,43.921085357666016],[2.508499145507812,43.94527435302739],[2.523254871368408,43.98014831542969],[2.501797914505005,43.98663330078125],[2.484887838363704,44.02468872070324],[2.460870742797852,44.050323486328125],[2.410210132598934,44.055858612060604],[2.389214754104671,44.09457015991216],[2.357738494873104,44.10155487060558],[2.332443237304687,44.123023986816406],[2.307294845581112,44.118537902832145],[2.284880399703979,44.14533615112316],[2.237414836883545,44.13430404663097],[2.237613677978572,44.15862655639654],[2.180790424346924,44.17827987670904],[2.15814995765686,44.17923355102545],[2.149213075637931,44.20054244995117],[2.114063739776611,44.195800781250114],[2.030249834060783,44.157573699951286],[1.990170717239494,44.14945220947277],[1.973979711532649,44.18139266967785],[1.912990093231201,44.18841171264654],[1.908349752426261,44.21245574951172],[1.932162523269596,44.24264526367193],[1.962021231651306,44.24234008789074],[1.970633387565613,44.27634811401373],[1.940270781517029,44.28255081176758],[1.901390552520865,44.279117584228516],[1.860482931137198,44.321937561035156],[1.882082700729313,44.34007263183594],[1.90823853015911,44.36341857910162],[1.868874788284359,44.397212982177734],[1.873185753822327,44.424140930175724],[1.850807547569275,44.43733215332031],[1.84075832366949,44.47948837280285],[1.920824050903434,44.49192047119146],[1.938833951950016,44.51609802246093],[1.957918286323661,44.51904296875006],[1.984238862991333,44.54726028442377],[2.01884222030651,44.555561065673885],[2.054844617843685,44.58019256591797],[2.084695816040039,44.5850715637207],[2.104022741317806,44.57147216796881],[2.15256190299999,44.57158660888672],[2.169551610946598,44.59132385253912],[2.198402643203735,44.593173980713004],[2.207475185394344,44.615531921386776],[2.208414077758903,44.6438446044923],[2.286239624023381,44.6664390563966],[2.324130058288574,44.66915512084961],[2.350984096527213,44.6412353515625],[2.380878210067692,44.64966964721691],[2.43565034866333,44.639743804931754],[2.468039989471549,44.6428947448731],[2.489523649215698,44.65871429443371],[2.500495910644531,44.68880844116211],[2.556230068206901,44.722229003906364],[2.553678035736027,44.75742340087896],[2.564486026763859,44.778091430664176],[2.600122690200806,44.79366683959972],[2.604162216186523,44.84309005737298],[2.629077434539852,44.87225723266613],[2.65304875373846,44.86977005004894],[2.681867837905884,44.90734863281255],[2.706372261047363,44.90708923339844],[2.716765642166138,44.9288330078125],[2.737687826156729,44.94036483764643],[2.776095151901245,44.90963745117193],[2.778589725494442,44.88749694824219],[2.804778099060172,44.87378692626959],[2.851404428482113,44.871952056884766],[2.855560064315796,44.851230621338004],[2.889642000198364,44.78832626342785],[2.920190811157283,44.794315338134766],[2.933773994445801,44.780647277832024],[2.923264503479118,44.72864913940424],[2.93934607505804,44.67757415771496],[2.981677055359,44.644676208496094]]]},"properties":{"ID_0":79,"ISO":"FR-12","NAME_0":"France","ID_1":16,"NAME_1":"Midi-Pyrénées","ID_2":62,"NAME_2":"Aveyron","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.741884768009129,44.06520080566406],[0.764047920703945,44.02964019775402],[0.822057127952689,44.05559539794933],[0.849297761917228,44.0344734191895],[0.81455105543148,44.02281570434576],[0.826871812343597,43.99749374389654],[0.760114133358115,43.945304870605526],[0.770003974437714,43.922142028808594],[0.809297919273433,43.93230056762707],[0.840336859226284,43.91600418090826],[0.864677667617855,43.9231796264649],[0.889230489730949,43.90424728393566],[0.886032879352683,43.87224578857427],[0.904105901718253,43.86095428466797],[0.895239293575287,43.83989715576183],[0.925163149833793,43.832027435302734],[0.897291123867092,43.7885360717774],[0.953983128070888,43.78737258911127],[0.95909887552267,43.77180480957042],[1.027387976646423,43.71043395996094],[1.065703153610229,43.70022964477538],[1.049022436141968,43.6760139465332],[1.090188384056091,43.64419174194336],[1.146710634231681,43.63558197021495],[1.158654093742484,43.60517501831066],[1.180900216102714,43.614101409912166],[1.200300693511963,43.595874786376896],[1.199342727661133,43.56918334960943],[1.163915634155273,43.57196426391607],[1.156430244445914,43.556827545166016],[1.125247001648063,43.55449295043945],[1.097081542015189,43.533229827880916],[1.059616446495056,43.53932571411138],[1.051385164260921,43.48913192749029],[1.017532825470084,43.4735946655274],[1.041670083999747,43.46081542968756],[1.018913507461548,43.43065643310547],[1.022787809371948,43.41170501708996],[1.001607060432491,43.39102172851568],[0.993662059307041,43.36653137207031],[0.966509282588959,43.37118148803705],[0.917251110076904,43.40633392333996],[0.864437758922634,43.41583251953131],[0.820541322231406,43.416984558105526],[0.80729699134838,43.39972305297857],[0.770421624183768,43.416809082031364],[0.731535673141479,43.372188568115234],[0.715342760086059,43.37888717651373],[0.674718856811523,43.32951354980463],[0.644252777099723,43.31239318847656],[0.606810986995811,43.310886383056754],[0.54706913232809,43.32980728149414],[0.505965948104915,43.3331871032716],[0.493539661169109,43.32548141479498],[0.444980084896201,43.34073638916027],[0.442971318960247,43.3279266357423],[0.395822793245316,43.334243774414176],[0.378548383712825,43.35536575317383],[0.331350296735764,43.34265518188482],[0.325406849384422,43.374774932861435],[0.298759490251655,43.38858032226574],[0.231704190373421,43.367713928222656],[0.182031214237327,43.37118148803705],[0.173804938793239,43.40277099609375],[0.15695665776741,43.39892959594732],[0.134548753500042,43.42248916625971],[0.166064128279743,43.442378997802734],[0.13074146211153,43.47406387329107],[0.127468124032021,43.49899673461914],[0.112247779965514,43.51737213134777],[0.053621441125927,43.518768310546875],[0.030054572969789,43.54456710815423],[-0.001665770076215,43.56532287597656],[-0.015008710324707,43.60552597045904],[-0.074212595820313,43.606178283691456],[-0.096782974898815,43.582405090332145],[-0.162107899785042,43.58166503906244],[-0.176560878753605,43.59683227539068],[-0.242837071418762,43.58498382568365],[-0.24720419943327,43.61595916748058],[-0.274354100227299,43.61604309082031],[-0.239730194211006,43.67124176025396],[-0.247380658984184,43.70924377441417],[-0.194143295288029,43.73701858520502],[-0.2156824767589,43.77240753173828],[-0.218646913766861,43.79658889770508],[-0.194708436727467,43.809211730956974],[-0.189844444394112,43.833698272705185],[-0.208908215165081,43.85766983032232],[-0.193995684385243,43.8816871643067],[-0.232803344726506,43.90158462524425],[-0.200575128197613,43.91463851928711],[-0.177077353000641,43.935680389404354],[-0.125395178794861,43.943504333496094],[-0.102561041712704,43.92727661132806],[-0.044189833104554,43.9636688232423],[-0.036168925464096,43.983741760253906],[0.005599549505916,43.95558547973644],[-0.020385520532727,43.92929458618164],[0.033177878707704,43.899978637695426],[0.058618139475584,43.89838027954095],[0.075081668794269,43.914680480956974],[0.055424667894897,43.957138061523494],[0.076045610010738,43.98314285278326],[0.107387967407817,43.985382080078175],[0.138624876737708,43.97659683227539],[0.189806640148277,44.01500701904291],[0.214733630418777,44.02278518676758],[0.232994541525898,44.009391784668026],[0.303003638982773,43.99123764038097],[0.32474011182785,44.00780105590832],[0.357013463973999,44.015411376953125],[0.382336765527782,44.00823974609381],[0.418932557106075,44.02828979492193],[0.442449927330074,44.02876281738281],[0.459759086370582,44.05537796020507],[0.5115802884103,44.06273651123046],[0.538427472114563,44.0529518127442],[0.566978871822471,44.06061553955078],[0.592675149440765,44.07926177978527],[0.652207732200736,44.04290771484374],[0.662558913230953,44.0245933532716],[0.707922756671906,44.058288574218864],[0.741884768009129,44.06520080566406]]]},"properties":{"ID_0":79,"ISO":"FR-32","NAME_0":"France","ID_1":16,"NAME_1":"Midi-Pyrénées","ID_2":63,"NAME_2":"Gers","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.555617213249207,43.91831588745123],[1.547523379325924,43.899723052978516],[1.555085539817867,43.86849212646496],[1.593170404434204,43.843139648437614],[1.588588714599723,43.81717681884777],[1.625502228736991,43.80180740356457],[1.655761480331535,43.76688766479498],[1.659742832183838,43.74218750000005],[1.706445574760494,43.716220855712834],[1.663572669029349,43.69405746459972],[1.720704436302299,43.68834686279297],[1.728840708732662,43.6575660705567],[1.702793240547294,43.65068817138683],[1.687770843505973,43.6307106018067],[1.806152582168693,43.57936859130854],[1.839145183563176,43.57787322998047],[1.850710630416927,43.549190521240234],[1.887719273567313,43.51694107055664],[1.987313747406006,43.479011535644645],[2.048094272613525,43.49829483032232],[2.048289775848446,43.48573303222656],[2.019332170486507,43.47006225585948],[2.029132843017635,43.436897277831974],[2.012605428695736,43.41502761840832],[1.990858674049434,43.40938568115246],[1.958169817924556,43.425613403320426],[1.90211462974554,43.40870285034191],[1.856453418731689,43.443454742431754],[1.804530382156486,43.39160919189459],[1.805040955543632,43.359279632568416],[1.772272706031913,43.33697509765625],[1.746554732322693,43.343482971191406],[1.735951542854366,43.316017150878906],[1.688419699668884,43.273551940918026],[1.67361319065094,43.281345367431584],[1.637143492698669,43.25400924682623],[1.582583427429256,43.268871307373104],[1.565423369407767,43.25539016723644],[1.545386075973511,43.27679824829101],[1.488674044609127,43.26860427856445],[1.504521846771297,43.24952697753912],[1.468744039535466,43.209564208984375],[1.417138576507682,43.22647476196289],[1.426046729087886,43.255790710449276],[1.345491409301815,43.31549072265631],[1.323968291282767,43.30939865112305],[1.301558256149406,43.287563323974666],[1.294111132621765,43.264926910400504],[1.318422198295593,43.25115203857422],[1.374902963638363,43.238639831543026],[1.370204210281486,43.21067047119152],[1.327822327613944,43.20455932617199],[1.314607858657837,43.189994812011776],[1.276631951332206,43.195549011230526],[1.253253817558289,43.18379211425775],[1.230324387550468,43.187385559082145],[1.223737716674918,43.15207290649414],[1.273872494697628,43.14838790893566],[1.290166020393428,43.12343978881836],[1.260736584663448,43.10799026489258],[1.261853694915771,43.09165191650402],[1.22357106208807,43.08592605590826],[1.210750937461967,43.11509704589855],[1.174984216690063,43.140975952148494],[1.145858645439262,43.13853454589855],[1.124082088470572,43.15690612792968],[1.087976813316402,43.13382339477545],[1.062937736511174,43.13866806030285],[1.038230061531067,43.10030746459972],[1.009500741958732,43.11348342895519],[0.991670012474174,43.09117126464849],[0.985586166381836,43.062465667724666],[0.989041686058101,43.023395538330135],[1.005528807640189,43.00608825683594],[0.979101359844208,42.97443008422863],[0.912638902664298,42.959396362304744],[0.874911367893333,42.957775115966854],[0.877979457378387,42.92782592773432],[0.826681554317588,42.915500640869254],[0.842883288860321,42.88958358764643],[0.858305692672843,42.82571792602538],[0.801482975482997,42.840480804443416],[0.778810977935905,42.83606719970714],[0.708183944225425,42.86132812500005],[0.662559688091278,42.841106414795036],[0.671307981014252,42.80588912963867],[0.659865736961365,42.75216293334966],[0.680190026760101,42.7232780456543],[0.668712019920349,42.68893814086914],[0.525922417640686,42.70210647583008],[0.516216158866882,42.691677093505916],[0.476842820644379,42.69961929321288],[0.481716126203651,42.7120475769043],[0.462124705314693,42.73920440673828],[0.455184578895682,42.770919799804744],[0.46343427896511,42.80238723754894],[0.456171065569038,42.8176002502442],[0.477356582880134,42.87824249267578],[0.5040283203125,42.86878204345709],[0.562340736389274,42.86075592041021],[0.575935125351009,42.870826721191406],[0.600186765193996,42.9280166625976],[0.645958542823735,42.96133422851574],[0.620120525360221,42.97243499755871],[0.627396285533962,42.99973297119135],[0.591825366020203,43.02237319946289],[0.567477464675903,43.02074432373047],[0.542022526264191,43.00101852416992],[0.535120189190024,43.037052154541016],[0.563853740692252,43.07424545288086],[0.504590213298854,43.09535980224615],[0.489289671182689,43.11518096923828],[0.441704839468116,43.13097000122076],[0.459566384553909,43.148948669433594],[0.520654857158661,43.19326019287115],[0.517385303974152,43.21238327026373],[0.551874876022453,43.20914840698247],[0.550957083702087,43.2360076904298],[0.635725378990287,43.299137115478516],[0.606810986995811,43.310886383056754],[0.644252777099723,43.31239318847656],[0.674718856811523,43.32951354980463],[0.715342760086059,43.37888717651373],[0.731535673141479,43.372188568115234],[0.770421624183768,43.416809082031364],[0.80729699134838,43.39972305297857],[0.820541322231406,43.416984558105526],[0.864437758922634,43.41583251953131],[0.917251110076904,43.40633392333996],[0.966509282588959,43.37118148803705],[0.993662059307041,43.36653137207031],[1.001607060432491,43.39102172851568],[1.022787809371948,43.41170501708996],[1.018913507461548,43.43065643310547],[1.041670083999747,43.46081542968756],[1.017532825470084,43.4735946655274],[1.051385164260921,43.48913192749029],[1.059616446495056,43.53932571411138],[1.097081542015189,43.533229827880916],[1.125247001648063,43.55449295043945],[1.156430244445914,43.556827545166016],[1.163915634155273,43.57196426391607],[1.199342727661133,43.56918334960943],[1.200300693511963,43.595874786376896],[1.180900216102714,43.614101409912166],[1.158654093742484,43.60517501831066],[1.146710634231681,43.63558197021495],[1.090188384056091,43.64419174194336],[1.049022436141968,43.6760139465332],[1.065703153610229,43.70022964477538],[1.027387976646423,43.71043395996094],[0.95909887552267,43.77180480957042],[0.953983128070888,43.78737258911127],[1.036771297454777,43.80302810668945],[1.059131979942265,43.79859542846691],[1.083305716514587,43.81633377075206],[1.115083098411674,43.79777526855469],[1.157369494438228,43.81832885742199],[1.183189988136348,43.794071197509766],[1.215753436088505,43.7902717590332],[1.212776422500724,43.76824188232422],[1.274345517158508,43.786327362060604],[1.36003136634838,43.817207336425895],[1.354418754577637,43.836433410644645],[1.314450740814323,43.83312988281256],[1.319412350654659,43.85806655883794],[1.365184187889213,43.88957214355469],[1.418123483657837,43.87187576293945],[1.44774162769329,43.873504638671875],[1.476999878883476,43.90829467773443],[1.496654748916683,43.88858413696295],[1.555617213249207,43.91831588745123]]]},"properties":{"ID_0":79,"ISO":"FR-31","NAME_0":"France","ID_1":16,"NAME_1":"Midi-Pyrénées","ID_2":64,"NAME_2":"Haute-Garonne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Alto Garona"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.089286983013039,43.30106353759777],[-0.079629443585759,43.27164840698242],[-0.089981473982277,43.254005432128906],[-0.118389882147198,43.24137496948248],[-0.140602961182537,43.271675109863395],[-0.117817156016827,43.30734634399414],[-0.089286983013039,43.30106353759777]]],[[[-0.093096010386887,43.373886108398494],[-0.06448258459568,43.35361480712896],[-0.075832143425941,43.306938171386776],[-0.109901435673123,43.31280517578131],[-0.087270952761116,43.33384323120117],[-0.093096010386887,43.373886108398494]]],[[[0.606810986995811,43.310886383056754],[0.635725378990287,43.299137115478516],[0.550957083702087,43.2360076904298],[0.551874876022453,43.20914840698247],[0.517385303974152,43.21238327026373],[0.520654857158661,43.19326019287115],[0.459566384553909,43.148948669433594],[0.441704839468116,43.13097000122076],[0.489289671182689,43.11518096923828],[0.504590213298854,43.09535980224615],[0.563853740692252,43.07424545288086],[0.535120189190024,43.037052154541016],[0.542022526264191,43.00101852416992],[0.567477464675903,43.02074432373047],[0.591825366020203,43.02237319946289],[0.627396285533962,42.99973297119135],[0.620120525360221,42.97243499755871],[0.645958542823735,42.96133422851574],[0.600186765193996,42.9280166625976],[0.575935125351009,42.870826721191406],[0.562340736389274,42.86075592041021],[0.5040283203125,42.86878204345709],[0.477356582880134,42.87824249267578],[0.456171065569038,42.8176002502442],[0.46343427896511,42.80238723754894],[0.455184578895682,42.770919799804744],[0.462124705314693,42.73920440673828],[0.481716126203651,42.7120475769043],[0.476842820644379,42.69961929321288],[0.435333013534546,42.68955612182617],[0.396131992340088,42.69387817382818],[0.392268985509929,42.71189498901373],[0.360368013382015,42.72373199462885],[0.327709823846931,42.70531845092785],[0.326972007751579,42.69092178344732],[0.293188005685863,42.676197052001946],[0.263457000255642,42.693805694580135],[0.259584814310074,42.71584320068365],[0.22373907268053,42.718498229980526],[0.175992712378616,42.73564529418957],[0.156258001923675,42.72354507446294],[0.107144996523857,42.710033416748104],[0.088760025799388,42.71669006347656],[0.049532998353357,42.6957359313966],[0.015264134854078,42.700820922851676],[0.000748000398744,42.68521118164057],[-0.061586000025159,42.694717407226676],[-0.068820819258633,42.716060638427734],[-0.10313352197403,42.72157669067382],[-0.14766700565815,42.77390289306635],[-0.210436567664146,42.796764373779354],[-0.293132483959198,42.8388290405274],[-0.313442856073323,42.84937667846679],[-0.307293713092804,42.86897659301752],[-0.324323385953846,42.90332794189459],[-0.279270291328373,42.942344665527344],[-0.289621949195805,42.96112060546881],[-0.287669211625939,43.00555419921881],[-0.264715641736984,43.01000976562511],[-0.26050540804863,43.038272857666065],[-0.223951518535614,43.03368759155279],[-0.190722703933716,43.05125045776373],[-0.197562798857689,43.099967956543026],[-0.146313965320587,43.12818527221674],[-0.116243176162243,43.17928695678722],[-0.067873999476433,43.17712020874029],[-0.07397249341011,43.22237777709972],[-0.044946491718292,43.233795166015625],[-0.018516158685088,43.26938629150402],[-0.04102635756135,43.28369522094726],[-0.044395878911018,43.30294036865245],[-0.02537138201285,43.32961654663086],[0.012767912820038,43.32753372192383],[0.028665335849041,43.346618652343864],[-0.004652889911085,43.375709533691406],[0.009655310772473,43.42220306396479],[-0.016534095629993,43.44394683837885],[-0.042983438819647,43.41020965576172],[-0.069604225456601,43.43420028686529],[-0.065754115581512,43.46348953247081],[-0.032106522470713,43.46603775024414],[-0.049103256314993,43.4919052124024],[-0.043700430542174,43.52298736572271],[-0.06973043829197,43.54675292968744],[-0.0871227607131,43.542377471923885],[-0.096782974898815,43.582405090332145],[-0.074212595820313,43.606178283691456],[-0.015008710324707,43.60552597045904],[-0.001665770076215,43.56532287597656],[0.030054572969789,43.54456710815423],[0.053621441125927,43.518768310546875],[0.112247779965514,43.51737213134777],[0.127468124032021,43.49899673461914],[0.13074146211153,43.47406387329107],[0.166064128279743,43.442378997802734],[0.134548753500042,43.42248916625971],[0.15695665776741,43.39892959594732],[0.173804938793239,43.40277099609375],[0.182031214237327,43.37118148803705],[0.231704190373421,43.367713928222656],[0.298759490251655,43.38858032226574],[0.325406849384422,43.374774932861435],[0.331350296735764,43.34265518188482],[0.378548383712825,43.35536575317383],[0.395822793245316,43.334243774414176],[0.442971318960247,43.3279266357423],[0.444980084896201,43.34073638916027],[0.493539661169109,43.32548141479498],[0.505965948104915,43.3331871032716],[0.54706913232809,43.32980728149414],[0.606810986995811,43.310886383056754]]]]},"properties":{"ID_0":79,"ISO":"FR-65","NAME_0":"France","ID_1":16,"NAME_1":"Midi-Pyrénées","ID_2":65,"NAME_2":"Hautes-Pyrénées","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Altos Pirineos"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.062914371490479,44.976505279541065],[2.080703020095825,44.951576232910156],[2.076351404190177,44.93478393554687],[2.108110427856559,44.91059875488286],[2.085555553436336,44.8849601745606],[2.13980054855358,44.823825836181584],[2.16628980636608,44.81206893920904],[2.171632766723746,44.79026031494146],[2.15349197387701,44.753108978271484],[2.148087263107413,44.722850799560604],[2.15466570854187,44.69936752319341],[2.17915225028986,44.6744499206544],[2.166010141372681,44.661285400390625],[2.169419050216788,44.63798522949219],[2.207475185394344,44.615531921386776],[2.198402643203735,44.593173980713004],[2.169551610946598,44.59132385253912],[2.15256190299999,44.57158660888672],[2.104022741317806,44.57147216796881],[2.084695816040039,44.5850715637207],[2.054844617843685,44.58019256591797],[2.01884222030651,44.555561065673885],[1.984238862991333,44.54726028442377],[1.957918286323661,44.51904296875006],[1.938833951950016,44.51609802246093],[1.920824050903434,44.49192047119146],[1.84075832366949,44.47948837280285],[1.850807547569275,44.43733215332031],[1.873185753822327,44.424140930175724],[1.868874788284359,44.397212982177734],[1.90823853015911,44.36341857910162],[1.882082700729313,44.34007263183594],[1.826465249061698,44.32358932495117],[1.793702840805167,44.33391952514654],[1.782668471336365,44.31625366210943],[1.740953922271729,44.32629776000982],[1.70232081413269,44.31450653076172],[1.650052189826965,44.283203125],[1.616192936897392,44.27797317504883],[1.616652488708553,44.297668457031364],[1.573824405670166,44.30095672607422],[1.585915565490723,44.250942230224666],[1.573018431663513,44.23535537719738],[1.537462949752808,44.230258941650334],[1.509262919426078,44.273784637451165],[1.473533987998962,44.284214019775504],[1.452111840248165,44.25588226318371],[1.377170920372066,44.22283172607427],[1.341077685356197,44.224098205566406],[1.281317591667175,44.23534393310546],[1.302968740463314,44.26299667358404],[1.304015755653381,44.294189453125114],[1.258367061615104,44.28298950195307],[1.250491499900875,44.2697372436524],[1.184411764144897,44.28679656982433],[1.169065356254691,44.30401992797863],[1.109471559524593,44.324691772460994],[1.096261620521659,44.34902572631847],[1.10341584682476,44.36697006225597],[1.134424090385494,44.37446212768554],[1.132478117942924,44.39387512207031],[1.102329611778316,44.3918914794923],[1.064083814620972,44.37851333618164],[1.057488083839473,44.427677154541016],[1.021679401397648,44.44659805297851],[1.013166308403015,44.53613662719738],[1.075140833854675,44.57732391357421],[1.150893211364803,44.632854461670036],[1.146732687950134,44.67079544067394],[1.180560827255363,44.68268585205084],[1.224550008773917,44.684265136718864],[1.270040988922233,44.72208786010747],[1.287021398544255,44.71446228027343],[1.316050887107849,44.740375518798885],[1.321535348892269,44.7610969543457],[1.29715359210968,44.77696990966808],[1.30116593837738,44.797744750976676],[1.36410295963293,44.81156921386719],[1.365459203720093,44.84497070312506],[1.402507305145377,44.84904861450195],[1.405578136444149,44.863059997558594],[1.436070442199707,44.87298583984375],[1.421835780143851,44.89641189575201],[1.441561818122921,44.91878128051769],[1.414261221885738,44.97391510009771],[1.409130334854183,45.00672912597662],[1.448261499405021,45.01931381225597],[1.460356593132133,45.013969421386776],[1.505799889564628,45.03949737548828],[1.540315151214656,45.04466629028332],[1.651891469955558,45.02528762817383],[1.671410918235836,45.00430679321289],[1.703376650810355,44.986576080322266],[1.708766579628104,44.96963500976557],[1.748795270919857,44.95682907104492],[1.753982305526847,44.94084930419922],[1.784546136856136,44.93051910400402],[1.824450731277466,44.9281005859375],[1.83157217502594,44.94342041015631],[1.887090682983455,44.956336975097656],[1.907779097557125,44.9782447814942],[1.940149903297424,44.97183990478521],[1.984336376190299,44.97372055053722],[2.045120716094971,44.98366546630865],[2.062914371490479,44.976505279541065]]]},"properties":{"ID_0":79,"ISO":"FR-46","NAME_0":"France","ID_1":16,"NAME_1":"Midi-Pyrénées","ID_2":66,"NAME_2":"Lot","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.882082700729313,44.34007263183594],[1.860482931137198,44.321937561035156],[1.901390552520865,44.279117584228516],[1.940270781517029,44.28255081176758],[1.970633387565613,44.27634811401373],[1.962021231651306,44.24234008789074],[1.932162523269596,44.24264526367193],[1.908349752426261,44.21245574951172],[1.912990093231201,44.18841171264654],[1.973979711532649,44.18139266967785],[1.990170717239494,44.14945220947277],[1.941393733024597,44.14785766601568],[1.919064283371029,44.16307830810547],[1.806013822555599,44.12644958496094],[1.777958393096924,44.09676742553711],[1.746524572372437,44.11468505859381],[1.671048045158443,44.116127014160156],[1.666837692260856,44.064929962158196],[1.693526268005428,44.060111999511776],[1.704208016395625,44.0443572998048],[1.689730763435421,44.02325820922863],[1.651180624961853,44.011276245117244],[1.618637323379573,43.97283172607433],[1.622719168663025,43.96070480346691],[1.55229127407074,43.96303558349615],[1.538735985755977,43.94734573364269],[1.577520132064933,43.93881225585943],[1.555617213249207,43.91831588745123],[1.496654748916683,43.88858413696295],[1.476999878883476,43.90829467773443],[1.44774162769329,43.873504638671875],[1.418123483657837,43.87187576293945],[1.365184187889213,43.88957214355469],[1.319412350654659,43.85806655883794],[1.314450740814323,43.83312988281256],[1.354418754577637,43.836433410644645],[1.36003136634838,43.817207336425895],[1.274345517158508,43.786327362060604],[1.212776422500724,43.76824188232422],[1.215753436088505,43.7902717590332],[1.183189988136348,43.794071197509766],[1.157369494438228,43.81832885742199],[1.115083098411674,43.79777526855469],[1.083305716514587,43.81633377075206],[1.059131979942265,43.79859542846691],[1.036771297454777,43.80302810668945],[0.953983128070888,43.78737258911127],[0.897291123867092,43.7885360717774],[0.925163149833793,43.832027435302734],[0.895239293575287,43.83989715576183],[0.904105901718253,43.86095428466797],[0.886032879352683,43.87224578857427],[0.889230489730949,43.90424728393566],[0.864677667617855,43.9231796264649],[0.840336859226284,43.91600418090826],[0.809297919273433,43.93230056762707],[0.770003974437714,43.922142028808594],[0.760114133358115,43.945304870605526],[0.826871812343597,43.99749374389654],[0.81455105543148,44.02281570434576],[0.849297761917228,44.0344734191895],[0.822057127952689,44.05559539794933],[0.764047920703945,44.02964019775402],[0.741884768009129,44.06520080566406],[0.754382967949027,44.104804992675895],[0.793164968490657,44.11845779418957],[0.796567738056183,44.14515304565441],[0.869091689586639,44.12651443481445],[0.888351321220512,44.14881134033209],[0.882225215434971,44.1739501953125],[0.903111338615474,44.19005584716808],[0.929239213466701,44.2302513122558],[0.919089794159049,44.238269805908146],[0.950788080692405,44.275070190429744],[0.869445145130214,44.30925369262695],[0.896113157272396,44.34622955322271],[0.887319982051906,44.364646911621094],[0.919845402240753,44.38441848754883],[0.950215697288627,44.35957717895502],[1.060229063034058,44.36606597900396],[1.064083814620972,44.37851333618164],[1.102329611778316,44.3918914794923],[1.132478117942924,44.39387512207031],[1.134424090385494,44.37446212768554],[1.10341584682476,44.36697006225597],[1.096261620521659,44.34902572631847],[1.109471559524593,44.324691772460994],[1.169065356254691,44.30401992797863],[1.184411764144897,44.28679656982433],[1.250491499900875,44.2697372436524],[1.258367061615104,44.28298950195307],[1.304015755653381,44.294189453125114],[1.302968740463314,44.26299667358404],[1.281317591667175,44.23534393310546],[1.341077685356197,44.224098205566406],[1.377170920372066,44.22283172607427],[1.452111840248165,44.25588226318371],[1.473533987998962,44.284214019775504],[1.509262919426078,44.273784637451165],[1.537462949752808,44.230258941650334],[1.573018431663513,44.23535537719738],[1.585915565490723,44.250942230224666],[1.573824405670166,44.30095672607422],[1.616652488708553,44.297668457031364],[1.616192936897392,44.27797317504883],[1.650052189826965,44.283203125],[1.70232081413269,44.31450653076172],[1.740953922271729,44.32629776000982],[1.782668471336365,44.31625366210943],[1.793702840805167,44.33391952514654],[1.826465249061698,44.32358932495117],[1.882082700729313,44.34007263183594]]]},"properties":{"ID_0":79,"ISO":"FR-82","NAME_0":"France","ID_1":16,"NAME_1":"Midi-Pyrénées","ID_2":67,"NAME_2":"Tarn-et-Garonne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.93546295166027,43.694667816162045],[2.919908761978263,43.68773651123047],[2.918087005615234,43.66099548339855],[2.8730788230896,43.646492004394645],[2.814752578735465,43.63930892944347],[2.795155286789054,43.62465286254894],[2.754523515701237,43.61413955688487],[2.722670078277702,43.64263916015636],[2.653636455535889,43.650016784668026],[2.616909265518302,43.601448059082145],[2.630437612533569,43.58291625976568],[2.616642713546867,43.56537628173834],[2.658852338791007,43.51692199707037],[2.655180931091365,43.494186401367244],[2.664626359939689,43.46388626098627],[2.606371402740535,43.43199539184582],[2.565787315368766,43.42295837402355],[2.518988370895499,43.423717498779354],[2.494383096694946,43.43693542480469],[2.427590131759644,43.434490203857536],[2.398735046386832,43.41704940795904],[2.367331504821777,43.423179626464844],[2.304118156433162,43.44792938232433],[2.282011032104492,43.441226959228516],[2.256686687469482,43.45364379882824],[2.22249889373785,43.428283691406364],[2.229334115982056,43.40826797485357],[2.215023756027222,43.382614135742244],[2.186801910400391,43.39481353759771],[2.170411348342896,43.415813446044865],[2.108784675598088,43.394458770751896],[2.072800636291618,43.39569473266607],[2.053070545196476,43.43030929565424],[2.029132843017635,43.436897277831974],[2.019332170486507,43.47006225585948],[2.048289775848446,43.48573303222656],[2.048094272613525,43.49829483032232],[1.987313747406006,43.479011535644645],[1.887719273567313,43.51694107055664],[1.850710630416927,43.549190521240234],[1.839145183563176,43.57787322998047],[1.806152582168693,43.57936859130854],[1.687770843505973,43.6307106018067],[1.702793240547294,43.65068817138683],[1.728840708732662,43.6575660705567],[1.720704436302299,43.68834686279297],[1.663572669029349,43.69405746459972],[1.706445574760494,43.716220855712834],[1.659742832183838,43.74218750000005],[1.655761480331535,43.76688766479498],[1.625502228736991,43.80180740356457],[1.588588714599723,43.81717681884777],[1.593170404434204,43.843139648437614],[1.555085539817867,43.86849212646496],[1.547523379325924,43.899723052978516],[1.555617213249207,43.91831588745123],[1.577520132064933,43.93881225585943],[1.538735985755977,43.94734573364269],[1.55229127407074,43.96303558349615],[1.622719168663025,43.96070480346691],[1.618637323379573,43.97283172607433],[1.651180624961853,44.011276245117244],[1.689730763435421,44.02325820922863],[1.704208016395625,44.0443572998048],[1.693526268005428,44.060111999511776],[1.666837692260856,44.064929962158196],[1.671048045158443,44.116127014160156],[1.746524572372437,44.11468505859381],[1.777958393096924,44.09676742553711],[1.806013822555599,44.12644958496094],[1.919064283371029,44.16307830810547],[1.941393733024597,44.14785766601568],[1.990170717239494,44.14945220947277],[2.030249834060783,44.157573699951286],[2.114063739776611,44.195800781250114],[2.149213075637931,44.20054244995117],[2.15814995765686,44.17923355102545],[2.180790424346924,44.17827987670904],[2.237613677978572,44.15862655639654],[2.237414836883545,44.13430404663097],[2.284880399703979,44.14533615112316],[2.307294845581112,44.118537902832145],[2.332443237304687,44.123023986816406],[2.357738494873104,44.10155487060558],[2.389214754104671,44.09457015991216],[2.410210132598934,44.055858612060604],[2.460870742797852,44.050323486328125],[2.484887838363704,44.02468872070324],[2.501797914505005,43.98663330078125],[2.523254871368408,43.98014831542969],[2.508499145507812,43.94527435302739],[2.553841829299984,43.921085357666016],[2.552006721496696,43.89157104492199],[2.576271295547485,43.881759643554744],[2.561801910400391,43.84597396850585],[2.609146595001278,43.806808471679744],[2.629212617874259,43.780254364013786],[2.681730508804378,43.743515014648494],[2.713823318481502,43.74196624755865],[2.740542888641471,43.72895812988281],[2.781498908996525,43.736957550048935],[2.814518213272208,43.76158523559582],[2.87045335769659,43.73916244506836],[2.902605056762695,43.742271423339844],[2.919138908386344,43.732467651367244],[2.93546295166027,43.694667816162045]]]},"properties":{"ID_0":79,"ISO":"FR-81","NAME_0":"France","ID_1":16,"NAME_1":"Midi-Pyrénées","ID_2":68,"NAME_2":"Tarn","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[3.095886230468864,50.163131713867294],[3.03703618049633,50.13058090209972],[3.000530719757194,50.12010955810546],[3.003745555877742,50.15015792846679],[3.039526939392146,50.15362548828119],[3.062725782394523,50.17377471923834],[3.095886230468864,50.163131713867294]]],[[[4.140979290008545,49.978805541992244],[4.084444046020565,49.970657348632926],[4.055109500885009,49.98535919189464],[4.0311217308045,49.98206710815429],[3.980143785476685,50.00356292724609],[3.995236396789608,50.028446197509766],[3.982312440872249,50.04443359375005],[3.949834346771353,50.02688598632818],[3.922870874405021,50.02625656127941],[3.887292385101375,50.00969314575207],[3.882319211959782,50.03236770629894],[3.837058544158936,50.04780960083019],[3.745751619339046,50.053573608398494],[3.715184688568172,50.06927490234386],[3.66396427154541,50.0537109375],[3.614123582839966,50.02505874633794],[3.594225406646843,50.04391860961913],[3.541758060455436,50.05197525024419],[3.490106105804443,50.01895904541009],[3.427791595459041,50.022087097168026],[3.398473978042602,50.03458023071294],[3.353106498718262,50.03571701049805],[3.337102174758968,50.017402648925895],[3.280355453491211,50.01520919799816],[3.270715713500977,50.029468536377],[3.229350328445378,50.03018951416026],[3.172707319259757,50.01199340820318],[3.123577833175773,50.024486541748104],[3.090253591537589,50.05374145507812],[3.087668657302913,50.075565338134766],[3.114054679870719,50.09238433837901],[3.095967054367009,50.12451553344738],[3.135333061218262,50.14074325561518],[3.137514114379996,50.166946411132926],[3.156377315521354,50.181568145751896],[3.131195068359318,50.19949340820318],[3.142792224884033,50.219238281249936],[3.17888522148138,50.219074249267635],[3.186850786209163,50.23492813110363],[3.147167205810546,50.24622344970709],[3.149091243743953,50.26248168945324],[3.046235799789486,50.276168823242244],[3.036142110824699,50.287548065185604],[3.084305763244629,50.31119155883795],[3.013458490371761,50.35941314697277],[2.990422010421809,50.39494705200207],[3.068519353866691,50.42564773559581],[3.008267641067562,50.455856323242244],[3.024815797805843,50.48131942749029],[2.964709758758545,50.51277923583979],[2.910143375396729,50.499835968017635],[2.882077217102051,50.507755279541016],[2.886964559555111,50.53765869140631],[2.824770689010677,50.525611877441406],[2.808234691619873,50.57885360717785],[2.808434963226318,50.60771942138683],[2.841275215148983,50.627590179443416],[2.869737863540763,50.63109588623047],[2.835401535034237,50.659053802490284],[2.809187889099235,50.669372558593686],[2.769690513610954,50.66362380981451],[2.747182369232235,50.60524749755871],[2.718602180480957,50.629364013671875],[2.630516052246037,50.61795043945318],[2.613140106201229,50.634033203125114],[2.546332120895386,50.62701416015636],[2.534782409667969,50.641662597656364],[2.491412639618034,50.63193511962902],[2.43018746376049,50.65679931640625],[2.386166572570801,50.698577880859375],[2.355647802353019,50.71612930297857],[2.342194795608464,50.74069976806635],[2.411477565765495,50.76673507690424],[2.319057941436711,50.78244018554699],[2.288578271865902,50.77703857421881],[2.213430404663143,50.810546875],[2.203616380691528,50.849712371826115],[2.121341466903687,50.97895050048828],[2.075006246566829,51.00763702392584],[2.166945934295654,51.01930618286133],[2.203609943390006,51.033195495605526],[2.328054904937858,51.05263900756847],[2.365833997726384,51.04291534423833],[2.546031475067139,51.08939743041998],[2.559218406677246,51.07005310058605],[2.578288316726741,51.00001907348633],[2.606478214263916,50.98890686035156],[2.630090236663818,50.94580841064453],[2.590013027191105,50.919097900390625],[2.606653213501033,50.91270065307617],[2.599248647689876,50.85335159301757],[2.624824285507259,50.836063385009815],[2.634982824325562,50.8127555847168],[2.670175313949528,50.82103729248047],[2.7198264598847,50.81205368041998],[2.725020170211906,50.79572677612299],[2.813275337219295,50.71694946289068],[2.848567724227848,50.72175979614258],[2.870172977447623,50.70291519165044],[2.909936189651546,50.69436264038091],[2.930072069168205,50.711738586425774],[2.937651157379093,50.74257278442382],[3.058744907379264,50.780708312988395],[3.080667972564697,50.77286148071289],[3.147109031677303,50.78990554809576],[3.199032545089722,50.73401260375982],[3.210946798324585,50.71276473999018],[3.248501777648982,50.709506988525504],[3.261831045150814,50.67596435546881],[3.243893384933529,50.669754028320256],[3.244402408599967,50.64086914062506],[3.278310537338371,50.59420013427745],[3.275957345962581,50.558536529541065],[3.286531448364258,50.5275764465332],[3.377262353897094,50.49098968505871],[3.43563008308405,50.50912475585949],[3.474889516830501,50.53318023681634],[3.517192840576172,50.51802062988286],[3.521455526351929,50.49460220336914],[3.568602323532218,50.500114440918026],[3.607936859130802,50.49653244018555],[3.668833494186515,50.436450958251946],[3.672951936721744,50.38906478881847],[3.657830238342228,50.37057876586908],[3.67367601394659,50.33493041992193],[3.710424423217773,50.303184509277344],[3.731720447540397,50.31190109252929],[3.742773294448909,50.348075866699276],[3.84014987945568,50.35386276245117],[3.886059761047363,50.327060699463004],[3.961807012557983,50.34807968139643],[3.986870288848934,50.34245681762701],[4.02521991729742,50.35789489746088],[4.077095508575553,50.320522308349666],[4.118358612060547,50.302268981933594],[4.124011516571045,50.27276229858398],[4.163658142089844,50.25728988647455],[4.17957592010498,50.27677154541021],[4.205972194671631,50.27251052856457],[4.220833778381461,50.25430297851574],[4.16592454910284,50.21508407592784],[4.15004491806036,50.17659378051769],[4.153213977813834,50.160373687744254],[4.126905918121338,50.134902954101676],[4.19524717330944,50.13459777832031],[4.205374717712516,50.097988128662216],[4.227538585662898,50.079677581787216],[4.224308967590389,50.06438827514654],[4.19062185287487,50.04942321777355],[4.160781383514461,50.04752349853527],[4.137324333190975,50.02178192138683],[4.156285285949821,49.98721313476568],[4.140979290008545,49.978805541992244]]]]},"properties":{"ID_0":79,"ISO":"FR-59","NAME_0":"France","ID_1":17,"NAME_1":"Nord-Pas-de-Calais","ID_2":69,"NAME_2":"Nord","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.090253591537589,50.05374145507812],[3.074492216110229,50.045299530029354],[3.011969804763907,50.05804061889654],[2.971535921096859,50.041366577148494],[2.948889255523795,50.0533218383789],[2.916974067687988,50.035530090332145],[2.876192808151188,50.044254302978516],[2.855413675308228,50.07799148559564],[2.80719780921936,50.062458038330135],[2.794509887695426,50.05005264282232],[2.752195358276367,50.0403213500976],[2.760424852371273,50.069633483886776],[2.781835794448852,50.09111404418956],[2.780897855758781,50.11115646362315],[2.729929685592651,50.12586212158209],[2.691648960113525,50.09206771850597],[2.647546529769897,50.09440994262695],[2.630727767944393,50.10727691650385],[2.57567143440258,50.11333084106445],[2.568370103836116,50.13596343994146],[2.532332181930599,50.115077972412166],[2.514949321746826,50.1408195495606],[2.455049514770621,50.13117599487316],[2.429657936096305,50.08818435668951],[2.394888162612972,50.11019134521484],[2.375459671020565,50.10926055908209],[2.389776945114136,50.1554832458496],[2.414845943450928,50.17311096191406],[2.495690345764103,50.19456100463867],[2.452066183090267,50.2302131652832],[2.38231992721569,50.22606658935558],[2.361731052398738,50.20707702636719],[2.331300735473576,50.22172546386719],[2.301693201065063,50.21295547485357],[2.269351243972892,50.22764968872075],[2.173296689987296,50.20788574218756],[2.096638441085872,50.206630706787166],[2.068487167358455,50.227092742920036],[2.048668146133423,50.256771087646484],[1.945648431777954,50.287746429443466],[1.93445813655859,50.29935073852545],[1.96393442153942,50.31805419921874],[1.946194767952079,50.33148956298834],[1.919496178627128,50.312664031982415],[1.875354409217834,50.32272720336914],[1.869130969047546,50.33446884155279],[1.804678559303284,50.35960388183605],[1.761848688125667,50.361606597900504],[1.677249193191585,50.33382034301758],[1.646498680114746,50.340076446533196],[1.615832805633545,50.36854934692383],[1.582499980926571,50.37763977050787],[1.555277943611202,50.40152740478526],[1.568055033683777,50.43097305297857],[1.578611969947815,50.52541732788097],[1.605278015136832,50.546527862548885],[1.575832962989921,50.572639465332145],[1.576390027999821,50.64069366455084],[1.559721946716309,50.70013809204113],[1.606389999389762,50.76708221435547],[1.605834007263297,50.79097366333007],[1.578055977821293,50.854026794433594],[1.584722042083854,50.87236022949219],[1.639165997505188,50.877082824706974],[1.709167003631592,50.9281959533692],[1.770833969116211,50.952640533447315],[1.893610954284668,50.98014068603515],[1.954722046852169,51.00152587890631],[2.016387939453125,50.99958419799816],[2.075006246566829,51.00763702392584],[2.121341466903687,50.97895050048828],[2.203616380691528,50.849712371826115],[2.213430404663143,50.810546875],[2.288578271865902,50.77703857421881],[2.319057941436711,50.78244018554699],[2.411477565765495,50.76673507690424],[2.342194795608464,50.74069976806635],[2.355647802353019,50.71612930297857],[2.386166572570801,50.698577880859375],[2.43018746376049,50.65679931640625],[2.491412639618034,50.63193511962902],[2.534782409667969,50.641662597656364],[2.546332120895386,50.62701416015636],[2.613140106201229,50.634033203125114],[2.630516052246037,50.61795043945318],[2.718602180480957,50.629364013671875],[2.747182369232235,50.60524749755871],[2.769690513610954,50.66362380981451],[2.809187889099235,50.669372558593686],[2.835401535034237,50.659053802490284],[2.869737863540763,50.63109588623047],[2.841275215148983,50.627590179443416],[2.808434963226318,50.60771942138683],[2.808234691619873,50.57885360717785],[2.824770689010677,50.525611877441406],[2.886964559555111,50.53765869140631],[2.882077217102051,50.507755279541016],[2.910143375396729,50.499835968017635],[2.964709758758545,50.51277923583979],[3.024815797805843,50.48131942749029],[3.008267641067562,50.455856323242244],[3.068519353866691,50.42564773559581],[2.990422010421809,50.39494705200207],[3.013458490371761,50.35941314697277],[3.084305763244629,50.31119155883795],[3.036142110824699,50.287548065185604],[3.046235799789486,50.276168823242244],[3.149091243743953,50.26248168945324],[3.147167205810546,50.24622344970709],[3.186850786209163,50.23492813110363],[3.17888522148138,50.219074249267635],[3.142792224884033,50.219238281249936],[3.131195068359318,50.19949340820318],[3.156377315521354,50.181568145751896],[3.137514114379996,50.166946411132926],[3.135333061218262,50.14074325561518],[3.095967054367009,50.12451553344738],[3.114054679870719,50.09238433837901],[3.087668657302913,50.075565338134766],[3.090253591537589,50.05374145507812]],[[3.095886230468864,50.163131713867294],[3.062725782394523,50.17377471923834],[3.039526939392146,50.15362548828119],[3.003745555877742,50.15015792846679],[3.000530719757194,50.12010955810546],[3.03703618049633,50.13058090209972],[3.095886230468864,50.163131713867294]]]},"properties":{"ID_0":79,"ISO":"FR-62","NAME_0":"France","ID_1":17,"NAME_1":"Nord-Pas-de-Calais","ID_2":70,"NAME_2":"Pas-de-Calais","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.245882391929626,47.77671813964844],[-1.236525297164917,47.75577545166021],[-1.254460453987122,47.732681274414055],[-1.195449709892273,47.71202850341791],[-1.180204153060913,47.69679260253906],[-1.181369423866272,47.66860961914068],[-1.162947773933297,47.66048812866211],[-1.157394409179631,47.63599014282238],[-1.137894034385681,47.61892700195324],[-1.10312914848322,47.620513916015625],[-1.075125932693425,47.60610198974615],[-1.025254607200623,47.599018096923764],[-1.00816535949707,47.587757110595646],[-1.04216110706318,47.56326675415044],[-1.172934055328369,47.57281875610357],[-1.178346157073975,47.54802322387701],[-1.15423405170435,47.50932312011719],[-1.106345415115356,47.50090026855468],[-1.0444575548172,47.50550079345703],[-1.011518120765686,47.48984909057623],[-0.965479850768986,47.491794586181754],[-0.967867195606175,47.46805572509777],[-0.948346734046936,47.42274475097656],[-0.923455655574798,47.39877319335943],[-0.97623419761652,47.3710289001466],[-1.032117962837219,47.3650016784668],[-1.078530192375126,47.370800018310604],[-1.169933199882507,47.364711761474666],[-1.182960152625981,47.35430908203131],[-1.228372693061829,47.349979400634766],[-1.306547999382019,47.3344841003418],[-1.337292790412846,47.31747055053722],[-1.339312791824341,47.3009757995606],[-1.295173645019531,47.304565429687614],[-1.276402354240361,47.26960372924815],[-1.231266736984196,47.23957824707025],[-1.204918384551888,47.253044128418026],[-1.181105971336308,47.24089431762701],[-1.188465595245361,47.22000122070318],[-1.169554471969604,47.17051315307623],[-1.23098707199091,47.13130187988281],[-1.228114247322083,47.0997695922851],[-1.170548677444401,47.0929527282716],[-1.148527741432133,47.06962203979498],[-1.115538597106934,47.06269836425787],[-1.117890000343323,47.040283203125],[-1.148571133613473,47.029552459716854],[-1.196768760681096,47.03976440429693],[-1.267883658409119,47.08426666259776],[-1.287281870841923,47.0583114624024],[-1.317961215972844,47.034301757812614],[-1.336458444595337,47.04406738281244],[-1.375943660736084,47.029655456543026],[-1.359058737754822,46.98113632202154],[-1.366159915924072,46.956691741943416],[-1.415447592735234,46.94435119628906],[-1.458267688751221,46.925838470459034],[-1.458497881889286,46.956230163574276],[-1.475257635116577,46.98094558715826],[-1.462753176689034,46.9900360107423],[-1.473130226135254,47.03112411499029],[-1.499844908714294,47.040691375732536],[-1.543657422065735,47.0037727355957],[-1.554271936416569,46.9786529541015],[-1.521631360054016,46.941036224365234],[-1.52982044219965,46.908199310302734],[-1.500791311263981,46.88339233398443],[-1.546307563781681,46.87297439575201],[-1.548511028289795,46.860080718994254],[-1.640486240386906,46.878494262695426],[-1.664177656173706,46.874702453613224],[-1.690871477127075,46.89009475708008],[-1.720345139503479,46.884696960449276],[-1.736008882522583,46.89605712890619],[-1.750432610511723,46.930370330810604],[-1.7798796892165,46.92522048950201],[-1.832106113433838,46.932086944580135],[-1.831169366836548,46.95326995849621],[-1.871775269508305,46.95317459106456],[-1.913175225257874,46.97221755981456],[-1.916717767715454,46.99215698242199],[-1.949818849563599,47.00087738037115],[-1.982360005378723,47.02774810791021],[-2.001527070999146,47.058193206787166],[-2.052639007568359,47.093193054199276],[-2.09708309173584,47.10625076293951],[-2.158195018768311,47.113471984863395],[-2.17736101150507,47.12125015258789],[-2.244306087493896,47.13013839721691],[-2.223472118377686,47.154026031494084],[-2.167083978652897,47.16652679443354],[-2.159305095672551,47.20986175537109],[-2.178194999694767,47.22930526733404],[-2.171250104904175,47.266250610351676],[-2.133749008178711,47.275138854980526],[-2.062916040420532,47.28208160400402],[-2.040971994399968,47.30236053466797],[-2.119584083557072,47.30458450317383],[-2.162362098693848,47.292640686035156],[-2.292083024978638,47.234306335449276],[-2.335416078567505,47.25152969360351],[-2.35486197471613,47.271804809570256],[-2.380140066146851,47.27986145019531],[-2.419581890106144,47.27652740478527],[-2.432084083557072,47.257362365722656],[-2.499304056167546,47.280693054199276],[-2.431248903274536,47.29291534423834],[-2.468194007873535,47.325138092041016],[-2.505973100662231,47.312637329101555],[-2.504304885864201,47.3359718322755],[-2.531250953674316,47.36513900756847],[-2.552916049957275,47.37014007568365],[-2.445972919464111,47.438472747802734],[-2.457982301711979,47.447639465332145],[-2.423027276992798,47.47712326049815],[-2.410409450531006,47.45883178710943],[-2.316133260726929,47.46251678466808],[-2.298099279403687,47.515476226806584],[-2.259483098983708,47.51185226440423],[-2.244283676147461,47.493610382080135],[-2.216831922531128,47.50705718994146],[-2.189703941345158,47.49587631225585],[-2.155189990997314,47.497817993164176],[-2.153398513793945,47.52202606201183],[-2.098851680755615,47.533451080322266],[-2.10252404212946,47.595302581787166],[-2.086480855941772,47.60325622558605],[-2.097035646438542,47.631359100341854],[-2.082051515579167,47.649421691894645],[-2.047413110732975,47.663787841796875],[-2.01228404045105,47.666454315185604],[-1.973400950431824,47.69415283203125],[-1.956328749656621,47.6711883544923],[-1.935304403304997,47.68680572509776],[-1.884930491447392,47.696010589599666],[-1.862789273262024,47.70733261108409],[-1.771608114242554,47.698677062988224],[-1.729713439941293,47.69934082031256],[-1.638130903243905,47.722209930420036],[-1.627131342887822,47.75982666015631],[-1.594141364097595,47.77603149414068],[-1.530422329902535,47.78477859497082],[-1.504019498825073,47.80105972290039],[-1.468448042869511,47.80590438842785],[-1.481872677802983,47.831802368164006],[-1.391528964042664,47.82831954956055],[-1.364081025123596,47.80070114135748],[-1.245882391929626,47.77671813964844]]]},"properties":{"ID_0":79,"ISO":"FR-44","NAME_0":"France","ID_1":18,"NAME_1":"Pays de la Loire","ID_2":71,"NAME_2":"Loire-Atlantique","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Loire-Inferieure"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.381703853607121,47.76057052612299],[-0.373778074979782,47.73987197875982],[-0.333662599325123,47.72094345092773],[-0.287626624107361,47.71913146972656],[-0.236765995621681,47.70463180542003],[-0.202373191714287,47.725242614746094],[-0.184351623058319,47.70539474487315],[-0.215837866067886,47.6829223632813],[-0.196696996688786,47.650035858154354],[-0.114099979400635,47.63547515869146],[-0.105482287704945,47.65708160400402],[-0.052378285676241,47.648681640625114],[-0.004507638514042,47.64768981933605],[0.012965098954851,47.62868881225591],[0.052261415869282,47.606224060058594],[0.115650631487483,47.605628967285156],[0.148488059639931,47.581295013427734],[0.183975532651004,47.59901046752924],[0.18583424389368,47.61654663085943],[0.230001732707024,47.608398437500114],[0.234568119049129,47.57861328125006],[0.214089363813343,47.568786621093686],[0.20008730888361,47.543167114257926],[0.224843129515648,47.52727890014659],[0.220109254121724,47.50195312500005],[0.180874109268188,47.453224182128906],[0.180943384766579,47.416603088378906],[0.153864458203259,47.39872741699224],[0.182142674923,47.38194274902349],[0.153859853744621,47.363094329833984],[0.147298365831432,47.34537506103526],[0.117462240159625,47.33234405517584],[0.082382224500179,47.28687286376947],[0.072875916957969,47.21449279785162],[0.053739786148071,47.16461181640619],[0.019014857709408,47.175758361816456],[-0.011722300201654,47.15624237060546],[-0.033735625445843,47.127563476562614],[-0.044239372014886,47.09315109252941],[-0.085541151463985,47.10043334960943],[-0.102121472358647,47.0648078918457],[-0.128896117210388,47.054237365722656],[-0.166736051440182,47.08099365234381],[-0.140891328454018,47.096763610839844],[-0.18524041771883,47.10841751098644],[-0.206268787384033,47.093193054199276],[-0.240407645702362,47.105144500732536],[-0.283180445432606,47.102340698242244],[-0.340140908956528,47.087272644043026],[-0.354752242565155,47.09500503540044],[-0.396030902862549,47.090240478515625],[-0.400779515504837,47.07077026367182],[-0.483751922845784,47.06659317016607],[-0.491782009601593,47.08285140991222],[-0.559717416763249,47.061698913574276],[-0.561547577381134,47.02950668334961],[-0.595491945743561,46.99790954589838],[-0.62017697095871,46.99336242675781],[-0.671041071414834,47.00098419189453],[-0.714539766311646,46.98598098754894],[-0.733897387981415,46.99715423583979],[-0.761534631252232,46.99314498901373],[-0.787577092647439,47.005138397216854],[-0.808483839035034,46.99180984497075],[-0.847720384597778,46.98615646362316],[-0.85891538858408,46.97046661376953],[-0.891960620880127,46.97582626342785],[-0.901293694972992,46.99143981933594],[-0.93487769365305,47.00756072998052],[-0.959132194519043,46.99812316894531],[-1.002263784408569,47.02128982543945],[-1.016110062599125,47.00364303588873],[-1.110118746757507,47.016010284423885],[-1.148571133613473,47.029552459716854],[-1.117890000343323,47.040283203125],[-1.115538597106934,47.06269836425787],[-1.148527741432133,47.06962203979498],[-1.170548677444401,47.0929527282716],[-1.228114247322083,47.0997695922851],[-1.23098707199091,47.13130187988281],[-1.169554471969604,47.17051315307623],[-1.188465595245361,47.22000122070318],[-1.181105971336308,47.24089431762701],[-1.204918384551888,47.253044128418026],[-1.231266736984196,47.23957824707025],[-1.276402354240361,47.26960372924815],[-1.295173645019531,47.304565429687614],[-1.339312791824341,47.3009757995606],[-1.337292790412846,47.31747055053722],[-1.306547999382019,47.3344841003418],[-1.228372693061829,47.349979400634766],[-1.182960152625981,47.35430908203131],[-1.169933199882507,47.364711761474666],[-1.078530192375126,47.370800018310604],[-1.032117962837219,47.3650016784668],[-0.97623419761652,47.3710289001466],[-0.923455655574798,47.39877319335943],[-0.948346734046936,47.42274475097656],[-0.967867195606175,47.46805572509777],[-0.965479850768986,47.491794586181754],[-1.011518120765686,47.48984909057623],[-1.0444575548172,47.50550079345703],[-1.106345415115356,47.50090026855468],[-1.15423405170435,47.50932312011719],[-1.178346157073975,47.54802322387701],[-1.172934055328369,47.57281875610357],[-1.04216110706318,47.56326675415044],[-1.00816535949707,47.587757110595646],[-1.025254607200623,47.599018096923764],[-1.075125932693425,47.60610198974615],[-1.10312914848322,47.620513916015625],[-1.137894034385681,47.61892700195324],[-1.157394409179631,47.63599014282238],[-1.162947773933297,47.66048812866211],[-1.181369423866272,47.66860961914068],[-1.180204153060913,47.69679260253906],[-1.195449709892273,47.71202850341791],[-1.254460453987122,47.732681274414055],[-1.236525297164917,47.75577545166021],[-1.245882391929626,47.77671813964844],[-1.238251686096191,47.80998992919927],[-1.193038702011108,47.78621292114263],[-1.139720320701542,47.785018920898544],[-1.075037360191288,47.77419281005871],[-1.020897626876774,47.77479553222656],[-0.978456556797027,47.76199722290044],[-0.959760844707489,47.79632568359369],[-0.89583516120905,47.77461624145513],[-0.893169939517975,47.76450729370123],[-0.839294791221619,47.752281188964844],[-0.816067636013031,47.771224975585994],[-0.759625494480019,47.75293350219721],[-0.749701738357544,47.741607666015625],[-0.610818266868591,47.735687255859375],[-0.584648072719517,47.75840377807622],[-0.53292220830906,47.75069046020507],[-0.50713407993311,47.78506851196295],[-0.453929156064987,47.75723648071295],[-0.429174870252609,47.76721572875988],[-0.381703853607121,47.76057052612299]]]},"properties":{"ID_0":79,"ISO":"FR-49","NAME_0":"France","ID_1":18,"NAME_1":"Pays de la Loire","ID_2":72,"NAME_2":"Maine-et-Loire","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.054531205445528,48.382003784179744],[-0.078790724277439,48.37020111083996],[-0.112164452671891,48.37424468994152],[-0.136316701769829,48.362724304199276],[-0.132776573300362,48.34571075439453],[-0.15799847245205,48.33452224731445],[-0.138609185814801,48.294952392578125],[-0.164580494165421,48.259159088134766],[-0.145406126976013,48.221904754638786],[-0.14683707058424,48.205009460449276],[-0.18590818345541,48.1834373474121],[-0.231430649757272,48.168594360351676],[-0.241138681769314,48.12695312500006],[-0.218366071581784,48.10644149780279],[-0.230942443013191,48.058986663818416],[-0.274232596158981,48.0644645690918],[-0.334475040435791,48.03237533569336],[-0.33815407752985,48.012138366699276],[-0.308992683887368,48.00560379028332],[-0.297832310199738,47.943416595459034],[-0.338703483343067,47.93249893188482],[-0.384840279817524,47.9308433532716],[-0.406500011682397,47.91039276123041],[-0.376838505267983,47.88726806640636],[-0.37496638298029,47.85761642456065],[-0.41203036904335,47.85763168334972],[-0.44791400432581,47.83203506469738],[-0.434080183506012,47.80905532836913],[-0.388200581073704,47.805316925048885],[-0.381703853607121,47.76057052612299],[-0.429174870252609,47.76721572875988],[-0.453929156064987,47.75723648071295],[-0.50713407993311,47.78506851196295],[-0.53292220830906,47.75069046020507],[-0.584648072719517,47.75840377807622],[-0.610818266868591,47.735687255859375],[-0.749701738357544,47.741607666015625],[-0.759625494480019,47.75293350219721],[-0.816067636013031,47.771224975585994],[-0.839294791221619,47.752281188964844],[-0.893169939517975,47.76450729370123],[-0.89583516120905,47.77461624145513],[-0.959760844707489,47.79632568359369],[-0.978456556797027,47.76199722290044],[-1.020897626876774,47.77479553222656],[-1.075037360191288,47.77419281005871],[-1.139720320701542,47.785018920898544],[-1.193038702011108,47.78621292114263],[-1.238251686096191,47.80998992919927],[-1.189162731170654,47.867710113525504],[-1.156194806098938,47.96445465087896],[-1.107516050338688,47.988876342773494],[-1.068830132484436,47.98294830322271],[-1.021712303161621,47.99540328979492],[-1.03355431556696,48.032608032226676],[-1.021497130393925,48.068405151367244],[-1.049132823944035,48.089595794677734],[-1.064167499542236,48.1584930419923],[-1.0782293081283,48.179965972900504],[-1.074356555938607,48.20046997070324],[-1.098671793937683,48.25130844116222],[-1.083227038383427,48.29624176025384],[-1.045829653739929,48.329654693603565],[-1.059720516204834,48.35104370117187],[-1.052792549133244,48.380928039550724],[-1.079734683036747,48.41738128662109],[-1.080219030380249,48.44190216064459],[-1.06464946269989,48.466911315918075],[-1.07739245891571,48.49109649658208],[-1.070164561271667,48.50849533081055],[-1.060748457908573,48.515392303466854],[-1.00297474861145,48.48907089233404],[-0.973776161670628,48.494834899902344],[-0.953884124755802,48.51679229736328],[-0.923879265785217,48.51313781738281],[-0.896032691001835,48.49487304687505],[-0.860362887382507,48.501457214355575],[-0.816024899482613,48.47118759155285],[-0.77787405252451,48.465412139892635],[-0.75648307800293,48.436935424804744],[-0.715918183326664,48.45089721679699],[-0.725250840187073,48.473468780517635],[-0.658167600631657,48.474845886230526],[-0.654215216636658,48.444545745849545],[-0.593207120895329,48.47084045410162],[-0.553156673908234,48.47296524047846],[-0.509293854236603,48.508842468261776],[-0.478198140859604,48.501571655273494],[-0.446882694959641,48.51493835449224],[-0.368081152439117,48.49311065673828],[-0.336825251579285,48.50242233276373],[-0.32023906707758,48.522930145263615],[-0.268389731645527,48.52066802978521],[-0.243056803941727,48.53706359863287],[-0.260578185319844,48.549133300781364],[-0.242639139294567,48.568000793457145],[-0.207346305251065,48.562519073486385],[-0.144603967666626,48.527751922607415],[-0.166668266057911,48.5147056579591],[-0.148946359753609,48.45878982543957],[-0.108255140483323,48.44802474975586],[-0.05069895833725,48.45058822631847],[-0.057580254971981,48.42908477783208],[-0.054531205445528,48.382003784179744]]]},"properties":{"ID_0":79,"ISO":"FR-53","NAME_0":"France","ID_1":18,"NAME_1":"Pays de la Loire","ID_2":73,"NAME_2":"Mayenne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.797655463218746,48.19446182250988],[0.840574383735657,48.165531158447266],[0.884465754032135,48.161842346191406],[0.914338350296134,48.13584899902344],[0.850372314453239,48.13307952880865],[0.841217219829502,48.10306167602544],[0.843022644519806,48.0726432800293],[0.803562462329921,48.07159805297863],[0.794879317283744,48.04693222045904],[0.840563178062439,48.019035339355526],[0.820382893085536,47.98803329467779],[0.845574200153408,47.95390319824219],[0.81634867191309,47.93427658081066],[0.810550570487976,47.90824127197277],[0.786997556686458,47.91175079345703],[0.759813487529868,47.89809036254877],[0.77385222911829,47.850646972656364],[0.768412888050079,47.83110809326172],[0.712824046611843,47.7904891967774],[0.651199519634361,47.75511932373058],[0.626330792904014,47.75135803222656],[0.608728349208832,47.72529983520507],[0.580315470695552,47.71237945556652],[0.614431202411652,47.69421386718756],[0.593340694904441,47.671844482421875],[0.49841791391384,47.64476394653332],[0.461177259683552,47.64380645751953],[0.451411038637104,47.62145614624029],[0.422197550535316,47.61956405639659],[0.382787764072475,47.643104553222706],[0.364557266235408,47.62207031250006],[0.402577012777385,47.57851409912104],[0.378483653068656,47.56852722167974],[0.339106649160442,47.57973861694347],[0.322103917598724,47.59523773193371],[0.275411963462943,47.59910202026372],[0.259114831686077,47.61230087280279],[0.230001732707024,47.608398437500114],[0.18583424389368,47.61654663085943],[0.183975532651004,47.59901046752924],[0.148488059639931,47.581295013427734],[0.115650631487483,47.605628967285156],[0.052261415869282,47.606224060058594],[0.012965098954851,47.62868881225591],[-0.004507638514042,47.64768981933605],[-0.052378285676241,47.648681640625114],[-0.105482287704945,47.65708160400402],[-0.114099979400635,47.63547515869146],[-0.196696996688786,47.650035858154354],[-0.215837866067886,47.6829223632813],[-0.184351623058319,47.70539474487315],[-0.202373191714287,47.725242614746094],[-0.236765995621681,47.70463180542003],[-0.287626624107361,47.71913146972656],[-0.333662599325123,47.72094345092773],[-0.373778074979782,47.73987197875982],[-0.381703853607121,47.76057052612299],[-0.388200581073704,47.805316925048885],[-0.434080183506012,47.80905532836913],[-0.44791400432581,47.83203506469738],[-0.41203036904335,47.85763168334972],[-0.37496638298029,47.85761642456065],[-0.376838505267983,47.88726806640636],[-0.406500011682397,47.91039276123041],[-0.384840279817524,47.9308433532716],[-0.338703483343067,47.93249893188482],[-0.297832310199738,47.943416595459034],[-0.308992683887368,48.00560379028332],[-0.33815407752985,48.012138366699276],[-0.334475040435791,48.03237533569336],[-0.274232596158981,48.0644645690918],[-0.230942443013191,48.058986663818416],[-0.218366071581784,48.10644149780279],[-0.241138681769314,48.12695312500006],[-0.231430649757272,48.168594360351676],[-0.18590818345541,48.1834373474121],[-0.14683707058424,48.205009460449276],[-0.145406126976013,48.221904754638786],[-0.164580494165421,48.259159088134766],[-0.138609185814801,48.294952392578125],[-0.15799847245205,48.33452224731445],[-0.132776573300362,48.34571075439453],[-0.136316701769829,48.362724304199276],[-0.112164452671891,48.37424468994152],[-0.078790724277439,48.37020111083996],[-0.054531205445528,48.382003784179744],[0.003370246384236,48.39599609374994],[0.023083170875964,48.38020706176769],[0.067361883819103,48.40605926513683],[0.103347465396098,48.4133186340332],[0.111593373119831,48.43231582641613],[0.153319001197872,48.437942504882926],[0.172326982021332,48.4638290405274],[0.217967852950153,48.4738006591798],[0.297909289598465,48.47981643676769],[0.363204777240867,48.45156097412109],[0.381724506616706,48.42478942871105],[0.372679382562637,48.410133361816406],[0.395362317562103,48.3212890625],[0.429964780807609,48.30867767333984],[0.505824327468986,48.29365921020519],[0.49442341923708,48.28348922729498],[0.546795129776058,48.250164031982536],[0.613135278225002,48.24273681640631],[0.652469277382011,48.26338958740246],[0.687393724918422,48.24078369140625],[0.723637044429893,48.19814300537115],[0.75920873880392,48.18009185791009],[0.797655463218746,48.19446182250988]]]},"properties":{"ID_0":79,"ISO":"FR-72","NAME_0":"France","ID_1":18,"NAME_1":"Pays de la Loire","ID_2":74,"NAME_2":"Sarthe","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.377083063125554,46.73625183105469],[-2.319860935211182,46.71986007690441],[-2.296248912811222,46.70486068725585],[-2.332083940505868,46.685417175293026],[-2.392638921737614,46.70958328247081],[-2.400970935821533,46.72680664062505],[-2.377083063125554,46.73625183105469]]],[[[-2.257638931274414,47.02930450439459],[-2.219305992126351,47.01124954223638],[-2.221528053283635,46.97347259521496],[-2.156527042388859,46.95013809204096],[-2.147638082504272,46.91347122192394],[-2.219305992126351,46.964027404785156],[-2.260694980621338,46.957637786865234],[-2.303194046020451,46.99402618408208],[-2.287360906600895,47.02486038208019],[-2.257638931274414,47.02930450439459]]],[[[-1.09291398525238,46.31485366821289],[-1.094859957695007,46.314266204833984],[-1.097638010978699,46.31447982788085],[-1.104861021041813,46.31558990478521],[-1.107632279396,46.3160133361817],[-1.108194947242623,46.31610107421875],[-1.114458203315678,46.31763839721691],[-1.115417957305908,46.31944656372076],[-1.134027004241943,46.30541610717785],[-1.163470983505249,46.31291580200195],[-1.197124361991825,46.29877853393549],[-1.215695023536625,46.27264022827142],[-1.28263795375824,46.310695648193416],[-1.295694947242737,46.2904167175293],[-1.328192949295044,46.328193664550895],[-1.36735999584198,46.345695495605526],[-1.402361035346928,46.34069442749035],[-1.469027996063175,46.34291839599621],[-1.503751039504948,46.398471832275504],[-1.625417947769165,46.41236114501947],[-1.648748993873596,46.43458175659174],[-1.689306020736694,46.441806793213004],[-1.756526947021484,46.474304199218864],[-1.771528005599975,46.489582061767635],[-1.816249966621399,46.49902725219738],[-1.828194975852966,46.544029235839844],[-1.854303956031799,46.60597229003906],[-1.892083048820439,46.635139465331974],[-1.933472037315312,46.68402862548828],[-1.981250047683716,46.70458221435547],[-1.979583978652954,46.717361450195305],[-2.072082996368351,46.78291702270508],[-2.142637968063297,46.81874847412114],[-2.154304981231689,46.89014053344732],[-2.12819504737854,46.893196105956974],[-2.084028005599976,46.937637329101506],[-2.05819392204279,46.9509735107423],[-2.028748989105224,47.00958251953124],[-1.982360005378723,47.02774810791021],[-1.949818849563599,47.00087738037115],[-1.916717767715454,46.99215698242199],[-1.913175225257874,46.97221755981456],[-1.871775269508305,46.95317459106456],[-1.831169366836548,46.95326995849621],[-1.832106113433838,46.932086944580135],[-1.7798796892165,46.92522048950201],[-1.750432610511723,46.930370330810604],[-1.736008882522583,46.89605712890619],[-1.720345139503479,46.884696960449276],[-1.690871477127075,46.89009475708008],[-1.664177656173706,46.874702453613224],[-1.640486240386906,46.878494262695426],[-1.548511028289795,46.860080718994254],[-1.546307563781681,46.87297439575201],[-1.500791311263981,46.88339233398443],[-1.52982044219965,46.908199310302734],[-1.521631360054016,46.941036224365234],[-1.554271936416569,46.9786529541015],[-1.543657422065735,47.0037727355957],[-1.499844908714294,47.040691375732536],[-1.473130226135254,47.03112411499029],[-1.462753176689034,46.9900360107423],[-1.475257635116577,46.98094558715826],[-1.458497881889286,46.956230163574276],[-1.458267688751221,46.925838470459034],[-1.415447592735234,46.94435119628906],[-1.366159915924072,46.956691741943416],[-1.359058737754822,46.98113632202154],[-1.375943660736084,47.029655456543026],[-1.336458444595337,47.04406738281244],[-1.317961215972844,47.034301757812614],[-1.287281870841923,47.0583114624024],[-1.267883658409119,47.08426666259776],[-1.196768760681096,47.03976440429693],[-1.148571133613473,47.029552459716854],[-1.110118746757507,47.016010284423885],[-1.016110062599125,47.00364303588873],[-1.002263784408569,47.02128982543945],[-0.959132194519043,46.99812316894531],[-0.93487769365305,47.00756072998052],[-0.901293694972992,46.99143981933594],[-0.891960620880127,46.97582626342785],[-0.881000161170959,46.9464683532716],[-0.830605626106205,46.93114471435558],[-0.815466463565826,46.878860473632926],[-0.781428396701813,46.84307861328125],[-0.729630768299046,46.82155227661144],[-0.71004003286356,46.82157135009771],[-0.726563572883549,46.76876449584961],[-0.695491254329681,46.745368957519645],[-0.688669443130436,46.72584915161133],[-0.655832231044712,46.70033645629883],[-0.67875242233265,46.686683654785156],[-0.636989057064,46.663330078125114],[-0.648476839065495,46.64703750610363],[-0.61396545171732,46.62012481689453],[-0.627151370048523,46.60560226440435],[-0.613426685333195,46.58761215209961],[-0.60212862491602,46.533279418945256],[-0.628197550773564,46.52816390991216],[-0.644359588623047,46.51089477539068],[-0.625532507896423,46.49676513671881],[-0.620234310626984,46.439216613769645],[-0.611005187034607,46.41305160522461],[-0.537800490856114,46.38646697998047],[-0.559595406055394,46.360935211181754],[-0.602836191654205,46.35958480834972],[-0.637084722518921,46.33445739746099],[-0.643541216850281,46.31945037841808],[-0.697337746620121,46.32518768310541],[-0.726248919963837,46.30320739746105],[-0.750475525856018,46.30426025390625],[-0.759919106960297,46.312206268310604],[-0.840741693973541,46.33969116210932],[-0.848986387252751,46.318325042724666],[-0.886848092079106,46.3267059326173],[-0.933909475803262,46.312629699707024],[-0.958678126335087,46.323345184326286],[-0.934229910373688,46.36011123657232],[-0.96451336145401,46.3654022216798],[-0.978339016437531,46.3511962890625],[-1.017638683319092,46.35301208496105],[-1.050719857215881,46.343265533447266],[-1.09291398525238,46.31485366821289]]]]},"properties":{"ID_0":79,"ISO":"FR-85","NAME_0":"France","ID_1":18,"NAME_1":"Pays de la Loire","ID_2":75,"NAME_2":"Vendée","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Vendéia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.140979290008545,49.978805541992244],[4.233068466186523,49.95782470703131],[4.217773914337158,49.91625595092768],[4.255733966827506,49.90397644042969],[4.249004364013672,49.85695648193364],[4.233669757843018,49.84868621826172],[4.206332206726131,49.779621124267635],[4.242039203643742,49.765468597412166],[4.225406169891471,49.727275848388665],[4.191380977630615,49.71564483642589],[4.185269355774039,49.69887161254883],[4.12702131271368,49.67792129516607],[4.115690231323356,49.63326263427746],[4.050554752349853,49.63492965698242],[4.026275157928524,49.61992263793951],[4.064444065094051,49.59411621093756],[4.076769828796387,49.57072067260748],[4.051908016204777,49.54507446289068],[4.075648307800293,49.53895950317394],[4.074503898620605,49.51858520507818],[4.040711879730338,49.50853347778325],[4.042112350463867,49.47072601318365],[4.06140995025646,49.446731567382926],[4.037578582763729,49.438083648681584],[4.047973155975342,49.40564346313488],[4.035496234893799,49.35990524291992],[4.01272869110113,49.358306884765625],[3.986643791198787,49.37892150878906],[3.961308956146183,49.37734603881841],[3.924819469451961,49.4077262878419],[3.910301685333252,49.39533233642584],[3.859844207763786,49.38152313232416],[3.851309537887687,49.344944000244254],[3.803095340728873,49.35882186889654],[3.736195564270019,49.33555221557623],[3.669160604476986,49.324748992920036],[3.643261671066341,49.29588317871087],[3.655254602432365,49.26285171508789],[3.67701888084423,49.23708343505871],[3.654800891876278,49.21294784545904],[3.676669836044368,49.20726394653331],[3.706489801406974,49.180316925048885],[3.751147747039851,49.177700042724716],[3.748676300048942,49.15853118896496],[3.70329737663269,49.14320373535162],[3.683834791183471,49.15449142456055],[3.624456405639705,49.15135192871094],[3.610413551330624,49.12749862670904],[3.63224029541027,49.086090087890625],[3.587706327438468,49.05934906005871],[3.58520412445074,49.038867950439396],[3.614683628082332,49.03355026245117],[3.650133132934627,49.041358947753956],[3.677718877792415,49.01602935791027],[3.639824628830069,49.00399780273443],[3.621205806732291,48.9660301208496],[3.601246356964168,48.946681976318416],[3.574443340301457,48.939025878906186],[3.566684484481755,48.91349411010747],[3.528576374054012,48.91213989257812],[3.485187530517635,48.851909637451286],[3.382333993911743,48.8736305236817],[3.361698389053458,48.91955947875982],[3.33019924163824,48.907958984375],[3.313075780868587,48.92121505737305],[3.30474948883068,48.94877243041997],[3.269479513168335,48.93745422363292],[3.249521970748901,48.9742317199707],[3.171569347381592,49.01249694824219],[3.190666913986149,49.0499725341798],[3.155808210372925,49.085502624511655],[3.165230274200553,49.09965896606456],[3.07188439369213,49.11755371093744],[3.093913316726798,49.14210128784179],[3.139471054077205,49.154483795166016],[3.110953330993596,49.17056274414074],[3.102450370788687,49.19730758666998],[3.015699863433838,49.216316223144645],[2.991714954376221,49.19196319580078],[2.971813678741455,49.18753051757824],[2.964349031448478,49.23191070556646],[3.039328813552856,49.230461120605405],[3.026756525039673,49.260574340820426],[3.034602642059383,49.28589630126959],[2.99371957778942,49.2884178161621],[2.964259624481315,49.32138442993164],[3.001788377761955,49.34014892578125],[3.031483411789054,49.331569671630916],[3.068640947342033,49.34730529785162],[3.094371318817082,49.37853240966797],[3.094432115554866,49.43426895141595],[3.126730442047119,49.431819915771484],[3.155214309692496,49.45418548583996],[3.107085466384945,49.46823120117193],[3.121280908584595,49.493679046630916],[3.097789525985775,49.511245727539055],[3.122465372085571,49.521682739257926],[3.13148021697998,49.54337692260742],[3.122532606124878,49.60203552246093],[3.093575239181632,49.6225471496582],[3.112766265869254,49.63132858276367],[3.099381685257072,49.656555175781364],[3.127082824707088,49.66953277587885],[3.11865234375,49.70583343505859],[3.094681501388663,49.75726699829107],[3.061328649520931,49.78138351440441],[3.085932970046997,49.791748046875114],[3.087836265564079,49.86569213867193],[3.11913371086132,49.88302230834972],[3.117620229721126,49.91396331787115],[3.164916038513297,49.94754028320318],[3.163644313812313,49.96335983276361],[3.192717313766423,49.977535247802734],[3.155682563781852,49.99175262451172],[3.172707319259757,50.01199340820318],[3.229350328445378,50.03018951416026],[3.270715713500977,50.029468536377],[3.280355453491211,50.01520919799816],[3.337102174758968,50.017402648925895],[3.353106498718262,50.03571701049805],[3.398473978042602,50.03458023071294],[3.427791595459041,50.022087097168026],[3.490106105804443,50.01895904541009],[3.541758060455436,50.05197525024419],[3.594225406646843,50.04391860961913],[3.614123582839966,50.02505874633794],[3.66396427154541,50.0537109375],[3.715184688568172,50.06927490234386],[3.745751619339046,50.053573608398494],[3.837058544158936,50.04780960083019],[3.882319211959782,50.03236770629894],[3.887292385101375,50.00969314575207],[3.922870874405021,50.02625656127941],[3.949834346771353,50.02688598632818],[3.982312440872249,50.04443359375005],[3.995236396789608,50.028446197509766],[3.980143785476685,50.00356292724609],[4.0311217308045,49.98206710815429],[4.055109500885009,49.98535919189464],[4.084444046020565,49.970657348632926],[4.140979290008545,49.978805541992244]]]},"properties":{"ID_0":79,"ISO":"FR-02","NAME_0":"France","ID_1":19,"NAME_1":"Picardie","ID_2":76,"NAME_2":"Aisne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.784845352172794,49.75790405273437],[1.809601545333862,49.75384521484369],[1.838350534439087,49.7307243347168],[1.848986029624996,49.7016372680664],[1.894761323928833,49.69979476928711],[1.933066010475216,49.71987915039074],[1.949091553688163,49.700798034668075],[1.977684736251888,49.71134948730469],[2.034014701843262,49.71062088012706],[2.058854579925537,49.69510269165045],[2.124042034149284,49.6880378723145],[2.155584096908626,49.702091217041016],[2.229620695114192,49.70219421386719],[2.305654048919735,49.6827392578125],[2.332294702530021,49.68099212646484],[2.373909711837882,49.656036376953125],[2.412371635437125,49.66123199462896],[2.445587396621704,49.65297698974609],[2.478122711181697,49.6207885742188],[2.505775928497371,49.636280059814446],[2.526593446731567,49.62944412231445],[2.571631669998169,49.59708023071295],[2.615460395813045,49.611614227295036],[2.631943225860709,49.579116821289176],[2.670723199844417,49.58142089843744],[2.669194221496582,49.59991073608404],[2.688934087753353,49.6256561279298],[2.74435210227972,49.62520217895508],[2.786193132400513,49.61289978027344],[2.800428867340145,49.66136550903326],[2.839633703231812,49.660766601562436],[2.860636472702083,49.68488311767584],[2.886761903762874,49.68841552734369],[2.913415431976375,49.70950698852539],[2.95027399063116,49.69279098510748],[2.992365837097282,49.70765304565429],[3.028304815292472,49.68006515502941],[3.052434444427604,49.71376800537121],[3.11865234375,49.70583343505859],[3.127082824707088,49.66953277587885],[3.099381685257072,49.656555175781364],[3.112766265869254,49.63132858276367],[3.093575239181632,49.6225471496582],[3.122532606124878,49.60203552246093],[3.13148021697998,49.54337692260742],[3.122465372085571,49.521682739257926],[3.097789525985775,49.511245727539055],[3.121280908584595,49.493679046630916],[3.107085466384945,49.46823120117193],[3.155214309692496,49.45418548583996],[3.126730442047119,49.431819915771484],[3.094432115554866,49.43426895141595],[3.094371318817082,49.37853240966797],[3.068640947342033,49.34730529785162],[3.031483411789054,49.331569671630916],[3.001788377761955,49.34014892578125],[2.964259624481315,49.32138442993164],[2.99371957778942,49.2884178161621],[3.034602642059383,49.28589630126959],[3.026756525039673,49.260574340820426],[3.039328813552856,49.230461120605405],[2.964349031448478,49.23191070556646],[2.971813678741455,49.18753051757824],[2.991714954376221,49.19196319580078],[3.015699863433838,49.216316223144645],[3.102450370788687,49.19730758666998],[3.110953330993596,49.17056274414074],[3.139471054077205,49.154483795166016],[3.093913316726798,49.14210128784179],[3.07188439369213,49.11755371093744],[3.056320667266959,49.10191726684576],[2.974612236023063,49.07483673095703],[2.901507854461784,49.08537292480468],[2.856089353561458,49.070034027099666],[2.844946384430045,49.0848846435548],[2.809254169464111,49.09753799438482],[2.760833501815853,49.063003540039006],[2.735012531280631,49.06045913696289],[2.724357128143367,49.08045959472662],[2.692186594009513,49.076568603515625],[2.633272886276302,49.10837554931652],[2.590524196624813,49.07965469360363],[2.559478759765681,49.0976181030274],[2.489930868148746,49.106361389160156],[2.499226570129395,49.122268676757926],[2.440902709961051,49.1458015441895],[2.359295606613272,49.14734649658203],[2.321776866912955,49.184436798095696],[2.301197052002067,49.183887481689446],[2.286412954330501,49.15991973876953],[2.241582632064876,49.1515731811524],[2.220277070999259,49.17919921875],[2.168270587921199,49.16475296020502],[2.153026103973446,49.183925628662166],[2.095874547958488,49.19006347656249],[2.0807688236236,49.20720291137701],[2.021784305572623,49.188674926757926],[1.999445199966544,49.175571441650504],[1.974085569381714,49.18331527709961],[1.882568359375057,49.16249465942383],[1.776924133300895,49.1852264404298],[1.742694616317749,49.179801940918026],[1.715608477592525,49.20623779296869],[1.740453124046269,49.22344207763672],[1.704364180564824,49.232200622558594],[1.711645603179932,49.26452255249023],[1.75471997261053,49.27000808715831],[1.790288925170898,49.25369262695324],[1.802660226821899,49.27343368530285],[1.772390365600586,49.293663024902344],[1.774004220962638,49.335693359375114],[1.759340763092155,49.36824035644531],[1.720028877258414,49.395282745361385],[1.713937520980892,49.40922546386719],[1.726078152656498,49.43806457519537],[1.775770783424491,49.47343826293951],[1.787550449371338,49.506229400634766],[1.749279260635319,49.49359893798834],[1.726378798484916,49.54237365722656],[1.719389319419918,49.5822868347168],[1.69372546672821,49.60106658935541],[1.72168505191803,49.62332153320324],[1.708078145980949,49.64614868164068],[1.724131345749015,49.67180633544933],[1.752184510231075,49.68096542358404],[1.714367032051143,49.70719909667974],[1.712556719780025,49.7301483154298],[1.742890834808406,49.73855590820324],[1.749885678291321,49.76211547851568],[1.784845352172794,49.75790405273437]]]},"properties":{"ID_0":79,"ISO":"FR-60","NAME_0":"France","ID_1":19,"NAME_1":"Picardie","ID_2":77,"NAME_2":"Oise","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.615832805633545,50.36854934692383],[1.646498680114746,50.340076446533196],[1.677249193191585,50.33382034301758],[1.761848688125667,50.361606597900504],[1.804678559303284,50.35960388183605],[1.869130969047546,50.33446884155279],[1.875354409217834,50.32272720336914],[1.919496178627128,50.312664031982415],[1.946194767952079,50.33148956298834],[1.96393442153942,50.31805419921874],[1.93445813655859,50.29935073852545],[1.945648431777954,50.287746429443466],[2.048668146133423,50.256771087646484],[2.068487167358455,50.227092742920036],[2.096638441085872,50.206630706787166],[2.173296689987296,50.20788574218756],[2.269351243972892,50.22764968872075],[2.301693201065063,50.21295547485357],[2.331300735473576,50.22172546386719],[2.361731052398738,50.20707702636719],[2.38231992721569,50.22606658935558],[2.452066183090267,50.2302131652832],[2.495690345764103,50.19456100463867],[2.414845943450928,50.17311096191406],[2.389776945114136,50.1554832458496],[2.375459671020565,50.10926055908209],[2.394888162612972,50.11019134521484],[2.429657936096305,50.08818435668951],[2.455049514770621,50.13117599487316],[2.514949321746826,50.1408195495606],[2.532332181930599,50.115077972412166],[2.568370103836116,50.13596343994146],[2.57567143440258,50.11333084106445],[2.630727767944393,50.10727691650385],[2.647546529769897,50.09440994262695],[2.691648960113525,50.09206771850597],[2.729929685592651,50.12586212158209],[2.780897855758781,50.11115646362315],[2.781835794448852,50.09111404418956],[2.760424852371273,50.069633483886776],[2.752195358276367,50.0403213500976],[2.794509887695426,50.05005264282232],[2.80719780921936,50.062458038330135],[2.855413675308228,50.07799148559564],[2.876192808151188,50.044254302978516],[2.916974067687988,50.035530090332145],[2.948889255523795,50.0533218383789],[2.971535921096859,50.041366577148494],[3.011969804763907,50.05804061889654],[3.074492216110229,50.045299530029354],[3.090253591537589,50.05374145507812],[3.123577833175773,50.024486541748104],[3.172707319259757,50.01199340820318],[3.155682563781852,49.99175262451172],[3.192717313766423,49.977535247802734],[3.163644313812313,49.96335983276361],[3.164916038513297,49.94754028320318],[3.117620229721126,49.91396331787115],[3.11913371086132,49.88302230834972],[3.087836265564079,49.86569213867193],[3.085932970046997,49.791748046875114],[3.061328649520931,49.78138351440441],[3.094681501388663,49.75726699829107],[3.11865234375,49.70583343505859],[3.052434444427604,49.71376800537121],[3.028304815292472,49.68006515502941],[2.992365837097282,49.70765304565429],[2.95027399063116,49.69279098510748],[2.913415431976375,49.70950698852539],[2.886761903762874,49.68841552734369],[2.860636472702083,49.68488311767584],[2.839633703231812,49.660766601562436],[2.800428867340145,49.66136550903326],[2.786193132400513,49.61289978027344],[2.74435210227972,49.62520217895508],[2.688934087753353,49.6256561279298],[2.669194221496582,49.59991073608404],[2.670723199844417,49.58142089843744],[2.631943225860709,49.579116821289176],[2.615460395813045,49.611614227295036],[2.571631669998169,49.59708023071295],[2.526593446731567,49.62944412231445],[2.505775928497371,49.636280059814446],[2.478122711181697,49.6207885742188],[2.445587396621704,49.65297698974609],[2.412371635437125,49.66123199462896],[2.373909711837882,49.656036376953125],[2.332294702530021,49.68099212646484],[2.305654048919735,49.6827392578125],[2.229620695114192,49.70219421386719],[2.155584096908626,49.702091217041016],[2.124042034149284,49.6880378723145],[2.058854579925537,49.69510269165045],[2.034014701843262,49.71062088012706],[1.977684736251888,49.71134948730469],[1.949091553688163,49.700798034668075],[1.933066010475216,49.71987915039074],[1.894761323928833,49.69979476928711],[1.848986029624996,49.7016372680664],[1.838350534439087,49.7307243347168],[1.809601545333862,49.75384521484369],[1.784845352172794,49.75790405273437],[1.73385405540472,49.81349945068371],[1.712090253829899,49.88640213012701],[1.678450703621024,49.918132781982536],[1.596047759056148,49.94798660278326],[1.574389457702694,49.97365570068365],[1.526949524879569,49.996578216552734],[1.452256202697811,50.04266738891613],[1.459145903587398,50.0625],[1.422133922576904,50.069377899170036],[1.379722952842712,50.06502914428705],[1.45416605472559,50.11013793945306],[1.481387972831783,50.17069625854486],[1.501943945884761,50.194862365722656],[1.556388020515385,50.21680450439453],[1.622501015663204,50.19569396972662],[1.615834951400871,50.218471527099666],[1.580278038978633,50.257915496826165],[1.544167041778678,50.26208496093756],[1.53805494308483,50.28708267211914],[1.55694401264185,50.364860534668026],[1.615832805633545,50.36854934692383]]]},"properties":{"ID_0":79,"ISO":"FR-80","NAME_0":"France","ID_1":19,"NAME_1":"Picardie","ID_2":78,"NAME_2":"Somme","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.406249046325683,46.049304962158196],[-1.334861993789673,46.01458358764643],[-1.315695047378483,45.993751525878906],[-1.234307050704899,45.98236083984381],[-1.242082953453064,45.95458221435558],[-1.231528043746835,45.924861907959034],[-1.187638998031503,45.88597106933593],[-1.207082033157235,45.84875106811529],[-1.195693016052189,45.82819366455078],[-1.244583010673523,45.8095817565918],[-1.261250972747803,45.870140075683594],[-1.3848619461059,45.946804046630916],[-1.395972967147827,45.975971221923885],[-1.387915968894958,45.999584197998104],[-1.413193941116333,46.04180526733409],[-1.406249046325683,46.049304962158196]]],[[[-1.512639045715332,46.25958251953119],[-1.481528997421265,46.248474121093864],[-1.492915987968445,46.2293052673341],[-1.414584040641785,46.23152923583996],[-1.42986094951624,46.20624923706065],[-1.363471984863224,46.206527709961044],[-1.321249008178711,46.187084197998104],[-1.293751001358032,46.18847274780285],[-1.268473029136658,46.15513992309582],[-1.278193950653019,46.143470764160156],[-1.322082996368408,46.143470764160156],[-1.392637968063354,46.17736053466808],[-1.461804986000061,46.20236206054682],[-1.502637982368469,46.192638397216854],[-1.535972952842656,46.20124816894531],[-1.55930495262146,46.230972290039006],[-1.512639045715332,46.25958251953119]]],[[[-0.750475525856018,46.30426025390625],[-0.735993087291717,46.26781845092784],[-0.751461982727051,46.245071411132926],[-0.690944850444737,46.21932983398432],[-0.682412207126617,46.19769287109381],[-0.61585396528244,46.13845062255871],[-0.546856462955475,46.14386367797863],[-0.526792585849762,46.13555526733398],[-0.50363111495966,46.10726928710943],[-0.450340807437897,46.10205841064453],[-0.401450693607273,46.08424758911133],[-0.280022770166397,46.07690048217784],[-0.27302822470665,46.05731964111333],[-0.210661366581917,46.04543304443359],[-0.189131736755371,46.02614212036138],[-0.144795343279839,46.00466918945318],[-0.135610625147763,45.97853851318365],[-0.102936878800392,45.96966171264654],[-0.095793038606587,45.93088912963867],[-0.151134848594666,45.92662048339844],[-0.147453740239143,45.900848388671875],[-0.114735990762711,45.872375488281364],[-0.138513684272766,45.845645904541016],[-0.13609904050827,45.82064056396496],[-0.161583900451603,45.790767669677784],[-0.192106619477272,45.788387298583984],[-0.221083238720894,45.77521514892584],[-0.248029530048314,45.80548095703125],[-0.29179048538208,45.8056640625],[-0.312174886465073,45.786293029785206],[-0.365849077701569,45.779827117919915],[-0.401994526386261,45.78652191162121],[-0.404643356800023,45.770355224609375],[-0.449333965778294,45.7660026550294],[-0.460010170936584,45.739276885986385],[-0.415838629007339,45.74166870117193],[-0.419214904308262,45.723838806152344],[-0.408930063247681,45.65618896484381],[-0.43192362785328,45.624473571777344],[-0.387369245290756,45.62668228149414],[-0.376310378313008,45.60942840576172],[-0.296574324369431,45.5644989013673],[-0.319911032915115,45.534889221191456],[-0.254715621471405,45.51939392089844],[-0.251365512609368,45.491542816162216],[-0.268344849348011,45.45587539672863],[-0.248304113745689,45.435073852539055],[-0.251231133937779,45.41881179809576],[-0.310640484094563,45.37657928466802],[-0.271085679531097,45.357822418213004],[-0.283171564340591,45.30831909179693],[-0.228746742010117,45.32166290283209],[-0.196193069219532,45.30578231811535],[-0.161724537610951,45.30666351318354],[-0.108813494443837,45.289672851562614],[-0.115385264158192,45.24807357788086],[-0.049742344766855,45.24882125854492],[-0.03266728296876,45.23439025878906],[0.003707139520031,45.2284049987793],[0.004330746363905,45.19163131713873],[-0.036750011146069,45.1407470703125],[-0.040200341492834,45.102382659912166],[-0.065618291497174,45.10070419311529],[-0.087573483586311,45.12158203125005],[-0.111029207706395,45.115379333496094],[-0.143537327647209,45.0903434753418],[-0.191442385315838,45.0947494506837],[-0.257078230381012,45.11462020874029],[-0.275359451770782,45.14141082763677],[-0.362699329853058,45.17036056518565],[-0.378419399261475,45.156856536865234],[-0.419172704219704,45.21039199829112],[-0.405947506427765,45.24208068847662],[-0.416122585535049,45.267391204834034],[-0.472985565662327,45.293632507324276],[-0.513430058956146,45.28638458251959],[-0.567662417888585,45.29742050170892],[-0.568966627120858,45.331523895263786],[-0.6505326628685,45.32249069213873],[-0.717361986637002,45.328521728515675],[-0.747084021568298,45.395973205566406],[-0.77736002206791,45.435974121093864],[-0.829859972000122,45.48902893066406],[-0.902083992958069,45.530418395996094],[-0.915973007678986,45.550415039062614],[-0.946527004241943,45.551250457763786],[-0.991806983947754,45.5759735107423],[-0.995416998863107,45.599861145019524],[-1.017915964126587,45.620418548584034],[-1.042083978652954,45.61680603027337],[-1.071805953979435,45.63375091552746],[-1.115417957305908,45.64597320556652],[-1.161249041557198,45.67569351196289],[-1.214583039283752,45.69708251953136],[-1.239305019378662,45.71374893188487],[-1.244583010673523,45.782917022705135],[-1.21430504322052,45.79347229003906],[-1.188194990158081,45.79013824462902],[-1.136526942253113,45.81847381591797],[-1.167639970779362,45.844028472900504],[-1.154582023620605,45.86347198486328],[-1.123749971389771,45.85825347900402],[-1.080139040946847,45.900417327880916],[-1.072360038757324,45.950138092041016],[-1.08374905586237,45.96513748168957],[-1.081804990768319,45.99736022949219],[-1.052639007568359,46.011249542236385],[-1.060418009757882,46.04513931274414],[-1.090139985084477,46.05347061157238],[-1.100695013999882,46.09402847290044],[-1.171249985694828,46.1381950378418],[-1.230972051620426,46.15069580078125],[-1.199584007263184,46.213195800781364],[-1.174584031104985,46.222362518310604],[-1.123193979263306,46.26347351074224],[-1.132361054420471,46.30263900756836],[-1.122496366500798,46.32041549682623],[-1.121933579444885,46.32263946533209],[-1.10263895988453,46.315246582031364],[-1.100415945053101,46.314907073974666],[-1.093194007873535,46.31476974487315],[-1.09291398525238,46.31485366821289],[-1.050719857215881,46.343265533447266],[-1.017638683319092,46.35301208496105],[-0.978339016437531,46.3511962890625],[-0.96451336145401,46.3654022216798],[-0.934229910373688,46.36011123657232],[-0.958678126335087,46.323345184326286],[-0.933909475803262,46.312629699707024],[-0.886848092079106,46.3267059326173],[-0.848986387252751,46.318325042724666],[-0.840741693973541,46.33969116210932],[-0.759919106960297,46.312206268310604],[-0.750475525856018,46.30426025390625]]]]},"properties":{"ID_0":79,"ISO":"FR-17","NAME_0":"France","ID_1":20,"NAME_1":"Poitou-Charentes","ID_2":79,"NAME_2":"Charente-Maritime","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Charente-Inférieure"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.823433399200439,46.12858963012707],[0.832307457924003,46.104339599609375],[0.819170773029441,46.07739639282226],[0.817909300327358,46.04788589477545],[0.856265008449668,46.02972030639654],[0.924509346485252,46.01022720336914],[0.941492617130336,45.96058654785162],[0.884575426578579,45.923812866210994],[0.861097455024833,45.91978454589849],[0.821936547756195,45.931560516357536],[0.813539981841984,45.896884918213004],[0.827373206615505,45.8827476501466],[0.795988976955414,45.82988357543951],[0.782117664813995,45.82040405273443],[0.783778727054653,45.79347610473644],[0.742600083351249,45.8043785095216],[0.710514545440731,45.802200317382756],[0.695378899574337,45.76211929321294],[0.652866542339268,45.73937606811523],[0.629742443561611,45.71456909179693],[0.587921559810752,45.66767501831055],[0.575447082519588,45.64092636108392],[0.538447558879852,45.62873840332037],[0.512656629085541,45.631458282470696],[0.501440644264278,45.61535263061535],[0.516323685646171,45.58806228637707],[0.506549119949398,45.55434036254877],[0.465736716985759,45.53962326049815],[0.432763397693748,45.50164794921875],[0.378383815288657,45.48412704467785],[0.356706649065018,45.466220855712834],[0.310780584812107,45.45875930786144],[0.270859807729664,45.41892623901367],[0.249430790543556,45.36358642578131],[0.270634382963181,45.31460571289068],[0.252620726823807,45.28940582275396],[0.220911905169601,45.290225982666016],[0.204415708780289,45.26360321044922],[0.172293275594711,45.25171279907232],[0.174738436937446,45.23920822143566],[0.145485624671039,45.214485168457145],[0.115843661129531,45.213573455810604],[0.100036896765289,45.22607421875006],[0.055581782013235,45.22716522216797],[0.004330746363905,45.19163131713873],[0.003707139520031,45.2284049987793],[-0.03266728296876,45.23439025878906],[-0.049742344766855,45.24882125854492],[-0.115385264158192,45.24807357788086],[-0.108813494443837,45.289672851562614],[-0.161724537610951,45.30666351318354],[-0.196193069219532,45.30578231811535],[-0.228746742010117,45.32166290283209],[-0.283171564340591,45.30831909179693],[-0.271085679531097,45.357822418213004],[-0.310640484094563,45.37657928466802],[-0.251231133937779,45.41881179809576],[-0.248304113745689,45.435073852539055],[-0.268344849348011,45.45587539672863],[-0.251365512609368,45.491542816162216],[-0.254715621471405,45.51939392089844],[-0.319911032915115,45.534889221191456],[-0.296574324369431,45.5644989013673],[-0.376310378313008,45.60942840576172],[-0.387369245290756,45.62668228149414],[-0.43192362785328,45.624473571777344],[-0.408930063247681,45.65618896484381],[-0.419214904308262,45.723838806152344],[-0.415838629007339,45.74166870117193],[-0.460010170936584,45.739276885986385],[-0.449333965778294,45.7660026550294],[-0.404643356800023,45.770355224609375],[-0.401994526386261,45.78652191162121],[-0.365849077701569,45.779827117919915],[-0.312174886465073,45.786293029785206],[-0.29179048538208,45.8056640625],[-0.248029530048314,45.80548095703125],[-0.221083238720894,45.77521514892584],[-0.192106619477272,45.788387298583984],[-0.161583900451603,45.790767669677784],[-0.13609904050827,45.82064056396496],[-0.138513684272766,45.845645904541016],[-0.114735990762711,45.872375488281364],[-0.147453740239143,45.900848388671875],[-0.151134848594666,45.92662048339844],[-0.095793038606587,45.93088912963867],[-0.102936878800392,45.96966171264654],[-0.05886036157608,45.98605346679699],[-0.026206960901618,46.05634689331049],[0.019143542274833,46.05284500122075],[0.072972260415838,46.093894958496094],[0.09955890476715,46.09151458740246],[0.13581603765499,46.104049682617244],[0.167522802948952,46.0845565795899],[0.197353050112781,46.095558166503906],[0.21985170245182,46.09424591064453],[0.291330635547638,46.0595474243164],[0.314395427703971,46.06509017944347],[0.402776449918861,46.06312942504888],[0.413286954164505,46.04908752441412],[0.466101467609406,46.060966491699325],[0.475702792406139,46.0846672058106],[0.447431147098655,46.08704376220709],[0.472302705049628,46.130134582519524],[0.508685290813446,46.13193893432617],[0.539972841739711,46.0855598449707],[0.607352674007529,46.0777816772462],[0.608968436717987,46.08973693847662],[0.687452912330741,46.09725570678716],[0.676446795463619,46.11253356933593],[0.707183480262756,46.12899780273443],[0.74788343906414,46.13872146606457],[0.823433399200439,46.12858963012707]]]},"properties":{"ID_0":79,"ISO":"FR-16","NAME_0":"France","ID_1":20,"NAME_1":"Poitou-Charentes","ID_2":80,"NAME_2":"Charente","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.102121472358647,47.0648078918457],[-0.081341162323952,47.013130187988395],[-0.033123657107353,46.98025131225597],[-0.04483038187027,46.95951461791992],[-0.022142764180899,46.93811035156256],[-0.009123077616039,46.907924652099716],[-0.028286425396686,46.8791770935058],[0.02374417893617,46.85394287109375],[-0.010672212578299,46.84741592407232],[-0.045391917228642,46.824005126953125],[0.006810002028999,46.810543060302734],[-0.02424474991858,46.786392211914006],[-0.021371716633439,46.76661682128906],[0.024149354547262,46.74094772338867],[-0.000478385278257,46.71582412719732],[-0.00960560888052,46.68267059326172],[-0.035516712814513,46.651042938232536],[-0.058854382485151,46.638366699218864],[-0.010081548243704,46.61660003662121],[0.022854639217485,46.61453247070307],[0.020516727119968,46.58464431762706],[-0.003314514178783,46.57173156738287],[0.007113028783465,46.54534149169922],[-0.006269237026515,46.52397537231457],[-0.031351257115602,46.52498245239252],[-0.040101245045605,46.470058441162045],[-0.010465725325048,46.46833038330084],[-0.020217953249812,46.40587615966791],[0.034219980239925,46.373497009277344],[0.01384846307343,46.35701370239258],[0.029353862628454,46.32867431640625],[0.078217528760661,46.3049430847168],[0.123317316174621,46.34679031372082],[0.156198382377738,46.3432731628418],[0.17736878991127,46.32811355590832],[0.152945980429649,46.3040504455567],[0.172320276498795,46.27860260009777],[0.12883676588541,46.267230987548885],[0.14269715547556,46.2304458618164],[0.113431528210697,46.21220779418945],[0.107702337205353,46.185997009277344],[0.139626309275684,46.17960357666027],[0.155111372470969,46.157169342041065],[0.216310471296367,46.142131805420036],[0.188853532075996,46.111305236816456],[0.197353050112781,46.095558166503906],[0.167522802948952,46.0845565795899],[0.13581603765499,46.104049682617244],[0.09955890476715,46.09151458740246],[0.072972260415838,46.093894958496094],[0.019143542274833,46.05284500122075],[-0.026206960901618,46.05634689331049],[-0.05886036157608,45.98605346679699],[-0.102936878800392,45.96966171264654],[-0.135610625147763,45.97853851318365],[-0.144795343279839,46.00466918945318],[-0.189131736755371,46.02614212036138],[-0.210661366581917,46.04543304443359],[-0.27302822470665,46.05731964111333],[-0.280022770166397,46.07690048217784],[-0.401450693607273,46.08424758911133],[-0.450340807437897,46.10205841064453],[-0.50363111495966,46.10726928710943],[-0.526792585849762,46.13555526733398],[-0.546856462955475,46.14386367797863],[-0.61585396528244,46.13845062255871],[-0.682412207126617,46.19769287109381],[-0.690944850444737,46.21932983398432],[-0.751461982727051,46.245071411132926],[-0.735993087291717,46.26781845092784],[-0.750475525856018,46.30426025390625],[-0.726248919963837,46.30320739746105],[-0.697337746620121,46.32518768310541],[-0.643541216850281,46.31945037841808],[-0.637084722518921,46.33445739746099],[-0.602836191654205,46.35958480834972],[-0.559595406055394,46.360935211181754],[-0.537800490856114,46.38646697998047],[-0.611005187034607,46.41305160522461],[-0.620234310626984,46.439216613769645],[-0.625532507896423,46.49676513671881],[-0.644359588623047,46.51089477539068],[-0.628197550773564,46.52816390991216],[-0.60212862491602,46.533279418945256],[-0.613426685333195,46.58761215209961],[-0.627151370048523,46.60560226440435],[-0.61396545171732,46.62012481689453],[-0.648476839065495,46.64703750610363],[-0.636989057064,46.663330078125114],[-0.67875242233265,46.686683654785156],[-0.655832231044712,46.70033645629883],[-0.688669443130436,46.72584915161133],[-0.695491254329681,46.745368957519645],[-0.726563572883549,46.76876449584961],[-0.71004003286356,46.82157135009771],[-0.729630768299046,46.82155227661144],[-0.781428396701813,46.84307861328125],[-0.815466463565826,46.878860473632926],[-0.830605626106205,46.93114471435558],[-0.881000161170959,46.9464683532716],[-0.891960620880127,46.97582626342785],[-0.85891538858408,46.97046661376953],[-0.847720384597778,46.98615646362316],[-0.808483839035034,46.99180984497075],[-0.787577092647439,47.005138397216854],[-0.761534631252232,46.99314498901373],[-0.733897387981415,46.99715423583979],[-0.714539766311646,46.98598098754894],[-0.671041071414834,47.00098419189453],[-0.62017697095871,46.99336242675781],[-0.595491945743561,46.99790954589838],[-0.561547577381134,47.02950668334961],[-0.559717416763249,47.061698913574276],[-0.491782009601593,47.08285140991222],[-0.483751922845784,47.06659317016607],[-0.400779515504837,47.07077026367182],[-0.396030902862549,47.090240478515625],[-0.354752242565155,47.09500503540044],[-0.340140908956528,47.087272644043026],[-0.283180445432606,47.102340698242244],[-0.240407645702362,47.105144500732536],[-0.206268787384033,47.093193054199276],[-0.18524041771883,47.10841751098644],[-0.140891328454018,47.096763610839844],[-0.166736051440182,47.08099365234381],[-0.128896117210388,47.054237365722656],[-0.102121472358647,47.0648078918457]]]},"properties":{"ID_0":79,"ISO":"FR-79","NAME_0":"France","ID_1":20,"NAME_1":"Poitou-Charentes","ID_2":81,"NAME_2":"Deux-Sèvres","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.053739786148071,47.16461181640619],[0.07807111740118,47.12374114990246],[0.132102236151695,47.121391296386776],[0.161916881799812,47.1001091003418],[0.181687563657874,47.115356445312614],[0.200456321239585,47.091678619384766],[0.176861792802754,47.07371902465832],[0.208198502659798,47.05323791503906],[0.243871793151015,47.07094955444341],[0.264221280813217,47.046432495117244],[0.298426210880223,47.05397796630871],[0.309935390949306,47.028030395507926],[0.298205822706223,46.97126388549816],[0.310568571090698,46.9397087097168],[0.325352251529807,46.93094253540045],[0.364629656076374,46.94856643676769],[0.438709646463394,46.929580688476676],[0.44480341672903,46.94115829467784],[0.505189836025238,46.95991134643554],[0.598205327987671,46.95642852783209],[0.598804414272422,46.97492218017584],[0.573683023452759,46.983386993408196],[0.566949963569641,47.002540588378906],[0.618489921092987,47.00751495361328],[0.623983800411168,46.99368667602539],[0.690171778202,46.974979400634766],[0.706179261207637,46.936107635498104],[0.704670250415916,46.90288543701183],[0.753422677516937,46.86058425903326],[0.807996571063938,46.829139709472656],[0.813353598117885,46.79167938232433],[0.867468893528041,46.74821853637701],[0.898324728012142,46.73579788208008],[0.924812436103878,46.700218200683594],[0.902261495590153,46.67766571044916],[0.915637850761413,46.65067291259771],[0.894059300422668,46.62862396240246],[0.915865302085876,46.5966300964356],[0.941367268562374,46.58087921142583],[0.990254223346767,46.56590270996088],[1.01476442813879,46.56776428222667],[1.020409345626888,46.53714752197265],[1.090093851089591,46.537582397460994],[1.149143099784908,46.50221252441406],[1.135514140129146,46.47089004516607],[1.150917053222713,46.45029830932623],[1.213065862655753,46.43308258056646],[1.177279949188346,46.38395309448248],[1.128578662872258,46.362220764160156],[1.048636555671806,46.356548309326286],[1.027162790298462,46.34344100952148],[1.00588679313671,46.280975341796875],[0.934185385704154,46.281326293945256],[0.901247560977993,46.28750610351568],[0.889699697494564,46.26854705810541],[0.861633241176605,46.26181793212902],[0.843548536300773,46.238883972168026],[0.80839920043951,46.22800445556646],[0.813373327255363,46.19768905639643],[0.84585261344921,46.13837051391596],[0.823433399200439,46.12858963012707],[0.74788343906414,46.13872146606457],[0.707183480262756,46.12899780273443],[0.676446795463619,46.11253356933593],[0.687452912330741,46.09725570678716],[0.608968436717987,46.08973693847662],[0.607352674007529,46.0777816772462],[0.539972841739711,46.0855598449707],[0.508685290813446,46.13193893432617],[0.472302705049628,46.130134582519524],[0.447431147098655,46.08704376220709],[0.475702792406139,46.0846672058106],[0.466101467609406,46.060966491699325],[0.413286954164505,46.04908752441412],[0.402776449918861,46.06312942504888],[0.314395427703971,46.06509017944347],[0.291330635547638,46.0595474243164],[0.21985170245182,46.09424591064453],[0.197353050112781,46.095558166503906],[0.188853532075996,46.111305236816456],[0.216310471296367,46.142131805420036],[0.155111372470969,46.157169342041065],[0.139626309275684,46.17960357666027],[0.107702337205353,46.185997009277344],[0.113431528210697,46.21220779418945],[0.14269715547556,46.2304458618164],[0.12883676588541,46.267230987548885],[0.172320276498795,46.27860260009777],[0.152945980429649,46.3040504455567],[0.17736878991127,46.32811355590832],[0.156198382377738,46.3432731628418],[0.123317316174621,46.34679031372082],[0.078217528760661,46.3049430847168],[0.029353862628454,46.32867431640625],[0.01384846307343,46.35701370239258],[0.034219980239925,46.373497009277344],[-0.020217953249812,46.40587615966791],[-0.010465725325048,46.46833038330084],[-0.040101245045605,46.470058441162045],[-0.031351257115602,46.52498245239252],[-0.006269237026515,46.52397537231457],[0.007113028783465,46.54534149169922],[-0.003314514178783,46.57173156738287],[0.020516727119968,46.58464431762706],[0.022854639217485,46.61453247070307],[-0.010081548243704,46.61660003662121],[-0.058854382485151,46.638366699218864],[-0.035516712814513,46.651042938232536],[-0.00960560888052,46.68267059326172],[-0.000478385278257,46.71582412719732],[0.024149354547262,46.74094772338867],[-0.021371716633439,46.76661682128906],[-0.02424474991858,46.786392211914006],[0.006810002028999,46.810543060302734],[-0.045391917228642,46.824005126953125],[-0.010672212578299,46.84741592407232],[0.02374417893617,46.85394287109375],[-0.028286425396686,46.8791770935058],[-0.009123077616039,46.907924652099716],[-0.022142764180899,46.93811035156256],[-0.04483038187027,46.95951461791992],[-0.033123657107353,46.98025131225597],[-0.081341162323952,47.013130187988395],[-0.102121472358647,47.0648078918457],[-0.085541151463985,47.10043334960943],[-0.044239372014886,47.09315109252941],[-0.033735625445843,47.127563476562614],[-0.011722300201654,47.15624237060546],[0.019014857709408,47.175758361816456],[0.053739786148071,47.16461181640619]]]},"properties":{"ID_0":79,"ISO":"FR-86","NAME_0":"France","ID_1":20,"NAME_1":"Poitou-Charentes","ID_2":82,"NAME_2":"Vienne","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.95426702499401,44.65407943725586],[6.961511135101318,44.62145996093756],[6.941470146179256,44.57603073120128],[6.920465946197623,44.55873489379883],[6.889470577239933,44.55382919311529],[6.86726903915411,44.53113174438482],[6.88905906677246,44.485641479492244],[6.917470932006836,44.47103881835948],[6.953364849090575,44.42924880981445],[6.907470226287842,44.419750213623104],[6.900650024414176,44.36719131469738],[6.854558467864933,44.34377288818365],[6.840886592864989,44.34568786621105],[6.796833992004508,44.316699981689446],[6.786443710327148,44.28876495361328],[6.756922245025692,44.262248992920036],[6.724806785583439,44.250385284423885],[6.717369556427002,44.20864486694347],[6.68723821640026,44.16830062866211],[6.707956314086914,44.12438964843756],[6.75648307800293,44.079593658447266],[6.745687484741268,44.042831420898544],[6.788984775543213,44.02128219604498],[6.795561790466252,44.008113861083984],[6.838726997375545,43.98970413208019],[6.848904609680289,43.95507049560558],[6.912989139556998,43.92705917358404],[6.942272186279353,43.897262573242244],[6.89259243011486,43.88998031616205],[6.832286357879696,43.918460845947266],[6.801382064819393,43.91035079956066],[6.781622409820613,43.8835563659668],[6.748080730438176,43.87186050415033],[6.695946693420466,43.87490081787115],[6.667906284332275,43.83061218261718],[6.700319290161133,43.82477951049805],[6.709830284118709,43.810661315918026],[6.636395931243896,43.7889518737793],[6.623513221740836,43.80445098876953],[6.586912631988581,43.80532073974615],[6.554070472717342,43.78343582153325],[6.520383834838924,43.806976318359375],[6.487236022949219,43.79228591918957],[6.415852546691951,43.79004669189459],[6.412788391113224,43.76225662231445],[6.383541107177734,43.73443603515619],[6.354509830474909,43.73651504516607],[6.267786502838078,43.778545379638786],[6.249629974365234,43.80157852172857],[6.21067476272583,43.79766464233393],[6.169112682342472,43.751762390136825],[6.140605926513729,43.73760986328131],[6.110866546631086,43.745750427246094],[6.07040452957159,43.70494461059582],[6.034615039825553,43.692710876464844],[6.021735668182372,43.66828918457031],[5.98777246475231,43.69542312622082],[5.984534263610953,43.71449279785162],[5.951862335205192,43.721534729003906],[5.938253402709961,43.74835586547857],[5.90500164031988,43.7527809143067],[5.888624668121394,43.726364135742244],[5.855748653411865,43.72319030761713],[5.831820011138916,43.745956420898494],[5.781343460083007,43.755657196045036],[5.757332801818904,43.72940826416021],[5.716274261474723,43.7569313049317],[5.713558197021541,43.78112030029308],[5.684297561645565,43.78945159912115],[5.654445171356201,43.82511138916021],[5.627681732177733,43.83080291748047],[5.571718692779598,43.82929229736328],[5.548647403717098,43.84796524047863],[5.57273721694952,43.863510131836044],[5.606559753417969,43.91608428955078],[5.58338308334362,43.91591262817394],[5.567633152008113,43.9426383972168],[5.51267385482788,43.94540405273437],[5.519569396972599,43.99401092529308],[5.542867660522518,44.024448394775334],[5.54459810256958,44.069892883300895],[5.502637386321965,44.0634498596192],[5.498787879943961,44.11571884155279],[5.542145729064941,44.13326263427729],[5.575815677642822,44.18619537353521],[5.609326362609976,44.19070816040045],[5.63879489898693,44.166282653808594],[5.631136417388916,44.150577545166016],[5.678605556488036,44.146099090576286],[5.682728290557861,44.163486480713004],[5.645830154419059,44.167446136474716],[5.65159273147583,44.1895751953125],[5.676037311553955,44.191432952880916],[5.69238996505743,44.18626785278326],[5.754536628723145,44.20982742309582],[5.810880184173584,44.21075820922863],[5.830738544464111,44.20042800903326],[5.909914493560905,44.191604614257926],[5.880200862884578,44.2119407653808],[5.859308242797965,44.2454071044923],[5.83122110366827,44.25931167602539],[5.823013305664176,44.27646636962902],[5.849039077758789,44.300662994384766],[5.875487804412899,44.29096603393554],[5.880136489868164,44.271144866943416],[5.91223335266119,44.24951171875006],[5.913496017456112,44.28825378417974],[5.925138950347844,44.313400268554744],[5.897084712982178,44.31824874877929],[5.937459945678711,44.359901428222656],[5.953542709350643,44.39501953125],[6.019295215606746,44.41915130615245],[6.082678318023625,44.47740173339844],[6.155615329742488,44.46196746826172],[6.227243900299129,44.38173675537121],[6.262495040893555,44.41225814819336],[6.233524799346924,44.46374511718755],[6.262168884277344,44.46566772460949],[6.293492317199821,44.48092651367198],[6.313231945037899,44.4664421081543],[6.337659835815487,44.4708137512207],[6.361999988555908,44.52207183837896],[6.398808479309081,44.49415588378906],[6.415901660919303,44.46913909912121],[6.438481330871582,44.47212219238287],[6.481649398803711,44.454021453857415],[6.557482242584341,44.44599533081054],[6.632299900055159,44.44691467285162],[6.64166975021385,44.485546112060604],[6.668497085571346,44.5003013610841],[6.683020591735954,44.53165435791027],[6.738555431366024,44.55425643920909],[6.769219398498592,44.58610153198247],[6.821003913879451,44.608058929443466],[6.845108509063721,44.61017990112316],[6.858737945556868,44.627902984619254],[6.882274150848446,44.63133239746094],[6.915266513824462,44.65979766845708],[6.95426702499401,44.65407943725586]]]},"properties":{"ID_0":79,"ISO":"FR-04","NAME_0":"France","ID_1":21,"NAME_1":"Provence-Alpes-Côte d'Azur","ID_2":83,"NAME_2":"Alpes-de-Haute-Provence","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.933195114135856,43.48015594482433],[6.884230136871395,43.5025367736817],[6.89521026611328,43.52193069458007],[6.87913513183588,43.53245544433588],[6.907830715179557,43.57094192504883],[6.911990642547607,43.59833145141613],[6.894469738006534,43.611022949218864],[6.85315799713146,43.606399536132926],[6.813587665557861,43.62970352172857],[6.799868106842097,43.62834930419933],[6.761134624481258,43.66588973999023],[6.774703979492243,43.69385147094738],[6.754161834716797,43.73785781860357],[6.71245193481451,43.74034118652355],[6.682462215423698,43.757583618164055],[6.657423496246338,43.748718261718864],[6.636395931243896,43.7889518737793],[6.709830284118709,43.810661315918026],[6.700319290161133,43.82477951049805],[6.667906284332275,43.83061218261718],[6.695946693420466,43.87490081787115],[6.748080730438176,43.87186050415033],[6.781622409820613,43.8835563659668],[6.801382064819393,43.91035079956066],[6.832286357879696,43.918460845947266],[6.89259243011486,43.88998031616205],[6.942272186279353,43.897262573242244],[6.912989139556998,43.92705917358404],[6.848904609680289,43.95507049560558],[6.838726997375545,43.98970413208019],[6.795561790466252,44.008113861083984],[6.788984775543213,44.02128219604498],[6.745687484741268,44.042831420898544],[6.75648307800293,44.079593658447266],[6.707956314086914,44.12438964843756],[6.68723821640026,44.16830062866211],[6.717369556427002,44.20864486694347],[6.724806785583439,44.250385284423885],[6.756922245025692,44.262248992920036],[6.786443710327148,44.28876495361328],[6.796833992004508,44.316699981689446],[6.840886592864989,44.34568786621105],[6.854558467864933,44.34377288818365],[6.900650024414176,44.36719131469738],[6.93236780166626,44.35435104370123],[6.939465045928954,44.33314895629888],[6.967559814453182,44.312950134277344],[6.968370914459229,44.299049377441406],[7.003346920013428,44.27945709228521],[7.01095008850109,44.243850708007926],[7.037686347961482,44.22556686401373],[7.076442718505803,44.23175811767584],[7.141895771026839,44.20177078247076],[7.195740222930965,44.19765090942383],[7.219533920288199,44.17205810546881],[7.242229938507137,44.170848846435604],[7.264095783233642,44.1476669311524],[7.345231056213435,44.14596176147461],[7.360407829284781,44.11706161499029],[7.412460327148438,44.11783218383795],[7.432788372039909,44.12934875488287],[7.462122440338248,44.12738800048828],[7.506918907165584,44.14566040039057],[7.569507122039852,44.15636062622076],[7.614704132080022,44.15456008911132],[7.634099960327205,44.176250457763786],[7.68419981002802,44.17726135253912],[7.669038772583008,44.12797927856457],[7.714300155639592,44.087760925293026],[7.70163536071783,44.043029785156364],[7.665332794189509,44.029380798339844],[7.668847560882682,43.99761581420898],[7.652744770050163,43.97601318359381],[7.611951351165885,43.956485748291065],[7.57154083251953,43.94533920288085],[7.561345577240046,43.89956665039074],[7.498899936676025,43.87236785888672],[7.529827117919865,43.78401565551763],[7.489305973052979,43.76551055908214],[7.436300277710018,43.750888824463004],[7.404984474182243,43.718002319336044],[7.357675552368277,43.721248626708984],[7.305973052978572,43.68486022949219],[7.287917137145996,43.69374847412115],[7.247916221618709,43.69097137451172],[7.211804866790714,43.64764022827154],[7.165972232818604,43.656806945800724],[7.134583950042781,43.62874984741216],[7.126248836517391,43.57402801513666],[7.084584236145076,43.569305419921875],[7.034028053283635,43.53569412231451],[7.028749942779597,43.548473358154354],[6.990971088409423,43.549026489257926],[6.958473205566349,43.539859771728516],[6.937917232513371,43.50930404663086],[6.95708179473877,43.501251220703175],[6.933195114135856,43.48015594482433]]]},"properties":{"ID_0":79,"ISO":"FR-06","NAME_0":"France","ID_1":21,"NAME_1":"Provence-Alpes-Côte d'Azur","ID_2":84,"NAME_2":"Alpes-Maritimes","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.753650665283317,43.72462081909173],[5.7840771675111,43.71636581420909],[5.788631916046199,43.69672012329113],[5.813248634338436,43.689052581787166],[5.799205780029353,43.65992736816406],[5.770087718963566,43.66045761108404],[5.700600624084415,43.64252471923828],[5.680883884429988,43.610881805420036],[5.68757677078247,43.584213256835994],[5.656919479370117,43.5752792358399],[5.716864109039307,43.55120086669922],[5.714278221130485,43.50122070312499],[5.698802947998047,43.48217773437505],[5.727213859558105,43.46708297729503],[5.751574039459284,43.43427658081066],[5.778915405273551,43.41007232666021],[5.749995708465576,43.40151214599615],[5.703262805938778,43.40798950195318],[5.682787895202636,43.39916610717785],[5.703628063201961,43.35400772094738],[5.688144683837891,43.3409996032716],[5.691040515899715,43.312961578369254],[5.726601123809928,43.317363739013786],[5.762794017791862,43.282356262207145],[5.760929584503174,43.267345428466854],[5.70121955871582,43.247158050537216],[5.682416439056453,43.23545455932623],[5.670959949493408,43.17958450317388],[5.623192787170409,43.18680572509777],[5.600140094757079,43.16097259521489],[5.572361946105957,43.17235946655279],[5.531528949737606,43.21236038208008],[5.510971069336051,43.1973609924317],[5.458195209503174,43.210971832275334],[5.423750877380485,43.2048606872558],[5.403472900390624,43.21291732788086],[5.362360000610408,43.20680618286133],[5.348195075988883,43.23069381713873],[5.380416870117243,43.261528015136776],[5.345417022705134,43.28097152709955],[5.363749980926513,43.30958175659174],[5.339583873748892,43.34486007690424],[5.307640075683707,43.361526489257926],[5.259860038757267,43.337638854980526],[5.225416183471623,43.32791519165039],[5.197361946105957,43.33180618286138],[5.041528224945012,43.32791519165039],[5.020139217376709,43.34236145019537],[5.011806011200065,43.36847305297863],[4.977639198303279,43.40069580078125],[4.967916965484676,43.42652893066412],[4.923748970031794,43.43264007568371],[4.85014009475708,43.3976402282716],[4.84041690826416,43.37652969360345],[4.868195056915283,43.36819458007824],[4.865417003631705,43.34319305419933],[4.827082157135067,43.334583282470696],[4.781805038452148,43.34763717651373],[4.725139141082876,43.35041809082036],[4.658472061157227,43.346248626708984],[4.579862117767277,43.3623619079591],[4.556528091430721,43.3768043518067],[4.585693836212158,43.39847183227539],[4.579028129577694,43.433750152587834],[4.532083988189811,43.452083587646484],[4.441805839538517,43.4554176330567],[4.42958307266241,43.448749542236385],[4.229757785797119,43.45986175537115],[4.244232654571476,43.50146102905268],[4.293263912200985,43.51435852050781],[4.35365009307867,43.547393798828125],[4.372169971466178,43.549457550048885],[4.425405025482178,43.5847740173341],[4.448892593383789,43.58343887329113],[4.474191665649528,43.60398483276372],[4.43852519989025,43.61135482788085],[4.426920890808048,43.625835418701165],[4.451532840728817,43.66433334350597],[4.477648258209285,43.67280197143555],[4.486420631408691,43.69885253906255],[4.537796974182186,43.70703887939453],[4.598219871521053,43.686695098876946],[4.626948356628532,43.69167709350585],[4.612276077270621,43.724754333496094],[4.628118038177433,43.75771331787103],[4.651798248291129,43.784358978271484],[4.654428958892822,43.80915832519542],[4.642970085144156,43.832115173339844],[4.66667461395258,43.84721755981457],[4.641909599304199,43.867477416992244],[4.693608283996696,43.88521957397455],[4.739061355590877,43.92406845092784],[4.854805469512939,43.91079330444336],[4.902945518493652,43.887668609619254],[4.969653129577694,43.869743347168026],[5.027721405029411,43.82858276367193],[5.048139095306396,43.78972625732433],[5.186262130737418,43.73550796508789],[5.236377716064567,43.747470855713004],[5.315299987792911,43.73656463623047],[5.343698978424071,43.71877288818371],[5.44529294967657,43.68009567260748],[5.530508041381892,43.65923309326183],[5.606943607330322,43.658687591552734],[5.641422271728516,43.671989440918026],[5.673112869262809,43.69350814819347],[5.712026119232291,43.690643310546925],[5.753650665283317,43.72462081909173]]]},"properties":{"ID_0":79,"ISO":"FR-13","NAME_0":"France","ID_1":21,"NAME_1":"Provence-Alpes-Côte d'Azur","ID_2":85,"NAME_2":"Bouches-du-Rhône","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.632041454315186,45.10973739624018],[6.670689105987549,45.06070709228521],[6.686503410339469,45.020915985107415],[6.739580154418945,45.02360916137701],[6.762772083282528,44.97071075439459],[6.762279987335204,44.913608551025504],[6.812376022338867,44.88661575317383],[6.825379848480281,44.872310638427734],[6.869470119476375,44.853916168213004],[6.912002563476562,44.84551239013672],[6.948660850524959,44.8636207580567],[7.003598213195914,44.839836120605526],[7.022010803222656,44.82304763793957],[7.009140014648493,44.79302215576166],[7.025538921356258,44.77362060546875],[7.024250984191894,44.74722671508795],[7.064780235290583,44.71176147460931],[7.074412345886287,44.69167327880865],[7.059867858886946,44.68048095703119],[7.030571460723934,44.6905136108399],[6.999599933624324,44.68677139282232],[6.95426702499401,44.65407943725586],[6.915266513824462,44.65979766845708],[6.882274150848446,44.63133239746094],[6.858737945556868,44.627902984619254],[6.845108509063721,44.61017990112316],[6.821003913879451,44.608058929443466],[6.769219398498592,44.58610153198247],[6.738555431366024,44.55425643920909],[6.683020591735954,44.53165435791027],[6.668497085571346,44.5003013610841],[6.64166975021385,44.485546112060604],[6.632299900055159,44.44691467285162],[6.557482242584341,44.44599533081054],[6.481649398803711,44.454021453857415],[6.438481330871582,44.47212219238287],[6.415901660919303,44.46913909912121],[6.398808479309081,44.49415588378906],[6.361999988555908,44.52207183837896],[6.337659835815487,44.4708137512207],[6.313231945037899,44.4664421081543],[6.293492317199821,44.48092651367198],[6.262168884277344,44.46566772460949],[6.233524799346924,44.46374511718755],[6.262495040893555,44.41225814819336],[6.227243900299129,44.38173675537121],[6.155615329742488,44.46196746826172],[6.082678318023625,44.47740173339844],[6.019295215606746,44.41915130615245],[5.953542709350643,44.39501953125],[5.937459945678711,44.359901428222656],[5.897084712982178,44.31824874877929],[5.925138950347844,44.313400268554744],[5.913496017456112,44.28825378417974],[5.91223335266119,44.24951171875006],[5.880136489868164,44.271144866943416],[5.875487804412899,44.29096603393554],[5.849039077758789,44.300662994384766],[5.823013305664176,44.27646636962902],[5.83122110366827,44.25931167602539],[5.859308242797965,44.2454071044923],[5.880200862884578,44.2119407653808],[5.909914493560905,44.191604614257926],[5.830738544464111,44.20042800903326],[5.810880184173584,44.21075820922863],[5.754536628723145,44.20982742309582],[5.69238996505743,44.18626785278326],[5.676037311553955,44.191432952880916],[5.681132793426514,44.23069381713867],[5.672644138336182,44.24567031860363],[5.68665266036993,44.26607131958019],[5.646781444549617,44.26708984375006],[5.640211582183838,44.293701171875],[5.613215923309269,44.31577301025401],[5.615752220153865,44.33240127563482],[5.539977550506649,44.332420349121094],[5.521000862121695,44.34923171997081],[5.492944240570181,44.33713531494152],[5.442621707916373,44.381267547607536],[5.432839393615722,44.41166305541992],[5.438582420349177,44.4335556030274],[5.47272253036499,44.420932769775504],[5.457842826843204,44.49815368652344],[5.51102972030634,44.49150848388672],[5.603636741638297,44.4654998779298],[5.633187770843449,44.50209808349621],[5.664504051208439,44.50189590454101],[5.627653121948356,44.53435897827154],[5.597249031066951,44.54327392578131],[5.60714769363409,44.56835174560546],[5.649461746215934,44.619380950927734],[5.641715526580924,44.65108489990246],[5.683495044708366,44.64997863769531],[5.725504875183105,44.64008712768565],[5.753769397735595,44.66053009033209],[5.790620326995906,44.65329742431646],[5.801016807556266,44.67482757568359],[5.829958438873348,44.69124221801769],[5.801469802856558,44.70677947998058],[5.829360961914062,44.742435455322266],[5.847985744476318,44.75152587890631],[5.885456085205192,44.747287750244254],[5.919571876525822,44.75278854370123],[5.980273246765079,44.781185150146534],[5.949519157409782,44.80453109741222],[6.003416061401309,44.820354461670036],[6.030210494995174,44.838096618652344],[6.056502342224121,44.81581497192377],[6.113150596618652,44.84553146362316],[6.130448818206787,44.86251449584972],[6.16965913772583,44.852390289306754],[6.196382045745963,44.85897827148448],[6.248866558075008,44.852558135986385],[6.267095088958683,44.86909103393555],[6.304352760314997,44.87279129028332],[6.336318969726562,44.848369598388786],[6.355364322662354,44.854824066162166],[6.358172416687011,44.9415740966798],[6.330079555511587,44.94776535034191],[6.298856258392391,45.00371170043945],[6.256173133850211,44.99621963500988],[6.203137874603328,45.01244735717784],[6.220080375671387,45.06536865234386],[6.24328517913824,45.06995010375982],[6.229263305664175,45.10680770874029],[6.26056623458868,45.12684631347656],[6.293342113494872,45.10863494873058],[6.334232807159424,45.122940063476676],[6.365100383758545,45.10198593139654],[6.396887779235954,45.061988830566406],[6.434869766235408,45.06299591064459],[6.45312404632574,45.052371978759766],[6.487082004547119,45.05640792846685],[6.481724739074821,45.09045410156256],[6.510423183441162,45.109001159668026],[6.535192966461238,45.0989723205567],[6.576530933380241,45.12309646606445],[6.613530158996696,45.12095642089844],[6.632041454315186,45.10973739624018]]]},"properties":{"ID_0":79,"ISO":"FR-05","NAME_0":"France","ID_1":21,"NAME_1":"Provence-Alpes-Côte d'Azur","ID_2":86,"NAME_2":"Hautes-Alpes","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.240971088409424,43.02513885498047],[6.250971794128418,42.99902725219738],[6.210972785949706,43.00208282470703],[6.240971088409424,43.02513885498047]]],[[[6.636395931243896,43.7889518737793],[6.657423496246338,43.748718261718864],[6.682462215423698,43.757583618164055],[6.71245193481451,43.74034118652355],[6.754161834716797,43.73785781860357],[6.774703979492243,43.69385147094738],[6.761134624481258,43.66588973999023],[6.799868106842097,43.62834930419933],[6.813587665557861,43.62970352172857],[6.85315799713146,43.606399536132926],[6.894469738006534,43.611022949218864],[6.911990642547607,43.59833145141613],[6.907830715179557,43.57094192504883],[6.87913513183588,43.53245544433588],[6.89521026611328,43.52193069458007],[6.884230136871395,43.5025367736817],[6.933195114135856,43.48015594482433],[6.919027805328483,43.44763946533203],[6.891806125640869,43.428195953369254],[6.850973129272518,43.41069412231445],[6.822360038757266,43.4156951904298],[6.782361984253042,43.40930557250988],[6.762638092041129,43.42430496215826],[6.724027156829891,43.396804809570426],[6.715416908264216,43.346805572509766],[6.680694103240967,43.34097290039062],[6.665139198303335,43.319305419921925],[6.628193855285758,43.30430603027355],[6.583473205566519,43.27708435058594],[6.593471050262508,43.26208496093756],[6.635694980621395,43.27375030517584],[6.69069480895996,43.25180435180664],[6.662361145019588,43.23875045776373],[6.664861202240047,43.210971832275334],[6.617361068725699,43.16263961791997],[6.600694179534968,43.18291854858409],[6.555139064788875,43.18847274780273],[6.492362022399902,43.15013885498052],[6.462361812591666,43.15736007690441],[6.402638912200985,43.149581909179744],[6.369027137756404,43.137638092041065],[6.359305858612061,43.115139007568416],[6.364582061767692,43.08597183227545],[6.332637786865234,43.09013748168951],[6.313195228576774,43.10791778564453],[6.276527881622314,43.12097167968756],[6.240139007568359,43.11375045776367],[6.206251144409237,43.11652755737316],[6.160971164703426,43.08930587768555],[6.150416851043758,43.06402587890625],[6.125973224639893,43.07875061035156],[6.087637901306209,43.08708190917963],[6.030416011810303,43.077083587646484],[6.006527900695857,43.10374832153331],[5.972361087799071,43.10708236694336],[5.90513801574707,43.103473663330135],[5.928750038146973,43.07152938842785],[5.887083053588867,43.076805114746094],[5.851250171661434,43.0484733581543],[5.829583168029785,43.04875183105463],[5.806527137756348,43.08069610595709],[5.81402778625494,43.105972290039006],[5.774303913116511,43.11624908447276],[5.754860877990779,43.13041687011719],[5.694860935211295,43.14347076416021],[5.694028854370231,43.17180633544922],[5.670959949493408,43.17958450317388],[5.682416439056453,43.23545455932623],[5.70121955871582,43.247158050537216],[5.760929584503174,43.267345428466854],[5.762794017791862,43.282356262207145],[5.726601123809928,43.317363739013786],[5.691040515899715,43.312961578369254],[5.688144683837891,43.3409996032716],[5.703628063201961,43.35400772094738],[5.682787895202636,43.39916610717785],[5.703262805938778,43.40798950195318],[5.749995708465576,43.40151214599615],[5.778915405273551,43.41007232666021],[5.751574039459284,43.43427658081066],[5.727213859558105,43.46708297729503],[5.698802947998047,43.48217773437505],[5.714278221130485,43.50122070312499],[5.716864109039307,43.55120086669922],[5.656919479370117,43.5752792358399],[5.68757677078247,43.584213256835994],[5.680883884429988,43.610881805420036],[5.700600624084415,43.64252471923828],[5.770087718963566,43.66045761108404],[5.799205780029353,43.65992736816406],[5.813248634338436,43.689052581787166],[5.788631916046199,43.69672012329113],[5.7840771675111,43.71636581420909],[5.753650665283317,43.72462081909173],[5.757332801818904,43.72940826416021],[5.781343460083007,43.755657196045036],[5.831820011138916,43.745956420898494],[5.855748653411865,43.72319030761713],[5.888624668121394,43.726364135742244],[5.90500164031988,43.7527809143067],[5.938253402709961,43.74835586547857],[5.951862335205192,43.721534729003906],[5.984534263610953,43.71449279785162],[5.98777246475231,43.69542312622082],[6.021735668182372,43.66828918457031],[6.034615039825553,43.692710876464844],[6.07040452957159,43.70494461059582],[6.110866546631086,43.745750427246094],[6.140605926513729,43.73760986328131],[6.169112682342472,43.751762390136825],[6.21067476272583,43.79766464233393],[6.249629974365234,43.80157852172857],[6.267786502838078,43.778545379638786],[6.354509830474909,43.73651504516607],[6.383541107177734,43.73443603515619],[6.412788391113224,43.76225662231445],[6.415852546691951,43.79004669189459],[6.487236022949219,43.79228591918957],[6.520383834838924,43.806976318359375],[6.554070472717342,43.78343582153325],[6.586912631988581,43.80532073974615],[6.623513221740836,43.80445098876953],[6.636395931243896,43.7889518737793]]]]},"properties":{"ID_0":79,"ISO":"FR-83","NAME_0":"France","ID_1":21,"NAME_1":"Provence-Alpes-Côte d'Azur","ID_2":87,"NAME_2":"Var","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[5.498787879943961,44.11571884155279],[5.502637386321965,44.0634498596192],[5.54459810256958,44.069892883300895],[5.542867660522518,44.024448394775334],[5.519569396972599,43.99401092529308],[5.51267385482788,43.94540405273437],[5.567633152008113,43.9426383972168],[5.58338308334362,43.91591262817394],[5.606559753417969,43.91608428955078],[5.57273721694952,43.863510131836044],[5.548647403717098,43.84796524047863],[5.571718692779598,43.82929229736328],[5.627681732177733,43.83080291748047],[5.654445171356201,43.82511138916021],[5.684297561645565,43.78945159912115],[5.713558197021541,43.78112030029308],[5.716274261474723,43.7569313049317],[5.757332801818904,43.72940826416021],[5.753650665283317,43.72462081909173],[5.712026119232291,43.690643310546925],[5.673112869262809,43.69350814819347],[5.641422271728516,43.671989440918026],[5.606943607330322,43.658687591552734],[5.530508041381892,43.65923309326183],[5.44529294967657,43.68009567260748],[5.343698978424071,43.71877288818371],[5.315299987792911,43.73656463623047],[5.236377716064567,43.747470855713004],[5.186262130737418,43.73550796508789],[5.048139095306396,43.78972625732433],[5.027721405029411,43.82858276367193],[4.969653129577694,43.869743347168026],[4.902945518493652,43.887668609619254],[4.854805469512939,43.91079330444336],[4.739061355590877,43.92406845092784],[4.77728796005249,43.93819808959972],[4.814368724822998,43.96467590332031],[4.812966823577938,43.988006591796925],[4.840941429138184,43.98591613769537],[4.842254161834774,44.011100769043026],[4.762887001037654,44.07486724853527],[4.723213195800895,44.07935333251953],[4.705081939697266,44.10817337036144],[4.718133449554499,44.14067840576183],[4.716250896453857,44.17604446411144],[4.699935913086051,44.21610641479503],[4.649223804473877,44.27035903930664],[4.650615215301514,44.329807281494254],[4.679883956909293,44.32069396972662],[4.762995243072567,44.32509994506836],[4.804563522338924,44.30389785766601],[4.803998470306396,44.26920700073242],[4.813448429107666,44.23242568969732],[4.825341701507625,44.22844696044916],[4.880250453949031,44.26176834106445],[4.932910442352294,44.26215362548839],[4.989594459533691,44.28576660156256],[5.06056451797491,44.30813980102539],[5.076511859893742,44.28408432006836],[5.109547138214111,44.280548095703125],[5.149529457092399,44.30068206787121],[5.161547660827694,44.24559020996105],[5.175606250762939,44.220867156982536],[5.23814964294445,44.213233947753906],[5.256508827209529,44.23005676269537],[5.303624153137207,44.20879745483404],[5.335726261138916,44.20431137084955],[5.355790138244628,44.213600158691406],[5.384529113769474,44.201190948486385],[5.383240699768066,44.15528488159191],[5.415833950042781,44.15465164184576],[5.447570800781307,44.136756896972656],[5.454716682434081,44.11922836303722],[5.498787879943961,44.11571884155279]]],[[[4.988609790802059,44.42319869995123],[5.018616676330623,44.39258956909179],[5.070319652557373,44.37644577026373],[5.025059223175048,44.3610000610351],[5.013334751129207,44.32565307617193],[4.979967594146729,44.297248840332145],[4.921835899353026,44.30879592895519],[4.889462947845459,44.30401992797863],[4.869526863098145,44.345077514648494],[4.907084941864127,44.37462997436535],[4.918515205383301,44.40778350830078],[4.988609790802059,44.42319869995123]]]]},"properties":{"ID_0":79,"ISO":"FR-84","NAME_0":"France","ID_1":21,"NAME_1":"Provence-Alpes-Côte d'Azur","ID_2":88,"NAME_2":"Vaucluse","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.310561180114746,46.44677352905285],[5.321727275848502,46.42895507812494],[5.309145927429256,46.41025543212885],[5.348115921020621,46.399417877197315],[5.377880573272705,46.38232421875006],[5.373462200164738,46.352237701416016],[5.400996208191032,46.339298248291065],[5.42353439331049,46.34773254394531],[5.437145709991569,46.31512832641613],[5.475304603576774,46.31538391113287],[5.45767164230341,46.276847839355526],[5.475361824035701,46.2652206420899],[5.539301395416317,46.26890182495123],[5.564674377441463,46.29276657104498],[5.597891330718994,46.2978973388673],[5.612518310546875,46.326557159423885],[5.649797916412467,46.334190368652344],[5.684582233428955,46.31093215942394],[5.714552879333552,46.30807113647472],[5.725181102752742,46.26069259643555],[5.766045093536434,46.268329620361385],[5.850658416748047,46.26169967651373],[5.909197807312069,46.283943176269645],[5.918933391571159,46.30929565429693],[5.941530704498347,46.30926513671881],[5.984117031097526,46.36265563964849],[6.031020164489973,46.38809967041027],[6.064008712768612,46.41622543334972],[6.097525596618652,46.40828323364257],[6.168451309204214,46.36745834350586],[6.102365970611685,46.28484725952143],[6.122535228729362,46.25333786010753],[6.034514427185172,46.23723983764654],[5.963675975799674,46.196968078613395],[5.993235588073674,46.18482208251953],[5.956063270568847,46.13208770751959],[5.92040300369274,46.13103866577154],[5.886226654052848,46.109619140625114],[5.889992713928336,46.08715057373041],[5.855986595153922,46.08666992187506],[5.838211536407414,46.1025505065918],[5.811419010162354,46.07843017578125],[5.80699634552002,46.043830871582145],[5.812287807464543,45.986652374267635],[5.834025859832877,45.97202682495128],[5.83122634887701,45.93846130371099],[5.829400539398307,45.91398620605468],[5.795850276947021,45.82979965209961],[5.786934375762939,45.823223114013786],[5.776365756988469,45.72792053222662],[5.748939037322998,45.70546340942383],[5.700599193573054,45.70994567871094],[5.709198951721191,45.68492889404297],[5.685640335083065,45.66701126098644],[5.687900543212834,45.643962860107536],[5.652817726135311,45.636680603027344],[5.623747825622559,45.613269805908146],[5.60193586349493,45.65261459350586],[5.545290470123234,45.68774032592779],[5.545541763305778,45.71359252929693],[5.483998298645133,45.7532844543457],[5.422512531280518,45.807125091552734],[5.433657646179199,45.83230209350586],[5.404377460479679,45.856876373291016],[5.354928493499756,45.88278198242193],[5.302490711212158,45.848133087158196],[5.290626525878963,45.81418609619152],[5.266894817352295,45.789367675781364],[5.224333763122559,45.76884078979498],[5.19101524353033,45.77194976806646],[5.157854080200195,45.80321884155285],[5.101067543029899,45.81337738037115],[5.0166916847229,45.805610656738395],[4.963685512542838,45.81087875366205],[4.923799037933463,45.80400085449224],[4.921115875244254,45.83274459838873],[4.883826732635555,45.87999343872076],[4.880698680877629,45.897171020507926],[4.849115371704158,45.91286849975597],[4.805177211761588,45.89632797241205],[4.807760238647461,45.92080688476574],[4.777994155883903,45.9378395080567],[4.731370449066276,45.941318511963004],[4.754611492157039,45.973812103271484],[4.739616394043082,46.04748535156244],[4.761754512786922,46.067436218261776],[4.748022556304988,46.09135818481451],[4.795944213867188,46.139156341552734],[4.802549839019832,46.15643692016612],[4.780213356018123,46.176677703857536],[4.810817241668701,46.25454711914068],[4.851423263549804,46.32607650756836],[4.858530044555607,46.36801528930658],[4.888207912445068,46.40298080444336],[4.894443511962834,46.44537353515625],[4.914447784423942,46.46216201782232],[4.915284633636475,46.488235473632926],[4.935598850250187,46.51422882080078],[4.95371055603033,46.504112243652344],[4.980215549469108,46.51520538330078],[5.054751396179256,46.48427963256841],[5.141041755676383,46.508586883544865],[5.201220512390194,46.50782012939458],[5.215064048767147,46.46836090087896],[5.273676872253474,46.44858932495123],[5.310561180114746,46.44677352905285]]]},"properties":{"ID_0":79,"ISO":"FR-01","NAME_0":"France","ID_1":22,"NAME_1":"Rhône-Alpes","ID_2":89,"NAME_2":"Ain","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.800493717193604,45.29835891723644],[4.809488773345947,45.28768539428705],[4.801633834838867,45.24599456787121],[4.812208652496337,45.204952239990234],[4.811837196350098,45.16525650024414],[4.828574657440299,45.154239654541016],[4.804038524627686,45.122467041015625],[4.829596996307372,45.09800338745123],[4.829155445098934,45.0728492736817],[4.860745906829891,45.05542755126964],[4.841948032379094,45.037910461425895],[4.83670806884777,45.00751113891601],[4.860489845275936,44.96554946899414],[4.886589527130241,44.93665313720703],[4.854323863983267,44.89652252197271],[4.86128139495861,44.87822341918945],[4.823316097259577,44.8394889831543],[4.821485042572134,44.817382812500114],[4.761039733886719,44.77121734619152],[4.764220237732047,44.71502685546875],[4.781589984893912,44.67884445190441],[4.779072761535588,44.65469741821289],[4.740404605865479,44.60239410400396],[4.710872173309325,44.58200073242193],[4.692446231842097,44.54651641845709],[4.706587791442985,44.53407287597662],[4.6894149780274,44.49234771728521],[4.699537277221793,44.480083465576286],[4.695289134979362,44.445796966552734],[4.667106628418026,44.429912567138786],[4.664373397827204,44.398944854736385],[4.649064540863037,44.373073577880966],[4.650615215301514,44.329807281494254],[4.649223804473877,44.27035903930664],[4.632679462432861,44.28499221801752],[4.557167530059871,44.30416870117182],[4.545630931854248,44.31970977783209],[4.506097316742057,44.340251922607536],[4.451067924499569,44.33409500122075],[4.448757171630858,44.29671096801763],[4.403570175170898,44.288177490234375],[4.391594409942684,44.304759979248104],[4.402346611022948,44.3350067138673],[4.325771331787165,44.33832550048828],[4.318097591400203,44.321750640869254],[4.28837442398077,44.315017700195426],[4.288995742797795,44.29214477539057],[4.27377271652216,44.27175140380859],[4.245138168335018,44.268074035644645],[4.216383934021053,44.28903961181652],[4.186579227447567,44.29973602294933],[4.177990436553955,44.31774139404297],[4.142867565155086,44.31335067749029],[4.126751899719181,44.337734222412166],[4.073842048645075,44.32902526855469],[4.051451683044546,44.31732177734369],[4.057089328765869,44.36414337158208],[4.042393207550049,44.394073486328175],[4.06843996047985,44.40505981445306],[4.037812709808406,44.420917510986385],[4.045418739318848,44.43349456787109],[3.998162984848079,44.45979690551763],[3.986860036850089,44.502166748046875],[3.948773860931396,44.572887420654354],[3.923566818237361,44.571884155273494],[3.894139766693229,44.61528778076172],[3.89477801322937,44.64996337890619],[3.871647119522095,44.6793365478515],[3.862527370452937,44.743873596191406],[3.876486539840811,44.756801605224666],[3.924917936325187,44.769622802734375],[3.945542573928833,44.82434463500988],[3.998603105545101,44.82357406616222],[4.038909912109375,44.872764587402344],[4.069305419921932,44.867694854736264],[4.108429431915226,44.87793350219738],[4.156636714935303,44.87397766113287],[4.179478645324764,44.886512756347656],[4.184321403503418,44.90832519531256],[4.216572284698543,44.93357849121105],[4.223854541778564,44.9628791809082],[4.256587028503531,44.95987701416027],[4.314365386963003,44.97316741943365],[4.291110038757438,44.99732971191406],[4.318085670471248,45.029933929443416],[4.351543426513729,45.02766036987315],[4.379067897796745,45.03617477416992],[4.378729820251579,45.05286407470703],[4.347736835479736,45.06525039672862],[4.359231948852539,45.09957122802734],[4.39713716506958,45.105236053466854],[4.372570514678955,45.12807464599615],[4.376558780670223,45.144359588623104],[4.411158561706543,45.1408309936524],[4.438930988311768,45.12035751342785],[4.448111057281494,45.161960601806754],[4.472579002380485,45.17989349365234],[4.483134746551514,45.236446380615234],[4.536259651184025,45.236820220947266],[4.605315208435172,45.25339889526367],[4.591348171234245,45.27288436889654],[4.615798950195368,45.31026077270508],[4.680130004882926,45.34626388549805],[4.755997180938721,45.365680694580185],[4.772551536560115,45.35429763793945],[4.762214183807487,45.32355117797845],[4.800493717193604,45.29835891723644]]]},"properties":{"ID_0":79,"ISO":"FR-07","NAME_0":"France","ID_1":22,"NAME_1":"Rhône-Alpes","ID_2":90,"NAME_2":"Ardèche","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.801469802856558,44.70677947998058],[5.829958438873348,44.69124221801769],[5.801016807556266,44.67482757568359],[5.790620326995906,44.65329742431646],[5.753769397735595,44.66053009033209],[5.725504875183105,44.64008712768565],[5.683495044708366,44.64997863769531],[5.641715526580924,44.65108489990246],[5.649461746215934,44.619380950927734],[5.60714769363409,44.56835174560546],[5.597249031066951,44.54327392578131],[5.627653121948356,44.53435897827154],[5.664504051208439,44.50189590454101],[5.633187770843449,44.50209808349621],[5.603636741638297,44.4654998779298],[5.51102972030634,44.49150848388672],[5.457842826843204,44.49815368652344],[5.47272253036499,44.420932769775504],[5.438582420349177,44.4335556030274],[5.432839393615722,44.41166305541992],[5.442621707916373,44.381267547607536],[5.492944240570181,44.33713531494152],[5.521000862121695,44.34923171997081],[5.539977550506649,44.332420349121094],[5.615752220153865,44.33240127563482],[5.613215923309269,44.31577301025401],[5.640211582183838,44.293701171875],[5.646781444549617,44.26708984375006],[5.68665266036993,44.26607131958019],[5.672644138336182,44.24567031860363],[5.681132793426514,44.23069381713867],[5.676037311553955,44.191432952880916],[5.65159273147583,44.1895751953125],[5.645830154419059,44.167446136474716],[5.682728290557861,44.163486480713004],[5.678605556488036,44.146099090576286],[5.631136417388916,44.150577545166016],[5.63879489898693,44.166282653808594],[5.609326362609976,44.19070816040045],[5.575815677642822,44.18619537353521],[5.542145729064941,44.13326263427729],[5.498787879943961,44.11571884155279],[5.454716682434081,44.11922836303722],[5.447570800781307,44.136756896972656],[5.415833950042781,44.15465164184576],[5.383240699768066,44.15528488159191],[5.384529113769474,44.201190948486385],[5.355790138244628,44.213600158691406],[5.335726261138916,44.20431137084955],[5.303624153137207,44.20879745483404],[5.256508827209529,44.23005676269537],[5.23814964294445,44.213233947753906],[5.175606250762939,44.220867156982536],[5.161547660827694,44.24559020996105],[5.149529457092399,44.30068206787121],[5.109547138214111,44.280548095703125],[5.076511859893742,44.28408432006836],[5.06056451797491,44.30813980102539],[4.989594459533691,44.28576660156256],[4.932910442352294,44.26215362548839],[4.880250453949031,44.26176834106445],[4.825341701507625,44.22844696044916],[4.813448429107666,44.23242568969732],[4.803998470306396,44.26920700073242],[4.804563522338924,44.30389785766601],[4.762995243072567,44.32509994506836],[4.679883956909293,44.32069396972662],[4.650615215301514,44.329807281494254],[4.649064540863037,44.373073577880966],[4.664373397827204,44.398944854736385],[4.667106628418026,44.429912567138786],[4.695289134979362,44.445796966552734],[4.699537277221793,44.480083465576286],[4.6894149780274,44.49234771728521],[4.706587791442985,44.53407287597662],[4.692446231842097,44.54651641845709],[4.710872173309325,44.58200073242193],[4.740404605865479,44.60239410400396],[4.779072761535588,44.65469741821289],[4.781589984893912,44.67884445190441],[4.764220237732047,44.71502685546875],[4.761039733886719,44.77121734619152],[4.821485042572134,44.817382812500114],[4.823316097259577,44.8394889831543],[4.86128139495861,44.87822341918945],[4.854323863983267,44.89652252197271],[4.886589527130241,44.93665313720703],[4.860489845275936,44.96554946899414],[4.83670806884777,45.00751113891601],[4.841948032379094,45.037910461425895],[4.860745906829891,45.05542755126964],[4.829155445098934,45.0728492736817],[4.829596996307372,45.09800338745123],[4.804038524627686,45.122467041015625],[4.828574657440299,45.154239654541016],[4.811837196350098,45.16525650024414],[4.812208652496337,45.204952239990234],[4.801633834838867,45.24599456787121],[4.809488773345947,45.28768539428705],[4.800493717193604,45.29835891723644],[4.858798980712891,45.308952331542905],[4.878778934478817,45.29771423339844],[4.928178310394401,45.322731018066406],[4.990147113800049,45.343986511230526],[5.009652137756404,45.34223175048834],[5.020647048950309,45.319290161132805],[5.05279731750494,45.31899261474615],[5.073565959930534,45.283229827880916],[5.130630970001221,45.283676147460994],[5.122195243835449,45.245437622070256],[5.176540851593074,45.248401641845646],[5.184099197387809,45.23268127441406],[5.165579795837402,45.20027160644531],[5.188450813293457,45.17073822021484],[5.186889171600341,45.120128631591854],[5.156072139739933,45.08279037475597],[5.224169254303034,45.07991409301763],[5.246537208557186,45.060726165771484],[5.304002761840877,45.06085968017578],[5.384094715118408,45.03598022460949],[5.435974597930908,45.05687332153332],[5.463950157165584,45.08692932128917],[5.486388206481934,45.08078384399414],[5.465229034423885,45.04354476928705],[5.493060111999569,44.99541473388672],[5.477674961090031,44.966762542724666],[5.483564853668327,44.92301177978521],[5.460225105285644,44.79994583129894],[5.482028007507438,44.78658676147472],[5.62631464004528,44.753292083740234],[5.647101879119873,44.72409820556646],[5.695883274078369,44.72216415405268],[5.736359596252498,44.71266937255871],[5.755311489105225,44.69696426391613],[5.801469802856558,44.70677947998058]],[[4.988609790802059,44.42319869995123],[4.918515205383301,44.40778350830078],[4.907084941864127,44.37462997436535],[4.869526863098145,44.345077514648494],[4.889462947845459,44.30401992797863],[4.921835899353026,44.30879592895519],[4.979967594146729,44.297248840332145],[5.013334751129207,44.32565307617193],[5.025059223175048,44.3610000610351],[5.070319652557373,44.37644577026373],[5.018616676330623,44.39258956909179],[4.988609790802059,44.42319869995123]]]},"properties":{"ID_0":79,"ISO":"FR-26","NAME_0":"France","ID_1":22,"NAME_1":"Rhône-Alpes","ID_2":91,"NAME_2":"Drôme","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.815085887909049,45.782726287841854],[6.757664680481014,45.76716232299816],[6.711951255798396,45.72291946411144],[6.688257217407169,45.771331787109375],[6.659354686737061,45.80015563964844],[6.601684570312557,45.79507064819336],[6.552718639373779,45.82634353637695],[6.535326957702637,45.861980438232536],[6.568191051483154,45.862422943115234],[6.55658149719244,45.89325714111334],[6.511064529418888,45.90905761718749],[6.471837997436637,45.88429260253911],[6.449741363525391,45.83953094482433],[6.424559116363582,45.80385589599621],[6.363309383392391,45.76795196533209],[6.37044191360485,45.752933502197266],[6.327378273010254,45.69291305541998],[6.229750156402587,45.68270874023443],[6.231654167175236,45.70275878906256],[6.189934253692627,45.70083999633788],[6.195548057556152,45.73233032226574],[6.166234493255615,45.75572586059582],[6.103134155273494,45.763442993164176],[6.096132755279484,45.74282073974621],[6.055079936981258,45.74919509887701],[6.042253017425594,45.739257812499936],[5.974032878875846,45.76868820190441],[5.980550289154109,45.79617309570318],[5.962785243987979,45.81273651123047],[5.913952350616512,45.80405807495117],[5.903835773468074,45.82555770874018],[5.873541831970328,45.83560562133795],[5.87608718872076,45.863410949707145],[5.862101554870662,45.932403564453175],[5.83122634887701,45.93846130371099],[5.834025859832877,45.97202682495128],[5.812287807464543,45.986652374267635],[5.80699634552002,46.043830871582145],[5.811419010162354,46.07843017578125],[5.838211536407414,46.1025505065918],[5.855986595153922,46.08666992187506],[5.889992713928336,46.08715057373041],[5.886226654052848,46.109619140625114],[5.92040300369274,46.13103866577154],[5.956063270568847,46.13208770751959],[5.993515014648551,46.14384841918957],[6.035353660583496,46.13616180419933],[6.057043552398909,46.15111541748047],[6.135412216186467,46.14132690429682],[6.175299167633284,46.158260345458984],[6.186107635498047,46.17821884155285],[6.233842372894286,46.206005096435604],[6.294470787048454,46.22492980957031],[6.309154033661002,46.24249267578131],[6.29491662979126,46.257812500000114],[6.269220352172851,46.24852371215826],[6.238822460174617,46.275321960449276],[6.244160652160645,46.30564117431646],[6.221569061279239,46.31297683715826],[6.255169868469181,46.3632431030274],[6.339828968048209,46.40638732910167],[6.430902004241943,46.41790771484375],[6.523421764373836,46.456981658935604],[6.679306983947753,46.45704269409191],[6.79459381103527,46.435905456543026],[6.822751998901424,46.42345046997076],[6.806129455566406,46.38004302978521],[6.771278381347713,46.360141754150504],[6.80113601684593,46.32103347778332],[6.868747234344539,46.28544998168945],[6.858451843261946,46.25509643554693],[6.826121807098389,46.23337936401367],[6.810001850128231,46.20679473876953],[6.819441795349121,46.185001373291065],[6.799829006195124,46.16807937622082],[6.802502155303955,46.141365051269524],[6.821975231170768,46.132961273193416],[6.906120777130241,46.12699127197276],[6.891025066375789,46.09749221801769],[6.893345832824821,46.04592132568371],[6.929442882537842,46.06719589233409],[7.010742187499943,45.99836730957037],[7.020212173461971,45.96450042724621],[7.046276092529411,45.95524978637707],[7.042049407959041,45.9247665405274],[7.013140201568716,45.905361175537166],[7.011149883270263,45.88225936889648],[6.953404426574821,45.859390258789176],[6.937724590301514,45.847499847412045],[6.890570163726863,45.83705902099621],[6.876675128936768,45.82396316528326],[6.820878982543945,45.82686996459972],[6.815085887909049,45.782726287841854]]]},"properties":{"ID_0":79,"ISO":"FR-74","NAME_0":"France","ID_1":22,"NAME_1":"Rhône-Alpes","ID_2":92,"NAME_2":"Haute-Savoie","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.623747825622559,45.613269805908146],[5.646908760070744,45.57701873779302],[5.671145439147949,45.56132888793951],[5.671341419219971,45.53664398193371],[5.701046943664664,45.51768875122082],[5.719743728637695,45.483394622802734],[5.736530780792293,45.47185897827154],[5.739987850189266,45.4375839233399],[5.782462120056209,45.441104888916016],[5.81136083602911,45.42538070678722],[5.854303359985465,45.41591644287121],[5.910889625549373,45.3941535949707],[5.904454708099479,45.43230819702148],[5.920588970184383,45.444412231445305],[5.915370464324951,45.47644805908203],[5.971014976501408,45.49139785766596],[6.009026527404727,45.471992492675895],[6.007789134979248,45.454109191894474],[6.049235820770207,45.437808990478516],[6.090015888214225,45.444007873535156],[6.130142688751448,45.43502807617182],[6.14602518081665,45.413288116455135],[6.175457954406738,45.3941001892091],[6.194759368896541,45.352249145507756],[6.184450626373291,45.31795883178722],[6.157779693603572,45.31231689453131],[6.13081502914423,45.28453445434576],[6.1394362449646,45.25833892822271],[6.125696659088078,45.24427032470714],[6.139679908752384,45.21305847167969],[6.161919116973877,45.18840789794916],[6.143790245056265,45.15456008911127],[6.180992126464957,45.16485977172846],[6.222061634063778,45.142585754394645],[6.244863033294735,45.14864730834955],[6.26056623458868,45.12684631347656],[6.229263305664175,45.10680770874029],[6.24328517913824,45.06995010375982],[6.220080375671387,45.06536865234386],[6.203137874603328,45.01244735717784],[6.256173133850211,44.99621963500988],[6.298856258392391,45.00371170043945],[6.330079555511587,44.94776535034191],[6.358172416687011,44.9415740966798],[6.355364322662354,44.854824066162166],[6.336318969726562,44.848369598388786],[6.304352760314997,44.87279129028332],[6.267095088958683,44.86909103393555],[6.248866558075008,44.852558135986385],[6.196382045745963,44.85897827148448],[6.16965913772583,44.852390289306754],[6.130448818206787,44.86251449584972],[6.113150596618652,44.84553146362316],[6.056502342224121,44.81581497192377],[6.030210494995174,44.838096618652344],[6.003416061401309,44.820354461670036],[5.949519157409782,44.80453109741222],[5.980273246765079,44.781185150146534],[5.919571876525822,44.75278854370123],[5.885456085205192,44.747287750244254],[5.847985744476318,44.75152587890631],[5.829360961914062,44.742435455322266],[5.801469802856558,44.70677947998058],[5.755311489105225,44.69696426391613],[5.736359596252498,44.71266937255871],[5.695883274078369,44.72216415405268],[5.647101879119873,44.72409820556646],[5.62631464004528,44.753292083740234],[5.482028007507438,44.78658676147472],[5.460225105285644,44.79994583129894],[5.483564853668327,44.92301177978521],[5.477674961090031,44.966762542724666],[5.493060111999569,44.99541473388672],[5.465229034423885,45.04354476928705],[5.486388206481934,45.08078384399414],[5.463950157165584,45.08692932128917],[5.435974597930908,45.05687332153332],[5.384094715118408,45.03598022460949],[5.304002761840877,45.06085968017578],[5.246537208557186,45.060726165771484],[5.224169254303034,45.07991409301763],[5.156072139739933,45.08279037475597],[5.186889171600341,45.120128631591854],[5.188450813293457,45.17073822021484],[5.165579795837402,45.20027160644531],[5.184099197387809,45.23268127441406],[5.176540851593074,45.248401641845646],[5.122195243835449,45.245437622070256],[5.130630970001221,45.283676147460994],[5.073565959930534,45.283229827880916],[5.05279731750494,45.31899261474615],[5.020647048950309,45.319290161132805],[5.009652137756404,45.34223175048834],[4.990147113800049,45.343986511230526],[4.928178310394401,45.322731018066406],[4.878778934478817,45.29771423339844],[4.858798980712891,45.308952331542905],[4.800493717193604,45.29835891723644],[4.762214183807487,45.32355117797845],[4.772551536560115,45.35429763793945],[4.755997180938721,45.365680694580185],[4.758847713470516,45.38472366333019],[4.743145942688045,45.42041778564459],[4.759953498840445,45.43260192871094],[4.756935596466008,45.45570755004894],[4.841455936431998,45.50060272216808],[4.871813774108943,45.527637481689396],[4.836540222168082,45.54481887817383],[4.808442115783748,45.57234954833995],[4.810817718505916,45.58972167968744],[4.857585906982536,45.57651901245117],[4.859784603118952,45.5908317565918],[4.908274173736572,45.606700897216854],[4.971545219421444,45.6129264831543],[5.002822399139404,45.62247085571289],[5.034142017364559,45.613990783691406],[5.054024696350098,45.66005706787121],[5.14898777008068,45.70448684692382],[5.126679897308406,45.73755264282232],[5.094526767730713,45.739452362060604],[5.090734958648682,45.78715896606451],[5.101067543029899,45.81337738037115],[5.157854080200195,45.80321884155285],[5.19101524353033,45.77194976806646],[5.224333763122559,45.76884078979498],[5.266894817352295,45.789367675781364],[5.290626525878963,45.81418609619152],[5.302490711212158,45.848133087158196],[5.354928493499756,45.88278198242193],[5.404377460479679,45.856876373291016],[5.433657646179199,45.83230209350586],[5.422512531280518,45.807125091552734],[5.483998298645133,45.7532844543457],[5.545541763305778,45.71359252929693],[5.545290470123234,45.68774032592779],[5.60193586349493,45.65261459350586],[5.623747825622559,45.613269805908146]]]},"properties":{"ID_0":79,"ISO":"FR-38","NAME_0":"France","ID_1":22,"NAME_1":"Rhône-Alpes","ID_2":93,"NAME_2":"Isère","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.388079643249511,46.21978759765631],[4.422965049743766,46.203136444091854],[4.406357765197811,46.182243347168026],[4.438591003418026,46.167877197265625],[4.417361736297607,46.13592147827148],[4.381809234619141,46.149662017822266],[4.322115898132381,46.129981994628956],[4.309294700622672,46.110000610351676],[4.310406684875602,46.081718444824276],[4.261271476745662,46.03685760498046],[4.31200742721569,46.005130767822315],[4.248043060302678,45.98672485351568],[4.288822650909424,45.97317123413097],[4.31198883056652,45.94200515747076],[4.346019744873161,45.9299430847168],[4.323220729827824,45.903888702392635],[4.383083343505803,45.84597015380864],[4.376449584961051,45.78410720825201],[4.349101543426571,45.77117156982422],[4.359160900116024,45.751102447509815],[4.390676498413143,45.755077362060604],[4.384784221649227,45.72118759155285],[4.365516185760441,45.698520660400504],[4.365920066833553,45.671154022216854],[4.392550468444938,45.66247940063471],[4.410284042358455,45.63204956054699],[4.441488742828426,45.62305450439464],[4.449876785278376,45.605644226074276],[4.50352239608776,45.58617019653332],[4.521578788757324,45.57293319702154],[4.570599555969181,45.58225631713873],[4.587110519409237,45.570720672607536],[4.614858150482235,45.575477600097656],[4.636002540588436,45.54795455932623],[4.675755500793457,45.568840026855526],[4.68749904632574,45.55820846557617],[4.650785923004264,45.52998352050792],[4.654163837432975,45.487693786621094],[4.699997425079403,45.478237152099545],[4.721827507019043,45.49439620971691],[4.756935596466008,45.45570755004894],[4.759953498840445,45.43260192871094],[4.743145942688045,45.42041778564459],[4.758847713470516,45.38472366333019],[4.755997180938721,45.365680694580185],[4.680130004882926,45.34626388549805],[4.615798950195368,45.31026077270508],[4.591348171234245,45.27288436889654],[4.605315208435172,45.25339889526367],[4.536259651184025,45.236820220947266],[4.483134746551514,45.236446380615234],[4.419654846191406,45.275402069091854],[4.371186256408635,45.259887695312614],[4.350182533264274,45.27770233154297],[4.366258144378719,45.30128097534179],[4.331653118133659,45.31847763061529],[4.363379478454589,45.3374862670899],[4.348395824432373,45.36045837402338],[4.308199405670165,45.37098693847656],[4.27163124084484,45.35976409912114],[4.244341373443604,45.385276794433594],[4.200926303863525,45.382228851318416],[4.180821418762263,45.39170074462902],[4.144443035125788,45.384109497070256],[4.120395183563232,45.36837768554693],[4.080170631408691,45.35552597045904],[4.045380592346305,45.355667114257926],[4.02343225479126,45.34497070312511],[3.992932558059692,45.356170654296925],[3.978267669677791,45.37569427490246],[3.938752412796077,45.3713951110841],[3.918387413024902,45.35436630249029],[3.897408485412597,45.35708236694347],[3.890368223190308,45.39366531372076],[3.898540496826229,45.40981674194336],[3.975105762481633,45.44826889038097],[3.967553377151546,45.471549987793026],[3.985629320144654,45.4861793518067],[3.96567702293396,45.50056457519537],[3.946430206298942,45.54340362548828],[3.95447421073925,45.555828094482536],[3.908086538314933,45.5966911315918],[3.881631135940552,45.60369110107421],[3.856866359710807,45.625],[3.823924064636287,45.63214492797862],[3.777585029602051,45.690567016601676],[3.782380342483634,45.71165084838878],[3.755838155746403,45.74660873413086],[3.727105855941772,45.75557708740239],[3.728468418121337,45.7760124206543],[3.70039343833929,45.78355407714844],[3.72689151763916,45.83026885986328],[3.71912407875061,45.85006713867182],[3.754370689392147,45.886032104492244],[3.721349954605103,45.922744750976506],[3.693891525268611,45.93095779418951],[3.709611654281673,45.97414016723627],[3.742071390152091,45.96669006347661],[3.781713008880672,45.97279357910162],[3.823220252990723,45.98815917968744],[3.827341794967765,46.000213623046875],[3.805605649948233,46.053062438964844],[3.821294069290161,46.090240478515625],[3.802830457687321,46.11013793945318],[3.791627168655396,46.15658569335932],[3.794089078903311,46.20851135253906],[3.773352622985953,46.22718811035156],[3.80270004272461,46.238510131835994],[3.807686805725154,46.2572135925293],[3.868897676467895,46.26366043090832],[3.899533510208187,46.27591323852539],[3.908760309219417,46.2606239318847],[3.890132427215576,46.2144889831543],[3.917106151580754,46.203884124755916],[3.965168237686214,46.202865600585994],[3.988528490066528,46.169857025146484],[4.027487754821777,46.169593811035156],[4.059972286224365,46.18845748901373],[4.103832244873161,46.19844436645502],[4.133393287658691,46.177322387695426],[4.1781325340271,46.17368698120117],[4.20621538162237,46.19449234008789],[4.224992752075252,46.177631378173935],[4.245367527008057,46.18822479248058],[4.28243160247814,46.156814575195305],[4.326642513275203,46.18489456176769],[4.363353252410889,46.19856262207031],[4.388079643249511,46.21978759765631]]]},"properties":{"ID_0":79,"ISO":"FR-42","NAME_0":"France","ID_1":22,"NAME_1":"Rhône-Alpes","ID_2":94,"NAME_2":"Loire","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.780213356018123,46.176677703857536],[4.802549839019832,46.15643692016612],[4.795944213867188,46.139156341552734],[4.748022556304988,46.09135818481451],[4.761754512786922,46.067436218261776],[4.739616394043082,46.04748535156244],[4.754611492157039,45.973812103271484],[4.731370449066276,45.941318511963004],[4.777994155883903,45.9378395080567],[4.807760238647461,45.92080688476574],[4.805177211761588,45.89632797241205],[4.849115371704158,45.91286849975597],[4.880698680877629,45.897171020507926],[4.883826732635555,45.87999343872076],[4.921115875244254,45.83274459838873],[4.923799037933463,45.80400085449224],[4.963685512542838,45.81087875366205],[5.0166916847229,45.805610656738395],[5.101067543029899,45.81337738037115],[5.090734958648682,45.78715896606451],[5.094526767730713,45.739452362060604],[5.126679897308406,45.73755264282232],[5.14898777008068,45.70448684692382],[5.054024696350098,45.66005706787121],[5.034142017364559,45.613990783691406],[5.002822399139404,45.62247085571289],[4.971545219421444,45.6129264831543],[4.908274173736572,45.606700897216854],[4.859784603118952,45.5908317565918],[4.857585906982536,45.57651901245117],[4.810817718505916,45.58972167968744],[4.808442115783748,45.57234954833995],[4.836540222168082,45.54481887817383],[4.871813774108943,45.527637481689396],[4.841455936431998,45.50060272216808],[4.756935596466008,45.45570755004894],[4.721827507019043,45.49439620971691],[4.699997425079403,45.478237152099545],[4.654163837432975,45.487693786621094],[4.650785923004264,45.52998352050792],[4.68749904632574,45.55820846557617],[4.675755500793457,45.568840026855526],[4.636002540588436,45.54795455932623],[4.614858150482235,45.575477600097656],[4.587110519409237,45.570720672607536],[4.570599555969181,45.58225631713873],[4.521578788757324,45.57293319702154],[4.50352239608776,45.58617019653332],[4.449876785278376,45.605644226074276],[4.441488742828426,45.62305450439464],[4.410284042358455,45.63204956054699],[4.392550468444938,45.66247940063471],[4.365920066833553,45.671154022216854],[4.365516185760441,45.698520660400504],[4.384784221649227,45.72118759155285],[4.390676498413143,45.755077362060604],[4.359160900116024,45.751102447509815],[4.349101543426571,45.77117156982422],[4.376449584961051,45.78410720825201],[4.383083343505803,45.84597015380864],[4.323220729827824,45.903888702392635],[4.346019744873161,45.9299430847168],[4.31198883056652,45.94200515747076],[4.288822650909424,45.97317123413097],[4.248043060302678,45.98672485351568],[4.31200742721569,46.005130767822315],[4.261271476745662,46.03685760498046],[4.310406684875602,46.081718444824276],[4.309294700622672,46.110000610351676],[4.322115898132381,46.129981994628956],[4.381809234619141,46.149662017822266],[4.417361736297607,46.13592147827148],[4.438591003418026,46.167877197265625],[4.406357765197811,46.182243347168026],[4.422965049743766,46.203136444091854],[4.388079643249511,46.21978759765631],[4.398757457733154,46.28432083129883],[4.435655593872184,46.29940795898449],[4.488464355468693,46.28799438476557],[4.504000663757324,46.26713943481445],[4.537996292114315,46.27025985717779],[4.557791709899959,46.29455184936535],[4.586510658264274,46.268692016601676],[4.617019176483211,46.280620574951286],[4.638724803924617,46.30142211914068],[4.679780006408805,46.30451583862305],[4.707479953765812,46.28470611572277],[4.705231189727897,46.25087356567394],[4.736181259155217,46.2332000732423],[4.721488475799561,46.19683837890625],[4.729059219360351,46.1794319152832],[4.780213356018123,46.176677703857536]]]},"properties":{"ID_0":79,"ISO":"FR-69","NAME_0":"France","ID_1":22,"NAME_1":"Rhône-Alpes","ID_2":95,"NAME_2":"Rhône","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.815085887909049,45.782726287841854],[6.812168121337947,45.76046371459972],[6.824276924133414,45.72187042236339],[6.867073059082145,45.6840705871582],[6.906761169433707,45.67847061157237],[6.925970077514762,45.65248107910156],[6.967870235443115,45.6544799804688],[7.011849880218506,45.64838027954101],[6.985504627227783,45.62044143676763],[6.991879463195857,45.5562629699707],[7.006451129913387,45.51078033447265],[7.053841114044246,45.499980926513615],[7.057041168212891,45.47848129272461],[7.092838764190731,45.47478103637706],[7.121641159057731,45.43748092651367],[7.17893981933605,45.413188934326115],[7.185120105743522,45.403694152832145],[7.113151073455867,45.32199096679687],[7.135251522064266,45.281803131103516],[7.135106086731014,45.2545623779298],[7.111395359039363,45.244632720947266],[7.066401004791203,45.211341857910156],[7.051180362701416,45.22534179687506],[6.97625112533575,45.208278656005916],[6.953864097595329,45.175800323486385],[6.900860786437988,45.164310455322266],[6.894535064697265,45.13985824584972],[6.854263782501221,45.1286239624024],[6.802184581756591,45.15087509155285],[6.772772789001521,45.15430450439453],[6.745872974395866,45.13870239257818],[6.690576076507682,45.13850021362316],[6.672187805175724,45.12250137329113],[6.632041454315186,45.10973739624018],[6.613530158996696,45.12095642089844],[6.576530933380241,45.12309646606445],[6.535192966461238,45.0989723205567],[6.510423183441162,45.109001159668026],[6.481724739074821,45.09045410156256],[6.487082004547119,45.05640792846685],[6.45312404632574,45.052371978759766],[6.434869766235408,45.06299591064459],[6.396887779235954,45.061988830566406],[6.365100383758545,45.10198593139654],[6.334232807159424,45.122940063476676],[6.293342113494872,45.10863494873058],[6.26056623458868,45.12684631347656],[6.244863033294735,45.14864730834955],[6.222061634063778,45.142585754394645],[6.180992126464957,45.16485977172846],[6.143790245056265,45.15456008911127],[6.161919116973877,45.18840789794916],[6.139679908752384,45.21305847167969],[6.125696659088078,45.24427032470714],[6.1394362449646,45.25833892822271],[6.13081502914423,45.28453445434576],[6.157779693603572,45.31231689453131],[6.184450626373291,45.31795883178722],[6.194759368896541,45.352249145507756],[6.175457954406738,45.3941001892091],[6.14602518081665,45.413288116455135],[6.130142688751448,45.43502807617182],[6.090015888214225,45.444007873535156],[6.049235820770207,45.437808990478516],[6.007789134979248,45.454109191894474],[6.009026527404727,45.471992492675895],[5.971014976501408,45.49139785766596],[5.915370464324951,45.47644805908203],[5.920588970184383,45.444412231445305],[5.904454708099479,45.43230819702148],[5.910889625549373,45.3941535949707],[5.854303359985465,45.41591644287121],[5.81136083602911,45.42538070678722],[5.782462120056209,45.441104888916016],[5.739987850189266,45.4375839233399],[5.736530780792293,45.47185897827154],[5.719743728637695,45.483394622802734],[5.701046943664664,45.51768875122082],[5.671341419219971,45.53664398193371],[5.671145439147949,45.56132888793951],[5.646908760070744,45.57701873779302],[5.623747825622559,45.613269805908146],[5.652817726135311,45.636680603027344],[5.687900543212834,45.643962860107536],[5.685640335083065,45.66701126098644],[5.709198951721191,45.68492889404297],[5.700599193573054,45.70994567871094],[5.748939037322998,45.70546340942383],[5.776365756988469,45.72792053222662],[5.786934375762939,45.823223114013786],[5.795850276947021,45.82979965209961],[5.829400539398307,45.91398620605468],[5.83122634887701,45.93846130371099],[5.862101554870662,45.932403564453175],[5.87608718872076,45.863410949707145],[5.873541831970328,45.83560562133795],[5.903835773468074,45.82555770874018],[5.913952350616512,45.80405807495117],[5.962785243987979,45.81273651123047],[5.980550289154109,45.79617309570318],[5.974032878875846,45.76868820190441],[6.042253017425594,45.739257812499936],[6.055079936981258,45.74919509887701],[6.096132755279484,45.74282073974621],[6.103134155273494,45.763442993164176],[6.166234493255615,45.75572586059582],[6.195548057556152,45.73233032226574],[6.189934253692627,45.70083999633788],[6.231654167175236,45.70275878906256],[6.229750156402587,45.68270874023443],[6.327378273010254,45.69291305541998],[6.37044191360485,45.752933502197266],[6.363309383392391,45.76795196533209],[6.424559116363582,45.80385589599621],[6.449741363525391,45.83953094482433],[6.471837997436637,45.88429260253911],[6.511064529418888,45.90905761718749],[6.55658149719244,45.89325714111334],[6.568191051483154,45.862422943115234],[6.535326957702637,45.861980438232536],[6.552718639373779,45.82634353637695],[6.601684570312557,45.79507064819336],[6.659354686737061,45.80015563964844],[6.688257217407169,45.771331787109375],[6.711951255798396,45.72291946411144],[6.757664680481014,45.76716232299816],[6.815085887909049,45.782726287841854]]]},"properties":{"ID_0":79,"ISO":"FR-73","NAME_0":"France","ID_1":22,"NAME_1":"Rhône-Alpes","ID_2":96,"NAME_2":"Savoie","TYPE_2":"Département","ENGTYPE_2":"Department","NL_NAME_2":null,"VARNAME_2":"Sabóia|Savoia"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson
new file mode 100644
index 0000000..f819e0a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson
@@ -0,0 +1,18 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.611084938049315,47.58383178710949],[9.556709289550781,47.58962631225597],[9.519864082336483,47.64017868042003],[9.410350799560604,47.67034912109381],[9.354925155639705,47.664314270019645],[9.252408027648926,47.708381652832145],[9.23134708404541,47.7414283752442],[9.089271545410213,47.80472183227545],[9.090963363647518,47.773105621338004],[9.177002906799315,47.73775482177746],[9.221139907836971,47.668151855468686],[9.129564285278377,47.668991088867244],[9.106024742126522,47.70331192016613],[9.02615737915039,47.7327499389649],[9.008498191833496,47.70093154907226],[8.941498756408748,47.66183471679698],[8.878918647766056,47.65868377685546],[8.856014251708984,47.70831298828131],[8.822449684143123,47.71757125854498],[8.78299713134777,47.681991577148494],[8.72789001464855,47.69684219360362],[8.740537643432674,47.75805282592785],[8.6830472946167,47.79148483276367],[8.619837760925236,47.80404281616222],[8.486785888671989,47.779304504394645],[8.457196235656681,47.73526000976574],[8.405713081359863,47.70629882812494],[8.40472316741949,47.678745269775334],[8.467810630798395,47.64575958251959],[8.601484298706055,47.67701339721691],[8.605631828308162,47.616214752197266],[8.518870353698787,47.636585235595646],[8.460105895996207,47.6070175170899],[8.4374036788941,47.571407318115234],[8.325192451477164,47.576061248779354],[8.295848846435547,47.609577178955135],[8.202873229980469,47.626155853271484],[8.111915588378906,47.5891227722168],[8.098521232605094,47.56595230102545],[8.020597457885856,47.556427001953125],[7.910474777221736,47.55761718750006],[7.88742780685419,47.59474563598638],[7.819903850555476,47.594566345214844],[7.793717861175594,47.56409072875988],[7.669493198394832,47.537117004394474],[7.670560836792048,47.59326171874999],[7.618340015411319,47.580734252929744],[7.524673938751163,47.660194396972656],[7.513751983642692,47.702819824218864],[7.548590183258113,47.735408782958984],[7.530228137969971,47.78344345092785],[7.562403202056942,47.841018676757805],[7.557729244232235,47.88094711303711],[7.622157096862792,47.97365951538085],[7.568590164184626,48.036338806152344],[7.577859401702937,48.12139129638672],[7.666151046752987,48.22109985351557],[7.693936824798699,48.302120208740234],[7.745231628418083,48.32982635498047],[7.733546733856258,48.39868545532232],[7.766868114471549,48.48680114746094],[7.805161952972468,48.513500213623104],[7.800177097320614,48.58316802978515],[7.845043659210204,48.645530700683594],[7.896251678466797,48.6672096252442],[7.961741924285889,48.72025680541998],[7.970248699188289,48.75622940063476],[8.017477035522518,48.762752532958984],[8.101068496704102,48.815814971923885],[8.141568183898926,48.896072387695426],[8.197396278381404,48.95710372924805],[8.229839324951172,48.96836853027355],[8.295299530029295,49.00415039062506],[8.314449310302848,49.056999206543026],[8.362239837646484,49.09968948364269],[8.369058609008789,49.17065048217785],[8.40528869628912,49.220352172851506],[8.38765907287609,49.23448181152344],[8.491369247436467,49.30128860473644],[8.450428962707576,49.33285140991211],[8.494589805603141,49.36024856567394],[8.508850097656307,49.434150695800895],[8.44361877441412,49.501579284668026],[8.418828964233512,49.552188873291016],[8.429039001464787,49.58562088012701],[8.46900939941412,49.59062194824218],[8.557209014892635,49.523811340331974],[8.61958885192871,49.54420852661138],[8.600359916687125,49.61323165893555],[8.686168670654354,49.63053131103521],[8.693719863891658,49.56119918823248],[8.711479187011832,49.539791107177734],[8.902488708496094,49.48944854736339],[8.827729225158691,49.47713088989269],[8.857840538024902,49.404911041259766],[8.909089088440053,49.44575881958007],[8.95515060424816,49.46086883544916],[8.96017837524414,49.50114059448248],[9.04689025878906,49.505512237548885],[9.108948707580623,49.58300018310547],[9.201388359069767,49.575592041015675],[9.270099639892578,49.59381103515619],[9.297658920288084,49.645511627197315],[9.39526081085205,49.64157104492193],[9.428239822387752,49.6897087097168],[9.365010261535701,49.70458221435558],[9.330080032348746,49.73054122924805],[9.323519706726072,49.76753997802746],[9.454290390014704,49.77133941650402],[9.48773002624523,49.78630065917969],[9.566849708557129,49.77558135986322],[9.655658721923885,49.78755950927746],[9.631500244140625,49.69784164428722],[9.681968688964787,49.71305847167969],[9.756610870361442,49.7061004638673],[9.795988082885685,49.721271514892685],[9.843020439147892,49.68814086914068],[9.832489967346135,49.66576004028332],[9.880538940429629,49.603061676025334],[9.870678901672477,49.5621910095216],[9.933589935302791,49.55537033081066],[9.924578666687069,49.488719940185604],[10.01029014587408,49.47846221923828],[10.083209037780762,49.512310028076165],[10.130438804626465,49.46110916137707],[10.172438621521051,49.39152908325207],[10.111349105835018,49.33576202392578],[10.157520294189567,49.31415176391601],[10.136299133300724,49.24777984619152],[10.14302921295166,49.20008850097667],[10.241008758544979,49.16072082519531],[10.270289421081543,49.127990722656364],[10.224769592285268,49.11286163330084],[10.271389961242733,49.06933975219738],[10.260209083557186,49.05089187622064],[10.358429908752498,49.018939971923885],[10.416619300842342,48.98656082153332],[10.466980934143121,48.93828964233404],[10.460708618164176,48.82384109497076],[10.432239532470646,48.750221252441406],[10.488308906555288,48.71643066406244],[10.459988594055233,48.66865158081049],[10.358670234680176,48.673370361328125],[10.2906494140625,48.70679855346674],[10.267759323120174,48.66265869140625],[10.330178260803223,48.61455917358404],[10.301539421081655,48.52249145507812],[10.256278991699162,48.52672958374035],[10.178018569946346,48.4662704467774],[10.037790298461914,48.46335983276373],[10.021698951721135,48.41115188598644],[9.971670150756836,48.38422012329113],[10.068340301513672,48.2855606079101],[10.069068908691461,48.22967910766607],[10.109120368957633,48.13687133789068],[10.137060165405272,48.118469238281364],[10.143199920654352,48.051261901855526],[10.116109848022461,47.98001098632807],[10.10028934478754,47.87524032592773],[10.128187179565487,47.815650939941406],[10.073160171508846,47.79270935058588],[10.117300033569393,47.75186157226573],[10.128538131713924,47.67704010009771],[9.996920585632438,47.683700561523494],[9.964490890502987,47.65380859375011],[9.86045074462902,47.67919921875011],[9.800629615783635,47.65259933471691],[9.741229057312012,47.60739898681646],[9.669999122619629,47.6136589050294],[9.611084938049315,47.58383178710949]]]},"properties":{"ID_0":86,"ISO":"DE-BW","NAME_0":"Germany","ID_1":1,"NAME_1":"Baden-Württemberg","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.927703857421875,50.42685699462896],[11.983886718750057,50.39349365234381],[11.975892066955623,50.35607910156256],[12.065270423889158,50.33790969848644],[12.125018119812012,50.313156127929744],[12.10177993774414,50.243408203125114],[12.160515785217342,50.22968292236339],[12.210250854492243,50.172870635986385],[12.199060440063533,50.111820220947266],[12.261237144470327,50.09212112426758],[12.375898361206055,50.016490936279354],[12.468311309814567,49.99588012695307],[12.497260093688963,49.97624969482422],[12.475679397583121,49.94009399414068],[12.547736167907658,49.92714309692383],[12.545875549316406,49.89528656005865],[12.484228134155273,49.84294891357422],[12.465906143188532,49.785289764404354],[12.408749580383356,49.766189575195426],[12.4513454437257,49.70320129394537],[12.527859687805119,49.68775939941411],[12.525370597839355,49.632350921630916],[12.56985092163086,49.60964965820307],[12.588051795959473,49.54399871826183],[12.645830154419057,49.53105926513666],[12.661074638366756,49.43216705322271],[12.740521430969181,49.41059112548834],[12.803140640258844,49.34796905517578],[12.95288944244396,49.348270416259766],[13.01010894775385,49.30941009521496],[13.03792953491211,49.26773071289068],[13.095769882202148,49.243591308593864],[13.117535591125545,49.196300506591854],[13.186080932617244,49.16670989990246],[13.18021011352539,49.14443969726557],[13.244128227233944,49.114089965820426],[13.29590988159191,49.120182037353516],[13.403729438781737,49.051780700683594],[13.40902805328369,48.9798583984375],[13.466391563415527,48.96088790893555],[13.588505744934196,48.9686012268067],[13.671330451965332,48.88309097290039],[13.751342773437498,48.874515533447266],[13.7628049850465,48.83898925781256],[13.835957527160645,48.77505111694347],[13.810439109802244,48.73543167114257],[13.82571983337408,48.64122009277349],[13.802149772644041,48.576889038085994],[13.742410659790037,48.54889678955084],[13.721092224121149,48.51679229736328],[13.594429016113338,48.57614898681646],[13.519489288330078,48.59616851806646],[13.4507093429566,48.54222106933599],[13.423679351806753,48.457778930664176],[13.436674118042049,48.42935180664074],[13.410618782043457,48.37773895263672],[13.297986984252987,48.30990982055664],[13.184852600097656,48.29858779907238],[13.020889282226618,48.26044845581066],[12.963188171386662,48.21686935424805],[12.868214607238826,48.203666687011776],[12.838599205017204,48.16194152832042],[12.753028869628906,48.11729049682617],[12.77372837066656,48.072719573974666],[12.859708786010856,48.02046966552734],[12.881299018859806,47.96100616455083],[12.935725212097223,47.94540023803711],[13.001147270202692,47.85223007202154],[12.911267280578613,47.73124313354492],[12.985298156738395,47.712165832519645],[13.01525974273693,47.72967910766601],[13.081555366516056,47.69136810302746],[13.10558891296398,47.639202117920036],[13.0363512039184,47.53655624389654],[13.05375003814703,47.49486160278332],[13.00461864471447,47.468738555908146],[12.913059234619197,47.496742248535156],[12.851645469665527,47.54861450195312],[12.781312942504883,47.58154678344732],[12.826677322387638,47.61626052856451],[12.771088600158805,47.64505004882824],[12.736697196960447,47.68220138549804],[12.605334281921444,47.67924880981451],[12.577346801757812,47.63447570800786],[12.506064414978084,47.628852844238395],[12.419526100158748,47.698768615722706],[12.247988700866813,47.6875],[12.1744642257691,47.699043273925895],[12.22089385986328,47.609909057617244],[12.137937545776422,47.601840972900504],[11.994778633117676,47.618278503418026],[11.923148155212402,47.61162185668945],[11.856868743896484,47.57905197143555],[11.777485847473256,47.59481430053705],[11.667691230773926,47.58627319335949],[11.636343955993707,47.598270416259766],[11.592955589294432,47.55285263061517],[11.581020355224553,47.511821746826286],[11.509319305419865,47.50519943237305],[11.437379837036133,47.51325988769542],[11.388031959533748,47.471923828125],[11.293896675109918,47.43019866943365],[11.151188850402832,47.42356491088867],[11.097250938415527,47.39572143554693],[10.96858215332037,47.39929580688487],[10.978509902954102,47.422149658203125],[10.870402336120662,47.50205612182623],[10.88313293457037,47.538105010986385],[10.772025108337402,47.51614379882807],[10.686220169067496,47.56013107299805],[10.599970817565975,47.56983184814459],[10.575299263000431,47.54151916503906],[10.491109848022518,47.54497146606451],[10.458315849304313,47.58544540405285],[10.431048393249625,47.50675582885742],[10.458512306213379,47.48423004150402],[10.471569061279297,47.43306350708019],[10.323238372802791,47.302589416503956],[10.231559753418026,47.26985931396496],[10.170708656311035,47.292438507080135],[10.231728553771973,47.37248992919933],[10.178505897521973,47.39349365234369],[10.117349624633789,47.373859405517635],[10.073030471801701,47.41458129882818],[10.10081958770752,47.431659698486385],[9.99733829498291,47.48622512817388],[9.95506381988531,47.536933898925724],[9.813129425048828,47.55074691772472],[9.822611808776799,47.58517074584966],[9.774218559265137,47.596801757812614],[9.732295989990234,47.54535675048828],[9.622774124145508,47.57091522216797],[9.611084938049315,47.58383178710949],[9.669999122619629,47.6136589050294],[9.741229057312012,47.60739898681646],[9.800629615783635,47.65259933471691],[9.86045074462902,47.67919921875011],[9.964490890502987,47.65380859375011],[9.996920585632438,47.683700561523494],[10.128538131713924,47.67704010009771],[10.117300033569393,47.75186157226573],[10.073160171508846,47.79270935058588],[10.128187179565487,47.815650939941406],[10.10028934478754,47.87524032592773],[10.116109848022461,47.98001098632807],[10.143199920654352,48.051261901855526],[10.137060165405272,48.118469238281364],[10.109120368957633,48.13687133789068],[10.069068908691461,48.22967910766607],[10.068340301513672,48.2855606079101],[9.971670150756836,48.38422012329113],[10.021698951721135,48.41115188598644],[10.037790298461914,48.46335983276373],[10.178018569946346,48.4662704467774],[10.256278991699162,48.52672958374035],[10.301539421081655,48.52249145507812],[10.330178260803223,48.61455917358404],[10.267759323120174,48.66265869140625],[10.2906494140625,48.70679855346674],[10.358670234680176,48.673370361328125],[10.459988594055233,48.66865158081049],[10.488308906555288,48.71643066406244],[10.432239532470646,48.750221252441406],[10.460708618164176,48.82384109497076],[10.466980934143121,48.93828964233404],[10.416619300842342,48.98656082153332],[10.358429908752498,49.018939971923885],[10.260209083557186,49.05089187622064],[10.271389961242733,49.06933975219738],[10.224769592285268,49.11286163330084],[10.270289421081543,49.127990722656364],[10.241008758544979,49.16072082519531],[10.14302921295166,49.20008850097667],[10.136299133300724,49.24777984619152],[10.157520294189567,49.31415176391601],[10.111349105835018,49.33576202392578],[10.172438621521051,49.39152908325207],[10.130438804626465,49.46110916137707],[10.083209037780762,49.512310028076165],[10.01029014587408,49.47846221923828],[9.924578666687069,49.488719940185604],[9.933589935302791,49.55537033081066],[9.870678901672477,49.5621910095216],[9.880538940429629,49.603061676025334],[9.832489967346135,49.66576004028332],[9.843020439147892,49.68814086914068],[9.795988082885685,49.721271514892685],[9.756610870361442,49.7061004638673],[9.681968688964787,49.71305847167969],[9.631500244140625,49.69784164428722],[9.655658721923885,49.78755950927746],[9.566849708557129,49.77558135986322],[9.48773002624523,49.78630065917969],[9.454290390014704,49.77133941650402],[9.323519706726072,49.76753997802746],[9.330080032348746,49.73054122924805],[9.365010261535701,49.70458221435558],[9.428239822387752,49.6897087097168],[9.39526081085205,49.64157104492193],[9.297658920288084,49.645511627197315],[9.270099639892578,49.59381103515619],[9.201388359069767,49.575592041015675],[9.108948707580623,49.58300018310547],[9.073519706726131,49.62322998046874],[9.113509178161735,49.6455917358399],[9.095290184020996,49.69327926635736],[9.152109146118276,49.73793029785162],[9.06967926025402,49.83277130126964],[9.039319038391056,49.90962982177745],[9.048080444335994,50.042411804199325],[9.007158279419059,50.04164886474621],[9.033840179443416,50.11211013793957],[9.138387680053711,50.12517166137695],[9.173929214477539,50.10739898681646],[9.237930297851676,50.14928054809582],[9.377340316772461,50.132209777832145],[9.41923713684082,50.080291748046925],[9.519418716430721,50.09251022338867],[9.507490158081112,50.21202850341797],[9.534529685974121,50.234710693359375],[9.597940444946289,50.22029113769536],[9.665809631347656,50.23950958251953],[9.652839660644531,50.26930999755865],[9.738649368286246,50.29980087280285],[9.75783920288086,50.424091339111385],[9.882708549499455,50.39855194091797],[9.987749099731559,50.44425201416027],[10.04001903533947,50.49333190917968],[10.039758682251033,50.51588058471691],[10.098520278930721,50.54988861083989],[10.204319953918398,50.553798675537166],[10.292880058288631,50.49404907226574],[10.328149795532283,50.49032211303722],[10.416999816894586,50.393390655517635],[10.45805835723877,50.40090942382818],[10.49367046356201,50.35243988037115],[10.581978797912654,50.33020019531261],[10.611628532409725,50.28913116455084],[10.617910385131836,50.22182083129882],[10.734579086303825,50.20732879638677],[10.809300422668569,50.274822235107536],[10.723039627075309,50.32294845581055],[10.75701045989996,50.35641860961925],[10.831380844116268,50.38624954223633],[10.934719085693416,50.390232086181584],[11.038508415222282,50.34236145019537],[11.113239288330135,50.36489868164074],[11.15938854217535,50.32051849365228],[11.245929718017578,50.26517868041998],[11.27088928222662,50.41751098632818],[11.248118400573844,50.47689056396495],[11.32425975799572,50.48833084106445],[11.371511459350586,50.52196121215826],[11.43009090423584,50.51472091674816],[11.417508125305233,50.451450347900334],[11.533889770507812,50.381019592285156],[11.592958450317496,50.40353012084972],[11.622029304504508,50.38867950439459],[11.698430061340389,50.39630889892584],[11.787029266357365,50.422641754150504],[11.827100753784293,50.39291000366211],[11.927703857421875,50.42685699462896]]]},"properties":{"ID_0":86,"ISO":"DE-BY","NAME_0":"Germany","ID_1":2,"NAME_1":"Bayern","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Bavaria"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.177889823913574,52.390319824218864],[13.093818664550895,52.417438507080135],[13.120060920715446,52.46525955200195],[13.176479339599723,52.50524139404297],[13.122269630432243,52.520832061767635],[13.160909652710073,52.57218933105469],[13.21620941162115,52.58251953125006],[13.230238914489746,52.62681198120117],[13.370199203491211,52.62105941772455],[13.437800407409611,52.63489151000982],[13.46364974975586,52.66786956787121],[13.523490905761776,52.6447410583496],[13.503379821777344,52.60425949096691],[13.557220458984432,52.584930419921875],[13.645098686218375,52.516868591308594],[13.649419784545897,52.47974014282226],[13.721320152282827,52.46379852294916],[13.749758720398006,52.42628097534191],[13.661138534545955,52.34241867065429],[13.603069305419922,52.39519882202159],[13.542180061340275,52.38872146606456],[13.427828788757381,52.4089622497558],[13.396039962768612,52.3760719299317],[13.227739334106559,52.41926193237299],[13.177889823913574,52.390319824218864]]]},"properties":{"ID_0":86,"ISO":"DE-BE","NAME_0":"Germany","ID_1":3,"NAME_1":"Berlin","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.415765762329158,53.32979583740234],[14.447080612182615,53.25653457641613],[14.378918647766227,53.20415878295898],[14.382509231567381,53.11481857299816],[14.340086936950627,53.04809570312505],[14.270511627197322,53.00841140747082],[14.142452239990234,52.96111297607422],[14.155890464782713,52.87955856323242],[14.122618675232047,52.85493850708008],[14.138895988464467,52.82548522949219],[14.214071273803766,52.820404052734425],[14.255911827087516,52.78646850585949],[14.371563911437987,52.73823928833008],[14.466204643249624,52.657257080078125],[14.606236457824766,52.60551071166998],[14.633398056030217,52.56621932983404],[14.606253623962457,52.54684066772472],[14.621507644653319,52.484401702880916],[14.543208122253477,52.43748855590826],[14.528908729553336,52.39641189575195],[14.585481643676756,52.30208587646484],[14.570899963378848,52.28956222534173],[14.69957065582281,52.2410888671875],[14.674738883972168,52.19622039794922],[14.694680213928336,52.17391967773437],[14.66934871673584,52.12155151367193],[14.741009712219237,52.06966018676757],[14.691618919372559,51.98361968994146],[14.704777717590332,51.94266128540039],[14.65294933319103,51.876548767089844],[14.591708183288686,51.841911315918026],[14.596150398254506,51.80601501464844],[14.648379325866813,51.7950553894043],[14.654958724975529,51.74120330810552],[14.71885013580328,51.69285964965826],[14.746030807495172,51.61100006103527],[14.710829734802358,51.58467864990245],[14.676649093628042,51.558349609375114],[14.458319664001577,51.55138015747081],[14.337259292602653,51.51226043701172],[14.286419868469352,51.52983093261719],[14.147539138793944,51.541671752929744],[14.122911453247013,51.5244712829591],[14.080458641052358,51.44773864746105],[14.015210151672306,51.37430191040045],[13.971598625183162,51.39891052246105],[13.928709983825684,51.381031036377],[13.85781955718994,51.38259887695318],[13.761530876159666,51.36215209960937],[13.54295921325695,51.381359100341854],[13.444268226623535,51.43135070800775],[13.330400466918887,51.42581176757824],[13.233359336853084,51.39775848388683],[13.200678825378532,51.472179412841854],[13.226419448852653,51.512451171875],[13.156909942626953,51.5726203918457],[13.140560150146541,51.61351013183588],[13.098188400268498,51.606739044189396],[13.063730239868278,51.64789962768566],[13.179808616638297,51.690589904785156],[13.178320884704533,51.801578521728565],[13.137908935546818,51.846549987793075],[13.048269271850586,51.870010375976676],[13.055450439453239,51.899509429931584],[12.98296928405756,51.90053176879883],[12.972139358520565,51.933971405029354],[12.863180160522573,51.931758880615234],[12.858329772949217,51.965129852294865],[12.714208602905387,52.0003395080567],[12.65982913970953,52.00474166870128],[12.628700256347656,51.979240417480526],[12.549958229064941,51.980232238769645],[12.490827560424917,52.0290412902832],[12.43582820892334,52.01491165161127],[12.369858741760254,52.04156875610363],[12.280429840088003,52.10176849365246],[12.227298736572266,52.161540985107536],[12.271249771118105,52.21287918090832],[12.25396919250494,52.250080108642514],[12.311418533325252,52.345729827880916],[12.301250457763615,52.419929504394474],[12.333218574523983,52.471462249755916],[12.266699790954647,52.498119354248104],[12.175079345703068,52.502780914306754],[12.1575803756715,52.53631973266613],[12.183770179748592,52.602798461914176],[12.246099472045955,52.64295196533203],[12.241068840026912,52.683811187744084],[12.20496082305908,52.71015930175787],[12.212269783020076,52.75461959838867],[12.262378692626951,52.7912216186524],[12.239218711853084,52.84344863891612],[12.086408615112362,52.88214111328125],[11.981528282165584,52.87200927734375],[11.90796947479248,52.8875617980957],[11.828538894653434,52.92173004150402],[11.743320465088004,52.985698699951286],[11.687638282775879,52.98247146606457],[11.601769447326658,53.03155136108398],[11.509009361267033,53.04718017578131],[11.459699630737362,53.07736206054699],[11.353878974914494,53.05210876464849],[11.273380279540959,53.10115051269537],[11.273481369018555,53.11978149414062],[11.397949218750057,53.11880111694341],[11.472749710083065,53.13684082031256],[11.540950775146596,53.121391296386776],[11.59181022644043,53.21036911010748],[11.63576984405529,53.23981094360346],[11.704189300537223,53.23921203613287],[11.734849929809682,53.212848663330135],[11.803829193115233,53.249488830566406],[11.872219085693416,53.25257110595708],[12.028409957885742,53.2994995117188],[12.060480117797795,53.343910217285156],[12.171999931335506,53.33528137207031],[12.234510421753042,53.353248596191406],[12.264800071716365,53.32680892944336],[12.400289535522404,53.29916000366211],[12.399628639221191,53.2768211364746],[12.460661888122615,53.25001144409185],[12.535188674926871,53.260269165039176],[12.614889144897461,53.24063873291027],[12.670860290527344,53.25107192993164],[12.68833827972412,53.2210693359375],[12.76239013671875,53.22008132934575],[12.785710334777946,53.18255996704113],[12.91559982299799,53.19190979003912],[12.982050895690973,53.15750122070306],[13.108539581298885,53.23369216918957],[13.251282691955566,53.25390625000005],[13.301878929138297,53.275329589843864],[13.363525390625114,53.2742919921875],[13.40527153015131,53.243896484375114],[13.438720703125,53.29528808593756],[13.500488281249943,53.29791259765625],[13.554159164428768,53.374961853027344],[13.549316406249943,53.39727783203125],[13.624328613281248,53.41088867187506],[13.638671875000055,53.44409179687506],[13.709288597107047,53.47607421875],[13.802799224853572,53.47819900512707],[13.824710845947266,53.52228164672846],[13.879629135131779,53.50273132324213],[13.91958045959467,53.45011901855468],[14.043899536132756,53.429008483886776],[14.121093750000114,53.44207763671869],[14.18292331695568,53.42230224609375],[14.246148109436033,53.42095184326172],[14.243160247802733,53.384101867675724],[14.207889556884766,53.34048080444347],[14.114839553833121,53.28697204589855],[14.14498424530035,53.2678489685058],[14.226650238037166,53.258831024170036],[14.298890113830678,53.28710937500006],[14.319879531860465,53.3126220703125],[14.415765762329158,53.32979583740234]],[[13.177889823913574,52.390319824218864],[13.227739334106559,52.41926193237299],[13.396039962768612,52.3760719299317],[13.427828788757381,52.4089622497558],[13.542180061340275,52.38872146606456],[13.603069305419922,52.39519882202159],[13.661138534545955,52.34241867065429],[13.749758720398006,52.42628097534191],[13.721320152282827,52.46379852294916],[13.649419784545897,52.47974014282226],[13.645098686218375,52.516868591308594],[13.557220458984432,52.584930419921875],[13.503379821777344,52.60425949096691],[13.523490905761776,52.6447410583496],[13.46364974975586,52.66786956787121],[13.437800407409611,52.63489151000982],[13.370199203491211,52.62105941772455],[13.230238914489746,52.62681198120117],[13.21620941162115,52.58251953125006],[13.160909652710073,52.57218933105469],[13.122269630432243,52.520832061767635],[13.176479339599723,52.50524139404297],[13.120060920715446,52.46525955200195],[13.093818664550895,52.417438507080135],[13.177889823913574,52.390319824218864]]]},"properties":{"ID_0":86,"ISO":"DE-BB","NAME_0":"Germany","ID_1":4,"NAME_1":"Brandenburg","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[8.505060195922852,53.232891082763786],[8.599969863891715,53.187011718750114],[8.717420578002928,53.18611907958978],[8.74306964874279,53.16804885864269],[8.82959079742443,53.16619873046881],[8.861869812011719,53.137008666992244],[8.966480255126953,53.13906097412109],[8.97105884552002,53.042049407958984],[8.935469627380371,53.01523971557622],[8.780339241027832,53.04199218750006],[8.731298446655217,53.037208557128906],[8.710700035095329,53.07778167724603],[8.673138618469238,53.08811950683593],[8.625838279724235,53.165290832519645],[8.519479751587028,53.19604110717779],[8.505060195922852,53.232891082763786]]],[[[8.513918876648006,53.50513839721679],[8.555277824401912,53.50791549682623],[8.565277099609375,53.550273895263786],[8.526944160461483,53.592948913574155],[8.521388053894157,53.6064567565918],[8.594015121459961,53.593067169189446],[8.643824577331657,53.548999786376946],[8.65055561065685,53.510780334472656],[8.605904579162598,53.48423385620122],[8.513918876648006,53.50513839721679]]]]},"properties":{"ID_0":86,"ISO":"DE-HB","NAME_0":"Germany","ID_1":5,"NAME_1":"Bremen","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.319178581237848,53.44248962402344],[10.248090744018555,53.40472030639654],[10.177260398864858,53.40795135498047],[10.053689002990835,53.474159240722656],[10.034690856933592,53.44427108764643],[9.944258689880371,53.43994140625011],[9.898807525634766,53.469478607177734],[9.860760688781852,53.446769714355526],[9.7963285446167,53.47980117797851],[9.763450622558594,53.51694107055658],[9.768639564514158,53.56554031372082],[9.723658561706541,53.569000244140675],[9.72939968109142,53.59474945068365],[9.78622817993164,53.620971679687614],[9.850890159607047,53.60655212402344],[9.919628143310604,53.66593170166021],[9.990429878234918,53.658859252929744],[10.002109527588004,53.69211959838872],[10.072678565979004,53.68870925903325],[10.084019660949707,53.72935104370123],[10.173889160156193,53.71858215332037],[10.18179035186779,53.67800903320324],[10.228058815002555,53.63389205932617],[10.210621833801211,53.59326171875006],[10.15961933135992,53.589401245117244],[10.168158531188965,53.534091949463004],[10.219569206237793,53.530601501464844],[10.246680259704704,53.4938316345216],[10.319178581237848,53.44248962402344]]]},"properties":{"ID_0":86,"ISO":"DE-HH","NAME_0":"Germany","ID_1":6,"NAME_1":"Hamburg","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93714809417719,51.37919998168945],[9.949359893798828,51.304889678955135],[10.027479171752985,51.27843093872082],[10.075889587402344,51.22618103027344],[10.195248603820858,51.20320892333996],[10.237089157104549,51.18072891235357],[10.149688720703125,51.05513000488287],[10.203298568725643,51.04370880126959],[10.197978973388786,50.999240875244084],[10.042918205261174,51.01494216918945],[10.014289855957031,50.93717193603515],[10.062809944152775,50.89242172241222],[9.998019218444881,50.82971191406256],[9.950229644775504,50.8223991394044],[9.926839828491154,50.77061080932617],[9.93896007537836,50.73741912841808],[9.915069580078125,50.69692993164068],[9.873539924621696,50.6746711730957],[9.884748458862305,50.638359069824276],[9.946098327636832,50.6301002502442],[9.951470375061149,50.67092132568359],[10.048980712890623,50.67726135253912],[10.086059570312557,50.63238143920904],[10.03817081451416,50.61396026611334],[10.063029289245662,50.55731201171881],[10.039758682251033,50.51588058471691],[10.04001903533947,50.49333190917968],[9.987749099731559,50.44425201416027],[9.882708549499455,50.39855194091797],[9.75783920288086,50.424091339111385],[9.738649368286246,50.29980087280285],[9.652839660644531,50.26930999755865],[9.665809631347656,50.23950958251953],[9.597940444946289,50.22029113769536],[9.534529685974121,50.234710693359375],[9.507490158081112,50.21202850341797],[9.519418716430721,50.09251022338867],[9.41923713684082,50.080291748046925],[9.377340316772461,50.132209777832145],[9.237930297851676,50.14928054809582],[9.173929214477539,50.10739898681646],[9.138387680053711,50.12517166137695],[9.033840179443416,50.11211013793957],[9.007158279419059,50.04164886474621],[9.048080444335994,50.042411804199325],[9.039319038391056,49.90962982177745],[9.06967926025402,49.83277130126964],[9.152109146118276,49.73793029785162],[9.095290184020996,49.69327926635736],[9.113509178161735,49.6455917358399],[9.073519706726131,49.62322998046874],[9.108948707580623,49.58300018310547],[9.04689025878906,49.505512237548885],[8.96017837524414,49.50114059448248],[8.95515060424816,49.46086883544916],[8.909089088440053,49.44575881958007],[8.857840538024902,49.404911041259766],[8.827729225158691,49.47713088989269],[8.902488708496094,49.48944854736339],[8.711479187011832,49.539791107177734],[8.693719863891658,49.56119918823248],[8.686168670654354,49.63053131103521],[8.600359916687125,49.61323165893555],[8.61958885192871,49.54420852661138],[8.557209014892635,49.523811340331974],[8.46900939941412,49.59062194824218],[8.429039001464787,49.58562088012701],[8.393419265747013,49.61754989624035],[8.362480163574162,49.67544937133795],[8.38438892364502,49.70563888549815],[8.447199821472282,49.722358703613395],[8.386138916015625,49.82003021240229],[8.396700859069824,49.84989166259771],[8.34920978546154,49.88539123535167],[8.36583042144781,49.9080696105957],[8.334729194641227,49.973751068115284],[8.257689476013297,50.027069091796925],[8.18796825408947,50.0324592590332],[7.986810207367057,49.97499084472662],[7.887711048126221,49.97066879272461],[7.868689060211294,50.008232116699325],[7.78512001037609,50.053112030029354],[7.848290920257625,50.08341217041026],[7.858398914337215,50.124740600585994],[7.934988975525016,50.110019683838004],[7.93970012664795,50.14012908935547],[7.897068977355957,50.18106079101574],[7.925447940826531,50.20378112792963],[8.01807022094738,50.230918884277344],[8.138090133667104,50.2965087890625],[8.096098899841365,50.32944107055664],[8.082799911498967,50.374160766601555],[8.009419441223145,50.39920043945318],[7.995588779449463,50.495899200439396],[8.06255912780773,50.55733108520508],[8.115130424499625,50.53575134277349],[8.155960083007812,50.55492019653326],[8.173588752746582,50.60026168823242],[8.120570182800293,50.66073989868164],[8.133959770202692,50.687709808349666],[8.17941856384283,50.73952102661133],[8.145460128784237,50.76959991455084],[8.178870201110897,50.806789398193295],[8.275670051574707,50.881240844726676],[8.36824989318842,50.86260223388672],[8.4476900100708,50.91495895385742],[8.46796894073492,50.96326065063476],[8.537079811096191,51.009128570556754],[8.538150787353572,51.095119476318416],[8.663989067077694,51.09012985229498],[8.704908370971737,51.105892181396484],[8.715429306030387,51.139709472656364],[8.767789840698242,51.170631408691406],[8.74069976806635,51.24853897094721],[8.70938873291027,51.274089813232365],[8.601678848266715,51.245811462402344],[8.568999290466422,51.275070190429744],[8.63252067565918,51.336120605468864],[8.698570251464844,51.359840393066406],[8.825110435485897,51.38840103149413],[8.874078750610295,51.37440109252941],[8.957579612731934,51.387271881103565],[8.924329757690373,51.487411499023544],[9.041880607605037,51.51929855346685],[9.112098693847656,51.49462127685558],[9.11385822296154,51.4426002502442],[9.171580314636287,51.44372940063482],[9.28421878814703,51.51277923583995],[9.378959655761719,51.592361450195305],[9.34362888336176,51.6100807189942],[9.451740264892635,51.64538192749029],[9.52808856964117,51.62834930419933],[9.628209114074762,51.629989624023494],[9.689008712768555,51.58312225341808],[9.624798774719295,51.54909133911144],[9.608918190002553,51.49370193481451],[9.633330345153809,51.46102905273443],[9.634898185730094,51.409450531005916],[9.566449165344295,51.37818908691406],[9.585058212280273,51.34521865844738],[9.667149543762264,51.313930511474716],[9.741929054260252,51.323459625244254],[9.711949348449764,51.359611511230575],[9.801008224487305,51.411869049072266],[9.911230087280273,51.419750213623104],[9.93714809417719,51.37919998168945]]]},"properties":{"ID_0":86,"ISO":"DE-HE","NAME_0":"Germany","ID_1":7,"NAME_1":"Hessen","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Hesse"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.415765762329158,53.32979583740234],[14.319879531860465,53.3126220703125],[14.298890113830678,53.28710937500006],[14.226650238037166,53.258831024170036],[14.14498424530035,53.2678489685058],[14.114839553833121,53.28697204589855],[14.207889556884766,53.34048080444347],[14.243160247802733,53.384101867675724],[14.246148109436033,53.42095184326172],[14.18292331695568,53.42230224609375],[14.121093750000114,53.44207763671869],[14.043899536132756,53.429008483886776],[13.91958045959467,53.45011901855468],[13.879629135131779,53.50273132324213],[13.824710845947266,53.52228164672846],[13.802799224853572,53.47819900512707],[13.709288597107047,53.47607421875],[13.638671875000055,53.44409179687506],[13.624328613281248,53.41088867187506],[13.549316406249943,53.39727783203125],[13.554159164428768,53.374961853027344],[13.500488281249943,53.29791259765625],[13.438720703125,53.29528808593756],[13.40527153015131,53.243896484375114],[13.363525390625114,53.2742919921875],[13.301878929138297,53.275329589843864],[13.251282691955566,53.25390625000005],[13.108539581298885,53.23369216918957],[12.982050895690973,53.15750122070306],[12.91559982299799,53.19190979003912],[12.785710334777946,53.18255996704113],[12.76239013671875,53.22008132934575],[12.68833827972412,53.2210693359375],[12.670860290527344,53.25107192993164],[12.614889144897461,53.24063873291027],[12.535188674926871,53.260269165039176],[12.460661888122615,53.25001144409185],[12.399628639221191,53.2768211364746],[12.400289535522404,53.29916000366211],[12.264800071716365,53.32680892944336],[12.234510421753042,53.353248596191406],[12.171999931335506,53.33528137207031],[12.060480117797795,53.343910217285156],[12.028409957885742,53.2994995117188],[11.872219085693416,53.25257110595708],[11.803829193115233,53.249488830566406],[11.734849929809682,53.212848663330135],[11.704189300537223,53.23921203613287],[11.63576984405529,53.23981094360346],[11.59181022644043,53.21036911010748],[11.540950775146596,53.121391296386776],[11.472749710083065,53.13684082031256],[11.397949218750057,53.11880111694341],[11.273481369018555,53.11978149414062],[11.198998451232967,53.18004226684576],[11.093479156494254,53.21469879150402],[10.994039535522461,53.334770202636776],[10.913068771362418,53.34025192260748],[10.844929695129451,53.31269073486333],[10.795350074768066,53.32160949707036],[10.708258628845329,53.37931060791027],[10.597419738769588,53.37364959716797],[10.621770858764704,53.39173889160156],[10.63937854766857,53.4650993347168],[10.69486045837408,53.46443176269531],[10.818040847778263,53.524841308593864],[10.82373046875,53.56175994873052],[10.911029815673828,53.574481964111385],[10.95374965667736,53.651401519775504],[10.921190261840934,53.70045852661132],[10.852029800415039,53.70563888549805],[10.769919395446777,53.75511932373047],[10.762510299682617,53.829288482666065],[10.773878097534123,53.881019592285156],[10.887930870056266,53.920150756835994],[10.89471817016613,53.95597076416015],[11.039167404174918,54.00624847412121],[11.18083381652832,54.01541519165045],[11.24861145019537,53.98708343505864],[11.245278358459473,53.94235992431651],[11.326944351196289,53.95708465576172],[11.444167137145996,53.91013717651373],[11.481389999389648,53.95791625976568],[11.377499580383414,53.97541809082031],[11.37805557250988,53.99736022949219],[11.457500457763672,54.02375030517584],[11.506943702697697,54.00986099243163],[11.575833320617733,54.0348625183106],[11.624167442321891,54.0770835876466],[11.607499122619629,54.105972290039176],[11.682498931884707,54.15319442749034],[11.876944541931152,54.148750305175724],[12.010276794433535,54.17819595336925],[12.109167098999137,54.175693511963004],[12.190279006958065,54.239860534668026],[12.339165687561035,54.297916412353565],[12.409723281860295,54.37874984741211],[12.466944694519157,54.42013931274414],[12.510834693908691,54.482917785644474],[12.549166679382267,54.45569610595703],[12.660834312439079,54.44208145141607],[12.856388092041072,54.44041824340826],[12.764166831970272,54.412918090820256],[12.635833740234489,54.41708374023449],[12.51250076293951,54.37597274780285],[12.43527889251709,54.378471374511776],[12.421387672424316,54.33958435058599],[12.358611106872615,54.30291748046875],[12.383054733276424,54.27930450439458],[12.474167823791447,54.30291748046875],[12.473055839538688,54.329860687255795],[12.535834312439022,54.339305877685604],[12.710276603698786,54.41097259521496],[12.7219438552857,54.37236022949219],[12.804165840148983,54.371250152587834],[12.845832824707145,54.351249694824276],[12.89638900756836,54.40013885498041],[12.999167442321891,54.43624877929687],[13.111945152282658,54.304584503173885],[13.226389884948787,54.23958206176769],[13.285834312439077,54.23541641235363],[13.348056793212889,54.16513824462902],[13.37694454193121,54.17680740356451],[13.47694396972662,54.11875152587902],[13.696389198303164,54.149028778076115],[13.80750083923351,54.096248626708984],[13.757498741149957,54.02708435058593],[13.834723472595272,53.984306335449325],[13.912501335144157,53.9254150390625],[13.905834197998104,53.989860534667905],[14.033612251281795,53.940971374511776],[14.046944618225211,53.99652862548839],[14.003611564636286,54.010692596435604],[13.971944808959904,54.05875015258795],[13.92472362518322,54.0631942749024],[13.763611793518123,54.03097152709955],[13.811944961547908,54.093471527099666],[13.749167442321891,54.15902709960949],[13.812499046325627,54.17736053466791],[13.840832710266227,54.123195648193416],[13.888610839843864,54.09236145019531],[14.017500877380485,54.052360534668026],[14.219858169555664,53.929580688476676],[14.189165115356502,53.87263870239269],[14.03305625915533,53.87263870239269],[13.994723320007438,53.84986114501947],[13.86805534362793,53.83597183227545],[13.972498893737791,53.77208328247076],[14.122500419616813,53.73736190795904],[14.18416690826416,53.7359733581543],[14.229720115661678,53.76152801513683],[14.29158020019537,53.65946197509777],[14.318198204040527,53.522789001464844],[14.359710693359487,53.48902893066406],[14.37357044219982,53.42618942260742],[14.415765762329158,53.32979583740234]]],[[[13.429166793823242,54.68458175659191],[13.37583255767822,54.63513946533203],[13.392499923706053,54.59708404541021],[13.456945419311467,54.56958389282238],[13.634721755981502,54.58486175537115],[13.679720878601074,54.56152725219732],[13.66860961914068,54.52069473266607],[13.570277214050348,54.47013854980462],[13.599167823791504,54.412918090820256],[13.678054809570256,54.395694732666016],[13.673610687255858,54.35069274902355],[13.613610267639103,54.33069610595714],[13.575278282165526,54.35291671752941],[13.508610725402775,54.34402847290038],[13.412499427795465,54.29680633544922],[13.390277862548883,54.222362518310604],[13.200278282165527,54.26985931396478],[13.13972091674799,54.29652786254883],[13.114165306091365,54.33263778686529],[13.129722595214844,54.37236022949219],[13.23472213745117,54.369583129882926],[13.237501144409237,54.40763854980469],[13.170276641845703,54.425140380859375],[13.169724464416618,54.45264053344738],[13.241945266723633,54.47236251831055],[13.171389579772947,54.50736236572265],[13.163055419921989,54.545139312744254],[13.240279197692985,54.55430603027344],[13.286390304565543,54.54319381713873],[13.363056182861271,54.55597305297857],[13.450832366943358,54.4731941223145],[13.495834350585993,54.479583740234425],[13.502499580383414,54.547916412353516],[13.446944236755428,54.551250457763786],[13.383610725402889,54.58124923706049],[13.250276565551871,54.5723609924317],[13.288612365722656,54.62736129760753],[13.284722328186092,54.67263793945318],[13.429166793823242,54.68458175659191]]]]},"properties":{"ID_0":86,"ISO":"DE-MV","NAME_0":"Germany","ID_1":8,"NAME_1":"Mecklenburg-Vorpommern","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Mecklenburg-West Pomerania"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.761944770812931,53.618751525878906],[6.719721794128532,53.56375122070324],[6.663055896759261,53.577640533447266],[6.654167175293026,53.607082366943416],[6.761944770812931,53.618751525878906]]],[[[9.09638881683344,53.88398361206055],[9.199728965759391,53.886032104492244],[9.288209915161133,53.8694114685058],[9.358848571777457,53.82297897338873],[9.40497016906744,53.75769042968761],[9.507008552551213,53.7008514404298],[9.547169685363826,53.624309539795036],[9.67358016967779,53.57526016235362],[9.723658561706541,53.569000244140675],[9.768639564514158,53.56554031372082],[9.763450622558594,53.51694107055658],[9.7963285446167,53.47980117797851],[9.860760688781852,53.446769714355526],[9.898807525634766,53.469478607177734],[9.944258689880371,53.43994140625011],[10.034690856933592,53.44427108764643],[10.053689002990835,53.474159240722656],[10.177260398864858,53.40795135498047],[10.248090744018555,53.40472030639654],[10.319178581237848,53.44248962402344],[10.391718864441032,53.43540191650384],[10.506809234619084,53.38425064086914],[10.597419738769588,53.37364959716797],[10.708258628845329,53.37931060791027],[10.795350074768066,53.32160949707036],[10.844929695129451,53.31269073486333],[10.913068771362418,53.34025192260748],[10.994039535522461,53.334770202636776],[11.093479156494254,53.21469879150402],[11.198998451232967,53.18004226684576],[11.273481369018555,53.11978149414062],[11.273380279540959,53.10115051269537],[11.353878974914494,53.05210876464849],[11.459699630737362,53.07736206054699],[11.509009361267033,53.04718017578131],[11.601769447326658,53.03155136108398],[11.564100265502873,52.994651794433594],[11.514609336853082,52.99877166748058],[11.47671985626215,52.93581008911133],[11.321439743042106,52.87369918823248],[11.240949630737418,52.877979278564396],[11.160360336303711,52.90460968017578],[10.998458862304688,52.90996932983409],[10.942508697509766,52.851379394531186],[10.772189140319881,52.854450225830135],[10.760579109191895,52.792900085449276],[10.790019035339299,52.74053192138683],[10.927108764648438,52.60639190673834],[10.972538948059139,52.499290466308594],[10.936208724975529,52.459011077880916],[11.035769462585504,52.384651184081974],[11.06054973602295,52.34764099121088],[10.99966144561779,52.34056854248058],[11.091659545898551,52.22938919067388],[11.037719726562443,52.21136093139643],[11.02023887634283,52.17837905883789],[11.068088531494254,52.166919708251896],[11.050539970398061,52.13394165039068],[10.94927978515625,52.10540008544933],[10.974808692932072,52.05725097656256],[10.857770919799918,52.05097961425787],[10.691758155822697,52.05276870727544],[10.636878967285213,52.01647949218761],[10.569430351257381,52.01726150512695],[10.64960956573492,51.88962936401367],[10.582900047302303,51.85507202148443],[10.577259063720703,51.80934906005871],[10.601848602294922,51.768039703369254],[10.67490005493164,51.698200225830135],[10.705129623413143,51.64355087280267],[10.63994026184082,51.61925888061529],[10.640660285949764,51.58024978637695],[10.52212905883789,51.55052185058605],[10.443818092346191,51.58860015869146],[10.384880065917969,51.55894088745123],[10.338228225708065,51.51441955566412],[10.17324829101568,51.44480133056646],[10.025360107421875,51.41965103149414],[9.93714809417719,51.37919998168945],[9.911230087280273,51.419750213623104],[9.801008224487305,51.411869049072266],[9.711949348449764,51.359611511230575],[9.741929054260252,51.323459625244254],[9.667149543762264,51.313930511474716],[9.585058212280273,51.34521865844738],[9.566449165344295,51.37818908691406],[9.634898185730094,51.409450531005916],[9.633330345153809,51.46102905273443],[9.608918190002553,51.49370193481451],[9.624798774719295,51.54909133911144],[9.689008712768555,51.58312225341808],[9.628209114074762,51.629989624023494],[9.52808856964117,51.62834930419933],[9.451740264892635,51.64538192749029],[9.382368087768612,51.64768981933594],[9.408809661865234,51.70341873168956],[9.388999938964787,51.758239746093864],[9.451158523559627,51.79259109497076],[9.442108154296932,51.85514068603527],[9.37046813964855,51.86161041259776],[9.332049369811955,51.91699981689453],[9.277660369873159,51.92739105224615],[9.269420623779354,51.975749969482536],[9.18529987335205,51.9744987487793],[9.201719284057617,52.0082893371582],[9.176400184631348,52.03401184082037],[9.17996883392334,52.08628082275401],[9.147498130798454,52.13426208496094],[9.05608940124523,52.14773178100591],[9.047849655151422,52.1923484802246],[9.076158523559627,52.23384094238281],[8.971660614013729,52.261981964111385],[8.987480163574332,52.31072998046881],[9.028349876403809,52.344982147216854],[9.088550567626953,52.35715866088873],[9.128499031066951,52.41379928588867],[9.102117538452148,52.45814132690441],[9.13135147094732,52.484748840332145],[9.05136871337902,52.502090454101676],[8.987609863281307,52.433849334716854],[8.92217826843273,52.40291213989257],[8.855890274047908,52.390602111816406],[8.788468360900879,52.400650024414176],[8.709649085998535,52.39556884765625],[8.711459159851074,52.477642059326165],[8.653689384460506,52.53250885009765],[8.557799339294434,52.50093078613287],[8.508218765258903,52.514888763427734],[8.460728645324762,52.491649627685604],[8.432649612426815,52.450199127197266],[8.30516242980957,52.444011688232536],[8.31338882446289,52.4070396423341],[8.443698883056639,52.36478042602539],[8.4683198928833,52.253448486328125],[8.451660156250057,52.22708129882824],[8.474008560180721,52.156681060791016],[8.414460182189998,52.14076995849615],[8.404229164123649,52.11082077026378],[8.288149833679142,52.131198883056754],[8.246459960937612,52.12306213378912],[8.1602201461792,52.07709884643555],[8.038999557495117,52.06489181518555],[7.974060058593806,52.03638076782232],[7.918758869171199,52.0497207641601],[7.885759830474967,52.086181640625],[8.009200096130314,52.11516952514654],[8.01103878021246,52.17615127563482],[7.932160854339599,52.17737197875987],[7.928679943084716,52.30561065673834],[7.976288795471191,52.31486892700201],[7.937929153442496,52.36505126953125],[7.895120143890323,52.38191986083996],[7.811338901519775,52.37171936035156],[7.719359874725455,52.401988983154354],[7.693008899688778,52.456291198730526],[7.61344814300537,52.47238159179681],[7.578148841858024,52.4311904907226],[7.58010911941534,52.38346099853526],[7.532070159912222,52.371109008789006],[7.391240119934081,52.31148910522472],[7.298637866973991,52.264202117919865],[7.159201145172118,52.268169403076286],[7.071063995361442,52.243484497070426],[7.029718875885123,52.29431915283209],[7.080453872680664,52.35722351074219],[7.000110149383545,52.47317886352545],[6.931348800659123,52.43983078002941],[6.854238986968994,52.462631225586044],[6.764862060546988,52.464931488037166],[6.713626861572379,52.484413146972656],[6.7192640304566,52.62957763671875],[6.786572933197078,52.6561546325683],[6.905216217041016,52.65543746948242],[6.948777198791446,52.64259338378912],[7.063059806823844,52.6471786499024],[7.080383777618636,52.81387329101568],[7.094276905059871,52.846450805664055],[7.212191104888972,52.93294143676758],[7.254858016967773,53.001121520996094],[7.256578922271729,53.098411560058594],[7.227190017700422,53.117160797119084],[7.284949779510498,53.18859100341791],[7.271598815918026,53.22857666015631],[7.228055953979549,53.258193969726676],[7.248054981231746,53.33013916015625],[7.024723052978628,53.33652877807617],[6.999166965484561,53.35902786254882],[7.025276184082031,53.483470916748104],[7.065278053283805,53.524860382080135],[7.133611202239933,53.53236007690441],[7.090834140777645,53.57041549682617],[7.158053874969539,53.62791824340832],[7.296945095062369,53.68069458007806],[7.475277900695915,53.68347167968756],[7.563611030578556,53.67486190795909],[7.693056106567383,53.70097351074218],[7.910831928253118,53.717639923095696],[8.011943817138786,53.71125030517578],[8.02861118316656,53.661804199218686],[8.114165306091309,53.61402893066412],[8.169721603393612,53.54347229003912],[8.150278091430662,53.51263809204107],[8.060833930969352,53.500415802001946],[8.099165916442928,53.445693969726676],[8.136944770812931,53.45291519165039],[8.208610534667967,53.40208435058594],[8.252499580383414,53.399028778076286],[8.315832138061637,53.46430587768549],[8.315832138061637,53.515972137451286],[8.231942176818903,53.51985931396496],[8.24305534362793,53.5823593139649],[8.30361175537115,53.61708450317377],[8.34638881683361,53.610137939453125],[8.384167671203613,53.57430648803722],[8.504722595214957,53.551528930664176],[8.513918876648006,53.50513839721679],[8.605904579162598,53.48423385620122],[8.65055561065685,53.510780334472656],[8.643824577331657,53.548999786376946],[8.594015121459961,53.593067169189446],[8.521388053894157,53.6064567565918],[8.483611106872559,53.65569305419933],[8.483611106872559,53.69430541992193],[8.55416584014898,53.828193664550774],[8.61750125885004,53.88208389282232],[8.682499885559082,53.89180374145508],[8.78694438934326,53.83375167846674],[8.887498855590877,53.828472137451165],[9.016388893127441,53.83597183227545],[9.09972286224371,53.86291503906256],[9.09638881683344,53.88398361206055]],[[8.505060195922852,53.232891082763786],[8.519479751587028,53.19604110717779],[8.625838279724235,53.165290832519645],[8.673138618469238,53.08811950683593],[8.710700035095329,53.07778167724603],[8.731298446655217,53.037208557128906],[8.780339241027832,53.04199218750006],[8.935469627380371,53.01523971557622],[8.97105884552002,53.042049407958984],[8.966480255126953,53.13906097412109],[8.861869812011719,53.137008666992244],[8.82959079742443,53.16619873046881],[8.74306964874279,53.16804885864269],[8.717420578002928,53.18611907958978],[8.599969863891715,53.187011718750114],[8.505060195922852,53.232891082763786]]]]},"properties":{"ID_0":86,"ISO":"DE-NI","NAME_0":"Germany","ID_1":9,"NAME_1":"Niedersachsen","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Lower Saxony"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.451740264892635,51.64538192749029],[9.34362888336176,51.6100807189942],[9.378959655761719,51.592361450195305],[9.28421878814703,51.51277923583995],[9.171580314636287,51.44372940063482],[9.11385822296154,51.4426002502442],[9.112098693847656,51.49462127685558],[9.041880607605037,51.51929855346685],[8.924329757690373,51.487411499023544],[8.957579612731934,51.387271881103565],[8.874078750610295,51.37440109252941],[8.825110435485897,51.38840103149413],[8.698570251464844,51.359840393066406],[8.63252067565918,51.336120605468864],[8.568999290466422,51.275070190429744],[8.601678848266715,51.245811462402344],[8.70938873291027,51.274089813232365],[8.74069976806635,51.24853897094721],[8.767789840698242,51.170631408691406],[8.715429306030387,51.139709472656364],[8.704908370971737,51.105892181396484],[8.663989067077694,51.09012985229498],[8.538150787353572,51.095119476318416],[8.537079811096191,51.009128570556754],[8.46796894073492,50.96326065063476],[8.4476900100708,50.91495895385742],[8.36824989318842,50.86260223388672],[8.275670051574707,50.881240844726676],[8.178870201110897,50.806789398193295],[8.145460128784237,50.76959991455084],[8.17941856384283,50.73952102661133],[8.133959770202692,50.687709808349666],[7.974319934845028,50.774669647216854],[7.981119155883789,50.83068084716808],[7.83456993103033,50.88114929199219],[7.854489803314266,50.92636108398443],[7.799629211425781,50.94301986694336],[7.754129886627311,50.9191513061524],[7.763558864593505,50.878620147705135],[7.703039169311637,50.824401855468864],[7.66074991226202,50.76705932617187],[7.601678848266544,50.764862060546925],[7.481769084930477,50.71567153930664],[7.365079879760685,50.699989318847706],[7.364080905914307,50.64413070678711],[7.260398864746207,50.61767196655279],[7.195660114288386,50.618789672851676],[7.150808811187744,50.59461975097656],[7.056681156158446,50.59838104248058],[7.007449150085506,50.55913162231451],[6.92651891708374,50.54882049560541],[6.888179779052848,50.52133178710949],[6.910038948059139,50.47333908081066],[6.859858989715519,50.44908905029297],[6.80399990081787,50.48480224609375],[6.751090049743766,50.43357849121105],[6.808158874511832,50.35760879516596],[6.713931083679256,50.334491729736435],[6.674900054931754,50.36391067504877],[6.589530944824275,50.377559661865284],[6.45967006683361,50.36001968383795],[6.386488914489746,50.37689971923834],[6.403338909149227,50.32192993164068],[6.33975791931158,50.37989425659191],[6.374671936035155,50.44594955444336],[6.330028057098389,50.49364471435558],[6.223847866058462,50.50228118896479],[6.175640106201172,50.55985260009777],[6.251566886901912,50.59209823608404],[6.259338855743522,50.625400543212834],[6.197566986083984,50.631160736083984],[6.118731975555477,50.70873641967784],[6.028616905212346,50.725215911865234],[6.006219863891602,50.767410278320256],[5.963199138641471,50.795051574707145],[6.03108119964611,50.82139205932623],[6.087715148925895,50.87893295288086],[6.082940101623592,50.921798706054744],[6.015170097351017,50.933158874511655],[6.032363891601619,50.97996902465832],[5.907961845398063,51.00095367431646],[5.87205886840826,51.043411254882805],[5.926199913024845,51.055740356445426],[5.969543933868636,51.03446960449218],[5.998916149139518,51.0817642211914],[6.038741111755371,51.095649719238395],[6.144780158996582,51.17371749877941],[6.078309059143066,51.187469482421875],[6.078186035156364,51.2447128295899],[6.231968879699764,51.365982055664055],[6.214348793029841,51.409561157226676],[6.230510234832821,51.47665023803705],[6.220355987548884,51.509170532226506],[6.156868934631348,51.56924057006841],[6.09095811843872,51.605220794677734],[6.118769168853873,51.66045761108404],[6.035422801971436,51.68281173706066],[6.036541938781851,51.727481842041016],[5.97088003158575,51.809398651123104],[6.060989856719913,51.851593017578125],[6.168982028961238,51.84503173828136],[6.1193590164184,51.89014053344738],[6.169019222259635,51.902938842773494],[6.218544960022029,51.867488861083984],[6.288980960845946,51.87657928466797],[6.310534954070988,51.850990295410156],[6.397315025329532,51.871364593505916],[6.480340003967284,51.85462188720703],[6.553330898284911,51.88270568847662],[6.692440986633528,51.920162200927734],[6.742709159851131,51.899051666259815],[6.838380813598633,51.96559906005854],[6.83536100387596,51.9955291748048],[6.759449005126896,52.03073883056646],[6.698178768157959,52.04011917114258],[6.70068883895874,52.07379150390624],[6.75971794128418,52.08686065673839],[6.768452167511042,52.12076568603521],[6.852960109710693,52.11975097656249],[6.916360855102653,52.1780242919923],[6.968887805938664,52.19045257568371],[6.988433837890625,52.22537231445324],[7.071063995361442,52.243484497070426],[7.159201145172118,52.268169403076286],[7.298637866973991,52.264202117919865],[7.391240119934081,52.31148910522472],[7.532070159912222,52.371109008789006],[7.58010911941534,52.38346099853526],[7.578148841858024,52.4311904907226],[7.61344814300537,52.47238159179681],[7.693008899688778,52.456291198730526],[7.719359874725455,52.401988983154354],[7.811338901519775,52.37171936035156],[7.895120143890323,52.38191986083996],[7.937929153442496,52.36505126953125],[7.976288795471191,52.31486892700201],[7.928679943084716,52.30561065673834],[7.932160854339599,52.17737197875987],[8.01103878021246,52.17615127563482],[8.009200096130314,52.11516952514654],[7.885759830474967,52.086181640625],[7.918758869171199,52.0497207641601],[7.974060058593806,52.03638076782232],[8.038999557495117,52.06489181518555],[8.1602201461792,52.07709884643555],[8.246459960937612,52.12306213378912],[8.288149833679142,52.131198883056754],[8.404229164123649,52.11082077026378],[8.414460182189998,52.14076995849615],[8.474008560180721,52.156681060791016],[8.451660156250057,52.22708129882824],[8.4683198928833,52.253448486328125],[8.443698883056639,52.36478042602539],[8.31338882446289,52.4070396423341],[8.30516242980957,52.444011688232536],[8.432649612426815,52.450199127197266],[8.460728645324762,52.491649627685604],[8.508218765258903,52.514888763427734],[8.557799339294434,52.50093078613287],[8.653689384460506,52.53250885009765],[8.711459159851074,52.477642059326165],[8.709649085998535,52.39556884765625],[8.788468360900879,52.400650024414176],[8.855890274047908,52.390602111816406],[8.92217826843273,52.40291213989257],[8.987609863281307,52.433849334716854],[9.05136871337902,52.502090454101676],[9.13135147094732,52.484748840332145],[9.102117538452148,52.45814132690441],[9.128499031066951,52.41379928588867],[9.088550567626953,52.35715866088873],[9.028349876403809,52.344982147216854],[8.987480163574332,52.31072998046881],[8.971660614013729,52.261981964111385],[9.076158523559627,52.23384094238281],[9.047849655151422,52.1923484802246],[9.05608940124523,52.14773178100591],[9.147498130798454,52.13426208496094],[9.17996883392334,52.08628082275401],[9.176400184631348,52.03401184082037],[9.201719284057617,52.0082893371582],[9.18529987335205,51.9744987487793],[9.269420623779354,51.975749969482536],[9.277660369873159,51.92739105224615],[9.332049369811955,51.91699981689453],[9.37046813964855,51.86161041259776],[9.442108154296932,51.85514068603527],[9.451158523559627,51.79259109497076],[9.388999938964787,51.758239746093864],[9.408809661865234,51.70341873168956],[9.382368087768612,51.64768981933594],[9.451740264892635,51.64538192749029]]]},"properties":{"ID_0":86,"ISO":"DE-NW","NAME_0":"Germany","ID_1":10,"NAME_1":"Nordrhein-Westfalen","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"North Rhine-Westphalia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.133959770202692,50.687709808349666],[8.120570182800293,50.66073989868164],[8.173588752746582,50.60026168823242],[8.155960083007812,50.55492019653326],[8.115130424499625,50.53575134277349],[8.06255912780773,50.55733108520508],[7.995588779449463,50.495899200439396],[8.009419441223145,50.39920043945318],[8.082799911498967,50.374160766601555],[8.096098899841365,50.32944107055664],[8.138090133667104,50.2965087890625],[8.01807022094738,50.230918884277344],[7.925447940826531,50.20378112792963],[7.897068977355957,50.18106079101574],[7.93970012664795,50.14012908935547],[7.934988975525016,50.110019683838004],[7.858398914337215,50.124740600585994],[7.848290920257625,50.08341217041026],[7.78512001037609,50.053112030029354],[7.868689060211294,50.008232116699325],[7.887711048126221,49.97066879272461],[7.986810207367057,49.97499084472662],[8.18796825408947,50.0324592590332],[8.257689476013297,50.027069091796925],[8.334729194641227,49.973751068115284],[8.36583042144781,49.9080696105957],[8.34920978546154,49.88539123535167],[8.396700859069824,49.84989166259771],[8.386138916015625,49.82003021240229],[8.447199821472282,49.722358703613395],[8.38438892364502,49.70563888549815],[8.362480163574162,49.67544937133795],[8.393419265747013,49.61754989624035],[8.429039001464787,49.58562088012701],[8.418828964233512,49.552188873291016],[8.44361877441412,49.501579284668026],[8.508850097656307,49.434150695800895],[8.494589805603141,49.36024856567394],[8.450428962707576,49.33285140991211],[8.491369247436467,49.30128860473644],[8.38765907287609,49.23448181152344],[8.40528869628912,49.220352172851506],[8.369058609008789,49.17065048217785],[8.362239837646484,49.09968948364269],[8.314449310302848,49.056999206543026],[8.295299530029295,49.00415039062506],[8.229839324951172,48.96836853027355],[8.091376304626579,48.98925781250006],[8.051136016845703,49.01275634765631],[7.976319313049316,49.02830123901373],[7.937040328979606,49.05623245239252],[7.867407798767147,49.03349304199219],[7.799933910369872,49.06416320800781],[7.671083927154541,49.04597091674805],[7.627396106720028,49.07339859008783],[7.568486213684139,49.07990646362304],[7.489583015442008,49.13652801513677],[7.491343021392765,49.16851043701172],[7.445586204528752,49.18402481079096],[7.366024017333984,49.1710472106933],[7.300240993499755,49.212810516357536],[7.292399883270376,49.24573135375982],[7.38086986541748,49.28894042968756],[7.410618782043571,49.363220214843686],[7.362909793853817,49.38798904418951],[7.293569087982235,49.39709854125976],[7.260719776153564,49.45523071289068],[7.310669898986872,49.47896957397466],[7.285268783569392,49.511550903320426],[7.268489837646599,49.58148956298834],[7.193348884582633,49.58269119262695],[7.179759025573844,49.60820007324224],[7.116670131683462,49.602088928222706],[7.03186988830572,49.64682006835949],[6.998539924621639,49.630569458007926],[6.8667187690736,49.6137313842774],[6.750059127807673,49.56032943725597],[6.618360042572078,49.53926849365229],[6.496758937835921,49.52909088134771],[6.460019111633244,49.5455207824707],[6.378159046173209,49.54800033569336],[6.376737117767448,49.59218215942394],[6.422409057617243,49.625240325927734],[6.424099922180289,49.66633224487316],[6.503182888031005,49.71570968627935],[6.518823146820067,49.7636833190918],[6.507969856262263,49.80574035644531],[6.397451877593994,49.823604583740234],[6.375780105590933,49.84922790527344],[6.236907005310002,49.892372131347656],[6.219171047210693,49.95164108276373],[6.156370162963981,49.961261749267514],[6.111769199371395,50.04904174804699],[6.118379116058463,50.12276077270519],[6.146426200866699,50.17389297485363],[6.189638137817496,50.189464569091854],[6.170382022857666,50.23625564575206],[6.275639057159537,50.26544189453125],[6.301178932190055,50.31853103637695],[6.403338909149227,50.32192993164068],[6.386488914489746,50.37689971923834],[6.45967006683361,50.36001968383795],[6.589530944824275,50.377559661865284],[6.674900054931754,50.36391067504877],[6.713931083679256,50.334491729736435],[6.808158874511832,50.35760879516596],[6.751090049743766,50.43357849121105],[6.80399990081787,50.48480224609375],[6.859858989715519,50.44908905029297],[6.910038948059139,50.47333908081066],[6.888179779052848,50.52133178710949],[6.92651891708374,50.54882049560541],[7.007449150085506,50.55913162231451],[7.056681156158446,50.59838104248058],[7.150808811187744,50.59461975097656],[7.195660114288386,50.618789672851676],[7.260398864746207,50.61767196655279],[7.364080905914307,50.64413070678711],[7.365079879760685,50.699989318847706],[7.481769084930477,50.71567153930664],[7.601678848266544,50.764862060546925],[7.66074991226202,50.76705932617187],[7.703039169311637,50.824401855468864],[7.763558864593505,50.878620147705135],[7.754129886627311,50.9191513061524],[7.799629211425781,50.94301986694336],[7.854489803314266,50.92636108398443],[7.83456993103033,50.88114929199219],[7.981119155883789,50.83068084716808],[7.974319934845028,50.774669647216854],[8.133959770202692,50.687709808349666]]]},"properties":{"ID_0":86,"ISO":"DE-RP","NAME_0":"Germany","ID_1":11,"NAME_1":"Rheinland-Pfalz","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Rhineland-Palatinate"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.366024017333984,49.1710472106933],[7.293400287628287,49.115158081054744],[7.245446205139216,49.12971115112305],[7.158799171447754,49.1207733154298],[7.104239463806152,49.1386833190918],[7.058024406433162,49.1125869750976],[7.033706188201847,49.18826293945324],[6.934805393219222,49.222129821777344],[6.837654113769588,49.21126174926769],[6.860935211181641,49.17862701416015],[6.834462642669735,49.15137863159191],[6.737987518310604,49.16456985473627],[6.692921638488769,49.21754837036144],[6.66784572601324,49.28043746948248],[6.615992069244611,49.30268478393555],[6.565380573272648,49.34928894042962],[6.599329471588135,49.366619110107415],[6.540528297424373,49.40114593505871],[6.535418987274113,49.434162139892635],[6.422406673431396,49.47601318359381],[6.367599010467585,49.46653747558605],[6.378159046173209,49.54800033569336],[6.460019111633244,49.5455207824707],[6.496758937835921,49.52909088134771],[6.618360042572078,49.53926849365229],[6.750059127807673,49.56032943725597],[6.8667187690736,49.6137313842774],[6.998539924621639,49.630569458007926],[7.03186988830572,49.64682006835949],[7.116670131683462,49.602088928222706],[7.179759025573844,49.60820007324224],[7.193348884582633,49.58269119262695],[7.268489837646599,49.58148956298834],[7.285268783569392,49.511550903320426],[7.310669898986872,49.47896957397466],[7.260719776153564,49.45523071289068],[7.293569087982235,49.39709854125976],[7.362909793853817,49.38798904418951],[7.410618782043571,49.363220214843686],[7.38086986541748,49.28894042968756],[7.292399883270376,49.24573135375982],[7.300240993499755,49.212810516357536],[7.366024017333984,49.1710472106933]]]},"properties":{"ID_0":86,"ISO":"DE-SL","NAME_0":"Germany","ID_1":12,"NAME_1":"Saarland","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.063730239868278,51.64789962768566],[13.016320228576717,51.667060852050895],[12.925069808960018,51.64247894287121],[12.860198974609318,51.680339813232536],[12.786640167236442,51.64440917968744],[12.696819305419863,51.660419464111385],[12.677779197692985,51.63113021850597],[12.544399261474721,51.60338211059576],[12.442049980163572,51.60470199584961],[12.435400009155273,51.5826416015625],[12.357259750366268,51.58729934692383],[12.302309989929311,51.558441162109375],[12.242150306701717,51.55913162231451],[12.199160575866811,51.52273178100591],[12.216580390930119,51.49673080444336],[12.167498588562124,51.45304107666027],[12.191019058227539,51.4306907653808],[12.183770179748592,51.375530242920036],[12.200760841369686,51.331180572509766],[12.158598899841422,51.3205909729005],[12.204987525940055,51.2502212524414],[12.221497535705566,51.18386077880864],[12.208699226379451,51.14356994628906],[12.231939315795955,51.11392974853527],[12.29712009429943,51.09484100341808],[12.272410392761174,51.054729461670036],[12.30749034881603,51.02495956420909],[12.252470016479435,50.95586013793951],[12.193419456481934,50.98212051391601],[12.043869018554686,50.97587203979498],[11.984869003295842,51.02033996582031],[11.883781433105582,51.06132888793951],[11.763709068298397,51.050651550292905],[11.704259872436637,51.072948455810604],[11.645148277282829,51.11373901367199],[11.489728927612305,51.102561950683594],[11.454509735107477,51.14707183837896],[11.472960472106877,51.19165039062499],[11.419919967651367,51.24729919433588],[11.480478286743164,51.29914855957042],[11.426947593689079,51.32519149780285],[11.39778041839611,51.38454055786132],[11.254289627075195,51.39945220947277],[11.147039413452205,51.402809143066406],[11.07571983337408,51.42858886718756],[10.992289543151912,51.4169807434082],[10.962779998779354,51.49143218994135],[10.897368431091309,51.55461883544922],[10.903529167175293,51.59206008911132],[10.861859321594238,51.63322067260753],[10.705129623413143,51.64355087280267],[10.67490005493164,51.698200225830135],[10.601848602294922,51.768039703369254],[10.577259063720703,51.80934906005871],[10.582900047302303,51.85507202148443],[10.64960956573492,51.88962936401367],[10.569430351257381,52.01726150512695],[10.636878967285213,52.01647949218761],[10.691758155822697,52.05276870727544],[10.857770919799918,52.05097961425787],[10.974808692932072,52.05725097656256],[10.94927978515625,52.10540008544933],[11.050539970398061,52.13394165039068],[11.068088531494254,52.166919708251896],[11.02023887634283,52.17837905883789],[11.037719726562443,52.21136093139643],[11.091659545898551,52.22938919067388],[10.99966144561779,52.34056854248058],[11.06054973602295,52.34764099121088],[11.035769462585504,52.384651184081974],[10.936208724975529,52.459011077880916],[10.972538948059139,52.499290466308594],[10.927108764648438,52.60639190673834],[10.790019035339299,52.74053192138683],[10.760579109191895,52.792900085449276],[10.772189140319881,52.854450225830135],[10.942508697509766,52.851379394531186],[10.998458862304688,52.90996932983409],[11.160360336303711,52.90460968017578],[11.240949630737418,52.877979278564396],[11.321439743042106,52.87369918823248],[11.47671985626215,52.93581008911133],[11.514609336853082,52.99877166748058],[11.564100265502873,52.994651794433594],[11.601769447326658,53.03155136108398],[11.687638282775879,52.98247146606457],[11.743320465088004,52.985698699951286],[11.828538894653434,52.92173004150402],[11.90796947479248,52.8875617980957],[11.981528282165584,52.87200927734375],[12.086408615112362,52.88214111328125],[12.239218711853084,52.84344863891612],[12.262378692626951,52.7912216186524],[12.212269783020076,52.75461959838867],[12.20496082305908,52.71015930175787],[12.241068840026912,52.683811187744084],[12.246099472045955,52.64295196533203],[12.183770179748592,52.602798461914176],[12.1575803756715,52.53631973266613],[12.175079345703068,52.502780914306754],[12.266699790954647,52.498119354248104],[12.333218574523983,52.471462249755916],[12.301250457763615,52.419929504394474],[12.311418533325252,52.345729827880916],[12.25396919250494,52.250080108642514],[12.271249771118105,52.21287918090832],[12.227298736572266,52.161540985107536],[12.280429840088003,52.10176849365246],[12.369858741760254,52.04156875610363],[12.43582820892334,52.01491165161127],[12.490827560424917,52.0290412902832],[12.549958229064941,51.980232238769645],[12.628700256347656,51.979240417480526],[12.65982913970953,52.00474166870128],[12.714208602905387,52.0003395080567],[12.858329772949217,51.965129852294865],[12.863180160522573,51.931758880615234],[12.972139358520565,51.933971405029354],[12.98296928405756,51.90053176879883],[13.055450439453239,51.899509429931584],[13.048269271850586,51.870010375976676],[13.137908935546818,51.846549987793075],[13.178320884704533,51.801578521728565],[13.179808616638297,51.690589904785156],[13.063730239868278,51.64789962768566]]]},"properties":{"ID_0":86,"ISO":"DE-ST","NAME_0":"Germany","ID_1":13,"NAME_1":"Sachsen-Anhalt","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Saxony-Anhalt"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.063730239868278,51.64789962768566],[13.098188400268498,51.606739044189396],[13.140560150146541,51.61351013183588],[13.156909942626953,51.5726203918457],[13.226419448852653,51.512451171875],[13.200678825378532,51.472179412841854],[13.233359336853084,51.39775848388683],[13.330400466918887,51.42581176757824],[13.444268226623535,51.43135070800775],[13.54295921325695,51.381359100341854],[13.761530876159666,51.36215209960937],[13.85781955718994,51.38259887695318],[13.928709983825684,51.381031036377],[13.971598625183162,51.39891052246105],[14.015210151672306,51.37430191040045],[14.080458641052358,51.44773864746105],[14.122911453247013,51.5244712829591],[14.147539138793944,51.541671752929744],[14.286419868469352,51.52983093261719],[14.337259292602653,51.51226043701172],[14.458319664001577,51.55138015747081],[14.676649093628042,51.558349609375114],[14.710829734802358,51.58467864990245],[14.731350898742733,51.52822113037121],[14.828398704528809,51.50131225585949],[14.910359382629395,51.49319076538097],[14.963753700256404,51.45354461669921],[14.966798782348688,51.36339569091808],[15.033869743347111,51.295089721679744],[15.038112640380858,51.24029922485362],[15.005451202392692,51.21169662475597],[14.977331161499025,51.07943725585949],[14.933150291442926,51.02767944335943],[14.899223327636776,50.94928741455084],[14.820368766784723,50.89197158813482],[14.82346153259283,50.86433792114269],[14.7782506942749,50.82465362548828],[14.642418861389274,50.84740066528331],[14.606470108032227,50.86211013793939],[14.626298904418947,50.89878082275402],[14.565681457519586,50.93638610839855],[14.595055580139217,50.98851013183593],[14.533839225769041,51.01417922973632],[14.448800086975211,51.03070068359381],[14.409878730773926,51.008609771728516],[14.351578712463322,51.03015136718756],[14.263107299804688,51.01636123657238],[14.258379936218262,50.97280883789074],[14.400946617126465,50.94234848022472],[14.37226867675787,50.888580322265625],[14.294939994812125,50.87480163574219],[14.254519462585561,50.88637924194336],[14.21785926818859,50.85092926025401],[14.041428565978947,50.804660797119254],[13.983920097351074,50.810150146484375],[13.935900688171442,50.78213119506847],[13.89546871185297,50.78346633911144],[13.856819152832031,50.721721649169865],[13.652745246887264,50.733047485351676],[13.620046615600584,50.71299362182617],[13.548975944519157,50.713214874267635],[13.525968551635856,50.63554000854492],[13.46564865112316,50.60393142700201],[13.37684154510498,50.627235412597656],[13.284665107727164,50.57914352416998],[13.248618125915584,50.59226989746105],[13.195990562439022,50.50059127807623],[13.091371536254996,50.49878692626959],[13.033267021179142,50.508548736572266],[13.028186798095701,50.44935989379877],[12.935789108276424,50.40698623657238],[12.843469619750975,50.4550895690918],[12.761409759521541,50.440425872802734],[12.706069946289006,50.4089813232423],[12.516113281249943,50.40008544921875],[12.493091583252067,50.349159240722656],[12.406117439270133,50.320255279541016],[12.409830093383846,50.29790878295893],[12.35857677459728,50.26696014404297],[12.321889877319277,50.18358993530279],[12.282715797424316,50.18267822265625],[12.273498535156193,50.23492431640624],[12.194885253906364,50.279113769531364],[12.194091796875114,50.32287597656256],[12.125018119812012,50.313156127929744],[12.065270423889158,50.33790969848644],[11.975892066955623,50.35607910156256],[11.983886718750057,50.39349365234381],[11.927703857421875,50.42685699462896],[11.922912597656191,50.45648193359386],[11.971313476562614,50.49029541015625],[11.890838623046989,50.557010650634815],[11.932495117187498,50.56091308593756],[11.95727634429926,50.60192871093756],[12.034618377685547,50.60200881958008],[12.03888034820568,50.55749511718756],[12.13488674163824,50.579895019531364],[12.221497535705566,50.64702224731445],[12.281126976013184,50.6397094726563],[12.33747863769537,50.68809127807622],[12.28943920135498,50.69549942016607],[12.242568969726676,50.74710845947271],[12.255799293518066,50.81661987304682],[12.362768173217773,50.830051422119254],[12.392770767211914,50.85520935058594],[12.45154953002924,50.84682846069347],[12.500049591064453,50.8973121643067],[12.612439155578668,50.90625000000011],[12.666169166564998,50.92364883422857],[12.632898330688477,50.986862182617244],[12.55032062530529,50.999340057373104],[12.51662826538086,51.06608200073248],[12.3450088500976,51.10528182983409],[12.29712009429943,51.09484100341808],[12.231939315795955,51.11392974853527],[12.208699226379451,51.14356994628906],[12.221497535705566,51.18386077880864],[12.204987525940055,51.2502212524414],[12.158598899841422,51.3205909729005],[12.200760841369686,51.331180572509766],[12.183770179748592,51.375530242920036],[12.191019058227539,51.4306907653808],[12.167498588562124,51.45304107666027],[12.216580390930119,51.49673080444336],[12.199160575866811,51.52273178100591],[12.242150306701717,51.55913162231451],[12.302309989929311,51.558441162109375],[12.357259750366268,51.58729934692383],[12.435400009155273,51.5826416015625],[12.442049980163572,51.60470199584961],[12.544399261474721,51.60338211059576],[12.677779197692985,51.63113021850597],[12.696819305419863,51.660419464111385],[12.786640167236442,51.64440917968744],[12.860198974609318,51.680339813232536],[12.925069808960018,51.64247894287121],[13.016320228576717,51.667060852050895],[13.063730239868278,51.64789962768566]]]},"properties":{"ID_0":86,"ISO":"DE-SN","NAME_0":"Germany","ID_1":14,"NAME_1":"Sachsen","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Saxony"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[11.069721221923826,54.534702301025334],[11.17138862609869,54.521526336670036],[11.243056297302303,54.49347305297862],[11.31360912322998,54.40208435058594],[11.245278358459473,54.41208267211914],[11.175276756286621,54.400970458984375],[11.097498893737736,54.41374969482422],[11.096944808960075,54.44374847412114],[11.006944656372125,54.44291687011719],[11.011388778686522,54.48485946655279],[11.069721221923826,54.534702301025334]]],[[[8.691945075988883,54.557083129882926],[8.67861175537115,54.49874877929682],[8.621945381164664,54.489307403564396],[8.592498779296818,54.53347396850591],[8.691945075988883,54.557083129882926]]],[[[8.356944084167537,54.71152877807617],[8.339165687561092,54.6893043518067],[8.395278930664006,54.612083435058594],[8.36250019073492,54.60847091674816],[8.291945457458494,54.67041778564447],[8.356944084167537,54.71152877807617]]],[[[8.539723396301326,54.755695343017635],[8.595276832580623,54.717918395996094],[8.566943168640194,54.67986297607427],[8.480277061462516,54.68097305297863],[8.399167060852164,54.70208358764654],[8.42138767242443,54.74319458007818],[8.539723396301326,54.755695343017635]]],[[[10.89471817016613,53.95597076416015],[10.887930870056266,53.920150756835994],[10.773878097534123,53.881019592285156],[10.762510299682617,53.829288482666065],[10.769919395446777,53.75511932373047],[10.852029800415039,53.70563888549805],[10.921190261840934,53.70045852661132],[10.95374965667736,53.651401519775504],[10.911029815673828,53.574481964111385],[10.82373046875,53.56175994873052],[10.818040847778263,53.524841308593864],[10.69486045837408,53.46443176269531],[10.63937854766857,53.4650993347168],[10.621770858764704,53.39173889160156],[10.597419738769588,53.37364959716797],[10.506809234619084,53.38425064086914],[10.391718864441032,53.43540191650384],[10.319178581237848,53.44248962402344],[10.246680259704704,53.4938316345216],[10.219569206237793,53.530601501464844],[10.168158531188965,53.534091949463004],[10.15961933135992,53.589401245117244],[10.210621833801211,53.59326171875006],[10.228058815002555,53.63389205932617],[10.18179035186779,53.67800903320324],[10.173889160156193,53.71858215332037],[10.084019660949707,53.72935104370123],[10.072678565979004,53.68870925903325],[10.002109527588004,53.69211959838872],[9.990429878234918,53.658859252929744],[9.919628143310604,53.66593170166021],[9.850890159607047,53.60655212402344],[9.78622817993164,53.620971679687614],[9.72939968109142,53.59474945068365],[9.723658561706541,53.569000244140675],[9.67358016967779,53.57526016235362],[9.547169685363826,53.624309539795036],[9.507008552551213,53.7008514404298],[9.40497016906744,53.75769042968761],[9.358848571777457,53.82297897338873],[9.288209915161133,53.8694114685058],[9.199728965759391,53.886032104492244],[9.09638881683344,53.88398361206055],[9.05138874053955,53.89902877807617],[8.971945762634334,53.89236068725586],[8.914723396301383,53.9254150390625],[8.82694530487072,54.02569580078136],[8.878056526184139,54.046249389648494],[8.96805477142334,54.036529541015675],[8.985832214355469,54.061248779296875],[8.927499771118164,54.131805419921875],[8.869722366333008,54.12347412109381],[8.80749893188488,54.175140380859375],[8.84638786315918,54.26486206054699],[8.740278244018498,54.2901382446289],[8.678055763244686,54.26819610595703],[8.579722404480037,54.308193206787166],[8.675276756286621,54.36680603027344],[8.670832633972168,54.400695800781364],[8.811945915222168,54.412918090820256],[8.855277061462516,54.40319442749029],[8.917498588562069,54.4243049621582],[9.012499809265194,54.49041748046874],[8.989167213439998,54.51930618286133],[8.893054962158201,54.45875167846691],[8.806388854980526,54.47041702270502],[8.809166908264274,54.50013732910156],[8.870278358459473,54.52652740478521],[8.876943588256891,54.60013961791992],[8.815278053283803,54.652915954589844],[8.7547225952149,54.68097305297863],[8.68027782440197,54.78569412231456],[8.60527801513666,54.84125137329101],[8.590276718139704,54.885139465332145],[8.513610839843807,54.88263702392584],[8.45194530487072,54.85708236694336],[8.40361118316656,54.84819412231451],[8.365832328796387,54.87541580200195],[8.290833473205566,54.88986206054693],[8.31027793884283,54.93152618408197],[8.39416599273676,55.049026489257756],[8.439166069030875,55.01847076416027],[8.353609085083008,54.96847152709961],[8.36250019073492,54.908748626708984],[8.461388587951717,54.8768043518067],[8.521388053894157,54.88402938842779],[8.588054656982422,54.88597106933594],[8.638048171997127,54.912872314453125],[8.731049537658691,54.895195007324276],[8.812039375305233,54.916736602783146],[8.850448608398494,54.89314651489258],[8.97505187988287,54.900577545166016],[9.047170639038027,54.86909866333008],[9.143150329589787,54.87075042724609],[9.242171287536621,54.8488655090332],[9.282591819763182,54.80223464965826],[9.340627670288143,54.80762100219738],[9.38758468627924,54.83833694458019],[9.428054809570426,54.814861297607536],[9.589722633361816,54.846805572509766],[9.62472152709961,54.83124923706066],[9.795278549194336,54.78985977172863],[9.851388931274355,54.75430679321289],[9.956945419311637,54.77902603149408],[9.994721412658748,54.68875122070312],[10.03250026702892,54.66013717651373],[10.027500152587834,54.550415039062614],[9.9669446945191,54.50347137451183],[9.84083366394043,54.46569442749023],[9.865834236145018,54.44736099243164],[10.023612022399902,54.47541809082037],[10.135833740234432,54.48402786254882],[10.193610191345272,54.4562492370606],[10.188611984252987,54.39208221435558],[10.142499923706167,54.35874938964838],[10.175276756286678,54.33874893188482],[10.215833663940428,54.404304504394645],[10.331944465637207,54.43569564819347],[10.390832901000977,54.42569351196295],[10.48750019073492,54.38874816894531],[10.603610992431697,54.362640380859425],[10.683056831359977,54.31041717529302],[10.786390304565487,54.31097412109381],[10.870832443237303,54.35819625854497],[10.94861030578619,54.38458251953131],[11.072499275207633,54.34458160400402],[11.093610763549805,54.19985961914057],[10.953611373901367,54.140415191650504],[10.890831947326774,54.09430694580084],[10.80138874053955,54.08986282348644],[10.750278472900447,54.03847122192383],[10.785278320312557,53.99736022949219],[10.875832557678223,53.987915039062614],[10.89471817016613,53.95597076416015]]]]},"properties":{"ID_0":86,"ISO":"DE-SH","NAME_0":"Germany","ID_1":15,"NAME_1":"Schleswig-Holstein","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.29712009429943,51.09484100341808],[12.3450088500976,51.10528182983409],[12.51662826538086,51.06608200073248],[12.55032062530529,50.999340057373104],[12.632898330688477,50.986862182617244],[12.666169166564998,50.92364883422857],[12.612439155578668,50.90625000000011],[12.500049591064453,50.8973121643067],[12.45154953002924,50.84682846069347],[12.392770767211914,50.85520935058594],[12.362768173217773,50.830051422119254],[12.255799293518066,50.81661987304682],[12.242568969726676,50.74710845947271],[12.28943920135498,50.69549942016607],[12.33747863769537,50.68809127807622],[12.281126976013184,50.6397094726563],[12.221497535705566,50.64702224731445],[12.13488674163824,50.579895019531364],[12.03888034820568,50.55749511718756],[12.034618377685547,50.60200881958008],[11.95727634429926,50.60192871093756],[11.932495117187498,50.56091308593756],[11.890838623046989,50.557010650634815],[11.971313476562614,50.49029541015625],[11.922912597656191,50.45648193359386],[11.927703857421875,50.42685699462896],[11.827100753784293,50.39291000366211],[11.787029266357365,50.422641754150504],[11.698430061340389,50.39630889892584],[11.622029304504508,50.38867950439459],[11.592958450317496,50.40353012084972],[11.533889770507812,50.381019592285156],[11.417508125305233,50.451450347900334],[11.43009090423584,50.51472091674816],[11.371511459350586,50.52196121215826],[11.32425975799572,50.48833084106445],[11.248118400573844,50.47689056396495],[11.27088928222662,50.41751098632818],[11.245929718017578,50.26517868041998],[11.15938854217535,50.32051849365228],[11.113239288330135,50.36489868164074],[11.038508415222282,50.34236145019537],[10.934719085693416,50.390232086181584],[10.831380844116268,50.38624954223633],[10.75701045989996,50.35641860961925],[10.723039627075309,50.32294845581055],[10.809300422668569,50.274822235107536],[10.734579086303825,50.20732879638677],[10.617910385131836,50.22182083129882],[10.611628532409725,50.28913116455084],[10.581978797912654,50.33020019531261],[10.49367046356201,50.35243988037115],[10.45805835723877,50.40090942382818],[10.416999816894586,50.393390655517635],[10.328149795532283,50.49032211303722],[10.292880058288631,50.49404907226574],[10.204319953918398,50.553798675537166],[10.098520278930721,50.54988861083989],[10.039758682251033,50.51588058471691],[10.063029289245662,50.55731201171881],[10.03817081451416,50.61396026611334],[10.086059570312557,50.63238143920904],[10.048980712890623,50.67726135253912],[9.951470375061149,50.67092132568359],[9.946098327636832,50.6301002502442],[9.884748458862305,50.638359069824276],[9.873539924621696,50.6746711730957],[9.915069580078125,50.69692993164068],[9.93896007537836,50.73741912841808],[9.926839828491154,50.77061080932617],[9.950229644775504,50.8223991394044],[9.998019218444881,50.82971191406256],[10.062809944152775,50.89242172241222],[10.014289855957031,50.93717193603515],[10.042918205261174,51.01494216918945],[10.197978973388786,50.999240875244084],[10.203298568725643,51.04370880126959],[10.149688720703125,51.05513000488287],[10.237089157104549,51.18072891235357],[10.195248603820858,51.20320892333996],[10.075889587402344,51.22618103027344],[10.027479171752985,51.27843093872082],[9.949359893798828,51.304889678955135],[9.93714809417719,51.37919998168945],[10.025360107421875,51.41965103149414],[10.17324829101568,51.44480133056646],[10.338228225708065,51.51441955566412],[10.384880065917969,51.55894088745123],[10.443818092346191,51.58860015869146],[10.52212905883789,51.55052185058605],[10.640660285949764,51.58024978637695],[10.63994026184082,51.61925888061529],[10.705129623413143,51.64355087280267],[10.861859321594238,51.63322067260753],[10.903529167175293,51.59206008911132],[10.897368431091309,51.55461883544922],[10.962779998779354,51.49143218994135],[10.992289543151912,51.4169807434082],[11.07571983337408,51.42858886718756],[11.147039413452205,51.402809143066406],[11.254289627075195,51.39945220947277],[11.39778041839611,51.38454055786132],[11.426947593689079,51.32519149780285],[11.480478286743164,51.29914855957042],[11.419919967651367,51.24729919433588],[11.472960472106877,51.19165039062499],[11.454509735107477,51.14707183837896],[11.489728927612305,51.102561950683594],[11.645148277282829,51.11373901367199],[11.704259872436637,51.072948455810604],[11.763709068298397,51.050651550292905],[11.883781433105582,51.06132888793951],[11.984869003295842,51.02033996582031],[12.043869018554686,50.97587203979498],[12.193419456481934,50.98212051391601],[12.252470016479435,50.95586013793951],[12.30749034881603,51.02495956420909],[12.272410392761174,51.054729461670036],[12.29712009429943,51.09484100341808]]]},"properties":{"ID_0":86,"ISO":"DE-TH","NAME_0":"Germany","ID_1":16,"NAME_1":"Thüringen","TYPE_1":"Land","ENGTYPE_1":"State","NL_NAME_1":null,"VARNAME_1":"Thuringia"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson
new file mode 100644
index 0000000..d261534
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson
@@ -0,0 +1,38 @@
+{"type":"FeatureCollection", "features": [
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[93.848053,7.24028],[93.870277,7.215834],[93.891388,7.121111],[93.887779,7.08639],[93.916664,7.048404],[93.936569,6.962355],[93.917221,6.944516],[93.897224,6.902156],[93.893608,6.846944],[93.908752,6.838208],[93.896233,6.804865],[93.853203,6.81539],[93.847282,6.779801],[93.828316,6.754256],[93.806656,6.76252],[93.813332,6.807777],[93.785713,6.835849],[93.779724,6.881528],[93.741943,6.925],[93.745277,6.961945],[93.699303,7.011527],[93.67028,7.013054],[93.65583,7.126389],[93.675827,7.139929],[93.674904,7.176498],[93.686111,7.19],[93.733612,7.187221],[93.754997,7.211389],[93.807709,7.214861],[93.808319,7.228891],[93.848053,7.24028]]],[[[93.713058,7.443611],[93.724724,7.397221],[93.756462,7.374368],[93.724998,7.310001],[93.679443,7.284723],[93.648613,7.2425],[93.628761,7.268552],[93.626389,7.305834],[93.636108,7.32139],[93.631111,7.361666],[93.661942,7.380834],[93.707497,7.393891],[93.713058,7.443611]]],[[[93.379997,8.024722],[93.409653,8.007083],[93.402779,7.974451],[93.459717,7.937501],[93.474167,7.895834],[93.397499,7.901945],[93.38028,7.882777],[93.344437,7.901671],[93.347778,7.925557],[93.318054,7.943056],[93.310555,7.961945],[93.336388,8.012223],[93.354721,8.007781],[93.379997,8.024722]]],[[[93.547287,8.028052],[93.563614,8.024722],[93.582771,7.99167],[93.573891,7.928891],[93.507225,7.985277],[93.547287,8.028052]]],[[[93.526489,8.231271],[93.544167,8.225001],[93.544724,8.19611],[93.504356,8.144301],[93.548332,8.08833],[93.553055,8.066389],[93.52417,8.051666],[93.515831,8.08389],[93.48333,8.0775],[93.458885,8.124443],[93.455002,8.175562],[93.490555,8.198889],[93.494652,8.222774],[93.526489,8.231271]]],[[[93.126274,8.355864],[93.143402,8.346504],[93.126114,8.277223],[93.154297,8.24304],[93.194313,8.224992],[93.195557,8.193061],[93.123337,8.220835],[93.085281,8.273888],[93.095276,8.340277],[93.126274,8.355864]]],[[[93.615997,8.573626],[93.623047,8.529441],[93.63472,8.524445],[93.642426,8.467426],[93.626663,8.46722],[93.624931,8.515148],[93.610138,8.544326],[93.615997,8.573626]]],[[[92.787781,9.244166],[92.819168,9.213241],[92.831871,9.16341],[92.811111,9.123892],[92.731667,9.124377],[92.719727,9.146072],[92.720833,9.21361],[92.765274,9.214722],[92.787781,9.244166]]],[[[92.515831,10.897641],[92.558334,10.863333],[92.561386,10.811945],[92.587708,10.786945],[92.582779,10.7425],[92.597618,10.683096],[92.552711,10.637849],[92.544441,10.593333],[92.568336,10.576112],[92.531357,10.51844],[92.499031,10.511181],[92.434723,10.548333],[92.401657,10.53139],[92.384163,10.543891],[92.409721,10.583334],[92.420563,10.61472],[92.408333,10.648611],[92.380974,10.666479],[92.3825,10.719722],[92.376114,10.781667],[92.413055,10.788889],[92.431068,10.821759],[92.457413,10.83999],[92.458611,10.863062],[92.515831,10.897641]]],[[[92.641457,11.51014],[92.668175,11.490396],[92.685066,11.43326],[92.664146,11.394991],[92.690613,11.369909],[92.638428,11.346521],[92.599373,11.34676],[92.581207,11.366671],[92.587852,11.401252],[92.622459,11.404543],[92.623589,11.440781],[92.611069,11.458632],[92.61628,11.48514],[92.641457,11.51014]]],[[[92.218933,11.592323],[92.269905,11.584944],[92.274643,11.534921],[92.250313,11.5258],[92.21685,11.528831],[92.208099,11.54775],[92.218933,11.592323]]],[[[92.539757,11.60332],[92.566704,11.59213],[92.553436,11.561721],[92.537506,11.56122],[92.539757,11.60332]]],[[[93.020836,11.843331],[93.063316,11.84476],[93.049988,11.812221],[93.020836,11.843331]]],[[[92.969536,12.03368],[93.003326,12.02917],[93.008331,11.998055],[93.037437,11.947452],[93.053841,11.896162],[93.022461,11.900852],[92.994476,11.941642],[92.973366,11.94917],[92.960793,11.979731],[92.933868,11.984993],[92.930847,12.005556],[92.969536,12.03368]]],[[[92.991364,12.108928],[93.003326,12.105001],[92.998589,12.046391],[92.961823,12.072202],[92.959732,12.107185],[92.991364,12.108928]]],[[[93.027779,12.156941],[93.035553,12.09777],[92.962311,12.122801],[92.963303,12.150785],[92.993301,12.140832],[93.027779,12.156941]]],[[[93.068604,12.211334],[93.085457,12.195221],[93.09404,12.14838],[93.092216,12.106909],[93.070038,12.087172],[93.037437,12.134496],[93.068604,12.211334]]],[[[92.700867,12.235609],[92.715515,12.168323],[92.736664,12.182223],[92.755508,12.15431],[92.735283,12.08884],[92.775688,12.030902],[92.761665,12.020555],[92.757172,11.988371],[92.725861,11.97422],[92.715965,11.95082],[92.73172,11.89915],[92.746643,11.932113],[92.777122,11.93844],[92.787682,11.925563],[92.778946,11.892141],[92.786942,11.87173],[92.754898,11.717441],[92.701981,11.692001],[92.716141,11.66588],[92.756248,11.665721],[92.752853,11.609622],[92.730141,11.55784],[92.727936,11.517591],[92.663933,11.506639],[92.646156,11.523619],[92.650627,11.551821],[92.607376,11.59478],[92.608109,11.63451],[92.595177,11.66516],[92.599197,11.689893],[92.587372,11.717332],[92.552299,11.72127],[92.556053,11.77269],[92.545601,11.827981],[92.524727,11.82606],[92.513519,11.848001],[92.526421,11.895022],[92.565376,11.943224],[92.578407,11.927181],[92.586136,11.888481],[92.611046,11.87126],[92.606003,11.923413],[92.61306,12.0066],[92.625557,12.061939],[92.623611,12.102781],[92.645729,12.179162],[92.689392,12.23535],[92.700867,12.235609]]],[[[92.730614,12.242454],[92.762299,12.229374],[92.76368,12.18218],[92.723442,12.188842],[92.730614,12.242454]]],[[[92.776573,12.310281],[92.809479,12.312831],[92.829956,12.300371],[92.86972,12.300834],[92.88765,12.2588],[92.859436,12.246941],[92.871887,12.226671],[92.798592,12.108561],[92.792984,12.082825],[92.764999,12.06333],[92.739479,12.09895],[92.765388,12.176521],[92.768417,12.227721],[92.742287,12.24554],[92.781723,12.28508],[92.776573,12.310281]]],[[[93.839699,12.32082],[93.872437,12.267779],[93.880699,12.236642],[93.826683,12.24486],[93.814789,12.28527],[93.839699,12.32082]]],[[[92.898888,12.915831],[92.909042,12.883089],[92.928284,12.883335],[92.954056,12.807463],[92.93454,12.78156],[92.96006,12.754981],[92.976891,12.718171],[92.96521,12.680971],[92.956139,12.608082],[92.97551,12.5419],[92.94973,12.464405],[92.923576,12.43595],[92.877998,12.417699],[92.829445,12.428611],[92.838058,12.398057],[92.874046,12.35335],[92.886513,12.323292],[92.832428,12.302559],[92.809143,12.314921],[92.771896,12.318071],[92.747948,12.299979],[92.719139,12.300898],[92.700836,12.33676],[92.69809,12.42099],[92.708298,12.491572],[92.694267,12.514758],[92.708893,12.556742],[92.706947,12.59306],[92.715225,12.63643],[92.744522,12.671166],[92.741478,12.72448],[92.721123,12.78814],[92.72438,12.827971],[92.738106,12.829491],[92.792175,12.890091],[92.824348,12.895342],[92.827858,12.886047],[92.834099,12.885521],[92.839699,12.891292],[92.843056,12.885995],[92.840187,12.878271],[92.841728,12.875607],[92.844788,12.875062],[92.87468,12.881927],[92.898888,12.915831]]],[[[92.695656,12.991959],[92.719276,12.97941],[92.721497,12.888345],[92.714531,12.862803],[92.689827,12.834491],[92.671776,12.794155],[92.649261,12.860601],[92.664543,12.8806],[92.670097,12.951671],[92.695656,12.991959]]],[[[93.029442,13.573334],[93.04361,13.505279],[93.033241,13.4576],[93.036392,13.418333],[93.050827,13.40556],[93.062767,13.36083],[93.07917,13.341391],[93.071953,13.322771],[93.039856,13.322981],[93.027496,13.345141],[93.003334,13.353334],[92.977203,13.324341],[93.013336,13.306945],[93.046112,13.259172],[93.056114,13.232777],[93.032219,13.178059],[93.037407,13.138872],[93.030563,13.068891],[93.00634,13.030811],[92.971138,13.029471],[92.960602,13.014841],[92.91629,13.05415],[92.90361,13.021943],[92.907494,12.983934],[92.882706,12.983043],[92.877197,12.946141],[92.857162,12.93431],[92.872116,12.88254],[92.857552,12.878711],[92.851059,12.878611],[92.842972,12.8763],[92.841263,12.877182],[92.843887,12.885562],[92.843468,12.890991],[92.801483,12.90075],[92.790833,13.012223],[92.796669,13.08944],[92.82,13.101111],[92.809723,13.153055],[92.831673,13.213892],[92.850563,13.24028],[92.822502,13.277222],[92.836403,13.366941],[92.852776,13.386944],[92.845276,13.408612],[92.872223,13.415561],[92.876663,13.475001],[92.903702,13.49725],[92.929443,13.501667],[92.91861,13.536944],[92.964722,13.544444],[92.993057,13.566112],[93.015518,13.549871],[93.029442,13.573334]]],[[[93.015831,13.676112],[93.014717,13.64389],[92.986389,13.64278],[92.981667,13.665279],[93.015831,13.676112]]]]},"properties":{"ID_0":105,"ISO":"IN-AN","NAME_0":"India","ID_1":1,"NAME_1":"Andaman and Nicobar"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[77.50945281982428,15.920860290527287],[77.51457977294928,15.943429946899357],[77.51589965820312,15.957461357116756],[77.51487731933588,15.963151931762752],[77.50901031494158,15.967440605163688],[77.50551605224638,15.972668647766056],[77.50549316406278,15.978761672973633],[77.51010894775385,16.002250671386776],[77.50168609619169,16.005540847778377],[77.49072265625,16.03063011169445],[77.49952697753912,16.05426025390625],[77.50293731689459,16.073232650756836],[77.4866714477539,16.11576080322277],[77.48362731933611,16.15855026245123],[77.48837280273432,16.178680419921932],[77.49491882324219,16.187120437622127],[77.49494171142584,16.195350646972656],[77.49369812011747,16.20617103576683],[77.4953231811524,16.213001251220703],[77.48755645751964,16.249820709228516],[77.50122833251959,16.26781082153326],[77.51309204101568,16.2707195281983],[77.51933288574219,16.27088165283203],[77.52442169189447,16.269781112671126],[77.5649871826173,16.297710418701172],[77.58068084716791,16.286060333251953],[77.58835601806658,16.29565048217779],[77.59099578857422,16.3046112060548],[77.59084320068376,16.311979293823356],[77.58663940429705,16.320449829101506],[77.58438873291021,16.32804107666027],[77.53515625000017,16.352939605713004],[77.51885986328153,16.37010955810547],[77.51014709472673,16.37018013000494],[77.48137664794922,16.3777694702149],[77.4613113403322,16.375440597534407],[77.43811035156256,16.374429702758903],[77.42778015136719,16.365079879760742],[77.42220306396484,16.362842559814567],[77.41174316406267,16.362680435180664],[77.3731994628908,16.37992095947277],[77.35253906250028,16.37660980224615],[77.34294891357428,16.379720687866154],[77.33273315429682,16.38829994201666],[77.30696868896513,16.394020080566463],[77.28466033935541,16.4029998779298],[77.2782058715822,16.410709381103572],[77.2747573852539,16.417739868164006],[77.26925659179705,16.42308044433588],[77.26438903808605,16.43005180358898],[77.25151062011736,16.4679012298584],[77.32440948486334,16.480930328369254],[77.32995605468756,16.480691909790153],[77.3436584472658,16.48205947875988],[77.34790039062506,16.48551750183111],[77.35163116455078,16.483320236206055],[77.35816955566412,16.48315048217779],[77.3662872314456,16.484109878540153],[77.36908721923834,16.502109527588004],[77.37290191650396,16.50601959228527],[77.37908172607416,16.51072120666504],[77.381156921387,16.511539459228516],[77.40061187744169,16.51595115661621],[77.41197967529303,16.513811111450252],[77.4153213500976,16.517829895019645],[77.4209594726563,16.56517028808588],[77.43672943115251,16.58120918273937],[77.44326019287115,16.582059860229606],[77.45639038085938,16.58099937438965],[77.46038055419939,16.583469390869197],[77.46417236328142,16.584209442138672],[77.46418762207048,16.587190628051758],[77.45877838134794,16.59205055236822],[77.46034240722656,16.595550537109375],[77.46420288085955,16.595140457153434],[77.4646759033206,16.59744071960455],[77.4636306762697,16.60481071472168],[77.45388031005876,16.60741996765148],[77.47133636474621,16.64353179931652],[77.46939086914068,16.646911621093977],[77.46141815185558,16.64883041381836],[77.45478057861357,16.64487075805664],[77.44851684570312,16.63883018493658],[77.44406127929699,16.635791778564567],[77.43836975097685,16.636201858520508],[77.43293762207037,16.637638092041072],[77.41657257080084,16.66281127929699],[77.43715667724615,16.66658020019537],[77.44642639160156,16.674160003662223],[77.46504211425793,16.678281784057617],[77.46750640869146,16.696800231933594],[77.46746063232428,16.70237922668457],[77.46877288818376,16.708709716797102],[77.46679687500028,16.711940765380803],[77.46103668212902,16.713161468505916],[77.45627593994152,16.71068954467779],[77.44845581054699,16.71357917785656],[77.44541168212919,16.713800430297795],[77.43737030029303,16.707548141479606],[77.43325805664062,16.709110260009766],[77.43000793457026,16.711700439453125],[77.4254302978515,16.711759567260856],[77.42341613769537,16.71453094482422],[77.4372100830081,16.763130187988395],[77.46733856201183,16.776599884033146],[77.47113800048834,16.779130935669173],[77.47162628173845,16.785181045532227],[77.4717559814456,16.796289443969783],[77.4657592773438,16.800830841064396],[77.46272277832037,16.804519653320426],[77.4566268920899,16.823749542236328],[77.46039581298828,16.8441104888916],[77.45339965820318,16.909032821655273],[77.46774291992216,16.91711044311529],[77.46354675292997,16.929040908813533],[77.46597290039068,16.934570312500114],[77.46430206298857,16.93980026245123],[77.4640731811524,16.952690124511832],[77.47918701171903,16.968032836914062],[77.47998046874994,16.975170135498047],[77.47837066650396,16.99024963378912],[77.48323059082031,16.99867820739746],[77.49938964843778,17.00732040405279],[77.46263885498047,17.104070663452205],[77.3763275146485,17.137889862060547],[77.3754196166995,17.148700714111442],[77.36686706542963,17.15133094787609],[77.35999298095732,17.16162109375],[77.38035583496105,17.219770431518555],[77.45450592041021,17.27589035034191],[77.43402099609375,17.288259506225586],[77.43776702880871,17.296689987182845],[77.44043731689464,17.297809600830135],[77.4496383666995,17.314899444580078],[77.45635223388689,17.34498977661127],[77.45298004150396,17.348808288574446],[77.4497680664063,17.350048065185774],[77.44988250732439,17.36306190490717],[77.45159912109392,17.37049102783203],[77.47931671142584,17.36961174011242],[77.47534179687511,17.368150711059627],[77.472412109375,17.363178253173828],[77.47447204589861,17.359170913696346],[77.48261260986357,17.3544597625733],[77.49912261962896,17.35407066345215],[77.50975799560564,17.359270095825195],[77.52081298828125,17.362051010131836],[77.52133178710966,17.386331558227482],[77.53357696533197,17.3988494873048],[77.52671813964844,17.405990600585938],[77.51068878173822,17.412540435791016],[77.51014709472673,17.42725944519043],[77.5233764648438,17.436689376831282],[77.53347015380865,17.440950393676758],[77.54884338378906,17.43492126464838],[77.55777740478544,17.435270309448242],[77.57256317138678,17.42951965332037],[77.57319641113293,17.454200744628906],[77.59041595458979,17.448102951049805],[77.5959014892581,17.442680358886776],[77.60447692871105,17.443090438842773],[77.61061096191435,17.444232940673828],[77.61144256591814,17.45290946960472],[77.6109466552735,17.469940185546932],[77.64808654785162,17.481178283691634],[77.66488647460943,17.476289749145565],[77.68401336669933,17.472850799560547],[77.68467712402361,17.485229492187614],[77.68799591064459,17.49854278564476],[77.66606903076178,17.509950637817383],[77.66120910644548,17.514810562133846],[77.6566162109375,17.521339416503906],[77.645317077637,17.518791198730582],[77.6331558227539,17.523080825805607],[77.62121582031256,17.52225112915039],[77.5917282104495,17.532680511474553],[77.5924530029298,17.54907989501976],[77.5853881835938,17.558361053466854],[77.54839324951183,17.549459457397575],[77.52742004394543,17.573221206665153],[77.51390075683622,17.557249069213924],[77.50965881347662,17.549169540405273],[77.50161743164068,17.54088020324707],[77.49681854248064,17.543371200561637],[77.48999786376959,17.566270828247127],[77.47408294677734,17.56511116027832],[77.4691162109375,17.568180084228516],[77.46515655517595,17.574659347534293],[77.46121978759771,17.577030181884993],[77.43992614746088,17.581470489502067],[77.45081329345703,17.63236045837408],[77.44564819335932,17.65746116638178],[77.45140838623064,17.687740325927678],[77.45034790039068,17.691299438476562],[77.4578628540039,17.69896125793457],[77.47415161132818,17.701391220092773],[77.47867584228533,17.70302963256836],[77.48108673095732,17.70685005187994],[77.48446655273443,17.703649520874023],[77.48932647705072,17.706800460815487],[77.4942779541015,17.716039657592773],[77.53936004638672,17.725421905517805],[77.55187988281244,17.7343807220459],[77.55464172363287,17.741130828857536],[77.56202697753923,17.747110366821516],[77.56595611572294,17.764110565185604],[77.55445098876959,17.761259078979492],[77.53697204589872,17.770452499389705],[77.53449249267607,17.774690628051758],[77.52760314941418,17.776660919189453],[77.52304077148466,17.779621124267692],[77.50934600830072,17.7800807952882],[77.50448608398443,17.78259086608881],[77.50701904296903,17.792959213256893],[77.5108795166015,17.801441192626953],[77.518051147461,17.807720184326115],[77.52607727050793,17.81168937683111],[77.52600097656267,17.826818466186637],[77.54371643066423,17.826269149780217],[77.54973602294933,17.818029403686637],[77.55432128906278,17.8304901123048],[77.55918884277361,17.838640213012752],[77.56346893310558,17.84200096130394],[77.56215667724638,17.84913063049322],[77.56604003906267,17.849559783935604],[77.56743621826178,17.866140365600586],[77.57274627685553,17.872810363769645],[77.57772827148443,17.871229171753043],[77.5812759399414,17.87574958801264],[77.59275817871111,17.869779586791992],[77.59249114990263,17.879499435424805],[77.58307647705084,17.898380279541016],[77.5851669311524,17.908229827880803],[77.59979248046892,17.903671264648494],[77.60444641113287,17.905490875244197],[77.61657714843767,17.90286827087408],[77.61894989013678,17.913480758666992],[77.61952972412115,17.93007087707531],[77.6167984008789,17.938100814819336],[77.62001037597673,17.944459915161133],[77.62886047363287,17.948511123657283],[77.64398956298857,17.946371078491325],[77.64742279052763,17.95318984985363],[77.64425659179705,17.962690353393555],[77.65339660644548,17.969352722167912],[77.60666656494158,18.01801109313965],[77.55311584472662,18.034669876098633],[77.54574584960966,18.053760528564396],[77.54743194580084,18.0636310577392],[77.55670928955095,18.062170028686637],[77.56048583984375,18.071130752563477],[77.56733703613276,18.076290130615234],[77.57744598388666,18.07686996459961],[77.5897979736331,18.080289840698356],[77.59745788574247,18.084289550781477],[77.60056304931658,18.09939956665039],[77.59661102294928,18.121030807495174],[77.59350585937517,18.127861022949162],[77.59777069091803,18.15184020996105],[77.57936096191406,18.162120819091797],[77.57247161865263,18.17894935607916],[77.57002258300781,18.18915939331066],[77.56431579589861,18.189979553222713],[77.56430816650408,18.20055007934576],[77.57438659667963,18.19992065429699],[77.58496093750006,18.21674156188965],[77.581069946289,18.222738265991268],[77.57253265380876,18.24056053161621],[77.58149719238298,18.256320953369084],[77.60301971435547,18.277999877929688],[77.58381652832037,18.283081054687614],[77.57433319091808,18.28684806823742],[77.57463836669939,18.28931045532221],[77.57065582275396,18.29047012329096],[77.5609817504884,18.283109664916992],[77.54995727539091,18.2913494110108],[77.55503082275396,18.298311233520565],[77.57022857666033,18.308179855346737],[77.55335998535168,18.331222534179688],[77.54219055175798,18.333900451660156],[77.52732849121111,18.339401245117188],[77.52140045166033,18.364650726318303],[77.541557312012,18.385219573974723],[77.549301147461,18.38771820068365],[77.55520629882818,18.417852401733455],[77.54413604736334,18.420410156250114],[77.53515625000017,18.42118072509777],[77.53598022460943,18.423450469970703],[77.5259399414062,18.42735099792486],[77.52848052978533,18.440481185913086],[77.56017303466803,18.43504905700695],[77.58264160156267,18.44306945800787],[77.57063293457048,18.466859817504883],[77.57652282714861,18.483779907226506],[77.59075927734403,18.481109619140568],[77.59311676025408,18.4735107421875],[77.60106658935575,18.474210739135742],[77.60375213623075,18.485258102416935],[77.60283660888689,18.491380691528377],[77.59388732910173,18.493869781494197],[77.58627319335955,18.502920150756893],[77.59726715087919,18.54754066467285],[77.6108703613283,18.54776954650879],[77.613296508789,18.542390823364258],[77.61582183837908,18.54294013977045],[77.61633300781278,18.54866981506342],[77.62906646728521,18.550640106201172],[77.64048004150396,18.553930282592773],[77.6488113403322,18.552619934081974],[77.65219879150419,18.549631118774357],[77.64946746826178,18.54133033752464],[77.64528656005871,18.536300659179744],[77.6575698852539,18.527200698852596],[77.71235656738281,18.554439544677678],[77.72793579101557,18.551540374755973],[77.74716186523466,18.589080810546875],[77.729721069336,18.642732620239258],[77.72975921630865,18.645589828491268],[77.73011016845709,18.6481227874757],[77.73092651367199,18.65532112121582],[77.73317718505865,18.655700683593807],[77.73324584960966,18.662128448486385],[77.72811126709013,18.66420936584484],[77.73285675048857,18.676000595092773],[77.74466705322277,18.683889389038143],[77.74949645996094,18.689781188964844],[77.7499084472658,18.697830200195312],[77.75762939453136,18.707090377807617],[77.7643814086914,18.70793914794922],[77.76879882812517,18.701620101928768],[77.76940155029303,18.690589904785156],[77.78643798828136,18.684120178222713],[77.78650665283203,18.69432067871105],[77.80222320556646,18.716119766235465],[77.80271911621094,18.729249954223746],[77.8231811523438,18.768501281738395],[77.83746337890642,18.807460784912337],[77.85922241210938,18.81406021118164],[77.90759277343778,18.82951927185053],[77.94255065917986,18.822290420532454],[77.94413757324224,18.842290878296012],[77.89920043945341,18.86792755126953],[77.8986587524414,18.883739471435604],[77.88767242431646,18.885120391845817],[77.88260650634794,18.89637947082514],[77.881576538086,18.908531188964787],[77.86926269531244,18.910320281982536],[77.85663604736357,18.906070709228743],[77.84049987792986,18.911300659179744],[77.84430694580095,18.930320739746094],[77.84870147705095,18.93138122558605],[77.85372924804693,18.95227813720703],[77.83049774169933,18.950201034545955],[77.82739257812506,18.94572067260748],[77.81269073486334,18.949459075927678],[77.81520080566412,18.959239959716797],[77.81286621093767,18.960060119628906],[77.81713867187511,18.982370376587028],[77.78713226318365,18.984281539916992],[77.76735687255871,18.981420516967773],[77.75739288330084,19.028551101684513],[77.76093292236322,19.051210403442496],[77.75955963134794,19.05930137634283],[77.76168823242182,19.062040328979435],[77.77098846435558,19.056159973144474],[77.77794647216814,19.054370880126953],[77.78309631347673,19.05483055114746],[77.79113769531256,19.0506591796875],[77.79454040527361,19.050191879272575],[77.79718017578125,19.05130958557129],[77.7935333251956,19.071210861206055],[77.80130767822277,19.084409713745117],[77.80024719238298,19.09887123107916],[77.80265045166027,19.10196113586437],[77.8057632446289,19.10334014892578],[77.815170288086,19.10366249084484],[77.82237243652361,19.096399307251033],[77.82547760009771,19.09169960021967],[77.82861328125028,19.084941864013672],[77.83380889892578,19.086532592773438],[77.84218597412104,19.08677101135254],[77.8441467285158,19.096071243286076],[77.84519195556669,19.114210128784407],[77.83863830566412,19.11885070800787],[77.8339309692384,19.13273811340332],[77.84924316406244,19.155281066894588],[77.84874725341803,19.159429550170955],[77.85016632080107,19.16231155395502],[77.85035705566435,19.16765022277832],[77.85301971435575,19.176820755004883],[77.85839080810541,19.180772781372013],[77.84453582763672,19.188190460205135],[77.84654998779325,19.196979522705192],[77.8526763916015,19.204591751098746],[77.85233306884783,19.209711074829215],[77.85845184326189,19.218469619751033],[77.86152648925787,19.226291656494197],[77.862289428711,19.233961105346737],[77.86808013916044,19.246110916137752],[77.86738586425798,19.255260467529297],[77.8846282958985,19.26023101806652],[77.89187622070318,19.25709915161127],[77.90039062500017,19.256120681762695],[77.90570831298828,19.26721954345726],[77.90067291259771,19.277128219604606],[77.8753890991211,19.2797794342041],[77.8619232177735,19.28409957885765],[77.86084747314482,19.287639617919922],[77.86264038085955,19.29537010192871],[77.8608779907226,19.302129745483512],[77.87111663818371,19.305730819702205],[77.87522888183611,19.308900833129996],[77.8880462646485,19.312410354614258],[77.89325714111357,19.3211612701416],[77.91227722167974,19.31795120239252],[77.92632293701189,19.331909179687557],[77.9372329711914,19.335750579833984],[77.94062805175798,19.34250068664545],[77.94892120361334,19.341279983520735],[77.96270751953153,19.331769943237305],[77.96665191650396,19.327320098876953],[77.9769058227539,19.32105064392084],[77.98549652099615,19.308990478515852],[77.99588775634794,19.30571746826172],[78.01161193847673,19.30111122131342],[78.01824951171875,19.296327590942496],[78.0272827148438,19.2786808013916],[78.04574584960955,19.27086067199707],[78.04804992675781,19.247512817382812],[78.0511322021485,19.241760253906193],[78.05755615234392,19.23974990844721],[78.07514190673834,19.2465496063233],[78.08225250244146,19.254770278930607],[78.0951232910158,19.249851226806584],[78.09938812255865,19.245479583740178],[78.12670898437511,19.24640274047863],[78.1392669677735,19.239440917968864],[78.1497421264649,19.23005104064947],[78.1700592041015,19.236330032348633],[78.18331909179693,19.241540908813533],[78.18315124511724,19.278961181640625],[78.19715118408203,19.331729888916016],[78.1871185302735,19.338609695434798],[78.18225097656278,19.345447540283203],[78.17959594726557,19.353010177612532],[78.18756866455107,19.39562034606928],[78.22426605224626,19.434032440185604],[78.24581146240251,19.42898941040039],[78.25199890136724,19.430049896240348],[78.26183319091814,19.440099716186523],[78.26692962646513,19.447929382324162],[78.27321624755888,19.453840255737305],[78.28199005126982,19.45298957824707],[78.29115295410185,19.44879913330101],[78.29733276367205,19.448829650878963],[78.308891296387,19.456409454345817],[78.31195831298822,19.465900421142635],[78.31204986572271,19.47925949096691],[78.3100128173831,19.486431121826172],[78.30361175537126,19.493761062622013],[78.29943084716814,19.50412940979004],[78.29502868652361,19.537281036377067],[78.29650878906244,19.558380126953068],[78.31114959716808,19.57176971435547],[78.31204223632818,19.57856178283697],[78.31004333496122,19.586711883544922],[78.3109893798831,19.60417938232422],[78.29897308349638,19.623411178588867],[78.29242706298834,19.644161224365234],[78.28755950927734,19.654460906982422],[78.2726593017581,19.660169601440373],[78.26972198486334,19.66312980651861],[78.2733917236331,19.67015075683588],[78.28581237792997,19.689670562744254],[78.31606292724615,19.690551757812443],[78.3452758789063,19.713569641113338],[78.3442993164063,19.724332809448242],[78.34541320800787,19.734422683715934],[78.35320281982439,19.73775100708002],[78.36080169677734,19.753980636596793],[78.3677368164063,19.781080245971793],[78.36699676513678,19.794540405273438],[78.36048889160162,19.805740356445426],[78.351615905762,19.810350418090934],[78.33921051025419,19.81351089477539],[78.33899688720714,19.83917999267578],[78.30316925048857,19.8458309173584],[78.2941284179688,19.849550247192383],[78.31019592285168,19.91274070739746],[78.31951141357428,19.915468215942326],[78.32837677001953,19.91608810424799],[78.3351058959961,19.910110473632812],[78.33458709716803,19.904302597046012],[78.32660675048857,19.89937973022461],[78.32296752929699,19.894971847534123],[78.32524108886724,19.890481948852482],[78.33625030517578,19.883190155029354],[78.34668731689453,19.881401062011776],[78.36575317382807,19.882890701293945],[78.38414764404303,19.879222869873104],[78.38497161865263,19.873891830444393],[78.38417816162115,19.863620758056754],[78.38597106933588,19.855699539184627],[78.38593292236357,19.852701187133903],[78.38923645019548,19.846178054809627],[78.39765930175798,19.836402893066463],[78.40904235839838,19.829860687255973],[78.42867279052763,19.823110580444336],[78.46465301513678,19.816211700439453],[78.47618865966791,19.81636047363287],[78.48429107666021,19.807189941406477],[78.48947143554693,19.798509597778434],[78.49391937255854,19.793149948120117],[78.50366973876953,19.79241943359375],[78.50961303710955,19.80118942260765],[78.51239013671903,19.81427955627447],[78.51921081542974,19.819900512695312],[78.52626800537115,19.82165908813488],[78.61933898925787,19.8087100982666],[78.64833831787115,19.801460266113338],[78.68637084960932,19.789939880371094],[78.69590759277338,19.78971099853527],[78.70178985595732,19.785579681396598],[78.71644592285162,19.766799926757926],[78.7247314453125,19.76897048950201],[78.73184204101568,19.77285003662115],[78.73834991455084,19.779430389404354],[78.78486633300787,19.778749465942383],[78.79695129394543,19.76857948303234],[78.80317687988287,19.760070800781307],[78.80760955810553,19.75798988342285],[78.81714630126959,19.760419845581282],[78.82528686523455,19.760379791259822],[78.83830261230474,19.76208114624046],[78.84433746337908,19.759000778198242],[78.84562683105497,19.758350372314396],[78.8535766601563,19.738000869751204],[78.85691833496111,19.731300354003963],[78.85737609863287,19.71973991394043],[78.8616714477539,19.705900192260856],[78.86347961425787,19.696769714355526],[78.86321258544939,19.67949295043968],[78.85912322998058,19.668909072875977],[78.8588027954101,19.656311035156307],[78.87793731689453,19.656801223754996],[78.89097595214855,19.655260086059684],[78.91590881347662,19.667730331420955],[78.94359588623053,19.665140151977766],[78.95419311523455,19.663410186767578],[78.96167755126959,19.658769607543945],[78.9689559936524,19.649232864379883],[78.968002319336,19.63936996459961],[78.96286010742193,19.61732292175293],[78.97830200195318,19.59041023254406],[78.98052978515642,19.585081100463867],[78.97785186767595,19.579942703247184],[79.01835632324224,19.539970397949446],[79.03881835937528,19.544990539550895],[79.05152130126959,19.545272827148438],[79.06011199951178,19.53872108459484],[79.06339263916021,19.531250000000114],[79.0738372802735,19.52861022949213],[79.1028671264649,19.527950286865178],[79.10473632812506,19.5127410888673],[79.14026641845714,19.501110076904297],[79.15696716308611,19.485549926757812],[79.16909790039091,19.46776962280279],[79.17778778076178,19.460691452026367],[79.18904113769537,19.458700180053768],[79.2157058715822,19.510580062866268],[79.22342681884777,19.51700973510748],[79.23200225830084,19.52075004577631],[79.23663330078153,19.52679824829096],[79.2501068115235,19.57768058776861],[79.2486801147461,19.58686065673828],[79.24378204345709,19.593341827392692],[79.23770141601568,19.599540710449332],[79.23709106445312,19.609489440917912],[79.24386596679716,19.612552642822493],[79.25522613525396,19.611209869384993],[79.29323577880871,19.59672164917015],[79.30484008789068,19.590150833129883],[79.30961608886724,19.582010269165096],[79.314262390137,19.565521240234432],[79.34088897705084,19.573770523071346],[79.41361236572294,19.533479690551758],[79.43028259277361,19.53510093688965],[79.44126129150419,19.53351020812994],[79.45818328857428,19.51896095275879],[79.46512603759794,19.509010314941406],[79.4704208374024,19.49745178222662],[79.51339721679682,19.51806068420416],[79.51584625244169,19.522359848022518],[79.5159530639649,19.53680992126465],[79.51481628417974,19.54076194763195],[79.5149917602539,19.541950225830135],[79.52622222900408,19.54606056213379],[79.54265594482428,19.54852294921875],[79.54519653320324,19.53400039672863],[79.54769897460966,19.526081085205078],[79.55249786376947,19.520042419433537],[79.56559753417974,19.510900497436523],[79.5734405517581,19.506639480591048],[79.58265686035156,19.503051757812443],[79.59134674072271,19.501731872558537],[79.59805297851591,19.503770828247127],[79.60085296630865,19.507951736450252],[79.62139129638689,19.56509971618675],[79.63971710205095,19.57500076293951],[79.67801666259766,19.576562881469727],[79.69568634033214,19.581090927124023],[79.70511627197283,19.581220626830998],[79.71292877197266,19.583330154419002],[79.72991180419939,19.59656906127941],[79.74032592773449,19.60313987731928],[79.75425720214872,19.602331161499137],[79.77754974365263,19.597679138183594],[79.78542327880876,19.5935897827149],[79.78629302978527,19.589651107788086],[79.7932968139649,19.580089569091797],[79.81659698486334,19.569009780884016],[79.82821655273443,19.537010192871037],[79.85623168945318,19.517110824585075],[79.8637924194336,19.513597488403263],[79.87021636962902,19.50496101379406],[79.87822723388683,19.500701904296932],[79.90223693847662,19.496490478515852],[79.91102600097668,19.49234008789074],[79.91779327392595,19.485540390014705],[79.92354583740234,19.477581024170036],[79.9328689575197,19.4691219329834],[79.93725585937517,19.466960906982422],[79.94020843505871,19.464509963989315],[79.9449996948245,19.45881843566906],[79.94621276855486,19.450939178466797],[79.94577026367216,19.440780639648494],[79.97305297851591,19.401020050049055],[79.97260284423834,19.39158058166504],[79.97074890136747,19.38212966918951],[79.9672470092774,19.374580383300838],[79.96652221679693,19.360889434814453],[79.96452331542986,19.35067939758312],[79.95715332031256,19.334569931030387],[79.95738220214855,19.324470520019588],[79.96364593505865,19.306539535522575],[79.96177673339872,19.297491073608455],[79.948959350586,19.28886032104498],[79.94518280029325,19.284120559692496],[79.93190002441423,19.259321212768555],[79.92016601562506,19.226409912109602],[79.92250823974638,19.203409194946403],[79.94243621826178,19.175880432128963],[79.94320678710943,19.170600891113224],[79.94069671630876,19.164400100708008],[79.92611694335966,19.16094970703125],[79.92230987548857,19.157129287719727],[79.90596771240251,19.141788482666072],[79.87120819091825,19.122699737548828],[79.85804748535185,19.104110717773438],[79.86109924316435,19.05994987487793],[79.89084625244169,19.045450210571516],[79.91610717773438,19.047359466552734],[79.92597961425781,19.042490005493107],[79.93306732177751,19.029689788818416],[79.93448638916027,19.02169990539545],[79.9327926635745,18.995700836181697],[79.93134307861345,18.974790573120174],[79.94094085693365,18.937660217285213],[79.93900299072271,18.85889244079584],[79.93332672119146,18.845041275024528],[79.92550659179693,18.837541580200423],[79.89401245117193,18.830839157104606],[79.9162673950197,18.79734039306635],[79.9319915771485,18.784429550171126],[80.01235198974638,18.766759872436637],[80.04635620117205,18.720920562744254],[80.08212280273449,18.702449798583928],[80.08444213867216,18.700839996338118],[80.08695220947266,18.697570800781364],[80.10054779052734,18.684959411621207],[80.10655975341825,18.67752838134777],[80.11081695556658,18.676189422607422],[80.11599731445312,18.675849914550724],[80.12129211425781,18.68120956420904],[80.13658905029314,18.686801910400334],[80.14227294921875,18.68625259399414],[80.1487426757812,18.69324111938488],[80.15808105468744,18.695940017700195],[80.16462707519548,18.69029808044428],[80.16739654541044,18.68007087707531],[80.17565155029297,18.675899505615348],[80.18895721435575,18.67558097839367],[80.19410705566435,18.68853187561035],[80.20191192626982,18.69744110107422],[80.20787811279297,18.70046043395996],[80.21436309814453,18.701129913330078],[80.22531890869146,18.69614982604992],[80.2466659545899,18.70132064819336],[80.26753997802763,18.71796989440918],[80.27091217041021,18.713500976562557],[80.27790832519548,18.710960388183594],[80.2963104248048,18.685640335083008],[80.29946136474626,18.679210662841797],[80.30780792236322,18.65228080749523],[80.31500244140636,18.636287689208984],[80.31931304931658,18.62173271179222],[80.33146667480463,18.596599578857365],[80.33667755126953,18.590520858764762],[80.33879089355474,18.588209152221793],[80.34184265136724,18.586441040039062],[80.34852600097662,18.58848953247093],[80.35289764404303,18.590940475463867],[80.35594177246094,18.593709945678768],[80.36695098876953,18.604650497436467],[80.38156127929693,18.593599319458235],[80.45020294189459,18.62635040283226],[80.48838806152355,18.62672042846674],[80.4981231689456,18.61765289306652],[80.51071166992216,18.615671157836914],[80.51383209228533,18.613138198852482],[80.51525115966803,18.607299804687557],[80.51801300048828,18.603450775146428],[80.52179718017607,18.600759506225643],[80.52857208251959,18.59370040893566],[80.5287170410158,18.592849731445426],[80.5293197631836,18.589809417724666],[80.53003692626953,18.588790893554744],[80.53199768066412,18.5860595703125],[80.60098266601562,18.545030593872184],[80.63268280029314,18.518840789794922],[80.65077972412126,18.47228050231928],[80.66236114501982,18.465740203857365],[80.66610717773443,18.462640762329045],[80.66982269287104,18.461210250854435],[80.6805191040039,18.45355033874523],[80.683090209961,18.444620132446346],[80.69191741943388,18.44045066833496],[80.69525909423828,18.434570312499943],[80.69262695312506,18.42885017395031],[80.69100952148438,18.419349670410156],[80.71302795410162,18.40573120117199],[80.71734619140642,18.40908050537115],[80.718276977539,18.409799575805778],[80.7287826538086,18.403800964355582],[80.71572875976568,18.387290954589844],[80.71594238281278,18.385522842407283],[80.71626281738287,18.382940292358455],[80.71862792968778,18.379241943359318],[80.72274780273443,18.375801086425895],[80.72424316406267,18.371982574462947],[80.7227630615235,18.361310958862305],[80.78428649902344,18.243270874023438],[80.75688934326178,18.229499816894645],[80.73326873779303,18.218790054321346],[80.73226165771484,18.20545005798334],[80.73253631591825,18.19419097900402],[80.7345581054688,18.17171287536621],[80.74507141113287,18.164831161499023],[80.75385284423834,18.163890838623104],[80.76239776611328,18.1629695892334],[80.79792785644537,18.16629981994629],[80.81874847412138,18.19202041625988],[80.8241958618164,18.233579635620345],[80.83962249755876,18.228040695190487],[80.85910034179688,18.226001739501896],[80.86174774169939,18.221670150756836],[80.86749267578125,18.207258224487532],[80.86725616455078,18.20318031311041],[80.86564636230474,18.20099258422863],[80.86126708984386,18.198699951171932],[80.84915924072283,18.200210571289062],[80.8620223999024,18.132669448852482],[80.90072631835943,18.13467025756836],[80.91198730468756,18.13850975036621],[80.9319915771485,18.14941024780279],[80.93582153320318,18.15253067016613],[80.93672943115234,18.154800415039062],[80.94422912597662,18.157091140747013],[80.9498596191408,18.16422843933117],[80.95419311523466,18.16698074340826],[80.97367858886719,18.168149948120174],[80.97383880615263,18.158300399780387],[80.97480010986357,18.151920318603572],[80.97263336181646,18.143550872802848],[80.96753692626982,18.13799285888672],[80.94935607910162,18.12318038940424],[80.94754791259766,18.11683845520014],[80.94979858398466,18.10369110107422],[80.94835662841814,18.091270446777344],[80.96595764160162,18.04346847534174],[80.98464965820318,17.922901153564567],[80.99196624755888,17.919370651245117],[80.99433898925787,17.91423034667963],[81.00186920166044,17.864730834960994],[81.00332641601568,17.849149703979435],[81.0043487548831,17.838348388671875],[81.01257324218744,17.81666946411127],[81.03244781494158,17.789730072021598],[81.04522705078142,17.783990859985465],[81.05597686767584,17.782831192016715],[81.07360076904325,17.78629112243658],[81.07956695556658,17.794971466064453],[81.08708190917974,17.80334281921398],[81.08908843994158,17.810871124267805],[81.09770202636736,17.817100524902457],[81.15956878662115,17.852630615234318],[81.17637634277372,17.849121093750057],[81.19196319580084,17.847101211547965],[81.21349334716803,17.833049774170036],[81.22036743164068,17.82935905456543],[81.22791290283197,17.82629013061529],[81.25403594970732,17.812129974365234],[81.29812622070312,17.809850692748967],[81.31505584716825,17.812339782714957],[81.33537292480474,17.81125068664562],[81.34452819824224,17.811580657958984],[81.35749816894537,17.810420989990234],[81.36760711669928,17.80808830261242],[81.37442779541033,17.805320739746037],[81.38413238525385,17.803489685058594],[81.39430999755865,17.80812072753912],[81.40276336669933,17.805320739746037],[81.40925598144543,17.80483818054205],[81.47012329101591,17.823181152343807],[81.48117828369169,17.802860260009993],[81.55393981933611,17.816368103027457],[81.56459045410173,17.825691223144645],[81.5748672485351,17.827341079711914],[81.59973907470709,17.815441131592024],[81.61115264892595,17.81536293029785],[81.6156997680664,17.822010040283146],[81.62397766113287,17.82442283630371],[81.63143920898443,17.830440521240234],[81.63655090332037,17.836280822753906],[81.64279174804705,17.839281082153434],[81.66306304931646,17.876930236816463],[81.68828582763678,17.88479995727539],[81.69787597656278,17.875539779663086],[81.7031707763673,17.861129760742415],[81.726318359375,17.87409973144554],[81.75829315185558,17.893360137939396],[81.79440307617182,17.844150543212834],[81.75293731689459,17.818309783935774],[81.72959136962908,17.81929969787592],[81.67469024658209,17.767110824585075],[81.62306213378918,17.762790679931697],[81.57295989990229,17.718669891357422],[81.57116699218756,17.687868118286246],[81.50292968750028,17.58987998962408],[81.52390289306669,17.572610855102596],[81.50142669677729,17.539360046386946],[81.49341583251947,17.448820114135742],[81.44151306152372,17.38171005249046],[81.41564941406267,17.361629486083984],[81.38522338867199,17.355131149292106],[81.32247161865246,17.389150619506836],[81.28916931152361,17.337549209594727],[81.2671661376956,17.319999694824276],[81.19030761718778,17.327369689941406],[81.1719589233399,17.305450439453125],[81.16278839111334,17.23258018493658],[81.14554595947283,17.231662750244254],[81.0438613891601,17.204540252685604],[81.02617645263689,17.18666839599615],[80.98516082763689,17.17938995361328],[80.930648803711,17.205030441284123],[80.9053497314456,17.20129013061529],[80.91330718994146,17.145950317382756],[80.87030792236328,17.146301269531364],[80.85504913330078,17.11141014099121],[80.86421203613298,17.09581756591797],[80.85884857177729,17.050851821899414],[80.82322692871111,17.037780761718864],[80.68399810791033,17.068740844726562],[80.62975311279325,17.11001968383789],[80.56017303466797,17.1380290985108],[80.54907226562528,17.123622894287166],[80.49653625488287,17.10129165649414],[80.48465728759783,17.056310653686523],[80.4462432861331,17.017021179199162],[80.42053985595697,17.024860382080135],[80.39508819580084,17.077568054199276],[80.36699676513689,17.056568145752067],[80.38871765136736,17.01406097412115],[80.36042022705107,16.97050094604498],[80.44254302978521,16.944940567016715],[80.47688293457037,16.921171188354606],[80.49130249023432,16.94818115234375],[80.52069091796875,16.936399459839095],[80.53173828124994,16.95017814636242],[80.58419036865229,16.926519393921012],[80.58674621582037,16.87393951416027],[80.5649719238283,16.869039535522518],[80.55458068847685,16.824789047241268],[80.58584594726574,16.806659698486385],[80.59751892089872,16.785089492797965],[80.56281280517607,16.762830734253157],[80.48953247070324,16.775859832763672],[80.45639801025385,16.790029525756836],[80.45260620117205,16.81529045104986],[80.41867065429705,16.842319488525618],[80.37293243408209,16.81110000610363],[80.358627319336,16.854909896850586],[80.31922149658232,16.870941162109375],[80.30137634277361,16.955860137939567],[80.26217651367199,17.010629653930664],[80.2411499023438,17.002809524536133],[80.21784210205095,17.019620895385856],[80.19554901123053,17.01804161071783],[80.18212890625,17.044940948486442],[80.13385772705072,16.985359191894474],[80.1057891845706,16.981319427490234],[80.08423614501982,16.96319007873558],[80.04588317871105,16.965299606323242],[80.03705596923834,16.936470031738338],[80.0095520019533,16.907260894775334],[79.99167633056646,16.86325073242199],[80.03309631347668,16.85244941711437],[80.04183959960943,16.826061248779297],[80.06967163085943,16.813608169555664],[80.04789733886736,16.74515151977539],[79.99151611328136,16.6925506591798],[79.97302246093761,16.659521102905387],[79.94256591796875,16.632629394531307],[79.92366790771479,16.63073921203636],[79.89092254638689,16.649560928344727],[79.86183929443388,16.69822120666504],[79.81025695800787,16.690490722656193],[79.77490234374994,16.729520797729606],[79.75048065185541,16.720119476318473],[79.7227401733399,16.69260978698736],[79.68303680419928,16.69038009643549],[79.64803314209013,16.662000656128043],[79.59990692138678,16.663270950317383],[79.57402038574247,16.64359092712408],[79.53671264648455,16.631561279296875],[79.49717712402372,16.630510330200195],[79.45059204101574,16.609149932861328],[79.4265899658206,16.582521438598746],[79.34552764892607,16.579561233520508],[79.26611328125006,16.561470031738338],[79.23044586181646,16.51929092407221],[79.22410583496111,16.49213981628418],[79.23618316650396,16.458539962768555],[79.21906280517607,16.438169479370174],[79.21147155761713,16.36281013488781],[79.22785186767607,16.336811065673828],[79.22505950927751,16.250070571899528],[79.17658233642578,16.21713066101097],[79.12300872802751,16.237911224365348],[79.02014160156278,16.24427032470726],[78.90808105468756,16.191040039062557],[78.90558624267595,16.16492080688471],[78.92186737060553,16.1218719482423],[78.90117645263689,16.09762191772461],[78.87267303466808,16.110170364379883],[78.85645294189464,16.158599853515682],[78.83213043212908,16.151769638061637],[78.83650207519531,16.087377548217773],[78.80799865722662,16.046190261840934],[78.77504730224638,16.023609161376953],[78.73898315429716,16.021141052246207],[78.6865615844726,16.040380477905387],[78.63648986816412,16.091449737548942],[78.603500366211,16.09643936157221],[78.55912780761747,16.05637168884283],[78.45101165771479,16.08103179931652],[78.40566253662126,16.08094978332514],[78.37003326416021,16.05984115600586],[78.34041595459001,16.052770614624137],[78.31620788574236,16.02915191650402],[78.26815795898438,16.034759521484375],[78.25138092041021,16.025680541992415],[78.25974273681658,15.99473094940197],[78.2428665161134,15.937048912048283],[78.18003082275408,15.900449752807617],[78.16467285156278,15.848990440368652],[78.12583160400408,15.848931312561149],[78.1011428833009,15.827921867370605],[78.06366729736345,15.844561576843489],[78.03981781005876,15.898100852966422],[78.01696777343756,15.895149230957031],[78.00186920166033,15.85923004150402],[77.97287750244158,15.874119758605957],[77.92829895019537,15.876509666443098],[77.887680053711,15.895921707153263],[77.8556518554688,15.875761032104606],[77.79918670654303,15.865320205688704],[77.71611785888672,15.886570930481184],[77.68353271484392,15.873891830444279],[77.6396026611331,15.883131027221737],[77.60637664794933,15.911729812622184],[77.58841705322271,15.906991958618107],[77.57163238525396,15.912320137024153],[77.54884338378906,15.913668632507438],[77.53173828125006,15.916119575500545],[77.50945281982428,15.920860290527287]]]},"properties":{"ID_0":105,"ISO":"IN-AN","NAME_0":"India","ID_1":36,"NAME_1":"Telangana"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80.14902496337896,13.618473052978516],[80.16764068603516,13.589859962463436],[80.1512527465822,13.551250457763786],[80.12790679931669,13.578459739685059],[80.14902496337896,13.618473052978516]]],[[[82.33207702636713,16.72486114501953],[82.33930206298857,16.685420989990178],[82.31874847412126,16.65236091613781],[82.31874847412126,16.61680603027372],[82.29736328124994,16.612916946411303],[82.2823562622072,16.64234924316412],[82.25596618652372,16.653749465942383],[82.2587509155274,16.690111160278434],[82.31652832031256,16.704580307006836],[82.33207702636713,16.72486114501953]]],[[[82.29951477050798,16.71433258056635],[82.2807006835938,16.72274971008312],[82.2204208374024,16.718309402465877],[82.25791931152361,16.690139770507812],[82.25374603271501,16.6526393890382],[82.27819824218756,16.636249542236328],[82.29957580566412,16.591810226440543],[82.2604064941408,16.550689697265796],[82.22152709960943,16.53652954101574],[82.07347106933611,16.463472366333235],[81.94458007812506,16.39541816711437],[81.89152526855486,16.38625144958496],[81.84236145019537,16.36986160278343],[81.77402496337908,16.33402824401861],[81.71875,16.31154060363764],[81.68653106689459,16.332082748413086],[81.56097412109392,16.34541893005371],[81.54291534423834,16.358194351196346],[81.47013854980497,16.3532009124757],[81.3926391601563,16.342082977295036],[81.31874847412126,16.313194274902457],[81.28319549560575,16.290971755981445],[81.24263763427751,16.249860763549975],[81.2051391601563,16.17597961425804],[81.18930816650396,16.103469848632812],[81.14097595214861,16.018194198608626],[81.14569091796903,15.973750114441032],[81.08847045898466,15.93042087554926],[80.99791717529314,15.829583168029785],[81.00597381591803,15.780970573425293],[80.99846649169916,15.750139236450252],[80.93791961669928,15.718190193176554],[80.91680908203153,15.720141410827637],[80.83790588378923,15.709030151367188],[80.82208251953142,15.712916374206543],[80.80291748046903,15.744029045105037],[80.81181335449224,15.760419845580998],[80.79402923584001,15.808470726013297],[80.81208038330107,15.831531524658374],[80.78597259521513,15.860141754150561],[80.71180725097673,15.880141258239803],[80.64402008056652,15.877640724182129],[80.56680297851591,15.86069583892828],[80.45041656494146,15.814870834350813],[80.339584350586,15.747361183166504],[80.27041625976591,15.673195838928223],[80.23735809326178,15.600972175598145],[80.20069122314459,15.465415954590014],[80.12708282470709,15.375693321228141],[80.0970764160158,15.313472747802678],[80.08291625976591,15.262360572815169],[80.08847045898432,15.219309806823958],[80.0662460327149,15.15681171417259],[80.04792022705084,15.088751792907942],[80.0506973266601,15.027917861938647],[80.06874847412115,14.927080154419002],[80.08291625976591,14.888751029968262],[80.08680725097673,14.821810722351131],[80.1115264892581,14.744028091430778],[80.1437530517581,14.700691223144645],[80.16625213623075,14.621809959411621],[80.19736480712919,14.593193054199219],[80.18235778808611,14.5304212570191],[80.16986083984386,14.36069393157959],[80.13846588134783,14.270140647888411],[80.12680816650385,14.16624927520752],[80.13263702392584,14.100420951843262],[80.14791870117199,14.027921676635856],[80.1718063354495,13.984029769897518],[80.19541931152355,13.924571990966797],[80.24485778808622,13.81958389282238],[80.25235748291033,13.782921791076774],[80.23625183105497,13.713195800781307],[80.23264312744169,13.669580459594954],[80.2431945800783,13.6137504577639],[80.18763732910185,13.648189544677734],[80.18708038330072,13.670141220092717],[80.15402984619152,13.703194618225211],[80.14152526855486,13.6940279006958],[80.14708709716797,13.661810874938965],[80.13874816894537,13.613470077514762],[80.126235961914,13.611531257629508],[80.10346984863287,13.654310226440373],[80.07152557373064,13.634861946105957],[80.07208251953125,13.608194351196346],[80.05347442626959,13.582916259765852],[80.08625030517584,13.552083969116154],[80.10902404785185,13.519305229187239],[80.13817596435553,13.512372016906852],[80.16152954101562,13.489583015442122],[80.1770858764649,13.494861602783203],[80.23707580566423,13.484030723571948],[80.2620925903322,13.472920417785815],[80.2737426757813,13.444581985473746],[80.3129959106447,13.42791557312006],[80.3153686523438,13.371451377868766],[80.27597045898438,13.389142036438102],[80.27391815185564,13.397690773010254],[80.27629089355497,13.399399757385424],[80.27722167968756,13.39921092987072],[80.27894592285162,13.399060249328727],[80.27789306640642,13.407531738281364],[80.26799774169939,13.41434192657465],[80.25988769531278,13.447361946106128],[80.21624755859403,13.481831550598258],[80.15209960937506,13.478879928588867],[80.14457702636736,13.485610961914062],[80.13761138916021,13.491150856018066],[80.13271331787104,13.495919227600098],[80.1208114624024,13.502360343933162],[80.10035705566406,13.505200386047363],[80.0994262695313,13.506310462951717],[80.09670257568376,13.508210182189998],[80.08866882324219,13.525529861450195],[80.07943725585943,13.5293607711792],[80.07627868652361,13.526120185851994],[80.07582092285168,13.526760101318416],[80.07276153564459,13.533921241760481],[80.06944274902361,13.537590980529842],[80.06717681884771,13.535920143127555],[80.06561279296892,13.534760475158805],[80.05950927734392,13.532548904418945],[80.0509872436524,13.530511856079158],[80.0454177856447,13.521981239318961],[80.03409576416044,13.521800994873104],[80.02951049804716,13.523590087890625],[80.01754760742205,13.525131225585994],[80.01449584960955,13.528490066528434],[80.00771331787115,13.53237247467041],[79.99413299560553,13.529600143432617],[79.98967742919922,13.526760101318416],[80.01908874511736,13.501660346984977],[80.03697967529297,13.499350547790584],[80.0360412597658,13.484479904175032],[80.02481842041033,13.486700057983398],[80.00589752197266,13.48777103424078],[80.0044021606447,13.478260040283203],[79.99537658691435,13.459450721740666],[79.99076080322277,13.459219932556096],[79.99056243896496,13.462059974670467],[79.98747253417974,13.461910247802791],[79.96826934814482,13.456431388855094],[79.96186065673845,13.451279640197754],[79.96218872070341,13.44413852691656],[79.96306610107428,13.440572738647461],[79.96102142334013,13.42766094207758],[79.96322631835943,13.417910575866813],[79.958480834961,13.412851333618391],[79.95085144042974,13.408120155334586],[79.94426727294916,13.410781860351676],[79.93595123291021,13.409571647644043],[79.93247985839861,13.404371261596907],[79.93562316894537,13.384849548339787],[79.95358276367216,13.37411117553711],[79.92550659179693,13.33594036102295],[79.90386199951189,13.333271026611271],[79.8973617553711,13.329489707946891],[79.89179229736357,13.324619293212947],[79.88607788085966,13.32129192352295],[79.88015747070341,13.320439338684139],[79.8749618530274,13.317400932311955],[79.87055206298834,13.311759948730582],[79.85116577148466,13.303429603576603],[79.82404327392584,13.30231952667242],[79.80848693847656,13.30508041381836],[79.80029296875017,13.304321289062614],[79.77980041503918,13.282070159912166],[79.7683563232423,13.289629936218262],[79.75405883789074,13.302789688110408],[79.75055694580084,13.298810005187988],[79.74975585937517,13.2908811569215],[79.74614715576189,13.280000686645451],[79.74149322509794,13.27666187286377],[79.72963714599621,13.275079727172852],[79.72129058837919,13.272239685058821],[79.72177886962896,13.265730857849348],[79.73938751220732,13.25443077087408],[79.74558258056658,13.248210906982422],[79.75277709960932,13.243760108947754],[79.77539062500006,13.234119415283203],[79.783256530762,13.228161811828727],[79.783256530762,13.217919349670467],[79.77733612060575,13.217191696166992],[79.77356719970697,13.21751976013195],[79.74437713623041,13.194911003112907],[79.73826599121122,13.198259353637752],[79.7375030517581,13.205520629882926],[79.73368072509794,13.210231781005803],[79.73252868652372,13.214961051941032],[79.72651672363281,13.217380523681697],[79.72283172607416,13.221851348877067],[79.7185668945313,13.222591400146598],[79.71570587158209,13.214400291442928],[79.70568847656267,13.209231376648063],[79.69963836669928,13.202680587768555],[79.69243621826178,13.20753097534191],[79.68875122070312,13.207409858703556],[79.68943786621122,13.211250305175895],[79.69574737548822,13.223760604858455],[79.69603729248053,13.233890533447209],[79.6919326782226,13.238529205322266],[79.68456268310553,13.23384952545166],[79.6806869506836,13.228370666504134],[79.67331695556646,13.229490280151424],[79.67111206054716,13.23584175109869],[79.67376708984403,13.24702072143566],[79.68430328369135,13.256679534912166],[79.67932128906278,13.269331932067928],[79.66853332519531,13.281930923461914],[79.66590118408209,13.27327919006359],[79.66256713867188,13.268141746520996],[79.65338134765653,13.274568557739485],[79.6325073242188,13.273542404174862],[79.62075805664091,13.258950233459586],[79.60114288330072,13.267729759216252],[79.58867645263678,13.26041126251232],[79.58644866943354,13.253480911254826],[79.58541870117193,13.247100830078239],[79.5802612304688,13.245370864868221],[79.57096099853544,13.24737930297863],[79.56537628173834,13.249401092529297],[79.55478668212885,13.259181022644157],[79.5414428710937,13.278931617737044],[79.53887176513678,13.300921440124739],[79.53578186035156,13.311070442199934],[79.52271270751982,13.315931320190543],[79.4978103637697,13.31482124328636],[79.48722839355497,13.316551208496207],[79.47927856445312,13.321459770202637],[79.454643249512,13.324320793151855],[79.41732025146501,13.321958541870174],[79.40139770507841,13.315751075744856],[79.37460327148455,13.303039550781193],[79.38562774658203,13.294700622558594],[79.40542602539091,13.28541088104248],[79.42177581787115,13.286660194396916],[79.42502593994146,13.281340599060115],[79.41837310791044,13.274589538574332],[79.41799163818388,13.269061088562239],[79.41902160644548,13.266339302062931],[79.41230010986357,13.257510185241642],[79.40866851806669,13.246741294860783],[79.40734100341825,13.237661361694563],[79.40968322753923,13.228150367736816],[79.40865325927763,13.21959018707281],[79.41084289550798,13.212162017822266],[79.41699981689459,13.212201118469238],[79.41816711425793,13.218461990356445],[79.43609619140636,13.229831695556754],[79.44245910644531,13.229180335998592],[79.44544219970714,13.221720695495605],[79.44550323486322,13.216771125793457],[79.42163085937528,13.20853137969982],[79.42315673828153,13.198910713195858],[79.4215698242188,13.193181037902889],[79.42378997802751,13.187460899353027],[79.4205932617188,13.184461593627987],[79.41329193115251,13.185849189758244],[79.39791870117193,13.186422348022575],[79.38437652587896,13.184720993041935],[79.3783569335937,13.1824312210083],[79.36900329589872,13.17626094818121],[79.37078094482439,13.168589591980094],[79.36717224121094,13.165580749511719],[79.36493682861334,13.160370826721305],[79.3612060546875,13.15604114532482],[79.34777069091803,13.163019180297908],[79.35009765625028,13.125450134277287],[79.34435272216808,13.1235609054566],[79.33779144287126,13.123170852661246],[79.33531951904297,13.127510070800895],[79.3306884765625,13.121231079101676],[79.3167266845706,13.119368553161621],[79.31239318847673,13.113769531250114],[79.30973052978533,13.106900215148926],[79.31002807617199,13.099940299987907],[79.3079376220706,13.09691143035883],[79.29876708984386,13.11483192443842],[79.28810119628935,13.118280410766602],[79.28495025634783,13.12285041809082],[79.27384948730469,13.120901107788086],[79.27266693115263,13.12666034698492],[79.27128601074224,13.138060569763184],[79.26741027832048,13.141201019287053],[79.26120758056669,13.140749931335563],[79.25646972656278,13.136540412902889],[79.2513732910158,13.146199226379395],[79.24722290039068,13.14808177947998],[79.24423980712919,13.141151428222656],[79.24333953857422,13.133350372314567],[79.22635650634766,13.134610176086426],[79.2142868041995,13.0968399047851],[79.19332122802763,13.089690208435115],[79.1889190673831,13.084618568420524],[79.18699645996105,13.07705020904541],[79.18065643310553,13.067040443420467],[79.17910003662126,13.060111999511776],[79.16942596435553,13.053009986877385],[79.17653656005888,13.03827095031744],[79.17697143554705,13.033379554748535],[79.17662048339861,13.029769897460938],[79.17310333251982,13.019281387329102],[79.17059326171886,13.015680313110352],[79.16120147705084,13.011798858642635],[79.15270233154325,13.007292747497615],[79.11927032470709,13.02256965637207],[79.10437774658209,13.024220466613826],[79.0827865600586,13.012471199035588],[79.06906890869146,13.014150619506893],[79.06057739257841,13.020839691162053],[79.05397796630876,13.028161048889274],[79.05326843261724,13.037990570068473],[79.04389190673834,13.043720245361271],[79.03353881835955,13.045660018921012],[79.02588653564447,13.049579620361385],[79.02281951904325,13.056401252746582],[79.01142883300798,13.057829856872786],[79.00036621093767,13.057881355285645],[78.9952392578125,13.063040733337516],[78.98825073242199,13.072651863098372],[78.98174285888678,13.076199531555176],[78.96293640136713,13.071559906005973],[78.95918273925798,13.065440177917424],[78.95001220703142,13.066089630126953],[78.94584655761724,13.063509941101188],[78.93663787841797,13.06997108459484],[78.93007659912121,13.066021919250602],[78.91438293457037,13.067761421203727],[78.90091705322294,13.052101135253963],[78.89346313476574,13.035092353820858],[78.8983993530274,13.031690597534237],[78.9043960571289,13.031050682067871],[78.91739654541033,13.032549858093489],[78.92043304443376,13.028620719909782],[78.92745971679682,13.02346134185791],[78.92864990234392,13.021450996398926],[78.92463684082048,13.01864147186285],[78.92299652099615,13.021760940551758],[78.91593170166021,13.023061752319393],[78.89010620117205,13.019829750061035],[78.88191986084001,13.019762039184627],[78.87937164306669,13.02550125122076],[78.88088989257841,13.044281005859432],[78.88040924072283,13.069602012634277],[78.80087280273455,13.075530052185059],[78.78659057617193,13.062151908874625],[78.78306579589872,13.056371688842717],[78.77752685546903,13.053159713745117],[78.75446319580072,13.046981811523665],[78.7460174560548,13.04540920257574],[78.73951721191412,13.045491218566895],[78.70244598388689,13.056151390075797],[78.70125579833979,13.044260025024357],[78.69597625732422,13.012520790100211],[78.69375610351574,13.004391670227108],[78.66861724853544,13.01105976104742],[78.65110778808594,13.0179319381715],[78.64895629882841,13.016351699829215],[78.64171600341825,13.001610755920638],[78.63733673095732,12.99684143066412],[78.62049865722662,12.982521057128963],[78.61366271972685,12.978890419006404],[78.6202468872072,12.973910331726074],[78.63791656494169,12.954409599304313],[78.62899780273455,12.953110694885254],[78.63566589355486,12.938340187072868],[78.64671325683594,12.919019699096793],[78.624771118164,12.914180755615348],[78.59156799316435,12.838549613952694],[78.58007049560553,12.767240524291992],[78.55811309814459,12.75164890289301],[78.55406188964861,12.746069908142033],[78.54564666748064,12.72861194610607],[78.5508880615235,12.726229667663802],[78.55393218994146,12.726060867309684],[78.55224609375028,12.720391273498535],[78.54824829101591,12.71498012542719],[78.54550933837896,12.707381248474121],[78.55224609375028,12.69709110260004],[78.54135894775402,12.68501186370861],[78.53127288818388,12.679931640625],[78.52774810791016,12.679001808166504],[78.52436828613287,12.679690361023177],[78.51853942871094,12.692379951477164],[78.52085876464861,12.697181701660213],[78.52561187744158,12.694749832153377],[78.52745819091825,12.697300910949764],[78.52641296386719,12.7012300491333],[78.5159759521485,12.703520774841252],[78.50740814208996,12.713090896606559],[78.50356292724615,12.713371276855526],[78.50180053710955,12.721509933471737],[78.49710083007818,12.724119186401367],[78.49431610107422,12.730371475219727],[78.48435211181669,12.734781265258846],[78.47966003417986,12.73001956939703],[78.48441314697283,12.723050117492733],[78.49146270751953,12.717069625854492],[78.49362945556646,12.711169242859114],[78.50903320312517,12.704901695251465],[78.510513305664,12.701769828796387],[78.50981140136736,12.69878005981451],[78.5045928955081,12.698000907898177],[78.50389099121111,12.693301200866813],[78.49788665771513,12.698511123657227],[78.49301147460955,12.69369983673107],[78.49344635009771,12.669590950012207],[78.47406005859403,12.6591796875],[78.45765686035185,12.662249565124512],[78.45935821533232,12.638760566711483],[78.46292877197271,12.635370254516602],[78.46189880371094,12.632279396057129],[78.45907592773455,12.631520271301383],[78.45961761474626,12.617409706115723],[78.43943786621094,12.61692047119152],[78.42489624023438,12.614900588989201],[78.41834259033214,12.62064170837425],[78.41233062744158,12.61831092834484],[78.40711212158232,12.617520332336426],[78.39980316162115,12.61331939697277],[78.36833953857428,12.611840248107853],[78.36054992675793,12.61511135101324],[78.34835815429716,12.623641014099121],[78.33883666992216,12.63190078735363],[78.32939910888678,12.63843059539795],[78.30876922607439,12.64999961853033],[78.29045867919939,12.65292072296154],[78.28700256347673,12.658149719238224],[78.28418731689459,12.667619705200195],[78.26442718505888,12.691840171814079],[78.22744750976591,12.689281463623104],[78.20011138916021,12.675642013549918],[78.1968383789063,12.678590774536246],[78.19531250000006,12.679969787597656],[78.18984985351591,12.68130970001232],[78.18946075439464,12.683550834655875],[78.19473266601568,12.695269584655762],[78.19608306884771,12.696689605713118],[78.19999694824213,12.696221351623592],[78.20324707031244,12.699009895324934],[78.20980834960943,12.699260711669865],[78.22032928466803,12.703289985656681],[78.22722625732433,12.715171813964957],[78.22886657714844,12.720202445984],[78.21927642822266,12.747029304504395],[78.22949981689459,12.762009620666504],[78.24186706542974,12.812331199646053],[78.24109649658209,12.847420692443848],[78.2446594238283,12.85110092163086],[78.25382232666033,12.849590301513672],[78.26262664794922,12.856590270996094],[78.30310058593756,12.847200393676871],[78.30622100830107,12.856471061706543],[78.30409240722668,12.865760803222713],[78.31105041503923,12.865370750427473],[78.32158660888678,12.862850189209041],[78.3227157592774,12.867851257324276],[78.32749176025396,12.874040603637752],[78.3227157592774,12.876190185546875],[78.32141876220709,12.871659278869629],[78.31617736816406,12.872201919555607],[78.31093597412115,12.873830795288029],[78.30996704101568,12.876482009887752],[78.313285827637,12.879771232605208],[78.31347656250028,12.888621330261344],[78.31645965576178,12.892610549926701],[78.32216644287115,12.889600753784237],[78.32718658447294,12.889230728149414],[78.33833312988298,12.906499862670898],[78.33773040771484,12.913121223449707],[78.33827209472685,12.915751457214355],[78.34398651123075,12.918091773986873],[78.34041595459001,12.921989440917969],[78.34076690673822,12.924920082092342],[78.34542846679693,12.928060531616211],[78.3609771728515,12.911619186401367],[78.36868286132818,12.901780128479004],[78.37834167480463,12.895191192626953],[78.38337707519537,12.895409584045524],[78.38508605957037,12.896250724792594],[78.38839721679699,12.905520439148177],[78.4173431396485,12.889031410217285],[78.4264068603515,12.902061462402457],[78.43582916259771,12.90067005157482],[78.43570709228544,12.888859748840446],[78.43830108642584,12.886240959167537],[78.43849182128912,12.879740715026855],[78.44644165039062,12.874732017517147],[78.45266723632824,12.86549186706543],[78.45211791992216,12.855721473693904],[78.45423889160185,12.853161811828727],[78.45694732666033,12.866059303283805],[78.4583358764649,12.879720687866325],[78.4561309814456,12.892752647399902],[78.43447113037126,12.908270835876522],[78.42594909667974,12.917130470275936],[78.42135620117193,12.923529624939022],[78.42035675048845,12.928958892822266],[78.42328643798834,12.933799743652344],[78.42459106445318,12.938209533691406],[78.41977691650408,12.94668197631836],[78.42735290527338,12.950531005859489],[78.42384338378912,12.954401016235465],[78.42191314697271,12.962748527527083],[78.42265319824219,12.968600273132324],[78.42565155029297,12.969771385192985],[78.43358612060553,12.968779563903865],[78.45790100097673,12.963241577148665],[78.45759582519537,12.970660209655705],[78.46142578125006,12.979120254516829],[78.45542144775408,12.990090370178223],[78.45036315917974,13.014870643615723],[78.44991302490251,13.025811195373592],[78.45060729980497,13.028240203857536],[78.4515762329101,13.031532287597884],[78.46704864501953,13.041371345520247],[78.50457763671903,13.052762031555176],[78.5047988891601,13.059379577636946],[78.49857330322271,13.069790840149153],[78.51380920410173,13.08468055725092],[78.51480865478521,13.091110229492301],[78.52796173095709,13.097359657287825],[78.52237701416033,13.099661827087516],[78.51619720459013,13.10081958770752],[78.5111389160158,13.106329917907829],[78.50869750976568,13.11326980590826],[78.50875091552746,13.119589805603027],[78.51291656494146,13.120230674743766],[78.52143096923845,13.129051208496207],[78.5354461669923,13.13074016571045],[78.53669738769548,13.136930465698299],[78.53269958496111,13.142091751098576],[78.53369903564459,13.14610958099371],[78.53878021240251,13.151571273803711],[78.546859741211,13.153430938720703],[78.55805969238298,13.152341842651367],[78.56907653808588,13.156482696533203],[78.5656814575197,13.17175102233881],[78.56333923339872,13.177400588989258],[78.55940246582048,13.179800987243596],[78.5564727783206,13.179841995239371],[78.55349731445312,13.17987060546875],[78.54688262939459,13.178620338439998],[78.54247283935553,13.180170059204158],[78.54094696044928,13.187251091003475],[78.55326080322266,13.189241409301758],[78.5598907470706,13.23337173461914],[78.56321716308611,13.238410949707031],[78.5721511840822,13.248600959777775],[78.57746887207026,13.262049674987907],[78.57611083984403,13.267129898071516],[78.56716918945307,13.271771430969295],[78.50115966796903,13.277211189269963],[78.4701766967774,13.293901443481559],[78.46640014648449,13.310121536254996],[78.45417785644537,13.304149627685547],[78.44790649414074,13.302819252014274],[78.44130706787126,13.299501419067383],[78.43785858154297,13.298760414123592],[78.43598175048845,13.29835033416748],[78.43031311035162,13.307828903198299],[78.42906951904291,13.31711196899414],[78.42682647705095,13.31807994842552],[78.42446899414091,13.319101333618107],[78.42077636718756,13.319091796875],[78.41526031494146,13.317130088806096],[78.4070663452149,13.310091972351131],[78.4020614624024,13.307379722595329],[78.39125061035168,13.30370998382574],[78.38291168212885,13.314070701599064],[78.36699676513678,13.320039749145621],[78.36791229248047,13.32848930358898],[78.38456726074224,13.323540687561092],[78.39523315429693,13.322569847107161],[78.39737701416044,13.332331657409668],[78.39253234863287,13.335540771484432],[78.38491058349615,13.338200569152946],[78.38366699218778,13.34235095977806],[78.36818695068388,13.348311424255598],[78.35640716552729,13.346719741821403],[78.35515594482428,13.355071067810002],[78.3712768554687,13.391000747680607],[78.36531066894543,13.424390792846907],[78.36702728271496,13.431270599365348],[78.36416625976574,13.437911033630371],[78.3625564575197,13.452071189880598],[78.36357879638678,13.459240913391113],[78.3672866821289,13.466851234436149],[78.3672866821289,13.495171546936035],[78.38546752929693,13.531669616699332],[78.38600921630876,13.543951988220215],[78.397758483887,13.566191673278922],[78.38031768798834,13.581309318542537],[78.36709594726562,13.58030033111595],[78.36139678955095,13.578872680664062],[78.34366607666033,13.577780723571834],[78.31247711181652,13.583501815796012],[78.24967956542974,13.574300765991268],[78.19374084472673,13.594902038574219],[78.19536590576183,13.601550102234],[78.19393920898455,13.616159439086971],[78.1858367919923,13.62117958068859],[78.16555786132818,13.620970726013127],[78.16053771972656,13.623430252075423],[78.1589965820312,13.645171165466422],[78.15576171875,13.648710250854549],[78.1461715698245,13.649660110473633],[78.12908935546892,13.648269653320256],[78.1232299804688,13.64890098571783],[78.11589050292963,13.645630836486816],[78.10736083984392,13.64709186553955],[78.07998657226591,13.650389671325684],[78.06585693359386,13.66449069976801],[78.05834197998064,13.666970252990666],[78.06092071533232,13.671770095825138],[78.06408691406256,13.674559593200627],[78.06537628173845,13.680060386657829],[78.0626068115235,13.685600280761832],[78.06405639648455,13.688179969787598],[78.08515167236357,13.680631637573185],[78.10537719726591,13.684400558471793],[78.10721588134771,13.698351860046387],[78.10988616943365,13.703951835632381],[78.10938262939482,13.71023082733177],[78.0849227905274,13.733491897583065],[78.11823272705095,13.776900291443098],[78.11517333984392,13.787679672241211],[78.10765838623075,13.80360031127941],[78.11725616455095,13.821771621704158],[78.1060409545899,13.853541374206657],[78.07491302490251,13.854919433593807],[78.07092285156267,13.871959686279297],[78.05471038818376,13.879351615905762],[78.04831695556652,13.884530067443904],[78.04115295410173,13.886729240417594],[78.04292297363287,13.863780975341854],[78.04133605957048,13.858051300048885],[78.03782653808605,13.852849960327262],[78.01558685302751,13.854381561279297],[78.00477600097662,13.861710548400822],[77.98516082763678,13.861669540405273],[77.96578216552729,13.820159912109375],[77.94458007812528,13.81997108459467],[77.94814300537115,13.824801445007324],[77.94805145263672,13.82936096191412],[77.94571685791044,13.839801788330192],[77.94184112548834,13.871050834655819],[77.97802734375017,13.893349647522086],[77.97466278076178,13.9053316116333],[77.97351074218756,13.924229621887207],[77.97857666015625,13.947650909423828],[77.96643066406256,13.950551986694336],[77.96127319335943,13.949971199035645],[77.95532226562517,13.941900253296012],[77.95426940917974,13.937049865722656],[77.95075988769548,13.927920341491813],[77.94905090332048,13.926739692688045],[77.94602203369146,13.928430557251033],[77.93885803222685,13.924619674682617],[77.92973327636713,13.908809661865462],[77.91160583496088,13.89724063873291],[77.86242675781267,13.926800727844352],[77.81423187255865,13.931001663208008],[77.80848693847656,13.922589302063045],[77.80635070800798,13.917550086975211],[77.82099151611357,13.889231681823674],[77.82724761962902,13.871600151062239],[77.81920623779303,13.866021156311263],[77.82772064209001,13.86061954498291],[77.80278015136724,13.840669631958235],[77.77410125732422,13.831730842590332],[77.7774276733399,13.824060440063533],[77.78026580810553,13.820020675659293],[77.78044128417986,13.816691398620662],[77.77848815917969,13.812891960144157],[77.76921081542974,13.808541297912598],[77.7553329467774,13.807540893554688],[77.72841644287115,13.801739692687931],[77.69552612304688,13.761431694030705],[77.68467712402361,13.75862121582037],[77.66850280761724,13.752281188964844],[77.67176818847662,13.77013111114502],[77.6702270507813,13.777499198913574],[77.6640167236331,13.775870323181152],[77.65659332275385,13.77666091918951],[77.64908599853521,13.77583980560297],[77.61434936523443,13.760310173034668],[77.61046600341814,13.755439758300895],[77.61264801025396,13.746870040893555],[77.63375091552751,13.741291046142578],[77.63674926757841,13.73524188995367],[77.62124633789068,13.727401733398551],[77.61564636230486,13.728361129760742],[77.60427093505865,13.742550849914664],[77.59559631347673,13.743578910827637],[77.58154296875006,13.730571746826115],[77.57363128662104,13.726650238037166],[77.56661987304705,13.729389190673942],[77.54814147949224,13.72040939331066],[77.541557312012,13.734931945800838],[77.53951263427751,13.743720054626522],[77.5295028686524,13.745850563049544],[77.51966857910156,13.743849754333496],[77.51512145996111,13.737039566040039],[77.526596069336,13.725250244140682],[77.52754211425787,13.719030380249023],[77.52783966064482,13.70703125],[77.52152252197294,13.687870025634766],[77.5027694702149,13.704409599304142],[77.48734283447271,13.706791877746582],[77.479721069336,13.70321083068859],[77.4764862060548,13.677599906921444],[77.44975280761724,13.675790786743164],[77.44481658935553,13.695760726928711],[77.46261596679682,13.743578910827637],[77.45873260498053,13.749810218811035],[77.45395660400396,13.778041839599723],[77.45240020751959,13.780401229858342],[77.45079040527338,13.785531044006575],[77.44056701660162,13.802291870117415],[77.43546295166021,13.799230575561637],[77.42865753173857,13.787989616394043],[77.42005920410185,13.788961410522575],[77.41689300537126,13.790940284729118],[77.40866088867188,13.799251556396484],[77.40820312500011,13.802470207214355],[77.4136810302735,13.807380676269531],[77.41275787353521,13.811750411987362],[77.42472076416033,13.826689720153865],[77.40393066406267,13.831421852111816],[77.38983917236334,13.832929611206112],[77.38111114501959,13.831251144409237],[77.37285614013678,13.83128929138195],[77.35220336914062,13.844381332397518],[77.32000732421892,13.825751304626522],[77.31616210937517,13.839731216430721],[77.31088256835943,13.851131439208984],[77.3069305419923,13.857239723205794],[77.28552246093756,13.846031188964957],[77.28292846679716,13.840979576111067],[77.275146484375,13.842801094055176],[77.25595092773443,13.839450836181754],[77.25044250488287,13.839470863342285],[77.2437362670899,13.860290527343807],[77.24073791503918,13.86588191986084],[77.23925018310575,13.873590469360352],[77.23882293701178,13.881509780883846],[77.24156188964838,13.888851165771598],[77.24009704589844,13.894080162048454],[77.23384094238287,13.894931793213004],[77.22547912597668,13.895469665527344],[77.22189331054716,13.888831138610897],[77.22093200683622,13.881760597229004],[77.21700286865251,13.869261741638297],[77.2115097045899,13.861418724060115],[77.20812225341808,13.860401153564567],[77.2088470458985,13.878431320190373],[77.19271087646513,13.856221199035701],[77.17880249023432,13.859840393066406],[77.17513275146496,13.86140060424799],[77.18221282959013,13.901300430297908],[77.15593719482422,13.899811744690055],[77.15702056884794,13.891301155090389],[77.16171264648443,13.882431030273551],[77.16237640380888,13.876291275024414],[77.16491699218767,13.866218566894645],[77.16249084472662,13.856980323791504],[77.13938903808594,13.859040260314885],[77.13015747070341,13.849939346313477],[77.12388610839844,13.849390029907227],[77.12526702880876,13.843010902404899],[77.1404571533206,13.837889671325684],[77.14576721191435,13.834939956665096],[77.15791320800787,13.825470924377385],[77.16224670410173,13.820740699768066],[77.16194152832037,13.815461158752498],[77.15409851074224,13.800561904907227],[77.1713409423831,13.772049903869743],[77.16964721679682,13.761369705200309],[77.1665802001956,13.754669189453239],[77.15815734863293,13.75493144989025],[77.14673614501982,13.754751205444563],[77.13751983642584,13.75565242767334],[77.13410949707037,13.753030776977482],[77.12351989746111,13.750890731811523],[77.11094665527361,13.754620552062931],[77.09526824951166,13.760880470275879],[77.08577728271501,13.758111000061149],[77.08036041259794,13.753422737121696],[77.0805892944336,13.737391471862907],[77.07148742675781,13.738750457763786],[77.06004333496094,13.738861083984318],[77.03518676757807,13.769281387329102],[77.01986694335949,13.769860267639217],[77.0184402465822,13.761699676513672],[77.01384735107439,13.747471809387434],[77.01142120361334,13.732721328735579],[77.00193786621105,13.736661911010856],[76.99259185791027,13.742550849914664],[76.9812316894533,13.785799980163688],[76.96882629394531,13.81024169921875],[76.96839141845732,13.814390182495117],[76.97155761718756,13.818861007690487],[76.97653961181646,13.82136058807373],[76.98398590087896,13.827740669250488],[77.00598907470732,13.850090026855469],[77.00802612304693,13.862900733947754],[77.0123062133789,13.864090919494686],[77.01259613037115,13.867239952087402],[77.01169586181669,13.871440887451229],[77.01728057861345,13.893370628356934],[77.0278091430664,13.897170066833496],[77.04128265380854,13.89739990234375],[77.03584289550787,13.925591468811149],[77.00810241699213,13.947369575500716],[76.99942016601568,13.950440406799316],[76.98899841308622,13.956691741943587],[76.9913330078125,13.975811958313045],[76.99437713623047,13.981491088867188],[76.98501586914057,13.987520217895565],[76.977348327637,13.993870735168457],[76.97764587402344,13.993860244751033],[76.9751815795899,13.996589660644531],[76.94857025146513,14.006779670715275],[76.93109893798845,14.022731781005973],[76.93371582031244,14.040671348571834],[76.93797302246094,14.047599792480526],[76.94328308105486,14.04721927642845],[76.94972991943354,14.04784107208252],[76.97152709960955,14.052391052246207],[76.97421264648438,14.057709693908919],[76.97500610351568,14.06527042388916],[76.97225189208984,14.068401336669922],[76.97184753417997,14.075711250305233],[76.96808624267595,14.079739570617903],[76.95143127441435,14.085371971130485],[76.94658660888678,14.102971076965332],[76.94291687011736,14.111901283264217],[76.93739318847673,14.115151405334586],[76.92697906494152,14.12720966339117],[76.922416687012,14.129039764404297],[76.91250610351591,14.122109413146973],[76.88368225097668,14.131031990051326],[76.88691711425787,14.136240005493164],[76.88919067382818,14.15087890625],[76.89142608642595,14.1589994430542],[76.8967590332033,14.161901473999023],[76.91718292236328,14.157670974731673],[76.92296600341803,14.163399696350154],[76.93698120117205,14.165891647338867],[76.9392471313476,14.167710304260254],[76.94153594970697,14.1780300140382],[76.93923950195307,14.186808586120605],[76.94164276123053,14.189311981201172],[76.94404602050798,14.188320159912053],[76.9490814208985,14.183810234069881],[76.95378112792986,14.1810302734375],[76.95849609375028,14.175509452819938],[76.9862670898438,14.172531127929744],[77.00605010986345,14.174851417541618],[77.01403808593767,14.173041343689022],[77.01982879638678,14.172701835632324],[77.02133941650396,14.168398857116756],[77.02105712890653,14.16432952880865],[77.01600646972662,14.152690887451172],[77.01493835449247,14.132181167602653],[77.01380157470732,14.127401351928711],[77.01920318603533,14.125290870666618],[77.02027130126982,14.122321128845442],[77.01635742187517,14.11752128601097],[77.01703643798857,14.11195087432867],[77.016586303711,14.106092453002987],[77.00831604003923,14.09813117980957],[77.01043701171892,14.092049598693904],[77.02369689941435,14.05325889587408],[77.0690307617188,14.047189712524414],[77.06952667236328,14.039441108703613],[77.07649230957037,14.038049697875977],[77.0907592773438,14.038260459900016],[77.12110137939459,14.042180061340389],[77.12468719482439,14.03474140167242],[77.12783050537121,14.018650054931697],[77.13403320312517,14.00967025756836],[77.13288116455095,14.004210472106934],[77.13434600830107,13.998130798339844],[77.14733886718744,13.991621971130371],[77.15444183349626,13.990610122680721],[77.17138671875,14.008599281311035],[77.19455718994146,14.002860069274902],[77.24256896972673,14.00631141662592],[77.25575256347662,14.020958900451774],[77.26451873779303,14.026529312133732],[77.27150726318354,14.028101921081543],[77.27420806884783,14.016181945800724],[77.27260589599638,14.00802040100109],[77.2785110473634,14.00690078735363],[77.30355834960938,14.026729583740348],[77.31349182128923,14.024820327758732],[77.3164825439456,14.021459579467887],[77.31700897216803,14.0153226852417],[77.32409667968761,14.005310058593693],[77.33011627197283,13.994880676269531],[77.3296661376956,13.993351936340389],[77.3297729492188,13.993351936340389],[77.33032989501959,13.99035930633545],[77.33347320556669,13.988051414489803],[77.34567260742216,13.985580444336165],[77.35378265380865,13.982320785522518],[77.35338592529314,13.976289749145735],[77.34693908691412,13.960589408874512],[77.34720611572294,13.955351829528809],[77.34374237060558,13.950892448425293],[77.36200714111334,13.945468902588004],[77.3626098632813,13.942300796508789],[77.34261322021513,13.912241935730037],[77.34350585937506,13.90598106384283],[77.3483428955081,13.896540641784668],[77.41896820068376,13.894908905029354],[77.40770721435547,13.936100006103572],[77.42257690429688,13.93900108337425],[77.42870330810564,13.943341255188045],[77.42904663085932,13.956381797790755],[77.43090057373058,13.961991310119743],[77.4306411743164,13.968779563904036],[77.42661285400408,13.973281860351506],[77.42050170898455,13.976870536804256],[77.3865127563476,13.974001884460506],[77.3833618164063,14.00735855102539],[77.32618713378918,14.022939682006893],[77.33126068115251,14.039841651916618],[77.33796691894537,14.053831100463924],[77.35012054443376,14.05338191986084],[77.35855865478521,14.058929443359375],[77.36136627197283,14.065951347351302],[77.37238311767607,14.07185173034668],[77.3796615600586,14.090391159057617],[77.39544677734403,14.10344123840332],[77.39643096923822,14.110569953918457],[77.39444732666021,14.114641189575309],[77.38973999023466,14.118570327759016],[77.35246276855474,14.105351448059196],[77.34851074218761,14.099261283874512],[77.344535827637,14.0960111618042],[77.34651184082048,14.110440254211653],[77.34651184082048,14.117850303649902],[77.34773254394537,14.12434101104742],[77.35485839843744,14.123749732971305],[77.37668609619146,14.1296005249024],[77.37873077392595,14.138279914856014],[77.38262176513678,14.14772033691412],[77.38955688476591,14.15354061126709],[77.38971710205107,14.165260314941634],[77.39745330810547,14.166500091552962],[77.40972137451178,14.169719696044979],[77.41631317138689,14.16930103302002],[77.42347717285185,14.165080070495605],[77.46333312988293,14.164230346679688],[77.48854064941435,14.153079986572266],[77.50044250488298,14.150960922241325],[77.50267028808588,14.157120704650993],[77.51035308837908,14.172019958496037],[77.50942230224615,14.176950454711971],[77.50414276123058,14.180660247802848],[77.5010833740235,14.193221092224121],[77.49971008300787,14.204469680786246],[77.4930877685548,14.213970184326229],[77.49008178710932,14.227630615234602],[77.49936676025396,14.260510444641113],[77.49626159667974,14.271751403808707],[77.48439025878923,14.27525997161871],[77.47934722900402,14.284770965576229],[77.47912597656256,14.283740997314453],[77.46842956542974,14.279439926147518],[77.4546966552735,14.272190093994197],[77.44362640380865,14.27755069732666],[77.44243621826189,14.290910720825195],[77.44233703613287,14.309750556945858],[77.4275283813476,14.304849624633789],[77.42587280273438,14.320811271667594],[77.42072296142578,14.321991920471191],[77.4092864990235,14.327101707458496],[77.39488983154325,14.3291597366333],[77.37882232666021,14.317079544067383],[77.3738632202149,14.305109977722225],[77.37500762939459,14.295188903808707],[77.38986968994146,14.261389732360897],[77.4010162353515,14.260410308838004],[77.40479278564482,14.248600959777946],[77.40905761718767,14.223581314086914],[77.41470336914091,14.217060089111385],[77.41570281982416,14.21196174621582],[77.41487884521496,14.2032213211059],[77.38378906250011,14.191821098327694],[77.37661743164062,14.216711997985897],[77.36431121826178,14.223310470581055],[77.35540771484403,14.230039596557674],[77.35926055908203,14.269330024719466],[77.27958679199224,14.276089668273869],[77.2826766967774,14.302280426025447],[77.28114318847662,14.331110954284782],[77.27330780029303,14.331750869750977],[77.26732635498047,14.327010154724235],[77.25785064697271,14.325701713562012],[77.25129699707031,14.32060241699213],[77.24508666992193,14.314530372619572],[77.23195648193365,14.311070442199764],[77.22292327880876,14.314981460571289],[77.20979309082037,14.313010215759277],[77.19635772705072,14.314299583435059],[77.15215301513689,14.337740898132381],[77.14644622802734,14.33219146728527],[77.14054107666021,14.336111068725813],[77.13191986084001,14.330591201782227],[77.12577056884794,14.301531791687069],[77.11730957031256,14.291410446166992],[77.11192321777344,14.287530899047852],[77.11054229736328,14.27493000030529],[77.10692596435564,14.261760711669865],[77.11551666259783,14.256819725036735],[77.11157989501959,14.248461723327694],[77.11299896240229,14.239919662475586],[77.10994720458979,14.221480369567928],[77.10507965087896,14.213281631469727],[77.09522247314482,14.209480285644588],[77.08486938476568,14.208450317382756],[77.07534027099615,14.209349632263297],[77.06761932373047,14.217860221862736],[77.06022644042986,14.224160194396973],[77.0496292114259,14.239542007446403],[77.03304290771513,14.240489959716854],[77.00411987304705,14.231569290161076],[76.99456024169916,14.235560417175407],[76.99279022216808,14.232989311218262],[76.98937988281278,14.23640060424799],[76.98248291015636,14.238151550293082],[76.95139312744152,14.234151840209904],[76.94346618652361,14.236310005188045],[76.93784332275396,14.240120887756461],[76.9359893798831,14.248771667480526],[76.93363189697271,14.253500938415527],[76.92582702636724,14.264399528503361],[76.92485809326178,14.27218055725109],[76.93548583984392,14.276641845703352],[76.94375610351568,14.281681060791072],[76.94873809814482,14.286761283874512],[76.9501113891601,14.2940292358399],[76.94670104980469,14.300449371338004],[76.94293975830084,14.305378913879622],[76.89897155761747,14.31924057006836],[76.8853607177735,14.33959102630621],[76.87909698486334,14.346389770507812],[76.87861633300798,14.351392745971737],[76.88314056396513,14.390291213989258],[76.91310119628935,14.413552284240723],[76.91896820068371,14.41145038604742],[76.93678283691406,14.401309967041072],[76.94156646728533,14.399541854858398],[76.94359588623075,14.403261184692383],[76.94467926025396,14.40892028808588],[76.944320678711,14.425231933593977],[76.94271087646501,14.439841270446777],[76.94378662109403,14.445101737976074],[76.95858764648443,14.445390701293888],[76.96437072753918,14.451741218567008],[76.97419738769548,14.470360755920353],[76.97339630126953,14.478281021118221],[76.90651702880865,14.484161376953352],[76.89427185058611,14.4807519912722],[76.88549041748064,14.475940704345817],[76.88030242919916,14.470529556274528],[76.87020111083979,14.468440055847282],[76.86380767822271,14.474671363830623],[76.84393310546892,14.509149551391602],[76.83207702636736,14.515070915222168],[76.82842254638666,14.522240638732853],[76.82758331298834,14.523058891296387],[76.81973266601568,14.520339965820312],[76.80509185791021,14.524870872497559],[76.79972839355474,14.527731895446777],[76.77815246582037,14.579331398010254],[76.76091003417963,14.596281051635799],[76.77127838134771,14.673839569091854],[76.7810821533206,14.69047069549572],[76.78553771972673,14.70709133148199],[76.79807281494169,14.734590530395508],[76.79502868652372,14.741131782531738],[76.788139343262,14.751840591430721],[76.78642272949247,14.761911392211971],[76.78128814697294,14.77433013916027],[76.7803497314456,14.779261589050293],[76.81096649169928,14.781431198120117],[76.81735229492216,14.785440444946403],[76.82073211669928,14.786609649658317],[76.82641601562506,14.786980628967228],[76.83136749267584,14.784111976623478],[76.83377075195307,14.784909248352108],[76.84008789062517,14.830040931701774],[76.86030578613298,14.89118957519554],[76.86547851562517,14.937600135803336],[76.86367034912138,14.955210685730094],[76.8644561767581,14.964019775390625],[76.84115600585949,14.961171150207633],[76.83587646484375,14.95908069610607],[76.82789611816423,14.951009750366268],[76.81545257568354,14.96380996704113],[76.76377105712885,14.969869613647461],[76.75698852539068,14.982971191406364],[76.76235961914068,14.989461898803654],[76.76518249511724,14.989061355590877],[76.76622009277372,14.990811347961426],[76.76805877685553,14.995639801025447],[76.76953125000017,15.000581741333121],[76.77974700927763,15.005889892578239],[76.78457641601562,15.016670227050838],[76.7725601196289,15.065119743347111],[76.77574157714872,15.069161415100154],[76.78391265869146,15.075670242309627],[76.79693603515653,15.09076023101818],[76.82126617431646,15.07485198974615],[76.82943725585955,15.07429122924799],[76.83740997314453,15.072469711303711],[76.84320831298834,15.06615924835205],[76.86057281494146,15.056710243225098],[76.864067077637,15.05000019073509],[76.86975097656256,15.044019699096623],[76.87670135498047,15.028678894042969],[76.91352081298845,15.030950546264876],[76.9316711425783,15.026310920715332],[76.94274902343756,15.027030944824332],[76.95066833496122,15.024431228637809],[76.96679687500006,15.013169288635368],[76.98178100585932,15.010360717773438],[76.98351287841797,15.020421981811523],[76.9956512451173,15.023680686950684],[77.00067901611328,15.02958965301525],[77.04688262939453,15.02921199798584],[77.04878997802734,15.023860931396541],[77.04638671875011,15.016017913818416],[77.04100799560553,15.005481719970703],[77.06147003173857,15.001549720764103],[77.07881927490263,15.000009536743278],[77.08049774169928,15.007910728454647],[77.08206939697294,15.022290229797363],[77.08825683593767,15.023037910461426],[77.0907821655274,15.027722358703727],[77.10167694091803,15.027340888977164],[77.10957336425776,15.028569221496582],[77.11161041259777,15.038129806518555],[77.1160659790039,15.040102005004826],[77.11839294433611,15.050630569458008],[77.12552642822271,15.068209648132324],[77.12760925292974,15.09364128112793],[77.14771270751947,15.107330322265739],[77.15403747558611,15.120520591735783],[77.15276336669928,15.131621360778809],[77.13536071777361,15.136010169982853],[77.13208007812494,15.1426811218264],[77.13697052001959,15.149251937866325],[77.14549255371094,15.150700569152889],[77.15770721435553,15.148950576782283],[77.1592864990235,15.152120590210075],[77.1587905883789,15.157869338989315],[77.16320037841814,15.161331176757926],[77.1644821166995,15.168470382690657],[77.15815734863293,15.193819999694938],[77.14138031005888,15.218132019043026],[77.14791107177729,15.285670280456543],[77.1154174804688,15.289850234985408],[77.11342620849626,15.319120407104492],[77.11023712158209,15.3207302093507],[77.10968780517584,15.327281951904354],[77.09929656982439,15.326621055603255],[77.06909179687528,15.31947135925293],[77.06157684326178,15.321860313415584],[77.0628967285158,15.337909698486328],[77.03803253173857,15.358781814575309],[77.04228973388689,15.374799728393555],[77.04382324218767,15.38374137878418],[77.04100799560553,15.391510009765682],[77.033256530762,15.396260261535758],[77.02854156494158,15.401302337646541],[77.031005859375,15.418339729309139],[77.03048706054693,15.42633056640625],[77.02739715576189,15.435180664062557],[77.02384185791021,15.43856143951416],[77.01528167724615,15.441069602966365],[77.00609588623053,15.44823074340843],[77.00203704834001,15.45538139343273],[77.00074005126959,15.461701393127669],[76.99600219726568,15.467459678649846],[76.9760818481447,15.482012748718375],[76.97039031982439,15.490921974182243],[76.99603271484386,15.499731063842773],[77.0054321289062,15.50277137756359],[77.02659606933588,15.499990463256893],[77.02874755859392,15.508560180664062],[77.028861999512,15.52512168884283],[77.02371215820341,15.576381683349666],[77.02710723876959,15.629349708557186],[77.08143615722662,15.652840614318904],[77.11620330810575,15.62510967254633],[77.12092590332037,15.637201309204329],[77.12497711181669,15.659050941467285],[77.11905670166027,15.66208934783947],[77.11046600341808,15.671262741088924],[77.1008377075197,15.678879737854004],[77.07592773437506,15.690878868103027],[77.07627105712896,15.721410751343],[77.04708862304693,15.72501182556158],[77.04669189453125,15.75133132934576],[77.05171966552746,15.750129699707145],[77.05316925048845,15.758879661560172],[77.04850769042997,15.760760307312012],[77.04972076416033,15.764101028442496],[77.05372619628923,15.76364994049078],[77.0624771118164,15.778390884399528],[77.0672378540039,15.796050071716422],[77.06151580810547,15.797921180725098],[77.06388854980474,15.823169708251953],[77.05226135253912,15.824338912963867],[77.04991912841814,15.82014274597168],[77.04154205322266,15.821660995483398],[77.03836822509777,15.825510025024528],[77.02815246582048,15.825590133667106],[77.02442169189459,15.82948970794672],[77.02227020263689,15.831780433654899],[77.033187866211,15.853080749511776],[77.04104614257824,15.863959312439079],[77.0524520874024,15.876282691955566],[77.06595611572266,15.899311065673885],[77.07679748535173,15.909740447998047],[77.09005737304699,15.917869567871094],[77.10460662841791,15.924531936645451],[77.129936218262,15.930391311645565],[77.14343261718756,15.940600395202637],[77.1571273803711,15.944480895996207],[77.17070007324224,15.945549964904785],[77.1806259155274,15.950062751770076],[77.24891662597662,15.957740783691406],[77.28244781494146,15.947361946105957],[77.35360717773443,15.943701744079704],[77.36814117431646,15.936040878296012],[77.37622070312494,15.933250427246207],[77.38559722900408,15.934451103210563],[77.39270019531256,15.936761856079102],[77.40763092041027,15.935651779174918],[77.4264221191408,15.942278861999625],[77.46697998046903,15.927580833435059],[77.48332214355474,15.928059577941895],[77.49732208251982,15.926300048828182],[77.50945281982428,15.920860290527287],[77.53173828125006,15.916119575500545],[77.54884338378906,15.913668632507438],[77.57163238525396,15.912320137024153],[77.58841705322271,15.906991958618107],[77.60637664794933,15.911729812622184],[77.6396026611331,15.883131027221737],[77.68353271484392,15.873891830444279],[77.71611785888672,15.886570930481184],[77.79918670654303,15.865320205688704],[77.8556518554688,15.875761032104606],[77.887680053711,15.895921707153263],[77.92829895019537,15.876509666443098],[77.97287750244158,15.874119758605957],[78.00186920166033,15.85923004150402],[78.01696777343756,15.895149230957031],[78.03981781005876,15.898100852966422],[78.06366729736345,15.844561576843489],[78.1011428833009,15.827921867370605],[78.12583160400408,15.848931312561149],[78.16467285156278,15.848990440368652],[78.18003082275408,15.900449752807617],[78.2428665161134,15.937048912048283],[78.25974273681658,15.99473094940197],[78.25138092041021,16.025680541992415],[78.26815795898438,16.034759521484375],[78.31620788574236,16.02915191650402],[78.34041595459001,16.052770614624137],[78.37003326416021,16.05984115600586],[78.40566253662126,16.08094978332514],[78.45101165771479,16.08103179931652],[78.55912780761747,16.05637168884283],[78.603500366211,16.09643936157221],[78.63648986816412,16.091449737548942],[78.6865615844726,16.040380477905387],[78.73898315429716,16.021141052246207],[78.77504730224638,16.023609161376953],[78.80799865722662,16.046190261840934],[78.83650207519531,16.087377548217773],[78.83213043212908,16.151769638061637],[78.85645294189464,16.158599853515682],[78.87267303466808,16.110170364379883],[78.90117645263689,16.09762191772461],[78.92186737060553,16.1218719482423],[78.90558624267595,16.16492080688471],[78.90808105468756,16.191040039062557],[79.02014160156278,16.24427032470726],[79.12300872802751,16.237911224365348],[79.17658233642578,16.21713066101097],[79.22505950927751,16.250070571899528],[79.22785186767607,16.336811065673828],[79.21147155761713,16.36281013488781],[79.21906280517607,16.438169479370174],[79.23618316650396,16.458539962768555],[79.22410583496111,16.49213981628418],[79.23044586181646,16.51929092407221],[79.26611328125006,16.561470031738338],[79.34552764892607,16.579561233520508],[79.4265899658206,16.582521438598746],[79.45059204101574,16.609149932861328],[79.49717712402372,16.630510330200195],[79.53671264648455,16.631561279296875],[79.57402038574247,16.64359092712408],[79.59990692138678,16.663270950317383],[79.64803314209013,16.662000656128043],[79.68303680419928,16.69038009643549],[79.7227401733399,16.69260978698736],[79.75048065185541,16.720119476318473],[79.77490234374994,16.729520797729606],[79.81025695800787,16.690490722656193],[79.86183929443388,16.69822120666504],[79.89092254638689,16.649560928344727],[79.92366790771479,16.63073921203636],[79.94256591796875,16.632629394531307],[79.97302246093761,16.659521102905387],[79.99151611328136,16.6925506591798],[80.04789733886736,16.74515151977539],[80.06967163085943,16.813608169555664],[80.04183959960943,16.826061248779297],[80.03309631347668,16.85244941711437],[79.99167633056646,16.86325073242199],[80.0095520019533,16.907260894775334],[80.03705596923834,16.936470031738338],[80.04588317871105,16.965299606323242],[80.08423614501982,16.96319007873558],[80.1057891845706,16.981319427490234],[80.13385772705072,16.985359191894474],[80.18212890625,17.044940948486442],[80.19554901123053,17.01804161071783],[80.21784210205095,17.019620895385856],[80.2411499023438,17.002809524536133],[80.26217651367199,17.010629653930664],[80.30137634277361,16.955860137939567],[80.31922149658232,16.870941162109375],[80.358627319336,16.854909896850586],[80.37293243408209,16.81110000610363],[80.41867065429705,16.842319488525618],[80.45260620117205,16.81529045104986],[80.45639801025385,16.790029525756836],[80.48953247070324,16.775859832763672],[80.56281280517607,16.762830734253157],[80.59751892089872,16.785089492797965],[80.58584594726574,16.806659698486385],[80.55458068847685,16.824789047241268],[80.5649719238283,16.869039535522518],[80.58674621582037,16.87393951416027],[80.58419036865229,16.926519393921012],[80.53173828124994,16.95017814636242],[80.52069091796875,16.936399459839095],[80.49130249023432,16.94818115234375],[80.47688293457037,16.921171188354606],[80.44254302978521,16.944940567016715],[80.36042022705107,16.97050094604498],[80.38871765136736,17.01406097412115],[80.36699676513689,17.056568145752067],[80.39508819580084,17.077568054199276],[80.42053985595697,17.024860382080135],[80.4462432861331,17.017021179199162],[80.48465728759783,17.056310653686523],[80.49653625488287,17.10129165649414],[80.54907226562528,17.123622894287166],[80.56017303466797,17.1380290985108],[80.62975311279325,17.11001968383789],[80.68399810791033,17.068740844726562],[80.82322692871111,17.037780761718864],[80.85884857177729,17.050851821899414],[80.86421203613298,17.09581756591797],[80.85504913330078,17.11141014099121],[80.87030792236328,17.146301269531364],[80.91330718994146,17.145950317382756],[80.9053497314456,17.20129013061529],[80.930648803711,17.205030441284123],[80.98516082763689,17.17938995361328],[81.02617645263689,17.18666839599615],[81.0438613891601,17.204540252685604],[81.14554595947283,17.231662750244254],[81.16278839111334,17.23258018493658],[81.1719589233399,17.305450439453125],[81.19030761718778,17.327369689941406],[81.2671661376956,17.319999694824276],[81.28916931152361,17.337549209594727],[81.32247161865246,17.389150619506836],[81.38522338867199,17.355131149292106],[81.41564941406267,17.361629486083984],[81.44151306152372,17.38171005249046],[81.49341583251947,17.448820114135742],[81.50142669677729,17.539360046386946],[81.52390289306669,17.572610855102596],[81.50292968750028,17.58987998962408],[81.57116699218756,17.687868118286246],[81.57295989990229,17.718669891357422],[81.62306213378918,17.762790679931697],[81.67469024658209,17.767110824585075],[81.72959136962908,17.81929969787592],[81.75293731689459,17.818309783935774],[81.79440307617182,17.844150543212834],[81.75829315185558,17.893360137939396],[81.77574920654314,17.904769897460938],[81.78241729736345,17.90974044799816],[81.78601074218744,17.913610458373967],[81.80104064941435,17.936080932617415],[81.81980133056658,17.94546127319336],[81.83333587646501,17.95103073120123],[81.84681701660185,17.95079994201666],[81.93609619140653,17.984090805053768],[82.00168609619169,18.023660659790096],[82.00473022460949,18.03430938720726],[82.00157928466814,18.044811248779297],[82.0066375732423,18.049198150634766],[82.0167770385745,18.055128097534293],[82.02465820312517,18.057880401611385],[82.05972290039062,18.045118331909237],[82.07221221923834,18.065637588501204],[82.09236145019548,18.052761077880973],[82.10797882080078,18.054019927978516],[82.12924194335943,18.048669815063704],[82.13236999511747,18.03561973571783],[82.14730834960955,18.04042053222679],[82.16034698486334,18.043598175048942],[82.16374969482428,18.04162025451666],[82.17314910888683,18.025592803955078],[82.1769409179688,18.02089118957531],[82.17424774169928,18.015502929687614],[82.17740631103516,18.010570526123274],[82.18508911132812,18.00735282897955],[82.19101715087896,18.00895118713379],[82.19692230224615,18.008689880371094],[82.21817779541044,17.99419021606451],[82.22297668457026,17.99287986755394],[82.23079681396479,17.993709564208984],[82.23699188232428,17.99201011657709],[82.23831939697271,17.983900070190487],[82.2417068481447,17.979761123657227],[82.25318908691412,17.98019027709961],[82.26107788085949,17.98240089416504],[82.26725006103516,17.98644065856945],[82.27052307128923,17.997741699218864],[82.27081298828153,18.010669708251953],[82.26893615722685,18.01993942260748],[82.26624298095732,18.02569007873535],[82.25815582275396,18.03487014770502],[82.28777313232433,18.060560226440487],[82.30441284179716,18.03961944580078],[82.32182312011736,18.05018043518072],[82.32617950439453,18.046510696411133],[82.3249130249024,18.042690277099553],[82.32977294921903,18.040410995483512],[82.33634948730474,18.047260284423942],[82.33692932128912,18.049100875854492],[82.34317779541033,18.067819595336857],[82.3431625366211,18.08247947692871],[82.33216094970709,18.0941219329834],[82.33248901367205,18.10704994201666],[82.33030700683605,18.118999481201115],[82.3353576660158,18.127258300781364],[82.33336639404308,18.142379760742188],[82.34873199462908,18.161832809448242],[82.31030273437528,18.17460250854515],[82.30609893798857,18.195659637451115],[82.3197326660158,18.20104026794445],[82.332817077637,18.215789794921818],[82.33022308349626,18.231340408325195],[82.33180236816412,18.246791839599553],[82.33390045166021,18.252290725708008],[82.33689880371111,18.266241073608512],[82.34365081787115,18.271650314331055],[82.36705780029303,18.270940780639705],[82.37187957763678,18.274101257324332],[82.3822402954101,18.28429031372076],[82.38540649414068,18.28909111022972],[82.38735198974638,18.300622940063704],[82.39301300048834,18.306440353393782],[82.38842773437506,18.31120109558111],[82.38436889648455,18.318700790405387],[82.38049316406278,18.319311141967717],[82.36524963378935,18.31642913818365],[82.35797119140636,18.308240890502873],[82.34290313720714,18.307340621948242],[82.33444213867193,18.3171329498291],[82.34542083740263,18.32181930541998],[82.36013793945312,18.343700408935547],[82.36947631835938,18.350362777710075],[82.37635040283203,18.35326957702631],[82.37879943847685,18.361658096313704],[82.38109588623041,18.366689682006893],[82.38442993164068,18.36911010742199],[82.38443756103521,18.372409820556697],[82.37523651123064,18.383060455322322],[82.37490844726568,18.39281082153326],[82.37251281738276,18.398090362548828],[82.36599731445341,18.403352737426758],[82.36128997802751,18.40991020202631],[82.36599731445341,18.413011550903434],[82.36702728271501,18.41716957092308],[82.37174224853544,18.42016983032221],[82.37760162353521,18.42198944091797],[82.39737701416016,18.451601028442383],[82.41220092773438,18.46467018127447],[82.42032623291021,18.46988105773937],[82.42687225341791,18.476991653442383],[82.43712615966808,18.497301101684627],[82.44993591308622,18.511421203613224],[82.45342254638689,18.51702117919922],[82.47400665283203,18.5368328094483],[82.48161315917963,18.538459777832145],[82.48532104492193,18.53370094299339],[82.481918334961,18.532711029052734],[82.47783660888689,18.53153038024908],[82.4757385253908,18.529407501220817],[82.4814529418947,18.51506042480463],[82.5231323242188,18.50392913818365],[82.52449798584013,18.489780426025334],[82.52005767822271,18.48726081848139],[82.51979064941423,18.48488998413086],[82.51951599121105,18.4825115203858],[82.5244827270509,18.48284912109375],[82.52752685546886,18.477720260620345],[82.52101135253912,18.472370147705192],[82.52751159667974,18.46821975708002],[82.52176666259771,18.461759567260856],[82.51774597167974,18.459289550781307],[82.51613616943354,18.45588111877464],[82.52316284179716,18.44577026367199],[82.52670288085943,18.447309494018555],[82.5293807983399,18.442939758300895],[82.52879333496094,18.4403400421142],[82.53015136718756,18.434310913085994],[82.53308105468778,18.43406105041504],[82.53560638427734,18.4366512298584],[82.53900909423857,18.43808937072754],[82.53836059570318,18.443180084228572],[82.54421234130876,18.441299438476562],[82.54772949218756,18.441789627075252],[82.55011749267595,18.438890457153377],[82.55377197265642,18.43765068054205],[82.55107116699236,18.433900833129883],[82.55021667480474,18.426500320434627],[82.54605865478544,18.424142837524414],[82.5451202392581,18.417249679565487],[82.53968048095709,18.416868209838924],[82.53763580322277,18.412229537963867],[82.53591156005865,18.4083194732666],[82.53515625000011,18.389560699463118],[82.55603027343767,18.388509750366325],[82.60087585449236,18.366050720214957],[82.59651184082037,18.340869903564453],[82.59757995605463,18.333618164062614],[82.6003189086914,18.330760955810547],[82.6038284301759,18.320371627807845],[82.58966827392584,18.319482803344783],[82.58325195312528,18.311410903930664],[82.57805633544928,18.309350967407227],[82.57643890380876,18.306810379028263],[82.57978057861334,18.301040649414006],[82.58107757568365,18.30093955993658],[82.5827026367187,18.300800323486328],[82.58783721923857,18.302040100097656],[82.5909500122072,18.2919597625733],[82.59031677246122,18.287780761718807],[82.58558654785156,18.28096008300787],[82.58846282959001,18.275049209594783],[82.58428192138689,18.273220062255916],[82.58074188232433,18.270099639892578],[82.58318328857428,18.266550064087028],[82.58547210693365,18.266120910644645],[82.58724975585966,18.26577949523937],[82.58866882324236,18.262119293212947],[82.58920288085938,18.25672912597662],[82.59826660156256,18.254472732544173],[82.60076904296886,18.25201988220215],[82.6094818115235,18.24925041198736],[82.61181640625006,18.246511459350586],[82.61103057861334,18.24384117126465],[82.6134185791015,18.23942947387701],[82.61640930175793,18.238121032714844],[82.62039184570318,18.23637008666998],[82.62687683105474,18.22874069213873],[82.6316528320313,18.228530883789176],[82.6371688842774,18.234930038452205],[82.64530944824236,18.24044990539545],[82.64758300781267,18.244731903076172],[82.64485931396513,18.25707817077648],[82.66493988037126,18.290620803833008],[82.68177795410162,18.29277992248541],[82.69032287597673,18.297069549560604],[82.69374084472673,18.297330856323356],[82.69809722900385,18.2962703704834],[82.7670516967774,18.331079483032227],[82.77143859863287,18.33967971801752],[82.78421783447271,18.354150772094727],[82.77790832519537,18.370920181274414],[82.78748321533209,18.39020919799799],[82.77622222900396,18.41969108581543],[82.79917144775419,18.439401626586914],[82.81874847412115,18.433370590209904],[82.84863281250017,18.415008544921932],[82.85597991943371,18.410800933838004],[82.86296844482428,18.407920837402344],[82.87001037597673,18.40620040893566],[82.87935638427751,18.414640426635856],[82.88461303710966,18.412759780883846],[82.8907775878908,18.39859962463379],[82.89095306396484,18.392219543456974],[82.90274810791044,18.35591125488287],[82.9083862304688,18.359430313110465],[82.9116668701173,18.357379913330192],[82.91513061523466,18.356399536132812],[82.92005920410168,18.35973930358881],[82.92761230468767,18.360988616943473],[82.93268585205107,18.351369857788086],[82.97644805908203,18.354911804199276],[82.97843170166027,18.360988616943473],[82.9812088012697,18.365819931030387],[82.98610687255854,18.36590194702171],[82.98761749267607,18.36950111389166],[82.99196624755871,18.37499809265131],[83.01161193847668,18.378210067749137],[83.01718139648466,18.38450050354004],[83.02375793457037,18.376449584960938],[83.03188323974604,18.373260498046932],[83.03697967529308,18.369842529296932],[83.03952026367182,18.370080947876033],[83.0533905029298,18.375299453735295],[83.05619812011724,18.377260208129883],[83.06649780273443,18.392259597778263],[83.05903625488281,18.3990097045899],[83.05531311035185,18.408111572265625],[83.0426101684572,18.418291091919002],[83.03732299804693,18.43482971191412],[83.02484130859375,18.436660766601506],[83.01803588867193,18.440401077270508],[83.01541137695318,18.444429397583065],[83.01644897460938,18.447679519653548],[83.02672576904325,18.45692062377941],[83.03414916992216,18.46076965332037],[83.03701782226591,18.463130950927734],[83.05179595947271,18.477489471435774],[83.08850860595732,18.5327606201173],[83.08933258056658,18.537910461425895],[83.08705139160173,18.54105949401861],[83.07147979736334,18.542491912841797],[83.057357788086,18.534690856933537],[83.0541458129884,18.534799575805664],[83.0511779785158,18.534910202026367],[83.00804138183588,18.588420867919922],[83.02030181884783,18.605411529541016],[83.02126312255876,18.610450744628906],[83.01737976074247,18.623399734497184],[83.0146102905274,18.626260757446403],[83.01132202148455,18.627710342407283],[83.00934600830107,18.63148117065441],[83.00968170166021,18.63652992248541],[83.01154327392578,18.639030456542912],[83.0226058959961,18.644359588623104],[83.03616333007818,18.647689819335994],[83.05097198486328,18.654159545898438],[83.0558471679688,18.667140960693473],[83.07080841064453,18.689300537109602],[83.06987762451189,18.691881179809684],[83.069091796875,18.694051742553825],[83.07788085937517,18.705339431762752],[83.08806610107428,18.71240043640148],[83.10600280761724,18.738491058349553],[83.11650085449224,18.747970581054688],[83.11752319335932,18.75048065185547],[83.11219024658197,18.758279800414982],[83.11580657958979,18.76208114624029],[83.13295745849638,18.772449493408146],[83.16854858398443,18.75906944274908],[83.17394256591825,18.756769180297795],[83.17701721191435,18.754409790039176],[83.18080139160168,18.748250961303825],[83.1853713989259,18.744142532348746],[83.19181823730474,18.741781234741154],[83.20170593261719,18.74222946167015],[83.20342254638672,18.740352630615348],[83.20188903808611,18.736131668090934],[83.20242309570312,18.732549667358626],[83.20626068115251,18.72874259948736],[83.22300720214838,18.747980117797795],[83.22189331054705,18.752021789550838],[83.21733093261736,18.758951187133846],[83.21707916259794,18.763561248779354],[83.21939086914062,18.765819549560547],[83.2210311889649,18.765871047973746],[83.2227172851563,18.76593017578125],[83.23956298828153,18.758781433105582],[83.24508666992216,18.7580890655517],[83.25541687011747,18.758819580078068],[83.26609802246122,18.7570095062257],[83.271713256836,18.76317977905279],[83.27124786376982,18.76732063293457],[83.26914978027372,18.770759582519588],[83.26992034912104,18.775287628173942],[83.27525329589872,18.785369873046875],[83.27950286865251,18.789600372314567],[83.3599929809572,18.807350158691463],[83.35011291503912,18.82163810729986],[83.36226654052751,18.83210945129389],[83.37283325195318,18.82121086120611],[83.37635040283197,18.821950912475586],[83.38313293457037,18.826070785522575],[83.38648986816423,18.82576942443859],[83.3963012695313,18.83070945739746],[83.3987121582033,18.833528518676815],[83.39694213867216,18.849210739135742],[83.40680694580084,18.853679656982536],[83.41073608398455,18.85676193237299],[83.4113388061524,18.859340667724837],[83.40585327148443,18.865329742431584],[83.40432739257818,18.86598014831543],[83.40177917480486,18.867071151733512],[83.39425659179716,18.868200302124137],[83.38780975341797,18.871030807495174],[83.34768676757824,18.92098808288597],[83.36106872558622,18.9534015655517],[83.31334686279303,18.966630935668945],[83.3077468872072,18.98324966430664],[83.30432891845709,18.986989974975813],[83.30526733398455,18.989681243896598],[83.30783843994169,18.990949630737305],[83.31643676757841,18.99040031433111],[83.32917785644537,18.988180160522575],[83.33010101318365,18.996959686279297],[83.3306732177735,18.998428344726562],[83.33271026611345,18.9998397827149],[83.33497619628906,19.00671958923334],[83.36232757568365,18.994729995727596],[83.36747741699224,18.993619918823242],[83.37719726562506,18.99472045898449],[83.38875579833979,19.000019073486328],[83.39295959472656,18.999128341674805],[83.39605712890642,18.995830535888672],[83.40142059326178,18.99638175964367],[83.40231323242188,18.99516105651861],[83.40464019775408,18.9932098388673],[83.40689849853533,18.995080947876033],[83.40885162353521,18.996191024780387],[83.41057586669928,18.992610931396484],[83.41142272949247,18.98871994018566],[83.40878295898432,18.97989082336437],[83.41484069824247,18.977872848510856],[83.4426727294923,18.94774055480957],[83.45548248291044,18.945579528808594],[83.46227264404303,18.959220886230582],[83.4502258300783,18.982421875],[83.44851684570312,18.99963188171398],[83.45017242431635,19.001888275146598],[83.458480834961,19.00209808349632],[83.46750640869169,18.998918533325252],[83.47183990478521,18.99897956848156],[83.47460174560547,19.00031280517578],[83.4766387939456,19.004070281982422],[83.47511291503935,19.011529922485465],[83.47796630859386,19.021190643310547],[83.4773559570313,19.025518417358626],[83.46543884277344,19.036190032959098],[83.4627990722658,19.0439510345459],[83.46327209472668,19.052600860595817],[83.45670318603533,19.056110382080078],[83.45939636230474,19.06967163085949],[83.4769897460938,19.075330734253043],[83.49249267578153,19.054950714111328],[83.49633026123041,19.055509567260856],[83.50036621093767,19.062080383300724],[83.50287628173828,19.064661026000977],[83.50538635253912,19.06477165222168],[83.51074981689459,19.048000335693416],[83.50979614257818,19.040081024169922],[83.51008605957048,19.036172866821403],[83.51367187500028,19.024780273437557],[83.49539947509783,19.01109123229992],[83.53138732910185,19.00542068481451],[83.53482818603544,19.02861976623535],[83.53578948974638,19.03034973144537],[83.54277801513678,19.036840438842887],[83.54772949218756,19.044969558715763],[83.55229949951178,19.04718971252447],[83.55148315429705,19.05038070678711],[83.54486846923834,19.062080383300724],[83.56067657470709,19.06622123718256],[83.56038665771513,19.063961029052734],[83.55710601806646,19.059989929199162],[83.55766296386724,19.05138015747076],[83.56735992431646,19.052259445190543],[83.5787658691408,19.049789428711165],[83.58078002929716,19.05514907836914],[83.581787109375,19.062772750854606],[83.58219909667986,19.07563972473156],[83.59986114501982,19.08480262756359],[83.6044158935548,19.0881805419923],[83.60440063476568,19.09287071228033],[83.59677886962896,19.105199813842773],[83.5942993164063,19.110580444335938],[83.5942993164063,19.120330810546932],[83.61913299560575,19.14188194274908],[83.64472961425781,19.113290786743164],[83.65685272216803,19.074939727783317],[83.65969848632818,19.069740295410156],[83.66261291503935,19.066490173339844],[83.666732788086,19.064460754394588],[83.67637634277338,19.052450180053825],[83.6843872070312,19.04393005371105],[83.69415283203142,19.021141052246094],[83.69983673095697,19.015031814575195],[83.7057418823245,18.985240936279354],[83.7088012695312,18.983802795410213],[83.71140289306646,18.98495101928711],[83.71689605712896,18.982538223266715],[83.72630310058605,18.97556114196783],[83.72746276855497,18.96607971191412],[83.73649597167986,18.938970565796012],[83.7458267211914,18.918172836303825],[83.75614929199236,18.916690826416016],[83.77127075195318,18.901300430297965],[83.77739715576178,18.904399871826286],[83.78006744384771,18.90772056579584],[83.77715301513672,18.91907119750988],[83.7614822387697,18.94460105895996],[83.75036621093778,18.94437026977539],[83.74108123779314,18.983890533447493],[83.78830718994169,19.00781059265148],[83.8348770141601,18.909299850463867],[83.8377227783206,18.90860939025879],[83.84027099609392,18.90406036376976],[83.8423233032226,18.888240814208984],[83.84366607666016,18.851400375366268],[83.8643417358399,18.8390407562257],[83.8668670654298,18.823450088501033],[83.87017822265625,18.818429946899414],[83.87391662597662,18.817768096923885],[83.8832397460938,18.81969070434576],[83.88463592529325,18.817819595336914],[83.88535308837896,18.81004142761242],[83.88687896728521,18.805408477783317],[83.89547729492199,18.814878463745117],[83.90775299072266,18.816389083862305],[83.93358612060553,18.806858062744197],[83.93978881835932,18.796600341796875],[83.9436874389649,18.79628753662115],[83.94902038574224,18.79704093933111],[83.95561218261713,18.80306053161621],[83.98232269287104,18.800010681152287],[84.00739288330084,18.804210662842024],[84.01966094970732,18.79762268066412],[84.02231597900402,18.7986297607423],[84.02372741699219,18.801151275634822],[84.0270614624024,18.80220031738287],[84.0342864990235,18.790121078491268],[84.03871917724621,18.787429809570256],[84.04794311523438,18.783479690551758],[84.04972076416021,18.777309417724666],[84.04804992675787,18.774402618408203],[84.04920196533209,18.77065086364746],[84.058609008789,18.76810073852539],[84.06046295166027,18.76267051696783],[84.06577301025396,18.75169944763178],[84.09163665771501,18.745239257812614],[84.13497924804693,18.766788482666016],[84.14042663574247,18.76769065856945],[84.14811706542986,18.771760940551815],[84.15136718750017,18.775760650634766],[84.15934753417986,18.775039672851562],[84.16703033447271,18.770139694213924],[84.17981719970709,18.768970489502067],[84.21671295166044,18.787281036377067],[84.22429656982428,18.784269332885856],[84.22698974609403,18.7871608734132],[84.23069000244158,18.785640716552734],[84.2311630249024,18.78012084960949],[84.2460327148438,18.773410797119084],[84.25888824462885,18.77482986450201],[84.2642211914062,18.78051948547386],[84.26818847656278,18.780309677123967],[84.27321624755876,18.782489776611385],[84.27533721923845,18.787181854248047],[84.27854919433594,18.789680480957145],[84.28392028808611,18.790821075439453],[84.30036926269537,18.781740188598576],[84.30716705322283,18.781660079955998],[84.308853149414,18.77841949462902],[84.31249237060547,18.779190063476676],[84.31292724609375,18.78218078613304],[84.31571960449213,18.786170959472713],[84.326957702637,18.789672851562614],[84.33222198486334,18.792022705078125],[84.33358764648443,18.795051574706974],[84.32932281494158,18.808998107910156],[84.34410095214872,18.8119411468507],[84.34435272216797,18.832719802856445],[84.33806610107439,18.83621978759777],[84.33598327636736,18.841421127319336],[84.33413696289068,18.851560592651595],[84.33413696289068,18.857990264892635],[84.33442687988281,18.863849639892578],[84.3360214233399,18.866710662841797],[84.33979034423845,18.86592102050804],[84.34438323974626,18.862762451171818],[84.34696960449247,18.8599796295166],[84.35146331787115,18.85090065002464],[84.36241149902372,18.851060867309627],[84.36933898925781,18.858970642089844],[84.3714675903322,18.863382339477482],[84.37156677246122,18.867219924926758],[84.3596267700197,18.87190055847168],[84.35382843017607,18.875062942504883],[84.35183715820312,18.877790451049748],[84.35473632812506,18.882930755615234],[84.3832321166995,18.86927986145031],[84.38609313964872,18.883029937744254],[84.40981292724626,18.8906307220459],[84.42938995361357,18.913682937622184],[84.4199829101563,18.929710388183537],[84.41713714599621,18.93330192565918],[84.41559600830084,18.9380397796632],[84.42030334472673,18.949359893799055],[84.43454742431635,18.963159561157227],[84.437728881836,18.965709686279297],[84.44064331054716,18.966930389404354],[84.43472290039091,18.976829528808537],[84.42640686035173,18.9839706420899],[84.42555236816435,18.98915100097662],[84.42610931396496,18.991769790649414],[84.42526245117205,18.995340347290153],[84.42980194091797,19.001180648803654],[84.45218658447271,18.988330841064567],[84.46282958984392,18.98328971862793],[84.47165679931646,18.981220245361555],[84.47569274902355,18.991739273071232],[84.4755172729495,18.996032714843864],[84.47782897949247,19.007890701294002],[84.48206329345703,19.009908676147575],[84.48938751220709,19.020950317382812],[84.5099182128908,19.03746032714855],[84.52715301513678,19.03871917724632],[84.53147125244158,19.04414939880371],[84.53481292724615,19.04536056518566],[84.54772186279297,19.046091079712028],[84.5535964965822,19.047409057617188],[84.5597229003908,19.05956077575678],[84.56613922119169,19.065038681030387],[84.56797027587896,19.063470840454045],[84.56852722167974,19.060640335083008],[84.57060241699236,19.060411453247013],[84.57644653320341,19.064561843872184],[84.57811737060558,19.062128067016545],[84.57509613037138,19.037538528442383],[84.57364654541033,19.03511047363287],[84.57813262939482,19.018901824951172],[84.58769226074247,19.0129909515382],[84.59697723388678,19.019741058349837],[84.60048675537104,19.03293037414562],[84.6075668334961,19.04540824890148],[84.61235809326189,19.049739837646598],[84.6115264892581,19.053730010986442],[84.61271667480469,19.05483055114746],[84.62329101562506,19.055660247802848],[84.63005828857416,19.049591064453352],[84.63683319091803,19.057149887085018],[84.64772796630865,19.05608940124523],[84.65453338623047,19.052310943603516],[84.6590118408206,19.063648223877067],[84.66320037841825,19.064451217651424],[84.66458892822266,19.06629180908203],[84.65962219238276,19.070930480957088],[84.65416717529303,19.081012725830192],[84.64871215820341,19.08419990539562],[84.64460754394548,19.084451675414982],[84.63474273681646,19.078689575195312],[84.63144683837908,19.072620391845817],[84.61982727050787,19.076509475708065],[84.61656951904314,19.085201263427848],[84.6167831420899,19.090000152588004],[84.61441040039057,19.092317581176758],[84.60962677001982,19.090892791748274],[84.60293579101591,19.09657096862793],[84.59577178955095,19.115209579467887],[84.59168243408232,19.121120452880803],[84.59464263916016,19.123548507690657],[84.60939788818371,19.117450714111442],[84.66117095947283,19.121860504150504],[84.66501617431658,19.15673065185547],[84.70648193359386,19.143560409545955],[84.69754791259794,19.108818054199162],[84.76101684570318,19.07131195068365],[84.6881866455081,18.97319030761713],[84.61458587646513,18.902362823486328],[84.58902740478544,18.87262916564947],[84.55458068847673,18.79597282409668],[84.49014282226568,18.739311218261832],[84.44097137451178,18.68014907836914],[84.44069671630876,18.664030075073242],[84.36291503906256,18.588472366333065],[84.35624694824224,18.55680465698248],[84.28597259521479,18.501529693603572],[84.21902465820307,18.44180488586437],[84.15319824218778,18.37653160095209],[84.12541961669939,18.32818984985363],[84.12958526611328,18.314306259155387],[84.06958007812506,18.275972366333008],[83.9506912231447,18.216806411743164],[83.8862533569336,18.195421218872013],[83.86264038085943,18.175695419311467],[83.7845764160158,18.14736747741722],[83.71347045898443,18.11069488525385],[83.5704193115235,18.014310836792106],[83.5590286254884,17.98347282409668],[83.52958679199224,17.94930648803711],[83.45153045654314,17.900140762329215],[83.4437484741211,17.872360229492244],[83.41874694824236,17.856809616088867],[83.41014099121111,17.810420989990234],[83.385971069336,17.779027938842773],[83.3543090820313,17.7570858001709],[83.34180450439482,17.722917556762752],[83.29846191406256,17.694309234619368],[83.29541778564459,17.6751384735108],[83.23986053466803,17.633192062378214],[83.23486328125017,17.61069679260254],[83.16097259521513,17.560693740844727],[83.10430908203136,17.54403114318859],[83.00680541992193,17.498193740844783],[82.98513793945341,17.469860076904354],[82.95402526855497,17.459861755371207],[82.70347595214861,17.343759536743278],[82.62319183349626,17.299310684204215],[82.53236389160156,17.243471145629826],[82.43902587890636,17.172639846801815],[82.33152770996094,17.07236289978033],[82.30264282226568,17.040700912475643],[82.27819824218756,16.992084503174112],[82.2837524414063,16.977081298828182],[82.25096893310575,16.934860229492188],[82.25068664550798,16.905969619751204],[82.26985931396513,16.875690460205305],[82.31153869628923,16.85486030578636],[82.3590164184572,16.848751068115234],[82.34124755859375,16.75347137451172],[82.29951477050798,16.71433258056635]]]]},"properties":{"ID_0":105,"ISO":"IN-AP","NAME_0":"India","ID_1":2,"NAME_1":"Andhra Pradesh"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[95.237633,26.686291],[95.236107,26.71221],[95.216141,26.735319],[95.242538,26.784512],[95.215118,26.79838],[95.184502,26.86483],[95.229927,26.88567],[95.233963,26.920601],[95.217056,26.9342],[95.195198,26.98999],[95.195518,27.04295],[95.24823,27.030252],[95.309677,27.081131],[95.36647,27.11285],[95.406311,27.11832],[95.457787,27.135641],[95.468643,27.1905],[95.4589,27.20957],[95.487228,27.246031],[95.534813,27.27062],[95.574463,27.25106],[95.590088,27.229521],[95.637001,27.23691],[95.684418,27.25741],[95.810196,27.28092],[95.860466,27.29421],[95.872383,27.266911],[95.898109,27.264311],[95.906433,27.29188],[95.963219,27.317068],[95.970016,27.336981],[96.014946,27.37546],[95.973297,27.43675],[95.933273,27.446688],[95.882591,27.44408],[95.876259,27.471109],[95.881332,27.55323],[95.862358,27.552601],[95.821243,27.58172],[95.798027,27.60783],[95.779221,27.66054],[95.770393,27.72003],[95.780533,27.758221],[95.823128,27.80925],[95.876572,27.84177],[95.922623,27.886181],[95.955299,27.926821],[95.952316,27.941841],[95.977463,27.9685],[95.825882,27.977371],[95.606743,27.957769],[95.5438,27.91346],[95.515953,27.881788],[95.384338,27.842022],[95.316559,27.87113],[95.236542,27.848351],[95.051826,27.79023],[95.038757,27.777731],[94.987038,27.770851],[94.883942,27.74206],[94.860863,27.739479],[94.848793,27.710682],[94.821266,27.69622],[94.795349,27.698078],[94.742668,27.663422],[94.698082,27.667101],[94.639793,27.63096],[94.591469,27.62281],[94.573532,27.60697],[94.526283,27.59577],[94.500229,27.577311],[94.453468,27.57094],[94.420929,27.601341],[94.367493,27.57675],[94.287659,27.591791],[94.235077,27.632511],[94.222923,27.60074],[94.226479,27.57563],[94.2565,27.557428],[94.259056,27.5226],[94.157211,27.478048],[94.160202,27.466471],[94.086349,27.40456],[94.060928,27.36356],[94.000008,27.334709],[93.938911,27.273279],[93.901047,27.241541],[93.867447,27.198841],[93.807297,27.150141],[93.825493,27.119341],[93.836746,27.078213],[93.718933,27.01922],[93.675781,26.971071],[93.584221,26.952648],[93.468109,26.93889],[93.447868,26.954151],[93.347939,26.963242],[93.266853,26.956001],[93.18428,26.93874],[93.019371,26.91683],[92.91777,26.964241],[92.916679,26.984652],[92.872437,27.0077],[92.769096,27.033041],[92.713676,27.026091],[92.658928,27.038521],[92.645462,26.98745],[92.585213,26.961863],[92.50502,26.96677],[92.446167,26.96064],[92.399757,26.926271],[92.35305,26.93557],[92.302856,26.92421],[92.27639,26.90247],[92.254562,26.91223],[92.194847,26.891001],[92.107887,26.89382],[92.117065,26.932417],[92.103287,27.00775],[92.079803,27.020609],[92.063957,27.05221],[92.044907,27.05197],[92.027779,27.078581],[92.022202,27.11492],[92.036476,27.138435],[92.025223,27.171761],[92.056236,27.18959],[92.069649,27.22364],[92.070023,27.277361],[92.101624,27.26911],[92.11734,27.292826],[92.058792,27.3272],[92.046059,27.379259],[92.054474,27.400118],[92.038757,27.43651],[92.016747,27.45804],[92.018761,27.479746],[91.939377,27.46063],[91.849136,27.482552],[91.828476,27.468981],[91.773811,27.464516],[91.713829,27.473633],[91.690086,27.50275],[91.653236,27.482981],[91.594421,27.539553],[91.562004,27.584209],[91.576813,27.59956],[91.557739,27.633467],[91.591805,27.683231],[91.623741,27.705971],[91.631142,27.77157],[91.628159,27.800831],[91.598824,27.820852],[91.565468,27.815315],[91.545792,27.846851],[91.569733,27.86072],[91.607376,27.854],[91.669327,27.85671],[91.694122,27.82213],[91.746277,27.80335],[91.82795,27.80755],[91.860527,27.736933],[91.878647,27.72184],[91.945061,27.728691],[91.955589,27.750669],[91.983856,27.769991],[92.055397,27.75913],[92.156097,27.837021],[92.200287,27.857073],[92.255157,27.862169],[92.26738,27.853939],[92.284691,27.80756],[92.307388,27.77924],[92.379837,27.795019],[92.382957,27.815571],[92.413857,27.82304],[92.44381,27.800781],[92.492508,27.836821],[92.515091,27.840219],[92.5439,27.817471],[92.560692,27.821041],[92.605072,27.877508],[92.669212,27.900131],[92.701256,27.933809],[92.739487,27.98941],[92.695427,28.04837],[92.662933,28.062771],[92.680161,28.11801],[92.783028,28.183741],[92.799637,28.20223],[92.821266,28.17392],[92.895256,28.204611],[92.912949,28.23502],[92.964523,28.26181],[93.000359,28.230791],[93.033783,28.26313],[93.021912,28.299931],[93.095352,28.307079],[93.124786,28.326799],[93.193756,28.318041],[93.22274,28.341068],[93.231522,28.400711],[93.190369,28.42602],[93.229057,28.477951],[93.275917,28.504829],[93.305267,28.566259],[93.299873,28.59955],[93.327637,28.60829],[93.332306,28.63368],[93.411842,28.652901],[93.445671,28.676041],[93.474197,28.65365],[93.495506,28.684023],[93.524467,28.66128],[93.606987,28.655878],[93.731567,28.68928],[93.775177,28.668518],[93.84404,28.70739],[93.865273,28.703712],[93.904129,28.676661],[93.934563,28.677099],[93.965553,28.72324],[93.968506,28.751383],[94.001427,28.775539],[93.985268,28.79829],[93.994911,28.84137],[94.030067,28.853451],[94.078842,28.905821],[94.155136,28.954762],[94.172943,28.991821],[94.18499,29.039122],[94.214691,29.084089],[94.287727,29.148149],[94.350166,29.150209],[94.372276,29.190229],[94.431183,29.226822],[94.494461,29.216673],[94.557899,29.22891],[94.573891,29.275171],[94.61071,29.301163],[94.628159,29.348591],[94.677246,29.327841],[94.711052,29.30434],[94.766533,29.25279],[94.797897,29.20999],[94.797989,29.16461],[94.871803,29.18429],[94.9188,29.1623],[94.96769,29.159752],[95.011162,29.133408],[95.039742,29.152422],[95.098396,29.143801],[95.121758,29.116251],[95.177521,29.10858],[95.250763,29.10988],[95.250107,29.068571],[95.266556,29.05765],[95.30275,29.06292],[95.34549,29.04611],[95.410133,29.034121],[95.454338,29.036991],[95.48909,29.089741],[95.503532,29.14299],[95.546806,29.128651],[95.545029,29.21559],[95.5858,29.217993],[95.598732,29.261862],[95.631218,29.249048],[95.673233,29.271099],[95.701897,29.300421],[95.727051,29.302469],[95.777626,29.3564],[95.791023,29.337898],[95.840302,29.353743],[95.880852,29.391491],[95.957108,29.382668],[96.014526,29.42135],[96.055603,29.45841],[96.092819,29.45643],[96.113197,29.427509],[96.149986,29.39926],[96.185783,29.344481],[96.183083,29.309252],[96.203239,29.293619],[96.234169,29.24346],[96.250839,29.233238],[96.292999,29.235788],[96.312607,29.2591],[96.374977,29.28373],[96.392807,29.2565],[96.358498,29.181629],[96.346359,29.17103],[96.260201,29.16016],[96.217499,29.1381],[96.200333,29.10593],[96.169502,29.087631],[96.124207,29.080669],[96.150391,29.053141],[96.184853,28.988119],[96.180443,28.96854],[96.145248,28.937489],[96.166527,28.90593],[96.228149,28.929331],[96.293701,28.99873],[96.346703,29.032269],[96.435791,29.037588],[96.5252,29.079281],[96.477402,28.99404],[96.487526,28.96534],[96.521217,28.96521],[96.538727,28.920982],[96.537453,28.884121],[96.584259,28.82152],[96.608383,28.798071],[96.615517,28.76482],[96.585938,28.721588],[96.532227,28.711498],[96.470543,28.684551],[96.495163,28.643761],[96.444443,28.605989],[96.400772,28.56237],[96.354607,28.560591],[96.324303,28.53034],[96.360916,28.509729],[96.366959,28.47953],[96.265961,28.417049],[96.304642,28.40472],[96.319878,28.38616],[96.370941,28.3943],[96.380013,28.364092],[96.399406,28.3445],[96.422859,28.350971],[96.431999,28.391731],[96.458267,28.419222],[96.510262,28.418308],[96.559532,28.45303],[96.598663,28.46623],[96.664566,28.465771],[96.68145,28.451202],[96.757492,28.41543],[96.774376,28.374071],[96.826477,28.367203],[96.898666,28.3859],[96.925903,28.34503],[96.952766,28.339951],[96.996498,28.316231],[97.02269,28.32626],[97.051819,28.358068],[97.092567,28.369692],[97.125938,28.35622],[97.158806,28.326941],[97.169373,28.302252],[97.224243,28.299891],[97.241241,28.275131],[97.282066,28.27626],[97.374657,28.225601],[97.372017,28.200399],[97.330803,28.162971],[97.339012,28.119541],[97.310211,28.09325],[97.31179,28.06995],[97.366043,28.068098],[97.377068,28.039091],[97.398567,28.034111],[97.378067,27.986151],[97.378563,27.918011],[97.389023,27.896379],[97.343521,27.89406],[97.308708,27.92996],[97.256477,27.909531],[97.160347,27.822592],[97.102463,27.793421],[97.09642,27.749929],[97.067543,27.759722],[97.015747,27.740631],[96.978302,27.671873],[96.928963,27.656033],[96.919449,27.631451],[96.897583,27.620802],[96.914032,27.58843],[96.91581,27.558283],[96.937683,27.53006],[96.913857,27.488413],[96.91185,27.462709],[96.941391,27.42695],[96.965523,27.415359],[96.969009,27.386271],[96.997467,27.355101],[97.003342,27.329941],[97.040329,27.307859],[97.043587,27.289751],[97.094078,27.24789],[97.095146,27.22143],[97.127296,27.185171],[97.149918,27.178341],[97.171738,27.13681],[97.146431,27.10284],[97.108559,27.12126],[97.062683,27.11116],[97.03022,27.141741],[96.984657,27.16671],[96.918411,27.175489],[96.866226,27.19969],[96.863373,27.21924],[96.890007,27.23687],[96.885101,27.26796],[96.855667,27.28031],[96.849747,27.30628],[96.817101,27.32954],[96.802361,27.354431],[96.740692,27.36446],[96.712547,27.38073],[96.693741,27.365519],[96.620483,27.37282],[96.600807,27.344631],[96.561829,27.325253],[96.530746,27.29805],[96.500031,27.309361],[96.433487,27.30994],[96.391571,27.29458],[96.347717,27.288391],[96.310837,27.30204],[96.278656,27.279383],[96.234329,27.28488],[96.218109,27.269581],[96.163689,27.25448],[96.03643,27.196051],[96.016937,27.154791],[95.979187,27.110729],[95.957123,27.06822],[95.877136,27.020498],[95.8153,27.022221],[95.76088,26.963989],[95.754997,26.907888],[95.730812,26.887491],[95.703491,26.88719],[95.673363,26.910221],[95.636757,26.87929],[95.632233,26.84948],[95.611519,26.821213],[95.545677,26.83786],[95.514801,26.8132],[95.48349,26.75499],[95.46566,26.75041],[95.423309,26.696712],[95.346649,26.67794],[95.302582,26.656021],[95.272026,26.662821],[95.260033,26.686352],[95.237633,26.686291]]]},"properties":{"ID_0":105,"ISO":"IN-AR","NAME_0":"India","ID_1":3,"NAME_1":"Arunachal Pradesh"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[89.871452,25.537298],[89.879959,25.48864],[89.85511,25.476049],[89.871452,25.537298]]],[[[95.195518,27.04295],[95.154503,27.006041],[95.116943,26.983681],[95.086861,26.952742],[94.985672,26.918249],[94.957283,26.94355],[94.913857,26.94257],[94.886223,26.932461],[94.851532,26.88134],[94.821083,26.85446],[94.802208,26.806061],[94.773087,26.794962],[94.756371,26.772268],[94.73188,26.764009],[94.686607,26.73259],[94.621086,26.72117],[94.592407,26.70273],[94.545059,26.710901],[94.520096,26.70145],[94.498268,26.673712],[94.467941,26.669821],[94.454521,26.639021],[94.409882,26.61644],[94.414848,26.583281],[94.396561,26.529732],[94.323883,26.47938],[94.293922,26.480742],[94.282288,26.56354],[94.239891,26.511431],[94.186546,26.46051],[94.175758,26.431801],[94.179092,26.388721],[94.164467,26.360121],[94.108047,26.326401],[94.070473,26.260031],[94.052856,26.255791],[94.035736,26.20319],[94.013,26.186281],[93.986023,26.083569],[93.954887,26.00733],[93.956009,25.97419],[93.982681,25.92627],[93.959839,25.905251],[93.915901,25.887663],[93.882736,25.845909],[93.851707,25.86297],[93.824303,25.847092],[93.795761,25.81435],[93.779823,25.84631],[93.798332,25.909693],[93.785187,25.9583],[93.687683,25.909441],[93.706436,25.853291],[93.678062,25.828871],[93.648491,25.823971],[93.62233,25.779831],[93.544838,25.726971],[93.543556,25.7017],[93.483353,25.645769],[93.418297,25.621059],[93.373421,25.569172],[93.333382,25.549021],[93.390503,25.485628],[93.390419,25.46917],[93.456871,25.44195],[93.478218,25.379883],[93.451889,25.344191],[93.474022,25.30928],[93.403572,25.263071],[93.353073,25.181801],[93.351013,25.144541],[93.335777,25.09584],[93.323631,25.091671],[93.296982,25.04767],[93.268181,25.049681],[93.246696,25.004168],[93.263237,24.966379],[93.24408,24.94384],[93.253258,24.918831],[93.233391,24.88485],[93.195801,24.846441],[93.193077,24.806231],[93.157242,24.792311],[93.112701,24.80221],[93.088783,24.70919],[93.099037,24.666531],[93.084846,24.647671],[93.097267,24.582541],[93.052681,24.54472],[93.052826,24.51965],[93.035767,24.496948],[93.048523,24.475483],[93.03215,24.42886],[93.039169,24.411131],[93.000496,24.403271],[92.980263,24.409691],[92.935707,24.39554],[92.911537,24.412901],[92.8629,24.3995],[92.846909,24.382299],[92.803818,24.421722],[92.765198,24.520849],[92.730537,24.452751],[92.691673,24.356421],[92.626167,24.334473],[92.611588,24.253349],[92.550636,24.245899],[92.529663,24.174801],[92.488083,24.162218],[92.463066,24.13637],[92.436569,24.15243],[92.418976,24.194361],[92.422379,24.253111],[92.296608,24.25173],[92.212852,24.24931],[92.273087,24.388451],[92.2565,24.4363],[92.231087,24.460381],[92.230995,24.504091],[92.239319,24.6],[92.262749,24.688641],[92.298271,24.736551],[92.293106,24.783602],[92.277779,24.830408],[92.24411,24.849373],[92.245232,24.91025],[92.314453,24.907551],[92.348419,24.878971],[92.365463,24.881701],[92.395058,24.855358],[92.491798,24.874022],[92.501869,24.91173],[92.493462,24.935921],[92.458839,24.945662],[92.435158,24.966379],[92.423637,24.996099],[92.425903,25.03182],[92.465988,25.057158],[92.484299,25.108061],[92.526512,25.10585],[92.524666,25.14003],[92.581688,25.13187],[92.621643,25.117701],[92.644051,25.151171],[92.67704,25.18219],[92.747139,25.207769],[92.779572,25.20311],[92.76976,25.26893],[92.792221,25.286798],[92.78437,25.332539],[92.760567,25.335279],[92.736107,25.37381],[92.718102,25.374983],[92.650543,25.431669],[92.60701,25.418539],[92.59816,25.471651],[92.581047,25.495159],[92.621628,25.515751],[92.644699,25.537441],[92.660477,25.58506],[92.587479,25.552988],[92.560959,25.574251],[92.557617,25.611988],[92.497902,25.626961],[92.465446,25.682461],[92.434341,25.687531],[92.416397,25.740499],[92.371468,25.746469],[92.339012,25.726851],[92.236847,25.708391],[92.169762,25.666401],[92.155853,25.709143],[92.164841,25.744751],[92.150993,25.783649],[92.153107,25.81275],[92.180962,25.85136],[92.181038,25.87162],[92.225037,25.901621],[92.159927,25.91519],[92.16555,25.964439],[92.255722,26.028933],[92.273727,26.065891],[92.241173,26.06254],[92.178307,26.07951],[92.133118,26.045891],[92.093361,26.048521],[92.052856,26.032831],[91.991066,26.041033],[91.978172,26.02585],[91.933968,26.014669],[91.883232,26.030001],[91.869347,26.05686],[91.875786,26.097731],[91.819313,26.11874],[91.790367,26.087021],[91.731262,26.05921],[91.723183,26.030321],[91.720177,25.954071],[91.669312,25.90539],[91.647919,25.91374],[91.630119,25.944639],[91.624718,25.985903],[91.632156,26.022409],[91.57003,26.027481],[91.551262,25.974899],[91.518501,25.958151],[91.468727,25.85903],[91.441223,25.841631],[91.412727,25.853918],[91.332428,25.83209],[91.275627,25.746941],[91.255371,25.747829],[91.223877,25.723419],[91.188713,25.73893],[91.179932,25.77632],[91.202629,25.840542],[91.152863,25.850073],[91.120781,25.831341],[91.066536,25.82576],[91.049103,25.848808],[91.020813,25.82262],[91.001587,25.8258],[91.013733,25.884319],[90.967453,25.88718],[90.957916,25.933943],[90.88298,25.95175],[90.869606,25.9424],[90.82045,25.948429],[90.797096,25.941471],[90.778061,25.908291],[90.74054,25.915211],[90.740303,25.940891],[90.713097,25.952183],[90.627327,25.91699],[90.629013,25.937429],[90.578796,25.958031],[90.571373,25.93903],[90.525482,25.901011],[90.534462,25.958021],[90.505737,25.996021],[90.477287,26.015261],[90.428627,25.98904],[90.3965,26.014151],[90.36499,26.010321],[90.324341,25.97438],[90.286583,25.9639],[90.212761,25.95389],[90.113777,25.957439],[90.091927,25.928761],[90.063309,25.915548],[90.008316,25.84683],[89.951996,25.810911],[89.955246,25.77446],[89.921867,25.739168],[89.894241,25.72724],[89.936996,25.68663],[89.946953,25.658831],[90.004539,25.623821],[90.01844,25.608391],[90.002121,25.58419],[89.88636,25.557871],[89.870102,25.544222],[89.886383,25.608089],[89.873726,25.657591],[89.837791,25.711941],[89.830353,25.735029],[89.84494,25.757191],[89.828957,25.808661],[89.814529,25.81698],[89.852203,25.889231],[89.881477,25.919338],[89.88607,25.943588],[89.83194,25.941462],[89.853127,25.987547],[89.82608,26.009081],[89.785797,26.088221],[89.790169,26.10043],[89.748436,26.157801],[89.718758,26.166048],[89.711708,26.227741],[89.717346,26.259161],[89.742348,26.29521],[89.780861,26.330881],[89.782013,26.353279],[89.827057,26.36665],[89.857292,26.38446],[89.844849,26.410221],[89.869499,26.44842],[89.852692,26.48778],[89.864998,26.570271],[89.877548,26.584242],[89.871429,26.683531],[89.856941,26.703781],[89.862389,26.737003],[89.889397,26.724388],[89.957779,26.723166],[90.002068,26.734341],[90.055237,26.72933],[90.188721,26.770573],[90.182564,26.804111],[90.194649,26.833021],[90.226189,26.85824],[90.311699,26.850851],[90.345779,26.876436],[90.355103,26.89609],[90.409706,26.90192],[90.563782,26.799641],[90.630318,26.79167],[90.649101,26.774281],[90.679382,26.780243],[90.699867,26.768015],[90.741005,26.775043],[90.896919,26.778637],[90.99601,26.788271],[91.053978,26.779472],[91.089088,26.818441],[91.129738,26.808479],[91.180336,26.811449],[91.262337,26.805],[91.295052,26.785158],[91.336319,26.779652],[91.379616,26.801498],[91.408348,26.835562],[91.478241,26.79179],[91.492767,26.789764],[91.590767,26.80477],[91.623802,26.821323],[91.679283,26.804749],[91.726929,26.812559],[91.801971,26.85206],[91.831848,26.876389],[91.853462,26.912291],[91.897263,26.91613],[91.953979,26.887741],[91.98558,26.858253],[92.055191,26.848053],[92.09742,26.86861],[92.107887,26.89382],[92.194847,26.891001],[92.254562,26.91223],[92.27639,26.90247],[92.302856,26.92421],[92.35305,26.93557],[92.399757,26.926271],[92.446167,26.96064],[92.50502,26.96677],[92.585213,26.961863],[92.645462,26.98745],[92.658928,27.038521],[92.713676,27.026091],[92.769096,27.033041],[92.872437,27.0077],[92.916679,26.984652],[92.91777,26.964241],[93.019371,26.91683],[93.18428,26.93874],[93.266853,26.956001],[93.347939,26.963242],[93.447868,26.954151],[93.468109,26.93889],[93.584221,26.952648],[93.675781,26.971071],[93.718933,27.01922],[93.836746,27.078213],[93.825493,27.119341],[93.807297,27.150141],[93.867447,27.198841],[93.901047,27.241541],[93.938911,27.273279],[94.000008,27.334709],[94.060928,27.36356],[94.086349,27.40456],[94.160202,27.466471],[94.157211,27.478048],[94.259056,27.5226],[94.2565,27.557428],[94.226479,27.57563],[94.222923,27.60074],[94.235077,27.632511],[94.287659,27.591791],[94.367493,27.57675],[94.420929,27.601341],[94.453468,27.57094],[94.500229,27.577311],[94.526283,27.59577],[94.573532,27.60697],[94.591469,27.62281],[94.639793,27.63096],[94.698082,27.667101],[94.742668,27.663422],[94.795349,27.698078],[94.821266,27.69622],[94.848793,27.710682],[94.860863,27.739479],[94.883942,27.74206],[94.987038,27.770851],[95.038757,27.777731],[95.051826,27.79023],[95.236542,27.848351],[95.316559,27.87113],[95.384338,27.842022],[95.515953,27.881788],[95.5438,27.91346],[95.606743,27.957769],[95.825882,27.977371],[95.977463,27.9685],[95.952316,27.941841],[95.955299,27.926821],[95.922623,27.886181],[95.876572,27.84177],[95.823128,27.80925],[95.780533,27.758221],[95.770393,27.72003],[95.779221,27.66054],[95.798027,27.60783],[95.821243,27.58172],[95.862358,27.552601],[95.881332,27.55323],[95.876259,27.471109],[95.882591,27.44408],[95.933273,27.446688],[95.973297,27.43675],[96.014946,27.37546],[95.970016,27.336981],[95.963219,27.317068],[95.906433,27.29188],[95.898109,27.264311],[95.872383,27.266911],[95.860466,27.29421],[95.810196,27.28092],[95.684418,27.25741],[95.637001,27.23691],[95.590088,27.229521],[95.574463,27.25106],[95.534813,27.27062],[95.487228,27.246031],[95.4589,27.20957],[95.468643,27.1905],[95.457787,27.135641],[95.406311,27.11832],[95.36647,27.11285],[95.309677,27.081131],[95.24823,27.030252],[95.195518,27.04295]]]]},"properties":{"ID_0":105,"ISO":"IN-AS","NAME_0":"India","ID_1":4,"NAME_1":"Assam"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[88.106148,26.535624],[88.132179,26.512581],[88.165382,26.521641],[88.185738,26.54414],[88.23336,26.53237],[88.179207,26.49398],[88.193756,26.472021],[88.243401,26.449301],[88.255386,26.41588],[88.229248,26.389851],[88.23761,26.375378],[88.273979,26.377281],[88.289139,26.351139],[88.261131,26.337851],[88.226906,26.30397],[88.224586,26.2894],[88.176903,26.261728],[88.144447,26.2528],[88.074829,26.18128],[88.037437,26.1777],[87.999107,26.14039],[87.969536,26.154409],[87.969353,26.10931],[87.959846,26.08404],[87.912933,26.090973],[87.842117,26.044481],[87.826187,25.983683],[87.830978,25.962231],[87.806961,25.929918],[87.822838,25.871468],[87.910912,25.851749],[87.88765,25.83287],[87.910507,25.81481],[87.900948,25.78031],[87.937523,25.758301],[87.979668,25.71846],[88.050819,25.685801],[88.03582,25.64098],[88.038589,25.595041],[88.021942,25.58292],[88.027046,25.55327],[88.068863,25.513048],[88.061676,25.48559],[88.004242,25.49404],[87.955612,25.53805],[87.92411,25.535648],[87.900513,25.507231],[87.869881,25.503],[87.863472,25.465389],[87.833817,25.464573],[87.808647,25.434191],[87.786522,25.4487],[87.763069,25.395611],[87.788826,25.37225],[87.781593,25.3384],[87.828926,25.303421],[87.85041,25.297438],[87.849251,25.253428],[87.822777,25.234341],[87.829659,25.20405],[87.787582,25.22049],[87.78331,25.246178],[87.707787,25.256409],[87.684151,25.310131],[87.60688,25.31138],[87.567108,25.333891],[87.547447,25.33094],[87.538498,25.29623],[87.481506,25.295172],[87.49559,25.265301],[87.472641,25.240883],[87.47216,25.19467],[87.391777,25.227518],[87.368462,25.2069],[87.323456,25.223091],[87.291107,25.08927],[87.258751,25.10461],[87.233879,25.085821],[87.211357,25.0896],[87.176643,25.06402],[87.143883,25.01079],[87.153687,24.990971],[87.147629,24.917801],[87.158119,24.885632],[87.147339,24.862408],[87.106049,24.84733],[87.077301,24.80835],[87.082848,24.779228],[87.074547,24.74472],[87.081856,24.724541],[87.054733,24.670601],[87.044403,24.624031],[87.010201,24.60626],[86.965561,24.631868],[86.936058,24.630371],[86.898079,24.58654],[86.854637,24.550461],[86.837051,24.568281],[86.808716,24.56377],[86.791847,24.615311],[86.754051,24.614759],[86.745651,24.5895],[86.668396,24.56064],[86.64576,24.567223],[86.599983,24.599491],[86.583153,24.572781],[86.554642,24.559271],[86.546692,24.53504],[86.523529,24.535749],[86.49028,24.484371],[86.488586,24.425001],[86.465828,24.421881],[86.4618,24.37672],[86.415588,24.37921],[86.373268,24.415852],[86.3535,24.44206],[86.319496,24.440161],[86.293877,24.476431],[86.312416,24.508471],[86.292633,24.58609],[86.215706,24.591171],[86.165657,24.583681],[86.125587,24.61182],[86.118248,24.641891],[86.133598,24.67551],[86.105537,24.73597],[86.063187,24.751671],[86.047882,24.77829],[86.006111,24.76568],[85.950302,24.732119],[85.910507,24.75367],[85.877777,24.800291],[85.827217,24.809643],[85.810661,24.794498],[85.777237,24.79895],[85.73674,24.822651],[85.70356,24.75745],[85.704773,24.728729],[85.659973,24.67473],[85.672127,24.6194],[85.664703,24.58193],[85.608521,24.585039],[85.576576,24.60301],[85.568291,24.565201],[85.534187,24.53219],[85.504356,24.52973],[85.494461,24.550619],[85.433273,24.536079],[85.403053,24.544941],[85.382782,24.532532],[85.279358,24.5191],[85.223923,24.471189],[85.152893,24.464149],[85.16938,24.42947],[85.115059,24.409019],[85.092453,24.381521],[85.074547,24.408463],[85.032097,24.42535],[84.990402,24.41223],[84.968567,24.37595],[84.903313,24.372311],[84.86293,24.457642],[84.827187,24.470119],[84.832626,24.51148],[84.819496,24.52482],[84.7799,24.50485],[84.74202,24.496458],[84.724907,24.47295],[84.678917,24.456343],[84.658257,24.393742],[84.600967,24.400978],[84.572479,24.41234],[84.545853,24.373699],[84.521523,24.376261],[84.51741,24.33367],[84.493538,24.287041],[84.465111,24.30839],[84.454536,24.33865],[84.417427,24.331362],[84.422539,24.35915],[84.394943,24.36779],[84.382217,24.3897],[84.335861,24.39583],[84.330399,24.43119],[84.293213,24.450823],[84.294189,24.480761],[84.321709,24.489758],[84.319107,24.52231],[84.292976,24.56599],[84.269226,24.564253],[84.258469,24.537691],[84.22068,24.550331],[84.172821,24.541981],[84.109779,24.4814],[84.089096,24.504128],[84.089691,24.53393],[84.059746,24.576981],[84.046738,24.612289],[83.99221,24.638033],[83.972351,24.596628],[83.928459,24.547911],[83.868042,24.532881],[83.799011,24.529881],[83.71669,24.50495],[83.682457,24.515581],[83.600159,24.513241],[83.542442,24.52618],[83.498169,24.52706],[83.517181,24.54917],[83.534531,24.615601],[83.49752,24.651661],[83.513191,24.678921],[83.489609,24.705858],[83.479843,24.737831],[83.453087,24.73332],[83.411293,24.77532],[83.386803,24.78422],[83.390388,24.83308],[83.351387,24.903061],[83.357018,24.955353],[83.343933,24.963881],[83.343872,25.010483],[83.319656,25.015541],[83.323456,25.048052],[83.353439,25.14916],[83.343208,25.15867],[83.349609,25.19894],[83.388222,25.207008],[83.409271,25.249281],[83.460281,25.25197],[83.480263,25.28241],[83.508072,25.2862],[83.544357,25.313143],[83.610657,25.33259],[83.656166,25.363661],[83.686287,25.36945],[83.709473,25.39525],[83.748093,25.404341],[83.782272,25.398729],[83.80294,25.432859],[83.838371,25.43689],[83.833786,25.462961],[83.920982,25.561729],[83.944321,25.567341],[84.014236,25.616131],[84.076508,25.637531],[84.069649,25.69561],[84.107872,25.72364],[84.167503,25.72175],[84.194313,25.703421],[84.199509,25.67235],[84.217079,25.664061],[84.290131,25.66283],[84.318588,25.67194],[84.325623,25.737101],[84.354408,25.74362],[84.393646,25.728903],[84.401878,25.699501],[84.448776,25.714491],[84.466507,25.685511],[84.489342,25.69109],[84.51638,25.67771],[84.558609,25.700981],[84.555626,25.736408],[84.626282,25.741602],[84.600533,25.76063],[84.621117,25.79236],[84.546852,25.84132],[84.528641,25.877741],[84.506523,25.872379],[84.485283,25.88925],[84.431183,25.89267],[84.408302,25.931351],[84.351387,25.959341],[84.291557,25.94828],[84.240486,25.982759],[84.201813,26.000561],[84.17244,25.998791],[84.167267,26.025471],[84.136673,26.04701],[84.091042,26.09654],[84.049057,26.099701],[84.027847,26.16296],[84.002113,26.19014],[84.03363,26.232088],[84.073578,26.22488],[84.110458,26.241831],[84.112953,26.261921],[84.157402,26.26092],[84.18174,26.317039],[84.167206,26.33811],[84.171356,26.37398],[84.061516,26.390091],[84.036186,26.407841],[84.016113,26.441971],[83.983467,26.4349],[83.902283,26.450251],[83.906792,26.50676],[83.930489,26.52478],[83.965416,26.51174],[84.04776,26.543489],[84.049316,26.56159],[84.084763,26.610559],[84.080421,26.640753],[84.152031,26.6385],[84.167252,26.62417],[84.201988,26.62434],[84.272217,26.599361],[84.297028,26.6157],[84.414398,26.627171],[84.402237,26.671223],[84.325661,26.684258],[84.318512,26.71623],[84.298027,26.753271],[84.242279,26.73077],[84.224609,26.757101],[84.252296,26.80868],[84.252113,26.844921],[84.228638,26.86981],[84.176468,26.85334],[84.168922,26.834518],[84.131653,26.85569],[84.130249,26.885271],[84.092621,26.877831],[84.052002,26.891701],[84.047668,26.931829],[84.035149,26.948721],[84.049522,26.99081],[84.024269,27.04472],[83.994896,27.061251],[84.020721,27.095482],[84.011627,27.104881],[83.954941,27.086121],[83.941437,27.119831],[83.985123,27.181763],[83.948143,27.238331],[83.901901,27.252131],[83.896156,27.277071],[83.918831,27.29266],[83.908043,27.330391],[83.854637,27.31123],[83.858505,27.350962],[83.889893,27.358198],[83.907288,27.389517],[83.875237,27.391912],[83.870247,27.428507],[83.933136,27.449379],[83.948051,27.440966],[84.054184,27.442581],[84.071114,27.479115],[84.097549,27.489431],[84.110718,27.521515],[84.153015,27.516615],[84.150993,27.485704],[84.256248,27.4519],[84.293411,27.385042],[84.393944,27.368017],[84.443314,27.370016],[84.488022,27.358324],[84.624474,27.336079],[84.691681,27.222265],[84.677917,27.170115],[84.685715,27.143215],[84.677788,27.102924],[84.64846,27.075352],[84.644852,27.047197],[84.758934,27.002651],[84.795723,26.995569],[84.819832,27.020424],[84.856865,27.007996],[84.861092,26.98774],[84.912788,26.967607],[84.964485,26.960276],[84.980515,26.940018],[84.972939,26.916779],[85.006119,26.894783],[85.045815,26.891115],[85.030975,26.858994],[85.04612,26.850716],[85.113365,26.872166],[85.191315,26.869816],[85.196007,26.841719],[85.17923,26.814888],[85.199715,26.769316],[85.336319,26.741415],[85.377113,26.760616],[85.409637,26.791138],[85.454819,26.781698],[85.498314,26.798115],[85.54509,26.837866],[85.609215,26.857016],[85.682541,26.84296],[85.72332,26.820015],[85.736717,26.795616],[85.725815,26.673944],[85.749153,26.639648],[85.802216,26.624363],[85.819824,26.602524],[85.853317,26.609516],[85.860893,26.568577],[85.893234,26.594543],[85.957588,26.629423],[85.958801,26.64897],[86.030739,26.666422],[86.072014,26.656799],[86.157425,26.609606],[86.19455,26.614422],[86.199417,26.5933],[86.233398,26.592024],[86.255119,26.615616],[86.310242,26.61964],[86.397339,26.584858],[86.457886,26.567818],[86.501129,26.541597],[86.54422,26.538115],[86.566902,26.500723],[86.62822,26.480616],[86.634132,26.466269],[86.698479,26.448267],[86.72818,26.425402],[86.749176,26.428003],[86.771553,26.459099],[86.8358,26.438698],[86.89756,26.467033],[86.895576,26.487289],[86.932228,26.489317],[86.935097,26.516493],[87.017715,26.531815],[87.04483,26.567944],[87.07428,26.585466],[87.093918,26.450016],[87.165016,26.403816],[87.188835,26.413961],[87.247658,26.41399],[87.268646,26.40527],[87.268387,26.373611],[87.31591,26.367205],[87.343414,26.347515],[87.360855,26.360779],[87.358864,26.387871],[87.391029,26.418697],[87.430199,26.422045],[87.469093,26.440065],[87.518929,26.43062],[87.555321,26.405415],[87.590225,26.392214],[87.654388,26.393213],[87.712173,26.427118],[87.73616,26.407505],[87.775558,26.419188],[87.794945,26.468525],[87.851219,26.436214],[87.860809,26.463428],[87.902527,26.477127],[87.926674,26.446404],[87.934998,26.417696],[87.968315,26.396816],[88.029694,26.381533],[88.097404,26.437443],[88.105949,26.466707],[88.09771,26.516132],[88.106148,26.535624]]]},"properties":{"ID_0":105,"ISO":"IN-BR","NAME_0":"India","ID_1":5,"NAME_1":"Bihar"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[76.819809,30.685829],[76.794373,30.669319],[76.745033,30.690458],[76.715202,30.713301],[76.690628,30.76008],[76.731232,30.777018],[76.759338,30.79904],[76.828186,30.76379],[76.822746,30.740082],[76.836296,30.71427],[76.819809,30.685829]]]},"properties":{"ID_0":105,"ISO":"IN-CH","NAME_0":"India","ID_1":6,"NAME_1":"Chandigarh"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[84.002502,22.520861],[83.976097,22.502211],[84.041557,22.464109],[84.040009,22.432899],[84.014442,22.404093],[84.00119,22.369671],[83.966988,22.357849],[83.915543,22.359671],[83.896973,22.339689],[83.861008,22.343781],[83.822487,22.315638],[83.771317,22.257339],[83.745651,22.24122],[83.693001,22.245501],[83.645752,22.224588],[83.61927,22.19636],[83.605942,22.15761],[83.557266,22.099979],[83.600319,22.06551],[83.583511,22.054951],[83.538368,22.05538],[83.533997,22.02228],[83.548561,22.006702],[83.535172,21.963501],[83.600479,21.910841],[83.571518,21.87187],[83.584053,21.852793],[83.573532,21.82966],[83.531242,21.8319],[83.536568,21.79393],[83.491333,21.808661],[83.475922,21.77379],[83.484131,21.741552],[83.456337,21.694321],[83.419746,21.67502],[83.440773,21.65517],[83.483078,21.639601],[83.462967,21.605511],[83.441338,21.618092],[83.441231,21.649273],[83.380722,21.612751],[83.362328,21.572521],[83.342056,21.485331],[83.350288,21.443981],[83.37014,21.4361],[83.393761,21.399443],[83.394157,21.361141],[83.374817,21.33996],[83.27002,21.375038],[83.254959,21.331921],[83.267677,21.268578],[83.242447,21.27644],[83.214142,21.25087],[83.219063,21.223711],[83.207573,21.201391],[83.192749,21.139441],[83.161392,21.131451],[83.119843,21.101061],[83.040581,21.118931],[83.010483,21.14537],[82.979927,21.157461],[82.902313,21.16297],[82.879227,21.14909],[82.839996,21.163361],[82.782089,21.14102],[82.757523,21.15856],[82.684532,21.15806],[82.635941,21.14945],[82.645027,21.101879],[82.609123,21.063921],[82.622307,21.03657],[82.582077,20.986778],[82.55294,20.941481],[82.483139,20.899658],[82.477623,20.84672],[82.415527,20.826469],[82.401413,20.862431],[82.368011,20.8641],[82.346619,20.883848],[82.334038,20.84059],[82.335129,20.758518],[82.345863,20.72872],[82.3433,20.698853],[82.365807,20.66115],[82.367546,20.62957],[82.342529,20.57522],[82.324013,20.553881],[82.348793,20.52293],[82.380493,20.50985],[82.388092,20.452511],[82.419388,20.457281],[82.429169,20.425753],[82.409897,20.402679],[82.410408,20.377201],[82.393776,20.335522],[82.42244,20.30966],[82.428047,20.27861],[82.405083,20.263531],[82.413597,20.202271],[82.378929,20.14463],[82.390739,20.119051],[82.395767,20.049],[82.475906,20.03005],[82.502129,20.013531],[82.543617,20.012131],[82.582359,19.989941],[82.614388,19.986971],[82.650482,19.999401],[82.70063,19.99287],[82.71093,19.983261],[82.700409,19.90661],[82.711006,19.84856],[82.698441,19.82686],[82.645737,19.825371],[82.618866,19.7861],[82.578476,19.77582],[82.571823,19.827808],[82.597382,19.86047],[82.5299,19.88213],[82.498482,19.88517],[82.475693,19.90053],[82.44239,19.902983],[82.388817,19.88176],[82.339447,19.829962],[82.298233,19.883461],[82.261696,19.97156],[82.230629,19.998081],[82.184181,19.981161],[82.131699,20.01269],[82.116096,20.010401],[82.057899,20.04987],[82.014786,20.01951],[81.973572,20.075611],[81.933929,20.09931],[81.889458,20.04327],[81.860168,20.023361],[81.837303,19.950081],[81.858406,19.899549],[81.898056,19.878519],[81.960373,19.854738],[81.957413,19.83601],[81.980148,19.79578],[82.052193,19.791342],[82.057198,19.75341],[82.037567,19.703911],[82.051346,19.624441],[82.034897,19.583273],[82.046127,19.538622],[82.022392,19.501802],[82.092079,19.50984],[82.096893,19.461081],[82.119308,19.423901],[82.170456,19.429491],[82.183487,19.41246],[82.166367,19.365931],[82.142349,19.348171],[82.180252,19.332203],[82.168533,19.290661],[82.151726,19.265463],[82.155708,19.196529],[82.178787,19.158859],[82.168137,19.133841],[82.191017,19.11631],[82.208557,19.078522],[82.194092,19.060221],[82.222481,19.021111],[82.239563,18.91046],[82.213783,18.91214],[82.170769,18.89159],[82.158028,18.851971],[82.16494,18.83021],[82.145477,18.773279],[82.091293,18.75618],[82.078583,18.712082],[82.033737,18.7188],[81.955078,18.680229],[81.947441,18.62882],[81.915527,18.63582],[81.888367,18.620991],[81.954529,18.58671],[81.946907,18.559151],[81.900803,18.557171],[81.896828,18.528393],[81.862961,18.517273],[81.849586,18.48905],[81.7621,18.41131],[81.744911,18.34535],[81.658096,18.339291],[81.660378,18.31576],[81.593407,18.301281],[81.567596,18.273211],[81.527962,18.259081],[81.504776,18.183811],[81.522606,18.15727],[81.508659,18.092411],[81.473892,18.028511],[81.476669,17.9739],[81.444458,17.9221],[81.437256,17.875938],[81.395851,17.88756],[81.398056,17.846781],[81.38443,17.82579],[81.384972,17.806593],[81.384132,17.80349],[81.374428,17.805321],[81.367607,17.808088],[81.357498,17.810421],[81.344528,17.811581],[81.335373,17.811251],[81.315056,17.81234],[81.254036,17.81213],[81.227913,17.82629],[81.220367,17.829359],[81.213493,17.83305],[81.191963,17.847101],[81.176376,17.849121],[81.159569,17.852631],[81.097702,17.817101],[81.089088,17.810871],[81.087082,17.803343],[81.079567,17.794971],[81.073601,17.786291],[81.055977,17.782831],[81.045227,17.783991],[81.032448,17.78973],[81.012573,17.816669],[81.004349,17.838348],[81.003326,17.84915],[81.001869,17.864731],[80.994339,17.91423],[80.991966,17.919371],[80.98465,17.922901],[80.965958,18.043468],[80.948357,18.09127],[80.949799,18.103691],[80.947548,18.116838],[80.949356,18.12318],[80.967537,18.137993],[80.972633,18.143551],[80.9748,18.15192],[80.973839,18.1583],[80.973679,18.16815],[80.954193,18.166981],[80.94986,18.164228],[80.944229,18.157091],[80.936729,18.1548],[80.935822,18.152531],[80.931992,18.14941],[80.911987,18.13851],[80.900726,18.13467],[80.862022,18.132669],[80.849159,18.200211],[80.861267,18.1987],[80.865646,18.200993],[80.867256,18.20318],[80.867493,18.207258],[80.861748,18.22167],[80.8591,18.226002],[80.824196,18.23358],[80.817192,18.22521],[80.818748,18.19202],[80.797928,18.1663],[80.762398,18.16297],[80.753853,18.163891],[80.745071,18.164831],[80.734558,18.171713],[80.732536,18.194191],[80.732262,18.20545],[80.733269,18.21879],[80.756889,18.2295],[80.784286,18.243271],[80.722763,18.361311],[80.723068,18.367901],[80.724243,18.371983],[80.722748,18.375801],[80.718628,18.379242],[80.716263,18.38294],[80.715942,18.385523],[80.715729,18.387291],[80.728783,18.403801],[80.718277,18.4098],[80.717346,18.409081],[80.713028,18.405731],[80.69101,18.41935],[80.695259,18.43457],[80.698891,18.436001],[80.694969,18.440771],[80.691917,18.440451],[80.68309,18.44462],[80.680519,18.45355],[80.669823,18.46121],[80.666107,18.462641],[80.662361,18.46574],[80.65078,18.472281],[80.632683,18.518841],[80.600983,18.545031],[80.531998,18.58606],[80.530037,18.588791],[80.52932,18.589809],[80.528717,18.59285],[80.528572,18.5937],[80.521797,18.60076],[80.518013,18.603451],[80.515251,18.6073],[80.513832,18.613138],[80.510712,18.615671],[80.498123,18.617653],[80.488388,18.62672],[80.450203,18.62635],[80.381561,18.593599],[80.366951,18.60465],[80.355942,18.59371],[80.352898,18.59094],[80.348526,18.58849],[80.341843,18.586441],[80.338791,18.588209],[80.336678,18.590521],[80.331467,18.5966],[80.319313,18.621733],[80.315002,18.636288],[80.307808,18.652281],[80.299461,18.679211],[80.29631,18.68564],[80.277908,18.71096],[80.270912,18.713501],[80.26754,18.71797],[80.240799,18.74869],[80.27182,18.76222],[80.299438,18.793531],[80.346222,18.811081],[80.335732,18.856119],[80.26413,18.940521],[80.267723,18.987329],[80.295288,19.02874],[80.288841,19.046289],[80.315773,19.064581],[80.331543,19.10108],[80.320862,19.124491],[80.345467,19.16291],[80.381111,19.180731],[80.377022,19.217369],[80.388451,19.243311],[80.419167,19.25028],[80.445427,19.26989],[80.470497,19.32892],[80.51384,19.3482],[80.559341,19.397552],[80.583939,19.377159],[80.585587,19.35302],[80.603943,19.311769],[80.617722,19.304819],[80.664391,19.326578],[80.685287,19.312601],[80.683563,19.286911],[80.749237,19.286741],[80.766197,19.30813],[80.839081,19.35515],[80.812737,19.38274],[80.787933,19.426701],[80.835083,19.442381],[80.867493,19.44346],[80.892067,19.465681],[80.879051,19.51903],[80.852257,19.52417],[80.819611,19.565401],[80.785156,19.56041],[80.764267,19.584831],[80.720993,19.608391],[80.662033,19.60873],[80.65612,19.625151],[80.66584,19.692211],[80.633507,19.718491],[80.582077,19.738071],[80.539673,19.774599],[80.544243,19.811201],[80.517807,19.828861],[80.476028,19.828001],[80.452438,19.7929],[80.400146,19.793631],[80.460297,19.82803],[80.475021,19.857059],[80.49752,19.86875],[80.489838,19.893673],[80.46122,19.903431],[80.444443,19.893551],[80.402657,19.909601],[80.406296,19.932501],[80.443703,19.952671],[80.469841,19.933661],[80.520378,19.93088],[80.544151,19.98151],[80.532539,20.003933],[80.546158,20.06571],[80.540367,20.109833],[80.52359,20.124472],[80.45134,20.144871],[80.426956,20.130239],[80.393837,20.14402],[80.394592,20.181589],[80.413406,20.187531],[80.382957,20.24172],[80.456467,20.268909],[80.510826,20.269611],[80.542023,20.306849],[80.616692,20.325741],[80.602226,20.37644],[80.585983,20.39205],[80.603439,20.43325],[80.612862,20.590578],[80.578667,20.61412],[80.519508,20.584681],[80.500099,20.586863],[80.481598,20.6171],[80.489647,20.639898],[80.518913,20.66176],[80.578339,20.67877],[80.560188,20.711773],[80.543343,20.7918],[80.555893,20.819681],[80.549759,20.88891],[80.535248,20.93132],[80.459091,20.92815],[80.423759,21.00959],[80.448502,21.04961],[80.435181,21.09901],[80.457298,21.17284],[80.509323,21.183479],[80.520737,21.203541],[80.561241,21.205811],[80.603447,21.227423],[80.638733,21.254782],[80.672737,21.31127],[80.656532,21.330772],[80.684166,21.37261],[80.699257,21.41412],[80.730217,21.472052],[80.721977,21.49564],[80.730659,21.538721],[80.709396,21.603981],[80.721657,21.61722],[80.707352,21.671581],[80.723747,21.693602],[80.726326,21.73103],[80.740051,21.756491],[80.7621,21.757919],[80.782722,21.739571],[80.811203,21.747492],[80.831703,21.80481],[80.839592,21.875401],[80.825439,21.88665],[80.833389,21.94664],[80.868599,22.011209],[80.87896,22.0606],[80.89817,22.10133],[80.917152,22.12089],[80.950523,22.11301],[80.965538,22.08198],[80.963417,22.058361],[80.999161,22.061501],[81.003952,22.094452],[80.986702,22.130871],[81.015793,22.13271],[81.025757,22.197691],[81.019447,22.229191],[81.048866,22.24419],[81.084679,22.24675],[81.113846,22.29438],[81.115662,22.34409],[81.100937,22.38324],[81.109993,22.44112],[81.148079,22.455851],[81.170662,22.488001],[81.194191,22.46208],[81.223557,22.451609],[81.280197,22.498821],[81.31591,22.48971],[81.322937,22.52433],[81.378738,22.505301],[81.38887,22.444839],[81.414116,22.448521],[81.417587,22.473631],[81.446243,22.495861],[81.479858,22.493311],[81.515419,22.536751],[81.556931,22.532162],[81.563057,22.551008],[81.608963,22.53644],[81.649422,22.57608],[81.641388,22.60754],[81.678596,22.64888],[81.698868,22.645882],[81.736938,22.66905],[81.765976,22.676121],[81.746613,22.726488],[81.784279,22.766621],[81.760857,22.834339],[81.769402,22.873508],[81.831429,22.882971],[81.861107,22.89395],[81.913857,22.948221],[81.940247,22.95709],[81.937218,23.009493],[81.918427,23.040979],[81.938103,23.07781],[81.979973,23.085543],[82.028252,23.081661],[82.061371,23.11594],[82.115883,23.1038],[82.151077,23.141741],[82.137321,23.16497],[82.142487,23.227701],[82.169823,23.27018],[82.189461,23.28459],[82.187508,23.322229],[82.16008,23.33219],[82.137833,23.361841],[82.1045,23.363178],[82.09848,23.397701],[82.023239,23.38376],[82.023247,23.410183],[81.970543,23.42387],[81.971397,23.44747],[81.950333,23.466061],[81.948936,23.49674],[81.916359,23.532091],[81.879356,23.518433],[81.827179,23.51129],[81.797562,23.548832],[81.756386,23.552521],[81.729233,23.5651],[81.693092,23.52334],[81.654533,23.531551],[81.631096,23.491741],[81.605217,23.510889],[81.602272,23.553673],[81.577072,23.55489],[81.569733,23.58865],[81.602676,23.600033],[81.613243,23.66098],[81.643127,23.660332],[81.649498,23.683451],[81.67321,23.693432],[81.687286,23.72135],[81.669327,23.757351],[81.638367,23.77788],[81.642563,23.804581],[81.62571,23.835821],[81.598442,23.85368],[81.607567,23.903271],[81.661598,23.925598],[81.697388,23.885962],[81.702682,23.8634],[81.726852,23.84096],[81.772629,23.814199],[81.811729,23.8095],[81.894096,23.844061],[81.916443,23.87299],[81.950706,23.85289],[82.000732,23.86314],[82.035156,23.84256],[82.045403,23.820589],[82.134079,23.818161],[82.199257,23.831921],[82.231529,23.807791],[82.255287,23.82189],[82.297592,23.808161],[82.388229,23.801371],[82.463509,23.810848],[82.485077,23.78838],[82.516197,23.784231],[82.544518,23.794189],[82.548218,23.8269],[82.585983,23.822861],[82.629517,23.839001],[82.66021,23.870338],[82.654739,23.90629],[82.701927,23.924932],[82.7481,23.922281],[82.807777,23.963058],[82.8489,23.946833],[82.881187,23.91028],[82.95359,23.87277],[83.036438,23.883051],[83.061043,23.87524],[83.127411,23.89002],[83.145218,23.909943],[83.189568,23.921101],[83.211212,23.960358],[83.216026,23.989403],[83.276077,24.023281],[83.292427,24.077209],[83.323563,24.10133],[83.383263,24.099871],[83.400696,24.081779],[83.425369,24.083761],[83.447586,24.04248],[83.509628,24.0254],[83.512436,23.966999],[83.53894,23.9335],[83.54937,23.892839],[83.570152,23.89036],[83.581169,23.861919],[83.656242,23.843641],[83.695587,23.807598],[83.729401,23.75473],[83.73214,23.70467],[83.714729,23.682541],[83.752083,23.648981],[83.774887,23.599501],[83.82122,23.58485],[83.935257,23.56304],[83.929588,23.593679],[83.937889,23.622431],[83.975456,23.630831],[84.020302,23.60018],[84.022667,23.544241],[84.008759,23.49958],[83.969727,23.447668],[83.979446,23.426691],[83.966888,23.374229],[84.006531,23.3528],[84.020737,23.37546],[84.043388,23.37401],[84.070251,23.32999],[84.050453,23.24095],[84.056122,23.196409],[84.029091,23.153881],[84.066711,23.107113],[84.087868,23.109489],[84.130768,23.06336],[84.124611,23.030748],[84.144211,22.98819],[84.167862,22.970961],[84.179047,23.02256],[84.217056,22.976473],[84.278572,22.961248],[84.33181,22.979139],[84.370537,22.975071],[84.389053,22.93874],[84.375961,22.873638],[84.320312,22.849421],[84.309967,22.798983],[84.285286,22.763371],[84.260101,22.76494],[84.225357,22.735161],[84.232239,22.68858],[84.149933,22.63442],[84.080391,22.636551],[84.048126,22.594143],[84.005051,22.569563],[84.002502,22.520861]]]},"properties":{"ID_0":105,"ISO":"IN-CT","NAME_0":"India","ID_1":7,"NAME_1":"Chhattisgarh"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[73.216316,20.122],[73.219116,20.0975],[73.181442,20.05162],[73.1633,20.073111],[73.117546,20.07881],[73.09845,20.09367],[73.057991,20.096731],[73.031776,20.084421],[73.004311,20.11792],[72.973228,20.1308],[72.985962,20.15753],[72.970428,20.21233],[72.969627,20.23394],[72.940849,20.24682],[72.923752,20.2682],[72.945976,20.29343],[72.974487,20.27178],[72.990463,20.292089],[73.04586,20.292433],[73.055122,20.325241],[73.090897,20.326839],[73.101326,20.356039],[73.141792,20.317461],[73.177101,20.312323],[73.136848,20.260469],[73.101929,20.228943],[73.070366,20.221451],[73.072449,20.16345],[73.093483,20.173891],[73.119743,20.159069],[73.15213,20.179743],[73.141571,20.20187],[73.181137,20.2024],[73.227783,20.18705],[73.199242,20.16164],[73.200691,20.1297],[73.216316,20.122]]]},"properties":{"ID_0":105,"ISO":"IN-DN","NAME_0":"India","ID_1":8,"NAME_1":"Dadra and Nagar Haveli"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[72.860138,20.470961],[72.838181,20.43726],[72.845078,20.40712],[72.821533,20.37108],[72.828476,20.433748],[72.860138,20.470961]]],[[[70.962639,20.729382],[70.977364,20.70347],[70.892082,20.708191],[70.899651,20.72389],[70.938896,20.736488],[70.962639,20.729382]]],[[[70.854416,20.753471],[70.854561,20.752083],[70.840073,20.730261],[70.870407,20.718719],[70.869308,20.705973],[70.744308,20.72014],[70.686249,20.74931],[70.673752,20.763472],[70.684776,20.7918],[70.679031,20.84404],[70.694168,20.882961],[70.717583,20.91213],[70.719383,20.936951],[70.74649,20.98897],[70.773033,20.96117],[70.832771,20.968531],[70.880203,20.955379],[70.901611,20.90333],[70.884346,20.87324],[70.84053,20.85778],[70.850281,20.831503],[70.890556,20.83293],[70.893852,20.794701],[70.8629,20.781761],[70.854416,20.753471]]]]},"properties":{"ID_0":105,"ISO":"IN-DD","NAME_0":"India","ID_1":9,"NAME_1":"Daman and Diu"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[77.337738,28.50897],[77.30687,28.490681],[77.278053,28.49815],[77.227631,28.469749],[77.240616,28.42886],[77.20591,28.413401],[77.165771,28.408461],[77.142433,28.435711],[77.118301,28.44243],[77.101547,28.476479],[77.107666,28.49387],[77.072479,28.520281],[77.056961,28.513861],[77.015663,28.533319],[77.005547,28.514441],[76.968468,28.52758],[76.944626,28.51363],[76.879463,28.523998],[76.837616,28.55699],[76.832916,28.582508],[76.860901,28.60251],[76.877937,28.63763],[76.910347,28.637831],[76.923103,28.66921],[76.945953,28.683481],[76.941261,28.71703],[76.950317,28.746651],[76.937469,28.803501],[76.942307,28.820681],[76.979553,28.8367],[77.03154,28.83679],[77.049759,28.87319],[77.12854,28.865391],[77.139198,28.841669],[77.186867,28.866819],[77.217323,28.835279],[77.194443,28.802292],[77.259918,28.738123],[77.306221,28.71767],[77.327583,28.691841],[77.311211,28.644642],[77.336182,28.60887],[77.307137,28.59691],[77.295189,28.561201],[77.337738,28.50897]]]},"properties":{"ID_0":105,"ISO":"IN-DL","NAME_0":"India","ID_1":10,"NAME_1":"Delhi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[74.12603,15.65029],[74.173431,15.652052],[74.175438,15.67016],[74.224091,15.650311],[74.255257,15.65421],[74.267471,15.617049],[74.254311,15.56583],[74.287277,15.526],[74.256332,15.48952],[74.282516,15.443121],[74.27562,15.423901],[74.289963,15.38122],[74.328369,15.367251],[74.323341,15.329591],[74.341652,15.292931],[74.276619,15.274449],[74.263519,15.241881],[74.302132,15.228142],[74.321907,15.18407],[74.289566,15.14313],[74.281067,15.10183],[74.302338,15.03986],[74.261711,14.990761],[74.273911,14.975222],[74.241676,14.94645],[74.204163,14.937851],[74.186562,14.953381],[74.149223,14.918521],[74.113083,14.91116],[74.097359,14.895659],[74.042923,14.918471],[74.049309,14.95736],[74.032913,14.999032],[73.99292,15.018195],[73.966805,15.065972],[73.930969,15.078471],[73.92292,15.110142],[73.940666,15.11958],[73.948196,15.147363],[73.914581,15.273194],[73.894859,15.331811],[73.873466,15.370141],[73.841797,15.360143],[73.808746,15.37653],[73.816528,15.40431],[73.844017,15.40875],[73.882637,15.398471],[73.887085,15.430971],[73.861526,15.428473],[73.84903,15.452083],[73.801529,15.46125],[73.80542,15.49486],[73.767639,15.49097],[73.75486,15.545694],[73.731796,15.58931],[73.732643,15.617639],[73.687637,15.720141],[73.680138,15.724371],[73.74102,15.718721],[73.748711,15.730571],[73.786491,15.72325],[73.820396,15.73991],[73.865486,15.797529],[73.908607,15.742331],[73.945366,15.741522],[73.971306,15.687251],[73.975983,15.628942],[74.002388,15.609052],[74.080551,15.62617],[74.12603,15.65029]]]},"properties":{"ID_0":105,"ISO":"IN-GA","NAME_0":"India","ID_1":11,"NAME_1":"Goa"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[70.870407,20.718719],[70.840073,20.730261],[70.854561,20.752083],[70.870407,20.718719]]],[[[72.676529,21.155701],[72.704857,21.133753],[72.675697,21.105143],[72.664864,21.148474],[72.676529,21.155701]]],[[[69.62764,22.459583],[69.656525,22.42514],[69.636528,22.40653],[69.59597,22.424583],[69.594025,22.445696],[69.62764,22.459583]]],[[[69.918747,22.553196],[69.931808,22.54542],[69.944313,22.523479],[69.915695,22.511806],[69.895142,22.51236],[69.899857,22.545141],[69.918747,22.553196]]],[[[70.009033,22.593201],[70.027084,22.567917],[70.007919,22.554029],[69.963753,22.545416],[69.96653,22.578472],[70.009033,22.593201]]],[[[68.558197,23.313751],[68.612083,23.292084],[68.614861,23.27375],[68.572365,23.260975],[68.540413,23.266529],[68.558197,23.313751]]],[[[68.472862,23.480419],[68.494583,23.457359],[68.48542,23.404581],[68.466797,23.40597],[68.444031,23.46653],[68.472862,23.480419]]],[[[68.482086,23.596809],[68.48542,23.575138],[68.442085,23.534861],[68.434303,23.554583],[68.482086,23.596809]]],[[[68.358467,23.80514],[68.397919,23.784861],[68.425972,23.795975],[68.418457,23.72875],[68.390694,23.654861],[68.358749,23.62764],[68.346802,23.59819],[68.294861,23.578751],[68.286247,23.605143],[68.219849,23.591249],[68.187363,23.610971],[68.207359,23.641806],[68.269302,23.64986],[68.28125,23.669861],[68.339027,23.73292],[68.334862,23.758751],[68.358467,23.80514]]],[[[68.307907,23.82375],[68.312637,23.821529],[68.321808,23.803188],[68.315407,23.764582],[68.324303,23.734308],[68.295128,23.72625],[68.267639,23.704861],[68.264305,23.759861],[68.277916,23.79681],[68.297638,23.803749],[68.29792,23.810141],[68.290138,23.816805],[68.307907,23.82375]]],[[[68.496529,23.830973],[68.519859,23.817923],[68.51236,23.78875],[68.517082,23.755138],[68.48764,23.737082],[68.43708,23.743196],[68.456253,23.774031],[68.447639,23.805971],[68.496529,23.830973]]],[[[68.395691,23.878197],[68.416809,23.870703],[68.438751,23.834303],[68.400139,23.789583],[68.342636,23.836531],[68.395691,23.878197]]],[[[68.449303,23.938473],[68.455971,23.934311],[68.448471,23.892918],[68.45208,23.881809],[68.427361,23.865141],[68.417076,23.87236],[68.395691,23.879583],[68.355698,23.859861],[68.355972,23.90292],[68.386253,23.90625],[68.420135,23.920973],[68.427086,23.93292],[68.449303,23.938473]]],[[[68.535416,23.945972],[68.571526,23.907919],[68.549309,23.875692],[68.520691,23.856806],[68.490417,23.867361],[68.486809,23.890972],[68.530418,23.91708],[68.535416,23.945972]]],[[[68.482086,23.99264],[68.501808,23.972641],[68.518471,23.924305],[68.453751,23.881805],[68.455696,23.928751],[68.460693,23.933472],[68.447639,23.939583],[68.428192,23.93792],[68.447639,23.980694],[68.482086,23.99264]]],[[[68.430138,23.99542],[68.432083,23.959583],[68.402641,23.920694],[68.350418,23.908472],[68.337639,23.819305],[68.314583,23.82403],[68.306252,23.82514],[68.294029,23.820692],[68.28875,23.817362],[68.28875,23.814861],[68.295967,23.810421],[68.295692,23.804312],[68.274307,23.797361],[68.262077,23.760139],[68.255417,23.711811],[68.238472,23.680971],[68.192642,23.73097],[68.225983,23.762638],[68.209587,23.810972],[68.254028,23.858749],[68.27903,23.91597],[68.326248,23.914305],[68.342361,23.924582],[68.346237,23.960421],[68.374313,23.98431],[68.399857,23.96764],[68.430138,23.99542]]],[[[74.322777,23.062691],[74.349197,23.030241],[74.370796,22.980053],[74.341637,22.964691],[74.381607,22.909908],[74.418701,22.918371],[74.462822,22.91346],[74.47892,22.858641],[74.464943,22.815081],[74.439186,22.809441],[74.439232,22.785551],[74.403076,22.730709],[74.384186,22.64357],[74.363953,22.63652],[74.278221,22.647661],[74.236656,22.613871],[74.213837,22.56744],[74.157539,22.53219],[74.127609,22.52438],[74.08429,22.549551],[74.04464,22.542122],[74.043587,22.516821],[74.085266,22.508518],[74.078087,22.465643],[74.100243,22.469233],[74.105072,22.433411],[74.123001,22.420811],[74.155983,22.439873],[74.237259,22.439341],[74.264122,22.424641],[74.273949,22.39304],[74.240196,22.37682],[74.198349,22.343019],[74.191063,22.32193],[74.134293,22.332331],[74.111961,22.371613],[74.071983,22.360241],[74.059151,22.285749],[74.07827,22.268248],[74.075783,22.221878],[74.12278,22.2129],[74.132591,22.096321],[74.170212,22.10133],[74.162987,22.06057],[74.137833,22.053501],[74.101189,22.01828],[74.100342,22.001593],[74.153847,21.98642],[74.146019,21.95406],[74.046669,21.92281],[74.023041,21.905972],[73.879601,21.83864],[73.841522,21.838501],[73.827599,21.811939],[73.846359,21.742001],[73.890236,21.710649],[73.898102,21.667271],[73.885628,21.64506],[73.845238,21.63316],[73.829033,21.63979],[73.787613,21.62505],[73.824501,21.598289],[73.833763,21.55348],[73.860786,21.495823],[73.937622,21.52066],[73.974457,21.52408],[73.983521,21.542042],[74.068222,21.559372],[74.18634,21.559601],[74.20694,21.529751],[74.238106,21.550119],[74.271553,21.536421],[74.29171,21.558781],[74.335518,21.54023],[74.327721,21.49575],[74.307762,21.48012],[74.222633,21.45899],[74.185539,21.467022],[74.160469,21.45335],[74.120819,21.449699],[74.057167,21.455709],[74.051628,21.426281],[73.961937,21.39311],[73.948486,21.29755],[73.891991,21.262411],[73.832138,21.26745],[73.836349,21.24234],[73.820137,21.221861],[73.822548,21.171921],[73.79631,21.18173],[73.779663,21.164553],[73.741623,21.16711],[73.713196,21.150461],[73.681313,21.152121],[73.636398,21.13266],[73.69339,21.10099],[73.735802,21.10323],[73.747612,21.03998],[73.784706,21.019569],[73.807701,21.022558],[73.816406,20.996052],[73.906448,20.98315],[73.896339,20.933001],[73.931038,20.885918],[73.931061,20.848391],[73.945099,20.840132],[73.940567,20.76886],[73.949532,20.74231],[73.920906,20.72353],[73.888863,20.731081],[73.863602,20.6943],[73.842758,20.70212],[73.846413,20.62352],[73.805962,20.601521],[73.787056,20.602259],[73.748207,20.56736],[73.701019,20.578381],[73.66584,20.562811],[73.636772,20.57929],[73.622192,20.625299],[73.591209,20.645111],[73.562943,20.64739],[73.530403,20.67312],[73.498436,20.653419],[73.497292,20.68602],[73.482613,20.71723],[73.458687,20.714319],[73.439919,20.664841],[73.403648,20.65237],[73.440361,20.595119],[73.48082,20.583599],[73.475937,20.49502],[73.449013,20.4667],[73.42289,20.41433],[73.414787,20.381571],[73.436943,20.282122],[73.42041,20.257],[73.426826,20.201571],[73.375946,20.194971],[73.31115,20.207211],[73.29406,20.193861],[73.293633,20.153881],[73.26281,20.127951],[73.216316,20.122],[73.200691,20.1297],[73.199242,20.16164],[73.227783,20.18705],[73.181137,20.2024],[73.141571,20.20187],[73.15213,20.179743],[73.119743,20.159069],[73.093483,20.173891],[73.072449,20.16345],[73.070366,20.221451],[73.101929,20.228943],[73.136848,20.260469],[73.177101,20.312323],[73.141792,20.317461],[73.101326,20.356039],[73.090897,20.326839],[73.055122,20.325241],[73.04586,20.292433],[72.990463,20.292089],[72.974487,20.27178],[72.945976,20.29343],[72.923752,20.2682],[72.940849,20.24682],[72.969627,20.23394],[72.970428,20.21233],[72.884323,20.22658],[72.850288,20.207941],[72.828842,20.15657],[72.787613,20.130081],[72.73764,20.136539],[72.746529,20.199583],[72.740974,20.244583],[72.755692,20.292084],[72.774582,20.303753],[72.775696,20.333471],[72.821533,20.37108],[72.845078,20.40712],[72.838181,20.43726],[72.860138,20.470961],[72.887642,20.51458],[72.885971,20.550421],[72.897636,20.57431],[72.886803,20.641531],[72.87542,20.651253],[72.852081,20.73403],[72.87014,20.74625],[72.834587,20.781805],[72.838753,20.798752],[72.791817,20.89653],[72.785698,20.922085],[72.754028,20.942917],[72.723747,21.036249],[72.752083,21.06208],[72.705971,21.073471],[72.700142,21.100973],[72.715973,21.140694],[72.681252,21.15847],[72.665138,21.153473],[72.659027,21.087931],[72.626251,21.089861],[72.618752,21.222921],[72.597084,21.250139],[72.593193,21.312084],[72.622086,21.345694],[72.622917,21.375141],[72.664856,21.427361],[72.652359,21.462084],[72.674576,21.521261],[72.626808,21.502083],[72.598198,21.544306],[72.605972,21.579584],[72.628197,21.61681],[72.672638,21.627916],[72.704865,21.652082],[72.723198,21.63875],[72.774017,21.66486],[72.736252,21.689583],[72.71125,21.678471],[72.597359,21.6807],[72.547363,21.65847],[72.524025,21.68014],[72.519585,21.713196],[72.543472,21.74292],[72.552086,21.79236],[72.568466,21.82403],[72.523193,21.849581],[72.502357,21.935141],[72.507362,21.994305],[72.547363,22.14986],[72.571251,22.19042],[72.60125,22.213482],[72.648483,22.21681],[72.699593,22.18458],[72.757637,22.174028],[72.798752,22.237362],[72.818192,22.247641],[72.869583,22.223471],[72.852638,22.281813],[72.810417,22.265141],[72.759308,22.23152],[72.691528,22.237083],[72.637093,22.284309],[72.608467,22.27931],[72.573196,22.254583],[72.532913,22.251808],[72.505699,22.229031],[72.470703,22.24264],[72.435143,22.30125],[72.416252,22.284582],[72.416527,22.227362],[72.390137,22.183472],[72.387077,22.159861],[72.324585,22.146805],[72.279861,21.967361],[72.251808,21.987362],[72.260696,22.01931],[72.239304,22.05986],[72.213737,21.999029],[72.230698,21.926807],[72.256248,21.890141],[72.260139,21.784309],[72.270142,21.757084],[72.259583,21.723471],[72.305969,21.628469],[72.268471,21.572083],[72.254303,21.502918],[72.23542,21.457085],[72.133751,21.340694],[72.109306,21.300694],[72.110687,21.286539],[72.082077,21.245701],[72.115417,21.202085],[72.056252,21.172361],[72.04792,21.16069],[71.991531,21.142639],[71.95208,21.118469],[71.91597,21.112083],[71.796806,21.05792],[71.76403,21.02125],[71.720695,21.021805],[71.679581,20.99736],[71.638466,20.989861],[71.636528,20.97348],[71.530136,20.943195],[71.514862,20.948195],[71.477081,20.889858],[71.437363,20.868473],[71.395973,20.865141],[71.372086,20.853474],[71.322639,20.846251],[71.20208,20.788471],[71.160973,20.780972],[71.149033,20.757362],[71.085976,20.756248],[71.077637,20.73653],[71.051247,20.73181],[70.991249,20.745974],[70.962639,20.729382],[70.938896,20.736488],[70.899651,20.72389],[70.892082,20.708191],[70.888535,20.709032],[70.873749,20.709829],[70.873749,20.727083],[70.854416,20.753471],[70.8629,20.781761],[70.893852,20.794701],[70.890556,20.83293],[70.850281,20.831503],[70.84053,20.85778],[70.884346,20.87324],[70.901611,20.90333],[70.880203,20.955379],[70.832771,20.968531],[70.773033,20.96117],[70.74649,20.98897],[70.719383,20.936951],[70.717583,20.91213],[70.694168,20.882961],[70.679031,20.84404],[70.684776,20.7918],[70.673752,20.763472],[70.645142,20.763197],[70.585419,20.781528],[70.550415,20.804583],[70.500969,20.823469],[70.425415,20.862917],[70.393471,20.89431],[70.364861,20.900694],[70.320702,20.927361],[70.226807,20.998753],[70.099586,21.104582],[70.006813,21.19875],[69.92292,21.291805],[69.807907,21.424313],[69.712906,21.528471],[69.764313,21.578751],[69.743752,21.635973],[69.691528,21.629591],[69.712364,21.609861],[69.704582,21.589582],[69.724861,21.56986],[69.706253,21.53875],[69.671806,21.56624],[69.602081,21.637362],[69.58403,21.637918],[69.531525,21.681805],[69.470695,21.740973],[69.400696,21.79653],[69.375687,21.82653],[69.323753,21.860971],[69.236252,21.938471],[69.162918,22.015417],[69.08403,22.103201],[69.057915,22.125694],[68.980972,22.211809],[68.952637,22.24847],[68.956528,22.260695],[68.935974,22.312084],[68.95903,22.351805],[68.956802,22.366529],[68.984581,22.414305],[69.007919,22.439859],[69.079857,22.479031],[69.07486,22.4543],[69.044029,22.43125],[69.068748,22.395971],[69.109581,22.409861],[69.124031,22.399858],[69.191254,22.422083],[69.200417,22.39069],[69.183746,22.38236],[69.160416,22.306528],[69.203186,22.266251],[69.223473,22.257917],[69.29097,22.275694],[69.33403,22.304308],[69.340141,22.33042],[69.419304,22.315695],[69.454857,22.335421],[69.488747,22.338194],[69.490135,22.355694],[69.521248,22.379301],[69.522919,22.426531],[69.550972,22.40431],[69.55986,22.36681],[69.600136,22.348749],[69.654587,22.35903],[69.664017,22.393751],[69.699028,22.395695],[69.690971,22.451262],[69.740974,22.457361],[69.792641,22.403473],[69.807083,22.404861],[69.828476,22.45153],[69.875427,22.44792],[69.909859,22.473751],[69.912636,22.488194],[69.93486,22.51264],[69.943466,22.511801],[69.945969,22.528473],[70.043198,22.55736],[70.06514,22.546806],[70.162918,22.551531],[70.192093,22.58292],[70.199303,22.617361],[70.219582,22.630138],[70.245407,22.669863],[70.254578,22.72625],[70.301247,22.757639],[70.309303,22.795973],[70.323753,22.804585],[70.354027,22.868752],[70.375969,22.89875],[70.422363,22.932362],[70.429863,22.955973],[70.471527,23.01236],[70.493469,23.07514],[70.43792,23.062641],[70.397087,23.025961],[70.393471,22.963194],[70.383751,22.94458],[70.350677,22.930971],[70.287361,22.945417],[70.251808,22.972639],[70.229309,22.977081],[70.208748,22.951803],[70.161797,22.94264],[70.131813,22.961248],[70.13208,22.924582],[70.105972,22.909033],[69.989586,22.89986],[69.951248,22.892918],[69.901527,22.865141],[69.865692,22.87265],[69.79792,22.850418],[69.75264,22.81986],[69.746803,22.793751],[69.715141,22.75153],[69.694572,22.742361],[69.67347,22.757084],[69.621529,22.767361],[69.597359,22.759581],[69.552643,22.78569],[69.523483,22.790421],[69.473747,22.77347],[69.446533,22.78014],[69.401527,22.809031],[69.318748,22.832361],[69.266808,22.82403],[69.197357,22.83847],[69.126808,22.875416],[69.098473,22.897364],[68.98764,22.955971],[68.833473,23.045141],[68.81208,23.060696],[68.76236,23.078751],[68.73542,23.102362],[68.652359,23.15514],[68.626526,23.186808],[68.585136,23.221821],[68.613197,23.227917],[68.640686,23.266529],[68.631531,23.295973],[68.637085,23.34375],[68.605698,23.37986],[68.56736,23.378471],[68.558746,23.420431],[68.535141,23.43486],[68.50486,23.48959],[68.489861,23.539581],[68.489296,23.635139],[68.517365,23.662083],[68.527916,23.688471],[68.558472,23.719311],[68.595139,23.73181],[68.630692,23.759029],[68.655136,23.79875],[68.68486,23.820421],[68.732361,23.831806],[68.729027,23.85486],[68.671806,23.86153],[68.645142,23.837915],[68.597084,23.839582],[68.574585,23.821251],[68.534576,23.756531],[68.516251,23.78319],[68.522919,23.817083],[68.55014,23.83931],[68.571808,23.88014],[68.613472,23.903194],[68.58847,23.922358],[68.559593,23.923752],[68.537361,23.947361],[68.547081,23.963186],[68.749245,23.962046],[68.75956,24.035822],[68.764122,24.284122],[68.772652,24.294136],[68.826355,24.308395],[68.847725,24.20838],[68.897949,24.19886],[68.921967,24.25865],[68.947243,24.276627],[68.970566,24.23753],[69.013718,24.229074],[69.085442,24.268278],[69.199768,24.235199],[69.27491,24.268848],[69.310272,24.276688],[69.361938,24.266174],[69.43158,24.273653],[69.501167,24.25502],[69.600677,24.277847],[69.681213,24.205091],[69.724579,24.175097],[69.912262,24.1642],[70.024086,24.169353],[70.048904,24.183546],[70.077309,24.215643],[70.1101,24.284897],[70.150452,24.300573],[70.237061,24.317266],[70.29689,24.339914],[70.370316,24.353451],[70.459633,24.386976],[70.574867,24.420315],[70.611496,24.40152],[70.592049,24.358631],[70.572067,24.344549],[70.587807,24.285397],[70.572426,24.264929],[70.593552,24.240274],[70.655304,24.225088],[70.725822,24.220865],[70.805763,24.222727],[70.853653,24.247375],[70.894104,24.257097],[70.885139,24.290751],[70.959747,24.346241],[70.998428,24.360571],[71.012993,24.346861],[71.047188,24.34734],[71.088287,24.381453],[71.122093,24.390871],[71.134102,24.413811],[71.093094,24.435934],[71.02858,24.433378],[71.007568,24.442242],[71.015343,24.52277],[70.998268,24.54134],[71.000557,24.599213],[71.020477,24.63051],[71.046097,24.638811],[71.10714,24.680651],[71.119278,24.66865],[71.297737,24.607641],[71.326492,24.642929],[71.356712,24.654051],[71.380737,24.621382],[71.42231,24.638102],[71.488319,24.673851],[71.536972,24.678921],[71.616592,24.670681],[71.66156,24.633261],[71.716316,24.654329],[71.745773,24.65428],[71.784508,24.668859],[71.812927,24.660879],[71.811768,24.62182],[71.846573,24.614861],[71.868683,24.62348],[71.871101,24.672218],[71.925926,24.662083],[71.934509,24.62685],[71.993393,24.65671],[71.99408,24.677551],[72.05249,24.70579],[72.085251,24.697008],[72.0849,24.652752],[72.116547,24.633369],[72.150726,24.634102],[72.185898,24.60943],[72.229988,24.632881],[72.27475,24.622231],[72.276711,24.59918],[72.250999,24.58016],[72.271683,24.550159],[72.29512,24.538441],[72.357933,24.552511],[72.386322,24.500511],[72.421112,24.508068],[72.448151,24.49332],[72.436676,24.46051],[72.456238,24.438129],[72.464676,24.40712],[72.510002,24.418343],[72.500557,24.450291],[72.542137,24.504869],[72.588501,24.472502],[72.658638,24.45643],[72.693016,24.460161],[72.693466,24.419281],[72.732536,24.361271],[72.815346,24.358191],[72.868118,24.36581],[72.900558,24.351448],[72.923912,24.326323],[72.977493,24.358841],[72.964188,24.392221],[72.990616,24.420891],[72.981003,24.45105],[73.021851,24.465113],[73.051041,24.46526],[73.094383,24.494728],[73.107193,24.45682],[73.106247,24.420321],[73.084961,24.39447],[73.127388,24.36883],[73.180176,24.35067],[73.210983,24.37542],[73.231476,24.36466],[73.21106,24.33423],[73.187012,24.334949],[73.173302,24.30105],[73.144958,24.307858],[73.138947,24.28005],[73.116066,24.26259],[73.091728,24.220881],[73.082687,24.18498],[73.123398,24.140301],[73.17173,24.111322],[73.223816,24.098221],[73.200638,24.04524],[73.252541,24.01112],[73.291031,24.027403],[73.326561,24.0625],[73.335182,24.11511],[73.369621,24.112492],[73.369629,24.08798],[73.413757,24.051069],[73.410606,23.998331],[73.421463,23.97467],[73.42012,23.923401],[73.386497,23.905771],[73.359848,23.85463],[73.372673,23.821922],[73.36113,23.791651],[73.3759,23.76667],[73.400009,23.783978],[73.420486,23.779331],[73.450821,23.75259],[73.479271,23.708973],[73.510353,23.69698],[73.501373,23.635441],[73.526726,23.61062],[73.570747,23.653511],[73.619019,23.651423],[73.660736,23.622902],[73.637001,23.53113],[73.658447,23.514153],[73.643822,23.49678],[73.632751,23.452393],[73.704216,23.455782],[73.717216,23.41884],[73.764717,23.458578],[73.783066,23.43461],[73.826889,23.44684],[73.86676,23.395771],[73.894272,23.337139],[73.938896,23.341419],[73.962471,23.38139],[73.990776,23.337629],[74.032661,23.33235],[74.048737,23.295061],[74.106583,23.294123],[74.136108,23.264721],[74.139481,23.226822],[74.124702,23.20657],[74.127022,23.17885],[74.155167,23.157751],[74.182991,23.15222],[74.207542,23.192051],[74.249779,23.178431],[74.271828,23.15601],[74.288147,23.118731],[74.282539,23.095013],[74.322777,23.062691]]]]},"properties":{"ID_0":105,"ISO":"IN-GJ","NAME_0":"India","ID_1":12,"NAME_1":"Gujarat"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[77.57489,30.38452],[77.592018,30.370861],[77.569893,30.337111],[77.570351,30.31123],[77.532181,30.286858],[77.495987,30.233631],[77.473267,30.188591],[77.446846,30.16861],[77.423546,30.16848],[77.410828,30.14588],[77.414192,30.111111],[77.373428,30.093019],[77.331741,30.064451],[77.270409,30.04834],[77.27314,30.03404],[77.250473,29.988451],[77.179558,29.902269],[77.182457,29.87328],[77.155647,29.81679],[77.152382,29.79328],[77.118286,29.775551],[77.112953,29.7486],[77.140213,29.717272],[77.085617,29.6008],[77.109718,29.55299],[77.084908,29.53359],[77.123322,29.486061],[77.117836,29.456461],[77.139389,29.442101],[77.124878,29.422171],[77.138649,29.383909],[77.116943,29.37668],[77.120033,29.349791],[77.146446,29.34506],[77.154213,29.316921],[77.129486,29.272791],[77.142799,29.237791],[77.12722,29.228142],[77.139992,29.182081],[77.126617,29.15402],[77.13858,29.134769],[77.124382,29.101488],[77.157188,29.077532],[77.162636,29.048571],[77.214188,29.00596],[77.190956,28.961651],[77.216873,28.900343],[77.18177,28.889801],[77.186867,28.866819],[77.139198,28.841669],[77.12854,28.865391],[77.049759,28.87319],[77.03154,28.83679],[76.979553,28.8367],[76.942307,28.820681],[76.937469,28.803501],[76.950317,28.746651],[76.941261,28.71703],[76.945953,28.683481],[76.923103,28.66921],[76.910347,28.637831],[76.877937,28.63763],[76.860901,28.60251],[76.832916,28.582508],[76.837616,28.55699],[76.879463,28.523998],[76.944626,28.51363],[76.968468,28.52758],[77.005547,28.514441],[77.015663,28.533319],[77.056961,28.513861],[77.072479,28.520281],[77.107666,28.49387],[77.101547,28.476479],[77.118301,28.44243],[77.142433,28.435711],[77.165771,28.408461],[77.20591,28.413401],[77.240616,28.42886],[77.227631,28.469749],[77.278053,28.49815],[77.30687,28.490681],[77.337738,28.50897],[77.360481,28.49786],[77.397797,28.458641],[77.425781,28.45454],[77.435997,28.43161],[77.474556,28.413511],[77.469536,28.3943],[77.49424,28.358261],[77.466408,28.341209],[77.495789,28.307041],[77.492737,28.28063],[77.537949,28.190891],[77.531769,28.170259],[77.498909,28.16301],[77.499397,28.122591],[77.473068,28.10372],[77.477638,28.049101],[77.535217,27.99333],[77.535919,27.965549],[77.519211,27.931881],[77.468727,27.932911],[77.469818,27.89473],[77.4422,27.878481],[77.422203,27.89448],[77.40155,27.881901],[77.412392,27.859072],[77.339333,27.859591],[77.312927,27.830051],[77.27578,27.806549],[77.234558,27.78581],[77.149727,27.812431],[77.147278,27.786659],[77.101166,27.785492],[77.072411,27.809521],[77.038277,27.820042],[77.023048,27.787189],[77.077972,27.737341],[77.053207,27.727859],[77.031967,27.748411],[76.994377,27.742043],[76.979103,27.70616],[76.970497,27.657143],[76.934196,27.6751],[76.909477,27.656801],[76.891647,27.67989],[76.914566,27.700821],[76.888542,27.719551],[76.895607,27.78614],[76.907883,27.835918],[76.926643,27.834221],[76.926086,27.894421],[76.919098,27.92486],[76.924927,27.978361],[76.918648,27.99761],[76.946556,28.071341],[76.961761,28.144011],[76.941742,28.148701],[76.884048,28.19166],[76.863632,28.22464],[76.833427,28.22485],[76.790253,28.19376],[76.791489,28.157242],[76.755081,28.14661],[76.739128,28.12904],[76.709961,28.13236],[76.682182,28.097771],[76.64785,28.092211],[76.660072,28.019051],[76.598969,28.00984],[76.546593,27.971371],[76.531036,27.979328],[76.538521,28.03912],[76.455742,28.04648],[76.469887,28.086321],[76.497803,28.106621],[76.472336,28.149601],[76.437126,28.152151],[76.359833,28.143381],[76.353249,28.166191],[76.308716,28.183361],[76.278183,28.168571],[76.355606,28.12845],[76.331886,28.106718],[76.337349,28.073061],[76.353287,28.065573],[76.3368,28.029661],[76.290123,28.0299],[76.290077,28.04911],[76.251099,28.070921],[76.233368,28.056421],[76.177338,28.059259],[76.203461,28.030361],[76.174263,28.02191],[76.15387,27.992531],[76.179466,27.972841],[76.169746,27.90975],[76.205948,27.84799],[76.17292,27.807461],[76.127769,27.8332],[76.122139,27.854401],[76.088066,27.868448],[76.080093,27.85107],[76.049629,27.84786],[76.009308,27.86261],[75.975449,27.86463],[75.977386,27.90926],[75.963173,27.936951],[75.96833,27.962311],[75.955467,27.98864],[75.974358,28.03694],[76.010078,28.036711],[75.977066,28.084181],[75.936089,28.093531],[75.994667,28.1506],[76.027748,28.172722],[76.074806,28.172428],[76.053009,28.22423],[76.011192,28.241751],[76.018723,28.280958],[75.986572,28.295891],[75.956306,28.338371],[75.927406,28.3451],[75.922379,28.36891],[75.802589,28.414228],[75.778229,28.457611],[75.735001,28.472641],[75.736549,28.487202],[75.690079,28.4991],[75.665489,28.533279],[75.629097,28.545971],[75.609337,28.605881],[75.55571,28.614592],[75.539566,28.64887],[75.530937,28.732821],[75.516083,28.772228],[75.498543,28.787661],[75.513367,28.83659],[75.487991,28.85965],[75.488426,28.898319],[75.467079,28.92625],[75.497566,28.941488],[75.516518,28.975389],[75.511101,29.01083],[75.473427,29.020201],[75.434738,29.016541],[75.43026,29.06472],[75.380653,29.07032],[75.380699,29.11072],[75.39621,29.128441],[75.361153,29.14262],[75.368958,29.169958],[75.40065,29.18891],[75.379547,29.263931],[75.314926,29.23596],[75.319267,29.29344],[75.276718,29.273451],[75.271729,29.25437],[75.195313,29.244221],[75.179993,29.26862],[75.147476,29.24585],[75.078079,29.23245],[75.023857,29.291531],[74.991043,29.271749],[74.95311,29.28194],[74.950569,29.31851],[74.927147,29.364639],[74.849518,29.40279],[74.809547,29.398479],[74.775917,29.360151],[74.731697,29.353788],[74.711243,29.36891],[74.650177,29.37237],[74.641823,29.3312],[74.595779,29.328312],[74.600037,29.35433],[74.572899,29.38645],[74.57003,29.406158],[74.531296,29.42498],[74.53463,29.465033],[74.578911,29.45862],[74.611427,29.5315],[74.571747,29.55558],[74.578522,29.654753],[74.603477,29.72143],[74.6054,29.75288],[74.537788,29.75386],[74.525833,29.741369],[74.472,29.74403],[74.465263,29.78755],[74.491669,29.826509],[74.532532,29.839281],[74.553566,29.865641],[74.533691,29.90262],[74.505028,29.907761],[74.519066,29.94335],[74.5858,29.914761],[74.639633,29.90395],[74.639862,29.922491],[74.680962,29.94919],[74.695503,29.971531],[74.724007,29.961861],[74.775993,29.9744],[74.801178,29.992573],[74.849632,29.959129],[74.924088,29.94153],[74.943176,29.902538],[74.969887,29.889921],[74.989929,29.856461],[75.037498,29.881781],[75.065483,29.87904],[75.077736,29.91231],[75.102676,29.89702],[75.085747,29.84481],[75.102287,29.802551],[75.124916,29.80562],[75.182343,29.838701],[75.200912,29.83],[75.19796,29.796221],[75.23098,29.752068],[75.198097,29.730801],[75.188889,29.680828],[75.15892,29.669361],[75.17334,29.630081],[75.221237,29.60655],[75.211189,29.582399],[75.238068,29.55154],[75.290649,29.561762],[75.304512,29.588478],[75.28035,29.603251],[75.307533,29.632561],[75.317726,29.6707],[75.361946,29.712891],[75.378777,29.7113],[75.397232,29.761021],[75.443787,29.78618],[75.444267,29.80785],[75.506332,29.774071],[75.556396,29.765833],[75.563087,29.74424],[75.62262,29.75362],[75.625359,29.77323],[75.666168,29.772701],[75.697449,29.755211],[75.705933,29.80862],[75.748398,29.81212],[75.771622,29.82539],[75.796051,29.807121],[75.819977,29.81538],[75.863777,29.752331],[75.897232,29.755529],[75.934013,29.732533],[75.972549,29.73237],[76.00383,29.750931],[76.041481,29.748781],[76.074341,29.78124],[76.077667,29.805773],[76.116386,29.7964],[76.139267,29.816763],[76.166656,29.818321],[76.194183,29.844971],[76.228523,29.854528],[76.225296,29.885061],[76.182709,29.893881],[76.178909,29.946268],[76.203873,29.94412],[76.189377,30.00419],[76.198906,30.034828],[76.229919,30.080568],[76.230827,30.108521],[76.204712,30.127861],[76.210533,30.156078],[76.25116,30.118999],[76.328377,30.10951],[76.348923,30.127661],[76.390007,30.127541],[76.401642,30.157728],[76.380997,30.183241],[76.398842,30.198999],[76.428581,30.179792],[76.426041,30.14756],[76.452087,30.10071],[76.490829,30.097151],[76.501122,30.07663],[76.554871,30.098761],[76.589531,30.0793],[76.619476,30.095362],[76.629402,30.134769],[76.622742,30.1703],[76.638916,30.20594],[76.590317,30.254122],[76.670883,30.31917],[76.697678,30.324858],[76.738533,30.35965],[76.70015,30.393612],[76.748871,30.426632],[76.808456,30.41186],[76.832458,30.433882],[76.864731,30.408791],[76.897766,30.3626],[76.927299,30.388639],[76.889931,30.436691],[76.89386,30.489641],[76.912369,30.49366],[76.920067,30.524691],[76.88504,30.540421],[76.913429,30.599703],[76.899597,30.620029],[76.858582,30.640631],[76.863106,30.671511],[76.818817,30.660591],[76.819809,30.685829],[76.836296,30.71427],[76.822746,30.740082],[76.828186,30.76379],[76.846786,30.792521],[76.827751,30.832569],[76.801216,30.842522],[76.769043,30.87653],[76.769859,30.906391],[76.810188,30.93038],[76.822662,30.8881],[76.852432,30.870689],[76.902161,30.897228],[76.927513,30.837353],[76.953751,30.811211],[76.997963,30.814291],[77.0131,30.742208],[77.047058,30.748671],[77.102348,30.73078],[77.153526,30.688721],[77.162361,30.638651],[77.157486,30.59955],[77.111496,30.567289],[77.137581,30.53858],[77.185349,30.525881],[77.202606,30.480341],[77.251778,30.484411],[77.26358,30.466671],[77.310699,30.453621],[77.346077,30.461901],[77.380386,30.44614],[77.395462,30.42094],[77.426201,30.441118],[77.453346,30.440361],[77.434952,30.403671],[77.491348,30.417351],[77.50985,30.44883],[77.542892,30.39723],[77.57489,30.38452]]]},"properties":{"ID_0":105,"ISO":"IN-HR","NAME_0":"India","ID_1":13,"NAME_1":"Haryana"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[78.410759,32.511742],[78.448723,32.490139],[78.43811,32.45639],[78.478142,32.425861],[78.518761,32.418499],[78.461243,32.337002],[78.464317,32.277779],[78.439209,32.24646],[78.482849,32.24313],[78.543083,32.248741],[78.592911,32.21867],[78.5942,32.18848],[78.57431,32.158619],[78.596329,32.123409],[78.647873,32.107132],[78.652412,32.088261],[78.690117,32.045731],[78.737068,32.004082],[78.771027,31.999811],[78.745407,31.925041],[78.724762,31.885],[78.720528,31.835331],[78.69297,31.81432],[78.691353,31.79335],[78.734398,31.69198],[78.779648,31.68984],[78.784233,31.661263],[78.826889,31.627991],[78.822807,31.60062],[78.797287,31.576153],[78.750008,31.54883],[78.72126,31.540951],[78.706772,31.521103],[78.716049,31.487171],[78.744186,31.49033],[78.795479,31.452763],[78.79248,31.417858],[78.776039,31.402378],[78.827217,31.381281],[78.840286,31.354441],[78.82901,31.3302],[78.86747,31.301378],[78.879539,31.27072],[78.906883,31.25919],[78.909912,31.233889],[78.935127,31.222363],[78.946213,31.19356],[78.97187,31.182371],[78.978088,31.14566],[78.996696,31.11759],[78.942116,31.105028],[78.903793,31.115471],[78.880043,31.10384],[78.818733,31.147211],[78.795036,31.20504],[78.749451,31.194351],[78.650673,31.197851],[78.636002,31.21958],[78.600601,31.235851],[78.566582,31.23374],[78.537117,31.206711],[78.470108,31.203751],[78.466568,31.22094],[78.419456,31.25988],[78.393082,31.262278],[78.369263,31.287901],[78.298363,31.28821],[78.26902,31.27136],[78.23259,31.23502],[78.184921,31.22333],[78.147827,31.231571],[78.092377,31.192831],[78.029953,31.18531],[78.007721,31.15708],[77.954758,31.17878],[77.902176,31.158821],[77.878723,31.124672],[77.851532,31.11097],[77.842827,31.081291],[77.805023,31.05407],[77.824707,31.00519],[77.796417,30.96982],[77.753922,30.976843],[77.733276,30.949501],[77.745598,30.92231],[77.793373,30.925982],[77.783501,30.872061],[77.744522,30.881191],[77.731461,30.850771],[77.744072,30.836243],[77.704529,30.77902],[77.688286,30.768669],[77.741096,30.710661],[77.733406,30.685829],[77.765907,30.665279],[77.774979,30.641121],[77.732109,30.607128],[77.753532,30.57023],[77.805862,30.56074],[77.812202,30.53805],[77.799179,30.511391],[77.767616,30.50436],[77.661606,30.44878],[77.603752,30.437441],[77.562881,30.41708],[77.563057,30.40449],[77.57489,30.38452],[77.542892,30.39723],[77.50985,30.44883],[77.491348,30.417351],[77.434952,30.403671],[77.453346,30.440361],[77.426201,30.441118],[77.395462,30.42094],[77.380386,30.44614],[77.346077,30.461901],[77.310699,30.453621],[77.26358,30.466671],[77.251778,30.484411],[77.202606,30.480341],[77.185349,30.525881],[77.137581,30.53858],[77.111496,30.567289],[77.157486,30.59955],[77.162361,30.638651],[77.153526,30.688721],[77.102348,30.73078],[77.047058,30.748671],[77.0131,30.742208],[76.997963,30.814291],[76.953751,30.811211],[76.927513,30.837353],[76.902161,30.897228],[76.852432,30.870689],[76.822662,30.8881],[76.810188,30.93038],[76.769859,30.906391],[76.726021,30.939331],[76.712601,30.963421],[76.66819,30.969881],[76.610069,31.00423],[76.598969,31.053551],[76.625732,31.110243],[76.589317,31.127701],[76.598747,31.151171],[76.590393,31.182859],[76.635422,31.21298],[76.570503,31.280149],[76.545921,31.25588],[76.51091,31.282619],[76.488586,31.273401],[76.466713,31.310211],[76.428017,31.32518],[76.391052,31.378632],[76.390396,31.397331],[76.359146,31.41563],[76.315842,31.402378],[76.329582,31.379519],[76.330078,31.34528],[76.302269,31.326361],[76.206398,31.305262],[76.172829,31.30674],[76.166321,31.341459],[76.13961,31.353121],[76.134087,31.382643],[76.156746,31.40451],[76.128242,31.44376],[76.084,31.537182],[76.002747,31.64657],[76.00473,31.663031],[75.977371,31.705],[75.945061,31.781281],[75.921829,31.817181],[75.952896,31.823961],[75.94973,31.848101],[75.894547,31.9498],[75.836372,31.981649],[75.79512,31.988581],[75.733978,32.037331],[75.710487,32.036022],[75.692276,32.059452],[75.649361,32.077171],[75.598526,32.06601],[75.578758,32.08168],[75.610558,32.099609],[75.655479,32.146061],[75.656158,32.17662],[75.620216,32.185169],[75.622543,32.23468],[75.675842,32.264019],[75.736397,32.273762],[75.84388,32.379311],[75.871933,32.398449],[75.925926,32.411781],[75.915497,32.4487],[75.855278,32.49958],[75.851387,32.521309],[75.872543,32.576191],[75.923622,32.6437],[75.898857,32.680622],[75.912483,32.757122],[75.873787,32.81369],[75.82106,32.842762],[75.787422,32.893322],[75.807953,32.92979],[75.867119,32.93021],[75.900116,32.915699],[75.933777,32.884312],[76.017189,32.917641],[76.082207,32.9688],[76.093689,33.004829],[76.152237,33.0229],[76.237289,33.032589],[76.255241,33.05228],[76.275002,33.103989],[76.358856,33.157501],[76.38456,33.182892],[76.469063,33.179909],[76.495972,33.19603],[76.547478,33.20953],[76.586189,33.20422],[76.599586,33.173759],[76.627007,33.162479],[76.696716,33.18148],[76.729866,33.179432],[76.75988,33.22467],[76.763557,33.25433],[76.796936,33.241211],[76.821922,33.248352],[76.798126,33.173302],[76.803459,33.155689],[76.85257,33.111549],[76.877197,33.114239],[76.917511,33.03368],[76.998466,32.989571],[77.035316,32.99968],[77.074898,32.973351],[77.103157,32.987202],[77.136391,32.980461],[77.136383,32.957771],[77.157433,32.913239],[77.181801,32.915451],[77.228256,32.895569],[77.288742,32.852619],[77.321617,32.822392],[77.356476,32.825272],[77.358719,32.8564],[77.379387,32.880829],[77.42572,32.883671],[77.455223,32.86174],[77.48455,32.886539],[77.519562,32.887379],[77.581528,32.939232],[77.612961,32.94141],[77.653313,32.9594],[77.665207,32.986031],[77.712486,32.971802],[77.790169,32.90543],[77.761429,32.86483],[77.825089,32.83987],[77.861267,32.816162],[77.866966,32.790291],[77.917931,32.75692],[77.903252,32.6931],[77.920212,32.679512],[77.9767,32.591942],[78.035797,32.591949],[78.044098,32.628841],[78.067459,32.625622],[78.093376,32.662151],[78.116158,32.64241],[78.136002,32.670319],[78.170479,32.677212],[78.183952,32.663872],[78.224968,32.67556],[78.236588,32.694672],[78.295723,32.712811],[78.287659,32.737831],[78.344742,32.763432],[78.372772,32.760151],[78.377823,32.719311],[78.363152,32.671989],[78.370926,32.638161],[78.388817,32.62323],[78.331757,32.584869],[78.296623,32.577511],[78.299171,32.52927],[78.278519,32.507931],[78.31041,32.475929],[78.382431,32.529652],[78.410759,32.511742]]]},"properties":{"ID_0":105,"ISO":"IN-HP","NAME_0":"India","ID_1":14,"NAME_1":"Himachal Pradesh"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[78.410759,32.511742],[78.382431,32.529652],[78.31041,32.475929],[78.278519,32.507931],[78.299171,32.52927],[78.296623,32.577511],[78.331757,32.584869],[78.388817,32.62323],[78.370926,32.638161],[78.363152,32.671989],[78.377823,32.719311],[78.372772,32.760151],[78.344742,32.763432],[78.287659,32.737831],[78.295723,32.712811],[78.236588,32.694672],[78.224968,32.67556],[78.183952,32.663872],[78.170479,32.677212],[78.136002,32.670319],[78.116158,32.64241],[78.093376,32.662151],[78.067459,32.625622],[78.044098,32.628841],[78.035797,32.591949],[77.9767,32.591942],[77.920212,32.679512],[77.903252,32.6931],[77.917931,32.75692],[77.866966,32.790291],[77.861267,32.816162],[77.825089,32.83987],[77.761429,32.86483],[77.790169,32.90543],[77.712486,32.971802],[77.665207,32.986031],[77.653313,32.9594],[77.612961,32.94141],[77.581528,32.939232],[77.519562,32.887379],[77.48455,32.886539],[77.455223,32.86174],[77.42572,32.883671],[77.379387,32.880829],[77.358719,32.8564],[77.356476,32.825272],[77.321617,32.822392],[77.288742,32.852619],[77.228256,32.895569],[77.181801,32.915451],[77.157433,32.913239],[77.136383,32.957771],[77.136391,32.980461],[77.103157,32.987202],[77.074898,32.973351],[77.035316,32.99968],[76.998466,32.989571],[76.917511,33.03368],[76.877197,33.114239],[76.85257,33.111549],[76.803459,33.155689],[76.798126,33.173302],[76.821922,33.248352],[76.796936,33.241211],[76.763557,33.25433],[76.75988,33.22467],[76.729866,33.179432],[76.696716,33.18148],[76.627007,33.162479],[76.599586,33.173759],[76.586189,33.20422],[76.547478,33.20953],[76.495972,33.19603],[76.469063,33.179909],[76.38456,33.182892],[76.358856,33.157501],[76.275002,33.103989],[76.255241,33.05228],[76.237289,33.032589],[76.152237,33.0229],[76.093689,33.004829],[76.082207,32.9688],[76.017189,32.917641],[75.933777,32.884312],[75.900116,32.915699],[75.867119,32.93021],[75.807953,32.92979],[75.787422,32.893322],[75.82106,32.842762],[75.873787,32.81369],[75.912483,32.757122],[75.898857,32.680622],[75.923622,32.6437],[75.872543,32.576191],[75.837837,32.537609],[75.804337,32.487061],[75.745926,32.476349],[75.711533,32.418159],[75.648071,32.388809],[75.592636,32.381699],[75.545151,32.360821],[75.524269,32.34005],[75.515823,32.297989],[75.467758,32.317562],[75.473526,32.339199],[75.414993,32.324272],[75.331779,32.3447],[75.322327,32.337326],[75.231529,32.399189],[75.200249,32.402321],[75.179543,32.425442],[75.147636,32.41338],[75.082626,32.480045],[75.030167,32.49176],[74.987869,32.449562],[74.948898,32.454086],[74.933632,32.467571],[74.899658,32.466129],[74.856422,32.492672],[74.818573,32.496059],[74.798859,32.484058],[74.698418,32.48494],[74.679176,32.515411],[74.680511,32.538189],[74.652397,32.560162],[74.642212,32.61105],[74.675636,32.665779],[74.65419,32.692451],[74.650139,32.71841],[74.667526,32.76659],[74.700386,32.82703],[74.680832,32.8382],[74.641998,32.822899],[74.641541,32.791889],[74.614235,32.757732],[74.567108,32.755211],[74.531532,32.74073],[74.466057,32.781361],[74.430061,32.844654],[74.429337,32.879509],[74.413895,32.90395],[74.347748,32.908211],[74.318031,32.919701],[74.320717,32.941429],[74.346359,32.965549],[74.3517,33.01313],[74.254967,33.048775],[74.205246,33.043301],[74.176247,33.107151],[74.111702,33.16444],[74.08284,33.18074],[74.026253,33.188591],[74.014275,33.19825],[74.013107,33.24987],[74.024384,33.262455],[74.078941,33.260231],[74.102982,33.270542],[74.166855,33.344139],[74.185081,33.383511],[74.179291,33.425686],[74.187073,33.455521],[74.178139,33.481682],[74.12339,33.543209],[74.088356,33.573204],[74.053902,33.565079],[74.028442,33.57468],[74,33.623669],[73.9757,33.693634],[73.956253,33.720291],[73.966461,33.740322],[74,33.752579],[74.028343,33.775959],[74.049049,33.80883],[74.090012,33.826279],[74.129799,33.82756],[74.17009,33.83989],[74.219673,33.867176],[74.261124,33.924797],[74.262741,33.974289],[74.248688,34.013821],[74.214676,34.038555],[74.161423,34.038872],[74.114983,34.053783],[74.087029,34.037762],[74.006073,34.022442],[74,34.03019],[73.89817,34.032822],[73.885651,34.075119],[73.904381,34.096893],[73.904083,34.12225],[73.976578,34.211803],[73.976227,34.264809],[73.940971,34.301739],[73.91993,34.342312],[73.899406,34.359814],[73.841751,34.338322],[73.807396,34.35672],[73.763222,34.359631],[73.776985,34.416302],[73.854813,34.473351],[73.898743,34.49577],[73.886688,34.514999],[73.89534,34.546669],[73.948067,34.57309],[73.92733,34.645889],[73.96022,34.696682],[74.012894,34.709854],[74.041718,34.687317],[74.148972,34.695271],[74.202957,34.73658],[74.269897,34.762691],[74.30278,34.797539],[74.346214,34.790409],[74.375542,34.803444],[74.473969,34.790634],[74.506577,34.775532],[74.580177,34.7701],[74.638832,34.73354],[74.671303,34.700699],[74.728073,34.688583],[74.835602,34.677551],[74.893753,34.68449],[75.018745,34.641499],[75.142296,34.662411],[75.206718,34.64629],[75.26606,34.639549],[75.261856,34.610882],[75.350548,34.562241],[75.394974,34.548809],[75.506096,34.537331],[75.591888,34.54007],[75.692307,34.52153],[75.749207,34.515831],[75.79303,34.53392],[75.843277,34.574631],[75.918648,34.604839],[75.932213,34.624432],[76.000389,34.635811],[76.036461,34.670269],[76.085823,34.671459],[76.121933,34.646652],[76.157913,34.64341],[76.275116,34.693642],[76.316139,34.731632],[76.385933,34.73595],[76.436958,34.764381],[76.4692,34.791668],[76.514091,34.783802],[76.561813,34.758339],[76.671638,34.75742],[76.687195,34.76321],[76.706192,34.80125],[76.74469,34.84473],[76.738861,34.901928],[76.762428,34.932991],[76.81105,34.935455],[76.863152,34.97084],[76.883507,34.970329],[76.95034,34.940941],[76.99749,34.939152],[77.010139,34.956287],[77.013786,35.035122],[77.068367,35.02412],[77.156822,35.054699],[77.280792,35.138287],[77.44252,35.23444],[77.48542,35.266541],[77.585022,35.323921],[77.650566,35.367081],[77.735512,35.433842],[77.846779,35.500782],[77.862671,35.458591],[77.888626,35.428871],[77.928017,35.44054],[77.951286,35.47364],[77.990646,35.48711],[78.079353,35.492199],[78.110802,35.47266],[78.097328,35.455639],[78.021202,35.416882],[77.990288,35.379032],[78.002022,35.294621],[78.017746,35.249752],[78.057556,35.18475],[78.116051,35.145351],[78.117096,35.111641],[78.08287,35.082489],[78.133476,34.970871],[78.184647,34.881519],[78.207321,34.766109],[78.248032,34.695099],[78.284363,34.667362],[78.324921,34.655979],[78.387177,34.65163],[78.407013,34.636631],[78.418129,34.6054],[78.482231,34.60334],[78.537117,34.614151],[78.569336,34.61195],[78.611092,34.583061],[78.660057,34.52972],[78.73008,34.496651],[78.763023,34.460461],[78.838097,34.406528],[78.922546,34.375389],[78.981461,34.332851],[78.993401,34.288742],[78.9562,34.217831],[78.871147,34.15723],[78.729233,34.095699],[78.706383,34.072182],[78.71212,34.05048],[78.760643,34.036098],[78.763626,34.001511],[78.71579,33.964531],[78.717247,33.89048],[78.741783,33.840179],[78.775063,33.80125],[78.783989,33.770432],[78.775223,33.74622],[78.709297,33.679611],[78.729927,33.617569],[78.783867,33.53265],[78.823257,33.48349],[78.921257,33.398701],[78.972687,33.367321],[78.988663,33.34737],[79.066597,33.295891],[79.074966,33.228611],[79.141441,33.2001],[79.31517,33.188801],[79.377258,33.189911],[79.409836,33.178772],[79.410751,33.1357],[79.36618,33.059841],[79.350029,32.996181],[79.365036,32.956921],[79.387123,32.933079],[79.43206,32.905109],[79.45697,32.871429],[79.464523,32.816742],[79.484421,32.789661],[79.526726,32.76759],[79.540527,32.748692],[79.564293,32.670761],[79.545357,32.607361],[79.508789,32.591461],[79.464149,32.592651],[79.346977,32.526642],[79.320251,32.491299],[79.29734,32.488529],[79.270119,32.51778],[79.248161,32.52235],[79.202957,32.51083],[79.148857,32.483829],[79.118149,32.450001],[79.121193,32.41613],[79.104469,32.371712],[79.067543,32.384979],[79.024986,32.367012],[78.993759,32.3643],[78.970963,32.34428],[78.914673,32.367092],[78.874573,32.414619],[78.836021,32.425282],[78.781181,32.4753],[78.765167,32.57494],[78.780327,32.59832],[78.760277,32.68417],[78.73645,32.69593],[78.654427,32.649231],[78.632339,32.611061],[78.603287,32.604382],[78.559273,32.612339],[78.526413,32.606491],[78.485611,32.573219],[78.452721,32.579502],[78.412239,32.556061],[78.410759,32.511742]]]},"properties":{"ID_0":105,"ISO":"IN-JK","NAME_0":"India","ID_1":15,"NAME_1":"Jammu and Kashmir"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[87.787582,25.22049],[87.771042,25.152271],[87.772667,25.099098],[87.792877,25.075731],[87.864342,25.03985],[87.906487,24.985811],[87.961693,24.93593],[87.973343,24.896482],[87.966507,24.8813],[87.897766,24.842781],[87.865387,24.774321],[87.839706,24.73819],[87.900833,24.7216],[87.886253,24.678089],[87.911598,24.662291],[87.901611,24.612581],[87.909973,24.593868],[87.887321,24.56271],[87.848213,24.55105],[87.796173,24.562382],[87.798531,24.491859],[87.817848,24.468451],[87.788101,24.432093],[87.797508,24.382181],[87.761238,24.333311],[87.756279,24.303593],[87.681358,24.246441],[87.647148,24.24856],[87.637726,24.21158],[87.670952,24.205738],[87.696678,24.175348],[87.689568,24.149839],[87.627541,24.163132],[87.57975,24.161539],[87.604912,24.132111],[87.581726,24.1234],[87.570213,24.087622],[87.539169,24.087801],[87.496597,24.115801],[87.491226,24.052021],[87.50135,24.022329],[87.471397,24.010891],[87.439102,23.97813],[87.389763,24.001963],[87.356636,24.00919],[87.337288,23.994951],[87.315392,24.004421],[87.332359,24.03101],[87.274277,24.031841],[87.243599,24.04212],[87.232651,24.024599],[87.259537,23.969921],[87.291817,23.9557],[87.285133,23.933889],[87.292587,23.890141],[87.264931,23.874828],[87.245728,23.828072],[87.219757,23.827209],[87.222481,23.857639],[87.187363,23.85718],[87.135818,23.868139],[87.130333,23.85091],[87.166443,23.81959],[87.148743,23.794371],[87.105927,23.79952],[87.056946,23.816259],[87.034409,23.836828],[86.963043,23.864773],[86.943199,23.842861],[86.924156,23.865881],[86.895012,23.879951],[86.844429,23.821852],[86.797691,23.797718],[86.816719,23.77615],[86.792038,23.68737],[86.738129,23.67761],[86.711006,23.697229],[86.648849,23.682871],[86.590622,23.662241],[86.528656,23.628981],[86.481293,23.635038],[86.444908,23.631533],[86.357971,23.54306],[86.351837,23.463631],[86.300148,23.44371],[86.224663,23.43568],[86.220978,23.45598],[86.179146,23.475121],[86.142677,23.477331],[86.155113,23.50423],[86.142929,23.527342],[86.153267,23.551592],[86.138611,23.570021],[86.037376,23.58346],[86.011009,23.561241],[86.041367,23.49025],[86.02037,23.487911],[85.937943,23.455139],[85.906372,23.47175],[85.874123,23.476231],[85.859543,23.450951],[85.862877,23.409971],[85.895859,23.37698],[85.866257,23.364849],[85.871597,23.330158],[85.861496,23.303329],[85.826363,23.263121],[85.835007,23.192101],[85.857521,23.194363],[85.877312,23.158661],[85.914993,23.12953],[85.94381,23.129471],[85.981941,23.145901],[86.036926,23.14361],[86.044243,23.11186],[86.091797,23.090771],[86.115692,23.093632],[86.175629,23.012991],[86.200867,23.015142],[86.212479,22.99185],[86.261292,22.995531],[86.279373,23.010719],[86.332153,22.988901],[86.359978,22.996681],[86.393036,22.974239],[86.416283,22.994791],[86.463089,22.985218],[86.497353,22.989908],[86.512238,22.966261],[86.486801,22.935541],[86.470123,22.946623],[86.432419,22.91577],[86.463043,22.896631],[86.432838,22.860491],[86.433907,22.82859],[86.416153,22.776508],[86.45401,22.75964],[86.478981,22.722391],[86.549522,22.710911],[86.617867,22.673389],[86.636688,22.655121],[86.634323,22.59726],[86.651703,22.57579],[86.706017,22.58036],[86.755989,22.57427],[86.784073,22.544241],[86.789223,22.47451],[86.745132,22.470539],[86.763893,22.42289],[86.80526,22.416491],[86.843933,22.396061],[86.829193,22.324591],[86.888451,22.28141],[86.885681,22.252121],[86.820343,22.260611],[86.791367,22.217541],[86.747803,22.207981],[86.722786,22.215248],[86.682167,22.219511],[86.648178,22.235691],[86.645576,22.26137],[86.589928,22.282141],[86.578461,22.297819],[86.524551,22.302851],[86.499947,22.340952],[86.424377,22.306271],[86.352737,22.345421],[86.287956,22.425362],[86.265182,22.439541],[86.220383,22.449091],[86.202393,22.47028],[86.101379,22.49015],[86.069206,22.54307],[86.03849,22.563589],[86.028267,22.53433],[85.969246,22.499781],[85.953506,22.455973],[85.992973,22.42214],[86.008743,22.42432],[86.0215,22.381762],[85.992882,22.33816],[86.020432,22.329399],[86.017776,22.30455],[85.969788,22.243401],[86.026718,22.185223],[85.994629,22.131781],[86.002586,22.113022],[85.942581,22.019131],[85.928772,22.01936],[85.894173,21.978291],[85.784279,21.9786],[85.756126,22.00839],[85.778938,22.036261],[85.770332,22.051283],[85.787941,22.07719],[85.830757,22.076971],[85.802048,22.11083],[85.722351,22.05813],[85.681503,22.04878],[85.644608,22.090281],[85.591087,22.07444],[85.485802,22.116489],[85.410286,22.15608],[85.363197,22.15457],[85.361717,22.12476],[85.323013,22.12499],[85.274162,22.08009],[85.241058,22.01252],[85.21489,22.010712],[85.210747,22.04318],[85.140839,22.073551],[85.118881,22.066471],[85.099007,22.096121],[85.023743,22.111992],[85.025398,22.154001],[85.069481,22.23065],[85.070511,22.27216],[85.105293,22.29114],[85.074059,22.348591],[85.083076,22.378441],[85.057037,22.44471],[85.073196,22.47287],[85.051399,22.47942],[84.960243,22.44372],[84.880249,22.417591],[84.8778,22.442511],[84.835747,22.427551],[84.801247,22.44371],[84.752693,22.442013],[84.743851,22.414751],[84.661606,22.413919],[84.632103,22.42865],[84.501793,22.415319],[84.47448,22.401731],[84.425842,22.35203],[84.372002,22.349051],[84.289223,22.33732],[84.246559,22.373701],[84.194107,22.371811],[84.13588,22.420683],[84.137436,22.4671],[84.106117,22.473848],[84.057587,22.510151],[84.002502,22.520861],[84.005051,22.569563],[84.048126,22.594143],[84.080391,22.636551],[84.149933,22.63442],[84.232239,22.68858],[84.225357,22.735161],[84.260101,22.76494],[84.285286,22.763371],[84.309967,22.798983],[84.320312,22.849421],[84.375961,22.873638],[84.389053,22.93874],[84.370537,22.975071],[84.33181,22.979139],[84.278572,22.961248],[84.217056,22.976473],[84.179047,23.02256],[84.167862,22.970961],[84.144211,22.98819],[84.124611,23.030748],[84.130768,23.06336],[84.087868,23.109489],[84.066711,23.107113],[84.029091,23.153881],[84.056122,23.196409],[84.050453,23.24095],[84.070251,23.32999],[84.043388,23.37401],[84.020737,23.37546],[84.006531,23.3528],[83.966888,23.374229],[83.979446,23.426691],[83.969727,23.447668],[84.008759,23.49958],[84.022667,23.544241],[84.020302,23.60018],[83.975456,23.630831],[83.937889,23.622431],[83.929588,23.593679],[83.935257,23.56304],[83.82122,23.58485],[83.774887,23.599501],[83.752083,23.648981],[83.714729,23.682541],[83.73214,23.70467],[83.729401,23.75473],[83.695587,23.807598],[83.656242,23.843641],[83.581169,23.861919],[83.570152,23.89036],[83.54937,23.892839],[83.53894,23.9335],[83.512436,23.966999],[83.509628,24.0254],[83.447586,24.04248],[83.425369,24.083761],[83.400696,24.081779],[83.383263,24.099871],[83.323563,24.10133],[83.349007,24.126438],[83.378342,24.20079],[83.3769,24.23093],[83.401886,24.266001],[83.396156,24.29339],[83.37561,24.31345],[83.403328,24.337391],[83.434311,24.347471],[83.443207,24.372789],[83.429886,24.40379],[83.398956,24.412081],[83.400673,24.43714],[83.381409,24.45565],[83.393013,24.50119],[83.498169,24.52706],[83.542442,24.52618],[83.600159,24.513241],[83.682457,24.515581],[83.71669,24.50495],[83.799011,24.529881],[83.868042,24.532881],[83.928459,24.547911],[83.972351,24.596628],[83.99221,24.638033],[84.046738,24.612289],[84.059746,24.576981],[84.089691,24.53393],[84.089096,24.504128],[84.109779,24.4814],[84.172821,24.541981],[84.22068,24.550331],[84.258469,24.537691],[84.269226,24.564253],[84.292976,24.56599],[84.319107,24.52231],[84.321709,24.489758],[84.294189,24.480761],[84.293213,24.450823],[84.330399,24.43119],[84.335861,24.39583],[84.382217,24.3897],[84.394943,24.36779],[84.422539,24.35915],[84.417427,24.331362],[84.454536,24.33865],[84.465111,24.30839],[84.493538,24.287041],[84.51741,24.33367],[84.521523,24.376261],[84.545853,24.373699],[84.572479,24.41234],[84.600967,24.400978],[84.658257,24.393742],[84.678917,24.456343],[84.724907,24.47295],[84.74202,24.496458],[84.7799,24.50485],[84.819496,24.52482],[84.832626,24.51148],[84.827187,24.470119],[84.86293,24.457642],[84.903313,24.372311],[84.968567,24.37595],[84.990402,24.41223],[85.032097,24.42535],[85.074547,24.408463],[85.092453,24.381521],[85.115059,24.409019],[85.16938,24.42947],[85.152893,24.464149],[85.223923,24.471189],[85.279358,24.5191],[85.382782,24.532532],[85.403053,24.544941],[85.433273,24.536079],[85.494461,24.550619],[85.504356,24.52973],[85.534187,24.53219],[85.568291,24.565201],[85.576576,24.60301],[85.608521,24.585039],[85.664703,24.58193],[85.672127,24.6194],[85.659973,24.67473],[85.704773,24.728729],[85.70356,24.75745],[85.73674,24.822651],[85.777237,24.79895],[85.810661,24.794498],[85.827217,24.809643],[85.877777,24.800291],[85.910507,24.75367],[85.950302,24.732119],[86.006111,24.76568],[86.047882,24.77829],[86.063187,24.751671],[86.105537,24.73597],[86.133598,24.67551],[86.118248,24.641891],[86.125587,24.61182],[86.165657,24.583681],[86.215706,24.591171],[86.292633,24.58609],[86.312416,24.508471],[86.293877,24.476431],[86.319496,24.440161],[86.3535,24.44206],[86.373268,24.415852],[86.415588,24.37921],[86.4618,24.37672],[86.465828,24.421881],[86.488586,24.425001],[86.49028,24.484371],[86.523529,24.535749],[86.546692,24.53504],[86.554642,24.559271],[86.583153,24.572781],[86.599983,24.599491],[86.64576,24.567223],[86.668396,24.56064],[86.745651,24.5895],[86.754051,24.614759],[86.791847,24.615311],[86.808716,24.56377],[86.837051,24.568281],[86.854637,24.550461],[86.898079,24.58654],[86.936058,24.630371],[86.965561,24.631868],[87.010201,24.60626],[87.044403,24.624031],[87.054733,24.670601],[87.081856,24.724541],[87.074547,24.74472],[87.082848,24.779228],[87.077301,24.80835],[87.106049,24.84733],[87.147339,24.862408],[87.158119,24.885632],[87.147629,24.917801],[87.153687,24.990971],[87.143883,25.01079],[87.176643,25.06402],[87.211357,25.0896],[87.233879,25.085821],[87.258751,25.10461],[87.291107,25.08927],[87.323456,25.223091],[87.368462,25.2069],[87.391777,25.227518],[87.47216,25.19467],[87.472641,25.240883],[87.49559,25.265301],[87.481506,25.295172],[87.538498,25.29623],[87.547447,25.33094],[87.567108,25.333891],[87.60688,25.31138],[87.684151,25.310131],[87.707787,25.256409],[87.78331,25.246178],[87.787582,25.22049]]]},"properties":{"ID_0":105,"ISO":"IN-JH","NAME_0":"India","ID_1":16,"NAME_1":"Jharkhand"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[77.549957,18.291349],[77.560982,18.28311],[77.570656,18.29047],[77.574333,18.286848],[77.583817,18.283081],[77.60302,18.278],[77.572533,18.240561],[77.584961,18.216742],[77.574387,18.199921],[77.564308,18.20055],[77.564316,18.18998],[77.570023,18.189159],[77.597771,18.15184],[77.593506,18.127861],[77.596611,18.121031],[77.600563,18.0994],[77.597458,18.08429],[77.589798,18.08029],[77.577446,18.07687],[77.567337,18.07629],[77.560486,18.071131],[77.556709,18.06217],[77.545746,18.053761],[77.552063,18.04694],[77.553116,18.03467],[77.606667,18.018011],[77.653397,17.969353],[77.644257,17.96269],[77.647423,17.95319],[77.64399,17.946371],[77.640617,17.949621],[77.631821,17.953531],[77.629723,17.962971],[77.623741,17.95775],[77.62886,17.948511],[77.62001,17.94446],[77.616798,17.938101],[77.61953,17.930071],[77.61895,17.913481],[77.616577,17.902868],[77.599792,17.903671],[77.585167,17.90823],[77.583076,17.89838],[77.592491,17.879499],[77.581276,17.87575],[77.577728,17.871229],[77.572746,17.87281],[77.567436,17.86614],[77.56604,17.84956],[77.562157,17.849131],[77.563469,17.842001],[77.559189,17.83864],[77.554321,17.83049],[77.549736,17.818029],[77.543716,17.826269],[77.526001,17.826818],[77.526077,17.811689],[77.51088,17.801441],[77.507019,17.792959],[77.504486,17.782591],[77.509346,17.780081],[77.523041,17.779621],[77.534492,17.774691],[77.536972,17.770452],[77.554451,17.761259],[77.565956,17.764111],[77.562027,17.74711],[77.55188,17.734381],[77.544121,17.733391],[77.53936,17.725422],[77.494278,17.71604],[77.491737,17.71286],[77.489326,17.7068],[77.484467,17.70365],[77.481087,17.70685],[77.478676,17.70303],[77.474152,17.701391],[77.457863,17.698961],[77.45462,17.694098],[77.450348,17.691299],[77.451408,17.68774],[77.445648,17.657461],[77.450813,17.63236],[77.439926,17.58147],[77.46122,17.57703],[77.465157,17.574659],[77.469116,17.56818],[77.474083,17.565111],[77.489998,17.566271],[77.496819,17.543371],[77.501617,17.54088],[77.509659,17.54917],[77.513901,17.557249],[77.52742,17.573221],[77.548393,17.549459],[77.585388,17.558361],[77.591728,17.532681],[77.599251,17.534],[77.603256,17.530691],[77.616577,17.52935],[77.621216,17.522251],[77.645317,17.518791],[77.656616,17.521339],[77.661209,17.514811],[77.666069,17.509951],[77.687996,17.498543],[77.686966,17.49157],[77.684677,17.485229],[77.684013,17.472851],[77.664886,17.47629],[77.648087,17.481178],[77.610947,17.46994],[77.611443,17.452909],[77.610611,17.444233],[77.604477,17.44309],[77.595901,17.44268],[77.590416,17.448103],[77.573196,17.454201],[77.572563,17.42952],[77.557777,17.43527],[77.548843,17.434921],[77.53347,17.44095],[77.523376,17.436689],[77.510147,17.427259],[77.510689,17.41254],[77.526718,17.405991],[77.533577,17.406101],[77.533577,17.398849],[77.521332,17.386332],[77.526588,17.37883],[77.528023,17.37211],[77.520813,17.362051],[77.509758,17.35927],[77.499123,17.354071],[77.482613,17.35446],[77.474472,17.359171],[77.472412,17.363178],[77.475342,17.368151],[77.479317,17.369612],[77.451599,17.370491],[77.449883,17.363062],[77.449768,17.350048],[77.456352,17.34499],[77.452507,17.32793],[77.45137,17.32723],[77.449638,17.314899],[77.440437,17.29781],[77.437767,17.29669],[77.434021,17.28826],[77.446999,17.28883],[77.452797,17.286631],[77.454506,17.27589],[77.380356,17.21977],[77.391487,17.192369],[77.37075,17.190071],[77.36837,17.176481],[77.363548,17.169481],[77.364906,17.164949],[77.359993,17.161621],[77.366867,17.151331],[77.37542,17.148701],[77.376328,17.13789],[77.462639,17.104071],[77.49939,17.00732],[77.478371,16.99025],[77.47998,16.97517],[77.479187,16.968033],[77.464073,16.95269],[77.464302,16.9398],[77.465973,16.93457],[77.463547,16.929041],[77.467873,16.924198],[77.467743,16.91711],[77.4534,16.909033],[77.460396,16.84411],[77.456627,16.82375],[77.462723,16.80452],[77.465759,16.800831],[77.471756,16.796289],[77.471626,16.785181],[77.471138,16.779131],[77.467339,16.7766],[77.444542,16.780043],[77.43528,16.77762],[77.43721,16.76313],[77.423416,16.714531],[77.42543,16.71176],[77.430008,16.7117],[77.433258,16.70911],[77.43737,16.707548],[77.445412,16.7138],[77.448456,16.713579],[77.456276,16.71069],[77.461037,16.713161],[77.466797,16.711941],[77.468773,16.70871],[77.467461,16.702379],[77.467506,16.6968],[77.465042,16.678282],[77.446426,16.67416],[77.437157,16.66658],[77.416573,16.662811],[77.428093,16.65008],[77.430267,16.64473],[77.436226,16.64253],[77.432938,16.637638],[77.444061,16.635792],[77.448517,16.63883],[77.454781,16.644871],[77.461418,16.64883],[77.469391,16.646912],[77.471336,16.643532],[77.465866,16.635941],[77.461327,16.624781],[77.455566,16.62001],[77.45388,16.60742],[77.463631,16.604811],[77.464676,16.597441],[77.464203,16.59514],[77.460342,16.595551],[77.458778,16.592051],[77.461342,16.590658],[77.464188,16.587191],[77.464172,16.584209],[77.45639,16.580999],[77.44326,16.58206],[77.436729,16.581209],[77.420959,16.56517],[77.415321,16.51783],[77.41198,16.513811],[77.400612,16.515951],[77.381157,16.511539],[77.379082,16.510721],[77.372902,16.50602],[77.369087,16.50211],[77.366287,16.48411],[77.35817,16.48315],[77.351631,16.48332],[77.3479,16.485518],[77.34362,16.48488],[77.343658,16.482059],[77.329956,16.480692],[77.324409,16.48093],[77.251511,16.467901],[77.264389,16.430052],[77.269257,16.42308],[77.274757,16.41774],[77.278206,16.410709],[77.28466,16.403],[77.294579,16.399603],[77.306969,16.39402],[77.332733,16.3883],[77.342949,16.379721],[77.352539,16.37661],[77.373199,16.379921],[77.388138,16.371799],[77.411743,16.36268],[77.422203,16.362843],[77.42778,16.36508],[77.43811,16.37443],[77.461311,16.375441],[77.481377,16.377769],[77.510147,16.37018],[77.51886,16.37011],[77.535156,16.35294],[77.584389,16.328041],[77.586639,16.32045],[77.590843,16.311979],[77.590996,16.304611],[77.588356,16.29565],[77.580681,16.28606],[77.564987,16.29771],[77.524422,16.269781],[77.519333,16.270882],[77.513092,16.27072],[77.501228,16.267811],[77.487556,16.249821],[77.495323,16.213001],[77.493698,16.206171],[77.494942,16.195351],[77.494919,16.18712],[77.488373,16.17868],[77.483627,16.15855],[77.486671,16.115761],[77.502937,16.073233],[77.499527,16.05426],[77.490723,16.03063],[77.510109,16.002251],[77.5084,15.99583],[77.505493,15.978762],[77.505516,15.972669],[77.50901,15.967441],[77.514877,15.963152],[77.5159,15.957461],[77.51458,15.94343],[77.509453,15.92086],[77.497322,15.9263],[77.483322,15.92806],[77.46698,15.927581],[77.426422,15.942279],[77.407631,15.935652],[77.3927,15.936762],[77.385597,15.934451],[77.376221,15.93325],[77.368141,15.936041],[77.353607,15.943702],[77.282448,15.947362],[77.248917,15.957741],[77.180626,15.950063],[77.1707,15.94555],[77.157127,15.944481],[77.143433,15.9406],[77.129936,15.930391],[77.104607,15.924532],[77.090057,15.91787],[77.076797,15.90974],[77.065956,15.899311],[77.052452,15.876283],[77.041046,15.863959],[77.033188,15.853081],[77.02903,15.844901],[77.02227,15.83178],[77.024422,15.82949],[77.028152,15.82559],[77.038368,15.82551],[77.041542,15.821661],[77.049919,15.820143],[77.052261,15.824339],[77.063889,15.82317],[77.061516,15.797921],[77.062477,15.778391],[77.053726,15.76365],[77.049721,15.764101],[77.048508,15.76076],[77.053169,15.75888],[77.05172,15.75013],[77.046692,15.751331],[77.047089,15.725012],[77.076271,15.721411],[77.084366,15.70896],[77.075928,15.690879],[77.100838,15.67888],[77.110466,15.671263],[77.119057,15.662089],[77.124977,15.659051],[77.120926,15.637201],[77.116203,15.62511],[77.081436,15.652841],[77.027107,15.62935],[77.023712,15.576382],[77.028862,15.525122],[77.028748,15.50856],[77.026596,15.49999],[76.996033,15.499731],[76.990852,15.501071],[76.981651,15.50477],[76.971893,15.506331],[76.97039,15.490922],[76.976082,15.482013],[76.996002,15.46746],[77.00074,15.461701],[77.002037,15.455381],[77.006096,15.448231],[77.015282,15.44107],[77.023842,15.438561],[77.027397,15.435181],[77.030487,15.426331],[77.031006,15.41834],[77.028542,15.401302],[77.033257,15.39626],[77.041008,15.39151],[77.043823,15.383741],[77.04229,15.3748],[77.038033,15.358782],[77.062897,15.33791],[77.063148,15.32808],[77.061577,15.32186],[77.069092,15.319471],[77.099297,15.326621],[77.109688,15.327282],[77.110237,15.32073],[77.113426,15.31912],[77.115417,15.28985],[77.147911,15.28567],[77.14138,15.218132],[77.158157,15.19382],[77.164482,15.16847],[77.1632,15.161331],[77.158791,15.157869],[77.159286,15.152121],[77.157707,15.148951],[77.145493,15.150701],[77.136971,15.149252],[77.13208,15.142681],[77.135361,15.13601],[77.152763,15.131621],[77.154037,15.120521],[77.147713,15.10733],[77.139389,15.099881],[77.127609,15.093641],[77.125526,15.06821],[77.118393,15.050631],[77.116066,15.040102],[77.11161,15.03813],[77.109573,15.028569],[77.101677,15.027341],[77.090782,15.027722],[77.088257,15.023038],[77.082069,15.02229],[77.078819,15.00001],[77.06147,15.00155],[77.050926,15.00429],[77.041008,15.005482],[77.046387,15.016018],[77.04879,15.023861],[77.046883,15.029212],[77.000679,15.02959],[76.995651,15.023681],[76.983513,15.020422],[76.981781,15.010361],[76.966797,15.013169],[76.950668,15.024431],[76.942749,15.027031],[76.931671,15.026311],[76.913521,15.030951],[76.888687,15.031751],[76.876701,15.028679],[76.869751,15.04402],[76.860573,15.05671],[76.843208,15.066159],[76.83741,15.07247],[76.829437,15.074291],[76.821266,15.074852],[76.796936,15.09076],[76.783913,15.07567],[76.775742,15.069161],[76.77256,15.06512],[76.784576,15.01667],[76.779747,15.00589],[76.769531,15.000582],[76.768059,14.99564],[76.76622,14.990811],[76.765182,14.989061],[76.756989,14.982971],[76.763771,14.96987],[76.815453,14.96381],[76.827896,14.95101],[76.835876,14.959081],[76.841156,14.961171],[76.864456,14.96402],[76.86367,14.955211],[76.865479,14.9376],[76.860306,14.89119],[76.840088,14.830041],[76.833771,14.784909],[76.831367,14.784112],[76.826416,14.786981],[76.820732,14.78661],[76.817352,14.78544],[76.816711,14.782491],[76.810966,14.781431],[76.78035,14.779262],[76.781288,14.77433],[76.786423,14.761911],[76.788139,14.751841],[76.795029,14.741132],[76.798073,14.734591],[76.785538,14.707091],[76.781082,14.690471],[76.771278,14.67384],[76.76091,14.596281],[76.778152,14.579331],[76.799728,14.527732],[76.805092,14.524871],[76.810898,14.5238],[76.819733,14.52034],[76.827583,14.523059],[76.828423,14.522241],[76.832077,14.515071],[76.843933,14.50915],[76.854218,14.49888],[76.860443,14.487131],[76.863808,14.474671],[76.870201,14.46844],[76.880302,14.47053],[76.88549,14.475941],[76.894272,14.480752],[76.906517,14.484161],[76.973396,14.478281],[76.974197,14.470361],[76.964371,14.451741],[76.958588,14.445391],[76.943787,14.445102],[76.942711,14.439841],[76.944321,14.425232],[76.944679,14.40892],[76.943596,14.403261],[76.941566,14.399542],[76.936783,14.40131],[76.918968,14.41145],[76.913101,14.413552],[76.883141,14.390291],[76.878616,14.351393],[76.879097,14.34639],[76.885361,14.339591],[76.898972,14.319241],[76.94294,14.305379],[76.946701,14.300449],[76.950111,14.294029],[76.948738,14.286761],[76.943756,14.281681],[76.924858,14.272181],[76.925827,14.2644],[76.933632,14.253501],[76.935989,14.248772],[76.937843,14.240121],[76.943466,14.23631],[76.951393,14.234152],[76.982483,14.238152],[76.98938,14.236401],[76.99279,14.232989],[76.99456,14.23556],[77.00412,14.231569],[77.049629,14.239542],[77.060226,14.22416],[77.067619,14.21786],[77.07534,14.20935],[77.084869,14.20845],[77.095222,14.20948],[77.10508,14.213282],[77.109947,14.22148],[77.110466,14.23198],[77.112999,14.23992],[77.11158,14.248462],[77.115517,14.25682],[77.106926,14.261761],[77.111923,14.287531],[77.11731,14.29141],[77.125771,14.301532],[77.13192,14.330591],[77.140541,14.336111],[77.146446,14.332191],[77.152153,14.337741],[77.196358,14.3143],[77.209793,14.31301],[77.222923,14.314981],[77.231956,14.31107],[77.245087,14.31453],[77.251297,14.320602],[77.257851,14.325702],[77.273308,14.331751],[77.281143,14.331111],[77.282677,14.30228],[77.279587,14.27609],[77.359261,14.26933],[77.355408,14.23004],[77.364311,14.22331],[77.376617,14.216712],[77.383789,14.191821],[77.414879,14.203221],[77.415703,14.211962],[77.414703,14.21706],[77.409058,14.223581],[77.404793,14.248601],[77.401016,14.26041],[77.38987,14.26139],[77.375008,14.295189],[77.373863,14.30511],[77.378822,14.31708],[77.39489,14.32916],[77.409286,14.327102],[77.420723,14.321992],[77.425873,14.320811],[77.442337,14.309751],[77.442436,14.290911],[77.443626,14.277551],[77.454697,14.27219],[77.46843,14.27944],[77.479126,14.283741],[77.48439,14.27526],[77.492142,14.271281],[77.496262,14.271751],[77.499367,14.26051],[77.490082,14.227631],[77.49971,14.20447],[77.501083,14.193221],[77.504143,14.18066],[77.510353,14.17202],[77.50267,14.157121],[77.500443,14.150961],[77.488541,14.15308],[77.463333,14.16423],[77.423477,14.16508],[77.416313,14.169301],[77.409721,14.16972],[77.397453,14.1665],[77.389717,14.16526],[77.389557,14.153541],[77.382622,14.14772],[77.378731,14.13828],[77.376686,14.129601],[77.347733,14.124341],[77.346512,14.11785],[77.346512,14.11044],[77.344536,14.096011],[77.348511,14.099261],[77.352463,14.105351],[77.38974,14.11857],[77.394447,14.114641],[77.396431,14.11057],[77.395447,14.103441],[77.379662,14.090391],[77.372383,14.071852],[77.361366,14.065951],[77.358559,14.058929],[77.350121,14.053382],[77.337967,14.053831],[77.331261,14.039842],[77.326187,14.02294],[77.344063,14.01906],[77.350098,14.016451],[77.362328,14.01599],[77.383362,14.007359],[77.386513,13.974002],[77.420502,13.976871],[77.426613,13.973282],[77.430641,13.96878],[77.430901,13.961991],[77.429047,13.956382],[77.428703,13.943341],[77.422577,13.939001],[77.407707,13.9361],[77.418968,13.894909],[77.348343,13.896541],[77.343506,13.905981],[77.342613,13.912242],[77.352638,13.928451],[77.36261,13.942301],[77.362007,13.945469],[77.343742,13.950892],[77.347206,13.955352],[77.346939,13.960589],[77.353386,13.97629],[77.353783,13.982321],[77.345673,13.98558],[77.333473,13.988051],[77.33033,13.990359],[77.329773,13.993352],[77.329666,13.993352],[77.330116,13.994881],[77.324097,14.00531],[77.317009,14.015323],[77.316483,14.02146],[77.313492,14.02482],[77.303558,14.02673],[77.278511,14.006901],[77.272606,14.00802],[77.274208,14.016182],[77.271507,14.028102],[77.264519,14.026529],[77.255753,14.020959],[77.242569,14.006311],[77.194557,14.00286],[77.171387,14.008599],[77.154442,13.99061],[77.147339,13.991622],[77.139496,13.99719],[77.134346,13.998131],[77.132881,14.00421],[77.134033,14.00967],[77.127831,14.01865],[77.124687,14.034741],[77.121101,14.04218],[77.090759,14.03826],[77.076492,14.03805],[77.069527,14.039441],[77.069031,14.04719],[77.023697,14.053259],[77.023987,14.083371],[77.010437,14.09205],[77.016586,14.106092],[77.017036,14.111951],[77.016357,14.117521],[77.020271,14.122321],[77.013802,14.127401],[77.014938,14.132181],[77.016006,14.152691],[77.021057,14.16433],[77.021339,14.168399],[77.019829,14.172702],[77.014038,14.173041],[77.00605,14.174851],[76.986267,14.172531],[76.958496,14.175509],[76.953781,14.18103],[76.949081,14.18381],[76.944046,14.18832],[76.941643,14.189312],[76.93924,14.186809],[76.941536,14.17803],[76.939247,14.16771],[76.936981,14.165892],[76.922966,14.1634],[76.917183,14.157671],[76.896759,14.161901],[76.891426,14.158999],[76.889191,14.150879],[76.886917,14.13624],[76.883682,14.131032],[76.912506,14.122109],[76.91713,14.12448],[76.922417,14.12904],[76.926979,14.12721],[76.937393,14.115151],[76.942917,14.111901],[76.968086,14.07974],[76.971848,14.075711],[76.972252,14.068401],[76.975006,14.06527],[76.974213,14.05771],[76.971527,14.052391],[76.94973,14.047841],[76.943283,14.047219],[76.937973,14.0476],[76.933716,14.040671],[76.931099,14.022732],[76.94857,14.00678],[76.975182,13.99659],[76.977646,13.99386],[76.977348,13.993871],[76.985016,13.98752],[76.994377,13.981491],[76.991333,13.975812],[76.988998,13.956692],[76.995056,13.952722],[76.99942,13.95044],[77.008102,13.94737],[77.013977,13.939482],[77.0186,13.934792],[77.035843,13.925591],[77.041283,13.8974],[77.027809,13.89717],[77.017281,13.893371],[77.016617,13.88773],[77.011696,13.871441],[77.012596,13.86724],[77.012306,13.864091],[77.008026,13.862901],[77.005989,13.85009],[76.983986,13.827741],[76.97654,13.821361],[76.971558,13.818861],[76.968391,13.81439],[76.968826,13.810242],[76.980026,13.807192],[76.983719,13.80419],[76.981232,13.7858],[76.992592,13.742551],[77.001938,13.736662],[77.011421,13.732721],[77.013847,13.747472],[77.01844,13.7617],[77.019867,13.76986],[77.035187,13.769281],[77.060043,13.738861],[77.080589,13.737391],[77.079277,13.74602],[77.08036,13.753423],[77.085777,13.758111],[77.095268,13.76088],[77.110947,13.754621],[77.12352,13.750891],[77.134109,13.753031],[77.13752,13.755652],[77.146736,13.754751],[77.16658,13.754669],[77.169647,13.76137],[77.171341,13.77205],[77.154099,13.800562],[77.161942,13.815461],[77.162247,13.820741],[77.157913,13.825471],[77.145767,13.83494],[77.140457,13.83789],[77.125267,13.843011],[77.123886,13.84939],[77.130157,13.849939],[77.139389,13.85904],[77.162491,13.85698],[77.164917,13.866219],[77.161713,13.882431],[77.157021,13.891301],[77.155937,13.899812],[77.177032,13.9174],[77.182213,13.9013],[77.175133,13.861401],[77.178802,13.85984],[77.192711,13.856221],[77.208847,13.878431],[77.208122,13.860401],[77.21151,13.861419],[77.217003,13.869262],[77.220932,13.881761],[77.221893,13.888831],[77.225479,13.89547],[77.233841,13.894932],[77.240097,13.89408],[77.241562,13.888851],[77.238823,13.88151],[77.23925,13.87359],[77.240738,13.865882],[77.243736,13.860291],[77.253036,13.856121],[77.250443,13.839471],[77.255951,13.839451],[77.275146,13.842801],[77.282928,13.84098],[77.285522,13.846031],[77.296028,13.853561],[77.306931,13.85724],[77.310883,13.851131],[77.316162,13.839731],[77.320007,13.825751],[77.352203,13.844381],[77.372856,13.831289],[77.381111,13.831251],[77.389839,13.83293],[77.403931,13.831422],[77.424721,13.82669],[77.412758,13.81175],[77.413681,13.807381],[77.408203,13.80247],[77.408661,13.799252],[77.419258,13.79971],[77.41954,13.795801],[77.416893,13.79094],[77.420059,13.788961],[77.428658,13.78799],[77.45079,13.785531],[77.4524,13.780401],[77.453957,13.778042],[77.458733,13.74981],[77.462616,13.743579],[77.444817,13.695761],[77.449753,13.675791],[77.476486,13.6776],[77.479721,13.703211],[77.487343,13.706792],[77.502769,13.70441],[77.50679,13.700471],[77.507973,13.6888],[77.512329,13.68568],[77.521523,13.68787],[77.52784,13.707031],[77.527542,13.71903],[77.526596,13.72525],[77.515121,13.73704],[77.519669,13.74385],[77.529503,13.745851],[77.539513,13.74372],[77.541557,13.734932],[77.548141,13.720409],[77.56662,13.729389],[77.573631,13.72665],[77.581543,13.730572],[77.595596,13.743579],[77.604271,13.742551],[77.615646,13.728361],[77.621246,13.727402],[77.636749,13.735242],[77.633751,13.741291],[77.612648,13.74687],[77.610466,13.75544],[77.614349,13.76031],[77.649086,13.77584],[77.656593,13.776661],[77.664017,13.77587],[77.670227,13.777499],[77.671768,13.770131],[77.669792,13.76256],[77.663712,13.75226],[77.668503,13.752281],[77.684677,13.758621],[77.695526,13.761432],[77.728416,13.80174],[77.755333,13.807541],[77.769211,13.808541],[77.778488,13.812892],[77.780441,13.816691],[77.780266,13.820021],[77.777428,13.82406],[77.774101,13.831731],[77.80278,13.84067],[77.810806,13.852112],[77.827721,13.86062],[77.827248,13.8716],[77.820992,13.889232],[77.806351,13.91755],[77.808487,13.922589],[77.814232,13.931002],[77.862427,13.926801],[77.911606,13.897241],[77.929733,13.90881],[77.938858,13.92462],[77.946022,13.928431],[77.949051,13.92674],[77.95076,13.92792],[77.954269,13.93705],[77.955322,13.9419],[77.961273,13.949971],[77.966431,13.950552],[77.978577,13.947651],[77.973511,13.92423],[77.974663,13.905332],[77.978027,13.89335],[77.941841,13.871051],[77.945717,13.839802],[77.948051,13.829361],[77.948143,13.824801],[77.965782,13.82016],[77.985161,13.86167],[78.004776,13.861711],[78.015587,13.854382],[78.037827,13.85285],[78.041336,13.858051],[78.042923,13.863781],[78.041153,13.886729],[78.048317,13.88453],[78.05471,13.879352],[78.070923,13.87196],[78.074913,13.854919],[78.106041,13.853541],[78.117256,13.821772],[78.107658,13.8036],[78.115173,13.78768],[78.118233,13.7769],[78.084923,13.733492],[78.109383,13.710231],[78.109886,13.703952],[78.107216,13.698352],[78.105377,13.684401],[78.085152,13.680632],[78.064056,13.68818],[78.062607,13.6856],[78.065376,13.68006],[78.064087,13.67456],[78.060921,13.67177],[78.058342,13.66697],[78.065857,13.664491],[78.079987,13.65039],[78.107361,13.647092],[78.115891,13.645631],[78.12323,13.648901],[78.129089,13.64827],[78.146172,13.64966],[78.155762,13.64871],[78.158997,13.645171],[78.160538,13.62343],[78.165558,13.620971],[78.185837,13.62118],[78.193939,13.616159],[78.195366,13.60155],[78.193741,13.594902],[78.24968,13.574301],[78.312477,13.583502],[78.343666,13.577781],[78.361397,13.578873],[78.367096,13.5803],[78.380318,13.581309],[78.397758,13.566192],[78.386009,13.543952],[78.385468,13.53167],[78.367287,13.495172],[78.367287,13.466851],[78.363579,13.459241],[78.362556,13.452071],[78.364166,13.437911],[78.367027,13.431271],[78.365311,13.424391],[78.371277,13.391001],[78.368713,13.379811],[78.355156,13.355071],[78.383667,13.342351],[78.397377,13.332332],[78.395233,13.32257],[78.384567,13.323541],[78.375389,13.326402],[78.371292,13.332409],[78.367912,13.328489],[78.366997,13.32004],[78.382912,13.314071],[78.391251,13.30371],[78.402061,13.30738],[78.407066,13.310092],[78.41526,13.31713],[78.420776,13.319092],[78.424469,13.319101],[78.426826,13.31808],[78.42907,13.317112],[78.430313,13.307829],[78.435982,13.29835],[78.470177,13.293901],[78.50116,13.277211],[78.567169,13.271771],[78.576111,13.26713],[78.577469,13.26205],[78.572151,13.248601],[78.563217,13.238411],[78.559891,13.233372],[78.557198,13.212021],[78.56868,13.204263],[78.553261,13.189241],[78.540947,13.187251],[78.542473,13.18017],[78.546883,13.17862],[78.553497,13.179871],[78.556473,13.179842],[78.559402,13.179801],[78.563339,13.177401],[78.564728,13.174041],[78.565681,13.171751],[78.569077,13.156483],[78.565369,13.156811],[78.561256,13.155701],[78.55806,13.152342],[78.54686,13.153431],[78.53878,13.151571],[78.5327,13.142092],[78.536697,13.13693],[78.535446,13.13074],[78.521431,13.129051],[78.512917,13.120231],[78.508751,13.11959],[78.508698,13.11327],[78.511139,13.10633],[78.516197,13.10082],[78.522377,13.099662],[78.527962,13.09736],[78.514809,13.09111],[78.513809,13.084681],[78.498573,13.069791],[78.504799,13.05938],[78.504578,13.052762],[78.467049,13.041371],[78.461052,13.03201],[78.455009,13.032591],[78.451576,13.031532],[78.450607,13.02824],[78.449913,13.025811],[78.450363,13.014871],[78.455421,12.99009],[78.461426,12.97912],[78.457901,12.963242],[78.433586,12.96878],[78.425652,12.969771],[78.422653,12.9686],[78.421913,12.962749],[78.423843,12.954401],[78.427353,12.950531],[78.419777,12.946682],[78.424591,12.93821],[78.423286,12.9338],[78.420357,12.928959],[78.421356,12.92353],[78.425949,12.91713],[78.434471,12.908271],[78.456131,12.892753],[78.458336,12.879721],[78.456947,12.866059],[78.454239,12.853162],[78.452118,12.855721],[78.452667,12.865492],[78.446442,12.874732],[78.438492,12.879741],[78.438301,12.886241],[78.435707,12.88886],[78.435829,12.90067],[78.417343,12.889031],[78.378342,12.895191],[78.368683,12.90178],[78.360977,12.911619],[78.345428,12.928061],[78.340767,12.92492],[78.343987,12.918092],[78.338272,12.915751],[78.33773,12.913121],[78.338333,12.9065],[78.327187,12.889231],[78.322166,12.889601],[78.31646,12.892611],[78.313477,12.888621],[78.313286,12.879771],[78.310936,12.873831],[78.316177,12.872202],[78.321419,12.871659],[78.322716,12.87619],[78.327492,12.874041],[78.322716,12.867851],[78.321587,12.86285],[78.31105,12.865371],[78.304092,12.865761],[78.306221,12.856471],[78.303101,12.8472],[78.262627,12.85659],[78.253822,12.84959],[78.248749,12.84985],[78.244659,12.851101],[78.241096,12.847421],[78.241867,12.812331],[78.22065,12.75259],[78.120667,12.770012],[78.064568,12.83017],[78.022156,12.841221],[77.981346,12.810421],[77.958,12.836342],[77.932976,12.812921],[77.909233,12.82202],[77.927803,12.85047],[77.914368,12.873542],[77.882263,12.858399],[77.8256,12.85899],[77.801018,12.820809],[77.787933,12.781321],[77.758369,12.72932],[77.750237,12.687161],[77.703819,12.673741],[77.695473,12.651239],[77.667809,12.65064],[77.654289,12.67417],[77.59034,12.657541],[77.597816,12.62102],[77.582123,12.605089],[77.570053,12.557932],[77.578506,12.507011],[77.625206,12.477262],[77.615829,12.404881],[77.603828,12.353751],[77.568596,12.32419],[77.556099,12.29716],[77.518341,12.26953],[77.470177,12.26187],[77.465668,12.202261],[77.511307,12.183971],[77.604118,12.195162],[77.655449,12.18775],[77.726357,12.16732],[77.74025,12.12929],[77.767006,12.10914],[77.746101,12.069321],[77.720367,12.053352],[77.689453,12.00995],[77.663712,11.95296],[77.636726,11.940261],[77.573288,11.924011],[77.547997,11.93075],[77.523651,11.921481],[77.490433,11.92974],[77.475967,11.88955],[77.453926,11.890551],[77.456299,11.839122],[77.431053,11.771682],[77.412468,11.762281],[77.355156,11.778372],[77.326118,11.75894],[77.284813,11.798362],[77.241737,11.80246],[77.227051,11.78375],[77.189667,11.78282],[77.113892,11.76183],[77.096268,11.723121],[77.07589,11.723891],[77.04126,11.77759],[77.004433,11.80302],[76.944443,11.781341],[76.899689,11.783272],[76.880867,11.724591],[76.853561,11.698782],[76.830032,11.64904],[76.829697,11.629341],[76.850906,11.60183],[76.816513,11.59721],[76.751396,11.606709],[76.625656,11.603819],[76.607872,11.600442],[76.553627,11.61292],[76.540421,11.670509],[76.504211,11.698041],[76.451363,11.65512],[76.423462,11.659321],[76.402199,11.68312],[76.418991,11.7215],[76.404419,11.74985],[76.334976,11.73063],[76.310501,11.743861],[76.299957,11.776152],[76.275093,11.80076],[76.218529,11.800039],[76.203423,11.849061],[76.184036,11.863762],[76.108063,11.851181],[76.10791,11.970639],[76.072807,11.961281],[76.029587,11.932781],[75.976273,11.92497],[75.876747,11.940712],[75.824387,11.98428],[75.827522,12.00285],[75.799957,12.030291],[75.795349,12.074231],[75.762962,12.078582],[75.717056,12.06209],[75.684196,12.102241],[75.648079,12.10558],[75.635086,12.142391],[75.576843,12.15075],[75.53299,12.199091],[75.537933,12.211052],[75.482727,12.286181],[75.430733,12.292002],[75.410057,12.341341],[75.421387,12.36673],[75.378586,12.386671],[75.365601,12.407041],[75.366623,12.45166],[75.403496,12.447569],[75.424286,12.466251],[75.41449,12.496712],[75.381073,12.49149],[75.372063,12.468781],[75.340866,12.45605],[75.334846,12.490241],[75.304306,12.497512],[75.281143,12.51814],[75.27092,12.55354],[75.301491,12.599061],[75.276726,12.61166],[75.23819,12.564113],[75.214043,12.573412],[75.201431,12.625111],[75.154877,12.61958],[75.161293,12.664071],[75.112671,12.675911],[75.047806,12.660089],[75.049667,12.7147],[75.003067,12.713692],[74.991753,12.73817],[75.008606,12.760431],[75.00528,12.785492],[74.970673,12.77256],[74.954201,12.779281],[74.894531,12.7561],[74.867081,12.754452],[74.821251,12.85292],[74.797363,12.973195],[74.757919,13.150694],[74.726807,13.270141],[74.731247,13.28736],[74.714302,13.334584],[74.698196,13.352639],[74.694313,13.454031],[74.681526,13.547361],[74.661797,13.65542],[74.650696,13.667641],[74.62764,13.785973],[74.609306,13.86208],[74.570419,13.945973],[74.550415,13.948195],[74.51458,13.98625],[74.501526,14.022641],[74.487923,14.11042],[74.470695,14.183195],[74.453194,14.201528],[74.413193,14.317361],[74.396248,14.409584],[74.359573,14.501811],[74.360695,14.519862],[74.316246,14.51931],[74.311249,14.551811],[74.279861,14.610416],[74.281807,14.67792],[74.265694,14.715694],[74.237358,14.747361],[74.196526,14.724583],[74.179321,14.749861],[74.142921,14.777921],[74.110138,14.784583],[74.092636,14.80319],[74.126251,14.815972],[74.12458,14.837361],[74.097359,14.895659],[74.113083,14.91116],[74.149223,14.918521],[74.186562,14.953381],[74.204163,14.937851],[74.241676,14.94645],[74.273911,14.975222],[74.261711,14.990761],[74.302338,15.03986],[74.281067,15.10183],[74.289566,15.14313],[74.321907,15.18407],[74.302132,15.228142],[74.263519,15.241881],[74.276619,15.274449],[74.341652,15.292931],[74.323341,15.329591],[74.328369,15.367251],[74.289963,15.38122],[74.27562,15.423901],[74.282516,15.443121],[74.256332,15.48952],[74.287277,15.526],[74.254311,15.56583],[74.267471,15.617049],[74.255257,15.65421],[74.224091,15.650311],[74.175438,15.67016],[74.173431,15.652052],[74.12603,15.65029],[74.141533,15.700361],[74.134857,15.722181],[74.167671,15.74925],[74.197067,15.750221],[74.217407,15.778761],[74.243866,15.7444],[74.27401,15.75312],[74.292168,15.739311],[74.350937,15.76336],[74.375511,15.79672],[74.369156,15.812161],[74.387413,15.847112],[74.353767,15.848101],[74.36998,15.875681],[74.399193,15.87435],[74.391869,15.901159],[74.435226,15.95117],[74.463913,16.02256],[74.467957,16.0467],[74.440483,16.05702],[74.390053,16.03513],[74.370987,16.05957],[74.434593,16.11062],[74.48909,16.08732],[74.497108,16.11237],[74.490952,16.142],[74.497818,16.181339],[74.512878,16.188263],[74.508331,16.22294],[74.484123,16.246731],[74.422531,16.25745],[74.421227,16.28059],[74.391266,16.2756],[74.380066,16.293501],[74.348717,16.29147],[74.323708,16.353611],[74.342651,16.400492],[74.338867,16.452162],[74.321938,16.450041],[74.294838,16.474352],[74.276627,16.520611],[74.306923,16.529171],[74.332153,16.553699],[74.385437,16.527403],[74.403481,16.578671],[74.440819,16.598692],[74.472458,16.604811],[74.495506,16.62767],[74.551437,16.633211],[74.54985,16.59218],[74.574051,16.55197],[74.640518,16.58194],[74.694313,16.615191],[74.660507,16.637581],[74.671738,16.66353],[74.696106,16.67498],[74.698196,16.7152],[74.736618,16.715839],[74.779007,16.74859],[74.850342,16.760321],[74.854973,16.770769],[74.92382,16.769951],[74.915863,16.785681],[74.911957,16.85594],[74.948616,16.880091],[74.952843,16.906481],[75.0037,16.945827],[75.048149,16.938711],[75.094147,16.947229],[75.094711,16.92115],[75.138397,16.892921],[75.141129,16.873541],[75.171753,16.864798],[75.183197,16.842041],[75.230011,16.840919],[75.240997,16.862961],[75.282776,16.874241],[75.284622,16.95355],[75.345329,16.95252],[75.39476,16.976393],[75.431023,16.963461],[75.467911,16.985331],[75.493011,16.945181],[75.530006,16.96583],[75.570343,16.963621],[75.569916,17.00617],[75.60952,17.003111],[75.610657,16.96962],[75.645027,16.951033],[75.678421,16.963942],[75.668678,16.983219],[75.672241,17.03573],[75.647873,17.046572],[75.681076,17.07114],[75.674103,17.11355],[75.631386,17.16007],[75.630699,17.186161],[75.663879,17.213751],[75.657478,17.270571],[75.632317,17.272221],[75.605957,17.303261],[75.613106,17.342291],[75.584053,17.351341],[75.578537,17.382931],[75.615807,17.391859],[75.615433,17.422029],[75.63559,17.47751],[75.680817,17.453972],[75.691193,17.412611],[75.737038,17.4219],[75.769768,17.406841],[75.782318,17.378813],[75.811333,17.36994],[75.821991,17.41968],[75.856003,17.407682],[75.894356,17.405903],[75.893661,17.353621],[75.931152,17.32411],[76.000267,17.337749],[76.015457,17.350611],[76.063202,17.3519],[76.078743,17.33007],[76.101997,17.362261],[76.121208,17.366341],[76.163147,17.34091],[76.182907,17.356501],[76.228996,17.36323],[76.27018,17.356531],[76.275879,17.33053],[76.317207,17.329441],[76.343613,17.349932],[76.352272,17.310591],[76.381706,17.31181],[76.410637,17.347691],[76.408066,17.369289],[76.362,17.37508],[76.373177,17.43442],[76.333656,17.432293],[76.330803,17.468819],[76.350006,17.47213],[76.331673,17.59487],[76.415672,17.6042],[76.428726,17.644411],[76.48465,17.66963],[76.486366,17.71352],[76.523636,17.715231],[76.523697,17.75889],[76.559776,17.76314],[76.569427,17.703741],[76.587029,17.70789],[76.604057,17.755831],[76.626953,17.75596],[76.630653,17.729],[76.655212,17.7164],[76.663139,17.68786],[76.69236,17.705261],[76.717972,17.747869],[76.719383,17.785299],[76.739433,17.779131],[76.776283,17.799381],[76.78817,17.826471],[76.765739,17.8508],[76.737457,17.857059],[76.740677,17.89801],[76.765953,17.89843],[76.774567,17.876961],[76.853836,17.897839],[76.88118,17.893051],[76.913223,17.937208],[76.919586,17.98538],[76.917717,18.03323],[76.952057,18.03771],[76.953392,18.110111],[76.922562,18.11611],[76.954109,18.184891],[76.991463,18.186651],[76.997757,18.166849],[77.057671,18.152363],[77.108887,18.152691],[77.116333,18.167608],[77.095543,18.195101],[77.139496,18.207241],[77.157196,18.253092],[77.177841,18.281851],[77.206177,18.27796],[77.209976,18.313742],[77.227272,18.3449],[77.240227,18.408648],[77.313271,18.439381],[77.36441,18.42985],[77.369751,18.400709],[77.400497,18.3978],[77.39283,18.340549],[77.362526,18.30829],[77.407806,18.299561],[77.465393,18.25996],[77.512642,18.281981],[77.519783,18.307369],[77.549957,18.291349]]]},"properties":{"ID_0":105,"ISO":"IN-KA","NAME_0":"India","ID_1":17,"NAME_1":"Karnataka"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[76.423462,11.659321],[76.421288,11.6251],[76.380066,11.622419],[76.370697,11.59347],[76.297897,11.564331],[76.270973,11.592909],[76.225746,11.56444],[76.2332,11.51868],[76.257927,11.473223],[76.278061,11.474531],[76.320908,11.444699],[76.333687,11.458711],[76.361481,11.447961],[76.448387,11.381419],[76.5382,11.35159],[76.539787,11.320951],[76.513527,11.26196],[76.446388,11.230461],[76.442879,11.200091],[76.506012,11.20198],[76.521233,11.19027],[76.577782,11.196841],[76.623039,11.185671],[76.696968,11.231331],[76.726547,11.20647],[76.721153,11.184511],[76.686012,11.157701],[76.696678,11.132681],[76.740608,11.10991],[76.745728,11.083921],[76.734497,11.06389],[76.756973,11.024591],[76.712051,11.032451],[76.690407,11.0175],[76.677773,10.979701],[76.660446,10.96046],[76.652786,10.91996],[76.732689,10.88098],[76.772987,10.881641],[76.817558,10.861801],[76.859993,10.799802],[76.888298,10.799882],[76.897507,10.7708],[76.875046,10.70672],[76.855072,10.6724],[76.870163,10.6641],[76.87262,10.629432],[76.804993,10.626341],[76.815399,10.5883],[76.829727,10.585062],[76.817451,10.43849],[76.807327,10.41492],[76.815666,10.386531],[76.839348,10.35971],[76.819672,10.29524],[76.862068,10.28255],[76.892319,10.232671],[76.981453,10.21991],[77.038551,10.24816],[77.046097,10.27429],[77.073441,10.295792],[77.114258,10.31056],[77.162956,10.346281],[77.22216,10.340301],[77.214493,10.305801],[77.250549,10.253751],[77.251221,10.224361],[77.280449,10.207252],[77.264412,10.17974],[77.261017,10.128692],[77.230507,10.12012],[77.188141,10.095652],[77.248932,10.015811],[77.240707,10.002891],[77.261421,9.963721],[77.221916,9.92282],[77.199112,9.865981],[77.22374,9.842961],[77.218987,9.813251],[77.233986,9.78852],[77.209816,9.779941],[77.208229,9.72167],[77.189926,9.71551],[77.191689,9.686182],[77.165657,9.64823],[77.155502,9.601501],[77.185966,9.605922],[77.222809,9.57279],[77.261139,9.56668],[77.304306,9.593041],[77.350571,9.54026],[77.350548,9.526292],[77.396233,9.496542],[77.372238,9.445271],[77.351608,9.449701],[77.321678,9.40565],[77.32061,9.35109],[77.266823,9.29088],[77.259499,9.224411],[77.250267,9.19024],[77.251778,9.143041],[77.232582,9.117911],[77.195862,9.088422],[77.180191,9.044801],[77.153763,9.03656],[77.132179,9.01185],[77.180168,8.94702],[77.206253,8.893182],[77.239868,8.868061],[77.247047,8.83188],[77.217361,8.79703],[77.214676,8.775761],[77.176521,8.735021],[77.179291,8.699619],[77.198479,8.6411],[77.228279,8.612901],[77.26516,8.53745],[77.247543,8.50138],[77.222557,8.488321],[77.190918,8.488191],[77.209518,8.437719],[77.188683,8.434741],[77.179779,8.409091],[77.153687,8.377441],[77.149773,8.321942],[77.121948,8.322942],[77.090698,8.29747],[77.016251,8.35653],[76.978752,8.381527],[76.963196,8.417362],[76.865135,8.535973],[76.704582,8.73431],[76.670692,8.785142],[76.619308,8.85043],[76.580971,8.880694],[76.565971,8.879306],[76.541252,8.915422],[76.518471,9.017921],[76.503471,9.046531],[76.354027,9.373191],[76.339302,9.411528],[76.310692,9.522921],[76.300415,9.585695],[76.283752,9.75013],[76.260696,9.878195],[76.237358,9.95625],[76.259865,9.962361],[76.267639,9.932082],[76.294853,9.91931],[76.288483,9.89125],[76.330406,9.87264],[76.342636,9.834859],[76.370697,9.81736],[76.359581,9.796811],[76.371803,9.741531],[76.363747,9.702918],[76.390976,9.679584],[76.390686,9.65819],[76.367081,9.610973],[76.353195,9.539861],[76.357086,9.525416],[76.500969,9.529305],[76.417923,9.559581],[76.429863,9.612083],[76.402641,9.647359],[76.41375,9.69681],[76.382637,9.704584],[76.390976,9.742085],[76.369026,9.794311],[76.386803,9.810969],[76.386253,9.840694],[76.354027,9.910695],[76.343193,9.885141],[76.319313,9.88903],[76.270142,9.989583],[76.272636,10.015421],[76.250969,10.053752],[76.259308,10.08653],[76.220413,10.127083],[76.208473,10.101527],[76.238747,10.03042],[76.24292,9.984311],[76.22403,9.977079],[76.182083,10.130695],[76.136528,10.259027],[76.113197,10.342641],[76.079582,10.427642],[76.039864,10.505417],[76.037361,10.532361],[76.017357,10.550141],[75.910141,10.79236],[75.876816,10.944028],[75.833191,11.104862],[75.802361,11.163192],[75.74736,11.31903],[75.702362,11.416812],[75.681252,11.449861],[75.617928,11.48875],[75.574028,11.608471],[75.529861,11.704582],[75.473473,11.762921],[75.453751,11.770139],[75.44236,11.797361],[75.405136,11.838194],[75.367638,11.85181],[75.300697,11.939862],[75.290703,11.986252],[75.311668,12.049306],[75.296173,12.059241],[75.328178,12.10728],[75.339882,12.098251],[75.368538,12.121261],[75.335228,12.144002],[75.277817,12.10177],[75.236603,12.11023],[75.22113,12.100951],[75.230698,12.02414],[75.204582,12.004861],[75.185417,12.040417],[75.171249,12.115141],[75.13736,12.185416],[75.11792,12.205691],[75.072083,12.319862],[75.045143,12.379031],[75.013191,12.420691],[74.973473,12.498749],[74.910416,12.655973],[74.867081,12.754452],[74.894531,12.7561],[74.954201,12.779281],[74.970673,12.77256],[75.00528,12.785492],[75.008606,12.760431],[74.991753,12.73817],[75.003067,12.713692],[75.049667,12.7147],[75.047806,12.660089],[75.112671,12.675911],[75.161293,12.664071],[75.154877,12.61958],[75.201431,12.625111],[75.214043,12.573412],[75.23819,12.564113],[75.276726,12.61166],[75.301491,12.599061],[75.27092,12.55354],[75.281143,12.51814],[75.304306,12.497512],[75.334846,12.490241],[75.340866,12.45605],[75.372063,12.468781],[75.381073,12.49149],[75.41449,12.496712],[75.424286,12.466251],[75.403496,12.447569],[75.366623,12.45166],[75.365601,12.407041],[75.378586,12.386671],[75.421387,12.36673],[75.410057,12.341341],[75.430733,12.292002],[75.482727,12.286181],[75.537933,12.211052],[75.53299,12.199091],[75.576843,12.15075],[75.635086,12.142391],[75.648079,12.10558],[75.684196,12.102241],[75.717056,12.06209],[75.762962,12.078582],[75.795349,12.074231],[75.799957,12.030291],[75.827522,12.00285],[75.824387,11.98428],[75.876747,11.940712],[75.976273,11.92497],[76.029587,11.932781],[76.072807,11.961281],[76.10791,11.970639],[76.108063,11.851181],[76.184036,11.863762],[76.203423,11.849061],[76.218529,11.800039],[76.275093,11.80076],[76.299957,11.776152],[76.310501,11.743861],[76.334976,11.73063],[76.404419,11.74985],[76.418991,11.7215],[76.402199,11.68312],[76.423462,11.659321]]]},"properties":{"ID_0":105,"ISO":"IN-KL","NAME_0":"India","ID_1":18,"NAME_1":"Kerala"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[73.080971,8.327642],[73.069031,8.30792],[73.067085,8.285694],[73.048752,8.26654],[73.037361,8.265971],[73.064857,8.297081],[73.068459,8.309311],[73.080971,8.327642]]]},"properties":{"ID_0":105,"ISO":"IN-LD","NAME_0":"India","ID_1":19,"NAME_1":"Lakshadweep"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[82.807777,23.963058],[82.7481,23.922281],[82.701927,23.924932],[82.654739,23.90629],[82.66021,23.870338],[82.629517,23.839001],[82.585983,23.822861],[82.548218,23.8269],[82.544518,23.794189],[82.516197,23.784231],[82.485077,23.78838],[82.463509,23.810848],[82.388229,23.801371],[82.297592,23.808161],[82.255287,23.82189],[82.231529,23.807791],[82.199257,23.831921],[82.134079,23.818161],[82.045403,23.820589],[82.035156,23.84256],[82.000732,23.86314],[81.950706,23.85289],[81.916443,23.87299],[81.894096,23.844061],[81.811729,23.8095],[81.772629,23.814199],[81.726852,23.84096],[81.702682,23.8634],[81.697388,23.885962],[81.661598,23.925598],[81.607567,23.903271],[81.598442,23.85368],[81.62571,23.835821],[81.642563,23.804581],[81.638367,23.77788],[81.669327,23.757351],[81.687286,23.72135],[81.67321,23.693432],[81.649498,23.683451],[81.643127,23.660332],[81.613243,23.66098],[81.602676,23.600033],[81.569733,23.58865],[81.577072,23.55489],[81.602272,23.553673],[81.605217,23.510889],[81.631096,23.491741],[81.654533,23.531551],[81.693092,23.52334],[81.729233,23.5651],[81.756386,23.552521],[81.797562,23.548832],[81.827179,23.51129],[81.879356,23.518433],[81.916359,23.532091],[81.948936,23.49674],[81.950333,23.466061],[81.971397,23.44747],[81.970543,23.42387],[82.023247,23.410183],[82.023239,23.38376],[82.09848,23.397701],[82.1045,23.363178],[82.137833,23.361841],[82.16008,23.33219],[82.187508,23.322229],[82.189461,23.28459],[82.169823,23.27018],[82.142487,23.227701],[82.137321,23.16497],[82.151077,23.141741],[82.115883,23.1038],[82.061371,23.11594],[82.028252,23.081661],[81.979973,23.085543],[81.938103,23.07781],[81.918427,23.040979],[81.937218,23.009493],[81.940247,22.95709],[81.913857,22.948221],[81.861107,22.89395],[81.831429,22.882971],[81.769402,22.873508],[81.760857,22.834339],[81.784279,22.766621],[81.746613,22.726488],[81.765976,22.676121],[81.736938,22.66905],[81.698868,22.645882],[81.678596,22.64888],[81.641388,22.60754],[81.649422,22.57608],[81.608963,22.53644],[81.563057,22.551008],[81.556931,22.532162],[81.515419,22.536751],[81.479858,22.493311],[81.446243,22.495861],[81.417587,22.473631],[81.414116,22.448521],[81.38887,22.444839],[81.378738,22.505301],[81.322937,22.52433],[81.31591,22.48971],[81.280197,22.498821],[81.223557,22.451609],[81.194191,22.46208],[81.170662,22.488001],[81.148079,22.455851],[81.109993,22.44112],[81.100937,22.38324],[81.115662,22.34409],[81.113846,22.29438],[81.084679,22.24675],[81.048866,22.24419],[81.019447,22.229191],[81.025757,22.197691],[81.015793,22.13271],[80.986702,22.130871],[81.003952,22.094452],[80.999161,22.061501],[80.963417,22.058361],[80.965538,22.08198],[80.950523,22.11301],[80.917152,22.12089],[80.89817,22.10133],[80.87896,22.0606],[80.868599,22.011209],[80.833389,21.94664],[80.825439,21.88665],[80.839592,21.875401],[80.831703,21.80481],[80.811203,21.747492],[80.782722,21.739571],[80.7621,21.757919],[80.740051,21.756491],[80.726326,21.73103],[80.723747,21.693602],[80.707352,21.671581],[80.721657,21.61722],[80.709396,21.603981],[80.730659,21.538721],[80.721977,21.49564],[80.730217,21.472052],[80.699257,21.41412],[80.684166,21.37261],[80.656532,21.330772],[80.617752,21.319172],[80.593163,21.324791],[80.564171,21.35787],[80.519432,21.38957],[80.448318,21.40233],[80.442947,21.373798],[80.399353,21.380491],[80.389076,21.407379],[80.411308,21.438202],[80.400963,21.465431],[80.375328,21.49114],[80.370613,21.520969],[80.338013,21.53875],[80.320183,21.57358],[80.295372,21.57548],[80.260223,21.62015],[80.220589,21.619631],[80.188217,21.634201],[80.143921,21.604973],[80.118576,21.608898],[80.063568,21.554581],[80.026176,21.55665],[79.993553,21.534712],[79.971779,21.55512],[79.927193,21.55373],[79.915817,21.524481],[79.857079,21.530922],[79.825043,21.546721],[79.791817,21.581409],[79.73262,21.60253],[79.65062,21.558809],[79.608711,21.555931],[79.576149,21.54336],[79.536621,21.544218],[79.53952,21.565201],[79.505821,21.590281],[79.512459,21.62648],[79.488579,21.674122],[79.458511,21.687323],[79.4114,21.690968],[79.394737,21.674591],[79.284813,21.693911],[79.257668,21.717541],[79.234772,21.715208],[79.21817,21.681261],[79.216606,21.65019],[79.147827,21.660521],[79.14109,21.63953],[79.104111,21.60936],[79.009552,21.6015],[78.974762,21.617559],[78.940346,21.59376],[78.913239,21.59236],[78.91272,21.563129],[78.931831,21.4874],[78.895767,21.500568],[78.885376,21.485592],[78.844177,21.489971],[78.76104,21.489759],[78.72419,21.46438],[78.684067,21.48196],[78.620972,21.477541],[78.584869,21.486881],[78.560043,21.51461],[78.50856,21.528433],[78.4804,21.506121],[78.438583,21.503759],[78.422256,21.563721],[78.422562,21.60195],[78.377632,21.5956],[78.360962,21.578299],[78.336777,21.590521],[78.318741,21.575588],[78.271072,21.59296],[78.269257,21.570711],[78.215477,21.55373],[78.180946,21.558681],[78.169342,21.498501],[78.063713,21.43886],[78.043457,21.435032],[77.980278,21.4028],[77.89904,21.37842],[77.79937,21.4123],[77.793449,21.390739],[77.74649,21.384211],[77.73835,21.366631],[77.70433,21.377701],[77.670006,21.372923],[77.645897,21.39336],[77.600647,21.38912],[77.601486,21.365271],[77.548409,21.381229],[77.487022,21.37775],[77.469307,21.4569],[77.438309,21.472919],[77.420799,21.516281],[77.423508,21.542561],[77.457512,21.55657],[77.504356,21.554668],[77.566986,21.529751],[77.607117,21.54277],[77.572197,21.587671],[77.558563,21.668673],[77.542183,21.701031],[77.496872,21.749201],[77.449883,21.763411],[77.401131,21.75618],[77.337387,21.76156],[77.277077,21.759809],[77.286903,21.736443],[77.258026,21.71583],[77.224602,21.71789],[77.20742,21.69401],[77.121101,21.725349],[77.069038,21.721809],[77.059486,21.7094],[76.997276,21.68161],[76.891747,21.6007],[76.85215,21.61503],[76.833549,21.593069],[76.795349,21.59754],[76.780243,21.562468],[76.785538,21.535301],[76.762932,21.52265],[76.791801,21.489891],[76.784187,21.46649],[76.743393,21.44314],[76.732086,21.40881],[76.668411,21.369471],[76.625839,21.329741],[76.661072,21.282421],[76.623367,21.192659],[76.559387,21.205811],[76.529198,21.189293],[76.491173,21.197821],[76.474892,21.152071],[76.45269,21.114868],[76.411827,21.107269],[76.376373,21.077311],[76.281769,21.07531],[76.269249,21.092951],[76.183861,21.089951],[76.135666,21.126211],[76.11396,21.16464],[76.127419,21.177919],[76.166847,21.170721],[76.159218,21.259142],[76.129257,21.29751],[76.098671,21.373928],[76.052376,21.352701],[76.034599,21.365271],[75.984879,21.377178],[75.968742,21.39397],[75.916542,21.389828],[75.888107,21.39963],[75.832626,21.383301],[75.801407,21.39015],[75.758942,21.38549],[75.706757,21.391321],[75.673416,21.38035],[75.629463,21.381229],[75.619446,21.393461],[75.548149,21.37249],[75.524582,21.387161],[75.468407,21.394201],[75.384483,21.38559],[75.303162,21.395191],[75.301849,21.414831],[75.253998,21.406139],[75.219856,21.41087],[75.129776,21.44928],[75.106667,21.469629],[75.089996,21.514332],[75.057747,21.564939],[75.017838,21.572611],[74.980682,21.59602],[74.925957,21.610653],[74.902763,21.629801],[74.866302,21.631121],[74.825241,21.61021],[74.723976,21.623991],[74.656433,21.65427],[74.588997,21.66527],[74.560547,21.68799],[74.550987,21.719393],[74.511253,21.72765],[74.517006,21.767231],[74.503647,21.807182],[74.511818,21.82123],[74.517761,21.88624],[74.527496,21.908781],[74.493401,21.954491],[74.451706,21.967501],[74.435547,22.030998],[74.388313,22.02018],[74.345558,21.97522],[74.301361,21.966801],[74.292259,21.93725],[74.203621,21.9254],[74.146019,21.95406],[74.153847,21.98642],[74.100342,22.001593],[74.101189,22.01828],[74.137833,22.053501],[74.162987,22.06057],[74.170212,22.10133],[74.132591,22.096321],[74.12278,22.2129],[74.075783,22.221878],[74.07827,22.268248],[74.059151,22.285749],[74.071983,22.360241],[74.111961,22.371613],[74.134293,22.332331],[74.191063,22.32193],[74.198349,22.343019],[74.240196,22.37682],[74.273949,22.39304],[74.264122,22.424641],[74.237259,22.439341],[74.155983,22.439873],[74.123001,22.420811],[74.105072,22.433411],[74.100243,22.469233],[74.078087,22.465643],[74.085266,22.508518],[74.043587,22.516821],[74.04464,22.542122],[74.08429,22.549551],[74.127609,22.52438],[74.157539,22.53219],[74.213837,22.56744],[74.236656,22.613871],[74.278221,22.647661],[74.363953,22.63652],[74.384186,22.64357],[74.403076,22.730709],[74.439232,22.785551],[74.439186,22.809441],[74.464943,22.815081],[74.47892,22.858641],[74.462822,22.91346],[74.418701,22.918371],[74.381607,22.909908],[74.341637,22.964691],[74.370796,22.980053],[74.349197,23.030241],[74.322777,23.062691],[74.347878,23.070801],[74.39119,23.112],[74.433167,23.10568],[74.467247,23.085258],[74.512283,23.088831],[74.535439,23.101513],[74.5457,23.132071],[74.608063,23.144821],[74.669159,23.20149],[74.715523,23.19467],[74.745697,23.212111],[74.701149,23.272142],[74.673126,23.27487],[74.632141,23.263401],[74.615303,23.284601],[74.548569,23.28676],[74.533661,23.32303],[74.54583,23.363798],[74.572411,23.383329],[74.573143,23.419243],[74.598457,23.42976],[74.61338,23.461361],[74.658943,23.466801],[74.669327,23.483892],[74.742371,23.51948],[74.774063,23.543303],[74.802887,23.534052],[74.851479,23.5574],[74.886093,23.606428],[74.906029,23.622952],[74.93972,23.630371],[74.924217,23.668501],[74.92424,23.719151],[74.940567,23.734871],[74.92762,23.79833],[74.910339,23.80084],[74.915817,23.845671],[74.90519,23.868111],[74.914619,23.91247],[74.94146,23.96052],[74.963348,23.973671],[74.972229,24.00363],[74.992989,24.029701],[74.959518,24.11009],[74.93914,24.121111],[74.927513,24.15715],[74.900337,24.174301],[74.880173,24.21648],[74.905853,24.233721],[74.875427,24.278021],[74.853317,24.269979],[74.815163,24.27701],[74.772537,24.27198],[74.757462,24.296221],[74.78363,24.316801],[74.784622,24.367361],[74.812317,24.409151],[74.857498,24.451502],[74.814507,24.49221],[74.757317,24.488823],[74.715706,24.522831],[74.747711,24.53624],[74.756981,24.56365],[74.747971,24.596809],[74.790123,24.61076],[74.783447,24.636761],[74.817108,24.671671],[74.776062,24.68606],[74.789658,24.726631],[74.780052,24.742748],[74.818542,24.765341],[74.873436,24.669481],[74.902466,24.656311],[74.943878,24.662283],[74.964111,24.700468],[74.999893,24.708488],[74.993431,24.752729],[75.020233,24.752768],[75.012932,24.79381],[74.970383,24.790861],[74.905182,24.797461],[74.858566,24.813061],[74.855888,24.853201],[74.827133,24.89913],[74.824219,24.9401],[74.83271,24.967451],[74.862099,24.965839],[74.867203,24.936941],[74.900543,24.939741],[74.912521,24.899099],[74.944809,24.877911],[75.012611,24.874081],[75.043388,24.859228],[75.073532,24.88731],[75.118866,24.88904],[75.115707,24.965391],[75.138023,24.986362],[75.164398,24.991661],[75.154709,25.02887],[75.173782,25.053793],[75.200562,25.034498],[75.310486,25.04608],[75.349617,25.041731],[75.351547,25.02516],[75.318947,25.00651],[75.337486,24.9631],[75.317543,24.907221],[75.287903,24.926262],[75.267029,24.914211],[75.261452,24.88966],[75.311302,24.869459],[75.325966,24.887009],[75.371971,24.877981],[75.424217,24.892752],[75.417099,24.863901],[75.300491,24.815243],[75.283821,24.850019],[75.241692,24.860941],[75.249947,24.895691],[75.201317,24.884201],[75.246712,24.82184],[75.217377,24.820461],[75.192299,24.78875],[75.195618,24.76001],[75.228409,24.735102],[75.451897,24.693218],[75.483467,24.69762],[75.53508,24.720018],[75.581902,24.7227],[75.613327,24.688421],[75.659187,24.7017],[75.680046,24.727831],[75.741806,24.760361],[75.786186,24.76553],[75.838753,24.72987],[75.828186,24.668222],[75.843903,24.66935],[75.852547,24.614321],[75.874077,24.607111],[75.884361,24.581739],[75.911072,24.577051],[75.907036,24.550461],[75.925018,24.5383],[75.905472,24.505308],[75.903389,24.446131],[75.861206,24.42333],[75.829002,24.42252],[75.786087,24.45842],[75.735817,24.403433],[75.737923,24.347971],[75.765091,24.310659],[75.797417,24.314348],[75.812996,24.300678],[75.805336,24.229719],[75.773506,24.220892],[75.743492,24.139601],[75.778687,24.13467],[75.789612,24.1098],[75.830643,24.107929],[75.829506,24.071953],[75.779617,24.06208],[75.780243,24.036261],[75.762039,23.997952],[75.700409,23.969061],[75.669197,24.033543],[75.634743,23.99983],[75.569321,23.999371],[75.571716,24.017401],[75.531921,24.031481],[75.514381,24.048733],[75.491768,24.004551],[75.464767,23.980728],[75.456497,23.92074],[75.487427,23.910843],[75.504097,23.891911],[75.562462,23.858143],[75.566032,23.815689],[75.582527,23.80036],[75.616623,23.805971],[75.649307,23.799351],[75.687347,23.773331],[75.698288,23.788],[75.690247,23.819611],[75.722168,23.826912],[75.727547,23.86451],[75.698128,23.877108],[75.702332,23.904051],[75.728218,23.9021],[75.759171,23.881329],[75.779922,23.8547],[75.853416,23.894201],[75.878616,23.88456],[75.975822,23.93294],[75.980186,23.97438],[75.960243,23.997461],[75.960182,24.02537],[75.990089,24.030069],[76.026726,24.050463],[76.04335,24.073961],[76.134697,24.095289],[76.136887,24.131338],[76.12336,24.2054],[76.154457,24.243761],[76.142227,24.281151],[76.169228,24.296091],[76.185486,24.331511],[76.20623,24.310921],[76.194656,24.2848],[76.206223,24.23275],[76.276398,24.216511],[76.317879,24.251131],[76.352997,24.248911],[76.411797,24.209551],[76.423607,24.22695],[76.463432,24.22892],[76.508369,24.200232],[76.523193,24.163179],[76.579727,24.180679],[76.571487,24.213478],[76.613953,24.24218],[76.616348,24.26284],[76.678749,24.270639],[76.702499,24.2488],[76.67421,24.19343],[76.720711,24.16172],[76.76886,24.16468],[76.790932,24.125759],[76.827728,24.125591],[76.856003,24.138941],[76.89994,24.131111],[76.916138,24.188721],[76.943863,24.198851],[76.874199,24.27109],[76.836967,24.360708],[76.84906,24.36821],[76.8424,24.408508],[76.851326,24.469109],[76.81459,24.53437],[76.846046,24.55102],[76.899826,24.54781],[76.918381,24.535601],[76.91465,24.487659],[76.960167,24.46023],[76.992523,24.47345],[77.050308,24.526531],[77.064339,24.564121],[77.059456,24.64242],[77.019249,24.714951],[76.971977,24.73167],[76.963303,24.75955],[76.921692,24.748831],[76.845016,24.752138],[76.846741,24.769993],[76.802292,24.826571],[76.837502,24.841061],[76.895042,24.83951],[76.926521,24.849783],[76.948921,24.872869],[76.913857,24.88788],[76.924637,24.910372],[76.872063,24.954601],[76.869316,25.011103],[76.901062,25.03404],[76.968666,25.055941],[76.983673,25.07756],[77.077232,25.057989],[77.114456,25.06909],[77.128273,25.08905],[77.157707,25.08828],[77.169579,25.11372],[77.220833,25.110243],[77.26226,25.119261],[77.302856,25.08387],[77.348679,25.097792],[77.386673,25.12196],[77.390709,25.18819],[77.417992,25.193029],[77.406403,25.226292],[77.362717,25.250071],[77.349663,25.27177],[77.374802,25.305851],[77.344261,25.38793],[77.361343,25.41296],[77.305298,25.436411],[77.220261,25.373428],[77.218033,25.33131],[77.190552,25.311661],[77.153557,25.31325],[77.115768,25.33506],[77.07547,25.339691],[77.03936,25.32505],[77.024193,25.30109],[76.95874,25.29718],[76.952721,25.278551],[76.893227,25.322401],[76.842979,25.330542],[76.772827,25.31591],[76.766731,25.336231],[76.740402,25.34779],[76.681076,25.34548],[76.636292,25.380331],[76.602547,25.388981],[76.588966,25.43149],[76.564278,25.442402],[76.559593,25.473261],[76.520309,25.52993],[76.509781,25.579821],[76.514732,25.633678],[76.499428,25.64834],[76.510803,25.672838],[76.477783,25.695061],[76.482391,25.71813],[76.52655,25.731043],[76.529312,25.797972],[76.597473,25.87648],[76.631683,25.87524],[76.641418,25.90625],[76.674362,25.9118],[76.73333,25.90255],[76.762413,25.92207],[76.760651,25.94253],[76.7948,25.944221],[76.818886,25.971251],[76.84024,26.01129],[76.830406,26.029591],[76.870422,26.05645],[76.887779,26.093323],[76.938713,26.106079],[76.994476,26.137781],[77.02388,26.17617],[77.096443,26.19544],[77.113647,26.231359],[77.16494,26.244501],[77.194473,26.235971],[77.267036,26.276171],[77.308167,26.315001],[77.318047,26.34638],[77.366249,26.371519],[77.432426,26.365],[77.427719,26.40691],[77.522881,26.414911],[77.551483,26.440559],[77.599083,26.454222],[77.626717,26.48299],[77.671028,26.509729],[77.69503,26.50087],[77.726982,26.515362],[77.739357,26.54269],[77.767006,26.553478],[77.812996,26.55481],[77.820412,26.599838],[77.842438,26.615179],[77.879387,26.620291],[77.903603,26.66618],[77.939903,26.662708],[77.968796,26.67664],[77.992218,26.702641],[78.088058,26.686661],[78.089149,26.73811],[78.111679,26.749651],[78.095383,26.789431],[78.119026,26.802561],[78.145813,26.791731],[78.179367,26.801161],[78.16095,26.82704],[78.209793,26.83609],[78.255608,26.82029],[78.282066,26.864088],[78.362503,26.87133],[78.385597,26.82794],[78.425873,26.832319],[78.458138,26.795233],[78.515572,26.78511],[78.565849,26.75769],[78.601967,26.75606],[78.620438,26.7752],[78.659019,26.76923],[78.677361,26.792381],[78.715347,26.800213],[78.741081,26.792521],[78.762146,26.76683],[78.811386,26.765471],[78.864929,26.70467],[78.903946,26.713381],[78.948143,26.696741],[78.947891,26.662628],[78.983887,26.685711],[79.001167,26.673901],[78.98687,26.647367],[79.005661,26.61047],[78.982117,26.594179],[78.997986,26.55094],[79.033096,26.53599],[79.060936,26.5033],[79.047073,26.46142],[79.069069,26.44652],[79.092873,26.4573],[79.126762,26.444811],[79.117233,26.417122],[79.080727,26.4055],[79.089119,26.377131],[79.116623,26.353573],[79.126587,26.316031],[79.097977,26.31465],[79.07769,26.287218],[79.057892,26.2838],[79.04055,26.22928],[79.002327,26.19677],[79.000717,26.15498],[78.960327,26.15427],[78.944389,26.13752],[79.003151,26.081793],[78.982483,26.073759],[78.944328,26.036951],[78.943169,25.99069],[78.915329,25.949369],[78.876381,25.915661],[78.883713,25.876471],[78.857826,25.872011],[78.843979,25.84531],[78.865753,25.834351],[78.863319,25.80208],[78.815826,25.831141],[78.775787,25.761499],[78.746819,25.74909],[78.76075,25.720791],[78.791237,25.710541],[78.811333,25.67448],[78.811249,25.645451],[78.794548,25.61755],[78.677017,25.594101],[78.648621,25.565639],[78.60421,25.58729],[78.581192,25.564308],[78.54715,25.564701],[78.481087,25.580433],[78.44915,25.55274],[78.426132,25.561451],[78.408661,25.532902],[78.42157,25.47971],[78.385689,25.454161],[78.33519,25.431051],[78.332489,25.404551],[78.294228,25.36762],[78.323196,25.355268],[78.331291,25.33672],[78.308029,25.310989],[78.345161,25.297941],[78.362221,25.26543],[78.355217,25.249969],[78.385361,25.19516],[78.441986,25.157351],[78.424683,25.124691],[78.389687,25.126991],[78.366997,25.104521],[78.325249,25.084061],[78.338066,25.02734],[78.327538,24.999559],[78.289597,24.96814],[78.213913,24.915571],[78.199738,24.896231],[78.170448,24.885269],[78.165329,24.848171],[78.186897,24.84281],[78.225822,24.776571],[78.226318,24.73625],[78.267998,24.6696],[78.256691,24.648621],[78.269852,24.615381],[78.255318,24.552299],[78.224182,24.54134],[78.239632,24.48946],[78.263237,24.483082],[78.266876,24.447371],[78.362572,24.378151],[78.326576,24.338469],[78.3414,24.30781],[78.385666,24.27305],[78.434776,24.297661],[78.440292,24.325531],[78.467796,24.33934],[78.475327,24.36743],[78.499939,24.394331],[78.552582,24.360628],[78.578438,24.35708],[78.61734,24.296122],[78.654449,24.273741],[78.669121,24.24502],[78.69886,24.23448],[78.72654,24.252701],[78.754288,24.24725],[78.784599,24.185141],[78.810501,24.208521],[78.858208,24.213541],[78.88105,24.228889],[78.879097,24.254011],[78.909851,24.272921],[78.907761,24.301231],[78.96814,24.356951],[78.967171,24.373583],[78.987778,24.427971],[78.981987,24.447241],[78.944397,24.443258],[78.912796,24.463511],[78.90094,24.488371],[78.943138,24.48488],[78.945503,24.55331],[78.913147,24.581301],[78.881721,24.6397],[78.862808,24.641121],[78.830849,24.608891],[78.801826,24.607828],[78.776901,24.59309],[78.751991,24.602463],[78.740067,24.65996],[78.772392,24.704142],[78.764549,24.794992],[78.78054,24.814972],[78.764481,24.861368],[78.696342,24.894661],[78.668396,24.902399],[78.653717,24.94422],[78.624916,24.961941],[78.64193,25.061491],[78.620323,25.091593],[78.597168,25.097872],[78.593712,25.157391],[78.561493,25.227449],[78.568581,25.25861],[78.520851,25.288038],[78.489326,25.292089],[78.454033,25.270601],[78.429817,25.29701],[78.469261,25.303322],[78.487541,25.32019],[78.525078,25.30653],[78.533592,25.330893],[78.576218,25.351931],[78.577759,25.37714],[78.603493,25.41707],[78.632507,25.43301],[78.689247,25.445351],[78.700241,25.426121],[78.65789,25.38798],[78.709763,25.376268],[78.735672,25.349192],[78.764381,25.3584],[78.758636,25.404091],[78.765373,25.430033],[78.724648,25.463308],[78.789528,25.483513],[78.853699,25.452301],[78.85717,25.46714],[78.833946,25.516001],[78.876007,25.524321],[78.885536,25.56077],[78.925682,25.559958],[78.941887,25.531151],[78.916687,25.51675],[78.935181,25.494301],[78.930038,25.46859],[78.903229,25.446938],[78.929131,25.428329],[78.960129,25.43889],[78.970222,25.42046],[78.974472,25.372561],[78.874748,25.387659],[78.837738,25.352173],[78.83329,25.331341],[78.793289,25.2931],[78.835052,25.2332],[78.845947,25.233789],[78.862289,25.283131],[78.856438,25.316959],[78.885246,25.346691],[78.931229,25.332413],[78.970276,25.291092],[78.9086,25.274361],[78.896446,25.249941],[78.872177,25.25079],[78.881622,25.215471],[78.867386,25.18996],[78.877136,25.162182],[78.924232,25.2106],[78.952843,25.220692],[78.982407,25.19915],[79.000359,25.216051],[78.972313,25.24283],[78.986771,25.27496],[79.01236,25.27404],[79.026482,25.234671],[79.056442,25.22571],[79.024597,25.186571],[79.064079,25.172491],[79.090576,25.176229],[79.119209,25.163441],[79.107811,25.1437],[79.133377,25.111061],[79.197937,25.128189],[79.23838,25.116369],[79.250603,25.161209],[79.276543,25.12026],[79.314537,25.151878],[79.283516,25.189461],[79.278023,25.21064],[79.341118,25.23049],[79.340088,25.27276],[79.31469,25.261393],[79.286461,25.281071],[79.256508,25.27947],[79.260139,25.31024],[79.294731,25.340219],[79.401886,25.279251],[79.401222,25.26236],[79.434181,25.241781],[79.442398,25.220951],[79.409576,25.208761],[79.383873,25.17028],[79.38929,25.120581],[79.436371,25.107821],[79.489876,25.08275],[79.517227,25.101788],[79.513771,25.125723],[79.550339,25.169401],[79.632851,25.13283],[79.666168,25.127121],[79.739578,25.14296],[79.827217,25.100121],[79.860588,25.156061],[79.84523,25.236551],[79.872459,25.253792],[79.8936,25.24621],[79.949219,25.265301],[79.997337,25.27013],[80.020737,25.343161],[80.070023,25.3431],[80.083298,25.355831],[80.127083,25.340618],[80.15918,25.377649],[80.187897,25.38365],[80.188828,25.406431],[80.245186,25.40489],[80.273727,25.425039],[80.309052,25.39184],[80.302628,25.35828],[80.311737,25.334209],[80.302673,25.296961],[80.340973,25.278601],[80.357712,25.251131],[80.401657,25.220951],[80.423698,25.174143],[80.386757,25.162882],[80.348618,25.140692],[80.304787,25.07551],[80.28196,25.063221],[80.266937,25.030243],[80.314102,25.00351],[80.367821,25.025431],[80.394127,25.072021],[80.440712,25.082069],[80.470177,25.044691],[80.502319,25.06286],[80.543419,25.067661],[80.578667,25.088263],[80.594589,25.155241],[80.622299,25.122021],[80.608467,25.0986],[80.641457,25.093149],[80.673569,25.054171],[80.727203,25.071821],[80.77594,25.061691],[80.775978,25.084301],[80.719009,25.104021],[80.7173,25.12892],[80.750862,25.141701],[80.818642,25.13055],[80.841888,25.16794],[80.869537,25.18866],[80.905563,25.16448],[80.864983,25.12365],[80.870651,25.071051],[80.829117,25.02998],[80.85025,25.003141],[80.818642,24.973631],[80.8022,24.94446],[80.856613,24.935951],[80.936821,24.9725],[80.952873,24.93944],[81.000023,24.94021],[81.026672,24.954969],[81.076416,24.952261],[81.0895,24.92448],[81.128166,24.89362],[81.155487,24.931971],[81.16143,24.958511],[81.206001,24.93924],[81.201698,24.995729],[81.220238,25.00724],[81.261589,25.06846],[81.245697,25.105541],[81.257957,25.11685],[81.268646,25.16519],[81.329956,25.172491],[81.349411,25.167351],[81.38903,25.124262],[81.42778,25.13361],[81.436409,25.096161],[81.483727,25.07494],[81.493141,25.110653],[81.477722,25.12109],[81.491997,25.14876],[81.518738,25.151831],[81.532539,25.185421],[81.566399,25.195749],[81.581779,25.16827],[81.619659,25.15564],[81.592117,25.136381],[81.63195,25.10327],[81.594467,25.076933],[81.621902,25.056921],[81.646843,25.075041],[81.677803,25.064678],[81.681892,25.043772],[81.716408,25.052973],[81.791656,25.01001],[81.829369,25.019333],[81.901642,24.982821],[81.910309,24.9205],[81.902657,24.88413],[81.926727,24.86079],[81.964981,24.841421],[82.00489,24.850691],[82.081871,24.822111],[82.11219,24.792261],[82.132248,24.80448],[82.159393,24.792261],[82.208717,24.79777],[82.195671,24.763748],[82.238373,24.75441],[82.24305,24.701761],[82.291893,24.66478],[82.298416,24.628012],[82.329773,24.623751],[82.360847,24.602001],[82.409172,24.59783],[82.403526,24.636162],[82.411789,24.657848],[82.401596,24.6838],[82.420151,24.705252],[82.486763,24.675501],[82.518433,24.678341],[82.529266,24.65196],[82.66555,24.699862],[82.695953,24.67572],[82.691696,24.64864],[82.7658,24.64163],[82.768257,24.597542],[82.796371,24.59976],[82.800766,24.552681],[82.746017,24.541521],[82.71611,24.55714],[82.715637,24.5133],[82.736549,24.499771],[82.72377,24.47633],[82.725723,24.426258],[82.707161,24.38518],[82.718498,24.371222],[82.760582,24.373041],[82.764137,24.292431],[82.750587,24.268131],[82.749916,24.23613],[82.726997,24.223261],[82.736137,24.16835],[82.720367,24.13899],[82.688362,24.14423],[82.657387,24.134798],[82.701363,24.097071],[82.708397,24.080761],[82.754921,24.07324],[82.745888,24.013111],[82.801468,24.001062],[82.807777,23.963058]]]},"properties":{"ID_0":105,"ISO":"IN-MP","NAME_0":"India","ID_1":20,"NAME_1":"Madhya Pradesh"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[80.656532,21.330772],[80.672737,21.31127],[80.638733,21.254782],[80.603447,21.227423],[80.561241,21.205811],[80.520737,21.203541],[80.509323,21.183479],[80.457298,21.17284],[80.435181,21.09901],[80.448502,21.04961],[80.423759,21.00959],[80.459091,20.92815],[80.535248,20.93132],[80.549759,20.88891],[80.555893,20.819681],[80.543343,20.7918],[80.560188,20.711773],[80.578339,20.67877],[80.518913,20.66176],[80.489647,20.639898],[80.481598,20.6171],[80.500099,20.586863],[80.519508,20.584681],[80.578667,20.61412],[80.612862,20.590578],[80.603439,20.43325],[80.585983,20.39205],[80.602226,20.37644],[80.616692,20.325741],[80.542023,20.306849],[80.510826,20.269611],[80.456467,20.268909],[80.382957,20.24172],[80.413406,20.187531],[80.394592,20.181589],[80.393837,20.14402],[80.426956,20.130239],[80.45134,20.144871],[80.52359,20.124472],[80.540367,20.109833],[80.546158,20.06571],[80.532539,20.003933],[80.544151,19.98151],[80.520378,19.93088],[80.469841,19.933661],[80.443703,19.952671],[80.406296,19.932501],[80.402657,19.909601],[80.444443,19.893551],[80.46122,19.903431],[80.489838,19.893673],[80.49752,19.86875],[80.475021,19.857059],[80.460297,19.82803],[80.400146,19.793631],[80.452438,19.7929],[80.476028,19.828001],[80.517807,19.828861],[80.544243,19.811201],[80.539673,19.774599],[80.582077,19.738071],[80.633507,19.718491],[80.66584,19.692211],[80.65612,19.625151],[80.662033,19.60873],[80.720993,19.608391],[80.764267,19.584831],[80.785156,19.56041],[80.819611,19.565401],[80.852257,19.52417],[80.879051,19.51903],[80.892067,19.465681],[80.867493,19.44346],[80.835083,19.442381],[80.787933,19.426701],[80.812737,19.38274],[80.839081,19.35515],[80.766197,19.30813],[80.749237,19.286741],[80.683563,19.286911],[80.685287,19.312601],[80.664391,19.326578],[80.617722,19.304819],[80.603943,19.311769],[80.585587,19.35302],[80.583939,19.377159],[80.559341,19.397552],[80.51384,19.3482],[80.470497,19.32892],[80.445427,19.26989],[80.419167,19.25028],[80.388451,19.243311],[80.377022,19.217369],[80.381111,19.180731],[80.345467,19.16291],[80.320862,19.124491],[80.331543,19.10108],[80.315773,19.064581],[80.288841,19.046289],[80.295288,19.02874],[80.267723,18.987329],[80.26413,18.940521],[80.335732,18.856119],[80.346222,18.811081],[80.299438,18.793531],[80.27182,18.76222],[80.240799,18.74869],[80.26754,18.71797],[80.246666,18.701321],[80.225319,18.69615],[80.214363,18.70113],[80.207878,18.70046],[80.201912,18.697441],[80.194107,18.688532],[80.188957,18.675581],[80.167397,18.680071],[80.164627,18.690298],[80.158081,18.69594],[80.148743,18.693241],[80.142273,18.686253],[80.136589,18.686802],[80.121292,18.68121],[80.115997,18.67585],[80.110817,18.676189],[80.10656,18.677528],[80.100548,18.684959],[80.086952,18.697571],[80.084442,18.70084],[80.082123,18.70245],[80.046356,18.720921],[80.012352,18.76676],[79.931992,18.78443],[79.916267,18.79734],[79.894012,18.830839],[79.904099,18.834881],[79.925507,18.837542],[79.933327,18.845041],[79.939003,18.858892],[79.940941,18.93766],[79.935883,18.95764],[79.932213,18.971581],[79.931343,18.974791],[79.934486,19.0217],[79.933067,19.02969],[79.92598,19.04249],[79.916107,19.047359],[79.890846,19.04545],[79.871033,19.035542],[79.861099,19.05995],[79.858047,19.104111],[79.871208,19.1227],[79.905968,19.141788],[79.92231,19.157129],[79.926117,19.16095],[79.940697,19.1644],[79.943207,19.170601],[79.942436,19.17588],[79.922508,19.203409],[79.920166,19.22641],[79.9319,19.259321],[79.945183,19.284121],[79.948959,19.28886],[79.961777,19.297491],[79.963646,19.30654],[79.957382,19.324471],[79.957153,19.33457],[79.964523,19.350679],[79.966522,19.360889],[79.967247,19.37458],[79.970749,19.38213],[79.972603,19.391581],[79.973053,19.40102],[79.970001,19.40946],[79.959236,19.425911],[79.94577,19.440781],[79.946213,19.450939],[79.945,19.458818],[79.940208,19.46451],[79.937256,19.466961],[79.932869,19.469122],[79.923546,19.477581],[79.917793,19.48554],[79.911026,19.49234],[79.902237,19.49649],[79.878227,19.500702],[79.870216,19.504961],[79.863792,19.513597],[79.856232,19.517111],[79.828217,19.53701],[79.816597,19.56901],[79.793297,19.58009],[79.786293,19.589651],[79.785423,19.59359],[79.77755,19.597679],[79.754257,19.602331],[79.740326,19.60314],[79.729912,19.596569],[79.712929,19.58333],[79.705116,19.581221],[79.695686,19.581091],[79.678017,19.576563],[79.639717,19.575001],[79.621391,19.5651],[79.600853,19.507952],[79.591347,19.501732],[79.582657,19.503052],[79.573441,19.506639],[79.565598,19.5109],[79.552498,19.520042],[79.547699,19.526081],[79.545197,19.534],[79.542656,19.548523],[79.526222,19.546061],[79.514992,19.54195],[79.514816,19.540762],[79.515953,19.53681],[79.515846,19.52236],[79.513397,19.518061],[79.470421,19.497452],[79.465126,19.50901],[79.458183,19.518961],[79.441261,19.53351],[79.430283,19.535101],[79.413612,19.53348],[79.340889,19.573771],[79.321503,19.571751],[79.314262,19.565521],[79.309616,19.58201],[79.30484,19.590151],[79.293236,19.596722],[79.255226,19.61121],[79.243866,19.612553],[79.237091,19.609489],[79.237701,19.599541],[79.243782,19.593342],[79.24868,19.586861],[79.250107,19.577681],[79.239769,19.559481],[79.236633,19.526798],[79.232002,19.52075],[79.223427,19.51701],[79.215706,19.51058],[79.208778,19.484798],[79.218712,19.4645],[79.189041,19.4587],[79.177788,19.460691],[79.169098,19.46777],[79.156967,19.48555],[79.140266,19.50111],[79.104736,19.512741],[79.102867,19.52795],[79.073837,19.52861],[79.063393,19.53125],[79.060112,19.538721],[79.051521,19.545273],[79.038818,19.544991],[79.018356,19.53997],[78.992859,19.56204],[78.978477,19.550922],[78.95446,19.562721],[78.977852,19.579943],[78.96286,19.617323],[78.968002,19.63937],[78.968956,19.649233],[78.961678,19.65877],[78.954193,19.66341],[78.943596,19.66514],[78.915909,19.66773],[78.890976,19.65526],[78.858803,19.656311],[78.859123,19.668909],[78.863213,19.679493],[78.86348,19.69677],[78.861671,19.7059],[78.857376,19.71974],[78.856918,19.7313],[78.853577,19.738001],[78.845627,19.75835],[78.844337,19.759001],[78.838303,19.762081],[78.825287,19.76038],[78.817146,19.76042],[78.80761,19.75799],[78.803177,19.760071],[78.796951,19.768579],[78.784866,19.778749],[78.73835,19.77943],[78.731842,19.77285],[78.724731,19.76897],[78.716446,19.7668],[78.70179,19.78558],[78.695908,19.789711],[78.686371,19.78994],[78.648338,19.80146],[78.619339,19.80871],[78.526268,19.821659],[78.519211,19.819901],[78.51239,19.81428],[78.509613,19.801189],[78.50367,19.792419],[78.493919,19.79315],[78.489471,19.79851],[78.484291,19.80719],[78.476189,19.81636],[78.464653,19.816212],[78.428673,19.823111],[78.409042,19.829861],[78.397659,19.836403],[78.389236,19.846178],[78.385933,19.852701],[78.385971,19.8557],[78.384178,19.863621],[78.384972,19.873892],[78.384148,19.879223],[78.365753,19.882891],[78.346687,19.881401],[78.33625,19.88319],[78.325241,19.890482],[78.322968,19.894972],[78.326607,19.89938],[78.334587,19.904303],[78.335106,19.91011],[78.328377,19.916088],[78.319511,19.915468],[78.310196,19.912741],[78.297691,19.873293],[78.294128,19.84955],[78.303169,19.845831],[78.338997,19.83918],[78.339211,19.813511],[78.351616,19.81035],[78.360489,19.80574],[78.366997,19.79454],[78.367737,19.78108],[78.360802,19.753981],[78.353203,19.737751],[78.345413,19.734423],[78.344299,19.724333],[78.345276,19.71357],[78.33252,19.708509],[78.322693,19.70365],[78.316063,19.690552],[78.285812,19.689671],[78.273392,19.670151],[78.269722,19.66313],[78.272659,19.66017],[78.28756,19.654461],[78.292427,19.644161],[78.298973,19.623411],[78.310989,19.604179],[78.310043,19.586712],[78.312042,19.578562],[78.31115,19.57177],[78.296509,19.55838],[78.295029,19.537281],[78.298706,19.513561],[78.299431,19.504129],[78.303612,19.493761],[78.310013,19.486431],[78.31205,19.479259],[78.311958,19.4659],[78.297333,19.44883],[78.291153,19.448799],[78.28199,19.45299],[78.273216,19.45384],[78.26693,19.447929],[78.261833,19.4401],[78.251999,19.43005],[78.245811,19.428989],[78.224266,19.434032],[78.187569,19.39562],[78.184456,19.368219],[78.181366,19.36075],[78.179596,19.35301],[78.182251,19.345448],[78.187119,19.33861],[78.197151,19.33173],[78.183151,19.278961],[78.183319,19.241541],[78.170059,19.23633],[78.149742,19.230051],[78.139267,19.239441],[78.126709,19.246403],[78.099388,19.24548],[78.095123,19.249851],[78.082253,19.25477],[78.075142,19.24655],[78.057556,19.23975],[78.051132,19.24176],[78.04805,19.247513],[78.045746,19.270861],[78.027283,19.278681],[78.01825,19.296328],[78.011612,19.301111],[77.995888,19.305717],[77.985497,19.30899],[77.976906,19.321051],[77.966652,19.32732],[77.962708,19.33177],[77.948921,19.34128],[77.912277,19.317951],[77.893257,19.321161],[77.888046,19.31241],[77.875229,19.308901],[77.860878,19.30213],[77.86264,19.29537],[77.860847,19.28764],[77.861923,19.2841],[77.875389,19.279779],[77.900673,19.277128],[77.905708,19.26722],[77.900391,19.256121],[77.891876,19.257099],[77.884628,19.260231],[77.867386,19.25526],[77.86808,19.246111],[77.862289,19.233961],[77.861526,19.226292],[77.858452,19.21847],[77.852333,19.209711],[77.852676,19.204592],[77.84655,19.19698],[77.844536,19.18819],[77.85302,19.176821],[77.854233,19.172291],[77.853859,19.169432],[77.850357,19.16765],[77.848747,19.15943],[77.849243,19.155281],[77.837677,19.138309],[77.831093,19.135653],[77.833931,19.132738],[77.838638,19.118851],[77.845192,19.11421],[77.844147,19.096071],[77.842186,19.086771],[77.833809,19.086533],[77.828613,19.084942],[77.81517,19.103662],[77.805763,19.10334],[77.80265,19.101961],[77.800247,19.098871],[77.793533,19.071211],[77.79718,19.05131],[77.79454,19.050192],[77.791138,19.050659],[77.783096,19.054831],[77.777946,19.054371],[77.770988,19.05616],[77.761688,19.06204],[77.760933,19.05121],[77.757393,19.028551],[77.767357,18.981421],[77.787132,18.984282],[77.817139,18.98237],[77.812866,18.96006],[77.815201,18.95924],[77.812691,18.949459],[77.827393,18.945721],[77.830498,18.950201],[77.853729,18.952278],[77.848701,18.931381],[77.8405,18.911301],[77.856636,18.906071],[77.869263,18.91032],[77.881577,18.908531],[77.882607,18.896379],[77.887672,18.88512],[77.8992,18.867928],[77.906067,18.867319],[77.925339,18.859211],[77.944138,18.842291],[77.942551,18.82229],[77.907593,18.829519],[77.859222,18.81406],[77.837463,18.807461],[77.823181,18.768501],[77.802719,18.72925],[77.802223,18.71612],[77.786507,18.694321],[77.786438,18.68412],[77.769402,18.69059],[77.768799,18.70162],[77.764381,18.707939],[77.757629,18.70709],[77.749908,18.69783],[77.749496,18.689781],[77.732857,18.676001],[77.728111,18.664209],[77.733246,18.662128],[77.733177,18.655701],[77.730927,18.655321],[77.73011,18.648123],[77.729759,18.64559],[77.729721,18.642733],[77.736023,18.630898],[77.742989,18.621401],[77.747162,18.589081],[77.727936,18.55154],[77.712357,18.55444],[77.65757,18.527201],[77.645287,18.536301],[77.649467,18.54133],[77.652199,18.549631],[77.649551,18.549662],[77.648811,18.55262],[77.64048,18.55393],[77.634407,18.545181],[77.629066,18.55064],[77.616333,18.54867],[77.615822,18.54294],[77.613297,18.542391],[77.61087,18.54777],[77.597267,18.547541],[77.586273,18.50292],[77.593887,18.49387],[77.602837,18.491381],[77.603752,18.485258],[77.601067,18.474211],[77.593117,18.473511],[77.590759,18.48111],[77.576523,18.48378],[77.570633,18.46686],[77.582642,18.443069],[77.560173,18.435049],[77.528481,18.440481],[77.52594,18.427351],[77.53598,18.42345],[77.535156,18.421181],[77.544136,18.42041],[77.555206,18.417852],[77.549301,18.387718],[77.541557,18.38522],[77.5214,18.364651],[77.527328,18.339401],[77.542191,18.3339],[77.55336,18.331223],[77.570229,18.30818],[77.555031,18.298311],[77.549957,18.291349],[77.519783,18.307369],[77.512642,18.281981],[77.465393,18.25996],[77.407806,18.299561],[77.362526,18.30829],[77.39283,18.340549],[77.400497,18.3978],[77.369751,18.400709],[77.36441,18.42985],[77.313271,18.439381],[77.240227,18.408648],[77.227272,18.3449],[77.209976,18.313742],[77.206177,18.27796],[77.177841,18.281851],[77.157196,18.253092],[77.139496,18.207241],[77.095543,18.195101],[77.116333,18.167608],[77.108887,18.152691],[77.057671,18.152363],[76.997757,18.166849],[76.991463,18.186651],[76.954109,18.184891],[76.922562,18.11611],[76.953392,18.110111],[76.952057,18.03771],[76.917717,18.03323],[76.919586,17.98538],[76.913223,17.937208],[76.88118,17.893051],[76.853836,17.897839],[76.774567,17.876961],[76.765953,17.89843],[76.740677,17.89801],[76.737457,17.857059],[76.765739,17.8508],[76.78817,17.826471],[76.776283,17.799381],[76.739433,17.779131],[76.719383,17.785299],[76.717972,17.747869],[76.69236,17.705261],[76.663139,17.68786],[76.655212,17.7164],[76.630653,17.729],[76.626953,17.75596],[76.604057,17.755831],[76.587029,17.70789],[76.569427,17.703741],[76.559776,17.76314],[76.523697,17.75889],[76.523636,17.715231],[76.486366,17.71352],[76.48465,17.66963],[76.428726,17.644411],[76.415672,17.6042],[76.331673,17.59487],[76.350006,17.47213],[76.330803,17.468819],[76.333656,17.432293],[76.373177,17.43442],[76.362,17.37508],[76.408066,17.369289],[76.410637,17.347691],[76.381706,17.31181],[76.352272,17.310591],[76.343613,17.349932],[76.317207,17.329441],[76.275879,17.33053],[76.27018,17.356531],[76.228996,17.36323],[76.182907,17.356501],[76.163147,17.34091],[76.121208,17.366341],[76.101997,17.362261],[76.078743,17.33007],[76.063202,17.3519],[76.015457,17.350611],[76.000267,17.337749],[75.931152,17.32411],[75.893661,17.353621],[75.894356,17.405903],[75.856003,17.407682],[75.821991,17.41968],[75.811333,17.36994],[75.782318,17.378813],[75.769768,17.406841],[75.737038,17.4219],[75.691193,17.412611],[75.680817,17.453972],[75.63559,17.47751],[75.615433,17.422029],[75.615807,17.391859],[75.578537,17.382931],[75.584053,17.351341],[75.613106,17.342291],[75.605957,17.303261],[75.632317,17.272221],[75.657478,17.270571],[75.663879,17.213751],[75.630699,17.186161],[75.631386,17.16007],[75.674103,17.11355],[75.681076,17.07114],[75.647873,17.046572],[75.672241,17.03573],[75.668678,16.983219],[75.678421,16.963942],[75.645027,16.951033],[75.610657,16.96962],[75.60952,17.003111],[75.569916,17.00617],[75.570343,16.963621],[75.530006,16.96583],[75.493011,16.945181],[75.467911,16.985331],[75.431023,16.963461],[75.39476,16.976393],[75.345329,16.95252],[75.284622,16.95355],[75.282776,16.874241],[75.240997,16.862961],[75.230011,16.840919],[75.183197,16.842041],[75.171753,16.864798],[75.141129,16.873541],[75.138397,16.892921],[75.094711,16.92115],[75.094147,16.947229],[75.048149,16.938711],[75.0037,16.945827],[74.952843,16.906481],[74.948616,16.880091],[74.911957,16.85594],[74.915863,16.785681],[74.92382,16.769951],[74.854973,16.770769],[74.850342,16.760321],[74.779007,16.74859],[74.736618,16.715839],[74.698196,16.7152],[74.696106,16.67498],[74.671738,16.66353],[74.660507,16.637581],[74.694313,16.615191],[74.640518,16.58194],[74.574051,16.55197],[74.54985,16.59218],[74.551437,16.633211],[74.495506,16.62767],[74.472458,16.604811],[74.440819,16.598692],[74.403481,16.578671],[74.385437,16.527403],[74.332153,16.553699],[74.306923,16.529171],[74.276627,16.520611],[74.294838,16.474352],[74.321938,16.450041],[74.338867,16.452162],[74.342651,16.400492],[74.323708,16.353611],[74.348717,16.29147],[74.380066,16.293501],[74.391266,16.2756],[74.421227,16.28059],[74.422531,16.25745],[74.484123,16.246731],[74.508331,16.22294],[74.512878,16.188263],[74.497818,16.181339],[74.490952,16.142],[74.497108,16.11237],[74.48909,16.08732],[74.434593,16.11062],[74.370987,16.05957],[74.390053,16.03513],[74.440483,16.05702],[74.467957,16.0467],[74.463913,16.02256],[74.435226,15.95117],[74.391869,15.901159],[74.399193,15.87435],[74.36998,15.875681],[74.353767,15.848101],[74.387413,15.847112],[74.369156,15.812161],[74.375511,15.79672],[74.350937,15.76336],[74.292168,15.739311],[74.27401,15.75312],[74.243866,15.7444],[74.217407,15.778761],[74.197067,15.750221],[74.167671,15.74925],[74.134857,15.722181],[74.141533,15.700361],[74.12603,15.65029],[74.080551,15.62617],[74.002388,15.609052],[73.975983,15.628942],[73.971306,15.687251],[73.945366,15.741522],[73.908607,15.742331],[73.865486,15.797529],[73.820396,15.73991],[73.786491,15.72325],[73.748711,15.730571],[73.74102,15.718721],[73.680138,15.724371],[73.650696,15.80181],[73.625969,15.85208],[73.61097,15.860142],[73.585976,15.909861],[73.510139,15.939581],[73.491806,15.981528],[73.482361,16.03764],[73.465416,16.071529],[73.449028,16.15514],[73.416809,16.245701],[73.405418,16.297085],[73.36792,16.36347],[73.355141,16.446529],[73.331528,16.48904],[73.311249,16.54236],[73.335419,16.56097],[73.316803,16.600969],[73.351524,16.622084],[73.332916,16.641533],[73.330139,16.687361],[73.30542,16.729305],[73.305138,16.767084],[73.317642,16.795141],[73.295418,16.816792],[73.296806,16.88986],[73.281807,16.947916],[73.294304,16.985971],[73.277641,17.034031],[73.288475,17.057917],[73.285141,17.106251],[73.272362,17.121813],[73.246529,17.20875],[73.222916,17.265972],[73.242081,17.31653],[73.21875,17.330973],[73.207077,17.38431],[73.177086,17.387083],[73.184586,17.457083],[73.193474,17.465973],[73.181526,17.507641],[73.141808,17.545973],[73.163193,17.56847],[73.127083,17.637081],[73.133469,17.653194],[73.113747,17.689304],[73.135139,17.709862],[73.110695,17.787083],[73.096527,17.810141],[73.071251,17.88875],[73.054031,17.900421],[73.052361,17.931526],[73.029602,17.944311],[73.021797,17.990141],[73.006248,18.012918],[73.012642,18.035419],[72.989861,18.10014],[72.979027,18.108194],[72.98764,18.160419],[72.981239,18.192921],[72.94458,18.223194],[72.935417,18.28153],[72.970703,18.271252],[72.973747,18.247641],[73.001526,18.247921],[73.063751,18.227083],[73.054581,18.27042],[73.035141,18.26486],[73.008751,18.284584],[72.992081,18.28014],[72.952919,18.33375],[72.914017,18.354853],[72.924026,18.392084],[72.909019,18.39875],[72.905418,18.440971],[72.894859,18.458191],[72.910973,18.524584],[72.928467,18.53569],[72.885406,18.626251],[72.870407,18.63958],[72.855423,18.695971],[72.864296,18.721251],[72.863472,18.791248],[72.899857,18.804031],[72.916252,18.79236],[72.943466,18.827921],[72.957359,18.80125],[72.982643,18.810141],[72.977921,18.86319],[72.942917,18.845694],[72.926529,18.850971],[72.908195,18.885695],[72.922638,18.912083],[72.960976,18.92375],[72.939583,18.947083],[72.954857,18.963751],[73.017082,18.98098],[73.001526,19.009863],[72.99292,19.059032],[72.963196,19.058472],[72.954857,19.027081],[72.918472,18.99958],[72.862076,19.002918],[72.844307,18.929029],[72.799309,18.959028],[72.811249,19.002361],[72.83403,19.025141],[72.822083,19.052641],[72.826813,19.09403],[72.818474,19.124306],[72.789017,19.150141],[72.796524,19.198193],[72.77597,19.222082],[72.784309,19.302643],[72.798752,19.330975],[72.757637,19.375973],[72.760414,19.414862],[72.74514,19.455694],[72.779861,19.491528],[72.741531,19.51597],[72.722084,19.548197],[72.715698,19.590139],[72.730972,19.598751],[72.712906,19.644581],[72.710693,19.702084],[72.687363,19.747641],[72.679581,19.813473],[72.653473,19.829584],[72.680939,19.864861],[72.677086,19.91931],[72.664307,19.93014],[72.721802,19.987362],[72.707916,20.06875],[72.726524,20.08264],[72.73764,20.136539],[72.787613,20.130081],[72.828842,20.15657],[72.850288,20.207941],[72.884323,20.22658],[72.970428,20.21233],[72.985962,20.15753],[72.973228,20.1308],[73.004311,20.11792],[73.031776,20.084421],[73.057991,20.096731],[73.09845,20.09367],[73.117546,20.07881],[73.1633,20.073111],[73.181442,20.05162],[73.219116,20.0975],[73.216316,20.122],[73.26281,20.127951],[73.293633,20.153881],[73.29406,20.193861],[73.31115,20.207211],[73.375946,20.194971],[73.426826,20.201571],[73.42041,20.257],[73.436943,20.282122],[73.414787,20.381571],[73.42289,20.41433],[73.449013,20.4667],[73.475937,20.49502],[73.48082,20.583599],[73.440361,20.595119],[73.403648,20.65237],[73.439919,20.664841],[73.458687,20.714319],[73.482613,20.71723],[73.497292,20.68602],[73.498436,20.653419],[73.530403,20.67312],[73.562943,20.64739],[73.591209,20.645111],[73.622192,20.625299],[73.636772,20.57929],[73.66584,20.562811],[73.701019,20.578381],[73.748207,20.56736],[73.787056,20.602259],[73.805962,20.601521],[73.846413,20.62352],[73.842758,20.70212],[73.863602,20.6943],[73.888863,20.731081],[73.920906,20.72353],[73.949532,20.74231],[73.940567,20.76886],[73.945099,20.840132],[73.931061,20.848391],[73.931038,20.885918],[73.896339,20.933001],[73.906448,20.98315],[73.816406,20.996052],[73.807701,21.022558],[73.784706,21.019569],[73.747612,21.03998],[73.735802,21.10323],[73.69339,21.10099],[73.636398,21.13266],[73.681313,21.152121],[73.713196,21.150461],[73.741623,21.16711],[73.779663,21.164553],[73.79631,21.18173],[73.822548,21.171921],[73.820137,21.221861],[73.836349,21.24234],[73.832138,21.26745],[73.891991,21.262411],[73.948486,21.29755],[73.961937,21.39311],[74.051628,21.426281],[74.057167,21.455709],[74.120819,21.449699],[74.160469,21.45335],[74.185539,21.467022],[74.222633,21.45899],[74.307762,21.48012],[74.327721,21.49575],[74.335518,21.54023],[74.29171,21.558781],[74.271553,21.536421],[74.238106,21.550119],[74.20694,21.529751],[74.18634,21.559601],[74.068222,21.559372],[73.983521,21.542042],[73.974457,21.52408],[73.937622,21.52066],[73.860786,21.495823],[73.833763,21.55348],[73.824501,21.598289],[73.787613,21.62505],[73.829033,21.63979],[73.845238,21.63316],[73.885628,21.64506],[73.898102,21.667271],[73.890236,21.710649],[73.846359,21.742001],[73.827599,21.811939],[73.841522,21.838501],[73.879601,21.83864],[74.023041,21.905972],[74.046669,21.92281],[74.146019,21.95406],[74.203621,21.9254],[74.292259,21.93725],[74.301361,21.966801],[74.345558,21.97522],[74.388313,22.02018],[74.435547,22.030998],[74.451706,21.967501],[74.493401,21.954491],[74.527496,21.908781],[74.517761,21.88624],[74.511818,21.82123],[74.503647,21.807182],[74.517006,21.767231],[74.511253,21.72765],[74.550987,21.719393],[74.560547,21.68799],[74.588997,21.66527],[74.656433,21.65427],[74.723976,21.623991],[74.825241,21.61021],[74.866302,21.631121],[74.902763,21.629801],[74.925957,21.610653],[74.980682,21.59602],[75.017838,21.572611],[75.057747,21.564939],[75.089996,21.514332],[75.106667,21.469629],[75.129776,21.44928],[75.219856,21.41087],[75.253998,21.406139],[75.301849,21.414831],[75.303162,21.395191],[75.384483,21.38559],[75.468407,21.394201],[75.524582,21.387161],[75.548149,21.37249],[75.619446,21.393461],[75.629463,21.381229],[75.673416,21.38035],[75.706757,21.391321],[75.758942,21.38549],[75.801407,21.39015],[75.832626,21.383301],[75.888107,21.39963],[75.916542,21.389828],[75.968742,21.39397],[75.984879,21.377178],[76.034599,21.365271],[76.052376,21.352701],[76.098671,21.373928],[76.129257,21.29751],[76.159218,21.259142],[76.166847,21.170721],[76.127419,21.177919],[76.11396,21.16464],[76.135666,21.126211],[76.183861,21.089951],[76.269249,21.092951],[76.281769,21.07531],[76.376373,21.077311],[76.411827,21.107269],[76.45269,21.114868],[76.474892,21.152071],[76.491173,21.197821],[76.529198,21.189293],[76.559387,21.205811],[76.623367,21.192659],[76.661072,21.282421],[76.625839,21.329741],[76.668411,21.369471],[76.732086,21.40881],[76.743393,21.44314],[76.784187,21.46649],[76.791801,21.489891],[76.762932,21.52265],[76.785538,21.535301],[76.780243,21.562468],[76.795349,21.59754],[76.833549,21.593069],[76.85215,21.61503],[76.891747,21.6007],[76.997276,21.68161],[77.059486,21.7094],[77.069038,21.721809],[77.121101,21.725349],[77.20742,21.69401],[77.224602,21.71789],[77.258026,21.71583],[77.286903,21.736443],[77.277077,21.759809],[77.337387,21.76156],[77.401131,21.75618],[77.449883,21.763411],[77.496872,21.749201],[77.542183,21.701031],[77.558563,21.668673],[77.572197,21.587671],[77.607117,21.54277],[77.566986,21.529751],[77.504356,21.554668],[77.457512,21.55657],[77.423508,21.542561],[77.420799,21.516281],[77.438309,21.472919],[77.469307,21.4569],[77.487022,21.37775],[77.548409,21.381229],[77.601486,21.365271],[77.600647,21.38912],[77.645897,21.39336],[77.670006,21.372923],[77.70433,21.377701],[77.73835,21.366631],[77.74649,21.384211],[77.793449,21.390739],[77.79937,21.4123],[77.89904,21.37842],[77.980278,21.4028],[78.043457,21.435032],[78.063713,21.43886],[78.169342,21.498501],[78.180946,21.558681],[78.215477,21.55373],[78.269257,21.570711],[78.271072,21.59296],[78.318741,21.575588],[78.336777,21.590521],[78.360962,21.578299],[78.377632,21.5956],[78.422562,21.60195],[78.422256,21.563721],[78.438583,21.503759],[78.4804,21.506121],[78.50856,21.528433],[78.560043,21.51461],[78.584869,21.486881],[78.620972,21.477541],[78.684067,21.48196],[78.72419,21.46438],[78.76104,21.489759],[78.844177,21.489971],[78.885376,21.485592],[78.895767,21.500568],[78.931831,21.4874],[78.91272,21.563129],[78.913239,21.59236],[78.940346,21.59376],[78.974762,21.617559],[79.009552,21.6015],[79.104111,21.60936],[79.14109,21.63953],[79.147827,21.660521],[79.216606,21.65019],[79.21817,21.681261],[79.234772,21.715208],[79.257668,21.717541],[79.284813,21.693911],[79.394737,21.674591],[79.4114,21.690968],[79.458511,21.687323],[79.488579,21.674122],[79.512459,21.62648],[79.505821,21.590281],[79.53952,21.565201],[79.536621,21.544218],[79.576149,21.54336],[79.608711,21.555931],[79.65062,21.558809],[79.73262,21.60253],[79.791817,21.581409],[79.825043,21.546721],[79.857079,21.530922],[79.915817,21.524481],[79.927193,21.55373],[79.971779,21.55512],[79.993553,21.534712],[80.026176,21.55665],[80.063568,21.554581],[80.118576,21.608898],[80.143921,21.604973],[80.188217,21.634201],[80.220589,21.619631],[80.260223,21.62015],[80.295372,21.57548],[80.320183,21.57358],[80.338013,21.53875],[80.370613,21.520969],[80.375328,21.49114],[80.400963,21.465431],[80.411308,21.438202],[80.389076,21.407379],[80.399353,21.380491],[80.442947,21.373798],[80.448318,21.40233],[80.519432,21.38957],[80.564171,21.35787],[80.593163,21.324791],[80.617752,21.319172],[80.656532,21.330772]]]},"properties":{"ID_0":105,"ISO":"IN-MH","NAME_0":"India","ID_1":21,"NAME_1":"Maharashtra"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[94.682426,25.45973],[94.676247,25.420589],[94.63118,25.387291],[94.622116,25.33676],[94.598679,25.28907],[94.585358,25.21575],[94.601677,25.19519],[94.745659,25.136591],[94.750717,25.063519],[94.74221,25.025249],[94.701897,24.968441],[94.705856,24.93428],[94.692093,24.899862],[94.656837,24.873598],[94.64122,24.84874],[94.625366,24.7848],[94.633308,24.764961],[94.610847,24.722113],[94.590988,24.71093],[94.550987,24.716539],[94.550743,24.674919],[94.520798,24.616791],[94.485336,24.582241],[94.465492,24.57556],[94.429596,24.49334],[94.411499,24.46965],[94.39917,24.413141],[94.386108,24.384621],[94.351753,24.34201],[94.326347,24.338949],[94.327988,24.292431],[94.313248,24.25408],[94.295143,24.239851],[94.28373,24.17988],[94.262718,24.167747],[94.259697,24.08956],[94.245323,24.044243],[94.194496,23.96501],[94.195969,23.937721],[94.169518,23.92869],[94.161461,23.852779],[94.122643,23.84273],[94.096092,23.893572],[94.051117,23.900431],[94.017693,23.93395],[93.969383,23.933941],[93.953781,23.950199],[93.89608,23.954828],[93.866226,23.93792],[93.80806,23.933121],[93.793549,23.96751],[93.762222,24.004141],[93.739952,23.99917],[93.652443,24.01351],[93.616302,24.01074],[93.609291,23.97345],[93.530502,23.960779],[93.515083,23.947168],[93.472206,23.97068],[93.46698,23.99931],[93.444031,24.02776],[93.432869,24.061663],[93.415428,24.07922],[93.353836,24.097681],[93.334007,24.09013],[93.337372,24.0534],[93.288193,24.05155],[93.263718,24.072821],[93.226677,24.086531],[93.216736,24.05006],[93.175522,24.053699],[93.147911,24.088091],[93.129372,24.064081],[93.102348,24.074011],[93.079491,24.10297],[93.053688,24.090691],[93.021492,24.101452],[92.986069,24.12888],[93.005447,24.16061],[93.023682,24.217569],[93.006706,24.25396],[93.008217,24.280479],[93.035233,24.318399],[93.021568,24.346821],[93.024353,24.390471],[93.000496,24.403271],[93.039169,24.411131],[93.03215,24.42886],[93.048523,24.475483],[93.035767,24.496948],[93.052826,24.51965],[93.052681,24.54472],[93.097267,24.582541],[93.084846,24.647671],[93.099037,24.666531],[93.088783,24.70919],[93.112701,24.80221],[93.157242,24.792311],[93.193077,24.806231],[93.195801,24.846441],[93.233391,24.88485],[93.253258,24.918831],[93.24408,24.94384],[93.263237,24.966379],[93.246696,25.004168],[93.268181,25.049681],[93.296982,25.04767],[93.323631,25.091671],[93.335777,25.09584],[93.351013,25.144541],[93.353073,25.181801],[93.403572,25.263071],[93.474022,25.30928],[93.476753,25.279039],[93.510788,25.275608],[93.504173,25.253382],[93.563133,25.24659],[93.608017,25.202051],[93.687126,25.331211],[93.739792,25.384418],[93.746666,25.40571],[93.781067,25.424711],[93.813889,25.48473],[93.76429,25.515482],[93.779488,25.53805],[93.819717,25.54439],[93.836487,25.563061],[93.862236,25.557529],[93.89196,25.56842],[93.965218,25.556578],[94.012283,25.575298],[94.06942,25.558981],[94.09211,25.53273],[94.138733,25.523701],[94.152878,25.54784],[94.191849,25.550951],[94.190727,25.530781],[94.222977,25.496773],[94.274147,25.502991],[94.302643,25.494633],[94.425591,25.552919],[94.422379,25.575991],[94.474037,25.621641],[94.49118,25.619799],[94.539543,25.651081],[94.573013,25.697651],[94.596947,25.686911],[94.576088,25.644701],[94.583771,25.634491],[94.55574,25.585812],[94.563477,25.539673],[94.557419,25.51277],[94.625343,25.46909],[94.682426,25.45973]]]},"properties":{"ID_0":105,"ISO":"IN-MN","NAME_0":"India","ID_1":22,"NAME_1":"Manipur"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[92.425903,25.03182],[92.347168,25.052191],[92.338531,25.081282],[92.310066,25.07316],[92.229401,25.100731],[92.139496,25.1455],[92.132011,25.166868],[92.065552,25.190031],[91.988861,25.175621],[91.922249,25.187059],[91.857788,25.17761],[91.837448,25.182411],[91.778778,25.168631],[91.757416,25.17971],[91.738098,25.1507],[91.707306,25.1588],[91.695847,25.13908],[91.644531,25.122721],[91.607147,25.143051],[91.58033,25.17285],[91.558853,25.14929],[91.474068,25.13386],[91.425232,25.165791],[91.377602,25.166491],[91.307716,25.182993],[91.273788,25.204308],[91.255737,25.19511],[91.199043,25.19957],[91.138283,25.193571],[91.082497,25.197493],[90.929863,25.160561],[90.885689,25.164263],[90.853539,25.155771],[90.814407,25.1625],[90.785423,25.183969],[90.739799,25.16231],[90.704399,25.155272],[90.666992,25.18749],[90.636879,25.172178],[90.596443,25.175671],[90.508118,25.171383],[90.454979,25.14443],[90.382736,25.163071],[90.337372,25.194191],[90.318077,25.189659],[90.19828,25.213131],[90.174896,25.224022],[90.119583,25.22555],[90.056908,25.264061],[89.975487,25.30135],[89.90638,25.307421],[89.889687,25.289881],[89.860558,25.2878],[89.825508,25.349211],[89.821663,25.385361],[89.85511,25.476049],[89.879959,25.48864],[89.871452,25.537298],[89.873947,25.541937],[89.870102,25.544222],[89.88636,25.557871],[90.002121,25.58419],[90.01844,25.608391],[90.004539,25.623821],[89.946953,25.658831],[89.936996,25.68663],[89.894241,25.72724],[89.921867,25.739168],[89.955246,25.77446],[89.951996,25.810911],[90.008316,25.84683],[90.063309,25.915548],[90.091927,25.928761],[90.113777,25.957439],[90.212761,25.95389],[90.286583,25.9639],[90.324341,25.97438],[90.36499,26.010321],[90.3965,26.014151],[90.428627,25.98904],[90.477287,26.015261],[90.505737,25.996021],[90.534462,25.958021],[90.525482,25.901011],[90.571373,25.93903],[90.578796,25.958031],[90.629013,25.937429],[90.627327,25.91699],[90.713097,25.952183],[90.740303,25.940891],[90.74054,25.915211],[90.778061,25.908291],[90.797096,25.941471],[90.82045,25.948429],[90.869606,25.9424],[90.88298,25.95175],[90.957916,25.933943],[90.967453,25.88718],[91.013733,25.884319],[91.001587,25.8258],[91.020813,25.82262],[91.049103,25.848808],[91.066536,25.82576],[91.120781,25.831341],[91.152863,25.850073],[91.202629,25.840542],[91.179932,25.77632],[91.188713,25.73893],[91.223877,25.723419],[91.255371,25.747829],[91.275627,25.746941],[91.332428,25.83209],[91.412727,25.853918],[91.441223,25.841631],[91.468727,25.85903],[91.518501,25.958151],[91.551262,25.974899],[91.57003,26.027481],[91.632156,26.022409],[91.624718,25.985903],[91.630119,25.944639],[91.647919,25.91374],[91.669312,25.90539],[91.720177,25.954071],[91.723183,26.030321],[91.731262,26.05921],[91.790367,26.087021],[91.819313,26.11874],[91.875786,26.097731],[91.869347,26.05686],[91.883232,26.030001],[91.933968,26.014669],[91.978172,26.02585],[91.991066,26.041033],[92.052856,26.032831],[92.093361,26.048521],[92.133118,26.045891],[92.178307,26.07951],[92.241173,26.06254],[92.273727,26.065891],[92.255722,26.028933],[92.16555,25.964439],[92.159927,25.91519],[92.225037,25.901621],[92.181038,25.87162],[92.180962,25.85136],[92.153107,25.81275],[92.150993,25.783649],[92.164841,25.744751],[92.155853,25.709143],[92.169762,25.666401],[92.236847,25.708391],[92.339012,25.726851],[92.371468,25.746469],[92.416397,25.740499],[92.434341,25.687531],[92.465446,25.682461],[92.497902,25.626961],[92.557617,25.611988],[92.560959,25.574251],[92.587479,25.552988],[92.660477,25.58506],[92.644699,25.537441],[92.621628,25.515751],[92.581047,25.495159],[92.59816,25.471651],[92.60701,25.418539],[92.650543,25.431669],[92.718102,25.374983],[92.736107,25.37381],[92.760567,25.335279],[92.78437,25.332539],[92.792221,25.286798],[92.76976,25.26893],[92.779572,25.20311],[92.747139,25.207769],[92.67704,25.18219],[92.644051,25.151171],[92.621643,25.117701],[92.581688,25.13187],[92.524666,25.14003],[92.526512,25.10585],[92.484299,25.108061],[92.465988,25.057158],[92.425903,25.03182]]]},"properties":{"ID_0":105,"ISO":"IN-ML","NAME_0":"India","ID_1":23,"NAME_1":"Meghalaya"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[93.000496,24.403271],[93.024353,24.390471],[93.021568,24.346821],[93.035233,24.318399],[93.008217,24.280479],[93.006706,24.25396],[93.023682,24.217569],[93.005447,24.16061],[92.986069,24.12888],[93.021492,24.101452],[93.053688,24.090691],[93.079491,24.10297],[93.102348,24.074011],[93.129372,24.064081],[93.147911,24.088091],[93.175522,24.053699],[93.216736,24.05006],[93.226677,24.086531],[93.263718,24.072821],[93.288193,24.05155],[93.337372,24.0534],[93.337448,23.98279],[93.364937,23.945971],[93.39872,23.930281],[93.399162,23.824211],[93.409828,23.81361],[93.404449,23.775051],[93.416946,23.71213],[93.444702,23.682428],[93.428276,23.653549],[93.433052,23.582439],[93.427643,23.53437],[93.407623,23.50848],[93.398262,23.411261],[93.414238,23.388012],[93.365807,23.354481],[93.379326,23.33268],[93.378418,23.25613],[93.394707,23.224279],[93.365021,23.11669],[93.3582,23.077942],[93.332642,23.035671],[93.301956,23.00832],[93.253197,23.006481],[93.206169,23.05687],[93.132942,23.047501],[93.129196,23.000769],[93.162773,22.91353],[93.138329,22.893391],[93.121666,22.862753],[93.116188,22.81628],[93.099266,22.81041],[93.112686,22.74424],[93.091751,22.709341],[93.114777,22.639191],[93.136353,22.62291],[93.145607,22.586123],[93.115532,22.554749],[93.130852,22.5261],[93.134521,22.47485],[93.175423,22.451321],[93.190811,22.427259],[93.19738,22.379972],[93.201927,22.28087],[93.190369,22.249693],[93.14711,22.24654],[93.162956,22.182341],[93.130707,22.17909],[93.11718,22.20133],[93.076988,22.21011],[93.04451,22.193729],[93.054939,22.16543],[93.046928,22.13867],[93.065567,22.102053],[93.015976,22.105471],[93.000763,22.055641],[93.009247,21.983931],[92.988029,21.98292],[92.966568,22.027121],[92.942108,22.018341],[92.915756,21.96505],[92.894257,22.011963],[92.87468,22.0301],[92.870163,22.060751],[92.849022,22.062351],[92.817093,22.09557],[92.773743,22.11105],[92.732758,22.14959],[92.703438,22.153782],[92.68998,22.040979],[92.680779,22.014191],[92.659241,22.014723],[92.637917,21.98867],[92.61232,21.980289],[92.60498,22.057631],[92.571182,22.13233],[92.614792,22.146858],[92.604752,22.18251],[92.597679,22.257151],[92.586166,22.289381],[92.587532,22.32098],[92.56562,22.39187],[92.55761,22.46269],[92.541618,22.5541],[92.531746,22.656141],[92.517616,22.70772],[92.48465,22.76445],[92.477791,22.79833],[92.458427,22.82637],[92.458267,22.87196],[92.430717,22.889721],[92.418762,22.91296],[92.375778,22.93989],[92.38179,23.00997],[92.393669,23.058168],[92.365356,23.11035],[92.371628,23.159752],[92.361572,23.19709],[92.361099,23.237537],[92.40863,23.242243],[92.373512,23.321333],[92.38372,23.353621],[92.359818,23.381289],[92.361137,23.40995],[92.340767,23.431183],[92.326347,23.508341],[92.31282,23.533781],[92.317993,23.554611],[92.300179,23.625259],[92.280037,23.643839],[92.294899,23.694231],[92.268501,23.728611],[92.259399,23.814991],[92.287796,23.866961],[92.30986,23.86264],[92.331146,23.911802],[92.3134,23.93453],[92.31263,23.970211],[92.329056,23.989651],[92.317162,24.01763],[92.327019,24.076443],[92.32856,24.166113],[92.324608,24.20579],[92.29763,24.227228],[92.296608,24.25173],[92.422379,24.253111],[92.418976,24.194361],[92.436569,24.15243],[92.463066,24.13637],[92.488083,24.162218],[92.529663,24.174801],[92.550636,24.245899],[92.611588,24.253349],[92.626167,24.334473],[92.691673,24.356421],[92.730537,24.452751],[92.765198,24.520849],[92.803818,24.421722],[92.846909,24.382299],[92.8629,24.3995],[92.911537,24.412901],[92.935707,24.39554],[92.980263,24.409691],[93.000496,24.403271]]]},"properties":{"ID_0":105,"ISO":"IN-MZ","NAME_0":"India","ID_1":24,"NAME_1":"Mizoram"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[95.237633,26.686291],[95.206169,26.64913],[95.182022,26.643261],[95.154709,26.61949],[95.154488,26.580803],[95.114792,26.548],[95.120781,26.529791],[95.068787,26.466673],[95.108673,26.423731],[95.104767,26.401251],[95.135742,26.387833],[95.128296,26.354662],[95.131149,26.2925],[95.120697,26.274872],[95.128296,26.20315],[95.116837,26.16301],[95.127876,26.136971],[95.126717,26.101],[95.165916,26.09901],[95.185356,26.084682],[95.164719,26.035002],[95.117538,25.987749],[95.106468,25.968151],[95.057411,25.946978],[95.02803,25.919849],[95.015411,25.872021],[95.049377,25.810072],[95.052528,25.762659],[95.033691,25.74144],[95.009399,25.73851],[94.983673,25.704281],[94.935097,25.664551],[94.920906,25.614832],[94.887703,25.58762],[94.904991,25.56711],[94.853012,25.563301],[94.836861,25.550489],[94.812492,25.495371],[94.772743,25.481293],[94.682426,25.45973],[94.625343,25.46909],[94.557419,25.51277],[94.563477,25.539673],[94.55574,25.585812],[94.583771,25.634491],[94.576088,25.644701],[94.596947,25.686911],[94.573013,25.697651],[94.539543,25.651081],[94.49118,25.619799],[94.474037,25.621641],[94.422379,25.575991],[94.425591,25.552919],[94.302643,25.494633],[94.274147,25.502991],[94.222977,25.496773],[94.190727,25.530781],[94.191849,25.550951],[94.152878,25.54784],[94.138733,25.523701],[94.09211,25.53273],[94.06942,25.558981],[94.012283,25.575298],[93.965218,25.556578],[93.89196,25.56842],[93.862236,25.557529],[93.836487,25.563061],[93.819717,25.54439],[93.779488,25.53805],[93.76429,25.515482],[93.813889,25.48473],[93.781067,25.424711],[93.746666,25.40571],[93.739792,25.384418],[93.687126,25.331211],[93.608017,25.202051],[93.563133,25.24659],[93.504173,25.253382],[93.510788,25.275608],[93.476753,25.279039],[93.474022,25.30928],[93.451889,25.344191],[93.478218,25.379883],[93.456871,25.44195],[93.390419,25.46917],[93.390503,25.485628],[93.333382,25.549021],[93.373421,25.569172],[93.418297,25.621059],[93.483353,25.645769],[93.543556,25.7017],[93.544838,25.726971],[93.62233,25.779831],[93.648491,25.823971],[93.678062,25.828871],[93.706436,25.853291],[93.687683,25.909441],[93.785187,25.9583],[93.798332,25.909693],[93.779823,25.84631],[93.795761,25.81435],[93.824303,25.847092],[93.851707,25.86297],[93.882736,25.845909],[93.915901,25.887663],[93.959839,25.905251],[93.982681,25.92627],[93.956009,25.97419],[93.954887,26.00733],[93.986023,26.083569],[94.013,26.186281],[94.035736,26.20319],[94.052856,26.255791],[94.070473,26.260031],[94.108047,26.326401],[94.164467,26.360121],[94.179092,26.388721],[94.175758,26.431801],[94.186546,26.46051],[94.239891,26.511431],[94.282288,26.56354],[94.293922,26.480742],[94.323883,26.47938],[94.396561,26.529732],[94.414848,26.583281],[94.409882,26.61644],[94.454521,26.639021],[94.467941,26.669821],[94.498268,26.673712],[94.520096,26.70145],[94.545059,26.710901],[94.592407,26.70273],[94.621086,26.72117],[94.686607,26.73259],[94.73188,26.764009],[94.756371,26.772268],[94.773087,26.794962],[94.802208,26.806061],[94.821083,26.85446],[94.851532,26.88134],[94.886223,26.932461],[94.913857,26.94257],[94.957283,26.94355],[94.985672,26.918249],[95.086861,26.952742],[95.116943,26.983681],[95.154503,27.006041],[95.195518,27.04295],[95.195198,26.98999],[95.217056,26.9342],[95.233963,26.920601],[95.229927,26.88567],[95.184502,26.86483],[95.215118,26.79838],[95.242538,26.784512],[95.216141,26.735319],[95.236107,26.71221],[95.237633,26.686291]]]},"properties":{"ID_0":105,"ISO":"IN-NL","NAME_0":"India","ID_1":25,"NAME_1":"Nagaland"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[86.870651,20.771778],[86.962967,20.766741],[86.990547,20.771669],[87.006943,20.743059],[87.001389,20.71583],[86.935394,20.7166],[86.885468,20.68944],[86.853523,20.656725],[86.82267,20.675756],[86.821861,20.64707],[86.775558,20.650829],[86.801506,20.683405],[86.830002,20.76],[86.870651,20.771778]]],[[[86.722786,22.215248],[86.712776,22.178289],[86.715446,22.143492],[86.790321,22.15394],[86.806213,22.114161],[86.8479,22.098351],[86.90876,22.08638],[86.957237,22.083368],[86.995178,22.045799],[87.017616,22.041281],[87.034317,21.989191],[87.005547,21.940651],[86.997932,21.907501],[87.030243,21.865311],[87.094643,21.86034],[87.093536,21.9079],[87.141129,21.919691],[87.159897,21.933929],[87.160561,21.96244],[87.195107,21.953569],[87.234848,21.95438],[87.252083,21.920973],[87.23481,21.895601],[87.244751,21.856371],[87.280609,21.799158],[87.317307,21.785721],[87.352081,21.78573],[87.373489,21.766411],[87.443672,21.760889],[87.470833,21.70718],[87.467766,21.645651],[87.482033,21.608704],[87.46389,21.60639],[87.404099,21.556311],[87.372223,21.550833],[87.303047,21.555698],[87.207222,21.546391],[87.113892,21.508331],[87.085831,21.480831],[86.995552,21.420555],[86.89222,21.316389],[86.823334,21.191668],[86.824173,21.137781],[86.85833,21.055],[86.888893,21.01639],[86.910553,20.955278],[86.959442,20.863609],[86.970001,20.827778],[86.958046,20.785002],[86.881386,20.797503],[86.834442,20.77667],[86.818047,20.760561],[86.816109,20.723888],[86.76667,20.644444],[86.823067,20.645975],[86.849556,20.652411],[86.900833,20.69639],[86.93541,20.711081],[87.027,20.696348],[86.87278,20.598333],[86.784447,20.53583],[86.759453,20.50556],[86.73333,20.455],[86.73333,20.403334],[86.78167,20.38833],[86.789711,20.359171],[86.769173,20.331112],[86.6754,20.258348],[86.617767,20.237223],[86.53611,20.20001],[86.488335,20.166945],[86.49472,20.15333],[86.47583,20.100555],[86.414436,20.040831],[86.41111,20],[86.386948,19.97611],[86.348053,19.981945],[86.328186,20.02952],[86.293739,20.054338],[86.262497,20.061953],[86.240555,20.029444],[86.25544,20.018391],[86.294945,20.02442],[86.328613,19.978609],[86.362663,19.95278],[86.296112,19.935511],[86.227966,19.900881],[86.131668,19.86972],[86.045059,19.84691],[85.953331,19.83],[85.84552,19.801241],[85.663612,19.739168],[85.502777,19.659168],[85.419197,19.62307],[85.295288,19.553612],[85.139442,19.443331],[85.105583,19.414801],[85.060837,19.363058],[84.985138,19.319031],[84.886253,19.237921],[84.844307,19.196253],[84.776527,19.109583],[84.741806,19.122351],[84.723747,19.140423],[84.665016,19.156731],[84.661171,19.121861],[84.609398,19.117451],[84.594643,19.123549],[84.591843,19.12384],[84.591682,19.12112],[84.595772,19.11521],[84.602936,19.096571],[84.61441,19.092318],[84.616783,19.09],[84.61657,19.085201],[84.619827,19.076509],[84.631447,19.07262],[84.633606,19.074638],[84.634743,19.07869],[84.644608,19.084452],[84.648712,19.0842],[84.654167,19.081013],[84.659622,19.07093],[84.664589,19.066292],[84.6632,19.064451],[84.659012,19.063648],[84.654533,19.052311],[84.647728,19.056089],[84.636833,19.05715],[84.612717,19.054831],[84.611526,19.05373],[84.612358,19.04974],[84.614189,19.046721],[84.609467,19.04674],[84.607567,19.045408],[84.600487,19.03293],[84.596977,19.019741],[84.578133,19.018902],[84.573647,19.03511],[84.575096,19.037539],[84.578117,19.062128],[84.570602,19.060411],[84.568527,19.06064],[84.56797,19.063471],[84.566139,19.065039],[84.559723,19.059561],[84.553596,19.047409],[84.547722,19.046091],[84.534813,19.045361],[84.531471,19.044149],[84.527153,19.038719],[84.509918,19.03746],[84.489388,19.02095],[84.482063,19.009909],[84.477829,19.007891],[84.475517,18.996033],[84.475693,18.991739],[84.471657,18.98122],[84.46283,18.98329],[84.452187,18.988331],[84.429802,19.001181],[84.425262,18.99534],[84.426109,18.99177],[84.425552,18.989151],[84.426407,18.983971],[84.434723,18.97683],[84.440643,18.96693],[84.437729,18.96571],[84.434547,18.96316],[84.420303,18.94936],[84.415596,18.93804],[84.417137,18.933302],[84.419983,18.92971],[84.42939,18.913683],[84.420326,18.904871],[84.417969,18.90066],[84.406151,18.90612],[84.412086,18.89394],[84.409813,18.890631],[84.386093,18.88303],[84.383232,18.86928],[84.354736,18.882931],[84.351448,18.8832],[84.351837,18.87779],[84.353828,18.875063],[84.359627,18.871901],[84.371567,18.86722],[84.371468,18.863382],[84.369339,18.858971],[84.362411,18.851061],[84.355217,18.85264],[84.354118,18.8515],[84.351463,18.850901],[84.34697,18.85998],[84.344383,18.862762],[84.33979,18.865921],[84.336021,18.866711],[84.334427,18.86385],[84.334137,18.85799],[84.334137,18.851561],[84.335983,18.841421],[84.338066,18.83622],[84.344353,18.83272],[84.344101,18.811941],[84.329323,18.808998],[84.333588,18.795052],[84.332222,18.792023],[84.326958,18.789673],[84.31572,18.786171],[84.312927,18.782181],[84.312492,18.77919],[84.308853,18.778419],[84.307167,18.78166],[84.300369,18.78174],[84.28392,18.790821],[84.278549,18.78968],[84.275337,18.787182],[84.273216,18.78249],[84.268188,18.78031],[84.264221,18.780519],[84.258888,18.77483],[84.246033,18.773411],[84.231163,18.780121],[84.23069,18.785641],[84.22699,18.787161],[84.224297,18.784269],[84.216713,18.787281],[84.179817,18.76897],[84.16703,18.77014],[84.159348,18.77504],[84.151367,18.775761],[84.148117,18.771761],[84.140427,18.767691],[84.134979,18.766788],[84.091637,18.745239],[84.065773,18.751699],[84.060463,18.762671],[84.058609,18.768101],[84.049202,18.770651],[84.049721,18.777309],[84.047607,18.779873],[84.047943,18.78348],[84.038719,18.78743],[84.034286,18.790121],[84.027061,18.8022],[84.023727,18.801151],[84.019661,18.797623],[84.007393,18.804211],[83.982323,18.800011],[83.955612,18.803061],[83.94902,18.797041],[83.943687,18.796288],[83.939789,18.7966],[83.933586,18.806858],[83.907753,18.816389],[83.895477,18.814878],[83.886879,18.805408],[83.885353,18.810041],[83.884636,18.81782],[83.88324,18.819691],[83.873917,18.817768],[83.870178,18.81843],[83.843666,18.8514],[83.842323,18.888241],[83.840271,18.90406],[83.837723,18.908609],[83.834877,18.9093],[83.788307,19.007811],[83.741081,18.983891],[83.750366,18.94437],[83.761482,18.944601],[83.777153,18.919071],[83.780067,18.907721],[83.777397,18.9044],[83.771271,18.9013],[83.762848,18.90654],[83.756149,18.916691],[83.745827,18.918173],[83.736496,18.938971],[83.727463,18.96608],[83.726303,18.975561],[83.716896,18.982538],[83.711403,18.984951],[83.708801,18.983803],[83.705742,18.985241],[83.699837,19.015032],[83.694153,19.021141],[83.684387,19.04393],[83.676376,19.05245],[83.666733,19.064461],[83.662613,19.06649],[83.659698,19.06974],[83.656853,19.07494],[83.64473,19.113291],[83.619133,19.141882],[83.594299,19.120331],[83.594299,19.11058],[83.596779,19.1052],[83.604401,19.092871],[83.604416,19.088181],[83.599861,19.084803],[83.582199,19.07564],[83.581787,19.062773],[83.58078,19.055149],[83.578766,19.049789],[83.557663,19.05138],[83.556427,19.05584],[83.557106,19.05999],[83.560387,19.063961],[83.560677,19.066221],[83.554977,19.078131],[83.546432,19.07383],[83.544868,19.06208],[83.551483,19.050381],[83.552299,19.04719],[83.547729,19.04497],[83.542778,19.03684],[83.535789,19.03035],[83.534828,19.02862],[83.513672,19.02478],[83.51075,19.048],[83.508476,19.049911],[83.50618,19.05431],[83.505386,19.064772],[83.47699,19.075331],[83.459396,19.069672],[83.456703,19.05611],[83.463272,19.052601],[83.462799,19.043951],[83.465439,19.03619],[83.477356,19.025518],[83.477966,19.021191],[83.475113,19.01153],[83.476639,19.00407],[83.474602,19.000313],[83.47184,18.99898],[83.467506,18.998919],[83.458481,19.002098],[83.448517,18.999632],[83.450226,18.982422],[83.462273,18.959221],[83.455482,18.94558],[83.442673,18.947741],[83.408852,18.996191],[83.406898,18.995081],[83.40464,18.99321],[83.402313,18.995161],[83.401421,18.996382],[83.396057,18.995831],[83.39296,18.999128],[83.388756,19.000019],[83.377197,18.99472],[83.367477,18.99362],[83.362328,18.99473],[83.35498,19.00939],[83.334976,19.00672],[83.33271,18.99984],[83.330673,18.998428],[83.330101,18.99696],[83.330757,18.992571],[83.331207,18.99007],[83.329178,18.98818],[83.316437,18.9904],[83.307838,18.99095],[83.305267,18.989681],[83.304329,18.98699],[83.307747,18.98325],[83.313347,18.966631],[83.361069,18.953402],[83.347687,18.920988],[83.38781,18.871031],[83.394257,18.8682],[83.401779,18.867071],[83.404327,18.86598],[83.405853,18.86533],[83.411339,18.859341],[83.410736,18.856762],[83.406807,18.85368],[83.396942,18.849211],[83.398712,18.833529],[83.396301,18.830709],[83.38649,18.825769],[83.383133,18.826071],[83.37635,18.821951],[83.372833,18.821211],[83.359993,18.80735],[83.279503,18.7896],[83.275253,18.78537],[83.26992,18.775288],[83.26915,18.77076],[83.271248,18.767321],[83.271713,18.76318],[83.266098,18.75701],[83.255417,18.75882],[83.245087,18.758089],[83.239563,18.758781],[83.222717,18.76593],[83.221031,18.765871],[83.219391,18.76582],[83.217079,18.763561],[83.217331,18.758951],[83.223007,18.74798],[83.206261,18.728743],[83.202423,18.73255],[83.201889,18.736132],[83.203423,18.740353],[83.201706,18.742229],[83.191818,18.741781],[83.185371,18.744143],[83.180801,18.748251],[83.177017,18.75441],[83.173943,18.756769],[83.168549,18.759069],[83.150833,18.75869],[83.132957,18.772449],[83.115807,18.762081],[83.11219,18.75828],[83.117523,18.750481],[83.116501,18.747971],[83.106003,18.738491],[83.088066,18.7124],[83.077881,18.705339],[83.069092,18.694052],[83.069878,18.691881],[83.070808,18.689301],[83.055847,18.667141],[83.050972,18.65416],[83.036163,18.64769],[83.022606,18.64436],[83.011543,18.63903],[83.009682,18.63653],[83.009483,18.633541],[83.009346,18.631481],[83.011322,18.62771],[83.01461,18.626261],[83.01738,18.6234],[83.021263,18.610451],[83.020302,18.605412],[83.009483,18.59144],[83.008041,18.588421],[83.051178,18.53491],[83.054146,18.5348],[83.057358,18.534691],[83.07148,18.542492],[83.087051,18.541059],[83.089333,18.53791],[83.088509,18.532761],[83.051796,18.477489],[83.037018,18.463131],[83.034149,18.46077],[83.026726,18.456921],[83.016449,18.44768],[83.015411,18.444429],[83.018036,18.440401],[83.024841,18.436661],[83.037323,18.43483],[83.066498,18.39226],[83.065826,18.3894],[83.056198,18.37726],[83.053391,18.375299],[83.03952,18.370081],[83.03698,18.369843],[83.031883,18.37326],[83.023758,18.37645],[83.017181,18.384501],[83.011612,18.37821],[82.997116,18.374861],[82.992867,18.374821],[82.991966,18.374998],[82.981209,18.36582],[82.978432,18.360989],[82.976448,18.354912],[82.932686,18.35137],[82.927612,18.360989],[82.920059,18.359739],[82.915131,18.3564],[82.911667,18.35738],[82.908386,18.35943],[82.902748,18.355911],[82.884903,18.37862],[82.890953,18.39222],[82.890778,18.3986],[82.884613,18.41276],[82.879356,18.41464],[82.87001,18.4062],[82.862968,18.407921],[82.85598,18.410801],[82.848633,18.415009],[82.818748,18.433371],[82.799171,18.439402],[82.776222,18.419691],[82.787483,18.390209],[82.777908,18.37092],[82.784218,18.354151],[82.771439,18.33968],[82.767052,18.331079],[82.698097,18.29627],[82.693741,18.297331],[82.690323,18.29707],[82.681778,18.29278],[82.66494,18.290621],[82.656487,18.278801],[82.644859,18.257078],[82.647583,18.244732],[82.645309,18.24045],[82.637169,18.23493],[82.631653,18.228531],[82.628868,18.228661],[82.626877,18.228741],[82.620392,18.23637],[82.616409,18.238121],[82.613419,18.239429],[82.611031,18.243841],[82.611816,18.246511],[82.609482,18.24925],[82.600769,18.25202],[82.598267,18.254473],[82.589203,18.256729],[82.588669,18.262119],[82.58725,18.265779],[82.585472,18.266121],[82.583183,18.26655],[82.580742,18.2701],[82.584282,18.27322],[82.588463,18.275049],[82.585587,18.28096],[82.590317,18.287781],[82.59095,18.29196],[82.587837,18.30204],[82.582703,18.3008],[82.581078,18.30094],[82.579781,18.301041],[82.576439,18.30681],[82.578056,18.309351],[82.583252,18.311411],[82.589668,18.319483],[82.603828,18.320372],[82.600319,18.330761],[82.59758,18.333618],[82.596512,18.34087],[82.600876,18.366051],[82.55603,18.38851],[82.535912,18.408319],[82.537636,18.41223],[82.53968,18.416868],[82.54512,18.41725],[82.546059,18.424143],[82.550217,18.4265],[82.551071,18.433901],[82.553772,18.437651],[82.547729,18.44179],[82.544212,18.441299],[82.538361,18.44318],[82.539009,18.438089],[82.533081,18.434061],[82.530151,18.434311],[82.528793,18.44034],[82.529381,18.44294],[82.526703,18.447309],[82.523163,18.44577],[82.516136,18.455881],[82.517746,18.45929],[82.521767,18.46176],[82.527512,18.46822],[82.527527,18.47772],[82.524483,18.482849],[82.519516,18.482512],[82.519791,18.48489],[82.520058,18.487261],[82.524498,18.48978],[82.523216,18.493511],[82.522026,18.49699],[82.523132,18.503929],[82.481453,18.51506],[82.475739,18.529408],[82.477837,18.53153],[82.481918,18.532711],[82.485321,18.533701],[82.481613,18.53846],[82.474007,18.536833],[82.453423,18.517021],[82.449936,18.511421],[82.437126,18.497301],[82.426872,18.476992],[82.420326,18.469881],[82.412201,18.46467],[82.397377,18.451601],[82.377602,18.421989],[82.371742,18.42017],[82.367027,18.41717],[82.365997,18.413012],[82.36129,18.40991],[82.365997,18.403353],[82.372513,18.39809],[82.384438,18.37241],[82.38443,18.36911],[82.381096,18.36669],[82.378799,18.361658],[82.37635,18.35327],[82.369476,18.350363],[82.360138,18.3437],[82.345421,18.321819],[82.342903,18.307341],[82.357971,18.308241],[82.36525,18.316429],[82.380493,18.319311],[82.384369,18.318701],[82.388428,18.311201],[82.393013,18.30644],[82.387352,18.300623],[82.385406,18.289091],[82.38224,18.28429],[82.37188,18.274101],[82.367058,18.270941],[82.343651,18.27165],[82.336899,18.266241],[82.3339,18.252291],[82.331802,18.246792],[82.330223,18.23134],[82.332817,18.21579],[82.306099,18.19566],[82.309433,18.189381],[82.310303,18.174603],[82.348732,18.161833],[82.365158,18.139669],[82.357567,18.125101],[82.344872,18.134621],[82.338257,18.13796],[82.333366,18.14238],[82.335358,18.127258],[82.330307,18.118999],[82.332489,18.10705],[82.332161,18.094122],[82.343163,18.082479],[82.343178,18.06782],[82.336929,18.049101],[82.336349,18.04726],[82.329773,18.040411],[82.324913,18.04269],[82.32618,18.046511],[82.321823,18.05018],[82.304413,18.039619],[82.287773,18.06056],[82.258156,18.03487],[82.266243,18.02569],[82.268936,18.019939],[82.270813,18.01067],[82.270523,17.997742],[82.26725,17.986441],[82.261078,17.982401],[82.253189,17.98019],[82.241707,17.979761],[82.238319,17.9839],[82.236992,17.99201],[82.230797,17.99371],[82.222977,17.99288],[82.218178,17.99419],[82.207756,18.00071],[82.196922,18.00869],[82.191017,18.008951],[82.185089,18.007353],[82.177406,18.010571],[82.174248,18.015503],[82.176941,18.020891],[82.173149,18.025593],[82.16375,18.04162],[82.160347,18.043598],[82.147308,18.040421],[82.13237,18.03562],[82.129242,18.04867],[82.107979,18.05402],[82.092361,18.052761],[82.059723,18.045118],[82.024658,18.05788],[82.016777,18.055128],[82.006638,18.049198],[82.001579,18.044811],[82.001686,18.023661],[81.936096,17.984091],[81.846817,17.9508],[81.833336,17.951031],[81.819801,17.945461],[81.801041,17.936081],[81.786011,17.91361],[81.782417,17.90974],[81.775749,17.90477],[81.726318,17.8741],[81.703171,17.86113],[81.697876,17.87554],[81.688286,17.8848],[81.683243,17.87948],[81.67775,17.877581],[81.663063,17.87693],[81.642792,17.839281],[81.623978,17.824423],[81.6157,17.82201],[81.611153,17.815363],[81.599739,17.815441],[81.574867,17.827341],[81.55394,17.816368],[81.481178,17.80286],[81.470123,17.823181],[81.409256,17.804838],[81.402763,17.805321],[81.39431,17.808121],[81.384972,17.806593],[81.38443,17.82579],[81.398056,17.846781],[81.395851,17.88756],[81.437256,17.875938],[81.444458,17.9221],[81.476669,17.9739],[81.473892,18.028511],[81.508659,18.092411],[81.522606,18.15727],[81.504776,18.183811],[81.527962,18.259081],[81.567596,18.273211],[81.593407,18.301281],[81.660378,18.31576],[81.658096,18.339291],[81.744911,18.34535],[81.7621,18.41131],[81.849586,18.48905],[81.862961,18.517273],[81.896828,18.528393],[81.900803,18.557171],[81.946907,18.559151],[81.954529,18.58671],[81.888367,18.620991],[81.915527,18.63582],[81.947441,18.62882],[81.955078,18.680229],[82.033737,18.7188],[82.078583,18.712082],[82.091293,18.75618],[82.145477,18.773279],[82.16494,18.83021],[82.158028,18.851971],[82.170769,18.89159],[82.213783,18.91214],[82.239563,18.91046],[82.222481,19.021111],[82.194092,19.060221],[82.208557,19.078522],[82.191017,19.11631],[82.168137,19.133841],[82.178787,19.158859],[82.155708,19.196529],[82.151726,19.265463],[82.168533,19.290661],[82.180252,19.332203],[82.142349,19.348171],[82.166367,19.365931],[82.183487,19.41246],[82.170456,19.429491],[82.119308,19.423901],[82.096893,19.461081],[82.092079,19.50984],[82.022392,19.501802],[82.046127,19.538622],[82.034897,19.583273],[82.051346,19.624441],[82.037567,19.703911],[82.057198,19.75341],[82.052193,19.791342],[81.980148,19.79578],[81.957413,19.83601],[81.960373,19.854738],[81.898056,19.878519],[81.858406,19.899549],[81.837303,19.950081],[81.860168,20.023361],[81.889458,20.04327],[81.933929,20.09931],[81.973572,20.075611],[82.014786,20.01951],[82.057899,20.04987],[82.116096,20.010401],[82.131699,20.01269],[82.184181,19.981161],[82.230629,19.998081],[82.261696,19.97156],[82.298233,19.883461],[82.339447,19.829962],[82.388817,19.88176],[82.44239,19.902983],[82.475693,19.90053],[82.498482,19.88517],[82.5299,19.88213],[82.597382,19.86047],[82.571823,19.827808],[82.578476,19.77582],[82.618866,19.7861],[82.645737,19.825371],[82.698441,19.82686],[82.711006,19.84856],[82.700409,19.90661],[82.71093,19.983261],[82.70063,19.99287],[82.650482,19.999401],[82.614388,19.986971],[82.582359,19.989941],[82.543617,20.012131],[82.502129,20.013531],[82.475906,20.03005],[82.395767,20.049],[82.390739,20.119051],[82.378929,20.14463],[82.413597,20.202271],[82.405083,20.263531],[82.428047,20.27861],[82.42244,20.30966],[82.393776,20.335522],[82.410408,20.377201],[82.409897,20.402679],[82.429169,20.425753],[82.419388,20.457281],[82.388092,20.452511],[82.380493,20.50985],[82.348793,20.52293],[82.324013,20.553881],[82.342529,20.57522],[82.367546,20.62957],[82.365807,20.66115],[82.3433,20.698853],[82.345863,20.72872],[82.335129,20.758518],[82.334038,20.84059],[82.346619,20.883848],[82.368011,20.8641],[82.401413,20.862431],[82.415527,20.826469],[82.477623,20.84672],[82.483139,20.899658],[82.55294,20.941481],[82.582077,20.986778],[82.622307,21.03657],[82.609123,21.063921],[82.645027,21.101879],[82.635941,21.14945],[82.684532,21.15806],[82.757523,21.15856],[82.782089,21.14102],[82.839996,21.163361],[82.879227,21.14909],[82.902313,21.16297],[82.979927,21.157461],[83.010483,21.14537],[83.040581,21.118931],[83.119843,21.101061],[83.161392,21.131451],[83.192749,21.139441],[83.207573,21.201391],[83.219063,21.223711],[83.214142,21.25087],[83.242447,21.27644],[83.267677,21.268578],[83.254959,21.331921],[83.27002,21.375038],[83.374817,21.33996],[83.394157,21.361141],[83.393761,21.399443],[83.37014,21.4361],[83.350288,21.443981],[83.342056,21.485331],[83.362328,21.572521],[83.380722,21.612751],[83.441231,21.649273],[83.441338,21.618092],[83.462967,21.605511],[83.483078,21.639601],[83.440773,21.65517],[83.419746,21.67502],[83.456337,21.694321],[83.484131,21.741552],[83.475922,21.77379],[83.491333,21.808661],[83.536568,21.79393],[83.531242,21.8319],[83.573532,21.82966],[83.584053,21.852793],[83.571518,21.87187],[83.600479,21.910841],[83.535172,21.963501],[83.548561,22.006702],[83.533997,22.02228],[83.538368,22.05538],[83.583511,22.054951],[83.600319,22.06551],[83.557266,22.099979],[83.605942,22.15761],[83.61927,22.19636],[83.645752,22.224588],[83.693001,22.245501],[83.745651,22.24122],[83.771317,22.257339],[83.822487,22.315638],[83.861008,22.343781],[83.896973,22.339689],[83.915543,22.359671],[83.966988,22.357849],[84.00119,22.369671],[84.014442,22.404093],[84.040009,22.432899],[84.041557,22.464109],[83.976097,22.502211],[84.002502,22.520861],[84.057587,22.510151],[84.106117,22.473848],[84.137436,22.4671],[84.13588,22.420683],[84.194107,22.371811],[84.246559,22.373701],[84.289223,22.33732],[84.372002,22.349051],[84.425842,22.35203],[84.47448,22.401731],[84.501793,22.415319],[84.632103,22.42865],[84.661606,22.413919],[84.743851,22.414751],[84.752693,22.442013],[84.801247,22.44371],[84.835747,22.427551],[84.8778,22.442511],[84.880249,22.417591],[84.960243,22.44372],[85.051399,22.47942],[85.073196,22.47287],[85.057037,22.44471],[85.083076,22.378441],[85.074059,22.348591],[85.105293,22.29114],[85.070511,22.27216],[85.069481,22.23065],[85.025398,22.154001],[85.023743,22.111992],[85.099007,22.096121],[85.118881,22.066471],[85.140839,22.073551],[85.210747,22.04318],[85.21489,22.010712],[85.241058,22.01252],[85.274162,22.08009],[85.323013,22.12499],[85.361717,22.12476],[85.363197,22.15457],[85.410286,22.15608],[85.485802,22.116489],[85.591087,22.07444],[85.644608,22.090281],[85.681503,22.04878],[85.722351,22.05813],[85.802048,22.11083],[85.830757,22.076971],[85.787941,22.07719],[85.770332,22.051283],[85.778938,22.036261],[85.756126,22.00839],[85.784279,21.9786],[85.894173,21.978291],[85.928772,22.01936],[85.942581,22.019131],[86.002586,22.113022],[85.994629,22.131781],[86.026718,22.185223],[85.969788,22.243401],[86.017776,22.30455],[86.020432,22.329399],[85.992882,22.33816],[86.0215,22.381762],[86.008743,22.42432],[85.992973,22.42214],[85.953506,22.455973],[85.969246,22.499781],[86.028267,22.53433],[86.03849,22.563589],[86.069206,22.54307],[86.101379,22.49015],[86.202393,22.47028],[86.220383,22.449091],[86.265182,22.439541],[86.287956,22.425362],[86.352737,22.345421],[86.424377,22.306271],[86.499947,22.340952],[86.524551,22.302851],[86.578461,22.297819],[86.589928,22.282141],[86.645576,22.26137],[86.648178,22.235691],[86.682167,22.219511],[86.722786,22.215248]]]]},"properties":{"ID_0":105,"ISO":"IN-OR","NAME_0":"India","ID_1":26,"NAME_1":"Orissa"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[79.854576,10.976022],[79.85125,10.813771],[79.819763,10.811102],[79.802788,10.871132],[79.77317,10.889561],[79.726883,10.897451],[79.709229,10.9132],[79.703651,10.951861],[79.726692,10.952351],[79.752602,10.979892],[79.783417,10.967332],[79.801453,10.986212],[79.854576,10.976022]]],[[[79.837639,11.94055],[79.823753,11.88181],[79.800415,11.808399],[79.786163,11.838402],[79.754951,11.85784],[79.730347,11.84688],[79.693451,11.853891],[79.724899,11.89151],[79.684143,11.92722],[79.701553,11.952181],[79.694801,11.975111],[79.642342,11.975811],[79.647316,11.99723],[79.691559,12.017441],[79.705849,11.97737],[79.749649,11.986131],[79.733612,11.94721],[79.747841,11.928902],[79.804588,11.963141],[79.814201,11.940621],[79.837639,11.94055]]],[[[75.311668,12.049306],[75.299309,12.029311],[75.267639,12.025421],[75.263474,12.002917],[75.230698,12.02414],[75.22113,12.100951],[75.236603,12.11023],[75.277817,12.10177],[75.335228,12.144002],[75.368538,12.121261],[75.339882,12.098251],[75.328178,12.10728],[75.296173,12.059241],[75.311668,12.049306]]]]},"properties":{"ID_0":105,"ISO":"IN-PY","NAME_0":"India","ID_1":27,"NAME_1":"Puducherry"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[76.769859,30.906391],[76.769043,30.87653],[76.801216,30.842522],[76.827751,30.832569],[76.846786,30.792521],[76.828186,30.76379],[76.759338,30.79904],[76.731232,30.777018],[76.690628,30.76008],[76.715202,30.713301],[76.745033,30.690458],[76.794373,30.669319],[76.819809,30.685829],[76.818817,30.660591],[76.863106,30.671511],[76.858582,30.640631],[76.899597,30.620029],[76.913429,30.599703],[76.88504,30.540421],[76.920067,30.524691],[76.912369,30.49366],[76.89386,30.489641],[76.889931,30.436691],[76.927299,30.388639],[76.897766,30.3626],[76.864731,30.408791],[76.832458,30.433882],[76.808456,30.41186],[76.748871,30.426632],[76.70015,30.393612],[76.738533,30.35965],[76.697678,30.324858],[76.670883,30.31917],[76.590317,30.254122],[76.638916,30.20594],[76.622742,30.1703],[76.629402,30.134769],[76.619476,30.095362],[76.589531,30.0793],[76.554871,30.098761],[76.501122,30.07663],[76.490829,30.097151],[76.452087,30.10071],[76.426041,30.14756],[76.428581,30.179792],[76.398842,30.198999],[76.380997,30.183241],[76.401642,30.157728],[76.390007,30.127541],[76.348923,30.127661],[76.328377,30.10951],[76.25116,30.118999],[76.210533,30.156078],[76.204712,30.127861],[76.230827,30.108521],[76.229919,30.080568],[76.198906,30.034828],[76.189377,30.00419],[76.203873,29.94412],[76.178909,29.946268],[76.182709,29.893881],[76.225296,29.885061],[76.228523,29.854528],[76.194183,29.844971],[76.166656,29.818321],[76.139267,29.816763],[76.116386,29.7964],[76.077667,29.805773],[76.074341,29.78124],[76.041481,29.748781],[76.00383,29.750931],[75.972549,29.73237],[75.934013,29.732533],[75.897232,29.755529],[75.863777,29.752331],[75.819977,29.81538],[75.796051,29.807121],[75.771622,29.82539],[75.748398,29.81212],[75.705933,29.80862],[75.697449,29.755211],[75.666168,29.772701],[75.625359,29.77323],[75.62262,29.75362],[75.563087,29.74424],[75.556396,29.765833],[75.506332,29.774071],[75.444267,29.80785],[75.443787,29.78618],[75.397232,29.761021],[75.378777,29.7113],[75.361946,29.712891],[75.317726,29.6707],[75.307533,29.632561],[75.28035,29.603251],[75.304512,29.588478],[75.290649,29.561762],[75.238068,29.55154],[75.211189,29.582399],[75.221237,29.60655],[75.17334,29.630081],[75.15892,29.669361],[75.188889,29.680828],[75.198097,29.730801],[75.23098,29.752068],[75.19796,29.796221],[75.200912,29.83],[75.182343,29.838701],[75.124916,29.80562],[75.102287,29.802551],[75.085747,29.84481],[75.102676,29.89702],[75.077736,29.91231],[75.065483,29.87904],[75.037498,29.881781],[74.989929,29.856461],[74.969887,29.889921],[74.943176,29.902538],[74.924088,29.94153],[74.849632,29.959129],[74.801178,29.992573],[74.775993,29.9744],[74.724007,29.961861],[74.695503,29.971531],[74.680962,29.94919],[74.639862,29.922491],[74.639633,29.90395],[74.5858,29.914761],[74.519066,29.94335],[74.403793,29.94734],[74.28997,29.956261],[74.251907,29.955259],[74.069199,29.96887],[73.891182,29.97007],[73.881126,29.996281],[73.898407,30.05365],[73.918213,30.06815],[73.962471,30.127501],[73.966316,30.195049],[73.957848,30.26169],[73.934326,30.30302],[73.873215,30.383438],[73.903419,30.416798],[73.927856,30.420914],[73.932266,30.458431],[73.962677,30.457607],[73.988518,30.50456],[74.091209,30.572851],[74.092049,30.598131],[74.123596,30.629021],[74.150932,30.632622],[74.196838,30.671776],[74.232155,30.719622],[74.273697,30.743252],[74.264999,30.772783],[74.307602,30.82114],[74.316147,30.847582],[74.371986,30.852942],[74.365524,30.885406],[74.419205,30.911699],[74.4207,30.925877],[74.470589,30.965988],[74.496613,30.967184],[74.538513,30.997353],[74.531799,31.009291],[74.553444,31.062601],[74.571701,31.067436],[74.600182,31.043547],[74.656006,31.05451],[74.683197,31.07218],[74.694427,31.09544],[74.679131,31.12903],[74.62632,31.135691],[74.592148,31.127251],[74.588028,31.093201],[74.546402,31.08857],[74.544487,31.116961],[74.506157,31.135799],[74.501289,31.17992],[74.522202,31.24754],[74.511116,31.272331],[74.530235,31.298676],[74.551872,31.298454],[74.594574,31.397095],[74.625343,31.423618],[74.642067,31.46155],[74.572983,31.519562],[74.598976,31.52754],[74.600906,31.567839],[74.578499,31.623405],[74.517281,31.722912],[74.518044,31.745201],[74.55204,31.7575],[74.544029,31.77643],[74.556381,31.828821],[74.651993,31.909861],[74.703262,31.924898],[74.801376,31.96179],[74.817741,31.993851],[74.867508,32.031151],[74.925926,32.065651],[74.96032,32.055031],[74.998413,32.028667],[75.05085,32.041309],[75.069023,32.058464],[75.12001,32.083172],[75.185143,32.083752],[75.193207,32.114639],[75.212044,32.119141],[75.239166,32.087151],[75.271973,32.112751],[75.283264,32.14217],[75.309402,32.15461],[75.322845,32.201321],[75.363701,32.238281],[75.366997,32.268749],[75.33992,32.288567],[75.33667,32.322594],[75.322327,32.337326],[75.331779,32.3447],[75.414993,32.324272],[75.473526,32.339199],[75.467758,32.317562],[75.515823,32.297989],[75.524269,32.34005],[75.545151,32.360821],[75.592636,32.381699],[75.648071,32.388809],[75.711533,32.418159],[75.745926,32.476349],[75.804337,32.487061],[75.837837,32.537609],[75.872543,32.576191],[75.851387,32.521309],[75.855278,32.49958],[75.915497,32.4487],[75.925926,32.411781],[75.871933,32.398449],[75.84388,32.379311],[75.736397,32.273762],[75.675842,32.264019],[75.622543,32.23468],[75.620216,32.185169],[75.656158,32.17662],[75.655479,32.146061],[75.610558,32.099609],[75.578758,32.08168],[75.598526,32.06601],[75.649361,32.077171],[75.692276,32.059452],[75.710487,32.036022],[75.733978,32.037331],[75.79512,31.988581],[75.836372,31.981649],[75.894547,31.9498],[75.94973,31.848101],[75.952896,31.823961],[75.921829,31.817181],[75.945061,31.781281],[75.977371,31.705],[76.00473,31.663031],[76.002747,31.64657],[76.084,31.537182],[76.128242,31.44376],[76.156746,31.40451],[76.134087,31.382643],[76.13961,31.353121],[76.166321,31.341459],[76.172829,31.30674],[76.206398,31.305262],[76.302269,31.326361],[76.330078,31.34528],[76.329582,31.379519],[76.315842,31.402378],[76.359146,31.41563],[76.390396,31.397331],[76.391052,31.378632],[76.428017,31.32518],[76.466713,31.310211],[76.488586,31.273401],[76.51091,31.282619],[76.545921,31.25588],[76.570503,31.280149],[76.635422,31.21298],[76.590393,31.182859],[76.598747,31.151171],[76.589317,31.127701],[76.625732,31.110243],[76.598969,31.053551],[76.610069,31.00423],[76.66819,30.969881],[76.712601,30.963421],[76.726021,30.939331],[76.769859,30.906391]]]},"properties":{"ID_0":105,"ISO":"IN-PB","NAME_0":"India","ID_1":28,"NAME_1":"Punjab"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[74.519066,29.94335],[74.505028,29.907761],[74.533691,29.90262],[74.553566,29.865641],[74.532532,29.839281],[74.491669,29.826509],[74.465263,29.78755],[74.472,29.74403],[74.525833,29.741369],[74.537788,29.75386],[74.6054,29.75288],[74.603477,29.72143],[74.578522,29.654753],[74.571747,29.55558],[74.611427,29.5315],[74.578911,29.45862],[74.53463,29.465033],[74.531296,29.42498],[74.57003,29.406158],[74.572899,29.38645],[74.600037,29.35433],[74.595779,29.328312],[74.641823,29.3312],[74.650177,29.37237],[74.711243,29.36891],[74.731697,29.353788],[74.775917,29.360151],[74.809547,29.398479],[74.849518,29.40279],[74.927147,29.364639],[74.950569,29.31851],[74.95311,29.28194],[74.991043,29.271749],[75.023857,29.291531],[75.078079,29.23245],[75.147476,29.24585],[75.179993,29.26862],[75.195313,29.244221],[75.271729,29.25437],[75.276718,29.273451],[75.319267,29.29344],[75.314926,29.23596],[75.379547,29.263931],[75.40065,29.18891],[75.368958,29.169958],[75.361153,29.14262],[75.39621,29.128441],[75.380699,29.11072],[75.380653,29.07032],[75.43026,29.06472],[75.434738,29.016541],[75.473427,29.020201],[75.511101,29.01083],[75.516518,28.975389],[75.497566,28.941488],[75.467079,28.92625],[75.488426,28.898319],[75.487991,28.85965],[75.513367,28.83659],[75.498543,28.787661],[75.516083,28.772228],[75.530937,28.732821],[75.539566,28.64887],[75.55571,28.614592],[75.609337,28.605881],[75.629097,28.545971],[75.665489,28.533279],[75.690079,28.4991],[75.736549,28.487202],[75.735001,28.472641],[75.778229,28.457611],[75.802589,28.414228],[75.922379,28.36891],[75.927406,28.3451],[75.956306,28.338371],[75.986572,28.295891],[76.018723,28.280958],[76.011192,28.241751],[76.053009,28.22423],[76.074806,28.172428],[76.027748,28.172722],[75.994667,28.1506],[75.936089,28.093531],[75.977066,28.084181],[76.010078,28.036711],[75.974358,28.03694],[75.955467,27.98864],[75.96833,27.962311],[75.963173,27.936951],[75.977386,27.90926],[75.975449,27.86463],[76.009308,27.86261],[76.049629,27.84786],[76.080093,27.85107],[76.088066,27.868448],[76.122139,27.854401],[76.127769,27.8332],[76.17292,27.807461],[76.205948,27.84799],[76.169746,27.90975],[76.179466,27.972841],[76.15387,27.992531],[76.174263,28.02191],[76.203461,28.030361],[76.177338,28.059259],[76.233368,28.056421],[76.251099,28.070921],[76.290077,28.04911],[76.290123,28.0299],[76.3368,28.029661],[76.353287,28.065573],[76.337349,28.073061],[76.331886,28.106718],[76.355606,28.12845],[76.278183,28.168571],[76.308716,28.183361],[76.353249,28.166191],[76.359833,28.143381],[76.437126,28.152151],[76.472336,28.149601],[76.497803,28.106621],[76.469887,28.086321],[76.455742,28.04648],[76.538521,28.03912],[76.531036,27.979328],[76.546593,27.971371],[76.598969,28.00984],[76.660072,28.019051],[76.64785,28.092211],[76.682182,28.097771],[76.709961,28.13236],[76.739128,28.12904],[76.755081,28.14661],[76.791489,28.157242],[76.790253,28.19376],[76.833427,28.22485],[76.863632,28.22464],[76.884048,28.19166],[76.941742,28.148701],[76.961761,28.144011],[76.946556,28.071341],[76.918648,27.99761],[76.924927,27.978361],[76.919098,27.92486],[76.926086,27.894421],[76.926643,27.834221],[76.907883,27.835918],[76.895607,27.78614],[76.888542,27.719551],[76.914566,27.700821],[76.891647,27.67989],[76.909477,27.656801],[76.934196,27.6751],[76.970497,27.657143],[76.979103,27.70616],[76.994377,27.742043],[77.031967,27.748411],[77.053207,27.727859],[77.077972,27.737341],[77.023048,27.787189],[77.038277,27.820042],[77.072411,27.809521],[77.101166,27.785492],[77.147278,27.786659],[77.149727,27.812431],[77.234558,27.78581],[77.27578,27.806549],[77.304146,27.78801],[77.310677,27.73687],[77.302353,27.713211],[77.333939,27.70792],[77.342323,27.65303],[77.311211,27.611691],[77.325783,27.596878],[77.340263,27.524773],[77.37619,27.5186],[77.393593,27.481941],[77.429596,27.462049],[77.415176,27.425371],[77.431892,27.399158],[77.497246,27.381363],[77.542747,27.342428],[77.574547,27.326731],[77.616341,27.33831],[77.609093,27.287991],[77.644203,27.238878],[77.642029,27.214769],[77.672997,27.200361],[77.654617,27.175581],[77.614807,27.174789],[77.597267,27.129051],[77.544449,27.115601],[77.518227,27.088093],[77.565681,27.078011],[77.558937,27.04879],[77.598816,27.02883],[77.657028,27.022732],[77.670769,27.048901],[77.703583,27.000311],[77.691917,26.978992],[77.642273,26.9673],[77.57975,26.93087],[77.482468,26.90378],[77.450523,26.875011],[77.42247,26.86702],[77.417488,26.842791],[77.439217,26.819151],[77.428589,26.785789],[77.464317,26.76955],[77.480988,26.7878],[77.497978,26.84795],[77.520691,26.822008],[77.608536,26.834511],[77.657303,26.856411],[77.671669,26.874071],[77.715843,26.88133],[77.723923,26.922951],[77.765099,26.93799],[77.871468,26.9055],[77.890106,26.88946],[77.909569,26.91427],[77.941971,26.89979],[77.962959,26.912571],[78.014061,26.908392],[78.042236,26.915421],[78.086823,26.902008],[78.112709,26.92749],[78.114899,26.954861],[78.139473,26.95713],[78.232742,26.933693],[78.261223,26.93178],[78.248177,26.900631],[78.204857,26.87739],[78.209793,26.83609],[78.16095,26.82704],[78.179367,26.801161],[78.145813,26.791731],[78.119026,26.802561],[78.095383,26.789431],[78.111679,26.749651],[78.089149,26.73811],[78.088058,26.686661],[77.992218,26.702641],[77.968796,26.67664],[77.939903,26.662708],[77.903603,26.66618],[77.879387,26.620291],[77.842438,26.615179],[77.820412,26.599838],[77.812996,26.55481],[77.767006,26.553478],[77.739357,26.54269],[77.726982,26.515362],[77.69503,26.50087],[77.671028,26.509729],[77.626717,26.48299],[77.599083,26.454222],[77.551483,26.440559],[77.522881,26.414911],[77.427719,26.40691],[77.432426,26.365],[77.366249,26.371519],[77.318047,26.34638],[77.308167,26.315001],[77.267036,26.276171],[77.194473,26.235971],[77.16494,26.244501],[77.113647,26.231359],[77.096443,26.19544],[77.02388,26.17617],[76.994476,26.137781],[76.938713,26.106079],[76.887779,26.093323],[76.870422,26.05645],[76.830406,26.029591],[76.84024,26.01129],[76.818886,25.971251],[76.7948,25.944221],[76.760651,25.94253],[76.762413,25.92207],[76.73333,25.90255],[76.674362,25.9118],[76.641418,25.90625],[76.631683,25.87524],[76.597473,25.87648],[76.529312,25.797972],[76.52655,25.731043],[76.482391,25.71813],[76.477783,25.695061],[76.510803,25.672838],[76.499428,25.64834],[76.514732,25.633678],[76.509781,25.579821],[76.520309,25.52993],[76.559593,25.473261],[76.564278,25.442402],[76.588966,25.43149],[76.602547,25.388981],[76.636292,25.380331],[76.681076,25.34548],[76.740402,25.34779],[76.766731,25.336231],[76.772827,25.31591],[76.842979,25.330542],[76.893227,25.322401],[76.952721,25.278551],[76.95874,25.29718],[77.024193,25.30109],[77.03936,25.32505],[77.07547,25.339691],[77.115768,25.33506],[77.153557,25.31325],[77.190552,25.311661],[77.218033,25.33131],[77.220261,25.373428],[77.305298,25.436411],[77.361343,25.41296],[77.344261,25.38793],[77.374802,25.305851],[77.349663,25.27177],[77.362717,25.250071],[77.406403,25.226292],[77.417992,25.193029],[77.390709,25.18819],[77.386673,25.12196],[77.348679,25.097792],[77.302856,25.08387],[77.26226,25.119261],[77.220833,25.110243],[77.169579,25.11372],[77.157707,25.08828],[77.128273,25.08905],[77.114456,25.06909],[77.077232,25.057989],[76.983673,25.07756],[76.968666,25.055941],[76.901062,25.03404],[76.869316,25.011103],[76.872063,24.954601],[76.924637,24.910372],[76.913857,24.88788],[76.948921,24.872869],[76.926521,24.849783],[76.895042,24.83951],[76.837502,24.841061],[76.802292,24.826571],[76.846741,24.769993],[76.845016,24.752138],[76.921692,24.748831],[76.963303,24.75955],[76.971977,24.73167],[77.019249,24.714951],[77.059456,24.64242],[77.064339,24.564121],[77.050308,24.526531],[76.992523,24.47345],[76.960167,24.46023],[76.91465,24.487659],[76.918381,24.535601],[76.899826,24.54781],[76.846046,24.55102],[76.81459,24.53437],[76.851326,24.469109],[76.8424,24.408508],[76.84906,24.36821],[76.836967,24.360708],[76.874199,24.27109],[76.943863,24.198851],[76.916138,24.188721],[76.89994,24.131111],[76.856003,24.138941],[76.827728,24.125591],[76.790932,24.125759],[76.76886,24.16468],[76.720711,24.16172],[76.67421,24.19343],[76.702499,24.2488],[76.678749,24.270639],[76.616348,24.26284],[76.613953,24.24218],[76.571487,24.213478],[76.579727,24.180679],[76.523193,24.163179],[76.508369,24.200232],[76.463432,24.22892],[76.423607,24.22695],[76.411797,24.209551],[76.352997,24.248911],[76.317879,24.251131],[76.276398,24.216511],[76.206223,24.23275],[76.194656,24.2848],[76.20623,24.310921],[76.185486,24.331511],[76.169228,24.296091],[76.142227,24.281151],[76.154457,24.243761],[76.12336,24.2054],[76.136887,24.131338],[76.134697,24.095289],[76.04335,24.073961],[76.026726,24.050463],[75.990089,24.030069],[75.960182,24.02537],[75.960243,23.997461],[75.980186,23.97438],[75.975822,23.93294],[75.878616,23.88456],[75.853416,23.894201],[75.779922,23.8547],[75.759171,23.881329],[75.728218,23.9021],[75.702332,23.904051],[75.698128,23.877108],[75.727547,23.86451],[75.722168,23.826912],[75.690247,23.819611],[75.698288,23.788],[75.687347,23.773331],[75.649307,23.799351],[75.616623,23.805971],[75.582527,23.80036],[75.566032,23.815689],[75.562462,23.858143],[75.504097,23.891911],[75.487427,23.910843],[75.456497,23.92074],[75.464767,23.980728],[75.491768,24.004551],[75.514381,24.048733],[75.531921,24.031481],[75.571716,24.017401],[75.569321,23.999371],[75.634743,23.99983],[75.669197,24.033543],[75.700409,23.969061],[75.762039,23.997952],[75.780243,24.036261],[75.779617,24.06208],[75.829506,24.071953],[75.830643,24.107929],[75.789612,24.1098],[75.778687,24.13467],[75.743492,24.139601],[75.773506,24.220892],[75.805336,24.229719],[75.812996,24.300678],[75.797417,24.314348],[75.765091,24.310659],[75.737923,24.347971],[75.735817,24.403433],[75.786087,24.45842],[75.829002,24.42252],[75.861206,24.42333],[75.903389,24.446131],[75.905472,24.505308],[75.925018,24.5383],[75.907036,24.550461],[75.911072,24.577051],[75.884361,24.581739],[75.874077,24.607111],[75.852547,24.614321],[75.843903,24.66935],[75.828186,24.668222],[75.838753,24.72987],[75.786186,24.76553],[75.741806,24.760361],[75.680046,24.727831],[75.659187,24.7017],[75.613327,24.688421],[75.581902,24.7227],[75.53508,24.720018],[75.483467,24.69762],[75.451897,24.693218],[75.228409,24.735102],[75.195618,24.76001],[75.192299,24.78875],[75.217377,24.820461],[75.246712,24.82184],[75.201317,24.884201],[75.249947,24.895691],[75.241692,24.860941],[75.283821,24.850019],[75.300491,24.815243],[75.417099,24.863901],[75.424217,24.892752],[75.371971,24.877981],[75.325966,24.887009],[75.311302,24.869459],[75.261452,24.88966],[75.267029,24.914211],[75.287903,24.926262],[75.317543,24.907221],[75.337486,24.9631],[75.318947,25.00651],[75.351547,25.02516],[75.349617,25.041731],[75.310486,25.04608],[75.200562,25.034498],[75.173782,25.053793],[75.154709,25.02887],[75.164398,24.991661],[75.138023,24.986362],[75.115707,24.965391],[75.118866,24.88904],[75.073532,24.88731],[75.043388,24.859228],[75.012611,24.874081],[74.944809,24.877911],[74.912521,24.899099],[74.900543,24.939741],[74.867203,24.936941],[74.862099,24.965839],[74.83271,24.967451],[74.824219,24.9401],[74.827133,24.89913],[74.855888,24.853201],[74.858566,24.813061],[74.905182,24.797461],[74.970383,24.790861],[75.012932,24.79381],[75.020233,24.752768],[74.993431,24.752729],[74.999893,24.708488],[74.964111,24.700468],[74.943878,24.662283],[74.902466,24.656311],[74.873436,24.669481],[74.818542,24.765341],[74.780052,24.742748],[74.789658,24.726631],[74.776062,24.68606],[74.817108,24.671671],[74.783447,24.636761],[74.790123,24.61076],[74.747971,24.596809],[74.756981,24.56365],[74.747711,24.53624],[74.715706,24.522831],[74.757317,24.488823],[74.814507,24.49221],[74.857498,24.451502],[74.812317,24.409151],[74.784622,24.367361],[74.78363,24.316801],[74.757462,24.296221],[74.772537,24.27198],[74.815163,24.27701],[74.853317,24.269979],[74.875427,24.278021],[74.905853,24.233721],[74.880173,24.21648],[74.900337,24.174301],[74.927513,24.15715],[74.93914,24.121111],[74.959518,24.11009],[74.992989,24.029701],[74.972229,24.00363],[74.963348,23.973671],[74.94146,23.96052],[74.914619,23.91247],[74.90519,23.868111],[74.915817,23.845671],[74.910339,23.80084],[74.92762,23.79833],[74.940567,23.734871],[74.92424,23.719151],[74.924217,23.668501],[74.93972,23.630371],[74.906029,23.622952],[74.886093,23.606428],[74.851479,23.5574],[74.802887,23.534052],[74.774063,23.543303],[74.742371,23.51948],[74.669327,23.483892],[74.658943,23.466801],[74.61338,23.461361],[74.598457,23.42976],[74.573143,23.419243],[74.572411,23.383329],[74.54583,23.363798],[74.533661,23.32303],[74.548569,23.28676],[74.615303,23.284601],[74.632141,23.263401],[74.673126,23.27487],[74.701149,23.272142],[74.745697,23.212111],[74.715523,23.19467],[74.669159,23.20149],[74.608063,23.144821],[74.5457,23.132071],[74.535439,23.101513],[74.512283,23.088831],[74.467247,23.085258],[74.433167,23.10568],[74.39119,23.112],[74.347878,23.070801],[74.322777,23.062691],[74.282539,23.095013],[74.288147,23.118731],[74.271828,23.15601],[74.249779,23.178431],[74.207542,23.192051],[74.182991,23.15222],[74.155167,23.157751],[74.127022,23.17885],[74.124702,23.20657],[74.139481,23.226822],[74.136108,23.264721],[74.106583,23.294123],[74.048737,23.295061],[74.032661,23.33235],[73.990776,23.337629],[73.962471,23.38139],[73.938896,23.341419],[73.894272,23.337139],[73.86676,23.395771],[73.826889,23.44684],[73.783066,23.43461],[73.764717,23.458578],[73.717216,23.41884],[73.704216,23.455782],[73.632751,23.452393],[73.643822,23.49678],[73.658447,23.514153],[73.637001,23.53113],[73.660736,23.622902],[73.619019,23.651423],[73.570747,23.653511],[73.526726,23.61062],[73.501373,23.635441],[73.510353,23.69698],[73.479271,23.708973],[73.450821,23.75259],[73.420486,23.779331],[73.400009,23.783978],[73.3759,23.76667],[73.36113,23.791651],[73.372673,23.821922],[73.359848,23.85463],[73.386497,23.905771],[73.42012,23.923401],[73.421463,23.97467],[73.410606,23.998331],[73.413757,24.051069],[73.369629,24.08798],[73.369621,24.112492],[73.335182,24.11511],[73.326561,24.0625],[73.291031,24.027403],[73.252541,24.01112],[73.200638,24.04524],[73.223816,24.098221],[73.17173,24.111322],[73.123398,24.140301],[73.082687,24.18498],[73.091728,24.220881],[73.116066,24.26259],[73.138947,24.28005],[73.144958,24.307858],[73.173302,24.30105],[73.187012,24.334949],[73.21106,24.33423],[73.231476,24.36466],[73.210983,24.37542],[73.180176,24.35067],[73.127388,24.36883],[73.084961,24.39447],[73.106247,24.420321],[73.107193,24.45682],[73.094383,24.494728],[73.051041,24.46526],[73.021851,24.465113],[72.981003,24.45105],[72.990616,24.420891],[72.964188,24.392221],[72.977493,24.358841],[72.923912,24.326323],[72.900558,24.351448],[72.868118,24.36581],[72.815346,24.358191],[72.732536,24.361271],[72.693466,24.419281],[72.693016,24.460161],[72.658638,24.45643],[72.588501,24.472502],[72.542137,24.504869],[72.500557,24.450291],[72.510002,24.418343],[72.464676,24.40712],[72.456238,24.438129],[72.436676,24.46051],[72.448151,24.49332],[72.421112,24.508068],[72.386322,24.500511],[72.357933,24.552511],[72.29512,24.538441],[72.271683,24.550159],[72.250999,24.58016],[72.276711,24.59918],[72.27475,24.622231],[72.229988,24.632881],[72.185898,24.60943],[72.150726,24.634102],[72.116547,24.633369],[72.0849,24.652752],[72.085251,24.697008],[72.05249,24.70579],[71.99408,24.677551],[71.993393,24.65671],[71.934509,24.62685],[71.925926,24.662083],[71.871101,24.672218],[71.868683,24.62348],[71.846573,24.614861],[71.811768,24.62182],[71.812927,24.660879],[71.784508,24.668859],[71.745773,24.65428],[71.716316,24.654329],[71.66156,24.633261],[71.616592,24.670681],[71.536972,24.678921],[71.488319,24.673851],[71.42231,24.638102],[71.380737,24.621382],[71.356712,24.654051],[71.326492,24.642929],[71.297737,24.607641],[71.119278,24.66865],[71.10714,24.680651],[71.072853,24.712],[71.035309,24.798771],[71.003998,24.852892],[70.945488,24.934542],[70.925606,24.994711],[70.89431,25.144058],[70.759056,25.27496],[70.744263,25.320961],[70.674171,25.38932],[70.687737,25.51823],[70.676216,25.52387],[70.681137,25.660761],[70.665962,25.697229],[70.646866,25.706541],[70.601707,25.703251],[70.532776,25.676189],[70.490303,25.675961],[70.399658,25.663799],[70.285263,25.698931],[70.272316,25.708731],[70.244507,25.76627],[70.203217,25.805241],[70.177963,25.8195],[70.165367,25.844231],[70.106682,25.92421],[70.091301,25.965158],[70.080452,26.058237],[70.094276,26.097363],[70.145195,26.166155],[70.172668,26.245077],[70.16674,26.306997],[70.178307,26.349771],[70.175995,26.433296],[70.183899,26.486834],[70.16774,26.550743],[70.10688,26.589521],[70.066193,26.599291],[70.024849,26.598711],[69.918343,26.582603],[69.855553,26.58292],[69.815361,26.592157],[69.771942,26.613747],[69.72187,26.653843],[69.522415,26.736012],[69.507652,26.748451],[69.483734,26.806231],[69.500938,26.900331],[69.513206,27.016869],[69.565186,27.138475],[69.586662,27.177984],[69.665947,27.251436],[69.812546,27.359612],[69.861969,27.402779],[69.936249,27.502108],[70.016266,27.555996],[70.024567,27.569691],[70.107811,27.766872],[70.156952,27.834049],[70.207596,27.885384],[70.30291,27.946173],[70.366165,28.008249],[70.479088,28.033737],[70.530334,28.032488],[70.56263,28.019802],[70.660698,27.930502],[70.672104,27.914318],[70.678413,27.839052],[70.737953,27.742167],[70.757668,27.717209],[70.818993,27.704269],[70.90686,27.70064],[71.033989,27.757261],[71.208656,27.82435],[71.272957,27.841928],[71.409729,27.865789],[71.5308,27.865301],[71.586578,27.8703],[71.658287,27.868931],[71.897377,27.95742],[71.912361,28.048071],[71.930573,28.12195],[71.99588,28.206957],[72.126129,28.303501],[72.184425,28.358006],[72.208847,28.399982],[72.301956,28.664816],[72.326286,28.698893],[72.384697,28.763941],[72.519852,28.828609],[72.65065,28.903351],[72.74144,28.948299],[72.928207,29.019939],[72.943756,29.029911],[73.000031,29.147366],[73.078461,29.2334],[73.137016,29.329309],[73.191292,29.42857],[73.271317,29.556961],[73.340309,29.76885],[73.385399,29.92602],[73.412804,29.9492],[73.611183,30.022409],[73.753983,30.05654],[73.794083,30.069658],[73.837708,30.108702],[73.966316,30.195049],[73.962471,30.127501],[73.918213,30.06815],[73.898407,30.05365],[73.881126,29.996281],[73.891182,29.97007],[74.069199,29.96887],[74.251907,29.955259],[74.28997,29.956261],[74.403793,29.94734],[74.519066,29.94335]]]},"properties":{"ID_0":105,"ISO":"IN-RJ","NAME_0":"India","ID_1":29,"NAME_1":"Rajasthan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[88.751686,27.148211],[88.717796,27.14397],[88.711807,27.16515],[88.68441,27.180229],[88.659599,27.16221],[88.619019,27.187853],[88.591476,27.19446],[88.520477,27.17503],[88.521713,27.150343],[88.495613,27.12536],[88.466721,27.113941],[88.454498,27.089649],[88.431946,27.08161],[88.363876,27.098421],[88.304497,27.128601],[88.277351,27.131191],[88.232506,27.119768],[88.213837,27.135122],[88.178993,27.13471],[88.15844,27.114351],[88.136627,27.116879],[88.085846,27.14151],[88.08326,27.165043],[88.058197,27.21389],[88.016968,27.218872],[88.033417,27.249716],[88.034294,27.285995],[88.069214,27.335581],[88.044418,27.370716],[88.053215,27.412615],[88.081268,27.431768],[88.046616,27.478415],[88.064117,27.511816],[88.063484,27.539726],[88.095413,27.597315],[88.116318,27.61035],[88.122627,27.645267],[88.147255,27.665403],[88.161049,27.740618],[88.181213,27.746815],[88.199921,27.790529],[88.187897,27.810307],[88.203926,27.837315],[88.151314,27.876514],[88.129982,27.881516],[88.113892,27.912191],[88.139061,27.96348],[88.173622,27.94471],[88.203476,27.966619],[88.232773,27.965879],[88.243889,27.94854],[88.337761,27.987989],[88.388802,27.97784],[88.426537,28.00812],[88.461601,28.01981],[88.481857,28.04501],[88.53334,28.036619],[88.574837,28.085609],[88.637688,28.10437],[88.666771,28.07408],[88.685799,28.078979],[88.751083,28.073313],[88.799446,28.030691],[88.829056,28.01516],[88.840881,27.991001],[88.83625,27.932001],[88.858948,27.92527],[88.880188,27.895241],[88.880997,27.838961],[88.855736,27.818123],[88.852333,27.77832],[88.862381,27.739],[88.845528,27.700312],[88.846611,27.6689],[88.809906,27.641918],[88.805489,27.603251],[88.767067,27.56496],[88.788567,27.528601],[88.783386,27.455551],[88.809326,27.40519],[88.83831,27.37883],[88.856537,27.38678],[88.889862,27.336401],[88.922371,27.326321],[88.899208,27.274973],[88.872414,27.258842],[88.835197,27.263069],[88.801102,27.24758],[88.80069,27.22068],[88.784676,27.18199],[88.758392,27.17197],[88.751686,27.148211]]]},"properties":{"ID_0":105,"ISO":"IN-SK","NAME_0":"India","ID_1":30,"NAME_1":"Sikkim"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[79.312363,9.328472],[79.335136,9.311531],[79.315971,9.28486],[79.327637,9.259861],[79.376526,9.217083],[79.372086,9.204307],[79.321533,9.236812],[79.277084,9.254584],[79.221252,9.267083],[79.220413,9.292083],[79.267639,9.293195],[79.289307,9.31987],[79.312363,9.328472]]],[[[79.837639,11.94055],[79.814201,11.940621],[79.804588,11.963141],[79.747841,11.928902],[79.733612,11.94721],[79.749649,11.986131],[79.705849,11.97737],[79.691559,12.017441],[79.647316,11.99723],[79.642342,11.975811],[79.694801,11.975111],[79.701553,11.952181],[79.684143,11.92722],[79.724899,11.89151],[79.693451,11.853891],[79.730347,11.84688],[79.754951,11.85784],[79.786163,11.838402],[79.800415,11.808399],[79.777084,11.709583],[79.75708,11.58403],[79.761253,11.537362],[79.787636,11.476252],[79.807358,11.444583],[79.829308,11.354585],[79.838753,11.348194],[79.839302,11.282922],[79.849304,11.233195],[79.859024,11.13986],[79.854576,10.976022],[79.801453,10.986212],[79.783417,10.967332],[79.752602,10.979892],[79.726692,10.952351],[79.703651,10.951861],[79.709229,10.9132],[79.726883,10.897451],[79.77317,10.889561],[79.802788,10.871132],[79.819763,10.811102],[79.85125,10.813771],[79.856247,10.587081],[79.865967,10.416251],[79.884033,10.30597],[79.867081,10.286251],[79.835693,10.275416],[79.744308,10.27486],[79.763748,10.300972],[79.705971,10.323472],[79.647087,10.320142],[79.627357,10.345422],[79.613472,10.317361],[79.619858,10.29875],[79.396797,10.31792],[79.370697,10.295694],[79.325966,10.281811],[79.294861,10.260695],[79.267639,10.229861],[79.280693,10.212915],[79.241249,10.180695],[79.226517,10.098471],[79.252357,10.066531],[79.257362,10.034311],[79.242363,10.024862],[79.155136,9.932361],[79.128471,9.894584],[79.124313,9.86459],[79.091248,9.827641],[79.057358,9.772083],[79.039307,9.76403],[78.979858,9.68736],[78.959862,9.630416],[78.934288,9.606811],[78.924026,9.572362],[78.914864,9.494028],[78.90097,9.46819],[78.927086,9.422639],[78.967918,9.374861],[79.02153,9.327637],[79.065407,9.299581],[79.109306,9.288471],[79.144859,9.291251],[79.169304,9.279582],[79.09375,9.259861],[78.979027,9.273472],[78.925697,9.265973],[78.906525,9.249584],[78.860138,9.253472],[78.756805,9.215971],[78.73542,9.211812],[78.718475,9.19014],[78.667358,9.197084],[78.645142,9.18154],[78.65097,9.159032],[78.614304,9.152083],[78.575691,9.131532],[78.552361,9.137362],[78.457642,9.126531],[78.41153,9.112084],[78.349586,9.06125],[78.272636,9.005418],[78.237358,8.984582],[78.19458,8.938473],[78.171249,8.887083],[78.162636,8.773472],[78.171524,8.745694],[78.154587,8.71181],[78.10125,8.638194],[78.10125,8.612082],[78.138748,8.588751],[78.12236,8.516532],[78.130417,8.49764],[78.087639,8.452641],[78.064857,8.41903],[78.054863,8.382083],[78.022919,8.35903],[77.980408,8.34014],[77.953751,8.314028],[77.88903,8.273195],[77.80014,8.241531],[77.784027,8.206528],[77.742638,8.175416],[77.715973,8.165971],[77.612923,8.150143],[77.575691,8.135695],[77.559303,8.119584],[77.55986,8.09042],[77.536247,8.078195],[77.423752,8.09986],[77.350418,8.122921],[77.303749,8.131805],[77.302086,8.143193],[77.184029,8.219861],[77.160973,8.245973],[77.090698,8.29747],[77.121948,8.322942],[77.149773,8.321942],[77.153687,8.377441],[77.179779,8.409091],[77.188683,8.434741],[77.209518,8.437719],[77.190918,8.488191],[77.222557,8.488321],[77.247543,8.50138],[77.26516,8.53745],[77.228279,8.612901],[77.198479,8.6411],[77.179291,8.699619],[77.176521,8.735021],[77.214676,8.775761],[77.217361,8.79703],[77.247047,8.83188],[77.239868,8.868061],[77.206253,8.893182],[77.180168,8.94702],[77.132179,9.01185],[77.153763,9.03656],[77.180191,9.044801],[77.195862,9.088422],[77.232582,9.117911],[77.251778,9.143041],[77.250267,9.19024],[77.259499,9.224411],[77.266823,9.29088],[77.32061,9.35109],[77.321678,9.40565],[77.351608,9.449701],[77.372238,9.445271],[77.396233,9.496542],[77.350548,9.526292],[77.350571,9.54026],[77.304306,9.593041],[77.261139,9.56668],[77.222809,9.57279],[77.185966,9.605922],[77.155502,9.601501],[77.165657,9.64823],[77.191689,9.686182],[77.189926,9.71551],[77.208229,9.72167],[77.209816,9.779941],[77.233986,9.78852],[77.218987,9.813251],[77.22374,9.842961],[77.199112,9.865981],[77.221916,9.92282],[77.261421,9.963721],[77.240707,10.002891],[77.248932,10.015811],[77.188141,10.095652],[77.230507,10.12012],[77.261017,10.128692],[77.264412,10.17974],[77.280449,10.207252],[77.251221,10.224361],[77.250549,10.253751],[77.214493,10.305801],[77.22216,10.340301],[77.162956,10.346281],[77.114258,10.31056],[77.073441,10.295792],[77.046097,10.27429],[77.038551,10.24816],[76.981453,10.21991],[76.892319,10.232671],[76.862068,10.28255],[76.819672,10.29524],[76.839348,10.35971],[76.815666,10.386531],[76.807327,10.41492],[76.817451,10.43849],[76.829727,10.585062],[76.815399,10.5883],[76.804993,10.626341],[76.87262,10.629432],[76.870163,10.6641],[76.855072,10.6724],[76.875046,10.70672],[76.897507,10.7708],[76.888298,10.799882],[76.859993,10.799802],[76.817558,10.861801],[76.772987,10.881641],[76.732689,10.88098],[76.652786,10.91996],[76.660446,10.96046],[76.677773,10.979701],[76.690407,11.0175],[76.712051,11.032451],[76.756973,11.024591],[76.734497,11.06389],[76.745728,11.083921],[76.740608,11.10991],[76.696678,11.132681],[76.686012,11.157701],[76.721153,11.184511],[76.726547,11.20647],[76.696968,11.231331],[76.623039,11.185671],[76.577782,11.196841],[76.521233,11.19027],[76.506012,11.20198],[76.442879,11.200091],[76.446388,11.230461],[76.513527,11.26196],[76.539787,11.320951],[76.5382,11.35159],[76.448387,11.381419],[76.361481,11.447961],[76.333687,11.458711],[76.320908,11.444699],[76.278061,11.474531],[76.257927,11.473223],[76.2332,11.51868],[76.225746,11.56444],[76.270973,11.592909],[76.297897,11.564331],[76.370697,11.59347],[76.380066,11.622419],[76.421288,11.6251],[76.423462,11.659321],[76.451363,11.65512],[76.504211,11.698041],[76.540421,11.670509],[76.553627,11.61292],[76.607872,11.600442],[76.625656,11.603819],[76.751396,11.606709],[76.816513,11.59721],[76.850906,11.60183],[76.829697,11.629341],[76.830032,11.64904],[76.853561,11.698782],[76.880867,11.724591],[76.899689,11.783272],[76.944443,11.781341],[77.004433,11.80302],[77.04126,11.77759],[77.07589,11.723891],[77.096268,11.723121],[77.113892,11.76183],[77.189667,11.78282],[77.227051,11.78375],[77.241737,11.80246],[77.284813,11.798362],[77.326118,11.75894],[77.355156,11.778372],[77.412468,11.762281],[77.431053,11.771682],[77.456299,11.839122],[77.453926,11.890551],[77.475967,11.88955],[77.490433,11.92974],[77.523651,11.921481],[77.547997,11.93075],[77.573288,11.924011],[77.636726,11.940261],[77.663712,11.95296],[77.689453,12.00995],[77.720367,12.053352],[77.746101,12.069321],[77.767006,12.10914],[77.74025,12.12929],[77.726357,12.16732],[77.655449,12.18775],[77.604118,12.195162],[77.511307,12.183971],[77.465668,12.202261],[77.470177,12.26187],[77.518341,12.26953],[77.556099,12.29716],[77.568596,12.32419],[77.603828,12.353751],[77.615829,12.404881],[77.625206,12.477262],[77.578506,12.507011],[77.570053,12.557932],[77.582123,12.605089],[77.597816,12.62102],[77.59034,12.657541],[77.654289,12.67417],[77.667809,12.65064],[77.695473,12.651239],[77.703819,12.673741],[77.750237,12.687161],[77.758369,12.72932],[77.787933,12.781321],[77.801018,12.820809],[77.8256,12.85899],[77.882263,12.858399],[77.914368,12.873542],[77.927803,12.85047],[77.909233,12.82202],[77.932976,12.812921],[77.958,12.836342],[77.981346,12.810421],[78.022156,12.841221],[78.064568,12.83017],[78.120667,12.770012],[78.22065,12.75259],[78.219276,12.747029],[78.228867,12.720202],[78.227226,12.715172],[78.220329,12.70329],[78.209808,12.699261],[78.203247,12.69901],[78.199997,12.696221],[78.196083,12.69669],[78.194733,12.69527],[78.199341,12.68998],[78.198776,12.688711],[78.189461,12.683551],[78.18985,12.68131],[78.195313,12.67997],[78.196838,12.678591],[78.200111,12.675642],[78.228081,12.673851],[78.227448,12.689281],[78.264427,12.69184],[78.284187,12.66762],[78.287003,12.65815],[78.290459,12.652921],[78.308769,12.65],[78.329399,12.638431],[78.338837,12.631901],[78.348358,12.623641],[78.36055,12.615111],[78.36834,12.61184],[78.399803,12.613319],[78.407112,12.61752],[78.412331,12.618311],[78.418343,12.620642],[78.424896,12.614901],[78.439438,12.61692],[78.451401,12.615751],[78.454781,12.61202],[78.459618,12.61741],[78.459076,12.63152],[78.461899,12.632279],[78.462929,12.63537],[78.459358,12.638761],[78.457657,12.66225],[78.493446,12.669591],[78.493011,12.6937],[78.494926,12.70373],[78.497887,12.698511],[78.509811,12.69878],[78.510513,12.70177],[78.509033,12.704902],[78.493629,12.711169],[78.491463,12.71707],[78.484413,12.72305],[78.47966,12.73002],[78.484352,12.734781],[78.494316,12.730371],[78.497101,12.724119],[78.501801,12.72151],[78.503159,12.7181],[78.503563,12.713371],[78.507408,12.713091],[78.510941,12.721722],[78.512306,12.70801],[78.515976,12.703521],[78.526413,12.70123],[78.527458,12.697301],[78.525612,12.69475],[78.520859,12.697182],[78.518539,12.69238],[78.524368,12.67969],[78.527748,12.679002],[78.531273,12.679932],[78.541359,12.685012],[78.552246,12.697091],[78.545509,12.707381],[78.548248,12.71498],[78.552246,12.720391],[78.553932,12.726061],[78.545647,12.728612],[78.554062,12.74607],[78.558113,12.751649],[78.58007,12.767241],[78.591568,12.83855],[78.624771,12.914181],[78.646713,12.91902],[78.635666,12.93834],[78.628998,12.953111],[78.637917,12.95441],[78.620247,12.97391],[78.613663,12.97889],[78.620499,12.982521],[78.637337,12.996841],[78.641716,13.001611],[78.648956,13.016352],[78.651108,13.017932],[78.693756,13.004392],[78.695976,13.012521],[78.701256,13.04426],[78.702446,13.056151],[78.739517,13.045491],[78.746017,13.045409],[78.754463,13.046982],[78.777527,13.05316],[78.783066,13.056372],[78.786591,13.062152],[78.800873,13.07553],[78.880409,13.069602],[78.88089,13.044281],[78.879372,13.025501],[78.88192,13.019762],[78.890106,13.01983],[78.915932,13.023062],[78.922997,13.021761],[78.924637,13.018641],[78.92865,13.021451],[78.92746,13.023461],[78.920433,13.028621],[78.917397,13.03255],[78.904396,13.031051],[78.898399,13.031691],[78.893463,13.035092],[78.900917,13.052101],[78.914383,13.067761],[78.930077,13.066022],[78.936638,13.069971],[78.945847,13.06351],[78.959183,13.06544],[78.962936,13.07156],[78.981743,13.0762],[78.988251,13.072652],[78.995239,13.063041],[79.000366,13.057881],[79.011429,13.05783],[79.02282,13.056401],[79.025887,13.04958],[79.033539,13.04566],[79.043892,13.04372],[79.053268,13.037991],[79.053978,13.028161],[79.060577,13.02084],[79.069069,13.014151],[79.082787,13.012471],[79.104378,13.02422],[79.11927,13.02257],[79.152702,13.007293],[79.161201,13.011799],[79.170593,13.01568],[79.173103,13.019281],[79.17662,13.02977],[79.176971,13.03338],[79.176537,13.038271],[79.169426,13.05301],[79.1791,13.060112],[79.180656,13.06704],[79.186996,13.07705],[79.188919,13.084619],[79.193321,13.08969],[79.202209,13.09029],[79.207443,13.091441],[79.214287,13.09684],[79.226357,13.13461],[79.24334,13.13335],[79.24424,13.141151],[79.247223,13.148082],[79.251373,13.146199],[79.25267,13.141299],[79.25647,13.13654],[79.261208,13.14075],[79.26741,13.141201],[79.271286,13.138061],[79.272667,13.12666],[79.273849,13.120901],[79.28495,13.12285],[79.288101,13.11828],[79.298767,13.114832],[79.29747,13.097371],[79.307938,13.096911],[79.310028,13.09994],[79.309731,13.1069],[79.312393,13.11377],[79.316727,13.119369],[79.330688,13.121231],[79.33532,13.12751],[79.337791,13.123171],[79.344353,13.123561],[79.350098,13.12545],[79.347771,13.163019],[79.361206,13.156041],[79.364937,13.160371],[79.367172,13.165581],[79.370781,13.16859],[79.369003,13.176261],[79.378357,13.182431],[79.384377,13.184721],[79.397919,13.186422],[79.413292,13.185849],[79.420593,13.184462],[79.42379,13.187461],[79.42157,13.193181],[79.423157,13.198911],[79.421631,13.208531],[79.445503,13.216771],[79.445442,13.221721],[79.442459,13.22918],[79.436096,13.229832],[79.418167,13.218462],[79.417,13.212201],[79.410843,13.212162],[79.408653,13.21959],[79.409683,13.22815],[79.407341,13.237661],[79.408669,13.246741],[79.4123,13.25751],[79.419022,13.266339],[79.417992,13.269061],[79.418373,13.27459],[79.425026,13.281341],[79.421776,13.28666],[79.405426,13.285411],[79.385628,13.294701],[79.374603,13.30304],[79.401398,13.315751],[79.41732,13.321959],[79.454643,13.324321],[79.479279,13.32146],[79.487228,13.316551],[79.49781,13.314821],[79.522713,13.315931],[79.535782,13.31107],[79.538872,13.300921],[79.541443,13.278932],[79.554787,13.259181],[79.565376,13.249401],[79.570961,13.247379],[79.580261,13.245371],[79.585419,13.247101],[79.586449,13.253481],[79.588676,13.260411],[79.601143,13.26773],[79.668533,13.281931],[79.679321,13.269332],[79.684303,13.25668],[79.673767,13.247021],[79.671112,13.235842],[79.673317,13.22949],[79.680687,13.228371],[79.684563,13.23385],[79.691933,13.238529],[79.696037,13.233891],[79.695747,13.223761],[79.689438,13.21125],[79.699638,13.202681],[79.705688,13.209231],[79.711426,13.21048],[79.715706,13.2144],[79.718567,13.222591],[79.722832,13.221851],[79.726517,13.217381],[79.732529,13.214961],[79.737503,13.205521],[79.738266,13.198259],[79.744377,13.194911],[79.751831,13.20478],[79.757721,13.205571],[79.773567,13.21752],[79.777336,13.217192],[79.783257,13.217919],[79.783257,13.228162],[79.775391,13.234119],[79.752777,13.24376],[79.745583,13.248211],[79.739388,13.254431],[79.721779,13.265731],[79.721291,13.27224],[79.729637,13.27508],[79.741493,13.276662],[79.746147,13.280001],[79.749756,13.290881],[79.750557,13.29881],[79.754059,13.30279],[79.768356,13.28963],[79.7798,13.28207],[79.787277,13.28462],[79.800293,13.304321],[79.808487,13.30508],[79.824043,13.30232],[79.851166,13.30343],[79.870552,13.31176],[79.874962,13.317401],[79.880157,13.320439],[79.886078,13.321292],[79.897362,13.32949],[79.903862,13.333271],[79.925507,13.33594],[79.953583,13.374111],[79.93248,13.404371],[79.950851,13.40812],[79.958481,13.412851],[79.963226,13.417911],[79.961021,13.427661],[79.963066,13.440573],[79.962189,13.444139],[79.961861,13.45128],[79.968269,13.456431],[79.987473,13.46191],[79.990562,13.46206],[79.990761,13.45922],[79.995377,13.459451],[80.004402,13.47826],[80.005898,13.487771],[80.024818,13.4867],[80.036041,13.48448],[79.989677,13.52676],[79.994133,13.5296],[80.007713,13.532372],[80.014496,13.52849],[80.017548,13.525131],[80.02951,13.52359],[80.034096,13.521801],[80.045418,13.521981],[80.050987,13.530512],[80.059509,13.532549],[80.065613,13.53476],[80.067177,13.53592],[80.069443,13.537591],[80.088669,13.52553],[80.096703,13.50821],[80.099426,13.50631],[80.100357,13.5052],[80.120811,13.50236],[80.132713,13.495919],[80.137611,13.491151],[80.144577,13.485611],[80.1521,13.47888],[80.216248,13.481832],[80.259888,13.447362],[80.267998,13.414342],[80.277893,13.407532],[80.279999,13.402051],[80.278946,13.39906],[80.277222,13.399211],[80.276291,13.3994],[80.273918,13.397691],[80.27597,13.389142],[80.315369,13.371451],[80.329582,13.400141],[80.345703,13.327641],[80.342918,13.271805],[80.310143,13.163195],[80.299858,13.142642],[80.304306,13.09375],[80.282082,13.056531],[80.279297,13.025141],[80.261253,12.949309],[80.249573,12.860141],[80.246803,12.80625],[80.254028,12.779031],[80.165695,12.524861],[80.157364,12.471249],[80.115135,12.404028],[80.054031,12.335139],[80.013466,12.26347],[79.985138,12.250422],[79.989586,12.224305],[79.884865,12.064861],[79.847076,11.980141],[79.837639,11.94055]]]]},"properties":{"ID_0":105,"ISO":"IN-TN","NAME_0":"India","ID_1":31,"NAME_1":"Tamil Nadu"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[92.230995,24.504091],[92.231087,24.460381],[92.2565,24.4363],[92.273087,24.388451],[92.212852,24.24931],[92.296608,24.25173],[92.29763,24.227228],[92.324608,24.20579],[92.32856,24.166113],[92.327019,24.076443],[92.317162,24.01763],[92.329056,23.989651],[92.31263,23.970211],[92.3134,23.93453],[92.331146,23.911802],[92.30986,23.86264],[92.287796,23.866961],[92.259399,23.814991],[92.268501,23.728611],[92.247452,23.7241],[92.24691,23.691759],[92.217728,23.69519],[92.150459,23.732491],[92.087029,23.65387],[92.070671,23.64465],[92.001976,23.68861],[91.98362,23.72974],[91.962112,23.727701],[91.942307,23.681808],[91.963867,23.578831],[91.961327,23.516201],[91.976059,23.49596],[91.941391,23.460831],[91.94178,23.43759],[91.903511,23.441448],[91.850456,23.402769],[91.843971,23.380371],[91.80822,23.338659],[91.770912,23.26376],[91.799408,23.196678],[91.814522,23.13872],[91.834518,23.091881],[91.82338,23.075663],[91.777969,23.064928],[91.75605,23.015619],[91.728111,22.996889],[91.698341,23.002642],[91.657036,22.986668],[91.62426,22.951311],[91.562798,22.976452],[91.546837,22.99943],[91.554199,23.033779],[91.515503,23.10556],[91.520767,23.119728],[91.498299,23.15081],[91.506363,23.186623],[91.489517,23.202209],[91.457787,23.255899],[91.421776,23.25724],[91.395821,23.22344],[91.391472,23.15258],[91.421997,23.05925],[91.377678,23.064051],[91.353172,23.101351],[91.330338,23.157673],[91.32534,23.25375],[91.297256,23.32098],[91.309273,23.35524],[91.292076,23.36607],[91.283287,23.41041],[91.259857,23.448481],[91.253777,23.489719],[91.204193,23.524229],[91.193626,23.574739],[91.169006,23.595133],[91.16259,23.628269],[91.176163,23.65719],[91.207077,23.651423],[91.201012,23.69243],[91.158287,23.691221],[91.155853,23.72344],[91.172363,23.75206],[91.210907,23.75156],[91.234093,23.76936],[91.237617,23.811531],[91.257607,23.839651],[91.232162,23.89949],[91.281563,23.980188],[91.306412,23.998569],[91.36058,23.986511],[91.390831,24.029053],[91.396507,24.051352],[91.377083,24.081251],[91.375427,24.107531],[91.410316,24.111111],[91.490486,24.097801],[91.545197,24.07612],[91.596199,24.08021],[91.634079,24.10257],[91.644493,24.16939],[91.660233,24.187571],[91.710068,24.151953],[91.76223,24.143431],[91.743469,24.247128],[91.841751,24.19772],[91.871979,24.17411],[91.888252,24.13703],[91.909866,24.142269],[91.911926,24.171688],[91.941856,24.267578],[91.920433,24.335751],[91.957108,24.356251],[91.974518,24.331558],[91.998306,24.339291],[91.978439,24.380541],[92.09655,24.375481],[92.119209,24.38381],[92.13913,24.42445],[92.172798,24.430891],[92.157791,24.460377],[92.161461,24.5123],[92.173363,24.53397],[92.207253,24.506632],[92.230995,24.504091]]]},"properties":{"ID_0":105,"ISO":"IN-TR","NAME_0":"India","ID_1":32,"NAME_1":"Tripura"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[80.07238,28.829744],[80.119804,28.82873],[80.172989,28.782001],[80.217728,28.755283],[80.252289,28.757822],[80.257904,28.729336],[80.279221,28.709915],[80.31852,28.700115],[80.327583,28.666304],[80.373322,28.629021],[80.41642,28.639114],[80.462814,28.620716],[80.473343,28.590527],[80.508141,28.567987],[80.523315,28.576826],[80.505188,28.665226],[80.541618,28.690538],[80.592041,28.679726],[80.581848,28.661209],[80.613289,28.639212],[80.652901,28.6339],[80.716301,28.567898],[80.76963,28.565517],[80.786278,28.52923],[80.856995,28.497044],[80.877625,28.509718],[80.910309,28.49754],[80.907448,28.465727],[80.946518,28.454716],[80.980888,28.434311],[81.001396,28.45392],[81.081535,28.384838],[81.212418,28.360516],[81.23629,28.32456],[81.234535,28.288885],[81.322411,28.197168],[81.319786,28.133419],[81.373116,28.142216],[81.376938,28.176893],[81.412498,28.174553],[81.448814,28.160215],[81.451767,28.140751],[81.485817,28.118132],[81.480225,28.082516],[81.549072,28.049036],[81.645264,27.993711],[81.704002,27.986521],[81.806709,27.90325],[81.835419,27.897415],[81.904022,27.853683],[81.970116,27.928816],[82.072884,27.922525],[82.125221,27.86484],[82.155914,27.866116],[82.210205,27.842991],[82.304993,27.772978],[82.369019,27.742414],[82.403687,27.702545],[82.450714,27.678616],[82.475159,27.676342],[82.518112,27.690243],[82.543137,27.685535],[82.607018,27.705793],[82.707039,27.716364],[82.72023,27.687275],[82.716217,27.662415],[82.739616,27.640549],[82.735031,27.61853],[82.757385,27.588354],[82.739624,27.546732],[82.751419,27.522614],[82.737007,27.503101],[82.803612,27.496391],[82.837051,27.501509],[82.931618,27.500866],[82.956223,27.467808],[83.036118,27.448715],[83.166519,27.457516],[83.190216,27.454016],[83.212479,27.424189],[83.274216,27.383415],[83.267654,27.365406],[83.296532,27.334019],[83.354515,27.339815],[83.39019,27.375721],[83.407585,27.405298],[83.385963,27.442207],[83.403984,27.457493],[83.39093,27.47949],[83.616737,27.469423],[83.833221,27.369509],[83.858505,27.350962],[83.854637,27.31123],[83.908043,27.330391],[83.918831,27.29266],[83.896156,27.277071],[83.901901,27.252131],[83.948143,27.238331],[83.985123,27.181763],[83.941437,27.119831],[83.954941,27.086121],[84.011627,27.104881],[84.020721,27.095482],[83.994896,27.061251],[84.024269,27.04472],[84.049522,26.99081],[84.035149,26.948721],[84.047668,26.931829],[84.052002,26.891701],[84.092621,26.877831],[84.130249,26.885271],[84.131653,26.85569],[84.168922,26.834518],[84.176468,26.85334],[84.228638,26.86981],[84.252113,26.844921],[84.252296,26.80868],[84.224609,26.757101],[84.242279,26.73077],[84.298027,26.753271],[84.318512,26.71623],[84.325661,26.684258],[84.402237,26.671223],[84.414398,26.627171],[84.297028,26.6157],[84.272217,26.599361],[84.201988,26.62434],[84.167252,26.62417],[84.152031,26.6385],[84.080421,26.640753],[84.084763,26.610559],[84.049316,26.56159],[84.04776,26.543489],[83.965416,26.51174],[83.930489,26.52478],[83.906792,26.50676],[83.902283,26.450251],[83.983467,26.4349],[84.016113,26.441971],[84.036186,26.407841],[84.061516,26.390091],[84.171356,26.37398],[84.167206,26.33811],[84.18174,26.317039],[84.157402,26.26092],[84.112953,26.261921],[84.110458,26.241831],[84.073578,26.22488],[84.03363,26.232088],[84.002113,26.19014],[84.027847,26.16296],[84.049057,26.099701],[84.091042,26.09654],[84.136673,26.04701],[84.167267,26.025471],[84.17244,25.998791],[84.201813,26.000561],[84.240486,25.982759],[84.291557,25.94828],[84.351387,25.959341],[84.408302,25.931351],[84.431183,25.89267],[84.485283,25.88925],[84.506523,25.872379],[84.528641,25.877741],[84.546852,25.84132],[84.621117,25.79236],[84.600533,25.76063],[84.626282,25.741602],[84.555626,25.736408],[84.558609,25.700981],[84.51638,25.67771],[84.489342,25.69109],[84.466507,25.685511],[84.448776,25.714491],[84.401878,25.699501],[84.393646,25.728903],[84.354408,25.74362],[84.325623,25.737101],[84.318588,25.67194],[84.290131,25.66283],[84.217079,25.664061],[84.199509,25.67235],[84.194313,25.703421],[84.167503,25.72175],[84.107872,25.72364],[84.069649,25.69561],[84.076508,25.637531],[84.014236,25.616131],[83.944321,25.567341],[83.920982,25.561729],[83.833786,25.462961],[83.838371,25.43689],[83.80294,25.432859],[83.782272,25.398729],[83.748093,25.404341],[83.709473,25.39525],[83.686287,25.36945],[83.656166,25.363661],[83.610657,25.33259],[83.544357,25.313143],[83.508072,25.2862],[83.480263,25.28241],[83.460281,25.25197],[83.409271,25.249281],[83.388222,25.207008],[83.349609,25.19894],[83.343208,25.15867],[83.353439,25.14916],[83.323456,25.048052],[83.319656,25.015541],[83.343872,25.010483],[83.343933,24.963881],[83.357018,24.955353],[83.351387,24.903061],[83.390388,24.83308],[83.386803,24.78422],[83.411293,24.77532],[83.453087,24.73332],[83.479843,24.737831],[83.489609,24.705858],[83.513191,24.678921],[83.49752,24.651661],[83.534531,24.615601],[83.517181,24.54917],[83.498169,24.52706],[83.393013,24.50119],[83.381409,24.45565],[83.400673,24.43714],[83.398956,24.412081],[83.429886,24.40379],[83.443207,24.372789],[83.434311,24.347471],[83.403328,24.337391],[83.37561,24.31345],[83.396156,24.29339],[83.401886,24.266001],[83.3769,24.23093],[83.378342,24.20079],[83.349007,24.126438],[83.323563,24.10133],[83.292427,24.077209],[83.276077,24.023281],[83.216026,23.989403],[83.211212,23.960358],[83.189568,23.921101],[83.145218,23.909943],[83.127411,23.89002],[83.061043,23.87524],[83.036438,23.883051],[82.95359,23.87277],[82.881187,23.91028],[82.8489,23.946833],[82.807777,23.963058],[82.801468,24.001062],[82.745888,24.013111],[82.754921,24.07324],[82.708397,24.080761],[82.701363,24.097071],[82.657387,24.134798],[82.688362,24.14423],[82.720367,24.13899],[82.736137,24.16835],[82.726997,24.223261],[82.749916,24.23613],[82.750587,24.268131],[82.764137,24.292431],[82.760582,24.373041],[82.718498,24.371222],[82.707161,24.38518],[82.725723,24.426258],[82.72377,24.47633],[82.736549,24.499771],[82.715637,24.5133],[82.71611,24.55714],[82.746017,24.541521],[82.800766,24.552681],[82.796371,24.59976],[82.768257,24.597542],[82.7658,24.64163],[82.691696,24.64864],[82.695953,24.67572],[82.66555,24.699862],[82.529266,24.65196],[82.518433,24.678341],[82.486763,24.675501],[82.420151,24.705252],[82.401596,24.6838],[82.411789,24.657848],[82.403526,24.636162],[82.409172,24.59783],[82.360847,24.602001],[82.329773,24.623751],[82.298416,24.628012],[82.291893,24.66478],[82.24305,24.701761],[82.238373,24.75441],[82.195671,24.763748],[82.208717,24.79777],[82.159393,24.792261],[82.132248,24.80448],[82.11219,24.792261],[82.081871,24.822111],[82.00489,24.850691],[81.964981,24.841421],[81.926727,24.86079],[81.902657,24.88413],[81.910309,24.9205],[81.901642,24.982821],[81.829369,25.019333],[81.791656,25.01001],[81.716408,25.052973],[81.681892,25.043772],[81.677803,25.064678],[81.646843,25.075041],[81.621902,25.056921],[81.594467,25.076933],[81.63195,25.10327],[81.592117,25.136381],[81.619659,25.15564],[81.581779,25.16827],[81.566399,25.195749],[81.532539,25.185421],[81.518738,25.151831],[81.491997,25.14876],[81.477722,25.12109],[81.493141,25.110653],[81.483727,25.07494],[81.436409,25.096161],[81.42778,25.13361],[81.38903,25.124262],[81.349411,25.167351],[81.329956,25.172491],[81.268646,25.16519],[81.257957,25.11685],[81.245697,25.105541],[81.261589,25.06846],[81.220238,25.00724],[81.201698,24.995729],[81.206001,24.93924],[81.16143,24.958511],[81.155487,24.931971],[81.128166,24.89362],[81.0895,24.92448],[81.076416,24.952261],[81.026672,24.954969],[81.000023,24.94021],[80.952873,24.93944],[80.936821,24.9725],[80.856613,24.935951],[80.8022,24.94446],[80.818642,24.973631],[80.85025,25.003141],[80.829117,25.02998],[80.870651,25.071051],[80.864983,25.12365],[80.905563,25.16448],[80.869537,25.18866],[80.841888,25.16794],[80.818642,25.13055],[80.750862,25.141701],[80.7173,25.12892],[80.719009,25.104021],[80.775978,25.084301],[80.77594,25.061691],[80.727203,25.071821],[80.673569,25.054171],[80.641457,25.093149],[80.608467,25.0986],[80.622299,25.122021],[80.594589,25.155241],[80.578667,25.088263],[80.543419,25.067661],[80.502319,25.06286],[80.470177,25.044691],[80.440712,25.082069],[80.394127,25.072021],[80.367821,25.025431],[80.314102,25.00351],[80.266937,25.030243],[80.28196,25.063221],[80.304787,25.07551],[80.348618,25.140692],[80.386757,25.162882],[80.423698,25.174143],[80.401657,25.220951],[80.357712,25.251131],[80.340973,25.278601],[80.302673,25.296961],[80.311737,25.334209],[80.302628,25.35828],[80.309052,25.39184],[80.273727,25.425039],[80.245186,25.40489],[80.188828,25.406431],[80.187897,25.38365],[80.15918,25.377649],[80.127083,25.340618],[80.083298,25.355831],[80.070023,25.3431],[80.020737,25.343161],[79.997337,25.27013],[79.949219,25.265301],[79.8936,25.24621],[79.872459,25.253792],[79.84523,25.236551],[79.860588,25.156061],[79.827217,25.100121],[79.739578,25.14296],[79.666168,25.127121],[79.632851,25.13283],[79.550339,25.169401],[79.513771,25.125723],[79.517227,25.101788],[79.489876,25.08275],[79.436371,25.107821],[79.38929,25.120581],[79.383873,25.17028],[79.409576,25.208761],[79.442398,25.220951],[79.434181,25.241781],[79.401222,25.26236],[79.401886,25.279251],[79.294731,25.340219],[79.260139,25.31024],[79.256508,25.27947],[79.286461,25.281071],[79.31469,25.261393],[79.340088,25.27276],[79.341118,25.23049],[79.278023,25.21064],[79.283516,25.189461],[79.314537,25.151878],[79.276543,25.12026],[79.250603,25.161209],[79.23838,25.116369],[79.197937,25.128189],[79.133377,25.111061],[79.107811,25.1437],[79.119209,25.163441],[79.090576,25.176229],[79.064079,25.172491],[79.024597,25.186571],[79.056442,25.22571],[79.026482,25.234671],[79.01236,25.27404],[78.986771,25.27496],[78.972313,25.24283],[79.000359,25.216051],[78.982407,25.19915],[78.952843,25.220692],[78.924232,25.2106],[78.877136,25.162182],[78.867386,25.18996],[78.881622,25.215471],[78.872177,25.25079],[78.896446,25.249941],[78.9086,25.274361],[78.970276,25.291092],[78.931229,25.332413],[78.885246,25.346691],[78.856438,25.316959],[78.862289,25.283131],[78.845947,25.233789],[78.835052,25.2332],[78.793289,25.2931],[78.83329,25.331341],[78.837738,25.352173],[78.874748,25.387659],[78.974472,25.372561],[78.970222,25.42046],[78.960129,25.43889],[78.929131,25.428329],[78.903229,25.446938],[78.930038,25.46859],[78.935181,25.494301],[78.916687,25.51675],[78.941887,25.531151],[78.925682,25.559958],[78.885536,25.56077],[78.876007,25.524321],[78.833946,25.516001],[78.85717,25.46714],[78.853699,25.452301],[78.789528,25.483513],[78.724648,25.463308],[78.765373,25.430033],[78.758636,25.404091],[78.764381,25.3584],[78.735672,25.349192],[78.709763,25.376268],[78.65789,25.38798],[78.700241,25.426121],[78.689247,25.445351],[78.632507,25.43301],[78.603493,25.41707],[78.577759,25.37714],[78.576218,25.351931],[78.533592,25.330893],[78.525078,25.30653],[78.487541,25.32019],[78.469261,25.303322],[78.429817,25.29701],[78.454033,25.270601],[78.489326,25.292089],[78.520851,25.288038],[78.568581,25.25861],[78.561493,25.227449],[78.593712,25.157391],[78.597168,25.097872],[78.620323,25.091593],[78.64193,25.061491],[78.624916,24.961941],[78.653717,24.94422],[78.668396,24.902399],[78.696342,24.894661],[78.764481,24.861368],[78.78054,24.814972],[78.764549,24.794992],[78.772392,24.704142],[78.740067,24.65996],[78.751991,24.602463],[78.776901,24.59309],[78.801826,24.607828],[78.830849,24.608891],[78.862808,24.641121],[78.881721,24.6397],[78.913147,24.581301],[78.945503,24.55331],[78.943138,24.48488],[78.90094,24.488371],[78.912796,24.463511],[78.944397,24.443258],[78.981987,24.447241],[78.987778,24.427971],[78.967171,24.373583],[78.96814,24.356951],[78.907761,24.301231],[78.909851,24.272921],[78.879097,24.254011],[78.88105,24.228889],[78.858208,24.213541],[78.810501,24.208521],[78.784599,24.185141],[78.754288,24.24725],[78.72654,24.252701],[78.69886,24.23448],[78.669121,24.24502],[78.654449,24.273741],[78.61734,24.296122],[78.578438,24.35708],[78.552582,24.360628],[78.499939,24.394331],[78.475327,24.36743],[78.467796,24.33934],[78.440292,24.325531],[78.434776,24.297661],[78.385666,24.27305],[78.3414,24.30781],[78.326576,24.338469],[78.362572,24.378151],[78.266876,24.447371],[78.263237,24.483082],[78.239632,24.48946],[78.224182,24.54134],[78.255318,24.552299],[78.269852,24.615381],[78.256691,24.648621],[78.267998,24.6696],[78.226318,24.73625],[78.225822,24.776571],[78.186897,24.84281],[78.165329,24.848171],[78.170448,24.885269],[78.199738,24.896231],[78.213913,24.915571],[78.289597,24.96814],[78.327538,24.999559],[78.338066,25.02734],[78.325249,25.084061],[78.366997,25.104521],[78.389687,25.126991],[78.424683,25.124691],[78.441986,25.157351],[78.385361,25.19516],[78.355217,25.249969],[78.362221,25.26543],[78.345161,25.297941],[78.308029,25.310989],[78.331291,25.33672],[78.323196,25.355268],[78.294228,25.36762],[78.332489,25.404551],[78.33519,25.431051],[78.385689,25.454161],[78.42157,25.47971],[78.408661,25.532902],[78.426132,25.561451],[78.44915,25.55274],[78.481087,25.580433],[78.54715,25.564701],[78.581192,25.564308],[78.60421,25.58729],[78.648621,25.565639],[78.677017,25.594101],[78.794548,25.61755],[78.811249,25.645451],[78.811333,25.67448],[78.791237,25.710541],[78.76075,25.720791],[78.746819,25.74909],[78.775787,25.761499],[78.815826,25.831141],[78.863319,25.80208],[78.865753,25.834351],[78.843979,25.84531],[78.857826,25.872011],[78.883713,25.876471],[78.876381,25.915661],[78.915329,25.949369],[78.943169,25.99069],[78.944328,26.036951],[78.982483,26.073759],[79.003151,26.081793],[78.944389,26.13752],[78.960327,26.15427],[79.000717,26.15498],[79.002327,26.19677],[79.04055,26.22928],[79.057892,26.2838],[79.07769,26.287218],[79.097977,26.31465],[79.126587,26.316031],[79.116623,26.353573],[79.089119,26.377131],[79.080727,26.4055],[79.117233,26.417122],[79.126762,26.444811],[79.092873,26.4573],[79.069069,26.44652],[79.047073,26.46142],[79.060936,26.5033],[79.033096,26.53599],[78.997986,26.55094],[78.982117,26.594179],[79.005661,26.61047],[78.98687,26.647367],[79.001167,26.673901],[78.983887,26.685711],[78.947891,26.662628],[78.948143,26.696741],[78.903946,26.713381],[78.864929,26.70467],[78.811386,26.765471],[78.762146,26.76683],[78.741081,26.792521],[78.715347,26.800213],[78.677361,26.792381],[78.659019,26.76923],[78.620438,26.7752],[78.601967,26.75606],[78.565849,26.75769],[78.515572,26.78511],[78.458138,26.795233],[78.425873,26.832319],[78.385597,26.82794],[78.362503,26.87133],[78.282066,26.864088],[78.255608,26.82029],[78.209793,26.83609],[78.204857,26.87739],[78.248177,26.900631],[78.261223,26.93178],[78.232742,26.933693],[78.139473,26.95713],[78.114899,26.954861],[78.112709,26.92749],[78.086823,26.902008],[78.042236,26.915421],[78.014061,26.908392],[77.962959,26.912571],[77.941971,26.89979],[77.909569,26.91427],[77.890106,26.88946],[77.871468,26.9055],[77.765099,26.93799],[77.723923,26.922951],[77.715843,26.88133],[77.671669,26.874071],[77.657303,26.856411],[77.608536,26.834511],[77.520691,26.822008],[77.497978,26.84795],[77.480988,26.7878],[77.464317,26.76955],[77.428589,26.785789],[77.439217,26.819151],[77.417488,26.842791],[77.42247,26.86702],[77.450523,26.875011],[77.482468,26.90378],[77.57975,26.93087],[77.642273,26.9673],[77.691917,26.978992],[77.703583,27.000311],[77.670769,27.048901],[77.657028,27.022732],[77.598816,27.02883],[77.558937,27.04879],[77.565681,27.078011],[77.518227,27.088093],[77.544449,27.115601],[77.597267,27.129051],[77.614807,27.174789],[77.654617,27.175581],[77.672997,27.200361],[77.642029,27.214769],[77.644203,27.238878],[77.609093,27.287991],[77.616341,27.33831],[77.574547,27.326731],[77.542747,27.342428],[77.497246,27.381363],[77.431892,27.399158],[77.415176,27.425371],[77.429596,27.462049],[77.393593,27.481941],[77.37619,27.5186],[77.340263,27.524773],[77.325783,27.596878],[77.311211,27.611691],[77.342323,27.65303],[77.333939,27.70792],[77.302353,27.713211],[77.310677,27.73687],[77.304146,27.78801],[77.27578,27.806549],[77.312927,27.830051],[77.339333,27.859591],[77.412392,27.859072],[77.40155,27.881901],[77.422203,27.89448],[77.4422,27.878481],[77.469818,27.89473],[77.468727,27.932911],[77.519211,27.931881],[77.535919,27.965549],[77.535217,27.99333],[77.477638,28.049101],[77.473068,28.10372],[77.499397,28.122591],[77.498909,28.16301],[77.531769,28.170259],[77.537949,28.190891],[77.492737,28.28063],[77.495789,28.307041],[77.466408,28.341209],[77.49424,28.358261],[77.469536,28.3943],[77.474556,28.413511],[77.435997,28.43161],[77.425781,28.45454],[77.397797,28.458641],[77.360481,28.49786],[77.337738,28.50897],[77.295189,28.561201],[77.307137,28.59691],[77.336182,28.60887],[77.311211,28.644642],[77.327583,28.691841],[77.306221,28.71767],[77.259918,28.738123],[77.194443,28.802292],[77.217323,28.835279],[77.186867,28.866819],[77.18177,28.889801],[77.216873,28.900343],[77.190956,28.961651],[77.214188,29.00596],[77.162636,29.048571],[77.157188,29.077532],[77.124382,29.101488],[77.13858,29.134769],[77.126617,29.15402],[77.139992,29.182081],[77.12722,29.228142],[77.142799,29.237791],[77.129486,29.272791],[77.154213,29.316921],[77.146446,29.34506],[77.120033,29.349791],[77.116943,29.37668],[77.138649,29.383909],[77.124878,29.422171],[77.139389,29.442101],[77.117836,29.456461],[77.123322,29.486061],[77.084908,29.53359],[77.109718,29.55299],[77.085617,29.6008],[77.140213,29.717272],[77.112953,29.7486],[77.118286,29.775551],[77.152382,29.79328],[77.155647,29.81679],[77.182457,29.87328],[77.179558,29.902269],[77.250473,29.988451],[77.27314,30.03404],[77.270409,30.04834],[77.331741,30.064451],[77.373428,30.093019],[77.414192,30.111111],[77.410828,30.14588],[77.423546,30.16848],[77.446846,30.16861],[77.473267,30.188591],[77.495987,30.233631],[77.532181,30.286858],[77.570351,30.31123],[77.569893,30.337111],[77.592018,30.370861],[77.57489,30.38452],[77.563057,30.40449],[77.635696,30.410122],[77.673866,30.3846],[77.710777,30.33876],[77.751297,30.32465],[77.812408,30.290751],[77.916847,30.25617],[77.929321,30.23999],[77.904396,30.215208],[77.895996,30.186293],[77.819969,30.093639],[77.786438,30.09997],[77.758209,30.046541],[77.773888,30.032101],[77.740807,29.99412],[77.740143,29.9589],[77.717682,29.934952],[77.733017,29.913481],[77.703262,29.86767],[77.730057,29.853081],[77.742149,29.809521],[77.764702,29.78546],[77.757713,29.715919],[77.797447,29.69783],[77.792519,29.681921],[77.834267,29.671883],[77.873878,29.701971],[77.89994,29.697821],[77.940819,29.7146],[77.945396,29.687231],[77.97702,29.642061],[77.984573,29.584553],[77.978859,29.554131],[78.032562,29.551701],[78.04393,29.593071],[78.078506,29.599543],[78.090622,29.624771],[78.165932,29.679529],[78.193527,29.710058],[78.2314,29.70409],[78.302933,29.757591],[78.331741,29.796181],[78.385986,29.773861],[78.487579,29.741383],[78.507446,29.69083],[78.511513,29.65069],[78.53054,29.623932],[78.576477,29.58057],[78.639572,29.547779],[78.693359,29.508871],[78.726608,29.508711],[78.765778,29.483789],[78.865753,29.4596],[78.900337,29.456181],[78.896477,29.42358],[78.856796,29.38559],[78.814178,29.370043],[78.784447,29.34293],[78.757408,29.34976],[78.725708,29.329983],[78.727562,29.31279],[78.813782,29.252291],[78.831253,29.260738],[78.864067,29.249493],[78.899162,29.202593],[78.904793,29.16317],[78.944389,29.14959],[78.966629,29.16555],[79.000572,29.11655],[79.012787,29.14913],[79.072861,29.151991],[79.100746,29.13168],[79.14222,29.119728],[79.13472,29.081911],[79.165413,29.051258],[79.168587,29.01586],[79.204033,29.0291],[79.237747,29.00684],[79.278877,28.96484],[79.349617,28.952101],[79.401436,28.932261],[79.395653,28.885441],[79.411217,28.855881],[79.50724,28.8633],[79.533089,28.89031],[79.55397,28.878521],[79.550926,28.845892],[79.592262,28.86655],[79.619041,28.86758],[79.666199,28.84833],[79.709618,28.87921],[79.774467,28.89183],[79.802803,28.87182],[79.80146,28.83329],[79.849487,28.845381],[79.84053,28.808661],[79.888939,28.78577],[79.912048,28.764961],[79.92952,28.726513],[79.988258,28.717018],[80.013626,28.73737],[80.040459,28.78311],[80.025688,28.79985],[80.058426,28.83526],[80.07238,28.829744]]]},"properties":{"ID_0":105,"ISO":"IN-UP","NAME_0":"India","ID_1":33,"NAME_1":"Uttar Pradesh"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[80.07238,28.829744],[80.058426,28.83526],[80.025688,28.79985],[80.040459,28.78311],[80.013626,28.73737],[79.988258,28.717018],[79.92952,28.726513],[79.912048,28.764961],[79.888939,28.78577],[79.84053,28.808661],[79.849487,28.845381],[79.80146,28.83329],[79.802803,28.87182],[79.774467,28.89183],[79.709618,28.87921],[79.666199,28.84833],[79.619041,28.86758],[79.592262,28.86655],[79.550926,28.845892],[79.55397,28.878521],[79.533089,28.89031],[79.50724,28.8633],[79.411217,28.855881],[79.395653,28.885441],[79.401436,28.932261],[79.349617,28.952101],[79.278877,28.96484],[79.237747,29.00684],[79.204033,29.0291],[79.168587,29.01586],[79.165413,29.051258],[79.13472,29.081911],[79.14222,29.119728],[79.100746,29.13168],[79.072861,29.151991],[79.012787,29.14913],[79.000572,29.11655],[78.966629,29.16555],[78.944389,29.14959],[78.904793,29.16317],[78.899162,29.202593],[78.864067,29.249493],[78.831253,29.260738],[78.813782,29.252291],[78.727562,29.31279],[78.725708,29.329983],[78.757408,29.34976],[78.784447,29.34293],[78.814178,29.370043],[78.856796,29.38559],[78.896477,29.42358],[78.900337,29.456181],[78.865753,29.4596],[78.765778,29.483789],[78.726608,29.508711],[78.693359,29.508871],[78.639572,29.547779],[78.576477,29.58057],[78.53054,29.623932],[78.511513,29.65069],[78.507446,29.69083],[78.487579,29.741383],[78.385986,29.773861],[78.331741,29.796181],[78.302933,29.757591],[78.2314,29.70409],[78.193527,29.710058],[78.165932,29.679529],[78.090622,29.624771],[78.078506,29.599543],[78.04393,29.593071],[78.032562,29.551701],[77.978859,29.554131],[77.984573,29.584553],[77.97702,29.642061],[77.945396,29.687231],[77.940819,29.7146],[77.89994,29.697821],[77.873878,29.701971],[77.834267,29.671883],[77.792519,29.681921],[77.797447,29.69783],[77.757713,29.715919],[77.764702,29.78546],[77.742149,29.809521],[77.730057,29.853081],[77.703262,29.86767],[77.733017,29.913481],[77.717682,29.934952],[77.740143,29.9589],[77.740807,29.99412],[77.773888,30.032101],[77.758209,30.046541],[77.786438,30.09997],[77.819969,30.093639],[77.895996,30.186293],[77.904396,30.215208],[77.929321,30.23999],[77.916847,30.25617],[77.812408,30.290751],[77.751297,30.32465],[77.710777,30.33876],[77.673866,30.3846],[77.635696,30.410122],[77.563057,30.40449],[77.562881,30.41708],[77.603752,30.437441],[77.661606,30.44878],[77.767616,30.50436],[77.799179,30.511391],[77.812202,30.53805],[77.805862,30.56074],[77.753532,30.57023],[77.732109,30.607128],[77.774979,30.641121],[77.765907,30.665279],[77.733406,30.685829],[77.741096,30.710661],[77.688286,30.768669],[77.704529,30.77902],[77.744072,30.836243],[77.731461,30.850771],[77.744522,30.881191],[77.783501,30.872061],[77.793373,30.925982],[77.745598,30.92231],[77.733276,30.949501],[77.753922,30.976843],[77.796417,30.96982],[77.824707,31.00519],[77.805023,31.05407],[77.842827,31.081291],[77.851532,31.11097],[77.878723,31.124672],[77.902176,31.158821],[77.954758,31.17878],[78.007721,31.15708],[78.029953,31.18531],[78.092377,31.192831],[78.147827,31.231571],[78.184921,31.22333],[78.23259,31.23502],[78.26902,31.27136],[78.298363,31.28821],[78.369263,31.287901],[78.393082,31.262278],[78.419456,31.25988],[78.466568,31.22094],[78.470108,31.203751],[78.537117,31.206711],[78.566582,31.23374],[78.600601,31.235851],[78.636002,31.21958],[78.650673,31.197851],[78.749451,31.194351],[78.795036,31.20504],[78.818733,31.147211],[78.880043,31.10384],[78.903793,31.115471],[78.942116,31.105028],[78.996696,31.11759],[78.978088,31.14566],[78.97187,31.182371],[78.946213,31.19356],[78.935127,31.222363],[78.909912,31.233889],[78.906883,31.25919],[78.916649,31.266628],[78.930206,31.337881],[78.98056,31.356981],[79.006828,31.40062],[79.034172,31.428011],[79.036987,31.457371],[79.056778,31.47226],[79.12886,31.43873],[79.177567,31.37221],[79.221642,31.337301],[79.221046,31.32028],[79.248093,31.296619],[79.233887,31.25404],[79.262779,31.245291],[79.288437,31.195633],[79.28212,31.18091],[79.299622,31.14924],[79.325096,31.12981],[79.381851,31.118351],[79.391243,31.082439],[79.406242,31.076988],[79.413086,31.037552],[79.497063,31.041363],[79.537712,30.991301],[79.53112,30.9741],[79.584816,30.943991],[79.653946,30.98575],[79.696381,30.981689],[79.74559,31.006151],[79.809418,30.977331],[79.854927,30.97891],[79.87999,30.92528],[79.915047,30.89222],[79.941643,30.892],[79.994713,30.867378],[80.02491,30.843828],[80.044113,30.844],[80.074051,30.799721],[80.103149,30.779671],[80.15937,30.81209],[80.184853,30.786631],[80.190453,30.763811],[80.222816,30.76523],[80.237267,30.74066],[80.219772,30.69725],[80.180496,30.669861],[80.208961,30.645082],[80.21096,30.5823],[80.240227,30.565401],[80.278,30.57448],[80.368286,30.526871],[80.400551,30.53117],[80.423546,30.505659],[80.485298,30.49048],[80.530586,30.461088],[80.555603,30.467161],[80.56636,30.488602],[80.593559,30.482231],[80.64904,30.44532],[80.660736,30.445761],[80.731293,30.40222],[80.759361,30.375271],[80.772438,30.34811],[80.811287,30.319981],[81.010979,30.262791],[80.977913,30.237993],[80.929214,30.235916],[80.864571,30.168896],[80.880486,30.132498],[80.847054,30.102285],[80.808029,30.089983],[80.739815,29.999516],[80.721291,30.000378],[80.677917,29.958115],[80.605339,29.958717],[80.576035,29.923437],[80.574318,29.894426],[80.555229,29.852997],[80.509026,29.823042],[80.494118,29.795315],[80.465614,29.802315],[80.409363,29.791601],[80.387489,29.750467],[80.36586,29.740152],[80.386017,29.675014],[80.41819,29.651167],[80.422813,29.630215],[80.409492,29.594919],[80.342125,29.509872],[80.29776,29.488001],[80.304222,29.453079],[80.247711,29.446747],[80.243347,29.411587],[80.276917,29.392216],[80.272903,29.363728],[80.29863,29.323711],[80.318138,29.315639],[80.305962,29.285311],[80.295296,29.197624],[80.259621,29.187416],[80.274406,29.144751],[80.235016,29.118416],[80.18602,29.137316],[80.146027,29.103001],[80.130119,29.060997],[80.128517,29.005915],[80.119553,28.98171],[80.097717,28.975216],[80.060143,28.916317],[80.066338,28.837286],[80.07238,28.829744]]]},"properties":{"ID_0":105,"ISO":"IN-UT","NAME_0":"India","ID_1":34,"NAME_1":"Uttaranchal"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[88.497711,21.599754],[88.529716,21.583059],[88.53083,21.54221],[88.481438,21.55538],[88.497711,21.599754]]],[[[88.834724,21.607222],[88.892502,21.579447],[88.900002,21.552221],[88.853889,21.550001],[88.828331,21.576942],[88.834724,21.607222]]],[[[88.728851,21.637081],[88.736237,21.61027],[88.757095,21.599575],[88.747292,21.588848],[88.740547,21.573063],[88.708023,21.590071],[88.712776,21.624718],[88.728851,21.637081]]],[[[88.537216,21.63862],[88.583893,21.610828],[88.586548,21.588404],[88.550003,21.56361],[88.536598,21.588394],[88.510277,21.601389],[88.537216,21.63862]]],[[[88.771942,21.653063],[88.773888,21.61972],[88.798058,21.591665],[88.756111,21.57583],[88.74868,21.587688],[88.756943,21.596111],[88.757568,21.601046],[88.753067,21.604643],[88.737968,21.610378],[88.73558,21.644636],[88.771942,21.653063]]],[[[88.965767,21.641535],[88.988358,21.644831],[88.995132,21.6264],[88.987778,21.613056],[88.956413,21.61742],[88.965767,21.641535]]],[[[88.576881,21.691734],[88.599167,21.641109],[88.592499,21.618053],[88.557503,21.635],[88.576881,21.691734]]],[[[88.984489,21.705688],[88.994301,21.648981],[89.023613,21.652731],[89.028763,21.604822],[89.000267,21.602091],[88.993843,21.641291],[88.988358,21.646],[88.964996,21.644039],[88.950966,21.70101],[88.971657,21.697603],[88.984489,21.705688]]],[[[88.806656,21.706673],[88.796669,21.65556],[88.777496,21.664169],[88.758888,21.663328],[88.749168,21.673334],[88.731941,21.68306],[88.760277,21.683332],[88.763046,21.690828],[88.806656,21.706673]]],[[[88.311081,21.70635],[88.350563,21.680283],[88.353889,21.649441],[88.337242,21.621117],[88.305756,21.629061],[88.316597,21.665352],[88.311081,21.70635]]],[[[88.454033,21.709341],[88.470551,21.674288],[88.451111,21.620558],[88.420647,21.65135],[88.419594,21.689829],[88.454033,21.709341]]],[[[88.697121,21.712879],[88.703003,21.687021],[88.740295,21.654535],[88.725113,21.638203],[88.687126,21.68362],[88.697121,21.712879]]],[[[88.204506,21.721182],[88.216591,21.700541],[88.198334,21.694445],[88.198059,21.676945],[88.215538,21.669815],[88.224815,21.670797],[88.231667,21.641109],[88.205002,21.60972],[88.181488,21.689219],[88.204506,21.721182]]],[[[89.059204,21.721804],[89.091896,21.666672],[89.092857,21.63693],[89.049438,21.620226],[89.026054,21.643927],[89.026413,21.68791],[89.018486,21.708208],[89.059204,21.721804]]],[[[88.977997,21.726875],[89.019653,21.69935],[89.017838,21.661186],[88.995819,21.672501],[88.977997,21.726875]]],[[[88.54567,21.73613],[88.570831,21.7325],[88.586166,21.698933],[88.566109,21.692768],[88.56778,21.665277],[88.540993,21.63975],[88.517273,21.71196],[88.54567,21.73613]]],[[[88.883057,21.745279],[88.913887,21.72584],[88.941948,21.689722],[88.921944,21.632912],[88.885826,21.66111],[88.873055,21.694445],[88.883057,21.745279]]],[[[88.412338,21.73126],[88.428566,21.702559],[88.413307,21.691067],[88.411148,21.660002],[88.431923,21.628277],[88.38726,21.613348],[88.379723,21.680832],[88.39904,21.69879],[88.412338,21.73126]]],[[[88.220909,21.76215],[88.271492,21.754675],[88.272217,21.728266],[88.311668,21.67194],[88.293327,21.636669],[88.291664,21.563053],[88.248337,21.563889],[88.245277,21.591946],[88.217216,21.61972],[88.234734,21.635378],[88.233002,21.66902],[88.226334,21.675055],[88.208656,21.674271],[88.199188,21.682619],[88.200836,21.691389],[88.221062,21.702381],[88.212013,21.71998],[88.220909,21.76215]]],[[[88.927101,21.76195],[88.965271,21.749964],[88.972221,21.69861],[88.950241,21.70233],[88.922501,21.721111],[88.927101,21.76195]]],[[[88.365387,21.764166],[88.36528,21.722219],[88.398056,21.713333],[88.35788,21.686819],[88.337563,21.709761],[88.348892,21.726946],[88.34256,21.75386],[88.365387,21.764166]]],[[[89.005119,21.764977],[89.055832,21.729933],[89.020882,21.717251],[89.005119,21.764977]]],[[[88.831673,21.766109],[88.861153,21.761671],[88.839996,21.715555],[88.840843,21.68861],[88.85994,21.643066],[88.839722,21.620447],[88.808998,21.639933],[88.823059,21.67111],[88.816948,21.707769],[88.784447,21.710279],[88.791107,21.74917],[88.813393,21.750629],[88.831673,21.766109]]],[[[88.582222,21.777781],[88.583618,21.761391],[88.587158,21.75223],[88.616112,21.740833],[88.592018,21.719341],[88.569,21.769178],[88.582222,21.777781]]],[[[88.999672,21.785469],[89.004837,21.716131],[88.976669,21.728611],[88.966766,21.772184],[88.999672,21.785469]]],[[[88.609726,21.790279],[88.623337,21.773333],[88.621391,21.739721],[88.58625,21.756598],[88.589226,21.77984],[88.59259,21.785196],[88.609726,21.790279]]],[[[88.458611,21.788651],[88.474998,21.791389],[88.467216,21.737221],[88.455063,21.710915],[88.433136,21.704481],[88.423103,21.766163],[88.458611,21.788651]]],[[[88.716202,21.807381],[88.726967,21.780981],[88.759117,21.758598],[88.752769,21.731579],[88.776108,21.72361],[88.756943,21.706112],[88.762772,21.692713],[88.760254,21.685001],[88.745079,21.683851],[88.732697,21.689381],[88.730774,21.682032],[88.754646,21.666052],[88.74778,21.658331],[88.711113,21.69018],[88.695,21.743891],[88.716202,21.807381]]],[[[88.544571,21.81032],[88.569443,21.793886],[88.562492,21.760281],[88.524811,21.718481],[88.504379,21.750763],[88.504723,21.772499],[88.544571,21.81032]]],[[[88.421806,21.81109],[88.439941,21.789181],[88.400856,21.74394],[88.38282,21.779596],[88.421806,21.81109]]],[[[88.828079,21.804029],[88.830276,21.767221],[88.811897,21.7512],[88.785652,21.768961],[88.828079,21.804029]]],[[[88.787498,21.745001],[88.75666,21.73341],[88.764938,21.784395],[88.784721,21.772499],[88.787498,21.745001]]],[[[88.915833,21.825834],[88.919998,21.823055],[88.934998,21.8225],[88.937233,21.817501],[88.926941,21.804161],[88.92778,21.800001],[88.917778,21.791664],[88.923332,21.788055],[88.905556,21.751665],[88.900833,21.776951],[88.885559,21.810289],[88.894722,21.81278],[88.902779,21.820557],[88.915833,21.825834]]],[[[88.941391,21.847221],[88.946953,21.839453],[88.953613,21.825556],[88.95417,21.80806],[88.919716,21.775],[88.924446,21.7875],[88.919716,21.791931],[88.929169,21.800001],[88.934723,21.814173],[88.938896,21.81694],[88.936943,21.8225],[88.927223,21.82333],[88.924721,21.835279],[88.932777,21.836945],[88.934998,21.845001],[88.941391,21.847221]]],[[[88.331131,21.860687],[88.352127,21.85487],[88.361389,21.796021],[88.379967,21.78727],[88.377907,21.768602],[88.357224,21.766947],[88.343452,21.760269],[88.339806,21.751011],[88.345001,21.721666],[88.305801,21.717606],[88.303589,21.760803],[88.282135,21.791256],[88.264198,21.793949],[88.2603,21.807199],[88.265884,21.813749],[88.284607,21.822721],[88.307732,21.830301],[88.331131,21.860687]]],[[[88.85611,21.86528],[88.855553,21.85722],[88.87722,21.851669],[88.875,21.845833],[88.88028,21.82889],[88.879723,21.807775],[88.896942,21.781668],[88.891113,21.762501],[88.834999,21.781668],[88.839157,21.84861],[88.85611,21.86528]]],[[[88.136948,21.875],[88.157219,21.830299],[88.170944,21.745102],[88.15361,21.692499],[88.154999,21.652781],[88.115555,21.625834],[88.041664,21.649166],[88.036942,21.673891],[88.044228,21.717693],[88.061386,21.734442],[88.072266,21.778313],[88.121956,21.865671],[88.136948,21.875]]],[[[88.789169,21.878611],[88.792221,21.873055],[88.78611,21.868332],[88.789436,21.863331],[88.798889,21.870832],[88.803612,21.866945],[88.828888,21.863333],[88.821106,21.825001],[88.794441,21.812502],[88.765831,21.830553],[88.776947,21.865278],[88.789169,21.878611]]],[[[88.979057,21.89349],[89.03096,21.862782],[89.020241,21.817833],[88.976341,21.804285],[88.951241,21.841742],[88.979675,21.869362],[88.979057,21.89349]]],[[[88.621666,21.897779],[88.652847,21.868658],[88.638611,21.784721],[88.622238,21.793221],[88.620277,21.824167],[88.594719,21.85611],[88.621666,21.897779]]],[[[88.56234,21.897461],[88.576393,21.888611],[88.563118,21.830931],[88.530556,21.849169],[88.540504,21.870399],[88.56234,21.897461]]],[[[88.44648,21.904921],[88.460556,21.893641],[88.483826,21.88525],[88.490723,21.850321],[88.454338,21.82181],[88.442741,21.802212],[88.392517,21.832602],[88.400276,21.87306],[88.417137,21.88728],[88.419823,21.903139],[88.435837,21.90167],[88.44648,21.904921]]],[[[88.718056,21.907223],[88.726669,21.899164],[88.747498,21.896669],[88.751106,21.88694],[88.7575,21.878889],[88.775002,21.865],[88.750832,21.800562],[88.72583,21.794447],[88.696106,21.84222],[88.718056,21.907223]]],[[[88.639999,21.92168],[88.666946,21.913336],[88.653053,21.880833],[88.623383,21.901409],[88.639999,21.92168]]],[[[88.836555,21.917892],[88.886597,21.914457],[88.914566,21.92812],[88.971649,21.89917],[88.964447,21.863058],[88.948059,21.841391],[88.946388,21.841667],[88.938606,21.853889],[88.938332,21.84889],[88.933327,21.845831],[88.93277,21.83889],[88.922783,21.83556],[88.914436,21.827499],[88.902222,21.821671],[88.889999,21.812222],[88.88028,21.822227],[88.8825,21.829721],[88.877502,21.845833],[88.878609,21.851944],[88.874168,21.855],[88.861115,21.855831],[88.849167,21.896111],[88.836555,21.917892]]],[[[88.72361,21.931944],[88.732216,21.919722],[88.754448,21.92667],[88.799446,21.919722],[88.814163,21.902781],[88.796669,21.876671],[88.792778,21.867208],[88.787224,21.866945],[88.793327,21.87278],[88.792503,21.878059],[88.78833,21.879444],[88.786392,21.878611],[88.779167,21.87027],[88.771942,21.878059],[88.758057,21.880278],[88.750832,21.888611],[88.750557,21.895555],[88.74472,21.899446],[88.716942,21.918608],[88.72361,21.931944]]],[[[88.745392,21.979738],[88.749496,21.95903],[88.799393,21.925928],[88.761681,21.930811],[88.73278,21.925278],[88.722397,21.942631],[88.72506,21.978453],[88.745392,21.979738]]],[[[88.659973,22.019213],[88.715782,22.000641],[88.678154,21.942867],[88.633461,21.951559],[88.634857,21.995951],[88.659973,22.019213]]],[[[88.141388,22.02639],[88.087502,21.932779],[88.04583,21.915558],[88.070267,21.990829],[88.093887,22.011391],[88.141388,22.02639]]],[[[88.812767,22.019442],[88.899719,22.01306],[88.907272,21.929537],[88.856583,21.91906],[88.824837,21.93985],[88.775558,21.943331],[88.751663,21.958891],[88.749725,21.981947],[88.761497,22.014521],[88.801392,22.029722],[88.812767,22.019442]]],[[[88.902786,22.045334],[88.901665,22.018888],[88.877014,22.014839],[88.853897,22.043291],[88.902786,22.045334]]],[[[89.016197,22.05092],[89.040352,22.049162],[89.068039,22.013613],[89.078018,21.986418],[89.063286,21.934511],[89.030327,21.926443],[88.999458,21.94982],[89.018066,21.975534],[88.974327,21.994553],[88.968079,22.015541],[88.986107,22.049101],[89.016197,22.05092]]],[[[88.811859,22.060755],[88.831863,22.026976],[88.780457,22.037535],[88.811859,22.060755]]],[[[88.87056,22.078939],[88.881065,22.045582],[88.860558,22.046116],[88.850388,22.042707],[88.819443,22.062502],[88.87056,22.078939]]],[[[88.803467,22.085274],[88.805824,22.065763],[88.780769,22.048618],[88.74794,22.059301],[88.778999,22.103003],[88.803467,22.085274]]],[[[88.817902,22.12303],[88.847183,22.11725],[88.865852,22.081455],[88.837753,22.073242],[88.805511,22.085081],[88.799126,22.111877],[88.817902,22.12303]]],[[[88.865143,22.16699],[88.886086,22.164829],[88.922745,22.108953],[88.91703,22.091202],[88.872253,22.087805],[88.846458,22.121302],[88.865143,22.16699]]],[[[88.949966,22.189192],[88.984978,22.148121],[88.98333,22.118891],[88.958076,22.060242],[88.977097,22.038393],[88.965187,22.01741],[88.972496,21.987791],[88.993889,21.970282],[88.994591,21.941973],[89.021347,21.921659],[88.992332,21.906946],[88.931473,21.942078],[88.91272,21.99436],[88.916077,22.01063],[88.901703,22.063866],[88.930717,22.098101],[88.909439,22.133644],[88.919716,22.161112],[88.949966,22.189192]]],[[[89.00193,22.199171],[89.013023,22.195822],[89.022423,22.148363],[89.04911,22.132919],[89.031113,22.093889],[89.038872,22.055458],[88.962807,22.061132],[88.98037,22.079283],[88.996613,22.14012],[88.972687,22.193438],[89.00193,22.199171]]],[[[88.69519,22.208612],[88.731895,22.193991],[88.764977,22.1922],[88.789169,22.169449],[88.766388,22.146111],[88.736023,22.132681],[88.688972,22.089905],[88.6884,22.059771],[88.729416,22.038321],[88.720413,22.005596],[88.663391,22.024397],[88.652153,22.08143],[88.634186,22.106211],[88.652863,22.163391],[88.69519,22.208612]]],[[[88.844749,22.189192],[88.849846,22.142733],[88.798431,22.124952],[88.749588,22.081057],[88.739166,22.056992],[88.702538,22.077951],[88.735527,22.10533],[88.749161,22.135],[88.771042,22.142574],[88.806496,22.178011],[88.832603,22.164518],[88.844749,22.189192]]],[[[88.932373,22.225],[88.954185,22.221603],[88.960991,22.194052],[88.944489,22.192762],[88.93148,22.177011],[88.909172,22.194101],[88.932373,22.225]]],[[[88.812599,22.283392],[88.825417,22.240911],[88.80101,22.228003],[88.815193,22.18117],[88.788864,22.17835],[88.766029,22.194921],[88.747177,22.199011],[88.75219,22.230391],[88.773521,22.25071],[88.785652,22.257372],[88.791565,22.258436],[88.793236,22.261602],[88.812599,22.283392]]],[[[88.849861,22.362917],[88.891571,22.343082],[88.911659,22.31167],[88.937469,22.297369],[88.92981,22.263655],[88.954155,22.225691],[88.916588,22.225042],[88.906479,22.19203],[88.872269,22.17137],[88.866653,22.195505],[88.805489,22.221361],[88.828423,22.241905],[88.827301,22.265451],[88.80513,22.296072],[88.807503,22.333328],[88.818336,22.358892],[88.831947,22.358059],[88.849861,22.362917]]],[[[88.984756,22.382433],[88.984001,22.324713],[89,22.323336],[88.996437,22.282633],[89.033546,22.25453],[89.040413,22.222132],[89.069122,22.189934],[89.050552,22.146669],[89.023529,22.16538],[89.018608,22.206671],[88.968163,22.21505],[88.94722,22.25556],[88.954697,22.361099],[88.984756,22.382433]]],[[[88.897697,22.548861],[88.905693,22.520521],[88.893059,22.48667],[88.896301,22.471849],[88.892288,22.465935],[88.897499,22.459192],[88.900658,22.444618],[88.908012,22.434156],[88.90451,22.411673],[88.921112,22.39917],[88.884392,22.376081],[88.882294,22.403191],[88.861481,22.413212],[88.861328,22.499031],[88.867157,22.530493],[88.897697,22.548861]]],[[[88.920166,22.565306],[88.955948,22.551373],[88.978333,22.4825],[88.995003,22.467779],[88.989166,22.439444],[88.968613,22.412783],[88.964447,22.37389],[88.948624,22.354815],[88.943268,22.310652],[88.907036,22.336271],[88.896431,22.379829],[88.915916,22.391945],[88.92614,22.405802],[88.918892,22.429722],[88.903923,22.446152],[88.90316,22.455229],[88.894722,22.466112],[88.898819,22.476845],[88.896187,22.483509],[88.913887,22.514723],[88.896141,22.560795],[88.920166,22.565306]]],[[[88.751686,27.148211],[88.800049,27.13682],[88.826149,27.117661],[88.869919,27.108721],[88.878731,27.038401],[88.870499,27.010811],[88.872696,26.957138],[88.889183,26.96133],[88.911316,26.99437],[88.946533,26.977385],[88.941414,26.938578],[88.984589,26.920761],[89.027443,26.937998],[89.049469,26.902529],[89.085831,26.897348],[89.104141,26.85984],[89.102028,26.836309],[89.129036,26.809191],[89.174934,26.821428],[89.189789,26.808521],[89.252052,26.816429],[89.319893,26.853249],[89.384445,26.861773],[89.389503,26.84185],[89.447983,26.834761],[89.459282,26.806259],[89.496323,26.803001],[89.528389,26.818995],[89.653511,26.771881],[89.641853,26.74703],[89.703278,26.737122],[89.755127,26.72064],[89.776932,26.69931],[89.807213,26.715021],[89.856941,26.703781],[89.871429,26.683531],[89.877548,26.584242],[89.864998,26.570271],[89.852692,26.48778],[89.869499,26.44842],[89.844849,26.410221],[89.857292,26.38446],[89.827057,26.36665],[89.782013,26.353279],[89.780861,26.330881],[89.742348,26.29521],[89.717346,26.259161],[89.711708,26.227741],[89.718758,26.166048],[89.695923,26.17515],[89.660866,26.21767],[89.637581,26.227678],[89.641388,26.178801],[89.624481,26.177971],[89.598663,26.13912],[89.631607,26.11545],[89.6502,26.06868],[89.585182,26.031328],[89.581337,25.978401],[89.557899,25.964581],[89.544693,25.99398],[89.467346,25.998001],[89.432976,26.01552],[89.397057,26.02013],[89.363129,26.00762],[89.328377,26.037083],[89.261566,26.063921],[89.254059,26.10218],[89.230171,26.122641],[89.197777,26.121941],[89.160049,26.142288],[89.140587,26.180099],[89.146881,26.235361],[89.110611,26.289368],[89.140526,26.299669],[89.104248,26.333031],[89.099747,26.38479],[89.072861,26.400141],[89.045822,26.39794],[89.028923,26.416321],[89.000496,26.419962],[88.990028,26.450251],[88.964569,26.4608],[88.951447,26.429171],[88.925201,26.40443],[88.917732,26.374731],[89.006653,26.3328],[89.003319,26.30183],[89.028366,26.290339],[89.066597,26.292891],[89.057457,26.245022],[88.962029,26.24477],[88.934853,26.2883],[88.881058,26.29027],[88.852829,26.236332],[88.819206,26.259701],[88.821587,26.300713],[88.804146,26.3118],[88.761581,26.300591],[88.761597,26.333761],[88.749191,26.353241],[88.696571,26.344341],[88.68528,26.383171],[88.649658,26.42724],[88.597023,26.44939],[88.557121,26.45685],[88.54937,26.483299],[88.524757,26.50614],[88.491928,26.516809],[88.486061,26.541311],[88.432121,26.55109],[88.41745,26.63093],[88.400887,26.626921],[88.377541,26.59351],[88.352577,26.51202],[88.334366,26.47868],[88.362282,26.454679],[88.374977,26.48719],[88.413666,26.471958],[88.484192,26.460491],[88.494278,26.41643],[88.52523,26.37285],[88.508743,26.359159],[88.444,26.356413],[88.402931,26.316771],[88.351753,26.281582],[88.352516,26.21999],[88.32029,26.201241],[88.250732,26.189081],[88.233513,26.170973],[88.180443,26.145693],[88.175636,26.108919],[88.161247,26.092468],[88.188019,26.062901],[88.13131,25.987728],[88.11187,25.93313],[88.086761,25.9125],[88.107147,25.87994],[88.113991,25.847933],[88.105698,25.823971],[88.157936,25.77586],[88.186256,25.79878],[88.202461,25.7885],[88.269928,25.80814],[88.271759,25.779921],[88.378601,25.71163],[88.374969,25.694902],[88.407143,25.669319],[88.456726,25.6605],[88.448349,25.613123],[88.472557,25.581053],[88.551437,25.516069],[88.624573,25.495291],[88.665047,25.470701],[88.700188,25.470261],[88.710251,25.49612],[88.741127,25.501211],[88.767036,25.491331],[88.798019,25.52165],[88.814552,25.48712],[88.831924,25.485397],[88.842117,25.45339],[88.826752,25.39901],[88.844963,25.392019],[88.843658,25.36241],[88.905052,25.335951],[88.919067,25.308571],[88.956207,25.307798],[88.989281,25.29575],[88.958092,25.26088],[88.958878,25.219601],[88.93782,25.20005],[88.923027,25.16713],[88.897621,25.18454],[88.875877,25.181971],[88.847839,25.21014],[88.803787,25.172291],[88.747093,25.185438],[88.709229,25.2096],[88.670403,25.200663],[88.613869,25.205351],[88.575897,25.178551],[88.553497,25.19598],[88.477737,25.21331],[88.44384,25.194891],[88.462997,25.15122],[88.442802,25.126263],[88.452873,25.079271],[88.452896,25.040901],[88.397461,24.96912],[88.401497,24.94569],[88.360817,24.94935],[88.341728,24.939011],[88.315308,24.88076],[88.266869,24.893431],[88.263573,24.918261],[88.230537,24.957981],[88.180023,24.953892],[88.140587,24.917339],[88.167358,24.863491],[88.112022,24.812571],[88.067329,24.7498],[88.059868,24.71505],[88.012817,24.671131],[88.04615,24.637421],[88.107117,24.545441],[88.14785,24.50563],[88.175781,24.49033],[88.20546,24.457911],[88.264687,24.44496],[88.327736,24.386751],[88.391869,24.372108],[88.437759,24.380833],[88.507187,24.344681],[88.530502,24.342058],[88.555946,24.29641],[88.568108,24.326641],[88.628502,24.30657],[88.67347,24.315161],[88.722763,24.296911],[88.737061,24.267761],[88.731979,24.197399],[88.699516,24.166031],[88.710197,24.118919],[88.736603,24.05563],[88.741081,23.98457],[88.733261,23.914339],[88.666939,23.88397],[88.63308,23.861361],[88.622429,23.87356],[88.575981,23.859751],[88.60173,23.816851],[88.580818,23.78867],[88.574699,23.736332],[88.564217,23.714783],[88.573936,23.67],[88.561676,23.64571],[88.593231,23.626381],[88.587433,23.599953],[88.643677,23.60849],[88.661621,23.54973],[88.74292,23.48078],[88.779442,23.497671],[88.800148,23.480541],[88.789963,23.440653],[88.764427,23.44211],[88.753479,23.387442],[88.762787,23.367632],[88.73645,23.348623],[88.746933,23.31798],[88.696777,23.29285],[88.723717,23.26963],[88.72036,23.252663],[88.769653,23.238581],[88.785431,23.217571],[88.814087,23.21656],[88.830933,23.24469],[88.85276,23.224609],[88.913467,23.23],[88.961571,23.189873],[88.937897,23.16918],[88.931351,23.13858],[88.897453,23.106081],[88.870071,23.09605],[88.866478,23.068861],[88.878456,23.029051],[88.868736,22.968779],[88.897163,22.949162],[88.909332,22.877401],[88.946007,22.877439],[88.967567,22.842489],[88.958443,22.79421],[88.920677,22.765322],[88.920769,22.73385],[88.95919,22.69117],[88.930107,22.640993],[88.937752,22.570782],[88.896385,22.563334],[88.868889,22.545835],[88.859291,22.49872],[88.851692,22.432932],[88.849236,22.364542],[88.833084,22.359219],[88.823036,22.360691],[88.815933,22.357981],[88.80262,22.328983],[88.804733,22.28381],[88.792709,22.27619],[88.793007,22.26969],[88.790794,22.259703],[88.78553,22.258589],[88.771767,22.251011],[88.743614,22.229166],[88.733612,22.195555],[88.69928,22.210133],[88.672592,22.205059],[88.638336,22.155281],[88.61937,22.10533],[88.635475,22.042614],[88.614441,22.01972],[88.598343,21.96833],[88.614738,21.937538],[88.602219,21.90667],[88.578331,21.889444],[88.570526,21.904831],[88.561394,21.898987],[88.545044,21.90604],[88.548042,21.88225],[88.528053,21.853056],[88.473557,21.895342],[88.458061,21.897833],[88.461884,21.91803],[88.441673,21.91139],[88.432053,21.90266],[88.424187,21.907713],[88.416229,21.901272],[88.397224,21.885836],[88.385773,21.839403],[88.39241,21.803333],[88.363708,21.798256],[88.354927,21.855656],[88.325653,21.86215],[88.311188,21.85544],[88.306038,21.830683],[88.268677,21.817621],[88.259766,21.809523],[88.258362,21.80077],[88.282379,21.75502],[88.217224,21.764444],[88.200882,21.819466],[88.163612,21.878611],[88.176392,21.919722],[88.153831,21.95961],[88.195572,22.003611],[88.21389,22.034721],[88.224167,22.089722],[88.210556,22.149445],[88.188057,22.18667],[88.116669,22.209169],[88.072777,22.210001],[88.104721,22.30389],[88.078613,22.28417],[88.075279,22.252781],[88.049156,22.220001],[88.026108,22.2225],[87.984047,22.246464],[87.960045,22.280222],[87.958321,22.34869],[87.933052,22.31389],[87.9375,22.264723],[87.97155,22.236601],[87.99044,22.209459],[88.034721,22.209444],[88.065552,22.18972],[88.135559,22.184723],[88.193611,22.110832],[88.166946,22.07361],[88.083336,22.021387],[88.05278,22.013329],[87.980278,21.85778],[87.92778,21.799721],[87.894722,21.784445],[87.830826,21.734173],[87.789719,21.695],[87.753326,21.6975],[87.729164,21.672775],[87.677788,21.653891],[87.56028,21.633005],[87.482033,21.608704],[87.467766,21.645651],[87.470833,21.70718],[87.443672,21.760889],[87.373489,21.766411],[87.352081,21.78573],[87.317307,21.785721],[87.280609,21.799158],[87.244751,21.856371],[87.23481,21.895601],[87.252083,21.920973],[87.234848,21.95438],[87.195107,21.953569],[87.160561,21.96244],[87.159897,21.933929],[87.141129,21.919691],[87.093536,21.9079],[87.094643,21.86034],[87.030243,21.865311],[86.997932,21.907501],[87.005547,21.940651],[87.034317,21.989191],[87.017616,22.041281],[86.995178,22.045799],[86.957237,22.083368],[86.90876,22.08638],[86.8479,22.098351],[86.806213,22.114161],[86.790321,22.15394],[86.715446,22.143492],[86.712776,22.178289],[86.722786,22.215248],[86.747803,22.207981],[86.791367,22.217541],[86.820343,22.260611],[86.885681,22.252121],[86.888451,22.28141],[86.829193,22.324591],[86.843933,22.396061],[86.80526,22.416491],[86.763893,22.42289],[86.745132,22.470539],[86.789223,22.47451],[86.784073,22.544241],[86.755989,22.57427],[86.706017,22.58036],[86.651703,22.57579],[86.634323,22.59726],[86.636688,22.655121],[86.617867,22.673389],[86.549522,22.710911],[86.478981,22.722391],[86.45401,22.75964],[86.416153,22.776508],[86.433907,22.82859],[86.432838,22.860491],[86.463043,22.896631],[86.432419,22.91577],[86.470123,22.946623],[86.486801,22.935541],[86.512238,22.966261],[86.497353,22.989908],[86.463089,22.985218],[86.416283,22.994791],[86.393036,22.974239],[86.359978,22.996681],[86.332153,22.988901],[86.279373,23.010719],[86.261292,22.995531],[86.212479,22.99185],[86.200867,23.015142],[86.175629,23.012991],[86.115692,23.093632],[86.091797,23.090771],[86.044243,23.11186],[86.036926,23.14361],[85.981941,23.145901],[85.94381,23.129471],[85.914993,23.12953],[85.877312,23.158661],[85.857521,23.194363],[85.835007,23.192101],[85.826363,23.263121],[85.861496,23.303329],[85.871597,23.330158],[85.866257,23.364849],[85.895859,23.37698],[85.862877,23.409971],[85.859543,23.450951],[85.874123,23.476231],[85.906372,23.47175],[85.937943,23.455139],[86.02037,23.487911],[86.041367,23.49025],[86.011009,23.561241],[86.037376,23.58346],[86.138611,23.570021],[86.153267,23.551592],[86.142929,23.527342],[86.155113,23.50423],[86.142677,23.477331],[86.179146,23.475121],[86.220978,23.45598],[86.224663,23.43568],[86.300148,23.44371],[86.351837,23.463631],[86.357971,23.54306],[86.444908,23.631533],[86.481293,23.635038],[86.528656,23.628981],[86.590622,23.662241],[86.648849,23.682871],[86.711006,23.697229],[86.738129,23.67761],[86.792038,23.68737],[86.816719,23.77615],[86.797691,23.797718],[86.844429,23.821852],[86.895012,23.879951],[86.924156,23.865881],[86.943199,23.842861],[86.963043,23.864773],[87.034409,23.836828],[87.056946,23.816259],[87.105927,23.79952],[87.148743,23.794371],[87.166443,23.81959],[87.130333,23.85091],[87.135818,23.868139],[87.187363,23.85718],[87.222481,23.857639],[87.219757,23.827209],[87.245728,23.828072],[87.264931,23.874828],[87.292587,23.890141],[87.285133,23.933889],[87.291817,23.9557],[87.259537,23.969921],[87.232651,24.024599],[87.243599,24.04212],[87.274277,24.031841],[87.332359,24.03101],[87.315392,24.004421],[87.337288,23.994951],[87.356636,24.00919],[87.389763,24.001963],[87.439102,23.97813],[87.471397,24.010891],[87.50135,24.022329],[87.491226,24.052021],[87.496597,24.115801],[87.539169,24.087801],[87.570213,24.087622],[87.581726,24.1234],[87.604912,24.132111],[87.57975,24.161539],[87.627541,24.163132],[87.689568,24.149839],[87.696678,24.175348],[87.670952,24.205738],[87.637726,24.21158],[87.647148,24.24856],[87.681358,24.246441],[87.756279,24.303593],[87.761238,24.333311],[87.797508,24.382181],[87.788101,24.432093],[87.817848,24.468451],[87.798531,24.491859],[87.796173,24.562382],[87.848213,24.55105],[87.887321,24.56271],[87.909973,24.593868],[87.901611,24.612581],[87.911598,24.662291],[87.886253,24.678089],[87.900833,24.7216],[87.839706,24.73819],[87.865387,24.774321],[87.897766,24.842781],[87.966507,24.8813],[87.973343,24.896482],[87.961693,24.93593],[87.906487,24.985811],[87.864342,25.03985],[87.792877,25.075731],[87.772667,25.099098],[87.771042,25.152271],[87.787582,25.22049],[87.829659,25.20405],[87.822777,25.234341],[87.849251,25.253428],[87.85041,25.297438],[87.828926,25.303421],[87.781593,25.3384],[87.788826,25.37225],[87.763069,25.395611],[87.786522,25.4487],[87.808647,25.434191],[87.833817,25.464573],[87.863472,25.465389],[87.869881,25.503],[87.900513,25.507231],[87.92411,25.535648],[87.955612,25.53805],[88.004242,25.49404],[88.061676,25.48559],[88.068863,25.513048],[88.027046,25.55327],[88.021942,25.58292],[88.038589,25.595041],[88.03582,25.64098],[88.050819,25.685801],[87.979668,25.71846],[87.937523,25.758301],[87.900948,25.78031],[87.910507,25.81481],[87.88765,25.83287],[87.910912,25.851749],[87.822838,25.871468],[87.806961,25.929918],[87.830978,25.962231],[87.826187,25.983683],[87.842117,26.044481],[87.912933,26.090973],[87.959846,26.08404],[87.969353,26.10931],[87.969536,26.154409],[87.999107,26.14039],[88.037437,26.1777],[88.074829,26.18128],[88.144447,26.2528],[88.176903,26.261728],[88.224586,26.2894],[88.226906,26.30397],[88.261131,26.337851],[88.289139,26.351139],[88.273979,26.377281],[88.23761,26.375378],[88.229248,26.389851],[88.255386,26.41588],[88.243401,26.449301],[88.193756,26.472021],[88.179207,26.49398],[88.23336,26.53237],[88.185738,26.54414],[88.165382,26.521641],[88.132179,26.512581],[88.106148,26.535624],[88.106216,26.536015],[88.105431,26.539408],[88.165619,26.645741],[88.169998,26.698927],[88.184662,26.719185],[88.190498,26.771412],[88.170219,26.837116],[88.174484,26.868902],[88.138931,26.898386],[88.148621,26.920416],[88.123016,26.950115],[88.120789,26.987118],[88.09111,27.007895],[88.085617,27.028616],[88.04026,27.036318],[88.01442,27.097115],[87.994171,27.105207],[88.009926,27.14296],[88.016968,27.218872],[88.058197,27.21389],[88.08326,27.165043],[88.085846,27.14151],[88.136627,27.116879],[88.15844,27.114351],[88.178993,27.13471],[88.213837,27.135122],[88.232506,27.119768],[88.277351,27.131191],[88.304497,27.128601],[88.363876,27.098421],[88.431946,27.08161],[88.454498,27.089649],[88.466721,27.113941],[88.495613,27.12536],[88.521713,27.150343],[88.520477,27.17503],[88.591476,27.19446],[88.619019,27.187853],[88.659599,27.16221],[88.68441,27.180229],[88.711807,27.16515],[88.717796,27.14397],[88.751686,27.148211]]]]},"properties":{"ID_0":105,"ISO":"IN-WB","NAME_0":"India","ID_1":35,"NAME_1":"West Bengal"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson
new file mode 100644
index 0000000..8580421
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson
@@ -0,0 +1,33 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": [
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.800987243652514,36.31871795654297],[51.01198196411161,36.28756713867199],[51.06120681762707,36.22972869873058],[51.21339797973661,36.20588302612305],[51.35529708862333,36.151294708251896],[51.358985900879134,36.071479797363224],[51.431793212890625,36.06380081176758],[51.36414337158209,36.001846313476676],[51.388080596923885,35.91337966918951],[51.308631896972884,35.91511535644531],[51.204555511474666,35.95154190063488],[51.08833312988304,35.86481094360346],[51.06231307983404,35.81103515625006],[51.11608886718767,35.73297500610363],[51.190425872802734,35.70566940307623],[51.11608886718767,35.646244049072266],[51.08486175537115,35.58379745483404],[50.96170425415056,35.60981750488287],[50.85387802124035,35.553409576416016],[50.806175231933594,35.62991333007824],[50.74951553344755,35.567531585693416],[50.67502212524431,35.6842498779298],[50.40495300292997,35.64186859130865],[50.28556060791044,35.666061401367244],[50.22243499755888,35.78289031982416],[50.25652694702143,35.83447647094738],[50.536556243896655,35.94723892211914],[50.56747055053711,36.058567047119254],[50.63432312011719,36.14147186279291],[50.620471954345874,36.1908912658692],[50.51443481445341,36.20640945434582],[50.405437469482706,36.28204345703119],[50.42648696899431,36.33311080932617],[50.496150970458984,36.3460044860841],[50.800987243652514,36.31871795654297]]]},"properties":{"ID_0":107,"ISO":"IR-32","NAME_0":"Iran","ID_1":1,"NAME_1":"Alborz","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":"استان البرز","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.60681915283203,38.41537857055664],[48.607414245605526,38.379890441894645],[48.72623443603521,38.31537628173834],[48.630641937256144,38.170166015625],[48.51404190063482,38.07278060913086],[48.497348785400504,37.977066040039176],[48.435066223144815,37.90296936035156],[48.49194717407249,37.832092285156364],[48.49975585937494,37.76813125610363],[48.616847991943416,37.583904266357365],[48.737632751465014,37.44508361816412],[48.87374114990263,37.35600662231445],[48.85551834106474,37.26907730102545],[48.8825225830081,37.20283889770508],[48.81130218505865,37.238250732421875],[48.6492462158206,37.15245437622082],[48.59880447387724,37.14997482299816],[48.51741027832054,37.232170104980526],[48.443695068359546,37.218509674072266],[48.18102264404308,37.36484527587885],[48.14016723632841,37.496597290039176],[47.957557678222656,37.52308654785162],[47.90293884277355,37.68790054321289],[47.917778015137,37.77580642700195],[47.9738655090332,37.84524154663086],[47.84188461303711,37.92025756835949],[47.77457046508795,37.97900009155279],[47.74055099487322,38.11584091186535],[47.74978637695307,38.1998748779298],[47.654613494873104,38.27391815185547],[47.47647094726557,38.232212066650334],[47.411663055420206,38.23699951171881],[47.33927536010742,38.29430007934576],[47.246662139892635,38.242820739746094],[47.20824432373075,38.2821617126466],[47.23009490966797,38.36771774291998],[47.32666015625023,38.4706916809082],[47.43153381347662,38.54302978515625],[47.588287353515625,38.52130126953125],[47.6299591064456,38.590019226074276],[47.527061462402344,38.63376617431652],[47.60523986816423,38.724533081054744],[47.58924484252958,38.8016242980957],[47.52104187011747,38.85683059692394],[47.541347503662166,38.9256324768067],[47.496994018554744,38.99015808105469],[47.54254150390631,39.05803680419922],[47.4585342407226,39.191482543945426],[47.45647048950201,39.31574249267578],[47.34544754028343,39.41117095947271],[47.38493347167986,39.45756149291992],[47.54190444946312,39.49956512451172],[47.74189758300787,39.5979957580567],[47.807823181152344,39.65007019042969],[47.899745941162394,39.65491104125971],[47.99076080322271,39.69631576538086],[48.14832687377924,39.56357955932617],[48.2336540222168,39.470256805420036],[48.37463378906244,39.37076950073242],[48.20785903930681,39.32165145874035],[48.131767272949276,39.26483535766613],[48.144172668457315,39.20019149780268],[48.30137634277355,39.10890960693371],[48.357784271240405,39.04054260253912],[48.29170608520536,38.96497344970703],[48.109313964843864,38.94277191162121],[48.01350021362322,38.90457916259771],[48.020648956299055,38.84116744995123],[48.11603546142595,38.7677574157716],[48.24625778198248,38.72357940673834],[48.31565475463867,38.60135269165039],[48.437496185302905,38.61143112182617],[48.574363708496264,38.471153259277344],[48.60681915283203,38.41537857055664]]]},"properties":{"ID_0":107,"ISO":"IR-03","NAME_0":"Iran","ID_1":2,"NAME_1":"Ardebil","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Ardabil"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[52.67041778564453,27.45958328247093],[52.619304656982706,27.460971832275447],[52.50597381591814,27.5987491607666],[52.43236160278326,27.64763832092291],[52.355140686035156,27.65125083923334],[52.19708251953131,27.703750610351506],[52.047359466552905,27.839305877685547],[51.932640075683764,27.830692291259936],[51.844860076904354,27.845138549804688],[51.701248168945256,27.823472976684627],[51.499027252197266,27.882360458374308],[51.37763977050787,28.000415802002067],[51.30152893066406,28.114860534668026],[51.26208496093773,28.137916564941406],[51.289306640625,28.22486114501953],[51.13347244262724,28.419860839843807],[51.0904159545899,28.512361526489258],[51.07152938842768,28.690416336059684],[51.000972747802905,28.84736061096197],[50.88458251953125,28.82208251953125],[50.81735992431652,28.90569496154791],[50.92847061157238,28.989027023315543],[50.92402648925798,29.04791641235363],[50.8143043518067,29.137638092041016],[50.675140380859375,29.113750457763615],[50.64513778686529,29.163471221923885],[50.66430664062506,29.27652740478527],[50.654861450195426,29.43486022949213],[50.525695800781534,29.544860839843864],[50.470138549804744,29.621528625488565],[50.323749542236385,29.736528396606673],[50.24902725219755,29.845693588256836],[50.14319610595703,29.933195114135685],[50.14402770996122,30.06347465515131],[50.086250305176065,30.179306030273608],[50.04281997680687,30.204027175903377],[50.14558029174805,30.278978347778548],[50.2603454589846,30.224668502807617],[50.42987060546875,30.21885108947754],[50.520763397216854,30.201278686523438],[50.60147094726557,30.144868850708008],[50.58147811889677,30.058519363403377],[50.67302322387701,29.993011474609375],[50.75549316406273,29.850677490234375],[51.00362014770519,29.84211921691889],[51.10622024536144,29.803594589233455],[51.17362213134794,29.803726196289176],[51.255683898925724,29.715913772583008],[51.24953460693388,29.617092132568473],[51.390594482421875,29.479328155517635],[51.58342361450224,29.401493072509822],[51.76555633544939,29.06812286376953],[51.88141632080084,28.932344436645508],[52.023502349853686,28.651567459106616],[52.049777984619425,28.51613044738764],[52.12062835693388,28.361444473266545],[52.18985748291044,28.254991531372184],[52.18104553222679,28.167512893676758],[52.28146743774437,28.12912178039562],[52.394733428955135,28.012933731079215],[52.534202575683764,27.713422775268498],[52.57999038696295,27.64639854431158],[52.970890045166186,27.382080078125057],[52.91679000854498,27.355484008789062],[52.79615402221674,27.369459152221737],[52.698638916015625,27.356527328491325],[52.6733589172365,27.312917709350586],[52.580696105957145,27.392917633056754],[52.670970916748104,27.405696868896598],[52.67041778564453,27.45958328247093]]]},"properties":{"ID_0":107,"ISO":"IR-06","NAME_0":"Iran","ID_1":3,"NAME_1":"Bushehr","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Banader va Jazayer-e Khalij-e Fars|Bushire|Persian Gulf|Ports and Islands of the Persian Gulf"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[51.310806274414006,31.16405868530279],[51.1863365173341,31.15287590026861],[51.14325714111351,31.0932998657226],[50.93798446655302,31.11030769348156],[50.83269500732422,31.177537918090877],[50.61801528930664,31.37982559204113],[50.44578170776367,31.395214080810604],[50.257598876953296,31.487949371337947],[50.36516952514654,31.618724822998047],[50.30044555664091,31.74414825439453],[50.24131011962919,31.77169418334961],[50.10333633422863,31.94311904907221],[50.071262359619425,32.06895828247082],[49.951522827148494,32.12327575683611],[49.87113571166998,32.2668838500976],[49.77000427246122,32.37057113647461],[49.73611831665062,32.50638580322271],[49.905731201171875,32.59143829345709],[49.98816680908226,32.58470916748047],[50.137855529785156,32.61944961547863],[50.236503601074446,32.53447341918951],[50.43373107910179,32.5405387878418],[50.54565048217785,32.61244964599621],[50.753673553466854,32.627681732177734],[50.8211555480957,32.66864395141613],[50.869468688965014,32.6303825378418],[50.86194992065447,32.55152130126953],[50.9590797424317,32.46510696411144],[50.917747497558594,32.37592315673834],[50.93202209472673,32.327159881591854],[51.07460784912115,32.251312255859375],[51.1835479736331,32.1550407409668],[51.30273437500006,32.078361511230526],[51.32206344604498,31.931537628173828],[51.233894348144815,31.861654281616268],[51.30738830566423,31.76435089111328],[51.20729064941406,31.704109191894588],[51.215118408203125,31.537052154541186],[51.301452636718864,31.390441894531364],[51.32958602905285,31.262741088867415],[51.310806274414006,31.16405868530279]]]},"properties":{"ID_0":107,"ISO":"IR-08","NAME_0":"Iran","ID_1":4,"NAME_1":"Chahar Mahall and Bakhtiari","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Bakhtiari|Chaharmahal va Bakhtiyari|Charmahal-Bakhtiyari"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.443695068359546,37.218509674072266],[48.36600112915039,37.166534423828125],[48.16621780395536,37.20207595825195],[47.992397308349666,37.181716918945426],[47.88578796386713,37.203273773193416],[47.81476974487322,37.179653167724666],[47.6019668579101,37.16534042358404],[47.50381469726568,37.092681884765625],[47.40962219238304,37.05807495117193],[47.32819747924822,36.958404541015625],[47.26881408691406,36.935417175293026],[47.17372512817383,36.81395721435558],[47.19384002685547,36.756877899169865],[46.8283004760745,36.743331909179744],[46.80905914306652,36.789932250976676],[46.83346939086914,36.87696838378906],[46.77280807495117,36.928691864013786],[46.75727462768566,37.01158142089855],[46.68025588989275,37.015281677246094],[46.63259124755865,37.067882537841854],[46.55743408203131,37.062328338623104],[46.41474914550804,37.00500106811535],[46.34689712524414,36.95329284667969],[46.34195327758795,36.906326293945256],[46.27053070068365,36.873115539550895],[46.18256759643583,36.941165924072266],[46.07387924194347,36.979831695556754],[46.054157257080135,37.02514266967779],[45.873649597168026,37.12437820434582],[45.72864532470709,37.09469604492193],[45.61871719360374,37.17125701904291],[45.420391082763956,37.261863708496094],[45.351352691650675,37.314266204833984],[45.338966369628906,37.4076766967774],[45.36307525634794,37.5030975341798],[45.277210235595874,37.5929908752442],[45.22862243652372,37.676006317138786],[45.20910644531256,37.81981277465832],[45.2124404907226,38.03858566284191],[45.16275787353521,38.16683197021496],[45.09000396728533,38.227558135986385],[45.11207580566435,38.344150543213004],[45.21566772460949,38.442790985107365],[45.355373382568644,38.54385375976568],[45.37619018554693,38.60674285888672],[45.32024002075201,38.7542343139649],[45.348564147949276,38.85796356201172],[45.48825836181658,38.976951599121094],[45.767547607421875,38.92152023315441],[45.92098999023466,38.86976623535156],[46.07546234130888,38.86764526367182],[46.17755508422857,38.83052062988281],[46.359050750732365,38.90726470947277],[46.533733367920206,38.86488723754877],[46.60915374755888,38.91548538208008],[46.852722167969034,39.1396217346192],[46.95483398437517,39.132511138916016],[47.033237457275675,39.17578887939459],[47.0646781921389,39.24313735961914],[47.210582733154354,39.31140899658209],[47.34544754028343,39.41117095947271],[47.45647048950201,39.31574249267578],[47.4585342407226,39.191482543945426],[47.54254150390631,39.05803680419922],[47.496994018554744,38.99015808105469],[47.541347503662166,38.9256324768067],[47.52104187011747,38.85683059692394],[47.58924484252958,38.8016242980957],[47.60523986816423,38.724533081054744],[47.527061462402344,38.63376617431652],[47.6299591064456,38.590019226074276],[47.588287353515625,38.52130126953125],[47.43153381347662,38.54302978515625],[47.32666015625023,38.4706916809082],[47.23009490966797,38.36771774291998],[47.20824432373075,38.2821617126466],[47.246662139892635,38.242820739746094],[47.33927536010742,38.29430007934576],[47.411663055420206,38.23699951171881],[47.47647094726557,38.232212066650334],[47.654613494873104,38.27391815185547],[47.74978637695307,38.1998748779298],[47.74055099487322,38.11584091186535],[47.77457046508795,37.97900009155279],[47.84188461303711,37.92025756835949],[47.9738655090332,37.84524154663086],[47.917778015137,37.77580642700195],[47.90293884277355,37.68790054321289],[47.957557678222656,37.52308654785162],[48.14016723632841,37.496597290039176],[48.18102264404308,37.36484527587885],[48.443695068359546,37.218509674072266]]]},"properties":{"ID_0":107,"ISO":"IR-01","NAME_0":"Iran","ID_1":5,"NAME_1":"East Azarbaijan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Azarbayjan-e Khavari|Azarbaijan-e Sharghi|Azarbaijan-Sharqi|East Azarbayejan|Azerba‹djan e Sharqi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[55.375221252441406,34.341957092285156],[55.387413024902514,34.03519058227545],[55.399623870849666,33.97571182250982],[55.401069641113565,33.70951080322271],[55.342098236084155,33.55321884155279],[55.23501968383795,33.426795959472656],[55.057193756103516,33.42440795898449],[54.997608184814396,33.3736457824707],[54.9602813720706,33.21295928955078],[54.87451171875017,33.02181243896479],[54.77834320068371,32.94098663330078],[54.706695556640625,32.91045761108404],[54.50440216064459,32.85909271240246],[54.266712188720646,32.81739425659191],[53.79235458374035,32.6334686279298],[53.61690902709978,32.612312316894474],[53.53479003906267,32.64161682128912],[53.30079650878906,32.67966842651373],[53.23097610473661,32.6691627502442],[53.081172943115234,32.59844970703125],[53.024459838867244,32.548427581787166],[52.8975067138673,32.52761840820307],[52.87908172607422,32.388999938964844],[52.91076278686535,32.16212844848633],[52.83815002441412,31.934347152710075],[52.821613311767635,31.71625518798828],[52.87075805664068,31.5974960327149],[52.711654663085994,31.547340393066463],[52.529632568359546,31.507022857666072],[52.403503417968864,31.516378402710018],[52.18428802490257,31.574581146240348],[52.180828094482536,31.67333984375],[52.03168869018549,31.682258605957145],[51.965663909912394,31.612745285034237],[51.79772186279325,31.522821426391886],[51.65962600708008,31.5513534545899],[51.626194000244084,31.531368255615234],[51.7330780029298,31.423770904541016],[51.80146026611334,31.424238204956055],[51.87129211425804,31.385225296020508],[51.834098815918196,31.138420104980526],[51.76844787597656,31.059165954590014],[51.726734161377124,30.940546035766715],[51.742645263672046,30.782714843750057],[51.64117050170921,30.772253036499194],[51.51472473144548,30.840486526489258],[51.375053405762,30.957714080810604],[51.30320739746111,31.065460205078296],[51.310806274414006,31.16405868530279],[51.32958602905285,31.262741088867415],[51.301452636718864,31.390441894531364],[51.215118408203125,31.537052154541186],[51.20729064941406,31.704109191894588],[51.30738830566423,31.76435089111328],[51.233894348144815,31.861654281616268],[51.32206344604498,31.931537628173828],[51.30273437500006,32.078361511230526],[51.1835479736331,32.1550407409668],[51.07460784912115,32.251312255859375],[50.93202209472673,32.327159881591854],[50.917747497558594,32.37592315673834],[50.9590797424317,32.46510696411144],[50.86194992065447,32.55152130126953],[50.869468688965014,32.6303825378418],[50.8211555480957,32.66864395141613],[50.753673553466854,32.627681732177734],[50.54565048217785,32.61244964599621],[50.43373107910179,32.5405387878418],[50.236503601074446,32.53447341918951],[50.137855529785156,32.61944961547863],[49.98816680908226,32.58470916748047],[49.905731201171875,32.59143829345709],[49.73611831665062,32.50638580322271],[49.796966552734546,32.63630294799805],[49.7106285095216,32.6917839050293],[49.523017883301065,32.67420959472662],[49.453266143798885,32.80883789062523],[49.45034408569336,32.84806823730486],[49.64681243896496,32.93505477905279],[49.61569213867216,33.0518913269043],[49.78970336914057,33.12763595581055],[49.86072540283209,33.13036346435547],[49.92510223388683,33.29004669189453],[49.99386215209972,33.371128082275504],[49.943782806396484,33.44762039184582],[50.00153350830084,33.49870300292969],[50.058876037597656,33.559448242187614],[50.2338485717774,33.643638610839844],[50.37520980834961,33.658008575439396],[50.45669555664057,33.689781188964844],[50.55089950561529,33.692653656005916],[50.71406173706083,33.746147155761776],[50.81752777099638,33.82704925537121],[50.90068054199247,33.799999237060604],[50.943435668945426,33.94749450683594],[51.01288223266607,33.988323211670036],[51.04649353027344,34.04771041870117],[51.033023834228686,34.10585403442377],[50.99740219116211,34.11465454101568],[50.972965240478516,34.14321517944347],[50.99495697021479,34.20279312133789],[51.00559616088867,34.25274658203131],[51.01535797119135,34.353160858154354],[51.014953613281364,34.37325668334972],[51.03786468505854,34.404067993164006],[51.06094741821295,34.424819946289176],[51.14299392700201,34.4471817016601],[51.29571914672857,34.471210479736385],[51.531772613525334,34.46655273437506],[51.59070587158209,34.467781066894474],[51.661136627197266,34.47925567626953],[51.67292404174799,34.47949218750006],[51.707992553710994,34.490230560302734],[51.75453948974615,34.511230468750114],[51.788948059082315,34.542034149170036],[51.93305969238287,34.46427154541021],[52.0520668029788,34.43624496459961],[52.181724548340014,34.458629608154354],[52.347690582275675,34.461521148681754],[52.574401855468864,34.41516876220703],[52.670181274414006,34.37658309936529],[52.90824127197283,34.3201141357423],[53.16893386840826,34.32403564453131],[53.24011611938482,34.31497192382824],[53.536067962646484,34.318805694580135],[53.606899261474666,34.32970428466797],[53.938201904297046,34.33323287963867],[54.091499328613565,34.35475921630865],[54.423133850097884,34.35747146606445],[54.458343505859546,34.36776351928711],[55.028484344482706,34.37099075317383],[55.26583480834961,34.391593933105526],[55.375221252441406,34.341957092285156]]]},"properties":{"ID_0":107,"ISO":"IR-04","NAME_0":"Iran","ID_1":6,"NAME_1":"Esfahan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Isfahan|Ispahan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[52.87075805664068,31.5974960327149],[53.09037780761736,31.528797149658317],[53.22953414917009,31.45966148376482],[53.33446502685575,31.37046432495123],[53.41657638549833,31.25137329101574],[53.45247650146507,31.132249832153263],[53.64963531494158,30.72549057006836],[53.695381164550724,30.675861358642692],[53.82095336914068,30.467586517333928],[54.00261306762695,30.288911819458065],[54.0363388061524,30.17011070251465],[54.046970367431754,30.011940002441463],[54.10313415527372,29.942625045776424],[54.430229187012,29.793277740478572],[54.42949295043951,29.73407554626459],[54.54033279418968,29.55599403381359],[54.561832427978516,29.476993560791072],[54.66277694702154,29.41731834411621],[54.866546630859375,29.416261672973633],[54.9341773986817,29.396163940429688],[55.08545303344749,29.000465393066463],[55.129711151123274,28.95079421997076],[55.19394683837919,28.772464752197322],[55.113998413085994,28.713359832763786],[55.392436981201115,28.513227462768555],[55.48142242431635,28.43345642089855],[55.49231338500982,28.33502769470209],[55.41840362548834,28.034687042236385],[55.496379852294865,27.99475288391119],[55.56402969360357,27.91639137268072],[55.55450439453142,27.839599609375],[55.5112571716308,27.802051544189567],[55.346382141113224,27.80527305603033],[55.260223388671875,27.74011039733898],[55.17364501953131,27.70372962951666],[55.12377929687494,27.562089920044116],[55.04048156738281,27.47820854187023],[54.90762329101568,27.479558944702262],[54.82955551147472,27.509124755859432],[54.66286468505865,27.529682159423942],[54.55278778076172,27.472454071045036],[54.46350860595703,27.511737823486442],[54.37509918212919,27.492944717407283],[54.264106750488565,27.50328445434576],[54.13145446777344,27.48461532592779],[53.98902893066412,27.407909393310604],[54.00158309936535,27.32041740417486],[53.96911239624029,27.262046813964844],[53.97000503540039,27.183853149414062],[53.87080001831055,27.13524055480957],[53.737758636474894,27.1455078125],[53.548900604248274,27.19514846801752],[53.44940567016613,27.165964126586914],[53.293270111083984,27.26407241821289],[53.09440994262724,27.25556564331066],[53.01682281494146,27.29582977294922],[52.970890045166186,27.382080078125057],[52.57999038696295,27.64639854431158],[52.534202575683764,27.713422775268498],[52.394733428955135,28.012933731079215],[52.28146743774437,28.12912178039562],[52.18104553222679,28.167512893676758],[52.18985748291044,28.254991531372184],[52.12062835693388,28.361444473266545],[52.049777984619425,28.51613044738764],[52.023502349853686,28.651567459106616],[51.88141632080084,28.932344436645508],[51.76555633544939,29.06812286376953],[51.58342361450224,29.401493072509822],[51.390594482421875,29.479328155517635],[51.24953460693388,29.617092132568473],[51.255683898925724,29.715913772583008],[51.17362213134794,29.803726196289176],[51.10622024536144,29.803594589233455],[51.00362014770519,29.84211921691889],[50.75549316406273,29.850677490234375],[50.67302322387701,29.993011474609375],[50.58147811889677,30.058519363403377],[50.60147094726557,30.144868850708008],[50.7023239135745,30.175216674804744],[50.88398361206083,30.158048629760856],[51.00745391845726,30.22913360595703],[51.097927093505916,30.25063133239746],[51.21017456054693,30.32228088378912],[51.19575119018555,30.48133850097662],[51.13698577880865,30.569829940796012],[51.146648406982706,30.639343261718693],[51.20266723632807,30.669757843017692],[51.52341842651384,30.524515151977823],[51.66877365112305,30.584796905517635],[51.678813934326286,30.63424110412592],[51.64117050170921,30.772253036499194],[51.742645263672046,30.782714843750057],[51.726734161377124,30.940546035766715],[51.76844787597656,31.059165954590014],[51.834098815918196,31.138420104980526],[51.87129211425804,31.385225296020508],[51.80146026611334,31.424238204956055],[51.7330780029298,31.423770904541016],[51.626194000244084,31.531368255615234],[51.65962600708008,31.5513534545899],[51.79772186279325,31.522821426391886],[51.965663909912394,31.612745285034237],[52.03168869018549,31.682258605957145],[52.180828094482536,31.67333984375],[52.18428802490257,31.574581146240348],[52.403503417968864,31.516378402710018],[52.529632568359546,31.507022857666072],[52.711654663085994,31.547340393066463],[52.87075805664068,31.5974960327149]]]},"properties":{"ID_0":107,"ISO":"IR-14","NAME_0":"Iran","ID_1":7,"NAME_1":"Fars","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.57565307617193,36.985851287841854],[50.576499938965014,36.953472137451286],[50.43785476684599,36.87705612182617],[50.41929626464855,36.745048522949276],[50.304534912109375,36.67030715942383],[50.173130035400675,36.68590164184582],[49.92498779296875,36.60652542114269],[49.85517501831083,36.563632965088004],[49.759098052978686,36.56050872802746],[49.68463134765642,36.598831176757926],[49.57612991333036,36.59546279907238],[49.46565246582048,36.62313461303722],[49.350143432617244,36.72291564941412],[49.34674072265631,36.77424621582037],[49.24583053588884,36.81312179565441],[49.182567596435604,36.998764038085994],[49.005035400390796,37.14783859252941],[48.8825225830081,37.20283889770508],[48.85551834106474,37.26907730102545],[48.87374114990263,37.35600662231445],[48.737632751465014,37.44508361816412],[48.616847991943416,37.583904266357365],[48.49975585937494,37.76813125610363],[48.49194717407249,37.832092285156364],[48.435066223144815,37.90296936035156],[48.497348785400504,37.977066040039176],[48.51404190063482,38.07278060913086],[48.630641937256144,38.170166015625],[48.72623443603521,38.31537628173834],[48.607414245605526,38.379890441894645],[48.60681915283203,38.41537857055664],[48.685920715331974,38.397899627685604],[48.791141510009936,38.444595336914006],[48.87938690185547,38.43700027465826],[48.86454010009771,38.29584503173828],[48.89918518066423,38.15789031982433],[48.907009124755916,38.02765274047857],[48.94060897827177,37.96163177490246],[49.00397109985346,37.726718902588004],[49.07481002807623,37.653205871582145],[49.22426223754877,37.55569458007818],[49.323673248291186,37.51506423950195],[49.543403625488565,37.46683883666992],[49.950813293457315,37.433032989501896],[50.167907714843864,37.39396286010742],[50.220893859863565,37.35614013671875],[50.23125076293951,37.29142761230469],[50.29901885986328,37.15544891357422],[50.48303604125999,37.023082733154354],[50.57565307617193,36.985851287841854]]]},"properties":{"ID_0":107,"ISO":"IR-19","NAME_0":"Iran","ID_1":8,"NAME_1":"Gilan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[56.166519165039176,38.08312225341808],[56.161827087402344,37.971778869628906],[56.185649871826456,37.88750076293957],[56.15512847900408,37.771595001220646],[56.186080932617244,37.73124313354498],[56.292095184326456,37.69876861572277],[56.30260848999035,37.58738708496105],[56.22866439819336,37.5588111877442],[56.06548690795927,37.53205490112305],[55.94262313842796,37.453849792480526],[55.9437637329101,37.41351318359375],[55.86745452880854,37.354412078857536],[55.82921981811518,37.35507965087902],[55.747154235839844,37.25568389892584],[55.68809127807634,37.13562393188488],[55.57156753540056,37.02638244628912],[55.535430908203296,36.79731750488287],[55.42850112915056,36.74919891357422],[55.16365814208979,36.79246139526373],[54.94525146484369,36.774665832519645],[54.78672790527372,36.70557403564459],[54.62058639526367,36.5465202331543],[54.41059494018555,36.466430664062614],[54.27357864379877,36.49562454223633],[54.12017822265642,36.484836578369254],[54.06410598754911,36.56361389160156],[53.90860366821295,36.66076660156256],[53.738105773925724,36.72750854492193],[53.70676040649431,36.80323791503912],[53.936565399169865,36.78781127929693],[54.03426742553711,36.814228057861385],[54.03625869751005,36.95799255371105],[53.93426132202143,37.218040466308594],[53.89781188964844,37.34080886840826],[54.24357223510748,37.309181213378906],[54.358985900878906,37.344192504882926],[54.5070419311524,37.43066787719732],[54.583015441894815,37.45543289184576],[54.65324401855463,37.43072891235363],[54.797786712646484,37.523056030273494],[54.81912231445318,37.60539627075201],[54.78400039672846,37.63270187377941],[54.82384109497082,37.72521209716797],[55.02793121337896,37.86310958862316],[55.12932586669916,37.95096969604498],[55.18614578247076,37.9586753845216],[55.54068756103544,38.086662292480526],[55.81336212158203,38.111526489257926],[55.98078155517595,38.0650367736817],[56.166519165039176,38.08312225341808]]]},"properties":{"ID_0":107,"ISO":"IR-27","NAME_0":"Iran","ID_1":9,"NAME_1":"Golestan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.22574615478521,35.69027709960943],[48.278148651123104,35.620643615722656],[48.3525199890139,35.60245895385748],[48.47334671020502,35.63637542724621],[48.672286987304915,35.55095672607416],[48.805473327637,35.565017700195426],[48.80254745483393,35.635829925537166],[48.837718963623104,35.66727447509777],[48.97161483764654,35.6613655090332],[49.09681701660156,35.564903259277344],[49.01324081420904,35.53157043457031],[49.051979064941406,35.47256469726557],[49.30588531494146,35.48244476318371],[49.440513610839844,35.437694549560604],[49.442760467529524,35.37762832641613],[49.49282836914085,35.329650878906364],[49.38626861572277,35.275070190429744],[49.313156127929915,35.29206085205084],[49.4032440185548,35.14570999145519],[49.36937332153349,35.084259033203125],[49.248451232910156,35.08905410766613],[49.28728485107433,35.020717620849666],[49.445381164551065,34.98777770996094],[49.545284271240405,34.89273452758795],[49.57503128051752,34.73497772216808],[49.515655517578125,34.71217727661144],[49.40312576293974,34.82629394531256],[49.435943603515625,34.91752624511713],[49.109683990478516,34.92310714721691],[49.13896560668974,34.784461975097656],[49.06719970703119,34.76136016845703],[49.08305358886736,34.65222549438482],[48.86645126342768,34.60293197631836],[48.98911666870134,34.558277130126896],[48.96880722045904,34.39765167236328],[49.0697593688966,34.25393676757824],[49.09939575195341,34.11030960083008],[48.97105407714855,33.9891471862793],[48.77448654174816,34.03789138793951],[48.67512512207037,34.08164596557617],[48.56499862670921,34.08662796020508],[48.48233795166021,34.01581573486334],[48.43220901489258,34.04275894165039],[48.1986160278322,34.05352783203125],[48.07111740112322,34.15567016601568],[47.921390533447436,34.19915771484381],[47.69400024414068,34.349765777588004],[47.75261306762695,34.44236755371105],[47.914279937744254,34.42752075195324],[47.98830032348627,34.44002151489252],[47.99734878540045,34.6019554138183],[47.86170959472685,34.577400207519645],[47.78704833984375,34.58515167236334],[47.611522674560774,34.640392303466854],[47.573211669921875,34.67975997924816],[47.60923767089861,34.7417564392091],[47.75849533081072,34.746307373046875],[47.75598144531256,34.837314605713004],[47.841068267822436,34.8903427124024],[47.85146713256859,34.95128631591791],[47.87514114379911,34.982280731201115],[48.06125640869135,34.947265625000114],[48.143974304199276,35.040527343750114],[48.16455841064476,35.14202117919916],[48.08731079101585,35.23069763183605],[47.96160507202143,35.29801559448242],[47.90560150146496,35.448329925537166],[47.79882049560564,35.61769866943371],[47.882411956787394,35.67080307006847],[47.948932647705305,35.57113265991211],[48.044712066650675,35.62443542480469],[48.090312957763956,35.69680023193365],[48.22574615478521,35.69027709960943]]]},"properties":{"ID_0":107,"ISO":"IR-24","NAME_0":"Iran","ID_1":10,"NAME_1":"Hamadan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Hamedan"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[56.15763854980469,26.999862670898494],[56.277637481689396,26.962638854980526],[56.26402664184576,26.927917480468807],[56.16652679443354,26.90736389160162],[56.14180374145536,26.84180641174345],[55.94180679321289,26.6881942749024],[55.88097381591825,26.73319435119629],[55.764305114746264,26.68208312988287],[55.68291854858393,26.683471679687614],[55.615139007568416,26.639583587646484],[55.277915954590014,26.543750762939567],[55.268470764160384,26.659860610962028],[55.33486175537115,26.643749237060717],[55.564582824706974,26.714582443237305],[55.63958358764677,26.76874732971197],[55.76652908325195,26.801805496215763],[55.78319549560564,26.947639465332145],[55.890972137451456,26.899305343627987],[56.15763854980469,26.999862670898494]]],[[[56.06124877929682,27.096527099609432],[55.98014068603544,27.068750381469783],[55.946804046630916,27.021526336670206],[55.72791671752941,26.98208427429205],[55.64875030517578,26.983749389648438],[55.606250762939396,26.950416564941634],[55.564582824706974,26.813749313354492],[55.462360382080135,26.749860763549805],[55.3337516784668,26.785694122314453],[55.23569488525419,26.77652740478544],[55.21763992309593,26.734027862549055],[55.09819412231445,26.69541740417509],[55.05597305297846,26.641527175903377],[54.97152709960966,26.618749618530387],[54.84736251831055,26.518472671508846],[54.62458419799805,26.50041580200201],[54.56430435180681,26.587360382080135],[54.404026031494254,26.59569358825695],[54.3154182434082,26.713750839233512],[54.192638397216854,26.703750610351562],[54.022914886474894,26.756805419921875],[53.832359313965014,26.70763969421398],[53.697360992431754,26.73513793945341],[53.6023597717288,26.77402687072754],[53.483749389648494,26.864305496215877],[53.4595832824707,26.98125076293951],[53.35985946655279,27.002639770507812],[52.958473205566634,27.138750076294002],[52.8309707641601,27.20375061035162],[52.6733589172365,27.312917709350586],[52.698638916015625,27.356527328491325],[52.79615402221674,27.369459152221737],[52.91679000854498,27.355484008789062],[52.970890045166186,27.382080078125057],[53.01682281494146,27.29582977294922],[53.09440994262724,27.25556564331066],[53.293270111083984,27.26407241821289],[53.44940567016613,27.165964126586914],[53.548900604248274,27.19514846801752],[53.737758636474894,27.1455078125],[53.87080001831055,27.13524055480957],[53.97000503540039,27.183853149414062],[53.96911239624029,27.262046813964844],[54.00158309936535,27.32041740417486],[53.98902893066412,27.407909393310604],[54.13145446777344,27.48461532592779],[54.264106750488565,27.50328445434576],[54.37509918212919,27.492944717407283],[54.46350860595703,27.511737823486442],[54.55278778076172,27.472454071045036],[54.66286468505865,27.529682159423942],[54.82955551147472,27.509124755859432],[54.90762329101568,27.479558944702262],[55.04048156738281,27.47820854187023],[55.12377929687494,27.562089920044116],[55.17364501953131,27.70372962951666],[55.260223388671875,27.74011039733898],[55.346382141113224,27.80527305603033],[55.5112571716308,27.802051544189567],[55.55450439453142,27.839599609375],[55.56402969360357,27.91639137268072],[55.496379852294865,27.99475288391119],[55.41840362548834,28.034687042236385],[55.49231338500982,28.33502769470209],[55.48142242431635,28.43345642089855],[55.392436981201115,28.513227462768555],[55.113998413085994,28.713359832763786],[55.19394683837919,28.772464752197322],[55.129711151123274,28.95079421997076],[55.321723937988565,28.939636230468807],[55.44488143920893,28.879459381103572],[55.51097869873041,28.79987144470215],[55.60007858276373,28.73983955383312],[55.70260238647478,28.76861190795904],[55.85277175903326,28.885881423950252],[56.00174331665062,28.943756103515625],[56.06745529174799,28.85403442382824],[56.07201766967768,28.60673332214361],[56.05739593505888,28.488256454467773],[56.021842956543026,28.429294586181697],[56.031349182128906,28.35980033874523],[56.24087524414091,28.169071197509766],[56.31872177124029,28.12857627868658],[56.498516082763615,28.106681823730526],[56.682254791259766,28.19158744812023],[56.77707672119135,28.307804107666072],[56.84619140625,28.335826873779354],[56.99152755737333,28.273054122924975],[56.97534942626976,28.1449031829834],[57.01493835449236,27.995599746704215],[57.13784027099615,27.952962875366325],[57.19044494628906,27.852577209472656],[57.28897476196289,27.770826339721793],[57.29703140258812,27.69084358215332],[57.22795486450201,27.65250968933111],[57.32665252685547,27.580352783203296],[57.36813354492216,27.460426330566406],[57.375083923339844,27.166696548462085],[57.38530731201183,27.078891754150447],[57.43978500366205,27.00893592834484],[57.54987335205084,26.995187759399528],[57.63760375976568,26.93394088745123],[57.69277954101574,26.9320716857913],[57.791477203369254,26.841594696044922],[57.88035583496094,26.896955490112305],[57.90303421020536,26.95459747314453],[58.01366424560547,26.941652297973633],[58.21184921264677,26.79015350341797],[58.13395309448248,26.753593444824276],[58.15552139282249,26.627279281616268],[58.11107254028326,26.580369949340763],[58.09992980957054,26.47477531433117],[58.11145019531244,26.33996009826666],[58.07913208007835,26.206672668456974],[58.20108413696295,26.231971740722713],[58.312526702880916,26.200130462646484],[58.38999938964844,26.236253738403434],[58.43431854248075,26.2061443328858],[58.522743225097656,26.203479766845817],[58.543735504150504,26.048866271972713],[58.68704986572294,26.044534683227823],[58.73163604736351,26.10088539123535],[58.830589294433594,26.068990707397518],[58.8631324768067,26.01030158996582],[58.81852340698265,25.944341659546012],[59.07057571411127,25.763767242431697],[59.113971710205305,25.647247314453068],[59.278663635254134,25.508125305175838],[59.24678421020519,25.45458412170416],[59.117637634277344,25.405416488647518],[59.00152969360346,25.422916412353572],[58.92958450317411,25.501806259155387],[58.801528930664006,25.57236289978033],[58.690139770507756,25.5668048858642],[58.59208297729492,25.590972900390568],[58.33958435058588,25.588750839233455],[58.23958206176758,25.562639236450195],[58.09680557250982,25.562639236450195],[58.03513717651367,25.596805572509766],[57.9501380920413,25.70013809204113],[57.815971374512,25.658750534057674],[57.7248611450197,25.752082824707088],[57.64430618286133,25.733192443847713],[57.40708160400385,25.76180648803711],[57.33791732788097,25.78652763366705],[57.297359466552734,25.83763885498047],[57.27541732788086,25.93458557128912],[57.20208358764677,26.00902748107916],[57.182918548583984,26.09069442749029],[57.221805572509936,26.171249389648438],[57.13986206054682,26.22930335998541],[57.06152725219755,26.37430572509777],[57.08486175537115,26.568195343017692],[57.059581756591854,26.708749771118164],[57.00902938842779,26.835416793823526],[56.927917480469034,26.915416717529524],[56.91791534423834,26.995416641235522],[56.770416259765796,27.135974884033317],[56.52208328247076,27.174303054809684],[56.46736145019548,27.162916183471793],[56.353195190429744,27.189306259155273],[56.19736099243181,27.135694503784123],[56.13791656494135,27.153749465942383],[56.06124877929682,27.096527099609432]]]]},"properties":{"ID_0":107,"ISO":"IR-23","NAME_0":"Iran","ID_1":11,"NAME_1":"Hormozgan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Banader va Jazayer-e Bahr-e Oman|Ports and Islands of the Sea of Oman|Saheli"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.38620376586914,34.037868499755916],[47.44114303588867,33.94293212890625],[47.39939880371105,33.85400009155279],[47.267295837402344,33.76385498046881],[47.15410232543951,33.77183914184582],[46.9779129028322,33.730159759521484],[46.90377426147472,33.68014907836914],[46.88798141479509,33.61219024658203],[46.83607101440424,33.57064437866222],[46.94044494628935,33.42927551269531],[47.0148468017581,33.3636474609375],[47.134307861328296,33.298065185546875],[47.28422164917015,33.26074218750006],[47.55392074584984,33.05810928344738],[47.66004943847662,33.00983047485357],[47.73099517822271,32.88345718383789],[47.810787200927734,32.77653503417963],[47.89882659912115,32.601535797119084],[47.84772491455084,32.466003417968864],[47.726696014404354,32.334632873535156],[47.75975799560547,32.229866027832145],[47.73097229003906,32.17469024658209],[47.607063293457315,32.11259841918951],[47.535774230957145,32.17451095581055],[47.567279815673885,32.223934173583984],[47.44525527954113,32.323501586914176],[47.45128631591791,32.397624969482536],[47.38510131835932,32.46707153320318],[47.298305511474666,32.492576599121094],[47.21424484252958,32.45600509643549],[47.10831451416044,32.475811004638786],[46.82357788085932,32.70232391357433],[46.402404785156534,32.94528198242199],[46.16143798828131,32.95274734497093],[46.10719299316423,33.01379013061529],[46.165813446045036,33.06252670288097],[46.142204284668026,33.11898422241222],[46.1998405456543,33.17407608032238],[46.19726943969755,33.253376007080135],[46.0455703735351,33.38234329223661],[46.03326797485346,33.46773529052746],[45.91020202636719,33.62301635742182],[45.77720642089838,33.62287521362316],[45.74729537963873,33.6489143371582],[45.77251052856474,33.826171875],[45.831035614013956,33.935188293457145],[45.7682342529298,34.001228332519645],[45.959274291992415,34.01485061645519],[46.023799896240234,34.04614257812506],[46.17015838623064,33.96694564819347],[46.29717254638689,33.981758117675895],[46.39656448364286,33.9378280639649],[46.52604675292986,33.846950531005916],[46.70949554443371,33.796310424804744],[46.89213943481457,33.794879913330135],[47.022640228271655,33.846050262451286],[47.183910369873104,33.81062316894537],[47.2190856933596,33.90702438354498],[47.15303421020536,34.00157165527355],[47.32541656494158,34.04532241821295],[47.38620376586914,34.037868499755916]]]},"properties":{"ID_0":107,"ISO":"IR-05","NAME_0":"Iran","ID_1":12,"NAME_1":"Ilam","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Ilam and Poshtkuh"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[57.83471298217796,31.637323379516545],[57.9840202331543,31.59241676330572],[58.1795196533206,31.497734069824276],[58.31767654418951,31.453676223754883],[58.55987930297874,31.348230361938477],[58.79122161865246,31.27196693420416],[58.953483581543026,31.198291778564396],[59.069732666015796,31.164714813232536],[59.311260223388786,30.87543678283697],[59.378658294677734,30.747468948364315],[59.515365600586165,30.606666564941463],[59.40662384033209,30.22231674194353],[59.39979553222662,30.093755722046012],[59.34114074707048,29.886445999145735],[59.286560058593864,29.748542785644588],[59.31766891479515,29.678226470947322],[59.41854858398449,29.60615730285656],[59.41438293457048,29.536624908447436],[59.45813369750971,29.306531906127987],[59.453601837158374,29.236879348754996],[59.29926681518549,29.010915756225643],[59.339015960693416,28.91029930114763],[59.32281112670904,28.840869903564453],[59.38604354858393,28.74973678588873],[59.28638076782232,28.642324447631836],[59.15420532226557,28.565500259399528],[58.976547241211165,28.499534606933594],[58.89506530761719,28.49127388000494],[58.87909698486334,28.42188262939453],[59.00342559814459,28.379404067993164],[59.055797576904524,28.298608779907283],[59.02686309814453,28.20963478088396],[58.90587997436546,28.122688293457088],[58.88709640502947,28.013690948486385],[58.91009902954107,27.844179153442326],[58.8960800170899,27.63598060607916],[58.84232711791992,27.508291244506893],[58.78577804565441,27.321292877197266],[58.76509857177729,27.15339660644537],[58.80532836914074,27.05363655090332],[58.79751968383795,26.895090103149585],[58.91884994506859,26.813621520996094],[58.95077133178722,26.763439178466854],[58.9466934204101,26.635280609130916],[58.88986968994158,26.58788490295416],[58.967754364013615,26.517953872680778],[58.8783912658692,26.43346023559576],[58.87801361083979,26.375597000122127],[58.96545791625988,26.28608322143566],[58.9095191955567,26.23003959655773],[58.8631324768067,26.01030158996582],[58.830589294433594,26.068990707397518],[58.73163604736351,26.10088539123535],[58.68704986572294,26.044534683227823],[58.543735504150504,26.048866271972713],[58.522743225097656,26.203479766845817],[58.43431854248075,26.2061443328858],[58.38999938964844,26.236253738403434],[58.312526702880916,26.200130462646484],[58.20108413696295,26.231971740722713],[58.07913208007835,26.206672668456974],[58.11145019531244,26.33996009826666],[58.09992980957054,26.47477531433117],[58.11107254028326,26.580369949340763],[58.15552139282249,26.627279281616268],[58.13395309448248,26.753593444824276],[58.21184921264677,26.79015350341797],[58.01366424560547,26.941652297973633],[57.90303421020536,26.95459747314453],[57.88035583496094,26.896955490112305],[57.791477203369254,26.841594696044922],[57.69277954101574,26.9320716857913],[57.63760375976568,26.93394088745123],[57.54987335205084,26.995187759399528],[57.43978500366205,27.00893592834484],[57.38530731201183,27.078891754150447],[57.375083923339844,27.166696548462085],[57.36813354492216,27.460426330566406],[57.32665252685547,27.580352783203296],[57.22795486450201,27.65250968933111],[57.29703140258812,27.69084358215332],[57.28897476196289,27.770826339721793],[57.19044494628906,27.852577209472656],[57.13784027099615,27.952962875366325],[57.01493835449236,27.995599746704215],[56.97534942626976,28.1449031829834],[56.99152755737333,28.273054122924975],[56.84619140625,28.335826873779354],[56.77707672119135,28.307804107666072],[56.682254791259766,28.19158744812023],[56.498516082763615,28.106681823730526],[56.31872177124029,28.12857627868658],[56.24087524414091,28.169071197509766],[56.031349182128906,28.35980033874523],[56.021842956543026,28.429294586181697],[56.05739593505888,28.488256454467773],[56.07201766967768,28.60673332214361],[56.06745529174799,28.85403442382824],[56.00174331665062,28.943756103515625],[55.85277175903326,28.885881423950252],[55.70260238647478,28.76861190795904],[55.60007858276373,28.73983955383312],[55.51097869873041,28.79987144470215],[55.44488143920893,28.879459381103572],[55.321723937988565,28.939636230468807],[55.129711151123274,28.95079421997076],[55.08545303344749,29.000465393066463],[54.9341773986817,29.396163940429688],[54.866546630859375,29.416261672973633],[54.66277694702154,29.41731834411621],[54.561832427978516,29.476993560791072],[54.54033279418968,29.55599403381359],[54.42949295043951,29.73407554626459],[54.430229187012,29.793277740478572],[54.48727798461914,29.82263946533203],[54.60070419311518,29.82213020324707],[54.59061813354509,29.920925140380973],[54.592891693115405,30.13836097717285],[54.62800598144537,30.247043609619425],[54.6170387268067,30.296581268310604],[54.548904418945256,30.32655906677246],[54.50466537475609,30.524862289428654],[54.391181945800724,30.664075851440543],[54.403034210205135,30.763261795044002],[54.46073913574247,30.872310638427848],[54.57596588134794,30.98134422302246],[54.74840164184576,30.980834960937727],[55.106101989746094,31.049308776855696],[55.34827041625982,31.018482208251953],[55.568542480469034,31.0374755859375],[55.67385864257807,31.076810836792106],[55.6987571716308,31.1466522216798],[55.71390533447277,31.29687881469738],[55.70725250244135,31.53811073303234],[55.75548171997076,31.598295211792106],[55.98059082031267,31.66771507263195],[56.26663589477539,31.797512054443416],[56.411468505859546,31.918323516845646],[56.5909233093264,31.988454818725643],[56.68587875366211,32.04704666137707],[57.053577423095874,31.93289947509777],[57.27202606201166,31.85515785217285],[57.719947814941406,31.671194076538086],[57.83471298217796,31.637323379516545]]]},"properties":{"ID_0":107,"ISO":"IR-15","NAME_0":"Iran","ID_1":13,"NAME_1":"Kerman","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.85146713256859,34.95128631591791],[47.841068267822436,34.8903427124024],[47.75598144531256,34.837314605713004],[47.75849533081072,34.746307373046875],[47.60923767089861,34.7417564392091],[47.573211669921875,34.67975997924816],[47.611522674560774,34.640392303466854],[47.78704833984375,34.58515167236334],[47.86170959472685,34.577400207519645],[47.99734878540045,34.6019554138183],[47.98830032348627,34.44002151489252],[47.914279937744254,34.42752075195324],[47.75261306762695,34.44236755371105],[47.69400024414068,34.349765777588004],[47.58421325683605,34.356212615966854],[47.56962966918957,34.188575744628906],[47.42425537109375,34.183979034423885],[47.37724304199247,34.163173675537166],[47.420989990234546,34.05840301513683],[47.38620376586914,34.037868499755916],[47.32541656494158,34.04532241821295],[47.15303421020536,34.00157165527355],[47.2190856933596,33.90702438354498],[47.183910369873104,33.81062316894537],[47.022640228271655,33.846050262451286],[46.89213943481457,33.794879913330135],[46.70949554443371,33.796310424804744],[46.52604675292986,33.846950531005916],[46.39656448364286,33.9378280639649],[46.29717254638689,33.981758117675895],[46.17015838623064,33.96694564819347],[46.023799896240234,34.04614257812506],[45.959274291992415,34.01485061645519],[45.7682342529298,34.001228332519645],[45.831035614013956,33.935188293457145],[45.77251052856474,33.826171875],[45.74729537963873,33.6489143371582],[45.66201400756859,33.726222991943416],[45.52471542358427,33.93181991577154],[45.44464874267584,33.941268920898494],[45.48414993286127,34.072242736816406],[45.580417633056925,34.143253326416016],[45.59444808959961,34.28000640869146],[45.55947494506847,34.344745635986385],[45.50337219238281,34.32684707641607],[45.453220367431925,34.457561492920036],[45.511665344238565,34.465023040771484],[45.524127960205135,34.5624618530274],[45.687305450439624,34.55885314941412],[45.74831390380865,34.541561126708984],[45.72747421264677,34.656089782714844],[45.677078247070256,34.71296691894537],[45.701057434082315,34.81196212768549],[45.874084472656364,34.901527404785156],[45.902473449707315,34.959224700927734],[45.8830108642581,35.03099441528326],[45.93984603881853,35.081916809082145],[46.05165100097685,35.04839324951172],[46.16032028198259,35.08375930786127],[46.1565971374514,35.15925598144531],[46.20400238037115,35.1941757202149],[46.15299224853533,35.277431488037166],[46.29947280883795,35.19157028198242],[46.46634292602562,35.039932250976676],[46.585067749023494,34.87427902221691],[46.66722488403349,34.84762573242193],[46.6404838562014,34.765609741210994],[46.802482604980526,34.73161697387707],[46.931980133056925,34.74767684936518],[46.93992233276373,34.819206237793026],[47.03600311279325,34.8434944152832],[47.00870132446306,34.893093109130916],[47.25262832641613,34.963241577148494],[47.27492141723661,35.06544876098627],[47.43799972534208,35.06075286865246],[47.45891571044916,35.182872772216854],[47.548442840576286,35.11474990844732],[47.61051940917997,35.116550445556754],[47.66254806518572,35.047180175781364],[47.8023796081543,34.93978500366211],[47.85146713256859,34.95128631591791]]]},"properties":{"ID_0":107,"ISO":"IR-17","NAME_0":"Iran","ID_1":14,"NAME_1":"Kermanshah","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Bakhtaran|Kermanshahan"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.960140228271484,30.399475097656477],[49.04195785522478,30.392639160156307],[49.08458328247076,30.356250762939453],[49.153476715088004,30.385070800781364],[49.21125030517578,30.36597251892084],[49.25043869018555,30.270427703857422],[49.16650390625006,30.183471679687614],[49.10041809082048,30.24347305297846],[49.006530761718864,30.278684616088867],[49.0093040466308,30.331249237060547],[48.960140228271484,30.399475097656477]]],[[[49.453266143798885,32.80883789062523],[49.523017883301065,32.67420959472662],[49.7106285095216,32.6917839050293],[49.796966552734546,32.63630294799805],[49.73611831665062,32.50638580322271],[49.77000427246122,32.37057113647461],[49.87113571166998,32.2668838500976],[49.951522827148494,32.12327575683611],[50.071262359619425,32.06895828247082],[50.10333633422863,31.94311904907221],[50.24131011962919,31.77169418334961],[50.30044555664091,31.74414825439453],[50.36516952514654,31.618724822998047],[50.257598876953296,31.487949371337947],[50.17263412475603,31.35707664489746],[50.04811477661133,31.322584152221907],[49.91520309448248,31.228065490722713],[49.9215927124024,31.099954605102596],[49.973163604736385,30.973701477050724],[49.94312286376959,30.873363494873104],[50.02410507202154,30.847173690796012],[50.13614654541021,30.901115417480526],[50.16195678710966,30.822860717773438],[50.22066116333002,30.775428771972713],[50.3705482482913,30.720897674560717],[50.41846847534197,30.643014907836857],[50.341793060302905,30.541370391845817],[50.343132019043196,30.491725921630916],[50.412967681884766,30.424283981323526],[50.42987060546875,30.21885108947754],[50.2603454589846,30.224668502807617],[50.14558029174805,30.278978347778548],[50.04281997680687,30.204027175903377],[49.953674316406534,30.209899902343807],[49.88124847412104,30.182081222534293],[49.587638854980526,30.005971908569393],[49.50736236572294,30.04513931274414],[49.49511337280268,30.132085800171012],[49.446804046631144,30.159585952758846],[49.24013900756836,30.132360458374023],[49.22597122192394,30.221805572509993],[49.245483398437784,30.287902832031307],[49.21430587768583,30.340139389038143],[49.19427490234375,30.470136642456055],[49.01180648803728,30.399026870727653],[48.92541503906256,30.40958213806158],[48.8615264892581,30.310417175293026],[48.93264007568382,30.231805801391772],[48.9501380920413,30.173471450805664],[48.924583435058594,30.02958297729498],[48.693195343017635,30.018194198608455],[48.666526794433594,29.9334716796875],[48.5685577392581,29.901805877685604],[48.44787979125982,30.007951736450252],[48.441246032714844,30.06918334960966],[48.382999420166016,30.12730216979986],[48.39867782592796,30.210382461547965],[48.25579452514654,30.33812522888178],[48.19828033447271,30.327171325683594],[48.170463562011946,30.422655105590877],[48.03692626953131,30.482715606689453],[48.03082656860363,30.99381446838379],[47.70172119140619,30.992502212524414],[47.6991806030274,31.40004158020014],[47.86494827270508,31.779157638549805],[47.803554534912166,31.880105972290153],[47.64796447753923,32.084274291992244],[47.607063293457315,32.11259841918951],[47.73097229003906,32.17469024658209],[47.75975799560547,32.229866027832145],[47.726696014404354,32.334632873535156],[47.84772491455084,32.466003417968864],[47.89882659912115,32.601535797119084],[47.97063064575195,32.67080307006836],[48.00622940063471,32.790313720703125],[48.10692214965832,33.003215789794865],[48.22572708129911,33.01833724975586],[48.40611267089838,33.016963958740405],[48.523464202881144,33.0524787902832],[48.63191986083996,33.04800033569347],[48.74741363525396,32.95499038696289],[48.99924850463867,32.956550598144645],[49.21571350097662,32.79860305786133],[49.336135864257756,32.784122467041016],[49.453266143798885,32.80883789062523]]]]},"properties":{"ID_0":107,"ISO":"IR-10","NAME_0":"Iran","ID_1":15,"NAME_1":"Khuzestan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Khuzistan|Kouzistan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[51.310806274414006,31.16405868530279],[51.30320739746111,31.065460205078296],[51.375053405762,30.957714080810604],[51.51472473144548,30.840486526489258],[51.64117050170921,30.772253036499194],[51.678813934326286,30.63424110412592],[51.66877365112305,30.584796905517635],[51.52341842651384,30.524515151977823],[51.20266723632807,30.669757843017692],[51.146648406982706,30.639343261718693],[51.13698577880865,30.569829940796012],[51.19575119018555,30.48133850097662],[51.21017456054693,30.32228088378912],[51.097927093505916,30.25063133239746],[51.00745391845726,30.22913360595703],[50.88398361206083,30.158048629760856],[50.7023239135745,30.175216674804744],[50.60147094726557,30.144868850708008],[50.520763397216854,30.201278686523438],[50.42987060546875,30.21885108947754],[50.412967681884766,30.424283981323526],[50.343132019043196,30.491725921630916],[50.341793060302905,30.541370391845817],[50.41846847534197,30.643014907836857],[50.3705482482913,30.720897674560717],[50.22066116333002,30.775428771972713],[50.16195678710966,30.822860717773438],[50.13614654541021,30.901115417480526],[50.02410507202154,30.847173690796012],[49.94312286376959,30.873363494873104],[49.973163604736385,30.973701477050724],[49.9215927124024,31.099954605102596],[49.91520309448248,31.228065490722713],[50.04811477661133,31.322584152221907],[50.17263412475603,31.35707664489746],[50.257598876953296,31.487949371337947],[50.44578170776367,31.395214080810604],[50.61801528930664,31.37982559204113],[50.83269500732422,31.177537918090877],[50.93798446655302,31.11030769348156],[51.14325714111351,31.0932998657226],[51.1863365173341,31.15287590026861],[51.310806274414006,31.16405868530279]]]},"properties":{"ID_0":107,"ISO":"IR-18","NAME_0":"Iran","ID_1":16,"NAME_1":"Kohgiluyeh and Buyer Ahmad","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Bovir Ahmadi and Kohkiluyeh|Boyer-Ahmad and Koh-Giluye|Boyer Ahmad e Kohkiluyeh|Boyer Ahmadi-ye Sardir va Kohkiluyeh|Kohgil"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.22574615478521,35.69027709960943],[48.090312957763956,35.69680023193365],[48.044712066650675,35.62443542480469],[47.948932647705305,35.57113265991211],[47.882411956787394,35.67080307006847],[47.79882049560564,35.61769866943371],[47.90560150146496,35.448329925537166],[47.96160507202143,35.29801559448242],[48.08731079101585,35.23069763183605],[48.16455841064476,35.14202117919916],[48.143974304199276,35.040527343750114],[48.06125640869135,34.947265625000114],[47.87514114379911,34.982280731201115],[47.85146713256859,34.95128631591791],[47.8023796081543,34.93978500366211],[47.66254806518572,35.047180175781364],[47.61051940917997,35.116550445556754],[47.548442840576286,35.11474990844732],[47.45891571044916,35.182872772216854],[47.43799972534208,35.06075286865246],[47.27492141723661,35.06544876098627],[47.25262832641613,34.963241577148494],[47.00870132446306,34.893093109130916],[47.03600311279325,34.8434944152832],[46.93992233276373,34.819206237793026],[46.931980133056925,34.74767684936518],[46.802482604980526,34.73161697387707],[46.6404838562014,34.765609741210994],[46.66722488403349,34.84762573242193],[46.585067749023494,34.87427902221691],[46.46634292602562,35.039932250976676],[46.29947280883795,35.19157028198242],[46.15299224853533,35.277431488037166],[46.12690734863287,35.339542388916016],[46.050903320312614,35.3833580017091],[45.989261627197266,35.49962615966808],[46.01507568359392,35.679801940918026],[46.159259796142805,35.687980651855526],[46.33062744140631,35.764614105224666],[46.29081726074247,35.830844879150504],[46.156383514404354,35.80179977416998],[46.08687210083002,35.86005401611334],[46.02540206909208,35.83324813842779],[45.89684295654314,35.83935165405279],[45.757408142090014,35.80398178100586],[45.63119125366222,35.95913696289057],[45.5019416809082,36.00600814819336],[45.630844116210994,36.10643386840832],[45.71556854248075,36.25473403930664],[45.90446090698248,36.25996017456066],[45.946968078613224,36.289531707763786],[45.92564773559599,36.38451004028332],[46.04057312011747,36.4599494934082],[46.12933731079107,36.46614456176769],[46.22410202026373,36.41444396972656],[46.32593154907232,36.43068313598644],[46.63356018066435,36.430168151855526],[46.79518127441423,36.46896362304682],[46.917705535888615,36.367256164550895],[47.08356094360374,36.33597946166992],[47.257354736328125,36.35436248779297],[47.28343963623041,36.49530792236328],[47.33239746093756,36.50775527954113],[47.37391281127958,36.45991516113287],[47.47254943847662,36.474685668945256],[47.57503509521513,36.439327239990234],[47.85060882568382,36.41080093383795],[47.91669082641624,36.35256195068371],[47.936374664306925,36.241573333740234],[47.977836608886776,36.171825408935604],[47.96340179443371,35.998420715331974],[47.8823127746582,35.90440750122076],[48.17318725585966,35.760051727295036],[48.22574615478521,35.69027709960943]]]},"properties":{"ID_0":107,"ISO":"IR-16","NAME_0":"Iran","ID_1":17,"NAME_1":"Kordestan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Kurdistan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.69400024414068,34.349765777588004],[47.921390533447436,34.19915771484381],[48.07111740112322,34.15567016601568],[48.1986160278322,34.05352783203125],[48.43220901489258,34.04275894165039],[48.48233795166021,34.01581573486334],[48.56499862670921,34.08662796020508],[48.67512512207037,34.08164596557617],[48.77448654174816,34.03789138793951],[48.97105407714855,33.9891471862793],[48.974670410156364,33.90272140502924],[48.9180908203125,33.80372238159191],[48.909183502197436,33.726051330566406],[48.983119964599894,33.700393676757926],[49.20205307006859,33.68093109130865],[49.28455734252947,33.73290252685547],[49.30425262451183,33.84016799926752],[49.41275405883789,33.84475708007818],[49.45893478393555,33.89502716064453],[49.519878387451286,33.87823486328125],[49.59627532958996,33.774871826171875],[49.563854217529354,33.68622589111334],[49.625766754150334,33.64011001586914],[49.77197647094749,33.5777702331543],[49.79283523559582,33.65651321411133],[49.913639068603516,33.622264862060604],[49.91654968261736,33.54434585571289],[50.00153350830084,33.49870300292969],[49.943782806396484,33.44762039184582],[49.99386215209972,33.371128082275504],[49.92510223388683,33.29004669189453],[49.86072540283209,33.13036346435547],[49.78970336914057,33.12763595581055],[49.61569213867216,33.0518913269043],[49.64681243896496,32.93505477905279],[49.45034408569336,32.84806823730486],[49.453266143798885,32.80883789062523],[49.336135864257756,32.784122467041016],[49.21571350097662,32.79860305786133],[48.99924850463867,32.956550598144645],[48.74741363525396,32.95499038696289],[48.63191986083996,33.04800033569347],[48.523464202881144,33.0524787902832],[48.40611267089838,33.016963958740405],[48.22572708129911,33.01833724975586],[48.10692214965832,33.003215789794865],[48.00622940063471,32.790313720703125],[47.97063064575195,32.67080307006836],[47.89882659912115,32.601535797119084],[47.810787200927734,32.77653503417963],[47.73099517822271,32.88345718383789],[47.66004943847662,33.00983047485357],[47.55392074584984,33.05810928344738],[47.28422164917015,33.26074218750006],[47.134307861328296,33.298065185546875],[47.0148468017581,33.3636474609375],[46.94044494628935,33.42927551269531],[46.83607101440424,33.57064437866222],[46.88798141479509,33.61219024658203],[46.90377426147472,33.68014907836914],[46.9779129028322,33.730159759521484],[47.15410232543951,33.77183914184582],[47.267295837402344,33.76385498046881],[47.39939880371105,33.85400009155279],[47.44114303588867,33.94293212890625],[47.38620376586914,34.037868499755916],[47.420989990234546,34.05840301513683],[47.37724304199247,34.163173675537166],[47.42425537109375,34.183979034423885],[47.56962966918957,34.188575744628906],[47.58421325683605,34.356212615966854],[47.69400024414068,34.349765777588004]]]},"properties":{"ID_0":107,"ISO":"IR-20","NAME_0":"Iran","ID_1":18,"NAME_1":"Lorestan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.85387802124035,35.553409576416016],[50.88279342651373,35.452693939208984],[50.78480529785156,35.21848297119152],[50.72788619995117,35.15621948242193],[50.729259490966854,35.11621093750006],[50.70847320556635,35.0353050231933],[50.700271606445256,34.93483352661133],[50.60765457153332,34.8813209533692],[50.465847015380916,34.87578201293951],[50.37295913696295,34.82201004028332],[50.302200317382756,34.809059143066406],[50.20649719238281,34.82489395141613],[50.14846038818371,34.78236770629894],[50.13833618164074,34.73199462890625],[50.188377380371094,34.66429519653332],[50.10538864135748,34.650634765625114],[50.03449630737316,34.62742996215826],[50.08576202392578,34.51990509033203],[50.18251800537115,34.47413635253906],[50.27872085571295,34.43812561035162],[50.30386734008789,34.3790397644043],[50.30544281005854,34.3091392517091],[50.47463226318354,34.19632720947277],[50.5214462280274,34.21768188476574],[50.55643081665045,34.2386932373048],[50.65086746215826,34.25180435180664],[50.69977188110363,34.19397354125971],[50.78333663940424,34.16707229614269],[50.91491699218756,34.11238861083996],[51.033023834228686,34.10585403442377],[51.04649353027344,34.04771041870117],[51.01288223266607,33.988323211670036],[50.943435668945426,33.94749450683594],[50.90068054199247,33.799999237060604],[50.81752777099638,33.82704925537121],[50.71406173706083,33.746147155761776],[50.55089950561529,33.692653656005916],[50.45669555664057,33.689781188964844],[50.37520980834961,33.658008575439396],[50.2338485717774,33.643638610839844],[50.058876037597656,33.559448242187614],[50.00153350830084,33.49870300292969],[49.91654968261736,33.54434585571289],[49.913639068603516,33.622264862060604],[49.79283523559582,33.65651321411133],[49.77197647094749,33.5777702331543],[49.625766754150334,33.64011001586914],[49.563854217529354,33.68622589111334],[49.59627532958996,33.774871826171875],[49.519878387451286,33.87823486328125],[49.45893478393555,33.89502716064453],[49.41275405883789,33.84475708007818],[49.30425262451183,33.84016799926752],[49.28455734252947,33.73290252685547],[49.20205307006859,33.68093109130865],[48.983119964599894,33.700393676757926],[48.909183502197436,33.726051330566406],[48.9180908203125,33.80372238159191],[48.974670410156364,33.90272140502924],[48.97105407714855,33.9891471862793],[49.09939575195341,34.11030960083008],[49.0697593688966,34.25393676757824],[48.96880722045904,34.39765167236328],[48.98911666870134,34.558277130126896],[48.86645126342768,34.60293197631836],[49.08305358886736,34.65222549438482],[49.06719970703119,34.76136016845703],[49.13896560668974,34.784461975097656],[49.109683990478516,34.92310714721691],[49.435943603515625,34.91752624511713],[49.40312576293974,34.82629394531256],[49.515655517578125,34.71217727661144],[49.57503128051752,34.73497772216808],[49.545284271240405,34.89273452758795],[49.445381164551065,34.98777770996094],[49.28728485107433,35.020717620849666],[49.248451232910156,35.08905410766613],[49.36937332153349,35.084259033203125],[49.4032440185548,35.14570999145519],[49.313156127929915,35.29206085205084],[49.38626861572277,35.275070190429744],[49.49282836914085,35.329650878906364],[49.442760467529524,35.37762832641613],[49.440513610839844,35.437694549560604],[49.59748840332031,35.43425750732422],[49.64309310913097,35.50633239746088],[49.83397293090826,35.5547332763673],[49.940635681152344,35.59960556030279],[50.036529541015796,35.604125976562614],[50.190101623535156,35.67145919799805],[50.28556060791044,35.666061401367244],[50.40495300292997,35.64186859130865],[50.67502212524431,35.6842498779298],[50.74951553344755,35.567531585693416],[50.806175231933594,35.62991333007824],[50.85387802124035,35.553409576416016]]]},"properties":{"ID_0":107,"ISO":"IR-22","NAME_0":"Iran","ID_1":19,"NAME_1":"Markazi","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[53.70676040649431,36.80323791503912],[53.738105773925724,36.72750854492193],[53.90860366821295,36.66076660156256],[54.06410598754911,36.56361389160156],[54.12017822265642,36.484836578369254],[53.99005508422857,36.454036712646484],[53.88269042968767,36.39315795898443],[53.81171035766607,36.2820777893067],[53.780769348144815,36.141143798828125],[53.632228851318416,36.03931427001959],[53.571693420410384,35.94830703735363],[53.379894256591854,35.88597488403332],[53.29548645019537,35.905105590820426],[53.16561508178705,35.843063354492244],[53.03471755981474,35.83115386962885],[52.912971496582145,35.90001678466797],[52.86643600463873,35.8690299987793],[52.759586334228516,35.867496490478516],[52.6268005371096,35.93645477294922],[52.54423522949247,35.93534851074219],[52.448127746582315,35.98455047607422],[52.37798309326189,35.97344207763666],[52.27537536621111,35.90119552612316],[52.15296173095703,35.767959594726676],[52.0247535705567,35.7658576965332],[51.94175720214838,35.79465484619146],[51.84048461914057,35.9640350341798],[51.70890808105486,36.04145812988287],[51.579795837402344,36.06815338134771],[51.431793212890625,36.06380081176758],[51.358985900879134,36.071479797363224],[51.35529708862333,36.151294708251896],[51.21339797973661,36.20588302612305],[51.06120681762707,36.22972869873058],[51.01198196411161,36.28756713867199],[50.800987243652514,36.31871795654297],[50.7986030578615,36.36867904663097],[50.547325134277514,36.4986686706543],[50.304534912109375,36.67030715942383],[50.41929626464855,36.745048522949276],[50.43785476684599,36.87705612182617],[50.576499938965014,36.953472137451286],[50.57565307617193,36.985851287841854],[50.67627716064453,36.92359161376959],[50.960655212402514,36.7824325561524],[51.10152435302763,36.73486709594732],[51.43481445312517,36.68573760986334],[51.673328399658374,36.59920883178711],[51.91184997558611,36.57229614257824],[52.06175994873064,36.58808517456049],[52.44966888427746,36.6830406188966],[52.89446640014654,36.756774902343864],[53.104877471924055,36.81638336181646],[53.284202575683594,36.8490447998048],[53.63007736206072,36.863048553466854],[53.70676040649431,36.80323791503912]]]},"properties":{"ID_0":107,"ISO":"IR-21","NAME_0":"Iran","ID_1":20,"NAME_1":"Mazandaran","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[57.742210388183764,37.90187454223633],[57.7051544189456,37.86393356323242],[57.56183242797863,37.82246017456066],[57.58867645263689,37.742504119873104],[57.540912628174,37.683990478515625],[57.81953048706049,37.66036605834972],[57.940475463867415,37.63942718505865],[58.04455947876005,37.65900039672863],[58.08559036254894,37.60768127441406],[58.055820465088175,37.557163238525504],[58.1554718017581,37.51553726196295],[58.2275581359865,37.40383148193365],[58.160308837890796,37.354927062988224],[58.15467453002947,37.27527618408209],[58.09589385986334,37.24644470214844],[58.07621002197283,37.12665557861328],[57.98916625976591,37.0583229064942],[58.0860481262207,37.00645446777338],[58.08871459960966,36.92719268798834],[58.16727828979509,36.9452018737793],[58.26069259643566,36.90321731567383],[58.16268920898443,36.86542510986334],[58.14652633666992,36.79570388793951],[58.23069000244158,36.773757934570256],[58.15915298461937,36.64640808105469],[58.01771926879877,36.63005447387695],[57.78173065185547,36.66571807861334],[57.77167892456072,36.68575668334961],[57.53142547607416,36.77350616455084],[57.03418350219732,37.01198577880854],[56.64576339721674,36.75282287597656],[56.6716384887697,36.64263916015631],[56.528251647949276,36.616661071777344],[56.429599761963175,36.64904022216797],[56.32760238647455,36.65158081054693],[56.138057708740405,36.79560470581049],[56.061676025390625,36.887226104736385],[56.12049865722662,36.986392974853516],[56.080425262451115,37.03769302368164],[56.093360900878906,37.148685455322266],[56.00663375854509,37.17059326171881],[55.95348358154291,37.27222061157238],[55.86745452880854,37.354412078857536],[55.9437637329101,37.41351318359375],[55.94262313842796,37.453849792480526],[56.06548690795927,37.53205490112305],[56.22866439819336,37.5588111877442],[56.30260848999035,37.58738708496105],[56.292095184326456,37.69876861572277],[56.186080932617244,37.73124313354498],[56.15512847900408,37.771595001220646],[56.185649871826456,37.88750076293957],[56.161827087402344,37.971778869628906],[56.166519165039176,38.08312225341808],[56.21148681640631,38.06137466430664],[56.339199066162394,38.07062530517578],[56.32722473144537,38.16488647460943],[56.417045593261776,38.24036026000988],[56.56768035888689,38.2540168762207],[56.604076385498104,38.22341537475597],[56.754673004150334,38.27259445190441],[56.85609436035156,38.21152877807623],[57.080413818359375,38.17666244506847],[57.160488128662166,38.2565155029298],[57.24512100219732,38.26168823242182],[57.293689727783146,38.15023803710949],[57.380573272705305,38.07294464111334],[57.359134674072436,37.974437713623104],[57.52495956420921,37.91485595703131],[57.58924865722673,37.92464447021496],[57.742210388183764,37.90187454223633]]]},"properties":{"ID_0":107,"ISO":"IR-31","NAME_0":"Iran","ID_1":21,"NAME_1":"North Khorasan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Khorasan-e Shemali"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.304534912109375,36.67030715942383],[50.547325134277514,36.4986686706543],[50.7986030578615,36.36867904663097],[50.800987243652514,36.31871795654297],[50.496150970458984,36.3460044860841],[50.42648696899431,36.33311080932617],[50.405437469482706,36.28204345703119],[50.51443481445341,36.20640945434582],[50.620471954345874,36.1908912658692],[50.63432312011719,36.14147186279291],[50.56747055053711,36.058567047119254],[50.536556243896655,35.94723892211914],[50.25652694702143,35.83447647094738],[50.22243499755888,35.78289031982416],[50.28556060791044,35.666061401367244],[50.190101623535156,35.67145919799805],[50.036529541015796,35.604125976562614],[49.940635681152344,35.59960556030279],[49.83397293090826,35.5547332763673],[49.64309310913097,35.50633239746088],[49.59748840332031,35.43425750732422],[49.440513610839844,35.437694549560604],[49.30588531494146,35.48244476318371],[49.051979064941406,35.47256469726557],[49.01324081420904,35.53157043457031],[49.09681701660156,35.564903259277344],[48.97161483764654,35.6613655090332],[48.837718963623104,35.66727447509777],[48.80254745483393,35.635829925537166],[48.724895477295036,35.745143890380916],[48.586647033691634,35.83259582519537],[48.75435256958008,35.90860366821295],[48.92445373535162,35.92363739013683],[49.022525787353516,35.906162261963004],[49.091373443603516,36.009853363037166],[49.25954437255865,36.06603622436518],[49.40493011474638,36.08132171630865],[49.399227142333984,36.233310699462834],[49.34944915771513,36.26215744018555],[49.33301925659197,36.3636360168457],[49.25782012939459,36.41273498535156],[49.1217155456543,36.45005035400402],[49.116767883300895,36.542274475097656],[49.00193023681669,36.611305236816406],[48.99852752685541,36.662811279296875],[49.099903106689396,36.789268493652344],[49.24583053588884,36.81312179565441],[49.34674072265631,36.77424621582037],[49.350143432617244,36.72291564941412],[49.46565246582048,36.62313461303722],[49.57612991333036,36.59546279907238],[49.68463134765642,36.598831176757926],[49.759098052978686,36.56050872802746],[49.85517501831083,36.563632965088004],[49.92498779296875,36.60652542114269],[50.173130035400675,36.68590164184582],[50.304534912109375,36.67030715942383]]]},"properties":{"ID_0":107,"ISO":"IR-28","NAME_0":"Iran","ID_1":22,"NAME_1":"Qazvin","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.10538864135748,34.650634765625114],[50.188377380371094,34.66429519653332],[50.13833618164074,34.73199462890625],[50.14846038818371,34.78236770629894],[50.20649719238281,34.82489395141613],[50.302200317382756,34.809059143066406],[50.37295913696295,34.82201004028332],[50.465847015380916,34.87578201293951],[50.60765457153332,34.8813209533692],[50.700271606445256,34.93483352661133],[50.70847320556635,35.0353050231933],[50.729259490966854,35.11621093750006],[50.72788619995117,35.15621948242193],[50.78480529785156,35.21848297119152],[50.78514099121088,35.208477020263786],[50.79659271240229,35.2189292907716],[50.902614593505916,35.222831726074276],[51.03239440917969,35.2172966003418],[51.12718200683594,35.20026779174816],[51.22235870361328,35.172950744628906],[51.32890701293951,35.15576553344732],[51.389701843261776,35.10699844360363],[51.65473175048828,34.96189498901367],[51.738410949707145,34.93332672119152],[51.87013626098627,34.88542556762695],[51.88280105590826,34.86552810668957],[51.89546203613281,34.84563064575201],[51.898433685302734,34.77527236938482],[51.877254486083984,34.71455764770508],[51.86807250976568,34.64401245117182],[51.84589385986334,34.60339736938482],[51.75453948974615,34.511230468750114],[51.707992553710994,34.490230560302734],[51.67292404174799,34.47949218750006],[51.661136627197266,34.47925567626953],[51.59070587158209,34.467781066894474],[51.531772613525334,34.46655273437506],[51.29571914672857,34.471210479736385],[51.14299392700201,34.4471817016601],[51.06094741821295,34.424819946289176],[51.03786468505854,34.404067993164006],[51.014953613281364,34.37325668334972],[51.01535797119135,34.353160858154354],[51.00559616088867,34.25274658203131],[50.99495697021479,34.20279312133789],[50.972965240478516,34.14321517944347],[50.99740219116211,34.11465454101568],[50.91491699218756,34.11238861083996],[50.78333663940424,34.16707229614269],[50.69977188110363,34.19397354125971],[50.65086746215826,34.25180435180664],[50.55643081665045,34.2386932373048],[50.5214462280274,34.21768188476574],[50.47463226318354,34.19632720947277],[50.30544281005854,34.3091392517091],[50.30386734008789,34.3790397644043],[50.27872085571295,34.43812561035162],[50.18251800537115,34.47413635253906],[50.08576202392578,34.51990509033203],[50.03449630737316,34.62742996215826],[50.10538864135748,34.650634765625114]]]},"properties":{"ID_0":107,"ISO":"IR-26","NAME_0":"Iran","ID_1":23,"NAME_1":"Qom","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[60.5050964355471,34.083290100097656],[60.316173553467024,34.0568466186524],[60.110015869140796,34.05711746215826],[60.05951309204113,34.06978225708019],[59.89393997192411,34.0563201904298],[59.730072021484546,34.06285476684576],[59.6685905456543,34.085807800293026],[59.50825881958036,34.29758453369152],[59.28843307495117,34.19209671020508],[59.16212844848627,34.17578125],[59.06337738037138,34.18925094604492],[58.95547103881859,34.11044692993164],[58.896060943603686,34.14307403564459],[58.67319869995123,34.1701011657716],[58.63802337646513,34.07865142822277],[58.682510375976506,34.02605056762701],[58.61875534057634,33.90463256835943],[58.66251373291033,33.84182357788097],[58.593006134033374,33.76189422607422],[58.598049163818416,33.669662475585994],[58.68030929565441,33.61602783203131],[58.71118927001953,33.53339385986328],[58.82022476196295,33.50957107543957],[58.80052947998075,33.418807983398665],[58.670120239257756,33.281284332275504],[58.47467041015625,33.21659851074219],[58.301860809326456,33.110404968261776],[58.264492034912394,33.051063537597656],[58.25067520141607,32.90131759643566],[58.204711914062614,32.80472183227539],[58.14770889282249,32.74864959716808],[58.10110473632841,32.77018356323242],[58.07641220092802,32.86882781982433],[57.913749694824276,32.92472457885748],[57.727569580078125,33.030506134033374],[57.69181060791044,33.15978622436535],[57.66943740844721,33.320858001708984],[57.66189956665062,33.52355957031256],[57.59352874755882,33.606830596923885],[57.572574615478686,33.67869567871105],[57.46298980712908,33.610519409179744],[57.32066345214838,33.564010620117244],[57.157436370849666,33.589271545410156],[57.064804077148665,33.65277099609369],[56.98225021362322,34.04139709472662],[57.02708435058622,34.234260559082145],[57.111297607421875,34.44673156738287],[57.22909545898449,34.5860595703125],[57.40665817260742,34.66245651245117],[57.53937911987322,34.73989105224615],[57.719322204590014,34.88636779785162],[57.68194961547857,34.99739456176758],[57.353096008300724,35.19509506225597],[57.19116210937494,35.20870971679693],[57.11351776123058,35.19032669067394],[56.81083679199213,35.075904846191406],[56.59225463867182,34.97971725463873],[56.29578399658209,34.914798736572266],[56.210514068603686,34.90612030029297],[56.2739334106447,34.98512268066412],[56.40277862548834,35.10307693481445],[56.547359466552905,35.2008895874024],[56.834415435791186,35.28621673583979],[56.876773834228686,35.32555007934582],[56.91326904296869,35.42515945434582],[57.101070404052905,35.630516052246094],[57.09661483764677,35.700164794921875],[57.028099060058764,35.76140594482422],[56.769149780273494,35.92641067504894],[56.691959381103516,36.25535202026373],[56.70404815673845,36.36408233642578],[56.808376312255916,36.50006866455078],[56.81746673584013,36.5789909362793],[56.77231216430687,36.629886627197266],[56.6716384887697,36.64263916015631],[56.64576339721674,36.75282287597656],[57.03418350219732,37.01198577880854],[57.53142547607416,36.77350616455084],[57.77167892456072,36.68575668334961],[57.78173065185547,36.66571807861334],[58.01771926879877,36.63005447387695],[58.15915298461937,36.64640808105469],[58.23069000244158,36.773757934570256],[58.14652633666992,36.79570388793951],[58.16268920898443,36.86542510986334],[58.26069259643566,36.90321731567383],[58.16727828979509,36.9452018737793],[58.08871459960966,36.92719268798834],[58.0860481262207,37.00645446777338],[57.98916625976591,37.0583229064942],[58.07621002197283,37.12665557861328],[58.09589385986334,37.24644470214844],[58.15467453002947,37.27527618408209],[58.160308837890796,37.354927062988224],[58.2275581359865,37.40383148193365],[58.1554718017581,37.51553726196295],[58.055820465088175,37.557163238525504],[58.08559036254894,37.60768127441406],[58.04455947876005,37.65900039672863],[57.940475463867415,37.63942718505865],[57.81953048706049,37.66036605834972],[57.540912628174,37.683990478515625],[57.58867645263689,37.742504119873104],[57.56183242797863,37.82246017456066],[57.7051544189456,37.86393356323242],[57.742210388183764,37.90187454223633],[57.83441925048851,37.8605194091798],[57.956008911132756,37.842411041259766],[58.049350738525504,37.795291900634766],[58.211891174316634,37.760105133056754],[58.23733520507807,37.67346954345703],[58.45983505249018,37.62504959106457],[58.57723236083979,37.69275665283203],[58.62050247192383,37.655460357666016],[58.74224853515642,37.629886627197266],[58.8514022827149,37.68028259277355],[58.893356323242244,37.65028762817377],[59.04759979248064,37.61275100708008],[59.27628707885765,37.49731445312506],[59.34782409667986,37.51544952392584],[59.4031143188476,37.426029205322266],[59.37350463867216,37.3984107971192],[59.401996612548885,37.30623626708996],[59.55201339721697,37.166263580322266],[59.55382919311529,37.12253189086914],[59.699546813965014,37.12818145751953],[59.83306503295904,37.09207534790045],[59.92745208740229,37.02978897094738],[60.020957946777344,37.033267974853516],[60.08432006835943,36.97853851318365],[60.17675018310564,36.842414855957145],[60.27052688598633,36.75129699707031],[60.370674133301065,36.62424850463873],[60.63477706909174,36.62756347656256],[61.140239715576115,36.66205978393566],[61.190982818603686,36.56771850585949],[61.17235565185558,36.49868011474621],[61.17024993896496,36.340335845947266],[61.22922134399437,36.172401428222656],[61.22647476196306,36.120071411132926],[61.159267425537394,35.98959732055664],[61.23400878906267,35.915504455566406],[61.259983062744425,35.812908172607536],[61.22289276123058,35.6603622436524],[61.28274154663103,35.60860824584972],[61.28328704834007,35.54053878784191],[61.18733215332037,35.399295806884766],[61.19090652465826,35.291587829589844],[61.09712219238287,35.257854461670036],[61.08599090576189,35.16936492919922],[61.12154006958002,35.07793045043951],[61.08393096923828,34.934082031250114],[61.05349731445341,34.91073226928722],[61.05683898925781,34.79395294189453],[60.984256744384766,34.7031822204591],[60.99139022827154,34.64155578613281],[60.91231918334978,34.622817993164176],[60.89482116699247,34.56834793090832],[60.72766113281256,34.510429382324276],[60.84610748291021,34.42631149291992],[60.9346542358399,34.305889129638786],[60.70532608032255,34.315578460693416],[60.58271789550804,34.208381652831974],[60.5050964355471,34.083290100097656]]]},"properties":{"ID_0":107,"ISO":"IR-30","NAME_0":"Iran","ID_1":24,"NAME_1":"Razavi Khorasan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Khorasan-e Razavi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[55.86745452880854,37.354412078857536],[55.95348358154291,37.27222061157238],[56.00663375854509,37.17059326171881],[56.093360900878906,37.148685455322266],[56.080425262451115,37.03769302368164],[56.12049865722662,36.986392974853516],[56.061676025390625,36.887226104736385],[56.138057708740405,36.79560470581049],[56.32760238647455,36.65158081054693],[56.429599761963175,36.64904022216797],[56.528251647949276,36.616661071777344],[56.6716384887697,36.64263916015631],[56.77231216430687,36.629886627197266],[56.81746673584013,36.5789909362793],[56.808376312255916,36.50006866455078],[56.70404815673845,36.36408233642578],[56.691959381103516,36.25535202026373],[56.769149780273494,35.92641067504894],[57.028099060058764,35.76140594482422],[57.09661483764677,35.700164794921875],[57.101070404052905,35.630516052246094],[56.91326904296869,35.42515945434582],[56.876773834228686,35.32555007934582],[56.834415435791186,35.28621673583979],[56.547359466552905,35.2008895874024],[56.40277862548834,35.10307693481445],[56.2739334106447,34.98512268066412],[56.210514068603686,34.90612030029297],[56.12435913085949,34.76766586303722],[55.83537292480497,34.37379837036144],[55.77738952636747,34.35458755493164],[55.40927505493164,34.36126708984381],[55.375221252441406,34.341957092285156],[55.26583480834961,34.391593933105526],[55.028484344482706,34.37099075317383],[54.458343505859546,34.36776351928711],[54.423133850097884,34.35747146606445],[54.091499328613565,34.35475921630865],[53.938201904297046,34.33323287963867],[53.606899261474666,34.32970428466797],[53.536067962646484,34.318805694580135],[53.24011611938482,34.31497192382824],[53.16893386840826,34.32403564453131],[52.90824127197283,34.3201141357423],[52.670181274414006,34.37658309936529],[52.574401855468864,34.41516876220703],[52.347690582275675,34.461521148681754],[52.181724548340014,34.458629608154354],[52.0520668029788,34.43624496459961],[51.93305969238287,34.46427154541021],[51.788948059082315,34.542034149170036],[51.84589385986334,34.60339736938482],[51.86807250976568,34.64401245117182],[51.877254486083984,34.71455764770508],[51.898433685302734,34.77527236938482],[51.89546203613281,34.84563064575201],[51.88280105590826,34.86552810668957],[51.88235855102556,34.875579833984375],[51.8895072937014,34.976352691650504],[51.979061126709155,35.06853103637695],[51.99999618530302,35.11926269531256],[51.82706451416021,35.29782485961914],[51.81139755249018,35.37826538085943],[51.854015350341854,35.459815979003906],[51.84884262084961,35.560688018798885],[51.97747421264677,35.55290985107422],[52.10948562622082,35.48434448242199],[52.21899032592768,35.405220031738395],[52.30192565917969,35.38623809814459],[52.39495086669916,35.39768218994146],[52.5385818481447,35.34932708740246],[52.657249450683594,35.33093643188488],[52.79658889770508,35.36328506469732],[52.888378143310774,35.40500259399414],[53.081809997558764,35.54913330078131],[53.10154342651384,35.640281677246094],[53.03471755981474,35.83115386962885],[53.16561508178705,35.843063354492244],[53.29548645019537,35.905105590820426],[53.379894256591854,35.88597488403332],[53.571693420410384,35.94830703735363],[53.632228851318416,36.03931427001959],[53.780769348144815,36.141143798828125],[53.81171035766607,36.2820777893067],[53.88269042968767,36.39315795898443],[53.99005508422857,36.454036712646484],[54.12017822265642,36.484836578369254],[54.27357864379877,36.49562454223633],[54.41059494018555,36.466430664062614],[54.62058639526367,36.5465202331543],[54.78672790527372,36.70557403564459],[54.94525146484369,36.774665832519645],[55.16365814208979,36.79246139526373],[55.42850112915056,36.74919891357422],[55.535430908203296,36.79731750488287],[55.57156753540056,37.02638244628912],[55.68809127807634,37.13562393188488],[55.747154235839844,37.25568389892584],[55.82921981811518,37.35507965087902],[55.86745452880854,37.354412078857536]]]},"properties":{"ID_0":107,"ISO":"IR-12","NAME_0":"Iran","ID_1":25,"NAME_1":"Semnan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[59.24678421020519,25.45458412170416],[59.278663635254134,25.508125305175838],[59.113971710205305,25.647247314453068],[59.07057571411127,25.763767242431697],[58.81852340698265,25.944341659546012],[58.8631324768067,26.01030158996582],[58.9095191955567,26.23003959655773],[58.96545791625988,26.28608322143566],[58.87801361083979,26.375597000122127],[58.8783912658692,26.43346023559576],[58.967754364013615,26.517953872680778],[58.88986968994158,26.58788490295416],[58.9466934204101,26.635280609130916],[58.95077133178722,26.763439178466854],[58.91884994506859,26.813621520996094],[58.79751968383795,26.895090103149585],[58.80532836914074,27.05363655090332],[58.76509857177729,27.15339660644537],[58.78577804565441,27.321292877197266],[58.84232711791992,27.508291244506893],[58.8960800170899,27.63598060607916],[58.91009902954107,27.844179153442326],[58.88709640502947,28.013690948486385],[58.90587997436546,28.122688293457088],[59.02686309814453,28.20963478088396],[59.055797576904524,28.298608779907283],[59.00342559814459,28.379404067993164],[58.87909698486334,28.42188262939453],[58.89506530761719,28.49127388000494],[58.976547241211165,28.499534606933594],[59.15420532226557,28.565500259399528],[59.28638076782232,28.642324447631836],[59.38604354858393,28.74973678588873],[59.32281112670904,28.840869903564453],[59.339015960693416,28.91029930114763],[59.29926681518549,29.010915756225643],[59.453601837158374,29.236879348754996],[59.45813369750971,29.306531906127987],[59.41438293457048,29.536624908447436],[59.41854858398449,29.60615730285656],[59.31766891479515,29.678226470947322],[59.286560058593864,29.748542785644588],[59.34114074707048,29.886445999145735],[59.39979553222662,30.093755722046012],[59.40662384033209,30.22231674194353],[59.515365600586165,30.606666564941463],[59.75184631347656,30.672994613647518],[60.002574920654354,30.72155380249029],[60.327503204345646,30.816328048706055],[60.406585693359546,30.744485855102482],[60.522789001464844,30.719839096069336],[60.687873840332315,30.60349273681635],[60.7759628295899,30.44998359680187],[60.836776733398665,30.386604309082145],[61.042060852051065,30.39776039123535],[61.05720901489286,30.43705177307129],[61.01478576660185,30.568880081176758],[60.99378967285185,30.69939613342291],[61.00622940063482,30.977079391479606],[61.06104278564453,31.143487930297965],[61.140968322753906,31.28992652893072],[61.16318893432617,31.36841964721691],[61.12393951416033,31.452732086181584],[61.70648193359375,31.37718009948736],[61.777599334716854,31.30361938476591],[61.77439880371094,31.209445953369197],[61.834262847900675,31.087860107421932],[61.83250808715843,30.97443580627447],[61.78481292724604,30.91245269775402],[61.80756378173828,30.837606430053995],[61.31501388549805,30.32764625549322],[60.86578369140631,29.85316658020031],[60.89943695068354,29.83749580383312],[61.19258880615229,29.502494812011776],[61.37260437011747,29.348672866821403],[61.357746124267635,29.282783508301065],[61.42866897583008,29.193780899047965],[61.50316619873047,29.056407928466797],[61.50431823730469,29.007545471191463],[61.681037902832145,28.770593643188477],[61.80415725708019,28.640169143676758],[61.957584381103516,28.54869461059576],[62.1157875061038,28.485099792480526],[62.29629135131853,28.463451385498104],[62.439670562744425,28.407129287719783],[62.59231567382818,28.25512886047369],[62.786937713623104,28.281179428100643],[62.79656982421881,28.208948135376033],[62.76822662353527,28.03240585327154],[62.790061950683594,27.9781112670899],[62.830017089844034,27.735267639160156],[62.8553924560548,27.46513748168951],[62.78147888183594,27.2514266967774],[62.82136154174799,27.21232032775879],[62.97724533081055,27.195110321045036],[63.058647155761946,27.233188629150447],[63.184223175048885,27.24143600463873],[63.29924392700201,27.178920745849723],[63.31745910644537,27.13865852355974],[63.25590515136747,27.082952499389705],[63.25669097900419,26.928676605224723],[63.275531768799,26.864767074585018],[63.19213485717785,26.843492507934627],[63.199733734131144,26.737987518310547],[63.16918563842796,26.64729499816906],[62.7786979675293,26.652280807495174],[62.608146667480526,26.5850124359132],[62.434532165527344,26.56813621521019],[62.31506729125999,26.52886962890625],[62.26471328735374,26.41269493103033],[62.282505035400675,26.358367919921875],[62.12808990478544,26.38036537170416],[62.12114715576172,26.31676483154297],[62.0611457824707,26.31541824340826],[61.8707542419433,26.246740341186523],[61.83303451538086,26.1711044311524],[61.768840789795206,25.801788330078125],[61.689205169677905,25.799165725708008],[61.65561294555681,25.297498703002987],[61.61045455932617,25.194953918457145],[61.52097320556646,25.185417175293082],[61.398471832275504,25.067083358764705],[61.18375015258806,25.122360229492188],[61.17402648925787,25.162082672119254],[61.08013916015631,25.194583892822266],[60.851249694824276,25.24013900756836],[60.62652587890642,25.29708290100109],[60.60569381713873,25.399585723876953],[60.568748474121094,25.433195114135685],[60.46569442749029,25.43263816833496],[60.40597152709961,25.374860763549805],[60.4276390075683,25.310693740844727],[60.31291580200201,25.33236122131359],[60.293472290039006,25.38486289978033],[60.11847305297846,25.344581604003906],[60.097637176513956,25.37680625915533],[59.9865264892581,25.375972747802734],[59.89597320556635,25.350973129272575],[59.83819580078142,25.398473739623967],[59.60597229003929,25.38958358764654],[59.4868049621582,25.465974807739315],[59.24678421020519,25.45458412170416]]]},"properties":{"ID_0":107,"ISO":"IR-13","NAME_0":"Iran","ID_1":26,"NAME_1":"Sistan and Baluchestan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Baluchestan va Sistan|Seistan and Baluchistan|Sistan e Baloutchistan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[60.5050964355471,34.083290100097656],[60.5627326965332,33.79396057128906],[60.52525711059599,33.74249649047863],[60.53175354003906,33.65017318725597],[60.670272827148665,33.532699584960994],[60.899990081787166,33.538909912109375],[60.82732391357416,33.397972106933594],[60.63677597045904,33.226531982421875],[60.584125518798885,33.127532958984375],[60.70880889892584,32.70684814453131],[60.81377029418951,32.47808074951172],[60.88019561767595,32.20041656494146],[60.801685333251896,31.957965850830192],[60.7750358581543,31.74247169494629],[60.79255294799822,31.621694564819393],[60.84568786621094,31.4869003295899],[61.12393951416033,31.452732086181584],[61.16318893432617,31.36841964721691],[61.140968322753906,31.28992652893072],[61.06104278564453,31.143487930297965],[61.00622940063482,30.977079391479606],[60.99378967285185,30.69939613342291],[61.01478576660185,30.568880081176758],[61.05720901489286,30.43705177307129],[61.042060852051065,30.39776039123535],[60.836776733398665,30.386604309082145],[60.7759628295899,30.44998359680187],[60.687873840332315,30.60349273681635],[60.522789001464844,30.719839096069336],[60.406585693359546,30.744485855102482],[60.327503204345646,30.816328048706055],[60.002574920654354,30.72155380249029],[59.75184631347656,30.672994613647518],[59.515365600586165,30.606666564941463],[59.378658294677734,30.747468948364315],[59.311260223388786,30.87543678283697],[59.069732666015796,31.164714813232536],[58.953483581543026,31.198291778564396],[58.79122161865246,31.27196693420416],[58.55987930297874,31.348230361938477],[58.31767654418951,31.453676223754883],[58.1795196533206,31.497734069824276],[57.9840202331543,31.59241676330572],[57.83471298217796,31.637323379516545],[57.88031768798845,31.750629425048942],[58.01777267456055,31.90860939025879],[58.02918243408209,31.99508094787626],[58.19049453735363,32.16252899169933],[58.190284729003906,32.23054885864252],[58.24742126464872,32.30593872070324],[58.15305328369158,32.446205139160156],[58.152065277099666,32.504699707031364],[58.08172607421892,32.56622695922863],[58.16134262084955,32.63102340698248],[58.14770889282249,32.74864959716808],[58.204711914062614,32.80472183227539],[58.25067520141607,32.90131759643566],[58.264492034912394,33.051063537597656],[58.301860809326456,33.110404968261776],[58.47467041015625,33.21659851074219],[58.670120239257756,33.281284332275504],[58.80052947998075,33.418807983398665],[58.82022476196295,33.50957107543957],[58.71118927001953,33.53339385986328],[58.68030929565441,33.61602783203131],[58.598049163818416,33.669662475585994],[58.593006134033374,33.76189422607422],[58.66251373291033,33.84182357788097],[58.61875534057634,33.90463256835943],[58.682510375976506,34.02605056762701],[58.63802337646513,34.07865142822277],[58.67319869995123,34.1701011657716],[58.896060943603686,34.14307403564459],[58.95547103881859,34.11044692993164],[59.06337738037138,34.18925094604492],[59.16212844848627,34.17578125],[59.28843307495117,34.19209671020508],[59.50825881958036,34.29758453369152],[59.6685905456543,34.085807800293026],[59.730072021484546,34.06285476684576],[59.89393997192411,34.0563201904298],[60.05951309204113,34.06978225708019],[60.110015869140796,34.05711746215826],[60.316173553467024,34.0568466186524],[60.5050964355471,34.083290100097656]]]},"properties":{"ID_0":107,"ISO":"IR-29","NAME_0":"Iran","ID_1":27,"NAME_1":"South Khorasan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Khorasan-e Janubi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[53.03471755981474,35.83115386962885],[53.10154342651384,35.640281677246094],[53.081809997558764,35.54913330078131],[52.888378143310774,35.40500259399414],[52.79658889770508,35.36328506469732],[52.657249450683594,35.33093643188488],[52.5385818481447,35.34932708740246],[52.39495086669916,35.39768218994146],[52.30192565917969,35.38623809814459],[52.21899032592768,35.405220031738395],[52.10948562622082,35.48434448242199],[51.97747421264677,35.55290985107422],[51.84884262084961,35.560688018798885],[51.854015350341854,35.459815979003906],[51.81139755249018,35.37826538085943],[51.82706451416021,35.29782485961914],[51.99999618530302,35.11926269531256],[51.979061126709155,35.06853103637695],[51.8895072937014,34.976352691650504],[51.88235855102556,34.875579833984375],[51.87013626098627,34.88542556762695],[51.738410949707145,34.93332672119152],[51.65473175048845,34.96189498901367],[51.389701843261776,35.10699844360363],[51.32890701293951,35.15576553344732],[51.22235870361328,35.172950744628906],[51.12718200683594,35.20026779174816],[51.03239440917969,35.2172966003418],[50.902614593505916,35.222831726074276],[50.79659271240229,35.2189292907716],[50.78514099121088,35.208477020263786],[50.78480529785156,35.21848297119152],[50.88279342651373,35.452693939208984],[50.85387802124035,35.553409576416016],[50.96170425415056,35.60981750488287],[51.08486175537115,35.58379745483404],[51.11608886718767,35.646244049072266],[51.190425872802734,35.70566940307623],[51.11608886718767,35.73297500610363],[51.06231307983404,35.81103515625006],[51.08833312988304,35.86481094360346],[51.204555511474666,35.95154190063488],[51.308631896972884,35.91511535644531],[51.388080596923885,35.91337966918951],[51.36414337158209,36.001846313476676],[51.431793212890625,36.06380081176758],[51.579795837402344,36.06815338134771],[51.70890808105486,36.04145812988287],[51.84048461914057,35.9640350341798],[51.94175720214838,35.79465484619146],[52.0247535705567,35.7658576965332],[52.15296173095703,35.767959594726676],[52.27537536621111,35.90119552612316],[52.37798309326189,35.97344207763666],[52.448127746582315,35.98455047607422],[52.54423522949247,35.93534851074219],[52.6268005371096,35.93645477294922],[52.759586334228516,35.867496490478516],[52.86643600463873,35.8690299987793],[52.912971496582145,35.90001678466797],[53.03471755981474,35.83115386962885]]]},"properties":{"ID_0":107,"ISO":"IR-07","NAME_0":"Iran","ID_1":28,"NAME_1":"Tehran","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":"استان تهران","VARNAME_1":"Teheran"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.48825836181658,38.976951599121094],[45.348564147949276,38.85796356201172],[45.32024002075201,38.7542343139649],[45.37619018554693,38.60674285888672],[45.355373382568644,38.54385375976568],[45.21566772460949,38.442790985107365],[45.11207580566435,38.344150543213004],[45.09000396728533,38.227558135986385],[45.16275787353521,38.16683197021496],[45.2124404907226,38.03858566284191],[45.20910644531256,37.81981277465832],[45.22862243652372,37.676006317138786],[45.277210235595874,37.5929908752442],[45.36307525634794,37.5030975341798],[45.338966369628906,37.4076766967774],[45.351352691650675,37.314266204833984],[45.420391082763956,37.261863708496094],[45.61871719360374,37.17125701904291],[45.72864532470709,37.09469604492193],[45.873649597168026,37.12437820434582],[46.054157257080135,37.02514266967779],[46.07387924194347,36.979831695556754],[46.18256759643583,36.941165924072266],[46.27053070068365,36.873115539550895],[46.34195327758795,36.906326293945256],[46.34689712524414,36.95329284667969],[46.41474914550804,37.00500106811535],[46.55743408203131,37.062328338623104],[46.63259124755865,37.067882537841854],[46.68025588989275,37.015281677246094],[46.75727462768566,37.01158142089855],[46.77280807495117,36.928691864013786],[46.83346939086914,36.87696838378906],[46.80905914306652,36.789932250976676],[46.8283004760745,36.743331909179744],[47.19384002685547,36.756877899169865],[47.25182342529297,36.69168853759777],[47.33239746093756,36.50775527954113],[47.28343963623041,36.49530792236328],[47.257354736328125,36.35436248779297],[47.08356094360374,36.33597946166992],[46.917705535888615,36.367256164550895],[46.79518127441423,36.46896362304682],[46.63356018066435,36.430168151855526],[46.32593154907232,36.43068313598644],[46.22410202026373,36.41444396972656],[46.12933731079107,36.46614456176769],[46.04057312011747,36.4599494934082],[45.92564773559599,36.38451004028332],[45.946968078613224,36.289531707763786],[45.90446090698248,36.25996017456066],[45.71556854248075,36.25473403930664],[45.630844116210994,36.10643386840832],[45.5019416809082,36.00600814819336],[45.40243148803734,35.973201751708984],[45.3418807983399,36.00680541992199],[45.38711929321289,36.078411102295036],[45.34160614013689,36.144817352294865],[45.333225250244425,36.23390579223633],[45.281513214111385,36.31001281738287],[45.279350280762,36.39234542846691],[45.23813247680681,36.4329833984375],[45.16210174560564,36.4052734375],[45.09268951416033,36.434841156005916],[45.01938247680664,36.54698562622076],[45.07358551025385,36.62523269653332],[45.04748153686529,36.7293434143067],[44.852199554443644,36.815219879150504],[44.92407226562517,36.90738677978521],[44.89316558837908,36.95818710327154],[44.91462707519554,37.028583526611385],[44.83662796020525,37.03931045532238],[44.77728271484381,37.110889434814396],[44.805019378662166,37.165634155273494],[44.77820968627958,37.22400665283209],[44.823299407958984,37.30756759643555],[44.6026153564456,37.44427871704113],[44.63847351074247,37.603637695312614],[44.580860137939624,37.64654159545904],[44.638301849365234,37.716304779052734],[44.597114562988395,37.76376342773443],[44.476669311523494,37.7655143737793],[44.41644287109381,37.854084014892635],[44.23886108398443,37.887115478515625],[44.28154373168957,38.003261566162166],[44.364086151123104,38.12714767456055],[44.4013290405274,38.1409645080567],[44.426925659179744,38.27817535400396],[44.505378723144645,38.31843566894537],[44.45695495605486,38.38514709472656],[44.323001861572266,38.38245391845703],[44.33952713012707,38.502830505371094],[44.33251953125006,38.628971099853516],[44.27720260620134,38.716030120849666],[44.31613159179716,38.833858489990234],[44.25598144531256,38.855079650878906],[44.20261764526384,38.930999755859375],[44.18741607666027,39.012485504150504],[44.21837615966814,39.13863754272461],[44.126617431640796,39.18943786621094],[44.111701965332145,39.286445617675895],[44.047264099121264,39.3667945861817],[44.06981658935547,39.4053192138673],[44.22431182861328,39.410289764404354],[44.31371307373064,39.373966217041016],[44.441123962402514,39.435874938964844],[44.436187744140796,39.560661315918026],[44.489604949951456,39.63012695312506],[44.4870491027832,39.68656158447271],[44.606552124023494,39.773357391357365],[44.72192764282255,39.707275390625],[44.92007827758795,39.5687713623048],[44.94637298583979,39.460639953613224],[45.08797836303722,39.349353790283146],[45.16128921508789,39.23692703247076],[45.29537963867216,39.18333816528326],[45.449985504150504,39.04770660400385],[45.48825836181658,38.976951599121094]]]},"properties":{"ID_0":107,"ISO":"IR-02","NAME_0":"Iran","ID_1":29,"NAME_1":"West Azarbaijan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Azarbayjan-e Bakhtari|Azarbaijan-e Gharbi|West Azarbayejan|Azerba‹djan e Gharbi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[58.14770889282249,32.74864959716808],[58.16134262084955,32.63102340698248],[58.08172607421892,32.56622695922863],[58.152065277099666,32.504699707031364],[58.15305328369158,32.446205139160156],[58.24742126464872,32.30593872070324],[58.190284729003906,32.23054885864252],[58.19049453735363,32.16252899169933],[58.02918243408209,31.99508094787626],[58.01777267456055,31.90860939025879],[57.88031768798845,31.750629425048942],[57.83471298217796,31.637323379516545],[57.719947814941406,31.671194076538086],[57.27202606201166,31.85515785217285],[57.053577423095874,31.93289947509777],[56.68587875366211,32.04704666137707],[56.5909233093264,31.988454818725643],[56.411468505859546,31.918323516845646],[56.26663589477539,31.797512054443416],[55.98059082031267,31.66771507263195],[55.75548171997076,31.598295211792106],[55.70725250244135,31.53811073303234],[55.71390533447277,31.29687881469738],[55.6987571716308,31.1466522216798],[55.67385864257807,31.076810836792106],[55.568542480469034,31.0374755859375],[55.34827041625982,31.018482208251953],[55.106101989746094,31.049308776855696],[54.74840164184576,30.980834960937727],[54.57596588134794,30.98134422302246],[54.46073913574247,30.872310638427848],[54.403034210205135,30.763261795044002],[54.391181945800724,30.664075851440543],[54.50466537475609,30.524862289428654],[54.548904418945256,30.32655906677246],[54.6170387268067,30.296581268310604],[54.62800598144537,30.247043609619425],[54.592891693115405,30.13836097717285],[54.59061813354509,29.920925140380973],[54.60070419311518,29.82213020324707],[54.48727798461914,29.82263946533203],[54.430229187012,29.793277740478572],[54.10313415527372,29.942625045776424],[54.046970367431754,30.011940002441463],[54.0363388061524,30.17011070251465],[54.00261306762695,30.288911819458065],[53.82095336914068,30.467586517333928],[53.695381164550724,30.675861358642692],[53.64963531494158,30.72549057006836],[53.45247650146507,31.132249832153263],[53.41657638549833,31.25137329101574],[53.33446502685575,31.37046432495123],[53.22953414917009,31.45966148376482],[53.09037780761736,31.528797149658317],[52.87075805664068,31.5974960327149],[52.821613311767635,31.71625518798828],[52.83815002441412,31.934347152710075],[52.91076278686535,32.16212844848633],[52.87908172607422,32.388999938964844],[52.8975067138673,32.52761840820307],[53.024459838867244,32.548427581787166],[53.081172943115234,32.59844970703125],[53.23097610473661,32.6691627502442],[53.30079650878906,32.67966842651373],[53.53479003906267,32.64161682128912],[53.61690902709978,32.612312316894474],[53.79235458374035,32.6334686279298],[54.266712188720646,32.81739425659191],[54.50440216064459,32.85909271240246],[54.706695556640625,32.91045761108404],[54.77834320068371,32.94098663330078],[54.87451171875017,33.02181243896479],[54.9602813720706,33.21295928955078],[54.997608184814396,33.3736457824707],[55.057193756103516,33.42440795898449],[55.23501968383795,33.426795959472656],[55.342098236084155,33.55321884155279],[55.401069641113565,33.70951080322271],[55.399623870849666,33.97571182250982],[55.387413024902514,34.03519058227545],[55.375221252441406,34.341957092285156],[55.40927505493164,34.36126708984381],[55.77738952636747,34.35458755493164],[55.83537292480497,34.37379837036144],[56.12435913085949,34.76766586303722],[56.210514068603686,34.90612030029297],[56.29578399658209,34.914798736572266],[56.59225463867182,34.97971725463873],[56.81083679199213,35.075904846191406],[57.11351776123058,35.19032669067394],[57.19116210937494,35.20870971679693],[57.353096008300724,35.19509506225597],[57.68194961547857,34.99739456176758],[57.719322204590014,34.88636779785162],[57.53937911987322,34.73989105224615],[57.40665817260742,34.66245651245117],[57.22909545898449,34.5860595703125],[57.111297607421875,34.44673156738287],[57.02708435058622,34.234260559082145],[56.98225021362322,34.04139709472662],[57.064804077148665,33.65277099609369],[57.157436370849666,33.589271545410156],[57.32066345214838,33.564010620117244],[57.46298980712908,33.610519409179744],[57.572574615478686,33.67869567871105],[57.59352874755882,33.606830596923885],[57.66189956665062,33.52355957031256],[57.66943740844721,33.320858001708984],[57.69181060791044,33.15978622436535],[57.727569580078125,33.030506134033374],[57.913749694824276,32.92472457885748],[58.07641220092802,32.86882781982433],[58.10110473632841,32.77018356323242],[58.14770889282249,32.74864959716808]]]},"properties":{"ID_0":107,"ISO":"IR-25","NAME_0":"Iran","ID_1":30,"NAME_1":"Yazd","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.8825225830081,37.20283889770508],[49.005035400390796,37.14783859252941],[49.182567596435604,36.998764038085994],[49.24583053588884,36.81312179565441],[49.099903106689396,36.789268493652344],[48.99852752685541,36.662811279296875],[49.00193023681669,36.611305236816406],[49.116767883300895,36.542274475097656],[49.1217155456543,36.45005035400402],[49.25782012939459,36.41273498535156],[49.33301925659197,36.3636360168457],[49.34944915771513,36.26215744018555],[49.399227142333984,36.233310699462834],[49.40493011474638,36.08132171630865],[49.25954437255865,36.06603622436518],[49.091373443603516,36.009853363037166],[49.022525787353516,35.906162261963004],[48.92445373535162,35.92363739013683],[48.75435256958008,35.90860366821295],[48.586647033691634,35.83259582519537],[48.724895477295036,35.745143890380916],[48.80254745483393,35.635829925537166],[48.805473327637,35.565017700195426],[48.672286987304915,35.55095672607416],[48.47334671020502,35.63637542724621],[48.3525199890139,35.60245895385748],[48.278148651123104,35.620643615722656],[48.22574615478521,35.69027709960943],[48.17318725585966,35.760051727295036],[47.8823127746582,35.90440750122076],[47.96340179443371,35.998420715331974],[47.977836608886776,36.171825408935604],[47.936374664306925,36.241573333740234],[47.91669082641624,36.35256195068371],[47.85060882568382,36.41080093383795],[47.57503509521513,36.439327239990234],[47.47254943847662,36.474685668945256],[47.37391281127958,36.45991516113287],[47.33239746093756,36.50775527954113],[47.25182342529297,36.69168853759777],[47.19384002685547,36.756877899169865],[47.17372512817383,36.81395721435558],[47.26881408691406,36.935417175293026],[47.32819747924822,36.958404541015625],[47.40962219238304,37.05807495117193],[47.50381469726568,37.092681884765625],[47.6019668579101,37.16534042358404],[47.81476974487322,37.179653167724666],[47.88578796386713,37.203273773193416],[47.992397308349666,37.181716918945426],[48.16621780395536,37.20207595825195],[48.36600112915039,37.166534423828125],[48.443695068359546,37.218509674072266],[48.51741027832054,37.232170104980526],[48.59880447387724,37.14997482299816],[48.6492462158206,37.15245437622082],[48.81130218505865,37.238250732421875],[48.8825225830081,37.20283889770508]]]},"properties":{"ID_0":107,"ISO":"IR-11","NAME_0":"Iran","ID_1":31,"NAME_1":"Zanjan","TYPE_1":"Ostan","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}}
+]}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson
new file mode 100644
index 0000000..1cd4300
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson
@@ -0,0 +1,112 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.779659271240178,42.07013702392578],[14.766695022583008,42.01905822753912],[14.72803688049322,42.00422286987305],[14.669513702392635,41.94760513305664],[14.664641380310115,41.91726684570324],[14.615122795105039,41.89016342163085],[14.57149696350109,41.82213592529291],[14.486200332641715,41.76062393188471],[14.446577072143612,41.83879470825207],[14.377553939819391,41.88090896606451],[14.285653114318904,41.909770965576115],[14.230606079101674,41.87806320190441],[14.184127807617188,41.90449142456055],[14.107146263122672,41.894332885742244],[14.082416534423885,42.019275665283196],[14.104935646057243,42.04895401000988],[14.086117744445913,42.0877037048341],[14.11581134796148,42.108158111572266],[14.130065917968862,42.15974426269531],[14.09697246551525,42.18688964843756],[14.118172645568848,42.22301483154308],[14.112801551818848,42.332992553710994],[14.15802383422863,42.418350219726676],[14.253912925720213,42.44513702392578],[14.410139083862362,42.36013793945324],[14.444305419921873,42.3106956481933],[14.511805534362905,42.249862670898494],[14.617360115051213,42.19985961914068],[14.717362403869743,42.17319488525396],[14.717914581298826,42.10569381713867],[14.779659271240178,42.07013702392578]]]},"properties":{"ID_0":112,"ISO":"IT-CH","NAME_0":"Italy","ID_1":1,"NAME_1":"Abruzzo","ID_2":1,"NAME_2":"Chieti","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.766159057617301,42.421115875244254],[13.808794021606445,42.333633422851676],[13.845229148864803,42.28205490112316],[13.809797286987418,42.24827957153331],[13.799041748046875,42.14995956420898],[13.91126537322998,42.14446640014654],[13.962904930114803,42.12570953369146],[14.010019302368162,42.074043273925895],[14.086117744445913,42.0877037048341],[14.104935646057243,42.04895401000988],[14.082416534423885,42.019275665283196],[14.107146263122672,41.894332885742244],[14.184127807617188,41.90449142456055],[14.230606079101674,41.87806320190441],[14.217757225036678,41.854736328125114],[14.148043632507381,41.828277587890625],[14.194854736328182,41.74899673461914],[14.070467948913517,41.738212585449155],[14.02006912231451,41.68334960937506],[13.941911697387695,41.68894958496105],[13.92059230804449,41.718223571777344],[13.750353813171444,41.7615585327149],[13.717392921447754,41.79837036132818],[13.66303730010992,41.812416076660156],[13.572714805603141,41.75527191162115],[13.522458076477108,41.77385711669933],[13.50530910491949,41.80253601074218],[13.408369064331053,41.83843994140631],[13.360740661621094,41.870368957519645],[13.384902000427244,41.90517807006847],[13.297176361084041,41.9495849609375],[13.14086055755621,42.016334533691406],[13.055448532104435,42.01735687255865],[13.01940631866455,42.075920104980526],[13.031460762023926,42.11637115478521],[13.087077140808105,42.14532089233409],[13.087980270385799,42.17885971069347],[13.184197425842342,42.15986251831055],[13.249697685241813,42.12840270996105],[13.306207656860352,42.13922882080084],[13.368479728698787,42.181034088134766],[13.32084178924572,42.23061752319336],[13.292931556701717,42.23339462280285],[13.229853630066032,42.28814697265625],[13.227374076843375,42.32030868530279],[13.154267311096248,42.3579673767091],[13.190119743347223,42.401191711425895],[13.117080688476676,42.44488525390619],[13.154969215393066,42.46330642700195],[13.178686141967773,42.51361083984375],[13.158268928527832,42.52869033813488],[13.192282676696776,42.58848953247076],[13.292169570922908,42.57151031494152],[13.3949241638183,42.59222793579095],[13.41058540344244,42.53916931152344],[13.525595664978141,42.45169830322277],[13.702491760253906,42.44522857666027],[13.766159057617301,42.421115875244254]]]},"properties":{"ID_0":112,"ISO":"IT-AQ","NAME_0":"Italy","ID_1":1,"NAME_1":"Abruzzo","ID_2":2,"NAME_2":"L'Aquila","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Aquila"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.145689010620059,42.53097152709972],[14.253912925720213,42.44513702392578],[14.15802383422863,42.418350219726676],[14.112801551818848,42.332992553710994],[14.118172645568848,42.22301483154308],[14.09697246551525,42.18688964843756],[14.130065917968862,42.15974426269531],[14.11581134796148,42.108158111572266],[14.086117744445913,42.0877037048341],[14.010019302368162,42.074043273925895],[13.962904930114803,42.12570953369146],[13.91126537322998,42.14446640014654],[13.799041748046875,42.14995956420898],[13.809797286987418,42.24827957153331],[13.845229148864803,42.28205490112316],[13.808794021606445,42.333633422851676],[13.766159057617301,42.421115875244254],[13.806940078735408,42.47715377807628],[13.885513305664118,42.51019668579113],[13.95304489135742,42.50611877441406],[13.990880966186523,42.542835235595696],[14.145689010620059,42.53097152709972]]]},"properties":{"ID_0":112,"ISO":"IT-PE","NAME_0":"Italy","ID_1":1,"NAME_1":"Abruzzo","ID_2":3,"NAME_2":"Pescara","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.915415763854924,42.89561080932623],[13.937640190124569,42.81624984741216],[13.997083663940542,42.704860687255916],[14.073472023010197,42.6029167175293],[14.145689010620059,42.53097152709972],[13.990880966186523,42.542835235595696],[13.95304489135742,42.50611877441406],[13.885513305664118,42.51019668579113],[13.806940078735408,42.47715377807628],[13.766159057617301,42.421115875244254],[13.702491760253906,42.44522857666027],[13.525595664978141,42.45169830322277],[13.41058540344244,42.53916931152344],[13.3949241638183,42.59222793579095],[13.409197807311953,42.643829345703125],[13.37022399902338,42.650699615478565],[13.34434795379633,42.70227813720709],[13.389723777771051,42.68826675415045],[13.453024864196777,42.73487472534191],[13.48971557617193,42.73463439941406],[13.530022621154899,42.796306610107365],[13.700037956237907,42.82348251342779],[13.723403930664176,42.85631179809576],[13.915415763854924,42.89561080932623]]]},"properties":{"ID_0":112,"ISO":"IT-TE","NAME_0":"Italy","ID_1":1,"NAME_1":"Abruzzo","ID_2":4,"NAME_2":"Teramo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.389303207397575,40.89299392700195],[17.340381622314506,40.86645126342768],[17.296070098876953,40.81816864013672],[17.366180419921875,40.787807464599666],[17.354406356811637,40.749568939208984],[17.305433273315426,40.744445800781364],[17.248729705810547,40.76694488525402],[17.1606826782226,40.74473571777344],[17.150299072265682,40.71173858642578],[17.059362411498967,40.72242355346691],[17.022338867187557,40.71490859985357],[16.971508026123104,40.742294311523494],[16.926740646362358,40.737808227539006],[16.912757873535156,40.70807266235357],[16.85749053955078,40.72467803955078],[16.800884246826172,40.695991516113395],[16.787738800048828,40.73365783691406],[16.72573471069336,40.71482467651361],[16.633630752563533,40.75455474853526],[16.576829910278377,40.76453018188482],[16.49689674377447,40.759273529052734],[16.431329727172965,40.70574569702154],[16.400974273681697,40.70839309692383],[16.24483680725092,40.83902359008789],[16.203292846679744,40.9185142517091],[16.252716064453182,40.9631614685058],[16.27492713928234,41.049552917480526],[16.352489471435547,41.13573837280285],[16.33858680725103,41.15243530273449],[16.401330947876033,41.189460754394474],[16.504671096801754,41.152313232421875],[16.54268455505371,41.22958374023437],[16.603195190429688,41.20347213745128],[17.045694351196403,41.080970764160156],[17.23736190795904,40.99291610717768],[17.305416107177734,40.95597076416027],[17.348749160766715,40.907360076904354],[17.389303207397575,40.89299392700195]]]},"properties":{"ID_0":112,"ISO":"IT-BA","NAME_0":"Italy","ID_1":2,"NAME_1":"Apulia","ID_2":5,"NAME_2":"Bari","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.025623321533256,41.425693511962834],[16.248193740844783,41.33402633666997],[16.344581604003906,41.3095817565918],[16.452362060546875,41.26041793823248],[16.54268455505371,41.22958374023437],[16.504671096801754,41.152313232421875],[16.401330947876033,41.189460754394474],[16.33858680725103,41.15243530273449],[16.352489471435547,41.13573837280285],[16.27492713928234,41.049552917480526],[16.252716064453182,40.9631614685058],[16.203292846679744,40.9185142517091],[16.163799285888786,40.92956161499034],[16.12212562561041,40.90022277832037],[16.09446716308605,40.92124938964855],[15.977461814880426,40.95943832397466],[16.032817840576172,40.999366760253906],[16.038827896118107,41.03986358642584],[15.954219818115236,41.11178970336913],[15.871091842651309,41.140903472900504],[15.927578926086426,41.18296813964855],[15.99244880676281,41.196380615234375],[16.02951622009283,41.251678466796875],[15.984242439270076,41.3056640625],[15.982767105102482,41.361763000488274],[16.035165786743274,41.37596130371105],[15.974295616149846,41.414951324463],[16.025623321533256,41.425693511962834]]]},"properties":{"ID_0":112,"ISO":"IT-BT","NAME_0":"Italy","ID_1":2,"NAME_1":"Apulia","ID_2":6,"NAME_2":"Barletta-Andria-Trani","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.389303207397575,40.89299392700195],[17.470415115356502,40.83347320556646],[17.55208396911621,40.80014038085949],[17.68847274780279,40.76569366455078],[17.841527938842887,40.6904182434082],[17.93874931335455,40.68569564819336],[18.045415878296012,40.59791564941412],[18.034860610962024,40.56819534301758],[18.096805572509822,40.51569366455084],[18.06988716125494,40.46140670776373],[17.954093933105582,40.45859909057623],[17.936416625976506,40.42934417724621],[17.82332801818859,40.40440368652338],[17.799119949340763,40.38063430786144],[17.694168090820256,40.41283035278332],[17.683427810669002,40.44174194335948],[17.62604713439947,40.463497161865234],[17.53359413146984,40.4480438232423],[17.48778915405279,40.4831428527832],[17.449100494384822,40.55591964721691],[17.47419166564947,40.61156082153326],[17.42780685424799,40.63460540771496],[17.41863441467285,40.68248367309575],[17.354406356811637,40.749568939208984],[17.366180419921875,40.787807464599666],[17.296070098876953,40.81816864013672],[17.340381622314506,40.86645126342768],[17.389303207397575,40.89299392700195]]]},"properties":{"ID_0":112,"ISO":"IT-BR","NAME_0":"Italy","ID_1":2,"NAME_1":"Apulia","ID_2":7,"NAME_2":"Brindisi","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.025623321533256,41.425693511962834],[15.974295616149846,41.414951324463],[16.035165786743274,41.37596130371105],[15.982767105102482,41.361763000488274],[15.984242439270076,41.3056640625],[16.02951622009283,41.251678466796875],[15.99244880676281,41.196380615234375],[15.927578926086426,41.18296813964855],[15.871091842651309,41.140903472900504],[15.806827545166016,41.112102508545036],[15.682644844055176,41.08720016479492],[15.618253707885799,41.10024642944347],[15.56483459472656,41.090389251708984],[15.543709754943848,41.05684280395508],[15.446956634521541,41.079006195068416],[15.397229194641229,41.107791900634766],[15.368302345275934,41.085861206054794],[15.26804637908947,41.107631683349666],[15.210206031799428,41.1686744689942],[15.258231163025014,41.198379516601676],[15.251250267028807,41.27143478393554],[15.201869964599668,41.28726196289074],[15.150016784667967,41.28142929077154],[15.129775047302246,41.31078338623047],[15.073053359985408,41.333438873291016],[15.059313774108885,41.373111724853516],[15.09964561462408,41.43475341796869],[15.03331184387207,41.45367050170909],[15.008489608764705,41.48736572265636],[14.941324234008903,41.52459335327154],[14.960845947265682,41.64701080322276],[15.023566246032772,41.622829437255916],[15.049173355102539,41.65649414062506],[15.101681709289549,41.67280960083013],[15.122014045715444,41.721210479736385],[15.09823226928711,41.76690673828131],[15.115994453430174,41.79053115844738],[15.10453414916992,41.84770965576172],[15.139669418334961,41.880249023437614],[15.137508392333986,41.92625045776373],[15.344305992126406,41.915416717529354],[15.43097305297863,41.900970458984375],[15.623748779296816,41.927639007568416],[15.675972938537653,41.91485977172857],[15.757361412048397,41.91652679443371],[15.930693626403864,41.933750152588004],[16.011249542236328,41.950695037841854],[16.08458328247076,41.94097137451172],[16.166248321533317,41.88735961914057],[16.192638397216793,41.836250305175724],[16.189582824707088,41.7745819091798],[16.122638702392575,41.73875045776367],[16.06541633605957,41.693195343017635],[15.946526527404783,41.64402770996094],[15.900695800781193,41.61597061157232],[15.899862289428823,41.53652954101568],[15.938471794128473,41.47735977172863],[16.025623321533256,41.425693511962834]]]},"properties":{"ID_0":112,"ISO":"IT-FG","NAME_0":"Italy","ID_1":2,"NAME_1":"Apulia","ID_2":8,"NAME_2":"Foggia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[18.096805572509822,40.51569366455084],[18.12763977050787,40.49236297607422],[18.201528549194336,40.46902847290039],[18.251806259155387,40.434028625488274],[18.334304809570312,40.35652923583979],[18.424028396606445,40.29430389404308],[18.46486091613769,40.221527099609375],[18.464305877685547,40.1926383972168],[18.51736068725586,40.134304046630916],[18.52069473266613,40.10791778564458],[18.477916717529354,40.048751831054744],[18.434860229492188,40.02347183227539],[18.403192520141545,39.96152877807623],[18.391527175903434,39.818519592285156],[18.333749771118107,39.79513931274414],[18.257638931274528,39.83625030517578],[18.210138320922965,39.837917327880916],[18.0456943511964,39.92958450317383],[18.012081146240234,39.97208404541021],[18.017084121704215,40.034305572509766],[17.983749389648438,40.054584503173885],[18.010971069336048,40.10708236694347],[17.925138473510742,40.183471679687614],[17.907917022705078,40.25152587890631],[17.863470077514762,40.28208160400402],[17.76347160339361,40.29472351074213],[17.792825698852482,40.33770751953125],[17.799119949340763,40.38063430786144],[17.82332801818859,40.40440368652338],[17.936416625976506,40.42934417724621],[17.954093933105582,40.45859909057623],[18.06988716125494,40.46140670776373],[18.096805572509822,40.51569366455084]]]},"properties":{"ID_0":112,"ISO":"IT-LE","NAME_0":"Italy","ID_1":2,"NAME_1":"Apulia","ID_2":9,"NAME_2":"Lecce","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.354406356811637,40.749568939208984],[17.41863441467285,40.68248367309575],[17.42780685424799,40.63460540771496],[17.47419166564947,40.61156082153326],[17.449100494384822,40.55591964721691],[17.48778915405279,40.4831428527832],[17.53359413146984,40.4480438232423],[17.62604713439947,40.463497161865234],[17.683427810669002,40.44174194335948],[17.694168090820256,40.41283035278332],[17.799119949340763,40.38063430786144],[17.792825698852482,40.33770751953125],[17.76347160339361,40.29472351074213],[17.660419464111385,40.30430603027344],[17.505416870117184,40.294860839843864],[17.44902992248541,40.32791519165045],[17.39347267150879,40.332916259765625],[17.230693817138725,40.40152740478527],[17.251249313354432,40.449859619140625],[17.129304885864258,40.517639160156364],[17.020416259765682,40.505973815918026],[16.948196411132926,40.46986007690441],[16.867361068725586,40.399070739746094],[16.810197830200195,40.434066772460994],[16.793422698974553,40.46294784545904],[16.736410140991325,40.46891784667968],[16.73789024353033,40.50482177734381],[16.70650863647461,40.55118179321289],[16.72479438781744,40.603435516357365],[16.710580825805778,40.63382339477538],[16.72573471069336,40.71482467651361],[16.787738800048828,40.73365783691406],[16.800884246826172,40.695991516113395],[16.85749053955078,40.72467803955078],[16.912757873535156,40.70807266235357],[16.926740646362358,40.737808227539006],[16.971508026123104,40.742294311523494],[17.022338867187557,40.71490859985357],[17.059362411498967,40.72242355346691],[17.150299072265682,40.71173858642578],[17.1606826782226,40.74473571777344],[17.248729705810547,40.76694488525402],[17.305433273315426,40.744445800781364],[17.354406356811637,40.749568939208984]]]},"properties":{"ID_0":112,"ISO":"IT-TA","NAME_0":"Italy","ID_1":2,"NAME_1":"Apulia","ID_2":10,"NAME_2":"Taranto","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Ionio|Tarent|Tarente"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.72573471069336,40.71482467651361],[16.710580825805778,40.63382339477538],[16.72479438781744,40.603435516357365],[16.70650863647461,40.55118179321289],[16.73789024353033,40.50482177734381],[16.736410140991325,40.46891784667968],[16.793422698974553,40.46294784545904],[16.810197830200195,40.434066772460994],[16.867361068725586,40.399070739746094],[16.78069496154791,40.29708480834972],[16.730972290039006,40.20264053344738],[16.690139770507756,40.14958190917963],[16.64536857604986,40.119583129882926],[16.58623504638672,40.13402175903332],[16.530830383300895,40.119091033935604],[16.45279884338379,40.135799407958984],[16.409763336181697,40.12195587158203],[16.399391174316463,40.0566520690918],[16.35133552551275,40.124301910400334],[16.39815330505371,40.16800689697271],[16.34942817687994,40.2063941955567],[16.376321792602596,40.27486801147466],[16.332704544067496,40.304557800293026],[16.310989379882812,40.274398803710994],[16.196304321289176,40.266391754150504],[16.175682067871207,40.339393615722656],[16.1070442199707,40.409652709960994],[16.14154624938959,40.45486831665038],[16.076513290405217,40.545639038085994],[16.117597579956108,40.57852935791027],[16.049053192138672,40.63656234741222],[16.056423187255803,40.656040191650504],[16.149700164794865,40.7041625976563],[16.1157169342041,40.76863479614258],[16.122261047363335,40.79710006713873],[16.24483680725092,40.83902359008789],[16.400974273681697,40.70839309692383],[16.431329727172965,40.70574569702154],[16.49689674377447,40.759273529052734],[16.576829910278377,40.76453018188482],[16.633630752563533,40.75455474853526],[16.72573471069336,40.71482467651361]]]},"properties":{"ID_0":112,"ISO":"IT-MT","NAME_0":"Italy","ID_1":3,"NAME_1":"Basilicata","ID_2":11,"NAME_2":"Matera","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.203292846679744,40.9185142517091],[16.24483680725092,40.83902359008789],[16.122261047363335,40.79710006713873],[16.1157169342041,40.76863479614258],[16.149700164794865,40.7041625976563],[16.056423187255803,40.656040191650504],[16.049053192138672,40.63656234741222],[16.117597579956108,40.57852935791027],[16.076513290405217,40.545639038085994],[16.14154624938959,40.45486831665038],[16.1070442199707,40.409652709960994],[16.175682067871207,40.339393615722656],[16.196304321289176,40.266391754150504],[16.310989379882812,40.274398803710994],[16.332704544067496,40.304557800293026],[16.376321792602596,40.27486801147466],[16.34942817687994,40.2063941955567],[16.39815330505371,40.16800689697271],[16.35133552551275,40.124301910400334],[16.399391174316463,40.0566520690918],[16.39923667907709,40.01996612548834],[16.338621139526367,39.937179565429744],[16.159427642822205,39.92107009887701],[16.083858489990345,39.8976211547851],[16.023445129394585,39.9246482849121],[15.980018615722768,39.983406066894645],[15.92884826660162,40.00207519531256],[15.898836135864203,39.98268890380854],[15.820881843567006,40.002876281738395],[15.75597286224365,39.92421340942394],[15.72180557250982,39.974582672119084],[15.645068168640192,40.04124832153325],[15.706657409668024,40.118736267089844],[15.713358879089412,40.17945098876958],[15.806197166442926,40.252410888671875],[15.795017242431696,40.28796386718756],[15.74999237060558,40.29973983764659],[15.709758758544979,40.337570190429744],[15.710953712463377,40.3782958984375],[15.603918075561523,40.435775756835994],[15.539670944213922,40.48905181884777],[15.546155929565487,40.53265380859381],[15.510969161987246,40.586738586425724],[15.452599525451715,40.61184310913086],[15.504422187805288,40.66393661499023],[15.429780006408803,40.69358444213873],[15.382322311401422,40.72513961791992],[15.386405944824274,40.79251861572277],[15.335826873779238,40.83586120605469],[15.379167556762752,40.84173965454107],[15.384810447692926,40.87731552124035],[15.52758979797369,40.90857315063488],[15.572869300842283,40.99986267089855],[15.543709754943848,41.05684280395508],[15.56483459472656,41.090389251708984],[15.618253707885799,41.10024642944347],[15.682644844055176,41.08720016479492],[15.806827545166016,41.112102508545036],[15.871091842651309,41.140903472900504],[15.954219818115236,41.11178970336913],[16.038827896118107,41.03986358642584],[16.032817840576172,40.999366760253906],[15.977461814880426,40.95943832397466],[16.09446716308605,40.92124938964855],[16.12212562561041,40.90022277832037],[16.163799285888786,40.92956161499034],[16.203292846679744,40.9185142517091]]]},"properties":{"ID_0":112,"ISO":"IT-PZ","NAME_0":"Italy","ID_1":3,"NAME_1":"Basilicata","ID_2":12,"NAME_2":"Potenza","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.891441345214844,38.928195953369254],[16.777082443237248,38.89652633667003],[16.604583740234432,38.81291580200201],[16.537639617920036,38.72236251831066],[16.572639465332145,38.568195343017635],[16.582359313964957,38.47061920166021],[16.538009643554688,38.46735000610362],[16.480953216552848,38.49317169189458],[16.42063140869135,38.555007934570426],[16.42951583862299,38.58431625366205],[16.329961776733512,38.64141464233404],[16.350797653198242,38.735687255859375],[16.34513473510748,38.795120239257926],[16.297014236450252,38.82233810424816],[16.215417861938587,38.81147384643549],[16.221252441406307,38.911529541015625],[16.155416488647575,38.952362060546875],[16.095138549804744,39.04980087280279],[16.156719207763786,39.061851501464844],[16.251199722290096,39.10040283203125],[16.346326828002987,39.112121582031364],[16.383020401001033,39.10591506958019],[16.425207138061523,39.06277847290045],[16.481910705566406,39.06008148193371],[16.47992515563965,39.12331390380865],[16.536777496337947,39.14557266235357],[16.613822937011832,39.19525146484381],[16.666828155517575,39.15707397460943],[16.65895462036127,39.119949340820426],[16.734609603881836,39.05995941162109],[16.776813507080192,39.064994812011776],[16.846569061279354,39.039947509765625],[16.895288467407227,38.998748779296875],[16.921051025390682,38.95312881469732],[16.891441345214844,38.928195953369254]]]},"properties":{"ID_0":112,"ISO":"IT-CZ","NAME_0":"Italy","ID_1":4,"NAME_1":"Calabria","ID_2":13,"NAME_2":"Catanzaro","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.64536857604986,40.119583129882926],[16.609027862548825,40.08458328247082],[16.59958457946783,40.036529541015625],[16.63013839721691,39.96625137329101],[16.49374961853033,39.81291580200201],[16.491527557373047,39.75041580200207],[16.52819442749029,39.72486114501953],[16.52458381652843,39.65987014770502],[16.613750457763615,39.6223602294923],[16.781528472900444,39.614582061767635],[16.870695114135856,39.53597259521496],[16.975414276123047,39.49124908447271],[17.02402687072754,39.48283767700207],[16.958009719848633,39.438037872314396],[16.957363128662166,39.39823150634777],[16.835849761962947,39.346748352050895],[16.765047073364315,39.36260986328119],[16.707103729248104,39.32390213012701],[16.761844635009822,39.292900085449276],[16.747573852539062,39.24633407592785],[16.778921127319393,39.196941375732536],[16.681104660034293,39.206787109375],[16.613822937011832,39.19525146484381],[16.536777496337947,39.14557266235357],[16.47992515563965,39.12331390380865],[16.481910705566406,39.06008148193371],[16.425207138061523,39.06277847290045],[16.383020401001033,39.10591506958019],[16.346326828002987,39.112121582031364],[16.251199722290096,39.10040283203125],[16.156719207763786,39.061851501464844],[16.095138549804744,39.04980087280279],[16.066528320312557,39.13597106933605],[16.056804656982365,39.271526336669865],[16.035417556762695,39.35208511352539],[15.995416641235352,39.44374847412115],[15.923748970031738,39.52763748168957],[15.874305725097711,39.553195953369254],[15.80791664123535,39.737915039062614],[15.7859725952149,39.817081451416016],[15.779859542846793,39.89430618286133],[15.75597286224365,39.92421340942394],[15.820881843567006,40.002876281738395],[15.898836135864203,39.98268890380854],[15.92884826660162,40.00207519531256],[15.980018615722768,39.983406066894645],[16.023445129394585,39.9246482849121],[16.083858489990345,39.8976211547851],[16.159427642822205,39.92107009887701],[16.338621139526367,39.937179565429744],[16.39923667907709,40.01996612548834],[16.399391174316463,40.0566520690918],[16.409763336181697,40.12195587158203],[16.45279884338379,40.135799407958984],[16.530830383300895,40.119091033935604],[16.58623504638672,40.13402175903332],[16.64536857604986,40.119583129882926]]]},"properties":{"ID_0":112,"ISO":"IT-CS","NAME_0":"Italy","ID_1":4,"NAME_1":"Calabria","ID_2":14,"NAME_2":"Cosenza","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.02402687072754,39.48283767700207],[17.05430412292486,39.43791580200195],[17.11847114562994,39.40541839599615],[17.13791847229004,39.37819290161133],[17.111249923705998,39.31735992431652],[17.105972290039062,39.25263977050787],[17.147361755371094,39.20624923706066],[17.115972518921012,39.14319610595709],[17.110971450805664,39.095973968505916],[17.172916412353572,39.03347396850597],[17.16958236694336,38.952640533447266],[17.113471984863338,38.90986251831066],[16.98430633544922,38.93791580200207],[16.891441345214844,38.928195953369254],[16.921051025390682,38.95312881469732],[16.895288467407227,38.998748779296875],[16.846569061279354,39.039947509765625],[16.776813507080192,39.064994812011776],[16.734609603881836,39.05995941162109],[16.65895462036127,39.119949340820426],[16.666828155517575,39.15707397460943],[16.613822937011832,39.19525146484381],[16.681104660034293,39.206787109375],[16.778921127319393,39.196941375732536],[16.747573852539062,39.24633407592785],[16.761844635009822,39.292900085449276],[16.707103729248104,39.32390213012701],[16.765047073364315,39.36260986328119],[16.835849761962947,39.346748352050895],[16.957363128662166,39.39823150634777],[16.958009719848633,39.438037872314396],[17.02402687072754,39.48283767700207]]]},"properties":{"ID_0":112,"ISO":"IT-KR","NAME_0":"Italy","ID_1":4,"NAME_1":"Calabria","ID_2":15,"NAME_2":"Crotone","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.42063140869135,38.555007934570426],[16.480953216552848,38.49317169189458],[16.538009643554688,38.46735000610362],[16.582359313964957,38.47061920166021],[16.567361831664982,38.42319488525402],[16.498472213745117,38.360416412353516],[16.4523601531983,38.334304809570426],[16.323749542236385,38.2940292358399],[16.1609725952149,38.13013839721691],[16.14486122131359,38.03263854980469],[16.100971221923885,37.95986175537115],[16.063474655151424,37.92402648925792],[15.995972633361873,37.91569519042963],[15.922917366027946,37.92958450317383],[15.76374912261974,37.91652679443365],[15.67847347259516,37.95375061035162],[15.638750076294,38.00152969360357],[15.654305458068846,38.03097152709972],[15.631249427795408,38.10319519042969],[15.656805038452205,38.13541793823248],[15.633193969726618,38.19124984741211],[15.635972023010199,38.23263931274414],[15.749305725097654,38.25708389282232],[15.795140266418398,38.280418395996094],[15.829305648803652,38.32402801513683],[15.882081985473633,38.430973052978516],[15.90236186981201,38.439025878906364],[15.920139312744197,38.50785446166992],[15.960882186889762,38.52667617797863],[16.00529289245611,38.517757415771484],[16.080799102783317,38.5631217956544],[16.1943035125733,38.498619079589844],[16.25432205200201,38.48540115356451],[16.268133163452205,38.44609832763683],[16.35367965698248,38.43177413940429],[16.392402648925724,38.449623107910156],[16.356039047241268,38.496585845947266],[16.350070953369197,38.538391113281364],[16.393669128418026,38.574832916259766],[16.42063140869135,38.555007934570426]]]},"properties":{"ID_0":112,"ISO":"IT-RC","NAME_0":"Italy","ID_1":4,"NAME_1":"Calabria","ID_2":16,"NAME_2":"Reggio Di Calabria","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Reggio Calabria|Reggio de Calabre"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.42063140869135,38.555007934570426],[16.393669128418026,38.574832916259766],[16.350070953369197,38.538391113281364],[16.356039047241268,38.496585845947266],[16.392402648925724,38.449623107910156],[16.35367965698248,38.43177413940429],[16.268133163452205,38.44609832763683],[16.25432205200201,38.48540115356451],[16.1943035125733,38.498619079589844],[16.080799102783317,38.5631217956544],[16.00529289245611,38.517757415771484],[15.960882186889762,38.52667617797863],[15.920139312744197,38.50785446166992],[15.932084083557186,38.5406951904298],[15.828472137451286,38.62597274780279],[15.852640151977653,38.66263961791998],[15.949304580688532,38.69180679321295],[15.986249923706168,38.723472595214844],[16.041805267333984,38.72763824462902],[16.10069465637207,38.711528778076115],[16.1848602294923,38.749584197998104],[16.215417861938587,38.81147384643549],[16.297014236450252,38.82233810424816],[16.34513473510748,38.795120239257926],[16.350797653198242,38.735687255859375],[16.329961776733512,38.64141464233404],[16.42951583862299,38.58431625366205],[16.42063140869135,38.555007934570426]]]},"properties":{"ID_0":112,"ISO":"IT-VV","NAME_0":"Italy","ID_1":4,"NAME_1":"Calabria","ID_2":17,"NAME_2":"Vibo Valentia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[15.543709754943848,41.05684280395508],[15.572869300842283,40.99986267089855],[15.52758979797369,40.90857315063488],[15.384810447692926,40.87731552124035],[15.379167556762752,40.84173965454107],[15.335826873779238,40.83586120605469],[15.296395301818904,40.839141845703125],[15.281505584716795,40.80052947998058],[15.240281105041559,40.7755012512207],[15.247925758361871,40.7186737060548],[15.167805671692006,40.708911895751896],[15.140432357788086,40.75787353515625],[14.919284820556639,40.802188873291016],[14.83513832092285,40.794521331787216],[14.745252609252987,40.8046760559082],[14.73508071899414,40.8405151367188],[14.667650222778262,40.8234634399414],[14.606406211853027,40.84861755371087],[14.577985763549862,40.881591796875114],[14.586166381835936,40.93495941162115],[14.572798728942871,41.010513305664176],[14.595940589904785,41.057880401611385],[14.663005828857479,41.056636810302734],[14.830148696899357,41.03605270385742],[14.869752883911188,41.058689117431754],[14.975868225097654,41.09449768066406],[15.011713981628532,41.119083404541065],[14.962833404541074,41.17633819580078],[15.000146865844727,41.200962066650504],[14.981835365295469,41.26225662231445],[15.009923934936467,41.271938323974716],[15.12377262115484,41.25753402709966],[15.150016784667967,41.28142929077154],[15.201869964599668,41.28726196289074],[15.251250267028807,41.27143478393554],[15.258231163025014,41.198379516601676],[15.210206031799428,41.1686744689942],[15.26804637908947,41.107631683349666],[15.368302345275934,41.085861206054794],[15.397229194641229,41.107791900634766],[15.446956634521541,41.079006195068416],[15.543709754943848,41.05684280395508]]]},"properties":{"ID_0":112,"ISO":"IT-AV","NAME_0":"Italy","ID_1":5,"NAME_1":"Campania","ID_2":18,"NAME_2":"Avellino","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[15.150016784667967,41.28142929077154],[15.12377262115484,41.25753402709966],[15.009923934936467,41.271938323974716],[14.981835365295469,41.26225662231445],[15.000146865844727,41.200962066650504],[14.962833404541074,41.17633819580078],[15.011713981628532,41.119083404541065],[14.975868225097654,41.09449768066406],[14.869752883911188,41.058689117431754],[14.830148696899357,41.03605270385742],[14.663005828857479,41.056636810302734],[14.595940589904785,41.057880401611385],[14.572798728942871,41.010513305664176],[14.53203487396246,41.014343261718864],[14.508067131042479,41.0566864013673],[14.421057701110895,41.053474426269474],[14.437855720520131,41.09724044799799],[14.398022651672306,41.122409820556754],[14.467558860778809,41.1717262268067],[14.423304557800408,41.25215911865246],[14.454544067382756,41.29473495483404],[14.489974021911735,41.3016357421875],[14.457014083862305,41.37276458740229],[14.50485992431652,41.38511276245117],[14.603911399841309,41.364948272705135],[14.67231273651123,41.40762329101574],[14.718147277831974,41.401817321777344],[14.765568733215275,41.418354034423885],[14.791049957275504,41.453540802001896],[14.856516838073729,41.42568206787115],[15.008489608764705,41.48736572265636],[15.03331184387207,41.45367050170909],[15.09964561462408,41.43475341796869],[15.059313774108885,41.373111724853516],[15.073053359985408,41.333438873291016],[15.129775047302246,41.31078338623047],[15.150016784667967,41.28142929077154]]]},"properties":{"ID_0":112,"ISO":"IT-BN","NAME_0":"Italy","ID_1":5,"NAME_1":"Campania","ID_2":19,"NAME_2":"Benevento","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Bénévent"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.38335990905756,41.44424819946288],[14.456177711486875,41.42882156372076],[14.50485992431652,41.38511276245117],[14.457014083862305,41.37276458740229],[14.489974021911735,41.3016357421875],[14.454544067382756,41.29473495483404],[14.423304557800408,41.25215911865246],[14.467558860778809,41.1717262268067],[14.398022651672306,41.122409820556754],[14.437855720520131,41.09724044799799],[14.421057701110895,41.053474426269474],[14.508067131042479,41.0566864013673],[14.53203487396246,41.014343261718864],[14.52167606353771,40.988140106201115],[14.40569686889654,40.98708724975591],[14.298489570617676,41.005744934082145],[14.285353660583496,40.96129989624023],[14.157631874084473,40.95249557495117],[14.14115142822277,40.98014068603521],[14.018877029419002,40.948909759521484],[14.032361030578727,40.89967727661133],[13.977359771728572,40.97735977172857],[13.921527862548771,41.02486038208013],[13.895973205566461,41.09041595458996],[13.826249122619743,41.173751831054744],[13.76291656494152,41.22364807128906],[13.819704055786133,41.24679565429693],[13.828458786010856,41.27845001220709],[13.883223533630485,41.29193496704113],[13.874588012695312,41.33932113647461],[13.886704444885366,41.38644790649414],[13.863900184631348,41.41093063354498],[13.978795051574707,41.46347045898443],[14.006661415100154,41.45382690429682],[14.043269157409668,41.3937721252442],[14.108372688293514,41.41742324829107],[14.079253196716365,41.44807052612305],[14.126154899597282,41.50835418701183],[14.168185234069824,41.49540710449213],[14.242506980896053,41.49765014648449],[14.328041076660272,41.454425811767635],[14.38335990905756,41.44424819946288]]]},"properties":{"ID_0":112,"ISO":"IT-CE","NAME_0":"Italy","ID_1":5,"NAME_1":"Campania","ID_2":20,"NAME_2":"Caserta","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Caserte"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[13.871805191040096,40.7618064880371],[13.954029083251953,40.74235916137701],[13.965417861938477,40.71208190917969],[13.872638702392635,40.69680404663091],[13.853749275207575,40.73708343505859],[13.871805191040096,40.7618064880371]]],[[[14.606406211853027,40.84861755371087],[14.588993072509822,40.80659866333008],[14.507883071899471,40.77396774291992],[14.58075141906744,40.71057891845703],[14.556047439575309,40.668937683105575],[14.577222824096737,40.628292083740234],[14.470694541931266,40.62071990966796],[14.323193550109975,40.570137023925895],[14.339304924011286,40.62458419799816],[14.399862289428768,40.6381950378418],[14.480416297912656,40.70902633666998],[14.45402812957775,40.75013732910162],[14.414029121398867,40.75152969360357],[14.295415878295842,40.83597183227539],[14.231804847717283,40.83208465576172],[14.185972213745117,40.79152679443365],[14.1620836257934,40.81569290161144],[14.082360267639217,40.828472137451286],[14.047083854675293,40.85775756835949],[14.032361030578727,40.89967727661133],[14.018877029419002,40.948909759521484],[14.14115142822277,40.98014068603521],[14.157631874084473,40.95249557495117],[14.285353660583496,40.96129989624023],[14.298489570617676,41.005744934082145],[14.40569686889654,40.98708724975591],[14.52167606353771,40.988140106201115],[14.53203487396246,41.014343261718864],[14.572798728942871,41.010513305664176],[14.586166381835936,40.93495941162115],[14.577985763549862,40.881591796875114],[14.606406211853027,40.84861755371087]]]]},"properties":{"ID_0":112,"ISO":"IT-NA","NAME_0":"Italy","ID_1":5,"NAME_1":"Campania","ID_2":21,"NAME_2":"Napoli","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Napels|Nápoles|Neapel"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[15.335826873779238,40.83586120605469],[15.386405944824274,40.79251861572277],[15.382322311401422,40.72513961791992],[15.429780006408803,40.69358444213873],[15.504422187805288,40.66393661499023],[15.452599525451715,40.61184310913086],[15.510969161987246,40.586738586425724],[15.546155929565487,40.53265380859381],[15.539670944213922,40.48905181884777],[15.603918075561523,40.435775756835994],[15.710953712463377,40.3782958984375],[15.709758758544979,40.337570190429744],[15.74999237060558,40.29973983764659],[15.795017242431696,40.28796386718756],[15.806197166442926,40.252410888671875],[15.713358879089412,40.17945098876958],[15.706657409668024,40.118736267089844],[15.645068168640192,40.04124832153325],[15.574583053588924,40.078193664550895],[15.503472328186033,40.06375122070307],[15.421250343322752,39.99208450317394],[15.344028472900332,40.004585266113395],[15.28458404541027,40.034027099609375],[15.272083282470817,40.07374954223644],[15.118194580078182,40.17680740356445],[15.064861297607422,40.16458511352539],[14.992637634277344,40.2176399230957],[14.915971755981387,40.2370834350587],[14.94513797760004,40.280139923095646],[14.944581985473576,40.335971832275504],[14.999029159546012,40.35847091674815],[14.984582901001032,40.42430496215832],[14.908749580383414,40.54586410522461],[14.824584007263184,40.64014053344732],[14.759025573730469,40.67736053466797],[14.692917823791559,40.63402938842779],[14.637639999389647,40.64875030517578],[14.575972557067983,40.616806030273494],[14.524026870727482,40.60764312744146],[14.470694541931266,40.62071990966796],[14.577222824096737,40.628292083740234],[14.556047439575309,40.668937683105575],[14.58075141906744,40.71057891845703],[14.507883071899471,40.77396774291992],[14.588993072509822,40.80659866333008],[14.606406211853027,40.84861755371087],[14.667650222778262,40.8234634399414],[14.73508071899414,40.8405151367188],[14.745252609252987,40.8046760559082],[14.83513832092285,40.794521331787216],[14.919284820556639,40.802188873291016],[15.140432357788086,40.75787353515625],[15.167805671692006,40.708911895751896],[15.247925758361871,40.7186737060548],[15.240281105041559,40.7755012512207],[15.281505584716795,40.80052947998058],[15.296395301818904,40.839141845703125],[15.335826873779238,40.83586120605469]]]},"properties":{"ID_0":112,"ISO":"IT-SA","NAME_0":"Italy","ID_1":5,"NAME_1":"Campania","ID_2":22,"NAME_2":"Salerno","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Salerne"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.29433917999279,44.803741455078125],[11.247095108032282,44.759319305420036],[11.276430130004883,44.70651245117193],[11.359964370727539,44.77458572387707],[11.45280742645275,44.76161575317394],[11.593715667724666,44.712627410888615],[11.674986839294434,44.63319396972656],[11.729022979736442,44.6551513671875],[11.80127334594738,44.63545989990246],[11.790178298950307,44.555278778076165],[11.779670715331974,44.50445175170904],[11.799857139587516,44.46171951293951],[11.782316207885742,44.43720245361334],[11.83783340454107,44.41497421264654],[11.786947250366211,44.3489990234375],[11.709525108337402,44.29094314575195],[11.640927314758414,44.27468490600597],[11.579793930053711,44.233146667480526],[11.525937080383244,44.15861892700201],[11.448613166809139,44.20043563842779],[11.422061920166072,44.24018859863287],[11.381526947021428,44.20095062255871],[11.343493461609,44.20616149902344],[11.281703948974666,44.156291961669915],[11.20091342926031,44.1412239074707],[11.203396797180119,44.10168838500988],[11.160189628601188,44.11336898803711],[11.050428390503043,44.09119033813487],[11.002603530883844,44.1127815246582],[10.945720672607422,44.082633972168026],[10.849676132202148,44.09900283813488],[10.816032409668082,44.11658096313471],[10.824010848999137,44.18327713012707],[10.856199264526424,44.2083358764649],[10.908233642578125,44.20638656616222],[10.95815658569336,44.227054595947266],[10.967703819274846,44.30319213867199],[11.012989044189567,44.30053329467779],[11.041191101074219,44.33264541625988],[11.023368835449332,44.374057769775504],[11.049164772033805,44.417049407958984],[10.99766540527338,44.43048095703124],[11.048400878906193,44.46685409545904],[11.060085296630971,44.523170471191406],[11.151000022888127,44.58458328247081],[11.128792762756348,44.632293701171875],[11.079097747802791,44.64797592163086],[11.117997169494743,44.711376190185604],[11.130892753601074,44.78385162353526],[11.208846092224121,44.80523681640625],[11.29433917999279,44.803741455078125]]]},"properties":{"ID_0":112,"ISO":"IT-BO","NAME_0":"Italy","ID_1":6,"NAME_1":"Emilia-Romagna","ID_2":23,"NAME_2":"Bologna","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Bologne|Bolonha|Bolonia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.398496627807672,44.7926406860351],[12.375417709350643,44.79958343505865],[12.309028625488281,44.841804504394645],[12.257361412048397,44.780139923095646],[12.240416526794546,44.68708419799805],[12.270415306091252,44.62950897216808],[12.238058090210018,44.62151336669933],[12.154755592346191,44.549381256103516],[12.029066085815543,44.561408996582145],[12.00079345703125,44.600948333740284],[11.790178298950307,44.555278778076165],[11.80127334594738,44.63545989990246],[11.729022979736442,44.6551513671875],[11.674986839294434,44.63319396972656],[11.593715667724666,44.712627410888615],[11.45280742645275,44.76161575317394],[11.359964370727539,44.77458572387707],[11.276430130004883,44.70651245117193],[11.247095108032282,44.759319305420036],[11.29433917999279,44.803741455078125],[11.312608718872013,44.82842636108398],[11.369589805603027,44.843608856201286],[11.348627090454213,44.8726921081543],[11.235746383667049,44.90690612792969],[11.247202873230094,44.952377319335994],[11.327499389648438,44.963172912597656],[11.427749633789176,44.95100784301769],[11.532971382141227,44.93776702880871],[11.625800132751465,44.890155792236435],[11.745738029480037,44.93804931640631],[11.80167484283447,44.976772308349716],[11.922171592712402,44.97557830810547],[11.963665962219181,44.987747192382926],[12.098981857299803,44.972396850585994],[12.141585350036678,44.92935562133789],[12.170125961303711,44.94300460815441],[12.225951194763297,44.923896789550774],[12.281847000122127,44.942684173583984],[12.287628173828125,44.87122344970697],[12.337293624878042,44.85315322875988],[12.358345031738395,44.814521789550895],[12.398496627807672,44.7926406860351]]]},"properties":{"ID_0":112,"ISO":"IT-FE","NAME_0":"Italy","ID_1":6,"NAME_1":"Emilia-Romagna","ID_2":24,"NAME_2":"Ferrara","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Ferrare"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.383472442626953,44.22472763061518],[12.449031829834098,44.16289520263672],[12.454290390014647,44.11318588256836],[12.365197181701717,44.047771453857415],[12.396251678466795,44.031185150146484],[12.370384216308537,43.99071884155273],[12.323801994323787,43.961547851562614],[12.295721054077262,43.929141998291016],[12.169010162353628,43.89849472045904],[12.103829383850098,43.78923416137706],[12.108415603637695,43.75472640991222],[11.9874782562257,43.76287078857422],[11.948028564453182,43.791816711425895],[11.85702991485607,43.81684112548822],[11.711153984069824,43.8784065246582],[11.718013763427734,43.922771453857536],[11.646622657775879,43.99033355712896],[11.695893287658748,44.03629302978521],[11.753623008728084,44.12234115600586],[11.716867446899471,44.12350463867199],[11.72120666503912,44.15963363647472],[11.83035659790039,44.19990921020519],[11.889584541320858,44.17160034179682],[11.914959907531795,44.20925140380865],[11.978022575378475,44.25780487060558],[12.036561012268121,44.33174514770508],[12.104217529296932,44.272914886474666],[12.208239555358944,44.221405029296875],[12.281197547912598,44.234130859375114],[12.350291252136229,44.191673278808594],[12.383472442626953,44.22472763061518]]]},"properties":{"ID_0":112,"ISO":"IT-FC","NAME_0":"Italy","ID_1":6,"NAME_1":"Emilia-Romagna","ID_2":25,"NAME_2":"Forli' - Cesena","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.247202873230094,44.952377319335994],[11.235746383667049,44.90690612792969],[11.348627090454213,44.8726921081543],[11.369589805603027,44.843608856201286],[11.312608718872013,44.82842636108398],[11.29433917999279,44.803741455078125],[11.208846092224121,44.80523681640625],[11.130892753601074,44.78385162353526],[11.117997169494743,44.711376190185604],[11.079097747802791,44.64797592163086],[11.128792762756348,44.632293701171875],[11.151000022888127,44.58458328247081],[11.060085296630971,44.523170471191406],[11.048400878906193,44.46685409545904],[10.99766540527338,44.43048095703124],[11.049164772033805,44.417049407958984],[11.023368835449332,44.374057769775504],[11.041191101074219,44.33264541625988],[11.012989044189567,44.30053329467779],[10.967703819274846,44.30319213867199],[10.95815658569336,44.227054595947266],[10.908233642578125,44.20638656616222],[10.856199264526424,44.2083358764649],[10.824010848999137,44.18327713012707],[10.816032409668082,44.11658096313471],[10.744303703308105,44.15737152099615],[10.642218589782772,44.16078567504894],[10.625062942504883,44.121318817138786],[10.525940895080623,44.15795898437505],[10.471135139465446,44.22700881958002],[10.52975082397461,44.35221481323248],[10.597932815551701,44.36476516723633],[10.671593666076658,44.470123291015625],[10.741660118103141,44.5107994079591],[10.767736434936637,44.543624877929744],[10.782977104186955,44.628707885742244],[10.81629657745367,44.657470703125],[10.80770397186285,44.69759750366211],[10.8160018920899,44.8081626892091],[10.888903617858944,44.915214538574276],[10.9423828125,44.922859191894645],[10.999081611633414,44.95579910278332],[11.074481964111328,44.9638786315918],[11.153441429138297,44.93420028686535],[11.247202873230094,44.952377319335994]]]},"properties":{"ID_0":112,"ISO":"IT-MO","NAME_0":"Italy","ID_1":6,"NAME_1":"Emilia-Romagna","ID_2":26,"NAME_2":"Modena","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Modène|Módena"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.46503734588623,44.93811798095714],[10.505323410034123,44.92335510253906],[10.424197196960392,44.7962379455567],[10.446921348571834,44.72761917114263],[10.414879798889217,44.66490554809582],[10.403206825256348,44.56541442871105],[10.342500686645621,44.52536392211914],[10.333189010620174,44.48632049560541],[10.25566577911377,44.452655792236264],[10.206270217895565,44.3931503295899],[10.14304924011236,44.3548202514649],[10.100266456604118,44.34707641601557],[9.99030685424799,44.40528488159185],[10.007958412170353,44.43268585205089],[9.931945800781307,44.47271728515636],[9.820962905883844,44.46737670898449],[9.733101844787711,44.380332946777344],[9.687728881835938,44.36689758300792],[9.656318664550838,44.41261672973633],[9.560209274292106,44.43909072875988],[9.480068206787223,44.41021728515619],[9.459234237670955,44.4431610107423],[9.49783802032465,44.483684539795036],[9.49437141418457,44.556827545166016],[9.55101680755621,44.588954925537166],[9.625911712646541,44.65721893310541],[9.687694549560604,44.67605590820324],[9.766599655151479,44.68291854858398],[9.767000198364315,44.711288452148494],[9.820563316345329,44.76213836669922],[9.881691932678166,44.769630432128956],[9.883198738098145,44.8046112060548],[9.937941551208496,44.837760925293026],[9.987711906433162,44.84650421142584],[10.0120468139649,44.87701416015631],[9.988435745239315,44.93687820434582],[10.032053947448674,44.984775543213004],[10.046491622924805,45.030185699463004],[10.08450031280529,45.04490661621099],[10.107220649719352,45.02305984497076],[10.158750534057729,45.045005798339844],[10.255112648010368,45.019592285156364],[10.27460575103754,45.00009536743164],[10.366312026977596,44.96704483032238],[10.417797088623047,44.978576660156364],[10.46503734588623,44.93811798095714]]]},"properties":{"ID_0":112,"ISO":"IT-PR","NAME_0":"Italy","ID_1":6,"NAME_1":"Emilia-Romagna","ID_2":27,"NAME_2":"Parma","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Parme"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.08450031280529,45.04490661621099],[10.046491622924805,45.030185699463004],[10.032053947448674,44.984775543213004],[9.988435745239315,44.93687820434582],[10.0120468139649,44.87701416015631],[9.987711906433162,44.84650421142584],[9.937941551208496,44.837760925293026],[9.883198738098145,44.8046112060548],[9.881691932678166,44.769630432128956],[9.820563316345329,44.76213836669922],[9.767000198364315,44.711288452148494],[9.766599655151479,44.68291854858398],[9.687694549560604,44.67605590820324],[9.625911712646541,44.65721893310541],[9.55101680755621,44.588954925537166],[9.49437141418457,44.556827545166016],[9.420500755310059,44.58097839355469],[9.34119033813488,44.579620361328125],[9.301450729370117,44.60872650146495],[9.20401668548584,44.614444732666016],[9.201375007629451,44.68735885620123],[9.29954433441162,44.68197250366211],[9.333622932434025,44.73599243164057],[9.286934852600211,44.76037979125982],[9.355232238769645,44.812812805175895],[9.342714309692326,44.87076187133789],[9.282065391540584,44.896984100341854],[9.34850883483898,44.99835586547851],[9.371857643127385,45.04909515380865],[9.440056800842342,45.094387054443416],[9.50251483917242,45.10450744628906],[9.549711227417106,45.133590698242244],[9.588491439819336,45.10057067871099],[9.713578224182186,45.05970764160156],[9.780000686645565,45.09052658081055],[9.883879661560115,45.07545089721679],[9.892103195190543,45.13183975219738],[9.993762016296387,45.13068771362316],[10.022352218628042,45.0781135559082],[10.08450031280529,45.04490661621099]]]},"properties":{"ID_0":112,"ISO":"IT-PC","NAME_0":"Italy","ID_1":6,"NAME_1":"Emilia-Romagna","ID_2":28,"NAME_2":"Piacenza","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Plaisance"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.270415306091252,44.62950897216808],[12.283194541931096,44.58430480957042],[12.288473129272575,44.46152877807622],[12.357084274292049,44.27069473266596],[12.383472442626953,44.22472763061518],[12.350291252136229,44.191673278808594],[12.281197547912598,44.234130859375114],[12.208239555358944,44.221405029296875],[12.104217529296932,44.272914886474666],[12.036561012268121,44.33174514770508],[11.978022575378475,44.25780487060558],[11.914959907531795,44.20925140380865],[11.889584541320858,44.17160034179682],[11.83035659790039,44.19990921020519],[11.72120666503912,44.15963363647472],[11.716867446899471,44.12350463867199],[11.653569221496582,44.101654052734375],[11.598278045654354,44.12610626220709],[11.611801147461051,44.16093444824219],[11.525937080383244,44.15861892700201],[11.579793930053711,44.233146667480526],[11.640927314758414,44.27468490600597],[11.709525108337402,44.29094314575195],[11.786947250366211,44.3489990234375],[11.83783340454107,44.41497421264654],[11.782316207885742,44.43720245361334],[11.799857139587516,44.46171951293951],[11.779670715331974,44.50445175170904],[11.790178298950307,44.555278778076165],[12.00079345703125,44.600948333740284],[12.029066085815543,44.561408996582145],[12.154755592346191,44.549381256103516],[12.238058090210018,44.62151336669933],[12.270415306091252,44.62950897216808]]]},"properties":{"ID_0":112,"ISO":"IT-RA","NAME_0":"Italy","ID_1":6,"NAME_1":"Emilia-Romagna","ID_2":29,"NAME_2":"Ravenna","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"R vena|Ravenne"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.888903617858944,44.915214538574276],[10.8160018920899,44.8081626892091],[10.80770397186285,44.69759750366211],[10.81629657745367,44.657470703125],[10.782977104186955,44.628707885742244],[10.767736434936637,44.543624877929744],[10.741660118103141,44.5107994079591],[10.671593666076658,44.470123291015625],[10.597932815551701,44.36476516723633],[10.52975082397461,44.35221481323248],[10.471135139465446,44.22700881958002],[10.436733245849664,44.22718429565441],[10.372605323791618,44.27033233642584],[10.297784805297852,44.28692626953131],[10.254872322082463,44.26953506469738],[10.14304924011236,44.3548202514649],[10.206270217895565,44.3931503295899],[10.25566577911377,44.452655792236264],[10.333189010620174,44.48632049560541],[10.342500686645621,44.52536392211914],[10.403206825256348,44.56541442871105],[10.414879798889217,44.66490554809582],[10.446921348571834,44.72761917114263],[10.424197196960392,44.7962379455567],[10.505323410034123,44.92335510253906],[10.574359893798828,44.90999221801769],[10.628893852233887,44.92515182495117],[10.687696456909178,44.98752975463867],[10.73260402679449,44.99233245849604],[10.744734764099064,44.94998168945324],[10.888903617858944,44.915214538574276]]]},"properties":{"ID_0":112,"ISO":"IT-RE","NAME_0":"Italy","ID_1":6,"NAME_1":"Emilia-Romagna","ID_2":30,"NAME_2":"Reggio Nell'Emilia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Reggio d'Émilie"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.752937316894588,43.968193054199276],[12.728857994079647,43.925125122070426],[12.723347663879508,43.86188125610357],[12.682270050048885,43.82901382446289],[12.624151229858512,43.823669433593864],[12.589990615844727,43.88645172119135],[12.565672874450627,43.88159942626959],[12.491944313049316,43.91547012329107],[12.513968467712516,43.94855499267584],[12.467239379882926,43.97867584228521],[12.404889106750488,43.94997406005854],[12.323801994323787,43.961547851562614],[12.370384216308537,43.99071884155273],[12.396251678466795,44.031185150146484],[12.365197181701717,44.047771453857415],[12.454290390014647,44.11318588256836],[12.449031829834098,44.16289520263672],[12.450972557067928,44.16309738159191],[12.451226234436149,44.16319274902355],[12.511528015136662,44.10874938964849],[12.577916145324764,44.07263946533203],[12.635139465332031,44.02236175537115],[12.717082977294922,43.97263717651367],[12.752937316894588,43.968193054199276]]]},"properties":{"ID_0":112,"ISO":"IT-RN","NAME_0":"Italy","ID_1":6,"NAME_1":"Emilia-Romagna","ID_2":31,"NAME_2":"Rimini","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.59959506988531,45.8269500732423],[13.58235168457031,45.779861450195426],[13.54708194732666,45.78652954101573],[13.517359733581543,45.74375152587896],[13.55069541931158,45.729862213134766],[13.432915687561092,45.68152618408203],[13.384029388427846,45.6748619079591],[13.380415916442928,45.72732162475597],[13.441251754760799,45.78657531738281],[13.425126075744743,45.86756134033214],[13.393145561218375,45.91421127319347],[13.46905040740978,45.997226715087834],[13.497014045715332,46.05178451538086],[13.479154586792049,45.992958068847656],[13.546760559082088,45.984031677246094],[13.61573505401617,45.995254516601555],[13.653307914733999,45.98366165161144],[13.593315124511776,45.861774444580185],[13.59959506988531,45.8269500732423]]]},"properties":{"ID_0":112,"ISO":"IT-GO","NAME_0":"Italy","ID_1":7,"NAME_1":"Friuli-Venezia Giulia","ID_2":32,"NAME_2":"Gorizia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Görz"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.98002147674572,45.83493804931646],[12.930473327636776,45.818248748779354],[12.862162590026799,45.85168075561535],[12.782838821411133,45.85485076904297],[12.729864120483342,45.83749389648437],[12.662639617920036,45.793327331543026],[12.60667896270752,45.83913421630865],[12.538078308105469,45.86954879760748],[12.506175041198786,45.9242897033692],[12.42328262329113,45.95705032348638],[12.429174423217829,45.99665832519537],[12.399991989135797,46.042308807373104],[12.428847312927303,46.077209472656364],[12.484372138976992,46.104316711425724],[12.499824523925838,46.13859939575195],[12.431591033935604,46.210323333740234],[12.37332248687744,46.22482299804699],[12.324991226196403,46.25581741333019],[12.330244064331167,46.28425216674816],[12.380064964294547,46.33266067504888],[12.412795066833553,46.33235168457037],[12.4996919631958,46.41307830810558],[12.526877403259332,46.374137878418026],[12.58685493469244,46.36854934692394],[12.637987136840932,46.34025192260748],[12.707619667053166,46.326656341552734],[12.822737693786735,46.35760879516607],[12.876645088195856,46.333370208740284],[12.962189674377498,46.337879180908146],[12.977555274963379,46.268932342529354],[12.966168403625431,46.1957893371582],[12.917863845825195,46.07495498657232],[12.904708862304743,45.965301513671875],[12.916036605834904,45.91617202758789],[12.975585937499943,45.87431716918951],[12.98002147674572,45.83493804931646]]]},"properties":{"ID_0":112,"ISO":"IT-PN","NAME_0":"Italy","ID_1":7,"NAME_1":"Friuli-Venezia Giulia","ID_2":33,"NAME_2":"Pordenone","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.58235168457031,45.779861450195426],[13.59959506988531,45.8269500732423],[13.750750541687125,45.77269363403331],[13.824209213256891,45.728500366210994],[13.891913414001465,45.66888809204107],[13.906091690063477,45.62649154663086],[13.830743789672852,45.579437255859375],[13.750388145446776,45.59228897094721],[13.774305343628042,45.630416870117244],[13.749028205871639,45.68402862548834],[13.63263893127447,45.76708221435558],[13.58235168457031,45.779861450195426]]]},"properties":{"ID_0":112,"ISO":"IT-TS","NAME_0":"Italy","ID_1":7,"NAME_1":"Friuli-Venezia Giulia","ID_2":34,"NAME_2":"Trieste","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Triest"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.497014045715332,46.05178451538086],[13.46905040740978,45.997226715087834],[13.393145561218375,45.91421127319347],[13.425126075744743,45.86756134033214],[13.441251754760799,45.78657531738281],[13.380415916442928,45.72732162475597],[13.334776878356934,45.74097061157232],[13.33458328247076,45.74105453491222],[13.247916221618764,45.75041580200189],[13.22208213806158,45.77041625976568],[13.090695381164664,45.73041534423834],[13.084305763244743,45.65692520141613],[13.045344352722168,45.68520355224615],[13.03001213073736,45.73602294921875],[13.002483367919979,45.7492790222168],[12.98002147674572,45.83493804931646],[12.975585937499943,45.87431716918951],[12.916036605834904,45.91617202758789],[12.904708862304743,45.965301513671875],[12.917863845825195,46.07495498657232],[12.966168403625431,46.1957893371582],[12.977555274963379,46.268932342529354],[12.962189674377498,46.337879180908146],[12.876645088195856,46.333370208740284],[12.822737693786735,46.35760879516607],[12.707619667053166,46.326656341552734],[12.637987136840932,46.34025192260748],[12.58685493469244,46.36854934692394],[12.526877403259332,46.374137878418026],[12.4996919631958,46.41307830810558],[12.5068626403808,46.44184112548834],[12.570953369140682,46.476364135742244],[12.607789039611871,46.46516036987305],[12.655060768127498,46.485263824463004],[12.63158988952648,46.51303863525402],[12.717514991760368,46.546123504638786],[12.74311542510992,46.59664535522472],[12.736565589904899,46.63608932495123],[12.82842826843273,46.63006973266613],[12.851650238037223,46.604820251464844],[12.930847167968807,46.610031127929744],[13.167098045349121,46.589920043945426],[13.240030288696289,46.55683135986334],[13.31116867065441,46.55532073974615],[13.378918647766056,46.578620910644645],[13.424419403076229,46.560111999511776],[13.563643455505371,46.55300140380865],[13.7142591476441,46.523151397705135],[13.712189674377555,46.476039886474666],[13.666820526123104,46.45566940307623],[13.576833724975643,46.44104003906256],[13.544917106628473,46.40072631835932],[13.459418296814079,46.363918304443416],[13.382119178771973,46.29325103759771],[13.440534591674918,46.21394729614258],[13.463019371032772,46.23683547973632],[13.555333137512319,46.196224212646484],[13.65242004394537,46.182666778564446],[13.66039943695074,46.15156173706055],[13.570601463317985,46.08766174316412],[13.497014045715332,46.05178451538086]]]},"properties":{"ID_0":112,"ISO":"IT-UD","NAME_0":"Italy","ID_1":7,"NAME_1":"Friuli-Venezia Giulia","ID_2":35,"NAME_2":"Udine","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Friuli"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.941911697387695,41.68894958496105],[13.989183425903434,41.65481567382824],[14.01187801361084,41.60852432250982],[14.00254726409912,41.57067871093756],[14.02695274353033,41.526752471923935],[13.973794937133789,41.49502563476557],[13.978795051574707,41.46347045898443],[13.863900184631348,41.41093063354498],[13.886704444885366,41.38644790649414],[13.874588012695312,41.33932113647461],[13.763914108276365,41.30234527587902],[13.715989112854116,41.3366317749024],[13.618548393249569,41.32072448730469],[13.549090385437069,41.42057418823242],[13.429195404052848,41.457210540771484],[13.439397811889592,41.42618179321295],[13.404152870178335,41.40333938598644],[13.305167198181152,41.405506134033196],[13.266471862792969,41.45304107666027],[13.299813270568961,41.471759796142635],[13.271853446960561,41.524898529052734],[13.222639083862362,41.53982543945324],[13.175971984863336,41.58456039428722],[13.151240348815975,41.597602844238395],[13.147893905639705,41.66126251220709],[12.996202468872184,41.77869796752941],[13.010738372802848,41.826503753662166],[13.066222190856934,41.8344841003418],[13.102369308471623,41.86144256591797],[13.15539264678955,41.84466934204107],[13.244660377502498,41.89764785766607],[13.297176361084041,41.9495849609375],[13.384902000427244,41.90517807006847],[13.360740661621094,41.870368957519645],[13.408369064331053,41.83843994140631],[13.50530910491949,41.80253601074218],[13.522458076477108,41.77385711669933],[13.572714805603141,41.75527191162115],[13.66303730010992,41.812416076660156],[13.717392921447754,41.79837036132818],[13.750353813171444,41.7615585327149],[13.92059230804449,41.718223571777344],[13.941911697387695,41.68894958496105]]]},"properties":{"ID_0":112,"ISO":"IT-FR","NAME_0":"Italy","ID_1":8,"NAME_1":"Lazio","ID_2":36,"NAME_2":"Frosinone","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.175971984863336,41.58456039428722],[13.222639083862362,41.53982543945324],[13.271853446960561,41.524898529052734],[13.299813270568961,41.471759796142635],[13.266471862792969,41.45304107666027],[13.305167198181152,41.405506134033196],[13.404152870178335,41.40333938598644],[13.439397811889592,41.42618179321295],[13.429195404052848,41.457210540771484],[13.549090385437069,41.42057418823242],[13.618548393249569,41.32072448730469],[13.715989112854116,41.3366317749024],[13.763914108276365,41.30234527587902],[13.874588012695312,41.33932113647461],[13.883223533630485,41.29193496704113],[13.828458786010856,41.27845001220709],[13.819704055786133,41.24679565429693],[13.76291656494152,41.22364807128906],[13.706804275512752,41.253471374511776],[13.621527671814079,41.26069259643566],[13.512084007263297,41.22180557250976],[13.392083168029842,41.27569580078125],[13.292362213134766,41.297637939453125],[13.154305458068961,41.26874923706055],[13.065417289733944,41.22180557250976],[13.039860725402832,41.23069381713873],[12.994304656982479,41.31986236572271],[12.923472404480037,41.379859924316406],[12.83458423614502,41.4154167175293],[12.774305343627873,41.41680526733404],[12.73960399627691,41.4481773376466],[12.72207260131836,41.50613021850597],[12.654739379882926,41.53438949584972],[12.592806816101186,41.5421714782716],[12.542393684387207,41.5973739624024],[12.561195373535213,41.62377166748041],[12.633659362792969,41.67250061035162],[12.653377532958984,41.608459472656364],[12.698407173156738,41.61101913452154],[12.764059066772461,41.58038330078131],[12.855578422546444,41.69264221191406],[12.939552307128906,41.71421813964844],[12.944040298461914,41.67516708374017],[13.026013374328727,41.60064315795898],[13.113750457763786,41.554611206054744],[13.175971984863336,41.58456039428722]]]},"properties":{"ID_0":112,"ISO":"IT-LT","NAME_0":"Italy","ID_1":8,"NAME_1":"Lazio","ID_2":37,"NAME_2":"Latina","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Littoria"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.34434795379633,42.70227813720709],[13.37022399902338,42.650699615478565],[13.409197807311953,42.643829345703125],[13.3949241638183,42.59222793579095],[13.292169570922908,42.57151031494152],[13.192282676696776,42.58848953247076],[13.158268928527832,42.52869033813488],[13.178686141967773,42.51361083984375],[13.154969215393066,42.46330642700195],[13.117080688476676,42.44488525390619],[13.190119743347223,42.401191711425895],[13.154267311096248,42.3579673767091],[13.227374076843375,42.32030868530279],[13.229853630066032,42.28814697265625],[13.292931556701717,42.23339462280285],[13.32084178924572,42.23061752319336],[13.368479728698787,42.181034088134766],[13.306207656860352,42.13922882080084],[13.249697685241813,42.12840270996105],[13.184197425842342,42.15986251831055],[13.087980270385799,42.17885971069347],[13.087077140808105,42.14532089233409],[13.031460762023926,42.11637115478521],[12.979338645935172,42.13138580322271],[12.93111324310297,42.109840393066456],[12.867708206176756,42.10462951660156],[12.85046482086193,42.14429855346685],[12.758045196533145,42.184593200683594],[12.717261314392204,42.15573501586919],[12.657488822937125,42.15202713012695],[12.615788459777775,42.18194961547846],[12.634687423705998,42.24877166748058],[12.520524024963322,42.295742034912166],[12.490048408508414,42.29720687866211],[12.445633888244686,42.39979171752929],[12.46719074249279,42.39586639404291],[12.48898601531988,42.3996467590332],[12.519695281982422,42.36857223510748],[12.666907310485954,42.44194412231445],[12.742503166198787,42.47150802612304],[12.728519439697266,42.51011276245123],[12.7744779586792,42.51406478881836],[12.848755836486928,42.553775787353565],[12.89366340637207,42.564464569091854],[12.897254943847656,42.61740875244146],[13.059503555297965,42.623802185058594],[13.145145416259822,42.64728546142578],[13.17506313323969,42.667072296142635],[13.190705299377553,42.734432220459034],[13.255062103271596,42.722412109375],[13.286802291870229,42.741455078125114],[13.34434795379633,42.70227813720709]]]},"properties":{"ID_0":112,"ISO":"IT-RI","NAME_0":"Italy","ID_1":8,"NAME_1":"Lazio","ID_2":38,"NAME_2":"Rieti","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.031460762023926,42.11637115478521],[13.01940631866455,42.075920104980526],[13.055448532104435,42.01735687255865],[13.14086055755621,42.016334533691406],[13.297176361084041,41.9495849609375],[13.244660377502498,41.89764785766607],[13.15539264678955,41.84466934204107],[13.102369308471623,41.86144256591797],[13.066222190856934,41.8344841003418],[13.010738372802848,41.826503753662166],[12.996202468872184,41.77869796752941],[13.147893905639705,41.66126251220709],[13.151240348815975,41.597602844238395],[13.175971984863336,41.58456039428722],[13.113750457763786,41.554611206054744],[13.026013374328727,41.60064315795898],[12.944040298461914,41.67516708374017],[12.939552307128906,41.71421813964844],[12.855578422546444,41.69264221191406],[12.764059066772461,41.58038330078131],[12.698407173156738,41.61101913452154],[12.653377532958984,41.608459472656364],[12.633659362792969,41.67250061035162],[12.561195373535213,41.62377166748041],[12.542393684387207,41.5973739624024],[12.592806816101186,41.5421714782716],[12.654739379882926,41.53438949584972],[12.72207260131836,41.50613021850597],[12.73960399627691,41.4481773376466],[12.774305343627873,41.41680526733404],[12.667638778686637,41.45708465576172],[12.619584083557186,41.44597244262695],[12.534027099609318,41.55374908447277],[12.439583778381404,41.63958358764654],[12.350972175598201,41.69902801513677],[12.229861259460563,41.752082824707145],[12.212917327880973,41.813472747802734],[12.162362098693848,41.89535903930669],[12.118749618530217,41.92958450317394],[12.050416946411133,41.956527709960994],[12.015417098999023,41.98847198486328],[11.915970802307186,42.03902816772466],[11.834304809570368,42.02930450439453],[11.799583435058594,42.085971832275504],[11.733750343322754,42.15847396850597],[11.828955650329647,42.16788864135742],[11.89489841461176,42.23760986328125],[11.980135917663631,42.2075309753418],[12.00421524047863,42.15888977050787],[12.118740081787108,42.16247558593756],[12.177751541137807,42.1796226501466],[12.27235984802246,42.182903289794865],[12.33048343658453,42.1472434997558],[12.37596797943121,42.18654251098633],[12.398732185363711,42.23279190063482],[12.462992668151855,42.20667648315435],[12.489875793457088,42.27099990844738],[12.520524024963322,42.295742034912166],[12.634687423705998,42.24877166748058],[12.615788459777775,42.18194961547846],[12.657488822937125,42.15202713012695],[12.717261314392204,42.15573501586919],[12.758045196533145,42.184593200683594],[12.85046482086193,42.14429855346685],[12.867708206176756,42.10462951660156],[12.93111324310297,42.109840393066456],[12.979338645935172,42.13138580322271],[13.031460762023926,42.11637115478521]]]},"properties":{"ID_0":112,"ISO":"IT-RM","NAME_0":"Italy","ID_1":8,"NAME_1":"Lazio","ID_2":39,"NAME_2":"Roma","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.895914077758789,42.83564758300792],[11.93225955963146,42.77941513061529],[11.980431556701717,42.7655601501466],[11.92724418640148,42.705718994140675],[11.942287445068303,42.68428039550781],[12.030738830566406,42.65139770507823],[12.161956787109373,42.67788314819336],[12.244282722473145,42.62907028198242],[12.239662170410213,42.572982788085994],[12.317380905151367,42.489356994628906],[12.35216331481945,42.47463226318354],[12.395854949951115,42.500289916992244],[12.41231822967535,42.44698333740229],[12.445633888244686,42.39979171752929],[12.490048408508414,42.29720687866211],[12.520524024963322,42.295742034912166],[12.489875793457088,42.27099990844738],[12.462992668151855,42.20667648315435],[12.398732185363711,42.23279190063482],[12.37596797943121,42.18654251098633],[12.33048343658453,42.1472434997558],[12.27235984802246,42.182903289794865],[12.177751541137807,42.1796226501466],[12.118740081787108,42.16247558593756],[12.00421524047863,42.15888977050787],[11.980135917663631,42.2075309753418],[11.89489841461176,42.23760986328125],[11.828955650329647,42.16788864135742],[11.733750343322754,42.15847396850597],[11.706806182861383,42.21875],[11.636528968811035,42.29264068603527],[11.55041599273693,42.34236145019537],[11.450406074523869,42.37791824340825],[11.457629203796387,42.402694702148544],[11.51753139495861,42.43454742431652],[11.618662834167537,42.43703079223633],[11.617798805236816,42.488494873046925],[11.562199592590332,42.51828002929699],[11.585307121276912,42.543731689453125],[11.73408317565918,42.60704803466797],[11.786494255065918,42.67153549194347],[11.819904327392633,42.7438850402832],[11.746973037719727,42.7867431640625],[11.803961753845272,42.80194854736328],[11.849143981933592,42.83944702148443],[11.895914077758789,42.83564758300792]]]},"properties":{"ID_0":112,"ISO":"IT-VT","NAME_0":"Italy","ID_1":8,"NAME_1":"Lazio","ID_2":40,"NAME_2":"Viterbo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Viterbe"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.20401668548584,44.614444732666016],[9.301450729370117,44.60872650146495],[9.34119033813488,44.579620361328125],[9.420500755310059,44.58097839355469],[9.49437141418457,44.556827545166016],[9.49783802032465,44.483684539795036],[9.459234237670955,44.4431610107423],[9.480068206787223,44.41021728515619],[9.47321605682373,44.38730621337901],[9.519197463989258,44.35614776611334],[9.500312805175838,44.32781219482416],[9.574359893798828,44.27171325683605],[9.511054039001408,44.216804504394474],[9.443193435669059,44.23791503906255],[9.390139579773006,44.2815284729005],[9.23708438873291,44.34486007690441],[9.201249122619684,44.30347061157238],[9.147083282470703,44.322360992431754],[9.154583930969238,44.34791564941412],[9.104027748108024,44.37069320678711],[8.744027137756348,44.42708206176769],[8.635156631469783,44.37985992431652],[8.594957351684627,44.40448379516607],[8.60666942596447,44.43721389770508],[8.666012763977163,44.449718475341854],[8.654947280883789,44.50468826293957],[8.577217102050895,44.51018905639654],[8.66781139373785,44.58341979980469],[8.722051620483454,44.58082580566412],[8.768972396850643,44.52497100830084],[8.922760963439998,44.56806564331055],[8.883743286132756,44.63997268676758],[8.932189941406193,44.67708969116222],[9.013968467712516,44.66781616210943],[9.055937767028922,44.62233734130859],[9.104223251342773,44.61070251464844],[9.15359878540039,44.57517623901373],[9.20401668548584,44.614444732666016]]]},"properties":{"ID_0":112,"ISO":"IT-GE","NAME_0":"Italy","ID_1":9,"NAME_1":"Liguria","ID_2":41,"NAME_2":"Genova","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Genoa"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.01665210723877,44.11167144775402],[8.030710220336914,44.05106735229498],[7.980557918548641,44.01488876342785],[8.017960548400936,43.980323791503906],[8.084732055664176,43.984413146972706],[8.136528015136776,43.93992996215832],[8.075139999389762,43.891803741455135],[7.911806106567326,43.835971832275504],[7.872361183166503,43.835693359375114],[7.712916851043758,43.800693511963004],[7.673749923706055,43.77624893188488],[7.590415954589844,43.79152679443359],[7.529827117919865,43.78401565551763],[7.498899936676025,43.87236785888672],[7.561345577240046,43.89956665039074],[7.57154083251953,43.94533920288085],[7.652744770050163,43.97601318359381],[7.665332794189509,44.029380798339844],[7.713045597076415,44.06309509277344],[7.74709081649786,44.13633728027344],[7.927024841308536,44.111282348632926],[8.01665210723877,44.11167144775402]]]},"properties":{"ID_0":112,"ISO":"IT-IM","NAME_0":"Italy","ID_1":9,"NAME_1":"Liguria","ID_2":42,"NAME_2":"Imperia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Porto Maurizio"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.687728881835938,44.36689758300792],[9.807213783264217,44.283588409423885],[9.855452537536678,44.26901626586914],[9.860014915466365,44.2383766174317],[9.967485427856502,44.17039108276367],[10.003144264221305,44.10861206054699],[10.07027816772461,44.098960876464844],[10.019188880920524,44.04459762573248],[9.963749885559139,44.03708267211914],[9.853471755981559,44.104305267334034],[9.774027824401855,44.07513809204113],[9.66736221313488,44.14236068725586],[9.511054039001408,44.216804504394474],[9.574359893798828,44.27171325683605],[9.500312805175838,44.32781219482416],[9.519197463989258,44.35614776611334],[9.47321605682373,44.38730621337901],[9.480068206787223,44.41021728515619],[9.560209274292106,44.43909072875988],[9.656318664550838,44.41261672973633],[9.687728881835938,44.36689758300792]]]},"properties":{"ID_0":112,"ISO":"IT-SP","NAME_0":"Italy","ID_1":9,"NAME_1":"Liguria","ID_2":43,"NAME_2":"La Spezia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Spezia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.577217102050895,44.51018905639654],[8.654947280883789,44.50468826293957],[8.666012763977163,44.449718475341854],[8.60666942596447,44.43721389770508],[8.594957351684627,44.40448379516607],[8.635156631469783,44.37985992431652],[8.507362365722713,44.327915191650334],[8.45069408416748,44.287918090820426],[8.456806182861328,44.25986099243164],[8.38458347320568,44.18069458007818],[8.274581909179688,44.14291763305664],[8.226529121398983,44.07902908325195],[8.224861145019588,44.04208374023449],[8.168473243713493,44.00069427490246],[8.174304962158146,43.953750610351676],[8.136528015136776,43.93992996215832],[8.084732055664176,43.984413146972706],[8.017960548400936,43.980323791503906],[7.980557918548641,44.01488876342785],[8.030710220336914,44.05106735229498],[8.01665210723877,44.11167144775402],[8.010501861572266,44.15658187866222],[8.068363189697322,44.14566040039057],[8.095253944397086,44.17638015747076],[8.066426277160645,44.217910766601676],[8.091024398803711,44.274890899658146],[8.060803413391227,44.30167770385748],[8.135349273681754,44.333072662353516],[8.15058231353754,44.38576126098633],[8.222897529602108,44.430526733398494],[8.196798324585018,44.46523284912115],[8.25386047363287,44.52972412109381],[8.262635231018123,44.52040863037121],[8.393490791320744,44.478015899658146],[8.404949188232422,44.50994110107433],[8.577217102050895,44.51018905639654]]]},"properties":{"ID_0":112,"ISO":"IT-SV","NAME_0":"Italy","ID_1":9,"NAME_1":"Liguria","ID_2":44,"NAME_2":"Savona","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.170605659484863,46.05796051025402],[10.22912883758545,46.049125671386776],[10.177375793457031,45.97259521484381],[10.122369766235408,45.956951141357536],[10.098067283630428,45.929916381835994],[10.110089302063102,45.88661575317382],[10.150844573974723,45.86400985717779],[10.064864158630428,45.78932189941412],[10.06655311584467,45.69021987915044],[10.045414924621696,45.67586135864258],[9.943333625793514,45.666210174560604],[9.888493537902832,45.603580474853516],[9.851597785949764,45.60408020019531],[9.838628768920955,45.55120468139654],[9.87921142578125,45.47543716430664],[9.890654563903809,45.42824935913097],[9.825176239013672,45.44709777832031],[9.80892562866211,45.42371368408209],[9.709307670593375,45.483207702636776],[9.683140754699764,45.442180633544865],[9.609687805175724,45.476379394531364],[9.548947334289664,45.46242523193365],[9.520238876342773,45.5054092407226],[9.539650917053278,45.58324050903326],[9.496908187866154,45.64058685302746],[9.477631568908748,45.67019653320324],[9.446906089782772,45.761440277099716],[9.500788688659723,45.77345657348644],[9.472271919250602,45.85985565185547],[9.523200035095272,45.87516403198242],[9.537884712219352,45.95811843872064],[9.504640579223576,45.967784881591854],[9.527960777282772,46.01242446899425],[9.578042030334416,46.021125793457145],[9.644518852233887,46.060886383056754],[9.767486572265625,46.06532287597662],[9.833157539367619,46.04757308959955],[9.909127235412711,46.04729843139654],[10.036634445190487,46.08883666992199],[10.170605659484863,46.05796051025402]]]},"properties":{"ID_0":112,"ISO":"IT-BG","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":45,"NAME_2":"Bergamo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Bergame"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.516762733459528,46.34412765502941],[10.566657066345272,46.32723617553711],[10.586728096008414,46.248832702636776],[10.54243183135992,46.18953704833996],[10.566293716430664,46.167972564697266],[10.542615890502987,46.104164123535156],[10.49196624755865,46.067726135253906],[10.458191871643123,46.009452819824276],[10.508734703064079,45.90626144409179],[10.50924015045166,45.82465744018554],[10.564509391784725,45.78503417968744],[10.652065277099666,45.81339263916026],[10.655679702758903,45.833549499511776],[10.841188430786133,45.83367538452154],[10.703042984008789,45.67364883422857],[10.629487991333065,45.60297775268549],[10.643918037414664,45.45545196533203],[10.655651092529297,45.416748046875],[10.63945388793951,45.38657760620123],[10.549138069152946,45.3867645263673],[10.512467384338322,45.413188934326115],[10.45133686065668,45.3840446472168],[10.466891288757436,45.32608413696289],[10.432565689086857,45.31391143798822],[10.31872463226324,45.20564651489269],[10.267377853393612,45.251720428466854],[10.220852851867733,45.225585937500114],[10.101211547851506,45.24871063232422],[10.050561904907227,45.28131484985357],[9.995035171508787,45.29142379760748],[9.899750709533748,45.338973999023494],[9.884368896484375,45.35849380493163],[9.890654563903809,45.42824935913097],[9.87921142578125,45.47543716430664],[9.838628768920955,45.55120468139654],[9.851597785949764,45.60408020019531],[9.888493537902832,45.603580474853516],[9.943333625793514,45.666210174560604],[10.045414924621696,45.67586135864258],[10.06655311584467,45.69021987915044],[10.064864158630428,45.78932189941412],[10.150844573974723,45.86400985717779],[10.110089302063102,45.88661575317382],[10.098067283630428,45.929916381835994],[10.122369766235408,45.956951141357536],[10.177375793457031,45.97259521484381],[10.22912883758545,46.049125671386776],[10.170605659484863,46.05796051025402],[10.16043567657482,46.1604576110841],[10.295706748962516,46.22415161132812],[10.328561782837026,46.287971496582145],[10.372112274170034,46.29409027099621],[10.458012580871525,46.35297393798834],[10.516762733459528,46.34412765502941]]]},"properties":{"ID_0":112,"ISO":"IT-BS","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":46,"NAME_2":"Brescia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.415167808532715,46.13778305053722],[9.358304977416992,46.151268005371094],[9.302966117858944,46.12744522094738],[9.29067325592041,46.06026458740229],[9.263249397277775,46.02728271484374],[9.285646438598746,45.967971801757805],[9.269336700439453,45.92646789550787],[9.333328247070312,45.86553955078124],[9.245244979858455,45.76821136474621],[9.248185157775936,45.743576049804744],[9.196376800537166,45.699272155761776],[9.06811332702648,45.68605041503906],[9.056804656982536,45.64743041992193],[8.929024696350098,45.655544281005916],[8.951952934265137,45.73203659057623],[8.901475906372127,45.78570175170893],[8.914423942565975,45.8353157043457],[8.952935218811092,45.84599685668945],[9.027546882629395,45.822654724121094],[9.073540687561149,45.915828704833984],[9.018035888671818,45.93041610717785],[9.021220207214355,46.05251693725597],[9.078516006469838,46.0659904479981],[9.07348823547369,46.11684799194335],[9.122277259826717,46.13428115844732],[9.246221542358455,46.233497619628906],[9.333164215088004,46.23595046997076],[9.424996376037654,46.18849563598644],[9.415167808532715,46.13778305053722]]]},"properties":{"ID_0":112,"ISO":"IT-CO","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":47,"NAME_2":"Como","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Côme"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.890654563903809,45.42824935913097],[9.884368896484375,45.35849380493163],[9.899750709533748,45.338973999023494],[9.995035171508787,45.29142379760748],[10.050561904907227,45.28131484985357],[10.101211547851506,45.24871063232422],[10.220852851867733,45.225585937500114],[10.267377853393612,45.251720428466854],[10.31872463226324,45.20564651489269],[10.38163280487072,45.13910293579096],[10.438254356384277,45.1365966796875],[10.412774085998535,45.047168731689396],[10.495043754577694,45.074996948242244],[10.540576934814396,45.05607604980469],[10.456721305847225,44.9832878112793],[10.46503734588623,44.93811798095714],[10.417797088623047,44.978576660156364],[10.366312026977596,44.96704483032238],[10.27460575103754,45.00009536743164],[10.255112648010368,45.019592285156364],[10.158750534057729,45.045005798339844],[10.107220649719352,45.02305984497076],[10.08450031280529,45.04490661621099],[10.022352218628042,45.0781135559082],[9.993762016296387,45.13068771362316],[9.892103195190543,45.13183975219738],[9.872906684875545,45.158195495605526],[9.785310745239315,45.16727447509765],[9.709735870361271,45.25806045532232],[9.616806030273438,45.295623779296875],[9.58892440795904,45.35721969604498],[9.510125160217399,45.35002136230469],[9.45545959472662,45.38764190673834],[9.484960556030273,45.44961929321283],[9.520238876342773,45.5054092407226],[9.548947334289664,45.46242523193365],[9.609687805175724,45.476379394531364],[9.683140754699764,45.442180633544865],[9.709307670593375,45.483207702636776],[9.80892562866211,45.42371368408209],[9.825176239013672,45.44709777832031],[9.890654563903809,45.42824935913097]]]},"properties":{"ID_0":112,"ISO":"IT-CR","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":48,"NAME_2":"Cremona","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Crémone"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.527960777282772,46.01242446899425],[9.504640579223576,45.967784881591854],[9.537884712219352,45.95811843872064],[9.523200035095272,45.87516403198242],[9.472271919250602,45.85985565185547],[9.500788688659723,45.77345657348644],[9.446906089782772,45.761440277099716],[9.477631568908748,45.67019653320324],[9.415498733520565,45.677429199218864],[9.315448760986442,45.669677734375],[9.275305747985783,45.74316406250006],[9.248185157775936,45.743576049804744],[9.245244979858455,45.76821136474621],[9.333328247070312,45.86553955078124],[9.269336700439453,45.92646789550787],[9.285646438598746,45.967971801757805],[9.263249397277775,46.02728271484374],[9.29067325592041,46.06026458740229],[9.302966117858944,46.12744522094738],[9.358304977416992,46.151268005371094],[9.415167808532715,46.13778305053722],[9.416068077087346,46.095714569091854],[9.510903358459416,46.0634422302246],[9.527960777282772,46.01242446899425]]]},"properties":{"ID_0":112,"ISO":"IT-LC","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":49,"NAME_2":"Lecco","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.484960556030273,45.44961929321283],[9.45545959472662,45.38764190673834],[9.510125160217399,45.35002136230469],[9.58892440795904,45.35721969604498],[9.616806030273438,45.295623779296875],[9.709735870361271,45.25806045532232],[9.785310745239315,45.16727447509765],[9.872906684875545,45.158195495605526],[9.892103195190543,45.13183975219738],[9.883879661560115,45.07545089721679],[9.780000686645565,45.09052658081055],[9.713578224182186,45.05970764160156],[9.588491439819336,45.10057067871099],[9.549711227417106,45.133590698242244],[9.532625198364371,45.16629409790044],[9.479281425476188,45.162601470947266],[9.371872901916447,45.24604034423828],[9.316280364990234,45.26056671142578],[9.35865592956543,45.29352188110357],[9.339881896972713,45.31391143798822],[9.381632804870549,45.319755554199276],[9.354780197143668,45.36403274536133],[9.408262252807617,45.394886016845646],[9.418585777282715,45.45246505737316],[9.484960556030273,45.44961929321283]]]},"properties":{"ID_0":112,"ISO":"IT-LO","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":50,"NAME_2":"Lodi","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.20648002624506,45.11041641235357],[11.202448844909668,45.06113052368163],[11.332862854003963,44.99316024780285],[11.415790557861385,44.968276977539176],[11.427749633789176,44.95100784301769],[11.327499389648438,44.963172912597656],[11.247202873230094,44.952377319335994],[11.153441429138297,44.93420028686535],[11.074481964111328,44.9638786315918],[10.999081611633414,44.95579910278332],[10.9423828125,44.922859191894645],[10.888903617858944,44.915214538574276],[10.744734764099064,44.94998168945324],[10.73260402679449,44.99233245849604],[10.687696456909178,44.98752975463867],[10.628893852233887,44.92515182495117],[10.574359893798828,44.90999221801769],[10.505323410034123,44.92335510253906],[10.46503734588623,44.93811798095714],[10.456721305847225,44.9832878112793],[10.540576934814396,45.05607604980469],[10.495043754577694,45.074996948242244],[10.412774085998535,45.047168731689396],[10.438254356384277,45.1365966796875],[10.38163280487072,45.13910293579096],[10.31872463226324,45.20564651489269],[10.432565689086857,45.31391143798822],[10.466891288757436,45.32608413696289],[10.45133686065668,45.3840446472168],[10.512467384338322,45.413188934326115],[10.549138069152946,45.3867645263673],[10.63945388793951,45.38657760620123],[10.655651092529297,45.416748046875],[10.698764801025447,45.38101196289074],[10.738435745239315,45.28816986083979],[10.78383541107172,45.316345214843864],[10.847625732421875,45.25749969482422],[10.935187339782772,45.234039306640625],[10.991399765014705,45.19702911376953],[10.99902439117426,45.15954971313476],[11.073940277099664,45.099674224853516],[11.139745712280273,45.12478256225597],[11.20648002624506,45.11041641235357]]]},"properties":{"ID_0":112,"ISO":"IT-MN","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":51,"NAME_2":"Mantua","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Mantoue|Mantova"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.05399036407482,45.62412261962896],[9.11045932769781,45.62181091308594],[9.104401588440055,45.58927536010742],[9.171884536743221,45.59267425537115],[9.278618812561035,45.54573440551769],[9.325274467468319,45.5399742126466],[9.483350753784293,45.60676956176769],[9.496908187866154,45.64058685302746],[9.539650917053278,45.58324050903326],[9.520238876342773,45.5054092407226],[9.484960556030273,45.44961929321283],[9.418585777282715,45.45246505737316],[9.408262252807617,45.394886016845646],[9.354780197143668,45.36403274536133],[9.381632804870549,45.319755554199276],[9.339881896972713,45.31391143798822],[9.285695075988883,45.33269119262707],[9.141336441040039,45.310844421386825],[9.037481307983398,45.304130554199325],[8.98399925231945,45.26593399047863],[8.94493961334234,45.31455612182628],[8.86713981628418,45.34406280517578],[8.843961715698299,45.39477920532232],[8.790418624878043,45.462921142578125],[8.788558959961051,45.48717117309582],[8.728962898254508,45.50334167480469],[8.70795059204113,45.55924987792969],[8.807461738586483,45.60260772705084],[8.868893623352106,45.59294891357433],[8.923487663268986,45.61261749267578],[8.940937995910645,45.643581390380966],[9.00428581237793,45.57892990112316],[9.060870170593262,45.582736968994254],[9.05399036407482,45.62412261962896]]]},"properties":{"ID_0":112,"ISO":"IT-MI","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":52,"NAME_2":"Milano","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Milan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.477631568908748,45.67019653320324],[9.496908187866154,45.64058685302746],[9.483350753784293,45.60676956176769],[9.325274467468319,45.5399742126466],[9.278618812561035,45.54573440551769],[9.171884536743221,45.59267425537115],[9.104401588440055,45.58927536010742],[9.11045932769781,45.62181091308594],[9.05399036407482,45.62412261962896],[9.056804656982536,45.64743041992193],[9.06811332702648,45.68605041503906],[9.196376800537166,45.699272155761776],[9.248185157775936,45.743576049804744],[9.275305747985783,45.74316406250006],[9.315448760986442,45.669677734375],[9.415498733520565,45.677429199218864],[9.477631568908748,45.67019653320324]]]},"properties":{"ID_0":112,"ISO":"IT-MB","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":53,"NAME_2":"Monza and Brianza","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Monza e Brianza"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.339881896972713,45.31391143798822],[9.35865592956543,45.29352188110357],[9.316280364990234,45.26056671142578],[9.371872901916447,45.24604034423828],[9.479281425476188,45.162601470947266],[9.532625198364371,45.16629409790044],[9.549711227417106,45.133590698242244],[9.50251483917242,45.10450744628906],[9.440056800842342,45.094387054443416],[9.371857643127385,45.04909515380865],[9.34850883483898,44.99835586547851],[9.282065391540584,44.896984100341854],[9.342714309692326,44.87076187133789],[9.355232238769645,44.812812805175895],[9.286934852600211,44.76037979125982],[9.333622932434025,44.73599243164057],[9.29954433441162,44.68197250366211],[9.201375007629451,44.68735885620123],[9.214599609375057,44.75329971313476],[9.172779083252067,44.77263641357422],[9.161587715148869,44.814605712890625],[9.110047340393066,44.80639266967779],[9.053967475891227,44.84553146362316],[9.07109355926525,44.866210937500114],[8.970659255981502,44.94446182250982],[8.979178428649957,44.96815109252941],[8.90233135223383,45.0087127685548],[8.882117271423397,45.05502700805664],[8.824952125549373,45.047538757324276],[8.76973819732666,45.00764465332031],[8.706059455871696,45.03800201416021],[8.652941703796444,45.02432632446288],[8.647051811218317,45.07628250122076],[8.581064224243278,45.15365219116211],[8.548851966857853,45.16910171508789],[8.564097404480094,45.19721221923828],[8.526740074157715,45.22023773193371],[8.54379653930664,45.25345993041997],[8.51461410522461,45.31422424316412],[8.528075218200684,45.34459686279308],[8.612848281860408,45.355373382568466],[8.717187881469783,45.30382537841797],[8.727606773376522,45.33383178710943],[8.79444789886486,45.379894256591854],[8.843961715698299,45.39477920532232],[8.86713981628418,45.34406280517578],[8.94493961334234,45.31455612182628],[8.98399925231945,45.26593399047863],[9.037481307983398,45.304130554199325],[9.141336441040039,45.310844421386825],[9.285695075988883,45.33269119262707],[9.339881896972713,45.31391143798822]]]},"properties":{"ID_0":112,"ISO":"IT-PV","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":54,"NAME_2":"Pavia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Pavie"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.456283569335994,46.53629302978527],[10.47714424133312,46.49645233154308],[10.553021430969238,46.492351531982536],[10.623162269592342,46.449001312255916],[10.631519317627067,46.40345764160156],[10.516762733459528,46.34412765502941],[10.458012580871525,46.35297393798834],[10.372112274170034,46.29409027099621],[10.328561782837026,46.287971496582145],[10.295706748962516,46.22415161132812],[10.16043567657482,46.1604576110841],[10.170605659484863,46.05796051025402],[10.036634445190487,46.08883666992199],[9.909127235412711,46.04729843139654],[9.833157539367619,46.04757308959955],[9.767486572265625,46.06532287597662],[9.644518852233887,46.060886383056754],[9.578042030334416,46.021125793457145],[9.527960777282772,46.01242446899425],[9.510903358459416,46.0634422302246],[9.416068077087346,46.095714569091854],[9.415167808532715,46.13778305053722],[9.424996376037654,46.18849563598644],[9.333164215088004,46.23595046997076],[9.246221542358455,46.233497619628906],[9.297103881835938,46.3158073425293],[9.278252601623535,46.419387817382926],[9.285234451294002,46.50425338745117],[9.372874259948674,46.50260543823248],[9.389505386352539,46.475299835205135],[9.464389801025504,46.514347076416016],[9.454051971435604,46.430324554443466],[9.470473289489746,46.37879943847656],[9.497580528259276,46.3709449768067],[9.548737525939941,46.31050872802729],[9.639209747314453,46.29418563842785],[9.71422195434576,46.300708770751946],[9.726011276245117,46.346763610839844],[9.769534111023006,46.34130859375006],[9.944955825805721,46.38190841674816],[9.990939140319881,46.346134185791016],[9.995897293090877,46.289775848388786],[10.05436992645258,46.27097320556652],[10.047634124755916,46.233329772949276],[10.122827529907227,46.229335784912216],[10.173440933227596,46.25893783569336],[10.152585029602164,46.29808425903326],[10.103281021118221,46.33861923217785],[10.165192604064941,46.41372680664062],[10.131381034851186,46.434715270996094],[10.080606460571401,46.42590332031244],[10.038875579834041,46.446144104003906],[10.057415008545036,46.54870986938482],[10.124827384948787,46.61022949218755],[10.183464050292967,46.62883758544916],[10.295535087585506,46.55641555786144],[10.417557716369686,46.55474472045893],[10.456283569335994,46.53629302978527]]]},"properties":{"ID_0":112,"ISO":"IT-SO","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":55,"NAME_2":"Sondrio","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.914423942565975,45.8353157043457],[8.901475906372127,45.78570175170893],[8.951952934265137,45.73203659057623],[8.929024696350098,45.655544281005916],[9.056804656982536,45.64743041992193],[9.05399036407482,45.62412261962896],[9.060870170593262,45.582736968994254],[9.00428581237793,45.57892990112316],[8.940937995910645,45.643581390380966],[8.923487663268986,45.61261749267578],[8.868893623352106,45.59294891357433],[8.807461738586483,45.60260772705084],[8.70795059204113,45.55924987792969],[8.689627647399902,45.640808105468864],[8.647036552429256,45.722694396972656],[8.603220939636342,45.72723770141607],[8.5567445755006,45.77592468261719],[8.59487628936779,45.82917785644537],[8.572706222534237,45.902267456054744],[8.720401763916016,46.01206970214843],[8.71775436401367,46.10283660888672],[8.782246589660645,46.09792327880865],[8.851561546325684,46.07574844360362],[8.79148006439209,46.00955581665045],[8.91615104675293,45.915676116943416],[8.93204402923584,45.874095916748104],[8.914423942565975,45.8353157043457]]]},"properties":{"ID_0":112,"ISO":"IT-VA","NAME_0":"Italy","ID_1":10,"NAME_1":"Lombardia","ID_2":56,"NAME_2":"Varese","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.64180564880371,43.47495651245117],[13.659283638000602,43.43504714965832],[13.583461761474664,43.44390106201183],[13.48177909851074,43.43737411499018],[13.448624610900822,43.446140289306584],[13.336799621582143,43.39242553710949],[13.245303153991813,43.460334777832145],[13.211681365966797,43.4179916381837],[13.154923439025879,43.41478347778326],[13.092759132385252,43.436832427978516],[13.041452407836914,43.3370132446289],[12.953218460083063,43.27858734130854],[12.882971763610897,43.26799774169927],[12.897437095642147,43.232913970947266],[12.863289833068848,43.21219635009777],[12.747756004333553,43.391410827636776],[12.775376319885254,43.40292358398449],[12.76838684082037,43.46080398559582],[12.80681991577154,43.50500869750982],[12.889343261718864,43.54418945312505],[12.919795036315918,43.58501052856445],[12.962139129638615,43.598751068115234],[12.987152099609432,43.65633010864252],[13.070704460144043,43.693984985351676],[13.080500602722225,43.72798156738281],[13.172261238098201,43.75041580200195],[13.271805763244743,43.686527252197266],[13.42013931274414,43.6209716796875],[13.48097229003912,43.607360839843864],[13.509028434753475,43.62985992431652],[13.571249961853027,43.57180404663097],[13.62875080108654,43.54819488525396],[13.64180564880371,43.47495651245117]]]},"properties":{"ID_0":112,"ISO":"IT-AN","NAME_0":"Italy","ID_1":11,"NAME_1":"Marche","ID_2":57,"NAME_2":"Ancona","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Ancône"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.849305152893123,43.06744766235357],[13.889306068420465,42.9426383972168],[13.915415763854924,42.89561080932623],[13.723403930664176,42.85631179809576],[13.700037956237907,42.82348251342779],[13.530022621154899,42.796306610107365],[13.48971557617193,42.73463439941406],[13.453024864196777,42.73487472534191],[13.389723777771051,42.68826675415045],[13.34434795379633,42.70227813720709],[13.286802291870229,42.741455078125114],[13.255062103271596,42.722412109375],[13.190705299377553,42.734432220459034],[13.264913558959961,42.80922317504894],[13.236183166503906,42.86865615844726],[13.24267959594738,42.89296340942394],[13.294466972351131,42.92638778686518],[13.380943298339844,42.906513214111435],[13.41043376922613,42.92572402954107],[13.39342308044445,42.967830657958984],[13.426164627075195,42.97827148437506],[13.556686401367244,42.98924255371088],[13.63205242156988,43.0338020324707],[13.786082267761174,43.08073043823242],[13.849305152893123,43.06744766235357]]]},"properties":{"ID_0":112,"ISO":"IT-AP","NAME_0":"Italy","ID_1":11,"NAME_1":"Marche","ID_2":58,"NAME_2":"Ascoli Piceno","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.849305152893123,43.06744766235357],[13.786082267761174,43.08073043823242],[13.63205242156988,43.0338020324707],[13.556686401367244,42.98924255371088],[13.426164627075195,42.97827148437506],[13.39342308044445,42.967830657958984],[13.41043376922613,42.92572402954107],[13.380943298339844,42.906513214111435],[13.294466972351131,42.92638778686518],[13.24267959594738,42.89296340942394],[13.217048645019474,42.95207977294922],[13.269625663757324,42.97507095336914],[13.332724571228084,43.02426528930663],[13.392710685730037,43.01259613037115],[13.46064090728754,43.02137756347662],[13.465836524963379,43.081264495849545],[13.431359291076717,43.11241149902355],[13.463030815124512,43.164592742920036],[13.519215583801326,43.17478179931652],[13.522028923034725,43.21015930175781],[13.593870162963979,43.21015930175781],[13.601899147033746,43.26873779296881],[13.743194580078182,43.29486083984375],[13.844861030578727,43.09847259521496],[13.849305152893123,43.06744766235357]]]},"properties":{"ID_0":112,"ISO":"IT-FM","NAME_0":"Italy","ID_1":11,"NAME_1":"Marche","ID_2":59,"NAME_2":"Fermo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.64180564880371,43.47495651245117],[13.718193054199276,43.32347106933594],[13.743194580078182,43.29486083984375],[13.601899147033746,43.26873779296881],[13.593870162963979,43.21015930175781],[13.522028923034725,43.21015930175781],[13.519215583801326,43.17478179931652],[13.463030815124512,43.164592742920036],[13.431359291076717,43.11241149902355],[13.465836524963379,43.081264495849545],[13.46064090728754,43.02137756347662],[13.392710685730037,43.01259613037115],[13.332724571228084,43.02426528930663],[13.269625663757324,42.97507095336914],[13.217048645019474,42.95207977294922],[13.24267959594738,42.89296340942394],[13.236183166503906,42.86865615844726],[13.212748527526797,42.84248733520508],[13.16178703308111,42.83286666870123],[13.113157272338924,42.890296936035156],[13.055210113525332,42.921066284179744],[12.977093696594238,42.87076950073248],[12.977705001831055,42.9266471862793],[12.896760940551813,42.96554946899414],[12.907649040222225,43.0363502502442],[12.898262977600154,43.0944442749024],[12.863427162170524,43.166923522949276],[12.863289833068848,43.21219635009777],[12.897437095642147,43.232913970947266],[12.882971763610897,43.26799774169927],[12.953218460083063,43.27858734130854],[13.041452407836914,43.3370132446289],[13.092759132385252,43.436832427978516],[13.154923439025879,43.41478347778326],[13.211681365966797,43.4179916381837],[13.245303153991813,43.460334777832145],[13.336799621582143,43.39242553710949],[13.448624610900822,43.446140289306584],[13.48177909851074,43.43737411499018],[13.583461761474664,43.44390106201183],[13.659283638000602,43.43504714965832],[13.64180564880371,43.47495651245117]]]},"properties":{"ID_0":112,"ISO":"IT-MC","NAME_0":"Italy","ID_1":11,"NAME_1":"Marche","ID_2":60,"NAME_2":"Macerata","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.172261238098201,43.75041580200195],[13.080500602722225,43.72798156738281],[13.070704460144043,43.693984985351676],[12.987152099609432,43.65633010864252],[12.962139129638615,43.598751068115234],[12.919795036315918,43.58501052856445],[12.889343261718864,43.54418945312505],[12.80681991577154,43.50500869750982],[12.76838684082037,43.46080398559582],[12.735560417175293,43.46530151367199],[12.7098007202149,43.4256324768067],[12.664120674133358,43.43777847290038],[12.626708030700627,43.42198181152355],[12.565206527710018,43.46075439453125],[12.500763893127496,43.52241516113287],[12.399991989135797,43.514171600341854],[12.345905303955078,43.554576873779354],[12.374444961547793,43.58523941040039],[12.357744216919002,43.618232727050895],[12.295330047607363,43.59431457519531],[12.215166091918887,43.61136245727539],[12.1864595413208,43.642723083496094],[12.369356155395508,43.71590423583995],[12.284744262695256,43.765865325927734],[12.242305755615178,43.7544898986817],[12.165003776550407,43.76321029663085],[12.108415603637695,43.75472640991222],[12.103829383850098,43.78923416137706],[12.169010162353628,43.89849472045904],[12.295721054077262,43.929141998291016],[12.323801994323787,43.961547851562614],[12.404889106750488,43.94997406005854],[12.408572196960563,43.90402603149419],[12.410450935363826,43.89839553833008],[12.491944313049316,43.91547012329107],[12.565672874450627,43.88159942626959],[12.589990615844727,43.88645172119135],[12.624151229858512,43.823669433593864],[12.682270050048885,43.82901382446289],[12.723347663879508,43.86188125610357],[12.728857994079647,43.925125122070426],[12.752937316894588,43.968193054199276],[12.802083015442006,43.96374893188488],[12.895693778991813,43.921527862548885],[13.07319545745861,43.81819534301763],[13.172261238098201,43.75041580200195]]]},"properties":{"ID_0":112,"ISO":"IT-PU","NAME_0":"Italy","ID_1":11,"NAME_1":"Marche","ID_2":61,"NAME_2":"Pesaro E Urbino","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Pesaro-et-Urbino|Pesaro-Urbino|Pésaro y Urbino"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[15.137508392333986,41.92625045776373],[15.139669418334961,41.880249023437614],[15.10453414916992,41.84770965576172],[15.115994453430174,41.79053115844738],[15.09823226928711,41.76690673828131],[15.122014045715444,41.721210479736385],[15.101681709289549,41.67280960083013],[15.049173355102539,41.65649414062506],[15.023566246032772,41.622829437255916],[14.960845947265682,41.64701080322276],[14.941324234008903,41.52459335327154],[15.008489608764705,41.48736572265636],[14.856516838073729,41.42568206787115],[14.791049957275504,41.453540802001896],[14.765568733215275,41.418354034423885],[14.718147277831974,41.401817321777344],[14.67231273651123,41.40762329101574],[14.603911399841309,41.364948272705135],[14.50485992431652,41.38511276245117],[14.456177711486875,41.42882156372076],[14.38335990905756,41.44424819946288],[14.390828132629393,41.50604248046886],[14.49429607391352,41.5733528137207],[14.510596275329531,41.6099205017091],[14.425004005432072,41.64487075805663],[14.434535980224664,41.67256164550792],[14.521643638610952,41.69989013671874],[14.486200332641715,41.76062393188471],[14.57149696350109,41.82213592529291],[14.615122795105039,41.89016342163085],[14.664641380310115,41.91726684570324],[14.669513702392635,41.94760513305664],[14.72803688049322,42.00422286987305],[14.766695022583008,42.01905822753912],[14.779659271240178,42.07013702392578],[14.897639274597283,42.021804809570426],[14.999582290649414,42.005416870117294],[15.07013988494873,41.94680404663086],[15.137508392333986,41.92625045776373]]]},"properties":{"ID_0":112,"ISO":"IT-CB","NAME_0":"Italy","ID_1":12,"NAME_1":"Molise","ID_2":62,"NAME_2":"Campobasso","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.486200332641715,41.76062393188471],[14.521643638610952,41.69989013671874],[14.434535980224664,41.67256164550792],[14.425004005432072,41.64487075805663],[14.510596275329531,41.6099205017091],[14.49429607391352,41.5733528137207],[14.390828132629393,41.50604248046886],[14.38335990905756,41.44424819946288],[14.328041076660272,41.454425811767635],[14.242506980896053,41.49765014648449],[14.168185234069824,41.49540710449213],[14.126154899597282,41.50835418701183],[14.079253196716365,41.44807052612305],[14.108372688293514,41.41742324829107],[14.043269157409668,41.3937721252442],[14.006661415100154,41.45382690429682],[13.978795051574707,41.46347045898443],[13.973794937133789,41.49502563476557],[14.02695274353033,41.526752471923935],[14.00254726409912,41.57067871093756],[14.01187801361084,41.60852432250982],[13.989183425903434,41.65481567382824],[13.941911697387695,41.68894958496105],[14.02006912231451,41.68334960937506],[14.070467948913517,41.738212585449155],[14.194854736328182,41.74899673461914],[14.148043632507381,41.828277587890625],[14.217757225036678,41.854736328125114],[14.230606079101674,41.87806320190441],[14.285653114318904,41.909770965576115],[14.377553939819391,41.88090896606451],[14.446577072143612,41.83879470825207],[14.486200332641715,41.76062393188471]]]},"properties":{"ID_0":112,"ISO":"IT-IS","NAME_0":"Italy","ID_1":12,"NAME_1":"Molise","ID_2":63,"NAME_2":"Isernia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.548851966857853,45.16910171508789],[8.581064224243278,45.15365219116211],[8.647051811218317,45.07628250122076],[8.652941703796444,45.02432632446288],[8.706059455871696,45.03800201416021],[8.76973819732666,45.00764465332031],[8.824952125549373,45.047538757324276],[8.882117271423397,45.05502700805664],[8.90233135223383,45.0087127685548],[8.979178428649957,44.96815109252941],[8.970659255981502,44.94446182250982],[9.07109355926525,44.866210937500114],[9.053967475891227,44.84553146362316],[9.110047340393066,44.80639266967779],[9.161587715148869,44.814605712890625],[9.172779083252067,44.77263641357422],[9.214599609375057,44.75329971313476],[9.201375007629451,44.68735885620123],[9.20401668548584,44.614444732666016],[9.15359878540039,44.57517623901373],[9.104223251342773,44.61070251464844],[9.055937767028922,44.62233734130859],[9.013968467712516,44.66781616210943],[8.932189941406193,44.67708969116222],[8.883743286132756,44.63997268676758],[8.922760963439998,44.56806564331055],[8.768972396850643,44.52497100830084],[8.722051620483454,44.58082580566412],[8.66781139373785,44.58341979980469],[8.577217102050895,44.51018905639654],[8.404949188232422,44.50994110107433],[8.393490791320744,44.478015899658146],[8.262635231018123,44.52040863037121],[8.303419113159237,44.56539154052739],[8.31509017944336,44.60398483276373],[8.353363037109375,44.63439559936534],[8.35657978057867,44.67737579345714],[8.421611785888729,44.69326782226556],[8.422490119934025,44.73291015625011],[8.481679916381836,44.75309371948242],[8.50308799743658,44.786708831787166],[8.377260208129883,44.84775924682623],[8.379040718078613,44.98574066162115],[8.352675437927358,44.99885559082031],[8.303598403930664,45.07805252075206],[8.24239826202404,45.06449890136718],[8.160034179687557,45.0284423828125],[8.111106872558594,45.09538269042969],[8.130048751831112,45.12395858764654],[8.15292835235607,45.169494628906364],[8.2164945602417,45.16495132446295],[8.270721435546818,45.18204116821289],[8.343761444091854,45.17292404174805],[8.363632202148438,45.19849395751964],[8.496970176696777,45.19933319091797],[8.548851966857853,45.16910171508789]]]},"properties":{"ID_0":112,"ISO":"IT-AL","NAME_0":"Italy","ID_1":13,"NAME_1":"Piemonte","ID_2":64,"NAME_2":"Alessandria","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Alejandr¡a|Alexandrie"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.262635231018123,44.52040863037121],[8.25386047363287,44.52972412109381],[8.245236396789663,44.576477050781364],[8.195536613464412,44.629535675048885],[8.258587837219352,44.72220611572276],[8.134265899658146,44.747638702392635],[8.131644248962516,44.811092376708984],[8.094799995422306,44.822502136230526],[8.04643630981451,44.80028152465825],[7.94442796707159,44.8473014831543],[7.893815040588492,44.9158706665039],[7.903257846832275,44.96678924560547],[7.929592132568303,44.98402404785161],[7.929587841033879,45.10568237304687],[7.990342140197867,45.12976074218756],[8.130048751831112,45.12395858764654],[8.111106872558594,45.09538269042969],[8.160034179687557,45.0284423828125],[8.24239826202404,45.06449890136718],[8.303598403930664,45.07805252075206],[8.352675437927358,44.99885559082031],[8.379040718078613,44.98574066162115],[8.377260208129883,44.84775924682623],[8.50308799743658,44.786708831787166],[8.481679916381836,44.75309371948242],[8.422490119934025,44.73291015625011],[8.421611785888729,44.69326782226556],[8.35657978057867,44.67737579345714],[8.353363037109375,44.63439559936534],[8.31509017944336,44.60398483276373],[8.303419113159237,44.56539154052739],[8.262635231018123,44.52040863037121]]]},"properties":{"ID_0":112,"ISO":"IT-AT","NAME_0":"Italy","ID_1":13,"NAME_1":"Piemonte","ID_2":65,"NAME_2":"Asti","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.028106689453068,45.40404510498052],[8.039485931396484,45.442375183105526],[7.969817161560115,45.475566864013615],[7.886312007904053,45.531311035156364],[7.896866798400992,45.59097671508789],[7.940472126007137,45.644195556640675],[7.906301021575928,45.682907104492244],[7.937713146209775,45.725288391113395],[8.00231742858881,45.7206916809082],[8.129622459411621,45.758598327636776],[8.328104019165094,45.64841461181652],[8.25623893737793,45.60961914062499],[8.29753303527832,45.554546356201165],[8.264112472534237,45.50222396850597],[8.18658638000494,45.45048141479498],[8.123910903930607,45.377033233642635],[8.028106689453068,45.40404510498052]]]},"properties":{"ID_0":112,"ISO":"IT-BI","NAME_0":"Italy","ID_1":13,"NAME_1":"Piemonte","ID_2":66,"NAME_2":"Biella","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Verceil"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.25386047363287,44.52972412109381],[8.196798324585018,44.46523284912115],[8.222897529602108,44.430526733398494],[8.15058231353754,44.38576126098633],[8.135349273681754,44.333072662353516],[8.060803413391227,44.30167770385748],[8.091024398803711,44.274890899658146],[8.066426277160645,44.217910766601676],[8.095253944397086,44.17638015747076],[8.068363189697322,44.14566040039057],[8.010501861572266,44.15658187866222],[8.01665210723877,44.11167144775402],[7.927024841308536,44.111282348632926],[7.74709081649786,44.13633728027344],[7.713045597076415,44.06309509277344],[7.714300155639592,44.087760925293026],[7.669038772583008,44.12797927856457],[7.68419981002802,44.17726135253912],[7.614704132080022,44.15456008911132],[7.506918907165584,44.14566040039057],[7.462122440338248,44.12738800048828],[7.360407829284781,44.11706161499029],[7.345231056213435,44.14596176147461],[7.264095783233642,44.1476669311524],[7.195740222930965,44.19765090942383],[7.141895771026839,44.20177078247076],[7.076442718505803,44.23175811767584],[7.01095008850109,44.243850708007926],[6.93236780166626,44.35435104370123],[6.899970054626521,44.36603927612316],[6.907470226287842,44.419750213623104],[6.953364849090575,44.42924880981445],[6.88905906677246,44.485641479492244],[6.86726903915411,44.53113174438482],[6.941470146179256,44.57603073120128],[6.953463077545279,44.65362548828125],[6.999599933624324,44.68677139282232],[7.059867858886946,44.68048095703119],[7.064454555511588,44.71187210083008],[7.121822834014893,44.72701263427746],[7.160105228424072,44.76142883300787],[7.342479228973388,44.783908843994254],[7.351942062377929,44.75266265869146],[7.41694784164423,44.76700210571289],[7.47087287902832,44.75688552856445],[7.530239105224608,44.78366088867199],[7.594590187072697,44.83509826660162],[7.654384136200007,44.83241271972662],[7.685849189758414,44.811195373535156],[7.765787124633845,44.823566436767635],[7.782400131225529,44.84408187866211],[7.903704166412467,44.822498321533196],[7.94442796707159,44.8473014831543],[8.04643630981451,44.80028152465825],[8.094799995422306,44.822502136230526],[8.131644248962516,44.811092376708984],[8.134265899658146,44.747638702392635],[8.258587837219352,44.72220611572276],[8.195536613464412,44.629535675048885],[8.245236396789663,44.576477050781364],[8.25386047363287,44.52972412109381]]]},"properties":{"ID_0":112,"ISO":"IT-CN","NAME_0":"Italy","ID_1":13,"NAME_1":"Piemonte","ID_2":67,"NAME_2":"Cuneo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Coni"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.59487628936779,45.82917785644537],[8.5567445755006,45.77592468261719],[8.603220939636342,45.72723770141607],[8.647036552429256,45.722694396972656],[8.689627647399902,45.640808105468864],[8.70795059204113,45.55924987792969],[8.728962898254508,45.50334167480469],[8.788558959961051,45.48717117309582],[8.790418624878043,45.462921142578125],[8.843961715698299,45.39477920532232],[8.79444789886486,45.379894256591854],[8.727606773376522,45.33383178710943],[8.717187881469783,45.30382537841797],[8.612848281860408,45.355373382568466],[8.528075218200684,45.34459686279308],[8.51461410522461,45.31422424316412],[8.49721622467041,45.375122070312614],[8.456524848938043,45.383415222168026],[8.407156944274957,45.42015457153326],[8.404294967651424,45.532112121581974],[8.391122817993105,45.619712829589844],[8.338385581970327,45.66483688354492],[8.379043579101676,45.73951339721691],[8.350947380065918,45.773311614990234],[8.460083007812614,45.87438964843756],[8.501043319702262,45.834957122802734],[8.59487628936779,45.82917785644537]]]},"properties":{"ID_0":112,"ISO":"IT-NO","NAME_0":"Italy","ID_1":13,"NAME_1":"Piemonte","ID_2":68,"NAME_2":"Novara","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Novare"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.896866798400992,45.59097671508789],[7.886312007904053,45.531311035156364],[7.969817161560115,45.475566864013615],[8.039485931396484,45.442375183105526],[8.028106689453068,45.40404510498052],[8.025371551513672,45.364009857177734],[7.964480876922663,45.33140563964855],[7.991099834442082,45.30840301513671],[7.991939067840632,45.23012924194336],[8.046234130859318,45.200660705566406],[8.15292835235607,45.169494628906364],[8.130048751831112,45.12395858764654],[7.990342140197867,45.12976074218756],[7.929587841033879,45.10568237304687],[7.929592132568303,44.98402404785161],[7.903257846832275,44.96678924560547],[7.893815040588492,44.9158706665039],[7.94442796707159,44.8473014831543],[7.903704166412467,44.822498321533196],[7.782400131225529,44.84408187866211],[7.765787124633845,44.823566436767635],[7.685849189758414,44.811195373535156],[7.654384136200007,44.83241271972662],[7.594590187072697,44.83509826660162],[7.530239105224608,44.78366088867199],[7.47087287902832,44.75688552856445],[7.41694784164423,44.76700210571289],[7.351942062377929,44.75266265869146],[7.342479228973388,44.783908843994254],[7.160105228424072,44.76142883300787],[7.121822834014893,44.72701263427746],[7.064454555511588,44.71187210083008],[7.024250984191894,44.74722671508795],[7.022010803222656,44.82304763793957],[6.948660850524959,44.8636207580567],[6.912002563476562,44.84551239013672],[6.825379848480281,44.872310638427734],[6.762279987335204,44.913608551025504],[6.762772083282528,44.97071075439459],[6.739580154418945,45.02360916137701],[6.686503410339469,45.020915985107415],[6.630878925323543,45.10890197753906],[6.690576076507682,45.13850021362316],[6.772772789001521,45.15430450439453],[6.854263782501221,45.1286239624024],[6.900860786437988,45.164310455322266],[6.953864097595329,45.175800323486385],[6.97625112533575,45.208278656005916],[7.135106086731014,45.2545623779298],[7.113151073455867,45.32199096679687],[7.185120105743522,45.403694152832145],[7.121641159057731,45.43748092651367],[7.101458072662467,45.46526718139643],[7.122765064239616,45.50719070434582],[7.224533081054801,45.47157287597662],[7.270605087280387,45.515628814697266],[7.375261783599854,45.517364501953175],[7.466107845306396,45.57837677001959],[7.558046817779598,45.59130096435547],[7.733782768249569,45.55127334594737],[7.849968910217398,45.603210449218864],[7.896866798400992,45.59097671508789]]]},"properties":{"ID_0":112,"ISO":"IT-TO","NAME_0":"Italy","ID_1":13,"NAME_1":"Piemonte","ID_2":69,"NAME_2":"Torino","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Torino|Turim"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.71775436401367,46.10283660888672],[8.720401763916016,46.01206970214843],[8.572706222534237,45.902267456054744],[8.59487628936779,45.82917785644537],[8.501043319702262,45.834957122802734],[8.460083007812614,45.87438964843756],[8.350947380065918,45.773311614990234],[8.31794261932373,45.770210266113274],[8.335820198059139,45.84773635864258],[8.30332183837902,45.88920593261719],[8.181735992431754,45.94998931884777],[8.087104797363281,45.92334365844732],[8.045433998107967,45.93725204467779],[7.963368892669678,45.90170288085949],[7.878063201904411,45.92736434936535],[7.874930858612117,45.930549621582145],[7.883058071136588,45.977401733398494],[7.910478115081845,45.99799728393555],[7.994339466094971,45.99918365478527],[8.037977218627873,46.043075561523544],[8.040096282958984,46.095073699951115],[8.11262321472168,46.1094970703125],[8.14722824096674,46.13362884521489],[8.168069839477596,46.18153762817382],[8.09470653533947,46.261054992675895],[8.14482498168951,46.299194335937614],[8.217202186584473,46.3071022033692],[8.265085220336914,46.36182022094732],[8.314331054687557,46.38089370727545],[8.291331291198787,46.410186767578175],[8.374684333801326,46.453468322753956],[8.433355331421012,46.4601936340332],[8.471341133117676,46.364093780517635],[8.426624298095817,46.29755401611328],[8.46393203735357,46.22608184814459],[8.53309631347662,46.21987152099621],[8.606492996215819,46.15104675292963],[8.60959243774414,46.11359405517584],[8.71775436401367,46.10283660888672]]]},"properties":{"ID_0":112,"ISO":"IT-VB","NAME_0":"Italy","ID_1":13,"NAME_1":"Piemonte","ID_2":70,"NAME_2":"Verbano-Cusio-Ossola","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Verbania"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.350947380065918,45.773311614990234],[8.379043579101676,45.73951339721691],[8.338385581970327,45.66483688354492],[8.391122817993105,45.619712829589844],[8.404294967651424,45.532112121581974],[8.407156944274957,45.42015457153326],[8.456524848938043,45.383415222168026],[8.49721622467041,45.375122070312614],[8.51461410522461,45.31422424316412],[8.54379653930664,45.25345993041997],[8.526740074157715,45.22023773193371],[8.564097404480094,45.19721221923828],[8.548851966857853,45.16910171508789],[8.496970176696777,45.19933319091797],[8.363632202148438,45.19849395751964],[8.343761444091854,45.17292404174805],[8.270721435546818,45.18204116821289],[8.2164945602417,45.16495132446295],[8.15292835235607,45.169494628906364],[8.046234130859318,45.200660705566406],[7.991939067840632,45.23012924194336],[7.991099834442082,45.30840301513671],[7.964480876922663,45.33140563964855],[8.025371551513672,45.364009857177734],[8.028106689453068,45.40404510498052],[8.123910903930607,45.377033233642635],[8.18658638000494,45.45048141479498],[8.264112472534237,45.50222396850597],[8.29753303527832,45.554546356201165],[8.25623893737793,45.60961914062499],[8.328104019165094,45.64841461181652],[8.129622459411621,45.758598327636776],[8.00231742858881,45.7206916809082],[7.937713146209775,45.725288391113395],[7.864195823669547,45.79193115234374],[7.878063201904411,45.92736434936535],[7.963368892669678,45.90170288085949],[8.045433998107967,45.93725204467779],[8.087104797363281,45.92334365844732],[8.181735992431754,45.94998931884777],[8.30332183837902,45.88920593261719],[8.335820198059139,45.84773635864258],[8.31794261932373,45.770210266113274],[8.350947380065918,45.773311614990234]]]},"properties":{"ID_0":112,"ISO":"IT-VC","NAME_0":"Italy","ID_1":13,"NAME_1":"Piemonte","ID_2":71,"NAME_2":"Vercelli","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Verceil"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.417709350585994,39.61819458007806],[9.458284378051701,39.64262008666998],[9.5058851242066,39.62271881103527],[9.524630546569881,39.58966064453131],[9.651527404785156,39.55062484741211],[9.632081031799316,39.497081756591854],[9.642359733581657,39.444862365722656],[9.595973014831657,39.347362518310604],[9.605690956115835,39.2940292358399],[9.572080612182617,39.247360229492294],[9.567360877990666,39.14708328247076],[9.529583930969295,39.128192901611385],[9.461528778076286,39.12680435180664],[9.39264011383068,39.143470764160156],[9.371250152587947,39.17347335815441],[9.295694351196346,39.213748931884766],[9.216528892517204,39.22819519042969],[9.14124870300293,39.18624877929693],[9.095690727234,39.21430969238286],[9.018750190734863,39.148471832275504],[9.01624965667736,39.087081909179744],[9.045417785644588,39.05875015258795],[9.027082443237417,38.999027252197266],[8.911527633667106,38.916805267333984],[8.841528892517202,38.876251220703125],[8.731250762939396,38.930416107177784],[8.666806221008244,38.89430618286133],[8.621527671813965,38.919578552246094],[8.612624168396053,38.958206176757926],[8.69653224945074,39.02974319458008],[8.740991592407227,39.05059432983404],[8.82792186737072,39.053512573242244],[8.85411643981945,39.08553314208984],[8.823158264160156,39.11941909790045],[8.827328681945858,39.14967727661133],[8.77183437347412,39.180156707763786],[8.74077129364008,39.281227111816406],[8.701637268066406,39.32326507568371],[8.70026969909668,39.37596893310547],[8.757802009582463,39.405815124511776],[8.837080001831112,39.41180038452154],[8.930945396423397,39.400615692138786],[8.97925090789795,39.42308807373047],[8.960442543029728,39.463260650634766],[9.01589584350586,39.487861633300895],[9.000662803649902,39.55464935302746],[9.047477722168026,39.641937255859425],[9.082490921020621,39.66533660888672],[9.148432731628418,39.678497314453125],[9.209806442260856,39.62656784057623],[9.296211242675836,39.6043052673341],[9.315732955932617,39.57865524291992],[9.387925148010252,39.5876350402832],[9.417709350585994,39.61819458007806]]]},"properties":{"ID_0":112,"ISO":"IT-CA","NAME_0":"Italy","ID_1":14,"NAME_1":"Sardegna","ID_2":72,"NAME_2":"Cagliari","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[8.368471145629883,39.113471984863395],[8.420969009399471,39.107917785644645],[8.45596981048584,39.08486175537121],[8.46763896942133,39.04652786254883],[8.445138931274414,38.97013854980469],[8.40291786193859,38.96181106567383],[8.352080345153865,39.072917938232536],[8.368471145629883,39.113471984863395]]],[[[8.309307098388786,39.18819046020508],[8.30652904510498,39.101528167724716],[8.2720823287965,39.095420837402344],[8.22931003570568,39.16569900512695],[8.309307098388786,39.18819046020508]]],[[[8.70026969909668,39.37596893310547],[8.701637268066406,39.32326507568371],[8.74077129364008,39.281227111816406],[8.77183437347412,39.180156707763786],[8.827328681945858,39.14967727661133],[8.823158264160156,39.11941909790045],[8.85411643981945,39.08553314208984],[8.82792186737072,39.053512573242244],[8.740991592407227,39.05059432983404],[8.69653224945074,39.02974319458008],[8.612624168396053,38.958206176757926],[8.573751449584904,38.97708892822277],[8.576251029968319,39.01985931396479],[8.53902816772461,39.05902862548834],[8.488470077514762,39.08407211303711],[8.437639236450309,39.15597152709961],[8.402359962463322,39.175140380859375],[8.366526603698844,39.22847366333008],[8.437360763549917,39.28930664062511],[8.415695190429629,39.33541488647472],[8.372637748718374,39.37541580200201],[8.402915954589787,39.40486145019537],[8.39190578460699,39.44652938842779],[8.496934890747184,39.48406219482433],[8.535611152648926,39.48009872436529],[8.629343986511344,39.4091796875],[8.651399612426815,39.38037109375],[8.70026969909668,39.37596893310547]]]]},"properties":{"ID_0":112,"ISO":"IT-CI","NAME_0":"Italy","ID_1":14,"NAME_1":"Sardegna","ID_2":73,"NAME_2":"Carbonia-Iglesias","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.047477722168026,39.641937255859425],[9.000662803649902,39.55464935302746],[9.01589584350586,39.487861633300895],[8.960442543029728,39.463260650634766],[8.97925090789795,39.42308807373047],[8.930945396423397,39.400615692138786],[8.837080001831112,39.41180038452154],[8.757802009582463,39.405815124511776],[8.70026969909668,39.37596893310547],[8.651399612426815,39.38037109375],[8.629343986511344,39.4091796875],[8.535611152648926,39.48009872436529],[8.496934890747184,39.48406219482433],[8.39190578460699,39.44652938842779],[8.384306907653865,39.46986007690441],[8.435970306396596,39.523471832275504],[8.470971107483024,39.60124969482421],[8.45152759552002,39.6223602294923],[8.4543075561524,39.69847106933605],[8.503471374511719,39.71438598632812],[8.501188278198299,39.71014022827154],[8.506527900695858,39.70663452148449],[8.507639884948844,39.70680618286133],[8.558288574218807,39.69458389282221],[8.608986854553223,39.69093322753912],[8.632486343383846,39.65428543090832],[8.74413013458252,39.62807846069336],[8.785083770751953,39.65490341186518],[8.862778663635368,39.66922378540039],[8.91412734985363,39.722728729248104],[8.925297737121582,39.75938796997082],[8.936801910400447,39.78085708618164],[8.998961448669432,39.76210784912115],[9.06120491027832,39.758613586425774],[9.047477722168026,39.641937255859425]]]},"properties":{"ID_0":112,"ISO":"IT-VS","NAME_0":"Italy","ID_1":14,"NAME_1":"Sardegna","ID_2":74,"NAME_2":"Medio Campidano","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.626526832580566,40.22515869140625],[9.577462196350211,40.196125030517635],[9.520326614379881,40.19726943969732],[9.47895336151123,40.1693572998048],[9.435646057128961,40.10568237304699],[9.337894439697322,40.07338333129877],[9.321619987487793,39.996688842773494],[9.279387474060115,39.946693420410156],[9.273870468139705,39.85177230834961],[9.293042182922363,39.81360626220709],[9.251144409179688,39.73555374145519],[9.310137748718262,39.6790771484375],[9.38544082641613,39.696262359619254],[9.417709350585994,39.61819458007806],[9.387925148010252,39.5876350402832],[9.315732955932617,39.57865524291992],[9.296211242675836,39.6043052673341],[9.209806442260856,39.62656784057623],[9.148432731628418,39.678497314453125],[9.082490921020621,39.66533660888672],[9.047477722168026,39.641937255859425],[9.06120491027832,39.758613586425774],[8.998961448669432,39.76210784912115],[8.936801910400447,39.78085708618164],[8.925297737121582,39.75938796997082],[8.89396762847906,39.77397918701183],[8.974207878112907,39.80258560180664],[8.987939834594668,39.83213043212896],[8.969938278198242,39.89734649658209],[8.996640205383299,39.9610214233399],[8.94664096832281,40.014202117920036],[8.98874378204357,40.05795669555663],[9.036952018737907,40.05142974853521],[9.036260604858512,40.09678268432628],[9.01104640960699,40.13763427734381],[9.018315315246696,40.19474411010742],[8.983112335205135,40.219287872314396],[8.855615615844725,40.211467742919865],[8.796871185302678,40.192729949951286],[8.674187660217285,40.21023559570307],[8.668691635131948,40.25064086914074],[8.627590179443416,40.26519393920904],[8.6212739944458,40.31997680664068],[8.640653610229606,40.30095672607427],[8.73828506469738,40.35431671142584],[8.81307697296154,40.36541748046881],[8.892337799072322,40.404075622558594],[8.949848175048771,40.36921310424799],[9.02899074554449,40.29759979248047],[9.042976379394645,40.32748031616211],[9.171172142028752,40.37337875366222],[9.22847843170166,40.429477691650334],[9.279806137085075,40.51182174682628],[9.18346309661871,40.50952911376953],[9.190435409545898,40.5378303527832],[9.2874374389649,40.526878356933594],[9.373197555541992,40.57235717773443],[9.380131721496694,40.61177444458019],[9.422314643859806,40.659725189208984],[9.487780570983944,40.64619064331055],[9.564409255981444,40.68106079101568],[9.591179847717399,40.79673004150402],[9.643430709838867,40.822601318359425],[9.664516448974553,40.85541534423833],[9.691805839538574,40.810695648193416],[9.689860343933049,40.76235961914074],[9.710416793823242,40.71236038208007],[9.74958419799799,40.68097305297857],[9.74125003814703,40.62819290161144],[9.790695190429629,40.57097244262706],[9.823749542236442,40.50263977050781],[9.753750801086483,40.38097381591797],[9.690972328185977,40.34624862670904],[9.631249427795524,40.27486038208008],[9.626526832580566,40.22515869140625]]]},"properties":{"ID_0":112,"ISO":"IT-NU","NAME_0":"Italy","ID_1":14,"NAME_1":"Sardegna","ID_2":75,"NAME_2":"Nuoro","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.651527404785156,39.55062484741211],[9.524630546569881,39.58966064453131],[9.5058851242066,39.62271881103527],[9.458284378051701,39.64262008666998],[9.417709350585994,39.61819458007806],[9.38544082641613,39.696262359619254],[9.310137748718262,39.6790771484375],[9.251144409179688,39.73555374145519],[9.293042182922363,39.81360626220709],[9.273870468139705,39.85177230834961],[9.279387474060115,39.946693420410156],[9.321619987487793,39.996688842773494],[9.337894439697322,40.07338333129877],[9.435646057128961,40.10568237304699],[9.47895336151123,40.1693572998048],[9.520326614379881,40.19726943969732],[9.577462196350211,40.196125030517635],[9.626526832580566,40.22515869140625],[9.6551389694215,40.1434707641601],[9.736527442932243,40.07624816894537],[9.706526756286735,40.03513717651372],[9.684582710266056,39.956809997558594],[9.684305191039982,39.84097290039057],[9.667916297912596,39.776527404785156],[9.67125034332281,39.70153045654308],[9.651250839233398,39.664306640625114],[9.651527404785156,39.55062484741211]]]},"properties":{"ID_0":112,"ISO":"IT-OG","NAME_0":"Italy","ID_1":14,"NAME_1":"Sardegna","ID_2":76,"NAME_2":"Ogliastra","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.664516448974553,40.85541534423833],[9.643430709838867,40.822601318359425],[9.591179847717399,40.79673004150402],[9.564409255981444,40.68106079101568],[9.487780570983944,40.64619064331055],[9.422314643859806,40.659725189208984],[9.380131721496694,40.61177444458019],[9.373197555541992,40.57235717773443],[9.2874374389649,40.526878356933594],[9.190435409545898,40.5378303527832],[9.195820808410701,40.62725067138677],[9.176322937011832,40.662765502929744],[9.122078895568904,40.647323608398494],[9.013868331909237,40.6812858581543],[9.031306266784668,40.74682998657237],[9.026596069336051,40.79380035400396],[8.97293472290039,40.86371231079107],[8.926104545593319,40.85066604614258],[8.897872924804629,40.86928939819347],[8.990171432495117,40.91290664672857],[8.972529411315918,40.95598220825201],[8.875293731689453,40.93344116210949],[8.829014778137262,40.94980621337896],[8.874029159545898,40.99625015258795],[8.881808280944881,41.02875137329113],[8.933749198913688,41.04542160034179],[9.011810302734432,41.125137329101676],[9.106806755065916,41.13375091552746],[9.153190612793026,41.15513992309576],[9.162360191345329,41.235969543457145],[9.23430633544933,41.25847244262695],[9.2801389694215,41.22847366333002],[9.270137786865234,41.195137023925895],[9.327361106872672,41.18958282470708],[9.364862442016602,41.207084655761776],[9.424028396606445,41.171249389648494],[9.444581031799316,41.13513946533203],[9.51624870300293,41.142360687255916],[9.56986141204834,41.109310150146484],[9.534580230713003,41.0823593139649],[9.531528472900504,41.02680587768566],[9.564304351806697,41.02624893188488],[9.59346961975109,40.96847152709972],[9.560418128967342,40.91819000244151],[9.653751373291072,40.87930679321295],[9.664516448974553,40.85541534423833]]],[[[9.41903018951416,41.26902770996094],[9.43986129760742,41.21597290039057],[9.380693435668945,41.21041870117199],[9.41903018951416,41.26902770996094]]]]},"properties":{"ID_0":112,"ISO":"IT-OT","NAME_0":"Italy","ID_1":14,"NAME_1":"Sardegna","ID_2":77,"NAME_2":"Olbia-Tempio","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.6212739944458,40.31997680664068],[8.627590179443416,40.26519393920904],[8.668691635131948,40.25064086914074],[8.674187660217285,40.21023559570307],[8.796871185302678,40.192729949951286],[8.855615615844725,40.211467742919865],[8.983112335205135,40.219287872314396],[9.018315315246696,40.19474411010742],[9.01104640960699,40.13763427734381],[9.036260604858512,40.09678268432628],[9.036952018737907,40.05142974853521],[8.98874378204357,40.05795669555663],[8.94664096832281,40.014202117920036],[8.996640205383299,39.9610214233399],[8.969938278198242,39.89734649658209],[8.987939834594668,39.83213043212896],[8.974207878112907,39.80258560180664],[8.89396762847906,39.77397918701183],[8.925297737121582,39.75938796997082],[8.91412734985363,39.722728729248104],[8.862778663635368,39.66922378540039],[8.785083770751953,39.65490341186518],[8.74413013458252,39.62807846069336],[8.632486343383846,39.65428543090832],[8.608986854553223,39.69093322753912],[8.558288574218807,39.69458389282221],[8.5040283203125,39.7281951904298],[8.542360305786246,39.77180480957037],[8.556527137756348,39.84736251831049],[8.540692329406852,39.890415191650504],[8.48708438873291,39.91097259521479],[8.399308204650822,39.901248931884815],[8.407641410827694,40.02875137329096],[8.489582061767692,40.077919006347656],[8.459308624267578,40.15013885498058],[8.461250305175895,40.21374893188487],[8.483194351196346,40.285972595214844],[8.427639961242617,40.33514022827154],[8.385692596435547,40.3448600769043],[8.40090179443365,40.40930557250976],[8.423123359680174,40.395660400390625],[8.515083312988281,40.422676086425895],[8.6212739944458,40.31997680664068]]]},"properties":{"ID_0":112,"ISO":"IT-OR","NAME_0":"Italy","ID_1":14,"NAME_1":"Sardegna","ID_2":78,"NAME_2":"Oristano","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[8.829014778137262,40.94980621337896],[8.875293731689453,40.93344116210949],[8.972529411315918,40.95598220825201],[8.990171432495117,40.91290664672857],[8.897872924804629,40.86928939819347],[8.926104545593319,40.85066604614258],[8.97293472290039,40.86371231079107],[9.026596069336051,40.79380035400396],[9.031306266784668,40.74682998657237],[9.013868331909237,40.6812858581543],[9.122078895568904,40.647323608398494],[9.176322937011832,40.662765502929744],[9.195820808410701,40.62725067138677],[9.190435409545898,40.5378303527832],[9.18346309661871,40.50952911376953],[9.279806137085075,40.51182174682628],[9.22847843170166,40.429477691650334],[9.171172142028752,40.37337875366222],[9.042976379394645,40.32748031616211],[9.02899074554449,40.29759979248047],[8.949848175048771,40.36921310424799],[8.892337799072322,40.404075622558594],[8.81307697296154,40.36541748046881],[8.73828506469738,40.35431671142584],[8.640653610229606,40.30095672607427],[8.6212739944458,40.31997680664068],[8.515083312988281,40.422676086425895],[8.423123359680174,40.395660400390625],[8.40090179443365,40.40930557250976],[8.374030113220329,40.49069976806646],[8.334029197692814,40.51374816894531],[8.295415878295955,40.59319305419933],[8.19791698455822,40.57097244262706],[8.149582862854116,40.581809997558594],[8.143751144409237,40.6223602294923],[8.185691833496094,40.638198852539176],[8.203471183776799,40.68847274780285],[8.137359619140739,40.72735977172863],[8.163749694824219,40.79069519042969],[8.218471527099666,40.86847305297857],[8.221803665161133,40.89180374145519],[8.176251411437931,40.933750152588004],[8.202638626098746,40.97236251831055],[8.23736190795904,40.95319366455078],[8.232358932495117,40.90652847290039],[8.314580917358398,40.84402847290045],[8.417361259460506,40.83819580078125],[8.450414657592772,40.82097244262701],[8.537360191345158,40.82485961914068],[8.622637748718319,40.86152648925786],[8.646249771118221,40.88819885253912],[8.70458030700695,40.91125106811534],[8.790970802307186,40.92208480834966],[8.829014778137262,40.94980621337896]]],[[[8.319027900695858,41.120971679687614],[8.338748931884766,41.059310913085994],[8.285416603088493,41.064861297607415],[8.319027900695858,41.120971679687614]]]]},"properties":{"ID_0":112,"ISO":"IT-SS","NAME_0":"Italy","ID_1":14,"NAME_1":"Sardegna","ID_2":79,"NAME_2":"Sassari","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.73325061798107,37.68405532836914],[13.8011741638183,37.68927383422857],[13.811339378357047,37.64291381835949],[13.766344070434627,37.59829711914074],[13.668552398681697,37.575641632080135],[13.690736770629883,37.556728363037166],[13.691084861755428,37.50190734863287],[13.657848358154352,37.47291946411133],[13.750457763671932,37.428985595703125],[13.82726955413824,37.43352127075201],[13.909123420715446,37.38837051391613],[13.882351875305233,37.36096954345709],[13.927776336670036,37.33173751831066],[13.962240219116211,37.33145904541027],[14.028754234314079,37.276023864746094],[13.983982086181697,37.192733764648494],[14.037592887878475,37.143463134765625],[14.037082672119254,37.10708236694336],[13.976808547973574,37.10902786254883],[13.903470993041934,37.09486007690424],[13.823471069335938,37.14458465576172],[13.750417709350643,37.149028778076115],[13.660970687866268,37.19403076171881],[13.552083015442008,37.287082672119254],[13.447360992431582,37.293193817138786],[13.40513992309576,37.33124923706054],[13.322081565857047,37.363471984863395],[13.214307785034293,37.46181106567394],[13.173192024231014,37.489582061767635],[13.077639579773006,37.50542068481451],[13.039029121398867,37.495140075683594],[12.947637557983512,37.57097244262695],[12.896249771118278,37.57707977294933],[12.918560028076227,37.69039535522461],[12.965015411376953,37.73036956787115],[13.012836456298942,37.74375534057617],[13.081249237060602,37.69507217407238],[13.18850040435791,37.692752838134815],[13.213158607482965,37.64155960083008],[13.254673004150504,37.619262695312614],[13.276513099670467,37.64833450317394],[13.322335243225211,37.65093231201183],[13.321423530578668,37.589210510253906],[13.359545707702694,37.5431365966798],[13.399803161621094,37.55756759643566],[13.38190078735363,37.60064697265625],[13.384735107421873,37.65448379516596],[13.427059173584041,37.64432907104503],[13.50908279418951,37.6601295471192],[13.564415931701603,37.636581420898494],[13.601928710937614,37.65708541870123],[13.656107902526912,37.659320831298885],[13.672840118408203,37.68988800048828],[13.73325061798107,37.68405532836914]]]},"properties":{"ID_0":112,"ISO":"IT-AG","NAME_0":"Italy","ID_1":15,"NAME_1":"Sicily","ID_2":80,"NAME_2":"Agrigento","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Agrigente|Girgenti"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.070064544677848,37.713169097900504],[14.078519821167106,37.68898010253912],[14.034237861633413,37.65663909912121],[14.006854057312069,37.672950744628906],[14.0442476272583,37.72701644897461],[14.070064544677848,37.713169097900504]]],[[[14.135728836059569,37.61782455444347],[14.127320289611816,37.51906967163085],[14.142787933349553,37.47843551635736],[14.071249961853082,37.42326354980469],[14.084169387817496,37.3404541015625],[14.166902542114315,37.32508468627923],[14.23175144195568,37.34871292114269],[14.31751918792736,37.32794952392584],[14.353341102600098,37.307262420654354],[14.381415367126579,37.28498840332031],[14.375979423523061,37.2069664001466],[14.43287658691412,37.184059143066406],[14.475879669189455,37.13803482055664],[14.444794654846307,37.054069519043026],[14.338444709777889,37.00125122070324],[14.242360115051381,37.06624984741205],[14.15764045715332,37.09569931030279],[14.037082672119254,37.10708236694336],[14.037592887878475,37.143463134765625],[13.983982086181697,37.192733764648494],[14.028754234314079,37.276023864746094],[13.962240219116211,37.33145904541027],[13.927776336670036,37.33173751831066],[13.882351875305233,37.36096954345709],[13.909123420715446,37.38837051391613],[13.82726955413824,37.43352127075201],[13.750457763671932,37.428985595703125],[13.657848358154352,37.47291946411133],[13.691084861755428,37.50190734863287],[13.690736770629883,37.556728363037166],[13.668552398681697,37.575641632080135],[13.766344070434627,37.59829711914074],[13.811339378357047,37.64291381835949],[13.8011741638183,37.68927383422857],[13.73325061798107,37.68405532836914],[13.80256557464611,37.74375152587896],[13.814590454101674,37.70574951171875],[13.86417388916027,37.69078826904308],[13.905168533325252,37.658584594726506],[13.899998664855898,37.619262695312614],[13.957255363464412,37.586711883545036],[14.028105735778809,37.603477478027344],[14.042756080627555,37.64572143554693],[14.078770637512207,37.64532470703131],[14.135728836059569,37.61782455444347]]]]},"properties":{"ID_0":112,"ISO":"IT-CL","NAME_0":"Italy","ID_1":15,"NAME_1":"Sicily","ID_2":81,"NAME_2":"Caltanissetta","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[15.25872802734375,37.80833435058594],[15.204579353332631,37.74069976806646],[15.219026565551871,37.70847320556646],[15.17485904693609,37.63124847412121],[15.176527976989801,37.57541656494135],[15.115973472595329,37.530693054199276],[15.084304809570426,37.48263931274414],[15.090416908264215,37.35967636108404],[14.9822292327882,37.37524414062506],[14.92276763916027,37.41353988647472],[14.84362506866455,37.38004684448242],[14.844063758850096,37.32566070556646],[14.8914537429809,37.312751770019645],[14.847343444824274,37.260585784912216],[14.811928749084528,37.25774002075207],[14.774155616760309,37.22323989868164],[14.871630668640137,37.190315246582145],[14.79454135894781,37.13317871093756],[14.79373645782482,37.110603332519474],[14.725683212280387,37.10314559936529],[14.703236579895018,37.11882781982422],[14.61098575592041,37.08750152587902],[14.564055442810059,37.052452087402344],[14.52094364166254,37.072841644287166],[14.444794654846307,37.054069519043026],[14.475879669189455,37.13803482055664],[14.43287658691412,37.184059143066406],[14.375979423523061,37.2069664001466],[14.381415367126579,37.28498840332031],[14.353341102600098,37.307262420654354],[14.433206558227651,37.293624877929744],[14.499777793884276,37.309509277343864],[14.494567871093862,37.347675323486385],[14.590799331665039,37.37519454956066],[14.581858634948732,37.40353393554698],[14.625267028808592,37.43519973754883],[14.525336265563965,37.46394348144537],[14.523951530456598,37.5177268981933],[14.544898033142202,37.54399490356457],[14.597910881042479,37.53693389892578],[14.681936264038141,37.55900192260748],[14.78723812103277,37.5048065185548],[14.822297096252385,37.63858413696294],[14.793104171752928,37.65387725830078],[14.798809051513729,37.711669921875],[14.725093841552678,37.682472229003906],[14.742945671081598,37.819244384765625],[14.80320262908941,37.8174781799317],[14.760986328125057,37.869602203369254],[14.763212203979547,37.93455886840826],[14.802042007446346,37.954353332519645],[14.857435226440487,37.92791366577154],[14.927581787109375,37.9613609313966],[14.956354141235408,37.91247940063482],[15.050024032592773,37.89596176147461],[15.111535072326715,37.90727615356451],[15.210231781005916,37.86122512817394],[15.25872802734375,37.80833435058594]]]},"properties":{"ID_0":112,"ISO":"IT-CT","NAME_0":"Italy","ID_1":15,"NAME_1":"Sicily","ID_2":82,"NAME_2":"Catania","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Catane"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.742945671081598,37.819244384765625],[14.725093841552678,37.682472229003906],[14.798809051513729,37.711669921875],[14.793104171752928,37.65387725830078],[14.822297096252385,37.63858413696294],[14.78723812103277,37.5048065185548],[14.681936264038141,37.55900192260748],[14.597910881042479,37.53693389892578],[14.544898033142202,37.54399490356457],[14.523951530456598,37.5177268981933],[14.525336265563965,37.46394348144537],[14.625267028808592,37.43519973754883],[14.581858634948732,37.40353393554698],[14.590799331665039,37.37519454956066],[14.494567871093862,37.347675323486385],[14.499777793884276,37.309509277343864],[14.433206558227651,37.293624877929744],[14.353341102600098,37.307262420654354],[14.31751918792736,37.32794952392584],[14.23175144195568,37.34871292114269],[14.166902542114315,37.32508468627923],[14.084169387817496,37.3404541015625],[14.071249961853082,37.42326354980469],[14.142787933349553,37.47843551635736],[14.127320289611816,37.51906967163085],[14.135728836059569,37.61782455444347],[14.162363052368276,37.670696258544865],[14.217204093933105,37.67883300781249],[14.269249916076717,37.70566558837902],[14.294637680053823,37.744033813476506],[14.269192695617733,37.77709197998047],[14.280653953552303,37.84120941162114],[14.327419281005804,37.83875656127929],[14.406967163085993,37.86748123168956],[14.493494987487907,37.825885772705135],[14.553160667419432,37.84081649780285],[14.593869209289663,37.81391906738287],[14.679660797119253,37.79665374755871],[14.742945671081598,37.819244384765625]]]},"properties":{"ID_0":112,"ISO":"IT-EN","NAME_0":"Italy","ID_1":15,"NAME_1":"Sicily","ID_2":83,"NAME_2":"Enna","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[15.25872802734375,37.80833435058594],[15.210231781005916,37.86122512817394],[15.111535072326715,37.90727615356451],[15.050024032592773,37.89596176147461],[14.956354141235408,37.91247940063482],[14.927581787109375,37.9613609313966],[14.857435226440487,37.92791366577154],[14.802042007446346,37.954353332519645],[14.763212203979547,37.93455886840826],[14.760986328125057,37.869602203369254],[14.80320262908941,37.8174781799317],[14.742945671081598,37.819244384765625],[14.679660797119253,37.79665374755871],[14.593869209289663,37.81391906738287],[14.553160667419432,37.84081649780285],[14.493494987487907,37.825885772705135],[14.406967163085993,37.86748123168956],[14.327419281005804,37.83875656127929],[14.280653953552303,37.84120941162114],[14.275218009948787,37.90536499023449],[14.184246063232422,38.019859313964844],[14.313749313354492,38.00875091552746],[14.37402820587158,38.016250610351555],[14.423472404480092,38.040142059326115],[14.473749160766657,38.0329208374024],[14.551807403564508,38.05791091918945],[14.63069534301752,38.070415496826286],[14.674860000610465,38.096805572509766],[14.7456893920899,38.16403198242182],[14.787638664245549,38.1518058776856],[14.89152908325201,38.1731948852539],[14.91485977172863,38.19208145141607],[14.969028472900504,38.15263748168957],[15.047362327575682,38.15097045898443],[15.060692787170524,38.12818908691406],[15.114027023315542,38.12680435180663],[15.170688629150389,38.15069961547857],[15.228470802307186,38.20875167846673],[15.350691795349178,38.216251373291016],[15.448749542236271,38.25041580200201],[15.521248817443903,38.298473358154354],[15.652083396911676,38.26541519165038],[15.585971832275447,38.248474121093864],[15.562638282775936,38.183750152588004],[15.477640151977653,38.054862976074276],[15.440694808960018,38.02430725097661],[15.307360649108999,37.879581451416016],[15.25872802734375,37.80833435058594]]],[[[14.960968971252385,38.524028778076286],[14.95569133758545,38.438751220703125],[14.898470878601072,38.47819900512701],[14.904029846191461,38.51041793823248],[14.960968971252385,38.524028778076286]]],[[[14.817360877990724,38.58458328247076],[14.873748779296987,38.58152770996105],[14.855139732360895,38.533473968505916],[14.795693397522028,38.56097412109375],[14.817360877990724,38.58458328247076]]]]},"properties":{"ID_0":112,"ISO":"IT-ME","NAME_0":"Italy","ID_1":15,"NAME_1":"Sicily","ID_2":84,"NAME_2":"Messina","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Messine"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.184246063232422,38.019859313964844],[14.275218009948787,37.90536499023449],[14.280653953552303,37.84120941162114],[14.269192695617733,37.77709197998047],[14.294637680053823,37.744033813476506],[14.269249916076717,37.70566558837902],[14.217204093933105,37.67883300781249],[14.162363052368276,37.670696258544865],[14.135728836059569,37.61782455444347],[14.078770637512207,37.64532470703131],[14.042756080627555,37.64572143554693],[14.028105735778809,37.603477478027344],[13.957255363464412,37.586711883545036],[13.899998664855898,37.619262695312614],[13.905168533325252,37.658584594726506],[13.86417388916027,37.69078826904308],[13.814590454101674,37.70574951171875],[13.80256557464611,37.74375152587896],[13.73325061798107,37.68405532836914],[13.672840118408203,37.68988800048828],[13.656107902526912,37.659320831298885],[13.601928710937614,37.65708541870123],[13.564415931701603,37.636581420898494],[13.50908279418951,37.6601295471192],[13.427059173584041,37.64432907104503],[13.384735107421873,37.65448379516596],[13.38190078735363,37.60064697265625],[13.399803161621094,37.55756759643566],[13.359545707702694,37.5431365966798],[13.321423530578668,37.589210510253906],[13.322335243225211,37.65093231201183],[13.276513099670467,37.64833450317394],[13.254673004150504,37.619262695312614],[13.213158607482965,37.64155960083008],[13.18850040435791,37.692752838134815],[13.081249237060602,37.69507217407238],[13.012836456298942,37.74375534057617],[13.089322090148983,37.771507263183594],[13.056432723999023,37.81186676025396],[12.972927093505916,37.82541656494152],[12.943623542785758,37.846004486083984],[12.954839706420955,37.89820480346691],[13.024559020996207,37.90342330932617],[13.047739028930607,37.940345764160156],[12.978471755981559,38.04097366333008],[13.077639579773006,38.08819580078131],[13.0559720993042,38.131805419921875],[13.104578971862907,38.19153213500988],[13.193191528320426,38.169582366943416],[13.272915840148926,38.198192596435604],[13.3593111038208,38.19153213500988],[13.384306907653752,38.10847091674804],[13.440970420837402,38.0948600769044],[13.538472175598201,38.11264038085943],[13.540692329406737,38.058189392089844],[13.622916221618596,38.010139465332024],[13.74513912200939,37.97013854980474],[13.834859848022461,37.98263931274419],[13.945137977600098,38.02736282348627],[14.034029006957951,38.040695190429744],[14.0640287399292,38.0190315246582],[14.184246063232422,38.019859313964844]],[[14.070064544677848,37.713169097900504],[14.0442476272583,37.72701644897461],[14.006854057312069,37.672950744628906],[14.034237861633413,37.65663909912121],[14.078519821167106,37.68898010253912],[14.070064544677848,37.713169097900504]]]},"properties":{"ID_0":112,"ISO":"IT-PA","NAME_0":"Italy","ID_1":15,"NAME_1":"Sicily","ID_2":85,"NAME_2":"Palermo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Palerme"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[15.001298904418945,36.70264053344732],[14.955970764160268,36.69347381591797],[14.912081718444881,36.72375106811523],[14.852917671203556,36.72958374023443],[14.784580230713004,36.70402908325206],[14.687639236450309,36.7215309143067],[14.630970954895021,36.765140533447266],[14.49374866485607,36.785968780517635],[14.458470344543402,36.81569290161132],[14.436806678772085,36.8837509155274],[14.338444709777889,37.00125122070324],[14.444794654846307,37.054069519043026],[14.52094364166254,37.072841644287166],[14.564055442810059,37.052452087402344],[14.61098575592041,37.08750152587902],[14.703236579895018,37.11882781982422],[14.725683212280387,37.10314559936529],[14.79373645782482,37.110603332519474],[14.79454135894781,37.13317871093756],[14.817225456237793,37.110252380371094],[14.818895339965763,37.061508178710994],[14.887796401977539,36.989639282226676],[14.897494316101017,36.926433563232536],[14.85505771636974,36.8288192749024],[14.954311370849723,36.80451583862316],[14.989357948303336,36.77764892578131],[15.001298904418945,36.70264053344732]]]},"properties":{"ID_0":112,"ISO":"IT-RG","NAME_0":"Italy","ID_1":15,"NAME_1":"Sicily","ID_2":86,"NAME_2":"Ragusa","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Raguse"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[15.090416908264215,37.35967636108404],[15.10431098937994,37.310420989990234],[15.224305152893121,37.27041625976574],[15.19125080108654,37.23569869995123],[15.18486022949213,37.19569396972656],[15.237915992736758,37.11541748046875],[15.293749809265195,37.107639312744084],[15.280418395996037,37.03430557250982],[15.302639007568303,37.01514053344721],[15.187359809875543,36.94680404663097],[15.157637596130371,36.9190292358399],[15.137360572815053,36.867084503173935],[15.10680866241455,36.8404159545899],[15.094305992126463,36.797637939453125],[15.139861106872559,36.6840438842774],[15.084027290344295,36.649860382080185],[15.001298904418945,36.70264053344732],[14.989357948303336,36.77764892578131],[14.954311370849723,36.80451583862316],[14.85505771636974,36.8288192749024],[14.897494316101017,36.926433563232536],[14.887796401977539,36.989639282226676],[14.818895339965763,37.061508178710994],[14.817225456237793,37.110252380371094],[14.79454135894781,37.13317871093756],[14.871630668640137,37.190315246582145],[14.774155616760309,37.22323989868164],[14.811928749084528,37.25774002075207],[14.847343444824274,37.260585784912216],[14.8914537429809,37.312751770019645],[14.844063758850096,37.32566070556646],[14.84362506866455,37.38004684448242],[14.92276763916027,37.41353988647472],[14.9822292327882,37.37524414062506],[15.090416908264215,37.35967636108404]]]},"properties":{"ID_0":112,"ISO":"IT-SR","NAME_0":"Italy","ID_1":15,"NAME_1":"Sicily","ID_2":87,"NAME_2":"Syracuse","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Siracusa|Syrakus"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[11.953191757202092,36.84041976928705],[12.050971031189022,36.800418853759766],[12.055139541625918,36.76180648803722],[12.02208328247076,36.73430633544922],[11.981528282165584,36.744861602783146],[11.925970077514647,36.80236053466808],[11.953191757202092,36.84041976928705]]],[[[12.308471679687557,37.95597076416015],[12.37013912200939,37.92235946655279],[12.28625106811529,37.914859771728516],[12.308471679687557,37.95597076416015]]],[[[12.978471755981559,38.04097366333008],[13.047739028930607,37.940345764160156],[13.024559020996207,37.90342330932617],[12.954839706420955,37.89820480346691],[12.943623542785758,37.846004486083984],[12.972927093505916,37.82541656494152],[13.056432723999023,37.81186676025396],[13.089322090148983,37.771507263183594],[13.012836456298942,37.74375534057617],[12.965015411376953,37.73036956787115],[12.918560028076227,37.69039535522461],[12.896249771118278,37.57707977294933],[12.780693054199219,37.580970764160156],[12.672915458679313,37.559581756591854],[12.614028930664118,37.635971069335994],[12.564305305480957,37.661804199218864],[12.519306182861328,37.66013717651373],[12.470970153808594,37.70486068725586],[12.47208309173584,37.74375152587896],[12.424027442932129,37.802360534668075],[12.462637901306264,37.8162498474121],[12.484026908874569,37.857917785644524],[12.465971946716309,37.91402816772472],[12.493472099304142,37.98125076293945],[12.560971260070858,38.06542205810541],[12.64374923706066,38.07764053344732],[12.66263866424572,38.113193511962834],[12.710692405700684,38.10985946655279],[12.767639160156364,38.162361145019524],[12.790138244629018,38.110141754150334],[12.829029083251951,38.06513977050787],[12.894860267639217,38.02402877807623],[12.978471755981559,38.04097366333008]]]]},"properties":{"ID_0":112,"ISO":"IT-TP","NAME_0":"Italy","ID_1":15,"NAME_1":"Sicily","ID_2":88,"NAME_2":"Trapani","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.108415603637695,43.75472640991222],[12.165003776550407,43.76321029663085],[12.242305755615178,43.7544898986817],[12.284744262695256,43.765865325927734],[12.369356155395508,43.71590423583995],[12.1864595413208,43.642723083496094],[12.215166091918887,43.61136245727539],[12.154199600219725,43.534393310546875],[12.103686332702635,43.53089141845714],[12.096054077148551,43.50012207031255],[12.145783424377441,43.48052978515636],[12.057839393615723,43.43921661376953],[12.033894538879395,43.401184082031364],[12.073986053466854,43.371379852294865],[12.119726181030273,43.36531829833995],[12.14953708648676,43.25558090209972],[12.086876869201717,43.237297058105526],[12.049853324890135,43.254070281982365],[12.028447151184139,43.192581176757805],[11.962201118469238,43.16787338256836],[11.863504409790039,43.174747467041016],[11.834690093994254,43.225433349609375],[11.796818733215332,43.22304534912121],[11.721487998962346,43.255783081054744],[11.659881591796989,43.3218994140625],[11.567647933960018,43.364234924316406],[11.530701637268123,43.399570465088004],[11.529452323913686,43.457897186279354],[11.473752021789608,43.48557662963878],[11.398487091064396,43.549209594726676],[11.466098785400447,43.58243179321295],[11.522516250610408,43.582042694091854],[11.48862361907959,43.62860107421874],[11.612069129943848,43.69536972045904],[11.573279380798283,43.735908508300895],[11.583923339843805,43.76905441284174],[11.66135787963867,43.87290573120123],[11.711153984069824,43.8784065246582],[11.85702991485607,43.81684112548822],[11.948028564453182,43.791816711425895],[11.9874782562257,43.76287078857422],[12.108415603637695,43.75472640991222]]]},"properties":{"ID_0":112,"ISO":"IT-AR","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":89,"NAME_2":"Arezzo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.525937080383244,44.15861892700201],[11.611801147461051,44.16093444824219],[11.598278045654354,44.12610626220709],[11.653569221496582,44.101654052734375],[11.716867446899471,44.12350463867199],[11.753623008728084,44.12234115600586],[11.695893287658748,44.03629302978521],[11.646622657775879,43.99033355712896],[11.718013763427734,43.922771453857536],[11.711153984069824,43.8784065246582],[11.66135787963867,43.87290573120123],[11.583923339843805,43.76905441284174],[11.573279380798283,43.735908508300895],[11.612069129943848,43.69536972045904],[11.48862361907959,43.62860107421874],[11.522516250610408,43.582042694091854],[11.466098785400447,43.58243179321295],[11.398487091064396,43.549209594726676],[11.364999771118221,43.52708053588867],[11.273332595825138,43.53068923950195],[11.244308471679688,43.497482299804744],[11.194071769714355,43.51529312133795],[11.150567054748592,43.48653411865234],[11.074654579162654,43.526996612548935],[11.016418457031248,43.5394744873048],[10.955655097961426,43.49837112426769],[10.953042030334586,43.45328521728527],[10.870822906494197,43.46148300170904],[10.826506614685172,43.53646087646479],[10.84943962097168,43.56316757202154],[10.835556983947697,43.606655120849666],[10.853393554687557,43.62989044189464],[10.914765357971191,43.64207077026367],[10.878210067748967,43.72016143798828],[10.79950046539318,43.70452880859375],[10.784585952758846,43.733093261718864],[10.712091445922908,43.78730773925781],[10.728751182556152,43.81512832641607],[10.883794784545898,43.79494094848644],[10.965105056762638,43.81344223022472],[10.986056327819938,43.785720825195426],[11.057715415954531,43.7597274780274],[11.095953941345272,43.821010589599666],[11.149751663208008,43.867565155029354],[11.170331954956112,43.9195671081543],[11.180411338806152,44.04324722290045],[11.203396797180119,44.10168838500988],[11.20091342926031,44.1412239074707],[11.281703948974666,44.156291961669915],[11.343493461609,44.20616149902344],[11.381526947021428,44.20095062255871],[11.422061920166072,44.24018859863287],[11.448613166809139,44.20043563842779],[11.525937080383244,44.15861892700201]]]},"properties":{"ID_0":112,"ISO":"IT-FI","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":90,"NAME_2":"Florence","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Firenze|Florenca|Florencia|Florenz"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.746973037719727,42.7867431640625],[11.819904327392633,42.7438850402832],[11.786494255065918,42.67153549194347],[11.73408317565918,42.60704803466797],[11.585307121276912,42.543731689453125],[11.562199592590332,42.51828002929699],[11.617798805236816,42.488494873046925],[11.618662834167537,42.43703079223633],[11.51753139495861,42.43454742431652],[11.457629203796387,42.402694702148544],[11.450406074523869,42.37791824340825],[11.379583358764705,42.39625167846685],[11.220417976379395,42.41374969482433],[11.158473014831657,42.36180496215832],[11.095972061157227,42.39263916015625],[11.08930587768549,42.426250457763786],[11.158748626708928,42.43430709838867],[11.192083358764705,42.51013946533203],[11.157917022705135,42.5618057250976],[11.122637748718374,42.55652618408203],[11.08597087860113,42.62736129760742],[11.008749961853027,42.66180419921875],[10.9629163742066,42.73152923583996],[10.900139808654842,42.757083892822266],[10.782638549804744,42.77680587768566],[10.742362022399957,42.79875183105469],[10.772638320922795,42.83013916015636],[10.774860382080078,42.90819549560547],[10.706165313720703,42.941806793213004],[10.782146453857479,43.00852966308594],[10.781066894531307,43.064582824706974],[10.734530448913517,43.068367004394645],[10.718219757080135,43.10952758789068],[10.797027587890625,43.16183471679699],[10.912516593933105,43.163600921630916],[11.019560813903922,43.18654632568364],[11.08338069915777,43.08502197265625],[11.233413696289006,43.09149932861328],[11.297808647155762,43.07818603515625],[11.364885330200137,43.082099914550895],[11.357561111450252,42.96875762939459],[11.460077285766602,42.95863723754883],[11.520066261291618,42.98188781738286],[11.572564125060978,42.97122955322271],[11.624714851379508,42.92949676513683],[11.625564575195256,42.866142272949276],[11.642295837402457,42.80067443847662],[11.746973037719727,42.7867431640625]]]},"properties":{"ID_0":112,"ISO":"IT-GR","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":91,"NAME_2":"Grosseto","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[10.413195610046387,42.87319564819335],[10.444306373596248,42.84708404541026],[10.434859275817928,42.78291702270519],[10.402360916137752,42.757362365722656],[10.343471527099666,42.76374816894542],[10.136804580688475,42.73125076293957],[10.102359771728572,42.765972137451286],[10.120415687561092,42.80236053466797],[10.249027252197322,42.80014038085943],[10.277360916137695,42.82291793823248],[10.35708332061779,42.79903030395508],[10.413195610046387,42.87319564819335]]],[[[10.718219757080135,43.10952758789068],[10.734530448913517,43.068367004394645],[10.781066894531307,43.064582824706974],[10.782146453857479,43.00852966308594],[10.706165313720703,42.941806793213004],[10.64819526672369,42.953193664550724],[10.559860229492244,42.950695037841854],[10.545693397521973,42.921527862548885],[10.494861602783203,42.93152618408209],[10.482916831970215,42.98263931274425],[10.51569461822504,42.997081756591854],[10.539304733276367,43.10652923583996],[10.537361145019588,43.1929168701173],[10.506251335144043,43.285137176513786],[10.464583396911621,43.317085266113395],[10.424585342407227,43.399307250976676],[10.381526947021483,43.446250915527344],[10.330416679382324,43.47347259521495],[10.293750762939396,43.54735946655279],[10.304582595825138,43.584304809570426],[10.347442626953068,43.5993041992188],[10.438315391540584,43.63507843017578],[10.500903129577637,43.62608718872076],[10.46534442901617,43.54134750366211],[10.508039474487305,43.432781219482536],[10.491342544555664,43.40390014648431],[10.533170700073184,43.32458877563488],[10.582504272460938,43.2923583984375],[10.66813945770258,43.26631546020508],[10.691484451294002,43.209190368652344],[10.664534568786678,43.17423629760748],[10.718219757080135,43.10952758789068]]]]},"properties":{"ID_0":112,"ISO":"IT-LI","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":92,"NAME_2":"Livorno","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Leghorn|Liorna|Livourne"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.471135139465446,44.22700881958002],[10.525940895080623,44.15795898437505],[10.625062942504883,44.121318817138786],[10.723321914672908,44.08392715454113],[10.719960212707575,44.04484939575207],[10.672331809997615,43.98205947875988],[10.675689697265739,43.87663650512689],[10.728751182556152,43.81512832641607],[10.712091445922908,43.78730773925781],[10.647134780883732,43.797401428222656],[10.624126434326172,43.757888793945426],[10.501854896545467,43.75426101684576],[10.454277992248478,43.766326904296875],[10.453010559082088,43.80542373657232],[10.419526100158805,43.83127212524414],[10.382366180419979,43.81517410278332],[10.308054924011229,43.830402374267635],[10.259028434753361,43.81665420532232],[10.240416526794377,43.8720817565918],[10.144026756286678,43.97648239135748],[10.174569129943904,43.98839950561518],[10.243539810180605,44.087909698486435],[10.18747997283947,44.12469863891607],[10.187789916992301,44.20716476440441],[10.23180961608881,44.2293090820313],[10.254872322082463,44.26953506469738],[10.297784805297852,44.28692626953131],[10.372605323791618,44.27033233642584],[10.436733245849664,44.22718429565441],[10.471135139465446,44.22700881958002]]]},"properties":{"ID_0":112,"ISO":"IT-LU","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":93,"NAME_2":"Lucca","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Lucques"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.14304924011236,44.3548202514649],[10.254872322082463,44.26953506469738],[10.23180961608881,44.2293090820313],[10.187789916992301,44.20716476440441],[10.18747997283947,44.12469863891607],[10.243539810180605,44.087909698486435],[10.174569129943904,43.98839950561518],[10.144026756286678,43.97648239135748],[10.06624984741211,44.02736282348632],[10.019188880920524,44.04459762573248],[10.07027816772461,44.098960876464844],[10.003144264221305,44.10861206054699],[9.967485427856502,44.17039108276367],[9.860014915466365,44.2383766174317],[9.855452537536678,44.26901626586914],[9.807213783264217,44.283588409423885],[9.687728881835938,44.36689758300792],[9.733101844787711,44.380332946777344],[9.820962905883844,44.46737670898449],[9.931945800781307,44.47271728515636],[10.007958412170353,44.43268585205089],[9.99030685424799,44.40528488159185],[10.100266456604118,44.34707641601557],[10.14304924011236,44.3548202514649]]]},"properties":{"ID_0":112,"ISO":"IT-MS","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":94,"NAME_2":"Massa Carrara","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Apuania|Massa-Carrare|Massa e Carrara"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.712091445922908,43.78730773925781],[10.784585952758846,43.733093261718864],[10.79950046539318,43.70452880859375],[10.878210067748967,43.72016143798828],[10.914765357971191,43.64207077026367],[10.853393554687557,43.62989044189464],[10.835556983947697,43.606655120849666],[10.84943962097168,43.56316757202154],[10.826506614685172,43.53646087646479],[10.870822906494197,43.46148300170904],[10.953042030334586,43.45328521728527],[11.000454902648869,43.40130996704113],[11.01401615142828,43.365203857421875],[10.973050117492676,43.34523391723644],[10.971938133239746,43.2979087829591],[10.99855804443365,43.26607894897472],[10.989922523498535,43.232093811035156],[10.942552566528434,43.20581436157221],[10.912516593933105,43.163600921630916],[10.797027587890625,43.16183471679699],[10.718219757080135,43.10952758789068],[10.664534568786678,43.17423629760748],[10.691484451294002,43.209190368652344],[10.66813945770258,43.26631546020508],[10.582504272460938,43.2923583984375],[10.533170700073184,43.32458877563488],[10.491342544555664,43.40390014648431],[10.508039474487305,43.432781219482536],[10.46534442901617,43.54134750366211],[10.500903129577637,43.62608718872076],[10.438315391540584,43.63507843017578],[10.347442626953068,43.5993041992188],[10.312084197998045,43.58847045898448],[10.311244964599666,43.58821105957031],[10.310289382934684,43.58791732788086],[10.310137748718205,43.58791732788086],[10.309676170349121,43.58763885498047],[10.267916679382381,43.67819595336919],[10.283472061157225,43.69041824340832],[10.259028434753361,43.81665420532232],[10.308054924011229,43.830402374267635],[10.382366180419979,43.81517410278332],[10.419526100158805,43.83127212524414],[10.453010559082088,43.80542373657232],[10.454277992248478,43.766326904296875],[10.501854896545467,43.75426101684576],[10.624126434326172,43.757888793945426],[10.647134780883732,43.797401428222656],[10.712091445922908,43.78730773925781]]]},"properties":{"ID_0":112,"ISO":"IT-PI","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":95,"NAME_2":"Pisa","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Pise"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.816032409668082,44.11658096313471],[10.849676132202148,44.09900283813488],[10.945720672607422,44.082633972168026],[11.002603530883844,44.1127815246582],[11.050428390503043,44.09119033813487],[11.041367530822697,44.03515625000006],[11.01269245147705,44.006435394287166],[11.071641921997127,43.983890533447266],[11.029068946838436,43.940189361572266],[11.016203880310059,43.836681365966854],[10.965105056762638,43.81344223022472],[10.883794784545898,43.79494094848644],[10.728751182556152,43.81512832641607],[10.675689697265739,43.87663650512689],[10.672331809997615,43.98205947875988],[10.719960212707575,44.04484939575207],[10.723321914672908,44.08392715454113],[10.625062942504883,44.121318817138786],[10.642218589782772,44.16078567504894],[10.744303703308105,44.15737152099615],[10.816032409668082,44.11658096313471]]]},"properties":{"ID_0":112,"ISO":"IT-PT","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":96,"NAME_2":"Pistoia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.203396797180119,44.10168838500988],[11.180411338806152,44.04324722290045],[11.170331954956112,43.9195671081543],[11.149751663208008,43.867565155029354],[11.095953941345272,43.821010589599666],[11.057715415954531,43.7597274780274],[10.986056327819938,43.785720825195426],[10.965105056762638,43.81344223022472],[11.016203880310059,43.836681365966854],[11.029068946838436,43.940189361572266],[11.071641921997127,43.983890533447266],[11.01269245147705,44.006435394287166],[11.041367530822697,44.03515625000006],[11.050428390503043,44.09119033813487],[11.160189628601188,44.11336898803711],[11.203396797180119,44.10168838500988]]]},"properties":{"ID_0":112,"ISO":"IT-PO","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":97,"NAME_2":"Prato","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.962201118469238,43.16787338256836],[11.916377067565918,43.126640319824276],[11.923455238342342,43.08247756958008],[11.98176860809326,43.057338714599666],[11.933669090271053,42.90946578979492],[11.953027725219783,42.90195465087896],[11.959547042846678,42.875301361083984],[11.934248924255428,42.87031936645502],[11.895914077758789,42.83564758300792],[11.849143981933592,42.83944702148443],[11.803961753845272,42.80194854736328],[11.746973037719727,42.7867431640625],[11.642295837402457,42.80067443847662],[11.625564575195256,42.866142272949276],[11.624714851379508,42.92949676513683],[11.572564125060978,42.97122955322271],[11.520066261291618,42.98188781738286],[11.460077285766602,42.95863723754883],[11.357561111450252,42.96875762939459],[11.364885330200137,43.082099914550895],[11.297808647155762,43.07818603515625],[11.233413696289006,43.09149932861328],[11.08338069915777,43.08502197265625],[11.019560813903922,43.18654632568364],[10.912516593933105,43.163600921630916],[10.942552566528434,43.20581436157221],[10.989922523498535,43.232093811035156],[10.99855804443365,43.26607894897472],[10.971938133239746,43.2979087829591],[10.973050117492676,43.34523391723644],[11.01401615142828,43.365203857421875],[11.000454902648869,43.40130996704113],[10.953042030334586,43.45328521728527],[10.955655097961426,43.49837112426769],[11.016418457031248,43.5394744873048],[11.074654579162654,43.526996612548935],[11.150567054748592,43.48653411865234],[11.194071769714355,43.51529312133795],[11.244308471679688,43.497482299804744],[11.273332595825138,43.53068923950195],[11.364999771118221,43.52708053588867],[11.398487091064396,43.549209594726676],[11.473752021789608,43.48557662963878],[11.529452323913686,43.457897186279354],[11.530701637268123,43.399570465088004],[11.567647933960018,43.364234924316406],[11.659881591796989,43.3218994140625],[11.721487998962346,43.255783081054744],[11.796818733215332,43.22304534912121],[11.834690093994254,43.225433349609375],[11.863504409790039,43.174747467041016],[11.962201118469238,43.16787338256836]]]},"properties":{"ID_0":112,"ISO":"IT-SI","NAME_0":"Italy","ID_1":16,"NAME_1":"Toscana","ID_2":98,"NAME_2":"Siena","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Sienne"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.478063583374137,46.680465698242244],[12.435143470764217,46.669258117675895],[12.361031532287711,46.62046813964844],[12.262230873108024,46.63000869750982],[12.213430404663084,46.609836578369254],[12.06927871704113,46.67602157592785],[12.048093795776422,46.58644866943371],[11.999432563781795,46.53373718261724],[11.967162132263184,46.545558929443466],[11.82931613922119,46.50978469848633],[11.716836929321289,46.51472473144542],[11.62736320495611,46.47277832031261],[11.620380401611328,46.42610168457031],[11.558275222778263,46.35184097290039],[11.483885765075684,46.36431884765625],[11.455802917480412,46.3358268737793],[11.4049072265625,46.32542419433594],[11.380114555358999,46.29296112060541],[11.324251174926701,46.293510437011825],[11.247672080993766,46.23116302490229],[11.2074556350708,46.220668792724666],[11.139840126037598,46.28422546386719],[11.204487800598258,46.34256362915045],[11.221433639526424,46.461124420166016],[11.20933628082281,46.49673461914068],[11.156540870666618,46.48780822753911],[11.050042152404842,46.50793075561529],[11.07572460174572,46.455715179443466],[10.964819908142204,46.48296356201172],[10.912732124328613,46.44463348388672],[10.798110961914176,46.44572830200201],[10.767219543457145,46.48608779907226],[10.685340881347713,46.45211791992193],[10.623162269592342,46.449001312255916],[10.553021430969238,46.492351531982536],[10.47714424133312,46.49645233154308],[10.456283569335994,46.53629302978527],[10.488758087158203,46.61922073364258],[10.412639617919922,46.63770294189459],[10.392670631408635,46.680843353271484],[10.444004058838004,46.752651214599666],[10.449521064758358,46.799850463867244],[10.479442596435604,46.86011123657221],[10.564279556274471,46.84201812744146],[10.666956901550407,46.87600326538086],[10.75448036193859,46.834873199463004],[10.757199287414608,46.79030990600586],[10.874689102172795,46.76651000976574],[10.931680679321401,46.773910522460994],[11.009279251098688,46.765209197998104],[11.075778961181584,46.82081222534174],[11.075670242309684,46.85820007324224],[11.109271049499625,46.92739868164062],[11.208600044250488,46.967353820800895],[11.32099628448492,46.993556976318416],[11.408454895019643,46.9692840576173],[11.502786636352482,47.011390686035206],[11.538007736206055,46.98723220825201],[11.617098808288574,47.01539993286133],[11.66712379455572,46.995422363281364],[11.775319099426326,46.986297607421875],[11.859970092773379,47.0007209777832],[11.932321548461857,47.03569030761719],[12.048950195312614,47.054061889648494],[12.128748893737907,47.07929611206055],[12.216689109802246,47.09096145629883],[12.245669364929311,47.071163177490284],[12.210722923278752,47.03360366821295],[12.124311447143555,47.00744628906244],[12.135801315307617,46.96310043334955],[12.21580696105957,46.8771209716798],[12.27043628692627,46.888450622558594],[12.304768562316895,46.83447647094732],[12.283638954162598,46.78680801391613],[12.34798812866211,46.77870941162121],[12.38242626190197,46.71805572509777],[12.478063583374137,46.680465698242244]]]},"properties":{"ID_0":112,"ISO":"IT-BZ","NAME_0":"Italy","ID_1":17,"NAME_1":"Trentino-Alto Adige","ID_2":99,"NAME_2":"Bolzano","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Bozen|Südtirol|Alto Adige"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.82931613922119,46.50978469848633],[11.814166069030819,46.47903060913085],[11.879657745361385,46.47117614746099],[11.833047866821346,46.38808059692383],[11.780320167541504,46.35284042358404],[11.832858085632381,46.32603836059582],[11.838644027710018,46.27161788940435],[11.923242568969783,46.24870681762701],[11.940573692321832,46.19965744018555],[11.894413948059194,46.12204742431652],[11.814676284790037,46.103168487548885],[11.719026565551871,46.10422897338861],[11.66790866851818,46.038963317871094],[11.685300827026424,45.98497009277343],[11.67423534393322,45.9652557373048],[11.588608741760254,45.96990203857422],[11.57825088500982,46.0074195861817],[11.511716842651367,46.01290130615246],[11.447793960571403,45.981803894043026],[11.373408317565975,45.97407531738281],[11.38283538818365,45.943359375],[11.325361251831055,45.9183235168457],[11.262416839599666,45.91739654541009],[11.240348815917969,45.85688400268555],[11.17498970031744,45.787982940673764],[11.175677299499625,45.73401260375971],[11.13952445983881,45.69776153564458],[10.999999046325684,45.708511352539176],[10.938480377197266,45.67432022094726],[10.890603065490778,45.7159805297851],[10.844860076904297,45.71951675415033],[10.884431838989258,45.817893981933594],[10.841188430786133,45.83367538452154],[10.655679702758903,45.833549499511776],[10.652065277099666,45.81339263916026],[10.564509391784725,45.78503417968744],[10.50924015045166,45.82465744018554],[10.508734703064079,45.90626144409179],[10.458191871643123,46.009452819824276],[10.49196624755865,46.067726135253906],[10.542615890502987,46.104164123535156],[10.566293716430664,46.167972564697266],[10.54243183135992,46.18953704833996],[10.586728096008414,46.248832702636776],[10.566657066345272,46.32723617553711],[10.516762733459528,46.34412765502941],[10.631519317627067,46.40345764160156],[10.623162269592342,46.449001312255916],[10.685340881347713,46.45211791992193],[10.767219543457145,46.48608779907226],[10.798110961914176,46.44572830200201],[10.912732124328613,46.44463348388672],[10.964819908142204,46.48296356201172],[11.07572460174572,46.455715179443466],[11.050042152404842,46.50793075561529],[11.156540870666618,46.48780822753911],[11.20933628082281,46.49673461914068],[11.221433639526424,46.461124420166016],[11.204487800598258,46.34256362915045],[11.139840126037598,46.28422546386719],[11.2074556350708,46.220668792724666],[11.247672080993766,46.23116302490229],[11.324251174926701,46.293510437011825],[11.380114555358999,46.29296112060541],[11.4049072265625,46.32542419433594],[11.455802917480412,46.3358268737793],[11.483885765075684,46.36431884765625],[11.558275222778263,46.35184097290039],[11.620380401611328,46.42610168457031],[11.62736320495611,46.47277832031261],[11.716836929321289,46.51472473144542],[11.82931613922119,46.50978469848633]]]},"properties":{"ID_0":112,"ISO":"IT-TN","NAME_0":"Italy","ID_1":17,"NAME_1":"Trentino-Alto Adige","ID_2":100,"NAME_2":"Trento","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Trente|Trient"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.76838684082037,43.46080398559582],[12.775376319885254,43.40292358398449],[12.747756004333553,43.391410827636776],[12.863289833068848,43.21219635009777],[12.863427162170524,43.166923522949276],[12.898262977600154,43.0944442749024],[12.907649040222225,43.0363502502442],[12.896760940551813,42.96554946899414],[12.977705001831055,42.9266471862793],[12.977093696594238,42.87076950073248],[13.055210113525332,42.921066284179744],[13.113157272338924,42.890296936035156],[13.16178703308111,42.83286666870123],[13.212748527526797,42.84248733520508],[13.236183166503906,42.86865615844726],[13.264913558959961,42.80922317504894],[13.190705299377553,42.734432220459034],[13.17506313323969,42.667072296142635],[13.145145416259822,42.64728546142578],[13.059503555297965,42.623802185058594],[12.897254943847656,42.61740875244146],[12.862354278564567,42.66536331176763],[12.793332099914664,42.66396713256836],[12.775993347168026,42.6369361877442],[12.713025093078727,42.62333297729492],[12.623166084289608,42.67446136474615],[12.574249267578239,42.714748382568416],[12.517004013061467,42.718769073486385],[12.397301673889103,42.677703857421925],[12.333334922790641,42.750789642333984],[12.291708946228084,42.78217697143566],[12.328227996826227,42.851348876953125],[12.321827888488883,42.914424896240234],[12.258799552917537,42.91835784912115],[12.126983642578239,42.943332672119254],[12.03875732421875,42.933284759521484],[12.018646240234489,42.880886077880916],[11.934248924255428,42.87031936645502],[11.959547042846678,42.875301361083984],[11.953027725219783,42.90195465087896],[11.933669090271053,42.90946578979492],[11.98176860809326,43.057338714599666],[11.923455238342342,43.08247756958008],[11.916377067565918,43.126640319824276],[11.962201118469238,43.16787338256836],[12.028447151184139,43.192581176757805],[12.049853324890135,43.254070281982365],[12.086876869201717,43.237297058105526],[12.14953708648676,43.25558090209972],[12.119726181030273,43.36531829833995],[12.073986053466854,43.371379852294865],[12.033894538879395,43.401184082031364],[12.057839393615723,43.43921661376953],[12.145783424377441,43.48052978515636],[12.096054077148551,43.50012207031255],[12.103686332702635,43.53089141845714],[12.154199600219725,43.534393310546875],[12.215166091918887,43.61136245727539],[12.295330047607363,43.59431457519531],[12.357744216919002,43.618232727050895],[12.374444961547793,43.58523941040039],[12.345905303955078,43.554576873779354],[12.399991989135797,43.514171600341854],[12.500763893127496,43.52241516113287],[12.565206527710018,43.46075439453125],[12.626708030700627,43.42198181152355],[12.664120674133358,43.43777847290038],[12.7098007202149,43.4256324768067],[12.735560417175293,43.46530151367199],[12.76838684082037,43.46080398559582]]]},"properties":{"ID_0":112,"ISO":"IT-PG","NAME_0":"Italy","ID_1":18,"NAME_1":"Umbria","ID_2":101,"NAME_2":"Perugia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Pérouse|Perúgia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.897254943847656,42.61740875244146],[12.89366340637207,42.564464569091854],[12.848755836486928,42.553775787353565],[12.7744779586792,42.51406478881836],[12.728519439697266,42.51011276245123],[12.742503166198787,42.47150802612304],[12.666907310485954,42.44194412231445],[12.519695281982422,42.36857223510748],[12.48898601531988,42.3996467590332],[12.46719074249279,42.39586639404291],[12.445633888244686,42.39979171752929],[12.41231822967535,42.44698333740229],[12.395854949951115,42.500289916992244],[12.35216331481945,42.47463226318354],[12.317380905151367,42.489356994628906],[12.239662170410213,42.572982788085994],[12.244282722473145,42.62907028198242],[12.161956787109373,42.67788314819336],[12.030738830566406,42.65139770507823],[11.942287445068303,42.68428039550781],[11.92724418640148,42.705718994140675],[11.980431556701717,42.7655601501466],[11.93225955963146,42.77941513061529],[11.895914077758789,42.83564758300792],[11.934248924255428,42.87031936645502],[12.018646240234489,42.880886077880916],[12.03875732421875,42.933284759521484],[12.126983642578239,42.943332672119254],[12.258799552917537,42.91835784912115],[12.321827888488883,42.914424896240234],[12.328227996826227,42.851348876953125],[12.291708946228084,42.78217697143566],[12.333334922790641,42.750789642333984],[12.397301673889103,42.677703857421925],[12.517004013061467,42.718769073486385],[12.574249267578239,42.714748382568416],[12.623166084289608,42.67446136474615],[12.713025093078727,42.62333297729492],[12.775993347168026,42.6369361877442],[12.793332099914664,42.66396713256836],[12.862354278564567,42.66536331176763],[12.897254943847656,42.61740875244146]]]},"properties":{"ID_0":112,"ISO":"IT-TR","NAME_0":"Italy","ID_1":18,"NAME_1":"Umbria","ID_2":102,"NAME_2":"Terni","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.874930858612117,45.930549621582145],[7.878063201904411,45.92736434936535],[7.864195823669547,45.79193115234374],[7.937713146209775,45.725288391113395],[7.906301021575928,45.682907104492244],[7.940472126007137,45.644195556640675],[7.896866798400992,45.59097671508789],[7.849968910217398,45.603210449218864],[7.733782768249569,45.55127334594737],[7.558046817779598,45.59130096435547],[7.466107845306396,45.57837677001959],[7.375261783599854,45.517364501953175],[7.270605087280387,45.515628814697266],[7.224533081054801,45.47157287597662],[7.122765064239616,45.50719070434582],[7.101458072662467,45.46526718139643],[7.053841114044246,45.499980926513615],[7.006451129913387,45.51078033447265],[6.985504627227783,45.62044143676763],[6.824276924133414,45.72187042236339],[6.812168121337947,45.76046371459972],[6.820878982543945,45.82686996459972],[6.876675128936768,45.82396316528326],[7.011149883270263,45.88225936889648],[7.049919128418026,45.92608642578131],[7.122085094451904,45.8623657226563],[7.157534122467155,45.88274002075207],[7.262650012969971,45.89280319213873],[7.296175956726073,45.925678253173935],[7.391442775726319,45.90019989013683],[7.50042104721075,45.96535873413097],[7.590751171112117,45.97594070434576],[7.675205230712891,45.97388839721685],[7.713220119476317,45.95059585571294],[7.801979064941463,45.92414474487316],[7.874930858612117,45.930549621582145]]]},"properties":{"ID_0":112,"ISO":"IT-AO","NAME_0":"Italy","ID_1":19,"NAME_1":"Valle d'Aosta","ID_2":103,"NAME_2":"Aosta","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Aoste|Val d'Aosta, Valle d'Aosta"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.736565589904899,46.63608932495123],[12.74311542510992,46.59664535522472],[12.717514991760368,46.546123504638786],[12.63158988952648,46.51303863525402],[12.655060768127498,46.485263824463004],[12.607789039611871,46.46516036987305],[12.570953369140682,46.476364135742244],[12.5068626403808,46.44184112548834],[12.4996919631958,46.41307830810558],[12.412795066833553,46.33235168457037],[12.380064964294547,46.33266067504888],[12.330244064331167,46.28425216674816],[12.324991226196403,46.25581741333019],[12.37332248687744,46.22482299804699],[12.431591033935604,46.210323333740234],[12.499824523925838,46.13859939575195],[12.484372138976992,46.104316711425724],[12.428847312927303,46.077209472656364],[12.399991989135797,46.042308807373104],[12.392490386962947,46.07223510742199],[12.323405265808105,46.08313369750982],[12.235418319702205,46.01927185058594],[12.110766410827694,46.003700256347706],[12.06324672698986,45.96364593505864],[12.033723831176815,45.97451782226568],[11.953035354614315,45.94913482666021],[11.951538085937441,45.8966903686524],[11.877090454101674,45.8821296691895],[11.826313018798771,45.908992767334034],[11.80057239532482,45.881454467773494],[11.788290023803768,45.9251823425293],[11.728485107421932,45.93724822998047],[11.685300827026424,45.98497009277343],[11.66790866851818,46.038963317871094],[11.719026565551871,46.10422897338861],[11.814676284790037,46.103168487548885],[11.894413948059194,46.12204742431652],[11.940573692321832,46.19965744018555],[11.923242568969783,46.24870681762701],[11.838644027710018,46.27161788940435],[11.832858085632381,46.32603836059582],[11.780320167541504,46.35284042358404],[11.833047866821346,46.38808059692383],[11.879657745361385,46.47117614746099],[11.814166069030819,46.47903060913085],[11.82931613922119,46.50978469848633],[11.967162132263184,46.545558929443466],[11.999432563781795,46.53373718261724],[12.048093795776422,46.58644866943371],[12.06927871704113,46.67602157592785],[12.213430404663084,46.609836578369254],[12.262230873108024,46.63000869750982],[12.361031532287711,46.62046813964844],[12.435143470764217,46.669258117675895],[12.478063583374137,46.680465698242244],[12.559069633484,46.65792083740239],[12.713255882263296,46.65087890625006],[12.736565589904899,46.63608932495123]]]},"properties":{"ID_0":112,"ISO":"IT-BL","NAME_0":"Italy","ID_1":20,"NAME_1":"Veneto","ID_2":104,"NAME_2":"Belluno","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.093444824218691,45.599235534668075],[12.03637886047369,45.572227478027344],[12.008584022521916,45.53127288818365],[11.98392105102539,45.45334625244135],[12.014445304870662,45.42507553100586],[11.976021766662598,45.39751434326172],[12.114951133728141,45.305934906005916],[12.155138969421387,45.302791595458984],[12.154861450195256,45.26791763305664],[12.2024440765382,45.26013946533203],[12.154691696167049,45.21659469604492],[11.978799819946403,45.188060760498104],[11.96974182128912,45.13491058349615],[11.925461769104002,45.14405822753912],[11.809020042419377,45.122112274170036],[11.762243270874137,45.09655380249035],[11.61441516876232,45.10962295532232],[11.578038215637207,45.124889373779354],[11.49398231506359,45.10399246215832],[11.417907714843748,45.13025665283203],[11.403806686401424,45.26581954956055],[11.488028526306096,45.26687240600597],[11.5711927413941,45.26243209838872],[11.589303970336971,45.31394958496094],[11.620779991149846,45.33117294311518],[11.616703033447207,45.388938903808594],[11.746648788452148,45.473049163818466],[11.723944664001579,45.54534530639659],[11.65874099731451,45.54108047485357],[11.680855751037711,45.64165115356457],[11.714749336242619,45.68226242065441],[11.822681427001895,45.6880722045899],[11.881903648376465,45.66668319702143],[11.933751106262205,45.61602020263683],[12.075648307800293,45.64235687255853],[12.093444824218691,45.599235534668075]]]},"properties":{"ID_0":112,"ISO":"IT-PD","NAME_0":"Italy","ID_1":20,"NAME_1":"Veneto","ID_2":105,"NAME_2":"Padua","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Padoue|Padova"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.398496627807672,44.7926406860351],[12.358345031738395,44.814521789550895],[12.337293624878042,44.85315322875988],[12.287628173828125,44.87122344970697],[12.281847000122127,44.942684173583984],[12.225951194763297,44.923896789550774],[12.170125961303711,44.94300460815441],[12.141585350036678,44.92935562133789],[12.098981857299803,44.972396850585994],[11.963665962219181,44.987747192382926],[11.922171592712402,44.97557830810547],[11.80167484283447,44.976772308349716],[11.745738029480037,44.93804931640631],[11.625800132751465,44.890155792236435],[11.532971382141227,44.93776702880871],[11.427749633789176,44.95100784301769],[11.415790557861385,44.968276977539176],[11.332862854003963,44.99316024780285],[11.202448844909668,45.06113052368163],[11.20648002624506,45.11041641235357],[11.245230674743652,45.093391418457145],[11.316718101501579,45.09097671508795],[11.361788749694881,45.05824279785162],[11.401706695556753,45.053726196289176],[11.446809768676815,45.0815925598145],[11.417907714843748,45.13025665283203],[11.49398231506359,45.10399246215832],[11.578038215637207,45.124889373779354],[11.61441516876232,45.10962295532232],[11.762243270874137,45.09655380249035],[11.809020042419377,45.122112274170036],[11.925461769104002,45.14405822753912],[11.96974182128912,45.13491058349615],[12.026890754699764,45.13958358764654],[12.048653602600098,45.1062850952149],[12.141818046569824,45.05655288696289],[12.16879081726074,45.09487152099615],[12.281676292419377,45.12385559082037],[12.32874965667736,45.15907287597656],[12.269583702087457,45.11347198486328],[12.279582023620662,45.078193664550774],[12.350139617919922,45.08097076416027],[12.377362251281681,45.011528015136776],[12.45736217498785,44.99819564819336],[12.435416221618652,44.91652679443364],[12.4662504196167,44.90069580078131],[12.467082023620662,44.84347152709955],[12.387638092040959,44.86624908447277],[12.398496627807672,44.7926406860351]]]},"properties":{"ID_0":112,"ISO":"IT-RO","NAME_0":"Italy","ID_1":20,"NAME_1":"Veneto","ID_2":106,"NAME_2":"Rovigo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.399991989135797,46.042308807373104],[12.429174423217829,45.99665832519537],[12.42328262329113,45.95705032348638],[12.506175041198786,45.9242897033692],[12.538078308105469,45.86954879760748],[12.60667896270752,45.83913421630865],[12.662639617920036,45.793327331543026],[12.647567749023438,45.74831390380865],[12.671792030334473,45.71772766113281],[12.603442192077692,45.680961608886776],[12.576155662536564,45.69805526733404],[12.49554824829113,45.67485046386719],[12.486639022827262,45.640537261963],[12.440262794494629,45.637050628662166],[12.439371109008846,45.56000900268565],[12.353352546691895,45.588771820068416],[12.294123649597282,45.57362747192383],[12.27232360839855,45.533401489257926],[12.206648826599178,45.54214096069335],[12.145931243896598,45.596111297607365],[12.093444824218691,45.599235534668075],[12.075648307800293,45.64235687255853],[11.933751106262205,45.61602020263683],[11.881903648376465,45.66668319702143],[11.822681427001895,45.6880722045899],[11.804248809814451,45.800838470459034],[11.75134181976324,45.824249267578175],[11.743676185607908,45.855800628662166],[11.80057239532482,45.881454467773494],[11.826313018798771,45.908992767334034],[11.877090454101674,45.8821296691895],[11.951538085937441,45.8966903686524],[11.953035354614315,45.94913482666021],[12.033723831176815,45.97451782226568],[12.06324672698986,45.96364593505864],[12.110766410827694,46.003700256347706],[12.235418319702205,46.01927185058594],[12.323405265808105,46.08313369750982],[12.392490386962947,46.07223510742199],[12.399991989135797,46.042308807373104]]]},"properties":{"ID_0":112,"ISO":"IT-TV","NAME_0":"Italy","ID_1":20,"NAME_1":"Veneto","ID_2":107,"NAME_2":"Treviso","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Trévise"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[12.28902912139904,45.23236083984381],[12.312639236450138,45.182083129882926],[12.258473396301326,45.1834716796875],[12.28902912139904,45.23236083984381]]],[[[12.32874965667736,45.15907287597656],[12.281676292419377,45.12385559082037],[12.16879081726074,45.09487152099615],[12.141818046569824,45.05655288696289],[12.048653602600098,45.1062850952149],[12.026890754699764,45.13958358764654],[11.96974182128912,45.13491058349615],[11.978799819946403,45.188060760498104],[12.154691696167049,45.21659469604492],[12.2024440765382,45.26013946533203],[12.221249580383358,45.19374847412104],[12.32874965667736,45.15907287597656]]],[[[12.98002147674572,45.83493804931646],[13.002483367919979,45.7492790222168],[13.03001213073736,45.73602294921875],[13.045344352722168,45.68520355224615],[13.084305763244743,45.65692520141613],[13.095973014831657,45.63486099243164],[12.907082557678336,45.61430740356451],[12.860415458679311,45.585971832275504],[12.719582557678278,45.525417327880916],[12.582082748413086,45.4779167175293],[12.600137710571287,45.53736114501959],[12.536805152893123,45.567916870117294],[12.4762487411499,45.55930709838867],[12.439306259155329,45.521526336669865],[12.369304656982536,45.50930404663097],[12.256528854370115,45.46097183227545],[12.259306907653922,45.41541671752935],[12.215970993042049,45.41652679443353],[12.155138969421387,45.302791595458984],[12.114951133728141,45.305934906005916],[11.976021766662598,45.39751434326172],[12.014445304870662,45.42507553100586],[11.98392105102539,45.45334625244135],[12.008584022521916,45.53127288818365],[12.03637886047369,45.572227478027344],[12.093444824218691,45.599235534668075],[12.145931243896598,45.596111297607365],[12.206648826599178,45.54214096069335],[12.27232360839855,45.533401489257926],[12.294123649597282,45.57362747192383],[12.353352546691895,45.588771820068416],[12.439371109008846,45.56000900268565],[12.440262794494629,45.637050628662166],[12.486639022827262,45.640537261963],[12.49554824829113,45.67485046386719],[12.576155662536564,45.69805526733404],[12.603442192077692,45.680961608886776],[12.671792030334473,45.71772766113281],[12.647567749023438,45.74831390380865],[12.662639617920036,45.793327331543026],[12.729864120483342,45.83749389648437],[12.782838821411133,45.85485076904297],[12.862162590026799,45.85168075561535],[12.930473327636776,45.818248748779354],[12.98002147674572,45.83493804931646]]]]},"properties":{"ID_0":112,"ISO":"IT-VE","NAME_0":"Italy","ID_1":20,"NAME_1":"Veneto","ID_2":108,"NAME_2":"Venezia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Venecia|Venedig|Veneza|Venezia|Venise|"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.13952445983881,45.69776153564458],[11.148633956909293,45.65254211425787],[11.184782981872559,45.619102478027344],[11.236857414245662,45.60100173950201],[11.25251770019531,45.54314041137695],[11.321240425109977,45.499870300293075],[11.355331420898438,45.35445785522461],[11.45366382598877,45.324504852294865],[11.44138145446783,45.30379867553716],[11.488028526306096,45.26687240600597],[11.403806686401424,45.26581954956055],[11.417907714843748,45.13025665283203],[11.446809768676815,45.0815925598145],[11.401706695556753,45.053726196289176],[11.361788749694881,45.05824279785162],[11.316718101501579,45.09097671508795],[11.245230674743652,45.093391418457145],[11.20648002624506,45.11041641235357],[11.139745712280273,45.12478256225597],[11.073940277099664,45.099674224853516],[10.99902439117426,45.15954971313476],[10.991399765014705,45.19702911376953],[10.935187339782772,45.234039306640625],[10.847625732421875,45.25749969482422],[10.78383541107172,45.316345214843864],[10.738435745239315,45.28816986083979],[10.698764801025447,45.38101196289074],[10.655651092529297,45.416748046875],[10.643918037414664,45.45545196533203],[10.629487991333065,45.60297775268549],[10.703042984008789,45.67364883422857],[10.841188430786133,45.83367538452154],[10.884431838989258,45.817893981933594],[10.844860076904297,45.71951675415033],[10.890603065490778,45.7159805297851],[10.938480377197266,45.67432022094726],[10.999999046325684,45.708511352539176],[11.13952445983881,45.69776153564458]]]},"properties":{"ID_0":112,"ISO":"IT-VR","NAME_0":"Italy","ID_1":20,"NAME_1":"Veneto","ID_2":109,"NAME_2":"Verona","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Vérone"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.685300827026424,45.98497009277343],[11.728485107421932,45.93724822998047],[11.788290023803768,45.9251823425293],[11.80057239532482,45.881454467773494],[11.743676185607908,45.855800628662166],[11.75134181976324,45.824249267578175],[11.804248809814451,45.800838470459034],[11.822681427001895,45.6880722045899],[11.714749336242619,45.68226242065441],[11.680855751037711,45.64165115356457],[11.65874099731451,45.54108047485357],[11.723944664001579,45.54534530639659],[11.746648788452148,45.473049163818466],[11.616703033447207,45.388938903808594],[11.620779991149846,45.33117294311518],[11.589303970336971,45.31394958496094],[11.5711927413941,45.26243209838872],[11.488028526306096,45.26687240600597],[11.44138145446783,45.30379867553716],[11.45366382598877,45.324504852294865],[11.355331420898438,45.35445785522461],[11.321240425109977,45.499870300293075],[11.25251770019531,45.54314041137695],[11.236857414245662,45.60100173950201],[11.184782981872559,45.619102478027344],[11.148633956909293,45.65254211425787],[11.13952445983881,45.69776153564458],[11.175677299499625,45.73401260375971],[11.17498970031744,45.787982940673764],[11.240348815917969,45.85688400268555],[11.262416839599666,45.91739654541009],[11.325361251831055,45.9183235168457],[11.38283538818365,45.943359375],[11.373408317565975,45.97407531738281],[11.447793960571403,45.981803894043026],[11.511716842651367,46.01290130615246],[11.57825088500982,46.0074195861817],[11.588608741760254,45.96990203857422],[11.67423534393322,45.9652557373048],[11.685300827026424,45.98497009277343]]]},"properties":{"ID_0":112,"ISO":"IT-VI","NAME_0":"Italy","ID_1":20,"NAME_1":"Veneto","ID_2":110,"NAME_2":"Vicenza","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Vicence"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson
new file mode 100644
index 0000000..3f4fa75
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson
@@ -0,0 +1,49 @@
+{"type":"FeatureCollection", "features": [
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[137.56509399414074,35.28435516357422],[137.5549468994143,35.238288879394645],[137.58142089843773,35.216281890869254],[137.5810699462893,35.19484710693371],[137.62030029296875,35.20619964599615],[137.6448211669923,35.205760955810604],[137.66665649414062,35.22447967529297],[137.72482299804687,35.22748565673828],[137.7298278808595,35.21818923950207],[137.76704406738304,35.21649551391613],[137.77812194824264,35.200233459472656],[137.82078552246094,35.211280822753906],[137.82283020019565,35.1933326721192],[137.80491638183594,35.17028045654297],[137.82763671875,35.159198760986385],[137.81881713867222,35.13579559326172],[137.80177307128952,35.125457763671875],[137.80589294433594,35.1057014465332],[137.78224182128906,35.0957870483399],[137.76841735839855,35.06940078735363],[137.74111938476608,35.050785064697266],[137.707977294922,35.0124626159668],[137.70658874511741,34.96815490722662],[137.678466796875,34.94213104248041],[137.65962219238304,34.936870574951286],[137.64163208007847,34.887573242187614],[137.5994873046875,34.86536407470709],[137.5898590087893,34.84662246704113],[137.56834411621094,34.848819732666016],[137.50971984863293,34.831317901611385],[137.49252319335937,34.80369186401373],[137.49624633789062,34.78318023681646],[137.4801025390625,34.77186203002941],[137.4781494140626,34.750007629394645],[137.4935760498047,34.69154739379894],[137.4883270263672,34.674873352050895],[137.4057159423828,34.661312103271484],[137.33526611328125,34.646141052246094],[137.20193481445324,34.61030197143566],[137.14149475097668,34.58974456787115],[137.0852813720703,34.58984756469732],[137.03834533691406,34.578380584716854],[137.01719665527344,34.57866287231457],[137.06494140625023,34.65876007080078],[137.11970520019577,34.63481521606445],[137.14572143554722,34.64467620849615],[137.2065887451172,34.6781463623048],[137.26538085937523,34.69693756103521],[137.2626495361328,34.71684646606445],[137.28404235839844,34.730792999267635],[137.320037841797,34.733119964599666],[137.32217407226562,34.77114105224615],[137.32972717285168,34.78111267089855],[137.3107452392578,34.804832458496094],[137.2882995605471,34.81261062622076],[137.26145935058605,34.804664611816406],[137.22456359863304,34.81919097900396],[137.2104644775393,34.803318023681754],[137.19126892089855,34.80526733398443],[137.17573547363304,34.78445053100597],[137.15103149414074,34.78146743774414],[137.1147155761721,34.790832519531364],[137.08694458007824,34.77555465698242],[137.06663513183616,34.78558349609375],[137.0277709960942,34.77833175659191],[136.98472595214855,34.822071075439396],[136.95777893066452,34.832500457763786],[136.93533325195347,34.85700607299805],[136.91583251953136,34.7691650390625],[136.9499969482423,34.73916625976574],[136.96556091308616,34.73361206054699],[136.97444152832065,34.7055549621582],[136.94360351562523,34.70027923583979],[136.88833618164085,34.721111297607536],[136.86143493652366,34.737777709960994],[136.84138488769543,34.76527786254883],[136.8552703857422,34.79194259643555],[136.8669433593751,34.83750152587896],[136.85749816894543,34.86194610595709],[136.82473754882812,34.89491271972662],[136.82009887695324,34.965316772460994],[136.84527587890636,34.9988899230957],[136.86753845214866,35.040523529052734],[136.89332580566418,35.066387176513786],[136.876922607422,35.08943557739269],[136.8394775390626,35.02973175048828],[136.8005523681643,35.028610229492244],[136.79438781738315,35.014785766601676],[136.73652648925827,35.0293807983399],[136.73124694824253,35.03628540039068],[136.7043914794922,35.11997222900396],[136.68016052246094,35.12866592407232],[136.67088317871116,35.14551544189453],[136.67922973632812,35.18070220947277],[136.6821441650393,35.236751556396484],[136.71553039550804,35.28214263916021],[136.72845458984398,35.292209625244254],[136.76768493652378,35.36053466796881],[136.79524230957054,35.36505126953125],[136.8323211669923,35.35410308837902],[136.87498474121116,35.369853973388615],[136.91673278808616,35.37490081787121],[136.9581756591798,35.39339447021496],[136.96409606933594,35.41207122802746],[136.98507690429687,35.406490325927734],[137.01174926757858,35.378173828125],[137.0508728027345,35.36220169067394],[137.04940795898437,35.33527374267578],[137.06634521484386,35.333328247070256],[137.06980895996128,35.30664825439453],[137.08328247070358,35.29337310791021],[137.12498474121094,35.292758941650504],[137.17927551269543,35.267093658447266],[137.20036315917991,35.24998092651373],[137.25433349609398,35.26674652099621],[137.27897644043014,35.287464141845646],[137.31085205078125,35.28797531127941],[137.33888244628918,35.271301269531364],[137.3452301025394,35.25835418701183],[137.37498474121128,35.259887695312614],[137.38687133789085,35.24325180053711],[137.43690490722702,35.222640991210994],[137.49998474121116,35.26084518432623],[137.52427673339855,35.28102493286133],[137.56509399414074,35.28435516357422]]]},"properties":{"ID_0":114,"ISO":"JP-23","NAME_0":"Japan","ID_1":1,"NAME_1":"Aichi","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"愛知県","VARNAME_1":"Aiti"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[139.99229431152344,40.09374618530285],[140.0573272705078,40.05758285522461],[140.06822204589866,40.042011260986385],[140.066375732422,39.9841423034668],[140.0464782714846,39.94465637207037],[140.01422119140625,39.92770004272461],[139.95234680175793,39.94075012207031],[139.92338562011753,39.95902633666998],[139.9442138671875,40.000640869140625],[139.93222045898437,40.02277755737316],[139.95304870605491,40.03694534301752],[139.9647216796876,40.05916595458979],[139.97999572753906,40.064998626708984],[139.99229431152344,40.09374618530285]]],[[[140.9583892822268,40.24560165405285],[140.9380035400393,40.22334671020508],[140.91616821289062,40.22043609619146],[140.889892578125,40.18497467041021],[140.86608886718773,40.171691894531364],[140.88621520996128,40.15280151367199],[140.87496948242187,40.13492202758795],[140.87881469726562,40.09197616577154],[140.85232543945312,40.07412719726568],[140.85861206054687,40.04410171508795],[140.85240173339855,40.00524139404297],[140.8514099121096,39.95632553100586],[140.86318969726562,39.91660308837896],[140.88241577148437,39.88262939453131],[140.8527832031251,39.86440277099621],[140.8278045654298,39.883060455322266],[140.78640747070324,39.86547470092768],[140.78993225097656,39.823902130126896],[140.84690856933605,39.79816818237305],[140.84443664550793,39.78644561767578],[140.80516052246094,39.740715026855526],[140.7853240966797,39.73509979248058],[140.79743957519554,39.70679473876959],[140.8190155029298,39.68913650512701],[140.82551574707043,39.646789550781364],[140.8105621337893,39.62890625],[140.80679321289085,39.607299804687614],[140.78602600097668,39.60119247436529],[140.7552032470703,39.567378997802734],[140.7306976318364,39.55332946777355],[140.74417114257812,39.53464508056635],[140.71669006347656,39.491180419921875],[140.7156677246095,39.47290420532238],[140.6824951171876,39.44839477539074],[140.6848602294922,39.41661834716797],[140.66203308105514,39.41186904907238],[140.65928649902344,39.386230468750114],[140.67910766601562,39.382667541503906],[140.69212341308616,39.34592437744146],[140.7093353271489,39.333286285400504],[140.7016143798828,39.297035217285156],[140.7284393310547,39.26746368408203],[140.75898742675793,39.254127502441406],[140.78976440429687,39.22778701782232],[140.77252197265636,39.21593856811529],[140.76824951171898,39.19518280029297],[140.8013458251953,39.18656921386719],[140.75659179687523,39.13293838500982],[140.7704315185548,39.12408447265631],[140.75622558593773,39.085693359375],[140.8054962158203,39.07080841064453],[140.81275939941418,39.05508422851574],[140.79798889160168,39.02807998657232],[140.77261352539085,39.00069046020502],[140.76797485351562,38.984321594238395],[140.7767791748047,38.95510864257818],[140.73066711425804,38.94147109985357],[140.7184906005864,38.92419433593756],[140.6880645751953,38.91387939453131],[140.65750122070324,38.88613128662121],[140.61038208007824,38.883609771728516],[140.56797790527366,38.871681213378906],[140.55451965332043,38.87886428833008],[140.54209899902355,38.89656448364258],[140.50885009765648,38.8920631408692],[140.4862518310547,38.91291046142578],[140.4649200439453,38.91773986816412],[140.4532165527345,38.94290161132818],[140.4495849609375,38.97322463989252],[140.43536376953125,38.98892593383789],[140.3814697265626,38.99210357666021],[140.36610412597656,39.01147842407232],[140.33238220214844,39.03193283081066],[140.31797790527344,39.01633453369146],[140.25933837890648,39.02943038940441],[140.23736572265625,39.0246315002442],[140.20433044433605,39.03327941894537],[140.205047607422,39.055763244628906],[140.15249633789062,39.04930496215832],[140.10142517089855,39.08091735839844],[140.07611083984386,39.084316253662166],[140.0648651123048,39.11100006103527],[140.06578063964866,39.13072967529297],[140.01609802246094,39.12107467651367],[139.9864959716798,39.10553359985363],[139.86984252929687,39.11907958984375],[139.88305664062523,39.13243484497082],[139.90460205078148,39.17824554443365],[139.89277648925804,39.21307373046869],[139.9142608642578,39.249183654785156],[139.915740966797,39.275955200195426],[139.92811584472656,39.288688659668026],[139.96665954589855,39.2944450378418],[139.98553466796886,39.32125473022472],[140.01666259765625,39.38916778564453],[140.04388427734386,39.492778778076115],[140.05654907226562,39.567024230957145],[140.06399536132812,39.657756805420036],[140.0587310791018,39.725597381591854],[140.0379333496096,39.764831542968864],[140.04116821289085,39.78631591796881],[140.02430725097656,39.823619842529354],[140.00389099121094,39.849998474121094],[139.9491424560547,39.890251159668026],[139.97222900390625,39.92050933837885],[140.01472473144543,39.91083145141613],[140.03503417968773,39.88236618041998],[140.04722595214844,39.88277816772472],[140.05450439453136,39.920135498046875],[140.0442810058595,39.93620681762707],[140.0641632080078,39.9594459533692],[140.0719451904298,39.98777770996105],[140.07377624511741,40.04020309448242],[140.05630493164074,40.069110870361385],[139.98805236816406,40.09583282470703],[139.95889282226562,40.05777740478527],[139.94972229003906,40.03666687011713],[139.92832946777355,40.023056030273494],[139.9425048828125,40.00631713867199],[139.93121337890625,39.9878311157226],[139.92385864257835,39.95312118530279],[139.94801330566406,39.94118118286144],[139.95921325683605,39.90633392333996],[139.94534301757812,39.89160537719721],[139.90730285644543,39.902267456054744],[139.86468505859375,39.897426605224666],[139.85237121582043,39.88705825805664],[139.86024475097668,39.86612701416027],[139.8196563720703,39.857822418213004],[139.7907714843751,39.8671035766601],[139.75588989257824,39.856304168701286],[139.73629760742187,39.87958526611334],[139.73504638671898,39.904701232910156],[139.71627807617187,39.91047668457037],[139.70185852050804,39.94138336181646],[139.69387817382824,39.9793815612793],[139.7236938476566,39.981319427490234],[139.76557922363327,39.975036621093864],[139.79856872558616,39.95661926269531],[139.85072326660156,39.97377395629894],[139.906951904297,40.021110534668026],[139.94721984863293,40.07555389404308],[139.985595703125,40.15800094604498],[139.99610900878906,40.21333312988281],[140.00389099121094,40.21763610839855],[140.022216796875,40.29249954223644],[140.02487182617187,40.354377746582145],[140.01304626464844,40.372417449951286],[139.98167419433616,40.38527679443371],[139.97917175292991,40.396389007568416],[139.94644165039074,40.41300964355469],[139.93629455566418,40.427886962890625],[139.9999694824221,40.43152618408203],[140.01966857910156,40.41859817504894],[140.0328369140626,40.452480316162166],[140.06138610839866,40.46456909179693],[140.09951782226574,40.45357894897461],[140.11041259765648,40.43449020385742],[140.17471313476574,40.435508728027344],[140.22663879394543,40.42884826660156],[140.25137329101585,40.43779373168951],[140.29515075683594,40.443595886230526],[140.3385162353518,40.436668395996094],[140.36415100097668,40.475341796875114],[140.39468383789074,40.482460021972656],[140.43064880371116,40.47969436645508],[140.44407653808605,40.4470672607423],[140.48469543457043,40.44712448120123],[140.51004028320324,40.42692947387701],[140.5323486328126,40.42825698852545],[140.55758666992187,40.41662216186529],[140.5940856933596,40.43357849121088],[140.62496948242187,40.42110061645508],[140.64720153808605,40.400936126708984],[140.69107055664074,40.41660308837885],[140.69766235351574,40.425273895263786],[140.7361755371096,40.427146911621094],[140.77276611328125,40.45106506347662],[140.8087158203126,40.447261810302734],[140.8145294189453,40.480834960937614],[140.8520507812501,40.504627227783146],[140.87527465820358,40.494571685791016],[140.87496948242187,40.41661071777338],[140.92927551269543,40.4188346862793],[140.98326110839844,40.425640106201286],[140.9974365234375,40.35424041748041],[140.97647094726562,40.34389495849621],[140.9480743408203,40.28609848022461],[140.9583892822268,40.24560165405285]]]]},"properties":{"ID_0":114,"ISO":"JP-05","NAME_0":"Japan","ID_1":2,"NAME_1":"Akita","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"秋田県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[139.3544464111328,41.52361297607433],[139.37666320800804,41.52305603027338],[139.3733367919922,41.501548767089844],[139.33921813964844,41.49542999267578],[139.33471679687545,41.51499938964855],[139.3544464111328,41.52361297607433]]],[[[141.68473815917991,40.44817733764643],[141.6706237792971,40.43270492553722],[141.59927368164085,40.40926742553705],[141.5846099853518,40.3926353454591],[141.5845642089846,40.37092590332037],[141.53933715820312,40.344310760498104],[141.47615051269543,40.37413406372082],[141.44186401367187,40.37074661254883],[141.38502502441406,40.33928298950195],[141.35464477539074,40.32802963256836],[141.33802795410156,40.35871887207037],[141.3201904296875,40.36984252929699],[141.28892517089866,40.34526443481451],[141.26792907714844,40.347103118896484],[141.200897216797,40.30498123168945],[141.1798248291018,40.30710601806652],[141.143280029297,40.29739761352545],[141.10581970214866,40.27777862548828],[141.11318969726597,40.25861740112305],[141.08021545410156,40.24905395507818],[141.0607147216798,40.23043060302746],[141.0091247558596,40.215248107910156],[140.98167419433616,40.219303131103516],[140.9583892822268,40.24560165405285],[140.9480743408203,40.28609848022461],[140.97647094726562,40.34389495849621],[140.9974365234375,40.35424041748041],[140.98326110839844,40.425640106201286],[140.92927551269543,40.4188346862793],[140.87496948242187,40.41661071777338],[140.87527465820358,40.494571685791016],[140.8520507812501,40.504627227783146],[140.8145294189453,40.480834960937614],[140.8087158203126,40.447261810302734],[140.77276611328125,40.45106506347662],[140.7361755371096,40.427146911621094],[140.69766235351574,40.425273895263786],[140.69107055664074,40.41660308837885],[140.64720153808605,40.400936126708984],[140.62496948242187,40.42110061645508],[140.5940856933596,40.43357849121088],[140.55758666992187,40.41662216186529],[140.5323486328126,40.42825698852545],[140.51004028320324,40.42692947387701],[140.48469543457043,40.44712448120123],[140.44407653808605,40.4470672607423],[140.43064880371116,40.47969436645508],[140.39468383789074,40.482460021972656],[140.36415100097668,40.475341796875114],[140.3385162353518,40.436668395996094],[140.29515075683594,40.443595886230526],[140.25137329101585,40.43779373168951],[140.22663879394543,40.42884826660156],[140.17471313476574,40.435508728027344],[140.11041259765648,40.43449020385742],[140.09951782226574,40.45357894897461],[140.06138610839866,40.46456909179693],[140.0328369140626,40.452480316162166],[140.01966857910156,40.41859817504894],[139.9999694824221,40.43152618408203],[139.93629455566418,40.427886962890625],[139.94964599609386,40.49838638305664],[139.93991088867233,40.55275344848633],[139.91787719726562,40.58569717407221],[139.866943359375,40.58527755737316],[139.8596801757816,40.61416625976574],[139.92443847656273,40.644721984863224],[139.96455383300793,40.683341979980526],[140.00262451171886,40.739894866943416],[140.0664520263672,40.76675415039074],[140.1087341308595,40.74300765991222],[140.14878845214855,40.748321533203125],[140.19532775878918,40.77871704101568],[140.242645263672,40.78506088256836],[140.2638397216798,40.80861282348644],[140.29360961914062,40.868671417236385],[140.3156738281251,40.947574615478516],[140.32186889648437,41.02545547485357],[140.3420867919922,41.00315856933594],[140.3592529296875,40.997856140136776],[140.37438964843773,41.02878189086914],[140.32424926757824,41.05639266967785],[140.32032775878906,41.09122085571295],[140.28367614746105,41.12240600585943],[140.3214569091797,41.14754104614269],[140.3362731933595,41.189731597900504],[140.332763671875,41.236946105957145],[140.3441619873047,41.261112213134766],[140.3912811279297,41.23816299438488],[140.43206787109386,41.19605255126959],[140.46163940429722,41.183387756347656],[140.5076141357422,41.19576263427729],[140.52725219726597,41.22090530395508],[140.5482635498047,41.228263854980526],[140.60723876953148,41.21150207519537],[140.64353942871105,41.17436599731445],[140.63157653808605,41.09992980957037],[140.65264892578136,41],[140.68824768066406,40.876407623291016],[140.70448303222656,40.85236358642584],[140.73519897460937,40.83060836791992],[140.79026794433605,40.83064651489258],[140.84854125976585,40.868583679199276],[140.87431335449241,40.90590286254894],[140.872283935547,40.93980407714844],[140.86334228515625,40.95368576049805],[140.88079833984398,41.00683593750006],[140.89837646484386,41.007095336914176],[140.9253692626953,40.99106597900402],[140.95130920410156,40.990840911865234],[140.99021911621094,40.951702117920036],[140.9808349609375,40.9305877685548],[141.0118103027346,40.93111038208002],[141.04222106933605,40.91500091552729],[141.06472778320324,40.91333389282238],[141.0827789306643,40.88694381713873],[141.1041717529298,40.87222290039074],[141.1502838134768,40.88027954101557],[141.18695068359386,40.91444396972656],[141.21888732910156,40.96611022949213],[141.23931884765625,41.02959060668945],[141.2479400634768,41.11002349853521],[141.27200317382858,41.135368347168026],[141.2786102294922,41.15935897827154],[141.2644805908203,41.19770050048828],[141.2311859130864,41.24434661865246],[141.18873596191406,41.277965545654354],[141.1602783203126,41.278057098388615],[141.11231994628918,41.21296691894531],[141.072998046875,41.19958114624029],[141.05218505859375,41.1821403503418],[141.01422119140625,41.19581604003906],[140.9783477783203,41.198463439941406],[140.9474334716798,41.17455291748058],[140.87600708007835,41.16678237915045],[140.83291625976585,41.14949417114269],[140.814666748047,41.130592346191406],[140.78250122070312,41.13111114501953],[140.7690124511721,41.141174316406364],[140.76390075683605,41.19524002075207],[140.78497314453125,41.22991180419922],[140.7788848876953,41.25277709960949],[140.79551696777366,41.27915954589844],[140.81639099121105,41.33861160278326],[140.83363342285156,41.40583801269537],[140.86637878418003,41.43655014038097],[140.90391540527344,41.4875106811524],[140.9096069335942,41.504795074463004],[140.89822387695324,41.5228157043457],[140.92469787597668,41.53483200073242],[140.95246887207054,41.521858215332145],[140.9808349609375,41.49524688720703],[141.0219421386721,41.4827766418457],[141.0633392333989,41.4827766418457],[141.10166931152366,41.46500015258789],[141.14198303222668,41.434608459472656],[141.19166564941418,41.38777923583996],[141.23805236816452,41.36388778686518],[141.27194213867187,41.354167938232365],[141.3108367919922,41.35111236572271],[141.34249877929687,41.3583335876466],[141.39555358886741,41.37916564941412],[141.4519500732422,41.42305374145508],[141.4613952636721,41.389167785644474],[141.43861389160156,41.345832824707145],[141.40444946289062,41.235000610351676],[141.390838623047,41.174999237060604],[141.39527893066418,41.131668090820256],[141.39361572265625,41.08666610717779],[141.38471984863304,41.00666809082037],[141.38703918457043,40.93651580810558],[141.39666748046875,40.847221374511776],[141.41250610351562,40.75749969482422],[141.4472198486328,40.638889312744254],[141.4850006103518,40.56083297729498],[141.55364990234375,40.53063201904308],[141.56594848632824,40.543312072753906],[141.61900329589855,40.50590896606457],[141.63768005371105,40.480014801025504],[141.68473815917991,40.44817733764643]]]]},"properties":{"ID_0":114,"ISO":"JP-02","NAME_0":"Japan","ID_1":3,"NAME_1":"Aomori","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"青森県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.87071228027355,35.718940734863395],[140.86318969726562,35.701347351074276],[140.81454467773437,35.71281814575195],[140.7518768310548,35.69321441650402],[140.69842529296886,35.701164245605526],[140.6485290527345,35.68524169921869],[140.61903381347656,35.66888427734375],[140.54750061035156,35.62083816528332],[140.5,35.582221984863395],[140.45416259765625,35.532501220703125],[140.42250061035156,35.48750305175781],[140.3947296142578,35.417781829833984],[140.39083862304687,35.3708381652832],[140.3958740234375,35.33245849609381],[140.41436767578125,35.30359268188482],[140.4011993408203,35.277755737304744],[140.40542602539062,35.2368736267091],[140.39399719238304,35.20286178588873],[140.37457275390648,35.17924499511719],[140.35638427734375,35.183891296386776],[140.33609008789074,35.167465209960994],[140.3263092041018,35.145271301269474],[140.29849243164108,35.15107345581066],[140.29026794433616,35.136211395263615],[140.24774169921898,35.13386535644531],[140.23712158203136,35.11705017089844],[140.20750427246116,35.113338470458984],[140.16972351074241,35.12361526489252],[140.1262207031251,35.11931991577154],[140.10925292968773,35.10777664184582],[140.10728454589844,35.090450286865234],[140.07244873046898,35.05603408813482],[140.05528259277366,35.0594482421875],[139.99676513671886,35.027702331543026],[139.97920227050827,35.009864807128906],[139.95971679687523,34.96583557128906],[139.96194458007812,34.940837860107536],[139.94139099121116,34.916671752929744],[139.90110778808594,34.90361022949213],[139.84361267089855,34.901947021484375],[139.82417297363293,34.90999984741205],[139.8255615234375,34.93250274658209],[139.78083801269577,34.95611572265625],[139.75917053222656,34.958061218261776],[139.7544403076172,34.978057861328125],[139.78582763671875,34.972503662109375],[139.8200073242191,34.978336334228516],[139.8291625976566,34.99083709716797],[139.8586120605471,34.996669769287166],[139.85281372070347,35.02345275878906],[139.82336425781273,35.03757476806646],[139.83180236816418,35.051483154296875],[139.8192138671876,35.06554412841791],[139.84255981445312,35.08651733398432],[139.82501220703125,35.112895965576286],[139.83837890625,35.129604339599666],[139.81936645507858,35.15374755859381],[139.81648254394554,35.17622375488281],[139.82452392578136,35.1980934143067],[139.8705596923828,35.22277832031256],[139.86819458007858,35.24614334106451],[139.84750366210937,35.27142333984381],[139.84478759765636,35.29219055175781],[139.8186492919923,35.316265106201115],[139.82302856445324,35.344562530517635],[139.85169982910156,35.357463836669865],[139.90209960937523,35.368408203125114],[139.90582275390636,35.389423370361385],[139.89645385742187,35.422885894775334],[139.92002868652366,35.44019317626953],[139.9486083984375,35.44212722778332],[139.96618652343773,35.4688835144043],[139.98948669433616,35.46862030029297],[140.00772094726562,35.47951126098644],[140.06040954589866,35.54319763183594],[140.0928192138672,35.55524444580084],[140.082275390625,35.597393035888786],[140.01379394531284,35.657279968261776],[139.98683166503952,35.65523147583008],[139.9842224121095,35.677368164062614],[139.95223999023437,35.67228698730469],[139.9295806884768,35.700786590576115],[139.9167938232423,35.724655151367244],[139.8948669433596,35.74654769897472],[139.89244079589855,35.78129959106445],[139.87496948242187,35.794319152832145],[139.8924255371095,35.80519866943371],[139.89251708984375,35.837333679199276],[139.90383911132835,35.86016845703125],[139.87815856933605,35.90981674194347],[139.84942626953125,35.93800735473644],[139.8186492919923,35.993057250976676],[139.81611633300804,36.03590011596674],[139.79368591308628,36.056060791015625],[139.78001403808594,36.09381866455078],[139.80117797851562,36.092758178710994],[139.81809997558628,36.05826568603527],[139.87332153320335,36.01292419433588],[139.89204406738293,35.982551574707145],[139.9372558593751,35.96520233154308],[139.9388885498047,35.94238662719738],[140.00038146972668,35.90684127807617],[140.0175018310548,35.90817260742199],[140.07035827636741,35.88295745849615],[140.12507629394543,35.87128067016613],[140.15475463867187,35.841609954833984],[140.2171630859375,35.85937881469732],[140.24996948242187,35.85406875610357],[140.2800750732422,35.87040328979492],[140.32075500488304,35.861106872558594],[140.36431884765636,35.89498519897461],[140.4046630859375,35.90619659423834],[140.42590332031295,35.90343856811529],[140.46624755859375,35.91653442382818],[140.5212554931643,35.895027160644645],[140.56741333007835,35.89664459228521],[140.62496948242187,35.8564910888673],[140.68763732910168,35.84556198120117],[140.70948791503918,35.83326721191406],[140.74404907226608,35.78251266479498],[140.79804992675793,35.750694274902344],[140.87071228027355,35.718940734863395]]]},"properties":{"ID_0":114,"ISO":"JP-12","NAME_0":"Japan","ID_1":4,"NAME_1":"Chiba","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"千葉県","VARNAME_1":"Tiba|Tsiba"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[132.6495819091797,34.009567260742244],[132.64123535156273,34.003387451171875],[132.6425018310547,33.96257781982422],[132.63293457031284,33.95387649536133],[132.59056091308605,33.95166778564453],[132.58612060546898,33.96941757202154],[132.6495819091797,34.009567260742244]]],[[[133.5972442626953,34.04128265380871],[133.6140747070316,34.029800415039176],[133.66209411621094,34.024291992187614],[133.69282531738293,34.010021209716854],[133.67803955078148,33.98146438598644],[133.6919403076172,33.96074295043945],[133.69183349609386,33.91662979125988],[133.68064880371094,33.890754699707145],[133.66322326660168,33.87840652465826],[133.63352966308628,33.87158966064453],[133.60943603515636,33.87833786010742],[133.58558654785202,33.86432266235357],[133.5596923828126,33.87871170043945],[133.54025268554722,33.8693199157716],[133.529052734375,33.851421356201115],[133.5000000000001,33.826107025146484],[133.47354125976562,33.833229064941406],[133.44044494628918,33.830867767333984],[133.42051696777344,33.83666229248047],[133.39508056640636,33.82296371459972],[133.3546600341798,33.828456878662166],[133.32824707031273,33.81137847900396],[133.29022216796875,33.82624053955084],[133.26989746093773,33.82038497924805],[133.25897216796875,33.789585113525504],[133.2234497070316,33.776935577392635],[133.1962585449221,33.790760040283146],[133.1831512451173,33.76147842407232],[133.16448974609386,33.74984741210932],[133.1631317138672,33.72805404663086],[133.1250000000001,33.68989944458008],[133.1109619140625,33.65459060668945],[133.0800170898441,33.6503257751466],[133.07249450683616,33.63276672363281],[133.0819244384769,33.605846405029354],[133.0583496093751,33.591938018798885],[133.04882812500023,33.57216262817394],[133.0633239746096,33.55997467041021],[133.0652008056643,33.53810501098633],[133.0470428466797,33.52645111083996],[133.01805114746094,33.48893737792986],[133.0176239013673,33.47756195068365],[132.95674133300793,33.46324539184582],[132.87382507324253,33.46774291992199],[132.84649658203136,33.47424316406244],[132.8094940185548,33.45675277709972],[132.82717895507824,33.44322586059582],[132.8349609375,33.40326309204124],[132.8527526855471,33.394927978515625],[132.86441040039108,33.3641242980957],[132.88699340820347,33.358036041259766],[132.90486145019543,33.3332901000976],[132.8985290527346,33.30888366699236],[132.8578338623047,33.28939056396496],[132.79658508300815,33.27154922485363],[132.78089904785156,33.249595642089844],[132.77185058593773,33.200786590576286],[132.75,33.199623107910156],[132.72833251953125,33.16493606567394],[132.6985473632816,33.13462066650396],[132.66412353515648,33.15210342407232],[132.62498474121116,33.17909240722662],[132.61802673339855,33.16663360595703],[132.63148498535168,33.12929534912115],[132.66584777832054,33.10550689697277],[132.6722412109375,33.08287811279297],[132.66032409668014,33.05344009399414],[132.6809539794922,33.02815628051769],[132.6887359619143,32.963905334472884],[132.68547058105491,32.94311904907238],[132.6648864746096,32.938678741455135],[132.66210937500034,32.92255783081055],[132.64300537109386,32.926845550537166],[132.60809326171875,32.9145965576173],[132.59249877929722,32.923332214355526],[132.59104919433605,32.941001892089844],[132.51325988769554,32.94980621337896],[132.52679443359398,32.92040252685547],[132.5174255371095,32.9036750793457],[132.47666931152355,32.90361022949219],[132.47106933593773,32.93512344360346],[132.4953613281251,32.943611145019474],[132.48138427734398,32.962547302246094],[132.4842987060548,32.980319976806754],[132.5111694335942,32.97668075561535],[132.5014343261721,33.00885772705095],[132.46597290039108,33.049545288086165],[132.47828674316406,33.07840347290039],[132.46388244628918,33.09007263183605],[132.49148559570324,33.12018966674805],[132.49742126464866,33.13737106323242],[132.454559326172,33.14165496826172],[132.43353271484398,33.15852737426758],[132.44078063964866,33.185798645019645],[132.48883056640648,33.16520309448242],[132.51242065429687,33.213615417480526],[132.54089355468773,33.21636199951166],[132.54670715332043,33.23266601562506],[132.5128326416018,33.258762359619254],[132.4884185791018,33.269443511963004],[132.48193359375023,33.28790283203142],[132.50852966308594,33.30617141723633],[132.46736145019543,33.31815338134771],[132.42276000976562,33.30367660522461],[132.36932373046886,33.32467651367199],[132.3769683837894,33.337760925293026],[132.4086151123048,33.35333251953125],[132.39057922363304,33.36535263061529],[132.3792419433595,33.38861083984392],[132.39505004882824,33.39611434936535],[132.38394165039085,33.418418884277344],[132.4147338867191,33.443553924560604],[132.4140777587893,33.458831787109375],[132.37783813476585,33.46262741088873],[132.34974670410156,33.4725074768067],[132.3056640625,33.47333145141613],[132.2810974121096,33.44730758666992],[132.2544708251953,33.440963745117244],[132.23728942871105,33.425361633300895],[132.18182373046886,33.41138839721674],[132.14553833007858,33.37585830688505],[132.10780334472668,33.36204147338867],[132.11555480957054,33.39076614379894],[132.08332824707054,33.39722061157255],[132.12266540527355,33.420578002929744],[132.18135070800793,33.44888687133795],[132.22380065918003,33.444301605224666],[132.23991394042991,33.46451950073248],[132.2650604248047,33.46804046630865],[132.3535614013672,33.51050567626953],[132.38471984863327,33.530555725097656],[132.4224548339846,33.54747009277355],[132.43345642089844,33.56892013549816],[132.4820251464845,33.61791229248047],[132.60031127929722,33.66209030151373],[132.65919494628918,33.70298767089844],[132.67803955078148,33.74462890625006],[132.70059204101574,33.761329650878906],[132.6902313232423,33.78890991210949],[132.68975830078136,33.81949996948248],[132.7015838623048,33.85092163085949],[132.69871520996105,33.877288818359375],[132.71170043945347,33.90650177001953],[132.73321533203125,33.902969360351676],[132.75486755371094,33.91099548339855],[132.76812744140636,33.9461402893067],[132.7691650390625,33.97499847412115],[132.78173828125,34.00612258911133],[132.7976837158203,34.00934600830084],[132.8579559326172,34.05494689941412],[132.91917419433605,34.065319061279354],[132.93167114257812,34.09361267089844],[132.923309326172,34.115928649902344],[132.9536285400393,34.12379837036133],[132.98249816894543,34.10277938842785],[133.00680541992187,34.06992721557623],[133.02256774902355,34.063243865966854],[133.06777954101574,33.975215911865234],[133.10218811035156,33.94141769409191],[133.12718200683594,33.940406799316406],[133.12799072265648,33.9202995300293],[133.1874237060547,33.944137573242244],[133.2342987060548,33.951969146728516],[133.25138854980491,33.96277618408203],[133.25614929199241,33.980617523193416],[133.28657531738315,33.978630065918026],[133.34597778320324,33.99123382568365],[133.3565826416019,33.979244232177734],[133.39273071289085,33.99065780639643],[133.429901123047,33.98726272583008],[133.49110412597656,33.96916580200195],[133.51986694335937,33.97317504882824],[133.54376220703148,33.9856796264649],[133.5417938232422,34.00345993041992],[133.5972442626953,34.04128265380871]]],[[[133.0369415283203,34.19564437866222],[133.0666656494144,34.19194412231445],[133.100555419922,34.1580543518067],[133.06111145019543,34.133056640625],[133.04306030273437,34.11305618286144],[133.02000427246116,34.10861206054699],[133.01919555664062,34.13706970214844],[133.04040527343773,34.15916824340826],[133.02027893066418,34.1788902282716],[133.0369415283203,34.19564437866222]]],[[[133.1108093261721,34.23501205444336],[133.12615966796886,34.19525527954113],[133.08279418945335,34.19268035888683],[133.0586547851566,34.22739791870117],[133.0958251953126,34.23888015747076],[133.1108093261721,34.23501205444336]]],[[[133.1538543701172,34.27956771850597],[133.16648864746116,34.255962371826115],[133.1324462890626,34.2420768737793],[133.13304138183628,34.26568984985346],[133.1538543701172,34.27956771850597]]],[[[133.23049926757847,34.29085922241222],[133.2380828857423,34.280731201171875],[133.20867919921898,34.25654220581049],[133.1987304687501,34.26874160766596],[133.23049926757847,34.29085922241222]]],[[[133.01802062988315,34.29695129394537],[133.02842712402366,34.29396438598633],[133.05473327636741,34.2537841796875],[133.05043029785168,34.21394348144531],[133.00283813476585,34.20969390869152],[132.9596557617191,34.19112014770502],[132.9470214843751,34.210105895996094],[132.95555114746116,34.22360992431652],[132.9901580810548,34.2243270874024],[132.9945526123048,34.24926757812506],[132.98106384277344,34.28643035888672],[133.01802062988315,34.29695129394537]]]]},"properties":{"ID_0":114,"ISO":"JP-38","NAME_0":"Japan","ID_1":5,"NAME_1":"Ehime","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"愛媛県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.24407958984386,36.29458236694336],[136.27336120605491,36.26274871826183],[136.30488586425827,36.25440216064453],[136.32940673828125,36.229114532470646],[136.34210205078136,36.17787551879883],[136.3630828857423,36.16246414184576],[136.4088287353518,36.16759872436529],[136.44201660156273,36.1362419128418],[136.46582031250023,36.13436126708996],[136.48374938964866,36.15116119384777],[136.5355682373047,36.144554138183594],[136.55479431152355,36.1517715454101],[136.59359741210937,36.128150939941406],[136.6165771484375,36.10721588134771],[136.6488800048828,36.09148406982433],[136.66110229492187,36.066032409668026],[136.70010375976574,36.07056427001953],[136.75706481933616,36.08582305908203],[136.7677917480471,36.065486907958984],[136.7426910400394,36.050395965576115],[136.73010253906284,35.993141174316406],[136.7553863525393,35.97795867919933],[136.7528991699221,35.955966949463004],[136.7928924560547,35.94451904296881],[136.7864685058596,35.92435455322271],[136.8251495361328,35.89317703247082],[136.83447265625,35.85226821899414],[136.80274963378918,35.83333206176769],[136.79966735839855,35.81081390380865],[136.7820281982422,35.795581817626896],[136.76385498046886,35.80731201171869],[136.72589111328136,35.80209732055664],[136.7091217041019,35.78830718994146],[136.62420654296875,35.78484344482422],[136.59811401367222,35.792072296142635],[136.57339477539085,35.774063110351676],[136.531982421875,35.78287124633795],[136.49998474121116,35.7623023986817],[136.48826599121094,35.772342681884766],[136.43443298339855,35.77172851562506],[136.38496398925804,35.791007995605526],[136.32955932617222,35.76933670043951],[136.3290252685547,35.72901153564459],[136.31240844726562,35.700355529785156],[136.27893066406273,35.661113739013615],[136.20227050781295,35.68664932250988],[136.18716430664074,35.69997024536144],[136.16433715820324,35.69386672973644],[136.13754272460937,35.66662979125988],[136.15347290039062,35.65384674072271],[136.1629333496096,35.62268066406244],[136.17956542968773,35.593700408935604],[136.17274475097668,35.56280517578125],[136.11672973632812,35.57597732543951],[136.11065673828125,35.54863739013683],[136.0739135742192,35.52358245849615],[136.03343200683605,35.52643966674816],[136.01036071777366,35.490226745605526],[135.98715209960937,35.48596954345703],[135.94790649414097,35.51799774169922],[135.92498779296886,35.482151031494254],[135.91407775878952,35.42708206176752],[135.89503479003918,35.40323638916021],[135.8662872314453,35.391563415527344],[135.84864807128952,35.40818023681646],[135.8153076171876,35.4084091186524],[135.81251525878906,35.38753890991222],[135.79364013671875,35.38333511352545],[135.7709655761721,35.35259628295904],[135.7203369140626,35.351467132568416],[135.70150756835937,35.34175109863281],[135.625,35.36643218994146],[135.5372314453126,35.37423706054693],[135.53062438964844,35.41044998168957],[135.51004028320335,35.41930389404308],[135.46412658691452,35.46074676513666],[135.47889709472656,35.50233459472656],[135.45243835449241,35.51990127563482],[135.4733123779297,35.55706405639654],[135.47491455078125,35.538246154785156],[135.50242614746105,35.52492141723627],[135.51589965820312,35.49476623535162],[135.53404235839844,35.48926544189459],[135.57666015625045,35.493202209472656],[135.6320037841797,35.537174224853516],[135.6422271728518,35.509159088134766],[135.62629699707043,35.489860534668026],[135.65405273437523,35.48058319091791],[135.70018005371094,35.49322891235363],[135.73538208007812,35.492839813232536],[135.75117492675804,35.53078842163097],[135.71694946289062,35.52055740356445],[135.71676635742187,35.54027175903326],[135.69082641601562,35.54944610595703],[135.71444702148472,35.56944274902355],[135.74972534179722,35.56666564941406],[135.75843811035202,35.54267120361334],[135.77542114257824,35.54939651489258],[135.7964324951173,35.52644729614252],[135.8179626464845,35.536876678466854],[135.82473754882812,35.552524566650504],[135.8555603027345,35.57916641235357],[135.8595428466798,35.61078643798834],[135.896240234375,35.615528106689396],[135.912841796875,35.609409332275504],[135.96609497070335,35.62157821655285],[135.98568725585937,35.64311981201172],[135.96337890625,35.65621948242199],[135.97743225097668,35.685901641845646],[135.96987915039062,35.71181869506847],[135.99325561523437,35.74858474731451],[136.01943969726562,35.76367568969738],[136.04457092285168,35.70506286621105],[136.0255584716797,35.6808319091798],[136.05555725097668,35.65611267089844],[136.07333374023483,35.66083145141607],[136.07916259765625,35.70194625854492],[136.09861755371094,35.72444534301758],[136.10028076171886,35.77694320678711],[136.0652770996096,35.828887939453125],[135.99429321289062,35.88782119750982],[135.9980621337894,35.933536529541016],[135.96240234375034,35.97092819213867],[135.95823669433594,35.98284149169922],[135.97332763671875,36.00555419921881],[135.99293518066406,36.015937805175895],[136.01110839843773,36.042594909668026],[136.03823852539108,36.1044921875],[136.05406188964866,36.126853942871094],[136.09451293945358,36.15356063842785],[136.09275817871116,36.163658142089844],[136.13563537597656,36.22033309936535],[136.1232452392578,36.249481201171875],[136.16632080078125,36.24986267089844],[136.21130371093784,36.27214431762701],[136.24407958984386,36.29458236694336]]]},"properties":{"ID_0":114,"ISO":"JP-18","NAME_0":"Japan","ID_1":6,"NAME_1":"Fukui","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"福井県","VARNAME_1":"Hukui"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[130.44667053222668,33.91472244262707],[130.42977905273437,33.88696670532232],[130.4094390869143,33.89222335815441],[130.40611267089844,33.90972137451172],[130.44667053222668,33.91472244262707]]],[[[131.18437194824241,33.606101989746094],[131.17544555664085,33.58328247070324],[131.1890563964845,33.562232971191406],[131.18754577636753,33.539524078369254],[131.1706695556643,33.527046203613395],[131.17726135253906,33.50740814208996],[131.1503143310548,33.50168609619152],[131.08023071289085,33.50283050537121],[131.0309295654298,33.51422882080084],[130.98387145996094,33.50438308715826],[130.93403625488293,33.47608184814459],[130.93104553222656,33.46342849731457],[130.90225219726562,33.4456787109375],[130.89334106445335,33.42462539672874],[130.88691711425793,33.37524414062494],[130.86189270019577,33.36981582641596],[130.85324096679687,33.3332901000976],[130.86781311035168,33.293045043945256],[130.86054992675827,33.265762329101506],[130.83439636230491,33.25451660156244],[130.8283691406251,33.23810195922857],[130.8466796875001,33.230125427246094],[130.84521484375,33.203910827637],[130.884979248047,33.18365859985346],[130.8772125244144,33.145317077636776],[130.8632812500001,33.113716125488395],[130.84564208984398,33.10315704345709],[130.83164978027344,33.10315704345709],[130.75872802734375,33.12972259521496],[130.73425292968773,33.151142120361385],[130.66943359375045,33.14490509033203],[130.65826416015625,33.105274200439624],[130.61520385742187,33.105274200439624],[130.5823211669923,33.112716674804744],[130.56597900390625,33.08979797363287],[130.52836608886753,33.0629768371582],[130.49996948242187,33.04889297485357],[130.51570129394577,33.013004302978516],[130.5092926025394,33.003131866455135],[130.46939086914074,32.99942779541021],[130.40081787109375,33.00639343261719],[130.4225006103519,33.02972412109381],[130.4250030517578,33.052776336670036],[130.41363525390648,33.08524322509771],[130.3972167968751,33.10660934448259],[130.37216186523437,33.11984252929699],[130.37290954589878,33.13827514648443],[130.3540954589846,33.14690399169933],[130.3627929687501,33.1993293762207],[130.39271545410168,33.24361038208008],[130.43812561035168,33.26874923706055],[130.48643493652344,33.304267883300895],[130.51246643066452,33.34095001220703],[130.53820800781295,33.339542388916016],[130.54277038574241,33.361961364746094],[130.54373168945335,33.416637420654354],[130.53935241699264,33.43541336059582],[130.51858520507824,33.44429779052729],[130.47129821777355,33.429294586181754],[130.43052673339844,33.39351654052746],[130.39889526367187,33.42388916015619],[130.36000061035156,33.43093109130871],[130.3326110839845,33.44916534423834],[130.30035400390648,33.459186553955135],[130.27360534667991,33.47655105590826],[130.249969482422,33.46767807006836],[130.2061767578126,33.47791290283203],[130.17092895507847,33.46433639526373],[130.10755920410156,33.472759246826286],[130.0992431640625,33.4665641784668],[130.03729248046898,33.467739105224666],[130.0502624511721,33.49494171142584],[130.09968566894554,33.51083374023449],[130.1158447265625,33.5075302124024],[130.12937927246094,33.52846908569347],[130.15371704101562,33.53731536865246],[130.1350097656251,33.566375732421875],[130.1198272705078,33.57369995117193],[130.10122680664085,33.56344604492199],[130.0885925292971,33.583503723144645],[130.10882568359386,33.596519470214844],[130.1313171386721,33.590148925781364],[130.16213989257824,33.61171722412121],[130.15628051757812,33.627956390380916],[130.18554687500045,33.63281250000006],[130.20742797851585,33.64763259887701],[130.22567749023437,33.63672256469732],[130.25111389160168,33.59666824340826],[130.27987670898437,33.58025360107433],[130.30084228515625,33.58158493041992],[130.31196594238304,33.59735107421881],[130.35614013671875,33.595367431640625],[130.39578247070324,33.609264373779354],[130.40843200683594,33.63283538818365],[130.40527343750045,33.65139007568371],[130.43515014648437,33.662246704101676],[130.40782165527378,33.68328094482416],[130.3950653076172,33.669670104980526],[130.36962890625,33.665363311767635],[130.35577392578125,33.64324951171875],[130.33338928222656,33.66002273559576],[130.38975524902344,33.6806373596192],[130.45916748046875,33.73784255981451],[130.4706878662114,33.77110671997082],[130.45013427734386,33.78467559814459],[130.44651794433605,33.80841445922857],[130.4677124023441,33.81271362304693],[130.48194885253952,33.8491668701173],[130.518524169922,33.860397338867244],[130.53015136718773,33.88217926025402],[130.55456542968773,33.89062118530279],[130.59130859375034,33.87742996215826],[130.6403961181643,33.88654708862305],[130.66360473632812,33.899723052978516],[130.66249084472656,33.913452148437614],[130.6874542236328,33.93451309204107],[130.71295166015625,33.93895339965832],[130.73693847656273,33.926387786865234],[130.77848815917991,33.93460083007818],[130.80732727050804,33.93118667602539],[130.82472229003906,33.920276641845646],[130.8530731201173,33.929256439208984],[130.90193176269554,33.89245605468756],[130.92739868164062,33.903743743896484],[130.96150207519543,33.959682464599666],[131.0192871093751,33.96286773681652],[131.02082824707043,33.94167709350586],[131.00238037109375,33.92203140258789],[130.9974975585942,33.89006805419922],[130.98561096191406,33.869014739990234],[130.9938659667971,33.85178375244146],[130.97575378418014,33.834293365478516],[130.95648193359398,33.8293075561524],[130.96746826171875,33.80964279174799],[130.99633789062523,33.79988479614269],[131.01733398437545,33.767868041992244],[131.0258789062501,33.714828491210994],[131.05078125000034,33.688877105713004],[131.06900024414085,33.655113220214844],[131.0987701416018,33.619876861572266],[131.13949584960937,33.626316070556754],[131.18437194824241,33.606101989746094]]]]},"properties":{"ID_0":114,"ISO":"JP-40","NAME_0":"Japan","ID_1":7,"NAME_1":"Fukuoka","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"福岡県","VARNAME_1":"Hukuoka"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.9313964843751,37.891799926757926],[140.95056152343773,37.84027862548834],[140.97166442871128,37.811111450195426],[140.96665954589855,37.786666870117244],[140.98777770996116,37.775833129882926],[141.01138305664062,37.74111175537121],[141.01222229003952,37.680831909179744],[141.02471923828125,37.64222335815441],[141.02577209472668,37.56943130493164],[141.03883361816406,37.50316619873047],[141.03443908691406,37.43305587768555],[141.03671264648437,37.36112213134771],[141.0265045166018,37.33644104003906],[141.02633666992233,37.30318450927746],[141.01487731933616,37.26409149169933],[141.0200653076173,37.23336410522461],[141.00177001953136,37.19062805175787],[140.99754333496105,37.12046051025402],[140.97863769531273,37.0737419128418],[140.972381591797,37.02316665649414],[140.9792175292971,37.00106048583996],[140.9483337402345,36.95500183105469],[140.92555236816406,36.93583297729492],[140.90916442871094,36.945556640625114],[140.8880615234376,36.939445495605526],[140.8419952392578,36.91050338745123],[140.82638549804687,36.91283416748047],[140.8008270263672,36.89472198486328],[140.79278564453125,36.85778808593756],[140.74375915527344,36.872322082519645],[140.7143554687501,36.87211227416992],[140.69883728027366,36.88490676879883],[140.6573486328125,36.897708892822266],[140.6184997558596,36.90027999877941],[140.59667968750034,36.923191070556754],[140.5720062255864,36.92340087890631],[140.59555053710937,36.87028121948248],[140.53890991210937,36.85029983520519],[140.47743225097656,36.792610168457145],[140.46499633789085,36.79299926757824],[140.44317626953125,36.81609344482433],[140.41665649414062,36.82893371582031],[140.38551330566418,36.833259582519645],[140.3685760498047,36.88064193725597],[140.32704162597656,36.89074325561535],[140.30699157714844,36.921684265136776],[140.2887115478518,36.93242263793945],[140.2607116699221,36.93367385864269],[140.24996948242187,36.955253601074276],[140.24415588378918,36.995105743408146],[140.252166748047,37.02285003662121],[140.2197875976566,37.01720428466797],[140.20213317871105,37.027866363525504],[140.19752502441406,37.05889129638683],[140.158203125,37.08142852783203],[140.14573669433605,37.09857559204107],[140.10585021972702,37.11800765991211],[140.0630340576172,37.122360229492244],[140.04510498046875,37.13427734375],[139.98939514160156,37.140785217285156],[139.9537048339845,37.1512184143067],[139.8695526123048,37.14415359497076],[139.83267211914085,37.12653350830084],[139.8196563720703,37.110809326171875],[139.82330322265625,37.08966827392578],[139.7854461669922,37.08670806884777],[139.75714111328148,37.07056427001953],[139.72166442871116,37.06639862060547],[139.6814880371095,37.05438232421875],[139.66815185546886,37.03735733032232],[139.62811279296886,37.02950668334961],[139.61643981933605,37.01175308227539],[139.58447265625,37.00814056396496],[139.5747833251953,36.998157501220646],[139.49996948242187,36.96526336669916],[139.4691314697268,36.96803665161133],[139.43338012695324,36.92647171020508],[139.3854980468751,36.908824920654354],[139.33993530273472,36.92351913452154],[139.29721069335972,36.932106018066406],[139.24240112304733,36.92974090576183],[139.2420806884769,36.94470596313488],[139.25440979003952,36.96163177490229],[139.25636291503918,36.993015289306584],[139.24864196777366,37.016376495361385],[139.2577667236328,37.05857849121094],[139.2384033203126,37.104331970214844],[139.25617980957043,37.156402587890625],[139.23240661621094,37.194190979003906],[139.19793701171898,37.20070266723644],[139.16804504394543,37.233318328857536],[139.18032836914062,37.25363922119152],[139.2116394042971,37.281620025634766],[139.22479248046898,37.311504364013786],[139.23944091796875,37.36360549926752],[139.23457336425827,37.38515090942394],[139.21482849121094,37.38972091674816],[139.2003631591797,37.407997131347656],[139.21981811523437,37.44031524658209],[139.28656005859375,37.44697952270508],[139.36648559570312,37.46665573120117],[139.4092864990239,37.46261596679693],[139.41711425781295,37.50490188598644],[139.46142578125034,37.51288223266607],[139.48907470703136,37.50730133056652],[139.52236938476585,37.51029586791992],[139.56381225585937,37.500865936279354],[139.5913543701172,37.52010345458979],[139.5693054199221,37.54314422607433],[139.57382202148437,37.576011657714844],[139.5579833984375,37.599464416503906],[139.55000305175804,37.627357482910156],[139.5542755126953,37.646938323974666],[139.57466125488327,37.65285491943354],[139.63160705566406,37.688911437988224],[139.62513732910156,37.69873428344721],[139.6612243652346,37.739997863769645],[139.66120910644543,37.75125885009777],[139.7413482666018,37.82018661499035],[139.7912750244143,37.824020385742244],[139.81341552734386,37.800300598144474],[139.86105346679687,37.82354354858404],[139.89184570312545,37.80791854858404],[139.92381286621094,37.81093597412121],[139.94055175781284,37.825088500976506],[139.96517944335937,37.803016662597656],[139.9632263183595,37.79307937622076],[139.9897613525394,37.75756072998058],[140.04389953613293,37.76721191406256],[140.0684661865239,37.76453399658209],[140.10482788085937,37.735694885253906],[140.12669372558605,37.730941772460994],[140.16433715820312,37.7535285949707],[140.2303009033203,37.74310302734375],[140.2808380126953,37.782367706298885],[140.29791259765648,37.80788040161133],[140.27015686035156,37.82425308227539],[140.2729492187501,37.86219406127924],[140.2678985595703,37.904975891113395],[140.2821807861328,37.93155288696295],[140.27525329589844,37.96472549438482],[140.2832946777345,37.97368240356451],[140.3217010498047,37.95518493652344],[140.35374450683594,37.947086334228516],[140.38926696777366,37.952453613281364],[140.4004364013672,37.97070312500006],[140.43663024902355,37.95083236694347],[140.46899414062523,37.94217681884777],[140.472900390625,37.915290832519645],[140.48748779296898,37.898517608642635],[140.54132080078136,37.90213775634777],[140.57312011718773,37.917366027832145],[140.59068298339866,37.906311035156364],[140.62188720703125,37.90920257568354],[140.62979125976585,37.89623641967779],[140.66348266601562,37.89776992797857],[140.68550109863293,37.88753128051769],[140.69427490234386,37.85042572021496],[140.6826629638672,37.83328247070324],[140.68963623046898,37.81156921386719],[140.72883605957043,37.78311920166027],[140.77940368652378,37.77854156494152],[140.78880310058594,37.80019378662115],[140.8542633056643,37.79202270507818],[140.8595886230471,37.8881454467774],[140.89617919921875,37.899150848388786],[140.9313964843751,37.891799926757926]]]},"properties":{"ID_0":114,"ISO":"JP-07","NAME_0":"Japan","ID_1":8,"NAME_1":"Fukushima","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"福島県","VARNAME_1":"Hukusima"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[137.59019470214866,36.38660049438482],[137.59672546386741,36.365638732910156],[137.61695861816452,36.3634986877442],[137.65382385253918,36.317062377929744],[137.64932250976585,36.28501129150396],[137.63133239746128,36.27393341064459],[137.57844543457043,36.21038055419922],[137.59780883789062,36.187900543213004],[137.5956268310548,36.1666145324707],[137.55752563476562,36.13713455200207],[137.55702209472668,36.103809356689396],[137.6179199218751,36.05889129638666],[137.60409545898437,36.04328155517578],[137.5967712402345,36.00835800170904],[137.5464477539066,35.976886749267635],[137.52737426757847,35.939201354980526],[137.50532531738304,35.93494033813482],[137.47853088378918,35.89118576049805],[137.45730590820358,35.888217926025504],[137.44052124023483,35.90192413330078],[137.3822021484376,35.887580871582145],[137.3645477294922,35.843780517578125],[137.33445739746116,35.833286285400504],[137.32928466796886,35.81087112426758],[137.3435516357422,35.794956207275504],[137.39657592773437,35.79455947875982],[137.39883422851562,35.77344512939459],[137.4615478515626,35.7580451965332],[137.4903564453126,35.71356964111334],[137.50204467773437,35.68412399291998],[137.52345275878918,35.67344284057623],[137.54505920410168,35.645061492920036],[137.51947021484398,35.61406707763683],[137.5395507812501,35.58330154418945],[137.53625488281273,35.53801727294922],[137.56202697753952,35.51344680786144],[137.5818786621095,35.5231094360351],[137.61622619628918,35.525859832763786],[137.63482666015648,35.50579071044922],[137.6349334716798,35.467887878418026],[137.60362243652355,35.448856353759766],[137.6380004882816,35.39843368530285],[137.60099792480503,35.376037597656364],[137.60707092285168,35.33331680297857],[137.56468200683616,35.306480407714844],[137.56509399414074,35.28435516357422],[137.52427673339855,35.28102493286133],[137.49998474121116,35.26084518432623],[137.43690490722702,35.222640991210994],[137.38687133789085,35.24325180053711],[137.37498474121128,35.259887695312614],[137.3452301025394,35.25835418701183],[137.33888244628918,35.271301269531364],[137.31085205078125,35.28797531127941],[137.27897644043014,35.287464141845646],[137.25433349609398,35.26674652099621],[137.20036315917991,35.24998092651373],[137.17927551269543,35.267093658447266],[137.12498474121094,35.292758941650504],[137.08328247070358,35.29337310791021],[137.06980895996128,35.30664825439453],[137.06634521484386,35.333328247070256],[137.04940795898437,35.33527374267578],[137.0508728027345,35.36220169067394],[137.01174926757858,35.378173828125],[136.98507690429687,35.406490325927734],[136.96409606933594,35.41207122802746],[136.9581756591798,35.39339447021496],[136.91673278808616,35.37490081787121],[136.87498474121116,35.369853973388615],[136.8323211669923,35.35410308837902],[136.79524230957054,35.36505126953125],[136.76768493652378,35.36053466796881],[136.72845458984398,35.292209625244254],[136.71553039550804,35.28214263916021],[136.6821441650393,35.236751556396484],[136.67922973632812,35.18070220947277],[136.67088317871116,35.14551544189453],[136.6250457763672,35.144584655761776],[136.58258056640648,35.19336700439453],[136.56300354003918,35.20351409912115],[136.5395660400394,35.246452331543026],[136.5134735107422,35.23643875122076],[136.46237182617187,35.2299041748048],[136.44651794433594,35.21570205688488],[136.4179840087893,35.21472549438482],[136.38177490234386,35.24361038208008],[136.39805603027344,35.2524299621582],[136.39895629882824,35.29118347167963],[136.41535949707043,35.31262969970709],[136.4240417480471,35.35063934326183],[136.41712951660156,35.36863708496094],[136.4453887939453,35.386920928955135],[136.42860412597656,35.399478912353516],[136.41819763183605,35.421852111816406],[136.42620849609386,35.44161224365246],[136.4229431152346,35.46357345581055],[136.40286254882812,35.47241592407238],[136.39097595214878,35.490322113037166],[136.40492248535156,35.515964508056584],[136.3840789794923,35.535305023193416],[136.35935974121094,35.535911560058594],[136.3197021484375,35.54769134521496],[136.32559204101562,35.573593139648494],[136.3158416748047,35.61979293823248],[136.2924041748047,35.617141723632756],[136.27893066406273,35.661113739013615],[136.31240844726562,35.700355529785156],[136.3290252685547,35.72901153564459],[136.32955932617222,35.76933670043951],[136.38496398925804,35.791007995605526],[136.43443298339855,35.77172851562506],[136.48826599121094,35.772342681884766],[136.49998474121116,35.7623023986817],[136.531982421875,35.78287124633795],[136.57339477539085,35.774063110351676],[136.59811401367222,35.792072296142635],[136.62420654296875,35.78484344482422],[136.7091217041019,35.78830718994146],[136.72589111328136,35.80209732055664],[136.76385498046886,35.80731201171869],[136.7820281982422,35.795581817626896],[136.79966735839855,35.81081390380865],[136.80274963378918,35.83333206176769],[136.83447265625,35.85226821899414],[136.8251495361328,35.89317703247082],[136.7864685058596,35.92435455322271],[136.7928924560547,35.94451904296881],[136.7528991699221,35.955966949463004],[136.7553863525393,35.97795867919933],[136.73010253906284,35.993141174316406],[136.7426910400394,36.050395965576115],[136.7677917480471,36.065486907958984],[136.75706481933616,36.08582305908203],[136.78254699707043,36.1307487487793],[136.77113342285156,36.16099548339844],[136.8017272949221,36.17052078247082],[136.80366516113327,36.18166351318371],[136.8495635986328,36.239444732666016],[136.8476104736328,36.25542068481457],[136.808837890625,36.27293777465832],[136.796142578125,36.29692077636713],[136.82582092285168,36.3001441955567],[136.843994140625,36.33327484130865],[136.8792724609375,36.36667251586914],[136.89219665527355,36.34243011474615],[136.91006469726585,36.357360839843864],[136.95663452148483,36.33609771728521],[136.9739685058596,36.30466461181646],[136.96080017089866,36.274520874023494],[136.97817993164108,36.271400451660156],[137.0108032226567,36.287277221679744],[137.0306091308596,36.314125061035156],[137.05505371093795,36.33328247070318],[137.06117248535168,36.368598937988395],[137.1262969970703,36.416606903076115],[137.14712524414085,36.4423713684082],[137.19453430175793,36.452163696289176],[137.2070465087893,36.43434906005865],[137.28144836425827,36.46258544921881],[137.3196258544922,36.45330047607433],[137.31317138671886,36.424507141113395],[137.35592651367187,36.43162918090832],[137.36904907226574,36.447685241699276],[137.39254760742187,36.45558547973633],[137.40684509277344,36.42385101318365],[137.46388244628906,36.40946578979498],[137.47763061523437,36.422252655029354],[137.49998474121116,36.42309188842768],[137.54287719726562,36.389430999755916],[137.59019470214866,36.38660049438482]]]},"properties":{"ID_0":114,"ISO":"JP-21","NAME_0":"Japan","ID_1":9,"NAME_1":"Gifu","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"岐阜県","VARNAME_1":"Gihu"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[139.2420806884769,36.94470596313488],[139.24240112304733,36.92974090576183],[139.29721069335972,36.932106018066406],[139.33993530273472,36.92351913452154],[139.3854980468751,36.908824920654354],[139.355926513672,36.84595489501959],[139.40797424316418,36.82814025878906],[139.3800964355471,36.788307189941406],[139.3562622070317,36.770534515380916],[139.37043762207043,36.722770690918026],[139.3404388427739,36.686687469482365],[139.33132934570324,36.63059234619146],[139.354217529297,36.61342239379894],[139.40599060058616,36.600360870361385],[139.46801757812523,36.60305023193354],[139.4856567382816,36.575309753418026],[139.4605255126953,36.5501327514649],[139.42353820800804,36.4995956420899],[139.44058227539074,36.46828460693365],[139.4151611328126,36.451347351074276],[139.36859130859375,36.3870201110841],[139.37063598632847,36.36556243896496],[139.3975830078125,36.34402847290045],[139.42416381835983,36.3332977294923],[139.42205810546898,36.30975723266613],[139.4786376953125,36.26980972290039],[139.52944946289108,36.28145599365246],[139.5655517578126,36.263938903808594],[139.607879638672,36.265213012695426],[139.6221618652345,36.27159500122082],[139.66114807128906,36.22826385498041],[139.6624755859375,36.21761703491222],[139.6468505859375,36.193569183349666],[139.62196350097702,36.18643188476574],[139.58569335937523,36.206134796142635],[139.53733825683628,36.18989181518555],[139.46688842773483,36.186122894287166],[139.374969482422,36.24141693115229],[139.33134460449253,36.23287582397472],[139.28192138671886,36.24449920654297],[139.2515869140626,36.238437652588004],[139.16563415527344,36.27367019653326],[139.1303253173828,36.27592849731451],[139.11076354980491,36.25814437866211],[139.06053161621094,36.17279052734375],[139.04551696777355,36.1255722045899],[139.026611328125,36.130653381347656],[138.99996948242233,36.12253570556652],[138.9679107666018,36.122577667236385],[138.96086120605491,36.105350494384766],[138.93418884277355,36.08492660522455],[138.90437316894543,36.087642669677734],[138.85032653808594,36.06402969360357],[138.8209686279297,36.03243637084972],[138.79878234863293,36.02776336669933],[138.75816345214855,36.03132247924799],[138.749969482422,36.011447906494254],[138.72033691406273,35.98995590209961],[138.6902313232423,35.990726470947266],[138.68391418457054,36.00754547119152],[138.65301513671898,36.01555252075195],[138.64038085937523,36.03502655029308],[138.6461334228518,36.064247131347656],[138.6334991455078,36.08832168579113],[138.65051269531273,36.10258865356451],[138.6361236572269,36.13036346435558],[138.603271484375,36.133438110351676],[138.58108520507835,36.164829254150504],[138.6125030517578,36.15833663940441],[138.63496398925793,36.17799758911127],[138.60705566406295,36.250007629394474],[138.60343933105514,36.27529525756836],[138.64659118652355,36.290603637695426],[138.65611267089855,36.30297088623058],[138.65321350097702,36.343097686767635],[138.6592254638672,36.363761901855526],[138.64491271972656,36.41098022460932],[138.60276794433594,36.4210090637207],[138.5669403076172,36.41707611083996],[138.5337371826172,36.39953231811529],[138.49996948242187,36.41102600097656],[138.48947143554687,36.398384094238395],[138.4676361083989,36.401187896728516],[138.4510345458989,36.41668319702154],[138.40423583984375,36.43157958984369],[138.4009552001953,36.48472213745117],[138.4157562255864,36.53844070434582],[138.43162536621105,36.55261993408209],[138.4239959716798,36.570377349853516],[138.43084716796875,36.5933074951173],[138.4550018310548,36.60895156860357],[138.46127319335937,36.628631591796875],[138.5281982421875,36.648105621338004],[138.5210876464845,36.673751831054744],[138.52871704101574,36.692543029785156],[138.54780578613315,36.700691223144645],[138.61920166015625,36.707515716552734],[138.6249694824221,36.716766357421875],[138.6756134033203,36.727554321289176],[138.69792175293003,36.74103164672863],[138.7105255126953,36.734336853027344],[138.74076843261764,36.75892257690441],[138.78970336914062,36.7420539855957],[138.8030548095703,36.757083892822266],[138.82417297363293,36.76076126098633],[138.8334197998048,36.78978347778326],[138.8246765136721,36.81001281738281],[138.85748291015648,36.808864593505916],[138.88484191894565,36.82266235351568],[138.93301391601585,36.83427429199219],[138.9203338623047,36.852298736572266],[138.9351806640626,36.890899658203125],[138.98272705078125,36.89688873291021],[138.96815490722668,36.94342422485346],[138.96903991699241,36.97558212280279],[139.0004119873048,36.97630310058605],[139.05203247070335,36.987102508544865],[139.09379577636741,37.01668930053711],[139.09382629394543,37.0389137268067],[139.11033630371094,37.05266189575207],[139.1573333740239,37.00480651855469],[139.1779785156251,36.99225616455084],[139.18341064453148,36.961521148681754],[139.2098388671876,36.95280075073242],[139.23033142089866,36.95856094360357],[139.2420806884769,36.94470596313488]]]},"properties":{"ID_0":114,"ISO":"JP-10","NAME_0":"Japan","ID_1":10,"NAME_1":"Gunma","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"群馬県","VARNAME_1":"GunmaGumma"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[132.3896179199221,34.175277709960994],[132.41122436523483,34.16717529296869],[132.40036010742233,34.146362304687614],[132.38302612304687,34.158962249755916],[132.3896179199221,34.175277709960994]]],[[[132.84976196289074,34.19072341918957],[132.8693542480471,34.17683792114258],[132.81964111328136,34.150871276855526],[132.80250549316406,34.154724121093864],[132.8074951171875,34.178054809570256],[132.84976196289074,34.19072341918957]]],[[[132.6746978759769,34.202461242675724],[132.68463134765625,34.18772506713867],[132.6734771728518,34.17243957519537],[132.6445312500001,34.173740386963004],[132.6562652587893,34.19595336914074],[132.6746978759769,34.202461242675724]]],[[[132.7114715576172,34.20446777343756],[132.75999450683594,34.19111251831049],[132.76577758789085,34.177791595458984],[132.71711730957054,34.17287063598633],[132.69140625000023,34.183807373046875],[132.7114715576172,34.20446777343756]]],[[[132.9317321777346,34.28467178344732],[132.94218444824241,34.27770996093756],[132.91760253906273,34.232925415039176],[132.9209747314453,34.21511459350597],[132.87458801269565,34.206054687500114],[132.85089111328136,34.21235275268555],[132.8389282226566,34.241779327392635],[132.8780517578125,34.24869537353521],[132.9317321777346,34.28467178344732]]],[[[132.4901123046875,34.28319931030285],[132.4990692138672,34.26508712768566],[132.4910278320316,34.2041473388673],[132.47279357910168,34.18510818481451],[132.4909667968751,34.15000152587902],[132.46025085449264,34.133724212646484],[132.446044921875,34.137107849121094],[132.4437713623047,34.169715881347656],[132.4222564697268,34.18152236938488],[132.38427734375023,34.22801589965826],[132.38856506347668,34.26078414916992],[132.4253692626953,34.25487518310558],[132.44393920898437,34.223190307617244],[132.47210693359386,34.24265289306652],[132.44551086425804,34.26652908325201],[132.4414062500001,34.2888069152832],[132.4901123046875,34.28319931030285]]],[[[132.33453369140648,34.30493545532238],[132.3482360839846,34.28263854980469],[132.30319213867187,34.24400329589855],[132.27557373046886,34.232616424560604],[132.2626953125001,34.25248718261719],[132.28977966308605,34.287559509277344],[132.33453369140648,34.30493545532238]]],[[[133.13426208496105,34.31603622436535],[133.14718627929687,34.28796768188488],[133.11749267578148,34.27515411376953],[133.09352111816418,34.25624847412104],[133.0678253173828,34.273208618164176],[133.08427429199241,34.30736541748041],[133.13426208496105,34.31603622436535]]],[[[133.15492248535168,34.357650756835994],[133.17680358886741,34.35537719726574],[133.21084594726574,34.31346511840826],[133.19233703613293,34.27388381958019],[133.15661621093795,34.29808044433594],[133.13357543945324,34.33439254760742],[133.15492248535168,34.357650756835994]]],[[[133.11703491210937,34.35954666137695],[133.12690734863293,34.33689498901367],[133.11160278320358,34.31704330444336],[133.0950927734375,34.324821472168026],[133.10383605957043,34.3558921813966],[133.11703491210937,34.35954666137695]]],[[[133.3193206787114,34.36956787109375],[133.3218994140625,34.35349273681652],[133.2677459716797,34.33312225341791],[133.26449584960937,34.34841537475597],[133.3018798828125,34.36827087402344],[133.3193206787114,34.36956787109375]]],[[[133.21983337402344,34.407207489013786],[133.23721313476562,34.39266586303722],[133.21897888183616,34.3795166015625],[133.21615600585937,34.36309814453125],[133.18984985351574,34.35725784301758],[133.17411804199241,34.36656570434582],[133.17245483398483,34.39294433593756],[133.21983337402344,34.407207489013786]]],[[[133.14395141601562,35.07317352294916],[133.1715850830078,35.064575195312614],[133.25102233886741,35.075439453125114],[133.2721405029297,35.05456924438471],[133.30598449707043,35.01515579223633],[133.32321166992187,35.003643035888615],[133.3229370117192,34.987743377685604],[133.29992675781284,34.95323562622082],[133.3046264648442,34.92678070068365],[133.29949951171886,34.88657760620117],[133.34809875488304,34.82643508911144],[133.3807067871096,34.80300903320318],[133.36584472656273,34.75605392456066],[133.3766632080078,34.69465255737299],[133.4052886962893,34.666629791259766],[133.38613891601597,34.61838531494146],[133.4080505371095,34.586799621581974],[133.42469787597656,34.58329010009771],[133.45201110839866,34.539608001708984],[133.44822692871116,34.50257110595709],[133.453826904297,34.47617721557623],[133.43931579589844,34.4352912902832],[133.39453125000034,34.425876617431754],[133.38479614257824,34.417640686035156],[133.38414001464866,34.38214492797857],[133.3679351806643,34.3694686889649],[133.33654785156284,34.38032913208002],[133.29025268554687,34.38311767578125],[133.27175903320312,34.40660476684582],[133.26954650878918,34.4332160949707],[133.18687438964844,34.40036773681646],[133.12789916992187,34.382450103759766],[133.09033203125,34.38291549682623],[133.07911682128906,34.3450279235841],[133.01638793945324,34.328666687011776],[132.9938659667971,34.33683013916021],[132.94221496582054,34.334945678710994],[132.9285583496095,34.32533645629894],[132.89411926269554,34.325725555420036],[132.86175537109386,34.29736328125006],[132.83674621582054,34.31254959106451],[132.80477905273472,34.31004714965826],[132.78416442871105,34.27539443969738],[132.75785827636753,34.28107070922857],[132.75379943847668,34.23861694335943],[132.73323059082043,34.24244689941412],[132.696014404297,34.234451293945426],[132.68041992187534,34.20997238159191],[132.64251708984375,34.20121002197271],[132.59652709960937,34.228500366210994],[132.57580566406273,34.20307922363281],[132.5507049560548,34.19477081298834],[132.55667114257812,34.18000030517578],[132.53111267089844,34.14722061157238],[132.5530548095703,34.1441650390625],[132.54138183593784,34.11555480957031],[132.57139587402366,34.1158332824707],[132.56277465820312,34.08944320678722],[132.54804992675815,34.08833312988287],[132.50389099121116,34.10361099243164],[132.49916076660202,34.09166717529297],[132.45722961425793,34.084167480468864],[132.44805908203136,34.10916519165039],[132.50743103027378,34.14043045043945],[132.4932556152345,34.15371322631847],[132.506103515625,34.18833160400402],[132.5441894531251,34.20963287353521],[132.55857849121094,34.2376823425293],[132.54006958007812,34.243045806884766],[132.5143280029297,34.26686859130865],[132.51856994628918,34.28185272216797],[132.49484252929722,34.314037322998104],[132.5040740966798,34.33562088012701],[132.49243164062523,34.353469848632926],[132.4588775634768,34.35058593750006],[132.45735168457054,34.36570358276367],[132.3675994873048,34.361358642578125],[132.28894042968773,34.29801940917963],[132.28019714355514,34.2830924987793],[132.23805236816418,34.26102828979498],[132.220916748047,34.23403167724615],[132.23435974121116,34.227500915527344],[132.18714904785168,34.224731445312614],[132.15245056152355,34.23270416259771],[132.12692260742187,34.29441833496094],[132.131072998047,34.320945739746094],[132.10160827636741,34.34314727783209],[132.07217407226597,34.352977752685604],[132.0797576904297,34.38362503051758],[132.07199096679687,34.41112518310541],[132.08059692382812,34.444988250732365],[132.06553649902344,34.47348022460949],[132.04089355468784,34.49995803833008],[132.05606079101585,34.526756286621094],[132.08631896972656,34.53416061401373],[132.11807250976608,34.562492370605526],[132.12709045410168,34.58328628540039],[132.11946105957043,34.60544967651367],[132.12887573242187,34.63711929321289],[132.16421508789085,34.68012619018566],[132.1362762451172,34.69430160522461],[132.1512908935548,34.7146568298341],[132.20498657226585,34.74545669555664],[132.21549987792991,34.74174880981457],[132.24281311035202,34.776737213134766],[132.2537841796875,34.80389785766613],[132.2807312011721,34.793609619140625],[132.3011932373048,34.773681640625114],[132.3119659423828,34.792259216308594],[132.3437500000001,34.788421630859375],[132.3643493652345,34.797019958496094],[132.40147399902366,34.78022003173828],[132.42369079589878,34.808685302734375],[132.44447326660168,34.81448745727539],[132.45692443847656,34.79746246337896],[132.53973388671898,34.79198455810558],[132.56898498535168,34.802757263183594],[132.61441040039074,34.83631134033203],[132.6510772705078,34.83674621582037],[132.66238403320324,34.8289413452149],[132.68394470214866,34.847305297851676],[132.7115936279298,34.856361389160156],[132.70323181152366,34.87866973876953],[132.6506347656251,34.89690780639654],[132.6588745117191,34.920021057128906],[132.67813110351597,34.929317474365234],[132.69219970703136,34.94888305664068],[132.75279235839855,34.95952224731451],[132.7744140625,34.99415969848633],[132.8082733154297,35.0233039855957],[132.83023071289074,35.05780410766613],[132.87461853027344,35.09853363037104],[132.89474487304733,35.10161972045904],[132.90919494628918,35.08728408813482],[132.95304870605491,35.07233428955084],[132.98063659668003,35.08330917358404],[132.9929962158203,35.0979957580567],[133.04258728027344,35.06485748291021],[133.0616455078126,35.076087951660156],[133.11468505859375,35.08249664306652],[133.14395141601562,35.07317352294916]]]]},"properties":{"ID_0":114,"ISO":"JP-34","NAME_0":"Japan","ID_1":11,"NAME_1":"Hiroshima","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"広島県","VARNAME_1":"Hirosima"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[139.55972290039085,42.25305557250988],[139.56126403808605,42.22897338867182],[139.5447235107423,42.20222091674805],[139.51666259765648,42.175556182861385],[139.5202789306643,42.13611221313482],[139.49610900878918,42.08277893066412],[139.47972106933605,42.07055664062506],[139.4430541992192,42.064167022705135],[139.4244384765625,42.07138824462902],[139.4230499267578,42.12944412231457],[139.4038848876953,42.1650009155274],[139.43360900878906,42.21555709838867],[139.45916748046875,42.216110229492244],[139.5363922119144,42.233612060546875],[139.55972290039085,42.25305557250988]]],[[[141.3256072998048,44.44232177734375],[141.3352508544922,44.43048858642578],[141.3142547607422,44.41444778442394],[141.2946929931643,44.42226791381847],[141.3256072998048,44.44232177734375]]],[[[141.19447326660156,45.258724212646484],[141.2279052734376,45.23650360107422],[141.27510070800793,45.2342529296875],[141.30247497558616,45.21602249145508],[141.3241729736328,45.18527603149414],[141.32894897460937,45.15081405639654],[141.27485656738304,45.11029815673834],[141.23745727539085,45.09736633300787],[141.17730712890625,45.12916564941412],[141.14085388183594,45.162322998046875],[141.14222717285156,45.19055557250988],[141.1328887939453,45.214210510253906],[141.1562500000001,45.2359619140625],[141.19447326660156,45.258724212646484]]],[[[140.97657775878918,45.45486831665045],[141.00000000000023,45.43444442749029],[141.02328491210983,45.435390472412166],[141.0492095947268,45.451427459716854],[141.0599822998047,45.43129730224615],[141.05584716796898,45.38676834106451],[141.05917358398437,45.35138320922863],[141.0495147705078,45.33997344970709],[141.05641174316406,45.31744003295893],[141.04487609863293,45.298301696777344],[141.026580810547,45.297767639160156],[141.00384521484386,45.3279647827149],[140.98138427734386,45.38305664062506],[140.99082946777366,45.429443359375114],[140.97657775878918,45.45486831665045]]],[[[141.93801879882835,45.522708892822266],[141.96128845214866,45.51063919067394],[141.96978759765625,45.482391357421875],[141.9986114501953,45.4594459533692],[142.01895141601562,45.45323562622082],[142.03189086914108,45.4216423034668],[142.05236816406284,45.399574279785156],[142.16905212402355,45.33962249755871],[142.28083801269543,45.22788238525402],[142.40928649902344,45.11874771118164],[142.50708007812534,45.040786743164006],[142.53199768066452,45.02835083007824],[142.53907775878918,44.9915504455567],[142.58209228515625,44.959197998046875],[142.58392333984386,44.92343139648449],[142.6005859375,44.9046630859375],[142.6313171386721,44.88815307617199],[142.65863037109398,44.8409156799317],[142.67372131347668,44.834777832031364],[142.74148559570324,44.757888793945426],[142.79353332519543,44.71591949462902],[142.85981750488304,44.67617416381847],[142.8704833984375,44.66199111938482],[142.9325714111328,44.62246322631836],[142.9899139404298,44.56034469604498],[143.06050109863304,44.522872924804744],[143.07777404785156,44.508888244628906],[143.2113037109375,44.44131851196295],[143.23033142089855,44.423690795898494],[143.28189086914062,44.397590637207145],[143.34817504882824,44.37046432495117],[143.3648681640625,44.33600234985357],[143.4146881103518,44.30799102783203],[143.50048828125,44.273735046386776],[143.4876708984375,44.25463485717785],[143.5094451904297,44.24644851684582],[143.53919982910156,44.25898742675781],[143.63960266113293,44.22456741333008],[143.74234008789062,44.192691802978516],[143.68887329101597,44.19521331787121],[143.6682586669923,44.185138702392635],[143.7068328857422,44.15798950195318],[143.72082519531273,44.121849060058594],[143.75022888183605,44.119945526123104],[143.76194763183594,44.09777069091808],[143.80834960937523,44.09673690795893],[143.8414001464845,44.10792541503906],[143.89242553710937,44.100666046142635],[143.94444274902355,44.08587646484381],[143.9574432373047,44.0974693298341],[143.97181701660168,44.131809234619254],[144.10911560058594,44.11885070800787],[144.17166137695312,44.09793090820324],[144.11463928222656,44.090713500976676],[144.0985565185548,44.027145385742244],[144.11326599121094,44.013584136962834],[144.15101623535168,44.01634216308588],[144.17955017089866,44.031841278076286],[144.19770812988293,44.06739044189459],[144.19497680664074,44.100772857666016],[144.24894714355491,44.11075210571295],[144.25799560546886,44.08483505249029],[144.25474548339844,44.03841018676758],[144.27389526367187,44.022499084472656],[144.29905700683594,43.981559753418026],[144.36135864257824,43.95609664916998],[144.3943023681643,43.92531967163086],[144.43510437011741,43.93367385864258],[144.54002380371116,43.922065734863395],[144.6131286621095,43.916465759277344],[144.70205688476597,43.91790008544933],[144.79168701171886,43.93007659912121],[144.83433532714866,43.951122283935604],[144.8459014892578,43.97128295898449],[144.87564086914062,43.98253631591808],[144.91627502441406,44.009567260742244],[144.94285583496116,44.03870773315441],[145.00936889648437,44.08416748046881],[145.00909423828136,44.09453201293951],[145.0703582763673,44.12458801269537],[145.12644958496094,44.16553497314453],[145.19166564941418,44.1946754455567],[145.22514343261741,44.246807098388786],[145.30503845214866,44.311225891113224],[145.3137969970703,44.33238601684576],[145.341796875,44.32579421997082],[145.34931945800804,44.294181823730526],[145.36643981933594,44.27087402343756],[145.3621215820317,44.25138854980469],[145.30610656738293,44.167007446289176],[145.26438903808594,44.138183593750114],[145.24038696289085,44.08893966674805],[145.2457427978518,44.068084716796875],[145.2228698730471,44.03754043579107],[145.18060302734386,44.006790161132926],[145.13055419921898,43.95055389404297],[145.11917114257824,43.92333221435547],[145.09388732910156,43.889720916748104],[145.0988922119143,43.85916519165045],[145.08161926269565,43.81861114501953],[145.06195068359386,43.80638885498047],[145.05931091308594,43.786228179931584],[145.07055664062534,43.74527740478527],[145.0947265625001,43.72416687011719],[145.149169921875,43.644165039062614],[145.18888854980491,43.63166809082031],[145.19555664062523,43.59944534301769],[145.23527526855491,43.54249954223633],[145.26138305664085,43.4555549621582],[145.2638854980471,43.43333435058594],[145.2977752685547,43.37222290039074],[145.29083251953136,43.35527801513672],[145.2405548095703,43.359443664550895],[145.22084045410168,43.34055709838873],[145.2355499267578,43.32888793945324],[145.24806213378952,43.29777908325195],[145.27749633789074,43.32249832153332],[145.30360412597668,43.321666717529354],[145.30250549316406,43.283889770507926],[145.3308258056643,43.28472137451172],[145.37971496582043,43.268611907958984],[145.4602813720703,43.26166534423828],[145.47666931152344,43.27277755737305],[145.53054809570324,43.24139022827154],[145.5052490234375,43.28040313720709],[145.53103637695312,43.3124618530274],[145.5769500732423,43.333889007568416],[145.59407043457043,43.353446960449276],[145.6373443603518,43.372734069824276],[145.6510009765625,43.391574859619254],[145.7215576171875,43.38370132446295],[145.7355651855471,43.392776489257926],[145.8042144775393,43.387920379638786],[145.8118591308596,43.3695182800293],[145.7597198486328,43.34194564819347],[145.70582580566452,43.3344459533692],[145.67324829101574,43.31617736816406],[145.63471984863293,43.31999969482422],[145.58778381347668,43.27972412109369],[145.5705566406251,43.28583145141607],[145.5494384765626,43.23083496093756],[145.53250122070324,43.21083450317383],[145.5366668701173,43.19583511352545],[145.5236053466797,43.16694259643555],[145.47471618652355,43.18805694580084],[145.4250030517578,43.1875],[145.35305786132812,43.17722320556646],[145.31889343261753,43.166667938232536],[145.28472900390636,43.16972351074219],[145.25,43.15944290161144],[145.22332763671886,43.14083480834961],[145.18347167968784,43.13995361328125],[145.1694488525393,43.15000152587902],[145.14472961425793,43.14389038085949],[145.1136169433595,43.122222900390625],[145.11721801757858,43.08166503906256],[145.09056091308605,43.06916809082031],[145.08709716796886,43.0447235107423],[145.03054809570312,43.02916717529297],[145.0255584716797,42.999443054199276],[144.96189880371094,42.98008346557623],[144.92889404296875,42.990001678466854],[144.87738037109375,42.98496246337896],[144.8560485839846,43.010028839111385],[144.86502075195335,43.029335021972656],[144.90074157714855,43.01640701293957],[144.9499511718751,43.04734420776367],[144.91836547851562,43.064144134521484],[144.88174438476562,43.06895828247076],[144.85380554199241,43.08079910278326],[144.84883117675804,43.05686569213867],[144.7844696044922,43.05533599853521],[144.74125671386741,43.017639160156364],[144.7228240966798,42.97642135620117],[144.77525329589855,42.94215393066406],[144.73916625976585,42.9327774047851],[144.67474365234375,42.93869018554682],[144.63110351562534,42.95083236694336],[144.55111694335983,42.946388244628906],[144.5288085937501,42.95137405395502],[144.4850006103519,42.93916702270502],[144.44940185546898,42.94341278076183],[144.3752136230471,42.967292785644645],[144.35388183593773,42.99666595458996],[144.31597900390636,43.005287170410156],[144.2660675048828,43.003097534179744],[144.1999969482423,42.99222183227539],[144.1294403076173,42.97083282470709],[144.102783203125,42.9561119079591],[144.03721618652344,42.93666839599615],[143.93028259277355,42.88116455078131],[143.87405395507824,42.84606933593756],[143.61981201171886,42.66297531127941],[143.55667114257824,42.60444259643555],[143.5258331298828,42.589443206787166],[143.52111816406273,42.571109771728516],[143.4318542480471,42.472274780273494],[143.3794403076173,42.401943206787166],[143.32373046875023,42.30925369262701],[143.30805969238293,42.243755340576115],[143.3197174072268,42.211112976074276],[143.33506774902344,42.202560424804744],[143.32443237304687,42.161621093750114],[143.32229614257812,42.11711502075195],[143.30722045898437,42.075553894043026],[143.31195068359386,42.05444335937494],[143.2558288574221,41.99805450439453],[143.24032592773437,41.94834136962902],[143.2462615966798,41.927898406982365],[143.16279602050793,41.98316574096691],[143.16119384765636,41.996128082275504],[143.13587951660168,42.026268005371094],[143.06385803222656,42.06386947631847],[142.9997100830078,42.086242675781364],[142.96417236328148,42.11869049072277],[142.90718078613293,42.13295745849615],[142.87519836425815,42.13187026977545],[142.81553649902344,42.14110565185547],[142.77305603027366,42.160831451416016],[142.76435852050793,42.17269897460932],[142.7228240966797,42.18395614624029],[142.67303466796875,42.19095230102539],[142.6251220703126,42.223674774170036],[142.57611083984386,42.24515533447277],[142.55226135253918,42.247432708740234],[142.50885009765625,42.267181396484375],[142.475830078125,42.2739715576173],[142.4340057373048,42.307373046875],[142.4052734375,42.30895996093756],[142.37210083007812,42.32326889038097],[142.27697753906273,42.37657165527355],[142.27012634277355,42.38644027709961],[142.19082641601574,42.44924163818371],[142.13339233398437,42.46736907958996],[142.07611083984398,42.471389770507756],[142.02827453613293,42.48411178588867],[142.0141601562501,42.49972152709955],[141.98146057128906,42.515819549560604],[141.90275573730491,42.57617568969738],[141.80897521972668,42.609958648681584],[141.7147216796876,42.62777709960949],[141.67054748535156,42.63025283813482],[141.59056091308594,42.624721527099666],[141.52389526367187,42.611667633056754],[141.44888305664097,42.58805465698242],[141.33639526367187,42.535556793213004],[141.28048706054687,42.503063201904354],[141.22193908691406,42.46361160278332],[141.1458282470703,42.43416595458996],[141.08332824707043,42.3883323669433],[141.0520935058595,42.35518264770508],[141.01338195800793,42.32209777832031],[141.00299072265625,42.3006210327149],[140.94786071777344,42.31666946411133],[140.9306182861328,42.335403442382756],[140.9478912353518,42.344463348388615],[140.9858551025393,42.330471038818416],[140.97566223144543,42.357200622558594],[140.9344940185547,42.363681793213004],[140.90817260742187,42.37700271606451],[140.8969268798828,42.42494201660162],[140.86936950683605,42.461860656738224],[140.83340454101562,42.47334289550781],[140.803466796875,42.49750137329107],[140.7839355468751,42.50148773193371],[140.76460266113304,42.54646301269537],[140.70907592773437,42.58255386352539],[140.6452331542971,42.58649826049799],[140.56712341308594,42.570114135742244],[140.5330047607422,42.58877563476568],[140.46871948242187,42.58631896972662],[140.42280578613304,42.55321884155279],[140.38677978515648,42.51997756958008],[140.3589019775393,42.48651504516613],[140.32371520996105,42.43434524536133],[140.2877197265625,42.35852432250988],[140.27723693847656,42.320781707763786],[140.27508544921886,42.28735733032232],[140.29597473144543,42.24359130859381],[140.340576171875,42.22645950317383],[140.3843536376953,42.223388671875114],[140.41116333007835,42.20071029663086],[140.45852661132824,42.17559051513672],[140.511932373047,42.13130950927729],[140.5461883544922,42.11444091796881],[140.58006286621105,42.10794067382818],[140.6560974121096,42.12849807739269],[140.69180297851574,42.12674331665045],[140.70837402343773,42.138389587402344],[140.76216125488304,42.113887786865234],[140.7752075195316,42.0837860107423],[140.79536437988293,42.074645996093864],[140.82212829589878,42.033027648925895],[140.87530517578125,42.007160186767635],[140.9088592529298,41.982467651367244],[140.937225341797,41.937133789062614],[140.9610137939453,41.91482543945307],[141.01167297363293,41.893333435058594],[141.07110595703148,41.888053894043026],[141.14527893066406,41.856388092041016],[141.14721679687523,41.83000183105469],[141.17778015136764,41.820556640625114],[141.18623352050793,41.80222320556646],[141.15611267089844,41.78416824340826],[141.11471557617222,41.78749847412115],[141.08055114746105,41.758056640625],[141.07444763183605,41.741111755371094],[140.99765014648437,41.71406555175787],[140.9504852294923,41.715270996093864],[140.9247436523441,41.73954391479498],[140.86183166503906,41.75884246826172],[140.83665466308594,41.75963592529297],[140.7752685546875,41.77491378784191],[140.7375030517578,41.76833343505871],[140.7224578857423,41.745235443115234],[140.70523071289062,41.739765167236385],[140.69230651855491,41.76457214355469],[140.7233276367191,41.77062988281244],[140.7270965576173,41.78974914550781],[140.6989288330078,41.81692504882824],[140.66119384765625,41.82194137573248],[140.62422180175804,41.80723953247076],[140.60191345214855,41.74321746826172],[140.54930114746116,41.72060394287121],[140.52705383300793,41.700565338134766],[140.4615020751953,41.69735717773449],[140.44171142578148,41.680622100830135],[140.43315124511764,41.65349578857433],[140.42852783203148,41.58363723754883],[140.43702697753918,41.54756546020502],[140.408447265625,41.51625442504894],[140.36277770996105,41.515556335449276],[140.30873107910156,41.492755889892635],[140.26451110839866,41.483528137207145],[140.2237548828125,41.42917633056652],[140.21578979492187,41.409637451171875],[140.1844329833989,41.40171432495117],[140.15412902832043,41.425262451171875],[140.1324157714845,41.430213928222656],[140.07469177246094,41.4247932434082],[140.04075622558616,41.44972610473627],[140.01515197753906,41.49145889282238],[140.0172576904297,41.498600006103516],[139.98554992675793,41.55472183227545],[139.983612060547,41.611946105956974],[139.99861145019554,41.64138793945318],[140.0087585449221,41.6914520263673],[140.05776977539085,41.74538040161133],[140.07083129882812,41.76694488525396],[140.07101440429722,41.80721282958996],[140.10972595214855,41.8038902282716],[140.1263885498047,41.832500457763786],[140.12655639648437,41.85490798950195],[140.1414337158203,41.914543151855526],[140.1194305419923,42.00379943847662],[140.07217407226562,42.05512237548834],[140.05720520019554,42.08254623413097],[140.02667236328148,42.1123313903808],[139.9888916015626,42.12861251831055],[139.9227752685547,42.133056640625],[139.88027954101597,42.20805740356457],[139.8633270263672,42.21888732910156],[139.8138885498048,42.2216682434082],[139.7997283935548,42.22833251953131],[139.77444458007812,42.25916671752941],[139.7836151123047,42.28055572509771],[139.76499938964866,42.310832977295036],[139.78083801269577,42.353610992431584],[139.81416320800804,42.3738899230957],[139.83583068847668,42.403610229492244],[139.85360717773437,42.46472167968744],[139.8413848876953,42.50999832153332],[139.8463897705078,42.52888870239269],[139.82722473144543,42.576667785644645],[139.82472229003918,42.6163902282716],[139.85388183593773,42.641666412353516],[139.86721801757835,42.66444396972656],[139.9255523681643,42.68888854980469],[139.98916625976574,42.69222259521496],[140.0301208496096,42.6875839233399],[140.05935668945324,42.70182800292969],[140.07257080078125,42.725399017333984],[140.14630126953136,42.756015777588004],[140.14663696289085,42.77019119262695],[140.186279296875,42.824401855468864],[140.22796630859386,42.80317306518549],[140.25225830078125,42.76676559448242],[140.30513000488293,42.77769088745123],[140.30491638183594,42.82489395141613],[140.34849548339844,42.8592643737793],[140.38972473144543,42.91548538208019],[140.41633605957054,42.9424095153808],[140.4462127685547,42.95346832275396],[140.5193786621095,42.989311218261776],[140.5299987792971,43.02361297607422],[140.51124572753906,43.033283233642635],[140.48599243164074,43.075187683105526],[140.46466064453136,43.08400344848633],[140.4415740966797,43.12739181518566],[140.39833068847656,43.159671783447266],[140.36083984375023,43.17833328247082],[140.32546997070312,43.22156143188482],[140.3636474609375,43.33079147338867],[140.4075622558596,43.33482742309576],[140.42231750488293,43.329391479492244],[140.4611053466797,43.3455543518067],[140.46817016601562,43.365634918213004],[140.49856567382835,43.37257766723633],[140.5151824951173,43.35697555541998],[140.60836791992187,43.295475006103516],[140.63092041015648,43.2958869934082],[140.6411132812501,43.265743255615234],[140.7172088623048,43.24945449829113],[140.73609924316418,43.23538970947271],[140.7767791748047,43.225093841552734],[140.77450561523437,43.20558166503906],[140.79222106933594,43.19472122192394],[140.8503875732422,43.198593139648494],[140.9138946533203,43.210914611816406],[140.91905212402344,43.223907470703125],[140.95124816894543,43.22789001464844],[140.97871398925793,43.239456176757926],[141.0167236328125,43.23824691772455],[141.0103759765626,43.19763183593756],[141.03906250000023,43.17988204956049],[141.08958435058594,43.171504974365234],[141.16137695312545,43.14390945434576],[141.25205993652344,43.177402496337834],[141.28651428222668,43.196464538574276],[141.323974609375,43.22528839111334],[141.40193176269543,43.30141067504883],[141.42370605468784,43.328109741210994],[141.42707824707043,43.421035766601676],[141.39385986328148,43.47456359863287],[141.35874938964855,43.517417907714844],[141.360595703125,43.53675842285162],[141.37686157226585,43.558086395263786],[141.38629150390636,43.588871002197266],[141.3807373046876,43.606464385986385],[141.35293579101574,43.64008712768566],[141.32949829101562,43.72500610351568],[141.3598175048828,43.76043701171875],[141.38105773925804,43.80200958251953],[141.45510864257858,43.83440399169922],[141.49400329589866,43.83627319335949],[141.5082244873047,43.85412597656256],[141.55738830566418,43.85795211791992],[141.59724426269543,43.88478088378906],[141.62771606445335,43.92110824584961],[141.64337158203136,43.95610046386719],[141.65074157714844,43.997280120849666],[141.6611328125,44.01261138916021],[141.66355895996116,44.055076599121094],[141.653564453125,44.140811920166016],[141.659637451172,44.16183853149414],[141.65489196777344,44.220115661621094],[141.65797424316406,44.24188995361334],[141.64805603027344,44.31477737426758],[141.67868041992187,44.33167266845703],[141.68716430664062,44.35710525512695],[141.7146911621096,44.39727020263672],[141.73802185058605,44.41782379150402],[141.7591247558596,44.46236038208019],[141.76826477050804,44.55813598632818],[141.78604125976574,44.58232116699219],[141.79197692871094,44.660297393798885],[141.78443908691406,44.723609924316406],[141.76422119140625,44.807693481445426],[141.7454833984375,44.8616676330567],[141.73805236816406,44.89722061157238],[141.72611999511741,44.912609100341854],[141.68190002441418,44.99972152709961],[141.59321594238293,45.14289855957037],[141.57067871093773,45.19223022460932],[141.5720672607423,45.237918853759766],[141.6071929931644,45.27037811279308],[141.61807250976562,45.28909301757824],[141.61526489257812,45.310520172119254],[141.64114379882847,45.33158111572271],[141.65721130371094,45.36919021606445],[141.63674926757824,45.39143371582037],[141.633270263672,45.41476058959961],[141.64727783203125,45.449100494384766],[141.68000793457043,45.421119689941406],[141.6865997314453,45.40258026123058],[141.71833801269543,45.39635467529297],[141.80496215820324,45.409332275390625],[141.83534240722656,45.420730590820256],[141.86436462402344,45.440551757812614],[141.8781738281251,45.46070861816412],[141.87870788574241,45.495704650878906],[141.89175415039074,45.51099014282238],[141.93801879882835,45.522708892822266]]]]},"properties":{"ID_0":114,"ISO":"JP-01","NAME_0":"Japan","ID_1":12,"NAME_1":"Hokkaido","TYPE_1":"Do","ENGTYPE_1":"Circuit","NL_NAME_1":"北海道","VARNAME_1":"Ezo|Yeso|Yezo"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[135.0035858154297,34.6088485717774],[135.02322387695347,34.58848571777355],[135.0201110839845,34.56707763671881],[134.99444580078125,34.54416656494146],[134.99360656738293,34.52277755737316],[134.95922851562523,34.489334106445256],[134.94354248046875,34.466094970703125],[134.91499328613304,34.44361114501953],[134.8956298828125,34.401103973388786],[134.89527893066406,34.351665496826286],[134.91542053222668,34.33636856079107],[134.91860961914085,34.316387176513786],[134.94360351562523,34.298053741455135],[134.9522247314453,34.266666412353516],[134.89883422851574,34.251850128173885],[134.83287048339878,34.223751068115234],[134.8005523681643,34.19944381713873],[134.77571105957054,34.20054244995123],[134.7390594482422,34.18968582153326],[134.7193756103519,34.21571731567377],[134.69944763183616,34.22083282470703],[134.71128845214866,34.239997863769645],[134.67611694335937,34.25527954101574],[134.66111755371116,34.27083206176769],[134.65750122070335,34.292778015136776],[134.67333984375045,34.31694412231457],[134.70666503906273,34.32110977172857],[134.7300262451173,34.33345794677746],[134.7547149658203,34.38499832153326],[134.78233337402344,34.41499328613281],[134.79792785644543,34.44973373413097],[134.847137451172,34.477676391601676],[134.8689880371096,34.51277923583996],[134.8861083984375,34.52922439575201],[134.913055419922,34.536209106445426],[134.9470672607423,34.56129455566406],[134.97479248046875,34.59692001342779],[135.0035858154297,34.6088485717774]]],[[[134.48974609375,34.67004394531256],[134.4996795654297,34.643310546875],[134.46014404296886,34.65615463256836],[134.48974609375,34.67004394531256]]],[[[135.22369384765625,34.67789459228521],[135.24389648437534,34.65388870239258],[135.21583557128918,34.650276184082145],[135.2011108398442,34.673610687255916],[135.22369384765625,34.67789459228521]]],[[[134.53781127929687,34.68435668945318],[134.54100036621094,34.65783691406256],[134.51324462890625,34.67150497436529],[134.53781127929687,34.68435668945318]]],[[[135.27610778808605,34.69861221313488],[135.29049682617187,34.681327819824276],[135.25555419921875,34.67777633666998],[135.2527770996096,34.691387176513786],[135.27610778808605,34.69861221313488]]],[[[134.8706512451172,35.65916824340832],[134.87471008300804,35.623065948486385],[134.86730957031273,35.59502410888666],[134.87181091308594,35.575412750244254],[134.91545104980503,35.54222488403332],[134.92585754394554,35.51686477661144],[134.94064331054687,35.509529113769645],[135.00732421875045,35.53245162963873],[135.03999328613293,35.5346031188966],[135.0465087890625,35.514556884765625],[135.04360961914074,35.46834564208996],[135.05213928222702,35.44814300537121],[135.0526123046875,35.4166374206543],[135.02256774902366,35.39137268066406],[135,35.38382720947277],[134.96348571777355,35.40517425537115],[134.93020629882835,35.3952751159668],[134.9215850830078,35.34378814697277],[134.92416381835983,35.31256103515625],[134.9603424072268,35.29560852050781],[135,35.28726196289068],[135.01344299316418,35.27081298828125],[135.08047485351562,35.24151611328131],[135.09619140625023,35.256587982177734],[135.1575622558596,35.2583465576173],[135.16497802734375,35.21729278564459],[135.19833374023437,35.200931549072266],[135.18989562988293,35.16866683959961],[135.20777893066452,35.15861892700201],[135.23980712890648,35.173564910888786],[135.29190063476608,35.16929626464838],[135.2940216064453,35.138813018798885],[135.33731079101574,35.1463508605957],[135.3422088623048,35.13668060302729],[135.38668823242233,35.12578582763683],[135.4029998779297,35.09086227416992],[135.4016113281251,35.07307815551752],[135.38238525390625,35.064495086669865],[135.3737945556644,35.04222106933605],[135.34182739257824,35.04053115844732],[135.35720825195312,35.021156311035156],[135.3494110107422,34.96556854248058],[135.3638610839845,34.95129394531244],[135.4695587158203,34.92590713500982],[135.42330932617233,34.90468215942383],[135.44497680664062,34.89438247680664],[135.43380737304733,34.85341262817383],[135.4249267578125,34.84870910644531],[135.42105102539062,34.808967590332145],[135.44509887695324,34.7867431640625],[135.46235656738304,34.732929229736385],[135.44958496093773,34.716705322265625],[135.4214324951172,34.70564270019531],[135.36901855468784,34.68360137939459],[135.3430633544923,34.71343612670904],[135.2937927246096,34.71889877319336],[135.28854370117187,34.70363616943365],[135.21879577636741,34.69496154785156],[135.18858337402378,34.671001434326115],[135.18211364746094,34.649116516113395],[135.11517333984375,34.64227676391607],[135.06027221679687,34.62527847290039],[135.03253173828136,34.63077926635742],[135.0176696777345,34.643386840820426],[134.96499633789074,34.64638900756847],[134.89138793945324,34.69194412231457],[134.87789916992187,34.68454742431646],[134.84014892578125,34.696601867675895],[134.8094482421875,34.71775436401367],[134.7987823486328,34.73295593261719],[134.75610351562523,34.76527786254883],[134.71060180664097,34.776576995849666],[134.66111755371116,34.76361083984369],[134.62869262695335,34.77407836914074],[134.57499694824253,34.758056640625114],[134.52758789062523,34.78269958496094],[134.50471496582054,34.76111221313482],[134.4455108642578,34.76798629760748],[134.4311523437501,34.76432418823242],[134.4139099121096,34.72904586791992],[134.38583374023437,34.726943969726676],[134.36399841308594,34.744258880615234],[134.3475494384768,34.73558044433594],[134.32009887695358,34.79295349121105],[134.30696105957043,34.809791564941406],[134.26544189453125,34.83330154418957],[134.2564239501953,34.85307693481451],[134.2650146484376,34.87932205200195],[134.29162597656273,34.89570999145508],[134.28559875488293,34.918109893798885],[134.25773620605514,34.94328689575201],[134.27557373046875,34.956687927246094],[134.27288818359375,34.977188110351676],[134.28317260742222,34.99480056762701],[134.26869201660156,35.01024627685547],[134.2990875244143,35.03824234008795],[134.31977844238293,35.04195022583019],[134.32290649414085,35.08070755004877],[134.35273742675793,35.09100723266596],[134.36500549316406,35.13669967651373],[134.37727355957054,35.14749908447277],[134.4155273437501,35.15558242797857],[134.41537475585937,35.17711257934576],[134.3858795166018,35.194385528564396],[134.38404846191418,35.21533966064459],[134.40568542480491,35.23768234252924],[134.4351501464845,35.22681427001959],[134.4838104248048,35.25026321411127],[134.51828002929733,35.27470779418945],[134.51574707031273,35.30602264404308],[134.50491333007835,35.32315444946289],[134.5125732421876,35.3408203125],[134.5000000000001,35.36411285400396],[134.47956848144543,35.37151336669922],[134.48008728027355,35.425697326660156],[134.4428253173828,35.43973159790039],[134.4312896728518,35.50223922729492],[134.4177703857423,35.51750564575195],[134.42811584472668,35.53837585449213],[134.41046142578148,35.56204605102545],[134.40451049804687,35.59152984619152],[134.36936950683605,35.61295700073248],[134.4286041259768,35.62027740478521],[134.475799560547,35.64044952392578],[134.5020446777346,35.66222000122082],[134.5398406982423,35.6708602905274],[134.5522155761721,35.65916824340832],[134.6003570556644,35.65818405151373],[134.625,35.63916778564459],[134.65785217285168,35.66592407226574],[134.69624328613293,35.65441894531256],[134.72569274902344,35.66664505004877],[134.774169921875,35.658889770507926],[134.79563903808605,35.66986465454113],[134.83694458007835,35.656387329101676],[134.8706512451172,35.65916824340832]]]]},"properties":{"ID_0":114,"ISO":"JP-28","NAME_0":"Japan","ID_1":13,"NAME_1":"Hyogo","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"兵庫県","VARNAME_1":"Hiogo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.79278564453125,36.85778808593756],[140.7947235107422,36.857055664062614],[140.7961120605471,36.85652923583996],[140.80250549316406,36.839721679687614],[140.76832580566418,36.81861114501953],[140.73222351074264,36.74722290039074],[140.72805786132812,36.71916580200195],[140.7141723632816,36.68361282348644],[140.71694946289085,36.66361236572271],[140.69171142578125,36.63974761962896],[140.66305541992222,36.581943511963004],[140.6529541015625,36.57330703735357],[140.63333129882812,36.50944519042969],[140.61054992675793,36.47333145141607],[140.60945129394543,36.409168243408146],[140.6205596923828,36.36055374145508],[140.5947265625001,36.33361053466797],[140.5938873291018,36.3216667175293],[140.5622253417971,36.298053741455135],[140.55833435058605,36.2680549621582],[140.5719451904297,36.183612823486385],[140.60139465332043,36.10222244262707],[140.63278198242187,36.04000091552729],[140.6714324951173,35.970607757568416],[140.68264770507824,35.969375610351676],[140.70677185058594,35.924736022949276],[140.73908996582077,35.880035400390625],[140.74444580078136,35.86000061035156],[140.826873779297,35.757247924804744],[140.86575317382824,35.73328018188482],[140.87071228027355,35.718940734863395],[140.79804992675793,35.750694274902344],[140.74404907226608,35.78251266479498],[140.70948791503918,35.83326721191406],[140.68763732910168,35.84556198120117],[140.62496948242187,35.8564910888673],[140.56741333007835,35.89664459228521],[140.5212554931643,35.895027160644645],[140.46624755859375,35.91653442382818],[140.42590332031295,35.90343856811529],[140.4046630859375,35.90619659423834],[140.36431884765636,35.89498519897461],[140.32075500488304,35.861106872558594],[140.2800750732422,35.87040328979492],[140.24996948242187,35.85406875610357],[140.2171630859375,35.85937881469732],[140.15475463867187,35.841609954833984],[140.12507629394543,35.87128067016613],[140.07035827636741,35.88295745849615],[140.0175018310548,35.90817260742199],[140.00038146972668,35.90684127807617],[139.9388885498047,35.94238662719738],[139.9372558593751,35.96520233154308],[139.89204406738293,35.982551574707145],[139.87332153320335,36.01292419433588],[139.81809997558628,36.05826568603527],[139.80117797851562,36.092758178710994],[139.78001403808594,36.09381866455078],[139.7602233886721,36.079284667968864],[139.7403717041018,36.08330535888666],[139.7255249023442,36.11464309692394],[139.7003326416018,36.151847839355526],[139.69461059570335,36.17702484130865],[139.7052917480471,36.20071792602539],[139.7421264648442,36.20335769653332],[139.76342773437523,36.216106414795036],[139.82571411132824,36.23891067504883],[139.84126281738293,36.26994705200195],[139.8398895263672,36.29242706298834],[139.85371398925793,36.308456420898494],[139.88002014160202,36.310680389404354],[139.91130065918014,36.29738235473644],[139.91735839843773,36.3331680297851],[139.9595642089845,36.34690093994135],[139.97476196289085,36.37082672119146],[140.0024871826173,36.36560440063482],[140.0197296142578,36.37321853637701],[140.06712341308616,36.37917709350597],[140.06974792480491,36.40066909790045],[140.11437988281273,36.39509963989258],[140.124969482422,36.409973144531364],[140.14749145507824,36.410873413085994],[140.1617431640626,36.394901275634766],[140.18841552734398,36.39510345458996],[140.20555114746116,36.416610717773494],[140.20660400390636,36.4513206481933],[140.24473571777344,36.49994659423834],[140.25328063964866,36.527282714843864],[140.24800109863293,36.574314117431754],[140.25215148925793,36.60128784179699],[140.2393798828126,36.63115692138672],[140.24382019043003,36.64105987548828],[140.2233886718751,36.68115615844721],[140.23757934570312,36.69681167602539],[140.28567504882824,36.705448150634766],[140.2881774902346,36.72815322875982],[140.26248168945324,36.74993896484375],[140.25808715820312,36.77003860473627],[140.27012634277355,36.8122940063476],[140.2561187744143,36.852653503418026],[140.25169372558594,36.918281555175895],[140.2607116699221,36.93367385864269],[140.2887115478518,36.93242263793945],[140.30699157714844,36.921684265136776],[140.32704162597656,36.89074325561535],[140.3685760498047,36.88064193725597],[140.38551330566418,36.833259582519645],[140.41665649414062,36.82893371582031],[140.44317626953125,36.81609344482433],[140.46499633789085,36.79299926757824],[140.47743225097656,36.792610168457145],[140.53890991210937,36.85029983520519],[140.59555053710937,36.87028121948248],[140.5720062255864,36.92340087890631],[140.59667968750034,36.923191070556754],[140.6184997558596,36.90027999877941],[140.6573486328125,36.897708892822266],[140.69883728027366,36.88490676879883],[140.7143554687501,36.87211227416992],[140.74375915527344,36.872322082519645],[140.79278564453125,36.85778808593756]]]},"properties":{"ID_0":114,"ISO":"JP-08","NAME_0":"Japan","ID_1":14,"NAME_1":"Ibaraki","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"茨城県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[137.0391082763672,37.168064117431754],[137.0540008544922,37.15096664428711],[137.04124450683594,37.13886260986328],[137.05096435546875,37.12298965454107],[137.0232391357423,37.11143875122082],[136.9963836669922,37.11889266967768],[136.98097229003906,37.107143402099666],[136.94583129882847,37.101387023925895],[136.93081665039062,37.12216567993164],[136.90650939941418,37.13353729248047],[136.96128845214844,37.14281463623058],[136.99241638183594,37.13983154296875],[137.02308654785156,37.14462280273443],[137.0391082763672,37.168064117431754]]],[[[137.0520782470703,36.958995819091854],[136.98890686035168,36.963134765625114],[136.97346496582043,36.944648742675895],[136.95220947265648,36.9524879455567],[136.93029785156273,36.943931579589844],[136.89807128906295,36.91938018798834],[136.88099670410156,36.896728515625114],[136.8846435546875,36.871768951416016],[136.866424560547,36.85458755493164],[136.85408020019565,36.81293869018566],[136.85046386718784,36.75432205200201],[136.82266235351562,36.727886199951115],[136.7964019775393,36.721076965332145],[136.81605529785202,36.69994354248041],[136.82615661621116,36.66929626464844],[136.78739929199241,36.618938446045036],[136.7969207763672,36.5728645324707],[136.81993103027355,36.54912185668957],[136.79937744140625,36.50866317749029],[136.80206298828125,36.47758865356457],[136.7821502685548,36.42802429199219],[136.7833709716797,36.40958404541021],[136.7983398437501,36.39534759521479],[136.80511474609375,36.35071182250982],[136.7888946533203,36.33328247070318],[136.796142578125,36.29692077636713],[136.808837890625,36.27293777465832],[136.8476104736328,36.25542068481457],[136.8495635986328,36.239444732666016],[136.80366516113327,36.18166351318371],[136.8017272949221,36.17052078247082],[136.77113342285156,36.16099548339844],[136.78254699707043,36.1307487487793],[136.75706481933616,36.08582305908203],[136.70010375976574,36.07056427001953],[136.66110229492187,36.066032409668026],[136.6488800048828,36.09148406982433],[136.6165771484375,36.10721588134771],[136.59359741210937,36.128150939941406],[136.55479431152355,36.1517715454101],[136.5355682373047,36.144554138183594],[136.48374938964866,36.15116119384777],[136.46582031250023,36.13436126708996],[136.44201660156273,36.1362419128418],[136.4088287353518,36.16759872436529],[136.3630828857423,36.16246414184576],[136.34210205078136,36.17787551879883],[136.32940673828125,36.229114532470646],[136.30488586425827,36.25440216064453],[136.27336120605491,36.26274871826183],[136.24407958984386,36.29458236694336],[136.27896118164074,36.32258605957037],[136.2999725341798,36.35210418701172],[136.3336181640625,36.35894775390625],[136.39332580566406,36.40041732788086],[136.4416961669923,36.44415664672857],[136.48091125488304,36.4916725158692],[136.5010528564453,36.50842666625982],[136.59716796875034,36.61131286621094],[136.60385131835937,36.6287727355957],[136.62683105468773,36.64570617675787],[136.69001770019543,36.73075103759771],[136.7379302978519,36.813636779785156],[136.757537841797,36.86151885986328],[136.7665557861328,36.91938781738287],[136.76225280761741,36.944568634033146],[136.76885986328125,37.000926971435604],[136.7438201904298,37.011714935302734],[136.73455810546898,37.047142028808594],[136.7175750732422,37.076164245605526],[136.72958374023437,37.09772872924799],[136.72694396972668,37.135833740234375],[136.71665954589866,37.14638900756836],[136.67411804199241,37.13910293579113],[136.67944335937523,37.20666503906256],[136.701385498047,37.22333145141607],[136.70095825195312,37.241924285888615],[136.7214813232422,37.25640869140631],[136.73583984375,37.285831451416016],[136.72528076171886,37.29586410522472],[136.72390747070335,37.327720642089844],[136.77546691894543,37.36697769165045],[136.84237670898483,37.40023422241205],[136.8795776367192,37.405937194824276],[136.92611694335983,37.39583206176769],[136.95472717285202,37.40916824340832],[137.0658416748047,37.451618194580135],[137.09088134765648,37.47515869140625],[137.1443023681643,37.498809814453125],[137.2090606689453,37.5056724548341],[137.26480102539085,37.530509948730526],[137.30003356933594,37.526367187500114],[137.325164794922,37.53022766113281],[137.35162353515648,37.502414703369254],[137.33978271484398,37.483016967773494],[137.3579559326173,37.465072631835994],[137.35221862793014,37.44396209716808],[137.3113708496096,37.43674850463873],[137.2679443359376,37.43691253662121],[137.25207519531295,37.42606735229498],[137.23780822753918,37.378631591796875],[137.26509094238293,37.3265113830567],[137.2331695556643,37.29589462280268],[137.2216033935548,37.293205261230526],[137.16824340820312,37.30249786376953],[137.11795043945324,37.28853607177746],[137.0968475341797,37.275840759277344],[137.0763397216797,37.24495315551769],[137.0692291259769,37.21784591674816],[137.0319824218751,37.20256805419922],[137.00558471679687,37.18345642089838],[136.99226379394554,37.1988410949707],[136.97064208984375,37.20106124877941],[136.94375610351562,37.22432327270519],[136.88514709472668,37.164386749267635],[136.87564086914097,37.140380859375],[136.90119934082065,37.13569259643555],[136.8936462402345,37.11868286132818],[136.86669921875,37.11021041870123],[136.87130737304687,37.086467742919865],[136.8876953125,37.068428039550895],[136.90759277343773,37.08932113647472],[136.93867492675804,37.08643341064453],[136.93727111816406,37.070846557617244],[136.9568328857423,37.0567245483399],[136.9849090576173,37.04900741577154],[137.01126098632812,37.07326889038097],[137.0211944580078,37.10087585449213],[137.05049133300793,37.108005523681754],[137.05410766601574,37.0692977905274],[137.04754638671875,37.044193267822266],[137.0571746826172,36.967361450195256],[137.0520782470703,36.958995819091854]]]]},"properties":{"ID_0":114,"ISO":"JP-17","NAME_0":"Japan","ID_1":15,"NAME_1":"Ishikawa","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"石川県","VARNAME_1":"Isikawa"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[141.6320343017578,38.97122192382807],[141.57281494140636,38.99071502685547],[141.53042602539085,38.98956298828125],[141.49954223632835,38.99566650390625],[141.4872589111328,38.9749870300293],[141.4945068359375,38.94875717163097],[141.4927215576173,38.90448760986328],[141.4583435058596,38.87662124633795],[141.4634246826172,38.85648345947271],[141.4540557861328,38.83592987060558],[141.46009826660156,38.81275177001953],[141.43817138671886,38.80818557739269],[141.43785095214844,38.7796249389649],[141.4188385009768,38.77818679809576],[141.38259887695335,38.79307174682623],[141.3749694824221,38.80352020263683],[141.34437561035156,38.80546951293951],[141.31353759765648,38.819343566894645],[141.3008270263673,38.79045486450207],[141.26797485351585,38.784851074218864],[141.25914001464844,38.757156372070426],[141.21546936035156,38.74991226196289],[141.20429992675793,38.76818847656256],[141.150390625,38.78201293945307],[141.144287109375,38.80158615112305],[141.11900329589866,38.833450317382926],[141.14906311035156,38.85517883300787],[141.13633728027366,38.87521743774414],[141.09967041015625,38.88320159912115],[141.03866577148437,38.874706268310604],[141.01914978027355,38.88059616088873],[140.98762512207043,38.873191833496094],[140.95968627929687,38.905502319335994],[140.8867950439453,38.9246559143067],[140.814697265625,38.961593627929744],[140.7767791748047,38.95510864257818],[140.76797485351562,38.984321594238395],[140.77261352539085,39.00069046020502],[140.79798889160168,39.02807998657232],[140.81275939941418,39.05508422851574],[140.8054962158203,39.07080841064453],[140.75622558593773,39.085693359375],[140.7704315185548,39.12408447265631],[140.75659179687523,39.13293838500982],[140.8013458251953,39.18656921386719],[140.76824951171898,39.19518280029297],[140.77252197265636,39.21593856811529],[140.78976440429687,39.22778701782232],[140.75898742675793,39.254127502441406],[140.7284393310547,39.26746368408203],[140.7016143798828,39.297035217285156],[140.7093353271489,39.333286285400504],[140.69212341308616,39.34592437744146],[140.67910766601562,39.382667541503906],[140.65928649902344,39.386230468750114],[140.66203308105514,39.41186904907238],[140.6848602294922,39.41661834716797],[140.6824951171876,39.44839477539074],[140.7156677246095,39.47290420532238],[140.71669006347656,39.491180419921875],[140.74417114257812,39.53464508056635],[140.7306976318364,39.55332946777355],[140.7552032470703,39.567378997802734],[140.78602600097668,39.60119247436529],[140.80679321289085,39.607299804687614],[140.8105621337893,39.62890625],[140.82551574707043,39.646789550781364],[140.8190155029298,39.68913650512701],[140.79743957519554,39.70679473876959],[140.7853240966797,39.73509979248058],[140.80516052246094,39.740715026855526],[140.84443664550793,39.78644561767578],[140.84690856933605,39.79816818237305],[140.78993225097656,39.823902130126896],[140.78640747070324,39.86547470092768],[140.8278045654298,39.883060455322266],[140.8527832031251,39.86440277099621],[140.88241577148437,39.88262939453131],[140.86318969726562,39.91660308837896],[140.8514099121096,39.95632553100586],[140.85240173339855,40.00524139404297],[140.85861206054687,40.04410171508795],[140.85232543945312,40.07412719726568],[140.87881469726562,40.09197616577154],[140.87496948242187,40.13492202758795],[140.88621520996128,40.15280151367199],[140.86608886718773,40.171691894531364],[140.889892578125,40.18497467041021],[140.91616821289062,40.22043609619146],[140.9380035400393,40.22334671020508],[140.9583892822268,40.24560165405285],[140.98167419433616,40.219303131103516],[141.0091247558596,40.215248107910156],[141.0607147216798,40.23043060302746],[141.08021545410156,40.24905395507818],[141.11318969726597,40.25861740112305],[141.10581970214866,40.27777862548828],[141.143280029297,40.29739761352545],[141.1798248291018,40.30710601806652],[141.200897216797,40.30498123168945],[141.26792907714844,40.347103118896484],[141.28892517089866,40.34526443481451],[141.3201904296875,40.36984252929699],[141.33802795410156,40.35871887207037],[141.35464477539074,40.32802963256836],[141.38502502441406,40.33928298950195],[141.44186401367187,40.37074661254883],[141.47615051269543,40.37413406372082],[141.53933715820312,40.344310760498104],[141.5845642089846,40.37092590332037],[141.5846099853518,40.3926353454591],[141.59927368164085,40.40926742553705],[141.6706237792971,40.43270492553722],[141.68473815917991,40.44817733764643],[141.71376037597668,40.42020797729498],[141.72100830078136,40.39821243286133],[141.75437927246105,40.36912536621094],[141.7697296142578,40.3477783203125],[141.7735595703125,40.32278823852545],[141.81687927246116,40.27085494995117],[141.83242797851574,40.23452758789068],[141.79844665527355,40.207618713378906],[141.80120849609375,40.18477249145502],[141.8592987060548,40.1650962829591],[141.87159729003906,40.13480377197271],[141.8466033935547,40.13433074951172],[141.82582092285156,40.10351181030268],[141.83364868164062,40.07499694824213],[141.8494415283203,40.05916595458979],[141.87843322753906,40.047588348388786],[141.91583251953125,40.00805664062494],[141.93687438964866,40.00891494750971],[141.95361328125,39.986705780029354],[141.95826721191452,39.95416641235346],[141.94351196289062,39.94424057006847],[141.94020080566418,39.92063903808605],[141.95584106445324,39.89039611816406],[141.97970581054687,39.864921569824276],[141.9744567871096,39.84699249267584],[141.99162292480491,39.820663452148494],[141.9843292236328,39.78869247436529],[141.9965057373047,39.778400421142635],[141.98249816894543,39.734146118164176],[141.98515319824241,39.71200561523449],[141.97007751464866,39.68704605102545],[141.97134399414062,39.62565612792969],[141.94520568847656,39.59844970703131],[141.95875549316406,39.58647918701183],[142.0155487060548,39.65527725219738],[142.02565002441418,39.60441970825195],[142.0388183593751,39.57333755493164],[142.05778503417991,39.57444381713867],[142.07139587402355,39.54222106933605],[142.03054809570335,39.5238876342774],[142.029998779297,39.50860977172846],[142.00993347167991,39.49383544921869],[142.0124969482423,39.47888946533209],[141.97265625,39.48159408569336],[141.95396423339844,39.468101501464844],[141.97799682617187,39.438915252685604],[142.03527832031273,39.48333358764654],[142.06056213378918,39.46805572509777],[142.04943847656295,39.4561119079591],[142.03974914550793,39.41842651367193],[142.00054931640625,39.410278320312614],[141.97499084472656,39.42335128784174],[141.9389801025393,39.386440277099666],[141.95770263671886,39.35588836669933],[141.91575622558605,39.34643173217785],[141.95782470703125,39.31657791137695],[141.90702819824253,39.30909729003912],[141.925994873047,39.28578567504894],[141.92527770996105,39.26602554321289],[141.9026641845703,39.25307083129883],[141.9383544921875,39.223247528076286],[141.89390563964844,39.20022583007818],[141.88197326660202,39.1860084533692],[141.9205780029297,39.17655181884771],[141.88288879394543,39.15401077270519],[141.84590148925804,39.155391693115234],[141.83677673339855,39.14706420898449],[141.9003143310547,39.12015914916998],[141.9165802001953,39.106643676757756],[141.883056640625,39.088973999023494],[141.85684204101574,39.104675292968864],[141.81341552734375,39.11350250244135],[141.80950927734386,39.089614868164176],[141.84915161132835,39.057861328125],[141.8378601074221,39.02431869506847],[141.79602050781284,39.02589797973633],[141.72491455078125,39.017791748046875],[141.72366333007858,38.99132156372082],[141.6990661621095,38.97538375854492],[141.7225799560548,38.96409225463867],[141.7128143310548,38.945354461670036],[141.69583129882824,38.94222259521479],[141.6721954345703,38.972732543945426],[141.67019653320312,39.00478363037104],[141.62426757812523,39.00098419189453],[141.6320343017578,38.97122192382807]]]},"properties":{"ID_0":114,"ISO":"JP-03","NAME_0":"Japan","ID_1":16,"NAME_1":"Iwate","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"岩手県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.44433593750034,34.20716857910162],[134.43618774414062,34.1666259765625],[134.39656066894554,34.16027069091808],[134.35960388183605,34.181831359863395],[134.3453521728519,34.169246673583984],[134.29969787597702,34.16662979125982],[134.26258850097656,34.18008422851568],[134.19303894042991,34.169643402099666],[134.17608642578148,34.1724472045899],[134.13841247558594,34.14789199829107],[134.14141845703136,34.130130767822266],[134.1250000000001,34.1156959533692],[134.0526123046875,34.11413955688482],[134.02978515625023,34.083290100097656],[134.0023651123047,34.07163619995123],[133.97830200195358,34.07156753540039],[133.95413208007824,34.08681869506836],[133.93482971191418,34.112552642822266],[133.90289306640625,34.09792327880871],[133.86468505859386,34.102043151855526],[133.82585144042991,34.089633941650504],[133.82176208496105,34.07299041748047],[133.8013153076173,34.06629180908203],[133.78211975097656,34.07659149169922],[133.73143005371094,34.040908813476506],[133.72419738769554,34.0192489624024],[133.69282531738293,34.010021209716854],[133.66209411621094,34.024291992187614],[133.6140747070316,34.029800415039176],[133.5972442626953,34.04128265380871],[133.62295532226585,34.049144744873104],[133.63717651367187,34.083908081054744],[133.6323699951173,34.122600555420036],[133.638916015625,34.12856292724615],[133.649139404297,34.186233520507926],[133.63505554199253,34.2093505859375],[133.61233520507824,34.220764160156364],[133.62210083007812,34.23561477661133],[133.65798950195312,34.23976516723633],[133.68302917480491,34.23349761962902],[133.7078552246095,34.239459991455135],[133.75259399414062,34.27882003784191],[133.7624664306644,34.2997283935548],[133.7831878662114,34.31034469604492],[133.80766296386753,34.31021499633795],[133.82319641113293,34.3254508972168],[133.81935119628906,34.351024627685604],[133.84048461914062,34.35979080200195],[133.86720275878906,34.33465194702154],[133.89152526855514,34.351203918457145],[133.89430236816406,34.38264083862305],[133.93803405761741,34.381893157958984],[133.97621154785202,34.37348937988287],[133.99102783203148,34.35815048217785],[134.03863525390636,34.35214233398449],[134.06388854980491,34.36284255981445],[134.1122283935547,34.366664886474666],[134.13613891601562,34.40044021606451],[134.16021728515648,34.389160156250114],[134.1642303466798,34.3759384155274],[134.1536102294923,34.34388732910162],[134.17703247070335,34.32448196411133],[134.18722534179722,34.345001220703125],[134.25083923339866,34.351943969726676],[134.2663574218751,34.33272552490246],[134.2469482421875,34.30741882324219],[134.28889465332065,34.275001525878906],[134.3064727783203,34.27738189697277],[134.3458404541018,34.252567291259766],[134.39314270019554,34.23941802978527],[134.41958618164062,34.21646118164068],[134.44433593750034,34.20716857910162]]],[[[133.712890625,34.400386810302734],[133.73086547851585,34.37383651733393],[133.69960021972668,34.3514137268067],[133.68434143066418,34.36140441894531],[133.712890625,34.400386810302734]]]]},"properties":{"ID_0":114,"ISO":"JP-37","NAME_0":"Japan","ID_1":17,"NAME_1":"Kagawa","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"香川県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[128.4336090087893,27.068611145019702],[128.45249938964866,27.052778244018554],[128.45666503906273,27.02360916137701],[128.42414855957043,27.022235870361385],[128.40638732910168,27.046665191650447],[128.4336090087893,27.068611145019702]]],[[[128.69610595703136,27.44194221496582],[128.69444274902378,27.41861152648937],[128.67639160156273,27.413888931274584],[128.63471984863293,27.36527824401884],[128.59861755371116,27.33888816833496],[128.55805969238293,27.328611373901424],[128.53138732910156,27.348331451416015],[128.52000427246105,27.37222290039074],[128.53166198730491,27.404722213745174],[128.5594482421875,27.395555496215934],[128.59388732910156,27.397499084472883],[128.6122283935548,27.408611297607422],[128.63381958007812,27.408464431762752],[128.69610595703136,27.44194221496582]]],[[[128.90675354003906,27.893743515014876],[128.92605590820312,27.88759422302246],[128.96983337402355,27.89272689819336],[128.97520446777378,27.87482261657715],[128.96714782714855,27.84090614318859],[128.96882629394554,27.81722450256376],[128.99769592285168,27.802259445190543],[129.03840637207054,27.762250900268498],[129.01710510253952,27.713718414306754],[129.00000000000034,27.696388244628963],[128.9877319335942,27.668384552001953],[128.9351043701173,27.661464691162223],[128.92355346679687,27.667327880859545],[128.9163513183595,27.69344520568859],[128.88006591796875,27.723304748535213],[128.8993835449221,27.737474441528377],[128.90571594238327,27.76498603820812],[128.8893280029298,27.786741256714094],[128.88891601562523,27.818693161010856],[128.87986755371094,27.82462310791027],[128.89158630371116,27.85307693481451],[128.89179992675793,27.885648727417106],[128.90675354003906,27.893743515014876]]],[[[129.2245330810547,28.04573249816906],[129.2344512939453,28.03111076354986],[129.2697296142578,28.032224655151424],[129.25361633300827,28.01333427429222],[129.23306274414074,28.023611068725586],[129.2118682861328,28.022239685058707],[129.20582580566406,28.04138946533203],[129.2245330810547,28.04573249816906]]],[[[129.1699981689453,28.058944702148437],[129.16583251953136,28.021667480468863],[129.1461181640625,28.01583290100092],[129.14971923828136,28.04694366455078],[129.1699981689453,28.058944702148437]]],[[[129.20889282226562,28.201110839843807],[129.20333862304687,28.180553436279297],[129.21249389648437,28.163610458374023],[129.26167297363293,28.14388656616211],[129.27972412109398,28.11666870117199],[129.30055236816418,28.119167327880916],[129.32583618164062,28.108888626098746],[129.35423278808594,28.10863685607916],[129.34051513671875,28.077116012573356],[129.3152770996095,28.07111167907715],[129.304443359375,28.0861110687257],[129.26187133789074,28.07806777954096],[129.26167297363293,28.100000381469726],[129.25083923339844,28.11111068725586],[129.22444152832043,28.099166870117187],[129.2150573730471,28.11479949951172],[129.21611022949253,28.140554428100813],[129.18777465820335,28.157222747802677],[129.17527770996105,28.18305778503418],[129.20889282226562,28.201110839843807]]],[[[129.1852722167971,28.3063907623291],[129.21194458007812,28.29833221435547],[129.2080535888672,28.28222274780296],[129.17889404296886,28.297222137451115],[129.1852722167971,28.3063907623291]]],[[[130.02111816406273,28.37888908386242],[130.03611755371094,28.361665725708008],[130.00917053222668,28.336111068725643],[129.97891235351562,28.288364410400447],[129.9415435791018,28.274784088134993],[129.9128875732422,28.31205558776861],[129.934783935547,28.329328536987304],[129.9516601562501,28.32944679260254],[129.99429321289074,28.364822387695426],[130.02111816406273,28.37888908386242]]],[[[129.69044494628918,28.5267391204834],[129.69000244140648,28.501665115356445],[129.70472717285156,28.477500915527628],[129.71945190429722,28.474445343017578],[129.72027587890625,28.440277099609432],[129.7097167968751,28.42055320739769],[129.67694091796875,28.410554885864314],[129.66471862793003,28.396944046020508],[129.63000488281284,28.407499313354606],[129.58471679687523,28.363611221313476],[129.5625,28.332500457763615],[129.53782653808605,28.33147811889654],[129.54499816894554,28.311388015747127],[129.52000427246094,28.30055427551281],[129.4758300781251,28.293888092041072],[129.45861816406273,28.296667098999137],[129.44221496582054,28.24500083923334],[129.44250488281284,28.229999542236385],[129.47500610351585,28.217777252197322],[129.4499969482422,28.196668624877986],[129.43417358398437,28.1988906860351],[129.40916442871094,28.1825008392334],[129.40083312988304,28.1522216796875],[129.38250732421886,28.16527748107916],[129.35694885253918,28.15416526794445],[129.34472656250023,28.138332366943302],[129.32139587402378,28.13555526733404],[129.29138183593795,28.153610229492244],[129.29722595214844,28.171112060546875],[129.26361083984375,28.1825008392334],[129.2725067138673,28.207221984863338],[129.19389343261741,28.2277774810791],[129.17333984375,28.239166259765625],[129.15184020996094,28.237365722656534],[129.1408386230471,28.25749969482422],[129.18638610839844,28.262500762939396],[129.21499633789062,28.258054733276424],[129.23333740234398,28.285554885864258],[129.21360778808605,28.30083274841337],[129.26777648925793,28.32694435119629],[129.30360412597668,28.32944679260254],[129.31170654296875,28.342800140380802],[129.34500122070312,28.3700008392334],[129.37028503417991,28.355833053589037],[129.38722229003906,28.373889923095646],[129.4280548095703,28.389118194580192],[129.44332885742187,28.38305473327648],[129.46417236328148,28.413610458373966],[129.51083374023437,28.40999984741211],[129.5183258056643,28.44111061096197],[129.54556274414062,28.462223052978515],[129.5691680908203,28.457500457763672],[129.59527587890636,28.475555419921932],[129.60499572753918,28.450557708740348],[129.65611267089855,28.42611122131342],[129.64833068847656,28.450557708740348],[129.67361450195358,28.460554122924804],[129.65444946289062,28.499166488647518],[129.67666625976608,28.52638816833496],[129.69044494628918,28.5267391204834]]],[[[129.20056152343773,29.159721374511775],[129.2188873291018,29.158889770507812],[129.2219390869143,29.131111145019588],[129.20333862304687,29.136390686035156],[129.20056152343773,29.159721374511775]]],[[[129.59611511230491,29.476686477661303],[129.6098175048828,29.472101211547794],[129.62055969238304,29.45027732849121],[129.59750366210983,29.444444656372013],[129.58335876464866,29.46250915527338],[129.59611511230491,29.476686477661303]]],[[[129.73944091796875,29.67333221435547],[129.73971557617187,29.638057708740348],[129.69639587402344,29.60388946533203],[129.6833496093751,29.653612136840877],[129.71028137207043,29.669166564941463],[129.73944091796875,29.67333221435547]]],[[[129.8535614013672,29.883104324340934],[129.89305114746094,29.87027740478527],[129.89721679687534,29.843889236450195],[129.91888427734398,29.823335647583064],[129.86083984375,29.821388244628963],[129.83361816406273,29.86111068725586],[129.8535614013672,29.883104324340934]]],[[[129.9213867187501,29.994167327880973],[129.94610595703125,29.96722030639654],[129.943603515625,29.951389312744197],[129.91333007812523,29.956943511963004],[129.89991760253906,29.977106094360636],[129.9213867187501,29.994167327880973]]],[[[130.49888610839866,30.461666107177848],[130.52638244628952,30.444723129272574],[130.57110595703125,30.434165954589843],[130.59805297851585,30.41111183166504],[130.64111328125,30.3999996185305],[130.671112060547,30.378055572509822],[130.66055297851562,30.310832977294922],[130.6058349609375,30.253335952758902],[130.5833282470703,30.23861122131359],[130.52833557128918,30.228889465331974],[130.4888916015625,30.227222442627067],[130.44082641601562,30.237222671508846],[130.42027282714844,30.267778396606502],[130.4036102294923,30.31527709960949],[130.39361572265648,30.3174991607666],[130.38027954101608,30.351667404174748],[130.37666320800827,30.38194465637207],[130.3927764892578,30.398054122924804],[130.4194488525394,30.395277023315486],[130.44639587402344,30.429445266723633],[130.46472167968773,30.439165115356445],[130.46360778808616,30.45666885375988],[130.49888610839866,30.461666107177848]]],[[[130.14694213867187,30.490833282470817],[130.16806030273472,30.48222160339361],[130.2000732421876,30.482650756835994],[130.23583984375023,30.469997406005916],[130.2655487060547,30.447221755981502],[130.22972106933594,30.42499923706083],[130.20472717285156,30.42611122131359],[130.18861389160168,30.450555801391715],[130.17222595214855,30.455556869506893],[130.14694213867187,30.490833282470817]]],[[[130.86326599121105,30.749288558960018],[130.85977172851585,30.72549057006836],[130.84155273437534,30.725883483887003],[130.8422851562501,30.750576019287166],[130.86326599121105,30.749288558960018]]],[[[130.30451965332043,30.80590057373047],[130.3211364746096,30.795515060424748],[130.31472778320324,30.780834197998047],[130.26527404785202,30.77901649475092],[130.29222106933605,30.804168701171875],[130.30451965332043,30.80590057373047]]],[[[131.05790710449241,30.837514877319336],[131.07083129882812,30.797016143798828],[131.08389282226585,30.783056259155557],[131.07083129882812,30.76638984680187],[131.0777740478518,30.704444885253906],[131.05667114257824,30.67083358764654],[131.04972839355491,30.64888954162609],[131.05523681640648,30.607299804687443],[131.03305053710972,30.587223052978515],[131.0352783203126,30.56666755676298],[130.97917175292991,30.51722145080572],[130.9786071777346,30.49749755859375],[130.96278381347702,30.481111526489258],[130.96055603027355,30.453611373901424],[130.9802703857422,30.43499946594261],[130.9674987792971,30.423889160156477],[130.97583007812534,30.399444580078125],[130.96638488769554,30.37444686889654],[130.94305419921875,30.377222061157283],[130.9036865234375,30.364198684692383],[130.87194824218773,30.344444274902457],[130.85777282714844,30.369722366333008],[130.8662109375,30.408351898193416],[130.85333251953125,30.439443588256836],[130.85166931152344,30.46083259582531],[130.87333679199264,30.46722221374523],[130.88250732421886,30.487777709960937],[130.89717102050827,30.494726181030216],[130.92666625976562,30.53722190856945],[130.95304870605491,30.593334197998047],[130.95056152343773,30.631111145019645],[130.93888854980491,30.6694469451906],[130.97528076171875,30.7097225189209],[130.9805603027345,30.726943969726562],[131.00047302246094,30.74567794799799],[131.00865173339844,30.766094207763615],[131.002899169922,30.782604217529353],[131.03109741210937,30.813995361328182],[131.03225708007824,30.824945449829215],[131.05790710449241,30.837514877319336]]],[[[129.94000244140625,30.850555419921875],[129.96475219726562,30.82969665527338],[129.93028259277366,30.81160163879406],[129.90415954589866,30.83166885375988],[129.92527770996094,30.85027694702171],[129.94000244140625,30.850555419921875]]],[[[129.79190063476574,31.784460067749137],[129.79214477539062,31.7607936859132],[129.77153015136753,31.715583801269588],[129.7479248046875,31.71655082702648],[129.74298095703148,31.68606567382824],[129.72732543945312,31.674348831176758],[129.72622680664085,31.647039413452205],[129.6988983154297,31.62436866760254],[129.66610717773437,31.641111373901594],[129.69317626953125,31.69306564331049],[129.6966705322268,31.715278625488224],[129.74278259277344,31.736667633056697],[129.77330017089844,31.74028396606451],[129.79190063476574,31.784460067749137]]],[[[129.85472106933594,31.881946563720703],[129.88139343261753,31.857500076294172],[129.9061126708989,31.84388923645014],[129.9247283935547,31.86583137512224],[129.9308319091797,31.825555801391715],[129.8988647460942,31.813205718994254],[129.87149047851562,31.81282043457054],[129.85777282714844,31.837499618530216],[129.83389282226597,31.852502822875976],[129.8350067138673,31.882223129272518],[129.85472106933594,31.881946563720703]]],[[[130.7301788330078,32.09859848022461],[130.7085876464845,32.07652664184576],[130.7056579589846,32.055290222168026],[130.73864746093773,32.04529953002941],[130.78045654296886,32.011219024658374],[130.7850952148441,31.978509902954215],[130.8138275146489,31.941324234008902],[130.85662841796875,31.934913635253963],[130.88311767578136,31.918184280395564],[130.8990936279298,31.88734626770031],[130.88824462890636,31.843408584594783],[130.87788391113304,31.840196609497127],[130.8865966796875,31.802009582519815],[130.91954040527355,31.797584533691463],[130.9346160888673,31.78210830688488],[130.9893798828125,31.776556015014705],[130.9801025390626,31.749961853027457],[131.02017211914085,31.74178504943876],[131.02021789550793,31.702644348144645],[131.02838134765648,31.673601150512695],[131.05622863769554,31.631446838378963],[131.0816345214845,31.656625747680664],[131.1177368164066,31.628921508789062],[131.13430786132824,31.62359619140625],[131.16630554199264,31.633613586425895],[131.19024658203125,31.621120452880973],[131.19050598144554,31.599023818969726],[131.2061767578126,31.570503234863395],[131.19282531738293,31.554220199585074],[131.19993591308628,31.540822982788143],[131.1993408203126,31.508213043213004],[131.17826843261741,31.49997520446783],[131.1652984619143,31.4801082611084],[131.16503906250034,31.45778846740734],[131.1184539794922,31.474767684936523],[131.06053161621094,31.447162628173942],[131.0286102294923,31.411945343017578],[131.0170135498048,31.384750366211108],[131.01589965820312,31.358301162719726],[131.09947204589844,31.332763671875057],[131.10675048828136,31.313772201538086],[131.073944091797,31.291351318359602],[131.09146118164062,31.27939605712919],[131.12901306152344,31.276187896728743],[131.08705139160156,31.249387741088924],[131.06632995605491,31.227758407592773],[131.01707458496094,31.227426528930607],[131.00288391113293,31.188774108886775],[130.98611450195324,31.181108474731445],[130.97999572753918,31.155555725097713],[130.96249389648437,31.13805580139166],[130.91555786132847,31.11249732971197],[130.9027709960941,31.1136093139649],[130.87333679199264,31.094999313354492],[130.81166076660156,31.08888816833496],[130.77861022949253,31.066389083862304],[130.74389648437534,31.05833244323742],[130.7163848876953,31.04472160339361],[130.68080139160156,31.004823684692496],[130.67860412597668,31.06279754638672],[130.6690521240239,31.08587646484375],[130.73083496093773,31.116388320922965],[130.74438476562523,31.131229400634993],[130.76638793945324,31.17777633666998],[130.7552947998047,31.19797515869152],[130.77305603027355,31.237777709960994],[130.78768920898483,31.257694244384822],[130.7955169677739,31.294195175170955],[130.79055786132858,31.30694580078125],[130.80389404296898,31.33472251892084],[130.76638793945324,31.40749931335455],[130.72721862792991,31.45333480834961],[130.69860839843773,31.462778091430777],[130.69583129882847,31.51053810119629],[130.7072296142578,31.532777786254996],[130.66360473632812,31.551944732666015],[130.6361083984376,31.54583168029785],[130.59222412109386,31.590833663940543],[130.62861633300827,31.621665954589843],[130.679443359375,31.62944412231451],[130.6969451904298,31.624721527099893],[130.7163848876953,31.603057861328182],[130.7111053466797,31.580554962158203],[130.72084045410156,31.558334350585937],[130.76319885253906,31.56162834167486],[130.78713989257824,31.58559608459484],[130.78582763671886,31.601945877075252],[130.82305908203125,31.660278320312557],[130.7927703857422,31.703056335449332],[130.73277282714855,31.707775115966797],[130.71583557128918,31.728055953979492],[130.68638610839866,31.73500061035179],[130.66250610351562,31.729166030883846],[130.61416625976574,31.69750022888178],[130.6152801513673,31.66138839721691],[130.60249328613327,31.631944656372184],[130.57583618164074,31.61555671691906],[130.56138610839844,31.59499931335455],[130.56944274902366,31.573053359985522],[130.5483398437501,31.54416656494152],[130.5330505371096,31.506944656372127],[130.52139282226585,31.50888824462902],[130.51333618164062,31.45833396911621],[130.52638244628952,31.408891677856672],[130.54556274414062,31.379167556762752],[130.5652770996096,31.32222175598139],[130.6199951171876,31.277223587036303],[130.6586151123048,31.271387100219783],[130.6499938964845,31.2444438934329],[130.6583404541018,31.221391677856445],[130.640838623047,31.216665267944506],[130.6447296142578,31.197223663330305],[130.62722778320335,31.181108474731445],[130.60472106933616,31.182777404785156],[130.58917236328136,31.172777175903377],[130.559051513672,31.17790031433117],[130.53111267089855,31.163610458374137],[130.506103515625,31.178333282470703],[130.51586914062523,31.19793510437023],[130.50892639160156,31.214132308960074],[130.47555541992187,31.24527740478527],[130.3161163330078,31.257223129272745],[130.28277587890636,31.266111373901367],[130.27749633789074,31.24611091613781],[130.2286071777345,31.268333435058878],[130.2272186279297,31.283056259155273],[130.20027160644543,31.28333282470703],[130.1986083984375,31.296112060546875],[130.2258300781251,31.305835723877067],[130.2063903808595,31.337223052978743],[130.20805358886764,31.348888397216853],[130.15277099609386,31.384166717529353],[130.13972473144543,31.418333053589094],[130.15888977050793,31.440555572509765],[130.1866607666018,31.41277694702154],[130.22500610351585,31.401388168335018],[130.272216796875,31.42888832092285],[130.31056213378906,31.48333358764654],[130.3291625976567,31.531112670898494],[130.33528137207043,31.59527778625494],[130.32833862304687,31.633333206176758],[130.31777954101574,31.6566677093507],[130.2997283935547,31.669721603393782],[130.2908325195317,31.69055557250988],[130.2130584716798,31.75583267211914],[130.1888885498047,31.75777816772461],[130.1666717529298,31.79472160339367],[130.19778442382824,31.861665725708008],[130.21722412109386,31.88527870178217],[130.22444152832054,31.911111831665096],[130.20861816406295,31.97222137451172],[130.1775054931643,32.00222396850597],[130.2030487060548,32.038055419921875],[130.2027740478519,32.073333740234375],[130.1731719970703,32.07600402832031],[130.1576995849614,32.089389801025504],[130.17767333984398,32.12096023559576],[130.1793670654297,32.1084823608399],[130.22695922851562,32.12939453125],[130.27444458007824,32.12472152709961],[130.2847290039067,32.108890533447266],[130.30859375,32.1087455749514],[130.33374023437545,32.12114715576183],[130.36175537109398,32.15463256835943],[130.38911437988293,32.14350891113281],[130.4052429199221,32.116798400878906],[130.45819091796875,32.10997772216797],[130.4785919189453,32.12921905517578],[130.5104522705078,32.13727951049799],[130.5419464111328,32.136001586914176],[130.54602050781273,32.14642715454113],[130.57731628418014,32.151237487793026],[130.61470031738327,32.17913055419933],[130.6249694824221,32.15333938598633],[130.65390014648437,32.147922515869254],[130.65713500976562,32.133056640625],[130.70445251464844,32.102573394775334],[130.7301788330078,32.09859848022461]]],[[[130.18229675293014,32.239933013916016],[130.1820983886721,32.22785568237316],[130.18223571777344,32.227172851562614],[130.19345092773437,32.21723556518555],[130.20983886718784,32.22344207763672],[130.21417236328136,32.19829177856457],[130.20095825195335,32.168300628662166],[130.19053649902355,32.19974136352545],[130.1763153076172,32.22130966186529],[130.1762237548828,32.24803543090826],[130.18205261230491,32.242973327636776],[130.18229675293014,32.239933013916016]]],[[[130.2428436279297,32.254096984863395],[130.24176025390648,32.25333404541027],[130.23098754882824,32.248168945312614],[130.2238464355471,32.25551986694347],[130.22377014160156,32.25951385498047],[130.2272491455078,32.27891159057623],[130.24481201171898,32.294189453125],[130.266815185547,32.27954864501976],[130.26411437988304,32.25947570800781],[130.2428436279297,32.254096984863395]]]]},"properties":{"ID_0":114,"ISO":"JP-46","NAME_0":"Japan","ID_1":18,"NAME_1":"Kagoshima","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"鹿児島県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[139.7669372558595,35.506668090820426],[139.74050903320312,35.475700378418026],[139.71340942382812,35.46427154541021],[139.7003326416018,35.478286743164006],[139.7669372558595,35.506668090820426]]],[[[139.73190307617187,35.540832519531364],[139.74005126953125,35.54153442382818],[139.7405700683596,35.5415992736817],[139.74221801757812,35.54172134399414],[139.7430877685548,35.5417938232423],[139.76626586914062,35.537174224853516],[139.764862060547,35.512119293213004],[139.68249511718784,35.474166870117244],[139.65277099609375,35.47722244262707],[139.63435363769577,35.46566390991211],[139.64942932128952,35.4462890625],[139.6863555908203,35.427223205566406],[139.6680603027346,35.406387329101506],[139.62599182128906,35.40079498291027],[139.64764404296875,35.38277053833019],[139.65902709960972,35.32842254638672],[139.63864135742187,35.29986572265631],[139.64950561523437,35.288368225097656],[139.67381286621116,35.30051422119152],[139.69229125976585,35.26587677001953],[139.72859191894543,35.265743255615234],[139.7340087890625,35.247055053710994],[139.7242584228519,35.21173095703131],[139.69503784179687,35.20994949340826],[139.67041015625045,35.197883605957145],[139.65432739257835,35.180282592773494],[139.67597961425793,35.139453887939396],[139.62725830078136,35.13661956787115],[139.61575317382812,35.14768981933605],[139.61694335937523,35.18833160400402],[139.59883117675804,35.19531250000006],[139.6204833984376,35.220600128173885],[139.5686035156251,35.265834808349666],[139.57095336914062,35.277141571045036],[139.54591369628918,35.30847167968756],[139.52622985839855,35.30152511596691],[139.4414978027346,35.31952667236334],[139.32684326171898,35.31209182739258],[139.3171081542971,35.305332183838004],[139.2499237060547,35.29289627075201],[139.2095184326172,35.27798080444336],[139.14416503906295,35.23284530639654],[139.13610839843773,35.183334350585994],[139.15065002441452,35.14715957641607],[139.12168884277344,35.14985656738281],[139.10986328125,35.137855529785156],[139.03291320800804,35.146541595458984],[139.0264587402346,35.174823760986385],[138.9909667968751,35.19748687744152],[138.97889709472656,35.232170104980526],[138.97865295410168,35.26048660278326],[139.00776672363304,35.2865943908692],[139.0216064453125,35.32663726806652],[139.0135955810547,35.33905029296869],[139.00415039062523,35.39005279541021],[138.97496032714866,35.401809692382756],[138.91955566406284,35.39873123168951],[138.93334960937523,35.417503356933594],[138.94033813476597,35.44567871093744],[138.95855712890648,35.45714950561529],[139.03083801269554,35.48022842407232],[139.05415344238293,35.50724411010742],[139.09045410156284,35.5112190246582],[139.11521911621105,35.53281402587902],[139.13235473632824,35.56172180175787],[139.12496948242222,35.585193634033146],[139.13743591308616,35.6136589050293],[139.12936401367222,35.6197624206543],[139.12496948242222,35.65827178955084],[139.13351440429687,35.670005798339844],[139.16413879394554,35.664623260498104],[139.17512512207043,35.647132873535156],[139.21862792968784,35.64294815063488],[139.23915100097702,35.607078552246094],[139.26011657714866,35.6007461547851],[139.29238891601574,35.60872268676758],[139.31126403808605,35.6015357971192],[139.3702850341797,35.59374618530285],[139.40266418457043,35.5793342590332],[139.4570465087894,35.52832794189453],[139.47128295898483,35.50086212158203],[139.48658752441418,35.501907348632926],[139.48423767089866,35.542823791503906],[139.49610900878918,35.585800170898494],[139.45591735839844,35.61154937744146],[139.46719360351562,35.62122726440441],[139.49212646484386,35.60189056396479],[139.53062438964844,35.63951873779297],[139.56597900390625,35.631252288818416],[139.57740783691406,35.6196022033692],[139.6240386962893,35.609237670898494],[139.66658020019554,35.58684158325201],[139.68307495117187,35.559162139892635],[139.73190307617187,35.540832519531364]]]]},"properties":{"ID_0":114,"ISO":"JP-14","NAME_0":"Japan","ID_1":19,"NAME_1":"Kanagawa","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"神奈川県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[132.55194091796898,32.747776031494254],[132.56750488281284,32.74055480957054],[132.56956481933594,32.71262741088873],[132.5397186279297,32.72638702392578],[132.55194091796898,32.747776031494254]]],[[[133.66322326660168,33.87840652465826],[133.66537475585972,33.86815643310547],[133.70092773437523,33.848464965820256],[133.73356628417991,33.847576141357536],[133.75022888183605,33.8335914611817],[133.7819366455078,33.838756561279354],[133.82072448730491,33.83405303955084],[133.84202575683594,33.8409042358399],[133.87500000000034,33.802799224853516],[133.9040069580078,33.79069137573248],[133.9459228515626,33.79769515991211],[133.95790100097702,33.8275985717774],[133.98721313476585,33.837520599365234],[134.00000000000023,33.817855834960994],[134.0357666015626,33.825237274170036],[134.03607177734398,33.80608367919933],[134.0615234375001,33.77186965942394],[134.0594177246095,33.74995803833008],[134.07060241699241,33.72674942016607],[134.06648254394543,33.687263488769645],[134.12637329101574,33.692634582519474],[134.16648864746094,33.6849250793457],[134.17803955078136,33.65086746215826],[134.15396118164085,33.628116607666016],[134.15879821777355,33.608089447021484],[134.18797302246105,33.582977294921875],[134.19847106933605,33.557411193847656],[134.2134704589846,33.56263732910162],[134.25825500488304,33.549934387207145],[134.2784423828125,33.55681610107433],[134.3055572509768,33.548034667968864],[134.28633117675804,33.530830383300895],[134.24295043945312,33.4642028808596],[134.241912841797,33.45095062255871],[134.2102508544923,33.39533615112316],[134.19891357421875,33.3319206237793],[134.18899536132812,33.299411773681754],[134.18548583984386,33.25844573974615],[134.16473388671875,33.26565551757818],[134.1382751464846,33.296142578125],[134.10888671875,33.30333328247076],[134.10499572753918,33.322223663330135],[134.0811157226567,33.337139129638956],[134.06809997558605,33.35601806640625],[134.03732299804687,33.382896423339844],[134.03248596191418,33.410724639892635],[133.9505615234375,33.44916534423834],[133.9337158203126,33.48795318603527],[133.88769531250023,33.501277923583984],[133.84333801269565,33.50544738769537],[133.83215332031273,33.51352691650385],[133.7543182373047,33.52101516723644],[133.7347106933596,33.53820037841797],[133.68885803222656,33.53546524047857],[133.60224914550815,33.51955032348633],[133.56250000000045,33.50277709960943],[133.56739807128906,33.49420166015631],[133.51290893554733,33.47467422485363],[133.4566345214846,33.44665145874035],[133.46266174316406,33.43071365356445],[133.44017028808594,33.41259002685558],[133.40055847167991,33.40456771850586],[133.34642028808605,33.400497436523665],[133.31942749023437,33.382453918457145],[133.28221130371094,33.37829208374029],[133.2634735107423,33.36913681030279],[133.26457214355514,33.34318161010765],[133.24781799316406,33.331111907958984],[133.24336242675793,33.275814056396484],[133.26405334472668,33.257705688476676],[133.24790954589844,33.24235534667969],[133.2569427490239,33.225276947021484],[133.21214294433605,33.18085861206055],[133.17031860351585,33.15043640136719],[133.14326477050827,33.098091125488395],[133.10476684570312,33.073043823242244],[133.0943603515625,33.023151397705135],[133.07231140136764,33.037063598632926],[133.03697204589866,33.03774261474615],[133.01968383789074,33.02538299560575],[132.9989013671876,32.98029327392578],[132.99249267578125,32.952220916748104],[132.99710083007812,32.92811965942383],[133.01028442382824,32.911388397216854],[133.00999450683605,32.88138961791992],[132.99424743652366,32.867618560791186],[132.95230102539074,32.86116409301758],[132.96571350097668,32.79924774169922],[133.00361633300804,32.7863883972168],[133.01666259765636,32.764720916748104],[133.02250671386741,32.730556488037166],[133.0041656494143,32.721111297607536],[132.93923950195324,32.77484893798828],[132.88833618164062,32.79027938842779],[132.85194396972656,32.786109924316406],[132.81527709960972,32.75249862670904],[132.7924041748047,32.74782180786127],[132.77098083496094,32.76148223876953],[132.7558135986328,32.75358963012695],[132.7216033935548,32.79306793212919],[132.69860839843773,32.79611206054693],[132.63975524902344,32.769233703613395],[132.6287841796875,32.799839019775675],[132.64935302734375,32.801696777343864],[132.65850830078125,32.855758666992415],[132.71882629394554,32.89432525634771],[132.70921325683605,32.926837921142635],[132.6847076416018,32.919307708740405],[132.66210937500034,32.92255783081055],[132.6648864746096,32.938678741455135],[132.68547058105491,32.94311904907238],[132.6887359619143,32.963905334472884],[132.6809539794922,33.02815628051769],[132.66032409668014,33.05344009399414],[132.6722412109375,33.08287811279297],[132.66584777832054,33.10550689697277],[132.63148498535168,33.12929534912115],[132.61802673339855,33.16663360595703],[132.62498474121116,33.17909240722662],[132.66412353515648,33.15210342407232],[132.6985473632816,33.13462066650396],[132.72833251953125,33.16493606567394],[132.75,33.199623107910156],[132.77185058593773,33.200786590576286],[132.78089904785156,33.249595642089844],[132.79658508300815,33.27154922485363],[132.8578338623047,33.28939056396496],[132.8985290527346,33.30888366699236],[132.90486145019543,33.3332901000976],[132.88699340820347,33.358036041259766],[132.86441040039108,33.3641242980957],[132.8527526855471,33.394927978515625],[132.8349609375,33.40326309204124],[132.82717895507824,33.44322586059582],[132.8094940185548,33.45675277709972],[132.84649658203136,33.47424316406244],[132.87382507324253,33.46774291992199],[132.95674133300793,33.46324539184582],[133.0176239013673,33.47756195068365],[133.01805114746094,33.48893737792986],[133.0470428466797,33.52645111083996],[133.0652008056643,33.53810501098633],[133.0633239746096,33.55997467041021],[133.04882812500023,33.57216262817394],[133.0583496093751,33.591938018798885],[133.0819244384769,33.605846405029354],[133.07249450683616,33.63276672363281],[133.0800170898441,33.6503257751466],[133.1109619140625,33.65459060668945],[133.1250000000001,33.68989944458008],[133.1631317138672,33.72805404663086],[133.16448974609386,33.74984741210932],[133.1831512451173,33.76147842407232],[133.1962585449221,33.790760040283146],[133.2234497070316,33.776935577392635],[133.25897216796875,33.789585113525504],[133.26989746093773,33.82038497924805],[133.29022216796875,33.82624053955084],[133.32824707031273,33.81137847900396],[133.3546600341798,33.828456878662166],[133.39508056640636,33.82296371459972],[133.42051696777344,33.83666229248047],[133.44044494628918,33.830867767333984],[133.47354125976562,33.833229064941406],[133.5000000000001,33.826107025146484],[133.529052734375,33.851421356201115],[133.54025268554722,33.8693199157716],[133.5596923828126,33.87871170043945],[133.58558654785202,33.86432266235357],[133.60943603515636,33.87833786010742],[133.63352966308628,33.87158966064453],[133.66322326660168,33.87840652465826]]]]},"properties":{"ID_0":114,"ISO":"JP-39","NAME_0":"Japan","ID_1":20,"NAME_1":"Kochi","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"高知県","VARNAME_1":"Koti"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[130.1762237548828,32.24803543090826],[130.1763153076172,32.22130966186529],[130.19053649902355,32.19974136352545],[130.20095825195335,32.168300628662166],[130.2099304199221,32.157173156738395],[130.17939758300793,32.13281631469732],[130.17810058593795,32.12838363647461],[130.1777343750001,32.12373352050787],[130.17767333984398,32.12096023559576],[130.1576995849614,32.089389801025504],[130.14938354492187,32.0974311828615],[130.14027404785156,32.105827331543026],[130.1108856201172,32.125747680664006],[130.11639404296875,32.15027618408209],[130.10864257812523,32.1665496826173],[130.0983734130864,32.17254638671898],[130.09777832031273,32.173332214355526],[130.09683227539085,32.17638778686518],[130.0968170166018,32.17750167846691],[130.09800720214855,32.180671691894474],[130.10359191894565,32.189117431640625],[130.10473632812534,32.190380096435774],[130.10700988769543,32.19314575195335],[130.10903930664085,32.19610977172857],[130.11132812500023,32.199443817138786],[130.11267089843773,32.20138931274414],[130.12812805175827,32.21159744262701],[130.12954711914062,32.21184158325207],[130.13912963867187,32.21315383911144],[130.14634704589844,32.2161598205567],[130.14805603027344,32.216945648193416],[130.1533660888673,32.220806121826286],[130.15829467773437,32.22525787353527],[130.1621856689453,32.23003387451183],[130.1631317138672,32.23138809204124],[130.16355895996116,32.23198699951166],[130.1762237548828,32.24803543090826]]],[[[130.266815185547,32.27954864501976],[130.24481201171898,32.294189453125],[130.2272491455078,32.27891159057623],[130.22377014160156,32.25951385498047],[130.21360778808594,32.28194427490246],[130.23858642578136,32.3009300231933],[130.26611328125,32.296112060546875],[130.266815185547,32.27954864501976]]],[[[130.36044311523483,32.35268020629883],[130.35743713378918,32.32144927978533],[130.32943725585937,32.30461883544933],[130.33000183105503,32.33388900756847],[130.36044311523483,32.35268020629883]]],[[[130.3222198486328,32.36722183227545],[130.3374023437501,32.3540153503418],[130.32441711425793,32.341247558593864],[130.30299377441418,32.35066223144531],[130.3222198486328,32.36722183227545]]],[[[130.11500549316418,32.553611755371094],[130.13145446777344,32.54569244384777],[130.16180419921875,32.55089950561529],[130.19277954101585,32.53727340698242],[130.19416809082043,32.49750137329107],[130.20487976074253,32.481193542480526],[130.20465087890636,32.4519882202149],[130.28150939941406,32.48411941528326],[130.31689453125,32.51734161376953],[130.36067199707043,32.52906036376959],[130.38638305664108,32.516666412353686],[130.4183349609375,32.52416610717796],[130.45956420898437,32.52208709716791],[130.43753051757812,32.48509979248064],[130.4375457763673,32.469081878662166],[130.40940856933616,32.434871673583984],[130.42361450195324,32.431667327880916],[130.4006958007817,32.39801788330084],[130.38301086425793,32.38679122924805],[130.35360717773437,32.38583374023443],[130.33959960937523,32.40456008911133],[130.30934143066418,32.39506149291998],[130.26271057128906,32.41070938110357],[130.2445831298828,32.40869140625006],[130.2161102294923,32.41972351074219],[130.1976776123047,32.40296173095709],[130.2191619873048,32.393054962158146],[130.21965026855491,32.36573791503906],[130.1997222900394,32.322223663330135],[130.17329406738293,32.31011962890631],[130.1666717529298,32.296390533447266],[130.11749267578136,32.27166748046892],[130.10072326660168,32.23149490356457],[130.0783538818364,32.21266555786133],[130.0491943359375,32.20522689819336],[130.04055786132835,32.18138885498058],[130.0225067138673,32.166942596435604],[130.01333618164062,32.196388244629134],[129.99705505371105,32.215511322021484],[130.01213073730491,32.23550033569347],[129.96638488769577,32.243610382080135],[129.9933319091798,32.28464889526373],[129.99404907226608,32.30744552612305],[129.97802734375045,32.3289909362793],[129.97471618652344,32.354999542236385],[129.99734497070324,32.39237213134777],[130.0062713623048,32.428768157958984],[130.0360565185548,32.46475982666021],[130.04695129394565,32.493057250976676],[130.03715515136764,32.51874160766613],[130.06556701660202,32.51645660400396],[130.1147613525393,32.540954589843864],[130.11500549316418,32.553611755371094]]],[[[130.49472045898483,32.610000610351676],[130.51162719726562,32.594558715820426],[130.49301147460983,32.57638549804693],[130.47972106933628,32.59138870239269],[130.49472045898483,32.610000610351676]]],[[[130.44221496582054,32.62611007690441],[130.4584655761721,32.611515045166016],[130.45916748046875,32.58722305297846],[130.43916320800804,32.54777908325195],[130.40472412109375,32.550834655762],[130.41444396972668,32.5816650390625],[130.39500427246105,32.59166717529308],[130.40834045410168,32.61166763305664],[130.44221496582054,32.62611007690441]]],[[[131.33094787597668,32.82933044433605],[131.26722717285156,32.822528839111385],[131.24810791015648,32.78651809692394],[131.23725891113327,32.74124526977545],[131.1985626220703,32.723155975341854],[131.17953491210972,32.69366455078131],[131.17756652832043,32.67368316650402],[131.1475982666018,32.67359161376953],[131.124969482422,32.6407203674317],[131.1165924072269,32.59000778198248],[131.09315490722656,32.57542037963867],[131.05686950683605,32.58433914184582],[131.04231262207054,32.553199768066406],[131.02183532714844,32.54587173461914],[131.02636718750034,32.525711059570256],[131.011444091797,32.51132965087896],[131.02229309082077,32.43794631958008],[131.04373168945347,32.40865707397472],[131.06610107421875,32.404716491699276],[131.0777130126953,32.375534057617244],[131.07559204101562,32.355373382568416],[131.09625244140648,32.34705352783203],[131.11431884765625,32.32620620727545],[131.08251953125023,32.281745910644645],[131.05398559570312,32.280586242675895],[131.04914855957043,32.240638732910384],[131.06594848632835,32.23824691772461],[131.08221435546875,32.210105895996094],[131.1065826416018,32.18794250488281],[131.10145568847702,32.15161895751959],[131.05644226074264,32.154289245605526],[131.03962707519554,32.1666259765625],[131.01014709472668,32.16879653930664],[130.9745330810547,32.11761856079113],[130.9351806640626,32.11249923706072],[130.91143798828136,32.12723541259777],[130.88058471679733,32.11782836914068],[130.86051940917991,32.096397399902344],[130.8392028808595,32.103225708007926],[130.8112030029298,32.09549713134771],[130.7301788330078,32.09859848022461],[130.70445251464844,32.102573394775334],[130.65713500976562,32.133056640625],[130.65390014648437,32.147922515869254],[130.6249694824221,32.15333938598633],[130.61470031738327,32.17913055419933],[130.57731628418014,32.151237487793026],[130.54602050781273,32.14642715454113],[130.5419464111328,32.136001586914176],[130.5104522705078,32.13727951049799],[130.4785919189453,32.12921905517578],[130.45819091796875,32.10997772216797],[130.4052429199221,32.116798400878906],[130.38911437988293,32.14350891113281],[130.36175537109398,32.15463256835943],[130.37083435058594,32.20111083984375],[130.40237426757835,32.23502349853527],[130.42222595214866,32.23833465576172],[130.42832946777366,32.2627792358399],[130.4486083984376,32.28777694702143],[130.48101806640625,32.30009460449219],[130.46583557128906,32.32138824462902],[130.49092102050793,32.368274688720874],[130.57278442382824,32.44111251831066],[130.565185546875,32.47639846801769],[130.5483398437501,32.47666549682617],[130.54249572753906,32.49694442749029],[130.57247924804687,32.5068435668947],[130.53630065918014,32.524887084960994],[130.56451416015648,32.54145050048834],[130.5971374511721,32.58367538452171],[130.6303710937501,32.60089111328125],[130.61727905273437,32.61729812622076],[130.53218078613315,32.62063598632818],[130.51025390625,32.61119079589844],[130.4639129638672,32.60484695434593],[130.46119689941418,32.633865356445256],[130.49966430664085,32.654151916504134],[130.54125976562545,32.668708801269815],[130.56660461425804,32.698505401611385],[130.5992889404298,32.71247100830078],[130.60690307617187,32.74296951293951],[130.59780883789062,32.77402114868164],[130.6124267578126,32.795703887939396],[130.5805511474614,32.841110229492244],[130.5242614746096,32.851631164550895],[130.5204315185548,32.881866455078125],[130.48059082031273,32.90327835083002],[130.4628601074221,32.901271820068416],[130.4432373046876,32.91466903686535],[130.43017578125,32.98387145996111],[130.40081787109375,33.00639343261719],[130.46939086914074,32.99942779541021],[130.5092926025394,33.003131866455135],[130.51570129394577,33.013004302978516],[130.49996948242187,33.04889297485357],[130.52836608886753,33.0629768371582],[130.56597900390625,33.08979797363287],[130.5823211669923,33.112716674804744],[130.61520385742187,33.105274200439624],[130.65826416015625,33.105274200439624],[130.66943359375045,33.14490509033203],[130.73425292968773,33.151142120361385],[130.75872802734375,33.12972259521496],[130.83164978027344,33.10315704345709],[130.84564208984398,33.10315704345709],[130.88951110839866,33.083286285400504],[130.90261840820312,33.060768127441406],[130.9202117919923,33.04978179931646],[130.95201110839844,33.04752349853527],[130.97244262695312,33.02040481567383],[130.99169921875,33.020175933838004],[131.0164794921875,33.04697799682623],[131.0132751464846,33.06657028198242],[131.02560424804722,33.0833358764649],[130.98326110839878,33.13501358032221],[130.98980712890625,33.16663360595703],[131.02267456054733,33.17742156982433],[131.04158020019543,33.190715789794865],[131.0624542236328,33.19169998168945],[131.11306762695335,33.179695129394645],[131.16589355468773,33.133174896240234],[131.17561340332054,33.083286285400504],[131.19604492187523,33.07394027709972],[131.21914672851574,33.04993438720709],[131.2305908203126,33.00704956054693],[131.248748779297,32.99350738525396],[131.24996948242187,32.960315704345874],[131.25970458984398,32.88373184204107],[131.27626037597656,32.86748504638683],[131.315887451172,32.847858428955135],[131.33094787597668,32.82933044433605]]]]},"properties":{"ID_0":114,"ISO":"JP-43","NAME_0":"Japan","ID_1":21,"NAME_1":"Kumamoto","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"熊本県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[135.4733123779297,35.55706405639654],[135.45243835449241,35.51990127563482],[135.47889709472656,35.50233459472656],[135.46412658691452,35.46074676513666],[135.51004028320335,35.41930389404308],[135.53062438964844,35.41044998168957],[135.5372314453126,35.37423706054693],[135.625,35.36643218994146],[135.70150756835937,35.34175109863281],[135.7203369140626,35.351467132568416],[135.7709655761721,35.35259628295904],[135.77693176269577,35.33948135375988],[135.80783081054733,35.31382751464855],[135.83085632324241,35.27592849731451],[135.8496856689453,35.262420654296875],[135.832489013672,35.21652603149414],[135.85647583007858,35.148250579833984],[135.85473632812523,35.128433227539176],[135.83929443359398,35.08943176269531],[135.83886718750023,35.05621337890625],[135.82131958007835,35.04579544067377],[135.83708190918003,35.019001007080135],[135.8363800048828,34.99680328369146],[135.85896301269543,34.9754524230957],[135.88119506835937,34.933799743652344],[135.86950683593784,34.88890457153326],[135.90534973144543,34.86952209472656],[135.94253540039074,34.88514709472656],[135.94905090332065,34.848552703857536],[135.97967529296898,34.835186004638786],[135.99998474121094,34.84122085571295],[136.02534484863315,34.7883415222168],[136.03643798828125,34.772521972656364],[136.0342712402345,34.7526969909668],[136.04818725585937,34.737876892089844],[136.03102111816406,34.7063941955567],[135.98971557617187,34.71189117431652],[135.97683715820324,34.73781967163086],[135.94607543945324,34.735088348388615],[135.91458129882812,34.74098968505865],[135.89300537109375,34.70614242553711],[135.8558502197268,34.702613830566406],[135.79624938964855,34.720726013183594],[135.758544921875,34.724342346191406],[135.73941040039074,34.7499618530274],[135.7319946289066,34.77547073364269],[135.7467041015625,34.80148315429693],[135.712860107422,34.84198379516607],[135.69444274902344,34.84987258911144],[135.67901611328125,34.89418411254883],[135.65687561035156,34.90604019165039],[135.64590454101608,34.92653274536144],[135.6159362792971,34.94232177734369],[135.61608886718773,34.96789932250982],[135.5779724121096,34.96887969970703],[135.5649871826173,34.940299987793026],[135.58233642578148,34.93402099609381],[135.57586669921898,34.91348648071289],[135.5440368652346,34.91203689575207],[135.53854370117187,34.92273330688488],[135.48866271972656,34.95289611816412],[135.49290466308616,34.986331939697266],[135.44329833984386,35.004356384277344],[135.4208374023442,34.999958038330135],[135.38336181640625,35.01149749755865],[135.3737945556644,35.04222106933605],[135.38238525390625,35.064495086669865],[135.4016113281251,35.07307815551752],[135.4029998779297,35.09086227416992],[135.38668823242233,35.12578582763683],[135.3422088623048,35.13668060302729],[135.33731079101574,35.1463508605957],[135.2940216064453,35.138813018798885],[135.29190063476608,35.16929626464838],[135.23980712890648,35.173564910888786],[135.20777893066452,35.15861892700201],[135.18989562988293,35.16866683959961],[135.19833374023437,35.200931549072266],[135.16497802734375,35.21729278564459],[135.1575622558596,35.2583465576173],[135.09619140625023,35.256587982177734],[135.08047485351562,35.24151611328131],[135.01344299316418,35.27081298828125],[135,35.28726196289068],[134.9603424072268,35.29560852050781],[134.92416381835983,35.31256103515625],[134.9215850830078,35.34378814697277],[134.93020629882835,35.3952751159668],[134.96348571777355,35.40517425537115],[135,35.38382720947277],[135.02256774902366,35.39137268066406],[135.0526123046875,35.4166374206543],[135.05213928222702,35.44814300537121],[135.04360961914074,35.46834564208996],[135.0465087890625,35.514556884765625],[135.03999328613293,35.5346031188966],[135.00732421875045,35.53245162963873],[134.94064331054687,35.509529113769645],[134.92585754394554,35.51686477661144],[134.91545104980503,35.54222488403332],[134.87181091308594,35.575412750244254],[134.86730957031273,35.59502410888666],[134.87471008300804,35.623065948486385],[134.8706512451172,35.65916824340832],[134.8829498291018,35.647499084472656],[134.92056274414062,35.64500045776373],[134.96638488769565,35.664165496826115],[134.9866638183596,35.69194412231451],[135.02415466308605,35.689395904541016],[135.06002807617222,35.707702636718864],[135.08396911621116,35.73796463012707],[135.14512634277344,35.74982452392584],[135.22975158691418,35.773494720458984],[135.27488708496116,35.74131774902338],[135.28709411621116,35.71116638183605],[135.30667114257812,35.698467254638786],[135.29940795898472,35.67900466918957],[135.27436828613293,35.670993804931754],[135.25398254394543,35.65079498291021],[135.24514770507835,35.62092971801758],[135.21438598632812,35.59796142578131],[135.18919372558594,35.56502532958996],[135.25202941894577,35.56951904296875],[135.23701477050793,35.546222686767635],[135.27102661132812,35.532844543456974],[135.28669738769554,35.51681518554682],[135.33140563964844,35.51680755615246],[135.31639099121094,35.455833435058594],[135.35498046875023,35.48839187622076],[135.40022277832054,35.493442535400504],[135.39060974121094,35.50738525390631],[135.3558044433595,35.50226974487305],[135.3362579345703,35.53183364868164],[135.38087463378906,35.561866760253906],[135.39059448242187,35.556461334228516],[135.42515563964844,35.57109451293945],[135.4733123779297,35.55706405639654]]]},"properties":{"ID_0":114,"ISO":"JP-26","NAME_0":"Japan","ID_1":22,"NAME_1":"Kyoto","TYPE_1":"Fu","ENGTYPE_1":"Urban Prefecture","NL_NAME_1":"京都府","VARNAME_1":"Kioto"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.67088317871116,35.14551544189453],[136.68016052246094,35.12866592407232],[136.7043914794922,35.11997222900396],[136.73124694824253,35.03628540039068],[136.73652648925827,35.0293807983399],[136.69749450683628,35.02055740356451],[136.65583801269577,34.99805450439453],[136.63861083984375,34.943611145019645],[136.64639282226562,34.90305709838873],[136.61444091796898,34.85388946533203],[136.55555725097668,34.788612365722656],[136.5408325195317,34.76694488525396],[136.52198791503918,34.704315185546875],[136.54861450195335,34.65999984741211],[136.54695129394543,34.626667022705135],[136.52833557128906,34.609443664550895],[136.6202850341797,34.5991668701173],[136.64666748046898,34.588958740234375],[136.66139221191418,34.56333160400385],[136.6955566406251,34.54666519165039],[136.7397155761721,34.532775878906364],[136.74305725097668,34.52361297607433],[136.77806091308605,34.50833511352539],[136.81056213378918,34.50833511352539],[136.83555603027355,34.5011100769043],[136.84889221191406,34.480556488037166],[136.86917114257812,34.474723815918026],[136.86944580078148,34.45500183105463],[136.91278076171886,34.454444885253906],[136.927215576172,34.41416549682623],[136.90972900390636,34.398056030273494],[136.85638427734375,34.366943359375],[136.87194824218795,34.3530540466308],[136.8925018310548,34.313056945800895],[136.8844451904297,34.29944610595709],[136.8999938964845,34.275554656982536],[136.81982421875023,34.2503395080567],[136.7747802734375,34.258117675781364],[136.7655487060548,34.27861022949219],[136.83038330078136,34.27537918090832],[136.82249450683616,34.30416488647472],[136.7980499267578,34.289443969726506],[136.7630615234375,34.303890228271484],[136.68833923339878,34.3058319091798],[136.70639038085983,34.33611297607433],[136.67388916015625,34.32555389404297],[136.67472839355514,34.31388854980469],[136.60249328613293,34.257221221923885],[136.57943725585937,34.275001525878906],[136.53721618652355,34.25527954101574],[136.51268005371094,34.26966094970703],[136.49749755859398,34.22472381591808],[136.45263671875,34.232177734375114],[136.39883422851562,34.20286560058594],[136.3622283935547,34.18972396850597],[136.35166931152355,34.20555496215832],[136.31684875488304,34.17873764038086],[136.30499267578125,34.18055725097656],[136.28089904785168,34.152019500732365],[136.28472900390636,34.11777877807623],[136.31265258789085,34.118484497070426],[136.3013916015625,34.09249877929693],[136.23611450195312,34.08583450317377],[136.20222473144554,34.07694625854498],[136.2198486328125,34.06322097778326],[136.24417114257812,34.06000137329107],[136.2461090087893,34.04194259643566],[136.2816619873048,34.022777557373104],[136.26861572265648,33.99472045898449],[136.27221679687523,33.97166824340826],[136.2388153076172,33.968391418457145],[136.18539428710937,33.91503143310541],[136.15069580078125,33.930961608886776],[136.14805603027366,33.902778625488395],[136.1285858154297,33.886077880859375],[136.10777282714844,33.891109466552734],[136.07804870605491,33.85944366455084],[136.04666137695312,33.806667327880916],[136.0102996826172,33.72195816040039],[135.97894287109386,33.73400497436529],[135.95869445800804,33.725151062011776],[135.93458557128906,33.75096893310558],[135.9098358154298,33.76360321044922],[135.8875579833989,33.79807281494152],[135.85897827148437,33.81584548950201],[135.86296081543014,33.84219741821295],[135.8559722900394,33.874061584472656],[135.86241149902344,33.89688110351574],[135.87222290039062,33.91684722900396],[135.90237426757812,33.922096252441406],[135.89569091796875,33.9422225952149],[135.92738342285168,33.97586441040045],[135.95950317382824,33.977619171142635],[136.006103515625,34.006526947021484],[136.02171325683628,34.03305435180664],[136.06909179687523,34.03034973144537],[136.10382080078148,34.02239227294933],[136.09669494628906,34.07863235473633],[136.10890197753906,34.08989715576183],[136.10742187500023,34.13252639770519],[136.11512756347668,34.16385650634771],[136.09629821777378,34.19245147705084],[136.11073303222668,34.207054138183594],[136.13314819335937,34.249851226806754],[136.10023498535202,34.288471221923885],[136.09797668457043,34.29851150512695],[136.13182067871094,34.31367492675781],[136.1116790771489,34.326499938964844],[136.0889587402346,34.376167297363395],[136.07315063476608,34.391616821289176],[136.09869384765648,34.43174743652344],[136.1661834716798,34.445163726806754],[136.20918273925793,34.4453125],[136.22224426269554,34.49345016479492],[136.21430969238293,34.52513122558605],[136.181121826172,34.514106750488395],[136.157684326172,34.55635452270519],[136.11604309082054,34.54484939575201],[136.0633087158203,34.56624221801769],[136.0501708984375,34.58333206176758],[136.05508422851574,34.60446548461914],[136.0723114013672,34.62549209594732],[136.06973266601574,34.65051651000982],[136.0888671875,34.67223739624029],[136.06709289550793,34.70508575439453],[136.07171630859375,34.7141571044923],[136.04818725585937,34.737876892089844],[136.0342712402345,34.7526969909668],[136.03643798828125,34.772521972656364],[136.02534484863315,34.7883415222168],[136.06597900390625,34.79745483398443],[136.09353637695335,34.81140136718756],[136.0901794433595,34.832862854003906],[136.12908935546886,34.859134674072266],[136.10340881347656,34.8672714233399],[136.09008789062523,34.88226318359375],[136.11871337890648,34.88899612426769],[136.14984130859386,34.879673004150334],[136.18214416503906,34.88332748413086],[136.19880676269554,34.86890411376953],[136.24998474121094,34.855625152588004],[136.2788238525394,34.86907577514654],[136.30726623535156,34.87175369262701],[136.3236083984375,34.886497497558594],[136.36842346191418,34.90280532836914],[136.3789520263673,34.94141006469738],[136.39965820312523,34.95440673828125],[136.42286682128906,34.99999237060547],[136.420867919922,35.044776916503906],[136.44381713867222,35.06667327880871],[136.4392547607422,35.0758438110351],[136.44813537597702,35.12287139892584],[136.43870544433594,35.12802124023443],[136.45718383789062,35.15975189208996],[136.41554260253906,35.19235992431652],[136.4179840087893,35.21472549438482],[136.44651794433594,35.21570205688488],[136.46237182617187,35.2299041748048],[136.5134735107422,35.23643875122076],[136.5395660400394,35.246452331543026],[136.56300354003918,35.20351409912115],[136.58258056640648,35.19336700439453],[136.6250457763672,35.144584655761776],[136.67088317871116,35.14551544189453]]]},"properties":{"ID_0":114,"ISO":"JP-24","NAME_0":"Japan","ID_1":23,"NAME_1":"Mie","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"三重県","VARNAME_1":"Miye"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[141.567840576172,38.3135223388673],[141.58897399902366,38.3022346496582],[141.57771301269543,38.27158737182623],[141.55867004394554,38.2808952331543],[141.54763793945324,38.30190277099621],[141.567840576172,38.3135223388673]]],[[[141.62812805175793,38.8784637451173],[141.63359069824241,38.86613845825201],[141.60736083984386,38.85463333129883],[141.604461669922,38.87716674804699],[141.62812805175793,38.8784637451173]]],[[[141.6320343017578,38.97122192382807],[141.64390563964866,38.95552825927746],[141.65155029296898,38.90232086181652],[141.665740966797,38.895545959472656],[141.6552734375,38.86388778686535],[141.63316345214844,38.896366119384766],[141.59042358398437,38.870590209960994],[141.5825653076173,38.853443145751896],[141.59158325195312,38.834236145019645],[141.5612945556643,38.812957763671875],[141.5555419921875,38.8006210327149],[141.52030944824241,38.78749847412121],[141.51554870605491,38.76499938964855],[141.5607147216797,38.73840332031256],[141.5668792724614,38.7256965637207],[141.54153442382824,38.70800018310541],[141.52920532226562,38.717094421386776],[141.5112304687501,38.68582916259777],[141.4919128417971,38.68626403808588],[141.449920654297,38.65814971923834],[141.4656219482423,38.647743225097656],[141.53045654296886,38.63562774658209],[141.52513122558605,38.60949707031256],[141.48765563964844,38.58324813842779],[141.4638366699221,38.5803337097168],[141.45625305175827,38.561996459960994],[141.4880523681643,38.55389022827154],[141.49217224121105,38.53423690795904],[141.53305053710937,38.549167633056754],[141.54502868652344,38.520912170410156],[141.5370025634769,38.4911003112793],[141.51583862304687,38.491943359375],[141.51211547851585,38.513259887695256],[141.48704528808594,38.50189590454113],[141.49861145019543,38.479167938232536],[141.49690246582043,38.44960021972656],[141.47506713867187,38.41962051391607],[141.50765991210937,38.39739990234381],[141.4844665527346,38.379257202148494],[141.49034118652366,38.36709213256836],[141.5198974609375,38.36607742309582],[141.5344390869143,38.33944320678711],[141.5398712158203,38.303043365478516],[141.5064697265626,38.297134399414176],[141.4908905029297,38.30856704711914],[141.46638488769543,38.30574798583979],[141.46356201171886,38.33565139770508],[141.44529724121094,38.351963043213004],[141.43089294433605,38.39237976074219],[141.411102294922,38.39533615112305],[141.3685150146489,38.38478851318365],[141.3669586181643,38.41072463989269],[141.3990173339846,38.412651062011776],[141.42340087890648,38.43359756469738],[141.38816833496105,38.436885833740234],[141.358367919922,38.413555145263786],[141.3013916015626,38.41611099243164],[141.22129821777344,38.39776611328131],[141.15905761718773,38.3645591735841],[141.1339569091798,38.376308441162166],[141.0875244140626,38.381252288818416],[141.0617828369143,38.36896514892584],[141.05169677734398,38.332572937011776],[141.07716369628906,38.31892395019531],[141.08956909179687,38.301959991455135],[141.06146240234375,38.28243637084961],[141.02865600585937,38.275753021240234],[140.9697265625001,38.194721221923885],[140.9486083984375,38.15250015258789],[140.92527770996094,38.07860946655279],[140.9144439697269,37.9900016784668],[140.92250061035156,37.91416549682623],[140.9313964843751,37.891799926757926],[140.89617919921875,37.899150848388786],[140.8595886230471,37.8881454467774],[140.8542633056643,37.79202270507818],[140.78880310058594,37.80019378662115],[140.77940368652378,37.77854156494152],[140.72883605957043,37.78311920166027],[140.68963623046898,37.81156921386719],[140.6826629638672,37.83328247070324],[140.69427490234386,37.85042572021496],[140.68550109863293,37.88753128051769],[140.66348266601562,37.89776992797857],[140.62979125976585,37.89623641967779],[140.62188720703125,37.90920257568354],[140.59068298339866,37.906311035156364],[140.57312011718773,37.917366027832145],[140.54132080078136,37.90213775634777],[140.48748779296898,37.898517608642635],[140.472900390625,37.915290832519645],[140.46899414062523,37.94217681884777],[140.43663024902355,37.95083236694347],[140.4004364013672,37.97070312500006],[140.38926696777366,37.952453613281364],[140.35374450683594,37.947086334228516],[140.3217010498047,37.95518493652344],[140.2832946777345,37.97368240356451],[140.29214477539085,38.004707336425895],[140.27900695800804,38.032871246338004],[140.2803649902346,38.053092956543026],[140.3675384521489,38.05357360839855],[140.41773986816418,38.07566070556652],[140.42718505859398,38.11666870117199],[140.4481201171875,38.128192901611385],[140.4835052490239,38.179985046386776],[140.4715270996095,38.22903823852539],[140.4798278808596,38.269737243652344],[140.49592590332043,38.29082489013683],[140.53334045410168,38.32268142700195],[140.5310516357423,38.35584259033209],[140.56539916992222,38.37430572509771],[140.58050537109375,38.39228439331055],[140.58486938476562,38.429431915283146],[140.62303161621094,38.45232772827143],[140.60163879394565,38.48420715332037],[140.57135009765625,38.49995040893566],[140.5723114013672,38.52005767822271],[140.5579071044923,38.536159515380916],[140.5769653320317,38.56196212768566],[140.57542419433616,38.583282470703125],[140.54579162597656,38.62644195556646],[140.6032257080078,38.63643264770508],[140.6202087402346,38.66805648803711],[140.62493896484375,38.69730377197277],[140.6140136718751,38.72075653076183],[140.64843750000023,38.76451492309582],[140.60639953613293,38.7823104858399],[140.60278320312534,38.81570053100586],[140.58953857421898,38.833614349365234],[140.54302978515636,38.864845275878906],[140.55451965332043,38.87886428833008],[140.56797790527366,38.871681213378906],[140.61038208007824,38.883609771728516],[140.65750122070324,38.88613128662121],[140.6880645751953,38.91387939453131],[140.7184906005864,38.92419433593756],[140.73066711425804,38.94147109985357],[140.7767791748047,38.95510864257818],[140.814697265625,38.961593627929744],[140.8867950439453,38.9246559143067],[140.95968627929687,38.905502319335994],[140.98762512207043,38.873191833496094],[141.01914978027355,38.88059616088873],[141.03866577148437,38.874706268310604],[141.09967041015625,38.88320159912115],[141.13633728027366,38.87521743774414],[141.14906311035156,38.85517883300787],[141.11900329589866,38.833450317382926],[141.144287109375,38.80158615112305],[141.150390625,38.78201293945307],[141.20429992675793,38.76818847656256],[141.21546936035156,38.74991226196289],[141.25914001464844,38.757156372070426],[141.26797485351585,38.784851074218864],[141.3008270263673,38.79045486450207],[141.31353759765648,38.819343566894645],[141.34437561035156,38.80546951293951],[141.3749694824221,38.80352020263683],[141.38259887695335,38.79307174682623],[141.4188385009768,38.77818679809576],[141.43785095214844,38.7796249389649],[141.43817138671886,38.80818557739269],[141.46009826660156,38.81275177001953],[141.4540557861328,38.83592987060558],[141.4634246826172,38.85648345947271],[141.4583435058596,38.87662124633795],[141.4927215576173,38.90448760986328],[141.4945068359375,38.94875717163097],[141.4872589111328,38.9749870300293],[141.49954223632835,38.99566650390625],[141.53042602539085,38.98956298828125],[141.57281494140636,38.99071502685547],[141.6320343017578,38.97122192382807]]]]},"properties":{"ID_0":114,"ISO":"JP-04","NAME_0":"Japan","ID_1":24,"NAME_1":"Miyagi","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"宮城県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[131.877197265625,32.738456726074446],[131.8621520996095,32.73464584350597],[131.8461151123048,32.70833206176769],[131.8188934326172,32.69083404541044],[131.77806091308628,32.674446105957145],[131.76296997070324,32.65436935424799],[131.77345275878918,32.63417434692383],[131.74249267578148,32.592224121094034],[131.70127868652366,32.57962799072271],[131.6808319091797,32.542221069335994],[131.68882751464844,32.51434326171898],[131.7291717529298,32.492500305175895],[131.69583129882824,32.469165802001896],[131.66027832031273,32.483055114746094],[131.65060424804687,32.45755004882818],[131.68055725097668,32.4408340454101],[131.68583679199241,32.41805648803728],[131.64210510253906,32.407417297363395],[131.62197875976574,32.35623931884771],[131.59405517578125,32.310737609863395],[131.57656860351608,32.2676734924317],[131.5772247314453,32.24861145019531],[131.55487060546886,32.197742462158146],[131.55332946777344,32.17805480957031],[131.5363769531251,32.121902465820426],[131.5009918212893,32.047676086426065],[131.50242614746105,32.038139343262],[131.4577636718751,31.909469604492187],[131.44917297363293,31.834722518920955],[131.45388793945324,31.815835952758902],[131.48167419433594,31.78603172302246],[131.46279907226562,31.733568191528377],[131.46739196777344,31.721031188964843],[131.4510040283203,31.680971145629996],[131.46226501464866,31.667764663696346],[131.4557647705078,31.623210906982535],[131.41757202148472,31.603382110595817],[131.39910888671875,31.57615852355957],[131.38470458984386,31.518419265747127],[131.38595581054687,31.481241226196573],[131.36193847656273,31.470228195190486],[131.37179565429722,31.428529739379883],[131.3321533203125,31.39682960510254],[131.33547973632858,31.360065460205078],[131.31594848632812,31.371839523315486],[131.3091735839845,31.390205383300838],[131.26260375976585,31.37894058227539],[131.2459106445316,31.385633468628043],[131.23580932617187,31.40548324584961],[131.2417449951172,31.427671432495117],[131.2258300781251,31.431552886963004],[131.20596313476585,31.45323562622076],[131.16503906250034,31.45778846740734],[131.1652984619143,31.4801082611084],[131.17826843261741,31.49997520446783],[131.1993408203126,31.508213043213004],[131.19993591308628,31.540822982788143],[131.19282531738293,31.554220199585074],[131.2061767578126,31.570503234863395],[131.19050598144554,31.599023818969726],[131.19024658203125,31.621120452880973],[131.16630554199264,31.633613586425895],[131.13430786132824,31.62359619140625],[131.1177368164066,31.628921508789062],[131.0816345214845,31.656625747680664],[131.05622863769554,31.631446838378963],[131.02838134765648,31.673601150512695],[131.02021789550793,31.702644348144645],[131.02017211914085,31.74178504943876],[130.9801025390626,31.749961853027457],[130.9893798828125,31.776556015014705],[130.9346160888673,31.78210830688488],[130.91954040527355,31.797584533691463],[130.8865966796875,31.802009582519815],[130.87788391113304,31.840196609497127],[130.88824462890636,31.843408584594783],[130.8990936279298,31.88734626770031],[130.88311767578136,31.918184280395564],[130.85662841796875,31.934913635253963],[130.8138275146489,31.941324234008902],[130.7850952148441,31.978509902954215],[130.78045654296886,32.011219024658374],[130.73864746093773,32.04529953002941],[130.7056579589846,32.055290222168026],[130.7085876464845,32.07652664184576],[130.7301788330078,32.09859848022461],[130.8112030029298,32.09549713134771],[130.8392028808595,32.103225708007926],[130.86051940917991,32.096397399902344],[130.88058471679733,32.11782836914068],[130.91143798828136,32.12723541259777],[130.9351806640626,32.11249923706072],[130.9745330810547,32.11761856079113],[131.01014709472668,32.16879653930664],[131.03962707519554,32.1666259765625],[131.05644226074264,32.154289245605526],[131.10145568847702,32.15161895751959],[131.1065826416018,32.18794250488281],[131.08221435546875,32.210105895996094],[131.06594848632835,32.23824691772461],[131.04914855957043,32.240638732910384],[131.05398559570312,32.280586242675895],[131.08251953125023,32.281745910644645],[131.11431884765625,32.32620620727545],[131.09625244140648,32.34705352783203],[131.07559204101562,32.355373382568416],[131.0777130126953,32.375534057617244],[131.06610107421875,32.404716491699276],[131.04373168945347,32.40865707397472],[131.02229309082077,32.43794631958008],[131.011444091797,32.51132965087896],[131.02636718750034,32.525711059570256],[131.02183532714844,32.54587173461914],[131.04231262207054,32.553199768066406],[131.05686950683605,32.58433914184582],[131.09315490722656,32.57542037963867],[131.1165924072269,32.59000778198248],[131.124969482422,32.6407203674317],[131.1475982666018,32.67359161376953],[131.17756652832043,32.67368316650402],[131.17953491210972,32.69366455078131],[131.1985626220703,32.723155975341854],[131.23725891113327,32.74124526977545],[131.24810791015648,32.78651809692394],[131.26722717285156,32.822528839111385],[131.33094787597668,32.82933044433605],[131.35551452636764,32.804603576660156],[131.41839599609398,32.80976867675781],[131.43858337402344,32.82413101196306],[131.4775390625001,32.834049224853686],[131.49143981933594,32.81631851196289],[131.51966857910156,32.79743194580084],[131.51074218750023,32.77706146240246],[131.54148864746105,32.75532913208008],[131.57695007324264,32.75492095947294],[131.592254638672,32.77051162719738],[131.6249694824221,32.771034240722656],[131.67114257812523,32.763278961181584],[131.70564270019554,32.76964187622093],[131.7304382324221,32.79433822631847],[131.73797607421886,32.82624053955084],[131.7620086669923,32.833297729492244],[131.81877136230491,32.82419204711937],[131.86184692382812,32.805763244628906],[131.84658813476562,32.772983551025504],[131.85757446289074,32.733489990234375],[131.877197265625,32.738456726074446]]]},"properties":{"ID_0":114,"ISO":"JP-45","NAME_0":"Japan","ID_1":25,"NAME_1":"Miyazaki","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"宮崎県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[138.69792175293003,36.74103164672863],[138.6756134033203,36.727554321289176],[138.6249694824221,36.716766357421875],[138.61920166015625,36.707515716552734],[138.54780578613315,36.700691223144645],[138.52871704101574,36.692543029785156],[138.5210876464845,36.673751831054744],[138.5281982421875,36.648105621338004],[138.46127319335937,36.628631591796875],[138.4550018310548,36.60895156860357],[138.43084716796875,36.5933074951173],[138.4239959716798,36.570377349853516],[138.43162536621105,36.55261993408209],[138.4157562255864,36.53844070434582],[138.4009552001953,36.48472213745117],[138.40423583984375,36.43157958984369],[138.4510345458989,36.41668319702154],[138.4676361083989,36.401187896728516],[138.48947143554687,36.398384094238395],[138.49996948242187,36.41102600097656],[138.5337371826172,36.39953231811529],[138.5669403076172,36.41707611083996],[138.60276794433594,36.4210090637207],[138.64491271972656,36.41098022460932],[138.6592254638672,36.363761901855526],[138.65321350097702,36.343097686767635],[138.65611267089855,36.30297088623058],[138.64659118652355,36.290603637695426],[138.60343933105514,36.27529525756836],[138.60705566406295,36.250007629394474],[138.63496398925793,36.17799758911127],[138.6125030517578,36.15833663940441],[138.58108520507835,36.164829254150504],[138.603271484375,36.133438110351676],[138.6361236572269,36.13036346435558],[138.65051269531273,36.10258865356451],[138.6334991455078,36.08832168579113],[138.6461334228518,36.064247131347656],[138.64038085937523,36.03502655029308],[138.65301513671898,36.01555252075195],[138.68391418457054,36.00754547119152],[138.6902313232423,35.990726470947266],[138.72033691406273,35.98995590209961],[138.7153472900393,35.970687866210994],[138.73928833007824,35.938114166259766],[138.731689453125,35.90605926513683],[138.71116638183616,35.9065780639649],[138.67422485351562,35.86759948730469],[138.6139373779298,35.870460510253906],[138.61199951171898,35.89986038208019],[138.5975799560548,35.91420745849615],[138.53684997558616,35.912071228027344],[138.50845336914108,35.91538238525396],[138.497314453125,35.8984489440918],[138.472625732422,35.89482879638683],[138.44830322265625,35.916679382324276],[138.456787109375,35.936679840088004],[138.42988586425793,35.95469665527355],[138.37635803222656,35.96842193603527],[138.35375976562545,35.94321441650396],[138.3300018310547,35.901676177978516],[138.28671264648437,35.85640335083019],[138.2499694824221,35.882198333740234],[138.24008178710983,35.877082824707145],[138.19201660156295,35.78485870361328],[138.23529052734398,35.760375976562614],[138.23275756835937,35.75001525878912],[138.18473815917991,35.714542388916016],[138.19554138183594,35.67554092407232],[138.22161865234386,35.64126205444347],[138.2059020996095,35.62284088134777],[138.20674133300793,35.6024055480957],[138.1919860839846,35.573425292968864],[138.1739959716797,35.579246520996094],[138.14540100097656,35.55226516723633],[138.1622772216798,35.541637420654354],[138.14138793945312,35.51822662353521],[138.14294433593773,35.49961471557617],[138.16322326660202,35.48524093627941],[138.15597534179733,35.455810546875],[138.12496948242187,35.453144073486385],[138.12496948242187,35.425323486328125],[138.1417694091797,35.41669082641607],[138.15396118164062,35.38666534423834],[138.14501953125,35.367710113525504],[138.0450439453125,35.331604003906364],[138.0218048095703,35.29792404174816],[137.999969482422,35.2992782592774],[137.9451141357422,35.272651672363395],[137.92434692382812,35.25474929809576],[137.89833068847668,35.25456237792963],[137.87498474121116,35.21552658081066],[137.86323547363293,35.21957778930664],[137.82078552246094,35.211280822753906],[137.77812194824264,35.200233459472656],[137.76704406738304,35.21649551391613],[137.7298278808595,35.21818923950207],[137.72482299804687,35.22748565673828],[137.66665649414062,35.22447967529297],[137.6448211669923,35.205760955810604],[137.62030029296875,35.20619964599615],[137.5810699462893,35.19484710693371],[137.58142089843773,35.216281890869254],[137.5549468994143,35.238288879394645],[137.56509399414074,35.28435516357422],[137.56468200683616,35.306480407714844],[137.60707092285168,35.33331680297857],[137.60099792480503,35.376037597656364],[137.6380004882816,35.39843368530285],[137.60362243652355,35.448856353759766],[137.6349334716798,35.467887878418026],[137.63482666015648,35.50579071044922],[137.61622619628918,35.525859832763786],[137.5818786621095,35.5231094360351],[137.56202697753952,35.51344680786144],[137.53625488281273,35.53801727294922],[137.5395507812501,35.58330154418945],[137.51947021484398,35.61406707763683],[137.54505920410168,35.645061492920036],[137.52345275878918,35.67344284057623],[137.50204467773437,35.68412399291998],[137.4903564453126,35.71356964111334],[137.4615478515626,35.7580451965332],[137.39883422851562,35.77344512939459],[137.39657592773437,35.79455947875982],[137.3435516357422,35.794956207275504],[137.32928466796886,35.81087112426758],[137.33445739746116,35.833286285400504],[137.3645477294922,35.843780517578125],[137.3822021484376,35.887580871582145],[137.44052124023483,35.90192413330078],[137.45730590820358,35.888217926025504],[137.47853088378918,35.89118576049805],[137.50532531738304,35.93494033813482],[137.52737426757847,35.939201354980526],[137.5464477539066,35.976886749267635],[137.5967712402345,36.00835800170904],[137.60409545898437,36.04328155517578],[137.6179199218751,36.05889129638666],[137.55702209472668,36.103809356689396],[137.55752563476562,36.13713455200207],[137.5956268310548,36.1666145324707],[137.59780883789062,36.187900543213004],[137.57844543457043,36.21038055419922],[137.63133239746128,36.27393341064459],[137.64932250976585,36.28501129150396],[137.65382385253918,36.317062377929744],[137.61695861816452,36.3634986877442],[137.59672546386741,36.365638732910156],[137.59019470214866,36.38660049438482],[137.60787963867187,36.40900421142584],[137.63583374023483,36.421810150146484],[137.65754699707054,36.45518493652355],[137.65612792968784,36.48602676391613],[137.67637634277344,36.50769424438482],[137.7068328857423,36.514640808105526],[137.68948364257824,36.54301834106457],[137.69592285156295,36.56450271606451],[137.7262725830078,36.58280563354492],[137.74998474121094,36.584098815918026],[137.74998474121094,36.62139129638672],[137.76409912109375,36.6665992736817],[137.7546539306643,36.71883392333979],[137.7570953369143,36.75129699707031],[137.7658233642578,36.764152526855526],[137.7859497070317,36.77037429809582],[137.83544921875,36.80707931518555],[137.83819580078148,36.819160461425724],[137.87498474121116,36.860393524170036],[137.86755371093773,36.90297698974615],[137.922332763672,36.91659545898449],[137.95722961425827,36.901771545410156],[137.98910522460937,36.90671920776373],[138.01672363281273,36.90055084228527],[138.03540039062523,36.87771987915045],[138.00732421875,36.82493591308594],[138.05552673339878,36.79688262939453],[138.0758666992192,36.80491638183594],[138.08494567871094,36.82620239257824],[138.10269165039062,36.84013748168951],[138.13507080078125,36.8468856811524],[138.1657257080078,36.84110641479498],[138.2258453369144,36.862075805664006],[138.26016235351574,36.86545562744152],[138.29437255859375,36.84875869750988],[138.30039978027355,36.9088706970216],[138.32142639160156,36.92206192016596],[138.34226989746116,36.91959381103521],[138.36074829101562,36.930580139160156],[138.38206481933628,36.97734451293957],[138.39776611328148,36.99422454833996],[138.46731567382847,37.015453338623104],[138.51701354980491,37.026435852050895],[138.56912231445324,37.017967224121094],[138.590576171875,36.97968292236334],[138.58619689941406,36.92569732666021],[138.6249694824221,36.88492584228527],[138.64457702636741,36.87207412719738],[138.69435119628906,36.85380935668945],[138.68728637695312,36.82424163818365],[138.69906616210972,36.805534362793026],[138.67263793945335,36.77071380615229],[138.69200134277378,36.76070785522461],[138.69792175293003,36.74103164672863]]]},"properties":{"ID_0":114,"ISO":"JP-20","NAME_0":"Japan","ID_1":26,"NAME_1":"Nagano","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"長野県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[128.9924926757817,32.791389465332145],[129.00744628906284,32.77025604248047],[129.00218200683605,32.74940872192383],[128.9734802246095,32.743476867676065],[128.9924926757817,32.791389465332145]]],[[[128.80972290039085,32.79861068725586],[128.8108367919922,32.77305603027355],[128.84420776367187,32.74394226074219],[128.83944702148437,32.71333312988287],[128.85073852539074,32.690597534179744],[128.8752441406251,32.6766090393067],[128.89578247070335,32.65517807006836],[128.8923797607423,32.640617370605526],[128.85560607910168,32.6421470642091],[128.82656860351574,32.63488388061535],[128.8075714111328,32.65525817871094],[128.7650604248047,32.63413238525396],[128.79409790039085,32.590789794921875],[128.7722167968751,32.57249832153332],[128.75312805175827,32.577850341796875],[128.7377166748048,32.60557556152372],[128.69085693359375,32.60178756713867],[128.66723632812523,32.608283996582145],[128.65371704101585,32.59001922607422],[128.6304168701172,32.60535049438471],[128.59793090820347,32.614860534668196],[128.6084899902346,32.627143859863395],[128.63587951660168,32.633590698242244],[128.6687927246096,32.66942214965832],[128.64900207519543,32.68120574951172],[128.65550231933605,32.70372009277344],[128.64556884765636,32.72045898437494],[128.64547729492187,32.76443481445318],[128.6639862060547,32.78496551513672],[128.69816589355491,32.7658424377442],[128.70425415039074,32.744537353515625],[128.72521972656273,32.75592422485357],[128.7451782226566,32.7473526000976],[128.76536560058605,32.75967025756836],[128.79078674316406,32.7882080078125],[128.80972290039085,32.79861068725586]]],[[[128.8649139404298,32.84455871582037],[128.89625549316406,32.824592590331974],[128.9097442626953,32.79958343505871],[128.8788299560548,32.76325607299816],[128.83511352539085,32.782253265380916],[128.8369598388672,32.82556533813482],[128.8649139404298,32.84455871582037]]],[[[128.9541625976567,32.873878479004134],[128.96368408203148,32.85013198852562],[128.95429992675804,32.83443832397461],[128.92872619628906,32.81713104248058],[128.91917419433594,32.84215927124029],[128.87889099121128,32.856109619140625],[128.8953094482422,32.87831497192383],[128.9166717529297,32.87027740478521],[128.92388916015636,32.854759216308594],[128.9541625976567,32.873878479004134]]],[[[128.99153137207054,32.93227767944353],[129.01646423339844,32.92365264892578],[129.03102111816452,32.90086364746105],[129.01797485351562,32.865802764892635],[128.97332763671875,32.87184524536133],[128.96092224121094,32.90281295776373],[128.98287963867187,32.903511047363395],[128.99153137207054,32.93227767944353]]],[[[129.600830078125,32.94583511352539],[129.62318420410156,32.93848419189453],[129.6163940429692,32.916942596435604],[129.59722900390625,32.9241676330567],[129.600830078125,32.94583511352539]]],[[[129.61375427246105,33.061656951904524],[129.6363677978518,33.06235504150396],[129.62486267089844,33.032852172851676],[129.5992126464846,33.02311325073242],[129.59138488769554,33.046665191650504],[129.61375427246105,33.061656951904524]]],[[[129.1140136718751,33.164058685302734],[129.10354614257824,33.124397277832145],[129.1216735839845,33.10749816894531],[129.10945129394543,33.06333160400396],[129.0928649902345,33.03963088989269],[129.08950805664062,33.016586303710994],[129.1119079589845,32.98507308959972],[129.1760711669922,33.006923675537166],[129.18350219726562,32.97820281982422],[129.15090942382812,32.957698822021484],[129.14277648925804,32.93888854980469],[129.11888122558594,32.9379310607913],[129.09597778320312,32.91980361938482],[129.08171081542991,32.89576721191406],[129.09274291992187,32.88965606689453],[129.1011505126953,32.86030578613281],[129.07705688476597,32.86128997802757],[129.06167602539085,32.84586334228521],[129.0399322509768,32.86726760864258],[129.04222106933616,32.89305496215826],[129.03305053710937,32.93694305419916],[128.99656677246128,32.940944671630916],[128.99658203125,32.96475982666027],[129.01361083984398,32.976665496826286],[129.03955078125023,32.97632598876959],[129.04942321777344,32.995494842529354],[129.04187011718773,33.02750778198242],[129.06558227539074,33.03917694091791],[129.08506774902378,33.07479095458996],[129.10284423828125,33.08088302612305],[129.10963439941406,33.09957504272461],[129.09532165527355,33.1188774108889],[129.1140136718751,33.164058685302734]]],[[[129.05674743652366,33.21786117553711],[129.07566833496105,33.21206665039068],[129.0579528808595,33.18645095825201],[129.02845764160156,33.20097351074219],[129.05674743652366,33.21786117553711]]],[[[129.13333129882847,33.30361175537115],[129.1501922607423,33.269618988037394],[129.12725830078125,33.24738693237305],[129.09027099609375,33.25444412231445],[129.06988525390648,33.27012634277355],[129.09301757812545,33.287574768066406],[129.11709594726574,33.28857421875006],[129.13333129882847,33.30361175537115]]],[[[129.79388427734375,33.33709335327154],[129.7768707275394,33.3255043029788],[129.76382446289108,33.294834136963004],[129.78684997558616,33.259288787841854],[129.8169708251953,33.23599624633795],[129.81094360351608,33.200702667236555],[129.81842041015636,33.18242645263689],[129.88856506347702,33.15790557861334],[129.94056701660156,33.162071228027344],[129.9586944580078,33.12482452392595],[129.95381164550793,33.10676574707054],[129.92729187011764,33.10244369506836],[129.92456054687523,33.087226867675895],[129.94949340820312,33.066223144531364],[129.98280334472668,33.05453872680681],[129.999969482422,33.03091049194336],[130.0614776611328,32.98390197753906],[130.15325927734398,32.959602355957145],[130.20372009277355,32.95486831665045],[130.20324707031273,32.932315826416016],[130.16925048828125,32.91505813598644],[130.1513824462893,32.89638900756847],[130.12333679199241,32.88083267211914],[130.1258392333989,32.87138748168957],[130.16311645507812,32.84334945678722],[130.18093872070335,32.84338760375971],[130.22434997558594,32.86081695556652],[130.24365234375,32.87580490112299],[130.2817840576172,32.878555297851676],[130.31111145019565,32.87222290039091],[130.34165954589844,32.85416793823248],[130.35086059570335,32.82930755615263],[130.3822784423828,32.77705001831055],[130.3716735839846,32.76083374023466],[130.377655029297,32.74307250976568],[130.3462371826172,32.70751190185547],[130.3547363281251,32.68219375610363],[130.30471801757835,32.65194320678711],[130.2770690917971,32.653797149658146],[130.2424316406251,32.62873077392578],[130.22622680664074,32.61013031005865],[130.1812896728518,32.592754364013615],[130.16937255859386,32.62035369873047],[130.1288909912114,32.64083480834978],[130.1347198486328,32.68111038208008],[130.15554809570335,32.68416595458996],[130.1719207763672,32.70301437377947],[130.1988677978518,32.71803665161144],[130.209442138672,32.73777770996105],[130.189453125,32.76224136352545],[130.19221496582077,32.78416824340826],[130.17829895019577,32.79441452026367],[130.1441650390626,32.795806884765795],[130.12722778320324,32.78749847412115],[130.08416748046875,32.79416656494146],[130.02416992187523,32.75749969482422],[129.95411682128906,32.76505661010742],[129.95693969726562,32.74361038208019],[129.91638183593773,32.69833374023432],[129.89639282226608,32.662776947021484],[129.86660766601585,32.64358901977545],[129.8352813720703,32.63222122192394],[129.83810424804687,32.620597839355526],[129.80499267578148,32.59055709838873],[129.7829742431644,32.58256530761736],[129.7675323486328,32.59488296508789],[129.79028320312523,32.615833282470646],[129.79167175293014,32.630279541015625],[129.8154296875,32.675346374511776],[129.79527282714866,32.68444442749052],[129.81610107421886,32.70365524291998],[129.84194946289062,32.69666671752941],[129.84730529785156,32.72495269775396],[129.81416320800804,32.739166259765625],[129.80027770996105,32.77805709838873],[129.7736053466798,32.79777908325207],[129.7754821777345,32.81852340698248],[129.7454071044922,32.82206344604492],[129.74021911621105,32.807476043701286],[129.6999206542971,32.83327484130865],[129.67666625976608,32.86666488647478],[129.67987060546898,32.88087463378923],[129.64860534667991,32.93227005004877],[129.62666320800804,32.950000762939396],[129.63305664062534,32.987499237060604],[129.6542510986328,33.008426666259766],[129.64639282226574,33.03722381591808],[129.6583404541018,33.040279388427734],[129.68112182617222,33.099636077880916],[129.70843505859375,33.08811569213867],[129.76229858398483,33.04859924316412],[129.74591064453136,33.03656387329113],[129.7322235107423,33.00711441040045],[129.7452850341798,32.99833297729515],[129.76429748535156,33.02140045166027],[129.78123474121105,33.007808685302905],[129.80026245117233,33.00800323486334],[129.8225250244143,32.97559356689459],[129.80801391601562,32.9652938842774],[129.81889343261741,32.94777679443371],[129.8077850341797,32.91333389282238],[129.7996063232422,32.86393737792969],[129.8134155273442,32.864635467529354],[129.83978271484386,32.8448486328125],[129.84980773925793,32.858264923095646],[129.87144470214855,32.852348327636776],[129.9030609130864,32.87805557250988],[129.9338836669922,32.85805511474615],[129.946990966797,32.863182067871094],[129.98611450195312,32.841388702392635],[129.9913330078126,32.857284545898665],[129.96360778808594,32.88305664062506],[129.9550018310548,32.90444564819336],[129.93110656738327,32.92388916015631],[129.92832946777344,32.96861267089861],[129.95083618164062,32.98666763305664],[129.9454345703125,33.01484298706066],[129.87713623046886,33.06423568725597],[129.85508728027344,33.06195449829113],[129.83686828613304,33.049087524414006],[129.79736328125023,33.08153915405279],[129.77536010742187,33.076465606689396],[129.7650146484376,33.0566520690918],[129.7418365478518,33.06152725219755],[129.72879028320324,33.10036087036133],[129.74510192871116,33.09878921508806],[129.7418365478518,33.131469726562614],[129.71955871582054,33.136882781982536],[129.71070861816406,33.11942291259777],[129.67979431152344,33.113090515136776],[129.65867614746116,33.116786956787166],[129.68927001953136,33.14224243164085],[129.6521453857422,33.172233581543026],[129.65184020996116,33.19255828857422],[129.60356140136741,33.21051406860363],[129.55285644531273,33.216564178466854],[129.5598602294922,33.255161285400504],[129.58886718750023,33.27256393432617],[129.57888793945347,33.3064804077149],[129.56182861328148,33.32433700561529],[129.5762939453126,33.362606048583984],[129.56932067871105,33.37586975097656],[129.6427459716798,33.36712646484381],[129.66720581054687,33.38579559326172],[129.67388916015625,33.368087768554744],[129.70497131347656,33.34622192382824],[129.75061035156273,33.36713409423834],[129.79151916503918,33.36693191528332],[129.79388427734375,33.33709335327154]]],[[[129.55531311035168,33.40877532958996],[129.556396484375,33.37138748168945],[129.5697021484376,33.35671997070324],[129.5462341308595,33.348426818847884],[129.54229736328125,33.335060119628906],[129.51475524902344,33.329490661621094],[129.53041076660168,33.30727767944336],[129.49739074707043,33.27849578857433],[129.48919677734375,33.2515220642091],[129.46394348144554,33.21367645263683],[129.4379425048828,33.19279861450207],[129.37750244140625,33.16888809204107],[129.37648010253918,33.18449020385765],[129.40577697753918,33.197277069091854],[129.37956237793003,33.20972442626953],[129.38442993164085,33.229873657226676],[129.41059875488293,33.24822998046892],[129.40376281738293,33.27121353149431],[129.4240264892578,33.290363311767635],[129.44563293457054,33.29767608642578],[129.43701171875,33.347167968750114],[129.46768188476597,33.3540153503418],[129.51731872558594,33.35474395751959],[129.54666137695312,33.377246856689396],[129.55531311035168,33.40877532958996]]],[[[129.80091857910156,33.41146850585949],[129.83320617675804,33.40446853637724],[129.82978820800804,33.39239883422857],[129.86083984375,33.382221221924],[129.8140869140625,33.34880447387707],[129.80091857910156,33.41146850585949]]],[[[129.4349975585942,33.44027709960949],[129.4286346435547,33.40980911254911],[129.43492126464844,33.35541152954107],[129.41740417480491,33.35032653808594],[129.40351867675804,33.36430740356445],[129.42161560058616,33.408767700195426],[129.42233276367187,33.43353271484381],[129.4349975585942,33.44027709960949]]],[[[129.75874328613315,33.46533584594738],[129.79040527343784,33.42584991455078],[129.763885498047,33.42873382568365],[129.73353576660168,33.40509796142584],[129.71908569335937,33.41965866088867],[129.74220275878906,33.428672790527344],[129.75874328613315,33.46533584594738]]],[[[129.5569305419923,33.50961303710943],[129.57595825195358,33.48163986206055],[129.55590820312523,33.47440719604515],[129.52195739746116,33.481990814208984],[129.5271148681643,33.499233245849666],[129.5569305419923,33.50961303710943]]],[[[129.70922851562523,33.8617210388183],[129.72662353515648,33.85015487670904],[129.7731933593751,33.842815399170036],[129.7602691650394,33.80615234375],[129.77749633789062,33.796943664550895],[129.77833557128918,33.773612976074276],[129.79617309570312,33.75363159179699],[129.77879333496094,33.739768981933594],[129.75544738769543,33.74243545532232],[129.7093200683595,33.7099494934082],[129.69609069824241,33.71007156372082],[129.65310668945312,33.7407798767091],[129.64588928222656,33.773593902587834],[129.650360107422,33.80632019042969],[129.66471862793003,33.811943054199276],[129.67462158203136,33.84342575073242],[129.70922851562523,33.8617210388183]]],[[[129.4501342773441,34.707084655761776],[129.4795837402346,34.6881942749024],[129.490966796875,34.64208221435558],[129.47846984863304,34.61680603027344],[129.4701385498048,34.55569458007824],[129.43431091308628,34.504306793212834],[129.4126434326173,34.48986053466808],[129.37513732910156,34.451805114746094],[129.38235473632858,34.43986129760742],[129.37652587890625,34.40736007690441],[129.39486694335937,34.40347290039074],[129.37818908691406,34.37819290161144],[129.39735412597656,34.36013793945318],[129.4062500000001,34.335140228271484],[129.3787536621095,34.33569335937506],[129.3851318359375,34.28708267211914],[129.35791015625023,34.27180480957037],[129.32791137695312,34.273193359375114],[129.31707763671898,34.241249084472656],[129.32624816894554,34.226528167724666],[129.30207824707043,34.209304809570426],[129.29624938964844,34.179027557373104],[129.2837524414067,34.16347122192383],[129.2826385498048,34.129859924316406],[129.22958374023483,34.09458160400396],[129.16792297363304,34.127639770507926],[129.1801452636721,34.18736267089855],[129.1798553466798,34.220973968505916],[129.19792175293014,34.282360076904354],[129.1956939697269,34.31347274780279],[129.22819519042991,34.323471069335994],[129.22596740722668,34.296527862548885],[129.2876434326172,34.32097244262707],[129.30458068847668,34.2918052673341],[129.32986450195324,34.29791641235363],[129.3159790039067,34.31708145141607],[129.34819030761741,34.33097076416027],[129.34291076660168,34.366806030273494],[129.33152770996094,34.37374877929682],[129.3143005371095,34.34013748168945],[129.28125000000023,34.343750000000114],[129.2762451171875,34.35430526733404],[129.24041748046898,34.35124969482422],[129.27485656738315,34.382083892822266],[129.2701416015625,34.42375183105469],[129.27374267578125,34.4654159545899],[129.29153442382835,34.48652648925781],[129.3031921386721,34.519859313964844],[129.32235717773437,34.537918090820426],[129.30986022949241,34.55625152587902],[129.28514099121105,34.563472747802734],[129.305419921875,34.58902740478527],[129.3212432861328,34.649307250976676],[129.39236450195312,34.65680694580078],[129.41819763183616,34.687637329101676],[129.4501342773441,34.707084655761776]]]]},"properties":{"ID_0":114,"ISO":"JP-42","NAME_0":"Japan","ID_1":27,"NAME_1":"Nagasaki","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"長崎県","VARNAME_1":"Nagasaki"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.04818725585937,34.737876892089844],[136.07171630859375,34.7141571044923],[136.06709289550793,34.70508575439453],[136.0888671875,34.67223739624029],[136.06973266601574,34.65051651000982],[136.0723114013672,34.62549209594732],[136.05508422851574,34.60446548461914],[136.0501708984375,34.58333206176758],[136.0633087158203,34.56624221801769],[136.11604309082054,34.54484939575201],[136.157684326172,34.55635452270519],[136.181121826172,34.514106750488395],[136.21430969238293,34.52513122558605],[136.22224426269554,34.49345016479492],[136.20918273925793,34.4453125],[136.1661834716798,34.445163726806754],[136.09869384765648,34.43174743652344],[136.07315063476608,34.391616821289176],[136.0889587402346,34.376167297363395],[136.1116790771489,34.326499938964844],[136.13182067871094,34.31367492675781],[136.09797668457043,34.29851150512695],[136.10023498535202,34.288471221923885],[136.13314819335937,34.249851226806754],[136.11073303222668,34.207054138183594],[136.09629821777378,34.19245147705084],[136.11512756347668,34.16385650634771],[136.10742187500023,34.13252639770519],[136.10890197753906,34.08989715576183],[136.09669494628906,34.07863235473633],[136.10382080078148,34.02239227294933],[136.06909179687523,34.03034973144537],[136.02171325683628,34.03305435180664],[136.006103515625,34.006526947021484],[135.95950317382824,33.977619171142635],[135.92738342285168,33.97586441040045],[135.89569091796875,33.9422225952149],[135.90237426757812,33.922096252441406],[135.87222290039062,33.91684722900396],[135.86241149902344,33.89688110351574],[135.8387298583989,33.892276763916016],[135.81907653808616,33.90210342407238],[135.8049316406251,33.8920516967774],[135.7605438232423,33.882423400878906],[135.72726440429687,33.89971160888683],[135.6739196777346,33.89703369140631],[135.6594696044922,33.8809928894043],[135.63514709472656,33.87120819091797],[135.62425231933594,33.89548492431646],[135.6052398681643,33.90123748779308],[135.6240386962894,33.949790954589844],[135.64245605468773,33.96722412109381],[135.62719726562523,33.999961853027344],[135.5975036621095,34.00874710083019],[135.60081481933594,34.03093719482433],[135.5824432373048,34.05498123168945],[135.5427703857423,34.07150268554693],[135.54922485351562,34.09439849853521],[135.5832977294923,34.119270324707145],[135.59033203125,34.13978958129894],[135.625,34.15546798706055],[135.64422607421886,34.17962646484375],[135.63719177246128,34.20101547241222],[135.67144775390648,34.22117233276373],[135.71247863769543,34.205543518066406],[135.73223876953125,34.23066329956055],[135.72158813476585,34.258308410644645],[135.70394897460972,34.27208328247076],[135.6819458007817,34.27092361450201],[135.6634979248048,34.32386779785162],[135.6663513183595,34.35159683227545],[135.6457977294922,34.380386352539176],[135.6769256591797,34.395828247070426],[135.66941833496105,34.416633605957145],[135.686737060547,34.4422340393067],[135.67965698242233,34.52225112915039],[135.65577697753918,34.543991088867244],[135.68457031250023,34.581630706787166],[135.66165161132812,34.61145782470703],[135.66908264160156,34.649822235107536],[135.68084716796886,34.677268981933594],[135.68058776855491,34.70272827148449],[135.70655822753952,34.72124862670904],[135.7142486572269,34.77802658081055],[135.7319946289066,34.77547073364269],[135.73941040039074,34.7499618530274],[135.758544921875,34.724342346191406],[135.79624938964855,34.720726013183594],[135.8558502197268,34.702613830566406],[135.89300537109375,34.70614242553711],[135.91458129882812,34.74098968505865],[135.94607543945324,34.735088348388615],[135.97683715820324,34.73781967163086],[135.98971557617187,34.71189117431652],[136.03102111816406,34.7063941955567],[136.04818725585937,34.737876892089844]]]},"properties":{"ID_0":114,"ISO":"JP-29","NAME_0":"Japan","ID_1":28,"NAME_1":"Nara","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"奈良県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[138.50410461425793,38.332588195800895],[138.51806640625,38.3204917907716],[138.50790405273437,38.294708251953125],[138.5100860595703,38.267501831054744],[138.49230957031284,38.22006607055664],[138.49295043945335,38.204681396484375],[138.46044921875034,38.162742614746094],[138.43592834472668,38.11717605590832],[138.43666076660156,38.083057403564396],[138.47471618652344,38.063331604003906],[138.52072143554722,38.07176971435547],[138.56037902832043,38.086265563964844],[138.57366943359398,38.062057495117244],[138.54949951171886,38.01283264160156],[138.52310180664085,37.97971725463867],[138.4987182617192,37.92397689819347],[138.4713287353519,37.89750289916992],[138.42703247070312,37.878677368164176],[138.36122131347668,37.83073043823242],[138.30996704101597,37.82803344726568],[138.28091430664074,37.81143188476568],[138.24818420410156,37.80312728881836],[138.2169189453125,37.81005859375],[138.21679687500023,37.83645248413086],[138.26445007324241,37.84397888183588],[138.289520263672,37.88457107543945],[138.2784118652346,37.907413482666016],[138.30932617187545,37.94232177734381],[138.34120178222656,37.95997619628906],[138.34024047851574,37.97915267944336],[138.30471801757835,38.006389617919865],[138.2830505371095,38.006389617919865],[138.25328063964855,37.96400070190441],[138.2307281494143,37.97663116455084],[138.23970031738327,38.029476165771484],[138.23297119140648,38.061149597168026],[138.2480010986328,38.075939178466854],[138.2728424072268,38.12355804443371],[138.2913513183595,38.1365699768067],[138.30557250976597,38.16774749755865],[138.33079528808594,38.199375152588004],[138.3479766845703,38.20230102539068],[138.39192199707043,38.24063491821289],[138.4398651123047,38.26672363281256],[138.440399169922,38.28785705566406],[138.4548034667971,38.308837890625],[138.4799346923828,38.328269958496094],[138.50410461425793,38.332588195800895]]],[[[139.25633239746105,38.49068832397461],[139.25413513183594,38.46109008789068],[139.22152709960937,38.458965301513786],[139.25633239746105,38.49068832397461]]],[[[139.7413482666018,37.82018661499035],[139.66120910644543,37.75125885009777],[139.6612243652346,37.739997863769645],[139.62513732910156,37.69873428344721],[139.63160705566406,37.688911437988224],[139.57466125488327,37.65285491943354],[139.5542755126953,37.646938323974666],[139.55000305175804,37.627357482910156],[139.5579833984375,37.599464416503906],[139.57382202148437,37.576011657714844],[139.5693054199221,37.54314422607433],[139.5913543701172,37.52010345458979],[139.56381225585937,37.500865936279354],[139.52236938476585,37.51029586791992],[139.48907470703136,37.50730133056652],[139.46142578125034,37.51288223266607],[139.41711425781295,37.50490188598644],[139.4092864990239,37.46261596679693],[139.36648559570312,37.46665573120117],[139.28656005859375,37.44697952270508],[139.21981811523437,37.44031524658209],[139.2003631591797,37.407997131347656],[139.21482849121094,37.38972091674816],[139.23457336425827,37.38515090942394],[139.23944091796875,37.36360549926752],[139.22479248046898,37.311504364013786],[139.2116394042971,37.281620025634766],[139.18032836914062,37.25363922119152],[139.16804504394543,37.233318328857536],[139.19793701171898,37.20070266723644],[139.23240661621094,37.194190979003906],[139.25617980957043,37.156402587890625],[139.2384033203126,37.104331970214844],[139.2577667236328,37.05857849121094],[139.24864196777366,37.016376495361385],[139.25636291503918,36.993015289306584],[139.25440979003952,36.96163177490229],[139.2420806884769,36.94470596313488],[139.23033142089866,36.95856094360357],[139.2098388671876,36.95280075073242],[139.18341064453148,36.961521148681754],[139.1779785156251,36.99225616455084],[139.1573333740239,37.00480651855469],[139.11033630371094,37.05266189575207],[139.09382629394543,37.0389137268067],[139.09379577636741,37.01668930053711],[139.05203247070335,36.987102508544865],[139.0004119873048,36.97630310058605],[138.96903991699241,36.97558212280279],[138.96815490722668,36.94342422485346],[138.98272705078125,36.89688873291021],[138.9351806640626,36.890899658203125],[138.9203338623047,36.852298736572266],[138.93301391601585,36.83427429199219],[138.88484191894565,36.82266235351568],[138.85748291015648,36.808864593505916],[138.8246765136721,36.81001281738281],[138.8334197998048,36.78978347778326],[138.82417297363293,36.76076126098633],[138.8030548095703,36.757083892822266],[138.78970336914062,36.7420539855957],[138.74076843261764,36.75892257690441],[138.7105255126953,36.734336853027344],[138.69792175293003,36.74103164672863],[138.69200134277378,36.76070785522461],[138.67263793945335,36.77071380615229],[138.69906616210972,36.805534362793026],[138.68728637695312,36.82424163818365],[138.69435119628906,36.85380935668945],[138.64457702636741,36.87207412719738],[138.6249694824221,36.88492584228527],[138.58619689941406,36.92569732666021],[138.590576171875,36.97968292236334],[138.56912231445324,37.017967224121094],[138.51701354980491,37.026435852050895],[138.46731567382847,37.015453338623104],[138.39776611328148,36.99422454833996],[138.38206481933628,36.97734451293957],[138.36074829101562,36.930580139160156],[138.34226989746116,36.91959381103521],[138.32142639160156,36.92206192016596],[138.30039978027355,36.9088706970216],[138.29437255859375,36.84875869750988],[138.26016235351574,36.86545562744152],[138.2258453369144,36.862075805664006],[138.1657257080078,36.84110641479498],[138.13507080078125,36.8468856811524],[138.10269165039062,36.84013748168951],[138.08494567871094,36.82620239257824],[138.0758666992192,36.80491638183594],[138.05552673339878,36.79688262939453],[138.00732421875,36.82493591308594],[138.03540039062523,36.87771987915045],[138.01672363281273,36.90055084228527],[137.98910522460937,36.90671920776373],[137.95722961425827,36.901771545410156],[137.922332763672,36.91659545898449],[137.86755371093773,36.90297698974615],[137.87498474121116,36.860393524170036],[137.83819580078148,36.819160461425724],[137.83544921875,36.80707931518555],[137.7859497070317,36.77037429809582],[137.7658233642578,36.764152526855526],[137.75727844238304,36.79244232177746],[137.7358551025394,36.83267593383795],[137.73092651367187,36.873477935791016],[137.7162322998047,36.88866043090832],[137.72021484375034,36.9271812438966],[137.66442871093773,36.95405960083019],[137.6377868652345,36.980369567871094],[137.6532440185548,36.981269836425895],[137.72358703613293,37.00132751464844],[137.76235961914097,37.016288757324276],[137.81118774414097,37.02846908569347],[137.84228515625034,37.0436744689942],[137.89537048339866,37.05513381958019],[137.94006347656295,37.07564926147461],[138.00511169433605,37.115474700927734],[138.04789733886753,37.12735748291027],[138.0946807861328,37.172382354736385],[138.13174438476608,37.16389465332037],[138.1717681884768,37.16294097900396],[138.21578979492187,37.16918563842779],[138.2530975341798,37.1837158203125],[138.33937072753906,37.241947174072266],[138.43911743164062,37.32434844970709],[138.48822021484398,37.34789276123047],[138.53762817382858,37.36573028564459],[138.5637359619143,37.388755798339844],[138.5858154296875,37.41800308227539],[138.6171722412114,37.472248077392635],[138.67649841308605,37.53874588012695],[138.71296691894543,37.55748748779291],[138.73176574707054,37.59097290039068],[138.74537658691418,37.60215759277344],[138.77029418945335,37.653099060058594],[138.78590393066406,37.704204559326286],[138.78392028808605,37.71447372436529],[138.81996154785168,37.794296264648494],[138.86386108398472,37.835395812988224],[138.92225646972656,37.869789123535156],[139.0069732666018,37.91193771362316],[139.05917358398472,37.94361114501959],[139.09275817871094,37.958194732666016],[139.1289520263673,37.95809555053722],[139.222381591797,37.98797225952154],[139.31210327148437,38.047786712646484],[139.36618041992233,38.09871292114258],[139.42889404296886,38.17961502075195],[139.42874145507858,38.20176315307617],[139.44953918457077,38.23613357543951],[139.44111633300804,38.24583435058605],[139.4486083984375,38.273334503173885],[139.45091247558605,38.36160278320324],[139.45460510253906,38.389385223388615],[139.4818115234376,38.440666198730526],[139.4969482421875,38.45722198486328],[139.54963684082054,38.54642486572277],[139.60504150390636,38.51983642578131],[139.624969482422,38.522327423095646],[139.64161682128918,38.50833511352545],[139.70397949218795,38.50002670288086],[139.72901916503918,38.48375701904297],[139.71650695800804,38.467662811279354],[139.72323608398483,38.448360443115234],[139.70791625976562,38.39374542236334],[139.73098754882812,38.3825569152832],[139.7494659423828,38.359043121338004],[139.7924499511721,38.347202301025504],[139.81306457519554,38.35258102416992],[139.8429870605471,38.339939117431754],[139.90144348144543,38.290733337402344],[139.90209960937523,38.27999114990229],[139.8615875244144,38.22708511352539],[139.7919921875,38.19277191162121],[139.71182250976562,38.201534271240234],[139.68560791015648,38.168594360351676],[139.69392395019543,38.1483039855957],[139.69371032714855,38.11622619628912],[139.6765594482423,38.08336257934576],[139.69441223144554,38.0529403686524],[139.65928649902366,38.0324440002442],[139.6558990478518,38.000022888183594],[139.64262390136753,37.982513427734375],[139.64779663085937,37.96190261840832],[139.62959289550827,37.905231475830135],[139.63893127441452,37.88265228271496],[139.66285705566406,37.858745574951286],[139.6961669921876,37.84585189819336],[139.718719482422,37.85126495361328],[139.7413482666018,37.82018661499035]]]]},"properties":{"ID_0":114,"ISO":"JP-15","NAME_0":"Japan","ID_1":29,"NAME_1":"Niigata","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"新潟県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[131.877197265625,32.738456726074446],[131.85757446289074,32.733489990234375],[131.84658813476562,32.772983551025504],[131.86184692382812,32.805763244628906],[131.81877136230491,32.82419204711937],[131.7620086669923,32.833297729492244],[131.73797607421886,32.82624053955084],[131.7304382324221,32.79433822631847],[131.70564270019554,32.76964187622093],[131.67114257812523,32.763278961181584],[131.6249694824221,32.771034240722656],[131.592254638672,32.77051162719738],[131.57695007324264,32.75492095947294],[131.54148864746105,32.75532913208008],[131.51074218750023,32.77706146240246],[131.51966857910156,32.79743194580084],[131.49143981933594,32.81631851196289],[131.4775390625001,32.834049224853686],[131.43858337402344,32.82413101196306],[131.41839599609398,32.80976867675781],[131.35551452636764,32.804603576660156],[131.33094787597668,32.82933044433605],[131.315887451172,32.847858428955135],[131.27626037597656,32.86748504638683],[131.25970458984398,32.88373184204107],[131.24996948242187,32.960315704345874],[131.248748779297,32.99350738525396],[131.2305908203126,33.00704956054693],[131.21914672851574,33.04993438720709],[131.19604492187523,33.07394027709972],[131.17561340332054,33.083286285400504],[131.16589355468773,33.133174896240234],[131.11306762695335,33.179695129394645],[131.0624542236328,33.19169998168945],[131.04158020019543,33.190715789794865],[131.02267456054733,33.17742156982433],[130.98980712890625,33.16663360595703],[130.98326110839878,33.13501358032221],[131.02560424804722,33.0833358764649],[131.0132751464846,33.06657028198242],[131.0164794921875,33.04697799682623],[130.99169921875,33.020175933838004],[130.97244262695312,33.02040481567383],[130.95201110839844,33.04752349853527],[130.9202117919923,33.04978179931646],[130.90261840820312,33.060768127441406],[130.88951110839866,33.083286285400504],[130.84564208984398,33.10315704345709],[130.8632812500001,33.113716125488395],[130.8772125244144,33.145317077636776],[130.884979248047,33.18365859985346],[130.84521484375,33.203910827637],[130.8466796875001,33.230125427246094],[130.8283691406251,33.23810195922857],[130.83439636230491,33.25451660156244],[130.86054992675827,33.265762329101506],[130.86781311035168,33.293045043945256],[130.85324096679687,33.3332901000976],[130.86189270019577,33.36981582641596],[130.88691711425793,33.37524414062494],[130.89334106445335,33.42462539672874],[130.90225219726562,33.4456787109375],[130.93104553222656,33.46342849731457],[130.93403625488293,33.47608184814459],[130.98387145996094,33.50438308715826],[131.0309295654298,33.51422882080084],[131.08023071289085,33.50283050537121],[131.1503143310548,33.50168609619152],[131.17726135253906,33.50740814208996],[131.1706695556643,33.527046203613395],[131.18754577636753,33.539524078369254],[131.1890563964845,33.562232971191406],[131.17544555664085,33.58328247070324],[131.18437194824241,33.606101989746094],[131.20457458496094,33.61677169799816],[131.2181549072268,33.6042366027832],[131.2522430419922,33.602157592773494],[131.27545166015636,33.58218383789074],[131.32153320312523,33.5831871032716],[131.34161376953125,33.57090759277355],[131.35824584960972,33.577476501464844],[131.41940307617233,33.57358551025402],[131.4246368408203,33.59298324584961],[131.4627075195317,33.61874771118164],[131.4802703857423,33.64187622070324],[131.50474548339844,33.656024932861385],[131.49998474121094,33.67159652709961],[131.55589294433594,33.68226623535162],[131.58544921875,33.69275665283209],[131.64729309082043,33.66359710693371],[131.66053771972668,33.669937133789006],[131.70065307617187,33.613574981689396],[131.73355102539108,33.579914093017635],[131.744140625,33.54174423217779],[131.7320556640626,33.517177581787166],[131.73924255371116,33.49404144287121],[131.73120117187523,33.468170166015625],[131.71260070800793,33.44090270996094],[131.7020416259768,33.40593719482433],[131.68673706054687,33.40601730346691],[131.65998840332065,33.42214202880871],[131.6346435546875,33.415836334228516],[131.6462402343751,33.39326858520502],[131.64408874511764,33.375270843505916],[131.59819030761753,33.36929702758789],[131.5869598388672,33.34632873535179],[131.5428466796876,33.355155944824276],[131.53694152832043,33.36704635620123],[131.49957275390636,33.35990142822271],[131.49478149414074,33.34081649780268],[131.5134735107423,33.26725006103527],[131.58892822265636,33.24609756469749],[131.6145172119143,33.262004852295036],[131.69100952148483,33.28009033203125],[131.75303649902355,33.24086380004894],[131.83384704589866,33.24685668945324],[131.88941955566418,33.267120361328125],[131.90406799316452,33.262798309326286],[131.87675476074241,33.22937393188505],[131.85800170898437,33.19580078125],[131.8333282470703,33.180805206299],[131.8103485107422,33.12187576293945],[131.84590148925793,33.11511611938482],[131.8697204589846,33.13124465942383],[131.89625549316418,33.1305046081543],[131.8952331542971,33.10718536376959],[131.87620544433616,33.10505294799816],[131.86404418945324,33.08961868286127],[131.91023254394565,33.06787109375006],[131.9375152587894,33.081661224365234],[131.94888305664108,33.06638717651367],[131.96987915039074,33.061008453369084],[132.00305175781295,33.072776794433594],[132.00740051269543,33.06069564819336],[131.9739532470703,33.046131134033146],[131.9423370361328,33.053302764892635],[131.92195129394543,33.04491806030279],[131.91949462890648,33.02515029907221],[131.90176391601585,33.00963973999029],[131.89814758300827,32.98828887939453],[131.96052551269577,32.94643783569336],[132.0102081298828,32.93298721313488],[131.9850006103519,32.91249847412121],[131.99911499023472,32.88121795654308],[131.9602966308596,32.84618759155302],[131.98104858398437,32.82465744018566],[131.97166442871094,32.80305480957048],[131.94757080078136,32.80608367919933],[131.93698120117187,32.784038543701286],[131.89250183105503,32.782501220703125],[131.87213134765625,32.75291442871094],[131.877197265625,32.738456726074446]]]},"properties":{"ID_0":114,"ISO":"JP-44","NAME_0":"Japan","ID_1":30,"NAME_1":"Oita","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"大分県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.08747863769565,34.49653244018555],[134.10275268554687,34.47915267944336],[134.08119201660156,34.45852661132818],[134.04202270507824,34.47958374023449],[134.07083129882824,34.49694442749029],[134.08747863769565,34.49653244018555]]],[[[134.3525085449221,34.562675476074276],[134.3566436767578,34.51118087768555],[134.3488006591797,34.4595680236817],[134.3301696777345,34.44510269165045],[134.31236267089844,34.460346221923885],[134.30964660644543,34.477840423583984],[134.26943969726597,34.468612670898494],[134.23916625976562,34.41472244262695],[134.23464965820358,34.444290161132926],[134.24221801757812,34.45888900756847],[134.23019409179687,34.47941589355463],[134.1966705322268,34.48472213745117],[134.16889953613293,34.46560287475586],[134.14361572265648,34.47360992431646],[134.1676940917971,34.525390625],[134.18685913085937,34.51612091064459],[134.22944641113304,34.527309417724666],[134.2695007324221,34.55355453491211],[134.29888916015636,34.546867370605526],[134.32583618164074,34.56333160400385],[134.3525085449221,34.562675476074276]]],[[[134.29751586914062,34.73047256469738],[134.31700134277366,34.702690124511776],[134.28492736816406,34.70595932006836],[134.2741699218751,34.72138977050787],[134.29751586914062,34.73047256469738]]],[[[134.40568542480491,35.23768234252924],[134.38404846191418,35.21533966064459],[134.3858795166018,35.194385528564396],[134.41537475585937,35.17711257934576],[134.4155273437501,35.15558242797857],[134.37727355957054,35.14749908447277],[134.36500549316406,35.13669967651373],[134.35273742675793,35.09100723266596],[134.32290649414085,35.08070755004877],[134.31977844238293,35.04195022583019],[134.2990875244143,35.03824234008795],[134.26869201660156,35.01024627685547],[134.28317260742222,34.99480056762701],[134.27288818359375,34.977188110351676],[134.27557373046875,34.956687927246094],[134.25773620605514,34.94328689575201],[134.28559875488293,34.918109893798885],[134.29162597656273,34.89570999145508],[134.2650146484376,34.87932205200195],[134.2564239501953,34.85307693481451],[134.26544189453125,34.83330154418957],[134.30696105957043,34.809791564941406],[134.32009887695358,34.79295349121105],[134.3475494384768,34.73558044433594],[134.32757568359386,34.72902297973633],[134.29388427734375,34.73638916015625],[134.24414062500023,34.7150764465332],[134.2288360595703,34.73122024536144],[134.2073974609376,34.72984695434576],[134.19873046875,34.715179443359375],[134.24583435058594,34.70111083984375],[134.2214965820317,34.684917449951286],[134.18862915039085,34.650726318359375],[134.17239379882812,34.64868545532221],[134.17340087890648,34.61709976196295],[134.15022277832065,34.6166343688966],[134.12181091308628,34.59023284912104],[134.09408569335983,34.58157730102539],[134.05528259277344,34.58638763427746],[134.04820251464844,34.59757232666021],[134.01199340820312,34.61128234863287],[133.98309326171886,34.60177612304693],[133.93469238281284,34.595989227295036],[133.94810485839844,34.57611465454107],[133.97398376464878,34.594352722168026],[134.0332183837893,34.5975341796875],[134.04074096679722,34.587810516357536],[134.0293884277346,34.55619430541992],[134.008270263672,34.549011230468864],[133.9882812500001,34.52998352050781],[133.9589233398441,34.52312469482422],[133.96487426757812,34.49501800537121],[133.93994140625023,34.481697082519474],[133.94293212890625,34.45529937744146],[133.9202423095703,34.44982528686529],[133.88076782226562,34.456207275390625],[133.86714172363293,34.46731185913086],[133.83055114746128,34.47236633300781],[133.80882263183594,34.45973587036133],[133.81455993652344,34.43143463134771],[133.78164672851585,34.43968200683605],[133.7592163085941,34.47494125366211],[133.74285888671875,34.470298767089844],[133.70477294921898,34.483058929443416],[133.7054901123047,34.52993011474621],[133.6842651367191,34.507102966308594],[133.6692810058596,34.51979827880871],[133.64726257324253,34.504230499267635],[133.60362243652344,34.49510192871094],[133.59585571289085,34.47133636474615],[133.5601348876953,34.46800613403332],[133.4865417480471,34.44064331054699],[133.45797729492233,34.459796905517635],[133.453826904297,34.47617721557623],[133.44822692871116,34.50257110595709],[133.45201110839866,34.539608001708984],[133.42469787597656,34.58329010009771],[133.4080505371095,34.586799621581974],[133.38613891601597,34.61838531494146],[133.4052886962893,34.666629791259766],[133.3766632080078,34.69465255737299],[133.36584472656273,34.75605392456066],[133.3807067871096,34.80300903320318],[133.34809875488304,34.82643508911144],[133.29949951171886,34.88657760620117],[133.3046264648442,34.92678070068365],[133.29992675781284,34.95323562622082],[133.3229370117192,34.987743377685604],[133.32321166992187,35.003643035888615],[133.30598449707043,35.01515579223633],[133.2721405029297,35.05456924438471],[133.2902832031251,35.06518936157232],[133.29310607910156,35.094135284423885],[133.32179260253952,35.090793609619254],[133.3396453857422,35.10195922851574],[133.41343688964844,35.117191314697266],[133.3965759277345,35.166637420654354],[133.41046142578148,35.18264770507807],[133.4497985839845,35.168884277343864],[133.51098632812523,35.18930816650402],[133.5218048095703,35.210338592529354],[133.51116943359398,35.230205535888786],[133.55967712402355,35.24074172973633],[133.57388305664062,35.27153396606451],[133.57868957519554,35.30291748046881],[133.5991668701173,35.341682434082145],[133.64122009277366,35.3360328674317],[133.68540954589878,35.315635681152344],[133.70579528808605,35.32136917114269],[133.75000000000045,35.315040588378906],[133.804443359375,35.28421783447271],[133.83071899414074,35.246444702148494],[133.86421203613304,35.267276763916016],[133.87429809570335,35.28993606567377],[133.93313598632824,35.31042098999029],[133.93460083007835,35.33033370971691],[134.00000000000023,35.349750518798885],[134.01368713378906,35.337287902832145],[134.00294494628918,35.31113052368164],[134.0528106689453,35.295433044433594],[134.10031127929687,35.30239105224621],[134.1464996337893,35.26047515869135],[134.1402282714846,35.23510742187494],[134.1602783203126,35.23130416870123],[134.15567016601585,35.19264602661144],[134.18179321289085,35.16662979125982],[134.19636535644543,35.18108367919933],[134.26762390136741,35.205245971679744],[134.28433227539062,35.19372177124029],[134.3194732666018,35.19908905029297],[134.36534118652355,35.22620010375988],[134.37541198730514,35.241489410400334],[134.40568542480491,35.23768234252924]]]]},"properties":{"ID_0":114,"ISO":"JP-33","NAME_0":"Japan","ID_1":31,"NAME_1":"Okayama","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"岡山県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[123.78791809082077,24.072082519531307],[123.80958557128906,24.06458282470703],[123.79597473144542,24.0454158782959],[123.7568054199221,24.049028396606502],[123.75930786132858,24.063194274902287],[123.78791809082077,24.072082519531307]]],[[[124.00152587890648,24.25652885437023],[124.03097534179721,24.236528396606502],[124.00347137451172,24.22097206115717],[123.99069213867187,24.23986053466797],[124.00152587890648,24.25652885437023]]],[[[124.08680725097667,24.34152793884283],[124.10236358642578,24.320415496826172],[124.07653045654308,24.31930541992199],[124.08680725097667,24.34152793884283]]],[[[123.97402954101574,24.355417251587027],[123.99208068847656,24.346805572509822],[124.00319671630882,24.328193664550838],[123.96208190917969,24.33402633666998],[123.97402954101574,24.355417251587027]]],[[[123.77819824218761,24.438749313354492],[123.81208038330101,24.41152763366705],[123.8645858764653,24.39541625976574],[123.88708496093773,24.38430404663086],[123.90347290039085,24.386249542236328],[123.92708587646484,24.365972518921012],[123.93653106689464,24.348194122314567],[123.92986297607433,24.32652854919445],[123.90902709960983,24.317638397216853],[123.90041351318382,24.299028396606445],[123.90430450439464,24.27430534362793],[123.86319732666038,24.255136489868164],[123.83513641357422,24.272083282470817],[123.80596923828125,24.269306182861328],[123.75430297851574,24.27930450439453],[123.72458648681686,24.299028396606445],[123.71875000000034,24.277639389038143],[123.68069458007835,24.28236198425293],[123.66152954101596,24.310140609741154],[123.67986297607422,24.32541656494152],[123.70680236816429,24.325971603393498],[123.75319671630905,24.352916717529353],[123.75069427490257,24.402915954589843],[123.77402496337902,24.424861907959098],[123.77819824218761,24.438749313354492]]],[[[123.00653076171886,24.474306106567383],[123.04069519042969,24.46291732788086],[123.01319122314464,24.437360763549748],[122.98291778564453,24.442361831665152],[122.96680450439498,24.437360763549748],[122.94208526611328,24.4576416015625],[122.97125244140659,24.46847152709961],[123.00653076171886,24.474306106567383]]],[[[124.31708526611362,24.612083435058707],[124.34041595459007,24.605972290039176],[124.33374786376976,24.56902694702154],[124.30374908447265,24.5443058013916],[124.30986022949219,24.532915115356502],[124.2823638916019,24.505138397216853],[124.28180694580078,24.4876384735108],[124.26208496093795,24.47847175598139],[124.25041961669944,24.454025268554687],[124.25902557373092,24.4109725952149],[124.25041961669944,24.3593044281007],[124.2387466430664,24.344861984252873],[124.2170867919923,24.354028701782283],[124.18152618408203,24.329582214355525],[124.14986419677734,24.33124923706066],[124.14347076416015,24.351251602172794],[124.11152648925781,24.365417480468807],[124.14069366455078,24.39152717590332],[124.14236450195346,24.414026260375976],[124.11985778808628,24.435138702392635],[124.08819580078159,24.42347145080572],[124.06874847412143,24.431804656982422],[124.07624816894554,24.450971603393554],[124.09986114501953,24.453472137451285],[124.13263702392612,24.47708320617687],[124.14597320556652,24.456806182861328],[124.17903137207031,24.449583053588867],[124.19264221191429,24.458469390869254],[124.22208404541027,24.455137252807617],[124.22902679443382,24.489305496215934],[124.25597381591842,24.51986122131342],[124.26819610595714,24.514583587646484],[124.28902435302746,24.539861679077205],[124.2826385498048,24.561805725097656],[124.29680633544933,24.569305419921932],[124.31708526611362,24.612083435058707]]],[[[124.70958709716808,24.679027557373047],[124.72708129882835,24.667360305786133],[124.72791290283214,24.652639389038143],[124.70597076416027,24.637638092041015],[124.67819213867187,24.640415191650504],[124.67041778564476,24.6612491607666],[124.68096923828136,24.673194885253906],[124.70958709716808,24.679027557373047]]],[[[125.1648635864259,24.865417480468693],[125.20236206054699,24.850694656372127],[125.22180175781273,24.82347488403326],[125.21652984619152,24.806804656982422],[125.18208312988281,24.81152725219738],[125.16430664062511,24.80208396911621],[125.14485931396496,24.80625152587902],[125.13541412353527,24.835416793823356],[125.15569305419933,24.8323593139649],[125.1648635864259,24.865417480468693]]],[[[125.26597595214855,24.915973663330135],[125.3062515258789,24.849861145019588],[125.33597564697277,24.82180595397955],[125.33264160156273,24.802360534668025],[125.35485839843761,24.788749694824162],[125.38319396972679,24.787916183471793],[125.40347290039074,24.76625251770031],[125.4334716796875,24.761526107788143],[125.45486450195312,24.736249923705998],[125.42569732666038,24.72597312927246],[125.37208557128906,24.729028701782283],[125.34735870361373,24.719306945800895],[125.3062515258789,24.712358474731445],[125.26041412353515,24.736804962158203],[125.28125000000034,24.75041580200201],[125.27208709716831,24.779306411743164],[125.25569152832065,24.798471450805777],[125.27847290039085,24.813749313354492],[125.27652740478515,24.83763885498047],[125.29597473144531,24.84680557250988],[125.2740249633789,24.876249313354435],[125.26597595214855,24.915973663330135]]],[[[131.23554992675793,25.872779846191463],[131.2620086669923,25.869722366333008],[131.274169921875,25.85416412353527],[131.25721740722656,25.816944122314453],[131.23138427734386,25.812221527099666],[131.2127838134768,25.823055267333984],[131.22000122070312,25.8666667938233],[131.23554992675793,25.872779846191463]]],[[[131.28974914550793,25.959966659546012],[131.33265686035168,25.951969146728515],[131.32167053222656,25.929721832275447],[131.29916381835937,25.929721832275447],[131.28500366210972,25.947221755981502],[131.28974914550793,25.959966659546012]]],[[[127.35805511474632,26.226110458374023],[127.37277984619186,26.21500015258789],[127.36083221435581,26.18277740478527],[127.33833312988281,26.18333244323742],[127.35805511474632,26.226110458374023]]],[[[126.774169921875,26.39222145080572],[126.81083679199241,26.3644447326663],[126.81610870361328,26.335554122924748],[126.8072204589846,26.328611373901424],[126.80027770996094,26.292778015136775],[126.77944183349621,26.305276870727652],[126.76944732666038,26.32694435119629],[126.74805450439453,26.34499931335455],[126.72416687011719,26.348611831665152],[126.70888519287121,26.367778778076172],[126.774169921875,26.39222145080572]]],[[[127.23555755615234,26.602222442626953],[127.24028015136753,26.575555801391715],[127.20809936523437,26.574804306030273],[127.21722412109375,26.594165802001953],[127.23555755615234,26.602222442626953]]],[[[128.02134704589878,26.67836952209484],[128.03543090820324,26.65111160278326],[127.99416351318382,26.65972137451172],[127.99583435058594,26.671112060546818],[128.02134704589878,26.67836952209484]]],[[[127.81610870361362,26.734167098999137],[127.82638549804699,26.708889007568416],[127.76222229003929,26.707777023315486],[127.74888610839866,26.722221374511662],[127.76000213623058,26.737499237060603],[127.81610870361362,26.734167098999137]]],[[[128.25778198242233,26.87583351135254],[128.2943115234375,26.842258453369254],[128.30357360839855,26.846265792846736],[128.32656860351562,26.77746772766136],[128.31832885742187,26.734443664550952],[128.29417419433605,26.717777252197265],[128.28054809570347,26.676109313964843],[128.2509765625001,26.651050567626953],[128.23832702636764,26.63083267211914],[128.1806182861328,26.623920440673828],[128.1588897705078,26.630554199218977],[128.14602661132824,26.6228923797608],[128.15167236328125,26.59805488586437],[128.1294403076173,26.600833892822436],[128.1461181640625,26.571388244628906],[128.0913848876953,26.536111831664982],[128.06111145019554,26.551111221313533],[128.03611755371116,26.547500610351676],[128.05332946777355,26.520832061767635],[127.9926452636721,26.50505256652832],[128.0036163330078,26.489166259765625],[127.99092102050804,26.47475814819353],[127.95333099365246,26.473054885864485],[127.94361114501976,26.443889617919922],[127.92861175537121,26.439167022705135],[127.88552856445324,26.45666694641119],[127.84972381591797,26.446668624877986],[127.83999633789062,26.40777969360363],[127.87916564941429,26.378055572509936],[127.87388610839855,26.358888626098746],[127.90314483642578,26.331748962402457],[127.93235778808616,26.332181930541992],[127.94385528564464,26.357145309448242],[127.99472045898449,26.363611221313533],[127.95861053466797,26.33638954162609],[127.9083938598634,26.33104705810547],[127.92222595214866,26.31166839599615],[127.89280700683594,26.30981636047369],[127.86222076416027,26.331666946411133],[127.8483352661134,26.315555572509993],[127.8128890991211,26.300828933715877],[127.81749725341797,26.283889770507926],[127.79861450195312,26.26583290100109],[127.78816223144554,26.2256698608399],[127.76110839843795,26.209999084472713],[127.77967071533214,26.18095207214361],[127.81494903564464,26.19043159484869],[127.83110809326217,26.176111221313533],[127.81999969482444,26.15749931335455],[127.7925033569336,26.134721755981502],[127.77555847167991,26.134721755981502],[127.7441635131836,26.114999771118164],[127.72472381591808,26.089721679687613],[127.7086105346682,26.090000152588004],[127.68055725097656,26.074167251587084],[127.65791320800804,26.08061599731451],[127.66278076171875,26.131666183471623],[127.64805603027355,26.144166946411303],[127.65704345703159,26.1611843109132],[127.63675689697311,26.198879241943416],[127.64862060546886,26.2168807983399],[127.67583465576194,26.22500038146984],[127.68410491943371,26.246675491333064],[127.71189117431663,26.274303436279297],[127.75694274902344,26.29611206054699],[127.75971984863304,26.308610916137695],[127.741943359375,26.330833435058537],[127.73995208740246,26.35643768310547],[127.71333312988281,26.411111831665096],[127.71444702148471,26.441110610962027],[127.73611450195335,26.422777175903434],[127.77166748046909,26.446111679077205],[127.78662872314464,26.43504142761236],[127.81305694580112,26.463888168335074],[127.84521484375023,26.481103897094783],[127.84278106689464,26.50361061096197],[127.87000274658226,26.512292861938476],[127.89027404785167,26.51083374023466],[127.94505310058628,26.536525726318473],[127.97416687011764,26.55777740478527],[127.98249816894554,26.5847225189209],[127.92028045654297,26.608890533447265],[127.89472198486328,26.614444732666072],[127.87959289550792,26.63790893554699],[127.88864135742187,26.672424316406363],[127.87472534179687,26.683610916137695],[127.88055419921886,26.709722518921182],[127.90833282470726,26.699722290039005],[127.94916534423851,26.708610534668025],[128.00559997558616,26.6883220672608],[127.99388885498047,26.672222137451172],[127.99102783203125,26.646993637085074],[128.01249694824264,26.63277626037609],[128.05401611328125,26.63519859313959],[128.0913848876953,26.65416717529297],[128.1008300781251,26.680000305175838],[128.11833190917991,26.703889846801814],[128.14361572265625,26.708610534668025],[128.15985107421875,26.722116470336914],[128.1536560058595,26.740732192993277],[128.18110656738327,26.748611450195312],[128.21804809570312,26.784166336059627],[128.25300598144554,26.843235015869254],[128.2438964843751,26.858333587646484],[128.25778198242233,26.87583351135254]]],[[[127.93777465820324,26.955833435058707],[127.95666503906261,26.944444656372184],[127.93861389160156,26.910556793213004],[127.92250061035156,26.91805648803711],[127.9191665649414,26.948333740234432],[127.93777465820324,26.955833435058707]]],[[[128.02212524414062,27.09239768981928],[128.00434875488293,27.078849792480582],[127.99111175537132,27.04361152648937],[127.97030639648449,27.038837432861385],[127.95111083984375,27.04527854919428],[127.99583435058594,27.089721679687613],[128.02212524414062,27.09239768981928]]]]},"properties":{"ID_0":114,"ISO":"JP-47","NAME_0":"Japan","ID_1":32,"NAME_1":"Okinawa","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"沖縄県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[135.7319946289066,34.77547073364269],[135.7142486572269,34.77802658081055],[135.70655822753952,34.72124862670904],[135.68058776855491,34.70272827148449],[135.68084716796886,34.677268981933594],[135.66908264160156,34.649822235107536],[135.66165161132812,34.61145782470703],[135.68457031250023,34.581630706787166],[135.65577697753918,34.543991088867244],[135.67965698242233,34.52225112915039],[135.686737060547,34.4422340393067],[135.66941833496105,34.416633605957145],[135.6769256591797,34.395828247070426],[135.6457977294922,34.380386352539176],[135.5801239013672,34.37269210815424],[135.51930236816418,34.33884429931635],[135.48814392089866,34.359443664550724],[135.46597290039062,34.34497451782232],[135.43707275390625,34.3449440002442],[135.38624572753906,34.32601547241211],[135.34144592285168,34.33196640014654],[135.33247375488304,34.31380844116211],[135.28533935546875,34.31450271606457],[135.25000000000034,34.30998992919933],[135.23196411132824,34.2987174987793],[135.21081542968773,34.30500793457037],[135.20668029785168,34.284774780273494],[135.1875610351567,34.27682495117199],[135.15155029296886,34.27977371215832],[135.13494873046875,34.26906967163097],[135.113006591797,34.27054595947277],[135.0925445556643,34.31139373779297],[135.1029052734375,34.32022857666021],[135.14256286621105,34.31903457641607],[135.15362548828136,34.33130264282221],[135.1897430419922,34.33668899536133],[135.22586059570324,34.34932708740229],[135.24671936035156,34.37559509277355],[135.26394653320312,34.38041305541998],[135.29365539550793,34.41374969482433],[135.26409912109386,34.43659591674799],[135.22883605957065,34.41310501098644],[135.219451904297,34.42250061035162],[135.25971984863293,34.44388961791992],[135.29399108886764,34.41516876220703],[135.33694458007824,34.445278167724666],[135.37397766113315,34.476501464843864],[135.3716735839845,34.52333450317394],[135.41831970214866,34.52030181884771],[135.4451293945316,34.555736541748104],[135.41088867187523,34.56048965454107],[135.40249633789085,34.600276947021484],[135.41851806640648,34.61980438232422],[135.3986053466797,34.63333511352545],[135.41746520996128,34.64430236816412],[135.4214324951172,34.70564270019531],[135.44958496093773,34.716705322265625],[135.46235656738304,34.732929229736385],[135.44509887695324,34.7867431640625],[135.42105102539062,34.808967590332145],[135.4249267578125,34.84870910644531],[135.43380737304733,34.85341262817383],[135.44497680664062,34.89438247680664],[135.42330932617233,34.90468215942383],[135.4695587158203,34.92590713500982],[135.3638610839845,34.95129394531244],[135.3494110107422,34.96556854248058],[135.35720825195312,35.021156311035156],[135.34182739257824,35.04053115844732],[135.3737945556644,35.04222106933605],[135.38336181640625,35.01149749755865],[135.4208374023442,34.999958038330135],[135.44329833984386,35.004356384277344],[135.49290466308616,34.986331939697266],[135.48866271972656,34.95289611816412],[135.53854370117187,34.92273330688488],[135.5440368652346,34.91203689575207],[135.57586669921898,34.91348648071289],[135.58233642578148,34.93402099609381],[135.5649871826173,34.940299987793026],[135.5779724121096,34.96887969970703],[135.61608886718773,34.96789932250982],[135.6159362792971,34.94232177734369],[135.64590454101608,34.92653274536144],[135.65687561035156,34.90604019165039],[135.67901611328125,34.89418411254883],[135.69444274902344,34.84987258911144],[135.712860107422,34.84198379516607],[135.7467041015625,34.80148315429693],[135.7319946289066,34.77547073364269]]]},"properties":{"ID_0":114,"ISO":"JP-27","NAME_0":"Japan","ID_1":33,"NAME_1":"Osaka","TYPE_1":"Fu","ENGTYPE_1":"Urban Prefecture","NL_NAME_1":"大阪府","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[130.03729248046898,33.467739105224666],[130.0992431640625,33.4665641784668],[130.10755920410156,33.472759246826286],[130.17092895507847,33.46433639526373],[130.2061767578126,33.47791290283203],[130.249969482422,33.46767807006836],[130.27360534667991,33.47655105590826],[130.30035400390648,33.459186553955135],[130.3326110839845,33.44916534423834],[130.36000061035156,33.43093109130871],[130.39889526367187,33.42388916015619],[130.43052673339844,33.39351654052746],[130.47129821777355,33.429294586181754],[130.51858520507824,33.44429779052729],[130.53935241699264,33.43541336059582],[130.54373168945335,33.416637420654354],[130.54277038574241,33.361961364746094],[130.53820800781295,33.339542388916016],[130.51246643066452,33.34095001220703],[130.48643493652344,33.304267883300895],[130.43812561035168,33.26874923706055],[130.39271545410168,33.24361038208008],[130.3627929687501,33.1993293762207],[130.3540954589846,33.14690399169933],[130.3447265625,33.14138793945324],[130.28738403320335,33.147636413574276],[130.28507995605491,33.161556243896484],[130.25111389160168,33.189998626708984],[130.2327423095703,33.18495178222656],[130.22305297851562,33.16548156738281],[130.1915740966797,33.1463432312014],[130.14813232421898,33.11173248291021],[130.1429443359375,33.08081436157238],[130.16168212890648,33.055637359619254],[130.1938934326173,32.99499893188488],[130.2252807617191,32.96694564819347],[130.21951293945324,32.95325851440447],[130.2127838134768,32.95402145385759],[130.20372009277355,32.95486831665045],[130.15325927734398,32.959602355957145],[130.0614776611328,32.98390197753906],[129.999969482422,33.03091049194336],[129.98280334472668,33.05453872680681],[129.94949340820312,33.066223144531364],[129.92456054687523,33.087226867675895],[129.92729187011764,33.10244369506836],[129.95381164550793,33.10676574707054],[129.9586944580078,33.12482452392595],[129.94056701660156,33.162071228027344],[129.88856506347702,33.15790557861334],[129.81842041015636,33.18242645263689],[129.81094360351608,33.200702667236555],[129.8169708251953,33.23599624633795],[129.78684997558616,33.259288787841854],[129.76382446289108,33.294834136963004],[129.7768707275394,33.3255043029788],[129.79388427734375,33.33709335327154],[129.83013916015625,33.30424880981445],[129.84666442871105,33.32722091674833],[129.83526611328125,33.33684158325195],[129.86613464355503,33.38160324096691],[129.86920166015625,33.39580535888683],[129.83250427246105,33.41388702392584],[129.7822265625,33.451110839843864],[129.79609680175793,33.475608825683594],[129.8394927978518,33.49409484863281],[129.82955932617187,33.50574874877941],[129.85472106933594,33.533882141113395],[129.89508056640625,33.54942321777344],[129.9294433593751,33.53805541992193],[129.96954345703125,33.5113143920899],[129.94500732421898,33.493938446045036],[129.96348571777355,33.483779907226506],[129.96760559082065,33.455062866210994],[129.9996490478519,33.44638824462885],[130.0380554199221,33.45222091674822],[130.03729248046898,33.467739105224666]]]},"properties":{"ID_0":114,"ISO":"JP-41","NAME_0":"Japan","ID_1":34,"NAME_1":"Saga","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"佐賀県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[139.6624755859375,36.21761703491222],[139.7052917480471,36.20071792602539],[139.69461059570335,36.17702484130865],[139.7003326416018,36.151847839355526],[139.7255249023442,36.11464309692394],[139.7403717041018,36.08330535888666],[139.7602233886721,36.079284667968864],[139.78001403808594,36.09381866455078],[139.79368591308628,36.056060791015625],[139.81611633300804,36.03590011596674],[139.8186492919923,35.993057250976676],[139.84942626953125,35.93800735473644],[139.87815856933605,35.90981674194347],[139.90383911132835,35.86016845703125],[139.89251708984375,35.837333679199276],[139.8924255371095,35.80519866943371],[139.87496948242187,35.794319152832145],[139.8278961181643,35.791343688964844],[139.8193511962893,35.80853652954113],[139.7928924560548,35.80273056030279],[139.7586822509768,35.809040069580135],[139.7494659423828,35.78357696533209],[139.69105529785168,35.798175811767635],[139.64341735839844,35.791717529296875],[139.624969482422,35.7635955810548],[139.5973052978518,35.775482177734375],[139.56600952148437,35.75846481323248],[139.5507965087893,35.76011276245117],[139.52925109863304,35.78868484497082],[139.45617675781273,35.7653045654298],[139.39250183105514,35.76379776000982],[139.36576843261741,35.788673400878906],[139.32618713378918,35.79509735107416],[139.318328857422,35.82181167602545],[139.28506469726585,35.83610534667963],[139.26420593261753,35.83332443237316],[139.19868469238304,35.83690261840826],[139.146484375,35.86007690429693],[139.11468505859375,35.86156082153332],[139.0531005859375,35.8755836486817],[139.0266265869143,35.894138336181754],[138.99996948242233,35.88115310668951],[138.95646667480491,35.87018966674805],[138.9469757080078,35.85183715820318],[138.89193725585937,35.83996963500988],[138.85675048828136,35.862079620361385],[138.83473205566406,35.85976409912104],[138.79804992675815,35.87019729614258],[138.79124450683594,35.89065933227545],[138.731689453125,35.90605926513683],[138.73928833007824,35.938114166259766],[138.7153472900393,35.970687866210994],[138.72033691406273,35.98995590209961],[138.749969482422,36.011447906494254],[138.75816345214855,36.03132247924799],[138.79878234863293,36.02776336669933],[138.8209686279297,36.03243637084972],[138.85032653808594,36.06402969360357],[138.90437316894543,36.087642669677734],[138.93418884277355,36.08492660522455],[138.96086120605491,36.105350494384766],[138.9679107666018,36.122577667236385],[138.99996948242233,36.12253570556652],[139.026611328125,36.130653381347656],[139.04551696777355,36.1255722045899],[139.06053161621094,36.17279052734375],[139.11076354980491,36.25814437866211],[139.1303253173828,36.27592849731451],[139.16563415527344,36.27367019653326],[139.2515869140626,36.238437652588004],[139.28192138671886,36.24449920654297],[139.33134460449253,36.23287582397472],[139.374969482422,36.24141693115229],[139.46688842773483,36.186122894287166],[139.53733825683628,36.18989181518555],[139.58569335937523,36.206134796142635],[139.62196350097702,36.18643188476574],[139.6468505859375,36.193569183349666],[139.6624755859375,36.21761703491222]]]},"properties":{"ID_0":114,"ISO":"JP-11","NAME_0":"Japan","ID_1":35,"NAME_1":"Saitama","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"埼玉県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.27893066406273,35.661113739013615],[136.2924041748047,35.617141723632756],[136.3158416748047,35.61979293823248],[136.32559204101562,35.573593139648494],[136.3197021484375,35.54769134521496],[136.35935974121094,35.535911560058594],[136.3840789794923,35.535305023193416],[136.40492248535156,35.515964508056584],[136.39097595214878,35.490322113037166],[136.40286254882812,35.47241592407238],[136.4229431152346,35.46357345581055],[136.42620849609386,35.44161224365246],[136.41819763183605,35.421852111816406],[136.42860412597656,35.399478912353516],[136.4453887939453,35.386920928955135],[136.41712951660156,35.36863708496094],[136.4240417480471,35.35063934326183],[136.41535949707043,35.31262969970709],[136.39895629882824,35.29118347167963],[136.39805603027344,35.2524299621582],[136.38177490234386,35.24361038208008],[136.4179840087893,35.21472549438482],[136.41554260253906,35.19235992431652],[136.45718383789062,35.15975189208996],[136.43870544433594,35.12802124023443],[136.44813537597702,35.12287139892584],[136.4392547607422,35.0758438110351],[136.44381713867222,35.06667327880871],[136.420867919922,35.044776916503906],[136.42286682128906,34.99999237060547],[136.39965820312523,34.95440673828125],[136.3789520263673,34.94141006469738],[136.36842346191418,34.90280532836914],[136.3236083984375,34.886497497558594],[136.30726623535156,34.87175369262701],[136.2788238525394,34.86907577514654],[136.24998474121094,34.855625152588004],[136.19880676269554,34.86890411376953],[136.18214416503906,34.88332748413086],[136.14984130859386,34.879673004150334],[136.11871337890648,34.88899612426769],[136.09008789062523,34.88226318359375],[136.10340881347656,34.8672714233399],[136.12908935546886,34.859134674072266],[136.0901794433595,34.832862854003906],[136.09353637695335,34.81140136718756],[136.06597900390625,34.79745483398443],[136.02534484863315,34.7883415222168],[135.99998474121094,34.84122085571295],[135.97967529296898,34.835186004638786],[135.94905090332065,34.848552703857536],[135.94253540039074,34.88514709472656],[135.90534973144543,34.86952209472656],[135.86950683593784,34.88890457153326],[135.88119506835937,34.933799743652344],[135.85896301269543,34.9754524230957],[135.8363800048828,34.99680328369146],[135.83708190918003,35.019001007080135],[135.82131958007835,35.04579544067377],[135.83886718750023,35.05621337890625],[135.83929443359398,35.08943176269531],[135.85473632812523,35.128433227539176],[135.85647583007858,35.148250579833984],[135.832489013672,35.21652603149414],[135.8496856689453,35.262420654296875],[135.83085632324241,35.27592849731451],[135.80783081054733,35.31382751464855],[135.77693176269577,35.33948135375988],[135.7709655761721,35.35259628295904],[135.79364013671875,35.38333511352545],[135.81251525878906,35.38753890991222],[135.8153076171876,35.4084091186524],[135.84864807128952,35.40818023681646],[135.8662872314453,35.391563415527344],[135.89503479003918,35.40323638916021],[135.91407775878952,35.42708206176752],[135.92498779296886,35.482151031494254],[135.94790649414097,35.51799774169922],[135.98715209960937,35.48596954345703],[136.01036071777366,35.490226745605526],[136.03343200683605,35.52643966674816],[136.0739135742192,35.52358245849615],[136.11065673828125,35.54863739013683],[136.11672973632812,35.57597732543951],[136.17274475097668,35.56280517578125],[136.17956542968773,35.593700408935604],[136.1629333496096,35.62268066406244],[136.15347290039062,35.65384674072271],[136.13754272460937,35.66662979125988],[136.16433715820324,35.69386672973644],[136.18716430664074,35.69997024536144],[136.20227050781295,35.68664932250988],[136.27893066406273,35.661113739013615]]]},"properties":{"ID_0":114,"ISO":"JP-25","NAME_0":"Japan","ID_1":36,"NAME_1":"Shiga","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"滋賀県","VARNAME_1":"Siga"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[133.1926422119143,35.5062713623048],[133.1819763183596,35.483493804931754],[133.16230773925804,35.48392486572271],[133.15640258789085,35.50514602661133],[133.1926422119143,35.5062713623048]]],[[[133.31785583496128,35.388702392578125],[133.31912231445358,35.36369323730469],[133.29771423339866,35.33779525756847],[133.30444335937545,35.260086059570256],[133.2621307373048,35.257926940918026],[133.18280029296886,35.230381011963004],[133.1542510986328,35.21274948120117],[133.1769714355471,35.202022552490234],[133.1974639892578,35.16662979125982],[133.15240478515648,35.13755035400396],[133.1397247314453,35.086753845214844],[133.14395141601562,35.07317352294916],[133.11468505859375,35.08249664306652],[133.0616455078126,35.076087951660156],[133.04258728027344,35.06485748291021],[132.9929962158203,35.0979957580567],[132.98063659668003,35.08330917358404],[132.95304870605491,35.07233428955084],[132.90919494628918,35.08728408813482],[132.89474487304733,35.10161972045904],[132.87461853027344,35.09853363037104],[132.83023071289074,35.05780410766613],[132.8082733154297,35.0233039855957],[132.7744140625,34.99415969848633],[132.75279235839855,34.95952224731451],[132.69219970703136,34.94888305664068],[132.67813110351597,34.929317474365234],[132.6588745117191,34.920021057128906],[132.6506347656251,34.89690780639654],[132.70323181152366,34.87866973876953],[132.7115936279298,34.856361389160156],[132.68394470214866,34.847305297851676],[132.66238403320324,34.8289413452149],[132.6510772705078,34.83674621582037],[132.61441040039074,34.83631134033203],[132.56898498535168,34.802757263183594],[132.53973388671898,34.79198455810558],[132.45692443847656,34.79746246337896],[132.44447326660168,34.81448745727539],[132.42369079589878,34.808685302734375],[132.40147399902366,34.78022003173828],[132.3643493652345,34.797019958496094],[132.3437500000001,34.788421630859375],[132.3119659423828,34.792259216308594],[132.3011932373048,34.773681640625114],[132.2807312011721,34.793609619140625],[132.2537841796875,34.80389785766613],[132.24281311035202,34.776737213134766],[132.21549987792991,34.74174880981457],[132.20498657226585,34.74545669555664],[132.1512908935548,34.7146568298341],[132.1362762451172,34.69430160522461],[132.16421508789085,34.68012619018566],[132.12887573242187,34.63711929321289],[132.11946105957043,34.60544967651367],[132.12709045410168,34.58328628540039],[132.11807250976608,34.562492370605526],[132.08631896972656,34.53416061401373],[132.05606079101585,34.526756286621094],[132.04089355468784,34.49995803833008],[132.06553649902344,34.47348022460949],[132.0245361328125,34.454704284668026],[132.01849365234398,34.43434906005871],[131.99249267578125,34.411506652831974],[132.01441955566406,34.37393569946295],[131.95758056640625,34.30719375610357],[131.9224090576173,34.3335800170899],[131.9026031494144,34.3158798217774],[131.87496948242187,34.30438613891613],[131.836395263672,34.308006286621094],[131.8215332031251,34.300235748291016],[131.77745056152355,34.33637237548828],[131.7692413330078,34.38165664672846],[131.78689575195335,34.39654541015631],[131.79640197753906,34.43328094482422],[131.72372436523437,34.425422668457145],[131.70149230957054,34.43163681030268],[131.69638061523437,34.46291351318365],[131.67076110839866,34.500827789306754],[131.70407104492187,34.52754592895519],[131.70520019531284,34.56216430664074],[131.7268676757817,34.568874359130916],[131.7195739746096,34.60321426391607],[131.70208740234386,34.613468170166016],[131.6999053955078,34.63565444946295],[131.68467712402355,34.6755104064942],[131.70347595214878,34.67219161987305],[131.76185607910156,34.678203582763786],[131.8137664794922,34.69275283813471],[131.84954833984386,34.71150588989258],[131.87170410156284,34.73297119140631],[131.86460876464844,34.75524520874029],[131.885711669922,34.75685501098633],[131.89712524414062,34.77525711059576],[131.91983032226562,34.77516174316412],[131.9477233886721,34.7945289611817],[131.96221923828148,34.82110977172846],[131.98796081542991,34.82685089111334],[132.02896118164085,34.87868881225597],[132.05451965332054,34.871433258056754],[132.0850677490239,34.930675506591854],[132.10852050781273,34.938037872314396],[132.15888977050827,34.97638702392584],[132.18833923339844,34.992778778076115],[132.23611450195335,35.0352783203125],[132.26596069335972,35.03832244873047],[132.31101989746094,35.05794906616222],[132.3233337402345,35.08889007568365],[132.38970947265636,35.13158798217785],[132.3905487060547,35.15611267089855],[132.40406799316406,35.16047286987305],[132.42166137695335,35.1888885498048],[132.44342041015636,35.19479370117193],[132.4916687011721,35.23083496093756],[132.52589416503918,35.24137115478527],[132.53030395507824,35.25194168090832],[132.57507324218795,35.272094726562614],[132.63064575195347,35.289337158203125],[132.6649932861328,35.33499908447277],[132.67529296875,35.37578201293945],[132.67274475097668,35.400577545166016],[132.63293457031284,35.418605804443416],[132.6280517578126,35.429443359375114],[132.66239929199241,35.44367599487299],[132.69686889648437,35.44990921020519],[132.75698852539074,35.44925689697277],[132.73550415039062,35.46627807617182],[132.75361633300793,35.47627258300787],[132.7894744873048,35.4807014465332],[132.8127136230471,35.496780395507926],[132.85606384277355,35.50991439819336],[132.90560913085983,35.51134872436535],[132.9206237792971,35.517963409423885],[132.97235107421898,35.516448974609375],[132.96849060058594,35.54360961914068],[133.0298461914066,35.540573120117244],[133.04783630371094,35.55420303344732],[133.06887817382858,35.583671569824276],[133.11883544921898,35.580150604248104],[133.15173339843784,35.559238433838004],[133.1947174072268,35.56944274902355],[133.25111389160156,35.575412750244254],[133.30787658691452,35.57588577270508],[133.30511474609375,35.557720184326286],[133.2655487060548,35.55564498901367],[133.20574951171875,35.540473937988224],[133.17835998535202,35.527030944824276],[133.1541748046876,35.53621292114258],[133.12747192382824,35.5071372985841],[133.13626098632824,35.475978851318416],[133.11412048339855,35.450458526611385],[133.1471557617191,35.43561553955078],[133.17834472656273,35.4362144470216],[133.22016906738293,35.44991683959972],[133.24893188476608,35.43527984619146],[133.2946014404297,35.42439270019537],[133.31785583496128,35.388702392578125]]],[[[133.0044403076172,36.03277587890625],[133.0358581542971,36.0283088684082],[133.05715942382812,36.0033912658692],[133.0037231445316,36.015590667724666],[133.0044403076172,36.03277587890625]]],[[[133.11305236816406,36.11999893188488],[133.133056640625,36.110553741455135],[133.12222290039062,36.07416534423828],[133.09997558593795,36.04895401000982],[133.07716369628906,36.04413604736334],[133.07833862304687,36.072223663330135],[133.06416320800793,36.101387023925895],[133.11305236816406,36.11999893188488]]],[[[133.0780487060548,36.142776489257926],[133.09091186523437,36.134418487548885],[133.06983947753952,36.11334991455084],[133.04219055175793,36.1108665466308],[133.05680847167991,36.08331680297857],[133.05244445800804,36.06777572631836],[133.02166748046875,36.06388854980469],[133.0061492919923,36.08337020874035],[132.97630310058594,36.084045410156364],[132.9994506835942,36.04444503784191],[132.9502716064453,36.06138992309576],[132.94680786132858,36.077056884765625],[132.98194885253918,36.11777877807617],[133.0122222900393,36.1158332824707],[133.02578735351574,36.13669586181652],[133.04713439941452,36.12961959838867],[133.0780487060548,36.142776489257926]]],[[[133.28247070312523,36.347877502441406],[133.28907775878906,36.335643768310604],[133.32484436035202,36.30884170532221],[133.3559265136721,36.298667907714844],[133.3636169433595,36.28004837036127],[133.3843688964845,36.26907348632807],[133.37294006347656,36.250308990478516],[133.37722778320312,36.229999542236385],[133.37033081054687,36.2062606811524],[133.3388671875,36.19694137573242],[133.34024047851585,36.17190551757818],[133.32670593261741,36.167373657226676],[133.27827453613304,36.17988967895519],[133.2530517578125,36.16110992431652],[133.18481445312523,36.214931488037166],[133.1915740966798,36.246181488037166],[133.17778015136741,36.24944305419922],[133.18780517578125,36.28270339965832],[133.20762634277344,36.30866622924805],[133.2318115234376,36.31819152832037],[133.24563598632835,36.33408355712902],[133.263916015625,36.328453063964844],[133.28247070312523,36.347877502441406]]]]},"properties":{"ID_0":114,"ISO":"JP-32","NAME_0":"Japan","ID_1":37,"NAME_1":"Shimane","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"島根県","VARNAME_1":"Simane"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[141.32327270507824,24.812992095947322],[141.34138488769554,24.79972267150879],[141.34722900390625,24.78111267089838],[141.29277038574241,24.751668930053824],[141.29270935058594,24.785621643066463],[141.32327270507824,24.812992095947322]]],[[[141.28443908691418,25.449720382690486],[141.29417419433605,25.426111221313533],[141.2702789306643,25.429166793823356],[141.28443908691418,25.449720382690486]]],[[[142.12701416015648,26.712928771972656],[142.1741943359376,26.652616500854492],[142.1533203125,26.637308120727596],[142.14448547363293,26.676685333252067],[142.1308288574221,26.689065933227652],[142.12701416015648,26.712928771972656]]],[[[139.75944519042991,33.160278320312614],[139.77426147460937,33.15860366821295],[139.80139160156273,33.13222122192383],[139.82583618164085,33.11777877807623],[139.84646606445324,33.11786651611334],[139.8579864501953,33.09966659545904],[139.85539245605491,33.076900482177734],[139.8394012451173,33.07486343383795],[139.82115173339878,33.056556701660156],[139.7816619873048,33.07110977172863],[139.77618408203125,33.09849929809576],[139.75555419921875,33.10333251953148],[139.73805236816406,33.13722229003923],[139.75944519042991,33.160278320312614]]],[[[139.60581970214878,33.90112686157232],[139.6327819824221,33.86944580078119],[139.62051391601562,33.8515625],[139.5780487060548,33.86111068725597],[139.57843017578136,33.884120941162166],[139.60581970214878,33.90112686157232]]],[[[139.52471923828136,34.12434768676769],[139.54702758789062,34.12046432495123],[139.56666564941418,34.09361267089844],[139.56304931640625,34.06833267211914],[139.5352783203125,34.05305480957037],[139.50193786621116,34.04444503784174],[139.4808349609376,34.0525016784668],[139.47250366210937,34.07694625854498],[139.49400329589844,34.10408020019531],[139.49234008789062,34.119453430175895],[139.52471923828136,34.12434768676769]]],[[[139.14332580566406,34.24361038208008],[139.17027282714866,34.231109619140625],[139.16656494140625,34.20878982543951],[139.14463806152344,34.1875953674317],[139.1277770996095,34.22138977050781],[139.14332580566406,34.24361038208008]]],[[[139.2860260009768,34.4283447265625],[139.29107666015636,34.40760421752924],[139.27838134765625,34.39182662963867],[139.27578735351574,34.34363174438482],[139.2444763183596,34.3483619689942],[139.2556304931644,34.40086746215832],[139.2860260009768,34.4283447265625]]],[[[139.3634490966797,34.798561096191406],[139.41215515136764,34.787048339843864],[139.43424987792991,34.77123260498041],[139.44927978515625,34.739681243896484],[139.4452819824221,34.68472290039068],[139.3960113525394,34.68352508544922],[139.3584442138672,34.70343017578131],[139.34944152832043,34.7830543518067],[139.3634490966797,34.798561096191406]]],[[[138.91955566406284,35.39873123168951],[138.97496032714866,35.401809692382756],[139.00415039062523,35.39005279541021],[139.0135955810547,35.33905029296869],[139.0216064453125,35.32663726806652],[139.00776672363304,35.2865943908692],[138.97865295410168,35.26048660278326],[138.97889709472656,35.232170104980526],[138.9909667968751,35.19748687744152],[139.0264587402346,35.174823760986385],[139.03291320800804,35.146541595458984],[139.10986328125,35.137855529785156],[139.0766296386721,35.09782409667969],[139.0741119384768,35.04731750488287],[139.10110473632824,35.0447235107423],[139.09425354003918,34.97787094116222],[139.124725341797,34.97138977050787],[139.1483306884768,34.93611145019537],[139.1316680908203,34.878887176513786],[139.10360717773472,34.869998931884766],[139.07749938964844,34.84222412109375],[139.0786132812501,34.819999694824276],[139.05917358398472,34.78527832031256],[139.03111267089855,34.767776489257926],[139.00079345703136,34.73771667480469],[138.98001098632847,34.70911788940441],[138.97227478027355,34.67417907714844],[138.97755432128906,34.653228759765625],[138.93969726562545,34.66117095947277],[138.92083740234386,34.65482330322271],[138.90972900390648,34.632221221923885],[138.84944152832043,34.61000061035162],[138.82562255859398,34.606571197509766],[138.8092498779298,34.62821960449219],[138.77114868164074,34.6492805480957],[138.7757568359375,34.676731109619084],[138.73919677734386,34.70497131347662],[138.75453186035168,34.74609375],[138.7765045166019,34.75693893432623],[138.75584411621105,34.797760009765625],[138.75959777832054,34.84225082397472],[138.75674438476574,34.88613128662115],[138.7895050048828,34.911193847656364],[138.76760864257835,34.94884490966797],[138.76394653320312,34.97360229492182],[138.7794799804692,35.00240325927729],[138.78341674804687,35.02559280395508],[138.8287048339845,35.02352523803711],[138.84573364257847,35.014247894287166],[138.87290954589866,35.02484893798834],[138.89143371582054,35.017539978027344],[138.89015197753918,35.05067443847656],[138.86029052734375,35.07387161254883],[138.8410797119143,35.09858322143566],[138.7930603027345,35.12152099609381],[138.73951721191406,35.13359832763683],[138.6817016601566,35.132194519043026],[138.63238525390636,35.11590957641607],[138.57978820800827,35.111625671386776],[138.5593414306643,35.10171508789068],[138.54600524902366,35.07457351684582],[138.51634216308628,35.03915786743164],[138.50044250488327,35.02981948852539],[138.53314208984375,35.01282501220709],[138.52151489257812,34.98930358886719],[138.46513366699241,34.95736312866211],[138.40730285644554,34.93905258178711],[138.3545074462893,34.91151428222662],[138.32473754882835,34.8611679077149],[138.33888244628952,34.8338890075683],[138.30450439453148,34.786437988281364],[138.30101013183594,34.77250289916992],[138.23255920410156,34.73245620727539],[138.1947021484376,34.66486740112316],[138.19515991210937,34.63513946533209],[138.23358154296898,34.6007919311524],[138.19259643554733,34.600734710693416],[138.07414245605514,34.64428710937506],[138.01568603515625,34.65896606445318],[137.94921875000045,34.66748046874994],[137.91416931152355,34.66766357421869],[137.80000305175804,34.647220611572266],[137.72056579589855,34.66352844238281],[137.65940856933594,34.67292022705084],[137.60383605957043,34.67601776123058],[137.6138610839845,34.70831298828125],[137.62931823730491,34.72911071777344],[137.60694885253906,34.738506317138786],[137.6050262451172,34.712902069091854],[137.58340454101574,34.71064758300781],[137.59138488769554,34.73972320556652],[137.62414550781273,34.77743530273443],[137.6240692138673,34.800971984863395],[137.5843200683596,34.78520202636719],[137.54916381835937,34.799720764160156],[137.54182434082043,34.769668579101676],[137.5234985351567,34.763210296630916],[137.58459472656284,34.680065155029354],[137.4883270263672,34.674873352050895],[137.4935760498047,34.69154739379894],[137.4781494140626,34.750007629394645],[137.4801025390625,34.77186203002941],[137.49624633789062,34.78318023681646],[137.49252319335937,34.80369186401373],[137.50971984863293,34.831317901611385],[137.56834411621094,34.848819732666016],[137.5898590087893,34.84662246704113],[137.5994873046875,34.86536407470709],[137.64163208007847,34.887573242187614],[137.65962219238304,34.936870574951286],[137.678466796875,34.94213104248041],[137.70658874511741,34.96815490722662],[137.707977294922,35.0124626159668],[137.74111938476608,35.050785064697266],[137.76841735839855,35.06940078735363],[137.78224182128906,35.0957870483399],[137.80589294433594,35.1057014465332],[137.80177307128952,35.125457763671875],[137.81881713867222,35.13579559326172],[137.82763671875,35.159198760986385],[137.80491638183594,35.17028045654297],[137.82283020019565,35.1933326721192],[137.82078552246094,35.211280822753906],[137.86323547363293,35.21957778930664],[137.87498474121116,35.21552658081066],[137.89833068847668,35.25456237792963],[137.92434692382812,35.25474929809576],[137.9451141357422,35.272651672363395],[137.999969482422,35.2992782592774],[138.0218048095703,35.29792404174816],[138.0450439453125,35.331604003906364],[138.14501953125,35.367710113525504],[138.15396118164062,35.38666534423834],[138.1417694091797,35.41669082641607],[138.12496948242187,35.425323486328125],[138.12496948242187,35.453144073486385],[138.15597534179733,35.455810546875],[138.16322326660202,35.48524093627941],[138.14294433593773,35.49961471557617],[138.14138793945312,35.51822662353521],[138.1622772216798,35.541637420654354],[138.14540100097656,35.55226516723633],[138.1739959716797,35.579246520996094],[138.1919860839846,35.573425292968864],[138.20674133300793,35.6024055480957],[138.2059020996095,35.62284088134777],[138.22161865234386,35.64126205444347],[138.24551391601562,35.59304046630865],[138.25039672851574,35.55713653564459],[138.26065063476585,35.55076980590826],[138.269500732422,35.509429931640625],[138.2502899169922,35.44621658325195],[138.26216125488304,35.427677154541016],[138.25816345214855,35.40248489379883],[138.23860168457043,35.377475738525504],[138.25782775878952,35.344642639160156],[138.2599334716798,35.31491851806646],[138.28941345214844,35.30231094360363],[138.32820129394577,35.32415008544933],[138.3667449951173,35.30880737304693],[138.3753356933595,35.26166152954113],[138.39202880859375,35.23418045043951],[138.4017333984375,35.19705200195318],[138.41346740722702,35.198966979980526],[138.43687438964866,35.17629623413086],[138.49935913085972,35.17125320434582],[138.52569580078125,35.19570922851568],[138.53535461425793,35.22055816650402],[138.51834106445335,35.25843048095703],[138.52371215820358,35.278057098388786],[138.51567077636741,35.30799102783203],[138.53788757324253,35.333351135253906],[138.5313720703126,35.375862121581974],[138.53515625000045,35.40474319458019],[138.585174560547,35.44249725341797],[138.60086059570312,35.42844009399414],[138.61450195312545,35.39011001586914],[138.6666259765626,35.39506912231445],[138.68919372558594,35.354789733886776],[138.77241516113304,35.37019729614269],[138.83126831054687,35.374423980713004],[138.85041809082054,35.38566970825207],[138.88597106933605,35.382522583007926],[138.91955566406284,35.39873123168951]]]]},"properties":{"ID_0":114,"ISO":"JP-22","NAME_0":"Japan","ID_1":38,"NAME_1":"Shizuoka","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"静岡県","VARNAME_1":"Sizuoka"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.2607116699221,36.93367385864269],[140.25169372558594,36.918281555175895],[140.2561187744143,36.852653503418026],[140.27012634277355,36.8122940063476],[140.25808715820312,36.77003860473627],[140.26248168945324,36.74993896484375],[140.2881774902346,36.72815322875982],[140.28567504882824,36.705448150634766],[140.23757934570312,36.69681167602539],[140.2233886718751,36.68115615844721],[140.24382019043003,36.64105987548828],[140.2393798828126,36.63115692138672],[140.25215148925793,36.60128784179699],[140.24800109863293,36.574314117431754],[140.25328063964866,36.527282714843864],[140.24473571777344,36.49994659423834],[140.20660400390636,36.4513206481933],[140.20555114746116,36.416610717773494],[140.18841552734398,36.39510345458996],[140.1617431640626,36.394901275634766],[140.14749145507824,36.410873413085994],[140.124969482422,36.409973144531364],[140.11437988281273,36.39509963989258],[140.06974792480491,36.40066909790045],[140.06712341308616,36.37917709350597],[140.0197296142578,36.37321853637701],[140.0024871826173,36.36560440063482],[139.97476196289085,36.37082672119146],[139.9595642089845,36.34690093994135],[139.91735839843773,36.3331680297851],[139.91130065918014,36.29738235473644],[139.88002014160202,36.310680389404354],[139.85371398925793,36.308456420898494],[139.8398895263672,36.29242706298834],[139.84126281738293,36.26994705200195],[139.82571411132824,36.23891067504883],[139.76342773437523,36.216106414795036],[139.7421264648442,36.20335769653332],[139.7052917480471,36.20071792602539],[139.6624755859375,36.21761703491222],[139.66114807128906,36.22826385498041],[139.6221618652345,36.27159500122082],[139.607879638672,36.265213012695426],[139.5655517578126,36.263938903808594],[139.52944946289108,36.28145599365246],[139.4786376953125,36.26980972290039],[139.42205810546898,36.30975723266613],[139.42416381835983,36.3332977294923],[139.3975830078125,36.34402847290045],[139.37063598632847,36.36556243896496],[139.36859130859375,36.3870201110841],[139.4151611328126,36.451347351074276],[139.44058227539074,36.46828460693365],[139.42353820800804,36.4995956420899],[139.4605255126953,36.5501327514649],[139.4856567382816,36.575309753418026],[139.46801757812523,36.60305023193354],[139.40599060058616,36.600360870361385],[139.354217529297,36.61342239379894],[139.33132934570324,36.63059234619146],[139.3404388427739,36.686687469482365],[139.37043762207043,36.722770690918026],[139.3562622070317,36.770534515380916],[139.3800964355471,36.788307189941406],[139.40797424316418,36.82814025878906],[139.355926513672,36.84595489501959],[139.3854980468751,36.908824920654354],[139.43338012695324,36.92647171020508],[139.4691314697268,36.96803665161133],[139.49996948242187,36.96526336669916],[139.5747833251953,36.998157501220646],[139.58447265625,37.00814056396496],[139.61643981933605,37.01175308227539],[139.62811279296886,37.02950668334961],[139.66815185546886,37.03735733032232],[139.6814880371095,37.05438232421875],[139.72166442871116,37.06639862060547],[139.75714111328148,37.07056427001953],[139.7854461669922,37.08670806884777],[139.82330322265625,37.08966827392578],[139.8196563720703,37.110809326171875],[139.83267211914085,37.12653350830084],[139.8695526123048,37.14415359497076],[139.9537048339845,37.1512184143067],[139.98939514160156,37.140785217285156],[140.04510498046875,37.13427734375],[140.0630340576172,37.122360229492244],[140.10585021972702,37.11800765991211],[140.14573669433605,37.09857559204107],[140.158203125,37.08142852783203],[140.19752502441406,37.05889129638683],[140.20213317871105,37.027866363525504],[140.2197875976566,37.01720428466797],[140.252166748047,37.02285003662121],[140.24415588378918,36.995105743408146],[140.24996948242187,36.955253601074276],[140.2607116699221,36.93367385864269]]]},"properties":{"ID_0":114,"ISO":"JP-09","NAME_0":"Japan","ID_1":39,"NAME_1":"Tochigi","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"栃木県","VARNAME_1":"Totigi"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.3055572509768,33.548034667968864],[134.2784423828125,33.55681610107433],[134.25825500488304,33.549934387207145],[134.2134704589846,33.56263732910162],[134.19847106933605,33.557411193847656],[134.18797302246105,33.582977294921875],[134.15879821777355,33.608089447021484],[134.15396118164085,33.628116607666016],[134.17803955078136,33.65086746215826],[134.16648864746094,33.6849250793457],[134.12637329101574,33.692634582519474],[134.06648254394543,33.687263488769645],[134.07060241699241,33.72674942016607],[134.0594177246095,33.74995803833008],[134.0615234375001,33.77186965942394],[134.03607177734398,33.80608367919933],[134.0357666015626,33.825237274170036],[134.00000000000023,33.817855834960994],[133.98721313476585,33.837520599365234],[133.95790100097702,33.8275985717774],[133.9459228515626,33.79769515991211],[133.9040069580078,33.79069137573248],[133.87500000000034,33.802799224853516],[133.84202575683594,33.8409042358399],[133.82072448730491,33.83405303955084],[133.7819366455078,33.838756561279354],[133.75022888183605,33.8335914611817],[133.73356628417991,33.847576141357536],[133.70092773437523,33.848464965820256],[133.66537475585972,33.86815643310547],[133.66322326660168,33.87840652465826],[133.68064880371094,33.890754699707145],[133.69183349609386,33.91662979125988],[133.6919403076172,33.96074295043945],[133.67803955078148,33.98146438598644],[133.69282531738293,34.010021209716854],[133.72419738769554,34.0192489624024],[133.73143005371094,34.040908813476506],[133.78211975097656,34.07659149169922],[133.8013153076173,34.06629180908203],[133.82176208496105,34.07299041748047],[133.82585144042991,34.089633941650504],[133.86468505859386,34.102043151855526],[133.90289306640625,34.09792327880871],[133.93482971191418,34.112552642822266],[133.95413208007824,34.08681869506836],[133.97830200195358,34.07156753540039],[134.0023651123047,34.07163619995123],[134.02978515625023,34.083290100097656],[134.0526123046875,34.11413955688482],[134.1250000000001,34.1156959533692],[134.14141845703136,34.130130767822266],[134.13841247558594,34.14789199829107],[134.17608642578148,34.1724472045899],[134.19303894042991,34.169643402099666],[134.26258850097656,34.18008422851568],[134.29969787597702,34.16662979125982],[134.3453521728519,34.169246673583984],[134.35960388183605,34.181831359863395],[134.39656066894554,34.16027069091808],[134.43618774414062,34.1666259765625],[134.44433593750034,34.20716857910162],[134.47421264648483,34.20977783203125],[134.49624633789062,34.22433853149414],[134.5397186279297,34.22666549682623],[134.55964660644554,34.22181320190441],[134.58708190917991,34.24022674560541],[134.58721923828125,34.20083236694347],[134.6398162841798,34.17514801025402],[134.61805725097656,34.14500045776367],[134.59861755371105,34.101943969726506],[134.60417175293003,34.085613250732536],[134.58898925781273,34.05567932128912],[134.5881500244144,34.02991104125988],[134.59750366210972,34.0013885498048],[134.63217163085937,33.99354934692383],[134.64111328125045,34.00694274902355],[134.6698455810547,33.961475372314396],[134.69750976562523,33.94992828369135],[134.69931030273437,33.90653228759771],[134.65196228027366,33.870079040527344],[134.6461944580078,33.85013961791992],[134.69320678710937,33.854282379150334],[134.7259063720703,33.8348007202149],[134.7291259765625,33.82301330566412],[134.66542053222656,33.799716949463004],[134.64114379882824,33.785549163818416],[134.6227264404297,33.78570556640619],[134.57810974121116,33.760864257812614],[134.56808471679687,33.73455047607433],[134.5432891845703,33.736366271972656],[134.5435333251953,33.718933105468864],[134.5096588134768,33.69782638549816],[134.46690368652344,33.68020629882824],[134.4387664794922,33.66261291503912],[134.40461730957043,33.65922927856451],[134.3858642578126,33.64090347290039],[134.38267517089855,33.61392974853521],[134.36282348632858,33.59818649291992],[134.363250732422,33.58087921142578],[134.32856750488315,33.5819206237793],[134.3097839355471,33.573638916015625],[134.3055572509768,33.548034667968864]]],[[[134.60667419433594,34.251667022705135],[134.618896484375,34.231388092041016],[134.6088867187501,34.21555709838867],[134.58778381347656,34.231388092041016],[134.60667419433594,34.251667022705135]]]]},"properties":{"ID_0":114,"ISO":"JP-36","NAME_0":"Japan","ID_1":40,"NAME_1":"Tokushima","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"徳島県","VARNAME_1":"Tokusima"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[139.75698852539085,35.61753082275385],[139.78631591796898,35.58031845092779],[139.75527954101608,35.576667785644645],[139.7483367919922,35.59231185913086],[139.75698852539085,35.61753082275385]]],[[[139.87496948242187,35.794319152832145],[139.89244079589855,35.78129959106445],[139.8948669433596,35.74654769897472],[139.9167938232423,35.724655151367244],[139.9295806884768,35.700786590576115],[139.9308624267578,35.6977424621582],[139.93101501464878,35.69740676879883],[139.9473114013673,35.669204711914176],[139.91896057128906,35.655895233154354],[139.93885803222656,35.64126586914068],[139.897430419922,35.61644363403332],[139.84947204589866,35.642913818359375],[139.82115173339878,35.63163375854498],[139.80627441406284,35.63677597045904],[139.7932281494143,35.6140594482423],[139.7675018310548,35.6602783203125],[139.75326538085937,35.63547897338873],[139.74707031250023,35.589744567871094],[139.7561492919922,35.568920135498104],[139.7856903076172,35.5600471496582],[139.7745056152345,35.53876495361328],[139.7705993652345,35.54064559936529],[139.73190307617187,35.540832519531364],[139.68307495117187,35.559162139892635],[139.66658020019554,35.58684158325201],[139.6240386962893,35.609237670898494],[139.57740783691406,35.6196022033692],[139.56597900390625,35.631252288818416],[139.53062438964844,35.63951873779297],[139.49212646484386,35.60189056396479],[139.46719360351562,35.62122726440441],[139.45591735839844,35.61154937744146],[139.49610900878918,35.585800170898494],[139.48423767089866,35.542823791503906],[139.48658752441418,35.501907348632926],[139.47128295898483,35.50086212158203],[139.4570465087894,35.52832794189453],[139.40266418457043,35.5793342590332],[139.3702850341797,35.59374618530285],[139.31126403808605,35.6015357971192],[139.29238891601574,35.60872268676758],[139.26011657714866,35.6007461547851],[139.23915100097702,35.607078552246094],[139.21862792968784,35.64294815063488],[139.17512512207043,35.647132873535156],[139.16413879394554,35.664623260498104],[139.13351440429687,35.670005798339844],[139.1059722900393,35.688316345214844],[139.0746307373047,35.69329071044922],[139.0269012451173,35.71787643432623],[138.9934997558595,35.75813293457031],[138.9738769531251,35.80093002319336],[138.9729766845703,35.821449279785156],[138.9469757080078,35.85183715820318],[138.95646667480491,35.87018966674805],[138.99996948242233,35.88115310668951],[139.0266265869143,35.894138336181754],[139.0531005859375,35.8755836486817],[139.11468505859375,35.86156082153332],[139.146484375,35.86007690429693],[139.19868469238304,35.83690261840826],[139.26420593261753,35.83332443237316],[139.28506469726585,35.83610534667963],[139.318328857422,35.82181167602545],[139.32618713378918,35.79509735107416],[139.36576843261741,35.788673400878906],[139.39250183105514,35.76379776000982],[139.45617675781273,35.7653045654298],[139.52925109863304,35.78868484497082],[139.5507965087893,35.76011276245117],[139.56600952148437,35.75846481323248],[139.5973052978518,35.775482177734375],[139.624969482422,35.7635955810548],[139.64341735839844,35.791717529296875],[139.69105529785168,35.798175811767635],[139.7494659423828,35.78357696533209],[139.7586822509768,35.809040069580135],[139.7928924560548,35.80273056030279],[139.8193511962893,35.80853652954113],[139.8278961181643,35.791343688964844],[139.87496948242187,35.794319152832145]]]]},"properties":{"ID_0":114,"ISO":"JP-13","NAME_0":"Japan","ID_1":41,"NAME_1":"Tokyo","TYPE_1":"To","ENGTYPE_1":"Metropolis","NL_NAME_1":"東京都","VARNAME_1":"Edo|Yedo|Tokio|T¢quio"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[134.40568542480491,35.23768234252924],[134.37541198730514,35.241489410400334],[134.36534118652355,35.22620010375988],[134.3194732666018,35.19908905029297],[134.28433227539062,35.19372177124029],[134.26762390136741,35.205245971679744],[134.19636535644543,35.18108367919933],[134.18179321289085,35.16662979125982],[134.15567016601585,35.19264602661144],[134.1602783203126,35.23130416870123],[134.1402282714846,35.23510742187494],[134.1464996337893,35.26047515869135],[134.10031127929687,35.30239105224621],[134.0528106689453,35.295433044433594],[134.00294494628918,35.31113052368164],[134.01368713378906,35.337287902832145],[134.00000000000023,35.349750518798885],[133.93460083007835,35.33033370971691],[133.93313598632824,35.31042098999029],[133.87429809570335,35.28993606567377],[133.86421203613304,35.267276763916016],[133.83071899414074,35.246444702148494],[133.804443359375,35.28421783447271],[133.75000000000045,35.315040588378906],[133.70579528808605,35.32136917114269],[133.68540954589878,35.315635681152344],[133.64122009277366,35.3360328674317],[133.5991668701173,35.341682434082145],[133.57868957519554,35.30291748046881],[133.57388305664062,35.27153396606451],[133.55967712402355,35.24074172973633],[133.51116943359398,35.230205535888786],[133.5218048095703,35.210338592529354],[133.51098632812523,35.18930816650402],[133.4497985839845,35.168884277343864],[133.41046142578148,35.18264770507807],[133.3965759277345,35.166637420654354],[133.41343688964844,35.117191314697266],[133.3396453857422,35.10195922851574],[133.32179260253952,35.090793609619254],[133.29310607910156,35.094135284423885],[133.2902832031251,35.06518936157232],[133.2721405029297,35.05456924438471],[133.25102233886741,35.075439453125114],[133.1715850830078,35.064575195312614],[133.14395141601562,35.07317352294916],[133.1397247314453,35.086753845214844],[133.15240478515648,35.13755035400396],[133.1974639892578,35.16662979125982],[133.1769714355471,35.202022552490234],[133.1542510986328,35.21274948120117],[133.18280029296886,35.230381011963004],[133.2621307373048,35.257926940918026],[133.30444335937545,35.260086059570256],[133.29771423339866,35.33779525756847],[133.31912231445358,35.36369323730469],[133.31785583496128,35.388702392578125],[133.32716369628906,35.46498489379894],[133.39321899414062,35.453350067138786],[133.42507934570312,35.459720611572266],[133.44607543945312,35.494087219238395],[133.47137451171886,35.498474121093864],[133.49534606933616,35.51430892944336],[133.59004211425815,35.53173446655285],[133.66940307617187,35.5064582824707],[133.75576782226574,35.50047683715832],[133.8021240234376,35.50070953369146],[133.91357421875,35.50833892822271],[133.96263122558616,35.52318191528332],[134.06478881835937,35.519309997558594],[134.14314270019543,35.529193878173885],[134.2213897705078,35.54388809204107],[134.27221679687523,35.56055450439453],[134.29388427734375,35.5891685485841],[134.32417297363315,35.59027862548828],[134.36936950683605,35.61295700073248],[134.40451049804687,35.59152984619152],[134.41046142578148,35.56204605102545],[134.42811584472668,35.53837585449213],[134.4177703857423,35.51750564575195],[134.4312896728518,35.50223922729492],[134.4428253173828,35.43973159790039],[134.48008728027355,35.425697326660156],[134.47956848144543,35.37151336669922],[134.5000000000001,35.36411285400396],[134.5125732421876,35.3408203125],[134.50491333007835,35.32315444946289],[134.51574707031273,35.30602264404308],[134.51828002929733,35.27470779418945],[134.4838104248048,35.25026321411127],[134.4351501464845,35.22681427001959],[134.40568542480491,35.23768234252924]]]},"properties":{"ID_0":114,"ISO":"JP-31","NAME_0":"Japan","ID_1":42,"NAME_1":"Tottori","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"鳥取県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[137.6377868652345,36.980369567871094],[137.66442871093773,36.95405960083019],[137.72021484375034,36.9271812438966],[137.7162322998047,36.88866043090832],[137.73092651367187,36.873477935791016],[137.7358551025394,36.83267593383795],[137.75727844238304,36.79244232177746],[137.7658233642578,36.764152526855526],[137.7570953369143,36.75129699707031],[137.7546539306643,36.71883392333979],[137.76409912109375,36.6665992736817],[137.74998474121094,36.62139129638672],[137.74998474121094,36.584098815918026],[137.7262725830078,36.58280563354492],[137.69592285156295,36.56450271606451],[137.68948364257824,36.54301834106457],[137.7068328857423,36.514640808105526],[137.67637634277344,36.50769424438482],[137.65612792968784,36.48602676391613],[137.65754699707054,36.45518493652355],[137.63583374023483,36.421810150146484],[137.60787963867187,36.40900421142584],[137.59019470214866,36.38660049438482],[137.54287719726562,36.389430999755916],[137.49998474121116,36.42309188842768],[137.47763061523437,36.422252655029354],[137.46388244628906,36.40946578979498],[137.40684509277344,36.42385101318365],[137.39254760742187,36.45558547973633],[137.36904907226574,36.447685241699276],[137.35592651367187,36.43162918090832],[137.31317138671886,36.424507141113395],[137.3196258544922,36.45330047607433],[137.28144836425827,36.46258544921881],[137.2070465087893,36.43434906005865],[137.19453430175793,36.452163696289176],[137.14712524414085,36.4423713684082],[137.1262969970703,36.416606903076115],[137.06117248535168,36.368598937988395],[137.05505371093795,36.33328247070318],[137.0306091308596,36.314125061035156],[137.0108032226567,36.287277221679744],[136.97817993164108,36.271400451660156],[136.96080017089866,36.274520874023494],[136.9739685058596,36.30466461181646],[136.95663452148483,36.33609771728521],[136.91006469726585,36.357360839843864],[136.89219665527355,36.34243011474615],[136.8792724609375,36.36667251586914],[136.843994140625,36.33327484130865],[136.82582092285168,36.3001441955567],[136.796142578125,36.29692077636713],[136.7888946533203,36.33328247070318],[136.80511474609375,36.35071182250982],[136.7983398437501,36.39534759521479],[136.7833709716797,36.40958404541021],[136.7821502685548,36.42802429199219],[136.80206298828125,36.47758865356457],[136.79937744140625,36.50866317749029],[136.81993103027355,36.54912185668957],[136.7969207763672,36.5728645324707],[136.78739929199241,36.618938446045036],[136.82615661621116,36.66929626464844],[136.81605529785202,36.69994354248041],[136.7964019775393,36.721076965332145],[136.82266235351562,36.727886199951115],[136.85046386718784,36.75432205200201],[136.85408020019565,36.81293869018566],[136.866424560547,36.85458755493164],[136.8846435546875,36.871768951416016],[136.88099670410156,36.896728515625114],[136.89807128906295,36.91938018798834],[136.93029785156273,36.943931579589844],[136.95220947265648,36.9524879455567],[136.97346496582043,36.944648742675895],[136.98890686035168,36.963134765625114],[137.0520782470703,36.958995819091854],[137.0279235839845,36.939708709716854],[137.03369140625045,36.92395401000988],[136.98388671875023,36.86888885498058],[137.01220703125034,36.83275985717785],[137.06777954101585,36.793056488037166],[137.13694763183628,36.775833129882926],[137.1558380126953,36.76305389404308],[137.1893920898441,36.75690460205084],[137.2292480468751,36.764614105224666],[137.29183959960937,36.758049011230526],[137.33453369140636,36.76332092285156],[137.34513854980491,36.778404235839844],[137.39305114746105,36.807777404785156],[137.39199829101562,36.82110977172863],[137.4102783203125,36.847412109375],[137.41888427734375,36.88082504272472],[137.40953063964844,36.8984489440918],[137.42582702636741,36.92494583129883],[137.4892578125,36.95376968383789],[137.51197814941406,36.95970916748058],[137.57472229003906,36.96444320678711],[137.5876922607422,36.975444793701286],[137.6377868652345,36.980369567871094]]]},"properties":{"ID_0":114,"ISO":"JP-16","NAME_0":"Japan","ID_1":43,"NAME_1":"Toyama","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"富山県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[135.8132476806644,33.4804306030274],[135.85762023925827,33.470138549804744],[135.82962036132824,33.44941329956055],[135.8132476806644,33.4804306030274]]],[[[135.6457977294922,34.380386352539176],[135.6663513183595,34.35159683227545],[135.6634979248048,34.32386779785162],[135.6819458007817,34.27092361450201],[135.70394897460972,34.27208328247076],[135.72158813476585,34.258308410644645],[135.73223876953125,34.23066329956055],[135.71247863769543,34.205543518066406],[135.67144775390648,34.22117233276373],[135.63719177246128,34.20101547241222],[135.64422607421886,34.17962646484375],[135.625,34.15546798706055],[135.59033203125,34.13978958129894],[135.5832977294923,34.119270324707145],[135.54922485351562,34.09439849853521],[135.5427703857423,34.07150268554693],[135.5824432373048,34.05498123168945],[135.60081481933594,34.03093719482433],[135.5975036621095,34.00874710083019],[135.62719726562523,33.999961853027344],[135.64245605468773,33.96722412109381],[135.6240386962894,33.949790954589844],[135.6052398681643,33.90123748779308],[135.62425231933594,33.89548492431646],[135.63514709472656,33.87120819091797],[135.6594696044922,33.8809928894043],[135.6739196777346,33.89703369140631],[135.72726440429687,33.89971160888683],[135.7605438232423,33.882423400878906],[135.8049316406251,33.8920516967774],[135.81907653808616,33.90210342407238],[135.8387298583989,33.892276763916016],[135.86241149902344,33.89688110351574],[135.8559722900394,33.874061584472656],[135.86296081543014,33.84219741821295],[135.85897827148437,33.81584548950201],[135.8875579833989,33.79807281494152],[135.9098358154298,33.76360321044922],[135.93458557128906,33.75096893310558],[135.95869445800804,33.725151062011776],[135.97894287109386,33.73400497436529],[136.0102996826172,33.72195816040039],[135.97402954101597,33.67814636230469],[135.9713897705078,33.65444564819336],[135.9378204345703,33.64445877075207],[135.94538879394543,33.603778839111385],[135.9598846435548,33.58184814453125],[135.9229278564453,33.57616806030285],[135.911865234375,33.54909515380865],[135.8567657470703,33.522926330566406],[135.8255310058595,33.51454162597656],[135.7984161376953,33.49839019775396],[135.7765045166018,33.46121597290039],[135.7591552734376,33.48433685302746],[135.7227783203126,33.47782135009777],[135.70155334472668,33.49013137817394],[135.67449951171898,33.48991012573248],[135.63484191894577,33.50698471069336],[135.59036254882835,33.50564956665039],[135.57481384277355,33.51554107666021],[135.5183563232423,33.52155303955078],[135.49345397949241,33.54856491088867],[135.4469146728518,33.549575805664006],[135.44937133789062,33.560440063476676],[135.408935546875,33.5764045715332],[135.38812255859375,33.59952163696289],[135.39581298828148,33.63788223266607],[135.38235473632824,33.65081024169933],[135.3429412841797,33.65909194946295],[135.3308715820316,33.672080993652344],[135.35617065429733,33.69127273559576],[135.3943023681643,33.70257949829107],[135.37893676757847,33.72546005249029],[135.35121154785202,33.7477760314942],[135.33097839355491,33.743988037109375],[135.3229217529297,33.7639274597168],[135.30081176757835,33.76586151123058],[135.27125549316418,33.782760620117244],[135.23432922363293,33.7823753356933],[135.23576354980491,33.799461364746094],[135.187957763672,33.817394256591854],[135.17430114746094,33.831489562988224],[135.15306091308605,33.87725067138683],[135.11399841308605,33.893341064453125],[135.10032653808594,33.888149261474666],[135.0645751953126,33.89259719848644],[135.0832214355471,33.91145706176769],[135.07597351074241,33.93461990356445],[135.0914764404298,33.99148941040045],[135.137420654297,34.00079345703131],[135.16171264648437,34.045837402343864],[135.1363525390625,34.06410980224615],[135.08845520019565,34.066570281982365],[135.09748840332054,34.09359359741222],[135.13261413574241,34.138561248779354],[135.1695556640625,34.13371658325195],[135.18679809570358,34.15547180175787],[135.1783599853518,34.179851531982536],[135.15443420410168,34.183517456054744],[135.1441650390625,34.21916580200195],[135.11753845214866,34.2460823059082],[135.09024047851585,34.26142883300781],[135.07446289062545,34.28160095214855],[135.07606506347656,34.30710983276367],[135.0925445556643,34.31139373779297],[135.113006591797,34.27054595947277],[135.13494873046875,34.26906967163097],[135.15155029296886,34.27977371215832],[135.1875610351567,34.27682495117199],[135.20668029785168,34.284774780273494],[135.21081542968773,34.30500793457037],[135.23196411132824,34.2987174987793],[135.25000000000034,34.30998992919933],[135.28533935546875,34.31450271606457],[135.33247375488304,34.31380844116211],[135.34144592285168,34.33196640014654],[135.38624572753906,34.32601547241211],[135.43707275390625,34.3449440002442],[135.46597290039062,34.34497451782232],[135.48814392089866,34.359443664550724],[135.51930236816418,34.33884429931635],[135.5801239013672,34.37269210815424],[135.6457977294922,34.380386352539176]]]]},"properties":{"ID_0":114,"ISO":"JP-30","NAME_0":"Japan","ID_1":44,"NAME_1":"Wakayama","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"和歌山県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.55451965332043,38.87886428833008],[140.54302978515636,38.864845275878906],[140.58953857421898,38.833614349365234],[140.60278320312534,38.81570053100586],[140.60639953613293,38.7823104858399],[140.64843750000023,38.76451492309582],[140.6140136718751,38.72075653076183],[140.62493896484375,38.69730377197277],[140.6202087402346,38.66805648803711],[140.6032257080078,38.63643264770508],[140.54579162597656,38.62644195556646],[140.57542419433616,38.583282470703125],[140.5769653320317,38.56196212768566],[140.5579071044923,38.536159515380916],[140.5723114013672,38.52005767822271],[140.57135009765625,38.49995040893566],[140.60163879394565,38.48420715332037],[140.62303161621094,38.45232772827143],[140.58486938476562,38.429431915283146],[140.58050537109375,38.39228439331055],[140.56539916992222,38.37430572509771],[140.5310516357423,38.35584259033209],[140.53334045410168,38.32268142700195],[140.49592590332043,38.29082489013683],[140.4798278808596,38.269737243652344],[140.4715270996095,38.22903823852539],[140.4835052490239,38.179985046386776],[140.4481201171875,38.128192901611385],[140.42718505859398,38.11666870117199],[140.41773986816418,38.07566070556652],[140.3675384521489,38.05357360839855],[140.2803649902346,38.053092956543026],[140.27900695800804,38.032871246338004],[140.29214477539085,38.004707336425895],[140.2832946777345,37.97368240356451],[140.27525329589844,37.96472549438482],[140.2821807861328,37.93155288696295],[140.2678985595703,37.904975891113395],[140.2729492187501,37.86219406127924],[140.27015686035156,37.82425308227539],[140.29791259765648,37.80788040161133],[140.2808380126953,37.782367706298885],[140.2303009033203,37.74310302734375],[140.16433715820312,37.7535285949707],[140.12669372558605,37.730941772460994],[140.10482788085937,37.735694885253906],[140.0684661865239,37.76453399658209],[140.04389953613293,37.76721191406256],[139.9897613525394,37.75756072998058],[139.9632263183595,37.79307937622076],[139.96517944335937,37.803016662597656],[139.94055175781284,37.825088500976506],[139.92381286621094,37.81093597412121],[139.89184570312545,37.80791854858404],[139.86105346679687,37.82354354858404],[139.81341552734386,37.800300598144474],[139.7912750244143,37.824020385742244],[139.7413482666018,37.82018661499035],[139.718719482422,37.85126495361328],[139.6961669921876,37.84585189819336],[139.66285705566406,37.858745574951286],[139.63893127441452,37.88265228271496],[139.62959289550827,37.905231475830135],[139.64779663085937,37.96190261840832],[139.64262390136753,37.982513427734375],[139.6558990478518,38.000022888183594],[139.65928649902366,38.0324440002442],[139.69441223144554,38.0529403686524],[139.6765594482423,38.08336257934576],[139.69371032714855,38.11622619628912],[139.69392395019543,38.1483039855957],[139.68560791015648,38.168594360351676],[139.71182250976562,38.201534271240234],[139.7919921875,38.19277191162121],[139.8615875244144,38.22708511352539],[139.90209960937523,38.27999114990229],[139.90144348144543,38.290733337402344],[139.8429870605471,38.339939117431754],[139.81306457519554,38.35258102416992],[139.7924499511721,38.347202301025504],[139.7494659423828,38.359043121338004],[139.73098754882812,38.3825569152832],[139.70791625976562,38.39374542236334],[139.72323608398483,38.448360443115234],[139.71650695800804,38.467662811279354],[139.72901916503918,38.48375701904297],[139.70397949218795,38.50002670288086],[139.64161682128918,38.50833511352545],[139.624969482422,38.522327423095646],[139.60504150390636,38.51983642578131],[139.54963684082054,38.54642486572277],[139.54559326171875,38.56323242187494],[139.58528137207054,38.622501373291016],[139.61520385742187,38.674930572509766],[139.6902770996095,38.72360992431652],[139.70880126953136,38.7518692016601],[139.74620056152344,38.77495956420904],[139.7619323730471,38.80059814453131],[139.79130554199241,38.86709976196295],[139.80860900878906,38.9275016784668],[139.83778381347656,38.979721069335994],[139.87319946289074,39.07096099853527],[139.87901306152366,39.09617996215826],[139.86984252929687,39.11907958984375],[139.9864959716798,39.10553359985363],[140.01609802246094,39.12107467651367],[140.06578063964866,39.13072967529297],[140.0648651123048,39.11100006103527],[140.07611083984386,39.084316253662166],[140.10142517089855,39.08091735839844],[140.15249633789062,39.04930496215832],[140.205047607422,39.055763244628906],[140.20433044433605,39.03327941894537],[140.23736572265625,39.0246315002442],[140.25933837890648,39.02943038940441],[140.31797790527344,39.01633453369146],[140.33238220214844,39.03193283081066],[140.36610412597656,39.01147842407232],[140.3814697265626,38.99210357666021],[140.43536376953125,38.98892593383789],[140.4495849609375,38.97322463989252],[140.4532165527345,38.94290161132818],[140.4649200439453,38.91773986816412],[140.4862518310547,38.91291046142578],[140.50885009765648,38.8920631408692],[140.54209899902355,38.89656448364258],[140.55451965332043,38.87886428833008]]]},"properties":{"ID_0":114,"ISO":"JP-06","NAME_0":"Japan","ID_1":45,"NAME_1":"Yamagata","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"山形県","VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[131.9688873291018,33.79888916015625],[131.9915924072268,33.779273986816406],[131.9617919921875,33.76823806762707],[131.95204162597656,33.782508850097656],[131.9688873291018,33.79888916015625]]],[[[132.20957946777355,33.81702423095703],[132.2573089599614,33.78216934204113],[132.215545654297,33.78158187866222],[132.19155883789074,33.804119110107365],[132.20957946777355,33.81702423095703]]],[[[132.07679748535156,33.854045867920036],[132.10421752929722,33.842281341552734],[132.07572937011764,33.805850982666016],[132.05816650390648,33.81363677978521],[132.08096313476562,33.835380554199276],[132.07679748535156,33.854045867920036]]],[[[132.2474365234376,33.95927810668951],[132.2889556884768,33.94027709960943],[132.31761169433605,33.90586090087902],[132.35578918457065,33.907806396484375],[132.367889404297,33.92734909057617],[132.39256286621094,33.92532730102545],[132.42454528808616,33.95425415039068],[132.44357299804687,33.94237899780285],[132.4175720214845,33.91786956787121],[132.37617492675793,33.914073944091854],[132.36328125,33.8998908996582],[132.37069702148437,33.864902496338004],[132.34397888183594,33.865257263183594],[132.3212127685548,33.89296340942394],[132.29190063476597,33.89696884155285],[132.24209594726574,33.87409591674816],[132.22186279296886,33.87407302856457],[132.20832824707043,33.857273101806754],[132.1756286621095,33.90311431884771],[132.17745971679722,33.9307975769043],[132.2338867187501,33.96743392944336],[132.2474365234376,33.95927810668951]]],[[[131.86524963378906,33.980148315429744],[131.8600311279297,33.95443344116211],[131.83439636230491,33.93289947509777],[131.80499267578125,33.940834045410156],[131.84831237792991,33.95792007446295],[131.86524963378906,33.980148315429744]]],[[[132.22911071777355,34.16268539428722],[132.24848937988293,34.15739059448242],[132.23631286621116,34.13279724121105],[132.20401000976562,34.15587615966808],[132.22911071777355,34.16268539428722]]],[[[131.2482604980471,34.436824798583984],[131.22302246093784,34.423889160156364],[131.20391845703136,34.3978004455567],[131.1719512939453,34.40833282470703],[131.1854400634769,34.42359924316412],[131.21130371093773,34.42528152465832],[131.2482604980471,34.436824798583984]]],[[[131.68467712402355,34.6755104064942],[131.6999053955078,34.63565444946295],[131.70208740234386,34.613468170166016],[131.7195739746096,34.60321426391607],[131.7268676757817,34.568874359130916],[131.70520019531284,34.56216430664074],[131.70407104492187,34.52754592895519],[131.67076110839866,34.500827789306754],[131.69638061523437,34.46291351318365],[131.70149230957054,34.43163681030268],[131.72372436523437,34.425422668457145],[131.79640197753906,34.43328094482422],[131.78689575195335,34.39654541015631],[131.7692413330078,34.38165664672846],[131.77745056152355,34.33637237548828],[131.8215332031251,34.300235748291016],[131.836395263672,34.308006286621094],[131.87496948242187,34.30438613891613],[131.9026031494144,34.3158798217774],[131.9224090576173,34.3335800170899],[131.95758056640625,34.30719375610357],[132.01441955566406,34.37393569946295],[131.99249267578125,34.411506652831974],[132.01849365234398,34.43434906005871],[132.0245361328125,34.454704284668026],[132.06553649902344,34.47348022460949],[132.08059692382812,34.444988250732365],[132.07199096679687,34.41112518310541],[132.0797576904297,34.38362503051758],[132.07217407226597,34.352977752685604],[132.10160827636741,34.34314727783209],[132.131072998047,34.320945739746094],[132.12692260742187,34.29441833496094],[132.15245056152355,34.23270416259771],[132.18714904785168,34.224731445312614],[132.23435974121116,34.227500915527344],[132.24725341796886,34.20540237426769],[132.23451232910156,34.19640731811535],[132.24951171875,34.169826507568416],[132.21102905273472,34.15961837768566],[132.22320556640636,34.13824844360363],[132.20379638671875,34.12490463256847],[132.21080017089855,34.08502960205078],[132.20924377441452,34.06143951416021],[132.22105407714866,34.04817199707031],[132.21292114257824,34.00149154663097],[132.18626403808594,33.96205520629883],[132.12889099121116,33.9561119079591],[132.12542724609375,33.92761230468744],[132.1314849853519,33.882843017578125],[132.1482391357423,33.87355041503912],[132.1585083007817,33.8459091186524],[132.1379852294922,33.831676483154354],[132.12327575683605,33.834575653076286],[132.11257934570324,33.86080551147461],[132.1205444335942,33.87027740478521],[132.07623291015625,33.89376449584955],[132.05291748046875,33.916419982910156],[132.0257263183596,33.90140533447271],[131.96878051757824,33.934635162353516],[131.9575195312501,33.94957733154297],[131.9311218261721,33.949466705322266],[131.9152984619143,33.969924926757926],[131.88075256347668,33.98207092285162],[131.86805725097668,34],[131.8397369384768,34.011543273925724],[131.81878662109398,33.9931259155274],[131.8219757080078,33.97608947753906],[131.78919982910168,33.973571777343864],[131.78291320800804,33.99406814575207],[131.81762695312523,34.02381134033203],[131.81719970703125,34.03549194335943],[131.7852478027345,34.05314254760748],[131.752655029297,34.053298950195426],[131.74800109863293,34.062988281250114],[131.68147277832077,34.05438995361334],[131.66001892089844,34.04011154174805],[131.6354217529297,34.04690551757818],[131.60806274414074,34.023235321045036],[131.59959411621116,34.038856506347656],[131.56227111816452,34.00736999511719],[131.53890991210937,33.9974098205567],[131.50833129882824,34.00444412231445],[131.50180053710983,34.023418426513786],[131.46701049804687,34.03260421752941],[131.47384643554687,34.01049804687506],[131.45294189453148,33.995494842529354],[131.43341064453125,33.99814605712902],[131.42626953125045,34.0145149230957],[131.39459228515648,34.02767562866211],[131.34806823730514,33.98143005371094],[131.33735656738304,33.95515060424816],[131.3189697265625,33.95539474487305],[131.2689666748048,33.922798156738395],[131.20979309082077,33.94431686401367],[131.1772918701172,33.932304382324276],[131.15864562988304,33.953498840332145],[131.16702270507824,33.97901153564459],[131.14729309082065,33.99481582641613],[131.12156677246094,34.00345230102539],[131.09112548828148,34.037406921386776],[131.04821777343773,34.04230880737316],[131.0298767089846,34.03871536254877],[131.00498962402355,34.01499557495123],[130.99661254882847,33.99030685424805],[130.95640563964844,33.964897155761776],[130.92462158203148,33.93493652343756],[130.923553466797,33.914443969726676],[130.9023132324221,33.91431808471691],[130.89585876464855,33.9355087280274],[130.9165954589846,33.9757652282716],[130.90818786621116,33.99400711059576],[130.9165954589846,34.019466400146484],[130.9108428955078,34.06135559082031],[130.88243103027366,34.07406234741211],[130.86248779296875,34.10389709472656],[130.86724853515636,34.13665771484369],[130.89173889160156,34.13429260253912],[130.92877197265625,34.175266265869254],[130.9288787841798,34.212623596191406],[130.92137145996116,34.239921569824276],[130.86708068847668,34.28931045532238],[130.88467407226562,34.298519134521484],[130.89605712890625,34.32347488403332],[130.89050292968795,34.3464736938476],[130.9064636230471,34.36223220825195],[130.94857788085937,34.35273361206055],[131.03436279296886,34.38461303710932],[131.01676940918014,34.40094757080084],[130.99470520019565,34.39852905273449],[130.95291137695324,34.4052467346192],[130.97346496582077,34.43903350830078],[131.00439453125,34.426425933838004],[131.01940917968773,34.41077423095703],[131.04901123046886,34.41155242919922],[131.07110595703148,34.424446105957145],[131.1311950683596,34.41138839721691],[131.13760375976562,34.39009475708008],[131.15615844726585,34.37200164794933],[131.1878356933596,34.38062286376953],[131.2227630615239,34.37791442871105],[131.27471923828125,34.38999938964844],[131.29348754882835,34.381450653076286],[131.32557678222668,34.39263153076166],[131.3310089111328,34.41419219970703],[131.35537719726574,34.410182952880916],[131.397216796875,34.42054748535162],[131.41416931152344,34.4488906860351],[131.46267700195335,34.48692703247082],[131.45487976074264,34.51171112060547],[131.46485900878918,34.532848358154354],[131.49853515625023,34.53163528442383],[131.51593017578136,34.55347824096691],[131.5338287353518,34.55940246582037],[131.55500793457054,34.57983779907221],[131.5563964843751,34.61583328247082],[131.59388732910168,34.637779235839844],[131.59870910644543,34.65694808959961],[131.63417053222702,34.664268493652344],[131.64553833007812,34.652542114257926],[131.6713562011721,34.66083908081066],[131.68467712402355,34.6755104064942]]],[[[131.13624572753906,34.79197692871105],[131.16143798828125,34.77435684204113],[131.14276123046875,34.75729370117199],[131.13064575195324,34.768566131591854],[131.13624572753906,34.79197692871105]]]]},"properties":{"ID_0":114,"ISO":"JP-35","NAME_0":"Japan","ID_1":46,"NAME_1":"Yamaguchi","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"山口県","VARNAME_1":"Yamaguti"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[138.731689453125,35.90605926513683],[138.79124450683594,35.89065933227545],[138.79804992675815,35.87019729614258],[138.83473205566406,35.85976409912104],[138.85675048828136,35.862079620361385],[138.89193725585937,35.83996963500988],[138.9469757080078,35.85183715820318],[138.9729766845703,35.821449279785156],[138.9738769531251,35.80093002319336],[138.9934997558595,35.75813293457031],[139.0269012451173,35.71787643432623],[139.0746307373047,35.69329071044922],[139.1059722900393,35.688316345214844],[139.13351440429687,35.670005798339844],[139.12496948242222,35.65827178955084],[139.12936401367222,35.6197624206543],[139.13743591308616,35.6136589050293],[139.12496948242222,35.585193634033146],[139.13235473632824,35.56172180175787],[139.11521911621105,35.53281402587902],[139.09045410156284,35.5112190246582],[139.05415344238293,35.50724411010742],[139.03083801269554,35.48022842407232],[138.95855712890648,35.45714950561529],[138.94033813476597,35.44567871093744],[138.93334960937523,35.417503356933594],[138.91955566406284,35.39873123168951],[138.88597106933605,35.382522583007926],[138.85041809082054,35.38566970825207],[138.83126831054687,35.374423980713004],[138.77241516113304,35.37019729614269],[138.68919372558594,35.354789733886776],[138.6666259765626,35.39506912231445],[138.61450195312545,35.39011001586914],[138.60086059570312,35.42844009399414],[138.585174560547,35.44249725341797],[138.53515625000045,35.40474319458019],[138.5313720703126,35.375862121581974],[138.53788757324253,35.333351135253906],[138.51567077636741,35.30799102783203],[138.52371215820358,35.278057098388786],[138.51834106445335,35.25843048095703],[138.53535461425793,35.22055816650402],[138.52569580078125,35.19570922851568],[138.49935913085972,35.17125320434582],[138.43687438964866,35.17629623413086],[138.41346740722702,35.198966979980526],[138.4017333984375,35.19705200195318],[138.39202880859375,35.23418045043951],[138.3753356933595,35.26166152954113],[138.3667449951173,35.30880737304693],[138.32820129394577,35.32415008544933],[138.28941345214844,35.30231094360363],[138.2599334716798,35.31491851806646],[138.25782775878952,35.344642639160156],[138.23860168457043,35.377475738525504],[138.25816345214855,35.40248489379883],[138.26216125488304,35.427677154541016],[138.2502899169922,35.44621658325195],[138.269500732422,35.509429931640625],[138.26065063476585,35.55076980590826],[138.25039672851574,35.55713653564459],[138.24551391601562,35.59304046630865],[138.22161865234386,35.64126205444347],[138.19554138183594,35.67554092407232],[138.18473815917991,35.714542388916016],[138.23275756835937,35.75001525878912],[138.23529052734398,35.760375976562614],[138.19201660156295,35.78485870361328],[138.24008178710983,35.877082824707145],[138.2499694824221,35.882198333740234],[138.28671264648437,35.85640335083019],[138.3300018310547,35.901676177978516],[138.35375976562545,35.94321441650396],[138.37635803222656,35.96842193603527],[138.42988586425793,35.95469665527355],[138.456787109375,35.936679840088004],[138.44830322265625,35.916679382324276],[138.472625732422,35.89482879638683],[138.497314453125,35.8984489440918],[138.50845336914108,35.91538238525396],[138.53684997558616,35.912071228027344],[138.5975799560548,35.91420745849615],[138.61199951171898,35.89986038208019],[138.6139373779298,35.870460510253906],[138.67422485351562,35.86759948730469],[138.71116638183616,35.9065780639649],[138.731689453125,35.90605926513683]]]},"properties":{"ID_0":114,"ISO":"JP-19","NAME_0":"Japan","ID_1":47,"NAME_1":"Yamanashi","TYPE_1":"Ken","ENGTYPE_1":"Prefecture","NL_NAME_1":"山梨県","VARNAME_1":"Yamanasi"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson
new file mode 100644
index 0000000..1fdeb2a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson
@@ -0,0 +1,19 @@
+{"type":"FeatureCollection", "features": [
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[128.8304138183595,35.06708145141607],[128.8515319824221,35.04236221313471],[128.83457946777355,35.01097106933605],[128.79652404785156,35.05402755737305],[128.8304138183595,35.06708145141607]]],[[[129.03375244140636,35.08600616455078],[129.0485687255864,35.099861145019645],[129.0790252685547,35.08736038208019],[129.0823669433595,35.049861907958984],[129.03375244140636,35.08600616455078]]],[[[129.32485961914062,35.345985412597656],[129.29930114746094,35.31819534301758],[129.26486206054733,35.31874847412115],[129.2540283203126,35.27152633666998],[129.2537536621096,35.24597167968744],[129.22346496582054,35.211807250976676],[129.2212524414066,35.1834716796875],[129.19792175293014,35.17680740356457],[129.194305419922,35.16069412231451],[129.12263488769543,35.15458297729492],[129.12513732910156,35.09930419921869],[129.07624816894543,35.10235977172857],[129.05763244628906,35.11902618408209],[129.04069519042991,35.10609436035162],[129.02670288085972,35.0845832824707],[129.01818847656273,35.059028625488395],[128.98347473144554,35.06069564819336],[128.9573669433596,35.052917480468864],[128.9462432861328,35.091526031494254],[128.93263244628906,35.09513854980469],[128.89486694335938,35.07847213745117],[128.83308410644543,35.08791732788097],[128.85238647460938,35.097991943359375],[128.85552978515648,35.11791992187506],[128.8442993164067,35.14251708984381],[128.90191650390636,35.15087890625006],[128.89877319335938,35.18237304687506],[128.92919921875,35.20440673828125],[128.97387695312534,35.19952392578131],[129.0095214843751,35.21527099609369],[129.023681640625,35.24908447265625],[129.04290771484386,35.269287109375],[129.08250427246116,35.28470993041998],[129.10879516601585,35.3140869140625],[129.13867187500034,35.322509765625],[129.15570068359375,35.3428955078125],[129.18072509765648,35.35211181640631],[129.2078857421876,35.350280761718864],[129.24647521972656,35.389442443847656],[129.2971191406251,35.39344787597656],[129.32485961914062,35.345985412597656]]]]},"properties":{"ID_0":213,"ISO":"KR-26","NAME_0":"South Korea","ID_1":1,"NAME_1":"Busan","TYPE_1":"Gwangyeoksi","ENGTYPE_1":"Metropolitan City","NL_NAME_1":"부산광역시","VARNAME_1":"Pusan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[128.64468383789062,37.016540527343864],[128.63299560546886,37.00271606445318],[128.59588623046875,37.004882812500114],[128.5706787109375,36.995727539062614],[128.55499267578136,36.964477539062614],[128.50808715820324,36.94631958007824],[128.4967041015625,36.9281005859375],[128.4534759521489,36.906414031982365],[128.43499755859386,36.885257720947266],[128.41914367675827,36.85235595703125],[128.43698120117188,36.814331054687614],[128.42919921875023,36.79119873046881],[128.40270996093773,36.77490234374994],[128.37091064453136,36.78207397460943],[128.34332275390625,36.76852416992193],[128.29849243164062,36.77801513671875],[128.2900085449221,36.79058837890625],[128.2591552734376,36.79910278320324],[128.23547363281295,36.83270263671869],[128.20568847656273,36.80151367187506],[128.19210815429688,36.771484375],[128.13452148437523,36.78112792968756],[128.11740112304733,36.79212570190441],[128.09790039062523,36.76507568359381],[128.0575408935547,36.78068542480469],[128.04251098632847,36.75518798828131],[128.0244140625,36.74371337890631],[128.02050781250045,36.71130371093756],[128.05654907226585,36.68433380126953],[128.03556823730491,36.67526245117193],[128.0079956054691,36.68960571289074],[127.97129058837913,36.68957519531256],[127.95249938964844,36.69778442382818],[127.93029785156295,36.67572021484369],[127.89199829101574,36.65451049804699],[127.8847045898442,36.63751220703131],[127.91177368164085,36.629791259765625],[127.91412353515636,36.594856262206974],[127.88893890380871,36.57542800903326],[127.86291503906273,36.59860229492193],[127.84237670898449,36.605895996093864],[127.82402801513695,36.5799446105957],[127.79959106445335,36.580505371093864],[127.78700256347679,36.56368637084961],[127.80164337158203,36.54267120361334],[127.84981536865246,36.53253936767578],[127.87521362304699,36.501983642578125],[127.88651275634766,36.47645187377941],[127.861083984375,36.463806152343864],[127.84983825683605,36.446151733398494],[127.861083984375,36.42910766601557],[127.84439086914062,36.36209106445318],[127.86982727050827,36.324722290039176],[127.82830810546886,36.28228759765625],[127.82895660400413,36.25044631958019],[127.88229370117222,36.25079345703125],[127.92791748046875,36.22607421875006],[127.97204589843773,36.229904174804744],[128.01181030273472,36.222290039062614],[128.0166015625,36.189788818359375],[128.03280639648438,36.174621582031364],[128.0218200683596,36.15499877929699],[127.98681640625034,36.166290283203125],[127.96051025390625,36.14309692382818],[127.97502899169922,36.123920440673885],[127.97109985351585,36.09219360351568],[127.95378112792969,36.08499145507824],[127.94808197021496,36.0401496887207],[127.93525695800827,36.02461242675781],[127.90499877929722,36.02621459960949],[127.87928771972656,36.002128601074276],[127.85809326171875,35.99652099609369],[127.82641601562534,36.006500244140625],[127.7944946289067,35.99310302734375],[127.7571487426759,35.991699218750114],[127.73480224609386,36.00427246093756],[127.67410278320335,36.00482177734381],[127.64891815185558,36.01969146728521],[127.63470458984386,36.01147460937506],[127.61358642578125,36.02981567382818],[127.5935974121096,36.08078002929699],[127.57159423828159,36.095001220703125],[127.56790161132858,36.175872802734375],[127.54779052734375,36.19281005859375],[127.47158050537155,36.20489501953131],[127.46539306640625,36.21820068359375],[127.47869873046909,36.28671264648443],[127.4945983886721,36.30169677734369],[127.51339721679699,36.34909057617193],[127.52950286865257,36.361400604248104],[127.51800537109375,36.378906250000114],[127.47888183593761,36.37869262695324],[127.48168945312545,36.41070556640631],[127.44610595703125,36.4390869140625],[127.42929077148449,36.41833496093756],[127.38537597656261,36.424591064453125],[127.37020874023438,36.45397949218756],[127.33807373046886,36.45683670043957],[127.34183502197277,36.49711227416992],[127.35488891601562,36.51730346679693],[127.3228759765625,36.53790283203131],[127.30120849609386,36.561492919921875],[127.27587890625011,36.559326171875114],[127.27111816406261,36.58081054687506],[127.24090576171875,36.60101318359375],[127.26351928710938,36.62948608398443],[127.26730346679699,36.66000366210943],[127.2893981933596,36.699005126953125],[127.31628417968773,36.70648193359375],[127.32458496093784,36.731750488281364],[127.38031005859375,36.728881835937614],[127.37629699707031,36.75660705566406],[127.32867431640636,36.794494628906364],[127.32061767578125,36.811004638671875],[127.26831054687511,36.852905273437614],[127.28079223632835,36.87860107421881],[127.2981872558596,36.888824462890625],[127.37768554687523,36.90832519531256],[127.40219116210949,36.948883056640625],[127.45071411132812,36.971496582031364],[127.48388671875,36.99810791015625],[127.53588867187511,36.986083984375],[127.56455993652344,36.989501953125],[127.5662841796875,37.00830078125006],[127.60821533203159,37.016723632812614],[127.6282958984375,37.04730224609375],[127.63808441162155,37.099205017089844],[127.66018676757835,37.08999633789057],[127.686279296875,37.10687255859381],[127.74652099609375,37.179107666015625],[127.75650024414085,37.20590209960943],[127.77622222900402,37.21256256103521],[127.80590820312523,37.124877929687614],[127.81948852539074,37.115905761718864],[127.9202880859375,37.12329101562506],[127.94052124023438,37.15390014648432],[127.92047119140625,37.18328857421875],[127.92431640625,37.196086883545036],[127.97100830078125,37.214202880859375],[128.00952148437534,37.20471191406256],[128.03488159179722,37.15499877929699],[128.09680175781295,37.16207885742199],[128.1160888671876,37.185577392578125],[128.15509033203125,37.18917846679682],[128.17138671875045,37.201793670654354],[128.20709228515636,37.20300292968756],[128.2666015625001,37.17480468750006],[128.3123779296876,37.18094635009777],[128.32376098632835,37.1651611328125],[128.26211547851585,37.12455749511719],[128.29211425781295,37.099487304687614],[128.32881164550815,37.11396026611334],[128.38470458984375,37.11679077148443],[128.39749145507812,37.08489990234375],[128.4346923828125,37.06399536132818],[128.47607421875,37.069793701171875],[128.4918823242191,37.07849121093756],[128.53308105468784,37.074707031250114],[128.56719970703136,37.046905517578125],[128.63378906250034,37.0369873046875],[128.64468383789062,37.016540527343864]]]},"properties":{"ID_0":213,"ISO":"KR-43","NAME_0":"South Korea","ID_1":2,"NAME_1":"Chungcheongbuk-do","TYPE_1":"Do","ENGTYPE_1":"Province","NL_NAME_1":"충청북도","VARNAME_1":"Chungchongbuk-Do"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[126.35652923584007,36.61736297607416],[126.36624908447288,36.610694885253906],[126.37900543212902,36.54958343505865],[126.37652587890636,36.53680419921881],[126.40264129638695,36.50624847412115],[126.39847564697288,36.49347305297846],[126.4165267944336,36.46736145019537],[126.41569519042969,36.450973510742244],[126.43458557128918,36.41819381713867],[126.3709716796875,36.410415649414006],[126.33513641357433,36.43791580200207],[126.33041381835983,36.469028472900504],[126.33569335937523,36.498470306396484],[126.32680511474621,36.510417938232536],[126.32680511474621,36.55625152587896],[126.31263732910179,36.586528778076286],[126.31930541992199,36.58736038208008],[126.32263946533214,36.59791564941406],[126.33985900878906,36.61180496215826],[126.35652923584007,36.61736297607416]]],[[[126.91077423095714,36.89485931396496],[126.98538208007835,36.90640258789068],[127.033203125,36.90060424804682],[127.0850830078125,36.912109375],[127.1199722290039,36.92510986328131],[127.17150878906261,36.908203125000114],[127.24148559570312,36.87390136718744],[127.26831054687511,36.852905273437614],[127.32061767578125,36.811004638671875],[127.32867431640636,36.794494628906364],[127.37629699707031,36.75660705566406],[127.38031005859375,36.728881835937614],[127.32458496093784,36.731750488281364],[127.31628417968773,36.70648193359375],[127.2893981933596,36.699005126953125],[127.26730346679699,36.66000366210943],[127.23468017578136,36.65808105468756],[127.17849731445312,36.70040893554693],[127.14440917968773,36.70208740234375],[127.12158203125011,36.68481445312506],[127.14300537109375,36.65548706054699],[127.1388854980471,36.580505371093864],[127.18698120117199,36.55300903320318],[127.19845581054699,36.52955627441412],[127.19311523437511,36.51290893554693],[127.20391845703148,36.48828125],[127.22291564941406,36.48844909667969],[127.23889160156261,36.46847534179693],[127.21310424804699,36.4468994140625],[127.23272705078148,36.416687011718864],[127.26068115234375,36.41448974609381],[127.26335144042969,36.39205932617199],[127.25411224365257,36.34564208984381],[127.25659179687523,36.32098388671875],[127.23931884765636,36.290313720703125],[127.24214935302734,36.275585174560604],[127.2657165527346,36.25152587890619],[127.27227783203136,36.226318359375114],[127.30856323242222,36.19947814941406],[127.33261108398438,36.21899414062506],[127.33868408203136,36.25311279296875],[127.36297607421875,36.250183105468864],[127.36003875732433,36.223903656005916],[127.40747070312523,36.18267822265619],[127.42333984375011,36.180465698242244],[127.44114685058594,36.19914245605469],[127.47158050537155,36.20489501953131],[127.54779052734375,36.19281005859375],[127.56790161132858,36.175872802734375],[127.57159423828159,36.095001220703125],[127.5935974121096,36.08078002929699],[127.61358642578125,36.02981567382818],[127.63470458984386,36.01147460937506],[127.64891815185558,36.01969146728521],[127.64758300781261,35.99890136718756],[127.61487579345714,35.97360229492199],[127.55029296875023,35.97569274902355],[127.53738403320358,36.00158691406256],[127.49987792968784,35.992309570312614],[127.4559020996096,35.991424560546875],[127.38980102539074,36.02084350585943],[127.36749267578136,36.067077636718864],[127.326904296875,36.1129150390625],[127.30648803710938,36.12807464599621],[127.24050903320312,36.1044921875],[127.22698974609375,36.08920288085949],[127.19348144531295,36.09649658203125],[127.12618255615234,36.067276000976506],[127.08758544921886,36.06842041015619],[127.05072021484375,36.07891845703119],[127.03138732910156,36.12997055053711],[126.94128417968773,36.15969848632818],[126.91012573242222,36.144012451171875],[126.88694763183616,36.14118194580084],[126.87588500976585,36.12655639648449],[126.8573913574221,36.062500000000114],[126.82339477539062,36.04904174804693],[126.814208984375,36.037109375000114],[126.78228759765625,36.03668212890631],[126.74124908447311,36.01807022094732],[126.72319793701206,36.000137329101506],[126.66652679443371,36.00430679321289],[126.66819763183639,36.031806945800724],[126.61319732666016,36.09597396850597],[126.59291839599621,36.1268043518067],[126.55958557128906,36.12874984741222],[126.52014160156273,36.15986251831066],[126.52375030517578,36.18680572509771],[126.53847503662132,36.21014022827154],[126.52986145019554,36.23875045776373],[126.54819488525413,36.26569366455078],[126.5068054199221,36.319583892822266],[126.54513549804699,36.354305267333984],[126.51069641113293,36.378749847412166],[126.4798583984375,36.38263702392584],[126.49458312988304,36.42569351196295],[126.54041290283249,36.45013809204113],[126.56208038330078,36.45069503784191],[126.57319641113304,36.47597122192383],[126.54513549804699,36.47180557250982],[126.52402496337902,36.44374847412121],[126.4856948852539,36.45347213745117],[126.4787521362307,36.48847198486328],[126.49291992187545,36.51736068725586],[126.46347045898438,36.54735946655279],[126.47041320800827,36.560138702392635],[126.4540252685548,36.595695495605526],[126.41208648681652,36.61513900756847],[126.37208557128906,36.61986160278326],[126.36430358886741,36.62625122070318],[126.35652923584007,36.61819458007818],[126.33958435058605,36.61430740356451],[126.32291412353538,36.601249694824276],[126.31680297851562,36.58791732788086],[126.29708099365246,36.58180618286133],[126.28291320800827,36.591804504394474],[126.30069732666027,36.642360687255916],[126.28708648681663,36.66986083984375],[126.26403045654342,36.67235946655285],[126.2581939697269,36.71708297729492],[126.23902893066429,36.7020835876466],[126.21180725097668,36.69458389282232],[126.1973648071289,36.67541503906256],[126.15208435058605,36.67930603027355],[126.14958190917991,36.70513916015625],[126.1679153442384,36.7176399230957],[126.19819641113304,36.70513916015625],[126.22319793701195,36.72097396850597],[126.18875122070324,36.744861602783146],[126.18096923828125,36.75847244262695],[126.12819671630882,36.73680496215832],[126.11513519287143,36.76625061035162],[126.17124938964844,36.809307098388786],[126.19319152832031,36.82013702392578],[126.180419921875,36.83541488647472],[126.20014190673874,36.856803894043026],[126.18096923828125,36.888473510742244],[126.22125244140648,36.90625000000006],[126.25041961669922,36.909305572509766],[126.28069305419956,36.90180587768566],[126.2923583984375,36.92847061157232],[126.32041931152344,36.89208221435547],[126.29624938964866,36.85263824462896],[126.29541778564453,36.80736160278326],[126.32597351074241,36.824306488037166],[126.31986236572288,36.84347152709955],[126.33208465576183,36.86347198486328],[126.37069702148449,36.85763931274414],[126.36430358886741,36.876525878906364],[126.40458679199241,36.8970832824707],[126.42013549804688,36.935138702392635],[126.3898620605471,36.929306030273494],[126.34402465820347,36.967361450195256],[126.33152770996116,36.98458480834972],[126.35208129882812,37.00485992431646],[126.45986175537132,37.01902770996105],[126.48680877685592,37.043750762939396],[126.4981918334961,37.06541824340826],[126.51958465576195,37.05930709838873],[126.54180908203159,37.037639617919865],[126.64291381835938,36.999584197998104],[126.69708251953125,37.00041580200207],[126.78125000000023,36.97708511352545],[126.8012466430664,36.925971984863224],[126.8301391601567,36.88763809204107],[126.86430358886719,36.88069534301758],[126.91077423095714,36.89485931396496]]]]},"properties":{"ID_0":213,"ISO":"KR-44","NAME_0":"South Korea","ID_1":3,"NAME_1":"Chungcheongnam-do","TYPE_1":"Do","ENGTYPE_1":"Province","NL_NAME_1":"충청남도","VARNAME_1":"Chungchongnam-Do"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[128.55606079101585,35.609352111816406],[128.49139404296886,35.56916427612316],[128.43951416015636,35.56652832031256],[128.41723632812545,35.57498550415045],[128.43574523925827,35.58686065673828],[128.43710327148438,35.61398315429693],[128.39529418945335,35.656494140625],[128.4025878906251,35.668304443359375],[128.4502868652345,35.65975952148443],[128.4611358642578,35.683479309082145],[128.42640686035168,35.7027473449707],[128.42007446289085,35.72327041625988],[128.4443054199221,35.771697998046875],[128.4803161621096,35.77139282226574],[128.48748779296886,35.78887939453131],[128.4477233886721,35.81063842773443],[128.42510986328136,35.81170654296875],[128.40808105468795,35.83050537109381],[128.41206359863304,35.85560226440441],[128.43420410156273,35.87298583984375],[128.47500610351585,35.88360595703119],[128.4761962890626,35.86520385742193],[128.4955596923828,35.8443603515625],[128.53329467773438,35.87289428710949],[128.54339599609375,35.91171264648443],[128.58169555664074,35.92727661132807],[128.60858154296886,35.95599365234381],[128.6273193359375,35.965087890625],[128.6827087402346,35.96820068359381],[128.72070312500045,35.95581054687506],[128.73892211914062,35.93897628784191],[128.73281860351562,35.878082275390625],[128.752410888672,35.867401123046875],[128.7616882324221,35.81869506835949],[128.75439453125,35.79879760742193],[128.7329864501953,35.79310607910162],[128.7239990234376,35.76980590820318],[128.68890380859386,35.729888916015625],[128.69842529296886,35.708496093750114],[128.6932983398441,35.68969726562506],[128.65365600585938,35.662292480468864],[128.6083984375001,35.69150543212902],[128.55763244628918,35.669906616210994],[128.5460968017578,35.632308959960994],[128.55606079101585,35.609352111816406]]]},"properties":{"ID_0":213,"ISO":"KR-27","NAME_0":"South Korea","ID_1":4,"NAME_1":"Daegu","TYPE_1":"Gwangyeoksi","ENGTYPE_1":"Metropolitan City","NL_NAME_1":"대구광역시","VARNAME_1":"Taegu"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[127.33807373046886,36.45683670043957],[127.37020874023438,36.45397949218756],[127.38537597656261,36.424591064453125],[127.42929077148449,36.41833496093756],[127.44610595703125,36.4390869140625],[127.48168945312545,36.41070556640631],[127.47888183593761,36.37869262695324],[127.51800537109375,36.378906250000114],[127.52950286865257,36.361400604248104],[127.51339721679699,36.34909057617193],[127.4945983886721,36.30169677734369],[127.47869873046909,36.28671264648443],[127.46539306640625,36.21820068359375],[127.47158050537155,36.20489501953131],[127.44114685058594,36.19914245605469],[127.42333984375011,36.180465698242244],[127.40747070312523,36.18267822265619],[127.36003875732433,36.223903656005916],[127.36297607421875,36.250183105468864],[127.33868408203136,36.25311279296875],[127.33261108398438,36.21899414062506],[127.30856323242222,36.19947814941406],[127.27227783203136,36.226318359375114],[127.2657165527346,36.25152587890619],[127.24214935302734,36.275585174560604],[127.23931884765636,36.290313720703125],[127.25659179687523,36.32098388671875],[127.25411224365257,36.34564208984381],[127.26335144042969,36.39205932617199],[127.30450439453136,36.4014892578125],[127.33081054687511,36.42050170898449],[127.33807373046886,36.45683670043957]]]},"properties":{"ID_0":213,"ISO":"KR-30","NAME_0":"South Korea","ID_1":5,"NAME_1":"Daejeon","TYPE_1":"Gwangyeoksi","ENGTYPE_1":"Metropolitan City","NL_NAME_1":"대구광역시","VARNAME_1":"Daejeon Gwang'yeogsi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[129.35125732421898,37.16485977172846],[129.30081176757812,37.112304687500114],[129.2683105468751,37.099304199218864],[129.2467041015626,37.07550048828119],[129.24560546875045,37.021392822265625],[129.23580932617188,37.01300048828125],[129.1754760742191,37.021301269531364],[129.1176757812501,37.05688476562506],[129.097900390625,37.04818725585949],[129.08056640625023,37.02288818359375],[129.031494140625,37.03308105468756],[128.96429443359375,37.03839111328131],[128.9480590820317,37.04920959472656],[128.92852783203125,37.0308837890625],[128.88391113281273,37.032806396484375],[128.8169860839846,37.062683105468864],[128.75711059570335,37.07119750976568],[128.7800903320316,37.04187011718756],[128.7797393798828,37.028564453125114],[128.7466735839845,37.02520751953125],[128.736297607422,37.00888061523449],[128.68090820312534,37.02209472656244],[128.64468383789062,37.016540527343864],[128.63378906250034,37.0369873046875],[128.56719970703136,37.046905517578125],[128.53308105468784,37.074707031250114],[128.4918823242191,37.07849121093756],[128.47607421875,37.069793701171875],[128.4346923828125,37.06399536132818],[128.39749145507812,37.08489990234375],[128.38470458984375,37.11679077148443],[128.32881164550815,37.11396026611334],[128.29211425781295,37.099487304687614],[128.26211547851585,37.12455749511719],[128.32376098632835,37.1651611328125],[128.3123779296876,37.18094635009777],[128.2666015625001,37.17480468750006],[128.20709228515636,37.20300292968756],[128.17138671875045,37.201793670654354],[128.15509033203125,37.18917846679682],[128.1160888671876,37.185577392578125],[128.09680175781295,37.16207885742199],[128.03488159179722,37.15499877929699],[128.00952148437534,37.20471191406256],[127.97100830078125,37.214202880859375],[127.92431640625,37.196086883545036],[127.92047119140625,37.18328857421875],[127.94052124023438,37.15390014648432],[127.9202880859375,37.12329101562506],[127.81948852539074,37.115905761718864],[127.80590820312523,37.124877929687614],[127.77622222900402,37.21256256103521],[127.78640747070312,37.22509765625],[127.78548431396496,37.28676223754883],[127.78083801269531,37.310440063476676],[127.79743957519531,37.33589172363281],[127.80731201171886,37.371093750000114],[127.80624389648438,37.41771697998047],[127.77503967285202,37.450454711914176],[127.82592773437523,37.49969482421869],[127.81732940673851,37.52686309814459],[127.77185058593761,37.523864746093864],[127.74604797363327,37.53944396972662],[127.72551727294956,37.54108047485357],[127.67706298828159,37.56750488281256],[127.61462402343795,37.59408187866211],[127.57563018798828,37.58853530883789],[127.54508972167969,37.602844238281364],[127.5496826171875,37.66247558593756],[127.52227783203148,37.681884765625],[127.54304504394554,37.71365356445324],[127.53504943847668,37.74145507812506],[127.53808593750023,37.7808837890625],[127.5706787109375,37.80029296874994],[127.61230468750023,37.8385009765625],[127.61531066894531,37.8932456970216],[127.60484313964866,37.904418945312614],[127.568115234375,37.904449462890625],[127.5561752319336,37.945110321045036],[127.50390625,37.94689941406256],[127.49070739746105,37.95605468750006],[127.47528076171875,37.99409484863281],[127.46123504638683,38.06919860839855],[127.42309570312523,38.051513671875],[127.4002685546875,38.06886291503906],[127.38387298583996,38.06549072265631],[127.36608886718773,38.04272460937494],[127.35089111328136,38.064453125000114],[127.32122039794945,38.07151412963873],[127.2965087890625,38.05767822265631],[127.27088928222679,38.07484436035162],[127.30729675292991,38.11968994140631],[127.28845214843773,38.13371276855469],[127.25689697265625,38.10748291015631],[127.2078857421875,38.079895019531364],[127.17698669433594,38.07257080078131],[127.11151123046886,38.079895019531364],[127.09130859375011,38.09832763671881],[127.09883117675804,38.14671325683594],[127.09069824218761,38.15686035156256],[127.03747558593761,38.1505126953125],[127.01470947265648,38.1549072265625],[126.98715209960949,38.206905364990234],[127.00598144531273,38.22214889526367],[127.01658630371094,38.23741912841808],[127.1323471069336,38.3049430847168],[127.16795349121094,38.301769256591854],[127.23873901367199,38.327270507812614],[127.2748718261721,38.322902679443416],[127.29180908203125,38.31295394897461],[127.32559204101562,38.31391525268555],[127.39053344726574,38.33195877075207],[127.44017791748081,38.314018249511776],[127.4519500732423,38.316608428955135],[127.4989166259769,38.29782104492193],[127.5550537109375,38.32455444335943],[127.58606719970714,38.333114624023494],[127.6136169433596,38.32114791870117],[127.6536636352539,38.32455444335943],[127.68184661865234,38.3189697265625],[127.70255279541061,38.32992935180664],[127.76378631591842,38.32749938964844],[127.79717254638683,38.33614730834972],[127.80474090576195,38.321193695068416],[127.83348083496094,38.3004150390625],[127.87964630126953,38.31384658813471],[127.8982620239259,38.32852172851568],[127.95989990234386,38.313365936279354],[127.97873687744186,38.31700897216797],[128.0469512939453,38.30499649047857],[128.0783081054692,38.30883407592785],[128.109832763672,38.329162597656364],[128.13771057128906,38.32830047607422],[128.17613220214866,38.35614776611328],[128.2142944335942,38.37481689453125],[128.23066711425804,38.39411926269531],[128.2891845703125,38.43442916870117],[128.31207275390625,38.47271728515631],[128.31977844238327,38.505893707275504],[128.3151092529297,38.58634948730469],[128.3592987060548,38.61215209960943],[128.37319946289074,38.58930587768555],[128.41180419921875,38.55625152587896],[128.40625000000034,38.542083740234375],[128.43791198730503,38.4779167175293],[128.46847534179688,38.44985961914068],[128.45429992675793,38.436805725097656],[128.46430969238293,38.41902923583996],[128.51235961914085,38.37014007568365],[128.51402282714844,38.34402847290039],[128.5473632812501,38.292640686035156],[128.55819702148483,38.2620849609375],[128.59042358398483,38.22735977172857],[128.59513854980491,38.20069503784191],[128.60986328125023,38.178749084472656],[128.60791015625,38.15152740478521],[128.6334686279297,38.11736297607422],[128.67457580566418,38.084304809570256],[128.67736816406273,38.06458282470709],[128.7504119873048,37.991249084472656],[128.77125549316418,37.952640533447266],[128.79374694824264,37.929306030273494],[128.83485412597656,37.899581909179744],[128.8304138183595,37.88347244262701],[128.87680053710938,37.841251373291016],[128.88125610351574,37.8270835876466],[128.98652648925804,37.740695953369084],[129.01513671875023,37.706249237060604],[129.05874633789097,37.67291641235357],[129.0443115234375,37.64263916015631],[129.06903076171886,37.60847091674816],[129.11819458007858,37.5765266418457],[129.1126403808596,37.54013824462885],[129.14291381835938,37.49597167968756],[129.19068908691418,37.45180511474621],[129.20013427734375,37.413192749023494],[129.24542236328136,37.386528015136776],[129.26763916015625,37.34458160400402],[129.27125549316406,37.32069396972662],[129.29902648925793,37.31124877929682],[129.30068969726585,37.292915344238395],[129.33013916015636,37.28013992309576],[129.32736206054688,37.26486206054699],[129.34930419921898,37.248748779296875],[129.34902954101574,37.21041488647472],[129.3401336669922,37.19374847412121],[129.35125732421898,37.16485977172846]]]},"properties":{"ID_0":213,"ISO":"KR-42","NAME_0":"South Korea","ID_1":6,"NAME_1":"Gangwon-do","TYPE_1":"Do","ENGTYPE_1":"Province","NL_NAME_1":"강원도","VARNAME_1":"Kang-Won-Do"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[126.96989440917991,35.1937255859375],[126.97070312500045,35.170074462890625],[127.00293731689499,35.16553497314453],[127.03131103515648,35.145828247070426],[127.006103515625,35.08770751953125],[126.96730041503906,35.07745361328131],[126.91913604736328,35.07290649414068],[126.89784240722702,35.04301071166998],[126.86790466308639,35.053829193115234],[126.83151245117199,35.048076629638786],[126.79270172119163,35.05170059204113],[126.78491210937523,35.07729721069336],[126.72766876220714,35.09112548828125],[126.70422363281273,35.102664947509766],[126.67742156982456,35.10314559936529],[126.67512512207043,35.13666152954107],[126.70251464843773,35.17510986328131],[126.74285888671875,35.187026977539176],[126.77642822265625,35.21833038330078],[126.81684875488315,35.19352722167963],[126.85610961914074,35.195644378662166],[126.86708068847679,35.21587371826172],[126.91562652587902,35.22182464599615],[126.96391296386753,35.20564270019537],[126.96989440917991,35.1937255859375]]]},"properties":{"ID_0":213,"ISO":"KR-29","NAME_0":"South Korea","ID_1":7,"NAME_1":"Gwangju","TYPE_1":"Gwangyeoksi","ENGTYPE_1":"Metropolitan City","NL_NAME_1":"광주광역시","VARNAME_1":"Kwangju"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[126.98715209960949,38.206905364990234],[127.01470947265648,38.1549072265625],[127.03747558593761,38.1505126953125],[127.09069824218761,38.15686035156256],[127.09883117675804,38.14671325683594],[127.09130859375011,38.09832763671881],[127.11151123046886,38.079895019531364],[127.17698669433594,38.07257080078131],[127.2078857421875,38.079895019531364],[127.25689697265625,38.10748291015631],[127.28845214843773,38.13371276855469],[127.30729675292991,38.11968994140631],[127.27088928222679,38.07484436035162],[127.2965087890625,38.05767822265631],[127.32122039794945,38.07151412963873],[127.35089111328136,38.064453125000114],[127.36608886718773,38.04272460937494],[127.38387298583996,38.06549072265631],[127.4002685546875,38.06886291503906],[127.42309570312523,38.051513671875],[127.46123504638683,38.06919860839855],[127.47528076171875,37.99409484863281],[127.49070739746105,37.95605468750006],[127.50390625,37.94689941406256],[127.5561752319336,37.945110321045036],[127.568115234375,37.904449462890625],[127.60484313964866,37.904418945312614],[127.61531066894531,37.8932456970216],[127.61230468750023,37.8385009765625],[127.5706787109375,37.80029296874994],[127.53808593750023,37.7808837890625],[127.53504943847668,37.74145507812506],[127.54304504394554,37.71365356445324],[127.52227783203148,37.681884765625],[127.5496826171875,37.66247558593756],[127.54508972167969,37.602844238281364],[127.57563018798828,37.58853530883789],[127.61462402343795,37.59408187866211],[127.67706298828159,37.56750488281256],[127.72551727294956,37.54108047485357],[127.74604797363327,37.53944396972662],[127.77185058593761,37.523864746093864],[127.81732940673851,37.52686309814459],[127.82592773437523,37.49969482421869],[127.77503967285202,37.450454711914176],[127.80624389648438,37.41771697998047],[127.80731201171886,37.371093750000114],[127.79743957519531,37.33589172363281],[127.78083801269531,37.310440063476676],[127.78548431396496,37.28676223754883],[127.78640747070312,37.22509765625],[127.77622222900402,37.21256256103521],[127.75650024414085,37.20590209960943],[127.74652099609375,37.179107666015625],[127.686279296875,37.10687255859381],[127.66018676757835,37.08999633789057],[127.63808441162155,37.099205017089844],[127.6282958984375,37.04730224609375],[127.60821533203159,37.016723632812614],[127.5662841796875,37.00830078125006],[127.56455993652344,36.989501953125],[127.53588867187511,36.986083984375],[127.48388671875,36.99810791015625],[127.45071411132812,36.971496582031364],[127.40219116210949,36.948883056640625],[127.37768554687523,36.90832519531256],[127.2981872558596,36.888824462890625],[127.28079223632835,36.87860107421881],[127.26831054687511,36.852905273437614],[127.24148559570312,36.87390136718744],[127.17150878906261,36.908203125000114],[127.1199722290039,36.92510986328131],[127.0850830078125,36.912109375],[127.033203125,36.90060424804682],[126.98538208007835,36.90640258789068],[126.91077423095714,36.89485931396496],[126.90513610839855,36.92458343505871],[126.86680603027355,36.93375015258789],[126.86235809326195,36.94930648803722],[126.81903076171886,36.99375152587896],[126.79597473144554,36.996250152587834],[126.79513549804688,37.02402877807623],[126.74847412109398,37.029304504394645],[126.76125335693382,37.05930709838873],[126.76625061035168,37.097084045410156],[126.75902557373058,37.116806030273494],[126.78291320800781,37.13541793823248],[126.80347442626964,37.13347244262701],[126.79875183105469,37.17041778564459],[126.75013732910156,37.167083740234375],[126.71902465820312,37.131526947021484],[126.69736480712913,37.12125015258789],[126.66097259521496,37.16152954101557],[126.65264129638672,37.181804656982536],[126.66625213623058,37.207916259765625],[126.66263580322288,37.245971679687614],[126.68819427490257,37.263195037841854],[126.7554168701173,37.254859924316406],[126.76041412353516,37.22097396850586],[126.77124786376964,37.21569442749029],[126.79624938964878,37.25374984741205],[126.78986358642601,37.26763916015625],[126.8165283203125,37.29735946655279],[126.78291320800781,37.29430389404297],[126.73236083984409,37.30930709838867],[126.68708038330124,37.33291625976568],[126.61680603027344,37.313751220703125],[126.58291625976585,37.295139312744084],[126.57069396972668,37.27708435058605],[126.608192443848,37.26430511474621],[126.6237487792971,37.2362518310548],[126.65152740478516,37.22486114501953],[126.64680480957054,37.20986175537115],[126.61486053466831,37.222915649414176],[126.58680725097668,37.2198600769043],[126.55930328369152,37.19958496093756],[126.5401382446289,37.22375106811535],[126.55430603027366,37.234027862548885],[126.56291961669967,37.27763748168945],[126.58486175537121,37.29791641235357],[126.61235809326183,37.3143043518067],[126.6912536621096,37.33625030517578],[126.68846893310558,37.348751068115234],[126.73819732666061,37.3709716796875],[126.73513793945335,37.39208221435558],[126.75152587890648,37.401248931884766],[126.74986267089844,37.404861450195426],[126.75430297851562,37.40763854980469],[126.75569152832054,37.4158821105957],[126.75598144531261,37.41593551635742],[126.76971435546886,37.43487548828125],[126.76507568359398,37.4791259765625],[126.7698593139653,37.515422821045036],[126.82373046875,37.507080078125114],[126.82104492187534,37.46989059448242],[126.86969757080078,37.45543289184576],[126.88923645019554,37.44088363647461],[126.93968963623081,37.434913635253906],[126.97087860107445,37.44564819335943],[127.03167724609375,37.44628906249994],[127.04370117187523,37.422119140625],[127.07391357421886,37.415527343750114],[127.09417724609409,37.428813934326286],[127.13748168945347,37.43441009521496],[127.15613555908214,37.45626449584972],[127.14503479003952,37.49461746215832],[127.17089080810547,37.517303466796875],[127.15710449218761,37.53501892089844],[127.12287902832054,37.54389572143555],[127.11641693115257,37.58682632446289],[127.11932373046886,37.612792968750114],[127.10036468505871,37.6501846313476],[127.08029174804688,37.659118652343864],[127.0220947265625,37.6649169921875],[126.96590423584007,37.632122039795036],[126.93872070312511,37.63311767578131],[126.90393066406273,37.62207031250006],[126.87711334228527,37.57316207885748],[126.85107421875011,37.56848144531256],[126.823486328125,37.58068847656256],[126.79327392578148,37.560302734375114],[126.74731445312511,37.5791015625],[126.6989135742192,37.58868408203131],[126.66711425781261,37.58752441406256],[126.62792968750023,37.57568359375006],[126.58125305175781,37.579856872558594],[126.55458068847668,37.60874938964855],[126.52735900878906,37.6748619079591],[126.53180694580101,37.70208358764654],[126.52124786376953,37.71402740478527],[126.5304183959961,37.749584197998104],[126.51902770996116,37.76180648803722],[126.54739379882812,37.7769393920899],[126.5791702270509,37.76363754272461],[126.60282135009777,37.762897491455135],[126.63533782959007,37.78358840942394],[126.66711425781261,37.785064697265625],[126.67870330810558,37.83585357666021],[126.68923950195324,37.85895156860346],[126.69526672363304,37.91128921508795],[126.68286895751976,37.94533538818365],[126.7415008544923,37.962509155273494],[126.78399658203136,37.96796035766607],[126.8404235839846,38.01839065551769],[126.86341857910156,38.046157836914006],[126.8742904663086,38.08092117309582],[126.89224243164062,38.09919738769531],[126.96690368652355,38.138950347900334],[126.96450805664062,38.180522918701115],[126.98715209960949,38.206905364990234]]]},"properties":{"ID_0":213,"ISO":"KR-41","NAME_0":"South Korea","ID_1":8,"NAME_1":"Gyeonggi-do","TYPE_1":"Do","ENGTYPE_1":"Province","NL_NAME_1":"경기도","VARNAME_1":"Kyonggi-do"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[129.45225524902344,35.61486053466791],[129.4477081298828,35.60516357421875],[129.337646484375,35.6314697265625],[129.3103027343751,35.604919433593864],[129.27569580078136,35.609497070312614],[129.24548339843784,35.631103515625],[129.2498474121095,35.65660095214855],[129.1834716796876,35.67327880859375],[129.12347412109398,35.678527832031364],[129.069091796875,35.65167236328119],[129.072509765625,35.602294921875],[129.039306640625,35.60670471191406],[129.02568054199264,35.58930969238281],[128.9832763671875,35.5687255859375],[128.9266967773442,35.58728027343756],[128.88751220703125,35.58929443359369],[128.85589599609398,35.55670166015625],[128.79571533203136,35.5330810546875],[128.7858886718751,35.522888183593864],[128.7465209960941,35.538513183593864],[128.6810913085941,35.549072265625],[128.648681640625,35.5364990234375],[128.62188720703148,35.5374755859375],[128.59504699707043,35.5531005859375],[128.57391357421875,35.57568359375006],[128.55606079101585,35.609352111816406],[128.5460968017578,35.632308959960994],[128.55763244628918,35.669906616210994],[128.6083984375001,35.69150543212902],[128.65365600585938,35.662292480468864],[128.6932983398441,35.68969726562506],[128.69842529296886,35.708496093750114],[128.68890380859386,35.729888916015625],[128.7239990234376,35.76980590820318],[128.7329864501953,35.79310607910162],[128.75439453125,35.79879760742193],[128.7616882324221,35.81869506835949],[128.752410888672,35.867401123046875],[128.73281860351562,35.878082275390625],[128.73892211914062,35.93897628784191],[128.72070312500045,35.95581054687506],[128.6827087402346,35.96820068359381],[128.6273193359375,35.965087890625],[128.60858154296886,35.95599365234381],[128.58169555664074,35.92727661132807],[128.54339599609375,35.91171264648443],[128.53329467773438,35.87289428710949],[128.4955596923828,35.8443603515625],[128.4761962890626,35.86520385742193],[128.47500610351585,35.88360595703119],[128.43420410156273,35.87298583984375],[128.41206359863304,35.85560226440441],[128.40808105468795,35.83050537109381],[128.42510986328136,35.81170654296875],[128.4477233886721,35.81063842773443],[128.48748779296886,35.78887939453131],[128.4803161621096,35.77139282226574],[128.4443054199221,35.771697998046875],[128.42007446289085,35.72327041625988],[128.42640686035168,35.7027473449707],[128.4611358642578,35.683479309082145],[128.4502868652345,35.65975952148443],[128.4025878906251,35.668304443359375],[128.39529418945335,35.656494140625],[128.43710327148438,35.61398315429693],[128.43574523925827,35.58686065673828],[128.41723632812545,35.57498550415045],[128.39617919921875,35.594173431396484],[128.33218383789074,35.615875244140625],[128.3101196289066,35.60791015625006],[128.2479400634769,35.6009521484375],[128.1985626220703,35.62974166870123],[128.21517944335938,35.676818847656364],[128.20770263671875,35.70696258544933],[128.1441040039067,35.757873535156364],[128.1328125000001,35.78720092773443],[128.05828857421886,35.82208251953131],[128.01867675781284,35.827697753906364],[127.97509765625023,35.82373046875],[127.95092773437511,35.84710693359381],[127.92987060546886,35.85107421875006],[127.91529083251987,35.871986389160156],[127.9114990234375,35.89752197265619],[127.91851806640636,35.94110107421881],[127.87928771972656,36.002128601074276],[127.90499877929722,36.02621459960949],[127.93525695800827,36.02461242675781],[127.94808197021496,36.0401496887207],[127.95378112792969,36.08499145507824],[127.97109985351585,36.09219360351568],[127.97502899169922,36.123920440673885],[127.96051025390625,36.14309692382818],[127.98681640625034,36.166290283203125],[128.0218200683596,36.15499877929699],[128.03280639648438,36.174621582031364],[128.0166015625,36.189788818359375],[128.01181030273472,36.222290039062614],[127.97204589843773,36.229904174804744],[127.92791748046875,36.22607421875006],[127.88229370117222,36.25079345703125],[127.82895660400413,36.25044631958019],[127.82830810546886,36.28228759765625],[127.86982727050827,36.324722290039176],[127.84439086914062,36.36209106445318],[127.861083984375,36.42910766601557],[127.84983825683605,36.446151733398494],[127.861083984375,36.463806152343864],[127.88651275634766,36.47645187377941],[127.87521362304699,36.501983642578125],[127.84981536865246,36.53253936767578],[127.80164337158203,36.54267120361334],[127.78700256347679,36.56368637084961],[127.79959106445335,36.580505371093864],[127.82402801513695,36.5799446105957],[127.84237670898449,36.605895996093864],[127.86291503906273,36.59860229492193],[127.88893890380871,36.57542800903326],[127.91412353515636,36.594856262206974],[127.91177368164085,36.629791259765625],[127.8847045898442,36.63751220703131],[127.89199829101574,36.65451049804699],[127.93029785156295,36.67572021484369],[127.95249938964844,36.69778442382818],[127.97129058837913,36.68957519531256],[128.0079956054691,36.68960571289074],[128.03556823730491,36.67526245117193],[128.05654907226585,36.68433380126953],[128.02050781250045,36.71130371093756],[128.0244140625,36.74371337890631],[128.04251098632847,36.75518798828131],[128.0575408935547,36.78068542480469],[128.09790039062523,36.76507568359381],[128.11740112304733,36.79212570190441],[128.13452148437523,36.78112792968756],[128.19210815429688,36.771484375],[128.20568847656273,36.80151367187506],[128.23547363281295,36.83270263671869],[128.2591552734376,36.79910278320324],[128.2900085449221,36.79058837890625],[128.29849243164062,36.77801513671875],[128.34332275390625,36.76852416992193],[128.37091064453136,36.78207397460943],[128.40270996093773,36.77490234374994],[128.42919921875023,36.79119873046881],[128.43698120117188,36.814331054687614],[128.41914367675827,36.85235595703125],[128.43499755859386,36.885257720947266],[128.4534759521489,36.906414031982365],[128.4967041015625,36.9281005859375],[128.50808715820324,36.94631958007824],[128.55499267578136,36.964477539062614],[128.5706787109375,36.995727539062614],[128.59588623046875,37.004882812500114],[128.63299560546886,37.00271606445318],[128.64468383789062,37.016540527343864],[128.68090820312534,37.02209472656244],[128.736297607422,37.00888061523449],[128.7466735839845,37.02520751953125],[128.7797393798828,37.028564453125114],[128.7800903320316,37.04187011718756],[128.75711059570335,37.07119750976568],[128.8169860839846,37.062683105468864],[128.88391113281273,37.032806396484375],[128.92852783203125,37.0308837890625],[128.9480590820317,37.04920959472656],[128.96429443359375,37.03839111328131],[129.031494140625,37.03308105468756],[129.08056640625023,37.02288818359375],[129.097900390625,37.04818725585949],[129.1176757812501,37.05688476562506],[129.1754760742191,37.021301269531364],[129.23580932617188,37.01300048828125],[129.24560546875045,37.021392822265625],[129.2467041015626,37.07550048828119],[129.2683105468751,37.099304199218864],[129.30081176757812,37.112304687500114],[129.35125732421898,37.16485977172846],[129.3659667968751,37.146251678466854],[129.37652587890625,37.10152816772472],[129.4062500000001,37.07513809204107],[129.4148559570316,37.05430603027355],[129.40986633300793,37.022640228271484],[129.41931152343773,37.00374984741211],[129.40818786621094,36.97735977172863],[129.4215240478519,36.93597412109381],[129.41514587402366,36.891250610351506],[129.4287567138673,36.84875106811529],[129.45791625976562,36.81375122070318],[129.46763610839855,36.75763702392584],[129.47735595703136,36.73347091674805],[129.47764587402344,36.69930648803711],[129.46569824218773,36.67986297607433],[129.44319152832054,36.67569351196289],[129.4126434326173,36.62263870239258],[129.4123535156251,36.583473205566406],[129.4409790039066,36.55236053466797],[129.44569396972668,36.48902893066406],[129.43069458007812,36.410415649414006],[129.40818786621094,36.389862060546875],[129.37957763671875,36.33097076416021],[129.38235473632858,36.32152938842779],[129.37347412109375,36.252361297607536],[129.38735961914074,36.222637176513615],[129.37486267089866,36.193473815918026],[129.39402770996105,36.185138702392635],[129.4023590087893,36.12819290161144],[129.4312438964845,36.11180496215832],[129.43041992187545,36.097084045410156],[129.3759765625,36.04319381713867],[129.40847778320335,36.029026031494254],[129.42291259765625,35.999584197998104],[129.4476318359376,35.99124908447271],[129.49542236328136,36.023193359375114],[129.54930114746105,36.08625030517584],[129.57124328613293,36.07819366455078],[129.58430480957043,36.01625061035162],[129.55319213867188,35.98708343505865],[129.55596923828136,35.9676399230957],[129.5184783935547,35.92291641235357],[129.52624511718784,35.9073600769043],[129.5184783935547,35.874305725097656],[129.53375244140648,35.87236022949219],[129.49180603027366,35.78791809082031],[129.49790954589866,35.77347183227539],[129.47264099121128,35.70291519165039],[129.47264099121128,35.680137634277344],[129.45597839355514,35.665973663330135],[129.4412536621095,35.63291549682617],[129.45225524902344,35.61486053466791]]],[[[130.90875244140648,37.54902648925787],[130.91403198242222,37.48708343505871],[130.86846923828125,37.45875167846691],[130.8420867919923,37.4620819091798],[130.80180358886764,37.483470916748104],[130.80430603027355,37.50430679321295],[130.79096984863293,37.51736068725586],[130.8740234375,37.54347229003912],[130.90875244140648,37.54902648925787]]]]},"properties":{"ID_0":213,"ISO":"KR-47","NAME_0":"South Korea","ID_1":9,"NAME_1":"Gyeongsangbuk-do","TYPE_1":"Do","ENGTYPE_1":"Province","NL_NAME_1":"경상북도","VARNAME_1":"Kyongsangbuk-Do"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[128.24542236328136,34.6529159545899],[128.2957000732423,34.63708496093756],[128.28791809082077,34.62152862548828],[128.25735473632835,34.62014007568371],[128.22430419921875,34.63347244262695],[128.24542236328136,34.6529159545899]]],[[[128.484588623047,34.8179168701173],[128.4937438964845,34.7587509155274],[128.47125244140636,34.76514053344732],[128.4620819091798,34.7845840454101],[128.46597290039062,34.81375122070324],[128.484588623047,34.8179168701173]]],[[[128.23707580566406,34.84125137329107],[128.25625610351608,34.80819320678711],[128.22346496582043,34.800971984863395],[128.2081909179692,34.82847213745123],[128.23707580566406,34.84125137329107]]],[[[128.20042419433605,34.860416412353516],[128.20652770996105,34.84291839599621],[128.18513488769543,34.825138092041016],[128.16792297363304,34.85235977172863],[128.20042419433605,34.860416412353516]]],[[[128.0304107666018,34.92263793945324],[128.0251464843751,34.901527404785156],[128.05541992187545,34.88513946533203],[128.0665283203126,34.86958312988287],[128.05430603027355,34.85458374023432],[128.0648651123047,34.830139160156364],[128.01902770996105,34.83874893188482],[127.98680877685558,34.836250305175895],[127.96402740478538,34.8531951904298],[127.96485900878918,34.87236022949219],[128.00596618652366,34.91652679443371],[128.0304107666018,34.92263793945324]]],[[[127.89347076416038,34.9468040466308],[127.92736053466797,34.9281959533692],[127.92791748046875,34.907081604003906],[127.89819335937523,34.871250152588004],[127.91152954101562,34.83763885498047],[127.9429168701173,34.827362060546875],[127.9440307617192,34.809581756591854],[127.99013519287132,34.83208465576166],[128.0309753417971,34.8337516784668],[128.06375122070335,34.81680679321295],[128.0495758056644,34.78180694580084],[128.05763244628906,34.74791717529308],[128.03486633300793,34.730415344238224],[128.04541015625,34.70291519165039],[128.01902770996105,34.7020835876466],[128.00819396972656,34.721805572509766],[127.98402404785179,34.70847320556652],[127.95263671875,34.71458435058588],[127.94430541992188,34.7448616027832],[127.94569396972679,34.77819442749018],[127.90319824218773,34.7631950378418],[127.91291809082054,34.739860534668026],[127.88930511474621,34.721805572509766],[127.86208343505893,34.73236083984375],[127.84124755859375,34.757362365722656],[127.85069274902344,34.76791763305664],[127.81625366210949,34.82847213745123],[127.80735778808594,34.85791778564459],[127.82875061035156,34.8756942749024],[127.83625030517601,34.8970832824707],[127.86597442626964,34.93791580200201],[127.89347076416038,34.9468040466308]]],[[[128.52041625976585,34.97569274902355],[128.53318786621116,34.938194274902344],[128.51263427734375,34.93958282470709],[128.52041625976585,34.97569274902355]]],[[[128.6493072509768,35.02208328247076],[128.6440277099614,34.97819519042969],[128.61874389648438,34.98458480834961],[128.63096618652344,35.008750915527344],[128.6493072509768,35.02208328247076]]],[[[128.6790313720703,35.04097366333019],[128.72125244140648,35.021526336670036],[128.7040252685547,35.00763702392584],[128.69541931152344,34.97902679443365],[128.72653198242188,34.94847106933594],[128.70069885253906,34.88124847412121],[128.72291564941406,34.88236236572271],[128.7440338134769,34.868194580078125],[128.70347595214866,34.84291839599621],[128.7404174804691,34.792640686035156],[128.72097778320312,34.791805267333984],[128.70985412597656,34.81152725219738],[128.66847229003918,34.812915802001896],[128.67375183105491,34.785972595214844],[128.6379241943364,34.765415191650334],[128.6526336669922,34.74180603027355],[128.60958862304688,34.700973510742244],[128.5856933593751,34.715415954589844],[128.60597229003906,34.73541641235363],[128.57708740234386,34.7406959533692],[128.58068847656273,34.76291656494146],[128.56736755371105,34.78791809082037],[128.58430480957054,34.798194885253906],[128.58903503417991,34.845138549804744],[128.5359649658203,34.82930374145519],[128.51708984375,34.80875015258789],[128.48347473144543,34.83958435058594],[128.47236633300827,34.87319564819336],[128.47930908203125,34.88735961914074],[128.52514648437523,34.92291641235363],[128.5662536621095,34.89875030517584],[128.58653259277344,34.914306640625],[128.6115264892578,34.904026031494254],[128.59375,34.94847106933594],[128.62208557128952,34.96319580078131],[128.6468048095703,34.96125030517578],[128.6790313720703,35.04097366333019]]],[[[128.41723632812545,35.57498550415045],[128.43951416015636,35.56652832031256],[128.49139404296886,35.56916427612316],[128.55606079101585,35.609352111816406],[128.57391357421875,35.57568359375006],[128.59504699707043,35.5531005859375],[128.62188720703148,35.5374755859375],[128.648681640625,35.5364990234375],[128.6810913085941,35.549072265625],[128.7465209960941,35.538513183593864],[128.7858886718751,35.522888183593864],[128.79571533203136,35.5330810546875],[128.85589599609398,35.55670166015625],[128.88751220703125,35.58929443359369],[128.9266967773442,35.58728027343756],[128.9832763671875,35.5687255859375],[129.02568054199264,35.58930969238281],[129.03808593750045,35.573486328125],[129.03448486328125,35.55328369140625],[129.01531982421875,35.531494140625114],[129.0178375244143,35.51044845581055],[129.07232666015625,35.51251220703131],[129.1016845703125,35.48852539062506],[129.1350860595703,35.473693847656364],[129.1671142578125,35.43347167968744],[129.21331787109398,35.42431640624994],[129.23632812500034,35.41290283203125],[129.24647521972656,35.389442443847656],[129.2078857421876,35.350280761718864],[129.18072509765648,35.35211181640631],[129.15570068359375,35.3428955078125],[129.13867187500034,35.322509765625],[129.10879516601585,35.3140869140625],[129.08250427246116,35.28470993041998],[129.04290771484386,35.269287109375],[129.023681640625,35.24908447265625],[129.0095214843751,35.21527099609369],[128.97387695312534,35.19952392578131],[128.92919921875,35.20440673828125],[128.89877319335938,35.18237304687506],[128.90191650390636,35.15087890625006],[128.8442993164067,35.14251708984381],[128.85552978515648,35.11791992187506],[128.85238647460938,35.097991943359375],[128.83308410644543,35.08791732788097],[128.79930114746105,35.089027404785156],[128.77986145019543,35.102916717529354],[128.72985839843795,35.0904159545899],[128.69319152832043,35.097637176513786],[128.7009735107422,35.123748779296875],[128.67736816406273,35.12458419799805],[128.62986755371105,35.14680480957031],[128.57096862793014,35.1893043518067],[128.5759735107423,35.164585113525504],[128.5984649658203,35.14180374145508],[128.601531982422,35.10235977172857],[128.62652587890636,35.08347320556635],[128.62513732910202,35.06402969360357],[128.60791015625,35.05736160278326],[128.56568908691418,35.07041549682617],[128.57263183593773,35.08680725097662],[128.54208374023438,35.10069274902344],[128.4945831298828,35.10652923583996],[128.4748535156251,35.097915649414176],[128.4651336669923,35.07875061035156],[128.4812469482422,35.06624984741211],[128.47207641601562,35.04097366333019],[128.50097656250045,35.020973205566406],[128.4781951904297,34.99291610717785],[128.43708801269543,34.994304656982365],[128.44403076171875,34.973751068115234],[128.43069458007812,34.959304809570256],[128.4295806884768,34.9168052673341],[128.41986083984398,34.88874816894531],[128.46929931640648,34.88791656494152],[128.4406890869143,34.82819366455084],[128.44013977050793,34.7940292358399],[128.42457580566406,34.76235961914068],[128.39846801757812,34.76514053344732],[128.38041687011741,34.81263732910156],[128.3362426757816,34.827083587646484],[128.34707641601562,34.84013748168957],[128.3826446533203,34.82402801513683],[128.3787536621095,34.85208511352545],[128.38902282714855,34.86319351196295],[128.33735656738293,34.877361297607536],[128.29736328125,34.89986038208019],[128.3076324462894,34.90874862670904],[128.35513305664097,34.90819549560547],[128.3393096923828,34.947639465332145],[128.3040313720703,34.935974121093864],[128.3045806884769,34.918472290039176],[128.2657012939453,34.912361145019645],[128.26957702636741,34.93513870239269],[128.24153137207043,34.94402694702154],[128.1981964111328,34.938194274902344],[128.2006988525393,34.89319610595709],[128.1626434326173,34.89847183227545],[128.13569641113304,34.88930511474604],[128.1092987060547,34.91624832153332],[128.08930969238304,34.92652893066406],[128.05152893066406,34.929862976074276],[128.0343017578126,34.95041656494146],[128.04791259765625,34.97874832153326],[128.03875732421875,35.00208282470703],[128.04930114746116,35.01597213745123],[128.039031982422,35.04347229003906],[128.00903320312523,35.029861450195426],[128.01458740234398,34.99097061157232],[127.98680877685558,34.988193511962834],[127.9406967163086,35.00152587890631],[127.89624786376953,34.95597076416021],[127.84986114501964,34.9468040466308],[127.83569335937545,34.959583282470646],[127.79235839843773,34.94124984741222],[127.77134704589844,34.965415954589844],[127.7908935546875,34.993591308593864],[127.76840209960949,35.03359985351568],[127.73339843750023,35.05401611328131],[127.69952392578136,35.11328125],[127.66149902343773,35.13690185546875],[127.64147949218761,35.18188476562494],[127.64019775390636,35.21578979492199],[127.61711883544933,35.269691467285156],[127.64129638671898,35.29107666015631],[127.64880371093761,35.31628417968756],[127.64129638671898,35.34509277343756],[127.67590332031261,35.357116699218864],[127.69479370117199,35.37960815429693],[127.68847656250011,35.40249633789068],[127.65267944335938,35.4727783203125],[127.62908935546898,35.535095214843864],[127.6759948730471,35.59597778320307],[127.66619873046909,35.64239501953131],[127.69470214843773,35.67230224609375],[127.69250488281261,35.71710205078125],[127.71649169921886,35.75170898437506],[127.76148986816452,35.774291992187614],[127.77635192871116,35.81466674804693],[127.80615234375,35.809814453125],[127.83288574218761,35.82470703125],[127.86511230468761,35.8267555236817],[127.88787841796875,35.85272216796875],[127.91529083251987,35.871986389160156],[127.92987060546886,35.85107421875006],[127.95092773437511,35.84710693359381],[127.97509765625023,35.82373046875],[128.01867675781284,35.827697753906364],[128.05828857421886,35.82208251953131],[128.1328125000001,35.78720092773443],[128.1441040039067,35.757873535156364],[128.20770263671875,35.70696258544933],[128.21517944335938,35.676818847656364],[128.1985626220703,35.62974166870123],[128.2479400634769,35.6009521484375],[128.3101196289066,35.60791015625006],[128.33218383789074,35.615875244140625],[128.39617919921875,35.594173431396484],[128.41723632812545,35.57498550415045]]]]},"properties":{"ID_0":213,"ISO":"KR-48","NAME_0":"South Korea","ID_1":10,"NAME_1":"Gyeongsangnam-do","TYPE_1":"Do","ENGTYPE_1":"Province","NL_NAME_1":"경상남도","VARNAME_1":"Kyongsangnam-Do"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[126.1048583984375,37.27486038208019],[126.11846923828148,37.24819564819347],[126.16097259521484,37.23569488525402],[126.14902496337936,37.21625137329107],[126.0879135131836,37.22069549560547],[126.1048583984375,37.27486038208019]]],[[[126.47402954101608,37.28902816772455],[126.50402832031261,37.27069473266613],[126.48291778564453,37.24041748046881],[126.45569610595726,37.22347259521496],[126.43264007568405,37.23041534423828],[126.43374633789074,37.27430725097656],[126.47402954101608,37.28902816772455]]],[[[126.4093017578125,37.413192749023494],[126.44235992431663,37.386528015136776],[126.43374633789074,37.36819458007818],[126.39569091796886,37.39125061035162],[126.4093017578125,37.413192749023494]]],[[[126.46236419677757,37.544860839843864],[126.47374725341797,37.53736114501959],[126.46680450439464,37.51069259643555],[126.43096923828136,37.524860382080135],[126.46236419677757,37.544860839843864]]],[[[126.75598144531261,37.41593551635742],[126.75235748291027,37.415695190429744],[126.7509689331057,37.410137176513786],[126.74458312988281,37.40708160400396],[126.72208404541016,37.38236236572277],[126.66986083984398,37.389595031738395],[126.63903045654308,37.41513824462896],[126.63430786132824,37.431251525878906],[126.60986328125,37.430416107177734],[126.59291839599621,37.44235992431646],[126.59291839599621,37.465415954589844],[126.6134719848634,37.49652862548834],[126.6051406860355,37.55014038085943],[126.5656967163086,37.53874969482433],[126.54235839843761,37.52041625976568],[126.56291961669967,37.515972137451286],[126.58291625976585,37.49069595336914],[126.56458282470726,37.47847366333008],[126.50402832031261,37.46430587768566],[126.48542022705101,37.44486236572271],[126.44319152832043,37.42069625854492],[126.41930389404308,37.42041778564453],[126.39680480957043,37.445415496826286],[126.38180541992188,37.439304351806754],[126.3545837402346,37.46763992309576],[126.41819763183605,37.4973602294923],[126.47708129882858,37.49958419799816],[126.49847412109375,37.530418395996094],[126.51736450195324,37.53430557250988],[126.54096984863304,37.521526336670036],[126.56069183349643,37.536529541015625],[126.57930755615257,37.544860839843864],[126.59263610839866,37.548194885253906],[126.60597229003929,37.5551376342774],[126.58125305175781,37.579856872558594],[126.62792968750023,37.57568359375006],[126.66711425781261,37.58752441406256],[126.6989135742192,37.58868408203131],[126.74731445312511,37.5791015625],[126.79327392578148,37.560302734375114],[126.7698593139653,37.515422821045036],[126.76507568359398,37.4791259765625],[126.76971435546886,37.43487548828125],[126.75598144531261,37.41593551635742]]],[[[126.32013702392578,37.753471374511776],[126.31958007812511,37.71152877807617],[126.34152984619152,37.697917938232536],[126.367919921875,37.694862365722656],[126.37486267089855,37.66680526733404],[126.34819793701183,37.65069580078131],[126.2934722900394,37.692081451416016],[126.28263854980469,37.71041488647461],[126.2879104614259,37.74124908447271],[126.32013702392578,37.753471374511776]]],[[[126.24041748046886,37.81847381591797],[126.26569366455101,37.81819534301758],[126.289306640625,37.805694580078125],[126.33403015136764,37.79680633544933],[126.29958343505893,37.76652908325201],[126.24847412109375,37.764305114746094],[126.23152923583984,37.75069427490246],[126.20375061035179,37.77236175537115],[126.22152709960938,37.80458450317377],[126.24041748046886,37.81847381591797]]],[[[126.42874908447266,37.832084655761776],[126.4509735107423,37.812637329101676],[126.50624847412132,37.7837486267091],[126.52291870117199,37.737915039062614],[126.5140304565432,37.72541809082037],[126.52458190918014,37.702915191650504],[126.5170822143557,37.677639007568416],[126.53458404541016,37.61375045776373],[126.5118026733403,37.59652709960943],[126.4787521362307,37.60458374023449],[126.46263885498058,37.59097290039068],[126.41069793701195,37.59347152709961],[126.3759689331057,37.6118049621582],[126.37403106689476,37.63097381591797],[126.40847015380871,37.65013885498058],[126.40597534179699,37.66902923583996],[126.38735961914062,37.69902801513672],[126.35097503662132,37.71569442749035],[126.3576354980471,37.76374816894537],[126.35152435302757,37.79236221313488],[126.38819122314476,37.80708312988287],[126.39597320556663,37.823192596435604],[126.42874908447266,37.832084655761776]]]]},"properties":{"ID_0":213,"ISO":"KR-28","NAME_0":"South Korea","ID_1":11,"NAME_1":"Incheon","TYPE_1":"Gwangyeoksi","ENGTYPE_1":"Metropolitan City","NL_NAME_1":"인천광역시","VARNAME_1":"Inchon"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[126.95569610595714,33.525970458984375],[126.96819305419945,33.51652908325195],[126.96624755859375,33.48875045776373],[126.93958282470726,33.5065269470216],[126.95569610595714,33.525970458984375]]],[[[126.53541564941429,33.52513885498058],[126.58597564697288,33.525695800781364],[126.59486389160156,33.537639617920036],[126.62735748291038,33.53902816772461],[126.64791870117188,33.54902648925781],[126.66652679443371,33.54264068603521],[126.7304153442384,33.560974121093864],[126.77263641357422,33.56624984741222],[126.80069732666016,33.558193206787166],[126.82653045654308,33.56013870239269],[126.84041595459007,33.53347396850586],[126.85902404785156,33.52513885498058],[126.89291381835938,33.52819442749029],[126.91291809082077,33.50791549682617],[126.9120864868164,33.47291564941423],[126.9348602294923,33.47375106811535],[126.9120864868164,33.41958236694347],[126.90680694580124,33.39180374145508],[126.88430786132858,33.3837509155274],[126.84263610839844,33.31541824340832],[126.8084716796875,33.30152893066412],[126.77652740478538,33.306526184082315],[126.74458312988281,33.27875137329107],[126.7245864868164,33.279026031494084],[126.67541503906273,33.26680374145519],[126.64541625976562,33.26680374145519],[126.61930847167969,33.241806030273665],[126.58930206298862,33.24347305297857],[126.51569366455078,33.23680496215826],[126.47097015380882,33.22486114501959],[126.4518051147461,33.24041748046875],[126.43152618408203,33.23485946655279],[126.41069793701195,33.24486160278332],[126.38430786132812,33.23208236694347],[126.32013702392578,33.238750457763786],[126.29486083984375,33.22236251831066],[126.2912521362307,33.20402908325207],[126.2715301513673,33.194862365722656],[126.22652435302768,33.23986053466797],[126.20069122314476,33.24625015258789],[126.16236114501976,33.28458404541021],[126.16764068603516,33.31624984741211],[126.16124725341808,33.33375167846691],[126.20180511474632,33.36541748046881],[126.2218017578125,33.390972137451286],[126.2581939697269,33.40986251831049],[126.26264190673851,33.43680572509777],[126.29680633544945,33.44597244262695],[126.31346893310558,33.469860076904354],[126.36763763427746,33.4781951904298],[126.3854141235355,33.48986053466808],[126.45207977294945,33.49736022949219],[126.49346923828148,33.52152633666998],[126.51486206054699,33.51625061035156],[126.53541564941429,33.52513885498058]]]]},"properties":{"ID_0":213,"ISO":"KR-49","NAME_0":"South Korea","ID_1":12,"NAME_1":"Jeju","TYPE_1":"Do","ENGTYPE_1":"Province","NL_NAME_1":"제주특별자치도","VARNAME_1":"Jeju-doQuelpart"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[126.30458068847656,35.622081756591854],[126.31569671630882,35.60958480834972],[126.29958343505893,35.589862823486385],[126.26041412353561,35.569583892822266],[126.24819183349632,35.58736038208008],[126.30458068847656,35.622081756591854]]],[[[126.43347167968784,35.42873764038097],[126.4370803833009,35.44985961914074],[126.4798583984375,35.50902938842779],[126.5295867919923,35.534584045410156],[126.54125213623047,35.52569580078131],[126.56597137451217,35.543472290039176],[126.59291839599621,35.54069519042969],[126.63153076171898,35.57180404663097],[126.64958190918003,35.568748474121094],[126.67319488525402,35.58180618286133],[126.65125274658203,35.595138549804744],[126.60986328125,35.58597183227539],[126.57791900634766,35.589862823486385],[126.5112533569336,35.578750610351676],[126.45986175537132,35.60930633544933],[126.46485900878929,35.64263916015631],[126.50208282470714,35.65763854980469],[126.55374908447288,35.69736099243164],[126.56847381591797,35.69347381591797],[126.60069274902355,35.71847152709972],[126.62791442871105,35.74902725219738],[126.62208557128918,35.78569412231445],[126.70014190673828,35.798194885253906],[126.78458404541027,35.77513885498047],[126.77764129638683,35.80430603027344],[126.73347473144543,35.818473815918026],[126.69708251953125,35.841526031494254],[126.69264221191406,35.85208511352539],[126.7315292358403,35.86680603027355],[126.76569366455078,35.86152648925781],[126.79958343505882,35.874305725097656],[126.79708099365257,35.90541839599615],[126.76958465576172,35.88930511474621],[126.71013641357445,35.885692596435604],[126.68069458007812,35.89347076416027],[126.66819763183639,35.883193969726676],[126.6134719848634,35.885692596435604],[126.61541748046886,35.942081451416016],[126.56708526611351,35.955696105956974],[126.55263519287121,35.973472595214844],[126.61125183105469,35.97905349731457],[126.6245803833009,35.973472595214844],[126.68902587890636,35.985694885253906],[126.72846984863327,35.9859733581543],[126.74903106689464,35.99375152587896],[126.74124908447311,36.01807022094732],[126.78228759765625,36.03668212890631],[126.814208984375,36.037109375000114],[126.82339477539062,36.04904174804693],[126.8573913574221,36.062500000000114],[126.87588500976585,36.12655639648449],[126.88694763183616,36.14118194580084],[126.91012573242222,36.144012451171875],[126.94128417968773,36.15969848632818],[127.03138732910156,36.12997055053711],[127.05072021484375,36.07891845703119],[127.08758544921886,36.06842041015619],[127.12618255615234,36.067276000976506],[127.19348144531295,36.09649658203125],[127.22698974609375,36.08920288085949],[127.24050903320312,36.1044921875],[127.30648803710938,36.12807464599621],[127.326904296875,36.1129150390625],[127.36749267578136,36.067077636718864],[127.38980102539074,36.02084350585943],[127.4559020996096,35.991424560546875],[127.49987792968784,35.992309570312614],[127.53738403320358,36.00158691406256],[127.55029296875023,35.97569274902355],[127.61487579345714,35.97360229492199],[127.64758300781261,35.99890136718756],[127.64891815185558,36.01969146728521],[127.67410278320335,36.00482177734381],[127.73480224609386,36.00427246093756],[127.7571487426759,35.991699218750114],[127.7944946289067,35.99310302734375],[127.82641601562534,36.006500244140625],[127.85809326171875,35.99652099609369],[127.87928771972656,36.002128601074276],[127.91851806640636,35.94110107421881],[127.9114990234375,35.89752197265619],[127.91529083251987,35.871986389160156],[127.88787841796875,35.85272216796875],[127.86511230468761,35.8267555236817],[127.83288574218761,35.82470703125],[127.80615234375,35.809814453125],[127.77635192871116,35.81466674804693],[127.76148986816452,35.774291992187614],[127.71649169921886,35.75170898437506],[127.69250488281261,35.71710205078125],[127.69470214843773,35.67230224609375],[127.66619873046909,35.64239501953131],[127.6759948730471,35.59597778320307],[127.62908935546898,35.535095214843864],[127.65267944335938,35.4727783203125],[127.68847656250011,35.40249633789068],[127.69479370117199,35.37960815429693],[127.67590332031261,35.357116699218864],[127.64129638671898,35.34509277343756],[127.64880371093761,35.31628417968756],[127.64129638671898,35.29107666015631],[127.61711883544933,35.269691467285156],[127.51361083984409,35.32391357421881],[127.46969604492188,35.32849121093756],[127.41412353515636,35.31628417968756],[127.39349365234375,35.29327392578119],[127.34129333496116,35.29376220703131],[127.31997680664074,35.2852783203125],[127.29164123535156,35.29781723022461],[127.19760131835938,35.30252075195318],[127.16650390625,35.29461669921869],[127.1063461303711,35.30735015869152],[127.11380004882824,35.36239624023443],[127.09020233154297,35.380825042724666],[127.0712280273442,35.42050170898432],[127.04180908203136,35.41650390625],[126.99365997314487,35.380996704101676],[126.97076416015636,35.39074707031244],[126.96368408203136,35.40689086914068],[126.87580108642578,35.46396636962902],[126.79117584228538,35.441486358642635],[126.78923034667969,35.38877105712896],[126.76908111572288,35.36713409423828],[126.75881958007824,35.33851623535156],[126.74362182617188,35.32510375976574],[126.7178955078125,35.325073242187614],[126.66504669189453,35.30578613281256],[126.61494445800793,35.309906005859375],[126.59059143066418,35.29690933227545],[126.55489349365257,35.295993804931754],[126.52712249755893,35.32944488525396],[126.50275421142578,35.34605026245117],[126.50395965576195,35.35780334472656],[126.46735382080124,35.38605117797863],[126.46815490722668,35.408546447753906],[126.43347167968784,35.42873764038097]]]]},"properties":{"ID_0":213,"ISO":"KR-45","NAME_0":"South Korea","ID_1":13,"NAME_1":"Jeollabuk-do","TYPE_1":"Do","ENGTYPE_1":"Province","NL_NAME_1":"전라북도","VARNAME_1":"Chollabuk-Do"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[125.09819793701172,34.09624862670904],[125.11096954345703,34.09458160400396],[125.12708282470714,34.06708526611328],[125.0943069458009,34.074306488037166],[125.09819793701172,34.09624862670904]]],[[[126.54041290283249,34.1823616027832],[126.57041931152378,34.170417785644474],[126.59958648681652,34.167915344238395],[126.54597473144543,34.12597274780279],[126.51069641113293,34.123748779296875],[126.51597595214866,34.170696258545036],[126.54041290283249,34.1823616027832]]],[[[126.65069580078136,34.200138092041016],[126.66291809082043,34.174026489257926],[126.67263793945324,34.13069534301758],[126.6568069458009,34.11486053466808],[126.63014221191406,34.13763809204107],[126.65041351318382,34.16708374023443],[126.6406936645509,34.18708419799816],[126.65069580078136,34.200138092041016]]],[[[126.89152526855491,34.2176399230957],[126.92485809326172,34.18041610717785],[126.91458129882835,34.152915954589844],[126.88124847412155,34.1540260314942],[126.84708404541038,34.1748619079591],[126.8718032836914,34.2101402282716],[126.89152526855491,34.2176399230957]]],[[[126.56597137451217,34.235416412353516],[126.60708618164062,34.22430419921881],[126.62513732910168,34.20264053344732],[126.56097412109398,34.179027557373104],[126.55374908447288,34.212081909179744],[126.56597137451217,34.235416412353516]]],[[[127.25569152832031,34.251388549804744],[127.25875091552746,34.21125030517578],[127.22486114501953,34.21652603149414],[127.23152923583984,34.23402786254877],[127.25569152832031,34.251388549804744]]],[[[126.03958129882824,34.31902694702154],[126.05319213867188,34.30430603027355],[126.08125305175804,34.30791854858404],[126.09180450439499,34.28013992309582],[126.06236267089844,34.27763748168951],[126.02764129638672,34.28402709960943],[126.02208709716797,34.30263900756847],[126.03958129882824,34.31902694702154]]],[[[126.98430633544933,34.340972900390625],[127.01569366455101,34.32513809204107],[126.97846984863304,34.305973052978516],[126.95708465576172,34.3270835876466],[126.98430633544933,34.340972900390625]]],[[[126.83458709716831,34.358470916748104],[126.84263610839844,34.34875106811529],[126.87625122070324,34.347084045410156],[126.88124847412155,34.31013870239252],[126.8362503051759,34.30652618408209],[126.82847595214855,34.326248168945256],[126.80513763427757,34.33319473266613],[126.83458709716831,34.358470916748104]]],[[[126.01513671875011,34.36069488525396],[126.04680633544933,34.323192596435604],[126.0084686279298,34.33402633666992],[126.01513671875011,34.36069488525396]]],[[[127.03013610839844,34.38069534301769],[127.04541778564476,34.35069274902344],[127.08569335937523,34.35763931274414],[127.03847503662121,34.31069564819347],[127.03847503662121,34.34013748168945],[127.00763702392578,34.35958099365246],[127.03013610839844,34.38069534301769]]],[[[126.68597412109386,34.40319442749035],[126.72680664062511,34.3837509155274],[126.73097229003918,34.35235977172857],[126.77124786376964,34.30986022949219],[126.76486206054699,34.29152679443371],[126.73236083984409,34.28625106811535],[126.71930694580101,34.29569625854492],[126.68819427490257,34.29624938964855],[126.67597198486351,34.31541824340832],[126.64875030517624,34.332084655761776],[126.6393051147461,34.38291549682623],[126.64930725097679,34.392917633056584],[126.68597412109386,34.40319442749035]]],[[[126.94541931152344,34.41263961791998],[126.95124816894577,34.405971527099666],[126.9326400756836,34.3698616027832],[126.90680694580124,34.3529167175293],[126.8631973266605,34.372917175293026],[126.88236236572288,34.402362823486385],[126.9312515258789,34.390693664550895],[126.94541931152344,34.41263961791998]]],[[[126.83458709716831,34.442916870117244],[126.83902740478516,34.410972595214844],[126.81791687011741,34.382362365722656],[126.75485992431675,34.38624954223633],[126.77458190917991,34.42180633544916],[126.83458709716831,34.442916870117244]]],[[[127.04458618164097,34.46041488647472],[127.06541442871094,34.4515266418457],[127.07541656494186,34.423194885253906],[127.03652954101574,34.42708206176758],[127.03347015380871,34.45013809204096],[127.04458618164097,34.46041488647472]]],[[[127.80569458007835,34.461528778076286],[127.81014251708996,34.42430496215826],[127.78569793701195,34.417083740234375],[127.80569458007835,34.461528778076286]]],[[[127.45735931396484,34.476528167724666],[127.47264099121094,34.46458435058594],[127.51041412353516,34.466274261474666],[127.53902435302734,34.4329185485841],[127.49069213867199,34.411529541015625],[127.48347473144565,34.4473609924317],[127.45680236816406,34.4509735107423],[127.45735931396484,34.476528167724666]]],[[[127.21680450439464,34.49569320678722],[127.23458099365234,34.47458267211914],[127.20791625976562,34.42930603027344],[127.17180633544956,34.434581756591854],[127.12430572509777,34.43125152587896],[127.09791564941429,34.46597290039068],[127.11680603027389,34.4793052673341],[127.13652801513706,34.472637176513615],[127.17680358886719,34.48958206176769],[127.21680450439464,34.49569320678722]]],[[[127.45958709716797,34.545696258544865],[127.47875213623047,34.53847122192383],[127.46125030517601,34.51013946533203],[127.49236297607467,34.507637023925724],[127.49458312988281,34.48374938964855],[127.44069671630871,34.493473052978516],[127.4343032836914,34.51847076416027],[127.45958709716797,34.545696258544865]]],[[[127.74180603027355,34.55347061157238],[127.75930786132812,34.548473358154354],[127.7906951904298,34.4868049621582],[127.74874877929699,34.501804351806754],[127.71152496337936,34.537639617920036],[127.74180603027355,34.55347061157238]]],[[[126.0945816040039,34.56874847412115],[126.10208129882835,34.554862976074276],[126.0487518310548,34.52986145019537],[126.05569458007835,34.55625152587902],[126.0945816040039,34.56874847412115]]],[[[127.65902709960949,34.585693359375],[127.67541503906273,34.57458496093744],[127.67375183105514,34.554584503173885],[127.6495819091798,34.55569458007824],[127.65902709960949,34.585693359375]]],[[[126.25013732910156,34.589862823486385],[126.2915267944336,34.57680511474615],[126.30291748046898,34.554862976074276],[126.32263946533214,34.54097366333008],[126.34097290039097,34.543193817138786],[126.37458038330078,34.51430511474621],[126.35819244384766,34.45680618286127],[126.36569213867233,34.44235992431652],[126.33569335937523,34.41402816772472],[126.2890243530278,34.393196105956974],[126.26457977294945,34.396804809570426],[126.25624847412121,34.38013839721674],[126.22875213623092,34.373195648193416],[126.20402526855503,34.35763931274414],[126.15652465820347,34.35625076293957],[126.14541625976574,34.37847137451183],[126.11069488525402,34.39485931396496],[126.08875274658249,34.41819381713873],[126.11958312988281,34.46014022827154],[126.14569091796875,34.476528167724666],[126.1951370239259,34.49402618408209],[126.20319366455124,34.51514053344738],[126.23708343505882,34.53874969482422],[126.25041961669922,34.563472747802734],[126.25013732910156,34.589862823486385]]],[[[126.05596923828125,34.63013839721691],[126.10236358642612,34.604583740234375],[126.09764099121094,34.58041763305664],[126.07291412353561,34.589584350585994],[126.05596923828125,34.63013839721691]]],[[[125.85097503662143,34.630695343017635],[125.86096954345714,34.60374832153326],[125.82569122314476,34.60041809082037],[125.82208251953148,34.61513900756836],[125.85097503662143,34.630695343017635]]],[[[126.02874755859375,34.63541793823248],[126.03097534179699,34.612915039062614],[126.0518035888673,34.58902740478527],[126.02735900878906,34.572639465332145],[126.01069641113293,34.60708236694347],[126.01013946533226,34.630973815918026],[126.02874755859375,34.63541793823248]]],[[[126.15319824218773,34.67291641235346],[126.17485809326172,34.663471221923885],[126.19013977050781,34.63791656494135],[126.13402557373081,34.61875152587896],[126.12791442871128,34.64791488647472],[126.15319824218773,34.67291641235346]]],[[[125.44097137451183,34.699306488037166],[125.44235992431652,34.663192749023494],[125.42458343505882,34.65597152709961],[125.3951416015625,34.62930679321295],[125.38680267333996,34.657917022705135],[125.41458129882812,34.698192596435604],[125.44097137451183,34.699306488037166]]],[[[127.74430847167991,34.734027862548885],[127.78680419921898,34.71708297729498],[127.76569366455124,34.695415496826115],[127.79458618164062,34.66125106811535],[127.80041503906261,34.62985992431652],[127.79235839843773,34.61152648925787],[127.80791473388706,34.596248626708984],[127.78986358642601,34.584304809570426],[127.75013732910156,34.5926399230957],[127.72347259521484,34.63347244262695],[127.72374725341808,34.65597152709961],[127.74652862548828,34.66847229003906],[127.7565307617192,34.69041824340832],[127.74430847167991,34.734027862548885]]],[[[125.96430206298828,34.7379150390625],[125.96708679199219,34.72319412231451],[126.0062484741211,34.700973510742244],[126.0084686279298,34.68708419799805],[125.96485900878906,34.65625],[125.92013549804733,34.67152786254894],[125.91625213623047,34.71125030517584],[125.94985961914085,34.710140228271484],[125.96430206298828,34.7379150390625]]],[[[126.08930206298851,34.774581909179744],[126.12513732910168,34.77097320556646],[126.13402557373081,34.75597381591791],[126.17458343505905,34.74291610717768],[126.1781921386721,34.70624923706066],[126.15430450439476,34.704860687255916],[126.13569641113281,34.727916717529354],[126.11680603027355,34.716251373291016],[126.10208129882835,34.736804962158146],[126.07430267333996,34.74652862548834],[126.08930206298851,34.774581909179744]]],[[[126.13819122314464,34.79930496215826],[126.15930938720726,34.78874969482433],[126.16458129882812,34.765693664550895],[126.14319610595703,34.76180648803711],[126.11736297607467,34.79097366333002],[126.13819122314464,34.79930496215826]]],[[[125.99402618408237,34.807083129882926],[125.99903106689453,34.78152847290045],[125.9745864868164,34.76430511474615],[125.94403076171886,34.766250610351676],[125.92958068847656,34.750694274902344],[125.936805725098,34.7198600769043],[125.91124725341831,34.71763992309576],[125.88819122314453,34.733749389648494],[125.8890304565432,34.765972137451286],[125.89847564697266,34.78180694580084],[125.92819213867199,34.774860382080135],[125.96509552001976,34.78736114501959],[125.99402618408237,34.807083129882926]]],[[[126.11458587646484,34.882915496826115],[126.13986206054733,34.880695343017635],[126.13513946533214,34.862361907958984],[126.14902496337936,34.839305877685604],[126.11319732666027,34.82652664184576],[126.11791992187523,34.80014038085943],[126.09569549560547,34.80319595336914],[126.06041717529297,34.84430694580078],[126.08152770996094,34.85930633544933],[126.11347198486328,34.84930419921875],[126.11458587646484,34.882915496826115]]],[[[127.71763610839855,34.89902877807623],[127.73069763183594,34.88097381591797],[127.72291564941429,34.86791610717779],[127.69180297851562,34.882915496826115],[127.71763610839855,34.89902877807623]]],[[[126.29846954345703,34.922084808349666],[126.31180572509766,34.90874862670904],[126.33625030517578,34.90930557250982],[126.34652709960938,34.89374923706066],[126.32624816894543,34.88208389282232],[126.32013702392578,34.862083435058594],[126.35848236083996,34.86097335815424],[126.36736297607445,34.82374954223644],[126.34708404541016,34.81513977050781],[126.33125305175781,34.85013961791992],[126.27930450439464,34.85625076293945],[126.27874755859375,34.87430572509771],[126.30319213867199,34.89014053344738],[126.28041839599632,34.90930557250982],[126.29846954345703,34.922084808349666]]],[[[126.23041534423851,34.93763732910162],[126.25375366210949,34.933193206787166],[126.23708343505882,34.909584045410156],[126.21930694580078,34.9248619079591],[126.23041534423851,34.93763732910162]]],[[[126.05708312988327,34.938751220703125],[126.09236145019554,34.9109725952149],[126.08152770996094,34.86708450317377],[126.03375244140625,34.8576393127442],[125.97708129882812,34.86402893066412],[126.01319122314476,34.903751373291016],[126.05569458007835,34.912082672119254],[126.05708312988327,34.938751220703125]]],[[[127.73152923584007,34.95208358764654],[127.73708343505905,34.93152618408209],[127.7737503051759,34.922084808349666],[127.76180267333984,34.901248931884766],[127.70847320556686,34.912361145019645],[127.70458221435547,34.929862976074276],[127.73152923584007,34.95208358764654]]],[[[127.76180267333984,34.95986175537121],[127.76708221435558,34.93375015258795],[127.74541473388695,34.93375015258795],[127.74097442626953,34.95180511474621],[127.76180267333984,34.95986175537121]]],[[[126.13346862792969,34.99347305297857],[126.1620864868164,34.98986053466797],[126.17958068847668,34.977638244628906],[126.13652801513672,34.96680450439453],[126.13346862792969,34.99347305297857]]],[[[126.13319396972702,35.027084350585994],[126.1554183959961,35.02236175537115],[126.16124725341808,35.00013732910156],[126.13291931152344,35.00208282470703],[126.13319396972702,35.027084350585994]]],[[[126.14680480957065,35.06152725219732],[126.180419921875,35.05263900756847],[126.19541931152355,35.02791595458996],[126.16764068603516,35.02597045898443],[126.12596893310547,35.047637939453125],[126.14680480957065,35.06152725219732]]],[[[126.19319152832031,35.11236190795893],[126.24903106689487,35.097637176513786],[126.24319458007835,35.07708358764643],[126.2745819091798,35.038192749023494],[126.24986267089866,35.02208328247076],[126.22402954101574,35.05764007568365],[126.180419921875,35.062637329101676],[126.16152954101562,35.07624816894531],[126.15791320800781,35.0984725952149],[126.19319152832031,35.11236190795893]]],[[[126.15041351318371,35.14736175537104],[126.12430572509766,35.13597106933594],[126.10375213623047,35.08680725097662],[126.12264251709007,35.07791519165045],[126.10624694824241,35.05152893066412],[126.0765304565432,35.05569458007818],[126.07319641113281,35.067638397216854],[126.04180908203148,35.08569335937506],[126.05486297607456,35.10263824462896],[126.07569122314453,35.10374832153332],[126.1201400756836,35.140972137451115],[126.15041351318371,35.14736175537104]]],[[[127.7576370239259,34.742637634277344],[127.70513916015625,34.72013854980469],[127.67152404785168,34.748748779296875],[127.6540298461914,34.745693206787166],[127.6390304565432,34.715694427490234],[127.62291717529297,34.70041656494152],[127.62124633789085,34.6801376342774],[127.64069366455078,34.643196105957145],[127.62625122070335,34.63263702392578],[127.58958435058616,34.65208435058594],[127.57013702392601,34.643196105957145],[127.5509719848634,34.66291809082031],[127.55486297607422,34.71125030517584],[127.57930755615257,34.73319625854492],[127.57958221435558,34.76124954223633],[127.55430603027366,34.80875015258789],[127.52291870117199,34.84986114501953],[127.51708221435547,34.8790283203125],[127.49263763427734,34.87486267089844],[127.49236297607467,34.84652709960949],[127.39624786376964,34.825138092041016],[127.42013549804699,34.81180572509777],[127.38680267333984,34.783473968505916],[127.4029159545903,34.76847076416021],[127.37319183349621,34.74097061157238],[127.38957977294933,34.7120819091798],[127.42402648925804,34.69235992431646],[127.42819213867188,34.6743049621582],[127.47097015380882,34.663749694824276],[127.49652862548851,34.63180541992182],[127.50624847412121,34.59430694580084],[127.47569274902344,34.57513809204107],[127.43374633789062,34.58819580078125],[127.38014221191406,34.563472747802734],[127.4381942749028,34.54819488525396],[127.40402984619163,34.50485992431646],[127.37347412109375,34.48014068603527],[127.33319091796875,34.47902679443354],[127.34041595459018,34.44847106933605],[127.31819152832054,34.44208145141613],[127.28819274902344,34.476249694824276],[127.26847076416016,34.48125076293945],[127.26958465576217,34.51013946533203],[127.23041534423828,34.519584655761776],[127.22041320800793,34.53347396850597],[127.13708496093761,34.52319335937506],[127.12152862548851,34.52986145019537],[127.11430358886741,34.55958175659191],[127.14541625976608,34.595973968505916],[127.17208099365246,34.59486007690441],[127.1731948852539,34.62736129760742],[127.19791412353527,34.648193359375114],[127.22763824462902,34.654026031494084],[127.24069213867188,34.700695037841854],[127.25624847412121,34.7120819091798],[127.28041839599621,34.710140228271484],[127.2781982421875,34.6737518310548],[127.31236267089855,34.665973663330135],[127.33458709716808,34.713195800781364],[127.3273620605471,34.750694274902344],[127.31236267089855,34.75291824340826],[127.28736114501964,34.73569488525396],[127.25958251953125,34.73263931274414],[127.24291992187511,34.760139465332145],[127.20986175537132,34.7379150390625],[127.19819641113304,34.70652770996105],[127.1781921386721,34.69180679321289],[127.14263916015625,34.692916870117244],[127.12875366210938,34.70319366455078],[127.09541320800804,34.6701393127442],[127.06735992431663,34.663471221923885],[127.04708099365234,34.63541793823248],[126.99514007568371,34.622081756591854],[126.99930572509788,34.59763717651367],[126.97958374023438,34.572917938232536],[126.99013519287132,34.55347061157238],[126.96013641357422,34.53041839599615],[126.97180175781273,34.52180480957031],[126.96375274658203,34.49569320678722],[126.97624969482433,34.48847198486334],[126.9473648071289,34.45652770996088],[126.87513732910179,34.45680618286127],[126.8870849609375,34.434307098388615],[126.8362503051759,34.452362060546875],[126.81819152832065,34.44819259643566],[126.78958129882847,34.467082977295036],[126.79680633544933,34.484859466552734],[126.78680419921898,34.51235961914074],[126.79541778564499,34.567359924316406],[126.76652526855469,34.572639465332145],[126.76152801513683,34.502639770507926],[126.73958587646496,34.48347091674816],[126.74903106689464,34.47347259521496],[126.72347259521496,34.442916870117244],[126.69902801513672,34.4404182434082],[126.67819213867222,34.42152786254877],[126.66486358642578,34.42680740356457],[126.63458251953148,34.411251068115234],[126.61180877685581,34.385417938232536],[126.62014007568405,34.358470916748104],[126.59930419921886,34.31208419799805],[126.55764007568393,34.32125091552746],[126.54458618164085,34.30291748046881],[126.5162506103519,34.29486083984381],[126.5251388549807,34.329582214355526],[126.52069091796875,34.36041641235357],[126.47846984863293,34.355972290039176],[126.47430419921875,34.3768043518067],[126.49124908447277,34.38597106933594],[126.48958587646484,34.4051399230957],[126.5140304565432,34.41347122192394],[126.50791931152344,34.42847061157232],[126.48319244384811,34.43402862548828],[126.46819305419956,34.44902801513683],[126.46986389160156,34.47097396850586],[126.45625305175793,34.501525878906364],[126.46180725097679,34.54402923583996],[126.4179153442384,34.548751831054744],[126.3870849609375,34.532081604003906],[126.38874816894554,34.55930709838873],[126.33403015136764,34.572917938232536],[126.31597137451183,34.566806793213004],[126.3068084716798,34.589862823486385],[126.28319549560547,34.60013961791998],[126.28430938720714,34.62319564819336],[126.26264190673851,34.6384735107423],[126.25458526611328,34.678195953369254],[126.28541564941418,34.757637023925895],[126.32041931152344,34.748470306396484],[126.33403015136764,34.69708251953125],[126.32902526855491,34.65930557250982],[126.35346984863304,34.65236282348633],[126.36430358886741,34.61763763427746],[126.38735961914062,34.61208343505865],[126.43486022949219,34.589584350585994],[126.45291900634777,34.610694885253906],[126.43653106689487,34.625415802001896],[126.42208099365234,34.65708160400396],[126.40763854980491,34.66680526733393],[126.40736389160156,34.698471069335994],[126.44791412353527,34.69208145141607],[126.42903137207043,34.66708374023449],[126.46819305419956,34.64097213745123],[126.50986480712913,34.63652801513683],[126.52263641357445,34.65180587768555],[126.585693359375,34.62985992431652],[126.52764129638683,34.70680618286144],[126.49791717529308,34.735973358154354],[126.44985961914074,34.74041748046881],[126.40652465820324,34.73902893066406],[126.38097381591808,34.75263977050787],[126.39013671875,34.78180694580084],[126.36902618408203,34.780693054199276],[126.36152648925781,34.800693511963004],[126.3759689331057,34.821804046630916],[126.4081954956057,34.84763717651367],[126.40125274658203,34.87791824340832],[126.38903045654331,34.886806488037166],[126.40486145019565,34.912918090820426],[126.39125061035202,34.922084808349666],[126.39375305175793,34.96041488647461],[126.36680603027366,34.97236251831049],[126.3729171752932,34.94124984741222],[126.36680603027366,34.92013931274414],[126.33013916015625,34.91652679443371],[126.32069396972668,34.94374847412115],[126.29486083984375,34.96458435058605],[126.30291748046898,34.977359771728516],[126.34347534179688,34.97263717651373],[126.35791778564464,34.99236297607422],[126.34569549560547,35.00208282470703],[126.3898620605471,35.024028778076286],[126.382362365723,35.04680633544933],[126.35180664062511,35.03958511352545],[126.33264160156273,35.088195800781364],[126.31680297851562,35.0870819091798],[126.31458282470749,35.05458450317383],[126.2912521362307,35.05986022949219],[126.26319122314453,35.052917480468864],[126.24847412109375,35.08097076416027],[126.25096893310547,35.09736251831055],[126.24458312988327,35.118194580078125],[126.26264190673851,35.146251678466854],[126.28152465820335,35.13458251953119],[126.30708312988304,35.138195037841854],[126.33180236816418,35.11541748046881],[126.33486175537143,35.09263992309576],[126.367919921875,35.07180404663086],[126.39430236816452,35.07541656494152],[126.40208435058605,35.02819442749035],[126.45263671875023,35.07236099243164],[126.40374755859375,35.134860992431754],[126.36069488525402,35.167915344238395],[126.37124633789074,35.18875122070307],[126.36653137207065,35.205417633056754],[126.31764221191418,35.20847320556646],[126.33569335937523,35.25347137451172],[126.36736297607445,35.284862518310604],[126.37735748291016,35.32680511474621],[126.39680480957043,35.36930465698242],[126.40652465820324,35.417362213134766],[126.43291473388672,35.42859649658209],[126.43347167968784,35.42873764038097],[126.46815490722668,35.408546447753906],[126.46735382080124,35.38605117797863],[126.50395965576195,35.35780334472656],[126.50275421142578,35.34605026245117],[126.52712249755893,35.32944488525396],[126.55489349365257,35.295993804931754],[126.59059143066418,35.29690933227545],[126.61494445800793,35.309906005859375],[126.66504669189453,35.30578613281256],[126.7178955078125,35.325073242187614],[126.74362182617188,35.32510375976574],[126.75881958007824,35.33851623535156],[126.76908111572288,35.36713409423828],[126.78923034667969,35.38877105712896],[126.79117584228538,35.441486358642635],[126.87580108642578,35.46396636962902],[126.96368408203136,35.40689086914068],[126.97076416015636,35.39074707031244],[126.99365997314487,35.380996704101676],[127.04180908203136,35.41650390625],[127.0712280273442,35.42050170898432],[127.09020233154297,35.380825042724666],[127.11380004882824,35.36239624023443],[127.1063461303711,35.30735015869152],[127.16650390625,35.29461669921869],[127.19760131835938,35.30252075195318],[127.29164123535156,35.29781723022461],[127.31997680664074,35.2852783203125],[127.34129333496116,35.29376220703131],[127.39349365234375,35.29327392578119],[127.41412353515636,35.31628417968756],[127.46969604492188,35.32849121093756],[127.51361083984409,35.32391357421881],[127.61711883544933,35.269691467285156],[127.64019775390636,35.21578979492199],[127.64147949218761,35.18188476562494],[127.66149902343773,35.13690185546875],[127.69952392578136,35.11328125],[127.73339843750023,35.05401611328131],[127.76840209960949,35.03359985351568],[127.7908935546875,34.993591308593864],[127.77134704589844,34.965415954589844],[127.73430633544922,34.956527709960994],[127.70930480957065,34.93569564819347],[127.68846893310547,34.92597198486328],[127.69347381591831,34.9168052673341],[127.64902496337925,34.89125061035156],[127.62791442871094,34.903472900390625],[127.60541534423851,34.903472900390625],[127.58458709716797,34.89014053344738],[127.61013793945312,34.84986114501953],[127.63652801513695,34.8462486267091],[127.62930297851585,34.82847213745123],[127.66319274902344,34.824584960937614],[127.6893081665039,34.83958435058594],[127.69930267334007,34.85930633544933],[127.73208618164085,34.85291671752941],[127.7604141235355,34.86513900756847],[127.77986145019543,34.853473663330135],[127.76652526855503,34.80819320678711],[127.74514007568371,34.775417327880916],[127.7576370239259,34.742637634277344]],[[126.96989440917991,35.1937255859375],[126.96391296386753,35.20564270019537],[126.91562652587902,35.22182464599615],[126.86708068847679,35.21587371826172],[126.85610961914074,35.195644378662166],[126.81684875488315,35.19352722167963],[126.77642822265625,35.21833038330078],[126.74285888671875,35.187026977539176],[126.70251464843773,35.17510986328131],[126.67512512207043,35.13666152954107],[126.67742156982456,35.10314559936529],[126.70422363281273,35.102664947509766],[126.72766876220714,35.09112548828125],[126.78491210937523,35.07729721069336],[126.79270172119163,35.05170059204113],[126.83151245117199,35.048076629638786],[126.86790466308639,35.053829193115234],[126.89784240722702,35.04301071166998],[126.91913604736328,35.07290649414068],[126.96730041503906,35.07745361328131],[127.006103515625,35.08770751953125],[127.03131103515648,35.145828247070426],[127.00293731689499,35.16553497314453],[126.97070312500045,35.170074462890625],[126.96989440917991,35.1937255859375]]]]},"properties":{"ID_0":213,"ISO":"KR-46","NAME_0":"South Korea","ID_1":14,"NAME_1":"Jeollanam-do","TYPE_1":"Do","ENGTYPE_1":"Province","NL_NAME_1":"전라남도","VARNAME_1":"Chollanam-Do"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[127.26335144042969,36.39205932617199],[127.26068115234375,36.41448974609381],[127.23272705078148,36.416687011718864],[127.21310424804699,36.4468994140625],[127.23889160156261,36.46847534179693],[127.22291564941406,36.48844909667969],[127.20391845703148,36.48828125],[127.19311523437511,36.51290893554693],[127.19845581054699,36.52955627441412],[127.18698120117199,36.55300903320318],[127.1388854980471,36.580505371093864],[127.14300537109375,36.65548706054699],[127.12158203125011,36.68481445312506],[127.14440917968773,36.70208740234375],[127.17849731445312,36.70040893554693],[127.23468017578136,36.65808105468756],[127.26730346679699,36.66000366210943],[127.26351928710938,36.62948608398443],[127.24090576171875,36.60101318359375],[127.27111816406261,36.58081054687506],[127.27587890625011,36.559326171875114],[127.30120849609386,36.561492919921875],[127.3228759765625,36.53790283203131],[127.35488891601562,36.51730346679693],[127.34183502197277,36.49711227416992],[127.33807373046886,36.45683670043957],[127.33081054687511,36.42050170898449],[127.30450439453136,36.4014892578125],[127.26335144042969,36.39205932617199]]]},"properties":{"ID_0":213,"ISO":"KR-50","NAME_0":"South Korea","ID_1":15,"NAME_1":"Sejong","TYPE_1":"Do","ENGTYPE_1":"Metropolitan Autonomous City","NL_NAME_1":"세종특별자치시","VARNAME_1":"Sejong Metropolitan Autonomous City"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[126.7698593139653,37.515422821045036],[126.79327392578148,37.560302734375114],[126.823486328125,37.58068847656256],[126.85107421875011,37.56848144531256],[126.87711334228527,37.57316207885748],[126.90393066406273,37.62207031250006],[126.93872070312511,37.63311767578131],[126.96590423584007,37.632122039795036],[127.0220947265625,37.6649169921875],[127.08029174804688,37.659118652343864],[127.10036468505871,37.6501846313476],[127.11932373046886,37.612792968750114],[127.11641693115257,37.58682632446289],[127.12287902832054,37.54389572143555],[127.15710449218761,37.53501892089844],[127.17089080810547,37.517303466796875],[127.14503479003952,37.49461746215832],[127.15613555908214,37.45626449584972],[127.13748168945347,37.43441009521496],[127.09417724609409,37.428813934326286],[127.07391357421886,37.415527343750114],[127.04370117187523,37.422119140625],[127.03167724609375,37.44628906249994],[126.97087860107445,37.44564819335943],[126.93968963623081,37.434913635253906],[126.88923645019554,37.44088363647461],[126.86969757080078,37.45543289184576],[126.82104492187534,37.46989059448242],[126.82373046875,37.507080078125114],[126.7698593139653,37.515422821045036]]]},"properties":{"ID_0":213,"ISO":"KR-11","NAME_0":"South Korea","ID_1":16,"NAME_1":"Seoul","TYPE_1":"Teukbyeolsi","ENGTYPE_1":"Capital Metropolitan City","NL_NAME_1":"서울특별시","VARNAME_1":"Keijo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[129.45225524902344,35.61486053466791],[129.46458435058605,35.605140686035156],[129.4532012939453,35.57958221435547],[129.45875549316406,35.55236053466797],[129.4318084716798,35.48014068603527],[129.38374328613293,35.475418090820426],[129.34541320800793,35.45013809204113],[129.35403442382812,35.42763900756847],[129.36068725585972,35.36541748046875],[129.32485961914062,35.345985412597656],[129.2971191406251,35.39344787597656],[129.24647521972656,35.389442443847656],[129.23632812500034,35.41290283203125],[129.21331787109398,35.42431640624994],[129.1671142578125,35.43347167968744],[129.1350860595703,35.473693847656364],[129.1016845703125,35.48852539062506],[129.07232666015625,35.51251220703131],[129.0178375244143,35.51044845581055],[129.01531982421875,35.531494140625114],[129.03448486328125,35.55328369140625],[129.03808593750045,35.573486328125],[129.02568054199264,35.58930969238281],[129.039306640625,35.60670471191406],[129.072509765625,35.602294921875],[129.069091796875,35.65167236328119],[129.12347412109398,35.678527832031364],[129.1834716796876,35.67327880859375],[129.2498474121095,35.65660095214855],[129.24548339843784,35.631103515625],[129.27569580078136,35.609497070312614],[129.3103027343751,35.604919433593864],[129.337646484375,35.6314697265625],[129.4477081298828,35.60516357421875],[129.45225524902344,35.61486053466791]]]},"properties":{"ID_0":213,"ISO":"KR-31","NAME_0":"South Korea","ID_1":17,"NAME_1":"Ulsan","TYPE_1":"Metropolitan City","ENGTYPE_1":"Metropolitan City","NL_NAME_1":"울산광역시","VARNAME_1":"Ulsan-gwangyoksi"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/liechtenstein.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/liechtenstein.geojson
new file mode 100644
index 0000000..6fe16b3
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/liechtenstein.geojson
@@ -0,0 +1,13 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": [
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.611698150634709,47.12876510620123],[9.611676216125602,47.1292610168457],[9.611004829406738,47.13092803955084],[9.610227584838867,47.13182067871094],[9.60998439788824,47.13271331787121],[9.60991287231451,47.133544921875],[9.60994815826416,47.1357536315918],[9.609428405761776,47.13667297363287],[9.607198715209961,47.138526916503906],[9.6060152053833,47.139049530029354],[9.604595184326286,47.14011383056646],[9.60278129577631,47.141292572021484],[9.601682662963867,47.141914367675724],[9.600215911865348,47.1427574157716],[9.599121093750057,47.143634796142635],[9.596801757812557,47.14365768432623],[9.5952787399292,47.14385604858404],[9.59398460388195,47.1441764831543],[9.592647552490234,47.14464187622082],[9.590959548950252,47.14548110961914],[9.588143348693961,47.146602630615234],[9.58651447296154,47.14692306518566],[9.584264755248967,47.146953582763786],[9.583244323730469,47.14746856689453],[9.583139419555721,47.14808654785156],[9.583826065063477,47.14906692504877],[9.58368968963623,47.14997482299816],[9.583879470825252,47.15031814575201],[9.583919525146541,47.15136337280268],[9.584095001220703,47.15208435058594],[9.583715438842773,47.152606964111385],[9.583986282348576,47.153961181640625],[9.58475303649908,47.15465545654308],[9.585218429565373,47.155387878418026],[9.585270881652832,47.1563339233399],[9.585563659668026,47.157024383545036],[9.586174964904842,47.157981872558594],[9.587216377258358,47.1590461730957],[9.587920188903752,47.15939331054693],[9.589535713195914,47.160514831543026],[9.589962959289494,47.161396026611385],[9.589997291564998,47.162040710449276],[9.590279579162598,47.16252899169922],[9.591519355773926,47.163558959960994],[9.591814994812125,47.16423416137701],[9.59375286102295,47.1631965637207],[9.600576400756893,47.15894317626953],[9.604929924011287,47.15248107910162],[9.613783836364803,47.148826599121094],[9.626029968261776,47.146957397460994],[9.625551223754996,47.13883590698242],[9.630137443542594,47.13226699829113],[9.63511180877697,47.127914428710994],[9.631406784057617,47.12412261962902],[9.626423835754395,47.11909866333019],[9.625276565551815,47.11771774291998],[9.625291824340877,47.118408203125114],[9.6249361038208,47.118690490722656],[9.623212814331055,47.1195526123048],[9.619814872741813,47.120559692382756],[9.61826229095459,47.121120452880916],[9.616698265075797,47.12158584594738],[9.614415168762207,47.12197875976568],[9.61392784118658,47.1222038269043],[9.613471031188908,47.12359237670904],[9.61344242095953,47.12428665161133],[9.61305236816412,47.12511062622076],[9.612973213195858,47.126659393310604],[9.612424850463924,47.127483367920036],[9.612332344055176,47.12816238403326],[9.611698150634709,47.12876510620123]]],[[[9.578450202941951,47.09016418457037],[9.578154563903922,47.0895347595216],[9.577372550964355,47.08862304687506],[9.577409744262752,47.08773040771496],[9.578378677368221,47.08705520629894],[9.579257011413574,47.086280822753906],[9.579501152038574,47.085391998291016],[9.579532623291072,47.084217071533146],[9.579719543457145,47.08365631103521],[9.579791069030875,47.08209609985363],[9.580217361450195,47.08120727539074],[9.58157825469965,47.08006286621105],[9.582799911499023,47.079360961914006],[9.584549903869629,47.07814407348633],[9.584758758545036,47.07710647583019],[9.583672523498592,47.07652282714844],[9.582014083862305,47.076137542724666],[9.58054256439209,47.07546615600586],[9.577730178833008,47.07440948486328],[9.575619697570914,47.074066162109375],[9.573790550232047,47.074069976806754],[9.570391654968319,47.07458877563482],[9.567714691162166,47.07643890380871],[9.566165924072266,47.077831268310604],[9.565026283264274,47.0792236328125],[9.564779281616325,47.07988357543945],[9.565229415893555,47.08115386962896],[9.565233230590877,47.0824546813966],[9.56481647491455,47.08578872680664],[9.56599235534668,47.08757019042969],[9.568676948547363,47.08955383300787],[9.57017993927002,47.090595245361385],[9.571592330932674,47.090240478515625],[9.572308540344295,47.09016036987305],[9.574068069457951,47.08972549438488],[9.575482368469181,47.09006881713873],[9.576276779174805,47.09043884277344],[9.577230453491211,47.090476989746094],[9.578450202941951,47.09016418457037]]],[[[9.520297050476017,47.08840179443365],[9.520764350891113,47.088081359863395],[9.521943092346305,47.08668136596691],[9.523845672607479,47.085208892822266],[9.52441596984869,47.08397674560547],[9.525534629821891,47.082309722900334],[9.52597713470459,47.08199310302746],[9.527317047119197,47.08137893676758],[9.530427932739258,47.080715179443416],[9.532883644104004,47.08055114746094],[9.53351879119873,47.08031845092779],[9.533622741699219,47.08003234863287],[9.533492088317928,47.07816696166992],[9.533248901367188,47.077194213867244],[9.532604217529297,47.07594299316406],[9.532619476318416,47.074172973632926],[9.533445358276424,47.07303237915039],[9.534388542175407,47.07103347778332],[9.53674125671398,47.0694313049317],[9.53707313537592,47.06905364990229],[9.539074897766113,47.0673561096192],[9.543462753295842,47.06346893310558],[9.542805671692008,47.06367111206055],[9.54129505157482,47.06369018554699],[9.540588378906364,47.06352996826166],[9.539322853088322,47.06296920776373],[9.537259101867733,47.06236648559576],[9.536281585693416,47.061851501464844],[9.534333229065055,47.06119918823242],[9.533588409423885,47.060863494873104],[9.530340194702148,47.06048202514654],[9.526580810546875,47.060150146484375],[9.525044441223201,47.059913635253906],[9.5211763381958,47.058898925781364],[9.52037525177002,47.05861282348644],[9.518556594848576,47.05748748779297],[9.517050743103084,47.056304931640625],[9.516166687011776,47.05589294433588],[9.514702796936149,47.05552673339844],[9.511492729187125,47.05502319335943],[9.509734153747559,47.05490875244152],[9.505618095397892,47.054779052734375],[9.503999710083065,47.05461883544922],[9.502702713012809,47.05421829223644],[9.501641273498592,47.053230285644474],[9.500997543335018,47.05295181274414],[9.50018405914318,47.052879333496094],[9.498941421508789,47.05309295654297],[9.498210906982365,47.0533332824707],[9.49693775177002,47.053966522216854],[9.495688438415584,47.05429458618164],[9.494722366332951,47.05437850952154],[9.493761062622013,47.054237365722656],[9.492628097534237,47.05357360839855],[9.49141979217535,47.052078247070256],[9.490390777587834,47.050472259521484],[9.489390373230094,47.04932403564459],[9.488775253295898,47.04887771606457],[9.487909317016602,47.0486297607423],[9.486986160278377,47.04861450195324],[9.486117362976188,47.04881668090826],[9.484723091125488,47.04978561401373],[9.484291076660213,47.050296783447266],[9.483546257019043,47.0520973205567],[9.483136177063102,47.05265426635748],[9.482522964477482,47.05311965942394],[9.481624603271484,47.05337142944336],[9.480647087097168,47.05337142944336],[9.479228973388729,47.053134918212834],[9.477802276611271,47.052715301513786],[9.47652721405035,47.053153991699276],[9.475506782531852,47.05393981933605],[9.473747253417969,47.056919097900504],[9.473479270935002,47.057628631591854],[9.473022460937557,47.059799194335994],[9.472598075866813,47.061256408691406],[9.472480773925838,47.06271362304699],[9.472725868225211,47.06413650512707],[9.473756790161133,47.06640625],[9.475933074951172,47.067523956298885],[9.47803020477295,47.06827926635748],[9.479024887084961,47.068767547607365],[9.48119258880621,47.069225311279354],[9.482848167419434,47.069862365722656],[9.484686851501579,47.070220947265625],[9.486343383789062,47.07087707519537],[9.488174438476676,47.07125473022455],[9.489826202392578,47.071918487548885],[9.491657257080135,47.07229995727545],[9.493304252624569,47.07296752929693],[9.495417594909725,47.07349014282238],[9.497279167175293,47.07450485229492],[9.498161315917969,47.07508087158209],[9.50233173370367,47.076744079589844],[9.503214836120662,47.07732391357422],[9.50507736206049,47.07834243774414],[9.507463455200309,47.079013824463004],[9.510472297668457,47.0807456970216],[9.514374732971191,47.08230590820318],[9.516198158264274,47.08340072631847],[9.517786979675407,47.08459472656256],[9.518619537353459,47.08595657348633],[9.519667625427246,47.08703994750988],[9.520297050476017,47.08840179443365]]]]},"properties":{"ID_0":129,"ISO":"LI-01","NAME_0":"Liechtenstein","ID_1":1,"NAME_1":"Balzers","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.541609764099121,47.194190979003906],[9.539749145507812,47.193801879882756],[9.538639068603459,47.19383239746094],[9.536021232605037,47.19427871704096],[9.534968376159782,47.19432830810558],[9.53461074829113,47.19454193115246],[9.534065246582088,47.195968627929744],[9.533782005310059,47.19625854492199],[9.530396461486816,47.197204589843864],[9.528856277465763,47.197566986083984],[9.525833129882812,47.19843673706066],[9.51574611663824,47.20114135742193],[9.515619277954158,47.20122909545904],[9.51453495025629,47.20335388183594],[9.511995315551815,47.208618164062614],[9.511882781982536,47.20873260498047],[9.509895324707145,47.212738037109375],[9.509610176086483,47.21379470825195],[9.509705543518123,47.21415328979492],[9.51041126251232,47.21420288085932],[9.512443542480469,47.21387863159191],[9.514204025268612,47.21390533447271],[9.514530181884822,47.21447372436535],[9.514554023742733,47.215259552001896],[9.514880180358944,47.215415954589844],[9.515897750854549,47.21540451049816],[9.516135215759334,47.215713500976676],[9.516131401062012,47.21800613403326],[9.51590538024908,47.2187118530274],[9.515919685363883,47.21962738037115],[9.5161647796632,47.220821380615234],[9.51643085479742,47.22104263305664],[9.517843246460075,47.221519470214844],[9.519245147705078,47.22174453735346],[9.520110130310115,47.222175598144645],[9.521462440490723,47.22309494018555],[9.522562026977482,47.22421264648443],[9.523641586303711,47.224857330322266],[9.527004241943303,47.22489929199219],[9.52849483489996,47.22581100463867],[9.52906417846691,47.225940704345646],[9.530200958252067,47.22592926025396],[9.53083705902111,47.22572326660162],[9.531636238098145,47.224430084228516],[9.532125473022518,47.22410583496105],[9.532995223999023,47.22391891479498],[9.53403186798107,47.224315643310604],[9.534320831298828,47.22479248046881],[9.535214424133414,47.225406646728516],[9.536211013794002,47.225486755371094],[9.53721618652338,47.22632217407221],[9.53776931762701,47.22651672363287],[9.53980922698986,47.22650146484381],[9.540045738220158,47.2265739440918],[9.541120529174918,47.22754287719732],[9.541256904602108,47.22783279418957],[9.542372703552246,47.22875213623047],[9.543604850769043,47.229438781738395],[9.545519828796387,47.230888366699276],[9.546755790710506,47.231338500976676],[9.547172546386719,47.231212615966854],[9.548102378845215,47.2301025390625],[9.548699378967285,47.2292098999024],[9.545474052429142,47.227722167968864],[9.543316841125545,47.226566314697266],[9.542384147644157,47.225856781005916],[9.541961669921989,47.22535324096691],[9.53952693939209,47.22558593750006],[9.53856277465826,47.22539138793945],[9.537915229797363,47.224956512451286],[9.535419464111328,47.22240066528326],[9.535713195800781,47.221828460693416],[9.537460327148438,47.22061538696289],[9.537448883056754,47.22021102905268],[9.53547573089594,47.21932601928711],[9.533875465393123,47.21867752075207],[9.53291320800787,47.2177352905274],[9.532232284545898,47.21629714965826],[9.532010078430176,47.21478652954107],[9.532665252685604,47.214008331298885],[9.53336334228527,47.21352005004894],[9.535696983337402,47.212203979492244],[9.536257743835506,47.2118186950683],[9.53871059417719,47.210426330566406],[9.539257049560547,47.21019744873041],[9.54205226898199,47.208721160888786],[9.542598724365348,47.20849227905279],[9.546312332153377,47.20652770996105],[9.546878814697266,47.206398010253906],[9.548519134521598,47.20769500732433],[9.549235343933162,47.208164215088004],[9.551129341125488,47.20828628540045],[9.55166244506836,47.20983123779297],[9.552401542663574,47.2103157043457],[9.553760528564453,47.21049880981445],[9.555923461914062,47.2108993530274],[9.558233261108455,47.21124649047846],[9.559557914734,47.21150970458996],[9.561559677124137,47.211490631103516],[9.56241416931158,47.21082687377941],[9.562966346740836,47.210216522216854],[9.564071655273551,47.208690643310604],[9.56481647491455,47.206909179687614],[9.565391540527457,47.20581054687494],[9.565010070800895,47.205398559570426],[9.563962936401424,47.20518112182617],[9.561599731445426,47.20455932617193],[9.559419631958008,47.20378494262707],[9.559388160705566,47.20347595214855],[9.560909271240348,47.202331542968864],[9.562644004821834,47.20139694213867],[9.563914299011287,47.201087951660156],[9.565652847290153,47.20085906982416],[9.567760467529354,47.19995498657238],[9.568808555603141,47.1993980407716],[9.569833755493278,47.19908905029308],[9.571951866149902,47.198726654052734],[9.573311805725098,47.19900131225597],[9.573970794677734,47.199028015136776],[9.575202941894531,47.198833465576286],[9.576495170593319,47.198207855224666],[9.57742691040039,47.197643280029354],[9.579450607299918,47.19623947143555],[9.58035945892334,47.196044921875114],[9.579378128051871,47.19517517089844],[9.574043273925781,47.189582824707145],[9.57404804229742,47.189506530761776],[9.571502685546989,47.190563201904354],[9.569760322570744,47.191204071045036],[9.566934585571346,47.190574645996094],[9.566166877746582,47.19047164916992],[9.564974784851074,47.19204711914074],[9.564505577087402,47.19313049316412],[9.564373016357536,47.193786621093864],[9.564245223998967,47.195343017578125],[9.564042091369686,47.195774078369254],[9.56397628784191,47.19688034057623],[9.563312530517578,47.197952270507926],[9.561674118042049,47.19976806640625],[9.558999061584473,47.20019149780268],[9.556290626525993,47.200717926025504],[9.556182861328182,47.20136642456055],[9.55462646484375,47.20244216918957],[9.553669929504451,47.20281982421875],[9.55183315277111,47.203689575195426],[9.551348686218375,47.20381546020502],[9.550765991210938,47.20356369018566],[9.549203872680721,47.202507019043026],[9.550237655639705,47.20092010498047],[9.552557945251522,47.2004013061524],[9.552675247192496,47.19923019409174],[9.55191707611084,47.198837280273494],[9.550225257873535,47.19863510131847],[9.548921585083008,47.19832611083996],[9.547391891479549,47.1977424621582],[9.544366836547852,47.19626998901373],[9.5436429977417,47.19623947143555],[9.542361259460506,47.1963996887207],[9.541946411132926,47.19599151611334],[9.541924476623592,47.19522094726568],[9.541609764099121,47.194190979003906]]],[[[9.506508827209586,47.196231842041016],[9.506250381469783,47.19620895385742],[9.505008697509822,47.19538116455078],[9.503333091735897,47.19438934326172],[9.5023193359375,47.19370269775396],[9.500643730163688,47.192710876464844],[9.499406814575252,47.19187545776373],[9.496100425720272,47.18988800048834],[9.495682716369629,47.19002151489269],[9.495150566101074,47.19089126586914],[9.493168830871639,47.19366455078125],[9.49134445190424,47.194614410400504],[9.489552497863826,47.1953697204591],[9.489740371704215,47.19752502441412],[9.49057865142828,47.19814682006836],[9.491238594055176,47.19896697998047],[9.491748809814453,47.19996643066406],[9.492635726928768,47.20082473754883],[9.493412971496696,47.20221328735357],[9.494302749633903,47.203052520751896],[9.495091438293514,47.20444107055664],[9.495942115783748,47.205303192138786],[9.496218681335563,47.20580673217779],[9.49655914306652,47.207248687744084],[9.49692535400402,47.20802307128912],[9.497783660888786,47.208881378173885],[9.498561859130973,47.2102622985841],[9.499592781066895,47.20953369140631],[9.502683639526367,47.208251953125114],[9.503254890441895,47.20847702026373],[9.504289627075195,47.20919799804699],[9.504866600036678,47.20927429199219],[9.505791664123535,47.20841217041021],[9.505634307861271,47.20811080932623],[9.503619194030819,47.20666503906256],[9.502270698547363,47.20559692382824],[9.501064300537053,47.204326629638786],[9.499810218811149,47.20314788818354],[9.498820304870605,47.20191192626959],[9.497920036315975,47.20096588134771],[9.496440887451286,47.1997909545899],[9.496377944946346,47.19881820678722],[9.496732711791935,47.197834014892635],[9.498873710632381,47.1967887878418],[9.499299049377441,47.19678497314459],[9.500276565551758,47.19726943969738],[9.500826835632438,47.19736099243164],[9.502737045288143,47.19737243652355],[9.503067016601506,47.19778442382824],[9.503069877624569,47.19852828979492],[9.503293991088924,47.199100494384766],[9.503314971923942,47.20007705688482],[9.503524780273494,47.20048141479498],[9.503545761108512,47.20145797729498],[9.503713607788143,47.201713562011776],[9.503831863403434,47.20288848876959],[9.504384994506836,47.20298385620123],[9.509929656982479,47.200637817382926],[9.510211944580021,47.200088500976506],[9.510225296020508,47.199459075927734],[9.51061058044445,47.19791030883789],[9.510848999023551,47.1960830688476],[9.508604049682617,47.19609069824213],[9.507832527160645,47.196231842041016],[9.506508827209586,47.196231842041016]]],[[[9.553877830505428,47.19383239746094],[9.552948951721248,47.19468307495117],[9.55315971374523,47.196773529052734],[9.553644180297965,47.19724655151373],[9.554675102233887,47.19747543334972],[9.556504249572697,47.19561386108393],[9.558643341064567,47.194686889648494],[9.559856414794922,47.19446182250971],[9.562308311462516,47.19387817382818],[9.563220977783317,47.19377517700201],[9.563129425048885,47.192665100097656],[9.562907218933105,47.19198608398443],[9.562851905822754,47.19100952148443],[9.562108993530387,47.1899795532226],[9.559449195861873,47.19047927856445],[9.558087348938102,47.19011688232433],[9.556592941284293,47.19215393066412],[9.55537033081066,47.19285202026373],[9.553877830505428,47.19383239746094]]]]},"properties":{"ID_0":129,"ISO":"LI-02","NAME_0":"Liechtenstein","ID_1":2,"NAME_1":"Eschen","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.527401924133244,47.19524002075195],[9.52500915527338,47.19541168212896],[9.524608612060604,47.195526123046875],[9.522101402282829,47.19572830200201],[9.518890380859318,47.19571304321295],[9.51710414886486,47.19590377807623],[9.513752937316951,47.19591522216797],[9.512870788574276,47.196044921875114],[9.510848999023551,47.1960830688476],[9.51061058044445,47.19791030883789],[9.510225296020508,47.199459075927734],[9.510211944580021,47.200088500976506],[9.509929656982479,47.200637817382926],[9.504384994506836,47.20298385620123],[9.503831863403434,47.20288848876959],[9.503713607788143,47.201713562011776],[9.503545761108512,47.20145797729498],[9.503524780273494,47.20048141479498],[9.503314971923942,47.20007705688482],[9.503293991088924,47.199100494384766],[9.503069877624569,47.19852828979492],[9.503067016601506,47.19778442382824],[9.502737045288143,47.19737243652355],[9.500826835632438,47.19736099243164],[9.500276565551758,47.19726943969738],[9.499299049377441,47.19678497314459],[9.498873710632381,47.1967887878418],[9.496732711791935,47.197834014892635],[9.496377944946346,47.19881820678722],[9.496440887451286,47.1997909545899],[9.497920036315975,47.20096588134771],[9.498820304870605,47.20191192626959],[9.499810218811149,47.20314788818354],[9.501064300537053,47.204326629638786],[9.502270698547363,47.20559692382824],[9.503619194030819,47.20666503906256],[9.505634307861271,47.20811080932623],[9.505791664123535,47.20841217041021],[9.504866600036678,47.20927429199219],[9.504289627075195,47.20919799804699],[9.503254890441895,47.20847702026373],[9.502683639526367,47.208251953125114],[9.499592781066895,47.20953369140631],[9.498561859130973,47.2102622985841],[9.499258041381836,47.21091079711914],[9.499633789062443,47.21169662475586],[9.5000257492066,47.21355056762695],[9.501094818115234,47.215522766113395],[9.501627922058105,47.21808624267578],[9.502681732177791,47.22005844116211],[9.50312519073492,47.22230529785162],[9.503519058227539,47.22320556640625],[9.505125999450797,47.22546386718744],[9.506517410278434,47.22703933715832],[9.507658958435059,47.22805786132818],[9.508508682250977,47.22941207885742],[9.510663986206055,47.23102951049816],[9.51103687286377,47.231395721435604],[9.511678695678768,47.23255920410156],[9.512714385986328,47.23362731933605],[9.513540267944336,47.235000610351506],[9.514481544494743,47.23569107055664],[9.514639854431266,47.23545074462896],[9.515866279602108,47.234916687011776],[9.517171859741211,47.23446273803722],[9.518836975097713,47.23507308959972],[9.520304679870549,47.235916137695426],[9.521640777588004,47.236522674560604],[9.522212982177848,47.23637390136719],[9.523536682128906,47.235435485839844],[9.524320602417049,47.234653472900504],[9.524270057678166,47.233737945556754],[9.52453517913824,47.23351669311535],[9.52660274505621,47.23298263549816],[9.527308464050407,47.232498168945426],[9.527794837951717,47.231323242187614],[9.527848243713493,47.23000335693371],[9.528978347778377,47.22920227050787],[9.531948089599723,47.22915649414068],[9.531615257263297,47.22874832153332],[9.531616210937557,47.22786331176758],[9.532670021057129,47.22734832763683],[9.533616065978947,47.2273063659668],[9.535633087158203,47.22771453857433],[9.536569595336971,47.22772598266607],[9.537790298462028,47.22743225097656],[9.53913593292242,47.22743225097656],[9.539800643921012,47.227577209472656],[9.541120529174918,47.22754287719732],[9.540045738220158,47.2265739440918],[9.53980922698986,47.22650146484381],[9.53776931762701,47.22651672363287],[9.53721618652338,47.22632217407221],[9.536211013794002,47.225486755371094],[9.535214424133414,47.225406646728516],[9.534320831298828,47.22479248046881],[9.53403186798107,47.224315643310604],[9.532995223999023,47.22391891479498],[9.532125473022518,47.22410583496105],[9.531636238098145,47.224430084228516],[9.53083705902111,47.22572326660162],[9.530200958252067,47.22592926025396],[9.52906417846691,47.225940704345646],[9.52849483489996,47.22581100463867],[9.527004241943303,47.22489929199219],[9.523641586303711,47.224857330322266],[9.522562026977482,47.22421264648443],[9.521462440490723,47.22309494018555],[9.520110130310115,47.222175598144645],[9.519245147705078,47.22174453735346],[9.517843246460075,47.221519470214844],[9.51643085479742,47.22104263305664],[9.5161647796632,47.220821380615234],[9.515919685363883,47.21962738037115],[9.51590538024908,47.2187118530274],[9.516131401062012,47.21800613403326],[9.516135215759334,47.215713500976676],[9.515897750854549,47.21540451049816],[9.514880180358944,47.215415954589844],[9.514554023742733,47.215259552001896],[9.514530181884822,47.21447372436535],[9.514204025268612,47.21390533447271],[9.512443542480469,47.21387863159191],[9.51041126251232,47.21420288085932],[9.509705543518123,47.21415328979492],[9.509610176086483,47.21379470825195],[9.509895324707145,47.212738037109375],[9.511882781982536,47.20873260498047],[9.511995315551815,47.208618164062614],[9.51453495025629,47.20335388183594],[9.515619277954158,47.20122909545904],[9.51574611663824,47.20114135742193],[9.525833129882812,47.19843673706066],[9.528856277465763,47.197566986083984],[9.530396461486816,47.197204589843864],[9.533782005310059,47.19625854492199],[9.534065246582088,47.195968627929744],[9.53461074829113,47.19454193115246],[9.53327560424816,47.19459915161144],[9.529522895812988,47.19504547119146],[9.528377532958984,47.1950798034668],[9.527401924133244,47.19524002075195]]],[[[9.553877830505428,47.19383239746094],[9.55231952667242,47.19310379028332],[9.552102088928166,47.19342041015619],[9.551010131835938,47.19402313232422],[9.548354148864803,47.19514465332031],[9.545568466186523,47.195137023925724],[9.544754981994686,47.194900512695426],[9.541609764099121,47.194190979003906],[9.541924476623592,47.19522094726568],[9.541946411132926,47.19599151611334],[9.542361259460506,47.1963996887207],[9.5436429977417,47.19623947143555],[9.544366836547852,47.19626998901373],[9.547391891479549,47.1977424621582],[9.548921585083008,47.19832611083996],[9.550225257873535,47.19863510131847],[9.55191707611084,47.198837280273494],[9.552675247192496,47.19923019409174],[9.552557945251522,47.2004013061524],[9.550237655639705,47.20092010498047],[9.549203872680721,47.202507019043026],[9.550765991210938,47.20356369018566],[9.551348686218375,47.20381546020502],[9.55183315277111,47.203689575195426],[9.553669929504451,47.20281982421875],[9.55462646484375,47.20244216918957],[9.556182861328182,47.20136642456055],[9.556290626525993,47.200717926025504],[9.558999061584473,47.20019149780268],[9.561674118042049,47.19976806640625],[9.563312530517578,47.197952270507926],[9.56397628784191,47.19688034057623],[9.564042091369686,47.195774078369254],[9.564245223998967,47.195343017578125],[9.564373016357536,47.193786621093864],[9.563220977783317,47.19377517700201],[9.562308311462516,47.19387817382818],[9.559856414794922,47.19446182250971],[9.558643341064567,47.194686889648494],[9.556504249572697,47.19561386108393],[9.554675102233887,47.19747543334972],[9.553644180297965,47.19724655151373],[9.55315971374523,47.196773529052734],[9.552948951721248,47.19468307495117],[9.553877830505428,47.19383239746094]]]]},"properties":{"ID_0":129,"ISO":"LI-03","NAME_0":"Liechtenstein","ID_1":3,"NAME_1":"Gamprin","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.58035945892334,47.196044921875114],[9.579450607299918,47.19623947143555],[9.57742691040039,47.197643280029354],[9.576495170593319,47.198207855224666],[9.575202941894531,47.198833465576286],[9.573970794677734,47.199028015136776],[9.573311805725098,47.19900131225597],[9.571951866149902,47.198726654052734],[9.569833755493278,47.19908905029308],[9.568808555603141,47.1993980407716],[9.567760467529354,47.19995498657238],[9.565652847290153,47.20085906982416],[9.563914299011287,47.201087951660156],[9.562644004821834,47.20139694213867],[9.560909271240348,47.202331542968864],[9.559388160705566,47.20347595214855],[9.559419631958008,47.20378494262707],[9.561599731445426,47.20455932617193],[9.563962936401424,47.20518112182617],[9.565010070800895,47.205398559570426],[9.565391540527457,47.20581054687494],[9.56481647491455,47.206909179687614],[9.564071655273551,47.208690643310604],[9.562966346740836,47.210216522216854],[9.56241416931158,47.21082687377941],[9.561559677124137,47.211490631103516],[9.559557914734,47.21150970458996],[9.558233261108455,47.21124649047846],[9.555923461914062,47.2108993530274],[9.553760528564453,47.21049880981445],[9.552401542663574,47.2103157043457],[9.55166244506836,47.20983123779297],[9.551129341125488,47.20828628540045],[9.549235343933162,47.208164215088004],[9.548519134521598,47.20769500732433],[9.546878814697266,47.206398010253906],[9.546312332153377,47.20652770996105],[9.542598724365348,47.20849227905279],[9.54205226898199,47.208721160888786],[9.539257049560547,47.21019744873041],[9.53871059417719,47.210426330566406],[9.536257743835506,47.2118186950683],[9.535696983337402,47.212203979492244],[9.53336334228527,47.21352005004894],[9.532665252685604,47.214008331298885],[9.532010078430176,47.21478652954107],[9.532232284545898,47.21629714965826],[9.53291320800787,47.2177352905274],[9.533875465393123,47.21867752075207],[9.53547573089594,47.21932601928711],[9.537448883056754,47.22021102905268],[9.537460327148438,47.22061538696289],[9.535713195800781,47.221828460693416],[9.535419464111328,47.22240066528326],[9.537915229797363,47.224956512451286],[9.53856277465826,47.22539138793945],[9.53952693939209,47.22558593750006],[9.541961669921989,47.22535324096691],[9.542384147644157,47.225856781005916],[9.543316841125545,47.226566314697266],[9.545474052429142,47.227722167968864],[9.548699378967285,47.2292098999024],[9.550085067749137,47.22941207885742],[9.551541328430233,47.23101425170904],[9.553374290466422,47.2321014404298],[9.55803203582775,47.233657836914006],[9.559212684631348,47.23363876342779],[9.559412002563477,47.23432159423834],[9.560407638549918,47.23441696166998],[9.561794281005916,47.23377990722662],[9.562751770019645,47.23352813720703],[9.560519218444938,47.231781005859375],[9.555758476257438,47.226287841796875],[9.56027889251709,47.22320175170904],[9.568005561828727,47.22059631347662],[9.575373649597282,47.21707153320307],[9.580353736877441,47.21214675903332],[9.587104797363338,47.204689025878906],[9.585050582885742,47.20019531250006],[9.58035945892334,47.196044921875114]]]},"properties":{"ID_0":129,"ISO":"LI-04","NAME_0":"Liechtenstein","ID_1":4,"NAME_1":"Mauren","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.534968376159782,47.19432830810558],[9.539168357849178,47.19131469726557],[9.539181709289664,47.19080352783203],[9.53829574584961,47.189758300781364],[9.53775405883789,47.18935012817383],[9.537254333496094,47.18954849243164],[9.536029815673828,47.190402984619254],[9.534364700317496,47.19141006469721],[9.533135414123592,47.192260742187614],[9.532010078430176,47.19289779663097],[9.528537750244084,47.193912506103516],[9.528130531311035,47.19414520263683],[9.527401924133244,47.19524002075195],[9.528377532958984,47.1950798034668],[9.529522895812988,47.19504547119146],[9.53327560424816,47.19459915161144],[9.53461074829113,47.19454193115246],[9.534968376159782,47.19432830810558]]],[[[9.562049865722656,47.16845321655279],[9.562165260315055,47.16864013671875],[9.564599990844727,47.170833587646484],[9.566246032714844,47.17171096801769],[9.56688022613531,47.17267227172863],[9.568060874939079,47.173904418945426],[9.566065788269157,47.174785614013786],[9.563993453979549,47.17562484741211],[9.563168525695858,47.176025390625114],[9.561127662658691,47.176841735839844],[9.559089660644645,47.17778778076172],[9.557593345642033,47.1785888671875],[9.557040214538631,47.17868804931652],[9.55508804321289,47.178710937500114],[9.553160667419547,47.17884063720709],[9.5527982711792,47.178638458251896],[9.55203628540039,47.1776123046875],[9.551063537597713,47.1775016784668],[9.548356056213379,47.17796325683588],[9.547080039978141,47.17823410034191],[9.545467376709098,47.17846679687506],[9.544983863830623,47.1786994934082],[9.544934272766227,47.18067550659191],[9.544747352600154,47.181331634521484],[9.544695854187125,47.18268966674805],[9.54380893707281,47.18391799926769],[9.542408943176326,47.185104370117244],[9.540420532226676,47.185981750488224],[9.540375709533748,47.186157226562614],[9.541814804077205,47.18809890747076],[9.542830467224178,47.18988418579096],[9.54367828369152,47.190929412841854],[9.544022560119686,47.191013336181754],[9.545532226562557,47.19056701660156],[9.546088218689022,47.190589904785156],[9.547424316406307,47.191196441650504],[9.548851013183537,47.19203948974621],[9.550322532653922,47.19222259521496],[9.551301956176815,47.19223022460949],[9.552428245544547,47.19241333007824],[9.55328369140625,47.192741394043026],[9.554032325744629,47.19224929809576],[9.555878639221305,47.191562652588004],[9.556786537170467,47.190830230713004],[9.557304382324219,47.18988800048834],[9.558087348938102,47.19011688232433],[9.559449195861873,47.19047927856445],[9.562108993530387,47.1899795532226],[9.562851905822754,47.19100952148443],[9.562907218933105,47.19198608398443],[9.563129425048885,47.192665100097656],[9.563220977783317,47.19377517700201],[9.564373016357536,47.193786621093864],[9.564505577087402,47.19313049316412],[9.564974784851074,47.19204711914074],[9.566166877746582,47.19047164916992],[9.566934585571346,47.190574645996094],[9.569760322570744,47.191204071045036],[9.571502685546989,47.190563201904354],[9.57404804229742,47.189506530761776],[9.574464797973633,47.18350601196295],[9.576675415039176,47.175765991210994],[9.5791597366333,47.17144012451183],[9.585666656494197,47.16753387451172],[9.591814994812125,47.16423416137701],[9.591519355773926,47.163558959960994],[9.590279579162598,47.16252899169922],[9.589997291564998,47.162040710449276],[9.589962959289494,47.161396026611385],[9.589535713195914,47.160514831543026],[9.587920188903752,47.15939331054693],[9.587216377258358,47.1590461730957],[9.586174964904842,47.157981872558594],[9.585694313049316,47.157993316650504],[9.582521438598633,47.15863037109381],[9.579546928405819,47.15974426269537],[9.57619953155529,47.161598205566406],[9.575639724731445,47.16198348999035],[9.573305130004826,47.163299560546875],[9.570070266723576,47.16523361206066],[9.56952285766613,47.1654624938966],[9.567391395568848,47.166618347168026],[9.562049865722656,47.16845321655279]],[[9.549130439758414,47.181339263916016],[9.549950599670467,47.181331634521484],[9.550516128540096,47.181148529052734],[9.550571441650447,47.180362701416016],[9.551679611206055,47.180252075195256],[9.552226066589355,47.18038940429699],[9.553634643554688,47.18038940429699],[9.55432415008545,47.180603027343864],[9.554496765136776,47.18128967285162],[9.55333137512207,47.18232345581055],[9.552705764770451,47.18254470825201],[9.551069259643668,47.18254089355463],[9.550565719604492,47.18264770507818],[9.550058364868164,47.18319702148443],[9.549541473388672,47.183467864990234],[9.548400878906307,47.18349456787104],[9.547875404358024,47.18325424194336],[9.547910690307617,47.18199920654297],[9.549130439758414,47.181339263916016]]],[[[9.53565788269043,47.18542861938482],[9.5343399047851,47.18604278564453],[9.533636093139705,47.186813354492244],[9.533674240112418,47.187252044677734],[9.534094810485954,47.187808990478516],[9.534637451171932,47.18781661987305],[9.536938667297306,47.18695449829107],[9.537169456482047,47.18606185913097],[9.537016868591309,47.18574142456055],[9.53565788269043,47.18542861938482]]]]},"properties":{"ID_0":129,"ISO":"LI-05","NAME_0":"Liechtenstein","ID_1":5,"NAME_1":"Planken","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.557664871215763,47.25391006469732],[9.55709171295166,47.25407791137701],[9.554669380188102,47.25211334228527],[9.551987648010254,47.25027847290045],[9.549854278564567,47.248985290527344],[9.547944068908691,47.24768829345709],[9.546149253845158,47.24662017822277],[9.544513702392692,47.24580383300787],[9.543130874633903,47.244869232177734],[9.54110431671154,47.243347167968864],[9.541130065918026,47.24293518066412],[9.54422760009777,47.24079513549816],[9.546731948852596,47.23969650268555],[9.550588607788143,47.241382598876896],[9.551399230957088,47.24185562133795],[9.554589271545353,47.24402618408203],[9.557210922241211,47.24557495117193],[9.55848312377924,47.24620056152355],[9.558651924133414,47.24573516845703],[9.557319641113338,47.24383926391613],[9.555714607238826,47.241828918457145],[9.552813529968319,47.23983764648443],[9.552267074584961,47.23960876464844],[9.550046920776424,47.238410949707145],[9.548787117004395,47.237247467041016],[9.548299789428768,47.23692321777344],[9.54602432250988,47.23612594604498],[9.544427871704158,47.23549270629883],[9.542285919189453,47.23451614379877],[9.539756774902344,47.23354339599615],[9.538070678710994,47.232402801513786],[9.53655147552496,47.23238754272472],[9.535992622375431,47.23250579833996],[9.534585952758732,47.23237609863281],[9.531948089599723,47.22915649414068],[9.528978347778377,47.22920227050787],[9.527848243713493,47.23000335693371],[9.527794837951717,47.231323242187614],[9.527308464050407,47.232498168945426],[9.52660274505621,47.23298263549816],[9.52453517913824,47.23351669311535],[9.524270057678166,47.233737945556754],[9.524320602417049,47.234653472900504],[9.523536682128906,47.235435485839844],[9.522212982177848,47.23637390136719],[9.521640777588004,47.236522674560604],[9.520304679870549,47.235916137695426],[9.518836975097713,47.23507308959972],[9.517171859741211,47.23446273803722],[9.515866279602108,47.234916687011776],[9.514639854431266,47.23545074462896],[9.514481544494743,47.23569107055664],[9.516075134277344,47.236991882324276],[9.516718864440918,47.238151550293026],[9.517757415771541,47.239215850830135],[9.518397331237736,47.240390777588004],[9.51953506469738,47.24142074584961],[9.520858764648438,47.243019104003906],[9.521755218505916,47.244873046875114],[9.522731781005916,47.24601364135742],[9.523406982421932,47.2482261657716],[9.524390220642204,47.249366760253906],[9.525094985961914,47.2509651184082],[9.525983810424862,47.2522811889649],[9.526695251464957,47.25387573242182],[9.527710914611816,47.2549934387207],[9.528420448303336,47.25658035278326],[9.529437065124625,47.2581901550293],[9.530091285705623,47.2599334716798],[9.530777931213379,47.26100540161144],[9.531212806701717,47.26222610473633],[9.531309127807617,47.263210296630916],[9.53127193450922,47.26555633544922],[9.531122207641715,47.26689910888672],[9.530624389648494,47.268863677978516],[9.531498908996639,47.269851684570426],[9.53242397308344,47.270538330078125],[9.533723831176815,47.27172851562506],[9.53676986694336,47.26923751831049],[9.541468620300236,47.26591873168951],[9.547369956970272,47.2606468200683],[9.555706977844238,47.25563049316406],[9.557664871215763,47.25391006469732]]]},"properties":{"ID_0":129,"ISO":"LI-06","NAME_0":"Liechtenstein","ID_1":6,"NAME_1":"Ruggell","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.562049865722656,47.16845321655279],[9.561513900756893,47.16805267333979],[9.56003189086914,47.166427612304744],[9.559470176696891,47.16604614257818],[9.557679176330566,47.16451644897455],[9.557472229003906,47.164096832275504],[9.553492546081486,47.16546630859381],[9.551700592041072,47.165626525878906],[9.549828529357853,47.165706634521484],[9.54916000366211,47.16582489013672],[9.5451402664184,47.16568756103521],[9.542468070983887,47.16570281982433],[9.538898468017578,47.1654052734375],[9.53714370727539,47.16542434692394],[9.531831741333065,47.16663360595709],[9.527144432067871,47.16727066040045],[9.525705337524471,47.1671981811524],[9.524082183837947,47.16493225097662],[9.52334022521967,47.164737701416016],[9.521799087524357,47.164714813232365],[9.52145099639904,47.16450881958019],[9.521655082702637,47.16334915161144],[9.52164173126232,47.16204833984381],[9.52186107635498,47.161117553710994],[9.52187347412115,47.160228729248104],[9.52164268493658,47.15996170043945],[9.518658638000488,47.15948867797857],[9.51556301116949,47.15860748291021],[9.51522445678711,47.158622741699276],[9.512358665466422,47.15972137451172],[9.510528564453125,47.160503387451286],[9.510066032409668,47.16085433959972],[9.509372711181697,47.162857055664176],[9.508904457092342,47.16477584838867],[9.508279800415039,47.16664505004883],[9.508276939392147,47.16765594482433],[9.508703231811637,47.16835784912115],[9.508698463439998,47.16872024536127],[9.505706787109489,47.16923522949219],[9.505151748657283,47.16925811767578],[9.502585411071834,47.169681549072266],[9.500759124755916,47.16987991333008],[9.497811317443848,47.16990280151367],[9.497335433959961,47.169734954833984],[9.497377395629996,47.169200897216854],[9.49775409698492,47.1682014465332],[9.498480796813965,47.16551208496105],[9.502605438232422,47.16307449340826],[9.503390312194824,47.16253280639654],[9.509288787841797,47.159057617187614],[9.50928783416748,47.15882110595709],[9.50849437713623,47.15813827514654],[9.508448600769157,47.15780258178722],[9.509914398193416,47.15692138671881],[9.510419845581168,47.15541458129883],[9.51047134399414,47.15489578247076],[9.510885238647461,47.15347290039068],[9.511697769164982,47.151973724365234],[9.512267112731934,47.1506805419923],[9.512571334838867,47.15023803710943],[9.514372825622615,47.148742675781364],[9.515815734863395,47.14743804931652],[9.516776084899846,47.14669036865229],[9.51655483245861,47.14618682861334],[9.514573097229004,47.145603179931754],[9.513500213623047,47.14537811279297],[9.513134956359863,47.14545822143555],[9.512346267700252,47.14736938476568],[9.511103630066032,47.148403167724666],[9.509214401245174,47.15032196044922],[9.506190299987736,47.152965545654354],[9.505641937255803,47.15312576293945],[9.503282546997184,47.153133392333984],[9.501753807067871,47.15298461914057],[9.50318908691412,47.151245117187614],[9.508982658386287,47.14545822143555],[9.511313438415527,47.139144897460994],[9.5100612640382,47.14085769653332],[9.508357048034668,47.142646789550895],[9.50655460357666,47.143905639648494],[9.505089759826717,47.14477539062494],[9.504158973693904,47.1454963684082],[9.50330734252941,47.14697647094721],[9.502038002014217,47.14825820922863],[9.501190185546875,47.149898529052734],[9.500234603881893,47.151264190673885],[9.4994153976441,47.15290069580084],[9.49849987030035,47.15384674072271],[9.49760723114008,47.15527343749994],[9.496502876281681,47.15640258789074],[9.495780944824332,47.15760040283203],[9.494672775268555,47.158729553222656],[9.493952751159782,47.15993118286144],[9.49304485321045,47.160858154296875],[9.492718696594238,47.16134643554699],[9.490986824035588,47.16523742675781],[9.490234375000114,47.16817092895508],[9.48907661437994,47.17021179199219],[9.488446235656852,47.172817230224666],[9.487024307251033,47.17710113525396],[9.48683071136469,47.17811965942383],[9.486401557922306,47.18183898925781],[9.486691474914608,47.18476486206055],[9.486914634704647,47.185714721679744],[9.487996101379395,47.18848037719732],[9.488334655761832,47.1918678283692],[9.488494873046932,47.19251632690441],[9.489552497863826,47.1953697204591],[9.49134445190424,47.194614410400504],[9.493168830871639,47.19366455078125],[9.495150566101074,47.19089126586914],[9.495682716369629,47.19002151489269],[9.496100425720272,47.18988800048834],[9.499406814575252,47.19187545776373],[9.500643730163688,47.192710876464844],[9.5023193359375,47.19370269775396],[9.503333091735897,47.19438934326172],[9.505008697509822,47.19538116455078],[9.506250381469783,47.19620895385742],[9.506508827209586,47.196231842041016],[9.50699234008789,47.195770263671875],[9.507673263549862,47.19421005249029],[9.5086545944215,47.191745758056754],[9.509126663208065,47.19091415405279],[9.511455535888729,47.1889762878418],[9.511887550354004,47.188510894775504],[9.513572692871094,47.18522262573248],[9.513898849487248,47.18516159057617],[9.516261100769157,47.18515777587902],[9.517628669738883,47.18530654907221],[9.51999282836914,47.18529129028332],[9.521868705749512,47.185466766357536],[9.522001266479549,47.18566131591797],[9.52112102508545,47.18828582763672],[9.52108097076416,47.18870925903332],[9.520022392273006,47.19182205200195],[9.51932430267334,47.19439697265625],[9.518890380859318,47.19571304321295],[9.522101402282829,47.19572830200201],[9.524608612060604,47.195526123046875],[9.52500915527338,47.19541168212896],[9.527401924133244,47.19524002075195],[9.528130531311035,47.19414520263683],[9.528537750244084,47.193912506103516],[9.532010078430176,47.19289779663097],[9.533135414123592,47.192260742187614],[9.534364700317496,47.19141006469721],[9.536029815673828,47.190402984619254],[9.537254333496094,47.18954849243164],[9.53775405883789,47.18935012817383],[9.53829574584961,47.189758300781364],[9.539181709289664,47.19080352783203],[9.539168357849178,47.19131469726557],[9.534968376159782,47.19432830810558],[9.536021232605037,47.19427871704096],[9.538639068603459,47.19383239746094],[9.539749145507812,47.193801879882756],[9.541609764099121,47.194190979003906],[9.544754981994686,47.194900512695426],[9.545568466186523,47.195137023925724],[9.548354148864803,47.19514465332031],[9.551010131835938,47.19402313232422],[9.552102088928166,47.19342041015619],[9.55231952667242,47.19310379028332],[9.55328369140625,47.192741394043026],[9.552428245544547,47.19241333007824],[9.551301956176815,47.19223022460949],[9.550322532653922,47.19222259521496],[9.548851013183537,47.19203948974621],[9.547424316406307,47.191196441650504],[9.546088218689022,47.190589904785156],[9.545532226562557,47.19056701660156],[9.544022560119686,47.191013336181754],[9.54367828369152,47.190929412841854],[9.542830467224178,47.18988418579096],[9.541814804077205,47.18809890747076],[9.540375709533748,47.186157226562614],[9.540420532226676,47.185981750488224],[9.542408943176326,47.185104370117244],[9.54380893707281,47.18391799926769],[9.544695854187125,47.18268966674805],[9.544747352600154,47.181331634521484],[9.544934272766227,47.18067550659191],[9.544983863830623,47.1786994934082],[9.545467376709098,47.17846679687506],[9.547080039978141,47.17823410034191],[9.548356056213379,47.17796325683588],[9.551063537597713,47.1775016784668],[9.55203628540039,47.1776123046875],[9.5527982711792,47.178638458251896],[9.553160667419547,47.17884063720709],[9.55508804321289,47.178710937500114],[9.557040214538631,47.17868804931652],[9.557593345642033,47.1785888671875],[9.559089660644645,47.17778778076172],[9.561127662658691,47.176841735839844],[9.563168525695858,47.176025390625114],[9.563993453979549,47.17562484741211],[9.566065788269157,47.174785614013786],[9.568060874939079,47.173904418945426],[9.56688022613531,47.17267227172863],[9.566246032714844,47.17171096801769],[9.564599990844727,47.170833587646484],[9.562165260315055,47.16864013671875],[9.562049865722656,47.16845321655279]],[[9.523779869079704,47.17928314208996],[9.52520847320551,47.179260253906364],[9.525914192199707,47.17884826660162],[9.527123451232853,47.177040100097656],[9.52762603759777,47.1766929626466],[9.529483795165959,47.17609024047857],[9.529744148254395,47.17610549926769],[9.531755447387695,47.17811965942383],[9.530952453613281,47.17868423461914],[9.529458045959473,47.17955398559582],[9.528252601623649,47.180149078369254],[9.524856567382812,47.18125915527344],[9.524238586425724,47.18120574951166],[9.523482322692871,47.17947769165045],[9.523779869079704,47.17928314208996]],[[9.53565788269043,47.18542861938482],[9.537016868591309,47.18574142456055],[9.537169456482047,47.18606185913097],[9.536938667297306,47.18695449829107],[9.534637451171932,47.18781661987305],[9.534094810485954,47.187808990478516],[9.533674240112418,47.187252044677734],[9.533636093139705,47.186813354492244],[9.5343399047851,47.18604278564453],[9.53565788269043,47.18542861938482]]],[[[9.549130439758414,47.181339263916016],[9.547910690307617,47.18199920654297],[9.547875404358024,47.18325424194336],[9.548400878906307,47.18349456787104],[9.549541473388672,47.183467864990234],[9.550058364868164,47.18319702148443],[9.550565719604492,47.18264770507818],[9.551069259643668,47.18254089355463],[9.552705764770451,47.18254470825201],[9.55333137512207,47.18232345581055],[9.554496765136776,47.18128967285162],[9.55432415008545,47.180603027343864],[9.553634643554688,47.18038940429699],[9.552226066589355,47.18038940429699],[9.551679611206055,47.180252075195256],[9.550571441650447,47.180362701416016],[9.550516128540096,47.181148529052734],[9.549950599670467,47.181331634521484],[9.549130439758414,47.181339263916016]]],[[[9.58593654632574,47.11239242553722],[9.586169242858887,47.11341094970709],[9.58616733551031,47.11422348022461],[9.586401939392033,47.115257263183594],[9.586425781249943,47.11684417724615],[9.586584091186523,47.117069244384766],[9.586654663085938,47.118228912353516],[9.588163375854549,47.120838165283146],[9.588859558105582,47.12231063842785],[9.58934688568121,47.12358474731451],[9.589361190795955,47.12432098388683],[9.58957767486578,47.1248130798341],[9.589587211608887,47.125968933105526],[9.589333534240723,47.12643051147461],[9.586572647094783,47.12678527832037],[9.585640907287711,47.126846313476506],[9.582958221435547,47.12758255004883],[9.580820083618221,47.12776565551758],[9.5791597366333,47.12812423706055],[9.576967239379883,47.129257202148494],[9.57558631896967,47.1302871704101],[9.574546813964957,47.13130187988281],[9.573334693908691,47.1318931579591],[9.571809768676758,47.13245391845709],[9.570466995239258,47.13306427001959],[9.570005416870117,47.13356018066406],[9.569966316223145,47.13431930541998],[9.57025527954113,47.134830474853516],[9.571004867553768,47.13550567626959],[9.571797370910758,47.136798858642635],[9.572910308837947,47.1378631591798],[9.57337856292736,47.137886047363395],[9.57427978515625,47.137344360351506],[9.574846267700195,47.137348175048885],[9.575549125671444,47.1380233764649],[9.575536727905273,47.13922500610357],[9.57582855224615,47.13963317871088],[9.577318191528263,47.140563964843864],[9.578801155090389,47.14187622070324],[9.57951831817627,47.1422233581543],[9.581559181213436,47.143550872802734],[9.582489967346191,47.144718170166016],[9.582971572876033,47.14559555053722],[9.58321475982666,47.14641189575195],[9.583244323730469,47.14746856689453],[9.584264755248967,47.146953582763786],[9.58651447296154,47.14692306518566],[9.588143348693961,47.146602630615234],[9.590959548950252,47.14548110961914],[9.592647552490234,47.14464187622082],[9.59398460388195,47.1441764831543],[9.5952787399292,47.14385604858404],[9.596801757812557,47.14365768432623],[9.599121093750057,47.143634796142635],[9.600215911865348,47.1427574157716],[9.601682662963867,47.141914367675724],[9.60124683380127,47.14124679565424],[9.600462913513297,47.14055252075195],[9.598077774047965,47.13816833496094],[9.595783233642635,47.136631011963004],[9.593674659729118,47.136165618896484],[9.592606544494629,47.136001586914006],[9.589958190918026,47.135833740234375],[9.589412689208984,47.135379791259766],[9.590102195739803,47.134544372558594],[9.591365814209041,47.13332366943371],[9.591890335083065,47.132240295410156],[9.59367370605463,47.13105773925781],[9.594578742980957,47.13076782226568],[9.597175598144588,47.1307640075683],[9.598332405090446,47.130630493164176],[9.600103378295842,47.13059234619146],[9.602005004882926,47.13092422485363],[9.604048728942928,47.13067626953125],[9.605485916137809,47.12911224365246],[9.607747077941895,47.12885284423834],[9.609134674072322,47.12856292724604],[9.611018180847225,47.12858581542969],[9.611698150634709,47.12876510620123],[9.612332344055176,47.12816238403326],[9.612424850463924,47.127483367920036],[9.612973213195858,47.126659393310604],[9.61305236816412,47.12511062622076],[9.61344242095953,47.12428665161133],[9.613471031188908,47.12359237670904],[9.61392784118658,47.1222038269043],[9.614415168762207,47.12197875976568],[9.616698265075797,47.12158584594738],[9.61826229095459,47.121120452880916],[9.619814872741813,47.120559692382756],[9.623212814331055,47.1195526123048],[9.6249361038208,47.118690490722656],[9.625291824340877,47.118408203125114],[9.625276565551815,47.11771774291998],[9.62199592590332,47.11378097534174],[9.623601913452148,47.11270141601574],[9.622380256652946,47.11160659790045],[9.621857643127498,47.11093521118164],[9.620160102844238,47.11117553710949],[9.616827011108455,47.11192321777355],[9.615572929382381,47.112129211425895],[9.613034248352164,47.11270904541027],[9.611791610717773,47.112579345703125],[9.609212875366325,47.112590789795036],[9.608530998230037,47.1124534606933],[9.607747077941895,47.112575531005916],[9.605732917785701,47.1126060485841],[9.603697776794547,47.11289596557617],[9.602036476135368,47.112937927246094],[9.601042747497672,47.11270904541027],[9.59986400604248,47.111938476562614],[9.598793983459586,47.11143112182623],[9.597637176513672,47.11112594604492],[9.596531867981014,47.11108779907238],[9.595531463623047,47.11065292358404],[9.593864440917912,47.11125183105469],[9.59202766418457,47.11164093017578],[9.590914726257324,47.112045288085994],[9.58818721771246,47.11211013793945],[9.586950302123967,47.112384796142635],[9.58593654632574,47.11239242553722]]],[[[9.606903076171932,47.06145477294922],[9.604759216308594,47.06243896484375],[9.604022026062125,47.0630989074707],[9.603471755981445,47.06378555297863],[9.602052688598746,47.064460754394645],[9.600484848022404,47.06539535522461],[9.599140167236328,47.06665420532238],[9.597415924072266,47.069133758545036],[9.594823837280273,47.07049179077143],[9.594768524169922,47.070663452148494],[9.597363471984977,47.0724334716798],[9.597530364990348,47.07269668579107],[9.596620559692383,47.07392501831049],[9.595169067382926,47.07573318481451],[9.594272613525447,47.07715225219738],[9.593734741210938,47.07854080200195],[9.592204093933049,47.081802368164176],[9.591191291809139,47.083576202392635],[9.589851379394474,47.08607482910156],[9.589436531066895,47.08720779418951],[9.590670585632438,47.08965301513666],[9.590238571166992,47.09056091308605],[9.589447021484489,47.0917205810548],[9.589349746704102,47.09226989746105],[9.591408729553166,47.09225845336914],[9.592469215393123,47.09205627441412],[9.595001220703068,47.09089279174799],[9.59888076782238,47.0899543762207],[9.602299690246639,47.08943557739258],[9.60379695892334,47.08913040161144],[9.605319976806697,47.08936691284174],[9.605642318725529,47.08895492553722],[9.606122970581112,47.087711334228516],[9.606130599975643,47.087078094482365],[9.606835365295524,47.08580780029308],[9.607737541198787,47.08501052856445],[9.609409332275334,47.083847045898494],[9.610334396362362,47.08282089233404],[9.6106214523316,47.08220672607433],[9.61131381988531,47.081245422363395],[9.611819267273063,47.080783843994084],[9.612391471862907,47.07979965209972],[9.612854957580623,47.07957458496094],[9.611610412597656,47.073883056640625],[9.607696533203182,47.062385559081974],[9.608528137207145,47.0617294311524],[9.607842445373535,47.06173324584961],[9.606903076171932,47.06145477294922]]]]},"properties":{"ID_0":129,"ISO":"LI-07","NAME_0":"Liechtenstein","ID_1":7,"NAME_1":"Schaan","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.541120529174918,47.22754287719732],[9.539800643921012,47.227577209472656],[9.53913593292242,47.22743225097656],[9.537790298462028,47.22743225097656],[9.536569595336971,47.22772598266607],[9.535633087158203,47.22771453857433],[9.533616065978947,47.2273063659668],[9.532670021057129,47.22734832763683],[9.531616210937557,47.22786331176758],[9.531615257263297,47.22874832153332],[9.531948089599723,47.22915649414068],[9.534585952758732,47.23237609863281],[9.535992622375431,47.23250579833996],[9.53655147552496,47.23238754272472],[9.538070678710994,47.232402801513786],[9.539756774902344,47.23354339599615],[9.542285919189453,47.23451614379877],[9.544427871704158,47.23549270629883],[9.54602432250988,47.23612594604498],[9.548299789428768,47.23692321777344],[9.548787117004395,47.237247467041016],[9.550046920776424,47.238410949707145],[9.552267074584961,47.23960876464844],[9.552813529968319,47.23983764648443],[9.555714607238826,47.241828918457145],[9.557319641113338,47.24383926391613],[9.558651924133414,47.24573516845703],[9.55848312377924,47.24620056152355],[9.557210922241211,47.24557495117193],[9.554589271545353,47.24402618408203],[9.551399230957088,47.24185562133795],[9.550588607788143,47.241382598876896],[9.546731948852596,47.23969650268555],[9.54422760009777,47.24079513549816],[9.541130065918026,47.24293518066412],[9.54110431671154,47.243347167968864],[9.543130874633903,47.244869232177734],[9.544513702392692,47.24580383300787],[9.546149253845158,47.24662017822277],[9.547944068908691,47.24768829345709],[9.549854278564567,47.248985290527344],[9.551987648010254,47.25027847290045],[9.554669380188102,47.25211334228527],[9.55709171295166,47.25407791137701],[9.557664871215763,47.25391006469732],[9.562507629394588,47.24965667724621],[9.570752143859863,47.24131774902344],[9.565988540649471,47.23605728149414],[9.562751770019645,47.23352813720703],[9.561794281005916,47.23377990722662],[9.560407638549918,47.23441696166998],[9.559412002563477,47.23432159423834],[9.559212684631348,47.23363876342779],[9.55803203582775,47.233657836914006],[9.553374290466422,47.2321014404298],[9.551541328430233,47.23101425170904],[9.550085067749137,47.22941207885742],[9.548699378967285,47.2292098999024],[9.548102378845215,47.2301025390625],[9.547172546386719,47.231212615966854],[9.546755790710506,47.231338500976676],[9.545519828796387,47.230888366699276],[9.543604850769043,47.229438781738395],[9.542372703552246,47.22875213623047],[9.541256904602108,47.22783279418957],[9.541120529174918,47.22754287719732]]]},"properties":{"ID_0":129,"ISO":"LI-08","NAME_0":"Liechtenstein","ID_1":8,"NAME_1":"Schellenberg","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.606903076171932,47.06145477294922],[9.605137825012264,47.06075668334955],[9.6035413742066,47.05989837646479],[9.601762771606445,47.059364318847656],[9.599795341491813,47.05847167968756],[9.59813213348383,47.058002471923885],[9.596026420593205,47.05759811401373],[9.59522342681879,47.0573616027832],[9.594378471374512,47.05692291259771],[9.593443870544377,47.05620193481445],[9.591348648071346,47.054843902587834],[9.588957786560115,47.054328918457145],[9.586412429809684,47.05354690551758],[9.583744049072322,47.052978515625114],[9.578428268432617,47.05258941650396],[9.576245307922306,47.05228805541998],[9.573045730590877,47.05197143554693],[9.57201290130621,47.05177688598644],[9.568143844604549,47.050464630126896],[9.566117286682186,47.0495223999024],[9.563658714294547,47.04853057861334],[9.56159782409668,47.04738235473644],[9.559906959533805,47.04797363281256],[9.55850696563715,47.04872512817394],[9.557161331176758,47.04986953735363],[9.55679702758789,47.05070877075195],[9.556622505187988,47.05375289916992],[9.556075096130314,47.056316375732536],[9.555791854858455,47.05713272094721],[9.554951667785701,47.058368682861385],[9.553329467773494,47.05950546264654],[9.551497459411564,47.06046295166027],[9.549157142639217,47.06108474731457],[9.546129226684627,47.062675476074276],[9.54441070556652,47.06309127807617],[9.543462753295842,47.06346893310558],[9.539074897766113,47.0673561096192],[9.53707313537592,47.06905364990229],[9.53674125671398,47.0694313049317],[9.534388542175407,47.07103347778332],[9.533445358276424,47.07303237915039],[9.532619476318416,47.074172973632926],[9.532604217529297,47.07594299316406],[9.533248901367188,47.077194213867244],[9.533492088317928,47.07816696166992],[9.533622741699219,47.08003234863287],[9.53351879119873,47.08031845092779],[9.532883644104004,47.08055114746094],[9.530427932739258,47.080715179443416],[9.527317047119197,47.08137893676758],[9.52597713470459,47.08199310302746],[9.525534629821891,47.082309722900334],[9.52441596984869,47.08397674560547],[9.523845672607479,47.085208892822266],[9.521943092346305,47.08668136596691],[9.520764350891113,47.088081359863395],[9.520297050476017,47.08840179443365],[9.521457672119254,47.090221405029354],[9.522146224975586,47.09194183349604],[9.523034095764217,47.093280792236385],[9.523332595825138,47.09418869018555],[9.523468971252555,47.09577178955078],[9.523488998413086,47.10192108154297],[9.52326774597168,47.10381317138672],[9.522190093994254,47.106475830078125],[9.52165412902832,47.108882904052734],[9.521401405334416,47.10955047607422],[9.520540237426758,47.11085510253906],[9.519659996032715,47.11244201660162],[9.518481254577694,47.11408233642578],[9.518926620483455,47.11526107788097],[9.51914024353033,47.11673355102545],[9.519094467163086,47.118587493896484],[9.51886177062994,47.120033264160156],[9.518378257751522,47.12149047851574],[9.517794609069938,47.124065399170036],[9.516649246215763,47.12678146362305],[9.520122528076286,47.12725448608404],[9.522657394409123,47.12742614746088],[9.523702621460018,47.127563476562614],[9.525723457336426,47.12754058837896],[9.527190208435115,47.1273651123048],[9.52840709686285,47.12711334228521],[9.530190467834473,47.12706375122076],[9.531365394592285,47.126926422119254],[9.533149719238395,47.12707901000988],[9.535031318664494,47.12519454956066],[9.535118103027287,47.12337493896496],[9.537251472473201,47.121349334716854],[9.53663444519043,47.12018203735357],[9.536668777465934,47.119865417480526],[9.538079261779842,47.118595123291016],[9.53984546661377,47.118141174316406],[9.540556907653865,47.11827468872076],[9.541628837585563,47.118240356445426],[9.542561531066951,47.11622619628906],[9.542627334594727,47.11588287353521],[9.542611122131348,47.1136093139649],[9.542328834533805,47.1122932434082],[9.541740417480582,47.11054229736334],[9.541461944580192,47.10937881469738],[9.541196823120117,47.10876846313488],[9.540406227111873,47.10770034790039],[9.540381431579704,47.107292175293026],[9.541988372802791,47.105484008789006],[9.54353046417242,47.10538482666021],[9.545356750488395,47.10563278198242],[9.547058105468807,47.10577392578131],[9.549174308776855,47.10586547851557],[9.553595542907658,47.10354614257824],[9.553914070129338,47.102966308593864],[9.554192543029899,47.10173416137707],[9.554456710815487,47.10115432739269],[9.557220458984489,47.099124908447266],[9.559114456176815,47.09766006469732],[9.56022739410406,47.09688568115246],[9.562365531921444,47.095802307128906],[9.562875747680664,47.095802307128906],[9.566934585571346,47.097415924072266],[9.567264556884766,47.09739303588867],[9.569965362548828,47.095165252685604],[9.569965362548828,47.0912704467774],[9.57017993927002,47.090595245361385],[9.568676948547363,47.08955383300787],[9.56599235534668,47.08757019042969],[9.56481647491455,47.08578872680664],[9.565233230590877,47.0824546813966],[9.565229415893555,47.08115386962896],[9.564779281616325,47.07988357543945],[9.565026283264274,47.0792236328125],[9.566165924072266,47.077831268310604],[9.567714691162166,47.07643890380871],[9.570391654968319,47.07458877563482],[9.573790550232047,47.074069976806754],[9.575619697570914,47.074066162109375],[9.577730178833008,47.07440948486328],[9.58054256439209,47.07546615600586],[9.582014083862305,47.076137542724666],[9.583672523498592,47.07652282714844],[9.584758758545036,47.07710647583019],[9.584549903869629,47.07814407348633],[9.582799911499023,47.079360961914006],[9.58157825469965,47.08006286621105],[9.580217361450195,47.08120727539074],[9.579791069030875,47.08209609985363],[9.579719543457145,47.08365631103521],[9.579532623291072,47.084217071533146],[9.579501152038574,47.085391998291016],[9.579257011413574,47.086280822753906],[9.578378677368221,47.08705520629894],[9.577409744262752,47.08773040771496],[9.577372550964355,47.08862304687506],[9.578154563903922,47.0895347595216],[9.578450202941951,47.09016418457037],[9.579318046569881,47.09068679809582],[9.580203056335392,47.091766357421875],[9.58068943023693,47.092746734619254],[9.580668449401912,47.093173980713004],[9.58019161224371,47.09441375732433],[9.579202651977653,47.09646987915039],[9.579150199890194,47.09685516357433],[9.57917594909668,47.10059738159191],[9.578960418701229,47.101093292236385],[9.579030036926326,47.10177993774414],[9.58131122589117,47.101821899414176],[9.582210540771541,47.10197067260742],[9.583660125732365,47.101974487304744],[9.585280418395996,47.10213088989269],[9.585198402404842,47.10025024414068],[9.585465431213493,47.09880828857416],[9.586145401000977,47.096778869628906],[9.586761474609489,47.09548950195318],[9.589056968688908,47.09244537353521],[9.589349746704102,47.09226989746105],[9.589447021484489,47.0917205810548],[9.590238571166992,47.09056091308605],[9.590670585632438,47.08965301513666],[9.589436531066895,47.08720779418951],[9.589851379394474,47.08607482910156],[9.591191291809139,47.083576202392635],[9.592204093933049,47.081802368164176],[9.593734741210938,47.07854080200195],[9.594272613525447,47.07715225219738],[9.595169067382926,47.07573318481451],[9.596620559692383,47.07392501831049],[9.597530364990348,47.07269668579107],[9.597363471984977,47.0724334716798],[9.594768524169922,47.070663452148494],[9.594823837280273,47.07049179077143],[9.597415924072266,47.069133758545036],[9.599140167236328,47.06665420532238],[9.600484848022404,47.06539535522461],[9.602052688598746,47.064460754394645],[9.603471755981445,47.06378555297863],[9.604022026062125,47.0630989074707],[9.604759216308594,47.06243896484375],[9.606903076171932,47.06145477294922]]]},"properties":{"ID_0":129,"ISO":"LI-09","NAME_0":"Liechtenstein","ID_1":9,"NAME_1":"Triesen","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.533149719238395,47.12707901000988],[9.535460472106877,47.1277122497558],[9.535939216613883,47.12889862060558],[9.536178588867244,47.13056182861334],[9.534354209899902,47.13172149658209],[9.53382492065441,47.132591247558594],[9.533709526062012,47.13382720947271],[9.532314300537223,47.13505935668951],[9.53200912475586,47.13638687133795],[9.532031059265194,47.138694763183594],[9.532945632934627,47.14104080200207],[9.533664703369254,47.14196014404297],[9.534066200256404,47.1422233581543],[9.535776138305664,47.14274597167969],[9.536405563354435,47.14302444458008],[9.53651046752941,47.143741607666016],[9.535451889038029,47.1453857421875],[9.534774780273438,47.14674758911144],[9.53488922119152,47.147773742675895],[9.535520553588924,47.14805221557623],[9.536651611328125,47.14788818359375],[9.537175178527832,47.14739227294933],[9.538372993469295,47.145889282226676],[9.53869342803955,47.14561843872082],[9.540120124816951,47.14529800415039],[9.540775299072266,47.145858764648494],[9.540744781494084,47.147235870361385],[9.5399169921875,47.14862442016607],[9.539887428283805,47.14917373657232],[9.540173530578727,47.1497039794923],[9.541624069213924,47.15004348754883],[9.544260025024528,47.150005340576286],[9.545694351196289,47.14931869506836],[9.547097206115836,47.147846221923885],[9.54749870300293,47.14772415161144],[9.550103187561092,47.14851760864258],[9.551468849182186,47.14949417114258],[9.55340766906744,47.15011596679682],[9.554455757141227,47.150295257568416],[9.55437183380127,47.15089416503906],[9.553126335144043,47.15424346923834],[9.55314826965332,47.15489578247076],[9.555288314819279,47.15877914428722],[9.555648803710994,47.159610748291016],[9.55666542053234,47.16110229492193],[9.557565689086971,47.16278839111334],[9.55761432647705,47.16373443603521],[9.557472229003906,47.164096832275504],[9.557679176330566,47.16451644897455],[9.559470176696891,47.16604614257818],[9.56003189086914,47.166427612304744],[9.561513900756893,47.16805267333979],[9.562049865722656,47.16845321655279],[9.567391395568848,47.166618347168026],[9.56952285766613,47.1654624938966],[9.570070266723576,47.16523361206066],[9.573305130004826,47.163299560546875],[9.575639724731445,47.16198348999035],[9.57619953155529,47.161598205566406],[9.579546928405819,47.15974426269537],[9.582521438598633,47.15863037109381],[9.585694313049316,47.157993316650504],[9.586174964904842,47.157981872558594],[9.585563659668026,47.157024383545036],[9.585270881652832,47.1563339233399],[9.585218429565373,47.155387878418026],[9.58475303649908,47.15465545654308],[9.583986282348576,47.153961181640625],[9.583715438842773,47.152606964111385],[9.584095001220703,47.15208435058594],[9.583919525146541,47.15136337280268],[9.583879470825252,47.15031814575201],[9.58368968963623,47.14997482299816],[9.583826065063477,47.14906692504877],[9.583139419555721,47.14808654785156],[9.583244323730469,47.14746856689453],[9.58321475982666,47.14641189575195],[9.582971572876033,47.14559555053722],[9.582489967346191,47.144718170166016],[9.581559181213436,47.143550872802734],[9.57951831817627,47.1422233581543],[9.578801155090389,47.14187622070324],[9.577318191528263,47.140563964843864],[9.57582855224615,47.13963317871088],[9.575536727905273,47.13922500610357],[9.575549125671444,47.1380233764649],[9.574846267700195,47.137348175048885],[9.57427978515625,47.137344360351506],[9.57337856292736,47.137886047363395],[9.572910308837947,47.1378631591798],[9.571797370910758,47.136798858642635],[9.571004867553768,47.13550567626959],[9.57025527954113,47.134830474853516],[9.569966316223145,47.13431930541998],[9.570005416870117,47.13356018066406],[9.570466995239258,47.13306427001959],[9.571809768676758,47.13245391845709],[9.573334693908691,47.1318931579591],[9.574546813964957,47.13130187988281],[9.57558631896967,47.1302871704101],[9.576967239379883,47.129257202148494],[9.5791597366333,47.12812423706055],[9.580820083618221,47.12776565551758],[9.582958221435547,47.12758255004883],[9.585640907287711,47.126846313476506],[9.586572647094783,47.12678527832037],[9.589333534240723,47.12643051147461],[9.589587211608887,47.125968933105526],[9.58957767486578,47.1248130798341],[9.589361190795955,47.12432098388683],[9.58934688568121,47.12358474731451],[9.588859558105582,47.12231063842785],[9.588163375854549,47.120838165283146],[9.586654663085938,47.118228912353516],[9.586584091186523,47.117069244384766],[9.586425781249943,47.11684417724615],[9.586401939392033,47.115257263183594],[9.58616733551031,47.11422348022461],[9.586169242858887,47.11341094970709],[9.58593654632574,47.11239242553722],[9.585077285766715,47.11093902587896],[9.584166526794434,47.10866165161133],[9.583898544311467,47.10748672485346],[9.583886146545467,47.105583190918026],[9.584341049194336,47.10383987426769],[9.585280418395996,47.10213088989269],[9.583660125732365,47.101974487304744],[9.582210540771541,47.10197067260742],[9.58131122589117,47.101821899414176],[9.579030036926326,47.10177993774414],[9.578960418701229,47.101093292236385],[9.57917594909668,47.10059738159191],[9.579150199890194,47.09685516357433],[9.579202651977653,47.09646987915039],[9.58019161224371,47.09441375732433],[9.580668449401912,47.093173980713004],[9.58068943023693,47.092746734619254],[9.580203056335392,47.091766357421875],[9.579318046569881,47.09068679809582],[9.578450202941951,47.09016418457037],[9.577230453491211,47.090476989746094],[9.576276779174805,47.09043884277344],[9.575482368469181,47.09006881713873],[9.574068069457951,47.08972549438488],[9.572308540344295,47.09016036987305],[9.571592330932674,47.090240478515625],[9.57017993927002,47.090595245361385],[9.569965362548828,47.0912704467774],[9.569965362548828,47.095165252685604],[9.567264556884766,47.09739303588867],[9.566934585571346,47.097415924072266],[9.562875747680664,47.095802307128906],[9.562365531921444,47.095802307128906],[9.56022739410406,47.09688568115246],[9.559114456176815,47.09766006469732],[9.557220458984489,47.099124908447266],[9.554456710815487,47.10115432739269],[9.554192543029899,47.10173416137707],[9.553914070129338,47.102966308593864],[9.553595542907658,47.10354614257824],[9.549174308776855,47.10586547851557],[9.547058105468807,47.10577392578131],[9.545356750488395,47.10563278198242],[9.54353046417242,47.10538482666021],[9.541988372802791,47.105484008789006],[9.540381431579704,47.107292175293026],[9.540406227111873,47.10770034790039],[9.541196823120117,47.10876846313488],[9.541461944580192,47.10937881469738],[9.541740417480582,47.11054229736334],[9.542328834533805,47.1122932434082],[9.542611122131348,47.1136093139649],[9.542627334594727,47.11588287353521],[9.542561531066951,47.11622619628906],[9.541628837585563,47.118240356445426],[9.540556907653865,47.11827468872076],[9.53984546661377,47.118141174316406],[9.538079261779842,47.118595123291016],[9.536668777465934,47.119865417480526],[9.53663444519043,47.12018203735357],[9.537251472473201,47.121349334716854],[9.535118103027287,47.12337493896496],[9.535031318664494,47.12519454956066],[9.533149719238395,47.12707901000988]]],[[[9.612854957580623,47.07957458496094],[9.612391471862907,47.07979965209972],[9.611819267273063,47.080783843994084],[9.61131381988531,47.081245422363395],[9.6106214523316,47.08220672607433],[9.610334396362362,47.08282089233404],[9.609409332275334,47.083847045898494],[9.607737541198787,47.08501052856445],[9.606835365295524,47.08580780029308],[9.606130599975643,47.087078094482365],[9.606122970581112,47.087711334228516],[9.605642318725529,47.08895492553722],[9.605319976806697,47.08936691284174],[9.60626316070568,47.08975982666021],[9.606552124023494,47.09011459350597],[9.607231140136719,47.0930290222168],[9.607312202453727,47.09391784667969],[9.60815143585205,47.09551239013683],[9.608706474304256,47.09689331054699],[9.609465599060002,47.0979843139649],[9.609477996826229,47.09889221191412],[9.60826206207281,47.099746704101676],[9.607563018798828,47.100566864013786],[9.607102394104004,47.10217285156256],[9.607070922851562,47.102878570556754],[9.606390953064079,47.1044540405274],[9.605302810669059,47.105110168456974],[9.60413932800293,47.10614776611334],[9.602909088134709,47.10688781738281],[9.601941108703727,47.107982635498104],[9.600824356079102,47.10875701904297],[9.598546981811637,47.10984802246105],[9.596850395202637,47.11020660400402],[9.595531463623047,47.11065292358404],[9.596531867981014,47.11108779907238],[9.597637176513672,47.11112594604492],[9.598793983459586,47.11143112182623],[9.59986400604248,47.111938476562614],[9.601042747497672,47.11270904541027],[9.602036476135368,47.112937927246094],[9.603697776794547,47.11289596557617],[9.605732917785701,47.1126060485841],[9.607747077941895,47.112575531005916],[9.608530998230037,47.1124534606933],[9.609212875366325,47.112590789795036],[9.611791610717773,47.112579345703125],[9.613034248352164,47.11270904541027],[9.615572929382381,47.112129211425895],[9.616827011108455,47.11192321777355],[9.620160102844238,47.11117553710949],[9.621857643127498,47.11093521118164],[9.622380256652946,47.11160659790045],[9.623601913452148,47.11270141601574],[9.629631042480526,47.10865020751959],[9.634098052978572,47.1035614013673],[9.637494087219238,47.09682464599615],[9.634808540344238,47.090572357177734],[9.633373260498104,47.083953857421875],[9.622671127319336,47.08380889892578],[9.613143920898438,47.080894470214844],[9.612854957580623,47.07957458496094]]]]},"properties":{"ID_0":129,"ISO":"LI-10","NAME_0":"Liechtenstein","ID_1":10,"NAME_1":"Triesenberg","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.506508827209586,47.196231842041016],[9.507832527160645,47.196231842041016],[9.508604049682617,47.19609069824213],[9.510848999023551,47.1960830688476],[9.512870788574276,47.196044921875114],[9.513752937316951,47.19591522216797],[9.51710414886486,47.19590377807623],[9.518890380859318,47.19571304321295],[9.51932430267334,47.19439697265625],[9.520022392273006,47.19182205200195],[9.52108097076416,47.18870925903332],[9.52112102508545,47.18828582763672],[9.522001266479549,47.18566131591797],[9.521868705749512,47.185466766357536],[9.51999282836914,47.18529129028332],[9.517628669738883,47.18530654907221],[9.516261100769157,47.18515777587902],[9.513898849487248,47.18516159057617],[9.513572692871094,47.18522262573248],[9.511887550354004,47.188510894775504],[9.511455535888729,47.1889762878418],[9.509126663208065,47.19091415405279],[9.5086545944215,47.191745758056754],[9.507673263549862,47.19421005249029],[9.50699234008789,47.195770263671875],[9.506508827209586,47.196231842041016]]],[[[9.55328369140625,47.192741394043026],[9.55231952667242,47.19310379028332],[9.553877830505428,47.19383239746094],[9.55537033081066,47.19285202026373],[9.556592941284293,47.19215393066412],[9.558087348938102,47.19011688232433],[9.557304382324219,47.18988800048834],[9.556786537170467,47.190830230713004],[9.555878639221305,47.191562652588004],[9.554032325744629,47.19224929809576],[9.55328369140625,47.192741394043026]]],[[[9.523779869079704,47.17928314208996],[9.523482322692871,47.17947769165045],[9.524238586425724,47.18120574951166],[9.524856567382812,47.18125915527344],[9.528252601623649,47.180149078369254],[9.529458045959473,47.17955398559582],[9.530952453613281,47.17868423461914],[9.531755447387695,47.17811965942383],[9.529744148254395,47.17610549926769],[9.529483795165959,47.17609024047857],[9.52762603759777,47.1766929626466],[9.527123451232853,47.177040100097656],[9.525914192199707,47.17884826660162],[9.52520847320551,47.179260253906364],[9.523779869079704,47.17928314208996]]],[[[9.533149719238395,47.12707901000988],[9.531365394592285,47.126926422119254],[9.530190467834473,47.12706375122076],[9.52840709686285,47.12711334228521],[9.527190208435115,47.1273651123048],[9.525723457336426,47.12754058837896],[9.523702621460018,47.127563476562614],[9.522657394409123,47.12742614746088],[9.520122528076286,47.12725448608404],[9.516649246215763,47.12678146362305],[9.516442298889103,47.12727355957031],[9.51578235626215,47.129814147949276],[9.514636039733887,47.13191604614258],[9.514041900634709,47.1340789794923],[9.513764381408635,47.13478088378912],[9.512891769409293,47.136184692382926],[9.511962890625057,47.138259887695426],[9.511313438415527,47.139144897460994],[9.508982658386287,47.14545822143555],[9.50318908691412,47.151245117187614],[9.501753807067871,47.15298461914057],[9.503282546997184,47.153133392333984],[9.505641937255803,47.15312576293945],[9.506190299987736,47.152965545654354],[9.509214401245174,47.15032196044922],[9.511103630066032,47.148403167724666],[9.512346267700252,47.14736938476568],[9.513134956359863,47.14545822143555],[9.513500213623047,47.14537811279297],[9.514573097229004,47.145603179931754],[9.51655483245861,47.14618682861334],[9.516776084899846,47.14669036865229],[9.515815734863395,47.14743804931652],[9.514372825622615,47.148742675781364],[9.512571334838867,47.15023803710943],[9.512267112731934,47.1506805419923],[9.511697769164982,47.151973724365234],[9.510885238647461,47.15347290039068],[9.51047134399414,47.15489578247076],[9.510419845581168,47.15541458129883],[9.509914398193416,47.15692138671881],[9.508448600769157,47.15780258178722],[9.50849437713623,47.15813827514654],[9.50928783416748,47.15882110595709],[9.509288787841797,47.159057617187614],[9.503390312194824,47.16253280639654],[9.502605438232422,47.16307449340826],[9.498480796813965,47.16551208496105],[9.49775409698492,47.1682014465332],[9.497377395629996,47.169200897216854],[9.497335433959961,47.169734954833984],[9.497811317443848,47.16990280151367],[9.500759124755916,47.16987991333008],[9.502585411071834,47.169681549072266],[9.505151748657283,47.16925811767578],[9.505706787109489,47.16923522949219],[9.508698463439998,47.16872024536127],[9.508703231811637,47.16835784912115],[9.508276939392147,47.16765594482433],[9.508279800415039,47.16664505004883],[9.508904457092342,47.16477584838867],[9.509372711181697,47.162857055664176],[9.510066032409668,47.16085433959972],[9.510528564453125,47.160503387451286],[9.512358665466422,47.15972137451172],[9.51522445678711,47.158622741699276],[9.51556301116949,47.15860748291021],[9.518658638000488,47.15948867797857],[9.52164268493658,47.15996170043945],[9.52187347412115,47.160228729248104],[9.52186107635498,47.161117553710994],[9.52164173126232,47.16204833984381],[9.521655082702637,47.16334915161144],[9.52145099639904,47.16450881958019],[9.521799087524357,47.164714813232365],[9.52334022521967,47.164737701416016],[9.524082183837947,47.16493225097662],[9.525705337524471,47.1671981811524],[9.527144432067871,47.16727066040045],[9.531831741333065,47.16663360595709],[9.53714370727539,47.16542434692394],[9.538898468017578,47.1654052734375],[9.542468070983887,47.16570281982433],[9.5451402664184,47.16568756103521],[9.54916000366211,47.16582489013672],[9.549828529357853,47.165706634521484],[9.551700592041072,47.165626525878906],[9.553492546081486,47.16546630859381],[9.557472229003906,47.164096832275504],[9.55761432647705,47.16373443603521],[9.557565689086971,47.16278839111334],[9.55666542053234,47.16110229492193],[9.555648803710994,47.159610748291016],[9.555288314819279,47.15877914428722],[9.55314826965332,47.15489578247076],[9.553126335144043,47.15424346923834],[9.55437183380127,47.15089416503906],[9.554455757141227,47.150295257568416],[9.55340766906744,47.15011596679682],[9.551468849182186,47.14949417114258],[9.550103187561092,47.14851760864258],[9.54749870300293,47.14772415161144],[9.547097206115836,47.147846221923885],[9.545694351196289,47.14931869506836],[9.544260025024528,47.150005340576286],[9.541624069213924,47.15004348754883],[9.540173530578727,47.1497039794923],[9.539887428283805,47.14917373657232],[9.5399169921875,47.14862442016607],[9.540744781494084,47.147235870361385],[9.540775299072266,47.145858764648494],[9.540120124816951,47.14529800415039],[9.53869342803955,47.14561843872082],[9.538372993469295,47.145889282226676],[9.537175178527832,47.14739227294933],[9.536651611328125,47.14788818359375],[9.535520553588924,47.14805221557623],[9.53488922119152,47.147773742675895],[9.534774780273438,47.14674758911144],[9.535451889038029,47.1453857421875],[9.53651046752941,47.143741607666016],[9.536405563354435,47.14302444458008],[9.535776138305664,47.14274597167969],[9.534066200256404,47.1422233581543],[9.533664703369254,47.14196014404297],[9.532945632934627,47.14104080200207],[9.532031059265194,47.138694763183594],[9.53200912475586,47.13638687133795],[9.532314300537223,47.13505935668951],[9.533709526062012,47.13382720947271],[9.53382492065441,47.132591247558594],[9.534354209899902,47.13172149658209],[9.536178588867244,47.13056182861334],[9.535939216613883,47.12889862060558],[9.535460472106877,47.1277122497558],[9.533149719238395,47.12707901000988]]],[[[9.601682662963867,47.141914367675724],[9.60278129577631,47.141292572021484],[9.604595184326286,47.14011383056646],[9.6060152053833,47.139049530029354],[9.607198715209961,47.138526916503906],[9.609428405761776,47.13667297363287],[9.60994815826416,47.1357536315918],[9.60991287231451,47.133544921875],[9.60998439788824,47.13271331787121],[9.610227584838867,47.13182067871094],[9.611004829406738,47.13092803955084],[9.611676216125602,47.1292610168457],[9.611698150634709,47.12876510620123],[9.611018180847225,47.12858581542969],[9.609134674072322,47.12856292724604],[9.607747077941895,47.12885284423834],[9.605485916137809,47.12911224365246],[9.604048728942928,47.13067626953125],[9.602005004882926,47.13092422485363],[9.600103378295842,47.13059234619146],[9.598332405090446,47.130630493164176],[9.597175598144588,47.1307640075683],[9.594578742980957,47.13076782226568],[9.59367370605463,47.13105773925781],[9.591890335083065,47.132240295410156],[9.591365814209041,47.13332366943371],[9.590102195739803,47.134544372558594],[9.589412689208984,47.135379791259766],[9.589958190918026,47.135833740234375],[9.592606544494629,47.136001586914006],[9.593674659729118,47.136165618896484],[9.595783233642635,47.136631011963004],[9.598077774047965,47.13816833496094],[9.600462913513297,47.14055252075195],[9.60124683380127,47.14124679565424],[9.601682662963867,47.141914367675724]]],[[[9.605319976806697,47.08936691284174],[9.60379695892334,47.08913040161144],[9.602299690246639,47.08943557739258],[9.59888076782238,47.0899543762207],[9.595001220703068,47.09089279174799],[9.592469215393123,47.09205627441412],[9.591408729553166,47.09225845336914],[9.589349746704102,47.09226989746105],[9.589056968688908,47.09244537353521],[9.586761474609489,47.09548950195318],[9.586145401000977,47.096778869628906],[9.585465431213493,47.09880828857416],[9.585198402404842,47.10025024414068],[9.585280418395996,47.10213088989269],[9.584341049194336,47.10383987426769],[9.583886146545467,47.105583190918026],[9.583898544311467,47.10748672485346],[9.584166526794434,47.10866165161133],[9.585077285766715,47.11093902587896],[9.58593654632574,47.11239242553722],[9.586950302123967,47.112384796142635],[9.58818721771246,47.11211013793945],[9.590914726257324,47.112045288085994],[9.59202766418457,47.11164093017578],[9.593864440917912,47.11125183105469],[9.595531463623047,47.11065292358404],[9.596850395202637,47.11020660400402],[9.598546981811637,47.10984802246105],[9.600824356079102,47.10875701904297],[9.601941108703727,47.107982635498104],[9.602909088134709,47.10688781738281],[9.60413932800293,47.10614776611334],[9.605302810669059,47.105110168456974],[9.606390953064079,47.1044540405274],[9.607070922851562,47.102878570556754],[9.607102394104004,47.10217285156256],[9.607563018798828,47.100566864013786],[9.60826206207281,47.099746704101676],[9.609477996826229,47.09889221191412],[9.609465599060002,47.0979843139649],[9.608706474304256,47.09689331054699],[9.60815143585205,47.09551239013683],[9.607312202453727,47.09391784667969],[9.607231140136719,47.0930290222168],[9.606552124023494,47.09011459350597],[9.60626316070568,47.08975982666021],[9.605319976806697,47.08936691284174]]]]},"properties":{"ID_0":129,"ISO":"LI-11","NAME_0":"Liechtenstein","ID_1":11,"NAME_1":"Vaduz","TYPE_1":"Gemeinden","ENGTYPE_1":"Commune","NL_NAME_1":null,"VARNAME_1":null}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson
new file mode 100644
index 0000000..9e7d54c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson
@@ -0,0 +1,56 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.784585952758732,33.59080505371094],[-6.793757915496825,33.553867340087834],[-6.851530075073184,33.485015869140675],[-6.855122089385929,33.45077514648432],[-6.809628009796086,33.384441375732706],[-6.84026384353632,33.33107376098644],[-6.83319616317749,33.262519836425724],[-6.844503879547062,33.22910308837902],[-6.879354953765868,33.2447891235351],[-6.933492183685303,33.32664871215848],[-7.023376941680794,33.32531356811552],[-7.051694869995117,33.271419525146484],[-7.112172126769963,33.23898696899414],[-7.195511817932073,33.23712921142589],[-7.262524127960148,33.22522735595709],[-7.272869110107422,33.24623870849615],[-7.209487915039005,33.29833221435558],[-7.217001914977971,33.33669281005871],[-7.297786235809268,33.352657318115405],[-7.299897193908691,33.38187408447276],[-7.277733802795296,33.424789428711044],[-7.348810195922852,33.427036285400334],[-7.403759956359862,33.451576232910156],[-7.412817955017033,33.478412628174055],[-7.366469860076847,33.49253845214855],[-7.401328086853027,33.55224227905279],[-7.389826774597111,33.5786247253419],[-7.405980110168399,33.617065429687614],[-7.371426105499268,33.67279434204107],[-7.349861145019531,33.71755599975586],[-7.34992504119873,33.71763992309576],[-7.350694179534854,33.717681884765625],[-7.266251087188663,33.78208160400385],[-7.126805782318115,33.82962036132812],[-7.113366127014159,33.809440612793026],[-7.068931102752629,33.806552886963],[-7.03718185424799,33.74709320068365],[-7.036465167999268,33.70339584350597],[-7.005486965179442,33.65933227539068],[-6.946936130523624,33.62979125976568],[-6.88804388046259,33.5791397094726],[-6.784585952758732,33.59080505371094]]]},"properties":{"ID_0":152,"ISO":"MA-BES","NAME_0":"Morocco","ID_1":1,"NAME_1":"Chaouia - Ouardigha","ID_2":1,"NAME_2":"Ben Slimane","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.010511875152531,32.76110076904297],[-6.049743175506534,32.71965789794933],[-6.086471080780029,32.70076370239258],[-6.205180168151799,32.688438415527344],[-6.258750915527343,32.6686897277832],[-6.439866065979004,32.66658782958989],[-6.536411762237492,32.691303253173885],[-6.616106986999454,32.66783905029297],[-6.61369800567627,32.6371765136721],[-6.688073158264103,32.653907775878906],[-6.781012058258057,32.66605758666992],[-6.863515853881835,32.62318801879888],[-6.933784008026065,32.60861587524414],[-6.979220867156982,32.634773254394645],[-7.011248111724853,32.66818237304699],[-7.004909992218017,32.72402191162138],[-7.020514965057373,32.75652313232422],[-6.9804949760437,32.79357147216797],[-6.983243942260685,32.873184204101676],[-6.962800025939885,32.91022109985357],[-6.967543125152587,32.93584442138672],[-6.922049999237004,32.960498809814396],[-6.876819133758545,33.01851272583008],[-6.879459857940617,33.09807205200195],[-6.839612960815373,33.15467453002947],[-6.845807075500431,33.19810867309581],[-6.806573867797851,33.21526336669922],[-6.753058910369816,33.22208786010748],[-6.705062866210938,33.203643798828125],[-6.604753971099797,33.21557998657249],[-6.565062046050969,33.19209671020508],[-6.522500038146916,33.142078399658146],[-6.48191213607788,33.190284729003906],[-6.361415863037053,33.23888778686529],[-6.397848129272461,33.176532745361385],[-6.388197898864745,33.16184997558594],[-6.290180206298714,33.13375854492199],[-6.278553962707462,33.10717391967768],[-6.238834857940674,33.0959091186524],[-6.192454814910889,33.05808639526373],[-6.136046886444035,33.03523254394531],[-6.12737321853632,32.99860763549816],[-6.083452224731388,32.98269653320324],[-6.076224803924504,32.95841598510742],[-6.138134956359863,32.939758300781364],[-6.140388011932373,32.90184402465826],[-6.108398914337101,32.89153289794933],[-6.042300224304198,32.90237426757824],[-6.035702228546143,32.87444305419922],[-5.999925136566162,32.833904266357415],[-6.020800113677922,32.8226776123048],[-6.010511875152531,32.76110076904297]]]},"properties":{"ID_0":152,"ISO":"MA-KHO","NAME_0":"Morocco","ID_1":1,"NAME_1":"Chaouia - Ouardigha","ID_2":2,"NAME_2":"Khouribga","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.403759956359862,33.451576232910156],[-7.348810195922852,33.427036285400334],[-7.277733802795296,33.424789428711044],[-7.299897193908691,33.38187408447276],[-7.297786235809268,33.352657318115405],[-7.217001914977971,33.33669281005871],[-7.209487915039005,33.29833221435558],[-7.272869110107422,33.24623870849615],[-7.262524127960148,33.22522735595709],[-7.195511817932073,33.23712921142589],[-7.112172126769963,33.23898696899414],[-7.051694869995117,33.271419525146484],[-7.023376941680794,33.32531356811552],[-6.933492183685303,33.32664871215848],[-6.879354953765868,33.2447891235351],[-6.844503879547062,33.22910308837902],[-6.806573867797851,33.21526336669922],[-6.845807075500431,33.19810867309581],[-6.839612960815373,33.15467453002947],[-6.879459857940617,33.09807205200195],[-6.876819133758545,33.01851272583008],[-6.922049999237004,32.960498809814396],[-6.967543125152587,32.93584442138672],[-6.962800025939885,32.91022109985357],[-6.983243942260685,32.873184204101676],[-6.9804949760437,32.79357147216797],[-7.020514965057373,32.75652313232422],[-7.004909992218017,32.72402191162138],[-7.011248111724853,32.66818237304699],[-6.979220867156982,32.634773254394645],[-6.993169784545842,32.50609970092779],[-7.048169136047306,32.38842010498047],[-7.096294879913329,32.349262237549055],[-7.149303913116455,32.37053680419927],[-7.2447571754455,32.43230438232422],[-7.295358180999699,32.434085845947266],[-7.340393066406249,32.48762512207031],[-7.417209148406926,32.48430252075218],[-7.514234066009465,32.43096160888672],[-7.586689949035587,32.43031692504883],[-7.655451774597167,32.54603576660162],[-7.683296203613224,32.55511474609375],[-7.719991207122803,32.62692642211914],[-7.749532222747803,32.65019607543945],[-7.810822963714543,32.6742897033692],[-7.902809143066349,32.69826126098632],[-7.907823085784854,32.723445892333984],[-7.989078044891357,32.81506347656244],[-7.980710029602051,32.85653686523443],[-8.043346405029297,32.8750877380371],[-8.03152084350586,32.91957855224604],[-8.045045852661133,32.9795494079591],[-8.034646987915039,33.07806777954107],[-8.109880447387695,33.13965988159179],[-8.08049201965332,33.18736648559576],[-8.047118186950682,33.21905899047857],[-7.996955871581974,33.21508407592785],[-7.999916076660099,33.24803543090826],[-7.96415901184082,33.25774002075201],[-7.932388782501164,33.29397583007824],[-7.98502302169794,33.32950210571294],[-7.950693130493163,33.39039230346691],[-8.007081985473633,33.458473205566406],[-7.894862174987792,33.49736022949219],[-7.866956233978271,33.459831237793026],[-7.80206918716425,33.46707153320318],[-7.784611225128173,33.452270507812614],[-7.733521938323974,33.458000183105575],[-7.682903766632022,33.412506103515625],[-7.638830184936523,33.427749633789055],[-7.57601499557495,33.422294616699276],[-7.54596996307373,33.39693832397461],[-7.616042137145939,33.374748229980696],[-7.599362850189209,33.32535552978521],[-7.563631057739257,33.320438385009766],[-7.528379917144718,33.39587783813482],[-7.448532104492187,33.44703292846691],[-7.403759956359862,33.451576232910156]]]},"properties":{"ID_0":152,"ISO":"MA-SET","NAME_0":"Morocco","ID_1":1,"NAME_1":"Chaouia - Ouardigha","ID_2":3,"NAME_2":"Settat","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.989078044891357,32.81506347656244],[-8.033541679382266,32.78668212890625],[-8.035879135131836,32.711959838867244],[-8.072434425354004,32.68795776367193],[-8.072281837463379,32.66091918945324],[-8.04417419433588,32.624370574951286],[-8.06303596496582,32.57109832763683],[-8.09831523895258,32.528293609619084],[-8.182088851928711,32.46871948242187],[-8.24435424804676,32.46792602539057],[-8.265787124633789,32.414146423340014],[-8.33887004852295,32.403633117675895],[-8.350146293640137,32.38199615478521],[-8.436950683593748,32.353649139404524],[-8.512733459472656,32.32132720947271],[-8.595069885253906,32.41714477539074],[-8.589215278625431,32.47915267944358],[-8.63111114501953,32.510993957519645],[-8.684223175048828,32.52071762084961],[-8.71896457672119,32.50302124023432],[-8.757960319518986,32.518802642822266],[-8.869286537170353,32.511070251464844],[-8.905258178710938,32.54247283935558],[-8.973551750183105,32.57539749145502],[-9.006471633911076,32.60616683959961],[-8.9713716506958,32.636833190918026],[-8.966512680053654,32.66847610473627],[-9.00090026855463,32.67070388793951],[-9.051804542541504,32.73125076293945],[-8.920140266418398,32.825138092041016],[-8.808749198913572,32.92625045776373],[-8.730693817138615,33.004306793213175],[-8.704028129577637,33.04013824462908],[-8.630972862243652,33.11319351196295],[-8.629584312438908,33.16041564941412],[-8.547637939453125,33.24514007568371],[-8.50986099243164,33.267360687255966],[-8.460693359375,33.24569320678711],[-8.394304275512638,33.27736282348633],[-8.342082977294865,33.31708145141607],[-8.297083854675293,33.36708450317411],[-8.209860801696777,33.385139465332145],[-8.181804656982422,33.402915954590014],[-8.126251220703125,33.41319274902355],[-8.007081985473633,33.458473205566406],[-7.950693130493163,33.39039230346691],[-7.98502302169794,33.32950210571294],[-7.932388782501164,33.29397583007824],[-7.96415901184082,33.25774002075201],[-7.999916076660099,33.24803543090826],[-7.996955871581974,33.21508407592785],[-8.047118186950682,33.21905899047857],[-8.08049201965332,33.18736648559576],[-8.109880447387695,33.13965988159179],[-8.034646987915039,33.07806777954107],[-8.045045852661133,32.9795494079591],[-8.03152084350586,32.91957855224604],[-8.043346405029297,32.8750877380371],[-7.980710029602051,32.85653686523443],[-7.989078044891357,32.81506347656244]]]},"properties":{"ID_0":152,"ISO":"MA-JDI","NAME_0":"Morocco","ID_1":2,"NAME_1":"Doukkala - Abda","ID_2":4,"NAME_2":"El Jadida","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.436950683593748,32.353649139404524],[-8.441067695617676,32.300235748291016],[-8.409938812255858,32.235260009765625],[-8.3477783203125,32.16590881347662],[-8.23256587982172,32.12165451049822],[-8.19211196899414,32.092529296875114],[-8.189615249633789,32.0598411560058],[-8.304408073425236,31.981239318847887],[-8.341450691223088,31.924535751342773],[-8.347699165344238,31.890520095825252],[-8.422375679016112,31.80047225952148],[-8.404024124145451,31.747802734375057],[-8.355440139770508,31.70682144165039],[-8.392733573913574,31.698745727539062],[-8.431431770324707,31.720056533813587],[-8.503827095031738,31.693798065185657],[-8.555994987487793,31.708557128906367],[-8.60468006134033,31.75042533874517],[-8.711803436279297,31.732074737548885],[-8.742794036865234,31.74053001403814],[-8.770670890808105,31.715934753418026],[-8.805314064025822,31.71286392211925],[-8.879587173461914,31.757646560669055],[-8.939689636230469,31.76945877075201],[-8.947182655334473,31.78547477722168],[-9.00178527832031,31.812042236328125],[-9.032825469970646,31.893522262573352],[-9.084622383117676,31.909072875976506],[-9.232966423034668,31.919494628906307],[-9.28492069244379,31.909780502319276],[-9.339283943176211,31.914144515991325],[-9.435416221618652,31.94380569458013],[-9.355137825012207,32.023750305175774],[-9.330416679382324,32.06486129760742],[-9.322917938232422,32.112640380859375],[-9.262361526489258,32.17514038085932],[-9.2515287399292,32.21708297729515],[-9.266527175903263,32.25208282470726],[-9.24485969543457,32.300140380859375],[-9.281526565551756,32.32930374145519],[-9.290971755981445,32.359306335449276],[-9.258749008178711,32.40208435058605],[-9.231804847717228,32.47430419921881],[-9.285973548889103,32.5418052673341],[-9.117917060851994,32.66485977172846],[-9.051804542541504,32.73125076293945],[-9.00090026855463,32.67070388793951],[-8.966512680053654,32.66847610473627],[-8.9713716506958,32.636833190918026],[-9.006471633911076,32.60616683959961],[-8.973551750183105,32.57539749145502],[-8.905258178710938,32.54247283935558],[-8.869286537170353,32.511070251464844],[-8.757960319518986,32.518802642822266],[-8.71896457672119,32.50302124023432],[-8.684223175048828,32.52071762084961],[-8.63111114501953,32.510993957519645],[-8.589215278625431,32.47915267944358],[-8.595069885253906,32.41714477539074],[-8.512733459472656,32.32132720947271],[-8.436950683593748,32.353649139404524]]]},"properties":{"ID_0":152,"ISO":"MA-SAF","NAME_0":"Morocco","ID_1":2,"NAME_1":"Doukkala - Abda","ID_2":5,"NAME_2":"Safi","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.089186906814518,33.38042068481451],[-3.062707901000863,33.340175628662166],[-3.00038909912098,33.282207489013956],[-2.969074010848999,33.227005004882926],[-2.977355003356877,33.186141967773494],[-2.999272108077946,33.15866088867193],[-3.107593059539795,33.1331405639649],[-3.2203049659729,33.094429016113565],[-3.279728889465275,33.083530426025554],[-3.351870059966984,33.08082962036144],[-3.446784973144474,33.093521118164176],[-3.603172063827514,33.09265136718773],[-3.675992965698185,33.08325576782232],[-3.726537942886352,33.05794906616222],[-3.805248975753727,32.99186325073248],[-3.841296911239624,32.945037841796925],[-3.944423913955688,32.78154373168957],[-4.003212928771973,32.727226257324276],[-4.049850940704346,32.661087036132926],[-4.054047107696532,32.63758850097662],[-4.08964204788208,32.625247955322266],[-4.192032814025879,32.624961853027344],[-4.282040119171029,32.63508987426769],[-4.289350986480713,32.661781311035384],[-4.293167114257756,32.71821212768566],[-4.384900093078613,32.79611968994169],[-4.425291061401309,32.818069458007926],[-4.45009803771967,32.863292694092024],[-4.481241226196289,32.886814117431925],[-4.579023838043213,32.890037536621094],[-4.668735980987491,32.87610244750982],[-4.713849067687931,32.891658782958984],[-4.762825965881347,32.937343597412166],[-4.750524044036865,33.00725173950195],[-4.824687004089355,33.06803894042969],[-4.842996120452824,33.09851837158203],[-4.88861608505249,33.22380828857416],[-4.924521923065186,33.292884826660156],[-4.9859299659729,33.3387565612793],[-5.004627227783089,33.36920547485363],[-5.001195907592773,33.406047821044865],[-4.89836311340332,33.531257629394645],[-4.848490238189696,33.53317260742182],[-4.805570125579834,33.5636444091798],[-4.761699199676457,33.56038284301758],[-4.643547058105412,33.598583221435604],[-4.565355777740479,33.599395751953125],[-4.462279796600342,33.56444168090826],[-4.308880805969238,33.56028366088873],[-4.266902923583984,33.5863990783692],[-4.244788169860783,33.6339988708496],[-4.181508064269963,33.66444778442394],[-4.145689964294377,33.685218811035156],[-4.080557823181096,33.673675537109425],[-4.112256050109863,33.60321426391613],[-4.077552795410099,33.569396972656364],[-3.994119882583504,33.57223892211914],[-3.854965925216675,33.62724685668957],[-3.823367118835392,33.66073989868164],[-3.816797018051091,33.69053268432623],[-3.779800891876164,33.7106285095216],[-3.736298084259033,33.75866317749035],[-3.658936977386361,33.79726791381836],[-3.605114936828556,33.878536224365234],[-3.579458951950016,33.89122009277344],[-3.564152002334537,33.92658615112304],[-3.465671062469369,33.88507461547857],[-3.419624090194702,33.838691711425895],[-3.295849084854126,33.80597305297863],[-3.246437072753793,33.771644592285156],[-3.118671894073486,33.74662780761719],[-3.138603925704899,33.68192672729498],[-3.16720008850092,33.64425277709972],[-3.222831010818481,33.59514617919933],[-3.257327079772949,33.53813934326166],[-3.238198041915837,33.48464584350603],[-3.136051893234196,33.42548370361351],[-3.089186906814518,33.38042068481451]]]},"properties":{"ID_0":152,"ISO":"MA-BOM","NAME_0":"Morocco","ID_1":3,"NAME_1":"Fès - Boulemane","ID_2":6,"NAME_2":"Boulemane","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.739299774169865,34.10510253906256],[-4.770312786102295,34.07558059692382],[-4.802379131317139,34.023952484130916],[-4.794281005859374,33.99143600463867],[-4.82001590728754,33.95741271972656],[-4.870540142059326,33.92528533935558],[-4.903213977813721,33.92418289184576],[-4.921630859374942,33.876296997070426],[-4.963138103485107,33.87443923950206],[-4.957810878753605,33.91350173950201],[-4.996710777282714,33.9548454284668],[-4.999815940856877,34.002758026123104],[-5.019558906555175,34.05236434936529],[-4.911286830902043,34.10062026977545],[-4.878390789031982,34.16000366210943],[-4.801724910736084,34.20135879516613],[-4.765109062194767,34.18701171874994],[-4.762576103210449,34.141418457031364],[-4.739299774169865,34.10510253906256]]]},"properties":{"ID_0":152,"ISO":"MA-FES","NAME_0":"Morocco","ID_1":3,"NAME_1":"Fès - Boulemane","ID_2":7,"NAME_2":"Fès","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Fès-Dar-Dbibegh"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.575200080871525,34.058322906494254],[-4.556937217712346,34.02164840698248],[-4.554591178894043,33.93736648559576],[-4.525259971618595,33.91249084472667],[-4.392055988311768,33.872070312500114],[-4.331494808197021,33.91226196289068],[-4.246697902679443,33.89116668701183],[-4.232835769653263,33.8461647033692],[-4.20512676239008,33.83578491210943],[-4.139174938201904,33.83836364746094],[-4.203854084014893,33.77159118652338],[-4.208340167999268,33.70255279541009],[-4.181508064269963,33.66444778442394],[-4.244788169860783,33.6339988708496],[-4.266902923583984,33.5863990783692],[-4.308880805969238,33.56028366088873],[-4.462279796600342,33.56444168090826],[-4.565355777740479,33.599395751953125],[-4.643547058105412,33.598583221435604],[-4.761699199676457,33.56038284301758],[-4.805570125579834,33.5636444091798],[-4.848490238189696,33.53317260742182],[-4.89836311340332,33.531257629394645],[-4.897146224975586,33.585674285888786],[-4.996766090393066,33.66197586059582],[-5.092729091644287,33.672992706298885],[-5.126382827758789,33.7037086486817],[-5.12141799926752,33.73983764648443],[-5.080817222595215,33.826732635498104],[-5.086805820465088,33.87650680541998],[-5.116995811462402,33.91744613647461],[-5.031527042388916,33.92322921752935],[-4.996710777282714,33.9548454284668],[-4.957810878753605,33.91350173950201],[-4.963138103485107,33.87443923950206],[-4.921630859374942,33.876296997070426],[-4.903213977813721,33.92418289184576],[-4.870540142059326,33.92528533935558],[-4.82001590728754,33.95741271972656],[-4.794281005859374,33.99143600463867],[-4.802379131317139,34.023952484130916],[-4.770312786102295,34.07558059692382],[-4.739299774169865,34.10510253906256],[-4.653325080871581,34.08734512329113],[-4.625289916992187,34.068443298339844],[-4.575200080871525,34.058322906494254]]]},"properties":{"ID_0":152,"ISO":"MA-SEF","NAME_0":"Morocco","ID_1":3,"NAME_1":"Fès - Boulemane","ID_2":8,"NAME_2":"Sefrou","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.801724910736084,34.20135879516613],[-4.878390789031982,34.16000366210943],[-4.911286830902043,34.10062026977545],[-5.019558906555175,34.05236434936529],[-4.999815940856877,34.002758026123104],[-4.996710777282714,33.9548454284668],[-5.031527042388916,33.92322921752935],[-5.116995811462402,33.91744613647461],[-5.1439528465271,33.932754516601676],[-5.165369033813363,34.000610351562614],[-5.256401062011719,34.015510559082145],[-5.298597812652531,34.07101440429699],[-5.371837139129639,34.06638336181646],[-5.381937026977482,34.113979339599666],[-5.382154941558838,34.22567749023449],[-5.404630184173526,34.26801300048834],[-5.430943965911808,34.32424926757818],[-5.38900184631342,34.28688049316412],[-5.335972785949707,34.27817535400402],[-5.179959774017334,34.32169723510748],[-5.127089977264404,34.322910308837834],[-5.083092212676945,34.29513168334961],[-5.033163070678654,34.30728912353521],[-4.949435234069824,34.30139160156256],[-4.906752109527588,34.256263732910156],[-4.887753009796143,34.21713256835949],[-4.80565881729126,34.22756576538086],[-4.801724910736084,34.20135879516613]]]},"properties":{"ID_0":152,"ISO":"MA-MOU","NAME_0":"Morocco","ID_1":3,"NAME_1":"Fès - Boulemane","ID_2":9,"NAME_2":"Zouagha-Moulay Yacoub","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.844469070434513,34.9397811889649],[-5.830856800079346,34.85290145874029],[-5.883533954620304,34.82815170288097],[-5.86357402801508,34.7789306640625],[-5.88174295425415,34.726222991943416],[-5.826333999633732,34.67012405395513],[-5.814599037170353,34.63023376464855],[-5.937879085540771,34.63117218017584],[-6.0245361328125,34.601360321045036],[-6.094068050384521,34.60732269287115],[-6.170567035674992,34.555805206298764],[-6.209884166717529,34.54213333129883],[-6.217906951904297,34.50889205932617],[-6.163155078887883,34.49081039428711],[-6.023965835571289,34.3934326171875],[-5.935151100158578,34.36482620239269],[-5.90790319442749,34.34344482421875],[-5.857503890991211,34.35871887207031],[-5.849021911621094,34.38507843017583],[-5.887959003448486,34.4710426330567],[-5.823452949523869,34.48927307128917],[-5.760551929473877,34.427593231201286],[-5.7154541015625,34.42872238159191],[-5.689134120941161,34.37628555297863],[-5.750541210174561,34.36764526367182],[-5.76826000213623,34.35011291503906],[-5.770862102508488,34.29628753662121],[-5.785470962524414,34.25159454345709],[-5.816418170928955,34.25403213500988],[-5.852542877197265,34.23123931884777],[-5.850448131561279,34.205181121826286],[-5.923295021057071,34.175090789794865],[-5.880197048187199,34.14802932739258],[-5.863156795501652,34.095649719238224],[-6.010189056396483,34.109909057617294],[-6.172601222991887,34.15335083007818],[-6.217936992645264,34.1579475402832],[-6.368303775787354,34.14478302001959],[-6.468151092529297,34.16542816162121],[-6.56082010269165,34.13092041015636],[-6.63078594207758,34.145656585693416],[-6.650022983551025,34.169715881347656],[-6.698126792907657,34.1661491394043],[-6.711805820465088,34.18736267089855],[-6.678749084472656,34.25986099243169],[-6.632083892822265,34.32791519165039],[-6.540139198303166,34.44763946533208],[-6.390140056610107,34.69763946533203],[-6.302917003631535,34.86930465698248],[-6.267917156219426,34.82319259643566],[-6.249582290649357,34.859600067138786],[-6.296533107757568,34.88430786132824],[-6.250139236450138,34.98698806762701],[-6.154698848724252,34.979412078857536],[-6.088069915771428,34.98260498046875],[-5.949685096740723,34.96207427978521],[-5.889041900634709,34.94267654418945],[-5.844469070434513,34.9397811889649]]]},"properties":{"ID_0":152,"ISO":"MA-KEN","NAME_0":"Morocco","ID_1":4,"NAME_1":"Gharb - Chrarda - Béni Hssen","ID_2":10,"NAME_2":"Kénitra","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Kenitra"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.770846843719482,34.91344833374023],[-5.709773063659668,34.87964630126959],[-5.657011985778694,34.826183319091854],[-5.569712162017765,34.826454162597706],[-5.548560142517033,34.84112548828131],[-5.49806022644043,34.809146881103516],[-5.449059963226261,34.74983978271496],[-5.409334182739258,34.73358154296881],[-5.300374984741154,34.71457672119151],[-5.214858055114689,34.74472045898432],[-5.146657943725529,34.72993087768566],[-5.173526763916016,34.605854034423885],[-5.173895835876465,34.56531906127941],[-5.2344012260437,34.55787277221691],[-5.239554882049561,34.5383872985841],[-5.312232017517033,34.50104522705084],[-5.311353206634465,34.47734451293951],[-5.354227066040039,34.46129226684576],[-5.368938922882022,34.43786239624029],[-5.435147762298526,34.404865264892635],[-5.480538845062199,34.394721984863224],[-5.473019123077393,34.33440017700195],[-5.430943965911808,34.32424926757818],[-5.404630184173526,34.26801300048834],[-5.446015834808293,34.25870132446289],[-5.450027942657471,34.22047424316411],[-5.502495765686035,34.174835205078125],[-5.482686042785644,34.15216445922863],[-5.543001174926701,34.13763046264654],[-5.580778121948185,34.09672164916992],[-5.604543209075928,34.11761474609375],[-5.600774765014648,34.151775360107536],[-5.677318096160832,34.16936874389643],[-5.712968826293832,34.163516998291016],[-5.741766929626408,34.18447494506836],[-5.719709873199463,34.21975708007818],[-5.785470962524414,34.25159454345709],[-5.770862102508488,34.29628753662121],[-5.76826000213623,34.35011291503906],[-5.750541210174561,34.36764526367182],[-5.689134120941161,34.37628555297863],[-5.7154541015625,34.42872238159191],[-5.760551929473877,34.427593231201286],[-5.823452949523869,34.48927307128917],[-5.887959003448486,34.4710426330567],[-5.849021911621094,34.38507843017583],[-5.857503890991211,34.35871887207031],[-5.90790319442749,34.34344482421875],[-5.935151100158578,34.36482620239269],[-6.023965835571289,34.3934326171875],[-6.163155078887883,34.49081039428711],[-6.217906951904297,34.50889205932617],[-6.209884166717529,34.54213333129883],[-6.170567035674992,34.555805206298764],[-6.094068050384521,34.60732269287115],[-6.0245361328125,34.601360321045036],[-5.937879085540771,34.63117218017584],[-5.814599037170353,34.63023376464855],[-5.826333999633732,34.67012405395513],[-5.88174295425415,34.726222991943416],[-5.86357402801508,34.7789306640625],[-5.883533954620304,34.82815170288097],[-5.830856800079346,34.85290145874029],[-5.844469070434513,34.9397811889649],[-5.811799049377441,34.91753768920904],[-5.770846843719482,34.91344833374023]]]},"properties":{"ID_0":152,"ISO":"MA-SIK","NAME_0":"Morocco","ID_1":4,"NAME_1":"Gharb - Chrarda - Béni Hssen","ID_2":11,"NAME_2":"Sidi Kacem","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.403759956359862,33.451576232910156],[-7.448532104492187,33.44703292846691],[-7.528379917144718,33.39587783813482],[-7.563631057739257,33.320438385009766],[-7.599362850189209,33.32535552978521],[-7.616042137145939,33.374748229980696],[-7.54596996307373,33.39693832397461],[-7.57601499557495,33.422294616699276],[-7.638830184936523,33.427749633789055],[-7.682903766632022,33.412506103515625],[-7.733521938323974,33.458000183105575],[-7.784611225128173,33.452270507812614],[-7.80206918716425,33.46707153320318],[-7.866956233978271,33.459831237793026],[-7.894862174987792,33.49736022949219],[-7.819583892822209,33.53569412231457],[-7.755138874053955,33.54902648925781],[-7.680416107177678,33.596527099609375],[-7.624028205871582,33.61013793945318],[-7.588748931884765,33.605415344238395],[-7.521805763244629,33.62486267089855],[-7.45634889602661,33.66986083984381],[-7.418016910552978,33.64466476440424],[-7.371426105499268,33.67279434204107],[-7.405980110168399,33.617065429687614],[-7.389826774597111,33.5786247253419],[-7.401328086853027,33.55224227905279],[-7.366469860076847,33.49253845214855],[-7.412817955017033,33.478412628174055],[-7.403759956359862,33.451576232910156]]]},"properties":{"ID_0":152,"ISO":"MA-CAS","NAME_0":"Morocco","ID_1":5,"NAME_1":"Grand Casablanca","ID_2":12,"NAME_2":"Casablanca","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.45634889602661,33.66986083984381],[-7.402360916137695,33.713748931884766],[-7.349861145019531,33.71755599975586],[-7.371426105499268,33.67279434204107],[-7.418016910552978,33.64466476440424],[-7.45634889602661,33.66986083984381]]]},"properties":{"ID_0":152,"ISO":"MA-MOH","NAME_0":"Morocco","ID_1":5,"NAME_1":"Grand Casablanca","ID_2":13,"NAME_2":"Mohammedia","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.667678833007756,28.306951522827262],[-8.666340827941895,27.924659729003903],[-8.666838645935059,27.670074462890682],[-9.325313568115178,27.671991348266598],[-10.138028144836426,27.674339294433707],[-10.170379638671816,27.703104019165266],[-10.22032356262207,27.809322357177678],[-10.255756378173828,27.861667633056694],[-10.290975570678654,27.946088790893665],[-10.319577217102049,28.060178756713807],[-10.32596206665039,28.1274089813233],[-10.344526290893553,28.17043876647966],[-10.444005012512148,28.320444107055607],[-10.482797622680664,28.346040725708004],[-10.552906036376896,28.368877410888953],[-10.686437606811467,28.370277404785213],[-10.726202964782715,28.383287429809627],[-10.700543403625431,28.398424148559684],[-10.687173843383789,28.466703414916992],[-10.509895324706974,28.57286643981945],[-10.44851303100586,28.57726478576666],[-10.41247367858881,28.47324180603033],[-10.343248367309457,28.43447685241722],[-10.252078056335392,28.443801879882756],[-10.204417228698617,28.465011596679688],[-9.898629188537598,28.537034988403374],[-9.826593399047852,28.570251464843693],[-9.737092971801644,28.624649047851562],[-9.56433963775629,28.707811355590934],[-9.431734085083008,28.74052047729492],[-9.350617408752385,28.784538269043026],[-9.318596839904671,28.82354545593262],[-9.298445701599121,28.821371078491328],[-9.194436073303223,28.73557281494152],[-9.12212944030756,28.70885848999023],[-9.000070571899357,28.69831848144537],[-8.928873062133789,28.64611244201666],[-8.913579940795842,28.596870422363338],[-8.677024841308537,28.311897277832088],[-8.667678833007756,28.306951522827262]]]},"properties":{"ID_0":152,"ISO":"MA-ASZ","NAME_0":"Morocco","ID_1":6,"NAME_1":"Guelmim - Es-Semara","ID_2":14,"NAME_2":"Assa-Zag","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-9.155355453491211,29.20866775512701],[-9.16067123413086,29.128761291503903],[-9.186692237853947,29.09959220886236],[-9.241644859313965,28.94695472717297],[-9.318596839904671,28.82354545593262],[-9.350617408752385,28.784538269043026],[-9.431734085083008,28.74052047729492],[-9.56433963775629,28.707811355590934],[-9.737092971801644,28.624649047851562],[-9.826593399047852,28.570251464843693],[-9.898629188537598,28.537034988403374],[-10.204417228698617,28.465011596679688],[-10.252078056335392,28.443801879882756],[-10.343248367309457,28.43447685241722],[-10.41247367858881,28.47324180603033],[-10.44851303100586,28.57726478576666],[-10.509895324706974,28.57286643981945],[-10.687173843383789,28.466703414916992],[-10.700543403625431,28.398424148559684],[-10.726202964782715,28.383287429809627],[-10.783649444580078,28.377864837646598],[-10.829866409301758,28.38735008239746],[-10.929668426513672,28.461608886718977],[-11.00653076171875,28.4794921875],[-11.053557395935002,28.50683975219721],[-11.085838317871094,28.561576843261776],[-11.098988533019963,28.60356521606445],[-11.146527290344238,28.665590286254936],[-11.11347293853754,28.68708610534679],[-11.045694351196232,28.759860992431694],[-11.00541687011713,28.773195266723743],[-10.712917327880803,28.911527633667053],[-10.625138282775879,28.95819473266607],[-10.510695457458496,29.0279159545899],[-10.439800262451115,29.09559249877941],[-10.392825126647892,29.063312530517635],[-10.340394020080566,29.0660400390625],[-10.231299400329531,29.054391860961854],[-10.183685302734375,29.062896728515735],[-10.134001731872502,29.031869888305778],[-10.104153633117676,29.03536033630382],[-10.040201187133789,29.081218719482475],[-9.961692810058594,29.114267349243278],[-9.903273582458494,29.10716247558605],[-9.87174320220947,29.128061294555664],[-9.830765724182129,29.229341506958008],[-9.800349235534668,29.26108360290527],[-9.737902641296385,29.264585494995174],[-9.670607566833496,29.195800781250057],[-9.61707592010498,29.19442176818848],[-9.55381774902338,29.2091007232666],[-9.49121379852295,29.238119125366325],[-9.414073944091797,29.250806808471683],[-9.37695407867426,29.277561187744254],[-9.356708526611271,29.312591552734315],[-9.315660476684513,29.32208824157709],[-9.244398117065373,29.312847137451282],[-9.207351684570256,29.29512214660644],[-9.155355453491211,29.20866775512701]]]},"properties":{"ID_0":152,"ISO":"MA-GUE","NAME_0":"Morocco","ID_1":6,"NAME_1":"Guelmim - Es-Semara","ID_2":15,"NAME_2":"Guelmim","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-10.726202964782715,28.383287429809627],[-10.686437606811467,28.370277404785213],[-10.552906036376896,28.368877410888953],[-10.482797622680664,28.346040725708004],[-10.444005012512148,28.320444107055607],[-10.344526290893553,28.17043876647966],[-10.32596206665039,28.1274089813233],[-10.319577217102049,28.060178756713807],[-10.290975570678654,27.946088790893665],[-10.255756378173828,27.861667633056694],[-10.22032356262207,27.809322357177678],[-10.170379638671816,27.703104019165266],[-10.138028144836426,27.674339294433707],[-10.622239112853947,27.675739288330135],[-11.581982612609863,27.678512573242468],[-11.597855567932072,27.754877090454215],[-11.564276695251465,27.7628631591798],[-11.478850364685059,27.76151275634777],[-11.563710212707463,27.850921630859432],[-11.610602378845158,27.91815948486328],[-11.643961906433047,28.00662231445324],[-11.714015007019041,28.07125663757341],[-11.775222778320256,28.215139389038143],[-11.734026908874512,28.232082366943416],[-11.61652946472168,28.265417098998963],[-11.519582748413029,28.305416107177678],[-11.463748931884709,28.337360382080135],[-11.442361831665039,28.377639770507812],[-11.40458297729492,28.40875053405767],[-11.388749122619629,28.439582824707145],[-11.357083320617676,28.462083816528377],[-11.305971145629826,28.53069496154785],[-11.25069522857666,28.570972442626953],[-11.210140228271483,28.617361068725586],[-11.146527290344238,28.665590286254936],[-11.098988533019963,28.60356521606445],[-11.085838317871094,28.561576843261776],[-11.053557395935002,28.50683975219721],[-11.00653076171875,28.4794921875],[-10.929668426513672,28.461608886718977],[-10.829866409301758,28.38735008239746],[-10.783649444580078,28.377864837646598],[-10.726202964782715,28.383287429809627]]]},"properties":{"ID_0":152,"ISO":"MA-TNT","NAME_0":"Morocco","ID_1":6,"NAME_1":"Guelmim - Es-Semara","ID_2":16,"NAME_2":"Tan-Tan","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.397622108459473,29.55932807922363],[-6.446598052978516,29.564586639404354],[-6.521138191223145,29.523988723755053],[-6.686652183532714,29.516437530517578],[-6.719817161560059,29.50516510009771],[-6.776096820831299,29.461568832397457],[-6.832598209381104,29.4675464630127],[-6.90747594833374,29.495084762573185],[-7.021469116210938,29.493053436279354],[-7.113722801208439,29.522817611694393],[-7.148672103881836,29.52218246459961],[-7.255733013153019,29.473669052124134],[-7.329063892364502,29.405595779418945],[-7.389781951904298,29.379108428955075],[-7.479703903198241,29.36542320251465],[-7.536497116088867,29.36510658264177],[-7.591602802276611,29.376918792724723],[-7.625722885131779,29.356861114502006],[-7.644758224487304,29.310152053833118],[-7.785283088684082,29.255369186401364],[-7.843711853027286,29.210092544555664],[-7.932332992553654,29.1645145416262],[-7.959129810333252,29.12979507446289],[-8.078324317932072,29.06568908691412],[-8.164195060729922,29.012767791748104],[-8.177712440490666,29.015666961670032],[-8.353906631469727,28.889963150024528],[-8.459712982177734,28.796829223632923],[-8.667710304260197,28.71348953247076],[-8.667678833007756,28.306951522827262],[-8.677024841308537,28.311897277832088],[-8.913579940795842,28.596870422363338],[-8.928873062133789,28.64611244201666],[-9.000070571899357,28.69831848144537],[-9.12212944030756,28.70885848999023],[-9.194436073303223,28.73557281494152],[-9.298445701599121,28.821371078491328],[-9.318596839904671,28.82354545593262],[-9.241644859313965,28.94695472717297],[-9.186692237853947,29.09959220886236],[-9.16067123413086,29.128761291503903],[-9.155355453491211,29.20866775512701],[-9.147006034851074,29.25550270080572],[-9.117165565490666,29.3499565124514],[-9.083358764648436,29.41065406799328],[-9.045690536499022,29.43172264099132],[-8.940512657165414,29.422273635864375],[-8.784215927124023,29.460546493530387],[-8.665872573852539,29.494678497314453],[-8.65315246582031,29.515022277832028],[-8.703140258789006,29.567167282104606],[-8.714894294738713,29.596824645996094],[-8.708928108215332,29.7344264984132],[-8.671401977539004,29.791381835937496],[-8.63377857208252,29.825939178466907],[-8.628582954406681,29.85719299316406],[-8.661623001098576,29.86578178405767],[-8.692944526672363,29.852798461914062],[-8.720670700073242,29.865076065063477],[-8.72253704071045,29.91417312622076],[-8.687026977539006,29.94189834594738],[-8.608776092529297,29.94828414916992],[-8.41834926605219,29.871959686279297],[-8.386925697326603,29.873035430908317],[-8.345460891723576,29.9091682434082],[-8.313652038574162,29.977979660034297],[-8.281719207763615,30.001647949218803],[-8.232110977172852,30.000547409057617],[-8.138163566589299,29.938829421997013],[-8.02619838714594,29.897928237915092],[-7.935544967651366,29.9266033172608],[-7.859193801879826,29.99489021301281],[-7.820755958557015,30.00849533081049],[-7.750333786010742,29.99276542663574],[-7.671360015869084,29.987670898437496],[-7.634942054748535,30.029819488525508],[-7.664556980133,30.15548133850109],[-7.63184976577753,30.224752426147518],[-7.548418045043946,30.276218414306697],[-7.470451831817569,30.232427597046016],[-7.445960044860839,30.199842453002876],[-7.436523914337157,30.14552688598639],[-7.385369777679442,30.113973617553825],[-7.203913211822509,30.10593605041504],[-7.180358886718749,30.120754241943413],[-7.163441181182804,30.194936752319332],[-7.118681907653752,30.284370422363395],[-7.073056221008243,30.327297210693416],[-7.00200080871582,30.32240676879894],[-6.943925857543944,30.29446601867681],[-6.872384071350098,30.288610458374247],[-6.79311990737915,30.321386337280273],[-6.714027881622314,30.404214859008732],[-6.66536092758173,30.412506103515913],[-6.616382122039794,30.389539718627987],[-6.573439121246338,30.34954452514648],[-6.507914066314696,30.265409469604606],[-6.48215389251709,30.219440460205018],[-6.420952796935921,30.140790939331282],[-6.379587173461799,30.055706024169975],[-6.374503135681152,29.908067703247184],[-6.3955078125,29.82251358032238],[-6.39039421081543,29.740177154541016],[-6.40402507781971,29.651399612426925],[-6.397622108459473,29.55932807922363]]]},"properties":{"ID_0":152,"ISO":"MA-TAT","NAME_0":"Morocco","ID_1":6,"NAME_1":"Guelmim - Es-Semara","ID_2":17,"NAME_2":"Tata","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-11.775222778320256,28.215139389038143],[-11.714015007019041,28.07125663757341],[-11.643961906433047,28.00662231445324],[-11.610602378845158,27.91815948486328],[-11.563710212707463,27.850921630859432],[-11.478850364685059,27.76151275634777],[-11.564276695251465,27.7628631591798],[-11.597855567932072,27.754877090454215],[-11.581982612609863,27.678512573242468],[-12.10278034210205,27.680017471313473],[-12.363032341003361,27.680770874023494],[-13.167089462280273,27.68309783935558],[-13.15986156463623,27.69708251953142],[-13.070694923400822,27.735416412353572],[-13.008470535278263,27.808471679687667],[-12.987638473510742,27.878747940063473],[-12.959306716918945,27.920694351196286],[-12.905958175659066,27.95452308654791],[-12.655139923095701,27.98236083984386],[-12.512083053588809,28.009025573730526],[-12.236806869506836,28.052917480468807],[-12.08236122131342,28.086526870727596],[-11.897083282470646,28.171806335449162],[-11.775222778320256,28.215139389038143]]]},"properties":{"ID_0":152,"ISO":"MA-LAA","NAME_0":"Morocco","ID_1":7,"NAME_1":"Laâyoune - Boujdour - Sakia El Hamra","ID_2":18,"NAME_2":"Laâyoune","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Laayoune"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.265823841094971,31.69771385192871],[-7.256267070770264,31.668684005737415],[-7.215283870697022,31.647644042968974],[-7.221867084503174,31.612319946289062],[-7.14197015762329,31.61837768554699],[-7.116692066192627,31.595928192138782],[-7.12607479095459,31.540874481201172],[-7.152145862579346,31.485794067382923],[-7.153965950012207,31.42706680297857],[-7.142748832702637,31.399085998535156],[-7.227939128875732,31.369127273559684],[-7.280344009399414,31.30705642700195],[-7.346602916717529,31.29449844360374],[-7.438702106475716,31.290105819702145],[-7.487743854522705,31.269746780395625],[-7.569087982177733,31.196422576904297],[-7.63424015045166,31.17318344116211],[-7.692937850952148,31.172466278076225],[-7.767347812652588,31.137861251831165],[-7.831706047058105,31.082180023193363],[-7.902658939361572,31.0491561889649],[-7.90522289276123,31.003181457519585],[-7.988927841186523,30.93970680236822],[-8.045815467834416,30.90947151184076],[-8.098192214965763,30.963848114013782],[-8.181926727294922,30.92973327636724],[-8.321075439453125,30.906236648559513],[-8.390481948852482,30.912170410156477],[-8.423603057861328,30.882490158080994],[-8.533945083618164,30.887430191040096],[-8.530303001403752,30.917057037353572],[-8.464874267578123,30.93781280517589],[-8.349696159362736,31.08761215209989],[-8.341754913330078,31.108350753784176],[-8.35304069519043,31.180877685546875],[-8.342030525207463,31.22415924072266],[-8.355501174926701,31.29481506347662],[-8.332976341247559,31.31473922729498],[-8.306970596313477,31.377403259277397],[-8.256219863891545,31.37644767761242],[-8.21802616119379,31.40420150756842],[-8.148004531860352,31.438652038574272],[-8.17429256439209,31.49818611145025],[-8.153349876403695,31.524507522583068],[-8.092315673828068,31.53774452209484],[-8.037669181823617,31.52935218811046],[-7.988913059234562,31.506219863891655],[-7.943349838256836,31.462387084960934],[-7.914308071136418,31.501119613647514],[-7.936093807220459,31.55013084411644],[-7.889674186706542,31.573791503906246],[-7.847469806671142,31.564823150634822],[-7.742578983306828,31.564401626587195],[-7.712397098541259,31.618230819702205],[-7.727101802825872,31.66555786132812],[-7.651350975036621,31.668041229248164],[-7.56751823425293,31.61237525939941],[-7.54589509963978,31.611072540283203],[-7.4437580108642,31.63982963562017],[-7.400469779968262,31.689950942993274],[-7.346413135528564,31.703376770019588],[-7.265823841094971,31.69771385192871]]]},"properties":{"ID_0":152,"ISO":"MA-HAO","NAME_0":"Morocco","ID_1":8,"NAME_1":"Marrakech - Tensift - Al Haouz","ID_2":19,"NAME_2":"Al Haouz","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.392733573913574,31.698745727539062],[-8.429147720336914,31.644756317138786],[-8.382327079772836,31.615249633789123],[-8.368575096130314,31.587333679199215],[-8.401412010192871,31.566421508789116],[-8.400654792785588,31.53978919982916],[-8.364269256591795,31.523059844970984],[-8.288003921508789,31.446437835693303],[-8.256219863891545,31.37644767761242],[-8.306970596313477,31.377403259277397],[-8.332976341247559,31.31473922729498],[-8.355501174926701,31.29481506347662],[-8.342030525207463,31.22415924072266],[-8.35304069519043,31.180877685546875],[-8.341754913330078,31.108350753784176],[-8.349696159362736,31.08761215209989],[-8.464874267578123,30.93781280517589],[-8.530303001403752,30.917057037353572],[-8.533945083618164,30.887430191040096],[-8.615438461303711,30.880025863647457],[-8.650097846984863,30.851684570312496],[-8.685508728027287,30.84815406799322],[-8.71154499053955,30.929307937622013],[-8.770391464233398,30.954975128173825],[-8.780837059020937,30.97695350646984],[-8.819019317626896,30.978885650634822],[-8.858328819274902,30.938980102539176],[-8.921295166015625,30.905736923217884],[-8.995047569274846,30.88064575195312],[-9.043822288513184,30.836034774780327],[-9.151682853698729,30.844137191772575],[-9.187199592590332,30.926898956298828],[-9.17176723480219,30.97024536132824],[-9.203290939330998,31.028703689575195],[-9.300432205200195,31.087764739990288],[-9.308280944824219,31.13727188110369],[-9.272273063659611,31.200164794921875],[-9.237381935119627,31.236871719360405],[-9.231679916381834,31.34490966796875],[-9.1507568359375,31.373891830444563],[-9.129133224487303,31.370920181274414],[-9.07296085357666,31.40140724182129],[-9.067858695983887,31.456142425537227],[-9.120663642883299,31.449134826660213],[-9.15223979949951,31.465776443481502],[-9.160759925842228,31.52403831481939],[-9.141536712646428,31.57112121582031],[-9.06322193145752,31.647804260253906],[-9.019285202026367,31.677217483520504],[-8.935148239135629,31.700597763061523],[-8.939689636230469,31.76945877075201],[-8.879587173461914,31.757646560669055],[-8.805314064025822,31.71286392211925],[-8.770670890808105,31.715934753418026],[-8.742794036865234,31.74053001403814],[-8.711803436279297,31.732074737548885],[-8.60468006134033,31.75042533874517],[-8.555994987487793,31.708557128906367],[-8.503827095031738,31.693798065185657],[-8.431431770324707,31.720056533813587],[-8.392733573913574,31.698745727539062]]]},"properties":{"ID_0":152,"ISO":"MA-CHI","NAME_0":"Morocco","ID_1":8,"NAME_1":"Marrakech - Tensift - Al Haouz","ID_2":20,"NAME_2":"Chichaoua","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.096294879913329,32.349262237549055],[-7.104716777801514,32.261985778808594],[-7.085706233978271,32.191642761230526],[-7.094932079315186,32.14744567871105],[-7.083401203155518,32.061290740966854],[-7.054349899291992,32.02005767822277],[-7.020309925079289,32.00768280029291],[-7.008597850799561,31.968719482421985],[-7.031435012817382,31.947181701660266],[-7.026236057281493,31.902721405029297],[-6.975689888000431,31.849994659423942],[-7.006015777587891,31.837623596191463],[-7.00087118148798,31.78581809997576],[-7.017685890197754,31.772525787353572],[-7.065193176269531,31.778930664062784],[-7.130075931549072,31.766061782836854],[-7.170004844665471,31.78482437133789],[-7.219196796417236,31.78247833251953],[-7.265242099761905,31.748016357421932],[-7.265823841094971,31.69771385192871],[-7.346413135528564,31.703376770019588],[-7.400469779968262,31.689950942993274],[-7.4437580108642,31.63982963562017],[-7.54589509963978,31.611072540283203],[-7.56751823425293,31.61237525939941],[-7.651350975036621,31.668041229248164],[-7.727101802825872,31.66555786132812],[-7.761711120605469,31.669424057006946],[-7.802371978759765,31.703193664550835],[-7.875450134277287,31.69780158996582],[-7.940083980560302,31.75162506103521],[-8.026740074157715,31.742889404296985],[-7.998775005340576,31.791236877441406],[-8.018577575683594,31.853082656860348],[-8.050778388976994,31.89190673828119],[-8.055306434631348,31.9295101165772],[-8.032608032226506,31.952123641967717],[-8.02963638305664,32.01224136352545],[-8.061880111694336,32.047855377197266],[-8.189615249633789,32.0598411560058],[-8.19211196899414,32.092529296875114],[-8.23256587982172,32.12165451049822],[-8.3477783203125,32.16590881347662],[-8.409938812255858,32.235260009765625],[-8.441067695617676,32.300235748291016],[-8.436950683593748,32.353649139404524],[-8.350146293640137,32.38199615478521],[-8.33887004852295,32.403633117675895],[-8.265787124633789,32.414146423340014],[-8.24435424804676,32.46792602539057],[-8.182088851928711,32.46871948242187],[-8.09831523895258,32.528293609619084],[-8.06303596496582,32.57109832763683],[-8.04417419433588,32.624370574951286],[-8.072281837463379,32.66091918945324],[-8.072434425354004,32.68795776367193],[-8.035879135131836,32.711959838867244],[-8.033541679382266,32.78668212890625],[-7.989078044891357,32.81506347656244],[-7.907823085784854,32.723445892333984],[-7.902809143066349,32.69826126098632],[-7.810822963714543,32.6742897033692],[-7.749532222747803,32.65019607543945],[-7.719991207122803,32.62692642211914],[-7.683296203613224,32.55511474609375],[-7.655451774597167,32.54603576660162],[-7.586689949035587,32.43031692504883],[-7.514234066009465,32.43096160888672],[-7.417209148406926,32.48430252075218],[-7.340393066406249,32.48762512207031],[-7.295358180999699,32.434085845947266],[-7.2447571754455,32.43230438232422],[-7.149303913116455,32.37053680419927],[-7.096294879913329,32.349262237549055]]]},"properties":{"ID_0":152,"ISO":"MA-KES","NAME_0":"Morocco","ID_1":8,"NAME_1":"Marrakech - Tensift - Al Haouz","ID_2":21,"NAME_2":"El Kelaâ des Sraghna","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"El Kelaa Sraghna"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-9.435416221618652,31.94380569458013],[-9.339283943176211,31.914144515991325],[-9.28492069244379,31.909780502319276],[-9.232966423034668,31.919494628906307],[-9.084622383117676,31.909072875976506],[-9.032825469970646,31.893522262573352],[-9.00178527832031,31.812042236328125],[-8.947182655334473,31.78547477722168],[-8.939689636230469,31.76945877075201],[-8.935148239135629,31.700597763061523],[-9.019285202026367,31.677217483520504],[-9.06322193145752,31.647804260253906],[-9.141536712646428,31.57112121582031],[-9.160759925842228,31.52403831481939],[-9.15223979949951,31.465776443481502],[-9.120663642883299,31.449134826660213],[-9.067858695983887,31.456142425537227],[-9.07296085357666,31.40140724182129],[-9.129133224487303,31.370920181274414],[-9.1507568359375,31.373891830444563],[-9.231679916381834,31.34490966796875],[-9.237381935119627,31.236871719360405],[-9.272273063659611,31.200164794921875],[-9.308280944824219,31.13727188110369],[-9.300432205200195,31.087764739990288],[-9.203290939330998,31.028703689575195],[-9.17176723480219,30.97024536132824],[-9.187199592590332,30.926898956298828],[-9.151682853698729,30.844137191772575],[-9.187334060668945,30.828126907348686],[-9.237119674682617,30.82715034484886],[-9.284329414367619,30.809429168701172],[-9.346405982971191,30.83381843566894],[-9.412115097045898,30.827648162841907],[-9.45729923248291,30.813478469848917],[-9.514874458312988,30.831716537475703],[-9.541699409484863,30.863491058349666],[-9.569354057311955,30.82655715942377],[-9.598052024841252,30.81523704528814],[-9.648813247680664,30.833749771118107],[-9.722607612609863,30.83457565307634],[-9.745277404785156,30.88534927368164],[-9.820416450500431,30.950773239135682],[-9.809306144714299,31.01152801513672],[-9.81680679321289,31.091806411743274],[-9.842359542846623,31.103750228882006],[-9.838193893432617,31.146249771118388],[-9.818194389343262,31.181528091430664],[-9.820416450500431,31.2329158782959],[-9.799304962158146,31.275972366333065],[-9.79736137390131,31.353471755981555],[-9.833471298217773,31.41402816772478],[-9.78986072540283,31.456249237060604],[-9.73569488525385,31.541805267333924],[-9.687360763549805,31.60180664062517],[-9.675694465637207,31.63041496276855],[-9.677082061767578,31.698194503784233],[-9.634583473205566,31.730693817138672],[-9.586527824401799,31.79402732849121],[-9.532361030578613,31.842361450195316],[-9.435416221618652,31.94380569458013]]]},"properties":{"ID_0":152,"ISO":"MA-ESI","NAME_0":"Morocco","ID_1":8,"NAME_1":"Marrakech - Tensift - Al Haouz","ID_2":22,"NAME_2":"Essaouira","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.189615249633789,32.0598411560058],[-8.061880111694336,32.047855377197266],[-8.02963638305664,32.01224136352545],[-8.032608032226506,31.952123641967717],[-8.055306434631348,31.9295101165772],[-8.050778388976994,31.89190673828119],[-8.018577575683594,31.853082656860348],[-7.998775005340576,31.791236877441406],[-8.026740074157715,31.742889404296985],[-7.940083980560302,31.75162506103521],[-7.875450134277287,31.69780158996582],[-7.802371978759765,31.703193664550835],[-7.761711120605469,31.669424057006946],[-7.727101802825872,31.66555786132812],[-7.712397098541259,31.618230819702205],[-7.742578983306828,31.564401626587195],[-7.847469806671142,31.564823150634822],[-7.889674186706542,31.573791503906246],[-7.936093807220459,31.55013084411644],[-7.914308071136418,31.501119613647514],[-7.943349838256836,31.462387084960934],[-7.988913059234562,31.506219863891655],[-8.037669181823617,31.52935218811046],[-8.092315673828068,31.53774452209484],[-8.153349876403695,31.524507522583068],[-8.17429256439209,31.49818611145025],[-8.148004531860352,31.438652038574272],[-8.21802616119379,31.40420150756842],[-8.256219863891545,31.37644767761242],[-8.288003921508789,31.446437835693303],[-8.364269256591795,31.523059844970984],[-8.400654792785588,31.53978919982916],[-8.401412010192871,31.566421508789116],[-8.368575096130314,31.587333679199215],[-8.382327079772836,31.615249633789123],[-8.429147720336914,31.644756317138786],[-8.392733573913574,31.698745727539062],[-8.355440139770508,31.70682144165039],[-8.404024124145451,31.747802734375057],[-8.422375679016112,31.80047225952148],[-8.347699165344238,31.890520095825252],[-8.341450691223088,31.924535751342773],[-8.304408073425236,31.981239318847887],[-8.189615249633789,32.0598411560058]]]},"properties":{"ID_0":152,"ISO":"MA-MMD","NAME_0":"Morocco","ID_1":8,"NAME_1":"Marrakech - Tensift - Al Haouz","ID_2":23,"NAME_2":"Marrakech","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.256401062011719,34.015510559082145],[-5.165369033813363,34.000610351562614],[-5.1439528465271,33.932754516601676],[-5.116995811462402,33.91744613647461],[-5.086805820465088,33.87650680541998],[-5.080817222595215,33.826732635498104],[-5.12141799926752,33.73983764648443],[-5.178318023681641,33.79900360107433],[-5.219472885131836,33.822547912597656],[-5.252303123474121,33.79672241210949],[-5.243721961975041,33.684921264648494],[-5.207221031188965,33.62091445922857],[-5.159236907958984,33.59133148193371],[-5.193509101867676,33.550483703613395],[-5.229522228240966,33.5406494140625],[-5.329617023467961,33.573822021484375],[-5.447147846221924,33.59578323364269],[-5.575467109680176,33.45719146728521],[-5.604022979736328,33.411502838134815],[-5.649233818054199,33.377426147460994],[-5.69036388397211,33.37614440917997],[-5.786903858184758,33.40161895751953],[-5.788924217224121,33.45405578613281],[-5.77825212478632,33.562553405761655],[-5.759259223937931,33.62346649169927],[-5.744725227355957,33.747852325439396],[-5.74710988998413,33.785747528076286],[-5.784993171691894,33.814983367919865],[-5.79789495468134,33.87730789184582],[-5.775592803955078,33.88422012329095],[-5.718916893005371,33.83327484130865],[-5.683692932128905,33.83004760742193],[-5.673734188079777,33.8741569519043],[-5.573540210723877,33.844421386718864],[-5.550261020660344,33.78844070434582],[-5.480300903320256,33.80605697631836],[-5.456639766693114,33.82345581054699],[-5.426977157592773,33.893630981445426],[-5.440904140472412,33.92667770385748],[-5.380054950714111,33.94662857055664],[-5.359518051147404,33.98456954956055],[-5.304647922515869,33.98815536499034],[-5.256401062011719,34.015510559082145]]]},"properties":{"ID_0":152,"ISO":"MA-HAJ","NAME_0":"Morocco","ID_1":9,"NAME_1":"Meknès - Tafilalet","ID_2":24,"NAME_2":"El Hajeb","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.054047107696532,32.63758850097662],[-4.019381999969482,32.624637603759766],[-3.986133098602294,32.59080505371094],[-3.913767099380493,32.47341537475586],[-3.869874000549203,32.39014053344755],[-3.847836971282902,32.30351257324213],[-3.753742933273258,32.28661727905285],[-3.668873071670419,32.23318481445312],[-3.686706066131535,32.20063400268555],[-3.668461084365788,32.17680358886747],[-3.63077807426447,32.17366409301769],[-3.557323932647648,32.18468856811529],[-3.462847948074284,32.176727294921875],[-3.25304102897644,32.14400482177746],[-3.243983030319214,32.11872482299833],[-3.284950971603394,32.0506858825683],[-3.296262025833073,31.983554840087834],[-3.296014070510864,31.901018142700252],[-3.262649059295654,31.70969390869169],[-3.663570880889836,31.63311386108427],[-3.663783073425293,31.401008605957028],[-3.65981388092041,31.377523422241268],[-3.713896036148014,31.34644699096691],[-3.76353907585144,31.33360290527355],[-3.776750087738037,31.30217361450201],[-3.75770092010498,31.262990951538203],[-3.789604902267399,31.235776901245114],[-3.758389949798527,31.17542266845709],[-3.776669979095459,31.123609542846676],[-3.7241370677948,31.127128601074443],[-3.723138093948307,31.14528465271007],[-3.679835081100464,31.16476821899414],[-3.67298507690424,31.096797943115348],[-3.604711055755615,31.075839996337834],[-3.576061964034977,31.047328948974666],[-3.54751992225647,31.061044692993224],[-3.535259008407593,31.013233184814567],[-3.555660009384042,30.931678771972713],[-3.649065017700195,30.84667968749994],[-3.647829055786133,30.77371788024914],[-3.620392084121647,30.73894119262701],[-3.642934083938542,30.699592590332145],[-3.843025922775155,30.62739753723144],[-3.98842000961298,30.59353637695324],[-4.145473957061654,30.584829330444393],[-4.320165157318115,30.528390884399357],[-4.606369972228947,30.282133102417045],[-4.935503005981388,30.139978408813533],[-5.11764097213745,30.00613021850592],[-5.152252197265568,30.093555450439393],[-5.192254066467285,30.13143348693859],[-5.214879035949707,30.195796966552678],[-5.208254814147949,30.309381484985465],[-5.21119499206543,30.39750862121593],[-5.200072765350342,30.449016571044975],[-5.200811862945556,30.613315582275334],[-5.250541210174504,30.672193527221733],[-5.339065074920597,30.811149597168082],[-5.359077930450439,30.911214828491264],[-5.329002857208251,31.03794479370117],[-5.326965808868351,31.07696914672863],[-5.306433200836182,31.188978195190543],[-5.264503955841007,31.273035049438477],[-5.240221023559513,31.349046707153377],[-5.235400199890137,31.4083976745606],[-5.254681110382023,31.46349716186529],[-5.309488773345947,31.505802154541016],[-5.38723611831665,31.52642822265636],[-5.459924221038762,31.56432151794445],[-5.501863002777099,31.61646461486822],[-5.641308784484806,31.649051666259766],[-5.712932109832764,31.634647369384876],[-5.784732818603402,31.643527984619137],[-5.785696029663086,31.685634613037276],[-5.682157039642334,31.774333953857422],[-5.573933124542236,31.875173568725643],[-5.530764102935791,31.93960380554199],[-5.657849788665771,32.02286148071289],[-5.703988075256348,32.033401489257926],[-5.769890785217285,31.99336814880371],[-5.809366226196232,31.985050201416126],[-5.818540096282959,32.112277984619254],[-5.792753219604492,32.131507873535156],[-5.791763782501221,32.16231536865246],[-5.733107089996338,32.182300567626896],[-5.698494911193848,32.21485137939453],[-5.693075180053711,32.244049072265625],[-5.66251611709589,32.26062393188482],[-5.601295948028564,32.270439147949276],[-5.539947986602782,32.26671218872076],[-5.456421852111816,32.253562927246094],[-5.395215034484863,32.21620178222656],[-5.266998767852783,32.257324218750114],[-5.224896907806396,32.30281066894531],[-5.164809226989689,32.332015991210994],[-5.11614799499506,32.33625411987305],[-5.072451114654541,32.35653686523432],[-5.000207901000977,32.374023437500284],[-4.972155094146672,32.39270782470709],[-4.908342838287296,32.39703750610363],[-4.802760124206543,32.442508697509766],[-4.78093385696411,32.466270446777344],[-4.871231079101562,32.48077774047862],[-4.873316764831543,32.50088500976574],[-4.809792041778508,32.526588439941456],[-4.712128162383976,32.55292510986333],[-4.675193786621036,32.57313537597662],[-4.48130989074707,32.607177734375],[-4.389523983001652,32.64235687255865],[-4.289350986480713,32.661781311035384],[-4.282040119171029,32.63508987426769],[-4.192032814025879,32.624961853027344],[-4.08964204788208,32.625247955322266],[-4.054047107696532,32.63758850097662]]]},"properties":{"ID_0":152,"ISO":"MA-ERR","NAME_0":"Morocco","ID_1":9,"NAME_1":"Meknès - Tafilalet","ID_2":25,"NAME_2":"Errachidia","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.89836311340332,33.531257629394645],[-5.001195907592773,33.406047821044865],[-5.004627227783089,33.36920547485363],[-4.9859299659729,33.3387565612793],[-4.924521923065186,33.292884826660156],[-4.88861608505249,33.22380828857416],[-4.842996120452824,33.09851837158203],[-4.914826869964485,33.07987213134788],[-5.050411224365234,33.07014846801769],[-5.15228080749506,32.92600631713867],[-5.173902988433838,32.87391662597662],[-5.220951080322266,32.863735198974894],[-5.248350143432617,32.875579833984375],[-5.222989082336425,32.94634246826172],[-5.248415946960449,32.97139358520508],[-5.316075801849365,32.986606597900504],[-5.268381118774414,33.15326690673828],[-5.283445835113412,33.161266326904354],[-5.426086902618408,33.15708923339844],[-5.452523231506348,33.169345855712834],[-5.478273868560734,33.20941543579118],[-5.511618137359618,33.23088455200201],[-5.496414184570256,33.269912719726676],[-5.520912170410099,33.36106491088867],[-5.649233818054199,33.377426147460994],[-5.604022979736328,33.411502838134815],[-5.575467109680176,33.45719146728521],[-5.447147846221924,33.59578323364269],[-5.329617023467961,33.573822021484375],[-5.229522228240966,33.5406494140625],[-5.193509101867676,33.550483703613395],[-5.159236907958984,33.59133148193371],[-5.207221031188965,33.62091445922857],[-5.243721961975041,33.684921264648494],[-5.252303123474121,33.79672241210949],[-5.219472885131836,33.822547912597656],[-5.178318023681641,33.79900360107433],[-5.12141799926752,33.73983764648443],[-5.126382827758789,33.7037086486817],[-5.092729091644287,33.672992706298885],[-4.996766090393066,33.66197586059582],[-4.897146224975586,33.585674285888786],[-4.89836311340332,33.531257629394645]]]},"properties":{"ID_0":152,"ISO":"MA-IFR","NAME_0":"Morocco","ID_1":9,"NAME_1":"Meknès - Tafilalet","ID_2":26,"NAME_2":"Ifrane","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.649233818054199,33.377426147460994],[-5.520912170410099,33.36106491088867],[-5.496414184570256,33.269912719726676],[-5.511618137359618,33.23088455200201],[-5.478273868560734,33.20941543579118],[-5.452523231506348,33.169345855712834],[-5.426086902618408,33.15708923339844],[-5.283445835113412,33.161266326904354],[-5.268381118774414,33.15326690673828],[-5.316075801849365,32.986606597900504],[-5.248415946960449,32.97139358520508],[-5.222989082336425,32.94634246826172],[-5.248350143432617,32.875579833984375],[-5.220951080322266,32.863735198974894],[-5.173902988433838,32.87391662597662],[-5.15228080749506,32.92600631713867],[-5.050411224365234,33.07014846801769],[-4.914826869964485,33.07987213134788],[-4.842996120452824,33.09851837158203],[-4.824687004089355,33.06803894042969],[-4.750524044036865,33.00725173950195],[-4.762825965881347,32.937343597412166],[-4.713849067687931,32.891658782958984],[-4.668735980987491,32.87610244750982],[-4.579023838043213,32.890037536621094],[-4.481241226196289,32.886814117431925],[-4.45009803771967,32.863292694092024],[-4.425291061401309,32.818069458007926],[-4.384900093078613,32.79611968994169],[-4.293167114257756,32.71821212768566],[-4.289350986480713,32.661781311035384],[-4.389523983001652,32.64235687255865],[-4.48130989074707,32.607177734375],[-4.675193786621036,32.57313537597662],[-4.712128162383976,32.55292510986333],[-4.809792041778508,32.526588439941456],[-4.873316764831543,32.50088500976574],[-4.871231079101562,32.48077774047862],[-4.78093385696411,32.466270446777344],[-4.802760124206543,32.442508697509766],[-4.908342838287296,32.39703750610363],[-4.972155094146672,32.39270782470709],[-5.000207901000977,32.374023437500284],[-5.072451114654541,32.35653686523432],[-5.11614799499506,32.33625411987305],[-5.164809226989689,32.332015991210994],[-5.224896907806396,32.30281066894531],[-5.266998767852783,32.257324218750114],[-5.395215034484863,32.21620178222656],[-5.456421852111816,32.253562927246094],[-5.539947986602782,32.26671218872076],[-5.528954982757568,32.2946891784668],[-5.55503511428833,32.31328582763672],[-5.531923770904541,32.358234405517635],[-5.543957233428955,32.37666320800787],[-5.500706195831242,32.450569152831974],[-5.551036834716797,32.52429199218756],[-5.573194980621338,32.57664108276373],[-5.632174015045108,32.58147430419922],[-5.68290615081787,32.618610382080135],[-5.712646007537842,32.62306594848644],[-5.772222995758057,32.60088348388672],[-5.785201072692871,32.65858840942383],[-5.837991237640381,32.7089462280274],[-5.875408172607365,32.71253585815424],[-5.892776012420654,32.74331665039073],[-5.937498092651367,32.76523208618164],[-6.010511875152531,32.76110076904297],[-6.020800113677922,32.8226776123048],[-5.999925136566162,32.833904266357415],[-6.035702228546143,32.87444305419922],[-6.042300224304198,32.90237426757824],[-6.108398914337101,32.89153289794933],[-6.140388011932373,32.90184402465826],[-6.138134956359863,32.939758300781364],[-6.076224803924504,32.95841598510742],[-6.083452224731388,32.98269653320324],[-6.12737321853632,32.99860763549816],[-6.136046886444035,33.03523254394531],[-6.192454814910889,33.05808639526373],[-6.238834857940674,33.0959091186524],[-6.278553962707462,33.10717391967768],[-6.290180206298714,33.13375854492199],[-6.388197898864745,33.16184997558594],[-6.397848129272461,33.176532745361385],[-6.361415863037053,33.23888778686529],[-6.38712120056141,33.28063583374029],[-6.377604007720947,33.33493041992193],[-6.349490165710449,33.38499832153326],[-6.261573791503905,33.39713668823242],[-6.230570793151855,33.381355285644474],[-6.201805114746093,33.39802551269537],[-6.17646598815918,33.371768951416016],[-6.140869140624999,33.37054443359375],[-6.106420040130558,33.27112579345703],[-6.036165237426701,33.252201080322486],[-5.976194858550912,33.29910278320324],[-5.938229084014893,33.309207916259766],[-5.813509941100961,33.278602600097656],[-5.79038476943964,33.28563308715826],[-5.769970893859806,33.3438148498538],[-5.786903858184758,33.40161895751953],[-5.69036388397211,33.37614440917997],[-5.649233818054199,33.377426147460994]]]},"properties":{"ID_0":152,"ISO":"MA-KHN","NAME_0":"Morocco","ID_1":9,"NAME_1":"Meknès - Tafilalet","ID_2":27,"NAME_2":"Khénifra","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Khenifra"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.404630184173526,34.26801300048834],[-5.382154941558838,34.22567749023449],[-5.381937026977482,34.113979339599666],[-5.371837139129639,34.06638336181646],[-5.298597812652531,34.07101440429699],[-5.256401062011719,34.015510559082145],[-5.304647922515869,33.98815536499034],[-5.359518051147404,33.98456954956055],[-5.380054950714111,33.94662857055664],[-5.440904140472412,33.92667770385748],[-5.426977157592773,33.893630981445426],[-5.456639766693114,33.82345581054699],[-5.480300903320256,33.80605697631836],[-5.550261020660344,33.78844070434582],[-5.573540210723877,33.844421386718864],[-5.673734188079777,33.8741569519043],[-5.683692932128905,33.83004760742193],[-5.718916893005371,33.83327484130865],[-5.775592803955078,33.88422012329095],[-5.79789495468134,33.87730789184582],[-5.826988220214844,33.90450286865246],[-5.772922992706299,33.94713973999035],[-5.781938076019287,33.98467254638672],[-5.859512805938607,34.045478820800895],[-5.863156795501652,34.095649719238224],[-5.880197048187199,34.14802932739258],[-5.923295021057071,34.175090789794865],[-5.850448131561279,34.205181121826286],[-5.852542877197265,34.23123931884777],[-5.816418170928955,34.25403213500988],[-5.785470962524414,34.25159454345709],[-5.719709873199463,34.21975708007818],[-5.741766929626408,34.18447494506836],[-5.712968826293832,34.163516998291016],[-5.677318096160832,34.16936874389643],[-5.600774765014648,34.151775360107536],[-5.604543209075928,34.11761474609375],[-5.580778121948185,34.09672164916992],[-5.543001174926701,34.13763046264654],[-5.482686042785644,34.15216445922863],[-5.502495765686035,34.174835205078125],[-5.450027942657471,34.22047424316411],[-5.446015834808293,34.25870132446289],[-5.404630184173526,34.26801300048834]]]},"properties":{"ID_0":152,"ISO":"MA-MEK","NAME_0":"Morocco","ID_1":9,"NAME_1":"Meknès - Tafilalet","ID_2":28,"NAME_2":"Meknès","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.037559032440186,34.92540740966797],[-2.056055068969727,34.88576507568365],[-2.101959943771305,34.86432266235357],[-2.11042308807373,34.8044166564942],[-2.166445016860961,34.79830932617198],[-2.229605913162231,34.76521301269537],[-2.245264053344727,34.72670745849615],[-2.252767086029053,34.65032577514654],[-2.233695983886662,34.59017181396496],[-2.296478986740112,34.56972122192377],[-2.324109077453613,34.51703643798828],[-2.325943946838322,34.47157669067388],[-2.296463966369629,34.40151214599615],[-2.281125068664494,34.36320877075195],[-2.292310953140259,34.33157348632824],[-2.335367918014526,34.31644439697271],[-2.476212024688721,34.303710937500114],[-2.527751922607422,34.256057739257756],[-2.538829088211003,34.20802307128906],[-2.612720966339054,34.19723129272461],[-2.669816017150879,34.17746734619152],[-2.750483989715519,34.160797119140675],[-2.828876972198486,34.171951293945256],[-2.885031938552856,34.11444854736334],[-2.944031000137329,34.126815795898494],[-3.012979984283447,34.12076187133789],[-3.114142894744816,34.08152389526373],[-3.087965965270996,34.14452743530285],[-3.129955053329467,34.174545288085994],[-3.131258964538574,34.26617431640619],[-3.182442903518676,34.300754547119254],[-3.230210065841675,34.34616851806646],[-3.225104093551636,34.394004821777344],[-3.155867099761906,34.42602157592779],[-3.079819917678833,34.48857879638672],[-3.070811033248901,34.568954467773494],[-2.987382888793945,34.60735321044933],[-2.975734949111882,34.65782546997081],[-2.86936092376709,34.69528198242199],[-2.835833072662297,34.73494720458996],[-2.788487911224308,34.76584625244152],[-2.759541988372803,34.821266174316406],[-2.654979944229126,34.87778854370117],[-2.645302057266235,34.8987922668457],[-2.598675966262761,34.923225402832145],[-2.560259103774968,34.925655364990234],[-2.461373090744019,34.964855194091854],[-2.434125900268498,35.03342437744146],[-2.400904893875065,35.053203582763786],[-2.350486040115243,35.10611343383789],[-2.346440076828003,35.124027252197266],[-2.211900949478149,35.08430480957037],[-2.215342044830322,35.047271728515625],[-2.169162034988346,35.0103874206543],[-2.123030900955143,34.994598388671875],[-2.088905096053963,34.9552955627442],[-2.037559032440186,34.92540740966797]]]},"properties":{"ID_0":152,"ISO":"MA-BER","NAME_0":"Morocco","ID_1":10,"NAME_1":"Oriental","ID_2":29,"NAME_2":"Berkane Taourirt","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.262649059295654,31.70969390869169],[-3.296014070510864,31.901018142700252],[-3.296262025833073,31.983554840087834],[-3.284950971603394,32.0506858825683],[-3.243983030319214,32.11872482299833],[-3.25304102897644,32.14400482177746],[-3.462847948074284,32.176727294921875],[-3.557323932647648,32.18468856811529],[-3.63077807426447,32.17366409301769],[-3.668461084365788,32.17680358886747],[-3.686706066131535,32.20063400268555],[-3.668873071670419,32.23318481445312],[-3.753742933273258,32.28661727905285],[-3.847836971282902,32.30351257324213],[-3.869874000549203,32.39014053344755],[-3.913767099380493,32.47341537475586],[-3.986133098602294,32.59080505371094],[-4.019381999969482,32.624637603759766],[-4.054047107696532,32.63758850097662],[-4.049850940704346,32.661087036132926],[-4.003212928771973,32.727226257324276],[-3.944423913955688,32.78154373168957],[-3.841296911239624,32.945037841796925],[-3.805248975753727,32.99186325073248],[-3.726537942886352,33.05794906616222],[-3.675992965698185,33.08325576782232],[-3.603172063827514,33.09265136718773],[-3.446784973144474,33.093521118164176],[-3.351870059966984,33.08082962036144],[-3.279728889465275,33.083530426025554],[-3.2203049659729,33.094429016113565],[-3.107593059539795,33.1331405639649],[-2.999272108077946,33.15866088867193],[-2.977355003356877,33.186141967773494],[-2.969074010848999,33.227005004882926],[-3.00038909912098,33.282207489013956],[-3.062707901000863,33.340175628662166],[-3.089186906814518,33.38042068481451],[-3.022170066833439,33.46345138549816],[-2.907011985778809,33.5660171508789],[-2.85131192207325,33.6493034362793],[-2.801440954208374,33.68781661987305],[-2.726241111755314,33.671566009521484],[-2.558531999588013,33.65013885498047],[-2.444169998168945,33.6458625793457],[-2.340579986572265,33.652996063232536],[-2.220655918121338,33.699710845947315],[-2.163633108139038,33.69689559936535],[-2.01416802406311,33.644180297851506],[-1.924013018608093,33.62768936157221],[-1.841230034828129,33.648021697998104],[-1.814355015754586,33.66809844970709],[-1.736966967582646,33.70023727416998],[-1.686944007873535,33.676399230957145],[-1.652812957763615,33.68241119384771],[-1.630285024642944,33.631076812744254],[-1.598497033119202,33.61508941650396],[-1.588240981101876,33.530292510986385],[-1.620653033256531,33.491786956787166],[-1.623322963714599,33.45374298095709],[-1.663349986076355,33.379947662353516],[-1.660881042480469,33.303287506103516],[-1.670712947845345,33.28460693359386],[-1.626561045646667,33.22095108032232],[-1.609084963798523,33.213787078857365],[-1.575006008148193,33.148529052734375],[-1.513579010963383,33.09358596801769],[-1.474423050880375,33.07616424560558],[-1.460718035697937,33.04184722900385],[-1.484884977340641,32.97498321533209],[-1.542737007141113,32.95738983154296],[-1.381219029426575,32.73932266235357],[-1.270081996917724,32.695549011230526],[-1.013867020606995,32.526412963867244],[-1.00077497959137,32.50561523437506],[-1.067118048667851,32.44980621337884],[-1.121376991271916,32.414344787597656],[-1.198835015296879,32.40357208251959],[-1.221392035484314,32.34707641601568],[-1.249547958373967,32.32696914672857],[-1.23566997051239,32.29230117797862],[-1.247519016265869,32.240737915039176],[-1.242316961288395,32.20538330078131],[-1.288004040718079,32.158859252929744],[-1.216161012649536,32.17541885375988],[-1.182127952575684,32.16321182250988],[-1.155833959579354,32.110500335693416],[-1.205126047134399,32.08477401733427],[-1.337170004844666,32.082771301269815],[-1.485520005226135,32.095607757568416],[-1.50780797004694,32.10334014892583],[-1.575675964355412,32.09165573120128],[-1.684538006782532,32.11525726318354],[-1.71629095077509,32.11468505859369],[-1.897133946418648,32.161842346191406],[-1.967527985572758,32.156913757324276],[-2.013864040374756,32.181777954101676],[-2.131441116332951,32.1460838317871],[-2.17917895317072,32.14184188842785],[-2.276547908782902,32.1682014465332],[-2.302216053008919,32.15593719482422],[-2.462686061859131,32.15937423706066],[-2.545620918273926,32.1448249816895],[-2.598963975906372,32.11250686645507],[-2.656444072723331,32.11743545532238],[-2.727484941482544,32.11044311523449],[-2.818746089935189,32.11485671997076],[-2.928375959396362,32.0976676940918],[-2.939263105392456,32.03040313720703],[-2.892782926559448,31.964052200317326],[-2.887684106826725,31.932540893554854],[-2.852463960647583,31.882581710815654],[-2.850110054016,31.831014633178654],[-2.831609010696411,31.798009872436467],[-2.999542951583862,31.75824737548828],[-3.262649059295654,31.70969390869169]]]},"properties":{"ID_0":152,"ISO":"MA-FIG","NAME_0":"Morocco","ID_1":10,"NAME_1":"Oriental","ID_2":30,"NAME_2":"Figuig","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.736966967582646,33.70023727416998],[-1.814355015754586,33.66809844970709],[-1.841230034828129,33.648021697998104],[-1.924013018608093,33.62768936157221],[-2.01416802406311,33.644180297851506],[-2.163633108139038,33.69689559936535],[-2.220655918121338,33.699710845947315],[-2.340579986572265,33.652996063232536],[-2.444169998168945,33.6458625793457],[-2.558531999588013,33.65013885498047],[-2.726241111755314,33.671566009521484],[-2.801440954208374,33.68781661987305],[-2.85131192207325,33.6493034362793],[-2.907011985778809,33.5660171508789],[-3.022170066833439,33.46345138549816],[-3.089186906814518,33.38042068481451],[-3.136051893234196,33.42548370361351],[-3.238198041915837,33.48464584350603],[-3.257327079772949,33.53813934326166],[-3.222831010818481,33.59514617919933],[-3.16720008850092,33.64425277709972],[-3.138603925704899,33.68192672729498],[-3.118671894073486,33.74662780761719],[-3.12640190124506,33.8100814819337],[-3.161573886871338,33.864364624023494],[-3.21763801574707,33.92543029785162],[-3.264801979064941,33.96409988403331],[-3.249957084655762,34.016689300537166],[-3.137922048568726,34.05269241333008],[-3.114142894744816,34.08152389526373],[-3.012979984283447,34.12076187133789],[-2.944031000137329,34.126815795898494],[-2.885031938552856,34.11444854736334],[-2.828876972198486,34.171951293945256],[-2.750483989715519,34.160797119140675],[-2.669816017150879,34.17746734619152],[-2.612720966339054,34.19723129272461],[-2.538829088211003,34.20802307128906],[-2.527751922607422,34.256057739257756],[-2.476212024688721,34.303710937500114],[-2.335367918014526,34.31644439697271],[-2.292310953140259,34.33157348632824],[-2.281125068664494,34.36320877075195],[-2.296463966369629,34.40151214599615],[-2.184748888015747,34.420513153076286],[-2.119152069091797,34.45104598999035],[-2.077999114990234,34.4522056579591],[-2.042618036270142,34.47873687744146],[-2.030847072601318,34.5181884765625],[-1.969066977500802,34.515468597412166],[-1.882276058197021,34.543666839599666],[-1.801911950111389,34.588176727295036],[-1.746142983436584,34.51480865478521],[-1.690680980682316,34.48822021484374],[-1.781190991401559,34.39144897460949],[-1.704156994819641,34.309288024902344],[-1.71071803569788,34.23526000976574],[-1.647634029388314,34.106685638427734],[-1.698958992958069,33.87034225463867],[-1.670259952545052,33.77276992797857],[-1.72853696346283,33.735298156738395],[-1.736966967582646,33.70023727416998]]]},"properties":{"ID_0":152,"ISO":"MA-JRA","NAME_0":"Morocco","ID_1":10,"NAME_1":"Oriental","ID_2":31,"NAME_2":"Jerada","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Jrada"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.346440076828003,35.124027252197266],[-2.350486040115243,35.10611343383789],[-2.400904893875065,35.053203582763786],[-2.434125900268498,35.03342437744146],[-2.461373090744019,34.964855194091854],[-2.560259103774968,34.925655364990234],[-2.598675966262761,34.923225402832145],[-2.645302057266235,34.8987922668457],[-2.654979944229126,34.87778854370117],[-2.759541988372803,34.821266174316406],[-2.788487911224308,34.76584625244152],[-2.835833072662297,34.73494720458996],[-2.86936092376709,34.69528198242199],[-2.975734949111882,34.65782546997081],[-3.014470100402832,34.66765213012701],[-3.07751989364624,34.706741333007926],[-3.10984110832203,34.70580291748058],[-3.166537046432381,34.75470352172863],[-3.293787956237736,34.75638198852545],[-3.321104049682617,34.69573593139654],[-3.386950016021672,34.66469573974615],[-3.416953086853027,34.63576507568371],[-3.441431999206486,34.64573287963873],[-3.474025964736882,34.61521911621088],[-3.497486114501953,34.55048370361334],[-3.565833091735839,34.56569290161144],[-3.592377901077213,34.611587524414006],[-3.621160030364933,34.634925842285156],[-3.632569074630737,34.66827774047863],[-3.574270963668823,34.69995880126953],[-3.60863804817194,34.72355270385748],[-3.584851980209294,34.757175445556754],[-3.592948913574219,34.831058502197266],[-3.636090993881168,34.82651519775402],[-3.676733016967773,34.847923278808594],[-3.72989797592163,34.842544555664176],[-3.770543098449707,34.864685058593864],[-3.787239074706974,34.890285491943416],[-3.799096107482853,34.90593338012707],[-3.792608022689819,34.99948501586914],[-3.810980081558171,35.11084747314459],[-3.797574996948185,35.17461395263683],[-3.805767059326058,35.202915191650504],[-3.765417098999023,35.23125076293945],[-3.750693082809448,35.27458190917963],[-3.70986008644104,35.28819274902344],[-3.590692996978759,35.22680664062506],[-3.490694046020451,35.19902801513683],[-3.333194017410278,35.18624877929698],[-3.30486011505127,35.204860687255966],[-3.169859886169434,35.24041748046886],[-3.134305953979435,35.28041839599614],[-3.074861049652099,35.287639617920036],[-3.009860038757324,35.383750915527344],[-2.992639064788818,35.43597030639654],[-2.953749895095768,35.43486022949219],[-2.970972061157226,35.361526489257926],[-2.955971956253052,35.346805572509766],[-2.962582111358643,35.29995727539056],[-2.915138959884644,35.24569320678705],[-2.92402791976923,35.1829185485841],[-2.88180494308466,35.13208389282232],[-2.825973033905029,35.10680389404297],[-2.754304885864258,35.098751068115284],[-2.739860057830811,35.12097167968756],[-2.652084112167358,35.091251373291016],[-2.565970897674503,35.08124923706066],[-2.481527090072631,35.1043052673341],[-2.425694942474365,35.1476402282716],[-2.346440076828003,35.124027252197266]]]},"properties":{"ID_0":152,"ISO":"MA-NAD","NAME_0":"Morocco","ID_1":10,"NAME_1":"Oriental","ID_2":32,"NAME_2":"Nador","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.801911950111389,34.588176727295036],[-1.882276058197021,34.543666839599666],[-1.969066977500802,34.515468597412166],[-2.030847072601318,34.5181884765625],[-2.042618036270142,34.47873687744146],[-2.077999114990234,34.4522056579591],[-2.119152069091797,34.45104598999035],[-2.184748888015747,34.420513153076286],[-2.296463966369629,34.40151214599615],[-2.325943946838322,34.47157669067388],[-2.324109077453613,34.51703643798828],[-2.296478986740112,34.56972122192377],[-2.233695983886662,34.59017181396496],[-2.252767086029053,34.65032577514654],[-2.245264053344727,34.72670745849615],[-2.229605913162231,34.76521301269537],[-2.166445016860961,34.79830932617198],[-2.11042308807373,34.8044166564942],[-2.101959943771305,34.86432266235357],[-2.056055068969727,34.88576507568365],[-2.037559032440186,34.92540740966797],[-1.971912980079651,34.934268951416016],[-1.971987009048462,34.88825988769537],[-1.89183497428894,34.84219360351557],[-1.886455059051457,34.807991027832145],[-1.759860038757324,34.75521850585932],[-1.773478984832763,34.70004272460948],[-1.837352991104126,34.61891174316412],[-1.801911950111389,34.588176727295036]]]},"properties":{"ID_0":152,"ISO":"MA-OUJ","NAME_0":"Morocco","ID_1":10,"NAME_1":"Oriental","ID_2":33,"NAME_2":"Oujda Angad","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.863156795501652,34.095649719238224],[-5.859512805938607,34.045478820800895],[-5.781938076019287,33.98467254638672],[-5.772922992706299,33.94713973999035],[-5.826988220214844,33.90450286865246],[-5.79789495468134,33.87730789184582],[-5.784993171691894,33.814983367919865],[-5.74710988998413,33.785747528076286],[-5.744725227355957,33.747852325439396],[-5.759259223937931,33.62346649169927],[-5.77825212478632,33.562553405761655],[-5.788924217224121,33.45405578613281],[-5.786903858184758,33.40161895751953],[-5.769970893859806,33.3438148498538],[-5.79038476943964,33.28563308715826],[-5.813509941100961,33.278602600097656],[-5.938229084014893,33.309207916259766],[-5.976194858550912,33.29910278320324],[-6.036165237426701,33.252201080322486],[-6.106420040130558,33.27112579345703],[-6.140869140624999,33.37054443359375],[-6.17646598815918,33.371768951416016],[-6.201805114746093,33.39802551269537],[-6.230570793151855,33.381355285644474],[-6.261573791503905,33.39713668823242],[-6.349490165710449,33.38499832153326],[-6.377604007720947,33.33493041992193],[-6.38712120056141,33.28063583374029],[-6.361415863037053,33.23888778686529],[-6.48191213607788,33.190284729003906],[-6.522500038146916,33.142078399658146],[-6.565062046050969,33.19209671020508],[-6.604753971099797,33.21557998657249],[-6.705062866210938,33.203643798828125],[-6.753058910369816,33.22208786010748],[-6.806573867797851,33.21526336669922],[-6.844503879547062,33.22910308837902],[-6.83319616317749,33.262519836425724],[-6.84026384353632,33.33107376098644],[-6.809628009796086,33.384441375732706],[-6.855122089385929,33.45077514648432],[-6.851530075073184,33.485015869140675],[-6.793757915496825,33.553867340087834],[-6.784585952758732,33.59080505371094],[-6.790966033935546,33.61506271362315],[-6.770844936370793,33.702598571777344],[-6.70879316329956,33.70075225830084],[-6.715734958648625,33.76839828491222],[-6.699390888214054,33.79987716674816],[-6.722255229949893,33.87874984741211],[-6.645216941833496,33.857730865478516],[-6.589328765869084,33.83191299438488],[-6.55799388885498,33.7842369079591],[-6.472593784332275,33.82123565673828],[-6.445466041564941,33.86493682861334],[-6.503462791442814,33.897735595703125],[-6.554422855377196,34.00368499755871],[-6.576202869415283,34.026252746582024],[-6.541976928710938,34.06044387817394],[-6.538002967834473,34.09947967529297],[-6.56082010269165,34.13092041015636],[-6.468151092529297,34.16542816162121],[-6.368303775787354,34.14478302001959],[-6.217936992645264,34.1579475402832],[-6.172601222991887,34.15335083007818],[-6.010189056396483,34.109909057617294],[-5.863156795501652,34.095649719238224]]]},"properties":{"ID_0":152,"ISO":"MA-KHE","NAME_0":"Morocco","ID_1":11,"NAME_1":"Rabat - Salé - Zemmour - Zaer","ID_2":34,"NAME_2":"Khémisset","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Khemisset"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.766786098480225,33.948814392089844],[-6.7964768409729,33.9052352905274],[-6.836761951446533,33.92112350463873],[-6.904583930969238,33.97572708129894],[-6.830517768859863,34.04708480834972],[-6.752486228942814,34.003494262695426],[-6.74462890625,33.96812820434582],[-6.766786098480225,33.948814392089844]]]},"properties":{"ID_0":152,"ISO":"MA-RAB","NAME_0":"Morocco","ID_1":11,"NAME_1":"Rabat - Salé - Zemmour - Zaer","ID_2":35,"NAME_2":"Rabat","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.56082010269165,34.13092041015636],[-6.538002967834473,34.09947967529297],[-6.541976928710938,34.06044387817394],[-6.576202869415283,34.026252746582024],[-6.554422855377196,34.00368499755871],[-6.503462791442814,33.897735595703125],[-6.445466041564941,33.86493682861334],[-6.472593784332275,33.82123565673828],[-6.55799388885498,33.7842369079591],[-6.589328765869084,33.83191299438488],[-6.645216941833496,33.857730865478516],[-6.722255229949893,33.87874984741211],[-6.766786098480225,33.948814392089844],[-6.74462890625,33.96812820434582],[-6.752486228942814,34.003494262695426],[-6.830517768859863,34.04708480834972],[-6.783195018768254,34.0934715270996],[-6.711805820465088,34.18736267089855],[-6.698126792907657,34.1661491394043],[-6.650022983551025,34.169715881347656],[-6.63078594207758,34.145656585693416],[-6.56082010269165,34.13092041015636]]]},"properties":{"ID_0":152,"ISO":"MA-SAL","NAME_0":"Morocco","ID_1":11,"NAME_1":"Rabat - Salé - Zemmour - Zaer","ID_2":36,"NAME_2":"Salé","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":"Sale","VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.766786098480225,33.948814392089844],[-6.722255229949893,33.87874984741211],[-6.699390888214054,33.79987716674816],[-6.715734958648625,33.76839828491222],[-6.70879316329956,33.70075225830084],[-6.770844936370793,33.702598571777344],[-6.790966033935546,33.61506271362315],[-6.784585952758732,33.59080505371094],[-6.88804388046259,33.5791397094726],[-6.946936130523624,33.62979125976568],[-7.005486965179442,33.65933227539068],[-7.036465167999268,33.70339584350597],[-7.03718185424799,33.74709320068365],[-7.068931102752629,33.806552886963],[-7.113366127014159,33.809440612793026],[-7.126805782318115,33.82962036132812],[-7.043749809265023,33.87263870239258],[-6.904583930969238,33.97572708129894],[-6.836761951446533,33.92112350463873],[-6.7964768409729,33.9052352905274],[-6.766786098480225,33.948814392089844]]]},"properties":{"ID_0":152,"ISO":"MA-SKH","NAME_0":"Morocco","ID_1":11,"NAME_1":"Rabat - Salé - Zemmour - Zaer","ID_2":37,"NAME_2":"Skhirate-Témara","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":"Skhirate-Temara"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-9.820416450500431,30.950773239135682],[-9.745277404785156,30.88534927368164],[-9.722607612609863,30.83457565307634],[-9.648813247680664,30.833749771118107],[-9.598052024841252,30.81523704528814],[-9.569354057311955,30.82655715942377],[-9.541699409484863,30.863491058349666],[-9.514874458312988,30.831716537475703],[-9.45729923248291,30.813478469848917],[-9.412115097045898,30.827648162841907],[-9.346405982971191,30.83381843566894],[-9.284329414367619,30.809429168701172],[-9.238055229186953,30.71050453186046],[-9.327038764953613,30.658723831176754],[-9.332297325134277,30.58299827575695],[-9.295015335083008,30.54982566833507],[-9.29911994934082,30.434364318847653],[-9.330509185791016,30.42307853698753],[-9.37183570861805,30.37526321411144],[-9.422333717346135,30.375925064086974],[-9.486084938049316,30.34542274475109],[-9.602060317993164,30.362083435058594],[-9.605138778686523,30.416805267334098],[-9.65930461883545,30.443750381469723],[-9.703472137451115,30.54236030578613],[-9.74013900756836,30.550695419311584],[-9.783750534057617,30.609580993652457],[-9.8193044662475,30.624860763549805],[-9.88902759552002,30.62986183166498],[-9.873748779296875,30.695693969726616],[-9.84930515289301,30.722360610961854],[-9.805693626403809,30.814582824707145],[-9.827083587646484,30.847084045410156],[-9.807915687560978,30.89263916015619],[-9.820416450500431,30.950773239135682]]]},"properties":{"ID_0":152,"ISO":"MA-AGD","NAME_0":"Morocco","ID_1":12,"NAME_1":"Souss - Massa - Draâ","ID_2":38,"NAME_2":"Agadir-Ida ou Tanane","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":"Agadir Ida Ou Tanane"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-9.310271263122559,30.30798149108898],[-9.268197059631346,30.270025253296012],[-9.247585296630803,30.279737472534293],[-9.203199386596623,30.26258277893072],[-9.131893157958984,30.266704559326286],[-9.1017427444458,30.23940467834484],[-9.102999687194767,30.209598541259993],[-9.042146682739201,30.197170257568356],[-9.00195598602295,30.173139572143498],[-8.978597640991211,30.126976013183878],[-8.939740180969238,30.12859916687017],[-8.901540756225584,30.08434677124052],[-8.957683563232365,30.051006317138782],[-8.960893630981388,29.990526199340987],[-8.94466495513916,29.95580863952642],[-8.911517143249453,29.93304824829107],[-8.928222656249943,29.889528274536186],[-8.970137596130314,29.88074111938477],[-8.9890661239624,29.856521606445426],[-9.00697708129877,29.832366943359375],[-9.075750350952148,29.793704986572376],[-9.085545539855957,29.742820739746147],[-9.106221199035645,29.731479644775444],[-9.20433235168457,29.782236099243104],[-9.237571716308537,29.828041076660213],[-9.309549331664982,29.828754425048885],[-9.36108303070057,29.87763786315946],[-9.504897117614632,29.920856475830135],[-9.514727592468262,29.946273803710934],[-9.556603431701603,29.95177268981956],[-9.607631683349496,29.928346633911303],[-9.67850112915039,29.92662239074701],[-9.752083778381348,29.94131088256847],[-9.703193664550781,30.03041648864774],[-9.671527862548714,30.0756950378418],[-9.639305114746094,30.183750152588004],[-9.62208461761469,30.289432525634876],[-9.555463790893553,30.296840667724723],[-9.533212661743162,30.28181266784679],[-9.438393592834473,30.278890609741268],[-9.416174888610783,30.319232940673828],[-9.373356819152832,30.299755096435717],[-9.334341049194279,30.32143974304205],[-9.310271263122559,30.30798149108898]]]},"properties":{"ID_0":152,"ISO":"MA-CHT","NAME_0":"Morocco","ID_1":12,"NAME_1":"Souss - Massa - Draâ","ID_2":39,"NAME_2":"Chtouka-Aït Baha","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Chtouka Ait Baha"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-9.29911994934082,30.434364318847653],[-9.288790702819767,30.37155342102062],[-9.258672714233398,30.35020065307623],[-9.310271263122559,30.30798149108898],[-9.334341049194279,30.32143974304205],[-9.373356819152832,30.299755096435717],[-9.416174888610783,30.319232940673828],[-9.438393592834473,30.278890609741268],[-9.533212661743162,30.28181266784679],[-9.555463790893553,30.296840667724723],[-9.62208461761469,30.289432525634876],[-9.602060317993164,30.362083435058594],[-9.486084938049316,30.34542274475109],[-9.422333717346135,30.375925064086974],[-9.37183570861805,30.37526321411144],[-9.330509185791016,30.42307853698753],[-9.29911994934082,30.434364318847653]]]},"properties":{"ID_0":152,"ISO":"MA-INE","NAME_0":"Morocco","ID_1":12,"NAME_1":"Souss - Massa - Draâ","ID_2":40,"NAME_2":"Inezgane-Aït Melloul","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":"Inezgane Ait Melloul"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.326965808868351,31.07696914672863],[-5.385855197906437,31.052259445190426],[-5.470989227294922,31.03162193298351],[-5.511542797088623,31.032918930054],[-5.654246807098332,31.054462432861442],[-5.672639846801758,30.96470642089855],[-5.698307037353459,30.875179290771595],[-5.698222160339355,30.837648391723686],[-5.744296073913574,30.73080062866205],[-5.764132976531982,30.71148490905767],[-5.681838035583496,30.63656616210943],[-5.665156841278076,30.60517311096197],[-5.502211093902531,30.724140167236495],[-5.428620815277099,30.771556854248104],[-5.339065074920597,30.811149597168082],[-5.250541210174504,30.672193527221733],[-5.200811862945556,30.613315582275334],[-5.200072765350342,30.449016571044975],[-5.21119499206543,30.39750862121593],[-5.208254814147949,30.309381484985465],[-5.214879035949707,30.195796966552678],[-5.192254066467285,30.13143348693859],[-5.152252197265568,30.093555450439393],[-5.11764097213745,30.00613021850592],[-5.137631893157959,30.00069236755382],[-5.239675998687744,29.933425903320423],[-5.284952163696232,29.897102355957088],[-5.322519779205265,29.846277236938587],[-5.319530010223389,29.79729270935064],[-5.333567142486571,29.76789665222168],[-5.540954113006535,29.511648178100696],[-5.552464962005615,29.482500076294006],[-5.649680137634276,29.50401496887207],[-5.687637805938664,29.5390129089356],[-5.7134051322937,29.519304275512756],[-5.749600887298584,29.529714584350643],[-5.722105979919433,29.585672378540096],[-5.798730850219727,29.61416053771984],[-5.862383842468262,29.60739517211914],[-5.878647804260254,29.59535789489757],[-5.956167221069336,29.589498519897404],[-6.068700790405273,29.56159973144537],[-6.164184093475285,29.581771850585938],[-6.24631404876709,29.564880371094038],[-6.372685909271183,29.567117691040036],[-6.397622108459473,29.55932807922363],[-6.40402507781971,29.651399612426925],[-6.39039421081543,29.740177154541016],[-6.3955078125,29.82251358032238],[-6.374503135681152,29.908067703247184],[-6.379587173461799,30.055706024169975],[-6.420952796935921,30.140790939331282],[-6.48215389251709,30.219440460205018],[-6.507914066314696,30.265409469604606],[-6.573439121246338,30.34954452514648],[-6.616382122039794,30.389539718627987],[-6.66536092758173,30.412506103515913],[-6.714027881622314,30.404214859008732],[-6.79311990737915,30.321386337280273],[-6.872384071350098,30.288610458374247],[-6.943925857543944,30.29446601867681],[-7.00200080871582,30.32240676879894],[-7.073056221008243,30.327297210693416],[-7.118681907653752,30.284370422363395],[-7.163441181182804,30.194936752319332],[-7.180358886718749,30.120754241943413],[-7.203913211822509,30.10593605041504],[-7.385369777679442,30.113973617553825],[-7.436523914337157,30.14552688598639],[-7.445960044860839,30.199842453002876],[-7.470451831817569,30.232427597046016],[-7.548418045043946,30.276218414306697],[-7.620469093322696,30.32705116271978],[-7.633797168731632,30.36243438720703],[-7.633203983306771,30.426889419555774],[-7.609594821929931,30.496498107910327],[-7.563998222351074,30.57769775390636],[-7.563382148742676,30.668327331543082],[-7.592823028564453,30.778112411499137],[-7.591723918914738,30.82593345642095],[-7.647583961486817,30.9102725982666],[-7.688969135284424,30.939039230346737],[-7.756295204162598,31.043504714966105],[-7.755297183990478,31.094976425171065],[-7.767347812652588,31.137861251831165],[-7.692937850952148,31.172466278076225],[-7.63424015045166,31.17318344116211],[-7.569087982177733,31.196422576904297],[-7.487743854522705,31.269746780395625],[-7.438702106475716,31.290105819702145],[-7.346602916717529,31.29449844360374],[-7.280344009399414,31.30705642700195],[-7.227939128875732,31.369127273559684],[-7.142748832702637,31.399085998535156],[-7.073276042938232,31.398241043090877],[-6.910385131835938,31.356557846069396],[-6.832812786102295,31.37396049499523],[-6.776954174041748,31.361534118652347],[-6.741561889648437,31.426166534424112],[-6.757458209991397,31.46333122253418],[-6.724829196929818,31.510976791381832],[-6.646113872528076,31.529188156127983],[-6.595612049102783,31.51808166503906],[-6.534130096435433,31.535810470581055],[-6.383297920227051,31.616003036499137],[-6.222959041595402,31.669839859008846],[-6.159967899322396,31.719896316528434],[-6.118620872497558,31.713245391845817],[-6.062050819396915,31.71977233886724],[-6.048281192779484,31.784236907958924],[-5.953586101531926,31.82018470764171],[-5.916359901428165,31.861995697021765],[-5.862355232238712,31.872987747192436],[-5.803466796874999,31.91912269592291],[-5.809366226196232,31.985050201416126],[-5.769890785217285,31.99336814880371],[-5.703988075256348,32.033401489257926],[-5.657849788665771,32.02286148071289],[-5.530764102935791,31.93960380554199],[-5.573933124542236,31.875173568725643],[-5.682157039642334,31.774333953857422],[-5.785696029663086,31.685634613037276],[-5.784732818603402,31.643527984619137],[-5.712932109832764,31.634647369384876],[-5.641308784484806,31.649051666259766],[-5.501863002777099,31.61646461486822],[-5.459924221038762,31.56432151794445],[-5.38723611831665,31.52642822265636],[-5.309488773345947,31.505802154541016],[-5.254681110382023,31.46349716186529],[-5.235400199890137,31.4083976745606],[-5.240221023559513,31.349046707153377],[-5.264503955841007,31.273035049438477],[-5.306433200836182,31.188978195190543],[-5.326965808868351,31.07696914672863]],[[-6.443682193756047,30.745311737060714],[-6.56672286987299,30.733373641967773],[-6.542529106140137,30.690376281738338],[-6.503738880157471,30.658184051513672],[-6.416934967041016,30.617656707763786],[-6.331625938415471,30.59775543212902],[-6.308173179626407,30.581026077270447],[-6.287099838256836,30.677507400512805],[-6.369586944580021,30.718082427978512],[-6.405412197112979,30.71724128723144],[-6.443682193756047,30.745311737060714]],[[-5.893854141235295,30.298406600952262],[-5.835535049438476,30.313356399536186],[-5.759720802307129,30.34821510314964],[-5.799090862274113,30.385194778442383],[-5.847054958343506,30.393285751342773],[-5.904599189758244,30.347055435180664],[-5.893854141235295,30.298406600952262]]]},"properties":{"ID_0":152,"ISO":"MA-OUA","NAME_0":"Morocco","ID_1":12,"NAME_1":"Souss - Massa - Draâ","ID_2":41,"NAME_2":"Ouarzazate","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.548418045043946,30.276218414306697],[-7.63184976577753,30.224752426147518],[-7.664556980133,30.15548133850109],[-7.634942054748535,30.029819488525508],[-7.671360015869084,29.987670898437496],[-7.750333786010742,29.99276542663574],[-7.820755958557015,30.00849533081049],[-7.859193801879826,29.99489021301281],[-7.935544967651366,29.9266033172608],[-8.02619838714594,29.897928237915092],[-8.138163566589299,29.938829421997013],[-8.232110977172852,30.000547409057617],[-8.281719207763615,30.001647949218803],[-8.313652038574162,29.977979660034297],[-8.345460891723576,29.9091682434082],[-8.386925697326603,29.873035430908317],[-8.41834926605219,29.871959686279297],[-8.608776092529297,29.94828414916992],[-8.687026977539006,29.94189834594738],[-8.72253704071045,29.91417312622076],[-8.720670700073242,29.865076065063477],[-8.692944526672363,29.852798461914062],[-8.661623001098576,29.86578178405767],[-8.628582954406681,29.85719299316406],[-8.63377857208252,29.825939178466907],[-8.671401977539004,29.791381835937496],[-8.708928108215332,29.7344264984132],[-8.793951034545897,29.73021125793457],[-8.849348068237305,29.761253356933594],[-8.963520050048714,29.845142364502006],[-8.9890661239624,29.856521606445426],[-8.970137596130314,29.88074111938477],[-8.928222656249943,29.889528274536186],[-8.911517143249453,29.93304824829107],[-8.94466495513916,29.95580863952642],[-8.960893630981388,29.990526199340987],[-8.957683563232365,30.051006317138782],[-8.901540756225584,30.08434677124052],[-8.939740180969238,30.12859916687017],[-8.978597640991211,30.126976013183878],[-9.00195598602295,30.173139572143498],[-9.042146682739201,30.197170257568356],[-9.102999687194767,30.209598541259993],[-9.1017427444458,30.23940467834484],[-9.131893157958984,30.266704559326286],[-9.203199386596623,30.26258277893072],[-9.247585296630803,30.279737472534293],[-9.268197059631346,30.270025253296012],[-9.310271263122559,30.30798149108898],[-9.258672714233398,30.35020065307623],[-9.288790702819767,30.37155342102062],[-9.29911994934082,30.434364318847653],[-9.295015335083008,30.54982566833507],[-9.332297325134277,30.58299827575695],[-9.327038764953613,30.658723831176754],[-9.238055229186953,30.71050453186046],[-9.284329414367619,30.809429168701172],[-9.237119674682617,30.82715034484886],[-9.187334060668945,30.828126907348686],[-9.151682853698729,30.844137191772575],[-9.043822288513184,30.836034774780327],[-8.995047569274846,30.88064575195312],[-8.921295166015625,30.905736923217884],[-8.858328819274902,30.938980102539176],[-8.819019317626896,30.978885650634822],[-8.780837059020937,30.97695350646984],[-8.770391464233398,30.954975128173825],[-8.71154499053955,30.929307937622013],[-8.685508728027287,30.84815406799322],[-8.650097846984863,30.851684570312496],[-8.615438461303711,30.880025863647457],[-8.533945083618164,30.887430191040096],[-8.423603057861328,30.882490158080994],[-8.390481948852482,30.912170410156477],[-8.321075439453125,30.906236648559513],[-8.181926727294922,30.92973327636724],[-8.098192214965763,30.963848114013782],[-8.045815467834416,30.90947151184076],[-7.988927841186523,30.93970680236822],[-7.90522289276123,31.003181457519585],[-7.902658939361572,31.0491561889649],[-7.831706047058105,31.082180023193363],[-7.767347812652588,31.137861251831165],[-7.755297183990478,31.094976425171065],[-7.756295204162598,31.043504714966105],[-7.688969135284424,30.939039230346737],[-7.647583961486817,30.9102725982666],[-7.591723918914738,30.82593345642095],[-7.592823028564453,30.778112411499137],[-7.563382148742676,30.668327331543082],[-7.563998222351074,30.57769775390636],[-7.609594821929931,30.496498107910327],[-7.633203983306771,30.426889419555774],[-7.633797168731632,30.36243438720703],[-7.620469093322696,30.32705116271978],[-7.548418045043946,30.276218414306697]]]},"properties":{"ID_0":152,"ISO":"MA-TAR","NAME_0":"Morocco","ID_1":12,"NAME_1":"Souss - Massa - Draâ","ID_2":42,"NAME_2":"Taroudannt","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.9890661239624,29.856521606445426],[-8.963520050048714,29.845142364502006],[-8.849348068237305,29.761253356933594],[-8.793951034545897,29.73021125793457],[-8.708928108215332,29.7344264984132],[-8.714894294738713,29.596824645996094],[-8.703140258789006,29.567167282104606],[-8.65315246582031,29.515022277832028],[-8.665872573852539,29.494678497314453],[-8.784215927124023,29.460546493530387],[-8.940512657165414,29.422273635864375],[-9.045690536499022,29.43172264099132],[-9.083358764648436,29.41065406799328],[-9.117165565490666,29.3499565124514],[-9.147006034851074,29.25550270080572],[-9.155355453491211,29.20866775512701],[-9.207351684570256,29.29512214660644],[-9.244398117065373,29.312847137451282],[-9.315660476684513,29.32208824157709],[-9.356708526611271,29.312591552734315],[-9.37695407867426,29.277561187744254],[-9.414073944091797,29.250806808471683],[-9.49121379852295,29.238119125366325],[-9.55381774902338,29.2091007232666],[-9.61707592010498,29.19442176818848],[-9.670607566833496,29.195800781250057],[-9.737902641296385,29.264585494995174],[-9.800349235534668,29.26108360290527],[-9.830765724182129,29.229341506958008],[-9.87174320220947,29.128061294555664],[-9.903273582458494,29.10716247558605],[-9.961692810058594,29.114267349243278],[-10.040201187133789,29.081218719482475],[-10.104153633117676,29.03536033630382],[-10.134001731872502,29.031869888305778],[-10.183685302734375,29.062896728515735],[-10.231299400329531,29.054391860961854],[-10.340394020080566,29.0660400390625],[-10.392825126647892,29.063312530517635],[-10.439800262451115,29.09559249877941],[-10.391527175903319,29.169303894043082],[-10.295140266418398,29.26347160339384],[-10.252082824707031,29.2826385498048],[-10.215138435363713,29.314027786254883],[-10.182084083557129,29.377359390258786],[-10.120973587036131,29.439582824707145],[-10.077083587646484,29.511528015136662],[-10.05041599273676,29.582082748413082],[-10.034029006958006,29.595138549804684],[-9.980694770812988,29.67680358886724],[-9.935415267944336,29.720972061157337],[-9.832362174987736,29.805416107177734],[-9.795416831970215,29.85513687133783],[-9.752083778381348,29.94131088256847],[-9.67850112915039,29.92662239074701],[-9.607631683349496,29.928346633911303],[-9.556603431701603,29.95177268981956],[-9.514727592468262,29.946273803710934],[-9.504897117614632,29.920856475830135],[-9.36108303070057,29.87763786315946],[-9.309549331664982,29.828754425048885],[-9.237571716308537,29.828041076660213],[-9.20433235168457,29.782236099243104],[-9.106221199035645,29.731479644775444],[-9.085545539855957,29.742820739746147],[-9.075750350952148,29.793704986572376],[-9.00697708129877,29.832366943359375],[-8.9890661239624,29.856521606445426]]]},"properties":{"ID_0":152,"ISO":"MA-TIZ","NAME_0":"Morocco","ID_1":12,"NAME_1":"Souss - Massa - Draâ","ID_2":43,"NAME_2":"Tiznit","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.893854141235295,30.298406600952262],[-5.904599189758244,30.347055435180664],[-5.847054958343506,30.393285751342773],[-5.799090862274113,30.385194778442383],[-5.759720802307129,30.34821510314964],[-5.835535049438476,30.313356399536186],[-5.893854141235295,30.298406600952262]]],[[[-6.443682193756047,30.745311737060714],[-6.405412197112979,30.71724128723144],[-6.369586944580021,30.718082427978512],[-6.287099838256836,30.677507400512805],[-6.308173179626407,30.581026077270447],[-6.331625938415471,30.59775543212902],[-6.416934967041016,30.617656707763786],[-6.503738880157471,30.658184051513672],[-6.542529106140137,30.690376281738338],[-6.56672286987299,30.733373641967773],[-6.443682193756047,30.745311737060714]]],[[[-5.339065074920597,30.811149597168082],[-5.428620815277099,30.771556854248104],[-5.502211093902531,30.724140167236495],[-5.665156841278076,30.60517311096197],[-5.681838035583496,30.63656616210943],[-5.764132976531982,30.71148490905767],[-5.744296073913574,30.73080062866205],[-5.698222160339355,30.837648391723686],[-5.698307037353459,30.875179290771595],[-5.672639846801758,30.96470642089855],[-5.654246807098332,31.054462432861442],[-5.511542797088623,31.032918930054],[-5.470989227294922,31.03162193298351],[-5.385855197906437,31.052259445190426],[-5.326965808868351,31.07696914672863],[-5.329002857208251,31.03794479370117],[-5.359077930450439,30.911214828491264],[-5.339065074920597,30.811149597168082]]]]},"properties":{"ID_0":152,"ISO":"MA-ZAG","NAME_0":"Morocco","ID_1":12,"NAME_1":"Souss - Massa - Draâ","ID_2":44,"NAME_2":"Zagora","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.792753219604492,32.131507873535156],[-5.818540096282959,32.112277984619254],[-5.809366226196232,31.985050201416126],[-5.803466796874999,31.91912269592291],[-5.862355232238712,31.872987747192436],[-5.916359901428165,31.861995697021765],[-5.953586101531926,31.82018470764171],[-6.048281192779484,31.784236907958924],[-6.062050819396915,31.71977233886724],[-6.118620872497558,31.713245391845817],[-6.159967899322396,31.719896316528434],[-6.222959041595402,31.669839859008846],[-6.383297920227051,31.616003036499137],[-6.534130096435433,31.535810470581055],[-6.595612049102783,31.51808166503906],[-6.646113872528076,31.529188156127983],[-6.724829196929818,31.510976791381832],[-6.757458209991397,31.46333122253418],[-6.741561889648437,31.426166534424112],[-6.776954174041748,31.361534118652347],[-6.832812786102295,31.37396049499523],[-6.910385131835938,31.356557846069396],[-7.073276042938232,31.398241043090877],[-7.142748832702637,31.399085998535156],[-7.153965950012207,31.42706680297857],[-7.152145862579346,31.485794067382923],[-7.12607479095459,31.540874481201172],[-7.116692066192627,31.595928192138782],[-7.14197015762329,31.61837768554699],[-7.221867084503174,31.612319946289062],[-7.215283870697022,31.647644042968974],[-7.256267070770264,31.668684005737415],[-7.265823841094971,31.69771385192871],[-7.265242099761905,31.748016357421932],[-7.219196796417236,31.78247833251953],[-7.170004844665471,31.78482437133789],[-7.130075931549072,31.766061782836854],[-7.065193176269531,31.778930664062784],[-7.017685890197754,31.772525787353572],[-7.00087118148798,31.78581809997576],[-7.006015777587891,31.837623596191463],[-6.975689888000431,31.849994659423942],[-7.026236057281493,31.902721405029297],[-7.031435012817382,31.947181701660266],[-7.008597850799561,31.968719482421985],[-7.020309925079289,32.00768280029291],[-7.054349899291992,32.02005767822277],[-7.083401203155518,32.061290740966854],[-7.094932079315186,32.14744567871105],[-7.085706233978271,32.191642761230526],[-7.009130954742432,32.179061889648494],[-6.902245998382568,32.200073242187784],[-6.883179187774601,32.2156333923341],[-6.832233905792179,32.21648406982433],[-6.77384614944458,32.20036315917969],[-6.711212158203068,32.244678497314624],[-6.629826068878173,32.26003646850591],[-6.614806175231934,32.244426727295036],[-6.555817127227783,32.239654541015625],[-6.507472038268986,32.25458145141596],[-6.46259593963623,32.247985839843864],[-6.41536188125599,32.30682754516613],[-6.386602878570557,32.31034088134777],[-6.363656997680607,32.281394958496264],[-6.323153018951416,32.315956115722656],[-6.312715053558293,32.28523635864286],[-6.271742820739689,32.270816802978516],[-6.212328910827579,32.3015594482423],[-6.204178810119572,32.26398468017589],[-6.143027782440185,32.26449584960943],[-6.145157814025878,32.34227371215831],[-6.096292018890381,32.35061264038091],[-6.073241233825684,32.37055587768549],[-6.00846004486084,32.39197921752929],[-5.942967891693058,32.32603454589844],[-5.903824806213379,32.241558074951456],[-5.93517017364502,32.20890808105463],[-5.935788154601994,32.17049026489258],[-5.897643089294434,32.15827178955084],[-5.857871055603027,32.179405212402344],[-5.792753219604492,32.131507873535156]]]},"properties":{"ID_0":152,"ISO":"MA-AZI","NAME_0":"Morocco","ID_1":13,"NAME_1":"Tadla - Azilal","ID_2":45,"NAME_2":"Azilal","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.539947986602782,32.26671218872076],[-5.601295948028564,32.270439147949276],[-5.66251611709589,32.26062393188482],[-5.693075180053711,32.244049072265625],[-5.698494911193848,32.21485137939453],[-5.733107089996338,32.182300567626896],[-5.791763782501221,32.16231536865246],[-5.792753219604492,32.131507873535156],[-5.857871055603027,32.179405212402344],[-5.897643089294434,32.15827178955084],[-5.935788154601994,32.17049026489258],[-5.93517017364502,32.20890808105463],[-5.903824806213379,32.241558074951456],[-5.942967891693058,32.32603454589844],[-6.00846004486084,32.39197921752929],[-6.073241233825684,32.37055587768549],[-6.096292018890381,32.35061264038091],[-6.145157814025878,32.34227371215831],[-6.143027782440185,32.26449584960943],[-6.204178810119572,32.26398468017589],[-6.212328910827579,32.3015594482423],[-6.271742820739689,32.270816802978516],[-6.312715053558293,32.28523635864286],[-6.323153018951416,32.315956115722656],[-6.363656997680607,32.281394958496264],[-6.386602878570557,32.31034088134777],[-6.41536188125599,32.30682754516613],[-6.46259593963623,32.247985839843864],[-6.507472038268986,32.25458145141596],[-6.555817127227783,32.239654541015625],[-6.614806175231934,32.244426727295036],[-6.629826068878173,32.26003646850591],[-6.711212158203068,32.244678497314624],[-6.77384614944458,32.20036315917969],[-6.832233905792179,32.21648406982433],[-6.883179187774601,32.2156333923341],[-6.902245998382568,32.200073242187784],[-7.009130954742432,32.179061889648494],[-7.085706233978271,32.191642761230526],[-7.104716777801514,32.261985778808594],[-7.096294879913329,32.349262237549055],[-7.048169136047306,32.38842010498047],[-6.993169784545842,32.50609970092779],[-6.979220867156982,32.634773254394645],[-6.933784008026065,32.60861587524414],[-6.863515853881835,32.62318801879888],[-6.781012058258057,32.66605758666992],[-6.688073158264103,32.653907775878906],[-6.61369800567627,32.6371765136721],[-6.616106986999454,32.66783905029297],[-6.536411762237492,32.691303253173885],[-6.439866065979004,32.66658782958989],[-6.258750915527343,32.6686897277832],[-6.205180168151799,32.688438415527344],[-6.086471080780029,32.70076370239258],[-6.049743175506534,32.71965789794933],[-6.010511875152531,32.76110076904297],[-5.937498092651367,32.76523208618164],[-5.892776012420654,32.74331665039073],[-5.875408172607365,32.71253585815424],[-5.837991237640381,32.7089462280274],[-5.785201072692871,32.65858840942383],[-5.772222995758057,32.60088348388672],[-5.712646007537842,32.62306594848644],[-5.68290615081787,32.618610382080135],[-5.632174015045108,32.58147430419922],[-5.573194980621338,32.57664108276373],[-5.551036834716797,32.52429199218756],[-5.500706195831242,32.450569152831974],[-5.543957233428955,32.37666320800787],[-5.531923770904541,32.358234405517635],[-5.55503511428833,32.31328582763672],[-5.528954982757568,32.2946891784668],[-5.539947986602782,32.26671218872076]]]},"properties":{"ID_0":152,"ISO":"MA-BEM","NAME_0":"Morocco","ID_1":13,"NAME_1":"Tadla - Azilal","ID_2":46,"NAME_2":"Béni Mellal","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Beni Mellal"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.452639102935791,35.161251068115234],[-4.48125696182251,35.13410186767584],[-4.463706970214844,35.03887176513672],[-4.488070964813176,34.98675155639654],[-4.554901123046875,34.950786590576286],[-4.656044006347599,34.936153411865234],[-4.707155227661133,34.89606475830084],[-4.800545215606633,34.84833145141613],[-4.81301212310791,34.824665069580135],[-4.880921840667725,34.80065155029297],[-4.985062122344914,34.78574752807623],[-5.011644840240422,34.792709350585994],[-5.087921142578125,34.77344894409179],[-5.146657943725529,34.72993087768566],[-5.214858055114689,34.74472045898432],[-5.300374984741154,34.71457672119151],[-5.409334182739258,34.73358154296881],[-5.449059963226261,34.74983978271496],[-5.49806022644043,34.809146881103516],[-5.548560142517033,34.84112548828131],[-5.569712162017765,34.826454162597706],[-5.657011985778694,34.826183319091854],[-5.709773063659668,34.87964630126959],[-5.770846843719482,34.91344833374023],[-5.755236148834229,34.93805694580084],[-5.709561824798584,34.94822311401373],[-5.680414199829045,34.98933792114252],[-5.631969928741455,35.017272949218864],[-5.591298103332519,35.02703094482422],[-5.544909000396672,35.001411437988395],[-5.487889766693002,35.03276443481451],[-5.510245800018253,35.07487869262701],[-5.521164894104004,35.143936157226506],[-5.551631927490178,35.21802139282238],[-5.496118068695067,35.25360107421869],[-5.454572200775089,35.26884078979498],[-5.380142211914062,35.218063354492244],[-5.270833969116153,35.26195526123058],[-5.198316097259521,35.35517120361334],[-5.14656209945673,35.387538909912216],[-5.112924098968506,35.431331634521484],[-5.081529140472298,35.43434524536133],[-5.062917232513371,35.407638549804744],[-5.00569486618042,35.38874816894537],[-4.928194999694767,35.31874847412115],[-4.867361068725586,35.30180740356445],[-4.782638072967529,35.237915039062614],[-4.682361125945988,35.20458221435541],[-4.452639102935791,35.161251068115234]]]},"properties":{"ID_0":152,"ISO":"MA-CHE","NAME_0":"Morocco","ID_1":14,"NAME_1":"Tanger - Tétouan","ID_2":47,"NAME_2":"Chefchaouen","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.571210861206055,35.83963012695318],[-5.559031963348388,35.714897155761776],[-5.614879131317138,35.67067337036133],[-5.740942001342773,35.66636276245123],[-5.804969787597656,35.644168853759766],[-5.841030120849609,35.711406707763786],[-5.872367858886662,35.74097061157238],[-5.84216403961176,35.758514404296875],[-5.805466175079346,35.73175430297857],[-5.753553867340088,35.75002288818365],[-5.746461868286132,35.8190269470216],[-5.701251029968205,35.830970764160156],[-5.644307136535645,35.827362060546875],[-5.571210861206055,35.83963012695318]]]},"properties":{"ID_0":152,"ISO":"MA-FAH","NAME_0":"Morocco","ID_1":14,"NAME_1":"Tanger - Tétouan","ID_2":48,"NAME_2":"Fahs Anjra","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":"Fahs-Béni Makada"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.818693161010742,35.475051879882756],[-5.805657863616943,35.44086837768555],[-5.767072200775146,35.40708541870117],[-5.716443061828556,35.38272476196295],[-5.663475036621093,35.384033203125114],[-5.576376914978027,35.417800903320426],[-5.481421947479191,35.371654510498104],[-5.462818145751953,35.33488464355469],[-5.496118068695067,35.25360107421869],[-5.551631927490178,35.21802139282238],[-5.521164894104004,35.143936157226506],[-5.510245800018253,35.07487869262701],[-5.487889766693002,35.03276443481451],[-5.544909000396672,35.001411437988395],[-5.591298103332519,35.02703094482422],[-5.631969928741455,35.017272949218864],[-5.680414199829045,34.98933792114252],[-5.709561824798584,34.94822311401373],[-5.755236148834229,34.93805694580084],[-5.770846843719482,34.91344833374023],[-5.811799049377441,34.91753768920904],[-5.844469070434513,34.9397811889649],[-5.889041900634709,34.94267654418945],[-5.949685096740723,34.96207427978521],[-6.088069915771428,34.98260498046875],[-6.154698848724252,34.979412078857536],[-6.250139236450138,34.98698806762701],[-6.212637901306152,35.09263992309575],[-6.169582843780518,35.194305419921875],[-6.150100231170654,35.204330444335994],[-6.104584693908635,35.323444366455135],[-6.008255004882756,35.326602935791016],[-5.971488952636719,35.31129074096691],[-5.92250919342041,35.3118515014649],[-5.924171924590951,35.38307952880871],[-5.967895984649658,35.412670135498104],[-5.901759147644043,35.42588806152344],[-5.888229846954345,35.450008392333984],[-5.847154140472411,35.44844055175787],[-5.818693161010742,35.475051879882756]]]},"properties":{"ID_0":152,"ISO":"MA-LAR","NAME_0":"Morocco","ID_1":14,"NAME_1":"Tanger - Tétouan","ID_2":49,"NAME_2":"Larache","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.081529140472298,35.43434524536133],[-5.112924098968506,35.431331634521484],[-5.14656209945673,35.387538909912216],[-5.198316097259521,35.35517120361334],[-5.270833969116153,35.26195526123058],[-5.380142211914062,35.218063354492244],[-5.454572200775089,35.26884078979498],[-5.496118068695067,35.25360107421869],[-5.462818145751953,35.33488464355469],[-5.481421947479191,35.371654510498104],[-5.576376914978027,35.417800903320426],[-5.663475036621093,35.384033203125114],[-5.716443061828556,35.38272476196295],[-5.767072200775146,35.40708541870117],[-5.805657863616943,35.44086837768555],[-5.818693161010742,35.475051879882756],[-5.786306858062687,35.516880035400504],[-5.75530815124506,35.51591491699219],[-5.700529098510742,35.53984451293945],[-5.740942001342773,35.66636276245123],[-5.614879131317138,35.67067337036133],[-5.559031963348388,35.714897155761776],[-5.571210861206055,35.83963012695318],[-5.552083015441895,35.84569549560547],[-5.465694904327393,35.9145851135255],[-5.403193950653076,35.92235946655285],[-5.377442836761418,35.88358306884777],[-5.341249942779541,35.87459945678711],[-5.353751182556152,35.82819366455084],[-5.341805934906006,35.74041748046874],[-5.319583892822265,35.68347167968761],[-5.284306049346924,35.662918090820256],[-5.243473052978516,35.55291748046875],[-5.172916889190674,35.53152847290045],[-5.153749942779541,35.50541687011719],[-5.105971813201847,35.47735977172857],[-5.081529140472298,35.43434524536133]]]},"properties":{"ID_0":152,"ISO":"MA-TET","NAME_0":"Morocco","ID_1":14,"NAME_1":"Tanger - Tétouan","ID_2":50,"NAME_2":"Tétouan","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":"Tetouan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.746461868286132,35.8190269470216],[-5.753553867340088,35.75002288818365],[-5.805466175079346,35.73175430297857],[-5.84216403961176,35.758514404296875],[-5.872367858886662,35.74097061157238],[-5.841030120849609,35.711406707763786],[-5.804969787597656,35.644168853759766],[-5.740942001342773,35.66636276245123],[-5.700529098510742,35.53984451293945],[-5.75530815124506,35.51591491699219],[-5.786306858062687,35.516880035400504],[-5.818693161010742,35.475051879882756],[-5.847154140472411,35.44844055175787],[-5.888229846954345,35.450008392333984],[-5.901759147644043,35.42588806152344],[-5.967895984649658,35.412670135498104],[-5.924171924590951,35.38307952880871],[-5.92250919342041,35.3118515014649],[-5.971488952636719,35.31129074096691],[-6.008255004882756,35.326602935791016],[-6.104584693908635,35.323444366455135],[-6.081251144409123,35.396251678466854],[-6.016806125640811,35.50152587890636],[-5.98347091674799,35.62319564819336],[-5.930140018463135,35.78847122192394],[-5.908194065093937,35.801528930664176],[-5.841248989105224,35.798194885253906],[-5.766249179840087,35.78402709960949],[-5.746461868286132,35.8190269470216]]]},"properties":{"ID_0":152,"ISO":"MA-TNG","NAME_0":"Morocco","ID_1":14,"NAME_1":"Tanger - Tétouan","ID_2":51,"NAME_2":"Tanger-Assilah","TYPE_2":"Prefecture","ENGTYPE_2":"Prefecture","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.805767059326058,35.202915191650504],[-3.797574996948185,35.17461395263683],[-3.810980081558171,35.11084747314459],[-3.792608022689819,34.99948501586914],[-3.799096107482853,34.90593338012707],[-3.787239074706974,34.890285491943416],[-3.857954025268498,34.83435440063482],[-3.90119290351862,34.8221092224121],[-3.974711894988957,34.819923400878906],[-4.027320861816406,34.79974746704096],[-4.080427169799805,34.74770736694336],[-4.142860889434814,34.719581604003906],[-4.17950677871704,34.725223541259766],[-4.203701019287053,34.7677955627442],[-4.229627132415771,34.775829315185604],[-4.279253005981445,34.745407104492244],[-4.318829059600773,34.690574645996094],[-4.41811990737915,34.648742675781364],[-4.473509788513183,34.660243988037166],[-4.503122806549015,34.68559646606451],[-4.554411888122558,34.676937103271484],[-4.587329864501953,34.70372390747076],[-4.649448871612549,34.690303802490234],[-4.718131065368652,34.71842956542968],[-4.74811410903925,34.80289840698248],[-4.81301212310791,34.824665069580135],[-4.800545215606633,34.84833145141613],[-4.707155227661133,34.89606475830084],[-4.656044006347599,34.936153411865234],[-4.554901123046875,34.950786590576286],[-4.488070964813176,34.98675155639654],[-4.463706970214844,35.03887176513672],[-4.48125696182251,35.13410186767584],[-4.452639102935791,35.161251068115234],[-4.359028816223145,35.14847183227539],[-4.255694866180306,35.18736267089855],[-4.114027976989689,35.204860687255966],[-4.042916774749756,35.2359733581543],[-3.979028940200748,35.23680496215826],[-3.927083015441838,35.26208496093756],[-3.905138969421387,35.214027404785206],[-3.84930491447443,35.19680404663097],[-3.805767059326058,35.202915191650504]]]},"properties":{"ID_0":152,"ISO":"MA-HOC","NAME_0":"Morocco","ID_1":15,"NAME_1":"Taza - Al Hoceima - Taounate","ID_2":52,"NAME_2":"Al Hoceïma","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Al Hoceima"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.142860889434814,34.719581604003906],[-4.112709999084473,34.67407226562505],[-4.113759994506836,34.631320953369254],[-4.083994865417424,34.61219787597656],[-4.160521030426025,34.590412139892635],[-4.194618225097656,34.600990295410206],[-4.232379913330078,34.58298492431635],[-4.298999786376896,34.59146118164068],[-4.322501182556096,34.53234863281256],[-4.361896991729736,34.51388931274414],[-4.37077617645258,34.479557037353516],[-4.407330036163273,34.473281860351676],[-4.449694156646729,34.43758392333996],[-4.474812984466553,34.400485992431754],[-4.474191188812256,34.36542129516613],[-4.439825057983398,34.337650299072266],[-4.463524818420353,34.306427001953125],[-4.375541210174504,34.28399658203131],[-4.326227188110294,34.24483108520513],[-4.381625175476074,34.21361923217768],[-4.35763692855835,34.18017196655279],[-4.373857975006104,34.15422439575201],[-4.451095104217472,34.16544342041027],[-4.601016044616699,34.11609268188482],[-4.575200080871525,34.058322906494254],[-4.625289916992187,34.068443298339844],[-4.653325080871581,34.08734512329113],[-4.739299774169865,34.10510253906256],[-4.762576103210449,34.141418457031364],[-4.765109062194767,34.18701171874994],[-4.801724910736084,34.20135879516613],[-4.80565881729126,34.22756576538086],[-4.887753009796143,34.21713256835949],[-4.906752109527588,34.256263732910156],[-4.949435234069824,34.30139160156256],[-5.033163070678654,34.30728912353521],[-5.083092212676945,34.29513168334961],[-5.127089977264404,34.322910308837834],[-5.179959774017334,34.32169723510748],[-5.335972785949707,34.27817535400402],[-5.38900184631342,34.28688049316412],[-5.430943965911808,34.32424926757818],[-5.473019123077393,34.33440017700195],[-5.480538845062199,34.394721984863224],[-5.435147762298526,34.404865264892635],[-5.368938922882022,34.43786239624029],[-5.354227066040039,34.46129226684576],[-5.311353206634465,34.47734451293951],[-5.312232017517033,34.50104522705084],[-5.239554882049561,34.5383872985841],[-5.2344012260437,34.55787277221691],[-5.173895835876465,34.56531906127941],[-5.173526763916016,34.605854034423885],[-5.146657943725529,34.72993087768566],[-5.087921142578125,34.77344894409179],[-5.011644840240422,34.792709350585994],[-4.985062122344914,34.78574752807623],[-4.880921840667725,34.80065155029297],[-4.81301212310791,34.824665069580135],[-4.74811410903925,34.80289840698248],[-4.718131065368652,34.71842956542968],[-4.649448871612549,34.690303802490234],[-4.587329864501953,34.70372390747076],[-4.554411888122558,34.676937103271484],[-4.503122806549015,34.68559646606451],[-4.473509788513183,34.660243988037166],[-4.41811990737915,34.648742675781364],[-4.318829059600773,34.690574645996094],[-4.279253005981445,34.745407104492244],[-4.229627132415771,34.775829315185604],[-4.203701019287053,34.7677955627442],[-4.17950677871704,34.725223541259766],[-4.142860889434814,34.719581604003906]]]},"properties":{"ID_0":152,"ISO":"MA-TAO","NAME_0":"Morocco","ID_1":15,"NAME_1":"Taza - Al Hoceima - Taounate","ID_2":53,"NAME_2":"Taounate","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.975734949111882,34.65782546997081],[-2.987382888793945,34.60735321044933],[-3.070811033248901,34.568954467773494],[-3.079819917678833,34.48857879638672],[-3.155867099761906,34.42602157592779],[-3.225104093551636,34.394004821777344],[-3.230210065841675,34.34616851806646],[-3.182442903518676,34.300754547119254],[-3.131258964538574,34.26617431640619],[-3.129955053329467,34.174545288085994],[-3.087965965270996,34.14452743530285],[-3.114142894744816,34.08152389526373],[-3.137922048568726,34.05269241333008],[-3.249957084655762,34.016689300537166],[-3.264801979064941,33.96409988403331],[-3.21763801574707,33.92543029785162],[-3.161573886871338,33.864364624023494],[-3.12640190124506,33.8100814819337],[-3.118671894073486,33.74662780761719],[-3.246437072753793,33.771644592285156],[-3.295849084854126,33.80597305297863],[-3.419624090194702,33.838691711425895],[-3.465671062469369,33.88507461547857],[-3.564152002334537,33.92658615112304],[-3.579458951950016,33.89122009277344],[-3.605114936828556,33.878536224365234],[-3.658936977386361,33.79726791381836],[-3.736298084259033,33.75866317749035],[-3.779800891876164,33.7106285095216],[-3.816797018051091,33.69053268432623],[-3.823367118835392,33.66073989868164],[-3.854965925216675,33.62724685668957],[-3.994119882583504,33.57223892211914],[-4.077552795410099,33.569396972656364],[-4.112256050109863,33.60321426391613],[-4.080557823181096,33.673675537109425],[-4.145689964294377,33.685218811035156],[-4.181508064269963,33.66444778442394],[-4.208340167999268,33.70255279541009],[-4.203854084014893,33.77159118652338],[-4.139174938201904,33.83836364746094],[-4.20512676239008,33.83578491210943],[-4.232835769653263,33.8461647033692],[-4.246697902679443,33.89116668701183],[-4.331494808197021,33.91226196289068],[-4.392055988311768,33.872070312500114],[-4.525259971618595,33.91249084472667],[-4.554591178894043,33.93736648559576],[-4.556937217712346,34.02164840698248],[-4.575200080871525,34.058322906494254],[-4.601016044616699,34.11609268188482],[-4.451095104217472,34.16544342041027],[-4.373857975006104,34.15422439575201],[-4.35763692855835,34.18017196655279],[-4.381625175476074,34.21361923217768],[-4.326227188110294,34.24483108520513],[-4.375541210174504,34.28399658203131],[-4.463524818420353,34.306427001953125],[-4.439825057983398,34.337650299072266],[-4.474191188812256,34.36542129516613],[-4.474812984466553,34.400485992431754],[-4.449694156646729,34.43758392333996],[-4.407330036163273,34.473281860351676],[-4.37077617645258,34.479557037353516],[-4.361896991729736,34.51388931274414],[-4.322501182556096,34.53234863281256],[-4.298999786376896,34.59146118164068],[-4.232379913330078,34.58298492431635],[-4.194618225097656,34.600990295410206],[-4.160521030426025,34.590412139892635],[-4.083994865417424,34.61219787597656],[-4.113759994506836,34.631320953369254],[-4.112709999084473,34.67407226562505],[-4.142860889434814,34.719581604003906],[-4.080427169799805,34.74770736694336],[-4.027320861816406,34.79974746704096],[-3.974711894988957,34.819923400878906],[-3.90119290351862,34.8221092224121],[-3.857954025268498,34.83435440063482],[-3.787239074706974,34.890285491943416],[-3.770543098449707,34.864685058593864],[-3.72989797592163,34.842544555664176],[-3.676733016967773,34.847923278808594],[-3.636090993881168,34.82651519775402],[-3.592948913574219,34.831058502197266],[-3.584851980209294,34.757175445556754],[-3.60863804817194,34.72355270385748],[-3.574270963668823,34.69995880126953],[-3.632569074630737,34.66827774047863],[-3.621160030364933,34.634925842285156],[-3.592377901077213,34.611587524414006],[-3.565833091735839,34.56569290161144],[-3.497486114501953,34.55048370361334],[-3.474025964736882,34.61521911621088],[-3.441431999206486,34.64573287963873],[-3.416953086853027,34.63576507568371],[-3.386950016021672,34.66469573974615],[-3.321104049682617,34.69573593139654],[-3.293787956237736,34.75638198852545],[-3.166537046432381,34.75470352172863],[-3.10984110832203,34.70580291748058],[-3.07751989364624,34.706741333007926],[-3.014470100402832,34.66765213012701],[-2.975734949111882,34.65782546997081]]]},"properties":{"ID_0":152,"ISO":"MA-TAZ","NAME_0":"Morocco","ID_1":15,"NAME_1":"Taza - Al Hoceima - Taounate","ID_2":54,"NAME_2":"Taza","TYPE_2":"Province","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson
new file mode 100644
index 0000000..e4bfc84
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson
@@ -0,0 +1,21 @@
+{
+"type": "FeatureCollection",
+"name": "myanmar",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+"features": [
+{ "type": "Feature", "properties": { "ID": 1, "NAME": "Kachin State", "PCODE": "MMR001", "ISO": "MM-11" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.6383, 23.8632 ], [ 97.6062, 23.8241 ], [ 97.5719, 23.8155 ], [ 97.5465, 23.8228 ], [ 97.4755, 23.8186 ], [ 97.4532, 23.7986 ], [ 97.4667, 23.7809 ], [ 97.4086, 23.739 ], [ 97.3727, 23.7454 ], [ 97.3481, 23.7266 ], [ 97.3404, 23.6949 ], [ 97.3207, 23.7195 ], [ 97.3044, 23.7045 ], [ 97.2686, 23.7125 ], [ 97.1796, 23.6712 ], [ 97.1521, 23.676 ], [ 97.1206, 23.665 ], [ 97.0886, 23.6341 ], [ 97.0712, 23.6403 ], [ 97.0147, 23.644 ], [ 97.0051, 23.6631 ], [ 97.0041, 23.696 ], [ 96.9746, 23.7162 ], [ 96.959, 23.712 ], [ 96.8925, 23.7197 ], [ 96.8695, 23.7162 ], [ 96.8563, 23.7323 ], [ 96.7843, 23.743 ], [ 96.7758, 23.7654 ], [ 96.7965, 23.7851 ], [ 96.8242, 23.7773 ], [ 96.8546, 23.787 ], [ 96.8802, 23.8228 ], [ 96.8861, 23.8472 ], [ 96.8687, 23.8847 ], [ 96.8427, 23.8893 ], [ 96.8404, 23.9361 ], [ 96.832, 23.9562 ], [ 96.8593, 24.0021 ], [ 96.8426, 24.0258 ], [ 96.7887, 24.0146 ], [ 96.7583, 23.9955 ], [ 96.7299, 23.9921 ], [ 96.6789, 23.9999 ], [ 96.7031, 24.0292 ], [ 96.6931, 24.0732 ], [ 96.6776, 24.0863 ], [ 96.6935, 24.1032 ], [ 96.6868, 24.1266 ], [ 96.6662, 24.139 ], [ 96.6631, 24.1577 ], [ 96.6587, 24.1701 ], [ 96.6168, 24.1978 ], [ 96.5976, 24.2182 ], [ 96.5763, 24.225 ], [ 96.5697, 24.2492 ], [ 96.5961, 24.2708 ], [ 96.6033, 24.318 ], [ 96.5709, 24.3199 ], [ 96.5623, 24.3469 ], [ 96.5969, 24.3687 ], [ 96.5869, 24.3973 ], [ 96.6194, 24.4042 ], [ 96.643, 24.4193 ], [ 96.63, 24.4577 ], [ 96.6217, 24.4598 ], [ 96.5923, 24.4823 ], [ 96.5758, 24.4684 ], [ 96.5254, 24.498 ], [ 96.4986, 24.4856 ], [ 96.4778, 24.5152 ], [ 96.4486, 24.5202 ], [ 96.4358, 24.5419 ], [ 96.4173, 24.546 ], [ 96.4072, 24.5277 ], [ 96.3742, 24.5152 ], [ 96.3362, 24.5208 ], [ 96.325, 24.5078 ], [ 96.2999, 24.5067 ], [ 96.2745, 24.522 ], [ 96.2307, 24.506 ], [ 96.1999, 24.4798 ], [ 96.1849, 24.4798 ], [ 96.1934, 24.5179 ], [ 96.1152, 24.5698 ], [ 96.0945, 24.5946 ], [ 96.1075, 24.6262 ], [ 96.0878, 24.6521 ], [ 96.0771, 24.679 ], [ 96.0373, 24.6855 ], [ 96.0208, 24.6666 ], [ 95.9678, 24.679 ], [ 95.9465, 24.7091 ], [ 95.912, 24.7056 ], [ 95.9016, 24.7275 ], [ 95.9105, 24.7488 ], [ 95.8922, 24.7697 ], [ 95.8825, 24.8065 ], [ 95.8693, 24.826 ], [ 95.8802, 24.8827 ], [ 95.8641, 24.8957 ], [ 95.8655, 24.9156 ], [ 95.8466, 24.9199 ], [ 95.8185, 24.9426 ], [ 95.8337, 24.9624 ], [ 95.876, 24.9645 ], [ 95.9112, 24.9959 ], [ 95.9613, 24.996 ], [ 96.0063, 25.0207 ], [ 96.0026, 25.0722 ], [ 96.0186, 25.0834 ], [ 96.0472, 25.0619 ], [ 96.0376, 25.0161 ], [ 96.0128, 25.0051 ], [ 96.0079, 24.9539 ], [ 96.0313, 24.9496 ], [ 96.0483, 24.9634 ], [ 96.0705, 24.9982 ], [ 96.0712, 25.0314 ], [ 96.0793, 25.0509 ], [ 96.076, 25.0876 ], [ 96.0535, 25.0911 ], [ 96.0594, 25.1123 ], [ 96.0439, 25.1412 ], [ 96.0466, 25.1468 ], [ 96.0199, 25.177 ], [ 95.9951, 25.2159 ], [ 95.9901, 25.2524 ], [ 95.9939, 25.2736 ], [ 95.9745, 25.2905 ], [ 95.9604, 25.3353 ], [ 95.9647, 25.5011 ], [ 95.9579, 25.6118 ], [ 95.9706, 25.6302 ], [ 96.0072, 25.614 ], [ 96.0502, 25.5851 ], [ 96.0693, 25.5789 ], [ 96.0791, 25.6043 ], [ 96.0998, 25.6256 ], [ 96.1166, 25.6148 ], [ 96.1649, 25.6387 ], [ 96.1818, 25.6398 ], [ 96.2089, 25.6703 ], [ 96.2157, 25.7254 ], [ 96.2015, 25.7489 ], [ 96.1699, 25.7521 ], [ 96.1182, 25.7905 ], [ 96.1271, 25.8229 ], [ 96.1093, 25.8818 ], [ 96.0852, 25.8976 ], [ 96.1122, 25.919 ], [ 96.1238, 25.9984 ], [ 96.1592, 26.006 ], [ 96.1827, 26.0499 ], [ 96.1613, 26.0829 ], [ 96.1604, 26.1123 ], [ 96.1503, 26.1266 ], [ 96.1561, 26.155 ], [ 96.1206, 26.1697 ], [ 96.1345, 26.1888 ], [ 96.1348, 26.2075 ], [ 96.1188, 26.2265 ], [ 96.0801, 26.248 ], [ 96.1, 26.308 ], [ 96.1017, 26.3309 ], [ 96.0867, 26.3476 ], [ 96.0523, 26.3538 ], [ 96.0301, 26.3833 ], [ 96.001, 26.3919 ], [ 96.0022, 26.4249 ], [ 96.0159, 26.4484 ], [ 96.004, 26.4615 ], [ 96.0078, 26.4853 ], [ 96.0426, 26.4939 ], [ 96.0869, 26.4908 ], [ 96.1113, 26.4975 ], [ 96.1343, 26.4924 ], [ 96.1655, 26.497 ], [ 96.1832, 26.5245 ], [ 96.161, 26.5481 ], [ 96.1547, 26.5821 ], [ 96.1374, 26.5946 ], [ 96.1304, 26.6356 ], [ 96.0826, 26.652 ], [ 96.0949, 26.6645 ], [ 96.0915, 26.6842 ], [ 96.1034, 26.7256 ], [ 96.16, 26.7494 ], [ 96.1969, 26.7569 ], [ 96.2096, 26.7908 ], [ 96.2483, 26.8014 ], [ 96.2502, 26.8279 ], [ 96.2315, 26.8697 ], [ 96.2451, 26.8889 ], [ 96.2826, 26.8764 ], [ 96.278, 26.9096 ], [ 96.2928, 26.926 ], [ 96.3144, 26.9303 ], [ 96.3068, 26.9555 ], [ 96.282, 26.9509 ], [ 96.242, 26.9545 ], [ 96.251, 26.9826 ], [ 96.3037, 26.9885 ], [ 96.3303, 27.0194 ], [ 96.3509, 27.0193 ], [ 96.3803, 27.0057 ], [ 96.4054, 27.0067 ], [ 96.4246, 26.9841 ], [ 96.4797, 26.9865 ], [ 96.4972, 26.9963 ], [ 96.5257, 26.9963 ], [ 96.5696, 26.9824 ], [ 96.5859, 26.9982 ], [ 96.6467, 27.0079 ], [ 96.6966, 26.9929 ], [ 96.7193, 27.0015 ], [ 96.741, 27.0392 ], [ 96.7881, 27.0309 ], [ 96.8281, 27.0447 ], [ 96.8929, 27.0464 ], [ 96.9085, 27.0354 ], [ 96.9423, 27.0448 ], [ 96.9546, 27.0329 ], [ 96.9859, 27.0237 ], [ 96.9976, 27.0356 ], [ 97.0256, 27.0376 ], [ 97.0502, 27.056 ], [ 97.0666, 27.0927 ], [ 97.1185, 27.1036 ], [ 97.1383, 27.0922 ], [ 97.1652, 27.1349 ], [ 97.1207, 27.1893 ], [ 97.0917, 27.2127 ], [ 97.0879, 27.2372 ], [ 97.054, 27.2666 ], [ 97.0286, 27.3059 ], [ 96.9991, 27.3183 ], [ 96.9912, 27.3444 ], [ 96.9633, 27.3768 ], [ 96.9623, 27.4022 ], [ 96.9346, 27.4179 ], [ 96.9315, 27.4333 ], [ 96.9027, 27.4567 ], [ 96.9134, 27.5161 ], [ 96.9047, 27.5849 ], [ 96.8888, 27.6072 ], [ 96.9154, 27.6213 ], [ 96.9302, 27.6595 ], [ 96.9644, 27.6585 ], [ 96.9869, 27.6749 ], [ 97.0188, 27.7363 ], [ 97.0619, 27.7491 ], [ 97.0951, 27.7503 ], [ 97.0956, 27.7691 ], [ 97.1395, 27.8085 ], [ 97.1563, 27.8112 ], [ 97.2348, 27.8814 ], [ 97.2469, 27.8993 ], [ 97.2978, 27.9153 ], [ 97.3652, 27.873 ], [ 97.3785, 27.8924 ], [ 97.3643, 27.9602 ], [ 97.3838, 27.9849 ], [ 97.3931, 28.0108 ], [ 97.3513, 28.0657 ], [ 97.3202, 28.0579 ], [ 97.3309, 28.088 ], [ 97.3249, 28.1155 ], [ 97.33, 28.142 ], [ 97.3517, 28.1506 ], [ 97.3626, 28.1987 ], [ 97.3466, 28.2132 ], [ 97.35, 28.2392 ], [ 97.387, 28.2368 ], [ 97.412, 28.2495 ], [ 97.4021, 28.2787 ], [ 97.418, 28.2955 ], [ 97.4631, 28.2707 ], [ 97.4835, 28.3147 ], [ 97.5037, 28.315 ], [ 97.5014, 28.3397 ], [ 97.4845, 28.3712 ], [ 97.4835, 28.3875 ], [ 97.502, 28.3997 ], [ 97.5054, 28.4318 ], [ 97.5229, 28.445 ], [ 97.504, 28.47 ], [ 97.5004, 28.4935 ], [ 97.5328, 28.5087 ], [ 97.5391, 28.5218 ], [ 97.5736, 28.5455 ], [ 97.6147, 28.5175 ], [ 97.6301, 28.5363 ], [ 97.6601, 28.5371 ], [ 97.6879, 28.5235 ], [ 97.6917, 28.5061 ], [ 97.7222, 28.4974 ], [ 97.7402, 28.4604 ], [ 97.7363, 28.4007 ], [ 97.7901, 28.358 ], [ 97.7944, 28.3337 ], [ 97.8437, 28.3304 ], [ 97.8467, 28.3519 ], [ 97.8684, 28.366 ], [ 97.9085, 28.368 ], [ 97.9416, 28.3307 ], [ 97.9645, 28.3142 ], [ 97.9565, 28.3006 ], [ 97.992, 28.291 ], [ 98.0105, 28.274 ], [ 98.024, 28.2459 ], [ 98.0074, 28.2151 ], [ 98.0316, 28.1893 ], [ 98.0504, 28.2019 ], [ 98.0776, 28.2042 ], [ 98.0944, 28.1704 ], [ 98.1209, 28.1639 ], [ 98.1416, 28.1398 ], [ 98.1604, 28.0988 ], [ 98.1499, 28.0605 ], [ 98.138, 28.0441 ], [ 98.1441, 28.022 ], [ 98.1341, 27.9923 ], [ 98.1372, 27.963 ], [ 98.1597, 27.94 ], [ 98.1889, 27.9391 ], [ 98.2017, 27.9039 ], [ 98.2014, 27.8755 ], [ 98.182, 27.8738 ], [ 98.1699, 27.8524 ], [ 98.1804, 27.8304 ], [ 98.2249, 27.8113 ], [ 98.2192, 27.7593 ], [ 98.247, 27.7411 ], [ 98.2242, 27.7114 ], [ 98.238, 27.692 ], [ 98.2849, 27.6561 ], [ 98.3018, 27.6311 ], [ 98.3095, 27.5881 ], [ 98.3085, 27.5454 ], [ 98.3178, 27.5227 ], [ 98.337, 27.5103 ], [ 98.3725, 27.509 ], [ 98.3909, 27.5188 ], [ 98.3993, 27.5396 ], [ 98.4294, 27.5527 ], [ 98.4289, 27.5964 ], [ 98.4368, 27.6282 ], [ 98.4315, 27.6636 ], [ 98.4442, 27.6673 ], [ 98.4699, 27.6394 ], [ 98.504, 27.6347 ], [ 98.5114, 27.6246 ], [ 98.5581, 27.6463 ], [ 98.5854, 27.5884 ], [ 98.6498, 27.5673 ], [ 98.674, 27.5855 ], [ 98.7026, 27.5637 ], [ 98.6869, 27.4867 ], [ 98.7011, 27.4673 ], [ 98.6872, 27.4243 ], [ 98.7028, 27.4153 ], [ 98.699, 27.3818 ], [ 98.7065, 27.3629 ], [ 98.735, 27.3514 ], [ 98.7403, 27.3336 ], [ 98.7336, 27.2883 ], [ 98.7169, 27.2722 ], [ 98.7236, 27.2239 ], [ 98.6963, 27.2117 ], [ 98.7131, 27.1411 ], [ 98.71, 27.1081 ], [ 98.7144, 27.077 ], [ 98.74, 27.0747 ], [ 98.7659, 27.0532 ], [ 98.7639, 27.0214 ], [ 98.7446, 27.0144 ], [ 98.7389, 26.9621 ], [ 98.7543, 26.9232 ], [ 98.7584, 26.8846 ], [ 98.7347, 26.8578 ], [ 98.7354, 26.8447 ], [ 98.7606, 26.8099 ], [ 98.7539, 26.7338 ], [ 98.7434, 26.7121 ], [ 98.7709, 26.6903 ], [ 98.762, 26.6656 ], [ 98.7813, 26.6227 ], [ 98.7716, 26.5779 ], [ 98.7554, 26.5647 ], [ 98.7568, 26.4916 ], [ 98.7429, 26.4362 ], [ 98.7505, 26.4229 ], [ 98.7334, 26.3851 ], [ 98.7277, 26.3484 ], [ 98.6833, 26.3078 ], [ 98.6795, 26.262 ], [ 98.672, 26.2419 ], [ 98.706, 26.2417 ], [ 98.7349, 26.1849 ], [ 98.7246, 26.1599 ], [ 98.709, 26.1566 ], [ 98.7163, 26.1256 ], [ 98.6913, 26.1123 ], [ 98.6666, 26.0895 ], [ 98.6567, 26.0995 ], [ 98.6655, 26.123 ], [ 98.6504, 26.1438 ], [ 98.6282, 26.148 ], [ 98.6037, 26.1318 ], [ 98.5865, 26.1441 ], [ 98.5729, 26.1208 ], [ 98.6027, 26.0529 ], [ 98.6167, 25.9753 ], [ 98.642, 25.9767 ], [ 98.6849, 25.9379 ], [ 98.6926, 25.9081 ], [ 98.7046, 25.8967 ], [ 98.7053, 25.852 ], [ 98.6876, 25.8455 ], [ 98.6745, 25.8189 ], [ 98.6395, 25.8008 ], [ 98.578, 25.8275 ], [ 98.5626, 25.8475 ], [ 98.5329, 25.8454 ], [ 98.5205, 25.8268 ], [ 98.4927, 25.8076 ], [ 98.4754, 25.7804 ], [ 98.479, 25.7541 ], [ 98.4651, 25.7434 ], [ 98.4681, 25.7086 ], [ 98.459, 25.6889 ], [ 98.4214, 25.6738 ], [ 98.4113, 25.6619 ], [ 98.4091, 25.6133 ], [ 98.403, 25.5956 ], [ 98.3802, 25.5965 ], [ 98.3611, 25.5769 ], [ 98.3446, 25.5769 ], [ 98.3037, 25.5501 ], [ 98.2917, 25.5765 ], [ 98.2615, 25.6018 ], [ 98.2083, 25.6185 ], [ 98.1802, 25.6023 ], [ 98.1875, 25.5749 ], [ 98.1757, 25.5505 ], [ 98.1538, 25.528 ], [ 98.1276, 25.522 ], [ 98.1261, 25.5092 ], [ 98.1576, 25.4583 ], [ 98.1536, 25.4223 ], [ 98.1404, 25.3904 ], [ 98.1018, 25.3917 ], [ 98.0974, 25.354 ], [ 98.0753, 25.3326 ], [ 98.0669, 25.309 ], [ 98.0392, 25.3038 ], [ 98.0202, 25.3091 ], [ 97.9906, 25.2597 ], [ 97.9456, 25.2242 ], [ 97.9207, 25.2146 ], [ 97.9008, 25.2224 ], [ 97.8749, 25.2623 ], [ 97.8376, 25.2695 ], [ 97.8074, 25.2038 ], [ 97.7961, 25.1599 ], [ 97.7634, 25.1051 ], [ 97.7365, 25.0802 ], [ 97.7216, 25.0775 ], [ 97.727, 25.0453 ], [ 97.7193, 25.0167 ], [ 97.7189, 24.9778 ], [ 97.7324, 24.9497 ], [ 97.7291, 24.9209 ], [ 97.7427, 24.8971 ], [ 97.7623, 24.8823 ], [ 97.786, 24.8809 ], [ 97.8006, 24.849 ], [ 97.7639, 24.8259 ], [ 97.7362, 24.8289 ], [ 97.7056, 24.8414 ], [ 97.6847, 24.8317 ], [ 97.6449, 24.7925 ], [ 97.5888, 24.769 ], [ 97.5741, 24.7711 ], [ 97.5506, 24.7425 ], [ 97.5656, 24.7259 ], [ 97.5719, 24.6601 ], [ 97.5694, 24.6026 ], [ 97.5542, 24.4895 ], [ 97.534, 24.455 ], [ 97.5313, 24.437 ], [ 97.6228, 24.4413 ], [ 97.6631, 24.4539 ], [ 97.6757, 24.4504 ], [ 97.6799, 24.4088 ], [ 97.6908, 24.3873 ], [ 97.7152, 24.3774 ], [ 97.703, 24.3442 ], [ 97.6655, 24.3443 ], [ 97.6591, 24.3252 ], [ 97.6676, 24.2993 ], [ 97.7155, 24.2987 ], [ 97.7385, 24.2899 ], [ 97.7695, 24.2626 ], [ 97.7293, 24.2291 ], [ 97.728, 24.188 ], [ 97.7455, 24.1793 ], [ 97.7372, 24.1353 ], [ 97.7263, 24.1134 ], [ 97.697, 24.0971 ], [ 97.6753, 24.0725 ], [ 97.6347, 24.0454 ], [ 97.6278, 24.0072 ], [ 97.5763, 23.9863 ], [ 97.5628, 23.9644 ], [ 97.5313, 23.9488 ], [ 97.5286, 23.9298 ], [ 97.5567, 23.9205 ], [ 97.633, 23.8813 ], [ 97.6383, 23.8632 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 2, "NAME": "Kayah State", "PCODE": "MMR002", "ISO": "MM-12" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.8633, 19.5748 ], [ 97.8572, 19.5454 ], [ 97.8736, 19.4936 ], [ 97.8389, 19.4487 ], [ 97.8247, 19.423 ], [ 97.8017, 19.4025 ], [ 97.806, 19.3823 ], [ 97.8006, 19.3517 ], [ 97.8308, 19.3009 ], [ 97.8259, 19.2815 ], [ 97.8042, 19.2874 ], [ 97.7828, 19.2639 ], [ 97.8022, 19.2577 ], [ 97.844, 19.2203 ], [ 97.8393, 19.1939 ], [ 97.8445, 19.1446 ], [ 97.8367, 19.0927 ], [ 97.8134, 19.0897 ], [ 97.7916, 19.0727 ], [ 97.7657, 19.0665 ], [ 97.7686, 19.0431 ], [ 97.7384, 19.0409 ], [ 97.7367, 18.9763 ], [ 97.7067, 18.9678 ], [ 97.6696, 18.9314 ], [ 97.6904, 18.9244 ], [ 97.6988, 18.9036 ], [ 97.7419, 18.8816 ], [ 97.7498, 18.8427 ], [ 97.7393, 18.8289 ], [ 97.7645, 18.7579 ], [ 97.7528, 18.7368 ], [ 97.7577, 18.714 ], [ 97.773, 18.6951 ], [ 97.769, 18.6312 ], [ 97.7746, 18.6056 ], [ 97.7664, 18.5773 ], [ 97.7336, 18.5859 ], [ 97.7016, 18.5685 ], [ 97.653, 18.5751 ], [ 97.6364, 18.5573 ], [ 97.6027, 18.5361 ], [ 97.545, 18.5288 ], [ 97.5372, 18.4926 ], [ 97.5011, 18.4944 ], [ 97.4823, 18.5101 ], [ 97.4673, 18.4957 ], [ 97.4454, 18.493 ], [ 97.4282, 18.5428 ], [ 97.4006, 18.5652 ], [ 97.3643, 18.5568 ], [ 97.3592, 18.5976 ], [ 97.3445, 18.6173 ], [ 97.3373, 18.643 ], [ 97.317, 18.6627 ], [ 97.3088, 18.6835 ], [ 97.2652, 18.6867 ], [ 97.2324, 18.6774 ], [ 97.2109, 18.6834 ], [ 97.1776, 18.6794 ], [ 97.1367, 18.6915 ], [ 97.1352, 18.6947 ], [ 97.1015, 18.6868 ], [ 97.0829, 18.7363 ], [ 97.044, 18.8032 ], [ 97.0256, 18.862 ], [ 96.995, 18.881 ], [ 97.0098, 18.9018 ], [ 97.0017, 18.9193 ], [ 96.9648, 18.9457 ], [ 96.9666, 18.9596 ], [ 96.9427, 18.9977 ], [ 96.9532, 19.0195 ], [ 96.9303, 19.0522 ], [ 96.9504, 19.0709 ], [ 96.923, 19.0934 ], [ 96.9307, 19.1064 ], [ 96.9121, 19.1264 ], [ 96.9026, 19.1562 ], [ 96.8896, 19.1504 ], [ 96.8493, 19.1751 ], [ 96.8414, 19.2183 ], [ 96.8198, 19.2547 ], [ 96.8222, 19.3243 ], [ 96.8342, 19.3327 ], [ 96.8526, 19.3118 ], [ 96.8859, 19.3377 ], [ 96.8751, 19.3559 ], [ 96.8887, 19.3746 ], [ 96.9597, 19.4168 ], [ 96.9659, 19.4271 ], [ 96.9356, 19.461 ], [ 96.9247, 19.4516 ], [ 96.9029, 19.4675 ], [ 96.91, 19.4806 ], [ 96.8736, 19.5073 ], [ 96.8761, 19.5224 ], [ 96.8971, 19.5322 ], [ 96.8987, 19.5571 ], [ 96.9463, 19.5883 ], [ 96.954, 19.6137 ], [ 96.9855, 19.6408 ], [ 97.0059, 19.6402 ], [ 97.0165, 19.6542 ], [ 97.0089, 19.6734 ], [ 97.0153, 19.6907 ], [ 97.0497, 19.6922 ], [ 97.094, 19.7145 ], [ 97.128, 19.715 ], [ 97.1161, 19.7507 ], [ 97.1524, 19.7794 ], [ 97.1341, 19.7991 ], [ 97.1469, 19.8329 ], [ 97.1553, 19.8361 ], [ 97.1409, 19.9031 ], [ 97.1571, 19.9558 ], [ 97.1443, 19.9869 ], [ 97.1689, 19.9967 ], [ 97.2093, 19.9894 ], [ 97.2201, 19.9559 ], [ 97.2218, 19.9076 ], [ 97.2661, 19.8909 ], [ 97.3148, 19.9014 ], [ 97.3294, 19.8976 ], [ 97.3337, 19.9264 ], [ 97.3511, 19.9467 ], [ 97.3851, 19.9564 ], [ 97.3991, 19.9188 ], [ 97.4257, 19.9077 ], [ 97.4464, 19.8812 ], [ 97.4909, 19.8887 ], [ 97.5016, 19.9023 ], [ 97.534, 19.8814 ], [ 97.5278, 19.8654 ], [ 97.5469, 19.8337 ], [ 97.5925, 19.831 ], [ 97.5621, 19.7636 ], [ 97.5618, 19.7322 ], [ 97.6051, 19.7003 ], [ 97.6263, 19.6752 ], [ 97.6606, 19.6737 ], [ 97.676, 19.6616 ], [ 97.6932, 19.6704 ], [ 97.7061, 19.6588 ], [ 97.7435, 19.6586 ], [ 97.7446, 19.6733 ], [ 97.7755, 19.6629 ], [ 97.7963, 19.6471 ], [ 97.8283, 19.6561 ], [ 97.8524, 19.6448 ], [ 97.8496, 19.6069 ], [ 97.8633, 19.5748 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 3, "NAME": "Kayin State", "PCODE": "MMR003", "ISO": "MM-13" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.8342, 19.3327 ], [ 96.8222, 19.3243 ], [ 96.8198, 19.2547 ], [ 96.8414, 19.2183 ], [ 96.8493, 19.1751 ], [ 96.8896, 19.1504 ], [ 96.9026, 19.1562 ], [ 96.9121, 19.1264 ], [ 96.9307, 19.1064 ], [ 96.923, 19.0934 ], [ 96.9504, 19.0709 ], [ 96.9303, 19.0522 ], [ 96.9532, 19.0195 ], [ 96.9427, 18.9977 ], [ 96.9666, 18.9596 ], [ 96.9648, 18.9457 ], [ 97.0017, 18.9193 ], [ 97.0098, 18.9018 ], [ 96.995, 18.881 ], [ 97.0256, 18.862 ], [ 97.044, 18.8032 ], [ 97.0829, 18.7363 ], [ 97.1015, 18.6868 ], [ 97.1352, 18.6947 ], [ 97.1367, 18.6915 ], [ 97.1776, 18.6794 ], [ 97.2109, 18.6834 ], [ 97.2324, 18.6774 ], [ 97.2652, 18.6867 ], [ 97.3088, 18.6835 ], [ 97.317, 18.6627 ], [ 97.3373, 18.643 ], [ 97.3445, 18.6173 ], [ 97.3592, 18.5976 ], [ 97.3432, 18.5755 ], [ 97.3438, 18.553 ], [ 97.355, 18.5314 ], [ 97.3722, 18.5241 ], [ 97.3904, 18.4955 ], [ 97.4034, 18.4482 ], [ 97.4178, 18.4372 ], [ 97.4256, 18.4074 ], [ 97.443, 18.4007 ], [ 97.4522, 18.3769 ], [ 97.4426, 18.3595 ], [ 97.4447, 18.3375 ], [ 97.4621, 18.3085 ], [ 97.5084, 18.2658 ], [ 97.5339, 18.2828 ], [ 97.5508, 18.334 ], [ 97.5887, 18.3337 ], [ 97.6274, 18.3133 ], [ 97.6395, 18.2803 ], [ 97.6096, 18.2404 ], [ 97.6217, 18.2153 ], [ 97.6564, 18.174 ], [ 97.676, 18.1586 ], [ 97.6779, 18.1165 ], [ 97.6911, 18.0911 ], [ 97.6821, 18.0654 ], [ 97.7055, 18.0588 ], [ 97.7215, 18.0143 ], [ 97.7372, 17.9846 ], [ 97.7317, 17.9531 ], [ 97.7079, 17.9467 ], [ 97.6898, 17.9275 ], [ 97.6724, 17.881 ], [ 97.7018, 17.8179 ], [ 97.7359, 17.7952 ], [ 97.7488, 17.77 ], [ 97.7731, 17.7496 ], [ 97.7646, 17.7256 ], [ 97.7928, 17.69 ], [ 97.8483, 17.6288 ], [ 97.9063, 17.5832 ], [ 97.9249, 17.5387 ], [ 97.9642, 17.5268 ], [ 97.9696, 17.5091 ], [ 97.9889, 17.5115 ], [ 98.0337, 17.4563 ], [ 98.0572, 17.4372 ], [ 98.0472, 17.4279 ], [ 98.0868, 17.3948 ], [ 98.1102, 17.3852 ], [ 98.1053, 17.3522 ], [ 98.1129, 17.3207 ], [ 98.1261, 17.3202 ], [ 98.1646, 17.2665 ], [ 98.2049, 17.2488 ], [ 98.2124, 17.2298 ], [ 98.2456, 17.2102 ], [ 98.2678, 17.1627 ], [ 98.2855, 17.1565 ], [ 98.2799, 17.1213 ], [ 98.3173, 17.1065 ], [ 98.3156, 17.0755 ], [ 98.3393, 17.0528 ], [ 98.3615, 17.0517 ], [ 98.3927, 17.0615 ], [ 98.4113, 17.0564 ], [ 98.4401, 17.0225 ], [ 98.4487, 16.9961 ], [ 98.4681, 16.9958 ], [ 98.4985, 16.9495 ], [ 98.4836, 16.9389 ], [ 98.5153, 16.9 ], [ 98.5208, 16.8774 ], [ 98.4989, 16.8608 ], [ 98.4963, 16.8366 ], [ 98.542, 16.8269 ], [ 98.5466, 16.8125 ], [ 98.5166, 16.8048 ], [ 98.5061, 16.7856 ], [ 98.4877, 16.7901 ], [ 98.4639, 16.7298 ], [ 98.5184, 16.686 ], [ 98.5173, 16.6553 ], [ 98.5357, 16.635 ], [ 98.5472, 16.6382 ], [ 98.5745, 16.6204 ], [ 98.587, 16.5839 ], [ 98.578, 16.5644 ], [ 98.61, 16.5217 ], [ 98.6363, 16.4782 ], [ 98.6573, 16.4561 ], [ 98.6388, 16.4296 ], [ 98.6446, 16.4027 ], [ 98.6644, 16.3652 ], [ 98.6707, 16.3183 ], [ 98.6695, 16.2833 ], [ 98.7037, 16.2717 ], [ 98.7072, 16.2953 ], [ 98.7207, 16.2973 ], [ 98.7283, 16.3309 ], [ 98.7476, 16.3476 ], [ 98.7646, 16.3431 ], [ 98.7816, 16.3652 ], [ 98.8171, 16.3878 ], [ 98.831, 16.4222 ], [ 98.883, 16.4194 ], [ 98.9066, 16.3962 ], [ 98.9199, 16.3629 ], [ 98.9008, 16.3137 ], [ 98.9169, 16.3049 ], [ 98.9084, 16.2727 ], [ 98.9114, 16.2553 ], [ 98.8738, 16.2397 ], [ 98.8541, 16.219 ], [ 98.8625, 16.1704 ], [ 98.8544, 16.1397 ], [ 98.8289, 16.1162 ], [ 98.8044, 16.1037 ], [ 98.7797, 16.1252 ], [ 98.7657, 16.1192 ], [ 98.7229, 16.123 ], [ 98.7125, 16.1337 ], [ 98.665, 16.1271 ], [ 98.6746, 16.0944 ], [ 98.6616, 16.075 ], [ 98.6277, 16.0614 ], [ 98.6306, 16.0448 ], [ 98.5815, 16.0617 ], [ 98.5685, 16.0571 ], [ 98.566, 16.0301 ], [ 98.597, 16.0046 ], [ 98.6081, 15.9663 ], [ 98.5948, 15.9548 ], [ 98.5847, 15.9127 ], [ 98.5998, 15.8735 ], [ 98.5919, 15.8342 ], [ 98.5674, 15.7667 ], [ 98.5473, 15.6831 ], [ 98.566, 15.6364 ], [ 98.5532, 15.5999 ], [ 98.5863, 15.4701 ], [ 98.5808, 15.3804 ], [ 98.5614, 15.336 ], [ 98.5373, 15.369 ], [ 98.5106, 15.3744 ], [ 98.4932, 15.3917 ], [ 98.4569, 15.3662 ], [ 98.4196, 15.363 ], [ 98.395, 15.3071 ], [ 98.4141, 15.2932 ], [ 98.4176, 15.2665 ], [ 98.4013, 15.2538 ], [ 98.3892, 15.2705 ], [ 98.3605, 15.2898 ], [ 98.3256, 15.2998 ], [ 98.3057, 15.3133 ], [ 98.2938, 15.2968 ], [ 98.3039, 15.2802 ], [ 98.2816, 15.2718 ], [ 98.2635, 15.2386 ], [ 98.2328, 15.2354 ], [ 98.2218, 15.2233 ], [ 98.2025, 15.2356 ], [ 98.205, 15.2614 ], [ 98.1836, 15.294 ], [ 98.1842, 15.3086 ], [ 98.1569, 15.3305 ], [ 98.1394, 15.3301 ], [ 98.1155, 15.3838 ], [ 98.0905, 15.421 ], [ 98.0673, 15.4388 ], [ 98.0673, 15.4566 ], [ 98.0381, 15.5135 ], [ 98.0083, 15.5389 ], [ 98.002, 15.5604 ], [ 97.9778, 15.591 ], [ 97.9482, 15.6089 ], [ 97.9494, 15.6405 ], [ 97.9223, 15.6371 ], [ 97.9011, 15.6743 ], [ 97.8669, 15.6781 ], [ 97.8721, 15.7275 ], [ 97.8843, 15.7398 ], [ 97.8686, 15.7635 ], [ 97.8602, 15.8253 ], [ 97.8337, 15.8656 ], [ 97.8425, 15.8732 ], [ 97.832, 15.9073 ], [ 97.8501, 15.9302 ], [ 97.8346, 15.9701 ], [ 97.8479, 15.992 ], [ 97.8443, 16.0117 ], [ 97.8669, 16.0229 ], [ 97.8496, 16.0531 ], [ 97.8507, 16.071 ], [ 97.8237, 16.1015 ], [ 97.8142, 16.127 ], [ 97.8719, 16.1446 ], [ 97.9084, 16.1323 ], [ 97.9475, 16.1499 ], [ 97.9761, 16.1532 ], [ 98.0303, 16.1475 ], [ 98.0396, 16.1331 ], [ 98.0633, 16.1222 ], [ 98.077, 16.1364 ], [ 98.1251, 16.1575 ], [ 98.1282, 16.1973 ], [ 98.1139, 16.2046 ], [ 98.0785, 16.2465 ], [ 98.0814, 16.2683 ], [ 98.044, 16.3145 ], [ 97.9948, 16.3345 ], [ 97.992, 16.3814 ], [ 97.9803, 16.4351 ], [ 97.9614, 16.421 ], [ 97.9159, 16.4272 ], [ 97.9062, 16.4527 ], [ 97.8888, 16.468 ], [ 97.8582, 16.4786 ], [ 97.8608, 16.4929 ], [ 97.8547, 16.4935 ], [ 97.8567, 16.5259 ], [ 97.8464, 16.545 ], [ 97.7992, 16.5177 ], [ 97.7644, 16.538 ], [ 97.7479, 16.5618 ], [ 97.7098, 16.5734 ], [ 97.6951, 16.6028 ], [ 97.6546, 16.5932 ], [ 97.6538, 16.6159 ], [ 97.6403, 16.6418 ], [ 97.6122, 16.6534 ], [ 97.572, 16.7186 ], [ 97.5598, 16.7201 ], [ 97.5607, 16.7838 ], [ 97.5126, 16.8012 ], [ 97.5035, 16.815 ], [ 97.5176, 16.8355 ], [ 97.491, 16.8435 ], [ 97.4743, 16.8859 ], [ 97.4782, 16.9331 ], [ 97.4682, 16.9574 ], [ 97.4441, 16.9761 ], [ 97.4821, 17.0538 ], [ 97.4762, 17.0797 ], [ 97.4801, 17.0894 ], [ 97.485, 17.0981 ], [ 97.4836, 17.1007 ], [ 97.508, 17.1112 ], [ 97.5158, 17.1303 ], [ 97.5006, 17.1494 ], [ 97.4893, 17.1881 ], [ 97.4999, 17.224 ], [ 97.4804, 17.279 ], [ 97.5003, 17.287 ], [ 97.495, 17.3248 ], [ 97.4686, 17.3533 ], [ 97.4747, 17.3607 ], [ 97.4452, 17.3895 ], [ 97.4373, 17.4146 ], [ 97.4415, 17.4475 ], [ 97.425, 17.4753 ], [ 97.4336, 17.4913 ], [ 97.4393, 17.5324 ], [ 97.4205, 17.5501 ], [ 97.397, 17.5593 ], [ 97.3786, 17.5888 ], [ 97.3812, 17.6076 ], [ 97.3678, 17.6412 ], [ 97.3768, 17.6777 ], [ 97.3986, 17.6828 ], [ 97.4069, 17.7052 ], [ 97.3952, 17.7159 ], [ 97.3685, 17.7138 ], [ 97.3646, 17.6755 ], [ 97.3423, 17.6777 ], [ 97.3426, 17.6525 ], [ 97.3192, 17.6074 ], [ 97.3178, 17.5882 ], [ 97.2766, 17.607 ], [ 97.2608, 17.5997 ], [ 97.2513, 17.5777 ], [ 97.2353, 17.5795 ], [ 97.2387, 17.5438 ], [ 97.2189, 17.5432 ], [ 97.1972, 17.5574 ], [ 97.205, 17.6263 ], [ 97.171, 17.6655 ], [ 97.1785, 17.6783 ], [ 97.1558, 17.7249 ], [ 97.1662, 17.7568 ], [ 97.1928, 17.7867 ], [ 97.1948, 17.8062 ], [ 97.1848, 17.8326 ], [ 97.1646, 17.8465 ], [ 97.1629, 17.8739 ], [ 97.1225, 17.9313 ], [ 97.1162, 17.9471 ], [ 97.1176, 17.9897 ], [ 97.1403, 18.0105 ], [ 97.1416, 18.0274 ], [ 97.1728, 18.0739 ], [ 97.1814, 18.1207 ], [ 97.1957, 18.1329 ], [ 97.1935, 18.1556 ], [ 97.161, 18.1763 ], [ 97.1245, 18.21 ], [ 97.1401, 18.2503 ], [ 97.1179, 18.3091 ], [ 97.1012, 18.3317 ], [ 97.0848, 18.3209 ], [ 97.0768, 18.2913 ], [ 97.0553, 18.2924 ], [ 97.0482, 18.3064 ], [ 97.0466, 18.3453 ], [ 97.033, 18.3743 ], [ 97.0082, 18.3698 ], [ 96.9897, 18.3764 ], [ 96.9818, 18.4062 ], [ 96.9604, 18.4307 ], [ 96.9755, 18.4731 ], [ 96.9829, 18.552 ], [ 96.9665, 18.5579 ], [ 96.9765, 18.5845 ], [ 96.9405, 18.6311 ], [ 96.937, 18.6499 ], [ 96.9158, 18.6481 ], [ 96.885, 18.6345 ], [ 96.8619, 18.6358 ], [ 96.8445, 18.6148 ], [ 96.8153, 18.599 ], [ 96.7806, 18.6015 ], [ 96.7469, 18.6277 ], [ 96.7239, 18.6295 ], [ 96.6946, 18.5986 ], [ 96.6698, 18.6216 ], [ 96.6648, 18.6473 ], [ 96.6496, 18.6469 ], [ 96.6268, 18.6945 ], [ 96.6033, 18.7094 ], [ 96.5844, 18.736 ], [ 96.5731, 18.7848 ], [ 96.6356, 18.7919 ], [ 96.6251, 18.811 ], [ 96.629, 18.8309 ], [ 96.6106, 18.8407 ], [ 96.595, 18.8696 ], [ 96.6122, 18.9118 ], [ 96.6498, 18.9058 ], [ 96.6687, 18.933 ], [ 96.6358, 18.9498 ], [ 96.5841, 18.9372 ], [ 96.5704, 19.0176 ], [ 96.5722, 19.0379 ], [ 96.5422, 19.058 ], [ 96.5103, 19.0901 ], [ 96.5132, 19.133 ], [ 96.4918, 19.1458 ], [ 96.5306, 19.1574 ], [ 96.5439, 19.1815 ], [ 96.4966, 19.2069 ], [ 96.4682, 19.2961 ], [ 96.4519, 19.3028 ], [ 96.4566, 19.3118 ], [ 96.4611, 19.3531 ], [ 96.4459, 19.3735 ], [ 96.4275, 19.3796 ], [ 96.4099, 19.4061 ], [ 96.4347, 19.4376 ], [ 96.4016, 19.4593 ], [ 96.3916, 19.4739 ], [ 96.4455, 19.4818 ], [ 96.4704, 19.4765 ], [ 96.5004, 19.4899 ], [ 96.5249, 19.4711 ], [ 96.5628, 19.4731 ], [ 96.5903, 19.4556 ], [ 96.6122, 19.4275 ], [ 96.6313, 19.4427 ], [ 96.636, 19.477 ], [ 96.6502, 19.5002 ], [ 96.668, 19.5091 ], [ 96.6775, 19.4805 ], [ 96.6982, 19.4514 ], [ 96.7278, 19.4485 ], [ 96.7661, 19.4309 ], [ 96.7828, 19.407 ], [ 96.802, 19.403 ], [ 96.814, 19.3733 ], [ 96.8309, 19.3536 ], [ 96.8342, 19.3327 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 4, "NAME": "Chin State", "PCODE": "MMR004", "ISO": "MM-14" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 94.1422, 23.8348 ], [ 94.1336, 23.8183 ], [ 94.1373, 23.7742 ], [ 94.153, 23.7391 ], [ 94.1373, 23.7207 ], [ 94.1497, 23.6911 ], [ 94.1281, 23.6652 ], [ 94.1321, 23.6515 ], [ 94.1193, 23.6129 ], [ 94.1181, 23.557 ], [ 94.111, 23.5433 ], [ 94.0788, 23.5396 ], [ 94.0692, 23.5557 ], [ 94.04, 23.5734 ], [ 94.0161, 23.5414 ], [ 94.0272, 23.5249 ], [ 94.0366, 23.4321 ], [ 94.0254, 23.3798 ], [ 94.024, 23.3771 ], [ 94.0034, 23.3713 ], [ 94.004, 23.3119 ], [ 94.0105, 23.2905 ], [ 93.9995, 23.2546 ], [ 93.9802, 23.2344 ], [ 93.9546, 23.2203 ], [ 93.9632, 23.1861 ], [ 93.9462, 23.1799 ], [ 93.977, 23.1252 ], [ 93.977, 23.0901 ], [ 93.9938, 23.086 ], [ 94.0045, 23.0574 ], [ 94.0006, 22.9825 ], [ 94.0204, 22.9661 ], [ 94.0195, 22.9467 ], [ 93.9896, 22.9467 ], [ 93.9949, 22.9247 ], [ 94.0113, 22.9051 ], [ 94.0172, 22.8527 ], [ 94.0126, 22.836 ], [ 93.9873, 22.8304 ], [ 94.0081, 22.7715 ], [ 94.0079, 22.7371 ], [ 94.0489, 22.6057 ], [ 94.0166, 22.5954 ], [ 94.0169, 22.5675 ], [ 94.0478, 22.4513 ], [ 94.0579, 22.4368 ], [ 94.0184, 22.3665 ], [ 94.038, 22.2543 ], [ 94.036, 22.2031 ], [ 94.0418, 22.1556 ], [ 94.0065, 22.0809 ], [ 94.0175, 21.9958 ], [ 93.9812, 21.9244 ], [ 93.9864, 21.9002 ], [ 93.9953, 21.803 ], [ 94.0062, 21.7204 ], [ 94.0422, 21.6715 ], [ 94.1014, 21.6374 ], [ 94.1037, 21.6038 ], [ 94.1177, 21.5731 ], [ 94.0955, 21.5571 ], [ 94.0915, 21.5066 ], [ 94.0769, 21.4812 ], [ 94.089, 21.4649 ], [ 94.0796, 21.4473 ], [ 94.0628, 21.3882 ], [ 94.0458, 21.3489 ], [ 94.0555, 21.3361 ], [ 94.006, 21.2996 ], [ 94.0197, 21.2833 ], [ 94.0517, 21.2849 ], [ 94.0935, 21.2786 ], [ 94.1004, 21.2645 ], [ 94.0944, 21.213 ], [ 94.1072, 21.2014 ], [ 94.12, 21.1679 ], [ 94.1108, 21.1086 ], [ 94.0852, 21.0729 ], [ 94.053, 21.0673 ], [ 94.0674, 21.0414 ], [ 94.064, 21.0281 ], [ 94.0412, 21.0109 ], [ 94.0036, 20.9601 ], [ 94.0313, 20.8872 ], [ 94.0438, 20.8847 ], [ 94.058, 20.8582 ], [ 94.0393, 20.8276 ], [ 94.0514, 20.7927 ], [ 94.0808, 20.7647 ], [ 94.0837, 20.7496 ], [ 94.0469, 20.6893 ], [ 93.9897, 20.6822 ], [ 93.9796, 20.6687 ], [ 93.9435, 20.6614 ], [ 93.9234, 20.6399 ], [ 93.9128, 20.6508 ], [ 93.8861, 20.6418 ], [ 93.8634, 20.65 ], [ 93.8661, 20.6633 ], [ 93.8407, 20.6875 ], [ 93.8505, 20.7095 ], [ 93.8301, 20.747 ], [ 93.82, 20.7766 ], [ 93.8063, 20.7787 ], [ 93.766, 20.7641 ], [ 93.7605, 20.7983 ], [ 93.7495, 20.8046 ], [ 93.7461, 20.8363 ], [ 93.7223, 20.8781 ], [ 93.696, 20.9053 ], [ 93.6958, 20.9202 ], [ 93.6434, 20.924 ], [ 93.6313, 20.9178 ], [ 93.6301, 20.8674 ], [ 93.5989, 20.8469 ], [ 93.6089, 20.8307 ], [ 93.6033, 20.7823 ], [ 93.6296, 20.7528 ], [ 93.6308, 20.7224 ], [ 93.5807, 20.7258 ], [ 93.5637, 20.7342 ], [ 93.552, 20.7113 ], [ 93.5195, 20.7091 ], [ 93.5022, 20.7344 ], [ 93.4811, 20.7439 ], [ 93.4596, 20.7271 ], [ 93.4495, 20.7398 ], [ 93.4054, 20.7318 ], [ 93.3902, 20.7712 ], [ 93.3215, 20.7613 ], [ 93.3111, 20.7909 ], [ 93.2785, 20.7912 ], [ 93.2436, 20.8098 ], [ 93.2474, 20.8306 ], [ 93.2085, 20.8511 ], [ 93.1755, 20.8333 ], [ 93.16, 20.8435 ], [ 93.1449, 20.9111 ], [ 93.1339, 20.9293 ], [ 93.1334, 20.9596 ], [ 93.1415, 20.9698 ], [ 93.129, 21.0396 ], [ 93.1223, 21.0558 ], [ 93.1308, 21.0866 ], [ 93.0978, 21.0814 ], [ 93.0469, 21.0615 ], [ 93.0277, 21.0776 ], [ 93.0064, 21.0708 ], [ 92.984, 21.0971 ], [ 92.9495, 21.1134 ], [ 92.9258, 21.1137 ], [ 92.8651, 21.0727 ], [ 92.8389, 21.0946 ], [ 92.812, 21.0961 ], [ 92.7947, 21.1255 ], [ 92.8012, 21.1419 ], [ 92.7841, 21.1587 ], [ 92.7837, 21.1898 ], [ 92.7547, 21.2071 ], [ 92.7382, 21.1984 ], [ 92.7109, 21.2531 ], [ 92.6947, 21.2565 ], [ 92.6792, 21.2862 ], [ 92.6645, 21.318 ], [ 92.649, 21.3762 ], [ 92.6404, 21.4276 ], [ 92.6308, 21.4485 ], [ 92.6275, 21.4881 ], [ 92.6197, 21.514 ], [ 92.6175, 21.5545 ], [ 92.6088, 21.5913 ], [ 92.6109, 21.6227 ], [ 92.6041, 21.6505 ], [ 92.6075, 21.6889 ], [ 92.6021, 21.701 ], [ 92.6109, 21.7692 ], [ 92.6128, 21.8492 ], [ 92.6313, 21.878 ], [ 92.6064, 21.9744 ], [ 92.6341, 21.9845 ], [ 92.6536, 22.0151 ], [ 92.6807, 22.0122 ], [ 92.6859, 22.0418 ], [ 92.6832, 22.103 ], [ 92.6966, 22.1373 ], [ 92.7269, 22.15 ], [ 92.7358, 22.1339 ], [ 92.8189, 22.0853 ], [ 92.8447, 22.0615 ], [ 92.8687, 22.054 ], [ 92.8655, 22.0263 ], [ 92.89, 22.0122 ], [ 92.9008, 21.9665 ], [ 92.9299, 22.0143 ], [ 92.957, 22.032 ], [ 92.9774, 21.9966 ], [ 93.005, 21.9882 ], [ 92.9958, 22.0479 ], [ 93.0106, 22.0906 ], [ 93.0204, 22.1003 ], [ 93.0577, 22.0978 ], [ 93.0525, 22.1258 ], [ 93.0375, 22.1477 ], [ 93.0468, 22.1662 ], [ 93.039, 22.1949 ], [ 93.0488, 22.2024 ], [ 93.1095, 22.201 ], [ 93.1237, 22.1748 ], [ 93.1485, 22.1766 ], [ 93.1594, 22.1894 ], [ 93.1425, 22.2464 ], [ 93.1791, 22.2471 ], [ 93.1958, 22.2561 ], [ 93.1927, 22.3294 ], [ 93.186, 22.3504 ], [ 93.1854, 22.4256 ], [ 93.1601, 22.4516 ], [ 93.138, 22.4564 ], [ 93.1348, 22.4927 ], [ 93.1101, 22.5256 ], [ 93.1136, 22.5611 ], [ 93.1392, 22.5848 ], [ 93.1339, 22.6123 ], [ 93.1066, 22.6392 ], [ 93.0925, 22.706 ], [ 93.105, 22.7522 ], [ 93.096, 22.8025 ], [ 93.1163, 22.8415 ], [ 93.1187, 22.8638 ], [ 93.1331, 22.8941 ], [ 93.1306, 22.9076 ], [ 93.1487, 22.9251 ], [ 93.1351, 22.9712 ], [ 93.1396, 22.9928 ], [ 93.1216, 23.0033 ], [ 93.1265, 23.0451 ], [ 93.1587, 23.0455 ], [ 93.1827, 23.0596 ], [ 93.2087, 23.0474 ], [ 93.2155, 23.0272 ], [ 93.243, 23.0085 ], [ 93.292, 23.0073 ], [ 93.3265, 23.0417 ], [ 93.3449, 23.0924 ], [ 93.3606, 23.1177 ], [ 93.3855, 23.1368 ], [ 93.369, 23.1452 ], [ 93.3802, 23.1872 ], [ 93.3815, 23.2289 ], [ 93.3666, 23.2674 ], [ 93.3688, 23.3255 ], [ 93.3571, 23.3521 ], [ 93.3846, 23.3636 ], [ 93.4005, 23.3886 ], [ 93.3894, 23.4197 ], [ 93.3948, 23.4524 ], [ 93.3954, 23.5015 ], [ 93.4184, 23.5381 ], [ 93.4134, 23.5542 ], [ 93.4282, 23.595 ], [ 93.4169, 23.6413 ], [ 93.4358, 23.6774 ], [ 93.4089, 23.7103 ], [ 93.4087, 23.7286 ], [ 93.3923, 23.7555 ], [ 93.4036, 23.8065 ], [ 93.392, 23.8173 ], [ 93.3869, 23.8736 ], [ 93.3902, 23.929 ], [ 93.3646, 23.9329 ], [ 93.333, 23.9858 ], [ 93.3359, 24.0617 ], [ 93.3284, 24.0805 ], [ 93.3439, 24.1001 ], [ 93.4092, 24.0776 ], [ 93.4228, 24.061 ], [ 93.4352, 24.0196 ], [ 93.4549, 24.015 ], [ 93.4599, 23.9794 ], [ 93.4916, 23.9524 ], [ 93.5214, 23.9481 ], [ 93.5448, 23.961 ], [ 93.5538, 23.9771 ], [ 93.5892, 23.9623 ], [ 93.6094, 23.98 ], [ 93.6203, 24.0095 ], [ 93.6997, 24.0051 ], [ 93.7201, 23.9995 ], [ 93.7609, 24.0034 ], [ 93.7769, 23.9668 ], [ 93.8206, 23.9256 ], [ 93.8614, 23.9326 ], [ 93.9018, 23.9505 ], [ 93.9316, 23.9514 ], [ 93.9571, 23.9319 ], [ 94.004, 23.9212 ], [ 94.0152, 23.9263 ], [ 94.0428, 23.9102 ], [ 94.0524, 23.8868 ], [ 94.0977, 23.8858 ], [ 94.1181, 23.8403 ], [ 94.1422, 23.8348 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 5, "NAME": "Sagaing Region", "PCODE": "MMR005", "ISO": "MM-01" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.0666, 27.0927 ], [ 97.0502, 27.056 ], [ 97.0256, 27.0376 ], [ 96.9976, 27.0356 ], [ 96.9859, 27.0237 ], [ 96.9546, 27.0329 ], [ 96.9423, 27.0448 ], [ 96.9085, 27.0354 ], [ 96.8929, 27.0464 ], [ 96.8281, 27.0447 ], [ 96.7881, 27.0309 ], [ 96.741, 27.0392 ], [ 96.7193, 27.0015 ], [ 96.6966, 26.9929 ], [ 96.6467, 27.0079 ], [ 96.5859, 26.9982 ], [ 96.5696, 26.9824 ], [ 96.5257, 26.9963 ], [ 96.4972, 26.9963 ], [ 96.4797, 26.9865 ], [ 96.4246, 26.9841 ], [ 96.4054, 27.0067 ], [ 96.3803, 27.0057 ], [ 96.3509, 27.0193 ], [ 96.3303, 27.0194 ], [ 96.3037, 26.9885 ], [ 96.251, 26.9826 ], [ 96.242, 26.9545 ], [ 96.282, 26.9509 ], [ 96.3068, 26.9555 ], [ 96.3144, 26.9303 ], [ 96.2928, 26.926 ], [ 96.278, 26.9096 ], [ 96.2826, 26.8764 ], [ 96.2451, 26.8889 ], [ 96.2315, 26.8697 ], [ 96.2502, 26.8279 ], [ 96.2483, 26.8014 ], [ 96.2096, 26.7908 ], [ 96.1969, 26.7569 ], [ 96.16, 26.7494 ], [ 96.1034, 26.7256 ], [ 96.0915, 26.6842 ], [ 96.0949, 26.6645 ], [ 96.0826, 26.652 ], [ 96.1304, 26.6356 ], [ 96.1374, 26.5946 ], [ 96.1547, 26.5821 ], [ 96.161, 26.5481 ], [ 96.1832, 26.5245 ], [ 96.1655, 26.497 ], [ 96.1343, 26.4924 ], [ 96.1113, 26.4975 ], [ 96.0869, 26.4908 ], [ 96.0426, 26.4939 ], [ 96.0078, 26.4853 ], [ 96.004, 26.4615 ], [ 96.0159, 26.4484 ], [ 96.0022, 26.4249 ], [ 96.001, 26.3919 ], [ 96.0301, 26.3833 ], [ 96.0523, 26.3538 ], [ 96.0867, 26.3476 ], [ 96.1017, 26.3309 ], [ 96.1, 26.308 ], [ 96.0801, 26.248 ], [ 96.1188, 26.2265 ], [ 96.1348, 26.2075 ], [ 96.1345, 26.1888 ], [ 96.1206, 26.1697 ], [ 96.1561, 26.155 ], [ 96.1503, 26.1266 ], [ 96.1604, 26.1123 ], [ 96.1613, 26.0829 ], [ 96.1827, 26.0499 ], [ 96.1592, 26.006 ], [ 96.1238, 25.9984 ], [ 96.1122, 25.919 ], [ 96.0852, 25.8976 ], [ 96.1093, 25.8818 ], [ 96.1271, 25.8229 ], [ 96.1182, 25.7905 ], [ 96.1699, 25.7521 ], [ 96.2015, 25.7489 ], [ 96.2157, 25.7254 ], [ 96.2089, 25.6703 ], [ 96.1818, 25.6398 ], [ 96.1649, 25.6387 ], [ 96.1166, 25.6148 ], [ 96.0998, 25.6256 ], [ 96.0791, 25.6043 ], [ 96.0693, 25.5789 ], [ 96.0502, 25.5851 ], [ 96.0072, 25.614 ], [ 95.9706, 25.6302 ], [ 95.9579, 25.6118 ], [ 95.9647, 25.5011 ], [ 95.9604, 25.3353 ], [ 95.9745, 25.2905 ], [ 95.9939, 25.2736 ], [ 95.9901, 25.2524 ], [ 95.9951, 25.2159 ], [ 96.0199, 25.177 ], [ 96.0466, 25.1468 ], [ 96.0439, 25.1412 ], [ 96.0594, 25.1123 ], [ 96.0535, 25.0911 ], [ 96.076, 25.0876 ], [ 96.0793, 25.0509 ], [ 96.0712, 25.0314 ], [ 96.0705, 24.9982 ], [ 96.0483, 24.9634 ], [ 96.0313, 24.9496 ], [ 96.0079, 24.9539 ], [ 96.0128, 25.0051 ], [ 96.0376, 25.0161 ], [ 96.0472, 25.0619 ], [ 96.0186, 25.0834 ], [ 96.0026, 25.0722 ], [ 96.0063, 25.0207 ], [ 95.9613, 24.996 ], [ 95.9112, 24.9959 ], [ 95.876, 24.9645 ], [ 95.8337, 24.9624 ], [ 95.8185, 24.9426 ], [ 95.8466, 24.9199 ], [ 95.8655, 24.9156 ], [ 95.8641, 24.8957 ], [ 95.8802, 24.8827 ], [ 95.8693, 24.826 ], [ 95.8825, 24.8065 ], [ 95.8922, 24.7697 ], [ 95.9105, 24.7488 ], [ 95.9016, 24.7275 ], [ 95.912, 24.7056 ], [ 95.9465, 24.7091 ], [ 95.9678, 24.679 ], [ 96.0208, 24.6666 ], [ 96.0373, 24.6855 ], [ 96.0771, 24.679 ], [ 96.0878, 24.6521 ], [ 96.1075, 24.6262 ], [ 96.0945, 24.5946 ], [ 96.1152, 24.5698 ], [ 96.1934, 24.5179 ], [ 96.1849, 24.4798 ], [ 96.1999, 24.4798 ], [ 96.2307, 24.506 ], [ 96.2745, 24.522 ], [ 96.2999, 24.5067 ], [ 96.325, 24.5078 ], [ 96.3362, 24.5208 ], [ 96.3742, 24.5152 ], [ 96.4072, 24.5277 ], [ 96.4173, 24.546 ], [ 96.4358, 24.5419 ], [ 96.4486, 24.5202 ], [ 96.4778, 24.5152 ], [ 96.4986, 24.4856 ], [ 96.5254, 24.498 ], [ 96.5758, 24.4684 ], [ 96.5923, 24.4823 ], [ 96.6217, 24.4598 ], [ 96.63, 24.4577 ], [ 96.643, 24.4193 ], [ 96.6194, 24.4042 ], [ 96.5869, 24.3973 ], [ 96.5969, 24.3687 ], [ 96.5623, 24.3469 ], [ 96.5709, 24.3199 ], [ 96.6033, 24.318 ], [ 96.5961, 24.2708 ], [ 96.5697, 24.2492 ], [ 96.5763, 24.225 ], [ 96.5976, 24.2182 ], [ 96.6168, 24.1978 ], [ 96.6587, 24.1701 ], [ 96.6631, 24.1577 ], [ 96.6274, 24.1457 ], [ 96.5739, 24.1588 ], [ 96.5582, 24.1549 ], [ 96.5192, 24.1012 ], [ 96.5021, 24.1109 ], [ 96.4567, 24.1008 ], [ 96.4129, 24.057 ], [ 96.3901, 24.0279 ], [ 96.4092, 24.0059 ], [ 96.4297, 23.9963 ], [ 96.4687, 24.0168 ], [ 96.5049, 24.0072 ], [ 96.5174, 23.9697 ], [ 96.509, 23.9509 ], [ 96.5281, 23.9091 ], [ 96.5269, 23.8822 ], [ 96.5572, 23.8558 ], [ 96.5605, 23.8251 ], [ 96.5382, 23.8176 ], [ 96.5148, 23.7525 ], [ 96.4884, 23.7258 ], [ 96.4715, 23.726 ], [ 96.4377, 23.6951 ], [ 96.4322, 23.6716 ], [ 96.4373, 23.6345 ], [ 96.4179, 23.6243 ], [ 96.3926, 23.5696 ], [ 96.3711, 23.587 ], [ 96.3641, 23.6163 ], [ 96.3155, 23.6421 ], [ 96.2808, 23.6307 ], [ 96.2604, 23.6035 ], [ 96.2505, 23.5758 ], [ 96.2142, 23.5893 ], [ 96.1692, 23.5936 ], [ 96.1445, 23.569 ], [ 96.1372, 23.5905 ], [ 96.1422, 23.6191 ], [ 96.1213, 23.6377 ], [ 96.1342, 23.6524 ], [ 96.1365, 23.6801 ], [ 96.109, 23.682 ], [ 96.0793, 23.6541 ], [ 96.0916, 23.648 ], [ 96.0838, 23.6241 ], [ 96.0516, 23.6188 ], [ 96.0347, 23.6025 ], [ 96.0123, 23.5447 ], [ 96.0099, 23.5118 ], [ 95.9701, 23.5329 ], [ 95.9639, 23.5019 ], [ 95.9668, 23.4606 ], [ 95.9232, 23.436 ], [ 95.9121, 23.4128 ], [ 95.9041, 23.3703 ], [ 95.9301, 23.337 ], [ 95.9502, 23.3311 ], [ 95.9501, 23.3113 ], [ 95.9298, 23.2806 ], [ 95.9587, 23.2474 ], [ 95.9519, 23.2214 ], [ 95.9592, 23.1661 ], [ 95.9802, 23.1593 ], [ 95.9919, 23.1305 ], [ 95.9935, 23.1037 ], [ 95.9746, 23.0838 ], [ 95.9838, 23.0651 ], [ 95.9808, 23.0272 ], [ 95.9731, 23.0127 ], [ 95.9791, 22.9644 ], [ 95.9666, 22.9276 ], [ 95.9649, 22.8759 ], [ 95.9685, 22.752 ], [ 95.9534, 22.7366 ], [ 95.9327, 22.7355 ], [ 95.9043, 22.7225 ], [ 95.9103, 22.6899 ], [ 95.9047, 22.6731 ], [ 95.9373, 22.6384 ], [ 95.9446, 22.6038 ], [ 95.9734, 22.568 ], [ 95.9957, 22.5277 ], [ 95.9767, 22.5093 ], [ 95.9608, 22.4751 ], [ 95.9685, 22.4372 ], [ 95.9578, 22.4155 ], [ 95.9641, 22.379 ], [ 96.0101, 22.3183 ], [ 96.0098, 22.2964 ], [ 95.9858, 22.2981 ], [ 95.9843, 22.2774 ], [ 95.9887, 22.1733 ], [ 95.9977, 22.1612 ], [ 95.9941, 22.1108 ], [ 96.0164, 22.0718 ], [ 96.0225, 22.046 ], [ 96.0137, 22.0034 ], [ 96.0246, 21.9772 ], [ 96.0, 21.8817 ], [ 95.9915, 21.8696 ], [ 95.938, 21.8521 ], [ 95.9125, 21.8596 ], [ 95.8964, 21.8841 ], [ 95.8723, 21.9001 ], [ 95.8276, 21.9057 ], [ 95.7948, 21.9201 ], [ 95.7408, 21.918 ], [ 95.7151, 21.9294 ], [ 95.6831, 21.9207 ], [ 95.5878, 21.9216 ], [ 95.5679, 21.9119 ], [ 95.5237, 21.9068 ], [ 95.4947, 21.8868 ], [ 95.4768, 21.858 ], [ 95.4265, 21.8007 ], [ 95.403, 21.7906 ], [ 95.4215, 21.7626 ], [ 95.4106, 21.7382 ], [ 95.3885, 21.7272 ], [ 95.3702, 21.7049 ], [ 95.3653, 21.645 ], [ 95.3458, 21.608 ], [ 95.342, 21.576 ], [ 95.3301, 21.5861 ], [ 95.3196, 21.6295 ], [ 95.2981, 21.6536 ], [ 95.243, 21.6745 ], [ 95.2436, 21.7143 ], [ 95.2064, 21.7395 ], [ 95.201, 21.766 ], [ 95.1621, 21.8091 ], [ 95.1636, 21.8345 ], [ 95.1204, 21.8558 ], [ 95.0817, 21.8523 ], [ 95.0611, 21.8354 ], [ 95.0152, 21.8323 ], [ 94.9906, 21.8249 ], [ 94.9707, 21.8333 ], [ 94.9257, 21.8332 ], [ 94.9054, 21.8389 ], [ 94.8577, 21.8642 ], [ 94.8394, 21.8555 ], [ 94.7882, 21.8477 ], [ 94.7499, 21.8283 ], [ 94.7239, 21.8448 ], [ 94.6607, 21.8725 ], [ 94.5881, 21.8379 ], [ 94.5405, 21.8377 ], [ 94.5438, 21.7918 ], [ 94.4962, 21.7865 ], [ 94.4595, 21.8188 ], [ 94.4327, 21.824 ], [ 94.4086, 21.8387 ], [ 94.42, 21.9433 ], [ 94.4249, 21.9659 ], [ 94.4096, 21.9878 ], [ 94.4191, 22.0263 ], [ 94.4354, 22.0346 ], [ 94.4352, 22.0597 ], [ 94.4218, 22.0779 ], [ 94.425, 22.1082 ], [ 94.4167, 22.1366 ], [ 94.3814, 22.1172 ], [ 94.3605, 22.117 ], [ 94.3414, 22.1354 ], [ 94.2964, 22.1516 ], [ 94.2707, 22.1904 ], [ 94.2451, 22.3004 ], [ 94.2676, 22.3149 ], [ 94.2609, 22.3535 ], [ 94.2707, 22.3665 ], [ 94.2609, 22.3971 ], [ 94.2705, 22.4051 ], [ 94.281, 22.4403 ], [ 94.2759, 22.489 ], [ 94.2545, 22.5079 ], [ 94.2587, 22.5198 ], [ 94.2446, 22.5655 ], [ 94.214, 22.6071 ], [ 94.1944, 22.6617 ], [ 94.1728, 22.6889 ], [ 94.1165, 22.6985 ], [ 94.1197, 22.7349 ], [ 94.1076, 22.7628 ], [ 94.0574, 22.7309 ], [ 94.0079, 22.7371 ], [ 94.0081, 22.7715 ], [ 93.9873, 22.8304 ], [ 94.0126, 22.836 ], [ 94.0172, 22.8527 ], [ 94.0113, 22.9051 ], [ 93.9949, 22.9247 ], [ 93.9896, 22.9467 ], [ 94.0195, 22.9467 ], [ 94.0204, 22.9661 ], [ 94.0006, 22.9825 ], [ 94.0045, 23.0574 ], [ 93.9938, 23.086 ], [ 93.977, 23.0901 ], [ 93.977, 23.1252 ], [ 93.9462, 23.1799 ], [ 93.9632, 23.1861 ], [ 93.9546, 23.2203 ], [ 93.9802, 23.2344 ], [ 93.9995, 23.2546 ], [ 94.0105, 23.2905 ], [ 94.004, 23.3119 ], [ 94.0034, 23.3713 ], [ 94.024, 23.3771 ], [ 94.0254, 23.3798 ], [ 94.0366, 23.4321 ], [ 94.0272, 23.5249 ], [ 94.0161, 23.5414 ], [ 94.04, 23.5734 ], [ 94.0692, 23.5557 ], [ 94.0788, 23.5396 ], [ 94.111, 23.5433 ], [ 94.1181, 23.557 ], [ 94.1193, 23.6129 ], [ 94.1321, 23.6515 ], [ 94.1281, 23.6652 ], [ 94.1497, 23.6911 ], [ 94.1373, 23.7207 ], [ 94.153, 23.7391 ], [ 94.1373, 23.7742 ], [ 94.1336, 23.8183 ], [ 94.1422, 23.8348 ], [ 94.1561, 23.8479 ], [ 94.1697, 23.9151 ], [ 94.1883, 23.9308 ], [ 94.2013, 23.9811 ], [ 94.2381, 24.0349 ], [ 94.2551, 24.0809 ], [ 94.2523, 24.1249 ], [ 94.2607, 24.1641 ], [ 94.2774, 24.1717 ], [ 94.2871, 24.228 ], [ 94.3025, 24.2376 ], [ 94.3233, 24.276 ], [ 94.3235, 24.327 ], [ 94.3507, 24.3334 ], [ 94.38, 24.3778 ], [ 94.3628, 24.3925 ], [ 94.3971, 24.4087 ], [ 94.4099, 24.4373 ], [ 94.3992, 24.4523 ], [ 94.3942, 24.4832 ], [ 94.422, 24.4831 ], [ 94.4311, 24.4949 ], [ 94.4561, 24.5705 ], [ 94.5105, 24.5933 ], [ 94.5416, 24.6426 ], [ 94.5493, 24.6824 ], [ 94.5439, 24.705 ], [ 94.6086, 24.7152 ], [ 94.6162, 24.7438 ], [ 94.6295, 24.7597 ], [ 94.621, 24.7819 ], [ 94.6342, 24.836 ], [ 94.6512, 24.8635 ], [ 94.6875, 24.8922 ], [ 94.7046, 24.9297 ], [ 94.6973, 24.9618 ], [ 94.7037, 24.9826 ], [ 94.7249, 24.9984 ], [ 94.7428, 25.0337 ], [ 94.7452, 25.0811 ], [ 94.7421, 25.1248 ], [ 94.705, 25.1443 ], [ 94.6076, 25.1817 ], [ 94.5777, 25.2137 ], [ 94.5853, 25.2304 ], [ 94.5862, 25.2653 ], [ 94.608, 25.3163 ], [ 94.6347, 25.3593 ], [ 94.638, 25.397 ], [ 94.664, 25.4097 ], [ 94.6842, 25.4652 ], [ 94.7444, 25.4821 ], [ 94.7841, 25.4808 ], [ 94.8072, 25.495 ], [ 94.8265, 25.5234 ], [ 94.8263, 25.5414 ], [ 94.8471, 25.5619 ], [ 94.8811, 25.5633 ], [ 94.8821, 25.588 ], [ 94.9154, 25.6097 ], [ 94.9361, 25.6692 ], [ 94.9874, 25.7049 ], [ 94.9943, 25.7238 ], [ 95.0376, 25.7406 ], [ 95.0466, 25.7574 ], [ 95.0474, 25.8004 ], [ 95.0327, 25.8144 ], [ 95.0175, 25.8599 ], [ 95.0117, 25.8971 ], [ 95.051, 25.9365 ], [ 95.0901, 25.9517 ], [ 95.1589, 26.0264 ], [ 95.1661, 26.0524 ], [ 95.1853, 26.0741 ], [ 95.1648, 26.0915 ], [ 95.1483, 26.0883 ], [ 95.1193, 26.1004 ], [ 95.1252, 26.1318 ], [ 95.1182, 26.1606 ], [ 95.1233, 26.1918 ], [ 95.1426, 26.2119 ], [ 95.1139, 26.2345 ], [ 95.1259, 26.2521 ], [ 95.1219, 26.2728 ], [ 95.1245, 26.3557 ], [ 95.1301, 26.3817 ], [ 95.0965, 26.401 ], [ 95.1033, 26.4199 ], [ 95.0819, 26.449 ], [ 95.0751, 26.475 ], [ 95.1142, 26.5197 ], [ 95.1064, 26.5413 ], [ 95.1356, 26.557 ], [ 95.1529, 26.5835 ], [ 95.1472, 26.612 ], [ 95.1818, 26.6432 ], [ 95.1993, 26.6427 ], [ 95.2342, 26.6812 ], [ 95.2585, 26.6744 ], [ 95.2583, 26.6554 ], [ 95.3026, 26.6525 ], [ 95.3378, 26.6744 ], [ 95.3598, 26.6704 ], [ 95.372, 26.6825 ], [ 95.4327, 26.7013 ], [ 95.4364, 26.7186 ], [ 95.4619, 26.743 ], [ 95.4768, 26.7419 ], [ 95.5025, 26.7898 ], [ 95.5066, 26.808 ], [ 95.5421, 26.8341 ], [ 95.5677, 26.8163 ], [ 95.607, 26.8124 ], [ 95.6259, 26.8443 ], [ 95.6306, 26.8719 ], [ 95.6683, 26.9026 ], [ 95.7037, 26.8817 ], [ 95.7207, 26.8806 ], [ 95.7421, 26.8958 ], [ 95.7452, 26.9209 ], [ 95.7604, 26.9431 ], [ 95.7641, 26.9717 ], [ 95.779, 26.9785 ], [ 95.8002, 27.0135 ], [ 95.8321, 27.0079 ], [ 95.8746, 27.0128 ], [ 95.9329, 27.0477 ], [ 95.946, 27.0507 ], [ 95.9547, 27.0759 ], [ 96.0047, 27.1391 ], [ 96.0268, 27.1822 ], [ 96.0756, 27.2094 ], [ 96.0899, 27.2229 ], [ 96.1541, 27.247 ], [ 96.1861, 27.2497 ], [ 96.2283, 27.2774 ], [ 96.2702, 27.2715 ], [ 96.2768, 27.2842 ], [ 96.3082, 27.2929 ], [ 96.3418, 27.2848 ], [ 96.3503, 27.2936 ], [ 96.385, 27.2837 ], [ 96.4249, 27.3025 ], [ 96.4564, 27.3059 ], [ 96.5075, 27.2978 ], [ 96.5196, 27.2854 ], [ 96.5525, 27.3179 ], [ 96.5844, 27.3331 ], [ 96.6044, 27.3637 ], [ 96.6967, 27.3576 ], [ 96.7026, 27.372 ], [ 96.7537, 27.353 ], [ 96.7674, 27.3564 ], [ 96.7992, 27.3444 ], [ 96.8236, 27.3073 ], [ 96.8377, 27.2991 ], [ 96.8485, 27.2702 ], [ 96.8878, 27.2477 ], [ 96.8803, 27.2228 ], [ 96.8554, 27.2101 ], [ 96.8591, 27.1902 ], [ 96.8957, 27.1703 ], [ 96.9546, 27.1625 ], [ 97.0088, 27.139 ], [ 97.0666, 27.0927 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 6, "NAME": "Tanintharyi Region", "PCODE": "MMR006", "ISO": "MM-05" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.2625, 10.0624 ], [ 98.2789, 10.0452 ], [ 98.2928, 10.0173 ], [ 98.2599, 10.0144 ], [ 98.2632, 9.999 ], [ 98.2503, 9.9815 ], [ 98.25, 9.9502 ], [ 98.2269, 9.9396 ], [ 98.201, 9.9396 ], [ 98.1676, 9.9218 ], [ 98.164, 9.886 ], [ 98.1429, 9.8528 ], [ 98.1147, 9.8655 ], [ 98.129, 9.8846 ], [ 98.1172, 9.9031 ], [ 98.1275, 9.9473 ], [ 98.1474, 9.9557 ], [ 98.1655, 9.9831 ], [ 98.1735, 10.0171 ], [ 98.1894, 10.0339 ], [ 98.2179, 10.0273 ], [ 98.2261, 10.0498 ], [ 98.2625, 10.0624 ] ] ], [ [ [ 98.19, 10.1891 ], [ 98.2049, 10.1963 ], [ 98.2153, 10.1691 ], [ 98.2291, 10.1616 ], [ 98.2324, 10.1404 ], [ 98.1958, 10.1199 ], [ 98.1702, 10.1418 ], [ 98.1806, 10.1553 ], [ 98.19, 10.1891 ] ] ], [ [ [ 98.5009, 10.8827 ], [ 98.5132, 10.8885 ], [ 98.5631, 10.8552 ], [ 98.5505, 10.8307 ], [ 98.5581, 10.8116 ], [ 98.5357, 10.7826 ], [ 98.5058, 10.775 ], [ 98.4927, 10.7924 ], [ 98.5159, 10.8198 ], [ 98.5038, 10.8297 ], [ 98.5009, 10.8827 ] ] ], [ [ [ 97.9277, 10.9264 ], [ 97.9443, 10.9282 ], [ 97.9463, 10.9058 ], [ 97.9326, 10.8723 ], [ 97.9003, 10.8708 ], [ 97.8854, 10.8924 ], [ 97.9163, 10.9333 ], [ 97.9277, 10.9264 ] ] ], [ [ [ 98.1817, 10.9823 ], [ 98.2, 10.963 ], [ 98.2191, 10.957 ], [ 98.2295, 10.9267 ], [ 98.229, 10.9072 ], [ 98.2438, 10.8707 ], [ 98.2645, 10.8597 ], [ 98.2761, 10.8403 ], [ 98.2769, 10.7939 ], [ 98.2858, 10.7664 ], [ 98.2826, 10.7266 ], [ 98.2897, 10.7126 ], [ 98.2728, 10.6928 ], [ 98.237, 10.6951 ], [ 98.2421, 10.7117 ], [ 98.2375, 10.7427 ], [ 98.2572, 10.7608 ], [ 98.246, 10.7949 ], [ 98.2531, 10.8193 ], [ 98.234, 10.8389 ], [ 98.1909, 10.8973 ], [ 98.1767, 10.8915 ], [ 98.1654, 10.9241 ], [ 98.1473, 10.9181 ], [ 98.0933, 10.8735 ], [ 98.0829, 10.8956 ], [ 98.1043, 10.9227 ], [ 98.124, 10.9339 ], [ 98.1737, 10.9901 ], [ 98.1817, 10.9823 ] ] ], [ [ [ 98.5461, 11.0212 ], [ 98.5484, 10.9828 ], [ 98.5402, 10.9723 ], [ 98.5152, 10.9784 ], [ 98.5101, 10.9548 ], [ 98.4715, 10.9796 ], [ 98.4912, 11.0213 ], [ 98.511, 11.0257 ], [ 98.519, 11.0446 ], [ 98.5198, 11.0804 ], [ 98.5316, 11.0884 ], [ 98.5461, 11.0212 ] ] ], [ [ [ 98.2951, 11.8039 ], [ 98.2947, 11.7734 ], [ 98.3148, 11.7446 ], [ 98.3193, 11.7233 ], [ 98.2949, 11.7009 ], [ 98.2749, 11.5957 ], [ 98.2817, 11.574 ], [ 98.2745, 11.5581 ], [ 98.2699, 11.4804 ], [ 98.2526, 11.4744 ], [ 98.225, 11.4848 ], [ 98.2171, 11.4586 ], [ 98.2007, 11.4604 ], [ 98.1606, 11.4366 ], [ 98.1603, 11.4554 ], [ 98.1911, 11.4558 ], [ 98.1913, 11.484 ], [ 98.2031, 11.5113 ], [ 98.1897, 11.537 ], [ 98.1961, 11.5664 ], [ 98.2219, 11.6278 ], [ 98.2435, 11.6339 ], [ 98.2279, 11.6584 ], [ 98.2326, 11.6867 ], [ 98.2678, 11.7347 ], [ 98.2728, 11.7635 ], [ 98.2585, 11.7923 ], [ 98.2737, 11.806 ], [ 98.2951, 11.8039 ] ] ], [ [ [ 98.5318, 11.794 ], [ 98.5471, 11.7626 ], [ 98.546, 11.7077 ], [ 98.5345, 11.6389 ], [ 98.5456, 11.6139 ], [ 98.5213, 11.5863 ], [ 98.5216, 11.5388 ], [ 98.4967, 11.5434 ], [ 98.4844, 11.5653 ], [ 98.4597, 11.5639 ], [ 98.4525, 11.5745 ], [ 98.4249, 11.5661 ], [ 98.4096, 11.609 ], [ 98.4238, 11.6223 ], [ 98.4091, 11.6421 ], [ 98.3757, 11.6542 ], [ 98.3693, 11.6816 ], [ 98.3823, 11.7137 ], [ 98.3656, 11.7367 ], [ 98.3821, 11.7649 ], [ 98.382, 11.7892 ], [ 98.4012, 11.791 ], [ 98.4493, 11.7822 ], [ 98.4616, 11.7961 ], [ 98.487, 11.7948 ], [ 98.5155, 11.8102 ], [ 98.5318, 11.794 ] ] ], [ [ [ 98.007, 11.8593 ], [ 98.0051, 11.8327 ], [ 98.0186, 11.8043 ], [ 98.0461, 11.7973 ], [ 98.0521, 11.769 ], [ 98.0532, 11.726 ], [ 98.0775, 11.7239 ], [ 98.0728, 11.6846 ], [ 98.0518, 11.6457 ], [ 98.0431, 11.6766 ], [ 98.012, 11.6922 ], [ 98.0205, 11.7121 ], [ 98.0118, 11.741 ], [ 98.0297, 11.7541 ], [ 98.013, 11.7844 ], [ 98.0125, 11.8079 ], [ 97.9908, 11.8278 ], [ 98.007, 11.8593 ] ] ], [ [ [ 98.4503, 12.094 ], [ 98.4636, 12.0693 ], [ 98.4923, 12.0443 ], [ 98.5011, 12.0128 ], [ 98.5242, 11.9943 ], [ 98.5522, 11.9965 ], [ 98.6223, 11.9583 ], [ 98.6717, 11.9468 ], [ 98.6574, 11.9208 ], [ 98.6255, 11.9207 ], [ 98.5952, 11.9117 ], [ 98.5475, 11.9155 ], [ 98.5076, 11.8783 ], [ 98.4787, 11.8737 ], [ 98.4606, 11.8902 ], [ 98.4637, 11.9075 ], [ 98.4523, 11.9258 ], [ 98.4556, 11.9618 ], [ 98.4676, 11.9712 ], [ 98.4635, 11.9966 ], [ 98.4419, 12.0056 ], [ 98.4322, 12.0365 ], [ 98.4398, 12.0516 ], [ 98.4295, 12.0879 ], [ 98.4503, 12.094 ] ] ], [ [ [ 98.0985, 12.294 ], [ 98.1348, 12.2862 ], [ 98.1224, 12.206 ], [ 98.1443, 12.184 ], [ 98.1343, 12.1744 ], [ 98.0816, 12.1626 ], [ 98.0429, 12.2207 ], [ 98.0587, 12.258 ], [ 98.0641, 12.285 ], [ 98.0812, 12.3014 ], [ 98.0985, 12.294 ] ] ], [ [ [ 98.0952, 12.4354 ], [ 98.0981, 12.4149 ], [ 98.1156, 12.4019 ], [ 98.1052, 12.372 ], [ 98.0698, 12.3486 ], [ 98.0484, 12.3243 ], [ 97.9951, 12.2924 ], [ 97.9678, 12.3231 ], [ 97.9433, 12.326 ], [ 97.9355, 12.341 ], [ 97.9517, 12.3845 ], [ 97.9699, 12.3953 ], [ 97.985, 12.3896 ], [ 98.0128, 12.3615 ], [ 98.0362, 12.3544 ], [ 98.0447, 12.3795 ], [ 98.0669, 12.3971 ], [ 98.0952, 12.4354 ] ] ], [ [ [ 98.4994, 12.517 ], [ 98.5182, 12.4984 ], [ 98.51, 12.4775 ], [ 98.5099, 12.45 ], [ 98.4987, 12.4337 ], [ 98.5139, 12.4218 ], [ 98.4894, 12.3883 ], [ 98.4648, 12.4142 ], [ 98.4782, 12.4676 ], [ 98.4769, 12.4942 ], [ 98.4994, 12.517 ] ] ], [ [ [ 98.2555, 12.5646 ], [ 98.2729, 12.5321 ], [ 98.2913, 12.5101 ], [ 98.267, 12.49 ], [ 98.2351, 12.4906 ], [ 98.2206, 12.5161 ], [ 98.2282, 12.5444 ], [ 98.2555, 12.5646 ] ] ], [ [ [ 98.319, 12.6722 ], [ 98.3426, 12.6618 ], [ 98.3569, 12.67 ], [ 98.3791, 12.6628 ], [ 98.4086, 12.6273 ], [ 98.3921, 12.6128 ], [ 98.3903, 12.5788 ], [ 98.3992, 12.5616 ], [ 98.4352, 12.5501 ], [ 98.4431, 12.5675 ], [ 98.4396, 12.6068 ], [ 98.4558, 12.6092 ], [ 98.4663, 12.5859 ], [ 98.4811, 12.5747 ], [ 98.4661, 12.5542 ], [ 98.4636, 12.4665 ], [ 98.4573, 12.4487 ], [ 98.4331, 12.4356 ], [ 98.4268, 12.4122 ], [ 98.3996, 12.3676 ], [ 98.3804, 12.3509 ], [ 98.363, 12.3212 ], [ 98.3322, 12.3133 ], [ 98.306, 12.3303 ], [ 98.3089, 12.3738 ], [ 98.331, 12.4384 ], [ 98.3333, 12.4557 ], [ 98.3166, 12.482 ], [ 98.3263, 12.516 ], [ 98.3128, 12.5327 ], [ 98.2989, 12.5852 ], [ 98.2961, 12.6445 ], [ 98.3065, 12.6783 ], [ 98.319, 12.6722 ] ] ], [ [ [ 98.2565, 13.2163 ], [ 98.2666, 13.1911 ], [ 98.288, 13.1143 ], [ 98.3334, 13.0774 ], [ 98.3044, 13.0527 ], [ 98.2855, 13.0475 ], [ 98.2936, 13.0165 ], [ 98.2821, 13.0108 ], [ 98.2524, 13.0773 ], [ 98.2475, 13.1246 ], [ 98.2357, 13.1474 ], [ 98.2453, 13.1737 ], [ 98.2358, 13.215 ], [ 98.2565, 13.2163 ] ] ], [ [ [ 98.2082, 14.9819 ], [ 98.2337, 14.9672 ], [ 98.2515, 14.9167 ], [ 98.2311, 14.8892 ], [ 98.2574, 14.8633 ], [ 98.2551, 14.8129 ], [ 98.2904, 14.7736 ], [ 98.3061, 14.7326 ], [ 98.3274, 14.7066 ], [ 98.3619, 14.6895 ], [ 98.3804, 14.6529 ], [ 98.4358, 14.6135 ], [ 98.4601, 14.5725 ], [ 98.462, 14.5309 ], [ 98.4944, 14.5352 ], [ 98.4985, 14.5086 ], [ 98.5193, 14.4743 ], [ 98.5254, 14.4534 ], [ 98.5491, 14.4328 ], [ 98.5569, 14.402 ], [ 98.5806, 14.3684 ], [ 98.6049, 14.3187 ], [ 98.6294, 14.3166 ], [ 98.6395, 14.3038 ], [ 98.6848, 14.2733 ], [ 98.7145, 14.2765 ], [ 98.7313, 14.2567 ], [ 98.745, 14.2271 ], [ 98.7801, 14.1992 ], [ 98.8155, 14.178 ], [ 98.8318, 14.1789 ], [ 98.8426, 14.1618 ], [ 98.8692, 14.1472 ], [ 98.8797, 14.1246 ], [ 98.9003, 14.1068 ], [ 98.92, 14.1102 ], [ 98.9672, 14.0894 ], [ 98.9698, 14.0499 ], [ 98.9961, 14.0231 ], [ 99.0077, 13.9997 ], [ 99.0211, 13.9454 ], [ 99.045, 13.9408 ], [ 99.0613, 13.927 ], [ 99.079, 13.8954 ], [ 99.1093, 13.8924 ], [ 99.1117, 13.8664 ], [ 99.1005, 13.8372 ], [ 99.1154, 13.8302 ], [ 99.1226, 13.8014 ], [ 99.1213, 13.7721 ], [ 99.1388, 13.7611 ], [ 99.1682, 13.7284 ], [ 99.1657, 13.6812 ], [ 99.1726, 13.6284 ], [ 99.1661, 13.6132 ], [ 99.179, 13.5835 ], [ 99.1659, 13.5734 ], [ 99.193, 13.5407 ], [ 99.1851, 13.508 ], [ 99.2077, 13.4685 ], [ 99.1973, 13.4492 ], [ 99.209, 13.4101 ], [ 99.1994, 13.371 ], [ 99.207, 13.3411 ], [ 99.1904, 13.3186 ], [ 99.1878, 13.2911 ], [ 99.2048, 13.2698 ], [ 99.1962, 13.259 ], [ 99.2074, 13.2339 ], [ 99.2093, 13.2007 ], [ 99.1939, 13.188 ], [ 99.1585, 13.2076 ], [ 99.1314, 13.2016 ], [ 99.1179, 13.1752 ], [ 99.1347, 13.1629 ], [ 99.1372, 13.1274 ], [ 99.1199, 13.0954 ], [ 99.0998, 13.0724 ], [ 99.1208, 13.0434 ], [ 99.1674, 13.0176 ], [ 99.1962, 12.9583 ], [ 99.1623, 12.9274 ], [ 99.182, 12.9137 ], [ 99.1852, 12.8604 ], [ 99.2116, 12.8257 ], [ 99.2311, 12.8125 ], [ 99.2345, 12.7392 ], [ 99.2468, 12.7194 ], [ 99.265, 12.7253 ], [ 99.2908, 12.7154 ], [ 99.2953, 12.6784 ], [ 99.3104, 12.6667 ], [ 99.3328, 12.6676 ], [ 99.3672, 12.625 ], [ 99.3802, 12.6159 ], [ 99.4143, 12.618 ], [ 99.4354, 12.5646 ], [ 99.4252, 12.5404 ], [ 99.4204, 12.5034 ], [ 99.4028, 12.4615 ], [ 99.4469, 12.4041 ], [ 99.4345, 12.3623 ], [ 99.4659, 12.2832 ], [ 99.4843, 12.2769 ], [ 99.4825, 12.251 ], [ 99.4723, 12.2392 ], [ 99.4998, 12.1916 ], [ 99.4812, 12.1626 ], [ 99.484, 12.1316 ], [ 99.5381, 12.1583 ], [ 99.5648, 12.1413 ], [ 99.5568, 12.0936 ], [ 99.5367, 12.0674 ], [ 99.5425, 12.0308 ], [ 99.5371, 12.0162 ], [ 99.5802, 12.004 ], [ 99.5937, 11.9887 ], [ 99.5934, 11.95 ], [ 99.58, 11.9415 ], [ 99.5874, 11.9165 ], [ 99.5802, 11.9034 ], [ 99.5835, 11.8695 ], [ 99.5992, 11.8756 ], [ 99.6271, 11.8486 ], [ 99.6276, 11.8204 ], [ 99.6521, 11.8113 ], [ 99.6427, 11.778 ], [ 99.6393, 11.7327 ], [ 99.5984, 11.7021 ], [ 99.5829, 11.6764 ], [ 99.5868, 11.6596 ], [ 99.5607, 11.6233 ], [ 99.5329, 11.6191 ], [ 99.5162, 11.6354 ], [ 99.4751, 11.6237 ], [ 99.4583, 11.5813 ], [ 99.4749, 11.5375 ], [ 99.4468, 11.4931 ], [ 99.3977, 11.4638 ], [ 99.4026, 11.3888 ], [ 99.364, 11.3684 ], [ 99.3356, 11.3338 ], [ 99.3123, 11.3164 ], [ 99.3087, 11.3016 ], [ 99.3245, 11.2843 ], [ 99.2994, 11.2499 ], [ 99.2694, 11.2246 ], [ 99.2537, 11.1664 ], [ 99.2254, 11.1413 ], [ 99.2295, 11.1144 ], [ 99.1993, 11.0892 ], [ 99.1775, 11.0803 ], [ 99.1799, 11.0603 ], [ 99.1675, 11.0425 ], [ 99.1305, 11.0301 ], [ 99.1025, 11.0105 ], [ 99.0989, 10.9805 ], [ 99.0828, 10.9531 ], [ 99.0209, 10.9674 ], [ 99.0033, 10.9348 ], [ 99.0007, 10.8915 ], [ 99.0122, 10.8578 ], [ 98.9641, 10.817 ], [ 98.9201, 10.8128 ], [ 98.8852, 10.7838 ], [ 98.8782, 10.7868 ], [ 98.8412, 10.7514 ], [ 98.7912, 10.6815 ], [ 98.7812, 10.6772 ], [ 98.7854, 10.6479 ], [ 98.7745, 10.6154 ], [ 98.8006, 10.6045 ], [ 98.8102, 10.5818 ], [ 98.8048, 10.5631 ], [ 98.8168, 10.5436 ], [ 98.8192, 10.5011 ], [ 98.801, 10.4812 ], [ 98.8088, 10.4672 ], [ 98.8002, 10.4468 ], [ 98.7851, 10.4436 ], [ 98.7687, 10.4039 ], [ 98.7529, 10.3899 ], [ 98.7141, 10.2679 ], [ 98.6941, 10.211 ], [ 98.6492, 10.1794 ], [ 98.6389, 10.1376 ], [ 98.6199, 10.1203 ], [ 98.6073, 10.072 ], [ 98.5885, 10.0443 ], [ 98.5643, 9.9952 ], [ 98.5467, 9.9765 ], [ 98.5288, 10.0093 ], [ 98.5168, 10.0562 ], [ 98.5248, 10.0777 ], [ 98.5124, 10.122 ], [ 98.5148, 10.1673 ], [ 98.489, 10.1848 ], [ 98.4807, 10.2013 ], [ 98.5159, 10.2416 ], [ 98.519, 10.3037 ], [ 98.5368, 10.3568 ], [ 98.5212, 10.3881 ], [ 98.5039, 10.4078 ], [ 98.5048, 10.431 ], [ 98.4916, 10.4514 ], [ 98.4849, 10.5098 ], [ 98.4981, 10.526 ], [ 98.4794, 10.5569 ], [ 98.4706, 10.5897 ], [ 98.4803, 10.6139 ], [ 98.4543, 10.6213 ], [ 98.457, 10.6456 ], [ 98.4492, 10.6879 ], [ 98.4625, 10.6925 ], [ 98.474, 10.7343 ], [ 98.5345, 10.7294 ], [ 98.5387, 10.7493 ], [ 98.5652, 10.7501 ], [ 98.5817, 10.774 ], [ 98.5981, 10.8242 ], [ 98.6198, 10.8251 ], [ 98.6368, 10.8467 ], [ 98.6284, 10.8683 ], [ 98.6063, 10.8687 ], [ 98.5954, 10.8563 ], [ 98.5766, 10.8763 ], [ 98.6155, 10.8958 ], [ 98.628, 10.9198 ], [ 98.6671, 10.9146 ], [ 98.7132, 10.9416 ], [ 98.7158, 10.9898 ], [ 98.6801, 11.0016 ], [ 98.6905, 11.0339 ], [ 98.7098, 11.0646 ], [ 98.6982, 11.0931 ], [ 98.6731, 11.1003 ], [ 98.658, 11.126 ], [ 98.7, 11.1392 ], [ 98.739, 11.1875 ], [ 98.7409, 11.2302 ], [ 98.7499, 11.2415 ], [ 98.7544, 11.276 ], [ 98.7234, 11.3186 ], [ 98.7156, 11.3893 ], [ 98.6944, 11.4106 ], [ 98.7194, 11.4592 ], [ 98.7696, 11.4498 ], [ 98.7521, 11.494 ], [ 98.755, 11.5277 ], [ 98.729, 11.5256 ], [ 98.7184, 11.5376 ], [ 98.7177, 11.5711 ], [ 98.729, 11.5762 ], [ 98.7387, 11.6431 ], [ 98.7387, 11.6747 ], [ 98.7933, 11.6827 ], [ 98.8382, 11.6824 ], [ 98.8492, 11.7056 ], [ 98.8727, 11.7027 ], [ 98.8938, 11.6697 ], [ 98.9001, 11.7029 ], [ 98.877, 11.7076 ], [ 98.85, 11.7227 ], [ 98.8115, 11.7339 ], [ 98.7895, 11.731 ], [ 98.7812, 11.7564 ], [ 98.8084, 11.7852 ], [ 98.8192, 11.8167 ], [ 98.7767, 11.7895 ], [ 98.7533, 11.7627 ], [ 98.7367, 11.7559 ], [ 98.7013, 11.7234 ], [ 98.7116, 11.7086 ], [ 98.6883, 11.6767 ], [ 98.6618, 11.6856 ], [ 98.6042, 11.7196 ], [ 98.6114, 11.7344 ], [ 98.59, 11.7589 ], [ 98.6168, 11.7881 ], [ 98.613, 11.8124 ], [ 98.6296, 11.8452 ], [ 98.6494, 11.8644 ], [ 98.6117, 11.8757 ], [ 98.5512, 11.871 ], [ 98.5398, 11.8856 ], [ 98.5557, 11.9078 ], [ 98.5927, 11.9034 ], [ 98.6685, 11.9214 ], [ 98.6674, 11.9385 ], [ 98.6881, 11.9426 ], [ 98.6921, 11.9631 ], [ 98.7122, 11.9684 ], [ 98.7015, 11.9964 ], [ 98.7347, 12.0044 ], [ 98.6856, 12.0267 ], [ 98.7102, 12.059 ], [ 98.6995, 12.0643 ], [ 98.6711, 12.0441 ], [ 98.6375, 12.0701 ], [ 98.6184, 12.1041 ], [ 98.619, 12.137 ], [ 98.636, 12.1504 ], [ 98.6701, 12.1605 ], [ 98.6753, 12.1817 ], [ 98.7053, 12.204 ], [ 98.7078, 12.2188 ], [ 98.6894, 12.2418 ], [ 98.6533, 12.2432 ], [ 98.6283, 12.2287 ], [ 98.6163, 12.1994 ], [ 98.5989, 12.1939 ], [ 98.5721, 12.2053 ], [ 98.5562, 12.2 ], [ 98.54, 12.2175 ], [ 98.5262, 12.2616 ], [ 98.5443, 12.2744 ], [ 98.5632, 12.3005 ], [ 98.5948, 12.2983 ], [ 98.6369, 12.3058 ], [ 98.6381, 12.3191 ], [ 98.5555, 12.3297 ], [ 98.5373, 12.3473 ], [ 98.5477, 12.393 ], [ 98.5586, 12.4164 ], [ 98.5833, 12.4028 ], [ 98.6018, 12.4034 ], [ 98.6138, 12.3895 ], [ 98.6367, 12.3857 ], [ 98.6928, 12.3467 ], [ 98.7067, 12.3586 ], [ 98.625, 12.3916 ], [ 98.622, 12.4056 ], [ 98.5942, 12.4303 ], [ 98.6018, 12.4815 ], [ 98.6482, 12.5039 ], [ 98.6958, 12.5112 ], [ 98.6766, 12.5278 ], [ 98.6312, 12.5362 ], [ 98.6167, 12.5611 ], [ 98.6391, 12.592 ], [ 98.6513, 12.6339 ], [ 98.6493, 12.657 ], [ 98.6793, 12.7019 ], [ 98.6739, 12.7225 ], [ 98.6479, 12.729 ], [ 98.6416, 12.7409 ], [ 98.6771, 12.7526 ], [ 98.6959, 12.7932 ], [ 98.6621, 12.7796 ], [ 98.6382, 12.8243 ], [ 98.636, 12.858 ], [ 98.6242, 12.8999 ], [ 98.5904, 12.931 ], [ 98.5966, 12.9534 ], [ 98.5993, 13.0053 ], [ 98.5826, 13.028 ], [ 98.5958, 13.0437 ], [ 98.5855, 13.0653 ], [ 98.59, 13.0862 ], [ 98.5699, 13.1302 ], [ 98.5814, 13.1683 ], [ 98.563, 13.2031 ], [ 98.5434, 13.2023 ], [ 98.53, 13.2324 ], [ 98.4955, 13.2461 ], [ 98.4874, 13.2606 ], [ 98.497, 13.2931 ], [ 98.4695, 13.2998 ], [ 98.4634, 13.3416 ], [ 98.4649, 13.3826 ], [ 98.4483, 13.3851 ], [ 98.44, 13.4176 ], [ 98.4144, 13.4425 ], [ 98.411, 13.4614 ], [ 98.4246, 13.4721 ], [ 98.3932, 13.5274 ], [ 98.3669, 13.5606 ], [ 98.3741, 13.5855 ], [ 98.3414, 13.6291 ], [ 98.3074, 13.6511 ], [ 98.281, 13.6761 ], [ 98.2774, 13.7087 ], [ 98.2449, 13.7069 ], [ 98.2316, 13.738 ], [ 98.2416, 13.7619 ], [ 98.246, 13.8062 ], [ 98.2387, 13.8852 ], [ 98.2428, 13.9078 ], [ 98.2319, 13.9253 ], [ 98.2286, 13.9712 ], [ 98.2048, 14.0021 ], [ 98.201, 13.9633 ], [ 98.2153, 13.9136 ], [ 98.2147, 13.8858 ], [ 98.181, 13.8197 ], [ 98.1705, 13.7637 ], [ 98.1877, 13.6843 ], [ 98.186, 13.6544 ], [ 98.1606, 13.6186 ], [ 98.1551, 13.5817 ], [ 98.1589, 13.5548 ], [ 98.1304, 13.5645 ], [ 98.125, 13.5894 ], [ 98.1398, 13.6113 ], [ 98.1529, 13.6501 ], [ 98.1426, 13.6783 ], [ 98.1068, 13.6978 ], [ 98.0967, 13.6963 ], [ 98.0892, 13.7353 ], [ 98.0677, 13.76 ], [ 98.0771, 13.7759 ], [ 98.0698, 13.7939 ], [ 98.0887, 13.8126 ], [ 98.0879, 13.8528 ], [ 98.0995, 13.8907 ], [ 98.0746, 13.9165 ], [ 98.0662, 13.9757 ], [ 98.0683, 13.9974 ], [ 98.0553, 14.0232 ], [ 98.072, 14.0455 ], [ 98.0746, 14.076 ], [ 98.0988, 14.1105 ], [ 98.0763, 14.1762 ], [ 98.0557, 14.2138 ], [ 97.9958, 14.2969 ], [ 97.9958, 14.3153 ], [ 97.9679, 14.3619 ], [ 97.9694, 14.4194 ], [ 97.9876, 14.4534 ], [ 97.9573, 14.4462 ], [ 97.9544, 14.4956 ], [ 97.9072, 14.5682 ], [ 97.9024, 14.6098 ], [ 97.8913, 14.6381 ], [ 97.8743, 14.66 ], [ 97.8979, 14.7152 ], [ 97.9351, 14.7251 ], [ 97.9518, 14.7053 ], [ 97.9638, 14.7218 ], [ 97.9488, 14.7369 ], [ 97.8997, 14.7375 ], [ 97.8652, 14.7055 ], [ 97.8379, 14.714 ], [ 97.8166, 14.7755 ], [ 97.8201, 14.7877 ], [ 97.7933, 14.8806 ], [ 97.8388, 14.8854 ], [ 97.8269, 14.9049 ], [ 97.835, 14.9282 ], [ 97.8676, 14.9367 ], [ 97.8635, 14.9892 ], [ 97.873, 15.0324 ], [ 97.8732, 15.0338 ], [ 97.8836, 15.082 ], [ 97.9482, 15.0627 ], [ 97.9469, 15.0743 ], [ 97.9593, 15.0845 ], [ 98.0044, 15.0951 ], [ 98.0177, 15.1049 ], [ 98.0395, 15.0825 ], [ 98.0489, 15.0405 ], [ 98.0787, 15.0071 ], [ 98.0995, 14.9915 ], [ 98.121, 14.9953 ], [ 98.169, 14.9848 ], [ 98.1816, 14.9723 ], [ 98.2082, 14.9819 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 7, "NAME": "Bago Region", "PCODE": "MMR007", "ISO": "MM-02" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.3916, 19.4739 ], [ 96.4016, 19.4593 ], [ 96.4347, 19.4376 ], [ 96.4099, 19.4061 ], [ 96.4275, 19.3796 ], [ 96.4459, 19.3735 ], [ 96.4611, 19.3531 ], [ 96.4566, 19.3118 ], [ 96.4519, 19.3028 ], [ 96.4682, 19.2961 ], [ 96.4966, 19.2069 ], [ 96.5439, 19.1815 ], [ 96.5306, 19.1574 ], [ 96.4918, 19.1458 ], [ 96.5132, 19.133 ], [ 96.5103, 19.0901 ], [ 96.5422, 19.058 ], [ 96.5722, 19.0379 ], [ 96.5704, 19.0176 ], [ 96.5841, 18.9372 ], [ 96.6358, 18.9498 ], [ 96.6687, 18.933 ], [ 96.6498, 18.9058 ], [ 96.6122, 18.9118 ], [ 96.595, 18.8696 ], [ 96.6106, 18.8407 ], [ 96.629, 18.8309 ], [ 96.6251, 18.811 ], [ 96.6356, 18.7919 ], [ 96.5731, 18.7848 ], [ 96.5844, 18.736 ], [ 96.6033, 18.7094 ], [ 96.6268, 18.6945 ], [ 96.6496, 18.6469 ], [ 96.6648, 18.6473 ], [ 96.6698, 18.6216 ], [ 96.6946, 18.5986 ], [ 96.7239, 18.6295 ], [ 96.7469, 18.6277 ], [ 96.7806, 18.6015 ], [ 96.8153, 18.599 ], [ 96.8445, 18.6148 ], [ 96.8619, 18.6358 ], [ 96.885, 18.6345 ], [ 96.9158, 18.6481 ], [ 96.937, 18.6499 ], [ 96.9405, 18.6311 ], [ 96.9765, 18.5845 ], [ 96.9665, 18.5579 ], [ 96.9829, 18.552 ], [ 96.9755, 18.4731 ], [ 96.9604, 18.4307 ], [ 96.9818, 18.4062 ], [ 96.9897, 18.3764 ], [ 97.0082, 18.3698 ], [ 97.033, 18.3743 ], [ 97.0466, 18.3453 ], [ 97.0482, 18.3064 ], [ 97.0553, 18.2924 ], [ 97.0768, 18.2913 ], [ 97.0848, 18.3209 ], [ 97.1012, 18.3317 ], [ 97.1179, 18.3091 ], [ 97.1401, 18.2503 ], [ 97.1245, 18.21 ], [ 97.161, 18.1763 ], [ 97.1935, 18.1556 ], [ 97.1957, 18.1329 ], [ 97.1814, 18.1207 ], [ 97.1728, 18.0739 ], [ 97.1416, 18.0274 ], [ 97.1403, 18.0105 ], [ 97.1176, 17.9897 ], [ 97.1162, 17.9471 ], [ 97.1225, 17.9313 ], [ 97.1629, 17.8739 ], [ 97.1646, 17.8465 ], [ 97.1848, 17.8326 ], [ 97.1948, 17.8062 ], [ 97.1928, 17.7867 ], [ 97.1662, 17.7568 ], [ 97.1558, 17.7249 ], [ 97.1785, 17.6783 ], [ 97.171, 17.6655 ], [ 97.205, 17.6263 ], [ 97.1972, 17.5574 ], [ 97.2189, 17.5432 ], [ 97.2102, 17.5318 ], [ 97.1723, 17.5114 ], [ 97.1424, 17.5109 ], [ 97.1284, 17.4882 ], [ 97.0994, 17.4824 ], [ 97.0912, 17.5201 ], [ 97.0967, 17.5369 ], [ 97.0706, 17.5447 ], [ 97.0502, 17.5647 ], [ 97.0192, 17.5698 ], [ 96.9921, 17.6116 ], [ 96.9698, 17.6068 ], [ 96.9484, 17.6243 ], [ 96.9095, 17.6085 ], [ 96.904, 17.6213 ], [ 96.8752, 17.599 ], [ 96.8775, 17.5649 ], [ 96.8683, 17.545 ], [ 96.8789, 17.4941 ], [ 96.874, 17.4362 ], [ 96.8881, 17.4132 ], [ 96.8964, 17.3789 ], [ 96.8804, 17.3399 ], [ 96.8713, 17.3279 ], [ 96.8791, 17.3022 ], [ 96.9332, 17.2824 ], [ 96.9185, 17.2493 ], [ 96.8925, 17.2135 ], [ 96.898, 17.191 ], [ 96.924, 17.1658 ], [ 96.9642, 17.1437 ], [ 96.9567, 17.1276 ], [ 96.9284, 17.1284 ], [ 96.9228, 17.1067 ], [ 96.9236, 17.059 ], [ 96.9116, 17.0561 ], [ 96.9117, 17.0183 ], [ 96.8933, 16.9885 ], [ 96.8786, 16.9458 ], [ 96.8734, 16.9116 ], [ 96.8549, 16.8968 ], [ 96.8342, 16.8958 ], [ 96.8358, 16.8759 ], [ 96.8524, 16.8341 ], [ 96.8375, 16.8217 ], [ 96.7886, 16.8618 ], [ 96.7789, 16.9078 ], [ 96.7564, 16.9399 ], [ 96.7378, 16.9286 ], [ 96.7221, 16.9389 ], [ 96.7176, 16.9646 ], [ 96.6908, 16.9711 ], [ 96.6589, 16.9965 ], [ 96.6383, 16.9951 ], [ 96.5968, 16.9807 ], [ 96.5633, 16.9823 ], [ 96.5169, 16.9941 ], [ 96.4891, 16.9795 ], [ 96.4774, 16.9646 ], [ 96.4064, 16.98 ], [ 96.4057, 16.9962 ], [ 96.3797, 16.999 ], [ 96.3809, 17.0189 ], [ 96.3985, 17.0431 ], [ 96.4037, 17.0729 ], [ 96.3906, 17.1167 ], [ 96.3659, 17.1495 ], [ 96.3335, 17.1686 ], [ 96.3189, 17.1843 ], [ 96.3117, 17.1927 ], [ 96.2948, 17.2243 ], [ 96.3161, 17.2347 ], [ 96.3032, 17.2921 ], [ 96.3108, 17.3148 ], [ 96.2926, 17.3832 ], [ 96.2839, 17.4007 ], [ 96.2781, 17.4473 ], [ 96.2604, 17.4699 ], [ 96.2037, 17.4867 ], [ 96.2047, 17.5204 ], [ 96.1887, 17.5333 ], [ 96.149, 17.6134 ], [ 96.1082, 17.6645 ], [ 96.081, 17.7064 ], [ 96.0964, 17.7185 ], [ 96.0985, 17.7415 ], [ 96.0798, 17.786 ], [ 96.0353, 17.7841 ], [ 95.9767, 17.6863 ], [ 95.9478, 17.6669 ], [ 95.9406, 17.6386 ], [ 95.9063, 17.6327 ], [ 95.8963, 17.6066 ], [ 95.8923, 17.5737 ], [ 95.8477, 17.5708 ], [ 95.8149, 17.5442 ], [ 95.8003, 17.5124 ], [ 95.7783, 17.5018 ], [ 95.7852, 17.4719 ], [ 95.7647, 17.4654 ], [ 95.7365, 17.4776 ], [ 95.7361, 17.4781 ], [ 95.733, 17.4824 ], [ 95.7169, 17.52 ], [ 95.7018, 17.5242 ], [ 95.6772, 17.5506 ], [ 95.678, 17.5867 ], [ 95.6595, 17.6065 ], [ 95.6284, 17.6231 ], [ 95.6168, 17.6265 ], [ 95.5822, 17.6103 ], [ 95.568, 17.6242 ], [ 95.557, 17.6346 ], [ 95.538, 17.6441 ], [ 95.5035, 17.6491 ], [ 95.4641, 17.6843 ], [ 95.432, 17.7206 ], [ 95.4317, 17.7397 ], [ 95.4567, 17.7632 ], [ 95.4859, 17.7811 ], [ 95.4906, 17.7979 ], [ 95.4746, 17.8304 ], [ 95.487, 17.8714 ], [ 95.4813, 17.8912 ], [ 95.4574, 17.9116 ], [ 95.4641, 17.93 ], [ 95.4602, 17.9651 ], [ 95.466, 17.9894 ], [ 95.4617, 18.0206 ], [ 95.4315, 18.0766 ], [ 95.3964, 18.1623 ], [ 95.4204, 18.2136 ], [ 95.3814, 18.2317 ], [ 95.3472, 18.2554 ], [ 95.3347, 18.2861 ], [ 95.2907, 18.3164 ], [ 95.2716, 18.3214 ], [ 95.2581, 18.3411 ], [ 95.2622, 18.3736 ], [ 95.2177, 18.3979 ], [ 95.1937, 18.4164 ], [ 95.1884, 18.431 ], [ 95.1913, 18.4732 ], [ 95.1746, 18.4905 ], [ 95.1558, 18.49 ], [ 95.1169, 18.5105 ], [ 95.0999, 18.4847 ], [ 95.1122, 18.4408 ], [ 95.097, 18.4284 ], [ 95.0956, 18.4038 ], [ 95.0777, 18.3787 ], [ 95.039, 18.3694 ], [ 95.0069, 18.3823 ], [ 94.9899, 18.4128 ], [ 94.969, 18.4154 ], [ 94.9395, 18.4526 ], [ 94.9265, 18.4262 ], [ 94.8654, 18.4089 ], [ 94.8234, 18.3595 ], [ 94.7982, 18.371 ], [ 94.7576, 18.4569 ], [ 94.7339, 18.4679 ], [ 94.7458, 18.4951 ], [ 94.7655, 18.5645 ], [ 94.7275, 18.5768 ], [ 94.69, 18.6261 ], [ 94.7049, 18.6556 ], [ 94.7466, 18.6569 ], [ 94.7397, 18.6707 ], [ 94.7324, 18.7195 ], [ 94.7034, 18.7566 ], [ 94.6856, 18.8027 ], [ 94.7237, 18.8246 ], [ 94.7513, 18.8293 ], [ 94.7613, 18.8627 ], [ 94.744, 18.9003 ], [ 94.7217, 18.9037 ], [ 94.7016, 18.9215 ], [ 94.6972, 18.9598 ], [ 94.7075, 18.9684 ], [ 94.7325, 18.9602 ], [ 94.7437, 18.9775 ], [ 94.7699, 18.9696 ], [ 94.8126, 18.9709 ], [ 94.8335, 18.9809 ], [ 94.8524, 18.9767 ], [ 94.8744, 18.9592 ], [ 94.8963, 18.956 ], [ 94.906, 18.9374 ], [ 94.9582, 18.9393 ], [ 94.9891, 18.9236 ], [ 95.0189, 18.8959 ], [ 95.0253, 18.8668 ], [ 95.0595, 18.8324 ], [ 95.0816, 18.8641 ], [ 95.1036, 18.8609 ], [ 95.1182, 18.8732 ], [ 95.1373, 18.8661 ], [ 95.1541, 18.8847 ], [ 95.1452, 18.9303 ], [ 95.177, 18.9625 ], [ 95.2138, 18.9642 ], [ 95.2226, 18.9829 ], [ 95.2558, 18.9983 ], [ 95.2844, 19.0015 ], [ 95.285, 19.0251 ], [ 95.2704, 19.0513 ], [ 95.2727, 19.0682 ], [ 95.3164, 19.0991 ], [ 95.3566, 19.0891 ], [ 95.3747, 19.1017 ], [ 95.3952, 19.1386 ], [ 95.4122, 19.1527 ], [ 95.422, 19.1767 ], [ 95.4541, 19.1834 ], [ 95.4737, 19.1668 ], [ 95.5078, 19.1855 ], [ 95.5411, 19.178 ], [ 95.5513, 19.165 ], [ 95.5746, 19.1745 ], [ 95.613, 19.1553 ], [ 95.6282, 19.1549 ], [ 95.652, 19.1706 ], [ 95.6695, 19.1651 ], [ 95.6899, 19.1841 ], [ 95.7288, 19.1897 ], [ 95.7431, 19.1812 ], [ 95.7484, 19.1805 ], [ 95.7668, 19.1695 ], [ 95.7831, 19.1757 ], [ 95.8089, 19.1557 ], [ 95.8271, 19.1595 ], [ 95.8232, 19.1978 ], [ 95.8347, 19.2195 ], [ 95.8555, 19.2274 ], [ 95.8454, 19.2444 ], [ 95.8577, 19.2592 ], [ 95.8492, 19.2834 ], [ 95.8592, 19.291 ], [ 95.8553, 19.3239 ], [ 95.8279, 19.3591 ], [ 95.8147, 19.3886 ], [ 95.814, 19.4332 ], [ 95.7949, 19.4596 ], [ 95.8306, 19.4563 ], [ 95.8388, 19.446 ], [ 95.8715, 19.4367 ], [ 95.8948, 19.4376 ], [ 95.9087, 19.4744 ], [ 95.9731, 19.4762 ], [ 96.0351, 19.4539 ], [ 96.0536, 19.4627 ], [ 96.1052, 19.4173 ], [ 96.1292, 19.4174 ], [ 96.1375, 19.4428 ], [ 96.1607, 19.4527 ], [ 96.169, 19.4866 ], [ 96.1938, 19.4822 ], [ 96.2691, 19.4832 ], [ 96.2802, 19.4733 ], [ 96.3135, 19.4792 ], [ 96.3916, 19.4739 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 9, "NAME": "Magway Region", "PCODE": "MMR009", "ISO": "MM-03" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 95.342, 21.576 ], [ 95.3398, 21.5525 ], [ 95.3199, 21.5041 ], [ 95.3307, 21.4763 ], [ 95.319, 21.4543 ], [ 95.2733, 21.4526 ], [ 95.2751, 21.4218 ], [ 95.2376, 21.396 ], [ 95.2279, 21.382 ], [ 95.1845, 21.345 ], [ 95.1705, 21.3178 ], [ 95.1377, 21.3272 ], [ 95.0334, 21.2797 ], [ 95.0193, 21.2759 ], [ 94.9929, 21.2358 ], [ 94.9355, 21.2194 ], [ 94.8563, 21.2009 ], [ 94.8386, 21.1526 ], [ 94.8396, 21.1221 ], [ 94.8309, 21.1037 ], [ 94.8297, 21.0731 ], [ 94.8381, 21.021 ], [ 94.8309, 20.992 ], [ 94.8335, 20.9455 ], [ 94.8461, 20.9126 ], [ 94.875, 20.905 ], [ 94.8807, 20.8745 ], [ 94.9045, 20.8762 ], [ 94.9421, 20.8584 ], [ 94.9756, 20.8677 ], [ 95.0224, 20.8647 ], [ 95.0422, 20.833 ], [ 95.0366, 20.7792 ], [ 95.0407, 20.7505 ], [ 95.0138, 20.7434 ], [ 95.009, 20.6957 ], [ 95.0179, 20.6744 ], [ 95.0004, 20.6662 ], [ 94.9918, 20.6473 ], [ 95.0006, 20.6184 ], [ 95.0317, 20.6066 ], [ 95.0433, 20.5876 ], [ 95.0299, 20.5729 ], [ 95.0382, 20.5467 ], [ 95.064, 20.582 ], [ 95.081, 20.5961 ], [ 95.0796, 20.6117 ], [ 95.1247, 20.6182 ], [ 95.1759, 20.6459 ], [ 95.2109, 20.6348 ], [ 95.226, 20.6426 ], [ 95.2758, 20.6855 ], [ 95.2805, 20.7012 ], [ 95.3064, 20.7144 ], [ 95.3343, 20.701 ], [ 95.3423, 20.6872 ], [ 95.381, 20.7069 ], [ 95.3971, 20.6983 ], [ 95.4284, 20.7192 ], [ 95.4439, 20.744 ], [ 95.4667, 20.7566 ], [ 95.5228, 20.7553 ], [ 95.5446, 20.772 ], [ 95.5521, 20.7455 ], [ 95.5707, 20.7464 ], [ 95.5985, 20.6985 ], [ 95.5847, 20.6406 ], [ 95.5702, 20.6253 ], [ 95.576, 20.5866 ], [ 95.613, 20.5613 ], [ 95.6348, 20.5686 ], [ 95.6635, 20.5571 ], [ 95.7121, 20.5137 ], [ 95.7119, 20.4951 ], [ 95.7302, 20.4668 ], [ 95.7207, 20.4494 ], [ 95.7527, 20.3899 ], [ 95.7548, 20.3633 ], [ 95.7278, 20.345 ], [ 95.737, 20.3108 ], [ 95.7423, 20.2783 ], [ 95.7442, 20.2753 ], [ 95.757, 20.2745 ], [ 95.7914, 20.2004 ], [ 95.7976, 20.1644 ], [ 95.8342, 20.144 ], [ 95.8328, 20.1287 ], [ 95.7996, 20.0872 ], [ 95.8035, 20.062 ], [ 95.7798, 20.0557 ], [ 95.7939, 20.0237 ], [ 95.7705, 19.9744 ], [ 95.7883, 19.9651 ], [ 95.7963, 19.9389 ], [ 95.7876, 19.9086 ], [ 95.811, 19.8743 ], [ 95.8053, 19.8582 ], [ 95.8219, 19.8381 ], [ 95.8175, 19.8166 ], [ 95.7903, 19.811 ], [ 95.7871, 19.7779 ], [ 95.7745, 19.7667 ], [ 95.7723, 19.7593 ], [ 95.7803, 19.7189 ], [ 95.762, 19.6793 ], [ 95.7258, 19.6483 ], [ 95.7127, 19.6283 ], [ 95.7286, 19.6155 ], [ 95.723, 19.5615 ], [ 95.7428, 19.5364 ], [ 95.7301, 19.522 ], [ 95.7461, 19.4908 ], [ 95.7949, 19.4596 ], [ 95.814, 19.4332 ], [ 95.8147, 19.3886 ], [ 95.8279, 19.3591 ], [ 95.8553, 19.3239 ], [ 95.8592, 19.291 ], [ 95.8492, 19.2834 ], [ 95.8577, 19.2592 ], [ 95.8454, 19.2444 ], [ 95.8555, 19.2274 ], [ 95.8347, 19.2195 ], [ 95.8232, 19.1978 ], [ 95.8271, 19.1595 ], [ 95.8089, 19.1557 ], [ 95.7831, 19.1757 ], [ 95.7668, 19.1695 ], [ 95.7484, 19.1805 ], [ 95.7431, 19.1812 ], [ 95.7288, 19.1897 ], [ 95.6899, 19.1841 ], [ 95.6695, 19.1651 ], [ 95.652, 19.1706 ], [ 95.6282, 19.1549 ], [ 95.613, 19.1553 ], [ 95.5746, 19.1745 ], [ 95.5513, 19.165 ], [ 95.5411, 19.178 ], [ 95.5078, 19.1855 ], [ 95.4737, 19.1668 ], [ 95.4541, 19.1834 ], [ 95.422, 19.1767 ], [ 95.4122, 19.1527 ], [ 95.3952, 19.1386 ], [ 95.3747, 19.1017 ], [ 95.3566, 19.0891 ], [ 95.3164, 19.0991 ], [ 95.2727, 19.0682 ], [ 95.2704, 19.0513 ], [ 95.285, 19.0251 ], [ 95.2844, 19.0015 ], [ 95.2558, 18.9983 ], [ 95.2226, 18.9829 ], [ 95.2138, 18.9642 ], [ 95.177, 18.9625 ], [ 95.1452, 18.9303 ], [ 95.1541, 18.8847 ], [ 95.1373, 18.8661 ], [ 95.1182, 18.8732 ], [ 95.1036, 18.8609 ], [ 95.0816, 18.8641 ], [ 95.0595, 18.8324 ], [ 95.0253, 18.8668 ], [ 95.0189, 18.8959 ], [ 94.9891, 18.9236 ], [ 94.9582, 18.9393 ], [ 94.906, 18.9374 ], [ 94.8963, 18.956 ], [ 94.8744, 18.9592 ], [ 94.8524, 18.9767 ], [ 94.8335, 18.9809 ], [ 94.8126, 18.9709 ], [ 94.7699, 18.9696 ], [ 94.7437, 18.9775 ], [ 94.7325, 18.9602 ], [ 94.7075, 18.9684 ], [ 94.6972, 18.9598 ], [ 94.6681, 19.0145 ], [ 94.6875, 19.0365 ], [ 94.6703, 19.0522 ], [ 94.6547, 19.0845 ], [ 94.6318, 19.0969 ], [ 94.6211, 19.1162 ], [ 94.6002, 19.1279 ], [ 94.5928, 19.1483 ], [ 94.5736, 19.155 ], [ 94.5581, 19.1431 ], [ 94.5362, 19.1461 ], [ 94.522, 19.1789 ], [ 94.5115, 19.181 ], [ 94.5109, 19.182 ], [ 94.4888, 19.2275 ], [ 94.4789, 19.2655 ], [ 94.487, 19.2805 ], [ 94.5325, 19.2916 ], [ 94.5272, 19.3406 ], [ 94.5138, 19.3494 ], [ 94.4993, 19.3921 ], [ 94.4519, 19.4349 ], [ 94.4467, 19.4362 ], [ 94.4313, 19.4781 ], [ 94.4022, 19.4929 ], [ 94.3733, 19.5215 ], [ 94.344, 19.5632 ], [ 94.3517, 19.5842 ], [ 94.3504, 19.6182 ], [ 94.3377, 19.6294 ], [ 94.3393, 19.6685 ], [ 94.3194, 19.7096 ], [ 94.2808, 19.8301 ], [ 94.3131, 19.8558 ], [ 94.2971, 19.9239 ], [ 94.2691, 19.9312 ], [ 94.2599, 19.9582 ], [ 94.2374, 19.9908 ], [ 94.227, 20.0271 ], [ 94.205, 20.062 ], [ 94.213, 20.0761 ], [ 94.2124, 20.1057 ], [ 94.1718, 20.1259 ], [ 94.1601, 20.1837 ], [ 94.1366, 20.2009 ], [ 94.1349, 20.2437 ], [ 94.1241, 20.2851 ], [ 94.1048, 20.2936 ], [ 94.0812, 20.3361 ], [ 94.0791, 20.3734 ], [ 94.0559, 20.3672 ], [ 94.0391, 20.3999 ], [ 94.0206, 20.4086 ], [ 94.0005, 20.4486 ], [ 93.9882, 20.498 ], [ 93.9695, 20.5248 ], [ 93.9417, 20.5303 ], [ 93.9398, 20.5573 ], [ 93.9286, 20.5653 ], [ 93.8915, 20.5521 ], [ 93.8473, 20.5563 ], [ 93.8571, 20.5771 ], [ 93.8603, 20.5809 ], [ 93.8455, 20.6157 ], [ 93.8521, 20.6444 ], [ 93.8634, 20.65 ], [ 93.8861, 20.6418 ], [ 93.9128, 20.6508 ], [ 93.9234, 20.6399 ], [ 93.9435, 20.6614 ], [ 93.9796, 20.6687 ], [ 93.9897, 20.6822 ], [ 94.0469, 20.6893 ], [ 94.0837, 20.7496 ], [ 94.0808, 20.7647 ], [ 94.0514, 20.7927 ], [ 94.0393, 20.8276 ], [ 94.058, 20.8582 ], [ 94.0438, 20.8847 ], [ 94.0313, 20.8872 ], [ 94.0036, 20.9601 ], [ 94.0412, 21.0109 ], [ 94.064, 21.0281 ], [ 94.0674, 21.0414 ], [ 94.053, 21.0673 ], [ 94.0852, 21.0729 ], [ 94.1108, 21.1086 ], [ 94.12, 21.1679 ], [ 94.1072, 21.2014 ], [ 94.0944, 21.213 ], [ 94.1004, 21.2645 ], [ 94.0935, 21.2786 ], [ 94.0517, 21.2849 ], [ 94.0197, 21.2833 ], [ 94.006, 21.2996 ], [ 94.0555, 21.3361 ], [ 94.0458, 21.3489 ], [ 94.0628, 21.3882 ], [ 94.0796, 21.4473 ], [ 94.089, 21.4649 ], [ 94.0769, 21.4812 ], [ 94.0915, 21.5066 ], [ 94.0955, 21.5571 ], [ 94.1177, 21.5731 ], [ 94.1037, 21.6038 ], [ 94.1014, 21.6374 ], [ 94.0422, 21.6715 ], [ 94.0062, 21.7204 ], [ 93.9953, 21.803 ], [ 93.9864, 21.9002 ], [ 93.9812, 21.9244 ], [ 94.0175, 21.9958 ], [ 94.0065, 22.0809 ], [ 94.0418, 22.1556 ], [ 94.036, 22.2031 ], [ 94.038, 22.2543 ], [ 94.0184, 22.3665 ], [ 94.0579, 22.4368 ], [ 94.0478, 22.4513 ], [ 94.0169, 22.5675 ], [ 94.0166, 22.5954 ], [ 94.0489, 22.6057 ], [ 94.0079, 22.7371 ], [ 94.0574, 22.7309 ], [ 94.1076, 22.7628 ], [ 94.1197, 22.7349 ], [ 94.1165, 22.6985 ], [ 94.1728, 22.6889 ], [ 94.1944, 22.6617 ], [ 94.214, 22.6071 ], [ 94.2446, 22.5655 ], [ 94.2587, 22.5198 ], [ 94.2545, 22.5079 ], [ 94.2759, 22.489 ], [ 94.281, 22.4403 ], [ 94.2705, 22.4051 ], [ 94.2609, 22.3971 ], [ 94.2707, 22.3665 ], [ 94.2609, 22.3535 ], [ 94.2676, 22.3149 ], [ 94.2451, 22.3004 ], [ 94.2707, 22.1904 ], [ 94.2964, 22.1516 ], [ 94.3414, 22.1354 ], [ 94.3605, 22.117 ], [ 94.3814, 22.1172 ], [ 94.4167, 22.1366 ], [ 94.425, 22.1082 ], [ 94.4218, 22.0779 ], [ 94.4352, 22.0597 ], [ 94.4354, 22.0346 ], [ 94.4191, 22.0263 ], [ 94.4096, 21.9878 ], [ 94.4249, 21.9659 ], [ 94.42, 21.9433 ], [ 94.4086, 21.8387 ], [ 94.4327, 21.824 ], [ 94.4595, 21.8188 ], [ 94.4962, 21.7865 ], [ 94.5438, 21.7918 ], [ 94.5405, 21.8377 ], [ 94.5881, 21.8379 ], [ 94.6607, 21.8725 ], [ 94.7239, 21.8448 ], [ 94.7499, 21.8283 ], [ 94.7882, 21.8477 ], [ 94.8394, 21.8555 ], [ 94.8577, 21.8642 ], [ 94.9054, 21.8389 ], [ 94.9257, 21.8332 ], [ 94.9707, 21.8333 ], [ 94.9906, 21.8249 ], [ 95.0152, 21.8323 ], [ 95.0611, 21.8354 ], [ 95.0817, 21.8523 ], [ 95.1204, 21.8558 ], [ 95.1636, 21.8345 ], [ 95.1621, 21.8091 ], [ 95.201, 21.766 ], [ 95.2064, 21.7395 ], [ 95.2436, 21.7143 ], [ 95.243, 21.6745 ], [ 95.2981, 21.6536 ], [ 95.3196, 21.6295 ], [ 95.3301, 21.5861 ], [ 95.342, 21.576 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 10, "NAME": "Mandalay Region", "PCODE": "MMR010", "ISO": "MM-04" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.3926, 23.5696 ], [ 96.3575, 23.5489 ], [ 96.3389, 23.5132 ], [ 96.31, 23.4982 ], [ 96.3172, 23.4766 ], [ 96.2972, 23.4695 ], [ 96.298, 23.4463 ], [ 96.2777, 23.4202 ], [ 96.2494, 23.4003 ], [ 96.2276, 23.3681 ], [ 96.2337, 23.3397 ], [ 96.2176, 23.3317 ], [ 96.1903, 23.354 ], [ 96.1702, 23.3457 ], [ 96.171, 23.3198 ], [ 96.1823, 23.3152 ], [ 96.1984, 23.3004 ], [ 96.1828, 23.2729 ], [ 96.1883, 23.2292 ], [ 96.171, 23.1757 ], [ 96.1521, 23.1598 ], [ 96.1532, 23.1213 ], [ 96.1958, 23.0871 ], [ 96.204, 23.0636 ], [ 96.1937, 23.0466 ], [ 96.2125, 23.0249 ], [ 96.237, 23.0136 ], [ 96.2898, 23.0035 ], [ 96.3147, 23.0119 ], [ 96.3353, 23.0042 ], [ 96.3904, 23.0137 ], [ 96.4104, 23.024 ], [ 96.4332, 23.0222 ], [ 96.4547, 23.0335 ], [ 96.4667, 23.0226 ], [ 96.486, 23.0413 ], [ 96.5152, 23.0532 ], [ 96.5418, 23.0265 ], [ 96.5689, 23.0153 ], [ 96.5881, 22.9968 ], [ 96.6135, 22.993 ], [ 96.6329, 22.9767 ], [ 96.6799, 22.9855 ], [ 96.7135, 22.9604 ], [ 96.7038, 22.9325 ], [ 96.6723, 22.8921 ], [ 96.6651, 22.8496 ], [ 96.6072, 22.816 ], [ 96.5429, 22.8308 ], [ 96.5141, 22.806 ], [ 96.45, 22.7857 ], [ 96.4175, 22.8008 ], [ 96.3825, 22.8017 ], [ 96.3545, 22.778 ], [ 96.302, 22.7855 ], [ 96.2623, 22.7798 ], [ 96.2409, 22.7695 ], [ 96.2382, 22.7673 ], [ 96.2267, 22.7646 ], [ 96.2239, 22.7591 ], [ 96.2042, 22.7375 ], [ 96.2387, 22.6943 ], [ 96.2344, 22.6932 ], [ 96.2399, 22.6393 ], [ 96.2793, 22.5854 ], [ 96.2977, 22.5731 ], [ 96.2896, 22.5288 ], [ 96.3314, 22.504 ], [ 96.3337, 22.4672 ], [ 96.3201, 22.4537 ], [ 96.3245, 22.3753 ], [ 96.3376, 22.3666 ], [ 96.3881, 22.3714 ], [ 96.4093, 22.364 ], [ 96.4219, 22.3322 ], [ 96.4535, 22.2991 ], [ 96.4814, 22.2291 ], [ 96.4792, 22.1968 ], [ 96.4843, 22.1527 ], [ 96.4947, 22.1428 ], [ 96.5258, 22.1468 ], [ 96.548, 22.1396 ], [ 96.5644, 22.1136 ], [ 96.6385, 22.1113 ], [ 96.6558, 22.0895 ], [ 96.7161, 22.0901 ], [ 96.7383, 22.0817 ], [ 96.7505, 22.0608 ], [ 96.7589, 21.9983 ], [ 96.7711, 21.9938 ], [ 96.8169, 21.9301 ], [ 96.8294, 21.8963 ], [ 96.8592, 21.8597 ], [ 96.8441, 21.845 ], [ 96.8747, 21.8242 ], [ 96.8782, 21.7971 ], [ 96.896, 21.7428 ], [ 96.8915, 21.7343 ], [ 96.8509, 21.7409 ], [ 96.8206, 21.7662 ], [ 96.8067, 21.7448 ], [ 96.7887, 21.7405 ], [ 96.7664, 21.7158 ], [ 96.7379, 21.7046 ], [ 96.7196, 21.7254 ], [ 96.6831, 21.7115 ], [ 96.6536, 21.6729 ], [ 96.6309, 21.6587 ], [ 96.6344, 21.6448 ], [ 96.5934, 21.6162 ], [ 96.5809, 21.5953 ], [ 96.5319, 21.5893 ], [ 96.5258, 21.5853 ], [ 96.4711, 21.5666 ], [ 96.4354, 21.5613 ], [ 96.4107, 21.5509 ], [ 96.3329, 21.5467 ], [ 96.3256, 21.5282 ], [ 96.3415, 21.4888 ], [ 96.2871, 21.4633 ], [ 96.2961, 21.4366 ], [ 96.2963, 21.3817 ], [ 96.3055, 21.3681 ], [ 96.3238, 21.309 ], [ 96.3206, 21.2905 ], [ 96.3341, 21.2548 ], [ 96.3349, 21.2461 ], [ 96.3654, 21.2154 ], [ 96.3704, 21.1899 ], [ 96.3746, 21.1836 ], [ 96.3571, 21.1605 ], [ 96.3312, 21.168 ], [ 96.2661, 21.1679 ], [ 96.2324, 21.151 ], [ 96.2185, 21.1342 ], [ 96.2302, 21.0885 ], [ 96.2115, 21.0646 ], [ 96.2169, 21.0086 ], [ 96.2385, 21.0039 ], [ 96.2719, 20.9673 ], [ 96.2979, 20.9676 ], [ 96.3429, 20.9433 ], [ 96.3724, 20.9452 ], [ 96.3891, 20.9295 ], [ 96.4277, 20.943 ], [ 96.4338, 20.9181 ], [ 96.4689, 20.9027 ], [ 96.5075, 20.9214 ], [ 96.523, 20.8868 ], [ 96.5497, 20.8931 ], [ 96.5735, 20.8714 ], [ 96.5736, 20.8369 ], [ 96.5594, 20.8257 ], [ 96.5639, 20.7826 ], [ 96.5244, 20.7752 ], [ 96.5118, 20.7844 ], [ 96.4786, 20.7693 ], [ 96.4637, 20.7438 ], [ 96.4643, 20.7211 ], [ 96.4548, 20.6968 ], [ 96.4399, 20.6967 ], [ 96.4525, 20.6538 ], [ 96.4664, 20.642 ], [ 96.4837, 20.6091 ], [ 96.5133, 20.6019 ], [ 96.5202, 20.5778 ], [ 96.5407, 20.5973 ], [ 96.5464, 20.5222 ], [ 96.5333, 20.5066 ], [ 96.5097, 20.5124 ], [ 96.4886, 20.4999 ], [ 96.4645, 20.4505 ], [ 96.4746, 20.3696 ], [ 96.4935, 20.3543 ], [ 96.4965, 20.3154 ], [ 96.5155, 20.293 ], [ 96.5468, 20.2219 ], [ 96.5048, 20.1931 ], [ 96.4856, 20.2122 ], [ 96.4485, 20.233 ], [ 96.3622, 20.3064 ], [ 96.3071, 20.3158 ], [ 96.2969, 20.331 ], [ 96.2614, 20.3083 ], [ 96.2128, 20.3033 ], [ 96.1682, 20.2663 ], [ 96.132, 20.281 ], [ 96.0729, 20.2902 ], [ 96.0059, 20.2862 ], [ 96.0002, 20.3015 ], [ 95.9551, 20.2724 ], [ 95.9404, 20.2382 ], [ 95.899, 20.222 ], [ 95.8627, 20.2502 ], [ 95.8157, 20.3081 ], [ 95.7919, 20.2921 ], [ 95.7617, 20.3067 ], [ 95.737, 20.3108 ], [ 95.7278, 20.345 ], [ 95.7548, 20.3633 ], [ 95.7527, 20.3899 ], [ 95.7207, 20.4494 ], [ 95.7302, 20.4668 ], [ 95.7119, 20.4951 ], [ 95.7121, 20.5137 ], [ 95.6635, 20.5571 ], [ 95.6348, 20.5686 ], [ 95.613, 20.5613 ], [ 95.576, 20.5866 ], [ 95.5702, 20.6253 ], [ 95.5847, 20.6406 ], [ 95.5985, 20.6985 ], [ 95.5707, 20.7464 ], [ 95.5521, 20.7455 ], [ 95.5446, 20.772 ], [ 95.5228, 20.7553 ], [ 95.4667, 20.7566 ], [ 95.4439, 20.744 ], [ 95.4284, 20.7192 ], [ 95.3971, 20.6983 ], [ 95.381, 20.7069 ], [ 95.3423, 20.6872 ], [ 95.3343, 20.701 ], [ 95.3064, 20.7144 ], [ 95.2805, 20.7012 ], [ 95.2758, 20.6855 ], [ 95.226, 20.6426 ], [ 95.2109, 20.6348 ], [ 95.1759, 20.6459 ], [ 95.1247, 20.6182 ], [ 95.0796, 20.6117 ], [ 95.081, 20.5961 ], [ 95.064, 20.582 ], [ 95.0382, 20.5467 ], [ 95.0299, 20.5729 ], [ 95.0433, 20.5876 ], [ 95.0317, 20.6066 ], [ 95.0006, 20.6184 ], [ 94.9918, 20.6473 ], [ 95.0004, 20.6662 ], [ 95.0179, 20.6744 ], [ 95.009, 20.6957 ], [ 95.0138, 20.7434 ], [ 95.0407, 20.7505 ], [ 95.0366, 20.7792 ], [ 95.0422, 20.833 ], [ 95.0224, 20.8647 ], [ 94.9756, 20.8677 ], [ 94.9421, 20.8584 ], [ 94.9045, 20.8762 ], [ 94.8807, 20.8745 ], [ 94.875, 20.905 ], [ 94.8461, 20.9126 ], [ 94.8335, 20.9455 ], [ 94.8309, 20.992 ], [ 94.8381, 21.021 ], [ 94.8297, 21.0731 ], [ 94.8309, 21.1037 ], [ 94.8396, 21.1221 ], [ 94.8386, 21.1526 ], [ 94.8563, 21.2009 ], [ 94.9355, 21.2194 ], [ 94.9929, 21.2358 ], [ 95.0193, 21.2759 ], [ 95.0334, 21.2797 ], [ 95.1377, 21.3272 ], [ 95.1705, 21.3178 ], [ 95.1845, 21.345 ], [ 95.2279, 21.382 ], [ 95.2376, 21.396 ], [ 95.2751, 21.4218 ], [ 95.2733, 21.4526 ], [ 95.319, 21.4543 ], [ 95.3307, 21.4763 ], [ 95.3199, 21.5041 ], [ 95.3398, 21.5525 ], [ 95.342, 21.576 ], [ 95.3458, 21.608 ], [ 95.3653, 21.645 ], [ 95.3702, 21.7049 ], [ 95.3885, 21.7272 ], [ 95.4106, 21.7382 ], [ 95.4215, 21.7626 ], [ 95.403, 21.7906 ], [ 95.4265, 21.8007 ], [ 95.4768, 21.858 ], [ 95.4947, 21.8868 ], [ 95.5237, 21.9068 ], [ 95.5679, 21.9119 ], [ 95.5878, 21.9216 ], [ 95.6831, 21.9207 ], [ 95.7151, 21.9294 ], [ 95.7408, 21.918 ], [ 95.7948, 21.9201 ], [ 95.8276, 21.9057 ], [ 95.8723, 21.9001 ], [ 95.8964, 21.8841 ], [ 95.9125, 21.8596 ], [ 95.938, 21.8521 ], [ 95.9915, 21.8696 ], [ 96.0, 21.8817 ], [ 96.0246, 21.9772 ], [ 96.0137, 22.0034 ], [ 96.0225, 22.046 ], [ 96.0164, 22.0718 ], [ 95.9941, 22.1108 ], [ 95.9977, 22.1612 ], [ 95.9887, 22.1733 ], [ 95.9843, 22.2774 ], [ 95.9858, 22.2981 ], [ 96.0098, 22.2964 ], [ 96.0101, 22.3183 ], [ 95.9641, 22.379 ], [ 95.9578, 22.4155 ], [ 95.9685, 22.4372 ], [ 95.9608, 22.4751 ], [ 95.9767, 22.5093 ], [ 95.9957, 22.5277 ], [ 95.9734, 22.568 ], [ 95.9446, 22.6038 ], [ 95.9373, 22.6384 ], [ 95.9047, 22.6731 ], [ 95.9103, 22.6899 ], [ 95.9043, 22.7225 ], [ 95.9327, 22.7355 ], [ 95.9534, 22.7366 ], [ 95.9685, 22.752 ], [ 95.9649, 22.8759 ], [ 95.9666, 22.9276 ], [ 95.9791, 22.9644 ], [ 95.9731, 23.0127 ], [ 95.9808, 23.0272 ], [ 95.9838, 23.0651 ], [ 95.9746, 23.0838 ], [ 95.9935, 23.1037 ], [ 95.9919, 23.1305 ], [ 95.9802, 23.1593 ], [ 95.9592, 23.1661 ], [ 95.9519, 23.2214 ], [ 95.9587, 23.2474 ], [ 95.9298, 23.2806 ], [ 95.9501, 23.3113 ], [ 95.9502, 23.3311 ], [ 95.9301, 23.337 ], [ 95.9041, 23.3703 ], [ 95.9121, 23.4128 ], [ 95.9232, 23.436 ], [ 95.9668, 23.4606 ], [ 95.9639, 23.5019 ], [ 95.9701, 23.5329 ], [ 96.0099, 23.5118 ], [ 96.0123, 23.5447 ], [ 96.0347, 23.6025 ], [ 96.0516, 23.6188 ], [ 96.0838, 23.6241 ], [ 96.0916, 23.648 ], [ 96.0793, 23.6541 ], [ 96.109, 23.682 ], [ 96.1365, 23.6801 ], [ 96.1342, 23.6524 ], [ 96.1213, 23.6377 ], [ 96.1422, 23.6191 ], [ 96.1372, 23.5905 ], [ 96.1445, 23.569 ], [ 96.1692, 23.5936 ], [ 96.2142, 23.5893 ], [ 96.2505, 23.5758 ], [ 96.2604, 23.6035 ], [ 96.2808, 23.6307 ], [ 96.3155, 23.6421 ], [ 96.3641, 23.6163 ], [ 96.3711, 23.587 ], [ 96.3926, 23.5696 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 11, "NAME": "Mon State", "PCODE": "MMR011", "ISO": "MM-15" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.5155, 16.5009 ], [ 97.5673, 16.4889 ], [ 97.6022, 16.4922 ], [ 97.609, 16.4616 ], [ 97.5771, 16.3963 ], [ 97.5889, 16.3676 ], [ 97.5679, 16.3313 ], [ 97.5562, 16.2909 ], [ 97.5641, 16.2657 ], [ 97.5659, 16.2318 ], [ 97.5596, 16.2027 ], [ 97.526, 16.1974 ], [ 97.5018, 16.2218 ], [ 97.4985, 16.2605 ], [ 97.477, 16.2775 ], [ 97.4571, 16.3089 ], [ 97.4755, 16.3588 ], [ 97.4577, 16.4334 ], [ 97.436, 16.4599 ], [ 97.4413, 16.4808 ], [ 97.462, 16.4883 ], [ 97.4839, 16.5074 ], [ 97.5155, 16.5009 ] ] ], [ [ [ 97.8464, 16.545 ], [ 97.8567, 16.5259 ], [ 97.8547, 16.4935 ], [ 97.8608, 16.4929 ], [ 97.8582, 16.4786 ], [ 97.8888, 16.468 ], [ 97.9062, 16.4527 ], [ 97.9159, 16.4272 ], [ 97.9614, 16.421 ], [ 97.9803, 16.4351 ], [ 97.992, 16.3814 ], [ 97.9948, 16.3345 ], [ 98.044, 16.3145 ], [ 98.0814, 16.2683 ], [ 98.0785, 16.2465 ], [ 98.1139, 16.2046 ], [ 98.1282, 16.1973 ], [ 98.1251, 16.1575 ], [ 98.077, 16.1364 ], [ 98.0633, 16.1222 ], [ 98.0396, 16.1331 ], [ 98.0303, 16.1475 ], [ 97.9761, 16.1532 ], [ 97.9475, 16.1499 ], [ 97.9084, 16.1323 ], [ 97.8719, 16.1446 ], [ 97.8142, 16.127 ], [ 97.8237, 16.1015 ], [ 97.8507, 16.071 ], [ 97.8496, 16.0531 ], [ 97.8669, 16.0229 ], [ 97.8443, 16.0117 ], [ 97.8479, 15.992 ], [ 97.8346, 15.9701 ], [ 97.8501, 15.9302 ], [ 97.832, 15.9073 ], [ 97.8425, 15.8732 ], [ 97.8337, 15.8656 ], [ 97.8602, 15.8253 ], [ 97.8686, 15.7635 ], [ 97.8843, 15.7398 ], [ 97.8721, 15.7275 ], [ 97.8669, 15.6781 ], [ 97.9011, 15.6743 ], [ 97.9223, 15.6371 ], [ 97.9494, 15.6405 ], [ 97.9482, 15.6089 ], [ 97.9778, 15.591 ], [ 98.002, 15.5604 ], [ 98.0083, 15.5389 ], [ 98.0381, 15.5135 ], [ 98.0673, 15.4566 ], [ 98.0673, 15.4388 ], [ 98.0905, 15.421 ], [ 98.1155, 15.3838 ], [ 98.1394, 15.3301 ], [ 98.1569, 15.3305 ], [ 98.1842, 15.3086 ], [ 98.1836, 15.294 ], [ 98.205, 15.2614 ], [ 98.2025, 15.2356 ], [ 98.2005, 15.2097 ], [ 98.2143, 15.1811 ], [ 98.1898, 15.1486 ], [ 98.184, 15.1208 ], [ 98.1931, 15.0794 ], [ 98.2118, 15.0765 ], [ 98.235, 15.0437 ], [ 98.213, 15.0205 ], [ 98.2082, 14.9819 ], [ 98.1816, 14.9723 ], [ 98.169, 14.9848 ], [ 98.121, 14.9953 ], [ 98.0995, 14.9915 ], [ 98.0787, 15.0071 ], [ 98.0489, 15.0405 ], [ 98.0395, 15.0825 ], [ 98.0177, 15.1049 ], [ 98.0044, 15.0951 ], [ 97.9593, 15.0845 ], [ 97.9469, 15.0743 ], [ 97.9482, 15.0627 ], [ 97.8836, 15.082 ], [ 97.8732, 15.0338 ], [ 97.873, 15.0324 ], [ 97.8635, 14.9892 ], [ 97.8676, 14.9367 ], [ 97.835, 14.9282 ], [ 97.8269, 14.9049 ], [ 97.8388, 14.8854 ], [ 97.7933, 14.8806 ], [ 97.7897, 14.9112 ], [ 97.8053, 14.9402 ], [ 97.811, 14.9651 ], [ 97.7804, 15.0168 ], [ 97.7975, 15.0352 ], [ 97.7896, 15.0637 ], [ 97.7946, 15.0938 ], [ 97.8056, 15.1064 ], [ 97.799, 15.1381 ], [ 97.8027, 15.1558 ], [ 97.7903, 15.1759 ], [ 97.8236, 15.211 ], [ 97.7905, 15.2099 ], [ 97.7654, 15.1992 ], [ 97.7267, 15.2735 ], [ 97.7364, 15.2988 ], [ 97.7167, 15.335 ], [ 97.7221, 15.3572 ], [ 97.7366, 15.359 ], [ 97.7425, 15.3933 ], [ 97.7579, 15.3886 ], [ 97.7768, 15.4084 ], [ 97.7627, 15.4571 ], [ 97.7353, 15.4864 ], [ 97.7563, 15.5452 ], [ 97.728, 15.6073 ], [ 97.7256, 15.648 ], [ 97.7104, 15.7103 ], [ 97.7118, 15.7291 ], [ 97.6982, 15.7577 ], [ 97.7177, 15.7822 ], [ 97.7102, 15.8528 ], [ 97.6927, 15.8872 ], [ 97.6713, 15.9102 ], [ 97.6057, 15.9535 ], [ 97.603, 15.9734 ], [ 97.5877, 15.9864 ], [ 97.5853, 16.0092 ], [ 97.563, 16.0608 ], [ 97.5637, 16.0825 ], [ 97.6106, 16.1363 ], [ 97.6375, 16.2163 ], [ 97.6402, 16.2681 ], [ 97.6368, 16.314 ], [ 97.6125, 16.3545 ], [ 97.6127, 16.3697 ], [ 97.6304, 16.3933 ], [ 97.6119, 16.4336 ], [ 97.6237, 16.4542 ], [ 97.6173, 16.4884 ], [ 97.6233, 16.5026 ], [ 97.6471, 16.5006 ], [ 97.6613, 16.5212 ], [ 97.6655, 16.5454 ], [ 97.6864, 16.5594 ], [ 97.734, 16.5609 ], [ 97.7629, 16.5252 ], [ 97.8007, 16.5133 ], [ 97.8464, 16.545 ] ] ], [ [ [ 97.4836, 17.1007 ], [ 97.485, 17.0981 ], [ 97.4801, 17.0894 ], [ 97.4762, 17.0797 ], [ 97.4821, 17.0538 ], [ 97.4441, 16.9761 ], [ 97.4682, 16.9574 ], [ 97.4782, 16.9331 ], [ 97.4743, 16.8859 ], [ 97.491, 16.8435 ], [ 97.5176, 16.8355 ], [ 97.5035, 16.815 ], [ 97.5126, 16.8012 ], [ 97.5607, 16.7838 ], [ 97.5598, 16.7201 ], [ 97.572, 16.7186 ], [ 97.6122, 16.6534 ], [ 97.6048, 16.5636 ], [ 97.6196, 16.5228 ], [ 97.5694, 16.5367 ], [ 97.5437, 16.5334 ], [ 97.5277, 16.5453 ], [ 97.4972, 16.5361 ], [ 97.4421, 16.5412 ], [ 97.3958, 16.523 ], [ 97.3666, 16.505 ], [ 97.3517, 16.516 ], [ 97.344, 16.5688 ], [ 97.325, 16.6141 ], [ 97.3283, 16.6561 ], [ 97.3011, 16.6483 ], [ 97.2759, 16.6617 ], [ 97.2589, 16.6597 ], [ 97.2337, 16.6842 ], [ 97.2396, 16.7079 ], [ 97.2207, 16.7392 ], [ 97.2328, 16.7871 ], [ 97.2174, 16.8374 ], [ 97.2138, 16.8836 ], [ 97.1976, 16.8898 ], [ 97.1878, 16.9312 ], [ 97.1672, 16.9424 ], [ 97.176, 17.0207 ], [ 97.1726, 17.0608 ], [ 97.1427, 17.0876 ], [ 97.1558, 17.1233 ], [ 97.1336, 17.1234 ], [ 97.1295, 17.0923 ], [ 97.119, 17.0772 ], [ 97.1243, 17.0446 ], [ 97.1068, 17.0091 ], [ 97.1212, 16.9761 ], [ 97.1231, 16.9501 ], [ 97.1104, 16.9228 ], [ 97.0837, 16.9147 ], [ 97.0434, 16.9991 ], [ 97.0282, 17.0156 ], [ 97.0316, 17.0351 ], [ 97.063, 17.1019 ], [ 97.0657, 17.1238 ], [ 97.0539, 17.1613 ], [ 97.037, 17.1793 ], [ 96.9762, 17.2059 ], [ 96.9463, 17.2337 ], [ 96.9419, 17.2671 ], [ 96.9505, 17.2883 ], [ 96.9289, 17.3111 ], [ 96.907, 17.3055 ], [ 96.8866, 17.3123 ], [ 96.8804, 17.3399 ], [ 96.8964, 17.3789 ], [ 96.8881, 17.4132 ], [ 96.874, 17.4362 ], [ 96.8789, 17.4941 ], [ 96.8683, 17.545 ], [ 96.8775, 17.5649 ], [ 96.8752, 17.599 ], [ 96.904, 17.6213 ], [ 96.9095, 17.6085 ], [ 96.9484, 17.6243 ], [ 96.9698, 17.6068 ], [ 96.9921, 17.6116 ], [ 97.0192, 17.5698 ], [ 97.0502, 17.5647 ], [ 97.0706, 17.5447 ], [ 97.0967, 17.5369 ], [ 97.0912, 17.5201 ], [ 97.0994, 17.4824 ], [ 97.1284, 17.4882 ], [ 97.1424, 17.5109 ], [ 97.1723, 17.5114 ], [ 97.2102, 17.5318 ], [ 97.2189, 17.5432 ], [ 97.2387, 17.5438 ], [ 97.2353, 17.5795 ], [ 97.2513, 17.5777 ], [ 97.2608, 17.5997 ], [ 97.2766, 17.607 ], [ 97.3178, 17.5882 ], [ 97.3192, 17.6074 ], [ 97.3426, 17.6525 ], [ 97.3423, 17.6777 ], [ 97.3646, 17.6755 ], [ 97.3685, 17.7138 ], [ 97.3952, 17.7159 ], [ 97.4069, 17.7052 ], [ 97.3986, 17.6828 ], [ 97.3768, 17.6777 ], [ 97.3678, 17.6412 ], [ 97.3812, 17.6076 ], [ 97.3786, 17.5888 ], [ 97.397, 17.5593 ], [ 97.4205, 17.5501 ], [ 97.4393, 17.5324 ], [ 97.4336, 17.4913 ], [ 97.425, 17.4753 ], [ 97.4415, 17.4475 ], [ 97.4373, 17.4146 ], [ 97.4452, 17.3895 ], [ 97.4747, 17.3607 ], [ 97.4686, 17.3533 ], [ 97.495, 17.3248 ], [ 97.5003, 17.287 ], [ 97.4804, 17.279 ], [ 97.4999, 17.224 ], [ 97.4893, 17.1881 ], [ 97.5006, 17.1494 ], [ 97.5158, 17.1303 ], [ 97.508, 17.1112 ], [ 97.4836, 17.1007 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 12, "NAME": "Rakhine State", "PCODE": "MMR012", "ISO": "MM-16" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 93.6255, 18.9003 ], [ 93.6366, 18.8892 ], [ 93.6722, 18.8768 ], [ 93.7065, 18.8741 ], [ 93.7486, 18.8882 ], [ 93.7553, 18.8546 ], [ 93.7493, 18.8288 ], [ 93.76, 18.8051 ], [ 93.7491, 18.788 ], [ 93.7588, 18.7327 ], [ 93.7359, 18.7046 ], [ 93.7264, 18.6762 ], [ 93.7033, 18.6665 ], [ 93.6639, 18.6699 ], [ 93.596, 18.731 ], [ 93.5449, 18.7668 ], [ 93.525, 18.7916 ], [ 93.4783, 18.8701 ], [ 93.5201, 18.8828 ], [ 93.55, 18.881 ], [ 93.5968, 18.9019 ], [ 93.6177, 18.9196 ], [ 93.6255, 18.9003 ] ] ], [ [ [ 93.5783, 19.7276 ], [ 93.5215, 19.6782 ], [ 93.5115, 19.7187 ], [ 93.5334, 19.7231 ], [ 93.5469, 19.7506 ], [ 93.5785, 19.7692 ], [ 93.5879, 19.7444 ], [ 93.5783, 19.7276 ] ] ], [ [ [ 93.7087, 19.7526 ], [ 93.6931, 19.7048 ], [ 93.6656, 19.7173 ], [ 93.6387, 19.7136 ], [ 93.6334, 19.7356 ], [ 93.6614, 19.7393 ], [ 93.6942, 19.7904 ], [ 93.7087, 19.7526 ] ] ], [ [ [ 93.7713, 19.8588 ], [ 93.7911, 19.842 ], [ 93.7833, 19.8172 ], [ 93.7774, 19.7671 ], [ 93.7702, 19.7613 ], [ 93.7167, 19.7558 ], [ 93.7133, 19.777 ], [ 93.7463, 19.7905 ], [ 93.7515, 19.8296 ], [ 93.7405, 19.8487 ], [ 93.7713, 19.8588 ] ] ], [ [ [ 93.7086, 19.8728 ], [ 93.7262, 19.8677 ], [ 93.6946, 19.8393 ], [ 93.6715, 19.8269 ], [ 93.6823, 19.8019 ], [ 93.6411, 19.7752 ], [ 93.6249, 19.7514 ], [ 93.6133, 19.7056 ], [ 93.5964, 19.7105 ], [ 93.5918, 19.7353 ], [ 93.5982, 19.7566 ], [ 93.5887, 19.7787 ], [ 93.6292, 19.8187 ], [ 93.6396, 19.8633 ], [ 93.6676, 19.8546 ], [ 93.6876, 19.8745 ], [ 93.7086, 19.8728 ] ] ], [ [ [ 93.6017, 19.8483 ], [ 93.5884, 19.839 ], [ 93.5407, 19.8467 ], [ 93.5508, 19.8688 ], [ 93.5905, 19.8733 ], [ 93.6134, 19.901 ], [ 93.6605, 19.9052 ], [ 93.6496, 19.8847 ], [ 93.6224, 19.8712 ], [ 93.6017, 19.8483 ] ] ], [ [ [ 93.4475, 19.9295 ], [ 93.474, 19.9057 ], [ 93.4983, 19.9039 ], [ 93.5323, 19.9161 ], [ 93.538, 19.886 ], [ 93.5152, 19.8659 ], [ 93.4999, 19.8009 ], [ 93.5211, 19.753 ], [ 93.5009, 19.7518 ], [ 93.4638, 19.7677 ], [ 93.4421, 19.7878 ], [ 93.4307, 19.8228 ], [ 93.4298, 19.8677 ], [ 93.411, 19.9064 ], [ 93.3934, 19.9555 ], [ 93.3979, 19.9667 ], [ 93.4304, 19.9576 ], [ 93.4475, 19.9295 ] ] ], [ [ [ 93.1349, 20.0606 ], [ 93.1533, 20.024 ], [ 93.1572, 19.997 ], [ 93.2003, 19.9066 ], [ 93.2105, 19.8947 ], [ 93.2233, 19.8517 ], [ 93.2491, 19.818 ], [ 93.2267, 19.8149 ], [ 93.2054, 19.8743 ], [ 93.177, 19.9198 ], [ 93.1562, 19.98 ], [ 93.1425, 19.9908 ], [ 93.1395, 20.0129 ], [ 93.1181, 20.053 ], [ 93.1349, 20.0606 ] ] ], [ [ [ 92.937, 20.1049 ], [ 92.9592, 20.075 ], [ 92.9763, 20.0232 ], [ 92.9825, 19.9884 ], [ 93.015, 19.9357 ], [ 93.0336, 19.8733 ], [ 93.0224, 19.8418 ], [ 93.0085, 19.8844 ], [ 93.0135, 19.8978 ], [ 92.9913, 19.9233 ], [ 92.9534, 19.9862 ], [ 92.9137, 20.0588 ], [ 92.9215, 20.0969 ], [ 92.937, 20.1049 ] ] ], [ [ [ 92.9947, 20.1229 ], [ 93.0189, 20.1292 ], [ 93.063, 20.1256 ], [ 93.0763, 20.1136 ], [ 93.1004, 20.0645 ], [ 93.1208, 20.0443 ], [ 93.139, 19.9991 ], [ 93.1195, 19.9847 ], [ 93.1048, 19.9613 ], [ 93.1052, 19.9367 ], [ 93.1191, 19.8936 ], [ 93.1372, 19.8625 ], [ 93.1066, 19.869 ], [ 93.08, 19.9192 ], [ 93.049, 19.957 ], [ 93.0426, 20.0098 ], [ 93.0286, 20.0293 ], [ 92.976, 20.0739 ], [ 92.9843, 20.0958 ], [ 92.9701, 20.1324 ], [ 92.9947, 20.1229 ] ] ], [ [ [ 93.1788, 20.1896 ], [ 93.196, 20.1665 ], [ 93.2171, 20.1678 ], [ 93.2224, 20.1325 ], [ 93.233, 20.1151 ], [ 93.1951, 20.0934 ], [ 93.1807, 20.0581 ], [ 93.1279, 20.0842 ], [ 93.1104, 20.1263 ], [ 93.1094, 20.1419 ], [ 93.0849, 20.1748 ], [ 93.0937, 20.1884 ], [ 93.1788, 20.1896 ] ] ], [ [ [ 93.2885, 20.2058 ], [ 93.3034, 20.2038 ], [ 93.3013, 20.1567 ], [ 93.311, 20.1148 ], [ 93.3496, 20.0646 ], [ 93.3438, 20.0556 ], [ 93.2654, 20.0302 ], [ 93.2083, 20.0295 ], [ 93.2007, 20.0395 ], [ 93.197, 20.0866 ], [ 93.2035, 20.097 ], [ 93.2383, 20.1158 ], [ 93.2223, 20.143 ], [ 93.2194, 20.1697 ], [ 93.1935, 20.1728 ], [ 93.1772, 20.1955 ], [ 93.2061, 20.2196 ], [ 93.2116, 20.2408 ], [ 93.2466, 20.2487 ], [ 93.263, 20.2593 ], [ 93.2838, 20.2462 ], [ 93.2885, 20.2058 ] ] ], [ [ [ 93.3239, 20.3289 ], [ 93.325, 20.31 ], [ 93.3379, 20.2797 ], [ 93.3472, 20.2771 ], [ 93.3588, 20.2777 ], [ 93.4029, 20.1826 ], [ 93.4138, 20.1246 ], [ 93.3984, 20.1133 ], [ 93.3729, 20.0783 ], [ 93.3824, 20.0273 ], [ 93.3646, 20.0209 ], [ 93.3549, 20.0677 ], [ 93.3156, 20.1165 ], [ 93.3081, 20.1506 ], [ 93.3091, 20.1876 ], [ 93.3, 20.2174 ], [ 93.2817, 20.2548 ], [ 93.2661, 20.3097 ], [ 93.2922, 20.3306 ], [ 93.3239, 20.3289 ] ] ], [ [ [ 92.8393, 20.4419 ], [ 92.8367, 20.4282 ], [ 92.8382, 20.4179 ], [ 92.8402, 20.4146 ], [ 92.8308, 20.3817 ], [ 92.865, 20.3302 ], [ 92.8594, 20.3081 ], [ 92.8304, 20.2886 ], [ 92.7927, 20.2796 ], [ 92.775, 20.2866 ], [ 92.7647, 20.326 ], [ 92.7685, 20.391 ], [ 92.7587, 20.4442 ], [ 92.7728, 20.4414 ], [ 92.7813, 20.4678 ], [ 92.8003, 20.4788 ], [ 92.8251, 20.4474 ], [ 92.8393, 20.4419 ] ] ], [ [ [ 93.1107, 20.4226 ], [ 93.0757, 20.413 ], [ 93.0817, 20.3756 ], [ 93.0593, 20.3578 ], [ 93.0314, 20.3581 ], [ 93.0345, 20.4201 ], [ 93.0635, 20.4822 ], [ 93.083, 20.511 ], [ 93.0952, 20.5086 ], [ 93.0994, 20.4645 ], [ 93.1107, 20.4226 ] ] ], [ [ [ 92.6792, 21.2862 ], [ 92.6947, 21.2565 ], [ 92.7109, 21.2531 ], [ 92.7382, 21.1984 ], [ 92.7547, 21.2071 ], [ 92.7837, 21.1898 ], [ 92.7841, 21.1587 ], [ 92.8012, 21.1419 ], [ 92.7947, 21.1255 ], [ 92.812, 21.0961 ], [ 92.8389, 21.0946 ], [ 92.8651, 21.0727 ], [ 92.9258, 21.1137 ], [ 92.9495, 21.1134 ], [ 92.984, 21.0971 ], [ 93.0064, 21.0708 ], [ 93.0277, 21.0776 ], [ 93.0469, 21.0615 ], [ 93.0978, 21.0814 ], [ 93.1308, 21.0866 ], [ 93.1223, 21.0558 ], [ 93.129, 21.0396 ], [ 93.1415, 20.9698 ], [ 93.1334, 20.9596 ], [ 93.1339, 20.9293 ], [ 93.1449, 20.9111 ], [ 93.16, 20.8435 ], [ 93.1755, 20.8333 ], [ 93.2085, 20.8511 ], [ 93.2474, 20.8306 ], [ 93.2436, 20.8098 ], [ 93.2785, 20.7912 ], [ 93.3111, 20.7909 ], [ 93.3215, 20.7613 ], [ 93.3902, 20.7712 ], [ 93.4054, 20.7318 ], [ 93.4495, 20.7398 ], [ 93.4596, 20.7271 ], [ 93.4811, 20.7439 ], [ 93.5022, 20.7344 ], [ 93.5195, 20.7091 ], [ 93.552, 20.7113 ], [ 93.5637, 20.7342 ], [ 93.5807, 20.7258 ], [ 93.6308, 20.7224 ], [ 93.6296, 20.7528 ], [ 93.6033, 20.7823 ], [ 93.6089, 20.8307 ], [ 93.5989, 20.8469 ], [ 93.6301, 20.8674 ], [ 93.6313, 20.9178 ], [ 93.6434, 20.924 ], [ 93.6958, 20.9202 ], [ 93.696, 20.9053 ], [ 93.7223, 20.8781 ], [ 93.7461, 20.8363 ], [ 93.7495, 20.8046 ], [ 93.7605, 20.7983 ], [ 93.766, 20.7641 ], [ 93.8063, 20.7787 ], [ 93.82, 20.7766 ], [ 93.8301, 20.747 ], [ 93.8505, 20.7095 ], [ 93.8407, 20.6875 ], [ 93.8661, 20.6633 ], [ 93.8634, 20.65 ], [ 93.8521, 20.6444 ], [ 93.8455, 20.6157 ], [ 93.8603, 20.5809 ], [ 93.8571, 20.5771 ], [ 93.8473, 20.5563 ], [ 93.8915, 20.5521 ], [ 93.9286, 20.5653 ], [ 93.9398, 20.5573 ], [ 93.9417, 20.5303 ], [ 93.9695, 20.5248 ], [ 93.9882, 20.498 ], [ 94.0005, 20.4486 ], [ 94.0206, 20.4086 ], [ 94.0391, 20.3999 ], [ 94.0559, 20.3672 ], [ 94.0791, 20.3734 ], [ 94.0812, 20.3361 ], [ 94.1048, 20.2936 ], [ 94.1241, 20.2851 ], [ 94.1349, 20.2437 ], [ 94.1366, 20.2009 ], [ 94.1601, 20.1837 ], [ 94.1718, 20.1259 ], [ 94.2124, 20.1057 ], [ 94.213, 20.0761 ], [ 94.205, 20.062 ], [ 94.227, 20.0271 ], [ 94.2374, 19.9908 ], [ 94.2599, 19.9582 ], [ 94.2691, 19.9312 ], [ 94.2971, 19.9239 ], [ 94.3131, 19.8558 ], [ 94.2808, 19.8301 ], [ 94.3194, 19.7096 ], [ 94.3393, 19.6685 ], [ 94.3377, 19.6294 ], [ 94.3504, 19.6182 ], [ 94.3517, 19.5842 ], [ 94.344, 19.5632 ], [ 94.3733, 19.5215 ], [ 94.4022, 19.4929 ], [ 94.4313, 19.4781 ], [ 94.4467, 19.4362 ], [ 94.4519, 19.4349 ], [ 94.4993, 19.3921 ], [ 94.5138, 19.3494 ], [ 94.5272, 19.3406 ], [ 94.5325, 19.2916 ], [ 94.487, 19.2805 ], [ 94.4789, 19.2655 ], [ 94.4888, 19.2275 ], [ 94.5109, 19.182 ], [ 94.5115, 19.181 ], [ 94.522, 19.1789 ], [ 94.5362, 19.1461 ], [ 94.5581, 19.1431 ], [ 94.5736, 19.155 ], [ 94.5928, 19.1483 ], [ 94.6002, 19.1279 ], [ 94.6211, 19.1162 ], [ 94.6318, 19.0969 ], [ 94.6547, 19.0845 ], [ 94.6703, 19.0522 ], [ 94.6875, 19.0365 ], [ 94.6681, 19.0145 ], [ 94.6972, 18.9598 ], [ 94.7016, 18.9215 ], [ 94.7217, 18.9037 ], [ 94.744, 18.9003 ], [ 94.7613, 18.8627 ], [ 94.7513, 18.8293 ], [ 94.7237, 18.8246 ], [ 94.6856, 18.8027 ], [ 94.7034, 18.7566 ], [ 94.7324, 18.7195 ], [ 94.7397, 18.6707 ], [ 94.7466, 18.6569 ], [ 94.7049, 18.6556 ], [ 94.69, 18.6261 ], [ 94.7275, 18.5768 ], [ 94.7655, 18.5645 ], [ 94.7458, 18.4951 ], [ 94.7339, 18.4679 ], [ 94.7576, 18.4569 ], [ 94.7982, 18.371 ], [ 94.8234, 18.3595 ], [ 94.8415, 18.3411 ], [ 94.8525, 18.314 ], [ 94.8705, 18.314 ], [ 94.8843, 18.2947 ], [ 94.8733, 18.2696 ], [ 94.8856, 18.2562 ], [ 94.8708, 18.2279 ], [ 94.9018, 18.1965 ], [ 94.8932, 18.1733 ], [ 94.8521, 18.1422 ], [ 94.8679, 18.117 ], [ 94.8686, 18.0938 ], [ 94.8812, 18.0804 ], [ 94.8707, 18.0533 ], [ 94.8397, 18.0295 ], [ 94.8172, 17.9944 ], [ 94.8343, 17.9496 ], [ 94.8535, 17.916 ], [ 94.8597, 17.9145 ], [ 94.8815, 17.8984 ], [ 94.8726, 17.8692 ], [ 94.8872, 17.8493 ], [ 94.8836, 17.8232 ], [ 94.8706, 17.8125 ], [ 94.8789, 17.7684 ], [ 94.8714, 17.7204 ], [ 94.8438, 17.7091 ], [ 94.8328, 17.6829 ], [ 94.802, 17.6778 ], [ 94.7876, 17.6547 ], [ 94.7944, 17.6312 ], [ 94.7846, 17.6039 ], [ 94.7897, 17.5838 ], [ 94.7739, 17.5666 ], [ 94.7895, 17.5526 ], [ 94.7907, 17.5323 ], [ 94.8045, 17.5143 ], [ 94.8064, 17.4792 ], [ 94.7885, 17.4659 ], [ 94.7901, 17.4458 ], [ 94.7635, 17.418 ], [ 94.7563, 17.3798 ], [ 94.7424, 17.3803 ], [ 94.729, 17.3398 ], [ 94.7073, 17.3387 ], [ 94.6967, 17.3698 ], [ 94.6722, 17.3718 ], [ 94.6635, 17.3988 ], [ 94.6474, 17.41 ], [ 94.6215, 17.4057 ], [ 94.6105, 17.4286 ], [ 94.5817, 17.4444 ], [ 94.5593, 17.4755 ], [ 94.5622, 17.4967 ], [ 94.5529, 17.5293 ], [ 94.5367, 17.5547 ], [ 94.5567, 17.5975 ], [ 94.5833, 17.5575 ], [ 94.5929, 17.5733 ], [ 94.5693, 17.5947 ], [ 94.5825, 17.6201 ], [ 94.5741, 17.6423 ], [ 94.5557, 17.6465 ], [ 94.5505, 17.6725 ], [ 94.5375, 17.6787 ], [ 94.5293, 17.7043 ], [ 94.5405, 17.7325 ], [ 94.5313, 17.7501 ], [ 94.4779, 17.7853 ], [ 94.4901, 17.8236 ], [ 94.4783, 17.8487 ], [ 94.4863, 17.8593 ], [ 94.4767, 17.8893 ], [ 94.4797, 17.9043 ], [ 94.4383, 17.9771 ], [ 94.4297, 17.9983 ], [ 94.4589, 17.9997 ], [ 94.4817, 18.0259 ], [ 94.4747, 18.0809 ], [ 94.4383, 18.1425 ], [ 94.4417, 18.1604 ], [ 94.4163, 18.2017 ], [ 94.425, 18.2188 ], [ 94.4119, 18.2433 ], [ 94.32, 18.2504 ], [ 94.3179, 18.3 ], [ 94.3379, 18.2942 ], [ 94.3781, 18.3024 ], [ 94.3895, 18.3246 ], [ 94.3929, 18.355 ], [ 94.345, 18.37 ], [ 94.3349, 18.3999 ], [ 94.3096, 18.4462 ], [ 94.2467, 18.5238 ], [ 94.2604, 18.5517 ], [ 94.2387, 18.6417 ], [ 94.2176, 18.67 ], [ 94.1435, 18.7295 ], [ 94.1884, 18.7373 ], [ 94.1883, 18.7718 ], [ 94.1395, 18.8191 ], [ 94.15, 18.8474 ], [ 94.1395, 18.8671 ], [ 94.1017, 18.8726 ], [ 94.0895, 18.8529 ], [ 94.0713, 18.865 ], [ 94.0616, 18.8478 ], [ 94.0246, 18.8495 ], [ 94.0323, 18.8778 ], [ 94.0272, 18.8996 ], [ 94.0433, 18.9459 ], [ 94.0393, 18.9871 ], [ 94.0301, 18.9982 ], [ 94.0655, 19.0426 ], [ 94.0619, 19.0685 ], [ 94.0278, 19.0789 ], [ 94.0349, 19.1221 ], [ 94.0294, 19.1379 ], [ 94.0354, 19.1809 ], [ 94.0527, 19.237 ], [ 94.0386, 19.2679 ], [ 94.0377, 19.3088 ], [ 94.0591, 19.3496 ], [ 94.0346, 19.3438 ], [ 94.025, 19.286 ], [ 94.0338, 19.2161 ], [ 94.0301, 19.2012 ], [ 94.0024, 19.1772 ], [ 94.0091, 19.1593 ], [ 93.9769, 19.1395 ], [ 93.9547, 19.1049 ], [ 93.9537, 19.0501 ], [ 93.9598, 19.0187 ], [ 93.9873, 18.9682 ], [ 93.9706, 18.9307 ], [ 93.9556, 18.9191 ], [ 93.9588, 18.8984 ], [ 93.9383, 18.8838 ], [ 93.9458, 18.8685 ], [ 93.9265, 18.8536 ], [ 93.9154, 18.877 ], [ 93.8968, 18.8916 ], [ 93.8686, 18.8968 ], [ 93.8327, 18.9296 ], [ 93.7636, 18.973 ], [ 93.7272, 18.9689 ], [ 93.7192, 18.9919 ], [ 93.6996, 19.0054 ], [ 93.6821, 19.0031 ], [ 93.6614, 19.0254 ], [ 93.6531, 19.0789 ], [ 93.6384, 19.1347 ], [ 93.6242, 19.1473 ], [ 93.5991, 19.1495 ], [ 93.5895, 19.1726 ], [ 93.5161, 19.2912 ], [ 93.4715, 19.3555 ], [ 93.4747, 19.3963 ], [ 93.4876, 19.4148 ], [ 93.5141, 19.4319 ], [ 93.5459, 19.4363 ], [ 93.5842, 19.4101 ], [ 93.6004, 19.4131 ], [ 93.6118, 19.3838 ], [ 93.636, 19.3608 ], [ 93.634, 19.329 ], [ 93.6661, 19.3138 ], [ 93.6944, 19.3082 ], [ 93.7251, 19.2924 ], [ 93.7267, 19.2703 ], [ 93.7625, 19.2394 ], [ 93.7841, 19.2288 ], [ 93.8168, 19.2248 ], [ 93.8528, 19.2495 ], [ 93.8995, 19.268 ], [ 93.9381, 19.3053 ], [ 93.9204, 19.3123 ], [ 93.8885, 19.2918 ], [ 93.8662, 19.3054 ], [ 93.8396, 19.2958 ], [ 93.7956, 19.3095 ], [ 93.7693, 19.3014 ], [ 93.7414, 19.326 ], [ 93.7253, 19.3796 ], [ 93.7059, 19.4019 ], [ 93.6852, 19.4065 ], [ 93.651, 19.4443 ], [ 93.6347, 19.4819 ], [ 93.6438, 19.5136 ], [ 93.6624, 19.5337 ], [ 93.6689, 19.5566 ], [ 93.6869, 19.5658 ], [ 93.703, 19.5522 ], [ 93.7438, 19.5498 ], [ 93.7493, 19.5257 ], [ 93.7724, 19.5058 ], [ 93.7921, 19.501 ], [ 93.8099, 19.4839 ], [ 93.8312, 19.4787 ], [ 93.8527, 19.4867 ], [ 93.8846, 19.472 ], [ 93.9156, 19.4488 ], [ 93.9451, 19.4452 ], [ 93.9761, 19.4193 ], [ 93.9901, 19.4351 ], [ 93.9909, 19.4596 ], [ 93.9765, 19.4622 ], [ 93.9559, 19.4453 ], [ 93.9173, 19.4548 ], [ 93.9247, 19.4775 ], [ 93.8834, 19.4976 ], [ 93.8647, 19.5169 ], [ 93.7898, 19.5652 ], [ 93.7717, 19.5885 ], [ 93.7201, 19.6183 ], [ 93.7254, 19.6346 ], [ 93.7984, 19.6873 ], [ 93.7628, 19.6767 ], [ 93.7274, 19.6728 ], [ 93.7112, 19.6889 ], [ 93.7123, 19.7381 ], [ 93.7316, 19.7507 ], [ 93.7791, 19.757 ], [ 93.7907, 19.7739 ], [ 93.7848, 19.8016 ], [ 93.7984, 19.828 ], [ 93.7846, 19.868 ], [ 93.742, 19.8832 ], [ 93.7179, 19.8973 ], [ 93.7113, 19.9118 ], [ 93.6813, 19.9208 ], [ 93.6629, 19.9145 ], [ 93.6316, 19.9184 ], [ 93.5849, 19.9003 ], [ 93.561, 19.8851 ], [ 93.5434, 19.8922 ], [ 93.5377, 19.9265 ], [ 93.5191, 19.9229 ], [ 93.5035, 19.9776 ], [ 93.4757, 20.001 ], [ 93.4448, 19.9994 ], [ 93.4509, 19.9475 ], [ 93.4197, 19.9707 ], [ 93.407, 19.9931 ], [ 93.3957, 20.039 ], [ 93.3825, 20.0547 ], [ 93.3819, 20.0858 ], [ 93.409, 20.084 ], [ 93.4207, 20.1164 ], [ 93.4118, 20.1742 ], [ 93.3602, 20.2816 ], [ 93.3415, 20.2793 ], [ 93.3331, 20.2951 ], [ 93.3415, 20.3045 ], [ 93.3277, 20.311 ], [ 93.3267, 20.3313 ], [ 93.2928, 20.3328 ], [ 93.2412, 20.3155 ], [ 93.227, 20.2772 ], [ 93.2501, 20.253 ], [ 93.2131, 20.2453 ], [ 93.2036, 20.221 ], [ 93.1741, 20.1992 ], [ 93.1511, 20.1914 ], [ 93.0842, 20.1935 ], [ 93.0615, 20.1663 ], [ 93.0164, 20.1374 ], [ 92.992, 20.1423 ], [ 92.9967, 20.214 ], [ 93.0103, 20.2582 ], [ 93.0319, 20.293 ], [ 93.0347, 20.3305 ], [ 93.0701, 20.3513 ], [ 93.0911, 20.3842 ], [ 93.0803, 20.412 ], [ 93.107, 20.4151 ], [ 93.1162, 20.4273 ], [ 93.0976, 20.5106 ], [ 93.0726, 20.5281 ], [ 93.052, 20.4764 ], [ 93.0301, 20.445 ], [ 93.0183, 20.4135 ], [ 93.0213, 20.3676 ], [ 93.013, 20.3052 ], [ 92.9766, 20.2524 ], [ 92.941, 20.2116 ], [ 92.9209, 20.1967 ], [ 92.893, 20.1142 ], [ 92.8468, 20.1318 ], [ 92.8304, 20.1507 ], [ 92.7725, 20.185 ], [ 92.7599, 20.197 ], [ 92.7875, 20.2579 ], [ 92.8349, 20.2761 ], [ 92.8731, 20.3105 ], [ 92.8651, 20.3507 ], [ 92.8351, 20.3935 ], [ 92.8555, 20.4147 ], [ 92.8451, 20.4147 ], [ 92.8385, 20.4208 ], [ 92.8398, 20.4321 ], [ 92.8425, 20.4386 ], [ 92.8371, 20.4462 ], [ 92.8279, 20.4487 ], [ 92.8031, 20.4833 ], [ 92.7925, 20.5094 ], [ 92.7527, 20.4791 ], [ 92.7358, 20.516 ], [ 92.7449, 20.552 ], [ 92.7074, 20.6132 ], [ 92.6887, 20.6228 ], [ 92.659, 20.6766 ], [ 92.6433, 20.6789 ], [ 92.6798, 20.6221 ], [ 92.6945, 20.6076 ], [ 92.6938, 20.5866 ], [ 92.7322, 20.5561 ], [ 92.7245, 20.5429 ], [ 92.7213, 20.4988 ], [ 92.744, 20.4378 ], [ 92.7477, 20.4117 ], [ 92.7326, 20.386 ], [ 92.7307, 20.3069 ], [ 92.7448, 20.2832 ], [ 92.7352, 20.2697 ], [ 92.6994, 20.3107 ], [ 92.6616, 20.3878 ], [ 92.6148, 20.4685 ], [ 92.6003, 20.4776 ], [ 92.5687, 20.5159 ], [ 92.5283, 20.5495 ], [ 92.5255, 20.5787 ], [ 92.5117, 20.6059 ], [ 92.4493, 20.6609 ], [ 92.381, 20.7033 ], [ 92.3927, 20.7113 ], [ 92.3722, 20.7646 ], [ 92.359, 20.7825 ], [ 92.3495, 20.8235 ], [ 92.3199, 20.8811 ], [ 92.3041, 20.9273 ], [ 92.2755, 20.9511 ], [ 92.2779, 20.9741 ], [ 92.2573, 21.0777 ], [ 92.2353, 21.0949 ], [ 92.2243, 21.1187 ], [ 92.2081, 21.1179 ], [ 92.198, 21.1377 ], [ 92.2001, 21.1599 ], [ 92.1727, 21.1699 ], [ 92.1814, 21.1903 ], [ 92.2, 21.2024 ], [ 92.2204, 21.2338 ], [ 92.2172, 21.2771 ], [ 92.1993, 21.3076 ], [ 92.1991, 21.3266 ], [ 92.2196, 21.3446 ], [ 92.2514, 21.3568 ], [ 92.255, 21.3879 ], [ 92.2691, 21.3991 ], [ 92.2692, 21.4278 ], [ 92.3291, 21.42 ], [ 92.3432, 21.4657 ], [ 92.3806, 21.4796 ], [ 92.4244, 21.433 ], [ 92.4316, 21.4077 ], [ 92.4265, 21.3747 ], [ 92.4604, 21.3676 ], [ 92.4767, 21.3539 ], [ 92.5067, 21.3572 ], [ 92.5085, 21.3761 ], [ 92.558, 21.3825 ], [ 92.5984, 21.2469 ], [ 92.6178, 21.249 ], [ 92.6303, 21.2687 ], [ 92.6792, 21.2862 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 13, "NAME": "Yangon Region", "PCODE": "MMR013", "ISO": "MM-06" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.3117, 17.1927 ], [ 96.3189, 17.1843 ], [ 96.3335, 17.1686 ], [ 96.3659, 17.1495 ], [ 96.3906, 17.1167 ], [ 96.4037, 17.0729 ], [ 96.3985, 17.0431 ], [ 96.3809, 17.0189 ], [ 96.3797, 16.999 ], [ 96.4057, 16.9962 ], [ 96.4064, 16.98 ], [ 96.4774, 16.9646 ], [ 96.4891, 16.9795 ], [ 96.5169, 16.9941 ], [ 96.5633, 16.9823 ], [ 96.5968, 16.9807 ], [ 96.6383, 16.9951 ], [ 96.6589, 16.9965 ], [ 96.6908, 16.9711 ], [ 96.7176, 16.9646 ], [ 96.7221, 16.9389 ], [ 96.7378, 16.9286 ], [ 96.7564, 16.9399 ], [ 96.7789, 16.9078 ], [ 96.7886, 16.8618 ], [ 96.8375, 16.8217 ], [ 96.823, 16.8018 ], [ 96.8077, 16.756 ], [ 96.7884, 16.7775 ], [ 96.7713, 16.7735 ], [ 96.7309, 16.7246 ], [ 96.7197, 16.6806 ], [ 96.7292, 16.6655 ], [ 96.7114, 16.6355 ], [ 96.643, 16.553 ], [ 96.5532, 16.5071 ], [ 96.4855, 16.4833 ], [ 96.4302, 16.4767 ], [ 96.3919, 16.4847 ], [ 96.351, 16.5253 ], [ 96.2858, 16.5618 ], [ 96.2789, 16.5859 ], [ 96.2594, 16.6144 ], [ 96.2618, 16.6533 ], [ 96.2378, 16.6777 ], [ 96.2255, 16.7095 ], [ 96.2251, 16.7396 ], [ 96.2165, 16.7718 ], [ 96.2571, 16.7895 ], [ 96.2781, 16.8057 ], [ 96.2833, 16.8217 ], [ 96.311, 16.8341 ], [ 96.3171, 16.8783 ], [ 96.3046, 16.88 ], [ 96.3025, 16.8379 ], [ 96.2642, 16.8096 ], [ 96.24, 16.8046 ], [ 96.2083, 16.7829 ], [ 96.1962, 16.7658 ], [ 96.1916, 16.7338 ], [ 96.2104, 16.6753 ], [ 96.2399, 16.6556 ], [ 96.2441, 16.6326 ], [ 96.2329, 16.5955 ], [ 96.2593, 16.5215 ], [ 96.2841, 16.4864 ], [ 96.3243, 16.4606 ], [ 96.3243, 16.4355 ], [ 96.3074, 16.4059 ], [ 96.288, 16.3875 ], [ 96.2503, 16.3669 ], [ 96.2059, 16.3578 ], [ 96.1321, 16.3234 ], [ 96.1013, 16.3292 ], [ 96.0626, 16.3633 ], [ 96.0177, 16.3877 ], [ 96.0031, 16.4036 ], [ 95.9787, 16.4147 ], [ 95.9203, 16.409 ], [ 95.8777, 16.4197 ], [ 95.864, 16.4409 ], [ 95.869, 16.4562 ], [ 95.8589, 16.4677 ], [ 95.8326, 16.4672 ], [ 95.8294, 16.4958 ], [ 95.8824, 16.5412 ], [ 95.8757, 16.5682 ], [ 95.8402, 16.5699 ], [ 95.8241, 16.6149 ], [ 95.8364, 16.6437 ], [ 95.8252, 16.6743 ], [ 95.8427, 16.7134 ], [ 95.8727, 16.7249 ], [ 95.8759, 16.7558 ], [ 95.8659, 16.824 ], [ 95.8373, 16.8701 ], [ 95.8487, 16.8895 ], [ 95.8389, 16.9281 ], [ 95.8673, 16.9801 ], [ 95.8659, 17.0027 ], [ 95.8378, 17.0205 ], [ 95.8209, 17.0404 ], [ 95.8358, 17.0626 ], [ 95.8224, 17.0939 ], [ 95.7839, 17.1508 ], [ 95.7839, 17.1705 ], [ 95.7604, 17.1813 ], [ 95.7473, 17.2007 ], [ 95.7118, 17.2033 ], [ 95.6903, 17.2316 ], [ 95.7055, 17.2577 ], [ 95.7083, 17.2987 ], [ 95.6974, 17.3319 ], [ 95.6838, 17.3487 ], [ 95.618, 17.3483 ], [ 95.6262, 17.3874 ], [ 95.6746, 17.3948 ], [ 95.6903, 17.4085 ], [ 95.6899, 17.4421 ], [ 95.7235, 17.462 ], [ 95.7364, 17.4758 ], [ 95.7361, 17.478 ], [ 95.7365, 17.4776 ], [ 95.7647, 17.4654 ], [ 95.7852, 17.4719 ], [ 95.7783, 17.5018 ], [ 95.8003, 17.5124 ], [ 95.8149, 17.5442 ], [ 95.8477, 17.5708 ], [ 95.8923, 17.5737 ], [ 95.8963, 17.6066 ], [ 95.9063, 17.6327 ], [ 95.9406, 17.6386 ], [ 95.9478, 17.6669 ], [ 95.9767, 17.6863 ], [ 96.0353, 17.7841 ], [ 96.0798, 17.786 ], [ 96.0985, 17.7415 ], [ 96.0964, 17.7185 ], [ 96.081, 17.7064 ], [ 96.1082, 17.6645 ], [ 96.149, 17.6134 ], [ 96.1887, 17.5333 ], [ 96.2047, 17.5204 ], [ 96.2037, 17.4867 ], [ 96.2604, 17.4699 ], [ 96.2781, 17.4473 ], [ 96.2839, 17.4007 ], [ 96.2926, 17.3832 ], [ 96.3108, 17.3148 ], [ 96.3032, 17.2921 ], [ 96.3161, 17.2347 ], [ 96.2948, 17.2243 ], [ 96.3117, 17.1927 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 14, "NAME": "Shan State", "PCODE": "MMR014", "ISO": "MM-17" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.6383, 23.8632 ], [ 97.7066, 23.8653 ], [ 97.7297, 23.8992 ], [ 97.7489, 23.9023 ], [ 97.7707, 23.9364 ], [ 97.8097, 23.9502 ], [ 97.8834, 23.9965 ], [ 97.8968, 24.0154 ], [ 97.9434, 24.022 ], [ 97.9813, 24.0358 ], [ 97.9954, 24.0507 ], [ 98.041, 24.0739 ], [ 98.0769, 24.0801 ], [ 98.1199, 24.0947 ], [ 98.1984, 24.1018 ], [ 98.2204, 24.1162 ], [ 98.2751, 24.1116 ], [ 98.2954, 24.1028 ], [ 98.3436, 24.1013 ], [ 98.3741, 24.1158 ], [ 98.4414, 24.1275 ], [ 98.4907, 24.1249 ], [ 98.5456, 24.1305 ], [ 98.5543, 24.1132 ], [ 98.6117, 24.087 ], [ 98.6376, 24.1045 ], [ 98.6792, 24.1025 ], [ 98.6996, 24.1103 ], [ 98.7174, 24.1307 ], [ 98.7588, 24.1275 ], [ 98.8198, 24.1365 ], [ 98.8381, 24.1297 ], [ 98.8838, 24.1531 ], [ 98.8992, 24.1133 ], [ 98.872, 24.0877 ], [ 98.8637, 24.0657 ], [ 98.8191, 24.0453 ], [ 98.8063, 24.025 ], [ 98.7734, 24.0266 ], [ 98.7699, 23.9993 ], [ 98.7527, 23.9808 ], [ 98.726, 23.9697 ], [ 98.7069, 23.9844 ], [ 98.6776, 23.9629 ], [ 98.6974, 23.9552 ], [ 98.6997, 23.9366 ], [ 98.6837, 23.9055 ], [ 98.701, 23.8698 ], [ 98.7046, 23.8433 ], [ 98.6861, 23.8023 ], [ 98.7706, 23.78 ], [ 98.7867, 23.7829 ], [ 98.8076, 23.7692 ], [ 98.83, 23.7258 ], [ 98.8202, 23.6964 ], [ 98.8385, 23.6887 ], [ 98.8484, 23.6494 ], [ 98.8643, 23.6272 ], [ 98.8894, 23.6177 ], [ 98.8775, 23.5887 ], [ 98.8413, 23.5763 ], [ 98.803, 23.5392 ], [ 98.8188, 23.4884 ], [ 98.8382, 23.4777 ], [ 98.875, 23.4863 ], [ 98.9194, 23.4181 ], [ 98.911, 23.3941 ], [ 98.9208, 23.3777 ], [ 98.923, 23.3295 ], [ 98.9439, 23.3128 ], [ 98.926, 23.2934 ], [ 98.9301, 23.2698 ], [ 98.9101, 23.2481 ], [ 98.9097, 23.233 ], [ 98.8855, 23.1904 ], [ 98.9239, 23.1876 ], [ 98.9667, 23.1711 ], [ 99.0027, 23.1634 ], [ 99.0516, 23.1652 ], [ 99.0483, 23.1233 ], [ 99.1064, 23.0917 ], [ 99.1162, 23.1043 ], [ 99.1671, 23.1067 ], [ 99.175, 23.0949 ], [ 99.2003, 23.1132 ], [ 99.2232, 23.0903 ], [ 99.2599, 23.0824 ], [ 99.2657, 23.1015 ], [ 99.2909, 23.109 ], [ 99.3049, 23.1023 ], [ 99.3253, 23.1146 ], [ 99.3284, 23.1355 ], [ 99.3481, 23.1362 ], [ 99.3855, 23.1005 ], [ 99.4145, 23.0959 ], [ 99.437, 23.0841 ], [ 99.5099, 23.0836 ], [ 99.524, 23.0755 ], [ 99.5327, 23.0518 ], [ 99.518, 23.033 ], [ 99.5213, 22.9942 ], [ 99.551, 22.9597 ], [ 99.5657, 22.9323 ], [ 99.56, 22.9076 ], [ 99.5251, 22.9017 ], [ 99.4935, 22.9116 ], [ 99.4421, 22.9417 ], [ 99.4357, 22.9124 ], [ 99.4551, 22.8486 ], [ 99.4382, 22.8456 ], [ 99.3909, 22.808 ], [ 99.3836, 22.7646 ], [ 99.3264, 22.7529 ], [ 99.3166, 22.7314 ], [ 99.3387, 22.7105 ], [ 99.3475, 22.6731 ], [ 99.3591, 22.6639 ], [ 99.371, 22.6036 ], [ 99.3837, 22.5748 ], [ 99.3597, 22.5405 ], [ 99.3596, 22.5197 ], [ 99.3786, 22.5069 ], [ 99.3699, 22.4891 ], [ 99.3281, 22.4467 ], [ 99.31, 22.4373 ], [ 99.2993, 22.4173 ], [ 99.2573, 22.3991 ], [ 99.2519, 22.3826 ], [ 99.2765, 22.3614 ], [ 99.276, 22.3468 ], [ 99.2529, 22.3309 ], [ 99.2334, 22.2972 ], [ 99.2335, 22.2495 ], [ 99.2036, 22.2254 ], [ 99.1765, 22.1928 ], [ 99.1799, 22.1462 ], [ 99.2087, 22.1254 ], [ 99.274, 22.1001 ], [ 99.2884, 22.1119 ], [ 99.3257, 22.095 ], [ 99.3641, 22.1065 ], [ 99.3936, 22.0982 ], [ 99.4331, 22.1046 ], [ 99.4739, 22.1352 ], [ 99.5255, 22.0969 ], [ 99.5358, 22.1084 ], [ 99.5731, 22.1009 ], [ 99.5982, 22.1136 ], [ 99.6153, 22.096 ], [ 99.6502, 22.0954 ], [ 99.6681, 22.0774 ], [ 99.6955, 22.0729 ], [ 99.6899, 22.0455 ], [ 99.7209, 22.0461 ], [ 99.7189, 22.0612 ], [ 99.7582, 22.0713 ], [ 99.7817, 22.0558 ], [ 99.8089, 22.0531 ], [ 99.8632, 22.0271 ], [ 99.8619, 22.0592 ], [ 99.8786, 22.0692 ], [ 99.9366, 22.061 ], [ 99.966, 22.0457 ], [ 99.9612, 22.0258 ], [ 99.9909, 21.989 ], [ 99.9965, 21.9736 ], [ 99.9752, 21.9138 ], [ 99.9597, 21.9082 ], [ 99.962, 21.8794 ], [ 99.9456, 21.865 ], [ 99.9436, 21.8212 ], [ 99.9573, 21.7968 ], [ 99.9825, 21.7172 ], [ 99.9915, 21.7039 ], [ 100.0526, 21.679 ], [ 100.0711, 21.6926 ], [ 100.1164, 21.7056 ], [ 100.131, 21.7022 ], [ 100.1716, 21.6605 ], [ 100.1526, 21.6504 ], [ 100.1313, 21.6161 ], [ 100.1104, 21.6013 ], [ 100.1214, 21.5709 ], [ 100.1213, 21.5204 ], [ 100.1297, 21.5072 ], [ 100.1693, 21.4851 ], [ 100.1793, 21.5166 ], [ 100.2126, 21.5038 ], [ 100.2322, 21.4721 ], [ 100.2472, 21.4663 ], [ 100.2907, 21.48 ], [ 100.33, 21.5043 ], [ 100.3508, 21.5308 ], [ 100.391, 21.5224 ], [ 100.4321, 21.5405 ], [ 100.4585, 21.486 ], [ 100.4859, 21.456 ], [ 100.5184, 21.4718 ], [ 100.541, 21.4687 ], [ 100.5745, 21.4507 ], [ 100.6507, 21.4841 ], [ 100.6689, 21.4796 ], [ 100.7, 21.5147 ], [ 100.7226, 21.513 ], [ 100.7523, 21.5535 ], [ 100.7738, 21.571 ], [ 100.7906, 21.571 ], [ 100.8129, 21.6214 ], [ 100.8417, 21.6351 ], [ 100.8584, 21.6653 ], [ 100.8831, 21.6898 ], [ 100.9087, 21.6832 ], [ 100.9391, 21.6995 ], [ 100.9743, 21.7003 ], [ 101.0286, 21.7267 ], [ 101.0863, 21.7759 ], [ 101.1078, 21.7743 ], [ 101.1194, 21.7111 ], [ 101.1157, 21.6926 ], [ 101.1523, 21.6692 ], [ 101.1609, 21.6452 ], [ 101.1677, 21.5924 ], [ 101.1475, 21.589 ], [ 101.1391, 21.5719 ], [ 101.1526, 21.5577 ], [ 101.1642, 21.528 ], [ 101.1262, 21.5025 ], [ 101.0875, 21.459 ], [ 101.0622, 21.4565 ], [ 101.0437, 21.4407 ], [ 101.0001, 21.3864 ], [ 100.9771, 21.3887 ], [ 100.9509, 21.3801 ], [ 100.9195, 21.3572 ], [ 100.8842, 21.3475 ], [ 100.8737, 21.3265 ], [ 100.8465, 21.3047 ], [ 100.8094, 21.293 ], [ 100.7798, 21.2973 ], [ 100.7332, 21.3154 ], [ 100.7232, 21.3104 ], [ 100.7, 21.2185 ], [ 100.6978, 21.1792 ], [ 100.6841, 21.1655 ], [ 100.6642, 21.1185 ], [ 100.6417, 21.0956 ], [ 100.6364, 21.0622 ], [ 100.6127, 21.0504 ], [ 100.5933, 21.0289 ], [ 100.5488, 21.0258 ], [ 100.55, 20.985 ], [ 100.5256, 20.9625 ], [ 100.5092, 20.8887 ], [ 100.525, 20.8731 ], [ 100.555, 20.8704 ], [ 100.5653, 20.8797 ], [ 100.6392, 20.8982 ], [ 100.6475, 20.8796 ], [ 100.5978, 20.8346 ], [ 100.5668, 20.8223 ], [ 100.5467, 20.8247 ], [ 100.4953, 20.8157 ], [ 100.4216, 20.8321 ], [ 100.3882, 20.832 ], [ 100.3637, 20.8249 ], [ 100.3456, 20.7986 ], [ 100.3275, 20.7859 ], [ 100.2859, 20.7754 ], [ 100.2501, 20.7459 ], [ 100.2239, 20.715 ], [ 100.1875, 20.6609 ], [ 100.1677, 20.6168 ], [ 100.1633, 20.5895 ], [ 100.1382, 20.5162 ], [ 100.1287, 20.4675 ], [ 100.1179, 20.441 ], [ 100.121, 20.4041 ], [ 100.0882, 20.3727 ], [ 100.0677, 20.3808 ], [ 100.0568, 20.3997 ], [ 100.0362, 20.399 ], [ 99.9894, 20.4326 ], [ 99.9588, 20.4661 ], [ 99.9215, 20.4479 ], [ 99.8684, 20.4429 ], [ 99.8403, 20.4008 ], [ 99.8398, 20.3735 ], [ 99.8082, 20.3356 ], [ 99.755, 20.3396 ], [ 99.7313, 20.351 ], [ 99.7109, 20.325 ], [ 99.6821, 20.317 ], [ 99.6575, 20.3284 ], [ 99.6454, 20.3438 ], [ 99.6123, 20.3314 ], [ 99.5572, 20.3579 ], [ 99.5133, 20.3654 ], [ 99.4997, 20.3826 ], [ 99.4577, 20.3924 ], [ 99.4566, 20.363 ], [ 99.4922, 20.3429 ], [ 99.5094, 20.3142 ], [ 99.523, 20.2333 ], [ 99.5615, 20.2031 ], [ 99.5523, 20.177 ], [ 99.5362, 20.1573 ], [ 99.513, 20.1525 ], [ 99.4819, 20.1086 ], [ 99.4297, 20.0901 ], [ 99.3773, 20.0899 ], [ 99.3289, 20.0642 ], [ 99.2665, 20.1029 ], [ 99.2122, 20.131 ], [ 99.1885, 20.1262 ], [ 99.1551, 20.1301 ], [ 99.1099, 20.099 ], [ 99.0785, 20.1012 ], [ 99.0438, 20.0362 ], [ 99.055, 20.003 ], [ 99.032, 19.9758 ], [ 99.0442, 19.9485 ], [ 99.0398, 19.9297 ], [ 99.0236, 19.921 ], [ 99.0361, 19.8646 ], [ 99.0314, 19.8352 ], [ 99.0154, 19.7952 ], [ 98.932, 19.7642 ], [ 98.9164, 19.7415 ], [ 98.903, 19.7628 ], [ 98.8465, 19.8101 ], [ 98.7979, 19.7762 ], [ 98.7834, 19.7528 ], [ 98.7433, 19.7525 ], [ 98.7153, 19.7654 ], [ 98.7012, 19.7552 ], [ 98.6651, 19.7456 ], [ 98.6302, 19.7261 ], [ 98.6122, 19.7084 ], [ 98.5911, 19.7131 ], [ 98.572, 19.7029 ], [ 98.5551, 19.6808 ], [ 98.5178, 19.7135 ], [ 98.4397, 19.6862 ], [ 98.4077, 19.6931 ], [ 98.392, 19.705 ], [ 98.3744, 19.6941 ], [ 98.3196, 19.6959 ], [ 98.2907, 19.6847 ], [ 98.2482, 19.6764 ], [ 98.2329, 19.6961 ], [ 98.2385, 19.7105 ], [ 98.2016, 19.7327 ], [ 98.1683, 19.7705 ], [ 98.1388, 19.7869 ], [ 98.1014, 19.7723 ], [ 98.0859, 19.806 ], [ 98.0509, 19.8129 ], [ 98.0343, 19.8046 ], [ 98.0374, 19.7673 ], [ 98.0265, 19.7146 ], [ 98.0328, 19.6745 ], [ 98.0476, 19.6532 ], [ 98.0248, 19.6382 ], [ 97.975, 19.6312 ], [ 97.9733, 19.6009 ], [ 97.9378, 19.5923 ], [ 97.8945, 19.5724 ], [ 97.8633, 19.5748 ], [ 97.8496, 19.6069 ], [ 97.8524, 19.6448 ], [ 97.8283, 19.6561 ], [ 97.7963, 19.6471 ], [ 97.7755, 19.6629 ], [ 97.7446, 19.6733 ], [ 97.7435, 19.6586 ], [ 97.7061, 19.6588 ], [ 97.6932, 19.6704 ], [ 97.676, 19.6616 ], [ 97.6606, 19.6737 ], [ 97.6263, 19.6752 ], [ 97.6051, 19.7003 ], [ 97.5618, 19.7322 ], [ 97.5621, 19.7636 ], [ 97.5925, 19.831 ], [ 97.5469, 19.8337 ], [ 97.5278, 19.8654 ], [ 97.534, 19.8814 ], [ 97.5016, 19.9023 ], [ 97.4909, 19.8887 ], [ 97.4464, 19.8812 ], [ 97.4257, 19.9077 ], [ 97.3991, 19.9188 ], [ 97.3851, 19.9564 ], [ 97.3511, 19.9467 ], [ 97.3337, 19.9264 ], [ 97.3294, 19.8976 ], [ 97.3148, 19.9014 ], [ 97.2661, 19.8909 ], [ 97.2218, 19.9076 ], [ 97.2201, 19.9559 ], [ 97.2093, 19.9894 ], [ 97.1689, 19.9967 ], [ 97.1443, 19.9869 ], [ 97.1571, 19.9558 ], [ 97.1409, 19.9031 ], [ 97.1553, 19.8361 ], [ 97.1469, 19.8329 ], [ 97.1341, 19.7991 ], [ 97.1524, 19.7794 ], [ 97.1161, 19.7507 ], [ 97.128, 19.715 ], [ 97.094, 19.7145 ], [ 97.0497, 19.6922 ], [ 97.0153, 19.6907 ], [ 97.0089, 19.6734 ], [ 97.0165, 19.6542 ], [ 97.0059, 19.6402 ], [ 96.9855, 19.6408 ], [ 96.954, 19.6137 ], [ 96.9463, 19.5883 ], [ 96.8987, 19.5571 ], [ 96.8971, 19.5322 ], [ 96.8761, 19.5224 ], [ 96.8736, 19.5073 ], [ 96.91, 19.4806 ], [ 96.9029, 19.4675 ], [ 96.9247, 19.4516 ], [ 96.9356, 19.461 ], [ 96.9659, 19.4271 ], [ 96.9597, 19.4168 ], [ 96.8887, 19.3746 ], [ 96.8751, 19.3559 ], [ 96.8859, 19.3377 ], [ 96.8526, 19.3118 ], [ 96.8342, 19.3327 ], [ 96.8309, 19.3536 ], [ 96.814, 19.3733 ], [ 96.802, 19.403 ], [ 96.7828, 19.407 ], [ 96.7661, 19.4309 ], [ 96.7278, 19.4485 ], [ 96.6982, 19.4514 ], [ 96.6775, 19.4805 ], [ 96.668, 19.5091 ], [ 96.6751, 19.5195 ], [ 96.656, 19.552 ], [ 96.6488, 19.5763 ], [ 96.5966, 19.5758 ], [ 96.5585, 19.5865 ], [ 96.5465, 19.6105 ], [ 96.594, 19.6562 ], [ 96.6407, 19.6733 ], [ 96.657, 19.6897 ], [ 96.6345, 19.7246 ], [ 96.6074, 19.7323 ], [ 96.6018, 19.7495 ], [ 96.5606, 19.791 ], [ 96.5494, 19.8345 ], [ 96.5177, 19.8599 ], [ 96.4545, 19.85 ], [ 96.4444, 19.8799 ], [ 96.455, 19.8937 ], [ 96.442, 19.9152 ], [ 96.393, 19.9645 ], [ 96.3635, 20.013 ], [ 96.3711, 20.0243 ], [ 96.4203, 20.0204 ], [ 96.4437, 20.0327 ], [ 96.443, 20.0519 ], [ 96.4678, 20.056 ], [ 96.4758, 20.07 ], [ 96.456, 20.0977 ], [ 96.4411, 20.1363 ], [ 96.4604, 20.1541 ], [ 96.4858, 20.1627 ], [ 96.5048, 20.1931 ], [ 96.5468, 20.2219 ], [ 96.5155, 20.293 ], [ 96.4965, 20.3154 ], [ 96.4935, 20.3543 ], [ 96.4746, 20.3696 ], [ 96.4645, 20.4505 ], [ 96.4886, 20.4999 ], [ 96.5097, 20.5124 ], [ 96.5333, 20.5066 ], [ 96.5464, 20.5222 ], [ 96.5407, 20.5973 ], [ 96.5202, 20.5778 ], [ 96.5133, 20.6019 ], [ 96.4837, 20.6091 ], [ 96.4664, 20.642 ], [ 96.4525, 20.6538 ], [ 96.4399, 20.6967 ], [ 96.4548, 20.6968 ], [ 96.4643, 20.7211 ], [ 96.4637, 20.7438 ], [ 96.4786, 20.7693 ], [ 96.5118, 20.7844 ], [ 96.5244, 20.7752 ], [ 96.5639, 20.7826 ], [ 96.5594, 20.8257 ], [ 96.5736, 20.8369 ], [ 96.5735, 20.8714 ], [ 96.5497, 20.8931 ], [ 96.523, 20.8868 ], [ 96.5075, 20.9214 ], [ 96.4689, 20.9027 ], [ 96.4338, 20.9181 ], [ 96.4277, 20.943 ], [ 96.3891, 20.9295 ], [ 96.3724, 20.9452 ], [ 96.3429, 20.9433 ], [ 96.2979, 20.9676 ], [ 96.2719, 20.9673 ], [ 96.2385, 21.0039 ], [ 96.2169, 21.0086 ], [ 96.2115, 21.0646 ], [ 96.2302, 21.0885 ], [ 96.2185, 21.1342 ], [ 96.2324, 21.151 ], [ 96.2661, 21.1679 ], [ 96.3312, 21.168 ], [ 96.3571, 21.1605 ], [ 96.3746, 21.1836 ], [ 96.3704, 21.1899 ], [ 96.3654, 21.2154 ], [ 96.3349, 21.2461 ], [ 96.3341, 21.2548 ], [ 96.3206, 21.2905 ], [ 96.3238, 21.309 ], [ 96.3055, 21.3681 ], [ 96.2963, 21.3817 ], [ 96.2961, 21.4366 ], [ 96.2871, 21.4633 ], [ 96.3415, 21.4888 ], [ 96.3256, 21.5282 ], [ 96.3329, 21.5467 ], [ 96.4107, 21.5509 ], [ 96.4354, 21.5613 ], [ 96.4711, 21.5666 ], [ 96.5258, 21.5853 ], [ 96.5319, 21.5893 ], [ 96.5809, 21.5953 ], [ 96.5934, 21.6162 ], [ 96.6344, 21.6448 ], [ 96.6309, 21.6587 ], [ 96.6536, 21.6729 ], [ 96.6831, 21.7115 ], [ 96.7196, 21.7254 ], [ 96.7379, 21.7046 ], [ 96.7664, 21.7158 ], [ 96.7887, 21.7405 ], [ 96.8067, 21.7448 ], [ 96.8206, 21.7662 ], [ 96.8509, 21.7409 ], [ 96.8915, 21.7343 ], [ 96.896, 21.7428 ], [ 96.8782, 21.7971 ], [ 96.8747, 21.8242 ], [ 96.8441, 21.845 ], [ 96.8592, 21.8597 ], [ 96.8294, 21.8963 ], [ 96.8169, 21.9301 ], [ 96.7711, 21.9938 ], [ 96.7589, 21.9983 ], [ 96.7505, 22.0608 ], [ 96.7383, 22.0817 ], [ 96.7161, 22.0901 ], [ 96.6558, 22.0895 ], [ 96.6385, 22.1113 ], [ 96.5644, 22.1136 ], [ 96.548, 22.1396 ], [ 96.5258, 22.1468 ], [ 96.4947, 22.1428 ], [ 96.4843, 22.1527 ], [ 96.4792, 22.1968 ], [ 96.4814, 22.2291 ], [ 96.4535, 22.2991 ], [ 96.4219, 22.3322 ], [ 96.4093, 22.364 ], [ 96.3881, 22.3714 ], [ 96.3376, 22.3666 ], [ 96.3245, 22.3753 ], [ 96.3201, 22.4537 ], [ 96.3337, 22.4672 ], [ 96.3314, 22.504 ], [ 96.2896, 22.5288 ], [ 96.2977, 22.5731 ], [ 96.2793, 22.5854 ], [ 96.2399, 22.6393 ], [ 96.2344, 22.6932 ], [ 96.2387, 22.6943 ], [ 96.2042, 22.7375 ], [ 96.2239, 22.7591 ], [ 96.2267, 22.7646 ], [ 96.2382, 22.7673 ], [ 96.2409, 22.7695 ], [ 96.2623, 22.7798 ], [ 96.302, 22.7855 ], [ 96.3545, 22.778 ], [ 96.3825, 22.8017 ], [ 96.4175, 22.8008 ], [ 96.45, 22.7857 ], [ 96.5141, 22.806 ], [ 96.5429, 22.8308 ], [ 96.6072, 22.816 ], [ 96.6651, 22.8496 ], [ 96.6723, 22.8921 ], [ 96.7038, 22.9325 ], [ 96.7135, 22.9604 ], [ 96.6799, 22.9855 ], [ 96.6329, 22.9767 ], [ 96.6135, 22.993 ], [ 96.5881, 22.9968 ], [ 96.5689, 23.0153 ], [ 96.5418, 23.0265 ], [ 96.5152, 23.0532 ], [ 96.486, 23.0413 ], [ 96.4667, 23.0226 ], [ 96.4547, 23.0335 ], [ 96.4332, 23.0222 ], [ 96.4104, 23.024 ], [ 96.3904, 23.0137 ], [ 96.3353, 23.0042 ], [ 96.3147, 23.0119 ], [ 96.2898, 23.0035 ], [ 96.237, 23.0136 ], [ 96.2125, 23.0249 ], [ 96.1937, 23.0466 ], [ 96.204, 23.0636 ], [ 96.1958, 23.0871 ], [ 96.1532, 23.1213 ], [ 96.1521, 23.1598 ], [ 96.171, 23.1757 ], [ 96.1883, 23.2292 ], [ 96.1828, 23.2729 ], [ 96.1984, 23.3004 ], [ 96.1823, 23.3152 ], [ 96.171, 23.3198 ], [ 96.1702, 23.3457 ], [ 96.1903, 23.354 ], [ 96.2176, 23.3317 ], [ 96.2337, 23.3397 ], [ 96.2276, 23.3681 ], [ 96.2494, 23.4003 ], [ 96.2777, 23.4202 ], [ 96.298, 23.4463 ], [ 96.2972, 23.4695 ], [ 96.3172, 23.4766 ], [ 96.31, 23.4982 ], [ 96.3389, 23.5132 ], [ 96.3575, 23.5489 ], [ 96.3926, 23.5696 ], [ 96.4179, 23.6243 ], [ 96.4373, 23.6345 ], [ 96.4322, 23.6716 ], [ 96.4377, 23.6951 ], [ 96.4715, 23.726 ], [ 96.4884, 23.7258 ], [ 96.5148, 23.7525 ], [ 96.5382, 23.8176 ], [ 96.5605, 23.8251 ], [ 96.5572, 23.8558 ], [ 96.5269, 23.8822 ], [ 96.5281, 23.9091 ], [ 96.509, 23.9509 ], [ 96.5174, 23.9697 ], [ 96.5049, 24.0072 ], [ 96.4687, 24.0168 ], [ 96.4297, 23.9963 ], [ 96.4092, 24.0059 ], [ 96.3901, 24.0279 ], [ 96.4129, 24.057 ], [ 96.4567, 24.1008 ], [ 96.5021, 24.1109 ], [ 96.5192, 24.1012 ], [ 96.5582, 24.1549 ], [ 96.5739, 24.1588 ], [ 96.6274, 24.1457 ], [ 96.6631, 24.1577 ], [ 96.6662, 24.139 ], [ 96.6868, 24.1266 ], [ 96.6935, 24.1032 ], [ 96.6776, 24.0863 ], [ 96.6931, 24.0732 ], [ 96.7031, 24.0292 ], [ 96.6789, 23.9999 ], [ 96.7299, 23.9921 ], [ 96.7583, 23.9955 ], [ 96.7887, 24.0146 ], [ 96.8426, 24.0258 ], [ 96.8593, 24.0021 ], [ 96.832, 23.9562 ], [ 96.8404, 23.9361 ], [ 96.8427, 23.8893 ], [ 96.8687, 23.8847 ], [ 96.8861, 23.8472 ], [ 96.8802, 23.8228 ], [ 96.8546, 23.787 ], [ 96.8242, 23.7773 ], [ 96.7965, 23.7851 ], [ 96.7758, 23.7654 ], [ 96.7843, 23.743 ], [ 96.8563, 23.7323 ], [ 96.8695, 23.7162 ], [ 96.8925, 23.7197 ], [ 96.959, 23.712 ], [ 96.9746, 23.7162 ], [ 97.0041, 23.696 ], [ 97.0051, 23.6631 ], [ 97.0147, 23.644 ], [ 97.0712, 23.6403 ], [ 97.0886, 23.6341 ], [ 97.1206, 23.665 ], [ 97.1521, 23.676 ], [ 97.1796, 23.6712 ], [ 97.2686, 23.7125 ], [ 97.3044, 23.7045 ], [ 97.3207, 23.7195 ], [ 97.3404, 23.6949 ], [ 97.3481, 23.7266 ], [ 97.3727, 23.7454 ], [ 97.4086, 23.739 ], [ 97.4667, 23.7809 ], [ 97.4532, 23.7986 ], [ 97.4755, 23.8186 ], [ 97.5465, 23.8228 ], [ 97.5719, 23.8155 ], [ 97.6062, 23.8241 ], [ 97.6383, 23.8632 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 17, "NAME": "Ayeyarwady Region", "PCODE": "MMR017", "ISO": "MM-07" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 95.2486, 15.8501 ], [ 95.2309, 15.871 ], [ 95.2737, 15.9566 ], [ 95.2722, 16.0313 ], [ 95.2963, 16.0564 ], [ 95.3035, 16.077 ], [ 95.3233, 16.0868 ], [ 95.3446, 16.0419 ], [ 95.3421, 15.9863 ], [ 95.3358, 15.9678 ], [ 95.3135, 15.9456 ], [ 95.2755, 15.8775 ], [ 95.2486, 15.8501 ] ] ], [ [ [ 95.1827, 16.1123 ], [ 95.1999, 16.0983 ], [ 95.1768, 16.085 ], [ 95.1814, 16.0337 ], [ 95.175, 16.0293 ], [ 95.1326, 16.0429 ], [ 95.1198, 16.0386 ], [ 95.1108, 16.0228 ], [ 95.1124, 16.0023 ], [ 95.0973, 15.9908 ], [ 95.0897, 16.034 ], [ 95.0932, 16.0532 ], [ 95.1135, 16.0845 ], [ 95.1704, 16.118 ], [ 95.1827, 16.1123 ] ] ], [ [ [ 95.3248, 16.1199 ], [ 95.3044, 16.1529 ], [ 95.3171, 16.1796 ], [ 95.3647, 16.2104 ], [ 95.3627, 16.1659 ], [ 95.3248, 16.1199 ] ] ], [ [ [ 94.6426, 16.1089 ], [ 94.6283, 16.0815 ], [ 94.6021, 16.0561 ], [ 94.5759, 16.0016 ], [ 94.55, 15.9906 ], [ 94.5132, 15.9882 ], [ 94.4795, 15.9668 ], [ 94.4699, 15.9253 ], [ 94.4543, 15.9269 ], [ 94.4393, 15.9091 ], [ 94.4226, 15.8638 ], [ 94.3999, 15.877 ], [ 94.3892, 15.9144 ], [ 94.3771, 15.9807 ], [ 94.3832, 16.0024 ], [ 94.4448, 16.0194 ], [ 94.4603, 16.0311 ], [ 94.5015, 16.0905 ], [ 94.5192, 16.1281 ], [ 94.5411, 16.1436 ], [ 94.5822, 16.2022 ], [ 94.6131, 16.2295 ], [ 94.6505, 16.2488 ], [ 94.6508, 16.2302 ], [ 94.6675, 16.203 ], [ 94.6426, 16.1089 ] ] ], [ [ [ 95.1243, 16.1451 ], [ 95.1119, 16.1143 ], [ 95.0729, 16.0819 ], [ 95.0533, 16.0477 ], [ 95.0517, 16.0233 ], [ 95.0685, 15.9767 ], [ 95.0671, 15.9465 ], [ 95.0519, 15.8526 ], [ 95.0457, 15.8412 ], [ 95.0239, 15.8509 ], [ 95.0065, 15.8449 ], [ 94.9851, 15.853 ], [ 94.9784, 15.8414 ], [ 94.9823, 15.8003 ], [ 94.9791, 15.7845 ], [ 94.9866, 15.7686 ], [ 94.9763, 15.7545 ], [ 94.9496, 15.7428 ], [ 94.8601, 15.7569 ], [ 94.8439, 15.7675 ], [ 94.8349, 15.7903 ], [ 94.847, 15.8106 ], [ 94.8763, 15.8165 ], [ 94.8756, 15.8284 ], [ 94.846, 15.832 ], [ 94.8367, 15.8477 ], [ 94.8508, 15.8707 ], [ 94.8483, 15.893 ], [ 94.82, 15.9411 ], [ 94.8369, 15.9699 ], [ 94.8715, 16.0026 ], [ 94.8928, 16.0019 ], [ 94.9165, 16.0255 ], [ 94.9158, 16.0473 ], [ 94.8981, 16.0759 ], [ 94.9317, 16.0878 ], [ 94.9533, 16.1395 ], [ 95.0125, 16.1363 ], [ 95.0155, 16.1667 ], [ 95.0475, 16.1883 ], [ 95.0547, 16.2197 ], [ 95.0631, 16.2253 ], [ 95.0699, 16.2435 ], [ 95.0795, 16.2503 ], [ 95.0834, 16.2604 ], [ 95.0949, 16.2647 ], [ 95.1075, 16.2917 ], [ 95.1419, 16.2975 ], [ 95.1317, 16.2599 ], [ 95.1471, 16.2393 ], [ 95.1161, 16.2115 ], [ 95.1191, 16.1907 ], [ 95.1343, 16.1685 ], [ 95.1243, 16.1451 ] ] ], [ [ [ 94.6665, 16.3385 ], [ 94.6406, 16.286 ], [ 94.6085, 16.2432 ], [ 94.5773, 16.2288 ], [ 94.5676, 16.2462 ], [ 94.6003, 16.2705 ], [ 94.6141, 16.3003 ], [ 94.6122, 16.329 ], [ 94.6665, 16.3385 ] ] ], [ [ [ 95.8859, 16.1969 ], [ 95.8713, 16.1908 ], [ 95.859, 16.2103 ], [ 95.89, 16.2283 ], [ 95.9069, 16.3044 ], [ 95.906, 16.3348 ], [ 95.9292, 16.376 ], [ 95.9505, 16.3416 ], [ 95.9496, 16.2926 ], [ 95.9441, 16.2626 ], [ 95.8859, 16.1969 ] ] ], [ [ [ 95.9312, 16.2138 ], [ 95.9508, 16.2505 ], [ 95.9572, 16.2849 ], [ 95.9679, 16.3072 ], [ 95.9649, 16.35 ], [ 95.992, 16.3879 ], [ 96.0117, 16.3831 ], [ 96.0695, 16.3443 ], [ 96.0759, 16.3142 ], [ 96.0504, 16.2903 ], [ 96.0175, 16.2482 ], [ 95.9974, 16.2335 ], [ 95.9312, 16.2138 ] ] ], [ [ [ 94.7375, 16.628 ], [ 94.7452, 16.6257 ], [ 94.7554, 16.6257 ], [ 94.7565, 16.6153 ], [ 94.7695, 16.6064 ], [ 94.7648, 16.5849 ], [ 94.7464, 16.582 ], [ 94.7373, 16.5739 ], [ 94.7235, 16.5107 ], [ 94.6876, 16.4919 ], [ 94.6735, 16.526 ], [ 94.6957, 16.5509 ], [ 94.6993, 16.6153 ], [ 94.7375, 16.628 ] ] ], [ [ [ 95.557, 17.6346 ], [ 95.568, 17.6242 ], [ 95.5822, 17.6103 ], [ 95.6168, 17.6265 ], [ 95.6284, 17.6231 ], [ 95.6595, 17.6065 ], [ 95.678, 17.5867 ], [ 95.6772, 17.5506 ], [ 95.7018, 17.5242 ], [ 95.7169, 17.52 ], [ 95.733, 17.4824 ], [ 95.7361, 17.478 ], [ 95.7364, 17.4758 ], [ 95.7235, 17.462 ], [ 95.6899, 17.4421 ], [ 95.6903, 17.4085 ], [ 95.6746, 17.3948 ], [ 95.6262, 17.3874 ], [ 95.618, 17.3483 ], [ 95.6838, 17.3487 ], [ 95.6974, 17.3319 ], [ 95.7083, 17.2987 ], [ 95.7055, 17.2577 ], [ 95.6903, 17.2316 ], [ 95.7118, 17.2033 ], [ 95.7473, 17.2007 ], [ 95.7604, 17.1813 ], [ 95.7839, 17.1705 ], [ 95.7839, 17.1508 ], [ 95.8224, 17.0939 ], [ 95.8358, 17.0626 ], [ 95.8209, 17.0404 ], [ 95.8378, 17.0205 ], [ 95.8659, 17.0027 ], [ 95.8673, 16.9801 ], [ 95.8389, 16.9281 ], [ 95.8487, 16.8895 ], [ 95.8373, 16.8701 ], [ 95.8659, 16.824 ], [ 95.8759, 16.7558 ], [ 95.8727, 16.7249 ], [ 95.8427, 16.7134 ], [ 95.8252, 16.6743 ], [ 95.8364, 16.6437 ], [ 95.8241, 16.6149 ], [ 95.8402, 16.5699 ], [ 95.8757, 16.5682 ], [ 95.8824, 16.5412 ], [ 95.8294, 16.4958 ], [ 95.8187, 16.4585 ], [ 95.8485, 16.4629 ], [ 95.8623, 16.4572 ], [ 95.8623, 16.4302 ], [ 95.8797, 16.4143 ], [ 95.9201, 16.399 ], [ 95.9293, 16.3835 ], [ 95.9046, 16.3379 ], [ 95.9036, 16.3029 ], [ 95.8855, 16.2419 ], [ 95.8682, 16.2304 ], [ 95.8396, 16.1868 ], [ 95.775, 16.1345 ], [ 95.7466, 16.1277 ], [ 95.715, 16.0733 ], [ 95.7051, 16.0688 ], [ 95.7105, 16.0356 ], [ 95.6712, 15.9657 ], [ 95.6592, 15.9561 ], [ 95.6451, 15.9256 ], [ 95.5752, 15.8587 ], [ 95.5648, 15.845 ], [ 95.5089, 15.7935 ], [ 95.5115, 15.7779 ], [ 95.4592, 15.7385 ], [ 95.4001, 15.7147 ], [ 95.3232, 15.7061 ], [ 95.2861, 15.7169 ], [ 95.2787, 15.7277 ], [ 95.2885, 15.7521 ], [ 95.2685, 15.8028 ], [ 95.2779, 15.8481 ], [ 95.2929, 15.8593 ], [ 95.3121, 15.9055 ], [ 95.3355, 15.9235 ], [ 95.3479, 15.9427 ], [ 95.3611, 16.0003 ], [ 95.3565, 16.0621 ], [ 95.3295, 16.1071 ], [ 95.349, 16.1291 ], [ 95.3685, 16.1691 ], [ 95.3741, 16.2183 ], [ 95.324, 16.1969 ], [ 95.3097, 16.1802 ], [ 95.3005, 16.1473 ], [ 95.3229, 16.0937 ], [ 95.3031, 16.0859 ], [ 95.2913, 16.0611 ], [ 95.2662, 16.034 ], [ 95.2661, 15.9905 ], [ 95.2357, 15.9402 ], [ 95.2225, 15.8821 ], [ 95.2135, 15.8602 ], [ 95.2251, 15.8015 ], [ 95.1975, 15.7781 ], [ 95.1735, 15.7723 ], [ 95.1261, 15.7919 ], [ 95.1141, 15.8041 ], [ 95.1095, 15.8417 ], [ 95.1105, 15.8967 ], [ 95.1179, 15.9175 ], [ 95.1279, 15.9819 ], [ 95.1157, 16.0243 ], [ 95.123, 16.035 ], [ 95.1747, 16.0239 ], [ 95.1859, 16.0305 ], [ 95.1885, 16.0465 ], [ 95.1831, 16.0871 ], [ 95.2001, 16.0925 ], [ 95.2139, 16.1143 ], [ 95.1638, 16.1244 ], [ 95.1305, 16.1223 ], [ 95.1417, 16.1706 ], [ 95.1245, 16.217 ], [ 95.1503, 16.2368 ], [ 95.1365, 16.2695 ], [ 95.1458, 16.2956 ], [ 95.1149, 16.3249 ], [ 95.1055, 16.2926 ], [ 95.0891, 16.2653 ], [ 95.0796, 16.262 ], [ 95.0786, 16.2547 ], [ 95.0664, 16.2425 ], [ 95.0617, 16.2293 ], [ 95.0509, 16.2233 ], [ 95.0436, 16.1912 ], [ 95.0079, 16.1672 ], [ 95.0113, 16.1417 ], [ 94.9504, 16.1454 ], [ 94.9253, 16.0917 ], [ 94.9017, 16.088 ], [ 94.8935, 16.0712 ], [ 94.9131, 16.0333 ], [ 94.8888, 16.0074 ], [ 94.8781, 16.0129 ], [ 94.8747, 16.059 ], [ 94.8652, 16.0981 ], [ 94.8553, 16.1143 ], [ 94.8818, 16.186 ], [ 94.9538, 16.1996 ], [ 94.972, 16.2126 ], [ 95.0067, 16.2652 ], [ 94.9437, 16.2105 ], [ 94.9111, 16.2094 ], [ 94.8693, 16.1896 ], [ 94.8364, 16.1108 ], [ 94.8458, 16.0854 ], [ 94.832, 16.0535 ], [ 94.7971, 15.9903 ], [ 94.8067, 15.9731 ], [ 94.7598, 15.9238 ], [ 94.7194, 15.8545 ], [ 94.6801, 15.8428 ], [ 94.6442, 15.8635 ], [ 94.6058, 15.9142 ], [ 94.619, 15.9361 ], [ 94.6616, 15.9542 ], [ 94.7035, 15.998 ], [ 94.7294, 16.0308 ], [ 94.7328, 16.0681 ], [ 94.7244, 16.0792 ], [ 94.6844, 16.0108 ], [ 94.6873, 15.9973 ], [ 94.6361, 15.9629 ], [ 94.59, 15.9454 ], [ 94.5777, 15.9343 ], [ 94.5527, 15.9471 ], [ 94.5515, 15.9646 ], [ 94.5833, 15.9849 ], [ 94.6084, 16.0226 ], [ 94.6269, 16.04 ], [ 94.6519, 16.0775 ], [ 94.6745, 16.1281 ], [ 94.6739, 16.1551 ], [ 94.6822, 16.1913 ], [ 94.6647, 16.2365 ], [ 94.6597, 16.263 ], [ 94.6833, 16.3034 ], [ 94.6893, 16.3474 ], [ 94.7087, 16.3739 ], [ 94.7075, 16.4355 ], [ 94.6915, 16.4873 ], [ 94.7237, 16.5019 ], [ 94.7419, 16.5529 ], [ 94.7421, 16.5753 ], [ 94.7823, 16.5817 ], [ 94.7697, 16.5877 ], [ 94.7724, 16.608 ], [ 94.7577, 16.6174 ], [ 94.7567, 16.6269 ], [ 94.7403, 16.6276 ], [ 94.7321, 16.6445 ], [ 94.7159, 16.6586 ], [ 94.7113, 16.6487 ], [ 94.7264, 16.6427 ], [ 94.7295, 16.631 ], [ 94.7, 16.6249 ], [ 94.6886, 16.5949 ], [ 94.6904, 16.5582 ], [ 94.6639, 16.5307 ], [ 94.6731, 16.4623 ], [ 94.6799, 16.4375 ], [ 94.6769, 16.3847 ], [ 94.6528, 16.3963 ], [ 94.6353, 16.3894 ], [ 94.619, 16.3505 ], [ 94.5991, 16.3172 ], [ 94.6044, 16.2848 ], [ 94.5637, 16.2602 ], [ 94.5316, 16.2891 ], [ 94.5076, 16.2954 ], [ 94.4846, 16.2846 ], [ 94.5101, 16.2687 ], [ 94.5178, 16.2455 ], [ 94.5059, 16.2347 ], [ 94.5222, 16.2154 ], [ 94.5074, 16.1767 ], [ 94.4547, 16.1155 ], [ 94.4338, 16.0792 ], [ 94.4132, 16.0619 ], [ 94.3637, 16.0515 ], [ 94.3359, 16.0172 ], [ 94.2773, 15.9979 ], [ 94.2748, 15.9855 ], [ 94.246, 15.9523 ], [ 94.2151, 16.0055 ], [ 94.2021, 16.0189 ], [ 94.2004, 16.1133 ], [ 94.2023, 16.1457 ], [ 94.2228, 16.1743 ], [ 94.2101, 16.2015 ], [ 94.2208, 16.2098 ], [ 94.2259, 16.2493 ], [ 94.2396, 16.2721 ], [ 94.2267, 16.3151 ], [ 94.2305, 16.3401 ], [ 94.244, 16.3671 ], [ 94.2517, 16.4147 ], [ 94.2644, 16.4476 ], [ 94.2609, 16.4733 ], [ 94.2701, 16.4993 ], [ 94.2551, 16.5367 ], [ 94.2833, 16.5447 ], [ 94.2983, 16.5259 ], [ 94.3297, 16.5425 ], [ 94.3469, 16.572 ], [ 94.3193, 16.6051 ], [ 94.3509, 16.6317 ], [ 94.3619, 16.6681 ], [ 94.3525, 16.6905 ], [ 94.3571, 16.7317 ], [ 94.3913, 16.7717 ], [ 94.4017, 16.7963 ], [ 94.3871, 16.8575 ], [ 94.3744, 16.888 ], [ 94.3851, 16.9178 ], [ 94.4043, 16.8963 ], [ 94.4358, 16.9258 ], [ 94.4355, 16.9567 ], [ 94.4505, 16.9693 ], [ 94.4627, 17.0093 ], [ 94.4521, 17.0233 ], [ 94.4493, 17.0545 ], [ 94.4601, 17.0789 ], [ 94.4756, 17.0906 ], [ 94.4894, 17.117 ], [ 94.4689, 17.1467 ], [ 94.4483, 17.1543 ], [ 94.4425, 17.1833 ], [ 94.4902, 17.1814 ], [ 94.5129, 17.1717 ], [ 94.5329, 17.1883 ], [ 94.5117, 17.2133 ], [ 94.4955, 17.2183 ], [ 94.5001, 17.2443 ], [ 94.4923, 17.2638 ], [ 94.5083, 17.3021 ], [ 94.5287, 17.3143 ], [ 94.5667, 17.315 ], [ 94.5617, 17.3309 ], [ 94.5697, 17.3675 ], [ 94.5687, 17.3967 ], [ 94.5567, 17.4079 ], [ 94.5593, 17.4755 ], [ 94.5817, 17.4444 ], [ 94.6105, 17.4286 ], [ 94.6215, 17.4057 ], [ 94.6474, 17.41 ], [ 94.6635, 17.3988 ], [ 94.6722, 17.3718 ], [ 94.6967, 17.3698 ], [ 94.7073, 17.3387 ], [ 94.729, 17.3398 ], [ 94.7424, 17.3803 ], [ 94.7563, 17.3798 ], [ 94.7635, 17.418 ], [ 94.7901, 17.4458 ], [ 94.7885, 17.4659 ], [ 94.8064, 17.4792 ], [ 94.8045, 17.5143 ], [ 94.7907, 17.5323 ], [ 94.7895, 17.5526 ], [ 94.7739, 17.5666 ], [ 94.7897, 17.5838 ], [ 94.7846, 17.6039 ], [ 94.7944, 17.6312 ], [ 94.7876, 17.6547 ], [ 94.802, 17.6778 ], [ 94.8328, 17.6829 ], [ 94.8438, 17.7091 ], [ 94.8714, 17.7204 ], [ 94.8789, 17.7684 ], [ 94.8706, 17.8125 ], [ 94.8836, 17.8232 ], [ 94.8872, 17.8493 ], [ 94.8726, 17.8692 ], [ 94.8815, 17.8984 ], [ 94.8597, 17.9145 ], [ 94.8535, 17.916 ], [ 94.8343, 17.9496 ], [ 94.8172, 17.9944 ], [ 94.8397, 18.0295 ], [ 94.8707, 18.0533 ], [ 94.8812, 18.0804 ], [ 94.8686, 18.0938 ], [ 94.8679, 18.117 ], [ 94.8521, 18.1422 ], [ 94.8932, 18.1733 ], [ 94.9018, 18.1965 ], [ 94.8708, 18.2279 ], [ 94.8856, 18.2562 ], [ 94.8733, 18.2696 ], [ 94.8843, 18.2947 ], [ 94.8705, 18.314 ], [ 94.8525, 18.314 ], [ 94.8415, 18.3411 ], [ 94.8234, 18.3595 ], [ 94.8654, 18.4089 ], [ 94.9265, 18.4262 ], [ 94.9395, 18.4526 ], [ 94.969, 18.4154 ], [ 94.9899, 18.4128 ], [ 95.0069, 18.3823 ], [ 95.039, 18.3694 ], [ 95.0777, 18.3787 ], [ 95.0956, 18.4038 ], [ 95.097, 18.4284 ], [ 95.1122, 18.4408 ], [ 95.0999, 18.4847 ], [ 95.1169, 18.5105 ], [ 95.1558, 18.49 ], [ 95.1746, 18.4905 ], [ 95.1913, 18.4732 ], [ 95.1884, 18.431 ], [ 95.1937, 18.4164 ], [ 95.2177, 18.3979 ], [ 95.2622, 18.3736 ], [ 95.2581, 18.3411 ], [ 95.2716, 18.3214 ], [ 95.2907, 18.3164 ], [ 95.3347, 18.2861 ], [ 95.3472, 18.2554 ], [ 95.3814, 18.2317 ], [ 95.4204, 18.2136 ], [ 95.3964, 18.1623 ], [ 95.4315, 18.0766 ], [ 95.4617, 18.0206 ], [ 95.466, 17.9894 ], [ 95.4602, 17.9651 ], [ 95.4641, 17.93 ], [ 95.4574, 17.9116 ], [ 95.4813, 17.8912 ], [ 95.487, 17.8714 ], [ 95.4746, 17.8304 ], [ 95.4906, 17.7979 ], [ 95.4859, 17.7811 ], [ 95.4567, 17.7632 ], [ 95.4317, 17.7397 ], [ 95.432, 17.7206 ], [ 95.4641, 17.6843 ], [ 95.5035, 17.6491 ], [ 95.538, 17.6441 ], [ 95.557, 17.6346 ] ] ], [ [ [ 95.0019, 15.8443 ], [ 95.0076, 15.844 ], [ 95.0241, 15.8491 ], [ 95.0425, 15.834 ], [ 95.0343, 15.8059 ], [ 94.996, 15.7755 ], [ 94.9829, 15.7814 ], [ 94.9861, 15.8021 ], [ 94.9842, 15.8504 ], [ 95.0019, 15.8443 ] ] ], [ [ [ 94.819, 15.8403 ], [ 94.8088, 15.7888 ], [ 94.7604, 15.7927 ], [ 94.7409, 15.8001 ], [ 94.7305, 15.826 ], [ 94.7722, 15.865 ], [ 94.774, 15.8851 ], [ 94.7998, 15.9319 ], [ 94.8136, 15.9403 ], [ 94.8278, 15.8929 ], [ 94.8424, 15.8725 ], [ 94.819, 15.8403 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ID": 18, "NAME": "Naypyitaw", "PCODE": "MMR018", "ISO": "MM-18" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.5048, 20.1931 ], [ 96.4858, 20.1627 ], [ 96.4604, 20.1541 ], [ 96.4411, 20.1363 ], [ 96.456, 20.0977 ], [ 96.4758, 20.07 ], [ 96.4678, 20.056 ], [ 96.443, 20.0519 ], [ 96.4437, 20.0327 ], [ 96.4203, 20.0204 ], [ 96.3711, 20.0243 ], [ 96.3635, 20.013 ], [ 96.393, 19.9645 ], [ 96.442, 19.9152 ], [ 96.455, 19.8937 ], [ 96.4444, 19.8799 ], [ 96.4545, 19.85 ], [ 96.5177, 19.8599 ], [ 96.5494, 19.8345 ], [ 96.5606, 19.791 ], [ 96.6018, 19.7495 ], [ 96.6074, 19.7323 ], [ 96.6345, 19.7246 ], [ 96.657, 19.6897 ], [ 96.6407, 19.6733 ], [ 96.594, 19.6562 ], [ 96.5465, 19.6105 ], [ 96.5585, 19.5865 ], [ 96.5966, 19.5758 ], [ 96.6488, 19.5763 ], [ 96.656, 19.552 ], [ 96.6751, 19.5195 ], [ 96.668, 19.5091 ], [ 96.6502, 19.5002 ], [ 96.636, 19.477 ], [ 96.6313, 19.4427 ], [ 96.6122, 19.4275 ], [ 96.5903, 19.4556 ], [ 96.5628, 19.4731 ], [ 96.5249, 19.4711 ], [ 96.5004, 19.4899 ], [ 96.4704, 19.4765 ], [ 96.4455, 19.4818 ], [ 96.3916, 19.4739 ], [ 96.3135, 19.4792 ], [ 96.2802, 19.4733 ], [ 96.2691, 19.4832 ], [ 96.1938, 19.4822 ], [ 96.169, 19.4866 ], [ 96.1607, 19.4527 ], [ 96.1375, 19.4428 ], [ 96.1292, 19.4174 ], [ 96.1052, 19.4173 ], [ 96.0536, 19.4627 ], [ 96.0351, 19.4539 ], [ 95.9731, 19.4762 ], [ 95.9087, 19.4744 ], [ 95.8948, 19.4376 ], [ 95.8715, 19.4367 ], [ 95.8388, 19.446 ], [ 95.8306, 19.4563 ], [ 95.7949, 19.4596 ], [ 95.7461, 19.4908 ], [ 95.7301, 19.522 ], [ 95.7428, 19.5364 ], [ 95.723, 19.5615 ], [ 95.7286, 19.6155 ], [ 95.7127, 19.6283 ], [ 95.7258, 19.6483 ], [ 95.762, 19.6793 ], [ 95.7803, 19.7189 ], [ 95.7723, 19.7593 ], [ 95.7745, 19.7667 ], [ 95.7871, 19.7779 ], [ 95.7903, 19.811 ], [ 95.8175, 19.8166 ], [ 95.8219, 19.8381 ], [ 95.8053, 19.8582 ], [ 95.811, 19.8743 ], [ 95.7876, 19.9086 ], [ 95.7963, 19.9389 ], [ 95.7883, 19.9651 ], [ 95.7705, 19.9744 ], [ 95.7939, 20.0237 ], [ 95.7798, 20.0557 ], [ 95.8035, 20.062 ], [ 95.7996, 20.0872 ], [ 95.8328, 20.1287 ], [ 95.8342, 20.144 ], [ 95.7976, 20.1644 ], [ 95.7914, 20.2004 ], [ 95.757, 20.2745 ], [ 95.7442, 20.2753 ], [ 95.7423, 20.2783 ], [ 95.737, 20.3108 ], [ 95.7617, 20.3067 ], [ 95.7919, 20.2921 ], [ 95.8157, 20.3081 ], [ 95.8627, 20.2502 ], [ 95.899, 20.222 ], [ 95.9404, 20.2382 ], [ 95.9551, 20.2724 ], [ 96.0002, 20.3015 ], [ 96.0059, 20.2862 ], [ 96.0729, 20.2902 ], [ 96.132, 20.281 ], [ 96.1682, 20.2663 ], [ 96.2128, 20.3033 ], [ 96.2614, 20.3083 ], [ 96.2969, 20.331 ], [ 96.3071, 20.3158 ], [ 96.3622, 20.3064 ], [ 96.4485, 20.233 ], [ 96.4856, 20.2122 ], [ 96.5048, 20.1931 ] ] ] ] } }
+]}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson
new file mode 100644
index 0000000..2e84940
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson
@@ -0,0 +1,16 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.098588943481445,52.8387680053712],[7.080383777618636,52.81387329101568],[7.075339794158936,52.71739196777349],[7.063059806823844,52.6471786499024],[7.051859855651855,52.63584899902338],[6.987877845764103,52.64982604980469],[6.948777198791446,52.64259338378912],[6.905216217041016,52.65543746948242],[6.859571933746338,52.65266799926769],[6.786572933197078,52.6561546325683],[6.743810176849365,52.64709091186529],[6.720801830291805,52.628341674804744],[6.718101024627686,52.64885711669922],[6.623817920684928,52.674041748046875],[6.561257839202995,52.665657043457024],[6.523700237274397,52.64714431762707],[6.527470111846923,52.619285583496094],[6.462124824523926,52.61446380615246],[6.429695129394588,52.622806549072266],[6.393902778625545,52.6132164001466],[6.372292995452824,52.64300537109381],[6.334053039550781,52.65944290161133],[6.260047912597656,52.66983032226562],[6.226165771484602,52.68441390991211],[6.190370082855225,52.674762725830135],[6.171147823333854,52.67936706542969],[6.127705097198486,52.75051879882812],[6.163595199585074,52.76287841796869],[6.20875787734991,52.79402160644531],[6.12632417678833,52.853740692138786],[6.214916229248047,52.890911102295036],[6.264826774597281,52.927387237548764],[6.31106805801403,52.925273895263786],[6.342032909393367,52.90620422363286],[6.402304172515983,52.9326744079591],[6.436041831970215,52.9718971252442],[6.370087146759261,53.033439636230526],[6.375282764434928,53.06660842895519],[6.312650203704948,53.08052444458019],[6.323408126831112,53.09391021728521],[6.351733207702694,53.08652877807623],[6.389081001281738,53.1473503112793],[6.415200233459529,53.177581787109375],[6.456179141998404,53.19609832763672],[6.492421150207633,53.20387268066406],[6.53726577758789,53.194507598877],[6.573716163635311,53.157382965088004],[6.609537124633789,53.144485473632926],[6.644701957702694,53.11363220214838],[6.703401088714542,53.12112045288097],[6.746828079223633,53.118869781494254],[6.947936058044546,52.99270629882807],[7.016479015350399,52.923656463623104],[7.041859149932861,52.911540985107536],[7.02171897888195,52.872051239013786],[7.043927192688045,52.871139526367244],[7.076990127563477,52.8451499938966],[7.098588943481445,52.8387680053712]]]},"properties":{"ID_0":158,"ISO":"NL-DR","NAME_0":"Netherlands","ID_1":1,"NAME_1":"Drenthe","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[5.861103057861328,52.54526901245122],[5.862565994262638,52.5434684753418],[5.854714870452938,52.49413299560541],[5.809958934783878,52.444007873535156],[5.752162933349723,52.413642883300724],[5.72709417343151,52.41639328002941],[5.665021896362418,52.397666931152344],[5.616228103637752,52.36632537841808],[5.56906080245966,52.367275238037166],[5.542487144470215,52.34754943847661],[5.558660030365104,52.33227920532238],[5.534986019134578,52.27484893798828],[5.417321205139274,52.2533226013183],[5.390840053558406,52.26408004760748],[5.303880214691219,52.31247329711914],[5.209552764892578,52.335639953613274],[5.160984992980957,52.32924652099615],[5.137357234954947,52.33816146850597],[5.132612228393612,52.38302612304693],[5.164947986602783,52.39926528930663],[5.26215505599987,52.435371398925895],[5.439299106598014,52.51092910766607],[5.439291954040526,52.52888107299816],[5.461491107940731,52.55311584472656],[5.505989074707145,52.55579376220703],[5.562249183654842,52.591667175293026],[5.645288944244385,52.607723236083984],[5.661541938781852,52.59692764282232],[5.769587039947453,52.5796470642091],[5.816977024078483,52.57861709594732],[5.861103057861328,52.54526901245122]]],[[[5.801125049591121,52.805797576904354],[5.82469177246105,52.78421783447277],[5.856007099151725,52.78405380249029],[5.928727149963322,52.75154495239258],[5.948259830474967,52.718582153320426],[5.972555160522461,52.69841766357422],[5.947529792785645,52.67005920410162],[5.986923217773438,52.65960693359381],[5.970245838165283,52.63910675048828],[5.838163852691594,52.612636566162216],[5.669095039367675,52.61314773559576],[5.621858119964656,52.65091323852545],[5.598130226135368,52.659858703613395],[5.601416110992545,52.76573944091791],[5.665553092956486,52.827705383300895],[5.719285964965933,52.837383270263665],[5.75512790679943,52.839096069335994],[5.801125049591121,52.805797576904354]]]]},"properties":{"ID_0":158,"ISO":"NL-FL","NAME_0":"Netherlands","ID_1":2,"NAME_1":"Flevoland","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[5.070277214050236,53.30708312988281],[5.044721126556396,53.28374862670904],[4.989720821380729,53.26597213745117],[5.002500057220572,53.258193969726676],[4.916389942169133,53.21569442749029],[4.850276947021541,53.2212486267091],[4.92083215713501,53.25041580200201],[4.960277080536001,53.27180480957031],[5.035278797149658,53.30069351196289],[5.070277214050236,53.30708312988281]]],[[[6.1960768699646,53.41180419921875],[6.173986911773795,53.3901252746582],[6.18264102935791,53.36674499511713],[6.293748855590876,53.34090805053711],[6.287105083465576,53.30239868164068],[6.220963001251334,53.23279953002929],[6.237222194671745,53.217441558838004],[6.206818103790511,53.197891235351676],[6.183751106262434,53.166622161865234],[6.183204174041862,53.134315490722706],[6.21287393569969,53.115291595458984],[6.269832134247053,53.11402511596685],[6.323408126831112,53.09391021728521],[6.312650203704948,53.08052444458019],[6.375282764434928,53.06660842895519],[6.370087146759261,53.033439636230526],[6.436041831970215,52.9718971252442],[6.402304172515983,52.9326744079591],[6.342032909393367,52.90620422363286],[6.31106805801403,52.925273895263786],[6.264826774597281,52.927387237548764],[6.214916229248047,52.890911102295036],[6.12632417678833,52.853740692138786],[6.066314220428467,52.82623291015625],[6.003631114959773,52.816658020019474],[5.978752136230525,52.84165573120123],[5.938309192657584,52.834884643554744],[5.93063306808483,52.82320785522472],[5.88284778594965,52.80098724365246],[5.842695236206055,52.80561065673828],[5.826416969299373,52.81732559204096],[5.801125049591121,52.805797576904354],[5.75512790679943,52.839096069335994],[5.719285964965933,52.837383270263665],[5.662726879119873,52.84373855590826],[5.649390220642204,52.85991287231445],[5.624009132385311,52.850078582763786],[5.589725971222037,52.84922409057617],[5.579256057739315,52.83577346801769],[5.549449920654297,52.83220672607427],[5.483912944793701,52.85108566284174],[5.419827938079948,52.84928512573248],[5.364634037017936,52.874382019043026],[5.373540878295954,52.897720336914006],[5.410830020904541,52.90940856933594],[5.404831886291504,52.938125610351676],[5.416758060455322,52.962360382080135],[5.403278827667236,52.990177154541016],[5.401748180389518,53.022483825683594],[5.367237091064566,53.07361221313482],[5.299851894378662,53.065464019775504],[5.16998291015625,52.99791336059582],[5.167500972747916,52.999862670898494],[5.294722080230827,53.06735992431646],[5.34139013290411,53.07513809204107],[5.379722118377686,53.092144012451286],[5.410278797149715,53.13069534301769],[5.416944980621395,53.16875076293951],[5.448054790496826,53.219306945800724],[5.526389122009391,53.25597381591797],[5.579722881317196,53.2959709167481],[5.643055915832633,53.319305419921875],[5.719720840454102,53.33625030517578],[5.869166851043815,53.38208389282238],[5.883612155914307,53.38874816894537],[5.939722061157283,53.3890266418457],[6.014720916748104,53.40263748168957],[6.09027719497692,53.40819549560547],[6.143610954284725,53.404304504394645],[6.1960768699646,53.41180419921875]]],[[[5.531390190124568,53.44791793823242],[5.541944026947021,53.430973052978516],[5.480834007263127,53.41791534423828],[5.456943988800106,53.40347290039068],[5.38472318649292,53.40180587768555],[5.344168186187744,53.38236236572277],[5.223056793213004,53.365695953369084],[5.188610076904297,53.346248626708984],[5.152499198913574,53.35930633544916],[5.195833206176815,53.3948593139649],[5.318056106567383,53.41263961791992],[5.421389102935847,53.4301376342774],[5.504721164703483,53.44736099243164],[5.531390190124568,53.44791793823242]]],[[[5.674166202545279,53.471805572509766],[5.701387882232723,53.46263885498058],[5.74916601181036,53.45930480957031],[5.902499198913574,53.46763992309576],[5.889721870422306,53.45041656494152],[5.806387901306266,53.43736267089844],[5.722499847412166,53.442081451416065],[5.703609943390006,53.42902755737305],[5.65694522857666,53.424861907958984],[5.628611087799186,53.430973052978516],[5.61583423614502,53.45375061035156],[5.650278091430607,53.471248626709034],[5.674166202545279,53.471805572509766]]],[[[6.359167098999023,53.509582519531364],[6.281389236450309,53.48930740356445],[6.260278224945182,53.47874832153332],[6.161943912506104,53.47291564941411],[6.134165763855094,53.4870834350587],[6.165278911590633,53.50291824340826],[6.359167098999023,53.509582519531364]]]]},"properties":{"ID_0":158,"ISO":"NL-FR","NAME_0":"Netherlands","ID_1":3,"NAME_1":"Friesland","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Frise|Frisia|Frísia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.768417835235539,52.119525909423885],[6.75971794128418,52.08686065673839],[6.742818832397688,52.07511901855469],[6.70068883895874,52.07379150390624],[6.698178768157959,52.04011917114258],[6.759449005126896,52.03073883056646],[6.816958904266357,51.99872970581054],[6.83536100387596,51.9955291748048],[6.838380813598633,51.96559906005854],[6.808720111847037,51.96097946166992],[6.805359840393066,51.934608459472706],[6.742709159851131,51.899051666259815],[6.711949825286865,51.905700683593864],[6.692440986633528,51.920162200927734],[6.65762710571289,51.90795898437511],[6.553330898284911,51.88270568847662],[6.480340003967284,51.85462188720703],[6.457089900970459,51.86885070800792],[6.397315025329532,51.871364593505916],[6.410539150238094,51.8359375],[6.369891166687125,51.8392791748048],[6.352918148040885,51.85449600219721],[6.310534954070988,51.850990295410156],[6.288980960845946,51.87657928466797],[6.218544960022029,51.867488861083984],[6.169019222259635,51.902938842773494],[6.1193590164184,51.89014053344738],[6.166995048522892,51.858608245849666],[6.168982028961238,51.84503173828136],[6.110060214996395,51.8469619750976],[6.068249225616682,51.86490249633795],[6.060989856719913,51.851593017578125],[6.001205921173323,51.82850646972656],[5.972117900848502,51.831855773925895],[5.97088003158575,51.809398651123104],[5.992381095886287,51.7950553894043],[5.999741077423209,51.764369964599666],[5.964142799377554,51.74181747436523],[5.923713207244929,51.75334930419921],[5.900456905365103,51.77842330932617],[5.872875213623161,51.7589225769044],[5.78703594207775,51.75290679931651],[5.752188205718994,51.76017761230463],[5.699997901916618,51.78991699218761],[5.66946697235113,51.79536056518565],[5.643374919891357,51.820537567138786],[5.595354080200195,51.83047485351568],[5.551632881164608,51.817951202392635],[5.496285915374756,51.83143615722662],[5.471543788909969,51.81169891357422],[5.435149192810115,51.81169891357422],[5.411843776702938,51.82336044311535],[5.374040126800537,51.79012298583978],[5.359560966491812,51.756000518798885],[5.305819034576472,51.73799133300787],[5.254919052124137,51.73426437377935],[5.225845813751278,51.744140625000114],[5.167703151702938,51.74311447143549],[5.147265911102295,51.755626678466854],[5.142780780792293,51.77356719970703],[5.10484886169445,51.78782272338873],[5.081634044647274,51.77967071533203],[5.005562782287541,51.82159423828119],[5.030344009399528,51.818992614746094],[5.048910140991268,51.85945510864252],[5.09530878067028,51.88922882080083],[5.117190837860164,51.888397216796875],[5.153345108032283,51.93427658081055],[5.185256958007812,51.96846389770513],[5.210141181945801,51.95954513549815],[5.249492168426514,51.97846984863286],[5.274384975433462,51.965946197509766],[5.322628021240348,51.955242156982415],[5.353265762329215,51.96873855590832],[5.388287067413387,51.9696617126466],[5.436536788940543,51.98404312133788],[5.493533134460449,51.98314666748041],[5.544589996337947,51.96876907348633],[5.567996978759822,51.955276489257926],[5.611770153045768,51.94355773925787],[5.633729934692383,51.95789337158209],[5.620708942413329,51.99112319946288],[5.593001842498836,52.01188278198242],[5.5959987640382,52.03513717651367],[5.56384515762329,52.04953002929681],[5.568312168121338,52.07914733886718],[5.561040878295955,52.10069656372081],[5.528769016265983,52.07827758789074],[5.489219188690242,52.0702171325683],[5.464327812194767,52.08098983764654],[5.492167949676571,52.09445190429693],[5.505414009094238,52.14740753173828],[5.479022026061955,52.16446685791021],[5.445270061492977,52.17164611816406],[5.445265769958553,52.20486068725597],[5.398246765136832,52.22100067138666],[5.408505916595515,52.24703598022455],[5.477609157562256,52.261405944824325],[5.533495903015194,52.26408004760748],[5.565979957580566,52.31521987915044],[5.607397079467887,52.33850860595703],[5.625078201294058,52.35826873779308],[5.722490787506104,52.38768386840826],[5.796501159668082,52.422504425048764],[5.847074985504264,52.466331481933594],[5.872694969177303,52.51920318603521],[5.890445232391414,52.5191383361817],[5.932849884033203,52.47410202026372],[5.972775936126823,52.47663116455078],[6.008544921875056,52.50070953369146],[6.035276889801082,52.50955963134776],[6.064691066741943,52.49774551391607],[6.110051155090332,52.46609497070307],[6.109745025634878,52.44544982910167],[6.127272129058952,52.43278884887706],[6.118054866790999,52.40859985351568],[6.138457775115967,52.40044403076183],[6.129414081573485,52.379817962646484],[6.088014125824202,52.37196350097662],[6.078471183776969,52.322647094726676],[6.107603073120117,52.30094909667969],[6.155035972595329,52.22887420654296],[6.347523212432975,52.22760009765631],[6.359589099884089,52.2427711486817],[6.425747871398926,52.24315261840826],[6.438559055328483,52.224197387695426],[6.489037036895751,52.18337631225585],[6.565248966217098,52.178207397460994],[6.600609779357967,52.18326187133795],[6.628046035766602,52.16593933105469],[6.654720783233699,52.1755485534668],[6.682354927063102,52.166290283203125],[6.684620857238997,52.14203262329107],[6.672594070434684,52.13138198852545],[6.726501941680908,52.119152069091854],[6.768417835235539,52.119525909423885]]]},"properties":{"ID_0":158,"ISO":"NL-GE","NAME_0":"Netherlands","ID_1":4,"NAME_1":"Gelderland","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Geldern|Gheldria|Guelders|Gueldre"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[7.098588943481445,52.8387680053712],[7.076990127563477,52.8451499938966],[7.043927192688045,52.871139526367244],[7.02171897888195,52.872051239013786],[7.041859149932861,52.911540985107536],[7.016479015350399,52.923656463623104],[6.947936058044546,52.99270629882807],[6.746828079223633,53.118869781494254],[6.703401088714542,53.12112045288097],[6.644701957702694,53.11363220214838],[6.609537124633789,53.144485473632926],[6.573716163635311,53.157382965088004],[6.53726577758789,53.194507598877],[6.492421150207633,53.20387268066406],[6.456179141998404,53.19609832763672],[6.415200233459529,53.177581787109375],[6.389081001281738,53.1473503112793],[6.351733207702694,53.08652877807623],[6.323408126831112,53.09391021728521],[6.269832134247053,53.11402511596685],[6.21287393569969,53.115291595458984],[6.183204174041862,53.134315490722706],[6.183751106262434,53.166622161865234],[6.206818103790511,53.197891235351676],[6.237222194671745,53.217441558838004],[6.220963001251334,53.23279953002929],[6.287105083465576,53.30239868164068],[6.293748855590876,53.34090805053711],[6.18264102935791,53.36674499511713],[6.173986911773795,53.3901252746582],[6.1960768699646,53.41180419921875],[6.253055095672663,53.41541671752941],[6.310833930969351,53.39652633666998],[6.380277156829891,53.419303894043026],[6.567501068115291,53.4356956481933],[6.674167156219539,53.459861755371094],[6.742499828338623,53.465415954589844],[6.79861211776739,53.45458221435552],[6.813611030578727,53.46347045898437],[6.863611221313533,53.450695037841854],[6.884165763854924,53.4381942749024],[6.873054981231917,53.407638549804744],[6.887499809265193,53.395416259765625],[6.898055076599121,53.35013961791997],[6.970279216766471,53.31847381591808],[7.024723052978628,53.30208206176763],[7.084722995758283,53.29763793945323],[7.080278873443717,53.263748168945256],[7.111389160156363,53.25097274780279],[7.271598815918026,53.22857666015631],[7.284949779510498,53.18859100341791],[7.241341114044245,53.14234161376958],[7.227190017700422,53.117160797119084],[7.256578922271729,53.098411560058594],[7.249300003051816,53.06597900390624],[7.254858016967773,53.001121520996094],[7.212191104888972,52.93294143676758],[7.136619091033992,52.87540054321295],[7.102118015289419,52.85423278808588],[7.098588943481445,52.8387680053712]]],[[[6.474167823791618,53.55448913574219],[6.504166126251278,53.53819274902355],[6.470276832580566,53.52291488647461],[6.455277919769287,53.54875183105468],[6.474167823791618,53.55448913574219]]]]},"properties":{"ID_0":158,"ISO":"NL-GR","NAME_0":"Netherlands","ID_1":5,"NAME_1":"Groningen","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Groninga|Groningue"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.000236988067684,52.349376678466854],[4.964716911315975,52.36359405517584],[5.02932977676403,52.38898086547851],[5.089422225952092,52.43495941162121],[5.052473068237304,52.439323425293026],[5.065517902374324,52.46719360351573],[5.062405109405518,52.48513412475586],[5.088860988616943,52.50317001342784],[5.069475173950309,52.52195739746105],[5.022902965545711,52.59539413452154],[5.022568225860709,52.629497528076165],[5.04915380477911,52.64126205444347],[5.084752082824764,52.64138031005854],[5.130897998809871,52.61907577514654],[5.163488864898795,52.62275314331066],[5.240424156189022,52.65702438354498],[5.250681877136344,52.68486404418951],[5.308524131774959,52.70470046997076],[5.292149066925106,52.71455001831055],[5.286105155944881,52.7414665222168],[5.262267112731934,52.7530975341798],[5.196825981140194,52.75476455688471],[5.15973806381237,52.74121475219738],[5.126932144165039,52.75458908081055],[5.107450008392334,52.773380279541065],[5.11731576919567,52.845207214355526],[5.043352127075138,52.93597412109381],[5.049166202545279,52.938751220703125],[5.062808036804313,52.941967010498104],[5.16998291015625,52.99791336059582],[5.299851894378662,53.065464019775504],[5.367237091064566,53.07361221313482],[5.401748180389518,53.022483825683594],[5.403278827667236,52.990177154541016],[5.416758060455322,52.962360382080135],[5.404831886291504,52.938125610351676],[5.410830020904541,52.90940856933594],[5.373540878295954,52.897720336914006],[5.364634037017936,52.874382019043026],[5.419827938079948,52.84928512573248],[5.483912944793701,52.85108566284174],[5.549449920654297,52.83220672607427],[5.579256057739315,52.83577346801769],[5.589725971222037,52.84922409057617],[5.624009132385311,52.850078582763786],[5.649390220642204,52.85991287231445],[5.662726879119873,52.84373855590826],[5.719285964965933,52.837383270263665],[5.665553092956486,52.827705383300895],[5.601416110992545,52.76573944091791],[5.598130226135368,52.659858703613395],[5.621858119964656,52.65091323852545],[5.669095039367675,52.61314773559576],[5.838163852691594,52.612636566162216],[5.970245838165283,52.63910675048828],[5.986923217773438,52.65960693359381],[6.017700195312557,52.63798904418957],[5.993837833404655,52.62732696533203],[5.990838050842341,52.62464904785156],[5.946258068084774,52.615863800048935],[5.923984050750732,52.612358093261825],[5.896000862121696,52.61968231201172],[5.846880912780819,52.60993957519531],[5.837705135345573,52.577655792236385],[5.861103057861328,52.54526901245122],[5.816977024078483,52.57861709594732],[5.769587039947453,52.5796470642091],[5.661541938781852,52.59692764282232],[5.645288944244385,52.607723236083984],[5.562249183654842,52.591667175293026],[5.505989074707145,52.55579376220703],[5.461491107940731,52.55311584472656],[5.439291954040526,52.52888107299816],[5.439299106598014,52.51092910766607],[5.26215505599987,52.435371398925895],[5.164947986602783,52.39926528930663],[5.132612228393612,52.38302612304693],[5.137357234954947,52.33816146850597],[5.160984992980957,52.32924652099615],[5.209552764892578,52.335639953613274],[5.303880214691219,52.31247329711914],[5.390840053558406,52.26408004760748],[5.417321205139274,52.2533226013183],[5.534986019134578,52.27484893798828],[5.558660030365104,52.33227920532238],[5.542487144470215,52.34754943847661],[5.56906080245966,52.367275238037166],[5.616228103637752,52.36632537841808],[5.665021896362418,52.397666931152344],[5.72709417343151,52.41639328002941],[5.752162933349723,52.413642883300724],[5.809958934783878,52.444007873535156],[5.854714870452938,52.49413299560541],[5.862565994262638,52.5434684753418],[5.872694969177303,52.51920318603521],[5.847074985504264,52.466331481933594],[5.796501159668082,52.422504425048764],[5.722490787506104,52.38768386840826],[5.625078201294058,52.35826873779308],[5.607397079467887,52.33850860595703],[5.565979957580566,52.31521987915044],[5.533495903015194,52.26408004760748],[5.477609157562256,52.261405944824325],[5.408505916595515,52.24703598022455],[5.368771076202393,52.2685546875],[5.311379909515495,52.277469635009815],[5.29660177230835,52.29629898071289],[5.250860214233455,52.3114852905274],[5.165554046630916,52.30591964721691],[5.141869068145751,52.324707031250114],[5.097574234008789,52.33894348144536],[5.040172100067196,52.33336639404297],[5.000236988067684,52.349376678466854]]]},"properties":{"ID_0":158,"ISO":"NL-YS","NAME_0":"Netherlands","ID_1":6,"NAME_1":"IJsselmeer","TYPE_1":"Water body","ENGTYPE_1":"Water body","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.964142799377554,51.74181747436523],[6.036541938781851,51.727481842041016],[6.035422801971436,51.68281173706066],[6.051452159881592,51.67261123657232],[6.118769168853873,51.66045761108404],[6.105618000030574,51.62265014648449],[6.09095811843872,51.605220794677734],[6.156868934631348,51.56924057006841],[6.179258823394775,51.54090118408203],[6.220355987548884,51.509170532226506],[6.230510234832821,51.47665023803705],[6.214348793029841,51.409561157226676],[6.231968879699764,51.365982055664055],[6.198399066925163,51.342559814453175],[6.174569129943961,51.33777999877941],[6.165248870849723,51.31521987915045],[6.128142833709717,51.28623962402343],[6.117840766906681,51.26990127563471],[6.078186035156364,51.2447128295899],[6.078309059143066,51.187469482421875],[6.098670959472656,51.17370986938488],[6.144780158996582,51.17371749877941],[6.171799182891788,51.1529312133789],[6.130209922790584,51.15040206909185],[6.106959819793758,51.141330718994254],[6.038741111755371,51.095649719238395],[5.998916149139518,51.0817642211914],[5.969543933868636,51.03446960449218],[5.947728157043456,51.03725051879883],[5.926199913024845,51.055740356445426],[5.87205886840826,51.043411254882805],[5.907961845398063,51.00095367431646],[5.899706840515194,50.981441497802784],[5.950080871582031,50.99216461181646],[6.032363891601619,50.97996902465832],[6.002170085906982,50.958591461181754],[6.015170097351017,50.933158874511655],[6.082940101623592,50.921798706054744],[6.075368881225586,50.90092468261713],[6.087715148925895,50.87893295288086],[6.063103199005126,50.85156631469738],[6.019684791565054,50.845233917236385],[6.03108119964611,50.82139205932623],[5.999741077423209,50.80281066894537],[5.975275993347282,50.814090728759766],[5.963199138641471,50.795051574707145],[5.992528915405386,50.78171157836919],[5.999074935913086,50.756366729736385],[5.959646224975643,50.76206588745122],[5.90474176406866,50.75516510009777],[5.881153106689453,50.76927185058605],[5.855858802795353,50.7611656188966],[5.813356876373348,50.76006698608392],[5.773447990417537,50.78495407104498],[5.732358932495231,50.762664794921875],[5.691102027893066,50.761138916015625],[5.705244064331168,50.7859382629395],[5.701066970825195,50.805370330810604],[5.660498142242488,50.821987152099666],[5.649746894836539,50.83691787719738],[5.651988029480094,50.872505187988224],[5.687693119049128,50.88209152221691],[5.703488826751709,50.90611267089844],[5.723505020141715,50.90905761718755],[5.757295131683406,50.953041076660156],[5.725789070129451,50.9640007019043],[5.763065814971981,50.992351531982536],[5.774485111236629,51.02516174316412],[5.764050960540828,51.03752136230469],[5.782749176025391,51.06509399414074],[5.801907062530518,51.06391906738287],[5.824966907501277,51.12927627563488],[5.858759880066031,51.14596176147461],[5.821729183196965,51.162628173828125],[5.782736778259391,51.15991210937511],[5.782691955566463,51.18131637573248],[5.749197959899846,51.19004821777355],[5.709558963775634,51.18134689331066],[5.655365943908804,51.18644332885747],[5.651566028595028,51.199867248535156],[5.570586204528865,51.22145462036127],[5.626573085784912,51.23078918457036],[5.632492065429631,51.27476882934576],[5.680178165435791,51.3168830871582],[5.87925195693981,51.35404586791992],[5.940124988555908,51.3861312866212],[5.880164146423397,51.4518928527832],[5.860422134399528,51.5058212280274],[5.846496105194149,51.5678062438966],[5.943375110626278,51.55488586425787],[6.013069152832031,51.571636199951115],[6.041842937469482,51.55713653564458],[6.047998905181941,51.584934234619254],[6.028206825256575,51.6236305236817],[5.973466873169002,51.654399871826286],[5.963946819305534,51.71099472045904],[5.894371986389274,51.72653198242193],[5.872875213623161,51.7589225769044],[5.900456905365103,51.77842330932617],[5.923713207244929,51.75334930419921],[5.964142799377554,51.74181747436523]]]},"properties":{"ID_0":158,"ISO":"NL-LI","NAME_0":"Netherlands","ID_1":7,"NAME_1":"Limburg","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Limbourg|Limburgo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.872875213623161,51.7589225769044],[5.894371986389274,51.72653198242193],[5.963946819305534,51.71099472045904],[5.973466873169002,51.654399871826286],[6.028206825256575,51.6236305236817],[6.047998905181941,51.584934234619254],[6.041842937469482,51.55713653564458],[6.013069152832031,51.571636199951115],[5.943375110626278,51.55488586425787],[5.846496105194149,51.5678062438966],[5.860422134399528,51.5058212280274],[5.880164146423397,51.4518928527832],[5.940124988555908,51.3861312866212],[5.87925195693981,51.35404586791992],[5.680178165435791,51.3168830871582],[5.632492065429631,51.27476882934576],[5.626573085784912,51.23078918457036],[5.570586204528865,51.22145462036127],[5.560273170471191,51.22884368896484],[5.551477909088192,51.26653671264654],[5.512876033783073,51.293033599853516],[5.489470005035514,51.29738235473633],[5.420667171478271,51.26112747192377],[5.35764217376709,51.27290725708019],[5.334092140197811,51.26382064819336],[5.26488304138195,51.266914367675895],[5.228401184082088,51.27313232421881],[5.245742797851562,51.305252075195426],[5.209953784942627,51.32352447509771],[5.13670921325695,51.31553268432617],[5.122406005859489,51.36013031005865],[5.07581615447998,51.39513397216797],[5.097507953643798,51.42852783203125],[5.082108020782584,51.46693038940424],[5.022393226623535,51.47570800781256],[5.006558895111084,51.43910217285162],[4.945034027099609,51.401901245117244],[4.925730228424186,51.39862442016613],[4.884724140167293,51.41562652587896],[4.832930088043327,51.40933609008789],[4.782611846923942,51.41544342041021],[4.786021232605093,51.43194961547857],[4.834949970245417,51.422389984130916],[4.829224109649601,51.43962478637707],[4.83863019943243,51.47982788085937],[4.779335975647086,51.50382232666027],[4.752143859863338,51.49752426147466],[4.707461833953857,51.4558448791505],[4.678764820098876,51.44445419311523],[4.679113864898682,51.42538833618164],[4.647445201873779,51.423614501953175],[4.590851783752555,51.431396484375],[4.537150859832764,51.423633575439396],[4.530519008636588,51.44551849365234],[4.551988124847469,51.47214889526373],[4.537779808044547,51.484771728515625],[4.478610992431754,51.48099899292003],[4.408965110778809,51.458827972412166],[4.395366191863957,51.44842910766596],[4.392259120941276,51.41722869873058],[4.424565792083854,51.386028289795036],[4.42266321182251,51.3678359985351],[4.396659851074332,51.36003112792968],[4.346426010131893,51.36071777343756],[4.337417125701961,51.38127899169927],[4.278090953826961,51.378643035888665],[4.264810085296745,51.41691970825207],[4.277564048767146,51.42602920532232],[4.261052131652832,51.450099945068466],[4.282272815704403,51.46737289428711],[4.254351139068717,51.48504638671881],[4.227271080017204,51.5242652893067],[4.23686599731451,51.54411697387707],[4.23056793212902,51.56290435791027],[4.199522018432674,51.585918426513786],[4.191707134246826,51.60639953613292],[4.215748786926326,51.62828445434564],[4.238801002502555,51.633911132812436],[4.260572910308952,51.63323974609381],[4.318253993988151,51.64638137817394],[4.353020191192627,51.64850616455084],[4.378870010375977,51.659519195556754],[4.395775794983024,51.68121719360357],[4.42736005783081,51.696762084960994],[4.492988109588623,51.683853149414176],[4.522021770477238,51.684085845947315],[4.604528903961181,51.69728088378906],[4.623225212097168,51.707290649414176],[4.695649147033691,51.71945190429693],[4.738762855529785,51.74934768676769],[4.761540889740047,51.78090286254882],[4.786074161529598,51.794509887695256],[4.825302124023381,51.79921722412115],[4.863097190856934,51.8030052185058],[4.907957077026424,51.82476806640631],[4.931215763092098,51.82846450805669],[5.005562782287541,51.82159423828119],[5.081634044647274,51.77967071533203],[5.10484886169445,51.78782272338873],[5.142780780792293,51.77356719970703],[5.147265911102295,51.755626678466854],[5.167703151702938,51.74311447143549],[5.225845813751278,51.744140625000114],[5.254919052124137,51.73426437377935],[5.305819034576472,51.73799133300787],[5.359560966491812,51.756000518798885],[5.374040126800537,51.79012298583978],[5.411843776702938,51.82336044311535],[5.435149192810115,51.81169891357422],[5.471543788909969,51.81169891357422],[5.496285915374756,51.83143615722662],[5.551632881164608,51.817951202392635],[5.595354080200195,51.83047485351568],[5.643374919891357,51.820537567138786],[5.66946697235113,51.79536056518565],[5.699997901916618,51.78991699218761],[5.752188205718994,51.76017761230463],[5.78703594207775,51.75290679931651],[5.872875213623161,51.7589225769044]]]},"properties":{"ID_0":158,"ISO":"NL-NB","NAME_0":"Netherlands","ID_1":8,"NAME_1":"Noord-Brabant","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Brabante del Norte|Brabante do Norte|Brabante settentrionale|Brabant-septentrional|Nord-Brabant|Nort"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[5.000236988067684,52.349376678466854],[5.040172100067196,52.33336639404297],[5.097574234008789,52.33894348144536],[5.141869068145751,52.324707031250114],[5.165554046630916,52.30591964721691],[5.250860214233455,52.3114852905274],[5.29660177230835,52.29629898071289],[5.311379909515495,52.277469635009815],[5.270171165466365,52.281898498535156],[5.24244499206543,52.246009826660156],[5.220551967620906,52.204616546630916],[5.197206974029541,52.17763900756836],[5.128194808959961,52.18105697631836],[5.05053281784069,52.16555404663097],[5.038351058959961,52.21308517456049],[5.06165790557867,52.23560333251959],[5.027517795562858,52.270492553710994],[5.046533107757567,52.282226562499936],[5.01542520523077,52.30365753173834],[5.000850200653133,52.289241790771484],[4.931906223297176,52.27008819580083],[4.914468765258789,52.252971649169915],[4.885054111480656,52.25373077392584],[4.830978870391846,52.230117797851676],[4.797234058380127,52.22634506225591],[4.745993137359733,52.214378356933594],[4.726602077484245,52.23221206665039],[4.672246932983512,52.23096847534191],[4.64161491394043,52.21819305419922],[4.604957103729248,52.21434402465826],[4.558435916900635,52.218685150146534],[4.570105075836295,52.267948150634815],[4.590466976165828,52.27976989746094],[4.613377094268913,52.31314468383794],[4.585299968719596,52.318328857421875],[4.56486701965332,52.30920028686535],[4.494165897369384,52.327655792236435],[4.560276985168571,52.431526184082145],[4.598055839538574,52.51985931396496],[4.633611202240104,52.68319320678722],[4.640276908874569,52.73430633544921],[4.653056144714412,52.765693664550895],[4.675834178924674,52.79652786254894],[4.711945056915283,52.88902664184582],[4.714723110199031,52.93680572509777],[4.72472190856945,52.95791625976568],[4.776946067810115,52.964862823486385],[4.815278053283691,52.908748626708984],[4.87694501876831,52.88847351074224],[4.945834159851131,52.908748626708984],[4.959722995758113,52.926528930664006],[5.004722118377686,52.93597030639643],[5.043352127075138,52.93597412109381],[5.11731576919567,52.845207214355526],[5.107450008392334,52.773380279541065],[5.126932144165039,52.75458908081055],[5.15973806381237,52.74121475219738],[5.196825981140194,52.75476455688471],[5.262267112731934,52.7530975341798],[5.286105155944881,52.7414665222168],[5.292149066925106,52.71455001831055],[5.308524131774959,52.70470046997076],[5.250681877136344,52.68486404418951],[5.240424156189022,52.65702438354498],[5.163488864898795,52.62275314331066],[5.130897998809871,52.61907577514654],[5.084752082824764,52.64138031005854],[5.04915380477911,52.64126205444347],[5.022568225860709,52.629497528076165],[5.022902965545711,52.59539413452154],[5.069475173950309,52.52195739746105],[5.088860988616943,52.50317001342784],[5.062405109405518,52.48513412475586],[5.065517902374324,52.46719360351573],[5.052473068237304,52.439323425293026],[5.089422225952092,52.43495941162121],[5.02932977676403,52.38898086547851],[4.964716911315975,52.36359405517584],[5.000236988067684,52.349376678466854]]],[[[5.049166202545279,52.938751220703125],[5.167500972747916,52.999862670898494],[5.16998291015625,52.99791336059582],[5.062808036804313,52.941967010498104],[5.049166202545279,52.938751220703125]]],[[[4.859168052673454,53.18291473388672],[4.908054828643913,53.13597106933594],[4.899723052978629,53.12374877929682],[4.898056983947753,53.079860687255916],[4.84638881683361,53.03347396850586],[4.819723129272404,53.02986145019542],[4.79138803482067,53.00763702392578],[4.75750017166132,53.00236129760742],[4.718054771423453,52.98625183105469],[4.709166049957389,53.01625061035162],[4.720832824707031,53.061248779296875],[4.740832805633545,53.088470458984375],[4.828610897064209,53.16958236694347],[4.859168052673454,53.18291473388672]]]]},"properties":{"ID_0":158,"ISO":"NL-NH","NAME_0":"Netherlands","ID_1":9,"NAME_1":"Noord-Holland","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Holanda do Norte|Hollande-septentrionale|North Holland"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.720801830291805,52.628341674804744],[6.732648849487305,52.60928726196289],[6.724298000335749,52.59061050415039],[6.74967002868658,52.573242187500114],[6.718132972717399,52.55221557617193],[6.710430145263615,52.52807617187494],[6.713626861572379,52.484413146972656],[6.764862060546988,52.464931488037166],[6.854238986968994,52.462631225586044],[6.886689186096248,52.44908905029308],[6.931348800659123,52.43983078002941],[6.962840080261287,52.4450798034668],[7.000110149383545,52.47317886352545],[7.020860195159968,52.43252944946294],[7.043229103088379,52.40687179565424],[7.079115867614802,52.38272476196295],[7.080453872680664,52.35722351074219],[7.029718875885123,52.29431915283209],[7.044869899749756,52.25751876831049],[7.064889907836971,52.235759735107536],[7.02960920333868,52.226970672607536],[6.988433837890625,52.22537231445324],[6.968887805938664,52.19045257568371],[6.916360855102653,52.1780242919923],[6.886592864990291,52.15680313110363],[6.881947994232405,52.1319313049317],[6.852960109710693,52.11975097656249],[6.768417835235539,52.119525909423885],[6.726501941680908,52.119152069091854],[6.672594070434684,52.13138198852545],[6.684620857238997,52.14203262329107],[6.682354927063102,52.166290283203125],[6.654720783233699,52.1755485534668],[6.628046035766602,52.16593933105469],[6.600609779357967,52.18326187133795],[6.565248966217098,52.178207397460994],[6.489037036895751,52.18337631225585],[6.438559055328483,52.224197387695426],[6.425747871398926,52.24315261840826],[6.359589099884089,52.2427711486817],[6.347523212432975,52.22760009765631],[6.155035972595329,52.22887420654296],[6.107603073120117,52.30094909667969],[6.078471183776969,52.322647094726676],[6.088014125824202,52.37196350097662],[6.129414081573485,52.379817962646484],[6.138457775115967,52.40044403076183],[6.118054866790999,52.40859985351568],[6.127272129058952,52.43278884887706],[6.109745025634878,52.44544982910167],[6.110051155090332,52.46609497070307],[6.064691066741943,52.49774551391607],[6.035276889801082,52.50955963134776],[6.008544921875056,52.50070953369146],[5.972775936126823,52.47663116455078],[5.932849884033203,52.47410202026372],[5.890445232391414,52.5191383361817],[5.872694969177303,52.51920318603521],[5.862565994262638,52.5434684753418],[5.861103057861328,52.54526901245122],[5.837705135345573,52.577655792236385],[5.846880912780819,52.60993957519531],[5.896000862121696,52.61968231201172],[5.923984050750732,52.612358093261825],[5.946258068084774,52.615863800048935],[5.990838050842341,52.62464904785156],[5.993837833404655,52.62732696533203],[6.017700195312557,52.63798904418957],[5.986923217773438,52.65960693359381],[5.947529792785645,52.67005920410162],[5.972555160522461,52.69841766357422],[5.948259830474967,52.718582153320426],[5.928727149963322,52.75154495239258],[5.856007099151725,52.78405380249029],[5.82469177246105,52.78421783447277],[5.801125049591121,52.805797576904354],[5.826416969299373,52.81732559204096],[5.842695236206055,52.80561065673828],[5.88284778594965,52.80098724365246],[5.93063306808483,52.82320785522472],[5.938309192657584,52.834884643554744],[5.978752136230525,52.84165573120123],[6.003631114959773,52.816658020019474],[6.066314220428467,52.82623291015625],[6.12632417678833,52.853740692138786],[6.20875787734991,52.79402160644531],[6.163595199585074,52.76287841796869],[6.127705097198486,52.75051879882812],[6.171147823333854,52.67936706542969],[6.190370082855225,52.674762725830135],[6.226165771484602,52.68441390991211],[6.260047912597656,52.66983032226562],[6.334053039550781,52.65944290161133],[6.372292995452824,52.64300537109381],[6.393902778625545,52.6132164001466],[6.429695129394588,52.622806549072266],[6.462124824523926,52.61446380615246],[6.527470111846923,52.619285583496094],[6.523700237274397,52.64714431762707],[6.561257839202995,52.665657043457024],[6.623817920684928,52.674041748046875],[6.718101024627686,52.64885711669922],[6.720801830291805,52.628341674804744]]]},"properties":{"ID_0":158,"ISO":"NL-OV","NAME_0":"Netherlands","ID_1":10,"NAME_1":"Overijssel","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.311379909515495,52.277469635009815],[5.368771076202393,52.2685546875],[5.408505916595515,52.24703598022455],[5.398246765136832,52.22100067138666],[5.445265769958553,52.20486068725597],[5.445270061492977,52.17164611816406],[5.479022026061955,52.16446685791021],[5.505414009094238,52.14740753173828],[5.492167949676571,52.09445190429693],[5.464327812194767,52.08098983764654],[5.489219188690242,52.0702171325683],[5.528769016265983,52.07827758789074],[5.561040878295955,52.10069656372081],[5.568312168121338,52.07914733886718],[5.56384515762329,52.04953002929681],[5.5959987640382,52.03513717651367],[5.593001842498836,52.01188278198242],[5.620708942413329,51.99112319946288],[5.633729934692383,51.95789337158209],[5.611770153045768,51.94355773925787],[5.567996978759822,51.955276489257926],[5.544589996337947,51.96876907348633],[5.493533134460449,51.98314666748041],[5.436536788940543,51.98404312133788],[5.388287067413387,51.9696617126466],[5.353265762329215,51.96873855590832],[5.322628021240348,51.955242156982415],[5.274384975433462,51.965946197509766],[5.249492168426514,51.97846984863286],[5.210141181945801,51.95954513549815],[5.185256958007812,51.96846389770513],[5.153345108032283,51.93427658081055],[5.05826377868658,51.955535888671875],[5.058074951171931,51.977077484130916],[5.024535179138297,51.9697761535645],[4.996704101562557,51.97685241699213],[4.974958896636963,51.96060562133789],[4.947154045105037,51.9649772644043],[4.915287017822266,51.94239425659191],[4.881762981414795,51.93774795532232],[4.863741874694824,51.96823883056651],[4.806190967559814,52.01455307006836],[4.832029819488469,52.04970169067388],[4.869813919067383,52.062423706054744],[4.828750133514461,52.0748176574707],[4.825343132019157,52.108909606933594],[4.795835018157959,52.122211456298885],[4.816101074218864,52.14027786254882],[4.877717971801815,52.13879776000982],[4.895024776458797,52.1622200012207],[4.804946899414062,52.20125579833989],[4.797234058380127,52.22634506225591],[4.830978870391846,52.230117797851676],[4.885054111480656,52.25373077392584],[4.914468765258789,52.252971649169915],[4.931906223297176,52.27008819580083],[5.000850200653133,52.289241790771484],[5.01542520523077,52.30365753173834],[5.046533107757567,52.282226562499936],[5.027517795562858,52.270492553710994],[5.06165790557867,52.23560333251959],[5.038351058959961,52.21308517456049],[5.05053281784069,52.16555404663097],[5.128194808959961,52.18105697631836],[5.197206974029541,52.17763900756836],[5.220551967620906,52.204616546630916],[5.24244499206543,52.246009826660156],[5.270171165466365,52.281898498535156],[5.311379909515495,52.277469635009815]]]},"properties":{"ID_0":158,"ISO":"NL-UT","NAME_0":"Netherlands","ID_1":11,"NAME_1":"Utrecht","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[3.515278100967521,51.40736007690441],[3.543056011200008,51.40541839599604],[3.618611097335815,51.379581451416016],[3.685832023620662,51.37152862548828],[3.693610906600895,51.36152648925792],[3.75472092628479,51.342918395996094],[3.788055896759033,51.35041809082037],[3.843055963516349,51.335140228271484],[3.919722080230827,51.36152648925792],[3.959167003631649,51.36791610717784],[3.97472190856945,51.40625],[4.01694488525402,51.40124893188482],[4.050277233123779,51.36597061157238],[4.120832920074462,51.364307403564396],[4.176389217376766,51.367362976074276],[4.205832958221549,51.375137329101555],[4.23712778091425,51.35125732421875],[4.183481216430778,51.30553817749034],[4.056982994079704,51.24804306030279],[3.999691963195914,51.241340637207145],[3.962486982345638,51.2160415649414],[3.924190998077449,51.210544586181754],[3.902096986770743,51.198947906494084],[3.87630200386053,51.21354675292969],[3.808010101318302,51.20494461059576],[3.788707971572933,51.21524429321294],[3.799316883087158,51.25763320922863],[3.755398035049552,51.27392196655273],[3.713711023330688,51.27448654174805],[3.666872024536132,51.292861938476676],[3.643162012100276,51.29162216186535],[3.591856956481934,51.3075942993164],[3.579180002212524,51.291778564453125],[3.51396298408514,51.28893661499035],[3.525037050247135,51.24884033203125],[3.456166028976497,51.244823455810604],[3.430077075958309,51.25024032592784],[3.382550001144466,51.27726745605468],[3.371838092804012,51.31604003906255],[3.386981010437125,51.33063125610357],[3.371982097625789,51.34898757934576],[3.371388912200927,51.372638702392635],[3.423054933547973,51.38958358764654],[3.482498884200993,51.396251678466854],[3.515278100967521,51.40736007690441]]],[[[3.864857912063655,51.54415512084972],[3.836918115615844,51.55634307861328],[3.803925991058406,51.54780197143549],[3.76021599769598,51.5552597045899],[3.7118079662323,51.53390121459961],[3.68923711776739,51.55601119995117],[3.652451992034912,51.57071304321289],[3.702512979507446,51.512214660644645],[3.753251075744629,51.54797744750988],[3.788240909576359,51.541294097900504],[3.819778919220027,51.54981994628906],[3.864857912063655,51.54415512084972],[3.927103996276912,51.544082641601506],[3.957933902740592,51.53101348876959],[4.017667770385856,51.51829147338867],[4.044200897216797,51.50245285034179],[4.056374073028564,51.48284912109369],[4.09508323669445,51.446487426757805],[4.13447284698492,51.431682586669915],[4.181780815124625,51.44387817382818],[4.222404956817684,51.43712997436535],[4.220424175262565,51.45685958862305],[4.261052131652832,51.450099945068466],[4.277564048767146,51.42602920532232],[4.264810085296745,51.41691970825207],[4.278090953826961,51.378643035888665],[4.221158027649039,51.37612915039068],[4.234839916229362,51.39180374145508],[4.199722766876278,51.40652847290039],[4.155832767486572,51.3948593139649],[4.076942920684928,51.408195495605526],[3.973612070083618,51.46180725097662],[3.921943902969417,51.44458389282238],[3.899166107177848,51.3948593139649],[3.811944007873478,51.38652801513666],[3.756943941116333,51.41541671752941],[3.726388931274414,51.41513824462884],[3.710278034210148,51.434307098388615],[3.658056020736808,51.45680618286144],[3.631387948989982,51.4415283203125],[3.583055019378719,51.440692901611385],[3.530833005905151,51.45958328247076],[3.495834112167358,51.49458312988287],[3.433612108230705,51.52597045898437],[3.438055992126408,51.54208374023443],[3.558054924011287,51.58958435058599],[3.604722023010311,51.593193054199276],[3.625833988189754,51.586250305175774],[3.682842016220035,51.599029541015625],[3.721184015273991,51.59150314331055],[3.780200004577637,51.602233886718864],[3.835154056549015,51.60569763183594],[3.861423969268856,51.60066986083996],[3.898936033248901,51.5634651184082],[3.864857912063655,51.54415512084972]]],[[[4.238801002502555,51.633911132812436],[4.215748786926326,51.62828445434564],[4.191707134246826,51.60639953613292],[4.199522018432674,51.585918426513786],[4.23056793212902,51.56290435791027],[4.23686599731451,51.54411697387707],[4.227271080017204,51.5242652893067],[4.208937168121338,51.507015228271484],[4.165077209472713,51.52359771728521],[4.078187942504996,51.52619934082031],[4.024789810180778,51.567756652832024],[3.991202116012573,51.576320648193416],[3.99496698379528,51.59432601928722],[4.023852825164795,51.59737396240239],[4.075541973114014,51.61325454711913],[4.127737998962516,51.61296081542969],[4.100739955902156,51.6431770324707],[4.138184070587101,51.65258026123058],[4.193803787231559,51.63523483276373],[4.238801002502555,51.633911132812436]]],[[[4.156164169311523,51.683303833007926],[4.157640933990592,51.68242263793957],[4.117212772369498,51.674785614013786],[4.097705841064567,51.6476287841798],[4.072039127349967,51.63296508789057],[4.010158061981258,51.617855072021484],[3.968216896057129,51.61463928222667],[3.928574085235539,51.62939453125],[3.889311075210685,51.63246917724615],[3.876492977142334,51.66731262207031],[3.823648929596004,51.683650970458984],[3.814419031143188,51.69788742065441],[3.725477933883667,51.66878128051758],[3.72157788276678,51.66281890869146],[3.686944007873592,51.680137634277344],[3.678611993789787,51.70458221435552],[3.690279006957951,51.72097396850597],[3.755834102630729,51.7404174804688],[3.819165945053157,51.739860534668026],[3.839721918106136,51.75791549682623],[3.842823982238826,51.756637573242244],[3.826029062271175,51.73844909667968],[3.886904001236018,51.74376296997075],[3.906164884567318,51.73324584960949],[3.970097064971924,51.73406982421875],[4.007430076599121,51.7031135559082],[4.015205860137939,51.68704605102538],[4.045772075653076,51.68472290039068],[4.094184875488395,51.66823577880871],[4.108425140380802,51.677379608154354],[4.156164169311523,51.683303833007926]]]]},"properties":{"ID_0":158,"ISO":"NL-ZE","NAME_0":"Netherlands","ID_1":12,"NAME_1":"Zeeland","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Zelanda|Zélande|Zelândia"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[3.7217919826507,51.66073989868164],[3.72157788276678,51.66281890869146],[3.725477933883667,51.66878128051758],[3.814419031143188,51.69788742065441],[3.823648929596004,51.683650970458984],[3.876492977142334,51.66731262207031],[3.889311075210685,51.63246917724615],[3.928574085235539,51.62939453125],[3.968216896057129,51.61463928222667],[4.010158061981258,51.617855072021484],[4.072039127349967,51.63296508789057],[4.097705841064567,51.6476287841798],[4.117212772369498,51.674785614013786],[4.157640933990592,51.68242263793957],[4.191024780273494,51.68278503417968],[4.221749782562199,51.67413330078136],[4.238123893737793,51.65904235839855],[4.28176212310791,51.65499877929693],[4.358274936676025,51.67099761962896],[4.366487026214713,51.691722869873104],[4.300489902496338,51.71712875366222],[4.274201869964543,51.722251892089844],[4.245997905731315,51.74441146850597],[4.194274902343807,51.77439117431646],[4.165033817291317,51.77946090698247],[4.063590049743709,51.81332015991211],[4.044167041778564,51.829303741455185],[4.055727005004826,51.838516235351676],[4.07435417175293,51.842174530029354],[4.128934860229492,51.819458007812614],[4.156518936157283,51.82246017456049],[4.183232784271297,51.80479431152355],[4.231726169586238,51.78825378417969],[4.249783992767391,51.76599502563471],[4.350695133209342,51.74364471435547],[4.415187835693359,51.720893859863224],[4.490943908691349,51.711662292480526],[4.531834125518799,51.70122146606451],[4.678015232086238,51.73100662231451],[4.714137077331657,51.74380874633795],[4.741473197937011,51.761932373046875],[4.752798080444336,51.781749725341854],[4.784592151641789,51.796298980713004],[4.825302124023381,51.79921722412115],[4.786074161529598,51.794509887695256],[4.761540889740047,51.78090286254882],[4.738762855529785,51.74934768676769],[4.695649147033691,51.71945190429693],[4.623225212097168,51.707290649414176],[4.604528903961181,51.69728088378906],[4.522021770477238,51.684085845947315],[4.492988109588623,51.683853149414176],[4.42736005783081,51.696762084960994],[4.395775794983024,51.68121719360357],[4.378870010375977,51.659519195556754],[4.353020191192627,51.64850616455084],[4.318253993988151,51.64638137817394],[4.260572910308952,51.63323974609381],[4.238801002502555,51.633911132812436],[4.193803787231559,51.63523483276373],[4.138184070587101,51.65258026123058],[4.100739955902156,51.6431770324707],[4.127737998962516,51.61296081542969],[4.075541973114014,51.61325454711913],[4.023852825164795,51.59737396240239],[3.99496698379528,51.59432601928722],[3.991202116012573,51.576320648193416],[4.024789810180778,51.567756652832024],[4.078187942504996,51.52619934082031],[4.165077209472713,51.52359771728521],[4.208937168121338,51.507015228271484],[4.227271080017204,51.5242652893067],[4.254351139068717,51.48504638671881],[4.282272815704403,51.46737289428711],[4.261052131652832,51.450099945068466],[4.220424175262565,51.45685958862305],[4.222404956817684,51.43712997436535],[4.181780815124625,51.44387817382818],[4.13447284698492,51.431682586669915],[4.09508323669445,51.446487426757805],[4.056374073028564,51.48284912109369],[4.044200897216797,51.50245285034179],[4.017667770385856,51.51829147338867],[3.957933902740592,51.53101348876959],[3.927103996276912,51.544082641601506],[3.864857912063655,51.54415512084972],[3.898936033248901,51.5634651184082],[3.861423969268856,51.60066986083996],[3.835154056549015,51.60569763183594],[3.780200004577637,51.602233886718864],[3.721184015273991,51.59150314331055],[3.682842016220035,51.599029541015625],[3.684214115142879,51.61569595336908],[3.71425795555109,51.64180374145519],[3.72091293334961,51.65013885498047],[3.7217919826507,51.66073989868164]],[[4.280673027038574,51.752841949462834],[4.303074836731014,51.72972106933594],[4.338037014007625,51.72646713256847],[4.355209827423209,51.73740386962896],[4.280673027038574,51.752841949462834]]],[[[4.156164169311523,51.683303833007926],[4.108425140380802,51.677379608154354],[4.094184875488395,51.66823577880871],[4.045772075653076,51.68472290039068],[4.015205860137939,51.68704605102538],[4.007430076599121,51.7031135559082],[3.970097064971924,51.73406982421875],[3.906164884567318,51.73324584960949],[3.886904001236018,51.74376296997075],[3.826029062271175,51.73844909667968],[3.842823982238826,51.756637573242244],[3.869591951370353,51.781242370605526],[3.948900938034058,51.802928924560604],[3.988220930099544,51.80252838134759],[4.019497871398983,51.78046798706066],[4.018928050994987,51.75263214111334],[4.050739765167179,51.7117156982423],[4.111873149871882,51.70794296264654],[4.152820110321045,51.69852828979492],[4.156164169311523,51.683303833007926]]],[[[3.864857912063655,51.54415512084972],[3.819778919220027,51.54981994628906],[3.788240909576359,51.541294097900504],[3.753251075744629,51.54797744750988],[3.702512979507446,51.512214660644645],[3.652451992034912,51.57071304321289],[3.68923711776739,51.55601119995117],[3.7118079662323,51.53390121459961],[3.76021599769598,51.5552597045899],[3.803925991058406,51.54780197143549],[3.836918115615844,51.55634307861328],[3.864857912063655,51.54415512084972]]]]},"properties":{"ID_0":158,"ISO":"NL-ZM","NAME_0":"Netherlands","ID_1":13,"NAME_1":"Zeeuwse meren","TYPE_1":"Water body","ENGTYPE_1":"Water body","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[4.280673027038574,51.752841949462834],[4.355209827423209,51.73740386962896],[4.338037014007625,51.72646713256847],[4.303074836731014,51.72972106933594],[4.280673027038574,51.752841949462834]]],[[[4.044167041778564,51.829303741455185],[4.063590049743709,51.81332015991211],[4.165033817291317,51.77946090698247],[4.194274902343807,51.77439117431646],[4.245997905731315,51.74441146850597],[4.274201869964543,51.722251892089844],[4.300489902496338,51.71712875366222],[4.366487026214713,51.691722869873104],[4.358274936676025,51.67099761962896],[4.28176212310791,51.65499877929693],[4.238123893737793,51.65904235839855],[4.221749782562199,51.67413330078136],[4.191024780273494,51.68278503417968],[4.157640933990592,51.68242263793957],[4.156164169311523,51.683303833007926],[4.152820110321045,51.69852828979492],[4.111873149871882,51.70794296264654],[4.050739765167179,51.7117156982423],[4.018928050994987,51.75263214111334],[4.019497871398983,51.78046798706066],[3.988220930099544,51.80252838134759],[3.948900938034058,51.802928924560604],[3.869591951370353,51.781242370605526],[3.842823982238826,51.756637573242244],[3.839721918106136,51.75791549682623],[3.865278005599976,51.78763961791998],[3.855277061462459,51.80347061157232],[3.867500066757259,51.818473815918026],[3.991389036178703,51.84597396850586],[4.044167041778564,51.829303741455185]]],[[[4.797234058380127,52.22634506225591],[4.804946899414062,52.20125579833989],[4.895024776458797,52.1622200012207],[4.877717971801815,52.13879776000982],[4.816101074218864,52.14027786254882],[4.795835018157959,52.122211456298885],[4.825343132019157,52.108909606933594],[4.828750133514461,52.0748176574707],[4.869813919067383,52.062423706054744],[4.832029819488469,52.04970169067388],[4.806190967559814,52.01455307006836],[4.863741874694824,51.96823883056651],[4.881762981414795,51.93774795532232],[4.915287017822266,51.94239425659191],[4.947154045105037,51.9649772644043],[4.974958896636963,51.96060562133789],[4.996704101562557,51.97685241699213],[5.024535179138297,51.9697761535645],[5.058074951171931,51.977077484130916],[5.05826377868658,51.955535888671875],[5.153345108032283,51.93427658081055],[5.117190837860164,51.888397216796875],[5.09530878067028,51.88922882080083],[5.048910140991268,51.85945510864252],[5.030344009399528,51.818992614746094],[5.005562782287541,51.82159423828119],[4.931215763092098,51.82846450805669],[4.907957077026424,51.82476806640631],[4.863097190856934,51.8030052185058],[4.825302124023381,51.79921722412115],[4.784592151641789,51.796298980713004],[4.752798080444336,51.781749725341854],[4.741473197937011,51.761932373046875],[4.714137077331657,51.74380874633795],[4.678015232086238,51.73100662231451],[4.531834125518799,51.70122146606451],[4.490943908691349,51.711662292480526],[4.415187835693359,51.720893859863224],[4.350695133209342,51.74364471435547],[4.249783992767391,51.76599502563471],[4.231726169586238,51.78825378417969],[4.183232784271297,51.80479431152355],[4.156518936157283,51.82246017456049],[4.128934860229492,51.819458007812614],[4.07435417175293,51.842174530029354],[4.055727005004826,51.838516235351676],[4.065279006958007,51.85514068603527],[4.030834197998047,51.886806488037166],[4.051942825317383,51.907081604003906],[4.040832996368465,51.92375183105474],[3.99861192703247,51.91624832153332],[3.993055105209351,51.92874908447277],[4.017498970031738,51.95152664184582],[4.02472114562994,51.98652648925792],[4.088245868682918,51.973148345947266],[4.133612155914307,52.00236129760742],[4.276944160461482,52.11208343505854],[4.308053970337028,52.13069534301758],[4.363611221313477,52.176250457763786],[4.409721851348934,52.22152709960949],[4.494165897369384,52.327655792236435],[4.56486701965332,52.30920028686535],[4.585299968719596,52.318328857421875],[4.613377094268913,52.31314468383794],[4.590466976165828,52.27976989746094],[4.570105075836295,52.267948150634815],[4.558435916900635,52.218685150146534],[4.604957103729248,52.21434402465826],[4.64161491394043,52.21819305419922],[4.672246932983512,52.23096847534191],[4.726602077484245,52.23221206665039],[4.745993137359733,52.214378356933594],[4.797234058380127,52.22634506225591]]]]},"properties":{"ID_0":158,"ISO":"NL-ZH","NAME_0":"Netherlands","ID_1":14,"NAME_1":"Zuid-Holland","TYPE_1":"Provincie","ENGTYPE_1":"Province","NL_NAME_1":null,"VARNAME_1":"Hollande-méridionale|South Holland"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson
new file mode 100644
index 0000000..b44184e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson
@@ -0,0 +1,22 @@
+{"type":"FeatureCollection", "features": [
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.20378303527832,38.75151062011719],[-7.260046005249023,38.722942352295036],[-7.267109870910645,38.69974517822277],[-7.272511005401611,38.638404846191406],[-7.260427951812744,38.60882949829107],[-7.263917922973576,38.587867736816406],[-7.30337381362915,38.54310226440441],[-7.320826053619385,38.48537826538086],[-7.301905155181885,38.4653205871582],[-7.317911148071289,38.44009017944347],[-7.284347057342472,38.42317962646496],[-7.274529933929443,38.4000244140625],[-7.248188972473145,38.36951446533203],[-7.202268123626709,38.32903289794922],[-7.17549276351923,38.28845977783209],[-7.142959117889404,38.26171875],[-7.142860889434758,38.240581512451286],[-7.107775211334229,38.18798828125006],[-7.131518840789795,38.17103958129883],[-7.152394771575928,38.17347717285162],[-7.199100017547551,38.2240943908692],[-7.190113067626953,38.24645233154297],[-7.234332084655762,38.257080078125114],[-7.260647773742619,38.28297424316412],[-7.280370235443115,38.33011627197277],[-7.335168838500863,38.32130432128912],[-7.354588031768685,38.30007553100597],[-7.397931098937988,38.292640686035156],[-7.413530826568604,38.264011383056754],[-7.461057186126709,38.219928741455135],[-7.497714996337834,38.20451736450207],[-7.497902870178166,38.18846511840826],[-7.580321788787842,38.194175720214844],[-7.588113784790039,38.2032585144043],[-7.635105133056641,38.209526062011776],[-7.669629096984863,38.20022583007824],[-7.711211204528752,38.21406936645519],[-7.758947849273682,38.24647140502941],[-7.790571212768555,38.25481796264654],[-7.803628921508789,38.246341705322266],[-7.845479011535645,38.2574844360351],[-7.943727016448975,38.30525588989269],[-7.980532169341927,38.31709289550787],[-7.995716094970646,38.30242919921881],[-8.019946098327637,38.300693511962834],[-8.043713569641056,38.32608795166021],[-8.07200622558588,38.31836318969732],[-8.111496925353947,38.31972885131847],[-8.13115119934082,38.31288528442394],[-8.164377212524357,38.31984710693371],[-8.197738647460938,38.34259033203125],[-8.269202232360783,38.353591918945426],[-8.277294158935547,38.371547698974666],[-8.322565078735352,38.37220382690441],[-8.283736228942871,38.4120979309082],[-8.289321899414062,38.43550109863281],[-8.325492858886662,38.443340301513786],[-8.310319900512695,38.458507537841854],[-8.335991859435978,38.506958007812614],[-8.358156204223576,38.52442169189459],[-8.369127273559513,38.545745849609375],[-8.399714469909668,38.53751754760748],[-8.423136711120549,38.520984649658146],[-8.446455001830998,38.52605819702154],[-8.47592830657959,38.516769409179744],[-8.497563362121525,38.548820495605526],[-8.53238391876215,38.52815246582031],[-8.572546005248967,38.53162384033203],[-8.615829467773438,38.553108215332145],[-8.639120101928654,38.54949188232433],[-8.656537055969181,38.60781478881836],[-8.612386703491211,38.644748687744254],[-8.59066200256342,38.654052734375],[-8.569088935851994,38.67718887329113],[-8.531220436096135,38.69186401367193],[-8.490978240966797,38.76131057739252],[-8.54680347442627,38.7634391784668],[-8.500376701354924,38.807479858398494],[-8.471081733703613,38.79390335083019],[-8.419169425964355,38.8376579284668],[-8.409059524536133,38.82299041748058],[-8.380048751831055,38.853458404541016],[-8.338020324707031,38.84022903442394],[-8.321274757385254,38.85925674438482],[-8.301423072814941,38.86032485961914],[-8.26966762542719,38.84226226806652],[-8.249606132507324,38.817794799804744],[-8.221803665161133,38.82861328125],[-8.197278976440373,38.8079566955567],[-8.17359733581543,38.80097198486334],[-8.175615310668888,38.78266906738287],[-8.142043113708496,38.772586822509766],[-8.124317169189453,38.80496978759771],[-8.154566764831486,38.80924224853527],[-8.184583663940373,38.84926605224615],[-8.159498214721623,38.86513900756836],[-8.269928932189885,38.90717315673828],[-8.24293327331543,38.93814849853521],[-8.227920532226506,38.98738861083996],[-8.210150718688965,38.98447418212896],[-8.192082405090275,39.00790023803722],[-8.152009010314941,39.02693176269531],[-8.103813171386719,39.022735595703125],[-8.120295524597168,39.00399017333996],[-8.10317134857172,38.969158172607536],[-8.078496932983398,39.013763427734375],[-8.04761600494379,39.00828933715832],[-8.013733863830566,38.9813804626466],[-8.020383834838754,38.964012145996094],[-8.009519577026367,38.945182800293026],[-7.96800708770752,38.95161056518566],[-7.957874774932804,38.96520614624018],[-7.925670146942139,38.97331619262701],[-7.875960826873779,38.908359527588004],[-7.823974132537842,38.89935302734375],[-7.772280216217041,38.90113830566412],[-7.752035140991211,38.90824127197277],[-7.732884883880615,38.93920135498047],[-7.698064804077148,38.91244506835949],[-7.683447837829533,38.92937088012695],[-7.654160022735596,38.916366577148494],[-7.625444889068547,38.92752075195324],[-7.604299068450928,38.953781127929744],[-7.564651966094914,38.95245361328131],[-7.542685031890812,38.96776199340826],[-7.553131103515511,38.992465972900504],[-7.5333571434021,39.00843811035156],[-7.512630939483643,38.98595428466797],[-7.491979122161865,38.98911666870117],[-7.452898979187012,38.96441650390625],[-7.466124057769775,38.926036834716854],[-7.422935962676945,38.90348434448248],[-7.42778301239008,38.88802337646496],[-7.419244766235352,38.848217010498104],[-7.395896911621094,38.81185913085943],[-7.346802234649658,38.7981224060058],[-7.319062232971191,38.80948257446295],[-7.325654029846191,38.82519149780285],[-7.294716835021973,38.84055709838873],[-7.279085159301701,38.827938079833984],[-7.245706081390381,38.84785842895519],[-7.211150169372559,38.80785751342768],[-7.232410907745304,38.78516387939459],[-7.227612018585205,38.766826629638786],[-7.20378303527832,38.75151062011719]]]},"properties":{"ID_0":182,"ISO":"PT-07","NAME_0":"Portugal","ID_1":1,"NAME_1":"Évora","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.263980865478459,41.065856933593864],[-8.237069129943848,41.05765151977545],[-8.237236976623535,41.017833709716854],[-8.20802116394043,41.01352691650396],[-8.178068161010742,40.98820114135742],[-8.14290809631342,40.978557586670036],[-8.091073036193848,41.008968353271484],[-8.08916187286377,40.98755264282238],[-8.132025718688965,40.942001342773494],[-8.120406150817871,40.91793441772472],[-8.127950668334904,40.89814758300787],[-8.103034973144531,40.86687088012695],[-8.124870300292969,40.849449157714844],[-8.165928840637207,40.865879058837834],[-8.190504074096623,40.84612274169933],[-8.2315092086792,40.86469268798828],[-8.255086898803711,40.855854034423885],[-8.23675537109375,40.827491760253906],[-8.27441501617426,40.76198577880871],[-8.333592414855957,40.737007141113395],[-8.326325416564941,40.71119308471674],[-8.297637939453068,40.69433975219732],[-8.288825035095215,40.66902542114269],[-8.294792175292912,40.64567947387701],[-8.245376586914006,40.61640548706049],[-8.308414459228459,40.59640884399414],[-8.289183616638184,40.568786621093864],[-8.285277366638184,40.539649963378906],[-8.25008773803711,40.51121520996088],[-8.282843589782658,40.50917053222656],[-8.324973106384277,40.491794586181754],[-8.334627151489258,40.475341796875114],[-8.318705558776799,40.45672988891613],[-8.354867935180664,40.408855438232536],[-8.356213569641056,40.36722946166998],[-8.35785770416254,40.34740447998047],[-8.401336669921875,40.34188461303722],[-8.409584999084473,40.323860168457145],[-8.448579788207951,40.31761550903326],[-8.454360961914062,40.27917480468756],[-8.488160133361816,40.29218292236334],[-8.525858879089355,40.29401779174816],[-8.515956878662053,40.312522888183594],[-8.484992027282715,40.31534194946295],[-8.491802215576115,40.345745086669865],[-8.482975959777775,40.38877487182623],[-8.517681121826172,40.42048645019531],[-8.54181957244873,40.40649795532232],[-8.579364776611271,40.41238021850586],[-8.571069717407227,40.450588226318416],[-8.585335731506348,40.479579925537166],[-8.620631217956486,40.48211669921881],[-8.631562232971135,40.46582031249994],[-8.631159782409668,40.43439865112316],[-8.647921562194767,40.42405319213873],[-8.677765846252441,40.43491363525385],[-8.701786041259766,40.45918273925781],[-8.784024238586426,40.52036666870123],[-8.747082710266113,40.64430618286133],[-8.725418090820312,40.64541625976568],[-8.72013854980463,40.65874862670893],[-8.689861297607422,40.66513824462885],[-8.665972709655762,40.69235992431652],[-8.682638168334961,40.77930450439459],[-8.70152759552002,40.75708389282232],[-8.699304580688363,40.71847152709961],[-8.719582557678166,40.69819259643566],[-8.71791744232172,40.67847061157232],[-8.740416526794377,40.646526336670036],[-8.7540283203125,40.646251678466854],[-8.697639465332031,40.80374908447277],[-8.660707473754883,40.9292449951173],[-8.644963264465332,41.015972137451286],[-8.606048583984318,41.02569580078131],[-8.594013214111328,41.01424026489269],[-8.557171821594181,41.01555633544922],[-8.54177188873291,41.03737258911133],[-8.51527214050293,41.01573562622076],[-8.488737106323242,41.01289749145519],[-8.475690841674805,41.03404617309576],[-8.44873046875,41.05346298217779],[-8.426598548889103,41.020713806152344],[-8.396756172180119,41.01244735717779],[-8.394387245178166,41.05075454711914],[-8.352152824401855,41.04010391235357],[-8.287214279174748,41.07893753051752],[-8.263980865478459,41.065856933593864]]]},"properties":{"ID_0":182,"ISO":"PT-01","NAME_0":"Portugal","ID_1":2,"NAME_1":"Aveiro","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-25.08909606933588,37.01562118530279],[-25.05830192565918,37.0135231018067],[-25.05553054809559,36.987728118896484],[-25.02061653137207,36.96474075317394],[-25.017831802368164,36.93109512329107],[-25.067209243774357,36.927692413330135],[-25.092344284057617,36.9486198425293],[-25.15793609619135,36.939010620117244],[-25.17181205749506,36.95042419433594],[-25.18570899963379,36.98480606079096],[-25.163757324218693,37.00540161132818],[-25.08909606933588,37.01562118530279]]],[[[-25.438690185546818,37.82532882690441],[-25.403654098510685,37.82637786865246],[-25.343753814697266,37.84610366821295],[-25.324609756469613,37.86166763305664],[-25.289306640625,37.85451889038097],[-25.243349075317326,37.85287475585943],[-25.174343109130803,37.85725021362305],[-25.149425506591797,37.84946823120117],[-25.134651184081974,37.8065071105957],[-25.15013504028309,37.75743103027344],[-25.17311477661127,37.740985870361385],[-25.215972900390625,37.73556137084961],[-25.252468109130746,37.746192932128906],[-25.294631958007812,37.733367919921875],[-25.351959228515625,37.72349929809582],[-25.3684139251709,37.71265411376959],[-25.423685073852482,37.71474075317394],[-25.46612548828125,37.71175765991211],[-25.519580841064396,37.716590881347656],[-25.56398200988758,37.738136291503906],[-25.632041931152344,37.747253417968864],[-25.687740325927734,37.73205184936535],[-25.776159286498967,37.78189849853521],[-25.799640655517578,37.80124664306635],[-25.841218948364144,37.827247619628906],[-25.855018615722656,37.8597030639649],[-25.824583053588867,37.884597778320256],[-25.78179740905756,37.90968704223627],[-25.721096038818303,37.88640213012707],[-25.679292678833008,37.83608627319336],[-25.626575469970646,37.830818176269474],[-25.58397483825678,37.812808990478516],[-25.52635383605957,37.822589874267635],[-25.49941635131836,37.840103149414176],[-25.45728683471674,37.82191467285156],[-25.438690185546818,37.82532882690441]]],[[[-28.41545867919922,38.561363220214844],[-28.389394760131836,38.55784225463867],[-28.312828063964844,38.524841308593864],[-28.295358657836914,38.50600433349621],[-28.244159698486328,38.49949264526367],[-28.172420501708928,38.45656585693371],[-28.057422637939453,38.44248199462902],[-28.030441284179688,38.411575317382926],[-28.082580566406193,38.399711608886776],[-28.17859268188471,38.409591674804744],[-28.196147918701115,38.396938323974666],[-28.24072837829584,38.38227081298828],[-28.275583267211914,38.41270065307617],[-28.364744186401367,38.4124374389649],[-28.403743743896484,38.42609024047857],[-28.445604324340707,38.420291900634766],[-28.51621437072754,38.45111083984375],[-28.540658950805607,38.4853134155274],[-28.538139343261662,38.52996826171881],[-28.514379501342773,38.54938888549816],[-28.478147506713867,38.56061172485363],[-28.453588485717717,38.55601882934576],[-28.41545867919922,38.561363220214844]]],[[[-28.715118408203125,38.6438255310058],[-28.66303253173828,38.62980651855463],[-28.64915657043457,38.61713409423834],[-28.60533905029297,38.59975433349615],[-28.612836837768555,38.56140899658209],[-28.630584716796875,38.52478027343756],[-28.72119712829584,38.51743698120123],[-28.749553680419865,38.5249862670899],[-28.759300231933537,38.55937957763683],[-28.818706512451115,38.58319854736334],[-28.835796356201115,38.60242080688488],[-28.792537689208984,38.61184310913086],[-28.758150100708008,38.61034393310541],[-28.715118408203125,38.6438255310058]]],[[[-28.317840576171818,38.75604629516607],[-28.26347351074213,38.74496841430664],[-28.2337646484375,38.73094940185547],[-28.145151138305664,38.706253051757926],[-28.115917205810547,38.692222595214844],[-28.038249969482422,38.670978546142635],[-28.024953842163086,38.67207336425787],[-27.977739334106445,38.64404296875006],[-27.77756690979004,38.56436538696295],[-27.75468635559082,38.54714584350586],[-27.774974822998047,38.53633880615229],[-27.827892303466797,38.53348922729498],[-27.90290641784668,38.565326690673885],[-27.942989349365234,38.58925247192394],[-28.025098800659123,38.601573944091854],[-28.055511474609375,38.621593475341854],[-28.120586395263672,38.637947082519645],[-28.22182846069336,38.684692382812614],[-28.231630325317383,38.70152664184576],[-28.269744873046875,38.715923309326115],[-28.317840576171818,38.75604629516607]]],[[[-27.25908851623535,38.80315017700195],[-27.23053169250477,38.79145812988287],[-27.203039169311467,38.79578781127941],[-27.13085746765131,38.781192779541016],[-27.10312271118164,38.785427093505916],[-27.06208038330078,38.759628295898494],[-27.06218719482422,38.71463394165039],[-27.04382705688471,38.70343399047857],[-27.07407379150385,38.67155838012701],[-27.080183029174805,38.645473480224666],[-27.133363723754883,38.6443443298341],[-27.165842056274357,38.6536598205567],[-27.268335342407227,38.65713119506847],[-27.278087615966797,38.65238189697271],[-27.35286903381342,38.68759918212885],[-27.370042800903263,38.707126617431754],[-27.38056564331049,38.74659729003906],[-27.36287117004389,38.78159332275402],[-27.333328247070312,38.79407119750988],[-27.25908851623535,38.80315017700195]]],[[[-28.03047752380371,39.09637069702154],[-27.995029449462834,39.08633422851568],[-27.949798583984375,39.0176620483399],[-27.97188949584961,39.00873947143555],[-28.04775047302246,39.03361511230469],[-28.071411132812443,39.06933975219738],[-28.045614242553654,39.095676422119084],[-28.03047752380371,39.09637069702154]]],[[[-31.158523559570312,39.50241851806635],[-31.147199630737305,39.473205566406364],[-31.12433433532715,39.45270919799816],[-31.159717559814453,39.3846893310548],[-31.191919326782227,39.37199783325207],[-31.24770164489746,39.374771118164176],[-31.262424468994027,39.418197631835994],[-31.257217407226562,39.4880828857423],[-31.232059478759766,39.51355361938488],[-31.21296882629389,39.51948165893549],[-31.193183898925724,39.503364562988224],[-31.158523559570312,39.50241851806635]]],[[[-31.094825744628906,39.68022537231457],[-31.111499786376953,39.66876602172857],[-31.127870559692383,39.70169067382824],[-31.102115631103516,39.72457885742199],[-31.081565856933594,39.7061500549317],[-31.094825744628906,39.68022537231457]]]]},"properties":{"ID_0":182,"ISO":"PT-20","NAME_0":"Portugal","ID_1":3,"NAME_1":"Azores","TYPE_1":"Região autónoma","ENGTYPE_1":"Autonomous region","NL_NAME_1":null,"VARNAME_1":"Açores"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.107775211334229,38.18798828125006],[-7.084076881408691,38.16943359375],[-7.057967185974121,38.186618804931754],[-7.028614997863713,38.18251800537121],[-7.011837959289494,38.203315734863224],[-6.942316055297795,38.21809387207037],[-6.933838844299203,38.20186233520519],[-6.969247817993164,38.1604843139649],[-6.959397792816105,38.13348770141607],[-6.989850997924805,38.089969635009766],[-6.990554809570256,38.05437850952154],[-7.007203102111816,38.020755767822266],[-7.044735908508244,38.01399612426769],[-7.062170028686523,38.026870727539176],[-7.108306884765568,38.040939331054744],[-7.127196788787785,38.030612945556584],[-7.129073143005314,38.01076507568365],[-7.158813953399658,37.99389648437494],[-7.186089038848877,38.00209808349604],[-7.245584964752197,37.99180221557623],[-7.261834144592285,37.97747039794933],[-7.248470783233643,37.954257965088004],[-7.254800796508789,37.92370223999029],[-7.28217077255249,37.89765548706066],[-7.279625892639103,37.87697601318354],[-7.324351787567139,37.81582641601568],[-7.347447872161808,37.80492782592785],[-7.395193099975586,37.76515579223633],[-7.422598838806152,37.7546005249024],[-7.431838989257812,37.72005081176769],[-7.447615146636906,37.69788360595703],[-7.444843769073486,37.6639404296875],[-7.486264228820801,37.61232376098627],[-7.507532119750977,37.56681060791027],[-7.522677898406926,37.55307388305664],[-7.512472152709961,37.52630233764643],[-7.563029766082707,37.52205276489269],[-7.59665918350214,37.512825012207145],[-7.62022686004633,37.48988723754883],[-7.662359237670842,37.50577163696289],[-7.732138156890869,37.496685028076286],[-7.75399208068842,37.47990417480469],[-7.855494022369328,37.437980651855526],[-7.892955780029297,37.43381500244146],[-7.902664184570312,37.4172821044923],[-7.93809700012207,37.404045104980526],[-7.977831840515137,37.40607452392578],[-8.000263214111328,37.39752578735363],[-8.005199432373047,37.35839080810547],[-8.030487060546875,37.35229873657238],[-8.065702438354492,37.31897354125971],[-8.158059120178166,37.33362579345703],[-8.201180458068848,37.35139465332037],[-8.245640754699707,37.37758255004883],[-8.274690628051758,37.38862609863287],[-8.286236763000431,37.43144226074219],[-8.342972755432072,37.42570495605469],[-8.364278793334847,37.43030548095703],[-8.417367935180607,37.41976165771496],[-8.42163372039795,37.39502334594738],[-8.456412315368596,37.37484359741222],[-8.494525909423828,37.38602066040045],[-8.520509719848633,37.381618499755916],[-8.573291778564453,37.41206741333008],[-8.623395919799805,37.39942932128906],[-8.636360168457031,37.37807083129894],[-8.65977668762207,37.39817428588867],[-8.707165718078556,37.40051269531244],[-8.733508110046387,37.39519119262701],[-8.753546714782715,37.430335998535156],[-8.796324729919434,37.4429550170899],[-8.794380187988281,37.50973129272461],[-8.785672187805119,37.53280258178711],[-8.792097091674691,37.558235168457145],[-8.819279670715332,37.598445892333984],[-8.79545593261713,37.67561721801769],[-8.792411804199162,37.72021865844732],[-8.809802055358887,37.741512298583984],[-8.807142257690373,37.77481079101568],[-8.792975425720158,37.81956863403326],[-8.782633781433105,37.80715179443371],[-8.726470947265625,37.80862808227539],[-8.68343734741211,37.75327301025396],[-8.660515785217285,37.768291473388786],[-8.633026123046875,37.75308990478521],[-8.58765983581543,37.756965637207145],[-8.583757400512695,37.79937744140625],[-8.551310539245549,37.84729385375988],[-8.532410621643066,37.85502243041998],[-8.479292869567814,37.85500335693371],[-8.462068557739258,37.86560821533209],[-8.42434120178217,37.867004394531364],[-8.367832183837834,37.86105346679693],[-8.33613109588623,37.864574432373104],[-8.299488067626953,37.89910888671875],[-8.309226036071777,37.91168594360357],[-8.295905113220158,37.950931549072266],[-8.295440673828068,37.993217468261776],[-8.314468383789062,38.01638793945324],[-8.353198051452637,38.027400970458984],[-8.40774917602539,38.06639862060547],[-8.386290550231934,38.11611175537121],[-8.368000030517578,38.10273361206055],[-8.336983680725098,38.142745971679744],[-8.2912015914917,38.13909912109375],[-8.284335136413574,38.1865806579591],[-8.239702224731388,38.1794815063476],[-8.229804039001408,38.19697952270508],[-8.203120231628361,38.20069122314453],[-8.16539192199707,38.21763992309576],[-8.129805564880371,38.22395706176769],[-8.129705429077148,38.26630401611328],[-8.14312744140625,38.29785919189459],[-8.164377212524357,38.31984710693371],[-8.13115119934082,38.31288528442394],[-8.111496925353947,38.31972885131847],[-8.07200622558588,38.31836318969732],[-8.043713569641056,38.32608795166021],[-8.019946098327637,38.300693511962834],[-7.995716094970646,38.30242919921881],[-7.980532169341927,38.31709289550787],[-7.943727016448975,38.30525588989269],[-7.845479011535645,38.2574844360351],[-7.803628921508789,38.246341705322266],[-7.790571212768555,38.25481796264654],[-7.758947849273682,38.24647140502941],[-7.711211204528752,38.21406936645519],[-7.669629096984863,38.20022583007824],[-7.635105133056641,38.209526062011776],[-7.588113784790039,38.2032585144043],[-7.580321788787842,38.194175720214844],[-7.497902870178166,38.18846511840826],[-7.497714996337834,38.20451736450207],[-7.461057186126709,38.219928741455135],[-7.413530826568604,38.264011383056754],[-7.397931098937988,38.292640686035156],[-7.354588031768685,38.30007553100597],[-7.335168838500863,38.32130432128912],[-7.280370235443115,38.33011627197277],[-7.260647773742619,38.28297424316412],[-7.234332084655762,38.257080078125114],[-7.190113067626953,38.24645233154297],[-7.199100017547551,38.2240943908692],[-7.152394771575928,38.17347717285162],[-7.131518840789795,38.17103958129883],[-7.107775211334229,38.18798828125006]]]},"properties":{"ID_0":182,"ISO":"PT-02","NAME_0":"Portugal","ID_1":4,"NAME_1":"Beja","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.974152088165283,41.37519454956055],[-7.989554882049561,41.3466033935548],[-8.035721778869629,41.318798065185604],[-8.065356254577637,41.34327697753912],[-8.086494445800724,41.32934951782238],[-8.119658470153752,41.34316253662121],[-8.146122932434025,41.36417770385748],[-8.165824890136719,41.40029907226568],[-8.185504913330021,41.40996551513672],[-8.222992897033635,41.40994262695324],[-8.274265289306584,41.36487579345709],[-8.278363227844238,41.345829010009766],[-8.303301811218262,41.342960357666016],[-8.328076362609806,41.36577224731457],[-8.394207000732422,41.361892700195256],[-8.415792465209961,41.3710670471192],[-8.441747665405273,41.36257553100586],[-8.455116271972543,41.375629425048885],[-8.501439094543457,41.36833953857433],[-8.537215232849121,41.34300231933588],[-8.602392196655217,41.34556961059582],[-8.622834205627441,41.38398361206055],[-8.592291831970158,41.39498901367193],[-8.605216026306152,41.41266632080078],[-8.650121688842773,41.419689178466854],[-8.6573867797851,41.436302185058594],[-8.683174133300781,41.44916915893555],[-8.700663566589242,41.44219207763666],[-8.746247291564941,41.46859359741222],[-8.775138854980412,41.47123718261719],[-8.788472175598145,41.50180435180664],[-8.785415649414062,41.535137176513786],[-8.805417060851994,41.585414886474666],[-8.80986213684082,41.612136840820256],[-8.756795883178654,41.6143913269043],[-8.724178314208984,41.63382720947277],[-8.664014816284123,41.64232254028332],[-8.643220901489201,41.6543807983399],[-8.604116439819279,41.634319305420036],[-8.577292442321777,41.64296340942383],[-8.564983367919922,41.62530899047857],[-8.540728569030705,41.63131332397461],[-8.547341346740666,41.663280487060604],[-8.521745681762695,41.67958068847662],[-8.51372241973877,41.721305847168026],[-8.485695838928223,41.72718048095703],[-8.414167404174805,41.758998870849666],[-8.306785583496037,41.76118087768566],[-8.291508674621582,41.78194808959972],[-8.270934104919377,41.77143859863281],[-8.23166561126709,41.787422180175724],[-8.196633338928223,41.812210083007756],[-8.164990425109863,41.818115234375114],[-8.130880355834904,41.80886459350597],[-8.093894004821777,41.80803680419922],[-8.05121994018549,41.81947326660156],[-8.06120586395258,41.76358032226557],[-8.076475143432617,41.7498016357423],[-8.094255447387695,41.70740890502924],[-8.118513107299748,41.69226837158203],[-8.04798412322998,41.69279098510748],[-7.997269153594857,41.687831878662166],[-7.981635093688965,41.67771911621105],[-7.998918056488037,41.653347015380916],[-7.996585845947209,41.603084564208984],[-7.96646785736084,41.60392379760748],[-7.879362106323242,41.58823394775402],[-7.857317924499455,41.60141754150402],[-7.829501152038574,41.60222244262701],[-7.810657024383545,41.57334518432617],[-7.832542896270695,41.55690383911144],[-7.861333847045898,41.51178359985357],[-7.888566017150879,41.50896453857422],[-7.902626037597599,41.489265441894645],[-7.938171863555908,41.47735595703131],[-7.94167518615717,41.42998123168951],[-7.966660022735596,41.412067413330135],[-7.974152088165283,41.37519454956055]]]},"properties":{"ID_0":182,"ISO":"PT-03","NAME_0":"Portugal","ID_1":5,"NAME_1":"Braga","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.931346893310547,41.02939987182617],[-7.010475158691349,41.04075622558594],[-7.026773929595947,41.03818511962902],[-7.051486015319824,41.05764770507824],[-7.101256847381535,41.07991027832037],[-7.101276874542179,41.10596847534191],[-7.087913990020695,41.131862640380916],[-7.122785091400146,41.13430404663086],[-7.114654064178467,41.15081787109381],[-7.147982120513916,41.156261444091854],[-7.161159038543587,41.127719879150504],[-7.190487861633301,41.126285552978516],[-7.249491214752197,41.14499282836914],[-7.28287220001215,41.13548660278326],[-7.304561138153019,41.13951873779297],[-7.356201171875,41.147487640380916],[-7.388576984405518,41.19287490844732],[-7.431878089904785,41.21079635620117],[-7.415037155151367,41.24769210815441],[-7.389745235443115,41.242534637451286],[-7.391393184661808,41.28581619262701],[-7.348082065582275,41.35162734985363],[-7.366302013397217,41.39691162109381],[-7.365305900573674,41.4404182434082],[-7.329376220703068,41.45958328247082],[-7.30764102935791,41.4612770080567],[-7.297340869903508,41.4991569519043],[-7.283936023712158,41.51562118530279],[-7.229093074798527,41.52279281616211],[-7.258381843566895,41.5631942749024],[-7.258426189422551,41.590316772460994],[-7.24289083480835,41.6421470642091],[-7.213789939880257,41.68115615844732],[-7.20887279510498,41.71176910400396],[-7.175905227661019,41.73730087280285],[-7.171195030212402,41.7698974609375],[-7.194233894348145,41.78352355957037],[-7.208745002746582,41.80921554565441],[-7.200468063354492,41.87949752807617],[-7.173623085021973,41.91891479492193],[-7.183824062347412,41.933006286621094],[-7.18663215637207,41.96942901611328],[-7.141430854797306,41.990749359130916],[-7.087482929229736,41.97346878051769],[-7.076929092407227,41.9519309997558],[-7.00617790222168,41.95056533813488],[-6.982932090759277,41.97335052490246],[-6.957778930664062,41.968929290771484],[-6.944279193878174,41.94464874267578],[-6.885053157806396,41.940299987793026],[-6.821579933166447,41.94599533081066],[-6.809988975524846,41.96953201293945],[-6.81131982803339,41.99250793457031],[-6.76865816116333,41.984081268310604],[-6.750555992126408,41.94363403320307],[-6.699979782104492,41.933303833007926],[-6.599432945251351,41.94829177856457],[-6.574894905090332,41.96083450317394],[-6.545938968658447,41.930778503418026],[-6.571154117584229,41.88348388671881],[-6.517614841461182,41.87507629394537],[-6.543922901153564,41.78371047973633],[-6.564451217651367,41.7516708374024],[-6.54825305938715,41.68558120727545],[-6.512534141540471,41.66120910644531],[-6.488707065582275,41.65750503540045],[-6.457342147827148,41.66658401489252],[-6.452342033386174,41.680896759033146],[-6.3546462059021,41.676391601562614],[-6.302277088165226,41.661796569824276],[-6.254438877105713,41.63298416137707],[-6.235787868499756,41.60704040527344],[-6.208693981170597,41.59911346435558],[-6.189142227172852,41.57481384277344],[-6.211725234985295,41.55913162231451],[-6.23692607879633,41.52133941650385],[-6.257978916168156,41.51191329956055],[-6.269998073577767,41.48649597167969],[-6.3052659034729,41.44969558715832],[-6.294871807098389,41.43518829345703],[-6.326849937438908,41.4163932800293],[-6.315393924713078,41.39005279541021],[-6.352467060088998,41.378326416015625],[-6.371310234069767,41.391967773437614],[-6.390470981597787,41.38405990600597],[-6.379715919494629,41.35630035400402],[-6.415255069732609,41.34794235229498],[-6.43761682510376,41.30530548095703],[-6.46883487701416,41.30126190185547],[-6.580511093139592,41.23904418945324],[-6.607235908508301,41.24941635131847],[-6.648365020751896,41.247539520263615],[-6.691836833953801,41.20798873901373],[-6.701457977294922,41.18027114868164],[-6.74045801162714,41.14923858642578],[-6.767859935760441,41.13482666015631],[-6.754182815551701,41.10404968261719],[-6.808920860290471,41.03648757934576],[-6.868515968322754,41.02685928344721],[-6.914993762969971,41.03838729858404],[-6.931346893310547,41.02939987182617]]]},"properties":{"ID_0":182,"ISO":"PT-04","NAME_0":"Portugal","ID_1":6,"NAME_1":"Bragança","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":"Braganza"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.951418876647892,40.25756454467779],[-7.012691974639836,40.22544860839855],[-7.020711898803654,40.195781707763786],[-7.01514196395874,40.13559722900402],[-6.999238014221135,40.11896514892584],[-6.940790176391545,40.11174392700195],[-6.907884120941105,40.066146850585994],[-6.880933761596566,40.041667938232536],[-6.875786781311035,39.99226760864269],[-6.886684894561711,39.979343414306584],[-6.885511875152531,39.940124511718864],[-6.906589031219426,39.923809051513786],[-6.899241924285889,39.901622772216854],[-6.903596878051701,39.87069702148449],[-6.931466102600098,39.852169036865234],[-6.935293197631722,39.8382453918457],[-6.987209796905461,39.81002044677746],[-6.976929187774601,39.77197647094738],[-6.993765830993596,39.74149322509771],[-6.987713813781681,39.72845458984375],[-7.005391120910645,39.70180892944347],[-7.015522956848145,39.6704216003418],[-7.054975986480656,39.659542083740234],[-7.128047943115178,39.66271972656256],[-7.151356220245304,39.6530647277832],[-7.251526832580566,39.66680526733404],[-7.283946037292424,39.66131210327154],[-7.331165790557861,39.64099121093756],[-7.375167846679631,39.650772094726676],[-7.401266098022461,39.646240234375],[-7.454207897186222,39.66217803955084],[-7.533764839172306,39.66716384887695],[-7.541685104370117,39.663677215576115],[-7.579123973846379,39.65881347656244],[-7.607287883758431,39.63713836669922],[-7.648519039153996,39.62478256225586],[-7.673112869262695,39.64890670776373],[-7.714807033538762,39.62668609619146],[-7.720778942108154,39.59509658813482],[-7.754927158355713,39.58832168579113],[-7.76994800567627,39.564155578613395],[-7.79987192153925,39.543960571289176],[-7.825108051299992,39.53736114501953],[-7.811983108520451,39.56780242919933],[-7.835793018341008,39.59442138671881],[-7.848848819732666,39.62367630004883],[-7.914264202117863,39.667819976806754],[-7.949749946594238,39.67945861816406],[-7.957581996917725,39.736911773681754],[-7.990914821624756,39.728584289550895],[-8.00469589233387,39.74333572387701],[-8.033921241760254,39.7465057373048],[-8.054351806640568,39.73556137084972],[-8.05048465728754,39.717811584472656],[-8.06213665008545,39.6934928894043],[-8.060848236083928,39.668350219726506],[-8.077296257019043,39.65876388549805],[-8.053985595703068,39.61698150634771],[-8.134341239929142,39.611263275146484],[-8.153472900390625,39.62413024902344],[-8.218593597412053,39.636589050293026],[-8.23394870758051,39.65125274658203],[-8.229837417602539,39.68805313110363],[-8.236935615539494,39.73000717163097],[-8.232072830200138,39.76279830932623],[-8.263676643371582,39.76867675781244],[-8.285090446472168,39.79576110839838],[-8.292945861816406,39.80867385864258],[-8.270357131958008,39.82465744018549],[-8.273726463317871,39.84314727783209],[-8.211854934692326,39.8503990173341],[-8.199804306030273,39.86488342285162],[-8.149169921874943,39.88534545898443],[-8.118680000305119,39.93408966064453],[-8.087236404418832,39.952789306640625],[-8.02992153167719,39.96529388427746],[-7.992346763610783,39.986549377441406],[-7.96308708190918,39.98603057861334],[-7.952623844146729,40.00255966186535],[-7.920207023620605,39.998481750488395],[-7.906136989593506,40.00879287719732],[-7.915913105010929,40.032772064208984],[-7.855222225189209,40.05902862548828],[-7.809142112731877,40.052333831787166],[-7.806521892547607,40.07867431640625],[-7.77638578414917,40.06859207153332],[-7.733414173126221,40.10384750366222],[-7.736053943633976,40.123958587646484],[-7.794346809387207,40.15953826904297],[-7.807573795318604,40.181652069091854],[-7.784341812133732,40.20818328857422],[-7.782391071319523,40.2299156188966],[-7.733748912811279,40.236885070800895],[-7.709965229034424,40.260757446289176],[-7.661197185516357,40.271240234375114],[-7.618742942810059,40.2997398376466],[-7.612915039062443,40.32189559936535],[-7.537196159362793,40.317836761474666],[-7.517599105834904,40.344951629638786],[-7.51649284362793,40.366477966308594],[-7.487105846404972,40.3947868347168],[-7.461634159088078,40.401828765869084],[-7.406191825866699,40.381004333496094],[-7.38112020492548,40.38240432739258],[-7.327566146850586,40.41075515747082],[-7.29276609420765,40.416126251220646],[-7.270390987396183,40.408050537109375],[-7.277012825012207,40.371963500976676],[-7.273392200469971,40.348907470703125],[-7.30925989151001,40.30266189575195],[-7.319065093994084,40.28071212768549],[-7.273579120635986,40.26573944091791],[-7.235732078552246,40.26206588745117],[-7.205585956573486,40.28576660156244],[-7.168613910674992,40.26781463623058],[-7.135993003845215,40.28287124633789],[-7.131223201751709,40.30887222290045],[-7.102531909942513,40.32086181640619],[-7.082963943481445,40.27828598022461],[-7.032310962676945,40.278244018554744],[-7.013679027557373,40.29006576538086],[-6.951418876647892,40.25756454467779]]]},"properties":{"ID_0":182,"ISO":"PT-05","NAME_0":"Portugal","ID_1":7,"NAME_1":"Castelo Branco","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.356213569641056,40.36722946166998],[-8.310014724731332,40.361469268798885],[-8.250845909118652,40.323223114013786],[-8.20863246917719,40.34140396118164],[-8.172102928161564,40.344116210937614],[-8.151982307434082,40.337497711181754],[-8.11300945281971,40.34141540527355],[-8.087972640991154,40.36112594604498],[-8.038994789123535,40.386699676513786],[-8.003739356994572,40.39157104492199],[-7.974253177642822,40.404979705810604],[-7.953798770904484,40.42395401000971],[-7.930622100830078,40.429122924804744],[-7.884239196777287,40.47314834594738],[-7.846825122833252,40.495552062988395],[-7.828310966491642,40.49854278564459],[-7.827292919158879,40.481811523437614],[-7.796943187713566,40.45742034912104],[-7.810705184936523,40.43960952758789],[-7.842558860778809,40.433273315429744],[-7.845125198364258,40.41408157348633],[-7.826879024505615,40.40321731567383],[-7.797164916992131,40.40504455566412],[-7.797267913818303,40.36164474487305],[-7.765120983123666,40.31658935546881],[-7.801314830780029,40.30941009521479],[-7.818168163299561,40.28215026855469],[-7.782391071319523,40.2299156188966],[-7.784341812133732,40.20818328857422],[-7.807573795318604,40.181652069091854],[-7.794346809387207,40.15953826904297],[-7.736053943633976,40.123958587646484],[-7.733414173126221,40.10384750366222],[-7.77638578414917,40.06859207153332],[-7.806521892547607,40.07867431640625],[-7.809142112731877,40.052333831787166],[-7.855222225189209,40.05902862548828],[-7.915913105010929,40.032772064208984],[-7.906136989593506,40.00879287719732],[-7.920207023620605,39.998481750488395],[-7.952623844146729,40.00255966186535],[-7.96308708190918,39.98603057861334],[-7.992346763610783,39.986549377441406],[-8.02992153167719,39.96529388427746],[-8.087236404418832,39.952789306640625],[-8.118680000305119,39.93408966064453],[-8.109966278076115,39.9715194702149],[-8.156821250915527,40.02735137939453],[-8.143742561340275,40.07278060913097],[-8.179098129272461,40.08973312377941],[-8.209749221801701,40.052078247070426],[-8.233405113220215,40.067062377929744],[-8.275806427001896,40.04540252685558],[-8.297977447509766,40.009353637695426],[-8.27210807800293,39.97538375854492],[-8.285329818725586,39.96547698974621],[-8.31871509552002,39.974678039550724],[-8.359291076660156,39.93560791015625],[-8.399789810180664,39.92618560791027],[-8.390396118164062,39.95122528076172],[-8.40221881866455,40.00093078613287],[-8.426013946533146,40.026557922363224],[-8.490616798400765,39.98611450195307],[-8.522838592529297,39.98361206054699],[-8.523219108581543,39.9666481018067],[-8.551694869995117,39.961578369140625],[-8.552368164062443,40.023960113525504],[-8.589536666870004,40.028099060058594],[-8.616233825683594,39.9915885925293],[-8.672210693359375,40.027206420898494],[-8.733350753784066,40.031856536865234],[-8.762535095214844,40.04116058349615],[-8.784306526184082,40.03632736206066],[-8.800462722778263,40.0125617980957],[-8.894027709960938,40.044345855713004],[-8.867916107177734,40.10736083984381],[-8.86180591583252,40.13763809204113],[-8.875060081481877,40.1617546081543],[-8.909583091735783,40.18569564819347],[-8.879027366638184,40.24625015258789],[-8.843116760253906,40.33499526977545],[-8.784024238586426,40.52036666870123],[-8.701786041259766,40.45918273925781],[-8.677765846252441,40.43491363525385],[-8.647921562194767,40.42405319213873],[-8.631159782409668,40.43439865112316],[-8.631562232971135,40.46582031249994],[-8.620631217956486,40.48211669921881],[-8.585335731506348,40.479579925537166],[-8.571069717407227,40.450588226318416],[-8.579364776611271,40.41238021850586],[-8.54181957244873,40.40649795532232],[-8.517681121826172,40.42048645019531],[-8.482975959777775,40.38877487182623],[-8.491802215576115,40.345745086669865],[-8.484992027282715,40.31534194946295],[-8.515956878662053,40.312522888183594],[-8.525858879089355,40.29401779174816],[-8.488160133361816,40.29218292236334],[-8.454360961914062,40.27917480468756],[-8.448579788207951,40.31761550903326],[-8.409584999084473,40.323860168457145],[-8.401336669921875,40.34188461303722],[-8.35785770416254,40.34740447998047],[-8.356213569641056,40.36722946166998]]]},"properties":{"ID_0":182,"ISO":"PT-06","NAME_0":"Portugal","ID_1":8,"NAME_1":"Coimbra","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.942360877990723,37.00624847412121],[-7.916526794433594,36.99930572509771],[-7.89264011383051,36.97735977172863],[-7.92513990402216,36.96930694580078],[-7.974306106567326,37.00458145141607],[-7.942360877990723,37.00624847412121]]],[[[-7.816805839538574,37.02736282348633],[-7.810418128967285,37.02486038208002],[-7.812084197998047,37.01374816894531],[-7.85125017166132,36.99902725219732],[-7.858194828033447,37.00902938842768],[-7.827917098998967,37.02513885498058],[-7.816805839538574,37.02736282348633]]],[[[-8.231427192687988,37.082988739013786],[-8.24976730346674,37.08673477172857],[-8.30213737487793,37.07260513305664],[-8.330718040466252,37.089328765869084],[-8.370861053466797,37.10169982910156],[-8.397748947143498,37.09027099609381],[-8.436620712280273,37.08536529541027],[-8.501148223876896,37.10044097900402],[-8.561812400817871,37.11980438232422],[-8.633194923400879,37.122360229492244],[-8.685745239257812,37.08535385131836],[-8.728114128112736,37.08614349365246],[-8.790863037109375,37.062419891357536],[-8.826665878295898,37.06413650512707],[-8.860815048217773,37.044372558593864],[-8.895253181457463,37.041877746582145],[-8.906367301940861,37.02367401123047],[-8.930341720581055,37.002922058105526],[-8.9605073928833,37.02223968505871],[-8.982839584350586,37.026325225830135],[-8.978628158569279,37.05605316162104],[-8.960839271545353,37.07395553588873],[-8.958587646484375,37.093906402587834],[-8.939341545104924,37.10705947875988],[-8.90636920928955,37.17233276367193],[-8.912751197814941,37.18381500244152],[-8.88669204711914,37.21875762939453],[-8.860407829284668,37.26838684082031],[-8.87478256225586,37.30195617675781],[-8.871821403503361,37.32201004028332],[-8.823183059692326,37.3876838684082],[-8.80689907073969,37.432044982910156],[-8.796324729919434,37.4429550170899],[-8.753546714782715,37.430335998535156],[-8.733508110046387,37.39519119262701],[-8.707165718078556,37.40051269531244],[-8.65977668762207,37.39817428588867],[-8.636360168457031,37.37807083129894],[-8.623395919799805,37.39942932128906],[-8.573291778564453,37.41206741333008],[-8.520509719848633,37.381618499755916],[-8.494525909423828,37.38602066040045],[-8.456412315368596,37.37484359741222],[-8.42163372039795,37.39502334594738],[-8.417367935180607,37.41976165771496],[-8.364278793334847,37.43030548095703],[-8.342972755432072,37.42570495605469],[-8.286236763000431,37.43144226074219],[-8.274690628051758,37.38862609863287],[-8.245640754699707,37.37758255004883],[-8.201180458068848,37.35139465332037],[-8.158059120178166,37.33362579345703],[-8.065702438354492,37.31897354125971],[-8.030487060546875,37.35229873657238],[-8.005199432373047,37.35839080810547],[-8.000263214111328,37.39752578735363],[-7.977831840515137,37.40607452392578],[-7.93809700012207,37.404045104980526],[-7.902664184570312,37.4172821044923],[-7.892955780029297,37.43381500244146],[-7.855494022369328,37.437980651855526],[-7.75399208068842,37.47990417480469],[-7.732138156890869,37.496685028076286],[-7.662359237670842,37.50577163696289],[-7.62022686004633,37.48988723754883],[-7.59665918350214,37.512825012207145],[-7.563029766082707,37.52205276489269],[-7.512472152709961,37.52630233764643],[-7.494328022003174,37.523326873779354],[-7.456223964691162,37.45019912719721],[-7.461812019348145,37.407444000244254],[-7.440489768981934,37.391025543213004],[-7.44467306137085,37.34744262695324],[-7.441112995147705,37.30731582641613],[-7.42205810546875,37.27486038208019],[-7.432222843170166,37.246494293212834],[-7.4205641746521,37.23922348022472],[-7.406249046325684,37.17152786254894],[-7.459304809570312,37.17736053466791],[-7.512639045715332,37.1662483215332],[-7.601250171661377,37.134582519531364],[-7.620417118072453,37.11041641235357],[-7.792084217071533,37.01708221435558],[-7.804861068725586,37.02430725097662],[-7.814583778381348,37.02819442749029],[-7.826251029968262,37.02736282348633],[-7.869862079620361,37.00819396972656],[-7.888195037841797,36.98208236694347],[-7.910973072052002,37.00041580200207],[-7.943748950958195,37.00680541992199],[-7.985415935516301,37.00458526611328],[-8.07913589477539,37.05598068237305],[-8.108981132507267,37.06899261474621],[-8.18475341796875,37.09056091308605],[-8.231427192687988,37.082988739013786]]]]},"properties":{"ID_0":182,"ISO":"PT-08","NAME_0":"Portugal","ID_1":9,"NAME_1":"Faro","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.409511089324951,40.921813964843864],[-7.378842830657959,40.90115356445318],[-7.38810205459589,40.885105133056754],[-7.425463199615422,40.88666534423834],[-7.430102825164795,40.90343856811535],[-7.409511089324951,40.921813964843864]]],[[[-6.931346893310547,41.02939987182617],[-6.93162298202509,41.016799926757926],[-6.875383853912297,40.9607887268067],[-6.859950065612736,40.95076370239252],[-6.838045120239258,40.89011764526367],[-6.809947967529297,40.88290023803711],[-6.803274154663029,40.84621047973644],[-6.823876857757512,40.83249664306646],[-6.816999912261963,40.7968635559082],[-6.825468063354492,40.78532028198248],[-6.830523014068604,40.74294281005871],[-6.810766220092773,40.71686935424816],[-6.798898220062199,40.65530395507818],[-6.806018829345646,40.63328170776373],[-6.838717937469426,40.59272003173828],[-6.845355033874455,40.565944671630916],[-6.800859928131104,40.55034255981451],[-6.795266151428166,40.511356353759766],[-6.81469821929926,40.50155258178722],[-6.849691867828369,40.4515113830567],[-6.838720798492432,40.41472244262701],[-6.781215190887337,40.363792419433594],[-6.790332794189453,40.33421707153326],[-6.8179931640625,40.32503509521496],[-6.863920211791992,40.29617691040039],[-6.867990970611572,40.26433181762695],[-6.9073228836059,40.25389099121105],[-6.951418876647892,40.25756454467779],[-7.013679027557373,40.29006576538086],[-7.032310962676945,40.278244018554744],[-7.082963943481445,40.27828598022461],[-7.102531909942513,40.32086181640619],[-7.131223201751709,40.30887222290045],[-7.135993003845215,40.28287124633789],[-7.168613910674992,40.26781463623058],[-7.205585956573486,40.28576660156244],[-7.235732078552246,40.26206588745117],[-7.273579120635986,40.26573944091791],[-7.319065093994084,40.28071212768549],[-7.30925989151001,40.30266189575195],[-7.273392200469971,40.348907470703125],[-7.277012825012207,40.371963500976676],[-7.270390987396183,40.408050537109375],[-7.29276609420765,40.416126251220646],[-7.327566146850586,40.41075515747082],[-7.38112020492548,40.38240432739258],[-7.406191825866699,40.381004333496094],[-7.461634159088078,40.401828765869084],[-7.487105846404972,40.3947868347168],[-7.51649284362793,40.366477966308594],[-7.517599105834904,40.344951629638786],[-7.537196159362793,40.317836761474666],[-7.612915039062443,40.32189559936535],[-7.618742942810059,40.2997398376466],[-7.661197185516357,40.271240234375114],[-7.709965229034424,40.260757446289176],[-7.733748912811279,40.236885070800895],[-7.782391071319523,40.2299156188966],[-7.818168163299561,40.28215026855469],[-7.801314830780029,40.30941009521479],[-7.765120983123666,40.31658935546881],[-7.797267913818303,40.36164474487305],[-7.797164916992131,40.40504455566412],[-7.826879024505615,40.40321731567383],[-7.845125198364258,40.41408157348633],[-7.842558860778809,40.433273315429744],[-7.810705184936523,40.43960952758789],[-7.796943187713566,40.45742034912104],[-7.827292919158879,40.481811523437614],[-7.828310966491642,40.49854278564459],[-7.822731018066349,40.508117675781364],[-7.783617973327637,40.5073699951173],[-7.758254051208496,40.52701950073248],[-7.713181972503605,40.543498992920036],[-7.667431831359863,40.553554534912166],[-7.635334014892521,40.56803131103527],[-7.605922222137394,40.5652694702149],[-7.589075088500977,40.58551788330084],[-7.561745166778564,40.635868072509766],[-7.54206991195673,40.65938186645508],[-7.562674045562744,40.694377899170036],[-7.592720031738281,40.715732574463004],[-7.596808910369873,40.728664398193416],[-7.570696830749512,40.747516632080135],[-7.584074974060002,40.76549911499035],[-7.625399112701416,40.78400421142578],[-7.591405868530217,40.82968902587902],[-7.587926864624023,40.84993743896496],[-7.558442115783691,40.873184204101676],[-7.514051914215088,40.86933135986334],[-7.479112148284912,40.831954956054744],[-7.451415061950627,40.81345748901367],[-7.435965061187687,40.82429122924816],[-7.401420116424561,40.87938690185547],[-7.376286029815674,40.887001037597656],[-7.374159812927246,40.912502288818416],[-7.336186885833683,40.93405151367199],[-7.325262069702148,40.97195434570318],[-7.370756149291992,40.99194335937506],[-7.334894180297852,41.02231597900396],[-7.342770099639893,41.05750274658203],[-7.322920799255371,41.11908340454107],[-7.304561138153019,41.13951873779297],[-7.28287220001215,41.13548660278326],[-7.249491214752197,41.14499282836914],[-7.190487861633301,41.126285552978516],[-7.161159038543587,41.127719879150504],[-7.147982120513916,41.156261444091854],[-7.114654064178467,41.15081787109381],[-7.122785091400146,41.13430404663086],[-7.087913990020695,41.131862640380916],[-7.101276874542179,41.10596847534191],[-7.101256847381535,41.07991027832037],[-7.051486015319824,41.05764770507824],[-7.026773929595947,41.03818511962902],[-7.010475158691349,41.04075622558594],[-6.931346893310547,41.02939987182617]]]]},"properties":{"ID_0":182,"ISO":"PT-09","NAME_0":"Portugal","ID_1":10,"NAME_1":"Guarda","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.686387062072697,39.5788955688476],[-8.671475410461426,39.56175994873047],[-8.714479446411133,39.520793914795036],[-8.746464729309025,39.52915954589844],[-8.731568336486816,39.4798202514649],[-8.755029678344727,39.476318359375],[-8.802313804626408,39.483001708984375],[-8.846485137939396,39.47253036499035],[-8.880922317504883,39.47443008422863],[-8.903431892394963,39.46600723266607],[-8.932408332824707,39.42324066162121],[-8.945701599121094,39.39106369018566],[-8.971403121948242,39.3932151794433],[-9.001552581787053,39.35476684570324],[-8.986572265624943,39.31769180297846],[-8.994505882263184,39.29669952392584],[-9.02650356292719,39.293243408203125],[-9.039573669433594,39.31033325195324],[-9.066384315490723,39.30984115600597],[-9.12307357788086,39.268657684326286],[-9.126358985900879,39.24529647827154],[-9.159539222717285,39.22154617309582],[-9.188036918640137,39.22061157226568],[-9.202392578124943,39.24768447875971],[-9.188818931579533,39.26909637451183],[-9.202818870544434,39.30296325683594],[-9.276455879211426,39.30803298950201],[-9.298749923705998,39.28375244140631],[-9.341251373290959,39.291900634765625],[-9.358194351196232,39.32013702392578],[-9.358880043029785,39.360374450683594],[-9.300415992736816,39.38513946533203],[-9.227916717529297,39.436248779296875],[-9.171832084655762,39.500938415527344],[-9.153612136840763,39.50950241088873],[-9.112360000610352,39.54486083984381],[-9.073195457458496,39.59263992309576],[-9.083749771118164,39.62152862548834],[-9.05013656616211,39.700416564941406],[-9.05069446563715,39.720138549804744],[-9.031805992126465,39.76625061035156],[-9.001790046691895,39.81821060180664],[-8.94958209991455,39.925140380859375],[-8.894027709960938,40.044345855713004],[-8.800462722778263,40.0125617980957],[-8.784306526184082,40.03632736206066],[-8.762535095214844,40.04116058349615],[-8.733350753784066,40.031856536865234],[-8.672210693359375,40.027206420898494],[-8.616233825683594,39.9915885925293],[-8.589536666870004,40.028099060058594],[-8.552368164062443,40.023960113525504],[-8.551694869995117,39.961578369140625],[-8.523219108581543,39.9666481018067],[-8.522838592529297,39.98361206054699],[-8.490616798400765,39.98611450195307],[-8.426013946533146,40.026557922363224],[-8.40221881866455,40.00093078613287],[-8.390396118164062,39.95122528076172],[-8.399789810180664,39.92618560791027],[-8.359291076660156,39.93560791015625],[-8.31871509552002,39.974678039550724],[-8.285329818725586,39.96547698974621],[-8.27210807800293,39.97538375854492],[-8.297977447509766,40.009353637695426],[-8.275806427001896,40.04540252685558],[-8.233405113220215,40.067062377929744],[-8.209749221801701,40.052078247070426],[-8.179098129272461,40.08973312377941],[-8.143742561340275,40.07278060913097],[-8.156821250915527,40.02735137939453],[-8.109966278076115,39.9715194702149],[-8.118680000305119,39.93408966064453],[-8.149169921874943,39.88534545898443],[-8.199804306030273,39.86488342285162],[-8.211854934692326,39.8503990173341],[-8.273726463317871,39.84314727783209],[-8.270357131958008,39.82465744018549],[-8.292945861816406,39.80867385864258],[-8.285090446472168,39.79576110839838],[-8.321977615356445,39.8006477355957],[-8.340516090393066,39.772663116455135],[-8.380250930786133,39.751903533935604],[-8.396452903747559,39.760719299316406],[-8.423230171203613,39.754146575927734],[-8.432132720947152,39.74004745483404],[-8.462540626525879,39.773113250732536],[-8.467378616333008,39.80713653564459],[-8.483137130737305,39.834503173828125],[-8.517034530639592,39.82657623291021],[-8.555877685546875,39.79169464111334],[-8.60266208648676,39.77871704101568],[-8.6348876953125,39.789890289306754],[-8.680382728576603,39.76777267456066],[-8.672877311706486,39.7310409545899],[-8.679059982299748,39.710086822509766],[-8.640046119689885,39.70115661621088],[-8.650469779968205,39.660091400146484],[-8.702213287353402,39.6359596252442],[-8.687484741210938,39.60991287231445],[-8.686387062072697,39.5788955688476]]]},"properties":{"ID_0":182,"ISO":"PT-10","NAME_0":"Portugal","ID_1":11,"NAME_1":"Leiria","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-9.14490032196045,38.70500564575207],[-9.214688301086426,38.691791534423885],[-9.257164001464844,38.699977874755916],[-9.286019325256348,38.696800231933594],[-9.31709194183344,38.677513122558594],[-9.355957031249886,38.68528747558605],[-9.392182350158691,38.702030181884766],[-9.420783042907601,38.69068908691406],[-9.46033668518055,38.69515991210943],[-9.486144065856934,38.70805358886719],[-9.471987724304142,38.75018310546875],[-9.500531196594181,38.78071212768566],[-9.475971221923828,38.81597137451172],[-9.444202423095703,38.87458419799816],[-9.415416717529297,38.943473815918026],[-9.424986839294434,39.019142150878906],[-9.416095733642578,39.04358291625988],[-9.42197036743164,39.07467651367193],[-9.359991073608342,39.17034149169916],[-9.339860916137638,39.225418090820426],[-9.336251258850098,39.265693664550895],[-9.341251373290959,39.291900634765625],[-9.298749923705998,39.28375244140631],[-9.276455879211426,39.30803298950201],[-9.202818870544434,39.30296325683594],[-9.188818931579533,39.26909637451183],[-9.202392578124943,39.24768447875971],[-9.188036918640137,39.22061157226568],[-9.159539222717285,39.22154617309582],[-9.126358985900879,39.24529647827154],[-9.12307357788086,39.268657684326286],[-9.066384315490723,39.30984115600597],[-9.039573669433594,39.31033325195324],[-9.02650356292719,39.293243408203125],[-8.994505882263184,39.29669952392584],[-8.975228309631348,39.287139892578125],[-8.983885765075627,39.25353622436529],[-8.962711334228516,39.255470275878906],[-8.911591529846191,39.234912872314396],[-8.88293743133545,39.25122070312494],[-8.860982894897461,39.22978591918945],[-8.835342407226506,39.225299835205135],[-8.822331428527832,39.18971252441412],[-8.855210304260254,39.17868041992199],[-8.888128280639592,39.185638427734375],[-8.904379844665527,39.16244125366211],[-8.873254776000863,39.13245391845703],[-8.807563781738224,39.10448455810558],[-8.781865119934025,39.0583877563476],[-8.80097770690918,39.05390167236334],[-8.814763069152775,39.03245544433594],[-8.842680931091309,39.02988052368164],[-8.865263938903752,38.978385925293026],[-8.855698585510254,38.964828491210994],[-8.88719367980957,38.947494506835994],[-8.890681266784668,38.927871704101676],[-8.911835670471135,38.90214920043951],[-8.911885261535645,38.88768005371088],[-8.969052314758244,38.82653808593756],[-8.989304542541504,38.85458374023443],[-8.994583129882756,38.88263702392584],[-8.988472938537598,38.91930389404308],[-9.00291633605957,38.93319320678711],[-9.019026756286621,38.890415191650504],[-9.037917137145996,38.867084503173885],[-9.066804885864258,38.85124969482416],[-9.087637901306096,38.81263732910162],[-9.093191146850586,38.758468627929744],[-9.10525894165039,38.72961044311535],[-9.14490032196045,38.70500564575207]]]},"properties":{"ID_0":182,"ISO":"PT-11","NAME_0":"Portugal","ID_1":12,"NAME_1":"Lisboa","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":"Lisbon|Lisbona|Lisbonne|Lissabon"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-16.5088214874267,32.53046035766624],[-16.489450454711857,32.48917388916021],[-16.493743896484375,32.48131179809599],[-16.536230087280273,32.55679702758795],[-16.539926528930607,32.5686683654788],[-16.5088214874267,32.53046035766624]]],[[[-17.16556739807129,32.868408203125284],[-17.149627685546875,32.84724807739258],[-17.114225387573185,32.827312469482536],[-17.099889755249023,32.8178825378418],[-17.05078125,32.80825424194347],[-16.98164558410639,32.826473236083984],[-16.90058135986328,32.8344612121582],[-16.861097335815373,32.806476593017635],[-16.857725143432617,32.797492980957145],[-16.81470108032221,32.76821899414068],[-16.81386375427246,32.76820755004894],[-16.811342239379826,32.767448425293196],[-16.724382400512695,32.74717712402344],[-16.689537048339844,32.75176239013672],[-16.68653488159174,32.7420654296875],[-16.725980758666935,32.74213409423834],[-16.746730804443303,32.73399353027338],[-16.77372169494629,32.690860748291016],[-16.793863296508732,32.6845588684082],[-16.822494506835938,32.64801788330078],[-16.866470336914062,32.64182281494152],[-16.89299964904785,32.64648056030279],[-16.919082641601562,32.641319274902344],[-16.9449462890625,32.63277816772472],[-16.98683738708496,32.65120697021496],[-17.01705741882313,32.65239334106451],[-17.087093353271428,32.679367065429744],[-17.103633880615234,32.6784553527832],[-17.138761520385742,32.70319366455084],[-17.212926864623967,32.7370338439942],[-17.24472808837885,32.77307510375999],[-17.244400024414062,32.783584594726506],[-17.245393753051758,32.78552627563482],[-17.246793746948185,32.78871917724621],[-17.265731811523324,32.81503677368187],[-17.196598052978516,32.86999511718744],[-17.16556739807129,32.868408203125284]]],[[[-16.302179336547795,33.0972785949707],[-16.29787635803217,33.08782958984375],[-16.293455123901367,33.075653076171875],[-16.29500007629389,33.06139755249018],[-16.32563972473139,33.061824798583984],[-16.37678909301752,33.02533340454113],[-16.395082473754883,33.04026794433605],[-16.37983322143549,33.05667495727539],[-16.377349853515568,33.05921936035156],[-16.37591934204096,33.06755447387695],[-16.368972778320256,33.082672119140796],[-16.321592330932617,33.10638809204113],[-16.302179336547795,33.0972785949707]]]]},"properties":{"ID_0":182,"ISO":"PT-30","NAME_0":"Portugal","ID_1":13,"NAME_1":"Madeira","TYPE_1":"Regiões autônoma","ENGTYPE_1":"Autonomous region","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.20378303527832,38.75151062011719],[-7.227612018585205,38.766826629638786],[-7.232410907745304,38.78516387939459],[-7.211150169372559,38.80785751342768],[-7.245706081390381,38.84785842895519],[-7.279085159301701,38.827938079833984],[-7.294716835021973,38.84055709838873],[-7.325654029846191,38.82519149780285],[-7.319062232971191,38.80948257446295],[-7.346802234649658,38.7981224060058],[-7.395896911621094,38.81185913085943],[-7.419244766235352,38.848217010498104],[-7.42778301239008,38.88802337646496],[-7.422935962676945,38.90348434448248],[-7.466124057769775,38.926036834716854],[-7.452898979187012,38.96441650390625],[-7.491979122161865,38.98911666870117],[-7.512630939483643,38.98595428466797],[-7.5333571434021,39.00843811035156],[-7.553131103515511,38.992465972900504],[-7.542685031890812,38.96776199340826],[-7.564651966094914,38.95245361328131],[-7.604299068450928,38.953781127929744],[-7.625444889068547,38.92752075195324],[-7.654160022735596,38.916366577148494],[-7.683447837829533,38.92937088012695],[-7.698064804077148,38.91244506835949],[-7.732884883880615,38.93920135498047],[-7.752035140991211,38.90824127197277],[-7.772280216217041,38.90113830566412],[-7.823974132537842,38.89935302734375],[-7.875960826873779,38.908359527588004],[-7.925670146942139,38.97331619262701],[-7.957874774932804,38.96520614624018],[-7.96800708770752,38.95161056518566],[-8.009519577026367,38.945182800293026],[-8.020383834838754,38.964012145996094],[-8.013733863830566,38.9813804626466],[-8.04761600494379,39.00828933715832],[-8.078496932983398,39.013763427734375],[-8.10317134857172,38.969158172607536],[-8.120295524597168,39.00399017333996],[-8.103813171386719,39.022735595703125],[-8.152009010314941,39.02693176269531],[-8.192082405090275,39.00790023803722],[-8.210150718688965,38.98447418212896],[-8.227920532226506,38.98738861083996],[-8.260341644287053,39.01229858398443],[-8.26795864105219,39.05257034301752],[-8.290693283081055,39.05874633789074],[-8.290839195251408,39.0804328918457],[-8.34342956542963,39.10029220581055],[-8.302311897277832,39.15017318725597],[-8.298885345458928,39.162849426269645],[-8.233919143676758,39.18157196044933],[-8.183637619018498,39.218582153320426],[-8.151388168334904,39.24956512451172],[-8.15319633483881,39.2727508544923],[-8.134472846984863,39.2873992919923],[-8.08763313293457,39.27536010742193],[-8.02793121337885,39.33960342407238],[-8.029585838317871,39.36072158813482],[-7.96868896484375,39.38230895996094],[-7.939463138580322,39.409950256347656],[-7.946763038635254,39.424201965332145],[-7.995440006256104,39.44825744628906],[-8.008898735046387,39.473205566406364],[-8.000138282775822,39.50495910644531],[-7.985651016235295,39.512531280517635],[-7.959406852722168,39.56127929687506],[-7.910102844238281,39.5481414794923],[-7.856470108032227,39.51391220092785],[-7.83912181854248,39.514682769775504],[-7.825108051299992,39.53736114501953],[-7.79987192153925,39.543960571289176],[-7.76994800567627,39.564155578613395],[-7.754927158355713,39.58832168579113],[-7.720778942108154,39.59509658813482],[-7.714807033538762,39.62668609619146],[-7.673112869262695,39.64890670776373],[-7.648519039153996,39.62478256225586],[-7.607287883758431,39.63713836669922],[-7.579123973846379,39.65881347656244],[-7.541685104370117,39.663677215576115],[-7.510063171386719,39.618785858154354],[-7.499413013458252,39.58960342407232],[-7.466908931732178,39.5769500732423],[-7.426660060882568,39.53268432617199],[-7.388792991638184,39.524639129638615],[-7.382153987884465,39.491973876953125],[-7.325119972228947,39.47538757324219],[-7.29426813125599,39.45682144165045],[-7.301445007324162,39.42252731323248],[-7.322863101959172,39.381950378418026],[-7.310546875,39.3690299987793],[-7.310348987579346,39.34095764160162],[-7.231481075286808,39.278255462646484],[-7.248027801513615,39.25337219238281],[-7.241468906402588,39.208251953125114],[-7.221617221832275,39.1932945251466],[-7.16686916351307,39.181221008300724],[-7.132203102111703,39.16469955444347],[-7.140377998351994,39.150436401367244],[-7.144035816192627,39.108627319335994],[-7.105344772338867,39.099197387695256],[-7.053547859191895,39.11772537231451],[-7.028202056884709,39.11565017700207],[-6.980916023254338,39.08781814575207],[-6.959428787231445,39.05446624755865],[-6.967819213867188,39.03948593139654],[-6.959072113037053,39.01730346679693],[-6.986616134643555,38.97633743286133],[-7.013495922088566,38.948753356933594],[-7.02626991271967,38.924510955810604],[-7.052194118499699,38.906951904296875],[-7.033034801483154,38.87882232666021],[-7.03925704956049,38.864677429199276],[-7.068058013915959,38.8544654846192],[-7.09638595581049,38.81596374511713],[-7.125417232513371,38.81532669067383],[-7.161724090576115,38.781364440918026],[-7.188351154327336,38.77018737792963],[-7.20378303527832,38.75151062011719]]]},"properties":{"ID_0":182,"ISO":"PT-12","NAME_0":"Portugal","ID_1":14,"NAME_1":"Portalegre","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.690328598022404,41.16912078857422],[-8.71680545806879,41.203472137451286],[-8.722916603088322,41.25708389282221],[-8.739859580993539,41.30986022949219],[-8.739307403564396,41.332359313964844],[-8.75516414642334,41.34253692626959],[-8.762640953063908,41.37495040893549],[-8.786250114440918,41.41319274902338],[-8.775138854980412,41.47123718261719],[-8.746247291564941,41.46859359741222],[-8.700663566589242,41.44219207763666],[-8.683174133300781,41.44916915893555],[-8.6573867797851,41.436302185058594],[-8.650121688842773,41.419689178466854],[-8.605216026306152,41.41266632080078],[-8.592291831970158,41.39498901367193],[-8.622834205627441,41.38398361206055],[-8.602392196655217,41.34556961059582],[-8.537215232849121,41.34300231933588],[-8.501439094543457,41.36833953857433],[-8.455116271972543,41.375629425048885],[-8.441747665405273,41.36257553100586],[-8.415792465209961,41.3710670471192],[-8.394207000732422,41.361892700195256],[-8.328076362609806,41.36577224731457],[-8.303301811218262,41.342960357666016],[-8.278363227844238,41.345829010009766],[-8.274265289306584,41.36487579345709],[-8.222992897033635,41.40994262695324],[-8.185504913330021,41.40996551513672],[-8.165824890136719,41.40029907226568],[-8.146122932434025,41.36417770385748],[-8.119658470153752,41.34316253662121],[-8.086494445800724,41.32934951782238],[-8.065356254577637,41.34327697753912],[-8.035721778869629,41.318798065185604],[-7.989554882049561,41.3466033935548],[-7.974152088165283,41.37519454956055],[-7.947919845581055,41.35350036621088],[-7.96532678604126,41.332164764404354],[-7.913753986358643,41.30551910400396],[-7.915085792541504,41.27428436279308],[-7.895611763000431,41.248703002929744],[-7.875686168670654,41.242156982421875],[-7.894075870513916,41.20923614501959],[-7.887942790985051,41.18909072875982],[-7.913590908050537,41.13495635986328],[-7.911851882934513,41.11988830566406],[-7.951173782348633,41.12276077270519],[-8.052750587463322,41.089675903320426],[-8.094379425048828,41.10077285766607],[-8.146876335144043,41.08415985107433],[-8.208628654479924,41.09303665161144],[-8.218807220458984,41.081573486328125],[-8.263980865478459,41.065856933593864],[-8.287214279174748,41.07893753051752],[-8.352152824401855,41.04010391235357],[-8.394387245178166,41.05075454711914],[-8.396756172180119,41.01244735717779],[-8.426598548889103,41.020713806152344],[-8.44873046875,41.05346298217779],[-8.475690841674805,41.03404617309576],[-8.488737106323242,41.01289749145519],[-8.51527214050293,41.01573562622076],[-8.54177188873291,41.03737258911133],[-8.557171821594181,41.01555633544922],[-8.594013214111328,41.01424026489269],[-8.606048583984318,41.02569580078131],[-8.644963264465332,41.015972137451286],[-8.656235694885197,41.05181884765625],[-8.657532691955566,41.09070968627941],[-8.668473243713322,41.14014053344738],[-8.690328598022404,41.16912078857422]]]},"properties":{"ID_0":182,"ISO":"PT-13","NAME_0":"Portugal","ID_1":15,"NAME_1":"Porto","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":"Oporto"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.686387062072697,39.5788955688476],[-8.687484741210938,39.60991287231445],[-8.702213287353402,39.6359596252442],[-8.650469779968205,39.660091400146484],[-8.640046119689885,39.70115661621088],[-8.679059982299748,39.710086822509766],[-8.672877311706486,39.7310409545899],[-8.680382728576603,39.76777267456066],[-8.6348876953125,39.789890289306754],[-8.60266208648676,39.77871704101568],[-8.555877685546875,39.79169464111334],[-8.517034530639592,39.82657623291021],[-8.483137130737305,39.834503173828125],[-8.467378616333008,39.80713653564459],[-8.462540626525879,39.773113250732536],[-8.432132720947152,39.74004745483404],[-8.423230171203613,39.754146575927734],[-8.396452903747559,39.760719299316406],[-8.380250930786133,39.751903533935604],[-8.340516090393066,39.772663116455135],[-8.321977615356445,39.8006477355957],[-8.285090446472168,39.79576110839838],[-8.263676643371582,39.76867675781244],[-8.232072830200138,39.76279830932623],[-8.236935615539494,39.73000717163097],[-8.229837417602539,39.68805313110363],[-8.23394870758051,39.65125274658203],[-8.218593597412053,39.636589050293026],[-8.153472900390625,39.62413024902344],[-8.134341239929142,39.611263275146484],[-8.053985595703068,39.61698150634771],[-8.077296257019043,39.65876388549805],[-8.060848236083928,39.668350219726506],[-8.06213665008545,39.6934928894043],[-8.05048465728754,39.717811584472656],[-8.054351806640568,39.73556137084972],[-8.033921241760254,39.7465057373048],[-8.00469589233387,39.74333572387701],[-7.990914821624756,39.728584289550895],[-7.957581996917725,39.736911773681754],[-7.949749946594238,39.67945861816406],[-7.914264202117863,39.667819976806754],[-7.848848819732666,39.62367630004883],[-7.835793018341008,39.59442138671881],[-7.811983108520451,39.56780242919933],[-7.825108051299992,39.53736114501953],[-7.83912181854248,39.514682769775504],[-7.856470108032227,39.51391220092785],[-7.910102844238281,39.5481414794923],[-7.959406852722168,39.56127929687506],[-7.985651016235295,39.512531280517635],[-8.000138282775822,39.50495910644531],[-8.008898735046387,39.473205566406364],[-7.995440006256104,39.44825744628906],[-7.946763038635254,39.424201965332145],[-7.939463138580322,39.409950256347656],[-7.96868896484375,39.38230895996094],[-8.029585838317871,39.36072158813482],[-8.02793121337885,39.33960342407238],[-8.08763313293457,39.27536010742193],[-8.134472846984863,39.2873992919923],[-8.15319633483881,39.2727508544923],[-8.151388168334904,39.24956512451172],[-8.183637619018498,39.218582153320426],[-8.233919143676758,39.18157196044933],[-8.298885345458928,39.162849426269645],[-8.302311897277832,39.15017318725597],[-8.34342956542963,39.10029220581055],[-8.290839195251408,39.0804328918457],[-8.290693283081055,39.05874633789074],[-8.26795864105219,39.05257034301752],[-8.260341644287053,39.01229858398443],[-8.227920532226506,38.98738861083996],[-8.24293327331543,38.93814849853521],[-8.269928932189885,38.90717315673828],[-8.159498214721623,38.86513900756836],[-8.184583663940373,38.84926605224615],[-8.154566764831486,38.80924224853527],[-8.124317169189453,38.80496978759771],[-8.142043113708496,38.772586822509766],[-8.175615310668888,38.78266906738287],[-8.17359733581543,38.80097198486334],[-8.197278976440373,38.8079566955567],[-8.221803665161133,38.82861328125],[-8.249606132507324,38.817794799804744],[-8.26966762542719,38.84226226806652],[-8.301423072814941,38.86032485961914],[-8.321274757385254,38.85925674438482],[-8.338020324707031,38.84022903442394],[-8.380048751831055,38.853458404541016],[-8.409059524536133,38.82299041748058],[-8.419169425964355,38.8376579284668],[-8.471081733703613,38.79390335083019],[-8.500376701354924,38.807479858398494],[-8.54680347442627,38.7634391784668],[-8.60722541809082,38.77736663818365],[-8.606717109680176,38.80830001831055],[-8.596316337585392,38.84072494506836],[-8.629283905029297,38.83069229125988],[-8.647542953491211,38.80950164794922],[-8.685354232788029,38.82628631591797],[-8.70935916900629,38.825885772705135],[-8.743861198425236,38.77747344970703],[-8.753534317016545,38.742855072021484],[-8.79155158996582,38.734153747558594],[-8.833544731140137,38.76111221313488],[-8.868265151977482,38.74805068969732],[-8.908346176147404,38.74180603027344],[-8.925971984863281,38.759906768798885],[-8.942361831664982,38.77541732788097],[-8.931804656982422,38.797084808349666],[-8.94513988494873,38.81652832031244],[-8.969052314758244,38.82653808593756],[-8.911885261535645,38.88768005371088],[-8.911835670471135,38.90214920043951],[-8.890681266784668,38.927871704101676],[-8.88719367980957,38.947494506835994],[-8.855698585510254,38.964828491210994],[-8.865263938903752,38.978385925293026],[-8.842680931091309,39.02988052368164],[-8.814763069152775,39.03245544433594],[-8.80097770690918,39.05390167236334],[-8.781865119934025,39.0583877563476],[-8.807563781738224,39.10448455810558],[-8.873254776000863,39.13245391845703],[-8.904379844665527,39.16244125366211],[-8.888128280639592,39.185638427734375],[-8.855210304260254,39.17868041992199],[-8.822331428527832,39.18971252441412],[-8.835342407226506,39.225299835205135],[-8.860982894897461,39.22978591918945],[-8.88293743133545,39.25122070312494],[-8.911591529846191,39.234912872314396],[-8.962711334228516,39.255470275878906],[-8.983885765075627,39.25353622436529],[-8.975228309631348,39.287139892578125],[-8.994505882263184,39.29669952392584],[-8.986572265624943,39.31769180297846],[-9.001552581787053,39.35476684570324],[-8.971403121948242,39.3932151794433],[-8.945701599121094,39.39106369018566],[-8.932408332824707,39.42324066162121],[-8.903431892394963,39.46600723266607],[-8.880922317504883,39.47443008422863],[-8.846485137939396,39.47253036499035],[-8.802313804626408,39.483001708984375],[-8.755029678344727,39.476318359375],[-8.731568336486816,39.4798202514649],[-8.746464729309025,39.52915954589844],[-8.714479446411133,39.520793914795036],[-8.671475410461426,39.56175994873047],[-8.686387062072697,39.5788955688476]]]},"properties":{"ID_0":182,"ISO":"PT-14","NAME_0":"Portugal","ID_1":16,"NAME_1":"Santarém","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.783749580383244,38.42680740356445],[-8.774582862854004,38.41458511352539],[-8.739307403564396,38.418750762939396],[-8.672362327575684,38.418750762939396],[-8.699304580688363,38.441806793213004],[-8.721248626708984,38.44097137451166],[-8.728194236755314,38.51458358764654],[-8.737915992736816,38.547916412353516],[-8.776248931884766,38.53208160400396],[-8.78291797637928,38.507362365722656],[-8.757916450500431,38.50485992431652],[-8.755417823791447,38.48680496215832],[-8.801804542541504,38.480693817138786],[-8.883673667907601,38.52130126953125],[-8.922640800476074,38.50906372070307],[-8.93392276763916,38.48833465576172],[-8.981277465820312,38.478981018066406],[-8.99060344696045,38.46510314941412],[-9.064233779907227,38.43493270874035],[-9.108365058898926,38.44287490844732],[-9.134451866149902,38.42964553833008],[-9.16878890991211,38.429695129394645],[-9.200286865234318,38.409313201904354],[-9.220120429992676,38.41262435913097],[-9.193955421447754,38.46208572387695],[-9.180694580078125,38.507083892822266],[-9.189106941223145,38.555824279785156],[-9.219330787658691,38.61733627319336],[-9.259048461914006,38.66308593750006],[-9.240570068359375,38.674831390380916],[-9.180068969726506,38.6790771484375],[-9.151052474975529,38.672031402588004],[-9.121805191040039,38.64875030517578],[-9.08458423614502,38.64513778686535],[-9.087937355041504,38.66222000122076],[-9.054386138915959,38.67757034301769],[-9.012639045715275,38.66986083984369],[-9.012360572814885,38.70264053344732],[-9.035972595214787,38.69930648803722],[-9.044860839843693,38.71569442749035],[-9.006250381469727,38.73764038085943],[-8.946528434753418,38.761806488037166],[-8.925971984863281,38.759906768798885],[-8.908346176147404,38.74180603027344],[-8.868265151977482,38.74805068969732],[-8.833544731140137,38.76111221313488],[-8.79155158996582,38.734153747558594],[-8.753534317016545,38.742855072021484],[-8.743861198425236,38.77747344970703],[-8.70935916900629,38.825885772705135],[-8.685354232788029,38.82628631591797],[-8.647542953491211,38.80950164794922],[-8.629283905029297,38.83069229125988],[-8.596316337585392,38.84072494506836],[-8.606717109680176,38.80830001831055],[-8.60722541809082,38.77736663818365],[-8.54680347442627,38.7634391784668],[-8.490978240966797,38.76131057739252],[-8.531220436096135,38.69186401367193],[-8.569088935851994,38.67718887329113],[-8.59066200256342,38.654052734375],[-8.612386703491211,38.644748687744254],[-8.656537055969181,38.60781478881836],[-8.639120101928654,38.54949188232433],[-8.615829467773438,38.553108215332145],[-8.572546005248967,38.53162384033203],[-8.53238391876215,38.52815246582031],[-8.497563362121525,38.548820495605526],[-8.47592830657959,38.516769409179744],[-8.446455001830998,38.52605819702154],[-8.423136711120549,38.520984649658146],[-8.399714469909668,38.53751754760748],[-8.369127273559513,38.545745849609375],[-8.358156204223576,38.52442169189459],[-8.335991859435978,38.506958007812614],[-8.310319900512695,38.458507537841854],[-8.325492858886662,38.443340301513786],[-8.289321899414062,38.43550109863281],[-8.283736228942871,38.4120979309082],[-8.322565078735352,38.37220382690441],[-8.277294158935547,38.371547698974666],[-8.269202232360783,38.353591918945426],[-8.197738647460938,38.34259033203125],[-8.164377212524357,38.31984710693371],[-8.14312744140625,38.29785919189459],[-8.129705429077148,38.26630401611328],[-8.129805564880371,38.22395706176769],[-8.16539192199707,38.21763992309576],[-8.203120231628361,38.20069122314453],[-8.229804039001408,38.19697952270508],[-8.239702224731388,38.1794815063476],[-8.284335136413574,38.1865806579591],[-8.2912015914917,38.13909912109375],[-8.336983680725098,38.142745971679744],[-8.368000030517578,38.10273361206055],[-8.386290550231934,38.11611175537121],[-8.40774917602539,38.06639862060547],[-8.353198051452637,38.027400970458984],[-8.314468383789062,38.01638793945324],[-8.295440673828068,37.993217468261776],[-8.295905113220158,37.950931549072266],[-8.309226036071777,37.91168594360357],[-8.299488067626953,37.89910888671875],[-8.33613109588623,37.864574432373104],[-8.367832183837834,37.86105346679693],[-8.42434120178217,37.867004394531364],[-8.462068557739258,37.86560821533209],[-8.479292869567814,37.85500335693371],[-8.532410621643066,37.85502243041998],[-8.551310539245549,37.84729385375988],[-8.583757400512695,37.79937744140625],[-8.58765983581543,37.756965637207145],[-8.633026123046875,37.75308990478521],[-8.660515785217285,37.768291473388786],[-8.68343734741211,37.75327301025396],[-8.726470947265625,37.80862808227539],[-8.782633781433105,37.80715179443371],[-8.792975425720158,37.81956863403326],[-8.800336837768555,37.90814208984381],[-8.812500953674316,37.92989730834955],[-8.854696273803711,37.9404411315918],[-8.883214950561523,37.96479415893566],[-8.860695838928223,37.98097229003906],[-8.832361221313477,38.0323600769043],[-8.794306755065861,38.12597274780268],[-8.77791690826416,38.19430541992199],[-8.77680492401123,38.28180694580084],[-8.800416946411133,38.397640228271484],[-8.783749580383244,38.42680740356445]]]},"properties":{"ID_0":182,"ISO":"PT-15","NAME_0":"Portugal","ID_1":17,"NAME_1":"Setúbal","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.164990425109863,41.818115234375114],[-8.196633338928223,41.812210083007756],[-8.23166561126709,41.787422180175724],[-8.270934104919377,41.77143859863281],[-8.291508674621582,41.78194808959972],[-8.306785583496037,41.76118087768566],[-8.414167404174805,41.758998870849666],[-8.485695838928223,41.72718048095703],[-8.51372241973877,41.721305847168026],[-8.521745681762695,41.67958068847662],[-8.547341346740666,41.663280487060604],[-8.540728569030705,41.63131332397461],[-8.564983367919922,41.62530899047857],[-8.577292442321777,41.64296340942383],[-8.604116439819279,41.634319305420036],[-8.643220901489201,41.6543807983399],[-8.664014816284123,41.64232254028332],[-8.724178314208984,41.63382720947277],[-8.756795883178654,41.6143913269043],[-8.80986213684082,41.612136840820256],[-8.827313423156738,41.649658203125114],[-8.82932281494135,41.67675018310558],[-8.860695838928223,41.70402908325195],[-8.880695343017578,41.75319290161133],[-8.864583969116211,41.810695648193416],[-8.87597274780262,41.837081909179744],[-8.873032569885197,41.870193481445256],[-8.851016998291016,41.87707138061529],[-8.81836032867426,41.911296844482365],[-8.785865783691406,41.917320251464844],[-8.747705459594727,41.943149566650334],[-8.74594497680664,41.964553833007926],[-8.661334991455078,42.00332641601557],[-8.659135818481388,42.026008605957145],[-8.636755943298283,42.0474967956543],[-8.595331192016545,42.056880950927734],[-8.5468111038208,42.05399703979492],[-8.518028259277287,42.07956314086914],[-8.451155662536564,42.08269500732422],[-8.429669380187931,42.07236480712902],[-8.38161659240717,42.076351165771484],[-8.356572151184082,42.090274810791016],[-8.331864356994629,42.083839416503906],[-8.253607749938965,42.136688232421875],[-8.225690841674748,42.13287353515625],[-8.195360183715763,42.1482048034668],[-8.18612289428711,42.072589874267635],[-8.118673324584904,42.08230972290045],[-8.096572875976562,42.07226181030285],[-8.084427833557072,42.04733657836914],[-8.086008071899414,42.016494750976506],[-8.130324363708496,42.003574371338004],[-8.162994384765568,41.98269653320324],[-8.174838066101074,41.95514297485363],[-8.198044776916504,41.93928146362316],[-8.216875076293945,41.91315841674816],[-8.19337368011469,41.87644577026367],[-8.161748886108398,41.86097717285162],[-8.164990425109863,41.818115234375114]]]},"properties":{"ID_0":182,"ISO":"PT-16","NAME_0":"Portugal","ID_1":18,"NAME_1":"Viana do Castelo","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":"Vianna do Castello"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.200468063354492,41.87949752807617],[-7.208745002746582,41.80921554565441],[-7.194233894348145,41.78352355957037],[-7.171195030212402,41.7698974609375],[-7.175905227661019,41.73730087280285],[-7.20887279510498,41.71176910400396],[-7.213789939880257,41.68115615844732],[-7.24289083480835,41.6421470642091],[-7.258426189422551,41.590316772460994],[-7.258381843566895,41.5631942749024],[-7.229093074798527,41.52279281616211],[-7.283936023712158,41.51562118530279],[-7.297340869903508,41.4991569519043],[-7.30764102935791,41.4612770080567],[-7.329376220703068,41.45958328247082],[-7.365305900573674,41.4404182434082],[-7.366302013397217,41.39691162109381],[-7.348082065582275,41.35162734985363],[-7.391393184661808,41.28581619262701],[-7.389745235443115,41.242534637451286],[-7.415037155151367,41.24769210815441],[-7.431878089904785,41.21079635620117],[-7.508186817169189,41.197185516357365],[-7.522295951843205,41.18003082275396],[-7.543065071105957,41.1883277893067],[-7.574638843536377,41.16069412231451],[-7.64119911193842,41.15890121459961],[-7.664660930633545,41.16270065307617],[-7.696246147155705,41.1418724060058],[-7.776732921600285,41.15210342407232],[-7.812932014465275,41.14599609375],[-7.86051702499384,41.15844726562506],[-7.911851882934513,41.11988830566406],[-7.913590908050537,41.13495635986328],[-7.887942790985051,41.18909072875982],[-7.894075870513916,41.20923614501959],[-7.875686168670654,41.242156982421875],[-7.895611763000431,41.248703002929744],[-7.915085792541504,41.27428436279308],[-7.913753986358643,41.30551910400396],[-7.96532678604126,41.332164764404354],[-7.947919845581055,41.35350036621088],[-7.974152088165283,41.37519454956055],[-7.966660022735596,41.412067413330135],[-7.94167518615717,41.42998123168951],[-7.938171863555908,41.47735595703131],[-7.902626037597599,41.489265441894645],[-7.888566017150879,41.50896453857422],[-7.861333847045898,41.51178359985357],[-7.832542896270695,41.55690383911144],[-7.810657024383545,41.57334518432617],[-7.829501152038574,41.60222244262701],[-7.857317924499455,41.60141754150402],[-7.879362106323242,41.58823394775402],[-7.96646785736084,41.60392379760748],[-7.996585845947209,41.603084564208984],[-7.998918056488037,41.653347015380916],[-7.981635093688965,41.67771911621105],[-7.997269153594857,41.687831878662166],[-8.04798412322998,41.69279098510748],[-8.118513107299748,41.69226837158203],[-8.094255447387695,41.70740890502924],[-8.076475143432617,41.7498016357423],[-8.06120586395258,41.76358032226557],[-8.05121994018549,41.81947326660156],[-8.012578964233398,41.83353424072277],[-7.988607883453312,41.86758041381847],[-7.948818206787109,41.871009826660156],[-7.921279907226562,41.88181686401373],[-7.906318187713623,41.927097320556754],[-7.887935161590519,41.92678451538086],[-7.888208866119328,41.86607742309582],[-7.866292953491211,41.8588752746582],[-7.845162868499699,41.88127899169922],[-7.778337001800537,41.886875152588004],[-7.763480186462346,41.899005889892635],[-7.733328819274846,41.892276763916016],[-7.704116821289062,41.9073371887207],[-7.65384578704834,41.88119888305664],[-7.583326816558724,41.87871170043945],[-7.611523151397705,41.84670257568371],[-7.573887825012207,41.829715728759766],[-7.520719051361027,41.84216690063482],[-7.485247135162354,41.86128616333019],[-7.452474117279053,41.865077972412166],[-7.430562019348145,41.821376800537166],[-7.408809185028019,41.81671905517584],[-7.389939785003662,41.842300415039176],[-7.31528997421259,41.842540740966854],[-7.257791042327824,41.86592102050787],[-7.200468063354492,41.87949752807617]]]},"properties":{"ID_0":182,"ISO":"PT-17","NAME_0":"Portugal","ID_1":19,"NAME_1":"Vila Real","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":"Villa Real"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.304561138153019,41.13951873779297],[-7.322920799255371,41.11908340454107],[-7.342770099639893,41.05750274658203],[-7.334894180297852,41.02231597900396],[-7.370756149291992,40.99194335937506],[-7.325262069702148,40.97195434570318],[-7.336186885833683,40.93405151367199],[-7.374159812927246,40.912502288818416],[-7.376286029815674,40.887001037597656],[-7.401420116424561,40.87938690185547],[-7.435965061187687,40.82429122924816],[-7.451415061950627,40.81345748901367],[-7.479112148284912,40.831954956054744],[-7.514051914215088,40.86933135986334],[-7.558442115783691,40.873184204101676],[-7.587926864624023,40.84993743896496],[-7.591405868530217,40.82968902587902],[-7.625399112701416,40.78400421142578],[-7.584074974060002,40.76549911499035],[-7.570696830749512,40.747516632080135],[-7.596808910369873,40.728664398193416],[-7.592720031738281,40.715732574463004],[-7.562674045562744,40.694377899170036],[-7.54206991195673,40.65938186645508],[-7.561745166778564,40.635868072509766],[-7.589075088500977,40.58551788330084],[-7.605922222137394,40.5652694702149],[-7.635334014892521,40.56803131103527],[-7.667431831359863,40.553554534912166],[-7.713181972503605,40.543498992920036],[-7.758254051208496,40.52701950073248],[-7.783617973327637,40.5073699951173],[-7.822731018066349,40.508117675781364],[-7.828310966491642,40.49854278564459],[-7.846825122833252,40.495552062988395],[-7.884239196777287,40.47314834594738],[-7.930622100830078,40.429122924804744],[-7.953798770904484,40.42395401000971],[-7.974253177642822,40.404979705810604],[-8.003739356994572,40.39157104492199],[-8.038994789123535,40.386699676513786],[-8.087972640991154,40.36112594604498],[-8.11300945281971,40.34141540527355],[-8.151982307434082,40.337497711181754],[-8.172102928161564,40.344116210937614],[-8.20863246917719,40.34140396118164],[-8.250845909118652,40.323223114013786],[-8.310014724731332,40.361469268798885],[-8.356213569641056,40.36722946166998],[-8.354867935180664,40.408855438232536],[-8.318705558776799,40.45672988891613],[-8.334627151489258,40.475341796875114],[-8.324973106384277,40.491794586181754],[-8.282843589782658,40.50917053222656],[-8.25008773803711,40.51121520996088],[-8.285277366638184,40.539649963378906],[-8.289183616638184,40.568786621093864],[-8.308414459228459,40.59640884399414],[-8.245376586914006,40.61640548706049],[-8.294792175292912,40.64567947387701],[-8.288825035095215,40.66902542114269],[-8.297637939453068,40.69433975219732],[-8.326325416564941,40.71119308471674],[-8.333592414855957,40.737007141113395],[-8.27441501617426,40.76198577880871],[-8.23675537109375,40.827491760253906],[-8.255086898803711,40.855854034423885],[-8.2315092086792,40.86469268798828],[-8.190504074096623,40.84612274169933],[-8.165928840637207,40.865879058837834],[-8.124870300292969,40.849449157714844],[-8.103034973144531,40.86687088012695],[-8.127950668334904,40.89814758300787],[-8.120406150817871,40.91793441772472],[-8.132025718688965,40.942001342773494],[-8.08916187286377,40.98755264282238],[-8.091073036193848,41.008968353271484],[-8.14290809631342,40.978557586670036],[-8.178068161010742,40.98820114135742],[-8.20802116394043,41.01352691650396],[-8.237236976623535,41.017833709716854],[-8.237069129943848,41.05765151977545],[-8.263980865478459,41.065856933593864],[-8.218807220458984,41.081573486328125],[-8.208628654479924,41.09303665161144],[-8.146876335144043,41.08415985107433],[-8.094379425048828,41.10077285766607],[-8.052750587463322,41.089675903320426],[-7.951173782348633,41.12276077270519],[-7.911851882934513,41.11988830566406],[-7.86051702499384,41.15844726562506],[-7.812932014465275,41.14599609375],[-7.776732921600285,41.15210342407232],[-7.696246147155705,41.1418724060058],[-7.664660930633545,41.16270065307617],[-7.64119911193842,41.15890121459961],[-7.574638843536377,41.16069412231451],[-7.543065071105957,41.1883277893067],[-7.522295951843205,41.18003082275396],[-7.508186817169189,41.197185516357365],[-7.431878089904785,41.21079635620117],[-7.388576984405518,41.19287490844732],[-7.356201171875,41.147487640380916],[-7.304561138153019,41.13951873779297]],[[-7.409511089324951,40.921813964843864],[-7.430102825164795,40.90343856811535],[-7.425463199615422,40.88666534423834],[-7.38810205459589,40.885105133056754],[-7.378842830657959,40.90115356445318],[-7.409511089324951,40.921813964843864]]]},"properties":{"ID_0":182,"ISO":"PT-18","NAME_0":"Portugal","ID_1":20,"NAME_1":"Viseu","TYPE_1":"Distrito","ENGTYPE_1":"District","NL_NAME_1":null,"VARNAME_1":"Vizeu"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson
new file mode 100644
index 0000000..0565169
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson
@@ -0,0 +1,85 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[39.64794921874994,45.16419601440435],[40.059654235840064,45.06309127807623],[40.30049514770536,45.0952415466308],[40.5009880065919,44.97680664062506],[40.59633255004911,44.702407836914176],[40.45653915405302,44.75387573242199],[40.35651016235357,44.58812713623058],[40.48381423950224,44.402400970459034],[40.417724609375284,44.15627288818365],[40.48201751708996,44.003288269043026],[40.3540420532226,43.80878829956055],[40.24375152587918,43.80278396606457],[39.95980072021479,43.93823242187506],[39.73140335083024,43.936611175537166],[39.64757919311546,43.98913192749035],[39.774703979492415,44.12716674804682],[40.01827621459978,44.09848403930664],[40.104572296142805,44.25904083251959],[39.86066436767578,44.37207412719732],[39.840774536132756,44.58407592773443],[39.99878311157237,44.90314483642584],[39.76084518432623,45.0003662109375],[39.61465072631847,44.98313522338867],[39.58114624023466,44.85968399047846],[39.419628143310604,44.823089599609425],[38.9640808105471,44.860202789306754],[38.57011795043968,45.03254318237305],[38.81095886230497,45.06049728393566],[39.01510620117204,44.989265441894645],[39.28381729125982,45.02684402465825],[39.64794921874994,45.16419601440435]]]},"properties":{"ID_0":188,"ISO":"RU-AD","NAME_0":"Russia","ID_1":1,"NAME_1":"Adygey","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Адыгея","VARNAME_1":"Adygea|Adygeya|Adygheya|Republic of Adygeya|Adygeyskaya A.Obl.|Respublika Adygeya"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[87.11547851562504,52.59727096557617],[87.002052307129,52.64591598510742],[86.64455413818365,52.51440811157238],[86.67334747314476,52.11758804321288],[86.43383026123075,52.12608718872082],[86.28927612304699,52.02621078491211],[86.12054443359375,52.06703186035167],[85.78443908691423,52.038372039794865],[85.85086059570318,51.887943267822266],[85.3917846679688,51.56439590454096],[84.89691162109386,51.43909454345708],[84.73712158203142,51.43113708496105],[84.4468078613283,51.29122543334972],[84.19393157958984,51.26937484741211],[84.09119415283209,51.14675140380871],[84.19675445556658,51.00209808349614],[84.49913787841803,50.9668083190919],[84.59226989746122,50.8557968139649],[84.4374389648437,50.70588684082037],[84.05060577392607,50.647769927978516],[83.81191253662115,50.884899139404354],[83.56080627441418,50.96091842651367],[83.11965942382807,51.03537750244152],[82.95973968505882,50.91791152954107],[82.76071166992205,50.95043945312506],[82.54830932617193,50.769207000732536],[82.26171875000011,50.78596115112316],[82.11996459960966,50.75102996826172],[81.98730468750017,50.80992507934576],[81.77438354492199,50.814350128173885],[81.59300231933605,50.753105163574155],[81.47919464111328,50.820812225341854],[81.39098358154325,50.996295928955135],[81.06147003173845,50.95937347412115],[81.14469146728521,51.20169067382824],[80.68241119384794,51.30815124511719],[80.6224517822266,51.20695114135736],[80.44089508056663,51.20583724975586],[80.46884155273453,50.97445297241205],[80.25100708007805,50.92704391479498],[80.19262695312511,50.832027435302734],[79.94810485839855,50.90123748779302],[79.07403564453125,52.04165649414074],[78.24993133544928,52.954257965088004],[77.87168884277366,53.30647277832025],[77.9790878295899,53.38831329345703],[77.95584869384794,53.557872772216854],[78.09960937500006,53.56263732910156],[78.29058837890653,53.482833862304744],[78.59053039550781,53.52821350097661],[78.69332885742188,53.65587234497076],[78.99720001220709,53.658744812011825],[79.53343963623058,53.73154067993164],[79.60083770751953,53.80756378173828],[80.24555206298834,54.03636169433605],[80.57778930664062,54.206935882568416],[80.94847106933622,54.26935958862316],[81.11106109619158,54.11580276489269],[81.44765472412121,54.087188720703125],[81.56748962402361,53.925357818603516],[81.78419494628906,53.7239723205567],[82.18756103515642,53.66240692138672],[82.15647125244158,53.61235809326183],[82.45288085937517,53.51412200927746],[82.65225982666021,53.63429641723633],[82.75261688232428,53.841621398925895],[83.1566238403323,54.04161071777344],[83.85452270507841,54.117332458496094],[83.95371246337919,54.10057449340831],[84.23905181884794,54.187641143798885],[84.41899871826172,54.1351776123048],[84.61552429199224,54.28049087524414],[85.08579254150408,54.40634155273443],[85.19017791748053,54.396636962890675],[85.39015197753918,54.19636535644537],[85.51696014404325,54.210613250732536],[85.81012725830107,54.06702423095709],[86.10982513427751,53.96074676513671],[86.27109527587896,53.79481506347656],[86.35601806640653,53.63528823852545],[86.51421356201172,53.49926376342773],[86.90414428710943,53.469635009765675],[86.69823455810564,53.16136169433593],[87.0079727172851,53.006771087646484],[86.94689941406278,52.85101318359374],[86.98973846435553,52.69161605834972],[87.11547851562504,52.59727096557617]]]},"properties":{"ID_0":188,"ISO":"RU-ALT","NAME_0":"Russia","ID_1":2,"NAME_1":"Altay","TYPE_1":"Kray","ENGTYPE_1":"Territory","NL_NAME_1":"Алтайский край","VARNAME_1":"Altayskiy Kray"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[130.986083984375,55.70123672485346],[131.10748291015625,55.66984939575201],[131.7776794433597,55.6750831604005],[132.13868713378918,55.699752807617294],[132.34799194335938,55.753612518310604],[132.54748535156284,55.722637176513665],[132.72399902343773,55.37878036499029],[132.59730529785156,55.24185562133795],[132.40158081054688,55.2133407592774],[132.35009765624997,55.080066680908196],[132.0863952636721,55.04153060913085],[132.0453796386721,54.96763610839844],[131.81250000000023,54.848247528076286],[131.24078369140625,54.649513244628956],[131.23908996582028,54.559474945068466],[131.06558227539085,54.3253059387207],[130.73928833007824,54.28641891479492],[130.56108093261741,54.1769752502442],[130.50178527832077,54.01217651367182],[130.62428283691418,53.907501220703125],[130.91769409179688,53.78427505493169],[131.05589294433594,53.82456588745128],[131.33438110351574,53.79345321655284],[131.5006866455078,53.541282653808594],[131.57608032226562,53.357215881347656],[131.96589660644543,53.11613464355468],[132.08277893066452,53.198387145996094],[132.88908386230503,53.226699829101676],[133.14920043945324,53.31416702270519],[133.1331787109376,53.40508651733404],[133.31738281250023,53.476470947265625],[133.60089111328134,53.522151947021484],[133.67819213867188,53.457622528076115],[133.98667907714866,53.429813385009766],[134.44749450683616,53.567501068115234],[134.6906890869143,53.50512695312505],[134.8506774902346,53.22724914550787],[134.8230895996095,53.089889526367244],[134.58657836914074,52.88136672973644],[134.6083984375,52.70032119750982],[134.69229125976597,52.631057739257926],[134.5650024414067,52.53502655029302],[134.582000732422,52.422275543213004],[134.06338500976574,52.465103149414176],[133.27598571777366,52.66621017456066],[133.24148559570335,52.39976882934582],[133.3931884765626,52.29118728637701],[133.1866912841797,52.154430389404354],[132.8507843017578,52.16740036010748],[132.41049194335938,51.9391708374024],[132.3188018798828,51.79405975341802],[131.61479187011753,51.654121398925895],[131.4364776611328,51.56513977050787],[131.52368164062523,51.427497863769645],[131.26528930664108,51.25768661499017],[131.1119842529298,51.22765350341791],[130.9795837402345,51.01060104370123],[130.80239868164074,50.94845581054687],[130.8619842529297,50.8556175231933],[130.7168884277345,50.64296722412115],[130.94468688964855,50.67526245117199],[131.0315856933596,50.53677749633789],[130.93379211425827,50.463752746581974],[131.41798400878903,50.275722503662166],[131.49989318847702,50.17013931274414],[131.54049682617207,49.91241455078131],[131.51918029785168,49.762130737304744],[131.40278625488304,49.68471908569336],[131.50778198242222,49.567287445068416],[131.50968933105503,49.39023590087896],[131.38809204101585,49.25324630737315],[131.22180175781295,49.26071929931646],[131.0970916748047,49.19723129272461],[130.95930480957054,48.994235992431584],[130.78848266601562,48.977741241455135],[130.5672607421876,48.86181259155285],[130.4432373046876,48.90032196044922],[130.25747680664062,48.86184692382818],[129.9064178466797,49.05399703979492],[129.84469604492233,49.167659759521484],[129.52096557617207,49.41189193725597],[129.38406372070335,49.43146133422851],[129.1181335449221,49.348709106445426],[128.99516296386764,49.45048904418945],[128.77296447753952,49.47060012817388],[128.70825195312523,49.563720703125],[128.39202880859398,49.58887863159185],[128.26089477539074,49.499950408935604],[127.96154785156271,49.61182022094738],[127.80242156982422,49.59124755859381],[127.64972686767624,49.77777099609381],[127.51512908935581,49.834640502929744],[127.50132751464889,50.061019897460994],[127.5714797973634,50.242759704589844],[127.3687973022461,50.29315948486333],[127.28761291503905,50.47747039794933],[127.3593521118164,50.58327865600586],[127.11181640625021,50.93387222290039],[126.92285156250011,51.05799865722661],[126.89791107177768,51.188365936279354],[126.97986602783249,51.307769775390625],[126.78382110595714,51.44036483764659],[126.83277893066428,51.526538848877],[126.4692077636721,51.93531036376953],[126.54995727539074,52.13016891479492],[126.30267333984375,52.223281860351506],[126.3436813354492,52.39595031738281],[125.84910583496095,52.86016082763672],[125.579658508301,53.080730438232365],[125.1882095336914,53.191589355468864],[124.98197174072278,53.19285202026378],[124.83304595947266,53.13269042968761],[124.37548828125,53.24618148803716],[124.24575042724642,53.36550903320318],[124.11501312255882,53.34368133544922],[123.84442138671886,53.48871994018549],[123.52179718017588,53.55316925048834],[123.25701904296874,53.560859680175895],[122.83354187011751,53.4529037475587],[122.44212341308605,53.441848754882926],[122.32962036132847,53.49732208251959],[122.05168151855467,53.42110443115228],[121.95218658447266,53.553474426269474],[121.94478607177757,53.81986236572271],[121.79698181152354,53.9735717773438],[121.62589263916027,54.04391098022472],[121.73188781738283,54.19917678833019],[121.65828704833983,54.3732643127442],[122.07918548584018,54.45100402832037],[121.86299133300804,54.6698112487793],[121.86429595947287,54.791618347168026],[121.67738342285179,54.83369827270513],[121.95268249511729,55.022392272949276],[121.91439819335972,55.212265014648544],[121.98679351806663,55.391254425048935],[121.82729339599632,55.59227371215832],[121.68128967285168,55.60924148559576],[121.55158996582043,55.48530578613286],[121.3716735839846,55.50830078124994],[121.2721862792972,55.74502944946295],[121.24979400634788,55.98251724243175],[121.13418579101572,56.034633636474545],[120.83158111572276,56.02541351318359],[120.61238861083996,55.93164443969721],[120.35559082031271,55.89044189453131],[120.07330322265648,55.9106712341308],[120.05799865722656,56.15636444091802],[120.17959594726608,56.22220611572277],[120.4599838256837,56.246940612793026],[120.28088378906261,56.45709228515625],[119.94508361816405,56.495574951171875],[119.77268218994139,56.605785369873104],[119.821083068848,56.698146820068416],[119.62329101562536,56.78557205200189],[119.7814941406251,56.9057502746582],[120.09629058837902,56.92132186889659],[120.38408660888672,57.02729415893554],[120.93968200683605,57.05208969116211],[121.48700714111327,56.99433898925781],[121.64498138427756,56.77133178710949],[122.17757415771483,56.76365280151367],[122.62879180908224,56.52250671386718],[122.77029418945334,56.50225067138672],[122.95247650146506,56.596000671386776],[123.10108184814497,56.489643096923885],[123.45599365234386,56.41492462158203],[123.86538696289074,56.42337417602539],[123.99459075927733,56.37763214111339],[124.27209472656249,56.12319564819335],[124.42538452148449,56.066707611083984],[124.47119140625033,55.950378417968864],[124.87408447265625,55.856548309326165],[125.39449310302747,55.87777328491216],[125.60909271240246,55.768058776855575],[125.77259063720703,55.79460525512701],[126.05857849121116,55.72790145874035],[126.07677459716808,55.62282562255865],[126.46698760986338,55.597179412841854],[126.61418914794943,55.666030883789176],[126.88739013671886,55.612686157226555],[127.07429504394543,55.70475006103527],[127.328582763672,55.70069122314459],[127.4167938232423,55.59953689575206],[127.59788513183605,55.62340927124018],[127.68518829345726,55.713146209716854],[128.0808868408203,55.67566680908209],[128.24118041992207,55.689907073974666],[128.7920837402345,55.50666427612316],[128.9863891601567,55.50091552734374],[129.14279174804733,55.580661773681754],[129.03538513183616,55.6793441772462],[129.2996826171875,55.742393493652344],[129.63227844238293,55.76982116699219],[130.00978088378906,55.71006011962901],[130.72409057617188,55.77344131469732],[130.986083984375,55.70123672485346]]]},"properties":{"ID_0":188,"ISO":"RU-AMU","NAME_0":"Russia","ID_1":3,"NAME_1":"Amur","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Амурская область","VARNAME_1":"Amurskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[44.21242523193354,66.39486694335949],[44.45759582519537,66.37618255615229],[44.63889694213873,66.27404022216803],[45.193916320801065,66.21047973632812],[45.6815948486331,66.08473205566418],[45.856849670410384,66.11561584472666],[46.147785186767635,66.02928161621094],[46.41108703613281,66.07476043701178],[47.1370964050293,65.83535766601568],[47.80115509033203,65.85836791992188],[47.67824554443371,65.94245147705072],[48.10776519775419,66.13459014892578],[48.93068695068359,66.10868072509771],[49.00090789794927,66.02429199218767],[48.977466583252124,65.79473114013678],[49.03289794921892,65.6469345092774],[49.053756713867415,65.27355957031244],[49.61527252197271,65.31998443603521],[49.702350616455305,65.20333862304699],[50.105716705322266,64.89699554443371],[50.430904388427734,64.85437774658203],[50.264545440674,64.5242309570313],[49.56064605712907,64.6098022460937],[49.400409698486385,64.47563934326178],[48.91572189331054,64.49666595458996],[48.81874847412115,64.36576080322271],[48.43403625488287,64.36026000976574],[48.39972305297846,64.24330139160162],[48.10803604126005,64.27368164062511],[48.0927734375,64.37609863281261],[47.80503463745134,64.39805603027355],[46.547283172607536,64.36637878417979],[46.36297988891607,64.2933731079101],[45.93482971191412,64.32754516601562],[45.42439270019548,64.22801971435553],[45.57086181640642,64.08305358886719],[45.838367462158374,63.99121093750011],[46.377632141113395,63.93101501464844],[46.971553802490234,63.69632339477539],[47.00653457641629,63.55571365356445],[46.853965759277344,63.46475601196289],[47.01892089843767,63.29414367675781],[47.544834136963004,63.124252319335994],[47.27066421508795,62.95552062988292],[47.031341552734375,62.88605499267583],[47.20144271850609,62.65849685668945],[47.1661796569827,62.345592498779354],[47.3485679626466,62.34627151489258],[47.37570953369169,62.217628479003906],[47.595851898193416,62.215000152588],[47.646427154541236,62.332454681396534],[48.27669906616205,62.32807159423828],[48.19384765625017,62.48085021972656],[48.33520126342802,62.7247695922851],[48.615917205810604,62.7297592163086],[48.72655868530296,62.83530426025396],[49.586017608642635,62.768997192382926],[49.30377578735363,62.14521408081048],[49.2367744445803,62.13655090332031],[49.047744750976506,61.6744384765625],[49.512962341308764,61.60953140258794],[49.24629974365229,61.17825317382824],[48.767967224121264,61.15018081665039],[48.37702941894554,60.99104690551769],[48.33232879638689,60.85586166381836],[47.960479736328175,60.88802337646484],[47.947933197021484,60.995574951171875],[47.55131912231457,61.07292556762696],[47.18703079223627,61.059253692627],[47.071281433105526,60.86044311523443],[46.81387710571295,60.86542892456055],[46.79523849487316,60.95777893066417],[46.49473953247076,61.02838897705078],[46.31375122070307,60.97252655029297],[46.0068244934082,60.962619781494254],[45.736755371093864,61.03683090209972],[45.80521392822293,61.1678466796875],[45.28336715698242,61.202392578125064],[45.20437240600603,60.90912246704101],[44.2316551208496,60.957138061523494],[44.14776611328119,61.0461921691894],[43.743499755859425,60.996807098388615],[43.337352752685604,60.783920288085994],[43.13435363769559,60.82650756835943],[43.00558471679716,60.73624420166021],[42.71386337280302,60.8823509216308],[42.39422607421881,60.76912307739258],[41.82416534423834,60.92756271362299],[41.5980873107913,60.92374801635736],[41.432716369628906,60.7816772460938],[41.18537902832054,60.6755981445313],[40.9907875061038,60.68207168579112],[40.68736648559587,60.78285217285167],[40.438301086426065,60.796977996826165],[40.31475830078119,60.71973037719726],[39.99008941650418,60.68863677978527],[39.754878997802905,60.77202606201166],[39.504268646240405,60.709159851074276],[39.16817855834978,60.68583679199219],[38.679035186767635,60.74199295043945],[38.14723205566417,60.97548294067382],[38.202888488769815,61.08928680419927],[37.768093109130916,61.432945251464844],[37.788364410400504,61.55044174194341],[37.798164367676065,61.69045257568359],[37.949947357177905,62.01363754272461],[37.70195388793957,62.2538070678712],[37.477806091308764,62.294448852539176],[37.61561965942383,62.451484680175774],[37.60175704956077,62.62226104736334],[37.38840484619146,62.7218971252442],[37.10525512695307,62.69918060302746],[36.65991210937517,62.82378768920905],[36.35142135620134,63.02538299560546],[36.32391357421881,63.13858413696289],[36.46160888671881,63.24965667724604],[36.25407791137724,63.45004653930664],[35.968528747558594,63.629680633545036],[36.408535003662166,63.61830902099621],[36.66337966918974,63.78011322021484],[36.60692596435547,63.94583511352544],[36.65468978881853,63.91093444824213],[37.20624923706049,63.87708282470709],[37.400001525878906,63.785415649414176],[37.662498474121314,63.893749237060554],[38.00885391235363,63.93593978881841],[38.06406021118169,64.05781555175776],[37.788021087646655,64.36510467529297],[37.10885620117216,64.40052032470714],[36.74739837646513,64.68281555175793],[36.53541564941412,64.714584350586],[36.452606201172046,64.87135314941406],[36.80208206176752,64.95207977294926],[36.98125076293945,65.16666412353521],[37.645832061767635,65.03958129882812],[37.83124923706083,64.90833282470703],[38.20624923706083,64.77083587646484],[38.87083435058622,64.74166870117193],[39.27500152587919,64.64791870117199],[39.547916412353686,64.54166412353527],[39.809898376465014,64.61093902587885],[40.179164886474666,64.54582977294928],[40.44218444824236,64.62343597412115],[40.29739379882807,65.01093292236328],[40.04843521118181,65.10468292236334],[39.72135162353544,65.3359375],[39.70051956176775,65.45468902587919],[39.85885620117216,65.62239837646477],[40.411975860595874,65.78176879882818],[40.7645835876466,65.99166870117182],[41.335414886474894,66.06041717529303],[41.72295379638666,66.21876525878912],[42.11875152587908,66.49166870117193],[42.314582824707315,66.50833129882824],[42.84375000000017,66.38957977294922],[43.26874923706066,66.41041564941412],[43.60364913940458,66.29114532470703],[43.96302413940441,66.09426879882824],[44.21242523193354,66.39486694335949]]],[[[52.72135162353515,71.39635467529297],[53.156768798828296,71.24948120117188],[53.12916564941412,71.06041717529307],[52.821353912353686,71.06510162353521],[52.59791564941423,71.23332977294928],[52.25833511352539,71.32499694824213],[52.72135162353515,71.39635467529297]]],[[[54.946353912353516,73.41926574707026],[55.43541717529325,73.31041717529295],[55.733333587646484,73.31874847412104],[56.118751525878956,73.23750305175798],[56.38124847412138,73.22708129882818],[56.553646087646655,73.10676574707037],[56.11666488647455,72.94791412353527],[56.235416412353565,72.84583282470709],[55.90573120117193,72.6859359741211],[55.669269561767635,72.65364837646477],[55.42864608764677,72.30677032470703],[55.580730438232585,72.16926574707037],[55.38801956176786,72.00260162353521],[55.733333587646484,71.55625152587896],[56.21718978881852,71.183853149414],[57.03541564941411,70.85416412353521],[57.55833435058589,70.745834350586],[57.41041564941428,70.59166717529297],[57.10676956176752,70.55260467529303],[56.40416717529308,70.53541564941406],[56.09999847412126,70.63957977294928],[55.70208358764654,70.597915649414],[55.47291564941412,70.69374847412115],[55.158332824707195,70.54582977294933],[54.70833206176758,70.69166564941412],[53.99218750000017,70.73384857177763],[53.66249847412115,70.81250000000017],[53.778648376465064,70.93177032470726],[53.550521850586165,71.03801727294928],[53.85572814941435,71.13385009765636],[53.54426956176758,71.19635009765629],[53.30052185058622,71.42448425292974],[52.90885162353515,71.3848953247072],[52.53541564941412,71.55625152587896],[52.12708282470709,71.45207977294922],[51.60885620117193,71.54426574707037],[51.44427108764648,71.77135467529297],[51.563018798828125,72.06198120117199],[51.803646087646534,72.1255187988283],[52.43281555175804,72.08281707763672],[52.41249847412104,72.17500305175786],[52.71406555175798,72.29426574707043],[52.7890625,72.58385467529314],[52.42135620117193,72.73072814941406],[52.61249923706072,72.85208129882812],[53.122917175293026,72.8916702270509],[53.194271087646484,73.136978149414],[53.44791793823259,73.23542022705078],[53.87708282470709,73.28958129882812],[54.32291793823248,73.28125],[54.946353912353516,73.41926574707026]]],[[[67.77135467529325,77.00051879882812],[68.50468444824224,76.92760467529308],[69,76.78541564941406],[68.87708282470714,76.52708435058605],[68.14791870117182,76.25416564941423],[67.11250305175787,76.07499694824247],[66.30000305175804,76.00208282470709],[64.58750152587908,75.73542022705078],[62.22708511352539,75.43125152587896],[61.922393798828125,75.43177032470702],[61.687500000000284,75.28125],[60.77500152587896,75.125],[60.52916717529325,74.839584350586],[60.20416641235351,74.72083282470697],[59.91875076293957,74.70625305175787],[59.597915649414055,74.57083129882818],[59.20468521118181,74.62968444824217],[59.075000762939446,74.45625305175793],[58.64166641235352,74.49791717529297],[58.67499923706072,74.22708129882811],[57.87239837646489,73.90364837646489],[57.88697814941423,73.76927185058611],[57.5791664123538,73.59375000000011],[57.11666488647472,73.52916717529297],[57.241146087646705,73.4463500976562],[56.683334350586165,73.23124694824219],[56.1062507629395,73.25833129882812],[55.789585113525554,73.3333358764649],[55.39583206176786,73.3249969482423],[54.954166412353686,73.4375],[54.24583435058588,73.38749694824224],[54.42708206176786,73.5687484741212],[54.08958435058622,73.60416412353521],[53.700519561767635,73.72135162353527],[54.592189788818416,74.01823425292969],[55.14583206176774,74.16041564941418],[55.371356964111385,74.40573120117199],[56.150001525878906,74.4437484741211],[55.60052108764643,74.60990142822288],[56.412498474121314,74.68333435058616],[56.447917938232706,74.89583587646489],[56.29999923706055,75],[55.785934448242415,75.11198425292979],[56.85833358764671,75.21041870117199],[56.781250000000114,75.33125305175781],[57.029167175293026,75.37916564941412],[57.729167938232585,75.34583282470714],[57.610416412353565,75.50416564941418],[58.08958435058594,75.66041564941406],[58.767185211181705,75.73593902587908],[58.74010467529308,75.80573272705072],[59.283332824706974,75.9000015258789],[59.6979179382326,75.89583587646507],[60.34375,76],[61.08958435058587,76.03958129882807],[60.90885162353521,76.153648376465],[61.064582824707145,76.26041412353527],[61.69166564941413,76.29792022705082],[62.01874923706049,76.25],[63.05833435058605,76.2041702270509],[63.98125076293962,76.33125305175781],[64.1500015258789,76.27916717529297],[64.89583587646489,76.46041870117193],[65.27916717529303,76.44791412353527],[66.02708435058621,76.73750305175781],[66.69791412353544,76.82083129882807],[67.06666564941423,76.94166564941412],[67.77135467529325,77.00051879882812]]],[[[59.49010086059592,80.08802032470709],[59.887500762939624,80.02708435058588],[59.36041641235357,79.91041564941406],[58.86718750000016,80.01301574707031],[59.49010086059592,80.08802032470709]]],[[[51.008853912353565,80.09843444824219],[51.362499237060604,79.9124984741211],[50.42708206176758,79.92916870117193],[51.008853912353565,80.09843444824219]]],[[[50.08593750000017,80.22135162353521],[50.38489913940447,80.17031097412121],[49.91249847412138,80.04792022705077],[49.533332824707145,80.15625],[50.08593750000017,80.22135162353521]]],[[[56.9776039123538,80.3484344482423],[57.045314788818644,80.07551574707043],[56.118751525878956,80.06666564941412],[55.93333435058594,80.30625152587896],[56.9776039123538,80.3484344482423]]],[[[53.03176879882841,80.38593292236334],[53.924999237060604,80.22708129882818],[53.02708435058594,80.15000152587896],[52.26041793823259,80.21875000000011],[52.924999237060774,80.29792022705072],[53.03176879882841,80.38593292236334]]],[[[57.95677185058588,80.47551727294922],[58.858333587646484,80.42916870117188],[58.66666793823248,80.30208587646496],[57.86458206176775,80.09583282470709],[57.33124923706049,80.15833282470703],[57.23281478881847,80.39531707763678],[57.95677185058588,80.47551727294922]]],[[[56.46302413940423,80.75051879882824],[56.73958206176769,80.6125030517578],[55.76874923706048,80.6187515258789],[55.93750000000017,80.7395858764649],[56.46302413940423,80.75051879882824]]],[[[47.48176956176758,80.85260009765625],[47.44427108764677,80.72551727294933],[46.909893035888615,80.54531097412104],[46.12448120117216,80.51406097412108],[45.158332824707024,80.56458282470702],[46.189582824706974,80.66249847412115],[47.48176956176758,80.85260009765625]]],[[[61.79843521118175,80.86718750000006],[62.2036437988284,80.7473983764649],[61.98176956176774,80.58593749999994],[61.50624847412115,80.5374984741211],[61.12083435058622,80.37083435058594],[60.36875152587919,80.45625305175781],[59.78333282470708,80.40000152587889],[59.381248474121094,80.46875],[59.47708511352538,80.69791412353516],[60.02083206176775,80.82917022705078],[60.527084350586215,80.78541564941418],[61.79843521118175,80.86718750000006]]],[[[50.88224029541033,80.94588470458983],[51.00364303588884,80.85781097412115],[51.79739379882829,80.7119827270509],[51.04375076293945,80.56041717529297],[49.86458206176775,80.48332977294922],[49.72708511352539,80.36666870117193],[49.177082061767635,80.37083435058594],[49.02500152587919,80.15833282470703],[48.00416564941412,80.11458587646496],[48.279167175293026,80.40625000000011],[49.59791564941411,80.64167022705078],[49.10208511352545,80.7874984741212],[49.79375076293974,80.90833282470703],[50.88224029541033,80.94588470458983]]],[[[56.202606201172046,81.09010314941406],[57.522914886474894,81.02708435058605],[57.26250076293968,80.933334350586],[56.202606201172046,81.09010314941406]]],[[[54.70468521118181,81.10260009765636],[55.44583511352533,81.01041412353521],[56.16249847412138,81.01249694824224],[56.918228149414006,80.845314025879],[57.74375152587907,80.7708358764649],[57.08124923706055,80.67500305175776],[56.754165649414176,80.78541564941418],[54.922916412353516,80.94583129882824],[54.70468521118181,81.10260009765636]]],[[[61.40885162353543,81.12551879882805],[61.537498474121094,81.01249694824224],[60.8125,80.89583587646494],[59.98541641235357,80.96875],[61.40885162353543,81.12551879882805]]],[[[64.55052185058592,81.21093750000011],[65.39791870117182,81.15208435058594],[65.45625305175791,80.94791412353527],[64.54374694824247,80.72291564941406],[63.122917175293026,80.64583587646484],[62.51250076293951,80.79792022705084],[63.04583358764677,80.9625015258789],[63.89166641235357,81.04374694824219],[63.839584350586044,81.125],[64.55052185058592,81.21093750000011]]],[[[56.64218521118164,81.39635467529308],[57.797916412353565,81.28958129882812],[56.77916717529291,81.19166564941418],[56.28958511352544,81.26249694824219],[56.64218521118164,81.39635467529308]]],[[[57.59635162353515,81.55677032470697],[58.38489913940446,81.46823120117199],[57.86875152587913,81.37708282470713],[57.00624847412132,81.52500152587895],[57.59635162353515,81.55677032470697]]],[[[58.967189788818295,81.8546829223634],[59.09375,81.72916412353526],[58.03958511352545,81.71041870117193],[58.21875000000023,81.83125305175781],[58.967189788818295,81.8546829223634]]]]},"properties":{"ID_0":188,"ISO":"RU-ARK","NAME_0":"Russia","ID_1":4,"NAME_1":"Arkhangel'sk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Архангельская область","VARNAME_1":"Arcangelo|Archangel|Archangelsk|Arkhangelskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.59436416625982,45.44005584716797],[47.37369537353533,45.61444854736333],[47.19580841064476,45.56624603271496],[46.97037124633806,45.62693405151373],[47.23189926147461,46.094192504882926],[46.98451614379882,46.05420303344738],[46.90380859375006,46.177925109863395],[46.605720520019815,46.28306961059576],[46.7930717468264,46.407630920410156],[46.98734283447288,46.41539764404308],[47.05541610717768,46.58510971069336],[47.18793869018583,46.61122894287114],[47.26275253295892,46.72237014770519],[47.121829986572436,46.860137939453175],[47.01286315917974,46.86839294433605],[46.864311218261946,46.988971710205135],[46.58585357666021,47.305824279785156],[46.53321456909197,47.40501785278332],[46.382671356201456,47.411556243896484],[46.198188781738445,47.49292373657238],[45.88682937622087,47.71611404418957],[45.74114608764654,47.8851776123048],[45.76618957519548,47.999923706054744],[45.58000564575218,47.997398376464844],[45.33113098144531,48.13076019287115],[45.07697677612305,48.24496459960937],[45.052654266357706,48.36475753784191],[45.2648315429688,48.547519683838004],[45.58788681030285,48.569343566894645],[45.86848068237299,48.692279815673935],[46.065818786621264,48.853801727295036],[46.25581741333036,48.8485145568847],[46.58043670654313,48.71297836303716],[46.6070938110351,48.65580368041998],[46.49185562133789,48.44301223754877],[46.908660888672046,48.338993072509815],[47.09759521484381,48.21101379394531],[47.13941574096685,48.039939880371094],[47.01765060424799,48.000000000000114],[47.174312591552734,47.76074600219738],[47.371269226074276,47.676906585693416],[47.40667724609392,47.81257629394531],[47.68725204467779,47.74502944946294],[48.058250427246094,47.76065063476573],[48.182308197021655,47.678043365478516],[48.380683898926065,47.43358993530285],[48.607757568359375,47.41446685791027],[48.661376953125,47.209053039550724],[48.78133010864286,47.010875701904354],[49.00532531738287,46.76715469360357],[48.91406250000017,46.693138122558594],[48.75134658813499,46.68787765502924],[48.65697479248047,46.77126312255871],[48.48070526123064,46.65767288208013],[48.77588272094743,46.53588867187505],[48.81622314453142,46.48017883300787],[49.150959014892635,46.36972045898443],[49.202659606933594,46.2094230651856],[49.01564788818388,45.997692108154354],[48.59433746337902,45.87460708618164],[48.415763854980526,45.79878234863281],[48.23880386352539,45.603031158447266],[48.06351852416992,45.654464721679744],[47.87494277954107,45.56921005249017],[47.6906814575197,45.71260452270519],[47.57416915893583,45.63583374023449],[47.67722702026384,45.558238983154354],[47.59436416625982,45.44005584716797]]]},"properties":{"ID_0":188,"ISO":"RU-AST","NAME_0":"Russia","ID_1":5,"NAME_1":"Astrakhan'","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Астраханская область","VARNAME_1":"Astrachan|Astrakhanskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[57.41663742065435,56.34223175048828],[57.56007003784185,56.13613128662115],[57.80295181274408,56.17052078247075],[58.01305007934592,56.10430526733398],[58.31609725952154,56.10857391357422],[58.56117248535184,56.185100555420036],[58.86010360717797,56.08219146728527],[59.030738830566456,56.155094146728565],[59.320507049560604,56.18135070800787],[59.211906433105696,56.050365447998104],[59.23822021484381,55.95672607421869],[59.1341705322265,55.835670471191406],[59.322940826416186,55.768527984619254],[59.32208251953142,55.6388511657716],[59.652351379394815,55.607147216796875],[59.50017547607433,55.4813690185548],[59.21862411499023,55.46597290039056],[59.17960739135747,55.36906814575201],[58.994586944580135,55.28555297851562],[58.84098815917997,55.33058166503906],[58.636543273925724,55.18655776977545],[58.84679412841797,55.06823348999023],[58.6099548339846,54.97185134887707],[58.26559448242204,55.206829071045036],[58.053119659423885,55.27981948852544],[57.550121307373104,55.34121704101557],[57.267562866211165,55.24896621704113],[57.12787628173845,55.08674240112305],[57.263156890869084,54.95346832275385],[57.23563766479498,54.83249282836914],[57.72532272338861,54.61536026000988],[57.912010192871094,54.436424255371094],[58.06396865844749,54.43630981445318],[58.233798980713,54.53509902954101],[58.41311645507835,54.56279373168945],[58.62959671020502,54.495384216308594],[58.794242858886996,54.58634948730469],[59.095550537109425,54.65145492553711],[59.25223159790045,54.63365554809581],[59.66798400878911,54.92079925537121],[59.87408447265624,54.84171295166015],[59.926452636719034,54.76031875610363],[59.80536270141607,54.58450317382818],[59.68371582031267,54.52081298828131],[59.65116500854487,54.386539459228516],[59.775970458984666,54.32979965209972],[59.72672653198259,54.171306610107536],[59.57646560668945,54.2050514221192],[59.30596923828131,54.187454223632926],[59.195388793945426,54.02574157714844],[58.95000076293957,53.95510101318371],[58.87456893920904,53.549053192138665],[58.8741760253909,53.308635711670036],[58.9711074829101,53.06687164306652],[58.83953475952177,52.972320556640625],[58.772003173828296,52.647197723388615],[58.870468139648494,52.46748733520519],[58.928104400634936,52.32921218872082],[58.72232818603544,52.264278411865284],[58.736724853515796,52.03905868530279],[58.66092681884793,51.82437133789068],[58.285514831543196,51.70486068725591],[58.12882995605486,51.791187286376946],[57.717884063720646,51.84242630004894],[57.59904098510736,51.68700408935547],[57.252754211425895,51.56111145019531],[57.0214614868164,51.72510528564453],[56.84771728515625,51.67733764648443],[56.67132186889643,51.853351593017514],[56.76434326171875,51.938571929931754],[56.65333938598661,52.08392715454113],[56.41641616821294,52.28343200683594],[56.43438339233427,52.454502105713004],[56.30926513671875,52.57383728027355],[56.076580047607536,52.671535491943416],[55.87468719482433,52.41638565063488],[55.74633026123058,52.37069702148449],[55.52683639526373,52.4270591735841],[55.455417633056804,52.607715606689396],[55.350761413574155,52.660835266113224],[55.33386230468756,52.86939239501959],[55.164718627929744,52.83671188354498],[54.96802520751953,53.03781890869146],[54.85125732421892,53.27014160156256],[54.622863769531534,53.24052810668957],[54.506992340088175,53.35881423950207],[54.21290588378906,53.40169525146484],[54.05044174194353,53.483718872070305],[53.81612777709984,53.69990921020507],[53.63262939453119,53.81281661987305],[53.3920555114746,54.05834579467779],[53.37245178222667,54.26820373535156],[53.455108642578125,54.53090667724615],[53.63167953491234,54.70544815063476],[53.513286590576456,54.9273681640625],[53.185462951660384,55.15990829467785],[53.53339004516601,55.21333312988287],[53.681930541992415,55.32246017456055],[53.903453826904354,55.39184188842785],[54.0101165771486,55.58977127075201],[54.200267791748104,55.68797683715826],[54.19494247436529,55.768352508545036],[53.79792785644536,55.980274200439396],[54.10133361816412,56.133831024169865],[54.40242767333979,56.371795654296875],[54.53579711914062,56.512344360351506],[54.962570190429965,56.404541015625114],[55.1863250732423,56.44576644897466],[55.357685089111605,56.38758468627935],[55.697883605957145,56.499252319335994],[55.86119079589861,56.50003814697271],[56.04634475708008,56.308773040771484],[56.265800476074276,56.31492614746088],[56.49899291992182,56.383789062499936],[56.81703186035162,56.14175796508795],[56.956630706787216,56.11451721191406],[57.20583343505871,56.1882438659668],[57.41663742065435,56.34223175048828]]]},"properties":{"ID_0":188,"ISO":"RU-BA","NAME_0":"Russia","ID_1":6,"NAME_1":"Bashkortostan","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Башкортостан","VARNAME_1":"Bashkir|Bashkiriya|Bashkirskaya A.S.S.R.|Republic of Bashkortostan|Respublika Bashkortostan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[38.36970138549833,51.27934265136713],[38.54579162597679,51.24855804443365],[38.49182128906273,51.05882644653325],[38.7117538452149,51.011901855468864],[38.945518493652344,51.010120391845646],[38.82070922851574,50.82352828979503],[39.06449890136736,50.676937103271484],[39.21214675903326,50.487911224365234],[39.13768005371122,50.42704772949224],[39.24822235107421,50.1157836914063],[39.36486434936523,50.04544067382824],[39.228057861328345,49.82275772094738],[38.93712234497099,49.81128311157232],[38.611801147460994,49.97761154174816],[38.37343597412121,50.004013061523494],[38.04784774780279,49.95610427856457],[37.7604217529298,50.09633636474615],[37.49312973022478,50.42899322509776],[37.05329132080101,50.334320068359425],[36.925628662109546,50.34740829467779],[36.59706115722679,50.23817443847656],[36.49313354492216,50.32691955566411],[36.31538772583008,50.29401397705078],[36.15499877929699,50.44929885864269],[35.833274841308764,50.450107574463004],[35.631309509277344,50.360713958740234],[35.41308593750017,50.58973693847661],[35.50151443481445,50.688339233398494],[35.34387207031249,50.94857025146496],[35.39136505126953,51.02016067504888],[35.535190582275675,50.947021484375114],[35.84481430053728,50.9765739440918],[36.01176071166998,51.10667419433605],[36.21975708007818,51.159671783447266],[36.61006927490263,51.085968017578125],[36.805816650390796,51.18906402587902],[36.987564086914176,51.19255828857416],[37.15841293334978,51.316738128662166],[37.43205261230469,51.378387451171875],[37.79271697998047,51.36293411254894],[38.03408050537138,51.42617797851574],[38.36970138549833,51.27934265136713]]]},"properties":{"ID_0":188,"ISO":"RU-BEL","NAME_0":"Russia","ID_1":7,"NAME_1":"Belgorod","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Белгородская область","VARNAME_1":"Belgorodskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.12622451782232,53.28488540649414],[35.24696350097673,53.02655029296881],[35.02579498291021,52.94956588745117],[34.89869308471708,52.8263053894043],[35.050327301025675,52.6984024047851],[34.83935546875017,52.46743011474604],[34.95538711547846,52.376113891601555],[34.593837738037166,52.08508300781256],[34.32296752929715,52.04505538940429],[34.327144622802905,51.871875762939446],[34.09249496459972,52.015304565429744],[34.114337921142635,52.13401031494152],[33.72587966918974,52.354530334472656],[33.242950439453175,52.368160247802734],[32.977085113525334,52.26479721069336],[32.706577301025675,52.253143310546925],[32.53191375732427,52.33327102661133],[32.358680725097656,52.33577728271496],[32.35117340087902,52.13898086547857],[32.072063446045085,52.022766113281364],[31.80774879455589,52.09617233276367],[31.685556411743278,52.27771759033209],[31.594562530517802,52.302452087402344],[31.624660491943416,52.560420989990234],[31.515312194824446,52.68931198120128],[31.606595993042045,52.76661300659179],[31.306106567383093,53.02810287475586],[31.428953170776534,53.19543838500982],[31.64104270935053,53.231410980224545],[31.828300476074443,53.11901092529297],[32.16097259521513,53.08430099487316],[32.42108154296881,53.18400192260748],[32.76076126098661,53.41225051879882],[33.09860610961931,53.64677429199219],[33.2837562561038,53.8709831237793],[33.54387283325217,54.007575988769645],[33.83618927001959,53.972007751464844],[33.95208740234375,53.85181808471691],[34.22988128662138,53.869621276855526],[34.509521484375284,53.683013916015625],[34.531337738037394,53.442100524902344],[35.12622451782232,53.28488540649414]]]},"properties":{"ID_0":188,"ISO":"RU-BRY","NAME_0":"Russia","ID_1":8,"NAME_1":"Bryansk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Брянская область","VARNAME_1":"Bryanskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.7581253051759,56.95084381103509],[115.59595489501953,56.86897659301758],[115.62550354003906,56.72625732421881],[115.46198272705077,56.63488388061518],[115.690185546875,56.56768798828125],[115.71392822265636,56.350528717041016],[115.86387634277354,56.12752914428705],[115.79917907714889,56.01026535034179],[115.92726898193358,55.6559562683106],[115.96028900146507,55.37213516235357],[116.18379211425781,55.32855224609381],[116.41257476806686,55.337203979492294],[116.61997985839876,55.16183090209955],[116.82498168945312,55.08005523681651],[116.95027923583994,54.8743057250976],[116.81219482421874,54.61384201049816],[116.71199035644543,54.53763580322276],[116.2816848754885,54.51376342773448],[115.56758117675791,54.390731811523494],[115.45918273925781,54.270111083984375],[115.2238540649414,54.194267272949276],[114.8556900024414,54.00134658813482],[114.6169891357424,53.948337554931754],[114.4966812133789,53.81497573852545],[113.98649597168003,53.71546936035156],[113.84449005126964,53.61529922485357],[113.84599304199241,53.41097259521496],[113.94398498535156,53.27601242065441],[114.102294921875,53.20202636718756],[114.1680908203125,53.081085205078125],[114.30138397216807,53.043579101562614],[114.23398590087913,52.82198715209966],[114.02849578857422,52.6571502685548],[113.77400207519543,52.62709808349609],[113.56588745117188,52.47590255737316],[113.12449645996139,52.44719696044933],[112.92559051513672,52.34449768066412],[112.51860046386751,52.333370208740284],[112.3279037475586,52.229850769043026],[112.15048980712925,52.294643402099666],[111.90428161621094,52.17807769775385],[111.62138366699236,51.940441131591854],[111.27769470214844,51.86703491210937],[111.00709533691429,51.7771453857423],[110.84139251709013,51.66312026977545],[110.81089019775419,51.569496154785156],[110.65718841552727,51.49725341796881],[110.41329193115234,51.514919281005916],[110.35228729248053,51.586704254150334],[109.9656906127932,51.59393692016613],[109.6315917968751,51.42744827270502],[109.24658966064459,51.349941253662166],[108.95189666748045,51.42693328857433],[108.71248626709,51.43352127075206],[108.48529052734368,51.39182281494151],[108.3722000122072,51.181735992431754],[108.54918670654291,51.094142913818416],[108.29508209228544,51.0081024169923],[108.24688720703142,50.748924255371094],[108.09030151367205,50.65878677368158],[108.43138885498053,50.54073715209961],[108.45928192138678,50.41084289550787],[107.98388671875017,50.265735626220696],[107.90488433837885,50.1462135314942],[107.70338439941429,50.04202270507823],[107.74230957031256,49.982921600341854],[107.71409606933622,49.96063232421875],[107.69300842285173,49.95491027832031],[107.25467681884759,49.99255371093756],[107.1307373046875,50.026912689208984],[106.92449951171868,50.24749755859375],[106.56732177734375,50.34710693359381],[106.279296875,50.295722961425724],[106.0801010131837,50.393844604492244],[105.61184692382822,50.43236160278331],[105.38769531250004,50.47930908203131],[105.15193176269537,50.400051116943416],[104.91193389892578,50.388450622558594],[104.58850097656256,50.31372070312506],[104.40511322021501,50.3049926757813],[104.25095367431652,50.2018775939942],[104.0610961914063,50.15447998046881],[103.85482788085932,50.20290374755865],[103.69046020507812,50.13723754882812],[103.28723144531267,50.219169616699276],[103.20459747314447,50.31268692016607],[102.98071289062517,50.3043212890625],[102.64211273193371,50.429409027099666],[102.50518035888666,50.54089736938488],[102.32061767578125,50.58409118652355],[102.35404968261723,50.72669982910162],[102.22193145751947,50.8651123046875],[102.26687622070318,50.96551895141601],[102.06877899169915,51.39709472656255],[101.64199066162114,51.45660400390631],[101.34790039062523,51.47052001953125],[100.94338989257841,51.626300811767635],[100.51564025878923,51.7503776550293],[99.99353027343778,51.75329589843761],[99.77060699462902,51.881752014160206],[99.29478454589844,51.97522735595709],[98.98908996582054,52.123634338378956],[98.98967742919928,52.18605804443371],[98.64791870117216,52.278533935546925],[98.64746093750004,52.435390472412166],[98.81523132324212,52.54051589965832],[98.93306732177763,52.685543060302734],[99.00712585449236,52.9436759948731],[99.209213256836,52.93704605102545],[99.42826843261736,53.146099090576286],[99.55699157714838,53.13608169555664],[99.85607147216791,53.23704910278326],[99.86454772949224,53.338348388671875],[100.10189819335949,53.32376861572277],[100.2689895629884,53.410411834716854],[100.44689178466803,53.06212997436529],[100.76179504394537,52.93276214599621],[100.8267822265625,52.85309219360357],[101.38328552246088,52.636081695556754],[101.6136856079101,52.493385314941406],[101.64729309082048,52.40300369262707],[102.01759338378912,52.233772277831974],[102.12709045410185,52.274780273437436],[102.56408691406278,52.228134155273494],[102.84979248046903,51.9375228881837],[103.12709045410162,51.857528686523494],[103.2241821289063,51.69775009155273],[103.2037887573245,51.587627410888786],[103.33319091796892,51.443725585937614],[103.56519317626976,51.45485305786144],[103.80848693847673,51.376335144043026],[103.79341125488276,51.161197662353516],[103.91110229492205,51.138278961181754],[104.20409393310563,51.259197235107536],[104.61539459228521,51.32914352416997],[104.6928176879885,51.54415893554693],[105.3636398315432,51.77748870849621],[106.06362915039085,52.2733154296875],[106.50112915039062,52.59414672851568],[107.55110931396501,52.97330474853515],[108.09069061279313,53.29413604736328],[108.49901580810541,54.023292541503906],[108.53610992431646,54.4931526184082],[108.67350006103544,54.67839813232433],[108.67258453369135,55.06584548950207],[108.73458099365229,55.232414245605526],[108.65069580078142,55.26443099975597],[108.62490081787104,55.46341705322271],[108.68378448486332,55.51671218872076],[108.87778472900419,55.91461181640624],[109.11359405517595,55.99072647094737],[108.88919830322271,56.08713912963867],[108.82819366455107,56.220275878906364],[108.55319213867182,56.33916473388672],[108.71398162841791,56.52064132690424],[109.08189392089855,56.666835784912166],[109.48038482666033,56.72339630126959],[109.6817779541015,56.70060729980469],[109.85719299316435,56.78435516357422],[109.9868927001956,56.969215393066406],[110.36640167236334,56.92937088012689],[110.55599212646489,56.84374237060552],[110.72458648681639,56.87374496459961],[111.11918640136736,56.820114135742244],[111.30438995361344,56.91511917114258],[111.38539123535166,57.054851531982536],[111.53359222412121,57.12640380859381],[111.79949188232416,56.928192138671875],[112.0827865600586,56.94515609741222],[112.42478942871092,56.85485076904308],[112.59719085693393,56.96062088012706],[112.80089569091831,56.74137115478527],[113.16329193115268,56.65396118164068],[113.56809997558616,56.679946899414176],[113.97988891601585,56.557373046875],[114.15707397460936,56.70145416259771],[114.45579528808605,56.67583084106451],[114.76548767089844,56.716793060302784],[115.0475845336914,56.97802734375006],[115.0759277343751,57.11750411987304],[115.62718200683604,57.122791290283146],[115.80938720703125,57.22856521606451],[116.1044845581057,57.23717498779297],[116.12218475341797,57.12005615234375],[115.7581253051759,56.95084381103509]]]},"properties":{"ID_0":188,"ISO":"RU-BU","NAME_0":"Russia","ID_1":9,"NAME_1":"Buryat","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Бурятия","VARNAME_1":"Buryatiya|Buryat-Mongol A.S.S.R.|Republic of Buryatia|Buryatskaya A.S.S.R.|Respublika"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.773288726806754,42.46203231811529],[45.57738113403349,42.54584121704113],[45.350009918213175,42.529029846191406],[45.17654037475586,42.69070053100585],[45.088874816894695,42.695873260498104],[45.21262359619152,42.909942626953125],[45.18202590942377,43.047199249267635],[45.30168533325201,43.18769454956049],[45.3108100891115,43.30858993530285],[45.197319030761996,43.40940475463873],[44.92815780639642,43.535919189453125],[44.96052932739286,43.643440246582145],[45.12002563476568,43.684391021728516],[45.158073425293075,43.88348770141612],[45.44735717773443,43.81063842773443],[45.5693778991702,43.97541427612316],[45.78633880615263,43.90127563476574],[45.90329360961937,43.93429565429699],[46.18688583374029,43.83760833740246],[46.44912719726591,43.9833984375],[46.604526519775334,43.8326301574707],[46.59563446044933,43.70569229125988],[46.36718750000017,43.41711044311535],[46.4768714904788,43.21105575561529],[46.45720672607439,43.07328414916992],[46.55451583862333,42.922027587890675],[46.47019958496094,42.85184478759771],[46.24863433837896,42.865242004394645],[46.145259857177905,42.802078247070426],[46.233383178710994,42.71281814575195],[46.04878616333008,42.674411773681754],[46.035491943359546,42.59906005859374],[45.773288726806754,42.46203231811529]]]},"properties":{"ID_0":188,"ISO":"RU-CE","NAME_0":"Russia","ID_1":10,"NAME_1":"Chechnya","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Чечено-Ингушска","VARNAME_1":"Cecenia|Chechenia|Chechênia|Tchetchnia|Chechen-Ingush A.S.S.R.|Checheno-Ingushetia|Checheno-Ingushetia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[62.03094863891612,56.179256439208984],[62.20186233520502,56.05117797851562],[62.24063491821288,55.945957183837834],[62.5412254333496,55.77297210693365],[62.546329498290966,55.4912223815919],[62.05126571655279,55.29558563232433],[62.242473602295036,55.14459228515625],[61.94676208496088,55.01336288452154],[62.18416213989274,54.68358230590826],[62.41496658325195,54.743141174316406],[62.53170013427763,54.681823730468864],[62.7756843566895,54.67310333251953],[63.145675659179965,54.7323951721192],[63.28725051879905,54.56122970581054],[63.11988449096696,54.47005844116211],[63.108814239501896,54.36895751953131],[63.378082275390625,54.19743347167968],[63.16834640502947,54.19244384765625],[63.06212615966825,54.10041427612304],[62.85134124755864,54.11232376098638],[62.45409011840825,53.9259490966798],[62.33593750000006,54.034744262695305],[62.08839035034196,54.05787277221674],[61.94958877563477,53.94578552246105],[61.73760604858393,54.029369354248104],[61.58145904541043,53.99537658691417],[61.46106338500993,54.08398437500005],[61.2757301330567,53.98480987548834],[61.02773284912115,53.95189666748058],[61.218322753906364,53.81587219238292],[60.915958404541186,53.6167106628418],[61.17223739624051,53.56786727905268],[61.55599975585937,53.57489013671875],[61.48129653930681,53.46133422851574],[61.301353454589844,53.50721359252924],[61.161064147949496,53.392078399658196],[61.18274307250988,53.29615402221685],[61.46290206909208,53.22378540039068],[61.66730499267589,53.25185012817383],[61.79901885986333,53.160873413085994],[62.11061477661138,53.11679840087896],[62.137271881103516,53.0057373046875],[61.89292144775419,53.01052093505865],[61.65784072876005,52.960647583007926],[61.45967483520536,53.03501129150402],[61.23683929443354,53.031814575195256],[60.82582092285173,52.76245880126964],[60.84120178222685,52.61891174316406],[61.07188034057623,52.33768081665039],[60.72191238403348,52.16866683959961],[60.48985671997087,52.14835739135747],[60.32489013671903,52.03950500488287],[60.115940093994425,51.99730300903332],[60.0258522033692,52.08017349243164],[60.091457366943416,52.20063400268566],[60.234333038330135,52.27692031860362],[60.21855926513672,52.39468765258789],[60.08536529541011,52.43814849853521],[59.482364654540966,52.498386383056754],[59.28738403320312,52.448772430420036],[59.264503479003906,52.30434417724603],[59.01293563842802,52.468856811523494],[58.870468139648494,52.46748733520519],[58.772003173828296,52.647197723388615],[58.83953475952177,52.972320556640625],[58.9711074829101,53.06687164306652],[58.8741760253909,53.308635711670036],[58.87456893920904,53.549053192138665],[58.95000076293957,53.95510101318371],[59.195388793945426,54.02574157714844],[59.30596923828131,54.187454223632926],[59.57646560668945,54.2050514221192],[59.72672653198259,54.171306610107536],[59.775970458984666,54.32979965209972],[59.65116500854487,54.386539459228516],[59.68371582031267,54.52081298828131],[59.80536270141607,54.58450317382818],[59.926452636719034,54.76031875610363],[59.87408447265624,54.84171295166015],[59.66798400878911,54.92079925537121],[59.25223159790045,54.63365554809581],[59.095550537109425,54.65145492553711],[58.794242858886996,54.58634948730469],[58.62959671020502,54.495384216308594],[58.41311645507835,54.56279373168945],[58.233798980713,54.53509902954101],[58.06396865844749,54.43630981445318],[57.912010192871094,54.436424255371094],[57.72532272338861,54.61536026000988],[57.23563766479498,54.83249282836914],[57.263156890869084,54.95346832275385],[57.12787628173845,55.08674240112305],[57.267562866211165,55.24896621704113],[57.550121307373104,55.34121704101557],[58.053119659423885,55.27981948852544],[58.26559448242204,55.206829071045036],[58.6099548339846,54.97185134887707],[58.84679412841797,55.06823348999023],[58.636543273925724,55.18655776977545],[58.84098815917997,55.33058166503906],[58.994586944580135,55.28555297851562],[59.17960739135747,55.36906814575201],[59.21862411499023,55.46597290039056],[59.50017547607433,55.4813690185548],[59.652351379394815,55.607147216796875],[59.32208251953142,55.6388511657716],[59.322940826416186,55.768527984619254],[59.1341705322265,55.835670471191406],[59.23822021484381,55.95672607421869],[59.211906433105696,56.050365447998104],[59.320507049560604,56.18135070800787],[59.030738830566456,56.155094146728565],[59.26965332031249,56.386581420898494],[59.627262115478565,56.33762741088873],[59.721618652343864,56.251808166503906],[60.06461334228533,56.25220489501953],[60.41116714477544,56.29547500610357],[60.577255249023544,56.239315032958984],[61.140232086181584,56.25442886352538],[61.0709800720216,56.34933853149425],[61.20479583740229,56.40869903564459],[61.6801261901856,56.34332656860357],[62.03094863891612,56.179256439208984]]]},"properties":{"ID_0":188,"ISO":"RU-CHE","NAME_0":"Russia","ID_1":11,"NAME_1":"Chelyabinsk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Челябинская область","VARNAME_1":"Chelyabinskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-179.98905944824216,68.97760009765636],[-179.8328094482421,68.91301727294922],[-179.4515686035156,68.91614532470732],[-179.27082824707023,68.80208587646513],[-178.8442687988281,68.74948120117199],[-178.70208740234372,68.53958129882818],[-178.01718139648435,68.41614532470703],[-177.9083404541015,68.26667022705084],[-177.62864685058594,68.30573272705101],[-177.32083129882807,68.23750305175787],[-176.72760009765622,68.04322814941406],[-176.80207824707028,67.97083282470709],[-176.4854125976562,67.88333129882824],[-176,67.86458587646489],[-176.31040954589835,67.72916412353521],[-176.16874694824213,67.62916564941406],[-175.66926574707026,67.55364990234375],[-175.93333435058588,67.72708129882818],[-175.75364685058597,67.79114532470709],[-175.25885009765625,67.65052032470703],[-175.1734313964844,67.43177032470703],[-174.78750610351557,67.34791564941412],[-174.90573120117188,67.04010009765636],[-174.75468444824213,66.92656707763678],[-174.70625305175776,66.76041412353521],[-174.9750061035156,66.66666412353526],[-174.44010925292966,66.52864837646484],[-174.45573425292966,66.29843902587913],[-173.96093749999994,66.44635009765636],[-174.1338500976562,66.55260467529307],[-173.91458129882815,66.68125152587896],[-174.04374694824216,66.97916412353516],[-174.1458282470703,67.08125305175787],[-173.60260009765622,67.10051727294928],[-173.40208435058588,66.97499847412115],[-172.6125030517578,66.89167022705084],[-172.3588562011719,66.93489837646484],[-171.6666717529297,66.93750000000011],[-171.67864990234372,66.85468292236357],[-171.33384704589847,66.74635314941418],[-171.3640594482422,66.67552185058616],[-170.8979187011719,66.51041412353527],[-170.5208282470703,66.33541870117188],[-170.19844055175778,66.2744827270509],[-170.0625,66.16874694824224],[-169.6734313964843,66.12343597412121],[-169.6734313964843,66.04634857177763],[-170.17448425292963,66.00364685058605],[-170.53698730468747,65.85990142822266],[-170.496353149414,65.6713485717774],[-170.62290954589838,65.59999847412115],[-171.27291870117182,65.52708435058594],[-171.92083740234378,65.52291870117193],[-172.51876831054688,65.67501068115246],[-172.17031860351565,65.40364837646484],[-172.24166870117182,65.21250152587902],[-172.1171875,65.04843902587902],[-172.26718139648438,64.96302032470713],[-172.754165649414,64.83333587646479],[-172.83593749999997,64.64843750000006],[-172.4187469482422,64.53958129882824],[-172.42343139648432,64.40676879882818],[-172.72500610351557,64.39791870117188],[-172.9375,64.26041412353516],[-173.1786499023437,64.24843597412115],[-173.36874389648435,64.32083129882807],[-173.64166259765616,64.3249969482423],[-173.97084045410153,64.40833282470714],[-174.07292175292963,64.54582977294928],[-174.63697814941406,64.706771850586],[-174.5921783447265,64.83906555175776],[-175.03125,64.76457977294928],[-175.32292175292966,64.77708435058594],[-175.4020843505859,64.8499984741211],[-175.8640594482422,64.99218750000011],[-175.73176574707028,65.15364837646484],[-175.89114379882812,65.25989532470709],[-175.93333435058588,65.42082977294922],[-176.78750610351562,65.57707977294945],[-176.9786529541015,65.63906097412108],[-177.33125305175778,65.4854202270509],[-177.7583312988281,65.44999694824219],[-178.4375,65.46875],[-178.4484405517578,65.74323272705084],[-178.8411407470703,65.89427185058615],[-178.44010925292963,66.21926879882812],[-178.92500305175776,66.1541671752929],[-179.22343444824216,66.16301727294943],[-179.79739379882812,66.09323120117193],[-179.7994842529297,65.93281555175787],[-179.68489074707026,65.77343750000011],[-179.3104095458984,65.625],[-179.44323730468744,65.55052185058594],[-179.54426574707028,65.23384857177746],[-179.99842834472656,65.04843902587902],[-180,66.03073120117199],[-180,67.49871826171875],[-180,67.99635314941406],[-179.98905944824216,68.97760009765636]]],[[[168.52343750000045,70.01927185058594],[169.02915954589844,69.94999694824236],[169.42968750000034,69.85468292236328],[169.18540954589844,69.55416870117197],[168.91458129882832,69.55416870117197],[168.16093444824216,69.68177032470714],[168.10989379882832,69.74531555175793],[167.7916717529297,69.80833435058594],[168.16250610351585,69.99791717529297],[168.52343750000045,70.01927185058594]]],[[[175.1458282470703,69.8375015258789],[175.74114990234375,69.824478149414],[175.92083740234398,69.76875305175793],[176.4375,69.73332977294922],[177.14843750000023,69.5984344482423],[177.52708435058605,69.58333587646513],[177.6645812988282,69.51249694824219],[178.53958129882812,69.44374847412121],[178.7624969482423,69.39583587646489],[178.78750610351562,69.26041412353521],[179.32708740234386,69.25000000000017],[179.69947814941406,69.09323120117188],[179.69583129882812,69.00208282470703],[179.98333740234398,68.96875],[180.0000000000001,68.94973754882822],[180.0000000000001,68.85520935058594],[180.0000000000001,67.49953460693365],[180.0000000000001,67.49871826171875],[180.0000000000001,65.984115600586],[179.99790954589844,65.02708435058605],[179.8411407470703,64.99010467529308],[179.50625610351562,64.79582977294922],[179.13333129882812,64.76041412353521],[178.78958129882824,64.63124847412115],[178.3374938964845,64.63541412353516],[177.6859283447268,64.69426727294933],[177.49009704589855,64.85468292236338],[177.08749389648438,64.75624847412121],[176.67916870117188,64.85416412353516],[176.31092834472676,64.76301574707031],[176.6953125000001,64.61614990234375],[176.7812500000002,64.53958129882824],[177.0937500000001,64.7041702270509],[177.50833129882835,64.7395858764649],[177.41250610351562,64.5104141235351],[177.48385620117188,64.41093444824224],[177.97708129882812,64.20417022705078],[178.35676574707043,64.31822967529297],[178.69375610351582,63.94374847412104],[178.78802490234384,63.69947814941406],[178.6286468505859,63.62864303588873],[178.78541564941406,63.395832061767685],[178.95416259765636,63.29375076293951],[179.31040954589866,63.20416641235345],[179.46665954589855,63.060417175293075],[179.27915954589855,62.99791717529297],[179.36457824707054,62.87708282470708],[179.5807342529298,62.822399139404354],[179.62916564941418,62.6875],[179.36457824707054,62.47916793823253],[179.11718750000023,62.41719055175787],[179.18281555175804,62.32031250000006],[178.5562438964846,62.41666793823242],[178.0937500000001,62.53125],[177.2708282470703,62.55208206176758],[176.90834045410168,62.51250076293951],[176.51666259765625,62.40833282470697],[176.26249694824227,62.28749847412114],[175.9562530517578,62.24583435058589],[175.28489685058594,62.08906555175781],[175.2473907470705,62.02135467529297],[174.8249969482422,61.920833587646534],[174.84791564941403,61.933334350585994],[174.72291564941418,61.9145851135255],[174.5833282470703,61.82083511352538],[174.4604187011721,61.806251525878906],[174.42916870117196,61.82083511352538],[174.39999389648446,61.82090377807623],[174.42063903808594,61.82291793823242],[174.4244842529297,61.8234977722168],[174.3608856201173,61.96419143676769],[174.2377777099609,62.07927703857433],[174.0505828857423,62.08871078491222],[174.09197998046886,62.32941055297862],[174.0422821044922,62.40491867065436],[173.67327880859386,62.499732971191406],[173.07987976074241,62.406597137451236],[172.76919555664108,62.31050109863281],[172.46588134765634,62.39173507690435],[172.1083831787109,62.34674072265624],[171.93939208984375,62.41199493408203],[171.23089599609398,62.232379913330014],[171.03347778320332,62.30651473999029],[170.9011688232423,62.2173118591308],[170.60829162597656,62.17295837402337],[170.22097778320358,62.25038528442388],[170.02957153320312,62.220630645752],[169.82418823242207,62.58061218261718],[169.53900146484375,62.62110519409173],[169.4206848144532,62.71690368652355],[168.95277404785202,62.875350952148494],[168.7969055175782,62.85811233520513],[168.29310607910156,63.00706100463873],[168.55976867675778,63.114292144775504],[168.68098449707077,63.247974395752],[169.44708251953122,63.580848693847656],[169.19998168945324,63.86784362792964],[168.86268615722653,63.900096893310604],[168.7185821533203,63.975624084472656],[168.64190673828125,64.14803314208979],[168.4447021484376,64.16743469238293],[168.34239196777355,64.29093170166016],[167.84390258789074,64.23053741455084],[167.52578735351562,64.28662109375006],[167.5120849609375,64.38391876220714],[167.24938964843784,64.46813201904297],[167.09548950195312,64.5874481201173],[166.92356872558605,64.5131607055664],[166.4732666015626,64.4714813232423],[166.3092651367191,64.55143737792962],[165.77137756347668,64.58966827392584],[165.6528778076176,64.71417999267577],[165.28489685058614,64.7231826782227],[165.11187744140625,64.81286621093754],[164.90689086914085,64.75443267822266],[164.53738403320312,64.78979492187511],[164.1885681152345,64.88880920410166],[163.79478454589852,64.85228729248047],[163.53219604492188,64.9113235473634],[163.23428344726562,64.66918182373047],[162.79148864746105,64.66117095947266],[162.58186340332043,64.7549285888673],[162.1087036132816,64.78974914550787],[161.9074859619144,64.84993743896479],[161.68598937988293,65.04332733154291],[161.306884765625,65.12402343749993],[160.6400909423828,65.1752548217774],[160.22528076171886,65.3810195922852],[160.13206481933605,65.50003051757817],[159.13047790527366,65.67443084716808],[158.96820068359384,65.75019073486322],[158.9782867431643,65.99014282226555],[159.24395751953136,66.20253753662115],[158.9712677001953,66.20855712890625],[158.57537841796875,66.31752014160162],[158.45596313476562,66.42601776123047],[158.9965820312502,66.76388549804693],[158.81707763671898,66.87801361083979],[158.8250732421875,67.03237915039062],[158.34736633300793,67.10282897949247],[157.9401855468751,67.25540924072271],[157.85130310058602,67.4528198242188],[157.88198852539062,67.67973327636719],[158.30708312988304,67.70922088623058],[158.17015075683616,67.84158325195324],[158.4062957763673,68.04562377929693],[158.5895843505864,68.0956268310548],[158.95898437500023,68.08712005615234],[159.34660339355514,68.21170806884771],[159.74398803710938,68.16364288330084],[159.9905700683595,68.2639770507813],[160.73587036132835,68.23564910888683],[161.4074859619143,68.38578796386719],[162.40057373046875,68.25137329101585],[162.52027893066403,68.52133941650402],[162.67718505859386,68.63863372802746],[162.55137634277355,68.72766876220709],[162.7729644775395,68.81952667236328],[162.43896484375023,68.96341705322271],[162.50527954101562,69.11279296875028],[162.70036315918003,69.1583175659182],[162.26187133789097,69.39166259765636],[162.38285827636741,69.6540069580078],[162.86874389648438,69.63541412353527],[163.23124694824241,69.70207977294922],[163.83958435058594,69.68541717529308],[164.01249694824241,69.75416564941406],[164.56040954589878,69.58125305175793],[165.804168701172,69.57083129882812],[166.21665954589866,69.50624847412115],[166.960418701172,69.47708129882818],[167.74583435058594,69.76875305175793],[168.05572509765648,69.74323272705072],[167.96041870117188,69.64167022705084],[168.27030944824241,69.5515670776367],[168.21510314941406,69.37968444824213],[168.3416595458989,69.2062530517581],[168.71458435058594,69.1979141235351],[169.10417175292991,69.08541870117188],[169.33332824707043,69.07917022705084],[169.4109344482423,68.86093902587889],[169.61457824707054,68.76667022705072],[170.0916595458989,68.79166412353533],[170.83541870117188,68.97083282470709],[171.01042175293014,69.06666564941418],[170.9369812011721,69.2671890258789],[170.5749969482423,69.59583282470703],[170.1979217529297,69.58125305175793],[170.27967834472665,69.69947814941412],[170.5729217529298,69.8020858764649],[170.57344055175804,70.07865142822271],[171.29583740234406,70.04582977294928],[172.80259704589844,69.90885162353516],[173.23333740234375,69.76041412353516],[173.70832824707054,69.86666870117188],[174.02082824707043,69.89167022705078],[174.42291259765636,69.84791564941418],[175.1458282470703,69.8375015258789]]],[[[179.9979248046875,71.52754211425793],[179.99790954589844,70.97291564941406],[179.6125030517578,70.87083435058605],[179.06301879882835,70.85572814941435],[178.81927490234398,70.793228149414],[178.62968444824241,71.0703125000001],[178.89999389648446,71.20833587646507],[179.22084045410168,71.27916717529308],[179.4734344482422,71.40156555175787],[179.9979248046875,71.52754211425793]]],[[[-179.0328216552734,71.58385467529297],[-178.72708129882812,71.5749969482423],[-178.0578155517578,71.45885467529308],[-177.46510314941403,71.20051574707054],[-177.71875,71.06458282470732],[-177.9791717529296,71.01667022705084],[-179.08332824707026,70.90416717529303],[-179.99790954589838,70.97916412353527],[-180,71.11666107177744],[-180,71.39167022705084],[-179.99790954589838,71.52884674072277],[-179.0328216552734,71.58385467529297]]]]},"properties":{"ID_0":188,"ISO":"RU-CHU","NAME_0":"Russia","ID_1":12,"NAME_1":"Chukot","TYPE_1":"Avtonomnyy Okrug","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"Чукотский АОк","VARNAME_1":"Chukotka|Chukotskiy Aok"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.433818817138956,55.83564758300781],[48.222423553466854,55.694824218750114],[48.166419982910156,55.586402893066456],[47.93909072875971,55.44807815551769],[47.84599685668956,55.272872924804744],[48.08277893066434,55.15318679809576],[47.7993278503418,54.96561431884777],[47.75094985961937,54.8439674377442],[47.37910461425804,54.83041000366211],[47.27970504760753,54.723297119140625],[47.05760574340826,54.71459960937506],[46.87243652343767,54.63331604003912],[46.480495452881144,54.76414489746099],[46.41702270507818,54.890769958496094],[46.11295318603515,55.05263519287103],[46.091865539551065,55.22121047973633],[46.24536132812506,55.28040313720703],[46.39575576782232,55.48254776000982],[46.01667785644537,55.610549926757756],[45.9772682189942,55.709350585937436],[46.11907196044922,55.816932678222656],[46.15256881713873,56.02133560180663],[46.531948089599666,56.16180801391612],[46.72156143188482,56.13411712646478],[46.82055664062517,56.201248168945256],[47.35260391235368,56.34806060791027],[47.48185729980468,56.20182800292963],[47.882141113281364,56.13944625854498],[47.99329757690447,55.9805641174317],[48.433818817138956,55.83564758300781]]]},"properties":{"ID_0":188,"ISO":"RU-CU","NAME_0":"Russia","ID_1":13,"NAME_1":"Chuvash","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Чувашская Республика","VARNAME_1":"Chuvashskaya A.S.S.R.|Chuvashskaya Respublika|Chuvashiya|Chuvash Republic"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.41337585449224,60.16041564941413],[29.4552898406983,60.21669769287115],[29.63844299316412,60.26620864868169],[29.692167282104492,60.25753784179693],[29.82188606262218,60.236030578613395],[30.01099586486822,60.1847915649414],[30.2376003265382,60.140625],[30.38434410095215,60.128211975097706],[30.369991302490234,60.107704162597656],[30.35161590576178,60.05097961425788],[30.524717330932614,59.986141204833984],[30.495494842529297,59.887321472168026],[30.619201660156303,59.81810379028321],[30.75839424133312,59.7766227722169],[30.720363616943356,59.70893859863287],[30.59896850585937,59.70190048217768],[30.526046752929627,59.655380249023494],[30.4826335906983,59.62333679199224],[30.192295074462944,59.63624191284192],[30.06274032592779,59.68751144409185],[30.00914001464855,59.72918319702143],[29.850015640258846,59.8276252746582],[29.675977706909237,59.86321258544922],[30.028944015502873,59.862251281738274],[30.187501907348743,59.98569488525396],[29.965103149414006,60.010940551757926],[29.926563262939506,60.14530944824219],[29.541666030883903,60.193748474121094],[29.41337585449224,60.16041564941413]]]},"properties":{"ID_0":188,"ISO":"RU-SPE","NAME_0":"Russia","ID_1":14,"NAME_1":"City of St. Petersburg","TYPE_1":"Gorsovet","ENGTYPE_1":"City","NL_NAME_1":"Санкт-Петербург (горсовет)","VARNAME_1":"Sankt-Peterburg gorsovet"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.89686965942411,44.83456802368163],[46.836387634277514,44.538150787353516],[46.99380493164068,44.43854904174805],[47.11287689209013,44.21173095703131],[47.25378417968756,44.12890625],[47.40943527221697,43.94292068481451],[47.588378906250284,43.79436111450201],[47.58098220825201,43.62916946411138],[47.47476577758811,43.38834381103521],[47.52555847167974,43.268432617187614],[47.46616744995123,43.01533508300792],[47.707035064697266,42.87892913818364],[47.7154960632327,42.68369674682623],[47.89205551147466,42.48472595214855],[48.07221221923834,42.339176177978516],[48.37198257446312,41.91100692749029],[48.49974822998058,41.82895278930664],[48.414409637451115,41.62656784057617],[48.19355392456072,41.50323867797857],[48.05105590820318,41.491195678711044],[47.87881469726568,41.21921920776373],[47.53591537475603,41.207206726074155],[47.26239395141618,41.324737548828125],[47.227470397949446,41.44229125976568],[47.10094070434576,41.587192535400504],[47.00976181030279,41.556026458740234],[46.895812988281534,41.731594085693466],[46.76124572753923,41.85299682617199],[46.539745330810604,41.873767852783196],[46.22616577148466,42.0018043518067],[45.76870727539068,42.125831604003906],[45.60612869262718,42.2189826965332],[45.71355819702177,42.29054641723633],[45.773288726806754,42.46203231811529],[46.035491943359546,42.59906005859374],[46.04878616333008,42.674411773681754],[46.233383178710994,42.71281814575195],[46.145259857177905,42.802078247070426],[46.24863433837896,42.865242004394645],[46.47019958496094,42.85184478759771],[46.55451583862333,42.922027587890675],[46.45720672607439,43.07328414916992],[46.4768714904788,43.21105575561529],[46.36718750000017,43.41711044311535],[46.59563446044933,43.70569229125988],[46.604526519775334,43.8326301574707],[46.44912719726591,43.9833984375],[46.18688583374029,43.83760833740246],[45.90329360961937,43.93429565429699],[45.78633880615263,43.90127563476574],[45.5693778991702,43.97541427612316],[45.583023071289176,44.106788635253906],[45.35768890380865,44.113613128662166],[45.22692108154308,44.20801162719732],[45.44076919555687,44.254520416259766],[45.503036499023665,44.34289932250982],[45.36286163330083,44.41144561767584],[45.30944824218773,44.525314331054744],[45.50423049926758,44.598480224609375],[45.64491653442394,44.77478027343756],[45.58984375000005,44.88315963745117],[45.7094612121582,44.98960113525396],[45.82844543457036,45.01570129394537],[46.38546371459966,44.951122283935604],[46.55226898193382,44.85092926025396],[46.7495231628418,44.79224395751964],[46.89686965942411,44.83456802368163]]]},"properties":{"ID_0":188,"ISO":"RU-DA","NAME_0":"Russia","ID_1":15,"NAME_1":"Dagestan","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Дагестан","VARNAME_1":"Dagestanskaya A.S.S.R.|Daghestan|Republic of Dagestan|Respublika Dagestan|Dagistan"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[87.11547851562504,52.59727096557617],[87.32029724121098,52.50825500488281],[87.63422393798828,52.42935180664068],[87.91730499267582,52.54662704467785],[88.16598510742188,52.41110229492199],[88.39932250976568,52.416522979736385],[88.42230987548845,52.18346405029297],[88.27487945556658,52.069774627685604],[88.05386352539068,52.035678863525504],[87.91613006591797,51.80930709838867],[88.11305236816435,51.72165679931634],[87.93568420410185,51.49143218994135],[88.40613555908209,51.29219818115239],[88.59608459472656,51.33659744262707],[88.69065093994158,51.508010864257926],[88.78808593750011,51.54139709472667],[88.99385833740261,51.3917350769044],[88.93582153320318,51.28644561767578],[89.03704071044939,51.05790328979498],[89.20065307617199,50.917152404785156],[89.36615753173834,50.86466598510748],[89.54168701171886,50.72339248657238],[89.5593032836914,50.646766662597706],[89.86594390869134,50.45931243896495],[89.79672241210955,50.374256134033196],[89.59128570556635,50.37336730957031],[89.40225219726574,50.31097412109369],[89.60778045654301,50.0583953857423],[89.60530853271489,49.94659423828131],[89.68183135986357,49.709709167480526],[89.4448852539063,49.65888214111328],[89.09948730468773,49.49987792968756],[88.81514739990263,49.46619033813482],[88.65002441406267,49.52006912231457],[88.44528198242193,49.480113983154354],[88.22333526611322,49.48987197875982],[87.99429321289078,49.18632125854492],[87.70231628417969,49.16968154907238],[87.43810272216813,49.08467102050787],[87.31257629394524,49.0996932983399],[87.26836395263689,49.21648025512695],[87.04711914062516,49.25468444824213],[86.90200805664067,49.35077285766601],[86.79604339599638,49.54754638671881],[86.61799621582037,49.63164520263672],[86.426498413086,49.638702392578125],[85.9796676635745,49.48617553710943],[85.93133544921875,49.55242156982416],[85.42082214355497,49.56372833251953],[85.21229553222662,49.62680816650385],[85.10476684570341,49.87472534179699],[84.98101806640636,49.920810699463004],[84.99801635742182,50.056076049804744],[84.8342132568361,50.09669113159174],[84.47759246826176,50.250236511230526],[84.3240661621096,50.2245330810548],[84.2188796997072,50.532268524170036],[84.05060577392607,50.647769927978516],[84.4374389648437,50.70588684082037],[84.59226989746122,50.8557968139649],[84.49913787841803,50.9668083190919],[84.19675445556658,51.00209808349614],[84.09119415283209,51.14675140380871],[84.19393157958984,51.26937484741211],[84.4468078613283,51.29122543334972],[84.73712158203142,51.43113708496105],[84.89691162109386,51.43909454345708],[85.3917846679688,51.56439590454096],[85.85086059570318,51.887943267822266],[85.78443908691423,52.038372039794865],[86.12054443359375,52.06703186035167],[86.28927612304699,52.02621078491211],[86.43383026123075,52.12608718872082],[86.67334747314476,52.11758804321288],[86.64455413818365,52.51440811157238],[87.002052307129,52.64591598510742],[87.11547851562504,52.59727096557617]]]},"properties":{"ID_0":188,"ISO":"RU-AL","NAME_0":"Russia","ID_1":16,"NAME_1":"Gorno-Altay","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Алтай","VARNAME_1":"Gorno-Altayskaya A.Obl.|Respublika Altay|Oirot|Republic of Altai"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[44.92815780639642,43.535919189453125],[45.197319030761996,43.40940475463873],[45.3108100891115,43.30858993530285],[45.30168533325201,43.18769454956049],[45.18202590942377,43.047199249267635],[45.21262359619152,42.909942626953125],[45.088874816894695,42.695873260498104],[44.878253936767635,42.74692153930664],[44.7982025146486,42.63172149658208],[44.67710876464843,42.74794769287121],[44.91403198242193,42.81735229492199],[44.98039627075207,42.88537597656256],[44.92951583862322,43.04457092285156],[44.66234970092779,43.204257965088004],[44.661403656005916,43.34613418579107],[44.58394241333008,43.39837646484375],[44.597927093505916,43.527099609375114],[44.81823348999051,43.48669052124029],[44.92815780639642,43.535919189453125]]]},"properties":{"ID_0":188,"ISO":"RU-IN","NAME_0":"Russia","ID_1":17,"NAME_1":"Ingush","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Респу́блика Ингуше́тия","VARNAME_1":"Ingouchie|Inguchétia|Inguschetien|Ingushetia|Ingushetiya|Ingush Republic|Ingushskaya Respublika|Respublika Ingushetiya"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.0887908935548,58.2240562438966],[118.63647460937499,58.17738723754883],[118.44488525390624,58.22644805908214],[118.29698181152365,58.337387084960994],[117.7854843139653,58.42399978637695],[117.46318817138683,58.329998016357415],[117.57389831542969,58.14407348632806],[117.40738677978516,58.07118988037121],[117.29359436035168,57.84815216064458],[117.12066650390625,57.85252761840814],[117.28559112548841,57.62681198120122],[117.20367431640625,57.530384063720646],[117.32167816162121,57.347053527832024],[117.62229156494173,57.3300018310548],[117.72589111328125,57.26401901245123],[117.5772933959961,57.165882110595646],[117.66378784179709,57.079795837402344],[117.58058166503929,56.89760971069341],[117.40299224853516,56.85409545898449],[117.26209259033226,56.965255737304744],[116.9766845703125,56.7938613891601],[116.4649887084962,56.792110443115234],[116.24888610839857,56.87526321411133],[116.13798522949254,56.83269500732427],[115.7581253051759,56.95084381103509],[116.12218475341797,57.12005615234375],[116.1044845581057,57.23717498779297],[115.80938720703125,57.22856521606451],[115.62718200683604,57.122791290283146],[115.0759277343751,57.11750411987304],[115.0475845336914,56.97802734375006],[114.76548767089844,56.716793060302784],[114.45579528808605,56.67583084106451],[114.15707397460936,56.70145416259771],[113.97988891601585,56.557373046875],[113.56809997558616,56.679946899414176],[113.16329193115268,56.65396118164068],[112.80089569091831,56.74137115478527],[112.59719085693393,56.96062088012706],[112.42478942871092,56.85485076904308],[112.0827865600586,56.94515609741222],[111.79949188232416,56.928192138671875],[111.53359222412121,57.12640380859381],[111.38539123535166,57.054851531982536],[111.30438995361344,56.91511917114258],[111.11918640136736,56.820114135742244],[110.72458648681639,56.87374496459961],[110.55599212646489,56.84374237060552],[110.36640167236334,56.92937088012689],[109.9868927001956,56.969215393066406],[109.85719299316435,56.78435516357422],[109.6817779541015,56.70060729980469],[109.48038482666033,56.72339630126959],[109.08189392089855,56.666835784912166],[108.71398162841791,56.52064132690424],[108.55319213867182,56.33916473388672],[108.82819366455107,56.220275878906364],[108.88919830322271,56.08713912963867],[109.11359405517595,55.99072647094737],[108.87778472900419,55.91461181640624],[108.68378448486332,55.51671218872076],[108.62490081787104,55.46341705322271],[108.65069580078142,55.26443099975597],[108.73458099365229,55.232414245605526],[108.67258453369135,55.06584548950207],[108.67350006103544,54.67839813232433],[108.53610992431646,54.4931526184082],[108.49901580810541,54.023292541503906],[108.09069061279313,53.29413604736328],[107.55110931396501,52.97330474853515],[106.50112915039062,52.59414672851568],[106.06362915039085,52.2733154296875],[105.3636398315432,51.77748870849621],[104.6928176879885,51.54415893554693],[104.61539459228521,51.32914352416997],[104.20409393310563,51.259197235107536],[103.91110229492205,51.138278961181754],[103.79341125488276,51.161197662353516],[103.80848693847673,51.376335144043026],[103.56519317626976,51.45485305786144],[103.33319091796892,51.443725585937614],[103.2037887573245,51.587627410888786],[103.2241821289063,51.69775009155273],[103.12709045410162,51.857528686523494],[102.84979248046903,51.9375228881837],[102.56408691406278,52.228134155273494],[102.12709045410185,52.274780273437436],[102.01759338378912,52.233772277831974],[101.64729309082048,52.40300369262707],[101.6136856079101,52.493385314941406],[101.38328552246088,52.636081695556754],[100.8267822265625,52.85309219360357],[100.76179504394537,52.93276214599621],[100.44689178466803,53.06212997436529],[100.2689895629884,53.410411834716854],[100.10189819335949,53.32376861572277],[99.86454772949224,53.338348388671875],[99.85607147216791,53.23704910278326],[99.55699157714838,53.13608169555664],[99.42826843261736,53.146099090576286],[99.209213256836,52.93704605102545],[98.65788269042986,53.1620330810548],[98.20771026611338,53.10531616210943],[98.1916961669923,53.216613769531364],[97.99438476562506,53.23566818237305],[97.92311096191435,53.36027145385748],[97.51278686523443,53.382141113281364],[97.20844268798857,53.61151504516612],[97.04811096191406,53.61078643798834],[96.81473541259771,53.75337219238281],[96.6574020385745,53.67288589477545],[96.42700195312527,53.70550537109375],[96.23450469970726,53.83367156982422],[95.97604370117193,54.081790924072315],[95.58200073242209,54.24648284912115],[95.69361114501982,54.424602508545036],[95.88717651367209,54.44483566284191],[96.00881195068358,54.57380294799799],[96.36582183837908,54.540847778320426],[96.58145904541021,54.78104782104498],[96.60356903076195,54.934135437011776],[96.52938079834007,55.0153427124024],[96.61862182617193,55.17959213256836],[96.56729125976562,55.26968765258795],[96.81917572021496,55.335166931152344],[96.72574615478533,55.430507659912166],[96.74478912353527,55.6108512878418],[96.67596435546892,55.78876876831065],[96.85897064209007,55.883861541748104],[96.8980560302735,56.021305084228516],[97.06554412841803,56.1075553894043],[97.24575805664068,56.060150146484375],[97.47972869873064,56.215599060058594],[97.46293640136736,56.38546371459961],[97.81568145751959,56.41099548339849],[97.83305358886741,56.55344772338861],[97.6790771484375,56.586856842041016],[97.72278594970709,56.79839324951183],[97.43206787109375,56.808643341064396],[97.54944610595709,56.97365188598632],[97.27159118652355,57.05503845214843],[97.85095214843756,57.8077278137207],[98.69966125488297,57.79028701782232],[98.99233245849632,57.73973083496094],[99.3619537353516,57.80164337158209],[99.42675018310564,57.95764923095708],[99.56242370605473,58.07381057739258],[99.93135833740263,58.090202331543026],[100.05778503417991,57.8380393981933],[100.25708770751974,57.81548690795909],[100.3657836914063,57.63893890380864],[100.34409332275395,57.55021286010736],[100.6624908447265,57.42540740966797],[100.87288665771501,57.50151062011719],[100.71709442138672,57.68139266967784],[100.7143859863283,57.8863182067871],[100.97428894042997,57.87890625000011],[101.14799499511724,58.04628753662109],[101.07718658447283,58.11627578735363],[101.46989440917986,58.24704742431652],[101.61859130859403,58.42313766479497],[102.15978240966814,58.552066802978565],[102.49607849121094,58.75176239013666],[102.47080230712919,58.88842773437505],[102.3208770751956,59.0443496704101],[102.40089416503906,59.167301177978516],[102.75149536132818,59.206871032714844],[102.88977813720707,59.3064460754395],[103.11837768554699,59.29439163208014],[103.28791046142607,59.06786727905285],[103.46849060058616,58.95306777954096],[103.87898254394537,58.89309692382806],[103.90348815917986,58.74250411987299],[104.19309234619163,58.770755767822266],[104.28269958496094,58.6254272460938],[104.61929321289057,58.63664627075189],[104.83798217773442,58.73712158203125],[104.73359680175781,58.87413787841802],[105.0714874267581,59.03755187988287],[105.30099487304705,59.101051330566406],[105.27748870849621,59.23059844970709],[104.83638763427734,59.53829574584961],[104.73638153076183,59.6727752685548],[105.05778503417963,59.857639312744205],[105.4935836791995,59.84915161132819],[105.40668487548827,59.93064117431652],[105.43428039550793,60.26477432250976],[105.08998870849638,60.28499221801758],[104.8090896606447,60.36547088623053],[104.4766845703125,60.60294342041021],[104.57118988037136,60.711750030517635],[104.5557937622072,60.98606491088878],[104.71078491210966,61.10625076293957],[105.01318359375017,61.18880844116216],[104.89459991455084,61.32469558715821],[105.24727630615239,61.414550781250114],[105.57048797607416,61.56637191772461],[105.94728851318382,61.66402435302739],[105.88639068603516,61.792602539062614],[106.3584823608399,62.006202697753956],[106.43609619140624,62.17500686645507],[106.36696624755871,62.23390197753912],[106.74647521972662,62.467819213867294],[106.80757141113293,62.577873229980575],[106.55267333984396,62.611968994140675],[106.52788543701193,62.70965194702149],[106.20367431640653,62.90058517456055],[106.17459106445312,63.02289581298828],[106.39649963378935,63.053401947021534],[106.44538116455071,63.16439056396496],[106.74307250976591,63.323417663574276],[106.52508544921886,63.48440170288086],[106.65098571777338,63.56152725219732],[106.7594757080081,63.792926788330185],[106.6923751831054,63.92959213256836],[107.11349487304716,63.85772705078119],[107.22399139404313,63.917171478271484],[107.52798461914055,63.83859252929693],[107.64058685302734,63.9286613464356],[108.21099090576183,63.95898437500011],[108.41978454589866,64.04077911376964],[108.22488403320341,64.19969940185558],[108.07008361816423,64.2308349609375],[108.32037353515624,64.23208618164074],[108.51888275146501,64.1240463256836],[108.60639953613276,63.99736785888671],[108.83898925781256,63.942726135253956],[108.76528930664057,63.76220703124999],[108.360191345215,63.74987792968756],[108.19779205322271,63.552024841308594],[108.63528442382817,63.54714965820318],[109.0999832153323,63.501834869384815],[109.3056869506836,63.318023681640675],[109.431900024414,63.33555603027344],[109.50339508056669,62.933498382568466],[109.68299102783209,62.77556228637706],[109.51198577880888,62.70124816894543],[109.3219833374024,62.531219482421875],[109.44618988037121,62.37328720092785],[109.88619995117216,62.384899139404354],[109.9992828369141,62.14464569091802],[109.9276885986328,62.01083374023431],[109.73378753662138,61.964775085449276],[109.57048797607445,61.806121826171925],[109.62269592285156,61.69590759277355],[109.85147857666044,61.52491760253906],[109.80968475341803,61.3029441833496],[110.01268768310541,61.266429901123104],[110.26317596435547,61.12279510498046],[110.54428100585932,61.09622192382823],[110.50140380859375,60.95031738281261],[110.26738739013672,60.791835784912166],[110.25808715820335,60.67520141601568],[109.91727447509794,60.46295166015631],[109.65779113769531,60.09603118896495],[109.73029327392584,60.019088745117244],[109.61067962646483,59.85977172851562],[109.41599273681662,59.71179580688488],[109.42248535156256,59.582862854003956],[109.24958801269548,59.4787712097168],[109.19648742675808,59.31725692749023],[109.38699340820335,59.27058410644531],[109.53708648681646,59.133255004882805],[109.84828948974604,58.99227523803716],[110.13488006591803,58.97113800048828],[110.52928924560551,59.07193756103521],[110.66398620605473,59.23534393310552],[111.05188751220703,59.23276901245122],[111.19478607177757,59.18805694580084],[111.36758422851585,59.25527191162121],[111.58386993408209,59.19935989379883],[111.96369171142607,59.28927230834966],[112.23168182373058,59.480144500732415],[112.25617980957031,59.2989120483399],[112.6091766357423,59.30592346191412],[112.60719299316418,59.22062683105469],[112.37979125976562,59.132343292236435],[112.36268615722678,58.94820785522466],[112.53959655761719,58.86918640136725],[112.65889739990257,58.99961471557611],[113.45299530029307,59.246364593505916],[113.42030334472679,59.40068817138671],[113.60099029541014,59.5364227294923],[113.82278442382858,59.59870529174799],[113.95967864990257,59.721977233886825],[114.15539550781273,59.740455627441456],[114.23757934570335,59.858222961425774],[114.54588317871092,59.95115661621093],[114.51919555664074,60.056388854980405],[114.69469451904332,60.18165969848632],[114.8906707763673,60.17819976806646],[115.04588317871094,60.2675514221192],[115.22398376464878,60.47521591186529],[115.40338897705101,60.44536590576177],[115.67437744140646,60.52421188354492],[116.25788879394577,60.381546020507926],[116.4955825805664,60.35449600219732],[116.87740325927778,60.19826126098633],[117.05989074707043,60.01239395141613],[117.27548217773449,60.03850555419922],[117.12969207763695,59.819625854492294],[117.14827728271484,59.53166961669916],[117.27029418945335,59.48458480834966],[117.9225845336915,59.44094848632812],[118.03059387207043,59.598358154296925],[118.23178863525413,59.60691833496099],[118.36619567871094,59.47940444946295],[118.73919677734374,59.41302490234369],[118.8267745971683,59.29489135742193],[118.68948364257814,59.19795608520519],[118.74748229980469,58.91421508789073],[118.81668853759766,58.80208969116216],[118.76448822021496,58.594631195068466],[119.07548522949229,58.48748397827143],[119.0887908935548,58.2240562438966]]]},"properties":{"ID_0":188,"ISO":"RU-IRK","NAME_0":"Russia","ID_1":18,"NAME_1":"Irkutsk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Иркутская область","VARNAME_1":"Irkutskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[43.72822952270519,57.44832992553722],[43.78118133544939,57.313419342041065],[43.556827545166016,57.247447967529354],[43.49840164184564,57.11389541625982],[43.68645858764659,57.06120300292974],[43.51523971557617,56.88269805908214],[42.97316741943388,56.83714294433605],[42.8017654418947,56.76897811889643],[42.92481613159208,56.62143707275385],[42.91299819946317,56.472671508789006],[42.620475769043026,56.40495300292963],[42.2815208435058,56.45626831054681],[42.05952072143571,56.339920043945256],[41.9337806701663,56.36871337890619],[41.90042114257818,56.49721145629883],[41.60852432250999,56.44999694824219],[40.849788665771534,56.5037574768067],[40.723091125488565,56.59519195556646],[40.31420135498064,56.50989913940441],[40.22425842285178,56.40853500366211],[40.00674438476579,56.46383285522461],[39.885383605957315,56.765003204345696],[39.70699310302757,56.80736541748058],[39.43826293945318,56.76061248779302],[39.64764404296881,57.05530929565429],[40.08861160278349,57.21368789672857],[40.49948120117193,57.2833251953125],[41.15713500976568,57.383441925048885],[41.60894775390625,57.468681335449155],[41.65153121948259,57.59570312499994],[41.81151580810547,57.692836761474716],[42.13410568237322,57.56983184814453],[42.68343353271513,57.63517379760748],[42.80692291259783,57.57382583618175],[42.88154983520519,57.39172363281256],[43.47077560424822,57.54584121704096],[43.72822952270519,57.44832992553722]]]},"properties":{"ID_0":188,"ISO":"RU-IVA","NAME_0":"Russia","ID_1":19,"NAME_1":"Ivanovo","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Ивановская область","VARNAME_1":"Ivanovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[44.42427062988309,43.7303581237793],[44.522731781005916,43.59682464599615],[44.522533416748104,43.36967849731445],[44.217716217041016,43.34904098510753],[44.16654205322271,43.201122283935604],[43.93302917480486,43.26514053344721],[43.8518829345706,43.130386352539006],[43.62340545654325,42.91222381591797],[43.417610168457145,42.89511108398443],[43.192070007324276,42.934432983398494],[42.89274215698265,43.17011642456065],[42.5501785278322,43.18489837646495],[42.52280807495134,43.35943984985357],[42.58576202392583,43.53892517089855],[42.852779388427905,43.66554260253917],[42.879692077636776,43.74985122680664],[43.418952941894645,43.8531761169433],[43.4763679504395,43.74176025390631],[43.673252105713175,43.78469848632818],[43.8842391967774,43.739944458007926],[44.073207855224666,43.92408370971691],[44.40965652465843,43.843856811523494],[44.42427062988309,43.7303581237793]]]},"properties":{"ID_0":188,"ISO":"RU-KB","NAME_0":"Russia","ID_1":20,"NAME_1":"Kabardin-Balkar","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Кабардино-Балкарская Респу","VARNAME_1":"Kabardin A.S.S.R.|Kabardino-Balkarskaya A.S.S.R.|Kabardino-Balkariya|Kabardino-Balkarsk|Kabard|Kabardino-Balkarskaya Republic"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[21.388671875000114,55.29071044921875],[21.45550537109375,55.21972656249994],[22.036766052246378,55.04721832275396],[22.478673934936637,55.04959487915045],[22.857051849365348,54.901466369628956],[22.88785362243652,54.78821563720709],[22.739583969116325,54.72333145141596],[22.696071624755973,54.601581573486385],[22.752365112304744,54.359527587890625],[21.471471786499023,54.32069396972662],[20.540498733520792,54.37180709838861],[19.793050765991268,54.436168670654354],[20.259166717529354,54.618473052978516],[20.11027717590332,54.6540260314942],[19.96588134765625,54.79624938964855],[19.97808837890625,54.9613037109375],[20.738056182861328,54.9331932067871],[21.084722518920955,54.89236068725586],[21.216943740844727,54.92458343505865],[21.17861175537115,55.19652938842785],[21.388671875000114,55.29071044921875]]]},"properties":{"ID_0":188,"ISO":"RU-KGD","NAME_0":"Russia","ID_1":21,"NAME_1":"Kaliningrad","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Калининградская область","VARNAME_1":"Kaliningradskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.33113098144531,48.13076019287115],[45.58000564575218,47.997398376464844],[45.76618957519548,47.999923706054744],[45.74114608764654,47.8851776123048],[45.88682937622087,47.71611404418957],[46.198188781738445,47.49292373657238],[46.382671356201456,47.411556243896484],[46.53321456909197,47.40501785278332],[46.58585357666021,47.305824279785156],[46.864311218261946,46.988971710205135],[47.01286315917974,46.86839294433605],[47.121829986572436,46.860137939453175],[47.26275253295892,46.72237014770519],[47.18793869018583,46.61122894287114],[47.05541610717768,46.58510971069336],[46.98734283447288,46.41539764404308],[46.7930717468264,46.407630920410156],[46.605720520019815,46.28306961059576],[46.90380859375006,46.177925109863395],[46.98451614379882,46.05420303344738],[47.23189926147461,46.094192504882926],[46.97037124633806,45.62693405151373],[47.19580841064476,45.56624603271496],[47.37369537353533,45.61444854736333],[47.59436416625982,45.44005584716797],[47.51293563842801,45.10276031494152],[47.11584091186551,44.78835296630865],[46.89686965942411,44.83456802368163],[46.7495231628418,44.79224395751964],[46.55226898193382,44.85092926025396],[46.38546371459966,44.951122283935604],[45.82844543457036,45.01570129394537],[45.7094612121582,44.98960113525396],[45.45902633666992,45.18701171875006],[44.94964599609392,45.353240966796875],[44.902450561523715,45.40328598022461],[44.511672973632926,45.46749877929687],[44.376140594482706,45.52777099609375],[44.15728378295904,45.72904205322271],[44.047424316406364,45.876682281494084],[43.72995758056646,45.96230316162115],[43.493743896484546,45.97897720336913],[43.36589431762695,46.066642761230526],[42.899993896484546,46.20640563964844],[42.81304550170927,46.09181213378911],[42.56415557861328,45.99406814575201],[42.32843399047846,45.97244644165038],[42.34757232666044,46.117866516113224],[42.18614959716802,46.09731674194347],[42.184879302978516,45.946632385253906],[41.72266006469721,46.010082244873104],[41.66335296630882,46.15437316894537],[41.783275604248324,46.21192932128906],[41.98351287841813,46.221466064453125],[41.971462249755916,46.31305313110363],[42.238018035888786,46.36042785644542],[42.09851455688499,46.57544326782232],[42.45161819458036,46.47282791137701],[42.74751663208025,46.342739105224666],[42.94000625610357,46.39889144897472],[43.096824645996264,46.340915679931754],[43.34342575073247,46.17803573608393],[43.575691223144815,46.14254379272472],[43.85728836059593,46.35525894165039],[43.960010528564624,46.54926681518555],[43.8437042236331,46.57817077636719],[44.109107971191406,46.826839447021534],[44.28370285034197,46.89566040039073],[44.383224487304744,47.34505462646478],[44.37316131591825,47.44343185424805],[44.03566741943359,47.41090774536144],[43.824653625488224,47.30933380126964],[43.731311798095874,47.46975326538086],[43.71966552734398,47.63501739501953],[43.85755920410162,47.74082183837885],[44.05761718750006,47.80458068847656],[44.157932281494425,47.9174537658692],[44.40241241455095,47.869865417480526],[44.54751968383795,48.00454330444336],[44.3487663269043,48.071819305420036],[44.40397644042969,48.189575195312614],[44.635627746582315,48.17599868774414],[44.60692214965849,48.075504302978516],[44.98141098022478,48.0832252502442],[45.059612274170085,48.167221069335994],[45.33113098144531,48.13076019287115]]]},"properties":{"ID_0":188,"ISO":"RU-KL","NAME_0":"Russia","ID_1":22,"NAME_1":"Kalmyk","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Калмыкия","VARNAME_1":"Kalmykiya|Khalmg Tangch|Republic of Kalmykia|Kalmytskaya A.S.S.R.|Respublika Kalmykiya"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[37.23786544799833,54.82754898071289],[37.18505477905302,54.6140403747558],[37.0100402832034,54.5870513916015],[36.84381866455078,54.4885520935058],[36.97293472290067,54.4212303161621],[36.94339752197271,54.31204605102545],[36.50695419311529,54.271457672119254],[36.21937942504894,54.17079544067382],[36.24413681030302,54.0797691345216],[35.984798431396655,53.90098190307623],[35.927242279052734,53.75899887084961],[35.99767684936546,53.638332366943416],[35.80834960937506,53.52405166625976],[35.59941864013689,53.52227401733409],[35.53010940551774,53.419132232666016],[35.12622451782232,53.28488540649414],[34.531337738037394,53.442100524902344],[34.509521484375284,53.683013916015625],[34.22988128662138,53.869621276855526],[33.95208740234375,53.85181808471691],[33.83618927001959,53.972007751464844],[33.54387283325217,54.007575988769645],[33.749347686767855,54.310287475586044],[33.65891265869158,54.3496932983399],[33.70205307006847,54.49966812133789],[34.017467498779524,54.55827713012701],[34.26461791992216,54.48426437377935],[34.49197006225586,54.49597930908208],[34.55910491943387,54.61239242553711],[34.979309082031364,54.77207565307623],[34.955974578857585,54.92178344726574],[35.17611694335966,54.97915649414074],[35.38077926635742,55.16138076782232],[35.37735366821289,55.22885131835949],[35.58991241455095,55.204761505126896],[35.77828598022461,55.26192855834972],[36.33795166015641,55.15635681152355],[36.45362472534197,55.28030776977539],[36.64088439941406,55.22678756713873],[36.97644424438493,55.21963500976568],[37.15329360961913,55.07462310791015],[37.23786544799833,54.82754898071289]]]},"properties":{"ID_0":188,"ISO":"RU-KLU","NAME_0":"Russia","ID_1":23,"NAME_1":"Kaluga","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Калужская область","VARNAME_1":"Kaluzhskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[165.9825897216797,55.36279296875],[166.24221801757835,55.26555633544922],[166.288330078125,55.11916732788086],[166.4438934326173,54.963054656982536],[166.6438903808595,54.86500167846691],[166.56721496582043,54.75],[166.17564392089855,54.96189880371094],[166.08370971679696,55.12419509887701],[165.9166717529298,55.253334045410156],[165.9825897216797,55.36279296875]]],[[[164.5908355712893,59.23646545410156],[164.7355499267578,59.03055572509776],[164.64071655273472,58.8710289001466],[164.187225341797,58.81472396850591],[163.57559204101574,58.58090591430675],[163.92494201660153,59.02421188354486],[164.35255432128906,59.12885284423828],[164.5908355712893,59.23646545410156]]],[[[174.42063903808594,61.82291793823242],[174.39999389648446,61.82090377807623],[174.38185119628918,61.81874847412121],[174.39166259765625,61.82500076293945],[174.42063903808594,61.82291793823242]]],[[[173.45625305175793,61.529167175293026],[173.18072509765625,61.397396087646484],[172.89375305175793,61.47083282470714],[172.7526092529298,61.418228149414006],[172.9661407470703,61.28385162353521],[172.51301574707054,61.17343521118163],[172.40625,61.00833511352545],[172.27343750000023,61.00468826293945],[172.10156250000023,60.872398376464844],[171.7312469482423,60.83958435058594],[171.34791564941406,60.610416412353516],[170.65051269531295,60.413021087646484],[170.68907165527355,60.316143035888736],[170.5124969482422,60.24583435058593],[170.43069458007812,59.96947097778332],[170.2910919189453,59.92761993408214],[169.9401092529297,60.09218978881835],[169.7796783447269,60.26718521118175],[169.74948120117233,60.38697814941407],[169.43333435058594,60.489582061767685],[169.38906860351562,60.574478149414055],[169.12083435058605,60.55208206176763],[168.55000305175793,60.59583282470703],[168.19792175293003,60.577083587646534],[166.9859313964845,60.299480438232365],[166.72239685058628,60.08593749999994],[166.417236328125,59.92462158203125],[166.29055786132824,59.8125],[166.1038818359375,59.80027770996093],[166.20884704589866,60.130725860595696],[166.31407165527344,60.19427108764654],[166.2749938964846,60.47291564941418],[166.01458740234375,60.422916412353516],[165.78282165527352,60.26927185058594],[165.16615295410156,60.07551956176769],[165.2341156005859,59.998237609863274],[165.1060791015626,59.86392211914056],[164.85688781738304,59.78121948242187],[164.77944946289085,59.93000030517584],[164.49322509765634,60.09739303588873],[164.17889404296886,59.95888900756837],[163.873748779297,60.00363922119146],[163.69432067871094,59.87061309814447],[163.47747802734372,59.860820770263665],[163.3913879394532,59.77751922607416],[163.4107360839846,59.616432189941456],[163.21000671386753,59.56972122192377],[163.34869384765625,59.3014373779298],[163.0772247314453,59.25388717651368],[162.904998779297,59.11055374145513],[162.93167114257824,58.973888397216804],[162.45166015625,58.690277099609425],[162.1349945068359,58.37333297729498],[161.97866821289062,58.01039505004888],[162.13650512695324,57.84344100952148],[162.53204345703148,57.752727508545036],[162.4975280761721,57.87024307250987],[162.712158203125,57.942386627197266],[163.046112060547,57.820835113525504],[163.2050018310548,57.81916809082036],[163.30332946777344,57.71861267089844],[163.0961151123048,57.48333358764648],[162.7820739746096,57.34877777099609],[162.77687072753906,57.18935012817377],[162.85293579101574,57.03883361816406],[162.77667236328122,56.774444580078125],[162.9127044677734,56.69088745117187],[163.23460388183605,56.73920440673834],[163.24984741210946,56.43655395507818],[163.35365295410156,56.326015472412166],[163.361541748047,56.18438720703131],[163.17883300781273,56.13409423828136],[163.04617309570347,56.008056640625],[162.8091735839845,56.06713104248058],[162.62704467773457,56.228275299072266],[162.90029907226562,56.42485046386719],[162.73092651367185,56.483348846435604],[162.43624877929688,56.38809585571289],[162.60261535644554,56.26225662231445],[162.20610046386764,56.146774291992244],[161.93495178222688,55.846618652343864],[161.75556945800804,55.56803512573248],[161.78244018554696,55.216522216796875],[161.87702941894554,55.06887817382812],[162.1544494628906,54.85277938842779],[162.12995910644543,54.758049011230526],[161.7158050537109,54.50529861450207],[161.29167175292991,54.48527908325207],[161.19767761230491,54.58391952514643],[160.98497009277366,54.58810043334955],[160.5861053466797,54.46861267089837],[159.97790527343759,54.12537384033209],[159.8780975341797,53.907669067382756],[159.84832763671875,53.67028427124035],[159.9561309814453,53.57298278808594],[159.84661865234375,53.40095901489269],[160.03944396972656,53.21416854858404],[160.0238952636721,53.095001220703125],[159.66601562499997,53.24697875976562],[159.47666931152366,53.22805404663091],[159.08721923828136,53.106666564941456],[158.70556640625009,52.884422302246094],[158.5677947998048,53.06325149536133],[158.4161376953125,52.92612457275402],[158.64080810546875,52.842952728271484],[158.48573303222656,52.738945007324276],[158.4813690185547,52.44618988037115],[158.5711975097656,52.38497161865246],[158.29962158203136,52.098594665527344],[158.2738952636721,51.96138763427746],[158.03500366210938,51.78944396972661],[157.90388488769554,51.64166641235351],[157.6177978515626,51.52672958374029],[157.23435974121116,51.20899963378906],[156.87722778320324,51.02222061157232],[156.5477752685548,51.28499984741211],[156.4911041259768,51.48777770996105],[156.50271606445324,51.76833343505871],[156.46597290039062,52.13974761962885],[156.3437957763672,52.468387603759815],[156.14137268066418,52.862350463867244],[156.05433654785202,53.36672210693371],[155.90167236328125,53.981109619140625],[155.69000244140648,54.599166870117244],[155.5572204589846,55.197223663330135],[155.57110595703125,55.461112976074276],[155.65051269531259,55.96693038940423],[155.7357635498048,56.11040115356445],[155.94778442382844,56.61111068725586],[156.08833312988293,56.78972244262707],[156.42277526855491,56.92583465576183],[156.58111572265648,57.08666610717779],[156.68777465820324,57.05749893188488],[157.00054931640648,57.43347549438487],[156.84666442871105,57.794998168945426],[157.35797119140636,57.772163391113274],[157.52610778808605,57.82138824462891],[157.6736297607423,58.01255416870111],[157.9022216796876,57.9775009155274],[158.3219451904298,58.07051849365234],[158.6658782958989,58.26206588745118],[159.0248413085942,58.40304946899413],[159.7305603027348,58.86611175537114],[159.72444152832054,58.98805618286139],[159.86495971679688,59.132198333740234],[160.41278076171886,59.39749908447271],[160.4877777099614,59.54861068725585],[160.85340881347702,59.60929870605463],[161.26878356933616,59.84865570068371],[161.47500610351585,60.03125],[161.83489990234384,60.15468978881847],[161.90260314941418,60.325519561767635],[162.20416259765636,60.52708435058605],[162.7703094482423,60.63177108764648],[162.89218139648483,60.74739837646496],[163.4005126953125,60.81198120117193],[163.679168701172,60.88124847412115],[163.5520782470704,60.97916793823247],[163.6171875,61.10885620117182],[163.92031860351562,61.213024139404354],[164.030731201172,61.342189788818466],[163.7526092529297,61.46823120117187],[163.87342834472656,61.64947891235363],[164.0182342529298,61.66197586059576],[164.15676879882824,62.27447891235362],[164.73541259765648,62.45624923706065],[164.96249389648438,62.40416717529296],[165.1812438964845,62.46041488647466],[164.7213592529297,62.57344055175787],[164.61198425292991,62.680728912353565],[164.05000305175815,62.65208435058588],[163.25051879882835,62.514064788818466],[163.2317657470703,62.31198120117199],[163.10000610351562,62.2125015258789],[163.13906860351562,62.01094055175786],[162.99842834472668,61.78176879882807],[163.34323120117196,61.70260620117182],[162.97969055175793,61.53385162353515],[162.8479156494143,61.70833206176763],[162.4467773437501,61.666667938232365],[162.4502868652345,61.754013061523494],[162.28388977050793,61.88418579101556],[162.548583984375,61.97920608520514],[162.2705688476567,62.071186065673935],[162.22207641601585,62.14491271972667],[162.7540893554692,62.261215209960994],[162.80090332031247,62.438495635986385],[162.6827850341797,62.54821014404297],[162.82980346679733,62.64506912231452],[162.4432067871095,62.843231201171875],[162.29759216308594,62.86023330688487],[162.35816955566418,63.053524017333984],[162.61038208007812,63.08627319335938],[162.82566833496102,63.17364883422846],[162.7477722167971,63.36769485473633],[163.0708923339848,63.499443054199276],[163.06048583984375,63.57740402221691],[162.78858947753926,63.7246704101563],[162.97048950195312,63.8617935180664],[162.84187316894543,64.07023620605469],[162.9873809814453,64.15705108642578],[163.51039123535168,64.33881378173828],[163.24119567871116,64.54193115234375],[163.23428344726562,64.66918182373047],[163.53219604492188,64.9113235473634],[163.79478454589852,64.85228729248047],[164.1885681152345,64.88880920410166],[164.53738403320312,64.78979492187511],[164.90689086914085,64.75443267822266],[165.11187744140625,64.81286621093754],[165.28489685058614,64.7231826782227],[165.6528778076176,64.71417999267577],[165.77137756347668,64.58966827392584],[166.3092651367191,64.55143737792962],[166.4732666015626,64.4714813232423],[166.92356872558605,64.5131607055664],[167.09548950195312,64.5874481201173],[167.24938964843784,64.46813201904297],[167.5120849609375,64.38391876220714],[167.52578735351562,64.28662109375006],[167.84390258789074,64.23053741455084],[168.34239196777355,64.29093170166016],[168.4447021484376,64.16743469238293],[168.64190673828125,64.14803314208979],[168.7185821533203,63.975624084472656],[168.86268615722653,63.900096893310604],[169.19998168945324,63.86784362792964],[169.44708251953122,63.580848693847656],[168.68098449707077,63.247974395752],[168.55976867675778,63.114292144775504],[168.29310607910156,63.00706100463873],[168.7969055175782,62.85811233520513],[168.95277404785202,62.875350952148494],[169.4206848144532,62.71690368652355],[169.53900146484375,62.62110519409173],[169.82418823242207,62.58061218261718],[170.02957153320312,62.220630645752],[170.22097778320358,62.25038528442388],[170.60829162597656,62.17295837402337],[170.9011688232423,62.2173118591308],[171.03347778320332,62.30651473999029],[171.23089599609398,62.232379913330014],[171.93939208984375,62.41199493408203],[172.1083831787109,62.34674072265624],[172.46588134765634,62.39173507690435],[172.76919555664108,62.31050109863281],[173.07987976074241,62.406597137451236],[173.67327880859386,62.499732971191406],[174.0422821044922,62.40491867065436],[174.09197998046886,62.32941055297862],[174.0505828857423,62.08871078491222],[174.2377777099609,62.07927703857433],[174.3608856201173,61.96419143676769],[174.4244842529297,61.8234977722168],[174.41250610351585,61.84791564941417],[174.3671875000001,61.83906555175787],[174.35833740234398,61.81874847412121],[174.3041687011721,61.802082061767514],[174.09375,61.82916641235346],[173.9937438964845,61.697917938232536],[173.81614685058605,61.67239761352539],[173.48802185058616,61.72656250000006],[173.45625305175793,61.529167175293026]]]]},"properties":{"ID_0":188,"ISO":"RU-KAM","NAME_0":"Russia","ID_1":24,"NAME_1":"Kamchatka","TYPE_1":"Kray","ENGTYPE_1":"Territory","NL_NAME_1":"Камчатская край","VARNAME_1":"Kamçatka|Kamchatskaya Kray"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.879692077636776,43.74985122680664],[42.852779388427905,43.66554260253917],[42.58576202392583,43.53892517089855],[42.52280807495134,43.35943984985357],[42.5501785278322,43.18489837646495],[42.42613220214872,43.25395965576183],[42.03869628906256,43.196899414062614],[41.5824890136721,43.23538208007818],[41.42025756835931,43.353103637695426],[41.331726074219034,43.3341064453125],[40.94899368286161,43.42214584350585],[40.716171264648665,43.53089141845714],[40.72377014160162,43.73083114624029],[40.81906509399437,43.911350250244084],[40.95235061645508,43.976524353027344],[41.021636962890796,44.117282867431754],[41.37881851196289,44.04711532592785],[41.555599212646655,43.946731567382756],[41.724147796631144,44.055446624755916],[41.81263732910173,44.24794387817394],[41.69935226440458,44.349838256835994],[41.86980056762701,44.44123840332036],[42.03064346313504,44.46559906005865],[42.1906051635745,44.322475433349666],[42.45710754394548,44.30070877075201],[42.61590576171881,44.144016265869254],[42.45737075805658,44.04720306396496],[42.57834243774431,43.914531707763786],[42.7333412170413,43.96999359130854],[42.879692077636776,43.74985122680664]]]},"properties":{"ID_0":188,"ISO":"RU-KC","NAME_0":"Russia","ID_1":25,"NAME_1":"Karachay-Cherkess","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Карачаево-Черкессия Респуб","VARNAME_1":"Karaçay-Çerkes|Karachay-Cherkessiya|Karachayevo-Cherkesskaya Respublika|Karachayevo-Cherkessiya|Karachayevo-Cherkess Republic|K"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[32.82707977294916,66.58953094482428],[32.83206939697283,66.58930969238303],[33.1395835876466,66.55000305175781],[33.47499847412104,66.44791412353533],[33.94374847412132,66.22291564941412],[34.10416793823259,66.22916412353516],[34.53489303588873,66.0703125],[34.829685211181754,65.88593292236334],[34.76406478881847,65.5255203247072],[34.43125152587896,65.37916564941418],[34.789585113525675,65.07499694824213],[34.784893035888835,64.98176574707031],[34.950519561767635,64.83073425292969],[34.829685211181754,64.69426727294933],[34.9953155517581,64.61510467529308],[34.78749847412109,64.535415649414],[35.14843750000006,64.3526000976563],[35.431251525878956,64.28958129882812],[35.61510086059599,64.37968444824224],[36.211978912353686,64.1432342529298],[36.25260162353521,64.00676727294928],[36.60692596435547,63.94583511352544],[36.66337966918974,63.78011322021484],[36.408535003662166,63.61830902099621],[35.968528747558594,63.629680633545036],[36.25407791137724,63.45004653930664],[36.46160888671881,63.24965667724604],[36.32391357421881,63.13858413696289],[36.35142135620134,63.02538299560546],[36.65991210937517,62.82378768920905],[37.10525512695307,62.69918060302746],[37.38840484619146,62.7218971252442],[37.60175704956077,62.62226104736334],[37.61561965942383,62.451484680175774],[37.477806091308764,62.294448852539176],[37.70195388793957,62.2538070678712],[37.949947357177905,62.01363754272461],[37.798164367676065,61.69045257568359],[37.788364410400504,61.55044174194341],[37.39406585693376,61.523868560791016],[37.073902130127124,61.63053894042969],[36.883815765380916,61.5478973388673],[36.625110626220874,61.560272216796996],[36.46399307250982,61.414272308349716],[35.67248916625982,61.2005271911621],[35.488349914551065,61.16920852661144],[34.760131835937784,61.346153259277344],[34.50651168823265,61.24718093872082],[33.774394989013835,61.27626800537121],[33.47145843505865,61.19637298583996],[33.65436935424816,61.098407745361435],[33.90227508544939,61.10258483886719],[33.75271606445307,60.94764709472667],[33.44225692749052,61.01191711425792],[33.15790557861333,60.834022521972656],[32.78500366210943,60.646476745605575],[32.63402557373075,60.65151214599609],[30.56567192077631,61.0440444946289],[29.63990211486845,61.188323974609425],[29.3215980529788,61.33584976196295],[29.74727439880388,61.572395324707024],[29.867900848388786,61.6846389770509],[31.22984313964855,62.50706100463867],[31.576831817627006,62.91416168212885],[31.25856018066412,63.135631561279354],[31.219272613525334,63.23161697387707],[30.76457023620634,63.409950256347656],[30.505151748657397,63.46186447143549],[29.980951309204382,63.7544784545899],[30.23981857299833,63.818267822265625],[30.526166915893835,64.04908752441406],[30.484960556030554,64.25491333007818],[30.05300903320324,64.40425109863281],[30.021638870239425,64.59301757812494],[30.142986297607592,64.65275573730469],[30.045656204223803,64.79216766357422],[29.750923156738452,64.7896194458009],[29.642059326171875,64.87545013427746],[29.62568855285644,65.05992126464838],[29.826911926269588,65.13829803466807],[29.657688140869425,65.22774505615246],[29.76857948303228,65.33409881591803],[29.73441314697288,65.62790679931652],[30.127777099609485,65.7349090576173],[29.91757392883323,66.12783050537121],[29.669851303100582,66.29195404052757],[29.414360046386943,66.5865631103515],[30.67318725585943,66.64738464355479],[31.356845855712887,66.65115356445318],[31.576398849487475,66.62628936767578],[31.84942436218284,66.38124084472662],[32.28549575805681,66.37529754638672],[32.57421875,66.6021118164063],[32.82707977294916,66.58953094482428]]]},"properties":{"ID_0":188,"ISO":"RU-KR","NAME_0":"Russia","ID_1":26,"NAME_1":"Karelia","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Карелия","VARNAME_1":"Karelian A.S.S.R.|Karelo-Finnish A.S.S.R.|Karel'skaya A.S.S.R.|Olonets|Olonetskaya G.|Kareliya|Republic of Karelia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[88.63609313964838,55.424762725830135],[88.47492980957048,55.32056427001959],[88.54938507080082,55.00392913818364],[88.76470947265625,54.830486297607536],[88.56365203857438,54.6055145263673],[88.59268188476568,54.284729003906364],[88.85182952880876,54.39815139770508],[88.96807861328148,54.29299545288097],[89.16335296630865,54.31891250610357],[89.20265960693365,54.17336654663091],[89.06389617919933,54.07958221435547],[89.22389221191435,53.77229309082031],[89.0293655395509,53.74450683593756],[88.812515258789,53.54714584350586],[88.8758850097658,53.36524963378906],[89.04720306396489,53.14149093627935],[88.91085052490257,53.03250122070318],[89.1927337646485,52.844070434570426],[89.0165557861331,52.65746688842784],[89.073257446289,52.576503753662166],[88.9203186035158,52.45994186401367],[88.71832275390642,52.38965988159191],[88.70009613037132,52.27518081665045],[88.42230987548845,52.18346405029297],[88.39932250976568,52.416522979736385],[88.16598510742188,52.41110229492199],[87.91730499267582,52.54662704467785],[87.63422393798828,52.42935180664068],[87.32029724121098,52.50825500488281],[87.11547851562504,52.59727096557617],[86.98973846435553,52.69161605834972],[86.94689941406278,52.85101318359374],[87.0079727172851,53.006771087646484],[86.69823455810564,53.16136169433593],[86.90414428710943,53.469635009765675],[86.51421356201172,53.49926376342773],[86.35601806640653,53.63528823852545],[86.27109527587896,53.79481506347656],[86.10982513427751,53.96074676513671],[85.81012725830107,54.06702423095709],[85.51696014404325,54.210613250732536],[85.39015197753918,54.19636535644537],[85.19017791748053,54.396636962890675],[85.08579254150408,54.40634155273443],[84.97405242919926,54.56602096557617],[84.95416259765642,54.74328613281249],[85.07901000976568,54.80011367797857],[84.87792968750006,54.985649108886825],[84.93022155761741,55.109279632568416],[84.819107055664,55.52210617065441],[84.65991210937506,55.64578247070324],[84.45922088623064,56.020111083984375],[84.7416458129884,56.12246322631841],[84.95735931396513,56.127262115478565],[85.25888824462919,56.19990539550775],[85.52743530273466,56.209197998046925],[85.88780212402361,56.43204879760747],[86.15843200683605,56.50875854492187],[86.19337463378923,56.615814208984425],[86.42799377441423,56.55036926269537],[86.60897827148455,56.614051818847656],[86.81172180175797,56.53054809570318],[87.14412689209013,56.56436920166027],[87.17589569091803,56.64091110229498],[87.57796478271489,56.644756317138786],[87.62561035156267,56.52936172485363],[88.61354064941435,56.87193679809582],[88.67256164550798,56.6429557800293],[88.61518859863287,56.50189971923828],[88.71897888183616,56.35764694213873],[88.93104553222662,56.29353332519542],[89.22174835205101,56.127666473388786],[89.247367858887,56.015018463134766],[89.42308807373064,55.78010940551763],[89.1933212280274,55.68408966064458],[88.96105194091825,55.653461456298885],[88.63609313964838,55.424762725830135]]]},"properties":{"ID_0":188,"ISO":"RU-KEM","NAME_0":"Russia","ID_1":27,"NAME_1":"Kemerovo","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Кемеровская область","VARNAME_1":"Kemerovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[137.17056274414062,55.11861038208008],[137.0631103515626,54.91636657714849],[136.68212890625023,54.95003509521479],[137.01423645019577,55.10614776611334],[137.17056274414062,55.11861038208008]]],[[[137.6446228027345,55.18729782104498],[137.96751403808616,55.07106018066412],[138.21623229980491,55.03453826904296],[137.99740600585938,54.92007827758794],[138.00666809082043,54.7963905334472],[137.6661529541018,54.64233779907226],[137.4899444580079,54.86196136474609],[137.30467224121116,54.90751266479497],[137.6446228027345,55.18729782104498]]],[[[144.7891845703125,62.04123306274425],[145.03810119628918,62.05521011352539],[145.49168395996105,61.91955566406255],[145.8313903808595,62.00483703613287],[146.2452850341798,61.90600967407238],[146.6898651123048,61.57832717895519],[146.67080688476574,61.46073532104492],[146.85098266601585,61.17520523071289],[146.73918151855491,60.93827819824224],[146.53398132324241,60.898174285888786],[146.53338623046886,60.663650512695426],[146.22708129882835,60.74336242675792],[145.72608947753918,60.558345794677734],[145.59918212890648,60.443355560302734],[145.7098846435548,60.29384613037103],[145.93698120117207,60.18375015258789],[146.47117614746094,60.226314544677784],[146.57278442382844,60.11857223510748],[146.77308654785156,60.095939636230526],[146.74647521972702,59.991527557373104],[147.0269775390625,59.95043563842768],[147.2309875488282,59.86794662475592],[147.2790985107422,59.644779205322315],[147.19609069824227,59.416091918945256],[146.96276855468795,59.36966323852539],[146.44326782226574,59.46239471435559],[146.30999755859375,59.40077590942383],[146.30281066894554,59.27564239501958],[146.05004882812523,59.1417694091798],[145.82908630371105,59.24185562133783],[145.94766235351585,59.34790802001959],[145.57676696777375,59.42057418823236],[145.21592712402344,59.41049957275401],[144.9853515625,59.366943359375],[144.41180419921875,59.36914825439464],[144.02499389648435,59.40166854858409],[143.75207519531273,59.384304046630966],[143.48194885253903,59.31836700439459],[143.21083068847668,59.355484008789055],[142.42222595214844,59.18805694580084],[141.96166992187523,58.94499969482422],[141.6816558837893,58.68157958984375],[141.31611633300793,58.50611114501953],[141.0399932861328,58.44222259521484],[140.77290344238293,58.30030822753906],[140.5529785156251,58.002971649170036],[140.4903106689453,57.8421630859375],[140.29888916015634,57.758609771728565],[139.99278259277355,57.6972236633302],[139.7907562255864,57.48385238647455],[139.61111450195312,57.46361160278332],[139.4138946533203,57.30027770996093],[139.1872253417971,57.272220611572315],[138.94166564941418,57.14527893066412],[138.90365600585983,57.03046035766596],[138.61000061035156,56.95444488525402],[138.56500244140625,56.85194396972662],[138.30166625976582,56.703609466552734],[138.10934448242188,56.531635284423885],[138.0450134277345,56.379520416259766],[137.91744995117188,56.364879608154354],[137.71716308593784,56.13327026367193],[137.5875854492192,56.11647796630865],[136.800003051758,55.69499969482433],[136.4199981689453,55.56750106811535],[136.13389587402344,55.288333892822266],[135.6989746093751,55.11390304565435],[135.5206756591797,55.08238601684576],[135.2324676513672,54.91275405883789],[135.26055908203148,54.737220764160156],[135.94389343261753,54.566112518310604],[136.19447326660168,54.611709594726555],[136.51374816894577,54.587238311767635],[136.81460571289097,54.63405990600597],[136.87644958496094,54.57514572143549],[136.75848388671875,54.42689132690441],[136.8079833984375,54.23505783081049],[136.7835845947268,54.06275177001953],[136.6941375732423,54.00851440429698],[136.71372985839844,53.791427612304744],[137.195556640625,53.848056793212834],[137.1160583496096,54.16641235351568],[137.41871643066406,54.29878616333008],[137.6288299560548,54.240562438964844],[137.51959228515625,54.14207458496088],[137.33343505859375,54.12650299072265],[137.6677703857422,53.87055587768549],[137.49833679199227,53.67194366455078],[137.32888793945332,53.658332824707145],[137.31500244140648,53.532501220703125],[137.95111083984398,53.58111190795904],[138.30389404296875,53.73249816894537],[138.36889648437534,53.90027618408203],[138.5827789306643,53.9941673278808],[138.56944274902355,53.801666259765625],[138.41221618652344,53.690834045410156],[138.54556274414062,53.57694625854498],[138.6612548828125,53.70897293090832],[138.7694091796876,53.98076248168957],[138.7273864746096,54.30678558349615],[139.167205810547,54.187648773193416],[139.31861877441406,54.17698669433588],[139.7842254638674,54.291496276855526],[139.7911071777346,54.202499389648544],[140.1999969482422,54.054244995117244],[140.32888793945347,53.95583343505865],[140.25332641601574,53.87361145019537],[140.55055236816406,53.64444351196295],[140.94265747070324,53.497028350830135],[140.91444396972688,53.425556182861435],[141.19277954101562,53.31666564941412],[141.41722106933628,53.29555511474621],[141.44332885742196,53.165000915527344],[141.14683532714866,52.9913215637207],[140.9602050781251,52.93447494506836],[141.20069885253906,52.842956542968864],[141.26568603515648,52.589321136474666],[141.1167755126953,52.41049194335943],[141.2570953369143,52.29427337646484],[141.51451110839844,52.160449981689446],[141.3492889404298,52.09953689575207],[141.4218750000002,51.9531974792481],[141.16944885253918,51.828334808349716],[141.11666870117188,51.69027709960943],[140.96389770507812,51.66584014892583],[140.89935302734386,51.52378463745117],[140.77667236328136,51.46749877929693],[140.81648254394554,51.34603881835949],[140.67132568359395,51.32689285278332],[140.67764282226585,51.032936096191406],[140.49833679199241,50.867778778076286],[140.41722106933594,50.55472183227545],[140.49888610839844,50.3683319091798],[140.50270080566406,50.16624450683594],[140.66004943847656,50.06153488159191],[140.48480224609386,49.99616241455084],[140.3986816406251,49.87609100341808],[140.5249786376953,49.78890228271496],[140.5473175048828,49.564929962158196],[140.3357543945316,49.24975967407232],[140.309783935547,49.05037307739258],[140.36169433593784,48.91996765136719],[140.2373504638672,48.844894409179744],[140.17561340332054,48.674507141113274],[140.16651916503915,48.44145965576172],[139.72186279296886,48.16300201416021],[139.53611755371116,47.970001220703175],[139.2648162841797,47.8023567199707],[139.05857849121105,47.47712326049815],[139.05241394042991,47.407417297363224],[138.82380676269565,47.490905761718864],[138.60337829589864,47.48934936523443],[138.57850646972668,47.73806762695318],[138.767578125,47.80463027954096],[138.72039794921886,47.95895767211914],[138.58058166503918,48.03955459594738],[138.58978271484372,48.17860031127941],[138.48487854003906,48.28310394287109],[138.44400024414074,48.421226501464844],[138.28770446777344,48.45293807983392],[138.19029235839866,48.33787536621093],[137.91868591308616,48.287399291992244],[137.76478576660168,48.20084762573242],[137.4733886718751,48.20036315917969],[137.3304901123048,48.10557937622082],[137.4067840576173,47.99816513061534],[137.56549072265636,47.948513031005916],[137.60208129882858,47.79789733886718],[137.77598571777355,47.714237213134766],[137.93728637695312,47.731891632080135],[138.04768371582043,47.673473358154354],[138.08328247070335,47.50371170043945],[137.80319213867188,47.34129333496094],[137.70088195800827,47.36641693115229],[137.41578674316418,47.210868835449276],[137.0752868652345,47.32038116455084],[136.9368896484375,47.10337829589855],[136.99188232421898,47.02225875854492],[136.6004028320316,46.815731048583984],[136.33387756347702,46.78522109985357],[136.05058288574241,46.88576507568353],[135.84500122070335,46.85574340820318],[135.72689819335938,46.98005676269537],[135.56127929687534,46.99735641479498],[135.3628845214845,47.09747314453119],[135.32698059082054,47.19422149658203],[135.09017944335938,47.22860717773443],[134.98847961425793,47.1484107971192],[134.69039916992188,47.14265060424805],[134.6068878173828,46.97251129150402],[134.50569152832077,46.91486740112305],[134.50230407714855,46.762664794921925],[134.419189453125,46.712619781494254],[134.0178985595703,46.66371536254883],[134.02073669433594,46.82228088378906],[134.1345825195316,47.087821960449276],[134.22261047363304,47.180702209472656],[134.1490936279297,47.259510040283146],[134.33404541015636,47.43637084960949],[134.4935302734376,47.44380950927746],[134.6698455810547,47.58382415771495],[134.7715606689455,47.753459930420036],[134.5888671875001,47.906829833984375],[134.55055236816418,48.02439880371105],[134.67109680175793,48.16424179077154],[134.57540893554688,48.36321640014654],[134.29315185546898,48.373844146728516],[134.5171813964845,48.47882461547863],[134.7577819824221,48.43090820312494],[134.89059448242233,48.59363937377941],[134.51039123535153,48.63659286499034],[134.31478881835938,48.747222900390675],[134.16358947753906,48.64513015747076],[133.73208618164074,48.69158172607433],[133.40159606933628,48.7902069091798],[133.23858642578148,48.904422760009766],[133.14349365234386,49.18630981445318],[132.78678894043014,49.24151229858404],[132.73899841308594,49.32287597656255],[132.3872070312501,49.319740295410156],[132.37709045410202,49.41337203979498],[132.14900207519543,49.48933029174815],[132.04080200195335,49.45930099487305],[131.97270202636741,49.29559707641596],[131.75328063964844,49.34252548217768],[131.48107910156284,49.22642135620117],[131.38809204101585,49.25324630737315],[131.50968933105503,49.39023590087896],[131.50778198242222,49.567287445068416],[131.40278625488304,49.68471908569336],[131.51918029785168,49.762130737304744],[131.54049682617207,49.91241455078131],[131.49989318847702,50.17013931274414],[131.41798400878903,50.275722503662166],[130.93379211425827,50.463752746581974],[131.0315856933596,50.53677749633789],[130.94468688964855,50.67526245117199],[130.7168884277345,50.64296722412115],[130.8619842529297,50.8556175231933],[130.80239868164074,50.94845581054687],[130.9795837402345,51.01060104370123],[131.1119842529298,51.22765350341791],[131.26528930664108,51.25768661499017],[131.52368164062523,51.427497863769645],[131.4364776611328,51.56513977050787],[131.61479187011753,51.654121398925895],[132.3188018798828,51.79405975341802],[132.41049194335938,51.9391708374024],[132.8507843017578,52.16740036010748],[133.1866912841797,52.154430389404354],[133.3931884765626,52.29118728637701],[133.24148559570335,52.39976882934582],[133.27598571777366,52.66621017456066],[134.06338500976574,52.465103149414176],[134.582000732422,52.422275543213004],[134.5650024414067,52.53502655029302],[134.69229125976597,52.631057739257926],[134.6083984375,52.70032119750982],[134.58657836914074,52.88136672973644],[134.8230895996095,53.089889526367244],[134.8506774902346,53.22724914550787],[134.6906890869143,53.50512695312505],[134.44749450683616,53.567501068115234],[133.98667907714866,53.429813385009766],[133.67819213867188,53.457622528076115],[133.60089111328134,53.522151947021484],[133.31738281250023,53.476470947265625],[133.1331787109376,53.40508651733404],[133.14920043945324,53.31416702270519],[132.88908386230503,53.226699829101676],[132.08277893066452,53.198387145996094],[131.96589660644543,53.11613464355468],[131.57608032226562,53.357215881347656],[131.5006866455078,53.541282653808594],[131.33438110351574,53.79345321655284],[131.05589294433594,53.82456588745128],[130.91769409179688,53.78427505493169],[130.62428283691418,53.907501220703125],[130.50178527832077,54.01217651367182],[130.56108093261741,54.1769752502442],[130.73928833007824,54.28641891479492],[131.06558227539085,54.3253059387207],[131.23908996582028,54.559474945068466],[131.24078369140625,54.649513244628956],[131.81250000000023,54.848247528076286],[132.0453796386721,54.96763610839844],[132.0863952636721,55.04153060913085],[132.35009765624997,55.080066680908196],[132.40158081054688,55.2133407592774],[132.59730529785156,55.24185562133795],[132.72399902343773,55.37878036499029],[132.54748535156284,55.722637176513665],[132.34799194335938,55.753612518310604],[132.13868713378918,55.699752807617294],[131.7776794433597,55.6750831604005],[131.10748291015625,55.66984939575201],[130.986083984375,55.70123672485346],[130.8927917480473,55.92188644409191],[130.97528076171875,56.07484054565441],[131.15708923339866,56.253910064697315],[131.18190002441418,56.42901611328124],[131.3436889648442,56.51300048828131],[131.66448974609398,56.46417999267584],[131.71849060058605,56.701633453369084],[131.87678527832077,56.79666519165038],[131.51377868652355,57.101776123046875],[131.26419067382824,57.18524551391607],[131.33238220214866,57.33642578125006],[131.5359802246095,57.271705627441406],[131.8265838623048,57.58051681518567],[132.13018798828125,57.72707366943371],[131.81988525390625,57.90299224853511],[131.56410217285156,58.11107635498041],[131.72747802734386,58.219184875488395],[132.047607421875,58.071956634521534],[132.25508117675815,58.28460693359386],[132.19108581542991,58.528465270996094],[132.4439849853518,58.51203155517578],[132.5741882324222,58.64247512817388],[132.52168273925793,58.71313476562506],[132.6248779296875,58.88606262207031],[132.8497772216798,58.91018676757818],[132.86097717285202,59.099540710449276],[133.05540466308628,59.182388305664176],[133.5457916259769,59.24996566772466],[133.6663818359375,59.2149772644043],[134.0105895996095,59.25363922119141],[134.25389099121116,59.188705444336044],[135.16148376464855,59.09138107299805],[135.66387939453136,59.48115539550781],[135.91470336914074,59.48477554321294],[136.12748718261741,59.39878463745128],[136.82278442382824,59.30403137207037],[137.0044860839846,59.39092636108404],[137.2187957763672,59.40946960449218],[137.49620056152366,59.5395774841308],[137.51788330078125,59.637962341308594],[137.68038940429685,59.72086334228526],[138.15298461914097,59.70113754272455],[138.32826232910168,59.90405654907238],[138.248779296875,59.954181671142635],[138.26638793945335,60.23191833496094],[138.41519165039074,60.369205474853565],[138.35198974609398,60.44456481933593],[138.54808044433605,60.674785614013786],[138.24227905273438,60.851806640625],[138.4760894775394,61.075447082519645],[138.7587890625,61.21399688720703],[139.3267822265625,61.4097557067871],[139.653076171875,61.47659683227544],[139.99676513671886,61.76369094848644],[140.00469970703125,61.932250976562436],[140.25547790527344,61.94152450561523],[140.39668273925793,62.316513061523494],[140.522186279297,62.4021110534669],[140.7242889404297,62.405094146728565],[140.96408081054688,62.49354934692383],[141.144287109375,62.38124847412103],[141.35148620605491,62.39833831787115],[141.59268188476574,62.16811370849616],[141.96388244628906,61.984481811523544],[142.26399230957054,62.046943664550774],[142.32737731933605,61.92353057861328],[142.5884704589845,61.878730773925774],[142.7166748046876,61.94748687744152],[142.96658325195312,61.91350173950195],[143.21287536621116,61.99581527709972],[143.64886474609375,61.94380187988286],[144.00308227539085,61.95697402954101],[144.11349487304688,61.71961975097656],[144.59530639648438,61.83961486816406],[144.7891845703125,62.04123306274425]]]]},"properties":{"ID_0":188,"ISO":"RU-KHA","NAME_0":"Russia","ID_1":28,"NAME_1":"Khabarovsk","TYPE_1":"Kray","ENGTYPE_1":"Territory","NL_NAME_1":"Хабаровский край","VARNAME_1":"Khabarovskiy Kray"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[90.45197296142584,52.163402557373104],[90.17519378662108,52.113517761230526],[89.95777893066412,51.89212799072277],[90.06101989746122,51.74300384521496],[89.8809204101563,51.6950569152832],[89.6227493286134,51.51965332031261],[89.44203186035162,51.57472610473633],[89.16997528076188,51.53957366943365],[88.78808593750011,51.54139709472667],[88.69065093994158,51.508010864257926],[88.59608459472656,51.33659744262707],[88.40613555908209,51.29219818115239],[87.93568420410185,51.49143218994135],[88.11305236816435,51.72165679931634],[87.91613006591797,51.80930709838867],[88.05386352539068,52.035678863525504],[88.27487945556658,52.069774627685604],[88.42230987548845,52.18346405029297],[88.70009613037132,52.27518081665045],[88.71832275390642,52.38965988159191],[88.9203186035158,52.45994186401367],[89.073257446289,52.576503753662166],[89.0165557861331,52.65746688842784],[89.1927337646485,52.844070434570426],[88.91085052490257,53.03250122070318],[89.04720306396489,53.14149093627935],[88.8758850097658,53.36524963378906],[88.812515258789,53.54714584350586],[89.0293655395509,53.74450683593756],[89.22389221191435,53.77229309082031],[89.06389617919933,54.07958221435547],[89.20265960693365,54.17336654663091],[89.16335296630865,54.31891250610357],[88.96807861328148,54.29299545288097],[88.85182952880876,54.39815139770508],[88.59268188476568,54.284729003906364],[88.56365203857438,54.6055145263673],[88.76470947265625,54.830486297607536],[88.54938507080082,55.00392913818364],[88.47492980957048,55.32056427001959],[88.63609313964838,55.424762725830135],[88.9501571655274,55.28911590576183],[88.96607971191423,55.184829711914006],[89.20083618164074,54.99044799804698],[89.54999542236334,55.046417236328125],[89.65784454345714,55.003131866455185],[89.9039916992188,55.08612823486334],[90.12921142578124,55.10525131225586],[90.43556213378912,55.0163955688476],[90.45833587646513,54.87079620361334],[90.91528320312523,54.79112625122075],[90.85501098632835,54.62679672241222],[91.15901184082037,54.48793411254894],[91.20953369140624,54.33827590942383],[91.4639129638673,54.05661773681634],[91.46513366699217,53.96609115600597],[91.32659149169916,53.81670761108404],[91.46974945068382,53.51394653320324],[91.74404907226568,53.446750640869084],[91.84126281738281,53.288341522216854],[91.65988159179693,53.15853500366222],[91.35114288330105,53.07753753662121],[91.39631652832053,52.86803054809582],[91.24193572998064,52.747539520263665],[91.03803253173845,52.66026306152338],[90.70031738281256,52.45823669433605],[90.45197296142584,52.163402557373104]]]},"properties":{"ID_0":188,"ISO":"RU-KK","NAME_0":"Russia","ID_1":29,"NAME_1":"Khakass","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Хакасия","VARNAME_1":"Khakassiya|Republic of Khakasia|Khakasskaya A.Obl.|Respublika Khakasiya|Republic of Khakasia"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[84.51454162597673,62.178100585937614],[84.51338195800798,61.98855209350591],[84.76437377929705,61.78865814208984],[85.40196990966807,61.68707656860345],[85.65457916259764,61.57683563232427],[85.91587829589844,61.54807281494151],[85.96430969238298,61.46842193603515],[85.65365600585943,61.39339828491212],[85.66175842285168,61.259265899658196],[84.56581878662126,60.95654296875005],[84.25296020507841,60.84401702880865],[83.94595336914078,60.83458328247076],[83.51782989501976,61.01337432861333],[83.19619750976562,61.00160598754882],[82.66909027099638,60.81636047363286],[82.41777801513688,60.69557189941406],[82.40245819091824,60.594604492187614],[82.15301513671868,60.50709152221685],[81.86383819580088,60.62518310546875],[81.47624206542997,60.60364532470703],[81.08193969726568,60.623523712158146],[81.0470581054688,60.733203887939396],[80.7252197265625,60.78895187377929],[80.16073608398466,60.6697731018067],[79.30303192138683,60.65766143798834],[79.24720764160173,60.790107727050895],[79.0121383666995,60.810642242431584],[78.87512207031256,60.74225234985357],[78.11224365234402,60.789642333984425],[77.05595397949247,60.789646148681754],[77.00238037109402,60.63495635986333],[77.0729522705081,60.53934097290044],[76.85919189453142,60.451816558838004],[76.86650848388678,60.22253799438482],[76.7211837768557,60.075912475585994],[76.76520538330084,59.97362899780279],[76.67018127441423,59.56427764892572],[76.17201232910156,59.52049636840832],[75.9382934570312,59.40827178955073],[75.82642364501959,59.28072738647472],[75.61545562744146,59.18246459960937],[75.67737579345696,58.94572830200201],[75.17931365966825,58.69867324829101],[75.14245605468756,58.649211883545036],[75.0425262451174,58.692779541015746],[74.12824249267594,58.7019538879395],[73.94738769531261,58.80373382568364],[73.62119293212918,58.845943450927734],[73.3410186767581,58.78667068481451],[72.96459960937499,58.85503768920893],[73.0994644165039,58.93502426147461],[72.65431976318365,59.09904098510742],[72.43045806884794,59.22414779663086],[72.43894195556639,59.299526214599666],[72.08049774169916,59.52090454101568],[71.87573242187506,59.53379440307622],[71.37345123291033,59.74011993408214],[71.19132232666033,59.842372894287166],[70.58908843994169,59.805034637451286],[70.1400146484375,59.93311691284179],[69.8055038452149,59.86115646362298],[69.55787658691423,59.9556884765625],[69.28900909423851,59.928524017333984],[69.40258026123041,59.762123107910156],[68.8736724853515,59.54337692260753],[68.61192321777372,59.54422378540039],[68.55377960205107,59.372577667236385],[68.42404937744169,59.2474479675293],[68.08787536621111,59.181385040283146],[67.76731109619146,59.156227111816456],[67.63455963134771,59.047012329101506],[67.16636657714872,58.91539764404291],[67.03288269042963,58.97479248046875],[66.8222045898438,58.88482666015631],[66.82949829101568,58.65853500366223],[66.30706024169945,58.57269287109375],[65.97730255126982,58.56711959838873],[65.93867492675798,58.658050537109496],[65.72942352294939,58.697231292724666],[65.53964233398455,58.807826995849666],[65.24851226806669,59.25699615478526],[65.10372924804693,59.3437118530274],[64.73514556884781,59.34940719604503],[64.47284698486322,59.40605545043956],[64.03922271728538,59.43696594238287],[63.850833892822266,59.577541351318295],[63.85338973999052,59.85419464111322],[63.70489883422851,60.14952850341797],[63.259773254394474,60.24101257324213],[63.29136276245134,60.39742279052729],[63.030693054199155,60.60691833496099],[62.83428192138688,60.88654708862299],[62.89553070068359,61.07318115234369],[62.7186660766601,61.203243255615234],[61.079917907714844,61.70253753662114],[60.42481613159197,61.74943161010736],[60.06925964355491,61.713531494140625],[59.99021530151373,61.85849380493175],[59.82992172241228,61.917572021484325],[59.46472549438499,61.94725036621099],[59.48659896850603,62.2665901184082],[59.635009765625284,62.30644989013683],[59.63179779052728,62.42625808715826],[59.44837570190458,62.52738952636719],[59.36959838867187,62.698715209960994],[59.45875549316435,62.87209320068365],[59.234298706054794,62.97947311401379],[59.31908416748052,63.07805633544921],[59.53832626342779,63.82649612426769],[59.59903335571294,63.9174041748048],[59.897018432617244,64.0745239257813],[59.63972854614252,64.1934585571289],[59.66353225708036,64.38232421875006],[59.49647903442377,64.50531005859375],[59.67739486694359,64.66396331787104],[59.63939666748075,64.80116271972656],[60.03932952880865,64.9315032958985],[60.19203186035173,65.07189941406261],[60.41604614257818,65.04507446289062],[60.59800338745134,64.9036026000977],[61.07863616943383,65.07667541503918],[61.37372970581072,65.23384094238293],[61.387157440185604,65.40412902832036],[61.625907897949496,65.553955078125],[62.06253051757807,65.7015686035158],[62.30106735229509,65.60311889648449],[62.45777511596708,65.40213012695312],[62.87464523315429,65.2905502319336],[62.81833267211931,64.98221588134771],[62.74229812622076,64.90599060058605],[62.87424087524431,64.7725677490235],[62.561855316162166,64.60882568359386],[62.88588714599638,64.4736328125],[63.067581176757805,64.51388549804688],[63.434528350830355,64.44148254394537],[63.508247375488565,64.32085418701172],[63.68376541137701,64.25371551513672],[64.10195922851568,64.3547744750976],[64.4892120361331,64.35369873046875],[65.55883026123075,64.4949111938477],[66.17908477783209,64.5268020629884],[66.40273284912126,64.44991302490246],[66.73339843750028,64.50668334960943],[66.95699310302751,64.41297149658203],[66.83994293212896,64.25575256347668],[66.97481536865257,64.15877532958984],[67.28074645996098,64.05672454833984],[67.66862487792986,64.06930541992188],[67.80738830566412,64.02831268310547],[68.51328277587913,64.27231597900396],[68.9477767944338,64.16963958740234],[69.04702758789074,64.31826019287115],[69.34092712402372,64.41421508789068],[69.46727752685564,64.35311889648438],[69.83003997802751,64.3594589233399],[69.87749481201183,64.30187225341803],[70.33610534667974,64.3324966430664],[70.75384521484398,64.1821517944337],[70.81331634521483,64.08845520019537],[70.65180969238303,64.00510406494146],[70.98557281494146,63.682006835937614],[71.35946655273465,63.688201904296875],[71.55718231201172,63.56864929199225],[71.56651306152344,63.410808563232415],[71.67887878417974,63.196769714355526],[72.2196655273438,63.295429229736385],[72.74829864501969,63.29071044921874],[72.93383789062494,63.4105224609375],[73.15238952636747,63.41143035888672],[73.42466735839844,63.20652770996105],[74.25740051269531,63.16174697875982],[74.53107452392595,63.03267669677734],[75.0422439575197,63.04962921142578],[75.79931640625,63.121200561523494],[76.4052734375,62.970607757568416],[76.74124908447294,63.03769302368164],[77.04341125488276,62.96817016601562],[77.15322113037138,62.84365081787109],[77.38918304443388,62.72827911376959],[77.83757019042974,62.56728744506847],[78.17890167236345,62.5573501586914],[78.79982757568365,62.60879898071294],[78.99143981933592,62.58255004882818],[79.83836364746115,62.58890533447277],[79.92871856689453,62.79586791992199],[80.22909545898455,62.845100402832145],[80.64023590087919,63.01207351684581],[80.6514282226563,63.08463287353527],[80.98886871337913,63.13390731811529],[81.33756256103543,62.918346405029354],[81.30226135253912,62.86458587646484],[81.75702667236338,62.710811614990234],[81.93137359619135,62.695571899414006],[82.12830352783209,62.82230377197271],[82.31701660156278,62.76225662231445],[82.79174041748074,62.75681686401373],[82.7977371215822,62.64584350585938],[83.07604217529297,62.60532760620117],[83.1026916503908,62.53255844116222],[83.4541778564456,62.45714187622075],[83.60777282714861,62.53034210205084],[83.924057006836,62.51715087890631],[84.11017608642595,62.375648498535206],[84.51454162597673,62.178100585937614]]]},"properties":{"ID_0":188,"ISO":"RU-KHM","NAME_0":"Russia","ID_1":30,"NAME_1":"Khanty-Mansiy","TYPE_1":"Avtonomnyy Okrug","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"Ханты-Мансийский АОк","VARNAME_1":"Khanty-Mansiysk|Khanty-Mansiyskiy A.Okr.|Khanty-Mansiyskiy A.Okr.-Yugra|Khanty-Mansiyskiy Aok"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.33232879638689,60.85586166381836],[48.516113281250284,60.59507751464844],[48.48897171020519,60.49966812133794],[48.703708648681925,60.3397331237793],[48.422855377197266,60.17134857177746],[48.467201232910156,60.03899765014648],[48.46499633789091,59.721984863281364],[49.03496932983421,59.6729125976563],[49.008071899414006,59.535442352294915],[49.30345535278337,59.48501205444347],[49.564914703369084,59.393211364746094],[49.50257492065447,59.25886917114258],[49.80022811889677,59.2626571655274],[49.82114791870123,59.67205429077154],[50.033447265625114,59.70331192016607],[50.01744079589838,59.80228805541993],[50.70793914794922,59.90325927734374],[50.8439369201663,59.89749526977544],[51.09202194213873,60.089366912841854],[51.30699920654291,60.07248306274425],[51.5189628601077,59.95029830932617],[51.95584487915038,60.32520294189459],[52.285900115967074,60.26606750488281],[52.46321868896496,60.21602630615229],[53.34511947631853,60.14365386962897],[53.44427108764643,60.23085403442383],[53.65305328369157,60.06802749633795],[53.64973831176758,59.91240692138671],[53.55577087402361,59.709747314453175],[53.20914459228544,59.362506866455135],[53.34154129028326,59.18701171874994],[53.831005096435604,59.07246398925786],[53.743618011474666,59.00772094726556],[53.89552688598644,58.78835296630871],[53.7239723205567,58.702011108398445],[53.7747535705567,58.49010086059576],[53.38442230224638,58.41883087158209],[53.23191452026373,58.42437744140631],[53.1142158508303,58.543983459472706],[52.913887023926065,58.505149841308594],[52.84211349487316,58.40297698974615],[52.43425750732439,58.41974258422862],[52.190090179443416,58.474433898925724],[51.93144607543951,58.43129730224621],[51.669765472412166,58.17417907714856],[51.830421447753906,58.09310531616211],[51.92417526245117,57.746833801269524],[51.74322128295921,57.55364608764643],[51.523078918457145,57.451843261718864],[51.215572357177905,57.42981338500987],[51.11273574829096,57.29515075683594],[51.42948913574218,56.91449356079096],[51.52225494384788,56.877201080322315],[51.36336898803728,56.67270278930664],[51.165126800537394,56.65804290771496],[51.15329742431658,56.51069259643565],[51.33086013793951,56.37228012084961],[51.426757812500114,56.146137237548885],[51.32423019409191,56.09873199462896],[51.03194427490246,56.17633819580084],[50.91780853271507,56.28524780273443],[50.69608306884782,56.380413055420036],[50.57884979248052,56.54343032836919],[50.29765319824236,56.65757751464849],[50.07308959960966,56.66929626464855],[50.1399002075197,56.797241210937614],[50.0118865966798,56.89493560791027],[49.80406951904296,56.90103530883795],[49.76773834228527,57.06097412109381],[49.62610244751005,57.10309219360363],[49.37073516845709,57.04097747802739],[49.188396453857536,57.191642761230526],[48.97995376586931,57.10931777954107],[48.866508483887,57.17507171630864],[48.4762496948245,57.138401031494254],[48.28388214111345,57.172962188720696],[48.16909790039068,57.04462814331055],[47.93585586547846,57.00985717773443],[47.732067108154524,57.06726074218755],[47.45054626464861,56.89188766479497],[47.20400238037115,56.84808731079112],[47.12258529663103,56.9371070861817],[46.76093292236351,56.959270477295036],[46.8387985229495,57.21585083007818],[46.707847595214844,57.42402267456055],[46.83543777465826,57.527214050293075],[47.02562713623047,57.50749206542974],[47.54647445678734,57.62343215942394],[47.60154342651367,57.83774948120122],[47.7784423828125,57.94479370117187],[47.379295349121314,58.01665496826166],[46.474205017089844,58.05123901367187],[46.390293121338175,58.07998275756841],[46.48627090454095,58.235988616943416],[46.437873840332315,58.31327056884765],[46.609298706054915,58.54690170288091],[47.05137634277344,58.63337326049816],[47.02522659301786,58.70635604858405],[47.39876937866228,58.919643402099716],[47.63473129272461,58.940349578857415],[47.548454284668026,59.071048736572315],[47.328712463378906,59.15388870239269],[47.279872894287394,59.34151458740229],[47.06943130493169,59.35960006713868],[47.12318420410185,59.60858154296875],[47.10741424560564,59.74965667724621],[46.93797302246122,59.77157592773448],[47.042819976806754,60.154090881347656],[46.79274749755859,60.043579101562614],[46.41778564453131,60.1181526184082],[46.32950210571306,60.23822021484375],[46.800468444824496,60.27475738525402],[46.862567901611435,60.46040344238281],[47.069366455078175,60.592632293701115],[47.001819610595646,60.76008224487316],[47.071281433105526,60.86044311523443],[47.18703079223627,61.059253692627],[47.55131912231457,61.07292556762696],[47.947933197021484,60.995574951171875],[47.960479736328175,60.88802337646484],[48.33232879638689,60.85586166381836]]]},"properties":{"ID_0":188,"ISO":"RU-KIR","NAME_0":"Russia","ID_1":31,"NAME_1":"Kirov","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Кировская область","VARNAME_1":"Vyatka|Vyatskaya G.|Kirovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[65.48619842529308,68.40888214111328],[65.33327484130876,68.28456878662115],[65.38114929199236,67.97439575195312],[65.5746612548831,67.90645599365229],[66.07022094726591,67.94718170166021],[65.98181915283209,67.66757965087896],[66.13677978515653,67.45228576660168],[65.75045013427734,67.36220550537115],[65.58485412597673,67.26663208007817],[65.05420684814447,67.0696487426759],[65.11894226074224,66.90106964111338],[64.60217285156243,66.79056549072271],[64.28661346435553,66.6426239013673],[64.02467346191406,66.64322662353533],[63.80997085571307,66.5367813110351],[63.33848190307634,66.42150878906256],[63.01632690429693,66.1111450195313],[62.83475112915056,66.02202606201172],[62.77543258667009,65.85578918457036],[62.06253051757807,65.7015686035158],[61.625907897949496,65.553955078125],[61.387157440185604,65.40412902832036],[61.37372970581072,65.23384094238293],[61.07863616943383,65.07667541503918],[60.59800338745134,64.9036026000977],[60.41604614257818,65.04507446289062],[60.19203186035173,65.07189941406261],[60.03932952880865,64.9315032958985],[59.63939666748075,64.80116271972656],[59.67739486694359,64.66396331787104],[59.49647903442377,64.50531005859375],[59.66353225708036,64.38232421875006],[59.63972854614252,64.1934585571289],[59.897018432617244,64.0745239257813],[59.59903335571294,63.9174041748048],[59.53832626342779,63.82649612426769],[59.31908416748052,63.07805633544921],[59.234298706054794,62.97947311401379],[59.45875549316435,62.87209320068365],[59.36959838867187,62.698715209960994],[59.44837570190458,62.52738952636719],[59.63179779052728,62.42625808715826],[59.635009765625284,62.30644989013683],[59.48659896850603,62.2665901184082],[59.46472549438499,61.94725036621099],[59.357086181640675,61.81312561035162],[59.39514541626005,61.69829559326172],[58.84975051879883,61.51890563964855],[58.035297393799,61.50741577148444],[57.230220794677734,61.53449249267583],[57.11002349853521,61.5022583007813],[56.743568420410156,61.559963226318416],[56.45552062988298,61.459346771240234],[56.29581069946289,61.24907684326171],[55.90676498413108,61.29584884643566],[55.7725257873538,61.14268875122081],[55.31709671020502,61.158611297607415],[55.11632537841808,61.047557830810554],[54.98949813842779,60.90363311767572],[53.8814392089846,60.98693084716808],[53.82891845703142,60.8596305847169],[53.34232711792014,60.90008926391596],[53.435371398926065,61.053703308105575],[52.87033843994146,61.09071350097667],[52.78018569946289,60.96966934204112],[52.473438262939396,60.9816131591798],[52.34781265258795,60.85905838012707],[51.90845489501958,60.899967193603516],[51.767921447754134,60.61202621459966],[52.151748657226676,60.540481567382805],[52.34331512451172,60.454681396484375],[52.285900115967074,60.26606750488281],[51.95584487915038,60.32520294189459],[51.5189628601077,59.95029830932617],[51.30699920654291,60.07248306274425],[51.09202194213873,60.089366912841854],[50.8439369201663,59.89749526977544],[50.70793914794922,59.90325927734374],[50.01744079589838,59.80228805541993],[50.033447265625114,59.70331192016607],[49.82114791870123,59.67205429077154],[49.80022811889677,59.2626571655274],[49.50257492065447,59.25886917114258],[49.564914703369084,59.393211364746094],[49.30345535278337,59.48501205444347],[49.008071899414006,59.535442352294915],[49.03496932983421,59.6729125976563],[48.46499633789091,59.721984863281364],[48.467201232910156,60.03899765014648],[48.422855377197266,60.17134857177746],[48.703708648681925,60.3397331237793],[48.48897171020519,60.49966812133794],[48.516113281250284,60.59507751464844],[48.33232879638689,60.85586166381836],[48.37702941894554,60.99104690551769],[48.767967224121264,61.15018081665039],[49.24629974365229,61.17825317382824],[49.512962341308764,61.60953140258794],[49.047744750976506,61.6744384765625],[49.2367744445803,62.13655090332031],[49.30377578735363,62.14521408081048],[49.586017608642635,62.768997192382926],[48.72655868530296,62.83530426025396],[48.615917205810604,62.7297592163086],[48.33520126342802,62.7247695922851],[48.19384765625017,62.48085021972656],[48.27669906616205,62.32807159423828],[47.646427154541236,62.332454681396534],[47.595851898193416,62.215000152588],[47.37570953369169,62.217628479003906],[47.3485679626466,62.34627151489258],[47.1661796569827,62.345592498779354],[47.20144271850609,62.65849685668945],[47.031341552734375,62.88605499267583],[47.27066421508795,62.95552062988292],[47.544834136963004,63.124252319335994],[47.01892089843767,63.29414367675781],[46.853965759277344,63.46475601196289],[47.00653457641629,63.55571365356445],[46.971553802490234,63.69632339477539],[46.377632141113395,63.93101501464844],[45.838367462158374,63.99121093750011],[45.57086181640642,64.08305358886719],[45.42439270019548,64.22801971435553],[45.93482971191412,64.32754516601562],[46.36297988891607,64.2933731079101],[46.547283172607536,64.36637878417979],[47.80503463745134,64.39805603027355],[48.0927734375,64.37609863281261],[48.10803604126005,64.27368164062511],[48.39972305297846,64.24330139160162],[48.43403625488287,64.36026000976574],[48.81874847412115,64.36576080322271],[48.91572189331054,64.49666595458996],[49.400409698486385,64.47563934326178],[49.56064605712907,64.6098022460937],[50.264545440674,64.5242309570313],[50.430904388427734,64.85437774658203],[50.105716705322266,64.89699554443371],[49.702350616455305,65.20333862304699],[49.61527252197271,65.31998443603521],[49.053756713867415,65.27355957031244],[49.03289794921892,65.6469345092774],[48.977466583252124,65.79473114013678],[49.00090789794927,66.02429199218767],[48.93068695068359,66.10868072509771],[51.262855529785384,66.71501922607428],[51.554416656494425,66.77960968017578],[51.643352508544865,66.91107940673851],[52.16579818725603,67.0763626098634],[54.594753265381144,66.99330139160162],[55.97161865234391,66.97808074951178],[58.98286056518572,66.98661804199224],[60.20227813720714,66.98963928222656],[61.45497512817399,66.99696350097662],[62.94461059570318,67.40357971191412],[62.96840667724615,67.53881072998053],[63.13280105590849,67.67556762695318],[63.38210678100597,67.7717514038087],[63.740608215331974,67.80329895019531],[63.98976135253906,67.91629791259771],[63.93441009521479,68.02709197998053],[64.61116027832048,68.19655609130854],[64.58423614501947,68.33515167236334],[65.06198120117216,68.41088867187528],[65.48619842529308,68.40888214111328]]]},"properties":{"ID_0":188,"ISO":"RU-KO","NAME_0":"Russia","ID_1":32,"NAME_1":"Komi","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Коми","VARNAME_1":"Komi A.S.S.R.|Republic of Komi|Respublika Komi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.12318420410185,59.60858154296875],[47.06943130493169,59.35960006713868],[47.279872894287394,59.34151458740229],[47.328712463378906,59.15388870239269],[47.548454284668026,59.071048736572315],[47.63473129272461,58.940349578857415],[47.39876937866228,58.919643402099716],[47.02522659301786,58.70635604858405],[47.05137634277344,58.63337326049816],[46.609298706054915,58.54690170288091],[46.437873840332315,58.31327056884765],[46.48627090454095,58.235988616943416],[46.390293121338175,58.07998275756841],[45.86507034301775,58.044666290283196],[45.63156509399425,57.921977996826165],[45.466667175293246,58.033771514892585],[45.224075317382756,58.07514190673834],[44.88726806640642,58.066131591796875],[44.87721633911144,57.86728286743164],[44.7562332153322,57.69328689575195],[44.611461639404354,57.7028465270996],[44.38940811157232,57.51670074462902],[44.079048156738565,57.44083404541009],[43.72822952270519,57.44832992553722],[43.47077560424822,57.54584121704096],[42.88154983520519,57.39172363281256],[42.80692291259783,57.57382583618175],[42.68343353271513,57.63517379760748],[42.13410568237322,57.56983184814453],[41.81151580810547,57.692836761474716],[41.65153121948259,57.59570312499994],[41.60894775390625,57.468681335449155],[41.15713500976568,57.383441925048885],[40.49948120117193,57.2833251953125],[40.414947509765625,57.47853851318365],[40.59346008300798,57.60753631591791],[40.69865417480497,57.792171478271534],[40.620868682861385,57.892883300781186],[40.77132034301775,57.953132629394645],[40.75995254516607,58.061565399170036],[40.92118072509771,58.123043060302734],[41.04389572143555,58.2803306579591],[41.21762084960943,58.34755706787121],[40.97508239746087,58.52682113647461],[41.28697204589861,58.72002029418945],[41.179321289062784,58.78628540039056],[41.29038619995123,58.98323059082036],[41.659282684326456,59.06169128417963],[42.09457015991239,59.10953521728527],[41.99591064453142,59.2617645263673],[42.24450302124034,59.31467056274426],[42.619132995605696,59.32605361938482],[42.83792495727556,59.14624786376953],[43.162059783935774,59.267299652099666],[43.36243438720709,59.21721649169921],[44.17053985595709,59.22280502319336],[44.31602096557622,59.13566207885742],[44.508804321289176,59.15933227539073],[44.99808120727545,59.11977386474614],[45.06600189209001,59.18870925903325],[45.32626342773466,59.222137451171875],[45.93606185913085,59.18530273437494],[46.05823135376004,59.32917404174817],[46.392559051513956,59.36978912353515],[46.42815017700195,59.5917701721192],[47.12318420410185,59.60858154296875]]]},"properties":{"ID_0":188,"ISO":"RU-KOS","NAME_0":"Russia","ID_1":33,"NAME_1":"Kostroma","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Костромская область","VARNAME_1":"Kostromskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[38.66132736206083,46.8723602294923],[38.79891586303728,46.850391387939446],[38.86940002441423,46.685157775878906],[39.07806015014654,46.6733169555664],[39.18925476074236,46.80296325683605],[39.38367843627924,46.878238677978516],[39.45837020874046,46.83914566040039],[39.87176513671881,46.81945419311535],[40.02618408203141,46.75395584106451],[39.957206726074276,46.58752822875987],[40.1663360595706,46.5233039855957],[40.19120788574219,46.37691116333013],[40.28290557861322,46.29824066162121],[40.59485626220726,46.30442428588873],[40.97811126708996,46.162502288818416],[41.18284606933594,45.984771728515625],[41.161376953125284,45.91305160522472],[41.301670074463175,45.79696655273443],[41.19297027587896,45.70880508422863],[40.87628936767595,45.68764114379894],[40.845138549804965,45.56366348266613],[41.03847122192411,45.41628265380871],[41.07731246948248,45.23329162597656],[41.36255264282221,45.22734069824219],[41.41750335693382,45.11592864990229],[41.577224731445256,44.97200393676769],[41.73648452758795,44.92039489746105],[41.747570037842024,44.82118606567382],[41.61912155151384,44.7076683044433],[41.58489227294939,44.58459854125988],[41.86980056762701,44.44123840332036],[41.69935226440458,44.349838256835994],[41.81263732910173,44.24794387817394],[41.724147796631144,44.055446624755916],[41.555599212646655,43.946731567382756],[41.37881851196289,44.04711532592785],[41.021636962890796,44.117282867431754],[40.95235061645508,43.976524353027344],[40.81906509399437,43.911350250244084],[40.72377014160162,43.73083114624029],[40.716171264648665,43.53089141845714],[40.57189941406267,43.51611328125],[40.263069152831974,43.58289337158209],[40.096923828125114,43.563293457031364],[40.011955261230526,43.384860992431754],[39.86069488525396,43.513195037841854],[39.46125030517595,43.78930664062506],[38.99791717529291,44.16180419921881],[38.79180526733427,44.28097152709972],[38.57208251953131,44.348751068115234],[38.22069549560564,44.41097259521479],[37.98402786254911,44.56819534301769],[37.83097076416044,44.72041702270519],[37.72486114501959,44.64902877807622],[37.547637939453125,44.67597198486328],[37.38624954223661,44.76180648803722],[37.25986099243181,44.97708511352544],[36.90208435058622,45.10486221313482],[36.633472442626896,45.141250610351676],[36.597362518310604,45.19513702392578],[36.797084808349894,45.30541610717785],[36.85763931274414,45.45097351074224],[37.20097351074247,45.3351402282716],[37.45013809204107,45.34652709960932],[37.602916717529354,45.46763992309576],[37.603748321533146,45.64069366455078],[37.83375167846691,45.755973815918026],[37.95347213745139,46.01625061035156],[38.14819335937494,46.03236007690429],[38.29069519042986,46.14597320556646],[38.47263717651373,46.039859771728565],[38.58152770996105,46.09430694580083],[38.292362213134766,46.243473052978516],[38.10013961792015,46.3962516784668],[37.89347076416021,46.42541503906256],[37.805973052978516,46.650138854980526],[38.061527252197436,46.647640228271484],[38.28458404541033,46.735416412353516],[38.50125122070307,46.879859924316406],[38.66132736206083,46.8723602294923]],[[39.64794921874994,45.16419601440435],[39.28381729125982,45.02684402465825],[39.01510620117204,44.989265441894645],[38.81095886230497,45.06049728393566],[38.57011795043968,45.03254318237305],[38.9640808105471,44.860202789306754],[39.419628143310604,44.823089599609425],[39.58114624023466,44.85968399047846],[39.61465072631847,44.98313522338867],[39.76084518432623,45.0003662109375],[39.99878311157237,44.90314483642584],[39.840774536132756,44.58407592773443],[39.86066436767578,44.37207412719732],[40.104572296142805,44.25904083251959],[40.01827621459978,44.09848403930664],[39.774703979492415,44.12716674804682],[39.64757919311546,43.98913192749035],[39.73140335083024,43.936611175537166],[39.95980072021479,43.93823242187506],[40.24375152587918,43.80278396606457],[40.3540420532226,43.80878829956055],[40.48201751708996,44.003288269043026],[40.417724609375284,44.15627288818365],[40.48381423950224,44.402400970459034],[40.35651016235357,44.58812713623058],[40.45653915405302,44.75387573242199],[40.59633255004911,44.702407836914176],[40.5009880065919,44.97680664062506],[40.30049514770536,45.0952415466308],[40.059654235840064,45.06309127807623],[39.64794921874994,45.16419601440435]]]},"properties":{"ID_0":188,"ISO":"RU-KDA","NAME_0":"Russia","ID_1":34,"NAME_1":"Krasnodar","TYPE_1":"Kray","ENGTYPE_1":"Territory","NL_NAME_1":"Краснодарский край","VARNAME_1":"Cossacks of the Black Sea|Kuban|Kubanskaya|Yekaterinodar|Krasnodarskiy Kray"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[79.19843292236334,73.07759857177763],[79.47499847412114,72.91458129882807],[79.5619812011721,72.75364685058592],[79.395317077637,72.70259857177739],[78.89167022705095,72.73332977294933],[78.67134857177751,72.87448120117199],[79.19843292236334,73.07759857177763]]],[[[111.24230194091803,73.90673065185558],[110.90438842773432,73.70207977294933],[110.68333435058611,73.79374694824241],[110.24791717529297,73.68125152587895],[109.65468597412104,73.67760467529303],[109.55052185058605,73.81822967529308],[109.81614685058616,73.86093902587895],[109.9749984741211,74.00000000000011],[110.58541870117216,73.99375152587885],[111.24230194091803,73.90673065185558]]],[[[112.12968444824229,74.54634857177733],[113.06874847412132,74.50833129882824],[113.43281555175781,74.43906402587919],[113.21250152587925,74.20833587646479],[112.83333587646484,74.0791702270509],[112.16301727294933,74.14427185058594],[111.67082977294928,74.23958587646496],[111.53333282470726,74.34166717529313],[112.02291870117186,74.35832977294928],[112.12968444824229,74.54634857177733]]],[[[87.02135467529314,74.98802185058605],[86.83958435058611,74.83541870117199],[86.35624694824236,74.84166717529303],[86.56926727294933,74.97343444824219],[87.02135467529314,74.98802185058605]]],[[[95.87968444824219,76.30677032470714],[96.42292022705084,76.3083343505861],[96.46406555175798,76.13906097412114],[95.7645797729495,76.15208435058605],[95.87968444824219,76.30677032470714]]],[[[110.85832977294945,76.71041870117188],[111.62708282470696,76.6583328247072],[111.75,76.59583282470726],[112.78489685058592,76.30677032470714],[112.69583129882812,76.24166870117193],[112.70833587646494,76.04582977294933],[113.46614837646496,76.16197967529308],[113.54582977294967,75.91041564941418],[113.87864685058616,75.91406250000011],[113.87708282470726,75.74791717529307],[113.38124847412121,75.51667022705084],[113.72916412353514,75.4124984741211],[113.66041564941428,75.2874984741212],[112.74583435058616,74.93541717529291],[112.1374969482423,74.87083435058598],[111.79426574707054,74.65260314941406],[111.41249847412104,74.68125152587896],[110.847915649414,74.53125],[110.26041412353544,74.49166870117193],[110.42656707763683,74.44010162353516],[109.94947814941429,74.31198120117193],[109.90989685058588,74.20259857177746],[109.54374694824219,74.08125305175793],[109.09739685058611,74.04426574707043],[108.76301574707048,73.93073272705084],[108.20833587646479,73.66458129882812],[107.32917022705084,73.60208129882818],[106.95207977294945,73.45833587646496],[106.80364990234374,73.31926727294933],[106.277084350586,73.32083129882822],[105.90468597412126,73.10260009765636],[105.84375000000028,72.8812484741211],[106.16874694824224,72.90416717529301],[106.22864532470709,73.1088485717774],[106.42292022705078,73.18333435058611],[107.79582977294922,73.15416717529297],[108.25,73.28958129882812],[108.65625,73.31458282470703],[109.68333435058611,73.43333435058605],[110.15781402587919,73.51927185058594],[110.4583358764649,73.63541412353516],[110.91510009765642,73.69531249999999],[110.89767456054716,73.61923217773443],[110.36228179931669,73.22848510742199],[110.86448669433622,73.1896743774414],[110.92687225341808,73.08507537841808],[110.71897888183588,72.80797576904297],[110.78026580810547,72.6510009765625],[111.21607971191423,72.53866577148438],[111.06248474121105,72.4073333740235],[111.68959045410185,72.28987884521496],[111.6477890014649,72.1916885375976],[112.01486206054699,72.12126922607433],[112.0276870727539,71.79266357421886],[112.12557220459006,71.39774322509771],[112.33557128906273,71.3651733398438],[112.61147308349621,71.20156860351574],[112.57167053222656,71.07269287109375],[112.17518615722679,71.05240631103527],[112.00128936767578,70.97235107421875],[111.58087158203153,70.93292999267584],[110.98178100585966,70.7920608520509],[110.61238098144548,70.75284576416016],[110.15747070312494,70.62503051757812],[110.18217468261741,70.40389251708994],[109.67119598388695,70.3840408325198],[109.42127990722656,70.22929382324241],[109.50068664550787,69.9847183227539],[109.35508728027344,69.7836151123048],[108.9345855712891,69.84790802001964],[108.33657836914061,69.84336090087885],[108.02658081054682,69.70210266113304],[107.50518035888678,69.65930938720697],[107.0456771850586,69.54841613769537],[106.51088714599615,69.57548522949224],[106.15577697753912,69.39128875732433],[106.90386962890653,68.8769760131836],[106.96009063720726,68.6483612060548],[106.93309020996088,68.1790771484375],[106.81327819824247,67.63785552978527],[106.79728698730463,67.37574768066412],[106.07987976074247,67.19561004638672],[106.01157379150396,67.06475830078125],[105.54718017578153,67.04595184326178],[105.7094802856448,66.94254302978516],[106.14228820800793,66.8673095703126],[106.31208038330095,66.71972656249999],[106.32837677001976,66.5195999145509],[106.19978332519531,66.42591857910168],[106.18598937988276,66.18099975585943],[106.4495925903322,66.11328887939459],[106.5195922851564,65.98461914062517],[106.49577331542984,65.688705444336],[106.85269927978538,65.54202270507818],[106.83657836914057,65.3800888061524],[106.53089141845703,65.35589599609386],[106.41598510742199,65.21556091308588],[106.04469299316406,65.07867431640625],[106.08288574218754,64.87686920166014],[105.72568511962919,64.67439270019537],[105.80818939208983,64.50167846679686],[106.09849548339842,64.44148254394537],[106.56778717041043,64.44902038574219],[107.0106735229495,64.36584472656244],[107.27388763427761,64.35552215576183],[107.305992126465,64.26539611816406],[107.62167358398455,64.28575134277344],[107.93347167968761,64.19406127929688],[108.07008361816423,64.2308349609375],[108.22488403320341,64.19969940185558],[108.41978454589866,64.04077911376964],[108.21099090576183,63.95898437500011],[107.64058685302734,63.9286613464356],[107.52798461914055,63.83859252929693],[107.22399139404313,63.917171478271484],[107.11349487304716,63.85772705078119],[106.6923751831054,63.92959213256836],[106.7594757080081,63.792926788330185],[106.65098571777338,63.56152725219732],[106.52508544921886,63.48440170288086],[106.74307250976591,63.323417663574276],[106.44538116455071,63.16439056396496],[106.39649963378935,63.053401947021534],[106.17459106445312,63.02289581298828],[106.20367431640653,62.90058517456055],[106.52788543701193,62.70965194702149],[106.55267333984396,62.611968994140675],[106.80757141113293,62.577873229980575],[106.74647521972662,62.467819213867294],[106.36696624755871,62.23390197753912],[106.43609619140624,62.17500686645507],[106.3584823608399,62.006202697753956],[105.88639068603516,61.792602539062614],[105.94728851318382,61.66402435302739],[105.57048797607416,61.56637191772461],[105.24727630615239,61.414550781250114],[104.89459991455084,61.32469558715821],[105.01318359375017,61.18880844116216],[104.71078491210966,61.10625076293957],[104.5557937622072,60.98606491088878],[104.57118988037136,60.711750030517635],[104.4766845703125,60.60294342041021],[104.8090896606447,60.36547088623053],[105.08998870849638,60.28499221801758],[105.43428039550793,60.26477432250976],[105.40668487548827,59.93064117431652],[105.4935836791995,59.84915161132819],[105.05778503417963,59.857639312744205],[104.73638153076183,59.6727752685548],[104.83638763427734,59.53829574584961],[105.27748870849621,59.23059844970709],[105.30099487304705,59.101051330566406],[105.0714874267581,59.03755187988287],[104.73359680175781,58.87413787841802],[104.83798217773442,58.73712158203125],[104.61929321289057,58.63664627075189],[104.28269958496094,58.6254272460938],[104.19309234619163,58.770755767822266],[103.90348815917986,58.74250411987299],[103.87898254394537,58.89309692382806],[103.46849060058616,58.95306777954096],[103.28791046142607,59.06786727905285],[103.11837768554699,59.29439163208014],[102.88977813720707,59.3064460754395],[102.75149536132818,59.206871032714844],[102.40089416503906,59.167301177978516],[102.3208770751956,59.0443496704101],[102.47080230712919,58.88842773437505],[102.49607849121094,58.75176239013666],[102.15978240966814,58.552066802978565],[101.61859130859403,58.42313766479497],[101.46989440917986,58.24704742431652],[101.07718658447283,58.11627578735363],[101.14799499511724,58.04628753662109],[100.97428894042997,57.87890625000011],[100.7143859863283,57.8863182067871],[100.71709442138672,57.68139266967784],[100.87288665771501,57.50151062011719],[100.6624908447265,57.42540740966797],[100.34409332275395,57.55021286010736],[100.3657836914063,57.63893890380864],[100.25708770751974,57.81548690795909],[100.05778503417991,57.8380393981933],[99.93135833740263,58.090202331543026],[99.56242370605473,58.07381057739258],[99.42675018310564,57.95764923095708],[99.3619537353516,57.80164337158209],[98.99233245849632,57.73973083496094],[98.69966125488297,57.79028701782232],[97.85095214843756,57.8077278137207],[97.27159118652355,57.05503845214843],[97.54944610595709,56.97365188598632],[97.43206787109375,56.808643341064396],[97.72278594970709,56.79839324951183],[97.6790771484375,56.586856842041016],[97.83305358886741,56.55344772338861],[97.81568145751959,56.41099548339849],[97.46293640136736,56.38546371459961],[97.47972869873064,56.215599060058594],[97.24575805664068,56.060150146484375],[97.06554412841803,56.1075553894043],[96.8980560302735,56.021305084228516],[96.85897064209007,55.883861541748104],[96.67596435546892,55.78876876831065],[96.74478912353527,55.6108512878418],[96.72574615478533,55.430507659912166],[96.81917572021496,55.335166931152344],[96.56729125976562,55.26968765258795],[96.61862182617193,55.17959213256836],[96.52938079834007,55.0153427124024],[96.60356903076195,54.934135437011776],[96.58145904541021,54.78104782104498],[96.36582183837908,54.540847778320426],[96.00881195068358,54.57380294799799],[95.88717651367209,54.44483566284191],[95.69361114501982,54.424602508545036],[95.58200073242209,54.24648284912115],[95.97604370117193,54.081790924072315],[96.23450469970726,53.83367156982422],[96.42700195312527,53.70550537109375],[96.6574020385745,53.67288589477545],[96.62551879882817,53.59534072875971],[96.35581207275412,53.53716659545892],[96.14958953857428,53.53629302978526],[95.99554443359402,53.47132110595703],[95.65732574462896,53.510955810546875],[95.317451477051,53.398845672607536],[95.12781524658203,53.46241760253912],[95.03922271728527,53.40536499023443],[94.66674041748041,53.387172698974666],[94.46691131591795,52.93654632568365],[94.13465881347656,52.88348770141613],[93.89962768554703,52.5786972045899],[93.74628448486345,52.48766326904297],[93.59529876709007,52.20566558837896],[93.41497039794939,52.184146881103516],[92.97964477539091,51.962425231933594],[92.82620239257812,51.851963043213004],[92.64479064941423,51.857685089111435],[92.38773345947271,51.7964248657226],[91.84846496582047,51.7764930725097],[91.38346099853531,51.892326354980575],[91.11965179443354,51.86716842651373],[90.98229980468761,51.929237365722656],[90.79418182373051,51.87935256958007],[90.65062713623041,52.0596656799317],[90.45197296142584,52.163402557373104],[90.70031738281256,52.45823669433605],[91.03803253173845,52.66026306152338],[91.24193572998064,52.747539520263665],[91.39631652832053,52.86803054809582],[91.35114288330105,53.07753753662121],[91.65988159179693,53.15853500366222],[91.84126281738281,53.288341522216854],[91.74404907226568,53.446750640869084],[91.46974945068382,53.51394653320324],[91.32659149169916,53.81670761108404],[91.46513366699217,53.96609115600597],[91.4639129638673,54.05661773681634],[91.20953369140624,54.33827590942383],[91.15901184082037,54.48793411254894],[90.85501098632835,54.62679672241222],[90.91528320312523,54.79112625122075],[90.45833587646513,54.87079620361334],[90.43556213378912,55.0163955688476],[90.12921142578124,55.10525131225586],[89.9039916992188,55.08612823486334],[89.65784454345714,55.003131866455185],[89.54999542236334,55.046417236328125],[89.20083618164074,54.99044799804698],[88.96607971191423,55.184829711914006],[88.9501571655274,55.28911590576183],[88.63609313964838,55.424762725830135],[88.96105194091825,55.653461456298885],[89.1933212280274,55.68408966064458],[89.42308807373064,55.78010940551763],[89.247367858887,56.015018463134766],[89.22174835205101,56.127666473388786],[88.93104553222662,56.29353332519542],[88.71897888183616,56.35764694213873],[88.61518859863287,56.50189971923828],[88.67256164550798,56.6429557800293],[88.61354064941435,56.87193679809582],[88.72753906250006,57.01923751831055],[88.69318389892578,57.18791198730463],[88.84272766113286,57.392879486083984],[89.09057617187527,57.47424316406249],[89.04875183105491,57.55642700195306],[89.38503265380865,57.654151916503956],[89.36644744873063,57.8667716979981],[89.16123199462889,57.942352294921925],[88.80641937255854,57.950714111328125],[88.63187408447277,58.046848297119254],[88.07513427734368,58.10902404785156],[87.9537887573245,58.270748138427784],[87.90283203125006,58.502258300781364],[88.30503082275389,58.76582717895507],[88.52142333984403,58.93806076049805],[88.80097961425787,59.01359558105481],[88.59142303466825,59.18015289306634],[88.5493774414063,59.286502838134766],[87.86553192138689,59.243034362793075],[87.69311523437517,59.38722610473633],[87.48242187500006,59.66497421264654],[87.1446151733399,59.67059707641613],[87.07840728759766,59.86007690429698],[86.45834350585936,59.946235656738345],[85.87180328369158,59.93009185791026],[85.54250335693386,59.88537597656256],[84.64437866210949,59.87342453002929],[84.57686614990229,59.98173141479492],[84.65495300292974,60.201347351074155],[84.82601928710938,60.33487319946295],[84.73190307617216,60.44677734375011],[84.25296020507841,60.84401702880865],[84.56581878662126,60.95654296875005],[85.66175842285168,61.259265899658196],[85.65365600585943,61.39339828491212],[85.96430969238298,61.46842193603515],[85.91587829589844,61.54807281494151],[85.65457916259764,61.57683563232427],[85.40196990966807,61.68707656860345],[84.76437377929705,61.78865814208984],[84.51338195800798,61.98855209350591],[84.51454162597673,62.178100585937614],[84.5862808227539,62.26531600952154],[84.91792297363298,62.44660949707036],[85.04309844970707,62.66841125488286],[85.50865173339861,62.92270278930664],[85.61633300781278,63.075511932373104],[85.53903198242193,63.14397811889654],[85.61133575439476,63.36091995239269],[85.12200164794938,63.578701019287166],[85.31461334228527,63.66764068603521],[85.35650634765648,63.8379478454591],[85.96140289306652,64.05160522460943],[85.96559143066418,64.26583862304693],[85.81849670410185,64.49195098876953],[85.92136383056635,64.57178497314464],[85.81340026855463,64.78584289550774],[85.56273651123075,64.83673095703136],[85.25509643554716,64.7798461914063],[84.98545074462908,64.92274475097668],[84.42256927490229,64.90697479248047],[84.33868408203142,65.10496520996094],[84.65340423583984,65.269142150879],[84.5837707519533,65.44721984863287],[84.31130981445341,65.65745544433605],[83.96014404296898,65.75729370117188],[83.57308197021484,65.78657531738293],[83.37172698974632,66.0139617919923],[83.60469818115229,66.1426391601563],[83.10823059082048,66.49989318847662],[83.3520660400391,66.65151977539068],[83.06177520751976,66.88204956054686],[82.17472839355497,67.2007446289064],[82.3633575439456,67.28780364990239],[82.36286163330095,67.53440093994163],[82.13707733154303,67.60752105712902],[81.78427124023466,67.88308715820318],[82.40893554687528,67.92445373535179],[82.42337799072271,68.06729125976562],[82.76107025146479,68.26068878173828],[82.72123718261736,68.55062866210938],[82.94504547119163,68.60554504394531],[82.6866531372073,68.77631378173834],[82.43271636962896,69.02983856201183],[82.473197937012,69.12739562988281],[81.94712066650413,69.17728424072277],[82.07879638671886,69.34305572509777],[81.7941589355471,69.41696929931646],[81.7123413085938,69.2663192749024],[81.03229522705095,69.19174194335943],[80.70544433593773,69.28064727783214],[79.88831329345709,69.32746124267578],[79.62031555175787,69.46599578857428],[79.51301574707058,69.62089538574224],[79.11716461181646,69.65074920654297],[78.99893951416038,69.8693008422851],[79.77902221679693,70.19899749755864],[80.40042877197271,70.41894531250028],[80.77522277832036,70.47492980957031],[80.9412384033206,70.62785339355462],[80.64058685302757,71.04404449462885],[79.95226287841824,71.13273620605463],[79.32951354980497,71.41822052001963],[79.4478149414062,71.5979537963867],[79.84688568115234,71.60134887695324],[80.17088317871105,71.6934204101563],[80.43543243408214,71.92166137695312],[79.82361602783203,72.05065917968756],[79.29625701904301,72.04562377929688],[78.70376586914057,72.20899200439482],[78.52656555175776,72.37232208251947],[79.49166870117199,72.34999847412104],[79.933334350586,72.20625305175781],[80.65416717529324,72.09375],[80.67968750000023,72.04634857177729],[81.26875305175793,71.84166717529308],[81.37708282470713,71.74791717529297],[81.77500152587908,71.6875],[82.6791687011721,71.75833129882824],[83.28281402587896,71.70259857177746],[82.97551727294922,71.51718902587895],[82.96823120117205,71.38801574707037],[82.2505187988283,71.24948120117188],[82.324478149414,71.05468750000011],[82.20051574707048,71.01197814941418],[82.40625000000028,70.7666702270509],[82.6463546752932,70.7640609741211],[82.863021850586,70.9359359741211],[83.13072967529314,70.84010314941418],[82.99531555175798,70.39427185058594],[82.68177032470719,70.25260162353521],[82.84999847412126,70.07291412353521],[83.184898376465,70.14323425292969],[82.97968292236345,70.29426574707026],[83.40208435058622,70.29792022705078],[83.64583587646513,70.3604202270509],[83.81198120117216,70.52031707763672],[83.60884857177763,70.69947814941412],[83.4203109741211,71.00572967529297],[83.16093444824224,71.24010467529307],[83.40364837646496,71.35468292236334],[83.44010162353533,71.47135162353516],[83.68698120117193,71.59426879882824],[83.37500000000027,71.83541870117188],[82.66406250000004,71.92240142822266],[82.21666717529325,72.28333282470709],[81.31041717529303,72.34791564941423],[80.91249847412125,72.42082977294922],[80.7671890258789,72.50676727294933],[80.86250305175776,72.62291717529308],[80.87916564941412,72.95417022705084],[80.58958435058611,73.06458282470709],[80.7041702270509,73.18958282470714],[80.37448120117193,73.2921829223634],[80.66822814941412,73.42134857177746],[80.53958129882807,73.55416870117188],[81.37083435058611,73.5729141235352],[81.91458129882824,73.63541412353516],[83.54792022705078,73.64375305175776],[84.8270797729495,73.75416564941418],[85.01667022705107,73.70207977294933],[85.51667022705078,73.71666717529297],[85.63333129882824,73.81041717529308],[86.86250305175781,73.8854141235351],[87.07239532470732,73.79010009765625],[86.38753509521501,73.56041717529314],[87.1791687011721,73.61042022705078],[87.48072814941429,73.78385162353521],[86.7296829223634,74.13489532470697],[86.62916564941418,74.25416564941406],[85.96458435058598,74.30416870117193],[85.9130172729492,74.36302185058588],[86.66458129882818,74.51249694824247],[86.40781402587896,74.60781097412114],[85.78541564941406,74.6416702270509],[86.15000152587919,74.78125000000011],[86.75416564941406,74.69583129882824],[87.46875000000028,74.98958587646477],[86.91510009765642,75.0911483764649],[87.27916717529325,75.14583587646484],[87.9145812988283,75.08541870117193],[88.60624694824241,75.32083129882841],[89.18541717529314,75.47083282470703],[89.54218292236351,75.43801879882812],[90.33958435058611,75.59166717529303],[90.98958587646501,75.59583282470709],[91.71302032470697,75.70259857177734],[92.35416412353521,75.7291641235352],[93.6020812988283,75.84583282470703],[93.24791717529297,76.027084350586],[93.72499847412132,76.12083435058588],[94.32499694824219,76.125],[94.61250305175787,76.07499694824247],[95.42916870117186,76.15208435058605],[95.89791870117199,76.13957977294922],[96.34375,75.97916412353516],[97.26615142822271,75.9536514282227],[98.20417022705078,76.08958435058592],[98.6645812988283,76.2291641235351],[99.50833129882824,76.11458587646483],[99.67864990234403,75.90676879882841],[99.99531555175798,75.93385314941433],[99.61198425292969,76.25989532470703],[99.09166717529295,76.33958435058605],[99.41041564941428,76.44583129882824],[100.95207977294922,76.47916412353544],[101.17552185058621,76.66197967529297],[100.92552185058587,76.85781097412121],[101.32759857177751,76.97864532470709],[101.35260009765642,77.09218597412138],[102.64009857177734,77.48906707763678],[103.28541564941412,77.629165649414],[104.00000000000017,77.69583129882817],[105.26667022705095,77.53958129882812],[105.87708282470709,77.53749847412115],[106.19010162353521,77.37760162353516],[105.80833435058588,77.36042022705072],[105.5973968505861,77.2442703247072],[104.96458435058594,77.15416717529303],[105.11458587646513,77.05625152587889],[105.88333129882812,77.09583282470714],[106.60260009765625,77.01823425292963],[107.2958297729495,77.00416564941406],[107.33125305175804,76.88749694824224],[106.93698120117193,76.71823120117188],[106.60208129882835,76.48332977294928],[107.94374847412138,76.53958129882818],[108.37500000000028,76.69374847412121],[109.57707977294938,76.7291641235352],[110.07239532470697,76.6744842529298],[110.43750000000017,76.73958587646501],[110.85832977294945,76.71041870117188]]],[[[102.42552185058594,79.41926574707031],[103.15833282470709,79.32291412353516],[102.85832977294943,79.17082977294933],[102.70989990234375,78.93906402587896],[103.47239685058588,79.11198425292969],[104.46458435058605,78.99166870117193],[104.77083587646506,78.83333587646484],[105.34531402587896,78.75156402587896],[105.25989532470709,78.4359359741212],[104.92082977294916,78.31874847412115],[104.38957977294928,78.3125],[102.97499847412126,78.17708587646513],[101.37083435058621,78.17708587646513],[100.04166412353533,77.94583129882812],[99.50624847412121,77.95207977294916],[99.54792022705084,78.12291717529324],[100.02500152587919,78.29582977294922],[100.27031707763683,78.45885467529291],[100.36718750000028,78.66301727294945],[101.39375305175793,79.2125015258789],[102.42552185058594,79.41926574707031]]],[[[91.94843292236344,80.08385467529303],[92.98958587646513,80.02708435058588],[93.87448120117188,79.90573120117199],[93.14167022705095,79.70417022705072],[91.99166870117199,79.67916870117199],[91.96926879882818,79.8036499023438],[91.30000305175804,79.83125305175781],[91.13801574707031,79.95885467529297],[91.39583587646477,80.05833435058605],[91.94843292236344,80.08385467529303]]],[[[97.53593444824247,80.16301727294933],[98.47083282470709,80],[99.30000305175787,80.04374694824241],[99.81041717529303,79.91666412353516],[100.31041717529313,79.65833282470732],[99.82083129882812,79.57083129882824],[99.81041717529303,79.32291412353516],[99.66041564941406,79.15833282470703],[99.96198272705077,78.93281555175793],[99.52916717529314,78.81666564941418],[99.10624694824247,78.79792022705084],[97.6312484741213,78.81666564941418],[96.81666564941435,78.9895858764649],[96.18125152587896,78.98542022705107],[94.91874694824217,79.04166412353521],[94.7687530517581,79.17082977294933],[94.29792022705078,79.32499694824236],[94.43593597412121,79.45365142822271],[93.70625305175781,79.55416870117193],[94.08333587646484,79.76875305175787],[94.72083282470726,79.79792022705084],[94.34843444824236,79.91718292236338],[94.92760467529303,80.08802032470709],[96.35416412353527,80.0999984741211],[97.53593444824247,80.16301727294933]]],[[[79.58385467529314,80.90052032470703],[80.19947814941435,80.84426879882817],[79.70833587646513,80.74166870117193],[78.82759857177734,80.7828140258789],[79.58385467529314,80.90052032470703]]],[[[90.86927032470703,81.22968292236328],[91.6312484741211,81.0999984741211],[91.0729141235351,81.02916717529308],[90.20833587646501,81.09375],[90.19583129882835,81.1812515258789],[90.86927032470703,81.22968292236328]]],[[[95.74218750000004,81.27343750000006],[96.1026000976562,81.23593902587902],[96.738021850586,80.95677185058592],[98.02916717529325,80.67916870117199],[97.40625,80.59791564941418],[97.59999847412138,80.29582977294916],[97.18958282470714,80.23958587646484],[95.82499694824241,80.21458435058594],[94.64583587646489,80.14791870117192],[94.37083435058615,80.06458282470707],[93.59166717529303,80.01041412353521],[92.6395797729495,80.1812515258789],[92.55000305175797,80.26457977294922],[91.75833129882835,80.26041412353516],[91.76041412353521,80.34583282470703],[92.7145843505861,80.46666717529308],[93.24010467529295,80.69635009765636],[92.6395797729495,80.77916717529297],[93.16510009765642,80.94843292236332],[94.46093749999994,81.01718902587885],[95.74218750000004,81.27343750000006]]]]},"properties":{"ID_0":188,"ISO":"RU-KYA","NAME_0":"Russia","ID_1":35,"NAME_1":"Krasnoyarsk","TYPE_1":"Kray","ENGTYPE_1":"Territory","NL_NAME_1":"Красноярский край","VARNAME_1":"Krasnoyarskiy Kray|Yeniseisk|Yeniseyskaya G."}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[64.96775817871122,56.79666137695318],[64.98084259033203,56.6185188293457],[65.19559478759766,56.3365249633789],[65.5389633178713,56.33753967285162],[65.95559692382824,56.063632965087834],[66.30072021484375,56.105209350585994],[66.47815704345709,55.981964111328125],[66.62962341308622,56.05527114868164],[66.85343933105486,55.990516662597656],[67.2528152465822,55.97249221801757],[67.35261535644531,55.78641891479498],[67.8747177124024,55.69373321533203],[68.11446380615257,55.74163818359375],[68.20970916748058,55.61956024169921],[68.65050506591791,55.374019622802784],[68.65669250488287,55.25981140136719],[68.55744171142595,55.20096969604492],[68.17691040039057,55.18229293823242],[68.2852859497072,55.06443023681652],[68.20141601562506,54.957935333251896],[67.88439941406256,54.97859573364258],[67.75233459472649,54.8787117004395],[67.55253601074224,54.838359832763615],[66.78169250488276,54.760448455810604],[66.02005004882841,54.61809158325195],[65.83248901367193,54.688388824463004],[65.74189758300787,54.60297393798834],[65.50131225585955,54.65118408203125],[65.20079040527366,54.52456665039062],[65.24020385742205,54.36748504638683],[64.97794342041033,54.41962432861328],[64.74257659912126,54.4045753479005],[64.41555023193365,54.32775497436518],[63.88040542602544,54.28585433959961],[63.378082275390625,54.19743347167968],[63.108814239501896,54.36895751953131],[63.11988449096696,54.47005844116211],[63.28725051879905,54.56122970581054],[63.145675659179965,54.7323951721192],[62.7756843566895,54.67310333251953],[62.53170013427763,54.681823730468864],[62.41496658325195,54.743141174316406],[62.18416213989274,54.68358230590826],[61.94676208496088,55.01336288452154],[62.242473602295036,55.14459228515625],[62.05126571655279,55.29558563232433],[62.546329498290966,55.4912223815919],[62.5412254333496,55.77297210693365],[62.24063491821288,55.945957183837834],[62.20186233520502,56.05117797851562],[62.03094863891612,56.179256439208984],[62.04189682006837,56.30136108398449],[62.161491394043246,56.3459587097168],[62.399291992187564,56.55629730224614],[62.7471885681154,56.58284378051758],[62.94579315185575,56.64783859252941],[63.12365341186551,56.5966033935548],[63.496009826660384,56.6495628356933],[63.787296295166016,56.525180816650504],[64.11381530761724,56.50340270996094],[64.31227874755876,56.75274658203131],[64.58470916748053,56.86603164672863],[64.8467636108399,56.86332702636719],[64.96775817871122,56.79666137695318]]]},"properties":{"ID_0":188,"ISO":"RU-KGN","NAME_0":"Russia","ID_1":36,"NAME_1":"Kurgan","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Курганская область","VARNAME_1":"Kurganskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[37.77226638793968,52.051216125488395],[37.84363937377958,51.955501556396534],[38.003520965576115,51.912555694580135],[38.34043884277355,51.95900726318364],[38.4607200622558,51.92352294921881],[38.50942993164074,51.76330947875988],[38.211643218994304,51.65342330932628],[38.31935119628906,51.56193161010742],[38.405540466308764,51.355941772460994],[38.36970138549833,51.27934265136713],[38.03408050537138,51.42617797851574],[37.79271697998047,51.36293411254894],[37.43205261230469,51.378387451171875],[37.15841293334978,51.316738128662166],[36.987564086914176,51.19255828857416],[36.805816650390796,51.18906402587902],[36.61006927490263,51.085968017578125],[36.21975708007818,51.159671783447266],[36.01176071166998,51.10667419433605],[35.84481430053728,50.9765739440918],[35.535190582275675,50.947021484375114],[35.39136505126953,51.02016067504888],[35.1955184936524,51.05895996093756],[35.123470306396655,51.220962524414176],[34.97594833374052,51.236854553222656],[34.687877655029354,51.18821716308594],[34.6556549072265,51.248001098632926],[34.270694732666186,51.259902954101555],[34.22528076171881,51.399845123291016],[34.31819534301758,51.52880859375011],[34.126987457275675,51.68684005737299],[34.40315628051786,51.720806121826165],[34.327144622802905,51.871875762939446],[34.32296752929715,52.04505538940429],[34.593837738037166,52.08508300781256],[34.95538711547846,52.376113891601555],[35.460609436035156,52.479900360107536],[35.588775634765625,52.30160522460943],[35.91125488281244,52.321739196777344],[36.34196853637701,52.38766098022461],[36.48174285888666,52.248493194580135],[36.8284454345706,52.14659500122076],[37.14027023315447,52.108501434326286],[37.40274429321306,51.954723358154354],[37.4966773986817,52.037471771240234],[37.65216064453125,51.979854583740234],[37.77226638793968,52.051216125488395]]]},"properties":{"ID_0":188,"ISO":"RU-KRS","NAME_0":"Russia","ID_1":37,"NAME_1":"Kursk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Курская область","VARNAME_1":"Kurskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.74047660827648,58.99959945678723],[27.74012184143072,58.99973678588873],[27.902221679687553,59.24467849731456],[28.066911697387805,59.29944610595708],[28.063255310058707,59.29852294921881],[28.066911697387805,59.29944610595708],[28.07046127319336,59.2988395690919],[28.16885375976568,59.346359252929744],[28.043889999389705,59.477359771728636],[28.088611602783203,59.60631942749034],[28.001388549804744,59.689308166503956],[28.432695388794002,59.67967224121087],[28.472658157348803,59.82744216918946],[28.721944808960014,59.77388763427746],[28.957500457763786,59.8079185485841],[29.13038825988775,59.98736190795904],[29.69520759582548,59.932613372802784],[29.675977706909237,59.86321258544922],[29.850015640258846,59.8276252746582],[30.00914001464855,59.72918319702143],[30.06274032592779,59.68751144409185],[30.192295074462944,59.63624191284192],[30.4826335906983,59.62333679199224],[30.526046752929627,59.655380249023494],[30.59896850585937,59.70190048217768],[30.720363616943356,59.70893859863287],[30.75839424133312,59.7766227722169],[30.619201660156303,59.81810379028321],[30.495494842529297,59.887321472168026],[30.524717330932614,59.986141204833984],[30.35161590576178,60.05097961425788],[30.369991302490234,60.107704162597656],[30.38434410095215,60.128211975097706],[30.2376003265382,60.140625],[30.01099586486822,60.1847915649414],[29.82188606262218,60.236030578613395],[29.692167282104492,60.25753784179693],[29.63844299316412,60.26620864868169],[29.4552898406983,60.21669769287115],[29.41337585449224,60.16041564941413],[29.112499237060604,60.166667938232536],[28.625,60.354167938232536],[28.70416641235357,60.66041564941417],[28.602083206176815,60.66041564941417],[28.41250038146978,60.6500015258789],[28.049999237060657,60.510417938232365],[27.8773860931397,60.60169601440435],[28.537509918213004,60.958412170410156],[28.65682029724121,60.95082092285161],[28.84039497375505,61.13145065307611],[29.24556732177757,61.27341842651367],[29.3215980529788,61.33584976196295],[29.63990211486845,61.188323974609425],[30.56567192077631,61.0440444946289],[32.63402557373075,60.65151214599609],[32.78500366210943,60.646476745605575],[33.15790557861333,60.834022521972656],[33.44225692749052,61.01191711425792],[33.75271606445307,60.94764709472667],[33.90227508544939,61.10258483886719],[33.65436935424816,61.098407745361435],[33.47145843505865,61.19637298583996],[33.774394989013835,61.27626800537121],[34.50651168823265,61.24718093872082],[34.760131835937784,61.346153259277344],[35.488349914551065,61.16920852661144],[35.67248916625982,61.2005271911621],[35.60015106201183,60.94232940673839],[35.494171142578125,60.85186004638678],[35.20337677001958,60.79714202880871],[35.33945846557623,60.61004638671886],[35.14369964599638,60.15491104125976],[35.442920684814624,59.94422531127935],[35.433513641357706,59.76806259155285],[35.55297851562523,59.670536041259815],[35.500534057617244,59.438350677490234],[35.381988525390796,59.30266571044922],[35.170425415039176,59.250576019287216],[34.95458221435547,59.27118301391613],[34.80104064941406,59.090866088867294],[34.36262893676775,59.15995788574218],[34.1487998962404,59.10237503051769],[33.89463043212908,59.16339111328125],[33.69261932373058,59.34622955322276],[33.29788970947271,59.288463592529354],[33.127540588378906,59.356391906738224],[32.810691833496264,59.26338195800786],[32.720314025878906,59.06417846679681],[32.415027618408374,59.13207244873041],[32.31957626342802,59.26882171630871],[31.98918533325218,59.386997222900334],[31.888818740844954,59.27622222900402],[31.547933578491495,59.34099197387706],[31.574846267700256,59.22243499755871],[31.40617179870611,59.021141052246094],[31.01038360595703,59.01668167114263],[30.955749511719034,58.90620422363293],[30.77192878723173,58.82664108276367],[30.67292976379423,58.7098999023438],[30.384458541870227,58.67791748046886],[30.190319061279293,58.74063491821289],[30.109523773193644,58.617698669433594],[30.156940460205078,58.46409606933605],[29.92828369140619,58.4405021667481],[29.61540603637712,58.44390106201166],[29.34009361267095,58.54380798339855],[29.26895332336437,58.648597717285156],[29.01014709472656,58.78174972534191],[28.28304481506359,58.85065841674798],[28.185434341430664,58.95725250244146],[27.73826599121088,58.9934883117677],[27.74047660827648,58.99959945678723]]]},"properties":{"ID_0":188,"ISO":"RU-LEN","NAME_0":"Russia","ID_1":38,"NAME_1":"Leningrad","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Ленинградская область","VARNAME_1":"Saint Petersburg|Sankt-Peterburgskaya G.|Leningradskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[40.19570922851591,53.31672286987305],[40.12696456909191,53.192043304443416],[40.181606292724666,52.800712585449276],[40.011119842529524,52.74597167968756],[40.11714935302729,52.53764343261719],[40.384334564208984,52.451442718505966],[40.38084030151361,52.374431610107536],[40.60014724731473,52.32683563232433],[40.819225311279354,52.196453094482536],[40.69947814941423,52.133609771728516],[40.6066513061524,51.93589782714844],[39.9783210754395,51.94729614257807],[39.79224014282221,51.905361175537166],[39.593559265137,51.95172500610363],[39.56947708129899,52.04647827148432],[39.22228622436552,52.08960342407232],[39.146160125732706,51.97442626953124],[38.94610214233427,52.0831031799317],[38.730281829833984,52.10144042968749],[38.34043884277355,51.95900726318364],[38.003520965576115,51.912555694580135],[37.84363937377958,51.955501556396534],[37.77226638793968,52.051216125488395],[37.75745010376005,52.15547561645502],[38.08731842041044,52.345558166503906],[37.983795166015796,52.477031707763786],[37.786933898925895,52.610916137695305],[37.88723373413086,52.77060699462896],[37.85785293579101,53.017463684082145],[37.90835952758806,53.06698608398443],[38.278091430664006,53.05439758300787],[38.3254127502442,52.95281219482433],[38.711978912353516,53.11088943481445],[38.53716659545927,53.320228576660156],[38.822742462158374,53.36959075927745],[38.727420806884766,53.492717742919865],[38.913753509521655,53.56142807006836],[39.03246307373064,53.56354904174805],[39.202587127685774,53.38211059570318],[39.5585365295413,53.41425323486328],[39.586589813232706,53.506538391113395],[39.76686096191412,53.5723876953125],[39.90851211547857,53.528373718261776],[40.00093078613287,53.388397216796925],[40.19570922851591,53.31672286987305]]]},"properties":{"ID_0":188,"ISO":"RU-LIP","NAME_0":"Russia","ID_1":39,"NAME_1":"Lipetsk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Липецкая область","VARNAME_1":"Lipetskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[159.98333740234386,61.12916564941412],[159.9119873046876,61.25781249999994],[160.1125030517578,61.50208282470708],[160.28073120117188,61.55989837646496],[160.4119873046875,61.76094055175792],[160.3484344482422,61.91614913940423],[160.03176879882824,61.84531021118169],[159.8750000000001,61.70416641235357],[159.56823730468793,61.65781021118169],[159.40573120117233,61.870315551757805],[159.04374694824216,61.91666793823253],[158.51823425292991,61.79843521118175],[158.29374694824241,61.827083587646484],[158.07135009765648,61.73385620117198],[157.52082824707028,61.79166793823247],[157.03176879882812,61.647396087646435],[156.94375610351562,61.55625152587896],[156.68959045410156,61.52708435058605],[156.56040954589855,61.210414886474545],[156.1296844482423,61.02656555175787],[155.9234313964846,60.872398376464844],[155.90415954589844,60.766666412353565],[154.8046875000001,60.29322814941418],[154.59323120117188,60.10885620117187],[154.40885925292991,60.064060211181754],[154.4871826171875,59.881019592285206],[154.22319030761716,59.874019622802784],[154.2545318603518,59.69350433349614],[154.07749938964866,59.504760742187614],[154.4230194091798,59.41446304321283],[154.64503479003918,59.54237747192388],[154.7908630371095,59.46406555175786],[155.01211547851574,59.47608947753912],[155.21028137207054,59.34682464599621],[155.07225036621105,59.191757202148544],[154.67498779296886,59.14793395996093],[154.48554992675793,59.22055435180664],[154.30435180664074,59.09045410156262],[153.94393920898435,59.06895828247076],[153.83995056152352,59.16860198974614],[153.49499511718773,59.23373794555669],[153.3502044677734,59.10234832763672],[153.01611328125023,59.066665649414006],[152.89106750488315,58.91709136962902],[152.54833984375,58.95122146606445],[152.40887451171886,59.024333953857486],[152.14675903320324,58.97589492797857],[152.0644378662109,58.88826751708995],[151.69747924804688,58.844978332519645],[151.36186218261741,58.85605239868164],[151.14216613769543,59.06758499145508],[151.4605407714845,59.161540985107365],[151.75318908691406,59.12911224365239],[152.114959716797,59.15066146850597],[152.00111389160156,59.26444625854497],[151.76603698730491,59.33942413330078],[151.66395568847668,59.45706176757823],[151.40504455566418,59.60520553588862],[150.75062561035168,59.52876663208007],[150.45878601074227,59.61594390869151],[149.5885314941406,59.75819778442383],[149.3401641845703,59.71995544433593],[149.08993530273438,59.60900878906255],[149.16459655761741,59.48450851440429],[148.71278381347656,59.453887939453125],[148.73721313476574,59.36113739013684],[148.57498168945312,59.23823547363287],[148.4246368408203,59.25260162353527],[148.39981079101574,59.376167297363395],[148.16882324218759,59.40776443481457],[147.8833465576172,59.38582611083984],[147.474609375,59.24710464477544],[147.2977752685547,59.3341674804688],[146.96276855468795,59.36966323852539],[147.19609069824227,59.416091918945256],[147.2790985107422,59.644779205322315],[147.2309875488282,59.86794662475592],[147.0269775390625,59.95043563842768],[146.74647521972702,59.991527557373104],[146.77308654785156,60.095939636230526],[146.57278442382844,60.11857223510748],[146.47117614746094,60.226314544677784],[145.93698120117207,60.18375015258789],[145.7098846435548,60.29384613037103],[145.59918212890648,60.443355560302734],[145.72608947753918,60.558345794677734],[146.22708129882835,60.74336242675792],[146.53338623046886,60.663650512695426],[146.53398132324241,60.898174285888786],[146.73918151855491,60.93827819824224],[146.85098266601585,61.17520523071289],[146.67080688476574,61.46073532104492],[146.6898651123048,61.57832717895519],[146.2452850341798,61.90600967407238],[145.8313903808595,62.00483703613287],[145.49168395996105,61.91955566406255],[145.03810119628918,62.05521011352539],[144.7891845703125,62.04123306274425],[145.19567871093784,62.28104782104492],[145.18888854980491,62.480262756347656],[145.41438293457077,62.59260559082031],[145.47879028320312,62.69906234741222],[145.44918823242188,62.95079803466797],[145.25457763671875,63.022399902343814],[145.23066711425793,63.16030120849616],[145.4005889892578,63.29434967041015],[145.45278930664094,63.47723007202154],[145.67266845703125,63.673095703124936],[145.65399169921886,63.83568191528331],[146.13739013671875,63.9250144958496],[146.35670471191406,64.15387725830084],[146.88987731933616,64.15978240966803],[147.3363800048829,64.04385375976574],[147.8032684326172,63.971019744873104],[148.02899169921886,63.997051239013615],[148.30088806152344,64.2037353515625],[148.04888916015625,64.40300750732433],[148.36888122558605,64.52863311767584],[148.50198364257835,64.44837188720709],[149.0696716308595,64.4332275390625],[149.31489562988304,64.37622833251959],[149.8047790527345,64.5534286499024],[150.10337829589866,64.46659851074219],[150.02236938476562,64.29946136474604],[150.61938476562509,64.1569213867188],[150.60638427734386,64.29465484619152],[151.1940917968751,64.33177185058594],[151.4098663330078,64.30570220947271],[151.5938110351567,64.42212677001953],[151.90916442871128,64.46640014648438],[152.3559722900393,64.37648773193371],[152.2891998291018,64.5013198852539],[152.7509918212893,64.6680526733399],[152.4937744140625,64.99733734130871],[152.76077270507824,65.2310562133789],[153.23977661132812,65.26466369628912],[153.52078247070335,65.42600250244139],[153.58659362792991,65.60246276855474],[153.55076599121105,65.81593322753912],[154.43188476562523,65.90635681152355],[154.2837677001953,66.07280731201178],[154.6177673339845,66.20345306396507],[155.0536804199221,66.12309265136734],[155.90588378906273,66.16924285888666],[156.0901794433596,66.05774688720707],[156.76467895507824,66.10266113281261],[157.015380859375,66.03624725341808],[157.13508605957043,65.90567779541014],[157.46388244628918,65.96273040771484],[157.7246856689453,66.08873748779308],[158.14646911621102,66.14128875732428],[158.3556823730471,66.07248687744152],[158.6168670654298,66.0995864868165],[158.45866394042966,66.22428894042973],[158.57537841796875,66.31752014160162],[158.9712677001953,66.20855712890625],[159.24395751953136,66.20253753662115],[158.9782867431643,65.99014282226555],[158.96820068359384,65.75019073486322],[159.13047790527366,65.67443084716808],[160.13206481933605,65.50003051757817],[160.22528076171886,65.3810195922852],[160.6400909423828,65.1752548217774],[161.306884765625,65.12402343749993],[161.68598937988293,65.04332733154291],[161.9074859619144,64.84993743896479],[162.1087036132816,64.78974914550787],[162.58186340332043,64.7549285888673],[162.79148864746105,64.66117095947266],[163.23428344726562,64.66918182373047],[163.24119567871116,64.54193115234375],[163.51039123535168,64.33881378173828],[162.9873809814453,64.15705108642578],[162.84187316894543,64.07023620605469],[162.97048950195312,63.8617935180664],[162.78858947753926,63.7246704101563],[163.06048583984375,63.57740402221691],[163.0708923339848,63.499443054199276],[162.7477722167971,63.36769485473633],[162.82566833496102,63.17364883422846],[162.61038208007812,63.08627319335938],[162.35816955566418,63.053524017333984],[162.29759216308594,62.86023330688487],[162.4432067871095,62.843231201171875],[162.82980346679733,62.64506912231452],[162.6827850341797,62.54821014404297],[162.80090332031247,62.438495635986385],[162.7540893554692,62.261215209960994],[162.22207641601585,62.14491271972667],[162.2705688476567,62.071186065673935],[162.548583984375,61.97920608520514],[162.28388977050793,61.88418579101556],[162.4502868652345,61.754013061523494],[162.4467773437501,61.666667938232365],[161.98541259765648,61.37291717529302],[161.64791870117188,61.25833511352539],[161.44375610351574,61.11875152587901],[160.86302185058625,60.845310211181754],[160.7859344482423,60.73176956176763],[160.15625000000023,60.66249847412121],[160.41041564941403,61.033332824706974],[159.93176269531273,61.01927185058594],[159.98333740234386,61.12916564941412]]]},"properties":{"ID_0":188,"ISO":"RU-MAG","NAME_0":"Russia","ID_1":40,"NAME_1":"Maga Buryatdan","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Магаданская область","VARNAME_1":"Magadanskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.07308959960966,56.66929626464855],[50.20691299438488,56.560447692871094],[50.0210914611817,56.46679306030285],[49.76081848144553,56.55646133422863],[49.441959381103516,56.46458053588867],[49.31427764892584,56.382301330566406],[49.120704650879134,56.42201614379877],[48.94845199584972,56.353889465332024],[48.98272705078142,56.1623878479005],[48.68954467773432,56.09873199462896],[48.433818817138956,55.83564758300781],[47.99329757690447,55.9805641174317],[47.882141113281364,56.13944625854498],[47.48185729980468,56.20182800292963],[47.35260391235368,56.34806060791027],[46.82055664062517,56.201248168945256],[46.72156143188482,56.13411712646478],[46.531948089599666,56.16180801391612],[46.15256881713873,56.02133560180663],[46.07202148437506,56.19384765624999],[45.88854217529325,56.24811935424805],[45.96123123168945,56.404739379882926],[45.7863502502442,56.46862792968761],[45.67081069946295,56.58627700805664],[45.93265914916998,56.67398834228521],[45.908119201660156,56.843009948730526],[46.271324157715064,56.90852355957031],[46.76093292236351,56.959270477295036],[47.12258529663103,56.9371070861817],[47.20400238037115,56.84808731079112],[47.45054626464861,56.89188766479497],[47.732067108154524,57.06726074218755],[47.93585586547846,57.00985717773443],[48.16909790039068,57.04462814331055],[48.28388214111345,57.172962188720696],[48.4762496948245,57.138401031494254],[48.866508483887,57.17507171630864],[48.97995376586931,57.10931777954107],[49.188396453857536,57.191642761230526],[49.37073516845709,57.04097747802739],[49.62610244751005,57.10309219360363],[49.76773834228527,57.06097412109381],[49.80406951904296,56.90103530883795],[50.0118865966798,56.89493560791027],[50.1399002075197,56.797241210937614],[50.07308959960966,56.66929626464855]]]},"properties":{"ID_0":188,"ISO":"RU-ME","NAME_0":"Russia","ID_1":41,"NAME_1":"Mariy-El","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Марий Эл","VARNAME_1":"Mari|Mari-El|Republic of Mari El|Mariyskaya A.S.S.R.|Respublika Mariy El"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.11295318603515,55.05263519287103],[46.41702270507818,54.890769958496094],[46.480495452881144,54.76414489746099],[46.53348922729515,54.57398223876959],[46.69564056396484,54.39857864379883],[46.601036071777514,54.30510711669933],[46.36988449096708,54.2003440856933],[46.00680541992215,54.13702774047846],[45.84861755371099,53.97801208496105],[45.78382492065447,53.92664718627924],[45.339862823486555,53.87789154052746],[45.26502227783209,53.96246337890625],[44.94587707519537,53.965099334716854],[44.69901275634783,53.89772415161138],[44.63897705078131,53.83079147338873],[44.77973175048828,53.714698791503906],[44.598110198974666,53.6611785888673],[44.207118988037394,53.6920433044433],[44.00194931030268,53.76100158691406],[43.96096038818364,53.87809371948248],[43.584739685058764,53.993286132812614],[43.465740203857706,53.95763397216791],[43.26795196533203,54.01023101806652],[43.21132278442411,53.81036376953136],[42.626132965088175,53.76057815551758],[42.35323715209955,53.803802490234425],[42.493293762207315,53.96506118774419],[42.387748718261776,54.05428314208996],[42.72181320190435,54.16326141357422],[42.50807571411161,54.28580856323242],[42.58839416503912,54.483566284179744],[42.71737670898443,54.566768646240234],[42.403530120849894,54.72101211547863],[42.45948028564476,54.83276367187499],[42.6089515686038,54.763957977294865],[42.785453796386946,54.80738830566406],[42.90859985351579,54.75009155273449],[43.406631469726555,54.9408073425293],[43.72364425659191,54.8052215576173],[43.972797393799,54.78860855102539],[44.00392150878935,54.71948623657237],[44.25671386718767,54.590469360351676],[44.49576950073259,54.523147583007926],[44.9380798339846,54.469371795654354],[45.096000671386776,54.75362396240234],[45.29070663452177,54.86722564697277],[45.47542572021513,54.90557861328119],[45.4653968811038,55.0689048767091],[45.64815521240239,55.16316223144537],[45.724548339843864,55.01140213012695],[45.97623443603521,54.99423217773449],[46.11295318603515,55.05263519287103]]]},"properties":{"ID_0":188,"ISO":"RU-MO","NAME_0":"Russia","ID_1":42,"NAME_1":"Mordovia","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Мордовия","VARNAME_1":"Mordov|Mordvian Autonomous Republic|Mordvinia|Republic of Mordovia|Mordovian A.S.S.R."}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[37.61025619506852,55.94179153442383],[37.87090682983427,55.81390762329113],[37.89623641967779,55.660552978515625],[37.5865478515625,55.550487518310604],[37.40147781372093,55.73043441772461],[37.41034317016596,55.85352325439464],[37.61025619506852,55.94179153442383]]]},"properties":{"ID_0":188,"ISO":"RU-MOW","NAME_0":"Russia","ID_1":43,"NAME_1":"Moscow City","TYPE_1":"Gorod","ENGTYPE_1":"City","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[38.32255554199236,56.75940322875988],[38.432846069335994,56.68896484374994],[38.320983886718864,56.51554489135742],[38.48987960815441,56.3611679077149],[38.44150543212919,56.250606536865234],[38.56043624877958,56.14213943481451],[38.613887786865405,55.985824584960994],[38.864627838134815,55.91325378417969],[39.04911422729503,55.9370231628418],[39.14805984497075,55.83596420288086],[39.381835937500284,55.75542831420898],[39.92851257324213,55.812946319580135],[40.085449218750284,55.624637603759815],[40.081409454345874,55.50656509399413],[40.24649429321295,55.3130722045899],[39.88040924072294,55.09492874145508],[39.82563018798851,54.99158859252935],[39.554161071777344,54.962036132812436],[39.25247573852556,54.621158599853516],[38.848407745361385,54.586853027343864],[38.683719635009936,54.2278099060058],[38.6728973388673,54.22926712036138],[38.67010116577177,54.23009490966802],[38.6642951965332,54.23201370239252],[38.59634780883806,54.25447082519531],[38.44290924072283,54.397415161132926],[38.515602111816406,54.593887329101676],[38.13704299926752,54.690452575683594],[37.96731185913103,54.83044433593744],[37.68643188476557,54.693054199218864],[37.48008346557623,54.80990219116222],[37.23786544799833,54.82754898071289],[37.15329360961913,55.07462310791015],[36.97644424438493,55.21963500976568],[36.64088439941406,55.22678756713873],[36.45362472534197,55.28030776977539],[36.33795166015641,55.15635681152355],[35.77828598022461,55.26192855834972],[35.58991241455095,55.204761505126896],[35.37735366821289,55.22885131835949],[35.28896713256847,55.28449249267584],[35.3502731323245,55.49065017700207],[35.34578704833984,55.75846481323236],[35.15716552734381,55.92962265014654],[35.328563690185604,56.07001113891607],[35.32214736938504,56.195327758789006],[35.47354507446295,56.2736701965332],[35.50653076171892,56.40373229980474],[35.67980957031273,56.460479736328125],[35.918178558349894,56.35478973388666],[36.24590301513677,56.3817977905274],[36.83159255981474,56.553646087646484],[37.131431579590014,56.52648162841797],[37.14842605590849,56.70548248291021],[37.586418151855526,56.81877136230474],[37.65044021606474,56.91661071777349],[38.02349853515641,56.84601593017584],[38.093559265136946,56.74406051635748],[38.32255554199236,56.75940322875988]],[[37.61025619506852,55.94179153442383],[37.41034317016596,55.85352325439464],[37.40147781372093,55.73043441772461],[37.5865478515625,55.550487518310604],[37.89623641967779,55.660552978515625],[37.87090682983427,55.81390762329113],[37.61025619506852,55.94179153442383]]]},"properties":{"ID_0":188,"ISO":"RU-MOS","NAME_0":"Russia","ID_1":44,"NAME_1":"Moskva","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Московская область","VARNAME_1":"Mosca|Moscou|Moscow|Moskau|Moskova|Moskovskaya"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[32.82707977294916,66.58953094482428],[32.57421875,66.6021118164063],[32.28549575805681,66.37529754638672],[31.84942436218284,66.38124084472662],[31.576398849487475,66.62628936767578],[31.356845855712887,66.65115356445318],[30.67318725585943,66.64738464355479],[29.414360046386943,66.5865631103515],[29.08628273010254,66.82426452636719],[29.05362892150873,66.97798919677734],[29.642585754394702,67.35395050048828],[29.959157943725756,67.51733398437511],[30.03453063964838,67.66936492919915],[29.694522857666126,67.79374694824219],[29.334667205810717,68.07470703125],[28.65979194641113,68.19510650634788],[28.45036888122587,68.54766845703136],[28.716123580932557,68.73771667480469],[28.803527832031193,68.87494659423857],[28.434745788574276,68.90841674804688],[29.25886154174833,69.1198120117188],[29.314947128296122,69.3027801513673],[29.98613548278831,69.41334533691412],[30.365776062012003,69.6171112060548],[30.526632308959957,69.5425262451173],[30.94555473327642,69.58621978759777],[30.88333320617687,69.78958129882807],[31.521354675292965,69.67968750000011],[31.713020324707202,69.7963485717774],[32.05155944824236,69.80156707763683],[32.060417175293026,69.9437484741211],[32.514583587646655,69.8333358764649],[33.10156250000017,69.73698425292969],[33.09947586059575,69.6473999023438],[32.83333206176758,69.56666564941406],[32.16666793823259,69.63749694824224],[32.50624847412121,69.48124694824224],[33.491664886474894,69.402084350586],[33.366664886474666,69.2750015258789],[33.956249237060604,69.31041717529308],[35.25833511352539,69.19166564941406],[35.53489303588867,69.22239685058594],[36.281250000000284,69.09791564941435],[36.817184448242244,68.92343902587902],[37.658332824707315,68.68958282470714],[38.37551879882841,68.37551879882812],[38.6416664123538,68.37291717529303],[39.5796852111817,68.03176879882807],[39.86405944824236,68.0390625],[40.65416717529302,67.80000305175791],[41.03697586059564,67.63176727294933],[40.95885086059576,67.55468750000011],[41.12031555175787,67.40781402587919],[41.081771850585994,67.2484359741211],[41.351562500000284,67.19322967529303],[41.34739303588873,66.99218750000006],[41.08906555175787,66.74427032470714],[40.561981201172046,66.4505157470706],[40.002082824707315,66.25416564941405],[39.47499847412109,66.18333435058605],[39.11875152587896,66.10208129882824],[38.28333282470709,66.05625152587896],[37.73333358764654,66.10416412353527],[37.18333435058594,66.23542022705072],[36.55625152587896,66.27500152587896],[35.37916564941406,66.41458129882812],[34.90416717529308,66.59375],[34.462501525878906,66.53958129882818],[34.37760162353533,66.64635467529303],[33.94166564941412,66.68333435058594],[33.69010162353543,66.80468750000006],[33.502082824706974,66.71666717529297],[32.979167938232536,66.8958358764649],[32.75416564941435,67.0770797729495],[32.53906249999994,67.00364685058622],[32.53749847412138,66.87291717529297],[32.929164886474894,66.68125152587896],[33.18958282470726,66.6729202270509],[33.31614303588873,66.6359329223634],[33.265926361083984,66.60386657714871],[33.2487335205081,66.60832977294922],[33.2491340637207,66.61071014404301],[33.251560211181584,66.61557006835955],[33.24523544311552,66.620834350586],[33.24272918701189,66.62291717529303],[33.26813888549816,66.61458587646496],[33.27961349487321,66.61458587646496],[33.256248474121264,66.63333129882812],[33.13333511352556,66.64375305175793],[33.09488677978533,66.58125305175781],[33.08540344238286,66.58129882812523],[33.06508636474638,66.58080291748058],[33.059864044189396,66.57917022705078],[32.870834350585994,66.59999847412115],[32.82707977294916,66.58953094482428]]]},"properties":{"ID_0":188,"ISO":"RU-MUR","NAME_0":"Russia","ID_1":45,"NAME_1":"Murmansk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Мурманская область","VARNAME_1":"Murmanskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[49.140106201171875,69.50260162353521],[49.34583282470714,69.48750305175781],[49.932815551757805,69.31822967529308],[50.169269561767805,69.17760467529303],[49.6895828247072,68.86250305175787],[49.18958282470709,68.75624847412132],[48.58541488647483,68.70417022705078],[48.23333358764654,68.87291717529314],[48.231769561767635,69.10572814941412],[48.377601623535384,69.30573272705078],[48.733333587646655,69.45833587646484],[49.140106201171875,69.50260162353521]]],[[[64.7208328247072,69.24583435058594],[64.75468444824223,69.19947814941406],[64.73698425292997,69.13385009765625],[64.76014709472656,69.12368774414074],[64.59991455078142,69.00817871093749],[64.7704162597658,68.86550903320312],[65.30855560302757,68.81558227539068],[65.711166381836,68.53039550781249],[65.48619842529308,68.40888214111328],[65.06198120117216,68.41088867187528],[64.58423614501947,68.33515167236334],[64.61116027832048,68.19655609130854],[63.93441009521479,68.02709197998053],[63.98976135253906,67.91629791259771],[63.740608215331974,67.80329895019531],[63.38210678100597,67.7717514038087],[63.13280105590849,67.67556762695318],[62.96840667724615,67.53881072998053],[62.94461059570318,67.40357971191412],[61.45497512817399,66.99696350097662],[60.20227813720714,66.98963928222656],[58.98286056518572,66.98661804199224],[55.97161865234391,66.97808074951178],[54.594753265381144,66.99330139160162],[52.16579818725603,67.0763626098634],[51.643352508544865,66.91107940673851],[51.554416656494425,66.77960968017578],[51.262855529785384,66.71501922607428],[48.93068695068359,66.10868072509771],[48.10776519775419,66.13459014892578],[47.67824554443371,65.94245147705072],[47.80115509033203,65.85836791992188],[47.1370964050293,65.83535766601568],[46.41108703613281,66.07476043701178],[46.147785186767635,66.02928161621094],[45.856849670410384,66.11561584472666],[45.6815948486331,66.08473205566418],[45.193916320801065,66.21047973632812],[44.63889694213873,66.27404022216803],[44.45759582519537,66.37618255615229],[44.21242523193354,66.39486694335949],[44.471351623535384,66.6713485717774],[44.35885620117216,66.77656555175781],[44.520832061767635,66.9000015258789],[44.30833435058622,67.06458282470703],[43.76718521118181,67.25885009765653],[44.143230438232706,67.75885009765625],[44.11927413940447,67.88072967529297],[44.20364379882807,68.30156707763678],[43.500000000000284,68.54374694824219],[43.43125152587896,68.66874694824224],[44.0625,68.53125000000011],[44.88124847412132,68.55208587646479],[45.470832824707315,68.52500152587885],[45.88750076293974,68.45625305175787],[46.03697586059575,68.32447814941412],[46.54531478881859,68.12031555175781],[46.531768798828296,68.02239990234386],[46.69166564941412,67.80625152587896],[46.30625152587919,67.81458282470703],[45.36249923706072,67.71458435058611],[45.31614303588884,67.57968902587902],[44.9838562011721,67.489067077637],[44.95833206176774,67.31874847412121],[45.58124923706072,67.16041564941412],[45.808856964111385,66.8984375],[46.033332824707315,66.81874847412108],[46.572399139404524,66.8578109741211],[46.66041564941428,66.81458282470707],[47.458332061767635,66.91666412353521],[47.74531555175804,67.00468444824219],[47.77135086059593,67.3348999023438],[47.930728912353686,67.42760467529303],[47.83177185058622,67.57865142822288],[47.995315551757805,67.6296844482423],[48.6354179382327,67.68541717529297],[48.90625000000017,67.8291702270509],[49.18750000000028,67.85416412353527],[49.92291641235362,68.04792022705107],[50.83750152587896,68.33750152587902],[51.568748474121094,68.4229202270509],[51.54583358764677,68.48124694824224],[52.02708435058594,68.53333282470707],[52.29531478881852,68.4557342529298],[52.41249847412104,68.32499694824241],[52.745834350585994,68.44374847412104],[52.4833335876466,68.65625],[53.375,68.88333129882818],[53.60885620117193,68.88281250000011],[53.8651008605957,68.7921829223634],[53.73176956176758,68.59843444824213],[53.941143035888615,68.39843750000006],[53.4333343505861,68.37083435058621],[53.2348937988284,68.22968292236334],[53.70833206176763,68.24791717529297],[54.02656555175787,68.21510314941406],[54.22083282470714,68.30833435058588],[54.46458435058605,68.29166412353521],[54.63958358764659,68.183334350586],[54.9937515258789,68.4166641235351],[55.38124847412138,68.54792022705078],[55.67083358764654,68.55000305175798],[56.01458358764677,68.64375305175787],[56.456249237060604,68.589584350586],[57.33906555175787,68.53385162353538],[57.6588516235351,68.73384857177746],[58.879165649414006,68.97708129882812],[59.351562500000284,68.81406402587895],[59.478649139404524,68.67552185058594],[59.19427108764671,68.66614532470697],[59.174999237060774,68.38749694824236],[59.692184448242415,68.32447814941412],[59.972393035888835,68.49948120117188],[59.80468750000006,68.61510467529318],[60.5187492370606,68.70833587646484],[60.89791488647484,68.88749694824224],[60.97447586059565,68.98176574707043],[60.88906478881853,69.13072967529308],[60.64427185058594,69.13385009765625],[60.63489913940435,69.25781249999994],[60.22343444824247,69.50781250000011],[60.206771850585994,69.6223983764649],[60.73541641235357,69.65625],[60.72343444824219,69.8098983764649],[60.887500762939396,69.85624694824224],[61.45416641235362,69.77083587646496],[61.902084350586215,69.73750305175776],[62.783332824707195,69.71458435058605],[63.53749847412126,69.629165649414],[64.308334350586,69.49791717529308],[64.95625305175787,69.29374694824224],[64.7208328247072,69.24583435058594]]],[[[59.04843521118158,70.45051574707031],[59.60208511352544,70.19999694824229],[60.452083587646655,69.92916870117199],[60.50416564941412,69.72083282470709],[59.99010086059564,69.65989685058594],[59.600521087646534,69.72135162353516],[59.45677185058594,69.88385009765625],[59.02135467529302,69.87551879882818],[58.62916564941406,70.06250000000011],[58.767185211181705,70.40052032470703],[59.04843521118158,70.45051574707031]]]]},"properties":{"ID_0":188,"ISO":"RU-NEN","NAME_0":"Russia","ID_1":46,"NAME_1":"Nenets","TYPE_1":"Avtonomnyy Okrug","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"Ненецкий АОк","VARNAME_1":"Nenetskiy A.Okr.|Nenetskiy Aok"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.390293121338175,58.07998275756841],[46.474205017089844,58.05123901367187],[47.379295349121314,58.01665496826166],[47.7784423828125,57.94479370117187],[47.60154342651367,57.83774948120122],[47.54647445678734,57.62343215942394],[47.02562713623047,57.50749206542974],[46.83543777465826,57.527214050293075],[46.707847595214844,57.42402267456055],[46.8387985229495,57.21585083007818],[46.76093292236351,56.959270477295036],[46.271324157715064,56.90852355957031],[45.908119201660156,56.843009948730526],[45.93265914916998,56.67398834228521],[45.67081069946295,56.58627700805664],[45.7863502502442,56.46862792968761],[45.96123123168945,56.404739379882926],[45.88854217529325,56.24811935424805],[46.07202148437506,56.19384765624999],[46.15256881713873,56.02133560180663],[46.11907196044922,55.816932678222656],[45.9772682189942,55.709350585937436],[46.01667785644537,55.610549926757756],[46.39575576782232,55.48254776000982],[46.24536132812506,55.28040313720703],[46.091865539551065,55.22121047973633],[46.11295318603515,55.05263519287103],[45.97623443603521,54.99423217773449],[45.724548339843864,55.01140213012695],[45.64815521240239,55.16316223144537],[45.4653968811038,55.0689048767091],[45.47542572021513,54.90557861328119],[45.29070663452177,54.86722564697277],[45.096000671386776,54.75362396240234],[44.9380798339846,54.469371795654354],[44.49576950073259,54.523147583007926],[44.25671386718767,54.590469360351676],[44.00392150878935,54.71948623657237],[43.972797393799,54.78860855102539],[43.72364425659191,54.8052215576173],[43.406631469726555,54.9408073425293],[42.90859985351579,54.75009155273449],[42.785453796386946,54.80738830566406],[42.6089515686038,54.763957977294865],[42.45948028564476,54.83276367187499],[42.453159332275504,55.000286102294865],[42.22428131103521,54.94297027587885],[41.86863708496122,55.02573776245122],[41.8036880493164,55.11595535278326],[41.874668121338004,55.131786346435604],[42.13646697998041,55.408931732177784],[42.08871078491228,55.60809326171874],[42.26237106323248,55.743309020996094],[42.42458343505882,55.79261016845708],[42.47143936157254,55.90983963012701],[42.691493988037166,55.97716522216797],[42.71823883056657,56.08634185791021],[42.933547973632756,56.20075225830083],[42.744323730468864,56.2433128356933],[42.620475769043026,56.40495300292963],[42.91299819946317,56.472671508789006],[42.92481613159208,56.62143707275385],[42.8017654418947,56.76897811889643],[42.97316741943388,56.83714294433605],[43.51523971557617,56.88269805908214],[43.68645858764659,57.06120300292974],[43.49840164184564,57.11389541625982],[43.556827545166016,57.247447967529354],[43.78118133544939,57.313419342041065],[43.72822952270519,57.44832992553722],[44.079048156738565,57.44083404541009],[44.38940811157232,57.51670074462902],[44.611461639404354,57.7028465270996],[44.7562332153322,57.69328689575195],[44.87721633911144,57.86728286743164],[44.88726806640642,58.066131591796875],[45.224075317382756,58.07514190673834],[45.466667175293246,58.033771514892585],[45.63156509399425,57.921977996826165],[45.86507034301775,58.044666290283196],[46.390293121338175,58.07998275756841]]]},"properties":{"ID_0":188,"ISO":"RU-NIZ","NAME_0":"Russia","ID_1":47,"NAME_1":"Nizhegorod","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Нижегородская область","VARNAME_1":"Gor'kiy|Gor'kovskaya|Gorky|Nizhegorodskaya|Nizhniy-Novgorod|Nizhegorodskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[44.96052932739286,43.643440246582145],[44.92815780639642,43.535919189453125],[44.81823348999051,43.48669052124029],[44.597927093505916,43.527099609375114],[44.58394241333008,43.39837646484375],[44.661403656005916,43.34613418579107],[44.66234970092779,43.204257965088004],[44.92951583862322,43.04457092285156],[44.98039627075207,42.88537597656256],[44.91403198242193,42.81735229492199],[44.67710876464843,42.74794769287121],[44.49127197265619,42.74933624267578],[44.25662231445341,42.68871688842785],[44.20903778076172,42.62676239013677],[43.948078155517805,42.558475494384766],[43.73138046264654,42.627563476562614],[43.79086303710966,42.750072479248104],[43.56170654296881,42.8660888671875],[43.417610168457145,42.89511108398443],[43.62340545654325,42.91222381591797],[43.8518829345706,43.130386352539006],[43.93302917480486,43.26514053344721],[44.16654205322271,43.201122283935604],[44.217716217041016,43.34904098510753],[44.522533416748104,43.36967849731445],[44.522731781005916,43.59682464599615],[44.42427062988309,43.7303581237793],[44.71249008178711,43.759857177734375],[44.888744354248104,43.726741790771484],[44.96052932739286,43.643440246582145]]]},"properties":{"ID_0":188,"ISO":"RU-SE","NAME_0":"Russia","ID_1":48,"NAME_1":"North Ossetia","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Северная Осетия","VARNAME_1":"Kuzey Osetya|Respublika Severnaya Osetiya|Severnaya Osetiya-Alaniya|North Ossetian A.S.S.R.|Republic of North Osetia-Alania"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.80104064941406,59.090866088867294],[35.04992294311529,58.977817535400504],[35.19412612915045,58.84885787963873],[35.52941894531267,58.867214202880966],[36.203342437744425,58.6744270324707],[36.33991622924816,58.53141403198243],[36.471992492676065,58.522487640380916],[36.16667938232439,58.48733139038085],[35.98049926757807,58.39838790893566],[35.6119003295899,58.43427276611333],[35.40372085571312,58.3637351989746],[35.34325408935541,58.26561737060547],[35.094562530517635,58.172420501708984],[34.85094451904308,58.228973388671875],[34.742275238037166,58.056179046630916],[34.23824310302757,58.19052124023444],[33.62504196167009,58.04153060913097],[33.7308349609375,57.96771240234375],[33.64765548706083,57.71880340576171],[33.417179107666016,57.66699600219726],[33.387847900390796,57.55055236816406],[33.09372711181635,57.40131759643555],[32.80146408081072,57.39684677124035],[32.67626571655302,57.2868309020996],[32.30517959594726,57.20772933959961],[32.31204986572294,57.1481323242188],[31.81422615051275,57.05892181396489],[31.656005859375167,56.88953399658209],[31.013320922851847,56.941478729248104],[30.842266082763732,56.917984008789176],[30.70230293273954,57.00981521606457],[30.820951461792045,57.225479125976676],[30.48054122924816,57.345027923583984],[30.661579132080245,57.53031158447265],[30.507642745971964,57.628013610839844],[30.54988288879423,57.874526977539176],[30.308898925781307,57.87091445922851],[29.87174606323259,58.03969955444336],[29.69514465332037,58.06834030151372],[29.7235622406007,58.22328186035157],[29.928386688232365,58.28647613525396],[29.92828369140619,58.4405021667481],[30.156940460205078,58.46409606933605],[30.109523773193644,58.617698669433594],[30.190319061279293,58.74063491821289],[30.384458541870227,58.67791748046886],[30.67292976379423,58.7098999023438],[30.77192878723173,58.82664108276367],[30.955749511719034,58.90620422363293],[31.01038360595703,59.01668167114263],[31.40617179870611,59.021141052246094],[31.574846267700256,59.22243499755871],[31.547933578491495,59.34099197387706],[31.888818740844954,59.27622222900402],[31.98918533325218,59.386997222900334],[32.31957626342802,59.26882171630871],[32.415027618408374,59.13207244873041],[32.720314025878906,59.06417846679681],[32.810691833496264,59.26338195800786],[33.127540588378906,59.356391906738224],[33.29788970947271,59.288463592529354],[33.69261932373058,59.34622955322276],[33.89463043212908,59.16339111328125],[34.1487998962404,59.10237503051769],[34.36262893676775,59.15995788574218],[34.80104064941406,59.090866088867294]]]},"properties":{"ID_0":188,"ISO":"RU-NGR","NAME_0":"Russia","ID_1":49,"NAME_1":"Novgorod","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Новгородская область","VARNAME_1":"Novgorodskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[84.45922088623064,56.020111083984375],[84.65991210937506,55.64578247070324],[84.819107055664,55.52210617065441],[84.93022155761741,55.109279632568416],[84.87792968750006,54.985649108886825],[85.07901000976568,54.80011367797857],[84.95416259765642,54.74328613281249],[84.97405242919926,54.56602096557617],[85.08579254150408,54.40634155273443],[84.61552429199224,54.28049087524414],[84.41899871826172,54.1351776123048],[84.23905181884794,54.187641143798885],[83.95371246337919,54.10057449340831],[83.85452270507841,54.117332458496094],[83.1566238403323,54.04161071777344],[82.75261688232428,53.841621398925895],[82.65225982666021,53.63429641723633],[82.45288085937517,53.51412200927746],[82.15647125244158,53.61235809326183],[82.18756103515642,53.66240692138672],[81.78419494628906,53.7239723205567],[81.56748962402361,53.925357818603516],[81.44765472412121,54.087188720703125],[81.11106109619158,54.11580276489269],[80.94847106933622,54.26935958862316],[80.57778930664062,54.206935882568416],[80.24555206298834,54.03636169433605],[79.60083770751953,53.80756378173828],[79.53343963623058,53.73154067993164],[78.99720001220709,53.658744812011825],[78.69332885742188,53.65587234497076],[78.59053039550781,53.52821350097661],[78.29058837890653,53.482833862304744],[78.09960937500006,53.56263732910156],[77.95584869384794,53.557872772216854],[77.9790878295899,53.38831329345703],[77.87168884277366,53.30647277832025],[77.57033538818382,53.480957031250114],[76.76202392578153,53.86912918090826],[76.5838241577149,53.96775436401373],[76.4266967773438,54.168167114257926],[76.74863433837895,54.16035079956055],[76.84252166748075,54.23458099365229],[76.9129714965822,54.45786666870117],[76.5041122436524,54.32680511474615],[76.23402404785162,54.35605239868164],[76.22730255126969,54.274337768554744],[75.69861602783209,54.13156890869151],[75.68568420410179,54.531581878662166],[75.7938079833985,54.66687393188471],[75.49248504638678,54.89171600341797],[75.29761505126947,54.907371520996094],[75.38691711425798,55.02746582031244],[75.1908111572265,55.26863479614269],[75.17321777343778,55.384094238281364],[75.30760955810553,55.50524520874029],[75.15763854980486,55.53881072998058],[75.09544372558588,55.67771911621094],[75.33411407470703,55.75337600708008],[75.29044342041021,55.84880828857422],[75.51678466796892,56.045333862304744],[76.00484466552746,56.15093231201171],[76.18302917480486,56.12651062011718],[76.27709197998047,56.21625518798833],[76.10459899902355,56.30200958251953],[76.03776550292974,56.472324371338004],[75.8425598144533,56.49049377441412],[76.24062347412126,56.68775558471679],[76.24051666259771,56.912467956543075],[76.10438537597685,57.229522705078125],[76.78825378417986,57.1636352539063],[78.0177078247072,57.1381072998048],[78.36187744140648,57.153560638427734],[78.43326568603544,57.09355545043957],[78.74101257324219,57.03640365600586],[79.29233551025419,56.98184204101568],[79.73370361328153,56.83523178100591],[80.26486968994169,56.41904067993164],[80.58939361572283,56.4421958923341],[81.14511871337919,56.523666381835994],[81.543754577637,56.26044845581066],[81.73280334472668,56.25837326049799],[82.38423156738281,56.36865234375006],[82.78032684326182,56.39110183715831],[82.83723449707031,56.48358917236328],[83.1100006103516,56.52379608154297],[83.23370361328136,56.42011260986334],[83.08963775634771,56.21646499633789],[83.35403442382841,55.841747283935604],[83.27904510498053,55.6742668151856],[83.60433197021501,55.67186737060552],[83.96934509277372,55.99017333984375],[84.14360809326176,56.02264785766601],[84.27587890625011,55.965461730957145],[84.45922088623064,56.020111083984375]]]},"properties":{"ID_0":188,"ISO":"RU-NVS","NAME_0":"Russia","ID_1":50,"NAME_1":"Novosibirsk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Новосибирская область","VARNAME_1":"Novosibirskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[76.10438537597685,57.229522705078125],[76.24051666259771,56.912467956543075],[76.24062347412126,56.68775558471679],[75.8425598144533,56.49049377441412],[76.03776550292974,56.472324371338004],[76.10459899902355,56.30200958251953],[76.27709197998047,56.21625518798833],[76.18302917480486,56.12651062011718],[76.00484466552746,56.15093231201171],[75.51678466796892,56.045333862304744],[75.29044342041021,55.84880828857422],[75.33411407470703,55.75337600708008],[75.09544372558588,55.67771911621094],[75.15763854980486,55.53881072998058],[75.30760955810553,55.50524520874029],[75.17321777343778,55.384094238281364],[75.1908111572265,55.26863479614269],[75.38691711425798,55.02746582031244],[75.29761505126947,54.907371520996094],[75.49248504638678,54.89171600341797],[75.7938079833985,54.66687393188471],[75.68568420410179,54.531581878662166],[75.69861602783209,54.13156890869151],[75.39719390869158,54.082256317138786],[75.45420837402338,53.96946716308588],[75.03938293457048,53.791007995605526],[74.80315399169945,53.815925598144474],[74.48483276367193,53.580051422119254],[74.40393829345726,53.46107482910162],[73.90336608886736,53.64843368530279],[73.64941406250006,53.55926895141613],[73.4008102416992,53.53163909912115],[73.24596405029301,53.57526016235362],[73.34754180908197,53.79279708862304],[73.47431945800787,53.88285446166998],[73.6913070678711,53.86210250854497],[73.75037384033197,54.054321289062614],[73.28933715820341,53.953342437744084],[73.08438873291016,53.990512847900504],[72.9811401367187,54.098300933837834],[72.41813659667986,54.14953613281249],[72.08217620849636,54.23588943481445],[71.76710510253918,54.2485466003419],[71.74656677246094,54.138534545898494],[71.52492523193376,54.1086311340332],[71.35401916503923,54.183509826660156],[71.21038818359392,54.11090087890631],[71.07300567626982,54.216091156005916],[71.09107971191412,54.32981491088878],[71.23208618164074,54.39430999755865],[71.19890594482433,54.58527374267584],[70.99948883056646,54.878849029541016],[71.01499938964872,55.07292175292969],[70.82019042968754,55.29795837402343],[70.52224731445312,55.27552413940424],[70.48387908935564,55.37136077880854],[70.71027374267595,55.474128723144645],[70.58161926269553,55.87178039550786],[70.77421569824219,55.86631774902337],[70.92158508300776,56.03067779541027],[70.87955474853521,56.16879653930664],[71.0162734985352,56.280860900878956],[70.96947479248063,56.42489624023443],[71.22164154052751,56.634525299072266],[71.37351989746098,56.617538452148494],[71.56251525878905,56.69229125976568],[71.62040710449247,56.82602691650396],[71.54615020751957,56.92844772338867],[71.14638519287132,57.171546936035156],[71.04919433593744,57.32264709472656],[70.81742095947294,57.31109619140636],[70.65911865234386,57.20405578613287],[70.42513275146501,57.3690223693847],[70.7104034423831,57.49315261840832],[70.6216735839846,57.66195678710937],[70.49469757080107,57.741832733154354],[70.54830169677746,58.04197692871105],[70.79064941406254,58.35472106933599],[70.87338256835938,58.52127838134772],[71.290824890137,58.36579895019536],[71.24032592773455,58.21358871459955],[71.3031387329102,58.02345657348633],[71.89984130859402,58.08410263061523],[72.17090606689447,57.99098587036144],[72.52975463867193,58.00011444091796],[72.82495117187517,57.959129333496094],[73.14716339111334,58.134361267089844],[74.15000915527361,58.11391830444341],[74.73494720458979,58.36335754394537],[75.16059875488287,58.57164764404308],[75.34012603759794,58.43856811523432],[75.03644561767605,58.306667327880795],[75.23374176025408,58.20693588256836],[75.09281158447283,58.087249755859375],[75.51821899414085,57.94212341308593],[75.58903503417997,57.7135353088379],[75.82158660888689,57.47215270996093],[76.10438537597685,57.229522705078125]]]},"properties":{"ID_0":188,"ISO":"RU-OMS","NAME_0":"Russia","ID_1":51,"NAME_1":"Omsk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Омская область","VARNAME_1":"Omskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[37.85785293579101,53.017463684082145],[37.88723373413086,52.77060699462896],[37.786933898925895,52.610916137695305],[37.983795166015796,52.477031707763786],[38.08731842041044,52.345558166503906],[37.75745010376005,52.15547561645502],[37.77226638793968,52.051216125488395],[37.65216064453125,51.979854583740234],[37.4966773986817,52.037471771240234],[37.40274429321306,51.954723358154354],[37.14027023315447,52.108501434326286],[36.8284454345706,52.14659500122076],[36.48174285888666,52.248493194580135],[36.34196853637701,52.38766098022461],[35.91125488281244,52.321739196777344],[35.588775634765625,52.30160522460943],[35.460609436035156,52.479900360107536],[34.95538711547846,52.376113891601555],[34.83935546875017,52.46743011474604],[35.050327301025675,52.6984024047851],[34.89869308471708,52.8263053894043],[35.02579498291021,52.94956588745117],[35.24696350097673,53.02655029296881],[35.12622451782232,53.28488540649414],[35.53010940551774,53.419132232666016],[35.59941864013689,53.52227401733409],[35.80834960937506,53.52405166625976],[35.99767684936546,53.638332366943416],[36.039611816406364,53.57264328002924],[36.285392761230696,53.531932830810604],[36.500736236572436,53.39054107666027],[36.685241699218864,53.41013336181646],[36.75029754638666,53.30532836914057],[37.121025085449276,53.27268218994152],[37.29885482788091,53.30502319335943],[37.57963562011736,53.27813720703131],[37.58091354370117,53.142402648925895],[37.77911758422857,53.112495422363224],[37.85785293579101,53.017463684082145]]]},"properties":{"ID_0":188,"ISO":"RU-ORL","NAME_0":"Russia","ID_1":52,"NAME_1":"Orel","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Орловская область","VARNAME_1":"Orlovskaya|Or'ol|Oryol|Orlovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[53.3920555114746,54.05834579467779],[53.63262939453119,53.81281661987305],[53.81612777709984,53.69990921020507],[54.05044174194353,53.483718872070305],[54.21290588378906,53.40169525146484],[54.506992340088175,53.35881423950207],[54.622863769531534,53.24052810668957],[54.85125732421892,53.27014160156256],[54.96802520751953,53.03781890869146],[55.164718627929744,52.83671188354498],[55.33386230468756,52.86939239501959],[55.350761413574155,52.660835266113224],[55.455417633056804,52.607715606689396],[55.52683639526373,52.4270591735841],[55.74633026123058,52.37069702148449],[55.87468719482433,52.41638565063488],[56.076580047607536,52.671535491943416],[56.30926513671875,52.57383728027355],[56.43438339233427,52.454502105713004],[56.41641616821294,52.28343200683594],[56.65333938598661,52.08392715454113],[56.76434326171875,51.938571929931754],[56.67132186889643,51.853351593017514],[56.84771728515625,51.67733764648443],[57.0214614868164,51.72510528564453],[57.252754211425895,51.56111145019531],[57.59904098510736,51.68700408935547],[57.717884063720646,51.84242630004894],[58.12882995605486,51.791187286376946],[58.285514831543196,51.70486068725591],[58.66092681884793,51.82437133789068],[58.736724853515796,52.03905868530279],[58.72232818603544,52.264278411865284],[58.928104400634936,52.32921218872082],[58.870468139648494,52.46748733520519],[59.01293563842802,52.468856811523494],[59.264503479003906,52.30434417724603],[59.28738403320312,52.448772430420036],[59.482364654540966,52.498386383056754],[60.08536529541011,52.43814849853521],[60.21855926513672,52.39468765258789],[60.234333038330135,52.27692031860362],[60.091457366943416,52.20063400268566],[60.0258522033692,52.08017349243164],[60.115940093994425,51.99730300903332],[60.18087387084977,51.903568267822266],[60.52256393432622,51.78223419189459],[60.391921997070476,51.701580047607415],[60.598567962646655,51.61519241333008],[60.905143737792905,51.61412429809581],[61.002735137939624,51.465114593505916],[61.28881072998052,51.410171508789176],[61.51049041748076,51.413852691650504],[61.57982254028349,51.23204040527338],[61.45083999633794,50.80731582641612],[61.00797271728532,50.68606948852538],[60.8279304504395,50.66099929809576],[60.35491943359392,50.67935943603521],[60.06900405883794,50.86558151245117],[59.83271408081083,50.584293365478565],[59.531326293945476,50.51446914672857],[59.53738403320307,50.61064910888672],[58.88339996337908,50.709072113037166],[58.76831817626981,50.83797454833979],[58.598819732666065,50.82670211791997],[58.54582595825224,51.07506561279291],[58.170349121094034,51.06772994995117],[57.754291534423935,51.129745483398544],[57.73920822143583,50.9580078125],[57.42689895629888,50.895694732666016],[57.18350982666027,51.09526443481451],[57.05244827270508,51.05657577514654],[56.72874450683599,51.07838439941412],[56.731510162353565,50.971805572509766],[56.463497161865284,51.06429290771489],[56.38363265991239,50.926029205322266],[56.1739120483399,50.91859436035162],[56.138401031494084,50.77122497558588],[55.66372299194336,50.57223510742199],[55.3549537658692,50.65993499755864],[55.0611190795899,50.83264541625982],[54.70629882812517,50.894241333007756],[54.65537643432622,50.8105201721192],[54.72864151001005,50.634586334228516],[54.50809478759759,50.54003524780279],[54.425754547119425,50.619365692138665],[54.47310256958002,50.788955688476506],[54.16603088378912,51.02014923095703],[54.12952804565458,51.11880493164062],[53.74991989135748,51.20348739624035],[53.61473464965849,51.29279708862305],[53.570262908935774,51.43163681030268],[53.37876892089861,51.51400375366222],[53.14843368530285,51.52548217773443],[52.958221435547046,51.4718589782716],[52.80209732055681,51.504959106445426],[52.54562759399437,51.46736526489258],[52.38298797607421,51.656818389892635],[51.85733795166021,51.683288574218864],[51.76153564453141,51.6027450561524],[51.42888641357439,51.482570648193295],[51.358562469482536,51.653324127197266],[51.26677703857439,51.689735412597706],[50.88953781127958,51.68049240112315],[50.83658599853543,51.74708557128906],[50.86277770996087,51.79518127441412],[51.3208961486817,52.01918029785167],[51.451011657715014,52.130733489990234],[51.41514205932623,52.35010147094732],[51.570575714111385,52.48341751098633],[51.54378890991205,52.65265274047857],[51.684833526611385,52.680240631103516],[51.74055480957048,52.86372756958008],[52.08806991577171,53.013217926025334],[52.08682250976585,53.1885032653808],[52.172378540039226,53.31325531005865],[52.09883880615257,53.512184143066456],[52.211967468261776,53.61233901977539],[52.250480651855696,53.754451751708984],[52.38597488403326,53.87900924682617],[52.450824737548885,54.065792083740284],[52.36262130737299,54.1335182189942],[52.40178680419933,54.33279800415045],[52.55948638916021,54.38675308227539],[52.99634170532249,54.291648864746094],[53.063671112060774,54.152427673339844],[53.3920555114746,54.05834579467779]]]},"properties":{"ID_0":188,"ISO":"RU-ORE","NAME_0":"Russia","ID_1":53,"NAME_1":"Orenburg","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Оренбургская область","VARNAME_1":"Chkalov|Orenburgskaya|Orenburgskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.84861755371099,53.97801208496105],[46.0453910827639,53.99513626098633],[46.49857711792015,53.624591827392635],[46.49107742309587,53.4961776733399],[46.675735473632926,53.49396133422857],[46.92005920410184,53.36815261840832],[46.96586608886713,53.160194396972656],[46.91351318359381,52.92414474487299],[46.98453521728527,52.813636779785156],[46.80248260498052,52.64192199707042],[46.64696121215826,52.731746673583984],[46.34008026123064,52.666866302490234],[46.001731872558764,52.52402496337902],[45.97423553466791,52.4033088684082],[45.72552871704124,52.51664733886719],[45.531406402588175,52.414634704589844],[45.14360046386736,52.40697097778326],[45.075187683105526,52.33676910400385],[44.835979461670206,52.48129272460949],[44.588054656982536,52.5098228454591],[44.54317474365251,52.406387329101506],[44.30767822265631,52.29363250732433],[43.96572494506852,52.3748397827149],[43.814968109131144,52.44512176513672],[43.46720123291026,52.355495452880916],[43.28373336791998,52.45236206054682],[43.115215301513615,52.39695358276361],[43.118705749512,52.497768402099666],[43.27666473388683,52.67499160766613],[42.98170852661127,52.902549743652344],[42.591297149658374,53.112251281738395],[42.59943389892578,53.182258605957145],[42.32117462158209,53.42033004760748],[42.10821533203136,53.55317687988287],[42.11437606811552,53.78124237060546],[42.35323715209955,53.803802490234425],[42.626132965088175,53.76057815551758],[43.21132278442411,53.81036376953136],[43.26795196533203,54.01023101806652],[43.465740203857706,53.95763397216791],[43.584739685058764,53.993286132812614],[43.96096038818364,53.87809371948248],[44.00194931030268,53.76100158691406],[44.207118988037394,53.6920433044433],[44.598110198974666,53.6611785888673],[44.77973175048828,53.714698791503906],[44.63897705078131,53.83079147338873],[44.69901275634783,53.89772415161138],[44.94587707519537,53.965099334716854],[45.26502227783209,53.96246337890625],[45.339862823486555,53.87789154052746],[45.78382492065447,53.92664718627924],[45.84861755371099,53.97801208496105]]]},"properties":{"ID_0":188,"ISO":"RU-PNZ","NAME_0":"Russia","ID_1":54,"NAME_1":"Penza","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Пензенская область","VARNAME_1":"Penzenskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[57.41663742065435,56.34223175048828],[57.20583343505871,56.1882438659668],[56.956630706787216,56.11451721191406],[56.81703186035162,56.14175796508795],[56.49899291992182,56.383789062499936],[56.265800476074276,56.31492614746088],[56.04634475708008,56.308773040771484],[55.86119079589861,56.50003814697271],[55.697883605957145,56.499252319335994],[55.357685089111605,56.38758468627935],[55.1863250732423,56.44576644897466],[54.962570190429965,56.404541015625114],[54.53579711914062,56.512344360351506],[54.40242767333979,56.371795654296875],[54.34623336792003,56.498722076416016],[54.092826843262,56.627586364746094],[53.882770538330014,56.655681610107365],[53.86454772949213,56.82402420043951],[54.065467834472656,56.83771133422857],[54.33173751831066,57.114879608154354],[54.30456542968761,57.325424194336044],[54.170021057129134,57.346649169921875],[54.255550384521534,57.5038414001466],[54.06269454956054,57.598224639892635],[54.192737579345874,57.83029937744151],[54.11820220947294,57.989734649658196],[53.81688690185564,58.25019454956065],[53.8800697326663,58.295551300048885],[53.7747535705567,58.49010086059576],[53.7239723205567,58.702011108398445],[53.89552688598644,58.78835296630871],[53.743618011474666,59.00772094726556],[53.831005096435604,59.07246398925786],[53.34154129028326,59.18701171874994],[53.20914459228544,59.362506866455135],[53.55577087402361,59.709747314453175],[53.64973831176758,59.91240692138671],[53.65305328369157,60.06802749633795],[53.44427108764643,60.23085403442383],[53.34511947631853,60.14365386962897],[52.46321868896496,60.21602630615229],[52.285900115967074,60.26606750488281],[52.34331512451172,60.454681396484375],[52.151748657226676,60.540481567382805],[51.767921447754134,60.61202621459966],[51.90845489501958,60.899967193603516],[52.34781265258795,60.85905838012707],[52.473438262939396,60.9816131591798],[52.78018569946289,60.96966934204112],[52.87033843994146,61.09071350097667],[53.435371398926065,61.053703308105575],[53.34232711792014,60.90008926391596],[53.82891845703142,60.8596305847169],[53.8814392089846,60.98693084716808],[54.98949813842779,60.90363311767572],[55.11632537841808,61.047557830810554],[55.31709671020502,61.158611297607415],[55.7725257873538,61.14268875122081],[55.90676498413108,61.29584884643566],[56.29581069946289,61.24907684326171],[56.45552062988298,61.459346771240234],[56.743568420410156,61.559963226318416],[57.11002349853521,61.5022583007813],[57.230220794677734,61.53449249267583],[58.035297393799,61.50741577148444],[58.84975051879883,61.51890563964855],[59.39514541626005,61.69829559326172],[59.49711227416992,61.57759094238286],[59.30701065063482,61.346149444580135],[59.37621688842779,61.04436111450195],[59.50327301025407,60.9236564636231],[59.50138854980468,60.76552963256841],[59.40550613403315,60.571990966796875],[59.21519470214872,60.35075759887706],[59.22676467895519,60.25355911254883],[59.06970214843744,59.984901428222656],[58.77598571777338,59.85326766967779],[58.630619049072315,59.73645019531255],[58.489196777343814,59.49189758300787],[58.74021148681646,59.3237419128418],[58.98773193359392,59.2827377319337],[59.15748214721685,59.170585632324325],[59.21200942993187,58.98324584960943],[59.108390808105746,58.83696365356445],[59.413845062256144,58.67742156982421],[59.47598648071311,58.546356201171875],[58.81058502197271,58.26418685913086],[58.59856033325195,58.09420776367193],[58.68779373168962,57.93784332275401],[58.84773254394549,57.91762161254883],[58.87579345703125,57.787612915039055],[58.56768798828119,57.629653930664006],[58.4717750549317,57.734546661377],[58.15758514404325,57.75786590576172],[57.971946716308814,57.590244293213],[57.89730834960937,57.402446746826165],[58.04373550415045,57.304000854492244],[57.95298385620123,57.09715652465826],[57.593643188476726,56.90876388549816],[57.362434387206974,56.959430694580135],[57.259742736816634,56.838897705078125],[57.44146347045926,56.676403045654354],[57.38243865966825,56.59109115600591],[57.41663742065435,56.34223175048828]]]},"properties":{"ID_0":188,"ISO":"RU-PER","NAME_0":"Russia","ID_1":55,"NAME_1":"Perm'","TYPE_1":"Kray","ENGTYPE_1":"Territory","NL_NAME_1":"Пермская край","VARNAME_1":"Molotov|Permskaya"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[139.05241394042991,47.407417297363224],[138.83666992187523,47.273334503173885],[138.60388183593784,47.07500076293951],[138.35040283203156,46.69327163696289],[138.33972167968784,46.537223815918026],[138.1672210693364,46.434722900390625],[138.10888671875,46.24583435058605],[137.77162170410176,45.946628570556754],[137.6864776611328,45.8086929321289],[137.35807800292991,45.61113357543956],[137.13795471191406,45.374702453613395],[136.800003051758,45.19648742675781],[136.76507568359398,45.09198760986334],[136.6394500732423,45.04722213745117],[136.4942169189453,44.85506820678722],[136.38092041015625,44.8056373596192],[136.10981750488293,44.47722244262707],[135.88032531738293,44.41223144531256],[135.82269287109398,44.30592346191406],[135.64805603027352,44.17499923706055],[135.63345336914085,44.03584289550781],[135.46069335937545,43.91347122192383],[135.5037536621096,43.847915649414176],[135.29986572265634,43.6926383972168],[135.23486328125043,43.69736099243164],[135.1354217529297,43.50152969360357],[134.84042358398483,43.38569259643555],[134.38264465332054,43.13208389282232],[134.1754150390625,43.064861297607365],[133.95597839355491,42.90541839599615],[133.71180725097668,42.82374954223644],[133.59402465820324,42.85180664062505],[133.15042114257812,42.68486022949219],[132.98042297363293,42.83486175537115],[132.8543090820317,42.73513793945324],[132.7012481689453,42.85514068603527],[132.5326385498047,42.84958267211914],[132.44430541992188,42.9323616027832],[132.2906951904298,42.877639770507926],[132.29791259765648,43.06708145141607],[132.3804168701172,43.18097305297863],[132.31568908691415,43.24736022949219],[131.8706970214845,43.112083435058594],[132.05931091308616,43.329582214355526],[131.75764465332065,43.329029083251896],[131.76458740234398,43.197082519531364],[131.5076446533203,43.01347351074219],[131.34791564941418,42.790138244628906],[131.2556915283203,42.76763916015625],[131.2054138183595,42.60874938964844],[130.84124755859386,42.6559715270996],[130.84736633300804,42.50513839721685],[130.64503479003918,42.34830093383788],[130.56123352050804,42.53544998168945],[130.62303161621116,42.62267303466797],[130.53059387207043,42.697570800781364],[130.54434204101562,42.807689666748104],[130.78915405273438,42.86434555053722],[131.02960205078136,42.86328125000006],[131.20433044433628,43.14319229125982],[131.3008880615234,43.455928802490234],[131.22850036621105,43.59860229492199],[131.20352172851562,43.823570251464844],[131.2931060791018,44.07970046997076],[131.10266113281284,44.691558837890625],[130.9630126953126,44.81761932373041],[131.1379547119144,44.93704223632812],[131.4698486328125,44.959480285644645],[131.68673706054688,45.1141815185548],[131.82678222656273,45.308731079101676],[132.0585937500001,45.23558807373047],[132.18359375,44.95685195922857],[132.1116180419923,44.7406845092774],[132.31622314453145,44.61523056030279],[132.56057739257858,44.55504226684581],[132.6968536376953,44.69006729125988],[132.85197448730477,45.055690765380916],[132.97265625,45.0199089050293],[133.13555908203125,45.12710952758789],[133.09385681152366,45.2875709533692],[133.21519470214855,45.50911331176769],[133.4761199951173,45.6544189453125],[133.4638824462893,45.82897949218756],[133.65689086914085,45.93769454956066],[133.73445129394528,46.047340393066406],[133.7001190185547,46.157814025878956],[133.90849304199264,46.27159118652338],[133.85086059570335,46.46068191528332],[134.0178985595703,46.66371536254883],[134.419189453125,46.712619781494254],[134.50230407714855,46.762664794921925],[134.50569152832077,46.91486740112305],[134.6068878173828,46.97251129150402],[134.69039916992188,47.14265060424805],[134.98847961425793,47.1484107971192],[135.09017944335938,47.22860717773443],[135.32698059082054,47.19422149658203],[135.3628845214845,47.09747314453119],[135.56127929687534,46.99735641479498],[135.72689819335938,46.98005676269537],[135.84500122070335,46.85574340820318],[136.05058288574241,46.88576507568353],[136.33387756347702,46.78522109985357],[136.6004028320316,46.815731048583984],[136.99188232421898,47.02225875854492],[136.9368896484375,47.10337829589855],[137.0752868652345,47.32038116455084],[137.41578674316418,47.210868835449276],[137.70088195800827,47.36641693115229],[137.80319213867188,47.34129333496094],[138.08328247070335,47.50371170043945],[138.04768371582043,47.673473358154354],[137.93728637695312,47.731891632080135],[137.77598571777355,47.714237213134766],[137.60208129882858,47.79789733886718],[137.56549072265636,47.948513031005916],[137.4067840576173,47.99816513061534],[137.3304901123048,48.10557937622082],[137.4733886718751,48.20036315917969],[137.76478576660168,48.20084762573242],[137.91868591308616,48.287399291992244],[138.19029235839866,48.33787536621093],[138.28770446777344,48.45293807983392],[138.44400024414074,48.421226501464844],[138.48487854003906,48.28310394287109],[138.58978271484372,48.17860031127941],[138.58058166503918,48.03955459594738],[138.72039794921886,47.95895767211914],[138.767578125,47.80463027954096],[138.57850646972668,47.73806762695318],[138.60337829589864,47.48934936523443],[138.82380676269565,47.490905761718864],[139.05241394042991,47.407417297363224]]]},"properties":{"ID_0":188,"ISO":"RU-PRI","NAME_0":"Russia","ID_1":56,"NAME_1":"Primor'ye","TYPE_1":"Kray","ENGTYPE_1":"Territory","NL_NAME_1":"Приморский край","VARNAME_1":"Küsten-Gebiet|Maritime Territory|Primorsk|Primorskiy Kray"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.92828369140619,58.4405021667481],[29.928386688232365,58.28647613525396],[29.7235622406007,58.22328186035157],[29.69514465332037,58.06834030151372],[29.87174606323259,58.03969955444336],[30.308898925781307,57.87091445922851],[30.54988288879423,57.874526977539176],[30.507642745971964,57.628013610839844],[30.661579132080245,57.53031158447265],[30.48054122924816,57.345027923583984],[30.820951461792045,57.225479125976676],[30.70230293273954,57.00981521606457],[30.842266082763732,56.917984008789176],[31.013320922851847,56.941478729248104],[30.831148147583004,56.71336746215826],[31.071172714233395,56.614856719970646],[31.041820526123104,56.46479797363292],[31.250478744506836,56.43729400634771],[31.335454940796183,56.3177375793457],[31.506719589233683,56.317863464355526],[31.47416877746588,56.160060882568416],[31.53917884826666,56.05973815917969],[31.396373748779354,55.97911834716802],[31.457376480102763,55.75132369995123],[30.98775863647478,55.69955825805664],[30.91626358032227,55.62602996826172],[30.807615280151424,55.5977783203125],[30.26770782470726,55.86997604370123],[29.969619750976847,55.88970565795898],[29.480318069458175,55.704460144043026],[29.371013641357703,55.76517486572276],[29.435808181762976,55.966442108154354],[29.03289222717285,56.03253936767584],[28.729238510131946,55.96694183349615],[28.630575180053768,56.09029769897472],[28.307874679565483,56.06584930419922],[28.173208236694393,56.16834640502924],[28.24051094055187,56.290397644043026],[28.140993118286133,56.54599761962896],[27.91182518005371,56.742134094238395],[27.950599670410156,56.80741882324219],[27.729381561279407,56.93473052978521],[27.752544403076172,57.12310409545904],[27.844026565551758,57.31617355346691],[27.510673522949332,57.44545364379894],[27.39427185058599,57.52928924560558],[27.411090850830078,57.700477600097656],[27.553926467895508,57.83187484741216],[27.7827205657959,57.830852508544915],[27.479160308837834,58.29164886474621],[27.55366516113281,58.42352676391607],[27.4551296234132,58.79061126708996],[27.73826599121088,58.9934883117677],[28.185434341430664,58.95725250244146],[28.28304481506359,58.85065841674798],[29.01014709472656,58.78174972534191],[29.26895332336437,58.648597717285156],[29.34009361267095,58.54380798339855],[29.61540603637712,58.44390106201166],[29.92828369140619,58.4405021667481]]]},"properties":{"ID_0":188,"ISO":"RU-PSK","NAME_0":"Russia","ID_1":57,"NAME_1":"Pskov","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Псковская область","VARNAME_1":"Pskovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[38.234565734863565,47.12014007568371],[38.334228515625,47.25302886962896],[38.29051589965826,47.520183563232536],[38.37160873413114,47.611076354980575],[38.76478576660185,47.68413162231445],[38.83940887451183,47.8542098999024],[39.126213073730526,47.83968353271484],[39.379436492920206,47.87584686279308],[39.72630310058622,47.829658508300895],[39.81848526000982,48.00790023803722],[40.014892578125284,48.266578674316456],[39.851890563964844,48.47211074829107],[39.85005187988287,48.57080078125006],[39.68866729736334,48.59093093872076],[39.79698562622082,48.850021362304744],[39.99103927612304,48.80121231079096],[40.075561523437614,48.85575103759771],[39.7483825683596,48.99270248413097],[40.2003250122072,49.27058029174816],[40.1632843017581,49.45814895629883],[40.20746994018549,49.56257247924815],[40.28217315673845,49.62424850463867],[40.58903884887718,49.580993652343864],[40.981307983398494,49.68046951293957],[41.128780364990234,49.90298843383795],[41.41949844360374,50.08774566650396],[41.4417343139649,50.186851501464844],[41.546077728271655,50.077735900878906],[41.69916534423828,50.027542114257756],[41.66932678222685,49.937877655029354],[41.9682693481447,49.85739135742199],[42.202400207519815,49.7384605407716],[42.08386230468767,49.40232086181635],[42.09750747680664,49.160408020019645],[42.282196044922046,49.177886962890625],[42.44863128662115,49.118022918701115],[42.75680541992193,48.93391799926769],[42.805290222168196,48.85587692260748],[42.61020660400419,48.56193923950201],[42.28453826904297,48.51268005371105],[42.08506393432611,48.418655395507926],[42.14414596557645,48.30023574829107],[42.0194854736331,48.04537200927746],[42.38208007812528,48.02016067504877],[42.732952117920206,47.863647460937614],[42.76799392700218,47.76208496093756],[43.01152420043945,47.48409271240229],[43.14810180664074,47.542148590088004],[43.27021026611345,47.40973663330078],[43.731311798095874,47.46975326538086],[43.824653625488224,47.30933380126964],[44.03566741943359,47.41090774536144],[44.37316131591825,47.44343185424805],[44.383224487304744,47.34505462646478],[44.28370285034197,46.89566040039073],[44.109107971191406,46.826839447021534],[43.8437042236331,46.57817077636719],[43.960010528564624,46.54926681518555],[43.85728836059593,46.35525894165039],[43.575691223144815,46.14254379272472],[43.34342575073247,46.17803573608393],[43.096824645996264,46.340915679931754],[42.94000625610357,46.39889144897472],[42.74751663208025,46.342739105224666],[42.45161819458036,46.47282791137701],[42.09851455688499,46.57544326782232],[42.238018035888786,46.36042785644542],[41.971462249755916,46.31305313110363],[41.98351287841813,46.221466064453125],[41.783275604248324,46.21192932128906],[41.66335296630882,46.15437316894537],[41.72266006469721,46.010082244873104],[41.46742630004911,46.01821517944336],[41.40194702148432,45.95233535766607],[41.18284606933594,45.984771728515625],[40.97811126708996,46.162502288818416],[40.59485626220726,46.30442428588873],[40.28290557861322,46.29824066162121],[40.19120788574219,46.37691116333013],[40.1663360595706,46.5233039855957],[39.957206726074276,46.58752822875987],[40.02618408203141,46.75395584106451],[39.87176513671881,46.81945419311535],[39.45837020874046,46.83914566040039],[39.38367843627924,46.878238677978516],[39.18925476074236,46.80296325683605],[39.07806015014654,46.6733169555664],[38.86940002441423,46.685157775878906],[38.79891586303728,46.850391387939446],[38.66132736206083,46.8723602294923],[38.83736038208036,46.905971527099666],[39.1012496948245,47.03930664062494],[39.29347229003929,47.019859313964844],[39.19736099243181,47.28486251831066],[38.942916870117244,47.198471069335994],[38.56097412109392,47.119583129882926],[38.234565734863565,47.12014007568371]]]},"properties":{"ID_0":188,"ISO":"RU-ROS","NAME_0":"Russia","ID_1":58,"NAME_1":"Rostov","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Ростовская область","VARNAME_1":"Province of the Don Cossacks|Provinz des Donischen Heeres|Voyska Donskovo|Rostovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[41.8036880493164,55.11595535278326],[41.86863708496122,55.02573776245122],[42.22428131103521,54.94297027587885],[42.453159332275504,55.000286102294865],[42.45948028564476,54.83276367187499],[42.403530120849894,54.72101211547863],[42.71737670898443,54.566768646240234],[42.58839416503912,54.483566284179744],[42.50807571411161,54.28580856323242],[42.72181320190435,54.16326141357422],[42.387748718261776,54.05428314208996],[42.493293762207315,53.96506118774419],[42.35323715209955,53.803802490234425],[42.11437606811552,53.78124237060546],[41.431274414062784,53.73726272583007],[41.34038162231473,53.46971130371105],[41.101249694824276,53.45912170410156],[40.80589294433588,53.53750228881847],[40.549861907959155,53.484207153320426],[40.516738891601506,53.39076995849604],[40.19570922851591,53.31672286987305],[40.00093078613287,53.388397216796925],[39.90851211547857,53.528373718261776],[39.76686096191412,53.5723876953125],[39.586589813232706,53.506538391113395],[39.5585365295413,53.41425323486328],[39.202587127685774,53.38211059570318],[39.03246307373064,53.56354904174805],[38.913753509521655,53.56142807006836],[38.94269180297862,53.70460510253912],[38.84314346313471,53.81212234497076],[38.77686309814447,54.02089691162114],[38.8136940002442,54.1434059143067],[38.683719635009936,54.2278099060058],[38.848407745361385,54.586853027343864],[39.25247573852556,54.621158599853516],[39.554161071777344,54.962036132812436],[39.82563018798851,54.99158859252935],[39.88040924072294,55.09492874145508],[40.24649429321295,55.3130722045899],[40.50468063354492,55.309593200683594],[40.604900360107706,55.17817687988281],[40.877452850341854,55.18740081787115],[40.997104644775334,55.24111175537109],[41.20695114135759,55.21081161499035],[41.45321655273465,55.10940170288086],[41.8036880493164,55.11595535278326]]]},"properties":{"ID_0":188,"ISO":"RU-RYA","NAME_0":"Russia","ID_1":59,"NAME_1":"Ryazan'","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Рязанская область","VARNAME_1":"Ryazanskaya Oblast|Ryazanskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[146.82913208007847,43.887210845947315],[146.91754150390648,43.83866882324224],[146.64250183105491,43.70083236694335],[146.58555603027355,43.80611038208008],[146.82913208007847,43.887210845947315]]],[[[146.1699981689453,44.51694488525396],[146.38638305664074,44.35749816894537],[146.29527282714844,44.275001525878906],[146.12861633300778,44.26638793945324],[145.94427490234375,44.15242385864269],[145.77528381347656,43.931667327880916],[145.57611083984398,43.843334197998104],[145.55833435058616,43.726665496826286],[145.4351806640626,43.721519470214844],[145.3992462158203,43.831741333007805],[145.74179077148438,44.05090713500988],[146.078338623047,44.470554351806754],[146.1699981689453,44.51694488525396]]],[[[148.78916931152344,45.555000305175724],[148.89083862304688,45.48694610595703],[148.77777099609398,45.32249832153326],[148.64305114746094,45.33472061157232],[148.10000610351562,45.11416625976574],[147.98370361328125,45.002902984619254],[147.79194641113293,44.94694519042963],[147.6125030517578,44.950553894043075],[147.5962371826173,44.85160446166998],[147.3361358642578,44.714519500732536],[147.20619201660168,44.57030105590832],[147.08329772949241,44.560752868652344],[146.99082946777344,44.4513893127442],[146.87472534179688,44.49861145019537],[147.03250122070312,44.6388893127442],[147.17684936523438,44.68672943115246],[147.26516723632812,44.86759567260748],[147.39337158203125,44.91761016845703],[147.55271911621105,45.10971450805675],[148.00917053222656,45.289443969726676],[148.2850036621095,45.273887634277344],[148.44194030761716,45.35083389282226],[148.65472412109398,45.53916549682623],[148.78916931152344,45.555000305175724]]],[[[150.54888916015625,46.214721679687614],[150.21638488769543,46.01444625854492],[150.01580810546898,45.826362609863395],[149.86184692382812,45.7772789001466],[149.66848754882824,45.62453460693365],[149.53065490722653,45.69366073608404],[149.66999816894554,45.8488883972168],[149.79055786132824,45.860832214355526],[150.04972839355466,46.089443206787166],[150.18278503417966,46.103248596191456],[150.34361267089878,46.22444534301758],[150.54888916015625,46.214721679687614]]],[[[154.8461151123047,49.63527679443365],[154.84165954589855,49.3263893127442],[154.62718200683594,49.27742004394531],[154.65444946289062,49.41694259643555],[154.8461151123047,49.63527679443365]]],[[[156.03833007812509,50.7691650390625],[156.14637756347656,50.743083953857365],[156.16633605957043,50.50888061523443],[156.04222106933594,50.46666717529297],[155.87902832031273,50.24262237548834],[155.6044616699222,50.1813850402832],[155.43481445312523,50.06500625610363],[155.2396240234375,50.055820465088004],[155.2544403076173,50.22027587890631],[155.3989257812501,50.34566116333007],[155.64849853515636,50.377586364746094],[155.75666809082065,50.453609466552734],[155.86111450195335,50.655834197998104],[156.03833007812509,50.7691650390625]]],[[[156.48500061035176,50.8636093139649],[156.51017761230491,50.76625823974604],[156.33444213867188,50.6261100769044],[156.18959045410156,50.677742004394645],[156.20043945312545,50.76882171630864],[156.48500061035176,50.8636093139649]]],[[[142.7081604003906,54.42454910278326],[142.99734497070332,54.08055496215814],[142.90554809570312,53.986389160156364],[142.93611145019554,53.76055526733398],[143.1861114501953,53.35805511474615],[143.25054931640636,53.20833206176752],[143.05787658691418,53.21683120727544],[143.2109222412109,52.88341140747076],[143.33332824707043,52.8363876342774],[143.3166656494143,52.581943511963],[143.10833740234375,52.34583282470709],[143.1583404541018,52.283054351806754],[143.08265686035168,52.112880706787166],[143.30944824218759,51.743610382080135],[143.20611572265636,51.50361251831055],[143.44888305664074,51.45333480834972],[143.4811096191407,51.23416519165045],[143.54722595214866,51.16749954223632],[143.83222961425804,50.23749923706055],[143.99758911132835,50.01805877685547],[144.1204833984376,49.7547836303712],[144.1390075683597,49.60705566406256],[144.23883056640648,49.499427795410156],[144.2787475585942,49.24866485595709],[144.15336608886716,49.20938873291021],[143.71055603027355,49.33472061157226],[143.47610473632835,49.35889053344738],[143.0508270263672,49.187221527099716],[142.9476013183596,49.059513092041016],[142.97972106933625,48.89833450317383],[142.7476348876953,48.54904937744146],[142.54364013671886,48.060783386230526],[142.51034545898438,47.897621154785156],[142.5513305664066,47.70288848876953],[142.70018005371116,47.489555358886776],[142.94056701660168,47.35283660888683],[143.01486206054685,47.25205612182628],[143.0231933593751,47.0687255859375],[143.1125030517578,46.88555526733404],[143.06721496582043,46.81555557250982],[143.19528198242188,46.705276489257926],[143.48248291015636,46.815284729003956],[143.56472778320312,46.29972076416021],[143.42416381835938,46.194721221923885],[143.3302764892579,46.42805480957031],[143.3777770996095,46.531112670898494],[143.1677703857423,46.599445343017635],[142.88023376464866,46.62693023681635],[142.73228454589855,46.73915863037114],[142.44937133789074,46.645759582519645],[142.24940490722656,46.27294158935546],[142.171356201172,46.01622390747076],[142.0283355712894,45.930625915527344],[141.93193054199241,46.09770965576172],[141.81011962890636,46.599521636963004],[141.98725891113327,46.897354125976676],[142.05166625976562,47.189010620117294],[141.96444702148438,47.30389022827159],[141.9613037109377,47.61900329589844],[142.08694458007812,47.86128616333007],[142.20251464843747,47.98611450195307],[142.1421813964845,48.3261375427246],[141.89054870605491,48.64389038085943],[141.84693908691418,48.76638793945324],[141.9791717529297,48.87944412231445],[142.0944519042973,49.22338485717779],[142.1674804687502,49.803390502929794],[142.1509704589845,50.372501373291016],[142.04809570312523,50.51649475097662],[142.08586120605491,50.82124328613281],[142.24055480957077,51.01416778564464],[142.25332641601585,51.143054962158146],[142.0661163330078,51.48500061035156],[141.7927703857423,51.685276031494254],[141.82847595214844,51.7690467834472],[141.62652587890648,51.88662719726574],[141.65777587890625,52.37751770019537],[141.83496093749997,52.572708129882756],[141.82298278808616,52.72658538818371],[141.9183349609375,53.068889617920036],[141.82888793945312,53.16388702392584],[141.76458740234375,53.37751388549799],[142.19541931152378,53.53236007690441],[142.23988342285156,53.3863906860351],[142.42999267578136,53.37726974487316],[142.62786865234375,53.54665374755859],[142.49505615234386,53.621616363525504],[142.6696319580078,53.724193572998104],[142.6933288574221,53.946109771728516],[142.44230651855491,54.127475738525334],[142.33113098144554,54.26752853393555],[142.63604736328125,54.28605270385742],[142.7081604003906,54.42454910278326]]]]},"properties":{"ID_0":188,"ISO":"RU-SAK","NAME_0":"Russia","ID_1":60,"NAME_1":"Sakhalin","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Сахалинская область","VARNAME_1":"Sakhalinskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[161.40467834472668,69.53176879882812],[161.33384704589866,69.41614532470703],[161.4765625000001,69.17448425292969],[161.43385314941406,69.0640640258789],[161.07916259765622,69.05833435058592],[161.1932373046875,69.30573272705078],[161.09426879882824,69.44739532470697],[161.40467834472668,69.53176879882812]]],[[[137.80259704589855,71.59635162353544],[138.02239990234398,71.50572967529303],[137.78125000000034,71.41041564941418],[137.17759704589844,71.48384857177746],[137.38125610351574,71.58958435058594],[137.80259704589855,71.59635162353544]]],[[[138.81092834472676,71.96926879882822],[139.06459045410168,71.7708358764649],[138.6171875000001,71.62760162353521],[138.25833129882812,71.69999694824219],[138.43540954589855,71.90000152587919],[138.81092834472676,71.96926879882822]]],[[[127.90000152587902,72.63541412353538],[128.13958740234386,72.55208587646489],[128.6979217529297,72.45207977294922],[129.2187500000001,72.46666717529303],[128.92916870117233,72.19791412353521],[128.25416564941452,72.24375152587902],[127.73332977294956,72.43958282470709],[127.22916412353526,72.44166564941412],[127.05677032470713,72.53697967529297],[127.90000152587902,72.63541412353538]]],[[[129.1192626953125,73.12551879882824],[129.3374938964845,73.0687484741211],[128.77082824707054,72.92500305175787],[128.57916259765648,72.97291564941418],[129.1192626953125,73.12551879882824]]],[[[119.92500305175793,73.15833282470697],[120.3182296752932,73.11198425292963],[120.27083587646518,73.00416564941435],[119.78333282470703,73.01457977294922],[119.92500305175793,73.15833282470697]]],[[[142.0651092529297,73.90676879882824],[142.62864685058616,73.80781555175781],[143.2812500000001,73.60208129882818],[143.561981201172,73.4515609741211],[143.5276031494143,73.24218750000006],[143.29791259765625,73.18125152587889],[142.5249938964845,73.21875000000011],[141.46665954589844,73.308334350586],[140.6958312988282,73.42708587646479],[139.87916564941406,73.33958435058594],[139.87290954589866,73.43541717529324],[140.37083435058605,73.44374847412132],[140.7854156494143,73.60416412353521],[140.94583129882835,73.78749847412115],[142.0651092529297,73.90676879882824]]],[[[113.22083282470714,72.82707977294922],[113.55156707763683,72.92760467529297],[113.66822814941428,73.16093444824224],[113.57343292236351,73.22864532470709],[113.90625,73.33958435058594],[113.57707977294933,73.5124969482423],[114.32917022705101,73.59999847412115],[114.91458129882812,73.5979156494141],[115.2645797729492,73.69791412353526],[115.66666412353526,73.7083358764649],[116.8562469482423,73.64583587646496],[117.33281707763695,73.57865142822271],[118.62916564941418,73.5625],[118.80208587646506,73.52291870117193],[118.80208587646506,73.5208358764649],[118.81666564941442,73.50624847412126],[118.400001525879,73.37500000000011],[118.3270797729492,73.37291717529291],[118.51667022705078,73.17500305175804],[119.44791412353538,73.05208587646494],[119.81666564941418,72.95625305175787],[120.13333129882812,72.98958587646484],[121.15000152587913,72.92500305175787],[121.72916412353527,72.96666717529297],[122.07291412353514,72.90000152587896],[122.90833282470702,72.81666564941412],[122.87916564941406,72.902084350586],[123.25208282470724,72.89791870117193],[123.50833129882824,73.09583282470703],[123.65833282470702,73.1854171752929],[123.30625152587913,73.40416717529307],[123.42968750000023,73.65156555175793],[124.0140609741211,73.59635162353521],[124.45365142822298,73.78593444824224],[124.74166870117188,73.70625305175786],[125.21250152587913,73.63541412353516],[125.19635009765635,73.53593444824247],[125.62708282470702,73.535415649414],[125.88124847412122,73.4749984741211],[126.41874694824217,73.50208282470703],[126.47291564941406,73.36458587646484],[126.92916870117199,73.38124847412138],[127.01301574707054,73.52031707763683],[128.11250305175793,73.43125152587902],[128.0312500000001,73.41458129882818],[127.81666564941418,73.3937530517578],[128.2250061035156,73.40833282470732],[128.12290954589866,73.3937530517578],[128.43124389648438,73.34166717529297],[128.4729156494143,73.29582977294933],[128.82499694824241,73.23542022705078],[128.85208129882835,73.21875000000011],[128.94114685058605,73.08802032470702],[128.54791259765636,72.98958587646484],[127.90833282470727,72.92916870117193],[127.93125152587936,72.93333435058592],[127.8416671752933,72.93958282470703],[127.74583435058615,72.90000152587896],[128.2937469482422,72.87291717529303],[128.11614990234375,72.75260162353527],[127.59166717529295,72.69166564941406],[127.42082977294945,72.70207977294933],[126.8687515258789,72.53958129882824],[126.59375,72.43958282470709],[127.21666717529295,72.40625000000011],[127.79740142822277,72.32447814941406],[127.86042022705078,72.25416564941412],[128.51406860351562,72.03697967529308],[128.7416687011721,71.7624969482423],[129.10208129882812,71.745834350586],[129.27239990234375,71.82447814941418],[129.13333129882847,71.98750305175787],[129.36822509765648,71.84531402587885],[129.24739074707065,71.5953140258789],[129.49583435058614,71.26041412353521],[129.74114990234384,71.22239685058592],[129.85676574707043,71.07343292236328],[130.15625,71.07291412353538],[130.2484283447268,70.94635009765636],[130.94166564941418,70.78541564941423],[131.31875610351574,70.72291564941429],[131.73905944824241,70.94218444824213],[131.8692626953125,71.17031097412104],[132.04426574707043,71.29634857177744],[132.202606201172,71.5807342529298],[132.54635620117188,71.86614990234375],[132.85417175292977,71.93958282470703],[132.75051879882835,71.7984390258789],[133.18385314941415,71.5859375],[133.68959045410168,71.43541717529308],[134.33958435058594,71.36250305175786],[134.94375610351585,71.38124847412121],[134.84791564941418,71.47291564941412],[135.80000305175804,71.64167022705078],[136.2937469482422,71.61666870117188],[136.50000000000023,71.61042022705082],[136.9630126953125,71.46926879882818],[137.38697814941418,71.3932342529298],[137.6666717529297,71.24791717529308],[137.92291259765636,71.10416412353516],[138.11250305175793,71.28333282470709],[137.92083740234386,71.379165649414],[138.12551879882847,71.58906555175787],[138.76249694824241,71.62916564941418],[138.98333740234386,71.68958282470707],[139.47708129882812,71.49375152587902],[139.97084045410156,71.48124694824219],[139.80052185058605,71.65468597412115],[139.81875610351574,71.85624694824219],[139.6041717529299,71.95625305175787],[139.8744812011721,72.09323120117199],[139.96041870117188,72.23124694824241],[139.61041259765622,72.22291564941435],[139.33332824707054,72.12291717529303],[139.143753051758,72.25833129882835],[139.60833740234375,72.49166870117199],[140.52291870117188,72.46875],[140.9109344482424,72.52343749999999],[141.16615295410168,72.65364837646477],[140.71041870117188,72.86875152587902],[141.2869873046875,72.84947967529325],[141.58332824707043,72.76457977294928],[142.28125000000034,72.7041702270509],[143.47708129882835,72.68541717529303],[144.4812469482422,72.62708282470732],[146.03125,72.47291564941412],[146.68124389648483,72.36875152587889],[145.85000610351585,72.33958435058616],[145.44792175292991,72.35416412353527],[145.24374389648472,72.42916870117205],[144.7937469482423,72.40416717529291],[144.5041656494143,72.22916412353521],[146.52708435058616,72.31250000000023],[146.95989990234398,72.30260467529303],[146.4078216552734,72.02552032470714],[146.3067626953125,72.128646850586],[145.77760314941418,72.18281555175787],[145.62760925292991,72.0921859741211],[145.84739685058605,71.94739532470703],[145.3307342529297,71.88281250000006],[145.0682373046876,71.76718902587913],[145.03802490234386,71.66197967529308],[145.38542175292966,71.65416717529308],[146.1140594482423,71.79218292236334],[147.1354217529298,72.30625152587896],[148.37916564941452,72.3208312988283],[149.47291564941406,72.16666412353526],[149.7833404541018,72.07499694824219],[150.10989379882858,71.8890609741211],[149.71249389648438,71.74791717529297],[149.30833435058594,71.84375000000011],[149.13542175292991,71.69583129882812],[149.46458435058616,71.64791870117205],[149.89999389648438,71.66041564941412],[150.26458740234386,71.53125000000023],[150.66874694824264,71.49791717529303],[150.73385620117222,71.41406249999994],[151.52915954589855,71.32083129882812],[151.72135925292991,71.23802185058588],[152.1791687011721,70.86458587646484],[152.95416259765622,70.80833435058594],[153.82083129882858,70.87500000000011],[154.45416259765625,70.9541702270509],[155.89375305175793,71.07291412353538],[157.14375305175804,71.06666564941412],[158.125,70.9937515258789],[159.125,70.83125305175804],[159.5666656494143,70.69791412353516],[159.81823730468773,70.5682296752932],[160.10000610351605,70.25624847412138],[159.74583435058605,69.80000305175787],[160.0567626953126,69.70677185058605],[160.9192657470704,69.63072967529297],[161.09739685058594,69.29740142822271],[160.99635314941406,69.06301879882824],[161.2854156494143,69.02500152587896],[161.62031555175793,68.87031555175787],[161.44218444824241,69.31822967529308],[161.83749389648438,69.50208282470732],[162.38285827636741,69.6540069580078],[162.26187133789097,69.39166259765636],[162.70036315918003,69.1583175659182],[162.50527954101562,69.11279296875028],[162.43896484375023,68.96341705322271],[162.7729644775395,68.81952667236328],[162.55137634277355,68.72766876220709],[162.67718505859386,68.63863372802746],[162.52027893066403,68.52133941650402],[162.40057373046875,68.25137329101585],[161.4074859619143,68.38578796386719],[160.73587036132835,68.23564910888683],[159.9905700683595,68.2639770507813],[159.74398803710938,68.16364288330084],[159.34660339355514,68.21170806884771],[158.95898437500023,68.08712005615234],[158.5895843505864,68.0956268310548],[158.4062957763673,68.04562377929693],[158.17015075683616,67.84158325195324],[158.30708312988304,67.70922088623058],[157.88198852539062,67.67973327636719],[157.85130310058602,67.4528198242188],[157.9401855468751,67.25540924072271],[158.34736633300793,67.10282897949247],[158.8250732421875,67.03237915039062],[158.81707763671898,66.87801361083979],[158.9965820312502,66.76388549804693],[158.45596313476562,66.42601776123047],[158.57537841796875,66.31752014160162],[158.45866394042966,66.22428894042973],[158.6168670654298,66.0995864868165],[158.3556823730471,66.07248687744152],[158.14646911621102,66.14128875732428],[157.7246856689453,66.08873748779308],[157.46388244628918,65.96273040771484],[157.13508605957043,65.90567779541014],[157.015380859375,66.03624725341808],[156.76467895507824,66.10266113281261],[156.0901794433596,66.05774688720707],[155.90588378906273,66.16924285888666],[155.0536804199221,66.12309265136734],[154.6177673339845,66.20345306396507],[154.2837677001953,66.07280731201178],[154.43188476562523,65.90635681152355],[153.55076599121105,65.81593322753912],[153.58659362792991,65.60246276855474],[153.52078247070335,65.42600250244139],[153.23977661132812,65.26466369628912],[152.76077270507824,65.2310562133789],[152.4937744140625,64.99733734130871],[152.7509918212893,64.6680526733399],[152.2891998291018,64.5013198852539],[152.3559722900393,64.37648773193371],[151.90916442871128,64.46640014648438],[151.5938110351567,64.42212677001953],[151.4098663330078,64.30570220947271],[151.1940917968751,64.33177185058594],[150.60638427734386,64.29465484619152],[150.61938476562509,64.1569213867188],[150.02236938476562,64.29946136474604],[150.10337829589866,64.46659851074219],[149.8047790527345,64.5534286499024],[149.31489562988304,64.37622833251959],[149.0696716308595,64.4332275390625],[148.50198364257835,64.44837188720709],[148.36888122558605,64.52863311767584],[148.04888916015625,64.40300750732433],[148.30088806152344,64.2037353515625],[148.02899169921886,63.997051239013615],[147.8032684326172,63.971019744873104],[147.3363800048829,64.04385375976574],[146.88987731933616,64.15978240966803],[146.35670471191406,64.15387725830084],[146.13739013671875,63.9250144958496],[145.65399169921886,63.83568191528331],[145.67266845703125,63.673095703124936],[145.45278930664094,63.47723007202154],[145.4005889892578,63.29434967041015],[145.23066711425793,63.16030120849616],[145.25457763671875,63.022399902343814],[145.44918823242188,62.95079803466797],[145.47879028320312,62.69906234741222],[145.41438293457077,62.59260559082031],[145.18888854980491,62.480262756347656],[145.19567871093784,62.28104782104492],[144.7891845703125,62.04123306274425],[144.59530639648438,61.83961486816406],[144.11349487304688,61.71961975097656],[144.00308227539085,61.95697402954101],[143.64886474609375,61.94380187988286],[143.21287536621116,61.99581527709972],[142.96658325195312,61.91350173950195],[142.7166748046876,61.94748687744152],[142.5884704589845,61.878730773925774],[142.32737731933605,61.92353057861328],[142.26399230957054,62.046943664550774],[141.96388244628906,61.984481811523544],[141.59268188476574,62.16811370849616],[141.35148620605491,62.39833831787115],[141.144287109375,62.38124847412103],[140.96408081054688,62.49354934692383],[140.7242889404297,62.405094146728565],[140.522186279297,62.4021110534669],[140.39668273925793,62.316513061523494],[140.25547790527344,61.94152450561523],[140.00469970703125,61.932250976562436],[139.99676513671886,61.76369094848644],[139.653076171875,61.47659683227544],[139.3267822265625,61.4097557067871],[138.7587890625,61.21399688720703],[138.4760894775394,61.075447082519645],[138.24227905273438,60.851806640625],[138.54808044433605,60.674785614013786],[138.35198974609398,60.44456481933593],[138.41519165039074,60.369205474853565],[138.26638793945335,60.23191833496094],[138.248779296875,59.954181671142635],[138.32826232910168,59.90405654907238],[138.15298461914097,59.70113754272455],[137.68038940429685,59.72086334228526],[137.51788330078125,59.637962341308594],[137.49620056152366,59.5395774841308],[137.2187957763672,59.40946960449218],[137.0044860839846,59.39092636108404],[136.82278442382824,59.30403137207037],[136.12748718261741,59.39878463745128],[135.91470336914074,59.48477554321294],[135.66387939453136,59.48115539550781],[135.16148376464855,59.09138107299805],[134.25389099121116,59.188705444336044],[134.0105895996095,59.25363922119141],[133.6663818359375,59.2149772644043],[133.5457916259769,59.24996566772466],[133.05540466308628,59.182388305664176],[132.86097717285202,59.099540710449276],[132.8497772216798,58.91018676757818],[132.6248779296875,58.88606262207031],[132.52168273925793,58.71313476562506],[132.5741882324222,58.64247512817388],[132.4439849853518,58.51203155517578],[132.19108581542991,58.528465270996094],[132.25508117675815,58.28460693359386],[132.047607421875,58.071956634521534],[131.72747802734386,58.219184875488395],[131.56410217285156,58.11107635498041],[131.81988525390625,57.90299224853511],[132.13018798828125,57.72707366943371],[131.8265838623048,57.58051681518567],[131.5359802246095,57.271705627441406],[131.33238220214866,57.33642578125006],[131.26419067382824,57.18524551391607],[131.51377868652355,57.101776123046875],[131.87678527832077,56.79666519165038],[131.71849060058605,56.701633453369084],[131.66448974609398,56.46417999267584],[131.3436889648442,56.51300048828131],[131.18190002441418,56.42901611328124],[131.15708923339866,56.253910064697315],[130.97528076171875,56.07484054565441],[130.8927917480473,55.92188644409191],[130.986083984375,55.70123672485346],[130.72409057617188,55.77344131469732],[130.00978088378906,55.71006011962901],[129.63227844238293,55.76982116699219],[129.2996826171875,55.742393493652344],[129.03538513183616,55.6793441772462],[129.14279174804733,55.580661773681754],[128.9863891601567,55.50091552734374],[128.7920837402345,55.50666427612316],[128.24118041992207,55.689907073974666],[128.0808868408203,55.67566680908209],[127.68518829345726,55.713146209716854],[127.59788513183605,55.62340927124018],[127.4167938232423,55.59953689575206],[127.328582763672,55.70069122314459],[127.07429504394543,55.70475006103527],[126.88739013671886,55.612686157226555],[126.61418914794943,55.666030883789176],[126.46698760986338,55.597179412841854],[126.07677459716808,55.62282562255865],[126.05857849121116,55.72790145874035],[125.77259063720703,55.79460525512701],[125.60909271240246,55.768058776855575],[125.39449310302747,55.87777328491216],[124.87408447265625,55.856548309326165],[124.47119140625033,55.950378417968864],[124.42538452148449,56.066707611083984],[124.27209472656249,56.12319564819335],[123.99459075927733,56.37763214111339],[123.86538696289074,56.42337417602539],[123.45599365234386,56.41492462158203],[123.10108184814497,56.489643096923885],[122.95247650146506,56.596000671386776],[122.77029418945334,56.50225067138672],[122.62879180908224,56.52250671386718],[122.17757415771483,56.76365280151367],[121.64498138427756,56.77133178710949],[121.48700714111327,56.99433898925781],[120.93968200683605,57.05208969116211],[120.38408660888672,57.02729415893554],[120.09629058837902,56.92132186889659],[119.7814941406251,56.9057502746582],[119.63708496093774,56.98066711425787],[119.66258239746129,57.163555145263786],[119.39148712158214,57.418170928955135],[119.44618988037132,57.57947540283214],[119.00719451904308,57.72717666625987],[119.13709259033213,58.12749481201171],[119.0887908935548,58.2240562438966],[119.07548522949229,58.48748397827143],[118.76448822021496,58.594631195068466],[118.81668853759766,58.80208969116216],[118.74748229980469,58.91421508789073],[118.68948364257814,59.19795608520519],[118.8267745971683,59.29489135742193],[118.73919677734374,59.41302490234369],[118.36619567871094,59.47940444946295],[118.23178863525413,59.60691833496099],[118.03059387207043,59.598358154296925],[117.9225845336915,59.44094848632812],[117.27029418945335,59.48458480834966],[117.14827728271484,59.53166961669916],[117.12969207763695,59.819625854492294],[117.27548217773449,60.03850555419922],[117.05989074707043,60.01239395141613],[116.87740325927778,60.19826126098633],[116.4955825805664,60.35449600219732],[116.25788879394577,60.381546020507926],[115.67437744140646,60.52421188354492],[115.40338897705101,60.44536590576177],[115.22398376464878,60.47521591186529],[115.04588317871094,60.2675514221192],[114.8906707763673,60.17819976806646],[114.69469451904332,60.18165969848632],[114.51919555664074,60.056388854980405],[114.54588317871092,59.95115661621093],[114.23757934570335,59.858222961425774],[114.15539550781273,59.740455627441456],[113.95967864990257,59.721977233886825],[113.82278442382858,59.59870529174799],[113.60099029541014,59.5364227294923],[113.42030334472679,59.40068817138671],[113.45299530029307,59.246364593505916],[112.65889739990257,58.99961471557611],[112.53959655761719,58.86918640136725],[112.36268615722678,58.94820785522466],[112.37979125976562,59.132343292236435],[112.60719299316418,59.22062683105469],[112.6091766357423,59.30592346191412],[112.25617980957031,59.2989120483399],[112.23168182373058,59.480144500732415],[111.96369171142607,59.28927230834966],[111.58386993408209,59.19935989379883],[111.36758422851585,59.25527191162121],[111.19478607177757,59.18805694580084],[111.05188751220703,59.23276901245122],[110.66398620605473,59.23534393310552],[110.52928924560551,59.07193756103521],[110.13488006591803,58.97113800048828],[109.84828948974604,58.99227523803716],[109.53708648681646,59.133255004882805],[109.38699340820335,59.27058410644531],[109.19648742675808,59.31725692749023],[109.24958801269548,59.4787712097168],[109.42248535156256,59.582862854003956],[109.41599273681662,59.71179580688488],[109.61067962646483,59.85977172851562],[109.73029327392584,60.019088745117244],[109.65779113769531,60.09603118896495],[109.91727447509794,60.46295166015631],[110.25808715820335,60.67520141601568],[110.26738739013672,60.791835784912166],[110.50140380859375,60.95031738281261],[110.54428100585932,61.09622192382823],[110.26317596435547,61.12279510498046],[110.01268768310541,61.266429901123104],[109.80968475341803,61.3029441833496],[109.85147857666044,61.52491760253906],[109.62269592285156,61.69590759277355],[109.57048797607445,61.806121826171925],[109.73378753662138,61.964775085449276],[109.9276885986328,62.01083374023431],[109.9992828369141,62.14464569091802],[109.88619995117216,62.384899139404354],[109.44618988037121,62.37328720092785],[109.3219833374024,62.531219482421875],[109.51198577880888,62.70124816894543],[109.68299102783209,62.77556228637706],[109.50339508056669,62.933498382568466],[109.431900024414,63.33555603027344],[109.3056869506836,63.318023681640675],[109.0999832153323,63.501834869384815],[108.63528442382817,63.54714965820318],[108.19779205322271,63.552024841308594],[108.360191345215,63.74987792968756],[108.76528930664057,63.76220703124999],[108.83898925781256,63.942726135253956],[108.60639953613276,63.99736785888671],[108.51888275146501,64.1240463256836],[108.32037353515624,64.23208618164074],[108.07008361816423,64.2308349609375],[107.93347167968761,64.19406127929688],[107.62167358398455,64.28575134277344],[107.305992126465,64.26539611816406],[107.27388763427761,64.35552215576183],[107.0106735229495,64.36584472656244],[106.56778717041043,64.44902038574219],[106.09849548339842,64.44148254394537],[105.80818939208983,64.50167846679686],[105.72568511962919,64.67439270019537],[106.08288574218754,64.87686920166014],[106.04469299316406,65.07867431640625],[106.41598510742199,65.21556091308588],[106.53089141845703,65.35589599609386],[106.83657836914057,65.3800888061524],[106.85269927978538,65.54202270507818],[106.49577331542984,65.688705444336],[106.5195922851564,65.98461914062517],[106.4495925903322,66.11328887939459],[106.18598937988276,66.18099975585943],[106.19978332519531,66.42591857910168],[106.32837677001976,66.5195999145509],[106.31208038330095,66.71972656249999],[106.14228820800793,66.8673095703126],[105.7094802856448,66.94254302978516],[105.54718017578153,67.04595184326178],[106.01157379150396,67.06475830078125],[106.07987976074247,67.19561004638672],[106.79728698730463,67.37574768066412],[106.81327819824247,67.63785552978527],[106.93309020996088,68.1790771484375],[106.96009063720726,68.6483612060548],[106.90386962890653,68.8769760131836],[106.15577697753912,69.39128875732433],[106.51088714599615,69.57548522949224],[107.0456771850586,69.54841613769537],[107.50518035888678,69.65930938720697],[108.02658081054682,69.70210266113304],[108.33657836914061,69.84336090087885],[108.9345855712891,69.84790802001964],[109.35508728027344,69.7836151123048],[109.50068664550787,69.9847183227539],[109.42127990722656,70.22929382324241],[109.67119598388695,70.3840408325198],[110.18217468261741,70.40389251708994],[110.15747070312494,70.62503051757812],[110.61238098144548,70.75284576416016],[110.98178100585966,70.7920608520509],[111.58087158203153,70.93292999267584],[112.00128936767578,70.97235107421875],[112.17518615722679,71.05240631103527],[112.57167053222656,71.07269287109375],[112.61147308349621,71.20156860351574],[112.33557128906273,71.3651733398438],[112.12557220459006,71.39774322509771],[112.0276870727539,71.79266357421886],[112.01486206054699,72.12126922607433],[111.6477890014649,72.1916885375976],[111.68959045410185,72.28987884521496],[111.06248474121105,72.4073333740235],[111.21607971191423,72.53866577148438],[110.78026580810547,72.6510009765625],[110.71897888183588,72.80797576904297],[110.92687225341808,73.08507537841808],[110.86448669433622,73.1896743774414],[110.36228179931669,73.22848510742199],[110.89767456054716,73.61923217773443],[110.91510009765642,73.69531249999999],[110.90438842773432,73.70207977294933],[111.24230194091803,73.90673065185558],[111.66510009765625,73.75468444824224],[112.24791717529297,73.7041702270509],[112.80208587646483,73.72083282470702],[113.16041564941418,73.87500000000023],[113.44322967529308,73.65781402587919],[113.19531250000011,73.44426727294922],[113.58281707763695,73.3213500976563],[113.49791717529308,73.21250152587885],[113.52916717529295,72.95207977294928],[113.22083282470714,72.82707977294922]]],[[[140.75677490234398,74.269271850586],[141.05833435058616,74.23332977294938],[141.03906250000023,74.00676727294922],[140.4041595458989,73.92292022705084],[140.17552185058605,74.06510162353533],[140.29791259765648,74.24166870117197],[140.75677490234398,74.269271850586]]],[[[146.48802185058616,75.58802032470709],[146.64843750000045,75.42760467529301],[147.13333129882824,75.31874847412121],[147.38333129882835,75.42708587646496],[148.38749694824241,75.40208435058621],[148.68540954589844,75.19374847412115],[149.3874969482422,75.2624969482423],[150.1499938964845,75.20833587646494],[150.65834045410156,75.08750152587913],[150.62709045410156,74.86250305175793],[149.69218444824264,74.75885009765624],[149.17707824707065,74.72708129882824],[148.16041564941403,74.78541564941412],[147.68750000000023,74.95417022705078],[147.13958740234384,75],[146.34165954589844,75.16041564941412],[146.22343444824241,75.38176727294922],[146.48802185058616,75.58802032470709]]],[[[135.7276000976566,75.8671875],[135.89166259765625,75.71250152587889],[136.21458435058594,75.62708282470703],[135.97865295410156,75.4026031494141],[135.5776062011721,75.36927032470709],[135.7276000976566,75.8671875]]],[[[139.07066345214844,76.19797515869145],[139.9895782470703,75.83333587646513],[140.4479217529297,75.79374694824219],[140.45989990234386,75.63281250000023],[141.10208129882824,75.625],[140.94427490234398,75.96198272705078],[141.18489074707043,76.05781555175787],[141.82083129882812,76.10624694824224],[142.585418701172,75.85832977294933],[143.1125030517578,75.79792022705072],[143.6145782470705,75.85208129882807],[145.2541656494145,75.57083129882818],[144.83541870117188,75.433334350586],[144.73072814941406,75.15364837646484],[144.38125610351562,75.0479202270509],[143.42083740234386,75.05000305175793],[142.97084045410168,75.13749694824224],[142.70416259765625,75.3125],[142.6088562011721,75.47031402587896],[143.09532165527344,75.63176727294932],[142.99790954589866,75.72083282470714],[142.42916870117207,75.73542022705078],[141.9859313964845,75.65676879882807],[142.1687469482422,75.37916564941412],[142.8041687011721,75.06458282470702],[143.58958435058605,74.99583435058605],[143.54791259765636,74.89791870117193],[142.86405944824241,74.87031555175808],[142.49374389648438,74.78958129882818],[141.98333740234375,74.91249847412121],[141.5749969482422,74.9312515258789],[140.27708435058616,74.81666564941412],[139.9244842529298,74.95468902587908],[139.4520874023441,74.6999969482423],[139.06250000000023,74.63333129882812],[138.70416259765636,74.71458435058594],[138.19999694824241,74.75000000000011],[137.890106201172,74.91926574707031],[137.39791870117185,75.04582977294933],[136.95051574707054,75.25989532470703],[137.46614074707043,75.33802032470713],[137.19999694824241,75.55208587646484],[137.14634704589844,75.7203140258789],[137.58384704589844,75.80677032470709],[137.42759704589855,75.90052032470714],[137.67707824707043,75.995834350586],[138.11457824707077,76.00208282470709],[138.20468139648472,76.10676574707031],[139.07066345214844,76.19797515869145]]]]},"properties":{"ID_0":188,"ISO":"RU-SA","NAME_0":"Russia","ID_1":61,"NAME_1":"Sakha","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Саха","VARNAME_1":"Republic of Sakha|Yakutia-Sakha|Yakutsk|Yakut A.S.S.R.|Yakutskaya A.S.S.R.|Respublika Sakha"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[52.55948638916021,54.38675308227539],[52.40178680419933,54.33279800415045],[52.36262130737299,54.1335182189942],[52.450824737548885,54.065792083740284],[52.38597488403326,53.87900924682617],[52.250480651855696,53.754451751708984],[52.211967468261776,53.61233901977539],[52.09883880615257,53.512184143066456],[52.172378540039226,53.31325531005865],[52.08682250976585,53.1885032653808],[52.08806991577171,53.013217926025334],[51.74055480957048,52.86372756958008],[51.684833526611385,52.680240631103516],[51.54378890991205,52.65265274047857],[51.570575714111385,52.48341751098633],[51.41514205932623,52.35010147094732],[51.451011657715014,52.130733489990234],[51.3208961486817,52.01918029785167],[50.86277770996087,51.79518127441412],[50.72236633300792,51.94867324829113],[50.37487411499029,52.043769836425895],[50.17121887207031,52.146251678466854],[49.863212585449276,52.189083099365234],[49.381828308105696,52.416275024414176],[49.348358154297046,52.48676681518566],[48.963100433349894,52.47977828979492],[48.690231323242244,52.6473388671875],[48.46958160400419,52.69994735717779],[48.38547134399413,52.80673217773449],[48.55601501464855,52.94037628173834],[48.469799041748104,53.00088119506836],[48.179447174072436,53.058929443359375],[48.21672821044939,53.145809173583984],[47.986446380615234,53.38999557495123],[48.05347061157232,53.47399139404296],[48.41591644287114,53.52069091796875],[48.397457122802905,53.690464019775504],[48.57854080200218,53.777614593505916],[48.87150955200218,53.71326065063476],[48.99987792968767,53.84269332885753],[49.369068145752124,53.89337158203125],[49.58529663085937,53.82916259765631],[49.92872619628917,53.95122528076177],[50.1743354797365,54.07267379760748],[50.26553344726591,54.25235366821294],[50.24081802368169,54.36099243164073],[50.07981872558611,54.533687591552784],[50.39263153076189,54.47641754150402],[50.575778961181925,54.33333206176758],[50.71639251709007,54.448726654052734],[50.95588684082048,54.34914398193365],[51.005275726318416,54.53733444213878],[51.19542694091814,54.675823211670036],[51.507114410400675,54.64910888671875],[51.841968536376946,54.51508331298834],[52.07532119751005,54.341655731201286],[52.312854766845874,54.452777862548885],[52.55948638916021,54.38675308227539]]]},"properties":{"ID_0":188,"ISO":"RU-SAM","NAME_0":"Russia","ID_1":62,"NAME_1":"Samara","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Самарская область","VARNAME_1":"Kuybyshev|Kuybyshevskaya|Samarskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.86277770996087,51.79518127441412],[50.83658599853543,51.74708557128906],[50.71681594848632,51.628440856933594],[50.514194488525504,51.60126876831054],[50.367633819580305,51.34031295776367],[49.95227813720708,51.24059677124029],[49.735996246338004,51.1147193908692],[49.420497894287394,51.129589080810604],[49.32477569580084,50.98959350585949],[49.410907745361555,50.85842514038097],[49.09297180175798,50.783470153808594],[48.82474899291997,50.60033798217779],[48.63606643676775,50.54226303100586],[48.76188659667968,50.10190963745123],[48.877548217773715,50.0233535766601],[48.73499679565458,49.926750183105526],[48.433258056640625,49.837982177734375],[48.2168922424317,49.90937042236334],[48.096481323242244,50.09138107299805],[47.81656265258812,50.33131408691412],[47.55146026611345,50.46271514892584],[47.43362426757818,50.39659881591808],[47.220188140869254,50.48167037963873],[47.01612854003912,50.488269805908146],[46.91388702392583,50.60490417480463],[46.673664093017635,50.69212722778332],[46.494293212890845,50.540046691894474],[46.12767028808599,50.541858673095646],[46.140678405761776,50.65069198608404],[45.89295959472684,50.764766693115284],[45.711803436279524,50.69474792480469],[45.727897644043026,50.57336425781256],[45.45093154907255,50.593265533447315],[45.29403305053711,50.5538063049317],[45.22847747802751,50.68468475341797],[45.35919570922863,50.785984039306754],[45.35993576049833,50.89147567749018],[45.10884475708007,51.12010574340826],[44.895298004150675,51.18392944335949],[44.310501098632976,51.183631896972656],[44.19629287719738,51.107051849365234],[43.82295989990251,51.13862609863281],[43.54269027709978,51.026103973388786],[43.39286422729498,51.04439163208019],[42.95245742797857,51.25340270996088],[42.9382286071779,51.39073944091797],[42.84353256225608,51.48182678222661],[42.58007812500028,51.57358169555664],[42.564212799072436,51.68557739257824],[42.733951568603686,51.84327697753912],[42.852146148681925,52.1217994689942],[43.115215301513615,52.39695358276361],[43.28373336791998,52.45236206054682],[43.46720123291026,52.355495452880916],[43.814968109131144,52.44512176513672],[43.96572494506852,52.3748397827149],[44.30767822265631,52.29363250732433],[44.54317474365251,52.406387329101506],[44.588054656982536,52.5098228454591],[44.835979461670206,52.48129272460949],[45.075187683105526,52.33676910400385],[45.14360046386736,52.40697097778326],[45.531406402588175,52.414634704589844],[45.72552871704124,52.51664733886719],[45.97423553466791,52.4033088684082],[46.001731872558764,52.52402496337902],[46.34008026123064,52.666866302490234],[46.64696121215826,52.731746673583984],[46.80248260498052,52.64192199707042],[46.970661163330135,52.65193176269531],[47.427352905273494,52.55996322631841],[47.596786499023715,52.630687713623104],[47.776252746582315,52.58022689819347],[47.84814834594743,52.754302978515625],[48.38547134399413,52.80673217773449],[48.46958160400419,52.69994735717779],[48.690231323242244,52.6473388671875],[48.963100433349894,52.47977828979492],[49.348358154297046,52.48676681518566],[49.381828308105696,52.416275024414176],[49.863212585449276,52.189083099365234],[50.17121887207031,52.146251678466854],[50.37487411499029,52.043769836425895],[50.72236633300792,51.94867324829113],[50.86277770996087,51.79518127441412]]]},"properties":{"ID_0":188,"ISO":"RU-SAR","NAME_0":"Russia","ID_1":63,"NAME_1":"Saratov","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Саратовская область","VARNAME_1":"Saratovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.15716552734381,55.92962265014654],[35.34578704833984,55.75846481323236],[35.3502731323245,55.49065017700207],[35.28896713256847,55.28449249267584],[35.37735366821289,55.22885131835949],[35.38077926635742,55.16138076782232],[35.17611694335966,54.97915649414074],[34.955974578857585,54.92178344726574],[34.979309082031364,54.77207565307623],[34.55910491943387,54.61239242553711],[34.49197006225586,54.49597930908208],[34.26461791992216,54.48426437377935],[34.017467498779524,54.55827713012701],[33.70205307006847,54.49966812133789],[33.65891265869158,54.3496932983399],[33.749347686767855,54.310287475586044],[33.54387283325217,54.007575988769645],[33.2837562561038,53.8709831237793],[33.09860610961931,53.64677429199219],[32.76076126098661,53.41225051879882],[32.462646484375,53.574119567871094],[32.50915527343767,53.695682525634766],[32.131977081299,53.80672454833996],[31.842107772827315,53.78347778320324],[31.883245468139936,54.014282226562436],[31.33005714416521,54.260890960693416],[31.241838455200426,54.463722229003906],[31.08509635925293,54.51119613647472],[31.21398353576666,54.65038299560541],[30.76061058044428,54.81175231933587],[30.943784713745174,54.95962142944347],[30.98441696166998,55.18688201904308],[30.83307456970226,55.34179306030279],[30.938566207885685,55.404754638671875],[30.91626358032227,55.62602996826172],[30.98775863647478,55.69955825805664],[31.457376480102763,55.75132369995123],[31.79309654235857,55.672634124755795],[32.09571456909197,55.7227554321289],[32.132472991943644,55.6372451782226],[32.6769828796389,55.628334045410156],[33.012290954590014,55.5869140625],[33.231391906738565,55.599971771240234],[33.298797607422046,55.67838668823242],[33.52970886230497,55.70221710205083],[33.72680664062517,55.80390548706055],[33.71378707885748,55.893928527832145],[34.231792449951165,56.03974914550781],[34.74118804931646,55.882789611816406],[34.818466186523494,55.944362640380916],[35.15716552734381,55.92962265014654]]]},"properties":{"ID_0":188,"ISO":"RU-SMO","NAME_0":"Russia","ID_1":64,"NAME_1":"Smolensk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Смоленская область","VARNAME_1":"Smolenskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.7094612121582,44.98960113525396],[45.58984375000005,44.88315963745117],[45.64491653442394,44.77478027343756],[45.50423049926758,44.598480224609375],[45.30944824218773,44.525314331054744],[45.36286163330083,44.41144561767584],[45.503036499023665,44.34289932250982],[45.44076919555687,44.254520416259766],[45.22692108154308,44.20801162719732],[45.35768890380865,44.113613128662166],[45.583023071289176,44.106788635253906],[45.5693778991702,43.97541427612316],[45.44735717773443,43.81063842773443],[45.158073425293075,43.88348770141612],[45.12002563476568,43.684391021728516],[44.96052932739286,43.643440246582145],[44.888744354248104,43.726741790771484],[44.71249008178711,43.759857177734375],[44.42427062988309,43.7303581237793],[44.40965652465843,43.843856811523494],[44.073207855224666,43.92408370971691],[43.8842391967774,43.739944458007926],[43.673252105713175,43.78469848632818],[43.4763679504395,43.74176025390631],[43.418952941894645,43.8531761169433],[42.879692077636776,43.74985122680664],[42.7333412170413,43.96999359130854],[42.57834243774431,43.914531707763786],[42.45737075805658,44.04720306396496],[42.61590576171881,44.144016265869254],[42.45710754394548,44.30070877075201],[42.1906051635745,44.322475433349666],[42.03064346313504,44.46559906005865],[41.86980056762701,44.44123840332036],[41.58489227294939,44.58459854125988],[41.61912155151384,44.7076683044433],[41.747570037842024,44.82118606567382],[41.73648452758795,44.92039489746105],[41.577224731445256,44.97200393676769],[41.41750335693382,45.11592864990229],[41.36255264282221,45.22734069824219],[41.07731246948248,45.23329162597656],[41.03847122192411,45.41628265380871],[40.845138549804965,45.56366348266613],[40.87628936767595,45.68764114379894],[41.19297027587896,45.70880508422863],[41.301670074463175,45.79696655273443],[41.161376953125284,45.91305160522472],[41.18284606933594,45.984771728515625],[41.40194702148432,45.95233535766607],[41.46742630004911,46.01821517944336],[41.72266006469721,46.010082244873104],[42.184879302978516,45.946632385253906],[42.18614959716802,46.09731674194347],[42.34757232666044,46.117866516113224],[42.32843399047846,45.97244644165038],[42.56415557861328,45.99406814575201],[42.81304550170927,46.09181213378911],[42.899993896484546,46.20640563964844],[43.36589431762695,46.066642761230526],[43.493743896484546,45.97897720336913],[43.72995758056646,45.96230316162115],[44.047424316406364,45.876682281494084],[44.15728378295904,45.72904205322271],[44.376140594482706,45.52777099609375],[44.511672973632926,45.46749877929687],[44.902450561523715,45.40328598022461],[44.94964599609392,45.353240966796875],[45.45902633666992,45.18701171875006],[45.7094612121582,44.98960113525396]]]},"properties":{"ID_0":188,"ISO":"RU-STA","NAME_0":"Russia","ID_1":65,"NAME_1":"Stavropol","TYPE_1":"Kray","ENGTYPE_1":"Territory","NL_NAME_1":"Ставропольский край","VARNAME_1":"Stavropol'skiy Kray|Stavropolskiy Kray"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[65.97730255126982,58.56711959838873],[66.03827667236334,58.27107238769542],[66.20344543457031,58.06344223022473],[65.88550567626957,57.9678192138673],[65.54083251953125,57.792900085449325],[65.41204071044939,57.84169769287114],[64.8923950195313,57.68666839599621],[65.0114135742188,57.61046600341796],[64.87589263916033,57.4865226745605],[65.09265136718773,56.97111129760753],[65.2780456542971,56.93207931518555],[65.20893096923845,56.81977462768554],[64.96775817871122,56.79666137695318],[64.8467636108399,56.86332702636719],[64.58470916748053,56.86603164672863],[64.31227874755876,56.75274658203131],[64.11381530761724,56.50340270996094],[63.787296295166016,56.525180816650504],[63.496009826660384,56.6495628356933],[63.12365341186551,56.5966033935548],[62.94579315185575,56.64783859252941],[62.7471885681154,56.58284378051758],[62.399291992187564,56.55629730224614],[62.161491394043246,56.3459587097168],[62.04189682006837,56.30136108398449],[62.03094863891612,56.179256439208984],[61.6801261901856,56.34332656860357],[61.20479583740229,56.40869903564459],[61.0709800720216,56.34933853149425],[61.140232086181584,56.25442886352538],[60.577255249023544,56.239315032958984],[60.41116714477544,56.29547500610357],[60.06461334228533,56.25220489501953],[59.721618652343864,56.251808166503906],[59.627262115478565,56.33762741088873],[59.26965332031249,56.386581420898494],[59.030738830566456,56.155094146728565],[58.86010360717797,56.08219146728527],[58.56117248535184,56.185100555420036],[58.31609725952154,56.10857391357422],[58.01305007934592,56.10430526733398],[57.80295181274408,56.17052078247075],[57.56007003784185,56.13613128662115],[57.41663742065435,56.34223175048828],[57.38243865966825,56.59109115600591],[57.44146347045926,56.676403045654354],[57.259742736816634,56.838897705078125],[57.362434387206974,56.959430694580135],[57.593643188476726,56.90876388549816],[57.95298385620123,57.09715652465826],[58.04373550415045,57.304000854492244],[57.89730834960937,57.402446746826165],[57.971946716308814,57.590244293213],[58.15758514404325,57.75786590576172],[58.4717750549317,57.734546661377],[58.56768798828119,57.629653930664006],[58.87579345703125,57.787612915039055],[58.84773254394549,57.91762161254883],[58.68779373168962,57.93784332275401],[58.59856033325195,58.09420776367193],[58.81058502197271,58.26418685913086],[59.47598648071311,58.546356201171875],[59.413845062256144,58.67742156982421],[59.108390808105746,58.83696365356445],[59.21200942993187,58.98324584960943],[59.15748214721685,59.170585632324325],[58.98773193359392,59.2827377319337],[58.74021148681646,59.3237419128418],[58.489196777343814,59.49189758300787],[58.630619049072315,59.73645019531255],[58.77598571777338,59.85326766967779],[59.06970214843744,59.984901428222656],[59.22676467895519,60.25355911254883],[59.21519470214872,60.35075759887706],[59.40550613403315,60.571990966796875],[59.50138854980468,60.76552963256841],[59.50327301025407,60.9236564636231],[59.37621688842779,61.04436111450195],[59.30701065063482,61.346149444580135],[59.49711227416992,61.57759094238286],[59.39514541626005,61.69829559326172],[59.357086181640675,61.81312561035162],[59.46472549438499,61.94725036621099],[59.82992172241228,61.917572021484325],[59.99021530151373,61.85849380493175],[60.06925964355491,61.713531494140625],[60.42481613159197,61.74943161010736],[61.079917907714844,61.70253753662114],[62.7186660766601,61.203243255615234],[62.89553070068359,61.07318115234369],[62.83428192138688,60.88654708862299],[63.030693054199155,60.60691833496099],[63.29136276245134,60.39742279052729],[63.259773254394474,60.24101257324213],[63.70489883422851,60.14952850341797],[63.85338973999052,59.85419464111322],[63.850833892822266,59.577541351318295],[64.03922271728538,59.43696594238287],[64.47284698486322,59.40605545043956],[64.73514556884781,59.34940719604503],[65.10372924804693,59.3437118530274],[65.24851226806669,59.25699615478526],[65.53964233398455,58.807826995849666],[65.72942352294939,58.697231292724666],[65.93867492675798,58.658050537109496],[65.97730255126982,58.56711959838873]]]},"properties":{"ID_0":188,"ISO":"RU-SVE","NAME_0":"Russia","ID_1":66,"NAME_1":"Sverdlovsk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Свердловская область","VARNAME_1":"Yekaterinburg|Sverdlovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.11437606811552,53.78124237060546],[42.10821533203136,53.55317687988287],[42.32117462158209,53.42033004760748],[42.59943389892578,53.182258605957145],[42.591297149658374,53.112251281738395],[42.98170852661127,52.902549743652344],[43.27666473388683,52.67499160766613],[43.118705749512,52.497768402099666],[43.115215301513615,52.39695358276361],[42.852146148681925,52.1217994689942],[42.733951568603686,51.84327697753912],[42.564212799072436,51.68557739257824],[42.58007812500028,51.57358169555664],[42.26778411865239,51.67601013183605],[42.00630569458025,51.63741683959972],[41.67168045043974,51.7427864074707],[41.41281127929681,51.770069122314446],[41.35627365112321,51.71627426147461],[41.007873535156364,51.72241210937494],[40.96789932251005,51.88087081909179],[40.6066513061524,51.93589782714844],[40.69947814941423,52.133609771728516],[40.819225311279354,52.196453094482536],[40.60014724731473,52.32683563232433],[40.38084030151361,52.374431610107536],[40.384334564208984,52.451442718505966],[40.11714935302729,52.53764343261719],[40.011119842529524,52.74597167968756],[40.181606292724666,52.800712585449276],[40.12696456909191,53.192043304443416],[40.19570922851591,53.31672286987305],[40.516738891601506,53.39076995849604],[40.549861907959155,53.484207153320426],[40.80589294433588,53.53750228881847],[41.101249694824276,53.45912170410156],[41.34038162231473,53.46971130371105],[41.431274414062784,53.73726272583007],[42.11437606811552,53.78124237060546]]]},"properties":{"ID_0":188,"ISO":"RU-TAM","NAME_0":"Russia","ID_1":67,"NAME_1":"Tambov","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Тамбовская область","VARNAME_1":"Tambovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[51.426757812500114,56.146137237548885],[51.53682708740228,56.09707260131836],[51.42961502075201,55.98303604125982],[52.25846862792974,55.924072265625114],[52.23495101928716,56.075416564941406],[52.483669281005916,56.03357315063482],[52.79676818847685,56.227539062500114],[52.572708129882756,56.274677276611385],[52.738582611084155,56.379337310791016],[52.99965667724615,56.42150115966808],[53.02949523925792,56.24081802368158],[53.23204040527372,56.1483612060548],[53.56889724731451,56.2570152282716],[53.58503341674799,56.170467376708984],[53.259033203125,55.93959045410156],[53.38531875610362,55.87492752075201],[53.79792785644536,55.980274200439396],[54.19494247436529,55.768352508545036],[54.200267791748104,55.68797683715826],[54.0101165771486,55.58977127075201],[53.903453826904354,55.39184188842785],[53.681930541992415,55.32246017456055],[53.53339004516601,55.21333312988287],[53.185462951660384,55.15990829467785],[53.513286590576456,54.9273681640625],[53.63167953491234,54.70544815063476],[53.455108642578125,54.53090667724615],[53.37245178222667,54.26820373535156],[53.3920555114746,54.05834579467779],[53.063671112060774,54.152427673339844],[52.99634170532249,54.291648864746094],[52.55948638916021,54.38675308227539],[52.312854766845874,54.452777862548885],[52.07532119751005,54.341655731201286],[51.841968536376946,54.51508331298834],[51.507114410400675,54.64910888671875],[51.19542694091814,54.675823211670036],[51.005275726318416,54.53733444213878],[50.95588684082048,54.34914398193365],[50.71639251709007,54.448726654052734],[50.575778961181925,54.33333206176758],[50.39263153076189,54.47641754150402],[50.07981872558611,54.533687591552784],[49.87577819824219,54.53015899658208],[49.645526885986385,54.58616638183594],[49.432109832763956,54.82403945922845],[49.158420562744425,54.87781524658209],[48.83855438232422,54.65161132812505],[48.510887145996094,54.625183105468864],[48.11142730712885,54.77926254272461],[47.926410675048885,54.71271896362305],[47.775905609130916,54.76123809814453],[47.581104278564624,54.61192321777343],[47.44272613525408,54.574905395507805],[47.27970504760753,54.723297119140625],[47.37910461425804,54.83041000366211],[47.75094985961937,54.8439674377442],[47.7993278503418,54.96561431884777],[48.08277893066434,55.15318679809576],[47.84599685668956,55.272872924804744],[47.93909072875971,55.44807815551769],[48.166419982910156,55.586402893066456],[48.222423553466854,55.694824218750114],[48.433818817138956,55.83564758300781],[48.68954467773432,56.09873199462896],[48.98272705078142,56.1623878479005],[48.94845199584972,56.353889465332024],[49.120704650879134,56.42201614379877],[49.31427764892584,56.382301330566406],[49.441959381103516,56.46458053588867],[49.76081848144553,56.55646133422863],[50.0210914611817,56.46679306030285],[50.20691299438488,56.560447692871094],[50.07308959960966,56.66929626464855],[50.29765319824236,56.65757751464849],[50.57884979248052,56.54343032836919],[50.69608306884782,56.380413055420036],[50.91780853271507,56.28524780273443],[51.03194427490246,56.17633819580084],[51.32423019409191,56.09873199462896],[51.426757812500114,56.146137237548885]]]},"properties":{"ID_0":188,"ISO":"RU-TA","NAME_0":"Russia","ID_1":68,"NAME_1":"Tatarstan","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Татарстан","VARNAME_1":"Kazan|Kazanskaya G.|Tatar A.S.S.R.|Tatarskaya A.S.S.R.|Republic of Tatarstan|Respublika Tatars"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[84.25296020507841,60.84401702880865],[84.73190307617216,60.44677734375011],[84.82601928710938,60.33487319946295],[84.65495300292974,60.201347351074155],[84.57686614990229,59.98173141479492],[84.64437866210949,59.87342453002929],[85.54250335693386,59.88537597656256],[85.87180328369158,59.93009185791026],[86.45834350585936,59.946235656738345],[87.07840728759766,59.86007690429698],[87.1446151733399,59.67059707641613],[87.48242187500006,59.66497421264654],[87.69311523437517,59.38722610473633],[87.86553192138689,59.243034362793075],[88.5493774414063,59.286502838134766],[88.59142303466825,59.18015289306634],[88.80097961425787,59.01359558105481],[88.52142333984403,58.93806076049805],[88.30503082275389,58.76582717895507],[87.90283203125006,58.502258300781364],[87.9537887573245,58.270748138427784],[88.07513427734368,58.10902404785156],[88.63187408447277,58.046848297119254],[88.80641937255854,57.950714111328125],[89.16123199462889,57.942352294921925],[89.36644744873063,57.8667716979981],[89.38503265380865,57.654151916503956],[89.04875183105491,57.55642700195306],[89.09057617187527,57.47424316406249],[88.84272766113286,57.392879486083984],[88.69318389892578,57.18791198730463],[88.72753906250006,57.01923751831055],[88.61354064941435,56.87193679809582],[87.62561035156267,56.52936172485363],[87.57796478271489,56.644756317138786],[87.17589569091803,56.64091110229498],[87.14412689209013,56.56436920166027],[86.81172180175797,56.53054809570318],[86.60897827148455,56.614051818847656],[86.42799377441423,56.55036926269537],[86.19337463378923,56.615814208984425],[86.15843200683605,56.50875854492187],[85.88780212402361,56.43204879760747],[85.52743530273466,56.209197998046925],[85.25888824462919,56.19990539550775],[84.95735931396513,56.127262115478565],[84.7416458129884,56.12246322631841],[84.45922088623064,56.020111083984375],[84.27587890625011,55.965461730957145],[84.14360809326176,56.02264785766601],[83.96934509277372,55.99017333984375],[83.60433197021501,55.67186737060552],[83.27904510498053,55.6742668151856],[83.35403442382841,55.841747283935604],[83.08963775634771,56.21646499633789],[83.23370361328136,56.42011260986334],[83.1100006103516,56.52379608154297],[82.83723449707031,56.48358917236328],[82.78032684326182,56.39110183715831],[82.38423156738281,56.36865234375006],[81.73280334472668,56.25837326049799],[81.543754577637,56.26044845581066],[81.14511871337919,56.523666381835994],[80.58939361572283,56.4421958923341],[80.26486968994169,56.41904067993164],[79.73370361328153,56.83523178100591],[79.29233551025419,56.98184204101568],[78.74101257324219,57.03640365600586],[78.43326568603544,57.09355545043957],[78.36187744140648,57.153560638427734],[78.0177078247072,57.1381072998048],[76.78825378417986,57.1636352539063],[76.10438537597685,57.229522705078125],[75.82158660888689,57.47215270996093],[75.58903503417997,57.7135353088379],[75.51821899414085,57.94212341308593],[75.09281158447283,58.087249755859375],[75.23374176025408,58.20693588256836],[75.03644561767605,58.306667327880795],[75.34012603759794,58.43856811523432],[75.16059875488287,58.57164764404308],[75.14245605468756,58.649211883545036],[75.17931365966825,58.69867324829101],[75.67737579345696,58.94572830200201],[75.61545562744146,59.18246459960937],[75.82642364501959,59.28072738647472],[75.9382934570312,59.40827178955073],[76.17201232910156,59.52049636840832],[76.67018127441423,59.56427764892572],[76.76520538330084,59.97362899780279],[76.7211837768557,60.075912475585994],[76.86650848388678,60.22253799438482],[76.85919189453142,60.451816558838004],[77.0729522705081,60.53934097290044],[77.00238037109402,60.63495635986333],[77.05595397949247,60.789646148681754],[78.11224365234402,60.789642333984425],[78.87512207031256,60.74225234985357],[79.0121383666995,60.810642242431584],[79.24720764160173,60.790107727050895],[79.30303192138683,60.65766143798834],[80.16073608398466,60.6697731018067],[80.7252197265625,60.78895187377929],[81.0470581054688,60.733203887939396],[81.08193969726568,60.623523712158146],[81.47624206542997,60.60364532470703],[81.86383819580088,60.62518310546875],[82.15301513671868,60.50709152221685],[82.40245819091824,60.594604492187614],[82.41777801513688,60.69557189941406],[82.66909027099638,60.81636047363286],[83.19619750976562,61.00160598754882],[83.51782989501976,61.01337432861333],[83.94595336914078,60.83458328247076],[84.25296020507841,60.84401702880865]]]},"properties":{"ID_0":188,"ISO":"RU-TOM","NAME_0":"Russia","ID_1":69,"NAME_1":"Tomsk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Томская область","VARNAME_1":"Tomskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[38.59634780883806,54.25447082519531],[38.6642951965332,54.23201370239252],[38.67010116577177,54.23009490966802],[38.6728973388673,54.22926712036138],[38.683719635009936,54.2278099060058],[38.8136940002442,54.1434059143067],[38.77686309814447,54.02089691162114],[38.84314346313471,53.81212234497076],[38.94269180297862,53.70460510253912],[38.913753509521655,53.56142807006836],[38.727420806884766,53.492717742919865],[38.822742462158374,53.36959075927745],[38.53716659545927,53.320228576660156],[38.711978912353516,53.11088943481445],[38.3254127502442,52.95281219482433],[38.278091430664006,53.05439758300787],[37.90835952758806,53.06698608398443],[37.85785293579101,53.017463684082145],[37.77911758422857,53.112495422363224],[37.58091354370117,53.142402648925895],[37.57963562011736,53.27813720703131],[37.29885482788091,53.30502319335943],[37.121025085449276,53.27268218994152],[36.75029754638666,53.30532836914057],[36.685241699218864,53.41013336181646],[36.500736236572436,53.39054107666027],[36.285392761230696,53.531932830810604],[36.039611816406364,53.57264328002924],[35.99767684936546,53.638332366943416],[35.927242279052734,53.75899887084961],[35.984798431396655,53.90098190307623],[36.24413681030302,54.0797691345216],[36.21937942504894,54.17079544067382],[36.50695419311529,54.271457672119254],[36.94339752197271,54.31204605102545],[36.97293472290067,54.4212303161621],[36.84381866455078,54.4885520935058],[37.0100402832034,54.5870513916015],[37.18505477905302,54.6140403747558],[37.23786544799833,54.82754898071289],[37.48008346557623,54.80990219116222],[37.68643188476557,54.693054199218864],[37.96731185913103,54.83044433593744],[38.13704299926752,54.690452575683594],[38.515602111816406,54.593887329101676],[38.44290924072283,54.397415161132926],[38.59634780883806,54.25447082519531]]]},"properties":{"ID_0":188,"ISO":"RU-TUL","NAME_0":"Russia","ID_1":70,"NAME_1":"Tula","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Тульская область","VARNAME_1":"Tul'skaya|Tulskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.209213256836,52.93704605102545],[99.00712585449236,52.9436759948731],[98.93306732177763,52.685543060302734],[98.81523132324212,52.54051589965832],[98.64746093750004,52.435390472412166],[98.64791870117216,52.278533935546925],[98.98967742919928,52.18605804443371],[98.98908996582054,52.123634338378956],[98.8526611328125,52.0411109924317],[98.69629669189459,51.820365905761776],[98.31530761718743,51.7178955078125],[98.23431396484375,51.46228027343749],[98.04824829101591,51.43787384033203],[97.86727905273432,50.94981765747082],[98.0128784179688,50.87408447265624],[97.95504760742203,50.781925201416065],[98.13265228271484,50.59640502929693],[98.32448577880876,50.538970947265625],[98.27804565429693,50.312072753906364],[98.11618041992182,50.103946685791016],[97.86272430419939,49.94789123535162],[97.76550292968756,49.98431396484375],[97.42997741699219,49.78806304931646],[97.19372558593756,49.7747192382813],[97.00298309326178,49.91452026367193],[96.71691894531277,49.90789794921886],[96.61174011230474,49.98205566406255],[96.40827941894537,49.90231323242193],[96.30212402343767,49.98712158203125],[96.0958099365235,50.01947021484381],[95.47781372070312,49.92234802246099],[95.1295547485352,49.948928833007926],[94.96422576904303,50.06171035766607],[94.60881805419922,50.03871154785161],[94.39892578125011,50.234130859375],[94.34870910644554,50.46482467651367],[94.2236709594726,50.58272171020508],[93.40289306640653,50.58551025390624],[93.10412597656254,50.566894531250114],[92.98245239257818,50.658187866210994],[93.03298950195318,50.7629508972168],[92.8438873291015,50.79410934448248],[92.60710144042991,50.71600723266596],[92.32531738281267,50.88637161254883],[92.30509185791033,50.74412918090826],[92.1957702636718,50.68482208251947],[91.88392639160149,50.73040771484369],[91.66287994384781,50.66690444946295],[91.65794372558611,50.58383941650396],[91.44643402099608,50.54964828491222],[91.44431304931656,50.46540069580083],[91.13926696777371,50.45790100097656],[90.7377319335938,50.487930297851676],[90.66803741455077,50.336765289306754],[90.77500152587908,50.288471221923885],[90.66252899169928,50.16356277465825],[90.36828613281278,50.14447021484369],[90.2874832153322,50.032325744628906],[89.60530853271489,49.94659423828131],[89.60778045654301,50.0583953857423],[89.40225219726574,50.31097412109369],[89.59128570556635,50.37336730957031],[89.79672241210955,50.374256134033196],[89.86594390869134,50.45931243896495],[89.5593032836914,50.646766662597706],[89.54168701171886,50.72339248657238],[89.36615753173834,50.86466598510748],[89.20065307617199,50.917152404785156],[89.03704071044939,51.05790328979498],[88.93582153320318,51.28644561767578],[88.99385833740261,51.3917350769044],[88.78808593750011,51.54139709472667],[89.16997528076188,51.53957366943365],[89.44203186035162,51.57472610473633],[89.6227493286134,51.51965332031261],[89.8809204101563,51.6950569152832],[90.06101989746122,51.74300384521496],[89.95777893066412,51.89212799072277],[90.17519378662108,52.113517761230526],[90.45197296142584,52.163402557373104],[90.65062713623041,52.0596656799317],[90.79418182373051,51.87935256958007],[90.98229980468761,51.929237365722656],[91.11965179443354,51.86716842651373],[91.38346099853531,51.892326354980575],[91.84846496582047,51.7764930725097],[92.38773345947271,51.7964248657226],[92.64479064941423,51.857685089111435],[92.82620239257812,51.851963043213004],[92.97964477539091,51.962425231933594],[93.41497039794939,52.184146881103516],[93.59529876709007,52.20566558837896],[93.74628448486345,52.48766326904297],[93.89962768554703,52.5786972045899],[94.13465881347656,52.88348770141613],[94.46691131591795,52.93654632568365],[94.66674041748041,53.387172698974666],[95.03922271728527,53.40536499023443],[95.12781524658203,53.46241760253912],[95.317451477051,53.398845672607536],[95.65732574462896,53.510955810546875],[95.99554443359402,53.47132110595703],[96.14958953857428,53.53629302978526],[96.35581207275412,53.53716659545892],[96.62551879882817,53.59534072875971],[96.6574020385745,53.67288589477545],[96.81473541259771,53.75337219238281],[97.04811096191406,53.61078643798834],[97.20844268798857,53.61151504516612],[97.51278686523443,53.382141113281364],[97.92311096191435,53.36027145385748],[97.99438476562506,53.23566818237305],[98.1916961669923,53.216613769531364],[98.20771026611338,53.10531616210943],[98.65788269042986,53.1620330810548],[99.209213256836,52.93704605102545]]]},"properties":{"ID_0":188,"ISO":"RU-TY","NAME_0":"Russia","ID_1":71,"NAME_1":"Tuva","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Республика Тыва","VARNAME_1":"Respublika Tyva|Republic of Tuva|Tyva|Tuvinskaya A.S.S.R.|Republic of Tyva"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[37.62685394287115,58.49007415771479],[37.66633224487322,58.4293899536134],[37.4277839660645,58.33383560180669],[37.43756103515641,58.216644287109425],[37.708984375,58.08309936523438],[37.41404342651373,57.96901702880859],[37.40953063964844,57.799392700195426],[37.604461669921875,57.76208114624034],[37.870578765869084,57.578578948974666],[37.89360427856474,57.434951782226555],[38.0726547241212,57.32637786865245],[38.334629058838004,57.360881805419915],[38.37487792968756,57.27999114990246],[38.223430633545036,57.1733856201173],[38.326648712158374,57.0173835754395],[38.18595123291027,56.97487640380854],[38.18656921386736,56.86711120605462],[38.32255554199236,56.75940322875988],[38.093559265136946,56.74406051635748],[38.02349853515641,56.84601593017584],[37.65044021606474,56.91661071777349],[37.586418151855526,56.81877136230474],[37.14842605590849,56.70548248291021],[37.131431579590014,56.52648162841797],[36.83159255981474,56.553646087646484],[36.24590301513677,56.3817977905274],[35.918178558349894,56.35478973388666],[35.67980957031273,56.460479736328125],[35.50653076171892,56.40373229980474],[35.47354507446295,56.2736701965332],[35.32214736938504,56.195327758789006],[35.328563690185604,56.07001113891607],[35.15716552734381,55.92962265014654],[34.818466186523494,55.944362640380916],[34.74118804931646,55.882789611816406],[34.231792449951165,56.03974914550781],[33.71378707885748,55.893928527832145],[33.72680664062517,55.80390548706055],[33.52970886230497,55.70221710205083],[33.298797607422046,55.67838668823242],[33.231391906738565,55.599971771240234],[33.012290954590014,55.5869140625],[32.6769828796389,55.628334045410156],[32.132472991943644,55.6372451782226],[32.09571456909197,55.7227554321289],[31.79309654235857,55.672634124755795],[31.457376480102763,55.75132369995123],[31.396373748779354,55.97911834716802],[31.53917884826666,56.05973815917969],[31.47416877746588,56.160060882568416],[31.506719589233683,56.317863464355526],[31.335454940796183,56.3177375793457],[31.250478744506836,56.43729400634771],[31.041820526123104,56.46479797363292],[31.071172714233395,56.614856719970646],[30.831148147583004,56.71336746215826],[31.013320922851847,56.941478729248104],[31.656005859375167,56.88953399658209],[31.81422615051275,57.05892181396489],[32.31204986572294,57.1481323242188],[32.30517959594726,57.20772933959961],[32.67626571655302,57.2868309020996],[32.80146408081072,57.39684677124035],[33.09372711181635,57.40131759643555],[33.387847900390796,57.55055236816406],[33.417179107666016,57.66699600219726],[33.64765548706083,57.71880340576171],[33.7308349609375,57.96771240234375],[33.62504196167009,58.04153060913097],[34.23824310302757,58.19052124023444],[34.742275238037166,58.056179046630916],[34.85094451904308,58.228973388671875],[35.094562530517635,58.172420501708984],[35.34325408935541,58.26561737060547],[35.40372085571312,58.3637351989746],[35.6119003295899,58.43427276611333],[35.98049926757807,58.39838790893566],[36.16667938232439,58.48733139038085],[36.471992492676065,58.522487640380916],[36.8418426513673,58.79821777343756],[37.09162139892584,58.84276199340826],[37.62685394287115,58.49007415771479]]]},"properties":{"ID_0":188,"ISO":"RU-TVE","NAME_0":"Russia","ID_1":72,"NAME_1":"Tver'","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Тверская область","VARNAME_1":"Kalinin|Kalininskaya|Tverskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[75.14245605468756,58.649211883545036],[75.16059875488287,58.57164764404308],[74.73494720458979,58.36335754394537],[74.15000915527361,58.11391830444341],[73.14716339111334,58.134361267089844],[72.82495117187517,57.959129333496094],[72.52975463867193,58.00011444091796],[72.17090606689447,57.99098587036144],[71.89984130859402,58.08410263061523],[71.3031387329102,58.02345657348633],[71.24032592773455,58.21358871459955],[71.290824890137,58.36579895019536],[70.87338256835938,58.52127838134772],[70.79064941406254,58.35472106933599],[70.54830169677746,58.04197692871105],[70.49469757080107,57.741832733154354],[70.6216735839846,57.66195678710937],[70.7104034423831,57.49315261840832],[70.42513275146501,57.3690223693847],[70.65911865234386,57.20405578613287],[70.81742095947294,57.31109619140636],[71.04919433593744,57.32264709472656],[71.14638519287132,57.171546936035156],[71.54615020751957,56.92844772338867],[71.62040710449247,56.82602691650396],[71.56251525878905,56.69229125976568],[71.37351989746098,56.617538452148494],[71.22164154052751,56.634525299072266],[70.96947479248063,56.42489624023443],[71.0162734985352,56.280860900878956],[70.87955474853521,56.16879653930664],[70.92158508300776,56.03067779541027],[70.77421569824219,55.86631774902337],[70.58161926269553,55.87178039550786],[70.71027374267595,55.474128723144645],[70.48387908935564,55.37136077880854],[70.52224731445312,55.27552413940424],[70.21791839599638,55.13327789306651],[69.91962432861357,55.215618133544865],[69.66804504394558,55.34294509887701],[69.33020019531273,55.36258316040044],[68.94994354248058,55.43181228637701],[68.65669250488287,55.25981140136719],[68.65050506591791,55.374019622802784],[68.20970916748058,55.61956024169921],[68.11446380615257,55.74163818359375],[67.8747177124024,55.69373321533203],[67.35261535644531,55.78641891479498],[67.2528152465822,55.97249221801757],[66.85343933105486,55.990516662597656],[66.62962341308622,56.05527114868164],[66.47815704345709,55.981964111328125],[66.30072021484375,56.105209350585994],[65.95559692382824,56.063632965087834],[65.5389633178713,56.33753967285162],[65.19559478759766,56.3365249633789],[64.98084259033203,56.6185188293457],[64.96775817871122,56.79666137695318],[65.20893096923845,56.81977462768554],[65.2780456542971,56.93207931518555],[65.09265136718773,56.97111129760753],[64.87589263916033,57.4865226745605],[65.0114135742188,57.61046600341796],[64.8923950195313,57.68666839599621],[65.41204071044939,57.84169769287114],[65.54083251953125,57.792900085449325],[65.88550567626957,57.9678192138673],[66.20344543457031,58.06344223022473],[66.03827667236334,58.27107238769542],[65.97730255126982,58.56711959838873],[66.30706024169945,58.57269287109375],[66.82949829101568,58.65853500366223],[66.8222045898438,58.88482666015631],[67.03288269042963,58.97479248046875],[67.16636657714872,58.91539764404291],[67.63455963134771,59.047012329101506],[67.76731109619146,59.156227111816456],[68.08787536621111,59.181385040283146],[68.42404937744169,59.2474479675293],[68.55377960205107,59.372577667236385],[68.61192321777372,59.54422378540039],[68.8736724853515,59.54337692260753],[69.40258026123041,59.762123107910156],[69.28900909423851,59.928524017333984],[69.55787658691423,59.9556884765625],[69.8055038452149,59.86115646362298],[70.1400146484375,59.93311691284179],[70.58908843994169,59.805034637451286],[71.19132232666033,59.842372894287166],[71.37345123291033,59.74011993408214],[71.87573242187506,59.53379440307622],[72.08049774169916,59.52090454101568],[72.43894195556639,59.299526214599666],[72.43045806884794,59.22414779663086],[72.65431976318365,59.09904098510742],[73.0994644165039,58.93502426147461],[72.96459960937499,58.85503768920893],[73.3410186767581,58.78667068481451],[73.62119293212918,58.845943450927734],[73.94738769531261,58.80373382568364],[74.12824249267594,58.7019538879395],[75.0425262451174,58.692779541015746],[75.14245605468756,58.649211883545036]]]},"properties":{"ID_0":188,"ISO":"RU-TYU","NAME_0":"Russia","ID_1":73,"NAME_1":"Tyumen'","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Тюменская область","VARNAME_1":"Tobol'sk|Tobol'skaya G.|Tyumenskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[53.7747535705567,58.49010086059576],[53.8800697326663,58.295551300048885],[53.81688690185564,58.25019454956065],[54.11820220947294,57.989734649658196],[54.192737579345874,57.83029937744151],[54.06269454956054,57.598224639892635],[54.255550384521534,57.5038414001466],[54.170021057129134,57.346649169921875],[54.30456542968761,57.325424194336044],[54.33173751831066,57.114879608154354],[54.065467834472656,56.83771133422857],[53.86454772949213,56.82402420043951],[53.882770538330014,56.655681610107365],[54.092826843262,56.627586364746094],[54.34623336792003,56.498722076416016],[54.40242767333979,56.371795654296875],[54.10133361816412,56.133831024169865],[53.79792785644536,55.980274200439396],[53.38531875610362,55.87492752075201],[53.259033203125,55.93959045410156],[53.58503341674799,56.170467376708984],[53.56889724731451,56.2570152282716],[53.23204040527372,56.1483612060548],[53.02949523925792,56.24081802368158],[52.99965667724615,56.42150115966808],[52.738582611084155,56.379337310791016],[52.572708129882756,56.274677276611385],[52.79676818847685,56.227539062500114],[52.483669281005916,56.03357315063482],[52.23495101928716,56.075416564941406],[52.25846862792974,55.924072265625114],[51.42961502075201,55.98303604125982],[51.53682708740228,56.09707260131836],[51.426757812500114,56.146137237548885],[51.33086013793951,56.37228012084961],[51.15329742431658,56.51069259643565],[51.165126800537394,56.65804290771496],[51.36336898803728,56.67270278930664],[51.52225494384788,56.877201080322315],[51.42948913574218,56.91449356079096],[51.11273574829096,57.29515075683594],[51.215572357177905,57.42981338500987],[51.523078918457145,57.451843261718864],[51.74322128295921,57.55364608764643],[51.92417526245117,57.746833801269524],[51.830421447753906,58.09310531616211],[51.669765472412166,58.17417907714856],[51.93144607543951,58.43129730224621],[52.190090179443416,58.474433898925724],[52.43425750732439,58.41974258422862],[52.84211349487316,58.40297698974615],[52.913887023926065,58.505149841308594],[53.1142158508303,58.543983459472706],[53.23191452026373,58.42437744140631],[53.38442230224638,58.41883087158209],[53.7747535705567,58.49010086059576]]]},"properties":{"ID_0":188,"ISO":"RU-UD","NAME_0":"Russia","ID_1":74,"NAME_1":"Udmurt","TYPE_1":"Respublika","ENGTYPE_1":"Republic","NL_NAME_1":"Удмуртская Республика","VARNAME_1":"Udmurtiya|Udmurt Republic|Udmurtskaya A.S.S.R.|Udmurtskaya Respublika"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.07981872558611,54.533687591552784],[50.24081802368169,54.36099243164073],[50.26553344726591,54.25235366821294],[50.1743354797365,54.07267379760748],[49.92872619628917,53.95122528076177],[49.58529663085937,53.82916259765631],[49.369068145752124,53.89337158203125],[48.99987792968767,53.84269332885753],[48.87150955200218,53.71326065063476],[48.57854080200218,53.777614593505916],[48.397457122802905,53.690464019775504],[48.41591644287114,53.52069091796875],[48.05347061157232,53.47399139404296],[47.986446380615234,53.38999557495123],[48.21672821044939,53.145809173583984],[48.179447174072436,53.058929443359375],[48.469799041748104,53.00088119506836],[48.55601501464855,52.94037628173834],[48.38547134399413,52.80673217773449],[47.84814834594743,52.754302978515625],[47.776252746582315,52.58022689819347],[47.596786499023715,52.630687713623104],[47.427352905273494,52.55996322631841],[46.970661163330135,52.65193176269531],[46.80248260498052,52.64192199707042],[46.98453521728527,52.813636779785156],[46.91351318359381,52.92414474487299],[46.96586608886713,53.160194396972656],[46.92005920410184,53.36815261840832],[46.675735473632926,53.49396133422857],[46.49107742309587,53.4961776733399],[46.49857711792015,53.624591827392635],[46.0453910827639,53.99513626098633],[45.84861755371099,53.97801208496105],[46.00680541992215,54.13702774047846],[46.36988449096708,54.2003440856933],[46.601036071777514,54.30510711669933],[46.69564056396484,54.39857864379883],[46.53348922729515,54.57398223876959],[46.480495452881144,54.76414489746099],[46.87243652343767,54.63331604003912],[47.05760574340826,54.71459960937506],[47.27970504760753,54.723297119140625],[47.44272613525408,54.574905395507805],[47.581104278564624,54.61192321777343],[47.775905609130916,54.76123809814453],[47.926410675048885,54.71271896362305],[48.11142730712885,54.77926254272461],[48.510887145996094,54.625183105468864],[48.83855438232422,54.65161132812505],[49.158420562744425,54.87781524658209],[49.432109832763956,54.82403945922845],[49.645526885986385,54.58616638183594],[49.87577819824219,54.53015899658208],[50.07981872558611,54.533687591552784]]]},"properties":{"ID_0":188,"ISO":"RU-ULY","NAME_0":"Russia","ID_1":75,"NAME_1":"Ul'yanovsk","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Ульяновская область","VARNAME_1":"Simbirsk|Simbirskaya G.|Ul'yanovskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.620475769043026,56.40495300292963],[42.744323730468864,56.2433128356933],[42.933547973632756,56.20075225830083],[42.71823883056657,56.08634185791021],[42.691493988037166,55.97716522216797],[42.47143936157254,55.90983963012701],[42.42458343505882,55.79261016845708],[42.26237106323248,55.743309020996094],[42.08871078491228,55.60809326171874],[42.13646697998041,55.408931732177784],[41.874668121338004,55.131786346435604],[41.8036880493164,55.11595535278326],[41.45321655273465,55.10940170288086],[41.20695114135759,55.21081161499035],[40.997104644775334,55.24111175537109],[40.877452850341854,55.18740081787115],[40.604900360107706,55.17817687988281],[40.50468063354492,55.309593200683594],[40.24649429321295,55.3130722045899],[40.081409454345874,55.50656509399413],[40.085449218750284,55.624637603759815],[39.92851257324213,55.812946319580135],[39.381835937500284,55.75542831420898],[39.14805984497075,55.83596420288086],[39.04911422729503,55.9370231628418],[38.864627838134815,55.91325378417969],[38.613887786865405,55.985824584960994],[38.56043624877958,56.14213943481451],[38.44150543212919,56.250606536865234],[38.48987960815441,56.3611679077149],[38.320983886718864,56.51554489135742],[38.432846069335994,56.68896484374994],[38.55662918090849,56.55862426757818],[38.78256225585948,56.60708236694336],[38.94511413574236,56.54873275756836],[39.140747070312784,56.58577728271478],[39.348094940185604,56.543270111084034],[39.43826293945318,56.76061248779302],[39.70699310302757,56.80736541748058],[39.885383605957315,56.765003204345696],[40.00674438476579,56.46383285522461],[40.22425842285178,56.40853500366211],[40.31420135498064,56.50989913940441],[40.723091125488565,56.59519195556646],[40.849788665771534,56.5037574768067],[41.60852432250999,56.44999694824219],[41.90042114257818,56.49721145629883],[41.9337806701663,56.36871337890619],[42.05952072143571,56.339920043945256],[42.2815208435058,56.45626831054681],[42.620475769043026,56.40495300292963]]]},"properties":{"ID_0":188,"ISO":"RU-VLA","NAME_0":"Russia","ID_1":76,"NAME_1":"Vladimir","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Владимирская область","VARNAME_1":"Vladimirskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.43362426757818,50.39659881591808],[47.31960678100602,50.33179473876953],[47.260910034179794,50.19892883300787],[47.33935546875017,50.105278015136776],[47.22412872314447,49.9663658142091],[46.89287567138671,49.83929443359369],[46.78265762329113,49.3326530456543],[47.05284500122076,49.16491317749035],[46.93761444091808,49.003669738769645],[46.778491973877124,48.9385337829591],[46.6070938110351,48.65580368041998],[46.58043670654313,48.71297836303716],[46.25581741333036,48.8485145568847],[46.065818786621264,48.853801727295036],[45.86848068237299,48.692279815673935],[45.58788681030285,48.569343566894645],[45.2648315429688,48.547519683838004],[45.052654266357706,48.36475753784191],[45.07697677612305,48.24496459960937],[45.33113098144531,48.13076019287115],[45.059612274170085,48.167221069335994],[44.98141098022478,48.0832252502442],[44.60692214965849,48.075504302978516],[44.635627746582315,48.17599868774414],[44.40397644042969,48.189575195312614],[44.3487663269043,48.071819305420036],[44.54751968383795,48.00454330444336],[44.40241241455095,47.869865417480526],[44.157932281494425,47.9174537658692],[44.05761718750006,47.80458068847656],[43.85755920410162,47.74082183837885],[43.71966552734398,47.63501739501953],[43.731311798095874,47.46975326538086],[43.27021026611345,47.40973663330078],[43.14810180664074,47.542148590088004],[43.01152420043945,47.48409271240229],[42.76799392700218,47.76208496093756],[42.732952117920206,47.863647460937614],[42.38208007812528,48.02016067504877],[42.0194854736331,48.04537200927746],[42.14414596557645,48.30023574829107],[42.08506393432611,48.418655395507926],[42.28453826904297,48.51268005371105],[42.61020660400419,48.56193923950201],[42.805290222168196,48.85587692260748],[42.75680541992193,48.93391799926769],[42.44863128662115,49.118022918701115],[42.282196044922046,49.177886962890625],[42.09750747680664,49.160408020019645],[42.08386230468767,49.40232086181635],[42.202400207519815,49.7384605407716],[41.9682693481447,49.85739135742199],[41.66932678222685,49.937877655029354],[41.69916534423828,50.027542114257756],[41.546077728271655,50.077735900878906],[41.4417343139649,50.186851501464844],[41.56347274780279,50.32399368286144],[41.52972030639654,50.60140991210948],[41.28280258178739,50.755706787109425],[41.5850906372072,50.919967651367294],[41.84122467041033,50.99868011474615],[41.92676162719743,51.13670349121094],[42.28616714477545,51.12461090087902],[42.69124984741228,51.16312408447277],[42.95245742797857,51.25340270996088],[43.39286422729498,51.04439163208019],[43.54269027709978,51.026103973388786],[43.82295989990251,51.13862609863281],[44.19629287719738,51.107051849365234],[44.310501098632976,51.183631896972656],[44.895298004150675,51.18392944335949],[45.10884475708007,51.12010574340826],[45.35993576049833,50.89147567749018],[45.35919570922863,50.785984039306754],[45.22847747802751,50.68468475341797],[45.29403305053711,50.5538063049317],[45.45093154907255,50.593265533447315],[45.727897644043026,50.57336425781256],[45.711803436279524,50.69474792480469],[45.89295959472684,50.764766693115284],[46.140678405761776,50.65069198608404],[46.12767028808599,50.541858673095646],[46.494293212890845,50.540046691894474],[46.673664093017635,50.69212722778332],[46.91388702392583,50.60490417480463],[47.01612854003912,50.488269805908146],[47.220188140869254,50.48167037963873],[47.43362426757818,50.39659881591808]]]},"properties":{"ID_0":188,"ISO":"RU-VGG","NAME_0":"Russia","ID_1":77,"NAME_1":"Volgograd","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Волгоградская область","VARNAME_1":"Stalingrad|Volgogradskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[37.788364410400504,61.55044174194341],[37.768093109130916,61.432945251464844],[38.202888488769815,61.08928680419927],[38.14723205566417,60.97548294067382],[38.679035186767635,60.74199295043945],[39.16817855834978,60.68583679199219],[39.504268646240405,60.709159851074276],[39.754878997802905,60.77202606201166],[39.99008941650418,60.68863677978527],[40.31475830078119,60.71973037719726],[40.438301086426065,60.796977996826165],[40.68736648559587,60.78285217285167],[40.9907875061038,60.68207168579112],[41.18537902832054,60.6755981445313],[41.432716369628906,60.7816772460938],[41.5980873107913,60.92374801635736],[41.82416534423834,60.92756271362299],[42.39422607421881,60.76912307739258],[42.71386337280302,60.8823509216308],[43.00558471679716,60.73624420166021],[43.13435363769559,60.82650756835943],[43.337352752685604,60.783920288085994],[43.743499755859425,60.996807098388615],[44.14776611328119,61.0461921691894],[44.2316551208496,60.957138061523494],[45.20437240600603,60.90912246704101],[45.28336715698242,61.202392578125064],[45.80521392822293,61.1678466796875],[45.736755371093864,61.03683090209972],[46.0068244934082,60.962619781494254],[46.31375122070307,60.97252655029297],[46.49473953247076,61.02838897705078],[46.79523849487316,60.95777893066417],[46.81387710571295,60.86542892456055],[47.071281433105526,60.86044311523443],[47.001819610595646,60.76008224487316],[47.069366455078175,60.592632293701115],[46.862567901611435,60.46040344238281],[46.800468444824496,60.27475738525402],[46.32950210571306,60.23822021484375],[46.41778564453131,60.1181526184082],[46.79274749755859,60.043579101562614],[47.042819976806754,60.154090881347656],[46.93797302246122,59.77157592773448],[47.10741424560564,59.74965667724621],[47.12318420410185,59.60858154296875],[46.42815017700195,59.5917701721192],[46.392559051513956,59.36978912353515],[46.05823135376004,59.32917404174817],[45.93606185913085,59.18530273437494],[45.32626342773466,59.222137451171875],[45.06600189209001,59.18870925903325],[44.99808120727545,59.11977386474614],[44.508804321289176,59.15933227539073],[44.31602096557622,59.13566207885742],[44.17053985595709,59.22280502319336],[43.36243438720709,59.21721649169921],[43.162059783935774,59.267299652099666],[42.83792495727556,59.14624786376953],[42.619132995605696,59.32605361938482],[42.24450302124034,59.31467056274426],[41.99591064453142,59.2617645263673],[42.09457015991239,59.10953521728527],[41.659282684326456,59.06169128417963],[41.29038619995123,58.98323059082036],[41.179321289062784,58.78628540039056],[41.28697204589861,58.72002029418945],[40.97508239746087,58.52682113647461],[40.519527435302905,58.55989074707031],[40.32236480712902,58.52770614624035],[40.11917114257835,58.589420318603565],[39.931518554687784,58.760929107666065],[39.31701660156244,58.92685699462884],[39.02193450927746,58.87201309204096],[38.91802215576189,58.72964096069341],[38.587203979492244,58.76531982421874],[38.43384552001959,58.70920181274419],[38.04698562622099,58.73508071899414],[37.91072845458979,58.619583129882756],[37.74551010131836,58.64282226562511],[37.62685394287115,58.49007415771479],[37.09162139892584,58.84276199340826],[36.8418426513673,58.79821777343756],[36.471992492676065,58.522487640380916],[36.33991622924816,58.53141403198243],[36.203342437744425,58.6744270324707],[35.52941894531267,58.867214202880966],[35.19412612915045,58.84885787963873],[35.04992294311529,58.977817535400504],[34.80104064941406,59.090866088867294],[34.95458221435547,59.27118301391613],[35.170425415039176,59.250576019287216],[35.381988525390796,59.30266571044922],[35.500534057617244,59.438350677490234],[35.55297851562523,59.670536041259815],[35.433513641357706,59.76806259155285],[35.442920684814624,59.94422531127935],[35.14369964599638,60.15491104125976],[35.33945846557623,60.61004638671886],[35.20337677001958,60.79714202880871],[35.494171142578125,60.85186004638678],[35.60015106201183,60.94232940673839],[35.67248916625982,61.2005271911621],[36.46399307250982,61.414272308349716],[36.625110626220874,61.560272216796996],[36.883815765380916,61.5478973388673],[37.073902130127124,61.63053894042969],[37.39406585693376,61.523868560791016],[37.788364410400504,61.55044174194341]]]},"properties":{"ID_0":188,"ISO":"RU-VLG","NAME_0":"Russia","ID_1":78,"NAME_1":"Vologda","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Вологодская область","VARNAME_1":"Vologodskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[40.6066513061524,51.93589782714844],[40.96789932251005,51.88087081909179],[41.007873535156364,51.72241210937494],[41.35627365112321,51.71627426147461],[41.41281127929681,51.770069122314446],[41.67168045043974,51.7427864074707],[42.00630569458025,51.63741683959972],[42.26778411865239,51.67601013183605],[42.58007812500028,51.57358169555664],[42.84353256225608,51.48182678222661],[42.9382286071779,51.39073944091797],[42.95245742797857,51.25340270996088],[42.69124984741228,51.16312408447277],[42.28616714477545,51.12461090087902],[41.92676162719743,51.13670349121094],[41.84122467041033,50.99868011474615],[41.5850906372072,50.919967651367294],[41.28280258178739,50.755706787109425],[41.52972030639654,50.60140991210948],[41.56347274780279,50.32399368286144],[41.4417343139649,50.186851501464844],[41.41949844360374,50.08774566650396],[41.128780364990234,49.90298843383795],[40.981307983398494,49.68046951293957],[40.58903884887718,49.580993652343864],[40.28217315673845,49.62424850463867],[40.20746994018549,49.56257247924815],[40.15028381347685,49.618324279785206],[39.794551849365405,49.56964111328125],[39.65687942504883,49.626773834228516],[39.603275299072266,49.74347686767583],[39.37724304199247,49.73956680297857],[39.228057861328345,49.82275772094738],[39.36486434936523,50.04544067382824],[39.24822235107421,50.1157836914063],[39.13768005371122,50.42704772949224],[39.21214675903326,50.487911224365234],[39.06449890136736,50.676937103271484],[38.82070922851574,50.82352828979503],[38.945518493652344,51.010120391845646],[38.7117538452149,51.011901855468864],[38.49182128906273,51.05882644653325],[38.54579162597679,51.24855804443365],[38.36970138549833,51.27934265136713],[38.405540466308764,51.355941772460994],[38.31935119628906,51.56193161010742],[38.211643218994304,51.65342330932628],[38.50942993164074,51.76330947875988],[38.4607200622558,51.92352294921881],[38.34043884277355,51.95900726318364],[38.730281829833984,52.10144042968749],[38.94610214233427,52.0831031799317],[39.146160125732706,51.97442626953124],[39.22228622436552,52.08960342407232],[39.56947708129899,52.04647827148432],[39.593559265137,51.95172500610363],[39.79224014282221,51.905361175537166],[39.9783210754395,51.94729614257807],[40.6066513061524,51.93589782714844]]]},"properties":{"ID_0":188,"ISO":"RU-VOR","NAME_0":"Russia","ID_1":79,"NAME_1":"Voronezh","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Воронежская область","VARNAME_1":"Voronezhskaya Oblast"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[69.54374694824236,66.76667022705078],[70.1770858764649,66.65625],[70.17656707763682,66.54322814941418],[69.87551879882835,66.4765625],[69.60676574707054,66.57343292236327],[69.54374694824236,66.76667022705078]]],[[[71.4135513305664,66.88784027099615],[71.5848999023438,66.65260314941406],[71.28749847412115,66.63957977294933],[70.9708328247072,66.52708435058594],[70.597915649414,66.50624847412121],[70.25468444824223,66.60572814941412],[71.4135513305664,66.88784027099615]]],[[[77.72968292236322,72.59843444824223],[78.18125152587913,72.55833435058594],[78.35156250000006,72.47135162353516],[77.81250000000017,72.2874984741211],[76.96250152587919,72.275001525879],[76.93801879882818,72.355728149414],[77.33802032470726,72.51823425292963],[77.72968292236322,72.59843444824223]]],[[[72.18333435058611,72.80208587646484],[72.70207977294933,72.72291564941406],[72.83750152587902,72.25416564941412],[72.58593749999994,72.07239532470709],[72.47083282470709,71.88749694824219],[72.30833435058616,71.83125305175781],[72.31822967529303,71.70051574707043],[71.84166717529325,71.52291870117216],[71.86302185058622,71.41718292236328],[72.24791717529325,71.19999694824224],[72.57083129882841,71.13333129882812],[72.57343292236334,70.98593902587913],[72.80573272705078,70.84531402587889],[72.67343902587918,70.61302185058594],[72.74948120117193,70.42656707763678],[72.42343902587884,70.28906250000011],[72.59166717529291,70.12916564941412],[72.49635314941406,69.97968292236357],[72.66822814941412,69.75260162353516],[72.49427032470707,69.6432342529298],[72.64323425292974,69.48802185058588],[72.5401000976563,69.37968444824213],[72.488021850586,69.0651016235352],[72.59426879882818,68.90676879882818],[73.07499694824236,68.72083282470732],[73.50572967529297,68.56406402587902],[73.4224014282227,68.37031555175776],[73.0755157470706,68.20781707763666],[73.05052185058621,68.04010009765653],[73.19531250000028,67.93281555175781],[73.09218597412126,67.73802185058605],[72.86458587646494,67.6312484741211],[72.52500152587896,67.57917022705078],[72.38957977294928,67.3125],[72.0380172729492,67.29322814941418],[72.0333328247073,67.14791870117188],[71.76406097412104,66.9151000976563],[71.38957977294928,66.90208435058594],[71.07656097412115,66.81093597412108],[70.86042022705078,66.81874847412108],[70.58333587646507,66.71041870117188],[70.26875305175781,66.6729202270509],[69.99010467529297,66.79843902587902],[69.6458358764649,66.75416564941435],[69.52916717529325,66.80625152587902],[69.04792022705101,66.81458282470707],[68.4395828247072,66.71041870117188],[68.40625,66.61666870117199],[68.7895812988283,66.75624847412115],[69.14791870117216,66.77083587646484],[69.12968444824217,66.61302185058622],[69.45207977294945,66.48750305175787],[70.37916564941423,66.32917022705084],[71.27916717529325,66.34999847412138],[72.089584350586,66.22916412353516],[72.41874694824223,66.34999847412138],[72.35468292236351,66.4484329223634],[72.48332977294916,66.59791564941412],[72.86250305175776,66.63124847412108],[72.97551727294926,66.707817077637],[73.48958587646513,66.82291412353516],[73.60832977294922,66.92708587646483],[73.85364532470707,66.98802185058605],[73.95365142822293,67.19426727294922],[73.90676879882824,67.27448272705084],[74.1192703247072,67.43698120117192],[74.62916564941412,67.62500000000023],[74.79114532470709,67.77031707763672],[74.79948425292969,68.0244827270509],[74.59114837646501,68.23906707763683],[74.31250000000017,68.36458587646494],[74.46614837646513,68.49635314941418],[74.44218444824236,68.66301727294928],[74.70417022705084,68.77291870117199],[75.32917022705084,68.8812484741212],[76.20833587646513,68.97708129882812],[76.60156250000006,68.96198272705072],[76.62135314941423,68.77552032470709],[77.33125305175798,68.47499847412121],[77.12343597412132,68.2671890258789],[77.33698272705095,68.22864532470703],[77.19635009765653,68.09218597412121],[77.29948425292991,67.89115142822277],[77.11927032470732,67.75051879882818],[77.70156097412132,67.57865142822288],[78.30885314941429,67.52968597412115],[78.83958435058611,67.5999984741211],[78.54374694824234,67.66666412353527],[78.12291717529324,67.6374969482423],[77.84791564941418,67.71875000000011],[77.45259857177734,67.76301574707026],[77.53385162353516,68.12239837646484],[77.7958297729495,68.214584350586],[78.17656707763666,68.25572967529297],[77.94426727294939,68.38385009765636],[77.95365142822266,68.47135162353544],[77.72135162353516,68.58802032470726],[77.68281555175781,68.8765640258789],[76.831771850586,69.03801727294928],[76.73332977294922,69.12708282470709],[76.44791412353544,69.12083435058605],[76.03125,69.2395858764649],[75.50000000000017,69.24791717529297],[75.12760162353521,69.13697814941412],[74.72916412353521,69.07499694824224],[74.4375,69.13124847412115],[73.99375152587885,69.06874847412121],[73.76927185058611,69.16301727294916],[73.90364837646507,69.39739990234386],[73.52968597412121,69.73384857177746],[73.66406250000006,69.82759857177734],[73.78697967529308,70.08073425292974],[73.67552185058616,70.11510467529325],[74.2307281494141,70.42760467529295],[74.26823425292986,70.66406250000011],[73.96302032470732,70.81718444824224],[73.89323425292963,70.97239685058616],[73.55573272705084,71.21823120117188],[73.03176879882818,71.42656707763678],[73.5161514282226,71.66822814941412],[73.46510314941405,71.77656555175787],[73.9270858764649,71.89583587646496],[74.61250305175774,72.01457977294928],[74.96406555175797,72.14218902587895],[75.08281707763699,72.27448272705095],[74.99791717529325,72.61875152587885],[74.76093292236345,72.80156707763678],[74.94791412353538,72.870834350586],[75.62239837646513,72.5546875],[75.49218750000017,72.49948120117216],[75.69531250000017,72.29322814941405],[75.55885314941412,72.22031402587908],[75.22083282470709,71.85624694824219],[75.4499969482423,71.55833435058616],[75.2171859741211,71.41093444824224],[75.4124984741211,71.29374694824217],[76.13749694824224,71.20833587646507],[76.89375305175781,71.18125152587913],[76.94374847412115,70.99791717529297],[76.94374847412115,71.07499694824219],[77.0104141235351,71.1770858764649],[77.77291870117216,71.1312484741211],[77.91510009765642,70.97968292236334],[78.35364532470707,70.92240142822266],[78.5958328247072,70.9499969482423],[78.3604202270509,71.06458282470732],[78.30000305175797,71.1895828247072],[77.90052032470732,71.28489685058605],[77.25416564941418,71.33125305175793],[77.05989837646489,71.41718292236328],[76.6583328247072,71.46458435058605],[76.2588500976563,71.58802032470697],[76.0359344482423,71.90364837646496],[76.40208435058616,72.00624847412121],[76.87291717529313,72.05208587646501],[77.48332977294926,71.83958435058605],[77.7937469482423,71.81041717529291],[78.24531555175787,71.96198272705084],[77.99791717529295,72.0999984741211],[77.51249694824217,72.05416870117182],[77.89427185058605,72.30781555175791],[78.52656555175776,72.37232208251947],[78.70376586914057,72.20899200439482],[79.29625701904301,72.04562377929688],[79.82361602783203,72.05065917968756],[80.43543243408214,71.92166137695312],[80.17088317871105,71.6934204101563],[79.84688568115234,71.60134887695324],[79.4478149414062,71.5979537963867],[79.32951354980497,71.41822052001963],[79.95226287841824,71.13273620605463],[80.64058685302757,71.04404449462885],[80.9412384033206,70.62785339355462],[80.77522277832036,70.47492980957031],[80.40042877197271,70.41894531250028],[79.77902221679693,70.19899749755864],[78.99893951416038,69.8693008422851],[79.11716461181646,69.65074920654297],[79.51301574707058,69.62089538574224],[79.62031555175787,69.46599578857428],[79.88831329345709,69.32746124267578],[80.70544433593773,69.28064727783214],[81.03229522705095,69.19174194335943],[81.7123413085938,69.2663192749024],[81.7941589355471,69.41696929931646],[82.07879638671886,69.34305572509777],[81.94712066650413,69.17728424072277],[82.473197937012,69.12739562988281],[82.43271636962896,69.02983856201183],[82.6866531372073,68.77631378173834],[82.94504547119163,68.60554504394531],[82.72123718261736,68.55062866210938],[82.76107025146479,68.26068878173828],[82.42337799072271,68.06729125976562],[82.40893554687528,67.92445373535179],[81.78427124023466,67.88308715820318],[82.13707733154303,67.60752105712902],[82.36286163330095,67.53440093994163],[82.3633575439456,67.28780364990239],[82.17472839355497,67.2007446289064],[83.06177520751976,66.88204956054686],[83.3520660400391,66.65151977539068],[83.10823059082048,66.49989318847662],[83.60469818115229,66.1426391601563],[83.37172698974632,66.0139617919923],[83.57308197021484,65.78657531738293],[83.96014404296898,65.75729370117188],[84.31130981445341,65.65745544433605],[84.5837707519533,65.44721984863287],[84.65340423583984,65.269142150879],[84.33868408203142,65.10496520996094],[84.42256927490229,64.90697479248047],[84.98545074462908,64.92274475097668],[85.25509643554716,64.7798461914063],[85.56273651123075,64.83673095703136],[85.81340026855463,64.78584289550774],[85.92136383056635,64.57178497314464],[85.81849670410185,64.49195098876953],[85.96559143066418,64.26583862304693],[85.96140289306652,64.05160522460943],[85.35650634765648,63.8379478454591],[85.31461334228527,63.66764068603521],[85.12200164794938,63.578701019287166],[85.61133575439476,63.36091995239269],[85.53903198242193,63.14397811889654],[85.61633300781278,63.075511932373104],[85.50865173339861,62.92270278930664],[85.04309844970707,62.66841125488286],[84.91792297363298,62.44660949707036],[84.5862808227539,62.26531600952154],[84.51454162597673,62.178100585937614],[84.11017608642595,62.375648498535206],[83.924057006836,62.51715087890631],[83.60777282714861,62.53034210205084],[83.4541778564456,62.45714187622075],[83.1026916503908,62.53255844116222],[83.07604217529297,62.60532760620117],[82.7977371215822,62.64584350585938],[82.79174041748074,62.75681686401373],[82.31701660156278,62.76225662231445],[82.12830352783209,62.82230377197271],[81.93137359619135,62.695571899414006],[81.75702667236338,62.710811614990234],[81.30226135253912,62.86458587646484],[81.33756256103543,62.918346405029354],[80.98886871337913,63.13390731811529],[80.6514282226563,63.08463287353527],[80.64023590087919,63.01207351684581],[80.22909545898455,62.845100402832145],[79.92871856689453,62.79586791992199],[79.83836364746115,62.58890533447277],[78.99143981933592,62.58255004882818],[78.79982757568365,62.60879898071294],[78.17890167236345,62.5573501586914],[77.83757019042974,62.56728744506847],[77.38918304443388,62.72827911376959],[77.15322113037138,62.84365081787109],[77.04341125488276,62.96817016601562],[76.74124908447294,63.03769302368164],[76.4052734375,62.970607757568416],[75.79931640625,63.121200561523494],[75.0422439575197,63.04962921142578],[74.53107452392595,63.03267669677734],[74.25740051269531,63.16174697875982],[73.42466735839844,63.20652770996105],[73.15238952636747,63.41143035888672],[72.93383789062494,63.4105224609375],[72.74829864501969,63.29071044921874],[72.2196655273438,63.295429229736385],[71.67887878417974,63.196769714355526],[71.56651306152344,63.410808563232415],[71.55718231201172,63.56864929199225],[71.35946655273465,63.688201904296875],[70.98557281494146,63.682006835937614],[70.65180969238303,64.00510406494146],[70.81331634521483,64.08845520019537],[70.75384521484398,64.1821517944337],[70.33610534667974,64.3324966430664],[69.87749481201183,64.30187225341803],[69.83003997802751,64.3594589233399],[69.46727752685564,64.35311889648438],[69.34092712402372,64.41421508789068],[69.04702758789074,64.31826019287115],[68.9477767944338,64.16963958740234],[68.51328277587913,64.27231597900396],[67.80738830566412,64.02831268310547],[67.66862487792986,64.06930541992188],[67.28074645996098,64.05672454833984],[66.97481536865257,64.15877532958984],[66.83994293212896,64.25575256347668],[66.95699310302751,64.41297149658203],[66.73339843750028,64.50668334960943],[66.40273284912126,64.44991302490246],[66.17908477783209,64.5268020629884],[65.55883026123075,64.4949111938477],[64.4892120361331,64.35369873046875],[64.10195922851568,64.3547744750976],[63.68376541137701,64.25371551513672],[63.508247375488565,64.32085418701172],[63.434528350830355,64.44148254394537],[63.067581176757805,64.51388549804688],[62.88588714599638,64.4736328125],[62.561855316162166,64.60882568359386],[62.87424087524431,64.7725677490235],[62.74229812622076,64.90599060058605],[62.81833267211931,64.98221588134771],[62.87464523315429,65.2905502319336],[62.45777511596708,65.40213012695312],[62.30106735229509,65.60311889648449],[62.06253051757807,65.7015686035158],[62.77543258667009,65.85578918457036],[62.83475112915056,66.02202606201172],[63.01632690429693,66.1111450195313],[63.33848190307634,66.42150878906256],[63.80997085571307,66.5367813110351],[64.02467346191406,66.64322662353533],[64.28661346435553,66.6426239013673],[64.60217285156243,66.79056549072271],[65.11894226074224,66.90106964111338],[65.05420684814447,67.0696487426759],[65.58485412597673,67.26663208007817],[65.75045013427734,67.36220550537115],[66.13677978515653,67.45228576660168],[65.98181915283209,67.66757965087896],[66.07022094726591,67.94718170166021],[65.5746612548831,67.90645599365229],[65.38114929199236,67.97439575195312],[65.33327484130876,68.28456878662115],[65.48619842529308,68.40888214111328],[65.711166381836,68.53039550781249],[65.30855560302757,68.81558227539068],[64.7704162597658,68.86550903320312],[64.59991455078142,69.00817871093749],[64.76014709472656,69.12368774414074],[64.75769042968756,69.12708282470709],[64.75578308105474,69.1297225952149],[64.94114685058594,69.1921844482423],[64.941665649414,69.25624847412121],[65.10416412353527,69.26041412353521],[65.77083587646501,69.08958435058588],[66.38333129882818,68.92916870117182],[66.92292022705082,68.85208129882824],[67.17134857177746,68.70677185058588],[68.13957977294922,68.40000152587896],[68.51041412353521,68.254165649414],[68.93906402587919,68.62760162353527],[69.05885314941418,68.79531097412108],[68.88124847412138,68.90416717529308],[68.50051879882817,68.95885467529303],[68.08802032470714,69.2421875],[68.12448120117205,69.50572967529308],[67.83750152587896,69.49375152587885],[66.80416870117216,69.73124694824219],[66.88593292236351,69.9598999023437],[67.39739990234392,70.04218292236351],[67.25624847412126,70.18125152587896],[67.12760162353538,70.22239685058594],[67.36042022705095,70.44583129882818],[67.2317657470706,70.51718902587902],[67.37291717529325,70.7624969482423],[66.78073120117182,70.91093444824219],[66.92082977294928,71.07707977294922],[66.75208282470732,71.10208129882812],[66.93750000000011,71.27083587646501],[67.34166717529308,71.339584350586],[68.09739685058611,71.5692672729495],[68.30625152587908,71.67292022705078],[68.52656555175798,71.84739685058604],[68.77031707763688,72.20885467529291],[68.9104156494141,72.5],[69.13957977294939,72.73332977294933],[69.29374694824224,72.82291412353521],[70.30416870117199,72.8812484741211],[71.4000015258789,72.86666870117199],[71.63124847412114,72.88749694824213],[72.18333435058611,72.80208587646484]]],[[[74.47760009765653,73.10676574707037],[74.73124694824241,73.08125305175793],[74.58750152587902,72.85208129882812],[74.13749694824224,72.97916412353521],[74.47760009765653,73.10676574707037]]],[[[70.85468292236345,73.47551727294932],[71.14791870117193,73.4375],[71.61250305175787,73.23332977294922],[71.1895828247072,73.1020812988283],[70.92292022705072,73.10832977294932],[70.44791412353537,73.01457977294922],[69.92968750000023,73.05260467529303],[70.21250152587889,73.36250305175787],[70.85468292236345,73.47551727294932]]]]},"properties":{"ID_0":188,"ISO":"RU-YAN","NAME_0":"Russia","ID_1":80,"NAME_1":"Yamal-Nenets","TYPE_1":"Avtonomnyy Okrug","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"Ямало-Ненецкий АОк","VARNAME_1":"Yamalo-Nenetskiy A. Okrug"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[40.97508239746087,58.52682113647461],[41.21762084960943,58.34755706787121],[41.04389572143555,58.2803306579591],[40.92118072509771,58.123043060302734],[40.75995254516607,58.061565399170036],[40.77132034301775,57.953132629394645],[40.620868682861385,57.892883300781186],[40.69865417480497,57.792171478271534],[40.59346008300798,57.60753631591791],[40.414947509765625,57.47853851318365],[40.49948120117193,57.2833251953125],[40.08861160278349,57.21368789672857],[39.64764404296881,57.05530929565429],[39.43826293945318,56.76061248779302],[39.348094940185604,56.543270111084034],[39.140747070312784,56.58577728271478],[38.94511413574236,56.54873275756836],[38.78256225585948,56.60708236694336],[38.55662918090849,56.55862426757818],[38.432846069335994,56.68896484374994],[38.32255554199236,56.75940322875988],[38.18656921386736,56.86711120605462],[38.18595123291027,56.97487640380854],[38.326648712158374,57.0173835754395],[38.223430633545036,57.1733856201173],[38.37487792968756,57.27999114990246],[38.334629058838004,57.360881805419915],[38.0726547241212,57.32637786865245],[37.89360427856474,57.434951782226555],[37.870578765869084,57.578578948974666],[37.604461669921875,57.76208114624034],[37.40953063964844,57.799392700195426],[37.41404342651373,57.96901702880859],[37.708984375,58.08309936523438],[37.43756103515641,58.216644287109425],[37.4277839660645,58.33383560180669],[37.66633224487322,58.4293899536134],[37.62685394287115,58.49007415771479],[37.74551010131836,58.64282226562511],[37.91072845458979,58.619583129882756],[38.04698562622099,58.73508071899414],[38.43384552001959,58.70920181274419],[38.587203979492244,58.76531982421874],[38.91802215576189,58.72964096069341],[39.02193450927746,58.87201309204096],[39.31701660156244,58.92685699462884],[39.931518554687784,58.760929107666065],[40.11917114257835,58.589420318603565],[40.32236480712902,58.52770614624035],[40.519527435302905,58.55989074707031],[40.97508239746087,58.52682113647461]]]},"properties":{"ID_0":188,"ISO":"RU-YAR","NAME_0":"Russia","ID_1":81,"NAME_1":"Yaroslavl'","TYPE_1":"Oblast","ENGTYPE_1":"Region","NL_NAME_1":"Ярославская область","VARNAME_1":"Yaroslavskaya"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[134.29315185546898,48.373844146728516],[134.05769348144543,48.3353843688966],[133.80044555664062,48.19977951049815],[133.4681549072269,48.06760025024425],[133.16029357910168,48.10570144653326],[133.0079040527345,48.01818084716797],[132.69148254394565,47.953609466552734],[132.50482177734398,47.711250305175895],[132.37559509277355,47.753879547119254],[132.2450866699221,47.70516204833979],[131.8037261962893,47.66971206665045],[131.50099182128926,47.72776031494146],[131.25323486328136,47.73376083374029],[131.09564208984375,47.681346893310604],[130.9541931152346,47.7202720642091],[130.86395263671898,47.93212127685558],[130.65205383300804,48.109340667724666],[130.82553100585972,48.30009078979497],[130.7223663330078,48.50586318969732],[130.60110473632835,48.51501083374029],[130.52542114257835,48.638519287109425],[130.63667297363293,48.81423950195324],[130.5672607421876,48.86181259155285],[130.78848266601562,48.977741241455135],[130.95930480957054,48.994235992431584],[131.0970916748047,49.19723129272461],[131.22180175781295,49.26071929931646],[131.38809204101585,49.25324630737315],[131.48107910156284,49.22642135620117],[131.75328063964844,49.34252548217768],[131.97270202636741,49.29559707641596],[132.04080200195335,49.45930099487305],[132.14900207519543,49.48933029174815],[132.37709045410202,49.41337203979498],[132.3872070312501,49.319740295410156],[132.73899841308594,49.32287597656255],[132.78678894043014,49.24151229858404],[133.14349365234386,49.18630981445318],[133.23858642578148,48.904422760009766],[133.40159606933628,48.7902069091798],[133.73208618164074,48.69158172607433],[134.16358947753906,48.64513015747076],[134.31478881835938,48.747222900390675],[134.51039123535153,48.63659286499034],[134.89059448242233,48.59363937377941],[134.7577819824221,48.43090820312494],[134.5171813964845,48.47882461547863],[134.29315185546898,48.373844146728516]]]},"properties":{"ID_0":188,"ISO":"RU-YEV","NAME_0":"Russia","ID_1":82,"NAME_1":"Yevrey","TYPE_1":"Avtonomnaya Oblast","ENGTYPE_1":"Autonomous Region","NL_NAME_1":"Eврейская АОб","VARNAME_1":"Den jødiske autonome oblasten|Evrey|Jewish A.Obl.|Yahudi|Yevreyskaya A.Obl.|Evreyskaya AOb"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.0887908935548,58.2240562438966],[119.13709259033213,58.12749481201171],[119.00719451904308,57.72717666625987],[119.44618988037132,57.57947540283214],[119.39148712158214,57.418170928955135],[119.66258239746129,57.163555145263786],[119.63708496093774,56.98066711425787],[119.7814941406251,56.9057502746582],[119.62329101562536,56.78557205200189],[119.821083068848,56.698146820068416],[119.77268218994139,56.605785369873104],[119.94508361816405,56.495574951171875],[120.28088378906261,56.45709228515625],[120.4599838256837,56.246940612793026],[120.17959594726608,56.22220611572277],[120.05799865722656,56.15636444091802],[120.07330322265648,55.9106712341308],[120.35559082031271,55.89044189453131],[120.61238861083996,55.93164443969721],[120.83158111572276,56.02541351318359],[121.13418579101572,56.034633636474545],[121.24979400634788,55.98251724243175],[121.2721862792972,55.74502944946295],[121.3716735839846,55.50830078124994],[121.55158996582043,55.48530578613286],[121.68128967285168,55.60924148559576],[121.82729339599632,55.59227371215832],[121.98679351806663,55.391254425048935],[121.91439819335972,55.212265014648544],[121.95268249511729,55.022392272949276],[121.67738342285179,54.83369827270513],[121.86429595947287,54.791618347168026],[121.86299133300804,54.6698112487793],[122.07918548584018,54.45100402832037],[121.65828704833983,54.3732643127442],[121.73188781738283,54.19917678833019],[121.62589263916027,54.04391098022472],[121.79698181152354,53.9735717773438],[121.94478607177757,53.81986236572271],[121.95218658447266,53.553474426269474],[122.05168151855467,53.42110443115228],[121.81532287597679,53.414920806884766],[121.21849060058605,53.28129196166998],[120.87671661376976,53.28703308105469],[120.52926635742199,53.071357727050774],[120.28043365478537,52.866298675537216],[120.02459716796908,52.75965118408203],[120.06121063232456,52.58407211303711],[120.45249176025403,52.641300201416016],[120.71965026855467,52.52878952026367],[120.61812591552733,52.315029144287166],[120.75633239746107,52.2444801330567],[120.76122283935547,52.11244964599621],[120.65203094482443,51.934108734130916],[120.47400665283203,51.88294219970709],[120.17446899414061,51.68162155151373],[120.0864028930664,51.66909027099614],[119.9873733520509,51.45269012451183],[119.75689697265646,51.21081161499023],[119.74944305419933,51.10062026977545],[119.58075714111361,50.975570678710994],[119.42825317382824,50.69343948364269],[119.2734909057617,50.60175323486333],[119.18374633789085,50.345920562744254],[119.34559631347656,50.34682083129888],[119.36380767822287,50.17494964599621],[119.19748687744162,50.01208877563482],[118.54898834228538,49.91485214233404],[118.15896606445324,49.660980224609375],[117.84203338623047,49.506931304931584],[117.47849273681642,49.62837600708019],[117.27426910400413,49.63154983520508],[116.93340301513672,49.72518920898449],[116.71945190429709,49.82707977294916],[116.60668945312524,49.94030761718756],[116.20514678955078,50.031681060791016],[115.72094726562523,49.8845787048341],[115.37463378906251,49.90783309936534],[115.23792266845703,49.97939300537115],[115.00405120849621,50.17737579345708],[114.67230224609398,50.25628662109375],[114.34903717041027,50.282894134521484],[113.79571533203135,50.09408569335949],[113.23026275634766,49.83494567871093],[113.0875244140625,49.608276367187614],[112.71630859375023,49.49184036254894],[112.51316833496116,49.54648590087902],[111.93450927734403,49.3955078125],[111.3922729492187,49.373107910156364],[110.99224090576178,49.19986724853521],[110.7662963867187,49.14508056640625],[110.59631347656277,49.16210937500006],[110.39947509765652,49.258483886718864],[110.23412322998058,49.1651229858399],[109.70153045654303,49.23160934448248],[109.57109069824247,49.22258377075195],[109.32910156249994,49.34149169921875],[108.96551513671903,49.35949707031255],[108.55558776855491,49.33432006835943],[108.28427886962906,49.528659820556754],[107.9588928222658,49.66699218750006],[107.94702148437511,49.85554885864269],[107.74230957031256,49.982921600341854],[107.70338439941429,50.04202270507823],[107.90488433837885,50.1462135314942],[107.98388671875017,50.265735626220696],[108.45928192138678,50.41084289550787],[108.43138885498053,50.54073715209961],[108.09030151367205,50.65878677368158],[108.24688720703142,50.748924255371094],[108.29508209228544,51.0081024169923],[108.54918670654291,51.094142913818416],[108.3722000122072,51.181735992431754],[108.48529052734368,51.39182281494151],[108.71248626709,51.43352127075206],[108.95189666748045,51.42693328857433],[109.24658966064459,51.349941253662166],[109.6315917968751,51.42744827270502],[109.9656906127932,51.59393692016613],[110.35228729248053,51.586704254150334],[110.41329193115234,51.514919281005916],[110.65718841552727,51.49725341796881],[110.81089019775419,51.569496154785156],[110.84139251709013,51.66312026977545],[111.00709533691429,51.7771453857423],[111.27769470214844,51.86703491210937],[111.62138366699236,51.940441131591854],[111.90428161621094,52.17807769775385],[112.15048980712925,52.294643402099666],[112.3279037475586,52.229850769043026],[112.51860046386751,52.333370208740284],[112.92559051513672,52.34449768066412],[113.12449645996139,52.44719696044933],[113.56588745117188,52.47590255737316],[113.77400207519543,52.62709808349609],[114.02849578857422,52.6571502685548],[114.23398590087913,52.82198715209966],[114.30138397216807,53.043579101562614],[114.1680908203125,53.081085205078125],[114.102294921875,53.20202636718756],[113.94398498535156,53.27601242065441],[113.84599304199241,53.41097259521496],[113.84449005126964,53.61529922485357],[113.98649597168003,53.71546936035156],[114.4966812133789,53.81497573852545],[114.6169891357424,53.948337554931754],[114.8556900024414,54.00134658813482],[115.2238540649414,54.194267272949276],[115.45918273925781,54.270111083984375],[115.56758117675791,54.390731811523494],[116.2816848754885,54.51376342773448],[116.71199035644543,54.53763580322276],[116.81219482421874,54.61384201049816],[116.95027923583994,54.8743057250976],[116.82498168945312,55.08005523681651],[116.61997985839876,55.16183090209955],[116.41257476806686,55.337203979492294],[116.18379211425781,55.32855224609381],[115.96028900146507,55.37213516235357],[115.92726898193358,55.6559562683106],[115.79917907714889,56.01026535034179],[115.86387634277354,56.12752914428705],[115.71392822265636,56.350528717041016],[115.690185546875,56.56768798828125],[115.46198272705077,56.63488388061518],[115.62550354003906,56.72625732421881],[115.59595489501953,56.86897659301758],[115.7581253051759,56.95084381103509],[116.13798522949254,56.83269500732427],[116.24888610839857,56.87526321411133],[116.4649887084962,56.792110443115234],[116.9766845703125,56.7938613891601],[117.26209259033226,56.965255737304744],[117.40299224853516,56.85409545898449],[117.58058166503929,56.89760971069341],[117.66378784179709,57.079795837402344],[117.5772933959961,57.165882110595646],[117.72589111328125,57.26401901245123],[117.62229156494173,57.3300018310548],[117.32167816162121,57.347053527832024],[117.20367431640625,57.530384063720646],[117.28559112548841,57.62681198120122],[117.12066650390625,57.85252761840814],[117.29359436035168,57.84815216064458],[117.40738677978516,58.07118988037121],[117.57389831542969,58.14407348632806],[117.46318817138683,58.329998016357415],[117.7854843139653,58.42399978637695],[118.29698181152365,58.337387084960994],[118.44488525390624,58.22644805908214],[118.63647460937499,58.17738723754883],[119.0887908935548,58.2240562438966]]]},"properties":{"ID_0":188,"ISO":"RU-ZAB","NAME_0":"Russia","ID_1":83,"NAME_1":"Zabaykal'ye","TYPE_1":"Kray","ENGTYPE_1":"Territory","NL_NAME_1":"Забайкальский край","VARNAME_1":"Zabaykalsky"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/singapore.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/singapore.geojson
new file mode 100644
index 0000000..220894b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/singapore.geojson
@@ -0,0 +1,8 @@
+{
+"type": "FeatureCollection",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+                                                                                
+"features": [
+{ "type": "Feature", "properties": { "ID_0": 205, "ISO": "SGP", "NAME_0": "Singapore", "OBJECTID_1": 197, "ISO3": "SGP", "NAME_ENGLI": "Singapore", "NAME_ISO": "SINGAPORE", "NAME_FAO": "Singapore", "NAME_LOCAL": "Singapore", "NAME_OBSOL": null, "NAME_VARIA": null, "NAME_NONLA": null, "NAME_FRENC": "Singapour", "NAME_SPANI": "Singapur", "NAME_RUSSI": "Сингапур", "NAME_ARABI": "سنغافورة", "NAME_CHINE": "新加坡", "WASPARTOF": null, "CONTAINS": null, "SOVEREIGN": "Singapore", "ISO2": "SG", "WWW": null, "FIPS": "SN", "ISON": 702, "VALIDFR": "19650809", "VALIDTO": "Present", "POP2000": 4018114, "SQKM": 526.04100000000005, "POPSQKM": 7638.4046110500003, "UNREGION1": "South-Eastern Asia", "UNREGION2": "Asia", "DEVELOPING": 1, "CIS": 0, "Transition": 0, "OECD": 0, "WBREGION": null, "WBINCOME": "High income: nonOECD", "WBDEBT": "Debt not classified", "WBOTHER": null, "CEEAC": 0, "CEMAC": 0, "CEPLG": 0, "COMESA": 0, "EAC": 0, "ECOWAS": 0, "IGAD": 0, "IOC": 0, "MRU": 0, "SACU": 0, "UEMOA": 0, "UMA": 0, "PALOP": 0, "PARTA": 0, "CACM": 0, "EurAsEC": 0, "Agadir": 0, "SAARC": 0, "ASEAN": 1, "NAFTA": 0, "GCC": 0, "CSN": 0, "CARICOM": 0, "EU": 0, "CAN": 0, "ACP": 0, "Landlocked": 0, "AOSIS": 1, "SIDS": 1, "Islands": 1, "LDC": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.643478393554631, 1.346220970153922 ], [ 103.643669128417912, 1.345929026603699 ], [ 103.643875122070256, 1.345664978027457 ], [ 103.644050598144474, 1.345366001129264 ], [ 103.64420318603527, 1.345005989074764 ], [ 103.644432067871037, 1.34463894367218 ], [ 103.644699096679688, 1.344231009483337 ], [ 103.645103454589901, 1.343898057937736 ], [ 103.645568847656349, 1.343595027923641 ], [ 103.646049499511776, 1.343348979950008 ], [ 103.646530151367116, 1.343173027038574 ], [ 103.647018432617244, 1.343080043792781 ], [ 103.647483825683537, 1.343047976493892 ], [ 103.647933959960938, 1.343024969100952 ], [ 103.648368835449276, 1.343040943145809 ], [ 103.648818969726506, 1.343004941940364 ], [ 103.649246215820312, 1.342862963676566 ], [ 103.649650573730469, 1.342862963676566 ], [ 103.650009155273438, 1.34273803234106 ], [ 103.650283813476619, 1.342496991157645 ], [ 103.650505065918082, 1.342203021049613 ], [ 103.650604248046861, 1.341804027557316 ], [ 103.650749206542969, 1.341405034065247 ], [ 103.650703430175895, 1.34099900722515 ], [ 103.650535583496037, 1.340589046478385 ], [ 103.650314331054801, 1.340201020240784 ], [ 103.650161743164006, 1.339763998985291 ], [ 103.650001525878892, 1.339313030242977 ], [ 103.649887084960994, 1.33879101276392 ], [ 103.650024414062486, 1.338186979293937 ], [ 103.65030670166027, 1.337612032890377 ], [ 103.650665283203182, 1.337092995643616 ], [ 103.651000976562543, 1.336539030075073 ], [ 103.651420593261776, 1.336141943931579 ], [ 103.651885986328054, 1.335909962654171 ], [ 103.652366638183651, 1.335775017738285 ], [ 103.652824401855412, 1.335623025894108 ], [ 103.653312683105526, 1.335607051849479 ], [ 103.653785705566349, 1.335724949836845 ], [ 103.654258728027401, 1.335857033729667 ], [ 103.654685974121207, 1.336043953895569 ], [ 103.655128479003849, 1.336181044578552 ], [ 103.655487060546974, 1.336418032646293 ], [ 103.655799865722699, 1.336694002151489 ], [ 103.656082153320241, 1.336969971656856 ], [ 103.656295776367188, 1.337242960929871 ], [ 103.656425476074332, 1.3375279903413 ], [ 103.656448364257741, 1.337823987007255 ], [ 103.65641021728527, 1.338129997253532 ], [ 103.656326293945312, 1.338431000709647 ], [ 103.656112670898423, 1.338660955429077 ], [ 103.655853271484474, 1.338822960853634 ], [ 103.655487060546974, 1.338758945465088 ], [ 103.655021667480526, 1.338526010513419 ], [ 103.654594421386719, 1.338212013244686 ], [ 103.654205322265625, 1.338124990463371 ], [ 103.653923034668082, 1.338328003883476 ], [ 103.653739929199332, 1.3386470079422 ], [ 103.653579711914176, 1.338955044746456 ], [ 103.653404235839787, 1.339192032814026 ], [ 103.653244018554688, 1.339426994323787 ], [ 103.653099060058651, 1.339669942855835 ], [ 103.653060913085938, 1.340005040168762 ], [ 103.653053283691406, 1.340394973754996 ], [ 103.653022766113224, 1.340837001800651 ], [ 103.652877807617188, 1.341320991516113 ], [ 103.652793884277457, 1.341861009597778 ], [ 103.652778625488381, 1.342421054840145 ], [ 103.652763366699276, 1.34297704696661 ], [ 103.652679443359375, 1.343518018722534 ], [ 103.652458190917912, 1.344002962112483 ], [ 103.652107238769531, 1.344396948814449 ], [ 103.651718139648438, 1.344715952873344 ], [ 103.651344299316406, 1.344997048378048 ], [ 103.650993347167955, 1.345253944397029 ], [ 103.650642395019588, 1.345489025115967 ], [ 103.650329589843864, 1.34575796127325 ], [ 103.649978637695256, 1.345960974693355 ], [ 103.649673461914119, 1.346176981926078 ], [ 103.649398803710881, 1.34641003608715 ], [ 103.649162292480568, 1.346654057502803 ], [ 103.648948669433651, 1.346879005432243 ], [ 103.648727416992244, 1.347090959548893 ], [ 103.648437499999943, 1.347273945808467 ], [ 103.648132324218736, 1.347537994384709 ], [ 103.647789001464901, 1.347895979881287 ], [ 103.647399902343807, 1.348320007324276 ], [ 103.64697265625, 1.34872496128088 ], [ 103.646591186523438, 1.349087953567619 ], [ 103.646232604980526, 1.349359035492 ], [ 103.646003723144531, 1.349666953086853 ], [ 103.64572906494152, 1.349920034408626 ], [ 103.645347595214957, 1.350116014480648 ], [ 103.645004272460881, 1.350442051887455 ], [ 103.644668579101548, 1.350852012634221 ], [ 103.644363403320369, 1.351333022117672 ], [ 103.644073486328125, 1.351824998855591 ], [ 103.643821716308707, 1.352298974990958 ], [ 103.643623352050895, 1.352769017219543 ], [ 103.643440246582131, 1.353194952011165 ], [ 103.643150329589844, 1.353515982627982 ], [ 103.64286041259777, 1.353839993476925 ], [ 103.642646789550838, 1.35425698757183 ], [ 103.64239501953125, 1.354665040969792 ], [ 103.642059326171932, 1.355000019073543 ], [ 103.64170837402348, 1.355303049087638 ], [ 103.641395568847599, 1.355589985847473 ], [ 103.641181945800895, 1.355860948562679 ], [ 103.641212463378906, 1.356215000152702 ], [ 103.641716003418068, 1.356850981712341 ], [ 103.642265319824261, 1.357138037681579 ], [ 103.642753601074205, 1.357308983802852 ], [ 103.643188476562557, 1.35758197307598 ], [ 103.643630981445412, 1.357761979103145 ], [ 103.644065856933537, 1.357900977134705 ], [ 103.644454956054688, 1.358106017112789 ], [ 103.644691467285156, 1.358432054519596 ], [ 103.644828796386648, 1.35884702205658 ], [ 103.644935607910199, 1.35931396484375 ], [ 103.644882202148423, 1.359868049621639 ], [ 103.644905090332088, 1.360520005226192 ], [ 103.645332336425838, 1.361124038696346 ], [ 103.645591735839787, 1.361103057861328 ], [ 103.645668029785199, 1.361078023910579 ], [ 103.646049499511776, 1.360957980155888 ], [ 103.64652252197277, 1.361086964607296 ], [ 103.647041320800838, 1.361242055893058 ], [ 103.647491455078068, 1.361515998840332 ], [ 103.647933959960938, 1.361785054206962 ], [ 103.64844512939446, 1.361876010894832 ], [ 103.648986816406364, 1.361763954162541 ], [ 103.649505615234432, 1.36193501949316 ], [ 103.650016784667969, 1.36213397979742 ], [ 103.650512695312614, 1.362316012382507 ], [ 103.650955200195312, 1.362522959709167 ], [ 103.651390075683636, 1.362735033035335 ], [ 103.651947021484375, 1.362779021263179 ], [ 103.652496337890625, 1.362779021263179 ], [ 103.653335571289119, 1.361943960189876 ], [ 103.653892517089901, 1.361943960189876 ], [ 103.654167175292898, 1.361665964126587 ], [ 103.654441833496151, 1.361943960189876 ], [ 103.654441833496151, 1.362779021263179 ], [ 103.654167175292898, 1.363067984580937 ], [ 103.654014587402344, 1.363471031188965 ], [ 103.653900146484432, 1.363895058632011 ], [ 103.65380859375, 1.364305973053035 ], [ 103.653617858886705, 1.364657044410819 ], [ 103.653419494628906, 1.36496198177349 ], [ 103.653221130371023, 1.365224003791752 ], [ 103.652969360351662, 1.365457057952995 ], [ 103.652786254882926, 1.365823030471745 ], [ 103.652580261230526, 1.366233944892997 ], [ 103.652481079101562, 1.36672401428234 ], [ 103.652366638183651, 1.367205023765621 ], [ 103.652351379394588, 1.367702007293701 ], [ 103.652397155761832, 1.368181943893489 ], [ 103.652725219726605, 1.368567943572998 ], [ 103.653053283691406, 1.368896007537842 ], [ 103.653343200683651, 1.36919903755188 ], [ 103.653617858886705, 1.369461059570369 ], [ 103.653869628906307, 1.369709014892578 ], [ 103.654090881347713, 1.369961977005005 ], [ 103.654220581054673, 1.370254039764404 ], [ 103.654380798339844, 1.370620965957642 ], [ 103.654556274413991, 1.371165990829468 ], [ 103.654754638671875, 1.37188100814825 ], [ 103.654983520507812, 1.372444033622855 ], [ 103.655242919921918, 1.372658967971915 ], [ 103.655548095703125, 1.37254905700695 ], [ 103.655952453613281, 1.372483015060482 ], [ 103.656372070312557, 1.372359991073722 ], [ 103.656784057617301, 1.372207045555115 ], [ 103.657165527343849, 1.37202703952795 ], [ 103.657600402831974, 1.371956944465751 ], [ 103.658073425293026, 1.371986031532344 ], [ 103.658576965332031, 1.372148036956901 ], [ 103.659126281738224, 1.372213959694022 ], [ 103.659683227539162, 1.372223019599915 ], [ 103.660209655761776, 1.372223019599915 ], [ 103.66083526611321, 1.372223019599915 ], [ 103.663887023925724, 1.372223019599915 ], [ 103.66416931152348, 1.372498989105338 ], [ 103.666389465332031, 1.372498989105338 ], [ 103.666664123535213, 1.372779011726379 ], [ 103.666946411132741, 1.372776985168457 ], [ 103.667221069335994, 1.373054981231803 ], [ 103.667312622070426, 1.372964024543762 ], [ 103.667503356933707, 1.372776985168457 ], [ 103.668891906738281, 1.372779011726379 ], [ 103.66972351074223, 1.371945023536796 ], [ 103.66972351074223, 1.371667027473449 ], [ 103.669998168945256, 1.371389031410331 ], [ 103.669998168945256, 1.37055504322052 ], [ 103.670280456543011, 1.370277047157344 ], [ 103.670280456543011, 1.368610978126526 ], [ 103.670555114746207, 1.368332982063407 ], [ 103.670555114746207, 1.367776989936942 ], [ 103.670829772949205, 1.367501020431519 ], [ 103.670829772949205, 1.3672230243684 ], [ 103.67138671875, 1.366667032241935 ], [ 103.671943664550781, 1.366667032241935 ], [ 103.672225952148494, 1.366389036178589 ], [ 103.672500610351562, 1.366389036178589 ], [ 103.672775268554744, 1.366667032241935 ], [ 103.673057556152273, 1.366667032241935 ], [ 103.673889160156307, 1.367501020431519 ], [ 103.673889160156307, 1.368332982063407 ], [ 103.674163818359474, 1.368610978126526 ], [ 103.674163818359474, 1.369166970252991 ], [ 103.674446105957017, 1.369444966316337 ], [ 103.674163818359474, 1.369722962379512 ], [ 103.674163818359474, 1.37055504322052 ], [ 103.673889160156307, 1.370833039283866 ], [ 103.673889160156307, 1.371111035346985 ], [ 103.673614501953068, 1.371389031410331 ], [ 103.673614501953068, 1.371667027473449 ], [ 103.673332214355526, 1.371945023536796 ], [ 103.673332214355526, 1.372220993041992 ], [ 103.671669006347756, 1.373888969421386 ], [ 103.671669006347756, 1.374166965484733 ], [ 103.67138671875, 1.374444961547852 ], [ 103.67138671875, 1.375277042388916 ], [ 103.671669006347756, 1.375555038452205 ], [ 103.671669006347756, 1.375833034515381 ], [ 103.673057556152273, 1.377220988273677 ], [ 103.673233032226491, 1.377555966377258 ], [ 103.673324584960994, 1.377967000007686 ], [ 103.673355102539119, 1.378337979316825 ], [ 103.673439025878849, 1.378636956215018 ], [ 103.673774719238395, 1.378851056098938 ], [ 103.674339294433707, 1.378898978233281 ], [ 103.674942016601676, 1.378638982772941 ], [ 103.675422668457074, 1.378429055214042 ], [ 103.675842285156307, 1.378350019454956 ], [ 103.676269531250114, 1.378330945968685 ], [ 103.676681518554631, 1.378335952758903 ], [ 103.677055358886662, 1.378370046615714 ], [ 103.677314758300781, 1.378494977950993 ], [ 103.677360534668011, 1.378810048103389 ], [ 103.677131652832088, 1.379302024841309 ], [ 103.676742553710938, 1.379601001739502 ], [ 103.676261901855582, 1.379693984985465 ], [ 103.675735473632798, 1.379732966423092 ], [ 103.675231933593793, 1.379801034927368 ], [ 103.674789428710923, 1.379940032959098 ], [ 103.674163818359474, 1.379999995231572 ], [ 103.673889160156307, 1.379999995231572 ], [ 103.673332214355526, 1.380555987358036 ], [ 103.673332214355526, 1.381665945053044 ], [ 103.673057556152273, 1.38194394111639 ], [ 103.673057556152273, 1.382222056388912 ], [ 103.672225952148494, 1.383056044578666 ], [ 103.670280456543011, 1.383056044578666 ], [ 103.670059204101562, 1.383046984672603 ], [ 103.66972351074223, 1.383038043975887 ], [ 103.669303894042955, 1.38294696807867 ], [ 103.668830871582131, 1.382812023162785 ], [ 103.668342590332031, 1.382779955863953 ], [ 103.667854309082145, 1.382779955863953 ], [ 103.667488098144645, 1.382779955863953 ], [ 103.667366027832017, 1.382779955863953 ], [ 103.666862487793011, 1.382779955863953 ], [ 103.666343688964957, 1.382773041725159 ], [ 103.665809631347585, 1.38273203372961 ], [ 103.665306091308651, 1.382611989975089 ], [ 103.664825439453224, 1.382485985755977 ], [ 103.664390563964901, 1.382321953773499 ], [ 103.663948059082031, 1.3821879625321 ], [ 103.663543701171875, 1.381957054138184 ], [ 103.663078308105582, 1.381741046905631 ], [ 103.662521362304801, 1.381718039512634 ], [ 103.661994934081974, 1.381893992424068 ], [ 103.661514282226619, 1.381942033767814 ], [ 103.661132812500057, 1.381966948509159 ], [ 103.660850524902287, 1.382061958313102 ], [ 103.660606384277457, 1.382205963134879 ], [ 103.660346984863338, 1.382354021072501 ], [ 103.660171508789119, 1.382598042488212 ], [ 103.659942626953111, 1.382840037345943 ], [ 103.659675598144645, 1.38309299945837 ], [ 103.659362792968736, 1.383291006088314 ], [ 103.658973693847642, 1.383283972740173 ], [ 103.658599853515625, 1.383054018020744 ], [ 103.658256530761776, 1.382761955261344 ], [ 103.657989501953068, 1.382437944412231 ], [ 103.657768249511818, 1.382174015045166 ], [ 103.65756988525402, 1.381963968276921 ], [ 103.657371520996207, 1.38180494308483 ], [ 103.657218933105412, 1.381665945053044 ], [ 103.656944274902401, 1.38194394111639 ], [ 103.656944274902401, 1.382778048515377 ], [ 103.657157897949261, 1.38349103927618 ], [ 103.657463073730469, 1.384019970893974 ], [ 103.657760620117301, 1.384515047073307 ], [ 103.658050537109361, 1.3849680423736 ], [ 103.65838623046875, 1.385311961174068 ], [ 103.658737182617131, 1.385583996772766 ], [ 103.659027099609418, 1.385900020599422 ], [ 103.659217834472713, 1.386329054832458 ], [ 103.659454345703239, 1.386793971061707 ], [ 103.659729003906236, 1.387295007705688 ], [ 103.660057067871207, 1.387807965278625 ], [ 103.660461425781193, 1.388267993927059 ], [ 103.660820007324332, 1.388825058937186 ], [ 103.661109924316463, 1.389469981193599 ], [ 103.661392211914176, 1.390151023864746 ], [ 103.661666870117173, 1.390831947326717 ], [ 103.661666870117173, 1.391111016273499 ], [ 103.661941528320412, 1.391389012336788 ], [ 103.661941528320412, 1.392223000526428 ], [ 103.662223815917955, 1.392500996589774 ], [ 103.662223815917955, 1.396389007568359 ], [ 103.661666870117173, 1.396944999694824 ], [ 103.661392211914176, 1.396944999694824 ], [ 103.660552978515682, 1.397776961326656 ], [ 103.660552978515682, 1.398054957389832 ], [ 103.66083526611321, 1.398332953453121 ], [ 103.66083526611321, 1.398610949516296 ], [ 103.661109924316463, 1.398888945579642 ], [ 103.661109924316463, 1.399166941642761 ], [ 103.662498474121151, 1.400555014610291 ], [ 103.662498474121151, 1.40083301067358 ], [ 103.662658691406307, 1.401257038116455 ], [ 103.662788391113281, 1.401775002479553 ], [ 103.662879943847699, 1.402259945869559 ], [ 103.662872314453182, 1.402735948562622 ], [ 103.662757873535099, 1.403241991996822 ], [ 103.662590026855455, 1.403805017471427 ], [ 103.66251373291027, 1.404461979866142 ], [ 103.662559509277273, 1.405138969421387 ], [ 103.662849426269588, 1.405701994895992 ], [ 103.663291931152457, 1.406108975410518 ], [ 103.663742065429688, 1.406463027000484 ], [ 103.664131164550781, 1.406806945800781 ], [ 103.664428710937614, 1.407178044319267 ], [ 103.664634704589943, 1.407582044601384 ], [ 103.664733886718807, 1.408033013343925 ], [ 103.664878845214844, 1.408470988273677 ], [ 103.665115356445369, 1.408849000930786 ], [ 103.66546630859375, 1.409158945083618 ], [ 103.665908813476619, 1.409396052360535 ], [ 103.666450500488324, 1.40944600105297 ], [ 103.666938781738224, 1.409441947937125 ], [ 103.667297363281364, 1.409396052360535 ], [ 103.66754150390625, 1.409245967865104 ], [ 103.667816162109432, 1.409096956253165 ], [ 103.668006896972713, 1.409499049186707 ], [ 103.668212890625057, 1.409669995307979 ], [ 103.668548583984432, 1.40979897975933 ], [ 103.668914794921861, 1.410027027130184 ], [ 103.669265747070312, 1.410351037979126 ], [ 103.669647216796861, 1.410637974739132 ], [ 103.669929504394588, 1.411010026931763 ], [ 103.670051574707031, 1.411522030830383 ], [ 103.670211791992188, 1.412057995796317 ], [ 103.670310974121151, 1.412600040435905 ], [ 103.670463562011776, 1.413074970245361 ], [ 103.670631408691406, 1.413486957550049 ], [ 103.670867919921932, 1.413740038871822 ], [ 103.671104431152457, 1.41387498378748 ], [ 103.671218872070369, 1.414186954498291 ], [ 103.671356201171875, 1.414492011070308 ], [ 103.67138671875, 1.41496396064764 ], [ 103.671401977539062, 1.415488004684448 ], [ 103.671463012695369, 1.415987014770508 ], [ 103.671630859375057, 1.416432023048344 ], [ 103.671676635742301, 1.416867017746029 ], [ 103.671745300292969, 1.417263984680232 ], [ 103.671905517578068, 1.417587041854858 ], [ 103.671966552734375, 1.418002009391785 ], [ 103.672096252441349, 1.418421030044613 ], [ 103.672248840332131, 1.418866038322506 ], [ 103.672485351562443, 1.419273972511348 ], [ 103.672706604003906, 1.419674992561397 ], [ 103.672813415527457, 1.42011296749115 ], [ 103.672943115234432, 1.42051100730896 ], [ 103.673042297363224, 1.42091703414917 ], [ 103.673103332519531, 1.421334028244075 ], [ 103.673286437988281, 1.421699047088737 ], [ 103.673332214355526, 1.422083973884583 ], [ 103.67337799072277, 1.422453045845145 ], [ 103.673553466796918, 1.422767996787968 ], [ 103.673622131347599, 1.423156976699943 ], [ 103.673713684082088, 1.423563003540153 ], [ 103.673866271972642, 1.423964023590202 ], [ 103.673995971679631, 1.424396991729793 ], [ 103.674163818359474, 1.424723029136601 ], [ 103.674446105957017, 1.425001025199947 ], [ 103.674446105957017, 1.425276994705314 ], [ 103.677497863769531, 1.428333044052238 ], [ 103.677497863769531, 1.428611040115413 ], [ 103.677780151367287, 1.428889036178703 ], [ 103.678054809570312, 1.428889036178703 ], [ 103.678337097168068, 1.429167985916138 ], [ 103.678886413574276, 1.429167985916138 ], [ 103.679168701171875, 1.428889036178703 ], [ 103.679725646972599, 1.428889036178703 ], [ 103.680000305175838, 1.429167985916138 ], [ 103.680831909179801, 1.429165005683899 ], [ 103.682777404785099, 1.431112051010132 ], [ 103.683052062988338, 1.431112051010132 ], [ 103.683517456054801, 1.431118011474609 ], [ 103.684097290039176, 1.431154966354484 ], [ 103.684631347656364, 1.431143999099845 ], [ 103.68503570556652, 1.431198000908012 ], [ 103.685302734375, 1.431342005729732 ], [ 103.685554504394588, 1.431383013725338 ], [ 103.685813903808707, 1.431439995765743 ], [ 103.686073303222656, 1.431614995002747 ], [ 103.686347961425895, 1.431895971298275 ], [ 103.686683654785213, 1.43218994140625 ], [ 103.687103271484432, 1.432387948036194 ], [ 103.687515258789176, 1.432554006576652 ], [ 103.687896728515739, 1.432772994041443 ], [ 103.688262939453239, 1.432983040809688 ], [ 103.688720703125, 1.433161020279044 ], [ 103.689270019531193, 1.433300018310604 ], [ 103.689834594726506, 1.433326959609929 ], [ 103.690368652343849, 1.433333992958069 ], [ 103.690864562988338, 1.433379054069519 ], [ 103.691291809082088, 1.433550000190792 ], [ 103.691787719726548, 1.433606982231197 ], [ 103.692291259765739, 1.433655023574943 ], [ 103.6927490234375, 1.433841943740845 ], [ 103.693206787109432, 1.434003949165401 ], [ 103.693656921386662, 1.43417501449585 ], [ 103.694107055664119, 1.434383988380432 ], [ 103.694564819336037, 1.434617042541617 ], [ 103.695045471191406, 1.434862971305904 ], [ 103.695526123046989, 1.435121059417668 ], [ 103.69600677490233, 1.435366988182182 ], [ 103.696411132812557, 1.435747027397212 ], [ 103.696807861328182, 1.43617403507244 ], [ 103.697189331054744, 1.436611056327876 ], [ 103.697570800781307, 1.436998963356018 ], [ 103.697807312011832, 1.43746995925909 ], [ 103.698097229003906, 1.437873959541378 ], [ 103.698394775390724, 1.438272953033504 ], [ 103.698814392089844, 1.438660025596619 ], [ 103.699256896972713, 1.439088940620479 ], [ 103.699783325195312, 1.439535021782035 ], [ 103.70029449462902, 1.440021038055477 ], [ 103.700790405273494, 1.440477013588008 ], [ 103.701278686523381, 1.440798044204826 ], [ 103.701751708984432, 1.441004991531486 ], [ 103.702156066894588, 1.441221952438354 ], [ 103.702499389648494, 1.441517949104252 ], [ 103.70281982421875, 1.441859960556144 ], [ 103.70316314697277, 1.442203998565788 ], [ 103.703506469726619, 1.442556977272147 ], [ 103.703796386718736, 1.442960977554435 ], [ 103.704093933105568, 1.44337797164917 ], [ 103.704391479492188, 1.443812966346854 ], [ 103.704750061035156, 1.444177985191288 ], [ 103.705154418945312, 1.444466948509273 ], [ 103.705543518066406, 1.444766044616813 ], [ 103.705902099609361, 1.445073962211723 ], [ 103.706245422363224, 1.445397019386348 ], [ 103.706619262695256, 1.445705056190548 ], [ 103.706932067871151, 1.446104049682674 ], [ 103.70723724365233, 1.446493029594421 ], [ 103.707725524902457, 1.446565985679683 ], [ 103.708145141601506, 1.446727991104239 ], [ 103.708541870117188, 1.44681894779211 ], [ 103.708839416503949, 1.447054028511104 ], [ 103.70908355712902, 1.44740104675293 ], [ 103.709411621093807, 1.447749018669128 ], [ 103.709861755371037, 1.448050022125244 ], [ 103.710327148437557, 1.448289036750736 ], [ 103.710800170898551, 1.448382973671016 ], [ 103.711181640625114, 1.44858098030096 ], [ 103.711616516113281, 1.448735952377376 ], [ 103.712020874023438, 1.448956966400146 ], [ 103.712463378906307, 1.449192047119084 ], [ 103.712936401367188, 1.449450016021672 ], [ 103.713447570800895, 1.449715971946716 ], [ 103.714019775390739, 1.449957966804447 ], [ 103.714622497558537, 1.450129032135066 ], [ 103.715232849121094, 1.450296998024101 ], [ 103.7158203125, 1.450487017631588 ], [ 103.716453552246151, 1.450492978096065 ], [ 103.717033386230526, 1.450500011444205 ], [ 103.717552185058594, 1.45054399967205 ], [ 103.718017578125099, 1.450590968132076 ], [ 103.71842193603527, 1.450744032859916 ], [ 103.718879699707017, 1.450834989547786 ], [ 103.719406127929616, 1.450932979583797 ], [ 103.720001220703125, 1.451076984405518 ], [ 103.720687866211051, 1.451109051704407 ], [ 103.721389770507869, 1.451110959053153 ], [ 103.721946716308594, 1.451110959053153 ], [ 103.722221374511832, 1.450832962989864 ], [ 103.723052978515611, 1.450832962989864 ], [ 103.723335266113338, 1.451110959053153 ], [ 103.724166870117131, 1.451110959053153 ], [ 103.724441528320355, 1.451388955116329 ], [ 103.725280761718864, 1.451388955116329 ], [ 103.725555419921875, 1.451110959053153 ], [ 103.727775573730582, 1.451110959053153 ], [ 103.728057861328182, 1.450832962989864 ], [ 103.728332519531364, 1.450832962989864 ], [ 103.728614807128906, 1.450554966926688 ], [ 103.728889465332145, 1.450554966926688 ], [ 103.729164123535142, 1.450276970863342 ], [ 103.729446411132869, 1.450276970863342 ], [ 103.730003356933651, 1.449723005294857 ], [ 103.730552673339886, 1.449723005294857 ], [ 103.731666564941406, 1.44861102104187 ], [ 103.731666564941406, 1.448333024978751 ], [ 103.731941223144645, 1.448055028915405 ], [ 103.731941223144645, 1.447777032852287 ], [ 103.732498168945369, 1.447222948074397 ], [ 103.732498168945369, 1.446944952011052 ], [ 103.732940673828054, 1.446491003036499 ], [ 103.733245849609432, 1.446185946464652 ], [ 103.733650207519645, 1.446007966995296 ], [ 103.73394775390625, 1.445698022842464 ], [ 103.734252929687614, 1.445402026176509 ], [ 103.734596252441449, 1.44514000415802 ], [ 103.734985351562614, 1.444864034652824 ], [ 103.735359191894588, 1.444499015808162 ], [ 103.735763549804801, 1.444128036499023 ], [ 103.736160278320426, 1.443742990493831 ], [ 103.736557006835866, 1.443410038948173 ], [ 103.736831665039105, 1.443011045455876 ], [ 103.737007141113281, 1.442559957504386 ], [ 103.737220764160199, 1.442221999168396 ], [ 103.737503051757926, 1.44194400310522 ], [ 103.737503051757926, 1.441388010978756 ], [ 103.737777709960938, 1.441110014915466 ], [ 103.737777709960938, 1.440834045410213 ], [ 103.738052368164176, 1.440556049346924 ], [ 103.738052368164176, 1.440278053283748 ], [ 103.738334655761719, 1.440000057220459 ], [ 103.738334655761719, 1.439721941947937 ], [ 103.73847198486321, 1.439443945884818 ], [ 103.73847198486321, 1.439165949821472 ], [ 103.738403320312543, 1.438681006431693 ], [ 103.737503051757926, 1.4375 ], [ 103.737503051757926, 1.436944007873535 ], [ 103.737220764160199, 1.43666601181036 ], [ 103.737258911132869, 1.436354041099605 ], [ 103.737480163574332, 1.435932040214539 ], [ 103.737670898437614, 1.435487985610962 ], [ 103.737762451171875, 1.435009002685604 ], [ 103.737777709960938, 1.434517025947684 ], [ 103.737777709960938, 1.434010982513541 ], [ 103.737747192382798, 1.433480024337768 ], [ 103.737617492675838, 1.432944059372062 ], [ 103.737358093261719, 1.432410955429191 ], [ 103.736846923828182, 1.431988954544124 ], [ 103.736335754394645, 1.431547045707816 ], [ 103.736312866210994, 1.430922031402645 ], [ 103.736701965332145, 1.430444002151603 ], [ 103.737251281738338, 1.43026602268219 ], [ 103.737724304199219, 1.430099964141959 ], [ 103.738059997558707, 1.429851055145263 ], [ 103.738197326660213, 1.429641962051505 ], [ 103.738090515136662, 1.429324984550533 ], [ 103.737525939941349, 1.428586006164664 ], [ 103.737243652343793, 1.428308010101318 ], [ 103.737243652343793, 1.427752017974854 ], [ 103.736968994140625, 1.427193999290466 ], [ 103.736763000488224, 1.426360011100826 ], [ 103.736480712890682, 1.425611972808895 ], [ 103.736267089843807, 1.42531597614294 ], [ 103.736289978027401, 1.425179004669133 ], [ 103.736015319824219, 1.424654960632381 ], [ 103.735740661621151, 1.424244999885616 ], [ 103.735870361328125, 1.423784017562866 ], [ 103.735801696777273, 1.423552036285514 ], [ 103.735870361328125, 1.423045992851314 ], [ 103.73583984375, 1.422638058662471 ], [ 103.735832214355455, 1.422186970710811 ], [ 103.735809326171818, 1.421712040901184 ], [ 103.735694885253949, 1.42124795913702 ], [ 103.735527038574276, 1.42080104351038 ], [ 103.735237121581974, 1.420431971550045 ], [ 103.73486328125, 1.420124053955135 ], [ 103.734504699707031, 1.419777035713253 ], [ 103.734176635742244, 1.419394969940299 ], [ 103.733848571777457, 1.418992996215934 ], [ 103.733482360839957, 1.418637990951652 ], [ 103.733055114746151, 1.418334960937614 ], [ 103.732635498046932, 1.418027043342704 ], [ 103.732254028320369, 1.41767597198492 ], [ 103.731903076171932, 1.417297959327698 ], [ 103.731536865234432, 1.416944980621338 ], [ 103.731163024902401, 1.416591048240662 ], [ 103.73081207275402, 1.416198968887329 ], [ 103.73044586181652, 1.415807008743343 ], [ 103.730087280273381, 1.415392041206416 ], [ 103.729644775390739, 1.415066003799552 ], [ 103.72913360595696, 1.414844989776611 ], [ 103.728614807128906, 1.41470396518713 ], [ 103.728134155273551, 1.414540052413997 ], [ 103.727600097656193, 1.414459943771419 ], [ 103.727027893066349, 1.414443969726562 ], [ 103.726432800293082, 1.414401054382438 ], [ 103.725868225097756, 1.414175033569336 ], [ 103.725379943847656, 1.413810968399162 ], [ 103.724990844726548, 1.413375020027161 ], [ 103.724517822265739, 1.413023948669377 ], [ 103.724075317382855, 1.412704944610653 ], [ 103.723625183105469, 1.412489056587276 ], [ 103.72321319580071, 1.412292957305965 ], [ 103.722770690918026, 1.412206053733769 ], [ 103.722343444824276, 1.412107944488639 ], [ 103.721931457519531, 1.412027955055237 ], [ 103.721511840820312, 1.411985039711055 ], [ 103.721092224121193, 1.411991953849849 ], [ 103.720664978027401, 1.412042021751461 ], [ 103.72021484375, 1.412109971046561 ], [ 103.719718933105526, 1.412176966667175 ], [ 103.719192504882926, 1.412246942520198 ], [ 103.71868896484375, 1.412420034408569 ], [ 103.718215942382926, 1.412662029266301 ], [ 103.71771240234375, 1.412929058075008 ], [ 103.717376708984432, 1.413419008254948 ], [ 103.716964721679673, 1.413884043693599 ], [ 103.716514587402457, 1.414291977882385 ], [ 103.71600341796875, 1.414551019668636 ], [ 103.715484619140682, 1.414692997932434 ], [ 103.715156555175881, 1.414713025093192 ], [ 103.714996337890739, 1.414721965789908 ], [ 103.714721679687557, 1.414443969726562 ], [ 103.714447021484318, 1.414443969726562 ], [ 103.714309692382812, 1.414307951927242 ], [ 103.713890075683594, 1.413887977600098 ], [ 103.713890075683594, 1.413609981536979 ], [ 103.713470458984489, 1.413403034210319 ], [ 103.713058471679801, 1.413334012031555 ], [ 103.712776184082031, 1.413053989410514 ], [ 103.71221923828125, 1.41277801990509 ], [ 103.711944580078239, 1.41277801990509 ], [ 103.711669921875057, 1.413056015968436 ], [ 103.710830688476548, 1.413056015968436 ], [ 103.710281372070312, 1.412500023841971 ], [ 103.708610534668026, 1.412500023841971 ], [ 103.707809448242188, 1.412464022636414 ], [ 103.707015991210938, 1.412430047988948 ], [ 103.704925537109375, 1.412500023841971 ], [ 103.704742431640611, 1.412454962730521 ], [ 103.704376220703111, 1.412361025810185 ], [ 103.703887939453182, 1.411111950874442 ], [ 103.704170227050781, 1.410763025283813 ], [ 103.704605102539119, 1.410624027252254 ], [ 103.705001831054744, 1.410833954811153 ], [ 103.705276489257756, 1.411041975021419 ], [ 103.705558776855526, 1.411250948906059 ], [ 103.705627441406364, 1.411528944969177 ], [ 103.706039428710881, 1.411597967147884 ], [ 103.706459045410156, 1.411667943000736 ], [ 103.707221984863281, 1.411666035652161 ], [ 103.709724426269531, 1.411666035652161 ], [ 103.710281372070312, 1.411111950874442 ], [ 103.71097564697277, 1.409860968589783 ], [ 103.711662292480526, 1.409860968589783 ], [ 103.71250152587902, 1.411111950874442 ], [ 103.71250152587902, 1.411388039589042 ], [ 103.712776184082031, 1.411666035652161 ], [ 103.712776184082031, 1.411944031715507 ], [ 103.713058471679801, 1.412222027778625 ], [ 103.713607788085994, 1.412222027778625 ], [ 103.714164733886776, 1.41277801990509 ], [ 103.714447021484318, 1.41277801990509 ], [ 103.714721679687557, 1.412500023841971 ], [ 103.715118408203182, 1.412408947944755 ], [ 103.715377807617301, 1.412276983261108 ], [ 103.715560913086051, 1.412171959877014 ], [ 103.715675354003963, 1.411983013153133 ], [ 103.715805053710938, 1.411766052246094 ], [ 103.715911865234489, 1.411476969718933 ], [ 103.716064453125057, 1.411175966262817 ], [ 103.716102600097756, 1.41080200672161 ], [ 103.716110229492301, 1.410410046577454 ], [ 103.716156005859304, 1.41004300117504 ], [ 103.716331481933707, 1.40976095199585 ], [ 103.716484069824332, 1.409495949745292 ], [ 103.716697692871207, 1.40929996967327 ], [ 103.716987609863281, 1.409188985824699 ], [ 103.717361450195312, 1.409165978431702 ], [ 103.717781066894588, 1.409175038337764 ], [ 103.718231201171974, 1.409245967865104 ], [ 103.718635559081974, 1.409435033798331 ], [ 103.719062805175781, 1.409602999687195 ], [ 103.719505310058651, 1.409721970558167 ], [ 103.719970703124943, 1.409834027290458 ], [ 103.720451354980526, 1.409968018531856 ], [ 103.721008300781307, 1.410015940666199 ], [ 103.721572875976619, 1.410117983818054 ], [ 103.722152709960994, 1.410441994667167 ], [ 103.722694396972656, 1.410488009452934 ], [ 103.722846984863281, 1.410398960113639 ], [ 103.723075866699205, 1.410264015197754 ], [ 103.723335266113338, 1.410019993782043 ], [ 103.723495483398494, 1.409819960594177 ], [ 103.723609924316406, 1.409407019615173 ], [ 103.723869323730526, 1.409319043159542 ], [ 103.724075317382855, 1.409528017044124 ], [ 103.724349975585881, 1.409597039222717 ], [ 103.724601745605455, 1.409808993339539 ], [ 103.72502136230473, 1.40969002246868 ], [ 103.725448608398551, 1.409414052963313 ], [ 103.725799560546932, 1.409067988395748 ], [ 103.726066589355412, 1.4086869955064 ], [ 103.726219177246207, 1.408234000206107 ], [ 103.726356506347699, 1.407755017280579 ], [ 103.726387023925838, 1.407219052314872 ], [ 103.726348876953182, 1.406679034233036 ], [ 103.726158142089901, 1.406216979026851 ], [ 103.726028442382926, 1.405781030654907 ], [ 103.725860595703239, 1.405439019203186 ], [ 103.725746154785156, 1.405079007148743 ], [ 103.725563049316406, 1.404744029045162 ], [ 103.725372314453125, 1.404361009597892 ], [ 103.725242614746151, 1.40390598773962 ], [ 103.725044250488324, 1.40349996089941 ], [ 103.724967956542955, 1.403059959411735 ], [ 103.724807739257812, 1.402698040008658 ], [ 103.724700927734489, 1.402341961860714 ], [ 103.724555969238224, 1.402039051056022 ], [ 103.724441528320355, 1.401736021041927 ], [ 103.724334716796989, 1.401417016983032 ], [ 103.724205017089844, 1.401075005531368 ], [ 103.724166870117131, 1.400632977485714 ], [ 103.724121093750114, 1.400146961212272 ], [ 103.723968505859304, 1.399703025817871 ], [ 103.723831176757812, 1.399296998977604 ], [ 103.723701477050838, 1.39896202087408 ], [ 103.723823547363281, 1.398663997650203 ], [ 103.724014282226562, 1.398354053497371 ], [ 103.724250793457088, 1.39803504943842 ], [ 103.724441528320355, 1.397673964500484 ], [ 103.724571228027344, 1.397305011749324 ], [ 103.724479675293026, 1.396908998489437 ], [ 103.724411010742188, 1.396478056907654 ], [ 103.724235534667955, 1.396052002906856 ], [ 103.724052429199261, 1.395596027374324 ], [ 103.723762512207131, 1.395179033279419 ], [ 103.723381042480582, 1.394881963729802 ], [ 103.723022460937429, 1.394562959671077 ], [ 103.722648620605412, 1.394279003143311 ], [ 103.722328186035156, 1.393969058990479 ], [ 103.722061157226506, 1.393663048744145 ], [ 103.72168731689446, 1.393396019935665 ], [ 103.721221923828182, 1.393195986747798 ], [ 103.720794677734361, 1.393007040023917 ], [ 103.719772338867116, 1.392753958702144 ], [ 103.719772338867116, 1.392475962638855 ], [ 103.719909667968807, 1.392194986343441 ], [ 103.720046997070369, 1.391916990280151 ], [ 103.720115661621207, 1.391499996185416 ], [ 103.720741271972585, 1.391499996185416 ], [ 103.721015930175838, 1.391710042953491 ], [ 103.721229553222713, 1.39198803901678 ], [ 103.721504211425724, 1.392197966575679 ], [ 103.721984863281293, 1.392405033111686 ], [ 103.722404479980568, 1.392570972442627 ], [ 103.722785949707145, 1.392838001251278 ], [ 103.723175048828239, 1.39307701587677 ], [ 103.723571777343864, 1.39332103729248 ], [ 103.723968505859304, 1.393529057502803 ], [ 103.724372863769531, 1.393694996833858 ], [ 103.724716186523551, 1.39391398429882 ], [ 103.724998474121094, 1.394162058830204 ], [ 103.725242614746151, 1.394420027732792 ], [ 103.725433349609432, 1.394711971283016 ], [ 103.725669860839957, 1.395001053810176 ], [ 103.725936889648423, 1.395297050476131 ], [ 103.72618103027348, 1.395627975463981 ], [ 103.726371765136776, 1.395972013473624 ], [ 103.726486206054688, 1.396324992179984 ], [ 103.726623535156349, 1.396636962890739 ], [ 103.726669311523423, 1.397024989128226 ], [ 103.726715087890625, 1.397467017173824 ], [ 103.726898193359375, 1.397948026657104 ], [ 103.726943969726619, 1.398478984832821 ], [ 103.726943969726619, 1.399011969566345 ], [ 103.726882934570298, 1.399502038955688 ], [ 103.726715087890625, 1.399922013282833 ], [ 103.726669311523423, 1.400339007377738 ], [ 103.7266845703125, 1.400771975517273 ], [ 103.72678375244152, 1.401221036911068 ], [ 103.726943969726619, 1.401672005653381 ], [ 103.727119445800838, 1.402125954627991 ], [ 103.727294921875057, 1.402555942535457 ], [ 103.727523803710994, 1.402884960174561 ], [ 103.72780609130858, 1.403100967407283 ], [ 103.728073120117244, 1.403295040130672 ], [ 103.728431701660142, 1.403336048126278 ], [ 103.728813171386719, 1.403337955474854 ], [ 103.729209899902401, 1.403288006782589 ], [ 103.729545593261719, 1.403071045875549 ], [ 103.729873657226662, 1.402775049209595 ], [ 103.730178833007869, 1.402423977851868 ], [ 103.730400085449261, 1.401983976364192 ], [ 103.730636596679801, 1.401579022407589 ], [ 103.730842590331974, 1.40119302272808 ], [ 103.731063842773438, 1.400856018066406 ], [ 103.731208801269645, 1.400478005409298 ], [ 103.731376647949318, 1.400110960006714 ], [ 103.731536865234432, 1.39971399307251 ], [ 103.731704711914119, 1.399289965629691 ], [ 103.731948852539176, 1.398877978324947 ], [ 103.732223510742188, 1.398447036743164 ], [ 103.732498168945369, 1.397984027862663 ], [ 103.732757568359318, 1.397497057914734 ], [ 103.732986450195312, 1.396991014480591 ], [ 103.733146667480469, 1.396461963653621 ], [ 103.733322143554631, 1.395995020866394 ], [ 103.733474731445426, 1.395573019981498 ], [ 103.733589172363338, 1.395215034484977 ], [ 103.733612060546932, 1.39489400386816 ], [ 103.733619689941463, 1.394608974456844 ], [ 103.733657836914162, 1.39430403709423 ], [ 103.733886718749929, 1.3938889503479 ], [ 103.733612060546932, 1.393610954284782 ], [ 103.733612060546932, 1.39305496215826 ], [ 103.734169006347713, 1.392500996589774 ], [ 103.733886718749929, 1.392223000526428 ], [ 103.734443664550895, 1.391667008399963 ], [ 103.735000610351676, 1.391667008399963 ], [ 103.735054016113281, 1.391960978508109 ], [ 103.735244750976562, 1.392243027687186 ], [ 103.735427856445256, 1.392508029937687 ], [ 103.735572814941506, 1.392740011215267 ], [ 103.735603332519474, 1.392953991890067 ], [ 103.735542297363324, 1.393288969993591 ], [ 103.735557556152457, 1.393514990806693 ], [ 103.735557556152457, 1.393841028213558 ], [ 103.735557556152457, 1.394230961799622 ], [ 103.735603332519474, 1.394641041755733 ], [ 103.735786437988395, 1.395043969154358 ], [ 103.735832214355455, 1.3955299854278 ], [ 103.735832214355455, 1.396078944206351 ], [ 103.735786437988395, 1.396653056144771 ], [ 103.735610961914006, 1.397171020507926 ], [ 103.735511779785213, 1.397706031799373 ], [ 103.735298156738281, 1.398157954216003 ], [ 103.735099792480469, 1.398604035377502 ], [ 103.734832763671989, 1.399045944213981 ], [ 103.734504699707031, 1.399497985839957 ], [ 103.734169006347713, 1.400007963180485 ], [ 103.73386383056652, 1.400560021400452 ], [ 103.733604431152386, 1.401124954223633 ], [ 103.733329772949148, 1.401664972305241 ], [ 103.733047485351605, 1.402186989784298 ], [ 103.732719421386832, 1.402673006057739 ], [ 103.732353210449332, 1.403115034103394 ], [ 103.732078552246136, 1.403625011444092 ], [ 103.731864929199219, 1.404163002967948 ], [ 103.731651306152344, 1.404693961143494 ], [ 103.731376647949318, 1.405161023140067 ], [ 103.731086730957031, 1.405567049980277 ], [ 103.730773925781307, 1.405884027481079 ], [ 103.730499267578111, 1.406152963638306 ], [ 103.730232238769645, 1.406430959701652 ], [ 103.730033874511832, 1.406774997711295 ], [ 103.729942321777344, 1.407178044319267 ], [ 103.729774475097699, 1.407536029815617 ], [ 103.729705810546818, 1.407989978790397 ], [ 103.729637145996151, 1.40848004817974 ], [ 103.729614257812557, 1.408951997756958 ], [ 103.729698181152287, 1.409325003624019 ], [ 103.729728698730469, 1.409687995910758 ], [ 103.729804992675838, 1.410051941871757 ], [ 103.730018615722713, 1.410349011421317 ], [ 103.730331420898438, 1.410598993301505 ], [ 103.730712890624986, 1.410838961601314 ], [ 103.731117248535213, 1.41111695766449 ], [ 103.731513977050838, 1.411458969116325 ], [ 103.731811523437486, 1.411952972412223 ], [ 103.732078552246136, 1.412590980529842 ], [ 103.732444763183636, 1.413120031356812 ], [ 103.7327880859375, 1.413581013679504 ], [ 103.733184814453125, 1.413880944251957 ], [ 103.733551025390611, 1.414116024971122 ], [ 103.733856201171989, 1.41435801982891 ], [ 103.734115600585938, 1.414631009101868 ], [ 103.734474182128849, 1.414785981178284 ], [ 103.734764099121151, 1.414996027946529 ], [ 103.735046386718693, 1.415202975273189 ], [ 103.735328674316449, 1.415410995483455 ], [ 103.735549926757869, 1.415766000747794 ], [ 103.735939025879006, 1.415982961654777 ], [ 103.736343383789176, 1.416232943534965 ], [ 103.73681640625, 1.416411042213497 ], [ 103.737266540527401, 1.416635036468506 ], [ 103.73773193359375, 1.416880965232963 ], [ 103.73825836181652, 1.417127013206596 ], [ 103.738723754882812, 1.417554974555969 ], [ 103.739273071289062, 1.417950034141541 ], [ 103.739593505859489, 1.418529033661002 ], [ 103.739707946777401, 1.419204950332585 ], [ 103.739768981933693, 1.419849991798515 ], [ 103.739990234374943, 1.420385956764278 ], [ 103.740242004394531, 1.420868992805481 ], [ 103.740509033203182, 1.421332001686153 ], [ 103.740859985351619, 1.421753048896733 ], [ 103.741287231445426, 1.422122955322266 ], [ 103.741737365722656, 1.422461986541862 ], [ 103.742187500000057, 1.422754049301261 ], [ 103.742591857910213, 1.423053026199454 ], [ 103.74296569824223, 1.423362970352287 ], [ 103.743301391601548, 1.423722982406559 ], [ 103.743591308593864, 1.424157977104244 ], [ 103.743820190429631, 1.424654960632381 ], [ 103.744056701660156, 1.425165057182425 ], [ 103.744293212890682, 1.425667047500724 ], [ 103.744583129882741, 1.426115989685115 ], [ 103.744880676269574, 1.426535010337773 ], [ 103.74522399902348, 1.426887989044133 ], [ 103.745552062988281, 1.427206993103027 ], [ 103.745841979980526, 1.427513003349361 ], [ 103.746086120605582, 1.427824974060115 ], [ 103.746238708496207, 1.428197026252747 ], [ 103.746398925781307, 1.428529024124259 ], [ 103.746559143066449, 1.428864002227783 ], [ 103.746475219726491, 1.429224014282283 ], [ 103.746330261230469, 1.429620981216431 ], [ 103.746139526367173, 1.430050015449467 ], [ 103.746086120605582, 1.430574059486446 ], [ 103.745964050292969, 1.431118011474609 ], [ 103.745803833007869, 1.431664943695182 ], [ 103.745536804199162, 1.432742953300533 ], [ 103.745468139648494, 1.433024048805237 ], [ 103.744987487792969, 1.433580040931702 ], [ 103.744781494140625, 1.434137940406799 ], [ 103.74422454833983, 1.434903979301509 ], [ 103.743812561035099, 1.43553102016449 ], [ 103.743614196777273, 1.436112046241874 ], [ 103.743415832519645, 1.436568021774405 ], [ 103.743148803710994, 1.436939001083317 ], [ 103.742813110351676, 1.437327027320976 ], [ 103.742500305175781, 1.437791943550224 ], [ 103.742309570312486, 1.438323020935115 ], [ 103.742393493652401, 1.438864946365356 ], [ 103.742576599121136, 1.439342021942252 ], [ 103.742843627929801, 1.43969297409069 ], [ 103.743164062500057, 1.43997502326971 ], [ 103.743553161621151, 1.440194010734672 ], [ 103.744049072265625, 1.440325975418091 ], [ 103.744583129882741, 1.440387964248714 ], [ 103.745109558105582, 1.440158009529114 ], [ 103.745605468750057, 1.439820051193294 ], [ 103.746116638183594, 1.43949902057642 ], [ 103.746643066406364, 1.439195990562553 ], [ 103.747222900390739, 1.438887953758297 ], [ 103.747497558593736, 1.438887953758297 ], [ 103.74777984619152, 1.43861198425293 ], [ 103.748054504394517, 1.43861198425293 ], [ 103.748886108398494, 1.437777996063346 ], [ 103.749443054199261, 1.437777996063346 ], [ 103.749725341796804, 1.4375 ], [ 103.75, 1.4375 ], [ 103.750274658203239, 1.437222003936824 ], [ 103.750831604004006, 1.437777996063346 ], [ 103.751388549804787, 1.437777996063346 ], [ 103.751663208007812, 1.438055992126465 ], [ 103.752502441406307, 1.438055992126465 ], [ 103.752777099609304, 1.438333988189811 ], [ 103.753051757812557, 1.438333988189811 ], [ 103.753448486328182, 1.438537001609916 ], [ 103.753990173339844, 1.438645958900565 ], [ 103.754501342773366, 1.438789963722342 ], [ 103.755065917968693, 1.438717007637081 ], [ 103.755599975586051, 1.438629984855709 ], [ 103.756111145019574, 1.438609957695007 ], [ 103.756607055664062, 1.438568949699402 ], [ 103.757057189941463, 1.438403010368347 ], [ 103.757553100585881, 1.438457012176514 ], [ 103.758018493652401, 1.438384056091422 ], [ 103.758438110351605, 1.438362002372741 ], [ 103.758796691894588, 1.438485026359672 ], [ 103.759529113769588, 1.438662052154598 ], [ 103.760086059570312, 1.438662052154598 ], [ 103.760566711425895, 1.438452959060612 ], [ 103.761123657226676, 1.438591957092399 ], [ 103.761741638183537, 1.438730955123958 ], [ 103.762229919433651, 1.439079046249503 ], [ 103.762298583984474, 1.439357995986938 ], [ 103.7625732421875, 1.439844965934867 ], [ 103.762847900390739, 1.440261960029545 ], [ 103.763084411621023, 1.440675020217952 ], [ 103.763374328613338, 1.441169023513794 ], [ 103.763740539550838, 1.441640973091182 ], [ 103.764129638671932, 1.442077040672359 ], [ 103.764442443847656, 1.442499995231685 ], [ 103.764724731445369, 1.442778944969177 ], [ 103.764724731445369, 1.443056941032467 ], [ 103.766670227050895, 1.445001006126461 ], [ 103.766670227050895, 1.445279002189579 ], [ 103.766944885253906, 1.445554018020687 ], [ 103.766944885253906, 1.445832967758292 ], [ 103.767219543457145, 1.446110963821468 ], [ 103.767219543457145, 1.446666955947933 ], [ 103.767501831054688, 1.446944952011052 ], [ 103.767501831054688, 1.447500944137516 ], [ 103.767776489257855, 1.447777032852287 ], [ 103.767936706543026, 1.447618961334285 ], [ 103.768058776855469, 1.447500944137516 ], [ 103.768333435058636, 1.447777032852287 ], [ 103.768608093261662, 1.447777032852287 ], [ 103.768890380859432, 1.448055028915405 ], [ 103.768890380859432, 1.448333024978751 ], [ 103.769447326660213, 1.448889017105216 ], [ 103.769515991211051, 1.449167013168392 ], [ 103.770622253418026, 1.449720978736877 ], [ 103.770835876464901, 1.450001001358146 ], [ 103.771110534667969, 1.450001001358146 ], [ 103.771385192871151, 1.449723005294857 ], [ 103.772499084472713, 1.449723005294857 ], [ 103.772781372070426, 1.450001001358146 ], [ 103.773056030273423, 1.450001001358146 ], [ 103.773338317871193, 1.450217962265015 ], [ 103.77371978759777, 1.450530052185115 ], [ 103.774185180664062, 1.450783014297542 ], [ 103.774787902832074, 1.450855970382804 ], [ 103.775398254394588, 1.451002001762504 ], [ 103.775894165039062, 1.451331973075866 ], [ 103.776412963867287, 1.451689958572445 ], [ 103.776916503906307, 1.452077031135559 ], [ 103.777351379394645, 1.45252001285553 ], [ 103.777725219726662, 1.4529869556427 ], [ 103.778099060058707, 1.453390002250728 ], [ 103.778480529785256, 1.45375299453741 ], [ 103.779022216796932, 1.453922986984367 ], [ 103.779541015625, 1.4541610479356 ], [ 103.780052185058537, 1.45439803600317 ], [ 103.780578613281364, 1.454596042633113 ], [ 103.781135559082074, 1.454759955406246 ], [ 103.781669616699276, 1.455001950263977 ], [ 103.782226562500057, 1.455283999443054 ], [ 103.782806396484432, 1.45561504364025 ], [ 103.783378601074276, 1.456004023551998 ], [ 103.783874511718693, 1.456519007682857 ], [ 103.784355163574276, 1.457056999206543 ], [ 103.784957885742301, 1.457458019256649 ], [ 103.785568237304801, 1.457829952240047 ], [ 103.786102294921989, 1.458286046981925 ], [ 103.786697387695412, 1.458639025688285 ], [ 103.787185668945369, 1.45902597904211 ], [ 103.787605285644588, 1.459414005279541 ], [ 103.788040161132926, 1.459702968597526 ], [ 103.788414001464957, 1.459997057914677 ], [ 103.788772583007926, 1.460268974304199 ], [ 103.789138793945369, 1.460507988929692 ], [ 103.789566040039176, 1.460685968399105 ], [ 103.789978027343693, 1.46088898181921 ], [ 103.790390014648438, 1.461137056350822 ], [ 103.790771484375, 1.461473941802979 ], [ 103.791107177734318, 1.461910009384269 ], [ 103.791404724121151, 1.462388038635311 ], [ 103.791732788085923, 1.462828040122986 ], [ 103.791946411132812, 1.463055968284664 ], [ 103.792221069336051, 1.463333964347839 ], [ 103.792503356933594, 1.463333964347839 ], [ 103.792778015136832, 1.463611960411129 ], [ 103.793052673339844, 1.463611960411129 ], [ 103.793334960937543, 1.463889956474304 ], [ 103.793609619140625, 1.463888049125728 ], [ 103.793891906738338, 1.464166045189017 ], [ 103.794166564941349, 1.464166045189017 ], [ 103.794441223144588, 1.464444041252193 ], [ 103.794441223144588, 1.464722037315312 ], [ 103.794723510742287, 1.465000033378658 ], [ 103.794723510742287, 1.465278029441777 ], [ 103.796112060546875, 1.46666598320013 ], [ 103.798332214355582, 1.46666598320013 ], [ 103.798614501953125, 1.466943979263249 ], [ 103.799446105957074, 1.466943979263249 ], [ 103.799583435058651, 1.467082977295035 ], [ 103.799720764160156, 1.467221975326595 ], [ 103.800003051757869, 1.467221975326595 ], [ 103.800277709960881, 1.467499971389771 ], [ 103.800552368164119, 1.467499971389771 ], [ 103.802223205566406, 1.469166040420589 ], [ 103.802780151367188, 1.469166040420589 ], [ 103.803054809570369, 1.469444036483878 ], [ 103.803611755371151, 1.469444036483878 ], [ 103.804443359375114, 1.470278978347835 ], [ 103.804725646972656, 1.470278978347835 ], [ 103.805206298828239, 1.470208048820495 ], [ 103.806114196777401, 1.470553994178886 ], [ 103.80673980712902, 1.470623016357422 ], [ 103.807365417480469, 1.470623016357422 ], [ 103.807777404785156, 1.470762014389038 ], [ 103.808334350585938, 1.470831990242061 ], [ 103.808609008789176, 1.470831990242061 ], [ 103.808891296386719, 1.470553994178886 ], [ 103.8094482421875, 1.470553994178886 ], [ 103.809722900390682, 1.470278978347835 ], [ 103.810279846191463, 1.470278978347835 ], [ 103.810600280761719, 1.470026016235408 ], [ 103.811027526855526, 1.470039010048026 ], [ 103.811538696289062, 1.470234990119991 ], [ 103.812126159667969, 1.470275998115596 ], [ 103.812728881835938, 1.470278978347835 ], [ 103.813339233398494, 1.470275998115596 ], [ 103.813949584961051, 1.470275998115596 ], [ 103.814582824706974, 1.470312952995243 ], [ 103.81520843505858, 1.470505952835197 ], [ 103.815834045410213, 1.470810055732727 ], [ 103.816505432128906, 1.471027970314026 ], [ 103.817161560058651, 1.471063017845154 ], [ 103.81768798828125, 1.470937013626155 ], [ 103.8182373046875, 1.471040010452327 ], [ 103.818641662597656, 1.470896005630607 ], [ 103.819038391113338, 1.470752954483146 ], [ 103.819458007812543, 1.470502018928642 ], [ 103.819847106933636, 1.470285058021659 ], [ 103.820266723632912, 1.470085024833736 ], [ 103.820701599121094, 1.469846010208244 ], [ 103.821121215820312, 1.469560980796814 ], [ 103.821548461914119, 1.469272971153259 ], [ 103.821922302246151, 1.468984007835502 ], [ 103.822219848632812, 1.468703985214233 ], [ 103.822433471679688, 1.468464016914425 ], [ 103.82249450683598, 1.46819102764124 ], [ 103.822425842285156, 1.467895030975342 ], [ 103.822021484374929, 1.46757805347454 ], [ 103.821594238281364, 1.467478036880607 ], [ 103.821166992187557, 1.467375040054435 ], [ 103.820487976074162, 1.467087984085197 ], [ 103.819953918457031, 1.466714024543819 ], [ 103.819480895996207, 1.466295003890991 ], [ 103.819084167480526, 1.465852022171077 ], [ 103.818771362304616, 1.465415000915584 ], [ 103.818595886230469, 1.464944958686829 ], [ 103.818550109863395, 1.464467048645133 ], [ 103.818687438964901, 1.463986039161682 ], [ 103.818885803222713, 1.463611960411129 ], [ 103.819168090820298, 1.463888049125728 ], [ 103.819168090820298, 1.464166045189017 ], [ 103.819442749023494, 1.464444041252193 ], [ 103.819442749023494, 1.464722037315312 ], [ 103.819725036621037, 1.465000033378658 ], [ 103.820159912109361, 1.465407967567501 ], [ 103.820640563964957, 1.46579098701477 ], [ 103.8212890625, 1.466160058975277 ], [ 103.821678161621094, 1.466362953186092 ], [ 103.822059631347656, 1.466567993164119 ], [ 103.822463989257812, 1.466642975807133 ], [ 103.822662353515682, 1.466680049896183 ], [ 103.822975158691349, 1.466493010520935 ], [ 103.82328796386723, 1.466321945190487 ], [ 103.823600769042955, 1.466101050376949 ], [ 103.823936462402344, 1.465875029564017 ], [ 103.824401855468807, 1.465847969055176 ], [ 103.824890136718736, 1.465970993042106 ], [ 103.825271606445312, 1.466315031051693 ], [ 103.825584411621207, 1.466698050498962 ], [ 103.825828552246023, 1.467069983482418 ], [ 103.826011657714787, 1.467416048049984 ], [ 103.826110839843807, 1.46777796745306 ], [ 103.826110839843807, 1.468055963516235 ], [ 103.826385498046989, 1.468333959579525 ], [ 103.826385498046989, 1.468610048294124 ], [ 103.826667785644574, 1.468888044357413 ], [ 103.826667785644574, 1.469166040420589 ], [ 103.827499389648551, 1.47000098228466 ], [ 103.827499389648551, 1.470553994178886 ], [ 103.828330993652344, 1.471387982368526 ], [ 103.828887939453068, 1.471387982368526 ], [ 103.830001831054801, 1.470275998115596 ], [ 103.830276489257812, 1.470278978347835 ], [ 103.831108093261776, 1.469444036483878 ], [ 103.830833435058594, 1.469166040420589 ], [ 103.830833435058594, 1.468610048294124 ], [ 103.830276489257812, 1.468055963516235 ], [ 103.830276489257812, 1.46777796745306 ], [ 103.830558776855582, 1.467499971389771 ], [ 103.830833435058594, 1.467499971389771 ], [ 103.831390380859361, 1.466943979263249 ], [ 103.831665039062557, 1.466943979263249 ], [ 103.831947326660156, 1.46666598320013 ], [ 103.832221984863338, 1.46666598320013 ], [ 103.832496643066349, 1.466387987136784 ], [ 103.833053588867301, 1.466390013694763 ], [ 103.833610534668082, 1.466112017631588 ], [ 103.83388519287108, 1.466112017631588 ], [ 103.834167480468864, 1.465834021568298 ], [ 103.834167480468864, 1.465556025505123 ], [ 103.834442138671875, 1.465278029441777 ], [ 103.834442138671875, 1.465000033378658 ], [ 103.834724426269588, 1.464722037315312 ], [ 103.835281372070369, 1.464166045189017 ], [ 103.835830688476619, 1.464166045189017 ], [ 103.836112976074332, 1.463888049125728 ], [ 103.837501525878892, 1.463889956474304 ], [ 103.837776184082088, 1.463611960411129 ], [ 103.838294982910156, 1.463446021080074 ], [ 103.838844299316406, 1.463111042976493 ], [ 103.839385986328125, 1.462759971618766 ], [ 103.839851379394588, 1.462363004684562 ], [ 103.840263366699261, 1.46198296546936 ], [ 103.840591430664119, 1.461635947227478 ], [ 103.840881347656364, 1.461334943771362 ], [ 103.841102600097656, 1.461068987846375 ], [ 103.841316223144531, 1.460862994194031 ], [ 103.841606140136832, 1.460739970207271 ], [ 103.841941833496136, 1.460569024085999 ], [ 103.842369079589957, 1.4604190587998 ], [ 103.84285736083983, 1.46026599407196 ], [ 103.843353271484474, 1.460062980651855 ], [ 103.843833923339901, 1.459820032119808 ], [ 103.84422302246098, 1.459444046020451 ], [ 103.844573974609375, 1.459038019180411 ], [ 103.844947814941392, 1.458670973777828 ], [ 103.845375061035213, 1.458349943161124 ], [ 103.845840454101676, 1.45805299282074 ], [ 103.846321105957088, 1.457772970199642 ], [ 103.846771240234489, 1.457499027252197 ], [ 103.847183227539006, 1.457252979278564 ], [ 103.847610473632812, 1.457098007202148 ], [ 103.847999572753892, 1.456938982010001 ], [ 103.848411560058651, 1.456766009330806 ], [ 103.848892211914176, 1.456632971763725 ], [ 103.849342346191406, 1.456387042999268 ], [ 103.849784851074276, 1.45611405372631 ], [ 103.850189208984489, 1.455836057662964 ], [ 103.850540161132869, 1.455554962158203 ], [ 103.850830078125, 1.455227017402592 ], [ 103.851097106933651, 1.45484900474554 ], [ 103.851325988769574, 1.454401969909725 ], [ 103.851501464843807, 1.453909993171806 ], [ 103.851638793945298, 1.453428983688354 ], [ 103.851661682128963, 1.452947974205074 ], [ 103.851608276367188, 1.452479004859924 ], [ 103.851432800292969, 1.452023029327393 ], [ 103.851325988769574, 1.451462030410767 ], [ 103.851051330566406, 1.450904011726493 ], [ 103.850555419921932, 1.450373053550777 ], [ 103.849899291992188, 1.450065016746521 ], [ 103.849296569824162, 1.449962019920349 ], [ 103.84885406494152, 1.449820995330811 ], [ 103.84833526611321, 1.449723005294857 ], [ 103.847221374511719, 1.449723005294857 ], [ 103.846946716308693, 1.450001001358146 ], [ 103.846664428710938, 1.450001001358146 ], [ 103.846389770507926, 1.449723005294857 ], [ 103.846107482910142, 1.449723005294857 ], [ 103.8460693359375, 1.449516057968196 ], [ 103.846031188964957, 1.449308037757873 ], [ 103.846015930175895, 1.449023008346614 ], [ 103.846145629882869, 1.448740959167594 ], [ 103.846366882324276, 1.448519945144653 ], [ 103.846618652343693, 1.448340058326721 ], [ 103.846931457519588, 1.448200941085929 ], [ 103.847290039062557, 1.448075056076163 ], [ 103.847694396972713, 1.448035955429191 ], [ 103.848098754882926, 1.448042988777274 ], [ 103.848495483398537, 1.448050022125244 ], [ 103.848876953125114, 1.448061943054199 ], [ 103.849273681640739, 1.448115944862366 ], [ 103.849678039550724, 1.448277950286922 ], [ 103.85014343261723, 1.448333024978751 ], [ 103.850616455078054, 1.448392033576908 ], [ 103.85107421875, 1.44855797290802 ], [ 103.851562500000114, 1.448613047599849 ], [ 103.852043151855526, 1.448675036430416 ], [ 103.852478027343864, 1.448840975761527 ], [ 103.852951049804673, 1.448889017105216 ], [ 103.853446960449332, 1.448889017105216 ], [ 103.853965759277401, 1.448827028274593 ], [ 103.854415893554801, 1.44856500625616 ], [ 103.854759216308651, 1.448125004768428 ], [ 103.855094909668026, 1.447672009468135 ], [ 103.855361938476676, 1.447221040725822 ], [ 103.855575561523381, 1.446789979934636 ], [ 103.855789184570298, 1.446393013000488 ], [ 103.855911254882926, 1.445961952209529 ], [ 103.856079101562543, 1.445574998855705 ], [ 103.856185913085938, 1.445137023925781 ], [ 103.856346130371037, 1.444715976715202 ], [ 103.856369018554688, 1.444198012352047 ], [ 103.856277465820369, 1.443619966507072 ], [ 103.856071472168026, 1.442999958992061 ], [ 103.855682373046932, 1.44239795207983 ], [ 103.855094909668026, 1.441884994506893 ], [ 103.854484558105469, 1.441367983818054 ], [ 103.853897094726548, 1.440827965736389 ], [ 103.853324890136719, 1.44028294086462 ], [ 103.852973937988281, 1.439563035964966 ], [ 103.852767944335938, 1.439213991165161 ], [ 103.852973937988281, 1.439074993133602 ], [ 103.853248596191506, 1.439074993133602 ], [ 103.853477478027273, 1.439200043678284 ], [ 103.854034423828239, 1.439530968666133 ], [ 103.854583740234474, 1.440024971961975 ], [ 103.855094909668026, 1.440508008003235 ], [ 103.85565185546875, 1.440984964370784 ], [ 103.856254577636776, 1.441483974456844 ], [ 103.856872558593864, 1.441650032997245 ], [ 103.857009887695369, 1.441601991653556 ], [ 103.857406616210994, 1.441460967064017 ], [ 103.857864379882756, 1.441128015518245 ], [ 103.858261108398381, 1.440791010856742 ], [ 103.858543395996151, 1.44047200679779 ], [ 103.858734130859432, 1.440168976783752 ], [ 103.858932495117244, 1.439936041832084 ], [ 103.859092712402386, 1.439720034599361 ], [ 103.859169006347756, 1.439507961273137 ], [ 103.859321594238338, 1.439363956451416 ], [ 103.85948181152348, 1.43914103508007 ], [ 103.859725952148537, 1.438871979713497 ], [ 103.860000610351562, 1.438521027565059 ], [ 103.860282897949276, 1.438138008117789 ], [ 103.860572814941406, 1.43775999546051 ], [ 103.860839843750057, 1.437397003173828 ], [ 103.861114501953054, 1.437085032463017 ], [ 103.861389160156307, 1.436823010444755 ], [ 103.861640930175881, 1.436588048934937 ], [ 103.86185455322277, 1.436344981193542 ], [ 103.862014770507926, 1.436064004898128 ], [ 103.862190246582074, 1.435812950134334 ], [ 103.862297058105469, 1.435508012771663 ], [ 103.862464904785156, 1.435235023498535 ], [ 103.862541198730526, 1.434864997863883 ], [ 103.862701416015625, 1.434494018554744 ], [ 103.862770080566449, 1.434105992317256 ], [ 103.862739562988338, 1.433732986450195 ], [ 103.862579345703168, 1.433385968208313 ], [ 103.862464904785156, 1.433009982109183 ], [ 103.862266540527287, 1.432651996612663 ], [ 103.862083435058594, 1.432247042656059 ], [ 103.861846923828239, 1.431867957115116 ], [ 103.861557006835923, 1.431537985801754 ], [ 103.861305236816349, 1.431185007095394 ], [ 103.861015319824276, 1.430884003639278 ], [ 103.860733032226506, 1.430631041526851 ], [ 103.860527038574332, 1.430397987365836 ], [ 103.860420227050781, 1.430140972137508 ], [ 103.860298156738395, 1.429869055748043 ], [ 103.8602294921875, 1.429456949233952 ], [ 103.860000610351562, 1.429054021835327 ], [ 103.859718322753949, 1.428671002388057 ], [ 103.859413146972656, 1.428346991538945 ], [ 103.859085083007812, 1.428102970123291 ], [ 103.858772277832145, 1.427919030189571 ], [ 103.858528137207088, 1.427685976028556 ], [ 103.858306884765611, 1.42739200592041 ], [ 103.858055114746037, 1.427059054374752 ], [ 103.85782623291027, 1.426669955253658 ], [ 103.857810974121151, 1.426223039627189 ], [ 103.857658386230582, 1.42596805095684 ], [ 103.857315063476562, 1.42522203922266 ], [ 103.857177734375, 1.424805045127982 ], [ 103.857109069824162, 1.424314975738639 ], [ 103.856819152832088, 1.423555970192012 ], [ 103.856529235839787, 1.423176050186157 ], [ 103.856307983398551, 1.42270398139965 ], [ 103.856101989746207, 1.42225003242504 ], [ 103.855857849121151, 1.421849012374992 ], [ 103.855606079101562, 1.421447992324943 ], [ 103.855308532714901, 1.421048998832816 ], [ 103.854988098144645, 1.420645952224788 ], [ 103.854644775390625, 1.420289993286246 ], [ 103.854316711425781, 1.419967055320796 ], [ 103.853988647460994, 1.419590950012264 ], [ 103.853584289550824, 1.41926896572113 ], [ 103.853218078613324, 1.419000029563904 ], [ 103.85292816162108, 1.418709039688167 ], [ 103.852745056152344, 1.418266057968196 ], [ 103.852500915527457, 1.417778968811092 ], [ 103.852500915527457, 1.417222976684627 ], [ 103.852218627929673, 1.416944980621338 ], [ 103.852218627929673, 1.416666030883903 ], [ 103.851943969726676, 1.416388034820557 ], [ 103.851943969726676, 1.415832042694092 ], [ 103.851387023925724, 1.415277957916373 ], [ 103.851387023925724, 1.414999961853027 ], [ 103.851112365722713, 1.414721965789908 ], [ 103.851112365722713, 1.414443969726562 ], [ 103.850555419921932, 1.413887977600098 ], [ 103.850555419921932, 1.413609981536979 ], [ 103.849998474121207, 1.413056015968436 ], [ 103.849998474121207, 1.41277801990509 ], [ 103.849723815917955, 1.412500023841971 ], [ 103.849723815917955, 1.412222027778625 ], [ 103.849441528320412, 1.411944031715507 ], [ 103.849441528320412, 1.411388039589042 ], [ 103.8477783203125, 1.409721970558167 ], [ 103.847503662109432, 1.409721970558167 ], [ 103.847366333007926, 1.409582972526607 ], [ 103.847221374511719, 1.409443974495048 ], [ 103.846946716308693, 1.409443974495048 ], [ 103.846664428710938, 1.409165978431702 ], [ 103.846168518066463, 1.408846974372977 ], [ 103.845726013183594, 1.408468008041439 ], [ 103.845222473144588, 1.408113002777156 ], [ 103.844642639160213, 1.407811999321041 ], [ 103.844062805175838, 1.40756797790533 ], [ 103.843566894531193, 1.407523036003226 ], [ 103.843162536621207, 1.4075909852981 ], [ 103.842826843261719, 1.407739043235779 ], [ 103.842483520507812, 1.407832980156059 ], [ 103.842163085937557, 1.408010005950985 ], [ 103.841781616210994, 1.408100962638855 ], [ 103.841438293457131, 1.408282041549796 ], [ 103.841056823730582, 1.408475041389579 ], [ 103.840583801269531, 1.408638954162711 ], [ 103.84007263183598, 1.408857941627502 ], [ 103.839469909668011, 1.409019947052002 ], [ 103.838851928710938, 1.409217953681946 ], [ 103.838294982910156, 1.40944600105297 ], [ 103.83780670166027, 1.409626007080135 ], [ 103.837265014648381, 1.409594058990479 ], [ 103.836677551269645, 1.409594058990479 ], [ 103.836158752441406, 1.40969002246868 ], [ 103.835678100585994, 1.409778952598629 ], [ 103.835227966308594, 1.410006999969482 ], [ 103.834724426269588, 1.41027295589447 ], [ 103.834144592285213, 1.410455942154044 ], [ 103.833488464355469, 1.410318970680237 ], [ 103.832817077636776, 1.410161972045898 ], [ 103.832214355468807, 1.409968018531856 ], [ 103.831741333007756, 1.409711003303528 ], [ 103.831321716308707, 1.409443974495048 ], [ 103.830924987793082, 1.409183979034481 ], [ 103.830497741699261, 1.408951997756958 ], [ 103.830062866210938, 1.408702969551086 ], [ 103.829711914062486, 1.4083110094071 ], [ 103.829460144042912, 1.407822966575679 ], [ 103.829269409179631, 1.407320022583121 ], [ 103.829139709472656, 1.406842947006169 ], [ 103.828964233398494, 1.406447052955684 ], [ 103.828849792480568, 1.406057000160274 ], [ 103.828674316406364, 1.405724048614445 ], [ 103.828536987304688, 1.405370950698966 ], [ 103.828346252441406, 1.405056953430233 ], [ 103.828193664550824, 1.404718995094413 ], [ 103.828079223632926, 1.404368042945805 ], [ 103.828079223632926, 1.404010057449455 ], [ 103.828201293945369, 1.40369105339056 ], [ 103.828460693359474, 1.403442978859005 ], [ 103.828674316406364, 1.403205990791434 ], [ 103.828910827636719, 1.403128027915955 ], [ 103.829170227050838, 1.403326988220215 ], [ 103.829444885253835, 1.403607010841483 ], [ 103.829711914062486, 1.403908014297599 ], [ 103.829933166503963, 1.404219985008353 ], [ 103.830101013183651, 1.404531955718937 ], [ 103.830284118652344, 1.404783010482788 ], [ 103.830490112304744, 1.404989957809448 ], [ 103.830703735351619, 1.405174970626945 ], [ 103.830879211425838, 1.405426025390568 ], [ 103.831115722656364, 1.405634999275208 ], [ 103.8314208984375, 1.405830979347343 ], [ 103.831832885742244, 1.405951976776123 ], [ 103.832305908203054, 1.406067967414913 ], [ 103.832824707031307, 1.40615105628973 ], [ 103.833290100097656, 1.406326055526676 ], [ 103.833770751953182, 1.406453967094421 ], [ 103.834190368652457, 1.406622052192802 ], [ 103.834625244140625, 1.406635999679508 ], [ 103.834976196289006, 1.406522035598869 ], [ 103.835227966308594, 1.40635800361639 ], [ 103.835380554199219, 1.406152963638306 ], [ 103.835472106933651, 1.405907034874019 ], [ 103.835319519043082, 1.405604004859981 ], [ 103.835067749023494, 1.405207037925834 ], [ 103.834793090820256, 1.40473997592926 ], [ 103.834480285644531, 1.404274940490836 ], [ 103.83425140380858, 1.40375995635992 ], [ 103.834175109863395, 1.403185009956417 ], [ 103.834220886230398, 1.40262496471405 ], [ 103.834442138671875, 1.402160048484802 ], [ 103.834701538085994, 1.401739954948482 ], [ 103.834899902343807, 1.4013370275498 ], [ 103.834983825683537, 1.400962948799076 ], [ 103.834991455078068, 1.400640010833854 ], [ 103.834922790527401, 1.400367975234985 ], [ 103.834785461425724, 1.400140047073478 ], [ 103.834709167480526, 1.399883031845206 ], [ 103.834625244140625, 1.399624943733215 ], [ 103.834571838379006, 1.399374961853084 ], [ 103.834701538085994, 1.399057984352112 ], [ 103.834861755371094, 1.398705005645752 ], [ 103.835182189941349, 1.398432970047111 ], [ 103.835548400878849, 1.398223996162471 ], [ 103.835906982421974, 1.398036956787223 ], [ 103.836212158203182, 1.397851943969727 ], [ 103.836540222167969, 1.397786021232548 ], [ 103.836906433105469, 1.397776961326656 ], [ 103.83734130859375, 1.39777505397808 ], [ 103.837890625, 1.39777505397808 ], [ 103.838523864746136, 1.397781968116874 ], [ 103.839172363281193, 1.397873044014091 ], [ 103.839706420898551, 1.398269057273978 ], [ 103.840225219726619, 1.398617982864437 ], [ 103.840560913085938, 1.39910101890564 ], [ 103.840827941894588, 1.399606943130436 ], [ 103.84104156494152, 1.400117993354797 ], [ 103.841163635253963, 1.400632977485714 ], [ 103.841384887695355, 1.401036024093685 ], [ 103.841636657714957, 1.401361942291373 ], [ 103.841896057128906, 1.401605963707084 ], [ 103.842262268066406, 1.401633024215755 ], [ 103.842666625976548, 1.401473999023438 ], [ 103.843070983886776, 1.401186943054256 ], [ 103.843467712402401, 1.400910973548832 ], [ 103.843849182128963, 1.40080797672266 ], [ 103.844131469726506, 1.400846958160514 ], [ 103.844367980957031, 1.401026964187622 ], [ 103.844627380371151, 1.40131402015686 ], [ 103.844879150390724, 1.401780962944031 ], [ 103.844985961914119, 1.402356028556937 ], [ 103.845046997070426, 1.402904987335319 ], [ 103.845199584960994, 1.403318047523498 ], [ 103.84543609619152, 1.403625011444092 ], [ 103.845764160156307, 1.403903007507381 ], [ 103.846191406250099, 1.404170036315918 ], [ 103.846702575683651, 1.404448032379207 ], [ 103.847267150878963, 1.404749035835323 ], [ 103.847831726074219, 1.405063033104057 ], [ 103.848243713378963, 1.405514955520687 ], [ 103.848686218261832, 1.40590405464178 ], [ 103.849136352539062, 1.406250953674316 ], [ 103.849555969238338, 1.4066179990769 ], [ 103.850051879882756, 1.406929969787711 ], [ 103.850570678711051, 1.407222032547111 ], [ 103.851066589355469, 1.407502055168208 ], [ 103.851493835449276, 1.407788991928214 ], [ 103.85182952880858, 1.408103942871094 ], [ 103.852073669433651, 1.408470988273677 ], [ 103.852279663085994, 1.40885603427887 ], [ 103.852478027343864, 1.409222960472164 ], [ 103.852645874023494, 1.40957605838787 ], [ 103.852851867675824, 1.409876942634583 ], [ 103.853179931640682, 1.410099983215446 ], [ 103.853614807128963, 1.41030299663538 ], [ 103.854064941406193, 1.410604000091496 ], [ 103.854530334472699, 1.410994052887077 ], [ 103.855056762695312, 1.411424040794429 ], [ 103.855613708496094, 1.411806941032523 ], [ 103.856086730957088, 1.412137985229549 ], [ 103.85648345947277, 1.41247296333313 ], [ 103.856895446777457, 1.412775993347168 ], [ 103.857315063476562, 1.413071990013123 ], [ 103.857704162597642, 1.413404941558895 ], [ 103.858039855957145, 1.413774013519287 ], [ 103.858322143554688, 1.414147973060665 ], [ 103.858566284179744, 1.414510011673087 ], [ 103.85870361328125, 1.414939045906124 ], [ 103.858901977539119, 1.415375947952384 ], [ 103.859146118164119, 1.415830016136113 ], [ 103.859390258789006, 1.416300058364925 ], [ 103.859756469726676, 1.416654944419861 ], [ 103.860168457031179, 1.416944980621338 ], [ 103.860557556152344, 1.417233943939323 ], [ 103.860900878906364, 1.417603015899658 ], [ 103.861129760742188, 1.418125033378715 ], [ 103.861381530761776, 1.418722033500728 ], [ 103.861618041992244, 1.419381022453422 ], [ 103.861923217773423, 1.4200119972229 ], [ 103.862228393554801, 1.420606970787162 ], [ 103.862518310546875, 1.42112398147583 ], [ 103.862731933593807, 1.421573042869625 ], [ 103.862777709961051, 1.422031998634395 ], [ 103.862808227539176, 1.422495961189327 ], [ 103.862983703613395, 1.422948002815303 ], [ 103.863342285156307, 1.423349022865352 ], [ 103.863761901855582, 1.42374503612524 ], [ 103.864250183105526, 1.424062013626212 ], [ 103.864799499511719, 1.424255967140254 ], [ 103.865325927734375, 1.424456954002437 ], [ 103.865821838378963, 1.424667954444999 ], [ 103.866348266601619, 1.424769043922367 ], [ 103.866851806640611, 1.424949049949703 ], [ 103.867485046386761, 1.425001025199947 ], [ 103.868156433105582, 1.425037980079651 ], [ 103.868797302246094, 1.425099015235958 ], [ 103.869384765625, 1.424800992012081 ], [ 103.870048522949332, 1.424684047698975 ], [ 103.870468139648381, 1.424504041671867 ], [ 103.870941162109432, 1.424249053001461 ], [ 103.871536254882869, 1.424005031585807 ], [ 103.87187194824223, 1.423894047737178 ], [ 103.8721923828125, 1.423388004303035 ], [ 103.872558593749943, 1.422932028770503 ], [ 103.872970581054688, 1.422579050064144 ], [ 103.873374938964844, 1.422212004661503 ], [ 103.873764038085938, 1.421813011169434 ], [ 103.874130249023438, 1.421398043632621 ], [ 103.874443054199318, 1.420930981636104 ], [ 103.874717712402344, 1.420433998107967 ], [ 103.874977111816463, 1.419932007789669 ], [ 103.875221252441349, 1.419461011886597 ], [ 103.875473022460938, 1.419039011001701 ], [ 103.875793457031193, 1.418696999549809 ], [ 103.876152038574332, 1.418370962143001 ], [ 103.876564025878835, 1.418069958686885 ], [ 103.877044677734432, 1.417808055877742 ], [ 103.877639770507855, 1.417580008506888 ], [ 103.878349304199219, 1.417400002479553 ], [ 103.878746032714901, 1.41722905635828 ], [ 103.87895202636723, 1.416955947875977 ], [ 103.879234313964773, 1.416664004325924 ], [ 103.879577636718864, 1.416391015052795 ], [ 103.879928588867244, 1.416170001030082 ], [ 103.880157470703239, 1.415928006172294 ], [ 103.880302429199276, 1.415696024894771 ], [ 103.880310058593793, 1.41511702537548 ], [ 103.880226135253906, 1.414348959922847 ], [ 103.880241394042969, 1.413789987564087 ], [ 103.880325317382926, 1.413414001464957 ], [ 103.880386352539006, 1.413020014762878 ], [ 103.880424499511719, 1.412626028060913 ], [ 103.880729675293082, 1.412441015243587 ], [ 103.880966186523423, 1.412750959396419 ], [ 103.881156921386705, 1.413275003433227 ], [ 103.881233215332074, 1.413884043693599 ], [ 103.881225585937557, 1.41459500789648 ], [ 103.881057739257869, 1.415380954742545 ], [ 103.881034851074276, 1.415992021560669 ], [ 103.881294250488395, 1.416331052780151 ], [ 103.881683349609489, 1.416648030281067 ], [ 103.882232666015724, 1.416882991790885 ], [ 103.882919311523438, 1.416990041732788 ], [ 103.883590698242287, 1.417024016380424 ], [ 103.884315490722713, 1.41682600975048 ], [ 103.884979248046875, 1.416591048240662 ], [ 103.88555908203125, 1.416273951530513 ], [ 103.886192321777401, 1.415941953659058 ], [ 103.886817932129006, 1.415627002716178 ], [ 103.887420654296974, 1.415335059165955 ], [ 103.887977600097756, 1.415076017379704 ], [ 103.888336181640739, 1.414999961853027 ], [ 103.88861083984375, 1.414721965789908 ], [ 103.889442443847713, 1.414721965789908 ], [ 103.889724731445256, 1.414443969726562 ], [ 103.890830993652457, 1.414443969726562 ], [ 103.89111328125, 1.414165973663444 ], [ 103.891670227050781, 1.414165973663444 ], [ 103.892227172851562, 1.414145946502686 ], [ 103.892723083496207, 1.414065957069511 ], [ 103.893264770507869, 1.414029002189636 ], [ 103.893737792968679, 1.41389703750616 ], [ 103.894096374511832, 1.413663029670829 ], [ 103.894378662109418, 1.413300037384147 ], [ 103.89463043212902, 1.412866950035209 ], [ 103.894844055175881, 1.412351965904293 ], [ 103.894889831542969, 1.411806941032523 ], [ 103.894729614257812, 1.411329030990657 ], [ 103.894515991210938, 1.410895943641719 ], [ 103.894325256347642, 1.410513043403625 ], [ 103.894126892089844, 1.410114049911556 ], [ 103.893882751464957, 1.409744977951163 ], [ 103.893623352050838, 1.409420967102051 ], [ 103.89337158203125, 1.40914094448101 ], [ 103.893142700195412, 1.408890008926505 ], [ 103.892929077148537, 1.408663988113403 ], [ 103.892677307128963, 1.408475041389579 ], [ 103.892463684082031, 1.40821099281311 ], [ 103.892173767089943, 1.407961964607239 ], [ 103.891784667968864, 1.407745957374516 ], [ 103.891387939453239, 1.407500028610229 ], [ 103.890556335449219, 1.406667947769222 ], [ 103.890556335449219, 1.406389951705876 ], [ 103.889999389648494, 1.405833959579581 ], [ 103.889724731445256, 1.405833959579581 ], [ 103.889724731445256, 1.405555963516292 ], [ 103.889442443847713, 1.405277967453117 ], [ 103.888336181640739, 1.405277967453117 ], [ 103.888053894042969, 1.404999971389827 ], [ 103.887779235839957, 1.404999971389827 ], [ 103.887359619140682, 1.404582023620605 ], [ 103.886947631835994, 1.404165029525871 ], [ 103.886947631835994, 1.40389001369482 ], [ 103.886665344238224, 1.403612017631644 ], [ 103.886390686035213, 1.403334021568355 ], [ 103.886108398437443, 1.403054952621517 ], [ 103.886665344238224, 1.402498960495052 ], [ 103.886665344238224, 1.402220964431763 ], [ 103.886947631835994, 1.401945948600826 ], [ 103.887222290039176, 1.401945948600826 ], [ 103.887496948242188, 1.402220964431763 ], [ 103.887496948242188, 1.402498960495052 ], [ 103.887779235839957, 1.402776956558228 ], [ 103.887779235839957, 1.403054952621517 ], [ 103.888053894042969, 1.403334021568355 ], [ 103.88861083984375, 1.403334021568355 ], [ 103.889167785644531, 1.403632044792232 ], [ 103.889671325683707, 1.403892040252742 ], [ 103.890144348144531, 1.404163002967948 ], [ 103.890586853027401, 1.404407024383659 ], [ 103.891014099121193, 1.40454804897314 ], [ 103.891380310058651, 1.404744029045162 ], [ 103.891716003418026, 1.405004024505672 ], [ 103.892059326171875, 1.405277967453117 ], [ 103.892395019531193, 1.405542016029358 ], [ 103.892723083496207, 1.405792951583862 ], [ 103.893035888671861, 1.406077980995292 ], [ 103.893409729003906, 1.40635097026825 ], [ 103.893844604492244, 1.406579017639274 ], [ 103.894332885742188, 1.406646966934204 ], [ 103.894790649414105, 1.406574010849113 ], [ 103.895278930664062, 1.406111955642757 ], [ 103.895553588867244, 1.406389951705876 ], [ 103.895553588867244, 1.406667947769222 ], [ 103.89444732666027, 1.407778024673576 ], [ 103.894721984863281, 1.408056020736694 ], [ 103.894721984863281, 1.40833401680004 ], [ 103.894996643066463, 1.408612012863216 ], [ 103.894996643066463, 1.408887982368583 ], [ 103.895553588867244, 1.409443974495048 ], [ 103.895553588867244, 1.410555958747977 ], [ 103.895729064941463, 1.410665035247803 ], [ 103.895980834961037, 1.410953044891357 ], [ 103.896186828613395, 1.411370038986206 ], [ 103.896354675293082, 1.41180503368372 ], [ 103.896469116210938, 1.4122589826585 ], [ 103.896667480468807, 1.412646055221671 ], [ 103.896942138671989, 1.413056015968436 ], [ 103.896942138671989, 1.414721965789908 ], [ 103.897644042968807, 1.416108012199459 ], [ 103.898063659668082, 1.416803002357483 ], [ 103.89847564697277, 1.417361974716243 ], [ 103.899444580078068, 1.417500972747803 ], [ 103.899719238281307, 1.417778968811092 ], [ 103.900039672851562, 1.417925000190792 ], [ 103.900474548339844, 1.418246030807495 ], [ 103.900993347167969, 1.418583035469169 ], [ 103.901260375976619, 1.418706059455928 ], [ 103.901664733886776, 1.418889045715275 ], [ 103.902221679687557, 1.418889045715275 ], [ 103.902496337890568, 1.419167041778621 ], [ 103.903335571289062, 1.419167041778621 ], [ 103.903610229492301, 1.418889045715275 ], [ 103.903892517089844, 1.419167041778621 ], [ 103.90444183349608, 1.419167041778621 ], [ 103.904724121093807, 1.41944503784174 ], [ 103.904998779296861, 1.41944503784174 ], [ 103.905555725097599, 1.420001029968261 ], [ 103.906112670898551, 1.420001029968261 ], [ 103.906387329101562, 1.420279026031551 ], [ 103.906669616699332, 1.420279026031551 ], [ 103.907218933105582, 1.420832991600093 ], [ 103.907501220703125, 1.420832991600093 ], [ 103.907775878906307, 1.421110987663212 ], [ 103.908058166503906, 1.421110987663212 ], [ 103.908332824707088, 1.421388983726558 ], [ 103.908607482910099, 1.421388983726558 ], [ 103.908889770507869, 1.421110987663212 ], [ 103.909721374511832, 1.421110987663212 ], [ 103.910110473632926, 1.421324968338012 ], [ 103.910491943359489, 1.421473026275635 ], [ 103.910873413086037, 1.421674013137817 ], [ 103.911293029785156, 1.421872019767761 ], [ 103.911804199218864, 1.42189002037054 ], [ 103.912330627441463, 1.421707987785453 ], [ 103.912933349609432, 1.421502947807426 ], [ 103.913436889648438, 1.420953989029044 ], [ 103.913528442382926, 1.42025196552288 ], [ 103.913330078125114, 1.419631958007869 ], [ 103.913101196289105, 1.419127941131649 ], [ 103.913009643554688, 1.418617010116634 ], [ 103.913009643554688, 1.418269038200435 ], [ 103.91294097900402, 1.417502999305725 ], [ 103.91294097900402, 1.41715395450592 ], [ 103.913009643554688, 1.416039943695011 ], [ 103.913352966308707, 1.415483951568717 ], [ 103.913352966308707, 1.414368987083549 ], [ 103.913467407226605, 1.414006948471126 ], [ 103.913154602050881, 1.413599014282283 ], [ 103.913078308105511, 1.413051962852535 ], [ 103.913032531738281, 1.412430047988948 ], [ 103.912864685058594, 1.411857008934135 ], [ 103.912857055664062, 1.411242008209342 ], [ 103.913055419921875, 1.410734057426566 ], [ 103.913276672363338, 1.410312056541443 ], [ 103.913467407226605, 1.409906983375549 ], [ 103.913757324218693, 1.409556031227112 ], [ 103.914016723632798, 1.40917897224432 ], [ 103.914291381836051, 1.408849000930786 ], [ 103.914710998535099, 1.408741950988883 ], [ 103.914993286132855, 1.408799052238464 ], [ 103.915191650390682, 1.4086190462113 ], [ 103.915428161621207, 1.408063054084835 ], [ 103.915687561035156, 1.40772104263317 ], [ 103.915962219238324, 1.407474994659538 ], [ 103.916290283203125, 1.407248973846436 ], [ 103.916656494140625, 1.406927943229732 ], [ 103.917037963867188, 1.406512975692806 ], [ 103.917396545410156, 1.406052947044373 ], [ 103.917800903320298, 1.405596971511841 ], [ 103.918258666992244, 1.405158996582088 ], [ 103.918708801269474, 1.404634952545166 ], [ 103.919097900390568, 1.404049038887081 ], [ 103.91949462890625, 1.403596043586788 ], [ 103.919845581054787, 1.403254032135123 ], [ 103.920280456542969, 1.403054952621517 ], [ 103.920280456542969, 1.402498960495052 ], [ 103.921112060546932, 1.40166699886322 ], [ 103.921112060546932, 1.401389002800045 ], [ 103.921386718749929, 1.401111006736755 ], [ 103.921386718749929, 1.40083301067358 ], [ 103.921112060546932, 1.400555014610291 ], [ 103.921112060546932, 1.399999022483769 ], [ 103.920280456542969, 1.399166941642761 ], [ 103.920280456542969, 1.39722299575817 ], [ 103.919998168945426, 1.396944999694824 ], [ 103.919998168945426, 1.396667003631649 ], [ 103.919723510742188, 1.396389007568359 ], [ 103.919723510742188, 1.396111011505184 ], [ 103.919441223144645, 1.395833015441895 ], [ 103.919441223144645, 1.395555019378719 ], [ 103.919723510742188, 1.39527702331543 ], [ 103.919723510742188, 1.395001053810176 ], [ 103.919441223144645, 1.394723057746887 ], [ 103.919441223144645, 1.394444942474365 ], [ 103.918609619140668, 1.393610954284782 ], [ 103.918334960937443, 1.393610954284782 ], [ 103.917778015136719, 1.39305496215826 ], [ 103.917434692382798, 1.392259001731986 ], [ 103.917297363281293, 1.392120003700256 ], [ 103.916877746582017, 1.391770958900452 ], [ 103.916809082031193, 1.391561985015812 ], [ 103.91660308837902, 1.391422986984253 ], [ 103.916534423828182, 1.391283988952694 ], [ 103.917160034179801, 1.390795946121273 ], [ 103.917846679687557, 1.391561985015812 ], [ 103.918266296386776, 1.392120003700256 ], [ 103.919303894042969, 1.393164038658142 ], [ 103.919784545898494, 1.39365196228033 ], [ 103.920410156250114, 1.394207954406795 ], [ 103.920959472656364, 1.394626975059452 ], [ 103.921585083007756, 1.395043969154358 ], [ 103.921928405761832, 1.395463943481502 ], [ 103.924034118652457, 1.397148013114929 ], [ 103.924659729003906, 1.397426009178275 ], [ 103.925140380859432, 1.397845029830932 ], [ 103.925765991210881, 1.398123025894279 ], [ 103.926521301269645, 1.398471951484737 ], [ 103.92694091796875, 1.398610949516296 ], [ 103.927780151367244, 1.398610949516296 ], [ 103.928054809570241, 1.398888945579642 ], [ 103.928337097168026, 1.398888945579642 ], [ 103.928886413574219, 1.399445056915283 ], [ 103.929168701171989, 1.399445056915283 ], [ 103.929443359374986, 1.399723052978572 ], [ 103.931114196777287, 1.399723052978572 ], [ 103.931388854980511, 1.399445056915283 ], [ 103.93194580078125, 1.399445056915283 ], [ 103.932220458984489, 1.399166941642761 ], [ 103.933052062988281, 1.399166941642761 ], [ 103.933334350585994, 1.398888945579642 ], [ 103.933944702148551, 1.398805022239685 ], [ 103.934516906738395, 1.398470044136104 ], [ 103.934921264648366, 1.397917985916195 ], [ 103.935111999511648, 1.397405028343258 ], [ 103.935302734374943, 1.39697194099432 ], [ 103.935501098632741, 1.396569013595695 ], [ 103.935546875, 1.396129012107792 ], [ 103.935554504394517, 1.395717024803275 ], [ 103.935592651367244, 1.395357012748775 ], [ 103.935737609863281, 1.395071983337516 ], [ 103.935821533203168, 1.394757032394523 ], [ 103.935844421386832, 1.394426941871757 ], [ 103.936080932617116, 1.393542051315364 ], [ 103.936286926269517, 1.392912983894462 ], [ 103.936630249023551, 1.392148017883414 ], [ 103.936904907226562, 1.391868948936406 ], [ 103.937187194824318, 1.39131295680994 ], [ 103.937393188476676, 1.390854954719657 ], [ 103.937667846679688, 1.3903950452804 ], [ 103.938087463378963, 1.39001202583313 ], [ 103.938583374023438, 1.389713048934993 ], [ 103.939178466796875, 1.389574050903377 ], [ 103.93975830078125, 1.389430999755916 ], [ 103.94017028808598, 1.389255046844482 ], [ 103.940383911132855, 1.388913035392818 ], [ 103.940643310546804, 1.388519048690853 ], [ 103.940979003906364, 1.38810396194458 ], [ 103.94142913818358, 1.38775098323822 ], [ 103.94193267822277, 1.387446045875549 ], [ 103.942420959472656, 1.387163043022213 ], [ 103.942878723144574, 1.386855006218013 ], [ 103.943367004394531, 1.386589050292969 ], [ 103.943916320800781, 1.386368036270255 ], [ 103.94443511962902, 1.386078000068778 ], [ 103.944854736328068, 1.385692954063416 ], [ 103.945213317871193, 1.385303020477352 ], [ 103.945564270019645, 1.384992957115173 ], [ 103.945899963378963, 1.384747028350887 ], [ 103.946304321289119, 1.384596943855286 ], [ 103.946784973144517, 1.38447105884552 ], [ 103.94730377197277, 1.384392023086605 ], [ 103.94777679443358, 1.384199976921138 ], [ 103.948234558105582, 1.383988022804317 ], [ 103.948562622070369, 1.383633017539978 ], [ 103.948844909667912, 1.383206009864921 ], [ 103.949272155761719, 1.383023977279663 ], [ 103.949729919433651, 1.382819056510925 ], [ 103.950271606445369, 1.38273203372961 ], [ 103.950790405273438, 1.382545948028621 ], [ 103.951339721679631, 1.382501959800777 ], [ 103.951873779296989, 1.382498025894279 ], [ 103.952384948730526, 1.382500052452201 ], [ 103.952888488769531, 1.382501959800777 ], [ 103.953414916992301, 1.382501959800777 ], [ 103.953979492187614, 1.382482051849422 ], [ 103.954536437988395, 1.38237202167511 ], [ 103.955024719238267, 1.382143974304256 ], [ 103.955551147460938, 1.381979942321777 ], [ 103.956138610839844, 1.38189804553997 ], [ 103.956718444824219, 1.381695032119865 ], [ 103.957321166992244, 1.381556034088135 ], [ 103.957878112792969, 1.381422042846737 ], [ 103.958419799804688, 1.381389975547847 ], [ 103.958923339843864, 1.381387948989925 ], [ 103.959388732910156, 1.381387948989925 ], [ 103.959823608398494, 1.381387948989925 ], [ 103.96024322509777, 1.381387948989925 ], [ 103.960639953613381, 1.381389975547847 ], [ 103.961021423339957, 1.381415009498596 ], [ 103.96140289306652, 1.381533980369625 ], [ 103.961807250976676, 1.381643056869621 ], [ 103.962265014648438, 1.381665945053044 ], [ 103.962783813476491, 1.381688952446041 ], [ 103.963333129882926, 1.381793022155875 ], [ 103.963890075683693, 1.38194394111639 ], [ 103.964447021484489, 1.38194394111639 ], [ 103.965194702148494, 1.381858944892997 ], [ 103.966438293457031, 1.381718039512634 ], [ 103.9674072265625, 1.381579041481075 ], [ 103.966995239257812, 1.382416009902954 ], [ 103.965888977050781, 1.382416009902954 ], [ 103.965332031250057, 1.38283300399786 ], [ 103.965553283691463, 1.383056044578666 ], [ 103.965553283691463, 1.383334040641842 ], [ 103.964996337890682, 1.383888006210384 ], [ 103.964996337890682, 1.384166002273673 ], [ 103.965278625488281, 1.384443998336849 ], [ 103.965278625488281, 1.384721994400138 ], [ 103.965553283691463, 1.384999990463314 ], [ 103.965553283691463, 1.385555982589779 ], [ 103.965888977050781, 1.385889053344727 ], [ 103.966392517089787, 1.38638794422161 ], [ 103.966918945312614, 1.385784029960632 ], [ 103.966842651367188, 1.385236978530884 ], [ 103.967803955078125, 1.384958982467708 ], [ 103.969192504882855, 1.385236978530884 ], [ 103.969825744628849, 1.385645031929073 ], [ 103.970794677734318, 1.386482000350895 ], [ 103.971389770507812, 1.387500047683772 ], [ 103.97171783447277, 1.387814998626766 ], [ 103.972129821777287, 1.388049960136414 ], [ 103.972434997558651, 1.38824999332428 ], [ 103.972579956054744, 1.388502955436706 ], [ 103.972724914550781, 1.388726949691829 ], [ 103.972824096679744, 1.388990998268241 ], [ 103.973014831543026, 1.389271020889339 ], [ 103.973190307617244, 1.389574050903377 ], [ 103.973365783691463, 1.389855027198792 ], [ 103.973587036132869, 1.390077948570308 ], [ 103.973800659179801, 1.390326023101863 ], [ 103.973991394043082, 1.390655040740967 ], [ 103.974212646484318, 1.391039967536983 ], [ 103.974494934082088, 1.391443014145011 ], [ 103.974792480468679, 1.391865015029907 ], [ 103.97513580322277, 1.392209053039551 ], [ 103.975471496582088, 1.392508029937687 ], [ 103.975814819335938, 1.392763018608036 ], [ 103.976242065429744, 1.392846941947994 ], [ 103.976928710937486, 1.392413973808402 ], [ 103.977699279785156, 1.392331957817077 ], [ 103.978462219238281, 1.392568945884818 ], [ 103.978813171386719, 1.392810940742606 ], [ 103.97916412353527, 1.393051981926021 ], [ 103.979598999023423, 1.393002033233756 ], [ 103.980041503906307, 1.392799019813651 ], [ 103.980545043945298, 1.39267194271082 ], [ 103.981109619140625, 1.392725944519043 ], [ 103.981681823730469, 1.39267194271082 ], [ 103.982192993164176, 1.392750978469905 ], [ 103.982704162597713, 1.392773985862732 ], [ 103.983215332031236, 1.392758011818046 ], [ 103.983757019042912, 1.39267897605896 ], [ 103.984359741210938, 1.392660021781865 ], [ 103.985000610351619, 1.392500996589774 ], [ 103.986114501953125, 1.392500996589774 ], [ 103.986389160156364, 1.392223000526428 ], [ 103.986663818359375, 1.392223000526428 ], [ 103.986946105957145, 1.392500996589774 ], [ 103.987503051757869, 1.392500996589774 ], [ 103.987777709960938, 1.392776966094971 ], [ 103.988052368164119, 1.392500996589774 ], [ 103.988609313964901, 1.392500996589774 ], [ 103.988891601562599, 1.392223000526428 ], [ 103.989723205566406, 1.392223000526428 ], [ 103.989997863769645, 1.391945004463309 ], [ 103.990837097167969, 1.391945004463309 ], [ 103.991111755371151, 1.391667008399963 ], [ 103.991386413574162, 1.391667008399963 ], [ 103.991668701171932, 1.391389012336788 ], [ 103.992500305175895, 1.391389012336788 ], [ 103.992774963378906, 1.391111016273499 ], [ 103.993057250976676, 1.391111016273499 ], [ 103.993331909179688, 1.390831947326717 ], [ 103.993927001953111, 1.390800952911491 ], [ 103.99446868896483, 1.390656948089713 ], [ 103.995010375976506, 1.390478968620357 ], [ 103.995552062988395, 1.390279054641837 ], [ 103.995834350585938, 1.390001058578491 ], [ 103.997497558593693, 1.390001058578491 ], [ 103.997619628906293, 1.390118956565857 ], [ 103.997779846191463, 1.390279054641837 ], [ 103.998054504394474, 1.390275955200195 ], [ 103.998886108398438, 1.391111016273499 ], [ 103.999725341796989, 1.391111016273499 ], [ 104.0, 1.390831947326717 ], [ 104.000274658203182, 1.390553951263541 ], [ 104.000350952148366, 1.389788985252494 ], [ 104.000274658203182, 1.388118028640804 ], [ 104.000350952148366, 1.387282013893241 ], [ 104.001113891601506, 1.386028051376343 ], [ 104.001129150390625, 1.385593056678829 ], [ 104.001228332519588, 1.385172963142509 ], [ 104.001388549804744, 1.384786009788513 ], [ 104.001556396484375, 1.384428024291992 ], [ 104.001693725585881, 1.384093046188411 ], [ 104.001861572265739, 1.383813023567313 ], [ 104.001937866210938, 1.383499979972896 ], [ 104.002006530761761, 1.38318395614624 ], [ 104.002159118652386, 1.382912039756775 ], [ 104.00223541259777, 1.382581949234009 ], [ 104.002365112304744, 1.382279038429317 ], [ 104.002586364746207, 1.38201904296875 ], [ 104.002700805664062, 1.381626963615417 ], [ 104.00278472900402, 1.381240010261649 ], [ 104.002906799316463, 1.380902051925659 ], [ 104.003135681152401, 1.380628943443298 ], [ 104.003280639648438, 1.38028001785284 ], [ 104.003417968749986, 1.379930973053035 ], [ 104.003593444824162, 1.379634976387081 ], [ 104.003738403320412, 1.379320979118404 ], [ 104.003868103027401, 1.378970026969967 ], [ 104.003952026367301, 1.378579974174556 ], [ 104.004127502441506, 1.378232955932731 ], [ 104.004203796386719, 1.377854943275452 ], [ 104.004364013671818, 1.377555966377258 ], [ 104.004478454589901, 1.377223968505916 ], [ 104.004699707031364, 1.37695503234869 ], [ 104.004882812500114, 1.376639962196293 ], [ 104.005035400390682, 1.376289010047913 ], [ 104.005256652832145, 1.375985980033875 ], [ 104.005462646484474, 1.375637054443359 ], [ 104.005622863769574, 1.375226974487418 ], [ 104.00583648681652, 1.375002026557979 ], [ 104.006668090820298, 1.374165058135986 ], [ 104.006942749023494, 1.374166965484733 ], [ 104.007225036621037, 1.373888969421386 ], [ 104.007774353027457, 1.373888969421386 ], [ 104.008331298828239, 1.373332977294922 ], [ 104.008331298828239, 1.373190045356807 ], [ 104.008331298828239, 1.373054981231803 ], [ 104.007499694824276, 1.372220993041992 ], [ 104.007225036621037, 1.372223019599915 ], [ 104.006668090820298, 1.371667027473449 ], [ 104.006668090820298, 1.371389031410331 ], [ 104.006385803222713, 1.371111035346985 ], [ 104.006668090820298, 1.370833039283866 ], [ 104.006668090820298, 1.37055504322052 ], [ 104.006942749023494, 1.370277047157344 ], [ 104.006942749023494, 1.369999051094055 ], [ 104.007225036621037, 1.369722962379512 ], [ 104.007225036621037, 1.368888974189872 ], [ 104.006942749023494, 1.368610978126526 ], [ 104.006942749023494, 1.3672230243684 ], [ 104.006668090820298, 1.366945028305054 ], [ 104.006668090820298, 1.366667032241935 ], [ 104.006385803222713, 1.366389036178589 ], [ 104.006385803222713, 1.365278959274406 ], [ 104.004997253417969, 1.36388897895813 ], [ 104.004997253417969, 1.363610029220695 ], [ 104.004722595214957, 1.363332033157405 ], [ 104.004646301269588, 1.36299097538 ], [ 104.004478454589901, 1.362642049789542 ], [ 104.004341125488381, 1.362243056297416 ], [ 104.004249572753963, 1.361817002296448 ], [ 104.004173278808537, 1.361338019371146 ], [ 104.004104614257869, 1.360715985298157 ], [ 104.003852844238281, 1.360147953033561 ], [ 104.003585815429631, 1.359699010848999 ], [ 104.003318786621136, 1.359362006187439 ], [ 104.00307464599608, 1.35907697677618 ], [ 104.002891540527344, 1.358796954155082 ], [ 104.002761840820355, 1.358507037162837 ], [ 104.002624511718864, 1.35822498798376 ], [ 104.002525329589886, 1.357890009880066 ], [ 104.00241851806652, 1.357480049133244 ], [ 104.002311706542969, 1.357000946998596 ], [ 104.002204895019645, 1.35649299621582 ], [ 104.002067565917912, 1.356080055236816 ], [ 104.001930236816406, 1.355700016021785 ], [ 104.001838684082145, 1.35529804229742 ], [ 104.001716613769517, 1.354954004287777 ], [ 104.001457214355568, 1.354694008827266 ], [ 104.001373291015611, 1.354395985603389 ], [ 104.001335144042969, 1.354007959365902 ], [ 104.001121520996037, 1.353530049324092 ], [ 104.000968933105469, 1.352975964546204 ], [ 104.0, 1.35277795791626 ], [ 103.999725341796989, 1.352452039718741 ], [ 103.999374389648551, 1.351405978202934 ], [ 103.998680114746094, 1.350152015686035 ], [ 103.998130798339844, 1.348690986633414 ], [ 103.997215270996151, 1.34667003154766 ], [ 103.997039794921932, 1.34613394737255 ], [ 103.996551513671875, 1.344763994217033 ], [ 103.996002197265625, 1.34378898143774 ], [ 103.996276855468807, 1.343093991279659 ], [ 103.995376586914176, 1.34197902679449 ], [ 103.995170593261832, 1.340587019920463 ], [ 103.995033264160156, 1.339750051498413 ], [ 103.994544982910213, 1.338775038719291 ], [ 103.993644714355582, 1.336824059486332 ], [ 103.993026733398494, 1.334943056106624 ], [ 103.99163818359375, 1.331599950790519 ], [ 103.990638732910142, 1.329311966896057 ], [ 103.990776062011832, 1.328964948654175 ], [ 103.991470336914119, 1.328894972801152 ], [ 103.991676330566463, 1.328546047210693 ], [ 103.992713928222585, 1.328129053115788 ], [ 103.992782592773438, 1.327502012252864 ], [ 103.993270874023551, 1.327224016189689 ], [ 103.993957519531307, 1.327224016189689 ], [ 103.994445800781193, 1.32694399356842 ], [ 103.995002746581974, 1.32694399356842 ], [ 103.996109008789176, 1.325834035873413 ], [ 103.996109008789176, 1.325556039810294 ], [ 103.995834350585938, 1.325278043746948 ], [ 103.995834350585938, 1.32500004768383 ], [ 103.994445800781193, 1.3236119747163 ], [ 103.994445800781193, 1.323333978652954 ], [ 103.994720458984432, 1.323055982589835 ], [ 103.994720458984432, 1.32277703285223 ], [ 103.995277404785213, 1.32277703285223 ], [ 103.996665954589901, 1.3213889598847 ], [ 103.997779846191463, 1.3213889598847 ], [ 103.998054504394474, 1.321110963821411 ], [ 103.999443054199219, 1.321110963821411 ], [ 104.0, 1.321946024894828 ], [ 104.000274658203182, 1.322221040725765 ], [ 104.000556945800767, 1.322221040725765 ], [ 104.000831604003963, 1.321946024894828 ], [ 104.001113891601506, 1.321946024894828 ], [ 104.001388549804744, 1.321668028831482 ], [ 104.001945495605469, 1.321668028831482 ], [ 104.002220153808707, 1.3213889598847 ], [ 104.00250244140625, 1.3213889598847 ], [ 104.003334045410213, 1.322221040725765 ], [ 104.003890991210994, 1.322221040725765 ], [ 104.004165649414006, 1.322499036789054 ], [ 104.004447937011776, 1.322499036789054 ], [ 104.004722595214957, 1.322221040725765 ], [ 104.004997253417969, 1.322221040725765 ], [ 104.005279541015739, 1.322499036789054 ], [ 104.00583648681652, 1.322499036789054 ], [ 104.006111145019531, 1.322221040725765 ], [ 104.007225036621037, 1.322221040725765 ], [ 104.007354736328224, 1.322353959083671 ], [ 104.007499694824276, 1.322499036789054 ], [ 104.008331298828239, 1.322499036789054 ], [ 104.00888824462902, 1.323055982589835 ], [ 104.009719848632812, 1.323055982589835 ], [ 104.010002136230526, 1.32277703285223 ], [ 104.011665344238281, 1.32277703285223 ], [ 104.011947631836051, 1.323055982589835 ], [ 104.01277923583983, 1.323055982589835 ], [ 104.013885498046804, 1.324167966842765 ], [ 104.014999389648551, 1.324167966842765 ], [ 104.015274047851548, 1.323889970779476 ], [ 104.015556335449332, 1.323889970779476 ], [ 104.015830993652344, 1.324167966842765 ], [ 104.016670227050838, 1.324167966842765 ], [ 104.016944885253849, 1.324444055557308 ], [ 104.017219543457074, 1.324444055557308 ], [ 104.018348693847642, 1.324653029441947 ], [ 104.021118164062614, 1.324653029441947 ], [ 104.022781372070369, 1.324699044227714 ], [ 104.023612976074148, 1.324722051620483 ], [ 104.025001525878892, 1.324722051620483 ], [ 104.025276184082088, 1.32500004768383 ], [ 104.026779174804744, 1.324839949607849 ], [ 104.028366088867301, 1.324839949607849 ], [ 104.028579711914006, 1.324926972389164 ], [ 104.029441833496136, 1.325278043746948 ], [ 104.032218933105469, 1.325278043746948 ], [ 104.032493591308651, 1.325003981590328 ], [ 104.032775878906193, 1.324722051620483 ], [ 104.032775878906193, 1.324444055557308 ], [ 104.033058166503949, 1.324167966842765 ], [ 104.033058166503949, 1.3236119747163 ], [ 104.033332824707145, 1.323333978652954 ], [ 104.033332824707145, 1.321946024894828 ], [ 104.032775878906193, 1.3213889598847 ], [ 104.032775878906193, 1.321110963821411 ], [ 104.034164428710923, 1.319723010063228 ], [ 104.034446716308707, 1.319723010063228 ], [ 104.035003662109432, 1.319167017936763 ], [ 104.035003662109432, 1.318333029746952 ], [ 104.034721374511719, 1.318055033683834 ], [ 104.034721374511719, 1.317499041557369 ], [ 104.034164428710923, 1.31694495677948 ], [ 104.033889770507926, 1.31694495677948 ], [ 104.033607482910142, 1.316666960716304 ], [ 104.033607482910142, 1.316388964653015 ], [ 104.033332824707145, 1.31611096858984 ], [ 104.033058166503949, 1.31611096858984 ], [ 104.033058166503949, 1.31583297252655 ], [ 104.032775878906193, 1.315554976463375 ], [ 104.032775878906193, 1.315001010894832 ], [ 104.033058166503949, 1.314723014831543 ], [ 104.033058166503949, 1.313333034515438 ], [ 104.033332824707145, 1.313055038452092 ], [ 104.033058166503949, 1.312777042388973 ], [ 104.033058166503949, 1.31250095367443 ], [ 104.033607482910142, 1.311944961547908 ], [ 104.033607482910142, 1.311666965484619 ], [ 104.033332824707145, 1.311388969421444 ], [ 104.033332824707145, 1.310832977294978 ], [ 104.033607482910142, 1.310554027557373 ], [ 104.033607482910142, 1.310001015663147 ], [ 104.033332824707145, 1.309723019599971 ], [ 104.032218933105469, 1.309723019599971 ], [ 104.031669616699205, 1.310279011726436 ], [ 104.031669616699205, 1.312222957611084 ], [ 104.031112670898438, 1.312777042388973 ], [ 104.031112670898438, 1.313055038452092 ], [ 104.028610229492188, 1.315554976463375 ], [ 104.028335571289176, 1.315554976463375 ], [ 104.027778625488395, 1.31611096858984 ], [ 104.027496337890611, 1.31611096858984 ], [ 104.026947021484418, 1.316666960716304 ], [ 104.028335571289176, 1.318055033683834 ], [ 104.028335571289176, 1.318611025810298 ], [ 104.027496337890611, 1.319445013999939 ], [ 104.027221679687614, 1.319445013999939 ], [ 104.026947021484418, 1.319723010063228 ], [ 104.026664733886662, 1.319723010063228 ], [ 104.026107788085866, 1.319167017936763 ], [ 104.026107788085866, 1.318889021873417 ], [ 104.025833129882869, 1.318611025810298 ], [ 104.025558471679673, 1.318611025810298 ], [ 104.025276184082088, 1.318889021873417 ], [ 104.025001525878892, 1.318889021873417 ], [ 104.024444580078125, 1.319445013999939 ], [ 104.023887634277401, 1.319445013999939 ], [ 104.023612976074148, 1.319167017936763 ], [ 104.023330688476605, 1.319167017936763 ], [ 104.022781372070369, 1.318611025810298 ], [ 104.022781372070369, 1.31694495677948 ], [ 104.023056030273381, 1.316666960716304 ], [ 104.023056030273381, 1.316388964653015 ], [ 104.023330688476605, 1.31611096858984 ], [ 104.023330688476605, 1.31583297252655 ], [ 104.023612976074148, 1.315554976463375 ], [ 104.023612976074148, 1.315001010894832 ], [ 104.023887634277401, 1.313611030578556 ], [ 104.023887634277401, 1.312777042388973 ], [ 104.024169921875114, 1.31250095367443 ], [ 104.024444580078125, 1.31250095367443 ], [ 104.024444580078125, 1.312222957611084 ], [ 104.024719238281349, 1.311944961547908 ], [ 104.025276184082088, 1.311944961547908 ], [ 104.025558471679673, 1.311666965484619 ], [ 104.026947021484418, 1.311666965484619 ], [ 104.027496337890611, 1.311110973358154 ], [ 104.027496337890611, 1.310832977294978 ], [ 104.027221679687614, 1.310554027557373 ], [ 104.027221679687614, 1.310001015663147 ], [ 104.026390075683651, 1.309165954589844 ], [ 104.026107788085866, 1.309165954589844 ], [ 104.025833129882869, 1.309445023536682 ], [ 104.025558471679673, 1.309445023536682 ], [ 104.025276184082088, 1.309723019599971 ], [ 104.025001525878892, 1.309723019599971 ], [ 104.024719238281349, 1.310001015663147 ], [ 104.024444580078125, 1.310001015663147 ], [ 104.024169921875114, 1.310279011726436 ], [ 104.023887634277401, 1.310279011726436 ], [ 104.023612976074148, 1.310554027557373 ], [ 104.023330688476605, 1.310554027557373 ], [ 104.022499084472656, 1.311388969421444 ], [ 104.022499084472656, 1.311944961547908 ], [ 104.022224426269588, 1.312222957611084 ], [ 104.022224426269588, 1.31250095367443 ], [ 104.021942138671861, 1.312777042388973 ], [ 104.021942138671861, 1.313333034515438 ], [ 104.022224426269588, 1.313611030578556 ], [ 104.022224426269588, 1.314445018768367 ], [ 104.021667480468864, 1.315001010894832 ], [ 104.02138519287108, 1.314723014831543 ], [ 104.020835876464886, 1.314723014831543 ], [ 104.020553588867301, 1.315001010894832 ], [ 104.019721984863338, 1.315001010894832 ], [ 104.019447326660142, 1.315279006958008 ], [ 104.014167785644588, 1.315276980400029 ], [ 104.013885498046804, 1.315554976463375 ], [ 104.011665344238281, 1.315554976463375 ], [ 104.01139068603527, 1.315276980400029 ], [ 104.010559082031307, 1.315279006958008 ], [ 104.010276794433537, 1.315001010894832 ], [ 104.010002136230526, 1.315001010894832 ], [ 104.009719848632812, 1.314723014831543 ], [ 104.009445190429744, 1.314723014831543 ], [ 104.00888824462902, 1.314167022705078 ], [ 104.007774353027457, 1.313055038452092 ], [ 104.007499694824276, 1.313055038452092 ], [ 104.006942749023494, 1.312499046325797 ], [ 104.006668090820298, 1.312222957611084 ], [ 104.006385803222713, 1.312222957611084 ], [ 104.006111145019531, 1.311944961547908 ], [ 104.00583648681652, 1.311944961547908 ], [ 104.00555419921875, 1.311666965484619 ], [ 104.005279541015739, 1.311666965484619 ], [ 104.004997253417969, 1.311388969421444 ], [ 104.004447937011776, 1.311388969421444 ], [ 104.003890991210994, 1.310832977294978 ], [ 104.003608703613281, 1.310554027557373 ], [ 104.003051757812486, 1.310554027557373 ], [ 104.002777099609489, 1.310279011726436 ], [ 104.002220153808707, 1.310279011726436 ], [ 104.001945495605469, 1.310001015663147 ], [ 104.000556945800767, 1.310001015663147 ], [ 104.000274658203182, 1.310279011726436 ], [ 104.000274658203182, 1.310832977294978 ], [ 104.0, 1.310832977294978 ], [ 103.999725341796989, 1.311110973358154 ], [ 103.999168395996207, 1.310554027557373 ], [ 103.998886108398438, 1.310554027557373 ], [ 103.998611450195426, 1.310832977294978 ], [ 103.998336791992244, 1.310832977294978 ], [ 103.998054504394474, 1.311110973358154 ], [ 103.997779846191463, 1.311110973358154 ], [ 103.997497558593693, 1.311388969421444 ], [ 103.997222900390682, 1.311388969421444 ], [ 103.9969482421875, 1.311666965484619 ], [ 103.996665954589901, 1.311666965484619 ], [ 103.996391296386719, 1.311944961547908 ], [ 103.996109008789176, 1.311944961547908 ], [ 103.995834350585938, 1.312222957611084 ], [ 103.995277404785213, 1.312222957611084 ], [ 103.995002746581974, 1.311944961547908 ], [ 103.994445800781193, 1.31250095367443 ], [ 103.994163513183651, 1.31250095367443 ], [ 103.993888854980469, 1.312777042388973 ], [ 103.993614196777386, 1.312777042388973 ], [ 103.993331909179688, 1.313055038452092 ], [ 103.992774963378906, 1.313055038452092 ], [ 103.992225646972713, 1.313611030578556 ], [ 103.991111755371151, 1.313611030578556 ], [ 103.990837097167969, 1.313889026641903 ], [ 103.990554809570369, 1.313611030578556 ], [ 103.989997863769645, 1.313611030578556 ], [ 103.989166259765625, 1.312777042388973 ], [ 103.989166259765625, 1.31250095367443 ], [ 103.988052368164119, 1.311388969421444 ], [ 103.987220764160156, 1.312222957611084 ], [ 103.986946105957145, 1.312222957611084 ], [ 103.986663818359375, 1.31250095367443 ], [ 103.985832214355582, 1.31250095367443 ], [ 103.984725952148438, 1.313611030578556 ], [ 103.985000610351619, 1.313889026641903 ], [ 103.985000610351619, 1.314445018768367 ], [ 103.984725952148438, 1.314723014831543 ], [ 103.984725952148438, 1.315001010894832 ], [ 103.984443664550838, 1.315276980400029 ], [ 103.984443664550838, 1.315554976463375 ], [ 103.983886718750057, 1.31611096858984 ], [ 103.983612060546875, 1.31611096858984 ], [ 103.983329772949332, 1.316388964653015 ], [ 103.983329772949332, 1.316666960716304 ], [ 103.98276519775402, 1.316403031349239 ], [ 103.982238769531193, 1.316388964653015 ], [ 103.981674194335938, 1.316439032554626 ], [ 103.981109619140625, 1.31661498546606 ], [ 103.980545043945298, 1.316612005233821 ], [ 103.980003356933594, 1.316416025161857 ], [ 103.979446411132869, 1.316256999969539 ], [ 103.978889465332088, 1.316084027290344 ], [ 103.978385925293082, 1.315842032432613 ], [ 103.977882385253906, 1.315562009811515 ], [ 103.977485656738281, 1.315181016921997 ], [ 103.977233886718864, 1.315237998962402 ], [ 103.976974487304744, 1.31537497043621 ], [ 103.976722717285156, 1.315570950508231 ], [ 103.976493835449332, 1.31576502323162 ], [ 103.976234436035213, 1.315847039222774 ], [ 103.976013183593807, 1.315945029258785 ], [ 103.975807189941406, 1.316081047058105 ], [ 103.975517272949332, 1.316144943237305 ], [ 103.975173950195256, 1.316275000572318 ], [ 103.974761962890739, 1.316295981407166 ], [ 103.974311828613338, 1.316282033920288 ], [ 103.973861694335938, 1.316365957260189 ], [ 103.97342681884777, 1.316383957862797 ], [ 103.973182678222713, 1.316359043121452 ], [ 103.973014831543026, 1.316341042518673 ], [ 103.972633361816463, 1.316166043281669 ], [ 103.972251892089886, 1.316043019294796 ], [ 103.971862792968793, 1.315894007682857 ], [ 103.971435546875057, 1.31576502323162 ], [ 103.971000671386719, 1.315603017807063 ], [ 103.970497131347713, 1.315562009811515 ], [ 103.969963073730526, 1.315547943115234 ], [ 103.969406127929801, 1.315489053726253 ], [ 103.968872070312429, 1.315328955650273 ], [ 103.968322753906236, 1.315265059471074 ], [ 103.967826843261776, 1.315176963806096 ], [ 103.967384338378906, 1.315034985542297 ], [ 103.966926574707145, 1.314950942993221 ], [ 103.966499328613338, 1.314785003662109 ], [ 103.966049194335938, 1.314684033393917 ], [ 103.965660095214844, 1.314563035964909 ], [ 103.965293884277344, 1.314455986023063 ], [ 103.964958190918026, 1.314211964607352 ], [ 103.964538574218736, 1.313972949981633 ], [ 103.964080810546989, 1.313686013221797 ], [ 103.963516235351676, 1.313434958457947 ], [ 103.962837219238267, 1.313580989837646 ], [ 103.962272644042969, 1.3138090372085 ], [ 103.961791992187614, 1.313881993293762 ], [ 103.961647033691406, 1.313871026039124 ], [ 103.961364746093807, 1.313850045204276 ], [ 103.960983276367244, 1.313686013221797 ], [ 103.960556030273423, 1.313573956489563 ], [ 103.960136413574219, 1.313369035720825 ], [ 103.959648132324276, 1.313236951828003 ], [ 103.959144592285099, 1.313032031059322 ], [ 103.958618164062486, 1.312777042388973 ], [ 103.958045959472656, 1.31250095367443 ], [ 103.957443237304631, 1.312206983566398 ], [ 103.956871032714787, 1.311843991279716 ], [ 103.956375122070369, 1.311377048492488 ], [ 103.955848693847713, 1.311015009880066 ], [ 103.955276489257869, 1.311146974563712 ], [ 103.954658508300838, 1.311341047287101 ], [ 103.954017639160156, 1.311354041099548 ], [ 103.953399658203239, 1.311198949813956 ], [ 103.952766418457088, 1.31107401847845 ], [ 103.952201843261776, 1.310832977294978 ], [ 103.951644897460994, 1.31062304973608 ], [ 103.951042175293026, 1.310652017593384 ], [ 103.950469970703182, 1.310747981071586 ], [ 103.949981689453239, 1.310601949691886 ], [ 103.949485778808594, 1.310559034347534 ], [ 103.948989868164176, 1.310554027557373 ], [ 103.948471069335881, 1.310557007789612 ], [ 103.94793701171875, 1.310538053512687 ], [ 103.947410583496151, 1.31044697761547 ], [ 103.946945190429631, 1.310258030891418 ], [ 103.946540832519645, 1.310029983520565 ], [ 103.946128845214957, 1.309865951538086 ], [ 103.945732116699276, 1.3096879720689 ], [ 103.945365905761818, 1.309458017349243 ], [ 103.944953918457088, 1.309250950813237 ], [ 103.944488525390625, 1.309088945388908 ], [ 103.944046020507926, 1.308917999267635 ], [ 103.94358825683598, 1.308828949928341 ], [ 103.943206787109432, 1.308658003807125 ], [ 103.942787170410156, 1.308567047119254 ], [ 103.942443847656307, 1.308334946632499 ], [ 103.942108154296932, 1.308050036430416 ], [ 103.941741943359489, 1.307718992233333 ], [ 103.941322326660213, 1.307340979576111 ], [ 103.940742492675838, 1.307072043418998 ], [ 103.940185546875057, 1.307173967361564 ], [ 103.939643859863395, 1.307217955589351 ], [ 103.939147949218736, 1.307222008705253 ], [ 103.938667297363338, 1.307183980941716 ], [ 103.93833160400402, 1.306944012641907 ], [ 103.937774658203239, 1.306944012641907 ], [ 103.9375, 1.306666016578788 ], [ 103.936943054199276, 1.306666016578788 ], [ 103.936668395996094, 1.306388020515442 ], [ 103.936386108398494, 1.306390047073421 ], [ 103.936111450195298, 1.306112051010245 ], [ 103.935836791992301, 1.306112051010245 ], [ 103.935554504394517, 1.305834054946899 ], [ 103.93527984619152, 1.305834054946899 ], [ 103.93499755859375, 1.305556058883781 ], [ 103.934722900390739, 1.305556058883781 ], [ 103.934448242187557, 1.305277943611258 ], [ 103.934165954589773, 1.305277943611258 ], [ 103.933891296386776, 1.304999947547969 ], [ 103.930557250976562, 1.304999947547969 ], [ 103.930274963378963, 1.304721951484794 ], [ 103.930000305175767, 1.304721951484794 ], [ 103.92972564697277, 1.304443955421505 ], [ 103.929443359374986, 1.304443955421505 ], [ 103.929168701171989, 1.304165959358329 ], [ 103.928825378417912, 1.304103970527706 ], [ 103.928329467773494, 1.303923964500427 ], [ 103.927757263183651, 1.303830981254578 ], [ 103.927177429199219, 1.303653001785392 ], [ 103.926567077636719, 1.303611993789787 ], [ 103.92594146728527, 1.303609967231864 ], [ 103.925315856933651, 1.303609967231864 ], [ 103.9246826171875, 1.303575992584229 ], [ 103.924072265625, 1.303416013717651 ], [ 103.923454284668082, 1.303331971168518 ], [ 103.922851562500057, 1.303241014480648 ], [ 103.922294616699332, 1.303087949752864 ], [ 103.921768188476506, 1.303007960319633 ], [ 103.921348571777457, 1.302811980247441 ], [ 103.920883178710938, 1.302680015564022 ], [ 103.920425415039006, 1.302485942840633 ], [ 103.919960021972713, 1.302268028259277 ], [ 103.919425964355582, 1.302171945571899 ], [ 103.918937683105469, 1.301947951316947 ], [ 103.918426513671932, 1.301735997200069 ], [ 103.917823791503892, 1.301669955253601 ], [ 103.917198181152287, 1.301610946655217 ], [ 103.916679382324219, 1.301385045051688 ], [ 103.916229248046818, 1.301113963127136 ], [ 103.915840148925895, 1.300861001014709 ], [ 103.91544342041027, 1.30071496963501 ], [ 103.91507720947277, 1.300573945045471 ], [ 103.914672851562614, 1.300480961799678 ], [ 103.914260864257855, 1.300300955772514 ], [ 103.91378021240233, 1.300163984298706 ], [ 103.913269042968807, 1.29997897148138 ], [ 103.91275787353527, 1.299721956253109 ], [ 103.912216186523551, 1.299443960189933 ], [ 103.911651611328068, 1.299165964126644 ], [ 103.91107940673821, 1.298899054527283 ], [ 103.910476684570426, 1.298701047897396 ], [ 103.909828186035199, 1.2985999584198 ], [ 103.90918731689446, 1.29848396778118 ], [ 103.908546447753963, 1.29836297035223 ], [ 103.907882690429673, 1.298334002494925 ], [ 103.907218933105582, 1.29828405380249 ], [ 103.906631469726619, 1.298056006431636 ], [ 103.906074523925881, 1.297778010368461 ], [ 103.905563354492131, 1.297463059425468 ], [ 103.905151367187614, 1.297045946121216 ], [ 103.904617309570312, 1.296769976616019 ], [ 103.904014587402457, 1.29667699337017 ], [ 103.903457641601506, 1.296664953231868 ], [ 103.902954101562486, 1.296664953231868 ], [ 103.902488708496207, 1.29662394523632 ], [ 103.902061462402386, 1.296448945999145 ], [ 103.901596069335938, 1.296339035034179 ], [ 103.901176452636662, 1.296143054962215 ], [ 103.900726318359418, 1.295994997024593 ], [ 103.900291442871151, 1.295812964439449 ], [ 103.899917602539119, 1.295554995536861 ], [ 103.899528503418026, 1.29529595375061 ], [ 103.899101257324219, 1.295094966888485 ], [ 103.898620605468793, 1.294965028762761 ], [ 103.898200988769588, 1.294744014740047 ], [ 103.89776611328125, 1.294566035270691 ], [ 103.897323608398551, 1.294394969940242 ], [ 103.89689636230473, 1.294165015220585 ], [ 103.896408081054631, 1.293936967849731 ], [ 103.895790100097756, 1.29382598400116 ], [ 103.895149230957088, 1.293655037880058 ], [ 103.894477844238381, 1.293599963188228 ], [ 103.893821716308636, 1.293499946594295 ], [ 103.893249511718807, 1.293238043785152 ], [ 103.89273834228527, 1.292912006378174 ], [ 103.89227294921875, 1.29261302947998 ], [ 103.891891479492188, 1.292263984680176 ], [ 103.891532897949276, 1.291941046714896 ], [ 103.891220092773551, 1.291615009307861 ], [ 103.890975952148494, 1.29125702381134 ], [ 103.890708923339844, 1.290940046310538 ], [ 103.890327453613281, 1.290760040283203 ], [ 103.889907836913991, 1.290596008300724 ], [ 103.889411926269531, 1.29051399230957 ], [ 103.888931274414176, 1.290325045585746 ], [ 103.888465881347713, 1.290112972259521 ], [ 103.888046264648423, 1.289845943451041 ], [ 103.887634277343693, 1.289572954177913 ], [ 103.887245178222599, 1.289278984069938 ], [ 103.886894226074219, 1.288938999175969 ], [ 103.886520385742188, 1.288617968559322 ], [ 103.886116027832031, 1.28831505775463 ], [ 103.885696411132912, 1.288007020950374 ], [ 103.885299682617301, 1.287644982337952 ], [ 103.884872436523494, 1.287310004234371 ], [ 103.884338378906364, 1.287101984024105 ], [ 103.883834838867188, 1.286878943443412 ], [ 103.883407592773551, 1.286610007286128 ], [ 103.883041381835866, 1.286293029785213 ], [ 103.882667541503849, 1.286005973815975 ], [ 103.882286071777287, 1.285738945007324 ], [ 103.881942749023438, 1.285434007644653 ], [ 103.881607055664119, 1.285143971443233 ], [ 103.881187438964844, 1.284942030906734 ], [ 103.880775451660156, 1.284716010093632 ], [ 103.880340576171974, 1.284494996070919 ], [ 103.879829406738281, 1.284366965293998 ], [ 103.879325866699276, 1.284152984619254 ], [ 103.878829956054801, 1.283889055252132 ], [ 103.878326416015625, 1.283596992492732 ], [ 103.877861022949332, 1.283249974250907 ], [ 103.877449035644588, 1.282847046852226 ], [ 103.877037048339886, 1.28247594833374 ], [ 103.876663208007869, 1.282134056091422 ], [ 103.876296997070369, 1.281862020492554 ], [ 103.875831604003906, 1.281666040420589 ], [ 103.875556945800895, 1.281388044357413 ], [ 103.875000000000114, 1.281388044357413 ], [ 103.874725341796861, 1.281666040420589 ], [ 103.874443054199318, 1.281666040420589 ], [ 103.871665954589844, 1.284445047378654 ], [ 103.871665954589844, 1.284723043441772 ], [ 103.870834350585881, 1.285555005073604 ], [ 103.870834350585881, 1.28583300113678 ], [ 103.869720458984375, 1.286944985389709 ], [ 103.869720458984375, 1.287222981453056 ], [ 103.869445800781307, 1.287500977516174 ], [ 103.869445800781307, 1.287776947021598 ], [ 103.868888854980582, 1.288333058357239 ], [ 103.868888854980582, 1.288611054420528 ], [ 103.86861419677733, 1.288889050483704 ], [ 103.86861419677733, 1.289167046546993 ], [ 103.868331909179787, 1.289445042610168 ], [ 103.868331909179787, 1.289723038673515 ], [ 103.868057250976619, 1.289999008178711 ], [ 103.868057250976619, 1.290555000305176 ], [ 103.867774963379006, 1.290832996368465 ], [ 103.867774963379006, 1.291388988494987 ], [ 103.867500305175838, 1.291666984558105 ], [ 103.867500305175838, 1.291944980621452 ], [ 103.867225646972585, 1.29222297668457 ], [ 103.867225646972585, 1.292498946189937 ], [ 103.866943359375057, 1.292776942253113 ], [ 103.866943359375057, 1.293055057525635 ], [ 103.866668701171875, 1.293333053588924 ], [ 103.866668701171875, 1.2936110496521 ], [ 103.866386413574261, 1.293889045715389 ], [ 103.866386413574261, 1.294999003410396 ], [ 103.866111755371094, 1.295276999473572 ], [ 103.866111755371094, 1.295554995536861 ], [ 103.866203308105526, 1.296198010444698 ], [ 103.866188049316463, 1.296972990036124 ], [ 103.866607666015739, 1.297623038292045 ], [ 103.867225646972585, 1.297577023506278 ], [ 103.867828369140625, 1.297600030899105 ], [ 103.868278503418011, 1.297582030296326 ], [ 103.868888854980582, 1.29764997959137 ], [ 103.869522094726562, 1.297788977622929 ], [ 103.870277404785099, 1.298056006431636 ], [ 103.870552062988338, 1.298334002494925 ], [ 103.870834350585881, 1.298334002494925 ], [ 103.871109008789119, 1.298611998558101 ], [ 103.871391296386832, 1.298611998558101 ], [ 103.871665954589844, 1.29888999462122 ], [ 103.872222900390625, 1.299443960189933 ], [ 103.872222900390625, 1.300277948379573 ], [ 103.871948242187599, 1.300555944442692 ], [ 103.871948242187599, 1.300833940506038 ], [ 103.871665954589844, 1.30111205577856 ], [ 103.871665954589844, 1.302778005600032 ], [ 103.870834350585881, 1.303611993789787 ], [ 103.870552062988338, 1.303611993789787 ], [ 103.870277404785099, 1.303889989852962 ], [ 103.870002746582074, 1.303887963294983 ], [ 103.869720458984375, 1.304165959358329 ], [ 103.869445800781307, 1.303887963294983 ], [ 103.869163513183594, 1.303889989852962 ], [ 103.868331909179787, 1.303056001663322 ], [ 103.868331909179787, 1.302500009536857 ], [ 103.868057250976619, 1.302222013473511 ], [ 103.868057250976619, 1.301666021347046 ], [ 103.867774963379006, 1.30139005184185 ], [ 103.867774963379006, 1.30111205577856 ], [ 103.867500305175838, 1.30111205577856 ], [ 103.867225646972585, 1.300833940506038 ], [ 103.866943359375057, 1.300833940506038 ], [ 103.866668701171875, 1.300555944442692 ], [ 103.866111755371094, 1.300555944442692 ], [ 103.865554809570312, 1.299999952316398 ], [ 103.865280151367287, 1.299999952316398 ], [ 103.864860534668011, 1.299582958221492 ], [ 103.86472320556652, 1.299443960189933 ], [ 103.86472320556652, 1.299167990684566 ], [ 103.864440917968807, 1.29888999462122 ], [ 103.864440917968807, 1.298334002494925 ], [ 103.864166259765568, 1.298056006431636 ], [ 103.864166259765568, 1.297222018241996 ], [ 103.863334655761776, 1.296390056610164 ], [ 103.863334655761776, 1.296111941337642 ], [ 103.863609313964844, 1.295833945274296 ], [ 103.863609313964844, 1.294721007347107 ], [ 103.864166259765568, 1.294165015220585 ], [ 103.864166259765568, 1.2936110496521 ], [ 103.864440917968807, 1.293333053588924 ], [ 103.864440917968807, 1.292498946189937 ], [ 103.864166259765568, 1.29222297668457 ], [ 103.864166259765568, 1.291388988494987 ], [ 103.864440917968807, 1.291110992431641 ], [ 103.864440917968807, 1.289723038673515 ], [ 103.863891601562543, 1.289167046546993 ], [ 103.863334655761776, 1.289167046546993 ], [ 103.863052368164062, 1.288889050483704 ], [ 103.862503051757798, 1.288889050483704 ], [ 103.862220764160256, 1.289167046546993 ], [ 103.861640930175881, 1.287019968032951 ], [ 103.862266540527287, 1.286393046379146 ], [ 103.862060546874943, 1.28618395328516 ], [ 103.862060546874943, 1.286044955253601 ], [ 103.86240386962902, 1.285974025726318 ], [ 103.862754821777401, 1.285624980926457 ], [ 103.863052368164062, 1.285277009010315 ], [ 103.863334655761776, 1.285001039505119 ], [ 103.863891601562543, 1.285001039505119 ], [ 103.864440917968807, 1.284445047378654 ], [ 103.86472320556652, 1.284445047378654 ], [ 103.864997863769517, 1.284167051315308 ], [ 103.865554809570312, 1.284167051315308 ], [ 103.865837097168068, 1.283889055252132 ], [ 103.866386413574261, 1.283889055252132 ], [ 103.866668701171875, 1.283611059188843 ], [ 103.866943359375057, 1.283611059188843 ], [ 103.867225646972585, 1.283331990242061 ], [ 103.867500305175838, 1.283331990242061 ], [ 103.871109008789119, 1.279721975326595 ], [ 103.871109008789119, 1.27916598320013 ], [ 103.871391296386832, 1.278887987136955 ], [ 103.871391296386832, 1.277500033378658 ], [ 103.871109008789119, 1.277222037315482 ], [ 103.871109008789119, 1.276944041252193 ], [ 103.870002746582074, 1.275833964347839 ], [ 103.869720458984375, 1.275833964347839 ], [ 103.869445800781307, 1.275555968284664 ], [ 103.869163513183594, 1.275555968284664 ], [ 103.868331909179787, 1.274721980094853 ], [ 103.868057250976619, 1.274721980094853 ], [ 103.866111755371094, 1.272778034210262 ], [ 103.865837097168068, 1.272778034210262 ], [ 103.865280151367287, 1.272222042083797 ], [ 103.864997863769517, 1.272222042083797 ], [ 103.864715576171989, 1.271944046020621 ], [ 103.864341735839957, 1.271666049957332 ], [ 103.863975524902287, 1.271407961845341 ], [ 103.863571166992301, 1.271204948425407 ], [ 103.863136291503949, 1.271046042442322 ], [ 103.862739562988338, 1.270822048187313 ], [ 103.862388610839901, 1.27055299282074 ], [ 103.862052917480582, 1.270270943641662 ], [ 103.861717224121094, 1.269989967346305 ], [ 103.861358642578125, 1.269703030586243 ], [ 103.860954284667955, 1.269390940666312 ], [ 103.860527038574332, 1.269016981124935 ], [ 103.860046386718807, 1.268782019615287 ], [ 103.859565734863395, 1.269067049026603 ], [ 103.859153747558707, 1.269512057304439 ], [ 103.858711242675838, 1.269883036613578 ], [ 103.858184814453182, 1.269994974136466 ], [ 103.857688903808537, 1.270063042640743 ], [ 103.857254028320412, 1.270256996154785 ], [ 103.856796264648438, 1.270427942276058 ], [ 103.856361389160156, 1.270629048347587 ], [ 103.856040954589901, 1.270949959755058 ], [ 103.855682373046932, 1.271162033081055 ], [ 103.855384826660099, 1.271407961845341 ], [ 103.855110168457074, 1.271679043769893 ], [ 103.854804992675895, 1.271965980529785 ], [ 103.8544921875, 1.272259950637931 ], [ 103.854179382324276, 1.272544980049247 ], [ 103.853866577148366, 1.272802948951835 ], [ 103.853614807128963, 1.273056030273381 ], [ 103.85333251953125, 1.273056030273381 ], [ 103.853057861328224, 1.273334026336727 ], [ 103.852775573730469, 1.273056030273381 ], [ 103.852775573730469, 1.272778034210262 ], [ 103.852218627929673, 1.272222042083797 ], [ 103.852043151855526, 1.271898031234684 ], [ 103.852127075195426, 1.271613001823425 ], [ 103.852218627929673, 1.271216988563538 ], [ 103.852310180664176, 1.270761013031006 ], [ 103.852470397949276, 1.270341038703862 ], [ 103.852500915527457, 1.269914984703121 ], [ 103.852500915527457, 1.26948702335352 ], [ 103.852500915527457, 1.26901304721838 ], [ 103.852500915527457, 1.268465995788631 ], [ 103.852500915527457, 1.265128970146179 ], [ 103.852500915527457, 1.264466047286987 ], [ 103.852500915527457, 1.26389396190649 ], [ 103.852493286132926, 1.263463020324707 ], [ 103.852500915527457, 1.26313495635992 ], [ 103.852546691894531, 1.262799978256339 ], [ 103.852722167968693, 1.262374043464717 ], [ 103.852676391601676, 1.261773943901062 ], [ 103.852378845214844, 1.261144995689506 ], [ 103.851928710937614, 1.260555028915405 ], [ 103.851371765136832, 1.260105967521667 ], [ 103.850692749023423, 1.260175943374691 ], [ 103.850105285644531, 1.260547995567265 ], [ 103.849586486816463, 1.260987997055167 ], [ 103.849182128906307, 1.261528015136775 ], [ 103.848884582519645, 1.262102007865849 ], [ 103.848609924316463, 1.262501001358146 ], [ 103.848609924316463, 1.262776970863342 ], [ 103.848052978515668, 1.263332962989807 ], [ 103.847503662109432, 1.263054966926688 ], [ 103.847221374511719, 1.262776970863342 ], [ 103.846664428710938, 1.262776970863342 ], [ 103.846664428710938, 1.261945009231681 ], [ 103.846107482910142, 1.261389017105216 ], [ 103.846389770507926, 1.26111102104187 ], [ 103.846389770507926, 1.260833024978751 ], [ 103.845832824707145, 1.260277032852287 ], [ 103.845558166503949, 1.260277032852287 ], [ 103.845275878906193, 1.260555028915405 ], [ 103.845275878906193, 1.260833024978751 ], [ 103.845001220703182, 1.26111102104187 ], [ 103.845001220703182, 1.261389017105216 ], [ 103.844444274902401, 1.261945009231681 ], [ 103.844444274902401, 1.262223005294857 ], [ 103.844085693359474, 1.262452960014457 ], [ 103.843704223632926, 1.26269900798809 ], [ 103.843368530273381, 1.263012051582336 ], [ 103.842987060546818, 1.26329696178442 ], [ 103.842559814453239, 1.263558983802909 ], [ 103.842155456543026, 1.263880014419613 ], [ 103.841766357421932, 1.264222025871277 ], [ 103.841468811035099, 1.26462996006012 ], [ 103.841140747070312, 1.265023946762199 ], [ 103.840797424316463, 1.265411972999686 ], [ 103.840377807617188, 1.265741944313049 ], [ 103.839935302734318, 1.266077041625977 ], [ 103.839462280273494, 1.26637601852417 ], [ 103.839019775390625, 1.266669988632316 ], [ 103.838623046875, 1.266947984695435 ], [ 103.8382568359375, 1.267179965973014 ], [ 103.837860107421875, 1.267182946205253 ], [ 103.837501525878892, 1.266942977905273 ], [ 103.837219238281349, 1.266942977905273 ], [ 103.836570739746094, 1.26652204990387 ], [ 103.835556030273366, 1.266389012336731 ], [ 103.835281372070369, 1.266389012336731 ], [ 103.834999084472656, 1.266667008400077 ], [ 103.834167480468864, 1.266667008400077 ], [ 103.83388519287108, 1.266942977905273 ], [ 103.833053588867301, 1.266942977905273 ], [ 103.832778930664105, 1.266667008400077 ], [ 103.831947326660156, 1.266667008400077 ], [ 103.831665039062557, 1.266389012336731 ], [ 103.831390380859361, 1.266389012336731 ], [ 103.831108093261776, 1.266111016273612 ], [ 103.830833435058594, 1.266111016273612 ], [ 103.830696105957088, 1.265972018241825 ], [ 103.830558776855582, 1.265833020210266 ], [ 103.830001831054801, 1.265833020210266 ], [ 103.829795837402443, 1.26562595367443 ], [ 103.829170227050838, 1.264999032020683 ], [ 103.828887939453068, 1.265001058578605 ], [ 103.828330993652344, 1.264444947242794 ], [ 103.828056335449276, 1.264444947242794 ], [ 103.827774047851548, 1.264166951179618 ], [ 103.827499389648551, 1.264166951179618 ], [ 103.827224731445312, 1.263888955116329 ], [ 103.82694244384777, 1.263888955116329 ], [ 103.825836181640568, 1.262776970863342 ], [ 103.824996948242244, 1.262776970863342 ], [ 103.824722290039062, 1.262501001358146 ], [ 103.821662902832017, 1.262501001358146 ], [ 103.82138824462902, 1.262223005294857 ], [ 103.820274353027457, 1.262223005294857 ], [ 103.819999694824276, 1.261945009231681 ], [ 103.819435119628949, 1.262168049812374 ], [ 103.818832397460938, 1.262236952781734 ], [ 103.818626403808594, 1.262483000755367 ], [ 103.818397521972599, 1.262742996215934 ], [ 103.818016052246037, 1.262979984283504 ], [ 103.817436218261648, 1.263136982917842 ], [ 103.816955566406307, 1.263337969780025 ], [ 103.816627502441506, 1.263566017150879 ], [ 103.816322326660156, 1.263638019561824 ], [ 103.81607818603527, 1.263782024383602 ], [ 103.815773010253906, 1.263950943946895 ], [ 103.815422058105526, 1.264188051223812 ], [ 103.815055847168026, 1.264505028724784 ], [ 103.814704895019574, 1.264878034591675 ], [ 103.814331054687614, 1.265220046043396 ], [ 103.813873291015625, 1.265452980995235 ], [ 103.813400268554787, 1.265643954277039 ], [ 103.812988281250057, 1.26589298248291 ], [ 103.812591552734432, 1.266123056411743 ], [ 103.812225341796932, 1.266360044479484 ], [ 103.811828613281307, 1.266484975814819 ], [ 103.811485290527443, 1.266455054283256 ], [ 103.811149597167912, 1.266268968582267 ], [ 103.810859680175838, 1.265974998474064 ], [ 103.810592651367188, 1.26560997962963 ], [ 103.810279846191463, 1.265277028083801 ], [ 103.809997558593693, 1.264999032020683 ], [ 103.809722900390682, 1.265001058578605 ], [ 103.8094482421875, 1.264722943306083 ], [ 103.809165954589901, 1.265001058578605 ], [ 103.808891296386719, 1.264999032020683 ], [ 103.808609008789176, 1.265277028083801 ], [ 103.807502746582145, 1.265277028083801 ], [ 103.806663513183651, 1.264444947242794 ], [ 103.806663513183651, 1.263888955116329 ], [ 103.806114196777401, 1.263332962989807 ], [ 103.805686950683636, 1.263332962989807 ], [ 103.805313110351619, 1.263327956199646 ], [ 103.804992675781364, 1.263331055641231 ], [ 103.804672241210938, 1.263337969780025 ], [ 103.804328918457031, 1.26339495182043 ], [ 103.803993225097713, 1.263587951660213 ], [ 103.803565979003906, 1.26379299163824 ], [ 103.803062438964886, 1.264016985893193 ], [ 103.802513122558693, 1.264338016510066 ], [ 103.801986694335866, 1.264780044555721 ], [ 103.801483154296861, 1.265290975570679 ], [ 103.801017761230582, 1.265810012817496 ], [ 103.800582885742244, 1.26627504825592 ], [ 103.800247192382926, 1.266705989837703 ], [ 103.799972534179744, 1.267096042633113 ], [ 103.79965972900402, 1.267385005950928 ], [ 103.799247741699276, 1.267570018768424 ], [ 103.798889160156364, 1.267776966095084 ], [ 103.798614501953125, 1.268054962158203 ], [ 103.798057556152401, 1.268054962158203 ], [ 103.797775268554801, 1.267776966095084 ], [ 103.797500610351619, 1.267776966095084 ], [ 103.797225952148381, 1.267498970031738 ], [ 103.796669006347656, 1.268054962158203 ], [ 103.796386718750057, 1.268054962158203 ], [ 103.795829772949332, 1.268612027168331 ], [ 103.795555114746094, 1.268612027168331 ], [ 103.795280456543082, 1.268890023231506 ], [ 103.794998168945312, 1.268890023231506 ], [ 103.794441223144588, 1.269446015357971 ], [ 103.793609619140625, 1.269443035125732 ], [ 103.793334960937543, 1.269721031189022 ], [ 103.793052673339844, 1.269721031189022 ], [ 103.792503356933594, 1.270277976989803 ], [ 103.792221069336051, 1.270277976989803 ], [ 103.791946411132812, 1.270555973052979 ], [ 103.79166412353527, 1.270555973052979 ], [ 103.790557861328125, 1.271666049957332 ], [ 103.790275573730526, 1.271666049957332 ], [ 103.789718627929744, 1.272222042083797 ], [ 103.789443969726562, 1.272222042083797 ], [ 103.789169311523551, 1.272500038146916 ], [ 103.788772583007926, 1.272691011428947 ], [ 103.788352966308651, 1.272814035415649 ], [ 103.787902832031236, 1.273056030273381 ], [ 103.787422180175838, 1.273326992988586 ], [ 103.786926269531179, 1.273586988449154 ], [ 103.786483764648537, 1.273831009864864 ], [ 103.786209106445312, 1.274111032485905 ], [ 103.785858154296932, 1.274252057075614 ], [ 103.785102844238338, 1.274266004562321 ], [ 103.784538269043011, 1.27459895610815 ], [ 103.784149169921918, 1.274948000907955 ], [ 103.783721923828125, 1.275169014930668 ], [ 103.783218383789119, 1.275374054908752 ], [ 103.782669067382926, 1.275617957115287 ], [ 103.782089233398494, 1.275845050811824 ], [ 103.781478881835994, 1.276168942451591 ], [ 103.781005859374943, 1.276705026626644 ], [ 103.780677795410156, 1.277281045913696 ], [ 103.780502319335923, 1.277606964111385 ], [ 103.780281066894531, 1.277778029441776 ], [ 103.779998779296989, 1.277778029441776 ], [ 103.77972412109375, 1.278056025505123 ], [ 103.779441833496207, 1.278056025505123 ], [ 103.778892517089957, 1.278609991073665 ], [ 103.778610229492244, 1.278609991073665 ], [ 103.778335571289006, 1.278890013694763 ], [ 103.778053283691463, 1.278890013694763 ], [ 103.7772216796875, 1.279721975326595 ], [ 103.776947021484489, 1.279721975326595 ], [ 103.776664733886719, 1.279999971389713 ], [ 103.776390075683693, 1.279999971389713 ], [ 103.776107788085938, 1.28027796745306 ], [ 103.775276184081974, 1.28027796745306 ], [ 103.774444580078168, 1.279443979263249 ], [ 103.774444580078168, 1.278334021568241 ], [ 103.773887634277386, 1.277778029441776 ], [ 103.773330688476676, 1.277778029441776 ], [ 103.772781372070426, 1.277222037315482 ], [ 103.772781372070426, 1.276944041252193 ], [ 103.772499084472713, 1.276666045189017 ], [ 103.772224426269474, 1.276666045189017 ], [ 103.771385192871151, 1.275833964347839 ], [ 103.770835876464901, 1.275833964347839 ], [ 103.770835876464901, 1.275555968284664 ], [ 103.769996643066406, 1.274721980094853 ], [ 103.769996643066406, 1.274443984031734 ], [ 103.769447326660213, 1.273890018463192 ], [ 103.768608093261662, 1.273890018463192 ], [ 103.768058776855469, 1.274443984031734 ], [ 103.768058776855469, 1.274721980094853 ], [ 103.767501831054688, 1.275277972221375 ], [ 103.767219543457145, 1.275277972221375 ], [ 103.766944885253906, 1.275555968284664 ], [ 103.766944885253906, 1.276111960411129 ], [ 103.768608093261662, 1.277778029441776 ], [ 103.768608093261662, 1.278056025505123 ], [ 103.768890380859432, 1.278334021568241 ], [ 103.768890380859432, 1.279443979263249 ], [ 103.768280029296861, 1.279400944709721 ], [ 103.767227172851662, 1.279678940773067 ], [ 103.76612091064446, 1.279818058013973 ], [ 103.765640258789119, 1.280097961425895 ], [ 103.765220642089844, 1.28051495552063 ], [ 103.763771057128949, 1.280447006225529 ], [ 103.763557434082074, 1.281002998352051 ], [ 103.762733459472656, 1.28107404708868 ], [ 103.762382507324219, 1.281352043151855 ], [ 103.761001586914062, 1.281352043151855 ], [ 103.760375976562614, 1.281561970710754 ], [ 103.758789062500057, 1.282327055931148 ], [ 103.757820129394588, 1.283164024353027 ], [ 103.757820129394588, 1.283581018447933 ], [ 103.756851196289062, 1.284417033195496 ], [ 103.757263183593807, 1.284764051437378 ], [ 103.757957458496094, 1.284764051437378 ], [ 103.758300781249943, 1.284417033195496 ], [ 103.758369445800781, 1.283651947975216 ], [ 103.760307312011761, 1.282466053962708 ], [ 103.761070251464901, 1.282466053962708 ], [ 103.761619567871094, 1.282883048057613 ], [ 103.762176513671875, 1.282883048057613 ], [ 103.762313842773381, 1.283581018447933 ], [ 103.763702392578125, 1.283651947975216 ], [ 103.763839721679616, 1.283442020416317 ], [ 103.764045715332031, 1.283442020416317 ], [ 103.764320373535213, 1.282883048057613 ], [ 103.763908386230469, 1.282814979553222 ], [ 103.763908386230469, 1.282256960868949 ], [ 103.764183044433707, 1.282188057899589 ], [ 103.764251708984375, 1.281769037246761 ], [ 103.764526367187543, 1.281352043151855 ], [ 103.765083312988324, 1.28128099441534 ], [ 103.765708923339957, 1.280864000320434 ], [ 103.766601562500057, 1.281002998352051 ], [ 103.766601562500057, 1.28128099441534 ], [ 103.766464233398551, 1.281491041183585 ], [ 103.766601562500057, 1.281769037246761 ], [ 103.766952514648438, 1.281769037246761 ], [ 103.767295837402344, 1.28128099441534 ], [ 103.768058776855469, 1.281283974647579 ], [ 103.768402099609489, 1.28107404708868 ], [ 103.768821716308594, 1.28107404708868 ], [ 103.769027709960938, 1.280236959457511 ], [ 103.769165039062614, 1.279999971389713 ], [ 103.769996643066406, 1.280832052230948 ], [ 103.769996643066406, 1.281110048294067 ], [ 103.770278930664162, 1.281388044357413 ], [ 103.770278930664162, 1.281944036483878 ], [ 103.770553588867188, 1.282222986221313 ], [ 103.770553588867188, 1.283053994178885 ], [ 103.770278930664162, 1.283331990242061 ], [ 103.770278930664162, 1.283889055252132 ], [ 103.769721984863381, 1.284445047378654 ], [ 103.769447326660213, 1.284445047378654 ], [ 103.768890380859432, 1.285001039505119 ], [ 103.768608093261662, 1.285001039505119 ], [ 103.768333435058636, 1.285279035568237 ], [ 103.768058776855469, 1.285279035568237 ], [ 103.767776489257855, 1.285555005073604 ], [ 103.767501831054688, 1.285555005073604 ], [ 103.766944885253906, 1.286110997200126 ], [ 103.766670227050895, 1.286110997200126 ], [ 103.766113281250114, 1.286666989326591 ], [ 103.765830993652401, 1.286666989326591 ], [ 103.764999389648438, 1.287500977516174 ], [ 103.764167785644645, 1.287500977516174 ], [ 103.763610839843849, 1.288054943084717 ], [ 103.763336181640625, 1.288054943084717 ], [ 103.760559082031364, 1.290832996368465 ], [ 103.760559082031364, 1.291388988494987 ], [ 103.76027679443358, 1.291666984558105 ], [ 103.76027679443358, 1.293889045715389 ], [ 103.760833740234375, 1.29444599151617 ], [ 103.761108398437557, 1.29444599151617 ], [ 103.761390686035156, 1.294721007347107 ], [ 103.761665344238324, 1.294721007347107 ], [ 103.762222290039105, 1.295276999473572 ], [ 103.762222290039105, 1.295833945274296 ], [ 103.761947631835938, 1.296111941337642 ], [ 103.761634826660213, 1.29654502868658 ], [ 103.761283874511776, 1.296906948089656 ], [ 103.760894775390682, 1.297225952148551 ], [ 103.760513305664119, 1.297538042068481 ], [ 103.760131835937557, 1.297840952873173 ], [ 103.759849548339844, 1.298176050186271 ], [ 103.759513854980469, 1.29839301109314 ], [ 103.759201049804744, 1.298621058464164 ], [ 103.758888244628835, 1.29888999462122 ], [ 103.758613586425838, 1.29888999462122 ], [ 103.758331298828125, 1.299167990684566 ], [ 103.758056640625057, 1.299167990684566 ], [ 103.757499694824318, 1.298611998558101 ], [ 103.757499694824318, 1.298334002494925 ], [ 103.757225036621094, 1.298056006431636 ], [ 103.757225036621094, 1.297778010368461 ], [ 103.756942749023551, 1.297500014305172 ], [ 103.757225036621094, 1.297222018241996 ], [ 103.757225036621094, 1.296664953231868 ], [ 103.756111145019574, 1.295554995536861 ], [ 103.755279541015625, 1.295554995536861 ], [ 103.754997253418026, 1.295276999473572 ], [ 103.752502441406307, 1.295276999473572 ], [ 103.752220153808594, 1.294999003410396 ], [ 103.751663208007812, 1.294999003410396 ], [ 103.751388549804787, 1.295276999473572 ], [ 103.751113891601562, 1.295276999473572 ], [ 103.750831604004006, 1.295554995536861 ], [ 103.750556945800781, 1.295554995536861 ], [ 103.750274658203239, 1.295833945274296 ], [ 103.749725341796804, 1.295833945274296 ], [ 103.749458312988338, 1.296054959297237 ], [ 103.749000549316392, 1.29615497589117 ], [ 103.748558044433707, 1.296378016471863 ], [ 103.748077392578111, 1.296617984771842 ], [ 103.747505187988281, 1.29678201675415 ], [ 103.746948242187543, 1.296942949295044 ], [ 103.746665954589787, 1.296942949295044 ], [ 103.746391296386776, 1.297222018241996 ], [ 103.745834350585994, 1.297222018241996 ], [ 103.745552062988281, 1.297500014305172 ], [ 103.74444580078125, 1.297500014305172 ], [ 103.743888854980526, 1.298056006431636 ], [ 103.742774963378963, 1.298056006431636 ], [ 103.742500305175781, 1.298334002494925 ], [ 103.742225646972713, 1.298334002494925 ], [ 103.741943359374986, 1.298611998558101 ], [ 103.741668701171989, 1.298611998558101 ], [ 103.741386413574205, 1.29888999462122 ], [ 103.740554809570426, 1.29888999462122 ], [ 103.740203857421875, 1.299096941948051 ], [ 103.739700317382869, 1.299222946167049 ], [ 103.739273071289062, 1.299402952194214 ], [ 103.738838195800895, 1.299443960189933 ], [ 103.738403320312543, 1.299445986747685 ], [ 103.737937927246094, 1.299450993537903 ], [ 103.737442016601619, 1.299471020698604 ], [ 103.736938476562443, 1.29946398735052 ], [ 103.736450195312557, 1.299548983573914 ], [ 103.73602294921875, 1.29973495006567 ], [ 103.735679626464844, 1.299936056137028 ], [ 103.735282897949219, 1.299965977668762 ], [ 103.734786987304744, 1.299867987632808 ], [ 103.734024047851619, 1.299847006797791 ], [ 103.733230590820369, 1.300068020820675 ], [ 103.73270416259777, 1.300168037414608 ], [ 103.732223510742188, 1.300050020217895 ], [ 103.731590270996207, 1.300035953521785 ], [ 103.730987548828239, 1.300168037414608 ], [ 103.730552673339886, 1.300487995147819 ], [ 103.730186462402386, 1.300845026969853 ], [ 103.729881286621037, 1.301273941993713 ], [ 103.729675292968864, 1.30186402797699 ], [ 103.729454040527457, 1.302515983581543 ], [ 103.729309082031193, 1.303200006485099 ], [ 103.729164123535142, 1.303609967231864 ], [ 103.729446411132869, 1.303887963294983 ], [ 103.729164123535142, 1.304165959358329 ], [ 103.729164123535142, 1.304721951484794 ], [ 103.727500915527401, 1.306388020515442 ], [ 103.727500915527401, 1.306944012641907 ], [ 103.727218627929616, 1.307222008705253 ], [ 103.727218627929616, 1.309723019599971 ], [ 103.727149963378949, 1.310282945632991 ], [ 103.727149963378949, 1.310770988464412 ], [ 103.727355957031349, 1.311465978622437 ], [ 103.727706909179744, 1.311954021453801 ], [ 103.728256225585994, 1.31292903423315 ], [ 103.728332519531364, 1.313333034515438 ], [ 103.728332519531364, 1.313611030578556 ], [ 103.729164123535142, 1.314445018768367 ], [ 103.729164123535142, 1.314723014831543 ], [ 103.729721069335923, 1.315276980400029 ], [ 103.729721069335923, 1.315554976463375 ], [ 103.730003356933651, 1.31583297252655 ], [ 103.730003356933651, 1.31611096858984 ], [ 103.730552673339886, 1.316666960716304 ], [ 103.730552673339886, 1.31694495677948 ], [ 103.731666564941406, 1.318333029746952 ], [ 103.731941223144645, 1.318611025810298 ], [ 103.732223510742188, 1.318889021873417 ], [ 103.732223510742188, 1.319445013999939 ], [ 103.732498168945369, 1.319720983505306 ], [ 103.732498168945369, 1.320276975631771 ], [ 103.732780456542955, 1.320554971694889 ], [ 103.732780456542955, 1.321668028831482 ], [ 103.732986450195312, 1.322013974189758 ], [ 103.732498168945369, 1.322499036789054 ], [ 103.731941223144645, 1.322499036789054 ], [ 103.731666564941406, 1.322499036789054 ], [ 103.731391906738395, 1.322221040725765 ], [ 103.731391906738395, 1.321943044662589 ], [ 103.731109619140668, 1.321668028831482 ], [ 103.731109619140668, 1.321110963821411 ], [ 103.730552673339886, 1.320554971694889 ], [ 103.730552673339886, 1.320276975631771 ], [ 103.730278015136662, 1.319998979568425 ], [ 103.730278015136662, 1.319720983505306 ], [ 103.730003356933651, 1.319445013999939 ], [ 103.730003356933651, 1.318889021873417 ], [ 103.729721069335923, 1.318611025810298 ], [ 103.729721069335923, 1.318333029746952 ], [ 103.729446411132869, 1.318055033683834 ], [ 103.729164123535142, 1.317916035652274 ], [ 103.728469848632869, 1.317222952842769 ], [ 103.728332519531364, 1.31694495677948 ], [ 103.728057861328182, 1.316666960716304 ], [ 103.728057861328182, 1.316388964653015 ], [ 103.727775573730582, 1.31611096858984 ], [ 103.727775573730582, 1.315554976463375 ], [ 103.727500915527401, 1.315276980400029 ], [ 103.727500915527401, 1.315001010894832 ], [ 103.727218627929616, 1.314723014831543 ], [ 103.727165222168082, 1.314658999443168 ], [ 103.726943969726619, 1.314393043518123 ], [ 103.726593017578239, 1.313905000686759 ], [ 103.72618103027348, 1.313138961792049 ], [ 103.725906372070312, 1.312651038169975 ], [ 103.725837707519645, 1.312023997306824 ], [ 103.725692749023381, 1.311398029327336 ], [ 103.725555419921875, 1.310978055000419 ], [ 103.725555419921875, 1.310351967811528 ], [ 103.725349426269531, 1.309795975685233 ], [ 103.725143432617188, 1.309447050094604 ], [ 103.724998474121094, 1.309165954589844 ], [ 103.724998474121094, 1.308609962463379 ], [ 103.724441528320355, 1.308056950569153 ], [ 103.724441528320355, 1.307778000831718 ], [ 103.724166870117131, 1.307500004768372 ], [ 103.724166870117131, 1.307222008705253 ], [ 103.723892211914119, 1.306944012641907 ], [ 103.723892211914119, 1.305834054946899 ], [ 103.724166870117131, 1.305556058883781 ], [ 103.724166870117131, 1.305277943611258 ], [ 103.724441528320355, 1.304999947547969 ], [ 103.724723815918082, 1.304999947547969 ], [ 103.724998474121094, 1.304721951484794 ], [ 103.725555419921875, 1.304721951484794 ], [ 103.725830078125114, 1.304443955421505 ], [ 103.726028442382926, 1.304222941398734 ], [ 103.726264953613224, 1.303846955299434 ], [ 103.726455688476506, 1.303380012512264 ], [ 103.726676940917969, 1.302914977073613 ], [ 103.726898193359375, 1.302464008331299 ], [ 103.726943969726619, 1.301980018615779 ], [ 103.726936340332074, 1.301558971404972 ], [ 103.72686767578125, 1.301233053207511 ], [ 103.726676940917969, 1.301020979881286 ], [ 103.726402282714957, 1.300869941711426 ], [ 103.726043701171974, 1.300889015197868 ], [ 103.725662231445426, 1.301110029220581 ], [ 103.725204467773494, 1.301385045051688 ], [ 103.724670410156307, 1.301666021347046 ], [ 103.724105834960994, 1.301944017410392 ], [ 103.723571777343864, 1.302214980125427 ], [ 103.723091125488281, 1.30246102809906 ], [ 103.722717285156293, 1.302713990211487 ], [ 103.722396850586051, 1.302901029586906 ], [ 103.722160339355511, 1.303112983703556 ], [ 103.721939086914062, 1.303295016288871 ], [ 103.721664428711051, 1.303333997726497 ], [ 103.721389770507869, 1.303333997726497 ], [ 103.721107482910085, 1.303611993789787 ], [ 103.720558166503892, 1.303611993789787 ], [ 103.720275878906307, 1.303889989852962 ], [ 103.719444274902344, 1.304721951484794 ], [ 103.719444274902344, 1.304999947547969 ], [ 103.718330383300824, 1.306112051010245 ], [ 103.717781066894588, 1.306112051010245 ], [ 103.717498779296818, 1.305834054946899 ], [ 103.717224121093807, 1.305834054946899 ], [ 103.71694183349608, 1.305556058883781 ], [ 103.71694183349608, 1.305277943611258 ], [ 103.717498779296818, 1.304721951484794 ], [ 103.717498779296818, 1.304443955421505 ], [ 103.717781066894588, 1.304165959358329 ], [ 103.718055725097599, 1.304165959358329 ], [ 103.720832824707088, 1.30139005184185 ], [ 103.720558166503892, 1.30111205577856 ], [ 103.720558166503892, 1.300833940506038 ], [ 103.720001220703125, 1.300277948379573 ], [ 103.720001220703125, 1.299721956253109 ], [ 103.719169616699332, 1.29888999462122 ], [ 103.718887329101562, 1.29888999462122 ], [ 103.718612670898551, 1.298611998558101 ], [ 103.718330383300824, 1.29888999462122 ], [ 103.718055725097599, 1.29888999462122 ], [ 103.717781066894588, 1.299167990684566 ], [ 103.717224121093807, 1.299165964126644 ], [ 103.716392517089844, 1.299999952316398 ], [ 103.716110229492301, 1.299999952316398 ], [ 103.715835571289062, 1.300277948379573 ], [ 103.713607788085994, 1.300277948379573 ], [ 103.713333129882812, 1.300555944442692 ], [ 103.713058471679801, 1.300555944442692 ], [ 103.712776184082031, 1.300833940506038 ], [ 103.71250152587902, 1.300833940506038 ], [ 103.71221923828125, 1.30111205577856 ], [ 103.71221923828125, 1.30139005184185 ], [ 103.711944580078239, 1.301666021347046 ], [ 103.711944580078239, 1.302222013473511 ], [ 103.711669921875057, 1.302500009536857 ], [ 103.711669921875057, 1.303887963294983 ], [ 103.711944580078239, 1.304165959358329 ], [ 103.711669921875057, 1.304443955421505 ], [ 103.711669921875057, 1.305834054946899 ], [ 103.710830688476548, 1.306666016578788 ], [ 103.710556030273494, 1.306388020515442 ], [ 103.710281372070312, 1.306390047073421 ], [ 103.70999908447277, 1.306112051010245 ], [ 103.709724426269531, 1.306112051010245 ], [ 103.709442138671989, 1.305834054946899 ], [ 103.709442138671989, 1.305277943611258 ], [ 103.70916748046875, 1.304999947547969 ], [ 103.70916748046875, 1.303056001663322 ], [ 103.709442138671989, 1.302778005600032 ], [ 103.709442138671989, 1.302222013473511 ], [ 103.708610534668026, 1.30139005184185 ], [ 103.708053588867244, 1.30139005184185 ], [ 103.707778930664062, 1.30111205577856 ], [ 103.707496643066463, 1.30111205577856 ], [ 103.707221984863281, 1.300833940506038 ], [ 103.70694732666027, 1.300833940506038 ], [ 103.706542968750057, 1.300869941711426 ], [ 103.706069946289062, 1.301018953323364 ], [ 103.705635070800895, 1.301136970520076 ], [ 103.705307006835938, 1.301331043243522 ], [ 103.704971313476562, 1.301385045051688 ], [ 103.704719543456974, 1.30139005184185 ], [ 103.704170227050781, 1.30139005184185 ], [ 103.703887939453182, 1.30111205577856 ], [ 103.703330993652457, 1.30111205577856 ], [ 103.703056335449219, 1.30139005184185 ], [ 103.702774047851676, 1.30139005184185 ], [ 103.701942443847713, 1.302222013473511 ], [ 103.701942443847713, 1.302500009536857 ], [ 103.701667785644474, 1.302778005600032 ], [ 103.701667785644474, 1.303056001663322 ], [ 103.700836181640668, 1.303889989852962 ], [ 103.700553894042969, 1.303889989852962 ], [ 103.700279235839957, 1.303611993789787 ], [ 103.699996948242188, 1.303611993789787 ], [ 103.699722290039176, 1.303333997726497 ], [ 103.699996948242188, 1.303056001663322 ], [ 103.699996948242188, 1.301666021347046 ], [ 103.699447631835994, 1.30111205577856 ], [ 103.699447631835994, 1.300277948379573 ], [ 103.699165344238395, 1.299999952316398 ], [ 103.699165344238395, 1.299721956253109 ], [ 103.698890686035213, 1.299443960189933 ], [ 103.698333740234432, 1.299443960189933 ], [ 103.69805908203125, 1.299167990684566 ], [ 103.697776794433651, 1.299167990684566 ], [ 103.697219848632926, 1.298611998558101 ], [ 103.695831298828182, 1.298611998558101 ], [ 103.694999694824219, 1.299443960189933 ], [ 103.694999694824219, 1.302778005600032 ], [ 103.695274353027401, 1.303056001663322 ], [ 103.695274353027401, 1.303333997726497 ], [ 103.694725036621136, 1.303889989852962 ], [ 103.693885803222656, 1.303056001663322 ], [ 103.693885803222656, 1.302778005600032 ], [ 103.693611145019645, 1.302500009536857 ], [ 103.693611145019645, 1.301666021347046 ], [ 103.693885803222656, 1.30139005184185 ], [ 103.693885803222656, 1.30111205577856 ], [ 103.694168090820426, 1.300833940506038 ], [ 103.694168090820426, 1.299721956253109 ], [ 103.692222595214901, 1.299721956253109 ], [ 103.691947937011719, 1.299443960189933 ], [ 103.691665649414119, 1.299443960189933 ], [ 103.691299438476619, 1.299200057983398 ], [ 103.690940856933707, 1.29902005195629 ], [ 103.690521240234432, 1.298980951309261 ], [ 103.690155029296932, 1.299077033996695 ], [ 103.689910888671932, 1.299137949943656 ], [ 103.689231872558707, 1.29912900924694 ], [ 103.688621520996151, 1.299044966697636 ], [ 103.688316345214773, 1.299190998077336 ], [ 103.688056945800838, 1.299386978149528 ], [ 103.687721252441506, 1.299414038658199 ], [ 103.687385559082031, 1.299301981925964 ], [ 103.687088012695355, 1.299118041992244 ], [ 103.686729431152443, 1.2989759445191 ], [ 103.685989379882926, 1.298974037170524 ], [ 103.685279846191406, 1.29888999462122 ], [ 103.684997558593793, 1.299167990684566 ], [ 103.683334350586051, 1.299167990684566 ], [ 103.683395385742173, 1.299337029457035 ], [ 103.683677673339957, 1.299962997436523 ], [ 103.683395385742173, 1.300518989563045 ], [ 103.683395385742173, 1.301146030425968 ], [ 103.683120727539176, 1.301566004753113 ], [ 103.683120727539176, 1.302680015564022 ], [ 103.6829833984375, 1.303585052490291 ], [ 103.682426452636719, 1.304072976112366 ], [ 103.681808471679801, 1.304420948028678 ], [ 103.681808471679801, 1.30379498004919 ], [ 103.682083129882798, 1.303236007690487 ], [ 103.682151794433707, 1.302399992942924 ], [ 103.681877136230469, 1.301772952079773 ], [ 103.682289123535199, 1.301007032394409 ], [ 103.682289123535199, 1.2998930215835 ], [ 103.682220458984375, 1.298334002494925 ], [ 103.68111419677733, 1.297222018241996 ], [ 103.680831909179801, 1.297222018241996 ], [ 103.680557250976548, 1.297073006630058 ], [ 103.680198669433651, 1.296936988830566 ], [ 103.679809570312557, 1.296784043312073 ], [ 103.679275512695355, 1.296694993972778 ], [ 103.678756713867301, 1.296687960624695 ], [ 103.678421020507812, 1.296743035316524 ], [ 103.678153991699332, 1.296851992607174 ], [ 103.677825927734318, 1.297003030777034 ], [ 103.677459716796861, 1.297287940979118 ], [ 103.677154541015682, 1.297737002372742 ], [ 103.676818847656364, 1.298181056976318 ], [ 103.676506042480469, 1.298583984375114 ], [ 103.676155090332031, 1.298915028572139 ], [ 103.675796508789119, 1.299203991889954 ], [ 103.675392150878892, 1.299386978149528 ], [ 103.675079345703168, 1.299636960029716 ], [ 103.674812316894517, 1.299906015396118 ], [ 103.674591064453125, 1.300219058990535 ], [ 103.674407958984375, 1.300614953041077 ], [ 103.674270629882869, 1.301031947135982 ], [ 103.674079895019588, 1.301355957985038 ], [ 103.673820495605412, 1.3016020059585 ], [ 103.673492431640625, 1.301789045333976 ], [ 103.67314147949223, 1.302029967308101 ], [ 103.672836303711051, 1.30245399475109 ], [ 103.672531127929673, 1.303012967109794 ], [ 103.672348022460938, 1.303585052490291 ], [ 103.672538757324219, 1.304025053977966 ], [ 103.672698974609375, 1.30438494682312 ], [ 103.672660827636662, 1.304756045341605 ], [ 103.672576904296932, 1.305163979530448 ], [ 103.672363281250057, 1.30545103549963 ], [ 103.672180175781307, 1.305701971054134 ], [ 103.671943664550781, 1.305817961692924 ], [ 103.671646118164119, 1.305834054946899 ], [ 103.671340942382756, 1.305814027786369 ], [ 103.671112060546989, 1.305834054946899 ], [ 103.671112060546989, 1.305556058883781 ], [ 103.670555114746207, 1.304999947547969 ], [ 103.670555114746207, 1.304721951484794 ], [ 103.670280456543011, 1.304443955421505 ], [ 103.670280456543011, 1.303609967231864 ], [ 103.669998168945256, 1.303333997726497 ], [ 103.669998168945256, 1.303056001663322 ], [ 103.669998168945256, 1.302587032318172 ], [ 103.669784545898551, 1.302327036857662 ], [ 103.66972351074223, 1.302068948745728 ], [ 103.669715881347713, 1.301805019378662 ], [ 103.669746398925838, 1.301535964012203 ], [ 103.669860839843736, 1.301269054412898 ], [ 103.670066833496094, 1.301002979278508 ], [ 103.670150756836051, 1.300730943679866 ], [ 103.67024993896483, 1.300477981567439 ], [ 103.670539855957145, 1.300212025642452 ], [ 103.671081542968807, 1.299934029579276 ], [ 103.671676635742301, 1.29964005947113 ], [ 103.672111511230469, 1.299126982688961 ], [ 103.672264099121207, 1.298504948616028 ], [ 103.672477722167898, 1.297994017601013 ], [ 103.672775268554744, 1.297500014305172 ], [ 103.672775268554744, 1.297222018241996 ], [ 103.673057556152273, 1.296942949295044 ], [ 103.673332214355526, 1.296942949295044 ], [ 103.673614501953068, 1.296664953231868 ], [ 103.673889160156307, 1.296664953231868 ], [ 103.675277709960994, 1.295276999473572 ], [ 103.675277709960994, 1.294999003410396 ], [ 103.675552368164062, 1.294721007347107 ], [ 103.675552368164062, 1.293055057525635 ], [ 103.67472076416027, 1.29222297668457 ], [ 103.673889160156307, 1.29222297668457 ], [ 103.673614501953068, 1.292498946189937 ], [ 103.671669006347756, 1.292498946189937 ], [ 103.67138671875, 1.29222297668457 ], [ 103.671112060546989, 1.29222297668457 ], [ 103.670829772949205, 1.291944980621452 ], [ 103.670829772949205, 1.291666984558105 ], [ 103.670555114746207, 1.291388988494987 ], [ 103.670555114746207, 1.291110992431641 ], [ 103.66972351074223, 1.290277004242 ], [ 103.669296264648438, 1.290112972259521 ], [ 103.668914794921861, 1.289829969406185 ], [ 103.668632507324332, 1.28951799869543 ], [ 103.668449401855582, 1.289172053337211 ], [ 103.668266296386832, 1.28883004188549 ], [ 103.668029785156307, 1.288488030433655 ], [ 103.667778015136719, 1.288054943084717 ], [ 103.667503356933707, 1.288054943084717 ], [ 103.667221069335994, 1.287776947021598 ], [ 103.666946411132741, 1.287776947021598 ], [ 103.666389465332031, 1.288333058357239 ], [ 103.666114807128963, 1.288333058357239 ], [ 103.665275573730469, 1.289167046546993 ], [ 103.665000915527457, 1.289167046546993 ], [ 103.664718627929673, 1.289445042610168 ], [ 103.664718627929673, 1.289723038673515 ], [ 103.664443969726676, 1.289999008178711 ], [ 103.664443969726676, 1.290277004242 ], [ 103.663887023925724, 1.290832996368465 ], [ 103.663887023925724, 1.291110992431641 ], [ 103.663055419921932, 1.291944980621452 ], [ 103.66278076171875, 1.291666984558105 ], [ 103.662498474121151, 1.291666984558105 ], [ 103.662223815917955, 1.291388988494987 ], [ 103.660552978515682, 1.291388988494987 ], [ 103.659721374511719, 1.29222297668457 ], [ 103.659721374511719, 1.292498946189937 ], [ 103.660003662109432, 1.292776942253113 ], [ 103.659332275390625, 1.293444991111812 ], [ 103.659164428710938, 1.2936110496521 ], [ 103.658607482910142, 1.293055057525635 ], [ 103.658058166503949, 1.293055057525635 ], [ 103.657501220703168, 1.2936110496521 ], [ 103.657501220703168, 1.293889045715389 ], [ 103.657775878906364, 1.294167041778564 ], [ 103.657775878906364, 1.29444599151617 ], [ 103.658058166503949, 1.294721007347107 ], [ 103.658058166503949, 1.294999003410396 ], [ 103.658607482910142, 1.295554995536861 ], [ 103.658058166503949, 1.296111941337642 ], [ 103.657501220703168, 1.296111941337642 ], [ 103.656669616699219, 1.295276999473572 ], [ 103.656387329101619, 1.295276999473572 ], [ 103.656112670898423, 1.294999003410396 ], [ 103.655830383300895, 1.295276999473572 ], [ 103.655555725097642, 1.295276999473572 ], [ 103.654441833496151, 1.296390056610164 ], [ 103.654441833496151, 1.296664953231868 ], [ 103.654167175292898, 1.296942949295044 ], [ 103.654167175292898, 1.297222018241996 ], [ 103.653610229492188, 1.297778010368461 ], [ 103.653335571289119, 1.297778010368461 ], [ 103.650833129882869, 1.300277948379573 ], [ 103.650833129882869, 1.300555944442692 ], [ 103.648612976074332, 1.302778005600032 ], [ 103.648330688476619, 1.302778005600032 ], [ 103.645553588867301, 1.305556058883781 ], [ 103.645553588867301, 1.305834054946899 ], [ 103.644447326660099, 1.306944012641907 ], [ 103.644165039062557, 1.306944012641907 ], [ 103.644165039062557, 1.307778000831718 ], [ 103.644447326660099, 1.308056950569153 ], [ 103.644447326660099, 1.30833196640026 ], [ 103.645278930664105, 1.309165954589844 ], [ 103.645553588867301, 1.309165954589844 ], [ 103.645835876464844, 1.309445023536682 ], [ 103.647499084472599, 1.309445023536682 ], [ 103.647781372070369, 1.309723019599971 ], [ 103.647781372070369, 1.310001015663147 ], [ 103.648056030273366, 1.310279011726436 ], [ 103.648056030273366, 1.310554027557373 ], [ 103.648330688476619, 1.310832977294978 ], [ 103.648056030273366, 1.311110973358154 ], [ 103.648056030273366, 1.311666965484619 ], [ 103.646942138671875, 1.312777042388973 ], [ 103.646667480468807, 1.312777042388973 ], [ 103.646507263183707, 1.312618970870972 ], [ 103.646385192871094, 1.31250095367443 ], [ 103.646110534668082, 1.31250095367443 ], [ 103.645835876464844, 1.312777042388973 ], [ 103.644721984863338, 1.312777042388973 ], [ 103.644737243652401, 1.310696005821342 ], [ 103.644737243652401, 1.310176014900264 ], [ 103.644393920898551, 1.309617996215877 ], [ 103.643287658691349, 1.308364033699092 ], [ 103.642936706542969, 1.305508017540092 ], [ 103.638923645019517, 1.304465055465698 ], [ 103.638458251953168, 1.305899977684078 ], [ 103.638145446777287, 1.306857943534908 ], [ 103.637222290039048, 1.306390047073421 ], [ 103.636947631836051, 1.306112051010245 ], [ 103.636947631836051, 1.305834054946899 ], [ 103.636665344238281, 1.305556058883781 ], [ 103.636665344238281, 1.305277943611258 ], [ 103.63639068603527, 1.304999947547969 ], [ 103.63639068603527, 1.303611993789787 ], [ 103.6361083984375, 1.303333997726497 ], [ 103.635902404785156, 1.303109049797058 ], [ 103.635635375976676, 1.302850961685294 ], [ 103.635536193847656, 1.302526950836182 ], [ 103.635406494140682, 1.302219986915588 ], [ 103.635292053222599, 1.301903009414616 ], [ 103.635215759277401, 1.301542997360343 ], [ 103.635055541992301, 1.301167011260986 ], [ 103.635009765625057, 1.300711035728455 ], [ 103.635032653808651, 1.300194025039616 ], [ 103.635086059570256, 1.299664974212646 ], [ 103.634735107421875, 1.299167990684566 ], [ 103.634353637695312, 1.298750996589661 ], [ 103.634017944335938, 1.298403978347778 ], [ 103.633811950683594, 1.29803299903881 ], [ 103.633857727050838, 1.297667980194149 ], [ 103.634094238281364, 1.297376036643925 ], [ 103.634468078613381, 1.297178030013981 ], [ 103.634918212890611, 1.296949982643127 ], [ 103.635276794433523, 1.296612977981624 ], [ 103.635467529296804, 1.296267032623404 ], [ 103.635833740234489, 1.296072959900016 ], [ 103.636230468749943, 1.295869946479911 ], [ 103.636642456054673, 1.295672059059143 ], [ 103.637077331543026, 1.295447945594788 ], [ 103.637573242187443, 1.295230031013489 ], [ 103.638130187988395, 1.295045018196163 ], [ 103.638778686523438, 1.294963002205009 ], [ 103.639266967773551, 1.294849038124198 ], [ 103.63962554931652, 1.294636964797974 ], [ 103.639930725097656, 1.294239997863826 ], [ 103.640319824218807, 1.293779969215393 ], [ 103.640762329101676, 1.293411016464177 ], [ 103.641265869140611, 1.293077945709229 ], [ 103.641830444335938, 1.29287505149847 ], [ 103.642349243164006, 1.292677044868526 ], [ 103.642799377441463, 1.292503952980155 ], [ 103.643218994140682, 1.29239904880518 ], [ 103.643867492675724, 1.292202949524039 ], [ 103.644279479980455, 1.291923046112117 ], [ 103.645317077636776, 1.291643977165336 ], [ 103.646148681640568, 1.291296005249137 ], [ 103.646636962890682, 1.291223049163875 ], [ 103.646919250488224, 1.291074991226253 ], [ 103.647323608398438, 1.290971994400081 ], [ 103.647811889648494, 1.290552973747197 ], [ 103.648223876953239, 1.29000997543335 ], [ 103.648460388183594, 1.289553999900818 ], [ 103.648399353027457, 1.289165019989071 ], [ 103.648323059082017, 1.288707017898616 ], [ 103.648178100585994, 1.288210034370479 ], [ 103.648017883300895, 1.287781000137443 ], [ 103.647842407226676, 1.287361979484615 ], [ 103.647727966308594, 1.286932945251579 ], [ 103.647506713867173, 1.286545991897583 ], [ 103.647270202636818, 1.286175012588444 ], [ 103.646965026855469, 1.285902976989803 ], [ 103.646530151367116, 1.285830020904541 ], [ 103.646095275878949, 1.285796046257076 ], [ 103.645606994628906, 1.285738945007324 ], [ 103.644897460937557, 1.285912036895865 ], [ 103.643829345703239, 1.28585505485546 ], [ 103.643066406250114, 1.28599405288702 ], [ 103.642242431640682, 1.28599405288702 ], [ 103.641685485839886, 1.285923957824821 ], [ 103.640022277832145, 1.285923957824821 ], [ 103.639678955078068, 1.286134004592896 ], [ 103.637809753417969, 1.286134004592896 ], [ 103.636772155761832, 1.286203980445919 ], [ 103.63615417480473, 1.286273002624625 ], [ 103.635391235351619, 1.286342978477478 ], [ 103.634216308593807, 1.286412000656242 ], [ 103.632896423339901, 1.286481976509037 ], [ 103.632621765136662, 1.286692023277283 ], [ 103.631164550781293, 1.286692023277283 ], [ 103.629508972168082, 1.286898970603943 ], [ 103.629074096679744, 1.286939978599548 ], [ 103.628639221191406, 1.286947011947689 ], [ 103.628196716308707, 1.286944985389709 ], [ 103.627746582031307, 1.286944985389709 ], [ 103.627220153808707, 1.286944985389709 ], [ 103.626113891601676, 1.286944985389709 ], [ 103.625831604003963, 1.286666989326591 ], [ 103.625274658203182, 1.286666989326591 ], [ 103.625, 1.286944985389709 ], [ 103.624168395996207, 1.286944985389709 ], [ 103.623886108398438, 1.287222981453056 ], [ 103.623336791992188, 1.287222981453056 ], [ 103.622718811035142, 1.287225008010978 ], [ 103.622024536132869, 1.287266016006583 ], [ 103.621505737304801, 1.287490010261536 ], [ 103.621223449707031, 1.287893056869507 ], [ 103.620834350585938, 1.288333058357239 ], [ 103.618331909179673, 1.290832996368465 ], [ 103.618057250976619, 1.290832996368465 ], [ 103.616943359375114, 1.291944980621452 ], [ 103.616943359375114, 1.29222297668457 ], [ 103.616668701171932, 1.292498946189937 ], [ 103.616668701171932, 1.293333053588924 ], [ 103.616943359375114, 1.2936110496521 ], [ 103.616943359375114, 1.294721007347107 ], [ 103.616668701171932, 1.294999003410396 ], [ 103.616668701171932, 1.295554995536861 ], [ 103.616943359375114, 1.296460032463187 ], [ 103.618888854980412, 1.298334002494925 ], [ 103.618980407714901, 1.298624992370719 ], [ 103.619194030761776, 1.299072027206535 ], [ 103.619453430175724, 1.299525976181087 ], [ 103.619720458984432, 1.299988031387443 ], [ 103.619995117187614, 1.300467014312801 ], [ 103.620254516601562, 1.300955057144165 ], [ 103.620468139648438, 1.301452040672302 ], [ 103.620597839355412, 1.301947951316947 ], [ 103.620788574218693, 1.302363038063049 ], [ 103.620841979980469, 1.302783012390194 ], [ 103.620841979980469, 1.303190946579036 ], [ 103.620834350585938, 1.303617000579834 ], [ 103.620834350585938, 1.304101943969783 ], [ 103.620864868164119, 1.304658055305595 ], [ 103.621017456054673, 1.305235028266907 ], [ 103.621269226074276, 1.30576598644268 ], [ 103.621589660644531, 1.306228995323124 ], [ 103.621856689453182, 1.306735038757324 ], [ 103.622062683105511, 1.307297945022583 ], [ 103.622314453124943, 1.307767033577079 ], [ 103.622489929199332, 1.308213949203548 ], [ 103.622634887695369, 1.30872201919567 ], [ 103.622795104980511, 1.30919194221508 ], [ 103.622947692871094, 1.309679031372184 ], [ 103.623161315918011, 1.310130953788814 ], [ 103.623321533203111, 1.310601949691886 ], [ 103.623451232910099, 1.31109702587122 ], [ 103.623626708984489, 1.311589002609367 ], [ 103.623878479003906, 1.312036037445182 ], [ 103.624145507812557, 1.312471032142639 ], [ 103.624435424804688, 1.312880992889461 ], [ 103.624702453613338, 1.313320994377136 ], [ 103.624908447265682, 1.313827037811279 ], [ 103.625038146972656, 1.314419984817448 ], [ 103.625274658203182, 1.314946055412349 ], [ 103.625503540039176, 1.315454959869442 ], [ 103.625602722167955, 1.316017985344047 ], [ 103.625808715820312, 1.316526055335999 ], [ 103.625961303710938, 1.317070960998592 ], [ 103.626136779785099, 1.317607998848018 ], [ 103.626388549804688, 1.318114042282161 ], [ 103.626663208007926, 1.318626999855155 ], [ 103.626930236816406, 1.319162964820862 ], [ 103.627166748046932, 1.319725990295467 ], [ 103.627365112304744, 1.320291042327824 ], [ 103.627532958984375, 1.320827007293758 ], [ 103.627777099609432, 1.321254968643302 ], [ 103.628005981445426, 1.321648955345267 ], [ 103.628120422363338, 1.322070956230164 ], [ 103.628273010253906, 1.322410941124076 ], [ 103.628250122070298, 1.322823047637996 ], [ 103.628059387207031, 1.323384046554622 ], [ 103.627937316894574, 1.323979020118713 ], [ 103.628227233886662, 1.32459199428564 ], [ 103.628631591796875, 1.325042963027954 ], [ 103.628906250000043, 1.325515031814689 ], [ 103.629173278808537, 1.325942993164062 ], [ 103.629447937011776, 1.326364994049186 ], [ 103.629722595214957, 1.326791048049927 ], [ 103.629966735839844, 1.327232956886405 ], [ 103.630119323730568, 1.327736973762626 ], [ 103.630302429199332, 1.32820200920105 ], [ 103.630538940429688, 1.328619003295955 ], [ 103.630729675292969, 1.32905900478363 ], [ 103.630912780761719, 1.329530954361019 ], [ 103.631095886230412, 1.330042958259696 ], [ 103.631240844726662, 1.330618023872432 ], [ 103.631347656249986, 1.331298947334403 ], [ 103.631591796875057, 1.331905007362309 ], [ 103.631698608398438, 1.332434058189449 ], [ 103.631874084472656, 1.332895040512199 ], [ 103.631935119628963, 1.333369016647339 ], [ 103.631950378418026, 1.333845019340572 ], [ 103.631988525390739, 1.33432400226593 ], [ 103.63217926025402, 1.334776997566223 ], [ 103.632286071777344, 1.335307955741939 ], [ 103.632484436035156, 1.335821032524052 ], [ 103.632675170898438, 1.336369991302604 ], [ 103.632904052734432, 1.336897015571594 ], [ 103.633163452148551, 1.337350010871887 ], [ 103.633369445800724, 1.33778798580164 ], [ 103.633598327636719, 1.338157057762203 ], [ 103.6337890625, 1.338533043861332 ], [ 103.633911132812614, 1.338963985443172 ], [ 103.634078979492244, 1.339390039443913 ], [ 103.634162902832031, 1.340000987052861 ], [ 103.634162902832031, 1.341110944747868 ], [ 103.632774353027457, 1.342499017715568 ], [ 103.632774353027457, 1.343333005905208 ], [ 103.633331298828239, 1.343888998031673 ], [ 103.633331298828239, 1.344166994094962 ], [ 103.633613586425781, 1.344444990158138 ], [ 103.633613586425781, 1.344722986221257 ], [ 103.633888244628963, 1.34499895572668 ], [ 103.633888244628963, 1.34527695178997 ], [ 103.634162902832031, 1.345554947853145 ], [ 103.634162902832031, 1.345832943916434 ], [ 103.634445190429744, 1.346111059188956 ], [ 103.634162902832031, 1.346389055252075 ], [ 103.634162902832031, 1.348333001136893 ], [ 103.633888244628963, 1.348610997200069 ], [ 103.633888244628963, 1.348889946937675 ], [ 103.633613586425781, 1.349167943000793 ], [ 103.633613586425781, 1.34972095489502 ], [ 103.633331298828239, 1.349998950958366 ], [ 103.633331298828239, 1.350278019905147 ], [ 103.633056640625, 1.350556015968323 ], [ 103.633056640625, 1.350834012031612 ], [ 103.633613586425781, 1.351390004158133 ], [ 103.635559082031307, 1.351390004158133 ], [ 103.635696411132812, 1.351529002189693 ], [ 103.635833740234489, 1.351668000221252 ], [ 103.63639068603527, 1.351668000221252 ], [ 103.636665344238281, 1.351943969726619 ], [ 103.636947631836051, 1.351943969726619 ], [ 103.637222290039048, 1.352221965789795 ], [ 103.637496948242244, 1.352221965789795 ], [ 103.638336181640568, 1.351390004158133 ], [ 103.638336181640568, 1.351112008094788 ], [ 103.638610839843793, 1.350834012031612 ], [ 103.638336181640568, 1.350556015968323 ], [ 103.638336181640568, 1.34972095489502 ], [ 103.63944244384777, 1.348610997200069 ], [ 103.639999389648551, 1.348610997200069 ], [ 103.640472412109361, 1.34823298454296 ], [ 103.640953063964957, 1.347838997840825 ], [ 103.641441345214844, 1.347507953643799 ], [ 103.641914367675895, 1.347221016883964 ], [ 103.642349243164006, 1.346948027610836 ], [ 103.642768859863281, 1.346694946289062 ], [ 103.643188476562557, 1.34649395942688 ], [ 103.643478393554631, 1.346220970153922 ] ] ], [ [ [ 103.864997863769517, 1.4375 ], [ 103.864440917968807, 1.4375 ], [ 103.864440917968807, 1.437777996063346 ], [ 103.863609313964844, 1.438609957695007 ], [ 103.863609313964844, 1.439165949821472 ], [ 103.862777709961051, 1.440000057220459 ], [ 103.862220764160256, 1.440278053283748 ], [ 103.862220764160256, 1.441112041473389 ], [ 103.859725952148537, 1.443609952926693 ], [ 103.860000610351562, 1.443887948989868 ], [ 103.860000610351562, 1.446110963821468 ], [ 103.859169006347756, 1.446944952011052 ], [ 103.859169006347756, 1.447777032852287 ], [ 103.85888671875, 1.448055028915405 ], [ 103.85888671875, 1.448333024978751 ], [ 103.856941223144531, 1.450276970863342 ], [ 103.858329772949276, 1.450276970863342 ], [ 103.859443664550781, 1.449723005294857 ], [ 103.859443664550781, 1.449167013168392 ], [ 103.862503051757798, 1.446110963821468 ], [ 103.862503051757798, 1.444723010063285 ], [ 103.865554809570312, 1.441666007041931 ], [ 103.865280151367287, 1.441388010978756 ], [ 103.865837097168068, 1.440834045410213 ], [ 103.865837097168068, 1.440556049346924 ], [ 103.866111755371094, 1.440278053283748 ], [ 103.866111755371094, 1.438055992126465 ], [ 103.864997863769517, 1.437777996063346 ], [ 103.864997863769517, 1.4375 ] ] ], [ [ [ 103.685371398925838, 1.433935046196041 ], [ 103.685089111328125, 1.433725953102226 ], [ 103.684745788574219, 1.433864951133841 ], [ 103.684402465820369, 1.433935046196041 ], [ 103.684188842773494, 1.43428194522852 ], [ 103.684188842773494, 1.434630990028381 ], [ 103.684471130371193, 1.434769988060111 ], [ 103.684974670410213, 1.434860944747982 ], [ 103.685302734375, 1.435191035270691 ], [ 103.685577392578182, 1.435191035270691 ], [ 103.685852050781236, 1.434978961944694 ], [ 103.685920715332088, 1.434630990028381 ], [ 103.685371398925838, 1.433935046196041 ] ] ], [ [ [ 104.058647155761776, 1.432044029235954 ], [ 104.058570861816406, 1.431797981262264 ], [ 104.059150695800781, 1.431838989257869 ], [ 104.059150695800781, 1.431519985198974 ], [ 104.059417724609432, 1.431560993194523 ], [ 104.059402465820369, 1.43126904964447 ], [ 104.059890747070312, 1.43126904964447 ], [ 104.060386657714957, 1.43123900890356 ], [ 104.061088562011776, 1.43126904964447 ], [ 104.061088562011776, 1.430752038955632 ], [ 104.061820983886719, 1.430731058120784 ], [ 104.061935424804801, 1.430672049522457 ], [ 104.063575744628963, 1.430672049522457 ], [ 104.065589904785085, 1.430672049522457 ], [ 104.069046020507798, 1.430050015449467 ], [ 104.071769714355526, 1.429993033409232 ], [ 104.073524475097713, 1.428632020950431 ], [ 104.076416015625114, 1.426337003707886 ], [ 104.079589843750057, 1.423900008201656 ], [ 104.080749511718807, 1.422737956047058 ], [ 104.083618164062557, 1.419335007667655 ], [ 104.085067749023438, 1.415212035179252 ], [ 104.084022521972713, 1.415171027183646 ], [ 104.083259582519588, 1.414754033088741 ], [ 104.083465576171989, 1.414196014404354 ], [ 104.083724975585938, 1.413836002349854 ], [ 104.083602905273494, 1.41375100612646 ], [ 104.08355712890625, 1.413486957550049 ], [ 104.083862304687614, 1.413503050804252 ], [ 104.083847045898537, 1.41320896148693 ], [ 104.08412933349608, 1.41320896148693 ], [ 104.084144592285156, 1.412958025932426 ], [ 104.084419250488395, 1.412917017936707 ], [ 104.084434509277457, 1.412402033805961 ], [ 104.084724426269531, 1.41237294673914 ], [ 104.084709167480455, 1.412094950676021 ], [ 104.084457397460881, 1.412107944488639 ], [ 104.084434509277457, 1.411803007125968 ], [ 104.084678649902344, 1.411816000938416 ], [ 104.084709167480455, 1.411244034767265 ], [ 104.085510253906307, 1.411273956298828 ], [ 104.085556030273551, 1.410437941551265 ], [ 104.085800170898381, 1.410437941551265 ], [ 104.085800170898381, 1.41014397144329 ], [ 104.085540771484432, 1.410130023956356 ], [ 104.085540771484432, 1.409909009933472 ], [ 104.085258483886719, 1.409878969192562 ], [ 104.085235595703054, 1.409309029579163 ], [ 104.08499908447277, 1.409322977066097 ], [ 104.084960937500057, 1.408781051635856 ], [ 104.084678649902344, 1.408781051635856 ], [ 104.084709167480455, 1.408514022827205 ], [ 104.083892822265568, 1.408499956130925 ], [ 104.083877563476676, 1.407930970192069 ], [ 104.083587646484432, 1.40794396400463 ], [ 104.083572387695312, 1.407649993896484 ], [ 104.083045959472713, 1.407652020454407 ], [ 104.083038330078182, 1.407379031181449 ], [ 104.083030700683651, 1.407107949256897 ], [ 104.08332061767571, 1.407107949256897 ], [ 104.083335876464844, 1.407399058342037 ], [ 104.083572387695312, 1.407385945320243 ], [ 104.083625793457088, 1.407153010368347 ], [ 104.083847045898537, 1.407109975814876 ], [ 104.083847045898537, 1.406802058219966 ], [ 104.083602905273494, 1.406818032264823 ], [ 104.083602905273494, 1.406551957130432 ], [ 104.083297729492301, 1.406538009643555 ], [ 104.083282470703239, 1.406008958816585 ], [ 104.083618164062557, 1.406008958816585 ], [ 104.083602905273494, 1.405158996582088 ], [ 104.083007812499986, 1.405145049095211 ], [ 104.083045959472713, 1.403779983520508 ], [ 104.083312988281193, 1.403794050216732 ], [ 104.083297729492301, 1.403516054153442 ], [ 104.083030700683651, 1.403501987457332 ], [ 104.083030700683651, 1.403069019317627 ], [ 104.083023071289119, 1.402956962585563 ], [ 104.082756042480412, 1.402930021286011 ], [ 104.082725524902457, 1.402109980583305 ], [ 104.083045959472713, 1.402109980583305 ], [ 104.083045959472713, 1.401551008224601 ], [ 104.082450866699276, 1.401538014411983 ], [ 104.082450866699276, 1.401286959648189 ], [ 104.082206726074219, 1.401245951652584 ], [ 104.082206726074219, 1.400159001350403 ], [ 104.082481384277386, 1.400145053863469 ], [ 104.082481384277386, 1.399613976478577 ], [ 104.082206726074219, 1.399600028991699 ], [ 104.082176208496037, 1.399350047111511 ], [ 104.081909179687557, 1.399350047111511 ], [ 104.081909179687557, 1.399072051048336 ], [ 104.081909179687557, 1.398597002029419 ], [ 104.081939697265739, 1.398236989975089 ], [ 104.082176208496037, 1.398251056671143 ], [ 104.082191467285142, 1.397943019866943 ], [ 104.081619262695312, 1.397943019866943 ], [ 104.081634521484375, 1.397693037986755 ], [ 104.081359863281364, 1.397678971290702 ], [ 104.081344604492244, 1.396564006805477 ], [ 104.081634521484375, 1.396564006805477 ], [ 104.081634521484375, 1.396286010742188 ], [ 104.081344604492244, 1.39627301692974 ], [ 104.081344604492244, 1.396021962165946 ], [ 104.081085205078125, 1.396005988121089 ], [ 104.081085205078125, 1.395742058754024 ], [ 104.080833435058537, 1.395727992057914 ], [ 104.080802917480582, 1.395158052444571 ], [ 104.0810546875, 1.395185947418156 ], [ 104.081069946289062, 1.394281029701233 ], [ 104.080818176269645, 1.394338011741638 ], [ 104.080802917480582, 1.393795013427791 ], [ 104.080513000488267, 1.393766045570374 ], [ 104.080543518066449, 1.392444014549312 ], [ 104.080291748046875, 1.392400026321525 ], [ 104.08023834228527, 1.392053961753959 ], [ 104.079978942871151, 1.392122030258179 ], [ 104.079986572265668, 1.391803026199455 ], [ 104.079727172851562, 1.391803026199455 ], [ 104.079696655273381, 1.391553044319096 ], [ 104.079406738281307, 1.39153695106512 ], [ 104.079437255859432, 1.391258955001945 ], [ 104.078590393066406, 1.391301989555473 ], [ 104.078552246093693, 1.391021966934204 ], [ 104.078025817871094, 1.391021966934204 ], [ 104.078041076660156, 1.390756964683646 ], [ 104.077751159668082, 1.390756964683646 ], [ 104.077751159668082, 1.391008019447326 ], [ 104.077468872070312, 1.390993952751217 ], [ 104.077468872070312, 1.390756964683646 ], [ 104.076637268066349, 1.390743970871085 ], [ 104.076637268066349, 1.390171051025447 ], [ 104.076904296875, 1.390171051025447 ], [ 104.076919555664119, 1.389893054962101 ], [ 104.076087951660156, 1.389893054962101 ], [ 104.076103210449205, 1.390102982521 ], [ 104.076087951660156, 1.390187025070304 ], [ 104.0755615234375, 1.390143990516776 ], [ 104.0755615234375, 1.390421986579895 ], [ 104.075256347656364, 1.390465974807739 ], [ 104.075271606445426, 1.390715956687927 ], [ 104.074165344238224, 1.39070296287548 ], [ 104.07413482666027, 1.390993952751217 ], [ 104.073875427246136, 1.391008019447326 ], [ 104.073875427246136, 1.391288042068595 ], [ 104.072502136230469, 1.391286015510616 ], [ 104.072486877441392, 1.391566038131714 ], [ 104.071357727050781, 1.391566038131714 ], [ 104.071365356445312, 1.391301989555473 ], [ 104.07023620605473, 1.391286015510616 ], [ 104.070259094238324, 1.390993952751217 ], [ 104.070022583007812, 1.390993952751217 ], [ 104.069992065429673, 1.390887022018546 ], [ 104.069953918457145, 1.390743970871085 ], [ 104.069717407226619, 1.390715956687927 ], [ 104.069664001464901, 1.390452027320862 ], [ 104.069152832031349, 1.390421986579895 ], [ 104.069122314453182, 1.389920949935913 ], [ 104.068878173828125, 1.389937043190116 ], [ 104.06884765625, 1.390171051025447 ], [ 104.068336486816463, 1.390171051025447 ], [ 104.068305969238281, 1.389893054962101 ], [ 104.067756652832088, 1.389879941940364 ], [ 104.067756652832088, 1.389615058898983 ], [ 104.067199707031307, 1.38962900638586 ], [ 104.067192077636776, 1.389323949813899 ], [ 104.066955566406236, 1.389336943626461 ], [ 104.066909790039006, 1.389615058898983 ], [ 104.066665649414105, 1.38962900638586 ], [ 104.066665649414105, 1.389351010322571 ], [ 104.066375732421861, 1.389323949813899 ], [ 104.066345214843679, 1.389073014259395 ], [ 104.065765380859304, 1.389029979705867 ], [ 104.065834045410156, 1.38877904415142 ], [ 104.065544128418082, 1.38877904415142 ], [ 104.065185546875114, 1.388792991638297 ], [ 104.064727783203168, 1.388792991638297 ], [ 104.064682006835938, 1.388501048088074 ], [ 104.064140319824276, 1.38848698139202 ], [ 104.064155578613338, 1.38824999332428 ], [ 104.062744140625, 1.388208985328674 ], [ 104.062759399414062, 1.387958049774227 ], [ 104.062202453613267, 1.387928962707576 ], [ 104.06219482421875, 1.387663960456905 ], [ 104.061904907226676, 1.387663960456905 ], [ 104.06192779541027, 1.387400031089783 ], [ 104.061653137207074, 1.387385964393729 ], [ 104.061653137207074, 1.387680053710881 ], [ 104.061378479003849, 1.387680053710881 ], [ 104.061363220214943, 1.387359023094234 ], [ 104.060791015625114, 1.387385964393729 ], [ 104.060791015625114, 1.386829972267265 ], [ 104.060012817382926, 1.386832952499503 ], [ 104.060005187988381, 1.386566042900199 ], [ 104.059165954589844, 1.386551976203918 ], [ 104.059181213378963, 1.386260986328182 ], [ 104.05859375, 1.386288046836853 ], [ 104.05859375, 1.385995984077454 ], [ 104.057975769042969, 1.385995984077454 ], [ 104.058059692382855, 1.385745048523006 ], [ 104.057449340820312, 1.385745048523006 ], [ 104.05747985839848, 1.385187029838562 ], [ 104.056961059570426, 1.385172963142509 ], [ 104.056907653808651, 1.384922981262321 ], [ 104.056655883789062, 1.384852051735038 ], [ 104.056655883789062, 1.384281992912292 ], [ 104.056396484375114, 1.384310007095451 ], [ 104.056381225586051, 1.383752942085323 ], [ 104.056106567382812, 1.383767008781376 ], [ 104.056091308593736, 1.383515954017753 ], [ 104.055549621582088, 1.383489012718258 ], [ 104.0555419921875, 1.382706999778861 ], [ 104.055274963378849, 1.382680058479366 ], [ 104.055259704589957, 1.382151007652396 ], [ 104.0555419921875, 1.382107973098869 ], [ 104.055549621582088, 1.381844043731803 ], [ 104.054420471191463, 1.381844043731803 ], [ 104.054420471191463, 1.38175201416027 ], [ 104.054428100585994, 1.381564974784851 ], [ 104.053863525390668, 1.381579041481075 ], [ 104.053894042968849, 1.381858944892997 ], [ 104.053604125976562, 1.381858944892997 ], [ 104.053596496582017, 1.381672978401184 ], [ 104.0535888671875, 1.381301045417729 ], [ 104.05332183837902, 1.381301045417729 ], [ 104.05332183837902, 1.381036996841488 ], [ 104.05192565917973, 1.381008982658329 ], [ 104.051940917968807, 1.380743026733512 ], [ 104.050262451171932, 1.380728960037288 ], [ 104.050277709961051, 1.381538033485526 ], [ 104.050018310546932, 1.381551980972404 ], [ 104.04998779296875, 1.381788969039974 ], [ 104.049751281738224, 1.38185703754425 ], [ 104.049751281738224, 1.382138013839778 ], [ 104.049423217773438, 1.382179021835384 ], [ 104.049446105957088, 1.382331013679561 ], [ 104.049171447753849, 1.382401943206844 ], [ 104.049186706542912, 1.382680058479366 ], [ 104.048843383789062, 1.382680058479366 ], [ 104.048896789550838, 1.382930994033813 ], [ 104.048606872558537, 1.382943987846431 ], [ 104.048622131347656, 1.383502960205135 ], [ 104.048324584960994, 1.383515954017753 ], [ 104.048339843750057, 1.38407301902771 ], [ 104.048049926757812, 1.38407301902771 ], [ 104.048049926757812, 1.384323000907841 ], [ 104.047760009765682, 1.384364008903617 ], [ 104.047760009765682, 1.384631037712097 ], [ 104.047195434570355, 1.384644985199031 ], [ 104.047195434570355, 1.384909033775443 ], [ 104.046928405761719, 1.384909033775443 ], [ 104.046928405761719, 1.385450959205627 ], [ 104.046684265136832, 1.38546705245983 ], [ 104.046653747558707, 1.386036992073059 ], [ 104.046943664550781, 1.386036992073059 ], [ 104.046928405761719, 1.386260986328182 ], [ 104.04666900634777, 1.3862739801408 ], [ 104.046623229980526, 1.386566042900199 ], [ 104.046127319335881, 1.386551976203918 ], [ 104.046089172363395, 1.386845946311951 ], [ 104.045532226562614, 1.386829972267265 ], [ 104.045547485351506, 1.387611985206661 ], [ 104.045562744140568, 1.388211011886654 ], [ 104.044456481933594, 1.388252019882202 ], [ 104.04443359375, 1.388795018196106 ], [ 104.044143676757869, 1.388795018196106 ], [ 104.044158935546918, 1.389073014259395 ], [ 104.043769836425838, 1.38908696174633 ], [ 104.043899536132812, 1.389881968498287 ], [ 104.043609619140724, 1.389922976493892 ], [ 104.043609619140724, 1.390117049217281 ], [ 104.043289184570298, 1.390174031257686 ], [ 104.043327331542969, 1.391037940979061 ], [ 104.042732238769531, 1.391023993492126 ], [ 104.042778015136776, 1.391301989555473 ], [ 104.042503356933523, 1.391301989555473 ], [ 104.042503356933523, 1.391553044319096 ], [ 104.042236328125057, 1.391579985618648 ], [ 104.04222106933598, 1.392125010490417 ], [ 104.041931152343693, 1.392138004303035 ], [ 104.041931152343693, 1.392403006553764 ], [ 104.0413818359375, 1.392403006553764 ], [ 104.041366577148381, 1.392694950103817 ], [ 104.041091918945369, 1.392694950103817 ], [ 104.041091918945369, 1.39296102523798 ], [ 104.040824890136719, 1.392958998680228 ], [ 104.040840148925781, 1.393226027488708 ], [ 104.04056549072277, 1.393210053443852 ], [ 104.040550231933707, 1.394325971603337 ], [ 104.040298461914119, 1.394323945045585 ], [ 104.040298461914119, 1.395133018493652 ], [ 104.041366577148381, 1.395174026489201 ], [ 104.041366577148381, 1.395452022552547 ], [ 104.041091918945369, 1.395424962043876 ], [ 104.041091918945369, 1.395732998847961 ], [ 104.040809631347656, 1.395732998847961 ], [ 104.040824890136719, 1.396038055419922 ], [ 104.040283203125, 1.396038055419922 ], [ 104.040260314941406, 1.395815014839286 ], [ 104.040267944335938, 1.395704984664974 ], [ 104.040092468261719, 1.395704984664974 ], [ 104.039970397949332, 1.395676016807499 ], [ 104.039970397949332, 1.395370006561393 ], [ 104.039978027343864, 1.395231008529663 ], [ 104.039718627929744, 1.39516103267681 ], [ 104.039154052734432, 1.395174026489201 ], [ 104.039154052734432, 1.395272016525382 ], [ 104.039161682128963, 1.395550012588558 ], [ 104.039161682128963, 1.395719051361198 ], [ 104.038337707519531, 1.395719051361198 ], [ 104.038322448730469, 1.396023988723869 ], [ 104.038032531738338, 1.396023988723869 ], [ 104.038070678711051, 1.397668004036007 ], [ 104.037780761718736, 1.397654056549129 ], [ 104.037765502929688, 1.398239970207328 ], [ 104.037506103515739, 1.39821195602417 ], [ 104.037506103515739, 1.398530960083065 ], [ 104.037223815917969, 1.398489952087516 ], [ 104.037239074707088, 1.39960503578186 ], [ 104.036949157714957, 1.399631977081356 ], [ 104.036933898925895, 1.400719046592769 ], [ 104.036643981933594, 1.400706052780151 ], [ 104.036643981933594, 1.401304960250968 ], [ 104.036384582519645, 1.401275038719234 ], [ 104.036384582519645, 1.401556015014591 ], [ 104.035827636718693, 1.401522040367183 ], [ 104.035827636718693, 1.401604056358337 ], [ 104.035812377929801, 1.402102947235164 ], [ 104.035575866699261, 1.402119040489197 ], [ 104.035530090332074, 1.402397036552543 ], [ 104.035285949707017, 1.402410030364933 ], [ 104.035255432128849, 1.402675032615662 ], [ 104.035018920898551, 1.402675032615662 ], [ 104.035003662109432, 1.402925968170166 ], [ 104.034454345703239, 1.402938961982727 ], [ 104.034423828125057, 1.402716040611267 ], [ 104.034164428710923, 1.402688980102596 ], [ 104.034149169921875, 1.403246998786983 ], [ 104.033042907714901, 1.403175950050297 ], [ 104.033058166503949, 1.40378904342657 ], [ 104.032501220703182, 1.403761982917899 ], [ 104.032463073730469, 1.404026031494141 ], [ 104.03224945068358, 1.404026031494141 ], [ 104.032241821289062, 1.404361009597892 ], [ 104.031120300292969, 1.404361009597892 ], [ 104.031112670898438, 1.404592037200985 ], [ 104.030570983886776, 1.404621005058402 ], [ 104.030555725097656, 1.40488600730896 ], [ 104.030265808105582, 1.40488600730896 ], [ 104.030281066894645, 1.405441999435425 ], [ 104.030006408691463, 1.405454993248043 ], [ 104.029991149902401, 1.405706048011836 ], [ 104.02970123291027, 1.405706048011836 ], [ 104.02970123291027, 1.405984044075012 ], [ 104.029449462890682, 1.406000018119869 ], [ 104.02946472167973, 1.406263947486934 ], [ 104.029159545898381, 1.406263947486934 ], [ 104.029144287109318, 1.406584024429321 ], [ 104.028869628906307, 1.406584024429321 ], [ 104.028869628906307, 1.407114982605037 ], [ 104.028327941894588, 1.407114982605037 ], [ 104.028343200683707, 1.407727956771907 ], [ 104.028343200683707, 1.408337950706596 ], [ 104.028350830078239, 1.408645987510624 ], [ 104.02838897705071, 1.408758044242916 ], [ 104.028861999511761, 1.408828973770198 ], [ 104.028861999511761, 1.409286975860709 ], [ 104.029174804687486, 1.409343957901115 ], [ 104.029151916503849, 1.409872055053768 ], [ 104.029472351074276, 1.409886002540702 ], [ 104.029472351074276, 1.410150051116943 ], [ 104.029716491699162, 1.410207033157349 ], [ 104.029693603515739, 1.410415053367672 ], [ 104.029998779296932, 1.410457968711796 ], [ 104.030006408691463, 1.410694956779537 ], [ 104.030021667480511, 1.411237955093441 ], [ 104.030288696289006, 1.411265015602112 ], [ 104.03025054931652, 1.411864042282104 ], [ 104.030258178711051, 1.412101030349845 ], [ 104.030265808105582, 1.412186026573238 ], [ 104.030273437500114, 1.412297010421867 ], [ 104.030273437500114, 1.412379026413021 ], [ 104.030532836914062, 1.412379026413021 ], [ 104.030853271484489, 1.412392973899898 ], [ 104.030838012695426, 1.412531971931457 ], [ 104.030815124511832, 1.412785053253231 ], [ 104.030853271484489, 1.412965059280396 ], [ 104.031105041503906, 1.412950992584285 ], [ 104.03108978271483, 1.413383960723877 ], [ 104.027893066406293, 1.412811994552726 ], [ 104.027763366699332, 1.414453029632625 ], [ 104.027824401855412, 1.415402054786739 ], [ 104.027839660644517, 1.415639042854309 ], [ 104.029365539550767, 1.415478944778556 ], [ 104.02991485595696, 1.415693044662532 ], [ 104.030677795410099, 1.415554046630916 ], [ 104.031158447265682, 1.415693044662532 ], [ 104.031150817871151, 1.415771007537955 ], [ 104.031074523925781, 1.416280984878654 ], [ 104.030838012695426, 1.416280984878654 ], [ 104.030830383300881, 1.416376948356742 ], [ 104.030815124511832, 1.416545987129211 ], [ 104.030616760253963, 1.416602969169617 ], [ 104.030548095703125, 1.416852951049805 ], [ 104.030395507812557, 1.416852951049805 ], [ 104.030273437500114, 1.416864991188106 ], [ 104.030258178711051, 1.417060971260128 ], [ 104.030296325683537, 1.417368054390067 ], [ 104.030258178711051, 1.417701005935669 ], [ 104.030258178711051, 1.417951941490116 ], [ 104.029998779296932, 1.417951941490116 ], [ 104.029998779296932, 1.418761014938354 ], [ 104.029846191406307, 1.418774962425289 ], [ 104.029693603515739, 1.41880202293396 ], [ 104.02970123291027, 1.418885946273861 ], [ 104.029716491699162, 1.419024944305477 ], [ 104.029609680175838, 1.419052958488407 ], [ 104.029441833496136, 1.419052958488407 ], [ 104.029441833496136, 1.419581055641288 ], [ 104.029548645019531, 1.419581055641288 ], [ 104.029716491699162, 1.4196519851684 ], [ 104.029716491699162, 1.419875025749263 ], [ 104.029594421386719, 1.419916033744869 ], [ 104.029441833496136, 1.419916033744869 ], [ 104.029434204101619, 1.420014977455139 ], [ 104.029426574707088, 1.42014002799999 ], [ 104.029273986816463, 1.42014002799999 ], [ 104.029174804687486, 1.420153975486869 ], [ 104.029151916503849, 1.420333981514034 ], [ 104.029136657714957, 1.420794010162467 ], [ 104.029151916503849, 1.421183943748474 ], [ 104.029151916503849, 1.421447992324943 ], [ 104.029098510742301, 1.421545982360897 ], [ 104.028984069824219, 1.421545982360897 ], [ 104.028884887695369, 1.421560049057007 ], [ 104.028900146484432, 1.421655058860779 ], [ 104.028915405273537, 1.421810030937195 ], [ 104.028915405273537, 1.422019958496037 ], [ 104.02883148193358, 1.422117948532218 ], [ 104.028610229492188, 1.422117948532218 ], [ 104.02862548828125, 1.422494053840751 ], [ 104.028610229492188, 1.422673940658512 ], [ 104.028610229492188, 1.422924995422363 ], [ 104.028640747070312, 1.423153042793388 ], [ 104.028808593749986, 1.423205018043632 ], [ 104.028846740722713, 1.423267006874028 ], [ 104.028930664062614, 1.423385024070797 ], [ 104.028930664062614, 1.423650026321468 ], [ 104.02883148193358, 1.423761010170097 ], [ 104.02872467041027, 1.423789024353084 ], [ 104.028594970703125, 1.423802018165645 ], [ 104.028594970703125, 1.423900008201656 ], [ 104.028610229492188, 1.424263000488395 ], [ 104.028610229492188, 1.424499988555965 ], [ 104.02862548828125, 1.424805045127982 ], [ 104.028594970703125, 1.424890041351375 ], [ 104.028808593749986, 1.424875974655265 ], [ 104.028900146484432, 1.424890041351375 ], [ 104.028900146484432, 1.425197005271968 ], [ 104.028861999511761, 1.425447940826416 ], [ 104.029029846191406, 1.425470948219356 ], [ 104.029174804687486, 1.425470948219356 ], [ 104.029182434082031, 1.425734996795654 ], [ 104.029777526855455, 1.42570805549633 ], [ 104.029708862304787, 1.425971984863395 ], [ 104.030288696289006, 1.425999999046326 ], [ 104.03025054931652, 1.425430059432983 ], [ 104.030830383300881, 1.425443053245601 ], [ 104.030830383300881, 1.425122022628898 ], [ 104.0322265625, 1.425151944160461 ], [ 104.032203674316349, 1.424885034561157 ], [ 104.03275299072277, 1.424885034561157 ], [ 104.03275299072277, 1.425179004669133 ], [ 104.035842895507798, 1.425165057182425 ], [ 104.035812377929801, 1.424885034561157 ], [ 104.036674499511776, 1.424885034561157 ], [ 104.036674499511776, 1.425151944160461 ], [ 104.036964416503849, 1.425135970115662 ], [ 104.036918640136818, 1.425443053245601 ], [ 104.037460327148494, 1.425443053245601 ], [ 104.037475585937557, 1.425179004669133 ], [ 104.037734985351506, 1.425165057182425 ], [ 104.037765502929688, 1.42541599273693 ], [ 104.038040161132869, 1.425443053245601 ], [ 104.038040161132869, 1.425693988800049 ], [ 104.038619995117244, 1.425734996795654 ], [ 104.038619995117244, 1.425971984863395 ], [ 104.039146423339886, 1.425986051559448 ], [ 104.039131164550781, 1.426249980926513 ], [ 104.040008544921989, 1.426280021667424 ], [ 104.039978027343864, 1.427086949348563 ], [ 104.040542602539176, 1.427114009857234 ], [ 104.040573120117301, 1.427672028541679 ], [ 104.041656494140682, 1.427685976028556 ], [ 104.041656494140682, 1.428508996963501 ], [ 104.041969299316406, 1.428508996963501 ], [ 104.041931152343693, 1.428786993026847 ], [ 104.041641235351605, 1.428786993026847 ], [ 104.041656494140682, 1.429664015769958 ], [ 104.04222106933598, 1.429636955261287 ], [ 104.042190551757798, 1.429873943328857 ], [ 104.042495727539006, 1.429901003837529 ], [ 104.04245758056652, 1.430166006088257 ], [ 104.042793273925838, 1.430176973342952 ], [ 104.043952941894588, 1.430176973342952 ], [ 104.04496002197277, 1.430176973342952 ], [ 104.045860290527386, 1.430091023445243 ], [ 104.046562194824219, 1.430199980735892 ], [ 104.047348022460994, 1.430222988128662 ], [ 104.04837799072277, 1.429891943931636 ], [ 104.048995971679631, 1.429782986640987 ], [ 104.049476623535213, 1.429739952087459 ], [ 104.050773620605469, 1.429695963859672 ], [ 104.052238464355412, 1.42965304851532 ], [ 104.053337097168068, 1.429872035980281 ], [ 104.054054260253963, 1.430289030075187 ], [ 104.054542541503892, 1.430878996849117 ], [ 104.054580688476562, 1.431427955627441 ], [ 104.055023193359432, 1.431777000427246 ], [ 104.055923461914062, 1.431866049766541 ], [ 104.057670593261761, 1.431887030601558 ], [ 104.057815551757812, 1.431977987289429 ], [ 104.05816650390625, 1.432044029235954 ], [ 104.058334350585881, 1.432086944580078 ], [ 104.058441162109432, 1.432114005088749 ], [ 104.058647155761776, 1.432044029235954 ] ] ], [ [ [ 103.882675170898366, 1.418387055396977 ], [ 103.882362365722713, 1.418105006217957 ], [ 103.882102966308537, 1.41789698600769 ], [ 103.881637573242244, 1.417672038078422 ], [ 103.881309509277443, 1.417780995369071 ], [ 103.880905151367301, 1.417958974838257 ], [ 103.88043212890625, 1.418086051940861 ], [ 103.880119323730526, 1.418205022811889 ], [ 103.880012512207031, 1.418244004249516 ], [ 103.879486083984375, 1.418167948722839 ], [ 103.878967285156307, 1.418254971504211 ], [ 103.878425598144631, 1.41868102550518 ], [ 103.877914428710938, 1.419077992439327 ], [ 103.877494812011832, 1.419435977935848 ], [ 103.877136230468693, 1.419752001762333 ], [ 103.876770019531236, 1.420014977455139 ], [ 103.87642669677733, 1.42028105258953 ], [ 103.876106262207088, 1.420580029487667 ], [ 103.875823974609361, 1.420940041542167 ], [ 103.875549316406307, 1.421301960945243 ], [ 103.875259399414062, 1.421648979187125 ], [ 103.874961853027401, 1.42196094989788 ], [ 103.874664306640568, 1.422279953956604 ], [ 103.874389648437543, 1.42260396480566 ], [ 103.87409210205071, 1.422916054725647 ], [ 103.873779296875057, 1.423230051994381 ], [ 103.873435974121151, 1.423542976379451 ], [ 103.873039245605526, 1.423846006393489 ], [ 103.872573852539048, 1.424139976501465 ], [ 103.872055053710938, 1.42445898056036 ], [ 103.871421813964773, 1.424769043922367 ], [ 103.870689392089844, 1.425070047378483 ], [ 103.869987487793026, 1.425475001335258 ], [ 103.869628906250057, 1.425847053527889 ], [ 103.869422912597713, 1.426293969154358 ], [ 103.86924743652348, 1.426738023757935 ], [ 103.869400024414105, 1.427209973335266 ], [ 103.869544982910156, 1.427736043929997 ], [ 103.869796752929744, 1.428231000900382 ], [ 103.870178222656307, 1.428639054298344 ], [ 103.870559692382855, 1.429039955139274 ], [ 103.870971679687543, 1.429409027099609 ], [ 103.871429443359375, 1.429712057113704 ], [ 103.871902465820369, 1.429977059364376 ], [ 103.872314453125099, 1.430274963378906 ], [ 103.872688293457088, 1.430570960044861 ], [ 103.873046875000057, 1.430871963500977 ], [ 103.873413085937557, 1.431166052818298 ], [ 103.873840332031349, 1.431398987770194 ], [ 103.874267578124943, 1.431614995002747 ], [ 103.874763488769588, 1.431705951690788 ], [ 103.875236511230412, 1.431871056556702 ], [ 103.875701904296918, 1.43193697929388 ], [ 103.876174926757756, 1.431946039199943 ], [ 103.876640319824276, 1.431918025016784 ], [ 103.877090454101662, 1.431802034378165 ], [ 103.877548217773438, 1.43169295787817 ], [ 103.878028869628949, 1.431669950485172 ], [ 103.878501892089844, 1.431663036346436 ], [ 103.878959655761776, 1.431612968444938 ], [ 103.879371643066506, 1.431427955627441 ], [ 103.879806518554631, 1.431287050247306 ], [ 103.880195617675724, 1.431084036827144 ], [ 103.880584716796875, 1.430830955505371 ], [ 103.8809814453125, 1.430556058883667 ], [ 103.881393432617188, 1.43027305603033 ], [ 103.881813049316449, 1.429983019828853 ], [ 103.882202148437543, 1.429671049118099 ], [ 103.882606506347713, 1.429358959197998 ], [ 103.883056640624943, 1.429103970527592 ], [ 103.883506774902401, 1.428854942321721 ], [ 103.883934020996151, 1.428576946258602 ], [ 103.884384155273381, 1.428316950798034 ], [ 103.884841918945369, 1.428055047988948 ], [ 103.885322570800895, 1.427809000015259 ], [ 103.885856628418082, 1.427618026733455 ], [ 103.886306762695312, 1.427364945411682 ], [ 103.886657714843864, 1.427005052566585 ], [ 103.88700103759777, 1.426640033721924 ], [ 103.887397766113381, 1.426360011100826 ], [ 103.887756347656307, 1.426085948944205 ], [ 103.888031005859375, 1.425840020179749 ], [ 103.888137817382869, 1.425588965415955 ], [ 103.887710571289105, 1.425042033195552 ], [ 103.887260437011719, 1.424540996551514 ], [ 103.886932373046875, 1.424152970314083 ], [ 103.886665344238224, 1.423820972442741 ], [ 103.886459350586051, 1.42346298694622 ], [ 103.886291503906179, 1.423033952713013 ], [ 103.886085510254006, 1.422574043273926 ], [ 103.885795593261761, 1.422170996665955 ], [ 103.885437011718807, 1.421839952468929 ], [ 103.885055541992244, 1.421481966972351 ], [ 103.884704589843807, 1.421054005622977 ], [ 103.884346008300895, 1.420634031295833 ], [ 103.884040832519517, 1.420199036598149 ], [ 103.883728027343793, 1.419762015342712 ], [ 103.88339996337902, 1.419250965118522 ], [ 103.882980346679744, 1.418671965599117 ], [ 103.882675170898366, 1.418387055396977 ] ] ], [ [ [ 103.977218627929801, 1.425832986831608 ], [ 103.976387023925781, 1.425832986831608 ], [ 103.976387023925781, 1.426110982894954 ], [ 103.975555419921818, 1.426388978958073 ], [ 103.975555419921818, 1.428611040115413 ], [ 103.97615814208983, 1.428915023803768 ], [ 103.976669311523537, 1.429170012474117 ], [ 103.978057861328125, 1.429170012474117 ], [ 103.978889465332088, 1.428889036178703 ], [ 103.978889465332088, 1.427780032158011 ], [ 103.977218627929801, 1.426110982894954 ], [ 103.977218627929801, 1.425832986831608 ] ] ], [ [ [ 103.937225341796818, 1.427638053894043 ], [ 103.936943054199276, 1.427361965179443 ], [ 103.938140869140739, 1.426520943641719 ], [ 103.938163757324162, 1.426396012306213 ], [ 103.938613891601562, 1.426002025604305 ], [ 103.939735412597656, 1.425766944885311 ], [ 103.940444946289176, 1.425766944885311 ], [ 103.941383361816506, 1.425508975982723 ], [ 103.942352294921974, 1.425155997276363 ], [ 103.943115234375114, 1.424919009208793 ], [ 103.945381164550895, 1.424132943153324 ], [ 103.946380615234318, 1.4237979650498 ], [ 103.947685241699332, 1.423071026802063 ], [ 103.951202392578125, 1.421596050262565 ], [ 103.954292297363338, 1.420326948165894 ], [ 103.952781677246151, 1.419306039810181 ], [ 103.953117370605469, 1.419257998466491 ], [ 103.954231262207017, 1.419168949127197 ], [ 103.954788208007798, 1.417497992515564 ], [ 103.955337524413991, 1.417636990547294 ], [ 103.955558776855469, 1.418195962905997 ], [ 103.956390380859418, 1.418195962905997 ], [ 103.956390380859418, 1.417917966842708 ], [ 103.958892822265682, 1.417639970779533 ], [ 103.958900451660213, 1.418566942214966 ], [ 103.959068298339901, 1.418522000312862 ], [ 103.959823608398494, 1.418498992919922 ], [ 103.960762023925824, 1.418380022049064 ], [ 103.961654663085923, 1.418287038803044 ], [ 103.962539672851676, 1.418238997459525 ], [ 103.9630126953125, 1.418287038803044 ], [ 103.963859558105511, 1.418427944183406 ], [ 103.964515686035142, 1.418967962265015 ], [ 103.966667175293026, 1.419306039810181 ], [ 103.96722412109375, 1.419028043747062 ], [ 103.96722412109375, 1.418750047683716 ], [ 103.967781066894531, 1.418750047683716 ], [ 103.967781066894531, 1.419306039810181 ], [ 103.969444274902287, 1.419584035873527 ], [ 103.971664428710994, 1.419584035873527 ], [ 103.972221374511776, 1.419306039810181 ], [ 103.973052978515739, 1.419028043747062 ], [ 103.97360992431652, 1.418750047683716 ], [ 103.97360992431652, 1.418195962905997 ], [ 103.974998474121094, 1.418195962905997 ], [ 103.974998474121094, 1.418750047683716 ], [ 103.976112365722756, 1.418750047683716 ], [ 103.976943969726562, 1.418472051620597 ], [ 103.97715759277348, 1.418038010597343 ], [ 103.977912902832031, 1.41779899597168 ], [ 103.979652404785199, 1.417662024498043 ], [ 103.981163024902401, 1.418208956718445 ], [ 103.983589172363281, 1.418208956718445 ], [ 103.984207153320312, 1.418346047401428 ], [ 103.984375, 1.418750047683716 ], [ 103.985832214355582, 1.418750047683716 ], [ 103.985832214355582, 1.418195962905997 ], [ 103.987503051757869, 1.418195962905997 ], [ 103.987503051757869, 1.418750047683716 ], [ 103.988059997558651, 1.418750047683716 ], [ 103.989723205566406, 1.418195962905997 ], [ 103.990280151367188, 1.417917966842708 ], [ 103.990837097167969, 1.417361974716243 ], [ 103.990837097167969, 1.417083978653068 ], [ 103.991111755371151, 1.416805028915462 ], [ 103.991111755371151, 1.416527032852286 ], [ 103.991668701171932, 1.415971040725822 ], [ 103.991668701171932, 1.415696024894771 ], [ 103.991943359375114, 1.415416955947933 ], [ 103.991943359375114, 1.415138959884644 ], [ 103.991111755371151, 1.414304971695003 ], [ 103.991386413574162, 1.414029002189636 ], [ 103.991386413574162, 1.413195014 ], [ 103.991111755371151, 1.412917017936707 ], [ 103.991111755371151, 1.412639021873531 ], [ 103.990837097167969, 1.412361025810185 ], [ 103.990837097167969, 1.412083029747066 ], [ 103.990554809570369, 1.41180503368372 ], [ 103.990554809570369, 1.411527037620601 ], [ 103.990280151367188, 1.411250948906059 ], [ 103.990837097167969, 1.410694956779537 ], [ 103.990837097167969, 1.410416960716248 ], [ 103.990554809570369, 1.410138964653072 ], [ 103.991668701171932, 1.409582972526607 ], [ 103.991943359375114, 1.40930700302124 ], [ 103.991943359375114, 1.408195018768311 ], [ 103.988609313964901, 1.407917022705135 ], [ 103.985557556152401, 1.407639026641846 ], [ 103.984725952148438, 1.40736103057867 ], [ 103.984169006347656, 1.407083034515324 ], [ 103.984169006347656, 1.406806945800781 ], [ 103.983055114746094, 1.406806945800781 ], [ 103.983055114746094, 1.407083034515324 ], [ 103.982780456543068, 1.40736103057867 ], [ 103.981666564941349, 1.40736103057867 ], [ 103.981666564941349, 1.407083034515324 ], [ 103.980560302734375, 1.407083034515324 ], [ 103.980560302734375, 1.40736103057867 ], [ 103.980003356933594, 1.407917022705135 ], [ 103.978057861328125, 1.407917022705135 ], [ 103.977500915527344, 1.407639026641846 ], [ 103.976669311523537, 1.40736103057867 ], [ 103.976112365722756, 1.407083034515324 ], [ 103.975280761718807, 1.406806945800781 ], [ 103.974723815918011, 1.406528949737663 ], [ 103.973892211914062, 1.406250953674316 ], [ 103.973892211914062, 1.404029011726379 ], [ 103.97360992431652, 1.403751015663204 ], [ 103.972503662109318, 1.403473019599914 ], [ 103.972503662109318, 1.403193950653133 ], [ 103.972221374511776, 1.402915954589957 ], [ 103.971115112304801, 1.402637958526611 ], [ 103.971115112304801, 1.402084946632385 ], [ 103.97027587890625, 1.402084946632385 ], [ 103.97027587890625, 1.402362942695731 ], [ 103.970001220703224, 1.402637958526611 ], [ 103.968887329101506, 1.402637958526611 ], [ 103.968887329101506, 1.402084946632385 ], [ 103.968055725097699, 1.401250004768485 ], [ 103.965835571289006, 1.400972008705139 ], [ 103.961669921875, 1.40069401264202 ], [ 103.961944580078168, 1.400416016578674 ], [ 103.961387634277457, 1.400140047073478 ], [ 103.961387634277457, 1.399862051010189 ], [ 103.957778930664162, 1.399862051010189 ], [ 103.957778930664162, 1.400972008705139 ], [ 103.95611572265625, 1.402637958526611 ], [ 103.955558776855469, 1.402915954589957 ], [ 103.955558776855469, 1.403193950653133 ], [ 103.955001831054688, 1.403751015663204 ], [ 103.955001831054688, 1.404029011726379 ], [ 103.954444885253892, 1.404585003852844 ], [ 103.954444885253892, 1.404860973358211 ], [ 103.953887939453182, 1.405416965484676 ], [ 103.953056335449148, 1.405694961547851 ], [ 103.953056335449148, 1.405972957611198 ], [ 103.952224731445369, 1.406806945800781 ], [ 103.952781677246151, 1.407083034515324 ], [ 103.952781677246151, 1.407639026641846 ], [ 103.952224731445369, 1.408195018768311 ], [ 103.952224731445369, 1.410416960716248 ], [ 103.950836181640682, 1.410416960716248 ], [ 103.950836181640682, 1.409582972526607 ], [ 103.950553894043082, 1.40930700302124 ], [ 103.950553894043082, 1.4084730148316 ], [ 103.950279235839886, 1.408195018768311 ], [ 103.950279235839886, 1.407083034515324 ], [ 103.949447631835938, 1.407083034515324 ], [ 103.949447631835938, 1.40736103057867 ], [ 103.949165344238338, 1.407639026641846 ], [ 103.949165344238338, 1.407917022705135 ], [ 103.948608398437614, 1.4084730148316 ], [ 103.948890686035156, 1.408751010894775 ], [ 103.948890686035156, 1.40930700302124 ], [ 103.948333740234361, 1.409860968589783 ], [ 103.946945190429631, 1.410138964653072 ], [ 103.946945190429631, 1.410416960716248 ], [ 103.946113586425838, 1.411250948906059 ], [ 103.943336486816406, 1.411528944969177 ], [ 103.940559387207088, 1.412917017936707 ], [ 103.940559387207088, 1.413195014 ], [ 103.939170837402344, 1.414582967758179 ], [ 103.939445495605526, 1.414860963821468 ], [ 103.939445495605526, 1.415696024894771 ], [ 103.940002441406307, 1.41597402095806 ], [ 103.941390991211051, 1.417361974716243 ], [ 103.941390991211051, 1.417639970779533 ], [ 103.941108703613338, 1.417917966842708 ], [ 103.940559387207088, 1.417917966842708 ], [ 103.939170837402344, 1.416527032852286 ], [ 103.938613891601562, 1.416249036788997 ], [ 103.937782287597585, 1.41597402095806 ], [ 103.937782287597585, 1.415138959884644 ], [ 103.93527984619152, 1.415138959884644 ], [ 103.93527984619152, 1.415416955947933 ], [ 103.93499755859375, 1.415696024894771 ], [ 103.933891296386776, 1.41597402095806 ], [ 103.933891296386776, 1.416249036788997 ], [ 103.933609008789062, 1.416527032852286 ], [ 103.933609008789062, 1.416805028915462 ], [ 103.933334350585994, 1.417083978653068 ], [ 103.933891296386776, 1.417361974716243 ], [ 103.934165954589773, 1.417639970779533 ], [ 103.934165954589773, 1.417917966842708 ], [ 103.933891296386776, 1.418195962905997 ], [ 103.933609008789062, 1.418195962905997 ], [ 103.932502746582031, 1.417639970779533 ], [ 103.932502746582031, 1.417361974716243 ], [ 103.930274963378963, 1.417361974716243 ], [ 103.930274963378963, 1.417639970779533 ], [ 103.929168701171989, 1.418750047683716 ], [ 103.928054809570241, 1.419028043747062 ], [ 103.928054809570241, 1.419584035873527 ], [ 103.927780151367244, 1.419862031936646 ], [ 103.927780151367244, 1.42041802406311 ], [ 103.92749786376946, 1.420693993568534 ], [ 103.92749786376946, 1.420971989631653 ], [ 103.925834655761719, 1.422639966011104 ], [ 103.926109313964957, 1.422917962074393 ], [ 103.926109313964957, 1.424028038978576 ], [ 103.928886413574219, 1.424584031105042 ], [ 103.92972564697277, 1.42541599273693 ], [ 103.92972564697277, 1.426249980926513 ], [ 103.932502746582031, 1.42652797698986 ], [ 103.932502746582031, 1.427638053894043 ], [ 103.933334350585994, 1.427916049957332 ], [ 103.934165954589773, 1.427916049957332 ], [ 103.934165954589773, 1.427638053894043 ], [ 103.936386108398494, 1.427638053894043 ], [ 103.936386108398494, 1.428197026252747 ], [ 103.937225341796818, 1.428197026252747 ], [ 103.937225341796818, 1.427638053894043 ] ] ], [ [ [ 103.738792419433636, 1.425907969474849 ], [ 103.739006042480582, 1.425840020179749 ], [ 103.739212036132912, 1.425979018211308 ], [ 103.739418029785085, 1.426049947738647 ], [ 103.739624023437443, 1.425907969474849 ], [ 103.739761352539176, 1.42556202411663 ], [ 103.739761352539176, 1.425212979316768 ], [ 103.739624023437443, 1.425004005432186 ], [ 103.739280700683594, 1.424934983253479 ], [ 103.738937377929744, 1.42472505569458 ], [ 103.738792419433636, 1.424445033073482 ], [ 103.738655090331974, 1.4239599704743 ], [ 103.738243103027443, 1.423539996147213 ], [ 103.737899780273381, 1.423333048820552 ], [ 103.737754821777344, 1.423262000084037 ], [ 103.737480163574332, 1.423262000084037 ], [ 103.737411499023494, 1.423333048820552 ], [ 103.737548828125, 1.423539996147213 ], [ 103.737754821777344, 1.423889040947017 ], [ 103.738037109375114, 1.424098968505916 ], [ 103.738243103027443, 1.424376964569205 ], [ 103.738380432128963, 1.42472505569458 ], [ 103.738243103027443, 1.424865007400626 ], [ 103.738243103027443, 1.425004005432186 ], [ 103.738380432128963, 1.425212979316768 ], [ 103.738380432128963, 1.425701022148189 ], [ 103.738243103027443, 1.426049947738647 ], [ 103.738037109375114, 1.426257014274654 ], [ 103.737899780273381, 1.426537036895752 ], [ 103.737899780273381, 1.426954030990657 ], [ 103.738105773925781, 1.427163958549556 ], [ 103.738204956054744, 1.427096009254456 ], [ 103.738311767578125, 1.427023053169364 ], [ 103.738380432128963, 1.426815032959041 ], [ 103.738586425781307, 1.426535010337773 ], [ 103.738792419433636, 1.426396012306213 ], [ 103.738792419433636, 1.425907969474849 ] ] ], [ [ [ 103.889442443847713, 1.425001025199947 ], [ 103.889724731445256, 1.424723029136601 ], [ 103.889999389648494, 1.424723029136601 ], [ 103.890274047851676, 1.424445033073482 ], [ 103.890556335449219, 1.424445033073482 ], [ 103.890830993652457, 1.424167037010136 ], [ 103.89111328125, 1.424167037010136 ], [ 103.891944885253963, 1.423333048820552 ], [ 103.892219543457017, 1.423333048820552 ], [ 103.892776489257756, 1.422777056694087 ], [ 103.893058776855526, 1.422777056694087 ], [ 103.893333435058707, 1.422500967979488 ], [ 103.893890380859489, 1.422500967979488 ], [ 103.89444732666027, 1.421944975853023 ], [ 103.894721984863281, 1.421944975853023 ], [ 103.894996643066463, 1.421666979789734 ], [ 103.895278930664062, 1.421666979789734 ], [ 103.895835876464787, 1.421110987663212 ], [ 103.896110534668026, 1.421110987663212 ], [ 103.89749908447277, 1.419723033905086 ], [ 103.89749908447277, 1.41944503784174 ], [ 103.897781372070312, 1.419167041778621 ], [ 103.897781372070312, 1.418889045715275 ], [ 103.898056030273494, 1.418611049652156 ], [ 103.898056030273494, 1.418331980705375 ], [ 103.897781372070312, 1.418053984642029 ], [ 103.89749908447277, 1.418053984642029 ], [ 103.89749908447277, 1.417778968811092 ], [ 103.897224426269531, 1.417500972747803 ], [ 103.897026062011719, 1.416337966918888 ], [ 103.896469116210938, 1.415781974792594 ], [ 103.895835876464787, 1.415277957916373 ], [ 103.895553588867244, 1.414999961853027 ], [ 103.894996643066463, 1.414999961853027 ], [ 103.894721984863281, 1.414721965789908 ], [ 103.894721984863281, 1.414443969726562 ], [ 103.8941650390625, 1.414443969726562 ], [ 103.893608093261719, 1.414999961853027 ], [ 103.893058776855526, 1.414999961853027 ], [ 103.892776489257756, 1.415277957916373 ], [ 103.892219543457017, 1.415277957916373 ], [ 103.890769958496151, 1.415346980094909 ], [ 103.888885498046932, 1.415557026863155 ], [ 103.88861083984375, 1.415832042694092 ], [ 103.888336181640739, 1.415832042694092 ], [ 103.888053894042969, 1.416110038757381 ], [ 103.887779235839957, 1.416110038757381 ], [ 103.887222290039176, 1.416666030883903 ], [ 103.886947631835994, 1.416666030883903 ], [ 103.886665344238224, 1.416944980621338 ], [ 103.886108398437443, 1.416944980621338 ], [ 103.885833740234432, 1.417222976684627 ], [ 103.88555908203125, 1.417222976684627 ], [ 103.885276794433636, 1.417500972747803 ], [ 103.884445190429688, 1.417500972747803 ], [ 103.883888244628963, 1.418053984642029 ], [ 103.883956909179801, 1.418403029441833 ], [ 103.884162902832145, 1.418611049652156 ], [ 103.884445190429688, 1.418889045715275 ], [ 103.884445190429688, 1.419167041778621 ], [ 103.885070800781307, 1.419999003410453 ], [ 103.88555908203125, 1.420554995536747 ], [ 103.886108398437443, 1.421110987663212 ], [ 103.886108398437443, 1.421388983726558 ], [ 103.886665344238224, 1.421944975853023 ], [ 103.886665344238224, 1.422222971916199 ], [ 103.887222290039176, 1.422777056694087 ], [ 103.887222290039176, 1.423055052757377 ], [ 103.888473510742244, 1.424860000610408 ], [ 103.888961791992131, 1.424931049346924 ], [ 103.889251708984432, 1.424972057342529 ], [ 103.889442443847713, 1.425001025199947 ] ] ], [ [ [ 104.020553588867301, 1.421944975853023 ], [ 104.021110534668082, 1.421388983726558 ], [ 104.021667480468864, 1.421388983726558 ], [ 104.021942138671861, 1.421110987663212 ], [ 104.022781372070369, 1.421110987663212 ], [ 104.023887634277401, 1.420001029968261 ], [ 104.024169921875114, 1.420001029968261 ], [ 104.024444580078125, 1.419723033905086 ], [ 104.025001525878892, 1.419723033905086 ], [ 104.025833129882869, 1.418889045715275 ], [ 104.025833129882869, 1.417775988578853 ], [ 104.026107788085866, 1.417500972747803 ], [ 104.026107788085866, 1.416666030883903 ], [ 104.026664733886662, 1.416110038757381 ], [ 104.026664733886662, 1.415557026863155 ], [ 104.026947021484418, 1.415277957916373 ], [ 104.026947021484418, 1.414165973663444 ], [ 104.026107788085866, 1.413334012031555 ], [ 104.026107788085866, 1.413056015968436 ], [ 104.025558471679673, 1.412500023841971 ], [ 104.025276184082088, 1.412500023841971 ], [ 104.025001525878892, 1.412222027778625 ], [ 104.024169921875114, 1.412222027778625 ], [ 104.023887634277401, 1.412500023841971 ], [ 104.021667480468864, 1.412500023841971 ], [ 104.02138519287108, 1.412222027778625 ], [ 104.021110534668082, 1.412222027778625 ], [ 104.020835876464886, 1.412500023841971 ], [ 104.020553588867301, 1.412500023841971 ], [ 104.020278930664119, 1.41277801990509 ], [ 104.019996643066335, 1.41277801990509 ], [ 104.019721984863338, 1.413056015968436 ], [ 104.019447326660142, 1.413056015968436 ], [ 104.018333435058594, 1.414165973663444 ], [ 104.018058776855582, 1.414165973663444 ], [ 104.016944885253849, 1.415277957916373 ], [ 104.016944885253849, 1.415557026863155 ], [ 104.016670227050838, 1.415832042694092 ], [ 104.016670227050838, 1.416388034820557 ], [ 104.016387939453125, 1.416666030883903 ], [ 104.016387939453125, 1.416944980621338 ], [ 104.016670227050838, 1.417222976684627 ], [ 104.016670227050838, 1.418053984642029 ], [ 104.017219543457074, 1.418611049652156 ], [ 104.017219543457074, 1.418889045715275 ], [ 104.017501831054801, 1.419167041778621 ], [ 104.017501831054801, 1.41944503784174 ], [ 104.017776489257812, 1.419723033905086 ], [ 104.017776489257812, 1.420001029968261 ], [ 104.018333435058594, 1.420554995536747 ], [ 104.018333435058594, 1.420832991600093 ], [ 104.018608093261818, 1.421110987663212 ], [ 104.018608093261818, 1.421388983726558 ], [ 104.018890380859361, 1.421666979789734 ], [ 104.018890380859361, 1.422777056694087 ], [ 104.018608093261818, 1.423055052757377 ], [ 104.018981933593807, 1.423426032066345 ], [ 104.019165039062557, 1.423611044883842 ], [ 104.019447326660142, 1.423611044883842 ], [ 104.020278930664119, 1.422777056694087 ], [ 104.020278930664119, 1.422500967979488 ], [ 104.020553588867301, 1.422222971916199 ], [ 104.020553588867301, 1.421944975853023 ] ] ], [ [ [ 103.920234680175724, 1.413444042205867 ], [ 103.920684814453111, 1.413388967514038 ], [ 103.921119689941463, 1.413555026054496 ], [ 103.921623229980469, 1.413566946983451 ], [ 103.922142028808537, 1.413386940956116 ], [ 103.922645568847713, 1.413012981414909 ], [ 103.923049926757912, 1.412588953971863 ], [ 103.923393249511776, 1.412220001220703 ], [ 103.923683166503849, 1.411862015724182 ], [ 103.92391204833983, 1.411460995674076 ], [ 103.924140930175838, 1.411052942276115 ], [ 103.92427825927733, 1.410588026046866 ], [ 103.924468994140625, 1.410137057304496 ], [ 103.924713134765682, 1.40969002246868 ], [ 103.924964904785256, 1.409240961074943 ], [ 103.925376892089943, 1.408898949623221 ], [ 103.925827026367173, 1.408607006072998 ], [ 103.926269531250043, 1.40829694271099 ], [ 103.926666259765682, 1.407914996147213 ], [ 103.927055358886832, 1.407482028007621 ], [ 103.927452087402457, 1.407026052475089 ], [ 103.927947998046918, 1.406677007675284 ], [ 103.928421020507926, 1.406376004219169 ], [ 103.928825378417912, 1.406062006950435 ], [ 103.929153442382926, 1.405722022056693 ], [ 103.929473876953168, 1.405372977256889 ], [ 103.929847717285156, 1.405030965804997 ], [ 103.930160522460881, 1.404551029205379 ], [ 103.930366516113267, 1.403998970985469 ], [ 103.930503845214957, 1.403481960296631 ], [ 103.930412292480455, 1.402971029281616 ], [ 103.930076599121136, 1.402577042579708 ], [ 103.929870605468807, 1.402397036552543 ], [ 103.929634094238281, 1.402392029762325 ], [ 103.929267883300781, 1.402732014656124 ], [ 103.928955078125057, 1.403249025344962 ], [ 103.928619384765739, 1.403725981712341 ], [ 103.928291320800781, 1.404137969017029 ], [ 103.927902221679688, 1.404458999633903 ], [ 103.927513122558594, 1.404775977134818 ], [ 103.927116394042912, 1.405076980590934 ], [ 103.926666259765682, 1.405300021171627 ], [ 103.926254272460994, 1.40549898147583 ], [ 103.925903320312543, 1.405511975288448 ], [ 103.925613403320298, 1.405365943908748 ], [ 103.925254821777344, 1.405243039131221 ], [ 103.924926757812557, 1.405035972595215 ], [ 103.924606323242301, 1.404860973358211 ], [ 103.924362182617244, 1.404744029045162 ], [ 103.923950195312557, 1.404952049255428 ], [ 103.923553466796875, 1.40539205074316 ], [ 103.923591613769588, 1.405711054802055 ], [ 103.923698425292955, 1.406054973602352 ], [ 103.923858642578054, 1.406381011009159 ], [ 103.923881530761719, 1.406697988510132 ], [ 103.923820495605582, 1.406980037689152 ], [ 103.923645019531364, 1.40721499919897 ], [ 103.923515319824219, 1.407462954521179 ], [ 103.923294067382756, 1.407699942588749 ], [ 103.922958374023438, 1.407930970192069 ], [ 103.922500610351676, 1.408123970031795 ], [ 103.922012329101562, 1.408493041992188 ], [ 103.921463012695369, 1.408867001533565 ], [ 103.921119689941463, 1.409343957901115 ], [ 103.920829772949219, 1.409852027893066 ], [ 103.920562744140682, 1.410357952118034 ], [ 103.920310974121094, 1.410851955413932 ], [ 103.920043945312443, 1.411316990852356 ], [ 103.919685363769531, 1.411689043045158 ], [ 103.919265747070412, 1.412006020546073 ], [ 103.918907165527287, 1.412369966506901 ], [ 103.918594360351562, 1.412745952606258 ], [ 103.918296813964943, 1.413079023361206 ], [ 103.917984008789062, 1.413341045379696 ], [ 103.917663574218793, 1.413578033447266 ], [ 103.917259216308594, 1.413774013519287 ], [ 103.916702270507869, 1.413884043693599 ], [ 103.91607666015625, 1.414365053176823 ], [ 103.915870666503906, 1.414932012557983 ], [ 103.915802001953239, 1.415313005447501 ], [ 103.915740966796932, 1.415572047233525 ], [ 103.915672302246037, 1.415855050087032 ], [ 103.915885925292955, 1.416131019592228 ], [ 103.916313171386776, 1.416151046752987 ], [ 103.916580200195426, 1.416131019592228 ], [ 103.916847229003906, 1.416110038757381 ], [ 103.917404174804688, 1.416015028953666 ], [ 103.917884826660213, 1.415781974792594 ], [ 103.91831207275402, 1.415472030639762 ], [ 103.918632507324276, 1.415027976036185 ], [ 103.918998718261776, 1.414585947990417 ], [ 103.919425964355582, 1.414173007011357 ], [ 103.919830322265739, 1.413779020309448 ], [ 103.920234680175724, 1.413444042205867 ] ] ], [ [ [ 103.954170227050895, 1.399166941642761 ], [ 103.953330993652401, 1.399166941642761 ], [ 103.953330993652401, 1.399445056915283 ], [ 103.953056335449148, 1.399723052978572 ], [ 103.952499389648438, 1.399999022483769 ], [ 103.951667785644631, 1.40083301067358 ], [ 103.951110839843849, 1.401111006736755 ], [ 103.951110839843849, 1.401389002800045 ], [ 103.949996948242131, 1.402498960495052 ], [ 103.949996948242131, 1.402776956558228 ], [ 103.948333740234361, 1.404443025589046 ], [ 103.947219848632869, 1.404999971389827 ], [ 103.947219848632869, 1.405277967453117 ], [ 103.946662902832088, 1.405833959579581 ], [ 103.946662902832088, 1.406111955642757 ], [ 103.946113586425838, 1.406667947769222 ], [ 103.946113586425838, 1.406944036483765 ], [ 103.945274353027344, 1.407778024673576 ], [ 103.947219848632869, 1.407778024673576 ], [ 103.94777679443358, 1.407222032547111 ], [ 103.94777679443358, 1.406944036483765 ], [ 103.948333740234361, 1.406389951705876 ], [ 103.948333740234361, 1.406111955642757 ], [ 103.948608398437614, 1.405833959579581 ], [ 103.948608398437614, 1.404999971389827 ], [ 103.951110839843849, 1.402498960495052 ], [ 103.951110839843849, 1.401945948600826 ], [ 103.951667785644631, 1.40166699886322 ], [ 103.952774047851619, 1.400555014610291 ], [ 103.952774047851619, 1.400277018547115 ], [ 103.954170227050895, 1.399999022483769 ], [ 103.954170227050895, 1.399445056915283 ], [ 103.954170227050895, 1.399166941642761 ] ] ], [ [ [ 103.728172302246037, 1.404391050338802 ], [ 103.72747802734375, 1.404391050338802 ], [ 103.727203369140724, 1.404530048370361 ], [ 103.727058410644531, 1.404669046401921 ], [ 103.727134704589901, 1.404808044433707 ], [ 103.727272033691392, 1.405156970024166 ], [ 103.727409362792898, 1.405156970024166 ], [ 103.72747802734375, 1.40564501285553 ], [ 103.727684020996151, 1.406131982803458 ], [ 103.728096008300824, 1.405992984771729 ], [ 103.728240966796875, 1.405784010887146 ], [ 103.728446960449276, 1.405436992645264 ], [ 103.728446960449276, 1.404809951782283 ], [ 103.728172302246037, 1.404391050338802 ] ] ], [ [ [ 103.655082702636832, 1.377756953239441 ], [ 103.654594421386719, 1.377686023712101 ], [ 103.654594421386719, 1.378173947334346 ], [ 103.654876708984489, 1.378383994102592 ], [ 103.6551513671875, 1.378872036933956 ], [ 103.655632019043026, 1.379776000976619 ], [ 103.655914306640625, 1.38026404380804 ], [ 103.655914306640625, 1.380681037902889 ], [ 103.656188964843793, 1.380751967430228 ], [ 103.656463623046818, 1.380751967430228 ], [ 103.656745910644574, 1.380473971366882 ], [ 103.656532287597699, 1.379986047744865 ], [ 103.656532287597699, 1.379428029060477 ], [ 103.655982971191463, 1.378590941429252 ], [ 103.655914306640625, 1.378312945365906 ], [ 103.655708312988281, 1.378034949302787 ], [ 103.655082702636832, 1.377756953239441 ] ] ], [ [ [ 103.65183258056652, 1.369632005691642 ], [ 103.651473999023551, 1.369536042213554 ], [ 103.651100158691506, 1.369737029075736 ], [ 103.650749206542969, 1.369992017746085 ], [ 103.650421142578125, 1.370201945304984 ], [ 103.650039672851562, 1.37031102180481 ], [ 103.649742126464943, 1.370540976524467 ], [ 103.649490356445369, 1.370875954627991 ], [ 103.649269104003906, 1.371312022209167 ], [ 103.649208068847599, 1.371860980987492 ], [ 103.649391174316335, 1.372424006462097 ], [ 103.649719238281307, 1.372900009155387 ], [ 103.650062561035213, 1.373293995857296 ], [ 103.650382995605469, 1.373607039451713 ], [ 103.650665283203182, 1.373886942863464 ], [ 103.650924682617131, 1.374147057533378 ], [ 103.651214599609432, 1.374359011650199 ], [ 103.651557922363281, 1.37444794178009 ], [ 103.651893615722656, 1.374541044235286 ], [ 103.652168273925838, 1.374698042869625 ], [ 103.6524658203125, 1.374822020530644 ], [ 103.65280914306652, 1.375004053115958 ], [ 103.653297424316463, 1.375115990638847 ], [ 103.65380859375, 1.374848961830196 ], [ 103.653976440429631, 1.374760031700248 ], [ 103.654258728027401, 1.37418794631958 ], [ 103.654464721679744, 1.373636007309017 ], [ 103.65415191650402, 1.371597051620597 ], [ 103.653923034668082, 1.371345996856803 ], [ 103.653434753417969, 1.370895028114433 ], [ 103.652931213378963, 1.370533943176326 ], [ 103.652511596679688, 1.370219945907593 ], [ 103.652053833007926, 1.369871020317134 ], [ 103.65183258056652, 1.369632005691642 ] ] ], [ [ [ 104.023887634277401, 1.365833044052124 ], [ 104.024169921875114, 1.365555047989005 ], [ 104.024719238281349, 1.365555047989005 ], [ 104.025276184082088, 1.365000963211116 ], [ 104.026107788085866, 1.365000963211116 ], [ 104.026390075683651, 1.364722967147941 ], [ 104.026947021484418, 1.364722967147941 ], [ 104.027221679687614, 1.364444971084652 ], [ 104.027496337890611, 1.364444971084652 ], [ 104.027778625488395, 1.364166975021476 ], [ 104.028053283691392, 1.364166975021476 ], [ 104.028610229492188, 1.363610029220695 ], [ 104.028610229492188, 1.363332033157405 ], [ 104.029167175292969, 1.363332033157405 ], [ 104.029998779296932, 1.362501025200004 ], [ 104.030281066894645, 1.362501025200004 ], [ 104.030830383300881, 1.361943960189876 ], [ 104.031112670898438, 1.361943960189876 ], [ 104.031387329101662, 1.361665964126587 ], [ 104.031944274902401, 1.361665964126587 ], [ 104.032218933105469, 1.361387968063411 ], [ 104.032775878906193, 1.361387968063411 ], [ 104.033332824707145, 1.360834002494869 ], [ 104.033607482910142, 1.360834002494869 ], [ 104.034164428710923, 1.360278010368404 ], [ 104.034446716308707, 1.360278010368404 ], [ 104.0352783203125, 1.359444022178593 ], [ 104.035552978515668, 1.359444022178593 ], [ 104.036392211913991, 1.358610033989009 ], [ 104.037109375000114, 1.358610033989009 ], [ 104.037185668945312, 1.358558058738765 ], [ 104.038612365722713, 1.35722196102148 ], [ 104.038612365722713, 1.356943964958191 ], [ 104.038139343261719, 1.356467962265071 ], [ 104.037780761718736, 1.356112003326473 ], [ 104.037498474121193, 1.356112003326473 ], [ 104.036941528320412, 1.355556011200008 ], [ 104.036941528320412, 1.355278015136719 ], [ 104.036666870117244, 1.355000019073543 ], [ 104.036666870117244, 1.354722023010254 ], [ 104.036941528320412, 1.354444026947078 ], [ 104.036392211913991, 1.353889942169189 ], [ 104.036392211913991, 1.353333950042724 ], [ 104.03583526611321, 1.353333950042724 ], [ 104.034721374511719, 1.354444026947078 ], [ 104.034164428710923, 1.354444026947078 ], [ 104.033332824707145, 1.35361194610607 ], [ 104.033058166503949, 1.353889942169189 ], [ 104.033058166503949, 1.354166030883732 ], [ 104.032775878906193, 1.354444026947078 ], [ 104.032775878906193, 1.354722023010254 ], [ 104.032501220703182, 1.355000019073543 ], [ 104.032501220703182, 1.356112003326473 ], [ 104.032775878906193, 1.356387972831726 ], [ 104.032501220703182, 1.356665968895015 ], [ 104.032501220703182, 1.35722196102148 ], [ 104.032218933105469, 1.357499957084656 ], [ 104.032218933105469, 1.357777953147945 ], [ 104.031829833984304, 1.358170032501334 ], [ 104.031669616699205, 1.358333945274467 ], [ 104.031669616699205, 1.358610033989009 ], [ 104.031112670898438, 1.358610033989009 ], [ 104.030281066894645, 1.357777953147945 ], [ 104.030281066894645, 1.357499957084656 ], [ 104.029998779296932, 1.35722196102148 ], [ 104.029441833496136, 1.357777953147945 ], [ 104.028892517089901, 1.357777953147945 ], [ 104.028610229492188, 1.358055949211121 ], [ 104.028335571289176, 1.358055949211121 ], [ 104.028053283691392, 1.358333945274467 ], [ 104.027496337890611, 1.358333945274467 ], [ 104.027221679687614, 1.358610033989009 ], [ 104.026664733886662, 1.358610033989009 ], [ 104.026390075683651, 1.358333945274467 ], [ 104.026390075683651, 1.357499957084656 ], [ 104.026947021484418, 1.356943964958191 ], [ 104.027496337890611, 1.356943964958191 ], [ 104.027496337890611, 1.356665968895015 ], [ 104.027778625488395, 1.356665968895015 ], [ 104.028610229492188, 1.355834007263184 ], [ 104.029067993164119, 1.355695009231624 ], [ 104.029067993164119, 1.354997992515621 ], [ 104.028999328613281, 1.354648947715816 ], [ 104.028930664062614, 1.354300022125301 ], [ 104.028930664062614, 1.353744029998836 ], [ 104.028999328613281, 1.353466033935547 ], [ 104.028999328613281, 1.353186011314449 ], [ 104.028861999511761, 1.352838993072567 ], [ 104.028717041015739, 1.352211952209586 ], [ 104.028717041015739, 1.351515054702759 ], [ 104.028793334960938, 1.35123705863964 ], [ 104.028793334960938, 1.350468993186951 ], [ 104.028579711914006, 1.349982976913509 ], [ 104.028442382812486, 1.349774003028926 ], [ 104.028167724609489, 1.349635004997367 ], [ 104.027679443359375, 1.349424958229122 ], [ 104.027549743652386, 1.34930694103241 ], [ 104.027267456054688, 1.349097013473511 ], [ 104.026855468749943, 1.349028944969234 ], [ 104.026580810546918, 1.348819017410335 ], [ 104.025886535644645, 1.348119020462093 ], [ 104.025886535644645, 1.346655964851436 ], [ 104.025955200195312, 1.346029043197632 ], [ 104.026023864746151, 1.345679998397827 ], [ 104.025276184082088, 1.34499895572668 ], [ 104.024719238281349, 1.34499895572668 ], [ 104.024444580078125, 1.34527695178997 ], [ 104.024169921875114, 1.34527695178997 ], [ 104.024169921875114, 1.345554947853145 ], [ 104.023330688476605, 1.346389055252075 ], [ 104.023056030273381, 1.346389055252075 ], [ 104.022781372070369, 1.346667051315421 ], [ 104.021942138671861, 1.346667051315421 ], [ 104.02138519287108, 1.347221016883964 ], [ 104.018890380859361, 1.347221016883964 ], [ 104.018333435058594, 1.347777009010429 ], [ 104.017776489257812, 1.347221016883964 ], [ 104.017501831054801, 1.347221016883964 ], [ 104.016670227050838, 1.346389055252075 ], [ 104.016670227050838, 1.346111059188956 ], [ 104.016387939453125, 1.345832943916434 ], [ 104.016387939453125, 1.345554947853145 ], [ 104.016113281250057, 1.34527695178997 ], [ 104.015556335449332, 1.34527695178997 ], [ 104.014999389648551, 1.345832943916434 ], [ 104.013885498046804, 1.344722986221257 ], [ 104.013336181640611, 1.34527695178997 ], [ 104.013336181640611, 1.345554947853145 ], [ 104.013610839843807, 1.345832943916434 ], [ 104.013610839843807, 1.346111059188956 ], [ 104.013885498046804, 1.346389055252075 ], [ 104.013885498046804, 1.346945047378597 ], [ 104.014167785644588, 1.347221016883964 ], [ 104.014167785644588, 1.347499012947083 ], [ 104.01444244384777, 1.347777009010429 ], [ 104.01444244384777, 1.348055005073547 ], [ 104.014724731445312, 1.348333001136893 ], [ 104.014724731445312, 1.348889946937675 ], [ 104.014999389648551, 1.349167943000793 ], [ 104.014999389648551, 1.349442958831901 ], [ 104.015274047851548, 1.34972095489502 ], [ 104.015274047851548, 1.351112008094788 ], [ 104.015556335449332, 1.351390004158133 ], [ 104.015556335449332, 1.352221965789795 ], [ 104.015830993652344, 1.352499961853084 ], [ 104.015830993652344, 1.35277795791626 ], [ 104.015274047851548, 1.353333950042724 ], [ 104.014999389648551, 1.353333950042724 ], [ 104.014724731445312, 1.35361194610607 ], [ 104.014167785644588, 1.353055953979606 ], [ 104.014167785644588, 1.352499961853084 ], [ 104.013336181640611, 1.351668000221252 ], [ 104.013336181640611, 1.350556015968323 ], [ 104.013610839843807, 1.350278019905147 ], [ 104.013610839843807, 1.349998950958366 ], [ 104.013336181640611, 1.34972095489502 ], [ 104.013336181640611, 1.349442958831901 ], [ 104.013053894043026, 1.349167943000793 ], [ 104.013053894043026, 1.348333001136893 ], [ 104.01277923583983, 1.348055005073547 ], [ 104.01277923583983, 1.347777009010429 ], [ 104.012496948242244, 1.347499012947083 ], [ 104.012496948242244, 1.347221016883964 ], [ 104.012222290039062, 1.346945047378597 ], [ 104.012222290039062, 1.346389055252075 ], [ 104.011947631836051, 1.346111059188956 ], [ 104.011947631836051, 1.345832943916434 ], [ 104.011665344238281, 1.345554947853145 ], [ 104.011665344238281, 1.34499895572668 ], [ 104.011108398437543, 1.344444990158138 ], [ 104.011108398437543, 1.343888998031673 ], [ 104.010833740234318, 1.343611001968497 ], [ 104.010833740234318, 1.343333005905208 ], [ 104.010559082031307, 1.343055009842033 ], [ 104.010559082031307, 1.342223048210201 ], [ 104.010276794433537, 1.341945052147025 ], [ 104.010276794433537, 1.341667056083736 ], [ 104.008613586425781, 1.340000987052861 ], [ 104.008331298828239, 1.340276956558284 ], [ 104.008056640625057, 1.340276956558284 ], [ 104.008056640625057, 1.339722990989742 ], [ 104.007774353027457, 1.339444994926396 ], [ 104.008056640625057, 1.339166998863277 ], [ 104.008056640625057, 1.337501049041805 ], [ 104.007225036621037, 1.336666941642818 ], [ 104.006874084472656, 1.336424946785087 ], [ 104.006599426269631, 1.33516895771038 ], [ 104.006385803222713, 1.334444046020565 ], [ 104.005279541015739, 1.334444046020565 ], [ 104.005279541015739, 1.334166049957275 ], [ 104.004997253417969, 1.3338880538941 ], [ 104.004997253417969, 1.333331942558288 ], [ 104.004722595214957, 1.333055973053092 ], [ 104.004722595214957, 1.331943988800163 ], [ 104.004447937011776, 1.331665992736816 ], [ 104.004447937011776, 1.331112027168274 ], [ 104.004165649414006, 1.331112027168274 ], [ 104.003890991210994, 1.330834031105155 ], [ 104.003890991210994, 1.330556035041809 ], [ 104.003608703613281, 1.330556035041809 ], [ 104.002777099609489, 1.331387996673641 ], [ 104.002777099609489, 1.331665992736816 ], [ 104.00250244140625, 1.331943988800163 ], [ 104.00250244140625, 1.332499980926627 ], [ 104.002220153808707, 1.332777976989746 ], [ 104.002220153808707, 1.333610057830811 ], [ 104.002777099609489, 1.334166049957275 ], [ 104.002777099609489, 1.335831999778748 ], [ 104.003334045410213, 1.336387991905212 ], [ 104.003334045410213, 1.336666941642818 ], [ 104.003890991210994, 1.337223052978629 ], [ 104.003890991210994, 1.337501049041805 ], [ 104.004165649414006, 1.337779045104924 ], [ 104.002777099609489, 1.339166998863277 ], [ 104.003051757812486, 1.339444994926396 ], [ 104.003051757812486, 1.339722990989742 ], [ 104.003334045410213, 1.339722990989742 ], [ 104.003890991210994, 1.340276956558284 ], [ 104.003890991210994, 1.340554952621574 ], [ 104.004165649414006, 1.340832948684749 ], [ 104.004165649414006, 1.341388940811214 ], [ 104.004447937011776, 1.341667056083736 ], [ 104.004447937011776, 1.342223048210201 ], [ 104.00555419921875, 1.343333005905208 ], [ 104.00555419921875, 1.343611001968497 ], [ 104.00583648681652, 1.343888998031673 ], [ 104.00583648681652, 1.344444990158138 ], [ 104.00555419921875, 1.344722986221257 ], [ 104.00583648681652, 1.34499895572668 ], [ 104.00583648681652, 1.345832943916434 ], [ 104.006111145019531, 1.346111059188956 ], [ 104.006111145019531, 1.346389055252075 ], [ 104.006385803222713, 1.346389055252075 ], [ 104.006668090820298, 1.346667051315421 ], [ 104.006668090820298, 1.346945047378597 ], [ 104.007225036621037, 1.347499012947083 ], [ 104.007225036621037, 1.347777009010429 ], [ 104.007499694824276, 1.348055005073547 ], [ 104.007499694824276, 1.348610997200069 ], [ 104.007774353027457, 1.348889946937675 ], [ 104.007774353027457, 1.350556015968323 ], [ 104.008331298828239, 1.351112008094788 ], [ 104.008331298828239, 1.351390004158133 ], [ 104.008613586425781, 1.351668000221252 ], [ 104.008613586425781, 1.351943969726619 ], [ 104.009445190429744, 1.35277795791626 ], [ 104.009445190429744, 1.353055953979606 ], [ 104.009719848632812, 1.353333950042724 ], [ 104.009719848632812, 1.353889942169189 ], [ 104.010002136230526, 1.354166030883732 ], [ 104.010002136230526, 1.354444026947078 ], [ 104.010276794433537, 1.354722023010254 ], [ 104.010276794433537, 1.355278015136719 ], [ 104.010559082031307, 1.355556011200008 ], [ 104.010559082031307, 1.355834007263184 ], [ 104.009445190429744, 1.356943964958191 ], [ 104.009162902832017, 1.356943964958191 ], [ 104.008613586425781, 1.357499957084656 ], [ 104.008613586425781, 1.357777953147945 ], [ 104.00888824462902, 1.358055949211121 ], [ 104.00888824462902, 1.358888030052128 ], [ 104.009162902832017, 1.359166026115474 ], [ 104.009162902832017, 1.359722018241939 ], [ 104.009445190429744, 1.360000014305115 ], [ 104.009445190429744, 1.36055600643158 ], [ 104.010833740234318, 1.361943960189876 ], [ 104.010833740234318, 1.362221956253052 ], [ 104.012222290039062, 1.363610029220695 ], [ 104.012222290039062, 1.365000963211116 ], [ 104.012496948242244, 1.365278959274406 ], [ 104.013610839843807, 1.365278959274406 ], [ 104.013885498046804, 1.365000963211116 ], [ 104.013885498046804, 1.363610029220695 ], [ 104.013336181640611, 1.36305403709423 ], [ 104.013336181640611, 1.362501025200004 ], [ 104.012222290039062, 1.361387968063411 ], [ 104.012222290039062, 1.360278010368404 ], [ 104.010833740234318, 1.358888030052128 ], [ 104.010833740234318, 1.358333945274467 ], [ 104.010559082031307, 1.358055949211121 ], [ 104.010559082031307, 1.357777953147945 ], [ 104.01139068603527, 1.356943964958191 ], [ 104.012496948242244, 1.356943964958191 ], [ 104.013053894043026, 1.357499957084656 ], [ 104.013053894043026, 1.357777953147945 ], [ 104.014167785644588, 1.358888030052128 ], [ 104.015274047851548, 1.357777953147945 ], [ 104.015274047851548, 1.357499957084656 ], [ 104.014724731445312, 1.356943964958191 ], [ 104.014724731445312, 1.356387972831726 ], [ 104.015274047851548, 1.356387972831726 ], [ 104.016670227050838, 1.355000019073543 ], [ 104.017776489257812, 1.356112003326473 ], [ 104.017776489257812, 1.356665968895015 ], [ 104.018058776855582, 1.356943964958191 ], [ 104.018058776855582, 1.357499957084656 ], [ 104.018608093261818, 1.358055949211121 ], [ 104.018608093261818, 1.358888030052128 ], [ 104.018890380859361, 1.359166026115474 ], [ 104.018890380859361, 1.359444022178593 ], [ 104.019447326660142, 1.360000014305115 ], [ 104.019447326660142, 1.36055600643158 ], [ 104.019721984863338, 1.360834002494869 ], [ 104.019721984863338, 1.361387968063411 ], [ 104.019996643066335, 1.361665964126587 ], [ 104.019996643066335, 1.362221956253052 ], [ 104.020278930664119, 1.362501025200004 ], [ 104.020278930664119, 1.362779021263179 ], [ 104.02138519287108, 1.36388897895813 ], [ 104.021667480468864, 1.36388897895813 ], [ 104.021942138671861, 1.364166975021476 ], [ 104.022224426269588, 1.364166975021476 ], [ 104.023056030273381, 1.365000963211116 ], [ 104.023056030273381, 1.365278959274406 ], [ 104.023612976074148, 1.365833044052124 ], [ 104.023887634277401, 1.365833044052124 ] ] ], [ [ [ 103.693611145019645, 1.291944980621452 ], [ 103.693611145019645, 1.290277004242 ], [ 103.692497253417912, 1.289167046546993 ], [ 103.692222595214901, 1.289167046546993 ], [ 103.691886901855582, 1.288831949234122 ], [ 103.691665649414119, 1.288611054420528 ], [ 103.691368103027273, 1.288303017616329 ], [ 103.691108703613324, 1.287996053695736 ], [ 103.690849304199219, 1.287665009498653 ], [ 103.690643310546875, 1.287268996238822 ], [ 103.690582275390724, 1.286712050438041 ], [ 103.690643310546875, 1.286087989807129 ], [ 103.690879821777401, 1.285627961158696 ], [ 103.691055297851619, 1.285248994827327 ], [ 103.690994262695298, 1.284891009330806 ], [ 103.690811157226562, 1.284562945366019 ], [ 103.690574645996207, 1.284283041954097 ], [ 103.690391540527457, 1.283980011940002 ], [ 103.690261840820298, 1.283619999885559 ], [ 103.690086364746094, 1.283295989036617 ], [ 103.68988037109375, 1.282940030098075 ], [ 103.689498901367188, 1.282547950744686 ], [ 103.688697814941349, 1.282364010810852 ], [ 103.68817138671875, 1.282464027404785 ], [ 103.687789916992188, 1.282441020012016 ], [ 103.687500000000114, 1.282176971435547 ], [ 103.687225341796861, 1.281774044036922 ], [ 103.686943054199332, 1.281276941299438 ], [ 103.686614990234375, 1.280748009681645 ], [ 103.686203002929631, 1.28030800819397 ], [ 103.686027526855412, 1.280089020729178 ], [ 103.685760498046932, 1.279978036880607 ], [ 103.685325622558594, 1.279860973358154 ], [ 103.684722900390625, 1.280084967613334 ], [ 103.684165954589844, 1.280555963516235 ], [ 103.683891296386818, 1.280832052230948 ], [ 103.683891296386818, 1.28250098228466 ], [ 103.681663513183594, 1.284723043441772 ], [ 103.681663513183594, 1.285001039505119 ], [ 103.681945800781293, 1.285279035568237 ], [ 103.681945800781293, 1.285555005073604 ], [ 103.683609008789062, 1.287222981453056 ], [ 103.683609008789062, 1.287500977516174 ], [ 103.683891296386818, 1.287776947021598 ], [ 103.683891296386818, 1.288054943084717 ], [ 103.684165954589844, 1.288333058357239 ], [ 103.684165954589844, 1.288611054420528 ], [ 103.685554504394588, 1.290001034736633 ], [ 103.685836791992131, 1.289999008178711 ], [ 103.686386108398537, 1.290555000305176 ], [ 103.686668395996151, 1.290555000305176 ], [ 103.687225341796861, 1.291110992431641 ], [ 103.687500000000114, 1.291110992431641 ], [ 103.687774658203125, 1.291388988494987 ], [ 103.688331604003906, 1.291388988494987 ], [ 103.688613891601605, 1.291110992431641 ], [ 103.688888549804631, 1.291110992431641 ], [ 103.689163208007869, 1.290832996368465 ], [ 103.689445495605412, 1.290832996368465 ], [ 103.689720153808651, 1.290555000305176 ], [ 103.690277099609375, 1.290555000305176 ], [ 103.690551757812614, 1.290832996368465 ], [ 103.691665649414119, 1.290832996368465 ], [ 103.692222595214901, 1.291388988494987 ], [ 103.692222595214901, 1.291944980621452 ], [ 103.692497253417912, 1.29222297668457 ], [ 103.692497253417912, 1.293055057525635 ], [ 103.693336486816392, 1.293889045715389 ], [ 103.693611145019645, 1.293889045715389 ], [ 103.694442749023438, 1.293055057525635 ], [ 103.693885803222656, 1.292498946189937 ], [ 103.693885803222656, 1.29222297668457 ], [ 103.693611145019645, 1.291944980621452 ] ] ], [ [ [ 103.707221984863281, 1.293889045715389 ], [ 103.707496643066463, 1.2936110496521 ], [ 103.708885192871207, 1.2936110496521 ], [ 103.709724426269531, 1.292776942253113 ], [ 103.709724426269531, 1.292498946189937 ], [ 103.710830688476548, 1.291388988494987 ], [ 103.711112976074276, 1.291388988494987 ], [ 103.711387634277287, 1.291666984558105 ], [ 103.711387634277287, 1.292498946189937 ], [ 103.711669921875057, 1.292776942253113 ], [ 103.711944580078239, 1.292776942253113 ], [ 103.71250152587902, 1.29222297668457 ], [ 103.71250152587902, 1.291944980621452 ], [ 103.713058471679801, 1.291388988494987 ], [ 103.713333129882812, 1.291388988494987 ], [ 103.714447021484318, 1.290277004242 ], [ 103.714447021484318, 1.289999008178711 ], [ 103.714721679687557, 1.289723038673515 ], [ 103.714721679687557, 1.289445042610168 ], [ 103.716392517089844, 1.287776947021598 ], [ 103.716392517089844, 1.286388993263245 ], [ 103.716667175293026, 1.286110997200126 ], [ 103.716667175293026, 1.28583300113678 ], [ 103.717224121093807, 1.285279035568237 ], [ 103.717498779296818, 1.285279035568237 ], [ 103.718055725097599, 1.28583300113678 ], [ 103.718330383300824, 1.28583300113678 ], [ 103.718612670898551, 1.285555005073604 ], [ 103.718887329101562, 1.285555005073604 ], [ 103.722221374511832, 1.282222986221313 ], [ 103.722503662109375, 1.282222986221313 ], [ 103.722747802734432, 1.282372951507568 ], [ 103.72308349609375, 1.2825510501861 ], [ 103.723388671875114, 1.28276002407074 ], [ 103.723854064941406, 1.282910943031425 ], [ 103.724563598632812, 1.282992959022579 ], [ 103.725151062011719, 1.283115983009338 ], [ 103.725639343261832, 1.283416986465454 ], [ 103.72618103027348, 1.283794999122676 ], [ 103.726837158203068, 1.284235000610408 ], [ 103.726928710937557, 1.284219026565552 ], [ 103.727218627929616, 1.284167051315308 ], [ 103.727500915527401, 1.284167051315308 ], [ 103.727775573730582, 1.283889055252132 ], [ 103.727775573730582, 1.283611059188843 ], [ 103.728057861328182, 1.283331990242061 ], [ 103.728057861328182, 1.282778978347778 ], [ 103.728332519531364, 1.28250098228466 ], [ 103.729164123535142, 1.281666040420589 ], [ 103.729446411132869, 1.281666040420589 ], [ 103.729721069335923, 1.281388044357413 ], [ 103.730278015136662, 1.281388044357413 ], [ 103.733055114746151, 1.278609991073665 ], [ 103.733551025390611, 1.278373003006095 ], [ 103.734146118164062, 1.278375029564017 ], [ 103.734695434570298, 1.27859902381897 ], [ 103.734939575195355, 1.278658032417354 ], [ 103.735191345214957, 1.278718948364315 ], [ 103.735488891601548, 1.278432011604423 ], [ 103.735794067382756, 1.278143048286438 ], [ 103.736335754394645, 1.277598023414669 ], [ 103.736694335937557, 1.277091979980469 ], [ 103.736946105956974, 1.276666045189017 ], [ 103.737503051757926, 1.276111960411129 ], [ 103.737777709960938, 1.276111960411129 ], [ 103.738052368164176, 1.275833964347839 ], [ 103.738334655761719, 1.275833964347839 ], [ 103.739723205566463, 1.274443984031734 ], [ 103.739723205566463, 1.272500038146916 ], [ 103.737503051757926, 1.270277976989803 ], [ 103.737503051757926, 1.269999980926513 ], [ 103.735557556152457, 1.268054962158203 ], [ 103.735275268554673, 1.268054962158203 ], [ 103.733886718749929, 1.269446015357971 ], [ 103.733612060546932, 1.269168019294796 ], [ 103.733329772949148, 1.269168019294796 ], [ 103.733055114746151, 1.268890023231506 ], [ 103.731941223144645, 1.269999980926513 ], [ 103.731109619140668, 1.269999980926513 ], [ 103.730644226074162, 1.270166039466915 ], [ 103.730346679687557, 1.270264029502925 ], [ 103.729949951171875, 1.270354986190796 ], [ 103.729606628418026, 1.270549058914185 ], [ 103.729240417480526, 1.270743012428397 ], [ 103.728828430175824, 1.270908951759338 ], [ 103.728401184082031, 1.271077990531978 ], [ 103.728218078613267, 1.271090984344596 ], [ 103.72794342041027, 1.271108984947205 ], [ 103.727462768554673, 1.271077990531978 ], [ 103.726982116699332, 1.27093601226818 ], [ 103.726478576660156, 1.271000027656555 ], [ 103.72591400146483, 1.271077990531978 ], [ 103.725250244140682, 1.271108984947205 ], [ 103.724617004394531, 1.27154195308691 ], [ 103.724357604980412, 1.272003054618835 ], [ 103.724128723144631, 1.272333025932369 ], [ 103.723831176757812, 1.272560954094047 ], [ 103.723480224609432, 1.272789001464901 ], [ 103.723075866699205, 1.273018956184387 ], [ 103.722549438476619, 1.273149013519401 ], [ 103.722007751464886, 1.273347973823604 ], [ 103.721488952636662, 1.273612022399902 ], [ 103.721008300781307, 1.273910999298209 ], [ 103.720558166503892, 1.274165987968388 ], [ 103.715835571289062, 1.278890013694763 ], [ 103.71555328369152, 1.278887987136955 ], [ 103.715278625488338, 1.27916598320013 ], [ 103.714164733886776, 1.27916598320013 ], [ 103.713058471679801, 1.278056025505123 ], [ 103.712776184082031, 1.278056025505123 ], [ 103.71250152587902, 1.277778029441776 ], [ 103.71221923828125, 1.277778029441776 ], [ 103.711669921875057, 1.278334021568241 ], [ 103.711387634277287, 1.278334021568241 ], [ 103.711112976074276, 1.278609991073665 ], [ 103.710830688476548, 1.278609991073665 ], [ 103.710556030273494, 1.278890013694763 ], [ 103.70916748046875, 1.278887987136955 ], [ 103.708610534668026, 1.279443979263249 ], [ 103.708335876464787, 1.279443979263249 ], [ 103.708053588867244, 1.279721975326595 ], [ 103.707778930664062, 1.279721975326595 ], [ 103.70694732666027, 1.280555963516235 ], [ 103.70694732666027, 1.281388044357413 ], [ 103.7066650390625, 1.281666040420589 ], [ 103.7066650390625, 1.283611059188843 ], [ 103.706390380859489, 1.283889055252132 ], [ 103.706390380859489, 1.285001039505119 ], [ 103.706108093261719, 1.285277009010315 ], [ 103.706108093261719, 1.286110997200126 ], [ 103.705833435058707, 1.286388993263245 ], [ 103.705833435058707, 1.286666989326591 ], [ 103.705558776855526, 1.286944985389709 ], [ 103.705558776855526, 1.287500977516174 ], [ 103.705276489257756, 1.287776947021598 ], [ 103.705276489257756, 1.288054943084717 ], [ 103.704170227050781, 1.289167046546993 ], [ 103.704170227050781, 1.289445042610168 ], [ 103.703887939453182, 1.289723038673515 ], [ 103.703887939453182, 1.290832996368465 ], [ 103.704444885253963, 1.291388988494987 ], [ 103.704719543456974, 1.291388988494987 ], [ 103.705276489257756, 1.291944980621452 ], [ 103.705558776855526, 1.291944980621452 ], [ 103.706108093261719, 1.292498946189937 ], [ 103.706108093261719, 1.293055057525635 ], [ 103.70644378662108, 1.293388009071407 ], [ 103.70694732666027, 1.293889045715389 ], [ 103.707221984863281, 1.293889045715389 ] ] ], [ [ [ 103.723335266113338, 1.287222981453056 ], [ 103.723335266113338, 1.286944985389709 ], [ 103.722778320312614, 1.286944985389709 ], [ 103.722778320312614, 1.287222981453056 ], [ 103.722221374511832, 1.287222981453056 ], [ 103.722221374511832, 1.286944985389709 ], [ 103.721664428711051, 1.286944985389709 ], [ 103.721664428711051, 1.287500977516174 ], [ 103.721946716308594, 1.287776947021598 ], [ 103.721946716308594, 1.288054943084717 ], [ 103.722221374511832, 1.288333058357239 ], [ 103.722221374511832, 1.288611054420528 ], [ 103.721664428711051, 1.289167046546993 ], [ 103.722503662109375, 1.289999008178711 ], [ 103.722503662109375, 1.290277004242 ], [ 103.723335266113338, 1.290277004242 ], [ 103.723335266113338, 1.289723038673515 ], [ 103.723892211914119, 1.289445042610168 ], [ 103.723892211914119, 1.287776947021598 ], [ 103.723335266113338, 1.287222981453056 ] ] ], [ [ [ 103.698890686035213, 1.28583300113678 ], [ 103.699165344238395, 1.285555005073604 ], [ 103.699722290039176, 1.285555005073604 ], [ 103.700279235839957, 1.285001039505119 ], [ 103.700836181640668, 1.285001039505119 ], [ 103.702224731445256, 1.283611059188843 ], [ 103.702224731445256, 1.282775998115539 ], [ 103.703887939453182, 1.281110048294067 ], [ 103.703887939453182, 1.280832052230948 ], [ 103.704170227050781, 1.280555963516235 ], [ 103.704170227050781, 1.279443979263249 ], [ 103.704444885253963, 1.27916598320013 ], [ 103.704444885253963, 1.278609991073665 ], [ 103.704719543456974, 1.278334021568241 ], [ 103.704719543456974, 1.278056025505123 ], [ 103.705276489257756, 1.277500033378658 ], [ 103.705276489257756, 1.277222037315482 ], [ 103.70694732666027, 1.275555968284664 ], [ 103.707496643066463, 1.275555968284664 ], [ 103.707778930664062, 1.275277972221375 ], [ 103.708053588867244, 1.275277972221375 ], [ 103.708335876464787, 1.275555968284664 ], [ 103.70916748046875, 1.275555968284664 ], [ 103.709442138671989, 1.275833964347839 ], [ 103.710556030273494, 1.275833964347839 ], [ 103.710830688476548, 1.275555968284664 ], [ 103.711112976074276, 1.275555968284664 ], [ 103.711387634277287, 1.275277972221375 ], [ 103.711669921875057, 1.275277972221375 ], [ 103.71221923828125, 1.275833964347839 ], [ 103.713058471679801, 1.275833964347839 ], [ 103.714164733886776, 1.274721980094853 ], [ 103.714164733886776, 1.274443984031734 ], [ 103.716392517089844, 1.272222042083797 ], [ 103.716667175293026, 1.272222042083797 ], [ 103.718055725097599, 1.270833969116268 ], [ 103.718612670898551, 1.270833969116268 ], [ 103.718887329101562, 1.271111965179443 ], [ 103.719444274902344, 1.271111965179443 ], [ 103.720832824707088, 1.269721031189022 ], [ 103.722778320312614, 1.269721031189022 ], [ 103.723052978515611, 1.269443035125732 ], [ 103.723335266113338, 1.269446015357971 ], [ 103.723892211914119, 1.268890023231506 ], [ 103.724166870117131, 1.268890023231506 ], [ 103.724441528320355, 1.269168019294796 ], [ 103.724563598632812, 1.269047021865845 ], [ 103.724723815918082, 1.268890023231506 ], [ 103.725830078125114, 1.268890023231506 ], [ 103.726387023925838, 1.268332958221549 ], [ 103.726623535156349, 1.267843008041382 ], [ 103.726715087890625, 1.267328023910466 ], [ 103.726585388183651, 1.266582965850773 ], [ 103.726425170898551, 1.265776038169861 ], [ 103.726310729980469, 1.265247941017208 ], [ 103.726173400878963, 1.264965057373047 ], [ 103.726058959961051, 1.264701008796806 ], [ 103.725875854492131, 1.264428973197937 ], [ 103.725769042968807, 1.264032959938049 ], [ 103.72554779052733, 1.263628959655761 ], [ 103.725250244140682, 1.263211965561027 ], [ 103.724884033203239, 1.26281297206873 ], [ 103.724464416503963, 1.262459993362427 ], [ 103.724052429199261, 1.262102007865849 ], [ 103.72365570068358, 1.261715054512081 ], [ 103.723251342773438, 1.261304974555912 ], [ 103.722785949707145, 1.260882973671016 ], [ 103.722167968750057, 1.260594010353032 ], [ 103.721832275390739, 1.260493040084839 ], [ 103.721519470214844, 1.260480046272391 ], [ 103.721107482910085, 1.260545969009513 ], [ 103.720672607421918, 1.260632038116569 ], [ 103.720298767089943, 1.260841965675468 ], [ 103.71994781494152, 1.261106014251709 ], [ 103.719566345214943, 1.261378049850577 ], [ 103.719139099121151, 1.261628031730709 ], [ 103.718704223632798, 1.261872053146419 ], [ 103.718330383300824, 1.26217794418335 ], [ 103.717964172363324, 1.262462019920349 ], [ 103.717567443847713, 1.262676954269409 ], [ 103.717094421386832, 1.262802004814262 ], [ 103.716644287109432, 1.262997984886283 ], [ 103.716224670410156, 1.263234972953853 ], [ 103.715934753418082, 1.263545036316032 ], [ 103.715583801269474, 1.263756990432853 ], [ 103.715240478515611, 1.264004945755062 ], [ 103.714866638183594, 1.264143943786678 ], [ 103.714439392089787, 1.264166951179618 ], [ 103.713958740234432, 1.264214992523136 ], [ 103.713500976562486, 1.264443039894161 ], [ 103.712959289550767, 1.264701008796806 ], [ 103.712341308593693, 1.264932990074158 ], [ 103.711860656738338, 1.265329957008362 ], [ 103.711433410644517, 1.265758037567252 ], [ 103.711097717285199, 1.266309976577816 ], [ 103.710762023925895, 1.266883969306889 ], [ 103.710426330566349, 1.267464995384273 ], [ 103.710151672363324, 1.268000960350037 ], [ 103.709953308105526, 1.268437981605473 ], [ 103.709701538085938, 1.268731951713676 ], [ 103.709419250488324, 1.268949031829834 ], [ 103.70916748046875, 1.269168019294796 ], [ 103.708885192871207, 1.269168019294796 ], [ 103.708610534668026, 1.269446015357971 ], [ 103.708335876464787, 1.269446015357971 ], [ 103.708053588867244, 1.269168019294796 ], [ 103.707778930664062, 1.269168019294796 ], [ 103.707656860351605, 1.269047021865845 ], [ 103.707496643066463, 1.268890023231506 ], [ 103.707221984863281, 1.268890023231506 ], [ 103.70694732666027, 1.268612027168331 ], [ 103.7066650390625, 1.268612027168331 ], [ 103.705833435058707, 1.267776966095084 ], [ 103.705833435058707, 1.267498970031738 ], [ 103.705558776855526, 1.26722097396862 ], [ 103.705558776855526, 1.266389012336731 ], [ 103.705001831054744, 1.265833020210266 ], [ 103.706108093261719, 1.264722943306083 ], [ 103.706108093261719, 1.264444947242794 ], [ 103.706390380859489, 1.264166951179618 ], [ 103.706390380859489, 1.263610959053153 ], [ 103.7066650390625, 1.263332962989807 ], [ 103.7066650390625, 1.263054966926688 ], [ 103.707221984863281, 1.262501001358146 ], [ 103.707221984863281, 1.261945009231681 ], [ 103.707778930664062, 1.261389017105216 ], [ 103.707778930664062, 1.26111102104187 ], [ 103.708335876464787, 1.26111102104187 ], [ 103.708610534668026, 1.260833024978751 ], [ 103.709442138671989, 1.260833024978751 ], [ 103.70999908447277, 1.260277032852287 ], [ 103.710556030273494, 1.260277032852287 ], [ 103.710830688476548, 1.260000944137516 ], [ 103.711944580078239, 1.260000944137516 ], [ 103.71221923828125, 1.259722948074397 ], [ 103.712776184082031, 1.259722948074397 ], [ 103.713058471679801, 1.259444952011222 ], [ 103.713058471679801, 1.258888959884757 ], [ 103.712776184082031, 1.258610963821468 ], [ 103.712776184082031, 1.258054971694946 ], [ 103.713607788085994, 1.257223010063285 ], [ 103.713607788085994, 1.256945014 ], [ 103.713890075683594, 1.25666701793682 ], [ 103.713890075683594, 1.256389021873474 ], [ 103.714164733886776, 1.256109952926693 ], [ 103.714164733886776, 1.255275964736882 ], [ 103.714447021484318, 1.255000948906002 ], [ 103.714447021484318, 1.25444400310522 ], [ 103.713890075683594, 1.253888010978756 ], [ 103.713607788085994, 1.253888010978756 ], [ 103.713058471679801, 1.25444400310522 ], [ 103.712776184082031, 1.25444400310522 ], [ 103.71221923828125, 1.255000948906002 ], [ 103.711944580078239, 1.255000948906002 ], [ 103.711669921875057, 1.25527894496912 ], [ 103.711387634277287, 1.25527894496912 ], [ 103.711112976074276, 1.255556941032467 ], [ 103.710556030273494, 1.255556941032467 ], [ 103.710281372070312, 1.255831956863403 ], [ 103.70916748046875, 1.255831956863403 ], [ 103.708610534668026, 1.25527894496912 ], [ 103.707778930664062, 1.25527894496912 ], [ 103.707336425781364, 1.254834055900631 ], [ 103.707221984863281, 1.254721999168396 ], [ 103.70694732666027, 1.254721999168396 ], [ 103.705001831054744, 1.252778053283748 ], [ 103.704719543456974, 1.252778053283748 ], [ 103.70361328125, 1.251665949821472 ], [ 103.703330993652457, 1.251943945884761 ], [ 103.702774047851676, 1.251387953758297 ], [ 103.701667785644474, 1.251387953758297 ], [ 103.701385498046932, 1.251665949821472 ], [ 103.700836181640668, 1.251665949821472 ], [ 103.700553894042969, 1.251943945884761 ], [ 103.700279235839957, 1.251943945884761 ], [ 103.699447631835994, 1.251109957695007 ], [ 103.699165344238395, 1.25111198425293 ], [ 103.698890686035213, 1.250833988189811 ], [ 103.698608398437443, 1.250833988189811 ], [ 103.698333740234432, 1.25111198425293 ], [ 103.697502136230469, 1.25111198425293 ], [ 103.697219848632926, 1.251387953758297 ], [ 103.696113586425881, 1.251387953758297 ], [ 103.695831298828182, 1.251665949821472 ], [ 103.695556640624943, 1.251665949821472 ], [ 103.695274353027401, 1.251943945884761 ], [ 103.695274353027401, 1.252221941947937 ], [ 103.694999694824219, 1.252500057220459 ], [ 103.694999694824219, 1.254166007041931 ], [ 103.694725036621136, 1.25444400310522 ], [ 103.694725036621136, 1.254721999168396 ], [ 103.694442749023438, 1.255000948906002 ], [ 103.694442749023438, 1.255275964736882 ], [ 103.693611145019645, 1.256109952926693 ], [ 103.693611145019645, 1.256389021873474 ], [ 103.693054199218864, 1.256945014 ], [ 103.693054199218864, 1.257223010063285 ], [ 103.692779541015682, 1.25750100612646 ], [ 103.692779541015682, 1.25777900218975 ], [ 103.693054199218864, 1.258054971694946 ], [ 103.693054199218864, 1.259166955947933 ], [ 103.693336486816392, 1.259444952011222 ], [ 103.693336486816392, 1.263610959053153 ], [ 103.693054199218864, 1.263888955116329 ], [ 103.693054199218864, 1.264166951179618 ], [ 103.692779541015682, 1.264444947242794 ], [ 103.692779541015682, 1.264722943306083 ], [ 103.692222595214901, 1.265277028083801 ], [ 103.691390991210938, 1.265277028083801 ], [ 103.691230773925767, 1.265120029449463 ], [ 103.691108703613324, 1.264999032020683 ], [ 103.690834045410156, 1.265001058578605 ], [ 103.690551757812614, 1.264722943306083 ], [ 103.690551757812614, 1.264166951179618 ], [ 103.689720153808651, 1.263332962989807 ], [ 103.688888549804631, 1.264166951179618 ], [ 103.688888549804631, 1.264444947242794 ], [ 103.688613891601605, 1.264722943306083 ], [ 103.688056945800838, 1.264722943306083 ], [ 103.687911987304801, 1.264582037925777 ], [ 103.687774658203125, 1.264444947242794 ], [ 103.687500000000114, 1.264444947242794 ], [ 103.686668395996151, 1.265277028083801 ], [ 103.686386108398537, 1.265277028083801 ], [ 103.685836791992131, 1.265833020210266 ], [ 103.685836791992131, 1.266667008400077 ], [ 103.685554504394588, 1.266942977905273 ], [ 103.685554504394588, 1.26722097396862 ], [ 103.685279846191406, 1.267498970031738 ], [ 103.685279846191406, 1.267776966095084 ], [ 103.684997558593793, 1.268054962158203 ], [ 103.684722900390625, 1.267776966095084 ], [ 103.684448242187599, 1.267498970031738 ], [ 103.684165954589844, 1.267498970031738 ], [ 103.683609008789062, 1.266942977905273 ], [ 103.683052062988338, 1.267498970031738 ], [ 103.683052062988338, 1.268054962158203 ], [ 103.683334350586051, 1.268332958221549 ], [ 103.683334350586051, 1.268612027168331 ], [ 103.683609008789062, 1.268890023231506 ], [ 103.683609008789062, 1.269168019294796 ], [ 103.683891296386818, 1.269446015357971 ], [ 103.683891296386818, 1.270833969116268 ], [ 103.683609008789062, 1.271111965179443 ], [ 103.683609008789062, 1.271389961242733 ], [ 103.683334350586051, 1.271666049957332 ], [ 103.683334350586051, 1.272500038146916 ], [ 103.683052062988338, 1.272778034210262 ], [ 103.683052062988338, 1.273056030273381 ], [ 103.682777404785099, 1.273334026336727 ], [ 103.683052062988338, 1.273612022399902 ], [ 103.683052062988338, 1.273890018463192 ], [ 103.683609008789062, 1.274443984031734 ], [ 103.684448242187599, 1.273612022399902 ], [ 103.684448242187599, 1.273334026336727 ], [ 103.685279846191406, 1.272500038146916 ], [ 103.685836791992131, 1.272500038146916 ], [ 103.686668395996151, 1.273334026336727 ], [ 103.686943054199332, 1.273334026336727 ], [ 103.687225341796861, 1.273612022399902 ], [ 103.688056945800838, 1.273612022399902 ], [ 103.688362121582031, 1.274446010589656 ], [ 103.688613891601605, 1.275277972221375 ], [ 103.691108703613324, 1.277778029441776 ], [ 103.692222595214901, 1.277778029441776 ], [ 103.692779541015682, 1.277222037315482 ], [ 103.692779541015682, 1.276944041252193 ], [ 103.693054199218864, 1.276666045189017 ], [ 103.692779541015682, 1.276388049125728 ], [ 103.692779541015682, 1.274443984031734 ], [ 103.692497253417912, 1.274443984031734 ], [ 103.692222595214901, 1.274165987968388 ], [ 103.692222595214901, 1.273890018463192 ], [ 103.691947937011719, 1.273612022399902 ], [ 103.691947937011719, 1.273334026336727 ], [ 103.691665649414119, 1.273056030273381 ], [ 103.691947937011719, 1.272778034210262 ], [ 103.691947937011719, 1.272500038146916 ], [ 103.692497253417912, 1.271944046020621 ], [ 103.693336486816392, 1.271944046020621 ], [ 103.693611145019645, 1.271666049957332 ], [ 103.693885803222656, 1.271666049957332 ], [ 103.694168090820426, 1.271944046020621 ], [ 103.693885803222656, 1.272222042083797 ], [ 103.694168090820426, 1.272500038146916 ], [ 103.694168090820426, 1.272778034210262 ], [ 103.694442749023438, 1.273056030273381 ], [ 103.694442749023438, 1.273334026336727 ], [ 103.694168090820426, 1.273612022399902 ], [ 103.694168090820426, 1.273890018463192 ], [ 103.694725036621136, 1.274443984031734 ], [ 103.694725036621136, 1.275555968284664 ], [ 103.694442749023438, 1.275833964347839 ], [ 103.694442749023438, 1.276666045189017 ], [ 103.695274353027401, 1.277500033378658 ], [ 103.695274353027401, 1.278056025505123 ], [ 103.695556640624943, 1.278334021568241 ], [ 103.695556640624943, 1.278887987136955 ], [ 103.695831298828182, 1.27916598320013 ], [ 103.695274353027401, 1.279721975326595 ], [ 103.695274353027401, 1.279999971389713 ], [ 103.694999694824219, 1.28027796745306 ], [ 103.694999694824219, 1.280555963516235 ], [ 103.694725036621136, 1.280832052230948 ], [ 103.694725036621136, 1.281110048294067 ], [ 103.694442749023438, 1.281388044357413 ], [ 103.694442749023438, 1.281944036483878 ], [ 103.694999694824219, 1.28250098228466 ], [ 103.695274353027401, 1.28250098228466 ], [ 103.695556640624943, 1.282778978347778 ], [ 103.696388244628906, 1.282778978347778 ], [ 103.696945190429688, 1.283331990242061 ], [ 103.696945190429688, 1.283611059188843 ], [ 103.697502136230469, 1.284167051315308 ], [ 103.697502136230469, 1.284445047378654 ], [ 103.698890686035213, 1.28583300113678 ] ] ], [ [ [ 103.680046081543026, 1.27981603145605 ], [ 103.680496215820256, 1.27957904338848 ], [ 103.681037902832145, 1.279598951339665 ], [ 103.681388854980582, 1.27954196929943 ], [ 103.681564331054744, 1.279513001442012 ], [ 103.681999206543068, 1.279163956642151 ], [ 103.682418823242188, 1.278704047203121 ], [ 103.682907104492244, 1.278239011764526 ], [ 103.683456420898494, 1.277866959571895 ], [ 103.683914184570256, 1.277595996856689 ], [ 103.684242248535213, 1.2773339748382 ], [ 103.684371948242188, 1.27706694602972 ], [ 103.684211730957088, 1.276736974716187 ], [ 103.68387603759777, 1.276358008384761 ], [ 103.683525085449318, 1.275938987731933 ], [ 103.683120727539176, 1.27559494972229 ], [ 103.682640075683594, 1.275303006172237 ], [ 103.682014465331974, 1.275025010108948 ], [ 103.681716918945369, 1.274940967559814 ], [ 103.681297302246094, 1.274813055992126 ], [ 103.680717468261719, 1.274883985519409 ], [ 103.680191040039119, 1.275109052658195 ], [ 103.679763793945312, 1.275393962860107 ], [ 103.679412841796875, 1.275696992874202 ], [ 103.679046630859432, 1.275938987731933 ], [ 103.678657531738338, 1.276113986969108 ], [ 103.678298950195369, 1.276272058486938 ], [ 103.67795562744152, 1.276376962661857 ], [ 103.677604675293082, 1.276465058326835 ], [ 103.677238464355412, 1.276626944542045 ], [ 103.676811218261818, 1.27674305439001 ], [ 103.676445007324318, 1.276960015296993 ], [ 103.676200866699261, 1.277253985405025 ], [ 103.676177978515668, 1.277729988098258 ], [ 103.676239013671989, 1.278347969055176 ], [ 103.676307678222656, 1.278926968574581 ], [ 103.676414489746136, 1.279562950134277 ], [ 103.676681518554631, 1.280107021331787 ], [ 103.677078247070312, 1.280316948890686 ], [ 103.67758941650402, 1.280519962310791 ], [ 103.677917480468807, 1.280578970909175 ], [ 103.678253173828111, 1.280639052390995 ], [ 103.678680419921932, 1.280537962913627 ], [ 103.679115295410256, 1.280436038971061 ], [ 103.679649353027401, 1.280118942260742 ], [ 103.680046081543026, 1.27981603145605 ] ] ], [ [ [ 103.813056945800724, 1.262501001358146 ], [ 103.811386108398438, 1.262501001358146 ], [ 103.811386108398438, 1.262776970863342 ], [ 103.810554504394645, 1.263054966926688 ], [ 103.811111450195426, 1.263610959053153 ], [ 103.811111450195426, 1.263888955116329 ], [ 103.811386108398438, 1.264166951179618 ], [ 103.811386108398438, 1.264444947242794 ], [ 103.811523437499943, 1.264582037925777 ], [ 103.811668395996207, 1.264722943306083 ], [ 103.812225341796932, 1.264722943306083 ], [ 103.812225341796932, 1.264166951179618 ], [ 103.813331604003963, 1.263610959053153 ], [ 103.813613891601506, 1.263332962989807 ], [ 103.813056945800724, 1.262776970863342 ], [ 103.813056945800724, 1.262501001358146 ] ] ], [ [ [ 103.836669921875114, 1.264444947242794 ], [ 103.837776184082088, 1.263332962989807 ], [ 103.837776184082088, 1.263054966926688 ], [ 103.840278625488395, 1.260555028915405 ], [ 103.840553283691406, 1.260555028915405 ], [ 103.842498779296932, 1.258610963821468 ], [ 103.842498779296932, 1.257223010063285 ], [ 103.841667175292898, 1.256389021873474 ], [ 103.841392517089901, 1.256389021873474 ], [ 103.841110229492188, 1.25666701793682 ], [ 103.840278625488395, 1.25666701793682 ], [ 103.839996337890611, 1.256389021873474 ], [ 103.839447021484418, 1.256389021873474 ], [ 103.839164733886832, 1.256109952926693 ], [ 103.838333129882869, 1.256109952926693 ], [ 103.838195800781364, 1.255970954895133 ], [ 103.838058471679673, 1.255831956863403 ], [ 103.837776184082088, 1.255831956863403 ], [ 103.836387634277344, 1.25444400310522 ], [ 103.836112976074332, 1.254721999168396 ], [ 103.835830688476619, 1.254721999168396 ], [ 103.835556030273366, 1.255000948906002 ], [ 103.834999084472656, 1.255000948906002 ], [ 103.834724426269588, 1.25527894496912 ], [ 103.833053588867301, 1.25527894496912 ], [ 103.832778930664105, 1.255556941032467 ], [ 103.832496643066349, 1.255556941032467 ], [ 103.832221984863338, 1.255831956863403 ], [ 103.831665039062557, 1.255831956863403 ], [ 103.831390380859361, 1.256109952926693 ], [ 103.830833435058594, 1.256109952926693 ], [ 103.830558776855582, 1.256389021873474 ], [ 103.830276489257812, 1.256109952926693 ], [ 103.828330993652344, 1.256109952926693 ], [ 103.828056335449276, 1.256389021873474 ], [ 103.827774047851548, 1.256389021873474 ], [ 103.827499389648551, 1.25666701793682 ], [ 103.82694244384777, 1.25666701793682 ], [ 103.826385498046989, 1.257223010063285 ], [ 103.826385498046989, 1.258054971694946 ], [ 103.82527923583983, 1.259166955947933 ], [ 103.82527923583983, 1.259722948074397 ], [ 103.824996948242244, 1.260000944137516 ], [ 103.824996948242244, 1.260555028915405 ], [ 103.82527923583983, 1.260833024978751 ], [ 103.82527923583983, 1.26111102104187 ], [ 103.825553894043026, 1.261389017105216 ], [ 103.826110839843807, 1.261389017105216 ], [ 103.827224731445312, 1.262501001358146 ], [ 103.827499389648551, 1.262501001358146 ], [ 103.827774047851548, 1.262776970863342 ], [ 103.828330993652344, 1.262776970863342 ], [ 103.828613281250057, 1.263054966926688 ], [ 103.828887939453068, 1.263054966926688 ], [ 103.829444885253835, 1.263610959053153 ], [ 103.829719543457088, 1.263610959053153 ], [ 103.830001831054801, 1.263888955116329 ], [ 103.830276489257812, 1.263888955116329 ], [ 103.830558776855582, 1.264166951179618 ], [ 103.830833435058594, 1.264166951179618 ], [ 103.831108093261776, 1.264444947242794 ], [ 103.831665039062557, 1.264444947242794 ], [ 103.831947326660156, 1.264166951179618 ], [ 103.832221984863338, 1.264166951179618 ], [ 103.832496643066349, 1.264444947242794 ], [ 103.833610534668082, 1.264444947242794 ], [ 103.83388519287108, 1.264166951179618 ], [ 103.834167480468864, 1.264166951179618 ], [ 103.834442138671875, 1.264444947242794 ], [ 103.835556030273366, 1.264444947242794 ], [ 103.836112976074332, 1.264444947242794 ], [ 103.836387634277344, 1.264166951179618 ], [ 103.836669921875114, 1.264444947242794 ] ] ], [ [ [ 103.809722900390682, 1.259722948074397 ], [ 103.809997558593693, 1.259444952011222 ], [ 103.810279846191463, 1.259444952011222 ], [ 103.810554504394645, 1.259166955947933 ], [ 103.810836791992244, 1.259166955947933 ], [ 103.811111450195426, 1.258888959884757 ], [ 103.811943054199219, 1.258888959884757 ], [ 103.812225341796932, 1.258610963821468 ], [ 103.814163208007926, 1.258610963821468 ], [ 103.814445495605469, 1.258332967758292 ], [ 103.815551757812486, 1.258332967758292 ], [ 103.815834045410213, 1.258610963821468 ], [ 103.816947937011776, 1.258610963821468 ], [ 103.817222595214957, 1.258888959884757 ], [ 103.81833648681652, 1.258888959884757 ], [ 103.818611145019517, 1.258610963821468 ], [ 103.818885803222713, 1.258610963821468 ], [ 103.819168090820298, 1.258332967758292 ], [ 103.819725036621037, 1.258332967758292 ], [ 103.819999694824276, 1.258054971694946 ], [ 103.820831298828239, 1.258054971694946 ], [ 103.821113586425781, 1.25777900218975 ], [ 103.821945190429744, 1.25777900218975 ], [ 103.822502136230526, 1.257223010063285 ], [ 103.823333740234489, 1.257223010063285 ], [ 103.8236083984375, 1.256945014 ], [ 103.82389068603527, 1.256945014 ], [ 103.82527923583983, 1.255556941032467 ], [ 103.82527923583983, 1.25527894496912 ], [ 103.825553894043026, 1.255000948906002 ], [ 103.825836181640568, 1.255000948906002 ], [ 103.826110839843807, 1.254721999168396 ], [ 103.826385498046989, 1.254721999168396 ], [ 103.826667785644574, 1.25444400310522 ], [ 103.827224731445312, 1.25444400310522 ], [ 103.827499389648551, 1.254166007041931 ], [ 103.829170227050838, 1.254166007041931 ], [ 103.829444885253835, 1.253888010978756 ], [ 103.829719543457088, 1.254166007041931 ], [ 103.830001831054801, 1.254166007041931 ], [ 103.830276489257812, 1.25444400310522 ], [ 103.830558776855582, 1.25444400310522 ], [ 103.831108093261776, 1.253888010978756 ], [ 103.832778930664105, 1.253888010978756 ], [ 103.833053588867301, 1.253610014915409 ], [ 103.833335876464844, 1.253610014915409 ], [ 103.833610534668082, 1.253332018852291 ], [ 103.834167480468864, 1.253332018852291 ], [ 103.834999084472656, 1.252500057220459 ], [ 103.835556030273366, 1.252500057220459 ], [ 103.836669921875114, 1.251387953758297 ], [ 103.836944580078125, 1.251387953758297 ], [ 103.836944580078125, 1.250833988189811 ], [ 103.837501525878892, 1.250277996063289 ], [ 103.837501525878892, 1.25 ], [ 103.838058471679673, 1.249444007873535 ], [ 103.838333129882869, 1.249444007873535 ], [ 103.838470458984361, 1.249583005905265 ], [ 103.838607788085881, 1.249722003936824 ], [ 103.839164733886832, 1.249722003936824 ], [ 103.839447021484418, 1.25 ], [ 103.839996337890611, 1.25 ], [ 103.840835571289119, 1.250833988189811 ], [ 103.840835571289119, 1.251109957695007 ], [ 103.841392517089901, 1.251665949821472 ], [ 103.842224121093679, 1.251665949821472 ], [ 103.842498779296932, 1.251943945884761 ], [ 103.843330383300881, 1.251943945884761 ], [ 103.843612670898423, 1.252221941947937 ], [ 103.843887329101619, 1.252221941947937 ], [ 103.844169616699205, 1.251943945884761 ], [ 103.844718933105398, 1.251943945884761 ], [ 103.845558166503949, 1.252778053283748 ], [ 103.846389770507926, 1.252778053283748 ], [ 103.846664428710938, 1.252500057220459 ], [ 103.846664428710938, 1.251387953758297 ], [ 103.8477783203125, 1.250277996063289 ], [ 103.8477783203125, 1.25 ], [ 103.847221374511719, 1.249444007873535 ], [ 103.847221374511719, 1.24916601181036 ], [ 103.846946716308693, 1.24888801574707 ], [ 103.846946716308693, 1.248612046241817 ], [ 103.846664428710938, 1.248612046241817 ], [ 103.846664428710938, 1.248334050178528 ], [ 103.846107482910142, 1.247778058052063 ], [ 103.845764160156307, 1.247153043747005 ], [ 103.845626831054801, 1.246945977210998 ], [ 103.845275878906193, 1.246665954589901 ], [ 103.845001220703182, 1.246389985084534 ], [ 103.845001220703182, 1.245833992958069 ], [ 103.844718933105398, 1.24555599689495 ], [ 103.844718933105398, 1.245278000831604 ], [ 103.844444274902401, 1.245000004768428 ], [ 103.844444274902401, 1.244722008705139 ], [ 103.843887329101619, 1.244166016578674 ], [ 103.843269348144588, 1.243473052978572 ], [ 103.842918395996151, 1.243056058883667 ], [ 103.842498779296932, 1.242777943611145 ], [ 103.842224121093679, 1.24249899387371 ], [ 103.841941833496136, 1.24249899387371 ], [ 103.841392517089901, 1.241943001747245 ], [ 103.841110229492188, 1.241943001747245 ], [ 103.840835571289119, 1.241667985916138 ], [ 103.840835571289119, 1.241111040115413 ], [ 103.840278625488395, 1.240555047988892 ], [ 103.840278625488395, 1.240277051925773 ], [ 103.839996337890611, 1.239999055862427 ], [ 103.839996337890611, 1.239722967147884 ], [ 103.838890075683636, 1.238610982894954 ], [ 103.838333129882869, 1.238610982894954 ], [ 103.838058471679673, 1.238888978958073 ], [ 103.837501525878892, 1.238888978958073 ], [ 103.837501525878892, 1.240277051925773 ], [ 103.836669921875114, 1.240277051925773 ], [ 103.836387634277344, 1.239999055862427 ], [ 103.836112976074332, 1.240002036094666 ], [ 103.834167480468864, 1.238054990768489 ], [ 103.834167480468864, 1.237776994705314 ], [ 103.833610534668082, 1.237221002578849 ], [ 103.832778930664105, 1.237221002578849 ], [ 103.830558776855582, 1.239444971084538 ], [ 103.830001831054801, 1.239444971084538 ], [ 103.829719543457088, 1.239722967147884 ], [ 103.829444885253835, 1.239722967147884 ], [ 103.828056335449276, 1.241111040115413 ], [ 103.828330993652344, 1.241389989853019 ], [ 103.828056335449276, 1.241667985916138 ], [ 103.828056335449276, 1.241943001747245 ], [ 103.827774047851548, 1.242220997810364 ], [ 103.827224731445312, 1.242220997810364 ], [ 103.826873779296932, 1.242223978042603 ], [ 103.826461791992173, 1.24215304851532 ], [ 103.824996948242244, 1.243334054946956 ], [ 103.824996948242244, 1.243890047073478 ], [ 103.824722290039062, 1.244166016578674 ], [ 103.824722290039062, 1.244444012641964 ], [ 103.824165344238281, 1.245000004768428 ], [ 103.824165344238281, 1.245278000831604 ], [ 103.8236083984375, 1.245833992958069 ], [ 103.8236083984375, 1.246665954589901 ], [ 103.822502136230526, 1.247778058052063 ], [ 103.821945190429744, 1.247778058052063 ], [ 103.821113586425781, 1.248612046241817 ], [ 103.821113586425781, 1.24888801574707 ], [ 103.820831298828239, 1.24916601181036 ], [ 103.820556640625, 1.24916601181036 ], [ 103.820274353027457, 1.249444007873535 ], [ 103.819168090820298, 1.249444007873535 ], [ 103.818885803222713, 1.249722003936824 ], [ 103.818611145019517, 1.249722003936824 ], [ 103.817779541015739, 1.250555992126465 ], [ 103.817779541015739, 1.250833988189811 ], [ 103.816665649414006, 1.251943945884761 ], [ 103.816390991210994, 1.251943945884761 ], [ 103.815834045410213, 1.252500057220459 ], [ 103.815551757812486, 1.252500057220459 ], [ 103.814445495605469, 1.253610014915409 ], [ 103.813888549804744, 1.253610014915409 ], [ 103.813613891601506, 1.253888010978756 ], [ 103.813056945800724, 1.253888010978756 ], [ 103.812225341796932, 1.254721999168396 ], [ 103.812225341796932, 1.255000948906002 ], [ 103.811668395996207, 1.255556941032467 ], [ 103.811668395996207, 1.255831956863403 ], [ 103.811386108398438, 1.255831956863403 ], [ 103.811111450195426, 1.256109952926693 ], [ 103.810836791992244, 1.256109952926693 ], [ 103.810554504394645, 1.256389021873474 ], [ 103.810279846191463, 1.256389021873474 ], [ 103.809997558593693, 1.25666701793682 ], [ 103.8094482421875, 1.25666701793682 ], [ 103.808334350585938, 1.25777900218975 ], [ 103.808052062988395, 1.25777900218975 ], [ 103.806945800781193, 1.258888959884757 ], [ 103.806945800781193, 1.259166955947933 ], [ 103.807220458984432, 1.259444952011222 ], [ 103.807777404785156, 1.259444952011222 ], [ 103.808052062988395, 1.259722948074397 ], [ 103.809722900390682, 1.259722948074397 ] ] ], [ [ [ 103.838066101074219, 1.254377961158752 ], [ 103.838760375976676, 1.253958940506095 ], [ 103.839996337890611, 1.253958940506095 ], [ 103.839996337890611, 1.253680944442749 ], [ 103.839721679687614, 1.25340294837963 ], [ 103.839721679687614, 1.253124952316284 ], [ 103.837776184082088, 1.253124952316284 ], [ 103.837303161621094, 1.25340294837963 ], [ 103.837516784667969, 1.253960967064017 ], [ 103.838066101074219, 1.254377961158752 ] ] ], [ [ [ 103.763053894043082, 1.241111040115413 ], [ 103.763336181640625, 1.240833044052238 ], [ 103.763610839843849, 1.240833044052238 ], [ 103.763885498046875, 1.240555047988892 ], [ 103.764167785644645, 1.240555047988892 ], [ 103.764442443847656, 1.240277051925773 ], [ 103.764724731445369, 1.240277051925773 ], [ 103.764999389648438, 1.239999055862427 ], [ 103.765274047851619, 1.240002036094666 ], [ 103.766944885253906, 1.238332986831779 ], [ 103.767219543457145, 1.238332986831779 ], [ 103.767776489257855, 1.237776994705314 ], [ 103.768058776855469, 1.237779021263066 ], [ 103.768333435058636, 1.237501025199947 ], [ 103.768890380859432, 1.237501025199947 ], [ 103.769165039062614, 1.237223029136601 ], [ 103.769447326660213, 1.237223029136601 ], [ 103.771942138671932, 1.234722971916199 ], [ 103.771942138671932, 1.234444975853023 ], [ 103.772499084472713, 1.233888983726558 ], [ 103.772499084472713, 1.233610987663212 ], [ 103.775558471679744, 1.230555057525692 ], [ 103.778892517089957, 1.227221965789909 ], [ 103.778892517089957, 1.226943969726562 ], [ 103.779167175292955, 1.226665973663444 ], [ 103.779167175292955, 1.22527801990509 ], [ 103.779441833496207, 1.225000023841971 ], [ 103.779441833496207, 1.224444031715507 ], [ 103.778892517089957, 1.223888039588985 ], [ 103.778892517089957, 1.223611950874442 ], [ 103.778610229492244, 1.223333954811153 ], [ 103.778335571289006, 1.223333954811153 ], [ 103.778053283691463, 1.223611950874442 ], [ 103.777778625488281, 1.223611950874442 ], [ 103.777496337890682, 1.223889946937618 ], [ 103.776947021484489, 1.223888039588985 ], [ 103.776664733886719, 1.224166035652161 ], [ 103.776107788085938, 1.224166035652161 ], [ 103.775833129882912, 1.224444031715507 ], [ 103.773887634277386, 1.224444031715507 ], [ 103.772781372070426, 1.225556015968436 ], [ 103.772781372070426, 1.225834012031555 ], [ 103.772087097167969, 1.227061033249015 ], [ 103.772087097167969, 1.22747802734375 ], [ 103.771881103515625, 1.22761702537548 ], [ 103.771530151367173, 1.22782397270214 ], [ 103.771461486816349, 1.228103995323238 ], [ 103.771186828613338, 1.228312015533504 ], [ 103.770912170410156, 1.228660941123962 ], [ 103.770286560058707, 1.228870034217948 ], [ 103.770080566406364, 1.228592038154602 ], [ 103.770011901855469, 1.227964997291622 ], [ 103.770011901855469, 1.227267980575675 ], [ 103.769943237304631, 1.226709961891231 ], [ 103.76924896240233, 1.226362943649349 ], [ 103.768905639648494, 1.226083040237427 ], [ 103.768554687500114, 1.225875020027161 ], [ 103.767448425293082, 1.225594997406063 ], [ 103.766067504882869, 1.225594997406063 ], [ 103.765441894531307, 1.225388050079402 ], [ 103.765167236328068, 1.225388050079402 ], [ 103.764442443847656, 1.22527801990509 ], [ 103.764167785644645, 1.225000023841971 ], [ 103.763610839843849, 1.225000023841971 ], [ 103.763336181640625, 1.22527801990509 ], [ 103.762779235839901, 1.22527801990509 ], [ 103.762222290039105, 1.22534894943243 ], [ 103.761528015136832, 1.22534894943243 ], [ 103.760833740234375, 1.225834012031555 ], [ 103.760559082031364, 1.225834012031555 ], [ 103.76027679443358, 1.226109981536979 ], [ 103.760002136230582, 1.226109981536979 ], [ 103.759719848632869, 1.226387977600098 ], [ 103.759445190429631, 1.226387977600098 ], [ 103.757774353027344, 1.228057026863155 ], [ 103.757499694824318, 1.228057026863155 ], [ 103.757225036621094, 1.228332042694092 ], [ 103.756942749023551, 1.228332042694092 ], [ 103.756111145019574, 1.229166984558162 ], [ 103.756111145019574, 1.229444980621338 ], [ 103.755554199218793, 1.230000972747803 ], [ 103.755554199218793, 1.230278968811092 ], [ 103.754165649414048, 1.231667041778621 ], [ 103.754165649414048, 1.23194503784174 ], [ 103.753890991211051, 1.232223033905086 ], [ 103.753890991211051, 1.233054995536918 ], [ 103.754165649414048, 1.233332991600093 ], [ 103.754165649414048, 1.234444975853023 ], [ 103.753890991211051, 1.234722971916199 ], [ 103.753890991211051, 1.235277056694031 ], [ 103.754165649414048, 1.235555052757377 ], [ 103.754165649414048, 1.236111044883842 ], [ 103.754997253418026, 1.236945033073482 ], [ 103.755554199218793, 1.236945033073482 ], [ 103.755836486816335, 1.237223029136601 ], [ 103.756668090820369, 1.237223029136601 ], [ 103.757774353027344, 1.236111044883842 ], [ 103.757774353027344, 1.235833048820552 ], [ 103.758056640625057, 1.235555052757377 ], [ 103.758056640625057, 1.235277056694031 ], [ 103.758331298828125, 1.235000967979488 ], [ 103.758331298828125, 1.234722971916199 ], [ 103.759162902832088, 1.233888983726558 ], [ 103.759445190429631, 1.233888983726558 ], [ 103.759719848632869, 1.234166979789677 ], [ 103.759719848632869, 1.234444975853023 ], [ 103.76027679443358, 1.235000967979488 ], [ 103.76027679443358, 1.235833048820552 ], [ 103.760002136230582, 1.236111044883842 ], [ 103.760002136230582, 1.236389040947017 ], [ 103.759719848632869, 1.236667037010307 ], [ 103.759719848632869, 1.236945033073482 ], [ 103.759162902832088, 1.237498998642025 ], [ 103.759162902832088, 1.238054990768489 ], [ 103.758888244628835, 1.238332986831779 ], [ 103.758888244628835, 1.238888978958073 ], [ 103.761108398437557, 1.241111040115413 ], [ 103.761947631835938, 1.241111040115413 ], [ 103.762222290039105, 1.240833044052238 ], [ 103.762496948242131, 1.241111040115413 ], [ 103.763053894043082, 1.241111040115413 ] ] ], [ [ [ 103.751113891601562, 1.239444971084538 ], [ 103.751388549804787, 1.239166975021419 ], [ 103.751388549804787, 1.238888978958073 ], [ 103.750831604004006, 1.238332986831779 ], [ 103.750831604004006, 1.235555052757377 ], [ 103.751113891601562, 1.235277056694031 ], [ 103.751113891601562, 1.235000967979488 ], [ 103.751388549804787, 1.234722971916199 ], [ 103.751388549804787, 1.234166979789677 ], [ 103.750831604004006, 1.233610987663212 ], [ 103.750831604004006, 1.233332991600093 ], [ 103.75, 1.233332991600093 ], [ 103.749443054199261, 1.232779026031551 ], [ 103.749168395996094, 1.232779026031551 ], [ 103.748336791992301, 1.23194503784174 ], [ 103.747497558593736, 1.23194503784174 ], [ 103.747222900390739, 1.231667041778621 ], [ 103.747222900390739, 1.231389045715446 ], [ 103.745277404785213, 1.231389045715446 ], [ 103.745002746582031, 1.231111049652156 ], [ 103.744720458984474, 1.231111049652156 ], [ 103.74444580078125, 1.231389045715446 ], [ 103.743614196777273, 1.231389045715446 ], [ 103.74333190917973, 1.231111049652156 ], [ 103.742774963378963, 1.231111049652156 ], [ 103.742500305175781, 1.231389045715446 ], [ 103.741943359374986, 1.231389045715446 ], [ 103.741668701171989, 1.231667041778621 ], [ 103.741386413574205, 1.231667041778621 ], [ 103.73944091796875, 1.233610987663212 ], [ 103.73944091796875, 1.233888983726558 ], [ 103.741111755371207, 1.235555052757377 ], [ 103.741386413574205, 1.235555052757377 ], [ 103.741943359374986, 1.236111044883842 ], [ 103.742225646972713, 1.236389040947017 ], [ 103.742774963378963, 1.236389040947017 ], [ 103.743057250976506, 1.236667037010307 ], [ 103.743057250976506, 1.236945033073482 ], [ 103.74333190917973, 1.237221002578849 ], [ 103.742500305175781, 1.238054990768489 ], [ 103.741943359374986, 1.238054990768489 ], [ 103.741668701171989, 1.238332986831779 ], [ 103.741668701171989, 1.238888978958073 ], [ 103.742225646972713, 1.239444971084538 ], [ 103.742500305175781, 1.239444971084538 ], [ 103.742721557617188, 1.239665985107479 ], [ 103.743057250976506, 1.240002036094666 ], [ 103.74333190917973, 1.240002036094666 ], [ 103.743888854980526, 1.239442944526786 ], [ 103.744163513183707, 1.239444971084538 ], [ 103.74444580078125, 1.239166975021419 ], [ 103.745002746582031, 1.239166975021419 ], [ 103.745552062988281, 1.239722967147884 ], [ 103.746109008788991, 1.239722967147884 ], [ 103.746391296386776, 1.240002036094666 ], [ 103.746948242187543, 1.240002036094666 ], [ 103.747222900390739, 1.239722967147884 ], [ 103.747497558593736, 1.239722967147884 ], [ 103.74777984619152, 1.239444971084538 ], [ 103.748054504394517, 1.239444971084538 ], [ 103.748886108398494, 1.240277051925773 ], [ 103.749168395996094, 1.240277051925773 ], [ 103.749725341796804, 1.240833044052238 ], [ 103.750274658203239, 1.240833044052238 ], [ 103.750831604004006, 1.240277051925773 ], [ 103.750831604004006, 1.239999055862427 ], [ 103.751113891601562, 1.239722967147884 ], [ 103.751113891601562, 1.239444971084538 ] ] ], [ [ [ 103.839111328125057, 1.22832095623022 ], [ 103.838706970214901, 1.228245973587036 ], [ 103.838493347168026, 1.228453040123043 ], [ 103.838264465332031, 1.228811025619564 ], [ 103.837905883789062, 1.229223012924308 ], [ 103.837486267089844, 1.229704022407532 ], [ 103.837036132812614, 1.230193972587699 ], [ 103.836685180664176, 1.230782032013053 ], [ 103.836410522460994, 1.231423020362911 ], [ 103.836288452148551, 1.232095003128165 ], [ 103.836418151855526, 1.23244404792797 ], [ 103.836502075195241, 1.232676029205379 ], [ 103.837005615234432, 1.232606053352356 ], [ 103.837356567382869, 1.232467055320797 ], [ 103.837699890136719, 1.232118010520935 ], [ 103.837905883789062, 1.231840014457816 ], [ 103.838180541992301, 1.231351971626225 ], [ 103.838462829589844, 1.231003999710083 ], [ 103.838737487793011, 1.230725049972648 ], [ 103.839218139648438, 1.230028033256644 ], [ 103.839569091796818, 1.229750037193298 ], [ 103.839843750000057, 1.229611039161739 ], [ 103.840026855468793, 1.22921705245983 ], [ 103.839736938476662, 1.228718042373771 ], [ 103.839111328125057, 1.22832095623022 ] ] ], [ [ [ 103.856178283691392, 1.228680968284721 ], [ 103.855628967285156, 1.228680968284721 ], [ 103.855209350585881, 1.229166984558162 ], [ 103.855003356933537, 1.229444980621338 ], [ 103.854789733886832, 1.22993195056921 ], [ 103.855278015136776, 1.230278968811092 ], [ 103.855972290038991, 1.230762004852295 ], [ 103.856666564941463, 1.23194503784174 ], [ 103.856803894043026, 1.232084035873527 ], [ 103.856941223144531, 1.232223033905086 ], [ 103.857223510742244, 1.232223033905086 ], [ 103.857498168945256, 1.23194503784174 ], [ 103.858123779296875, 1.231111049652156 ], [ 103.857986450195369, 1.230417966842708 ], [ 103.857223510742244, 1.229375958442745 ], [ 103.856941223144531, 1.229166984558162 ], [ 103.856178283691392, 1.228680968284721 ] ] ], [ [ [ 103.853614807128963, 1.230000972747803 ], [ 103.852920532226491, 1.229374051094169 ], [ 103.852363586425781, 1.228543996810913 ], [ 103.851943969726676, 1.228057026863155 ], [ 103.851600646972656, 1.227985978126469 ], [ 103.850692749023423, 1.227985978126469 ], [ 103.850273132324219, 1.228263974189815 ], [ 103.849441528320412, 1.228610038757381 ], [ 103.849441528320412, 1.229722976684627 ], [ 103.849929809570312, 1.23006200790411 ], [ 103.850204467773551, 1.23006200790411 ], [ 103.850547790527401, 1.22985303401947 ], [ 103.850761413574332, 1.229784011840934 ], [ 103.85103607177733, 1.229784011840934 ], [ 103.851593017578111, 1.22985303401947 ], [ 103.851867675781307, 1.230340003967399 ], [ 103.852416992187557, 1.230620980262813 ], [ 103.852630615234432, 1.230788946151847 ], [ 103.852767944335938, 1.230898976325932 ], [ 103.85333251953125, 1.230555057525692 ], [ 103.853614807128963, 1.230278968811092 ], [ 103.853614807128963, 1.230000972747803 ] ] ], [ [ [ 103.851943969726676, 1.226665973663444 ], [ 103.852500915527457, 1.226109981536979 ], [ 103.852775573730469, 1.226109981536979 ], [ 103.853057861328224, 1.226387977600098 ], [ 103.85333251953125, 1.226387977600098 ], [ 103.855278015136776, 1.224444031715507 ], [ 103.855552673339943, 1.224444031715507 ], [ 103.857223510742244, 1.222777962684631 ], [ 103.857498168945256, 1.222777962684631 ], [ 103.857734680175781, 1.222440958023128 ], [ 103.858016967773551, 1.222123980522213 ], [ 103.858238220214957, 1.221717953681946 ], [ 103.858299255371094, 1.221212029457149 ], [ 103.858207702636832, 1.220720052719173 ], [ 103.858070373535099, 1.220296025276184 ], [ 103.857948303222713, 1.219918012619075 ], [ 103.85782623291027, 1.219580054283085 ], [ 103.857780456543011, 1.219174981117362 ], [ 103.857635498046989, 1.218688964843693 ], [ 103.857086181640739, 1.218126058578491 ], [ 103.856765747070312, 1.217870950698909 ], [ 103.856536865234318, 1.217965006828422 ], [ 103.856201171874986, 1.218085050582886 ], [ 103.855903625488338, 1.218269944191036 ], [ 103.855682373046932, 1.218507051467952 ], [ 103.855537414550895, 1.218822002411002 ], [ 103.855354309082145, 1.219138026237488 ], [ 103.855094909668026, 1.219445943832341 ], [ 103.854782104492301, 1.219746947288456 ], [ 103.854438781738224, 1.220064043998775 ], [ 103.854080200195312, 1.220368981361446 ], [ 103.853767395019588, 1.220661044120845 ], [ 103.853614807128963, 1.22083401680004 ], [ 103.852775573730469, 1.221665978431701 ], [ 103.852775573730469, 1.221943974495048 ], [ 103.852500915527457, 1.222221970558167 ], [ 103.852500915527457, 1.222499966621513 ], [ 103.852218627929673, 1.222777962684631 ], [ 103.852218627929673, 1.223055958747977 ], [ 103.851943969726676, 1.223333954811153 ], [ 103.851943969726676, 1.223611950874442 ], [ 103.85166931152348, 1.223888039588985 ], [ 103.851943969726676, 1.224166035652161 ], [ 103.851387023925724, 1.224722027778625 ], [ 103.851387023925724, 1.225000023841971 ], [ 103.850830078125, 1.225556015968436 ], [ 103.850830078125, 1.226109981536979 ], [ 103.851051330566406, 1.226333975791931 ], [ 103.851387023925724, 1.226665973663444 ], [ 103.851943969726676, 1.226665973663444 ] ] ], [ [ [ 103.753051757812557, 1.223611950874442 ], [ 103.752220153808594, 1.223611950874442 ], [ 103.752220153808594, 1.223888039588985 ], [ 103.752502441406307, 1.224166035652161 ], [ 103.752502441406307, 1.224444031715507 ], [ 103.751945495605526, 1.225000023841971 ], [ 103.751945495605526, 1.22527801990509 ], [ 103.751388549804787, 1.225834012031555 ], [ 103.751663208007812, 1.226109981536979 ], [ 103.751388549804787, 1.226387977600098 ], [ 103.752777099609304, 1.226387977600098 ], [ 103.753051757812557, 1.226109981536979 ], [ 103.753051757812557, 1.223889946937618 ], [ 103.753051757812557, 1.223611950874442 ] ] ], [ [ [ 103.859725952148537, 1.224722027778625 ], [ 103.859725952148537, 1.224444031715507 ], [ 103.86027526855473, 1.224444031715507 ], [ 103.860557556152344, 1.224166035652161 ], [ 103.861114501953054, 1.224166035652161 ], [ 103.861389160156307, 1.224444031715507 ], [ 103.861663818359474, 1.224166035652161 ], [ 103.861991882324276, 1.223945021629447 ], [ 103.862213134765739, 1.223552942276115 ], [ 103.862396240234474, 1.223171949386597 ], [ 103.862564086914119, 1.222833037376461 ], [ 103.8626708984375, 1.222511053085327 ], [ 103.862457275390568, 1.222123980522213 ], [ 103.862220764160256, 1.221768021583614 ], [ 103.861984252929744, 1.221745967865104 ], [ 103.861656188964957, 1.221881985664425 ], [ 103.861114501953054, 1.221943974495048 ], [ 103.860832214355526, 1.222221970558167 ], [ 103.860557556152344, 1.222221970558167 ], [ 103.86027526855473, 1.222499966621513 ], [ 103.860000610351562, 1.222499966621513 ], [ 103.859725952148537, 1.222777962684631 ], [ 103.859443664550781, 1.222777962684631 ], [ 103.859169006347756, 1.223055958747977 ], [ 103.85888671875, 1.223055958747977 ], [ 103.858612060546989, 1.223333954811153 ], [ 103.858329772949276, 1.223333954811153 ], [ 103.857780456543011, 1.223888039588985 ], [ 103.857780456543011, 1.224166035652161 ], [ 103.857498168945256, 1.224166035652161 ], [ 103.857223510742244, 1.224444031715507 ], [ 103.857223510742244, 1.224722027778625 ], [ 103.856941223144531, 1.225000023841971 ], [ 103.857780456543011, 1.225834012031555 ], [ 103.858055114746037, 1.225834012031555 ], [ 103.858329772949276, 1.226109981536979 ], [ 103.85888671875, 1.226109981536979 ], [ 103.859169006347756, 1.225834012031555 ], [ 103.859169006347756, 1.22527801990509 ], [ 103.859725952148537, 1.224722027778625 ] ] ], [ [ [ 103.749725341796804, 1.222777962684631 ], [ 103.748886108398494, 1.222777962684631 ], [ 103.748886108398494, 1.223055958747977 ], [ 103.748336791992301, 1.223333954811153 ], [ 103.748054504394517, 1.223611950874442 ], [ 103.747497558593736, 1.223888039588985 ], [ 103.748054504394517, 1.224444031715507 ], [ 103.748054504394517, 1.225000023841971 ], [ 103.74777984619152, 1.22527801990509 ], [ 103.74777984619152, 1.225556015968436 ], [ 103.747497558593736, 1.225834012031555 ], [ 103.750274658203239, 1.225834012031555 ], [ 103.750274658203239, 1.22527801990509 ], [ 103.749725341796804, 1.224722027778625 ], [ 103.75, 1.224444031715507 ], [ 103.749443054199261, 1.224166035652161 ], [ 103.75, 1.223888039588985 ], [ 103.75, 1.223333954811153 ], [ 103.749725341796804, 1.223055958747977 ], [ 103.749725341796804, 1.222777962684631 ] ] ], [ [ [ 103.846389770507926, 1.222777962684631 ], [ 103.846664428710938, 1.222499966621513 ], [ 103.846946716308693, 1.222499966621513 ], [ 103.847221374511719, 1.222221970558167 ], [ 103.8477783203125, 1.222221970558167 ], [ 103.848052978515668, 1.222498059272766 ], [ 103.848609924316463, 1.223055958747977 ], [ 103.848892211914176, 1.223055958747977 ], [ 103.849723815917955, 1.222221970558167 ], [ 103.849723815917955, 1.221665978431701 ], [ 103.849998474121207, 1.221387982368583 ], [ 103.850555419921932, 1.221390008926505 ], [ 103.85166931152348, 1.220278024673576 ], [ 103.85166931152348, 1.220000028610229 ], [ 103.851387023925724, 1.219722032547111 ], [ 103.851112365722713, 1.219722032547111 ], [ 103.850555419921932, 1.219166040420646 ], [ 103.850555419921932, 1.218055963516292 ], [ 103.850830078125, 1.217777967453117 ], [ 103.850830078125, 1.217499971389771 ], [ 103.851112365722713, 1.217221975326652 ], [ 103.851112365722713, 1.216665029525871 ], [ 103.851387023925724, 1.21639001369482 ], [ 103.851387023925724, 1.215834021568298 ], [ 103.851112365722713, 1.21555602550518 ], [ 103.851081848144588, 1.215222954750004 ], [ 103.851043701171875, 1.214771032333374 ], [ 103.850608825683707, 1.214279055595455 ], [ 103.850448608398438, 1.214146971702633 ], [ 103.850112915039062, 1.214226961135864 ], [ 103.849723815917955, 1.214450001716727 ], [ 103.849357604980455, 1.214723944663945 ], [ 103.849067687988395, 1.215008974075431 ], [ 103.848838806152401, 1.215320944786185 ], [ 103.848625183105526, 1.215662956237907 ], [ 103.848419189453168, 1.216076970100346 ], [ 103.848098754882926, 1.216459989547843 ], [ 103.8477783203125, 1.216943979263306 ], [ 103.846389770507926, 1.218333959579581 ], [ 103.846389770507926, 1.218611955642757 ], [ 103.845558166503949, 1.219444036483765 ], [ 103.845283508300724, 1.21971499919897 ], [ 103.844955444335938, 1.220031976699943 ], [ 103.844512939453068, 1.220350980758667 ], [ 103.844055175781307, 1.220767974853572 ], [ 103.843536376953239, 1.221145987510795 ], [ 103.843185424804631, 1.221622943878174 ], [ 103.84322357177733, 1.222242951393184 ], [ 103.843711853027457, 1.222774028778133 ], [ 103.844245910644574, 1.223193049430961 ], [ 103.844779968261719, 1.223405003547782 ], [ 103.845222473144588, 1.223497986793632 ], [ 103.845420837402457, 1.223384022712764 ], [ 103.845565795898494, 1.223297953605709 ], [ 103.845870971679673, 1.223096966743583 ], [ 103.846168518066463, 1.222954034805298 ], [ 103.846389770507926, 1.222777962684631 ] ] ], [ [ [ 103.761665344238324, 1.211666941642761 ], [ 103.762222290039105, 1.211110949516296 ], [ 103.763069152831974, 1.211181998252982 ], [ 103.764038085937443, 1.210832953453121 ], [ 103.764442443847656, 1.210832953453121 ], [ 103.764724731445369, 1.210554957389832 ], [ 103.765274047851619, 1.210554957389832 ], [ 103.766113281250114, 1.209722995758113 ], [ 103.766387939453111, 1.209722995758113 ], [ 103.766670227050895, 1.209444999694824 ], [ 103.766944885253906, 1.209444999694824 ], [ 103.767219543457145, 1.209167003631649 ], [ 103.767776489257855, 1.209167003631649 ], [ 103.768890380859432, 1.208611011505184 ], [ 103.769996643066406, 1.208611011505184 ], [ 103.770278930664162, 1.208889007568359 ], [ 103.770881652832131, 1.209274053573722 ], [ 103.771987915039176, 1.209620952606258 ], [ 103.772407531738395, 1.210039973259086 ], [ 103.773330688476676, 1.210554957389832 ], [ 103.774719238281193, 1.210554957389832 ], [ 103.774993896484432, 1.210831046104545 ], [ 103.775276184081974, 1.211110949516296 ], [ 103.776390075683693, 1.211110949516296 ], [ 103.776664733886719, 1.211388945579585 ], [ 103.776947021484489, 1.211388945579585 ], [ 103.777084350585994, 1.211527943611202 ], [ 103.7772216796875, 1.211666941642761 ], [ 103.777496337890682, 1.211388945579585 ], [ 103.777778625488281, 1.211388945579585 ], [ 103.778053283691463, 1.211110949516296 ], [ 103.778335571289006, 1.211388945579585 ], [ 103.778610229492244, 1.211388945579585 ], [ 103.779167175292955, 1.211945056915283 ], [ 103.779441833496207, 1.211666941642761 ], [ 103.780281066894531, 1.211418986320552 ], [ 103.780700683593807, 1.210513949394226 ], [ 103.78125, 1.209192037582397 ], [ 103.781600952148423, 1.208217024803275 ], [ 103.781600952148423, 1.205428957939148 ], [ 103.781669616699276, 1.20313203334814 ], [ 103.781669616699276, 1.201665997505188 ], [ 103.781669616699276, 1.201110005378723 ], [ 103.781387329101506, 1.200832009315604 ], [ 103.781387329101506, 1.200000047683716 ], [ 103.779998779296989, 1.198611974716243 ], [ 103.77972412109375, 1.198611974716243 ], [ 103.778083801269588, 1.198037981987 ], [ 103.776565551757912, 1.197410941124019 ], [ 103.775802612304801, 1.196715950965995 ], [ 103.775733947753906, 1.195392012596187 ], [ 103.775558471679744, 1.193889975547847 ], [ 103.775558471679744, 1.193333983421383 ], [ 103.775276184081974, 1.193055987358036 ], [ 103.77435302734375, 1.191882014274711 ], [ 103.773101806640682, 1.190768003463802 ], [ 103.772224426269474, 1.189721941947994 ], [ 103.771942138671932, 1.189721941947994 ], [ 103.771804809570426, 1.189581990242118 ], [ 103.771667480468693, 1.189442992210388 ], [ 103.771110534667969, 1.189442992210388 ], [ 103.770835876464901, 1.189167976379451 ], [ 103.770553588867188, 1.189167976379451 ], [ 103.770416259765682, 1.189028978347892 ], [ 103.770278930664162, 1.188889980316162 ], [ 103.769996643066406, 1.188889980316162 ], [ 103.769721984863381, 1.188611984252987 ], [ 103.767776489257855, 1.18833398818964 ], [ 103.767501831054688, 1.188611984252987 ], [ 103.767219543457145, 1.188611984252987 ], [ 103.766944885253906, 1.188889980316162 ], [ 103.766670227050895, 1.188889980316162 ], [ 103.766387939453111, 1.189167976379451 ], [ 103.766113281250114, 1.189164996147212 ], [ 103.765274047851619, 1.190000057220516 ], [ 103.765274047851619, 1.190278053283805 ], [ 103.765830993652401, 1.19083404541027 ], [ 103.766387939453111, 1.19083404541027 ], [ 103.766670227050895, 1.190556049346981 ], [ 103.767776489257855, 1.190556049346981 ], [ 103.768058776855469, 1.190278053283805 ], [ 103.768608093261662, 1.190278053283805 ], [ 103.768890380859432, 1.190000057220516 ], [ 103.769447326660213, 1.190000057220516 ], [ 103.769721984863381, 1.190278053283805 ], [ 103.769996643066406, 1.190278053283805 ], [ 103.770553588867188, 1.19083404541027 ], [ 103.771110534667969, 1.19083404541027 ], [ 103.771385192871151, 1.191112041473446 ], [ 103.771667480468693, 1.191112041473446 ], [ 103.773887634277386, 1.193333983421383 ], [ 103.773887634277386, 1.193889975547847 ], [ 103.774169921875, 1.194165945053214 ], [ 103.774169921875, 1.195834040641842 ], [ 103.774444580078168, 1.196112036705131 ], [ 103.774444580078168, 1.196390032768306 ], [ 103.773612976074219, 1.197221994400138 ], [ 103.773056030273423, 1.197221994400138 ], [ 103.772781372070426, 1.197499990463314 ], [ 103.772499084472713, 1.197499990463314 ], [ 103.772224426269474, 1.197777986526603 ], [ 103.771942138671932, 1.197777986526603 ], [ 103.771385192871151, 1.198333978652897 ], [ 103.771110534667969, 1.198333978652897 ], [ 103.770835876464901, 1.198611974716243 ], [ 103.770553588867188, 1.198609948158321 ], [ 103.769721984863381, 1.199444055557251 ], [ 103.769447326660213, 1.199444055557251 ], [ 103.768608093261662, 1.200278043747062 ], [ 103.768333435058636, 1.200278043747062 ], [ 103.767776489257855, 1.200832009315604 ], [ 103.767501831054688, 1.200832009315604 ], [ 103.766944885253906, 1.201388001442069 ], [ 103.766670227050895, 1.201388001442069 ], [ 103.766387939453111, 1.201665997505188 ], [ 103.766113281250114, 1.201665997505188 ], [ 103.765830993652401, 1.201388001442069 ], [ 103.764999389648438, 1.201388001442069 ], [ 103.764724731445369, 1.201110005378723 ], [ 103.764442443847656, 1.201110005378723 ], [ 103.764167785644645, 1.200832009315604 ], [ 103.763885498046875, 1.200832009315604 ], [ 103.763336181640625, 1.200278043747062 ], [ 103.763336181640625, 1.200000047683716 ], [ 103.761108398437557, 1.197777986526603 ], [ 103.761108398437557, 1.197221994400138 ], [ 103.760833740234375, 1.196943998336849 ], [ 103.760833740234375, 1.195834040641842 ], [ 103.761947631835938, 1.194722056388855 ], [ 103.761947631835938, 1.19444394111639 ], [ 103.762222290039105, 1.19444394111639 ], [ 103.764442443847656, 1.192221999168453 ], [ 103.764442443847656, 1.191944003105277 ], [ 103.763885498046875, 1.191390037536564 ], [ 103.763610839843849, 1.191390037536564 ], [ 103.759162902832088, 1.195834040641842 ], [ 103.759162902832088, 1.196112036705131 ], [ 103.759445190429631, 1.196390032768306 ], [ 103.759445190429631, 1.197221994400138 ], [ 103.759719848632869, 1.197499990463314 ], [ 103.759719848632869, 1.197777986526603 ], [ 103.760002136230582, 1.198055982589779 ], [ 103.760002136230582, 1.198333978652897 ], [ 103.759719848632869, 1.198609948158321 ], [ 103.759719848632869, 1.19888794422161 ], [ 103.759445190429631, 1.199166059494132 ], [ 103.759445190429631, 1.199444055557251 ], [ 103.759162902832088, 1.199722051620597 ], [ 103.759162902832088, 1.200000047683716 ], [ 103.758888244628835, 1.200278043747062 ], [ 103.758888244628835, 1.200556993484497 ], [ 103.758613586425838, 1.200832009315604 ], [ 103.758613586425838, 1.201388001442069 ], [ 103.758331298828125, 1.201665997505188 ], [ 103.758331298828125, 1.201944947242851 ], [ 103.758056640625057, 1.202222943305969 ], [ 103.758056640625057, 1.202501058578491 ], [ 103.758331298828125, 1.20277905464178 ], [ 103.758331298828125, 1.203057050704956 ], [ 103.758056640625057, 1.203333020210323 ], [ 103.758056640625057, 1.203889012336788 ], [ 103.757774353027344, 1.204167008399963 ], [ 103.757774353027344, 1.204445004463253 ], [ 103.757499694824318, 1.204723000526428 ], [ 103.757499694824318, 1.207223057746887 ], [ 103.757774353027344, 1.207499027252254 ], [ 103.757774353027344, 1.207777023315373 ], [ 103.757499694824318, 1.208055019378719 ], [ 103.757499694824318, 1.208889007568359 ], [ 103.757774353027344, 1.209167003631649 ], [ 103.757774353027344, 1.210000991821289 ], [ 103.758331298828125, 1.210554957389832 ], [ 103.758331298828125, 1.211110949516296 ], [ 103.758613586425838, 1.211388945579585 ], [ 103.758613586425838, 1.21222102642065 ], [ 103.758888244628835, 1.212499022483769 ], [ 103.758888244628835, 1.213611006736755 ], [ 103.758613586425838, 1.213889002800045 ], [ 103.758613586425838, 1.21416795253748 ], [ 103.758056640625057, 1.214720964431706 ], [ 103.758056640625057, 1.215834021568298 ], [ 103.758331298828125, 1.216112017631644 ], [ 103.758331298828125, 1.21639001369482 ], [ 103.759162902832088, 1.217221975326652 ], [ 103.759162902832088, 1.216943979263306 ], [ 103.759719848632869, 1.21639001369482 ], [ 103.759719848632869, 1.215276956558228 ], [ 103.76027679443358, 1.214720964431706 ], [ 103.76027679443358, 1.214442968368587 ], [ 103.761390686035156, 1.21333301067358 ], [ 103.761390686035156, 1.213055014610234 ], [ 103.761665344238324, 1.212777018547115 ], [ 103.761665344238324, 1.211666941642761 ] ] ], [ [ [ 103.833335876464844, 1.214998960495052 ], [ 103.832496643066349, 1.214998960495052 ], [ 103.832496643066349, 1.215276956558228 ], [ 103.831947326660156, 1.21555602550518 ], [ 103.831947326660156, 1.216668009758109 ], [ 103.832221984863338, 1.216943979263306 ], [ 103.833610534668082, 1.216943979263306 ], [ 103.833610534668082, 1.21555602550518 ], [ 103.833335876464844, 1.215276956558228 ], [ 103.833335876464844, 1.214998960495052 ] ] ], [ [ [ 103.834800720214773, 1.212789058685416 ], [ 103.834686279296932, 1.212617993354797 ], [ 103.834495544433651, 1.212779998779354 ], [ 103.833869934082031, 1.212777018547115 ], [ 103.83359527587902, 1.212916016578674 ], [ 103.833389282226619, 1.213264942169133 ], [ 103.83359527587902, 1.213543057441825 ], [ 103.83359527587902, 1.213822960853577 ], [ 103.833663940429688, 1.214025974273682 ], [ 103.833793640136832, 1.214468002319336 ], [ 103.834053039550781, 1.214941978454647 ], [ 103.834411621093693, 1.215502977371273 ], [ 103.83488464355473, 1.215746998786983 ], [ 103.835357666015568, 1.215754032135123 ], [ 103.835830688476619, 1.215633034706173 ], [ 103.836219787597699, 1.215242981910762 ], [ 103.836387634277344, 1.214586973190364 ], [ 103.836074829101676, 1.214112997054997 ], [ 103.835662841796918, 1.213750004768485 ], [ 103.835334777832145, 1.213376998901424 ], [ 103.835067749023494, 1.213037014007625 ], [ 103.834800720214773, 1.212789058685416 ] ] ], [ [ [ 103.723609924316406, 1.211945056915283 ], [ 103.723609924316406, 1.211666941642761 ], [ 103.724166870117131, 1.211110949516296 ], [ 103.724166870117131, 1.210832953453121 ], [ 103.724441528320355, 1.210554957389832 ], [ 103.724723815918082, 1.210554957389832 ], [ 103.725280761718864, 1.210000991821289 ], [ 103.726112365722656, 1.210000991821289 ], [ 103.726387023925838, 1.210276961326656 ], [ 103.726669311523423, 1.210276961326656 ], [ 103.726943969726619, 1.210554957389832 ], [ 103.727218627929616, 1.210554957389832 ], [ 103.727493286132855, 1.210831046104545 ], [ 103.727775573730582, 1.211110949516296 ], [ 103.728057861328182, 1.211110949516296 ], [ 103.728332519531364, 1.211388945579585 ], [ 103.729446411132869, 1.211388945579585 ], [ 103.729721069335923, 1.211110949516296 ], [ 103.730003356933651, 1.210832953453121 ], [ 103.730003356933651, 1.210554957389832 ], [ 103.730087280273381, 1.210147023200989 ], [ 103.730216979980568, 1.209867000579891 ], [ 103.730216979980568, 1.209450006484985 ], [ 103.729728698730469, 1.209380984306449 ], [ 103.729385375976562, 1.209380984306449 ], [ 103.728828430175824, 1.209239959716911 ], [ 103.728347778320426, 1.208822965622005 ], [ 103.728073120117244, 1.208474040031547 ], [ 103.728073120117244, 1.208057045936641 ], [ 103.728279113769588, 1.207918047905082 ], [ 103.728553771972599, 1.207779049873352 ], [ 103.729248046875057, 1.207638025283813 ], [ 103.73028564453125, 1.207638025283813 ], [ 103.730560302734432, 1.207430005073547 ], [ 103.731132507324261, 1.206943035125789 ], [ 103.731826782226562, 1.206665039062614 ], [ 103.731964111328239, 1.206593990325985 ], [ 103.732223510742188, 1.205832958221436 ], [ 103.733329772949148, 1.204723000526428 ], [ 103.733612060546932, 1.204723000526428 ], [ 103.733833312988338, 1.204195976257381 ], [ 103.733818054199276, 1.203655958175773 ], [ 103.733551025390611, 1.203207015991211 ], [ 103.733139038085881, 1.202908992767334 ], [ 103.732650756835994, 1.202833056450004 ], [ 103.732200622558594, 1.202970027923641 ], [ 103.731819152832031, 1.203122973442078 ], [ 103.731552124023537, 1.203312039375305 ], [ 103.731338500976619, 1.203420996665955 ], [ 103.731010437011832, 1.203557968139762 ], [ 103.730789184570426, 1.203415036201477 ], [ 103.730453491210881, 1.203143000602836 ], [ 103.730003356933651, 1.202823996543941 ], [ 103.729400634765682, 1.202618956565857 ], [ 103.728698730468864, 1.202461957931519 ], [ 103.727989196777287, 1.202234029770011 ], [ 103.727241516113281, 1.202077031135616 ], [ 103.726875305175781, 1.20203804969799 ], [ 103.726524353027344, 1.202182054519767 ], [ 103.726074218749943, 1.202280044555778 ], [ 103.725639343261832, 1.202486991882381 ], [ 103.72518157958983, 1.202684998512325 ], [ 103.724647521972713, 1.202816963195801 ], [ 103.724464416503963, 1.20287203788763 ], [ 103.724105834960994, 1.202976942062378 ], [ 103.723533630371151, 1.202947020530814 ], [ 103.722946166992244, 1.202823996543941 ], [ 103.722366333007869, 1.202782988548336 ], [ 103.721794128418011, 1.20277905464178 ], [ 103.721221923828182, 1.202774047851619 ], [ 103.720672607421918, 1.20272600650793 ], [ 103.720191955566392, 1.202520966529846 ], [ 103.719711303710994, 1.202371001243648 ], [ 103.71923828125, 1.202306985855103 ], [ 103.718727111816463, 1.202419042587337 ], [ 103.718276977539048, 1.202399969101066 ], [ 103.717857360839957, 1.202270030975399 ], [ 103.717414855957088, 1.202226996421871 ], [ 103.716949462890625, 1.20221996307373 ], [ 103.716484069824332, 1.202239036560172 ], [ 103.716056823730526, 1.202311038970947 ], [ 103.715667724609432, 1.202455043792725 ], [ 103.71527099609375, 1.20251905918127 ], [ 103.714904785156307, 1.202617049217281 ], [ 103.714546203613338, 1.202741980552787 ], [ 103.714149475097713, 1.202774047851619 ], [ 103.713714599609361, 1.202775955200195 ], [ 103.713272094726676, 1.202780961990413 ], [ 103.712821960449261, 1.20282697677618 ], [ 103.712394714355469, 1.203009009361267 ], [ 103.711944580078239, 1.203099966049308 ], [ 103.71152496337902, 1.203259944915885 ], [ 103.711067199707017, 1.203323006629944 ], [ 103.710578918457145, 1.203333020210323 ], [ 103.710067749023438, 1.203336954116878 ], [ 103.70953369140625, 1.203374028205928 ], [ 103.708992004394574, 1.20351505279541 ], [ 103.708427429199276, 1.203626990318298 ], [ 103.70787048339848, 1.203794956207332 ], [ 103.707328796386832, 1.204049944877681 ], [ 103.706977844238381, 1.204552054405326 ], [ 103.707000732421818, 1.205211043357792 ], [ 103.707336425781364, 1.205762028694267 ], [ 103.707771301269474, 1.206207036972159 ], [ 103.708244323730526, 1.206608057022208 ], [ 103.708816528320355, 1.206933975219727 ], [ 103.709419250488324, 1.207221031188908 ], [ 103.710006713867301, 1.207502961158809 ], [ 103.710563659668026, 1.207808971405086 ], [ 103.711051940917969, 1.208201050758419 ], [ 103.711456298828111, 1.208678960800285 ], [ 103.711845397949276, 1.209187984466496 ], [ 103.712211608886719, 1.209714055061397 ], [ 103.712577819824219, 1.210240960121268 ], [ 103.712966918945312, 1.210716962814331 ], [ 103.713409423828182, 1.21109497547161 ], [ 103.713890075683594, 1.211388945579585 ], [ 103.714447021484318, 1.211388945579585 ], [ 103.714584350586051, 1.211527943611202 ], [ 103.714721679687557, 1.211666941642761 ], [ 103.715278625488338, 1.211666941642761 ], [ 103.71555328369152, 1.211945056915283 ], [ 103.716110229492301, 1.211945056915283 ], [ 103.716392517089844, 1.21222102642065 ], [ 103.71694183349608, 1.21222102642065 ], [ 103.717224121093807, 1.211945056915283 ], [ 103.718055725097599, 1.211945056915283 ], [ 103.718330383300824, 1.21222102642065 ], [ 103.718612670898551, 1.21222102642065 ], [ 103.718887329101562, 1.212499022483769 ], [ 103.719444274902344, 1.212499022483769 ], [ 103.719558715820426, 1.212617993354797 ], [ 103.719718933105526, 1.212777018547115 ], [ 103.720275878906307, 1.212777018547115 ], [ 103.720558166503892, 1.213055014610234 ], [ 103.720832824707088, 1.213055014610234 ], [ 103.721107482910085, 1.21333301067358 ], [ 103.721389770507869, 1.21333301067358 ], [ 103.721664428711051, 1.213611006736755 ], [ 103.721946716308594, 1.213611006736755 ], [ 103.722221374511832, 1.213889002800045 ], [ 103.722503662109375, 1.213889002800045 ], [ 103.723335266113338, 1.213055014610234 ], [ 103.723335266113338, 1.21222102642065 ], [ 103.723609924316406, 1.211945056915283 ] ] ], [ [ [ 103.793609619140625, 1.211388945579585 ], [ 103.793891906738338, 1.211110949516296 ], [ 103.794441223144588, 1.211110949516296 ], [ 103.796112060546875, 1.209444999694824 ], [ 103.796112060546875, 1.208889007568359 ], [ 103.796386718750057, 1.208611011505184 ], [ 103.796386718750057, 1.208333015441895 ], [ 103.797225952148381, 1.207499027252254 ], [ 103.797225952148381, 1.207223057746887 ], [ 103.798057556152401, 1.2063889503479 ], [ 103.798614501953125, 1.2063889503479 ], [ 103.798889160156364, 1.206666946411246 ], [ 103.799003601074219, 1.206547975540218 ], [ 103.799163818359375, 1.2063889503479 ], [ 103.799446105957074, 1.2063889503479 ], [ 103.799720764160156, 1.206110954284725 ], [ 103.799720764160156, 1.205832958221436 ], [ 103.800003051757869, 1.20555496215826 ], [ 103.800003051757869, 1.205276966094971 ], [ 103.800277709960881, 1.205000996589774 ], [ 103.800552368164119, 1.205000996589774 ], [ 103.801109313964901, 1.204445004463253 ], [ 103.801109313964901, 1.204167008399963 ], [ 103.801940917968864, 1.203333020210323 ], [ 103.802223205566406, 1.203057050704956 ], [ 103.802223205566406, 1.201944947242851 ], [ 103.801940917968864, 1.201665997505188 ], [ 103.801940917968864, 1.201388001442069 ], [ 103.801216125488224, 1.200660943984985 ], [ 103.800277709960881, 1.200832009315604 ], [ 103.800003051757869, 1.201110005378723 ], [ 103.799446105957074, 1.201110005378723 ], [ 103.799163818359375, 1.201388001442069 ], [ 103.798889160156364, 1.201110005378723 ], [ 103.798110961914119, 1.201343059539795 ], [ 103.797393798828224, 1.201496005058232 ], [ 103.797126770019588, 1.201823949813843 ], [ 103.79689788818358, 1.202137947082576 ], [ 103.796669006347656, 1.202501058578491 ], [ 103.796386718750057, 1.202501058578491 ], [ 103.796112060546875, 1.20277905464178 ], [ 103.795829772949332, 1.20277905464178 ], [ 103.795555114746094, 1.203057050704956 ], [ 103.794998168945312, 1.203053951263541 ], [ 103.794166564941349, 1.203889012336788 ], [ 103.792503356933594, 1.203889012336788 ], [ 103.792221069336051, 1.204167008399963 ], [ 103.792221069336051, 1.204445004463253 ], [ 103.791946411132812, 1.204723000526428 ], [ 103.791946411132812, 1.20555496215826 ], [ 103.79166412353527, 1.205832958221436 ], [ 103.79166412353527, 1.206666946411246 ], [ 103.791389465332088, 1.206944942474365 ], [ 103.791389465332088, 1.207223057746887 ], [ 103.791221618652401, 1.207849979400635 ], [ 103.791389465332088, 1.208588004112244 ], [ 103.791625976562557, 1.209177970886344 ], [ 103.791709899902344, 1.209681987762565 ], [ 103.791915893554688, 1.20999002456665 ], [ 103.792221069336051, 1.210276961326656 ], [ 103.792503356933594, 1.210554957389832 ], [ 103.792503356933594, 1.210832953453121 ], [ 103.793052673339844, 1.211388945579585 ], [ 103.793609619140625, 1.211388945579585 ] ] ], [ [ [ 103.728057861328182, 1.191390037536564 ], [ 103.728332519531364, 1.191112041473446 ], [ 103.728614807128906, 1.191112041473446 ], [ 103.728889465332145, 1.19083404541027 ], [ 103.729446411132869, 1.19083404541027 ], [ 103.731941223144645, 1.18833398818964 ], [ 103.731666564941406, 1.188055038452205 ], [ 103.731666564941406, 1.18749904632574 ], [ 103.731109619140668, 1.186946034431514 ], [ 103.729446411132869, 1.186946034431514 ], [ 103.729164123535142, 1.186666965484733 ], [ 103.728889465332145, 1.186666965484733 ], [ 103.728889465332145, 1.186388969421387 ], [ 103.728614807128906, 1.186110973358268 ], [ 103.728614807128906, 1.185832977294922 ], [ 103.728332519531364, 1.185554981231803 ], [ 103.728332519531364, 1.184167027473449 ], [ 103.727500915527401, 1.183333039283809 ], [ 103.726387023925838, 1.183333039283809 ], [ 103.726112365722656, 1.18305504322052 ], [ 103.724723815918082, 1.18305504322052 ], [ 103.724441528320355, 1.182777047157344 ], [ 103.724166870117131, 1.182777047157344 ], [ 103.724006652832031, 1.182616949081421 ], [ 103.723892211914119, 1.182499051094055 ], [ 103.723609924316406, 1.182500958442802 ], [ 103.723335266113338, 1.182222962379456 ], [ 103.722778320312614, 1.182222962379456 ], [ 103.722503662109375, 1.181944966316337 ], [ 103.722221374511832, 1.181944966316337 ], [ 103.721664428711051, 1.181388974189872 ], [ 103.721107482910085, 1.181388974189872 ], [ 103.719718933105526, 1.180001020431519 ], [ 103.719444274902344, 1.180279016494865 ], [ 103.719169616699332, 1.180276989936942 ], [ 103.718887329101562, 1.180554986000061 ], [ 103.718887329101562, 1.180832982063407 ], [ 103.718612670898551, 1.181110978126526 ], [ 103.718612670898551, 1.181388974189872 ], [ 103.718330383300824, 1.181666970252991 ], [ 103.718330383300824, 1.181944966316337 ], [ 103.718055725097599, 1.182222962379456 ], [ 103.718055725097599, 1.182777047157344 ], [ 103.718330383300824, 1.18305504322052 ], [ 103.718330383300824, 1.183333039283809 ], [ 103.718055725097599, 1.183611035346985 ], [ 103.718055725097599, 1.184445023536796 ], [ 103.717781066894588, 1.184720993041992 ], [ 103.717781066894588, 1.184998989105281 ], [ 103.717224121093807, 1.185554981231803 ], [ 103.717224121093807, 1.185832977294922 ], [ 103.716667175293026, 1.186388969421387 ], [ 103.716667175293026, 1.186666965484733 ], [ 103.716392517089844, 1.186943054199275 ], [ 103.716392517089844, 1.187221050262451 ], [ 103.716667175293026, 1.18749904632574 ], [ 103.716804504394588, 1.187567949295101 ], [ 103.71707916259777, 1.187777042388916 ], [ 103.717781066894588, 1.187221050262451 ], [ 103.718055725097599, 1.187221050262451 ], [ 103.718330383300824, 1.18749904632574 ], [ 103.718887329101562, 1.18749904632574 ], [ 103.719169616699332, 1.187221050262451 ], [ 103.720001220703125, 1.187221050262451 ], [ 103.720275878906307, 1.186943054199275 ], [ 103.720832824707088, 1.186943054199275 ], [ 103.721107482910085, 1.187221050262451 ], [ 103.721389770507869, 1.187221050262451 ], [ 103.722503662109375, 1.18833398818964 ], [ 103.722503662109375, 1.188889980316162 ], [ 103.722778320312614, 1.189164996147212 ], [ 103.722778320312614, 1.189721941947994 ], [ 103.723052978515611, 1.190000057220516 ], [ 103.723052978515611, 1.191112041473446 ], [ 103.723335266113338, 1.191390037536564 ], [ 103.725280761718864, 1.191390037536564 ], [ 103.725555419921875, 1.191112041473446 ], [ 103.726669311523423, 1.191112041473446 ], [ 103.726943969726619, 1.191390037536564 ], [ 103.728057861328182, 1.191390037536564 ] ] ], [ [ [ 103.732780456542955, 1.176110982895011 ], [ 103.733055114746151, 1.175832033157405 ], [ 103.733612060546932, 1.175832033157405 ], [ 103.734443664550895, 1.175001025200004 ], [ 103.734725952148438, 1.175001025200004 ], [ 103.735000610351676, 1.174723029136658 ], [ 103.735275268554673, 1.174723029136658 ], [ 103.735557556152457, 1.174443960189876 ], [ 103.735832214355455, 1.174723029136658 ], [ 103.73638916015625, 1.174723029136658 ], [ 103.736946105956974, 1.175279021263123 ], [ 103.737503051757926, 1.175279021263123 ], [ 103.737777709960938, 1.175001025200004 ], [ 103.738052368164176, 1.175001025200004 ], [ 103.738334655761719, 1.174723029136658 ], [ 103.73944091796875, 1.174723029136658 ], [ 103.739723205566463, 1.174443960189876 ], [ 103.740554809570426, 1.174443960189876 ], [ 103.741111755371207, 1.173887968063411 ], [ 103.741386413574205, 1.173887968063411 ], [ 103.741668701171989, 1.17416596412653 ], [ 103.741943359374986, 1.17416596412653 ], [ 103.742134094238281, 1.173614978790283 ], [ 103.742073059082131, 1.173117995262146 ], [ 103.741851806640739, 1.172683000564632 ], [ 103.741607666015682, 1.172322988510188 ], [ 103.741340637206974, 1.172032952308712 ], [ 103.741088867187614, 1.171769022941646 ], [ 103.740921020507926, 1.171509027481079 ], [ 103.740783691406236, 1.171262979507446 ], [ 103.740669250488338, 1.170977950096187 ], [ 103.740501403808651, 1.170694947242851 ], [ 103.740280151367244, 1.170397043228149 ], [ 103.740074157714901, 1.170029997825736 ], [ 103.739982604980582, 1.169556021690425 ], [ 103.739891052246136, 1.169057011604366 ], [ 103.739974975586051, 1.168552994728145 ], [ 103.73999786376946, 1.168041944503784 ], [ 103.739944458007926, 1.167541027069149 ], [ 103.739723205566463, 1.167222023010197 ], [ 103.739166259765682, 1.166666030883732 ], [ 103.7388916015625, 1.166389942169189 ], [ 103.738609313964943, 1.166666030883732 ], [ 103.738334655761719, 1.166389942169189 ], [ 103.73638916015625, 1.166389942169189 ], [ 103.736114501953182, 1.166666030883732 ], [ 103.735832214355455, 1.166666030883732 ], [ 103.735557556152457, 1.166944026947078 ], [ 103.733612060546932, 1.166944026947078 ], [ 103.731391906738395, 1.169165968895015 ], [ 103.731391906738395, 1.171110033989009 ], [ 103.731109619140668, 1.171388030052299 ], [ 103.731109619140668, 1.171944022178593 ], [ 103.730834960937443, 1.171944022178593 ], [ 103.730552673339886, 1.172222018241939 ], [ 103.728889465332145, 1.172222018241939 ], [ 103.728614807128906, 1.172500014305058 ], [ 103.728057861328182, 1.17305600643158 ], [ 103.728057861328182, 1.173334956169185 ], [ 103.728332519531364, 1.173609972000065 ], [ 103.728332519531364, 1.173887968063411 ], [ 103.729446411132869, 1.175001025200004 ], [ 103.729721069335923, 1.175001025200004 ], [ 103.730003356933651, 1.175279021263123 ], [ 103.730834960937443, 1.175279021263123 ], [ 103.731109619140668, 1.17555403709423 ], [ 103.731391906738395, 1.17555403709423 ], [ 103.731666564941406, 1.175832033157405 ], [ 103.731941223144645, 1.175832033157405 ], [ 103.732223510742188, 1.176110982895011 ], [ 103.732780456542955, 1.176110982895011 ] ] ] ] } }
+]
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson
new file mode 100644
index 0000000..0a60276
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson
@@ -0,0 +1,54 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.630097031593323,37.37485122680675],[-1.670694947242737,37.357360839843864],[-1.706527948379517,37.306526184082024],[-1.808472990989628,37.213470458984375],[-1.849583983421269,37.07097244262707],[-1.901250004768372,36.987640380859375],[-1.905972003936768,36.93624877929699],[-1.981250047683716,36.90263748168945],[-2.002084016799927,36.83625030517584],[-2.062083959579411,36.807083129882926],[-2.063472032546997,36.77513885498047],[-2.12375092506403,36.73152923583989],[-2.194027900695801,36.720973968505966],[-2.254859924316406,36.79013824462902],[-2.318243026733342,36.833473205566406],[-2.367361068725529,36.841526031494254],[-2.430139064788818,36.81069564819336],[-2.474582910537606,36.83541488647472],[-2.565139055252018,36.81402587890624],[-2.641804933547974,36.706249237060604],[-2.699583053588867,36.6823616027832],[-2.772083044052067,36.68152618408209],[-2.859026908874398,36.70013809204107],[-2.927638053894043,36.75208282470703],[-2.967082977294865,36.74041748046875],[-3.12844800949091,36.750709533691406],[-3.140079021453801,36.78782272338867],[-3.02889609336853,36.84447479248058],[-3.070403099060059,36.901214599609375],[-2.978310108184814,36.97389221191406],[-3.023822069168091,37.08445739746105],[-2.948858976364136,37.09659194946289],[-2.928219079971257,37.15734481811529],[-2.895196914672851,37.167091369628906],[-2.845283985137939,37.279262542724716],[-2.778903961181641,37.26269531250005],[-2.660017967224121,37.212036132812614],[-2.665518999099731,37.2851295471192],[-2.635528087615967,37.394248962402344],[-2.568881988525391,37.44580841064459],[-2.460067033767587,37.50759124755865],[-2.35841703414917,37.522331237793026],[-2.375886917114258,37.61229705810547],[-2.31572508811945,37.62223052978521],[-2.32324290275568,37.69391250610363],[-2.276421070098877,37.776885986328125],[-2.301439046859741,37.810287475585994],[-2.294845104217416,37.876358032226676],[-2.207566022872811,37.91661071777355],[-2.171906948089599,37.88873291015631],[-2.123106002807617,37.900489807128906],[-2.062150001525822,37.883510589599716],[-1.99518895149231,37.841426849365234],[-2.008748054504338,37.774990081787216],[-1.995744943618774,37.72808837890631],[-2.011836051940918,37.673496246338004],[-1.953919053077698,37.58831787109381],[-1.845173954963684,37.45486831665045],[-1.736989974975529,37.44267654418951],[-1.630097031593323,37.37485122680675]]]},"properties":{"ID_0":215,"ISO":"ES-AL","NAME_0":"Spain","ID_1":1,"NAME_1":"Andalucía","ID_2":1,"NAME_2":"Almería","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.142242908477726,37.003887176513615],[-5.115006923675537,36.98898315429693],[-5.086628913879395,36.9051170349121],[-5.133933067321777,36.83859252929699],[-5.170263767242432,36.823577880859375],[-5.277233123779297,36.878669738769474],[-5.340572834014893,36.819442749023494],[-5.290791988372803,36.775199890136776],[-5.329536914825383,36.681949615478516],[-5.378942012786865,36.63262557983404],[-5.438354969024601,36.61420059204113],[-5.522013187408447,36.53181838989252],[-5.610074043273926,36.54459381103521],[-5.608139038085937,36.51231765747082],[-5.524099826812744,36.497741699218864],[-5.490570068359375,36.53681564331055],[-5.43215799331665,36.53431701660162],[-5.355302810668945,36.43382263183605],[-5.315357208251952,36.34088134765631],[-5.252076148986816,36.31097412109381],[-5.314861774444523,36.23374938964855],[-5.339027881622314,36.15467453002941],[-5.425971984863281,36.17680740356457],[-5.441526889801025,36.0870819091798],[-5.484028816223087,36.05430603027338],[-5.581250190734863,36.01263809204096],[-5.643472194671631,36.0487518310548],[-5.796805858612004,36.07736206054699],[-5.842360973358154,36.13124847412115],[-5.921526908874455,36.18680572509771],[-5.973473072051945,36.17708206176757],[-6.054027080535832,36.20291519165045],[-6.085972785949707,36.26847076416027],[-6.144306182861328,36.29763793945324],[-6.20486211776722,36.381526947021484],[-6.239028930664006,36.463748931884766],[-6.22736215591425,36.58124923706055],[-6.296528816223145,36.616249084472656],[-6.392638206481934,36.63263702392578],[-6.439013957977238,36.720146179199325],[-6.348751068115234,36.79670333862315],[-6.353057861328125,36.85504913330078],[-6.330854892730655,36.89881896972662],[-6.187014102935791,36.89360046386719],[-6.104298114776554,36.85727310180664],[-5.97753381729126,36.84552383422863],[-5.893436908721867,36.85160446166997],[-5.876375198364258,36.89472961425781],[-5.804832935333195,36.92547988891613],[-5.716869831085205,36.91954040527344],[-5.667803764343262,36.975975036621094],[-5.58291578292841,36.914859771728516],[-5.524351119995117,36.937652587890625],[-5.46959209442133,36.983970642089844],[-5.510847091674805,37.0336265563966],[-5.433547973632812,37.052467346191406],[-5.393181800842285,36.972190856933594],[-5.301580905914306,37.01795578002941],[-5.234878063201904,36.9412078857423],[-5.142242908477726,37.003887176513615]]]},"properties":{"ID_0":215,"ISO":"ES-CA","NAME_0":"Spain","ID_1":1,"NAME_1":"Andalucía","ID_2":2,"NAME_2":"Cádiz","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.046835899352971,38.72910690307617],[-5.000820159912109,38.696800231933594],[-4.868766784667969,38.68095397949219],[-4.860057830810547,38.61399841308594],[-4.787430763244629,38.59707260131847],[-4.622152805328312,38.523490905761776],[-4.608470916747933,38.49472808837902],[-4.505751132965088,38.45755767822277],[-4.435056209564209,38.4022598266601],[-4.268754959106444,38.347198486328125],[-4.220058917999268,38.29853820800781],[-4.168633937835693,38.13655853271479],[-4.282131195068359,38.0228385925293],[-4.259792804717961,37.9577865600587],[-4.28661394119257,37.79656982421881],[-4.211495876312142,37.78276443481451],[-4.239456176757812,37.72645950317388],[-4.164247035980225,37.68153381347656],[-4.227981090545654,37.63956451416015],[-4.16302299499506,37.599338531494254],[-4.048017978668213,37.4680061340332],[-4.000699043273869,37.40212249755865],[-4.085820198059082,37.403778076171875],[-4.154415130615178,37.34588623046881],[-4.20920991897583,37.352500915527344],[-4.263124942779541,37.260410308838004],[-4.255185127258301,37.22959899902355],[-4.327489852905273,37.18436050415039],[-4.372388839721566,37.215885162353565],[-4.377594947814885,37.270381927490234],[-4.417837142944336,37.28243637084966],[-4.476914882659912,37.25739288330084],[-4.499290943145752,37.223457336425895],[-4.576076030731201,37.209194183349666],[-4.653213024139404,37.25585937500006],[-4.671775817871037,37.335018157958984],[-4.779951095581055,37.33544158935558],[-4.821993827819824,37.35822296142578],[-4.884609222412109,37.43801116943365],[-4.940755844116154,37.53656005859375],[-4.931580066680851,37.61735153198242],[-4.999695777893066,37.70661544799805],[-5.047622203826847,37.71820831298833],[-5.107796192169133,37.66260147094732],[-5.17664098739624,37.6805992126466],[-5.343643188476505,37.587429046630916],[-5.381317138671818,37.611248016357415],[-5.405365943908635,37.69201278686535],[-5.303967952728271,37.72180175781255],[-5.33928108215332,37.8315315246582],[-5.399909973144474,37.86357879638683],[-5.414253234863281,37.94113922119146],[-5.493587017059325,38.000137329101676],[-5.495430946350098,38.042411804199276],[-5.584665775299072,38.13172149658209],[-5.535662174224797,38.16869735717767],[-5.525836944580077,38.26414108276373],[-5.575497150421085,38.329601287841854],[-5.584943771362304,38.38586044311529],[-5.568015098571721,38.4334068298341],[-5.484333992004338,38.46340560913086],[-5.418834209442139,38.512550354003906],[-5.368871212005502,38.58493423461914],[-5.309496879577637,38.57734680175775],[-5.293152809143066,38.6090927124024],[-5.167891979217529,38.677337646484375],[-5.046835899352971,38.72910690307617]]]},"properties":{"ID_0":215,"ISO":"ES-CO","NAME_0":"Spain","ID_1":1,"NAME_1":"Andalucía","ID_2":3,"NAME_2":"Córdoba","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.551191091537419,38.084133148193416],[-2.423309087753295,38.03374099731451],[-2.341528892517033,38.026039123535206],[-2.276753902435246,37.960090637207145],[-2.207566022872811,37.91661071777355],[-2.294845104217416,37.876358032226676],[-2.301439046859741,37.810287475585994],[-2.276421070098877,37.776885986328125],[-2.32324290275568,37.69391250610363],[-2.31572508811945,37.62223052978521],[-2.375886917114258,37.61229705810547],[-2.35841703414917,37.522331237793026],[-2.460067033767587,37.50759124755865],[-2.568881988525391,37.44580841064459],[-2.635528087615967,37.394248962402344],[-2.665518999099731,37.2851295471192],[-2.660017967224121,37.212036132812614],[-2.778903961181641,37.26269531250005],[-2.845283985137939,37.279262542724716],[-2.895196914672851,37.167091369628906],[-2.928219079971257,37.15734481811529],[-2.948858976364136,37.09659194946289],[-3.023822069168091,37.08445739746105],[-2.978310108184814,36.97389221191406],[-3.070403099060059,36.901214599609375],[-3.02889609336853,36.84447479248058],[-3.140079021453801,36.78782272338867],[-3.12844800949091,36.750709533691406],[-3.260972976684513,36.753192901611385],[-3.348750114440918,36.7320823669433],[-3.425971031188908,36.695415496826286],[-3.554027080535889,36.71458435058605],[-3.600693941116276,36.74375152587896],[-3.67541599273676,36.72958374023443],[-3.777324914932251,36.73708343505871],[-3.765851974487191,36.78832244873047],[-3.827050924301147,36.8555641174317],[-3.999087095260563,36.88986968994152],[-4.111199855804443,36.949691772460994],[-4.166514873504582,36.95710754394531],[-4.223219871520996,37.01237106323248],[-4.272380828857365,37.01493835449224],[-4.28694009780878,37.119552612304794],[-4.327489852905273,37.18436050415039],[-4.255185127258301,37.22959899902355],[-4.263124942779541,37.260410308838004],[-4.20920991897583,37.352500915527344],[-4.154415130615178,37.34588623046881],[-4.085820198059082,37.403778076171875],[-4.000699043273869,37.40212249755865],[-3.950764894485416,37.37837982177745],[-3.843409061431884,37.385368347168026],[-3.802089929580631,37.45338439941406],[-3.684324979782104,37.517677307128906],[-3.626955032348633,37.52856826782237],[-3.536324977874756,37.58084106445318],[-3.506433963775578,37.61725234985363],[-3.399195909500122,37.564079284668026],[-3.296830892562866,37.5879859924317],[-3.262383937835637,37.63923645019537],[-3.171957015991211,37.64289855957042],[-3.09158992767334,37.59658813476557],[-2.902107000350838,37.66574096679693],[-2.903687000274601,37.7512092590332],[-2.819883108139038,37.8519744873048],[-2.784991979598885,37.91707992553722],[-2.694159030914307,37.9744873046875],[-2.67038798332203,37.961402893066456],[-2.597613096237183,38.00724792480463],[-2.598856925964299,38.058807373046875],[-2.551191091537419,38.084133148193416]]]},"properties":{"ID_0":215,"ISO":"ES-GR","NAME_0":"Spain","ID_1":1,"NAME_1":"Andalucía","ID_2":4,"NAME_2":"Granada","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.974027156829834,37.29624938964844],[-7.032915115356388,37.20541763305669],[-7.137917995452824,37.217361450195426],[-7.16486120223999,37.20652770996105],[-7.407327175140324,37.183414459228516],[-7.432222843170165,37.24649429321283],[-7.440489768981933,37.391025543213004],[-7.490282058715821,37.518386840820256],[-7.522677898406925,37.55307388305664],[-7.444843769073486,37.6639404296875],[-7.422598838806151,37.7546005249024],[-7.324351787567139,37.81582641601568],[-7.254800796508789,37.92370223999029],[-7.245584964752198,37.99180221557623],[-7.158813953399658,37.99389648437494],[-7.108306884765568,38.04093933105474],[-7.007203102111816,38.020755767822266],[-6.969247817993164,38.1604843139649],[-6.931529998779297,38.208320617675774],[-6.857994079589787,38.17985916137701],[-6.794967174530029,38.178546905517635],[-6.815689086914062,38.12014389038091],[-6.758090019226017,38.09272003173828],[-6.622326850891113,38.09716796875006],[-6.587048053741398,38.026786804199276],[-6.494914054870605,38.01914215087896],[-6.413776874542179,38.05857467651373],[-6.303243160247803,37.97825622558588],[-6.201983928680419,37.95951080322277],[-6.180110931396428,37.941040039062614],[-6.125260829925537,37.90092086791992],[-6.159060955047607,37.873458862304744],[-6.126297950744629,37.797183990478516],[-6.18410587310791,37.80946350097656],[-6.248309135437012,37.75910186767572],[-6.310890197753906,37.76488113403332],[-6.473649978637695,37.72534561157232],[-6.51354789733881,37.62516403198242],[-6.39871883392334,37.612556457519645],[-6.402295112609863,37.579956054687614],[-6.30540895462036,37.42633056640625],[-6.356122016906738,37.412181854248104],[-6.384430885314941,37.33750152587896],[-6.332860946655273,37.299118041992244],[-6.345101833343506,37.21829605102538],[-6.386240005493107,37.074447631835994],[-6.356688976287842,37.00019836425781],[-6.37089300155634,36.926788330078125],[-6.330854892730655,36.89881896972662],[-6.353057861328125,36.85504913330078],[-6.348751068115234,36.79670333862315],[-6.390416145324649,36.803470611572266],[-6.455695152282658,36.91652679443365],[-6.520140171050968,36.97680664062506],[-6.595139026641846,37.02208328247076],[-6.779860973358097,37.11513900756836],[-6.875137805938721,37.148750305175724],[-6.930140018463078,37.184307098388786],[-6.974027156829834,37.29624938964844]]]},"properties":{"ID_0":215,"ISO":"ES-H","NAME_0":"Spain","ID_1":1,"NAME_1":"Andalucía","ID_2":5,"NAME_2":"Huelva","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.551191091537419,38.084133148193416],[-2.598856925964299,38.058807373046875],[-2.597613096237183,38.00724792480463],[-2.67038798332203,37.961402893066456],[-2.694159030914307,37.9744873046875],[-2.784991979598885,37.91707992553722],[-2.819883108139038,37.8519744873048],[-2.903687000274601,37.7512092590332],[-2.902107000350838,37.66574096679693],[-3.09158992767334,37.59658813476557],[-3.171957015991211,37.64289855957042],[-3.262383937835637,37.63923645019537],[-3.296830892562866,37.5879859924317],[-3.399195909500122,37.564079284668026],[-3.506433963775578,37.61725234985363],[-3.536324977874756,37.58084106445318],[-3.626955032348633,37.52856826782237],[-3.684324979782104,37.517677307128906],[-3.802089929580631,37.45338439941406],[-3.843409061431884,37.385368347168026],[-3.950764894485416,37.37837982177745],[-4.000699043273869,37.40212249755865],[-4.048017978668213,37.4680061340332],[-4.16302299499506,37.599338531494254],[-4.227981090545654,37.63956451416015],[-4.164247035980225,37.68153381347656],[-4.239456176757812,37.72645950317388],[-4.211495876312142,37.78276443481451],[-4.28661394119257,37.79656982421881],[-4.259792804717961,37.9577865600587],[-4.282131195068359,38.0228385925293],[-4.168633937835693,38.13655853271479],[-4.220058917999268,38.29853820800781],[-4.268754959106444,38.347198486328125],[-4.255440235137939,38.401844024658196],[-4.155951023101807,38.38135528564459],[-3.961827993392944,38.36612319946289],[-3.854177951812631,38.37516784667963],[-3.807749032974186,38.42184448242199],[-3.729901075363102,38.424392700195305],[-3.62036299705494,38.39401245117199],[-3.528333902358952,38.40866851806646],[-3.472486019134464,38.39798355102539],[-3.376575946807861,38.43962478637701],[-3.374902963638192,38.47526168823242],[-3.130091905593815,38.43879699707037],[-3.06486010551447,38.47827911376959],[-2.99340295791626,38.450149536132805],[-2.938338994979801,38.47477340698253],[-2.889669895172119,38.455909729003906],[-2.761981964111328,38.53278350830078],[-2.672630071639958,38.496654510498104],[-2.598725080490112,38.51287078857433],[-2.566536903381348,38.49049758911133],[-2.571449995040894,38.41395568847656],[-2.483309030532723,38.39788818359375],[-2.485029935836735,38.30028152465832],[-2.440682888030949,38.28513717651373],[-2.446175098419189,38.18522644042969],[-2.551191091537419,38.084133148193416]]]},"properties":{"ID_0":215,"ISO":"ES-J","NAME_0":"Spain","ID_1":1,"NAME_1":"Andalucía","ID_2":6,"NAME_2":"Jaén","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.327489852905273,37.18436050415039],[-4.28694009780878,37.119552612304794],[-4.272380828857365,37.01493835449224],[-4.223219871520996,37.01237106323248],[-4.166514873504582,36.95710754394531],[-4.111199855804443,36.949691772460994],[-3.999087095260563,36.88986968994152],[-3.827050924301147,36.8555641174317],[-3.765851974487191,36.78832244873047],[-3.777324914932251,36.73708343505871],[-3.833472013473511,36.753749847412166],[-3.955416917800846,36.726806640625114],[-4.064860820770207,36.74874877929699],[-4.109305858611947,36.72486114501959],[-4.24763822555542,36.710693359375],[-4.392639160156192,36.72291564941412],[-4.42847204208374,36.708751678466854],[-4.509861946105899,36.59951782226568],[-4.609304904937744,36.55791854858409],[-4.639028072357178,36.50624847412115],[-4.754027843475342,36.48513793945323],[-4.859583854675293,36.507637023925895],[-4.934584140777531,36.50013732910162],[-5.004860877990723,36.459861755371094],[-5.083751201629581,36.45013809204113],[-5.217360973358097,36.37930679321295],[-5.252076148986816,36.31097412109381],[-5.315357208251952,36.34088134765631],[-5.355302810668945,36.43382263183605],[-5.43215799331665,36.53431701660162],[-5.490570068359375,36.53681564331055],[-5.524099826812744,36.497741699218864],[-5.608139038085937,36.51231765747082],[-5.610074043273926,36.54459381103521],[-5.522013187408447,36.53181838989252],[-5.438354969024601,36.61420059204113],[-5.378942012786865,36.63262557983404],[-5.329536914825383,36.681949615478516],[-5.290791988372803,36.775199890136776],[-5.340572834014893,36.819442749023494],[-5.277233123779297,36.878669738769474],[-5.170263767242432,36.823577880859375],[-5.133933067321777,36.83859252929699],[-5.086628913879395,36.9051170349121],[-5.115006923675537,36.98898315429693],[-5.142242908477726,37.003887176513615],[-5.055153846740723,37.03273773193371],[-4.90823221206665,37.114677429199276],[-4.889711856842041,37.15507888793957],[-4.825770854949894,37.20073318481445],[-4.801078796386662,37.16056823730463],[-4.708467960357609,37.19772338867199],[-4.735610961914062,37.24486160278326],[-4.653213024139404,37.25585937500006],[-4.576076030731201,37.209194183349666],[-4.499290943145752,37.223457336425895],[-4.476914882659912,37.25739288330084],[-4.417837142944336,37.28243637084966],[-4.377594947814885,37.270381927490234],[-4.372388839721566,37.215885162353565],[-4.327489852905273,37.18436050415039]]]},"properties":{"ID_0":215,"ISO":"ES-MA","NAME_0":"Spain","ID_1":1,"NAME_1":"Andalucía","ID_2":7,"NAME_2":"Málaga","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.584665775299072,38.13172149658209],[-5.495430946350098,38.042411804199276],[-5.493587017059325,38.000137329101676],[-5.414253234863281,37.94113922119146],[-5.399909973144474,37.86357879638683],[-5.33928108215332,37.8315315246582],[-5.303967952728271,37.72180175781255],[-5.405365943908635,37.69201278686535],[-5.381317138671818,37.611248016357415],[-5.343643188476505,37.587429046630916],[-5.17664098739624,37.6805992126466],[-5.107796192169133,37.66260147094732],[-5.047622203826847,37.71820831298833],[-4.999695777893066,37.70661544799805],[-4.931580066680851,37.61735153198242],[-4.940755844116154,37.53656005859375],[-4.884609222412109,37.43801116943365],[-4.821993827819824,37.35822296142578],[-4.779951095581055,37.33544158935558],[-4.671775817871037,37.335018157958984],[-4.653213024139404,37.25585937500006],[-4.735610961914062,37.24486160278326],[-4.708467960357609,37.19772338867199],[-4.801078796386662,37.16056823730463],[-4.825770854949894,37.20073318481445],[-4.889711856842041,37.15507888793957],[-4.90823221206665,37.114677429199276],[-5.055153846740723,37.03273773193371],[-5.142242908477726,37.003887176513615],[-5.234878063201904,36.9412078857423],[-5.301580905914306,37.01795578002941],[-5.393181800842285,36.972190856933594],[-5.433547973632812,37.052467346191406],[-5.510847091674805,37.0336265563966],[-5.46959209442133,36.983970642089844],[-5.524351119995117,36.937652587890625],[-5.58291578292841,36.914859771728516],[-5.667803764343262,36.975975036621094],[-5.716869831085205,36.91954040527344],[-5.804832935333195,36.92547988891613],[-5.876375198364258,36.89472961425781],[-5.893436908721867,36.85160446166997],[-5.97753381729126,36.84552383422863],[-6.104298114776554,36.85727310180664],[-6.187014102935791,36.89360046386719],[-6.330854892730655,36.89881896972662],[-6.37089300155634,36.926788330078125],[-6.356688976287842,37.00019836425781],[-6.386240005493107,37.074447631835994],[-6.345101833343506,37.21829605102538],[-6.332860946655273,37.299118041992244],[-6.384430885314941,37.33750152587896],[-6.356122016906738,37.412181854248104],[-6.30540895462036,37.42633056640625],[-6.402295112609863,37.579956054687614],[-6.39871883392334,37.612556457519645],[-6.51354789733881,37.62516403198242],[-6.473649978637695,37.72534561157232],[-6.310890197753906,37.76488113403332],[-6.248309135437012,37.75910186767572],[-6.18410587310791,37.80946350097656],[-6.126297950744629,37.797183990478516],[-6.159060955047607,37.873458862304744],[-6.125260829925537,37.90092086791992],[-6.180110931396428,37.941040039062614],[-6.136054992675724,37.972171783447315],[-6.031247138976994,37.997680664062614],[-5.953561782836857,37.995361328125114],[-5.908856868743896,38.062862396240234],[-5.912795066833496,38.122703552246094],[-5.837734222412053,38.17444229125976],[-5.688713073730468,38.17123794555664],[-5.740613937377872,38.126556396484425],[-5.693505764007568,38.083759307861385],[-5.633309841155949,38.13813781738281],[-5.584665775299072,38.13172149658209]]]},"properties":{"ID_0":215,"ISO":"ES-SE","NAME_0":"Spain","ID_1":1,"NAME_1":"Andalucía","ID_2":8,"NAME_2":"Sevilla","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.727500021457615,42.9192619323731],[-0.57361793518055,42.80739974975586],[-0.509380161762181,42.825286865234425],[-0.444918990135193,42.796031951904354],[-0.384153068065643,42.803859710693416],[-0.306374996900558,42.84132003784174],[-0.14766700565815,42.77390289306635],[-0.061586000025159,42.694717407226676],[0.000748000398744,42.68521118164057],[0.175992712378616,42.73564529418957],[0.259584814310074,42.71584320068365],[0.293188005685863,42.676197052001946],[0.360368013382015,42.72373199462885],[0.396131992340088,42.69387817382818],[0.525922417640686,42.70210647583008],[0.660093009471893,42.69099807739269],[0.708410024642944,42.621208190918026],[0.767548978328705,42.6112632751466],[0.733303010463658,42.50447082519536],[0.696869015693721,42.47412109374999],[0.759205996990261,42.34838485717779],[0.69586402177805,42.15201568603521],[0.702202022075653,42.12190628051758],[0.651740014553013,42.026268005371094],[0.562467992305812,41.93270874023449],[0.592813014984245,41.88443374633789],[0.542420983314514,41.820400238037166],[0.483260989189262,41.80148315429699],[0.469689011573905,41.765640258789176],[0.400644987821579,41.75671005249029],[0.328245997428894,41.68109130859381],[0.34964698553091,41.599483489990234],[0.40205600857746,41.59273910522472],[0.446954995393753,41.54225921630865],[0.397873997688407,41.49129104614269],[0.347351998090858,41.4877662658692],[0.334996998310089,41.40824508666998],[0.245143994689101,41.42873001098644],[0.219129994511604,41.40358734130865],[0.130989000201339,41.3889045715332],[0.106335997581539,41.35083770751953],[-0.069962002336979,41.372982025146534],[-0.104933001101017,41.485500335693416],[-0.156624004244804,41.535312652588004],[-0.156405001878682,41.589992523193416],[-0.239502996206227,41.572566986083984],[-0.355516999959889,41.63235855102544],[-0.367563009262028,41.67787170410162],[-0.503946006298008,41.74616622924805],[-0.524581015109959,41.8483505249024],[-0.630096018314362,41.912548065185604],[-0.657782971858921,41.95750427246105],[-0.796326994895878,41.9626083374024],[-0.854133009910583,42.02234268188476],[-0.8281329870224,42.082561492920036],[-0.762829005718231,42.06806182861334],[-0.761878013610783,42.23134613037114],[-0.730346024036351,42.291175842285156],[-0.780686020851135,42.31838989257824],[-0.813055992126465,42.264495849609375],[-0.893405020236969,42.28195953369152],[-0.842725992202759,42.36635208129894],[-0.8420490026474,42.407394409179744],[-0.881860971450806,42.45706176757824],[-0.924754023551884,42.587974548339844],[-0.887696027755737,42.66762161254883],[-0.901054024696293,42.74272537231445],[-0.84750097990036,42.785926818847656],[-0.856801986694336,42.84689331054699],[-0.783181011676788,42.921730041503906],[-0.727500021457615,42.9192619323731]]]},"properties":{"ID_0":215,"ISO":"ES-HU","NAME_0":"Spain","ID_1":2,"NAME_1":"Aragón","ID_2":9,"NAME_2":"Huesca","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.220387995243129,41.071453094482536],[0.281127005815563,40.98719024658209],[0.246047005057449,40.88722229003912],[0.278264999389762,40.82106018066412],[0.170766994357109,40.732860565185604],[0.11254400014883,40.72716140747082],[0.042220998555536,40.6910285949707],[0.015783000737713,40.72845077514654],[-0.064652003347874,40.7274284362793],[-0.194418996572495,40.78184509277355],[-0.223985999822617,40.75418090820324],[-0.235943004488888,40.69112777709972],[-0.306116998195648,40.66398620605463],[-0.378042012453079,40.66743469238281],[-0.379617005586624,40.623550415039],[-0.29323598742485,40.611064910888615],[-0.301809996366501,40.51598739624029],[-0.290322989225388,40.47063446044922],[-0.347303003072739,40.443962097168026],[-0.285189986228943,40.38634109497082],[-0.341042995452881,40.32904434204107],[-0.400052011012974,40.29418563842779],[-0.383570998907089,40.26486968994146],[-0.494459986686593,40.22875595092779],[-0.544130027294045,40.25168228149425],[-0.586925029754639,40.13145446777338],[-0.664054989814758,40.05146408081055],[-0.7622110247612,40.04128646850597],[-0.789560973644257,39.9899406433106],[-0.837882995605469,39.976573944091854],[-0.829923987388554,39.90680694580078],[-0.797631025314274,39.88109207153332],[-0.867357015609684,39.84680175781256],[-0.912501990795135,39.872379302978516],[-0.905973970890045,39.94398117065435],[-0.991253018379211,39.981857299804744],[-1.142333984374943,39.97186660766612],[-1.165125966072025,40.0101203918457],[-1.084169030189514,40.036235809326165],[-1.072069048881474,40.06050872802729],[-1.147271037101689,40.11396026611328],[-1.244909048080444,40.116165161132926],[-1.284281015396118,40.171520233154354],[-1.357035994529667,40.128910064697266],[-1.44879400730133,40.14536285400402],[-1.47435200214386,40.18506622314453],[-1.540416955947876,40.190826416015625],[-1.806290030479431,40.398250579833984],[-1.748532056808415,40.4629135131837],[-1.692445039749145,40.48684310913097],[-1.685752987861576,40.579925537109375],[-1.598682999610844,40.56207275390631],[-1.535573959350529,40.68703842163086],[-1.561952948570251,40.739768981933594],[-1.544618010520935,40.81620788574219],[-1.620244026184025,40.87950134277355],[-1.617385983467045,40.94374847412121],[-1.557870984077454,40.93934249877929],[-1.446859002113342,40.976554870605575],[-1.4578759670257,41.01837158203119],[-1.409960031509399,41.0579185485841],[-1.287374019622803,41.04887771606451],[-1.271312952041569,41.103294372558594],[-1.209926962852421,41.13881683349615],[-1.121549010276738,41.13494110107422],[-1.104665040969849,41.16767883300792],[-0.957207024097443,41.07636260986322],[-0.883608996868134,41.13013076782232],[-0.798951029777527,41.103305816650504],[-0.76136302947998,41.16967391967785],[-0.693919003009796,41.11231231689459],[-0.609851002693176,41.1916961669923],[-0.629670023918152,41.31177520751953],[-0.558869004249573,41.35432052612316],[-0.47988298535347,41.34595108032238],[-0.405813008546772,41.272380828857415],[-0.31326499581337,41.2556533813476],[-0.222430005669537,41.18887710571295],[-0.180301994085255,41.187881469726676],[-0.012187999673188,41.120269775390625],[0.000441999786005,41.08927536010742],[0.145895004272575,41.063064575195305],[0.220387995243129,41.071453094482536]]]},"properties":{"ID_0":215,"ISO":"ES-TE","NAME_0":"Spain","ID_1":2,"NAME_1":"Aragón","ID_2":10,"NAME_2":"Teruel","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.334996998310089,41.40824508666998],[0.373762995004768,41.35042572021496],[0.348551005125103,41.32979202270508],[0.385697990655899,41.278869628906364],[0.36421799659729,41.227695465088004],[0.322441011667308,41.22526168823242],[0.303355991840419,41.16440200805664],[0.219870999455452,41.13244628906249],[0.220387995243129,41.071453094482536],[0.145895004272575,41.063064575195305],[0.000441999786005,41.08927536010742],[-0.012187999673188,41.120269775390625],[-0.180301994085255,41.187881469726676],[-0.222430005669537,41.18887710571295],[-0.31326499581337,41.2556533813476],[-0.405813008546772,41.272380828857415],[-0.47988298535347,41.34595108032238],[-0.558869004249573,41.35432052612316],[-0.629670023918152,41.31177520751953],[-0.609851002693176,41.1916961669923],[-0.693919003009796,41.11231231689459],[-0.76136302947998,41.16967391967785],[-0.798951029777527,41.103305816650504],[-0.883608996868134,41.13013076782232],[-0.957207024097443,41.07636260986322],[-1.104665040969849,41.16767883300792],[-1.121549010276738,41.13494110107422],[-1.209926962852421,41.13881683349615],[-1.271312952041569,41.103294372558594],[-1.287374019622803,41.04887771606451],[-1.409960031509399,41.0579185485841],[-1.4578759670257,41.01837158203119],[-1.446859002113342,40.976554870605575],[-1.557870984077454,40.93934249877929],[-1.617385983467045,40.94374847412121],[-1.816406965255737,41.09529495239269],[-1.932382941245976,41.13860321044922],[-1.958953022956791,41.172496795654354],[-2.051626920700073,41.14686203002929],[-2.146174907684326,41.18440628051752],[-2.170420885086003,41.31884002685547],[-2.120090007781982,41.37968444824219],[-2.101455926895141,41.44579696655279],[-2.035559892654362,41.42689895629883],[-2.029207944869995,41.3841667175293],[-1.953624963760376,41.40864562988281],[-1.981048941612187,41.486442565917905],[-1.967273950576782,41.546073913574276],[-1.993265986442566,41.60013961791998],[-1.923038959503174,41.59833908081055],[-1.858929038047791,41.66153717041009],[-1.813053965568485,41.6605682373048],[-1.787713050842228,41.73413848876959],[-1.852859020233155,41.78956985473644],[-1.818503975868168,41.82995986938482],[-1.857223987579289,41.9095191955567],[-1.856485962867737,41.966403961181754],[-1.847131967544556,42.00800323486334],[-1.766844987869263,41.99579620361334],[-1.734251022338867,41.963905334472656],[-1.654091000556889,41.96535491943371],[-1.596199035644418,41.927097320556754],[-1.4217289686203,41.913078308105575],[-1.304774999618473,42.042953491211044],[-1.398833036422729,42.12622451782237],[-1.416308999061584,42.22200393676752],[-1.399036049842834,42.2913055419923],[-1.329038977622986,42.35538864135742],[-1.359730005264225,42.37836456298828],[-1.341464996337834,42.42394256591797],[-1.272691965103092,42.48237228393555],[-1.288095951080265,42.522792816162045],[-1.232185006141606,42.543357849121094],[-1.157616019248962,42.61046981811529],[-1.152374029159489,42.647567749023494],[-1.038563013076782,42.64833450317383],[-1.027948975563049,42.70006561279308],[-0.948643982410431,42.71146011352539],[-0.901054024696293,42.74272537231445],[-0.887696027755737,42.66762161254883],[-0.924754023551884,42.587974548339844],[-0.881860971450806,42.45706176757824],[-0.8420490026474,42.407394409179744],[-0.842725992202759,42.36635208129894],[-0.893405020236969,42.28195953369152],[-0.813055992126465,42.264495849609375],[-0.780686020851135,42.31838989257824],[-0.730346024036351,42.291175842285156],[-0.761878013610783,42.23134613037114],[-0.762829005718231,42.06806182861334],[-0.8281329870224,42.082561492920036],[-0.854133009910583,42.02234268188476],[-0.796326994895878,41.9626083374024],[-0.657782971858921,41.95750427246105],[-0.630096018314362,41.912548065185604],[-0.524581015109959,41.8483505249024],[-0.503946006298008,41.74616622924805],[-0.367563009262028,41.67787170410162],[-0.355516999959889,41.63235855102544],[-0.239502996206227,41.572566986083984],[-0.156405001878682,41.589992523193416],[-0.156624004244804,41.535312652588004],[-0.104933001101017,41.485500335693416],[-0.069962002336979,41.372982025146534],[0.106335997581539,41.35083770751953],[0.130989000201339,41.3889045715332],[0.219129994511604,41.40358734130865],[0.245143994689101,41.42873001098644],[0.334996998310089,41.40824508666998]]]},"properties":{"ID_0":215,"ISO":"ES-Z","NAME_0":"Spain","ID_1":2,"NAME_1":"Aragón","ID_2":11,"NAME_2":"Zaragoza","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.153194904327393,43.353248596191456],[-3.157285928726196,43.30130386352545],[-3.225183963775635,43.308917999267635],[-3.382946014404297,43.2704696655274],[-3.430324077606201,43.24207305908209],[-3.417598009109497,43.13340759277355],[-3.486917972564584,43.13323974609369],[-3.650960922241211,43.18101501464849],[-3.719187021255493,43.10832595825207],[-3.960742950439453,42.99242401123058],[-3.990813970565739,42.93080902099615],[-3.825279951095524,42.86861038208008],[-3.821597099304199,42.800266265869254],[-3.999572992324773,42.76895523071295],[-4.045835018157902,42.766590118408196],[-4.081262111663818,42.76144027709961],[-4.14983606338501,42.78928375244146],[-4.148914813995361,42.86573028564459],[-4.22562217712391,42.85885620117193],[-4.23841476440424,42.95434188842779],[-4.347248077392521,42.97212219238281],[-4.398038864135685,43.03483200073248],[-4.463020801544133,43.060028076171875],[-4.558369159698486,43.01948165893555],[-4.7369189262389,43.02095413208019],[-4.76641321182251,43.07451248168951],[-4.851337909698486,43.125907897949276],[-4.840936183929443,43.180740356445256],[-4.745722770690917,43.18407821655268],[-4.730861186981201,43.257293701171925],[-4.634801864624023,43.26873016357421],[-4.59830904006958,43.298503875732536],[-4.521636009216252,43.28058624267584],[-4.539379119873047,43.343917846679744],[-4.512214183807316,43.393196105957145],[-4.274028778076172,43.38930511474615],[-4.076806068420352,43.43097305297857],[-3.96986198425293,43.440418243408146],[-3.945137977600097,43.4684715270996],[-3.812360048294067,43.49458312988287],[-3.771249055862427,43.448749542236385],[-3.597637891769352,43.513195037841854],[-3.545137882232666,43.508193969726676],[-3.44430494308466,43.422916412353516],[-3.327084064483643,43.415996551513786],[-3.222637891769352,43.396526336670036],[-3.153194904327393,43.353248596191456]]]},"properties":{"ID_0":215,"ISO":"ES-S3","NAME_0":"Spain","ID_1":3,"NAME_1":"Cantabria","ID_2":12,"NAME_2":"Cantabria","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.928873002529087,38.78386688232433],[-0.961362004280033,38.774822235107536],[-0.915727019309941,38.69599914550781],[-0.962399005889779,38.65695953369146],[-1.026051044464111,38.655689239501946],[-1.183928966522217,38.754447937011776],[-1.249382972717285,38.73839569091797],[-1.342898011207581,38.677524566650504],[-1.402217030525151,38.69132614135742],[-1.447710990905762,38.64936065673834],[-1.45231294631958,38.58181762695318],[-1.498383045196533,38.5320663452149],[-1.48065805435175,38.48085021972656],[-1.478346943855286,38.376396179199276],[-1.589324951171818,38.311233520507926],[-1.669927000999337,38.31235504150396],[-1.681859970092717,38.36017990112316],[-1.743435978889465,38.381320953369254],[-1.907454013824463,38.29799270629894],[-1.978098034858647,38.282218933105526],[-2.063683986663818,38.29762268066412],[-2.113636016845646,38.23823547363281],[-2.213428020477295,38.2018394470216],[-2.261549949645882,38.11299514770519],[-2.329797983169555,38.065437316894524],[-2.341528892517033,38.026039123535206],[-2.423309087753295,38.03374099731451],[-2.551191091537419,38.084133148193416],[-2.446175098419189,38.18522644042969],[-2.440682888030949,38.28513717651373],[-2.485029935836735,38.30028152465832],[-2.483309030532723,38.39788818359375],[-2.571449995040894,38.41395568847656],[-2.566536903381348,38.49049758911133],[-2.598725080490112,38.51287078857433],[-2.672630071639958,38.496654510498104],[-2.761981964111328,38.53278350830078],[-2.750001907348519,38.61559677124018],[-2.668765068054142,38.649250030517635],[-2.637800931930485,38.73465347290039],[-2.750186920166016,38.8071403503418],[-2.761782884597721,38.880363464355526],[-2.835716009139958,38.90600204467779],[-2.880106925964241,38.953166961670036],[-2.809843063354492,39.02385711669916],[-2.804920911788884,39.07897186279308],[-2.842566967010498,39.13451766967779],[-2.723104000091553,39.26482009887706],[-2.742161989212036,39.31818008422857],[-2.619170904159546,39.3401718139649],[-2.550766944885254,39.323516845703125],[-2.510960102081242,39.342182159423885],[-2.37399506568903,39.23281097412115],[-2.321110010147038,39.28376770019537],[-2.288595914840698,39.22668838500988],[-2.168374061584473,39.28105545043956],[-2.074924945831242,39.266067504882926],[-2.086193084716683,39.347206115722656],[-2.044286012649479,39.35919952392578],[-1.989724040031433,39.293708801269645],[-1.887004971504211,39.30482101440435],[-1.769783020019531,39.28053665161133],[-1.73921000957489,39.32118988037121],[-1.626757979392948,39.36095809936534],[-1.505107045173588,39.418025970458984],[-1.462545990943852,39.379417419433594],[-1.383658051490784,39.36626052856451],[-1.352220058441162,39.33981323242193],[-1.161823034286442,39.30544662475597],[-1.194430947303658,39.180438995361385],[-1.265632987022343,39.075496673583984],[-1.146587014198303,38.929386138916016],[-0.959344983100891,38.944614410400334],[-0.940787971019688,38.89965057373058],[-0.928873002529087,38.78386688232433]]]},"properties":{"ID_0":215,"ISO":"ES-AB","NAME_0":"Spain","ID_1":4,"NAME_1":"Castilla-La Mancha","ID_2":13,"NAME_2":"Albacete","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.755263805389404,39.41572570800787],[-4.861216068267821,39.379329681396484],[-4.940631866455021,39.395133972168026],[-4.898127079009953,39.5120735168457],[-4.863014221191406,39.55615997314464],[-4.762368202209473,39.514049530029354],[-4.740404129028263,39.45617675781256],[-4.755263805389404,39.41572570800787]]],[[[-2.931284904479924,39.471508026123104],[-2.889579057693424,39.421947479248104],[-2.882286071777287,39.35090637207037],[-2.84558010101307,39.34932327270519],[-2.793028116226139,39.39775848388672],[-2.742161989212036,39.31818008422857],[-2.723104000091553,39.26482009887706],[-2.842566967010498,39.13451766967779],[-2.804920911788884,39.07897186279308],[-2.809843063354492,39.02385711669916],[-2.880106925964241,38.953166961670036],[-2.835716009139958,38.90600204467779],[-2.761782884597721,38.880363464355526],[-2.750186920166016,38.8071403503418],[-2.637800931930485,38.73465347290039],[-2.668765068054142,38.649250030517635],[-2.750001907348519,38.61559677124018],[-2.761981964111328,38.53278350830078],[-2.889669895172119,38.455909729003906],[-2.938338994979801,38.47477340698253],[-2.99340295791626,38.450149536132805],[-3.06486010551447,38.47827911376959],[-3.130091905593815,38.43879699707037],[-3.374902963638192,38.47526168823242],[-3.376575946807861,38.43962478637701],[-3.472486019134464,38.39798355102539],[-3.528333902358952,38.40866851806646],[-3.62036299705494,38.39401245117199],[-3.729901075363102,38.424392700195305],[-3.807749032974186,38.42184448242199],[-3.854177951812631,38.37516784667963],[-3.961827993392944,38.36612319946289],[-4.155951023101807,38.38135528564459],[-4.255440235137939,38.401844024658196],[-4.268754959106444,38.347198486328125],[-4.435056209564209,38.4022598266601],[-4.505751132965088,38.45755767822277],[-4.608470916747933,38.49472808837902],[-4.622152805328312,38.523490905761776],[-4.787430763244629,38.59707260131847],[-4.860057830810547,38.61399841308594],[-4.868766784667969,38.68095397949219],[-5.000820159912109,38.696800231933594],[-5.046835899352971,38.72910690307617],[-4.989881992340031,38.739776611328175],[-4.943374156951847,38.8543968200683],[-4.914830207824707,38.887458801269645],[-4.847708225250186,38.882068634033196],[-4.832901954650879,38.939323425293075],[-4.933557987213135,38.975593566894645],[-4.962394237518311,39.05874633789074],[-4.882243156433049,39.032867431640625],[-4.832681179046574,39.0461807250976],[-4.874311923980656,39.099037170410156],[-4.810163021087646,39.19943237304693],[-4.714297771453801,39.18763732910162],[-4.705051898956299,39.21376037597662],[-4.760903835296517,39.320804595947266],[-4.709940910339355,39.345764160156364],[-4.669393062591553,39.4245491027832],[-4.687589168548584,39.45030975341808],[-4.618028163909855,39.45441436767578],[-4.613893032073975,39.48527908325201],[-4.554523944854736,39.5107917785645],[-4.521309852600041,39.55591964721674],[-4.452974796295109,39.517303466796875],[-4.320546150207463,39.48342895507818],[-4.241985797881966,39.4779167175293],[-4.193128108978271,39.495403289795036],[-4.166355133056641,39.566905975341854],[-4.041675090789738,39.57537460327143],[-4.058722972869873,39.47220611572271],[-4.117967128753661,39.456901550293026],[-4.147966861724797,39.36278533935558],[-3.972095966338998,39.35219573974615],[-3.965364933013859,39.298198699951286],[-3.841568946838379,39.259601593017635],[-3.765589952468872,39.293338775634766],[-3.720587968826294,39.269809722900334],[-3.675055980682373,39.2966651916505],[-3.556068897247258,39.299072265625114],[-3.476778030395451,39.343170166015625],[-3.410178899765015,39.40461349487316],[-3.349462985992375,39.4083366394043],[-3.294100999832153,39.470870971679744],[-3.143331050872803,39.495552062988224],[-3.069504976272526,39.450298309326165],[-2.977644920349064,39.44470214843755],[-2.931284904479924,39.471508026123104]]]]},"properties":{"ID_0":215,"ISO":"ES-CR","NAME_0":"Spain","ID_1":4,"NAME_1":"Castilla-La Mancha","ID_2":14,"NAME_2":"Ciudad Real","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.806290030479431,40.398250579833984],[-1.540416955947876,40.190826416015625],[-1.47435200214386,40.18506622314453],[-1.44879400730133,40.14536285400402],[-1.383072972297611,40.03899002075207],[-1.248002052307072,39.9950904846192],[-1.165125966072025,40.0101203918457],[-1.142333984374943,39.97186660766612],[-1.203917026519662,39.94937133789062],[-1.19991397857666,39.85945892333996],[-1.214938044547978,39.808799743652344],[-1.275374054908639,39.737014770507756],[-1.261929988861084,39.69892883300781],[-1.312760949134827,39.670509338378906],[-1.368468046188297,39.689640045166016],[-1.417865991592407,39.65496063232433],[-1.462015032768193,39.57664489746093],[-1.504294991493225,39.56393051147455],[-1.505107045173588,39.418025970458984],[-1.626757979392948,39.36095809936534],[-1.73921000957489,39.32118988037121],[-1.769783020019531,39.28053665161133],[-1.887004971504211,39.30482101440435],[-1.989724040031433,39.293708801269645],[-2.044286012649479,39.35919952392578],[-2.086193084716683,39.347206115722656],[-2.074924945831242,39.266067504882926],[-2.168374061584473,39.28105545043956],[-2.288595914840698,39.22668838500988],[-2.321110010147038,39.28376770019537],[-2.37399506568903,39.23281097412115],[-2.510960102081242,39.342182159423885],[-2.550766944885254,39.323516845703125],[-2.619170904159546,39.3401718139649],[-2.742161989212036,39.31818008422857],[-2.793028116226139,39.39775848388672],[-2.84558010101307,39.34932327270519],[-2.882286071777287,39.35090637207037],[-2.889579057693424,39.421947479248104],[-2.931284904479924,39.471508026123104],[-2.925425052642822,39.60182189941406],[-2.908144950866586,39.6423568725587],[-2.997659921646118,39.718891143798885],[-3.059587001800537,39.83749389648449],[-3.122030019760132,39.876094818115284],[-3.096506118774414,39.98695755004894],[-3.142473936080875,39.984981536865284],[-3.161286115646362,40.06514358520519],[-3.088567972183227,40.07051086425786],[-3.053999900817871,40.10651397705078],[-3.067744016647339,40.157539367675895],[-2.887505054473877,40.16464996337885],[-2.825897932052555,40.20225524902344],[-2.802547931671143,40.26404190063482],[-2.816610097885018,40.3347053527832],[-2.807231903076115,40.40726852416998],[-2.722819089889526,40.39713287353527],[-2.67627906799305,40.435794830322266],[-2.504460096359252,40.44866561889654],[-2.52865290641779,40.49839782714855],[-2.379930019378605,40.5436019897462],[-2.28596806526184,40.592239379882926],[-2.274527072906494,40.64477157592785],[-2.213742017745915,40.61919403076172],[-2.156863927841186,40.65870666503906],[-2.091131925582886,40.64638137817383],[-2.034471988677865,40.60095214843756],[-1.923588037490845,40.592041015625114],[-1.856394052505493,40.42881011962885],[-1.806290030479431,40.398250579833984]]]},"properties":{"ID_0":215,"ISO":"ES-CU","NAME_0":"Spain","ID_1":4,"NAME_1":"Castilla-La Mancha","ID_2":15,"NAME_2":"Cuenca","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.051626920700073,41.14686203002929],[-1.958953022956791,41.172496795654354],[-1.932382941245976,41.13860321044922],[-1.816406965255737,41.09529495239269],[-1.617385983467045,40.94374847412121],[-1.620244026184025,40.87950134277355],[-1.544618010520935,40.81620788574219],[-1.561952948570251,40.739768981933594],[-1.535573959350529,40.68703842163086],[-1.598682999610844,40.56207275390631],[-1.685752987861576,40.579925537109375],[-1.692445039749145,40.48684310913097],[-1.748532056808415,40.4629135131837],[-1.806290030479431,40.398250579833984],[-1.856394052505493,40.42881011962885],[-1.923588037490845,40.592041015625114],[-2.034471988677865,40.60095214843756],[-2.091131925582886,40.64638137817383],[-2.156863927841186,40.65870666503906],[-2.213742017745915,40.61919403076172],[-2.274527072906494,40.64477157592785],[-2.28596806526184,40.592239379882926],[-2.379930019378605,40.5436019897462],[-2.52865290641779,40.49839782714855],[-2.504460096359252,40.44866561889654],[-2.67627906799305,40.435794830322266],[-2.722819089889526,40.39713287353527],[-2.807231903076115,40.40726852416998],[-2.816610097885018,40.3347053527832],[-2.802547931671143,40.26404190063482],[-2.825897932052555,40.20225524902344],[-2.887505054473877,40.16464996337885],[-3.067744016647339,40.157539367675895],[-3.078999996185246,40.22401046752941],[-3.111999988555908,40.28564453125006],[-3.183469057083073,40.269290924072266],[-3.130392074584904,40.40507888793945],[-3.19864296913147,40.44232177734386],[-3.200581073760986,40.51469421386719],[-3.330382108688354,40.59740447998058],[-3.323318958282471,40.63013458251959],[-3.461599111557006,40.69269943237299],[-3.434103012084961,40.73077011108404],[-3.465787887573242,40.7842636108399],[-3.50255298614502,40.789062500000114],[-3.444138050079289,40.8878631591798],[-3.397598028182927,41.00736618042003],[-3.438203096389657,41.04261016845703],[-3.539695978164673,41.16501235961913],[-3.409140110015869,41.21182250976562],[-3.399427890777531,41.254547119140625],[-3.290096044540405,41.25793457031244],[-3.207281112670842,41.30424118041992],[-3.061829090118408,41.27343368530284],[-2.950057983398438,41.29264450073248],[-2.90659499168396,41.32764053344738],[-2.86681509017933,41.274475097656364],[-2.782421112060547,41.25377273559576],[-2.760874032974243,41.274032592773494],[-2.654762029647827,41.24066162109381],[-2.516866922378483,41.14645385742193],[-2.469394922256469,41.07811737060547],[-2.323337078094426,41.05651855468744],[-2.232078075408879,41.097023010253906],[-2.175230026245117,41.08376693725586],[-2.065555095672551,41.09580230712902],[-2.051626920700073,41.14686203002929]]]},"properties":{"ID_0":215,"ISO":"ES-GU","NAME_0":"Spain","ID_1":4,"NAME_1":"Castilla-La Mancha","ID_2":16,"NAME_2":"Guadalajara","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.161286115646362,40.06514358520519],[-3.142473936080875,39.984981536865284],[-3.096506118774414,39.98695755004894],[-3.122030019760132,39.876094818115284],[-3.059587001800537,39.83749389648449],[-2.997659921646118,39.718891143798885],[-2.908144950866586,39.6423568725587],[-2.925425052642822,39.60182189941406],[-2.931284904479924,39.471508026123104],[-2.977644920349064,39.44470214843755],[-3.069504976272526,39.450298309326165],[-3.143331050872803,39.495552062988224],[-3.294100999832153,39.470870971679744],[-3.349462985992375,39.4083366394043],[-3.410178899765015,39.40461349487316],[-3.476778030395451,39.343170166015625],[-3.556068897247258,39.299072265625114],[-3.675055980682373,39.2966651916505],[-3.720587968826294,39.269809722900334],[-3.765589952468872,39.293338775634766],[-3.841568946838379,39.259601593017635],[-3.965364933013859,39.298198699951286],[-3.972095966338998,39.35219573974615],[-4.147966861724797,39.36278533935558],[-4.117967128753661,39.456901550293026],[-4.058722972869873,39.47220611572271],[-4.041675090789738,39.57537460327143],[-4.166355133056641,39.566905975341854],[-4.193128108978271,39.495403289795036],[-4.241985797881966,39.4779167175293],[-4.320546150207463,39.48342895507818],[-4.452974796295109,39.517303466796875],[-4.521309852600041,39.55591964721674],[-4.554523944854736,39.5107917785645],[-4.613893032073975,39.48527908325201],[-4.618028163909855,39.45441436767578],[-4.687589168548584,39.45030975341808],[-4.755263805389404,39.41572570800787],[-4.740404129028263,39.45617675781256],[-4.762368202209473,39.514049530029354],[-4.863014221191406,39.55615997314464],[-4.898127079009953,39.5120735168457],[-4.940631866455021,39.395133972168026],[-4.952404022216797,39.39500808715826],[-5.058783054351807,39.48942947387701],[-5.083785057067871,39.49067687988287],[-5.201958179473877,39.59203338623058],[-5.151309013366699,39.66129684448248],[-5.137683868408203,39.71500778198242],[-5.166789054870548,39.79989242553711],[-5.205974102020264,39.79773712158203],[-5.254111766815186,39.75255203247082],[-5.316100120544434,39.7727890014649],[-5.283411979675293,39.857219696045036],[-5.326340198516845,39.89197540283209],[-5.400968074798584,39.885673522949276],[-5.364984989166146,39.983856201171875],[-5.368899822235051,40.100090026855526],[-5.33586597442627,40.11582183837885],[-5.124691009521428,40.10409927368163],[-5.06272983551014,40.15164184570324],[-5.006133079528809,40.10971832275385],[-4.925343990325928,40.13604354858404],[-4.924567222595158,40.169990539550724],[-4.761082172393799,40.260944366455135],[-4.698033809661808,40.282199859619254],[-4.686550140380803,40.211029052734375],[-4.61680078506464,40.2002220153808],[-4.578898906707764,40.217411041259766],[-4.535758018493596,40.19956970214843],[-4.427375793457031,40.25784683227539],[-4.356800079345589,40.30965805053722],[-4.341254234313965,40.23995208740246],[-4.295822143554631,40.21909713745111],[-4.245747089385986,40.27372360229498],[-4.104146003723145,40.241806030273494],[-4.071133136749268,40.26481246948248],[-3.992347955703679,40.20973205566412],[-3.952852964401245,40.21233367919916],[-3.800069093704223,40.17570495605463],[-3.771778106689396,40.13958740234381],[-3.723573923110961,40.147117614746094],[-3.606399059295597,40.10900497436535],[-3.620538949966374,40.05612182617182],[-3.700261116027832,40.01890945434576],[-3.751385927200203,39.95280456542969],[-3.808095932006779,39.95481109619152],[-3.875791072845402,39.92867660522461],[-3.814594030380249,39.88585662841797],[-3.589570045471135,40.01348114013677],[-3.515156030654907,40.04327392578131],[-3.429590940475464,40.03875732421869],[-3.327255010604744,40.07956695556652],[-3.276740074157601,40.0474472045899],[-3.161286115646362,40.06514358520519]]]},"properties":{"ID_0":215,"ISO":"ES-TO","NAME_0":"Spain","ID_1":4,"NAME_1":"Castilla-La Mancha","ID_2":17,"NAME_2":"Toledo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.722003936767578,41.14931488037114],[-4.716413021087646,41.07158279418951],[-4.639432907104492,41.030052185058594],[-4.606649875640869,40.97080230712896],[-4.566255092620793,40.95619964599604],[-4.546289920806885,40.82555007934575],[-4.49367618560791,40.83351898193371],[-4.480476856231633,40.786163330078175],[-4.431028842925969,40.742385864257756],[-4.419524192809945,40.633430480957145],[-4.319613933563232,40.647518157958984],[-4.275018215179443,40.67631149291992],[-4.160161018371525,40.68984603881836],[-4.161231994628906,40.623374938964844],[-4.283215999603271,40.59530639648449],[-4.322902202606144,40.551105499267635],[-4.324088096618652,40.41864013671881],[-4.432000160217285,40.39775848388672],[-4.455410957336369,40.319923400878906],[-4.504278182983341,40.3151092529298],[-4.569112777709903,40.25721359252941],[-4.578898906707764,40.217411041259766],[-4.61680078506464,40.2002220153808],[-4.686550140380803,40.211029052734375],[-4.698033809661808,40.282199859619254],[-4.761082172393799,40.260944366455135],[-4.924567222595158,40.169990539550724],[-4.925343990325928,40.13604354858404],[-5.006133079528809,40.10971832275385],[-5.06272983551014,40.15164184570324],[-5.124691009521428,40.10409927368163],[-5.33586597442627,40.11582183837885],[-5.36788606643671,40.16411209106457],[-5.369561195373535,40.2183189392091],[-5.429717063903752,40.25226211547863],[-5.470802783966064,40.20785522460943],[-5.530856132507324,40.19472503662121],[-5.609930038452148,40.21548843383789],[-5.692549228668155,40.29211044311535],[-5.737448215484619,40.294128417968864],[-5.686246871948185,40.35537338256841],[-5.691077232360839,40.4219970703125],[-5.589688777923584,40.46725463867193],[-5.544643878936767,40.42309951782232],[-5.460343837738037,40.47404479980469],[-5.430967807769719,40.56723785400402],[-5.517374992370549,40.54562377929693],[-5.516111850738468,40.58538055419933],[-5.447542190551701,40.57959747314459],[-5.382845878601074,40.62076568603521],[-5.364667892455997,40.67943572998041],[-5.292736053466797,40.710269927978516],[-5.161398887634277,40.81400299072271],[-5.161437034606934,40.86224746704113],[-5.111110210418644,40.9149284362793],[-5.128064155578613,40.948574066162166],[-5.089735984802189,40.99662780761713],[-5.146436214447021,41.04364013671881],[-5.124823093414249,41.132038116455135],[-5.013811111450138,41.162197113037166],[-4.967510223388614,41.15229797363281],[-4.870148181915226,41.10026550292969],[-4.805746078491211,41.13515853881847],[-4.722003936767578,41.14931488037114]]]},"properties":{"ID_0":215,"ISO":"ES-AV","NAME_0":"Spain","ID_1":5,"NAME_1":"Castilla y León","ID_2":18,"NAME_2":"Ávila","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.830471992492676,42.79212188720709],[-2.743621110916137,42.792179107666016],[-2.562522888183537,42.74126815795904],[-2.578068971633854,42.673976898193416],[-2.767848014831486,42.66600036621094],[-2.784454107284545,42.69892883300792],[-2.854151964187622,42.7363853454591],[-2.830471992492676,42.79212188720709]]],[[[-3.141315937042179,43.16151809692394],[-3.181739091873169,43.120861053466854],[-3.133893013000431,43.0972175598145],[-3.144740104675236,43.00682067871094],[-3.060210943221989,43.003494262695426],[-3.011576890945321,42.9524307250976],[-3.016088962554818,42.91053771972661],[-3.126481056213322,42.90404129028332],[-3.147705078124943,42.932670593261776],[-3.224679946899414,42.94967269897461],[-3.282557010650634,42.875492095947266],[-3.225788116455078,42.83009719848632],[-3.100594997406006,42.76715087890631],[-3.017769098281804,42.74121093750005],[-2.986951112747192,42.70883941650402],[-2.90244889259327,42.69358825683605],[-2.858040094375554,42.63819122314459],[-2.883472919464054,42.624416351318466],[-3.004699945449772,42.64425277709972],[-3.105381011962834,42.55391311645508],[-3.071721076965275,42.527660369873104],[-3.05308198928833,42.37340927124035],[-3.109194040298405,42.35187149047862],[-3.088526964187565,42.2457160949707],[-3.128798961639347,42.20092773437494],[-3.034306049346924,42.08595657348644],[-2.932396888732853,42.08089065551758],[-2.913556098937988,42.022846221923935],[-2.998411893844604,41.93259811401373],[-3.0166978836059,41.886905670166016],[-3.087666034698486,41.87634658813488],[-3.171284914016724,41.79301834106457],[-3.19442892074585,41.82892990112305],[-3.278966903686467,41.86791229248041],[-3.275383949279785,41.768676757812614],[-3.352828979492131,41.73793411254883],[-3.358329057693368,41.69343185424816],[-3.407270908355656,41.675594329833984],[-3.459089040756168,41.58963394165045],[-3.541496038436889,41.577602386474666],[-3.645179033279362,41.572093963623104],[-3.728228092193604,41.517627716064396],[-3.732327938079834,41.469879150390625],[-3.823774099349919,41.48111724853515],[-3.863621950149479,41.528957366943416],[-3.980581045150756,41.58335876464844],[-4.030276775360107,41.63048171997082],[-4.025950908660832,41.6923713684082],[-4.068036079406681,41.72653961181652],[-4.040792942047062,41.7683486938476],[-4.089988231658936,41.8308563232423],[-4.088746070861703,41.870639801025504],[-3.980622053146305,41.90060806274425],[-4.014701843261662,41.998573303222656],[-3.980102062225341,42.04302978515624],[-4.104028224945067,42.0616111755371],[-4.05613183975214,42.10089492797846],[-4.120851993560791,42.12826538085932],[-4.205338001251164,42.13459396362315],[-4.190876960754338,42.1809921264649],[-4.226846218109017,42.22954559326166],[-4.278985977172852,42.36120986938487],[-4.321503162383976,42.3798828125],[-4.335258007049561,42.43059539794922],[-4.242513179779053,42.456222534179744],[-4.292514801025334,42.60594558715832],[-4.275951862335205,42.67304992675781],[-4.185306072235051,42.73616027832031],[-4.081262111663818,42.76144027709961],[-4.045835018157902,42.766590118408196],[-3.999572992324773,42.76895523071295],[-3.821597099304199,42.800266265869254],[-3.825279951095524,42.86861038208008],[-3.990813970565739,42.93080902099615],[-3.960742950439453,42.99242401123058],[-3.719187021255493,43.10832595825207],[-3.650960922241211,43.18101501464849],[-3.486917972564584,43.13323974609369],[-3.417598009109497,43.13340759277355],[-3.253370046615543,43.19855880737316],[-3.223452091217041,43.17222976684582],[-3.141315937042179,43.16151809692394]]]]},"properties":{"ID_0":215,"ISO":"ES-BU","NAME_0":"Spain","ID_1":5,"NAME_1":"Castilla y León","ID_2":19,"NAME_2":"Burgos","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.7369189262389,43.02095413208019],[-4.794729232788086,42.98661804199219],[-4.802559852600041,42.94947433471673],[-4.88846302032465,42.841106414795036],[-4.936265945434513,42.744441986083984],[-4.879868030548039,42.703971862793026],[-4.914418220519963,42.54469299316406],[-4.887893199920654,42.537002563476506],[-4.903138160705566,42.38650512695324],[-4.942393779754639,42.34652709960937],[-4.953344821929875,42.29713439941411],[-5.002037048339787,42.28910827636718],[-5.093648910522404,42.309272766113224],[-5.197799205779972,42.26052474975597],[-5.244579792022648,42.26385116577154],[-5.265536785125675,42.21088027954107],[-5.38798999786377,42.221427917480526],[-5.371414184570312,42.130050659179744],[-5.376186847686711,42.041454315185604],[-5.421480178833008,42.030662536621094],[-5.480814933776855,42.05241012573253],[-5.520780086517277,42.09712600708008],[-5.580058097839355,42.058437347412166],[-5.645112991333008,42.13214874267584],[-5.743112087249756,42.11341094970703],[-5.837953090667668,42.11875915527343],[-5.911478042602539,42.14057159423834],[-5.953343868255558,42.123668670654354],[-6.028653144836425,42.1575813293457],[-6.105393886566048,42.161975860595696],[-6.212265014648323,42.1480598449707],[-6.329322814941406,42.19984817504894],[-6.427759170532227,42.20192337036144],[-6.47811222076416,42.18220901489258],[-6.638508796691895,42.21727752685558],[-6.703650951385441,42.20935821533203],[-6.784176826476993,42.25360107421875],[-6.741003990173339,42.29864501953125],[-6.733810901641789,42.35909271240234],[-6.820662021636906,42.38562393188488],[-6.808454990386906,42.46942901611339],[-6.924909114837646,42.519416809082145],[-6.973406791687012,42.493991851806584],[-7.076904773712158,42.508171081543075],[-7.046858787536621,42.632678985595696],[-7.045044898986816,42.6947402954101],[-7.010742187499943,42.72363662719721],[-6.904046058654785,42.75954437255871],[-6.840179920196533,42.823337554931754],[-6.871138095855712,42.87380981445324],[-6.82404899597168,42.91502761840826],[-6.749083042144775,42.89411544799816],[-6.72252178192133,42.91745376586914],[-6.612791061401367,42.92452239990245],[-6.541102886199951,42.91247558593756],[-6.442235946655217,42.939292907714844],[-6.396917819976806,43.038288116455135],[-6.226683139801025,43.008876800537166],[-6.185967922210636,43.049510955810604],[-6.136545181274414,43.02095413208019],[-5.974021911621037,43.06490707397461],[-5.95662784576416,43.018558502197266],[-5.850213050842285,42.967369079589844],[-5.765460968017521,42.969188690185604],[-5.728264808654728,43.04247665405279],[-5.688209056854134,43.05683898925787],[-5.540303230285588,43.01831436157237],[-5.383000850677489,43.08720016479492],[-5.28202009201044,43.07738876342779],[-5.188504219055119,43.0997314453125],[-5.10164022445673,43.10181045532238],[-5.063722133636475,43.17945098876953],[-4.996514797210693,43.18535232543957],[-4.893488883972111,43.238437652587834],[-4.840936183929443,43.180740356445256],[-4.851337909698486,43.125907897949276],[-4.76641321182251,43.07451248168951],[-4.7369189262389,43.02095413208019]]]},"properties":{"ID_0":215,"ISO":"ES-LE","NAME_0":"Spain","ID_1":5,"NAME_1":"Castilla y León","ID_2":20,"NAME_2":"León","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.081262111663818,42.76144027709961],[-4.185306072235051,42.73616027832031],[-4.275951862335205,42.67304992675781],[-4.292514801025334,42.60594558715832],[-4.242513179779053,42.456222534179744],[-4.335258007049561,42.43059539794922],[-4.321503162383976,42.3798828125],[-4.278985977172852,42.36120986938487],[-4.226846218109017,42.22954559326166],[-4.190876960754338,42.1809921264649],[-4.205338001251164,42.13459396362315],[-4.120851993560791,42.12826538085932],[-4.05613183975214,42.10089492797846],[-4.104028224945067,42.0616111755371],[-3.980102062225341,42.04302978515624],[-4.014701843261662,41.998573303222656],[-3.980622053146305,41.90060806274425],[-4.088746070861703,41.870639801025504],[-4.089988231658936,41.8308563232423],[-4.040792942047062,41.7683486938476],[-4.236254215240479,41.81143188476573],[-4.317554950714111,41.76343536376953],[-4.391609191894531,41.787265777588004],[-4.442101001739502,41.75864028930669],[-4.493570804595947,41.780345916748104],[-4.487257957458496,41.820083618164055],[-4.565999984741211,41.81256103515636],[-4.66959095001215,41.90048980712901],[-4.789156913757267,41.81801223754894],[-4.838173866271973,41.89851760864252],[-4.889681816101017,41.932769775390625],[-5.004751205444279,41.937931060791065],[-4.949601173400822,42.0509986877442],[-4.916663169860782,42.07829284667963],[-4.927398204803467,42.15019607543951],[-5.02686595916748,42.1538925170899],[-5.002037048339787,42.28910827636718],[-4.953344821929875,42.29713439941411],[-4.942393779754639,42.34652709960937],[-4.903138160705566,42.38650512695324],[-4.887893199920654,42.537002563476506],[-4.914418220519963,42.54469299316406],[-4.879868030548039,42.703971862793026],[-4.936265945434513,42.744441986083984],[-4.88846302032465,42.841106414795036],[-4.802559852600041,42.94947433471673],[-4.794729232788086,42.98661804199219],[-4.7369189262389,43.02095413208019],[-4.558369159698486,43.01948165893555],[-4.463020801544133,43.060028076171875],[-4.398038864135685,43.03483200073248],[-4.347248077392521,42.97212219238281],[-4.23841476440424,42.95434188842779],[-4.22562217712391,42.85885620117193],[-4.148914813995361,42.86573028564459],[-4.14983606338501,42.78928375244146],[-4.081262111663818,42.76144027709961]]]},"properties":{"ID_0":215,"ISO":"ES-P","NAME_0":"Spain","ID_1":5,"NAME_1":"Castilla y León","ID_2":21,"NAME_2":"Palencia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.28863620758051,41.18198394775402],[-5.179552078247013,41.16728591918945],[-5.124823093414249,41.132038116455135],[-5.146436214447021,41.04364013671881],[-5.089735984802189,40.99662780761713],[-5.128064155578613,40.948574066162166],[-5.111110210418644,40.9149284362793],[-5.161437034606934,40.86224746704113],[-5.161398887634277,40.81400299072271],[-5.292736053466797,40.710269927978516],[-5.364667892455997,40.67943572998041],[-5.382845878601074,40.62076568603521],[-5.447542190551701,40.57959747314459],[-5.516111850738468,40.58538055419933],[-5.517374992370549,40.54562377929693],[-5.430967807769719,40.56723785400402],[-5.460343837738037,40.47404479980469],[-5.544643878936767,40.42309951782232],[-5.589688777923584,40.46725463867193],[-5.691077232360839,40.4219970703125],[-5.686246871948185,40.35537338256841],[-5.737448215484619,40.294128417968864],[-5.79740095138544,40.35325241088867],[-5.884130954742375,40.326610565185604],[-5.941554069518986,40.28442382812494],[-6.006086826324463,40.30612945556652],[-6.015903949737492,40.340297698974666],[-6.08226490020752,40.363216400146534],[-6.075037956237793,40.40340805053711],[-6.129370212554932,40.420791625976676],[-6.19857215881342,40.48143768310558],[-6.239820003509521,40.48586273193359],[-6.344528198242131,40.442783355713004],[-6.375850200653076,40.40019607543951],[-6.536169052123966,40.3472518920899],[-6.586908817291203,40.270729064941406],[-6.718111991882324,40.26924514770519],[-6.755440235137939,40.24626922607433],[-6.837078094482365,40.24859619140624],[-6.864787101745605,40.27046966552746],[-6.863920211791992,40.29617691040039],[-6.790332794189452,40.33421707153326],[-6.781215190887337,40.363792419433594],[-6.838720798492432,40.41472244262701],[-6.849691867828369,40.45151138305669],[-6.795266151428165,40.511356353759766],[-6.845355033874455,40.565944671630916],[-6.798898220062199,40.65530395507818],[-6.830523014068604,40.74294281005871],[-6.803274154663029,40.84621047973644],[-6.859950065612735,40.95076370239252],[-6.93162298202509,41.016799926757926],[-6.808920860290471,41.03648757934576],[-6.754182815551701,41.10404968261719],[-6.767859935760441,41.13482666015631],[-6.701457977294922,41.18027114868164],[-6.648365020751895,41.247539520263615],[-6.550790786743164,41.24652481079107],[-6.479554176330566,41.29416656494152],[-6.372146129608154,41.286300659179794],[-6.266939163207951,41.253818511963004],[-6.134377956390324,41.190383911132926],[-6.109189033508243,41.21261215209972],[-6.008712768554688,41.20049285888683],[-6.002445220947209,41.153129577636776],[-5.9337477684021,41.15145111083996],[-5.897554874420165,41.23858642578131],[-5.765182971954289,41.21581649780279],[-5.678825855255127,41.23186492919921],[-5.587816238403263,41.20243453979498],[-5.554854869842472,41.21375274658203],[-5.487728118896428,41.17157745361328],[-5.407484054565373,41.18558502197271],[-5.400081157684269,41.14542770385748],[-5.297749996185303,41.12586975097662],[-5.28863620758051,41.18198394775402]]]},"properties":{"ID_0":215,"ISO":"ES-SA","NAME_0":"Spain","ID_1":5,"NAME_1":"Castilla y León","ID_2":22,"NAME_2":"Salamanca","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.541496038436889,41.577602386474666],[-3.53826189041132,41.552009582519645],[-3.423968076705932,41.48272705078131],[-3.338887929916382,41.45294189453131],[-3.329150915145817,41.37627410888677],[-3.207281112670842,41.30424118041992],[-3.290096044540405,41.25793457031244],[-3.399427890777531,41.254547119140625],[-3.409140110015869,41.21182250976562],[-3.539695978164673,41.16501235961913],[-3.613569021224919,41.149085998535156],[-3.65056395530695,41.10730361938488],[-3.739191055297852,41.053863525390625],[-3.781764984130859,41.00020217895508],[-3.895008087158146,40.966968536376896],[-3.952636003494206,40.89347839355469],[-3.979568958282471,40.79984664917003],[-4.069965839385986,40.79380035400396],[-4.160161018371525,40.68984603881836],[-4.275018215179443,40.67631149291992],[-4.319613933563232,40.647518157958984],[-4.419524192809945,40.633430480957145],[-4.431028842925969,40.742385864257756],[-4.480476856231633,40.786163330078175],[-4.49367618560791,40.83351898193371],[-4.546289920806885,40.82555007934575],[-4.566255092620793,40.95619964599604],[-4.606649875640869,40.97080230712896],[-4.639432907104492,41.030052185058594],[-4.716413021087646,41.07158279418951],[-4.722003936767578,41.14931488037114],[-4.636256217956543,41.19060134887701],[-4.623836994171029,41.234336853027344],[-4.495807170867863,41.36392211914068],[-4.515182018279972,41.39408493041992],[-4.407388210296631,41.44184112548828],[-4.233403205871525,41.4557266235351],[-3.999819040298405,41.51609039306646],[-3.980581045150756,41.58335876464844],[-3.863621950149479,41.528957366943416],[-3.823774099349919,41.48111724853515],[-3.732327938079834,41.469879150390625],[-3.728228092193604,41.517627716064396],[-3.645179033279362,41.572093963623104],[-3.541496038436889,41.577602386474666]]]},"properties":{"ID_0":215,"ISO":"ES-SG","NAME_0":"Spain","ID_1":5,"NAME_1":"Castilla y León","ID_2":23,"NAME_2":"Segovia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.856485962867737,41.966403961181754],[-1.857223987579289,41.9095191955567],[-1.818503975868168,41.82995986938482],[-1.852859020233155,41.78956985473644],[-1.787713050842228,41.73413848876959],[-1.813053965568485,41.6605682373048],[-1.858929038047791,41.66153717041009],[-1.923038959503174,41.59833908081055],[-1.993265986442566,41.60013961791998],[-1.967273950576782,41.546073913574276],[-1.981048941612187,41.486442565917905],[-1.953624963760376,41.40864562988281],[-2.029207944869995,41.3841667175293],[-2.035559892654362,41.42689895629883],[-2.101455926895141,41.44579696655279],[-2.120090007781982,41.37968444824219],[-2.170420885086003,41.31884002685547],[-2.146174907684326,41.18440628051752],[-2.051626920700073,41.14686203002929],[-2.065555095672551,41.09580230712902],[-2.175230026245117,41.08376693725586],[-2.232078075408879,41.097023010253906],[-2.323337078094426,41.05651855468744],[-2.469394922256469,41.07811737060547],[-2.516866922378483,41.14645385742193],[-2.654762029647827,41.24066162109381],[-2.760874032974243,41.274032592773494],[-2.782421112060547,41.25377273559576],[-2.86681509017933,41.274475097656364],[-2.90659499168396,41.32764053344738],[-2.950057983398438,41.29264450073248],[-3.061829090118408,41.27343368530284],[-3.207281112670842,41.30424118041992],[-3.329150915145817,41.37627410888677],[-3.338887929916382,41.45294189453131],[-3.423968076705932,41.48272705078131],[-3.53826189041132,41.552009582519645],[-3.541496038436889,41.577602386474666],[-3.459089040756168,41.58963394165045],[-3.407270908355656,41.675594329833984],[-3.358329057693368,41.69343185424816],[-3.352828979492131,41.73793411254883],[-3.275383949279785,41.768676757812614],[-3.278966903686467,41.86791229248041],[-3.19442892074585,41.82892990112305],[-3.171284914016724,41.79301834106457],[-3.087666034698486,41.87634658813488],[-3.0166978836059,41.886905670166016],[-2.998411893844604,41.93259811401373],[-2.913556098937988,42.022846221923935],[-2.883758068084716,42.009483337402344],[-2.797920942306519,42.046840667724666],[-2.791543960571232,42.10874938964855],[-2.72844409942627,42.122863769531364],[-2.7083580493927,42.08628463745123],[-2.757519006729069,42.03261184692377],[-2.673516988754272,41.99806213378912],[-2.579847097396851,41.996261596679794],[-2.514817953109741,42.0688591003418],[-2.514616012573185,42.114540100097656],[-2.438404083251953,42.13726806640625],[-2.319078922271729,42.145221710205135],[-2.23778510093689,42.102218627929744],[-2.136692047119141,42.10308456420904],[-2.161855936050415,42.0667343139649],[-2.116950035095158,42.02151107788097],[-2.109899997711124,41.957870483398494],[-2.028101921081543,41.953125000000114],[-1.961284995079041,41.92030715942383],[-1.856485962867737,41.966403961181754]]]},"properties":{"ID_0":215,"ISO":"ES-SO","NAME_0":"Spain","ID_1":5,"NAME_1":"Castilla y León","ID_2":24,"NAME_2":"Soria","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.421480178833008,42.030662536621094],[-5.444848060607853,41.97186279296869],[-5.520780086517277,42.09712600708008],[-5.480814933776855,42.05241012573253],[-5.421480178833008,42.030662536621094]]],[[[-5.002037048339787,42.28910827636718],[-5.02686595916748,42.1538925170899],[-4.927398204803467,42.15019607543951],[-4.916663169860782,42.07829284667963],[-4.949601173400822,42.0509986877442],[-5.004751205444279,41.937931060791065],[-4.889681816101017,41.932769775390625],[-4.838173866271973,41.89851760864252],[-4.789156913757267,41.81801223754894],[-4.66959095001215,41.90048980712901],[-4.565999984741211,41.81256103515636],[-4.487257957458496,41.820083618164055],[-4.493570804595947,41.780345916748104],[-4.442101001739502,41.75864028930669],[-4.391609191894531,41.787265777588004],[-4.317554950714111,41.76343536376953],[-4.236254215240479,41.81143188476573],[-4.040792942047062,41.7683486938476],[-4.068036079406681,41.72653961181652],[-4.025950908660832,41.6923713684082],[-4.030276775360107,41.63048171997082],[-3.980581045150756,41.58335876464844],[-3.999819040298405,41.51609039306646],[-4.233403205871525,41.4557266235351],[-4.407388210296631,41.44184112548828],[-4.515182018279972,41.39408493041992],[-4.495807170867863,41.36392211914068],[-4.623836994171029,41.234336853027344],[-4.636256217956543,41.19060134887701],[-4.722003936767578,41.14931488037114],[-4.805746078491211,41.13515853881847],[-4.870148181915226,41.10026550292969],[-4.967510223388614,41.15229797363281],[-5.013811111450138,41.162197113037166],[-5.124823093414249,41.132038116455135],[-5.179552078247013,41.16728591918945],[-5.28863620758051,41.18198394775402],[-5.297160148620549,41.292339324951286],[-5.322011947631836,41.32632446289068],[-5.3370361328125,41.47629547119151],[-5.228765010833683,41.52842330932623],[-5.328784942626953,41.61590957641601],[-5.328072071075439,41.681785583496094],[-5.391274929046573,41.760498046875114],[-5.279519081115723,41.8134384155274],[-5.306369781494026,41.857826232910156],[-5.280545234680119,41.97878646850597],[-5.376186847686711,42.041454315185604],[-5.371414184570312,42.130050659179744],[-5.38798999786377,42.221427917480526],[-5.265536785125675,42.21088027954107],[-5.244579792022648,42.26385116577154],[-5.197799205779972,42.26052474975597],[-5.093648910522404,42.309272766113224],[-5.002037048339787,42.28910827636718]]]]},"properties":{"ID_0":215,"ISO":"ES-VA","NAME_0":"Spain","ID_1":5,"NAME_1":"Castilla y León","ID_2":25,"NAME_2":"Valladolid","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.520780086517277,42.09712600708008],[-5.444848060607853,41.97186279296869],[-5.421480178833008,42.030662536621094],[-5.376186847686711,42.041454315185604],[-5.280545234680119,41.97878646850597],[-5.306369781494026,41.857826232910156],[-5.279519081115723,41.8134384155274],[-5.391274929046573,41.760498046875114],[-5.328072071075439,41.681785583496094],[-5.328784942626953,41.61590957641601],[-5.228765010833683,41.52842330932623],[-5.3370361328125,41.47629547119151],[-5.322011947631836,41.32632446289068],[-5.297160148620549,41.292339324951286],[-5.28863620758051,41.18198394775402],[-5.297749996185303,41.12586975097662],[-5.400081157684269,41.14542770385748],[-5.407484054565373,41.18558502197271],[-5.487728118896428,41.17157745361328],[-5.554854869842472,41.21375274658203],[-5.587816238403263,41.20243453979498],[-5.678825855255127,41.23186492919921],[-5.765182971954289,41.21581649780279],[-5.897554874420165,41.23858642578131],[-5.9337477684021,41.15145111083996],[-6.002445220947209,41.153129577636776],[-6.008712768554688,41.20049285888683],[-6.109189033508243,41.21261215209972],[-6.134377956390324,41.190383911132926],[-6.266939163207951,41.253818511963004],[-6.372146129608154,41.286300659179794],[-6.479554176330566,41.29416656494152],[-6.415255069732609,41.34794235229498],[-6.315393924713078,41.39005279541021],[-6.3052659034729,41.44969558715832],[-6.189142227172852,41.57481384277344],[-6.254438877105713,41.63298416137707],[-6.3546462059021,41.67639160156261],[-6.452342033386174,41.680896759033146],[-6.51253414154047,41.66120910644531],[-6.54825305938715,41.68558120727545],[-6.564451217651367,41.7516708374024],[-6.517614841461182,41.87507629394537],[-6.571154117584229,41.88348388671881],[-6.545938968658447,41.930778503418026],[-6.599432945251351,41.94829177856457],[-6.699979782104492,41.93330383300792],[-6.750555992126408,41.94363403320306],[-6.944279193878174,41.94464874267578],[-6.983427047729435,41.97294235229492],[-6.960995197296086,42.027191162109375],[-7.012526035308781,42.05270004272461],[-6.989671230316162,42.1212997436524],[-6.886747837066593,42.21433639526378],[-6.784176826476993,42.25360107421875],[-6.703650951385441,42.20935821533203],[-6.638508796691895,42.21727752685558],[-6.47811222076416,42.18220901489258],[-6.427759170532227,42.20192337036144],[-6.329322814941406,42.19984817504894],[-6.212265014648323,42.1480598449707],[-6.105393886566048,42.161975860595696],[-6.028653144836425,42.1575813293457],[-5.953343868255558,42.123668670654354],[-5.911478042602539,42.14057159423834],[-5.837953090667668,42.11875915527343],[-5.743112087249756,42.11341094970703],[-5.645112991333008,42.13214874267584],[-5.580058097839355,42.058437347412166],[-5.520780086517277,42.09712600708008]]]},"properties":{"ID_0":215,"ISO":"ES-ZA","NAME_0":"Spain","ID_1":5,"NAME_1":"Castilla y León","ID_2":26,"NAME_2":"Zamora","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.777084112167472,41.65056991577143],[2.462915897369442,41.543472290039006],[2.380971908569449,41.49514007568365],[2.257082939148062,41.452640533447266],[2.178471088409538,41.373748779296875],[2.113471984863281,41.28958511352545],[2.027362108230591,41.26680374145502],[1.951527953147945,41.264862060546875],[1.85486102104187,41.23374938964844],[1.645221948623714,41.19569396972661],[1.588165998458862,41.294017791748104],[1.569373965263367,41.36840057373046],[1.490190029144401,41.40150833129883],[1.484586000442505,41.47494888305664],[1.404628992080688,41.50663375854498],[1.446748018264771,41.5524139404298],[1.392874002456665,41.5751190185548],[1.359647989273014,41.613563537597706],[1.44834303855896,41.63612365722667],[1.381950020790214,41.70578002929682],[1.426337957382316,41.80190277099621],[1.548342943191585,41.770671844482536],[1.630328059196529,41.85880279541015],[1.615944027900696,41.90602493286133],[1.719246029853934,41.98448944091797],[1.674355983734131,42.05920791625982],[1.722069978714103,42.09111022949218],[1.698943018913326,42.12847137451172],[1.737717986106873,42.189472198486385],[1.690161943435783,42.27712249755864],[1.842630982399101,42.306423187255916],[1.903136014938468,42.32332229614258],[2.066350936889705,42.29020690917969],[2.020646095275936,42.23194122314459],[2.060525894165096,42.1779136657716],[2.012845993042106,42.14929580688488],[2.144706010818595,42.13143157958989],[2.215128898620719,42.14211654663085],[2.366029977798576,42.12137603759777],[2.411026954650878,42.06864547729503],[2.466706991195679,42.073764801025504],[2.506162881851139,42.032299041748104],[2.480134963989258,41.9291229248048],[2.325997114181575,41.85569000244152],[2.354305982589779,41.80714416503912],[2.426551103591976,41.80462646484375],[2.515767097473258,41.76208496093749],[2.53755092620861,41.72177505493164],[2.724809885025138,41.744346618652344],[2.765845060348624,41.72572326660162],[2.777084112167472,41.65056991577143]]]},"properties":{"ID_0":215,"ISO":"ES-B","NAME_0":"Spain","ID_1":6,"NAME_1":"Cataluña","ID_2":27,"NAME_2":"Barcelona","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.777084112167472,41.65056991577143],[2.765845060348624,41.72572326660162],[2.724809885025138,41.744346618652344],[2.53755092620861,41.72177505493164],[2.515767097473258,41.76208496093749],[2.426551103591976,41.80462646484375],[2.354305982589779,41.80714416503912],[2.325997114181575,41.85569000244152],[2.480134963989258,41.9291229248048],[2.506162881851139,42.032299041748104],[2.466706991195679,42.073764801025504],[2.411026954650878,42.06864547729503],[2.366029977798576,42.12137603759777],[2.215128898620719,42.14211654663085],[2.144706010818595,42.13143157958989],[2.012845993042106,42.14929580688488],[2.060525894165096,42.1779136657716],[2.020646095275936,42.23194122314459],[2.066350936889705,42.29020690917969],[1.903136014938468,42.32332229614258],[1.842630982399101,42.306423187255916],[1.850962042808646,42.37350463867199],[1.807072043418941,42.4186363220216],[1.731945037841854,42.44039916992193],[1.730936050415096,42.49245071411144],[1.805248141288814,42.48865509033208],[1.915668964385986,42.44618606567383],[1.964365005493164,42.38256072998047],[2.023496389388981,42.35522842407232],[2.08593320846569,42.36374664306646],[2.13316917419445,42.41434097290045],[2.257082462310791,42.43848800659174],[2.410337686538753,42.392154693603516],[2.498432397842521,42.3426246643067],[2.582230091094971,42.35707473754883],[2.67544794082653,42.34234619140631],[2.653826713562125,42.38768005371094],[2.72396111488348,42.422725677490234],[2.793810606002807,42.41819381713873],[2.839868068695182,42.45898818969732],[2.918404102325553,42.45623397827143],[2.945468902588004,42.480087280273494],[3.047425985336417,42.45684432983398],[3.085840940475464,42.42583847045904],[3.170973062515315,42.43402862548828],[3.155416011810416,42.379028320312614],[3.31680607795721,42.32374954223638],[3.280694961547908,42.255416870117244],[3.21847295761114,42.232360839843864],[3.162915945053214,42.264862060546875],[3.110416889190617,42.20264053344732],[3.114305019378776,42.14902877807623],[3.184027910232658,42.103473663330135],[3.212915897369442,42.056251525878956],[3.193751096725578,42.024028778076115],[3.231806039810123,41.968750000000114],[3.202639102935904,41.89125061035162],[3.144582986831665,41.84902954101557],[3.10014009475708,41.84375],[3.057081937790031,41.787082672119254],[2.977638959884643,41.757637023925895],[2.933748960495109,41.71930694580089],[2.818751096725578,41.68847274780285],[2.777084112167472,41.65056991577143]]]},"properties":{"ID_0":215,"ISO":"ES-GI","NAME_0":"Spain","ID_1":6,"NAME_1":"Cataluña","ID_2":28,"NAME_2":"Girona","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.730936050415096,42.49245071411144],[1.731945037841854,42.44039916992193],[1.807072043418941,42.4186363220216],[1.850962042808646,42.37350463867199],[1.842630982399101,42.306423187255916],[1.690161943435783,42.27712249755864],[1.737717986106873,42.189472198486385],[1.698943018913326,42.12847137451172],[1.722069978714103,42.09111022949218],[1.674355983734131,42.05920791625982],[1.719246029853934,41.98448944091797],[1.615944027900696,41.90602493286133],[1.630328059196529,41.85880279541015],[1.548342943191585,41.770671844482536],[1.426337957382316,41.80190277099621],[1.381950020790214,41.70578002929682],[1.44834303855896,41.63612365722667],[1.359647989273014,41.613563537597706],[1.392874002456665,41.5751190185548],[1.371724963188171,41.56541442871094],[1.219892024993896,41.569606781005916],[1.167945981025696,41.54049301147472],[1.180976033210868,41.48813629150402],[1.072150945663395,41.463035583496094],[0.96432501077652,41.3554954528808],[0.596840023994446,41.293563842773544],[0.554458975791988,41.32669067382818],[0.503309011459464,41.28975296020508],[0.385697990655899,41.278869628906364],[0.348551005125103,41.32979202270508],[0.373762995004768,41.35042572021496],[0.334996998310089,41.40824508666998],[0.347351998090858,41.4877662658692],[0.397873997688407,41.49129104614269],[0.446954995393753,41.54225921630865],[0.40205600857746,41.59273910522472],[0.34964698553091,41.599483489990234],[0.328245997428894,41.68109130859381],[0.400644987821579,41.75671005249029],[0.469689011573905,41.765640258789176],[0.483260989189262,41.80148315429699],[0.542420983314514,41.820400238037166],[0.592813014984245,41.88443374633789],[0.562467992305812,41.93270874023449],[0.651740014553013,42.026268005371094],[0.702202022075653,42.12190628051758],[0.69586402177805,42.15201568603521],[0.759205996990261,42.34838485717779],[0.696869015693721,42.47412109374999],[0.733303010463658,42.50447082519536],[0.767548978328705,42.6112632751466],[0.708410024642944,42.621208190918026],[0.660093009471893,42.69099807739269],[0.662559688091278,42.841106414795036],[0.708183944225425,42.86132812500005],[0.858305692672843,42.82571792602538],[0.925827205181179,42.789672851562614],[0.960393071174678,42.80515670776373],[1.073248028755188,42.78236389160162],[1.165018081665039,42.70952606201177],[1.357378125190735,42.71942138671881],[1.442003011703605,42.59934616088867],[1.439666986465454,42.54370498657232],[1.469215989112854,42.51079177856445],[1.444411993026847,42.4414443969726],[1.515771031379813,42.428844451904354],[1.557031035423392,42.45393753051752],[1.730936050415096,42.49245071411144]]]},"properties":{"ID_0":215,"ISO":"ES-L","NAME_0":"Spain","ID_1":6,"NAME_1":"Cataluña","ID_2":29,"NAME_2":"Lleida","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.645221948623714,41.19569396972661],[1.532083034515438,41.18208312988281],[1.394860982894954,41.13124847412121],[1.296527981758231,41.12791824340832],[1.144027948379516,41.07263946533208],[1.045416951179448,41.06319427490228],[0.961804986000061,41.025417327880916],[0.862640023231506,40.94708251953125],[0.791805982589779,40.866249084472706],[0.706250011920986,40.80958175659191],[0.729583978653011,40.769859313964844],[0.826526999473629,40.7362518310548],[0.869584023952598,40.69597244262695],[0.769029021263179,40.64736175537121],[0.600971996784324,40.62208175659191],[0.538195013999939,40.56708145141607],[0.515139997005576,40.52296447753912],[0.449036002159232,40.541316986083984],[0.389198988676128,40.606647491455185],[0.278872996568737,40.63008117675781],[0.217080995440597,40.73255157470709],[0.170766994357109,40.732860565185604],[0.278264999389762,40.82106018066412],[0.246047005057449,40.88722229003912],[0.281127005815563,40.98719024658209],[0.220387995243129,41.071453094482536],[0.219870999455452,41.13244628906249],[0.303355991840419,41.16440200805664],[0.322441011667308,41.22526168823242],[0.36421799659729,41.227695465088004],[0.385697990655899,41.278869628906364],[0.503309011459464,41.28975296020508],[0.554458975791988,41.32669067382818],[0.596840023994446,41.293563842773544],[0.96432501077652,41.3554954528808],[1.072150945663395,41.463035583496094],[1.180976033210868,41.48813629150402],[1.167945981025696,41.54049301147472],[1.219892024993896,41.569606781005916],[1.371724963188171,41.56541442871094],[1.392874002456665,41.5751190185548],[1.446748018264771,41.5524139404298],[1.404628992080688,41.50663375854498],[1.484586000442505,41.47494888305664],[1.490190029144401,41.40150833129883],[1.569373965263367,41.36840057373046],[1.588165998458862,41.294017791748104],[1.645221948623714,41.19569396972661]]]},"properties":{"ID_0":215,"ISO":"ES-T","NAME_0":"Spain","ID_1":6,"NAME_1":"Cataluña","ID_2":30,"NAME_2":"Tarragona","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":null,"properties":{"ID_0":215,"ISO":"ES-CE","NAME_0":"Spain","ID_1":7,"NAME_1":"Ceuta y Melilla","ID_2":31,"NAME_2":"Ceuta","TYPE_2":"Ciudad Autónoma","ENGTYPE_2":"Autonomous City","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":null,"properties":{"ID_0":215,"ISO":"ES-ML","NAME_0":"Spain","ID_1":7,"NAME_1":"Ceuta y Melilla","ID_2":32,"NAME_2":"Melilla","TYPE_2":"Ciudad Autónoma","ENGTYPE_2":"Autonomous City","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.067744016647339,40.157539367675895],[-3.053999900817871,40.10651397705078],[-3.088567972183227,40.07051086425786],[-3.161286115646362,40.06514358520519],[-3.276740074157601,40.0474472045899],[-3.327255010604744,40.07956695556652],[-3.429590940475464,40.03875732421869],[-3.515156030654907,40.04327392578131],[-3.589570045471135,40.01348114013677],[-3.814594030380249,39.88585662841797],[-3.875791072845402,39.92867660522461],[-3.808095932006779,39.95481109619152],[-3.751385927200203,39.95280456542969],[-3.700261116027832,40.01890945434576],[-3.620538949966374,40.05612182617182],[-3.606399059295597,40.10900497436535],[-3.723573923110961,40.147117614746094],[-3.771778106689396,40.13958740234381],[-3.800069093704223,40.17570495605463],[-3.952852964401245,40.21233367919916],[-3.992347955703679,40.20973205566412],[-4.071133136749268,40.26481246948248],[-4.104146003723145,40.241806030273494],[-4.245747089385986,40.27372360229498],[-4.295822143554631,40.21909713745111],[-4.341254234313965,40.23995208740246],[-4.356800079345589,40.30965805053722],[-4.427375793457031,40.25784683227539],[-4.535758018493596,40.19956970214843],[-4.578898906707764,40.217411041259766],[-4.569112777709903,40.25721359252941],[-4.504278182983341,40.3151092529298],[-4.455410957336369,40.319923400878906],[-4.432000160217285,40.39775848388672],[-4.324088096618652,40.41864013671881],[-4.322902202606144,40.551105499267635],[-4.283215999603271,40.59530639648449],[-4.161231994628906,40.623374938964844],[-4.160161018371525,40.68984603881836],[-4.069965839385986,40.79380035400396],[-3.979568958282471,40.79984664917003],[-3.952636003494206,40.89347839355469],[-3.895008087158146,40.966968536376896],[-3.781764984130859,41.00020217895508],[-3.739191055297852,41.053863525390625],[-3.65056395530695,41.10730361938488],[-3.613569021224919,41.149085998535156],[-3.539695978164673,41.16501235961913],[-3.438203096389657,41.04261016845703],[-3.397598028182927,41.00736618042003],[-3.444138050079289,40.8878631591798],[-3.50255298614502,40.789062500000114],[-3.465787887573242,40.7842636108399],[-3.434103012084961,40.73077011108404],[-3.461599111557006,40.69269943237299],[-3.323318958282471,40.63013458251959],[-3.330382108688354,40.59740447998058],[-3.200581073760986,40.51469421386719],[-3.19864296913147,40.44232177734386],[-3.130392074584904,40.40507888793945],[-3.183469057083073,40.269290924072266],[-3.111999988555908,40.28564453125006],[-3.078999996185246,40.22401046752941],[-3.067744016647339,40.157539367675895]]]},"properties":{"ID_0":215,"ISO":"ES-M5","NAME_0":"Spain","ID_1":8,"NAME_1":"Comunidad de Madrid","ID_2":33,"NAME_2":"Madrid","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.727500021457615,42.9192619323731],[-0.783181011676788,42.921730041503906],[-0.856801986694336,42.84689331054699],[-0.84750097990036,42.785926818847656],[-0.901054024696293,42.74272537231445],[-0.948643982410431,42.71146011352539],[-1.027948975563049,42.70006561279308],[-1.038563013076782,42.64833450317383],[-1.152374029159489,42.647567749023494],[-1.157616019248962,42.61046981811529],[-1.232185006141606,42.543357849121094],[-1.288095951080265,42.522792816162045],[-1.272691965103092,42.48237228393555],[-1.341464996337834,42.42394256591797],[-1.359730005264225,42.37836456298828],[-1.329038977622986,42.35538864135742],[-1.399036049842834,42.2913055419923],[-1.416308999061584,42.22200393676752],[-1.398833036422729,42.12622451782237],[-1.304774999618473,42.042953491211044],[-1.4217289686203,41.913078308105575],[-1.596199035644418,41.927097320556754],[-1.654091000556889,41.96535491943371],[-1.734251022338867,41.963905334472656],[-1.766844987869263,41.99579620361334],[-1.847131967544556,42.00800323486334],[-1.901520967483463,42.029682159423885],[-1.905748963355904,42.06706237792969],[-1.821568965911808,42.15357208251964],[-1.781929969787598,42.137737274169915],[-1.690219998359623,42.1483993530274],[-1.708482980728149,42.209659576416016],[-1.799937963485661,42.22280120849615],[-1.870609045028573,42.28896713256836],[-1.995471954345646,42.36360931396495],[-2.078922033309937,42.36875915527355],[-2.132924079894963,42.421188354492294],[-2.176405906677246,42.40807342529291],[-2.325795888900756,42.468151092529354],[-2.420650959014836,42.48929595947277],[-2.392153024673462,42.51694869995117],[-2.399277925491333,42.5978736877442],[-2.49058008193964,42.58535003662115],[-2.415749073028564,42.662673950195426],[-2.347239971160889,42.63406372070324],[-2.309253931045532,42.67115020751953],[-2.323702096939087,42.724075317382926],[-2.262392997741642,42.748222351074276],[-2.280967950820866,42.7851295471192],[-2.235771894454899,42.83448028564459],[-2.250744104385319,42.89572525024414],[-2.210221052169743,42.949905395507926],[-2.129463911056405,42.93936920166021],[-2.038304090499878,42.98098754882824],[-2.022789955139103,43.06518936157237],[-1.947491049766484,43.0975227355957],[-1.904384016990548,43.14381790161144],[-1.922013044357243,43.18671417236328],[-1.794939994812012,43.24692535400385],[-1.783207058906498,43.28681945800781],[-1.728865027427616,43.29613113403325],[-1.623861193656865,43.303966522216854],[-1.616579055786133,43.25727081298828],[-1.505856394767704,43.29327774047857],[-1.384181141853275,43.25322341918951],[-1.384948015213013,43.18828964233398],[-1.415738105773926,43.12852859497082],[-1.471323013305664,43.091773986816456],[-1.441393017768746,43.046195983886776],[-1.353703975677433,43.02801895141612],[-1.345170617103576,43.092971801757926],[-1.247508406639099,43.04235839843756],[-1.113268375396729,43.02121734619146],[-1.010465979576054,42.99109649658214],[-0.974991023540497,42.96329879760748],[-0.808800995349884,42.95145416259777],[-0.752805233001595,42.966960906982536],[-0.727500021457615,42.9192619323731]]]},"properties":{"ID_0":215,"ISO":"ES-NA7","NAME_0":"Spain","ID_1":9,"NAME_1":"Comunidad Foral de Navarra","ID_2":34,"NAME_2":"Navarra","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.037640001624823,38.88569259643555],[0.112916000187454,38.84736251831054],[0.199860006570816,38.802639007568416],[0.224583998322544,38.74930572509771],[0.073472999036539,38.641250610351506],[-0.01402799971396,38.62736129760753],[-0.095693998038769,38.52569580078125],[-0.147640004754066,38.53680419921881],[-0.302917003631592,38.48180389404297],[-0.37458199262619,38.44291687011719],[-0.444862008094788,38.363193511963004],[-0.512082993984222,38.32347106933605],[-0.510138988494759,38.2015266418457],[-0.595695018768311,38.18875122070318],[-0.638472020626068,38.13680648803722],[-0.660139977931919,37.98347091674816],[-0.69263797998417,37.973194122314396],[-0.762360990047398,37.846981048583984],[-0.830178976058903,37.86429977416992],[-0.921250998973846,37.944534301757805],[-1.022176027297973,38.075237274169865],[-1.036584973335266,38.13743209838867],[-0.988690972328186,38.19958877563488],[-0.967746019363346,38.25588226318365],[-0.989009976386967,38.3205680847168],[-1.084408044815007,38.34651565551758],[-1.081730008125305,38.441864013671925],[-1.013854980468693,38.49708557128906],[-1.00148594379425,38.572860717773494],[-1.026051044464111,38.655689239501946],[-0.962399005889779,38.65695953369146],[-0.915727019309941,38.69599914550781],[-0.961362004280033,38.774822235107536],[-0.928873002529087,38.78386688232433],[-0.861626982688904,38.77092361450201],[-0.830160975456238,38.732517242431584],[-0.752013981342202,38.75541305541992],[-0.643378973007202,38.727798461914176],[-0.617990016937256,38.686687469482536],[-0.50705498456955,38.74301147460943],[-0.565582990646362,38.75546264648449],[-0.595155000686646,38.79513168334961],[-0.474433988332748,38.803890228271484],[-0.382313013076725,38.83457565307617],[-0.310752987861576,38.881546020507926],[-0.230486005544549,38.853523254394645],[-0.148025006055832,38.858463287353516],[-0.037640001624823,38.88569259643555]]]},"properties":{"ID_0":215,"ISO":"ES-A","NAME_0":"Spain","ID_1":10,"NAME_1":"Comunidad Valenciana","ID_2":35,"NAME_2":"Alicante","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Alacant"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.170766994357109,40.732860565185604],[0.217080995440597,40.73255157470709],[0.278872996568737,40.63008117675781],[0.389198988676128,40.606647491455185],[0.449036002159232,40.541316986083984],[0.515139997005576,40.52296447753912],[0.417915999889374,40.4012489318847],[0.405970990657863,40.35486221313488],[0.274583995342368,40.239028930664006],[0.263473004102764,40.20763778686534],[0.184027001261711,40.16347122192383],[0.134861007332745,40.07347106933587],[0.049304999411106,40.03513717651372],[-0.005973000079393,39.91458511352545],[-0.087361000478268,39.85597229003912],[-0.188750997185707,39.72208404541027],[-0.271135002374592,39.750480651855526],[-0.308512985706273,39.79701614379883],[-0.377862006425858,39.79990386962902],[-0.409543991088867,39.74522399902338],[-0.46094799041748,39.715377807617244],[-0.548345983028412,39.79575729370123],[-0.588167011737823,39.74171447753912],[-0.652288019657135,39.7541122436524],[-0.6560919880867,39.8359870910645],[-0.736377000808659,39.82009124755865],[-0.797631025314274,39.88109207153332],[-0.829923987388554,39.90680694580078],[-0.837882995605469,39.976573944091854],[-0.789560973644257,39.9899406433106],[-0.7622110247612,40.04128646850597],[-0.664054989814758,40.05146408081055],[-0.586925029754639,40.13145446777338],[-0.544130027294045,40.25168228149425],[-0.494459986686593,40.22875595092779],[-0.383570998907089,40.26486968994146],[-0.400052011012974,40.29418563842779],[-0.341042995452881,40.32904434204107],[-0.285189986228943,40.38634109497082],[-0.347303003072739,40.443962097168026],[-0.290322989225388,40.47063446044922],[-0.301809996366501,40.51598739624029],[-0.29323598742485,40.611064910888615],[-0.379617005586624,40.623550415039],[-0.378042012453079,40.66743469238281],[-0.306116998195648,40.66398620605463],[-0.235943004488888,40.69112777709972],[-0.223985999822617,40.75418090820324],[-0.194418996572495,40.78184509277355],[-0.064652003347874,40.7274284362793],[0.015783000737713,40.72845077514654],[0.042220998555536,40.6910285949707],[0.11254400014883,40.72716140747082],[0.170766994357109,40.732860565185604]]]},"properties":{"ID_0":215,"ISO":"ES-CS","NAME_0":"Spain","ID_1":10,"NAME_1":"Comunidad Valenciana","ID_2":36,"NAME_2":"Castellón","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Castelló"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.797631025314274,39.88109207153332],[-0.736377000808659,39.82009124755865],[-0.6560919880867,39.8359870910645],[-0.652288019657135,39.7541122436524],[-0.588167011737823,39.74171447753912],[-0.548345983028412,39.79575729370123],[-0.46094799041748,39.715377807617244],[-0.409543991088867,39.74522399902338],[-0.377862006425858,39.79990386962902],[-0.308512985706273,39.79701614379883],[-0.271135002374592,39.750480651855526],[-0.188750997185707,39.72208404541027],[-0.213751003146115,39.64791488647461],[-0.260971993207932,39.61319351196289],[-0.317916005849838,39.51958465576166],[-0.334306001663208,39.42597198486328],[-0.288194000720978,39.29763793945318],[-0.223195001482964,39.189304351806754],[-0.236249998211804,39.13597106933605],[-0.185973003506604,39.03486251831055],[-0.135139003395977,38.969028472900334],[-0.037640001624823,38.88569259643555],[-0.148025006055832,38.858463287353516],[-0.230486005544549,38.853523254394645],[-0.310752987861576,38.881546020507926],[-0.382313013076725,38.83457565307617],[-0.474433988332748,38.803890228271484],[-0.595155000686646,38.79513168334961],[-0.565582990646362,38.75546264648449],[-0.50705498456955,38.74301147460943],[-0.617990016937256,38.686687469482536],[-0.643378973007202,38.727798461914176],[-0.752013981342202,38.75541305541992],[-0.830160975456238,38.732517242431584],[-0.861626982688904,38.77092361450201],[-0.928873002529087,38.78386688232433],[-0.940787971019688,38.89965057373058],[-0.959344983100891,38.944614410400334],[-1.146587014198303,38.929386138916016],[-1.265632987022343,39.075496673583984],[-1.194430947303658,39.180438995361385],[-1.161823034286442,39.30544662475597],[-1.352220058441162,39.33981323242193],[-1.383658051490784,39.36626052856451],[-1.462545990943852,39.379417419433594],[-1.505107045173588,39.418025970458984],[-1.504294991493225,39.56393051147455],[-1.462015032768193,39.57664489746093],[-1.417865991592407,39.65496063232433],[-1.368468046188297,39.689640045166016],[-1.312760949134827,39.670509338378906],[-1.261929988861084,39.69892883300781],[-1.275374054908639,39.737014770507756],[-1.214938044547978,39.808799743652344],[-1.19991397857666,39.85945892333996],[-1.203917026519662,39.94937133789062],[-1.142333984374943,39.97186660766612],[-0.991253018379211,39.981857299804744],[-0.905973970890045,39.94398117065435],[-0.912501990795135,39.872379302978516],[-0.867357015609684,39.84680175781256],[-0.797631025314274,39.88109207153332]]],[[[-1.165125966072025,40.0101203918457],[-1.248002052307072,39.9950904846192],[-1.383072972297611,40.03899002075207],[-1.44879400730133,40.14536285400402],[-1.357035994529667,40.128910064697266],[-1.284281015396118,40.171520233154354],[-1.244909048080444,40.116165161132926],[-1.147271037101689,40.11396026611328],[-1.072069048881474,40.06050872802729],[-1.084169030189514,40.036235809326165],[-1.165125966072025,40.0101203918457]]]]},"properties":{"ID_0":215,"ISO":"ES-V","NAME_0":"Spain","ID_1":10,"NAME_1":"Comunidad Valenciana","ID_2":37,"NAME_2":"Valencia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"València"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.046835899352971,38.72910690307617],[-5.167891979217529,38.677337646484375],[-5.293152809143066,38.6090927124024],[-5.309496879577637,38.57734680175775],[-5.368871212005502,38.58493423461914],[-5.418834209442139,38.512550354003906],[-5.484333992004338,38.46340560913086],[-5.568015098571721,38.4334068298341],[-5.584943771362304,38.38586044311529],[-5.575497150421085,38.329601287841854],[-5.525836944580077,38.26414108276373],[-5.535662174224797,38.16869735717767],[-5.584665775299072,38.13172149658209],[-5.633309841155949,38.13813781738281],[-5.693505764007568,38.083759307861385],[-5.740613937377872,38.126556396484425],[-5.688713073730468,38.17123794555664],[-5.837734222412053,38.17444229125976],[-5.912795066833496,38.122703552246094],[-5.908856868743896,38.062862396240234],[-5.953561782836857,37.995361328125114],[-6.031247138976994,37.997680664062614],[-6.136054992675724,37.972171783447315],[-6.180110931396428,37.941040039062614],[-6.201983928680419,37.95951080322277],[-6.303243160247803,37.97825622558588],[-6.413776874542179,38.05857467651373],[-6.494914054870605,38.01914215087896],[-6.587048053741398,38.026786804199276],[-6.622326850891113,38.09716796875006],[-6.758090019226017,38.09272003173828],[-6.815689086914062,38.12014389038091],[-6.794967174530029,38.178546905517635],[-6.857994079589787,38.17985916137701],[-6.931529998779297,38.208320617675774],[-7.011837959289493,38.203315734863224],[-7.097784996032714,38.179256439208984],[-7.142959117889404,38.26171875],[-7.317911148071288,38.44009017944347],[-7.30337381362915,38.54310226440441],[-7.263917922973576,38.5878677368164],[-7.260046005249023,38.722942352295036],[-7.125417232513371,38.81532669067383],[-7.09638595581049,38.81596374511713],[-7.033034801483154,38.87882232666021],[-7.02626991271967,38.924510955810604],[-6.959072113037053,39.01730346679693],[-6.980916023254338,39.08781814575207],[-7.028202056884709,39.11565017700207],[-7.144035816192627,39.108627319335994],[-7.132203102111703,39.16469955444347],[-7.221617221832275,39.1932945251466],[-7.248027801513615,39.25337219238281],[-7.232083797454833,39.27888488769531],[-7.203741073608342,39.265705108642635],[-7.151902198791504,39.32148742675787],[-7.154179096221924,39.36751556396496],[-7.017407894134521,39.39199829101562],[-7.049267768859863,39.436679840088004],[-6.872087955474854,39.38240432739258],[-6.811333179473876,39.39141464233404],[-6.797057151794434,39.344783782958984],[-6.747077941894474,39.315780639648494],[-6.80074405670166,39.23942565917969],[-6.767386913299447,39.18837738037115],[-6.680887222290039,39.17715835571289],[-6.659619808197021,39.199081420898494],[-6.491010189056396,39.167930603027344],[-6.371192932128905,39.162998199462834],[-6.327253818511963,39.1866912841798],[-6.295248031616154,39.09815216064459],[-6.230739116668644,39.08980941772461],[-6.141983032226562,39.031589508056584],[-6.078536987304631,39.09373855590832],[-6.018487930297851,39.12912750244152],[-6.011497974395695,39.06328582763683],[-5.763001918792668,39.135372161865234],[-5.689970970153809,39.083019256591854],[-5.610637187957764,39.099193572998104],[-5.576447010040226,39.150917053222656],[-5.61313009262085,39.188228607177734],[-5.518423080444336,39.20415496826171],[-5.465030193328801,39.16073608398443],[-5.3839111328125,39.17419815063488],[-5.347023010253906,39.24796295166027],[-5.339900970458984,39.33332443237299],[-5.24750900268549,39.30183792114269],[-5.150166988372746,39.320983886718864],[-5.116882801055851,39.34349822998058],[-4.952404022216797,39.39500808715826],[-4.940631866455021,39.395133972168026],[-4.861216068267821,39.379329681396484],[-4.755263805389404,39.41572570800787],[-4.687589168548584,39.45030975341808],[-4.669393062591553,39.4245491027832],[-4.709940910339355,39.345764160156364],[-4.760903835296517,39.320804595947266],[-4.705051898956299,39.21376037597662],[-4.714297771453801,39.18763732910162],[-4.810163021087646,39.19943237304693],[-4.874311923980656,39.099037170410156],[-4.832681179046574,39.0461807250976],[-4.882243156433049,39.032867431640625],[-4.962394237518311,39.05874633789074],[-4.933557987213135,38.975593566894645],[-4.832901954650879,38.939323425293075],[-4.847708225250186,38.882068634033196],[-4.914830207824707,38.887458801269645],[-4.943374156951847,38.8543968200683],[-4.989881992340031,38.739776611328175],[-5.046835899352971,38.72910690307617]]]},"properties":{"ID_0":215,"ISO":"ES-BA","NAME_0":"Spain","ID_1":11,"NAME_1":"Extremadura","ID_2":38,"NAME_2":"Badajoz","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.737448215484619,40.294128417968864],[-5.692549228668155,40.29211044311535],[-5.609930038452148,40.21548843383789],[-5.530856132507324,40.19472503662121],[-5.470802783966064,40.20785522460943],[-5.429717063903752,40.25226211547863],[-5.369561195373535,40.2183189392091],[-5.36788606643671,40.16411209106457],[-5.33586597442627,40.11582183837885],[-5.368899822235051,40.100090026855526],[-5.364984989166146,39.983856201171875],[-5.400968074798584,39.885673522949276],[-5.326340198516845,39.89197540283209],[-5.283411979675293,39.857219696045036],[-5.316100120544434,39.7727890014649],[-5.254111766815186,39.75255203247082],[-5.205974102020264,39.79773712158203],[-5.166789054870548,39.79989242553711],[-5.137683868408203,39.71500778198242],[-5.151309013366699,39.66129684448248],[-5.201958179473877,39.59203338623058],[-5.083785057067871,39.49067687988287],[-5.058783054351807,39.48942947387701],[-4.952404022216797,39.39500808715826],[-5.116882801055851,39.34349822998058],[-5.150166988372746,39.320983886718864],[-5.24750900268549,39.30183792114269],[-5.339900970458984,39.33332443237299],[-5.347023010253906,39.24796295166027],[-5.3839111328125,39.17419815063488],[-5.465030193328801,39.16073608398443],[-5.518423080444336,39.20415496826171],[-5.61313009262085,39.188228607177734],[-5.576447010040226,39.150917053222656],[-5.610637187957764,39.099193572998104],[-5.689970970153809,39.083019256591854],[-5.763001918792668,39.135372161865234],[-6.011497974395695,39.06328582763683],[-6.018487930297851,39.12912750244152],[-6.078536987304631,39.09373855590832],[-6.141983032226562,39.031589508056584],[-6.230739116668644,39.08980941772461],[-6.295248031616154,39.09815216064459],[-6.327253818511963,39.1866912841798],[-6.371192932128905,39.162998199462834],[-6.491010189056396,39.167930603027344],[-6.659619808197021,39.199081420898494],[-6.680887222290039,39.17715835571289],[-6.767386913299447,39.18837738037115],[-6.80074405670166,39.23942565917969],[-6.747077941894474,39.315780639648494],[-6.797057151794434,39.344783782958984],[-6.811333179473876,39.39141464233404],[-6.872087955474854,39.38240432739258],[-7.049267768859863,39.436679840088004],[-7.017407894134521,39.39199829101562],[-7.154179096221924,39.36751556396496],[-7.151902198791504,39.32148742675787],[-7.203741073608342,39.265705108642635],[-7.232083797454833,39.27888488769531],[-7.310348987579345,39.34095764160162],[-7.322863101959172,39.381950378418026],[-7.29426813125599,39.45682144165045],[-7.382153987884464,39.491973876953125],[-7.499413013458252,39.58960342407232],[-7.533764839172306,39.66716384887695],[-7.331165790557862,39.64099121093755],[-7.251526832580566,39.66680526733404],[-7.151356220245304,39.6530647277832],[-7.015522956848145,39.6704216003418],[-6.976929187774601,39.77197647094738],[-6.987209796905461,39.81002044677746],[-6.903596878051701,39.87069702148449],[-6.885511875152531,39.940124511718864],[-6.880933761596565,40.041667938232536],[-6.940790176391545,40.11174392700195],[-7.01514196395874,40.13559722900402],[-7.012691974639836,40.22544860839855],[-6.951418876647892,40.25756454467779],[-6.864787101745605,40.27046966552746],[-6.837078094482365,40.24859619140624],[-6.755440235137939,40.24626922607433],[-6.718111991882324,40.26924514770519],[-6.586908817291203,40.270729064941406],[-6.536169052123966,40.3472518920899],[-6.375850200653076,40.40019607543951],[-6.344528198242131,40.442783355713004],[-6.239820003509521,40.48586273193359],[-6.19857215881342,40.48143768310558],[-6.129370212554932,40.420791625976676],[-6.075037956237793,40.40340805053711],[-6.08226490020752,40.363216400146534],[-6.015903949737492,40.340297698974666],[-6.006086826324463,40.30612945556652],[-5.941554069518986,40.28442382812494],[-5.884130954742375,40.326610565185604],[-5.79740095138544,40.35325241088867],[-5.737448215484619,40.294128417968864]]]},"properties":{"ID_0":215,"ISO":"ES-CC","NAME_0":"Spain","ID_1":11,"NAME_1":"Extremadura","ID_2":39,"NAME_2":"Cáceres","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.707084178924561,43.71073532104492],[-7.69084882736206,43.65462875366211],[-7.748589038848876,43.57762908935558],[-7.744204044341984,43.529899597168026],[-7.779913902282714,43.44886779785167],[-7.822897911071721,43.40070724487316],[-7.879839897155762,43.407306671142635],[-7.881449222564697,43.35241317749029],[-7.946941852569581,43.28598785400402],[-7.921685218811034,43.26942825317388],[-7.961221218109074,43.1898078918457],[-7.936906814575138,43.111774444580185],[-7.942819118499699,43.06759262084961],[-7.905149936676025,42.985366821289176],[-7.935346126556396,42.90342712402343],[-7.999567985534668,42.84886932373047],[-8.04576587677002,42.83145904541027],[-8.183547973632812,42.85999298095709],[-8.210221290588322,42.823669433593864],[-8.311788558959961,42.833919525146484],[-8.354201316833496,42.77883911132824],[-8.43016529083252,42.74663543701172],[-8.49303913116455,42.756385803222656],[-8.59975528717041,42.74309921264643],[-8.717191696166992,42.70634841918945],[-8.72664833068842,42.67708206176769],[-8.79486083984375,42.63680648803722],[-8.850973129272461,42.665973663330135],[-8.899306297302187,42.64069366455083],[-8.983195304870605,42.543472290039176],[-9.080971717834473,42.59680557250971],[-9.040695190429688,42.64125061035162],[-9.033472061157113,42.694862365722706],[-8.980972290038949,42.77847290039057],[-9.117917060851994,42.75236129760748],[-9.14013767242426,42.794860839843864],[-9.115415573120117,42.845695495605526],[-9.127082824707031,42.90513992309576],[-9.29819393157959,42.921527862548885],[-9.260695457458494,42.972084045410156],[-9.282361030578613,43.01930618286132],[-9.256805419921875,43.092082977295036],[-9.166250228881836,43.10458374023449],[-9.21513843536377,43.15180587768565],[-9.137361526489258,43.19847106933588],[-9.0620822906493,43.18375015258789],[-8.981526374816895,43.229305267333984],[-8.984028816223088,43.2820816040039],[-8.914027214050293,43.31986236572271],[-8.802360534667969,43.31347274780279],[-8.71791744232172,43.28958511352539],[-8.589860916137695,43.32152938842779],[-8.508749008178654,43.326248168945426],[-8.438471794128361,43.382362365722656],[-8.347360610961914,43.3484725952149],[-8.350695610046387,43.396526336670036],[-8.297083854675293,43.39791488647461],[-8.25291633605957,43.3529167175293],[-8.189583778381348,43.41347122192394],[-8.260695457458496,43.42208480834972],[-8.30986022949213,43.45430374145519],[-8.33041572570795,43.507362365722706],[-8.216806411743105,43.58263778686529],[-8.18291664123535,43.62125015258789],[-8.108750343322697,43.64125061035162],[-8.062359809875488,43.70541763305664],[-8.005971908569279,43.704303741455135],[-7.908751010894775,43.76124954223633],[-7.860138893127385,43.76486206054693],[-7.85125017166132,43.70875167846691],[-7.740972042083739,43.745693206787166],[-7.707084178924561,43.71073532104492]]]},"properties":{"ID_0":215,"ISO":"ES-C","NAME_0":"Spain","ID_1":12,"NAME_1":"Galicia","ID_2":40,"NAME_2":"A Coruña","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"La Coruña"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.052639007568303,43.47458267211913],[-7.102732181549072,43.42698669433593],[-7.172832012176513,43.43037033081055],[-7.178483963012694,43.387973785400334],[-7.065142154693604,43.249412536621094],[-6.964973926544189,43.187049865722656],[-6.941421985626164,43.13179016113287],[-6.871572971343937,43.17982482910156],[-6.827466964721679,43.12314987182623],[-6.951677799224796,43.07615661621105],[-6.964306831359863,43.026531219482365],[-6.835949897766112,42.95773315429699],[-6.82404899597168,42.91502761840826],[-6.871138095855712,42.87380981445324],[-6.840179920196533,42.823337554931754],[-6.904046058654785,42.75954437255871],[-7.010742187499943,42.72363662719721],[-7.045044898986816,42.6947402954101],[-7.046858787536621,42.632678985595696],[-7.076904773712158,42.508171081543075],[-7.099860191345214,42.458557128906364],[-7.147932052612248,42.43713378906255],[-7.171702861785889,42.379211425781364],[-7.229681968688908,42.37601089477545],[-7.306783199310303,42.42942810058588],[-7.403017044067383,42.42878341674805],[-7.500978946685791,42.38869476318365],[-7.630708217620849,42.40655517578125],[-7.75257110595703,42.451011657714844],[-7.911825180053654,42.527305603027344],[-7.930586814880371,42.57858276367182],[-7.89238882064808,42.629611968994084],[-7.872705936431886,42.720203399658146],[-7.935206890106201,42.73971939086914],[-7.978425979614257,42.77894210815441],[-7.999567985534668,42.84886932373047],[-7.935346126556396,42.90342712402343],[-7.905149936676025,42.985366821289176],[-7.942819118499699,43.06759262084961],[-7.936906814575138,43.111774444580185],[-7.961221218109074,43.1898078918457],[-7.921685218811034,43.26942825317388],[-7.946941852569581,43.28598785400402],[-7.881449222564697,43.35241317749029],[-7.879839897155762,43.407306671142635],[-7.822897911071721,43.40070724487316],[-7.779913902282714,43.44886779785167],[-7.744204044341984,43.529899597168026],[-7.748589038848876,43.57762908935558],[-7.69084882736206,43.65462875366211],[-7.707084178924561,43.71073532104492],[-7.629583835601808,43.745693206787166],[-7.611804962158202,43.67235946655268],[-7.527083873748666,43.736526489257926],[-7.456251144409122,43.698192596435604],[-7.355971813201847,43.6701393127442],[-7.295416831970158,43.59402847290039],[-7.220139980316104,43.56486129760748],[-7.041528224945068,43.55708312988281],[-7.052639007568303,43.47458267211913]]]},"properties":{"ID_0":215,"ISO":"ES-LU","NAME_0":"Spain","ID_1":12,"NAME_1":"Galicia","ID_2":41,"NAME_2":"Lugo","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.076904773712158,42.508171081543075],[-6.973406791687012,42.493991851806584],[-6.924909114837646,42.519416809082145],[-6.808454990386906,42.46942901611339],[-6.820662021636906,42.38562393188488],[-6.733810901641789,42.35909271240234],[-6.741003990173339,42.29864501953125],[-6.784176826476993,42.25360107421875],[-6.886747837066593,42.21433639526378],[-6.989671230316162,42.1212997436524],[-7.012526035308781,42.05270004272461],[-6.960995197296086,42.027191162109375],[-6.983427047729435,41.97294235229492],[-7.076929092407227,41.9519309997558],[-7.141430854797306,41.990749359130916],[-7.18663215637207,41.96942901611328],[-7.173623085021974,41.91891479492193],[-7.196712017059269,41.879974365234375],[-7.315289974212589,41.842540740966854],[-7.389939785003661,41.842300415039176],[-7.452474117279053,41.865077972412166],[-7.573887825012207,41.829715728759766],[-7.704116821289062,41.9073371887207],[-7.733328819274846,41.892276763916016],[-7.921279907226562,41.88181686401373],[-7.988607883453311,41.867580413818466],[-8.012578964233398,41.83353424072277],[-8.093894004821777,41.80803680419922],[-8.164990425109862,41.818115234375114],[-8.161748886108398,41.86097717285162],[-8.216875076293945,41.91315841674816],[-8.162994384765568,41.98269653320323],[-8.086008071899414,42.016494750976506],[-8.118673324584902,42.08230972290044],[-8.18612289428711,42.072589874267635],[-8.1995010375976,42.15414047241211],[-8.174139976501351,42.1711044311524],[-8.168798446655273,42.245994567871094],[-8.26441001892084,42.252849578857536],[-8.261775016784611,42.31496429443371],[-8.311040878295842,42.34378051757824],[-8.35245132446289,42.48074722290045],[-8.302559852600098,42.49019241333008],[-8.17369270324707,42.5719566345216],[-8.016239166259766,42.54269409179698],[-7.930586814880371,42.57858276367182],[-7.911825180053654,42.527305603027344],[-7.75257110595703,42.451011657714844],[-7.630708217620849,42.40655517578125],[-7.500978946685791,42.38869476318365],[-7.403017044067383,42.42878341674805],[-7.306783199310303,42.42942810058588],[-7.229681968688908,42.37601089477545],[-7.171702861785889,42.379211425781364],[-7.147932052612248,42.43713378906255],[-7.099860191345214,42.458557128906364],[-7.076904773712158,42.508171081543075]]]},"properties":{"ID_0":215,"ISO":"ES-OR","NAME_0":"Spain","ID_1":12,"NAME_1":"Galicia","ID_2":42,"NAME_2":"Ourense","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.999567985534668,42.84886932373047],[-7.978425979614257,42.77894210815441],[-7.935206890106201,42.73971939086914],[-7.872705936431886,42.720203399658146],[-7.89238882064808,42.629611968994084],[-7.930586814880371,42.57858276367182],[-8.016239166259766,42.54269409179698],[-8.17369270324707,42.5719566345216],[-8.302559852600098,42.49019241333008],[-8.35245132446289,42.48074722290045],[-8.311040878295842,42.34378051757824],[-8.261775016784611,42.31496429443371],[-8.26441001892084,42.252849578857536],[-8.168798446655273,42.245994567871094],[-8.174139976501351,42.1711044311524],[-8.1995010375976,42.15414047241211],[-8.253607749938963,42.136688232421875],[-8.331864356994629,42.083839416503906],[-8.429669380187931,42.07236480712902],[-8.518028259277287,42.07956314086914],[-8.5468111038208,42.05399703979492],[-8.636755943298283,42.0474967956543],[-8.661334991455078,42.00332641601557],[-8.74594497680664,41.964553833007926],[-8.747705459594727,41.94314956665033],[-8.88208293914795,41.880973815918026],[-8.885416984558105,42.047359466552734],[-8.895972251892033,42.09958267211914],[-8.816805839538517,42.1370849609375],[-8.816528320312441,42.18680572509776],[-8.762915611267033,42.23152923583989],[-8.864583969116211,42.27819442749029],[-8.674028396606388,42.414306640625114],[-8.704584121704102,42.43430709838867],[-8.762915611267033,42.393749237060604],[-8.86541557312006,42.4120826721192],[-8.907638549804688,42.47486114501953],[-8.81541633605957,42.51569366455078],[-8.836527824401799,42.55291748046881],[-8.765972137451172,42.60124969482433],[-8.72664833068842,42.67708206176769],[-8.717191696166992,42.70634841918945],[-8.59975528717041,42.74309921264643],[-8.49303913116455,42.756385803222656],[-8.43016529083252,42.74663543701172],[-8.354201316833496,42.77883911132824],[-8.311788558959961,42.833919525146484],[-8.210221290588322,42.823669433593864],[-8.183547973632812,42.85999298095709],[-8.04576587677002,42.83145904541027],[-7.999567985534668,42.84886932373047]]]},"properties":{"ID_0":215,"ISO":"ES-PO","NAME_0":"Spain","ID_1":12,"NAME_1":"Galicia","ID_2":43,"NAME_2":"Pontevedra","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.420694947242793,38.79124832153332],[1.44625103473669,38.68458175659191],[1.380139946937618,38.6929168701173],[1.434584021568298,38.764583587646484],[1.420694947242793,38.79124832153332]]],[[[1.533470988273734,39.11875152587896],[1.605139017105103,39.089862823486385],[1.608194947242794,39.0359725952149],[1.529304981231803,38.94541549682617],[1.436527967453117,38.9120826721192],[1.403193950653133,38.87541580200195],[1.324306011200065,38.86180496215832],[1.212918043136654,38.90319442749035],[1.299306035041866,38.97735977172863],[1.289860963821411,39.02708435058605],[1.358749985694885,39.07402801513666],[1.439028024673519,39.08208465576172],[1.533470988273734,39.11875152587896]]],[[[3.213193893432617,39.96236038208019],[3.116805076599235,39.910415649414055],[3.088473081588859,39.86791610717785],[3.151806116104126,39.76819610595709],[3.24319410324108,39.72958374023432],[3.379581928253174,39.76569366455078],[3.457916021347046,39.74458312988286],[3.45347189903265,39.66930389404291],[3.403193950653076,39.63569259643555],[3.373749971389771,39.556526184082145],[3.302917003631705,39.50402832031256],[3.275139093399105,39.4281959533692],[3.232362031936589,39.3612518310548],[3.142082929611206,39.32541656494135],[3.049583911895809,39.26514053344732],[2.957360982894954,39.36347198486334],[2.789860963821468,39.362083435058594],[2.739583015441895,39.41041564941411],[2.728193998336849,39.53041839599621],[2.654304981231689,39.564304351806584],[2.540971994399968,39.524307250976676],[2.500416994094791,39.460693359375],[2.456249952316227,39.534862518310604],[2.364583015441895,39.53097152709961],[2.344583988189697,39.58791732788097],[2.369584083557242,39.614582061767635],[2.549860954284782,39.69930648803722],[2.778193950653076,39.85597229003912],[2.875138998031673,39.878749847412166],[2.951251029968262,39.9198608398438],[3.060972929000854,39.92069625854498],[3.145972967147941,39.95347213745117],[3.213193893432617,39.96236038208019]]],[[[4.080973148346061,40.09097290039073],[4.09930610656744,40.05014038085943],[4.166248798370418,40.06263732910156],[4.171804904937801,40.025138854980526],[4.256249904632682,39.9654159545899],[4.309584140777702,39.87902832031256],[4.273194789886588,39.80902862548834],[4.182360172271729,39.83819580078131],[4.020693778991699,39.921806335449325],[3.937361955642757,39.937362670898494],[3.819860935211182,39.92680740356451],[3.833472013473567,39.96291732788097],[3.795593023300227,40.001251220703125],[3.821249008178711,40.05014038085943],[4.035971164703369,40.06458282470708],[4.080973148346061,40.09097290039073]]]]},"properties":{"ID_0":215,"ISO":"ES-PM","NAME_0":"Spain","ID_1":13,"NAME_1":"Islas Baleares","ID_2":44,"NAME_2":"Baleares","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-15.419304847717285,28.182083129882926],[-15.413750648498533,28.045974731445312],[-15.373749732971135,27.998193740844783],[-15.39263916015625,27.886249542236328],[-15.4309720993042,27.802360534667912],[-15.561805725097654,27.761528015136832],[-15.573751449584904,27.735139846801758],[-15.701806068420353,27.773750305175724],[-15.787360191345213,27.833471298218],[-15.831527709960938,27.90958213806158],[-15.833472251892031,27.97291755676264],[-15.721805572509709,28.07041740417486],[-15.696805953979492,28.15208244323742],[-15.629583358764648,28.168472290039116],[-15.597638130187988,28.14458274841314],[-15.515972137451172,28.147361755371207],[-15.443472862243652,28.132083892822266],[-15.419304847717285,28.182083129882926]]],[[[-13.88680458068842,28.757638931274418],[-13.831526756286506,28.698749542236328],[-13.824028968810978,28.55486106872564],[-13.862639427185059,28.493473052978626],[-13.84847164154047,28.408472061157283],[-13.935417175292967,28.232915878295955],[-14.225693702697697,28.160139083862475],[-14.326806068420353,28.04708290100109],[-14.493749618530275,28.083194732666126],[-14.389028549194334,28.110694885253963],[-14.317639350891056,28.14236068725586],[-14.21541786193842,28.22597312927246],[-14.20958328247059,28.313194274902344],[-14.1620836257934,28.3709716796875],[-14.151804924011229,28.43097114562994],[-14.098751068115178,28.478748321533317],[-14.008472442626951,28.67374992370617],[-14.020694732666016,28.7081947326663],[-13.977640151977539,28.736251831054688],[-13.88680458068842,28.757638931274418]]],[[[-13.469584465026799,29.241527557373157],[-13.422917366027775,29.209028244018555],[-13.427360534667912,29.15541648864746],[-13.464305877685547,29.128194808960014],[-13.447916984558104,29.085695266723633],[-13.485694885253906,28.995416641235465],[-13.642083168029785,28.91902732849132],[-13.74236011505127,28.89986038208013],[-13.77791690826416,28.843751907348686],[-13.87708473205555,28.858749389648494],[-13.834583282470646,28.940139770507812],[-13.816805839538516,29.033472061157227],[-13.752361297607365,29.0795841217041],[-13.708749771118107,29.0795841217041],[-13.65847206115717,29.125139236450305],[-13.524862289428652,29.141805648803825],[-13.497637748718203,29.217916488647578],[-13.469584465026799,29.241527557373157]]]]},"properties":{"ID_0":215,"ISO":"ES-GC","NAME_0":"Spain","ID_1":14,"NAME_1":"Islas Canarias","ID_2":45,"NAME_2":"Las Palmas","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-17.927917480468746,27.84958267211914],[-17.882638931274414,27.802917480468864],[-17.929861068725586,27.728750228881836],[-17.95736122131342,27.719028472900447],[-17.971527099609318,27.64708328247076],[-18.039304733276254,27.687084197998047],[-18.160694122314453,27.71486091613764],[-18.153194427490174,27.75819396972662],[-18.069305419921875,27.753749847412163],[-17.99375152587885,27.79458427429205],[-17.927917480468746,27.84958267211914]]],[[[-17.25958251953125,28.217916488647404],[-17.201250076293945,28.20069503784191],[-17.118749618530273,28.15291404724121],[-17.11347007751459,28.087085723876953],[-17.197639465331918,28.024028778076456],[-17.244583129882812,28.019582748413086],[-17.31097221374506,28.051805496215877],[-17.349029541015625,28.097639083862532],[-17.318193435668885,28.20458221435558],[-17.25958251953125,28.217916488647404]]],[[[-16.158193588256836,28.589027404785213],[-16.119583129882756,28.556526184081974],[-16.1587505340575,28.52125167846685],[-16.234861373901367,28.485971450805778],[-16.30791664123535,28.409025192260852],[-16.35986137390131,28.379861831665096],[-16.362083435058594,28.304861068725696],[-16.424306869506836,28.20375061035162],[-16.442638397216797,28.140138626098917],[-16.52263832092279,28.05209350585937],[-16.677085876464787,27.99847221374517],[-16.707361221313477,28.010417938232422],[-16.736249923706055,28.084861755371094],[-16.76902770996088,28.109582901001033],[-16.837360382080078,28.207639694213867],[-16.84041786193842,28.265138626098803],[-16.923194885253906,28.355415344238338],[-16.833194732666016,28.393472671508903],[-16.749860763549805,28.371248245239485],[-16.67680358886713,28.399305343627873],[-16.6020832061767,28.394861221313477],[-16.513473510742074,28.419305801391598],[-16.42736053466797,28.491529464721737],[-16.380416870117127,28.547916412353743],[-16.314027786254883,28.572359085083118],[-16.206527709960934,28.569026947021655],[-16.158193588256836,28.589027404785213]]],[[[-17.920139312744027,28.85847282409668],[-17.852638244628906,28.833471298217773],[-17.788194656372013,28.843751907348686],[-17.72569465637207,28.733472824096623],[-17.76847267150879,28.677360534668026],[-17.750137329101562,28.626529693603572],[-17.75930404663086,28.573472976684627],[-17.8326416015625,28.45680618286161],[-17.857082366943303,28.459861755371094],[-17.885416030883786,28.549304962158256],[-17.964305877685547,28.6673583984375],[-18.00458335876459,28.786247253418026],[-17.920139312744027,28.85847282409668]]]]},"properties":{"ID_0":215,"ISO":"ES-TF","NAME_0":"Spain","ID_1":14,"NAME_1":"Islas Canarias","ID_2":46,"NAME_2":"Santa Cruz de Tenerife","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.858040094375554,42.63819122314459],[-2.780428886413517,42.579597473144524],[-2.763668060302678,42.622829437255916],[-2.680489063262939,42.594509124755795],[-2.691374063491764,42.542755126953125],[-2.65648698806757,42.50404357910156],[-2.577991962432804,42.482967376708984],[-2.537844896316528,42.49404144287121],[-2.420650959014836,42.48929595947277],[-2.325795888900756,42.468151092529354],[-2.176405906677246,42.40807342529291],[-2.132924079894963,42.421188354492294],[-2.078922033309937,42.36875915527355],[-1.995471954345646,42.36360931396495],[-1.870609045028573,42.28896713256836],[-1.799937963485661,42.22280120849615],[-1.708482980728149,42.209659576416016],[-1.690219998359623,42.1483993530274],[-1.781929969787598,42.137737274169915],[-1.821568965911808,42.15357208251964],[-1.905748963355904,42.06706237792969],[-1.901520967483463,42.029682159423885],[-1.847131967544556,42.00800323486334],[-1.856485962867737,41.966403961181754],[-1.961284995079041,41.92030715942383],[-2.028101921081543,41.953125000000114],[-2.109899997711124,41.957870483398494],[-2.116950035095158,42.02151107788097],[-2.161855936050415,42.0667343139649],[-2.136692047119141,42.10308456420904],[-2.23778510093689,42.102218627929744],[-2.319078922271729,42.145221710205135],[-2.438404083251953,42.13726806640625],[-2.514616012573185,42.114540100097656],[-2.514817953109741,42.0688591003418],[-2.579847097396851,41.996261596679794],[-2.673516988754272,41.99806213378912],[-2.757519006729069,42.03261184692377],[-2.7083580493927,42.08628463745123],[-2.72844409942627,42.122863769531364],[-2.791543960571232,42.10874938964855],[-2.797920942306519,42.046840667724666],[-2.883758068084716,42.009483337402344],[-2.913556098937988,42.022846221923935],[-2.932396888732853,42.08089065551758],[-3.034306049346924,42.08595657348644],[-3.128798961639347,42.20092773437494],[-3.088526964187565,42.2457160949707],[-3.109194040298405,42.35187149047862],[-3.05308198928833,42.37340927124035],[-3.071721076965275,42.527660369873104],[-3.105381011962834,42.55391311645508],[-3.004699945449772,42.64425277709972],[-2.883472919464054,42.624416351318466],[-2.858040094375554,42.63819122314459]]]},"properties":{"ID_0":215,"ISO":"ES-LO4","NAME_0":"Spain","ID_1":15,"NAME_1":"La Rioja","ID_2":47,"NAME_2":"La Rioja","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.546610116958561,43.08816528320318],[-2.540780067443848,43.02492141723638],[-2.60089898109436,43.00135421752924],[-2.580981969833317,42.964244842529354],[-2.40985703468317,42.959491729736385],[-2.302284002304077,42.92594528198248],[-2.250744104385319,42.89572525024414],[-2.235771894454899,42.83448028564459],[-2.280967950820866,42.7851295471192],[-2.262392997741642,42.748222351074276],[-2.323702096939087,42.724075317382926],[-2.309253931045532,42.67115020751953],[-2.347239971160889,42.63406372070324],[-2.415749073028564,42.662673950195426],[-2.49058008193964,42.58535003662115],[-2.399277925491333,42.5978736877442],[-2.392153024673462,42.51694869995117],[-2.420650959014836,42.48929595947277],[-2.537844896316528,42.49404144287121],[-2.577991962432804,42.482967376708984],[-2.65648698806757,42.50404357910156],[-2.691374063491764,42.542755126953125],[-2.680489063262939,42.594509124755795],[-2.763668060302678,42.622829437255916],[-2.780428886413517,42.579597473144524],[-2.858040094375554,42.63819122314459],[-2.90244889259327,42.69358825683605],[-2.986951112747192,42.70883941650402],[-3.017769098281804,42.74121093750005],[-3.100594997406006,42.76715087890631],[-3.225788116455078,42.83009719848632],[-3.282557010650634,42.875492095947266],[-3.224679946899414,42.94967269897461],[-3.147705078124943,42.932670593261776],[-3.126481056213322,42.90404129028332],[-3.016088962554818,42.91053771972661],[-3.011576890945321,42.9524307250976],[-3.060210943221989,43.003494262695426],[-3.144740104675236,43.00682067871094],[-3.133893013000431,43.0972175598145],[-3.181739091873169,43.120861053466854],[-3.141315937042179,43.16151809692394],[-3.108736038207951,43.14363479614252],[-2.946352005004826,43.17085266113281],[-2.960747003555241,43.09305572509765],[-2.894120931625309,43.04640579223633],[-2.72968411445612,43.023937225341854],[-2.66684103012085,43.03141403198248],[-2.633012056350594,43.087028503418075],[-2.546610116958561,43.08816528320318]],[[-2.830471992492676,42.79212188720709],[-2.854151964187622,42.7363853454591],[-2.784454107284545,42.69892883300792],[-2.767848014831486,42.66600036621094],[-2.578068971633854,42.673976898193416],[-2.562522888183537,42.74126815795904],[-2.743621110916137,42.792179107666016],[-2.830471992492676,42.79212188720709]]]},"properties":{"ID_0":215,"ISO":"ES-VI","NAME_0":"Spain","ID_1":16,"NAME_1":"País Vasco","ID_2":48,"NAME_2":"Álava","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":"Araba"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.728865027427616,43.29613113403325],[-1.783207058906498,43.28681945800781],[-1.794939994812012,43.24692535400385],[-1.922013044357243,43.18671417236328],[-1.904384016990548,43.14381790161144],[-1.947491049766484,43.0975227355957],[-2.022789955139103,43.06518936157237],[-2.038304090499878,42.98098754882824],[-2.129463911056405,42.93936920166021],[-2.210221052169743,42.949905395507926],[-2.250744104385319,42.89572525024414],[-2.302284002304077,42.92594528198248],[-2.40985703468317,42.959491729736385],[-2.580981969833317,42.964244842529354],[-2.60089898109436,43.00135421752924],[-2.540780067443848,43.02492141723638],[-2.546610116958561,43.08816528320318],[-2.505120992660466,43.09706115722656],[-2.463221073150578,43.22345352172857],[-2.418303966522217,43.26805877685558],[-2.412362098693791,43.321224212646484],[-2.325972080230656,43.29763793945324],[-2.2287499904632,43.311248779296875],[-2.177917003631535,43.287639617919865],[-1.881528973579407,43.35124969482416],[-1.833750963211003,43.3837509155274],[-1.752957820892334,43.34073638916027],[-1.728865027427616,43.29613113403325]]]},"properties":{"ID_0":215,"ISO":"ES-SS","NAME_0":"Spain","ID_1":16,"NAME_1":"País Vasco","ID_2":49,"NAME_2":"Guipúzcoa","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.412362098693791,43.321224212646484],[-2.418303966522217,43.26805877685558],[-2.463221073150578,43.22345352172857],[-2.505120992660466,43.09706115722656],[-2.546610116958561,43.08816528320318],[-2.633012056350594,43.087028503418075],[-2.66684103012085,43.03141403198248],[-2.72968411445612,43.023937225341854],[-2.894120931625309,43.04640579223633],[-2.960747003555241,43.09305572509765],[-2.946352005004826,43.17085266113281],[-3.108736038207951,43.14363479614252],[-3.141315937042179,43.16151809692394],[-3.223452091217041,43.17222976684582],[-3.253370046615543,43.19855880737316],[-3.417598009109497,43.13340759277355],[-3.430324077606201,43.24207305908209],[-3.382946014404297,43.2704696655274],[-3.225183963775635,43.308917999267635],[-3.157285928726196,43.30130386352545],[-3.153194904327393,43.353248596191456],[-3.058193922042847,43.34375],[-2.947083950042668,43.435970306396534],[-2.849581956863403,43.43013763427739],[-2.754584074020386,43.454860687255966],[-2.684859991073495,43.40430450439453],[-2.545137882232609,43.373195648193416],[-2.510138988494873,43.37736129760748],[-2.412362098693791,43.321224212646484]]]},"properties":{"ID_0":215,"ISO":"ES-BI","NAME_0":"Spain","ID_1":16,"NAME_1":"País Vasco","ID_2":50,"NAME_2":"Vizcaya","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.512214183807316,43.393196105957145],[-4.539379119873047,43.343917846679744],[-4.521636009216252,43.28058624267584],[-4.59830904006958,43.298503875732536],[-4.634801864624023,43.26873016357421],[-4.730861186981201,43.257293701171925],[-4.745722770690917,43.18407821655268],[-4.840936183929443,43.180740356445256],[-4.893488883972111,43.238437652587834],[-4.996514797210693,43.18535232543957],[-5.063722133636475,43.17945098876953],[-5.10164022445673,43.10181045532238],[-5.188504219055119,43.0997314453125],[-5.28202009201044,43.07738876342779],[-5.383000850677489,43.08720016479492],[-5.540303230285588,43.01831436157237],[-5.688209056854134,43.05683898925787],[-5.728264808654728,43.04247665405279],[-5.765460968017521,42.969188690185604],[-5.850213050842285,42.967369079589844],[-5.95662784576416,43.018558502197266],[-5.974021911621037,43.06490707397461],[-6.136545181274414,43.02095413208019],[-6.185967922210636,43.049510955810604],[-6.226683139801025,43.008876800537166],[-6.396917819976806,43.038288116455135],[-6.442235946655217,42.939292907714844],[-6.541102886199951,42.91247558593756],[-6.612791061401367,42.92452239990245],[-6.72252178192133,42.91745376586914],[-6.749083042144775,42.89411544799816],[-6.82404899597168,42.91502761840826],[-6.835949897766112,42.95773315429699],[-6.964306831359863,43.026531219482365],[-6.951677799224796,43.07615661621105],[-6.827466964721679,43.12314987182623],[-6.871572971343937,43.17982482910156],[-6.941421985626164,43.13179016113287],[-6.964973926544189,43.187049865722656],[-7.065142154693604,43.249412536621094],[-7.178483963012694,43.387973785400334],[-7.172832012176513,43.43037033081055],[-7.102732181549072,43.42698669433593],[-7.052639007568303,43.47458267211913],[-7.022916793823185,43.55680465698242],[-6.92430591583252,43.575416564941406],[-6.816805839538574,43.55652618408203],[-6.59819507598877,43.554306030273494],[-6.437082767486515,43.55930709838867],[-6.357082843780518,43.55097198486328],[-6.242639064788818,43.58902740478521],[-6.117362022399901,43.554862976074276],[-6.030971050262451,43.58541488647461],[-5.945138931274414,43.584304809570426],[-5.90736198425293,43.62374877929693],[-5.834029197692871,43.64541625976562],[-5.694583892822208,43.545139312744084],[-5.415139198303222,43.554584503173885],[-5.385416984558105,43.53263854980463],[-5.294859886169434,43.53513717651373],[-5.207637786865178,43.47402954101574],[-5.085416793823185,43.47624969482421],[-4.770692825317383,43.43069458007818],[-4.653750896453801,43.40097045898443],[-4.512214183807316,43.393196105957145]]]},"properties":{"ID_0":215,"ISO":"ES-O2","NAME_0":"Spain","ID_1":17,"NAME_1":"Principado de Asturias","ID_2":51,"NAME_2":"Asturias","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.026051044464111,38.655689239501946],[-1.00148594379425,38.572860717773494],[-1.013854980468693,38.49708557128906],[-1.081730008125305,38.441864013671925],[-1.084408044815007,38.34651565551758],[-0.989009976386967,38.3205680847168],[-0.967746019363346,38.25588226318365],[-0.988690972328186,38.19958877563488],[-1.036584973335266,38.13743209838867],[-1.022176027297973,38.075237274169865],[-0.921250998973846,37.944534301757805],[-0.830178976058903,37.86429977416992],[-0.762360990047398,37.846981048583984],[-0.800137996673584,37.782638549804744],[-0.859583020210266,37.72291564941406],[-0.788469016551971,37.652111053466854],[-0.71763801574707,37.60680389404302],[-0.91509997844696,37.55908203125],[-1.074581980705261,37.5837516784668],[-1.126250028610229,37.55374908447271],[-1.242916941642704,37.577362060546875],[-1.320973038673344,37.56319427490246],[-1.401805043220463,37.50680541992187],[-1.459305047988778,37.48680496215832],[-1.48120105266571,37.453491210937614],[-1.630097031593323,37.37485122680675],[-1.736989974975529,37.44267654418951],[-1.845173954963684,37.45486831665045],[-1.953919053077698,37.58831787109381],[-2.011836051940918,37.673496246338004],[-1.995744943618774,37.72808837890631],[-2.008748054504338,37.774990081787216],[-1.99518895149231,37.841426849365234],[-2.062150001525822,37.883510589599716],[-2.123106002807617,37.900489807128906],[-2.171906948089599,37.88873291015631],[-2.207566022872811,37.91661071777355],[-2.276753902435246,37.960090637207145],[-2.341528892517033,38.026039123535206],[-2.329797983169555,38.065437316894524],[-2.261549949645882,38.11299514770519],[-2.213428020477295,38.2018394470216],[-2.113636016845646,38.23823547363281],[-2.063683986663818,38.29762268066412],[-1.978098034858647,38.282218933105526],[-1.907454013824463,38.29799270629894],[-1.743435978889465,38.381320953369254],[-1.681859970092717,38.36017990112316],[-1.669927000999337,38.31235504150396],[-1.589324951171818,38.311233520507926],[-1.478346943855286,38.376396179199276],[-1.48065805435175,38.48085021972656],[-1.498383045196533,38.5320663452149],[-1.45231294631958,38.58181762695318],[-1.447710990905762,38.64936065673834],[-1.402217030525151,38.69132614135742],[-1.342898011207581,38.677524566650504],[-1.249382972717285,38.73839569091797],[-1.183928966522217,38.754447937011776],[-1.026051044464111,38.655689239501946]]]},"properties":{"ID_0":215,"ISO":"ES-MU6","NAME_0":"Spain","ID_1":18,"NAME_1":"Región de Murcia","ID_2":52,"NAME_2":"Murcia","TYPE_2":"Provincia","ENGTYPE_2":"Province","NL_NAME_2":null,"VARNAME_2":null}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson
new file mode 100644
index 0000000..da2dfb7
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson
@@ -0,0 +1,28 @@
+{"type":"FeatureCollection", "features": [
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.2488895,46.9162714],[9.2448445,46.9144935],[9.2393591,46.9079271],[9.2345504,46.9082942],[9.2299315,46.9064024],[9.2264791,46.9055089],[9.2245631,46.9015403],[9.2179845,46.8951393],[9.2130319,46.891958],[9.2110875,46.8893019],[9.2061026,46.8867499],[9.2041261,46.8830975],[9.2027886,46.8831043],[9.1999127,46.8806498],[9.197964,46.880623],[9.191487,46.8787373],[9.1887408,46.877464],[9.18625,46.8775171],[9.1819872,46.8786003],[9.1774523,46.8791089],[9.1561653,46.879392],[9.1530041,46.8798352],[9.1567987,46.8739334],[9.1526341,46.8722586],[9.1489701,46.8723251],[9.1445161,46.869425],[9.144325,46.8673439],[9.1419079,46.8657001],[9.1405478,46.8618409],[9.1360909,46.8612145],[9.1337585,46.8599272],[9.1283038,46.8588023],[9.1253902,46.8554574],[9.1198918,46.8548403],[9.1170878,46.8530597],[9.1140233,46.8522429],[9.112566,46.8506483],[9.1093542,46.8508284],[9.104857,46.8524749],[9.1039054,46.8559248],[9.1036063,46.8596946],[9.1010761,46.8617351],[9.0966989,46.8662019],[9.0946713,46.8675847],[9.0949332,46.8708724],[9.0840167,46.8728598],[9.0770505,46.8750775],[9.0720486,46.8753937],[9.0681231,46.8747181],[9.0647082,46.8752091],[9.0611395,46.8738204],[9.0544262,46.8682906],[9.0483756,46.8670441],[9.0451629,46.8649807],[9.0450812,46.8600202],[9.0441854,46.8555179],[9.0460759,46.8506184],[9.0454128,46.8496456],[9.0406615,46.8478119],[9.0375803,46.8451145],[9.0337241,46.8390507],[9.0343992,46.8353451],[9.0299934,46.8330322],[9.0274986,46.8300293],[9.0254253,46.8256893],[9.0213885,46.8217415],[9.019973,46.8173275],[9.0090128,46.8111813],[8.9988805,46.8108271],[8.9909719,46.8088218],[8.9857098,46.8084466],[8.9807007,46.8072058],[8.9768603,46.807639],[8.9688947,46.8063778],[8.9656462,46.8065178],[8.9577479,46.8044403],[8.9533958,46.8050153],[8.9507235,46.8027066],[8.9448892,46.8022976],[8.9401734,46.7994199],[8.9347983,46.7986738],[8.9278867,46.7965845],[8.9266727,46.7977731],[8.9236449,46.7983169],[8.9200002,46.798122],[8.9160407,46.7990397],[8.9140595,46.8006118],[8.9150599,46.8059285],[8.9148586,46.8111533],[8.9125984,46.8113398],[8.9074021,46.8102524],[8.901048,46.8117574],[8.9003241,46.8134943],[8.8970046,46.8141821],[8.8913306,46.8134027],[8.8884652,46.8144263],[8.8839677,46.8141351],[8.8770464,46.8129185],[8.8755647,46.8159667],[8.8801622,46.8200807],[8.881635,46.8290721],[8.877092,46.8334801],[8.8743635,46.8352086],[8.8740662,46.8396479],[8.872986,46.8413655],[8.8752824,46.8436875],[8.8839793,46.8462082],[8.8888374,46.8482541],[8.8956601,46.8495718],[8.8991806,46.8525104],[8.9001582,46.8544849],[8.9027676,46.8561198],[8.9075825,46.8602236],[8.9158838,46.8601779],[8.918259,46.8608465],[8.9231221,46.8633005],[8.9333747,46.8653412],[8.9417106,46.8708924],[8.9503699,46.8731796],[8.9559119,46.8753321],[8.9578008,46.8795013],[8.956773,46.8863194],[8.9572771,46.8879052],[8.9545806,46.8944782],[8.954145,46.8969986],[8.9528116,46.8983576],[8.9534077,46.9006934],[8.9518002,46.9016192],[8.9485786,46.9016111],[8.9468861,46.9026904],[8.9457378,46.9049503],[8.9435621,46.9061636],[8.9423438,46.9097156],[8.939867,46.9122561],[8.935372,46.919872],[8.9404336,46.9224418],[8.9428138,46.9220957],[8.9477745,46.9243246],[8.9482254,46.9254163],[8.9528537,46.9251573],[8.9544561,46.9260987],[8.9572679,46.9256835],[8.9632758,46.9268362],[8.9642071,46.9286502],[8.9626723,46.9310278],[8.9598148,46.9312277],[8.9569151,46.9341182],[8.9576211,46.9358632],[8.9559023,46.9368577],[8.9552128,46.9389541],[8.9580842,46.9443412],[8.9609667,46.9473169],[8.9622955,46.9538669],[8.9647879,46.956038],[8.9710981,46.9584459],[8.9653213,46.9609342],[8.9631256,46.9608915],[8.9572512,46.962274],[8.9538835,46.96401],[8.9527549,46.9659323],[8.9499221,46.9670763],[8.9488649,46.9692045],[8.9456524,46.9671326],[8.9337191,46.9808288],[8.9321428,46.9822889],[8.9410192,46.9847369],[8.9415309,46.9875192],[8.9364429,46.9879907],[8.932321,46.9910583],[8.9292996,46.9968376],[8.9213352,47.0012772],[8.9169615,47.003385],[8.9169914,47.0059036],[8.9155602,47.0074245],[8.912397,47.0086168],[8.9115482,47.0097972],[8.9104587,47.0170715],[8.9054109,47.0186475],[8.900041,47.0209652],[8.8948834,47.0209409],[8.8929825,47.0236406],[8.8953576,47.0253377],[8.9007349,47.0261484],[8.9036071,47.0272615],[8.9032903,47.0293575],[8.9008184,47.0320218],[8.9009513,47.0372022],[8.9039921,47.0387035],[8.9061147,47.0384069],[8.9093893,47.0396882],[8.9120387,47.0393025],[8.9146246,47.0399248],[8.9153386,47.0385186],[8.9180923,47.0379176],[8.9219965,47.0382951],[8.9246134,47.0398159],[8.9305437,47.042085],[8.9369145,47.0436618],[8.9409129,47.0476171],[8.9471796,47.0489587],[8.9483451,47.0498395],[8.9491277,47.0565246],[8.9509709,47.0606438],[8.9543804,47.0652717],[8.9561728,47.0658353],[8.9590498,47.0698852],[8.9617614,47.0713752],[8.9621902,47.076493],[8.9667481,47.0798141],[8.9662821,47.0808404],[8.9759838,47.0857083],[8.9733543,47.0868432],[8.968592,47.0871361],[8.9607914,47.0895421],[8.9572683,47.0898379],[8.9538664,47.0914868],[8.9541421,47.0942606],[8.9567681,47.0958142],[8.9596864,47.1002096],[8.9642335,47.1019871],[8.9706355,47.103773],[8.9706722,47.1069264],[8.9692933,47.1084741],[8.9711173,47.1100512],[8.9709234,47.1124829],[8.9736844,47.1150994],[8.9718909,47.1181168],[8.9671279,47.119179],[8.9652887,47.1214823],[8.9663664,47.1250839],[8.9676515,47.1265474],[8.9690755,47.1301696],[8.9681417,47.1335025],[8.9693676,47.1345046],[8.9673854,47.1366351],[8.9717712,47.1385957],[8.9737773,47.1403677],[8.975295,47.1439156],[8.9916219,47.1621668],[8.9932839,47.1637845],[9.0047149,47.1732618],[9.0055892,47.1739901],[9.0506463,47.1415876],[9.0537983,47.1392234],[9.0641665,47.1330078],[9.0662112,47.1309135],[9.0694595,47.1298112],[9.0939335,47.1317574],[9.1012291,47.1332506],[9.1068284,47.1314528],[9.1099144,47.1314552],[9.1154179,47.1327527],[9.1359131,47.13198],[9.1476938,47.1289174],[9.1898696,47.1236999],[9.1888095,47.1159485],[9.1898925,47.1095722],[9.1883346,47.1075616],[9.1886108,47.1039435],[9.1869079,47.1022854],[9.1862941,47.0975426],[9.1876623,47.0941222],[9.1902147,47.0900622],[9.1887798,47.0854796],[9.1908207,47.0775657],[9.1906239,47.0739477],[9.1919566,47.0735817],[9.1902906,47.0698927],[9.1871441,47.0654225],[9.1852521,47.0642343],[9.1837458,47.0596278],[9.1803284,47.0574477],[9.1745272,47.0529263],[9.1713295,47.0525696],[9.167394,47.0494002],[9.1655548,47.0499221],[9.1596845,47.0490632],[9.1586619,47.0481937],[9.1533535,47.0472727],[9.1493687,47.044862],[9.1380588,47.0391352],[9.1562906,47.0301841],[9.1579392,47.030627],[9.16418,47.0281306],[9.1656639,47.0268807],[9.1695902,47.0266309],[9.175206,47.0288079],[9.1773714,47.0268441],[9.180518,47.0259225],[9.1882874,47.0290709],[9.1918536,47.0311598],[9.2016527,47.0351215],[9.2044212,47.0346696],[9.2089667,47.0357312],[9.2128521,47.0335585],[9.2160668,47.0328218],[9.2200098,47.0331131],[9.2219354,47.0325835],[9.2253788,47.0297677],[9.228144,47.0283879],[9.2300394,47.0258199],[9.2363488,47.0239832],[9.2366431,47.0217942],[9.2389092,47.0203118],[9.2428348,47.014655],[9.2422619,47.0127507],[9.2423298,47.0087516],[9.2445596,47.0049286],[9.2496743,46.9979581],[9.2498737,46.9952145],[9.247531,46.9946467],[9.2455505,46.9921988],[9.2457361,46.9885859],[9.2465684,46.9870345],[9.2439295,46.9808765],[9.2463903,46.9789016],[9.2467711,46.9754427],[9.2440438,46.9711697],[9.2427356,46.9657885],[9.2458588,46.9597657],[9.2447029,46.9564677],[9.2375366,46.9549463],[9.2365521,46.9528348],[9.2370568,46.9474529],[9.2362988,46.9448502],[9.2376963,46.9438354],[9.2393256,46.9405529],[9.2391284,46.9393859],[9.2488126,46.9356495],[9.2502545,46.9346294],[9.2512553,46.9293498],[9.2525772,46.9270313],[9.2502246,46.9241704],[9.2513733,46.9216031],[9.249483,46.9189568],[9.2488895,46.9162714]]]},"properties":{"ID_0":223,"ISO":"CH-GL","NAME_0":"Switzerland","ID_1":9,"NAME_1":"Glarus","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Glaris|Glarona|Glaruna"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.4122057,47.1405668],[8.4152279,47.135584],[8.4167591,47.1305576],[8.4143459,47.1261892],[8.4169251,47.12313],[8.4203161,47.1226289],[8.422078,47.1234563],[8.4303946,47.1233201],[8.4344256,47.1249893],[8.4413387,47.1285686],[8.4498558,47.1295631],[8.4515473,47.1210284],[8.454106,47.1136967],[8.4556084,47.1134465],[8.4599001,47.1157659],[8.4658539,47.1170652],[8.4669979,47.1188444],[8.4803717,47.1263276],[8.4937326,47.1137326],[8.4930444,47.1001815],[8.4762604,47.1061387],[8.4753818,47.1079905],[8.4753429,47.1113683],[8.4705884,47.1127776],[8.4648405,47.1110106],[8.4598457,47.1119325],[8.4499974,47.1144263],[8.4486142,47.1113686],[8.4419116,47.1114256],[8.4379236,47.1095561],[8.43773,47.1067133],[8.4315048,47.105779],[8.4242279,47.1038224],[8.4186806,47.1003894],[8.41468,47.0963026],[8.4100135,47.0935014],[8.4101381,47.0907865],[8.4091295,47.0889091],[8.4106777,47.0859397],[8.4092748,47.0848267],[8.4070822,47.0795488],[8.3996203,47.0752952],[8.3982208,47.0752872],[8.3948176,47.0727079],[8.3922508,47.0721102],[8.3889122,47.070384],[8.3905144,47.0613294],[8.398154,47.0599726],[8.399231,47.0594509],[8.4302331,47.0654209],[8.4340698,47.0639255],[8.4394057,47.0637353],[8.4413774,47.0630894],[8.4459843,47.060349],[8.4459153,47.0582659],[8.4535487,47.0552159],[8.4648597,47.0484229],[8.469923,47.0474823],[8.4788541,47.040051],[8.4837726,47.0379698],[8.4862981,47.0350914],[8.4897354,47.0334371],[8.490439,47.0318371],[8.4944222,47.0291292],[8.497008,47.0286423],[8.5006014,47.024688],[8.5050176,47.0244534],[8.5105325,47.0234254],[8.5134884,47.0216895],[8.5140537,47.0175334],[8.5135388,47.0125582],[8.5090408,47.0044968],[8.5035027,47.0031529],[8.5007629,47.0009094],[8.4948688,47.000531],[8.4831139,46.996751],[8.4735932,46.9955488],[8.4681565,46.9965248],[8.469059,47.0092908],[8.427975,47.0172089],[8.4267592,47.0022504],[8.4260033,46.9981425],[8.4146122,46.9982011],[8.4055944,47.0001956],[8.4039355,46.99973],[8.3992144,46.9999101],[8.3963428,47.0008732],[8.3855759,46.9983199],[8.382823,47.0005463],[8.3846947,47.0029207],[8.3837888,47.0177163],[8.3685039,47.0199551],[8.3344451,46.9890111],[8.3188426,46.9995668],[8.310657,46.9980631],[8.3057454,46.9978796],[8.303198,46.9984001],[8.2947816,46.998147],[8.2939722,46.9962099],[8.2909433,46.9959831],[8.2888549,46.9945936],[8.2837341,46.9950564],[8.2799542,46.9962703],[8.2779872,46.9979791],[8.273798,46.9974398],[8.2699613,46.9980948],[8.2654893,46.9981826],[8.2600341,46.9962715],[8.25525,46.9941413],[8.2534023,46.9917504],[8.2503575,46.9901149],[8.2483661,46.9874329],[8.243962,46.9860157],[8.2395181,46.9894889],[8.2377075,46.991832],[8.2354657,46.9910922],[8.2310639,46.9925613],[8.2280597,46.992616],[8.2265424,46.9897437],[8.2247416,46.9883903],[8.2209887,46.9831453],[8.2180924,46.9810946],[8.2191045,46.9791825],[8.2230522,46.9757279],[8.2288726,46.9731468],[8.2288919,46.9700111],[8.2259661,46.9690619],[8.2202502,46.9694543],[8.2030205,46.966931],[8.1949781,46.9686963],[8.1873321,46.9717471],[8.1819167,46.9685261],[8.1780497,46.9687298],[8.1685109,46.9652773],[8.1645307,46.9646676],[8.1589876,46.9611316],[8.1547454,46.9600943],[8.1549011,46.959051],[8.1500976,46.9575261],[8.1514693,46.95581],[8.1510929,46.9528752],[8.1534885,46.9499544],[8.1608241,46.9434618],[8.1616856,46.9436062],[8.1648412,46.9396042],[8.1619532,46.9364647],[8.1592238,46.9358348],[8.1573911,46.9337381],[8.1541016,46.9329061],[8.1516876,46.9309332],[8.1480098,46.9296768],[8.1453622,46.9276947],[8.1410778,46.9255696],[8.13916,46.9233365],[8.1355841,46.9227899],[8.1317369,46.9192494],[8.1280783,46.9144199],[8.126388,46.9134349],[8.1224961,46.9094698],[8.1211647,46.906457],[8.117784,46.9032189],[8.1175163,46.9018159],[8.1135925,46.8957128],[8.1112818,46.8927653],[8.107602,46.8948917],[8.1064285,46.8984439],[8.1063723,46.9014417],[8.1086404,46.9082641],[8.1040077,46.909114],[8.1013351,46.9089418],[8.0989404,46.9103673],[8.0948072,46.9111065],[8.0917264,46.9094405],[8.089211,46.9091935],[8.0858952,46.9061323],[8.0860965,46.9042566],[8.0842688,46.9023568],[8.082592,46.8991766],[8.0779976,46.8973995],[8.073126,46.8971168],[8.0698227,46.89573],[8.0696779,46.8907688],[8.0669969,46.8878276],[8.0701232,46.8802972],[8.0702544,46.8761585],[8.0715913,46.8737188],[8.0696492,46.8715319],[8.0696932,46.8687961],[8.0659784,46.8669742],[8.0661154,46.8645527],[8.0672709,46.8624216],[8.0649619,46.8587389],[8.0621069,46.8579395],[8.0595356,46.8586533],[8.0578291,46.8555437],[8.0584609,46.8536926],[8.0559808,46.8493036],[8.0520524,46.8473331],[8.049794,46.8450801],[8.0457589,46.8441787],[8.0423122,46.8365705],[8.0465934,46.8320338],[8.0477317,46.8316247],[8.0470737,46.8289574],[8.0515015,46.8251835],[8.0528575,46.8230712],[8.064174,46.8084423],[8.0645301,46.8061064],[8.0638622,46.8029819],[8.0609938,46.8028032],[8.0553001,46.799165],[8.0551286,46.7972626],[8.0568499,46.7954771],[8.0560911,46.7929483],[8.0493399,46.7882332],[8.0469368,46.7871155],[8.0389843,46.7875925],[8.0353334,46.7893737],[8.0314848,46.7901553],[8.026476,46.7897828],[8.0176777,46.7879228],[8.011564,46.7859313],[8.0048668,46.7832136],[7.9968835,46.7821718],[7.9949565,46.7811996],[7.9942776,46.779034],[7.9889136,46.776455],[7.9845705,46.7749903],[7.9819743,46.7764187],[7.9757124,46.7773076],[7.9734773,46.778366],[7.9695054,46.7824716],[7.9687023,46.7851289],[7.9651386,46.7869887],[7.9629261,46.7870378],[7.9608836,46.7887387],[7.9578957,46.7894177],[7.9547276,46.7910817],[7.9524439,46.79315],[7.9538365,46.7957775],[7.951843,46.7976365],[7.9508427,46.799852],[7.946745,46.8052516],[7.9417072,46.8080123],[7.9287598,46.8164679],[7.9223894,46.8200081],[7.9043653,46.8275653],[7.8955578,46.8310065],[7.8770771,46.8370701],[7.8727172,46.8426148],[7.870442,46.8438591],[7.870111,46.8475751],[7.8676102,46.8503665],[7.8682969,46.8539146],[7.867292,46.8586814],[7.8694916,46.8643496],[7.8646831,46.8662856],[7.864264,46.8695593],[7.8598338,46.8703821],[7.8572623,46.871459],[7.8578264,46.8770902],[7.8561587,46.8808528],[7.8566122,46.8834882],[7.8585989,46.8852943],[7.862547,46.886608],[7.8658363,46.8865539],[7.8693697,46.8877835],[7.8706893,46.8895847],[7.8730479,46.8896749],[7.87339,46.8929944],[7.8753279,46.8957624],[7.879759,46.9003907],[7.8802201,46.9017675],[7.8826601,46.9035355],[7.8831168,46.9066361],[7.8815687,46.907955],[7.8804301,46.9105324],[7.8785508,46.9113263],[7.8746758,46.9113161],[7.8727833,46.9129545],[7.8670743,46.9147927],[7.8689697,46.9169372],[7.8705131,46.9209622],[7.8726582,46.9242933],[7.8769266,46.9273754],[7.8854949,46.9298133],[7.8898551,46.931583],[7.8935537,46.9324769],[7.8974979,46.9346379],[7.9023825,46.9343561],[7.9034189,46.9335033],[7.9079254,46.9326868],[7.9125112,46.933087],[7.9152587,46.9346375],[7.918022,46.9392245],[7.9208579,46.9418185],[7.9216764,46.9467339],[7.9260273,46.9483379],[7.9290792,46.9481861],[7.9316507,46.950514],[7.9323153,46.9537177],[7.9315076,46.955851],[7.932566,46.9573768],[7.9315261,46.9601837],[7.9322377,46.9616508],[7.93617,46.9644065],[7.9400964,46.9647445],[7.945354,46.9678445],[7.9447735,46.9699978],[7.9446598,46.9747903],[7.9439092,46.9771833],[7.9472932,46.9792646],[7.9508493,46.9800796],[7.9524282,46.9812583],[7.9521818,46.9829603],[7.9497323,46.9871713],[7.9500808,46.9883089],[7.9483759,46.9918668],[7.9483769,46.9940675],[7.9520255,46.996586],[7.953958,47.0020087],[7.9562036,47.003424],[7.9538023,47.0051565],[7.9501629,47.0067653],[7.9494336,47.005834],[7.9424638,47.0053314],[7.9395184,47.0046637],[7.9326629,47.0042489],[7.9293143,47.0053951],[7.9268386,47.0070649],[7.9250637,47.0103736],[7.9220101,47.0105561],[7.9162356,47.0085172],[7.9131543,47.0085803],[7.9073411,47.0068545],[7.9018248,47.0062527],[7.8998899,47.0076474],[7.8969262,47.0130375],[7.9001094,47.0164725],[7.900535,47.0179775],[7.8968237,47.0214234],[7.8947482,47.0221656],[7.8932812,47.0248712],[7.893861,47.0279209],[7.8917861,47.0304954],[7.8891191,47.0308224],[7.8848882,47.0327408],[7.8830598,47.0352306],[7.883942,47.0371722],[7.8815896,47.0405926],[7.8747581,47.0409611],[7.8724573,47.0447568],[7.8709066,47.0451639],[7.8664419,47.049792],[7.8681182,47.0518438],[7.8660156,47.0534194],[7.8695483,47.0586556],[7.8739015,47.0617056],[7.8711583,47.062524],[7.8720216,47.065347],[7.8737646,47.0667355],[7.8772772,47.0715873],[7.8761156,47.0734516],[7.8775118,47.0753586],[7.879338,47.0802901],[7.8782656,47.0819792],[7.8804652,47.0844989],[7.8807158,47.0886017],[7.8798161,47.0918981],[7.8779016,47.092947],[7.8795077,47.0955217],[7.8759463,47.0971776],[7.8748077,47.0988629],[7.8761896,47.1016573],[7.8729824,47.1053719],[7.8749484,47.1094362],[7.8732403,47.1105436],[7.8681449,47.1119748],[7.8694188,47.1135325],[7.8693709,47.1166789],[7.8670538,47.1166821],[7.8671131,47.119504],[7.8701961,47.1228269],[7.8845678,47.1275534],[7.8863473,47.1288911],[7.8864922,47.1316861],[7.8897968,47.1320362],[7.8884733,47.1344372],[7.8905789,47.1376261],[7.8894344,47.1390171],[7.8900972,47.140725],[7.8874139,47.1436363],[7.8832815,47.146257],[7.8801756,47.1491415],[7.8774473,47.1535585],[7.8757739,47.1590122],[7.8758213,47.1634975],[7.8792516,47.1694716],[7.8828809,47.1721182],[7.8827176,47.1739438],[7.8806605,47.1748044],[7.8795261,47.1790498],[7.8768464,47.1808863],[7.8758709,47.183219],[7.8691589,47.1860289],[7.865311,47.1894999],[7.8613004,47.1914901],[7.8594916,47.1933276],[7.8605526,47.1961078],[7.8594816,47.1990757],[7.8563591,47.2006691],[7.8544477,47.2044368],[7.8520444,47.2066042],[7.846667,47.2149743],[7.846829,47.2173103],[7.8446564,47.2176521],[7.843723,47.2198345],[7.839921,47.222698],[7.8377256,47.2228478],[7.8364775,47.2276886],[7.8373812,47.2324245],[7.8386647,47.2348181],[7.8420029,47.2357173],[7.8430183,47.2343513],[7.8532091,47.2324238],[7.8673945,47.2372962],[7.8972694,47.2430961],[7.9101007,47.2439465],[7.9141706,47.2420737],[7.921166,47.2379111],[7.9334826,47.2358957],[7.9398092,47.2404414],[7.9459744,47.2432558],[7.9541378,47.2497803],[7.9618784,47.2540589],[7.9589598,47.25623],[7.9593238,47.2576364],[7.9579261,47.2597845],[7.9558605,47.260178],[7.9545233,47.2633914],[7.9516512,47.2656935],[7.9520683,47.2675824],[7.9497032,47.2701298],[7.9491616,47.2725396],[7.9506354,47.2747829],[7.95602,47.2768598],[7.9716646,47.2761144],[7.9734527,47.2744865],[7.9868871,47.2760234],[7.9952926,47.2815534],[8.0047904,47.2743725],[8.0043074,47.2726231],[8.0053987,47.2691003],[8.0093552,47.2651126],[8.0130457,47.2627085],[8.0168109,47.2593238],[8.016256,47.258246],[8.0175218,47.2559369],[8.0165082,47.2544025],[8.0168954,47.2500166],[8.0156853,47.2477412],[8.0157512,47.2441628],[8.020331,47.2435224],[8.0217481,47.2423941],[8.0254017,47.2419438],[8.0290851,47.2406028],[8.0301016,47.242156],[8.0512289,47.2447599],[8.0515125,47.2441468],[8.0629796,47.2466594],[8.0581144,47.2513094],[8.0565664,47.2554394],[8.0585973,47.2567068],[8.0626919,47.256662],[8.0659636,47.2549414],[8.0704633,47.2546255],[8.0733426,47.2563542],[8.0772637,47.2576424],[8.0782909,47.2599923],[8.0820475,47.2606235],[8.0883758,47.2628873],[8.0988226,47.2602307],[8.106022,47.2521671],[8.1058556,47.2494077],[8.1090964,47.24453],[8.1195751,47.2438577],[8.1251115,47.2413804],[8.1312143,47.2439621],[8.1315074,47.2455035],[8.136419,47.2470303],[8.1466768,47.2474962],[8.1583294,47.2497355],[8.1651476,47.2501815],[8.1693989,47.2513454],[8.1718857,47.252782],[8.1749768,47.253515],[8.1797049,47.2504389],[8.1807465,47.247395],[8.1802217,47.2456632],[8.1775518,47.2443981],[8.175131,47.2401144],[8.1711111,47.2401778],[8.1679378,47.2408794],[8.1616465,47.2406211],[8.1559416,47.2394192],[8.1559338,47.2378096],[8.1592965,47.2377983],[8.1618626,47.2361538],[8.1600113,47.234439],[8.1607566,47.2317576],[8.1655634,47.2284415],[8.1741047,47.2274952],[8.1727742,47.2250413],[8.1743136,47.2246712],[8.1759828,47.2219037],[8.1804473,47.2227546],[8.1846946,47.2223738],[8.1896329,47.2244047],[8.1931936,47.2249222],[8.1962302,47.2263476],[8.2050436,47.2259905],[8.2033045,47.2314416],[8.2035711,47.2361932],[8.204802,47.2380208],[8.2057068,47.241401],[8.2044861,47.2426419],[8.2078584,47.2462412],[8.2077414,47.2473513],[8.2124756,47.2497727],[8.2198427,47.2522519],[8.2285716,47.2734159],[8.2331019,47.273887],[8.2346688,47.2728336],[8.2424133,47.2723076],[8.2409897,47.2760083],[8.2426397,47.2762568],[8.2422241,47.2787211],[8.2446221,47.2807593],[8.2486543,47.2811981],[8.2498223,47.2828383],[8.2489382,47.2844396],[8.2507168,47.286087],[8.2587085,47.2871939],[8.2594748,47.2868885],[8.2617324,47.2825413],[8.2653073,47.2825447],[8.2706757,47.2834771],[8.2715627,47.2808964],[8.2743904,47.2808342],[8.2786331,47.2821229],[8.2795173,47.2809789],[8.2853689,47.2799933],[8.289662,47.2774613],[8.29479,47.2729782],[8.300255,47.271484],[8.297079,47.2689933],[8.2946279,47.2660033],[8.296021,47.2594143],[8.301218,47.252272],[8.3049643,47.2524617],[8.31172,47.2454847],[8.3146969,47.240137],[8.3139494,47.2364276],[8.3153053,47.2329362],[8.3157763,47.2294424],[8.3171314,47.2251145],[8.3208411,47.2218749],[8.3194883,47.2156393],[8.3251996,47.2147297],[8.3279727,47.2060965],[8.3301153,47.2023919],[8.3300245,47.1985246],[8.3339116,47.1926296],[8.3382648,47.1886108],[8.3379236,47.1840078],[8.3389136,47.1816793],[8.3385953,47.1784435],[8.3412038,47.1750948],[8.3409574,47.1737628],[8.3441102,47.1730031],[8.3442827,47.1714995],[8.3490572,47.1660286],[8.3475949,47.1645829],[8.3515505,47.1629595],[8.3549518,47.1590195],[8.3581702,47.1567449],[8.3583539,47.1532873],[8.3607098,47.1522315],[8.3621689,47.1460993],[8.3663459,47.144808],[8.3748203,47.1430509],[8.3759397,47.1410181],[8.3801388,47.1392346],[8.3822014,47.1400021],[8.3899662,47.1397673],[8.3934199,47.1385054],[8.3959939,47.138992],[8.3981734,47.138031],[8.4041957,47.1382291],[8.4052906,47.1374801],[8.4088779,47.1385827],[8.4122057,47.1405668]]]},"properties":{"ID_0":223,"ISO":"CH-LU","NAME_0":"Switzerland","ID_1":12,"NAME_1":"Lucerne","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Lucerna|Luzern"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[7.0908601,46.9038187],[7.0945295,46.902557],[7.0973657,46.8999507],[7.1033442,46.9012572],[7.1038236,46.9002464],[7.0985314,46.8970964],[7.0943683,46.8951508],[7.0907139,46.8918157],[7.083742,46.8929378],[7.0833048,46.8961188],[7.0870951,46.8970955],[7.0888407,46.8997182],[7.0863757,46.9018644],[7.0908601,46.9038187]]],[[[7.1357931,46.9168465],[7.1361213,46.9131181],[7.1354848,46.9119631],[7.138444,46.9075421],[7.1348448,46.9075331],[7.1297636,46.9056356],[7.1244638,46.9027634],[7.1230417,46.9001955],[7.1196942,46.9005487],[7.1176846,46.9050593],[7.1191553,46.9056215],[7.1170491,46.9079492],[7.1132333,46.9105536],[7.1148537,46.9158349],[7.1252815,46.9189646],[7.1276928,46.918181],[7.1319438,46.9193063],[7.1346639,46.9193928],[7.1357931,46.9168465]]],[[[8.0469368,46.7871155],[8.0502814,46.7883386],[8.0550616,46.788437],[8.0598223,46.7863926],[8.0694454,46.7881922],[8.0742973,46.7862906],[8.0773268,46.7859382],[8.0827846,46.7869291],[8.0857438,46.7868817],[8.090039,46.7876445],[8.0907707,46.7843668],[8.0936406,46.7825184],[8.096305,46.7795299],[8.0995554,46.7782733],[8.101438,46.7761852],[8.1023471,46.7738054],[8.1068596,46.7728865],[8.11006,46.7737702],[8.1135173,46.7733979],[8.1183436,46.7709578],[8.1218255,46.7703745],[8.1283574,46.7669064],[8.1372426,46.7614036],[8.1386885,46.7595464],[8.1409768,46.7586297],[8.1469413,46.7548388],[8.1496654,46.756995],[8.1584489,46.7592441],[8.1594434,46.7605185],[8.1635255,46.7616557],[8.164253,46.7634024],[8.166793,46.7640209],[8.1679329,46.7653549],[8.1720978,46.7641373],[8.1741355,46.7654376],[8.1858109,46.7685851],[8.1897906,46.7703167],[8.1931692,46.7684297],[8.1963029,46.7679295],[8.2032354,46.7693774],[8.2079964,46.769458],[8.2120828,46.7663628],[8.2193495,46.7635354],[8.2204225,46.7614994],[8.2268665,46.7614831],[8.2297876,46.7610057],[8.2339122,46.7619525],[8.2390658,46.7696107],[8.2455252,46.7675204],[8.2518859,46.7660872],[8.2557625,46.7643958],[8.2600862,46.7633547],[8.2626495,46.7606581],[8.2666765,46.7576144],[8.2692757,46.7543134],[8.2755108,46.755087],[8.2809827,46.7543337],[8.2834842,46.7531719],[8.2869997,46.7553345],[8.2969264,46.7602435],[8.3020902,46.7620403],[8.3066227,46.7641848],[8.3068841,46.7652156],[8.311555,46.7682782],[8.3158764,46.7701054],[8.3208131,46.7733464],[8.3258164,46.7755873],[8.3268178,46.776816],[8.3310151,46.7785186],[8.333688,46.7805978],[8.3599152,46.7829668],[8.3635403,46.7845224],[8.3637922,46.7860723],[8.368933,46.787924],[8.370801,46.7882818],[8.37735,46.785825],[8.378891,46.7835313],[8.3823173,46.7801894],[8.3857645,46.7786541],[8.3911577,46.7777987],[8.3952224,46.7715167],[8.3963865,46.7654996],[8.4007917,46.7664527],[8.4037092,46.7683409],[8.4075065,46.7695548],[8.4146324,46.7743221],[8.4180096,46.7740632],[8.4210807,46.7727885],[8.421832,46.7710907],[8.4251153,46.7702919],[8.4284898,46.7719099],[8.435491,46.7725081],[8.4384308,46.7720269],[8.4421481,46.769887],[8.4466164,46.7702668],[8.4464717,46.7661327],[8.4483763,46.7651703],[8.4483186,46.7634232],[8.4469786,46.7588629],[8.4435551,46.7538822],[8.4411906,46.7542423],[8.4391677,46.753127],[8.4396773,46.7513662],[8.4421452,46.7497013],[8.4437651,46.747102],[8.4407645,46.7445666],[8.440236,46.7426429],[8.4414914,46.7413897],[8.4408653,46.7378698],[8.4437168,46.7342865],[8.4468904,46.7329948],[8.449714,46.7298385],[8.4470721,46.72706],[8.4472577,46.7149169],[8.4481202,46.7129388],[8.4536876,46.7105631],[8.4536299,46.7075508],[8.4521411,46.7042048],[8.4550678,46.6975229],[8.4527024,46.6929366],[8.452286,46.6887448],[8.4445452,46.6870431],[8.4405661,46.6855297],[8.4377356,46.6863093],[8.4316333,46.6868931],[8.4281838,46.6860641],[8.4199396,46.6873893],[8.4152825,46.6874839],[8.414459,46.6895549],[8.4122257,46.690715],[8.4083279,46.6905079],[8.3996106,46.6928757],[8.3987207,46.6916549],[8.3995864,46.6882396],[8.3973573,46.6842503],[8.3988709,46.6816866],[8.3990163,46.6784732],[8.3980551,46.6742285],[8.4005281,46.6725292],[8.4029639,46.6681529],[8.4071532,46.6667972],[8.4090606,46.66325],[8.4092902,46.656764],[8.4102289,46.653028],[8.398973,46.6540503],[8.3949544,46.6471291],[8.3947484,46.6460582],[8.3908345,46.6444644],[8.3837786,46.6380872],[8.3832261,46.6366262],[8.3792331,46.6336313],[8.3741071,46.6327715],[8.3726811,46.6336469],[8.371116,46.6303686],[8.3693089,46.628713],[8.369118,46.6203112],[8.3709772,46.6178042],[8.3707954,46.6152564],[8.3687642,46.6109321],[8.3685223,46.6091924],[8.3657875,46.6067159],[8.3651144,46.6040156],[8.3618932,46.6017862],[8.3616395,46.5981679],[8.362665,46.5958712],[8.3622465,46.5943375],[8.3633062,46.5916161],[8.3616461,46.5897206],[8.3605934,46.5863018],[8.3646716,46.5824784],[8.3604169,46.5777649],[8.3575099,46.5763666],[8.3515195,46.5717389],[8.3518363,46.5694648],[8.3486842,46.5678728],[8.3439454,46.5642177],[8.3390602,46.5625504],[8.3366047,46.561123],[8.3273074,46.5598988],[8.3242232,46.5603246],[8.3183751,46.5597372],[8.3166269,46.5590292],[8.3125546,46.5543651],[8.3127183,46.5525142],[8.3082063,46.5497885],[8.3074671,46.5484177],[8.3027661,46.5455298],[8.2961665,46.5445722],[8.2940856,46.5449027],[8.2909349,46.543532],[8.2874066,46.5430186],[8.283819,46.5387002],[8.2796086,46.5362125],[8.2732251,46.5364844],[8.2687208,46.5343403],[8.2629456,46.5334557],[8.2620344,46.531825],[8.2580618,46.5294428],[8.2524976,46.5295457],[8.2477457,46.5285316],[8.2412309,46.5265761],[8.2388931,46.5271324],[8.2340631,46.5266265],[8.2323781,46.527268],[8.2284294,46.5264139],[8.2256344,46.5269101],[8.2225893,46.5263463],[8.2187461,46.5264627],[8.2105564,46.5252322],[8.205115,46.52293],[8.2029394,46.5239163],[8.191171,46.5230052],[8.1844985,46.5204411],[8.1806699,46.5203934],[8.1790975,46.5227255],[8.1744954,46.524148],[8.1739569,46.5275835],[8.1745239,46.5314515],[8.1693188,46.5310192],[8.1637276,46.5320446],[8.1604159,46.5310041],[8.1497199,46.5318128],[8.141589,46.5346511],[8.1357153,46.5354708],[8.1313735,46.5370231],[8.126207,46.5373078],[8.1227363,46.5405749],[8.1176886,46.5435017],[8.1144938,46.5465908],[8.1050663,46.5486501],[8.1002618,46.5481473],[8.0956762,46.5495503],[8.0936127,46.5514333],[8.0898799,46.5511399],[8.0882447,46.5518986],[8.0833855,46.5521754],[8.0757843,46.5555737],[8.0721558,46.5537417],[8.0661754,46.5534951],[8.0600369,46.5526472],[8.05366,46.5560552],[8.0427847,46.5570182],[8.0352762,46.5599133],[8.0335757,46.5618293],[8.0303875,46.5624756],[8.0248386,46.5619196],[8.0230196,46.5625587],[8.0152667,46.5632279],[8.0074412,46.5607305],[8.0044746,46.5588847],[8.0005733,46.5578109],[7.9973861,46.5585356],[7.992919,46.5562323],[7.9925751,46.5544797],[7.9904725,46.5528977],[7.9882084,46.5493894],[7.9847197,46.5475097],[7.9796663,46.5480468],[7.9690054,46.5448423],[7.96568,46.5404211],[7.9628005,46.539238],[7.9626072,46.536765],[7.9650524,46.5335152],[7.967425,46.5321998],[7.9664977,46.5306749],[7.972654,46.524484],[7.9701732,46.5200247],[7.9708165,46.5165313],[7.9676924,46.5128576],[7.9643043,46.5128283],[7.9576517,46.5093505],[7.9535351,46.5080469],[7.951002,46.5088409],[7.9479705,46.50791],[7.9431116,46.5080036],[7.9401623,46.5060825],[7.9345997,46.5032912],[7.932472,46.4985327],[7.9260075,46.4967165],[7.9234134,46.4950507],[7.9248049,46.4940642],[7.923266,46.4916725],[7.9192294,46.4917976],[7.9159037,46.4912988],[7.9150685,46.4896381],[7.9129101,46.4885676],[7.9119581,46.4869254],[7.9065797,46.4869746],[7.902505,46.4856599],[7.89779,46.4825305],[7.8951829,46.4822262],[7.8908952,46.4833947],[7.8872547,46.4809533],[7.8762302,46.4783876],[7.8699489,46.4777818],[7.8628821,46.4782851],[7.8503494,46.4771546],[7.8482107,46.4788067],[7.8446273,46.4784867],[7.8371358,46.4743931],[7.8289097,46.4711832],[7.8261338,46.4689887],[7.8262157,46.4676841],[7.8224659,46.4658077],[7.8195319,46.4651249],[7.8123796,46.4624679],[7.807661,46.4615657],[7.7981385,46.4586006],[7.7934506,46.4543244],[7.7872536,46.4520677],[7.7846307,46.4489542],[7.7801662,46.4468087],[7.7782845,46.4434859],[7.7724602,46.4422887],[7.7684996,46.4393767],[7.7660687,46.4397615],[7.7646259,46.4378586],[7.7609054,46.4358181],[7.7564375,46.4349581],[7.7548645,46.4329565],[7.7443189,46.4284731],[7.743174,46.4270692],[7.7390174,46.4251633],[7.7307749,46.4220012],[7.7218853,46.4210161],[7.7181369,46.4180748],[7.7155451,46.4148427],[7.7086472,46.4139147],[7.7043432,46.4167855],[7.6991125,46.4190916],[7.6936106,46.4246544],[7.6902285,46.424689],[7.6862685,46.4263798],[7.6823435,46.4271979],[7.6785132,46.4288972],[7.6700018,46.4312536],[7.6354563,46.4411416],[7.6261008,46.4450525],[7.6246327,46.4419694],[7.6214364,46.4395278],[7.618243,46.4378867],[7.6149902,46.4379367],[7.6111738,46.4366652],[7.6088007,46.4350676],[7.6099862,46.4314046],[7.6102115,46.4285706],[7.6079505,46.4252456],[7.6028689,46.4225274],[7.5995917,46.4228019],[7.5985075,46.4212562],[7.6003158,46.4169357],[7.5998303,46.4155151],[7.5969636,46.413675],[7.5955265,46.4114281],[7.5866238,46.413671],[7.5839246,46.4158964],[7.5835188,46.4173459],[7.5784418,46.4172728],[7.5720134,46.4147344],[7.565494,46.4143355],[7.5622785,46.4127033],[7.558583,46.4136506],[7.5548745,46.4135572],[7.5504395,46.4121541],[7.544163,46.4121556],[7.5395124,46.4115454],[7.5340874,46.4098148],[7.5334351,46.4071373],[7.5320408,46.4061894],[7.5289485,46.4015151],[7.5290498,46.3998508],[7.533142,46.3977605],[7.5427932,46.3942366],[7.5468129,46.3940602],[7.5552699,46.3889749],[7.5412716,46.3841065],[7.5385478,46.380016],[7.5390974,46.3778463],[7.5378384,46.3771534],[7.5293329,46.3756886],[7.526966,46.3746245],[7.5207755,46.3748953],[7.5127765,46.3761629],[7.5071568,46.3758424],[7.5058318,46.3732627],[7.5025044,46.3704828],[7.4993216,46.3698839],[7.4946242,46.371908],[7.4904012,46.3702875],[7.4868677,46.3707236],[7.4851503,46.3726371],[7.4858209,46.3746203],[7.4838295,46.3810849],[7.4821881,46.3834312],[7.4794061,46.3852585],[7.4732914,46.3836194],[7.472654,46.3808128],[7.469742,46.3781209],[7.4636345,46.3781038],[7.4621432,46.3764205],[7.458659,46.3787447],[7.4585688,46.3810206],[7.4537247,46.3823628],[7.4503152,46.3818043],[7.4481316,46.3825241],[7.4432312,46.3830011],[7.4402415,46.3842156],[7.4386427,46.3861677],[7.433573,46.385115],[7.4283093,46.3808597],[7.4168063,46.3801833],[7.4149872,46.3787886],[7.411517,46.378518],[7.4088794,46.376988],[7.4046948,46.3762492],[7.4016287,46.374548],[7.3996257,46.3765624],[7.3927403,46.3730964],[7.3921565,46.3719897],[7.3883514,46.3690015],[7.3866619,46.3691986],[7.3842993,46.3666607],[7.3810727,46.3644014],[7.3793829,46.3648953],[7.3769544,46.3636795],[7.3744239,46.3609075],[7.369385,46.3590154],[7.3664199,46.3572099],[7.3629062,46.3567029],[7.3589725,46.3532314],[7.3539649,46.3503418],[7.3493614,46.3508728],[7.3428089,46.348259],[7.3377645,46.3469091],[7.3322401,46.3464268],[7.323638,46.3441914],[7.3156452,46.3436615],[7.3110164,46.3476991],[7.3088088,46.3503254],[7.3081135,46.3528342],[7.3099179,46.3560307],[7.3084012,46.3586381],[7.3103217,46.3598968],[7.3104848,46.3618086],[7.3123393,46.3631959],[7.3127579,46.3706744],[7.3102862,46.3751591],[7.2990635,46.3663994],[7.2955361,46.3656316],[7.2907006,46.3671762],[7.2623055,46.3582368],[7.2604974,46.3544622],[7.26101,46.3515911],[7.2624387,46.3492867],[7.261162,46.3478833],[7.2608068,46.3454863],[7.261455,46.339931],[7.262803,46.3384975],[7.2590205,46.3361983],[7.2542983,46.3311231],[7.2519886,46.32983],[7.2501163,46.3301062],[7.2460169,46.327861],[7.2391992,46.3269536],[7.2325299,46.3265258],[7.2274591,46.3276118],[7.2217297,46.3294194],[7.2225572,46.3485723],[7.2188867,46.357534],[7.2245287,46.3592945],[7.2262087,46.3590832],[7.2277777,46.3611189],[7.2275382,46.3635072],[7.2263584,46.3650271],[7.2191636,46.361963],[7.2161096,46.3619942],[7.2108871,46.3676978],[7.2096864,46.3722173],[7.2073249,46.3734149],[7.2074364,46.3775956],[7.2058096,46.3795745],[7.2035274,46.3787041],[7.1937111,46.3789307],[7.1949446,46.3848984],[7.198501,46.3894525],[7.1983951,46.3906489],[7.2008621,46.3928592],[7.2019115,46.3954703],[7.2037459,46.3972084],[7.2045366,46.4004125],[7.2077898,46.4029777],[7.2069421,46.4083834],[7.2084517,46.4138495],[7.2098734,46.4162765],[7.2067756,46.419297],[7.2063561,46.4212416],[7.2036185,46.4220651],[7.2003986,46.4259701],[7.199156,46.4292597],[7.1928233,46.4337588],[7.1925475,46.4352208],[7.1949568,46.4406126],[7.1987577,46.4401534],[7.2005132,46.4407991],[7.2051532,46.4391434],[7.2131424,46.4395041],[7.2188718,46.441373],[7.2225753,46.4420081],[7.2251545,46.4442762],[7.2270354,46.4494766],[7.2259786,46.4516471],[7.2323341,46.4539369],[7.2263691,46.4574702],[7.2288975,46.4589201],[7.2298217,46.4616034],[7.2289064,46.4623331],[7.230865,46.4665242],[7.2273151,46.4724222],[7.2249853,46.4774797],[7.2241725,46.4868767],[7.2361942,46.4880272],[7.2360168,46.4913316],[7.2343766,46.4940729],[7.2410267,46.4968705],[7.2425158,46.4996293],[7.2446353,46.5012709],[7.2450425,46.5053219],[7.2465777,46.5061812],[7.2464185,46.5085315],[7.2487349,46.5128733],[7.2474165,46.5145195],[7.2489739,46.5172385],[7.2491896,46.5211263],[7.2479584,46.5223028],[7.247924,46.5255676],[7.2466083,46.5291956],[7.2468249,46.5309539],[7.2447387,46.5331887],[7.2460322,46.5374655],[7.2446555,46.5399769],[7.2426924,46.5411806],[7.2389007,46.5455029],[7.2371593,46.5463538],[7.2370801,46.5537934],[7.2404746,46.5542381],[7.2470526,46.5562285],[7.2550859,46.559885],[7.258599,46.5622925],[7.2638506,46.5675155],[7.2666571,46.5715622],[7.2712207,46.5764582],[7.2813586,46.5841108],[7.283671,46.5837822],[7.2905772,46.5811354],[7.29829,46.5792091],[7.3035488,46.5797794],[7.3080479,46.5813188],[7.3108019,46.5854281],[7.3125398,46.5891708],[7.3151352,46.5903985],[7.3207037,46.5918347],[7.3147859,46.6004192],[7.3162011,46.6093714],[7.3182556,46.6161496],[7.3177989,46.6185575],[7.3121255,46.6216998],[7.3124688,46.6304769],[7.3132658,46.6366248],[7.3207093,46.6368577],[7.3268434,46.638735],[7.3297497,46.6417064],[7.3278728,46.6461573],[7.3209966,46.6546511],[7.3234514,46.6552564],[7.3291357,46.6545874],[7.3307936,46.6552007],[7.3340344,46.654709],[7.3402384,46.6554972],[7.3454905,46.6553037],[7.3475585,46.6530745],[7.3497415,46.6522217],[7.3503087,46.6488938],[7.3513822,46.6474553],[7.3545576,46.6466931],[7.3558006,46.6453267],[7.3552834,46.641926],[7.3576373,46.6399487],[7.3587672,46.6441774],[7.3620941,46.6468334],[7.3622885,46.647913],[7.3660751,46.6489769],[7.3774703,46.6563601],[7.3693322,46.6556358],[7.3718706,46.6628337],[7.3712162,46.6637508],[7.3725181,46.6675747],[7.3710783,46.6694179],[7.3738184,46.6728379],[7.3764948,46.6750253],[7.3730641,46.6803936],[7.3777658,46.6835717],[7.375867,46.6864491],[7.3759962,46.6877985],[7.3791309,46.6900671],[7.3769317,46.6927196],[7.3739647,46.6922052],[7.3686041,46.6926517],[7.3649011,46.6950511],[7.3626071,46.6992775],[7.3597979,46.6980162],[7.3467219,46.6988608],[7.3460367,46.7019007],[7.349391,46.7055465],[7.3503664,46.7087407],[7.3502055,46.7111873],[7.3482674,46.712715],[7.3423805,46.7136997],[7.3406524,46.7146427],[7.3375142,46.7142801],[7.331758,46.7151564],[7.3292968,46.7163234],[7.3101056,46.7181473],[7.3078452,46.7171732],[7.3000233,46.7224712],[7.2970957,46.7264976],[7.2963674,46.729798],[7.2968491,46.7356457],[7.298342,46.7401273],[7.3017613,46.7435677],[7.3041733,46.7471058],[7.304859,46.750255],[7.3033511,46.7513956],[7.3031553,46.7561596],[7.3035949,46.7591894],[7.2988063,46.7651338],[7.2959264,46.7654692],[7.2931934,46.7682613],[7.2930678,46.7713625],[7.2912843,46.7733408],[7.2953152,46.7753724],[7.2963903,46.7772857],[7.3008113,46.7790541],[7.3011313,46.7813434],[7.3044728,46.783205],[7.3020717,46.7863822],[7.303509,46.78887],[7.3015928,46.7928272],[7.3048374,46.7955379],[7.3073182,46.7987162],[7.3079269,46.8015684],[7.3091681,46.8029192],[7.3090323,46.80488],[7.3101779,46.8079128],[7.3174618,46.8138577],[7.3202765,46.8148952],[7.3190008,46.8170077],[7.3207236,46.8201129],[7.32089,46.8218942],[7.3198133,46.8251515],[7.3202528,46.8267363],[7.325484,46.8279032],[7.3302023,46.8296789],[7.331226,46.831767],[7.3293402,46.8339439],[7.3297467,46.8349153],[7.324211,46.8385585],[7.3233281,46.8404104],[7.3193402,46.8418128],[7.3178392,46.8429681],[7.3132421,46.8441452],[7.3075476,46.8470378],[7.3061266,46.8499905],[7.3021525,46.852036],[7.3094558,46.8549781],[7.3120724,46.8555718],[7.3125783,46.8607273],[7.3164082,46.8625929],[7.3173922,46.860601],[7.3208715,46.8615405],[7.3234617,46.8609523],[7.3300598,46.8582015],[7.3279816,46.8563288],[7.3257565,46.8568061],[7.3230042,46.8547648],[7.3266582,46.8514712],[7.3304466,46.8510953],[7.3345021,46.851608],[7.3371545,46.8496079],[7.3452119,46.8523862],[7.3472641,46.8537531],[7.3493384,46.8533121],[7.3516735,46.8550231],[7.3544358,46.8587528],[7.3577168,46.8606534],[7.359247,46.8631069],[7.3579426,46.8651254],[7.3583839,46.8687956],[7.3564481,46.870581],[7.3538601,46.8712946],[7.3523912,46.876212],[7.3535035,46.8863132],[7.3515126,46.8881997],[7.3469682,46.8897019],[7.3401924,46.890812],[7.3275449,46.8934955],[7.3239111,46.8936259],[7.3123405,46.8917633],[7.307436,46.8916005],[7.3018117,46.8923572],[7.2952965,46.8938564],[7.2893795,46.89377],[7.2863904,46.8926939],[7.2817617,46.8895967],[7.2786468,46.8899821],[7.271776,46.8926708],[7.2653943,46.8940735],[7.2622234,46.8966143],[7.2581501,46.8981551],[7.2519579,46.8987235],[7.2443338,46.9003731],[7.2431438,46.8979159],[7.2363275,46.8980941],[7.2320259,46.9002929],[7.2308956,46.9024001],[7.2286417,46.9036097],[7.2240773,46.9029895],[7.2220855,46.9018254],[7.2175492,46.8973453],[7.2124414,46.9017281],[7.2077587,46.9026367],[7.2039269,46.9019778],[7.1999514,46.9024585],[7.1968748,46.9009531],[7.195316,46.8990045],[7.1896762,46.9003018],[7.1891331,46.9010375],[7.1954986,46.9031344],[7.1987931,46.9037579],[7.2043307,46.9063089],[7.2052725,46.9082575],[7.2078089,46.9091332],[7.2059904,46.9126587],[7.2069902,46.9161722],[7.2055892,46.9199568],[7.2068291,46.9219849],[7.2069194,46.9248056],[7.2111007,46.9252664],[7.2113458,46.9278734],[7.2126837,46.9284531],[7.2042242,46.9374215],[7.2035892,46.940537],[7.2095062,46.9418763],[7.2101117,46.947808],[7.2077586,46.9489934],[7.2088547,46.9543464],[7.2110227,46.9565229],[7.2083052,46.9578068],[7.206291,46.9598408],[7.2000053,46.959084],[7.1976382,46.9606522],[7.1945924,46.9613514],[7.1955169,46.9641555],[7.1992976,46.963797],[7.2064628,46.9641261],[7.2074529,46.9675116],[7.2142222,46.9669235],[7.2146612,46.9691495],[7.2168635,46.9727138],[7.2224681,46.9745377],[7.2216348,46.9755563],[7.2282084,46.9783563],[7.2317418,46.9821562],[7.2356198,46.9846009],[7.2348632,46.9867543],[7.2291654,46.9906792],[7.2259442,46.9924021],[7.2222224,46.9931596],[7.2264228,46.9969712],[7.2257486,46.9991514],[7.2232338,46.9992695],[7.2174409,47.0062758],[7.2155616,47.0052575],[7.2129896,47.0068036],[7.2102439,47.0039452],[7.2050905,47.006263],[7.2006743,47.0016573],[7.1963072,47.0021287],[7.1966728,47.0001363],[7.1947337,46.9998185],[7.1560802,46.9860329],[7.1541385,46.986498],[7.1489197,46.9852754],[7.092301,46.9761236],[7.0899211,46.9766396],[7.0860528,46.9762862],[7.0577811,46.976872],[7.0516755,46.9775714],[7.0401636,46.9798427],[7.0255547,47.0058158],[7.0309515,47.0109725],[7.0332848,47.0158866],[7.0336546,47.0177108],[7.0331877,47.0293201],[7.0343414,47.031674],[7.0403585,47.0369646],[7.0505819,47.042309],[7.0539798,47.0434314],[7.0650638,47.0448985],[7.0727062,47.0493225],[7.0781835,47.0519296],[7.087449,47.0594325],[7.0867445,47.0615047],[7.0843143,47.0640589],[7.0817977,47.0650479],[7.0801998,47.0687997],[7.080832,47.0713289],[7.0801318,47.0737435],[7.0770038,47.0759549],[7.087054,47.0815465],[7.0868208,47.0856941],[7.075677,47.0962588],[7.0632519,47.099543],[7.0571402,47.0996796],[7.0492841,47.1049831],[7.0411661,47.1083644],[7.0406076,47.1090009],[7.0287285,47.1036698],[7.0235042,47.1121997],[7.0276407,47.1157679],[7.0313793,47.1196322],[7.0399631,47.1246461],[7.0382355,47.1264354],[7.0310741,47.1273109],[7.0285261,47.1269138],[7.0256185,47.124129],[7.0158791,47.1239726],[7.0106049,47.1232203],[7.007756,47.1242156],[7.0061285,47.1229084],[7.0016941,47.1216348],[6.99784,47.1194016],[6.988607,47.117321],[6.969607,47.1145966],[6.9603183,47.113932],[6.9534354,47.1126859],[6.9483349,47.1124143],[6.9399049,47.1091531],[6.9363444,47.108725],[6.9298273,47.1125926],[6.9265867,47.109146],[6.9214689,47.1063782],[6.9157266,47.1037803],[6.9087175,47.1016274],[6.8954957,47.0964968],[6.8881365,47.092836],[6.8829486,47.0908394],[6.8790459,47.0898526],[6.8751796,47.0881281],[6.8668643,47.0851144],[6.8683816,47.0922842],[6.8717911,47.102857],[6.8810003,47.1083874],[6.8849689,47.1196378],[6.888803,47.1311258],[6.884864,47.1359297],[6.8812866,47.1395697],[6.880128,47.1418143],[6.8721904,47.1512816],[6.8697431,47.1548008],[6.861516,47.1655892],[6.8633205,47.1684387],[6.8719913,47.1741018],[6.8769069,47.1608592],[6.8799083,47.1584383],[6.8796279,47.1542611],[6.8824835,47.1531484],[6.8837139,47.1503973],[6.887622,47.1514084],[6.8923883,47.1537968],[6.8957729,47.1542012],[6.9060894,47.1571532],[6.9097638,47.1593884],[6.9138764,47.1626737],[6.9298838,47.1693529],[6.9382004,47.175153],[6.9401567,47.1816279],[6.9414289,47.1845235],[6.9521605,47.1873444],[6.9526293,47.1857001],[6.9554144,47.183886],[6.9544324,47.1824868],[6.956114,47.1806492],[6.9603909,47.1820398],[6.970516,47.1813295],[6.977029,47.1749333],[6.9807662,47.1742802],[6.9855672,47.1765534],[6.9885582,47.180129],[6.9897501,47.1829864],[6.9945358,47.187809],[6.9964251,47.1933278],[7.0091779,47.1938515],[7.0234483,47.1956998],[7.0302879,47.2022764],[7.0367817,47.2133155],[7.0442823,47.2218465],[7.0436674,47.2230174],[7.0473454,47.2270529],[7.0551519,47.2293186],[7.0586698,47.2311839],[7.0562899,47.2378124],[7.0572239,47.2410319],[7.0616484,47.2432481],[7.0685498,47.244075],[7.0795219,47.2477588],[7.079596,47.2434018],[7.0818396,47.2434093],[7.0851819,47.2453775],[7.0888346,47.2415783],[7.0857411,47.2399777],[7.0884297,47.2370031],[7.0962407,47.237045],[7.0964401,47.238604],[7.0998121,47.2415687],[7.1033551,47.2431206],[7.1114843,47.2419018],[7.1216571,47.2443312],[7.1274785,47.2449907],[7.1338676,47.2444067],[7.1397549,47.2431775],[7.140213,47.2441791],[7.1437912,47.2445568],[7.1510458,47.2465575],[7.1535517,47.2476528],[7.1557833,47.2475406],[7.1532394,47.2509831],[7.1492007,47.2538523],[7.1514658,47.2555056],[7.1482373,47.2562418],[7.1427657,47.2557428],[7.1431017,47.2594775],[7.1463836,47.259961],[7.1474477,47.2616467],[7.1456486,47.2653157],[7.1487334,47.2690362],[7.1555493,47.2714475],[7.1604077,47.2720563],[7.1686737,47.2747245],[7.1679779,47.2797778],[7.1682048,47.2826673],[7.170234,47.2839457],[7.1690122,47.2859881],[7.1652035,47.2863518],[7.1647256,47.2889551],[7.1685086,47.290708],[7.1680985,47.2916431],[7.1633839,47.293082],[7.1637832,47.2940525],[7.1688194,47.294496],[7.1741674,47.2940465],[7.1763886,47.2945009],[7.1853736,47.2952215],[7.1877668,47.2947881],[7.1945608,47.2958103],[7.2059944,47.2954654],[7.2091748,47.294704],[7.2062062,47.291983],[7.2101827,47.288834],[7.2148714,47.2899708],[7.2234501,47.2881389],[7.2324775,47.2881859],[7.2394986,47.2857315],[7.2426113,47.2852229],[7.2529301,47.2851728],[7.2582594,47.2855946],[7.2583031,47.2867815],[7.2629802,47.2870844],[7.2679051,47.2858056],[7.2777859,47.2841647],[7.284212,47.2850777],[7.2861749,47.2858927],[7.2917319,47.2858005],[7.3016665,47.2875255],[7.3069118,47.2879165],[7.3105901,47.2892767],[7.3169619,47.2903781],[7.322653,47.2955215],[7.331709,47.2996346],[7.3325378,47.301634],[7.337508,47.3059089],[7.3457308,47.3053208],[7.3603204,47.3086478],[7.3651425,47.3092991],[7.3746341,47.3135123],[7.3786264,47.3149909],[7.3803957,47.3140446],[7.3905323,47.3130993],[7.3933327,47.3135093],[7.4058427,47.3126308],[7.4117172,47.3133141],[7.4130067,47.309982],[7.4198431,47.3086437],[7.4216885,47.3070626],[7.425902,47.3077696],[7.4288017,47.3072405],[7.4417798,47.3086787],[7.4480375,47.3083274],[7.4595272,47.3066444],[7.4674827,47.3073194],[7.4760439,47.307074],[7.4779987,47.3051965],[7.4816576,47.3042003],[7.4862054,47.3021609],[7.4902704,47.3020163],[7.4949094,47.3027309],[7.4960402,47.3021174],[7.5028909,47.3051981],[7.5099252,47.3073127],[7.5148783,47.3096052],[7.5220131,47.3136861],[7.5299635,47.316315],[7.5506352,47.3198537],[7.5583388,47.3223634],[7.554159,47.3232509],[7.5476098,47.3215773],[7.531473,47.3211007],[7.5277559,47.3226788],[7.5303402,47.327553],[7.5335028,47.3312332],[7.5344709,47.334546],[7.5452729,47.3395917],[7.5499572,47.3408572],[7.5499716,47.342943],[7.552201,47.3453097],[7.556477,47.3438546],[7.5566421,47.342089],[7.5598007,47.3426626],[7.5626811,47.3405068],[7.5627181,47.3394469],[7.5721467,47.3289504],[7.5716312,47.3271275],[7.5687248,47.3243436],[7.5617006,47.3214271],[7.5583409,47.3223629],[7.5483333,47.3163566],[7.5469398,47.3060819],[7.5390687,47.3019794],[7.5395303,47.2986075],[7.5369953,47.2965805],[7.5328638,47.294534],[7.5245845,47.293751],[7.5208988,47.2939757],[7.5137539,47.2924538],[7.5059474,47.2900524],[7.5054317,47.2908596],[7.4983326,47.2883672],[7.4953716,47.2878723],[7.4943421,47.2863524],[7.487178,47.2838363],[7.4853399,47.2842593],[7.478868,47.2791149],[7.4758693,47.276313],[7.471615,47.2694073],[7.4694378,47.2669194],[7.4658424,47.2646513],[7.451912,47.2633871],[7.4510421,47.2629673],[7.4410011,47.2629161],[7.4374583,47.2613669],[7.4327405,47.2585624],[7.4267907,47.2560801],[7.4187823,47.2545527],[7.4173645,47.2537956],[7.4161809,47.2505932],[7.4181455,47.2453772],[7.4208731,47.2428911],[7.4154818,47.2402115],[7.4118205,47.240555],[7.4079413,47.2391304],[7.4016898,47.234893],[7.3980836,47.2334832],[7.3905993,47.2312279],[7.3802967,47.2287976],[7.3781865,47.227638],[7.3744927,47.2268496],[7.3705162,47.2238973],[7.3622333,47.2196077],[7.3593209,47.2195949],[7.3572381,47.2210457],[7.3463306,47.2191602],[7.3404127,47.2175697],[7.3419639,47.2123969],[7.3448221,47.2072111],[7.3468299,47.2072194],[7.3544799,47.1915316],[7.3628628,47.1934434],[7.3654609,47.1944525],[7.368195,47.1907646],[7.3718619,47.1899982],[7.3751403,47.1885685],[7.3795269,47.1850956],[7.3835137,47.1803011],[7.3896893,47.1703815],[7.391911,47.1662739],[7.3908345,47.1655737],[7.3846699,47.1661022],[7.3821749,47.1651186],[7.3817722,47.163635],[7.3836658,47.1603484],[7.3873166,47.1601183],[7.3920809,47.161104],[7.3931291,47.1603553],[7.400937,47.162848],[7.4085668,47.162092],[7.4118135,47.1624212],[7.4159506,47.1653769],[7.416681,47.1690649],[7.4183948,47.1711538],[7.4218107,47.1722985],[7.4260513,47.1729746],[7.4300741,47.1745806],[7.4315843,47.1760513],[7.4317949,47.1787201],[7.4309105,47.182451],[7.4332849,47.1847269],[7.4360292,47.1852936],[7.4384832,47.1843492],[7.4399213,47.1806344],[7.4432457,47.1792492],[7.4476258,47.1810839],[7.4495654,47.1828827],[7.4497374,47.1851493],[7.4484122,47.1878772],[7.4488131,47.1893922],[7.4557442,47.1888286],[7.4665642,47.1901067],[7.4757226,47.1906485],[7.4765815,47.188091],[7.4736088,47.1861813],[7.474998,47.1830501],[7.4708635,47.1814131],[7.4781394,47.177451],[7.4804964,47.171738],[7.4863128,47.1730609],[7.489004,47.172672],[7.493088,47.1711303],[7.495682,47.1714713],[7.4970383,47.1700873],[7.4901922,47.1657643],[7.4926881,47.1632662],[7.4884908,47.1606649],[7.4847142,47.1596179],[7.4820528,47.1581648],[7.4786239,47.1544539],[7.4739107,47.1534525],[7.4728074,47.1525609],[7.4676327,47.1512813],[7.463018,47.1536901],[7.459929,47.1533455],[7.4588151,47.1549101],[7.4546231,47.1563313],[7.447783,47.1550805],[7.4399504,47.1504963],[7.4411609,47.1458827],[7.439613,47.1439888],[7.434499,47.1437441],[7.4305343,47.1428566],[7.42663,47.1410991],[7.4266785,47.1384713],[7.4217922,47.1358605],[7.4237505,47.1349853],[7.4264596,47.1313407],[7.4297089,47.1316391],[7.4312159,47.1290907],[7.4354029,47.1312749],[7.4363486,47.1295587],[7.4352115,47.1275058],[7.4332593,47.1261735],[7.4396197,47.1245602],[7.4373704,47.1227217],[7.4347333,47.1238554],[7.4290259,47.1243699],[7.4247066,47.1220097],[7.4203764,47.1211481],[7.4197891,47.1218269],[7.4095534,47.1202148],[7.4067048,47.118449],[7.4037482,47.117676],[7.3949938,47.1216956],[7.3899707,47.1195181],[7.3889317,47.1234086],[7.3867427,47.1258974],[7.3836759,47.1233293],[7.3808474,47.1227301],[7.3789246,47.1240936],[7.3755428,47.1233259],[7.3740052,47.1218159],[7.3714047,47.1225375],[7.3704914,47.1209312],[7.3719696,47.1173415],[7.3704402,47.1153804],[7.3714611,47.113763],[7.3736256,47.1128616],[7.3758825,47.1083674],[7.3792353,47.1062059],[7.3791901,47.1041403],[7.3813394,47.1011515],[7.3826313,47.0967081],[7.3843339,47.0954811],[7.3863594,47.0961738],[7.3894456,47.0951328],[7.390052,47.0922963],[7.3994247,47.0938623],[7.4016132,47.0937631],[7.4088151,47.0947959],[7.4121999,47.0956626],[7.4202728,47.0996659],[7.4232609,47.0974598],[7.4340002,47.1005003],[7.4374274,47.0942057],[7.4350411,47.0936546],[7.4357506,47.0919095],[7.4336671,47.0913396],[7.4328783,47.0879769],[7.4343502,47.0861609],[7.4354156,47.0801664],[7.4404768,47.0758387],[7.4404479,47.074504],[7.4458594,47.0743823],[7.4539949,47.075974],[7.4580256,47.0775921],[7.4644676,47.0789498],[7.4661817,47.0785633],[7.4683954,47.0797884],[7.4710497,47.0838268],[7.4729157,47.0846176],[7.4750778,47.0870833],[7.4737661,47.0893576],[7.4708228,47.090467],[7.4642373,47.0990465],[7.4652891,47.099324],[7.4618084,47.1034038],[7.4627973,47.1036708],[7.4613252,47.1082327],[7.4923166,47.1170844],[7.4986306,47.1214414],[7.5046675,47.1227176],[7.5097234,47.1255457],[7.5137217,47.1299111],[7.5137037,47.1331815],[7.5159306,47.1369055],[7.5191363,47.1404298],[7.5229939,47.1427227],[7.5233685,47.1457469],[7.5255158,47.1476508],[7.5297508,47.1487369],[7.5295848,47.1507194],[7.5243081,47.1535941],[7.5218915,47.1584368],[7.5205567,47.1597696],[7.5260422,47.1610568],[7.5257686,47.162205],[7.5313916,47.1629956],[7.5345021,47.1641726],[7.5352305,47.162464],[7.5404913,47.1635566],[7.5443322,47.1603645],[7.5488327,47.1621216],[7.5500423,47.1636249],[7.5557748,47.1660245],[7.5578351,47.1680286],[7.5634674,47.1683541],[7.5654986,47.1645491],[7.5673218,47.1631872],[7.5696522,47.1628906],[7.5749088,47.1644481],[7.579669,47.1600247],[7.5820865,47.1582822],[7.5861404,47.1475453],[7.5883536,47.1508857],[7.5924402,47.1526756],[7.5978928,47.151604],[7.6078494,47.1528491],[7.6145401,47.1545316],[7.6160825,47.1563051],[7.6219559,47.1530597],[7.6245829,47.1524568],[7.6290846,47.152387],[7.6348345,47.1533082],[7.6355992,47.1520956],[7.639956,47.1535582],[7.6407779,47.151495],[7.6450349,47.1489698],[7.6505687,47.1497998],[7.6526018,47.1515016],[7.6512652,47.1574731],[7.6535408,47.1607746],[7.6517899,47.1615997],[7.6543167,47.1632667],[7.6600808,47.1684026],[7.6610089,47.167657],[7.6656372,47.1683698],[7.6728612,47.1683945],[7.6738049,47.1742156],[7.6759426,47.1757616],[7.6778049,47.1826825],[7.6756733,47.183709],[7.6711002,47.1845216],[7.6716178,47.1867264],[7.6737019,47.1879074],[7.6746292,47.190899],[7.666668,47.1958895],[7.6658133,47.1980294],[7.66274,47.1986551],[7.6623299,47.2009599],[7.6578182,47.2006916],[7.6472258,47.2017823],[7.6512213,47.2067032],[7.6496129,47.2099698],[7.6460548,47.2147095],[7.6466498,47.2175756],[7.6447511,47.2204577],[7.6410443,47.2211307],[7.6391775,47.2233853],[7.6439455,47.2254457],[7.6405558,47.2297944],[7.6352828,47.2272327],[7.6339366,47.228635],[7.6308902,47.2266932],[7.6295132,47.2282683],[7.6261802,47.2263143],[7.6235138,47.2293614],[7.6191101,47.2290508],[7.6183203,47.2314228],[7.614885,47.2342088],[7.6139651,47.2365002],[7.6095046,47.2395446],[7.6063844,47.2390499],[7.6045852,47.2426722],[7.6024097,47.2420856],[7.5987695,47.2452054],[7.5959384,47.245569],[7.5977233,47.2541331],[7.5961303,47.2607446],[7.5936981,47.2662199],[7.586923,47.2697004],[7.5801066,47.2763483],[7.6004814,47.2793432],[7.6142037,47.2811515],[7.6205592,47.2815209],[7.6482742,47.2819898],[7.6543394,47.2837488],[7.6605042,47.2866515],[7.6662096,47.2876597],[7.6687842,47.288779],[7.6705179,47.2875712],[7.6771779,47.2891121],[7.6798179,47.2901232],[7.6828977,47.2931127],[7.6849607,47.2934924],[7.688558,47.2904455],[7.6976882,47.2872147],[7.70085,47.2865455],[7.703904,47.2837585],[7.7029643,47.2830176],[7.7055637,47.2804615],[7.7089609,47.279428],[7.7081296,47.2783716],[7.7127072,47.2738279],[7.7156145,47.2764014],[7.7251362,47.2693109],[7.724261,47.2678539],[7.7250435,47.2660064],[7.7326672,47.2591133],[7.7383158,47.2598994],[7.7446614,47.2570231],[7.7492873,47.2587627],[7.7532107,47.2587528],[7.7568187,47.258095],[7.7587946,47.2592217],[7.7606824,47.2625659],[7.7648354,47.2666866],[7.7746009,47.267869],[7.775806,47.2614387],[7.7845206,47.2572636],[7.7876794,47.2579184],[7.7937778,47.2614823],[7.7980222,47.266078],[7.8006725,47.2677742],[7.8045776,47.2684015],[7.8053487,47.265035],[7.8081576,47.262888],[7.8147702,47.2613097],[7.818189,47.262144],[7.820032,47.2634188],[7.8251069,47.2655723],[7.82736,47.2618461],[7.8303841,47.2592954],[7.8288959,47.2581902],[7.8298113,47.2557215],[7.8260196,47.2518139],[7.8280651,47.2498516],[7.8261182,47.2468512],[7.8275822,47.2449034],[7.8305806,47.2426146],[7.8317378,47.2403373],[7.8344704,47.2375534],[7.8386647,47.2348181],[7.8373812,47.2324245],[7.8364775,47.2276886],[7.8377256,47.2228478],[7.839921,47.222698],[7.843723,47.2198345],[7.8446564,47.2176521],[7.846829,47.2173103],[7.846667,47.2149743],[7.8520444,47.2066042],[7.8544477,47.2044368],[7.8563591,47.2006691],[7.8594816,47.1990757],[7.8605526,47.1961078],[7.8594916,47.1933276],[7.8613004,47.1914901],[7.865311,47.1894999],[7.8691589,47.1860289],[7.8758709,47.183219],[7.8768464,47.1808863],[7.8795261,47.1790498],[7.8806605,47.1748044],[7.8827176,47.1739438],[7.8828809,47.1721182],[7.8792516,47.1694716],[7.8758213,47.1634975],[7.8757739,47.1590122],[7.8774473,47.1535585],[7.8801756,47.1491415],[7.8832815,47.146257],[7.8874139,47.1436363],[7.8900972,47.140725],[7.8894344,47.1390171],[7.8905789,47.1376261],[7.8884733,47.1344372],[7.8897968,47.1320362],[7.8864922,47.1316861],[7.8863473,47.1288911],[7.8845678,47.1275534],[7.8701961,47.1228269],[7.8671131,47.119504],[7.8670538,47.1166821],[7.8693709,47.1166789],[7.8694188,47.1135325],[7.8681449,47.1119748],[7.8732403,47.1105436],[7.8749484,47.1094362],[7.8729824,47.1053719],[7.8761896,47.1016573],[7.8748077,47.0988629],[7.8759463,47.0971776],[7.8795077,47.0955217],[7.8779016,47.092947],[7.8798161,47.0918981],[7.8807158,47.0886017],[7.8804652,47.0844989],[7.8782656,47.0819792],[7.879338,47.0802901],[7.8775118,47.0753586],[7.8761156,47.0734516],[7.8772772,47.0715873],[7.8737646,47.0667355],[7.8720216,47.065347],[7.8711583,47.062524],[7.8739015,47.0617056],[7.8695483,47.0586556],[7.8660156,47.0534194],[7.8681182,47.0518438],[7.8664419,47.049792],[7.8709066,47.0451639],[7.8724573,47.0447568],[7.8747581,47.0409611],[7.8815896,47.0405926],[7.883942,47.0371722],[7.8830598,47.0352306],[7.8848882,47.0327408],[7.8891191,47.0308224],[7.8917861,47.0304954],[7.893861,47.0279209],[7.8932812,47.0248712],[7.8947482,47.0221656],[7.8968237,47.0214234],[7.900535,47.0179775],[7.9001094,47.0164725],[7.8969262,47.0130375],[7.8998899,47.0076474],[7.9018248,47.0062527],[7.9073411,47.0068545],[7.9131543,47.0085803],[7.9162356,47.0085172],[7.9220101,47.0105561],[7.9250637,47.0103736],[7.9268386,47.0070649],[7.9293143,47.0053951],[7.9326629,47.0042489],[7.9395184,47.0046637],[7.9424638,47.0053314],[7.9494336,47.005834],[7.9501629,47.0067653],[7.9538023,47.0051565],[7.9562036,47.003424],[7.953958,47.0020087],[7.9520255,46.996586],[7.9483769,46.9940675],[7.9483759,46.9918668],[7.9500808,46.9883089],[7.9497323,46.9871713],[7.9521818,46.9829603],[7.9524282,46.9812583],[7.9508493,46.9800796],[7.9472932,46.9792646],[7.9439092,46.9771833],[7.9446598,46.9747903],[7.9447735,46.9699978],[7.945354,46.9678445],[7.9400964,46.9647445],[7.93617,46.9644065],[7.9322377,46.9616508],[7.9315261,46.9601837],[7.932566,46.9573768],[7.9315076,46.955851],[7.9323153,46.9537177],[7.9316507,46.950514],[7.9290792,46.9481861],[7.9260273,46.9483379],[7.9216764,46.9467339],[7.9208579,46.9418185],[7.918022,46.9392245],[7.9152587,46.9346375],[7.9125112,46.933087],[7.9079254,46.9326868],[7.9034189,46.9335033],[7.9023825,46.9343561],[7.8974979,46.9346379],[7.8935537,46.9324769],[7.8898551,46.931583],[7.8854949,46.9298133],[7.8769266,46.9273754],[7.8726582,46.9242933],[7.8705131,46.9209622],[7.8689697,46.9169372],[7.8670743,46.9147927],[7.8727833,46.9129545],[7.8746758,46.9113161],[7.8785508,46.9113263],[7.8804301,46.9105324],[7.8815687,46.907955],[7.8831168,46.9066361],[7.8826601,46.9035355],[7.8802201,46.9017675],[7.879759,46.9003907],[7.8753279,46.8957624],[7.87339,46.8929944],[7.8730479,46.8896749],[7.8706893,46.8895847],[7.8693697,46.8877835],[7.8658363,46.8865539],[7.862547,46.886608],[7.8585989,46.8852943],[7.8566122,46.8834882],[7.8561587,46.8808528],[7.8578264,46.8770902],[7.8572623,46.871459],[7.8598338,46.8703821],[7.864264,46.8695593],[7.8646831,46.8662856],[7.8694916,46.8643496],[7.867292,46.8586814],[7.8682969,46.8539146],[7.8676102,46.8503665],[7.870111,46.8475751],[7.870442,46.8438591],[7.8727172,46.8426148],[7.8770771,46.8370701],[7.8955578,46.8310065],[7.9043653,46.8275653],[7.9223894,46.8200081],[7.9287598,46.8164679],[7.9417072,46.8080123],[7.946745,46.8052516],[7.9508427,46.799852],[7.951843,46.7976365],[7.9538365,46.7957775],[7.9524439,46.79315],[7.9547276,46.7910817],[7.9578957,46.7894177],[7.9608836,46.7887387],[7.9629261,46.7870378],[7.9651386,46.7869887],[7.9687023,46.7851289],[7.9695054,46.7824716],[7.9734773,46.778366],[7.9757124,46.7773076],[7.9819743,46.7764187],[7.9845705,46.7749903],[7.9889136,46.776455],[7.9942776,46.779034],[7.9949565,46.7811996],[7.9968835,46.7821718],[8.0048668,46.7832136],[8.011564,46.7859313],[8.0176777,46.7879228],[8.026476,46.7897828],[8.0314848,46.7901553],[8.0353334,46.7893737],[8.0389843,46.7875925],[8.0469368,46.7871155]],[[7.2344584,46.9360069],[7.2347728,46.9382743],[7.2309387,46.9391504],[7.2282003,46.9388105],[7.2293836,46.9368953],[7.2261195,46.9355742],[7.223061,46.9351619],[7.217402,46.9330727],[7.215366,46.9307478],[7.2168517,46.9267939],[7.2185411,46.9243414],[7.2255002,46.9272428],[7.2284638,46.927739],[7.2308033,46.9295023],[7.2341999,46.9293882],[7.2344584,46.9360069]],[[7.6925152,47.1644816],[7.6878955,47.1652523],[7.6850564,47.1650909],[7.6795367,47.1631491],[7.6750944,47.1564578],[7.6752655,47.1532389],[7.6801003,47.1543248],[7.6826182,47.154144],[7.6901531,47.1525567],[7.6938216,47.1581608],[7.6956577,47.157507],[7.7007985,47.1617746],[7.6944958,47.1619731],[7.6925152,47.1644816]]]]},"properties":{"ID_0":223,"ISO":"CH-BE","NAME_0":"Switzerland","ID_1":6,"NAME_1":"Bern","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Berna|Berne"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.4255136,47.5679545],[8.4235642,47.5664354],[8.4187365,47.5651625],[8.4168639,47.5609338],[8.4176749,47.558455],[8.4163773,47.5579054],[8.4144364,47.5538921],[8.414525,47.5521612],[8.4169263,47.550269],[8.4150518,47.5483909],[8.4173922,47.5458861],[8.412698,47.5462493],[8.4103996,47.5454876],[8.4073242,47.5425694],[8.4050921,47.5418561],[8.4060471,47.5403528],[8.4023807,47.5373838],[8.4044161,47.5343156],[8.3948426,47.5314814],[8.395717,47.5283161],[8.3920639,47.5253865],[8.3898145,47.52734],[8.3866398,47.5288723],[8.383521,47.5276857],[8.3813868,47.5249128],[8.3804237,47.5199572],[8.3803598,47.5159718],[8.3787882,47.5136668],[8.3746509,47.5121829],[8.3736222,47.5110246],[8.3689582,47.5121826],[8.3681879,47.5111886],[8.3636951,47.5109067],[8.3612212,47.5101016],[8.3616383,47.5078249],[8.3590389,47.5060784],[8.3578328,47.5024676],[8.3621486,47.4995601],[8.3584307,47.4974812],[8.360839,47.495606],[8.3626554,47.4904339],[8.36199,47.4857452],[8.363263,47.4808564],[8.3732537,47.4814695],[8.3741864,47.4804561],[8.3735847,47.474859],[8.3753137,47.4711383],[8.3725953,47.4702775],[8.3677742,47.4703514],[8.3678285,47.4681845],[8.3656733,47.4662147],[8.3694382,47.4653353],[8.3695234,47.4634003],[8.3721382,47.4610682],[8.3728316,47.45918],[8.3789876,47.459174],[8.3803021,47.4561952],[8.3827218,47.4563269],[8.3844146,47.4549144],[8.3866522,47.449729],[8.38175,47.4486977],[8.3811138,47.4462254],[8.3819501,47.440491],[8.3837337,47.4399815],[8.3850265,47.4359428],[8.3828582,47.4329057],[8.3770848,47.4338306],[8.3746527,47.432249],[8.3750683,47.430666],[8.378114,47.429219],[8.3832521,47.4280954],[8.3876208,47.4279591],[8.3879424,47.4267576],[8.3918573,47.422804],[8.3914412,47.4197719],[8.3875383,47.4163596],[8.3837913,47.4180257],[8.3817488,47.4162654],[8.3852456,47.4144205],[8.3819813,47.411571],[8.38156,47.4084932],[8.384611,47.4062167],[8.3819943,47.4035191],[8.3792425,47.4024083],[8.3761686,47.404804],[8.3690768,47.4033153],[8.3674265,47.400737],[8.3658179,47.4025127],[8.3632783,47.4010042],[8.3663755,47.398824],[8.3688427,47.3992633],[8.374062,47.3990368],[8.3762912,47.400009],[8.379899,47.3996295],[8.3835219,47.3952577],[8.3879758,47.3956359],[8.3897509,47.3946468],[8.3919003,47.3958406],[8.3963418,47.3938204],[8.3949077,47.3901644],[8.3949367,47.3807219],[8.3965509,47.3790613],[8.3963797,47.3770438],[8.3983116,47.3751168],[8.400763,47.3742026],[8.4005457,47.3715189],[8.4029658,47.3699973],[8.4070314,47.3702281],[8.4081907,47.3666517],[8.404928,47.3641007],[8.4071599,47.3598394],[8.4072987,47.3556931],[8.4092717,47.355073],[8.4057674,47.351094],[8.405576,47.3488371],[8.4038608,47.346568],[8.4066734,47.3440261],[8.407309,47.3415768],[8.4105369,47.340225],[8.4137112,47.3380448],[8.416725,47.3338056],[8.4139473,47.3307012],[8.4124178,47.3271276],[8.4152411,47.3262568],[8.4162803,47.324465],[8.4190278,47.3247326],[8.4294278,47.3273604],[8.4316599,47.3269795],[8.4347649,47.3253231],[8.4367157,47.3267494],[8.4420734,47.3274217],[8.4435303,47.3292196],[8.4498424,47.3304915],[8.4509943,47.3336253],[8.4547312,47.3330139],[8.448506,47.3259759],[8.4491594,47.323353],[8.4466582,47.3216115],[8.4457848,47.3199953],[8.4404757,47.3175853],[8.4413115,47.3158296],[8.4359535,47.3141633],[8.4320429,47.3115461],[8.4321865,47.3086723],[8.4292688,47.3072451],[8.4307593,47.3052088],[8.4279482,47.3003437],[8.4215606,47.2977813],[8.4202139,47.2957002],[8.417049,47.2938218],[8.4130639,47.2930028],[8.4070245,47.2924671],[8.4040656,47.2907771],[8.3972187,47.2879044],[8.3941151,47.2901554],[8.3912673,47.2910121],[8.3886355,47.2900282],[8.3911146,47.2874476],[8.3930772,47.2834224],[8.3942407,47.2793933],[8.3962649,47.27688],[8.4011511,47.2736139],[8.402285,47.2704499],[8.400531,47.265757],[8.4009187,47.2641023],[8.4042453,47.2611419],[8.4042605,47.2589781],[8.402627,47.2555472],[8.4036951,47.253558],[8.4076645,47.2507119],[8.4100734,47.2483758],[8.41096,47.2463214],[8.4102381,47.2445569],[8.4072121,47.2415578],[8.4054883,47.2363724],[8.3979379,47.2313499],[8.3950537,47.2268388],[8.3949593,47.2250404],[8.3974393,47.2184203],[8.4005659,47.2156093],[8.4010157,47.2138357],[8.4004241,47.2095093],[8.4025088,47.2006896],[8.4049016,47.1968535],[8.4052377,47.1944985],[8.4016655,47.1899019],[8.4003269,47.185874],[8.4004338,47.1827156],[8.4021701,47.1771473],[8.4031754,47.1764276],[8.4100474,47.1749991],[8.4118783,47.1732645],[8.4149686,47.1655013],[8.4152185,47.1588465],[8.4120214,47.154273],[8.4122764,47.1522649],[8.414154,47.1489195],[8.4148735,47.1453089],[8.4140445,47.1428521],[8.4122057,47.1405668],[8.4088779,47.1385827],[8.4052906,47.1374801],[8.4041957,47.1382291],[8.3981734,47.138031],[8.3959939,47.138992],[8.3934199,47.1385054],[8.3899662,47.1397673],[8.3822014,47.1400021],[8.3801388,47.1392346],[8.3759397,47.1410181],[8.3748203,47.1430509],[8.3663459,47.144808],[8.3621689,47.1460993],[8.3607098,47.1522315],[8.3583539,47.1532873],[8.3581702,47.1567449],[8.3549518,47.1590195],[8.3515505,47.1629595],[8.3475949,47.1645829],[8.3490572,47.1660286],[8.3442827,47.1714995],[8.3441102,47.1730031],[8.3409574,47.1737628],[8.3412038,47.1750948],[8.3385953,47.1784435],[8.3389136,47.1816793],[8.3379236,47.1840078],[8.3382648,47.1886108],[8.3339116,47.1926296],[8.3300245,47.1985246],[8.3301153,47.2023919],[8.3279727,47.2060965],[8.3251996,47.2147297],[8.3194883,47.2156393],[8.3208411,47.2218749],[8.3171314,47.2251145],[8.3157763,47.2294424],[8.3153053,47.2329362],[8.3139494,47.2364276],[8.3146969,47.240137],[8.31172,47.2454847],[8.3049643,47.2524617],[8.301218,47.252272],[8.296021,47.2594143],[8.2946279,47.2660033],[8.297079,47.2689933],[8.300255,47.271484],[8.29479,47.2729782],[8.289662,47.2774613],[8.2853689,47.2799933],[8.2795173,47.2809789],[8.2786331,47.2821229],[8.2743904,47.2808342],[8.2715627,47.2808964],[8.2706757,47.2834771],[8.2653073,47.2825447],[8.2617324,47.2825413],[8.2594748,47.2868885],[8.2587085,47.2871939],[8.2507168,47.286087],[8.2489382,47.2844396],[8.2498223,47.2828383],[8.2486543,47.2811981],[8.2446221,47.2807593],[8.2422241,47.2787211],[8.2426397,47.2762568],[8.2409897,47.2760083],[8.2424133,47.2723076],[8.2346688,47.2728336],[8.2331019,47.273887],[8.2285716,47.2734159],[8.2198427,47.2522519],[8.2124756,47.2497727],[8.2077414,47.2473513],[8.2078584,47.2462412],[8.2044861,47.2426419],[8.2057068,47.241401],[8.204802,47.2380208],[8.2035711,47.2361932],[8.2033045,47.2314416],[8.2050436,47.2259905],[8.1962302,47.2263476],[8.1931936,47.2249222],[8.1896329,47.2244047],[8.1846946,47.2223738],[8.1804473,47.2227546],[8.1759828,47.2219037],[8.1743136,47.2246712],[8.1727742,47.2250413],[8.1741047,47.2274952],[8.1655634,47.2284415],[8.1607566,47.2317576],[8.1600113,47.234439],[8.1618626,47.2361538],[8.1592965,47.2377983],[8.1559338,47.2378096],[8.1559416,47.2394192],[8.1616465,47.2406211],[8.1679378,47.2408794],[8.1711111,47.2401778],[8.175131,47.2401144],[8.1775518,47.2443981],[8.1802217,47.2456632],[8.1807465,47.247395],[8.1797049,47.2504389],[8.1749768,47.253515],[8.1718857,47.252782],[8.1693989,47.2513454],[8.1651476,47.2501815],[8.1583294,47.2497355],[8.1466768,47.2474962],[8.136419,47.2470303],[8.1315074,47.2455035],[8.1312143,47.2439621],[8.1251115,47.2413804],[8.1195751,47.2438577],[8.1090964,47.24453],[8.1058556,47.2494077],[8.106022,47.2521671],[8.0988226,47.2602307],[8.0883758,47.2628873],[8.0820475,47.2606235],[8.0782909,47.2599923],[8.0772637,47.2576424],[8.0733426,47.2563542],[8.0704633,47.2546255],[8.0659636,47.2549414],[8.0626919,47.256662],[8.0585973,47.2567068],[8.0565664,47.2554394],[8.0581144,47.2513094],[8.0629796,47.2466594],[8.0515125,47.2441468],[8.0512289,47.2447599],[8.0301016,47.242156],[8.0290851,47.2406028],[8.0254017,47.2419438],[8.0217481,47.2423941],[8.020331,47.2435224],[8.0157512,47.2441628],[8.0156853,47.2477412],[8.0168954,47.2500166],[8.0165082,47.2544025],[8.0175218,47.2559369],[8.016256,47.258246],[8.0168109,47.2593238],[8.0130457,47.2627085],[8.0093552,47.2651126],[8.0053987,47.2691003],[8.0043074,47.2726231],[8.0047904,47.2743725],[7.9952926,47.2815534],[7.9868871,47.2760234],[7.9734527,47.2744865],[7.9716646,47.2761144],[7.95602,47.2768598],[7.9506354,47.2747829],[7.9491616,47.2725396],[7.9497032,47.2701298],[7.9520683,47.2675824],[7.9516512,47.2656935],[7.9545233,47.2633914],[7.9558605,47.260178],[7.9579261,47.2597845],[7.9593238,47.2576364],[7.9589598,47.25623],[7.9618784,47.2540589],[7.9541378,47.2497803],[7.9459744,47.2432558],[7.9398092,47.2404414],[7.9334826,47.2358957],[7.921166,47.2379111],[7.9141706,47.2420737],[7.9101007,47.2439465],[7.8972694,47.2430961],[7.8673945,47.2372962],[7.8532091,47.2324238],[7.8430183,47.2343513],[7.8420029,47.2357173],[7.8386647,47.2348181],[7.8344704,47.2375534],[7.8317378,47.2403373],[7.8305806,47.2426146],[7.8275822,47.2449034],[7.8261182,47.2468512],[7.8280651,47.2498516],[7.8260196,47.2518139],[7.8298113,47.2557215],[7.8288959,47.2581902],[7.8303841,47.2592954],[7.82736,47.2618461],[7.8251069,47.2655723],[7.8331751,47.2678756],[7.8418057,47.2744707],[7.8441458,47.277909],[7.8447846,47.2820154],[7.8478998,47.2856017],[7.8482634,47.2869166],[7.851605,47.2899914],[7.8536638,47.2927724],[7.8547267,47.2957432],[7.8584823,47.3009163],[7.8604122,47.3055338],[7.863582,47.307517],[7.8693316,47.3093661],[7.874505,47.3118678],[7.8790186,47.3117578],[7.883819,47.3110257],[7.8886613,47.3112671],[7.8917493,47.3157421],[7.8981487,47.319988],[7.8960782,47.323926],[7.8968489,47.327658],[7.9021508,47.334471],[7.9045093,47.3369345],[7.9093389,47.3409617],[7.9112052,47.3391893],[7.9181861,47.3353157],[7.9192088,47.3339507],[7.937714,47.3324829],[7.9471179,47.3323352],[7.948818,47.3295721],[7.9473088,47.3251732],[7.9470813,47.3222474],[7.948328,47.3181041],[7.9530473,47.3188147],[7.9586193,47.3202706],[7.9704735,47.3222297],[7.9765033,47.3234438],[7.9778173,47.3259832],[7.9873121,47.3295743],[7.9909454,47.3328101],[7.9956143,47.3332318],[8.0051906,47.3367516],[8.0073558,47.339304],[8.0042672,47.3434457],[8.0038366,47.3453146],[8.0118165,47.3498153],[8.0128208,47.3543298],[8.0104736,47.3569507],[8.0167283,47.3606059],[8.0173999,47.3624869],[8.0194321,47.3638026],[8.024053,47.3652454],[8.0273336,47.3701892],[8.0277356,47.3742452],[8.0291271,47.3755983],[8.0295396,47.3793214],[8.0313669,47.3836856],[8.0298082,47.386445],[8.0265612,47.3956224],[8.0203287,47.3958068],[8.0199685,47.3939889],[8.0159616,47.3950054],[8.0136914,47.3943754],[8.009801,47.3956968],[8.0100273,47.4012979],[8.009136,47.4019133],[8.0072617,47.4065858],[8.0017622,47.4094538],[7.9914657,47.4111977],[7.9894713,47.4141493],[7.9877473,47.4133454],[7.9840932,47.4140916],[7.9818982,47.4136165],[7.9772086,47.4160988],[7.9742188,47.4194648],[7.9722731,47.4189453],[7.9631993,47.4223547],[7.9801418,47.4275537],[7.983843,47.4283108],[7.984237,47.4228923],[7.9854653,47.4227641],[7.9872707,47.4287435],[7.9853234,47.4318591],[7.9836776,47.4374452],[7.9841675,47.44032],[7.9837701,47.4432198],[7.9825629,47.4445595],[7.9806058,47.4489102],[7.9748783,47.4520017],[7.9766032,47.4542032],[7.9742854,47.4595479],[7.968733,47.4621806],[7.9671552,47.462318],[7.9655924,47.4603222],[7.9629073,47.4596373],[7.9605237,47.4576561],[7.9607182,47.4554656],[7.9568349,47.4552115],[7.9576142,47.4588065],[7.9562906,47.4592367],[7.9488544,47.4637797],[7.9400279,47.4620213],[7.9424246,47.4681944],[7.9429853,47.4720472],[7.9449501,47.4773216],[7.9445,47.4812499],[7.9470153,47.48489],[7.946089,47.4854266],[7.9417145,47.4836005],[7.9325716,47.4814215],[7.9279958,47.4820639],[7.9267489,47.4832892],[7.9241645,47.482477],[7.9180226,47.482652],[7.9116929,47.48484],[7.904822,47.4849093],[7.9047692,47.4921751],[7.8995743,47.496174],[7.8983096,47.5012081],[7.8945252,47.5026109],[7.8939938,47.5060566],[7.8918827,47.5070465],[7.8840766,47.508491],[7.881556,47.5102624],[7.8780258,47.5138844],[7.8756712,47.5131931],[7.8751442,47.5176145],[7.8766587,47.5226904],[7.8739879,47.522939],[7.8715175,47.5219076],[7.8694483,47.5193252],[7.8639568,47.5193092],[7.8643874,47.5221238],[7.8625693,47.5269203],[7.8606972,47.5284436],[7.8573098,47.5332111],[7.8523303,47.5352351],[7.8465273,47.532661],[7.841542,47.5337464],[7.8367593,47.5342719],[7.8333883,47.5337516],[7.8352938,47.5317605],[7.8332217,47.5303239],[7.8335437,47.5263413],[7.8331382,47.5187898],[7.832037,47.5174013],[7.8319763,47.5147366],[7.8286946,47.5140374],[7.8232649,47.5095345],[7.815571,47.5049066],[7.812386,47.5015529],[7.8074182,47.4971385],[7.8022319,47.4969795],[7.7974335,47.4987282],[7.7988902,47.4956515],[7.7944311,47.4962609],[7.7898348,47.4933561],[7.7891543,47.4963162],[7.7927995,47.5006843],[7.7915076,47.5015771],[7.792336,47.5037131],[7.7898578,47.5050854],[7.7888701,47.5068293],[7.7891724,47.5104652],[7.7877321,47.5134221],[7.7901733,47.5160047],[7.7898583,47.5190259],[7.7859431,47.5206088],[7.7829157,47.5201742],[7.7813173,47.52106],[7.7625086,47.5253013],[7.7550682,47.5253138],[7.7526151,47.5257398],[7.7490224,47.524985],[7.7379742,47.527325],[7.7351043,47.529467],[7.733641,47.532386],[7.7299357,47.5323959],[7.7258328,47.5335052],[7.7253922,47.5352415],[7.7230527,47.5367586],[7.7211471,47.5354246],[7.7194143,47.5362505],[7.7166787,47.535751],[7.7148694,47.5365484],[7.7134685,47.5397835],[7.717933,47.5415877],[7.7204221,47.5420281],[7.7299328,47.5427383],[7.7357264,47.542918],[7.7506395,47.5442756],[7.754142,47.5454274],[7.7577435,47.5482041],[7.7644812,47.5498365],[7.7728364,47.5522247],[7.7821351,47.5530106],[7.7881743,47.5545175],[7.7908199,47.5559133],[7.7956852,47.5573822],[7.7989238,47.5615977],[7.8030102,47.5648704],[7.8100862,47.568308],[7.8116486,47.5702862],[7.8128114,47.5734555],[7.8138817,47.5785468],[7.8155408,47.5826211],[7.8194589,47.5872669],[7.8225444,47.5879878],[7.8272318,47.5876369],[7.8339805,47.5864618],[7.8364185,47.5835623],[7.840223,47.5821965],[7.8451623,47.5822085],[7.8535122,47.5838753],[7.8598633,47.587259],[7.869397,47.5887548],[7.876699,47.5884379],[7.8831191,47.5889188],[7.8867646,47.5886249],[7.8919978,47.587423],[7.897917,47.5840054],[7.9026754,47.5808468],[7.9051561,47.578684],[7.9106453,47.5710659],[7.9115782,47.5677392],[7.9107564,47.5652405],[7.9074108,47.561308],[7.9072839,47.5591642],[7.9083247,47.5557956],[7.9102465,47.552328],[7.9126202,47.5501072],[7.9164476,47.5479185],[7.9195492,47.5470526],[7.9248615,47.5466626],[7.9325254,47.5469456],[7.9409153,47.5443479],[7.9468215,47.544069],[7.9491613,47.5459669],[7.9512182,47.5498805],[7.9524248,47.554543],[7.9543023,47.5562083],[7.9602825,47.558058],[7.9697001,47.555936],[7.9805518,47.5550858],[7.9965906,47.5564817],[8.000891,47.5563597],[8.008102,47.5545899],[8.0149841,47.5510953],[8.0207163,47.5504054],[8.0275583,47.5519462],[8.0389287,47.5532621],[8.0461057,47.5553149],[8.0578516,47.5616789],[8.0597028,47.563677],[8.0628284,47.5631921],[8.0677767,47.5645879],[8.0710963,47.564138],[8.0795801,47.5586716],[8.0832096,47.5575117],[8.0902497,47.5578287],[8.0959299,47.5602435],[8.0989054,47.5622232],[8.1015441,47.5666058],[8.1030688,47.5762457],[8.1061894,47.5800153],[8.1101412,47.5827505],[8.1139843,47.5837229],[8.1175708,47.5839099],[8.1246758,47.5832689],[8.1338175,47.583399],[8.1362892,47.5838529],[8.1381189,47.5856227],[8.137482,47.5892273],[8.1392457,47.5912531],[8.1494363,47.5954526],[8.1529788,47.5957126],[8.1616896,47.5937519],[8.1643133,47.5940608],[8.1675818,47.5954487],[8.1707714,47.5980964],[8.1739729,47.60161],[8.1778324,47.6030859],[8.1812429,47.6035328],[8.1845464,47.6047187],[8.187316,47.6075114],[8.1931236,47.6156073],[8.1970997,47.6186437],[8.2011665,47.6203478],[8.2053645,47.6210607],[8.21214,47.6205669],[8.2177921,47.6186642],[8.2207354,47.616583],[8.2230327,47.6114871],[8.2237668,47.6074306],[8.2269662,47.6050182],[8.2304937,47.6063164],[8.2366433,47.6118583],[8.2393544,47.6128297],[8.2453919,47.612627],[8.2526269,47.6146894],[8.2569124,47.6153157],[8.2607181,47.6145112],[8.2630726,47.6101743],[8.2653993,47.6093335],[8.2739443,47.6111942],[8.2791402,47.611712],[8.2877559,47.6105877],[8.2946293,47.6078826],[8.2972801,47.606088],[8.2978435,47.6043831],[8.2957969,47.5975195],[8.2952819,47.5936902],[8.2975878,47.5892604],[8.3008099,47.5868488],[8.3039928,47.5854892],[8.3096435,47.5839353],[8.3125123,47.5823097],[8.3201672,47.5753793],[8.3249832,47.5723666],[8.3324906,47.5705522],[8.3395731,47.5702777],[8.3475635,47.5708182],[8.3582417,47.570005],[8.3662124,47.5687427],[8.3701577,47.5685322],[8.3776665,47.5672844],[8.3827827,47.5656586],[8.3848646,47.5666227],[8.3889309,47.5727146],[8.3939136,47.5761713],[8.3966426,47.5771754],[8.3994394,47.5770941],[8.4064201,47.5749456],[8.4134345,47.5715818],[8.4255136,47.5679545]]]},"properties":{"ID_0":223,"ISO":"CH-AG","NAME_0":"Switzerland","ID_1":1,"NAME_1":"Aargau","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Argovia|Arg¢via|Argovie"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.3272903,47.4400151],[7.3305041,47.4417586],[7.33618,47.4408824],[7.3385707,47.4411625],[7.3413144,47.4387733],[7.3440741,47.4375164],[7.3449649,47.4360781],[7.3504676,47.4351831],[7.3554141,47.4339276],[7.3585945,47.4344965],[7.3649584,47.4336644],[7.3680063,47.4342509],[7.3727129,47.4338276],[7.381198,47.4320817],[7.3827895,47.431228],[7.3821559,47.4288893],[7.379639,47.4276288],[7.3789836,47.4212606],[7.3771321,47.4180668],[7.3759458,47.4141002],[7.3817962,47.4132929],[7.3875989,47.4140464],[7.3969473,47.4128693],[7.401465,47.411891],[7.4076502,47.4111846],[7.4137082,47.4109293],[7.4207436,47.4110988],[7.4233254,47.4130609],[7.4274834,47.4144805],[7.4312975,47.4141355],[7.4381056,47.4127394],[7.4437574,47.413444],[7.4474911,47.4144842],[7.4503574,47.4177721],[7.4503129,47.4195188],[7.4517773,47.4227305],[7.4546547,47.4254578],[7.4555765,47.4279232],[7.4521423,47.431376],[7.4510847,47.4346911],[7.4484043,47.4377253],[7.4457226,47.4391652],[7.4421621,47.4423254],[7.4363118,47.4457671],[7.4254226,47.4432839],[7.4234437,47.4436053],[7.4209041,47.4459442],[7.4244509,47.4499148],[7.4224177,47.4507165],[7.428796,47.4538795],[7.4277527,47.4572981],[7.4300288,47.4594917],[7.4326256,47.4592465],[7.436712,47.4603704],[7.4457652,47.4619728],[7.446109,47.458974],[7.4471702,47.4569581],[7.4534722,47.4513374],[7.4548118,47.4492306],[7.4565122,47.4492558],[7.4665466,47.4528037],[7.4681396,47.4539075],[7.4768609,47.4554215],[7.4805074,47.4554893],[7.4867311,47.4578954],[7.4982107,47.4596867],[7.5052339,47.4587158],[7.509828,47.4586675],[7.5174535,47.4610206],[7.5306791,47.4611886],[7.5274454,47.4739062],[7.5291138,47.4779526],[7.5331205,47.4782905],[7.536261,47.4838412],[7.5362312,47.4910527],[7.5326039,47.490969],[7.532526,47.4954356],[7.5317892,47.4973989],[7.5200384,47.4967827],[7.514756,47.4977696],[7.5122262,47.4989168],[7.5116652,47.5026958],[7.5104466,47.5026276],[7.5103004,47.5059877],[7.5079113,47.5108123],[7.5058888,47.5113416],[7.5030833,47.5139882],[7.4990825,47.5162781],[7.4978704,47.5212476],[7.4997527,47.5205718],[7.5025317,47.5157111],[7.5054593,47.5146552],[7.5112967,47.5170225],[7.5174593,47.5172811],[7.5190791,47.5148133],[7.5207389,47.5157188],[7.5237281,47.5153343],[7.5234558,47.5186712],[7.527583,47.5217512],[7.5309387,47.5268336],[7.5309558,47.5290453],[7.5267784,47.5328759],[7.5243984,47.5318601],[7.5193537,47.5347178],[7.5157802,47.5329332],[7.510752,47.5289898],[7.5076713,47.5281179],[7.5050945,47.5290222],[7.5022985,47.5284046],[7.5005189,47.5301322],[7.5014384,47.5321722],[7.4996557,47.5350312],[7.4980384,47.5361522],[7.501098,47.541075],[7.5054547,47.5443819],[7.509085,47.5453214],[7.5109756,47.5445067],[7.5167583,47.5454083],[7.5188571,47.5463349],[7.5254227,47.5509093],[7.5247918,47.5514725],[7.5307035,47.5541979],[7.5365238,47.5554521],[7.5403611,47.557272],[7.5468638,47.5615009],[7.5546583,47.5643681],[7.5579279,47.5626202],[7.5598704,47.5605319],[7.5645616,47.5572174],[7.5612437,47.5517228],[7.5587527,47.5523533],[7.5558822,47.5443356],[7.5647854,47.5456863],[7.5756961,47.543952],[7.5814732,47.5438236],[7.5872631,47.5419007],[7.5857211,47.5391295],[7.5859195,47.5374037],[7.5826885,47.5324682],[7.5858669,47.5292755],[7.588466,47.5290556],[7.5899235,47.5266745],[7.5893183,47.5229554],[7.5902485,47.5197897],[7.5947814,47.519294],[7.601768,47.5253475],[7.6091826,47.5350166],[7.6123623,47.5367419],[7.6141998,47.5394231],[7.6181485,47.5408004],[7.6223033,47.5397743],[7.6229623,47.5492907],[7.6223987,47.550975],[7.6185071,47.5535681],[7.6175802,47.5549522],[7.6176173,47.5586485],[7.6273612,47.5615165],[7.6339558,47.5612235],[7.6373071,47.5599576],[7.6399737,47.5581648],[7.6435982,47.5544942],[7.6469498,47.5501767],[7.6489955,47.5482959],[7.652472,47.5465791],[7.6605799,47.5452173],[7.6626486,47.5430316],[7.6648263,47.5384351],[7.667971,47.5357644],[7.6737601,47.5340026],[7.6792148,47.5327916],[7.694939,47.5324961],[7.6973359,47.5329077],[7.7066205,47.5371899],[7.7134685,47.5397835],[7.7148694,47.5365484],[7.7166787,47.535751],[7.7194143,47.5362505],[7.7211471,47.5354246],[7.7230527,47.5367586],[7.7253922,47.5352415],[7.7258328,47.5335052],[7.7299357,47.5323959],[7.733641,47.532386],[7.7351043,47.529467],[7.7379742,47.527325],[7.7490224,47.524985],[7.7526151,47.5257398],[7.7550682,47.5253138],[7.7625086,47.5253013],[7.7813173,47.52106],[7.7829157,47.5201742],[7.7859431,47.5206088],[7.7898583,47.5190259],[7.7901733,47.5160047],[7.7877321,47.5134221],[7.7891724,47.5104652],[7.7888701,47.5068293],[7.7898578,47.5050854],[7.792336,47.5037131],[7.7915076,47.5015771],[7.7927995,47.5006843],[7.7891543,47.4963162],[7.7898348,47.4933561],[7.7944311,47.4962609],[7.7988902,47.4956515],[7.7974335,47.4987282],[7.8022319,47.4969795],[7.8074182,47.4971385],[7.812386,47.5015529],[7.815571,47.5049066],[7.8232649,47.5095345],[7.8286946,47.5140374],[7.8319763,47.5147366],[7.832037,47.5174013],[7.8331382,47.5187898],[7.8335437,47.5263413],[7.8332217,47.5303239],[7.8352938,47.5317605],[7.8333883,47.5337516],[7.8367593,47.5342719],[7.841542,47.5337464],[7.8465273,47.532661],[7.8523303,47.5352351],[7.8573098,47.5332111],[7.8606972,47.5284436],[7.8625693,47.5269203],[7.8643874,47.5221238],[7.8639568,47.5193092],[7.8694483,47.5193252],[7.8715175,47.5219076],[7.8739879,47.522939],[7.8766587,47.5226904],[7.8751442,47.5176145],[7.8756712,47.5131931],[7.8780258,47.5138844],[7.881556,47.5102624],[7.8840766,47.508491],[7.8918827,47.5070465],[7.8939938,47.5060566],[7.8945252,47.5026109],[7.8983096,47.5012081],[7.8995743,47.496174],[7.9047692,47.4921751],[7.904822,47.4849093],[7.9116929,47.48484],[7.9180226,47.482652],[7.9241645,47.482477],[7.9267489,47.4832892],[7.9279958,47.4820639],[7.9325716,47.4814215],[7.9417145,47.4836005],[7.946089,47.4854266],[7.9470153,47.48489],[7.9445,47.4812499],[7.9449501,47.4773216],[7.9429853,47.4720472],[7.9424246,47.4681944],[7.9400279,47.4620213],[7.9488544,47.4637797],[7.9562906,47.4592367],[7.9576142,47.4588065],[7.9568349,47.4552115],[7.9585114,47.452873],[7.9505116,47.4469011],[7.9475235,47.4455559],[7.9467846,47.4431934],[7.9480643,47.4400156],[7.9519393,47.432784],[7.9500321,47.4317164],[7.9557004,47.4265699],[7.9618317,47.4218343],[7.9584181,47.420548],[7.9542591,47.4172932],[7.9483889,47.4162658],[7.9450137,47.4145266],[7.9406258,47.4140986],[7.9349279,47.411767],[7.9367225,47.4080575],[7.9326616,47.405275],[7.925432,47.4029795],[7.9242095,47.4020322],[7.9210588,47.4023676],[7.9130999,47.4002445],[7.9097377,47.398521],[7.9065862,47.3998447],[7.903836,47.402465],[7.9008303,47.4007446],[7.8988859,47.401675],[7.8902216,47.4071411],[7.8885671,47.4072671],[7.883332,47.4060973],[7.8842847,47.4031869],[7.8834431,47.401205],[7.8798029,47.4017191],[7.8777028,47.4012571],[7.8752778,47.3975949],[7.8691367,47.3955143],[7.8719455,47.3912466],[7.8738958,47.3900303],[7.8761008,47.3903782],[7.8797378,47.3873545],[7.8788122,47.3835105],[7.876101,47.3844741],[7.8685656,47.3812747],[7.8630581,47.3819837],[7.8598411,47.3811357],[7.8587218,47.3797496],[7.8499703,47.3783527],[7.8473507,47.3767254],[7.8401191,47.3747633],[7.8371225,47.3727657],[7.8336252,47.3674835],[7.8305473,47.3651215],[7.8196066,47.3629874],[7.8105171,47.3628894],[7.8053835,47.3623861],[7.8021665,47.3610959],[7.7976612,47.3557911],[7.7950062,47.349769],[7.7953716,47.3464552],[7.7935609,47.3390523],[7.7852881,47.3378823],[7.7823787,47.3395701],[7.7796987,47.3391975],[7.7728882,47.3393925],[7.7689632,47.3389141],[7.7692243,47.3414494],[7.7664192,47.3427347],[7.7541924,47.3431721],[7.751519,47.3443275],[7.74282,47.3497075],[7.7341532,47.3577608],[7.7279138,47.3688589],[7.7139728,47.370903],[7.7019536,47.3724472],[7.6789369,47.3704964],[7.6743647,47.3698691],[7.655694,47.3680774],[7.6442033,47.3672084],[7.64287,47.3733148],[7.643181,47.3754694],[7.6410397,47.3782861],[7.6417611,47.3804694],[7.6355801,47.3805928],[7.633317,47.382914],[7.6333054,47.3853396],[7.6372512,47.3860686],[7.6354958,47.3953205],[7.6350876,47.4003143],[7.6327228,47.4100311],[7.6396853,47.4100222],[7.6575421,47.4090754],[7.6640548,47.41002],[7.6738474,47.4150569],[7.6798021,47.417514],[7.68469,47.4286656],[7.6845854,47.4304738],[7.686579,47.4336641],[7.6856047,47.436393],[7.6829725,47.4387223],[7.6834873,47.4422434],[7.6850049,47.4475751],[7.6866565,47.4497441],[7.6907256,47.4522397],[7.6919655,47.4539855],[7.6981334,47.4552972],[7.6991863,47.4568884],[7.6986411,47.4594409],[7.7001039,47.4620803],[7.7033697,47.4644202],[7.7066078,47.4685785],[7.709878,47.4693848],[7.7051065,47.4761347],[7.702411,47.4778918],[7.699761,47.4806325],[7.6962068,47.4817855],[7.6910193,47.4816008],[7.6840138,47.4829092],[7.6769802,47.485043],[7.6717243,47.4845234],[7.6683266,47.4863467],[7.6654195,47.4914907],[7.6663596,47.4947724],[7.6661209,47.4968682],[7.658177,47.4953027],[7.6533644,47.4960732],[7.650684,47.4945748],[7.6486463,47.4918301],[7.6501835,47.4910109],[7.6553896,47.4902056],[7.6524382,47.4887367],[7.6536663,47.4863691],[7.647281,47.4848076],[7.6444227,47.4856378],[7.640966,47.4827341],[7.6361794,47.4840293],[7.6296435,47.4843181],[7.6272013,47.4848959],[7.6241455,47.4866657],[7.6149374,47.4892407],[7.6128842,47.4886113],[7.6072998,47.4893984],[7.6088021,47.4839098],[7.6083438,47.4821418],[7.6057739,47.4801102],[7.6061955,47.4755605],[7.608149,47.4752137],[7.6045243,47.4705364],[7.6110333,47.4700131],[7.6168439,47.4675763],[7.6188725,47.4674531],[7.6248267,47.4631918],[7.6221734,47.4619523],[7.6226016,47.4571445],[7.6188588,47.4490087],[7.6164646,47.4452346],[7.616471,47.4418277],[7.615262,47.439574],[7.6161351,47.437615],[7.6157989,47.4327479],[7.6140196,47.4333549],[7.6074228,47.4326646],[7.6021563,47.4312465],[7.5985689,47.4321284],[7.5920692,47.4327118],[7.5849068,47.4286237],[7.5812069,47.4287807],[7.5792984,47.4301858],[7.5801003,47.4320482],[7.57765,47.4324388],[7.5784233,47.4349067],[7.5757002,47.43646],[7.5689044,47.436897],[7.5687481,47.4321284],[7.5692657,47.4304484],[7.5675174,47.4259666],[7.569543,47.4207075],[7.5727104,47.4191213],[7.5741365,47.4194989],[7.5789109,47.4172123],[7.5806593,47.4146845],[7.576801,47.4141455],[7.5660724,47.4134092],[7.5563112,47.4142536],[7.5511466,47.4143489],[7.5430785,47.4140329],[7.534741,47.4133066],[7.5252352,47.4116329],[7.5273137,47.4085101],[7.5311956,47.4049111],[7.5304329,47.4020932],[7.5262958,47.3983977],[7.5213659,47.3912021],[7.5186167,47.388223],[7.5107103,47.3895585],[7.5030498,47.3850174],[7.4977414,47.38453],[7.4923275,47.3852318],[7.4849176,47.3874415],[7.4847773,47.3888877],[7.4810966,47.3887526],[7.4775351,47.3919095],[7.4767973,47.3959879],[7.477351,47.4010255],[7.4713288,47.4003483],[7.4649222,47.4024925],[7.4612988,47.4006617],[7.4567974,47.4017068],[7.454759,47.4041309],[7.4496537,47.4038482],[7.4508763,47.4012186],[7.4487125,47.3995694],[7.4459905,47.4000761],[7.4440531,47.4021682],[7.4413114,47.4001789],[7.4414073,47.3981241],[7.4432038,47.3961502],[7.4422499,47.3950125],[7.4435667,47.3889029],[7.4390368,47.3860118],[7.4373242,47.3808885],[7.4336787,47.3793963],[7.42495,47.3795205],[7.4116926,47.3805724],[7.4162762,47.3847888],[7.4135853,47.3894364],[7.4138853,47.3933645],[7.4127272,47.3948081],[7.4058749,47.3951477],[7.4013998,47.3967613],[7.3989356,47.3968391],[7.3959908,47.4030492],[7.3952603,47.4034421],[7.3886939,47.4030191],[7.3845747,47.410338],[7.3840549,47.4123602],[7.3794744,47.4127753],[7.3759458,47.4140995],[7.3684509,47.4139392],[7.3587199,47.4151539],[7.3579916,47.4181529],[7.3554264,47.4187274],[7.3520926,47.4206877],[7.3495132,47.4212927],[7.3485303,47.4227466],[7.3441382,47.4244676],[7.3436887,47.4259022],[7.3410805,47.426974],[7.3409252,47.4291233],[7.3379223,47.4301083],[7.3321641,47.4302245],[7.3262162,47.4320858],[7.3252806,47.4348918],[7.3280016,47.4377964],[7.3272903,47.4400151]]]},"properties":{"ID_0":223,"ISO":"CH-BL","NAME_0":"Switzerland","ID_1":4,"NAME_1":"Basel-Landschaft","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Bâle-Campagne|Basel-Country|Baselland|Basel-Land|Basilea campagna|Basilea Campaña|Basilea-Champagna"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.4100734,47.2483758],[8.4130076,47.2460685],[8.4144782,47.2427926],[8.4164943,47.2410889],[8.4142474,47.2389432],[8.4164871,47.236974],[8.4169644,47.2307277],[8.4181755,47.2266209],[8.4209299,47.2256471],[8.4216847,47.2233208],[8.4269511,47.224066],[8.4292811,47.224873],[8.435534,47.2236907],[8.4390529,47.2239018],[8.4411217,47.2252153],[8.4438004,47.2226376],[8.4464136,47.2222995],[8.4479234,47.2201098],[8.4520975,47.2196007],[8.4529458,47.2177609],[8.4556361,47.2185429],[8.4586975,47.2170022],[8.4614031,47.2136312],[8.4669192,47.2142867],[8.4704131,47.2119232],[8.472468,47.2116957],[8.4751556,47.2089287],[8.4762199,47.2100215],[8.4798975,47.2086217],[8.4854573,47.2090431],[8.4892994,47.2108805],[8.4930475,47.2119208],[8.5033136,47.2122402],[8.5058863,47.213858],[8.5123322,47.2155191],[8.5125639,47.2194149],[8.5174882,47.2196031],[8.5259327,47.2185752],[8.5318901,47.2182695],[8.5324673,47.22205],[8.5363622,47.2206008],[8.5392151,47.2230554],[8.5458789,47.2213973],[8.5469408,47.2219665],[8.5529549,47.2216557],[8.5538365,47.2232373],[8.5576778,47.2216014],[8.5603449,47.2195443],[8.5641572,47.2196147],[8.5671349,47.2185238],[8.5728397,47.2183849],[8.5747217,47.2170082],[8.5777163,47.218037],[8.582027,47.2179174],[8.5833397,47.2168275],[8.5811402,47.2139231],[8.5822063,47.2110999],[8.5854032,47.2108073],[8.5874798,47.2124238],[8.5913716,47.2115264],[8.5941607,47.2120538],[8.5975569,47.2082536],[8.5965866,47.2068174],[8.596806,47.2036937],[8.5985798,47.2015807],[8.603054,47.2029903],[8.6060413,47.2052421],[8.6088948,47.2044377],[8.6157158,47.1986164],[8.618166,47.1945483],[8.6173989,47.1922804],[8.6207215,47.1904848],[8.62063,47.1877462],[8.6281526,47.1792337],[8.6251046,47.1765264],[8.6239808,47.1733578],[8.6260229,47.1723475],[8.631116,47.1721771],[8.6337707,47.1716071],[8.6393544,47.1714726],[8.6398915,47.1693261],[8.6427129,47.169004],[8.6529328,47.1709557],[8.6565472,47.1699542],[8.6606606,47.1703235],[8.6610944,47.1682073],[8.6606216,47.1633874],[8.6612293,47.1609515],[8.6657734,47.1596659],[8.6749784,47.1594451],[8.6763556,47.1607073],[8.6803255,47.1619856],[8.6870422,47.1625743],[8.692195,47.1634006],[8.6958222,47.1629404],[8.698121,47.1588125],[8.6991986,47.1550115],[8.6985612,47.1537335],[8.6990087,47.1504392],[8.6958618,47.1500766],[8.6925398,47.1480662],[8.6907315,47.1478725],[8.688497,47.1460839],[8.6842014,47.1400605],[8.6864178,47.1361201],[8.6843685,47.1331001],[8.6854813,47.1307218],[8.6832807,47.128955],[8.6813018,47.1248226],[8.678275,47.1245266],[8.6755041,47.1211895],[8.6735114,47.1208966],[8.6707594,47.1189283],[8.6714193,47.1157405],[8.6670624,47.1156745],[8.6653465,47.114978],[8.6598022,47.1146795],[8.660552,47.1118319],[8.6556746,47.1085343],[8.6537711,47.1078582],[8.645478,47.0996286],[8.6449107,47.0958604],[8.6372427,47.0933307],[8.6259369,47.0938761],[8.6229883,47.0947158],[8.6117845,47.0949744],[8.6086995,47.0944522],[8.6074503,47.0919973],[8.5999374,47.09054],[8.5961501,47.0914743],[8.5909215,47.0888801],[8.5901,47.086405],[8.5851626,47.0854714],[8.5810923,47.0839982],[8.5775926,47.0844849],[8.5742727,47.0822549],[8.5695426,47.0812159],[8.5656651,47.0810323],[8.5624977,47.0829027],[8.5648177,47.0867369],[8.563882,47.0885682],[8.5635952,47.0919528],[8.5624592,47.0937531],[8.5583649,47.0939574],[8.5559963,47.0934349],[8.5526615,47.0940347],[8.5471526,47.0937092],[8.5442002,47.0944572],[8.5407772,47.092275],[8.5356093,47.0921011],[8.530906,47.0914741],[8.525702,47.091655],[8.5217868,47.0899712],[8.4930444,47.1001815],[8.4937326,47.1137326],[8.4803717,47.1263276],[8.4669979,47.1188444],[8.4658539,47.1170652],[8.4599001,47.1157659],[8.4556084,47.1134465],[8.454106,47.1136967],[8.4515473,47.1210284],[8.4498558,47.1295631],[8.4413387,47.1285686],[8.4344256,47.1249893],[8.4303946,47.1233201],[8.422078,47.1234563],[8.4203161,47.1226289],[8.4169251,47.12313],[8.4143459,47.1261892],[8.4167591,47.1305576],[8.4152279,47.135584],[8.4122057,47.1405668],[8.4140445,47.1428521],[8.4148735,47.1453089],[8.414154,47.1489195],[8.4122764,47.1522649],[8.4120214,47.154273],[8.4152185,47.1588465],[8.4149686,47.1655013],[8.4118783,47.1732645],[8.4100474,47.1749991],[8.4031754,47.1764276],[8.4021701,47.1771473],[8.4004338,47.1827156],[8.4003269,47.185874],[8.4016655,47.1899019],[8.4052377,47.1944985],[8.4049016,47.1968535],[8.4025088,47.2006896],[8.4004241,47.2095093],[8.4010157,47.2138357],[8.4005659,47.2156093],[8.3974393,47.2184203],[8.3949593,47.2250404],[8.3950537,47.2268388],[8.3979379,47.2313499],[8.4054883,47.2363724],[8.4072121,47.2415578],[8.4102381,47.2445569],[8.41096,47.2463214],[8.4100734,47.2483758]]]},"properties":{"ID_0":223,"ISO":"CH-ZG","NAME_0":"Switzerland","ID_1":26,"NAME_1":"Zug","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Zoug|Zugo"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[8.4483186,46.7634232],[8.4483763,46.7651703],[8.4464717,46.7661327],[8.4466164,46.7702668],[8.4421481,46.769887],[8.4384308,46.7720269],[8.435491,46.7725081],[8.4284898,46.7719099],[8.4251153,46.7702919],[8.421832,46.7710907],[8.4210807,46.7727885],[8.4180096,46.7740632],[8.4146324,46.7743221],[8.4075065,46.7695548],[8.4037092,46.7683409],[8.4007917,46.7664527],[8.3963865,46.7654996],[8.3952224,46.7715167],[8.4165726,46.7783945],[8.4264068,46.7744507],[8.426375,46.7771489],[8.4252736,46.7779531],[8.4250535,46.7806364],[8.4230553,46.7837338],[8.4195719,46.7867466],[8.419541,46.7890728],[8.4151308,46.7898642],[8.4114643,46.7898661],[8.408012,46.7907812],[8.4055232,46.7930973],[8.4016445,46.7955782],[8.3965325,46.7954542],[8.3876259,46.8029701],[8.3848053,46.8036916],[8.3872399,46.8066931],[8.3885882,46.8094554],[8.3880346,46.8122388],[8.3849325,46.8134763],[8.3802499,46.814405],[8.3777708,46.8162916],[8.375998,46.8165912],[8.375324,46.8196966],[8.3775128,46.8230572],[8.3741402,46.8310223],[8.3725147,46.8321646],[8.3706053,46.8360232],[8.3715508,46.8378145],[8.3702808,46.8413426],[8.3702573,46.8448412],[8.3689431,46.8463764],[8.3683339,46.8499053],[8.3706718,46.8516499],[8.3708151,46.8595103],[8.3639616,46.8595322],[8.3613047,46.862518],[8.3631945,46.8643545],[8.3641319,46.8669321],[8.3693509,46.8676152],[8.3701578,46.8717568],[8.3734075,46.8744961],[8.3801001,46.8740301],[8.3810775,46.8723891],[8.380223,46.8703753],[8.3817855,46.8680757],[8.3846579,46.8660484],[8.3822372,46.8641378],[8.378355,46.8625649],[8.3750544,46.8579959],[8.3754722,46.8531401],[8.3738831,46.8494566],[8.3747715,46.8479146],[8.3784511,46.8534198],[8.3813312,46.8565852],[8.3842688,46.854428],[8.3873801,46.85724],[8.3917763,46.8585003],[8.3952856,46.8624742],[8.3987005,46.8647351],[8.401631,46.8640978],[8.405999,46.8654293],[8.405885,46.8663155],[8.409384,46.8686683],[8.4113888,46.8683984],[8.4128201,46.8698465],[8.4148033,46.8658058],[8.4187947,46.8627605],[8.4184075,46.8612367],[8.420419,46.8558416],[8.4188714,46.8543356],[8.4194849,46.8522353],[8.4265723,46.8512774],[8.4299901,46.8502292],[8.4357844,46.8518787],[8.4391117,46.8535275],[8.443356,46.8530296],[8.4498638,46.8541341],[8.4541518,46.8537636],[8.4617512,46.8552153],[8.4674015,46.8554475],[8.4708359,46.8548512],[8.4745641,46.8545439],[8.4774608,46.8565811],[8.4800454,46.8572493],[8.4823521,46.8554117],[8.4866561,46.8539915],[8.4932683,46.8527375],[8.4978667,46.853728],[8.4984908,46.8522415],[8.5021395,46.8495042],[8.5025531,46.8479878],[8.5053569,46.8460111],[8.5057889,46.8427851],[8.5035004,46.8406339],[8.4936991,46.8376894],[8.4889597,46.8356585],[8.4863068,46.8320394],[8.4853926,46.829178],[8.4834108,46.8270191],[8.483831,46.8240195],[8.4832092,46.8189874],[8.4811479,46.8175758],[8.4812689,46.8162432],[8.4782141,46.8126366],[8.4832296,46.8087584],[8.4832924,46.8047023],[8.4786603,46.801344],[8.4723107,46.7993766],[8.4642643,46.8005376],[8.4668698,46.7977136],[8.4682986,46.7976936],[8.4725824,46.7954517],[8.4754831,46.7968387],[8.4811284,46.7984274],[8.4819314,46.7938967],[8.479257,46.7918142],[8.4785492,46.7892748],[8.4836155,46.7863004],[8.4853945,46.7832857],[8.4886008,46.7809461],[8.4914322,46.7725301],[8.488642,46.7711312],[8.4844468,46.770566],[8.4829236,46.7693199],[8.4740861,46.7677137],[8.4706697,46.7678801],[8.4689129,46.769205],[8.4645752,46.7695783],[8.4627853,46.7685744],[8.4603517,46.7691029],[8.4483186,46.7634232]]],[[[8.2288726,46.9731468],[8.23215,46.9733684],[8.2358205,46.9745115],[8.2408407,46.9736439],[8.248058,46.9761503],[8.2547332,46.9804532],[8.2571107,46.9797816],[8.2609921,46.9803398],[8.2624827,46.9781057],[8.2725057,46.9786026],[8.281832,46.9758125],[8.2900481,46.9760777],[8.2974363,46.9775051],[8.3013376,46.9776611],[8.3071612,46.9759182],[8.306895,46.9741495],[8.3090712,46.9722865],[8.3109666,46.9689814],[8.3061701,46.9557475],[8.309905,46.9522216],[8.2992067,46.9466792],[8.2949572,46.941851],[8.2919445,46.9397701],[8.288285,46.9338873],[8.2909593,46.9327164],[8.3000687,46.9302397],[8.3009636,46.9287841],[8.3096344,46.9243057],[8.3129655,46.9253698],[8.3154989,46.9243676],[8.3173877,46.9249685],[8.3225251,46.9252995],[8.3280825,46.9269452],[8.334551,46.9280229],[8.3381189,46.9293138],[8.3412286,46.9261894],[8.3401812,46.9236534],[8.3405246,46.9215611],[8.3393479,46.9184119],[8.3417651,46.9174816],[8.3434717,46.9149007],[8.3426007,46.9115027],[8.3410991,46.9086989],[8.3371702,46.9062577],[8.3362855,46.9030333],[8.3383174,46.8984062],[8.3381334,46.8906946],[8.3331978,46.886174],[8.3330371,46.8819564],[8.3283699,46.8779775],[8.3300459,46.8742055],[8.3296455,46.8714283],[8.3334195,46.8683737],[8.3343282,46.8649907],[8.3345488,46.8612451],[8.3308331,46.8566796],[8.3300379,46.8537606],[8.3306789,46.8515318],[8.3279055,46.8468748],[8.3291605,46.8421789],[8.3310149,46.8411626],[8.3325727,46.8378313],[8.3322548,46.8336565],[8.3359353,46.8331111],[8.3348715,46.8311993],[8.334964,46.8275493],[8.3322022,46.8259479],[8.3256092,46.8240357],[8.3229143,46.8221625],[8.3221353,46.8202206],[8.3238438,46.8174355],[8.3263107,46.8148823],[8.331674,46.8124462],[8.3320405,46.8111003],[8.3356514,46.8088842],[8.3392209,46.8053874],[8.3432858,46.8045355],[8.3430063,46.8024029],[8.3443419,46.7999815],[8.3476781,46.7988052],[8.3492217,46.7971195],[8.3530831,46.7960272],[8.3552381,46.7947245],[8.3611115,46.7935599],[8.3691846,46.7891462],[8.368933,46.787924],[8.3637922,46.7860723],[8.3635403,46.7845224],[8.3599152,46.7829668],[8.333688,46.7805978],[8.3310151,46.7785186],[8.3268178,46.776816],[8.3258164,46.7755873],[8.3208131,46.7733464],[8.3158764,46.7701054],[8.311555,46.7682782],[8.3068841,46.7652156],[8.3066227,46.7641848],[8.3020902,46.7620403],[8.2969264,46.7602435],[8.2869997,46.7553345],[8.2834842,46.7531719],[8.2809827,46.7543337],[8.2755108,46.755087],[8.2692757,46.7543134],[8.2666765,46.7576144],[8.2626495,46.7606581],[8.2600862,46.7633547],[8.2557625,46.7643958],[8.2518859,46.7660872],[8.2455252,46.7675204],[8.2390658,46.7696107],[8.2339122,46.7619525],[8.2297876,46.7610057],[8.2268665,46.7614831],[8.2204225,46.7614994],[8.2193495,46.7635354],[8.2120828,46.7663628],[8.2079964,46.769458],[8.2032354,46.7693774],[8.1963029,46.7679295],[8.1931692,46.7684297],[8.1897906,46.7703167],[8.1858109,46.7685851],[8.1741355,46.7654376],[8.1720978,46.7641373],[8.1679329,46.7653549],[8.166793,46.7640209],[8.164253,46.7634024],[8.1635255,46.7616557],[8.1594434,46.7605185],[8.1584489,46.7592441],[8.1496654,46.756995],[8.1469413,46.7548388],[8.1409768,46.7586297],[8.1386885,46.7595464],[8.1372426,46.7614036],[8.1283574,46.7669064],[8.1218255,46.7703745],[8.1183436,46.7709578],[8.1135173,46.7733979],[8.11006,46.7737702],[8.1068596,46.7728865],[8.1023471,46.7738054],[8.101438,46.7761852],[8.0995554,46.7782733],[8.096305,46.7795299],[8.0936406,46.7825184],[8.0907707,46.7843668],[8.090039,46.7876445],[8.0857438,46.7868817],[8.0827846,46.7869291],[8.0773268,46.7859382],[8.0742973,46.7862906],[8.0694454,46.7881922],[8.0598223,46.7863926],[8.0550616,46.788437],[8.0502814,46.7883386],[8.0469368,46.7871155],[8.0493399,46.7882332],[8.0560911,46.7929483],[8.0568499,46.7954771],[8.0551286,46.7972626],[8.0553001,46.799165],[8.0609938,46.8028032],[8.0638622,46.8029819],[8.0645301,46.8061064],[8.064174,46.8084423],[8.0528575,46.8230712],[8.0515015,46.8251835],[8.0470737,46.8289574],[8.0477317,46.8316247],[8.0465934,46.8320338],[8.0423122,46.8365705],[8.0457589,46.8441787],[8.049794,46.8450801],[8.0520524,46.8473331],[8.0559808,46.8493036],[8.0584609,46.8536926],[8.0578291,46.8555437],[8.0595356,46.8586533],[8.0621069,46.8579395],[8.0649619,46.8587389],[8.0672709,46.8624216],[8.0661154,46.8645527],[8.0659784,46.8669742],[8.0696932,46.8687961],[8.0696492,46.8715319],[8.0715913,46.8737188],[8.0702544,46.8761585],[8.0701232,46.8802972],[8.0669969,46.8878276],[8.0696779,46.8907688],[8.0698227,46.89573],[8.073126,46.8971168],[8.0779976,46.8973995],[8.082592,46.8991766],[8.0842688,46.9023568],[8.0860965,46.9042566],[8.0858952,46.9061323],[8.089211,46.9091935],[8.0917264,46.9094405],[8.0948072,46.9111065],[8.0989404,46.9103673],[8.1013351,46.9089418],[8.1040077,46.909114],[8.1086404,46.9082641],[8.1063723,46.9014417],[8.1064285,46.8984439],[8.107602,46.8948917],[8.1112818,46.8927653],[8.1135925,46.8957128],[8.1175163,46.9018159],[8.117784,46.9032189],[8.1211647,46.906457],[8.1224961,46.9094698],[8.126388,46.9134349],[8.1280783,46.9144199],[8.1317369,46.9192494],[8.1355841,46.9227899],[8.13916,46.9233365],[8.1410778,46.9255696],[8.1453622,46.9276947],[8.1480098,46.9296768],[8.1516876,46.9309332],[8.1541016,46.9329061],[8.1573911,46.9337381],[8.1592238,46.9358348],[8.1619532,46.9364647],[8.1648412,46.9396042],[8.1616856,46.9436062],[8.1608241,46.9434618],[8.1534885,46.9499544],[8.1510929,46.9528752],[8.1514693,46.95581],[8.1500976,46.9575261],[8.1549011,46.959051],[8.1547454,46.9600943],[8.1589876,46.9611316],[8.1645307,46.9646676],[8.1685109,46.9652773],[8.1780497,46.9687298],[8.1819167,46.9685261],[8.1873321,46.9717471],[8.1949781,46.9686963],[8.2030205,46.966931],[8.2202502,46.9694543],[8.2259661,46.9690619],[8.2288919,46.9700111],[8.2288726,46.9731468]]]]},"properties":{"ID_0":223,"ISO":"CH-OW","NAME_0":"Switzerland","ID_1":15,"NAME_1":"Obwalden","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Obvaldo|Obwald|Unterwalden-le-Haut|Obwaldo|Sursilvania"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.4681565,46.9965248],[8.4652268,46.9842716],[8.4966213,46.9764297],[8.5195541,46.9797622],[8.5426889,46.9795937],[8.5710407,46.9901574],[8.5749457,46.9831313],[8.5724579,46.9798884],[8.5670509,46.974634],[8.5622082,46.9729247],[8.5630508,46.9702202],[8.560234,46.9655848],[8.5584742,46.964165],[8.5549667,46.9632164],[8.5561564,46.9599024],[8.5556439,46.9565317],[8.5556399,46.9514372],[8.5569621,46.9476882],[8.557074,46.9453712],[8.5555988,46.9421451],[8.5558693,46.9392358],[8.5498216,46.9393378],[8.548885,46.9386326],[8.5443734,46.9394661],[8.5454387,46.936408],[8.5476729,46.9348193],[8.5469033,46.9320847],[8.5438301,46.9289451],[8.544051,46.9278621],[8.5410772,46.9264152],[8.5344365,46.9248921],[8.5317098,46.9235386],[8.5198321,46.9228427],[8.5188377,46.9200195],[8.5089891,46.9156957],[8.5027793,46.9144285],[8.4997655,46.9165586],[8.4981087,46.9187574],[8.4959685,46.9178936],[8.4935861,46.918546],[8.4860862,46.9184712],[8.4849825,46.9171679],[8.4841175,46.9119647],[8.4812592,46.9085319],[8.4706743,46.9059444],[8.4677465,46.9048718],[8.4642629,46.9047375],[8.4632806,46.9027141],[8.4582984,46.8987778],[8.4594737,46.8976168],[8.462808,46.8972139],[8.4668799,46.8977059],[8.4683507,46.8971784],[8.4719356,46.8939313],[8.4729666,46.8914778],[8.4766725,46.8883005],[8.4767196,46.8864595],[8.4790907,46.8825229],[8.4738917,46.8797047],[8.4718355,46.877899],[8.467889,46.8771417],[8.4672005,46.8743992],[8.4702064,46.8709198],[8.4713386,46.8681288],[8.4691435,46.8641063],[8.4693106,46.8620109],[8.4678973,46.8606437],[8.4690684,46.8580286],[8.47088,46.8563355],[8.4708359,46.8548512],[8.4674015,46.8554475],[8.4617512,46.8552153],[8.4541518,46.8537636],[8.4498638,46.8541341],[8.443356,46.8530296],[8.4391117,46.8535275],[8.4357844,46.8518787],[8.4299901,46.8502292],[8.4265723,46.8512774],[8.4194849,46.8522353],[8.4188714,46.8543356],[8.420419,46.8558416],[8.4184075,46.8612367],[8.4187947,46.8627605],[8.4148033,46.8658058],[8.4128201,46.8698465],[8.4113888,46.8683984],[8.409384,46.8686683],[8.405885,46.8663155],[8.405999,46.8654293],[8.401631,46.8640978],[8.3987005,46.8647351],[8.3952856,46.8624742],[8.3917763,46.8585003],[8.3873801,46.85724],[8.3842688,46.854428],[8.3813312,46.8565852],[8.3784511,46.8534198],[8.3747715,46.8479146],[8.3738831,46.8494566],[8.3754722,46.8531401],[8.3750544,46.8579959],[8.378355,46.8625649],[8.3822372,46.8641378],[8.3846579,46.8660484],[8.3817855,46.8680757],[8.380223,46.8703753],[8.3810775,46.8723891],[8.3801001,46.8740301],[8.3734075,46.8744961],[8.3701578,46.8717568],[8.3693509,46.8676152],[8.3641319,46.8669321],[8.3631945,46.8643545],[8.3613047,46.862518],[8.3639616,46.8595322],[8.3708151,46.8595103],[8.3706718,46.8516499],[8.3683339,46.8499053],[8.3689431,46.8463764],[8.3702573,46.8448412],[8.3702808,46.8413426],[8.3715508,46.8378145],[8.3706053,46.8360232],[8.3725147,46.8321646],[8.3741402,46.8310223],[8.3775128,46.8230572],[8.375324,46.8196966],[8.375998,46.8165912],[8.3777708,46.8162916],[8.3802499,46.814405],[8.3849325,46.8134763],[8.3880346,46.8122388],[8.3885882,46.8094554],[8.3872399,46.8066931],[8.3848053,46.8036916],[8.3876259,46.8029701],[8.3965325,46.7954542],[8.4016445,46.7955782],[8.4055232,46.7930973],[8.408012,46.7907812],[8.4114643,46.7898661],[8.4151308,46.7898642],[8.419541,46.7890728],[8.4195719,46.7867466],[8.4230553,46.7837338],[8.4250535,46.7806364],[8.4252736,46.7779531],[8.426375,46.7771489],[8.4264068,46.7744507],[8.4165726,46.7783945],[8.3952224,46.7715167],[8.3911577,46.7777987],[8.3857645,46.7786541],[8.3823173,46.7801894],[8.378891,46.7835313],[8.37735,46.785825],[8.370801,46.7882818],[8.368933,46.787924],[8.3691846,46.7891462],[8.3611115,46.7935599],[8.3552381,46.7947245],[8.3530831,46.7960272],[8.3492217,46.7971195],[8.3476781,46.7988052],[8.3443419,46.7999815],[8.3430063,46.8024029],[8.3432858,46.8045355],[8.3392209,46.8053874],[8.3356514,46.8088842],[8.3320405,46.8111003],[8.331674,46.8124462],[8.3263107,46.8148823],[8.3238438,46.8174355],[8.3221353,46.8202206],[8.3229143,46.8221625],[8.3256092,46.8240357],[8.3322022,46.8259479],[8.334964,46.8275493],[8.3348715,46.8311993],[8.3359353,46.8331111],[8.3322548,46.8336565],[8.3325727,46.8378313],[8.3310149,46.8411626],[8.3291605,46.8421789],[8.3279055,46.8468748],[8.3306789,46.8515318],[8.3300379,46.8537606],[8.3308331,46.8566796],[8.3345488,46.8612451],[8.3343282,46.8649907],[8.3334195,46.8683737],[8.3296455,46.8714283],[8.3300459,46.8742055],[8.3283699,46.8779775],[8.3330371,46.8819564],[8.3331978,46.886174],[8.3381334,46.8906946],[8.3383174,46.8984062],[8.3362855,46.9030333],[8.3371702,46.9062577],[8.3410991,46.9086989],[8.3426007,46.9115027],[8.3434717,46.9149007],[8.3417651,46.9174816],[8.3393479,46.9184119],[8.3405246,46.9215611],[8.3401812,46.9236534],[8.3412286,46.9261894],[8.3381189,46.9293138],[8.334551,46.9280229],[8.3280825,46.9269452],[8.3225251,46.9252995],[8.3173877,46.9249685],[8.3154989,46.9243676],[8.3129655,46.9253698],[8.3096344,46.9243057],[8.3009636,46.9287841],[8.3000687,46.9302397],[8.2909593,46.9327164],[8.288285,46.9338873],[8.2919445,46.9397701],[8.2949572,46.941851],[8.2992067,46.9466792],[8.309905,46.9522216],[8.3061701,46.9557475],[8.3109666,46.9689814],[8.3090712,46.9722865],[8.306895,46.9741495],[8.3071612,46.9759182],[8.3013376,46.9776611],[8.2974363,46.9775051],[8.2900481,46.9760777],[8.281832,46.9758125],[8.2725057,46.9786026],[8.2624827,46.9781057],[8.2609921,46.9803398],[8.2571107,46.9797816],[8.2547332,46.9804532],[8.248058,46.9761503],[8.2408407,46.9736439],[8.2358205,46.9745115],[8.23215,46.9733684],[8.2288726,46.9731468],[8.2230522,46.9757279],[8.2191045,46.9791825],[8.2180924,46.9810946],[8.2209887,46.9831453],[8.2247416,46.9883903],[8.2265424,46.9897437],[8.2280597,46.992616],[8.2310639,46.9925613],[8.2354657,46.9910922],[8.2377075,46.991832],[8.2395181,46.9894889],[8.243962,46.9860157],[8.2483661,46.9874329],[8.2503575,46.9901149],[8.2534023,46.9917504],[8.25525,46.9941413],[8.2600341,46.9962715],[8.2654893,46.9981826],[8.2699613,46.9980948],[8.273798,46.9974398],[8.2779872,46.9979791],[8.2799542,46.9962703],[8.2837341,46.9950564],[8.2888549,46.9945936],[8.2909433,46.9959831],[8.2939722,46.9962099],[8.2947816,46.998147],[8.303198,46.9984001],[8.3057454,46.9978796],[8.310657,46.9980631],[8.3188426,46.9995668],[8.3344451,46.9890111],[8.3685039,47.0199551],[8.3837888,47.0177163],[8.3846947,47.0029207],[8.382823,47.0005463],[8.3855759,46.9983199],[8.3963428,47.0008732],[8.3992144,46.9999101],[8.4039355,46.99973],[8.4055944,47.0001956],[8.4146122,46.9982011],[8.4260033,46.9981425],[8.4267592,47.0022504],[8.427975,47.0172089],[8.469059,47.0092908],[8.4681565,46.9965248]]]},"properties":{"ID_0":223,"ISO":"CH-NW","NAME_0":"Switzerland","ID_1":14,"NAME_1":"Nidwalden","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Nidvaldo|Nidwald|Unterwalden-le-Bas|Nidwaldo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.2488895,46.9162714],[9.2543512,46.9132325],[9.2574883,46.9083978],[9.2669244,46.9032186],[9.2740708,46.9067366],[9.2768935,46.9073488],[9.2804479,46.9072336],[9.2869138,46.9050623],[9.2907325,46.9069667],[9.2933008,46.9070865],[9.3010512,46.9054822],[9.3099293,46.9057655],[9.3126956,46.9047233],[9.3176212,46.9012315],[9.321897,46.9005987],[9.3304399,46.9017967],[9.3386677,46.9020295],[9.3431054,46.8984862],[9.3470318,46.8996724],[9.3555248,46.8981132],[9.3655032,46.8969199],[9.367996,46.8977237],[9.3746489,46.8972892],[9.3816947,46.8976333],[9.3872826,46.8966139],[9.394294,46.8934132],[9.400591,46.8923462],[9.40994,46.8919759],[9.4135233,46.8912556],[9.4158888,46.8900923],[9.4198935,46.8895669],[9.4253082,46.8876622],[9.4282046,46.8855432],[9.4332544,46.8845738],[9.4378018,46.8797379],[9.4406423,46.8787707],[9.4488629,46.8728865],[9.45254,46.874617],[9.4542782,46.8768809],[9.4559388,46.881209],[9.4542546,46.8860551],[9.4582931,46.8866497],[9.4668226,46.8860876],[9.4697363,46.8914727],[9.4677801,46.8963305],[9.467249,46.8998878],[9.4710062,46.9014202],[9.4723334,46.9040538],[9.4754217,46.9064212],[9.4822737,46.9082093],[9.4879923,46.9122928],[9.4785736,46.9156817],[9.4777845,46.9205665],[9.4791208,46.9222092],[9.4804315,46.9259786],[9.483271,46.9276979],[9.4857178,46.9303797],[9.4866712,46.933234],[9.4865233,46.935524],[9.4937076,46.937716],[9.4928638,46.9392167],[9.4986213,46.9450791],[9.5002045,46.9495933],[9.5029251,46.9493426],[9.5045972,46.9536684],[9.5058699,46.9541872],[9.5182555,46.9556507],[9.5188182,46.9565006],[9.5181317,46.9605252],[9.5186979,46.9650978],[9.5173055,46.967447],[9.5189416,46.9703551],[9.5230191,46.9725646],[9.5277151,46.972852],[9.5286421,46.9738731],[9.5348681,46.9746422],[9.5412247,46.9742934],[9.5455732,46.9765687],[9.5215774,46.9976232],[9.5106838,47.0091449],[9.5083283,47.0151058],[9.5060619,47.0186885],[9.4852299,47.040302],[9.4814701,47.0440851],[9.4772452,47.049055],[9.4757865,47.0517524],[9.4768917,47.0546023],[9.4787905,47.0556586],[9.481792,47.0546803],[9.4818879,47.0525407],[9.4843747,47.0492595],[9.4857484,47.0490919],[9.4913076,47.0562517],[9.4933243,47.0565165],[9.4973872,47.0541601],[9.499336,47.0548116],[9.4999962,47.0571275],[9.5027639,47.0562259],[9.5120732,47.0568181],[9.5141386,47.0573392],[9.5165385,47.0600894],[9.5395114,47.0650047],[9.5432038,47.0636781],[9.5446973,47.06238],[9.5488898,47.0610121],[9.5532726,47.0569836],[9.553492,47.0530919],[9.5545504,47.050261],[9.5569197,47.0485165],[9.5597869,47.0485724],[9.5645747,47.0508387],[9.5720922,47.0521059],[9.576013,47.053272],[9.5821757,47.0528248],[9.5834085,47.053688],[9.588064,47.0548518],[9.5916895,47.057157],[9.5997619,47.0589706],[9.603472,47.0617744],[9.6071981,47.0607084],[9.6108043,47.0576184],[9.6157433,47.0552971],[9.6172016,47.0536259],[9.6222079,47.0524664],[9.6326718,47.0512522],[9.6365412,47.051703],[9.6413247,47.0539224],[9.6411383,47.0551638],[9.6450573,47.059775],[9.6488202,47.0595091],[9.6543383,47.05833],[9.6590893,47.0582426],[9.6628382,47.0595173],[9.6666649,47.0599419],[9.6692706,47.0592547],[9.6726832,47.0597122],[9.6798285,47.0622131],[9.6818398,47.0620979],[9.6820232,47.0589515],[9.6881914,47.0552262],[9.6924962,47.054591],[9.69756,47.0523884],[9.7015891,47.0522048],[9.7076239,47.0538077],[9.7085942,47.0516644],[9.7056711,47.0503506],[9.7084679,47.0473075],[9.7149483,47.0451474],[9.7185544,47.0433442],[9.724684,47.0440004],[9.7287242,47.0433088],[9.7315748,47.0434567],[9.7346277,47.0423009],[9.7382451,47.0418899],[9.7417333,47.0425962],[9.7422336,47.0414942],[9.7452376,47.0411041],[9.7474502,47.0370584],[9.7540677,47.0368528],[9.7569456,47.0378406],[9.7630769,47.0373717],[9.7673197,47.038771],[9.7783097,47.0388214],[9.7811003,47.0379742],[9.7843619,47.0385452],[9.7866756,47.0357949],[9.7892403,47.0349863],[9.7918885,47.0316862],[9.7956533,47.0302093],[9.8015179,47.0289443],[9.8025864,47.0275084],[9.807546,47.0236313],[9.8123259,47.0217325],[9.8154465,47.0225433],[9.8240316,47.0196637],[9.8258411,47.0176384],[9.828739,47.0168225],[9.8307567,47.0143189],[9.8381429,47.0129497],[9.8410085,47.0151188],[9.8461578,47.0162201],[9.8527287,47.0164129],[9.8570648,47.0189447],[9.8597449,47.0232098],[9.8615704,47.0223252],[9.8692448,47.0211666],[9.8711818,47.0215866],[9.8762464,47.0212266],[9.8794015,47.0195565],[9.8803497,47.0172237],[9.8772638,47.0162498],[9.8748128,47.0140258],[9.8711507,47.0130577],[9.8732561,47.0063484],[9.8790379,47.0037113],[9.883781,47.0019829],[9.8887771,47.0007231],[9.8893344,46.9952654],[9.8905819,46.9918511],[9.8923039,46.9903589],[9.8919566,46.9889257],[9.8848165,46.9854648],[9.8833473,46.9832018],[9.8845489,46.9808478],[9.879923,46.977031],[9.879404,46.9754665],[9.8756293,46.9735577],[9.8747183,46.9720605],[9.8761823,46.9693527],[9.8754629,46.967261],[9.8723925,46.9651592],[9.8711173,46.9632751],[9.8732703,46.9604918],[9.877975,46.957836],[9.8787994,46.9565917],[9.87734,46.9543141],[9.8769917,46.9513825],[9.8748781,46.9503903],[9.8766608,46.9477427],[9.8764716,46.9445647],[9.8772097,46.9423552],[9.8765706,46.9407057],[9.8806299,46.9402165],[9.8776839,46.9381338],[9.876293,46.9351286],[9.879917,46.9350666],[9.8831629,46.9341887],[9.8851883,46.9328529],[9.8948591,46.9315263],[9.8976623,46.9302133],[9.9000247,46.9273371],[9.906153,46.9258293],[9.9079539,46.9249237],[9.9121116,46.9260884],[9.9147122,46.9247254],[9.9165485,46.92167],[9.9227769,46.9182428],[9.9283774,46.916877],[9.9372253,46.9133112],[9.9419654,46.9132955],[9.946121,46.9123495],[9.9544638,46.9153227],[9.9590704,46.9160246],[9.9611544,46.9148518],[9.9631115,46.9123974],[9.9665663,46.9122226],[9.9715037,46.9133778],[9.9731379,46.9152198],[9.9778951,46.9159003],[9.980188,46.9141031],[9.9822277,46.9092782],[9.9826533,46.9060978],[9.9868058,46.9055273],[9.9901165,46.9024793],[9.9956042,46.9022842],[10.0007348,46.8999126],[10.0059087,46.8987998],[10.0097924,46.9005151],[10.0144803,46.900124],[10.0177002,46.9016237],[10.0198597,46.898779],[10.023369,46.8964873],[10.0264672,46.8958057],[10.0292152,46.8911632],[10.0322055,46.8880172],[10.034654,46.8865802],[10.0374187,46.8867832],[10.0412394,46.883926],[10.0424375,46.8804396],[10.0455458,46.879945],[10.0524046,46.8758864],[10.0518401,46.872057],[10.0506561,46.8686045],[10.0511978,46.8639422],[10.0548814,46.8617049],[10.0574651,46.8619687],[10.0594055,46.8607876],[10.06332,46.8615573],[10.0686244,46.8612294],[10.0741979,46.8618886],[10.0774736,46.8615565],[10.0811233,46.8603852],[10.08468,46.860377],[10.0872294,46.861189],[10.0886731,46.8598467],[10.0926731,46.8581338],[10.0916928,46.8549139],[10.0923087,46.8516866],[10.0961996,46.849616],[10.0974259,46.8480245],[10.1009457,46.8458682],[10.1051887,46.8409011],[10.1130594,46.8421755],[10.1141918,46.8432045],[10.1191889,46.8441904],[10.1201647,46.8463834],[10.1229115,46.8484387],[10.1315968,46.8474044],[10.1403594,46.847557],[10.1434357,46.8487618],[10.1449726,46.8510186],[10.1470865,46.8514038],[10.1528539,46.8506346],[10.1557243,46.8496945],[10.1574114,46.8478611],[10.1617933,46.8505919],[10.1639437,46.8510515],[10.1687041,46.8506142],[10.1703257,46.8513043],[10.1717562,46.8536641],[10.1784863,46.854043],[10.1820054,46.8556756],[10.1834951,46.8590061],[10.1856717,46.8606736],[10.1894793,46.8618247],[10.1912016,46.862983],[10.1936587,46.8664423],[10.1997333,46.8664932],[10.2038237,46.864614],[10.2091894,46.8648134],[10.2152678,46.866111],[10.2185383,46.8672197],[10.2229066,46.8663361],[10.2278515,46.8661371],[10.2319193,46.8667296],[10.2308372,46.8694364],[10.2327399,46.8710162],[10.231987,46.8756253],[10.233914,46.8778339],[10.2345145,46.8799469],[10.2339986,46.8830518],[10.2348302,46.8846816],[10.2306794,46.8890049],[10.2282357,46.8896208],[10.2266252,46.893071],[10.2271446,46.8970799],[10.2293282,46.8977447],[10.2318523,46.899813],[10.2343816,46.9040729],[10.2339092,46.9056878],[10.236635,46.9121928],[10.2358971,46.9133839],[10.2371955,46.9158555],[10.2400071,46.916695],[10.2421996,46.9193573],[10.2406159,46.9239623],[10.2416798,46.931629],[10.2524596,46.9307199],[10.2598382,46.9294909],[10.2668744,46.9288293],[10.2898876,46.922889],[10.2910292,46.9232596],[10.2968663,46.9199499],[10.3007876,46.9246539],[10.3095136,46.9258227],[10.3138511,46.9251692],[10.3169971,46.9259351],[10.3169708,46.9311162],[10.3127556,46.9344528],[10.3100321,46.935837],[10.3073013,46.9383269],[10.3063761,46.941232],[10.3085991,46.9434518],[10.3077378,46.9470799],[10.3093489,46.9501997],[10.3137645,46.9512015],[10.3191773,46.951766],[10.3208398,46.9514466],[10.3254654,46.9525123],[10.3278289,46.9539816],[10.3296795,46.9589488],[10.3290527,46.9618265],[10.3295077,46.9642765],[10.3312392,46.9668976],[10.3340953,46.9694795],[10.3345108,46.9725173],[10.3397812,46.9769764],[10.3407049,46.9783736],[10.3399905,46.9813093],[10.3445474,46.982715],[10.346313,46.9859125],[10.3465808,46.989347],[10.3490277,46.9906636],[10.3556418,46.9923308],[10.3587774,46.9914678],[10.3658774,46.9915507],[10.372071,46.9906726],[10.3735667,46.9925676],[10.3784223,46.9948498],[10.3803042,46.9970191],[10.384695,46.9999965],[10.3893298,47.0005271],[10.3983091,46.9971253],[10.4021809,46.9908622],[10.4077518,46.9875997],[10.4124679,46.9826836],[10.4179086,46.9811147],[10.4235728,46.9782677],[10.4271457,46.974953],[10.4274632,46.9725996],[10.4262508,46.9691871],[10.4229146,46.9653867],[10.4233527,46.9642468],[10.4221069,46.9601907],[10.426142,46.957465],[10.4295289,46.9559743],[10.4342301,46.9563853],[10.4375825,46.9558621],[10.4407241,46.9538679],[10.4447654,46.9537092],[10.4491413,46.9523122],[10.4557931,46.9527064],[10.456912,46.950851],[10.461129,46.9496705],[10.4624309,46.9486251],[10.4689361,46.9470178],[10.4717125,46.9451318],[10.4730957,46.9429213],[10.4760413,46.941222],[10.4833544,46.9390409],[10.4880681,46.9387389],[10.4893516,46.9377888],[10.4873413,46.9359781],[10.4852822,46.9314418],[10.4855011,46.9298171],[10.4880661,46.9280338],[10.4882935,46.9262776],[10.4863709,46.9220018],[10.48683,46.9204389],[10.4852687,46.9186203],[10.4862047,46.9154534],[10.4833202,46.9124849],[10.4786629,46.9107825],[10.4786817,46.9075541],[10.477666,46.9033216],[10.4752528,46.9013198],[10.475649,46.8973405],[10.4750778,46.8942849],[10.4721136,46.8921284],[10.4722012,46.8911793],[10.4691753,46.8893188],[10.4647845,46.8845064],[10.4668765,46.8834551],[10.4692174,46.8810977],[10.469728,46.8771649],[10.4712517,46.8729554],[10.4702856,46.866701],[10.4679946,46.8621059],[10.4696542,46.8549127],[10.4717956,46.8487714],[10.4686352,46.8474359],[10.4665441,46.8438408],[10.4638636,46.8412953],[10.4663928,46.8394542],[10.4654756,46.8351291],[10.4627052,46.8342869],[10.4600512,46.8346384],[10.4591169,46.8317392],[10.4565903,46.8301893],[10.4603936,46.8245409],[10.4559242,46.8220043],[10.4560236,46.8184751],[10.4578297,46.8165576],[10.4507712,46.8043124],[10.4476632,46.8011534],[10.4452366,46.8006144],[10.442674,46.7989792],[10.4389801,46.7976389],[10.4295439,46.7967801],[10.4292779,46.7951275],[10.4267693,46.7936908],[10.4279246,46.7913414],[10.4266306,46.7894071],[10.422706,46.7882431],[10.4234639,46.7868853],[10.429243,46.7851735],[10.4308773,46.7828668],[10.4336918,46.7819734],[10.4352072,46.7775342],[10.4393957,46.7752064],[10.4416848,46.7718639],[10.441685,46.7671075],[10.4435586,46.7638027],[10.444237,46.7598206],[10.4426021,46.7538396],[10.4413999,46.7520382],[10.4356866,46.7527511],[10.4230802,46.7452739],[10.4129086,46.7407901],[10.4116261,46.7385573],[10.407613,46.7370145],[10.4064628,46.7359132],[10.4018476,46.7345539],[10.4001258,46.7327795],[10.4045418,46.7302342],[10.4076912,46.72918],[10.4093955,46.7275602],[10.4095618,46.7258275],[10.4156884,46.7199063],[10.4187612,46.7190186],[10.4175522,46.7157347],[10.4180094,46.7145345],[10.4153491,46.7121014],[10.4153087,46.7094739],[10.4141863,46.7076308],[10.4112541,46.705952],[10.4075981,46.7049576],[10.4033022,46.7055039],[10.3965494,46.695779],[10.3957422,46.6929626],[10.3932955,46.6892075],[10.3893104,46.6885753],[10.3866807,46.68706],[10.3835413,46.6872772],[10.3817965,46.6843049],[10.3844775,46.6828826],[10.3879819,46.6775979],[10.38958,46.6764493],[10.3904715,46.6736177],[10.3923623,46.6716063],[10.3910408,46.6677698],[10.3921755,46.665805],[10.3927578,46.661631],[10.3909743,46.6589047],[10.3921149,46.6551393],[10.3942323,46.6546485],[10.3964227,46.6524724],[10.3966774,46.6495968],[10.4002343,46.6458365],[10.4017064,46.6404623],[10.3999539,46.6384736],[10.4013023,46.6371815],[10.4066242,46.635301],[10.4092491,46.6349718],[10.4197466,46.6381166],[10.426327,46.6381371],[10.4345195,46.6390856],[10.441825,46.6390033],[10.4461258,46.6412769],[10.4546651,46.6374645],[10.4628151,46.632867],[10.4648833,46.6311744],[10.4816727,46.6200725],[10.487209,46.6156155],[10.4919838,46.6152299],[10.4912662,46.6113389],[10.4872063,46.6085014],[10.4844756,46.6050651],[10.4855422,46.6015928],[10.487039,46.6005599],[10.4871872,46.5968531],[10.4846792,46.5950047],[10.4837629,46.5921557],[10.4849725,46.5903975],[10.4873631,46.5895683],[10.4855908,46.5836271],[10.483398,46.5810695],[10.4846946,46.5774329],[10.4805395,46.5747602],[10.4793311,46.5723493],[10.4774155,46.5711551],[10.4766047,46.5675955],[10.4746861,46.5666535],[10.4750994,46.5649139],[10.4740485,46.5627427],[10.4777266,46.5571927],[10.4761811,46.5555787],[10.4744124,46.5514965],[10.4710842,46.5483669],[10.4722341,46.5435309],[10.4703916,46.5422666],[10.4678141,46.5422347],[10.4651334,46.5411838],[10.4592919,46.5408898],[10.458495,46.5364942],[10.4561942,46.5352585],[10.4527897,46.530709],[10.4480429,46.533403],[10.4458626,46.5336955],[10.4366209,46.5373572],[10.4336212,46.5413005],[10.4289272,46.5443585],[10.4249128,46.5464064],[10.4182509,46.5513348],[10.4140498,46.550914],[10.4091576,46.5493081],[10.3999831,46.5448102],[10.397115,46.5439435],[10.3877508,46.5474654],[10.3842532,46.5500455],[10.3799751,46.5497697],[10.3757821,46.5525233],[10.3731624,46.5525428],[10.363998,46.5554492],[10.3558188,46.5553587],[10.3518501,46.5558562],[10.3497514,46.5527139],[10.3501541,46.5494139],[10.3444816,46.5463413],[10.3418334,46.5437155],[10.3392691,46.5428314],[10.3367826,46.5432623],[10.3347084,46.5457753],[10.3304931,46.5492754],[10.3254591,46.5517458],[10.3209714,46.5499076],[10.3183236,46.5481704],[10.3160708,46.5484431],[10.3114788,46.5467019],[10.3081357,46.5494274],[10.3023674,46.5489608],[10.296064,46.5499758],[10.2944282,46.5519215],[10.2964924,46.5549125],[10.2960231,46.5589873],[10.2927369,46.5611747],[10.2897935,46.5644333],[10.2889783,46.5686061],[10.2874589,46.5703447],[10.2819259,46.5710235],[10.2725133,46.574417],[10.2719538,46.5758742],[10.2693435,46.5776755],[10.2665243,46.5768087],[10.2638025,46.5770918],[10.2577458,46.5739212],[10.2541197,46.5712463],[10.2464573,46.574591],[10.2442138,46.5783397],[10.2446874,46.5798848],[10.2440687,46.5839372],[10.2429049,46.5849268],[10.2424428,46.5880387],[10.2414632,46.5891131],[10.24253,46.5929117],[10.2454356,46.5953816],[10.2483822,46.6006666],[10.2513006,46.6024335],[10.2527141,46.6051296],[10.2556248,46.6084402],[10.2588761,46.6104438],[10.2541135,46.6139856],[10.2447744,46.6221686],[10.2411749,46.6270468],[10.2403034,46.631359],[10.2402521,46.6350942],[10.2388767,46.6353523],[10.2353727,46.6335916],[10.2290208,46.6315139],[10.2274436,46.6299566],[10.2241724,46.629126],[10.2196402,46.6239303],[10.2199523,46.6215821],[10.2153152,46.6169502],[10.2063572,46.6207704],[10.1993144,46.6222012],[10.1953822,46.6226507],[10.1931855,46.6235239],[10.1927506,46.6259355],[10.1879734,46.6255876],[10.1830538,46.6239711],[10.173829,46.6200393],[10.162405,46.6157068],[10.1605689,46.6161795],[10.1567629,46.6148234],[10.1534619,46.615019],[10.1435054,46.6106882],[10.137346,46.6107421],[10.1366743,46.6078577],[10.1345933,46.6078931],[10.1323733,46.6062967],[10.1276411,46.6050826],[10.1221676,46.6062246],[10.119863,46.6058382],[10.1093074,46.6086999],[10.1066477,46.6106974],[10.1029563,46.6108142],[10.1013674,46.6081208],[10.09901,46.605901],[10.0993551,46.6034011],[10.1013903,46.6009774],[10.0999939,46.5990369],[10.0979893,46.5980276],[10.0970803,46.592994],[10.1011538,46.5891819],[10.100216,46.5860917],[10.101527,46.585082],[10.1007414,46.5827519],[10.0990107,46.5821509],[10.0955767,46.5773425],[10.0881843,46.5760894],[10.0786603,46.575125],[10.0786451,46.5730405],[10.0799632,46.5711171],[10.0830962,46.5695751],[10.085395,46.5672287],[10.0777113,46.5607231],[10.0735164,46.5601972],[10.0707796,46.5579425],[10.0708512,46.5563039],[10.0688879,46.5541359],[10.0694284,46.5524136],[10.0678807,46.5502441],[10.0652842,46.5496854],[10.0626763,46.5480148],[10.0616225,46.5457754],[10.0570905,46.5446658],[10.0516802,46.5450387],[10.050207,46.5440473],[10.0467533,46.5440471],[10.0463365,46.5424985],[10.0439582,46.540118],[10.0439683,46.5375809],[10.04628,46.535249],[10.0528575,46.5324573],[10.0534402,46.5306745],[10.0508715,46.5296129],[10.0511143,46.5275193],[10.0525881,46.526129],[10.0539911,46.5225884],[10.0536093,46.5181623],[10.0514217,46.5133003],[10.0468062,46.5105146],[10.0423723,46.5101254],[10.0428538,46.5065443],[10.0455304,46.5017629],[10.049026,46.4997966],[10.0455677,46.4962389],[10.0448572,46.4913556],[10.0476999,46.4874463],[10.0475051,46.486091],[10.0446054,46.4839316],[10.042841,46.4800577],[10.0432497,46.4783747],[10.0496042,46.4739866],[10.0517387,46.4714802],[10.0515426,46.4677374],[10.0522203,46.4659726],[10.0543439,46.4646302],[10.0524761,46.4604087],[10.0465777,46.4574984],[10.0463625,46.4556225],[10.0442693,46.4552015],[10.0418509,46.4523193],[10.0424329,46.4490125],[10.0391547,46.446944],[10.0403298,46.444693],[10.0430172,46.4421916],[10.0471645,46.442007],[10.0507179,46.4411513],[10.0539236,46.4395966],[10.0562651,46.4408692],[10.0582456,46.4382584],[10.0574925,46.4361709],[10.0587785,46.430103],[10.0625278,46.4270355],[10.0655329,46.4262309],[10.0742103,46.4285066],[10.0772386,46.4280474],[10.0802553,46.4254169],[10.0792046,46.423111],[10.0807996,46.4210606],[10.0825115,46.4217427],[10.0869802,46.4213468],[10.0908891,46.4225906],[10.0943116,46.4224271],[10.0970927,46.4212395],[10.1006944,46.4213424],[10.1034674,46.4252504],[10.1066767,46.425797],[10.1085938,46.4281267],[10.1154974,46.4260595],[10.1172123,46.4260332],[10.1192165,46.4292049],[10.1223694,46.430291],[10.126863,46.4303122],[10.1295724,46.4317839],[10.1311293,46.4313466],[10.1329947,46.4290837],[10.1391965,46.4288545],[10.1431841,46.4283225],[10.1426008,46.4270143],[10.1442557,46.4244922],[10.1471094,46.4231248],[10.14937,46.4128219],[10.15749,46.4159315],[10.161158,46.4154217],[10.1614936,46.4140077],[10.1668839,46.4073848],[10.1626405,46.4050963],[10.1618481,46.4029918],[10.1620797,46.3999653],[10.1632901,46.3967326],[10.1628534,46.3939395],[10.1639813,46.390639],[10.1619296,46.3874525],[10.1587467,46.385611],[10.1557316,46.3848913],[10.1492913,46.3856771],[10.1477886,46.3867993],[10.1426086,46.3862241],[10.1353152,46.3824814],[10.1324464,46.3801284],[10.1274641,46.3775456],[10.1284106,46.3740242],[10.1262617,46.3712694],[10.1275137,46.3667558],[10.1290943,46.3630346],[10.1291017,46.3608681],[10.1239625,46.3594657],[10.1188455,46.357145],[10.1152659,46.3539049],[10.1123312,46.3525403],[10.1099274,46.3531432],[10.1080369,46.3516795],[10.1092244,46.3464128],[10.1085651,46.3442271],[10.1059441,46.3421969],[10.1066979,46.3407563],[10.1054969,46.3392153],[10.1053243,46.3345219],[10.1045192,46.3330906],[10.1102809,46.3273934],[10.1140525,46.3210398],[10.113957,46.3189176],[10.1165953,46.3140865],[10.1208364,46.3123672],[10.1235254,46.3120346],[10.1278439,46.3098765],[10.1295424,46.3081433],[10.1334781,46.3060564],[10.1386677,46.3046767],[10.1379389,46.3011167],[10.1390678,46.2994587],[10.1475858,46.2947008],[10.1526666,46.2940259],[10.1542133,46.2927865],[10.1566003,46.2892857],[10.1539768,46.2862862],[10.1559876,46.2846644],[10.1605909,46.2836181],[10.1622731,46.2824339],[10.1617629,46.2809742],[10.1617364,46.2753202],[10.1634145,46.2746147],[10.1634078,46.2712969],[10.1679224,46.2698916],[10.171995,46.2665954],[10.1733991,46.262932],[10.1765029,46.2582769],[10.1749126,46.2546131],[10.1508508,46.2396429],[10.1460027,46.2301253],[10.1350195,46.2263736],[10.1323004,46.2248788],[10.1285913,46.2255956],[10.1232544,46.2237905],[10.1189096,46.2253699],[10.1091386,46.2257282],[10.1034622,46.2285714],[10.0990701,46.2276184],[10.0949625,46.2285694],[10.0885663,46.2277982],[10.081091,46.2254514],[10.0773185,46.2219438],[10.0714427,46.2180702],[10.0708307,46.2171555],[10.0669074,46.2179936],[10.0661923,46.2196587],[10.0630611,46.2201974],[10.0585906,46.2249775],[10.0561447,46.2252187],[10.0514637,46.2277351],[10.043943,46.2296387],[10.044573,46.2311958],[10.0494267,46.2327712],[10.0536771,46.2358245],[10.0544461,46.2381229],[10.053427,46.2412364],[10.0542672,46.2426866],[10.0570576,46.2441762],[10.0570829,46.2467471],[10.0604307,46.2479576],[10.060535,46.2507082],[10.0592086,46.2521385],[10.0587597,46.2557447],[10.0561318,46.2569862],[10.0579957,46.2582112],[10.0554891,46.2628096],[10.0555243,46.2658412],[10.0536561,46.2670829],[10.0511882,46.2670641],[10.0457666,46.2698558],[10.0435907,46.2700506],[10.0421396,46.2716306],[10.0378399,46.2740636],[10.0330185,46.2756747],[10.0312066,46.2770403],[10.0251715,46.2777379],[10.0200792,46.2791582],[10.0166901,46.2794503],[10.0105637,46.2810084],[10.0003816,46.2829184],[9.9959074,46.2849432],[9.9946745,46.2871325],[9.9941438,46.2914286],[9.9927133,46.2928896],[9.991658,46.2959372],[9.9960636,46.2973546],[9.996569,46.2983733],[10.0007606,46.3015338],[10.0008427,46.3037381],[9.9982298,46.3047401],[9.9962594,46.3073353],[9.9990401,46.3091989],[10.0000553,46.3131759],[9.9947659,46.3138643],[9.994295,46.314955],[9.9865959,46.3191885],[9.9852471,46.3209075],[9.9808979,46.3229652],[9.9820356,46.3260792],[9.9841813,46.3285165],[9.9838793,46.3295904],[9.9857293,46.3320602],[9.9852483,46.3332114],[9.9886362,46.3361927],[9.9906192,46.3371362],[9.9909809,46.3396445],[9.9961194,46.3426053],[9.9944297,46.3464743],[9.9949241,46.3490572],[9.9962877,46.3511702],[9.99355,46.3524065],[9.9895158,46.3523907],[9.9859793,46.3515124],[9.9771742,46.35742],[9.9737843,46.3581027],[9.9710241,46.3609431],[9.964455,46.3637742],[9.9557037,46.373638],[9.958462,46.3781242],[9.9527592,46.3793014],[9.9504923,46.3784996],[9.9421575,46.3768696],[9.9344614,46.3748487],[9.93017,46.3718985],[9.929952,46.3703554],[9.9312758,46.3682508],[9.9291626,46.3666922],[9.9251078,46.3660192],[9.9228845,46.3704913],[9.9195144,46.3714767],[9.9170057,46.3703425],[9.9149221,46.3735447],[9.9106763,46.3779152],[9.909723,46.3796118],[9.9063797,46.3807596],[9.90152,46.3788134],[9.8983139,46.3765889],[9.8962764,46.3767654],[9.8938936,46.3756884],[9.8861104,46.3732478],[9.8839358,46.373032],[9.8824492,46.3701067],[9.8802637,46.3682026],[9.8732732,46.3650962],[9.8683192,46.3623584],[9.8648249,46.3646274],[9.8628183,46.3634194],[9.8582624,46.3639281],[9.8538546,46.3631798],[9.8494721,46.3645781],[9.8461146,46.361892],[9.8419725,46.3615893],[9.8400754,46.3624656],[9.8381303,46.3610975],[9.8327163,46.3612507],[9.8318413,46.3590198],[9.8276001,46.3554186],[9.8215846,46.3519689],[9.8183191,46.3496752],[9.815044,46.3501478],[9.8094231,46.3484354],[9.8080888,46.3471875],[9.8045846,46.346045],[9.8023565,46.3439485],[9.7933266,46.3432806],[9.7875537,46.3406697],[9.7847185,46.3407425],[9.7816817,46.3384233],[9.7785726,46.3352751],[9.7761604,46.3348149],[9.7698082,46.3357837],[9.7649419,46.3375915],[9.7613817,46.339982],[9.75762,46.3441613],[9.7540348,46.3456918],[9.7472645,46.3477542],[9.7459575,46.3497837],[9.743593,46.3512181],[9.7390738,46.3499581],[9.7371736,46.350781],[9.7338119,46.3488026],[9.7300423,46.3455751],[9.7249404,46.3429575],[9.7229422,46.3407052],[9.7253426,46.3378323],[9.7257591,46.3356617],[9.7275784,46.3326748],[9.723422,46.3310135],[9.7231246,46.3287696],[9.7194344,46.3272118],[9.7172757,46.3239658],[9.7177705,46.3219528],[9.7230421,46.3211175],[9.7261414,46.319493],[9.7259767,46.314203],[9.7248142,46.3103444],[9.7184346,46.3064956],[9.7163409,46.3020898],[9.7144902,46.2970151],[9.7154031,46.2954392],[9.7144877,46.2928922],[9.7098321,46.2918122],[9.7077661,46.2919336],[9.7018543,46.2910526],[9.6979218,46.2919161],[9.6961873,46.2930732],[9.6923026,46.2939014],[9.6882974,46.2936283],[9.6814831,46.2970857],[9.681231,46.2998416],[9.6764861,46.3028918],[9.6747297,46.3026958],[9.6728981,46.3009752],[9.6699644,46.2998271],[9.669391,46.2964487],[9.6637668,46.2970111],[9.6600239,46.295916],[9.6554478,46.2931034],[9.6528533,46.2931949],[9.6502401,46.2919545],[9.6500148,46.2899033],[9.6454061,46.2888206],[9.6421173,46.2868616],[9.6346724,46.2860002],[9.6251229,46.2882287],[9.6186696,46.2874857],[9.6179258,46.2887155],[9.6120042,46.2923078],[9.6103558,46.294581],[9.6070308,46.2941611],[9.6029206,46.2946169],[9.5991365,46.295772],[9.592701,46.293536],[9.5898905,46.2951124],[9.5865422,46.2952827],[9.5831489,46.2943382],[9.5794922,46.2950968],[9.5731097,46.2992148],[9.570837,46.2989681],[9.5670025,46.3014],[9.5644118,46.3018057],[9.5609641,46.3034974],[9.5601284,46.3060353],[9.5573873,46.3065473],[9.5545189,46.3057646],[9.5523245,46.3034755],[9.5495379,46.3023421],[9.5425967,46.305986],[9.5339479,46.3121612],[9.5300867,46.316027],[9.5253825,46.3200373],[9.5238995,46.322491],[9.5181533,46.327491],[9.5180155,46.3305127],[9.5167095,46.3326066],[9.5135279,46.3331339],[9.513781,46.3355022],[9.5115785,46.3365288],[9.5106598,46.3418709],[9.5094559,46.3460099],[9.5082335,46.3480309],[9.5083032,46.3516552],[9.5052945,46.3523837],[9.503154,46.3545405],[9.5004483,46.3560432],[9.5000741,46.3590717],[9.4983233,46.3622616],[9.4962684,46.3644374],[9.4922835,46.3657151],[9.4873064,46.3661681],[9.4820629,46.3676277],[9.4794356,46.3711837],[9.4759326,46.3706113],[9.4725933,46.3722978],[9.4648483,46.3737686],[9.4611859,46.3758563],[9.4632182,46.380228],[9.4612265,46.3834259],[9.4636661,46.3832477],[9.4661492,46.3849163],[9.4658501,46.3864052],[9.4687973,46.3889361],[9.4664888,46.3919246],[9.4668174,46.398315],[9.4657161,46.3991949],[9.4643556,46.4047521],[9.4614034,46.4095105],[9.4617052,46.4118307],[9.4601121,46.4138255],[9.4558756,46.4163566],[9.4546405,46.4189715],[9.4560876,46.4287797],[9.4580181,46.4337381],[9.4573004,46.436568],[9.4606971,46.4422811],[9.4595859,46.4457994],[9.4598539,46.4505811],[9.4586866,46.4570621],[9.4599259,46.461516],[9.4592771,46.4633058],[9.4635386,46.4662398],[9.4655789,46.4695051],[9.4637557,46.4744247],[9.4639177,46.4784834],[9.4628626,46.4805002],[9.4496915,46.4799851],[9.4490853,46.4843814],[9.4610397,46.4848517],[9.460964,46.4867493],[9.4620864,46.4901374],[9.4617697,46.4933417],[9.4626562,46.4980198],[9.4621446,46.5023601],[9.4610555,46.5054919],[9.4642553,46.5077425],[9.462694,46.5088606],[9.4585357,46.5083555],[9.456622,46.5074581],[9.4550605,46.5053257],[9.4341806,46.4979128],[9.4317838,46.4955509],[9.4299268,46.4926626],[9.4275993,46.491634],[9.4246839,46.4888925],[9.4263108,46.4856651],[9.4242461,46.4820786],[9.4244991,46.4779565],[9.4229422,46.4751991],[9.4180989,46.4725514],[9.414145,46.4680517],[9.4116592,46.4668887],[9.4092944,46.4668403],[9.404421,46.4686821],[9.3985378,46.469911],[9.3956833,46.4716785],[9.3904673,46.4733141],[9.3885569,46.4757797],[9.3880986,46.4789849],[9.385414,46.4804508],[9.3852827,46.4823129],[9.3820891,46.4826078],[9.3799799,46.4843323],[9.3764055,46.4846799],[9.3745657,46.4883163],[9.3715533,46.4892495],[9.3684488,46.4942198],[9.3698088,46.4978308],[9.3731728,46.4991891],[9.3733498,46.5039614],[9.368342,46.5051288],[9.3623707,46.5095095],[9.3584052,46.5073538],[9.3571648,46.5052813],[9.3547621,46.504289],[9.3510964,46.5053857],[9.3477918,46.5051498],[9.342052,46.5038664],[9.3390704,46.5038084],[9.3370633,46.5060053],[9.3205203,46.5049105],[9.3141879,46.503983],[9.310899,46.5040583],[9.3051236,46.5009949],[9.3013319,46.5007279],[9.2975261,46.4991125],[9.2923411,46.498329],[9.2913048,46.4974229],[9.2868557,46.4974686],[9.2817785,46.4960455],[9.281431,46.4943713],[9.2788144,46.4916368],[9.2793338,46.4894788],[9.2779697,46.4883231],[9.2765963,46.4853589],[9.2742019,46.483625],[9.2747314,46.481609],[9.2773475,46.4791696],[9.2760023,46.4750712],[9.2760053,46.4717041],[9.2738807,46.4698417],[9.274554,46.4630445],[9.2781984,46.4617349],[9.2750106,46.4594974],[9.2750546,46.4584124],[9.2721573,46.4550922],[9.269926,46.4534015],[9.2654765,46.451095],[9.2623978,46.450089],[9.2522404,46.4493609],[9.2490994,46.4469879],[9.2469833,46.4468066],[9.2487576,46.4381618],[9.2479564,46.4360726],[9.2482346,46.4332933],[9.2496466,46.4311536],[9.252541,46.4297613],[9.2538834,46.4282678],[9.2571465,46.42717],[9.2584518,46.4257013],[9.2618738,46.4239971],[9.2636366,46.4205189],[9.2677829,46.4198636],[9.2700232,46.4182662],[9.2728897,46.4201513],[9.2754532,46.4195178],[9.2769096,46.415288],[9.2799473,46.4146446],[9.2816752,46.4101666],[9.2813792,46.408583],[9.2825256,46.4050881],[9.2801657,46.403047],[9.2818637,46.4015285],[9.2807239,46.3992562],[9.2757961,46.394991],[9.2777177,46.3920581],[9.2776919,46.3906432],[9.280951,46.3873547],[9.2843462,46.3862326],[9.283984,46.3840023],[9.2808892,46.381508],[9.2803735,46.3797187],[9.2784855,46.3794065],[9.2777201,46.3750028],[9.2750661,46.3737132],[9.2771084,46.3719111],[9.2770402,46.3685876],[9.2801353,46.3631923],[9.2812013,46.3599691],[9.2826897,46.3579986],[9.2888785,46.3565145],[9.2954361,46.3556165],[9.2976257,46.3526859],[9.2961369,46.349219],[9.2975184,46.3483273],[9.2981463,46.3459951],[9.2998753,46.3435958],[9.2987533,46.3417863],[9.294271,46.339317],[9.292123,46.3362403],[9.2934216,46.3318782],[9.2965814,46.3284718],[9.2993085,46.3263482],[9.2958593,46.323617],[9.295114,46.317919],[9.2938393,46.316573],[9.2850517,46.3144399],[9.2815377,46.3093734],[9.2835118,46.3059191],[9.2837998,46.3026657],[9.2848806,46.3002617],[9.2848503,46.2970581],[9.2822167,46.2961156],[9.2754951,46.2921758],[9.2718165,46.2892209],[9.272065,46.2884652],[9.2695725,46.2851684],[9.2682599,46.2821687],[9.264382,46.280448],[9.2597533,46.2790359],[9.2592351,46.2777144],[9.2592548,46.2730458],[9.2569886,46.2693535],[9.2519468,46.2671682],[9.2530481,46.2618925],[9.2524531,46.260443],[9.2491228,46.2564478],[9.2511972,46.2505185],[9.2484564,46.2478135],[9.2496671,46.2446942],[9.249065,46.2437466],[9.2496556,46.2394367],[9.2487141,46.2376669],[9.2485896,46.2336989],[9.2467993,46.2323433],[9.2396354,46.2323035],[9.237397,46.2333575],[9.2333541,46.2325694],[9.2247309,46.229601],[9.2210475,46.2292341],[9.2206923,46.227815],[9.2228723,46.2239831],[9.2204082,46.2214702],[9.2183392,46.2165606],[9.2187392,46.2143674],[9.213973,46.2108651],[9.2088503,46.210036],[9.2066863,46.2103725],[9.2029837,46.2086042],[9.2013513,46.2067453],[9.1996427,46.2014165],[9.1985041,46.2006805],[9.1972616,46.1975908],[9.1977134,46.1961361],[9.1948302,46.1936322],[9.1957907,46.1887114],[9.1974415,46.1875907],[9.1949208,46.1840112],[9.1954465,46.1815347],[9.1941666,46.1784976],[9.1858259,46.1735204],[9.1843873,46.1710363],[9.1821892,46.1695022],[9.1797392,46.169418],[9.1770263,46.1709291],[9.172739,46.1710113],[9.1704874,46.1718801],[9.1673284,46.17112],[9.1612166,46.1707312],[9.1593659,46.1696185],[9.1533958,46.1701855],[9.1498483,46.172091],[9.1418556,46.1779391],[9.1355391,46.1803782],[9.1312981,46.1848138],[9.1310795,46.1883993],[9.1297296,46.1893469],[9.1250421,46.195038],[9.122848,46.1955923],[9.1198188,46.199719],[9.1112282,46.2049876],[9.1083302,46.2056567],[9.0890524,46.2123805],[9.0868836,46.2142926],[9.0839466,46.2198595],[9.0828431,46.2253111],[9.0796046,46.2332847],[9.0765913,46.2329909],[9.0745627,46.2317299],[9.0714067,46.236071],[9.0760223,46.2378759],[9.0772167,46.2586656],[9.0777614,46.2603043],[9.072784,46.2663653],[9.0722157,46.2677161],[9.0636392,46.2730621],[9.0622233,46.2777216],[9.0581221,46.2813045],[9.0555385,46.2890827],[9.0537079,46.2930492],[9.0556226,46.2960418],[9.0600106,46.2970636],[9.0628357,46.3001193],[9.0634673,46.3016796],[9.0659224,46.3037444],[9.0683314,46.307412],[9.0721757,46.3085709],[9.0751063,46.3146059],[9.0725743,46.3188498],[9.0686902,46.3220169],[9.0673518,46.3237432],[9.064326,46.3253779],[9.0644429,46.3278755],[9.0697078,46.3324872],[9.0675778,46.3342284],[9.0664394,46.3363686],[9.0695724,46.3411877],[9.0693098,46.3435686],[9.0724512,46.3439218],[9.0763607,46.3467298],[9.0801648,46.3474484],[9.0819252,46.3490241],[9.0847084,46.3486652],[9.0882669,46.3492032],[9.0884426,46.3523419],[9.0916035,46.3554792],[9.0925867,46.357409],[9.0937353,46.3627302],[9.0926671,46.3676362],[9.0929495,46.3708335],[9.0956258,46.3730111],[9.0953408,46.3745403],[9.0930661,46.3770037],[9.0931295,46.3797127],[9.0893661,46.3871128],[9.0872532,46.3888356],[9.091379,46.3958793],[9.0962141,46.3998768],[9.0938937,46.4021166],[9.091837,46.4028266],[9.0899387,46.4051449],[9.0907786,46.4068757],[9.0974857,46.4089056],[9.1022563,46.4107707],[9.1029153,46.4135546],[9.1009137,46.4175422],[9.0984058,46.4197656],[9.0953993,46.4253276],[9.0927011,46.4279183],[9.0908412,46.4308956],[9.0890105,46.4321565],[9.0895739,46.4369409],[9.0870058,46.4437003],[9.091708,46.4487685],[9.0920557,46.453299],[9.0950675,46.4603963],[9.0935395,46.4629298],[9.08982,46.467132],[9.085048,46.4709597],[9.0854176,46.4754072],[9.082571,46.4770518],[9.0772389,46.4784145],[9.0735559,46.480272],[9.0652286,46.4783045],[9.060544,46.4763071],[9.0542783,46.4767739],[9.051029,46.4793209],[9.0479672,46.4799636],[9.0456086,46.4814517],[9.0478719,46.4836495],[9.0449004,46.4882169],[9.0402434,46.4895639],[9.0389633,46.4915719],[9.04015,46.4939528],[9.0388597,46.4947899],[9.0371347,46.4982548],[9.0346741,46.500797],[9.0316808,46.5025539],[9.0289613,46.5032137],[9.028283,46.5046537],[9.0241516,46.5079226],[9.0219904,46.5125369],[9.0226497,46.515163],[9.0221238,46.517901],[9.0231479,46.5190942],[9.0206424,46.5235423],[9.0209055,46.5270645],[9.0199273,46.5286016],[9.017174,46.5290465],[9.0166229,46.5320539],[9.0215548,46.5338829],[9.0227455,46.5376821],[9.0212106,46.5396379],[9.0215115,46.5414547],[9.0193301,46.5478054],[9.0228114,46.5522385],[9.0241545,46.5546364],[9.0244258,46.5570852],[9.0232253,46.5580908],[9.0266777,46.5618196],[9.0266851,46.5659851],[9.0283102,46.5675288],[9.0298926,46.5713449],[9.0356067,46.575713],[9.0355017,46.5786547],[9.0373149,46.5820356],[9.0424042,46.5835349],[9.0422255,46.585363],[9.0437501,46.5872507],[9.0410671,46.5901659],[9.0353562,46.5919697],[9.0341568,46.5938064],[9.0340908,46.6000269],[9.0271873,46.599421],[9.025244,46.6014815],[9.0229178,46.6018378],[9.0207923,46.603253],[9.0162223,46.6032174],[9.014473,46.6053002],[9.0069728,46.6106241],[9.0042045,46.6113343],[8.9953467,46.6117344],[8.9837391,46.6088149],[8.9730889,46.6026657],[8.9666702,46.6037282],[8.9622012,46.6026448],[8.9596888,46.6107053],[8.9629961,46.6181481],[8.9578233,46.6298791],[8.9553236,46.6316207],[8.9524262,46.6322939],[8.950849,46.629925],[8.9512973,46.625762],[8.9503716,46.6239725],[8.9470441,46.6223068],[8.9453301,46.6206885],[8.941453,46.6184975],[8.9331304,46.6209316],[8.9258166,46.621609],[8.924608,46.6231572],[8.9208104,46.6219379],[8.9186202,46.6198167],[8.9116884,46.6187933],[8.9106079,46.6167467],[8.9069275,46.6152656],[8.9057507,46.6122528],[8.9059071,46.6093932],[8.9074021,46.6059112],[8.9097612,46.6030633],[8.915118,46.5994104],[8.9167543,46.5968761],[8.9151964,46.5946721],[8.9162342,46.5928469],[8.9112395,46.5887123],[8.9036713,46.584105],[8.8939386,46.5819667],[8.8892941,46.5791618],[8.8794387,46.5776263],[8.8769496,46.5746733],[8.8699077,46.5735524],[8.8629425,46.5730528],[8.8616535,46.5711393],[8.8574798,46.5699335],[8.8556773,46.5702445],[8.8494176,46.5665926],[8.8432303,46.5633603],[8.8397334,46.5631602],[8.8317451,46.5639314],[8.8297373,46.5675808],[8.829672,46.5713718],[8.800737,46.5632845],[8.7619592,46.5742614],[8.7591542,46.5734592],[8.75516,46.5741732],[8.7505867,46.5760557],[8.7475553,46.5747017],[8.7439341,46.5722296],[8.7390469,46.5721926],[8.7371093,46.5735244],[8.7291243,46.5758796],[8.7279203,46.5768263],[8.7241721,46.5748759],[8.7222167,46.5731255],[8.7175094,46.5711114],[8.7117773,46.5721979],[8.7096463,46.5733873],[8.7052943,46.5738006],[8.704762,46.5771292],[8.7029491,46.578741],[8.6992442,46.57945],[8.696659,46.5810727],[8.6925706,46.5796712],[8.6905672,46.5804063],[8.6856372,46.5804553],[8.682031,46.5785584],[8.6787459,46.5791939],[8.6819216,46.5885324],[8.6805597,46.593042],[8.6806097,46.5950522],[8.6772747,46.5982788],[8.6771568,46.6015848],[8.6796329,46.6056207],[8.677749,46.6093638],[8.6787447,46.6159962],[8.6766766,46.6199699],[8.6713394,46.6196114],[8.6677859,46.6200997],[8.6640216,46.6216827],[8.6638793,46.6231287],[8.6592524,46.6249331],[8.6579548,46.6261641],[8.6580023,46.6285534],[8.6565822,46.63133],[8.6510632,46.6345886],[8.6518748,46.6379398],[8.655701,46.639727],[8.6574725,46.6416339],[8.6563892,46.6432118],[8.6585819,46.6471664],[8.6548784,46.649972],[8.6613934,46.6560245],[8.6662122,46.6559717],[8.6715401,46.6589105],[8.6754152,46.662875],[8.6786074,46.6642656],[8.6771375,46.6680899],[8.6740213,46.6706923],[8.6734706,46.672633],[8.6742194,46.6783392],[8.6728402,46.6812255],[8.6750238,46.6840527],[8.6737793,46.6882458],[8.6736487,46.6909099],[8.6763262,46.6942145],[8.6805862,46.6950504],[8.6862819,46.6941788],[8.6892981,46.6961681],[8.6915961,46.7009827],[8.692587,46.7018487],[8.6985657,46.7034811],[8.7011505,46.7033964],[8.7049288,46.700946],[8.7089842,46.6989621],[8.7171968,46.7025881],[8.717705,46.7060846],[8.7201344,46.7069253],[8.724423,46.7066772],[8.7276222,46.7074438],[8.7331876,46.7118509],[8.7374847,46.7140617],[8.7407977,46.7146072],[8.7475304,46.7183822],[8.7490648,46.7207402],[8.7484013,46.7224918],[8.7443965,46.7288814],[8.7451046,46.7317237],[8.7472166,46.7332956],[8.747639,46.7359106],[8.7529712,46.7381418],[8.7561568,46.7407084],[8.761011,46.742934],[8.7661104,46.7447833],[8.7695888,46.7443493],[8.7701632,46.7403217],[8.7723173,46.7400171],[8.7734206,46.7378295],[8.7756585,46.7359017],[8.7773544,46.7322581],[8.7805355,46.7312153],[8.7819848,46.7283121],[8.7869739,46.7300616],[8.7947465,46.7317204],[8.7995202,46.731453],[8.8035637,46.7339908],[8.8085658,46.735097],[8.8129787,46.7373147],[8.8111349,46.7416382],[8.8104307,46.7449252],[8.8141492,46.7499832],[8.8137099,46.7528282],[8.816094,46.757135],[8.8185637,46.7584085],[8.8185456,46.7624842],[8.8225785,46.7636094],[8.8254144,46.7660377],[8.8317088,46.7643352],[8.8345695,46.7668561],[8.830356,46.7711532],[8.8304428,46.7733169],[8.8279905,46.7801678],[8.8290953,46.7818387],[8.8278471,46.7861985],[8.826304,46.7883526],[8.8281425,46.7921464],[8.830689,46.7925996],[8.834007,46.7950416],[8.8386544,46.7951277],[8.841087,46.7937306],[8.8477105,46.7935195],[8.8472958,46.7980098],[8.8525398,46.7996956],[8.859879,46.8056994],[8.8660648,46.8067323],[8.8694586,46.8066573],[8.8742284,46.8088936],[8.8770464,46.8129185],[8.8839677,46.8141351],[8.8884652,46.8144263],[8.8913306,46.8134027],[8.8970046,46.8141821],[8.9003241,46.8134943],[8.901048,46.8117574],[8.9074021,46.8102524],[8.9125984,46.8113398],[8.9148586,46.8111533],[8.9150599,46.8059285],[8.9140595,46.8006118],[8.9160407,46.7990397],[8.9200002,46.798122],[8.9236449,46.7983169],[8.9266727,46.7977731],[8.9278867,46.7965845],[8.9347983,46.7986738],[8.9401734,46.7994199],[8.9448892,46.8022976],[8.9507235,46.8027066],[8.9533958,46.8050153],[8.9577479,46.8044403],[8.9656462,46.8065178],[8.9688947,46.8063778],[8.9768603,46.807639],[8.9807007,46.8072058],[8.9857098,46.8084466],[8.9909719,46.8088218],[8.9988805,46.8108271],[9.0090128,46.8111813],[9.019973,46.8173275],[9.0213885,46.8217415],[9.0254253,46.8256893],[9.0274986,46.8300293],[9.0299934,46.8330322],[9.0343992,46.8353451],[9.0337241,46.8390507],[9.0375803,46.8451145],[9.0406615,46.8478119],[9.0454128,46.8496456],[9.0460759,46.8506184],[9.0441854,46.8555179],[9.0450812,46.8600202],[9.0451629,46.8649807],[9.0483756,46.8670441],[9.0544262,46.8682906],[9.0611395,46.8738204],[9.0647082,46.8752091],[9.0681231,46.8747181],[9.0720486,46.8753937],[9.0770505,46.8750775],[9.0840167,46.8728598],[9.0949332,46.8708724],[9.0946713,46.8675847],[9.0966989,46.8662019],[9.1010761,46.8617351],[9.1036063,46.8596946],[9.1039054,46.8559248],[9.104857,46.8524749],[9.1093542,46.8508284],[9.112566,46.8506483],[9.1140233,46.8522429],[9.1170878,46.8530597],[9.1198918,46.8548403],[9.1253902,46.8554574],[9.1283038,46.8588023],[9.1337585,46.8599272],[9.1360909,46.8612145],[9.1405478,46.8618409],[9.1419079,46.8657001],[9.144325,46.8673439],[9.1445161,46.869425],[9.1489701,46.8723251],[9.1526341,46.8722586],[9.1567987,46.8739334],[9.1530041,46.8798352],[9.1561653,46.879392],[9.1774523,46.8791089],[9.1819872,46.8786003],[9.18625,46.8775171],[9.1887408,46.877464],[9.191487,46.8787373],[9.197964,46.880623],[9.1999127,46.8806498],[9.2027886,46.8831043],[9.2041261,46.8830975],[9.2061026,46.8867499],[9.2110875,46.8893019],[9.2130319,46.891958],[9.2179845,46.8951393],[9.2245631,46.9015403],[9.2264791,46.9055089],[9.2299315,46.9064024],[9.2345504,46.9082942],[9.2393591,46.9079271],[9.2448445,46.9144935],[9.2488895,46.9162714]]]},"properties":{"ID_0":223,"ISO":"CH-GR","NAME_0":"Switzerland","ID_1":10,"NAME_1":"Graubünden","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Graubünden|Grigioni|Grischun|Grisons"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.6178293,47.4376767],[9.6112476,47.4367179],[9.6062525,47.436825],[9.6024069,47.4364158],[9.6002325,47.4354298],[9.5932125,47.4339673],[9.5908581,47.435252],[9.5864555,47.4347365],[9.5774923,47.4343311],[9.5752471,47.4338569],[9.5706259,47.4343432],[9.5706563,47.4359251],[9.5687101,47.4385488],[9.5645629,47.4381309],[9.5618675,47.4363015],[9.5618196,47.4350041],[9.5581203,47.4328242],[9.5597287,47.4308275],[9.5637275,47.4289114],[9.5665361,47.4290509],[9.567732,47.4279547],[9.5719861,47.42659],[9.5735923,47.4241297],[9.5694887,47.4236254],[9.5672947,47.4222995],[9.5683793,47.4210743],[9.5723116,47.4207685],[9.5761979,47.4214327],[9.5822223,47.4199352],[9.5832701,47.4181648],[9.5816554,47.4151351],[9.5854636,47.4147384],[9.5852529,47.4127626],[9.5819857,47.4108013],[9.5830108,47.4096486],[9.5827065,47.408764],[9.5776059,47.4069713],[9.5733141,47.4041148],[9.5656418,47.4004242],[9.5641679,47.3987145],[9.5611983,47.3990169],[9.5580024,47.3970455],[9.5552822,47.3964518],[9.5511019,47.3991206],[9.5458524,47.406292],[9.5423863,47.4082052],[9.5487726,47.410016],[9.5511353,47.4096275],[9.5532295,47.4077414],[9.560223,47.4087964],[9.5636881,47.4079974],[9.5649132,47.4053042],[9.5715711,47.406779],[9.573489,47.4085013],[9.5739947,47.4139911],[9.5762487,47.4158275],[9.5710962,47.4165595],[9.5669408,47.4162934],[9.5638129,47.416791],[9.5569514,47.4190872],[9.5540378,47.4233687],[9.5546171,47.4246079],[9.5527397,47.4273983],[9.5505405,47.4271047],[9.5471191,47.4286945],[9.5456822,47.4306925],[9.5410629,47.4318472],[9.5389258,47.4317468],[9.5390716,47.4279402],[9.537423,47.4257856],[9.5320146,47.4237835],[9.5271782,47.423356],[9.5240987,47.4212115],[9.5253164,47.4196122],[9.5242848,47.4183584],[9.5270181,47.4159703],[9.5237443,47.4141831],[9.5253006,47.4121682],[9.532731,47.4103278],[9.526168,47.4074808],[9.5188995,47.4056225],[9.5164233,47.405641],[9.5124559,47.4031912],[9.5111877,47.4013042],[9.5123069,47.3974924],[9.5082665,47.3956269],[9.5095577,47.3946992],[9.5079201,47.3929615],[9.5045615,47.3863257],[9.5032941,47.3808996],[9.5030294,47.3749918],[9.5054013,47.3744593],[9.5007038,47.3716151],[9.498999,47.3693339],[9.5009154,47.3679582],[9.498949,47.363607],[9.5014573,47.3545453],[9.5026337,47.35382],[9.5029095,47.3474363],[9.4871427,47.350256],[9.4792318,47.3472095],[9.4719078,47.3470497],[9.4657469,47.3464248],[9.4597522,47.3500875],[9.4499945,47.3541539],[9.4447766,47.3569671],[9.4424066,47.356001],[9.4400835,47.3572834],[9.4379317,47.356506],[9.4305859,47.3677032],[9.4314203,47.3683203],[9.4300592,47.3710312],[9.4215344,47.3680545],[9.420746,47.3692727],[9.4179414,47.3696091],[9.4118851,47.3687673],[9.408611,47.3702192],[9.4020532,47.3748953],[9.4016927,47.3766251],[9.3978403,47.3780076],[9.3980629,47.3789212],[9.3936241,47.3802445],[9.3897181,47.3775157],[9.3786697,47.3805282],[9.3793953,47.3864371],[9.3770228,47.387176],[9.3727561,47.3861613],[9.371023,47.3840386],[9.3683847,47.3850586],[9.3642486,47.3843568],[9.3588564,47.3851382],[9.3565392,47.3833888],[9.3546486,47.3842181],[9.3503011,47.3830804],[9.3530091,47.3818732],[9.3572039,47.3787794],[9.3584613,47.3785156],[9.3595236,47.3733599],[9.3570081,47.3719361],[9.3593496,47.3669512],[9.3614946,47.3661032],[9.3602343,47.3646457],[9.3622602,47.3612228],[9.365329,47.3586058],[9.3639124,47.3576265],[9.3596799,47.3570337],[9.3570654,47.3555154],[9.3470049,47.3540381],[9.3436679,47.3521817],[9.3432159,47.3501972],[9.344398,47.3492433],[9.3462312,47.3449528],[9.3393797,47.3438584],[9.3333843,47.3407786],[9.3289566,47.330817],[9.3270484,47.329953],[9.3160478,47.3273279],[9.3112765,47.3251207],[9.3097919,47.3214794],[9.3136741,47.3215982],[9.3143937,47.319224],[9.3169994,47.3161045],[9.3154573,47.3135496],[9.3183094,47.30953],[9.3149542,47.3062533],[9.3171045,47.3017459],[9.313014,47.2961485],[9.3135572,47.2914487],[9.3154523,47.2893055],[9.3185962,47.2882601],[9.3188449,47.2857782],[9.3236182,47.282909],[9.3327453,47.2699579],[9.3331303,47.2652709],[9.3347969,47.2615817],[9.3432648,47.2493986],[9.3407458,47.2490065],[9.332349,47.2496108],[9.3271077,47.2485767],[9.3237955,47.2470247],[9.3186333,47.2478785],[9.3143834,47.252149],[9.3104099,47.2532799],[9.3078465,47.2553029],[9.3086962,47.2577293],[9.3079717,47.2596102],[9.304646,47.2597844],[9.2971672,47.2574146],[9.2931368,47.2603955],[9.2897058,47.2603333],[9.2866876,47.2626278],[9.2840881,47.2656574],[9.2793467,47.2649955],[9.2790912,47.2666754],[9.2735846,47.2699929],[9.2724601,47.2686774],[9.2671617,47.2685004],[9.2635019,47.2669974],[9.263092,47.2656408],[9.2600096,47.2642006],[9.256435,47.2633444],[9.2515117,47.2655762],[9.2474909,47.2660802],[9.2414096,47.2646685],[9.2387854,47.2646466],[9.2327167,47.2655644],[9.2298907,47.2670164],[9.2267562,47.267353],[9.222057,47.2689947],[9.2185521,47.2709518],[9.2139936,47.2725428],[9.2086275,47.2756581],[9.206251,47.2763964],[9.2082109,47.2801428],[9.2133357,47.2833723],[9.2170978,47.2845078],[9.2191554,47.2872731],[9.2223542,47.2894867],[9.2240907,47.2935992],[9.2205695,47.2969059],[9.2197063,47.2985709],[9.2173127,47.3003061],[9.2159866,47.3025133],[9.2173064,47.304569],[9.2177861,47.3078962],[9.2142627,47.3132693],[9.2147101,47.3144187],[9.2125587,47.3199041],[9.2103431,47.3216812],[9.2138664,47.323],[9.2161309,47.3248771],[9.2227473,47.3260537],[9.2234633,47.3271903],[9.232713,47.3308975],[9.233314,47.3319774],[9.2322037,47.3344819],[9.2275056,47.3385481],[9.2246068,47.3425515],[9.2223185,47.3433413],[9.2200478,47.342303],[9.215069,47.3416162],[9.2129281,47.3404352],[9.2109778,47.3410768],[9.2062825,47.3391337],[9.2056841,47.3423043],[9.2043938,47.3424928],[9.202495,47.3453049],[9.1986374,47.3477824],[9.2018547,47.3504161],[9.2044033,47.3545932],[9.2073435,47.3556847],[9.20507,47.3574608],[9.1993874,47.3542536],[9.196556,47.3536279],[9.1943859,47.3589583],[9.1926631,47.3604154],[9.1922661,47.362626],[9.1991204,47.3614442],[9.2101624,47.3630544],[9.2130315,47.3651233],[9.2130092,47.3678573],[9.2179386,47.370829],[9.2186667,47.3729862],[9.220876,47.3745425],[9.2197802,47.3767857],[9.2217766,47.3779068],[9.2188168,47.3829461],[9.2189341,47.3850153],[9.2228164,47.3874864],[9.2265632,47.3876231],[9.2291869,47.3869311],[9.2318246,47.3877764],[9.2327435,47.392721],[9.2322873,47.3959933],[9.235351,47.3968451],[9.2376285,47.3964182],[9.2447695,47.3993237],[9.2467465,47.3985455],[9.2503911,47.4002784],[9.2564208,47.4005832],[9.2575409,47.3987365],[9.2619807,47.4003935],[9.2656105,47.401102],[9.2693527,47.3993099],[9.2718694,47.4010325],[9.2768285,47.3996767],[9.2794082,47.3982457],[9.283283,47.3986959],[9.2937018,47.3972262],[9.2941447,47.3964019],[9.2982897,47.3961378],[9.3029463,47.3952218],[9.3086098,47.3965853],[9.3202676,47.3981895],[9.3247182,47.4006552],[9.3288928,47.401314],[9.3355308,47.3991755],[9.3378137,47.4001576],[9.3424814,47.400015],[9.3466968,47.4008651],[9.3547655,47.4034037],[9.3585664,47.4020451],[9.3598268,47.4033989],[9.3635129,47.4045727],[9.3659304,47.4046003],[9.3691012,47.4068004],[9.3716713,47.4077137],[9.37847,47.4072734],[9.3815271,47.4062262],[9.3869225,47.4056082],[9.3896783,47.4045408],[9.3907574,47.4020184],[9.3927608,47.4010167],[9.4018649,47.4008402],[9.404843,47.4020478],[9.4106531,47.4031355],[9.4141044,47.404943],[9.4212485,47.4059609],[9.4264836,47.4075194],[9.4278722,47.4104565],[9.430534,47.4114973],[9.4329648,47.413974],[9.4302265,47.4171488],[9.4302534,47.4181927],[9.4350303,47.4208373],[9.4351599,47.4246182],[9.4325502,47.4294577],[9.4347384,47.4320728],[9.4350022,47.4342941],[9.4376746,47.4344924],[9.4414205,47.4332835],[9.4439585,47.4340748],[9.448343,47.4327085],[9.4505216,47.4308784],[9.45266,47.431069],[9.4530991,47.432687],[9.4564661,47.4333401],[9.4649335,47.4357571],[9.4685311,47.4383182],[9.4709178,47.4389492],[9.4755267,47.438674],[9.4779381,47.4394486],[9.480418,47.4389664],[9.4867861,47.4413297],[9.4950946,47.4423025],[9.5035951,47.4454185],[9.5045795,47.4465816],[9.5096483,47.4495566],[9.5142201,47.4493151],[9.5195335,47.4518369],[9.5239391,47.4513674],[9.5277969,47.453905],[9.5284891,47.4555899],[9.5267393,47.4578525],[9.5257298,47.4613529],[9.5325141,47.4678475],[9.542389,47.4690444],[9.5444195,47.4672908],[9.5468061,47.4675053],[9.5473074,47.4654469],[9.5464296,47.4630145],[9.5502507,47.4642563],[9.5540636,47.4638154],[9.5580266,47.4647872],[9.5634672,47.462878],[9.5680686,47.4635328],[9.5742,47.462738],[9.5796749,47.4627067],[9.5813667,47.4617845],[9.5887797,47.4596574],[9.5902933,47.4577118],[9.5961828,47.4585467],[9.5966218,47.4568771],[9.6046641,47.4523818],[9.6059245,47.4523327],[9.6129736,47.4487828],[9.6215476,47.4470428],[9.6297047,47.4443683],[9.6308907,47.4416641],[9.6297387,47.4398395],[9.6230872,47.4382683],[9.6178293,47.4376767]]]},"properties":{"ID_0":223,"ISO":"CH-AR","NAME_0":"Switzerland","ID_1":2,"NAME_1":"Appenzell Ausserrhoden","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Appenzell Ausser-Rhoden|Appenzell Outer Rhodes|Appenzell dadens|Appenzell Rhodes Extérieures|Appenzello Esterno"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.6178293,47.4376767],[9.6137217,47.434517],[9.6084847,47.4333269],[9.6062295,47.4315153],[9.6010308,47.4296223],[9.598298,47.4291678],[9.5895211,47.4256354],[9.5884941,47.4239601],[9.5887568,47.4216202],[9.5963669,47.4186009],[9.5958015,47.4173135],[9.601327,47.4163192],[9.6048161,47.4143703],[9.6004035,47.4135432],[9.5966226,47.4117331],[9.5856643,47.4106015],[9.5830108,47.4096486],[9.5819857,47.4108013],[9.5852529,47.4127626],[9.5854636,47.4147384],[9.5816554,47.4151351],[9.5832701,47.4181648],[9.5822223,47.4199352],[9.5761979,47.4214327],[9.5723116,47.4207685],[9.5683793,47.4210743],[9.5672947,47.4222995],[9.5694887,47.4236254],[9.5735923,47.4241297],[9.5719861,47.42659],[9.567732,47.4279547],[9.5665361,47.4290509],[9.5637275,47.4289114],[9.5597287,47.4308275],[9.5581203,47.4328242],[9.5618196,47.4350041],[9.5618675,47.4363015],[9.5645629,47.4381309],[9.5687101,47.4385488],[9.5706563,47.4359251],[9.5706259,47.4343432],[9.5752471,47.4338569],[9.5774923,47.4343311],[9.5864555,47.4347365],[9.5908581,47.435252],[9.5932125,47.4339673],[9.6002325,47.4354298],[9.6024069,47.4364158],[9.6062525,47.436825],[9.6112476,47.4367179],[9.6178293,47.4376767]]],[[[9.5552822,47.3964518],[9.5526034,47.394303],[9.5492944,47.3930819],[9.5443112,47.3959659],[9.5453531,47.398459],[9.5419047,47.3995769],[9.5365909,47.399407],[9.5295014,47.3975866],[9.5208964,47.3966291],[9.5095577,47.3946992],[9.5082665,47.3956269],[9.5123069,47.3974924],[9.5111877,47.4013042],[9.5124559,47.4031912],[9.5164233,47.405641],[9.5188995,47.4056225],[9.526168,47.4074808],[9.532731,47.4103278],[9.5253006,47.4121682],[9.5237443,47.4141831],[9.5270181,47.4159703],[9.5242848,47.4183584],[9.5253164,47.4196122],[9.5240987,47.4212115],[9.5271782,47.423356],[9.5320146,47.4237835],[9.537423,47.4257856],[9.5390716,47.4279402],[9.5389258,47.4317468],[9.5410629,47.4318472],[9.5456822,47.4306925],[9.5471191,47.4286945],[9.5505405,47.4271047],[9.5527397,47.4273983],[9.5546171,47.4246079],[9.5540378,47.4233687],[9.5569514,47.4190872],[9.5638129,47.416791],[9.5669408,47.4162934],[9.5710962,47.4165595],[9.5762487,47.4158275],[9.5739947,47.4139911],[9.573489,47.4085013],[9.5715711,47.406779],[9.5649132,47.4053042],[9.5636881,47.4079974],[9.560223,47.4087964],[9.5532295,47.4077414],[9.5511353,47.4096275],[9.5487726,47.410016],[9.5423863,47.4082052],[9.5458524,47.406292],[9.5511019,47.3991206],[9.5552822,47.3964518]]],[[[9.3432648,47.2493986],[9.3347969,47.2615817],[9.3331303,47.2652709],[9.3327453,47.2699579],[9.3236182,47.282909],[9.3188449,47.2857782],[9.3185962,47.2882601],[9.3154523,47.2893055],[9.3135572,47.2914487],[9.313014,47.2961485],[9.3171045,47.3017459],[9.3149542,47.3062533],[9.3183094,47.30953],[9.3154573,47.3135496],[9.3169994,47.3161045],[9.3143937,47.319224],[9.3136741,47.3215982],[9.3097919,47.3214794],[9.3112765,47.3251207],[9.3160478,47.3273279],[9.3270484,47.329953],[9.3289566,47.330817],[9.3333843,47.3407786],[9.3393797,47.3438584],[9.3462312,47.3449528],[9.344398,47.3492433],[9.3432159,47.3501972],[9.3436679,47.3521817],[9.3470049,47.3540381],[9.3570654,47.3555154],[9.3596799,47.3570337],[9.3639124,47.3576265],[9.365329,47.3586058],[9.3622602,47.3612228],[9.3602343,47.3646457],[9.3614946,47.3661032],[9.3593496,47.3669512],[9.3570081,47.3719361],[9.3595236,47.3733599],[9.3584613,47.3785156],[9.3572039,47.3787794],[9.3530091,47.3818732],[9.3503011,47.3830804],[9.3546486,47.3842181],[9.3565392,47.3833888],[9.3588564,47.3851382],[9.3642486,47.3843568],[9.3683847,47.3850586],[9.371023,47.3840386],[9.3727561,47.3861613],[9.3770228,47.387176],[9.3793953,47.3864371],[9.3786697,47.3805282],[9.3897181,47.3775157],[9.3936241,47.3802445],[9.3980629,47.3789212],[9.3978403,47.3780076],[9.4016927,47.3766251],[9.4020532,47.3748953],[9.408611,47.3702192],[9.4118851,47.3687673],[9.4179414,47.3696091],[9.420746,47.3692727],[9.4215344,47.3680545],[9.4300592,47.3710312],[9.4314203,47.3683203],[9.4305859,47.3677032],[9.4379317,47.356506],[9.4400835,47.3572834],[9.4424066,47.356001],[9.4447766,47.3569671],[9.4499945,47.3541539],[9.4597522,47.3500875],[9.4657469,47.3464248],[9.4719078,47.3470497],[9.4792318,47.3472095],[9.4871427,47.350256],[9.5029095,47.3474363],[9.5026756,47.3344085],[9.5018422,47.3300377],[9.4981347,47.3182123],[9.4969423,47.3164154],[9.4934192,47.314532],[9.4925088,47.3129045],[9.4928912,47.3106775],[9.4956427,47.3077591],[9.4962566,47.3060143],[9.4912205,47.3038127],[9.4889587,47.3017921],[9.4906839,47.3007687],[9.4895997,47.2977236],[9.4893283,47.2947046],[9.4868382,47.2907174],[9.4877576,47.2882911],[9.4849864,47.2837518],[9.4807862,47.2815011],[9.4796641,47.2790223],[9.4765185,47.2766923],[9.4760284,47.2748036],[9.4728974,47.271663],[9.4692963,47.2693378],[9.4665441,47.2682462],[9.4643391,47.2658399],[9.4612391,47.2641021],[9.4581376,47.2631965],[9.4532772,47.2605646],[9.4511046,47.2600312],[9.4500446,47.2584212],[9.4419863,47.2532845],[9.4396554,47.2529154],[9.4366984,47.2509824],[9.4343358,47.2507805],[9.4298224,47.2492159],[9.4262286,47.2471097],[9.4189125,47.2476167],[9.4147975,47.2465341],[9.4099137,47.2439453],[9.4038783,47.2382728],[9.401922,47.2375609],[9.3961982,47.2373569],[9.3896573,47.2361165],[9.3820067,47.2339966],[9.378438,47.2361243],[9.3749189,47.2370743],[9.3738315,47.238417],[9.3697351,47.2405804],[9.3677491,47.2408269],[9.3648794,47.2433131],[9.3586001,47.2443159],[9.3512709,47.2443047],[9.3491245,47.2449486],[9.3436804,47.247746],[9.3432648,47.2493986]]]]},"properties":{"ID_0":223,"ISO":"CH-AI","NAME_0":"Switzerland","ID_1":3,"NAME_1":"Appenzell Innerrhoden","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Appenzell Inner-Rhoden|Appenzell Inner Rhodes|Appenzell dador|Appenzell Rhodes Intérieures|Appenzello Interno"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.2217297,46.3294194],[7.2274591,46.3276118],[7.2325299,46.3265258],[7.2391992,46.3269536],[7.2460169,46.327861],[7.2501163,46.3301062],[7.2519886,46.32983],[7.2542983,46.3311231],[7.2590205,46.3361983],[7.262803,46.3384975],[7.261455,46.339931],[7.2608068,46.3454863],[7.261162,46.3478833],[7.2624387,46.3492867],[7.26101,46.3515911],[7.2604974,46.3544622],[7.2623055,46.3582368],[7.2907006,46.3671762],[7.2955361,46.3656316],[7.2990635,46.3663994],[7.3102862,46.3751591],[7.3127579,46.3706744],[7.3123393,46.3631959],[7.3104848,46.3618086],[7.3103217,46.3598968],[7.3084012,46.3586381],[7.3099179,46.3560307],[7.3081135,46.3528342],[7.3088088,46.3503254],[7.3110164,46.3476991],[7.3156452,46.3436615],[7.323638,46.3441914],[7.3322401,46.3464268],[7.3377645,46.3469091],[7.3428089,46.348259],[7.3493614,46.3508728],[7.3539649,46.3503418],[7.3589725,46.3532314],[7.3629062,46.3567029],[7.3664199,46.3572099],[7.369385,46.3590154],[7.3744239,46.3609075],[7.3769544,46.3636795],[7.3793829,46.3648953],[7.3810727,46.3644014],[7.3842993,46.3666607],[7.3866619,46.3691986],[7.3883514,46.3690015],[7.3921565,46.3719897],[7.3927403,46.3730964],[7.3996257,46.3765624],[7.4016287,46.374548],[7.4046948,46.3762492],[7.4088794,46.376988],[7.411517,46.378518],[7.4149872,46.3787886],[7.4168063,46.3801833],[7.4283093,46.3808597],[7.433573,46.385115],[7.4386427,46.3861677],[7.4402415,46.3842156],[7.4432312,46.3830011],[7.4481316,46.3825241],[7.4503152,46.3818043],[7.4537247,46.3823628],[7.4585688,46.3810206],[7.458659,46.3787447],[7.4621432,46.3764205],[7.4636345,46.3781038],[7.469742,46.3781209],[7.472654,46.3808128],[7.4732914,46.3836194],[7.4794061,46.3852585],[7.4821881,46.3834312],[7.4838295,46.3810849],[7.4858209,46.3746203],[7.4851503,46.3726371],[7.4868677,46.3707236],[7.4904012,46.3702875],[7.4946242,46.371908],[7.4993216,46.3698839],[7.5025044,46.3704828],[7.5058318,46.3732627],[7.5071568,46.3758424],[7.5127765,46.3761629],[7.5207755,46.3748953],[7.526966,46.3746245],[7.5293329,46.3756886],[7.5378384,46.3771534],[7.5390974,46.3778463],[7.5385478,46.380016],[7.5412716,46.3841065],[7.5552699,46.3889749],[7.5468129,46.3940602],[7.5427932,46.3942366],[7.533142,46.3977605],[7.5290498,46.3998508],[7.5289485,46.4015151],[7.5320408,46.4061894],[7.5334351,46.4071373],[7.5340874,46.4098148],[7.5395124,46.4115454],[7.544163,46.4121556],[7.5504395,46.4121541],[7.5548745,46.4135572],[7.558583,46.4136506],[7.5622785,46.4127033],[7.565494,46.4143355],[7.5720134,46.4147344],[7.5784418,46.4172728],[7.5835188,46.4173459],[7.5839246,46.4158964],[7.5866238,46.413671],[7.5955265,46.4114281],[7.5969636,46.413675],[7.5998303,46.4155151],[7.6003158,46.4169357],[7.5985075,46.4212562],[7.5995917,46.4228019],[7.6028689,46.4225274],[7.6079505,46.4252456],[7.6102115,46.4285706],[7.6099862,46.4314046],[7.6088007,46.4350676],[7.6111738,46.4366652],[7.6149902,46.4379367],[7.618243,46.4378867],[7.6214364,46.4395278],[7.6246327,46.4419694],[7.6261008,46.4450525],[7.6354563,46.4411416],[7.6700018,46.4312536],[7.6785132,46.4288972],[7.6823435,46.4271979],[7.6862685,46.4263798],[7.6902285,46.424689],[7.6936106,46.4246544],[7.6991125,46.4190916],[7.7043432,46.4167855],[7.7086472,46.4139147],[7.7155451,46.4148427],[7.7181369,46.4180748],[7.7218853,46.4210161],[7.7307749,46.4220012],[7.7390174,46.4251633],[7.743174,46.4270692],[7.7443189,46.4284731],[7.7548645,46.4329565],[7.7564375,46.4349581],[7.7609054,46.4358181],[7.7646259,46.4378586],[7.7660687,46.4397615],[7.7684996,46.4393767],[7.7724602,46.4422887],[7.7782845,46.4434859],[7.7801662,46.4468087],[7.7846307,46.4489542],[7.7872536,46.4520677],[7.7934506,46.4543244],[7.7981385,46.4586006],[7.807661,46.4615657],[7.8123796,46.4624679],[7.8195319,46.4651249],[7.8224659,46.4658077],[7.8262157,46.4676841],[7.8261338,46.4689887],[7.8289097,46.4711832],[7.8371358,46.4743931],[7.8446273,46.4784867],[7.8482107,46.4788067],[7.8503494,46.4771546],[7.8628821,46.4782851],[7.8699489,46.4777818],[7.8762302,46.4783876],[7.8872547,46.4809533],[7.8908952,46.4833947],[7.8951829,46.4822262],[7.89779,46.4825305],[7.902505,46.4856599],[7.9065797,46.4869746],[7.9119581,46.4869254],[7.9129101,46.4885676],[7.9150685,46.4896381],[7.9159037,46.4912988],[7.9192294,46.4917976],[7.923266,46.4916725],[7.9248049,46.4940642],[7.9234134,46.4950507],[7.9260075,46.4967165],[7.932472,46.4985327],[7.9345997,46.5032912],[7.9401623,46.5060825],[7.9431116,46.5080036],[7.9479705,46.50791],[7.951002,46.5088409],[7.9535351,46.5080469],[7.9576517,46.5093505],[7.9643043,46.5128283],[7.9676924,46.5128576],[7.9708165,46.5165313],[7.9701732,46.5200247],[7.972654,46.524484],[7.9664977,46.5306749],[7.967425,46.5321998],[7.9650524,46.5335152],[7.9626072,46.536765],[7.9628005,46.539238],[7.96568,46.5404211],[7.9690054,46.5448423],[7.9796663,46.5480468],[7.9847197,46.5475097],[7.9882084,46.5493894],[7.9904725,46.5528977],[7.9925751,46.5544797],[7.992919,46.5562323],[7.9973861,46.5585356],[8.0005733,46.5578109],[8.0044746,46.5588847],[8.0074412,46.5607305],[8.0152667,46.5632279],[8.0230196,46.5625587],[8.0248386,46.5619196],[8.0303875,46.5624756],[8.0335757,46.5618293],[8.0352762,46.5599133],[8.0427847,46.5570182],[8.05366,46.5560552],[8.0600369,46.5526472],[8.0661754,46.5534951],[8.0721558,46.5537417],[8.0757843,46.5555737],[8.0833855,46.5521754],[8.0882447,46.5518986],[8.0898799,46.5511399],[8.0936127,46.5514333],[8.0956762,46.5495503],[8.1002618,46.5481473],[8.1050663,46.5486501],[8.1144938,46.5465908],[8.1176886,46.5435017],[8.1227363,46.5405749],[8.126207,46.5373078],[8.1313735,46.5370231],[8.1357153,46.5354708],[8.141589,46.5346511],[8.1497199,46.5318128],[8.1604159,46.5310041],[8.1637276,46.5320446],[8.1693188,46.5310192],[8.1745239,46.5314515],[8.1739569,46.5275835],[8.1744954,46.524148],[8.1790975,46.5227255],[8.1806699,46.5203934],[8.1844985,46.5204411],[8.191171,46.5230052],[8.2029394,46.5239163],[8.205115,46.52293],[8.2105564,46.5252322],[8.2187461,46.5264627],[8.2225893,46.5263463],[8.2256344,46.5269101],[8.2284294,46.5264139],[8.2323781,46.527268],[8.2340631,46.5266265],[8.2388931,46.5271324],[8.2412309,46.5265761],[8.2477457,46.5285316],[8.2524976,46.5295457],[8.2580618,46.5294428],[8.2620344,46.531825],[8.2629456,46.5334557],[8.2687208,46.5343403],[8.2732251,46.5364844],[8.2796086,46.5362125],[8.283819,46.5387002],[8.2874066,46.5430186],[8.2909349,46.543532],[8.2940856,46.5449027],[8.2961665,46.5445722],[8.3027661,46.5455298],[8.3074671,46.5484177],[8.3082063,46.5497885],[8.3127183,46.5525142],[8.3125546,46.5543651],[8.3166269,46.5590292],[8.3183751,46.5597372],[8.3242232,46.5603246],[8.3273074,46.5598988],[8.3366047,46.561123],[8.3390602,46.5625504],[8.3439454,46.5642177],[8.3486842,46.5678728],[8.3518363,46.5694648],[8.3515195,46.5717389],[8.3575099,46.5763666],[8.3604169,46.5777649],[8.3646716,46.5824784],[8.3605934,46.5863018],[8.3616461,46.5897206],[8.3633062,46.5916161],[8.3622465,46.5943375],[8.362665,46.5958712],[8.3616395,46.5981679],[8.3618932,46.6017862],[8.3651144,46.6040156],[8.3657875,46.6067159],[8.3685223,46.6091924],[8.3687642,46.6109321],[8.3707954,46.6152564],[8.3709772,46.6178042],[8.369118,46.6203112],[8.3693089,46.628713],[8.371116,46.6303686],[8.3726811,46.6336469],[8.3741071,46.6327715],[8.3792331,46.6336313],[8.3832261,46.6366262],[8.3837786,46.6380872],[8.3908345,46.6444644],[8.3947484,46.6460582],[8.3949544,46.6471291],[8.398973,46.6540503],[8.4102289,46.653028],[8.4182208,46.652196],[8.4204577,46.6486523],[8.4213675,46.6445033],[8.4203037,46.6371808],[8.4188011,46.6359188],[8.4209164,46.629506],[8.4204008,46.6163522],[8.416976,46.6125673],[8.4171751,46.6094978],[8.4151157,46.6064253],[8.4084704,46.6011033],[8.4076331,46.5995221],[8.4103293,46.5968929],[8.4090069,46.5953952],[8.4074029,46.5877033],[8.4061408,46.5859648],[8.4079739,46.5845199],[8.4076552,46.5830217],[8.4104776,46.579683],[8.4099515,46.5774822],[8.4170306,46.5710997],[8.4192114,46.5667991],[8.4196235,46.5635752],[8.4216513,46.5607463],[8.4234233,46.5596642],[8.4230307,46.5560076],[8.4246547,46.5510633],[8.4265676,46.5485995],[8.4263173,46.547328],[8.4283525,46.545478],[8.4290073,46.5434931],[8.4328042,46.5429382],[8.4352727,46.5403347],[8.4410886,46.5396988],[8.4461136,46.5365801],[8.4530985,46.5349591],[8.4580495,46.5334305],[8.4608362,46.5339632],[8.4637026,46.5358442],[8.4711904,46.5310693],[8.4720129,46.5293144],[8.4776224,46.5276306],[8.4781605,46.5251067],[8.4728201,46.5232392],[8.4684566,46.5185827],[8.4626426,46.5143619],[8.4617132,46.5105823],[8.4606568,46.509021],[8.4572966,46.5079318],[8.4517434,46.5078202],[8.4458033,46.4987867],[8.4451178,46.4969485],[8.4429412,46.4954834],[8.4346089,46.4971581],[8.4316102,46.4970224],[8.4274692,46.4949713],[8.4227644,46.4941305],[8.4195718,46.4926288],[8.4146332,46.4946955],[8.4110164,46.4927743],[8.4010443,46.4923644],[8.398759,46.494246],[8.39478,46.4939017],[8.3922936,46.4947323],[8.3916537,46.4916789],[8.3936456,46.4886664],[8.3946619,46.4849963],[8.3938524,46.4834018],[8.3913629,46.48255],[8.3898906,46.4802863],[8.3864477,46.4770314],[8.3859294,46.4756863],[8.389332,46.472941],[8.3899273,46.4697604],[8.3924359,46.4680301],[8.3881621,46.4671033],[8.3853629,46.4656153],[8.3862968,46.4631785],[8.385753,46.4618605],[8.3821643,46.4591195],[8.3847375,46.4521531],[8.3822439,46.4509773],[8.3777317,46.4512216],[8.3752253,46.4530595],[8.3669678,46.4520028],[8.3569746,46.447568],[8.3543676,46.4457898],[8.3525178,46.4418194],[8.3509768,46.441499],[8.3451587,46.4375422],[8.3427627,46.4366617],[8.3391901,46.4330916],[8.3311958,46.4296013],[8.3264665,46.4268226],[8.3258283,46.4251903],[8.3214977,46.425287],[8.3156187,46.4237583],[8.3067581,46.4244831],[8.3037079,46.4232919],[8.3026904,46.4206638],[8.2989709,46.4174354],[8.299013,46.4143494],[8.2909919,46.4088143],[8.2894725,46.4072964],[8.2929714,46.4065054],[8.2954144,46.4047328],[8.2988616,46.4047966],[8.3035072,46.4025302],[8.3056475,46.402199],[8.309683,46.4040843],[8.3103067,46.4024332],[8.3156075,46.3989108],[8.3171912,46.3939237],[8.3147578,46.3921882],[8.3146396,46.3888876],[8.3185745,46.3870129],[8.3170035,46.3847311],[8.3149782,46.38409],[8.3140997,46.3820096],[8.3147884,46.380385],[8.3127607,46.377162],[8.3076915,46.3755366],[8.3038902,46.3751609],[8.2999717,46.3739492],[8.2956055,46.3715353],[8.2952646,46.3705213],[8.2912239,46.3697691],[8.285812,46.3660763],[8.2830729,46.3637578],[8.2756281,46.3655222],[8.2728952,46.3669548],[8.2714801,46.3662005],[8.2643072,46.3645257],[8.2607439,46.3609082],[8.2643497,46.356204],[8.2655431,46.3518052],[8.2622521,46.3506866],[8.2599738,46.348652],[8.2627188,46.3471927],[8.2627925,46.3460497],[8.2597264,46.3451723],[8.2562386,46.346475],[8.2528608,46.3464543],[8.2494568,46.3446795],[8.2496575,46.3407198],[8.2462044,46.3399798],[8.2405242,46.3397053],[8.2356241,46.3403696],[8.2278935,46.3357457],[8.2240826,46.3344678],[8.2247679,46.3324659],[8.2220029,46.3298492],[8.2233817,46.329102],[8.2232593,46.3269168],[8.2249373,46.3262125],[8.2216069,46.3230869],[8.2146508,46.3197162],[8.2148857,46.3161612],[8.212035,46.3138147],[8.2112999,46.3123354],[8.2121063,46.309703],[8.208406,46.307839],[8.1986571,46.3022554],[8.1944553,46.303453],[8.1865449,46.3011666],[8.1788632,46.2975107],[8.1693786,46.2967626],[8.1656178,46.2969847],[8.1596095,46.2960605],[8.1563145,46.297161],[8.1547107,46.2985655],[8.1498209,46.2998108],[8.1481905,46.3011884],[8.1429713,46.3020756],[8.1381418,46.3019976],[8.1310354,46.2974083],[8.1286658,46.294769],[8.1245447,46.2942093],[8.1207786,46.2919381],[8.1188334,46.2889361],[8.1183444,46.2861503],[8.1170658,46.2855912],[8.1129575,46.2807579],[8.1055093,46.2796326],[8.1019262,46.2752006],[8.0982681,46.2730899],[8.0911008,46.2682287],[8.0873692,46.2674856],[8.0855666,46.2664344],[8.0862327,46.2624543],[8.0839438,46.2608481],[8.0805046,46.2606607],[8.0808675,46.2584367],[8.0824061,46.2569436],[8.0853502,46.2558653],[8.0887593,46.2535519],[8.0993162,46.2525462],[8.1008932,46.2521322],[8.1016608,46.2494367],[8.1055461,46.2499648],[8.1101591,46.2495092],[8.1119662,46.2453065],[8.1115702,46.241113],[8.1128424,46.2389452],[8.1151378,46.2373099],[8.1207221,46.235654],[8.1243141,46.229771],[8.1273086,46.2282879],[8.1302624,46.2280185],[8.1334168,46.2264731],[8.1388826,46.2261526],[8.1435307,46.211599],[8.1513374,46.2029616],[8.1514643,46.1991694],[8.1533003,46.1911073],[8.1572458,46.1895323],[8.1650665,46.1828638],[8.1659485,46.1803944],[8.1652756,46.1770043],[8.1597812,46.1748649],[8.1578973,46.1734047],[8.1566678,46.1693375],[8.1535362,46.1666559],[8.1511295,46.165422],[8.1494179,46.1598135],[8.1496427,46.1572487],[8.1530778,46.1538795],[8.1532199,46.1484403],[8.1549304,46.147802],[8.1502651,46.1416594],[8.1462156,46.1377542],[8.1421988,46.1361121],[8.1381493,46.1358225],[8.136326,46.1369284],[8.1335381,46.1367374],[8.125038,46.1351434],[8.1216963,46.1326742],[8.1152611,46.1302395],[8.1159836,46.1273677],[8.1142501,46.1241336],[8.1152706,46.1222141],[8.1137186,46.1197518],[8.1132215,46.1165636],[8.1104651,46.1154628],[8.1098796,46.1133253],[8.1082182,46.1116247],[8.1043195,46.1113247],[8.1016415,46.110385],[8.1002743,46.111017],[8.0971503,46.1084504],[8.0866492,46.1068404],[8.0806252,46.1053128],[8.0773828,46.1062799],[8.0722794,46.1063295],[8.0635139,46.1046383],[8.0579735,46.1023928],[8.0537028,46.101338],[8.0490747,46.1022281],[8.0462265,46.1007626],[8.0428778,46.0999515],[8.0389416,46.0999887],[8.0347232,46.1008515],[8.0334077,46.0987952],[8.0338183,46.0949428],[8.0307857,46.0919272],[8.0295964,46.0895495],[8.0303752,46.0874494],[8.0292094,46.0816036],[8.0262143,46.0792221],[8.0224,46.0742168],[8.0230774,46.0723746],[8.0219398,46.0687192],[8.0242438,46.0666382],[8.0238439,46.063087],[8.0251913,46.0621984],[8.0261912,46.0586828],[8.0302395,46.0534282],[8.0303712,46.0512685],[8.0321545,46.0477947],[8.0341265,46.0461211],[8.0340968,46.0433956],[8.0314049,46.0417455],[8.0283253,46.0412669],[8.0235029,46.0396728],[8.0208643,46.0381392],[8.0157514,46.0334427],[8.0119171,46.0312124],[8.0139108,46.0303666],[8.0174654,46.0247076],[8.0124571,46.0210634],[8.011106,46.0190463],[8.013329,46.0155536],[8.0123972,46.0119878],[8.0071529,46.011402],[8.001105,46.0121966],[8.0001949,46.0089631],[7.9977171,46.0065196],[7.9962394,46.0037199],[7.9940189,46.0021119],[7.9943252,46.0004912],[7.9886651,45.9959942],[7.9843512,45.9969867],[7.9789527,45.9992616],[7.9725982,45.9988601],[7.9660918,45.9974065],[7.962191,45.9971099],[7.95818,45.996076],[7.9543834,45.9972358],[7.9445776,45.9976221],[7.9338531,45.9964188],[7.9296257,45.9970136],[7.9230822,45.99706],[7.9190626,45.9959028],[7.9176546,45.9963006],[7.908696,45.9969671],[7.9059525,45.993786],[7.9061074,45.9925986],[7.9035604,45.9887261],[7.9002871,45.9877103],[7.8994968,45.9858065],[7.8948829,45.9818672],[7.8938494,45.978606],[7.8850946,45.9761942],[7.8781064,45.973568],[7.8776664,45.9717886],[7.8808355,45.9680251],[7.8811279,45.9637465],[7.8773227,45.9610853],[7.8778923,45.9597337],[7.8752251,45.9568475],[7.8776533,45.9540495],[7.877007,45.9490325],[7.8710263,45.9477514],[7.8685613,45.9367278],[7.8709879,45.9347081],[7.8714191,45.9321697],[7.8744063,45.9300892],[7.8769649,45.9264283],[7.8735993,45.922626],[7.8730427,45.9206941],[7.8701602,45.9196438],[7.8668101,45.9197735],[7.8635632,45.9167004],[7.861611,45.9174543],[7.8595325,45.9203587],[7.8562263,45.9211805],[7.8508076,45.9204809],[7.8476126,45.9206725],[7.8408309,45.9221362],[7.8366397,45.9218363],[7.8322781,45.9247121],[7.8219436,45.9270147],[7.8178124,45.9261111],[7.8134121,45.9235351],[7.8099672,45.9230338],[7.8061438,45.9198979],[7.8025471,45.9178406],[7.7990647,45.917447],[7.7937094,45.9203876],[7.7921213,45.9239637],[7.7883569,45.9258915],[7.7869233,45.9274701],[7.7834449,45.9277957],[7.7792236,45.9289059],[7.7772709,45.9299913],[7.7751862,45.9326782],[7.7725234,45.9336307],[7.769385,45.9369682],[7.7626232,45.9381303],[7.7565028,45.9387774],[7.7535439,45.9399102],[7.7513503,45.9396014],[7.7479637,45.9403754],[7.7450032,45.9343565],[7.742953,45.9319603],[7.7385594,45.930038],[7.7362295,45.9282901],[7.7351142,45.9240306],[7.7308528,45.9231948],[7.7209291,45.9234269],[7.7174314,45.9250548],[7.7158944,45.9269926],[7.7127704,45.9286644],[7.7117326,45.9325349],[7.7078724,45.9340284],[7.7073626,45.935217],[7.7091605,45.9416445],[7.7085268,45.9438948],[7.7099398,45.9480114],[7.7084189,45.9493215],[7.7062172,45.9493743],[7.6999247,45.9531115],[7.6990095,45.9544689],[7.6909766,45.9548649],[7.6868521,45.9554138],[7.6810552,45.9569556],[7.6781059,45.9608749],[7.6765774,45.9653309],[7.6750054,45.965721],[7.6728273,45.9691888],[7.670856,45.9697776],[7.6683282,45.9730211],[7.6639787,45.9756836],[7.6608813,45.975438],[7.6578284,45.9766404],[7.655982,45.9762841],[7.6538454,45.9743092],[7.6496514,45.9740472],[7.6424145,45.9707951],[7.636994,45.970157],[7.6299404,45.9710237],[7.6267412,45.9710471],[7.6198437,45.9723627],[7.6174278,45.9713321],[7.6150671,45.9713628],[7.6100027,45.9693887],[7.6043953,45.9703896],[7.5997508,45.9702793],[7.5946567,45.9708531],[7.586981,45.9709264],[7.5834634,45.9725321],[7.581122,45.9750718],[7.5819948,45.9783091],[7.578376,45.9860496],[7.5742503,45.9875389],[7.5669845,45.9873045],[7.5613028,45.9856196],[7.5536002,45.9861674],[7.5501802,45.9859729],[7.5459435,45.9838182],[7.5449682,45.979969],[7.5421645,45.9778847],[7.5415421,45.9762391],[7.5429893,45.9705976],[7.5446244,45.9689319],[7.5450055,45.9658461],[7.5463532,45.9624086],[7.545575,45.9602235],[7.543119,45.9573472],[7.5384457,45.9549047],[7.5345803,45.956995],[7.5278348,45.9568476],[7.52487,45.9578573],[7.5226127,45.9577241],[7.5191355,45.9613067],[7.516106,45.9624512],[7.5142328,45.9603386],[7.5115873,45.9592609],[7.5070077,45.9585711],[7.5044032,45.9592203],[7.4992733,45.9624165],[7.4958914,45.9599445],[7.496082,45.9571829],[7.4918887,45.9554038],[7.487246,45.9556577],[7.4811823,45.9529795],[7.4786028,45.9525756],[7.4747318,45.9492936],[7.4717004,45.9477024],[7.472214,45.9439422],[7.4741072,45.9403884],[7.474917,45.9365022],[7.4713701,45.9340475],[7.469462,45.9339131],[7.4644091,45.9353985],[7.4582208,45.9352918],[7.456415,45.9324315],[7.4513873,45.9326121],[7.4468364,45.9312182],[7.4447481,45.9315152],[7.4420408,45.9291315],[7.4410095,45.9269007],[7.4371425,45.924202],[7.4341783,45.9199741],[7.426601,45.915143],[7.4216397,45.9140359],[7.4211248,45.9123537],[7.4186122,45.9113817],[7.4161637,45.9114262],[7.4111137,45.9085915],[7.4077248,45.9084377],[7.4051471,45.9091745],[7.4028908,45.9110178],[7.401409,45.9109544],[7.3977769,45.9083624],[7.3978691,45.9057538],[7.3946892,45.9023613],[7.3887278,45.8979241],[7.3829705,45.8965091],[7.3785491,45.8987106],[7.3759058,45.9006162],[7.3740121,45.9004172],[7.3722323,45.9018734],[7.3688814,45.902681],[7.3660449,45.9041004],[7.3612529,45.9032426],[7.3595101,45.9055081],[7.3563504,45.9073948],[7.3565002,45.9105253],[7.3554683,45.9111992],[7.3506738,45.9116453],[7.3447404,45.9148518],[7.3382608,45.9133889],[7.3308948,45.9106564],[7.3243495,45.9102001],[7.3182899,45.91157],[7.3163456,45.9166053],[7.3102625,45.9165985],[7.3057106,45.9176276],[7.3020131,45.9170834],[7.3000755,45.9188352],[7.2944371,45.9218133],[7.2903857,45.9202698],[7.28935,45.9174936],[7.28584,45.9162965],[7.2846627,45.9128628],[7.2829008,45.9113416],[7.2768036,45.9007355],[7.2711957,45.899765],[7.2700954,45.8982347],[7.2665913,45.8965036],[7.2666407,45.8953105],[7.263134,45.893492],[7.2594392,45.8906775],[7.2584037,45.8890554],[7.254537,45.8879781],[7.2524289,45.8897658],[7.2524945,45.8919489],[7.2510569,45.892923],[7.2478233,45.8932656],[7.244746,45.8912409],[7.2405973,45.8901013],[7.2355654,45.8901667],[7.2316067,45.8916421],[7.2283332,45.8920229],[7.2256558,45.8897563],[7.2230513,45.8903115],[7.2164189,45.8887288],[7.2157141,45.8838706],[7.2109739,45.882076],[7.2098379,45.8806089],[7.2060943,45.8801702],[7.2037641,45.8766945],[7.2001362,45.8755095],[7.1990972,45.8723818],[7.1976441,45.8703635],[7.1985228,45.8658214],[7.2002831,45.8634155],[7.1967501,45.8604392],[7.1906176,45.8586781],[7.1862135,45.8601898],[7.1847681,45.8599676],[7.1803569,45.8629263],[7.1785872,45.863553],[7.1753362,45.8629026],[7.1619608,45.8712695],[7.1637481,45.8731189],[7.1646031,45.8758335],[7.1614905,45.8782086],[7.1536499,45.8792714],[7.1519842,45.8779549],[7.1469068,45.8760796],[7.1411155,45.8753175],[7.1393211,45.8737385],[7.1351804,45.8726478],[7.1336054,45.8710243],[7.1335924,45.8687575],[7.1259841,45.8638968],[7.1247339,45.8641002],[7.1205641,45.8615426],[7.1181316,45.8591789],[7.1129406,45.8595865],[7.1089573,45.8583157],[7.1035178,45.8594061],[7.1015494,45.8591755],[7.0977074,45.8621052],[7.0961916,45.8677227],[7.092515,45.8728657],[7.0953676,45.875906],[7.0890912,45.8806541],[7.0851725,45.8831605],[7.0817284,45.8839412],[7.0790981,45.8863166],[7.0785694,45.8883569],[7.0766646,45.8900599],[7.0765917,45.895232],[7.0739907,45.8950257],[7.0699181,45.8971713],[7.0699768,45.898026],[7.0641899,45.9002288],[7.0639901,45.9068218],[7.0643846,45.9094319],[7.0605551,45.913485],[7.0583634,45.9136125],[7.0534923,45.915395],[7.0478147,45.9199901],[7.0472903,45.9212207],[7.0439612,45.9228216],[7.0433187,45.9265801],[7.0420016,45.928044],[7.0421739,45.9300183],[7.0408699,45.9320646],[7.0383034,45.9339625],[7.0356676,45.938253],[7.0368719,45.9410459],[7.0368781,45.9436996],[7.0383246,45.945144],[7.0370329,45.9520448],[7.0372209,45.9549181],[7.0357954,45.9558395],[7.0286898,45.9574509],[7.0212255,45.9586828],[7.0199228,45.9603691],[7.0179625,45.9603348],[7.0125976,45.965172],[7.0106374,45.9683849],[7.0085427,45.9690066],[7.0102525,45.9730341],[7.0148337,45.9750751],[7.0194169,45.9758123],[7.0221818,45.976992],[7.0234314,45.9789306],[7.0223333,45.9805751],[7.0193669,45.98256],[7.0155658,45.9868252],[7.012562,45.9870293],[7.0116613,45.9886717],[7.0124883,45.9917108],[7.0102523,45.9942635],[7.0104169,45.9972675],[7.0065062,45.9997848],[7.0054664,46.0011031],[7.000606,45.998938],[6.9959122,45.9998666],[6.98861,46.0036628],[6.9853106,46.0041985],[6.9849843,46.0069432],[6.9834198,46.0099256],[6.9835845,46.0125836],[6.9808315,46.0174615],[6.9813305,46.0195689],[6.9769783,46.02163],[6.9744448,46.0240077],[6.9698208,46.0267644],[6.9665388,46.0311467],[6.9629003,46.0304301],[6.9545329,46.0416657],[6.9514372,46.0499016],[6.9502268,46.0516537],[6.9451261,46.0505817],[6.9431607,46.0508572],[6.9393656,46.0528404],[6.9372833,46.0552903],[6.9347543,46.0567271],[6.935169,46.0586486],[6.936924,46.0600979],[6.9366335,46.0627287],[6.9375064,46.0642703],[6.9339979,46.0659885],[6.9286321,46.0646586],[6.9245985,46.0652411],[6.9186857,46.0600277],[6.9144282,46.0567977],[6.9145313,46.0559395],[6.9107684,46.0537002],[6.911138,46.0520269],[6.9085488,46.0501288],[6.9042179,46.0492185],[6.8950174,46.0481491],[6.8919077,46.0462364],[6.8914056,46.0426379],[6.8896966,46.0419678],[6.8865622,46.0441897],[6.8826972,46.0446275],[6.8760746,46.0473825],[6.8756505,46.0493482],[6.8720667,46.0510053],[6.8728366,46.0546228],[6.8751551,46.0581837],[6.87727,46.0641623],[6.8788459,46.0650806],[6.8801494,46.0693633],[6.8846522,46.0709098],[6.887317,46.0729506],[6.8909598,46.0740908],[6.8900134,46.0766041],[6.8881002,46.0785604],[6.8903566,46.0809048],[6.8912737,46.0846264],[6.8887868,46.0869324],[6.8882261,46.0884247],[6.8823362,46.0951793],[6.8851313,46.0965986],[6.8869065,46.0985807],[6.8869194,46.1004755],[6.8901686,46.1018667],[6.8925118,46.1043214],[6.8936294,46.1070007],[6.8953798,46.1087825],[6.8937599,46.1105097],[6.89321,46.1141692],[6.8961998,46.1175603],[6.8979439,46.1219811],[6.8996824,46.1239837],[6.897782,46.1245586],[6.8953875,46.1237166],[6.892564,46.125354],[6.8823204,46.1229423],[6.8779751,46.1251009],[6.8732662,46.1259462],[6.869463,46.1251263],[6.8672535,46.1256868],[6.8599343,46.1257981],[6.8546622,46.1266971],[6.8515709,46.1266582],[6.8475994,46.1274035],[6.8429767,46.1290372],[6.8389436,46.1327455],[6.8347587,46.1320034],[6.8310146,46.132517],[6.8238406,46.1312256],[6.8186957,46.1310854],[6.8150725,46.1292701],[6.8126492,46.1321011],[6.811115,46.1318909],[6.8081374,46.1359877],[6.8040035,46.1359331],[6.8024545,46.1353113],[6.798048,46.1361503],[6.7964688,46.1389454],[6.7963145,46.142165],[6.7949244,46.1440844],[6.7945255,46.1477591],[6.7903776,46.1535558],[6.7902881,46.1551476],[6.792647,46.1597245],[6.7917076,46.1628128],[6.7979626,46.1680976],[6.7997581,46.1683769],[6.8030672,46.1718123],[6.8053407,46.1725818],[6.8072266,46.1786888],[6.8125574,46.1814205],[6.8094696,46.1891408],[6.80869,46.1925241],[6.8038243,46.2025021],[6.8038427,46.2048683],[6.8072396,46.207911],[6.8079905,46.2108565],[6.8098806,46.2118819],[6.809859,46.2138399],[6.8134731,46.2153546],[6.8175521,46.2206752],[6.8203037,46.2216506],[6.8217391,46.2233627],[6.8218808,46.2278049],[6.8205858,46.2303537],[6.8212233,46.2323082],[6.8269565,46.2342457],[6.8307494,46.2344674],[6.8371599,46.2408102],[6.8378462,46.2448882],[6.8398013,46.2482192],[6.8429443,46.2485984],[6.8519884,46.2521379],[6.8554217,46.2552017],[6.8544587,46.2592945],[6.8572666,46.2619475],[6.8601917,46.2662283],[6.8589064,46.2738779],[6.8608191,46.2763263],[6.8648577,46.280009],[6.8643418,46.2831535],[6.8591307,46.2884904],[6.8580808,46.2913105],[6.8544478,46.2925194],[6.8521184,46.2922109],[6.851053,46.2903748],[6.8480415,46.2898194],[6.8453833,46.2911221],[6.8439219,46.2942911],[6.8396536,46.295056],[6.8363688,46.2972903],[6.8347838,46.2997957],[6.8304904,46.299929],[6.8288513,46.3011561],[6.8283367,46.3031952],[6.8300519,46.3052469],[6.8253737,46.311959],[6.8215291,46.3129018],[6.8198054,46.3155471],[6.8169161,46.315943],[6.8129116,46.3181432],[6.8070449,46.3207467],[6.8012148,46.3195263],[6.7984872,46.3232314],[6.7974267,46.3266655],[6.7990015,46.3290748],[6.7963823,46.3313634],[6.7964003,46.3329997],[6.7866985,46.3321457],[6.7845948,46.3325941],[6.7843981,46.3365236],[6.7803768,46.341334],[6.7790902,46.3446227],[6.7774851,46.3461382],[6.7745843,46.3473325],[6.7722085,46.3503771],[6.7706262,46.3554324],[6.7714935,46.36097],[6.776363,46.364417],[6.7807165,46.3665295],[6.7850457,46.3663747],[6.7907999,46.366821],[6.7930326,46.3680732],[6.7970992,46.3714508],[6.7983896,46.3738576],[6.8036993,46.3764845],[6.8054372,46.3784102],[6.806424,46.3829587],[6.8038798,46.383754],[6.8019039,46.3859739],[6.8029697,46.3925306],[6.8049428,46.3936573],[6.8210834,46.4271524],[6.8248719,46.4246181],[6.8553669,46.3978634],[6.8619757,46.391438],[6.8695314,46.3862409],[6.8753408,46.3813854],[6.8789552,46.380054],[6.8835342,46.37718],[6.8852804,46.3754794],[6.8862456,46.3726236],[6.8868253,46.3652946],[6.8852836,46.3614733],[6.8823007,46.3572373],[6.8821691,46.3536622],[6.8838405,46.3519556],[6.8880778,46.3494718],[6.8938788,46.342233],[6.8958622,46.3405798],[6.9005028,46.3387541],[6.904439,46.3385448],[6.9149656,46.3395998],[6.9195286,46.338862],[6.921311,46.3378035],[6.9299019,46.3302108],[6.9309947,46.3285855],[6.9324397,46.3225392],[6.9317906,46.3180125],[6.9321615,46.3152435],[6.9356546,46.3049376],[6.9361624,46.2993645],[6.9389012,46.2959244],[6.9431342,46.2936768],[6.9473989,46.2922507],[6.9510016,46.290383],[6.958558,46.2852197],[6.9609854,46.2822378],[6.9648457,46.2692576],[6.9665271,46.2672843],[6.9742735,46.260646],[6.9809725,46.2561762],[6.9859671,46.2536392],[6.9880822,46.2511743],[6.9888828,46.2454735],[6.9901985,46.2433351],[6.994404,46.2395869],[6.9957862,46.2368051],[7.0002249,46.2345765],[7.0019592,46.2331098],[7.0028102,46.2293158],[7.0025265,46.2255437],[7.0036673,46.2232317],[7.0076889,46.2210253],[7.009649,46.2150781],[7.0122939,46.2050979],[7.0202901,46.201594],[7.0249592,46.1977189],[7.0289903,46.1919301],[7.0312273,46.1906736],[7.0325304,46.1874349],[7.0374752,46.18802],[7.0440141,46.1901147],[7.0562343,46.1956996],[7.0590004,46.1959917],[7.0639811,46.1994351],[7.0712504,46.201008],[7.0769759,46.1989643],[7.0817243,46.1997646],[7.0859709,46.201391],[7.0881229,46.2015332],[7.0936332,46.2048489],[7.0961661,46.2075149],[7.0995942,46.2079089],[7.101389,46.209442],[7.1062519,46.2110149],[7.1156664,46.2176886],[7.1199556,46.2227929],[7.122249,46.2233514],[7.1212323,46.2293089],[7.1234349,46.2324974],[7.1241673,46.2359268],[7.1261652,46.2371711],[7.1351059,46.2365508],[7.1409912,46.2379069],[7.1452135,46.2415929],[7.1501486,46.2430785],[7.1514276,46.2447209],[7.1517751,46.2480756],[7.1552397,46.2527511],[7.1606069,46.2532154],[7.1652166,46.256345],[7.1673049,46.2588355],[7.1715274,46.2610946],[7.1719798,46.2626431],[7.1756826,46.265756],[7.178157,46.268581],[7.1837233,46.2684712],[7.1884263,46.2706654],[7.1894166,46.2729058],[7.1873805,46.2783869],[7.1863146,46.2828413],[7.1902936,46.2850046],[7.194847,46.285679],[7.1938859,46.2883793],[7.1969555,46.2891276],[7.1892551,46.2951699],[7.1890894,46.3027549],[7.190104,46.304533],[7.1946165,46.3078064],[7.1955293,46.3097498],[7.1995191,46.3125618],[7.2055595,46.3141383],[7.2054081,46.3152855],[7.2084115,46.3176264],[7.2095893,46.3196139],[7.2088266,46.3235401],[7.2147009,46.3253362],[7.2217297,46.3294194]]]},"properties":{"ID_0":223,"ISO":"CH-VS","NAME_0":"Switzerland","ID_1":23,"NAME_1":"Valais","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Vallais|Vallese|Wallis"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.3535342,47.511421],[9.3543297,47.5119146],[9.3590917,47.5105357],[9.3581153,47.5081445],[9.3546048,47.5093815],[9.3535342,47.511421]]],[[[8.9435245,47.375917],[8.9448637,47.3781427],[8.948613,47.3798708],[8.9537798,47.3808946],[8.9569233,47.3848034],[8.9574396,47.3864331],[8.9614454,47.3852975],[8.9663466,47.3857039],[8.9662499,47.3883903],[8.9680456,47.391276],[8.9714795,47.3912881],[8.9716181,47.3928651],[8.974515,47.3983783],[8.9756919,47.3993349],[8.9739209,47.4024822],[8.9722709,47.4037173],[8.9741558,47.4057049],[8.9765655,47.410676],[8.9817893,47.4124905],[8.9833305,47.4114284],[8.9885716,47.4118847],[8.9905791,47.4158605],[8.9909826,47.4182255],[8.9926961,47.4218316],[8.9916422,47.4241304],[8.9894475,47.4249681],[8.9900801,47.4271492],[8.9894648,47.4294378],[8.9920346,47.429688],[8.9998545,47.4321388],[8.9986033,47.4349584],[9.0032879,47.4339771],[9.0090544,47.4345786],[9.0119739,47.4334613],[9.0142647,47.4351472],[9.0184891,47.4367682],[9.0196472,47.4403286],[9.0221498,47.4416775],[9.0277546,47.4370697],[9.0350094,47.4392514],[9.0368117,47.4375581],[9.038616,47.4381399],[9.0380946,47.4414518],[9.0422986,47.4402165],[9.0451,47.4429075],[9.0474581,47.4442335],[9.0530133,47.4425594],[9.0547345,47.4434767],[9.0572894,47.4429504],[9.0603728,47.4433246],[9.0601856,47.444979],[9.0625474,47.4462445],[9.057966,47.4479906],[9.0545843,47.4485273],[9.0543253,47.4505763],[9.0506957,47.4526977],[9.0476148,47.453539],[9.0416887,47.4540316],[9.0278168,47.4574973],[9.0264127,47.4601448],[9.0307268,47.4617914],[9.02895,47.4628849],[9.0283829,47.4653114],[9.029486,47.4666606],[9.0265423,47.4678239],[9.0174884,47.4696344],[9.010048,47.4716284],[9.0086604,47.4730503],[9.0119666,47.4753471],[9.00873,47.4757936],[9.0087899,47.4797543],[9.0062705,47.4808461],[9.0066463,47.4826688],[9.010783,47.4854659],[9.0102094,47.487746],[9.0124778,47.4899739],[9.017442,47.4901024],[9.0195672,47.4889235],[9.0238335,47.4889083],[9.0262623,47.4900764],[9.0283087,47.4886722],[9.0301712,47.4904129],[9.0410512,47.4947278],[9.0442147,47.4927986],[9.0512222,47.4915165],[9.0515399,47.4898865],[9.0540313,47.4897057],[9.0558181,47.4874132],[9.0589607,47.4881691],[9.0584867,47.4901622],[9.0598621,47.4912339],[9.0646815,47.4910369],[9.0688729,47.4916253],[9.0728221,47.4936173],[9.0744687,47.4923049],[9.0796332,47.4948798],[9.082355,47.4952392],[9.0835434,47.4937642],[9.0843949,47.4889398],[9.0882754,47.4860749],[9.0898588,47.4827714],[9.0918398,47.483458],[9.0977442,47.4838949],[9.0994276,47.4852207],[9.1092239,47.4839682],[9.1144144,47.482945],[9.1159947,47.4797329],[9.1226901,47.4806761],[9.1246164,47.4817238],[9.1243335,47.4831922],[9.1269705,47.4842011],[9.1373295,47.485622],[9.1402526,47.4844249],[9.1492017,47.4871053],[9.1539065,47.4869771],[9.1579399,47.4891248],[9.1587008,47.4914969],[9.1627299,47.4968805],[9.1605372,47.4986891],[9.1607182,47.4999861],[9.1642144,47.5020583],[9.165868,47.5040821],[9.1719586,47.5033236],[9.1691694,47.4983058],[9.1748623,47.4953194],[9.1774174,47.494847],[9.1810829,47.4965275],[9.182856,47.4913451],[9.1887775,47.4931076],[9.1933709,47.4912201],[9.193063,47.4889388],[9.1967448,47.4905185],[9.19877,47.4889782],[9.203121,47.4892276],[9.2076091,47.4886274],[9.2065159,47.4868206],[9.2077853,47.4831107],[9.2098438,47.4820022],[9.2089576,47.4801744],[9.2131888,47.4789088],[9.2132597,47.4803712],[9.2182845,47.4838123],[9.2197113,47.4832975],[9.2247012,47.4845577],[9.2288951,47.4842515],[9.2323141,47.4832339],[9.2321982,47.4810574],[9.2370872,47.4809204],[9.2409194,47.4801622],[9.2445998,47.4802837],[9.2470467,47.4758303],[9.2511535,47.4744953],[9.2539502,47.4750551],[9.262584,47.4745002],[9.2671139,47.4767175],[9.2748976,47.4791272],[9.2783593,47.4793971],[9.2790434,47.4814609],[9.2811768,47.4830722],[9.286575,47.4822365],[9.2889259,47.4795068],[9.2961755,47.4787422],[9.2986449,47.4772327],[9.3043321,47.479442],[9.3084583,47.4819944],[9.3083858,47.4831713],[9.3106755,47.4848561],[9.3151352,47.486318],[9.3190032,47.4905445],[9.3208334,47.491096],[9.3193399,47.4934751],[9.3200558,47.4968389],[9.317247,47.5005128],[9.314707,47.5006759],[9.3101362,47.4980426],[9.3083991,47.5014993],[9.3091906,47.5032822],[9.3083954,47.5052947],[9.310149,47.5076413],[9.3150427,47.5068893],[9.3166065,47.509596],[9.3116673,47.5103558],[9.3074735,47.5131438],[9.3019243,47.5141207],[9.3025769,47.5123433],[9.2993608,47.5120963],[9.2977276,47.5091702],[9.2953431,47.5096195],[9.2919545,47.5081475],[9.29156,47.5066644],[9.2863927,47.5076347],[9.2834029,47.5060849],[9.2736076,47.5070115],[9.2715652,47.5078357],[9.270584,47.5100791],[9.2715293,47.5113774],[9.2753857,47.5131558],[9.2778385,47.5118605],[9.2779652,47.5103305],[9.280356,47.510081],[9.2794727,47.5139777],[9.2826656,47.5146506],[9.2827228,47.5163979],[9.2848198,47.5185155],[9.2822861,47.5206844],[9.293473,47.5229126],[9.2962941,47.5245141],[9.3013616,47.5241226],[9.3027458,47.5264322],[9.3070341,47.525853],[9.3127646,47.5221336],[9.3136789,47.5247579],[9.3123318,47.5275667],[9.3153342,47.5302627],[9.318645,47.5315204],[9.3221946,47.5310817],[9.3241352,47.5292912],[9.3287484,47.5283965],[9.3296676,47.5296481],[9.3381187,47.5288425],[9.3401946,47.5264302],[9.3389825,47.524857],[9.3411612,47.5239876],[9.3414015,47.5223656],[9.3439152,47.5207557],[9.3531534,47.5192251],[9.3563952,47.5195004],[9.3558349,47.5163681],[9.3533793,47.5148831],[9.3503056,47.5152997],[9.3457669,47.511849],[9.3484967,47.5112532],[9.3461618,47.5080217],[9.3443072,47.5082828],[9.3432663,47.5064397],[9.3382993,47.5068369],[9.3363496,47.5022721],[9.3377213,47.5007801],[9.3397587,47.5031992],[9.3417981,47.5037224],[9.3465568,47.5019466],[9.3559026,47.5008718],[9.3560896,47.5034155],[9.3623022,47.5026659],[9.367792,47.500448],[9.3721996,47.5008819],[9.3744576,47.4996607],[9.3740695,47.4953604],[9.3730742,47.4944284],[9.3699466,47.4945004],[9.3684346,47.4920822],[9.3727856,47.490464],[9.3681951,47.4880415],[9.3665204,47.4854604],[9.3682145,47.4847397],[9.3731321,47.4853123],[9.3750363,47.487066],[9.3808231,47.4873097],[9.3796002,47.4854753],[9.3821622,47.4844994],[9.3845014,47.4824436],[9.3887828,47.4815637],[9.3916002,47.4786429],[9.3911096,47.4774009],[9.3932328,47.4759856],[9.3969824,47.4749806],[9.3963543,47.4778336],[9.3993032,47.4779255],[9.401195,47.4807878],[9.400506,47.4828141],[9.4020757,47.4849989],[9.4008701,47.486495],[9.4031607,47.4872463],[9.406458,47.4924896],[9.4095635,47.493387],[9.412755,47.4954993],[9.4135282,47.4975264],[9.4162927,47.4973748],[9.4212725,47.4961761],[9.4251069,47.5015032],[9.4295704,47.5034547],[9.430399,47.5046431],[9.435993,47.5066787],[9.502768,47.5472144],[9.5146841,47.5369248],[9.5319082,47.5357151],[9.550566,47.5371757],[9.5617745,47.5044908],[9.5612445,47.4991101],[9.5616754,47.4970249],[9.5634728,47.4942207],[9.5662306,47.4921022],[9.5787104,47.4853513],[9.5830298,47.4817344],[9.5929211,47.4659003],[9.5951426,47.4633095],[9.600392,47.4616476],[9.6035991,47.462373],[9.6050548,47.4640063],[9.606456,47.4694432],[9.6083244,47.4706],[9.6121465,47.4688272],[9.6169671,47.4619427],[9.6206905,47.4583866],[9.6262562,47.4566924],[9.6440906,47.4558639],[9.6544163,47.4542524],[9.6580748,47.4529725],[9.6594691,47.4513787],[9.6579866,47.4477909],[9.6473516,47.440331],[9.6443633,47.4358537],[9.6450712,47.4320533],[9.6485801,47.4256203],[9.6504423,47.4204335],[9.6518975,47.4083614],[9.6516178,47.404626],[9.6543745,47.4043994],[9.6573329,47.400157],[9.6600883,47.3975456],[9.6624418,47.3963943],[9.6706081,47.3936814],[9.6738212,47.3908307],[9.6741357,47.3893037],[9.6733513,47.3815101],[9.6702523,47.3774367],[9.6624091,47.3710805],[9.6587582,47.369461],[9.6538665,47.3680802],[9.6474958,47.3673501],[9.6368982,47.3674823],[9.6336017,47.3671317],[9.6262729,47.3650807],[9.6244598,47.3661451],[9.6052835,47.3514775],[9.6007126,47.3469074],[9.5993193,47.3448173],[9.5947963,47.3337548],[9.5892637,47.319113],[9.5882928,47.317549],[9.5835354,47.3126155],[9.5789382,47.3098531],[9.5655848,47.3041205],[9.5574369,47.2990776],[9.5544992,47.2956203],[9.5521967,47.2887358],[9.550933,47.2861331],[9.5463706,47.2802637],[9.5400379,47.2764186],[9.5331471,47.2730917],[9.5303885,47.2696813],[9.5302636,47.263364],[9.5298329,47.2618521],[9.5204517,47.2439624],[9.5180129,47.2406452],[9.5046405,47.2251254],[9.5016427,47.2201756],[9.4996332,47.2113569],[9.4906306,47.1981947],[9.4878765,47.1901944],[9.485929,47.1823578],[9.4859776,47.180525],[9.4906624,47.1644987],[9.4933084,47.159639],[9.4997225,47.1497721],[9.5058302,47.1439003],[9.5081841,47.1407276],[9.5123851,47.1303024],[9.5188549,47.1055048],[9.5195806,47.0983373],[9.5187523,47.0947891],[9.5156005,47.0878537],[9.5127602,47.0851421],[9.4922746,47.073844],[9.4750928,47.066967],[9.4718614,47.0642006],[9.4717767,47.0615162],[9.4757865,47.0517524],[9.4772452,47.049055],[9.4814701,47.0440851],[9.4852299,47.040302],[9.5060619,47.0186885],[9.5083283,47.0151058],[9.5106838,47.0091449],[9.5215774,46.9976232],[9.5455732,46.9765687],[9.5412247,46.9742934],[9.5348681,46.9746422],[9.5286421,46.9738731],[9.5277151,46.972852],[9.5230191,46.9725646],[9.5189416,46.9703551],[9.5173055,46.967447],[9.5186979,46.9650978],[9.5181317,46.9605252],[9.5188182,46.9565006],[9.5182555,46.9556507],[9.5058699,46.9541872],[9.5045972,46.9536684],[9.5029251,46.9493426],[9.5002045,46.9495933],[9.4986213,46.9450791],[9.4928638,46.9392167],[9.4937076,46.937716],[9.4865233,46.935524],[9.4866712,46.933234],[9.4857178,46.9303797],[9.483271,46.9276979],[9.4804315,46.9259786],[9.4791208,46.9222092],[9.4777845,46.9205665],[9.4785736,46.9156817],[9.4879923,46.9122928],[9.4822737,46.9082093],[9.4754217,46.9064212],[9.4723334,46.9040538],[9.4710062,46.9014202],[9.467249,46.8998878],[9.4677801,46.8963305],[9.4697363,46.8914727],[9.4668226,46.8860876],[9.4582931,46.8866497],[9.4542546,46.8860551],[9.4559388,46.881209],[9.4542782,46.8768809],[9.45254,46.874617],[9.4488629,46.8728865],[9.4406423,46.8787707],[9.4378018,46.8797379],[9.4332544,46.8845738],[9.4282046,46.8855432],[9.4253082,46.8876622],[9.4198935,46.8895669],[9.4158888,46.8900923],[9.4135233,46.8912556],[9.40994,46.8919759],[9.400591,46.8923462],[9.394294,46.8934132],[9.3872826,46.8966139],[9.3816947,46.8976333],[9.3746489,46.8972892],[9.367996,46.8977237],[9.3655032,46.8969199],[9.3555248,46.8981132],[9.3470318,46.8996724],[9.3431054,46.8984862],[9.3386677,46.9020295],[9.3304399,46.9017967],[9.321897,46.9005987],[9.3176212,46.9012315],[9.3126956,46.9047233],[9.3099293,46.9057655],[9.3010512,46.9054822],[9.2933008,46.9070865],[9.2907325,46.9069667],[9.2869138,46.9050623],[9.2804479,46.9072336],[9.2768935,46.9073488],[9.2740708,46.9067366],[9.2669244,46.9032186],[9.2574883,46.9083978],[9.2543512,46.9132325],[9.2488895,46.9162714],[9.249483,46.9189568],[9.2513733,46.9216031],[9.2502246,46.9241704],[9.2525772,46.9270313],[9.2512553,46.9293498],[9.2502545,46.9346294],[9.2488126,46.9356495],[9.2391284,46.9393859],[9.2393256,46.9405529],[9.2376963,46.9438354],[9.2362988,46.9448502],[9.2370568,46.9474529],[9.2365521,46.9528348],[9.2375366,46.9549463],[9.2447029,46.9564677],[9.2458588,46.9597657],[9.2427356,46.9657885],[9.2440438,46.9711697],[9.2467711,46.9754427],[9.2463903,46.9789016],[9.2439295,46.9808765],[9.2465684,46.9870345],[9.2457361,46.9885859],[9.2455505,46.9921988],[9.247531,46.9946467],[9.2498737,46.9952145],[9.2496743,46.9979581],[9.2445596,47.0049286],[9.2423298,47.0087516],[9.2422619,47.0127507],[9.2428348,47.014655],[9.2389092,47.0203118],[9.2366431,47.0217942],[9.2363488,47.0239832],[9.2300394,47.0258199],[9.228144,47.0283879],[9.2253788,47.0297677],[9.2219354,47.0325835],[9.2200098,47.0331131],[9.2160668,47.0328218],[9.2128521,47.0335585],[9.2089667,47.0357312],[9.2044212,47.0346696],[9.2016527,47.0351215],[9.1918536,47.0311598],[9.1882874,47.0290709],[9.180518,47.0259225],[9.1773714,47.0268441],[9.175206,47.0288079],[9.1695902,47.0266309],[9.1656639,47.0268807],[9.16418,47.0281306],[9.1579392,47.030627],[9.1562906,47.0301841],[9.1380588,47.0391352],[9.1493687,47.044862],[9.1533535,47.0472727],[9.1586619,47.0481937],[9.1596845,47.0490632],[9.1655548,47.0499221],[9.167394,47.0494002],[9.1713295,47.0525696],[9.1745272,47.0529263],[9.1803284,47.0574477],[9.1837458,47.0596278],[9.1852521,47.0642343],[9.1871441,47.0654225],[9.1902906,47.0698927],[9.1919566,47.0735817],[9.1906239,47.0739477],[9.1908207,47.0775657],[9.1887798,47.0854796],[9.1902147,47.0900622],[9.1876623,47.0941222],[9.1862941,47.0975426],[9.1869079,47.1022854],[9.1886108,47.1039435],[9.1883346,47.1075616],[9.1898925,47.1095722],[9.1888095,47.1159485],[9.1898696,47.1236999],[9.1476938,47.1289174],[9.1359131,47.13198],[9.1154179,47.1327527],[9.1099144,47.1314552],[9.1068284,47.1314528],[9.1012291,47.1332506],[9.0939335,47.1317574],[9.0694595,47.1298112],[9.0662112,47.1309135],[9.0641665,47.1330078],[9.0537983,47.1392234],[9.0506463,47.1415876],[9.0055892,47.1739901],[9.0047149,47.1732618],[8.9963427,47.1765244],[8.9975864,47.1778545],[8.9940015,47.1795489],[8.9878997,47.1817293],[8.9802549,47.1833187],[8.9770548,47.1818251],[8.9739579,47.1822885],[8.9733108,47.1802927],[8.9710416,47.1806338],[8.970359,47.1788068],[8.9621344,47.1793798],[8.961795,47.1844066],[8.9602986,47.1887644],[8.957481,47.199442],[8.9653289,47.198162],[8.9690628,47.2109554],[8.9742922,47.212803],[8.97262,47.2153418],[8.9699548,47.2170932],[8.9660403,47.217463],[8.9570705,47.2163569],[8.9547617,47.2163405],[8.941406,47.2181383],[8.8483404,47.2084866],[8.8391543,47.2082413],[8.833504,47.2087961],[8.8273538,47.2100532],[8.8186413,47.2132263],[8.8136899,47.2160125],[8.8084775,47.2201299],[8.7957115,47.2391195],[8.7965168,47.2425245],[8.7990468,47.2430671],[8.8027811,47.2453687],[8.8025031,47.2466728],[8.8129961,47.2488013],[8.8157764,47.248962],[8.8216313,47.2507371],[8.8268174,47.2514675],[8.8289868,47.2498935],[8.8346486,47.249373],[8.8354903,47.2478917],[8.8379004,47.2469777],[8.8447163,47.2469762],[8.8447361,47.2486275],[8.8507303,47.250594],[8.8528662,47.2492861],[8.8525178,47.2468754],[8.8572444,47.2448715],[8.8621265,47.2439799],[8.8697453,47.2450434],[8.8707536,47.2469669],[8.8737567,47.2476646],[8.8734875,47.2519915],[8.8892746,47.2530501],[8.9051253,47.2556627],[8.9082928,47.2567459],[8.9086053,47.2544149],[8.9205014,47.2568508],[8.9283738,47.2588771],[8.9290836,47.2600489],[8.9330965,47.2588875],[8.9370659,47.2615566],[8.9377207,47.2642854],[8.9429323,47.2673876],[8.9444545,47.2694976],[8.9408962,47.2716671],[8.9471354,47.2749456],[8.9477276,47.2790305],[8.9488186,47.2809429],[8.9456222,47.2820407],[8.9436388,47.2795977],[8.9419621,47.2796632],[8.9419468,47.2821298],[8.9405673,47.2843651],[8.9380662,47.2854677],[8.9354826,47.2891889],[8.9378536,47.2892542],[8.9446752,47.290767],[8.9484935,47.2921438],[8.9490168,47.294419],[8.9519287,47.2965101],[8.9553111,47.3030671],[8.9565203,47.3042603],[8.9607756,47.3056981],[8.9643803,47.306347],[8.967039,47.3057685],[8.9749561,47.3070338],[8.9781339,47.3113362],[8.9816781,47.3150675],[8.9822086,47.3165491],[8.9849407,47.3193894],[8.9809137,47.3226492],[8.9797448,47.3255149],[8.9774689,47.3270595],[8.9767752,47.3293852],[8.9772706,47.3325126],[8.9784848,47.3339255],[8.9792825,47.3379492],[8.9730871,47.3398755],[8.9740097,47.3413709],[8.973309,47.3461935],[8.97441,47.3473753],[8.9716314,47.3519318],[8.967416,47.3542763],[8.9632339,47.3544272],[8.9602841,47.3537015],[8.9593707,47.3576435],[8.9560756,47.3607737],[8.9547056,47.3641032],[8.9523828,47.3671158],[8.9514438,47.3713562],[8.9481365,47.374746],[8.9451574,47.3747669],[8.9435245,47.375917]],[[9.6178293,47.4376767],[9.6230872,47.4382683],[9.6297387,47.4398395],[9.6308907,47.4416641],[9.6297047,47.4443683],[9.6215476,47.4470428],[9.6129736,47.4487828],[9.6059245,47.4523327],[9.6046641,47.4523818],[9.5966218,47.4568771],[9.5961828,47.4585467],[9.5902933,47.4577118],[9.5887797,47.4596574],[9.5813667,47.4617845],[9.5796749,47.4627067],[9.5742,47.462738],[9.5680686,47.4635328],[9.5634672,47.462878],[9.5580266,47.4647872],[9.5540636,47.4638154],[9.5502507,47.4642563],[9.5464296,47.4630145],[9.5473074,47.4654469],[9.5468061,47.4675053],[9.5444195,47.4672908],[9.542389,47.4690444],[9.5325141,47.4678475],[9.5257298,47.4613529],[9.5267393,47.4578525],[9.5284891,47.4555899],[9.5277969,47.453905],[9.5239391,47.4513674],[9.5195335,47.4518369],[9.5142201,47.4493151],[9.5096483,47.4495566],[9.5045795,47.4465816],[9.5035951,47.4454185],[9.4950946,47.4423025],[9.4867861,47.4413297],[9.480418,47.4389664],[9.4779381,47.4394486],[9.4755267,47.438674],[9.4709178,47.4389492],[9.4685311,47.4383182],[9.4649335,47.4357571],[9.4564661,47.4333401],[9.4530991,47.432687],[9.45266,47.431069],[9.4505216,47.4308784],[9.448343,47.4327085],[9.4439585,47.4340748],[9.4414205,47.4332835],[9.4376746,47.4344924],[9.4350022,47.4342941],[9.4347384,47.4320728],[9.4325502,47.4294577],[9.4351599,47.4246182],[9.4350303,47.4208373],[9.4302534,47.4181927],[9.4302265,47.4171488],[9.4329648,47.413974],[9.430534,47.4114973],[9.4278722,47.4104565],[9.4264836,47.4075194],[9.4212485,47.4059609],[9.4141044,47.404943],[9.4106531,47.4031355],[9.404843,47.4020478],[9.4018649,47.4008402],[9.3927608,47.4010167],[9.3907574,47.4020184],[9.3896783,47.4045408],[9.3869225,47.4056082],[9.3815271,47.4062262],[9.37847,47.4072734],[9.3716713,47.4077137],[9.3691012,47.4068004],[9.3659304,47.4046003],[9.3635129,47.4045727],[9.3598268,47.4033989],[9.3585664,47.4020451],[9.3547655,47.4034037],[9.3466968,47.4008651],[9.3424814,47.400015],[9.3378137,47.4001576],[9.3355308,47.3991755],[9.3288928,47.401314],[9.3247182,47.4006552],[9.3202676,47.3981895],[9.3086098,47.3965853],[9.3029463,47.3952218],[9.2982897,47.3961378],[9.2941447,47.3964019],[9.2937018,47.3972262],[9.283283,47.3986959],[9.2794082,47.3982457],[9.2768285,47.3996767],[9.2718694,47.4010325],[9.2693527,47.3993099],[9.2656105,47.401102],[9.2619807,47.4003935],[9.2575409,47.3987365],[9.2564208,47.4005832],[9.2503911,47.4002784],[9.2467465,47.3985455],[9.2447695,47.3993237],[9.2376285,47.3964182],[9.235351,47.3968451],[9.2322873,47.3959933],[9.2327435,47.392721],[9.2318246,47.3877764],[9.2291869,47.3869311],[9.2265632,47.3876231],[9.2228164,47.3874864],[9.2189341,47.3850153],[9.2188168,47.3829461],[9.2217766,47.3779068],[9.2197802,47.3767857],[9.220876,47.3745425],[9.2186667,47.3729862],[9.2179386,47.370829],[9.2130092,47.3678573],[9.2130315,47.3651233],[9.2101624,47.3630544],[9.1991204,47.3614442],[9.1922661,47.362626],[9.1926631,47.3604154],[9.1943859,47.3589583],[9.196556,47.3536279],[9.1993874,47.3542536],[9.20507,47.3574608],[9.2073435,47.3556847],[9.2044033,47.3545932],[9.2018547,47.3504161],[9.1986374,47.3477824],[9.202495,47.3453049],[9.2043938,47.3424928],[9.2056841,47.3423043],[9.2062825,47.3391337],[9.2109778,47.3410768],[9.2129281,47.3404352],[9.215069,47.3416162],[9.2200478,47.342303],[9.2223185,47.3433413],[9.2246068,47.3425515],[9.2275056,47.3385481],[9.2322037,47.3344819],[9.233314,47.3319774],[9.232713,47.3308975],[9.2234633,47.3271903],[9.2227473,47.3260537],[9.2161309,47.3248771],[9.2138664,47.323],[9.2103431,47.3216812],[9.2125587,47.3199041],[9.2147101,47.3144187],[9.2142627,47.3132693],[9.2177861,47.3078962],[9.2173064,47.304569],[9.2159866,47.3025133],[9.2173127,47.3003061],[9.2197063,47.2985709],[9.2205695,47.2969059],[9.2240907,47.2935992],[9.2223542,47.2894867],[9.2191554,47.2872731],[9.2170978,47.2845078],[9.2133357,47.2833723],[9.2082109,47.2801428],[9.206251,47.2763964],[9.2086275,47.2756581],[9.2139936,47.2725428],[9.2185521,47.2709518],[9.222057,47.2689947],[9.2267562,47.267353],[9.2298907,47.2670164],[9.2327167,47.2655644],[9.2387854,47.2646466],[9.2414096,47.2646685],[9.2474909,47.2660802],[9.2515117,47.2655762],[9.256435,47.2633444],[9.2600096,47.2642006],[9.263092,47.2656408],[9.2635019,47.2669974],[9.2671617,47.2685004],[9.2724601,47.2686774],[9.2735846,47.2699929],[9.2790912,47.2666754],[9.2793467,47.2649955],[9.2840881,47.2656574],[9.2866876,47.2626278],[9.2897058,47.2603333],[9.2931368,47.2603955],[9.2971672,47.2574146],[9.304646,47.2597844],[9.3079717,47.2596102],[9.3086962,47.2577293],[9.3078465,47.2553029],[9.3104099,47.2532799],[9.3143834,47.252149],[9.3186333,47.2478785],[9.3237955,47.2470247],[9.3271077,47.2485767],[9.332349,47.2496108],[9.3407458,47.2490065],[9.3432648,47.2493986],[9.3436804,47.247746],[9.3491245,47.2449486],[9.3512709,47.2443047],[9.3586001,47.2443159],[9.3648794,47.2433131],[9.3677491,47.2408269],[9.3697351,47.2405804],[9.3738315,47.238417],[9.3749189,47.2370743],[9.378438,47.2361243],[9.3820067,47.2339966],[9.3896573,47.2361165],[9.3961982,47.2373569],[9.401922,47.2375609],[9.4038783,47.2382728],[9.4099137,47.2439453],[9.4147975,47.2465341],[9.4189125,47.2476167],[9.4262286,47.2471097],[9.4298224,47.2492159],[9.4343358,47.2507805],[9.4366984,47.2509824],[9.4396554,47.2529154],[9.4419863,47.2532845],[9.4500446,47.2584212],[9.4511046,47.2600312],[9.4532772,47.2605646],[9.4581376,47.2631965],[9.4612391,47.2641021],[9.4643391,47.2658399],[9.4665441,47.2682462],[9.4692963,47.2693378],[9.4728974,47.271663],[9.4760284,47.2748036],[9.4765185,47.2766923],[9.4796641,47.2790223],[9.4807862,47.2815011],[9.4849864,47.2837518],[9.4877576,47.2882911],[9.4868382,47.2907174],[9.4893283,47.2947046],[9.4895997,47.2977236],[9.4906839,47.3007687],[9.4889587,47.3017921],[9.4912205,47.3038127],[9.4962566,47.3060143],[9.4956427,47.3077591],[9.4928912,47.3106775],[9.4925088,47.3129045],[9.4934192,47.314532],[9.4969423,47.3164154],[9.4981347,47.3182123],[9.5018422,47.3300377],[9.5026756,47.3344085],[9.5029095,47.3474363],[9.5026337,47.35382],[9.5014573,47.3545453],[9.498949,47.363607],[9.5009154,47.3679582],[9.498999,47.3693339],[9.5007038,47.3716151],[9.5054013,47.3744593],[9.5030294,47.3749918],[9.5032941,47.3808996],[9.5045615,47.3863257],[9.5079201,47.3929615],[9.5095577,47.3946992],[9.5208964,47.3966291],[9.5295014,47.3975866],[9.5365909,47.399407],[9.5419047,47.3995769],[9.5453531,47.398459],[9.5443112,47.3959659],[9.5492944,47.3930819],[9.5526034,47.394303],[9.5552822,47.3964518],[9.5580024,47.3970455],[9.5611983,47.3990169],[9.5641679,47.3987145],[9.5656418,47.4004242],[9.5733141,47.4041148],[9.5776059,47.4069713],[9.5827065,47.408764],[9.5830108,47.4096486],[9.5856643,47.4106015],[9.5966226,47.4117331],[9.6004035,47.4135432],[9.6048161,47.4143703],[9.601327,47.4163192],[9.5958015,47.4173135],[9.5963669,47.4186009],[9.5887568,47.4216202],[9.5884941,47.4239601],[9.5895211,47.4256354],[9.598298,47.4291678],[9.6010308,47.4296223],[9.6062295,47.4315153],[9.6084847,47.4333269],[9.6137217,47.434517],[9.6178293,47.4376767]],[[9.4644643,47.4841796],[9.4769713,47.4896541],[9.4706232,47.4925765],[9.4669449,47.4959304],[9.4646161,47.496845],[9.4617913,47.4967213],[9.4585513,47.4976541],[9.4497442,47.5010547],[9.4480844,47.4980224],[9.4503645,47.4969934],[9.4481643,47.4936146],[9.449424,47.4921995],[9.4536761,47.4916536],[9.4530202,47.4900181],[9.4591767,47.4893691],[9.4645058,47.487041],[9.4644643,47.4841796]]]]},"properties":{"ID_0":223,"ISO":"CH-SG","NAME_0":"Switzerland","ID_1":16,"NAME_1":"Sankt Gallen","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Saint-Gall|San Gallo|Son Gagl"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.1593659,46.1696185],[9.1586646,46.1649675],[9.1568071,46.1623235],[9.1552937,46.1615547],[9.149631,46.1606061],[9.1449026,46.1584733],[9.1408729,46.1550702],[9.1345112,46.1532585],[9.132854,46.1499272],[9.1290492,46.1474648],[9.1268232,46.1445559],[9.1268821,46.1431154],[9.1241219,46.1396655],[9.1209473,46.1345213],[9.1172601,46.1354039],[9.1122547,46.1346685],[9.1089596,46.1327199],[9.105276,46.1320276],[9.1011538,46.1292542],[9.0998887,46.1272304],[9.0954329,46.1262342],[9.0893274,46.125451],[9.0861157,46.1240763],[9.085265,46.1229011],[9.0787211,46.1212869],[9.0723726,46.1179781],[9.0739135,46.1141319],[9.0775821,46.1105065],[9.0796426,46.1067605],[9.0813153,46.1021742],[9.0890597,46.0900947],[9.0893549,46.0857447],[9.0840238,46.0796144],[9.0832344,46.0778714],[9.0790404,46.0759801],[9.077872,46.0693571],[9.0786702,46.0670962],[9.0769349,46.0639724],[9.0727855,46.062665],[9.0652674,46.0619369],[9.0601875,46.0606155],[9.0561095,46.0612589],[9.055323,46.0621968],[9.0501972,46.0623781],[9.0479765,46.0615821],[9.0447597,46.0589918],[9.0393035,46.0589164],[9.0385047,46.058118],[9.029839,46.0534452],[9.0256366,46.0524696],[9.0230037,46.0530285],[9.0171974,46.0497541],[9.0160726,46.0466028],[9.0175064,46.0448012],[9.016943,46.0431896],[9.0095408,46.0373818],[9.0087918,46.0315444],[9.0075704,46.0297768],[9.0090476,46.0269526],[9.0141953,46.0240646],[9.0152608,46.0220522],[9.0185465,46.0204494],[9.0226527,46.0167716],[9.0246924,46.000861],[9.0284221,45.9936613],[9.0228056,45.9927237],[9.0224951,45.9895792],[9.0180125,45.9876627],[9.0131796,45.98881],[9.011414,45.9880069],[9.0111466,45.9831972],[9.0087528,45.982079],[9.0083283,45.9807804],[9.0022912,45.9795148],[9.0014758,45.9803358],[8.9953394,45.9805043],[8.9959854,45.9787746],[8.9951771,45.9766715],[8.9963126,45.9744064],[8.994646,45.9716134],[8.9923263,45.9726173],[8.9889714,45.9703422],[8.9942406,45.9664278],[9.0042955,45.9638773],[9.0139802,45.9605935],[9.0153819,45.9510372],[9.0172635,45.9491935],[9.0137129,45.9445828],[9.0121692,45.9438217],[9.0149539,45.9406518],[9.0197632,45.9397297],[9.0224618,45.9371727],[9.0211271,45.9347174],[9.0196129,45.9300603],[9.0198531,45.9285544],[9.0227677,45.9290262],[9.0265355,45.9286851],[9.0297881,45.9265877],[9.0368073,45.9263351],[9.0427083,45.9275286],[9.0456485,45.9244725],[9.0494208,45.9221062],[9.0490755,45.9204467],[9.0554927,45.9203545],[9.0598938,45.9209659],[9.0589517,45.916571],[9.0625467,45.9147826],[9.0641599,45.9148493],[9.0695461,45.9117571],[9.0726339,45.9127077],[9.0744879,45.9123601],[9.0773334,45.9092415],[9.0754618,45.9061378],[9.0769338,45.8993505],[9.0868814,45.9023089],[9.0890888,45.90072],[9.0874516,45.8985667],[9.0888473,45.8969897],[9.0851446,45.8959914],[9.0839719,45.8934174],[9.0816049,45.8918326],[9.0779791,45.8920924],[9.0793099,45.8883391],[9.0775176,45.8865658],[9.0778344,45.8850947],[9.0755293,45.8834008],[9.0721469,45.8822984],[9.0691248,45.8781406],[9.065612,45.8760953],[9.0602301,45.8748685],[9.0577038,45.8752468],[9.0547822,45.8735794],[9.0551028,45.8713435],[9.049362,45.8631306],[9.0493566,45.8585601],[9.0515498,45.8553904],[9.0497924,45.8527956],[9.0454259,45.8496641],[9.0438186,45.846655],[9.040768,45.8466716],[9.0385616,45.8438527],[9.0386292,45.8419484],[9.0357362,45.840926],[9.0353362,45.8391914],[9.0378357,45.8358106],[9.0357025,45.8327691],[9.0347774,45.8301575],[9.0310791,45.824677],[9.0345722,45.8230979],[9.0316186,45.8209887],[9.0283415,45.8207051],[9.0256613,45.821805],[9.0220927,45.8218622],[9.0155129,45.8181309],[9.0129675,45.8191114],[9.0079388,45.8196497],[9.003271,45.8206595],[8.9984729,45.8229756],[8.9939171,45.822049],[8.9928834,45.8232599],[8.9945763,45.824874],[8.9940558,45.8260328],[8.9970535,45.8344118],[8.9921797,45.8347588],[8.988667,45.8379832],[8.9867296,45.8386578],[8.9815259,45.8357875],[8.9776326,45.8369386],[8.9750647,45.8357862],[8.9760869,45.8346026],[8.9733895,45.8324981],[8.9701045,45.8323899],[8.9670555,45.8347437],[8.9639739,45.8350104],[8.9613745,45.8364222],[8.9619654,45.8391584],[8.9562686,45.8416826],[8.948891,45.8434913],[8.9458373,45.8424527],[8.939399,45.8414413],[8.9320943,45.837913],[8.9321894,45.8366792],[8.9290652,45.8353892],[8.929115,45.8334362],[8.9258588,45.8334344],[8.9205143,45.8342699],[8.9122392,45.8304652],[8.9127644,45.8380336],[8.914255,45.8422426],[8.9206913,45.8493823],[8.9262123,45.8545274],[8.9324392,45.8609675],[8.9349333,45.8627067],[8.9403413,45.864101],[8.9453151,45.8670214],[8.9416447,45.8703095],[8.9373794,45.8673974],[8.9348991,45.8699497],[8.9331655,45.8748581],[8.933047,45.8809056],[8.932134,45.8842736],[8.9297439,45.8887589],[8.9273518,45.8917596],[8.9240802,45.8922708],[8.9223977,45.8967463],[8.9245345,45.8998508],[8.9251786,45.9040676],[8.9202427,45.9090101],[8.9198254,45.9102571],[8.916734,45.9137633],[8.9143319,45.9177965],[8.9075005,45.917814],[8.9049957,45.9205457],[8.8963356,45.926938],[8.8926261,45.9328968],[8.8933828,45.9371155],[8.8969516,45.9418375],[8.8967549,45.9547954],[8.8937069,45.9590184],[8.8876104,45.9577475],[8.8783583,45.9566517],[8.8749017,45.959125],[8.8721826,45.9594937],[8.867603,45.9611971],[8.864875,45.965415],[8.8607018,45.9661695],[8.8562512,45.9686727],[8.8520528,45.9719642],[8.8494987,45.9729859],[8.8456633,45.9768844],[8.843298,45.9777417],[8.8425798,45.9814393],[8.8399784,45.9816516],[8.8392687,45.9841796],[8.8341972,45.9852142],[8.8325977,45.9872763],[8.8306818,45.9880647],[8.8268925,45.9872567],[8.8240031,45.9878321],[8.8198264,45.9875236],[8.8164165,45.98896],[8.8138222,45.991016],[8.8101401,45.9898464],[8.8073868,45.9907166],[8.7990145,45.991421],[8.7941676,45.9921993],[8.7924178,45.9919055],[8.7923858,45.9895668],[8.7901382,45.9884512],[8.7859221,45.9891496],[8.787242,45.991383],[8.7893654,45.997925],[8.793078,46.0081367],[8.8043922,46.0191563],[8.8058828,46.0219543],[8.8118011,46.0236368],[8.8197178,46.0252717],[8.8255827,46.0306307],[8.827713,46.0341333],[8.8284683,46.0377562],[8.8301188,46.0415999],[8.8328392,46.040512],[8.8355175,46.0437141],[8.8293385,46.0464382],[8.834671,46.0513393],[8.8440827,46.0484548],[8.8457677,46.0503336],[8.8545039,46.0615864],[8.8541247,46.0685661],[8.8520348,46.0756306],[8.8475045,46.0757558],[8.8426294,46.0797904],[8.839922,46.081057],[8.8356101,46.0819912],[8.8329556,46.083328],[8.8263224,46.0895038],[8.8243715,46.088999],[8.8210831,46.0934299],[8.8176813,46.0944163],[8.8155533,46.0972044],[8.8060228,46.1013511],[8.8046568,46.0994783],[8.8017186,46.0973095],[8.7998182,46.0947414],[8.791658,46.0947904],[8.7830083,46.0940992],[8.7770668,46.0963528],[8.768244,46.1007678],[8.765399,46.1004517],[8.7600255,46.1015841],[8.7568015,46.1035741],[8.7561195,46.1048716],[8.7423485,46.1222569],[8.7244094,46.1104255],[8.7148152,46.0980428],[8.7001314,46.1009831],[8.6967915,46.1020129],[8.6932875,46.1014463],[8.6914969,46.1023209],[8.6891156,46.1016906],[8.6856234,46.1028089],[8.6813584,46.1057799],[8.6803542,46.1099565],[8.6756085,46.1105935],[8.6699196,46.1089914],[8.6675566,46.1103217],[8.6576119,46.1127419],[8.6562944,46.115725],[8.6530715,46.1191335],[8.6458918,46.1238259],[8.6398267,46.122784],[8.6297521,46.1223779],[8.6274321,46.1227802],[8.620523,46.1215753],[8.6127224,46.1216117],[8.6098539,46.1266074],[8.6105755,46.131278],[8.6097043,46.1328883],[8.6047087,46.1352789],[8.6025731,46.1382877],[8.5983713,46.14031],[8.5933385,46.14405],[8.5929224,46.1457905],[8.5943797,46.1473679],[8.6001663,46.1498274],[8.600202,46.1533176],[8.6029247,46.1535144],[8.6034467,46.1549215],[8.6010044,46.1557383],[8.5951129,46.1556819],[8.5881631,46.1576241],[8.5890389,46.1592525],[8.5881675,46.1609078],[8.5841967,46.1629453],[8.5784119,46.1618343],[8.573612,46.1644917],[8.5721105,46.1670078],[8.5697931,46.1770171],[8.5639818,46.1828508],[8.5636818,46.1840053],[8.5584402,46.1854698],[8.5561098,46.1855198],[8.5549792,46.1872403],[8.5532043,46.1922958],[8.5427481,46.1973195],[8.5408714,46.1974097],[8.5381493,46.2024743],[8.536372,46.2042909],[8.53628,46.2061541],[8.5344407,46.2094107],[8.5326207,46.215573],[8.5325471,46.2183626],[8.5287596,46.2201535],[8.5239146,46.2209198],[8.5218215,46.2219025],[8.5169911,46.2201494],[8.5109864,46.221268],[8.5083652,46.2230921],[8.5050532,46.2240681],[8.5020727,46.2260933],[8.4982019,46.2270113],[8.4925783,46.229133],[8.4870264,46.2302822],[8.4784339,46.2303886],[8.4714635,46.2319548],[8.4687617,46.233041],[8.4662702,46.2363474],[8.465911,46.2413616],[8.4638983,46.2446455],[8.4606589,46.2447648],[8.4586116,46.2462227],[8.4499854,46.2481443],[8.4473873,46.2478976],[8.4432853,46.2504711],[8.442316,46.2541681],[8.4458162,46.2576006],[8.4478085,46.2580327],[8.4479862,46.260622],[8.4558539,46.2638082],[8.4497581,46.2743253],[8.4421637,46.2810952],[8.4366369,46.2853724],[8.4343082,46.2878849],[8.4337984,46.2919377],[8.42775,46.2983151],[8.4292138,46.3002995],[8.4335336,46.3022947],[8.4381693,46.3038012],[8.4396221,46.3086913],[8.441725,46.3100941],[8.442135,46.316136],[8.4439807,46.3197631],[8.4539811,46.3212751],[8.4536481,46.3229154],[8.4556995,46.3249842],[8.4557144,46.3271702],[8.4604781,46.3284317],[8.4622448,46.3312226],[8.4653463,46.3338484],[8.4634857,46.3364292],[8.4641138,46.3387446],[8.4637291,46.3424545],[8.4642367,46.3473349],[8.461595,46.3533143],[8.464517,46.3566885],[8.4644368,46.3579487],[8.4700021,46.3615867],[8.4668806,46.3683172],[8.4674995,46.37218],[8.4662594,46.3767075],[8.4665343,46.3795658],[8.4640025,46.3838619],[8.4610347,46.3864257],[8.4624243,46.389112],[8.4667235,46.3930135],[8.4707154,46.3957661],[8.469904,46.3975457],[8.463592,46.4027758],[8.4632567,46.4056846],[8.467206,46.4095803],[8.4683762,46.4116209],[8.4654361,46.4157138],[8.4619345,46.4183363],[8.4581709,46.4201873],[8.4568832,46.4229697],[8.4571587,46.4251713],[8.4606729,46.4287113],[8.4590366,46.4302553],[8.457534,46.4347669],[8.459399,46.4370713],[8.4635635,46.4391659],[8.4661382,46.4424983],[8.4648264,46.4453889],[8.4615471,46.4460932],[8.4626053,46.4483778],[8.4619974,46.4506503],[8.4556046,46.4533165],[8.4522822,46.4566298],[8.4531833,46.4581781],[8.4500377,46.4619126],[8.4461263,46.4637015],[8.4395728,46.4627248],[8.4381944,46.4642213],[8.4313407,46.4632018],[8.4275762,46.4616602],[8.4211198,46.4609784],[8.4166525,46.4586959],[8.4109301,46.4589969],[8.4044133,46.4570913],[8.40242,46.4547963],[8.3988248,46.4553845],[8.3964706,46.4547567],[8.3928992,46.4515212],[8.3898205,46.4526085],[8.3847375,46.4521531],[8.3821643,46.4591195],[8.385753,46.4618605],[8.3862968,46.4631785],[8.3853629,46.4656153],[8.3881621,46.4671033],[8.3924359,46.4680301],[8.3899273,46.4697604],[8.389332,46.472941],[8.3859294,46.4756863],[8.3864477,46.4770314],[8.3898906,46.4802863],[8.3913629,46.48255],[8.3938524,46.4834018],[8.3946619,46.4849963],[8.3936456,46.4886664],[8.3916537,46.4916789],[8.3922936,46.4947323],[8.39478,46.4939017],[8.398759,46.494246],[8.4010443,46.4923644],[8.4110164,46.4927743],[8.4146332,46.4946955],[8.4195718,46.4926288],[8.4227644,46.4941305],[8.4274692,46.4949713],[8.4316102,46.4970224],[8.4346089,46.4971581],[8.4429412,46.4954834],[8.4451178,46.4969485],[8.4458033,46.4987867],[8.4517434,46.5078202],[8.4572966,46.5079318],[8.4606568,46.509021],[8.4617132,46.5105823],[8.4626426,46.5143619],[8.4684566,46.5185827],[8.4728201,46.5232392],[8.4781605,46.5251067],[8.4776224,46.5276306],[8.4807457,46.5292849],[8.4826433,46.532392],[8.4913307,46.5330198],[8.4950648,46.5345286],[8.4975259,46.534196],[8.5013337,46.5351103],[8.5054224,46.5351357],[8.507921,46.5362867],[8.516082,46.5388115],[8.5194731,46.5388742],[8.5192349,46.5412131],[8.5203747,46.542554],[8.5176814,46.5451775],[8.5144171,46.5515392],[8.5157971,46.554477],[8.5130602,46.558077],[8.5142613,46.5603196],[8.5167687,46.5629019],[8.5179441,46.5653764],[8.5209799,46.5669247],[8.520984,46.5702326],[8.5201217,46.5728367],[8.5219167,46.5745816],[8.5211983,46.5772499],[8.5250403,46.5778245],[8.5261433,46.5812263],[8.5313856,46.5845636],[8.536569,46.5849617],[8.5390025,46.5864789],[8.5458131,46.5837579],[8.5465658,46.582496],[8.5525578,46.5807216],[8.5550655,46.5806637],[8.5586843,46.58158],[8.5646028,46.5813042],[8.5674149,46.5818362],[8.5725087,46.5837501],[8.5773543,46.5816241],[8.5813907,46.5770512],[8.583742,46.5770851],[8.5905312,46.5734078],[8.5983935,46.5740117],[8.6019578,46.5737292],[8.6113061,46.5749604],[8.6148377,46.5772354],[8.6203529,46.5781349],[8.6265657,46.5763764],[8.627618,46.5743508],[8.6295591,46.5737493],[8.6287569,46.5711404],[8.6303276,46.568102],[8.630683,46.5657946],[8.6346626,46.5643748],[8.6407392,46.5640988],[8.651334,46.5667007],[8.6575406,46.5692805],[8.6596584,46.572289],[8.6648725,46.5747693],[8.6668297,46.5766599],[8.6711293,46.5775328],[8.6726519,46.5785053],[8.6787459,46.5791939],[8.682031,46.5785584],[8.6856372,46.5804553],[8.6905672,46.5804063],[8.6925706,46.5796712],[8.696659,46.5810727],[8.6992442,46.57945],[8.7029491,46.578741],[8.704762,46.5771292],[8.7052943,46.5738006],[8.7096463,46.5733873],[8.7117773,46.5721979],[8.7175094,46.5711114],[8.7222167,46.5731255],[8.7241721,46.5748759],[8.7279203,46.5768263],[8.7291243,46.5758796],[8.7371093,46.5735244],[8.7390469,46.5721926],[8.7439341,46.5722296],[8.7475553,46.5747017],[8.7505867,46.5760557],[8.75516,46.5741732],[8.7591542,46.5734592],[8.7619592,46.5742614],[8.800737,46.5632845],[8.829672,46.5713718],[8.8297373,46.5675808],[8.8317451,46.5639314],[8.8397334,46.5631602],[8.8432303,46.5633603],[8.8494176,46.5665926],[8.8556773,46.5702445],[8.8574798,46.5699335],[8.8616535,46.5711393],[8.8629425,46.5730528],[8.8699077,46.5735524],[8.8769496,46.5746733],[8.8794387,46.5776263],[8.8892941,46.5791618],[8.8939386,46.5819667],[8.9036713,46.584105],[8.9112395,46.5887123],[8.9162342,46.5928469],[8.9151964,46.5946721],[8.9167543,46.5968761],[8.915118,46.5994104],[8.9097612,46.6030633],[8.9074021,46.6059112],[8.9059071,46.6093932],[8.9057507,46.6122528],[8.9069275,46.6152656],[8.9106079,46.6167467],[8.9116884,46.6187933],[8.9186202,46.6198167],[8.9208104,46.6219379],[8.924608,46.6231572],[8.9258166,46.621609],[8.9331304,46.6209316],[8.941453,46.6184975],[8.9453301,46.6206885],[8.9470441,46.6223068],[8.9503716,46.6239725],[8.9512973,46.625762],[8.950849,46.629925],[8.9524262,46.6322939],[8.9553236,46.6316207],[8.9578233,46.6298791],[8.9629961,46.6181481],[8.9596888,46.6107053],[8.9622012,46.6026448],[8.9666702,46.6037282],[8.9730889,46.6026657],[8.9837391,46.6088149],[8.9953467,46.6117344],[9.0042045,46.6113343],[9.0069728,46.6106241],[9.014473,46.6053002],[9.0162223,46.6032174],[9.0207923,46.603253],[9.0229178,46.6018378],[9.025244,46.6014815],[9.0271873,46.599421],[9.0340908,46.6000269],[9.0341568,46.5938064],[9.0353562,46.5919697],[9.0410671,46.5901659],[9.0437501,46.5872507],[9.0422255,46.585363],[9.0424042,46.5835349],[9.0373149,46.5820356],[9.0355017,46.5786547],[9.0356067,46.575713],[9.0298926,46.5713449],[9.0283102,46.5675288],[9.0266851,46.5659851],[9.0266777,46.5618196],[9.0232253,46.5580908],[9.0244258,46.5570852],[9.0241545,46.5546364],[9.0228114,46.5522385],[9.0193301,46.5478054],[9.0215115,46.5414547],[9.0212106,46.5396379],[9.0227455,46.5376821],[9.0215548,46.5338829],[9.0166229,46.5320539],[9.017174,46.5290465],[9.0199273,46.5286016],[9.0209055,46.5270645],[9.0206424,46.5235423],[9.0231479,46.5190942],[9.0221238,46.517901],[9.0226497,46.515163],[9.0219904,46.5125369],[9.0241516,46.5079226],[9.028283,46.5046537],[9.0289613,46.5032137],[9.0316808,46.5025539],[9.0346741,46.500797],[9.0371347,46.4982548],[9.0388597,46.4947899],[9.04015,46.4939528],[9.0389633,46.4915719],[9.0402434,46.4895639],[9.0449004,46.4882169],[9.0478719,46.4836495],[9.0456086,46.4814517],[9.0479672,46.4799636],[9.051029,46.4793209],[9.0542783,46.4767739],[9.060544,46.4763071],[9.0652286,46.4783045],[9.0735559,46.480272],[9.0772389,46.4784145],[9.082571,46.4770518],[9.0854176,46.4754072],[9.085048,46.4709597],[9.08982,46.467132],[9.0935395,46.4629298],[9.0950675,46.4603963],[9.0920557,46.453299],[9.091708,46.4487685],[9.0870058,46.4437003],[9.0895739,46.4369409],[9.0890105,46.4321565],[9.0908412,46.4308956],[9.0927011,46.4279183],[9.0953993,46.4253276],[9.0984058,46.4197656],[9.1009137,46.4175422],[9.1029153,46.4135546],[9.1022563,46.4107707],[9.0974857,46.4089056],[9.0907786,46.4068757],[9.0899387,46.4051449],[9.091837,46.4028266],[9.0938937,46.4021166],[9.0962141,46.3998768],[9.091379,46.3958793],[9.0872532,46.3888356],[9.0893661,46.3871128],[9.0931295,46.3797127],[9.0930661,46.3770037],[9.0953408,46.3745403],[9.0956258,46.3730111],[9.0929495,46.3708335],[9.0926671,46.3676362],[9.0937353,46.3627302],[9.0925867,46.357409],[9.0916035,46.3554792],[9.0884426,46.3523419],[9.0882669,46.3492032],[9.0847084,46.3486652],[9.0819252,46.3490241],[9.0801648,46.3474484],[9.0763607,46.3467298],[9.0724512,46.3439218],[9.0693098,46.3435686],[9.0695724,46.3411877],[9.0664394,46.3363686],[9.0675778,46.3342284],[9.0697078,46.3324872],[9.0644429,46.3278755],[9.064326,46.3253779],[9.0673518,46.3237432],[9.0686902,46.3220169],[9.0725743,46.3188498],[9.0751063,46.3146059],[9.0721757,46.3085709],[9.0683314,46.307412],[9.0659224,46.3037444],[9.0634673,46.3016796],[9.0628357,46.3001193],[9.0600106,46.2970636],[9.0556226,46.2960418],[9.0537079,46.2930492],[9.0555385,46.2890827],[9.0581221,46.2813045],[9.0622233,46.2777216],[9.0636392,46.2730621],[9.0722157,46.2677161],[9.072784,46.2663653],[9.0777614,46.2603043],[9.0772167,46.2586656],[9.0760223,46.2378759],[9.0714067,46.236071],[9.0745627,46.2317299],[9.0765913,46.2329909],[9.0796046,46.2332847],[9.0828431,46.2253111],[9.0839466,46.2198595],[9.0868836,46.2142926],[9.0890524,46.2123805],[9.1083302,46.2056567],[9.1112282,46.2049876],[9.1198188,46.199719],[9.122848,46.1955923],[9.1250421,46.195038],[9.1297296,46.1893469],[9.1310795,46.1883993],[9.1312981,46.1848138],[9.1355391,46.1803782],[9.1418556,46.1779391],[9.1498483,46.172091],[9.1533958,46.1701855],[9.1593659,46.1696185]],[[8.9774633,45.9823131],[8.9771139,45.9830754],[8.9668665,45.9841219],[8.9646611,45.9790867],[8.9640328,45.9759913],[8.9591268,45.9691951],[8.958586,45.9648006],[8.9668408,45.9633393],[8.9688898,45.9618719],[8.9757221,45.9616889],[8.9768794,45.9638504],[8.9773602,45.9680993],[8.9793152,45.9710866],[8.9772373,45.9719877],[8.9763142,45.9758691],[8.9764574,45.9795829],[8.9774633,45.9823131]]]},"properties":{"ID_0":223,"ISO":"CH-TI","NAME_0":"Switzerland","ID_1":21,"NAME_1":"Ticino","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Tesino|Tessin"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.0047149,47.1732618],[8.9932839,47.1637845],[8.9916219,47.1621668],[8.975295,47.1439156],[8.9737773,47.1403677],[8.9717712,47.1385957],[8.9673854,47.1366351],[8.9693676,47.1345046],[8.9681417,47.1335025],[8.9690755,47.1301696],[8.9676515,47.1265474],[8.9663664,47.1250839],[8.9652887,47.1214823],[8.9671279,47.119179],[8.9718909,47.1181168],[8.9736844,47.1150994],[8.9709234,47.1124829],[8.9711173,47.1100512],[8.9692933,47.1084741],[8.9706722,47.1069264],[8.9706355,47.103773],[8.9642335,47.1019871],[8.9596864,47.1002096],[8.9567681,47.0958142],[8.9541421,47.0942606],[8.9538664,47.0914868],[8.9572683,47.0898379],[8.9607914,47.0895421],[8.968592,47.0871361],[8.9733543,47.0868432],[8.9759838,47.0857083],[8.9662821,47.0808404],[8.9667481,47.0798141],[8.9621902,47.076493],[8.9617614,47.0713752],[8.9590498,47.0698852],[8.9561728,47.0658353],[8.9543804,47.0652717],[8.9509709,47.0606438],[8.9491277,47.0565246],[8.9483451,47.0498395],[8.9471796,47.0489587],[8.9409129,47.0476171],[8.9369145,47.0436618],[8.9305437,47.042085],[8.9246134,47.0398159],[8.9219965,47.0382951],[8.9180923,47.0379176],[8.9153386,47.0385186],[8.9146246,47.0399248],[8.9120387,47.0393025],[8.9093893,47.0396882],[8.9061147,47.0384069],[8.9039921,47.0387035],[8.9009513,47.0372022],[8.9008184,47.0320218],[8.9032903,47.0293575],[8.9036071,47.0272615],[8.9007349,47.0261484],[8.8953576,47.0253377],[8.8929825,47.0236406],[8.8948834,47.0209409],[8.900041,47.0209652],[8.9054109,47.0186475],[8.9104587,47.0170715],[8.9115482,47.0097972],[8.912397,47.0086168],[8.9155602,47.0074245],[8.9169914,47.0059036],[8.9169615,47.003385],[8.9213352,47.0012772],[8.9292996,46.9968376],[8.932321,46.9910583],[8.9364429,46.9879907],[8.9415309,46.9875192],[8.9410192,46.9847369],[8.9321428,46.9822889],[8.9337191,46.9808288],[8.9456524,46.9671326],[8.9488649,46.9692045],[8.9499221,46.9670763],[8.9527549,46.9659323],[8.9538835,46.96401],[8.9572512,46.962274],[8.9631256,46.9608915],[8.9653213,46.9609342],[8.9710981,46.9584459],[8.9647879,46.956038],[8.9622955,46.9538669],[8.9609667,46.9473169],[8.9580842,46.9443412],[8.9552128,46.9389541],[8.9559023,46.9368577],[8.9576211,46.9358632],[8.9569151,46.9341182],[8.9598148,46.9312277],[8.9626723,46.9310278],[8.9642071,46.9286502],[8.9632758,46.9268362],[8.9572679,46.9256835],[8.9544561,46.9260987],[8.9528537,46.9251573],[8.9482254,46.9254163],[8.9477745,46.9243246],[8.9428138,46.9220957],[8.9404336,46.9224418],[8.935372,46.919872],[8.9336137,46.9194451],[8.9265598,46.9160282],[8.922938,46.9156254],[8.9214221,46.9139806],[8.9194804,46.9140327],[8.9149365,46.9111225],[8.9112905,46.9107826],[8.9096192,46.9087168],[8.9016525,46.9078293],[8.8987638,46.9063547],[8.898876,46.9046888],[8.8959579,46.9045461],[8.8952198,46.9029811],[8.8909272,46.9029726],[8.8868674,46.9023493],[8.8833876,46.9008368],[8.8810124,46.8979248],[8.8743982,46.8950121],[8.8685103,46.8942131],[8.8636391,46.8951285],[8.8611713,46.8946194],[8.8612293,46.8918477],[8.8583374,46.8891846],[8.85592,46.8885848],[8.8531856,46.8854068],[8.8496234,46.8881767],[8.8478204,46.8909879],[8.8491456,46.8999862],[8.8482915,46.9024528],[8.8482631,46.9053771],[8.8495433,46.9091399],[8.8487583,46.9127482],[8.8471245,46.9131686],[8.8441941,46.9113467],[8.8426784,46.9094599],[8.8361149,46.9076808],[8.8301267,46.9167324],[8.8277784,46.9193475],[8.8274955,46.9224152],[8.8297748,46.924066],[8.8284327,46.9250295],[8.8296198,46.9280079],[8.8298381,46.9316108],[8.8271667,46.9336569],[8.8267634,46.9357151],[8.821119,46.936245],[8.8200706,46.9373836],[8.8141829,46.9386282],[8.8107023,46.9414033],[8.8051731,46.9386652],[8.7979261,46.9367273],[8.7919319,46.9307976],[8.7877575,46.930352],[8.7792744,46.9324938],[8.7778721,46.9331399],[8.7743221,46.9382644],[8.7744887,46.9396839],[8.7709203,46.9414527],[8.7666176,46.9400903],[8.7641849,46.9383822],[8.7590018,46.9375244],[8.7513768,46.9345533],[8.7483153,46.9339586],[8.7454983,46.9342337],[8.7439063,46.9324976],[8.7373076,46.9322578],[8.7359464,46.930276],[8.732611,46.9297469],[8.7314622,46.9283925],[8.7254107,46.9252683],[8.7205014,46.9218401],[8.7205637,46.9204571],[8.7154904,46.9180938],[8.7126406,46.9186216],[8.7075427,46.9175341],[8.7036846,46.9213004],[8.6995668,46.9229795],[8.6965319,46.928802],[8.7003124,46.9326523],[8.6998009,46.9348062],[8.6965711,46.9403016],[8.6963989,46.9430437],[8.6940851,46.9444248],[8.6929257,46.9468797],[8.6900488,46.9470334],[8.6842978,46.9454492],[8.6811618,46.9461312],[8.6736188,46.9450115],[8.6707416,46.9441094],[8.6648913,46.9455202],[8.6588284,46.9464224],[8.65691,46.9458672],[8.6483118,46.9479739],[8.6456982,46.9489668],[8.6407819,46.9496209],[8.6333783,46.9497073],[8.6276959,46.9502711],[8.623697,46.9525107],[8.604394,46.9519675],[8.6035055,46.9685564],[8.6011795,46.9752372],[8.604133,46.9823321],[8.6031397,46.9868403],[8.5971389,46.9902116],[8.5824165,46.9934091],[8.5710407,46.9901574],[8.5426889,46.9795937],[8.5195541,46.9797622],[8.4966213,46.9764297],[8.4652268,46.9842716],[8.4681565,46.9965248],[8.4735932,46.9955488],[8.4831139,46.996751],[8.4948688,47.000531],[8.5007629,47.0009094],[8.5035027,47.0031529],[8.5090408,47.0044968],[8.5135388,47.0125582],[8.5140537,47.0175334],[8.5134884,47.0216895],[8.5105325,47.0234254],[8.5050176,47.0244534],[8.5006014,47.024688],[8.497008,47.0286423],[8.4944222,47.0291292],[8.490439,47.0318371],[8.4897354,47.0334371],[8.4862981,47.0350914],[8.4837726,47.0379698],[8.4788541,47.040051],[8.469923,47.0474823],[8.4648597,47.0484229],[8.4535487,47.0552159],[8.4459153,47.0582659],[8.4459843,47.060349],[8.4413774,47.0630894],[8.4394057,47.0637353],[8.4340698,47.0639255],[8.4302331,47.0654209],[8.399231,47.0594509],[8.398154,47.0599726],[8.3905144,47.0613294],[8.3889122,47.070384],[8.3922508,47.0721102],[8.3948176,47.0727079],[8.3982208,47.0752872],[8.3996203,47.0752952],[8.4070822,47.0795488],[8.4092748,47.0848267],[8.4106777,47.0859397],[8.4091295,47.0889091],[8.4101381,47.0907865],[8.4100135,47.0935014],[8.41468,47.0963026],[8.4186806,47.1003894],[8.4242279,47.1038224],[8.4315048,47.105779],[8.43773,47.1067133],[8.4379236,47.1095561],[8.4419116,47.1114256],[8.4486142,47.1113686],[8.4499974,47.1144263],[8.4598457,47.1119325],[8.4648405,47.1110106],[8.4705884,47.1127776],[8.4753429,47.1113683],[8.4753818,47.1079905],[8.4762604,47.1061387],[8.4930444,47.1001815],[8.5217868,47.0899712],[8.525702,47.091655],[8.530906,47.0914741],[8.5356093,47.0921011],[8.5407772,47.092275],[8.5442002,47.0944572],[8.5471526,47.0937092],[8.5526615,47.0940347],[8.5559963,47.0934349],[8.5583649,47.0939574],[8.5624592,47.0937531],[8.5635952,47.0919528],[8.563882,47.0885682],[8.5648177,47.0867369],[8.5624977,47.0829027],[8.5656651,47.0810323],[8.5695426,47.0812159],[8.5742727,47.0822549],[8.5775926,47.0844849],[8.5810923,47.0839982],[8.5851626,47.0854714],[8.5901,47.086405],[8.5909215,47.0888801],[8.5961501,47.0914743],[8.5999374,47.09054],[8.6074503,47.0919973],[8.6086995,47.0944522],[8.6117845,47.0949744],[8.6229883,47.0947158],[8.6259369,47.0938761],[8.6372427,47.0933307],[8.6449107,47.0958604],[8.645478,47.0996286],[8.6537711,47.1078582],[8.6556746,47.1085343],[8.660552,47.1118319],[8.6598022,47.1146795],[8.6653465,47.114978],[8.6670624,47.1156745],[8.6714193,47.1157405],[8.6707594,47.1189283],[8.6735114,47.1208966],[8.6755041,47.1211895],[8.678275,47.1245266],[8.6813018,47.1248226],[8.6832807,47.128955],[8.6854813,47.1307218],[8.6843685,47.1331001],[8.6864178,47.1361201],[8.6842014,47.1400605],[8.688497,47.1460839],[8.6907315,47.1478725],[8.6925398,47.1480662],[8.6958618,47.1500766],[8.6990087,47.1504392],[8.6985612,47.1537335],[8.6991986,47.1550115],[8.698121,47.1588125],[8.6958222,47.1629404],[8.692195,47.1634006],[8.6913483,47.1690192],[8.6858723,47.1715188],[8.6830967,47.1734958],[8.6804029,47.1798877],[8.6813311,47.1816033],[8.6810636,47.1840723],[8.6855573,47.186545],[8.6876075,47.188523],[8.6941823,47.196359],[8.6996117,47.1970255],[8.7025522,47.1981022],[8.7029008,47.201511],[8.7061375,47.2022967],[8.7100884,47.2004229],[8.7130983,47.2030372],[8.7170103,47.203538],[8.740677,47.2116423],[8.7771871,47.2188484],[8.7933525,47.2225672],[8.8084775,47.2201299],[8.8136899,47.2160125],[8.8186413,47.2132263],[8.8273538,47.2100532],[8.833504,47.2087961],[8.8391543,47.2082413],[8.8483404,47.2084866],[8.941406,47.2181383],[8.9547617,47.2163405],[8.9570705,47.2163569],[8.9660403,47.217463],[8.9699548,47.2170932],[8.97262,47.2153418],[8.9742922,47.212803],[8.9690628,47.2109554],[8.9653289,47.198162],[8.957481,47.199442],[8.9602986,47.1887644],[8.961795,47.1844066],[8.9621344,47.1793798],[8.970359,47.1788068],[8.9710416,47.1806338],[8.9733108,47.1802927],[8.9739579,47.1822885],[8.9770548,47.1818251],[8.9802549,47.1833187],[8.9878997,47.1817293],[8.9940015,47.1795489],[8.9975864,47.1778545],[8.9963427,47.1765244],[9.0047149,47.1732618]]]},"properties":{"ID_0":223,"ISO":"CH-SZ","NAME_0":"Switzerland","ID_1":18,"NAME_1":"Schwyz","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.8084775,47.2201299],[8.7933525,47.2225672],[8.7771871,47.2188484],[8.740677,47.2116423],[8.7170103,47.203538],[8.7130983,47.2030372],[8.7100884,47.2004229],[8.7061375,47.2022967],[8.7029008,47.201511],[8.7025522,47.1981022],[8.6996117,47.1970255],[8.6941823,47.196359],[8.6876075,47.188523],[8.6855573,47.186545],[8.6810636,47.1840723],[8.6813311,47.1816033],[8.6804029,47.1798877],[8.6830967,47.1734958],[8.6858723,47.1715188],[8.6913483,47.1690192],[8.692195,47.1634006],[8.6870422,47.1625743],[8.6803255,47.1619856],[8.6763556,47.1607073],[8.6749784,47.1594451],[8.6657734,47.1596659],[8.6612293,47.1609515],[8.6606216,47.1633874],[8.6610944,47.1682073],[8.6606606,47.1703235],[8.6565472,47.1699542],[8.6529328,47.1709557],[8.6427129,47.169004],[8.6398915,47.1693261],[8.6393544,47.1714726],[8.6337707,47.1716071],[8.631116,47.1721771],[8.6260229,47.1723475],[8.6239808,47.1733578],[8.6251046,47.1765264],[8.6281526,47.1792337],[8.62063,47.1877462],[8.6207215,47.1904848],[8.6173989,47.1922804],[8.618166,47.1945483],[8.6157158,47.1986164],[8.6088948,47.2044377],[8.6060413,47.2052421],[8.603054,47.2029903],[8.5985798,47.2015807],[8.596806,47.2036937],[8.5965866,47.2068174],[8.5975569,47.2082536],[8.5941607,47.2120538],[8.5913716,47.2115264],[8.5874798,47.2124238],[8.5854032,47.2108073],[8.5822063,47.2110999],[8.5811402,47.2139231],[8.5833397,47.2168275],[8.582027,47.2179174],[8.5777163,47.218037],[8.5747217,47.2170082],[8.5728397,47.2183849],[8.5671349,47.2185238],[8.5641572,47.2196147],[8.5603449,47.2195443],[8.5576778,47.2216014],[8.5538365,47.2232373],[8.5529549,47.2216557],[8.5469408,47.2219665],[8.5458789,47.2213973],[8.5392151,47.2230554],[8.5363622,47.2206008],[8.5324673,47.22205],[8.5318901,47.2182695],[8.5259327,47.2185752],[8.5174882,47.2196031],[8.5125639,47.2194149],[8.5123322,47.2155191],[8.5058863,47.213858],[8.5033136,47.2122402],[8.4930475,47.2119208],[8.4892994,47.2108805],[8.4854573,47.2090431],[8.4798975,47.2086217],[8.4762199,47.2100215],[8.4751556,47.2089287],[8.472468,47.2116957],[8.4704131,47.2119232],[8.4669192,47.2142867],[8.4614031,47.2136312],[8.4586975,47.2170022],[8.4556361,47.2185429],[8.4529458,47.2177609],[8.4520975,47.2196007],[8.4479234,47.2201098],[8.4464136,47.2222995],[8.4438004,47.2226376],[8.4411217,47.2252153],[8.4390529,47.2239018],[8.435534,47.2236907],[8.4292811,47.224873],[8.4269511,47.224066],[8.4216847,47.2233208],[8.4209299,47.2256471],[8.4181755,47.2266209],[8.4169644,47.2307277],[8.4164871,47.236974],[8.4142474,47.2389432],[8.4164943,47.2410889],[8.4144782,47.2427926],[8.4130076,47.2460685],[8.4100734,47.2483758],[8.4076645,47.2507119],[8.4036951,47.253558],[8.402627,47.2555472],[8.4042605,47.2589781],[8.4042453,47.2611419],[8.4009187,47.2641023],[8.400531,47.265757],[8.402285,47.2704499],[8.4011511,47.2736139],[8.3962649,47.27688],[8.3942407,47.2793933],[8.3930772,47.2834224],[8.3911146,47.2874476],[8.3886355,47.2900282],[8.3912673,47.2910121],[8.3941151,47.2901554],[8.3972187,47.2879044],[8.4040656,47.2907771],[8.4070245,47.2924671],[8.4130639,47.2930028],[8.417049,47.2938218],[8.4202139,47.2957002],[8.4215606,47.2977813],[8.4279482,47.3003437],[8.4307593,47.3052088],[8.4292688,47.3072451],[8.4321865,47.3086723],[8.4320429,47.3115461],[8.4359535,47.3141633],[8.4413115,47.3158296],[8.4404757,47.3175853],[8.4457848,47.3199953],[8.4466582,47.3216115],[8.4491594,47.323353],[8.448506,47.3259759],[8.4547312,47.3330139],[8.4509943,47.3336253],[8.4498424,47.3304915],[8.4435303,47.3292196],[8.4420734,47.3274217],[8.4367157,47.3267494],[8.4347649,47.3253231],[8.4316599,47.3269795],[8.4294278,47.3273604],[8.4190278,47.3247326],[8.4162803,47.324465],[8.4152411,47.3262568],[8.4124178,47.3271276],[8.4139473,47.3307012],[8.416725,47.3338056],[8.4137112,47.3380448],[8.4105369,47.340225],[8.407309,47.3415768],[8.4066734,47.3440261],[8.4038608,47.346568],[8.405576,47.3488371],[8.4057674,47.351094],[8.4092717,47.355073],[8.4072987,47.3556931],[8.4071599,47.3598394],[8.404928,47.3641007],[8.4081907,47.3666517],[8.4070314,47.3702281],[8.4029658,47.3699973],[8.4005457,47.3715189],[8.400763,47.3742026],[8.3983116,47.3751168],[8.3963797,47.3770438],[8.3965509,47.3790613],[8.3949367,47.3807219],[8.3949077,47.3901644],[8.3963418,47.3938204],[8.3919003,47.3958406],[8.3897509,47.3946468],[8.3879758,47.3956359],[8.3835219,47.3952577],[8.379899,47.3996295],[8.3762912,47.400009],[8.374062,47.3990368],[8.3688427,47.3992633],[8.3663755,47.398824],[8.3632783,47.4010042],[8.3658179,47.4025127],[8.3674265,47.400737],[8.3690768,47.4033153],[8.3761686,47.404804],[8.3792425,47.4024083],[8.3819943,47.4035191],[8.384611,47.4062167],[8.38156,47.4084932],[8.3819813,47.411571],[8.3852456,47.4144205],[8.3817488,47.4162654],[8.3837913,47.4180257],[8.3875383,47.4163596],[8.3914412,47.4197719],[8.3918573,47.422804],[8.3879424,47.4267576],[8.3876208,47.4279591],[8.3832521,47.4280954],[8.378114,47.429219],[8.3750683,47.430666],[8.3746527,47.432249],[8.3770848,47.4338306],[8.3828582,47.4329057],[8.3850265,47.4359428],[8.3837337,47.4399815],[8.3819501,47.440491],[8.3811138,47.4462254],[8.38175,47.4486977],[8.3866522,47.449729],[8.3844146,47.4549144],[8.3827218,47.4563269],[8.3803021,47.4561952],[8.3789876,47.459174],[8.3728316,47.45918],[8.3721382,47.4610682],[8.3695234,47.4634003],[8.3694382,47.4653353],[8.3656733,47.4662147],[8.3678285,47.4681845],[8.3677742,47.4703514],[8.3725953,47.4702775],[8.3753137,47.4711383],[8.3735847,47.474859],[8.3741864,47.4804561],[8.3732537,47.4814695],[8.363263,47.4808564],[8.36199,47.4857452],[8.3626554,47.4904339],[8.360839,47.495606],[8.3584307,47.4974812],[8.3621486,47.4995601],[8.3578328,47.5024676],[8.3590389,47.5060784],[8.3616383,47.5078249],[8.3612212,47.5101016],[8.3636951,47.5109067],[8.3681879,47.5111886],[8.3689582,47.5121826],[8.3736222,47.5110246],[8.3746509,47.5121829],[8.3787882,47.5136668],[8.3803598,47.5159718],[8.3804237,47.5199572],[8.3813868,47.5249128],[8.383521,47.5276857],[8.3866398,47.5288723],[8.3898145,47.52734],[8.3920639,47.5253865],[8.395717,47.5283161],[8.3948426,47.5314814],[8.4044161,47.5343156],[8.4023807,47.5373838],[8.4060471,47.5403528],[8.4050921,47.5418561],[8.4073242,47.5425694],[8.4103996,47.5454876],[8.412698,47.5462493],[8.4173922,47.5458861],[8.4150518,47.5483909],[8.4169263,47.550269],[8.414525,47.5521612],[8.4144364,47.5538921],[8.4163773,47.5579054],[8.4176749,47.558455],[8.4168639,47.5609338],[8.4187365,47.5651625],[8.4235642,47.5664354],[8.4255136,47.5679545],[8.4291265,47.5668312],[8.4335642,47.5666201],[8.4394854,47.5675501],[8.4499763,47.5709139],[8.4561683,47.572436],[8.4641697,47.5721929],[8.4689539,47.5738246],[8.4754928,47.5773487],[8.477913,47.5780063],[8.4829408,47.5771677],[8.4866016,47.5775599],[8.490011,47.5796085],[8.4946936,47.5811148],[8.4941373,47.5822449],[8.488692,47.5878298],[8.483267,47.5869185],[8.4810248,47.5852051],[8.4754432,47.5845285],[8.466855,47.5842487],[8.4648053,47.5880089],[8.4605232,47.588379],[8.4612206,47.5926672],[8.4600035,47.5950168],[8.457024,47.5973809],[8.456675,47.6023273],[8.4636299,47.6022658],[8.4685311,47.6038606],[8.471431,47.6070051],[8.4750245,47.6077212],[8.4781134,47.6109952],[8.4791924,47.6152288],[8.4832925,47.6136926],[8.4845997,47.6147544],[8.4883878,47.6150499],[8.4931259,47.6145123],[8.5031578,47.617281],[8.5059494,47.6171834],[8.5083128,47.6189426],[8.5082427,47.6220643],[8.5101977,47.6233505],[8.5144329,47.6235811],[8.5127709,47.6256023],[8.5153027,47.6271079],[8.5148317,47.6301254],[8.5156468,47.6337913],[8.5207561,47.6343164],[8.5256195,47.6317096],[8.5317204,47.6319146],[8.5367938,47.6308832],[8.5389336,47.6309744],[8.5386795,47.6263021],[8.5429072,47.6270605],[8.5443192,47.6251534],[8.5505054,47.6253558],[8.5578837,47.6244557],[8.5592135,47.6219012],[8.5619787,47.6192694],[8.5629176,47.6167017],[8.569322,47.6172013],[8.5712152,47.6124855],[8.5699888,47.6108208],[8.5663776,47.6098595],[8.5664004,47.6060928],[8.5638865,47.6028627],[8.5616395,47.6013055],[8.563066,47.5994489],[8.5603394,47.5991786],[8.5557679,47.5964208],[8.5558522,47.5946272],[8.5504394,47.5922651],[8.5475879,47.592735],[8.5409644,47.5900752],[8.5370196,47.5873728],[8.5353357,47.5871183],[8.5369915,47.5834328],[8.5335479,47.5821584],[8.535758,47.5807667],[8.5375384,47.5779629],[8.5350849,47.5752293],[8.5393246,47.5744],[8.5444662,47.5749452],[8.5463772,47.5741656],[8.5462056,47.5713115],[8.5415833,47.5699279],[8.5448794,47.5678295],[8.5483133,47.5643685],[8.5497209,47.5618698],[8.5505894,47.557147],[8.5515282,47.555404],[8.5542602,47.5530295],[8.5569113,47.5523748],[8.5607346,47.5546543],[8.5675225,47.562578],[8.5692155,47.5663718],[8.5696789,47.5698964],[8.5720082,47.5743747],[8.5749816,47.5757101],[8.5786922,47.5761114],[8.5800884,47.5784735],[8.5782194,47.5816375],[8.5770944,47.5859105],[8.578113,47.5890225],[8.5800463,47.5911716],[8.5854472,47.5939158],[8.5921652,47.5953679],[8.5950095,47.5976191],[8.5943282,47.6014281],[8.595746,47.6055872],[8.6034429,47.6109441],[8.6051411,47.614632],[8.6042957,47.6178015],[8.5996117,47.6238047],[8.597024,47.6304857],[8.5968065,47.6350866],[8.5952874,47.6408725],[8.5956909,47.6430375],[8.6014067,47.6457043],[8.6026202,47.6471264],[8.6040054,47.6509184],[8.6075629,47.6524447],[8.6123743,47.6498873],[8.6140698,47.6466042],[8.6137561,47.6438768],[8.6106969,47.6418603],[8.6054447,47.6416108],[8.6028052,47.6397059],[8.6047613,47.6376573],[8.6076464,47.6370006],[8.6155962,47.6377003],[8.6197774,47.6387814],[8.6231838,47.6407817],[8.6248657,47.6426019],[8.6288544,47.6496558],[8.6279199,47.653449],[8.6193362,47.6594209],[8.6145437,47.6615696],[8.6128178,47.6608058],[8.6087883,47.6634201],[8.6068938,47.6664651],[8.6062596,47.6688711],[8.6080729,47.6726072],[8.6096271,47.6720106],[8.6113027,47.6763494],[8.6138975,47.6786144],[8.6156987,47.6779468],[8.6181254,47.6753439],[8.6204955,47.6752089],[8.6262443,47.6777362],[8.6272155,47.6811282],[8.6240313,47.6897125],[8.6245743,47.6912613],[8.6376391,47.6931895],[8.6414985,47.6944506],[8.6459524,47.6936167],[8.6541185,47.6889521],[8.6590008,47.6865586],[8.6634535,47.6858858],[8.6694179,47.6848935],[8.669693,47.6816139],[8.6679731,47.6771404],[8.6692402,47.6747944],[8.6769806,47.6714939],[8.677604,47.6683996],[8.6776838,47.6625816],[8.6796253,47.6609021],[8.6803698,47.6581501],[8.6821667,47.6574379],[8.6866969,47.6535974],[8.6880095,47.6500318],[8.6931493,47.6480212],[8.6983526,47.6477137],[8.7035803,47.6441168],[8.7088987,47.6419532],[8.7110682,47.6436091],[8.7141789,47.644383],[8.7172159,47.6418118],[8.7234937,47.6418571],[8.7246506,47.6430587],[8.7296224,47.6428235],[8.7349164,47.6411762],[8.7429557,47.642414],[8.7433586,47.6397712],[8.7471948,47.638647],[8.7481793,47.6407912],[8.752111,47.6423944],[8.7584643,47.6436084],[8.7598322,47.6455473],[8.7623567,47.6461767],[8.764692,47.6485255],[8.7688253,47.6501869],[8.7727348,47.6499093],[8.7761805,47.6488479],[8.7785305,47.6510273],[8.7824535,47.6524982],[8.7853981,47.6551161],[8.7865494,47.6581077],[8.7865772,47.6607401],[8.7885306,47.6653644],[8.7929746,47.6646782],[8.8037477,47.6652022],[8.803409,47.6606431],[8.8049256,47.6604053],[8.8042914,47.6549425],[8.8048521,47.6522354],[8.8099253,47.6516288],[8.8146399,47.6497092],[8.8209336,47.6489301],[8.8261772,47.6469538],[8.8258603,47.6442984],[8.8277885,47.6407847],[8.826695,47.6378853],[8.8213843,47.6315234],[8.8202266,47.6293],[8.8178149,47.6298691],[8.8131357,47.6274418],[8.8116988,47.6226487],[8.8128514,47.6206365],[8.8131607,47.6165327],[8.8113319,47.6163829],[8.8083602,47.6140478],[8.8050378,47.6137341],[8.8040755,47.6116343],[8.8040097,47.6081304],[8.8030004,47.6045972],[8.8016724,47.6029607],[8.8026781,47.6011142],[8.7965292,47.6025906],[8.7936762,47.6025036],[8.7887801,47.6034405],[8.7881293,47.6041531],[8.7897965,47.6094092],[8.7867504,47.6095444],[8.7794414,47.6126995],[8.7695585,47.6151019],[8.7621786,47.6180885],[8.7588736,47.6182418],[8.756416,47.6167963],[8.7508602,47.61973],[8.7481175,47.6230444],[8.7458277,47.6208222],[8.746453,47.617691],[8.7456123,47.6161654],[8.7458047,47.6129489],[8.7430733,47.6129859],[8.7401007,47.6117996],[8.7393924,47.6080421],[8.7419616,47.6073434],[8.7420952,47.604622],[8.7480225,47.5996224],[8.7472395,47.5957846],[8.7482189,47.5923105],[8.7557207,47.5928672],[8.7619464,47.5928595],[8.7671576,47.5922092],[8.8060382,47.5831495],[8.8024934,47.5828547],[8.8010602,47.5805408],[8.8061999,47.5795067],[8.8047929,47.5750046],[8.8081082,47.5743253],[8.8074324,47.5715711],[8.8138357,47.5701805],[8.8165856,47.5701717],[8.8172873,47.5719299],[8.81966,47.5713846],[8.8238078,47.5724876],[8.8300124,47.5711031],[8.8312225,47.5733985],[8.8388035,47.5711971],[8.8392483,47.5654085],[8.8421419,47.5663912],[8.8448984,47.5660895],[8.8442842,47.5632544],[8.8509194,47.5636441],[8.8511029,47.560801],[8.8459779,47.560737],[8.8406254,47.5594076],[8.8402444,47.557914],[8.8380114,47.5572663],[8.831904,47.5578272],[8.829451,47.5576006],[8.8279787,47.5559522],[8.8307248,47.5520857],[8.8327298,47.5460275],[8.8344696,47.5429665],[8.8399326,47.5393349],[8.8393647,47.5372242],[8.8411585,47.5368701],[8.8407614,47.5327113],[8.847422,47.5312669],[8.8558861,47.5314408],[8.8557653,47.5304153],[8.8688181,47.5303829],[8.8744423,47.5292721],[8.8800571,47.5276282],[8.883444,47.5294184],[8.8863484,47.5279304],[8.8967493,47.5256128],[8.8977629,47.5240124],[8.8974405,47.5219646],[8.8952987,47.5192508],[8.8966045,47.5173093],[8.8963664,47.5131283],[8.8974243,47.5077368],[8.8935844,47.500655],[8.8926663,47.5005703],[8.8935342,47.4942669],[8.8928039,47.4884171],[8.8967824,47.4879015],[8.8976935,47.4851124],[8.8852934,47.4817106],[8.8847345,47.4768481],[8.8818356,47.4749445],[8.8845427,47.4737294],[8.8833098,47.4711481],[8.8848961,47.4696665],[8.890596,47.4692664],[8.8919768,47.4641908],[8.8956185,47.4627383],[8.895461,47.4597096],[8.8979094,47.4578991],[8.9003431,47.4545995],[8.9035425,47.4534569],[8.9068021,47.4508949],[8.9089794,47.4477314],[8.9055775,47.4467813],[8.9026509,47.4442432],[8.9070306,47.4395602],[8.9068144,47.4387904],[8.910866,47.4366682],[8.9188106,47.4362664],[8.9219248,47.4348602],[8.9269819,47.4354154],[8.9311196,47.4353076],[8.933087,47.43423],[8.9309416,47.4318913],[8.9265712,47.4314024],[8.9220079,47.4329528],[8.9180688,47.4324062],[8.9169958,47.4331715],[8.9136073,47.4315351],[8.910559,47.4340582],[8.9076801,47.4312126],[8.908633,47.4295735],[8.914616,47.4277156],[8.9123892,47.4258497],[8.9111572,47.4235541],[8.9138156,47.4180847],[8.9123489,47.4155589],[8.9125142,47.4126901],[8.9107932,47.411905],[8.9094677,47.4091251],[8.9045472,47.4048246],[8.903465,47.4020567],[8.9071451,47.4009893],[8.9113724,47.401411],[8.9154599,47.3999186],[8.9208114,47.399466],[8.9259713,47.3969058],[8.9277528,47.3943396],[8.9327635,47.3910824],[8.9363233,47.390141],[8.9415458,47.3873169],[8.9435515,47.3855567],[8.9435586,47.3837916],[8.94012,47.3797557],[8.9435245,47.375917],[8.9451574,47.3747669],[8.9481365,47.374746],[8.9514438,47.3713562],[8.9523828,47.3671158],[8.9547056,47.3641032],[8.9560756,47.3607737],[8.9593707,47.3576435],[8.9602841,47.3537015],[8.9632339,47.3544272],[8.967416,47.3542763],[8.9716314,47.3519318],[8.97441,47.3473753],[8.973309,47.3461935],[8.9740097,47.3413709],[8.9730871,47.3398755],[8.9792825,47.3379492],[8.9784848,47.3339255],[8.9772706,47.3325126],[8.9767752,47.3293852],[8.9774689,47.3270595],[8.9797448,47.3255149],[8.9809137,47.3226492],[8.9849407,47.3193894],[8.9822086,47.3165491],[8.9816781,47.3150675],[8.9781339,47.3113362],[8.9749561,47.3070338],[8.967039,47.3057685],[8.9643803,47.306347],[8.9607756,47.3056981],[8.9565203,47.3042603],[8.9553111,47.3030671],[8.9519287,47.2965101],[8.9490168,47.294419],[8.9484935,47.2921438],[8.9446752,47.290767],[8.9378536,47.2892542],[8.9354826,47.2891889],[8.9380662,47.2854677],[8.9405673,47.2843651],[8.9419468,47.2821298],[8.9419621,47.2796632],[8.9436388,47.2795977],[8.9456222,47.2820407],[8.9488186,47.2809429],[8.9477276,47.2790305],[8.9471354,47.2749456],[8.9408962,47.2716671],[8.9444545,47.2694976],[8.9429323,47.2673876],[8.9377207,47.2642854],[8.9370659,47.2615566],[8.9330965,47.2588875],[8.9290836,47.2600489],[8.9283738,47.2588771],[8.9205014,47.2568508],[8.9086053,47.2544149],[8.9082928,47.2567459],[8.9051253,47.2556627],[8.8892746,47.2530501],[8.8734875,47.2519915],[8.8737567,47.2476646],[8.8707536,47.2469669],[8.8697453,47.2450434],[8.8621265,47.2439799],[8.8572444,47.2448715],[8.8525178,47.2468754],[8.8528662,47.2492861],[8.8507303,47.250594],[8.8447361,47.2486275],[8.8447163,47.2469762],[8.8379004,47.2469777],[8.8354903,47.2478917],[8.8346486,47.249373],[8.8289868,47.2498935],[8.8268174,47.2514675],[8.8216313,47.2507371],[8.8157764,47.248962],[8.8129961,47.2488013],[8.8025031,47.2466728],[8.8027811,47.2453687],[8.7990468,47.2430671],[8.7965168,47.2425245],[8.7957115,47.2391195],[8.8084775,47.2201299]]]},"properties":{"ID_0":223,"ISO":"CH-ZH","NAME_0":"Switzerland","ID_1":25,"NAME_1":"Zürich","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Turitg|Zurigo|Zürih|Zurique"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.4644643,47.4841796],[9.4645058,47.487041],[9.4591767,47.4893691],[9.4530202,47.4900181],[9.4536761,47.4916536],[9.449424,47.4921995],[9.4481643,47.4936146],[9.4503645,47.4969934],[9.4480844,47.4980224],[9.4497442,47.5010547],[9.4585513,47.4976541],[9.4617913,47.4967213],[9.4646161,47.496845],[9.4669449,47.4959304],[9.4706232,47.4925765],[9.4769713,47.4896541],[9.4644643,47.4841796]]],[[[8.9435245,47.375917],[8.94012,47.3797557],[8.9435586,47.3837916],[8.9435515,47.3855567],[8.9415458,47.3873169],[8.9363233,47.390141],[8.9327635,47.3910824],[8.9277528,47.3943396],[8.9259713,47.3969058],[8.9208114,47.399466],[8.9154599,47.3999186],[8.9113724,47.401411],[8.9071451,47.4009893],[8.903465,47.4020567],[8.9045472,47.4048246],[8.9094677,47.4091251],[8.9107932,47.411905],[8.9125142,47.4126901],[8.9123489,47.4155589],[8.9138156,47.4180847],[8.9111572,47.4235541],[8.9123892,47.4258497],[8.914616,47.4277156],[8.908633,47.4295735],[8.9076801,47.4312126],[8.910559,47.4340582],[8.9136073,47.4315351],[8.9169958,47.4331715],[8.9180688,47.4324062],[8.9220079,47.4329528],[8.9265712,47.4314024],[8.9309416,47.4318913],[8.933087,47.43423],[8.9311196,47.4353076],[8.9269819,47.4354154],[8.9219248,47.4348602],[8.9188106,47.4362664],[8.910866,47.4366682],[8.9068144,47.4387904],[8.9070306,47.4395602],[8.9026509,47.4442432],[8.9055775,47.4467813],[8.9089794,47.4477314],[8.9068021,47.4508949],[8.9035425,47.4534569],[8.9003431,47.4545995],[8.8979094,47.4578991],[8.895461,47.4597096],[8.8956185,47.4627383],[8.8919768,47.4641908],[8.890596,47.4692664],[8.8848961,47.4696665],[8.8833098,47.4711481],[8.8845427,47.4737294],[8.8818356,47.4749445],[8.8847345,47.4768481],[8.8852934,47.4817106],[8.8976935,47.4851124],[8.8967824,47.4879015],[8.8928039,47.4884171],[8.8935342,47.4942669],[8.8926663,47.5005703],[8.8935844,47.500655],[8.8974243,47.5077368],[8.8963664,47.5131283],[8.8966045,47.5173093],[8.8952987,47.5192508],[8.8974405,47.5219646],[8.8977629,47.5240124],[8.8967493,47.5256128],[8.8863484,47.5279304],[8.883444,47.5294184],[8.8800571,47.5276282],[8.8744423,47.5292721],[8.8688181,47.5303829],[8.8557653,47.5304153],[8.8558861,47.5314408],[8.847422,47.5312669],[8.8407614,47.5327113],[8.8411585,47.5368701],[8.8393647,47.5372242],[8.8399326,47.5393349],[8.8344696,47.5429665],[8.8327298,47.5460275],[8.8307248,47.5520857],[8.8279787,47.5559522],[8.829451,47.5576006],[8.831904,47.5578272],[8.8380114,47.5572663],[8.8402444,47.557914],[8.8406254,47.5594076],[8.8459779,47.560737],[8.8511029,47.560801],[8.8509194,47.5636441],[8.8442842,47.5632544],[8.8448984,47.5660895],[8.8421419,47.5663912],[8.8392483,47.5654085],[8.8388035,47.5711971],[8.8312225,47.5733985],[8.8300124,47.5711031],[8.8238078,47.5724876],[8.81966,47.5713846],[8.8172873,47.5719299],[8.8165856,47.5701717],[8.8138357,47.5701805],[8.8074324,47.5715711],[8.8081082,47.5743253],[8.8047929,47.5750046],[8.8061999,47.5795067],[8.8010602,47.5805408],[8.8024934,47.5828547],[8.8060382,47.5831495],[8.7671576,47.5922092],[8.7619464,47.5928595],[8.7557207,47.5928672],[8.7482189,47.5923105],[8.7472395,47.5957846],[8.7480225,47.5996224],[8.7420952,47.604622],[8.7419616,47.6073434],[8.7393924,47.6080421],[8.7401007,47.6117996],[8.7430733,47.6129859],[8.7458047,47.6129489],[8.7456123,47.6161654],[8.746453,47.617691],[8.7458277,47.6208222],[8.7481175,47.6230444],[8.7508602,47.61973],[8.756416,47.6167963],[8.7588736,47.6182418],[8.7621786,47.6180885],[8.7695585,47.6151019],[8.7794414,47.6126995],[8.7867504,47.6095444],[8.7897965,47.6094092],[8.7881293,47.6041531],[8.7887801,47.6034405],[8.7936762,47.6025036],[8.7965292,47.6025906],[8.8026781,47.6011142],[8.8016724,47.6029607],[8.8030004,47.6045972],[8.8040097,47.6081304],[8.8040755,47.6116343],[8.8050378,47.6137341],[8.8083602,47.6140478],[8.8113319,47.6163829],[8.8131607,47.6165327],[8.8128514,47.6206365],[8.8116988,47.6226487],[8.8131357,47.6274418],[8.8178149,47.6298691],[8.8202266,47.6293],[8.8213843,47.6315234],[8.826695,47.6378853],[8.8277885,47.6407847],[8.8258603,47.6442984],[8.8261772,47.6469538],[8.8209336,47.6489301],[8.8146399,47.6497092],[8.8099253,47.6516288],[8.8048521,47.6522354],[8.8042914,47.6549425],[8.8049256,47.6604053],[8.803409,47.6606431],[8.8037477,47.6652022],[8.7929746,47.6646782],[8.7885306,47.6653644],[8.7865772,47.6607401],[8.7865494,47.6581077],[8.7853981,47.6551161],[8.7824535,47.6524982],[8.7785305,47.6510273],[8.7761805,47.6488479],[8.7727348,47.6499093],[8.7688253,47.6501869],[8.764692,47.6485255],[8.7623567,47.6461767],[8.7598322,47.6455473],[8.7584643,47.6436084],[8.752111,47.6423944],[8.7481793,47.6407912],[8.7471948,47.638647],[8.7433586,47.6397712],[8.7429557,47.642414],[8.7349164,47.6411762],[8.7296224,47.6428235],[8.7246506,47.6430587],[8.7234937,47.6418571],[8.7172159,47.6418118],[8.7141789,47.644383],[8.7110682,47.6436091],[8.7088987,47.6419532],[8.7035803,47.6441168],[8.6983526,47.6477137],[8.6931493,47.6480212],[8.6880095,47.6500318],[8.6866969,47.6535974],[8.6821667,47.6574379],[8.6803698,47.6581501],[8.6796253,47.6609021],[8.6776838,47.6625816],[8.677604,47.6683996],[8.6769806,47.6714939],[8.6692402,47.6747944],[8.6679731,47.6771404],[8.669693,47.6816139],[8.6694179,47.6848935],[8.6721832,47.6852786],[8.6786258,47.6877191],[8.6839059,47.6908111],[8.6878387,47.6944166],[8.6904525,47.6954269],[8.6993624,47.6930837],[8.7045116,47.6903002],[8.7078369,47.6895076],[8.7140873,47.6895216],[8.7178556,47.6906978],[8.7220011,47.692063],[8.7280527,47.6926837],[8.733904,47.6928304],[8.740647,47.6913992],[8.74674,47.6907754],[8.7509126,47.6908136],[8.7575127,47.6895341],[8.7650496,47.6869014],[8.7702912,47.6841424],[8.773792,47.6812052],[8.7844957,47.6768033],[8.788611,47.6755009],[8.7925465,47.6749464],[8.7960128,47.6753913],[8.8015899,47.6778438],[8.805236,47.6781894],[8.8097709,47.6769002],[8.8168889,47.6778064],[8.8264401,47.6749889],[8.8295586,47.6747458],[8.8353908,47.6722253],[8.8391611,47.6693159],[8.8406742,47.6651282],[8.8423408,47.6641575],[8.8471318,47.6632461],[8.8545607,47.6606775],[8.8462658,47.6522661],[8.8493672,47.6510116],[8.8516764,47.6511899],[8.8579336,47.6500858],[8.8606371,47.6539496],[8.8652845,47.6560709],[8.8670016,47.6560242],[8.8724425,47.653965],[8.8753957,47.654733],[8.8769304,47.6550069],[8.882736,47.6540803],[8.8864502,47.6526219],[8.8923212,47.6492385],[8.8964794,47.6479721],[8.8990728,47.6478945],[8.9111751,47.6513397],[8.9231481,47.653436],[8.9288939,47.6551433],[8.9333945,47.6556432],[8.9373852,47.6555287],[8.9421742,47.6563392],[8.947978,47.6605184],[8.9525521,47.6621679],[8.9656709,47.6655222],[8.9755929,47.6701589],[8.9802825,47.673425],[8.984669,47.6754176],[9.0038972,47.6816098],[9.010899,47.6841508],[9.0198493,47.6863411],[9.0264442,47.6863682],[9.0341993,47.6851106],[9.0487426,47.6823734],[9.058754,47.6808851],[9.0692678,47.6797216],[9.0792095,47.6790239],[9.0910827,47.6787656],[9.1004308,47.6774179],[9.1032397,47.6765232],[9.1166599,47.6691969],[9.133174,47.6659103],[9.1380676,47.6644837],[9.1405729,47.6645212],[9.1492186,47.6675009],[9.1530126,47.6670306],[9.1578392,47.6657631],[9.1600093,47.6628432],[9.169738,47.6560231],[9.1706381,47.6548513],[9.1754922,47.6557733],[9.177881,47.6548433],[9.1870827,47.65748],[9.2025008,47.6554655],[9.2344323,47.6567569],[9.2458802,47.6576686],[9.2478319,47.6592475],[9.2558169,47.6591228],[9.2677011,47.6562374],[9.4451294,47.5948297],[9.4529335,47.5901961],[9.502768,47.5472144],[9.435993,47.5066787],[9.430399,47.5046431],[9.4295704,47.5034547],[9.4251069,47.5015032],[9.4212725,47.4961761],[9.4162927,47.4973748],[9.4135282,47.4975264],[9.412755,47.4954993],[9.4095635,47.493387],[9.406458,47.4924896],[9.4031607,47.4872463],[9.4008701,47.486495],[9.4020757,47.4849989],[9.400506,47.4828141],[9.401195,47.4807878],[9.3993032,47.4779255],[9.3963543,47.4778336],[9.3969824,47.4749806],[9.3932328,47.4759856],[9.3911096,47.4774009],[9.3916002,47.4786429],[9.3887828,47.4815637],[9.3845014,47.4824436],[9.3821622,47.4844994],[9.3796002,47.4854753],[9.3808231,47.4873097],[9.3750363,47.487066],[9.3731321,47.4853123],[9.3682145,47.4847397],[9.3665204,47.4854604],[9.3681951,47.4880415],[9.3727856,47.490464],[9.3684346,47.4920822],[9.3699466,47.4945004],[9.3730742,47.4944284],[9.3740695,47.4953604],[9.3744576,47.4996607],[9.3721996,47.5008819],[9.367792,47.500448],[9.3623022,47.5026659],[9.3560896,47.5034155],[9.3559026,47.5008718],[9.3465568,47.5019466],[9.3417981,47.5037224],[9.3397587,47.5031992],[9.3377213,47.5007801],[9.3363496,47.5022721],[9.3382993,47.5068369],[9.3432663,47.5064397],[9.3443072,47.5082828],[9.3461618,47.5080217],[9.3484967,47.5112532],[9.3457669,47.511849],[9.3503056,47.5152997],[9.3533793,47.5148831],[9.3558349,47.5163681],[9.3563952,47.5195004],[9.3531534,47.5192251],[9.3439152,47.5207557],[9.3414015,47.5223656],[9.3411612,47.5239876],[9.3389825,47.524857],[9.3401946,47.5264302],[9.3381187,47.5288425],[9.3296676,47.5296481],[9.3287484,47.5283965],[9.3241352,47.5292912],[9.3221946,47.5310817],[9.318645,47.5315204],[9.3153342,47.5302627],[9.3123318,47.5275667],[9.3136789,47.5247579],[9.3127646,47.5221336],[9.3070341,47.525853],[9.3027458,47.5264322],[9.3013616,47.5241226],[9.2962941,47.5245141],[9.293473,47.5229126],[9.2822861,47.5206844],[9.2848198,47.5185155],[9.2827228,47.5163979],[9.2826656,47.5146506],[9.2794727,47.5139777],[9.280356,47.510081],[9.2779652,47.5103305],[9.2778385,47.5118605],[9.2753857,47.5131558],[9.2715293,47.5113774],[9.270584,47.5100791],[9.2715652,47.5078357],[9.2736076,47.5070115],[9.2834029,47.5060849],[9.2863927,47.5076347],[9.29156,47.5066644],[9.2919545,47.5081475],[9.2953431,47.5096195],[9.2977276,47.5091702],[9.2993608,47.5120963],[9.3025769,47.5123433],[9.3019243,47.5141207],[9.3074735,47.5131438],[9.3116673,47.5103558],[9.3166065,47.509596],[9.3150427,47.5068893],[9.310149,47.5076413],[9.3083954,47.5052947],[9.3091906,47.5032822],[9.3083991,47.5014993],[9.3101362,47.4980426],[9.314707,47.5006759],[9.317247,47.5005128],[9.3200558,47.4968389],[9.3193399,47.4934751],[9.3208334,47.491096],[9.3190032,47.4905445],[9.3151352,47.486318],[9.3106755,47.4848561],[9.3083858,47.4831713],[9.3084583,47.4819944],[9.3043321,47.479442],[9.2986449,47.4772327],[9.2961755,47.4787422],[9.2889259,47.4795068],[9.286575,47.4822365],[9.2811768,47.4830722],[9.2790434,47.4814609],[9.2783593,47.4793971],[9.2748976,47.4791272],[9.2671139,47.4767175],[9.262584,47.4745002],[9.2539502,47.4750551],[9.2511535,47.4744953],[9.2470467,47.4758303],[9.2445998,47.4802837],[9.2409194,47.4801622],[9.2370872,47.4809204],[9.2321982,47.4810574],[9.2323141,47.4832339],[9.2288951,47.4842515],[9.2247012,47.4845577],[9.2197113,47.4832975],[9.2182845,47.4838123],[9.2132597,47.4803712],[9.2131888,47.4789088],[9.2089576,47.4801744],[9.2098438,47.4820022],[9.2077853,47.4831107],[9.2065159,47.4868206],[9.2076091,47.4886274],[9.203121,47.4892276],[9.19877,47.4889782],[9.1967448,47.4905185],[9.193063,47.4889388],[9.1933709,47.4912201],[9.1887775,47.4931076],[9.182856,47.4913451],[9.1810829,47.4965275],[9.1774174,47.494847],[9.1748623,47.4953194],[9.1691694,47.4983058],[9.1719586,47.5033236],[9.165868,47.5040821],[9.1642144,47.5020583],[9.1607182,47.4999861],[9.1605372,47.4986891],[9.1627299,47.4968805],[9.1587008,47.4914969],[9.1579399,47.4891248],[9.1539065,47.4869771],[9.1492017,47.4871053],[9.1402526,47.4844249],[9.1373295,47.485622],[9.1269705,47.4842011],[9.1243335,47.4831922],[9.1246164,47.4817238],[9.1226901,47.4806761],[9.1159947,47.4797329],[9.1144144,47.482945],[9.1092239,47.4839682],[9.0994276,47.4852207],[9.0977442,47.4838949],[9.0918398,47.483458],[9.0898588,47.4827714],[9.0882754,47.4860749],[9.0843949,47.4889398],[9.0835434,47.4937642],[9.082355,47.4952392],[9.0796332,47.4948798],[9.0744687,47.4923049],[9.0728221,47.4936173],[9.0688729,47.4916253],[9.0646815,47.4910369],[9.0598621,47.4912339],[9.0584867,47.4901622],[9.0589607,47.4881691],[9.0558181,47.4874132],[9.0540313,47.4897057],[9.0515399,47.4898865],[9.0512222,47.4915165],[9.0442147,47.4927986],[9.0410512,47.4947278],[9.0301712,47.4904129],[9.0283087,47.4886722],[9.0262623,47.4900764],[9.0238335,47.4889083],[9.0195672,47.4889235],[9.017442,47.4901024],[9.0124778,47.4899739],[9.0102094,47.487746],[9.010783,47.4854659],[9.0066463,47.4826688],[9.0062705,47.4808461],[9.0087899,47.4797543],[9.00873,47.4757936],[9.0119666,47.4753471],[9.0086604,47.4730503],[9.010048,47.4716284],[9.0174884,47.4696344],[9.0265423,47.4678239],[9.029486,47.4666606],[9.0283829,47.4653114],[9.02895,47.4628849],[9.0307268,47.4617914],[9.0264127,47.4601448],[9.0278168,47.4574973],[9.0416887,47.4540316],[9.0476148,47.453539],[9.0506957,47.4526977],[9.0543253,47.4505763],[9.0545843,47.4485273],[9.057966,47.4479906],[9.0625474,47.4462445],[9.0601856,47.444979],[9.0603728,47.4433246],[9.0572894,47.4429504],[9.0547345,47.4434767],[9.0530133,47.4425594],[9.0474581,47.4442335],[9.0451,47.4429075],[9.0422986,47.4402165],[9.0380946,47.4414518],[9.038616,47.4381399],[9.0368117,47.4375581],[9.0350094,47.4392514],[9.0277546,47.4370697],[9.0221498,47.4416775],[9.0196472,47.4403286],[9.0184891,47.4367682],[9.0142647,47.4351472],[9.0119739,47.4334613],[9.0090544,47.4345786],[9.0032879,47.4339771],[8.9986033,47.4349584],[8.9998545,47.4321388],[8.9920346,47.429688],[8.9894648,47.4294378],[8.9900801,47.4271492],[8.9894475,47.4249681],[8.9916422,47.4241304],[8.9926961,47.4218316],[8.9909826,47.4182255],[8.9905791,47.4158605],[8.9885716,47.4118847],[8.9833305,47.4114284],[8.9817893,47.4124905],[8.9765655,47.410676],[8.9741558,47.4057049],[8.9722709,47.4037173],[8.9739209,47.4024822],[8.9756919,47.3993349],[8.974515,47.3983783],[8.9716181,47.3928651],[8.9714795,47.3912881],[8.9680456,47.391276],[8.9662499,47.3883903],[8.9663466,47.3857039],[8.9614454,47.3852975],[8.9574396,47.3864331],[8.9569233,47.3848034],[8.9537798,47.3808946],[8.948613,47.3798708],[8.9448637,47.3781427],[8.9435245,47.375917]],[[9.3535342,47.511421],[9.3546048,47.5093815],[9.3581153,47.5081445],[9.3590917,47.5105357],[9.3543297,47.5119146],[9.3535342,47.511421]]]]},"properties":{"ID_0":223,"ISO":"CH-TG","NAME_0":"Switzerland","ID_1":20,"NAME_1":"Thurgau","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Thurgovie|Turgovia|Turg¢via"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.6787459,46.5791939],[8.6726519,46.5785053],[8.6711293,46.5775328],[8.6668297,46.5766599],[8.6648725,46.5747693],[8.6596584,46.572289],[8.6575406,46.5692805],[8.651334,46.5667007],[8.6407392,46.5640988],[8.6346626,46.5643748],[8.630683,46.5657946],[8.6303276,46.568102],[8.6287569,46.5711404],[8.6295591,46.5737493],[8.627618,46.5743508],[8.6265657,46.5763764],[8.6203529,46.5781349],[8.6148377,46.5772354],[8.6113061,46.5749604],[8.6019578,46.5737292],[8.5983935,46.5740117],[8.5905312,46.5734078],[8.583742,46.5770851],[8.5813907,46.5770512],[8.5773543,46.5816241],[8.5725087,46.5837501],[8.5674149,46.5818362],[8.5646028,46.5813042],[8.5586843,46.58158],[8.5550655,46.5806637],[8.5525578,46.5807216],[8.5465658,46.582496],[8.5458131,46.5837579],[8.5390025,46.5864789],[8.536569,46.5849617],[8.5313856,46.5845636],[8.5261433,46.5812263],[8.5250403,46.5778245],[8.5211983,46.5772499],[8.5219167,46.5745816],[8.5201217,46.5728367],[8.520984,46.5702326],[8.5209799,46.5669247],[8.5179441,46.5653764],[8.5167687,46.5629019],[8.5142613,46.5603196],[8.5130602,46.558077],[8.5157971,46.554477],[8.5144171,46.5515392],[8.5176814,46.5451775],[8.5203747,46.542554],[8.5192349,46.5412131],[8.5194731,46.5388742],[8.516082,46.5388115],[8.507921,46.5362867],[8.5054224,46.5351357],[8.5013337,46.5351103],[8.4975259,46.534196],[8.4950648,46.5345286],[8.4913307,46.5330198],[8.4826433,46.532392],[8.4807457,46.5292849],[8.4776224,46.5276306],[8.4720129,46.5293144],[8.4711904,46.5310693],[8.4637026,46.5358442],[8.4608362,46.5339632],[8.4580495,46.5334305],[8.4530985,46.5349591],[8.4461136,46.5365801],[8.4410886,46.5396988],[8.4352727,46.5403347],[8.4328042,46.5429382],[8.4290073,46.5434931],[8.4283525,46.545478],[8.4263173,46.547328],[8.4265676,46.5485995],[8.4246547,46.5510633],[8.4230307,46.5560076],[8.4234233,46.5596642],[8.4216513,46.5607463],[8.4196235,46.5635752],[8.4192114,46.5667991],[8.4170306,46.5710997],[8.4099515,46.5774822],[8.4104776,46.579683],[8.4076552,46.5830217],[8.4079739,46.5845199],[8.4061408,46.5859648],[8.4074029,46.5877033],[8.4090069,46.5953952],[8.4103293,46.5968929],[8.4076331,46.5995221],[8.4084704,46.6011033],[8.4151157,46.6064253],[8.4171751,46.6094978],[8.416976,46.6125673],[8.4204008,46.6163522],[8.4209164,46.629506],[8.4188011,46.6359188],[8.4203037,46.6371808],[8.4213675,46.6445033],[8.4204577,46.6486523],[8.4182208,46.652196],[8.4102289,46.653028],[8.4092902,46.656764],[8.4090606,46.66325],[8.4071532,46.6667972],[8.4029639,46.6681529],[8.4005281,46.6725292],[8.3980551,46.6742285],[8.3990163,46.6784732],[8.3988709,46.6816866],[8.3973573,46.6842503],[8.3995864,46.6882396],[8.3987207,46.6916549],[8.3996106,46.6928757],[8.4083279,46.6905079],[8.4122257,46.690715],[8.414459,46.6895549],[8.4152825,46.6874839],[8.4199396,46.6873893],[8.4281838,46.6860641],[8.4316333,46.6868931],[8.4377356,46.6863093],[8.4405661,46.6855297],[8.4445452,46.6870431],[8.452286,46.6887448],[8.4527024,46.6929366],[8.4550678,46.6975229],[8.4521411,46.7042048],[8.4536299,46.7075508],[8.4536876,46.7105631],[8.4481202,46.7129388],[8.4472577,46.7149169],[8.4470721,46.72706],[8.449714,46.7298385],[8.4468904,46.7329948],[8.4437168,46.7342865],[8.4408653,46.7378698],[8.4414914,46.7413897],[8.440236,46.7426429],[8.4407645,46.7445666],[8.4437651,46.747102],[8.4421452,46.7497013],[8.4396773,46.7513662],[8.4391677,46.753127],[8.4411906,46.7542423],[8.4435551,46.7538822],[8.4469786,46.7588629],[8.4483186,46.7634232],[8.4603517,46.7691029],[8.4627853,46.7685744],[8.4645752,46.7695783],[8.4689129,46.769205],[8.4706697,46.7678801],[8.4740861,46.7677137],[8.4829236,46.7693199],[8.4844468,46.770566],[8.488642,46.7711312],[8.4914322,46.7725301],[8.4886008,46.7809461],[8.4853945,46.7832857],[8.4836155,46.7863004],[8.4785492,46.7892748],[8.479257,46.7918142],[8.4819314,46.7938967],[8.4811284,46.7984274],[8.4754831,46.7968387],[8.4725824,46.7954517],[8.4682986,46.7976936],[8.4668698,46.7977136],[8.4642643,46.8005376],[8.4723107,46.7993766],[8.4786603,46.801344],[8.4832924,46.8047023],[8.4832296,46.8087584],[8.4782141,46.8126366],[8.4812689,46.8162432],[8.4811479,46.8175758],[8.4832092,46.8189874],[8.483831,46.8240195],[8.4834108,46.8270191],[8.4853926,46.829178],[8.4863068,46.8320394],[8.4889597,46.8356585],[8.4936991,46.8376894],[8.5035004,46.8406339],[8.5057889,46.8427851],[8.5053569,46.8460111],[8.5025531,46.8479878],[8.5021395,46.8495042],[8.4984908,46.8522415],[8.4978667,46.853728],[8.4932683,46.8527375],[8.4866561,46.8539915],[8.4823521,46.8554117],[8.4800454,46.8572493],[8.4774608,46.8565811],[8.4745641,46.8545439],[8.4708359,46.8548512],[8.47088,46.8563355],[8.4690684,46.8580286],[8.4678973,46.8606437],[8.4693106,46.8620109],[8.4691435,46.8641063],[8.4713386,46.8681288],[8.4702064,46.8709198],[8.4672005,46.8743992],[8.467889,46.8771417],[8.4718355,46.877899],[8.4738917,46.8797047],[8.4790907,46.8825229],[8.4767196,46.8864595],[8.4766725,46.8883005],[8.4729666,46.8914778],[8.4719356,46.8939313],[8.4683507,46.8971784],[8.4668799,46.8977059],[8.462808,46.8972139],[8.4594737,46.8976168],[8.4582984,46.8987778],[8.4632806,46.9027141],[8.4642629,46.9047375],[8.4677465,46.9048718],[8.4706743,46.9059444],[8.4812592,46.9085319],[8.4841175,46.9119647],[8.4849825,46.9171679],[8.4860862,46.9184712],[8.4935861,46.918546],[8.4959685,46.9178936],[8.4981087,46.9187574],[8.4997655,46.9165586],[8.5027793,46.9144285],[8.5089891,46.9156957],[8.5188377,46.9200195],[8.5198321,46.9228427],[8.5317098,46.9235386],[8.5344365,46.9248921],[8.5410772,46.9264152],[8.544051,46.9278621],[8.5438301,46.9289451],[8.5469033,46.9320847],[8.5476729,46.9348193],[8.5454387,46.936408],[8.5443734,46.9394661],[8.548885,46.9386326],[8.5498216,46.9393378],[8.5558693,46.9392358],[8.5555988,46.9421451],[8.557074,46.9453712],[8.5569621,46.9476882],[8.5556399,46.9514372],[8.5556439,46.9565317],[8.5561564,46.9599024],[8.5549667,46.9632164],[8.5584742,46.964165],[8.560234,46.9655848],[8.5630508,46.9702202],[8.5622082,46.9729247],[8.5670509,46.974634],[8.5724579,46.9798884],[8.5749457,46.9831313],[8.5710407,46.9901574],[8.5824165,46.9934091],[8.5971389,46.9902116],[8.6031397,46.9868403],[8.604133,46.9823321],[8.6011795,46.9752372],[8.6035055,46.9685564],[8.604394,46.9519675],[8.623697,46.9525107],[8.6276959,46.9502711],[8.6333783,46.9497073],[8.6407819,46.9496209],[8.6456982,46.9489668],[8.6483118,46.9479739],[8.65691,46.9458672],[8.6588284,46.9464224],[8.6648913,46.9455202],[8.6707416,46.9441094],[8.6736188,46.9450115],[8.6811618,46.9461312],[8.6842978,46.9454492],[8.6900488,46.9470334],[8.6929257,46.9468797],[8.6940851,46.9444248],[8.6963989,46.9430437],[8.6965711,46.9403016],[8.6998009,46.9348062],[8.7003124,46.9326523],[8.6965319,46.928802],[8.6995668,46.9229795],[8.7036846,46.9213004],[8.7075427,46.9175341],[8.7126406,46.9186216],[8.7154904,46.9180938],[8.7205637,46.9204571],[8.7205014,46.9218401],[8.7254107,46.9252683],[8.7314622,46.9283925],[8.732611,46.9297469],[8.7359464,46.930276],[8.7373076,46.9322578],[8.7439063,46.9324976],[8.7454983,46.9342337],[8.7483153,46.9339586],[8.7513768,46.9345533],[8.7590018,46.9375244],[8.7641849,46.9383822],[8.7666176,46.9400903],[8.7709203,46.9414527],[8.7744887,46.9396839],[8.7743221,46.9382644],[8.7778721,46.9331399],[8.7792744,46.9324938],[8.7877575,46.930352],[8.7919319,46.9307976],[8.7979261,46.9367273],[8.8051731,46.9386652],[8.8107023,46.9414033],[8.8141829,46.9386282],[8.8200706,46.9373836],[8.821119,46.936245],[8.8267634,46.9357151],[8.8271667,46.9336569],[8.8298381,46.9316108],[8.8296198,46.9280079],[8.8284327,46.9250295],[8.8297748,46.924066],[8.8274955,46.9224152],[8.8277784,46.9193475],[8.8301267,46.9167324],[8.8361149,46.9076808],[8.8426784,46.9094599],[8.8441941,46.9113467],[8.8471245,46.9131686],[8.8487583,46.9127482],[8.8495433,46.9091399],[8.8482631,46.9053771],[8.8482915,46.9024528],[8.8491456,46.8999862],[8.8478204,46.8909879],[8.8496234,46.8881767],[8.8531856,46.8854068],[8.85592,46.8885848],[8.8583374,46.8891846],[8.8612293,46.8918477],[8.8611713,46.8946194],[8.8636391,46.8951285],[8.8685103,46.8942131],[8.8743982,46.8950121],[8.8810124,46.8979248],[8.8833876,46.9008368],[8.8868674,46.9023493],[8.8909272,46.9029726],[8.8952198,46.9029811],[8.8959579,46.9045461],[8.898876,46.9046888],[8.8987638,46.9063547],[8.9016525,46.9078293],[8.9096192,46.9087168],[8.9112905,46.9107826],[8.9149365,46.9111225],[8.9194804,46.9140327],[8.9214221,46.9139806],[8.922938,46.9156254],[8.9265598,46.9160282],[8.9336137,46.9194451],[8.935372,46.919872],[8.939867,46.9122561],[8.9423438,46.9097156],[8.9435621,46.9061636],[8.9457378,46.9049503],[8.9468861,46.9026904],[8.9485786,46.9016111],[8.9518002,46.9016192],[8.9534077,46.9006934],[8.9528116,46.8983576],[8.954145,46.8969986],[8.9545806,46.8944782],[8.9572771,46.8879052],[8.956773,46.8863194],[8.9578008,46.8795013],[8.9559119,46.8753321],[8.9503699,46.8731796],[8.9417106,46.8708924],[8.9333747,46.8653412],[8.9231221,46.8633005],[8.918259,46.8608465],[8.9158838,46.8601779],[8.9075825,46.8602236],[8.9027676,46.8561198],[8.9001582,46.8544849],[8.8991806,46.8525104],[8.8956601,46.8495718],[8.8888374,46.8482541],[8.8839793,46.8462082],[8.8752824,46.8436875],[8.872986,46.8413655],[8.8740662,46.8396479],[8.8743635,46.8352086],[8.877092,46.8334801],[8.881635,46.8290721],[8.8801622,46.8200807],[8.8755647,46.8159667],[8.8770464,46.8129185],[8.8742284,46.8088936],[8.8694586,46.8066573],[8.8660648,46.8067323],[8.859879,46.8056994],[8.8525398,46.7996956],[8.8472958,46.7980098],[8.8477105,46.7935195],[8.841087,46.7937306],[8.8386544,46.7951277],[8.834007,46.7950416],[8.830689,46.7925996],[8.8281425,46.7921464],[8.826304,46.7883526],[8.8278471,46.7861985],[8.8290953,46.7818387],[8.8279905,46.7801678],[8.8304428,46.7733169],[8.830356,46.7711532],[8.8345695,46.7668561],[8.8317088,46.7643352],[8.8254144,46.7660377],[8.8225785,46.7636094],[8.8185456,46.7624842],[8.8185637,46.7584085],[8.816094,46.757135],[8.8137099,46.7528282],[8.8141492,46.7499832],[8.8104307,46.7449252],[8.8111349,46.7416382],[8.8129787,46.7373147],[8.8085658,46.735097],[8.8035637,46.7339908],[8.7995202,46.731453],[8.7947465,46.7317204],[8.7869739,46.7300616],[8.7819848,46.7283121],[8.7805355,46.7312153],[8.7773544,46.7322581],[8.7756585,46.7359017],[8.7734206,46.7378295],[8.7723173,46.7400171],[8.7701632,46.7403217],[8.7695888,46.7443493],[8.7661104,46.7447833],[8.761011,46.742934],[8.7561568,46.7407084],[8.7529712,46.7381418],[8.747639,46.7359106],[8.7472166,46.7332956],[8.7451046,46.7317237],[8.7443965,46.7288814],[8.7484013,46.7224918],[8.7490648,46.7207402],[8.7475304,46.7183822],[8.7407977,46.7146072],[8.7374847,46.7140617],[8.7331876,46.7118509],[8.7276222,46.7074438],[8.724423,46.7066772],[8.7201344,46.7069253],[8.717705,46.7060846],[8.7171968,46.7025881],[8.7089842,46.6989621],[8.7049288,46.700946],[8.7011505,46.7033964],[8.6985657,46.7034811],[8.692587,46.7018487],[8.6915961,46.7009827],[8.6892981,46.6961681],[8.6862819,46.6941788],[8.6805862,46.6950504],[8.6763262,46.6942145],[8.6736487,46.6909099],[8.6737793,46.6882458],[8.6750238,46.6840527],[8.6728402,46.6812255],[8.6742194,46.6783392],[8.6734706,46.672633],[8.6740213,46.6706923],[8.6771375,46.6680899],[8.6786074,46.6642656],[8.6754152,46.662875],[8.6715401,46.6589105],[8.6662122,46.6559717],[8.6613934,46.6560245],[8.6548784,46.649972],[8.6585819,46.6471664],[8.6563892,46.6432118],[8.6574725,46.6416339],[8.655701,46.639727],[8.6518748,46.6379398],[8.6510632,46.6345886],[8.6565822,46.63133],[8.6580023,46.6285534],[8.6579548,46.6261641],[8.6592524,46.6249331],[8.6638793,46.6231287],[8.6640216,46.6216827],[8.6677859,46.6200997],[8.6713394,46.6196114],[8.6766766,46.6199699],[8.6787447,46.6159962],[8.677749,46.6093638],[8.6796329,46.6056207],[8.6771568,46.6015848],[8.6772747,46.5982788],[8.6806097,46.5950522],[8.6805597,46.593042],[8.6819216,46.5885324],[8.6787459,46.5791939]]]},"properties":{"ID_0":223,"ISO":"CH-UR","NAME_0":"Switzerland","ID_1":22,"NAME_1":"Uri","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[8.6634535,47.6858858],[8.6590008,47.6865586],[8.6541185,47.6889521],[8.6459524,47.6936167],[8.6414985,47.6944506],[8.6376391,47.6931895],[8.6245743,47.6912613],[8.6240313,47.6897125],[8.6272155,47.6811282],[8.6262443,47.6777362],[8.6204955,47.6752089],[8.6181254,47.6753439],[8.6156987,47.6779468],[8.6138975,47.6786144],[8.6113027,47.6763494],[8.6096271,47.6720106],[8.6080729,47.6726072],[8.6062596,47.6688711],[8.6067058,47.6721052],[8.598027,47.6727081],[8.5959133,47.6692025],[8.5931687,47.6668028],[8.5914439,47.6674627],[8.5843449,47.66496],[8.5775929,47.6615273],[8.5737334,47.6627092],[8.5708788,47.6647469],[8.569105,47.664152],[8.5661834,47.6657228],[8.5647646,47.6652499],[8.5634368,47.6681375],[8.563753,47.6700477],[8.5607921,47.6704153],[8.5566807,47.6692514],[8.5523073,47.6688744],[8.5496927,47.6674356],[8.5468561,47.6675486],[8.5436845,47.6659407],[8.5399321,47.6650858],[8.5388332,47.663362],[8.5415669,47.6568807],[8.5360446,47.6585635],[8.5338289,47.6599364],[8.533419,47.663129],[8.5310343,47.6617332],[8.5268985,47.6604871],[8.5280047,47.6579796],[8.5299745,47.6569727],[8.5290426,47.6551029],[8.5329041,47.6514063],[8.533782,47.6491106],[8.5317719,47.6457529],[8.5298193,47.6459416],[8.5237964,47.644895],[8.5199719,47.645555],[8.5136388,47.6475047],[8.5090294,47.6466917],[8.5031735,47.647328],[8.4991494,47.6464131],[8.4936756,47.6461597],[8.4936983,47.6430368],[8.4905336,47.6423755],[8.4874035,47.6450761],[8.4851826,47.643926],[8.4827802,47.6440909],[8.4814387,47.6456177],[8.4821788,47.647449],[8.4803684,47.6492432],[8.4764227,47.6501087],[8.4730256,47.6491256],[8.4733917,47.6473584],[8.4773942,47.6459917],[8.4777044,47.6446454],[8.4748201,47.64328],[8.4715469,47.6426706],[8.4726954,47.6408881],[8.475152,47.6410094],[8.4734846,47.6384159],[8.4699895,47.6393278],[8.4670988,47.6415524],[8.4637097,47.6484746],[8.4671234,47.6560423],[8.4636285,47.6563275],[8.459948,47.65372],[8.4572716,47.6527471],[8.4536496,47.6547817],[8.450515,47.655018],[8.4451024,47.653874],[8.4386101,47.6573896],[8.436601,47.6573931],[8.4352662,47.6594977],[8.4319779,47.6621459],[8.423629,47.6668727],[8.4150027,47.6661656],[8.4121963,47.6663416],[8.4055761,47.6741998],[8.4063378,47.6762413],[8.4094598,47.6790297],[8.4161846,47.6797969],[8.4183447,47.6827945],[8.4207729,47.683882],[8.4181824,47.6881987],[8.4119652,47.6944187],[8.406397,47.6955782],[8.4046286,47.6980454],[8.4080919,47.7021122],[8.414289,47.7067741],[8.4171148,47.7101911],[8.4201329,47.7095217],[8.4253296,47.7117357],[8.4260735,47.7113055],[8.4317132,47.7146322],[8.4351616,47.7175792],[8.4380642,47.7185549],[8.4415788,47.7211149],[8.4453242,47.7230801],[8.4475911,47.7232318],[8.454926,47.7224615],[8.4542328,47.7235293],[8.454592,47.7271257],[8.4570318,47.7291838],[8.4563434,47.730531],[8.4536395,47.7305052],[8.4513664,47.7331976],[8.4497851,47.7381341],[8.4507603,47.7401734],[8.4558325,47.7428093],[8.4560161,47.7484635],[8.4574865,47.7502551],[8.4629365,47.7517044],[8.4671182,47.7543927],[8.4695443,47.7599427],[8.4731316,47.7640803],[8.4815322,47.768336],[8.4840706,47.770955],[8.4890042,47.7732198],[8.4909726,47.7716877],[8.4953513,47.7707516],[8.4983473,47.7724651],[8.5022927,47.7736502],[8.5095976,47.7746278],[8.5102983,47.7762084],[8.5163844,47.7732899],[8.5201803,47.7705317],[8.521879,47.7738619],[8.5264537,47.778022],[8.5324472,47.7780396],[8.535631,47.7797966],[8.5413682,47.7815598],[8.5504206,47.7836015],[8.5529028,47.7846422],[8.5563313,47.7838806],[8.5615385,47.7807324],[8.5632983,47.7805817],[8.5628738,47.7779015],[8.5660768,47.7783358],[8.5739923,47.7803677],[8.577318,47.7816742],[8.5759612,47.7850891],[8.574404,47.7870879],[8.5749449,47.7896371],[8.5619748,47.7926065],[8.5624808,47.7965716],[8.5625013,47.8023213],[8.5637921,47.8054055],[8.5680136,47.8084648],[8.5703387,47.8062526],[8.573086,47.8060778],[8.5759196,47.8017289],[8.5753085,47.7995919],[8.5798802,47.8001213],[8.5877329,47.8026637],[8.5928509,47.7987166],[8.5982397,47.8024233],[8.6008463,47.8030243],[8.6114098,47.8019101],[8.6139253,47.8012265],[8.6185886,47.7983299],[8.6178968,47.7960474],[8.6221373,47.7948664],[8.6204906,47.7889567],[8.6189321,47.7877704],[8.615752,47.7871521],[8.6150808,47.7839766],[8.6187712,47.7781538],[8.6233547,47.7772857],[8.6210312,47.7718408],[8.6194029,47.7698175],[8.6194299,47.7676677],[8.6250219,47.7638988],[8.6276868,47.7594006],[8.6316528,47.7581961],[8.6339308,47.7602533],[8.6423831,47.7652156],[8.6444581,47.7643135],[8.6475527,47.7669694],[8.6453324,47.7685351],[8.6493213,47.7703804],[8.6529527,47.7734033],[8.6511071,47.7743475],[8.6480975,47.7740697],[8.6500544,47.7813533],[8.649148,47.7843045],[8.645444,47.7872297],[8.6457334,47.7907206],[8.6469176,47.7947235],[8.6489044,47.7950017],[8.6495903,47.7984711],[8.6533189,47.7999072],[8.6568478,47.8004536],[8.6602975,47.7963318],[8.6599838,47.7940101],[8.6573927,47.7917502],[8.6622989,47.7917689],[8.6652453,47.7903647],[8.6675604,47.7877033],[8.671105,47.7875968],[8.6770952,47.7857249],[8.6783741,47.7867924],[8.6823546,47.7837097],[8.6833055,47.7804991],[8.6831975,47.7773102],[8.6886105,47.7735293],[8.6835732,47.7706063],[8.6867932,47.7652809],[8.6886933,47.7583693],[8.6947787,47.7557546],[8.697333,47.7566461],[8.6990973,47.7596195],[8.7015577,47.7601719],[8.7069781,47.7636918],[8.7095375,47.7631558],[8.7140547,47.7654087],[8.718709,47.7643189],[8.7213722,47.7631026],[8.7273102,47.7622767],[8.7307915,47.7596173],[8.7289453,47.7579693],[8.7411201,47.7519933],[8.7414213,47.7481932],[8.7395205,47.7465277],[8.7342554,47.7465671],[8.7309875,47.7458536],[8.728037,47.7461491],[8.7265734,47.7450454],[8.7236098,47.7456581],[8.7216035,47.743966],[8.72022,47.7410075],[8.7145891,47.7385941],[8.7141791,47.7363269],[8.7111438,47.7301477],[8.713797,47.7277382],[8.7179262,47.7216265],[8.721531,47.7217452],[8.7246722,47.7201602],[8.7329853,47.7185155],[8.7362915,47.7163367],[8.7321998,47.7117666],[8.7310714,47.707572],[8.7284501,47.7024538],[8.7264855,47.6966228],[8.7280527,47.6926837],[8.7220011,47.692063],[8.7178556,47.6906978],[8.7176102,47.6949415],[8.7113786,47.6963383],[8.7117948,47.7017492],[8.7089079,47.7041534],[8.7077792,47.7078093],[8.7046267,47.7134361],[8.7012698,47.7151988],[8.6985427,47.7150194],[8.6974125,47.7137625],[8.6896623,47.7117242],[8.6903082,47.7094588],[8.6863164,47.7085792],[8.6838233,47.7087369],[8.6799159,47.7105676],[8.6813195,47.712424],[8.6771333,47.7130946],[8.6742049,47.7126991],[8.671362,47.7110127],[8.6646529,47.7133734],[8.6660064,47.70787],[8.6735589,47.7048957],[8.6763893,47.6980975],[8.6740929,47.6978745],[8.6739308,47.6956321],[8.6696646,47.6936297],[8.6683693,47.6920992],[8.6598581,47.691338],[8.6596726,47.6894936],[8.6640367,47.6881592],[8.6634535,47.6858858]]],[[[8.563066,47.5994489],[8.5666231,47.5972086],[8.5697286,47.5981678],[8.5720495,47.5978753],[8.5745953,47.5956648],[8.5770124,47.5967654],[8.582557,47.5961263],[8.5842585,47.5997973],[8.5877312,47.6017238],[8.5911344,47.6022747],[8.592548,47.6061284],[8.595746,47.6055872],[8.5943282,47.6014281],[8.5950095,47.5976191],[8.5921652,47.5953679],[8.5854472,47.5939158],[8.5800463,47.5911716],[8.578113,47.5890225],[8.5770944,47.5859105],[8.5782194,47.5816375],[8.5800884,47.5784735],[8.5786922,47.5761114],[8.5749816,47.5757101],[8.5720082,47.5743747],[8.5696789,47.5698964],[8.5692155,47.5663718],[8.5675225,47.562578],[8.5607346,47.5546543],[8.5569113,47.5523748],[8.5542602,47.5530295],[8.5515282,47.555404],[8.5505894,47.557147],[8.5497209,47.5618698],[8.5483133,47.5643685],[8.5448794,47.5678295],[8.5415833,47.5699279],[8.5462056,47.5713115],[8.5463772,47.5741656],[8.5444662,47.5749452],[8.5393246,47.5744],[8.5350849,47.5752293],[8.5375384,47.5779629],[8.535758,47.5807667],[8.5335479,47.5821584],[8.5369915,47.5834328],[8.5353357,47.5871183],[8.5370196,47.5873728],[8.5409644,47.5900752],[8.5475879,47.592735],[8.5504394,47.5922651],[8.5558522,47.5946272],[8.5557679,47.5964208],[8.5603394,47.5991786],[8.563066,47.5994489]]],[[[8.8753957,47.654733],[8.8724425,47.653965],[8.8670016,47.6560242],[8.8652845,47.6560709],[8.8606371,47.6539496],[8.8579336,47.6500858],[8.8516764,47.6511899],[8.8493672,47.6510116],[8.8462658,47.6522661],[8.8545607,47.6606775],[8.8471318,47.6632461],[8.8423408,47.6641575],[8.8406742,47.6651282],[8.8391611,47.6693159],[8.8353908,47.6722253],[8.8295586,47.6747458],[8.8264401,47.6749889],[8.8168889,47.6778064],[8.8097709,47.6769002],[8.805236,47.6781894],[8.8015899,47.6778438],[8.7960128,47.6753913],[8.793514,47.6801129],[8.7959601,47.6844289],[8.7968176,47.6881026],[8.8000898,47.6918582],[8.8029552,47.6921729],[8.8053759,47.6915451],[8.810095,47.6933617],[8.8063188,47.6965194],[8.8040632,47.696337],[8.7975844,47.6972156],[8.7985231,47.7004463],[8.7968233,47.7027524],[8.7907487,47.705294],[8.7874043,47.7045861],[8.7798118,47.7056767],[8.7742216,47.7059282],[8.7693763,47.7068542],[8.7696594,47.7091704],[8.7714788,47.7100771],[8.7714209,47.7119894],[8.7728381,47.7132349],[8.770282,47.715037],[8.7696972,47.7178374],[8.7746058,47.7191318],[8.7765231,47.7207627],[8.7762975,47.7227324],[8.7807117,47.7216017],[8.7836245,47.7261659],[8.7865918,47.7263443],[8.7918,47.7288066],[8.7991824,47.7271267],[8.7991063,47.7288852],[8.7964646,47.7345564],[8.7994297,47.7361322],[8.807567,47.7371446],[8.8070965,47.7346898],[8.8085301,47.7312185],[8.8121626,47.7304315],[8.8097804,47.7275622],[8.8056084,47.7259078],[8.8084621,47.7246203],[8.8126914,47.7237743],[8.8164804,47.7202473],[8.8185167,47.7176522],[8.8253627,47.7187162],[8.8255404,47.717033],[8.8189264,47.713307],[8.8223169,47.7124217],[8.8237516,47.7109853],[8.8300722,47.7118797],[8.8335759,47.7145665],[8.8406644,47.712814],[8.8457497,47.7111645],[8.845849,47.708565],[8.8483278,47.7033771],[8.8546871,47.704881],[8.8610173,47.7041384],[8.8641556,47.7052392],[8.8682806,47.7053867],[8.8729384,47.7037909],[8.8709848,47.7014931],[8.8737373,47.6981914],[8.8761329,47.6968564],[8.8744386,47.6943009],[8.8710399,47.6934313],[8.8660398,47.6938231],[8.8662918,47.6963886],[8.8632138,47.698437],[8.8601932,47.6965119],[8.858066,47.6987507],[8.8558741,47.6972902],[8.8518314,47.6967175],[8.8508033,47.6946685],[8.8547357,47.6945077],[8.8577084,47.6926565],[8.8563401,47.6891008],[8.8534077,47.6878372],[8.8510749,47.6855954],[8.8505313,47.681177],[8.8562531,47.6802771],[8.8605587,47.6803123],[8.8678732,47.675897],[8.8706432,47.671705],[8.873426,47.6702187],[8.8761541,47.6604498],[8.8755091,47.6603619],[8.8753957,47.654733]]]]},"properties":{"ID_0":223,"ISO":"CH-SH","NAME_0":"Switzerland","ID_1":17,"NAME_1":"Schaffhausen","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Schaffhouse|Schaffusa|Sciaffusa"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.861516,47.1655892],[6.858623,47.1655028],[6.8536483,47.1666753],[6.848443,47.1657673],[6.8444721,47.1664314],[6.8422193,47.1682061],[6.8407932,47.1706894],[6.8424003,47.1720668],[6.8536267,47.1767786],[6.8633842,47.1799969],[6.8653142,47.1817156],[6.8673821,47.1853509],[6.8715911,47.1848419],[6.8739978,47.1854493],[6.8737003,47.1902371],[6.8751431,47.1930404],[6.8784602,47.1958306],[6.8804605,47.2005177],[6.8831362,47.2013564],[6.88623,47.2038782],[6.8894066,47.2048073],[6.8918159,47.2070657],[6.8987455,47.2100587],[6.9010524,47.2117993],[6.9067708,47.2143193],[6.9097476,47.2177772],[6.9143678,47.2183561],[6.921344,47.2205078],[6.9239617,47.2221872],[6.9269478,47.2253901],[6.9272562,47.2280513],[6.9309787,47.2301329],[6.9356734,47.2309173],[6.939663,47.2310291],[6.9427017,47.2344127],[6.9429788,47.2378284],[6.947276,47.239059],[6.9518223,47.2418393],[6.9547415,47.2425353],[6.9556667,47.2437751],[6.9520967,47.2472141],[6.9473441,47.2505003],[6.9466856,47.2542754],[6.949356,47.2564852],[6.9510252,47.2596683],[6.9513022,47.2630843],[6.9499747,47.2656113],[6.9519332,47.2698429],[6.9451121,47.2789163],[6.9453473,47.280915],[6.9410597,47.2848256],[6.9407057,47.2862388],[6.9440422,47.2880819],[6.9487743,47.2914257],[6.9524563,47.2921357],[6.9563925,47.2922225],[6.9621341,47.2913334],[6.9686785,47.2924802],[6.9734589,47.2911253],[6.9761809,47.2932599],[6.9766217,47.2962336],[6.9838154,47.2953133],[6.9881088,47.2964887],[6.9907065,47.2965214],[6.9939381,47.2955428],[6.996388,47.2956997],[6.9990564,47.2972571],[7.0033774,47.301278],[7.0074521,47.3010127],[7.0097526,47.3027581],[7.0109768,47.3080339],[7.01341,47.3092023],[7.0161976,47.3146772],[7.0153822,47.3169112],[7.0129868,47.3201892],[7.0092902,47.3202978],[7.0099836,47.3245152],[7.0162366,47.325356],[7.0261372,47.326153],[7.0307415,47.326916],[7.033841,47.3282986],[7.0438651,47.3263895],[7.0456146,47.3264816],[7.0569839,47.3343682],[7.0535987,47.3348851],[7.0529324,47.336618],[7.0551252,47.3386638],[7.0597889,47.3397001],[7.0623707,47.3440342],[7.0564856,47.3469963],[7.0498342,47.3477181],[7.0504788,47.3499311],[7.0527706,47.3513419],[7.0516315,47.3547757],[7.0518237,47.3568061],[7.0498951,47.3595594],[7.0498885,47.3613968],[7.0430849,47.3642427],[7.0347968,47.3633335],[7.0342665,47.3646069],[7.0340735,47.369656],[7.0294092,47.3690864],[7.0202219,47.3703231],[7.0181751,47.3726166],[7.0154774,47.372915],[7.0131076,47.3714231],[7.0118024,47.372647],[7.0074054,47.3680868],[7.0043822,47.3671432],[6.9987984,47.3644774],[6.9950018,47.363256],[6.9874874,47.3637844],[6.9824777,47.3632544],[6.9746009,47.3601278],[6.9718773,47.3607592],[6.9658968,47.3592525],[6.9641765,47.3603039],[6.9610507,47.3593014],[6.9564623,47.359118],[6.9521066,47.3599803],[6.9460322,47.3591862],[6.9427853,47.3576803],[6.9351095,47.3575511],[6.9331049,47.3584469],[6.9240461,47.3551794],[6.9191252,47.3552816],[6.9155288,47.3574728],[6.9028579,47.3593713],[6.8993983,47.3577343],[6.895648,47.3586145],[6.8948175,47.356653],[6.8830279,47.3524105],[6.8793259,47.3525796],[6.879392,47.3577742],[6.8824508,47.3611821],[6.8837784,47.3656429],[6.8849398,47.3674026],[6.883607,47.3728593],[6.8888589,47.3767121],[6.8957778,47.3798987],[6.8967755,47.382197],[6.9038562,47.3826183],[6.9101682,47.3850396],[6.9120343,47.3861685],[6.9137124,47.3893113],[6.9114045,47.3906415],[6.9115485,47.3937511],[6.9103024,47.3965174],[6.9154465,47.3971466],[6.9155056,47.3991376],[6.917289,47.4026922],[6.9171411,47.4053478],[6.9196589,47.4066429],[6.9205758,47.4050795],[6.9251976,47.4058682],[6.9283177,47.4056534],[6.9384103,47.4060862],[6.940867,47.4115787],[6.9415359,47.4156591],[6.9411251,47.4221271],[6.9401052,47.4310395],[6.9402723,47.4333274],[6.9418841,47.4339108],[6.9470131,47.4340014],[6.9549045,47.4352546],[6.957514,47.4338106],[6.9637945,47.435811],[6.9662306,47.4376469],[6.9702926,47.4471132],[6.9734246,47.447176],[6.9809517,47.4492188],[6.9840368,47.4481697],[6.9901377,47.4479687],[6.995865,47.4496368],[6.9990501,47.4525001],[7.0021261,47.4541577],[7.0014085,47.4559538],[6.9974657,47.4564784],[6.9982341,47.4597642],[7.0012664,47.4619523],[6.9997498,47.4649713],[7.0004537,47.4672198],[6.9916994,47.4663893],[6.9908281,47.4675965],[6.993155,47.4707109],[6.9925278,47.4716336],[6.988291,47.473092],[6.9864353,47.4763206],[6.9885983,47.4809982],[6.9886439,47.4868881],[6.9860244,47.49334],[6.98828,47.4948503],[6.9958523,47.4972874],[7.0037401,47.5007474],[7.0201455,47.5043887],[7.0249278,47.5042837],[7.0276403,47.5013103],[7.0290847,47.5015309],[7.034197,47.4991792],[7.0366426,47.4991952],[7.0369327,47.497506],[7.0444926,47.498449],[7.049342,47.496078],[7.0524081,47.4951244],[7.0607354,47.4953933],[7.0628135,47.4945877],[7.0720797,47.4923848],[7.0725515,47.4897557],[7.0748517,47.4881832],[7.08137,47.4897523],[7.0914306,47.4947124],[7.0942428,47.4954372],[7.100047,47.4943109],[7.1125326,47.4951214],[7.1157114,47.4962927],[7.1265326,47.5026554],[7.1279794,47.5039313],[7.1302524,47.5029764],[7.1391517,47.5017999],[7.1524332,47.4963045],[7.155464,47.4931263],[7.1593348,47.4906669],[7.1622737,47.4900176],[7.1660862,47.4901078],[7.1673965,47.4894006],[7.1730741,47.489746],[7.1757952,47.4903875],[7.1850652,47.4911891],[7.1953242,47.4935333],[7.2009849,47.4942809],[7.2029571,47.4913867],[7.1942374,47.4889132],[7.1909086,47.4885553],[7.1903552,47.4861687],[7.1869034,47.482513],[7.1846489,47.4772257],[7.1774134,47.4676163],[7.1790413,47.4656339],[7.1788891,47.4608011],[7.1782927,47.4585288],[7.1745314,47.4501669],[7.1702182,47.4429793],[7.1755889,47.4429504],[7.1925093,47.4389997],[7.1950883,47.4374205],[7.1957869,47.435391],[7.1999041,47.4351303],[7.2055806,47.4354138],[7.2066356,47.4347812],[7.212075,47.4366417],[7.2204351,47.4386016],[7.2230441,47.4397512],[7.2289392,47.4399405],[7.2333529,47.4386504],[7.2354623,47.4371085],[7.2388481,47.4332815],[7.2375178,47.4305803],[7.239033,47.4285291],[7.2438125,47.4278083],[7.2457612,47.4265239],[7.2455018,47.4247105],[7.2465183,47.4203421],[7.2505238,47.4226845],[7.2550971,47.4244204],[7.2696776,47.4270338],[7.273749,47.429843],[7.2799828,47.4327629],[7.2814124,47.4345474],[7.2847261,47.4351933],[7.2886443,47.4347569],[7.2926861,47.4333519],[7.2958619,47.435689],[7.3004547,47.4364663],[7.3021638,47.438439],[7.3068671,47.4389136],[7.3125206,47.4379572],[7.3143071,47.438541],[7.3234165,47.4386576],[7.3272903,47.4400151],[7.3280016,47.4377964],[7.3252806,47.4348918],[7.3262162,47.4320858],[7.3321641,47.4302245],[7.3379223,47.4301083],[7.3409252,47.4291233],[7.3410805,47.426974],[7.3436887,47.4259022],[7.3441382,47.4244676],[7.3485303,47.4227466],[7.3495132,47.4212927],[7.3520926,47.4206877],[7.3554264,47.4187274],[7.3579916,47.4181529],[7.3587199,47.4151539],[7.3684509,47.4139392],[7.3759458,47.4140995],[7.3794744,47.4127753],[7.3840549,47.4123602],[7.3845747,47.410338],[7.3886939,47.4030191],[7.3952603,47.4034421],[7.3959908,47.4030492],[7.3989356,47.3968391],[7.4013998,47.3967613],[7.4058749,47.3951477],[7.4127272,47.3948081],[7.4138853,47.3933645],[7.4135853,47.3894364],[7.4162762,47.3847888],[7.4116926,47.3805724],[7.42495,47.3795205],[7.4336787,47.3793963],[7.4373242,47.3808885],[7.4401674,47.3802704],[7.444986,47.3783176],[7.446801,47.3766032],[7.4528495,47.3745772],[7.4548091,47.3722188],[7.4634937,47.3702566],[7.4681779,47.3701101],[7.4793702,47.3713424],[7.487148,47.3697273],[7.4944523,47.3706482],[7.4982954,47.3717172],[7.5103967,47.3722335],[7.5237238,47.3720704],[7.524635,47.3698097],[7.5217115,47.3662205],[7.5217459,47.3651488],[7.5279779,47.362818],[7.5332341,47.3619591],[7.5338199,47.3596555],[7.5396485,47.3601134],[7.5414488,47.355735],[7.5368643,47.3501897],[7.5390608,47.3475547],[7.544943,47.3474408],[7.552201,47.3453097],[7.5499716,47.342943],[7.5499572,47.3408572],[7.5452729,47.3395917],[7.5344709,47.334546],[7.5335028,47.3312332],[7.5303402,47.327553],[7.5277559,47.3226788],[7.531473,47.3211007],[7.5476098,47.3215773],[7.554159,47.3232509],[7.5583388,47.3223634],[7.5506352,47.3198537],[7.5299635,47.316315],[7.5220131,47.3136861],[7.5148783,47.3096052],[7.5099252,47.3073127],[7.5028909,47.3051981],[7.4960402,47.3021174],[7.4949094,47.3027309],[7.4902704,47.3020163],[7.4862054,47.3021609],[7.4816576,47.3042003],[7.4779987,47.3051965],[7.4760439,47.307074],[7.4674827,47.3073194],[7.4595272,47.3066444],[7.4480375,47.3083274],[7.4417798,47.3086787],[7.4288017,47.3072405],[7.425902,47.3077696],[7.4216885,47.3070626],[7.4198431,47.3086437],[7.4130067,47.309982],[7.4117172,47.3133141],[7.4058427,47.3126308],[7.3933327,47.3135093],[7.3905323,47.3130993],[7.3803957,47.3140446],[7.3786264,47.3149909],[7.3746341,47.3135123],[7.3651425,47.3092991],[7.3603204,47.3086478],[7.3457308,47.3053208],[7.337508,47.3059089],[7.3325378,47.301634],[7.331709,47.2996346],[7.322653,47.2955215],[7.3169619,47.2903781],[7.3105901,47.2892767],[7.3069118,47.2879165],[7.3016665,47.2875255],[7.2917319,47.2858005],[7.2861749,47.2858927],[7.284212,47.2850777],[7.2777859,47.2841647],[7.2679051,47.2858056],[7.2629802,47.2870844],[7.2583031,47.2867815],[7.2582594,47.2855946],[7.2529301,47.2851728],[7.2426113,47.2852229],[7.2394986,47.2857315],[7.2324775,47.2881859],[7.2234501,47.2881389],[7.2148714,47.2899708],[7.2101827,47.288834],[7.2062062,47.291983],[7.2091748,47.294704],[7.2059944,47.2954654],[7.1945608,47.2958103],[7.1877668,47.2947881],[7.1853736,47.2952215],[7.1763886,47.2945009],[7.1741674,47.2940465],[7.1688194,47.294496],[7.1637832,47.2940525],[7.1633839,47.293082],[7.1680985,47.2916431],[7.1685086,47.290708],[7.1647256,47.2889551],[7.1652035,47.2863518],[7.1690122,47.2859881],[7.170234,47.2839457],[7.1682048,47.2826673],[7.1679779,47.2797778],[7.1686737,47.2747245],[7.1604077,47.2720563],[7.1555493,47.2714475],[7.1487334,47.2690362],[7.1456486,47.2653157],[7.1474477,47.2616467],[7.1463836,47.259961],[7.1431017,47.2594775],[7.1427657,47.2557428],[7.1482373,47.2562418],[7.1514658,47.2555056],[7.1492007,47.2538523],[7.1532394,47.2509831],[7.1557833,47.2475406],[7.1535517,47.2476528],[7.1510458,47.2465575],[7.1437912,47.2445568],[7.140213,47.2441791],[7.1397549,47.2431775],[7.1338676,47.2444067],[7.1274785,47.2449907],[7.1216571,47.2443312],[7.1114843,47.2419018],[7.1033551,47.2431206],[7.0998121,47.2415687],[7.0964401,47.238604],[7.0962407,47.237045],[7.0884297,47.2370031],[7.0857411,47.2399777],[7.0888346,47.2415783],[7.0851819,47.2453775],[7.0818396,47.2434093],[7.079596,47.2434018],[7.0795219,47.2477588],[7.0685498,47.244075],[7.0616484,47.2432481],[7.0572239,47.2410319],[7.0562899,47.2378124],[7.0586698,47.2311839],[7.0551519,47.2293186],[7.0473454,47.2270529],[7.0436674,47.2230174],[7.0442823,47.2218465],[7.0367817,47.2133155],[7.0302879,47.2022764],[7.0234483,47.1956998],[7.0091779,47.1938515],[6.9964251,47.1933278],[6.9945358,47.187809],[6.9897501,47.1829864],[6.9885582,47.180129],[6.9855672,47.1765534],[6.9807662,47.1742802],[6.977029,47.1749333],[6.970516,47.1813295],[6.9603909,47.1820398],[6.956114,47.1806492],[6.9544324,47.1824868],[6.9554144,47.183886],[6.9526293,47.1857001],[6.9521605,47.1873444],[6.9414289,47.1845235],[6.9401567,47.1816279],[6.9382004,47.175153],[6.9298838,47.1693529],[6.9138764,47.1626737],[6.9097638,47.1593884],[6.9060894,47.1571532],[6.8957729,47.1542012],[6.8923883,47.1537968],[6.887622,47.1514084],[6.8837139,47.1503973],[6.8824835,47.1531484],[6.8796279,47.1542611],[6.8799083,47.1584383],[6.8769069,47.1608592],[6.8719913,47.1741018],[6.8633205,47.1684387],[6.861516,47.1655892]]]},"properties":{"ID_0":223,"ISO":"CH-JU","NAME_0":"Switzerland","ID_1":11,"NAME_1":"Jura","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Giura"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[7.2344584,46.9360069],[7.2341999,46.9293882],[7.2308033,46.9295023],[7.2284638,46.927739],[7.2255002,46.9272428],[7.2185411,46.9243414],[7.2168517,46.9267939],[7.215366,46.9307478],[7.217402,46.9330727],[7.223061,46.9351619],[7.2261195,46.9355742],[7.2293836,46.9368953],[7.2282003,46.9388105],[7.2309387,46.9391504],[7.2347728,46.9382743],[7.2344584,46.9360069]]],[[[6.7844495,46.7354226],[6.7827056,46.7329827],[6.7781894,46.7303611],[6.7768074,46.7286933],[6.7773991,46.7261143],[6.7706665,46.720654],[6.7624116,46.7173696],[6.761773,46.7187712],[6.7585574,46.7219724],[6.7602628,46.7230936],[6.7578259,46.7260693],[6.7517331,46.7282234],[6.7487034,46.7318004],[6.7526548,46.7365589],[6.7590494,46.73747],[6.7597049,46.739084],[6.7652826,46.7430248],[6.7682742,46.7444826],[6.7730139,46.7513623],[6.7761098,46.7493939],[6.7788309,46.7511397],[6.7828894,46.7487838],[6.7862669,46.7476073],[6.7849262,46.7457949],[6.7841215,46.7388244],[6.7844495,46.7354226]]],[[[6.8461473,46.7713278],[6.849065,46.7754175],[6.8521406,46.7743625],[6.8512665,46.7722877],[6.854426,46.7720228],[6.8562161,46.7705682],[6.8572264,46.7677498],[6.8601484,46.7664007],[6.8595957,46.7637657],[6.8606254,46.7629267],[6.8654046,46.7625678],[6.8696219,46.758518],[6.8745026,46.7573053],[6.8769959,46.7558774],[6.8757558,46.753895],[6.8801014,46.7518223],[6.8820937,46.7498031],[6.8661651,46.7330173],[6.8668506,46.7308684],[6.8654108,46.7293255],[6.8679289,46.7284171],[6.8645302,46.7252043],[6.8618707,46.7245832],[6.8572085,46.7260181],[6.8520361,46.7264092],[6.8441825,46.7292124],[6.8384337,46.732512],[6.8351806,46.7333472],[6.8326854,46.7349727],[6.8216693,46.7343234],[6.8174872,46.7332838],[6.8118429,46.7285237],[6.8095923,46.7273755],[6.8044945,46.7274041],[6.8018448,46.7261907],[6.7998091,46.7268119],[6.7929825,46.7255549],[6.7912211,46.7271043],[6.788464,46.7279576],[6.7879133,46.7293593],[6.7910649,46.7309813],[6.7935148,46.7357377],[6.7981157,46.7340572],[6.8012548,46.7351337],[6.804012,46.7368623],[6.8059504,46.7353916],[6.8105012,46.737441],[6.8145937,46.7372774],[6.8163833,46.7386114],[6.8154799,46.7403962],[6.8210575,46.7444328],[6.8236202,46.7480882],[6.8270657,46.7503489],[6.8290733,46.7530798],[6.8282209,46.7544737],[6.8293254,46.7560691],[6.8318376,46.7572512],[6.8366519,46.7610357],[6.8406499,46.7626468],[6.8442698,46.7650595],[6.8483417,46.7703146],[6.8461473,46.7713278]]],[[[6.8658539,46.9094778],[6.8817073,46.8957484],[6.891714,46.8867247],[6.8946496,46.8849954],[6.9010725,46.8821285],[6.9036605,46.8794257],[6.9053351,46.8803311],[6.9069566,46.8786201],[6.9107988,46.8806227],[6.9210072,46.8713286],[6.915836,46.8695164],[6.9165534,46.8687766],[6.9117666,46.8671469],[6.9096129,46.8694908],[6.9049699,46.8684109],[6.9007587,46.8663682],[6.8984683,46.8670405],[6.8965699,46.8659053],[6.8918722,46.8649556],[6.8964664,46.8612291],[6.9128723,46.8659331],[6.915682,46.8630406],[6.9177791,46.8631938],[6.9199349,46.8604353],[6.9223664,46.8590625],[6.924158,46.8594621],[6.9271506,46.854539],[6.9288504,46.8549393],[6.9306269,46.8532403],[6.920406,46.8480741],[6.9101726,46.8387639],[6.907402,46.8341923],[6.9069703,46.8285666],[6.9048811,46.8251248],[6.9076462,46.8199046],[6.9076774,46.8177846],[6.9108001,46.8125424],[6.9079017,46.8090237],[6.9049286,46.806476],[6.9113484,46.8031322],[6.9158064,46.8066547],[6.9148024,46.80741],[6.9200006,46.8105682],[6.922474,46.8086891],[6.9274232,46.8090536],[6.9281561,46.8075373],[6.931462,46.8056899],[6.9306056,46.8030887],[6.9276538,46.801636],[6.9254499,46.7982445],[6.9216746,46.7971552],[6.9208339,46.7947825],[6.9164525,46.7876924],[6.9172181,46.7853218],[6.9159628,46.7835259],[6.9121992,46.7813566],[6.910997,46.779708],[6.9083369,46.7820149],[6.9050533,46.7815435],[6.8991251,46.7815917],[6.89983,46.7800573],[6.8950216,46.7791026],[6.8942062,46.7772937],[6.8881335,46.7782698],[6.879551,46.7752984],[6.871808,46.7781411],[6.8693378,46.7796244],[6.8648622,46.7805646],[6.86189,46.7831679],[6.8638017,46.7852829],[6.8590959,46.7880013],[6.849228,46.7840495],[6.8504911,46.7823491],[6.848524,46.7809118],[6.8432122,46.7787163],[6.8396723,46.7809477],[6.8371766,46.7781726],[6.8363333,46.776095],[6.8330846,46.7745389],[6.8280685,46.7766252],[6.8256351,46.7729161],[6.8217056,46.7762899],[6.8184094,46.7777143],[6.8154204,46.7778734],[6.8124258,46.7789268],[6.8134455,46.7802669],[6.8088791,46.7835001],[6.8046575,46.7856418],[6.7979408,46.7828742],[6.7930886,46.7856719],[6.7830155,46.7933832],[6.7771338,46.789108],[6.7759875,46.7897489],[6.7785838,46.7938861],[6.7873048,46.7996184],[6.7840749,46.8031317],[6.7788139,46.8005697],[6.7769606,46.8024261],[6.7674248,46.8086653],[6.7423106,46.8274523],[6.7800504,46.8526396],[6.8041214,46.868473],[6.8448096,46.8955619],[6.8658539,46.9094778]]],[[[7.2370801,46.5537934],[7.2357436,46.5537652],[7.2327686,46.5515261],[7.2308684,46.5513039],[7.2254276,46.5492337],[7.2225353,46.5469451],[7.2217056,46.5448067],[7.2181088,46.5421145],[7.216882,46.5404919],[7.2099203,46.5341535],[7.2076536,46.5329056],[7.201075,46.5400003],[7.2008133,46.5416919],[7.1934221,46.5461361],[7.1873278,46.5425883],[7.1823391,46.5383699],[7.1808169,46.5380067],[7.174205,46.5340882],[7.1670947,46.5310119],[7.1634618,46.5285459],[7.1589323,46.5269194],[7.1528526,46.5273322],[7.1483836,46.5284754],[7.1453015,46.5270143],[7.1436957,46.524748],[7.1431837,46.5218286],[7.1404421,46.5198767],[7.1400504,46.5168789],[7.1370379,46.51308],[7.1362354,46.5086078],[7.130955,46.5046637],[7.1265894,46.5027711],[7.1227892,46.4986902],[7.1180972,46.497546],[7.1126797,46.4953437],[7.1101703,46.4948003],[7.1066793,46.4922223],[7.106161,46.4902338],[7.1029981,46.4878594],[7.100368,46.4869874],[7.0980222,46.4884061],[7.0889065,46.486931],[7.0869577,46.4877887],[7.082429,46.4877745],[7.077589,46.4888329],[7.0724007,46.4864002],[7.070031,46.4869878],[7.065826,46.4890399],[7.0610898,46.4872734],[7.0590933,46.4852241],[7.0544303,46.4827456],[7.0509224,46.4818233],[7.0477495,46.4789761],[7.0440669,46.4765822],[7.0385193,46.4743174],[7.0284593,46.4668151],[7.026774,46.4641732],[7.0248667,46.4633297],[7.0202363,46.4594445],[7.0211931,46.4585934],[7.019808,46.4525611],[7.017202,46.4479185],[7.0121502,46.4465593],[7.0081292,46.4448799],[7.002506,46.443437],[6.9990729,46.4415347],[6.9928226,46.4388835],[6.9874565,46.4379357],[6.9839428,46.4379936],[6.9847021,46.4405334],[6.988226,46.4439659],[6.9921162,46.448794],[6.9894121,46.4531282],[6.9843702,46.4568144],[6.9826995,46.4589037],[6.9801608,46.4589564],[6.9789686,46.4613805],[6.9789491,46.4667329],[6.978201,46.4674495],[6.9789183,46.4703581],[6.9778291,46.4728904],[6.9813247,46.4753879],[6.9758142,46.4783959],[6.9737396,46.4814289],[6.9739226,46.4827111],[6.9724079,46.4855073],[6.972785,46.4898813],[6.9655927,46.4931592],[6.9634185,46.4962444],[6.9559087,46.4997324],[6.9542021,46.5019078],[6.9507056,46.5026067],[6.9478648,46.5013039],[6.9421015,46.5018719],[6.9362165,46.5010226],[6.9333003,46.5018908],[6.9307694,46.50472],[6.9275895,46.5046703],[6.9250088,46.5076708],[6.9198519,46.5087846],[6.9167001,46.5105527],[6.9134397,46.5110746],[6.9126002,46.512677],[6.9100668,46.5123469],[6.9041618,46.5131921],[6.9014186,46.5123305],[6.8997441,46.510392],[6.896853,46.5088719],[6.8949922,46.5092741],[6.8960261,46.5129585],[6.8976696,46.5148252],[6.8971793,46.5191924],[6.895309,46.5192776],[6.8816774,46.5125716],[6.8796157,46.510262],[6.8743185,46.5063545],[6.8724362,46.5043069],[6.8663412,46.5007886],[6.8647492,46.4985114],[6.8627644,46.4938442],[6.8572886,46.4930522],[6.8489067,46.4933714],[6.8455432,46.4966656],[6.8429414,46.4963228],[6.837838,46.4994865],[6.8323946,46.5054402],[6.8321985,46.5074057],[6.8303442,46.5124625],[6.8247633,46.5121845],[6.822626,46.5141079],[6.8181049,46.5165034],[6.8153365,46.5213924],[6.8108786,46.5251265],[6.8132756,46.5272031],[6.8177174,46.5325728],[6.8182773,46.5364942],[6.8209715,46.5379848],[6.8211383,46.5390896],[6.8248039,46.5416018],[6.8251865,46.5380134],[6.8362356,46.5377349],[6.8444554,46.5389596],[6.8508114,46.5410925],[6.8550051,46.541436],[6.8567928,46.5382892],[6.8563129,46.5373044],[6.8599942,46.5360777],[6.858502,46.5333702],[6.8589689,46.5308641],[6.861957,46.531086],[6.8624603,46.535167],[6.8649848,46.5389569],[6.8679236,46.5412455],[6.8692414,46.5433409],[6.8741443,46.5456238],[6.8755634,46.5475563],[6.8848687,46.5547137],[6.8888586,46.5583456],[6.8907168,46.5578338],[6.8943429,46.5598161],[6.8970768,46.5605346],[6.8991736,46.5596737],[6.9022788,46.5613879],[6.8996626,46.5634837],[6.8991825,46.5667085],[6.9016508,46.5697244],[6.897978,46.5705923],[6.8953811,46.5691636],[6.8902933,46.5674551],[6.8881682,46.5676981],[6.8864511,46.5650221],[6.8863583,46.5628312],[6.8845046,46.5619508],[6.8794338,46.5671286],[6.8744622,46.5649682],[6.8702654,46.5721007],[6.8655392,46.577248],[6.8599639,46.5798658],[6.8574921,46.5800975],[6.8526159,46.5819747],[6.8514341,46.5810682],[6.848984,46.5830166],[6.8463385,46.5839124],[6.8453213,46.582759],[6.842283,46.5823347],[6.839818,46.5789601],[6.8369146,46.5774848],[6.8348503,46.575334],[6.8292679,46.5763693],[6.8269284,46.5779646],[6.8238032,46.5774477],[6.8209682,46.5833223],[6.8141065,46.5856653],[6.8140889,46.5838466],[6.8115473,46.5811116],[6.8132144,46.5784089],[6.8093977,46.5788466],[6.8079401,46.5776062],[6.8048929,46.5779243],[6.8025615,46.5749146],[6.7994856,46.5740671],[6.7949063,46.5753149],[6.7962569,46.5772839],[6.7961137,46.5793163],[6.7989409,46.5820535],[6.7994805,46.5855877],[6.798513,46.5860399],[6.8012367,46.5925005],[6.8001987,46.5936172],[6.7983334,46.5998637],[6.8019459,46.6007388],[6.8038989,46.6093963],[6.8018491,46.6155535],[6.8029648,46.6161525],[6.8025836,46.6188406],[6.803462,46.6223694],[6.8019683,46.6250683],[6.8022587,46.6274945],[6.800433,46.629913],[6.7983753,46.630157],[6.7969217,46.6331413],[6.7981968,46.6356446],[6.7989453,46.6395948],[6.8017101,46.6442074],[6.8036721,46.6456712],[6.7987887,46.6478098],[6.7989442,46.6491728],[6.8020339,46.6488941],[6.8069443,46.6506044],[6.8134382,46.6495331],[6.8145808,46.6474713],[6.818509,46.6477989],[6.8172869,46.6492337],[6.8208867,46.6517925],[6.8259144,46.658316],[6.8289146,46.6605559],[6.8313923,46.6598261],[6.8333886,46.6622278],[6.8362709,46.6614708],[6.8383801,46.6625735],[6.8441189,46.6608414],[6.8421703,46.6588362],[6.8452204,46.6583877],[6.8535257,46.6554594],[6.8566735,46.6573636],[6.8593903,46.6599495],[6.8630236,46.6583841],[6.8658758,46.6589395],[6.8680103,46.6607642],[6.8683388,46.6629667],[6.8643991,46.6647609],[6.8675089,46.6693211],[6.8717129,46.6732507],[6.8640073,46.6769094],[6.8627672,46.681018],[6.8684066,46.6857263],[6.8731252,46.6833222],[6.8753124,46.6848412],[6.8810118,46.6900528],[6.883696,46.6900095],[6.8879029,46.6943244],[6.889598,46.6938822],[6.8916144,46.6960713],[6.8915658,46.6974528],[6.8944621,46.7012807],[6.8923121,46.7025811],[6.8944252,46.7055537],[6.8965772,46.7063459],[6.8990514,46.7096331],[6.9037895,46.7133899],[6.9070416,46.7148393],[6.9113897,46.7179074],[6.9180546,46.7190991],[6.9200087,46.720579],[6.9221469,46.72355],[6.9304007,46.7301744],[6.9355937,46.733222],[6.9366005,46.7344099],[6.9350123,46.7358957],[6.936355,46.7383818],[6.9395351,46.7416038],[6.9411079,46.7451393],[6.939564,46.745711],[6.9379664,46.7494706],[6.9329079,46.7519747],[6.9308795,46.7540446],[6.9292497,46.7540636],[6.9242863,46.7522298],[6.9200214,46.7513026],[6.9166838,46.754614],[6.9147531,46.7532678],[6.9118168,46.7545881],[6.9082457,46.7572162],[6.911589,46.7610312],[6.9144348,46.7627257],[6.9201146,46.7598576],[6.9229716,46.762005],[6.9276287,46.7665206],[6.9321274,46.7701548],[6.9353166,46.7716153],[6.9312482,46.7725084],[6.9340684,46.7765921],[6.9393295,46.780848],[6.9417719,46.7835331],[6.9457328,46.7845249],[6.9475289,46.7830131],[6.9500723,46.7827119],[6.9516289,46.7852537],[6.9568914,46.7873903],[6.9575769,46.7882892],[6.956882,46.7925549],[6.9559837,46.7934057],[6.9603079,46.7976069],[6.96304,46.7997143],[6.9660016,46.8010759],[6.9666165,46.8026527],[6.9634833,46.8043938],[6.9646923,46.8054513],[6.9577891,46.8112065],[6.9592868,46.8122203],[6.9565109,46.8149343],[6.9595666,46.8175738],[6.9578527,46.818736],[6.9610564,46.8239219],[6.9653291,46.8277508],[6.9682122,46.8269277],[6.9698297,46.82475],[6.9727516,46.8245726],[6.9748248,46.8230163],[6.9793074,46.8229445],[6.9847545,46.8219318],[6.9853965,46.8235086],[6.989697,46.8264042],[6.9896823,46.8281582],[6.9923727,46.8303973],[6.9923637,46.8331702],[6.9878389,46.8341421],[6.9859939,46.8351611],[6.9869873,46.8371754],[6.9830761,46.839823],[6.9859937,46.8400666],[6.9884551,46.8420814],[6.9886556,46.8434924],[6.9844165,46.8467144],[6.9814764,46.8457087],[6.9794679,46.8469432],[6.9804458,46.8482226],[6.9778885,46.849966],[6.9778098,46.851871],[6.9793187,46.8532673],[6.9778141,46.8549557],[6.980585,46.8580151],[6.9769452,46.860525],[6.9792566,46.8656875],[6.9864814,46.8707408],[6.9888965,46.8734577],[6.9806263,46.8818198],[6.977741,46.8842222],[6.9763981,46.8840703],[6.973755,46.8873141],[6.9703542,46.8864646],[6.9710801,46.8851023],[6.966373,46.883397],[6.9605934,46.8824863],[6.9581143,46.8814515],[6.961162,46.8772004],[6.9621631,46.877287],[6.9649301,46.8737249],[6.9643698,46.873191],[6.9694384,46.8673379],[6.9648846,46.8653897],[6.9602308,46.8714412],[6.9579045,46.8707808],[6.953955,46.875389],[6.9505076,46.8757552],[6.9512177,46.8779068],[6.9485969,46.8789713],[6.9457203,46.8830462],[6.9424623,46.8837329],[6.9414606,46.8860832],[6.9383671,46.889966],[6.93601,46.8887861],[6.9331338,46.8925416],[6.9292775,46.8933349],[6.9259194,46.8926682],[6.9236811,46.8949856],[6.9290116,46.8979116],[6.9300164,46.89909],[6.9267686,46.9010545],[6.9214154,46.9055638],[6.8962117,46.9253232],[6.9285398,46.9527101],[6.9606699,46.928447],[6.9649015,46.9243876],[6.9691885,46.9232612],[6.9715337,46.9211899],[6.9742186,46.9211221],[6.9767208,46.9228601],[6.9813046,46.9220936],[6.9855095,46.9204644],[6.9874931,46.9181718],[6.9817686,46.9135839],[6.9844682,46.9119828],[6.9812654,46.909446],[6.9854757,46.9064718],[6.9869302,46.9045934],[6.9913386,46.9017287],[6.9963281,46.8978573],[7.009506,46.8890365],[7.0058564,46.8857413],[7.0047613,46.8855998],[6.9938005,46.8789644],[6.9993344,46.8743273],[7.0084198,46.8731521],[7.0096765,46.8752759],[7.0152912,46.8782494],[7.0161965,46.8807753],[7.0212882,46.8766821],[7.0251836,46.8777929],[7.0255442,46.8766374],[7.030433,46.8752805],[7.0321843,46.8758529],[7.0357519,46.8729947],[7.0345982,46.8722872],[7.0298956,46.8661711],[7.0367003,46.8615753],[7.0396361,46.8605978],[7.0390474,46.8592615],[7.0333357,46.8570579],[7.034098,46.8553182],[7.0297094,46.8526784],[7.0298246,46.8502338],[7.0318903,46.8478043],[7.0331946,46.8487336],[7.0374543,46.845534],[7.0395878,46.8482997],[7.0429168,46.8468863],[7.0472867,46.851614],[7.0490783,46.8548688],[7.0531259,46.8555774],[7.0553272,46.8579803],[7.0565302,46.86038],[7.0603817,46.8644803],[7.0634744,46.8669691],[7.0663503,46.8681898],[7.06625,46.8692993],[7.0689729,46.870715],[7.0710314,46.8734517],[7.0692184,46.8764704],[7.0646688,46.878345],[7.0670282,46.8790275],[7.0662481,46.8806754],[7.0616668,46.8796304],[7.0619621,46.8837702],[7.0645924,46.8860455],[7.0691753,46.8875],[7.0724013,46.8892041],[7.072473,46.8904079],[7.0759413,46.8917263],[7.0772707,46.8939896],[7.0750488,46.8955114],[7.0833048,46.8961188],[7.083742,46.8929378],[7.0907139,46.8918157],[7.0943683,46.8951508],[7.0985314,46.8970964],[7.1038236,46.9002464],[7.1033442,46.9012572],[7.0973657,46.8999507],[7.0945295,46.902557],[7.0908601,46.9038187],[7.0934099,46.90579],[7.0882737,46.9089223],[7.0844698,46.9128503],[7.0598613,46.9365776],[7.0578798,46.9386085],[7.0612938,46.9422706],[7.0604327,46.9496645],[7.0586426,46.9538721],[7.0596141,46.9558126],[7.0586501,46.9582686],[7.0590016,46.9601957],[7.0575492,46.9621431],[7.0596368,46.9630835],[7.0579042,46.9654084],[7.0612977,46.9667647],[7.0602357,46.9687354],[7.0630447,46.9711067],[7.0602711,46.97324],[7.0512536,46.9773783],[7.0403444,46.9795209],[7.0401636,46.9798427],[7.0516755,46.9775714],[7.0577811,46.976872],[7.0860528,46.9762862],[7.0899211,46.9766396],[7.092301,46.9761236],[7.1489197,46.9852754],[7.1541385,46.986498],[7.1560802,46.9860329],[7.1947337,46.9998185],[7.1966728,47.0001363],[7.1963072,47.0021287],[7.2006743,47.0016573],[7.2050905,47.006263],[7.2102439,47.0039452],[7.2129896,47.0068036],[7.2155616,47.0052575],[7.2174409,47.0062758],[7.2232338,46.9992695],[7.2257486,46.9991514],[7.2264228,46.9969712],[7.2222224,46.9931596],[7.2259442,46.9924021],[7.2291654,46.9906792],[7.2348632,46.9867543],[7.2356198,46.9846009],[7.2317418,46.9821562],[7.2282084,46.9783563],[7.2216348,46.9755563],[7.2224681,46.9745377],[7.2168635,46.9727138],[7.2146612,46.9691495],[7.2142222,46.9669235],[7.2074529,46.9675116],[7.2064628,46.9641261],[7.1992976,46.963797],[7.1955169,46.9641555],[7.1945924,46.9613514],[7.1976382,46.9606522],[7.2000053,46.959084],[7.206291,46.9598408],[7.2083052,46.9578068],[7.2110227,46.9565229],[7.2088547,46.9543464],[7.2077586,46.9489934],[7.2101117,46.947808],[7.2095062,46.9418763],[7.2035892,46.940537],[7.2042242,46.9374215],[7.2126837,46.9284531],[7.2113458,46.9278734],[7.2111007,46.9252664],[7.2069194,46.9248056],[7.2068291,46.9219849],[7.2055892,46.9199568],[7.2069902,46.9161722],[7.2059904,46.9126587],[7.2078089,46.9091332],[7.2052725,46.9082575],[7.2043307,46.9063089],[7.1987931,46.9037579],[7.1954986,46.9031344],[7.1891331,46.9010375],[7.1896762,46.9003018],[7.195316,46.8990045],[7.1968748,46.9009531],[7.1999514,46.9024585],[7.2039269,46.9019778],[7.2077587,46.9026367],[7.2124414,46.9017281],[7.2175492,46.8973453],[7.2220855,46.9018254],[7.2240773,46.9029895],[7.2286417,46.9036097],[7.2308956,46.9024001],[7.2320259,46.9002929],[7.2363275,46.8980941],[7.2431438,46.8979159],[7.2443338,46.9003731],[7.2519579,46.8987235],[7.2581501,46.8981551],[7.2622234,46.8966143],[7.2653943,46.8940735],[7.271776,46.8926708],[7.2786468,46.8899821],[7.2817617,46.8895967],[7.2863904,46.8926939],[7.2893795,46.89377],[7.2952965,46.8938564],[7.3018117,46.8923572],[7.307436,46.8916005],[7.3123405,46.8917633],[7.3239111,46.8936259],[7.3275449,46.8934955],[7.3401924,46.890812],[7.3469682,46.8897019],[7.3515126,46.8881997],[7.3535035,46.8863132],[7.3523912,46.876212],[7.3538601,46.8712946],[7.3564481,46.870581],[7.3583839,46.8687956],[7.3579426,46.8651254],[7.359247,46.8631069],[7.3577168,46.8606534],[7.3544358,46.8587528],[7.3516735,46.8550231],[7.3493384,46.8533121],[7.3472641,46.8537531],[7.3452119,46.8523862],[7.3371545,46.8496079],[7.3345021,46.851608],[7.3304466,46.8510953],[7.3266582,46.8514712],[7.3230042,46.8547648],[7.3257565,46.8568061],[7.3279816,46.8563288],[7.3300598,46.8582015],[7.3234617,46.8609523],[7.3208715,46.8615405],[7.3173922,46.860601],[7.3164082,46.8625929],[7.3125783,46.8607273],[7.3120724,46.8555718],[7.3094558,46.8549781],[7.3021525,46.852036],[7.3061266,46.8499905],[7.3075476,46.8470378],[7.3132421,46.8441452],[7.3178392,46.8429681],[7.3193402,46.8418128],[7.3233281,46.8404104],[7.324211,46.8385585],[7.3297467,46.8349153],[7.3293402,46.8339439],[7.331226,46.831767],[7.3302023,46.8296789],[7.325484,46.8279032],[7.3202528,46.8267363],[7.3198133,46.8251515],[7.32089,46.8218942],[7.3207236,46.8201129],[7.3190008,46.8170077],[7.3202765,46.8148952],[7.3174618,46.8138577],[7.3101779,46.8079128],[7.3090323,46.80488],[7.3091681,46.8029192],[7.3079269,46.8015684],[7.3073182,46.7987162],[7.3048374,46.7955379],[7.3015928,46.7928272],[7.303509,46.78887],[7.3020717,46.7863822],[7.3044728,46.783205],[7.3011313,46.7813434],[7.3008113,46.7790541],[7.2963903,46.7772857],[7.2953152,46.7753724],[7.2912843,46.7733408],[7.2930678,46.7713625],[7.2931934,46.7682613],[7.2959264,46.7654692],[7.2988063,46.7651338],[7.3035949,46.7591894],[7.3031553,46.7561596],[7.3033511,46.7513956],[7.304859,46.750255],[7.3041733,46.7471058],[7.3017613,46.7435677],[7.298342,46.7401273],[7.2968491,46.7356457],[7.2963674,46.729798],[7.2970957,46.7264976],[7.3000233,46.7224712],[7.3078452,46.7171732],[7.3101056,46.7181473],[7.3292968,46.7163234],[7.331758,46.7151564],[7.3375142,46.7142801],[7.3406524,46.7146427],[7.3423805,46.7136997],[7.3482674,46.712715],[7.3502055,46.7111873],[7.3503664,46.7087407],[7.349391,46.7055465],[7.3460367,46.7019007],[7.3467219,46.6988608],[7.3597979,46.6980162],[7.3626071,46.6992775],[7.3649011,46.6950511],[7.3686041,46.6926517],[7.3739647,46.6922052],[7.3769317,46.6927196],[7.3791309,46.6900671],[7.3759962,46.6877985],[7.375867,46.6864491],[7.3777658,46.6835717],[7.3730641,46.6803936],[7.3764948,46.6750253],[7.3738184,46.6728379],[7.3710783,46.6694179],[7.3725181,46.6675747],[7.3712162,46.6637508],[7.3718706,46.6628337],[7.3693322,46.6556358],[7.3774703,46.6563601],[7.3660751,46.6489769],[7.3622885,46.647913],[7.3620941,46.6468334],[7.3587672,46.6441774],[7.3576373,46.6399487],[7.3552834,46.641926],[7.3558006,46.6453267],[7.3545576,46.6466931],[7.3513822,46.6474553],[7.3503087,46.6488938],[7.3497415,46.6522217],[7.3475585,46.6530745],[7.3454905,46.6553037],[7.3402384,46.6554972],[7.3340344,46.654709],[7.3307936,46.6552007],[7.3291357,46.6545874],[7.3234514,46.6552564],[7.3209966,46.6546511],[7.3278728,46.6461573],[7.3297497,46.6417064],[7.3268434,46.638735],[7.3207093,46.6368577],[7.3132658,46.6366248],[7.3124688,46.6304769],[7.3121255,46.6216998],[7.3177989,46.6185575],[7.3182556,46.6161496],[7.3162011,46.6093714],[7.3147859,46.6004192],[7.3207037,46.5918347],[7.3151352,46.5903985],[7.3125398,46.5891708],[7.3108019,46.5854281],[7.3080479,46.5813188],[7.3035488,46.5797794],[7.29829,46.5792091],[7.2905772,46.5811354],[7.283671,46.5837822],[7.2813586,46.5841108],[7.2712207,46.5764582],[7.2666571,46.5715622],[7.2638506,46.5675155],[7.258599,46.5622925],[7.2550859,46.559885],[7.2470526,46.5562285],[7.2404746,46.5542381],[7.2370801,46.5537934]],[[7.1357931,46.9168465],[7.1346639,46.9193928],[7.1319438,46.9193063],[7.1276928,46.918181],[7.1252815,46.9189646],[7.1148537,46.9158349],[7.1132333,46.9105536],[7.1170491,46.9079492],[7.1191553,46.9056215],[7.1176846,46.9050593],[7.1196942,46.9005487],[7.1230417,46.9001955],[7.1244638,46.9027634],[7.1297636,46.9056356],[7.1348448,46.9075331],[7.138444,46.9075421],[7.1354848,46.9119631],[7.1361213,46.9131181],[7.1357931,46.9168465]]]]},"properties":{"ID_0":223,"ISO":"CH-FR","NAME_0":"Switzerland","ID_1":7,"NAME_1":"Fribourg","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Freiburg|Friburg|Friburgo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.6339558,47.5612235],[7.6273612,47.5615165],[7.6176173,47.5586485],[7.6175802,47.5549522],[7.6185071,47.5535681],[7.6223987,47.550975],[7.6229623,47.5492907],[7.6223033,47.5397743],[7.6181485,47.5408004],[7.6141998,47.5394231],[7.6123623,47.5367419],[7.6091826,47.5350166],[7.601768,47.5253475],[7.5947814,47.519294],[7.5902485,47.5197897],[7.5893183,47.5229554],[7.5899235,47.5266745],[7.588466,47.5290556],[7.5858669,47.5292755],[7.5826885,47.5324682],[7.5859195,47.5374037],[7.5857211,47.5391295],[7.5872631,47.5419007],[7.5814732,47.5438236],[7.5756961,47.543952],[7.5647854,47.5456863],[7.5558822,47.5443356],[7.5587527,47.5523533],[7.5612437,47.5517228],[7.5645616,47.5572174],[7.5598704,47.5605319],[7.5579279,47.5626202],[7.5546583,47.5643681],[7.5573002,47.5650334],[7.5593479,47.5693783],[7.5564665,47.5713866],[7.556895,47.5724666],[7.5654558,47.5762195],[7.5665034,47.5776581],[7.5716273,47.5771012],[7.5752663,47.5761289],[7.578852,47.5766638],[7.5846534,47.5755163],[7.5843906,47.5785769],[7.5857191,47.5840853],[7.5890388,47.5898969],[7.5984622,47.5876386],[7.6048159,47.5849295],[7.6040542,47.5813337],[7.6053326,47.5798829],[7.604882,47.5778737],[7.613204,47.5781561],[7.6191343,47.5768697],[7.6280205,47.581365],[7.6341024,47.5858576],[7.6364368,47.5883715],[7.6396302,47.5903641],[7.64324,47.5913407],[7.6417835,47.5941917],[7.6456696,47.5969552],[7.6510568,47.5957162],[7.6550649,47.5953952],[7.6673301,47.5919456],[7.6751713,47.5919819],[7.6780641,47.5953554],[7.6830086,47.5984931],[7.6879834,47.5986068],[7.6901533,47.5975697],[7.6847161,47.5966362],[7.6795811,47.5922467],[7.6773805,47.5913618],[7.6717419,47.58727],[7.672069,47.5852391],[7.6808517,47.582684],[7.6818996,47.5774562],[7.6838528,47.5766573],[7.6836701,47.5739056],[7.6889131,47.572425],[7.6896532,47.571398],[7.6870989,47.5683843],[7.6859194,47.5656103],[7.6837542,47.5683517],[7.6834998,47.571254],[7.6791014,47.5695],[7.6751444,47.5654226],[7.6773158,47.563745],[7.6724486,47.5637255],[7.6723599,47.5654399],[7.6702191,47.5658319],[7.6655502,47.56506],[7.6642272,47.5653987],[7.6587522,47.5644771],[7.6561556,47.562278],[7.654536,47.5623665],[7.6482757,47.559931],[7.6440496,47.5612843],[7.6412591,47.5612641],[7.6361189,47.5639171],[7.6339558,47.5612235]]]},"properties":{"ID_0":223,"ISO":"CH-BS","NAME_0":"Switzerland","ID_1":5,"NAME_1":"Basel-Stadt","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Bâle-Ville|Basel-City|Basel-Town|Basilea-Citad|Basilea Ciudad|Basilea città|Basiléia cidade"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[7.6925152,47.1644816],[7.6944958,47.1619731],[7.7007985,47.1617746],[7.6956577,47.157507],[7.6938216,47.1581608],[7.6901531,47.1525567],[7.6826182,47.154144],[7.6801003,47.1543248],[7.6752655,47.1532389],[7.6750944,47.1564578],[7.6795367,47.1631491],[7.6850564,47.1650909],[7.6878955,47.1652523],[7.6925152,47.1644816]]],[[[7.4457652,47.4619728],[7.450202,47.4675201],[7.4538869,47.4701361],[7.4558246,47.4707007],[7.4563398,47.4727447],[7.451408,47.4751336],[7.448402,47.4737872],[7.4463401,47.476434],[7.4425328,47.4788302],[7.4416057,47.4780963],[7.436214,47.4806553],[7.432125,47.4810093],[7.429391,47.4829407],[7.4257572,47.4812863],[7.4215067,47.4812191],[7.4223155,47.4839143],[7.4257516,47.4884575],[7.4289931,47.4910767],[7.4297499,47.4935782],[7.4331412,47.497168],[7.4349836,47.4981011],[7.4410903,47.4951057],[7.4470848,47.4934021],[7.4508286,47.4903125],[7.4550865,47.4894814],[7.4564042,47.4885005],[7.4623836,47.4890522],[7.4660862,47.4847554],[7.472007,47.480383],[7.477074,47.4800728],[7.48094,47.481097],[7.4876208,47.4821348],[7.4916127,47.4846673],[7.4934649,47.4880776],[7.4981277,47.4895054],[7.4999409,47.4910167],[7.5024494,47.4907696],[7.5011383,47.4935153],[7.5052352,47.4953958],[7.5110674,47.497027],[7.5087554,47.5023424],[7.5104466,47.5026276],[7.5116652,47.5026958],[7.5122262,47.4989168],[7.514756,47.4977696],[7.5200384,47.4967827],[7.5317892,47.4973989],[7.532526,47.4954356],[7.5326039,47.490969],[7.5362312,47.4910527],[7.536261,47.4838412],[7.5331205,47.4782905],[7.5291138,47.4779526],[7.5274454,47.4739062],[7.5306791,47.4611886],[7.5174535,47.4610206],[7.509828,47.4586675],[7.5052339,47.4587158],[7.4982107,47.4596867],[7.4867311,47.4578954],[7.4805074,47.4554893],[7.4768609,47.4554215],[7.4681396,47.4539075],[7.4665466,47.4528037],[7.4565122,47.4492558],[7.4548118,47.4492306],[7.4534722,47.4513374],[7.4471702,47.4569581],[7.446109,47.458974],[7.4457652,47.4619728]]],[[[7.381198,47.4320817],[7.3821514,47.4330266],[7.3863009,47.432354],[7.3943444,47.4351906],[7.403093,47.4354815],[7.4031306,47.4386294],[7.4066425,47.4403843],[7.4152584,47.4428868],[7.4209041,47.4459442],[7.4234437,47.4436053],[7.4254226,47.4432839],[7.4363118,47.4457671],[7.4421621,47.4423254],[7.4457226,47.4391652],[7.4484043,47.4377253],[7.4510847,47.4346911],[7.4521423,47.431376],[7.4555765,47.4279232],[7.4546547,47.4254578],[7.4517773,47.4227305],[7.4503129,47.4195188],[7.4503574,47.4177721],[7.4474911,47.4144842],[7.4437574,47.413444],[7.4381056,47.4127394],[7.4312975,47.4141355],[7.4274834,47.4144805],[7.4233254,47.4130609],[7.4207436,47.4110988],[7.4137082,47.4109293],[7.4076502,47.4111846],[7.401465,47.411891],[7.3969473,47.4128693],[7.3875989,47.4140464],[7.3817962,47.4132929],[7.3759458,47.4141002],[7.3771321,47.4180668],[7.3789836,47.4212606],[7.379639,47.4276288],[7.3821559,47.4288893],[7.3827895,47.431228],[7.381198,47.4320817]]],[[[7.552201,47.3453097],[7.544943,47.3474408],[7.5390608,47.3475547],[7.5368643,47.3501897],[7.5414488,47.355735],[7.5396485,47.3601134],[7.5338199,47.3596555],[7.5332341,47.3619591],[7.5279779,47.362818],[7.5217459,47.3651488],[7.5217115,47.3662205],[7.524635,47.3698097],[7.5237238,47.3720704],[7.5103967,47.3722335],[7.4982954,47.3717172],[7.4944523,47.3706482],[7.487148,47.3697273],[7.4793702,47.3713424],[7.4681779,47.3701101],[7.4634937,47.3702566],[7.4548091,47.3722188],[7.4528495,47.3745772],[7.446801,47.3766032],[7.444986,47.3783176],[7.4401674,47.3802704],[7.4373242,47.3808885],[7.4390368,47.3860118],[7.4435667,47.3889029],[7.4422499,47.3950125],[7.4432038,47.3961502],[7.4414073,47.3981241],[7.4413114,47.4001789],[7.4440531,47.4021682],[7.4459905,47.4000761],[7.4487125,47.3995694],[7.4508763,47.4012186],[7.4496537,47.4038482],[7.454759,47.4041309],[7.4567974,47.4017068],[7.4612988,47.4006617],[7.4649222,47.4024925],[7.4713288,47.4003483],[7.477351,47.4010255],[7.4767973,47.3959879],[7.4775351,47.3919095],[7.4810966,47.3887526],[7.4847773,47.3888877],[7.4849176,47.3874415],[7.4923275,47.3852318],[7.4977414,47.38453],[7.5030498,47.3850174],[7.5107103,47.3895585],[7.5186167,47.388223],[7.5213659,47.3912021],[7.5262958,47.3983977],[7.5304329,47.4020932],[7.5311956,47.4049111],[7.5273137,47.4085101],[7.5252352,47.4116329],[7.534741,47.4133066],[7.5430785,47.4140329],[7.5511466,47.4143489],[7.5563112,47.4142536],[7.5660724,47.4134092],[7.576801,47.4141455],[7.5806593,47.4146845],[7.5789109,47.4172123],[7.5741365,47.4194989],[7.5727104,47.4191213],[7.569543,47.4207075],[7.5675174,47.4259666],[7.5692657,47.4304484],[7.5687481,47.4321284],[7.5689044,47.436897],[7.5757002,47.43646],[7.5784233,47.4349067],[7.57765,47.4324388],[7.5801003,47.4320482],[7.5792984,47.4301858],[7.5812069,47.4287807],[7.5849068,47.4286237],[7.5920692,47.4327118],[7.5985689,47.4321284],[7.6021563,47.4312465],[7.6074228,47.4326646],[7.6140196,47.4333549],[7.6157989,47.4327479],[7.6161351,47.437615],[7.615262,47.439574],[7.616471,47.4418277],[7.6164646,47.4452346],[7.6188588,47.4490087],[7.6226016,47.4571445],[7.6221734,47.4619523],[7.6248267,47.4631918],[7.6188725,47.4674531],[7.6168439,47.4675763],[7.6110333,47.4700131],[7.6045243,47.4705364],[7.608149,47.4752137],[7.6061955,47.4755605],[7.6057739,47.4801102],[7.6083438,47.4821418],[7.6088021,47.4839098],[7.6072998,47.4893984],[7.6128842,47.4886113],[7.6149374,47.4892407],[7.6241455,47.4866657],[7.6272013,47.4848959],[7.6296435,47.4843181],[7.6361794,47.4840293],[7.640966,47.4827341],[7.6444227,47.4856378],[7.647281,47.4848076],[7.6536663,47.4863691],[7.6524382,47.4887367],[7.6553896,47.4902056],[7.6501835,47.4910109],[7.6486463,47.4918301],[7.650684,47.4945748],[7.6533644,47.4960732],[7.658177,47.4953027],[7.6661209,47.4968682],[7.6663596,47.4947724],[7.6654195,47.4914907],[7.6683266,47.4863467],[7.6717243,47.4845234],[7.6769802,47.485043],[7.6840138,47.4829092],[7.6910193,47.4816008],[7.6962068,47.4817855],[7.699761,47.4806325],[7.702411,47.4778918],[7.7051065,47.4761347],[7.709878,47.4693848],[7.7066078,47.4685785],[7.7033697,47.4644202],[7.7001039,47.4620803],[7.6986411,47.4594409],[7.6991863,47.4568884],[7.6981334,47.4552972],[7.6919655,47.4539855],[7.6907256,47.4522397],[7.6866565,47.4497441],[7.6850049,47.4475751],[7.6834873,47.4422434],[7.6829725,47.4387223],[7.6856047,47.436393],[7.686579,47.4336641],[7.6845854,47.4304738],[7.68469,47.4286656],[7.6798021,47.417514],[7.6738474,47.4150569],[7.6640548,47.41002],[7.6575421,47.4090754],[7.6396853,47.4100222],[7.6327228,47.4100311],[7.6350876,47.4003143],[7.6354958,47.3953205],[7.6372512,47.3860686],[7.6333054,47.3853396],[7.633317,47.382914],[7.6355801,47.3805928],[7.6417611,47.3804694],[7.6410397,47.3782861],[7.643181,47.3754694],[7.64287,47.3733148],[7.6442033,47.3672084],[7.655694,47.3680774],[7.6743647,47.3698691],[7.6789369,47.3704964],[7.7019536,47.3724472],[7.7139728,47.370903],[7.7279138,47.3688589],[7.7341532,47.3577608],[7.74282,47.3497075],[7.751519,47.3443275],[7.7541924,47.3431721],[7.7664192,47.3427347],[7.7692243,47.3414494],[7.7689632,47.3389141],[7.7728882,47.3393925],[7.7796987,47.3391975],[7.7823787,47.3395701],[7.7852881,47.3378823],[7.7935609,47.3390523],[7.7953716,47.3464552],[7.7950062,47.349769],[7.7976612,47.3557911],[7.8021665,47.3610959],[7.8053835,47.3623861],[7.8105171,47.3628894],[7.8196066,47.3629874],[7.8305473,47.3651215],[7.8336252,47.3674835],[7.8371225,47.3727657],[7.8401191,47.3747633],[7.8473507,47.3767254],[7.8499703,47.3783527],[7.8587218,47.3797496],[7.8598411,47.3811357],[7.8630581,47.3819837],[7.8685656,47.3812747],[7.876101,47.3844741],[7.8788122,47.3835105],[7.8797378,47.3873545],[7.8761008,47.3903782],[7.8738958,47.3900303],[7.8719455,47.3912466],[7.8691367,47.3955143],[7.8752778,47.3975949],[7.8777028,47.4012571],[7.8798029,47.4017191],[7.8834431,47.401205],[7.8842847,47.4031869],[7.883332,47.4060973],[7.8885671,47.4072671],[7.8902216,47.4071411],[7.8988859,47.401675],[7.9008303,47.4007446],[7.903836,47.402465],[7.9065862,47.3998447],[7.9097377,47.398521],[7.9130999,47.4002445],[7.9210588,47.4023676],[7.9242095,47.4020322],[7.925432,47.4029795],[7.9326616,47.405275],[7.9367225,47.4080575],[7.9349279,47.411767],[7.9406258,47.4140986],[7.9450137,47.4145266],[7.9483889,47.4162658],[7.9542591,47.4172932],[7.9584181,47.420548],[7.9618317,47.4218343],[7.9557004,47.4265699],[7.9500321,47.4317164],[7.9519393,47.432784],[7.9480643,47.4400156],[7.9467846,47.4431934],[7.9475235,47.4455559],[7.9505116,47.4469011],[7.9585114,47.452873],[7.9568349,47.4552115],[7.9607182,47.4554656],[7.9605237,47.4576561],[7.9629073,47.4596373],[7.9655924,47.4603222],[7.9671552,47.462318],[7.968733,47.4621806],[7.9742854,47.4595479],[7.9766032,47.4542032],[7.9748783,47.4520017],[7.9806058,47.4489102],[7.9825629,47.4445595],[7.9837701,47.4432198],[7.9841675,47.44032],[7.9836776,47.4374452],[7.9853234,47.4318591],[7.9872707,47.4287435],[7.9854653,47.4227641],[7.984237,47.4228923],[7.983843,47.4283108],[7.9801418,47.4275537],[7.9631993,47.4223547],[7.9722731,47.4189453],[7.9742188,47.4194648],[7.9772086,47.4160988],[7.9818982,47.4136165],[7.9840932,47.4140916],[7.9877473,47.4133454],[7.9894713,47.4141493],[7.9914657,47.4111977],[8.0017622,47.4094538],[8.0072617,47.4065858],[8.009136,47.4019133],[8.0100273,47.4012979],[8.009801,47.3956968],[8.0136914,47.3943754],[8.0159616,47.3950054],[8.0199685,47.3939889],[8.0203287,47.3958068],[8.0265612,47.3956224],[8.0298082,47.386445],[8.0313669,47.3836856],[8.0295396,47.3793214],[8.0291271,47.3755983],[8.0277356,47.3742452],[8.0273336,47.3701892],[8.024053,47.3652454],[8.0194321,47.3638026],[8.0173999,47.3624869],[8.0167283,47.3606059],[8.0104736,47.3569507],[8.0128208,47.3543298],[8.0118165,47.3498153],[8.0038366,47.3453146],[8.0042672,47.3434457],[8.0073558,47.339304],[8.0051906,47.3367516],[7.9956143,47.3332318],[7.9909454,47.3328101],[7.9873121,47.3295743],[7.9778173,47.3259832],[7.9765033,47.3234438],[7.9704735,47.3222297],[7.9586193,47.3202706],[7.9530473,47.3188147],[7.948328,47.3181041],[7.9470813,47.3222474],[7.9473088,47.3251732],[7.948818,47.3295721],[7.9471179,47.3323352],[7.937714,47.3324829],[7.9192088,47.3339507],[7.9181861,47.3353157],[7.9112052,47.3391893],[7.9093389,47.3409617],[7.9045093,47.3369345],[7.9021508,47.334471],[7.8968489,47.327658],[7.8960782,47.323926],[7.8981487,47.319988],[7.8917493,47.3157421],[7.8886613,47.3112671],[7.883819,47.3110257],[7.8790186,47.3117578],[7.874505,47.3118678],[7.8693316,47.3093661],[7.863582,47.307517],[7.8604122,47.3055338],[7.8584823,47.3009163],[7.8547267,47.2957432],[7.8536638,47.2927724],[7.851605,47.2899914],[7.8482634,47.2869166],[7.8478998,47.2856017],[7.8447846,47.2820154],[7.8441458,47.277909],[7.8418057,47.2744707],[7.8331751,47.2678756],[7.8251069,47.2655723],[7.820032,47.2634188],[7.818189,47.262144],[7.8147702,47.2613097],[7.8081576,47.262888],[7.8053487,47.265035],[7.8045776,47.2684015],[7.8006725,47.2677742],[7.7980222,47.266078],[7.7937778,47.2614823],[7.7876794,47.2579184],[7.7845206,47.2572636],[7.775806,47.2614387],[7.7746009,47.267869],[7.7648354,47.2666866],[7.7606824,47.2625659],[7.7587946,47.2592217],[7.7568187,47.258095],[7.7532107,47.2587528],[7.7492873,47.2587627],[7.7446614,47.2570231],[7.7383158,47.2598994],[7.7326672,47.2591133],[7.7250435,47.2660064],[7.724261,47.2678539],[7.7251362,47.2693109],[7.7156145,47.2764014],[7.7127072,47.2738279],[7.7081296,47.2783716],[7.7089609,47.279428],[7.7055637,47.2804615],[7.7029643,47.2830176],[7.703904,47.2837585],[7.70085,47.2865455],[7.6976882,47.2872147],[7.688558,47.2904455],[7.6849607,47.2934924],[7.6828977,47.2931127],[7.6798179,47.2901232],[7.6771779,47.2891121],[7.6705179,47.2875712],[7.6687842,47.288779],[7.6662096,47.2876597],[7.6605042,47.2866515],[7.6543394,47.2837488],[7.6482742,47.2819898],[7.6205592,47.2815209],[7.6142037,47.2811515],[7.6004814,47.2793432],[7.5801066,47.2763483],[7.586923,47.2697004],[7.5936981,47.2662199],[7.5961303,47.2607446],[7.5977233,47.2541331],[7.5959384,47.245569],[7.5987695,47.2452054],[7.6024097,47.2420856],[7.6045852,47.2426722],[7.6063844,47.2390499],[7.6095046,47.2395446],[7.6139651,47.2365002],[7.614885,47.2342088],[7.6183203,47.2314228],[7.6191101,47.2290508],[7.6235138,47.2293614],[7.6261802,47.2263143],[7.6295132,47.2282683],[7.6308902,47.2266932],[7.6339366,47.228635],[7.6352828,47.2272327],[7.6405558,47.2297944],[7.6439455,47.2254457],[7.6391775,47.2233853],[7.6410443,47.2211307],[7.6447511,47.2204577],[7.6466498,47.2175756],[7.6460548,47.2147095],[7.6496129,47.2099698],[7.6512213,47.2067032],[7.6472258,47.2017823],[7.6578182,47.2006916],[7.6623299,47.2009599],[7.66274,47.1986551],[7.6658133,47.1980294],[7.666668,47.1958895],[7.6746292,47.190899],[7.6737019,47.1879074],[7.6716178,47.1867264],[7.6711002,47.1845216],[7.6756733,47.183709],[7.6778049,47.1826825],[7.6759426,47.1757616],[7.6738049,47.1742156],[7.6728612,47.1683945],[7.6656372,47.1683698],[7.6610089,47.167657],[7.6600808,47.1684026],[7.6543167,47.1632667],[7.6517899,47.1615997],[7.6535408,47.1607746],[7.6512652,47.1574731],[7.6526018,47.1515016],[7.6505687,47.1497998],[7.6450349,47.1489698],[7.6407779,47.151495],[7.639956,47.1535582],[7.6355992,47.1520956],[7.6348345,47.1533082],[7.6290846,47.152387],[7.6245829,47.1524568],[7.6219559,47.1530597],[7.6160825,47.1563051],[7.6145401,47.1545316],[7.6078494,47.1528491],[7.5978928,47.151604],[7.5924402,47.1526756],[7.5883536,47.1508857],[7.5861404,47.1475453],[7.5820865,47.1582822],[7.579669,47.1600247],[7.5749088,47.1644481],[7.5696522,47.1628906],[7.5673218,47.1631872],[7.5654986,47.1645491],[7.5634674,47.1683541],[7.5578351,47.1680286],[7.5557748,47.1660245],[7.5500423,47.1636249],[7.5488327,47.1621216],[7.5443322,47.1603645],[7.5404913,47.1635566],[7.5352305,47.162464],[7.5345021,47.1641726],[7.5313916,47.1629956],[7.5257686,47.162205],[7.5260422,47.1610568],[7.5205567,47.1597696],[7.5218915,47.1584368],[7.5243081,47.1535941],[7.5295848,47.1507194],[7.5297508,47.1487369],[7.5255158,47.1476508],[7.5233685,47.1457469],[7.5229939,47.1427227],[7.5191363,47.1404298],[7.5159306,47.1369055],[7.5137037,47.1331815],[7.5137217,47.1299111],[7.5097234,47.1255457],[7.5046675,47.1227176],[7.4986306,47.1214414],[7.4923166,47.1170844],[7.4613252,47.1082327],[7.4627973,47.1036708],[7.4618084,47.1034038],[7.4652891,47.099324],[7.4642373,47.0990465],[7.4708228,47.090467],[7.4737661,47.0893576],[7.4750778,47.0870833],[7.4729157,47.0846176],[7.4710497,47.0838268],[7.4683954,47.0797884],[7.4661817,47.0785633],[7.4644676,47.0789498],[7.4580256,47.0775921],[7.4539949,47.075974],[7.4458594,47.0743823],[7.4404479,47.074504],[7.4404768,47.0758387],[7.4354156,47.0801664],[7.4343502,47.0861609],[7.4328783,47.0879769],[7.4336671,47.0913396],[7.4357506,47.0919095],[7.4350411,47.0936546],[7.4374274,47.0942057],[7.4340002,47.1005003],[7.4232609,47.0974598],[7.4202728,47.0996659],[7.4121999,47.0956626],[7.4088151,47.0947959],[7.4016132,47.0937631],[7.3994247,47.0938623],[7.390052,47.0922963],[7.3894456,47.0951328],[7.3863594,47.0961738],[7.3843339,47.0954811],[7.3826313,47.0967081],[7.3813394,47.1011515],[7.3791901,47.1041403],[7.3792353,47.1062059],[7.3758825,47.1083674],[7.3736256,47.1128616],[7.3714611,47.113763],[7.3704402,47.1153804],[7.3719696,47.1173415],[7.3704914,47.1209312],[7.3714047,47.1225375],[7.3740052,47.1218159],[7.3755428,47.1233259],[7.3789246,47.1240936],[7.3808474,47.1227301],[7.3836759,47.1233293],[7.3867427,47.1258974],[7.3889317,47.1234086],[7.3899707,47.1195181],[7.3949938,47.1216956],[7.4037482,47.117676],[7.4067048,47.118449],[7.4095534,47.1202148],[7.4197891,47.1218269],[7.4203764,47.1211481],[7.4247066,47.1220097],[7.4290259,47.1243699],[7.4347333,47.1238554],[7.4373704,47.1227217],[7.4396197,47.1245602],[7.4332593,47.1261735],[7.4352115,47.1275058],[7.4363486,47.1295587],[7.4354029,47.1312749],[7.4312159,47.1290907],[7.4297089,47.1316391],[7.4264596,47.1313407],[7.4237505,47.1349853],[7.4217922,47.1358605],[7.4266785,47.1384713],[7.42663,47.1410991],[7.4305343,47.1428566],[7.434499,47.1437441],[7.439613,47.1439888],[7.4411609,47.1458827],[7.4399504,47.1504963],[7.447783,47.1550805],[7.4546231,47.1563313],[7.4588151,47.1549101],[7.459929,47.1533455],[7.463018,47.1536901],[7.4676327,47.1512813],[7.4728074,47.1525609],[7.4739107,47.1534525],[7.4786239,47.1544539],[7.4820528,47.1581648],[7.4847142,47.1596179],[7.4884908,47.1606649],[7.4926881,47.1632662],[7.4901922,47.1657643],[7.4970383,47.1700873],[7.495682,47.1714713],[7.493088,47.1711303],[7.489004,47.172672],[7.4863128,47.1730609],[7.4804964,47.171738],[7.4781394,47.177451],[7.4708635,47.1814131],[7.474998,47.1830501],[7.4736088,47.1861813],[7.4765815,47.188091],[7.4757226,47.1906485],[7.4665642,47.1901067],[7.4557442,47.1888286],[7.4488131,47.1893922],[7.4484122,47.1878772],[7.4497374,47.1851493],[7.4495654,47.1828827],[7.4476258,47.1810839],[7.4432457,47.1792492],[7.4399213,47.1806344],[7.4384832,47.1843492],[7.4360292,47.1852936],[7.4332849,47.1847269],[7.4309105,47.182451],[7.4317949,47.1787201],[7.4315843,47.1760513],[7.4300741,47.1745806],[7.4260513,47.1729746],[7.4218107,47.1722985],[7.4183948,47.1711538],[7.416681,47.1690649],[7.4159506,47.1653769],[7.4118135,47.1624212],[7.4085668,47.162092],[7.400937,47.162848],[7.3931291,47.1603553],[7.3920809,47.161104],[7.3873166,47.1601183],[7.3836658,47.1603484],[7.3817722,47.163635],[7.3821749,47.1651186],[7.3846699,47.1661022],[7.3908345,47.1655737],[7.391911,47.1662739],[7.3896893,47.1703815],[7.3835137,47.1803011],[7.3795269,47.1850956],[7.3751403,47.1885685],[7.3718619,47.1899982],[7.368195,47.1907646],[7.3654609,47.1944525],[7.3628628,47.1934434],[7.3544799,47.1915316],[7.3468299,47.2072194],[7.3448221,47.2072111],[7.3419639,47.2123969],[7.3404127,47.2175697],[7.3463306,47.2191602],[7.3572381,47.2210457],[7.3593209,47.2195949],[7.3622333,47.2196077],[7.3705162,47.2238973],[7.3744927,47.2268496],[7.3781865,47.227638],[7.3802967,47.2287976],[7.3905993,47.2312279],[7.3980836,47.2334832],[7.4016898,47.234893],[7.4079413,47.2391304],[7.4118205,47.240555],[7.4154818,47.2402115],[7.4208731,47.2428911],[7.4181455,47.2453772],[7.4161809,47.2505932],[7.4173645,47.2537956],[7.4187823,47.2545527],[7.4267907,47.2560801],[7.4327405,47.2585624],[7.4374583,47.2613669],[7.4410011,47.2629161],[7.4510421,47.2629673],[7.451912,47.2633871],[7.4658424,47.2646513],[7.4694378,47.2669194],[7.471615,47.2694073],[7.4758693,47.276313],[7.478868,47.2791149],[7.4853399,47.2842593],[7.487178,47.2838363],[7.4943421,47.2863524],[7.4953716,47.2878723],[7.4983326,47.2883672],[7.5054317,47.2908596],[7.5059474,47.2900524],[7.5137539,47.2924538],[7.5208988,47.2939757],[7.5245845,47.293751],[7.5328638,47.294534],[7.5369953,47.2965805],[7.5395303,47.2986075],[7.5390687,47.3019794],[7.5469398,47.3060819],[7.5483333,47.3163566],[7.5583409,47.3223629],[7.5617006,47.3214271],[7.5687248,47.3243436],[7.5716312,47.3271275],[7.5721467,47.3289504],[7.5627181,47.3394469],[7.5626811,47.3405068],[7.5598007,47.3426626],[7.5566421,47.342089],[7.556477,47.3438546],[7.552201,47.3453097]]]]},"properties":{"ID_0":223,"ISO":"CH-SO","NAME_0":"Switzerland","ID_1":19,"NAME_1":"Solothurn","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Soletta|Soleure|Soleuro|Soloturn"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.166794,46.3430818],[6.1718112,46.349835],[6.173961,46.3489415],[6.1755723,46.3513208],[6.1844365,46.3458401],[6.1816956,46.3436795],[6.1769127,46.3453845],[6.17454,46.3469138],[6.1722513,46.3444391],[6.1726341,46.3416292],[6.1713097,46.3407259],[6.166794,46.3430818]]],[[[6.2414031,46.343623],[6.2325389,46.3307478],[6.2070266,46.3388442],[6.2035839,46.3388251],[6.1931357,46.3437112],[6.1948935,46.3486105],[6.1914582,46.3485957],[6.1888176,46.3501194],[6.1862765,46.3495317],[6.1803315,46.352767],[6.1730468,46.3546416],[6.1711096,46.3583947],[6.1762584,46.3600398],[6.1744205,46.362375],[6.1802569,46.3645729],[6.1880249,46.3603021],[6.1921446,46.36069],[6.1974022,46.3604753],[6.1999461,46.355634],[6.2020264,46.3547694],[6.2071311,46.3550866],[6.2414031,46.343623]]],[[[6.2195646,46.3118838],[6.2417834,46.3042368],[6.2431887,46.3034174],[6.2477663,46.3026336],[6.2472026,46.3005746],[6.249285,46.2988422],[6.2483953,46.2965],[6.2494404,46.2934674],[6.251203,46.2930991],[6.2528445,46.290384],[6.2515128,46.2881884],[6.2458522,46.2851752],[6.2429681,46.285366],[6.241943,46.283958],[6.2383797,46.2816473],[6.2388611,46.2802611],[6.2381686,46.2759403],[6.2428782,46.2728507],[6.2498541,46.2621969],[6.2616783,46.2545594],[6.2603765,46.2515631],[6.2630209,46.2509036],[6.2667923,46.2476914],[6.2701058,46.2484865],[6.2750197,46.2505864],[6.2779454,46.2513417],[6.2807745,46.2535063],[6.2841712,46.2542172],[6.2834653,46.2559692],[6.2865856,46.2573513],[6.2898068,46.2599593],[6.2922811,46.2635289],[6.2963571,46.2641437],[6.2962842,46.2617597],[6.2939311,46.259527],[6.2949284,46.2562242],[6.3020766,46.2547221],[6.3064788,46.2564751],[6.3097618,46.2562236],[6.3057019,46.2513667],[6.3094407,46.2499011],[6.3086963,46.247485],[6.3102878,46.2439735],[6.3065778,46.239092],[6.3027375,46.235183],[6.2985718,46.2294424],[6.2946859,46.2251526],[6.2895557,46.223128],[6.2878238,46.2217535],[6.2767036,46.2154327],[6.2673915,46.2137366],[6.2631237,46.2125567],[6.2541087,46.2092397],[6.2516895,46.2072259],[6.2473695,46.205341],[6.2412676,46.2047418],[6.2366774,46.206432],[6.2326247,46.2059591],[6.2303335,46.203696],[6.2277943,46.2033426],[6.2219466,46.2006645],[6.2210442,46.1989171],[6.2173406,46.197933],[6.2160196,46.1950445],[6.2101522,46.1928284],[6.2069875,46.192347],[6.2027291,46.1890872],[6.2016315,46.1867302],[6.1987442,46.1852533],[6.1978082,46.1833875],[6.1949603,46.1834092],[6.1909779,46.1812539],[6.188363,46.1814627],[6.1861874,46.1783158],[6.1887838,46.1663858],[6.1853429,46.1639669],[6.178484,46.1604117],[6.1742222,46.1578077],[6.1685645,46.1571618],[6.15806,46.1533663],[6.1538876,46.1522136],[6.1486489,46.1500869],[6.1448818,46.1449496],[6.1426964,46.1458577],[6.136885,46.142968],[6.1364595,46.1415966],[6.1305498,46.1404048],[6.1265631,46.1405209],[6.1233145,46.142057],[6.114272,46.143081],[6.1077401,46.1429125],[6.1063397,46.1440376],[6.1030559,46.1443165],[6.0985028,46.1438189],[6.0957995,46.1482684],[6.0918209,46.1519451],[6.0749132,46.1488419],[6.0722777,46.1499705],[6.0606778,46.1511964],[6.0522995,46.1513871],[6.0484379,46.1470521],[6.0469079,46.1417559],[6.0450879,46.1399668],[6.0424876,46.141411],[6.0371774,46.1380578],[6.0354764,46.1348203],[6.0316828,46.138667],[6.0273029,46.1400321],[6.023969,46.1403702],[6.0225361,46.1416568],[6.0171891,46.1428377],[6.0130915,46.1420988],[6.0085582,46.142818],[6.0032397,46.1417757],[5.9998814,46.1431437],[5.9941117,46.1445684],[5.9870954,46.1425896],[5.9854912,46.1434086],[5.9829371,46.1413172],[5.9819285,46.1374073],[5.9790914,46.1355402],[5.9775176,46.1336169],[5.9729758,46.1316216],[5.969486,46.1320372],[5.9652104,46.1296835],[5.9611438,46.1307981],[5.9573812,46.1285501],[5.9559113,46.1323565],[5.9599784,46.1348986],[5.9655553,46.1369047],[5.9663282,46.1390959],[5.9646276,46.1414691],[5.9640777,46.1440735],[5.9667879,46.1479597],[5.9689179,46.151912],[5.9731116,46.1561016],[5.9764393,46.1619586],[5.9801773,46.1664367],[5.9809864,46.1712979],[5.9820327,46.1732705],[5.9854363,46.1729094],[5.9870496,46.1704704],[5.9886532,46.1715739],[5.9909848,46.1780793],[5.994473,46.1811857],[5.9948887,46.1830579],[5.9933252,46.1840568],[5.9922222,46.1865466],[5.9837547,46.1889041],[5.982821,46.1907756],[5.9718679,46.1941819],[5.9637155,46.1970214],[5.9656408,46.1995368],[5.9691353,46.2004853],[5.9725925,46.2023709],[5.969249,46.2066749],[5.9716408,46.2113138],[5.9746738,46.2150247],[5.9791231,46.2172373],[5.9875863,46.2166907],[5.9927818,46.2152237],[5.9935904,46.2173884],[5.9928592,46.2190206],[5.9901543,46.221709],[5.9928311,46.2229558],[5.9975532,46.2222623],[6.0014888,46.2205063],[6.0045958,46.2233644],[6.0071617,46.2238564],[6.0080605,46.2264119],[6.0125849,46.2285871],[6.0131193,46.231115],[6.0150186,46.2304494],[6.0163821,46.2319784],[6.0199219,46.2318403],[6.0254399,46.2332157],[6.0336572,46.2385548],[6.0421281,46.2333094],[6.0461125,46.2314049],[6.0474483,46.2334019],[6.0495035,46.2343046],[6.0521397,46.2382999],[6.0558595,46.241652],[6.0604053,46.2450115],[6.0633275,46.2458001],[6.0672299,46.2418371],[6.0695416,46.2411848],[6.0737647,46.2422856],[6.0795357,46.2453963],[6.0832083,46.2461997],[6.0885155,46.245879],[6.0906857,46.245126],[6.099062,46.2390656],[6.1014498,46.2376461],[6.1068523,46.2411712],[6.1087667,46.2399563],[6.1207702,46.2480074],[6.1244671,46.2512533],[6.1211689,46.2540214],[6.1227574,46.2564945],[6.122527,46.2582079],[6.1193259,46.2612699],[6.1180923,46.2634476],[6.1198993,46.2648629],[6.115423,46.265954],[6.1099519,46.270535],[6.113515,46.2725523],[6.1086035,46.2748045],[6.1069807,46.2766747],[6.1032555,46.2786842],[6.1050283,46.2829553],[6.1025637,46.2848528],[6.1045293,46.2869846],[6.1088745,46.2893437],[6.1116162,46.2914966],[6.1132557,46.2941273],[6.116542,46.2939932],[6.1207925,46.2970588],[6.1217492,46.2990861],[6.1187728,46.3028408],[6.120751,46.3067748],[6.1198866,46.3084154],[6.1204003,46.312997],[6.1257903,46.3174628],[6.125947,46.3161737],[6.1299092,46.3128121],[6.1337039,46.3105064],[6.1346939,46.3088838],[6.1407859,46.3054038],[6.1407461,46.3047331],[6.1506393,46.3009815],[6.1533913,46.2991564],[6.159617,46.2977169],[6.1669346,46.2952316],[6.1734432,46.2944011],[6.1969214,46.2865786],[6.207893,46.3002647],[6.2195646,46.3118838]]]]},"properties":{"ID_0":223,"ISO":"CH-GE","NAME_0":"Switzerland","ID_1":8,"NAME_1":"Genève","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Cenevre|Genebra|Geneve|Geneva|Genevra|Genf|Ginebra|Ginevra"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.858623,47.1655028],[6.861516,47.1655892],[6.8697431,47.1548008],[6.8721904,47.1512816],[6.880128,47.1418143],[6.8812866,47.1395697],[6.884864,47.1359297],[6.888803,47.1311258],[6.8849689,47.1196378],[6.8810003,47.1083874],[6.8717911,47.102857],[6.8683816,47.0922842],[6.8668643,47.0851144],[6.8751796,47.0881281],[6.8790459,47.0898526],[6.8829486,47.0908394],[6.8881365,47.092836],[6.8954957,47.0964968],[6.9087175,47.1016274],[6.9157266,47.1037803],[6.9214689,47.1063782],[6.9265867,47.109146],[6.9298273,47.1125926],[6.9363444,47.108725],[6.9399049,47.1091531],[6.9483349,47.1124143],[6.9534354,47.1126859],[6.9603183,47.113932],[6.969607,47.1145966],[6.988607,47.117321],[6.99784,47.1194016],[7.0016941,47.1216348],[7.0061285,47.1229084],[7.007756,47.1242156],[7.0106049,47.1232203],[7.0158791,47.1239726],[7.0256185,47.124129],[7.0285261,47.1269138],[7.0310741,47.1273109],[7.0382355,47.1264354],[7.0399631,47.1246461],[7.0313793,47.1196322],[7.0276407,47.1157679],[7.0235042,47.1121997],[7.0287285,47.1036698],[7.0406076,47.1090009],[7.0411661,47.1083644],[7.0492841,47.1049831],[7.0571402,47.0996796],[7.0632519,47.099543],[7.075677,47.0962588],[7.0868208,47.0856941],[7.087054,47.0815465],[7.0770038,47.0759549],[7.0801318,47.0737435],[7.080832,47.0713289],[7.0801998,47.0687997],[7.0817977,47.0650479],[7.0843143,47.0640589],[7.0867445,47.0615047],[7.087449,47.0594325],[7.0781835,47.0519296],[7.0727062,47.0493225],[7.0650638,47.0448985],[7.0539798,47.0434314],[7.0505819,47.042309],[7.0403585,47.0369646],[7.0343414,47.031674],[7.0331877,47.0293201],[7.0336546,47.0177108],[7.0332848,47.0158866],[7.0309515,47.0109725],[7.0255547,47.0058158],[7.0401636,46.9798427],[7.0403444,46.9795209],[7.0324445,46.9811384],[7.0022878,46.9867207],[6.9285398,46.9527101],[6.8962117,46.9253232],[6.8658539,46.9094778],[6.8448096,46.8955619],[6.8041214,46.868473],[6.7800504,46.8526396],[6.7553255,46.8704553],[6.7506075,46.8711296],[6.7400055,46.8719767],[6.7346488,46.8690572],[6.7340588,46.8717991],[6.7368009,46.8738118],[6.7392548,46.8787005],[6.7406666,46.8835527],[6.7380106,46.8845593],[6.7401148,46.8948101],[6.7266721,46.9019324],[6.7210012,46.9053809],[6.7167059,46.9060735],[6.717768,46.9117071],[6.7175375,46.9158596],[6.7208625,46.9258235],[6.7237077,46.9311151],[6.7218707,46.9317344],[6.7202114,46.9337987],[6.7208324,46.9360868],[6.7156266,46.9347871],[6.6893966,46.927053],[6.668523,46.920557],[6.6548556,46.9141204],[6.6540211,46.9133788],[6.6472295,46.9106982],[6.6454921,46.9061629],[6.6270861,46.8887095],[6.6146354,46.8889332],[6.6063589,46.8867717],[6.5985231,46.8835931],[6.5933634,46.8843244],[6.5872571,46.8841607],[6.57484,46.8804588],[6.5704338,46.8788475],[6.559907,46.8740709],[6.5563006,46.8731633],[6.5531734,46.8732486],[6.5496428,46.871836],[6.5451743,46.8685982],[6.5377662,46.8668449],[6.5286929,46.8590605],[6.5234745,46.8565738],[6.5145111,46.8547984],[6.5045555,46.8523775],[6.4822708,46.8466022],[6.4708808,46.8471395],[6.4666845,46.8478427],[6.465526,46.8508428],[6.4601921,46.8512939],[6.4631007,46.8755625],[6.4645461,46.8902782],[6.4579341,46.9007714],[6.4415775,46.9175471],[6.4358631,46.9216356],[6.4326552,46.9286841],[6.4390757,46.9307717],[6.4464703,46.9340797],[6.4535354,46.9387811],[6.4603267,46.9438691],[6.4622646,46.9471279],[6.465308,46.9493773],[6.4664601,46.9512596],[6.4695691,46.9532993],[6.4717296,46.9560392],[6.4765849,46.960718],[6.4839517,46.9663086],[6.4882137,46.9686392],[6.4965027,46.9741095],[6.504793,46.965673],[6.5103683,46.9675191],[6.5138636,46.9692799],[6.5187201,46.9709261],[6.5239038,46.9720184],[6.5263862,46.9717821],[6.5347807,46.9732893],[6.5374199,46.9734513],[6.5491452,46.9768796],[6.5580482,46.9790625],[6.5624915,46.9794597],[6.5685599,46.9815442],[6.5718875,46.982013],[6.5789888,46.9849455],[6.5866521,46.9889357],[6.5931502,46.9916765],[6.600038,46.9924067],[6.6048105,46.991019],[6.6106267,46.9906383],[6.614034,46.9915004],[6.6181705,46.9916267],[6.6276852,46.9963612],[6.6336875,46.9981829],[6.6404084,47.0027993],[6.6461351,47.0096446],[6.648403,47.0146006],[6.653558,47.0222364],[6.6592933,47.0273404],[6.6687279,47.0317664],[6.675052,47.0343853],[6.6840036,47.0370078],[6.6867357,47.0374804],[6.694553,47.0370345],[6.696608,47.0372576],[6.7015704,47.0407651],[6.7058216,47.0443248],[6.7088386,47.0449726],[6.7115123,47.0480374],[6.7191775,47.051179],[6.7196159,47.0520255],[6.7119842,47.0536001],[6.7086438,47.0580784],[6.7050144,47.058973],[6.7017402,47.0586201],[6.7002628,47.0594807],[6.6983052,47.0623021],[6.694313,47.0635352],[6.6915129,47.0666703],[6.6934104,47.0689313],[6.700308,47.0696638],[6.7019024,47.0708542],[6.703466,47.0736684],[6.706511,47.0743951],[6.7052025,47.0761143],[6.7074241,47.0783384],[6.7074139,47.079653],[6.7039386,47.0804118],[6.7037152,47.0825374],[6.7079936,47.0831486],[6.7137914,47.0863968],[6.7146622,47.0881954],[6.717651,47.0891615],[6.7218086,47.0893593],[6.7261458,47.0921322],[6.7295484,47.0898961],[6.7350679,47.0899314],[6.7388741,47.0904727],[6.743472,47.0921627],[6.7448439,47.0937786],[6.7465608,47.0976732],[6.7466696,47.0993649],[6.7414935,47.1041374],[6.7399725,47.1082236],[6.7405487,47.1096216],[6.7463705,47.1097905],[6.7491615,47.1115956],[6.7514218,47.1141246],[6.7541422,47.1151448],[6.7564554,47.1169888],[6.7658097,47.1207312],[6.7706002,47.1214121],[6.7759987,47.1213637],[6.7797089,47.1238424],[6.7832784,47.1243731],[6.7944165,47.1277683],[6.7966102,47.129053],[6.8003183,47.1290026],[6.8066078,47.1311524],[6.8074493,47.1347197],[6.8093202,47.1357312],[6.8142862,47.1354623],[6.8158998,47.1360273],[6.8185963,47.139257],[6.8206802,47.140681],[6.8238011,47.1415141],[6.8259449,47.1433081],[6.8284242,47.1465466],[6.8305905,47.1462767],[6.8398517,47.1506456],[6.8404303,47.1538634],[6.8499278,47.1563748],[6.8516574,47.159125],[6.8555022,47.1616925],[6.8585539,47.1644526],[6.858623,47.1655028]]]},"properties":{"ID_0":223,"ISO":"CH-NE","NAME_0":"Switzerland","ID_1":13,"NAME_1":"Neuchâtel","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Neuenburg"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.9285398,46.9527101],[7.0022878,46.9867207],[7.0324445,46.9811384],[7.0403444,46.9795209],[7.0512536,46.9773783],[7.0602711,46.97324],[7.0630447,46.9711067],[7.0602357,46.9687354],[7.0612977,46.9667647],[7.0579042,46.9654084],[7.0596368,46.9630835],[7.0575492,46.9621431],[7.0590016,46.9601957],[7.0586501,46.9582686],[7.0596141,46.9558126],[7.0586426,46.9538721],[7.0604327,46.9496645],[7.0612938,46.9422706],[7.0578798,46.9386085],[7.0598613,46.9365776],[7.0844698,46.9128503],[7.0882737,46.9089223],[7.0934099,46.90579],[7.0908601,46.9038187],[7.0863757,46.9018644],[7.0888407,46.8997182],[7.0870951,46.8970955],[7.0833048,46.8961188],[7.0750488,46.8955114],[7.0772707,46.8939896],[7.0759413,46.8917263],[7.072473,46.8904079],[7.0724013,46.8892041],[7.0691753,46.8875],[7.0645924,46.8860455],[7.0619621,46.8837702],[7.0616668,46.8796304],[7.0662481,46.8806754],[7.0670282,46.8790275],[7.0646688,46.878345],[7.0692184,46.8764704],[7.0710314,46.8734517],[7.0689729,46.870715],[7.06625,46.8692993],[7.0663503,46.8681898],[7.0634744,46.8669691],[7.0603817,46.8644803],[7.0565302,46.86038],[7.0553272,46.8579803],[7.0531259,46.8555774],[7.0490783,46.8548688],[7.0472867,46.851614],[7.0429168,46.8468863],[7.0395878,46.8482997],[7.0374543,46.845534],[7.0331946,46.8487336],[7.0318903,46.8478043],[7.0298246,46.8502338],[7.0297094,46.8526784],[7.034098,46.8553182],[7.0333357,46.8570579],[7.0390474,46.8592615],[7.0396361,46.8605978],[7.0367003,46.8615753],[7.0298956,46.8661711],[7.0345982,46.8722872],[7.0357519,46.8729947],[7.0321843,46.8758529],[7.030433,46.8752805],[7.0255442,46.8766374],[7.0251836,46.8777929],[7.0212882,46.8766821],[7.0161965,46.8807753],[7.0152912,46.8782494],[7.0096765,46.8752759],[7.0084198,46.8731521],[6.9993344,46.8743273],[6.9938005,46.8789644],[7.0047613,46.8855998],[7.0058564,46.8857413],[7.009506,46.8890365],[6.9963281,46.8978573],[6.9913386,46.9017287],[6.9869302,46.9045934],[6.9854757,46.9064718],[6.9812654,46.909446],[6.9844682,46.9119828],[6.9817686,46.9135839],[6.9874931,46.9181718],[6.9855095,46.9204644],[6.9813046,46.9220936],[6.9767208,46.9228601],[6.9742186,46.9211221],[6.9715337,46.9211899],[6.9691885,46.9232612],[6.9649015,46.9243876],[6.9606699,46.928447],[6.9285398,46.9527101]]],[[[7.2370801,46.5537934],[7.2371593,46.5463538],[7.2389007,46.5455029],[7.2426924,46.5411806],[7.2446555,46.5399769],[7.2460322,46.5374655],[7.2447387,46.5331887],[7.2468249,46.5309539],[7.2466083,46.5291956],[7.247924,46.5255676],[7.2479584,46.5223028],[7.2491896,46.5211263],[7.2489739,46.5172385],[7.2474165,46.5145195],[7.2487349,46.5128733],[7.2464185,46.5085315],[7.2465777,46.5061812],[7.2450425,46.5053219],[7.2446353,46.5012709],[7.2425158,46.4996293],[7.2410267,46.4968705],[7.2343766,46.4940729],[7.2360168,46.4913316],[7.2361942,46.4880272],[7.2241725,46.4868767],[7.2249853,46.4774797],[7.2273151,46.4724222],[7.230865,46.4665242],[7.2289064,46.4623331],[7.2298217,46.4616034],[7.2288975,46.4589201],[7.2263691,46.4574702],[7.2323341,46.4539369],[7.2259786,46.4516471],[7.2270354,46.4494766],[7.2251545,46.4442762],[7.2225753,46.4420081],[7.2188718,46.441373],[7.2131424,46.4395041],[7.2051532,46.4391434],[7.2005132,46.4407991],[7.1987577,46.4401534],[7.1949568,46.4406126],[7.1925475,46.4352208],[7.1928233,46.4337588],[7.199156,46.4292597],[7.2003986,46.4259701],[7.2036185,46.4220651],[7.2063561,46.4212416],[7.2067756,46.419297],[7.2098734,46.4162765],[7.2084517,46.4138495],[7.2069421,46.4083834],[7.2077898,46.4029777],[7.2045366,46.4004125],[7.2037459,46.3972084],[7.2019115,46.3954703],[7.2008621,46.3928592],[7.1983951,46.3906489],[7.198501,46.3894525],[7.1949446,46.3848984],[7.1937111,46.3789307],[7.2035274,46.3787041],[7.2058096,46.3795745],[7.2074364,46.3775956],[7.2073249,46.3734149],[7.2096864,46.3722173],[7.2108871,46.3676978],[7.2161096,46.3619942],[7.2191636,46.361963],[7.2263584,46.3650271],[7.2275382,46.3635072],[7.2277777,46.3611189],[7.2262087,46.3590832],[7.2245287,46.3592945],[7.2188867,46.357534],[7.2225572,46.3485723],[7.2217297,46.3294194],[7.2147009,46.3253362],[7.2088266,46.3235401],[7.2095893,46.3196139],[7.2084115,46.3176264],[7.2054081,46.3152855],[7.2055595,46.3141383],[7.1995191,46.3125618],[7.1955293,46.3097498],[7.1946165,46.3078064],[7.190104,46.304533],[7.1890894,46.3027549],[7.1892551,46.2951699],[7.1969555,46.2891276],[7.1938859,46.2883793],[7.194847,46.285679],[7.1902936,46.2850046],[7.1863146,46.2828413],[7.1873805,46.2783869],[7.1894166,46.2729058],[7.1884263,46.2706654],[7.1837233,46.2684712],[7.178157,46.268581],[7.1756826,46.265756],[7.1719798,46.2626431],[7.1715274,46.2610946],[7.1673049,46.2588355],[7.1652166,46.256345],[7.1606069,46.2532154],[7.1552397,46.2527511],[7.1517751,46.2480756],[7.1514276,46.2447209],[7.1501486,46.2430785],[7.1452135,46.2415929],[7.1409912,46.2379069],[7.1351059,46.2365508],[7.1261652,46.2371711],[7.1241673,46.2359268],[7.1234349,46.2324974],[7.1212323,46.2293089],[7.122249,46.2233514],[7.1199556,46.2227929],[7.1156664,46.2176886],[7.1062519,46.2110149],[7.101389,46.209442],[7.0995942,46.2079089],[7.0961661,46.2075149],[7.0936332,46.2048489],[7.0881229,46.2015332],[7.0859709,46.201391],[7.0817243,46.1997646],[7.0769759,46.1989643],[7.0712504,46.201008],[7.0639811,46.1994351],[7.0590004,46.1959917],[7.0562343,46.1956996],[7.0440141,46.1901147],[7.0374752,46.18802],[7.0325304,46.1874349],[7.0312273,46.1906736],[7.0289903,46.1919301],[7.0249592,46.1977189],[7.0202901,46.201594],[7.0122939,46.2050979],[7.009649,46.2150781],[7.0076889,46.2210253],[7.0036673,46.2232317],[7.0025265,46.2255437],[7.0028102,46.2293158],[7.0019592,46.2331098],[7.0002249,46.2345765],[6.9957862,46.2368051],[6.994404,46.2395869],[6.9901985,46.2433351],[6.9888828,46.2454735],[6.9880822,46.2511743],[6.9859671,46.2536392],[6.9809725,46.2561762],[6.9742735,46.260646],[6.9665271,46.2672843],[6.9648457,46.2692576],[6.9609854,46.2822378],[6.958558,46.2852197],[6.9510016,46.290383],[6.9473989,46.2922507],[6.9431342,46.2936768],[6.9389012,46.2959244],[6.9361624,46.2993645],[6.9356546,46.3049376],[6.9321615,46.3152435],[6.9317906,46.3180125],[6.9324397,46.3225392],[6.9309947,46.3285855],[6.9299019,46.3302108],[6.921311,46.3378035],[6.9195286,46.338862],[6.9149656,46.3395998],[6.904439,46.3385448],[6.9005028,46.3387541],[6.8958622,46.3405798],[6.8938788,46.342233],[6.8880778,46.3494718],[6.8838405,46.3519556],[6.8821691,46.3536622],[6.8823007,46.3572373],[6.8852836,46.3614733],[6.8868253,46.3652946],[6.8862456,46.3726236],[6.8852804,46.3754794],[6.8835342,46.37718],[6.8789552,46.380054],[6.8753408,46.3813854],[6.8695314,46.3862409],[6.8619757,46.391438],[6.8553669,46.3978634],[6.8248719,46.4246181],[6.8210834,46.4271524],[6.6818777,46.4543368],[6.519124,46.4563726],[6.4256379,46.4158117],[6.3352077,46.4037215],[6.2529745,46.3604259],[6.2414031,46.343623],[6.2071311,46.3550866],[6.2020264,46.3547694],[6.1999461,46.355634],[6.1974022,46.3604753],[6.1921446,46.36069],[6.1880249,46.3603021],[6.1802569,46.3645729],[6.1744205,46.362375],[6.1762584,46.3600398],[6.1711096,46.3583947],[6.1730468,46.3546416],[6.1803315,46.352767],[6.1862765,46.3495317],[6.1888176,46.3501194],[6.1914582,46.3485957],[6.1948935,46.3486105],[6.1931357,46.3437112],[6.2035839,46.3388251],[6.2070266,46.3388442],[6.2325389,46.3307478],[6.2195646,46.3118838],[6.207893,46.3002647],[6.1969214,46.2865786],[6.1734432,46.2944011],[6.1669346,46.2952316],[6.159617,46.2977169],[6.1533913,46.2991564],[6.1506393,46.3009815],[6.1407461,46.3047331],[6.1407859,46.3054038],[6.1346939,46.3088838],[6.1337039,46.3105064],[6.1299092,46.3128121],[6.125947,46.3161737],[6.1257903,46.3174628],[6.1252326,46.3190851],[6.1269579,46.321241],[6.1315305,46.3240835],[6.1352994,46.3294377],[6.137087,46.3307266],[6.1363857,46.332178],[6.1391625,46.334863],[6.1372375,46.3356353],[6.137805,46.3383056],[6.140796,46.3404107],[6.1493997,46.3427131],[6.1520875,46.3464258],[6.1577609,46.3499541],[6.1575235,46.3527837],[6.1592812,46.3573121],[6.161499,46.3599684],[6.1699166,46.3660835],[6.1697331,46.3678262],[6.1658976,46.3719311],[6.1610515,46.3749446],[6.1605095,46.3787519],[6.1584411,46.3797929],[6.1571333,46.3778091],[6.1496833,46.3774802],[6.1466418,46.3801513],[6.1347187,46.3887001],[6.1319234,46.3898912],[6.1130035,46.4000404],[6.1136943,46.3969597],[6.1092193,46.3996172],[6.1064054,46.3993889],[6.1007119,46.4044079],[6.0994855,46.4074449],[6.0976447,46.4091536],[6.0862833,46.4114238],[6.06762,46.4148986],[6.0638578,46.4163952],[6.0705879,46.4255232],[6.073894,46.4283619],[6.0745787,46.4321624],[6.0856139,46.4408404],[6.0864075,46.4439338],[6.0843926,46.4474975],[6.0785888,46.4503609],[6.0744422,46.4534893],[6.0769007,46.4576285],[6.0735152,46.4598961],[6.0738794,46.463513],[6.0727971,46.4654414],[6.077095,46.4675001],[6.0852899,46.4734594],[6.0969537,46.4812348],[6.0990389,46.4845796],[6.1040257,46.4946075],[6.1100709,46.5042416],[6.1126314,46.5095962],[6.121619,46.5177229],[6.1379861,46.530994],[6.143689,46.5277477],[6.1534965,46.5367993],[6.1485873,46.5393588],[6.1566588,46.5452979],[6.1381423,46.5576867],[6.1105266,46.5764782],[6.1149223,46.5798578],[6.1217537,46.5839777],[6.1238977,46.5874258],[6.1265103,46.5899378],[6.1300191,46.5916668],[6.1395771,46.5976343],[6.141831,46.5981268],[6.148074,46.6021976],[6.153887,46.6041212],[6.1579708,46.6078481],[6.1612164,46.6099761],[6.1652701,46.6100583],[6.171604,46.6125175],[6.1782719,46.6156437],[6.1789915,46.6199565],[6.1830415,46.6212518],[6.1852312,46.6235103],[6.1908095,46.6252722],[6.1965072,46.6284838],[6.1972019,46.629986],[6.2005814,46.6335025],[6.1995491,46.6343688],[6.2041117,46.6360824],[6.2075361,46.6354037],[6.2130333,46.6398566],[6.2128338,46.6410564],[6.2174558,46.6422732],[6.2166351,46.6431099],[6.2190268,46.6450815],[6.2238081,46.6462154],[6.2275505,46.6481643],[6.2306411,46.6513729],[6.2327228,46.6544316],[6.238152,46.657612],[6.2423762,46.660933],[6.2530932,46.6671431],[6.2672694,46.6761435],[6.2688174,46.6799921],[6.2691826,46.682498],[6.2794122,46.6875613],[6.2829788,46.6913411],[6.28521,46.691363],[6.2917626,46.692963],[6.2949532,46.6944122],[6.2972368,46.6943976],[6.316103,46.7028631],[6.3251663,46.7065303],[6.3272251,46.7062581],[6.3413046,46.7101475],[6.3494213,46.7144362],[6.3522178,46.7148823],[6.3538919,46.718228],[6.3572949,46.7197313],[6.3601973,46.7231413],[6.3612741,46.7224194],[6.366042,46.7224488],[6.3666844,46.7231879],[6.3718638,46.724116],[6.3713606,46.7291764],[6.370416,46.7304632],[6.3751254,46.7311546],[6.3790728,46.7304222],[6.3842182,46.7311628],[6.3894385,46.7351521],[6.3919997,46.7388582],[6.390241,46.7422047],[6.3883324,46.7433692],[6.3953484,46.7484084],[6.4197553,46.7531249],[6.4247178,46.7543508],[6.4304476,46.7567179],[6.4382444,46.7615961],[6.4385257,46.766509],[6.4490885,46.7730711],[6.4524,46.7739825],[6.4519129,46.7783948],[6.4584751,46.7885479],[6.4416511,46.7977508],[6.4347681,46.8013187],[6.4312749,46.8122341],[6.4408312,46.8158214],[6.4395167,46.8239807],[6.4431544,46.8327141],[6.4576338,46.8486908],[6.4601921,46.8512939],[6.465526,46.8508428],[6.4666845,46.8478427],[6.4708808,46.8471395],[6.4822708,46.8466022],[6.5045555,46.8523775],[6.5145111,46.8547984],[6.5234745,46.8565738],[6.5286929,46.8590605],[6.5377662,46.8668449],[6.5451743,46.8685982],[6.5496428,46.871836],[6.5531734,46.8732486],[6.5563006,46.8731633],[6.559907,46.8740709],[6.5704338,46.8788475],[6.57484,46.8804588],[6.5872571,46.8841607],[6.5933634,46.8843244],[6.5985231,46.8835931],[6.6063589,46.8867717],[6.6146354,46.8889332],[6.6270861,46.8887095],[6.6454921,46.9061629],[6.6472295,46.9106982],[6.6540211,46.9133788],[6.6548556,46.9141204],[6.668523,46.920557],[6.6893966,46.927053],[6.7156266,46.9347871],[6.7208324,46.9360868],[6.7202114,46.9337987],[6.7218707,46.9317344],[6.7237077,46.9311151],[6.7208625,46.9258235],[6.7175375,46.9158596],[6.717768,46.9117071],[6.7167059,46.9060735],[6.7210012,46.9053809],[6.7266721,46.9019324],[6.7401148,46.8948101],[6.7380106,46.8845593],[6.7406666,46.8835527],[6.7392548,46.8787005],[6.7368009,46.8738118],[6.7340588,46.8717991],[6.7346488,46.8690572],[6.7400055,46.8719767],[6.7506075,46.8711296],[6.7553255,46.8704553],[6.7800504,46.8526396],[6.7423106,46.8274523],[6.7674248,46.8086653],[6.7769606,46.8024261],[6.7788139,46.8005697],[6.7840749,46.8031317],[6.7873048,46.7996184],[6.7785838,46.7938861],[6.7759875,46.7897489],[6.7771338,46.789108],[6.7830155,46.7933832],[6.7930886,46.7856719],[6.7979408,46.7828742],[6.8046575,46.7856418],[6.8088791,46.7835001],[6.8134455,46.7802669],[6.8124258,46.7789268],[6.8154204,46.7778734],[6.8184094,46.7777143],[6.8217056,46.7762899],[6.8256351,46.7729161],[6.8280685,46.7766252],[6.8330846,46.7745389],[6.8363333,46.776095],[6.8371766,46.7781726],[6.8396723,46.7809477],[6.8432122,46.7787163],[6.848524,46.7809118],[6.8504911,46.7823491],[6.849228,46.7840495],[6.8590959,46.7880013],[6.8638017,46.7852829],[6.86189,46.7831679],[6.8648622,46.7805646],[6.8693378,46.7796244],[6.871808,46.7781411],[6.879551,46.7752984],[6.8881335,46.7782698],[6.8942062,46.7772937],[6.8950216,46.7791026],[6.89983,46.7800573],[6.8991251,46.7815917],[6.9050533,46.7815435],[6.9083369,46.7820149],[6.910997,46.779708],[6.9121992,46.7813566],[6.9159628,46.7835259],[6.9172181,46.7853218],[6.9164525,46.7876924],[6.9208339,46.7947825],[6.9216746,46.7971552],[6.9254499,46.7982445],[6.9276538,46.801636],[6.9306056,46.8030887],[6.931462,46.8056899],[6.9281561,46.8075373],[6.9274232,46.8090536],[6.922474,46.8086891],[6.9200006,46.8105682],[6.9148024,46.80741],[6.9158064,46.8066547],[6.9113484,46.8031322],[6.9049286,46.806476],[6.9079017,46.8090237],[6.9108001,46.8125424],[6.9076774,46.8177846],[6.9076462,46.8199046],[6.9048811,46.8251248],[6.9069703,46.8285666],[6.907402,46.8341923],[6.9101726,46.8387639],[6.920406,46.8480741],[6.9306269,46.8532403],[6.9288504,46.8549393],[6.9271506,46.854539],[6.924158,46.8594621],[6.9223664,46.8590625],[6.9199349,46.8604353],[6.9177791,46.8631938],[6.915682,46.8630406],[6.9128723,46.8659331],[6.8964664,46.8612291],[6.8918722,46.8649556],[6.8965699,46.8659053],[6.8984683,46.8670405],[6.9007587,46.8663682],[6.9049699,46.8684109],[6.9096129,46.8694908],[6.9117666,46.8671469],[6.9165534,46.8687766],[6.915836,46.8695164],[6.9210072,46.8713286],[6.9107988,46.8806227],[6.9069566,46.8786201],[6.9053351,46.8803311],[6.9036605,46.8794257],[6.9010725,46.8821285],[6.8946496,46.8849954],[6.891714,46.8867247],[6.8817073,46.8957484],[6.8658539,46.9094778],[6.8962117,46.9253232],[6.9214154,46.9055638],[6.9267686,46.9010545],[6.9300164,46.89909],[6.9290116,46.8979116],[6.9236811,46.8949856],[6.9259194,46.8926682],[6.9292775,46.8933349],[6.9331338,46.8925416],[6.93601,46.8887861],[6.9383671,46.889966],[6.9414606,46.8860832],[6.9424623,46.8837329],[6.9457203,46.8830462],[6.9485969,46.8789713],[6.9512177,46.8779068],[6.9505076,46.8757552],[6.953955,46.875389],[6.9579045,46.8707808],[6.9602308,46.8714412],[6.9648846,46.8653897],[6.9694384,46.8673379],[6.9643698,46.873191],[6.9649301,46.8737249],[6.9621631,46.877287],[6.961162,46.8772004],[6.9581143,46.8814515],[6.9605934,46.8824863],[6.966373,46.883397],[6.9710801,46.8851023],[6.9703542,46.8864646],[6.973755,46.8873141],[6.9763981,46.8840703],[6.977741,46.8842222],[6.9806263,46.8818198],[6.9888965,46.8734577],[6.9864814,46.8707408],[6.9792566,46.8656875],[6.9769452,46.860525],[6.980585,46.8580151],[6.9778141,46.8549557],[6.9793187,46.8532673],[6.9778098,46.851871],[6.9778885,46.849966],[6.9804458,46.8482226],[6.9794679,46.8469432],[6.9814764,46.8457087],[6.9844165,46.8467144],[6.9886556,46.8434924],[6.9884551,46.8420814],[6.9859937,46.8400666],[6.9830761,46.839823],[6.9869873,46.8371754],[6.9859939,46.8351611],[6.9878389,46.8341421],[6.9923637,46.8331702],[6.9923727,46.8303973],[6.9896823,46.8281582],[6.989697,46.8264042],[6.9853965,46.8235086],[6.9847545,46.8219318],[6.9793074,46.8229445],[6.9748248,46.8230163],[6.9727516,46.8245726],[6.9698297,46.82475],[6.9682122,46.8269277],[6.9653291,46.8277508],[6.9610564,46.8239219],[6.9578527,46.818736],[6.9595666,46.8175738],[6.9565109,46.8149343],[6.9592868,46.8122203],[6.9577891,46.8112065],[6.9646923,46.8054513],[6.9634833,46.8043938],[6.9666165,46.8026527],[6.9660016,46.8010759],[6.96304,46.7997143],[6.9603079,46.7976069],[6.9559837,46.7934057],[6.956882,46.7925549],[6.9575769,46.7882892],[6.9568914,46.7873903],[6.9516289,46.7852537],[6.9500723,46.7827119],[6.9475289,46.7830131],[6.9457328,46.7845249],[6.9417719,46.7835331],[6.9393295,46.780848],[6.9340684,46.7765921],[6.9312482,46.7725084],[6.9353166,46.7716153],[6.9321274,46.7701548],[6.9276287,46.7665206],[6.9229716,46.762005],[6.9201146,46.7598576],[6.9144348,46.7627257],[6.911589,46.7610312],[6.9082457,46.7572162],[6.9118168,46.7545881],[6.9147531,46.7532678],[6.9166838,46.754614],[6.9200214,46.7513026],[6.9242863,46.7522298],[6.9292497,46.7540636],[6.9308795,46.7540446],[6.9329079,46.7519747],[6.9379664,46.7494706],[6.939564,46.745711],[6.9411079,46.7451393],[6.9395351,46.7416038],[6.936355,46.7383818],[6.9350123,46.7358957],[6.9366005,46.7344099],[6.9355937,46.733222],[6.9304007,46.7301744],[6.9221469,46.72355],[6.9200087,46.720579],[6.9180546,46.7190991],[6.9113897,46.7179074],[6.9070416,46.7148393],[6.9037895,46.7133899],[6.8990514,46.7096331],[6.8965772,46.7063459],[6.8944252,46.7055537],[6.8923121,46.7025811],[6.8944621,46.7012807],[6.8915658,46.6974528],[6.8916144,46.6960713],[6.889598,46.6938822],[6.8879029,46.6943244],[6.883696,46.6900095],[6.8810118,46.6900528],[6.8753124,46.6848412],[6.8731252,46.6833222],[6.8684066,46.6857263],[6.8627672,46.681018],[6.8640073,46.6769094],[6.8717129,46.6732507],[6.8675089,46.6693211],[6.8643991,46.6647609],[6.8683388,46.6629667],[6.8680103,46.6607642],[6.8658758,46.6589395],[6.8630236,46.6583841],[6.8593903,46.6599495],[6.8566735,46.6573636],[6.8535257,46.6554594],[6.8452204,46.6583877],[6.8421703,46.6588362],[6.8441189,46.6608414],[6.8383801,46.6625735],[6.8362709,46.6614708],[6.8333886,46.6622278],[6.8313923,46.6598261],[6.8289146,46.6605559],[6.8259144,46.658316],[6.8208867,46.6517925],[6.8172869,46.6492337],[6.818509,46.6477989],[6.8145808,46.6474713],[6.8134382,46.6495331],[6.8069443,46.6506044],[6.8020339,46.6488941],[6.7989442,46.6491728],[6.7987887,46.6478098],[6.8036721,46.6456712],[6.8017101,46.6442074],[6.7989453,46.6395948],[6.7981968,46.6356446],[6.7969217,46.6331413],[6.7983753,46.630157],[6.800433,46.629913],[6.8022587,46.6274945],[6.8019683,46.6250683],[6.803462,46.6223694],[6.8025836,46.6188406],[6.8029648,46.6161525],[6.8018491,46.6155535],[6.8038989,46.6093963],[6.8019459,46.6007388],[6.7983334,46.5998637],[6.8001987,46.5936172],[6.8012367,46.5925005],[6.798513,46.5860399],[6.7994805,46.5855877],[6.7989409,46.5820535],[6.7961137,46.5793163],[6.7962569,46.5772839],[6.7949063,46.5753149],[6.7994856,46.5740671],[6.8025615,46.5749146],[6.8048929,46.5779243],[6.8079401,46.5776062],[6.8093977,46.5788466],[6.8132144,46.5784089],[6.8115473,46.5811116],[6.8140889,46.5838466],[6.8141065,46.5856653],[6.8209682,46.5833223],[6.8238032,46.5774477],[6.8269284,46.5779646],[6.8292679,46.5763693],[6.8348503,46.575334],[6.8369146,46.5774848],[6.839818,46.5789601],[6.842283,46.5823347],[6.8453213,46.582759],[6.8463385,46.5839124],[6.848984,46.5830166],[6.8514341,46.5810682],[6.8526159,46.5819747],[6.8574921,46.5800975],[6.8599639,46.5798658],[6.8655392,46.577248],[6.8702654,46.5721007],[6.8744622,46.5649682],[6.8794338,46.5671286],[6.8845046,46.5619508],[6.8863583,46.5628312],[6.8864511,46.5650221],[6.8881682,46.5676981],[6.8902933,46.5674551],[6.8953811,46.5691636],[6.897978,46.5705923],[6.9016508,46.5697244],[6.8991825,46.5667085],[6.8996626,46.5634837],[6.9022788,46.5613879],[6.8991736,46.5596737],[6.8970768,46.5605346],[6.8943429,46.5598161],[6.8907168,46.5578338],[6.8888586,46.5583456],[6.8848687,46.5547137],[6.8755634,46.5475563],[6.8741443,46.5456238],[6.8692414,46.5433409],[6.8679236,46.5412455],[6.8649848,46.5389569],[6.8624603,46.535167],[6.861957,46.531086],[6.8589689,46.5308641],[6.858502,46.5333702],[6.8599942,46.5360777],[6.8563129,46.5373044],[6.8567928,46.5382892],[6.8550051,46.541436],[6.8508114,46.5410925],[6.8444554,46.5389596],[6.8362356,46.5377349],[6.8251865,46.5380134],[6.8248039,46.5416018],[6.8211383,46.5390896],[6.8209715,46.5379848],[6.8182773,46.5364942],[6.8177174,46.5325728],[6.8132756,46.5272031],[6.8108786,46.5251265],[6.8153365,46.5213924],[6.8181049,46.5165034],[6.822626,46.5141079],[6.8247633,46.5121845],[6.8303442,46.5124625],[6.8321985,46.5074057],[6.8323946,46.5054402],[6.837838,46.4994865],[6.8429414,46.4963228],[6.8455432,46.4966656],[6.8489067,46.4933714],[6.8572886,46.4930522],[6.8627644,46.4938442],[6.8647492,46.4985114],[6.8663412,46.5007886],[6.8724362,46.5043069],[6.8743185,46.5063545],[6.8796157,46.510262],[6.8816774,46.5125716],[6.895309,46.5192776],[6.8971793,46.5191924],[6.8976696,46.5148252],[6.8960261,46.5129585],[6.8949922,46.5092741],[6.896853,46.5088719],[6.8997441,46.510392],[6.9014186,46.5123305],[6.9041618,46.5131921],[6.9100668,46.5123469],[6.9126002,46.512677],[6.9134397,46.5110746],[6.9167001,46.5105527],[6.9198519,46.5087846],[6.9250088,46.5076708],[6.9275895,46.5046703],[6.9307694,46.50472],[6.9333003,46.5018908],[6.9362165,46.5010226],[6.9421015,46.5018719],[6.9478648,46.5013039],[6.9507056,46.5026067],[6.9542021,46.5019078],[6.9559087,46.4997324],[6.9634185,46.4962444],[6.9655927,46.4931592],[6.972785,46.4898813],[6.9724079,46.4855073],[6.9739226,46.4827111],[6.9737396,46.4814289],[6.9758142,46.4783959],[6.9813247,46.4753879],[6.9778291,46.4728904],[6.9789183,46.4703581],[6.978201,46.4674495],[6.9789491,46.4667329],[6.9789686,46.4613805],[6.9801608,46.4589564],[6.9826995,46.4589037],[6.9843702,46.4568144],[6.9894121,46.4531282],[6.9921162,46.448794],[6.988226,46.4439659],[6.9847021,46.4405334],[6.9839428,46.4379936],[6.9874565,46.4379357],[6.9928226,46.4388835],[6.9990729,46.4415347],[7.002506,46.443437],[7.0081292,46.4448799],[7.0121502,46.4465593],[7.017202,46.4479185],[7.019808,46.4525611],[7.0211931,46.4585934],[7.0202363,46.4594445],[7.0248667,46.4633297],[7.026774,46.4641732],[7.0284593,46.4668151],[7.0385193,46.4743174],[7.0440669,46.4765822],[7.0477495,46.4789761],[7.0509224,46.4818233],[7.0544303,46.4827456],[7.0590933,46.4852241],[7.0610898,46.4872734],[7.065826,46.4890399],[7.070031,46.4869878],[7.0724007,46.4864002],[7.077589,46.4888329],[7.082429,46.4877745],[7.0869577,46.4877887],[7.0889065,46.486931],[7.0980222,46.4884061],[7.100368,46.4869874],[7.1029981,46.4878594],[7.106161,46.4902338],[7.1066793,46.4922223],[7.1101703,46.4948003],[7.1126797,46.4953437],[7.1180972,46.497546],[7.1227892,46.4986902],[7.1265894,46.5027711],[7.130955,46.5046637],[7.1362354,46.5086078],[7.1370379,46.51308],[7.1400504,46.5168789],[7.1404421,46.5198767],[7.1431837,46.5218286],[7.1436957,46.524748],[7.1453015,46.5270143],[7.1483836,46.5284754],[7.1528526,46.5273322],[7.1589323,46.5269194],[7.1634618,46.5285459],[7.1670947,46.5310119],[7.174205,46.5340882],[7.1808169,46.5380067],[7.1823391,46.5383699],[7.1873278,46.5425883],[7.1934221,46.5461361],[7.2008133,46.5416919],[7.201075,46.5400003],[7.2076536,46.5329056],[7.2099203,46.5341535],[7.216882,46.5404919],[7.2181088,46.5421145],[7.2217056,46.5448067],[7.2225353,46.5469451],[7.2254276,46.5492337],[7.2308684,46.5513039],[7.2327686,46.5515261],[7.2357436,46.5537652],[7.2370801,46.5537934]],[[6.7844495,46.7354226],[6.7841215,46.7388244],[6.7849262,46.7457949],[6.7862669,46.7476073],[6.7828894,46.7487838],[6.7788309,46.7511397],[6.7761098,46.7493939],[6.7730139,46.7513623],[6.7682742,46.7444826],[6.7652826,46.7430248],[6.7597049,46.739084],[6.7590494,46.73747],[6.7526548,46.7365589],[6.7487034,46.7318004],[6.7517331,46.7282234],[6.7578259,46.7260693],[6.7602628,46.7230936],[6.7585574,46.7219724],[6.761773,46.7187712],[6.7624116,46.7173696],[6.7706665,46.720654],[6.7773991,46.7261143],[6.7768074,46.7286933],[6.7781894,46.7303611],[6.7827056,46.7329827],[6.7844495,46.7354226]],[[6.8461473,46.7713278],[6.8483417,46.7703146],[6.8442698,46.7650595],[6.8406499,46.7626468],[6.8366519,46.7610357],[6.8318376,46.7572512],[6.8293254,46.7560691],[6.8282209,46.7544737],[6.8290733,46.7530798],[6.8270657,46.7503489],[6.8236202,46.7480882],[6.8210575,46.7444328],[6.8154799,46.7403962],[6.8163833,46.7386114],[6.8145937,46.7372774],[6.8105012,46.737441],[6.8059504,46.7353916],[6.804012,46.7368623],[6.8012548,46.7351337],[6.7981157,46.7340572],[6.7935148,46.7357377],[6.7910649,46.7309813],[6.7879133,46.7293593],[6.788464,46.7279576],[6.7912211,46.7271043],[6.7929825,46.7255549],[6.7998091,46.7268119],[6.8018448,46.7261907],[6.8044945,46.7274041],[6.8095923,46.7273755],[6.8118429,46.7285237],[6.8174872,46.7332838],[6.8216693,46.7343234],[6.8326854,46.7349727],[6.8351806,46.7333472],[6.8384337,46.732512],[6.8441825,46.7292124],[6.8520361,46.7264092],[6.8572085,46.7260181],[6.8618707,46.7245832],[6.8645302,46.7252043],[6.8679289,46.7284171],[6.8654108,46.7293255],[6.8668506,46.7308684],[6.8661651,46.7330173],[6.8820937,46.7498031],[6.8801014,46.7518223],[6.8757558,46.753895],[6.8769959,46.7558774],[6.8745026,46.7573053],[6.8696219,46.758518],[6.8654046,46.7625678],[6.8606254,46.7629267],[6.8595957,46.7637657],[6.8601484,46.7664007],[6.8572264,46.7677498],[6.8562161,46.7705682],[6.854426,46.7720228],[6.8512665,46.7722877],[6.8521406,46.7743625],[6.849065,46.7754175],[6.8461473,46.7713278]],[[6.166794,46.3430818],[6.1713097,46.3407259],[6.1726341,46.3416292],[6.1722513,46.3444391],[6.17454,46.3469138],[6.1769127,46.3453845],[6.1816956,46.3436795],[6.1844365,46.3458401],[6.1755723,46.3513208],[6.173961,46.3489415],[6.1718112,46.349835],[6.166794,46.3430818]]]]},"properties":{"ID_0":223,"ISO":"CH-VD","NAME_0":"Switzerland","ID_1":24,"NAME_1":"Vaud","TYPE_1":"Canton|Kanton|Chantun","ENGTYPE_1":"Canton","NL_NAME_1":null,"VARNAME_1":"Vad|Waadt|Waadtland"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson
new file mode 100644
index 0000000..988c032
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson
@@ -0,0 +1,79 @@
+{"type":"FeatureCollection", "features": [
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.98065948486334,16.27746963500988],[104.99154663085966,16.270820617675838],[104.99800109863304,16.263059616088867],[105.01580810546886,16.244607925415153],[105.01872253417986,16.239280700683594],[105.01821899414085,16.2246608734132],[105.01452636718767,16.208232879638786],[105.01317596435564,16.19585990905773],[105.01523590087902,16.187160491943416],[105.0205001831057,16.180284500122127],[105.02320861816435,16.17135047912609],[105.02855682373075,16.15892028808605],[105.02921295166033,16.149320602417106],[105.0353622436524,16.141929626464957],[105.03840637207037,16.133050918579045],[105.04032135009771,16.117469787597713],[105.04315948486328,16.107429504394645],[105.04841613769543,16.10106086730957],[105.06275939941423,16.09553909301752],[105.0559921264649,16.091289520263786],[105.04612731933605,16.09308052062994],[105.0377578735351,16.081251144409293],[105.03695678710966,16.076431274414062],[105.03372192382841,16.07438087463379],[105.0298080444336,16.068269729614258],[105.02645111084013,16.0597381591798],[105.02722930908232,16.053979873657283],[105.0223999023438,16.044549942016545],[105.0168228149414,16.0372695922851],[105.01068878173845,16.0316104888916],[105.00779724121105,16.026521682739315],[105.00543975830101,16.015071868896484],[105.0067977905274,16.007120132446403],[105.01084899902355,15.999820709228516],[105.00720977783232,15.99297046661377],[105.00937652587908,15.983131408691406],[105.01259613037126,15.976801872253475],[105.01072692871094,15.967310905456657],[105.01145935058611,15.962691307067871],[105.00197601318365,15.94856071472168],[104.99888610839861,15.945240020751896],[104.98452758789074,15.93972015380865],[104.97912597656256,15.935171127319279],[104.97653961181635,15.92793178558361],[104.97431945800787,15.912080764770565],[104.98355865478544,15.909170150756893],[104.9920425415039,15.909429550170842],[104.9848327636721,15.89995098114025],[104.98149108886713,15.88770961761469],[104.97486114501953,15.872058868408203],[104.96572875976562,15.858880996704158],[104.96543884277372,15.83858966827404],[104.9669113159182,15.83033084869379],[104.96723937988281,15.810750961303768],[104.96611022949219,15.801071166992244],[104.96143341064482,15.786898612976017],[104.95516204833979,15.78119945526123],[104.93605041503935,15.770870208740348],[104.91185760498058,15.761672019958496],[104.90724945068388,15.752731323242188],[104.90709686279291,15.746641159057674],[104.90891265869146,15.734171867370662],[104.90891265869146,15.725820541381893],[104.90254211425798,15.714889526367301],[104.90061187744135,15.708449363708496],[104.89958953857428,15.698430061340446],[104.89348602294928,15.68704986572277],[104.89524078369169,15.67918968200695],[104.89710998535162,15.652271270751896],[104.9116668701173,15.644890785217399],[104.92714691162126,15.640421867370549],[104.93109130859403,15.641630172729435],[104.93564605712896,15.635800361633358],[104.93152618408197,15.634041786193961],[104.93353271484398,15.627959251403809],[104.92913818359398,15.623490333557186],[104.93267822265642,15.61676025390625],[104.92604064941406,15.612531661987362],[104.92629241943365,15.60713005065918],[104.92884063720697,15.601019859313908],[104.92524719238298,15.59838962554943],[104.91963958740263,15.598469734192008],[104.91361999511736,15.59391117095953],[104.91044616699241,15.594670295715446],[104.90309906005854,15.586200714111385],[104.89913177490251,15.584622383117676],[104.89433288574213,15.575411796569824],[104.88820648193371,15.572799682617301],[104.89052581787126,15.567839622497502],[104.89707183837896,15.562639236450195],[104.8936691284182,15.560120582580566],[104.89270019531256,15.552909851074276],[104.88806152343767,15.54603099822998],[104.88471984863287,15.544851303100643],[104.88359069824247,15.536511421203556],[104.87203979492205,15.538311958313045],[104.8763122558596,15.544561386108398],[104.87425231933622,15.547731399536133],[104.86691284179688,15.547611236572266],[104.86753082275413,15.55935001373291],[104.87267303466803,15.558328628540153],[104.87816619873047,15.562450408935547],[104.86959075927734,15.56603145599371],[104.87005615234403,15.570671081543082],[104.8637084960938,15.577699661254883],[104.86181640625023,15.575769424438477],[104.85356903076172,15.575810432434025],[104.84953308105486,15.572310447692928],[104.8466262817384,15.576149940490723],[104.84665679931658,15.58203029632574],[104.84021759033203,15.579039573669547],[104.8405990600586,15.588471412658805],[104.83354187011719,15.588861465454215],[104.82969665527361,15.583499908447322],[104.82634735107428,15.583370208740348],[104.81961822509766,15.59144115447998],[104.81723785400419,15.598271369934196],[104.81362915039074,15.599960327148438],[104.81257629394537,15.60403060913086],[104.80631256103538,15.596180915832633],[104.80594635009771,15.592089653015194],[104.79892730712919,15.592949867248592],[104.79576110839844,15.599540710449219],[104.7911682128908,15.601539611816463],[104.78798675537115,15.609588623046989],[104.79013824462919,15.613710403442383],[104.78203582763672,15.618900299072266],[104.78021240234403,15.62593078613287],[104.77143096923834,15.628641128540096],[104.76657104492205,15.633770942688102],[104.7620697021485,15.631240844726562],[104.7561798095706,15.63854122161871],[104.74839019775402,15.640961647033691],[104.74703979492216,15.649700164794979],[104.74385070800798,15.654621124267578],[104.7367477416995,15.653658866882381],[104.73699951171892,15.648760795593375],[104.72431182861334,15.649852752685547],[104.72518920898438,15.653020858764762],[104.71639251709001,15.658729553222713],[104.71169281005865,15.656330108642578],[104.6998291015625,15.656061172485352],[104.69535064697294,15.659180641174373],[104.68704223632812,15.668812751770076],[104.68080902099632,15.670021057128963],[104.67540740966797,15.673430442810115],[104.66364288330101,15.672320365905762],[104.6576309204101,15.673299789428654],[104.6485366821289,15.677079200744686],[104.64515686035162,15.684261322021598],[104.63449096679716,15.687290191650447],[104.62287139892607,15.685361862182617],[104.61186981201189,15.679640769958496],[104.60481262207048,15.67469120025629],[104.60369873046875,15.671469688415527],[104.606430053711,15.666310310363826],[104.61419677734375,15.661651611328239],[104.62435913085943,15.660200119018555],[104.62957000732433,15.662171363830566],[104.63275909423834,15.66063117980957],[104.64025878906244,15.645369529724178],[104.63256835937506,15.641810417175293],[104.62007141113298,15.639900207519588],[104.61635589599615,15.636280059814453],[104.616752624512,15.627801895141545],[104.61898803710943,15.622801780700684],[104.61229705810547,15.617601394653377],[104.6094818115235,15.613320350646973],[104.60427856445312,15.609750747680664],[104.58676147460943,15.60581111907959],[104.58129119873075,15.602490425109977],[104.57929229736328,15.595801353454647],[104.5865478515625,15.587261199951172],[104.58815002441435,15.56521034240734],[104.57878112792974,15.562450408935547],[104.56848907470709,15.554861068725586],[104.55683135986351,15.554331779480037],[104.54946136474621,15.540630340576286],[104.54444885253912,15.542390823364258],[104.5409774780274,15.548910140991325],[104.53582000732428,15.551250457763729],[104.52964782714838,15.55018234252941],[104.52816009521484,15.556861877441406],[104.52346801757818,15.557311058044547],[104.51239013671898,15.561440467834473],[104.51302337646496,15.569300651550293],[104.50937652587919,15.575851440429801],[104.50858306884771,15.582578659057674],[104.50211334228521,15.586859703064079],[104.49606323242182,15.587599754333553],[104.49327087402344,15.585880279540959],[104.49057006835955,15.592411994934082],[104.48352050781267,15.588479995727653],[104.46668243408214,15.585400581359863],[104.46125793457037,15.59160041809082],[104.46714782714844,15.595891952514648],[104.46948242187506,15.601651191711483],[104.46485900878906,15.604089736938533],[104.465072631836,15.610519409179744],[104.46877288818371,15.6134414672851],[104.46919250488298,15.620451927185172],[104.46650695800776,15.626250267028809],[104.46401214599621,15.626322746276855],[104.45186614990234,15.615909576416072],[104.44526672363287,15.621709823608455],[104.44593811035173,15.629320144653263],[104.44915008544916,15.63222980499279],[104.44167327880888,15.64136123657238],[104.44367980957031,15.646741867065543],[104.44851684570318,15.653270721435547],[104.44815826416044,15.659511566162053],[104.43930816650396,15.666790962219181],[104.44790649414068,15.669309616088867],[104.44673919677734,15.674461364746207],[104.44267272949213,15.675331115722713],[104.44629669189447,15.680740356445426],[104.44175720214844,15.686680793762207],[104.44380950927729,15.69775104522705],[104.43519592285185,15.699000358581543],[104.42531585693354,15.693780899047965],[104.4245681762697,15.699971199035588],[104.42218780517584,15.704620361328068],[104.42605590820324,15.706760406494254],[104.42508697509794,15.71222114562994],[104.42768859863287,15.714010238647518],[104.43305969238287,15.73547077178955],[104.4244918823245,15.739740371704215],[104.42137145996094,15.747090339660588],[104.42807769775413,15.751349449157715],[104.43253326416027,15.749119758606014],[104.4361724853515,15.754071235656795],[104.4327697753908,15.75973033905035],[104.43342590332054,15.76422023773199],[104.43018341064476,15.773059844970703],[104.43373107910173,15.779357910156364],[104.43496704101568,15.78549957275385],[104.43370056152338,15.79214096069336],[104.4422760009765,15.8046493530274],[104.43782043457037,15.808760643005371],[104.44180297851568,15.81145000457775],[104.44216918945318,15.815170288085994],[104.44703674316418,15.818461418151912],[104.45011901855486,15.830670356750488],[104.45401000976568,15.835821151733398],[104.46176147460955,15.84037017822277],[104.4623184204101,15.84414005279541],[104.45812988281267,15.85203933715826],[104.45893096923828,15.857071876525879],[104.45204925537126,15.861860275268612],[104.45021057128929,15.865999221801871],[104.4525604248048,15.870039939880428],[104.4590530395509,15.873591423034725],[104.45407867431669,15.87852954864502],[104.46026611328125,15.89087963104248],[104.45671844482428,15.895580291748104],[104.45632934570318,15.899499893188533],[104.4705810546875,15.902590751648006],[104.47135162353521,15.908271789550895],[104.46724700927746,15.909480094909725],[104.47097778320318,15.91644096374523],[104.47943115234403,15.924830436706543],[104.48378753662115,15.932209968566951],[104.48580169677751,15.93107128143322],[104.49076843261736,15.939390182495117],[104.4966430664062,15.94103145599371],[104.50225067138678,15.949159622192496],[104.50563049316423,15.948781967163086],[104.50537872314482,15.956669807434196],[104.5037002563476,15.962181091308594],[104.50315856933611,15.975172042846793],[104.50678253173845,15.980311393737736],[104.51268005371111,15.979830741882381],[104.52002716064459,15.98197078704834],[104.52555847167974,15.988520622253418],[104.52799987792974,15.998640060424918],[104.53331756591797,15.999720573425407],[104.530776977539,16.006040573120174],[104.5204391479495,16.018880844116325],[104.51815032959013,16.023971557617188],[104.52362823486334,16.030080795288143],[104.53292083740251,16.036251068115234],[104.53605651855474,16.0516300201416],[104.5414505004884,16.05820083618164],[104.55065917968767,16.074560165405387],[104.55742645263678,16.084461212158146],[104.5605010986331,16.086309432983455],[104.5636901855471,16.096498489379883],[104.5699462890625,16.09869003295904],[104.58251190185564,16.098310470581055],[104.59507751464861,16.105491638183707],[104.60746765136713,16.10655975341797],[104.60927581787132,16.111589431762752],[104.61598968505888,16.11341094970703],[104.62548828125023,16.121238708496094],[104.62953186035185,16.119251251220703],[104.64746093750028,16.121099472046012],[104.65380096435541,16.11922836303711],[104.66651916503912,16.120679855346737],[104.66847229003918,16.117811203002987],[104.67717742919945,16.11615943908697],[104.68016052246111,16.117229461670036],[104.68608856201172,16.114311218261662],[104.69699096679693,16.11174964904785],[104.70433044433605,16.11226081848139],[104.70556640625,16.10765075683588],[104.71755218505876,16.105150222778377],[104.71935272216803,16.102500915527287],[104.73068237304682,16.10012054443365],[104.7393417358399,16.100151062011832],[104.74246215820341,16.097549438476562],[104.75652313232445,16.096452713012695],[104.76519012451166,16.096628189086857],[104.77147674560558,16.099229812622127],[104.77997589111334,16.10519981384283],[104.78714752197283,16.10844039916998],[104.7918319702149,16.102872848510742],[104.79737091064459,16.100561141967773],[104.80503845214855,16.093770980835018],[104.81494140625028,16.09342002868658],[104.81726074218744,16.09659957885748],[104.81656646728516,16.105470657348633],[104.82145690917963,16.119979858398494],[104.81964874267584,16.130268096923828],[104.82440948486334,16.13408088684082],[104.82698059082043,16.140190124511776],[104.82762908935547,16.149539947509766],[104.82659149169933,16.15370941162115],[104.822563171387,16.156280517578068],[104.81466674804688,16.155599594116268],[104.80793762207048,16.16002082824707],[104.79492950439464,16.154319763183707],[104.78169250488287,16.181690216064567],[104.77896881103533,16.18433952331543],[104.77162170410162,16.185842514038086],[104.77005767822271,16.193710327148438],[104.77842712402344,16.195751190185604],[104.79318237304716,16.197130203247184],[104.797622680664,16.195371627807617],[104.80258941650385,16.186189651489315],[104.80676269531261,16.186759948730582],[104.81616973876953,16.183200836181697],[104.82475280761719,16.18631935119629],[104.83023071289057,16.201320648193416],[104.83293151855486,16.201669692993278],[104.83937835693371,16.197561264038143],[104.84644317626947,16.200149536132756],[104.85697174072283,16.198972702026367],[104.87039184570335,16.20720291137701],[104.88224792480474,16.20886039733898],[104.88524627685553,16.213560104370174],[104.88842773437517,16.222539901733455],[104.88757324218756,16.231910705566463],[104.89623260498041,16.238309860229492],[104.90025329589861,16.238651275634766],[104.91291046142584,16.247150421142692],[104.91472625732416,16.252431869506836],[104.92137908935575,16.254440307617244],[104.93360137939464,16.251710891723633],[104.93569946289074,16.254320144653434],[104.94901275634794,16.260450363159237],[104.95166778564459,16.265348434448242],[104.9601821899414,16.269510269165096],[104.9620666503908,16.27215957641596],[104.95864105224626,16.279489517212028],[104.9622802734375,16.282550811767635],[104.97154998779308,16.275659561157283],[104.98065948486334,16.27746963500988]]]},"properties":{"ID_0":228,"ISO":"TH-37","NAME_0":"Thailand","ID_1":1,"NAME_1":"Amnat Charoen","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"อำนาจเจริญ","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.4697875976563,14.71473026275629],[100.4704818725586,14.707710266113281],[100.47795104980474,14.701460838317928],[100.4910888671875,14.695819854736385],[100.4965286254884,14.6971693038941],[100.50115966796892,14.68759918212902],[100.50444793701178,14.684591293334961],[100.50434112548857,14.680039405822754],[100.51667022705084,14.679719924926758],[100.51534271240257,14.674050331115836],[100.510971069336,14.672991752624625],[100.5078964233399,14.66858005523676],[100.50467681884771,14.658451080322322],[100.49951934814476,14.65624141693121],[100.49816894531256,14.65294265747076],[100.50170898437494,14.648839950561637],[100.50334930419928,14.626822471618652],[100.49955749511747,14.624489784240836],[100.501449584961,14.617712020874137],[100.4935913085938,14.61084270477295],[100.49285125732428,14.594921112060604],[100.49410247802751,14.588219642639274],[100.49297332763672,14.579401969909668],[100.48612213134766,14.568621635437125],[100.47934722900419,14.564371109008846],[100.49088287353516,14.5517196655274],[100.49265289306663,14.547979354858398],[100.491752624512,14.5355806350708],[100.49394989013672,14.528109550476074],[100.49809265136736,14.52552127838129],[100.4989624023438,14.517151832580566],[100.49308776855497,14.514590263366756],[100.49237823486345,14.511691093444824],[100.50138854980469,14.501179695129508],[100.49961853027361,14.495491027832088],[100.49887084960955,14.473720550537053],[100.50094604492182,14.459130287170524],[100.49282836914068,14.45790100097662],[100.47973632812528,14.449399948120117],[100.47728729248041,14.444870948791504],[100.46128082275408,14.437748908996582],[100.45845794677734,14.440730094909668],[100.44950866699219,14.436571121215877],[100.44312286376964,14.436230659484863],[100.43795013427763,14.446030616760254],[100.4333114624024,14.446330070495662],[100.41893005371088,14.44324016571045],[100.41908264160185,14.451141357421875],[100.41728210449224,14.469240188598746],[100.4191665649414,14.476670265197868],[100.41868591308622,14.481460571289062],[100.41538238525396,14.488861083984489],[100.41620635986357,14.495940208435059],[100.414115905762,14.504490852355957],[100.41004180908209,14.50903129577648],[100.40001678466808,14.506171226501579],[100.38944244384771,14.508009910583553],[100.38117980957048,14.505828857421989],[100.36914825439447,14.49790000915533],[100.34928131103527,14.497719764709473],[100.34333038330084,14.493100166320858],[100.33393096923834,14.49192047119135],[100.32402038574224,14.488190650939941],[100.31771850585943,14.488221168518123],[100.3080596923831,14.493531227111816],[100.28720092773443,14.496430397033748],[100.28227996826195,14.488180160522518],[100.2743911743164,14.485861778259277],[100.26644134521507,14.48911190032959],[100.25879669189459,14.489469528198242],[100.25608825683594,14.48209190368658],[100.25382995605474,14.481008529663029],[100.25070953369158,14.484931945800781],[100.24240875244163,14.48058986663824],[100.2326431274414,14.48876094818121],[100.22940063476562,14.502009391784725],[100.22651672363281,14.506450653076229],[100.21391296386736,14.514360427856445],[100.20761108398455,14.52184009552002],[100.20648193359392,14.531999588012809],[100.20921325683616,14.538290977478027],[100.20516204833984,14.545511245727596],[100.2027206420899,14.546980857849235],[100.19719696044945,14.555229187011832],[100.19831085205078,14.565171241760368],[100.20664978027361,14.57028961181652],[100.21073150634771,14.574390411377067],[100.21118164062528,14.577770233154354],[100.2040405273438,14.586610794067383],[100.2027206420899,14.595602035522575],[100.19599151611345,14.607510566711426],[100.21555328369169,14.627401351928768],[100.22682952880871,14.640020370483455],[100.2316284179687,14.650389671325797],[100.222396850586,14.670338630676383],[100.2152404785158,14.673640251159668],[100.21105957031267,14.678489685058594],[100.21006774902338,14.684780120849666],[100.21610260009771,14.690299987792912],[100.21660614013672,14.698620796203556],[100.21495819091803,14.703879356384277],[100.21704864501976,14.714579582214299],[100.21546936035156,14.72412014007574],[100.2103271484375,14.735390663146973],[100.20681762695324,14.740090370178166],[100.20835876464838,14.757349967956543],[100.21244812011724,14.765830993652287],[100.21141815185564,14.776480674743596],[100.22160339355474,14.778651237487907],[100.22511291503918,14.780929565429688],[100.22853851318388,14.789620399475154],[100.23075866699224,14.78888034820568],[100.23681640625,14.793741226196289],[100.24691009521501,14.796950340270996],[100.24899291992205,14.795269966125602],[100.26802825927746,14.794561386108512],[100.2746200561524,14.796911239624023],[100.27826690673851,14.790181159973145],[100.29199981689476,14.78390026092535],[100.29499816894531,14.780681610107479],[100.2995071411134,14.787131309509391],[100.3043289184572,14.786440849304313],[100.31388092041016,14.787359237670898],[100.31520080566423,14.79104042053217],[100.31127929687506,14.794479370117188],[100.32739257812517,14.799367904663086],[100.33238983154297,14.799441337585563],[100.33738708496116,14.793290138244743],[100.33869934082037,14.788149833679256],[100.34380340576189,14.785041809082145],[100.34213256835943,14.77313137054449],[100.34487152099638,14.767439842224178],[100.35124206542986,14.767041206359977],[100.354721069336,14.758710861205998],[100.35655212402338,14.758199691772461],[100.36463928222662,14.763599395752067],[100.3701782226563,14.763200759887638],[100.37776947021484,14.75404071807867],[100.38214111328142,14.74120044708252],[100.39421844482428,14.74337196350092],[100.40812683105474,14.754261970520133],[100.41464996337896,14.750711441040096],[100.42626190185553,14.750329971313533],[100.42388153076166,14.746589660644531],[100.41754150390653,14.747420310974178],[100.41794586181652,14.740261077880916],[100.41488647460966,14.736540794372615],[100.41741943359392,14.733309745788574],[100.41617584228521,14.726392745971737],[100.42151641845709,14.725790977478027],[100.43961334228521,14.72649097442627],[100.45246124267607,14.724169731140137],[100.46376037597673,14.720660209655875],[100.46714782714872,14.714200973510799],[100.4697875976563,14.71473026275629]]]},"properties":{"ID_0":228,"ISO":"TH-15","NAME_0":"Thailand","ID_1":2,"NAME_1":"Ang Thong","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"อ่างทอง","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.9151458740235,13.944261550903377],[100.91158294677729,13.914219856262264],[100.90892028808588,13.896100997924862],[100.90725708007812,13.872511863708553],[100.90740203857416,13.859820365905819],[100.90377807617182,13.848699569702262],[100.89376068115257,13.848991394042969],[100.91739654541021,13.830011367797908],[100.93901062011747,13.81317043304449],[100.93029785156267,13.80095195770275],[100.91056823730474,13.78909969329834],[100.89456939697294,13.76074123382574],[100.87116241455072,13.723221778869686],[100.8628768920899,13.711160659790039],[100.85588836669916,13.69900131225586],[100.86199188232416,13.696111679077262],[100.86019134521507,13.688350677490291],[100.84414672851568,13.695731163025016],[100.8249893188476,13.702361106872615],[100.80995941162126,13.70818042755127],[100.78942108154303,13.715261459350586],[100.77587890625006,13.714980125427303],[100.74890136718744,13.71533107757574],[100.7217559814456,13.717869758605957],[100.71121978759771,13.717001914978027],[100.71383666992205,13.701661109924373],[100.71321868896479,13.694181442260856],[100.70796203613287,13.680800437927303],[100.70609283447271,13.67212104797369],[100.700912475586,13.661931037902946],[100.69985198974621,13.654790878295898],[100.6855087280274,13.657759666442928],[100.66857910156261,13.665261268615836],[100.67032623291033,13.671150207519645],[100.66747283935564,13.674521446228084],[100.66396331787138,13.670290946960563],[100.6551361083985,13.66874980926525],[100.64897918701189,13.650920867919922],[100.62922668457037,13.655110359191838],[100.60523223876982,13.66123199462902],[100.5937118530274,13.663000106811523],[100.58106994628923,13.667209625244197],[100.58851623535173,13.678150177001896],[100.59046173095703,13.686101913452205],[100.589111328125,13.691069602966309],[100.58257293701166,13.697422027587834],[100.56947326660156,13.703440666198787],[100.56150054931663,13.705841064453182],[100.5554809570312,13.704240798950138],[100.55236053466803,13.69735145568859],[100.55345153808594,13.681720733642635],[100.55075836181658,13.674460411071777],[100.54550933837896,13.669310569763184],[100.53624725341814,13.668440818786678],[100.53026580810575,13.671681404113883],[100.5227279663086,13.678640365600586],[100.51885223388683,13.673019409179744],[100.51928710937517,13.664779663085938],[100.51856994628912,13.650930404663029],[100.51934814453148,13.647990226745549],[100.51785278320318,13.635760307312125],[100.5159301757813,13.628541946411133],[100.51770019531261,13.61259937286377],[100.52159881591797,13.604359626769963],[100.5123901367187,13.60099029541027],[100.5058975219726,13.60365200042719],[100.501953125,13.602361679077148],[100.48194122314459,13.60704135894781],[100.47531890869146,13.598739624023438],[100.47451782226568,13.594120025634822],[100.46936035156256,13.593890190124512],[100.46801757812506,13.60281085968029],[100.46466827392607,13.60477066040039],[100.45553588867182,13.60426044464117],[100.452377319336,13.594429969787654],[100.44790649414057,13.586150169372559],[100.4452514648437,13.554929733276424],[100.44937896728521,13.527351379394645],[100.45275878906256,13.510531425476074],[100.45324707031244,13.50158500671381],[100.44305419921898,13.499444961547852],[100.43694305419928,13.496391296386776],[100.42861175537138,13.495829582214355],[100.42639160156267,13.497222900390739],[100.41971588134783,13.495002746582031],[100.40859222412138,13.493056297302246],[100.40580749511719,13.49564075469965],[100.40650177001964,13.503091812133846],[100.40515899658232,13.510820388794059],[100.40762329101591,13.517740249633789],[100.41230010986328,13.525330543518066],[100.41384887695318,13.535869598388615],[100.4197616577149,13.539901733398494],[100.42009735107439,13.545821189880485],[100.41548919677729,13.549921035766715],[100.41757965087885,13.56163120269781],[100.3973007202149,13.55610179901123],[100.3921661376956,13.561570167541504],[100.39108276367182,13.569861412048454],[100.38700866699224,13.583959579467887],[100.3795928955081,13.593311309814453],[100.37954711914085,13.607919692993107],[100.377426147461,13.61808967590332],[100.37097167968756,13.628609657287654],[100.36044311523443,13.634490966796932],[100.3562622070313,13.639261245727539],[100.34974670410156,13.64000129699707],[100.34168243408197,13.638011932373104],[100.33930206298851,13.642090797424316],[100.33991241455107,13.650360107421989],[100.34246826171892,13.659930229187069],[100.33930206298851,13.674210548400936],[100.33460998535168,13.68069076538086],[100.33132171630888,13.699408531188908],[100.33161926269531,13.712101936340446],[100.33534240722685,13.713971138000545],[100.33566284179693,13.728451728820858],[100.33209228515653,13.732739448547306],[100.33365631103527,13.734211921692008],[100.33209991455107,13.742550849914608],[100.3324584960938,13.753231048584041],[100.33010864257812,13.76531124114996],[100.3312072753908,13.786641120910701],[100.32913970947266,13.803200721740666],[100.31999206542969,13.821471214294377],[100.33071899414085,13.803159713745117],[100.41233062744146,13.800009727478084],[100.43921661376959,13.79848957061779],[100.46453857421892,13.796229362487793],[100.46945953369135,13.79441070556635],[100.47148132324241,13.788299560546818],[100.50193023681658,13.799510955810547],[100.51685333251959,13.812081336975154],[100.50834655761747,13.816530227661246],[100.51026153564464,13.824021339416504],[100.51412963867205,13.824569702148438],[100.53713989257841,13.845101356506404],[100.54505920410156,13.84889984130865],[100.56867218017595,13.949020385742244],[100.56510925292974,13.948651313781681],[100.57554626464861,13.953400611877498],[100.58979034423857,13.9503812789917],[100.60523223876982,13.943790435791072],[100.60604095458979,13.950901031494084],[100.61064910888689,13.954251289367733],[100.61493682861334,13.95348072052002],[100.62644958496088,13.94800186157238],[100.62661743164074,13.93704986572277],[100.64108276367216,13.936590194702205],[100.64370727539085,13.93016147613531],[100.66483306884766,13.929121017456112],[100.68261718750023,13.929581642150936],[100.69081115722662,13.92893028259283],[100.69036865234392,13.92457199096691],[100.6991119384765,13.922720909118766],[100.70240020751953,13.919140815734863],[100.70813751220703,13.916889190673885],[100.72141265869152,13.916831970214957],[100.72991943359398,13.918740272522086],[100.72994995117193,13.915690422058162],[100.75260162353521,13.916899681091309],[100.77160644531267,13.923740386962947],[100.79643249511719,13.930801391601562],[100.82183074951178,13.935681343078556],[100.8258895874024,13.9334716796875],[100.83419036865251,13.934989929199162],[100.89894104003912,13.942931175232047],[100.9151458740235,13.944261550903377]]]},"properties":{"ID_0":228,"ISO":"TH-10","NAME_0":"Thailand","ID_1":3,"NAME_1":"Bangkok","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"กรุงเทพมหานคร","VARNAME_1":"Krung Thep|Krung Thep Maha Nakhon"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.1914672851562,18.020500183105582],[104.18721771240263,18.024999618530387],[104.18345642089838,18.02385139465332],[104.18444061279314,18.01889991760254],[104.17542266845714,18.015739440918082],[104.175765991211,18.002300262451115],[104.17006683349638,18.003099441528377],[104.16565704345709,18.010980606079215],[104.16052246093778,18.017589569091797],[104.15538024902372,18.02078056335455],[104.14888763427763,18.014940261840877],[104.14794921875028,18.01201057434082],[104.13768768310541,18.009019851684627],[104.1324310302735,18.0063095092774],[104.12635040283209,18.0060195922851],[104.12413024902338,18.00172042846691],[104.11734771728521,18.00248908996582],[104.11399078369169,17.996362686157227],[104.11837005615263,17.988571166992244],[104.11746215820307,17.983240127563477],[104.1205215454101,17.978822708129883],[104.1217269897461,17.972650527954215],[104.12975311279303,17.965890884399414],[104.13654327392572,17.962789535522518],[104.13566589355474,17.9562225341798],[104.14251708984375,17.953010559081974],[104.13864135742182,17.939559936523494],[104.13458251953153,17.932750701904297],[104.12586212158197,17.9237003326416],[104.11737823486351,17.918838500976676],[104.10829925537104,17.909299850463867],[104.10150146484375,17.905862808227596],[104.09777069091825,17.901218414306584],[104.09144592285162,17.898990631103516],[104.09095001220697,17.89382934570324],[104.07554626464844,17.877380371093807],[104.0678100585938,17.881580352783146],[104.05956268310553,17.883750915527457],[104.0515365600586,17.887920379638672],[104.04820251464855,17.89373016357422],[104.05311584472662,17.90024757385254],[104.05123901367216,17.903190612793082],[104.04515075683605,17.906459808349666],[104.0401458740235,17.905740737914982],[104.03219604492182,17.907739639282283],[104.03009033203136,17.904310226440373],[104.02246856689447,17.900459289550838],[104.01734924316423,17.894830703735465],[104.01846313476557,17.892009735107536],[104.01187896728521,17.88956260681158],[104.00148010253918,17.887580871581974],[103.99871063232428,17.88594055175787],[103.99237823486345,17.874309539795036],[103.98927307128918,17.860471725463867],[103.99252319335932,17.85327911376953],[104.00525665283232,17.84690093994152],[104.00148010253918,17.83912086486822],[104.00549316406244,17.83686065673828],[104.0072174072265,17.831872940063533],[104.01480865478544,17.828569412231445],[104.01325988769537,17.824819564819336],[104.01689147949247,17.820209503173828],[104.01560211181635,17.816619873046818],[104.01936340332037,17.80808830261236],[104.00810241699224,17.807409286499137],[104.00340270996088,17.805700302123967],[104.00126647949247,17.799640655517635],[104.00295257568365,17.791219711303654],[104.00180053710943,17.78559112548828],[103.9929504394533,17.786991119384766],[103.98928070068354,17.784370422363395],[103.98914337158203,17.7777996063233],[103.98306274414062,17.773059844970703],[103.9816970825197,17.767169952392578],[103.9749298095706,17.772848129272575],[103.9722518920899,17.781509399414176],[103.96718597412126,17.778921127319393],[103.96311950683622,17.772718429565373],[103.95726776123064,17.77301025390625],[103.95359039306669,17.777509689331055],[103.9441986083985,17.781490325927734],[103.94074249267584,17.787231445312614],[103.94280242919922,17.79204940795904],[103.93660736084013,17.803489685058594],[103.92881774902338,17.81159973144537],[103.92370605468767,17.812480926513786],[103.9197616577149,17.81702995300293],[103.92793273925781,17.83284187316906],[103.92466735839861,17.843679428100586],[103.92389678955095,17.849950790405217],[103.92561340332048,17.853019714355582],[103.92117309570324,17.856939315795955],[103.91706848144531,17.856178283691406],[103.91494750976562,17.850740432739315],[103.90290069580095,17.84855079650879],[103.90483093261736,17.860481262207145],[103.903617858887,17.867990493774357],[103.90982055664062,17.875400543212947],[103.9074783325197,17.87894058227539],[103.88877868652338,17.87700080871582],[103.8775863647461,17.873449325561523],[103.87516021728521,17.87132263183605],[103.87254333496105,17.863309860229435],[103.86624145507824,17.864719390869197],[103.87140655517572,17.87535095214855],[103.86966705322294,17.878290176391545],[103.85820007324247,17.881202697753963],[103.85147857666021,17.879409790039062],[103.84522247314459,17.871591567993278],[103.837890625,17.86779022216797],[103.8144302368164,17.869182586669865],[103.80722045898443,17.871229171752987],[103.80246734619163,17.874828338623104],[103.79772186279303,17.873542785644588],[103.79792022705084,17.8685302734375],[103.80204010009766,17.866380691528377],[103.80789184570307,17.859361648559684],[103.81456756591791,17.856010437011776],[103.81076049804682,17.84780120849615],[103.80423736572294,17.844600677490234],[103.80043029785185,17.840070724487305],[103.7969589233399,17.84066963195812],[103.79083251953148,17.848070144653377],[103.78933715820318,17.855800628662223],[103.7817764282226,17.858238220214844],[103.77892303466814,17.861169815063477],[103.77617645263678,17.870279312133732],[103.76860046386713,17.87945938110363],[103.76766967773455,17.883369445800895],[103.7708892822265,17.888521194458065],[103.77935028076172,17.888591766357536],[103.78639221191406,17.886260986328125],[103.79000854492205,17.889150619506893],[103.78852844238287,17.892879486083984],[103.77820587158203,17.9055500030517],[103.78012847900396,17.914310455322322],[103.78594970703136,17.92358970642084],[103.78639221191406,17.92728996276861],[103.78222656250006,17.92939949035639],[103.77217864990263,17.920711517333984],[103.7643432617188,17.916730880737305],[103.76082611084001,17.917728424072322],[103.75961303710966,17.922439575195426],[103.76069641113304,17.92821121215826],[103.7662277221682,17.936559677123967],[103.76847839355469,17.94292068481451],[103.7687377929688,17.951942443847713],[103.7646484375,17.951469421386662],[103.76113891601591,17.94559288024908],[103.75614929199224,17.92919921875],[103.7521514892581,17.92315101623535],[103.75544738769526,17.918670654296818],[103.75621032714838,17.913850784301815],[103.74913024902355,17.908540725708065],[103.74308013916033,17.91644287109375],[103.73082733154308,17.922140121460018],[103.72576141357422,17.922870635986385],[103.72164154052763,17.92919921875],[103.7203521728515,17.93768119812023],[103.71573638916044,17.93988037109375],[103.709213256836,17.936429977416992],[103.7074890136721,17.941390991210938],[103.70050048828136,17.946950912475643],[103.68579864501982,17.953899383544922],[103.67330169677734,17.94701957702648],[103.6637802124024,17.949600219726562],[103.66420745849615,17.954540252685604],[103.67011260986334,17.963132858276367],[103.66837310791021,17.969261169433594],[103.6646270751956,17.971731185913143],[103.65985870361357,17.969650268554688],[103.65853118896496,17.96441078186041],[103.65484619140648,17.96125030517578],[103.64544677734375,17.961009979248104],[103.64132690429693,17.9744491577149],[103.63369750976568,17.973281860351562],[103.63107299804699,17.968339920043945],[103.6265029907226,17.971500396728572],[103.6286010742187,17.98085975646984],[103.6250076293947,17.98719978332514],[103.6259994506836,17.99151039123541],[103.62425994873064,18.000120162963867],[103.62869262695318,18.004751205444393],[103.6367874145509,18.003980636596737],[103.64375305175787,18.01209831237793],[103.63568115234392,18.014141082763615],[103.6261978149414,18.01172065734869],[103.61469268798822,18.01194000244135],[103.61142730712902,18.016830444335994],[103.60929870605497,18.033781051635856],[103.59774017334001,18.042881011963004],[103.59825897216808,18.048770904541072],[103.59507751464861,18.049339294433594],[103.5910110473634,18.045709609985465],[103.5910720825197,18.037149429321403],[103.58708953857422,18.036649703979606],[103.58013916015636,18.039930343627873],[103.57869720458984,18.047370910644645],[103.5693359375,18.053100585937614],[103.5629272460938,18.060880661010856],[103.55326843261713,18.06101036071783],[103.545219421387,18.064519882202262],[103.54212188720726,18.07191085815441],[103.54886627197277,18.075399398803654],[103.54659271240229,18.08048057556158],[103.54621887207026,18.0867595672608],[103.54235076904325,18.088060379028434],[103.5398712158206,18.083328247070312],[103.54051971435564,18.07887077331543],[103.53845977783203,18.073682785034123],[103.54016876220703,18.069061279296932],[103.52877044677757,18.068941116333065],[103.52239227294939,18.07049179077154],[103.51786041259766,18.073650360107365],[103.50982666015625,18.06989097595215],[103.50720214843756,18.065380096435604],[103.50865173339861,18.061582565307674],[103.50032043457037,18.062379837036133],[103.4964675903322,18.05924987792963],[103.49707794189459,18.050649642944336],[103.5005493164063,18.04575157165533],[103.49677276611357,18.040889739990234],[103.49637603759794,18.035690307617244],[103.49938964843773,18.03252029418951],[103.50122070312517,18.021232604980582],[103.49765014648443,18.01654052734375],[103.50148010253912,18.01317024230957],[103.50228881835966,18.007310867309627],[103.50520324707026,18.0047607421875],[103.5065307617187,17.997810363769645],[103.5014419555664,17.99629020690918],[103.4982299804688,17.99266052246105],[103.5000991821289,17.988590240478516],[103.49510955810564,17.98611831665039],[103.49153137207031,17.99053001403803],[103.48491668701178,17.995380401611385],[103.48120117187517,18.001060485839787],[103.47743225097662,18.003730773925724],[103.47186279296892,17.998399734497184],[103.4694213867188,17.989299774170036],[103.4652709960938,17.986909866333065],[103.45675659179682,17.98941040039074],[103.45130920410162,17.992670059204215],[103.44641876220732,17.988531112670955],[103.44138336181646,17.98147010803217],[103.44618988037115,17.978099822998047],[103.45327758789091,17.970319747924748],[103.44898986816406,17.96517944335949],[103.44214630126959,17.967622756958065],[103.44262695312511,17.97287178039562],[103.42988586425798,17.97430992126459],[103.4303588867188,17.98156929016119],[103.42471313476557,17.981330871582088],[103.41266632080107,17.98478126525879],[103.41056060791044,17.990570068359318],[103.40622711181658,17.989049911499023],[103.40354919433588,17.99225807189947],[103.40920257568365,18.002510070800838],[103.39959716796875,18.00629043579113],[103.39450836181646,18.01589965820324],[103.3949584960937,18.021299362182617],[103.38600921630876,18.02367973327648],[103.38221740722673,18.028310775756836],[103.37375640869169,18.03074073791504],[103.36289978027355,18.02691078186035],[103.35842132568365,18.029701232910156],[103.35395812988276,18.041738510131893],[103.34513854980497,18.047491073608455],[103.33715820312494,18.05009078979498],[103.3332290649414,18.048339843750114],[103.32876586914057,18.05212974548334],[103.31449127197283,18.055549621582088],[103.31475067138678,18.06056022644043],[103.30990600585955,18.070381164550838],[103.30755615234403,18.071220397949332],[103.30200195312506,18.079010009765682],[103.30348968505865,18.087779998779297],[103.30821228027361,18.09337997436529],[103.31640625000017,18.097091674804744],[103.31022644042997,18.103960037231445],[103.30216217041021,18.100530624389762],[103.2983169555664,18.10165977478033],[103.29483795166033,18.106170654296818],[103.29837036132818,18.13196945190441],[103.29715728759766,18.137430191040096],[103.3019104003908,18.140720367431697],[103.3001785278322,18.147872924804744],[103.30110168457043,18.151790618896598],[103.30551910400408,18.153940200805664],[103.31784820556669,18.153179168701115],[103.3269882202149,18.14659118652338],[103.32412719726568,18.137371063232422],[103.32428741455084,18.13310050964361],[103.32807922363281,18.130090713500977],[103.33666229248047,18.135839462280387],[103.33817291259766,18.145561218261776],[103.34816741943365,18.154159545898494],[103.35848999023466,18.16118049621582],[103.3590774536134,18.16427993774414],[103.3552703857423,18.173521041870174],[103.35012054443371,18.179159164428654],[103.34094238281278,18.18379020690918],[103.32958984375,18.192131042480582],[103.3299789428711,18.19886970520031],[103.32775115966803,18.202249526977596],[103.31678771972673,18.211589813232422],[103.29901885986322,18.22010040283203],[103.28929901123041,18.22678947448736],[103.28376007080072,18.232488632202205],[103.27783966064447,18.23304939270014],[103.26898956298851,18.22966194152832],[103.26622772216814,18.237049102783317],[103.26873779296875,18.23859024047863],[103.26618957519543,18.243890762329215],[103.26217651367216,18.246200561523438],[103.26204681396501,18.26062965393072],[103.2654266357423,18.262702941894645],[103.26888275146479,18.257921218872127],[103.27583312988287,18.261690139770508],[103.27822875976557,18.266492843628043],[103.28658294677763,18.267129898071346],[103.29064941406267,18.270679473876896],[103.2955932617187,18.271270751953182],[103.29927825927734,18.27821922302246],[103.2967758178711,18.28640937805187],[103.30045318603538,18.28862953186041],[103.30132293701189,18.302431106567496],[103.30211639404297,18.307640075683594],[103.30005645751959,18.313720703125],[103.29422760009777,18.320579528808594],[103.2897567749024,18.329040527343807],[103.27942657470703,18.335149765014762],[103.27220916748053,18.335380554199332],[103.27089691162132,18.331502914428768],[103.25740814209013,18.33401107788086],[103.25025939941406,18.34469985961914],[103.24710845947294,18.352199554443416],[103.24716186523455,18.36116981506359],[103.24874877929693,18.366689682006836],[103.2540359497072,18.37272071838379],[103.26165771484392,18.37680053710949],[103.28556060791021,18.40114974975586],[103.2919998168947,18.41138076782238],[103.29492950439476,18.4183807373048],[103.29833221435553,18.422370910644645],[103.30983734130888,18.429670333862305],[103.31510162353516,18.43177986145031],[103.32505798339866,18.43238067626953],[103.33570098876953,18.430852890014705],[103.35025024414068,18.431850433349553],[103.36174011230497,18.434852600097656],[103.37758636474621,18.437789916992244],[103.4042510986331,18.446170806884766],[103.41491699218756,18.4461612701416],[103.43251037597668,18.438310623168945],[103.43897247314482,18.434249877929688],[103.44892883300776,18.429740905761776],[103.45947265625,18.42271995544445],[103.46720123291044,18.422769546508846],[103.4741516113283,18.4254207611084],[103.4854583740235,18.421840667724666],[103.4986190795899,18.42161941528326],[103.50318908691412,18.422861099243164],[103.5213470458985,18.42387962341303],[103.53441619873064,18.422571182251033],[103.55149841308622,18.416458129882926],[103.56082916259771,18.411020278930664],[103.56709289550787,18.405790328979492],[103.57594299316418,18.40230941772461],[103.60362243652338,18.402940750122184],[103.61933135986328,18.39822959899908],[103.63246154785173,18.389089584350643],[103.63703918457048,18.387769699096737],[103.65191650390642,18.378131866455135],[103.68051147460955,18.355739593505803],[103.68714904785168,18.34831047058117],[103.69435882568388,18.34276008605957],[103.70005035400413,18.340360641479492],[103.70910644531244,18.339809417724666],[103.72873687744135,18.340009689331055],[103.7396316528322,18.341360092163086],[103.74798583984386,18.34129905700678],[103.75131225585938,18.337841033935547],[103.75778198242188,18.337419509887695],[103.77677154541044,18.34064102172863],[103.79447937011724,18.340490341186637],[103.81086730957054,18.338340759277344],[103.8248672485351,18.333839416503963],[103.83436584472685,18.327220916748104],[103.83819580078153,18.3218994140625],[103.84564208984386,18.3077011108399],[103.85343170166044,18.285520553588924],[103.86015319824213,18.280439376830998],[103.86543273925787,18.28078079223627],[103.88066101074224,18.28607940673828],[103.88693237304688,18.28947067260748],[103.89501953125028,18.296070098876953],[103.91191864013672,18.314411163330078],[103.92568969726585,18.325260162353516],[103.94068908691423,18.331439971923885],[103.94700622558594,18.334810256958065],[103.95820617675776,18.336931228637752],[103.96678924560541,18.336523056030217],[103.97753906250006,18.332412719726562],[103.9916076660158,18.318830490112305],[103.99793243408203,18.307182312011832],[104.00527954101591,18.29590034484869],[104.01470947265625,18.28299140930187],[104.02163696289068,18.275030136108455],[104.03611755371116,18.25353050231945],[104.05284118652361,18.232349395751953],[104.06485748291033,18.214580535888786],[104.06568908691429,18.20475006103527],[104.07122039794945,18.19070243835455],[104.0790023803711,18.17733955383312],[104.08304595947288,18.174270629882812],[104.08702850341803,18.168270111083984],[104.09247589111322,18.156339645385742],[104.10050964355486,18.13068008422846],[104.10395812988298,18.122190475463867],[104.11061096191423,18.111549377441406],[104.11801910400402,18.102020263671875],[104.12531280517595,18.094390869140625],[104.13389587402361,18.083721160888786],[104.14314270019537,18.07570075988764],[104.159896850586,18.05615043640131],[104.17678833007807,18.040420532226562],[104.18453979492193,18.032320022583065],[104.19159698486334,18.02293968200695],[104.1914672851562,18.020500183105582]]]},"properties":{"ID_0":228,"ISO":"TH-38","NAME_0":"Thailand","ID_1":4,"NAME_1":"Bueng Kan","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"บึงกาฬ","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.11443328857422,15.479340553283805],[103.11483764648438,15.471270561218262],[103.11765289306658,15.468390464782772],[103.11611175537104,15.464578628540039],[103.1109695434572,15.463971138000545],[103.10819244384788,15.455229759216365],[103.1124114990235,15.45006084442133],[103.10980987548822,15.446390151977653],[103.10784912109403,15.438171386718693],[103.10278320312517,15.433870315551758],[103.10192871093756,15.427680015563965],[103.09255981445335,15.422491073608398],[103.09429168701178,15.415310859680233],[103.10096740722662,15.413721084594783],[103.11049652099615,15.40708065032959],[103.11650085449236,15.406381607055664],[103.11853027343778,15.400099754333553],[103.13617706298828,15.398579597473258],[103.13552093505888,15.405151367187614],[103.14002227783209,15.410202026367244],[103.14681243896479,15.401612281799316],[103.14630889892578,15.395000457763672],[103.14317321777355,15.393301963806266],[103.14279174804699,15.387090682983455],[103.14723205566423,15.384940147399902],[103.15000152587919,15.379740715026855],[103.1543197631836,15.383310317993164],[103.15744018554716,15.377500534057617],[103.1507415771485,15.376009941101188],[103.15213775634777,15.37169075012207],[103.15679168701172,15.371582031250114],[103.15968322753912,15.367351531982422],[103.1577377319336,15.363271713256893],[103.1645812988283,15.362760543823356],[103.16464233398443,15.359349250793457],[103.15825653076166,15.35344028472906],[103.16496276855486,15.35234069824213],[103.17262268066406,15.36104965209961],[103.17852783203125,15.35822963714594],[103.1817626953125,15.36001014709467],[103.18226623535168,15.365670204162711],[103.19020843505882,15.363299369812012],[103.19702911376953,15.363389968872184],[103.19898986816429,15.356661796569824],[103.19068145751947,15.357699394226188],[103.197319030762,15.342809677124023],[103.19886016845714,15.334039688110465],[103.20226287841825,15.333860397338924],[103.20461273193354,15.340531349182072],[103.20845794677751,15.338118553161678],[103.21492004394548,15.338590621948242],[103.21235656738287,15.33330059051525],[103.215103149414,15.33047962188732],[103.22049713134766,15.333550453186092],[103.22339630126976,15.322539329528922],[103.22924041748064,15.32041263580328],[103.2326889038086,15.321450233459416],[103.23680877685575,15.3187513351441],[103.24768829345714,15.316049575805721],[103.25466918945318,15.320980072021484],[103.26000213623053,15.311549186706657],[103.26702880859375,15.313261032104549],[103.26818084716797,15.316371917724553],[103.27693176269548,15.317590713501033],[103.2791290283206,15.31279087066656],[103.2863159179688,15.317350387573356],[103.28907012939482,15.313909530639762],[103.28283691406267,15.306891441345329],[103.28331756591803,15.304250717163086],[103.2907104492188,15.301931381225529],[103.29238891601562,15.298191070556697],[103.30214691162115,15.306429862976017],[103.30668640136736,15.316821098327694],[103.30963897705084,15.318821907043514],[103.31720733642578,15.317290306091365],[103.31919097900419,15.321481704711857],[103.31607055664068,15.32573032379156],[103.32241058349615,15.326740264892578],[103.32604980468778,15.331940650939885],[103.32997131347656,15.331160545349121],[103.33174133300804,15.336698532104492],[103.33775329589861,15.334611892700309],[103.34184265136741,15.335391044616813],[103.34371948242188,15.34275054931652],[103.35038757324219,15.33844089508051],[103.35578155517584,15.343180656433162],[103.36389160156267,15.344101905822868],[103.36210632324247,15.337909698486442],[103.36705780029325,15.336909294128532],[103.37364196777344,15.338709831237793],[103.3793106079101,15.335769653320312],[103.38282012939453,15.328010559082088],[103.38855743408209,15.326040267944393],[103.39070129394537,15.331819534301758],[103.39746093750017,15.333221435546989],[103.40122222900419,15.327070236206168],[103.3915176391601,15.324741363525504],[103.38820648193365,15.319890975952148],[103.39193725585955,15.314451217651424],[103.39660644531256,15.312501907348746],[103.40249633789085,15.313170433044547],[103.40686035156256,15.306932449340934],[103.41146087646507,15.313039779663086],[103.41590118408232,15.30895137786871],[103.42040252685553,15.314769744873104],[103.42591857910156,15.31416130065918],[103.4283523559572,15.307580947875977],[103.4320297241211,15.307589530944767],[103.43342590332037,15.314141273498592],[103.432670593262,15.319451332092342],[103.43770599365251,15.323748588562125],[103.43470001220703,15.328021049499512],[103.43824005126964,15.333271980285701],[103.44258117675787,15.33320140838623],[103.44529724121105,15.329500198364201],[103.45165252685547,15.336020469665584],[103.44406127929693,15.338319778442383],[103.4460067749024,15.34238052368164],[103.45372009277361,15.34226131439209],[103.45603179931658,15.33624076843273],[103.46125030517601,15.334330558776855],[103.46708679199236,15.336720466613826],[103.47383880615257,15.336079597473145],[103.47651672363287,15.328000068664664],[103.47160339355497,15.323651313781681],[103.47509765625017,15.318610191345215],[103.48493194580107,15.317779541015739],[103.48979949951172,15.309161186218262],[103.49579620361334,15.313741683960075],[103.49849700927763,15.305809974670353],[103.50247955322294,15.312170982360897],[103.50576019287121,15.310199737548885],[103.50495147705084,15.304160118103084],[103.50045776367205,15.301870346069393],[103.49968719482439,15.295911788940487],[103.50083923339861,15.2894802093507],[103.49536895751959,15.291290283203068],[103.49233245849632,15.289211273193416],[103.48562622070312,15.290121078491211],[103.48214721679705,15.293100357055664],[103.47895050048828,15.288651466369572],[103.4715499877932,15.284030914306697],[103.47173309326195,15.278420448303223],[103.46495056152338,15.280839920044059],[103.46550750732433,15.274060249328556],[103.46035766601574,15.264810562133903],[103.4631118774414,15.257681846618766],[103.46018981933588,15.25442886352539],[103.45401000976568,15.253951072692871],[103.44605255126964,15.261271476745605],[103.44296264648443,15.259241104126033],[103.44789123535179,15.251609802246207],[103.44107055664091,15.246709823608455],[103.43665313720709,15.23295974731451],[103.43624877929693,15.22772026062023],[103.43943023681658,15.221211433410758],[103.43765258789091,15.216990470886174],[103.43203735351568,15.215109825134334],[103.43180847167986,15.209321022033691],[103.43743133544928,15.20780086517334],[103.43345642089872,15.203360557556152],[103.4305267333985,15.206210136413631],[103.42626190185564,15.205660820007381],[103.42177581787115,15.201162338256893],[103.42263031005876,15.191899299621582],[103.42082214355474,15.187801361084098],[103.43006896972673,15.184082031250114],[103.43010711669922,15.177191734314079],[103.42489624023432,15.172180175781307],[103.42286682128906,15.16670131683361],[103.43080139160168,15.156431198120117],[103.42713165283209,15.15094089508051],[103.42314147949247,15.150250434875602],[103.4302215576173,15.14031124114996],[103.42707061767578,15.137361526489315],[103.4262008666995,15.127348899841365],[103.43035125732445,15.126380920410156],[103.43476104736334,15.119180679321289],[103.42887115478544,15.114439964294547],[103.4290924072265,15.103269577026424],[103.43533325195318,15.106792449951172],[103.4397659301759,15.107391357421989],[103.44348144531256,15.104290962219352],[103.44194030761719,15.098670959472656],[103.43363189697294,15.097880363464412],[103.433578491211,15.087569236755314],[103.43749237060541,15.083831787109375],[103.44068908691435,15.087531089782829],[103.44419097900408,15.085230827331543],[103.43901062011713,15.080250740051383],[103.43502807617205,15.070770263671989],[103.4273071289063,15.067959785461483],[103.42518615722662,15.064620971679744],[103.42880249023443,15.059219360351562],[103.43570709228521,15.058320999145508],[103.44264984130854,15.054549217224235],[103.44814300537138,15.047617912292424],[103.44993591308594,15.043060302734432],[103.44595336914062,15.037799835205135],[103.44506072998053,15.032840728759822],[103.44151306152361,15.028980255126953],[103.43402862548857,15.025540351867619],[103.42665100097673,15.028780937194824],[103.41944885253912,15.01292991638195],[103.41706848144543,15.003841400146541],[103.43000030517607,14.989839553833008],[103.424789428711,14.98314189910883],[103.43144226074219,14.981582641601562],[103.43335723876953,14.976800918579215],[103.42907714843761,14.974570274353084],[103.42324829101562,14.97599029541027],[103.42259979248058,14.971661567688045],[103.42473602294939,14.966280937194881],[103.42143249511747,14.963481903076286],[103.41954803466808,14.955809593200684],[103.42597198486334,14.952460289001522],[103.42482757568365,14.947250366210938],[103.42752838134794,14.941029548644963],[103.43051910400396,14.940370559692496],[103.42796325683588,14.931770324706974],[103.42820739746094,14.927290916442928],[103.42089080810541,14.91754055023199],[103.41384887695307,14.915670394897575],[103.40541076660185,14.918221473693961],[103.40248870849615,14.913230895996207],[103.40602874755854,14.905969619751033],[103.4015121459961,14.89995098114025],[103.40513610839844,14.897781372070426],[103.40447235107433,14.892350196838379],[103.39858245849604,14.89358139038086],[103.39250183105486,14.892902374267692],[103.39308929443376,14.883750915527344],[103.38272857666027,14.875920295715389],[103.38410186767595,14.871009826660213],[103.37841033935547,14.858320236206055],[103.37403869628906,14.860540390014762],[103.36458587646513,14.854789733886776],[103.36145782470703,14.846920013427791],[103.35267639160156,14.83772087097168],[103.347221374512,14.835519790649414],[103.34955596923822,14.830680847167912],[103.34422302246088,14.826320648193416],[103.33879852294945,14.830611228942985],[103.33171844482428,14.830510139465389],[103.3224411010745,14.825049400329647],[103.32260131835943,14.820390701294059],[103.31471252441406,14.811470031738281],[103.31143951416033,14.811441421508903],[103.31040191650396,14.806340217590446],[103.29705047607428,14.810608863830623],[103.29250335693388,14.805400848388615],[103.29596710205072,14.796010971069393],[103.29511260986351,14.78953075408947],[103.29158020019526,14.780850410461426],[103.28472900390642,14.781850814819336],[103.28322601318376,14.77601242065441],[103.26844787597685,14.765960693359489],[103.27304840087919,14.759040832519588],[103.26996612548834,14.753181457519645],[103.27735137939459,14.746330261230582],[103.27474975585966,14.732980728149471],[103.27556610107416,14.729560852050895],[103.27182006835943,14.719840049743596],[103.2728729248048,14.713290214538574],[103.26638031005871,14.701259613037053],[103.26702117919922,14.692091941833553],[103.26126098632807,14.687932014465275],[103.263931274414,14.683320999145508],[103.25979614257812,14.676851272583008],[103.26154327392601,14.66946029663086],[103.25717926025396,14.666390419006404],[103.25695037841803,14.66222095489502],[103.24829101562494,14.658451080322322],[103.24444580078136,14.649589538574276],[103.23488616943388,14.64552021026617],[103.23500823974615,14.635551452636662],[103.23332977294928,14.630760192871207],[103.23950958251947,14.62183856964117],[103.23819732666033,14.613591194152832],[103.23355865478544,14.60691070556652],[103.22583770751953,14.606380462646541],[103.22029113769531,14.597231864929313],[103.21512603759783,14.592281341552791],[103.21195983886741,14.574380874633732],[103.21601104736357,14.573420524597282],[103.21894073486345,14.56579971313488],[103.2229309082033,14.562729835510254],[103.22129058837896,14.553000450134277],[103.22466278076189,14.545050621032772],[103.21656036376959,14.541750907898063],[103.21466827392607,14.533919334411621],[103.21685028076189,14.52903079986578],[103.21598052978521,14.52556037902832],[103.22318267822271,14.516579627990723],[103.22010803222656,14.51187992095953],[103.22003173828136,14.50648117065441],[103.21595001220709,14.503611564636344],[103.21897888183594,14.498470306396598],[103.22348785400385,14.49790000915533],[103.22746276855497,14.494021415710506],[103.22650909423857,14.488972663879508],[103.236831665039,14.480770111083928],[103.23825836181646,14.477121353149414],[103.23606872558588,14.467120170593319],[103.24246215820318,14.457851409912223],[103.24093627929693,14.454140663147086],[103.24238586425798,14.44913101196289],[103.24678802490251,14.445570945739746],[103.24888610839861,14.439690589904728],[103.24714660644526,14.428680419921932],[103.24060821533232,14.41825962066656],[103.23795318603544,14.407650947570858],[103.22625732421898,14.404800415039062],[103.22278594970703,14.398738861084098],[103.23242950439464,14.39016056060791],[103.23307800292969,14.382899284362736],[103.2236709594726,14.37716102600092],[103.22370147705095,14.369919776916504],[103.2262802124024,14.361321449279785],[103.22518920898449,14.351041793823299],[103.22354888916016,14.347070693969727],[103.22811889648438,14.336509704589844],[103.22897338867216,14.32553958892828],[103.22200012207048,14.321868896484432],[103.2174301147461,14.326272010803223],[103.2122802734375,14.326821327209473],[103.2053604125976,14.324919700622615],[103.19889831542986,14.329021453857479],[103.18945312500023,14.332221031189079],[103.17719268798828,14.334041595459098],[103.17063903808605,14.332891464233455],[103.16385650634766,14.329290390014705],[103.16049957275419,14.321460723877067],[103.15525817871094,14.313679695129508],[103.14911651611345,14.32261180877697],[103.1438827514649,14.324669837951603],[103.13862609863298,14.320990562439079],[103.13172149658214,14.318710327148551],[103.13020324707043,14.315760612487736],[103.13228607177763,14.304681777954045],[103.12602233886713,14.300191879272404],[103.11891174316435,14.298140525817871],[103.10433197021484,14.298100471496582],[103.09065246582054,14.29463100433361],[103.08566284179693,14.294719696044979],[103.08129119873053,14.29171085357666],[103.076431274414,14.283970832824707],[103.07080078125006,14.284750938415641],[103.058120727539,14.281920433044434],[103.058647155762,14.271821022033805],[103.0543289184572,14.267612457275447],[103.05020904541038,14.260609626770076],[103.04728698730486,14.25879096984869],[103.040336608887,14.249610900878963],[103.03441619873075,14.248211860656795],[103.03456115722662,14.239330291748047],[103.0258331298831,14.229620933532829],[103.02184295654325,14.227681159973088],[103.01853179931646,14.230701446533317],[103.01302337646507,14.229290008544979],[103.01267242431669,14.224550247192496],[103.00329589843773,14.217940330505428],[102.99965667724615,14.212529182434139],[102.99205780029303,14.211290359497127],[102.98829650878918,14.213060379028377],[102.97473144531278,14.209180831909293],[102.96588897705084,14.210430145263729],[102.95610809326189,14.20619106292719],[102.95426177978521,14.202321052551213],[102.95873260498058,14.19707012176525],[102.9541625976562,14.193869590759334],[102.9475173950197,14.196629524230957],[102.940971374512,14.193270683288688],[102.94259643554688,14.188559532165584],[102.94122314453142,14.182979583740348],[102.9312896728515,14.175101280212346],[102.9275512695313,14.172471046447697],[102.91916656494146,14.169699668884391],[102.91255950927763,14.166040420532227],[102.90097045898455,14.162640571594181],[102.893852233887,14.16819095611578],[102.88336944580107,14.172120094299316],[102.87734222412126,14.171629905700797],[102.87343597412138,14.167241096496582],[102.8713989257812,14.15609073638916],[102.87162780761719,14.149160385131836],[102.86389160156256,14.147259712219238],[102.86093139648455,14.14835071563715],[102.849349975586,14.15719032287609],[102.84420776367193,14.157980918884277],[102.83476257324213,14.165821075439567],[102.83106994628912,14.164961814880485],[102.8327407836914,14.157851219177303],[102.83042907714844,14.156669616699219],[102.8245468139649,14.161532402038631],[102.8204727172851,14.167579650878963],[102.81365203857422,14.170591354370174],[102.80988311767601,14.170499801635685],[102.80541229248064,14.167011260986271],[102.80483245849604,14.157720565795842],[102.8001327514649,14.158948898315487],[102.79579162597662,14.169900894165096],[102.79273223876959,14.169189453125114],[102.78784942626947,14.157771110534725],[102.7793807983399,14.1614608764649],[102.77452850341814,14.153809547424316],[102.77262878417986,14.148430824279728],[102.76731872558594,14.139459609985465],[102.7635116577149,14.137331962585506],[102.75595855712919,14.13728237152111],[102.74308776855469,14.139781951904297],[102.73676300048845,14.139849662780875],[102.72701263427729,14.136871337890682],[102.71936035156261,14.135821342468319],[102.7105331420899,14.13174057006836],[102.696830749512,14.129460334777775],[102.69114685058588,14.13264083862316],[102.69255065917969,14.141851425171012],[102.68383789062506,14.150201797485352],[102.67111968994135,14.156780242919922],[102.65513610839861,14.16382026672369],[102.64595031738276,14.157810211181754],[102.64134979248058,14.150049209594727],[102.63529205322283,14.147540092468205],[102.62622833251959,14.153609275817871],[102.61414337158203,14.167910575866813],[102.60600280761724,14.169330596923828],[102.59342193603521,14.164421081543082],[102.5915908813476,14.159619331359863],[102.5855484008789,14.154151916503906],[102.5768585205081,14.150570869445858],[102.56630706787115,14.144550323486328],[102.55316925048834,14.134181976318473],[102.54946136474626,14.133550643920898],[102.54032897949219,14.13672065734869],[102.53452301025419,14.136430740356559],[102.52474975585943,14.141349792480412],[102.51891326904291,14.139949798583984],[102.51058197021484,14.131360054016056],[102.50367736816423,14.130518913269157],[102.50122833251953,14.13529014587408],[102.49192047119146,14.134631156921387],[102.4893875122072,14.138371467590446],[102.48478698730486,14.13976097106945],[102.47582244873064,14.129751205444393],[102.46573638916033,14.133219718933049],[102.4574508666995,14.13462162017828],[102.45548248291021,14.140411376953068],[102.452621459961,14.142061233520565],[102.44673156738304,14.140980720520076],[102.43875885009794,14.141821861267147],[102.4347686767581,14.14541053771967],[102.43345642089838,14.150860786437988],[102.43530273437506,14.152058601379451],[102.44004058837896,14.161860466003418],[102.44239807128935,14.172268867492733],[102.4502563476562,14.183820724487418],[102.4514770507813,14.189069747924862],[102.45598602294939,14.192781448364258],[102.4707870483399,14.190540313720703],[102.47686004638695,14.198381423950309],[102.48074340820324,14.197271347045955],[102.4899673461914,14.187380790710563],[102.4989929199221,14.18583202362072],[102.50630950927746,14.188320159912223],[102.5100860595706,14.196450233459586],[102.51412963867199,14.199541091919059],[102.52017974853521,14.19917106628418],[102.54033660888672,14.200499534606934],[102.54363250732428,14.202920913696346],[102.55068969726568,14.21536922454834],[102.55658721923851,14.215410232543888],[102.57150268554716,14.220390319824219],[102.58029937744169,14.225690841674862],[102.58979797363287,14.234420776367301],[102.59876251220709,14.238331794738883],[102.61222839355469,14.252350807190055],[102.62454986572294,14.262841224670524],[102.64022827148432,14.272760391235408],[102.65109252929682,14.278180122375602],[102.66232299804699,14.28179931640625],[102.6703491210937,14.288460731506348],[102.67951965332026,14.293530464172363],[102.68827056884777,14.297068595886174],[102.67900848388672,14.29944038391119],[102.67610168457048,14.304880142211914],[102.66771697998064,14.314009666442871],[102.6644592285158,14.316082000732479],[102.64195251464861,14.32457160949707],[102.63479614257835,14.32445144653326],[102.62222290039068,14.318561553955135],[102.6142196655274,14.321301460266227],[102.60568237304699,14.32069015502941],[102.60064697265648,14.32649135589611],[102.58902740478521,14.33335971832281],[102.58924102783232,14.343541145324764],[102.58792877197294,14.349531173706112],[102.58380126953142,14.357131958007812],[102.576469421387,14.361982345580998],[102.56923675537138,14.361982345580998],[102.56398010253906,14.374681472778263],[102.56314086914074,14.382910728454647],[102.5648803710937,14.390081405639648],[102.56450653076166,14.399270057678223],[102.56910705566423,14.410051345825252],[102.57115173339855,14.426389694213924],[102.58339691162126,14.442881584167537],[102.58703613281267,14.4449720382691],[102.59642028808594,14.444450378417969],[102.60070800781278,14.44612026214594],[102.60186004638683,14.453989982605094],[102.6063232421875,14.457390785217399],[102.60822296142578,14.463810920715275],[102.60868835449224,14.4733505249024],[102.61158752441418,14.491299629211426],[102.60398101806635,14.495281219482422],[102.58539581298851,14.496340751648063],[102.56172180175787,14.499331474304256],[102.54460144042974,14.502939224243221],[102.52368927001947,14.505510330200138],[102.51355743408214,14.505660057067871],[102.49688720703148,14.504090309143123],[102.48567962646513,14.508911132812443],[102.48300933837919,14.513070106506461],[102.48517608642595,14.521600723266602],[102.49194335937506,14.528901100158805],[102.49449920654291,14.535949707031364],[102.49505615234386,14.558841705322266],[102.49649047851568,14.564400672912711],[102.4872283935548,14.583909988403263],[102.48258972167991,14.598711013794002],[102.47772979736345,14.61056041717535],[102.47223663330078,14.616669654846305],[102.47525787353533,14.6219100952149],[102.4781494140625,14.64202976226818],[102.47731018066418,14.653701782226562],[102.4715270996096,14.67136001586914],[102.46916198730486,14.687630653381461],[102.46726226806658,14.692569732666072],[102.46185302734403,14.699000358581543],[102.4609680175783,14.708149909973088],[102.46705627441423,14.720919609069824],[102.4798583984375,14.729949951171989],[102.49069213867182,14.73139953613287],[102.48960876464844,14.734331130981502],[102.48256683349615,14.735059738159123],[102.48281097412138,14.744449615478572],[102.47640991210955,14.754122734069824],[102.46994018554688,14.761851310730094],[102.46173095703142,14.76408863067627],[102.45411682128906,14.768241882324276],[102.44848632812528,14.776960372924862],[102.4458618164062,14.778690338134709],[102.4457626342774,14.78813171386713],[102.44190979003906,14.796271324157829],[102.44268798828125,14.79961013793951],[102.44716644287138,14.801181793213004],[102.44853973388666,14.806900978088379],[102.4492111206057,14.819259643554688],[102.4567108154298,14.830769538879508],[102.46190643310564,14.833270072937012],[102.47187805175787,14.818691253662166],[102.47779846191412,14.812491416931266],[102.49423980712896,14.805891036987305],[102.50251007080072,14.800919532775993],[102.50695037841797,14.801061630248967],[102.51033020019526,14.803931236267204],[102.52160644531267,14.805741310119629],[102.5352401733399,14.812960624694938],[102.54279327392595,14.824081420898494],[102.54479980468778,14.833820343017521],[102.55168151855497,14.848451614379826],[102.55391693115257,14.85952091217041],[102.5481262207033,14.871211051940918],[102.55255126953125,14.8776016235351],[102.54220581054705,14.887729644775447],[102.54280853271484,14.896809577941895],[102.5449829101563,14.902330398559627],[102.55591583251947,14.90846061706543],[102.56285095214844,14.915040969848633],[102.56349182128935,14.918010711669979],[102.5691833496096,14.925990104675293],[102.56524658203136,14.936332702636662],[102.56053924560547,14.937520027160701],[102.54891967773438,14.944190979003906],[102.55930328369169,14.954241752624569],[102.56328582763678,14.955840110778809],[102.57411193847662,14.956220626831112],[102.60198211669945,14.934989929199332],[102.61620330810564,14.934181213378963],[102.64231872558588,14.934120178222656],[102.64597320556658,14.933110237121639],[102.66324615478544,14.933069229126033],[102.69381713867182,14.932111740112305],[102.69930267334013,14.933410644531307],[102.71102142334001,14.953139305114746],[102.71154785156244,14.956279754638615],[102.708969116211,14.969120025634766],[102.71141815185547,14.976462364196834],[102.71595001220697,14.982782363891602],[102.72344970703125,14.985370635986385],[102.72667694091797,14.98906135559082],[102.73396301269537,14.993589401245174],[102.73766326904308,14.993961334228572],[102.74447631835943,14.990900039672965],[102.75209808349632,14.991470336914006],[102.75277709960955,15.000681877136174],[102.75800323486351,15.00648021697998],[102.75858306884788,15.015338897705135],[102.75509643554688,15.025661468505973],[102.75678253173845,15.02892971038824],[102.76557159423845,15.031319618225211],[102.77693939209013,15.032291412353572],[102.78098297119135,15.034969329834041],[102.78469848632818,15.042071342468205],[102.78034210205084,15.045159339904842],[102.7754516601562,15.05902099609375],[102.77906036376964,15.063151359558162],[102.77667999267584,15.069479942321777],[102.76712036132812,15.07478141784668],[102.76467132568365,15.07833194732666],[102.7787017822265,15.085289955139274],[102.78585052490257,15.094111442566032],[102.79080200195318,15.104669570922852],[102.79512786865251,15.107639312744197],[102.81220245361334,15.129300117492619],[102.81143951416021,15.133400917053166],[102.81783294677751,15.135770797729606],[102.81922912597679,15.141201972961483],[102.82466125488276,15.144981384277457],[102.83197021484375,15.144770622253475],[102.83835601806669,15.15613937377941],[102.84870147705072,15.164710998535156],[102.8507766723634,15.168490409851188],[102.85888671875006,15.170420646667594],[102.86769866943365,15.170340538024846],[102.87671661376964,15.171772003173942],[102.89009857177751,15.182930946350211],[102.89708709716825,15.187181472778434],[102.91947937011736,15.186919212341422],[102.91982269287121,15.182070732116642],[102.93147277832026,15.183382034301701],[102.93572998046875,15.181159973144588],[102.94107055664062,15.18237018585205],[102.949462890625,15.187329292297363],[102.95707702636719,15.187980651855469],[102.96341705322271,15.191230773925781],[102.96779632568365,15.190610885620117],[102.96972656250023,15.195529937744197],[102.97656250000006,15.205290794372559],[102.96322631835943,15.216201782226562],[102.9618225097658,15.221211433410758],[102.96353912353533,15.233390808105526],[102.96347808837919,15.23981952667242],[102.95728302001953,15.249541282653809],[102.9627761840822,15.25370025634777],[102.96227264404303,15.262411117553825],[102.95755767822294,15.266560554504451],[102.95656585693382,15.27003002166748],[102.9620361328125,15.281069755554142],[102.96703338623053,15.286170959472656],[102.969482421875,15.291980743408203],[102.96501159667997,15.299530982971135],[102.95889282226591,15.304100990295353],[102.95491027832043,15.308900833129826],[102.95462799072271,15.31479930877697],[102.95894622802729,15.324761390686035],[102.96363067626959,15.326130867004338],[102.97045898437506,15.331802368164062],[102.98599243164091,15.332130432128906],[102.9920501708985,15.333860397338924],[102.99394989013695,15.337439537048283],[102.99288177490229,15.351279258728084],[102.98963165283214,15.356370925903434],[102.9911575317384,15.363441467285156],[102.98799133300781,15.370601654052734],[102.98217010498075,15.373200416564941],[102.97219848632835,15.373141288757438],[102.96623992919922,15.37449169158947],[102.95781707763689,15.379719734191838],[102.9562301635745,15.382561683654785],[102.95378112792963,15.394701004028434],[102.95976257324219,15.408769607544002],[102.96570587158209,15.404179573059082],[102.96823883056669,15.41074180603033],[102.96714782714838,15.416819572448844],[102.97174835205095,15.417991638183594],[102.9726867675783,15.424819946289006],[102.9779815673831,15.427581787109432],[102.98113250732422,15.425820350646973],[102.97876739501947,15.419931411743164],[102.97930908203153,15.416171073913574],[102.98519897460943,15.416279792785701],[102.98275756835949,15.424429893493652],[102.99038696289074,15.421071052551383],[102.98813629150408,15.41710090637207],[102.99320983886724,15.412911415100154],[102.99909973144554,15.417289733886776],[103.00219726562528,15.42533969879156],[103.01355743408203,15.430050849914664],[103.01177215576166,15.434449195861873],[103.00470733642572,15.441469192504883],[103.0021591186524,15.447941780090389],[102.99785614013666,15.451292037963867],[102.99469757080084,15.466659545898494],[102.98739624023455,15.465251922607479],[102.98332977294933,15.473080635070858],[102.98258972167963,15.477972030639592],[102.97711944580078,15.480071067810172],[102.97493743896496,15.475870132446346],[102.96914672851585,15.47731971740717],[102.9689331054688,15.481891632080192],[102.96160125732416,15.482632637023983],[102.96186828613281,15.477739334106445],[102.95014953613293,15.477101325988826],[102.9415130615235,15.472970962524414],[102.94117736816418,15.482131004333553],[102.94647979736334,15.488149642944336],[102.94243621826178,15.49237060546875],[102.93563842773466,15.486579895019645],[102.93228912353516,15.486591339111385],[102.9294204711914,15.493729591369629],[102.92514038085966,15.495780944824219],[102.92437744140653,15.499429702758732],[102.93222808837885,15.506381034851074],[102.92707824707026,15.509539604187125],[102.92182922363287,15.505929946899357],[102.9136581420899,15.506851196289062],[102.90624237060575,15.516062736511174],[102.89846038818371,15.519339561462516],[102.89196014404325,15.516500473022404],[102.8853759765625,15.521801948547477],[102.87371063232439,15.516790390014705],[102.8719787597658,15.51172065734869],[102.8665618896485,15.50656986236578],[102.85990905761747,15.512081146240178],[102.84790802001964,15.51056957244873],[102.8353576660158,15.513279914855957],[102.8320922851562,15.506779670715332],[102.82836914062506,15.506779670715332],[102.82692718505871,15.511931419372672],[102.82135772705084,15.509881973266715],[102.81726074218767,15.511159896850529],[102.81250762939453,15.523520469665584],[102.79892730712908,15.529740333557072],[102.80130004882835,15.537790298461914],[102.79695892334013,15.542380332946834],[102.7914505004884,15.54564094543457],[102.78983306884771,15.553080558776855],[102.78430175781256,15.559082031249943],[102.78295135498047,15.57199954986578],[102.78717803955084,15.575651168823242],[102.78350067138689,15.578801155090446],[102.7864379882813,15.582702636718864],[102.78501129150408,15.587871551513729],[102.78031921386741,15.589778900146541],[102.77987670898455,15.592981338501033],[102.7835617065432,15.600060462951717],[102.77890014648455,15.604130744934139],[102.7776107788086,15.612092018127555],[102.77362823486334,15.616290092468319],[102.77336883544939,15.621910095214844],[102.78108978271507,15.627011299133358],[102.77894592285156,15.633370399475098],[102.78247833251982,15.637419700622672],[102.77938842773443,15.641709327697697],[102.7814559936524,15.644010543823299],[102.80657958984392,15.631099700927678],[102.81716156005865,15.630719184875602],[102.832290649414,15.633270263671989],[102.84767913818365,15.639760971069336],[102.85774230957037,15.643011093139648],[102.8681716918947,15.64822959899908],[102.87386322021479,15.66250038146984],[102.87577819824213,15.670880317688045],[102.88191223144548,15.691371917724553],[102.8765869140625,15.733820915222282],[102.87979888916033,15.766980171203613],[102.88620758056646,15.774689674377441],[102.89620208740251,15.784790992736816],[102.90792083740257,15.789151191711483],[102.9328002929687,15.793951034545955],[102.93483734130865,15.78826045989996],[102.9414672851563,15.781760215759334],[102.94020843505888,15.774471282959098],[102.94333648681658,15.765110969543514],[102.9596481323245,15.758581161499023],[102.96363830566412,15.759320259094238],[102.96794891357422,15.755281448364258],[102.97177124023438,15.756611824035588],[102.98053741455078,15.749350547790584],[102.97963714599632,15.745370864868221],[102.98181915283197,15.740571022033691],[102.98883056640653,15.735281944275016],[102.99021148681635,15.73096942901617],[102.99916839599621,15.734060287475643],[103.00656127929693,15.727580070495549],[103.00827789306646,15.708560943603516],[103.0122680664063,15.701430320739803],[103.008041381836,15.697720527648926],[103.00965118408214,15.694418907165584],[103.00718688964838,15.683340072631893],[103.00240325927746,15.681839942932186],[102.99621582031256,15.67728042602539],[102.98737335205095,15.674560546875057],[102.98197937011747,15.6713609695434],[102.97554016113276,15.66426086425787],[102.97837829589855,15.658160209655705],[102.98394012451189,15.654821395874023],[102.99028778076172,15.64657974243164],[102.99584197998053,15.646210670471248],[102.99890899658226,15.638410568237305],[103.00630187988281,15.63246059417736],[103.00759124755876,15.628520011901912],[103.01371765136736,15.626211166381836],[103.01494598388678,15.613220214843864],[103.02348327636724,15.606590270996037],[103.03005218505888,15.597820281982479],[103.03576660156278,15.598950386047363],[103.04722595214855,15.595980644226017],[103.04759979248075,15.592241287231502],[103.05475616455078,15.590741157531738],[103.05370330810575,15.58425045013422],[103.04998779296875,15.580559730529842],[103.04782867431635,15.571269989013672],[103.05033111572283,15.565350532531738],[103.04844665527344,15.563390731811637],[103.05385589599615,15.558601379394588],[103.0623168945312,15.55609130859375],[103.06363677978527,15.552762031555176],[103.0692214965822,15.55181980133068],[103.07987976074236,15.541750907898063],[103.08583068847656,15.540960311889648],[103.09332275390648,15.53131008148199],[103.09014129638683,15.524430274963379],[103.08490753173834,15.520039558410701],[103.08238983154297,15.513388633728084],[103.07682800292986,15.51084136962885],[103.0738296508789,15.500972747802848],[103.08014678955084,15.492460250854606],[103.08304595947271,15.49341106414795],[103.0931015014649,15.487111091613713],[103.11266326904291,15.48232269287115],[103.11443328857422,15.479340553283805]]]},"properties":{"ID_0":228,"ISO":"TH-31","NAME_0":"Thailand","ID_1":5,"NAME_1":"Buri Ram","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"บุรีรัมย์","VARNAME_1":"Buri Rum"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.13870239257841,13.968110084533748],[101.13912963867182,13.965371131896973],[101.14869689941423,13.960561752319336],[101.1497421264649,13.954530715942383],[101.15336608886724,13.94906997680664],[101.15563964843773,13.939650535583553],[101.15319061279303,13.931049346923942],[101.15589141845732,13.928741455078125],[101.16126251220697,13.93196964263916],[101.16194152832054,13.923960685730094],[101.15439605712885,13.913670539856014],[101.1532592773437,13.902020454406795],[101.15614318847673,13.896419525146484],[101.15051269531256,13.894790649414062],[101.14730072021513,13.891369819641227],[101.14914703369146,13.887711524963322],[101.15415191650419,13.888390541076717],[101.15804290771501,13.892860412597656],[101.1629028320313,13.890289306640682],[101.15969085693388,13.884600639343319],[101.1544265747072,13.879010200500602],[101.15148925781278,13.878649711608887],[101.14562225341791,13.885459899902344],[101.1408767700197,13.883502006530875],[101.1405868530274,13.878749847412166],[101.14633941650419,13.868941307067985],[101.16149139404314,13.861741065979118],[101.1609191894533,13.85818958282482],[101.15177154541016,13.855072021484318],[101.15284729003918,13.850219726562557],[101.16380310058594,13.852390289306697],[101.16728973388678,13.856790542602653],[101.17655181884783,13.857679367065373],[101.17665863037138,13.860770225524846],[101.18486022949247,13.861800193786678],[101.19608306884788,13.872731208801213],[101.20056152343744,13.873270988464355],[101.20265960693354,13.876911163330021],[101.21199798583979,13.87538146972662],[101.22281646728544,13.875470161437988],[101.22254180908203,13.884131431579647],[101.23648834228521,13.881950378417912],[101.24738311767601,13.87397098541254],[101.24714660644531,13.8673610687257],[101.25093841552751,13.86460113525385],[101.2631225585937,13.868769645690975],[101.27108001709013,13.87505054473877],[101.27950286865246,13.877099990844727],[101.28842926025419,13.872751235961971],[101.29776763916021,13.869961738586483],[101.30542755126982,13.872949600219783],[101.30925750732433,13.872949600219783],[101.31912231445318,13.866901397705135],[101.32985687255871,13.864950180053711],[101.33766937255871,13.86654090881359],[101.33785247802763,13.860432624816951],[101.34393310546903,13.857920646667537],[101.34786987304688,13.866390228271598],[101.3632278442384,13.867332458496094],[101.36976623535173,13.862180709838924],[101.37761688232422,13.87111854553234],[101.38314056396484,13.87003040313732],[101.381889343262,13.849691390991211],[101.38366699218744,13.845939636230469],[101.4015426635745,13.838629722595158],[101.41242218017607,13.835749626159668],[101.42890167236345,13.835559844970703],[101.43918609619158,13.82558917999279],[101.45890808105491,13.824749946594295],[101.47048187255876,13.821930885314941],[101.48377990722668,13.812329292297363],[101.48954772949236,13.802519798278865],[101.49658203124994,13.799139976501579],[101.5094833374024,13.796181678771973],[101.5254821777346,13.787031173706112],[101.5295028686524,13.782910346984863],[101.529052734375,13.774901390075797],[101.5324172973634,13.773909568786678],[101.53994750976568,13.785511016845817],[101.54837036132835,13.785371780395508],[101.55342864990251,13.794389724731502],[101.5563583374024,13.783850669860954],[101.55767059326172,13.775321006774846],[101.56375885009766,13.765301704406852],[101.57090759277372,13.75929069519043],[101.57602691650413,13.759811401367244],[101.57881164550798,13.752141952514705],[101.58766174316429,13.7439603805542],[101.5933685302735,13.734371185302848],[101.6014785766601,13.737240791320858],[101.60980987548834,13.737311363220329],[101.6121902465822,13.735210418701172],[101.61876678466803,13.737150192260685],[101.62568664550793,13.741270065307674],[101.63137817382841,13.73978042602539],[101.64019012451166,13.745089530944767],[101.64562988281256,13.744980812072868],[101.65344238281256,13.738631248474178],[101.66201782226568,13.735861778259277],[101.66835021972662,13.73606014251709],[101.67352294921903,13.740051269531193],[101.67788696289068,13.750569343566951],[101.68208312988287,13.756100654602108],[101.6858978271485,13.763991355896053],[101.69486999511724,13.76574993133545],[101.6977920532226,13.769380569458065],[101.70030212402361,13.78047084808344],[101.70066070556635,13.788061141967717],[101.70358276367188,13.791030883789062],[101.71002197265642,13.792780876159668],[101.71447753906256,13.796320915222225],[101.72251129150413,13.796229362487793],[101.73046112060547,13.79474067687994],[101.73870086669928,13.800551414489746],[101.74433898925776,13.803180694580135],[101.74928283691418,13.811750411987305],[101.7580871582033,13.802100181579647],[101.76741027832026,13.795391082763729],[101.77506256103533,13.780711174011344],[101.78066253662115,13.778850555420036],[101.79026794433622,13.768770217895508],[101.79051971435564,13.76036262512207],[101.78824615478533,13.756451606750488],[101.78916931152338,13.752461433410701],[101.79650878906273,13.74531078338623],[101.7979202270509,13.738270759582463],[101.79236602783232,13.736460685730094],[101.79537200927757,13.73158168792736],[101.79241180419916,13.724228858947868],[101.79202270507807,13.719491004943848],[101.79659271240229,13.711400032043457],[101.80159759521501,13.706360816955566],[101.80014801025396,13.695672035217285],[101.80245971679716,13.69308853149414],[101.8105697631836,13.694491386413688],[101.81664276123064,13.70239067077648],[101.82155609130888,13.70429992675787],[101.82817077636741,13.703940391540641],[101.8351211547851,13.700600624084416],[101.83917236328142,13.69390964508051],[101.83983612060553,13.684970855713004],[101.84184265136736,13.679641723632812],[101.83777618408214,13.672320365905819],[101.83917999267578,13.667091369628963],[101.83927154541044,13.655830383300838],[101.83525085449224,13.646691322326717],[101.83722686767572,13.638269424438477],[101.84200286865229,13.634552001953239],[101.85723876953136,13.63206958770752],[101.86447143554716,13.628572463989258],[101.86762237548828,13.62061977386469],[101.8689270019533,13.612481117248478],[101.872329711914,13.60461139678955],[101.87615966796892,13.60063171386713],[101.88526916503918,13.596110343933049],[101.88980865478521,13.583821296691895],[101.89357757568365,13.580659866333008],[101.89852905273443,13.581250190734977],[101.91245269775396,13.585261344909668],[101.9153671264649,13.584211349487305],[101.91285705566429,13.57446002960205],[101.9061279296875,13.564171791076774],[101.90260314941435,13.551521301269588],[101.89871215820312,13.546931266784668],[101.8828430175783,13.540959358215389],[101.86205291748064,13.537469863891658],[101.86695098876982,13.528849601745605],[101.87663269042974,13.522219657898006],[101.88410186767607,13.523150444030819],[101.89266967773443,13.52003002166748],[101.89760589599632,13.513521194458008],[101.89759826660179,13.509119987487907],[101.90222167968778,13.503520011901912],[101.90187072753918,13.493600845336971],[101.90593719482422,13.486351013183707],[101.909477233887,13.484371185302678],[101.9155960083009,13.47637081146246],[101.92045593261719,13.47693157196045],[101.92758178710966,13.47384071350092],[101.93437957763672,13.474470138549918],[101.93379974365234,13.469849586486816],[101.94084930419922,13.461280822753963],[101.93627166748047,13.44797134399414],[101.94306945800793,13.434799194335994],[101.95089721679682,13.428461074829102],[101.95552825927734,13.422539710998535],[101.96009826660173,13.419330596923771],[101.96260833740234,13.413600921630803],[101.9680786132812,13.409160614013729],[101.97624969482433,13.406431198120117],[101.97675323486351,13.398679733276424],[101.97293853759788,13.393551826477164],[101.97524261474615,13.388489723205623],[101.97489166259794,13.3840913772583],[101.98195648193388,13.378890037536678],[101.9821319580081,13.36998081207281],[101.98091125488281,13.363900184631461],[101.98445892333996,13.355469703674373],[101.98973846435553,13.353260993957576],[101.98979949951183,13.343541145324764],[101.98651885986357,13.33739185333252],[101.99030303955101,13.332160949707088],[101.98448944091814,13.3303604125976],[101.97814178466825,13.326121330261287],[101.9692611694336,13.323971748352164],[101.96170043945318,13.30708122253418],[101.9492263793947,13.29286193847662],[101.94284820556669,13.291119575500545],[101.93669128417974,13.292760848999023],[101.93213653564459,13.2882919311524],[101.9287567138673,13.288339614868221],[101.9288330078125,13.294329643249625],[101.920883178711,13.291371345519963],[101.915512084961,13.287468910217228],[101.90724945068376,13.286601066589355],[101.90563964843756,13.284011840820256],[101.9075317382813,13.278031349182186],[101.90701293945324,13.270589828491325],[101.9001083374024,13.265250205993766],[101.89692687988276,13.24302196502697],[101.90171051025408,13.23330116271984],[101.89225006103521,13.225879669189567],[101.8902893066408,13.232171058654785],[101.88434600830072,13.235170364379996],[101.87959289550798,13.229511260986442],[101.88022613525396,13.223752021789608],[101.8758392333985,13.221250534057617],[101.872856140137,13.223308563232422],[101.87428283691406,13.238240242004451],[101.8716430664063,13.243351936340332],[101.86733245849638,13.24536037445074],[101.84955596923834,13.24512958526617],[101.84646606445318,13.238519668579102],[101.8410720825197,13.236359596252441],[101.8384628295899,13.232481002807617],[101.83316802978544,13.236441612243766],[101.8289184570313,13.235610008239803],[101.82640838623047,13.231430053710938],[101.82305145263678,13.219949722290153],[101.81691741943382,13.214090347290039],[101.8093872070312,13.209650993347282],[101.80712890625017,13.206542015075627],[101.79740142822283,13.200709342956657],[101.78956604003923,13.200410842895565],[101.78482818603516,13.19456863403326],[101.77897644042974,13.189970016479492],[101.7765426635745,13.184969902038631],[101.77314758300776,13.182741165161246],[101.76657867431646,13.183541297912598],[101.75985717773438,13.186900138855037],[101.75579833984392,13.18650054931652],[101.75096893310575,13.182141304016113],[101.7438583374024,13.18446159362793],[101.73921203613298,13.183479309081974],[101.7322616577149,13.17750072479248],[101.72013092041033,13.179710388183594],[101.71673583984375,13.183280944824332],[101.71414947509794,13.191720962524528],[101.71376037597662,13.20477104187023],[101.70758056640625,13.205909729003963],[101.70326232910162,13.213171958923454],[101.69486999511724,13.221151351928825],[101.689682006836,13.230290412902946],[101.68737030029297,13.24322891235363],[101.68356323242188,13.251420021057072],[101.67588806152361,13.255230903625545],[101.6724090576173,13.261581420898494],[101.66879272460949,13.272321701049748],[101.65812683105463,13.274991035461426],[101.65074920654297,13.283911705017147],[101.64742279052746,13.284541130065975],[101.64071655273466,13.292020797729492],[101.6375732421875,13.290520668029728],[101.63295745849604,13.294638633728141],[101.62361907959001,13.29685020446783],[101.61736297607422,13.301130294799748],[101.6134567260745,13.298601150512695],[101.60085296630888,13.302021980285758],[101.59803009033214,13.310432434082088],[101.59369659423845,13.310009956359977],[101.59023284912104,13.317120552062931],[101.58419036865234,13.320719718933105],[101.58425140380865,13.328631401062069],[101.58020019531256,13.33240032196045],[101.57395172119146,13.32847976684576],[101.56523132324213,13.331029891967887],[101.565971374512,13.335612297058105],[101.56272125244169,13.338720321655273],[101.55956268310547,13.346729278564453],[101.55976104736328,13.352901458740348],[101.55780792236322,13.357329368591365],[101.5574111938476,13.366781234741211],[101.55208587646479,13.36775016784668],[101.55245971679682,13.37471008300787],[101.54773712158203,13.37615966796875],[101.5483169555664,13.396471023559627],[101.54110717773443,13.407839775085563],[101.53498840332037,13.405581474304142],[101.5277099609375,13.406090736389103],[101.5129776000976,13.415790557861385],[101.50485229492193,13.418029785156307],[101.49749755859403,13.41852188110363],[101.49307250976568,13.423700332641602],[101.48938751220703,13.422288894653434],[101.48869323730474,13.417401313781852],[101.48419189453142,13.414710998535156],[101.47321319580101,13.412529945373649],[101.46766662597662,13.407320022583008],[101.45775604248053,13.405241012573356],[101.45345306396496,13.40652179718029],[101.44570922851562,13.414279937744197],[101.44394683837908,13.421480178833065],[101.4368972778322,13.424300193786678],[101.43350982666016,13.429579734802246],[101.42616271972685,13.429651260375977],[101.42637634277338,13.451669692993278],[101.42144012451189,13.456141471862793],[101.4133224487307,13.456510543823299],[101.4026107788086,13.453930854797363],[101.39643859863276,13.450700759887809],[101.38880157470697,13.452681541442928],[101.37915802001959,13.452779769897461],[101.36785888671892,13.457650184631348],[101.35839843750023,13.469030380249023],[101.35209655761741,13.47921085357666],[101.34924316406273,13.480060577392635],[101.33831787109375,13.488512039184513],[101.33747100830107,13.491132736206055],[101.3315811157226,13.49242973327631],[101.32427215576178,13.49679183959961],[101.31687927246105,13.503582000732536],[101.31503295898455,13.50868034362793],[101.31034088134771,13.51570034027111],[101.30412292480463,13.516691207885742],[101.30075073242188,13.522999763488826],[101.29686737060541,13.524221420288143],[101.29530334472685,13.533540725707951],[101.2894592285158,13.539072036743107],[101.28317260742205,13.54944038391119],[101.27648162841814,13.552669525146484],[101.27404022216797,13.556778907775822],[101.2604217529298,13.564361572265739],[101.25377655029291,13.564291000366325],[101.25287628173828,13.56785106658947],[101.24872589111351,13.569320678711051],[101.24225616455084,13.568671226501522],[101.22447967529303,13.575399398803654],[101.2161407470706,13.576260566711483],[101.21668243408226,13.578959465026799],[101.20121002197271,13.583411216735954],[101.190902709961,13.584330558776855],[101.18441009521484,13.591230392455998],[101.17437744140653,13.59584999084484],[101.16770935058622,13.597750663757381],[101.15223693847662,13.598751068115291],[101.14279174804705,13.592630386352653],[101.13935852050798,13.588360786437988],[101.13639068603521,13.58018970489502],[101.1309814453125,13.57683086395275],[101.13060760498047,13.569279670715275],[101.12777709960943,13.566232681274471],[101.1201171875,13.562841415405273],[101.11573028564453,13.568490982055664],[101.11241912841808,13.56836128234869],[101.10427856445312,13.559499740600643],[101.09516906738287,13.552700996398926],[101.0891723632812,13.554451942443961],[101.07192230224615,13.553359985351562],[101.06957244873047,13.556119918823356],[101.05629730224615,13.551720619201717],[101.0521621704101,13.557090759277457],[101.04505157470732,13.557291984558162],[101.04116821289062,13.54911041259777],[101.05075836181646,13.546969413757324],[101.05462646484386,13.544179916381836],[101.0612411499024,13.534650802612305],[101.06549072265636,13.525340080261344],[101.0698165893557,13.522340774536133],[101.07189941406256,13.517360687255803],[101.06909179687528,13.514259338378906],[101.06134796142595,13.515070915222168],[101.04663085937494,13.498950004577694],[101.0343627929688,13.496081352233944],[101.0331115722658,13.49307918548584],[101.03581237792969,13.48875999450695],[101.03369140625017,13.48254108428955],[101.02958679199224,13.478841781616325],[101.01912689209013,13.473109245300293],[101.01323699951183,13.47120189666748],[101.01168060302763,13.465580940246582],[101.00810241699213,13.462689399719238],[100.99738311767607,13.464711189270133],[100.99124908447271,13.462320327758846],[100.98542022705095,13.463161468505973],[100.97873687744135,13.470134735107422],[100.98359680175804,13.47472095489502],[100.98611450195341,13.481389999389648],[100.98555755615263,13.485834121704215],[100.97915649414062,13.497211456298828],[100.97499847412115,13.497778892517204],[100.97471618652338,13.491401672363281],[100.97888946533232,13.483061790466422],[100.97277832031278,13.477779388427791],[100.95668029785162,13.467231750488338],[100.94139099121094,13.462222099304142],[100.92888641357428,13.463055610656738],[100.90361022949236,13.466666221618766],[100.90027618408209,13.468330383300838],[100.8883361816408,13.468330383300838],[100.88277435302746,13.472223281860408],[100.8761138916015,13.471388816833553],[100.86860656738287,13.47472095489502],[100.85008239746116,13.478610992431754],[100.85292053222662,13.493730545043945],[100.85430145263678,13.494530677795467],[100.867416381836,13.488641738891658],[100.87104034423834,13.487969398498535],[100.87348175048845,13.491491317749023],[100.87377166748075,13.50444126129156],[100.87287902832026,13.510689735412598],[100.87496948242182,13.51946926116949],[100.87361907958996,13.522760391235408],[100.88133239746094,13.547458648681754],[100.88495635986328,13.549991607665959],[100.8872680664063,13.55497074127203],[100.89594268798822,13.56050109863287],[100.90438842773438,13.553760528564567],[100.90674591064459,13.555391311645565],[100.91645812988304,13.57040119171154],[100.91510772705084,13.576411247253475],[100.90841674804688,13.579859733581657],[100.90811157226591,13.588390350341797],[100.91079711914091,13.591460227966309],[100.91925811767595,13.593311309814453],[100.9243774414062,13.592281341552848],[100.93331146240246,13.604180335998592],[100.94509124755865,13.618391036987362],[100.95136260986351,13.6242094039917],[100.96108245849615,13.631328582763729],[100.96398925781278,13.642280578613338],[100.95603942871088,13.6449613571167],[100.94941711425781,13.651219367981014],[100.94960021972656,13.654899597168026],[100.95700073242205,13.661161422729549],[100.95278930664057,13.663632392883414],[100.94036865234386,13.667830467224178],[100.93474578857428,13.668770790100098],[100.879692077637,13.688360214233398],[100.86199188232416,13.696111679077262],[100.85588836669916,13.69900131225586],[100.8628768920899,13.711160659790039],[100.87116241455072,13.723221778869686],[100.89456939697294,13.76074123382574],[100.91056823730474,13.78909969329834],[100.93029785156267,13.80095195770275],[100.93901062011747,13.81317043304449],[100.91739654541021,13.830011367797908],[100.89376068115257,13.848991394042969],[100.90377807617182,13.848699569702262],[100.90740203857416,13.859820365905819],[100.90725708007812,13.872511863708553],[100.90892028808588,13.896100997924862],[100.91158294677729,13.914219856262264],[100.9151458740235,13.944261550903377],[100.91552734375006,13.95867919921875],[100.98793029785156,13.968022346496639],[101.00152587890648,13.96873855590826],[101.01905822753912,13.968541145324707],[101.02738952636736,13.970170974731445],[101.0460586547851,13.975579261779899],[101.08329010009783,13.974249839782658],[101.10401916503918,13.973000526428223],[101.13192749023455,13.96947956085205],[101.13870239257841,13.968110084533748]]]},"properties":{"ID_0":228,"ISO":"TH-24","NAME_0":"Thailand","ID_1":6,"NAME_1":"Chachoengsao","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ฉะเชิงเทรา","VARNAME_1":"Chaxerngsao|Pad Rew|Paed Riu|Petrieu|Shajeun Dhrao"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.34397125244135,15.109661102294922],[100.31920623779314,15.090807914733944],[100.30780792236334,15.084971427917594],[100.30039215087913,15.084330558776912],[100.29448699951195,15.07955074310297],[100.29268646240251,15.07592964172369],[100.29553222656267,15.070199966430721],[100.29480743408203,15.065229415893498],[100.28376770019537,15.063030242920036],[100.27700042724621,15.065070152282658],[100.26058959960949,15.057100296020621],[100.24218750000006,15.054459571838379],[100.23684692382818,15.056771278381348],[100.23381805419945,15.054081916809139],[100.22957611083984,15.04446029663086],[100.23352050781261,15.023990631103459],[100.23705291748053,15.02120113372797],[100.24131774902372,15.02388954162609],[100.25152587890625,15.018059730529785],[100.2531280517581,15.010461807250977],[100.25779724121094,15.005971908569336],[100.2642822265625,15.010161399841309],[100.2698059082033,15.008331298828182],[100.27131652832048,15.000248908996639],[100.26213836669916,14.993279457092342],[100.26139831542986,14.988780021667537],[100.2746505737307,14.972430229187125],[100.27916717529297,14.961099624633846],[100.27458190917969,14.957262039184627],[100.27339172363276,14.95116996765131],[100.26458740234403,14.948820114135799],[100.26100921630876,14.943501472473258],[100.2493362426759,14.944341659545898],[100.23027801513683,14.94754791259777],[100.20302581787126,14.952981948852482],[100.18533325195312,14.946081161499023],[100.16207885742193,14.93202972412115],[100.15438079833979,14.925009727478141],[100.14846038818354,14.914970397949162],[100.14321899414085,14.917111396789608],[100.13880157470703,14.912180900573674],[100.1325378417971,14.913730621337834],[100.12851715087896,14.919610977172795],[100.12700653076195,14.930529594421387],[100.11366271972679,14.944920539855957],[100.07646179199241,14.955981254577694],[100.0674896240235,14.952081680297852],[100.05867004394531,14.955789566040153],[100.04147338867205,14.959780693054256],[100.03945159912115,14.95885086059576],[100.03739929199247,14.951399803161621],[100.0420913696289,14.943718910217342],[100.04570007324219,14.940971374511719],[100.04699707031244,14.93622970581066],[100.04302978515625,14.923640251159611],[100.04312133789091,14.917521476745549],[100.03491973876982,14.913869857788143],[100.01896667480486,14.91295146942133],[100.01010894775396,14.908440589904842],[100.00237274169939,14.908750534057674],[99.98574829101574,14.907280921936092],[99.98053741455101,14.904109954834041],[99.9754028320313,14.905191421508846],[99.97225189209001,14.902651786804142],[99.96528625488287,14.902132034301815],[99.96408081054688,14.904500007629451],[99.95674896240246,14.906431198120174],[99.95027923583996,14.910241127014103],[99.93399810791038,14.906702041625977],[99.90795898437517,14.913471221923885],[99.89993286132807,14.914790153503475],[99.88395690917969,14.912139892578125],[99.87384796142578,14.917070388794059],[99.87323760986322,14.926770210266113],[99.87011718750006,14.93003082275402],[99.86357116699219,14.932470321655217],[99.85444641113304,14.939400672912711],[99.84615325927729,14.939590454101506],[99.83483886718778,14.935881614685172],[99.82865905761719,14.93557167053234],[99.8153686523438,14.938098907470817],[99.81385803222685,14.93997859954834],[99.79479217529325,14.942721366882324],[99.78610229492205,14.946919441223258],[99.78002166748047,14.951350212097168],[99.77149200439476,14.952850341796932],[99.76615142822288,14.960709571838436],[99.76296997070324,14.961210250854549],[99.74745178222679,14.958901405334473],[99.7389373779298,14.962740898132267],[99.72306823730497,14.961540222167969],[99.72058868408232,14.964610099792594],[99.71694183349632,14.976152420044002],[99.72393798828125,14.977601051330566],[99.72458648681646,14.987669944763184],[99.72902679443371,14.992972373962346],[99.73056793212885,15.0007905960083],[99.74588012695312,15.005599975585938],[99.75492095947294,15.011181831359977],[99.76180267334013,15.017870903015137],[99.76808929443388,15.021289825439567],[99.77909851074224,15.02457046508789],[99.77638244628906,15.028910636901799],[99.78246307373064,15.033129692077637],[99.78497314453125,15.04122066497797],[99.78253936767601,15.047209739685115],[99.77388000488298,15.054570198059082],[99.77745056152372,15.059250831604004],[99.79020690917997,15.070911407470646],[99.79609680175804,15.080970764160156],[99.8015975952149,15.088390350341854],[99.80708312988298,15.09331130981451],[99.803466796875,15.100079536438102],[99.79662322998047,15.107911109924373],[99.79210662841803,15.115369796753043],[99.78569793701189,15.122980117797852],[99.77967834472679,15.127340316772518],[99.77536010742199,15.13621997833252],[99.76747131347679,15.142661094665641],[99.76193237304693,15.150439262390137],[99.74887847900385,15.163031578064022],[99.76058959960943,15.173842430114746],[99.75126647949241,15.186351776123047],[99.74668121337913,15.188339233398438],[99.73072814941418,15.209589958190918],[99.72409057617205,15.221890449523983],[99.72226715087913,15.23109054565441],[99.72422790527372,15.237340927124023],[99.73265838623041,15.24446105957037],[99.72223663330078,15.256881713867244],[99.72660827636719,15.262889862060604],[99.72171783447271,15.267730712890682],[99.7220230102539,15.276861190795955],[99.73676300048851,15.290019989013786],[99.74217224121105,15.292851448059139],[99.75215148925798,15.29559135437023],[99.7553024291995,15.29413032531744],[99.77426910400408,15.30338096618658],[99.77912902832037,15.309700965881348],[99.78296661376982,15.310470581054744],[99.78884124755882,15.317021369934082],[99.80928802490263,15.31636047363287],[99.817855834961,15.312911987304688],[99.83267211914062,15.310091018676758],[99.83499145507835,15.30846118927002],[99.8451461791995,15.307761192321834],[99.85173034667969,15.31017017364502],[99.85753631591825,15.305170059204158],[99.86512756347679,15.303530693054313],[99.87004852294922,15.30426120758068],[99.8764190673831,15.302001953125],[99.87911987304699,15.298310279846248],[99.8787918090822,15.291541099548397],[99.88466644287121,15.286170959472656],[99.89095306396496,15.290701866149846],[99.893310546875,15.289919853210506],[99.90065765380888,15.29275989532465],[99.90643310546892,15.292961120605582],[99.9186782836914,15.297760009765739],[99.92864227294945,15.298430442810115],[99.93065643310564,15.297060966491813],[99.93750762939447,15.301060676574764],[99.94055938720697,15.300301551818848],[99.95027923583996,15.301751136779842],[99.9581527709961,15.304080009460506],[99.96599578857422,15.298110961914176],[99.97434997558611,15.298078536987418],[99.98355865478521,15.300662040710563],[99.99703216552751,15.298851966857967],[100.0057067871096,15.300219535827694],[100.01214599609375,15.298589706420955],[100.01708984375,15.292671203613281],[100.02504730224621,15.289529800415096],[100.03932952880888,15.292059898376465],[100.04161071777372,15.294481277465877],[100.04902648925787,15.288610458374023],[100.05502319335955,15.286831855773869],[100.05451965332037,15.279411315918026],[100.05921936035173,15.27781963348383],[100.06606292724604,15.286170959472656],[100.07572174072271,15.291300773620662],[100.07885742187517,15.295271873474064],[100.08069610595732,15.304381370544547],[100.07826232910168,15.313931465148869],[100.07962799072283,15.31791019439703],[100.08493804931652,15.322319984436092],[100.09288024902366,15.326370239257926],[100.09784698486334,15.330809593200684],[100.10060119628923,15.336041450500431],[100.10058593749994,15.345589637756404],[100.09529876708984,15.352919578552246],[100.07958221435558,15.363080024719352],[100.07634735107433,15.366470336914062],[100.0755004882813,15.372640609741325],[100.07756042480469,15.376270294189396],[100.08447265625023,15.37904071807867],[100.09423828125028,15.373991012573356],[100.10131835937528,15.371930122375488],[100.10601043701178,15.373970031738338],[100.10434722900419,15.381800651550293],[100.09542083740246,15.388750076294002],[100.0893783569336,15.39659118652338],[100.0881958007812,15.406881332397461],[100.09069824218767,15.41145133972168],[100.09493255615234,15.414270401001033],[100.10334014892584,15.416589736938533],[100.1160125732423,15.41157054901123],[100.12700653076195,15.409900665283203],[100.13172912597656,15.402880668640194],[100.13606262207026,15.403221130371207],[100.14076232910162,15.399521827697754],[100.14176177978527,15.395351409912053],[100.13925933837919,15.387521743774414],[100.15035247802746,15.388980865478572],[100.15946197509771,15.385040283203182],[100.16751861572277,15.378581047058105],[100.17008972167974,15.37363052368164],[100.18889617919916,15.369701385498104],[100.20202636718778,15.36393070220953],[100.21275329589861,15.350262641906795],[100.22091674804699,15.34404087066656],[100.23964691162126,15.321130752563477],[100.24913787841825,15.306409835815487],[100.25009918212902,15.301591873169059],[100.25611114501959,15.29601001739502],[100.25580596923857,15.290740966796875],[100.26338195800804,15.287561416625977],[100.26394653320318,15.276680946350098],[100.26692199707048,15.273539543151912],[100.2677612304688,15.264531135559025],[100.2707595825197,15.25613021850586],[100.27039337158203,15.24805927276617],[100.2747802734375,15.24038124084484],[100.27485656738287,15.237139701843319],[100.28398895263695,15.230819702148551],[100.28861236572294,15.211750030517635],[100.29103851318382,15.195921897888184],[100.2960662841798,15.192790031433105],[100.29844665527344,15.181120872497615],[100.30391693115229,15.172800064086971],[100.31160736083984,15.168880462646541],[100.31701660156278,15.16366958618164],[100.34754180908232,15.145970344543514],[100.3473663330081,15.127201080322266],[100.3546524047851,15.117829322814998],[100.34397125244135,15.109661102294922]]]},"properties":{"ID_0":228,"ISO":"TH-18","NAME_0":"Thailand","ID_1":7,"NAME_1":"Chai Nat","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ชัยนาท","VARNAME_1":"Chainat"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.7497329711914,16.666679382324162],[101.7530212402346,16.665489196777457],[101.75370025634783,16.658800125122127],[101.75209808349615,16.654609680175838],[101.75543212890642,16.65076065063471],[101.7623291015625,16.650430679321346],[101.76593017578142,16.653272628784293],[101.77520751953153,16.64938926696783],[101.77404022216825,16.646350860595817],[101.78044891357422,16.6441707611084],[101.77642822265625,16.638622283935547],[101.77525329589861,16.630701065063477],[101.78707122802729,16.634651184081974],[101.78807067871094,16.637651443481502],[101.79564666748041,16.64015007019043],[101.80182647705084,16.647350311279297],[101.8049774169923,16.64619064331049],[101.81828308105474,16.652120590210075],[101.82881927490246,16.653720855712947],[101.83499908447266,16.656381607055778],[101.84227752685553,16.652980804443416],[101.85440826416033,16.652980804443416],[101.85646820068371,16.647790908813533],[101.86216735839872,16.64832115173334],[101.86618041992216,16.645200729370174],[101.87171173095732,16.646440505981502],[101.87438964843778,16.64113044738781],[101.8827514648438,16.64373970031744],[101.89235687255854,16.64226913452154],[101.89508819580078,16.638099670410156],[101.89993286132841,16.637609481811637],[101.91057586669945,16.62713050842285],[101.9141616821289,16.63219070434576],[101.92250061035173,16.626609802246207],[101.9236831665039,16.629459381103516],[101.9293594360351,16.632459640503043],[101.93807983398466,16.630199432373047],[101.94538116455072,16.634002685546932],[101.95007324218756,16.630199432373047],[101.9535598754884,16.63228988647461],[101.95886230468778,16.626840591430778],[101.95355224609386,16.622850418090934],[101.9577178955081,16.61652183532715],[101.9729614257813,16.61536979675293],[101.9781875610351,16.61170005798334],[101.98554992675787,16.595340728759822],[101.98188781738287,16.591970443725643],[101.98400878906273,16.58423042297369],[101.9913482666015,16.581407546997127],[101.99182891845726,16.575002670288143],[101.98979949951183,16.571132659912166],[101.99386596679688,16.564540863037053],[101.99880218505876,16.561170578002873],[102.00962066650419,16.55694007873535],[102.01982879638672,16.55700111389166],[102.02368164062523,16.555210113525334],[102.02732086181646,16.543260574340877],[102.03182983398438,16.54141044616705],[102.03100585937494,16.536979675292912],[102.03517150878935,16.533891677856502],[102.03585052490234,16.529670715332088],[102.03241729736328,16.524869918823356],[102.03820800781278,16.513561248779354],[102.0459899902346,16.506700515747013],[102.06395721435575,16.502109527587947],[102.06719207763678,16.503379821777457],[102.07376861572283,16.500030517578125],[102.06983947753929,16.494409561157283],[102.07073974609375,16.49208068847662],[102.07731628417997,16.49131965637207],[102.0809020996096,16.494569778442383],[102.08699798584007,16.490512847900504],[102.09298706054699,16.49225997924799],[102.09793853759777,16.496229171752987],[102.10111236572288,16.493169784545955],[102.107681274414,16.495748519897404],[102.1138763427735,16.493629455566463],[102.11804962158203,16.494899749755973],[102.1254119873048,16.49254989624029],[102.13655853271484,16.49519920349121],[102.142593383789,16.49810028076172],[102.15091705322271,16.497249603271484],[102.15988159179693,16.50139808654785],[102.16707611083984,16.49467086791998],[102.1739273071289,16.48991012573248],[102.17856597900396,16.492269515991325],[102.18338012695341,16.50057029724121],[102.18974304199236,16.502599716186467],[102.19419097900413,16.497051239013672],[102.19872283935547,16.500770568847656],[102.20471191406256,16.50255012512207],[102.2086257934572,16.496099472046012],[102.21434783935564,16.499090194702205],[102.2188110351563,16.495929718017578],[102.21858215332037,16.49154281616211],[102.23338317871088,16.481781005859432],[102.2364578247072,16.48398017883312],[102.2421188354495,16.476181030273438],[102.2462158203125,16.46681022644043],[102.2557601928711,16.465232849121207],[102.2565002441408,16.459608078002987],[102.26625061035156,16.459070205688477],[102.27008819580084,16.453371047973633],[102.283500671387,16.455579757690487],[102.28436279296875,16.4521484375],[102.29142761230469,16.45263862609869],[102.29358673095709,16.447269439697266],[102.30288696289068,16.444049835205078],[102.30365753173834,16.447050094604606],[102.31384277343778,16.452102661132756],[102.32054138183588,16.453229904174805],[102.32202148437528,16.44437980651867],[102.32749176025396,16.446420669555778],[102.33457946777366,16.444049835205078],[102.3378295898438,16.446277618408317],[102.34214019775408,16.44426918029791],[102.34438323974604,16.447420120239258],[102.35185241699236,16.45041084289562],[102.36994171142572,16.447090148925838],[102.36749267578142,16.43729972839361],[102.37999725341803,16.43708038330078],[102.3838577270509,16.441450119018555],[102.39266967773455,16.441392898559627],[102.3947219848634,16.4438095092774],[102.40155792236357,16.446170806884766],[102.39743804931658,16.450628280639705],[102.39768218994146,16.45851135253912],[102.40341949462896,16.4657497406007],[102.40593719482428,16.463871002197266],[102.40762329101585,16.45479011535656],[102.41056060791027,16.4519100189209],[102.41181945800804,16.444190979003963],[102.40830993652361,16.439559936523438],[102.41639709472679,16.422769546508903],[102.42385864257818,16.418279647827262],[102.42986297607439,16.41209030151373],[102.43750000000017,16.407501220703125],[102.44561767578153,16.406011581420955],[102.44915008544922,16.397800445556754],[102.46084594726585,16.390359878539982],[102.4575805664063,16.383960723876953],[102.4499282836914,16.37552833557129],[102.44892883300798,16.36930084228527],[102.45034027099615,16.364110946655387],[102.44790649414091,16.35408973693859],[102.44590759277344,16.340238571167106],[102.43859863281261,16.332920074462947],[102.43984985351568,16.32761192321783],[102.43813323974615,16.323661804199276],[102.43158721923845,16.317350387573356],[102.43017578125028,16.312589645385856],[102.42437744140625,16.303390502929688],[102.41929626464872,16.287630081176815],[102.41982269287115,16.284969329833984],[102.41497802734392,16.274248123168945],[102.41311645507812,16.265300750732422],[102.41657257080084,16.250408172607365],[102.41552734374994,16.247089385986385],[102.41053771972685,16.2446804046632],[102.40470123291033,16.239530563354606],[102.38803100585966,16.212060928344727],[102.37077331542969,16.189979553222713],[102.36720275878912,16.186399459838867],[102.34436035156278,16.153860092163143],[102.34232330322283,16.146930694580135],[102.33101654052746,16.130599975585938],[102.31392669677734,16.110441207885856],[102.29695129394531,16.096071243286133],[102.28543090820324,16.08276176452648],[102.2830657958985,16.075880050659293],[102.28391265869152,16.069501876831055],[102.28816223144548,16.068700790405273],[102.29075622558622,16.057090759277287],[102.29515838623058,16.053831100463867],[102.30018615722656,16.046649932861442],[102.3053894042971,16.03696250915533],[102.31381225585943,16.040649414062614],[102.31806182861322,16.036500930786246],[102.32376861572277,16.03565979003912],[102.32849121093756,16.029361724853516],[102.33110809326172,16.0322208404541],[102.34098052978533,16.036598205566463],[102.34628295898449,16.032819747924748],[102.34712982177734,16.028720855713004],[102.35186004638689,16.027128219604492],[102.35510253906267,16.0173282623291],[102.35412597656244,16.00993919372553],[102.358451843262,16.004360198974553],[102.36635589599626,15.999900817871094],[102.37140655517584,16.000160217285213],[102.373046875,15.99683952331543],[102.3778915405274,15.996520996093807],[102.3881759643557,15.990191459655875],[102.38495635986334,15.97991943359375],[102.38008117675798,15.97467136383068],[102.37301635742205,15.971769332885856],[102.37380218505876,15.965641021728459],[102.36836242675787,15.960090637207088],[102.36971282959013,15.952200889587402],[102.37583923339855,15.948270797729549],[102.37503051757818,15.942539215088004],[102.37050628662121,15.945281028747672],[102.36734008789062,15.935540199279842],[102.36266326904325,15.930211067199707],[102.36357116699241,15.924810409545955],[102.36107635498053,15.919200897216854],[102.36064147949236,15.911610603332576],[102.35791778564464,15.90548133850109],[102.35186767578142,15.89929008483898],[102.34790802001959,15.88842964172369],[102.34310913085938,15.886851310729924],[102.34474945068371,15.880730628967285],[102.33946228027361,15.878830909729004],[102.33712768554699,15.870589256286621],[102.33156585693388,15.87042140960699],[102.32205963134777,15.86470890045166],[102.32331848144554,15.85523891448986],[102.31768035888666,15.846651077270565],[102.32305145263689,15.841539382934627],[102.32386779785162,15.835611343383846],[102.3267669677735,15.828340530395565],[102.32347869873047,15.826811790466422],[102.32791137695318,15.820240974426326],[102.32653045654297,15.814300537109318],[102.33064270019543,15.807861328125],[102.32894134521479,15.801900863647461],[102.31945037841797,15.806159973144531],[102.31385040283214,15.806281089782715],[102.3139419555664,15.798750877380428],[102.30921936035162,15.79790115356451],[102.30935668945312,15.792108535766658],[102.30367279052757,15.788501739501953],[102.29692077636736,15.78735065460205],[102.29512786865263,15.784269332885856],[102.28676605224621,15.785671234130916],[102.28691101074224,15.782191276550293],[102.28074645996094,15.782501220703125],[102.27900695800798,15.77985000610363],[102.27185058593756,15.78335952758789],[102.26509857177734,15.780151367187443],[102.25824737548828,15.779731750488395],[102.25762939453142,15.769278526306152],[102.25306701660173,15.768621444702262],[102.25279235839872,15.76251029968273],[102.24716186523438,15.755581855773983],[102.25219726562506,15.753190994262752],[102.25203704834013,15.749799728393555],[102.24411010742188,15.750309944152946],[102.23150634765642,15.742871284484977],[102.2284927368164,15.747369766235465],[102.22193145751947,15.750880241394043],[102.21597290039091,15.75012111663824],[102.21459197998053,15.753141403198299],[102.20903778076172,15.752520561218375],[102.20487213134788,15.75541973114008],[102.2020187377932,15.747779846191406],[102.20252990722656,15.740979194641056],[102.19741821289068,15.738219261169434],[102.1890716552735,15.737751960754395],[102.18598175048834,15.739460945129338],[102.18148803710949,15.746530532836971],[102.17814636230474,15.743801116943473],[102.1703109741211,15.742959976196403],[102.16449737548857,15.736330032348576],[102.15907287597662,15.740710258484],[102.15653991699236,15.729470252990723],[102.16313171386724,15.728270530700684],[102.16240692138683,15.724480628967228],[102.15754699707037,15.723429679870605],[102.15431976318365,15.717790603637809],[102.15032958984398,15.705540657043457],[102.14501190185553,15.706250190734977],[102.14575958251959,15.700761795044002],[102.14414978027361,15.692641258239746],[102.1470870971682,15.684741973876953],[102.142593383789,15.678400993347168],[102.13855743408232,15.670250892639217],[102.13349151611328,15.670780181884766],[102.12755584716814,15.661351203918514],[102.12967681884766,15.657471656799373],[102.12799835205084,15.649411201477164],[102.12281799316406,15.651680946350098],[102.12166595458984,15.647371292114315],[102.11808013916021,15.644560813903809],[102.1093368530274,15.641691207885742],[102.10616302490229,15.63611030578619],[102.10730743408197,15.631702423095703],[102.1019668579101,15.629782676696891],[102.09114074707031,15.631950378417912],[102.08719635009788,15.628582000732536],[102.08995056152338,15.62463188171398],[102.08599090576172,15.621830940246582],[102.08241271972662,15.624331474304256],[102.07711791992216,15.62212944030773],[102.07431793212885,15.617410659790096],[102.07404327392584,15.607510566711426],[102.06822204589861,15.590519905090332],[102.06314086914068,15.587450027465877],[102.06365203857439,15.5798597335816],[102.0549087524414,15.569602012634277],[102.0452499389649,15.551140785217285],[102.04020690917986,15.54319095611578],[102.04400634765642,15.533040046692008],[102.04505157470709,15.527280807495174],[102.0429382324221,15.515339851379338],[102.03427886962908,15.497711181640625],[102.03414916992193,15.488690376281738],[102.03739929199224,15.47837066650402],[102.03469848632812,15.471611022949219],[102.02545166015653,15.466491699218807],[102.0112915039063,15.454300880432186],[102.00343322753912,15.456951141357365],[101.99794769287115,15.462789535522461],[101.98805236816435,15.460360527038517],[101.97425079345709,15.453920364379883],[101.95970916748064,15.451070785522575],[101.9453582763673,15.45100021362316],[101.93705749511724,15.452692031860465],[101.93090057373064,15.449660301208553],[101.92932128906278,15.438530921936149],[101.91513824462896,15.430959701538143],[101.9082260131836,15.412801742553711],[101.8973464965822,15.397731781005916],[101.88252258300787,15.38984203338623],[101.88046264648443,15.3858900070191],[101.84349822998058,15.410039901733512],[101.83306121826189,15.409871101379338],[101.82395172119146,15.412920951843262],[101.80867004394531,15.426451683044547],[101.80388641357439,15.424891471862736],[101.79920959472662,15.420110702514705],[101.79413604736345,15.402800559997672],[101.78771972656256,15.390860557556152],[101.7813186645509,15.383741378784293],[101.77149200439453,15.379861831665039],[101.76280975341825,15.378361701965446],[101.7431259155274,15.380829811096191],[101.73336791992193,15.380440711975098],[101.72322845458984,15.383179664611873],[101.71602630615257,15.389378547668514],[101.7100601196289,15.390291213989371],[101.70262908935547,15.393641471862793],[101.68821716308622,15.390020370483512],[101.68235778808588,15.39104080200201],[101.67389678955084,15.395780563354435],[101.66532897949247,15.399250030517635],[101.6602783203125,15.39996147155756],[101.6509628295899,15.396219253540153],[101.64373779296898,15.39475059509283],[101.63874053955078,15.389460563659668],[101.63709259033232,15.381621360778865],[101.62943267822288,15.365409851074276],[101.62145233154325,15.361090660095158],[101.61792755126953,15.362062454223746],[101.61334228515642,15.36769104003912],[101.5990829467774,15.377840042114315],[101.59317779541021,15.375411033630371],[101.59044647216814,15.371800422668514],[101.57247924804682,15.372261047363338],[101.56743621826195,15.370450973510742],[101.55901336669922,15.373840332031364],[101.5486297607423,15.373440742492619],[101.54187774658226,15.37424087524414],[101.52900695800776,15.372541427612305],[101.52271270751947,15.373709678649902],[101.52014160156273,15.3697509765625],[101.50675201416016,15.361270904541016],[101.50286102294916,15.357542037963924],[101.49430084228533,15.35608100891119],[101.47599792480486,15.366991043090877],[101.46456146240251,15.36747932434082],[101.45881652832026,15.369119644165153],[101.44464111328153,15.368099212646484],[101.44040679931663,15.370490074157715],[101.43508911132818,15.368930816650447],[101.42745971679693,15.358799934387207],[101.42201232910173,15.348839759826717],[101.42382812500006,15.343102455139217],[101.42238616943354,15.33605003356945],[101.4193267822265,15.332071304321346],[101.41773986816412,15.324710845947322],[101.41139221191412,15.322390556335506],[101.41333007812523,15.315292358398551],[101.4072189331057,15.314051628112907],[101.40213775634777,15.317791938781738],[101.39163970947294,15.319581031799316],[101.38931274414068,15.32168006896967],[101.3866729736331,15.329290390014705],[101.38186645507818,15.338709831237793],[101.37927246093744,15.35255146026617],[101.38056182861357,15.357430458068904],[101.37827301025419,15.362651824951229],[101.37716674804682,15.374509811401424],[101.37821960449224,15.380050659179688],[101.38205718994146,15.386480331420898],[101.37889862060541,15.389068603515682],[101.37837982177734,15.401950836181697],[101.37982177734386,15.407501220703125],[101.3790130615235,15.416740417480526],[101.37918853759788,15.431741714477539],[101.38094329834013,15.443041801452637],[101.38629913330107,15.463920593261662],[101.3875579833985,15.473090171813965],[101.38712310791033,15.482818603515625],[101.38075256347685,15.510442733764648],[101.37806701660162,15.517190933227539],[101.37584686279291,15.52746963500988],[101.37632751464866,15.534720420837402],[101.37448883056652,15.5458402633667],[101.37471771240251,15.555761337280387],[101.37127685546892,15.570671081543082],[101.37187957763672,15.57787132263195],[101.37172698974615,15.582271575927678],[101.37919616699224,15.615389823913688],[101.38259124755865,15.618330001831168],[101.38314056396484,15.62495136260992],[101.38572692871122,15.635919570922908],[101.38546752929693,15.640451431274414],[101.39324188232422,15.661369323730469],[101.39640045166044,15.680830955505428],[101.39688873291016,15.687582015991325],[101.400199890137,15.695992469787654],[101.4015426635745,15.70471096038824],[101.40148925781256,15.722729682922363],[101.40457153320318,15.731241226196289],[101.40775299072266,15.73449993133545],[101.40231323242216,15.740210533142204],[101.39369964599615,15.743540763855037],[101.38923645019531,15.742528915405217],[101.38514709472685,15.735119819641113],[101.36315155029303,15.741950035095329],[101.35161590576166,15.74751091003418],[101.34918975830078,15.750330924987793],[101.34104156494163,15.754340171814079],[101.3367919921875,15.753572463989315],[101.33759307861334,15.762390136718864],[101.33966827392578,15.766368865966797],[101.333061218262,15.771960258483944],[101.33451843261719,15.77594089508068],[101.32985687255871,15.783301353454647],[101.32376098632807,15.786340713500977],[101.31945037841797,15.78623199462902],[101.31855010986334,15.790130615234375],[101.32241821289074,15.795669555664062],[101.330825805664,15.79945087432867],[101.33177947998041,15.803281784057674],[101.32743072509783,15.80492115020752],[101.32875061035173,15.816069602966365],[101.33238983154314,15.821810722351017],[101.33200836181658,15.828600883483944],[101.32573699951172,15.830728530883903],[101.32653808593773,15.837149620056096],[101.33217620849626,15.842400550842285],[101.33232879638683,15.848882675170955],[101.32769012451195,15.851001739501896],[101.3294830322265,15.85509967803955],[101.3335800170899,15.874480247497615],[101.33294677734392,15.87887191772461],[101.3394165039062,15.88529014587408],[101.3436508178711,15.887181282043514],[101.352279663086,15.885880470275879],[101.35681915283203,15.8931503295899],[101.36279296875006,15.899520874023551],[101.36421203613276,15.9058198928833],[101.37061309814459,15.908241271972713],[101.3761596679688,15.917821884155217],[101.3745193481447,15.919210433959961],[101.36309051513689,15.920391082763786],[101.36505889892584,15.926240921020565],[101.36406707763672,15.931229591369572],[101.37107849121088,15.935811042785701],[101.37351989746122,15.953401565551758],[101.37600708007824,15.957180023193416],[101.3762512207033,15.963670730590934],[101.3736495971682,15.966980934143123],[101.36914062500011,15.966169357299862],[101.3590469360351,15.961112022400016],[101.3580932617187,15.965339660644645],[101.35446166992199,15.968061447143612],[101.35212707519537,15.974189758300781],[101.34816741943371,15.979561805725098],[101.34284210205072,15.983730316162223],[101.33857727050787,15.991401672363338],[101.33995056152372,15.995570182800236],[101.34516143798845,15.999979972839355],[101.34091186523449,16.00740051269537],[101.34216308593756,16.01134109497076],[101.33220672607422,16.021530151367244],[101.33130645751976,16.03183937072754],[101.32565307617199,16.035299301147404],[101.32438659667969,16.039340972900447],[101.32656860351568,16.04788970947277],[101.33116912841825,16.052110671997127],[101.32669067382812,16.059249877929688],[101.32975006103516,16.06973075866705],[101.33254241943354,16.07323265075695],[101.33365631103544,16.081951141357536],[101.33191680908232,16.085880279541072],[101.33772277832048,16.09474945068365],[101.33676910400408,16.100940704345703],[101.34002685546875,16.10379028320324],[101.33677673339861,16.11578941345209],[101.34108734130888,16.123149871826286],[101.34056854248064,16.13186073303234],[101.34429168701178,16.142381668090934],[101.3429565429688,16.150899887084904],[101.346176147461,16.15337181091303],[101.34815216064482,16.159309387207145],[101.35562133789057,16.16369056701666],[101.35764312744146,16.172281265258846],[101.36363983154291,16.17534255981451],[101.36487579345726,16.1830997467041],[101.37306213378912,16.186098098754883],[101.37985229492182,16.185461044311523],[101.38333892822266,16.187137603759766],[101.37979125976591,16.192930221557674],[101.37838745117188,16.199499130249137],[101.38037872314482,16.205799102783203],[101.37973785400396,16.21023178100586],[101.37339019775408,16.219100952148438],[101.37413787841814,16.230220794677734],[101.37726593017584,16.233129501342773],[101.37722778320312,16.239669799804688],[101.37046051025419,16.240739822387752],[101.36476135253918,16.246870040893555],[101.35813140869158,16.247310638427848],[101.3533172607423,16.2519207000733],[101.35494995117193,16.255809783935547],[101.35958862304716,16.25597190856945],[101.36219787597662,16.26176071166998],[101.37625885009783,16.268070220947322],[101.37512969970703,16.276609420776367],[101.37268066406256,16.28029060363781],[101.37239837646479,16.28866004943859],[101.37718200683588,16.295940399170036],[101.37986755371111,16.306539535522404],[101.3839721679688,16.3149795532226],[101.38188171386724,16.31883049011236],[101.38150787353544,16.326829910278434],[101.38343811035185,16.33769989013672],[101.38310241699236,16.34416961669922],[101.38713073730486,16.349660873413086],[101.38728332519526,16.356040954589844],[101.39704895019548,16.361339569091854],[101.39742279052751,16.367919921875057],[101.40283966064476,16.371980667114315],[101.41162109375006,16.37454032897955],[101.41407775878912,16.38055992126465],[101.4136734008789,16.387210845947266],[101.4039306640625,16.39598083496105],[101.4095306396485,16.39925193786621],[101.4111633300783,16.403472900390568],[101.41600799560553,16.40785026550293],[101.42234802246122,16.407270431518555],[101.42163085937517,16.41152763366705],[101.4237213134765,16.420410156250114],[101.42801666259788,16.42120933532715],[101.42900085449247,16.425510406494084],[101.43421936035173,16.42975807189947],[101.44927215576166,16.435529708862305],[101.44873046875017,16.441238403320256],[101.45049285888678,16.449840545654354],[101.45551300048857,16.45730018615717],[101.46340179443376,16.461631774902457],[101.46923828125006,16.473329544067326],[101.47477722167997,16.476959228515625],[101.47366333007824,16.486589431762752],[101.46511077880854,16.49995994567871],[101.4670486450197,16.507740020751953],[101.46685791015642,16.51396942138672],[101.4721221923831,16.521089553833065],[101.474349975586,16.527248382568416],[101.47995758056652,16.522619247436637],[101.48552703857439,16.52341079711914],[101.48690795898438,16.527429580688533],[101.49476623535179,16.531248092651367],[101.49743652343773,16.537210464477653],[101.50660705566412,16.537309646606502],[101.50775909423834,16.54141044616705],[101.51452636718767,16.54137039184576],[101.52072143554693,16.54680061340332],[101.51692199707037,16.552528381347713],[101.50628662109386,16.557189941406364],[101.50025939941406,16.56182098388672],[101.49788665771496,16.56937026977539],[101.50251770019548,16.586811065673942],[101.50209808349604,16.593490600585938],[101.50344085693354,16.602069854736442],[101.50308990478533,16.610000610351676],[101.50781250000011,16.614540100097713],[101.51853942871111,16.617361068725643],[101.52192687988293,16.615060806274414],[101.52783966064464,16.61829757690441],[101.52482604980486,16.6313095092774],[101.51663970947283,16.6389102935791],[101.51554107666021,16.646921157836914],[101.51174926757835,16.652580261230412],[101.51103210449247,16.656829833984375],[101.51345825195335,16.663089752197322],[101.5149993896485,16.67169952392578],[101.51226043701172,16.675319671630973],[101.51548004150408,16.680330276489258],[101.51950073242205,16.678060531616325],[101.52870941162115,16.67761993408203],[101.53656768798834,16.669359207153434],[101.54013061523438,16.664060592651424],[101.54827117919916,16.66753959655773],[101.55114746093767,16.65978050231928],[101.55500793457031,16.654399871826172],[101.5596313476563,16.654569625854606],[101.56331634521496,16.65205001831066],[101.56318664550781,16.647769927978516],[101.56729125976591,16.646511077880973],[101.57344055175776,16.64750099182129],[101.57434844970732,16.654069900512752],[101.5784683227539,16.66193962097168],[101.57901763916016,16.67066764831543],[101.57547760009771,16.6760311126709],[101.57324981689447,16.682889938354492],[101.57206726074247,16.691640853881836],[101.56413269042986,16.69626045227062],[101.56143951416033,16.704788208007926],[101.55670928955078,16.709730148315543],[101.5543594360351,16.720331192016545],[101.55564880371122,16.728740692138786],[101.5622329711914,16.729709625244254],[101.56732940673822,16.725168228149414],[101.57427215576172,16.72434043884283],[101.57834625244169,16.72575187683117],[101.58925628662121,16.722320556640682],[101.59445953369158,16.715581893920955],[101.59494018554716,16.70732116699213],[101.6063003540039,16.706171035766715],[101.61393737792969,16.69256019592291],[101.61943817138689,16.68530082702648],[101.63542175292963,16.679069519043082],[101.64788055419922,16.681800842285156],[101.6554412841798,16.686450958251953],[101.68443298339855,16.68628120422369],[101.69589233398432,16.6819305419923],[101.70015716552734,16.67595100402832],[101.70355224609392,16.674789428710994],[101.71084594726568,16.663570404052734],[101.71903991699219,16.657749176025447],[101.7190170288086,16.655570983886832],[101.72798156738281,16.649801254272575],[101.73419952392607,16.651840209960938],[101.73377227783209,16.655981063842773],[101.74373626709013,16.659339904785213],[101.74552917480469,16.665809631347713],[101.7497329711914,16.666679382324162]]]},"properties":{"ID_0":228,"ISO":"TH-36","NAME_0":"Thailand","ID_1":8,"NAME_1":"Chaiyaphum","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ชัยภูมิ","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[102.24138641357416,12.296111106872672],[102.2444458007812,12.293060302734432],[102.23889160156261,12.285833358764592],[102.23500061035162,12.296668052673397],[102.24138641357416,12.296111106872672]]],[[[102.34829711914068,12.365584373474064],[102.35166931152361,12.371666908264217],[102.35679626464838,12.373332977294865],[102.35264587402344,12.37096023559576],[102.34829711914068,12.365584373474064]]],[[[102.35805511474615,12.37388896942133],[102.36111450195318,12.376667022705135],[102.36332702636719,12.383890151977596],[102.366943359375,12.385833740234318],[102.36496734619152,12.384571075439567],[102.36052703857428,12.375031471252441],[102.35805511474615,12.37388896942133]]],[[[102.2827758789062,12.389444351196346],[102.28722381591797,12.38305568695074],[102.28444671630888,12.377777099609489],[102.27916717529291,12.385560989379883],[102.2827758789062,12.389444351196346]]],[[[102.37143707275419,12.392794609069824],[102.37300872802729,12.386492729187012],[102.36888885498053,12.385833740234318],[102.37166595458979,12.386941909790096],[102.37143707275419,12.392794609069824]]],[[[102.24399566650396,12.392635345458984],[102.25083160400396,12.393060684204158],[102.2516632080081,12.387222290039062],[102.24557495117199,12.381136894226017],[102.23761749267595,12.379870414733887],[102.23304748535156,12.382780075073242],[102.23583221435575,12.388060569763297],[102.2355575561524,12.391387939453125],[102.24028015136736,12.39778137207037],[102.24399566650396,12.392635345458984]]],[[[102.37143707275419,12.392794609069824],[102.37027740478544,12.38750171661377],[102.36444091796892,12.386943817138672],[102.36083221435564,12.383334159851131],[102.35916900634771,12.378054618835563],[102.35194396972662,12.374443054199219],[102.34889221191412,12.370000839233398],[102.34111022949247,12.367501258850211],[102.33693695068371,12.371391296386719],[102.33277893066423,12.371110916137752],[102.33110809326172,12.377221107483024],[102.32554626464861,12.37611103057867],[102.32777404785168,12.371666908264217],[102.33708190917974,12.369300842285156],[102.33889007568376,12.36722278594982],[102.33611297607428,12.357219696044979],[102.3314514160158,12.355243682861328],[102.33389282226557,12.350281715393123],[102.33361053466803,12.343608856201172],[102.33638763427729,12.33639144897461],[102.3297195434572,12.333332061767578],[102.32583618164091,12.329722404480037],[102.3189392089846,12.326630592346248],[102.30871582031244,12.31735992431635],[102.30361175537126,12.308060646057129],[102.28861236572288,12.314721107482853],[102.2838897705081,12.319998741149846],[102.28193664550804,12.328331947326717],[102.27916717529291,12.332221984863395],[102.27749633789062,12.339719772338924],[102.27899169921892,12.345491409301758],[102.27111053466825,12.347221374511776],[102.27081298828125,12.356240272522086],[102.26721954345709,12.368061065673828],[102.26944732666033,12.370000839233398],[102.27765655517595,12.368648529052791],[102.28722381591797,12.37583255767828],[102.29332733154297,12.372501373291072],[102.29611206054699,12.376667022705135],[102.29000091552763,12.381389617919922],[102.28305816650396,12.393060684204158],[102.28710174560553,12.403219223022518],[102.28221893310541,12.409170150756893],[102.28389739990263,12.41417121887207],[102.29165649414085,12.412500381469783],[102.28805541992193,12.418057441711426],[102.28246307373047,12.41550159454357],[102.27997589111328,12.412231445312557],[102.28166961669939,12.401941299438477],[102.27527618408209,12.388060569763297],[102.27333068847662,12.385556221008414],[102.26757049560547,12.396351814270076],[102.2673645019533,12.402963638305721],[102.26444244384794,12.407771110534725],[102.2561111450197,12.416110038757324],[102.26171875000023,12.425707817077694],[102.26611328125006,12.42944526672369],[102.26777648925781,12.433611869812012],[102.2652664184572,12.440279960632324],[102.26166534423828,12.433611869812012],[102.23860168457031,12.42556190490717],[102.23388671875006,12.42611122131359],[102.2269363403322,12.422500610351562],[102.21916961669928,12.42611122131359],[102.21611022949224,12.432221412658691],[102.21882629394537,12.438548088073674],[102.21555328369163,12.441671371459904],[102.20971679687511,12.438070297241211],[102.20527648925787,12.43778038024908],[102.20276641845709,12.43278026580822],[102.21415710449236,12.43778038024908],[102.21420288085943,12.430719375610352],[102.21916961669928,12.421388626098633],[102.21546936035173,12.419040679931697],[102.21277618408197,12.412500381469783],[102.20889282226568,12.407500267028922],[102.21166992187517,12.405834197998047],[102.21472167968767,12.410559654235954],[102.22027587890625,12.41417121887207],[102.22750091552751,12.413331985473746],[102.23388671875006,12.418061256408805],[102.23833465576166,12.41694355010992],[102.24694824218767,12.403328895568904],[102.24222564697266,12.398056983947697],[102.23722076416033,12.3980588912965],[102.2361068725586,12.393329620361442],[102.23472595214838,12.393331527710018],[102.23500061035162,12.38833045959484],[102.23221588134777,12.385831832885742],[102.23221588134777,12.380828857421989],[102.23683166503923,12.379303932189998],[102.24194335937511,12.380002021789664],[102.24610900878935,12.376671791076774],[102.25000000000017,12.382780075073242],[102.25407409667974,12.380619049072266],[102.25691223144531,12.371911048889274],[102.25587463378918,12.362416267395076],[102.25836944580072,12.349010467529354],[102.2657928466798,12.336461067199764],[102.27249908447283,12.330555915832576],[102.27639007568365,12.325278282165584],[102.27583312988304,12.310557365417424],[102.2591629028322,12.305569648742733],[102.25332641601585,12.306671142578068],[102.24463653564447,12.314521789550781],[102.23596191406273,12.320503234863338],[102.22360229492216,12.327779769897575],[102.21181488037121,12.33899974822998],[102.20117187500017,12.354633331298942],[102.18666839599626,12.372220993042106],[102.16166687011713,12.396671295166016],[102.1558532714846,12.398391723632926],[102.15249633789074,12.401943206787053],[102.13646697998058,12.410893440246696],[102.1292190551759,12.412159919738826],[102.12666320800787,12.403888702392578],[102.11833190917997,12.408889770507926],[102.11972045898455,12.412782669067326],[102.12407684326183,12.411989212036246],[102.12613677978544,12.417220115661678],[102.12305450439476,12.423889160156307],[102.11332702636741,12.43778038024908],[102.10803985595732,12.447065353393555],[102.10104370117205,12.454639434814453],[102.08638763427734,12.467499732971135],[102.06888580322288,12.478061676025334],[102.06083679199219,12.481110572814998],[102.06500244140642,12.483609199523869],[102.06971740722668,12.493892669677678],[102.066390991211,12.50333309173584],[102.0716629028322,12.50999927520752],[102.07805633544928,12.511111259460506],[102.07583618164057,12.515560150146541],[102.08304595947294,12.521389961242676],[102.08611297607433,12.518055915832576],[102.10148620605474,12.521230697631836],[102.11055755615229,12.52805423736578],[102.10610961914091,12.531099319458008],[102.09777832031244,12.524441719055176],[102.09249877929688,12.52250003814703],[102.08838653564482,12.524700164794979],[102.070556640625,12.527780532836857],[102.07138824462896,12.532220840454102],[102.07943725585949,12.532220840454102],[102.08777618408209,12.538060188293514],[102.07601165771496,12.537409782409668],[102.07244873046875,12.538793563842773],[102.06222534179693,12.536110877990836],[102.05526733398455,12.531940460205135],[102.04722595214838,12.530279159545955],[102.04389190673851,12.538470268249625],[102.03888702392578,12.538060188293514],[102.03555297851591,12.541390419006404],[102.0247192382812,12.54083442687994],[102.03048706054688,12.549840927124023],[102.02889251708996,12.563055038452205],[102.0333328247072,12.562499046325684],[102.03861236572294,12.558054924011287],[102.04360961914057,12.560278892517204],[102.0425033569336,12.566110610962028],[102.04915618896501,12.567779541015739],[102.05388641357433,12.573333740234318],[102.05249786376959,12.57667064666748],[102.04638671875006,12.569722175598201],[102.03971862792974,12.567777633666992],[102.038330078125,12.561111450195256],[102.02777862548822,12.568612098693848],[102.0238876342774,12.56639194488531],[102.02555847167974,12.558330535888786],[102.02361297607439,12.555270195007267],[102.02361297607439,12.54889011383068],[102.02055358886736,12.545833587646484],[102.02146148681652,12.539987564086857],[102.02523803710966,12.53840446472168],[102.03277587890625,12.539720535278377],[102.03805541992199,12.531389236450309],[102.04194641113281,12.531099319458008],[102.04336547851591,12.52647686004633],[102.04972076416033,12.52472019195551],[102.05472564697266,12.52861118316656],[102.0591659545899,12.5294446945191],[102.06242370605474,12.525746345520133],[102.06296539306663,12.521552085876522],[102.0599975585937,12.511391639709473],[102.05665588378912,12.504440307617301],[102.05847167968744,12.490358352661246],[102.05500030517607,12.48556041717535],[102.0599975585937,12.470554351806697],[102.05750274658214,12.468051910400447],[102.05249786376959,12.47250080108654],[102.04389190673851,12.471943855285758],[102.04428863525396,12.476230621337947],[102.04059600830078,12.479829788208065],[102.0408325195313,12.483055114746207],[102.04611968994158,12.485001564025993],[102.04611968994158,12.490280151367244],[102.04028320312506,12.487218856811637],[102.04334259033209,12.495760917663517],[102.03771972656267,12.505571365356502],[102.03081512451166,12.513397216796989],[102.01805877685564,12.523610115051383],[102.00000000000006,12.534721374511776],[101.98361206054693,12.541111946106014],[101.97389984130882,12.543060302734375],[101.96166992187506,12.542779922485408],[101.95083618164068,12.539168357849064],[101.95333099365263,12.553330421447697],[101.95780181884783,12.562630653381461],[101.95305633544922,12.569999694824276],[101.9544372558596,12.57388973236084],[101.96277618408203,12.580556869506836],[101.96138763427729,12.586944580078182],[101.95667266845703,12.594169616699219],[101.94999694824219,12.595556259155387],[101.9605560302735,12.610000610351562],[101.9605560302735,12.618062019348258],[101.96499633789074,12.618055343628043],[101.96666717529303,12.622221946716365],[101.9544372558596,12.62028026580822],[101.95790863037138,12.617635726928768],[101.95944213867216,12.610280990600529],[101.95417022705095,12.607222557067985],[101.9438781738283,12.595820426940975],[101.93873596191423,12.58882999420166],[101.93473052978533,12.58888244628912],[101.933891296387,12.582501411438045],[101.9366683959961,12.578056335449332],[101.94139099121111,12.57528018951416],[101.94361114501982,12.568609237670955],[101.94305419921903,12.558610916137752],[101.94694519042969,12.548055648803825],[101.94583129882818,12.545001983642521],[101.95083618164068,12.519441604614258],[101.94568634033209,12.521697998046875],[101.94552612304716,12.5282497406007],[101.94361114501982,12.532501220703068],[101.9286727905274,12.537186622619686],[101.9254913330081,12.545761108398494],[101.90833282470732,12.563130378723258],[101.89566802978521,12.571526527404842],[101.88916778564453,12.569999694824276],[101.88388824462896,12.579171180725154],[101.88397979736345,12.582329750061035],[101.89055633544928,12.582501411438045],[101.89813232421875,12.574171066284237],[101.90200042724615,12.573064804077262],[101.90850067138678,12.578371047973633],[101.90499877929688,12.596109390258789],[101.90139007568365,12.599721908569393],[101.89250183105497,12.603334426879883],[101.882553100586,12.599459648132381],[101.88249969482422,12.593890190124569],[101.87944793701172,12.592782020568961],[101.87799072265653,12.600973129272461],[101.87166595459007,12.606944084167594],[101.86611175537115,12.61555480957037],[101.86447143554716,12.621100425720272],[101.86423492431646,12.631754875183049],[101.86251068115257,12.64249038696289],[101.85568237304716,12.646416664123535],[101.85305786132807,12.65194129943859],[101.84471893310547,12.658333778381404],[101.83693695068365,12.662780761718693],[101.82611083984403,12.672221183776855],[101.81111145019548,12.679169654846305],[101.79528045654314,12.68833160400385],[101.78694152832031,12.69139099121088],[101.78527832031256,12.69444274902338],[101.79138946533209,12.70083332061779],[101.78743743896479,12.704751014709586],[101.78544616699241,12.710139274597282],[101.79166412353533,12.713332176208496],[101.79769897460966,12.71876144409174],[101.80039215087902,12.72562122344982],[101.79840850830084,12.731492042541504],[101.80438232421903,12.740340232849235],[101.8007202148438,12.745991706848201],[101.80616760253923,12.75158977508545],[101.80681610107445,12.754890441894645],[101.81176757812523,12.754790306091365],[101.8118972778322,12.74982070922863],[101.8150024414063,12.748731613159293],[101.8207015991211,12.753590583801326],[101.81871795654291,12.757901191711426],[101.8209915161134,12.762671470642204],[101.81858825683594,12.765840530395508],[101.81973266601562,12.776610374450797],[101.82227325439459,12.779609680175838],[101.8207015991211,12.784781455993766],[101.82315826416016,12.790519714355582],[101.8194198608399,12.79883193969738],[101.82919311523449,12.809850692749023],[101.8312377929688,12.824971199035758],[101.82926177978516,12.82832145690918],[101.82978057861322,12.838391304016113],[101.82633209228527,12.841420173644963],[101.82847595214861,12.852720260620117],[101.823226928711,12.861820220947209],[101.82430267333984,12.872710227966422],[101.82109832763678,12.878730773925781],[101.81861877441412,12.88850021362316],[101.82022857666027,12.89369201660162],[101.8189086914062,12.899320602417049],[101.8151626586914,12.900761604309082],[101.81215667724632,12.893710136413574],[101.81320190429682,12.886509895324707],[101.80951690673857,12.884989738464412],[101.80764007568371,12.899180412292424],[101.80293273925798,12.908470153808594],[101.80367279052751,12.916661262512264],[101.797607421875,12.925100326538143],[101.791732788086,12.928751945495605],[101.79382324218756,12.938260078430233],[101.79138183593756,12.94202995300293],[101.77993011474615,12.951690673828239],[101.77536773681646,12.950519561767578],[101.76750183105474,12.943299293518123],[101.75881958007824,12.939850807189998],[101.75665283203148,12.940780639648494],[101.75189971923834,12.949839591980037],[101.74813079833996,12.949140548706112],[101.74011993408214,12.958170890808105],[101.7429885864259,12.974761009216422],[101.73963928222656,12.979031562805233],[101.74030303955107,12.982851028442496],[101.75595092773449,13.005010604858455],[101.76026153564459,13.012579917907715],[101.76113128662104,13.021980285644531],[101.7580871582033,13.031201362609806],[101.75485992431658,13.035591125488338],[101.74830627441435,13.03413200378418],[101.74574279785156,13.03656196594244],[101.740463256836,13.033141136169547],[101.73203277587896,13.032880783081112],[101.72788238525419,13.028780937194881],[101.71859741210932,13.03296089172369],[101.71385192871111,13.046501159668082],[101.71469879150396,13.051191329956112],[101.70522308349621,13.066471099853459],[101.70427703857416,13.072661399841309],[101.69541931152366,13.088391304016227],[101.69429016113287,13.09309101104742],[101.69992828369158,13.108558654785156],[101.69487762451178,13.107549667358398],[101.69037628173845,13.109489440917912],[101.68666076660162,13.118270874023438],[101.69077301025408,13.129098892211971],[101.69738769531278,13.134210586547908],[101.69692230224615,13.143117904663143],[101.6984786987307,13.151228904724064],[101.70484161376964,13.15936088562023],[101.71221160888695,13.159890174865723],[101.71752166748053,13.167620658874569],[101.71688079833979,13.17169189453125],[101.72013092041033,13.179710388183594],[101.7322616577149,13.17750072479248],[101.73921203613298,13.183479309081974],[101.7438583374024,13.18446159362793],[101.75096893310575,13.182141304016113],[101.75579833984392,13.18650054931652],[101.75985717773438,13.186900138855037],[101.76657867431646,13.183541297912598],[101.77314758300776,13.182741165161246],[101.7765426635745,13.184969902038631],[101.77897644042974,13.189970016479492],[101.78482818603516,13.19456863403326],[101.78956604003923,13.200410842895565],[101.79740142822283,13.200709342956657],[101.80712890625017,13.206542015075627],[101.8093872070312,13.209650993347282],[101.81691741943382,13.214090347290039],[101.82305145263678,13.219949722290153],[101.82640838623047,13.231430053710938],[101.8289184570313,13.235610008239803],[101.83316802978544,13.236441612243766],[101.8384628295899,13.232481002807617],[101.8410720825197,13.236359596252441],[101.84646606445318,13.238519668579102],[101.84955596923834,13.24512958526617],[101.86733245849638,13.24536037445074],[101.8716430664063,13.243351936340332],[101.87428283691406,13.238240242004451],[101.872856140137,13.223308563232422],[101.8758392333985,13.221250534057617],[101.88022613525396,13.223752021789608],[101.87959289550798,13.229511260986442],[101.88434600830072,13.235170364379996],[101.8902893066408,13.232171058654785],[101.89225006103521,13.225879669189567],[101.90171051025408,13.23330116271984],[101.89692687988276,13.24302196502697],[101.9001083374024,13.265250205993766],[101.90701293945324,13.270589828491325],[101.9075317382813,13.278031349182186],[101.90563964843756,13.284011840820256],[101.90724945068376,13.286601066589355],[101.915512084961,13.287468910217228],[101.920883178711,13.291371345519963],[101.9288330078125,13.294329643249625],[101.9287567138673,13.288339614868221],[101.93213653564459,13.2882919311524],[101.93669128417974,13.292760848999023],[101.94284820556669,13.291119575500545],[101.9492263793947,13.29286193847662],[101.96170043945318,13.30708122253418],[101.9692611694336,13.323971748352164],[101.97814178466825,13.326121330261287],[101.98448944091814,13.3303604125976],[101.99030303955101,13.332160949707088],[101.99398040771513,13.32200145721447],[102.00296020507824,13.314791679382267],[102.00785827636724,13.304339408874512],[102.01216888427751,13.291031837463493],[102.02587890625017,13.286020278930664],[102.02945709228544,13.286660194397086],[102.03617858886736,13.282659530639648],[102.03710937499994,13.277901649475211],[102.03083801269548,13.26602935791027],[102.03164672851562,13.261370658874455],[102.02973937988281,13.235680580139217],[102.04651641845703,13.24053955078125],[102.05182647705095,13.238361358642578],[102.0581893920899,13.23967075347906],[102.06373596191429,13.243981361389103],[102.06575775146501,13.249881744384822],[102.07322692871094,13.254481315612907],[102.08490753173851,13.256470680236873],[102.091781616211,13.258879661560115],[102.09575653076178,13.258410453796444],[102.10423278808605,13.260381698608455],[102.10997772216791,13.26308917999279],[102.11904144287132,13.275651931762638],[102.12100982666044,13.291069984436149],[102.119888305664,13.297581672668514],[102.12075042724615,13.302430152893123],[102.12545013427751,13.308409690856934],[102.13101959228516,13.324140548706112],[102.12805938720732,13.326239585876522],[102.13095092773432,13.334610939025879],[102.13903045654297,13.331029891967887],[102.14244842529297,13.32129192352295],[102.14189910888672,13.31639194488531],[102.14560699462919,13.30990123748785],[102.15339660644537,13.304841041564941],[102.15595245361322,13.296110153198356],[102.16425323486351,13.29457092285162],[102.17359161376976,13.295651435852108],[102.17797088623053,13.297761917114371],[102.18363189697283,13.30321979522705],[102.18863677978521,13.301712036132926],[102.19209289550804,13.295161247253418],[102.19100189209013,13.291740417480526],[102.19296264648455,13.286410331726074],[102.19689178466803,13.282439231872672],[102.1977005004884,13.275902748107967],[102.20260620117193,13.265940666198844],[102.20437622070324,13.257961273193303],[102.20665740966808,13.25741195678711],[102.21286773681646,13.262131690979004],[102.22187042236334,13.263139724731445],[102.22808074951189,13.258410453796444],[102.24543762207048,13.262681007385254],[102.25570678710932,13.255670547485352],[102.27510833740263,13.254350662231445],[102.28276824951183,13.258720397949276],[102.28740692138672,13.259230613708496],[102.28988647460938,13.265781402587834],[102.29247283935575,13.264780998230094],[102.29518890380854,13.273480415344238],[102.29261016845726,13.27600955963129],[102.29648590087919,13.282429695129395],[102.29608917236357,13.28822135925293],[102.28974914550804,13.294911384582576],[102.29270172119135,13.29894924163824],[102.29943084716797,13.294380187988338],[102.2993774414062,13.289072036743164],[102.3124389648438,13.285810470581168],[102.32440185546892,13.295890808105469],[102.32411193847662,13.299539566040039],[102.32810211181646,13.304791450500488],[102.33304595947288,13.31406021118164],[102.3370132446289,13.314981460571289],[102.34552001953136,13.30370998382574],[102.34970092773466,13.296540260314998],[102.35507965087885,13.297624588012695],[102.35221862792963,13.292030334472656],[102.35089874267595,13.285131454467773],[102.35099792480474,13.275840759277344],[102.35515594482428,13.269190788268986],[102.36551666259794,13.265550613403263],[102.36878967285168,13.260980606079045],[102.36804199218744,13.253919601440487],[102.37123107910185,13.242330551147575],[102.37210845947266,13.235300064086971],[102.37847137451178,13.227940559387264],[102.38079833984386,13.221599578857422],[102.3892822265625,13.213339805603084],[102.39118957519531,13.200901031494254],[102.39414215087919,13.197870254516602],[102.39556121826172,13.192159652710075],[102.39321899414057,13.184540748596248],[102.39508056640653,13.175119400024528],[102.3999099731447,13.169401168823299],[102.4005126953125,13.15520191192627],[102.40737915039062,13.143860816955566],[102.41252899169922,13.14254093170166],[102.4195632934572,13.135250091552791],[102.41803741455095,13.12162113189703],[102.4241714477539,13.115498542785758],[102.42639923095697,13.106829643249625],[102.43270874023432,13.103699684143123],[102.43617248535173,13.09845066070551],[102.43675231933594,13.088081359863395],[102.44103240966803,13.084230422973633],[102.44609069824236,13.085639953613224],[102.45050048828125,13.082082748413143],[102.45800781250006,13.081790924072266],[102.462387084961,13.079340934753475],[102.49672698974615,13.01173019409174],[102.50663757324224,13.004181861877555],[102.5272064208985,13.00421237945551],[102.53292846679693,12.999721527099553],[102.52529907226568,12.994231224060172],[102.51104736328153,12.99308013916027],[102.50373077392584,12.98853969573969],[102.5034561157226,12.985251426696891],[102.49054718017578,12.980641365051383],[102.48840332031244,12.974810600280819],[102.4920883178711,12.973059654235954],[102.49932861328125,12.966031074523926],[102.50354003906256,12.957901954650879],[102.4987564086914,12.949810981750488],[102.4924392700197,12.948060035705623],[102.48812866210943,12.944881439209041],[102.49093627929688,12.941170692443904],[102.49398803710938,12.93030071258545],[102.49685668945312,12.923999786376896],[102.50434875488287,12.912481307983455],[102.5062026977539,12.903849601745662],[102.50553131103544,12.899389266967887],[102.51101684570318,12.894961357116813],[102.50781250000028,12.879830360412711],[102.51071929931635,12.86354064941412],[102.50430297851568,12.861280441284123],[102.5006408691408,12.856120109558105],[102.50306701660168,12.848581314087028],[102.50766754150385,12.844470977783203],[102.5151596069336,12.841171264648438],[102.51750183105474,12.838419914245662],[102.51875305175798,12.829851150512752],[102.51734924316435,12.821540832519531],[102.52237701416033,12.820420265197754],[102.5304794311524,12.815251350402946],[102.53489685058622,12.808500289916992],[102.5315780639649,12.801370620727539],[102.53073120117182,12.793999671936149],[102.5355300903322,12.787730216980094],[102.53861236572266,12.781279563903865],[102.53620910644537,12.774491310119686],[102.5351028442384,12.764970779419002],[102.52587127685553,12.759049415588436],[102.52610015869146,12.75640964508068],[102.52015686035179,12.749280929565543],[102.51181793212919,12.75056171417242],[102.50514221191435,12.75164890289318],[102.50126647949224,12.755881309509277],[102.49244689941406,12.754611968994084],[102.49034881591797,12.75023078918457],[102.48487854003929,12.746809959411678],[102.4759368896485,12.734730720520076],[102.46687316894548,12.732749938964957],[102.45992279052763,12.732490539550838],[102.4514770507813,12.73390102386469],[102.44432067871105,12.736499786376896],[102.44093322753923,12.730320930481014],[102.43666076660185,12.728650093078727],[102.43173217773449,12.72251033782959],[102.42607879638672,12.722129821777344],[102.42501831054716,12.710700035095215],[102.41561889648443,12.70543003082281],[102.4111633300783,12.700421333313102],[102.40400695800804,12.69929122924816],[102.40206146240234,12.696559906005916],[102.40381622314476,12.691089630127067],[102.39372253417974,12.685469627380371],[102.3948593139649,12.67870998382574],[102.38632965087902,12.67821979522705],[102.38436889648443,12.67080116271984],[102.38687896728544,12.667949676513729],[102.38558959960932,12.66068172454834],[102.38861083984403,12.656821250915641],[102.3893585205081,12.647530555725211],[102.39462280273438,12.637861251831112],[102.39154815673828,12.633041381835938],[102.39292144775396,12.62865066528326],[102.39849090576178,12.626111984252873],[102.40229034423851,12.614510536193961],[102.39710998535162,12.61235141754156],[102.39881134033203,12.609060287475643],[102.38925170898455,12.608711242675838],[102.393539428711,12.601399421691951],[102.40119171142607,12.5947904586792],[102.4015502929688,12.592281341552848],[102.41162109375006,12.586060523986873],[102.41773986816429,12.578300476074219],[102.4246215820313,12.572369575500488],[102.42365264892601,12.568281173706168],[102.41767120361345,12.57014083862316],[102.40312957763666,12.566451072692871],[102.3998565673831,12.567411422729492],[102.39752197265648,12.573051452636776],[102.38867187500017,12.57641983032238],[102.38452148437506,12.5829696655274],[102.38185882568365,12.582370758056754],[102.37687683105469,12.5954008102417],[102.37374114990246,12.596520423889217],[102.36561584472656,12.593100547790641],[102.35877990722662,12.594491004943961],[102.34709930419939,12.587649345398063],[102.34561920166021,12.580720901489315],[102.33995819091825,12.568299293518123],[102.33483886718761,12.568591117859],[102.33168029785156,12.563089370727539],[102.32411193847662,12.558279991149902],[102.31674194335932,12.559330940246525],[102.31188964843756,12.555501937866325],[102.30670928955084,12.554670333862362],[102.30744171142578,12.547199249267635],[102.31669616699247,12.53989028930664],[102.3171615600586,12.532481193542537],[102.3155899047851,12.526220321655273],[102.31858062744146,12.508579254150334],[102.32164764404325,12.50834178924572],[102.32633209228516,12.503111839294377],[102.33029174804705,12.501180648803654],[102.33206176757812,12.496200561523494],[102.3429183959961,12.480590820312614],[102.34320068359403,12.47544097900402],[102.33965301513689,12.470879554748649],[102.33840179443365,12.463089942932243],[102.33338165283203,12.46068096160883],[102.32836151123041,12.454621315002498],[102.32128906250011,12.451089859008903],[102.32856750488276,12.44441032409668],[102.33032989501953,12.43893146514904],[102.32808685302757,12.43578052520752],[102.32678222656256,12.428169250488224],[102.32804870605469,12.424578666687125],[102.33541107177746,12.417090415954533],[102.34265136718761,12.415539741516113],[102.35192108154303,12.411569595336971],[102.35930633544939,12.404391288757438],[102.36817169189459,12.402320861816463],[102.37143707275419,12.392794609069824]]]]},"properties":{"ID_0":228,"ISO":"TH-22","NAME_0":"Thailand","ID_1":9,"NAME_1":"Chanthaburi","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"จันทบุรี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.40245819091825,18.997560501098633],[99.39457702636724,18.99519157409668],[99.3917083740235,18.991670608520565],[99.38622283935553,18.989351272583008],[99.37642669677734,18.982980728149528],[99.37491607666021,18.970849990844727],[99.3789672851563,18.966180801391715],[99.37697601318376,18.957807540893555],[99.38494110107433,18.951110839843693],[99.3878479003908,18.941129684448356],[99.38481140136719,18.92933082580572],[99.37986755371094,18.920330047607422],[99.38468170166038,18.908340454101676],[99.38604736328153,18.89714050292963],[99.38854217529325,18.89241981506342],[99.38774871826178,18.88731956481945],[99.39237213134777,18.883691787719727],[99.38794708251982,18.876310348510685],[99.38941192626959,18.873811721801815],[99.3871688842774,18.86598968505865],[99.3741226196289,18.85518074035656],[99.36746215820312,18.852470397949332],[99.36173248291016,18.848131179809684],[99.35370635986345,18.844709396362305],[99.3524703979495,18.83173942565918],[99.35594940185558,18.8226318359375],[99.35832214355474,18.80677986145014],[99.36109161376964,18.79817008972168],[99.36579895019554,18.792659759521598],[99.36757659912121,18.784099578857536],[99.37223815917969,18.778329849243278],[99.36949920654291,18.77446937561041],[99.36791229248053,18.766788482666016],[99.37242889404297,18.756641387939567],[99.37210083007818,18.750881195068416],[99.36846923828148,18.747020721435604],[99.36292266845726,18.74464035034174],[99.34948730468767,18.731641769409237],[99.34971618652344,18.72322273254406],[99.34532928466797,18.71544075012207],[99.34263610839861,18.713850021362305],[99.3424224853515,18.703689575195426],[99.33621215820318,18.700681686401367],[99.33557128906267,18.68925094604498],[99.32901763916044,18.68304824829096],[99.33268737792963,18.67827033996582],[99.335502624512,18.669860839843807],[99.33487701416021,18.66654968261713],[99.3406372070313,18.663522720337028],[99.35025787353533,18.653829574585018],[99.34375762939447,18.64788055419922],[99.33725738525402,18.648508071899414],[99.33370208740234,18.647020339965877],[99.32884216308622,18.636819839477653],[99.32833862304705,18.627201080322266],[99.33145904541038,18.62494087219244],[99.3290481567384,18.619171142578182],[99.33020782470697,18.615989685058537],[99.33909606933616,18.613901138305778],[99.34774017333996,18.614500045776424],[99.35502624511736,18.610588073730526],[99.36000061035173,18.60522270202648],[99.35810089111328,18.59745025634777],[99.35492706298851,18.593030929565543],[99.3516464233399,18.59267807006836],[99.35289764404308,18.576320648193416],[99.33454132080107,18.57431983947754],[99.32998657226591,18.56508064270031],[99.3308715820313,18.557859420776424],[99.3282165527346,18.540870666503906],[99.3242874145509,18.53413963317871],[99.31857299804682,18.53088951110834],[99.31449127197288,18.5304794311524],[99.30404663085966,18.53498077392578],[99.29704284667986,18.536401748657283],[99.28961944580095,18.545619964599666],[99.28272247314447,18.549459457397518],[99.27465820312528,18.55741119384777],[99.27317810058588,18.561128616333008],[99.26377105712896,18.570159912109432],[99.2519989013673,18.57339096069336],[99.24636840820318,18.580631256103516],[99.23841094970732,18.58072090148937],[99.23076629638678,18.587289810180664],[99.22293853759788,18.588859558105582],[99.22075653076189,18.5933780670166],[99.22480010986328,18.601030349731445],[99.2252883911134,18.606050491333065],[99.23528289794922,18.61280059814453],[99.23713684082026,18.615629196166992],[99.23464202880871,18.620109558105526],[99.23336791992188,18.626930236816406],[99.23501586914074,18.634021759033146],[99.23284149169945,18.640989303588867],[99.2357101440432,18.648559570312614],[99.23396301269537,18.650949478149357],[99.21875762939459,18.652751922607422],[99.21582794189453,18.657579421997184],[99.20861816406273,18.657512664794922],[99.20643615722673,18.666299819946346],[99.20117187500006,18.668649673462028],[99.19055938720732,18.677459716796875],[99.18869018554682,18.687950134277344],[99.19209289550793,18.697830200195256],[99.18949127197266,18.70523834228527],[99.18325805664085,18.706012725830135],[99.18049621582048,18.7035808563233],[99.16844177246105,18.704730987548942],[99.15743255615251,18.70811080932623],[99.14356994628912,18.70074844360363],[99.13748168945335,18.699291229248047],[99.13352203369169,18.69285964965826],[99.12903594970703,18.688499450683594],[99.12515258789074,18.681110382080192],[99.11640167236322,18.680400848388672],[99.11458587646507,18.677360534668082],[99.10382080078142,18.678390502929688],[99.08232879638678,18.678140640258846],[99.07775115966803,18.67966079711914],[99.06761932373047,18.67168045043951],[99.05335235595709,18.66644096374523],[99.03713226318365,18.667518615722656],[99.01622009277372,18.67251014709467],[99.01171875000017,18.670749664306697],[99.00611877441435,18.658910751342773],[99.00641632080084,18.64268112182623],[98.9986190795899,18.63766098022461],[98.99186706542986,18.636550903320426],[98.98510742187506,18.632650375366268],[98.97985076904314,18.634029388427678],[98.9783096313476,18.626951217651424],[98.9694519042971,18.616350173950252],[98.96673583984375,18.60978126525879],[98.97090911865234,18.601320266723746],[98.96697235107445,18.595849990844727],[98.9636306762697,18.595090866088924],[98.95504760742205,18.583959579467773],[98.95527648925781,18.579210281372184],[98.94978332519537,18.571529388427734],[98.94538879394537,18.56225967407238],[98.93901824951166,18.559640884399414],[98.93447113037126,18.552659988403377],[98.93406677246111,18.543382644653263],[98.93070983886724,18.53833961486822],[98.92533111572266,18.534122467041016],[98.91565704345726,18.53277015686041],[98.90450286865251,18.524480819702205],[98.89701843261747,18.521230697631893],[98.88775634765625,18.514429092407227],[98.88311004638683,18.509410858154354],[98.8790969848634,18.5095596313476],[98.87623596191418,18.513370513916072],[98.86934661865263,18.512960433959904],[98.86305999755888,18.506191253662223],[98.86289215087902,18.502199172973633],[98.857192993164,18.498090744018555],[98.8537902832033,18.506019592285213],[98.84755706787115,18.503681182861385],[98.84623718261741,18.493610382080192],[98.84185028076195,18.48640060424799],[98.83715820312494,18.48170280456543],[98.82904815673834,18.4799098968507],[98.81941986083979,18.470720291137695],[98.81516265869146,18.461301803588867],[98.80871582031261,18.462430953979492],[98.8050994873048,18.46021270751953],[98.80076599121111,18.45242118835455],[98.79747009277355,18.450839996337947],[98.78852844238276,18.45218086242687],[98.7765197753908,18.44668006896967],[98.7705764770509,18.43938064575201],[98.76815032959001,18.43408966064453],[98.76473236083984,18.43264007568365],[98.7561874389649,18.435319900512752],[98.74857330322288,18.430749893188533],[98.74315643310564,18.43040084838873],[98.74099731445341,18.43440818786621],[98.7285919189456,18.443960189819336],[98.72464752197283,18.440219879150504],[98.72239685058594,18.433820724487305],[98.71803283691412,18.43198966979986],[98.7118377685548,18.439760208129996],[98.70897674560558,18.43848037719738],[98.70458221435558,18.43178749084467],[98.70133209228527,18.423830032348633],[98.69753265380871,18.420761108398494],[98.69499206542974,18.41479110717779],[98.70015716552763,18.408742904663143],[98.70729064941423,18.413810729980412],[98.70970153808622,18.40963172912609],[98.70590972900402,18.405271530151424],[98.7020797729495,18.397850036621094],[98.69178771972685,18.390100479126033],[98.6886901855471,18.383060455322266],[98.68850708007818,18.37648963928217],[98.68377685546903,18.36987113952648],[98.68322753906261,18.364732742309627],[98.69505310058605,18.35301971435547],[98.70459747314447,18.33603096008312],[98.70411682128912,18.330690383911246],[98.70110321044928,18.328718185424805],[98.6935272216798,18.332881927490234],[98.68898773193376,18.332801818847656],[98.68141937255865,18.326940536499137],[98.67459869384794,18.325531005859375],[98.6723175048831,18.32328987121582],[98.6754989624024,18.319030761718693],[98.67668151855474,18.312488555908203],[98.66999053955101,18.30590057373047],[98.66674041748053,18.300468444824332],[98.67516326904303,18.294500350952205],[98.68624114990263,18.293029785156364],[98.69661712646501,18.287572860717773],[98.70437622070341,18.287500381469783],[98.72464752197283,18.277700424194393],[98.73165130615263,18.270349502563533],[98.74205780029303,18.263170242309684],[98.76097106933616,18.25747108459467],[98.7639465332033,18.254962921142635],[98.77088165283209,18.254800796508732],[98.77713775634766,18.24855041503912],[98.77854919433622,18.2436580657959],[98.77825164794939,18.23490905761713],[98.7744979858399,18.22908020019537],[98.77744293212902,18.223110198974666],[98.78549194335955,18.219520568847656],[98.78659057617199,18.21447944641119],[98.7847671508789,18.205999374389705],[98.7851333618164,18.197589874267692],[98.78185272216791,18.1939697265625],[98.78533172607422,18.182468414306697],[98.784408569336,18.177749633789062],[98.79271697998041,18.16645050048828],[98.7933578491211,18.159931182861385],[98.80043792724615,18.158800125122184],[98.80503082275413,18.155780792236385],[98.8079376220706,18.13589096069336],[98.80644989013666,18.12949180603033],[98.80914306640642,18.12306976318365],[98.80739593505871,18.120410919189453],[98.81085205078142,18.11424064636236],[98.80832672119169,18.104909896850643],[98.80310821533209,18.102159500122184],[98.80323791503923,18.090200424194393],[98.79946899414068,18.08587074279785],[98.80813598632841,18.082490921020565],[98.81494140625006,18.077741622924805],[98.80799865722673,18.07126998901373],[98.80989074707026,18.0671901702882],[98.80777740478527,18.061290740966797],[98.79888153076172,18.056079864502067],[98.79830932617188,18.046159744262695],[98.79284667968756,18.034959793090877],[98.79470062255865,18.027900695800838],[98.78745269775396,18.02280807495123],[98.78639221191435,18.01699066162115],[98.77982330322271,18.009841918945256],[98.78063201904303,18.001121520996094],[98.78450775146496,18.003580093383903],[98.78939056396507,18.003450393676758],[98.79173278808622,18.00011062622076],[98.8037033081057,18.00558090209961],[98.80921936035162,18.006900787353516],[98.81160736083979,18.002929687500114],[98.82267761230486,17.996320724487305],[98.82892608642607,17.99460983276373],[98.83550262451172,17.984239578247127],[98.83229064941412,17.979101181030273],[98.83329010009794,17.972112655639705],[98.83954620361334,17.964490890502987],[98.84332275390625,17.948240280151367],[98.84339141845709,17.9428005218507],[98.85193634033209,17.928651809692383],[98.849838256836,17.924551010131836],[98.85352325439482,17.91349029541027],[98.8580093383789,17.907930374145565],[98.85639953613293,17.896699905395565],[98.86273956298845,17.89365005493164],[98.86355590820318,17.883911132812614],[98.86727905273449,17.880010604858455],[98.8674926757812,17.871200561523438],[98.87033081054699,17.85943031311035],[98.87180328369146,17.857719421386776],[98.87261962890636,17.848640441894645],[98.86624145507818,17.84943962097168],[98.86061096191418,17.853811264038086],[98.85410308837919,17.842439651489258],[98.85636138916021,17.828540802001896],[98.853500366211,17.821899414062557],[98.8565368652346,17.81241989135748],[98.83431243896501,17.80353927612316],[98.83027648925793,17.798469543457145],[98.82279205322271,17.79540061950678],[98.80796813964855,17.797458648681584],[98.80332183837913,17.794170379638786],[98.7992095947265,17.797458648681584],[98.79969787597679,17.801799774170036],[98.79467010498047,17.809600830078125],[98.79853057861334,17.81400108337408],[98.79498291015636,17.816749572753963],[98.79631042480497,17.82134056091303],[98.78959655761724,17.822919845581055],[98.78961944580107,17.82942008972168],[98.78479766845709,17.830972671508732],[98.77909088134788,17.82731246948248],[98.76901245117216,17.81208992004389],[98.76841735839866,17.806568145752067],[98.76412963867205,17.800251007080135],[98.75199890136724,17.800050735473746],[98.74666595459007,17.803140640258732],[98.7426681518557,17.803159713745174],[98.73530578613276,17.794740676879826],[98.72795104980474,17.79257965087902],[98.72592926025419,17.795871734619197],[98.71823120117193,17.796222686767635],[98.70896911621105,17.794689178466854],[98.69873046875,17.7904510498048],[98.6866073608399,17.789409637451286],[98.68733215332037,17.78110122680664],[98.69194793701178,17.775302886963004],[98.69004058837896,17.7652206420899],[98.68067932128929,17.757629394531307],[98.66934967041033,17.75187110900879],[98.66603851318388,17.747289657592887],[98.65068054199219,17.74283981323248],[98.64393615722668,17.73693084716797],[98.63880920410173,17.735260009765682],[98.63442230224626,17.742919921875057],[98.62924194335949,17.757900238037166],[98.6302719116211,17.764991760253906],[98.62827301025419,17.771139144897575],[98.62358093261719,17.776840209960994],[98.61483764648443,17.7784481048584],[98.60984802246094,17.78310966491705],[98.60523223876947,17.792211532592773],[98.59852600097668,17.800792694091854],[98.5913925170899,17.80351066589361],[98.58985900878912,17.79874992370611],[98.58480834960949,17.799669265747184],[98.5820083618164,17.805509567260685],[98.57398986816406,17.808322906494084],[98.57154846191412,17.80359077453619],[98.56455230712919,17.795070648193416],[98.5612411499024,17.794351577758732],[98.55169677734375,17.801990509033317],[98.54574584960955,17.809190750122184],[98.53163146972673,17.81345939636236],[98.52378845214838,17.82188987731945],[98.5206832885745,17.822851181030387],[98.5156478881836,17.820238113403377],[98.5168914794923,17.81620025634777],[98.51203155517584,17.811309814453125],[98.4981384277346,17.814159393310604],[98.4957427978515,17.812231063842773],[98.49392700195318,17.805231094360295],[98.49568939209013,17.79573059082037],[98.50354766845714,17.793291091919002],[98.51174926757824,17.787189483642578],[98.51058959960966,17.77863121032709],[98.5112533569336,17.77051925659191],[98.50776672363276,17.768451690673942],[98.50531768798845,17.75971984863287],[98.5075073242188,17.75093078613287],[98.51879119873075,17.734840393066406],[98.51876831054716,17.72711753845209],[98.52089691162121,17.723480224609432],[98.52230072021484,17.713750839233512],[98.52555847167969,17.709802627563533],[98.5264358520509,17.701639175415153],[98.52356719970714,17.6956081390382],[98.52343750000017,17.681400299072322],[98.52448272705084,17.671529769897518],[98.52963256835943,17.65811157226574],[98.5337982177735,17.63830184936529],[98.53079986572294,17.634460449218864],[98.53354644775408,17.619478225708008],[98.54075622558588,17.61585998535162],[98.55853271484392,17.615400314331055],[98.56430053710943,17.61423110961914],[98.58094787597685,17.595600128173885],[98.58506774902344,17.586240768432617],[98.58725738525419,17.578130722046012],[98.57849121093778,17.575782775878906],[98.5594787597658,17.567659378051815],[98.55075073242193,17.562330245971623],[98.54355621337896,17.55512046813965],[98.53621673584001,17.542289733886776],[98.53781890869163,17.539230346679744],[98.52883148193365,17.535009384155387],[98.52558898925787,17.52177047729498],[98.52680969238293,17.51814079284668],[98.524642944336,17.51276969909668],[98.52030944824247,17.508991241455135],[98.52558898925787,17.494871139526367],[98.5203323364259,17.482931137085075],[98.5201568603515,17.476739883422965],[98.52755737304716,17.456470489501953],[98.53218841552751,17.45014953613287],[98.54659271240257,17.44663047790533],[98.55251312255865,17.4421005249024],[98.55976104736334,17.430440902710018],[98.55735778808588,17.423780441284237],[98.55831146240229,17.417161941528377],[98.55528259277361,17.408792495727596],[98.55667877197271,17.39599037170416],[98.55088043212908,17.385339736938533],[98.54434967041044,17.37096977233898],[98.538627624512,17.361511230468864],[98.54445648193365,17.35395050048828],[98.54899597167986,17.35163116455078],[98.5590362548831,17.352319717407283],[98.56282043457037,17.349571228027344],[98.55860900878929,17.343719482421932],[98.55561828613293,17.336009979248104],[98.5582962036134,17.325849533081055],[98.56159973144531,17.318861007690487],[98.55786132812506,17.313280105590934],[98.559326171875,17.297611236572266],[98.55883789062528,17.291580200195312],[98.5671997070313,17.291790008545036],[98.57601928710949,17.297790527343864],[98.57930755615251,17.295471191406307],[98.57556152343756,17.283412933349723],[98.56849670410162,17.283798217773494],[98.55285644531256,17.279550552368278],[98.54660034179693,17.280719757080192],[98.5428619384765,17.279462814330998],[98.53343963623053,17.273160934448356],[98.53060913085966,17.272670745849666],[98.51882171630854,17.27898025512701],[98.50361633300781,17.277490615844727],[98.49787902832048,17.27372169494629],[98.49349975585938,17.28330993652355],[98.49447631835938,17.286809921264705],[98.4941024780274,17.299789428710938],[98.49109649658209,17.299360275268555],[98.48606872558594,17.290121078491325],[98.48307037353538,17.29618263244629],[98.48748016357428,17.299989700317383],[98.47631072998064,17.30286026000988],[98.46756744384766,17.309440612793082],[98.45813751220732,17.312610626220646],[98.45030975341825,17.307069778442383],[98.43878173828125,17.302700042724553],[98.4296493530274,17.304340362548885],[98.42182159423834,17.307460784912053],[98.40083312988287,17.30523109436041],[98.38044738769537,17.298280715942383],[98.3731689453125,17.297180175781307],[98.36888885498058,17.29458045959484],[98.36270141601568,17.287048339843807],[98.3581161499024,17.28760910034191],[98.35099029541033,17.29219055175787],[98.33901977539062,17.29548072814947],[98.33138275146484,17.30048942565918],[98.32935333251959,17.30417060852045],[98.32276916503923,17.309980392455998],[98.32301330566412,17.315570831298885],[98.32054901123053,17.321430206298828],[98.33286285400385,17.32731819152832],[98.33090972900419,17.334630966186523],[98.33458709716814,17.347860336303768],[98.31888580322294,17.364837646484375],[98.31801605224626,17.370721817016715],[98.3212127685548,17.37425041198742],[98.31746673583984,17.37930107116705],[98.30658721923828,17.388860702514705],[98.29975128173834,17.398689270019645],[98.2928695678711,17.405609130859375],[98.29496765136719,17.408880233764705],[98.30091094970709,17.41105079650879],[98.30613708496105,17.40967941284191],[98.31648254394548,17.41366004943842],[98.32314300537126,17.41461944580078],[98.32460784912138,17.421382904052734],[98.32865905761713,17.42736053466797],[98.32147216796875,17.433130264282227],[98.3210525512697,17.443920135498104],[98.32344055175787,17.44688987731945],[98.3255462646485,17.458871841430664],[98.33029937744163,17.4689617156983],[98.3287124633789,17.486129760742188],[98.32141113281244,17.498580932617244],[98.31716156005888,17.502380371093807],[98.31659698486357,17.508899688720703],[98.31353759765653,17.516580581665096],[98.31504058837913,17.52474975585949],[98.30738067626959,17.530990600585994],[98.30976867675793,17.533149719238395],[98.30903625488298,17.54127120971691],[98.30657958984375,17.547821044921932],[98.30156707763683,17.549560546875114],[98.29943084716825,17.55337905883789],[98.30348968505854,17.564699172973746],[98.29795837402338,17.573930740356445],[98.28832244873053,17.573280334472656],[98.273422241211,17.57746124267578],[98.26877593994135,17.577260971069336],[98.26304626464838,17.572639465332145],[98.2568130493164,17.571519851684627],[98.25180053710932,17.565202713012752],[98.2505111694336,17.556739807128963],[98.2427597045899,17.55378913879406],[98.23670196533214,17.54825973510748],[98.22792053222685,17.54347038269043],[98.22064971923857,17.54537963867199],[98.21331024169922,17.539150238037223],[98.2055282592774,17.537799835205135],[98.19895172119152,17.54084014892578],[98.18019866943365,17.535440444946346],[98.17424774169928,17.542528152465877],[98.16922760009783,17.544879913330192],[98.1502075195313,17.539230346679744],[98.1428680419923,17.540380477905387],[98.13891601562517,17.53923988342291],[98.13323211669928,17.544710159301758],[98.13109588623064,17.552688598632812],[98.127182006836,17.556249618530273],[98.12787628173828,17.56488037109375],[98.11383819580107,17.575130462646484],[98.10811614990263,17.584579467773494],[98.11112976074224,17.589479446411246],[98.1070785522461,17.593080520629996],[98.10488128662138,17.59951019287115],[98.10809326171898,17.60415077209484],[98.10710144042974,17.609991073608512],[98.10106658935575,17.61268043518072],[98.10260772705107,17.616750717163086],[98.09934234619169,17.61930274963379],[98.09218597412126,17.635391235351676],[98.10273742675787,17.644451141357536],[98.1100387573245,17.649419784545955],[98.1140060424807,17.648759841919002],[98.11721038818365,17.653221130371094],[98.12149047851591,17.65448951721197],[98.12812805175787,17.659759521484432],[98.13063812255888,17.663869857788086],[98.13739013671892,17.669000625610465],[98.14044952392578,17.675640106201172],[98.1460723876956,17.680360794067383],[98.14643859863287,17.68932914733898],[98.1518859863283,17.698858261108512],[98.15097808837896,17.705770492553654],[98.15167999267595,17.723331451416016],[98.154106140137,17.72785949707037],[98.1512069702149,17.73357963562023],[98.14908599853521,17.74444007873535],[98.1421966552735,17.747079849243164],[98.13658142089855,17.757431030273494],[98.1424407958985,17.76096916198736],[98.14775848388695,17.77540016174322],[98.14018249511747,17.782979965210075],[98.1339416503908,17.794111251831055],[98.12243652343778,17.796091079711914],[98.11569976806646,17.79594230651867],[98.11090850830078,17.79289054870617],[98.10588073730463,17.79502105712902],[98.08924102783232,17.80704116821289],[98.08692932128912,17.812469482421875],[98.07511901855497,17.826341629028377],[98.07263946533232,17.837377548217717],[98.07032775878929,17.843179702758732],[98.06906890869135,17.85230827331543],[98.05938720703125,17.858409881591854],[98.05491638183622,17.86802101135254],[98.04614257812528,17.868169784545955],[98.0312118530274,17.87578964233404],[98.0288391113283,17.8843994140625],[98.02632904052746,17.888660430908203],[98.0211105346682,17.887329101562557],[98.0120315551759,17.8927898406983],[98.00975036621088,17.901372909545955],[98.01204681396479,17.906869888305778],[98.01097869873053,17.910850524902287],[98.012748718262,17.923610687255916],[98.0156631469726,17.91841125488287],[98.02319335937506,17.92290115356451],[98.02069854736334,17.92876052856451],[98.02384185791027,17.933631896972713],[98.03833007812528,17.940969467163086],[98.05349731445312,17.94560050964361],[98.05854034423857,17.95001983642578],[98.063735961914,17.94968032836914],[98.07602691650396,17.955881118774528],[98.08014678955095,17.955209732055664],[98.09033966064459,17.960540771484432],[98.10186767578136,17.958459854125977],[98.10420227050798,17.955141067504826],[98.11696624755876,17.949228286743107],[98.1217193603515,17.948780059814453],[98.12435913085949,17.9445095062257],[98.14186859130865,17.938341140747184],[98.14483642578125,17.933958053588924],[98.1501007080081,17.93960952758789],[98.151420593262,17.947610855102596],[98.15595245361334,17.958101272583065],[98.16092681884788,17.960050582885742],[98.16297912597656,17.96750068664562],[98.16687774658232,17.967607498168945],[98.17086791992216,17.971771240234432],[98.1815719604495,17.971170425414982],[98.18518066406278,17.97752952575695],[98.19304656982416,17.97837829589838],[98.1983261108399,17.977092742920036],[98.20633697509771,17.981880187988338],[98.21354675292974,17.97985267639166],[98.22132873535156,17.983810424804744],[98.23271942138666,17.983829498291016],[98.24532318115251,17.98732948303234],[98.24713897705101,17.99266052246105],[98.24620819091825,17.998199462890568],[98.2426223754884,18.003541946411246],[98.23954010009794,18.01195907592779],[98.23436737060553,18.013559341430664],[98.23264312744163,18.01921844482422],[98.23802947998075,18.029291152954215],[98.24592590332031,18.033319473266715],[98.25035858154303,18.032079696655387],[98.25785827636747,18.03454971313471],[98.26174163818376,18.038730621337834],[98.26550292968761,18.046409606933707],[98.27155303955101,18.040821075439567],[98.27606964111328,18.044340133666992],[98.2737808227539,18.046920776367244],[98.28267669677746,18.056949615478572],[98.2841186523438,18.06167984008789],[98.29022979736334,18.073289871215877],[98.28749084472673,18.08220100402832],[98.28092193603544,18.080610275268555],[98.27353668212885,18.08152008056652],[98.26817321777355,18.08428955078125],[98.25637817382807,18.081979751586857],[98.25392150878923,18.077039718627987],[98.24857330322283,18.074491500854492],[98.24382019042986,18.07736968994135],[98.24286651611345,18.085849761962834],[98.23459625244169,18.085220336914062],[98.23352050781267,18.094602584838924],[98.22941589355474,18.095590591430664],[98.2268371582033,18.08979034423828],[98.21620941162115,18.086008071899414],[98.20671844482428,18.08715057373047],[98.20382690429693,18.089019775390625],[98.20439910888678,18.097280502319393],[98.19509887695341,18.105871200561637],[98.19178009033203,18.112361907958928],[98.16776275634771,18.116771697998047],[98.16481018066418,18.130540847778377],[98.16909027099615,18.13899040222168],[98.16403198242199,18.1434001922608],[98.15799713134766,18.15802192687994],[98.15814971923822,18.163400650024528],[98.16725921630888,18.16551017761236],[98.16873168945318,18.180110931396484],[98.17735290527372,18.188209533691406],[98.17365264892578,18.19664192199707],[98.16799926757818,18.201721191406193],[98.17185974121105,18.217929840087947],[98.16239929199219,18.221691131591797],[98.16042327880871,18.219978332519645],[98.14890289306663,18.225290298461914],[98.14456176757841,18.23492050170904],[98.14154815673822,18.237529754638672],[98.14138031005876,18.242250442504883],[98.14427185058594,18.25101280212408],[98.13909149169939,18.256780624389762],[98.13703918457031,18.264520645141545],[98.14080047607439,18.278030395507812],[98.14642333984398,18.281660079956055],[98.15329742431663,18.283660888671932],[98.15860748291021,18.280599594116325],[98.16435241699241,18.281391143798828],[98.16883087158197,18.279991149902344],[98.17893981933588,18.281509399414062],[98.18386077880888,18.283660888671932],[98.18657684326189,18.28197288513178],[98.1959304809572,18.283439636230526],[98.2034759521485,18.28919982910162],[98.19267272949213,18.288360595703125],[98.18467712402361,18.29486846923828],[98.17649078369158,18.296190261840763],[98.17262268066418,18.30115127563488],[98.17196655273443,18.318809509277457],[98.17620086669928,18.3291912078858],[98.17575073242188,18.334379196167106],[98.17098236083984,18.346689224243278],[98.1645126342774,18.353370666503906],[98.15267181396484,18.357360839843693],[98.14753723144537,18.36083984375],[98.14128875732428,18.369989395141545],[98.13977050781256,18.377651214599723],[98.13716125488276,18.38298988342285],[98.13191223144537,18.385192871093864],[98.1250228881836,18.394092559814453],[98.12843322753906,18.399139404296818],[98.12657928466803,18.4045925140382],[98.11881256103544,18.406801223754826],[98.11395263671875,18.406507492065543],[98.10472106933605,18.41148948669428],[98.10172271728533,18.416780471801758],[98.09545135498047,18.41893005371105],[98.08342742919922,18.41554069519043],[98.07521057128923,18.426780700683537],[98.08233642578148,18.436410903930664],[98.08434295654314,18.444629669189396],[98.1016387939456,18.45491027832037],[98.10720062255871,18.456190109252987],[98.10817718505854,18.464839935302678],[98.11395263671875,18.480861663818303],[98.12023162841797,18.486230850219783],[98.12100982666016,18.49580955505371],[98.12361907958979,18.50059127807623],[98.13105773925776,18.50049972534174],[98.13243865966797,18.50296974182129],[98.14356231689476,18.508159637451172],[98.14762115478544,18.51209259033203],[98.1553878784182,18.510721206665153],[98.1655731201173,18.523540496826286],[98.17182159423857,18.52402114868164],[98.1715164184572,18.52779006958002],[98.17472076416027,18.53520011901861],[98.17619323730474,18.54528045654297],[98.18638610839861,18.546030044555778],[98.18987274169922,18.541620254516715],[98.19738006591825,18.538311004638672],[98.20140838623075,18.53975105285639],[98.20867156982433,18.535501480102653],[98.21790313720703,18.541660308838004],[98.22624206542963,18.55282974243164],[98.2330780029298,18.555751800537166],[98.23285675048857,18.562850952148438],[98.23806762695307,18.56792068481451],[98.23586273193365,18.574310302734432],[98.23100280761713,18.57917976379406],[98.22949218750017,18.583959579467773],[98.22400665283203,18.58699989318859],[98.21420288085949,18.588951110839844],[98.21604156494163,18.59733963012701],[98.21183776855474,18.605970382690487],[98.19822692871111,18.605970382690487],[98.18509674072266,18.60790061950695],[98.184326171875,18.621839523315543],[98.17484283447288,18.626380920410213],[98.1654129028322,18.624320983886776],[98.15762329101562,18.627281188964844],[98.15541839599638,18.631261825561523],[98.14598846435547,18.63717079162609],[98.12429046630865,18.631990432739315],[98.1188430786134,18.63309097290039],[98.11200714111345,18.642839431762752],[98.10714721679693,18.646730422973746],[98.11052703857422,18.663381576538143],[98.1138458251956,18.668319702148438],[98.11103057861322,18.672870635986385],[98.10649871826172,18.675870895385742],[98.10822296142578,18.689348220825195],[98.10208892822283,18.703830718994084],[98.1080322265625,18.709167480468807],[98.1045913696289,18.71627807617199],[98.10484313964866,18.72628974914545],[98.10341644287126,18.73402976989746],[98.09778594970726,18.73723030090332],[98.10768890380865,18.743040084838867],[98.10881805419928,18.74802970886236],[98.1166381835938,18.751911163330078],[98.12180328369146,18.756469726562557],[98.11991119384788,18.76112937927246],[98.12207031250011,18.773809432983455],[98.10993957519531,18.778060913085994],[98.10199737548834,18.773628234863338],[98.09350585937517,18.775390625000057],[98.09227752685553,18.783470153808537],[98.08685302734375,18.794290542602596],[98.08849334716825,18.80346107482916],[98.08364868164068,18.80981063842779],[98.08087158203136,18.816150665283317],[98.08312988281278,18.828210830688477],[98.08332061767607,18.835950851440487],[98.08969879150408,18.850931167602596],[98.0904769897461,18.8592529296875],[98.09252166748058,18.863769531249943],[98.1036376953125,18.882450103759822],[98.1118774414063,18.885641098022404],[98.11348724365246,18.89120101928711],[98.12137603759766,18.897069931030387],[98.12606811523466,18.905927658081055],[98.13247680664068,18.90998077392578],[98.14601898193365,18.910209655761776],[98.1502304077149,18.915132522583008],[98.15856170654314,18.917800903320312],[98.160209655762,18.927539825439567],[98.15882873535179,18.93539047241211],[98.16752624511736,18.937339782714957],[98.17289733886719,18.946058273315543],[98.17437744140642,18.954830169677678],[98.17392730712919,18.960420608520565],[98.16648864746122,18.974760055541992],[98.16532135009771,18.97980117797863],[98.16819000244146,18.982730865478516],[98.17163848876982,18.992862701416072],[98.17044830322271,18.995710372924805],[98.18173217773443,19.005159378051758],[98.1873016357423,19.014200210571346],[98.18759918212896,19.022539138793945],[98.18535614013678,19.024618148803768],[98.18692016601574,19.029609680175838],[98.19281768798857,19.033060073852596],[98.19165039062506,19.03960037231451],[98.202133178711,19.043220520019645],[98.20659637451166,19.046560287475643],[98.21060180664057,19.060411453247184],[98.216850280762,19.065998077392692],[98.21791076660156,19.069080352783146],[98.22486114501982,19.07571983337408],[98.22772979736357,19.0858993530274],[98.23381042480497,19.087869644165153],[98.23838043212896,19.092790603637752],[98.239486694336,19.099330902099666],[98.24436950683611,19.103219985961914],[98.25202941894531,19.106359481811523],[98.25332641601557,19.11138916015625],[98.24971008300798,19.116270065307617],[98.24897003173845,19.121000289917106],[98.24286651611345,19.12450027465826],[98.24546813964872,19.131940841674805],[98.24195861816412,19.138490676879883],[98.24420928955078,19.145532608032227],[98.24372100830084,19.149339675903263],[98.2543029785158,19.158590316772404],[98.26035308837902,19.1566104888916],[98.2659683227539,19.151100158691463],[98.27027893066418,19.153821945190373],[98.28630828857433,19.150909423828182],[98.29360198974626,19.15351104736328],[98.30297088623047,19.153430938720703],[98.3146362304688,19.15098190307623],[98.32116699218778,19.15398979187023],[98.3258895874024,19.153980255126953],[98.33174896240251,19.148330688476506],[98.3438415527346,19.149402618408203],[98.34085845947277,19.142669677734375],[98.34375000000017,19.13560295104986],[98.35003662109392,19.130317687988338],[98.3456268310548,19.12594985961914],[98.34706878662115,19.110099792480526],[98.35418701171903,19.098947525024528],[98.35491180419928,19.09185981750494],[98.36196136474632,19.086019515991268],[98.36499786376959,19.08671951293951],[98.37172698974638,19.083820343017578],[98.37599945068376,19.072530746460075],[98.3731460571289,19.065378189087028],[98.37726593017607,19.060880661010856],[98.38276672363287,19.057989120483455],[98.38501739501959,19.05995941162115],[98.39285278320335,19.051490783691406],[98.40213775634766,19.03766059875494],[98.40217590332037,19.03424263000494],[98.4158706665039,19.030179977417106],[98.42204284667991,19.02605056762701],[98.42536163330072,19.02911949157715],[98.42642974853538,19.03416252136236],[98.43041229248053,19.03980827331543],[98.43891143798822,19.045320510864315],[98.45873260498058,19.044450759887695],[98.47335815429693,19.039220809936523],[98.47973632812517,19.04078865051281],[98.48478698730491,19.038480758666992],[98.49214935302751,19.038639068603572],[98.49534606933605,19.036060333252067],[98.51712799072283,19.030179977417106],[98.52944183349615,19.022960662841797],[98.54721832275402,19.024339675903377],[98.55390930175793,19.029911041259822],[98.55619049072277,19.035360336303825],[98.5643997192384,19.03524971008312],[98.56942749023438,19.04356956481928],[98.5806274414062,19.04572105407715],[98.5877532958985,19.04503059387207],[98.5943679809572,19.04142951965332],[98.59800720214861,19.042379379272575],[98.60270690917997,19.049148559570256],[98.61530303955107,19.054950714111442],[98.62116241455101,19.055561065673828],[98.629379272461,19.059980392455998],[98.63404846191423,19.060350418090877],[98.64174652099615,19.067100524902344],[98.64122009277372,19.070659637451172],[98.64736938476574,19.075830459594783],[98.6497726440432,19.07971954345703],[98.65283966064459,19.092960357666016],[98.64488983154308,19.104152679443473],[98.64241027832043,19.11534118652338],[98.64221954345714,19.124378204345817],[98.63932800292997,19.132709503173885],[98.63327026367182,19.14069175720215],[98.63461303710955,19.146680831909237],[98.63401794433605,19.153961181640682],[98.62409973144543,19.15546035766613],[98.6210403442384,19.15975952148449],[98.6222229003908,19.164840698242244],[98.61048126220726,19.1701602935791],[98.60755920410156,19.177259445190543],[98.59607696533197,19.183130264282227],[98.58812713623047,19.184160232544002],[98.5835571289063,19.188190460205135],[98.5769729614259,19.20034027099615],[98.57048797607433,19.204891204833928],[98.57010650634777,19.21400070190441],[98.58106231689453,19.214902877807617],[98.58748626708979,19.216749191284293],[98.59996795654303,19.22800064086914],[98.59732818603538,19.2369327545166],[98.59471893310558,19.23935127258312],[98.59018707275408,19.251640319824276],[98.59091949462885,19.26126289367687],[98.59378051757807,19.26649093627924],[98.60549163818365,19.277551651000977],[98.59916687011719,19.28128242492687],[98.59597015380865,19.288938522338924],[98.6001586914063,19.295499801635856],[98.60025787353527,19.301580429077262],[98.6026458740235,19.30648994445812],[98.60070037841797,19.313989639282227],[98.59464263916021,19.321519851684684],[98.59069061279325,19.330631256103516],[98.59414672851574,19.338790893554744],[98.59137725830084,19.345340728759822],[98.59440612792969,19.35605049133312],[98.58230590820341,19.365161895751953],[98.57504272460966,19.38350105285656],[98.57482910156256,19.387659072876033],[98.57904052734403,19.395830154418945],[98.58242034912115,19.397140502929744],[98.58841705322277,19.395601272583008],[98.59568023681652,19.401279449462947],[98.59620666503935,19.404260635376033],[98.5883407592774,19.411180496215934],[98.58763885498075,19.41756057739252],[98.59101867675787,19.422380447387752],[98.58727264404308,19.431129455566463],[98.58629608154325,19.441650390625114],[98.59121704101585,19.44754028320324],[98.59358978271479,19.453269958496207],[98.59278869628935,19.461130142212028],[98.59883117675787,19.46243286132824],[98.60058593750006,19.467790603637752],[98.59774017334013,19.477481842041016],[98.59445953369163,19.48122978210455],[98.59651947021484,19.487720489502067],[98.59468841552763,19.491489410400447],[98.58506774902344,19.502719879150447],[98.58006286621111,19.507179260253963],[98.5755462646485,19.50811004638672],[98.57010650634777,19.506450653076172],[98.56671142578142,19.514102935791016],[98.56790161132812,19.522331237793082],[98.56549835205107,19.5260009765625],[98.5647659301759,19.53450012207037],[98.5670776367187,19.544759750366268],[98.55976867675787,19.54739952087408],[98.54608154296886,19.554340362548828],[98.54425048828125,19.55681037902832],[98.54238891601585,19.578540802001896],[98.53835296630865,19.58506011962902],[98.54014587402372,19.593700408935604],[98.53730773925793,19.600620269775504],[98.54100036621094,19.605840682983512],[98.54029083251976,19.60918045043951],[98.53016662597662,19.611991882324332],[98.52540588378912,19.61498069763195],[98.52355194091825,19.621839523315543],[98.51712799072283,19.62378120422369],[98.50544738769543,19.6297607421875],[98.50241851806635,19.634340286254996],[98.49394989013695,19.63916015625],[98.49057769775402,19.644332885742244],[98.48233032226568,19.652961730957145],[98.47480010986345,19.655540466308594],[98.47078704834001,19.659500122070256],[98.47297668457037,19.67450904846197],[98.46981048583979,19.688552856445312],[98.47042083740234,19.69205093383789],[98.47592163085955,19.69326972961437],[98.48464202880888,19.70059013366705],[98.49738311767601,19.703300476074276],[98.50910949707048,19.70856857299816],[98.51225280761741,19.715530395507926],[98.52053833007807,19.712890625000114],[98.54026031494146,19.690910339355526],[98.54225921630871,19.685819625854492],[98.55155181884788,19.683401107788143],[98.55768585205107,19.6789608001709],[98.56192016601574,19.673089981079045],[98.56948852539068,19.670711517333984],[98.56964874267584,19.677881240844727],[98.57138824462913,19.683010101318473],[98.57479858398443,19.70141029357916],[98.58615112304682,19.70754051208496],[98.58988189697288,19.710990905761832],[98.59542846679693,19.712390899658317],[98.60735321044939,19.70750999450695],[98.61557006835938,19.70848083496105],[98.620361328125,19.714050292968693],[98.62597656250028,19.71142959594738],[98.6298065185548,19.717929840088004],[98.62802124023443,19.724319458007926],[98.63535308837902,19.726440429687614],[98.64105224609403,19.730201721191463],[98.64647674560547,19.731519699096793],[98.65560913085955,19.736869812011776],[98.66013336181652,19.733650207519645],[98.66690826416021,19.737770080566406],[98.66657257080084,19.7448406219483],[98.67603302001953,19.748569488525447],[98.68142700195318,19.746990203857422],[98.68621063232445,19.751220703125114],[98.69631958007835,19.752101898193303],[98.70543670654303,19.75518989562994],[98.71086883544933,19.760469436645508],[98.71823120117193,19.760871887207088],[98.72107696533209,19.758760452270508],[98.7308883666995,19.758110046386662],[98.73442840576178,19.754100799560604],[98.7410888671875,19.751470565795955],[98.74700164794922,19.75340080261236],[98.75311279296875,19.75819015502941],[98.76030731201189,19.75481986999506],[98.77094268798857,19.75349998474121],[98.7768173217774,19.750019073486328],[98.78192901611334,19.75101089477539],[98.79013824462896,19.76252937316906],[98.80033111572277,19.77419853210455],[98.80574035644531,19.77394294738781],[98.81784820556669,19.780469894409237],[98.82485961914068,19.786409378051758],[98.83141326904308,19.793781280517635],[98.83003234863287,19.800228118896484],[98.83431243896501,19.808410644531364],[98.84147644042974,19.81110954284668],[98.85022735595709,19.80571174621582],[98.85323333740234,19.798019409179688],[98.85922241210943,19.79313087463379],[98.87113952636736,19.789979934692496],[98.87538146972662,19.781789779663143],[98.8790817260745,19.779479980468693],[98.88729858398449,19.77816963195812],[98.89183807373053,19.772880554199276],[98.89775085449224,19.768909454345703],[98.89958953857422,19.764499664306584],[98.91040039062494,19.76111030578619],[98.91156005859392,19.75629806518549],[98.91584014892584,19.752830505371094],[98.91613006591791,19.742929458618164],[98.92034912109392,19.7432098388673],[98.92794036865246,19.749940872192496],[98.93151092529303,19.75848007202154],[98.92920684814476,19.76683044433605],[98.93402099609403,19.771181106567383],[98.94229888916016,19.766519546508903],[98.94641113281278,19.761810302734432],[98.95552825927757,19.754961013793945],[98.95744323730474,19.747510910034237],[98.96508789062528,19.739240646362305],[98.9760131835937,19.73274040222168],[98.98413848876976,19.73338127136236],[98.99059295654303,19.74907112121582],[98.98927307128912,19.755781173705998],[98.99011993408214,19.76587104797369],[98.99359893798845,19.78050041198736],[99.00530242919945,19.779500961303768],[99.00836944580084,19.787282943725586],[99.01696014404303,19.792379379272575],[99.01882934570318,19.80368041992199],[99.02353668212908,19.811969757080192],[99.02651977539091,19.823379516601562],[99.03238677978538,19.83169174194336],[99.03109741210966,19.837959289550838],[99.03598785400396,19.85269165039074],[99.02773284912126,19.85902976989746],[99.02574920654325,19.862131118774414],[99.0270614624024,19.873958587646598],[99.02935028076178,19.877531051635742],[99.02699279785156,19.883409500122127],[99.02809906005876,19.892099380493164],[99.02401733398443,19.90233993530279],[99.02448272705095,19.90588188171381],[99.02893829345709,19.906852722168082],[99.02790069580072,19.915468215942496],[99.02526092529314,19.917659759521428],[99.02456665039085,19.925430297851562],[99.03099060058594,19.923469543457145],[99.03591156005854,19.92769813537609],[99.04409790039074,19.928289413452205],[99.04294586181652,19.941080093383732],[99.04617309570341,19.94692039489746],[99.04094696044928,19.955360412597656],[99.04109191894548,19.961828231811523],[99.03813171386724,19.96690940856945],[99.03211975097673,19.969219207763672],[99.03707885742205,19.979511260986328],[99.03830718994163,19.98756980895996],[99.04325866699241,19.993198394775334],[99.05290222167986,19.996740341186523],[99.05587768554716,20.000440597534293],[99.05018615722668,20.0052108764649],[99.04500579834013,20.01686096191412],[99.04734802246088,20.021770477295036],[99.04570007324219,20.034130096435604],[99.05104827880865,20.044771194458065],[99.0552062988283,20.047960281372127],[99.05815887451178,20.059841156005916],[99.06008148193388,20.062091827392578],[99.06931304931658,20.066280364990234],[99.07166290283209,20.0791912078858],[99.06912994384783,20.08329010009777],[99.07108306884771,20.090419769287223],[99.07849884033203,20.09856033325201],[99.09233093261747,20.094890594482422],[99.09488677978516,20.10130119323736],[99.10031890869169,20.10040092468273],[99.101860046387,20.09589958190918],[99.11013031005876,20.09539031982422],[99.112358093262,20.097690582275504],[99.13372802734386,20.102930068969783],[99.13083648681669,20.106941223144645],[99.12880706787126,20.114669799804744],[99.13137817382835,20.11725044250494],[99.13675689697294,20.117519378662223],[99.14737701416021,20.120960235595817],[99.1527862548831,20.12489128112793],[99.16352844238298,20.129709243774357],[99.16713714599604,20.12735748291027],[99.17320251464872,20.129159927368164],[99.18311309814482,20.12395095825201],[99.19333648681646,20.12376022338873],[99.20128631591814,20.127428054809513],[99.21398162841803,20.127700805664176],[99.22032165527355,20.124601364135856],[99.2227630615235,20.11936187744135],[99.22836303710932,20.116119384765568],[99.2354125976562,20.121549606323356],[99.24372863769554,20.112390518188477],[99.25269317626976,20.109239578247127],[99.25673675537138,20.111230850219727],[99.26191711425793,20.110790252685604],[99.2643585205081,20.104810714721793],[99.27111816406267,20.10093116760254],[99.27865600585966,20.09411811828619],[99.28569030761741,20.091070175171012],[99.29104614257818,20.086990356445312],[99.29593658447266,20.08023834228527],[99.30902099609386,20.076280593872184],[99.31801605224626,20.067949295043945],[99.32631683349632,20.06660079956066],[99.33421325683588,20.07089996337902],[99.34989929199219,20.07131004333496],[99.36016082763666,20.078390121460018],[99.36901092529303,20.080030441284123],[99.3835067749024,20.086509704589957],[99.38784027099626,20.084980010986328],[99.4058685302735,20.084880828857536],[99.41709899902366,20.085641860962028],[99.41905975341825,20.0887908935548],[99.42634582519526,20.09034156799322],[99.43147277832043,20.08637809753418],[99.44386291503918,20.088840484619197],[99.44661712646484,20.095359802246094],[99.45697784423834,20.09493064880371],[99.46560668945324,20.101499557495174],[99.47489166259788,20.1055526733399],[99.48448944091808,20.10585975646984],[99.50211334228516,20.11475944519043],[99.50144195556669,20.12050819396984],[99.49814605712896,20.127460479736442],[99.5144500732423,20.14416122436529],[99.5161590576173,20.143569946289176],[99.52040100097673,20.13689041137701],[99.52860260009783,20.134889602661133],[99.53713226318371,20.130598068237305],[99.54161071777344,20.13042068481451],[99.54601287841803,20.127428054809513],[99.55802917480474,20.127389907837028],[99.5644607543947,20.122499465942383],[99.56851959228521,20.121299743652344],[99.57386779785162,20.11160850524908],[99.57200622558622,20.106201171874943],[99.56236267089861,20.098571777343693],[99.55414581298845,20.101221084594783],[99.54987335205084,20.101089477539062],[99.53939056396513,20.096990585327262],[99.5335922241211,20.09346961975092],[99.51737213134766,20.08678054809576],[99.50691223144537,20.083488464355582],[99.50100708007818,20.079280853271484],[99.4953231811524,20.07809066772461],[99.49276733398438,20.069320678710994],[99.49620819091797,20.062669754028377],[99.50225067138666,20.05805969238287],[99.51425170898449,20.052621841430778],[99.52066802978538,20.04809951782238],[99.52493286132824,20.04693984985363],[99.52719116210966,20.0390682220459],[99.51982116699236,20.04217910766613],[99.51722717285179,20.047121047973576],[99.50846099853538,20.05197906494152],[99.50129699707026,20.050212860107536],[99.49321746826178,20.041479110717887],[99.48583221435558,20.0370197296142],[99.47831726074241,20.03766059875494],[99.4749298095706,20.032970428466854],[99.4689559936524,20.031328201293945],[99.4692687988283,20.022172927856445],[99.47336578369163,20.01946258544922],[99.47920227050798,20.010320663452205],[99.47009277343756,20.005550384521598],[99.46716308593744,19.998910903930664],[99.46308135986334,19.9954509735108],[99.458251953125,19.982719421386776],[99.4492492675783,19.973241806030273],[99.44075012207054,19.97083282470703],[99.4353866577149,19.96145057678234],[99.4304962158206,19.962400436401367],[99.42307281494152,19.96096038818365],[99.42259216308594,19.954452514648494],[99.41938781738304,19.947668075561523],[99.41886901855497,19.939840316772404],[99.4168701171875,19.937561035156364],[99.41641235351574,19.930179595947322],[99.41867065429716,19.92076110839855],[99.42212677001964,19.91624069213873],[99.40943145751953,19.91316032409668],[99.40039062500011,19.90907287597662],[99.39698791503923,19.901081085205078],[99.3897705078125,19.895111083984375],[99.38555145263689,19.889429092407227],[99.38491058349638,19.884740829467773],[99.38932037353527,19.873090744018555],[99.3881378173831,19.866870880127067],[99.39247131347662,19.858779907226676],[99.41506195068371,19.838039398193416],[99.41059112548834,19.829179763793945],[99.42180633544922,19.81936073303234],[99.4216918945313,19.812030792236328],[99.41188049316423,19.810510635376033],[99.40773010253912,19.812139511108455],[99.39573669433616,19.812160491943473],[99.39215850830107,19.80537986755371],[99.38848876953148,19.805208206176815],[99.38352966308616,19.796949386596793],[99.37937927246122,19.792690277099723],[99.38108825683622,19.788259506225586],[99.37796020507812,19.779001235961914],[99.37339019775396,19.778621673583928],[99.36380767822283,19.774379730224723],[99.36760711669939,19.76630973815918],[99.36621856689482,19.759820938110465],[99.36643981933605,19.7522811889649],[99.36126708984403,19.742099761962947],[99.36331939697288,19.736299514770565],[99.36145019531278,19.72511100769043],[99.35819244384794,19.722860336303768],[99.34989929199219,19.72144126892084],[99.34610748291016,19.709140777588004],[99.33480072021501,19.71125030517578],[99.32644653320312,19.710269927978572],[99.31524658203148,19.705289840698242],[99.31478118896501,19.700439453125057],[99.30603790283203,19.693420410156364],[99.3058166503908,19.691061019897575],[99.29869842529325,19.683120727539176],[99.29553985595703,19.67719078063959],[99.28350067138689,19.671188354492188],[99.26621246337896,19.66064071655279],[99.26508331298851,19.652421951294002],[99.26081848144548,19.648660659790153],[99.26022338867205,19.644830703735465],[99.26252746582048,19.633449554443473],[99.26024627685564,19.626750946045036],[99.2667465209961,19.62311172485363],[99.26866149902344,19.607799530029354],[99.27982330322294,19.60121154785162],[99.28620147705078,19.60064125061035],[99.29154968261719,19.593902587890625],[99.29402160644531,19.586879730224723],[99.29112243652361,19.582912445068473],[99.29099273681646,19.578058242797965],[99.29646301269548,19.572902679443416],[99.2963485717774,19.568178176879996],[99.30007171630854,19.560529708862305],[99.30883026123058,19.551809310913143],[99.31671142578125,19.552429199218807],[99.31884765625006,19.550979614257756],[99.32163238525385,19.54026031494152],[99.32688903808616,19.53702926635748],[99.31951141357433,19.530889511108512],[99.31581878662132,19.525909423828182],[99.30995178222685,19.523040771484432],[99.3085632324221,19.516981124877873],[99.30301666259771,19.514438629150504],[99.29631805419922,19.49550056457531],[99.29873657226557,19.48595809936529],[99.30365753173857,19.48484992980957],[99.30851745605469,19.486331939697322],[99.30928802490234,19.475860595703125],[99.31098175048845,19.469980239868164],[99.31687927246111,19.458328247070312],[99.31899261474626,19.450349807739258],[99.31620788574241,19.44433021545416],[99.31120300292969,19.426149368286133],[99.31391143798851,19.42353248596197],[99.31556701660156,19.41734123229986],[99.31920623779297,19.413000106811637],[99.32274627685558,19.402820587158317],[99.32508850097673,19.402980804443416],[99.3306732177735,19.395269393921012],[99.32672119140653,19.394689559936637],[99.32804870605474,19.386060714721737],[99.3321762084961,19.378080368042106],[99.33377075195318,19.358539581298885],[99.32209014892584,19.353990554809513],[99.31838989257807,19.3477401733399],[99.32161712646496,19.338850021362305],[99.32463073730497,19.33551025390625],[99.3267364501956,19.32780075073248],[99.32971954345709,19.32534980773937],[99.32890319824236,19.318801879882926],[99.33322143554716,19.30867004394537],[99.33500671386736,19.29961013793951],[99.34017944335938,19.294149398803825],[99.33885192871094,19.289180755615348],[99.3408126831057,19.284950256347656],[99.33949279785162,19.278619766235465],[99.3422088623048,19.273759841918945],[99.34375762939447,19.266162872314453],[99.3373718261721,19.257860183715763],[99.33856201171903,19.252830505371207],[99.32399749755865,19.238759994506836],[99.319877624512,19.227910995483455],[99.31201934814459,19.222440719604606],[99.31102752685553,19.21690177917492],[99.31230926513689,19.210580825805664],[99.31572723388689,19.206262588501033],[99.31053924560558,19.20302963256836],[99.30739593505865,19.192640304565487],[99.30477905273443,19.190980911254883],[99.30751800537104,19.185060501098633],[99.30757141113281,19.174179077148494],[99.3179473876956,19.167739868164176],[99.32038879394554,19.163211822509822],[99.31967926025419,19.156600952148438],[99.3249282836914,19.139522552490234],[99.32514190673834,19.132200241088924],[99.3224716186524,19.12992286682129],[99.322769165039,19.12096977233898],[99.32940673828153,19.11601066589367],[99.34368133544928,19.09283065795904],[99.34600830078153,19.084140777588004],[99.35447692871094,19.084360122680664],[99.3656692504884,19.07768058776867],[99.36591339111345,19.069219589233455],[99.37094879150413,19.064609527587947],[99.37729644775402,19.065410614013786],[99.38401794433611,19.062089920044002],[99.38506317138695,19.053750991821403],[99.38324737548845,19.045589447021598],[99.38923645019537,19.02880096435547],[99.39174652099615,19.01811027526861],[99.39752197265636,19.01317024230957],[99.39850616455095,19.0036296844483],[99.40245819091825,18.997560501098633]]]},"properties":{"ID_0":228,"ISO":"TH-50","NAME_0":"Thailand","ID_1":10,"NAME_1":"Chiang Mai","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"เชียงใหม่","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.40856170654303,19.73394012451172],[100.4056396484375,19.729391098022518],[100.40004730224604,19.727680206298942],[100.39235687255888,19.71936988830572],[100.39151000976562,19.713108062744197],[100.3869400024414,19.70845031738287],[100.37448120117182,19.7059001922608],[100.37068939209001,19.698841094970817],[100.36650085449236,19.69526290893549],[100.36058044433611,19.687149047851676],[100.35254669189447,19.68754959106451],[100.34255981445318,19.685779571533203],[100.33660125732428,19.682590484619197],[100.33109283447288,19.67429924011242],[100.32678222656261,19.670740127563533],[100.32483673095732,19.66068840026861],[100.32099151611351,19.655120849609318],[100.31852722167974,19.64676094055187],[100.31118011474626,19.6437606811524],[100.29840087890642,19.643989562988338],[100.2918319702149,19.641321182251033],[100.2831192016601,19.643869400024528],[100.28240966796875,19.65011978149414],[100.27735137939482,19.648361206054744],[100.2759628295899,19.644399642944336],[100.27024078369146,19.644300460815487],[100.26386260986322,19.64674186706543],[100.26148223876976,19.643320083618278],[100.25447845459013,19.638650894165096],[100.25424957275396,19.635499954223746],[100.24401855468744,19.6241397857666],[100.24291229248064,19.615400314330998],[100.23906707763666,19.60720825195324],[100.23352050781261,19.60495185852062],[100.223129272461,19.608970642089844],[100.21591186523443,19.60761070251465],[100.20799255371111,19.598209381103516],[100.20101165771507,19.59826087951666],[100.19638061523438,19.592679977417106],[100.18324279785156,19.58539962768549],[100.17777252197271,19.58471107482916],[100.17189788818371,19.586389541626033],[100.16661071777361,19.584270477294922],[100.17014312744146,19.57463073730463],[100.16535186767601,19.571159362793082],[100.16194915771513,19.5619411468507],[100.15264892578136,19.560739517212028],[100.15003204345703,19.555889129638672],[100.13742828369158,19.55515289306652],[100.1245880126956,19.552680969238395],[100.10971069335966,19.55228805541998],[100.10035705566435,19.55282974243164],[100.09523773193371,19.550529479980526],[100.0850677490235,19.54990959167486],[100.06878662109375,19.53832054138195],[100.0619812011721,19.524389266967887],[100.06925201416044,19.518970489502067],[100.06678009033232,19.50857162475586],[100.0685424804687,19.505350112915096],[100.06674957275413,19.499401092529297],[100.07208251953148,19.482440948486328],[100.06868743896513,19.476060867309513],[100.06736755371122,19.468769073486385],[100.07005310058605,19.46313285827648],[100.06768035888678,19.455190658569336],[100.06365203857422,19.450260162353572],[100.05947875976568,19.45063972473156],[100.05285644531278,19.44740104675293],[100.05018615722685,19.442501068115348],[100.04077148437506,19.44269943237316],[100.03569030761747,19.44074058532715],[100.02893829345703,19.43456077575695],[100.02112579345709,19.43436050415039],[100.01185607910185,19.43726921081543],[100.01023864746094,19.431938171386832],[100.01097106933611,19.426811218261662],[100.00306701660185,19.429651260376033],[99.99423980712896,19.427419662475643],[99.98911285400413,19.430589675903377],[99.98345184326183,19.427770614624023],[99.97441864013695,19.426080703735465],[99.97151947021484,19.427690505981502],[99.96472167968756,19.426111221313477],[99.95880889892584,19.427402496337947],[99.95088958740251,19.426828384399528],[99.94628906249994,19.42473983764654],[99.94447326660179,19.418319702148494],[99.93099212646513,19.413509368896598],[99.92856597900408,19.409259796142635],[99.92331695556663,19.40481948852539],[99.91625976562523,19.430908203125057],[99.90809631347685,19.42950057983404],[99.90400695800781,19.425249099731502],[99.9004669189456,19.425359725952205],[99.89610290527355,19.436740875244197],[99.89131927490263,19.44067192077648],[99.88774871826189,19.446620941162166],[99.8821563720706,19.447280883789062],[99.87908935546903,19.453729629516715],[99.87362670898455,19.452749252319336],[99.86683654785162,19.44432067871105],[99.85379791259783,19.44499015808111],[99.84487915039062,19.44329261779785],[99.84120178222673,19.444271087646484],[99.82846069335938,19.444160461425724],[99.81369018554716,19.4484481811524],[99.80644226074247,19.449230194091797],[99.78929138183605,19.44876289367687],[99.77731323242205,19.44029045104992],[99.77366638183588,19.441009521484432],[99.76628112792969,19.438770294189453],[99.75742340087919,19.439041137695312],[99.7527694702149,19.433330535888786],[99.73699951171903,19.426410675048885],[99.73470306396513,19.423019409179688],[99.72953033447288,19.423019409179688],[99.7183303833009,19.420190811157227],[99.71671295166021,19.418071746826286],[99.70806121826166,19.423461914062557],[99.7065505981447,19.420240402221793],[99.70141601562517,19.418100357055664],[99.6874465942384,19.418649673461857],[99.68451690673851,19.416879653930778],[99.68888092041021,19.40270805358898],[99.6887664794923,19.396690368652344],[99.69541931152372,19.381029129028434],[99.68969726562528,19.380210876464957],[99.68480682373064,19.383060455322266],[99.68403625488298,19.38867950439453],[99.67649841308616,19.3903102874757],[99.66110992431652,19.383850097656364],[99.65631103515653,19.38570022583002],[99.65046691894548,19.384229660034123],[99.64774322509794,19.387569427490348],[99.63587951660179,19.385850906372013],[99.62503051757841,19.38916969299322],[99.61936950683588,19.3896999359132],[99.61698913574241,19.394662857055664],[99.61136627197283,19.395730972290153],[99.5972900390625,19.40440940856945],[99.58557891845714,19.404308319091854],[99.57112121582048,19.41193962097168],[99.56709289550793,19.416040420532227],[99.56378936767584,19.4110107421875],[99.56497192382841,19.40199089050293],[99.5774765014649,19.387340545654354],[99.57836151123041,19.375061035156364],[99.57713317871116,19.368570327758846],[99.57723999023455,19.35948944091797],[99.58180236816423,19.357040405273438],[99.58271789550793,19.351879119873104],[99.57968139648449,19.34656143188488],[99.57457733154314,19.344642639160156],[99.5828704833985,19.33619117736822],[99.58206176757818,19.328519821167106],[99.57717132568388,19.325981140136776],[99.58141326904291,19.319999694824162],[99.57929992675793,19.314149856567383],[99.58200836181658,19.308851242065543],[99.57724761962908,19.299882888793945],[99.58000183105474,19.296901702880916],[99.57907867431669,19.290571212768498],[99.57425689697288,19.291810989379826],[99.56610107421903,19.27988052368164],[99.56199645996094,19.271221160888786],[99.56362152099638,19.26215171813959],[99.56075286865263,19.256269454956055],[99.5530929565432,19.255018234252987],[99.54946899414085,19.250720977783203],[99.55082702636724,19.246780395507812],[99.54747009277361,19.239400863647575],[99.55036163330078,19.234050750732536],[99.55030822753918,19.22149085998535],[99.54688262939447,19.22018051147461],[99.54441070556635,19.214290618896484],[99.5448913574221,19.208309173584098],[99.54236602783203,19.20375823974615],[99.5439376831057,19.190990447998047],[99.53951263427734,19.184120178222713],[99.54254150390625,19.1757106781007],[99.53778839111328,19.160341262817496],[99.54634857177751,19.15790939331066],[99.55172729492193,19.154529571533146],[99.5548629760745,19.14299011230463],[99.56108093261724,19.14128112792963],[99.56154632568371,19.136020660400504],[99.55856323242188,19.12808990478527],[99.55452728271501,19.12547111511236],[99.55368041992193,19.1199111938476],[99.54621887207054,19.112039566040096],[99.54241180419945,19.111370086670036],[99.53900909423857,19.10637283325201],[99.54093933105497,19.101610183715934],[99.53653717041044,19.092060089111385],[99.54039001464855,19.083948135375977],[99.5315704345706,19.07803153991705],[99.5317001342774,19.074800491333008],[99.52213287353516,19.073280334472713],[99.51830291748064,19.077310562133846],[99.51515960693365,19.07483100891119],[99.50453186035168,19.076139450073356],[99.5001602172851,19.07283973693859],[99.49492645263695,19.075290679931697],[99.49244689941429,19.071262359619197],[99.48560333251982,19.068450927734375],[99.47778320312528,19.053220748901424],[99.47590637207043,19.047941207885856],[99.46615600585966,19.033769607543945],[99.46254730224638,19.033412933349553],[99.45764160156267,19.02832984924322],[99.44519042968778,19.018272399902344],[99.43884277343773,19.01142120361328],[99.43788909912132,19.006010055541992],[99.429443359375,19.006589889526367],[99.42333221435547,19.001678466796875],[99.41725158691406,19.000150680541992],[99.40654754638672,18.99998283386236],[99.40245819091825,18.997560501098633],[99.39850616455095,19.0036296844483],[99.39752197265636,19.01317024230957],[99.39174652099615,19.01811027526861],[99.38923645019537,19.02880096435547],[99.38324737548845,19.045589447021598],[99.38506317138695,19.053750991821403],[99.38401794433611,19.062089920044002],[99.37729644775402,19.065410614013786],[99.37094879150413,19.064609527587947],[99.36591339111345,19.069219589233455],[99.3656692504884,19.07768058776867],[99.35447692871094,19.084360122680664],[99.34600830078153,19.084140777588004],[99.34368133544928,19.09283065795904],[99.32940673828153,19.11601066589367],[99.322769165039,19.12096977233898],[99.3224716186524,19.12992286682129],[99.32514190673834,19.132200241088924],[99.3249282836914,19.139522552490234],[99.31967926025419,19.156600952148438],[99.32038879394554,19.163211822509822],[99.3179473876956,19.167739868164176],[99.30757141113281,19.174179077148494],[99.30751800537104,19.185060501098633],[99.30477905273443,19.190980911254883],[99.30739593505865,19.192640304565487],[99.31053924560558,19.20302963256836],[99.31572723388689,19.206262588501033],[99.31230926513689,19.210580825805664],[99.31102752685553,19.21690177917492],[99.31201934814459,19.222440719604606],[99.319877624512,19.227910995483455],[99.32399749755865,19.238759994506836],[99.33856201171903,19.252830505371207],[99.3373718261721,19.257860183715763],[99.34375762939447,19.266162872314453],[99.3422088623048,19.273759841918945],[99.33949279785162,19.278619766235465],[99.3408126831057,19.284950256347656],[99.33885192871094,19.289180755615348],[99.34017944335938,19.294149398803825],[99.33500671386736,19.29961013793951],[99.33322143554716,19.30867004394537],[99.32890319824236,19.318801879882926],[99.32971954345709,19.32534980773937],[99.3267364501956,19.32780075073248],[99.32463073730497,19.33551025390625],[99.32161712646496,19.338850021362305],[99.31838989257807,19.3477401733399],[99.32209014892584,19.353990554809513],[99.33377075195318,19.358539581298885],[99.3321762084961,19.378080368042106],[99.32804870605474,19.386060714721737],[99.32672119140653,19.394689559936637],[99.3306732177735,19.395269393921012],[99.32508850097673,19.402980804443416],[99.32274627685558,19.402820587158317],[99.31920623779297,19.413000106811637],[99.31556701660156,19.41734123229986],[99.31391143798851,19.42353248596197],[99.31120300292969,19.426149368286133],[99.31620788574241,19.44433021545416],[99.31899261474626,19.450349807739258],[99.31687927246111,19.458328247070312],[99.31098175048845,19.469980239868164],[99.30928802490234,19.475860595703125],[99.30851745605469,19.486331939697322],[99.30365753173857,19.48484992980957],[99.29873657226557,19.48595809936529],[99.29631805419922,19.49550056457531],[99.30301666259771,19.514438629150504],[99.3085632324221,19.516981124877873],[99.30995178222685,19.523040771484432],[99.31581878662132,19.525909423828182],[99.31951141357433,19.530889511108512],[99.32688903808616,19.53702926635748],[99.32163238525385,19.54026031494152],[99.31884765625006,19.550979614257756],[99.31671142578125,19.552429199218807],[99.30883026123058,19.551809310913143],[99.30007171630854,19.560529708862305],[99.2963485717774,19.568178176879996],[99.29646301269548,19.572902679443416],[99.29099273681646,19.578058242797965],[99.29112243652361,19.582912445068473],[99.29402160644531,19.586879730224723],[99.29154968261719,19.593902587890625],[99.28620147705078,19.60064125061035],[99.27982330322294,19.60121154785162],[99.26866149902344,19.607799530029354],[99.2667465209961,19.62311172485363],[99.26024627685564,19.626750946045036],[99.26252746582048,19.633449554443473],[99.26022338867205,19.644830703735465],[99.26081848144548,19.648660659790153],[99.26508331298851,19.652421951294002],[99.26621246337896,19.66064071655279],[99.28350067138689,19.671188354492188],[99.29553985595703,19.67719078063959],[99.29869842529325,19.683120727539176],[99.3058166503908,19.691061019897575],[99.30603790283203,19.693420410156364],[99.31478118896501,19.700439453125057],[99.31524658203148,19.705289840698242],[99.32644653320312,19.710269927978572],[99.33480072021501,19.71125030517578],[99.34610748291016,19.709140777588004],[99.34989929199219,19.72144126892084],[99.35819244384794,19.722860336303768],[99.36145019531278,19.72511100769043],[99.36331939697288,19.736299514770565],[99.36126708984403,19.742099761962947],[99.36643981933605,19.7522811889649],[99.36621856689482,19.759820938110465],[99.36760711669939,19.76630973815918],[99.36380767822283,19.774379730224723],[99.37339019775396,19.778621673583928],[99.37796020507812,19.779001235961914],[99.38108825683622,19.788259506225586],[99.37937927246122,19.792690277099723],[99.38352966308616,19.796949386596793],[99.38848876953148,19.805208206176815],[99.39215850830107,19.80537986755371],[99.39573669433616,19.812160491943473],[99.40773010253912,19.812139511108455],[99.41188049316423,19.810510635376033],[99.4216918945313,19.812030792236328],[99.42180633544922,19.81936073303234],[99.41059112548834,19.829179763793945],[99.41506195068371,19.838039398193416],[99.39247131347662,19.858779907226676],[99.3881378173831,19.866870880127067],[99.38932037353527,19.873090744018555],[99.38491058349638,19.884740829467773],[99.38555145263689,19.889429092407227],[99.3897705078125,19.895111083984375],[99.39698791503923,19.901081085205078],[99.40039062500011,19.90907287597662],[99.40943145751953,19.91316032409668],[99.42212677001964,19.91624069213873],[99.41867065429716,19.92076110839855],[99.41641235351574,19.930179595947322],[99.4168701171875,19.937561035156364],[99.41886901855497,19.939840316772404],[99.41938781738304,19.947668075561523],[99.42259216308594,19.954452514648494],[99.42307281494152,19.96096038818365],[99.4304962158206,19.962400436401367],[99.4353866577149,19.96145057678234],[99.44075012207054,19.97083282470703],[99.4492492675783,19.973241806030273],[99.458251953125,19.982719421386776],[99.46308135986334,19.9954509735108],[99.46716308593744,19.998910903930664],[99.47009277343756,20.005550384521598],[99.47920227050798,20.010320663452205],[99.47336578369163,20.01946258544922],[99.4692687988283,20.022172927856445],[99.4689559936524,20.031328201293945],[99.4749298095706,20.032970428466854],[99.47831726074241,20.03766059875494],[99.48583221435558,20.0370197296142],[99.49321746826178,20.041479110717887],[99.50129699707026,20.050212860107536],[99.50846099853538,20.05197906494152],[99.51722717285179,20.047121047973576],[99.51982116699236,20.04217910766613],[99.52719116210966,20.0390682220459],[99.52493286132824,20.04693984985363],[99.52066802978538,20.04809951782238],[99.51425170898449,20.052621841430778],[99.50225067138666,20.05805969238287],[99.49620819091797,20.062669754028377],[99.49276733398438,20.069320678710994],[99.4953231811524,20.07809066772461],[99.50100708007818,20.079280853271484],[99.50691223144537,20.083488464355582],[99.51737213134766,20.08678054809576],[99.5335922241211,20.09346961975092],[99.53939056396513,20.096990585327262],[99.54987335205084,20.101089477539062],[99.55414581298845,20.101221084594783],[99.56236267089861,20.098571777343693],[99.57200622558622,20.106201171874943],[99.57386779785162,20.11160850524908],[99.56851959228521,20.121299743652344],[99.5644607543947,20.122499465942383],[99.55802917480474,20.127389907837028],[99.54601287841803,20.127428054809513],[99.54161071777344,20.13042068481451],[99.53713226318371,20.130598068237305],[99.52860260009783,20.134889602661133],[99.52040100097673,20.13689041137701],[99.5161590576173,20.143569946289176],[99.515190124512,20.149280548095703],[99.5205688476562,20.15010261535656],[99.52738952636747,20.147850036621094],[99.53280639648455,20.144180297851562],[99.5413894653322,20.14447975158697],[99.5404968261721,20.152370452880916],[99.54260253906273,20.157890319824162],[99.54122161865234,20.161190032959098],[99.5444564819336,20.1696395874024],[99.55367279052757,20.17291069030756],[99.5573272705081,20.179790496826172],[99.55578613281256,20.18630027770996],[99.55871582031244,20.194040298461914],[99.5624008178711,20.199390411376953],[99.56352233886719,20.20601081848139],[99.55721282959001,20.215139389038143],[99.54891967773443,20.214748382568416],[99.54563140869146,20.216880798339844],[99.54334259033209,20.222919464111385],[99.53491973876953,20.230350494384822],[99.52619934082054,20.230470657348633],[99.52284240722668,20.24159049987793],[99.52337646484403,20.246549606323242],[99.51828002929682,20.25398826599121],[99.520492553711,20.257377624511776],[99.51972961425787,20.263360977172965],[99.51214599609386,20.285400390625057],[99.50707244873047,20.292100906372127],[99.5087890625,20.298990249633846],[99.5077590942384,20.30524063110346],[99.51135253906278,20.310680389404354],[99.5091018676759,20.32335090637207],[99.49842834472668,20.339149475097656],[99.48377990722673,20.346879959106502],[99.47779846191435,20.34762954711914],[99.47264862060575,20.35064125061035],[99.46916198730491,20.35596084594738],[99.45855712890636,20.36141014099121],[99.45878601074236,20.376491546630916],[99.46119689941435,20.38286018371582],[99.45948791503935,20.39066123962408],[99.47421264648432,20.392339706420955],[99.49028778076172,20.3819198608399],[99.49797821044945,20.383430480957088],[99.51026153564447,20.371561050414982],[99.51821899414091,20.360139846801758],[99.52639007568382,20.360599517822266],[99.53833007812517,20.354209899902344],[99.55815124511736,20.355621337890682],[99.5622482299807,20.351320266723746],[99.57620239257841,20.34698867797863],[99.57978820800804,20.34288024902355],[99.58979797363276,20.340232849121037],[99.59430694580084,20.34110832214367],[99.60058593750023,20.33601188659668],[99.60491943359375,20.33584022521984],[99.60861206054693,20.33197975158697],[99.61380767822277,20.330411911010856],[99.61585998535162,20.33387184143072],[99.62079620361351,20.333971023559684],[99.62496185302734,20.336772918701172],[99.63262176513695,20.334632873535213],[99.63746643066418,20.340061187744197],[99.65194702148466,20.338729858398438],[99.65267944335943,20.333749771118278],[99.65801239013678,20.327600479126033],[99.67430877685564,20.320289611816463],[99.67851257324236,20.31554985046398],[99.68367004394548,20.314592361450195],[99.68724060058605,20.31845092773449],[99.69342803955078,20.320409774780273],[99.70025634765642,20.324680328369254],[99.707992553711,20.32425117492687],[99.71228027343767,20.322099685669002],[99.71676635742193,20.325920104980582],[99.72152709960943,20.32665061950678],[99.72248840332037,20.330230712890682],[99.71906280517607,20.33794021606451],[99.72310638427746,20.343650817871207],[99.72834777832037,20.344141006469727],[99.73377227783232,20.34766960144043],[99.74317932128923,20.34286117553711],[99.74944305419916,20.34184074401861],[99.75991058349621,20.336950302123967],[99.76235961914091,20.339950561523494],[99.77230834960949,20.33949089050293],[99.77820587158232,20.332609176635742],[99.79248809814459,20.33333969116211],[99.7984008789063,20.332389831543082],[99.81278228759783,20.33409118652355],[99.81482696533232,20.3398494720459],[99.81942749023449,20.34507942199707],[99.82781982421886,20.352031707763672],[99.83051300048822,20.36168098449707],[99.84076690673857,20.37000274658203],[99.84407043457048,20.381248474121037],[99.841567993164,20.3871307373048],[99.84377288818382,20.393939971923828],[99.84216308593767,20.39904022216797],[99.84626770019537,20.404472351074332],[99.84996032714838,20.405679702758903],[99.85807037353538,20.414239883422965],[99.86161041259783,20.41991996765131],[99.86311340332043,20.42707061767578],[99.86788177490246,20.432439804077205],[99.87232208251953,20.443429946899528],[99.87487792968756,20.441852569580078],[99.88569641113281,20.443920135498047],[99.89096832275385,20.442472457885742],[99.90621185302746,20.447549819946346],[99.91561126709001,20.44742012023937],[99.92343139648455,20.443920135498047],[99.930229187012,20.45185089111328],[99.94162750244163,20.453462600708065],[99.95332336425793,20.45923805236822],[99.9568481445313,20.46283912658697],[99.9617919921875,20.463100433349666],[99.96527862548851,20.459840774536246],[99.96846771240234,20.452829360961914],[99.9752807617187,20.450479507446403],[99.9778442382813,20.446290969848746],[99.9783706665039,20.438180923461914],[99.98439788818388,20.438480377197322],[99.98792266845703,20.434080123901367],[99.986869812012,20.427869796753043],[99.99066925048857,20.42531013488781],[99.98951721191412,20.42048072814947],[99.99600219726568,20.41884040832531],[100.0052566528322,20.413179397583008],[100.0085220336914,20.41588020324707],[100.01409912109398,20.41474914550787],[100.02015686035156,20.411140441894645],[100.01883697509771,20.407520294189453],[100.02995300292974,20.402099609375],[100.03163146972662,20.398769378662166],[100.03759765625028,20.396301269531364],[100.04614257812523,20.395128250122127],[100.04601287841808,20.391559600830135],[100.05155181884777,20.391090393066463],[100.05780792236357,20.3863582611084],[100.05837249755865,20.394001007080135],[100.06185913085949,20.394380569458065],[100.06552124023455,20.389989852905273],[100.06745147705078,20.383300781250114],[100.07184600830078,20.387702941894645],[100.07411193847673,20.385351181030387],[100.0676498413086,20.37957000732422],[100.07187652587896,20.372631072998047],[100.08106994628912,20.376779556274414],[100.08145904541044,20.371070861816463],[100.08734130859398,20.3652400970459],[100.08219909667991,20.363870620727596],[100.08255767822271,20.355688095092773],[100.08640289306646,20.351591110229606],[100.08801269531267,20.343730926513786],[100.09565734863298,20.32645034790039],[100.09818267822271,20.31602096557623],[100.09857940673834,20.305999755859432],[100.0964584350586,20.291891098022575],[100.09261322021501,20.27671051025402],[100.09414672851562,20.265911102295036],[100.09941101074247,20.259019851684684],[100.10822296142572,20.251371383666992],[100.11402893066412,20.248350143432674],[100.13595581054693,20.246059417724723],[100.15644073486357,20.24265098571783],[100.17127990722662,20.242879867553825],[100.17623138427757,20.246290206909293],[100.18270111084007,20.261440277099666],[100.182861328125,20.26406097412115],[100.17829132080084,20.275230407714844],[100.17296600341803,20.279951095581055],[100.17008972167974,20.28557014465332],[100.16886138916027,20.294330596923942],[100.17561340332031,20.301469802856502],[100.18434143066423,20.30521965026861],[100.19639587402344,20.30890083312994],[100.20723724365251,20.3094100952149],[100.21961212158197,20.31225967407238],[100.22434997558605,20.31702041625988],[100.22975158691423,20.325452804565543],[100.23053741455078,20.3338298797608],[100.22615051269531,20.34527015686035],[100.2297592163086,20.35460090637207],[100.23423004150396,20.35795974731451],[100.24704742431652,20.364810943603516],[100.25150299072266,20.372901916503906],[100.25068664550793,20.380910873413143],[100.25285339355469,20.384969711303825],[100.2645111083985,20.393400192260685],[100.2679214477539,20.39707946777338],[100.27442169189459,20.398830413818473],[100.28251647949247,20.397069931030273],[100.30319213867188,20.395370483398438],[100.31587982177763,20.399990081787223],[100.32138824462896,20.39695167541504],[100.33181762695312,20.396610260009766],[100.33822631835949,20.391651153564453],[100.34729003906256,20.382881164550838],[100.35733795166033,20.375869750976676],[100.3614959716798,20.365890502929744],[100.36023712158203,20.360980987548828],[100.36087799072271,20.35411071777355],[100.37372589111322,20.351930618286133],[100.3785400390625,20.34521102905279],[100.37876129150396,20.335029602050895],[100.38269042968744,20.32410049438488],[100.38260650634771,20.317550659179688],[100.38623809814459,20.308851242065543],[100.3952178955081,20.298460006713867],[100.39785766601585,20.291641235351562],[100.4046859741211,20.28502082824707],[100.4104766845706,20.2744197845459],[100.41082763671898,20.26986122131359],[100.4144058227539,20.256191253662223],[100.4196166992188,20.249879837036076],[100.4295272827149,20.24298095703125],[100.43865203857428,20.23933982849121],[100.45146942138678,20.231901168823242],[100.456771850586,20.226329803466797],[100.45854187011747,20.22153091430664],[100.45577239990251,20.21030044555664],[100.45552825927746,20.203550338745174],[100.4575958251956,20.197639465332088],[100.46843719482428,20.195209503173828],[100.48011016845732,20.186689376831055],[100.48369598388678,20.18089103698742],[100.48805236816412,20.178792953491325],[100.49314880371111,20.1728191375733],[100.49627685546898,20.166460037231502],[100.5033569335938,20.158601760864315],[100.50801086425798,20.1507511138916],[100.51528930664062,20.143909454345703],[100.52723693847668,20.141080856323242],[100.53238677978527,20.143501281738338],[100.54268646240246,20.157369613647518],[100.54725646972685,20.166202545166016],[100.55401611328125,20.173219680786133],[100.55945587158232,20.172180175781364],[100.56262207031256,20.173980712890625],[100.56912994384788,20.17320060729986],[100.57982635498053,20.16650009155279],[100.57852172851591,20.154521942138786],[100.5765991210938,20.1459903717041],[100.57428741455101,20.142179489135856],[100.57299804687528,20.134199142455998],[100.5737762451173,20.124900817871037],[100.5709381103515,20.110900878906307],[100.57192230224626,20.101711273193473],[100.57092285156261,20.095661163330078],[100.56674957275385,20.092220306396484],[100.5625381469726,20.084510803222656],[100.56282043457037,20.075450897216797],[100.55858612060547,20.058040618896428],[100.55634307861334,20.0533504486084],[100.55583190917997,20.044750213623047],[100.5528030395509,20.041200637817496],[100.55371856689482,20.02917098999029],[100.5477294921875,20.025619506835994],[100.54397583007818,20.020719528198242],[100.543472290039,20.01494026184082],[100.54554748535168,20.011960983276367],[100.53981018066435,19.996839523315543],[100.52488708496116,19.95952987670904],[100.51934051513678,19.94404029846197],[100.51854705810547,19.933242797851562],[100.5216827392581,19.915019989013672],[100.5184173583985,19.905612945556754],[100.51573944091803,19.902759552002067],[100.50746154785173,19.885271072387752],[100.50348663330078,19.88245964050293],[100.50247955322283,19.878509521484375],[100.49816131591803,19.87355995178217],[100.48401641845703,19.864032745361442],[100.47543334960938,19.86102104187023],[100.46263122558611,19.85514068603527],[100.45623016357428,19.84824943542492],[100.45202636718773,19.84589004516613],[100.44477844238304,19.835350036621207],[100.44448852539057,19.83266258239746],[100.44934082031256,19.827808380127067],[100.44625091552734,19.819749832153434],[100.44638824462885,19.81492996215826],[100.44325256347679,19.80608940124523],[100.43869018554693,19.798290252685547],[100.4225311279298,19.785120010375977],[100.41530609130854,19.77542114257824],[100.41298675537121,19.76681137084961],[100.40664672851568,19.75224113464361],[100.40596771240251,19.739717483520508],[100.40856170654303,19.73394012451172]]]},"properties":{"ID_0":228,"ISO":"TH-57","NAME_0":"Thailand","ID_1":11,"NAME_1":"Chiang Rai","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"เชียงราย","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.95593261718756,12.52995491027832],[100.95717620849604,12.529300689697322],[100.9601669311524,12.51513862609869],[100.95793151855463,12.513303756713924],[100.95208740234375,12.514885902404842],[100.95593261718756,12.52995491027832]]],[[[100.95021057128912,12.586429595947266],[100.954643249512,12.586550712585392],[100.95780944824219,12.567049980163688],[100.96324157714872,12.562835693359318],[100.9617385864259,12.558438301086426],[100.95313262939482,12.551828384399357],[100.94898223876947,12.562351226806584],[100.94940185546875,12.566241264343319],[100.94226837158232,12.577000617981014],[100.94287109374994,12.582390785217342],[100.95021057128912,12.586429595947266]]],[[[100.96616363525408,12.580839157104549],[100.9593276977539,12.582421302795467],[100.96088409423834,12.589570999145621],[100.96629333496122,12.58882999420166],[100.96616363525408,12.580839157104549]]],[[[100.87388610839844,12.641388893127555],[100.8724975585937,12.633891105651855],[100.86833190917986,12.633609771728572],[100.8647232055664,12.641388893127555],[100.87388610839844,12.641388893127555]]],[[[100.89301300048834,12.64515590667736],[100.89050292968756,12.64147090911871],[100.88198852539091,12.643820762634391],[100.889663696289,12.647429466247615],[100.89301300048834,12.64515590667736]]],[[[100.78237152099632,12.716952323913631],[100.7877731323245,12.719073295593375],[100.7929763793947,12.716730117797908],[100.80153656005854,12.718778610229606],[100.8033218383789,12.717261314392204],[100.80487823486351,12.706756591796932],[100.8035278320313,12.702599525451717],[100.80625152587919,12.696110725402832],[100.80220031738287,12.691600799560604],[100.79545593261736,12.689080238342399],[100.78975677490234,12.681750297546387],[100.78816986083996,12.675221443176326],[100.77900695800793,12.671130180358944],[100.77623748779297,12.680779457092285],[100.7751922607423,12.690301895141545],[100.7708969116211,12.697130203247184],[100.76420593261719,12.703109741210994],[100.76590728759783,12.709306716919002],[100.77055358886741,12.704722404480037],[100.776107788086,12.706941604614258],[100.77365875244169,12.71935844421398],[100.77761077880882,12.720112800598088],[100.78237152099632,12.716952323913631]]],[[[100.70253753662104,12.791721343994197],[100.69780731201189,12.798604011535701],[100.69989013671892,12.803112030029297],[100.70435333251959,12.799519538879395],[100.70253753662104,12.791721343994197]]],[[[100.78936767578142,12.925023078918457],[100.785629272461,12.913468360900879],[100.7825012207033,12.908611297607422],[100.78077697753923,12.90108966827404],[100.77229309082037,12.9009304046632],[100.77160644531267,12.909440040588379],[100.7672958374024,12.915669441223145],[100.77086639404314,12.928501129150447],[100.77514648437506,12.924860954284725],[100.78019714355486,12.926030158996639],[100.78498840332031,12.932220458984432],[100.78910827636747,12.932010650634709],[100.78936767578142,12.925023078918457]]],[[[100.67922210693388,12.945891380310115],[100.6766586303711,12.938652038574219],[100.68258666992188,12.934762001037711],[100.68229675292997,12.930790901184139],[100.6857223510745,12.928589820861873],[100.6824569702149,12.921620368957576],[100.67475891113281,12.920098304748478],[100.6706161499024,12.924970626831168],[100.66783905029291,12.931780815124455],[100.66648101806652,12.939352035522461],[100.66352844238287,12.942907333374137],[100.66657257080084,12.945660591125545],[100.67861175537132,12.951310157775936],[100.67922210693388,12.945891380310115]]],[[[100.6486740112307,12.951549530029354],[100.6482772827149,12.96239185333252],[100.65354156494158,12.959966659545898],[100.6486740112307,12.951549530029354]]],[[[100.82166290283226,13.17250061035162],[100.82749938964861,13.168611526489371],[100.8263931274414,13.16389179229742],[100.82138824462908,13.164999961853027],[100.82166290283226,13.17250061035162]]],[[[100.808334350586,13.178530693054256],[100.8096771240235,13.17125415802002],[100.80805206298845,13.16722202301031],[100.81472015380876,13.153888702392578],[100.81861114501976,13.1480588912965],[100.81916809082037,13.136387825012264],[100.81527709960932,13.130555152893066],[100.80918121337908,13.12472057342535],[100.80722045898466,13.125830650329704],[100.80666351318371,13.135000228881779],[100.80278015136741,13.138611793518123],[100.80694580078125,13.143329620361271],[100.80388641357422,13.147500991821289],[100.8013916015625,13.16166782379156],[100.79888916015642,13.168332099914664],[100.8013916015625,13.171943664550838],[100.80062866210938,13.17799091339117],[100.808334350586,13.178530693054256]]],[[[101.72013092041033,13.179710388183594],[101.71688079833979,13.17169189453125],[101.71752166748053,13.167620658874569],[101.71221160888695,13.159890174865723],[101.70484161376964,13.15936088562023],[101.6984786987307,13.151228904724064],[101.69402313232439,13.15072059631342],[101.68888092041016,13.152689933776855],[101.68324279785162,13.150880813598746],[101.67160034179693,13.153591156005973],[101.66252136230463,13.152699470519963],[101.66108703613304,13.15787124633789],[101.65454101562517,13.159611701965332],[101.64795684814459,13.163071632385368],[101.63793945312517,13.158089637756461],[101.63172149658226,13.150691986084041],[101.62085723876959,13.1422700881958],[101.6077423095706,13.135730743408203],[101.60095977783203,13.137499809265194],[101.58618164062528,13.138470649719238],[101.5808563232423,13.134370803833008],[101.5861206054688,13.126391410827637],[101.58891296386736,13.11819076538086],[101.58622741699213,13.11178016662609],[101.5830688476563,13.108720779419059],[101.57726287841791,13.097241401672363],[101.57576751709001,13.088761329650879],[101.57303619384777,13.083730697631836],[101.56469726562517,13.0794296264649],[101.55813598632841,13.071799278259334],[101.52770233154314,13.073650360107479],[101.52169799804716,13.070910453796444],[101.51628112792969,13.059221267700195],[101.51225280761736,13.057150840759391],[101.49809265136713,13.057070732116813],[101.49577331542997,13.052960395812931],[101.48747253417969,13.045089721679744],[101.48558044433594,13.03861045837408],[101.47634124755871,13.037961006164608],[101.46708679199224,13.034519195556697],[101.4649658203125,13.032260894775447],[101.45568084716803,13.03551101684576],[101.45478820800793,13.038090705871582],[101.44587707519548,13.047601699829102],[101.43834686279325,13.05084037780773],[101.43183898925787,13.044400215148926],[101.42292022705107,13.037841796875057],[101.41378021240246,13.038221359252987],[101.40422058105497,13.0417098999024],[101.39198303222662,13.03945064544672],[101.38474273681646,13.03933143615717],[101.38117980957026,13.037570953369197],[101.37136840820335,13.042881965637207],[101.36785888671892,13.0425901412965],[101.36290740966814,13.047020912170467],[101.35836029052734,13.055751800537223],[101.35276794433588,13.056830406188965],[101.34925842285162,13.064560890197754],[101.34512329101557,13.06791973114025],[101.34294128417991,13.073439598083496],[101.33509826660162,13.07501125335699],[101.3322677612307,13.080879211425724],[101.32675170898443,13.082392692565975],[101.31764984130871,13.079890251159725],[101.31175994873041,13.072751998901424],[101.30249786376959,13.071299552917537],[101.2939071655274,13.064459800720215],[101.29376983642607,13.058000564575309],[101.29180145263678,13.050020217895451],[101.288101196289,13.052521705627441],[101.27332305908226,13.056428909301815],[101.26966857910156,13.061430931091309],[101.26490020751953,13.072961807250977],[101.26059722900419,13.076371192932129],[101.25154876708984,13.073650360107479],[101.24494171142607,13.067730903625545],[101.24320983886724,13.063391685485897],[101.23783111572271,13.063949584960938],[101.22274017333984,13.075630187988338],[101.21713256835949,13.075241088867244],[101.19644927978521,13.0867214202882],[101.18582153320341,13.086469650268612],[101.1774215698245,13.078460693359375],[101.17457580566435,13.07184028625494],[101.17584991455084,13.061299324035758],[101.17411804199224,13.058101654052734],[101.17961120605486,13.053270339965763],[101.18898010253906,13.055800437927303],[101.19918060302763,13.050141334533805],[101.20172119140642,13.045161247253475],[101.19330596923822,13.041790008544979],[101.18843078613287,13.037359237670898],[101.18395996093744,13.040540695190543],[101.17552947998075,13.04143047332775],[101.17121887207048,13.045130729675293],[101.15358734130888,13.046309471130485],[101.14933776855474,13.044879913330192],[101.1378784179688,13.045930862426815],[101.1279296875,13.045169830322266],[101.11158752441429,13.047691345214787],[101.10169219970709,13.04512023925787],[101.08721923828153,13.02902889251709],[101.07904815673822,13.02335166931158],[101.07408142089855,13.016000747680721],[101.06867218017601,13.00508022308361],[101.07576751709013,13.005741119384822],[101.08190155029308,13.003931045532227],[101.0916824340822,12.99700927734375],[101.09197998046903,12.992971420288143],[101.09619903564464,12.986021995544547],[101.09446716308622,12.978700637817383],[101.0971984863283,12.97423171997076],[101.10327911376947,12.972620010375977],[101.10401916503918,12.969331741332951],[101.09960937500028,12.962748527526855],[101.09236907959013,12.957600593566895],[101.0904388427735,12.944540977478027],[101.09278106689447,12.942058563232536],[101.08824920654314,12.930159568786564],[101.09010314941418,12.914900779724064],[101.08683776855497,12.90936088562006],[101.07826232910185,12.903500556945858],[101.08100891113281,12.895430564880485],[101.07640838623064,12.893280982971191],[101.07260894775408,12.885210990905875],[101.07524871826166,12.878279685974064],[101.07028198242182,12.870001792907772],[101.06665802001947,12.860849380493164],[101.06223297119169,12.856231689453125],[101.0648193359375,12.852120399475154],[101.06490325927763,12.845421791076717],[101.06327819824219,12.839411735534725],[101.06516265869158,12.837109565734863],[101.05774688720703,12.823810577392692],[101.05361175537115,12.82178020477295],[101.05049896240234,12.814761161804256],[101.04416656494158,12.81011104583746],[101.03962707519531,12.811239242553768],[101.03227233886747,12.807129859924373],[101.03077697753918,12.801349639892521],[101.02075958251953,12.797479629516545],[101.01470184326178,12.785649299621639],[101.01597595214844,12.771369934082031],[101.01374053955101,12.760720252990723],[101.01612091064447,12.75807189941412],[101.01020812988276,12.751790046691838],[101.00872039794922,12.74352169036871],[101.0046768188476,12.738610267639217],[101.00469970703142,12.733511924743596],[100.99703216552729,12.72909927368164],[100.99297332763678,12.72533035278326],[100.99270629882812,12.720680236816463],[100.99571228027338,12.713932037353572],[100.98805236816418,12.699460983276424],[100.98560333251947,12.69115161895752],[100.99021911621094,12.682850837707576],[100.9931259155274,12.67471027374279],[100.99108886718778,12.667270660400334],[100.99424743652344,12.657780647277832],[100.99267578125017,12.655878067016658],[100.9801864624024,12.652151107788143],[100.97157287597662,12.647720336914006],[100.96835327148443,12.644160270690861],[100.97077178955078,12.639022827148494],[100.9671020507812,12.636359214782772],[100.96353912353516,12.627771377563477],[100.96736145019537,12.616666793823299],[100.96277618408203,12.601392745971737],[100.96360015869146,12.595820426940975],[100.95833587646501,12.595279693603572],[100.9516677856447,12.602222442626896],[100.949447631836,12.599444389343319],[100.94494628906261,12.601250648498535],[100.94060516357439,12.606051445007324],[100.93186950683594,12.60951137542736],[100.92658996582037,12.605520248413029],[100.92392730712896,12.607712745666504],[100.92299652099638,12.613371849060059],[100.91883087158197,12.620302200317326],[100.91278076171875,12.623331069946403],[100.9144439697265,12.628611564636287],[100.92057037353533,12.628890037536678],[100.92152404785173,12.632497787475643],[100.92587280273449,12.635870933532658],[100.92951965332026,12.64670181274414],[100.92048645019537,12.656591415405387],[100.90911102294916,12.661629676818961],[100.90265655517595,12.662411689758358],[100.89177703857439,12.65935134887701],[100.88616180419928,12.652311325073242],[100.87305450439447,12.652221679687557],[100.86583709716814,12.64916801452648],[100.86151885986334,12.652180671692008],[100.85278320312506,12.648135185241813],[100.84801483154303,12.653885841369629],[100.85844421386719,12.659210205078125],[100.86189270019537,12.667021751403809],[100.85756683349638,12.674860000610352],[100.84789276123041,12.676230430603084],[100.84471130371094,12.671113967895565],[100.8405456542971,12.675601005554313],[100.8404617309572,12.682440757751465],[100.84665679931663,12.687760353088493],[100.85025024414068,12.68900012969982],[100.85374450683622,12.694171905517578],[100.8511352539062,12.697360038757438],[100.84692382812494,12.69778156280529],[100.84416961669945,12.693890571594295],[100.83925628662138,12.697353363037223],[100.83685302734392,12.702951431274414],[100.839653015137,12.706631660461426],[100.8340072631836,12.7134304046632],[100.83856201171892,12.725229263305664],[100.83367919921898,12.733160972595215],[100.83561706542974,12.738910675048885],[100.84005737304682,12.741937637329215],[100.841361999512,12.746970176696834],[100.83986663818354,12.750850677490234],[100.84424591064464,12.754480361938533],[100.85247039794916,12.753655433654785],[100.85626220703136,12.758500099182243],[100.85682678222668,12.764861106872559],[100.87033081054693,12.769882202148494],[100.87874603271513,12.761530876159668],[100.88351440429716,12.761243820190487],[100.89343261718778,12.766591072082576],[100.89848327636719,12.771121978759822],[100.90277862548857,12.777776718139648],[100.90773773193388,12.78971958160406],[100.910140991211,12.799340248108024],[100.9134902954101,12.807129859924373],[100.91134643554716,12.821645736694336],[100.9016571044923,12.847781181335506],[100.89353942871094,12.864358901977596],[100.8866806030274,12.874599456787053],[100.87194824218767,12.892780303955078],[100.85917663574236,12.905820846557674],[100.85575866699219,12.910490989685172],[100.85588836669916,12.919000625610352],[100.86302947998053,12.92987060546875],[100.86525726318376,12.926151275634766],[100.86927795410173,12.925160408019963],[100.87844085693376,12.931152343749943],[100.88355255126947,12.939417839050236],[100.88397216796892,12.949289321899528],[100.88212585449241,12.953100204467773],[100.88442230224632,12.962649345398063],[100.88249969482428,12.968059539794865],[100.89277648925781,12.974684715271053],[100.8984680175783,12.971691131591797],[100.90354156494169,12.973055839538574],[100.9176712036134,12.985361099243107],[100.92138671875,12.99083328247076],[100.92265319824213,12.996390342712402],[100.92582702636724,13.00111198425293],[100.92797851562511,13.010310173034725],[100.92631530761736,13.023209571838436],[100.92235565185553,13.033466339111271],[100.91471862792974,13.044722557067928],[100.90666961669939,13.047221183776855],[100.89111328125006,13.042498588562069],[100.89027404785156,13.04694461822504],[100.89305877685575,13.049723625183105],[100.9038925170899,13.050830841064396],[100.90083312988287,13.054444313049316],[100.88944244384777,13.05194091796875],[100.881401062012,13.063881874084586],[100.87860870361345,13.070554733276367],[100.88027954101591,13.075554847717228],[100.87194824218767,13.07694053649908],[100.8716659545899,13.083333969116211],[100.87472534179716,13.087778091430607],[100.87583160400413,13.096390724182129],[100.87854766845732,13.102191925048828],[100.87889099121116,13.10999965667736],[100.88972473144531,13.119444847106934],[100.8925018310548,13.11916732788086],[100.89916992187511,13.126929283142147],[100.89781188964872,13.133831024169922],[100.90083312988287,13.144444465637264],[100.9038925170899,13.14527893066412],[100.9088897705081,13.151666641235465],[100.9091567993164,13.155559539794922],[100.91305541992193,13.15999984741211],[100.91971588134771,13.16471958160406],[100.91999816894548,13.167780876159668],[100.92500305175781,13.170554161071777],[100.92583465576178,13.177223205566406],[100.92833709716825,13.180555343628043],[100.93000030517601,13.191670417785645],[100.93277740478533,13.192779541015739],[100.93583679199236,13.204721450805664],[100.93389129638683,13.212219238281307],[100.93583679199236,13.217780113220329],[100.93360900878912,13.228891372680778],[100.9308319091798,13.23722076416027],[100.92749786376959,13.25777912139904],[100.91994476318388,13.275873184204102],[100.91494750976568,13.283370971679744],[100.90096282958984,13.299140930175781],[100.90277862548857,13.31359958648676],[100.91416931152366,13.31359958648676],[100.91777801513678,13.315833091735783],[100.92057037353533,13.324720382690543],[100.91999816894548,13.333332061767578],[100.9233322143557,13.333888053894043],[100.92391967773443,13.339315414428711],[100.93026733398449,13.341671943664664],[100.93611145019554,13.339166641235295],[100.93916320800804,13.342500686645565],[100.94972229003918,13.347780227661133],[100.96166992187523,13.348890304565487],[100.96870422363287,13.3522310256958],[100.97583007812528,13.359166145324764],[100.9744262695313,13.363332748413086],[100.97750091552757,13.3663911819458],[100.97666931152361,13.372499465942496],[100.98305511474615,13.378334045410213],[100.98443603515636,13.38500022888195],[100.98278045654297,13.390559196472168],[100.98388671874994,13.393891334533635],[100.98139190673822,13.401391983032227],[100.96971893310575,13.42499923706066],[100.96694183349626,13.434721946716309],[100.96833038330084,13.452779769897461],[100.97222137451183,13.466387748718375],[100.97873687744135,13.470134735107422],[100.98542022705095,13.463161468505973],[100.99124908447271,13.462320327758846],[100.99738311767607,13.464711189270133],[101.00810241699213,13.462689399719238],[101.01168060302763,13.465580940246582],[101.01323699951183,13.47120189666748],[101.01912689209013,13.473109245300293],[101.02958679199224,13.478841781616325],[101.03369140625017,13.48254108428955],[101.03581237792969,13.48875999450695],[101.0331115722658,13.49307918548584],[101.0343627929688,13.496081352233944],[101.04663085937494,13.498950004577694],[101.06134796142595,13.515070915222168],[101.06909179687528,13.514259338378906],[101.07189941406256,13.517360687255803],[101.0698165893557,13.522340774536133],[101.06549072265636,13.525340080261344],[101.0612411499024,13.534650802612305],[101.05462646484386,13.544179916381836],[101.05075836181646,13.546969413757324],[101.04116821289062,13.54911041259777],[101.04505157470732,13.557291984558162],[101.0521621704101,13.557090759277457],[101.05629730224615,13.551720619201717],[101.06957244873047,13.556119918823356],[101.07192230224615,13.553359985351562],[101.0891723632812,13.554451942443961],[101.09516906738287,13.552700996398926],[101.10427856445312,13.559499740600643],[101.11241912841808,13.56836128234869],[101.11573028564453,13.568490982055664],[101.1201171875,13.562841415405273],[101.12777709960943,13.566232681274471],[101.13060760498047,13.569279670715275],[101.1309814453125,13.57683086395275],[101.13639068603521,13.58018970489502],[101.13935852050798,13.588360786437988],[101.14279174804705,13.592630386352653],[101.15223693847662,13.598751068115291],[101.16770935058622,13.597750663757381],[101.17437744140653,13.59584999084484],[101.18441009521484,13.591230392455998],[101.190902709961,13.584330558776855],[101.20121002197271,13.583411216735954],[101.21668243408226,13.578959465026799],[101.2161407470706,13.576260566711483],[101.22447967529303,13.575399398803654],[101.24225616455084,13.568671226501522],[101.24872589111351,13.569320678711051],[101.25287628173828,13.56785106658947],[101.25377655029291,13.564291000366325],[101.2604217529298,13.564361572265739],[101.27404022216797,13.556778907775822],[101.27648162841814,13.552669525146484],[101.28317260742205,13.54944038391119],[101.2894592285158,13.539072036743107],[101.29530334472685,13.533540725707951],[101.29686737060541,13.524221420288143],[101.30075073242188,13.522999763488826],[101.30412292480463,13.516691207885742],[101.31034088134771,13.51570034027111],[101.31503295898455,13.50868034362793],[101.31687927246105,13.503582000732536],[101.32427215576178,13.49679183959961],[101.3315811157226,13.49242973327631],[101.33747100830107,13.491132736206055],[101.33831787109375,13.488512039184513],[101.34924316406273,13.480060577392635],[101.35209655761741,13.47921085357666],[101.35839843750023,13.469030380249023],[101.36785888671892,13.457650184631348],[101.37915802001959,13.452779769897461],[101.38880157470697,13.452681541442928],[101.39643859863276,13.450700759887809],[101.4026107788086,13.453930854797363],[101.4133224487307,13.456510543823299],[101.42144012451189,13.456141471862793],[101.42637634277338,13.451669692993278],[101.42616271972685,13.429651260375977],[101.43350982666016,13.429579734802246],[101.4368972778322,13.424300193786678],[101.44394683837908,13.421480178833065],[101.44570922851562,13.414279937744197],[101.45345306396496,13.40652179718029],[101.45775604248053,13.405241012573356],[101.46766662597662,13.407320022583008],[101.47321319580101,13.412529945373649],[101.48419189453142,13.414710998535156],[101.48869323730474,13.417401313781852],[101.48938751220703,13.422288894653434],[101.49307250976568,13.423700332641602],[101.49749755859403,13.41852188110363],[101.50485229492193,13.418029785156307],[101.5129776000976,13.415790557861385],[101.5277099609375,13.406090736389103],[101.53498840332037,13.405581474304142],[101.54110717773443,13.407839775085563],[101.5483169555664,13.396471023559627],[101.54773712158203,13.37615966796875],[101.55245971679682,13.37471008300787],[101.55208587646479,13.36775016784668],[101.5574111938476,13.366781234741211],[101.55780792236322,13.357329368591365],[101.55976104736328,13.352901458740348],[101.55956268310547,13.346729278564453],[101.56272125244169,13.338720321655273],[101.565971374512,13.335612297058105],[101.56523132324213,13.331029891967887],[101.57395172119146,13.32847976684576],[101.58020019531256,13.33240032196045],[101.58425140380865,13.328631401062069],[101.58419036865234,13.320719718933105],[101.59023284912104,13.317120552062931],[101.59369659423845,13.310009956359977],[101.59803009033214,13.310432434082088],[101.60085296630888,13.302021980285758],[101.6134567260745,13.298601150512695],[101.61736297607422,13.301130294799748],[101.62361907959001,13.29685020446783],[101.63295745849604,13.294638633728141],[101.6375732421875,13.290520668029728],[101.64071655273466,13.292020797729492],[101.64742279052746,13.284541130065975],[101.65074920654297,13.283911705017147],[101.65812683105463,13.274991035461426],[101.66879272460949,13.272321701049748],[101.6724090576173,13.261581420898494],[101.67588806152361,13.255230903625545],[101.68356323242188,13.251420021057072],[101.68737030029297,13.24322891235363],[101.689682006836,13.230290412902946],[101.69486999511724,13.221151351928825],[101.70326232910162,13.213171958923454],[101.70758056640625,13.205909729003963],[101.71376037597662,13.20477104187023],[101.71414947509794,13.191720962524528],[101.71673583984375,13.183280944824332],[101.72013092041033,13.179710388183594]]]]},"properties":{"ID_0":228,"ISO":"TH-20","NAME_0":"Thailand","ID_1":12,"NAME_1":"Chon Buri","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ชลบุรี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.18860626220726,10.056940078735408],[99.19139099121111,10.053056716918945],[99.19083404541016,10.048888206482047],[99.18583679199236,10.048609733581657],[99.1849975585938,10.055832862853947],[99.18860626220726,10.056940078735408]]],[[[99.25694274902355,10.259721755981559],[99.26110839843778,10.25777816772461],[99.2609176635745,10.253641128540153],[99.25305175781256,10.252777099609432],[99.25694274902355,10.259721755981559]]],[[[99.3577804565432,10.409723281860352],[99.35028076171875,10.395000457763786],[99.34361267089844,10.391945838928223],[99.3427352905274,10.394662857055664],[99.35138702392572,10.401388168334904],[99.3577804565432,10.409723281860352]]],[[[99.29944610595732,10.450280189514103],[99.29972076416033,10.44444370269781],[99.30333709716814,10.439721107482967],[99.29750061035179,10.434166908264217],[99.29166412353527,10.434445381164608],[99.28833007812506,10.437499046325684],[99.28971862792997,10.443333625793457],[99.29305267334001,10.443056106567326],[99.29389190673851,10.449166297912598],[99.29944610595732,10.450280189514103]]],[[[99.48999786376982,10.85943984985363],[99.4897232055664,10.851943969726506],[99.47694396972656,10.83833312988287],[99.47110748291044,10.840276718139648],[99.47916412353527,10.848334312438965],[99.48306274414068,10.857219696044922],[99.48999786376982,10.85943984985363]]],[[[99.49630737304716,10.988253593444824],[99.49119567871088,10.97550296783453],[99.48948669433611,10.965285301208496],[99.48946380615246,10.948711395263786],[99.49242401123053,10.933751106262207],[99.49639129638672,10.924166679382324],[99.50166320800793,10.915556907653865],[99.50762939453142,10.912226676940975],[99.5094528198245,10.904720306396484],[99.51798248291021,10.90178585052496],[99.51972198486351,10.895833015441951],[99.50777435302746,10.883888244628963],[99.51027679443376,10.876943588256836],[99.50993347167969,10.872640609741325],[99.50638580322271,10.87028026580822],[99.50389099121116,10.864167213439885],[99.50013732910168,10.867179870605582],[99.49651336669933,10.875237464904728],[99.48805236816429,10.881389617920036],[99.48190307617188,10.88772201538086],[99.47611236572277,10.885554313659782],[99.47444152832048,10.881110191345158],[99.46749877929716,10.871390342712402],[99.4605560302735,10.87249946594244],[99.44750213623058,10.87249946594244],[99.44147491455078,10.871023178100586],[99.4382934570313,10.860176086425781],[99.4348907470706,10.857480049133358],[99.4349975585938,10.83972263336193],[99.43250274658203,10.825834274291992],[99.42800140380888,10.816040992736873],[99.42859649658232,10.812220573425293],[99.42350769042986,10.800435066223145],[99.42415618896507,10.7969388961792],[99.41860961914068,10.788055419921818],[99.4178237915039,10.782526016235465],[99.41249084472662,10.775830268859863],[99.41333007812528,10.768055915832576],[99.41217041015653,10.76193904876709],[99.40737915039085,10.757649421691838],[99.39854431152344,10.744101524353141],[99.3941650390625,10.744443893432674],[99.39222717285173,10.737261772155762],[99.3899993896485,10.73527717590332],[99.38549041748075,10.718324661254883],[99.37868499755876,10.706006050109863],[99.37355041503906,10.707304954528922],[99.36508178710966,10.700531959533635],[99.35974121093778,10.69199180603033],[99.35872650146507,10.687838554382324],[99.35974121093778,10.680327415466309],[99.36997985839866,10.677420616149902],[99.36534118652361,10.670080184936637],[99.35812377929688,10.665285110473633],[99.3577804565432,10.675555229187125],[99.3498077392581,10.682921409606877],[99.33898162841791,10.682682037353516],[99.33151245117216,10.679656982421989],[99.32523345947277,10.675388336181754],[99.31597137451172,10.665328025817985],[99.30750274658214,10.649998664856014],[99.30642700195312,10.641779899597282],[99.30174255371122,10.63605976104742],[99.29824066162115,10.628251075744629],[99.29754638671903,10.620923995971623],[99.2843627929688,10.608097076415959],[99.28147888183616,10.602142333984375],[99.28076171875028,10.58924388885498],[99.28416442871116,10.58277797698986],[99.27675628662138,10.574488639831486],[99.27361297607422,10.56333160400402],[99.27416992187517,10.556112289428711],[99.27805328369163,10.553334236145133],[99.27491760253923,10.543221473693848],[99.26515197753918,10.539617538452262],[99.2608413696289,10.536301612853947],[99.25083923339855,10.541570663452092],[99.2427673339846,10.541240692138729],[99.23898315429716,10.536009788513297],[99.23670959472685,10.525719642639217],[99.23805236816435,10.518054962158146],[99.24333190917991,10.508735656738338],[99.25305175781256,10.508609771728572],[99.26239776611334,10.512530326843262],[99.2628784179687,10.50806999206543],[99.25939941406278,10.499691963195858],[99.25361633300787,10.498290061950627],[99.24691009521484,10.493921279907283],[99.24237823486351,10.492684364318848],[99.23806762695324,10.495524406433049],[99.23289489746122,10.495031356811467],[99.22888183593778,10.489972114563045],[99.22750091552757,10.484998703002987],[99.22750091552757,10.475277900695858],[99.23081970214855,10.463920593261776],[99.24149322509777,10.44775104522705],[99.24482727050781,10.444896697998104],[99.24994659423845,10.44530105590826],[99.2572021484375,10.434529304504508],[99.26416778564482,10.427499771118221],[99.2755966186524,10.422308921814022],[99.27581787109403,10.41602706909174],[99.28400421142607,10.410000801086426],[99.28305816650419,10.40250110626215],[99.28021240234386,10.396121025085563],[99.28463745117205,10.383089065551815],[99.28417968750006,10.377303123474178],[99.28555297851574,10.365829467773438],[99.27957153320335,10.359120368957576],[99.2764892578125,10.35374832153326],[99.27243041992205,10.353017807006893],[99.27130126953142,10.35748100280773],[99.2636184692384,10.357431411743164],[99.26206207275419,10.362982749939022],[99.25813293457048,10.363821029663086],[99.25091552734375,10.361310005187931],[99.24807739257818,10.35860919952404],[99.23801422119146,10.34421443939209],[99.23145294189453,10.350600242614803],[99.22994232177734,10.356288909912223],[99.21015167236351,10.369965553283805],[99.20108032226557,10.372870445251522],[99.18456268310553,10.370430946350098],[99.16884613037104,10.36254978179926],[99.16384887695341,10.365450859069767],[99.1614761352539,10.36236953735363],[99.16116333007841,10.356083869934139],[99.1523208618164,10.348339080810547],[99.14904785156267,10.34746170043951],[99.14695739746094,10.342486381530819],[99.15430450439482,10.328580856323242],[99.15062713623053,10.321352005004996],[99.15080261230474,10.314830780029354],[99.14868927001953,10.3115491867066],[99.15473937988276,10.297288894653434],[99.1586303710938,10.29019927978527],[99.16777801513678,10.285311698913688],[99.16651153564482,10.279549598693961],[99.17739105224638,10.275623321533317],[99.18526458740251,10.276182174682674],[99.18911743164062,10.26756668090826],[99.19388580322266,10.265913963317928],[99.20246887207031,10.27252197265625],[99.20793914794933,10.267153739929256],[99.2058486938476,10.254548072815055],[99.20370483398466,10.25037956237793],[99.20777893066423,10.244723320007267],[99.20999908447294,10.238887786865234],[99.21878051757841,10.237080574035758],[99.21867370605469,10.229986190795955],[99.2225112915039,10.226153373718319],[99.22889709472685,10.228412628173885],[99.23949432373053,10.23764610290533],[99.24592590332048,10.236850738525447],[99.24749755859375,10.232500076293945],[99.24083709716803,10.224999427795524],[99.23583221435564,10.224166870117244],[99.22526550292997,10.213932037353572],[99.221923828125,10.215963363647575],[99.21908569335943,10.212099075317383],[99.21337890625006,10.20936393737793],[99.2050323486331,10.21207237243658],[99.20233154296898,10.217229843139705],[99.19580078125,10.215242385864315],[99.19140625,10.207987785339412],[99.19269561767572,10.203755378723088],[99.18765258789085,10.196369171142635],[99.18432617187517,10.186012268066463],[99.18352508544933,10.175808906555233],[99.1769714355471,10.17367076873785],[99.17267608642595,10.162733078003043],[99.17283630371105,10.154560089111328],[99.16835784912115,10.148390769958553],[99.16324615478521,10.14955139160162],[99.15489196777372,10.141460418701229],[99.148979187012,10.127010345459098],[99.14781951904325,10.109713554382324],[99.14962768554688,10.102165222167912],[99.15038299560564,10.092123031616268],[99.15539550781256,10.088234901428336],[99.1572875976563,10.077029228210563],[99.15199279785162,10.071445465087947],[99.15725708007812,10.060818672180233],[99.16931152343756,10.043498039245549],[99.17510986328153,10.041134834289608],[99.18190002441412,10.043110847473258],[99.18253326416044,10.035616874694938],[99.17922973632818,10.029924392700138],[99.1748046875,10.030372619628963],[99.17324066162104,10.024271011352539],[99.17790985107445,10.021558761596737],[99.18025970459013,10.017037391662654],[99.17565917968778,10.007285118103084],[99.17076110839838,10.007268905639762],[99.16430664062517,10.01283168792736],[99.16062164306652,10.011355400085506],[99.15624237060558,10.006332397460994],[99.15242004394543,9.995806694030705],[99.15066528320318,9.987750053405875],[99.15139007568365,9.973889350891227],[99.15361022949236,9.96500015258789],[99.1591796875,9.952325820922852],[99.16110992431646,9.945556640625114],[99.16027832031267,9.930833816528377],[99.16166687011719,9.92694473266613],[99.16222381591797,9.914443969726676],[99.16080474853544,9.907485961914062],[99.15693664550804,9.902499198913688],[99.15750122070335,9.892500877380485],[99.16055297851585,9.875832557678223],[99.16578674316418,9.858380317687988],[99.16277313232439,9.857500076293888],[99.16313934326189,9.848139762878532],[99.1588897705081,9.848333358764705],[99.15027618408209,9.844720840454045],[99.14694213867205,9.841939926147575],[99.14221954345709,9.834165573120117],[99.1386108398438,9.823333740234375],[99.1386108398438,9.805000305175724],[99.14108276367193,9.790999412536735],[99.14083099365251,9.785833358764762],[99.14360809326178,9.766388893127498],[99.14444732666033,9.764720916748047],[99.1463851928711,9.740833282470703],[99.14861297607433,9.732222557067928],[99.15750122070335,9.71250057220459],[99.15922546386741,9.703375816345215],[99.15547943115246,9.702070236206112],[99.12966918945335,9.702911376953239],[99.12471008300804,9.701391220092717],[99.12027740478516,9.694069862365723],[99.11266326904303,9.693940162658748],[99.10830688476585,9.699930191040153],[99.10278320312506,9.703451156616325],[99.07850646972656,9.703430175781307],[99.07467651367188,9.697710037231445],[99.07212066650402,9.690681457519588],[99.07441711425793,9.686331748962346],[99.08065032959007,9.685278892517147],[99.07952117919928,9.679071426391658],[99.0853881835938,9.673712730407829],[99.09040069580107,9.672241210937443],[99.09594726562528,9.66266059875494],[99.09401702880865,9.657750129699707],[99.0841674804687,9.654060363769588],[99.08258056640653,9.652150154113713],[99.07215881347673,9.651961326599235],[99.07184600830084,9.654339790344295],[99.05207061767607,9.667000770568848],[99.05158233642595,9.67388057708746],[99.04222869873064,9.678669929504338],[99.03842163085955,9.688131332397518],[99.03125000000023,9.694830894470272],[99.02173614501982,9.697270393371639],[99.01728820800787,9.694430351257438],[99.00605010986334,9.701641082763729],[99.00633239746105,9.709600448608398],[99.00431823730474,9.710251808166504],[98.99639892578136,9.7029905319215],[98.98542022705078,9.71034145355236],[98.97989654541016,9.709490776062125],[98.97232818603521,9.712190628051758],[98.96750640869146,9.710741996765194],[98.96212005615251,9.711829185485897],[98.95713806152338,9.72062015533453],[98.94577789306646,9.720131874084586],[98.93843078613293,9.722071647644157],[98.92881011962896,9.720521926879996],[98.92118835449241,9.723860740661735],[98.91131591796903,9.730690956115723],[98.90522766113293,9.733670234680233],[98.89949798584013,9.732350349426326],[98.89173889160173,9.733900070190487],[98.88494110107428,9.725799560546989],[98.87809753417974,9.730721473693904],[98.87120819091803,9.730531692504883],[98.8651809692384,9.727510452270565],[98.86218261718767,9.722579956054801],[98.86190795898466,9.717950820922852],[98.85443878173851,9.70897102355957],[98.84435272216825,9.70346927642828],[98.83699798584001,9.704649925231877],[98.83181762695307,9.702911376953239],[98.81932830810553,9.702630996704045],[98.81555938720732,9.696021080017204],[98.8045883178711,9.688151359558049],[98.79521179199236,9.68754863739025],[98.79142761230469,9.683151245117188],[98.78740692138689,9.687310218811149],[98.78881072998053,9.69025039672863],[98.78221130371105,9.692159652710018],[98.77847290039062,9.688340187072754],[98.7701873779298,9.687849998474235],[98.76757812500017,9.685441017150822],[98.76657104492199,9.67158031463623],[98.76821136474615,9.669450759887695],[98.76686096191412,9.654171943664608],[98.76461791992193,9.643460273742733],[98.76841735839866,9.636061668396053],[98.766166687012,9.628142356872672],[98.75521087646484,9.617201805114803],[98.74990844726585,9.610770225525016],[98.7470321655274,9.605150222778263],[98.73876190185564,9.601080894470158],[98.7361679077149,9.603520393371525],[98.73645019531244,9.609130859375],[98.73372650146513,9.612410545349178],[98.72885894775408,9.613251686096248],[98.72193145751964,9.628230094909782],[98.7149658203125,9.628398895263729],[98.70845794677734,9.630120277404728],[98.6996307373048,9.63517856597906],[98.69586944580078,9.638771057128963],[98.6873168945313,9.641160011291618],[98.68650054931658,9.645130157470703],[98.67263793945318,9.654331207275447],[98.66403198242188,9.653291702270508],[98.65406799316423,9.65448093414318],[98.65258026123047,9.658909797668514],[98.6473770141601,9.661890983581543],[98.65249633789091,9.666021347045955],[98.65402984619152,9.671810150146484],[98.65962982177734,9.676969528198185],[98.65930175781256,9.685020446777287],[98.6564331054688,9.687761306762695],[98.64655303955084,9.691900253295898],[98.65051269531256,9.700089454650993],[98.64340209960955,9.706871986389217],[98.63936614990229,9.71322154998785],[98.64025115966803,9.716620445251579],[98.63800048828153,9.721652030944881],[98.64137268066412,9.732220649719352],[98.64200592041044,9.738260269165153],[98.63405609130876,9.74473953247076],[98.63179016113281,9.750160217285213],[98.63286590576183,9.756641387939396],[98.6268310546875,9.764020919799862],[98.63065338134766,9.765098571777457],[98.63339996337919,9.769040107727164],[98.6297531127932,9.778541564941406],[98.63565063476568,9.78836917877203],[98.64147186279291,9.791152000427303],[98.643569946289,9.789750099182243],[98.64987945556658,9.795621871948242],[98.65656280517595,9.804521560668945],[98.66371154785162,9.807270050048885],[98.66458892822266,9.81514930725092],[98.6708374023437,9.821740150451717],[98.67865753173822,9.827239990234432],[98.68270111084001,9.834389686584416],[98.69045257568388,9.831561088562125],[98.6929397583009,9.832689285278434],[98.69767761230497,9.841769218444881],[98.70569610595732,9.852411270141602],[98.7157211303711,9.860309600830135],[98.72136688232433,9.867439270019531],[98.72209167480497,9.877129554748478],[98.7197875976563,9.882620811462402],[98.72003173828136,9.889201164245605],[98.72204589843756,9.89409160614025],[98.7288818359375,9.899189949035645],[98.72982788085938,9.901910781860465],[98.73899841308594,9.906731605529785],[98.74684906005865,9.917551040649528],[98.7515258789062,9.917741775512809],[98.75580596923834,9.933500289916935],[98.76740264892578,9.939900398254451],[98.7736129760745,9.946110725402832],[98.78164672851574,9.949610710144157],[98.78964233398449,9.945180892944336],[98.79604339599615,9.940071105957031],[98.80245208740229,9.942329406738224],[98.81105041503923,9.93674087524414],[98.8145599365235,9.936180114746207],[98.82390594482428,9.947299957275447],[98.82302856445324,9.958980560302848],[98.82994079589861,9.970759391784725],[98.8300399780274,9.977471351623535],[98.83461761474615,9.979599952697754],[98.83695220947277,9.984112739563045],[98.8420333862307,9.98705101013195],[98.84485626220703,9.993561744689998],[98.85314178466825,9.992880821228027],[98.85813140869152,9.996411323547477],[98.8645629882813,9.992679595947322],[98.87152099609392,9.998970985412711],[98.87625122070324,10.000070571899471],[98.88056945800804,10.004289627075252],[98.88532257080084,10.00625038146984],[98.88764190673834,10.014130592346191],[98.9013290405274,10.025650024414176],[98.90422058105491,10.025251388549748],[98.90583038330072,10.032589912414608],[98.90077209472662,10.045392036438102],[98.9020767211914,10.054829597473145],[98.89273071289062,10.064299583435115],[98.88849639892595,10.060539245605582],[98.88152313232445,10.064591407775993],[98.87815856933605,10.0614013671875],[98.87329864501959,10.06344032287609],[98.86776733398443,10.063089370727653],[98.86550140380882,10.06034088134777],[98.86106872558594,10.063611030578613],[98.84687805175793,10.06182003021246],[98.83898925781273,10.062700271606559],[98.83586120605486,10.06581974029541],[98.83983612060541,10.071411132812614],[98.84584045410162,10.07654094696045],[98.84704589843778,10.082509994506836],[98.85128784179705,10.084590911865234],[98.85565948486322,10.083459854126033],[98.86244964599632,10.093301773071289],[98.86281585693365,10.098361015319881],[98.8659210205081,10.104141235351562],[98.86563110351562,10.109201431274471],[98.86305999755888,10.115359306335563],[98.85872650146501,10.120091438293457],[98.86042785644526,10.125029563903752],[98.85894012451189,10.128771781921387],[98.8609008789063,10.132489204406738],[98.868148803711,10.133781433105582],[98.86783599853544,10.140810012817383],[98.869857788086,10.145211219787654],[98.86975860595714,10.154891014099178],[98.87706756591797,10.156209945678768],[98.8821487426759,10.155430793762264],[98.88912963867193,10.160260200500431],[98.88938140869169,10.167941093444881],[98.8819198608399,10.175900459289494],[98.87789154052757,10.177801132202262],[98.87703704834001,10.181879997253475],[98.8708419799807,10.185851097107047],[98.87460327148438,10.193141937255916],[98.87448883056669,10.203099250793514],[98.87889099121122,10.211021423339957],[98.88363647460943,10.213630676269588],[98.89134979248064,10.225790023803768],[98.88893890380865,10.231890678405875],[98.89038085937494,10.23572921752941],[98.89933776855463,10.23994064331066],[98.89975738525408,10.245830535888786],[98.89720916748075,10.251571655273438],[98.90377044677734,10.2544908523559],[98.9091415405274,10.268481254577694],[98.90136718750006,10.272691726684684],[98.89904785156256,10.278679847717285],[98.90130615234375,10.28435039520275],[98.90103912353527,10.289710998535156],[98.90659332275385,10.299541473388672],[98.90991973876959,10.299671173095646],[98.91462707519548,10.305451393127498],[98.91491699218756,10.309471130371207],[98.91826629638672,10.315259933471737],[98.92415618896501,10.319041252136287],[98.92632293701178,10.323970794677791],[98.93028259277344,10.325730323791447],[98.93247222900419,10.332171440124569],[98.93987274169928,10.340841293335018],[98.94346618652344,10.351031303405819],[98.94271850585943,10.35858154296875],[98.9358978271485,10.361020088195858],[98.93158721923845,10.364719390869084],[98.93235015869158,10.369160652160645],[98.93762207031278,10.377902030944824],[98.93746948242199,10.383669853210506],[98.93031311035162,10.385099411010799],[98.92888641357433,10.394590377807674],[98.92488098144543,10.39603042602539],[98.91610717773449,10.394879341125431],[98.90847778320324,10.397781372070426],[98.90129089355469,10.398659706115723],[98.90489196777361,10.40495967864996],[98.90515136718756,10.409900665283317],[98.89369964599615,10.41621017456049],[98.8950958251956,10.422901153564453],[98.89377593994169,10.428770065307674],[98.8966522216798,10.431600570678768],[98.89549255371122,10.440299987793082],[98.8872833251956,10.451319694519043],[98.88861083984403,10.454690933227482],[98.88503265380854,10.45853137969982],[98.89473724365246,10.47465991973877],[98.89575958251953,10.483370780944824],[98.90780639648443,10.489319801330623],[98.91063690185547,10.489109992980957],[98.91201019287115,10.49531173706066],[98.91835784912138,10.507331848144531],[98.926498413086,10.513289451599178],[98.93666076660162,10.512789726257381],[98.9405059814456,10.516111373901424],[98.94535827636719,10.5173597335816],[98.9447402954101,10.521011352539006],[98.95208740234398,10.534720420837346],[98.96269989013689,10.539918899536246],[98.95848083496111,10.54515171051031],[98.95468139648455,10.546829223632812],[98.94798278808588,10.55292129516613],[98.9412994384765,10.569290161132812],[98.94439697265625,10.570170402526855],[98.95488739013672,10.578429222106934],[98.95990753173851,10.583709716796932],[98.9615707397461,10.588630676269588],[98.96306610107439,10.599919319152775],[98.96481323242188,10.60492038726818],[98.96121978759771,10.607749938964957],[98.95971679687523,10.613141059875488],[98.9554672241211,10.613830566406307],[98.94731140136724,10.610120773315487],[98.9453201293947,10.611517906189022],[98.94857788085955,10.630551338195858],[98.95075988769554,10.63707160949707],[98.94808197021507,10.639001846313477],[98.94702911376947,10.644691467285213],[98.93289184570324,10.649339675903377],[98.9285888671875,10.648140907287598],[98.92546844482416,10.655751228332633],[98.92623901367182,10.662500381469783],[98.92849731445324,10.665150642394963],[98.93017578125006,10.672069549560604],[98.92382049560547,10.678631782531852],[98.91889190673834,10.679809570312557],[98.90962982177746,10.677652359008732],[98.90870666503923,10.680980682373047],[98.91110992431669,10.685400962829533],[98.90516662597679,10.690120697021484],[98.90071868896484,10.684981346130485],[98.89560699462896,10.681749343872127],[98.89006042480469,10.69480037689209],[98.89924621582037,10.70597171783453],[98.89855194091808,10.712570190429688],[98.90188598632812,10.714680671692008],[98.90217590332043,10.719070434570312],[98.90550994873047,10.7227401733399],[98.90522766113293,10.729121208190975],[98.9114379882813,10.73640060424816],[98.91042327880876,10.740701675415096],[98.91438293457043,10.747591018676815],[98.90995025634771,10.753141403198242],[98.899917602539,10.751910209655762],[98.8948364257813,10.756060600280875],[98.89456176757824,10.761540412902889],[98.89025878906256,10.76965141296398],[98.88932037353521,10.773949623107853],[98.8935165405274,10.774941444396973],[98.89868164062523,10.779891014099121],[98.90286254882818,10.77832126617443],[98.90621185302729,10.784011840820426],[98.90538787841825,10.791860580444336],[98.91118621826189,10.798871994018498],[98.91509246826195,10.807271003723145],[98.91497039794933,10.813861846923942],[98.92115783691412,10.81942081451416],[98.92382049560547,10.82660007476801],[98.93135833740246,10.819311141967773],[98.93707275390653,10.818051338195858],[98.93634796142572,10.812531471252441],[98.94342041015642,10.812749862671012],[98.94727325439453,10.811200141906852],[98.9518661499024,10.813141822814998],[98.95907592773455,10.811739921569938],[98.96591186523432,10.819952011108455],[98.96514129638666,10.822360992431697],[98.97515106201178,10.83191013336193],[98.98320007324224,10.831159591674805],[98.9897003173831,10.84034061431879],[98.9971466064456,10.84646034240717],[99.0016784667971,10.847250938415584],[99.01159667968773,10.856710433959961],[99.01158905029303,10.872530937194881],[99.00914764404325,10.87749099731451],[99.00078582763683,10.881120681762809],[99.0062026977539,10.8923597335816],[99.00335693359375,10.899662017822322],[99.00347137451183,10.906880378723201],[98.99825286865257,10.911119461059513],[99.00070190429693,10.913290977478141],[98.99964904785168,10.922941207885799],[99.00401306152372,10.92988109588623],[99.00331115722673,10.934100151062012],[99.01200866699247,10.941961288452148],[99.01600646972662,10.955830574035588],[99.0203781127932,10.965519905090446],[99.02395629882812,10.969451904296875],[99.03089904785185,10.968330383300781],[99.03351593017584,10.963410377502441],[99.04039001464866,10.961021423339957],[99.05036163330107,10.96067047119135],[99.05130004882841,10.953829765319938],[99.05451965332054,10.947891235351506],[99.0575790405274,10.946379661560059],[99.06117248535162,10.950559616088867],[99.0811004638673,10.955120086669979],[99.08444976806663,10.96354198455822],[99.09043884277355,10.96631145477295],[99.0941390991211,10.972539901733455],[99.09333801269548,10.977560997009391],[99.09565734863281,10.984671592712346],[99.10092163085949,10.99180126190197],[99.1025390625,10.999541282653752],[99.10308837890625,11.012581825256348],[99.10784912109392,11.012989997863883],[99.11447906494152,11.019371986389217],[99.11865234375028,11.020631790161133],[99.12880706787126,11.029060363769588],[99.13475036621094,11.027881622314567],[99.14707946777355,11.029109954833984],[99.15123748779303,11.032372474670524],[99.15145874023466,11.020670890808105],[99.14745330810575,11.015610694885197],[99.15470123291044,11.011809349060059],[99.15727996826172,11.012530326843319],[99.16526794433594,11.010100364685059],[99.1685409545899,11.004180908203125],[99.1852264404298,10.995771408081055],[99.19319152832037,10.99745082855219],[99.20050048828136,10.995540618896484],[99.19906616210943,10.991290092468262],[99.20894622802734,10.988021850585994],[99.2162704467774,10.981790542602596],[99.22294616699224,10.982672691345272],[99.23204803466797,10.978030204773006],[99.23722839355491,10.979230880737362],[99.2409896850586,10.97721195220953],[99.24156188964844,10.971591949463004],[99.24521636962896,10.971990585327205],[99.24967956542997,10.96825122833252],[99.25627899169928,10.968132019042969],[99.25824737548857,10.965600013733024],[99.26706695556652,10.96735858917242],[99.27256011962919,10.96550178527832],[99.27519989013695,10.960790634155387],[99.2816162109375,10.957478523254451],[99.29091644287104,10.969009399414176],[99.2996215820313,10.9681911468507],[99.30771636962908,10.965201377868766],[99.31144714355474,10.967930793762264],[99.32756042480486,10.96897983551031],[99.33338165283209,10.965230941772461],[99.33685302734403,10.965741157531681],[99.34358215332048,10.97400093078619],[99.34587097167986,10.975030899047852],[99.3608016967774,10.968648910522461],[99.3695983886721,10.968050003051815],[99.37384033203153,10.969640731811523],[99.37941741943354,10.962920188903752],[99.3998794555664,10.956579208374137],[99.40889739990257,10.955019950866642],[99.41494750976562,10.958910942077694],[99.42690277099621,10.969550132751579],[99.44042205810575,10.970600128173885],[99.46237945556652,10.988341331481934],[99.47009277343756,10.99201965332037],[99.47360992431669,10.991971969604549],[99.47921752929688,10.988559722900504],[99.486312866211,10.989560127258414],[99.49295806884766,10.987301826476994],[99.49630737304716,10.988253593444824]]]]},"properties":{"ID_0":228,"ISO":"TH-86","NAME_0":"Thailand","ID_1":13,"NAME_1":"Chumphon","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ชุมพร","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.66461181640653,17.01748085021984],[103.6741485595706,17.021701812744254],[103.68202972412126,17.0298309326173],[103.68756103515642,17.026630401611385],[103.69278717041021,17.031652450561637],[103.6969909667971,17.031719207763672],[103.70430755615246,17.025609970092717],[103.7080688476563,17.019971847534237],[103.71502685546892,17.016059875488395],[103.72387695312506,17.01460075378418],[103.72679901123075,17.01250076293951],[103.73163604736345,17.004261016845703],[103.73232269287138,16.99854850769043],[103.72860717773438,16.99588012695324],[103.72347259521484,16.98846054077154],[103.72603607177763,16.97986030578619],[103.72872924804699,16.980270385742188],[103.73628234863304,16.987390518188477],[103.74112701416027,16.985691070556584],[103.74498748779314,16.97691917419445],[103.7452926635745,16.970077514648494],[103.75299835205095,16.971878051757812],[103.7569732666015,16.96969985961914],[103.7641296386721,16.9625301361084],[103.77300262451166,16.96550941467291],[103.78518676757824,16.957149505615234],[103.78679656982422,16.942590713500977],[103.79142761230474,16.938802719116325],[103.78238677978516,16.934698104858455],[103.78262329101568,16.930719375610295],[103.77649688720703,16.926889419555607],[103.77310180664085,16.92197990417492],[103.78201293945312,16.922138214111442],[103.782958984375,16.91563034057623],[103.786148071289,16.90566062927246],[103.79100799560553,16.904069900512695],[103.7945861816408,16.896041870117244],[103.79187774658197,16.88766860961914],[103.8030624389649,16.883560180664006],[103.80906677246111,16.884531021118278],[103.80918884277372,16.88101959228527],[103.8140029907226,16.874790191650447],[103.8221130371096,16.874799728393555],[103.82778930664062,16.865520477294865],[103.8349227905274,16.86708068847662],[103.83986663818365,16.865081787109375],[103.84052276611322,16.858360290527457],[103.83879089355463,16.847940444946232],[103.84250640869146,16.846031188964844],[103.8465423583985,16.838979721069393],[103.86122131347679,16.834640502929744],[103.86550140380854,16.831310272216854],[103.87061309814482,16.831260681152457],[103.87516021728521,16.825899124145565],[103.87489318847656,16.818321228027287],[103.88085937500023,16.817911148071346],[103.88474273681652,16.81406021118164],[103.89147186279314,16.8130207061767],[103.89517211914085,16.807859420776424],[103.90307617187494,16.80247116088873],[103.92160797119158,16.79527091979986],[103.92524719238281,16.787229537963867],[103.92987823486351,16.78428077697754],[103.93453979492182,16.783979415893555],[103.93885803222662,16.780042648315487],[103.9393386840822,16.774190902710075],[103.94419097900413,16.77069091796875],[103.95352172851568,16.774820327758846],[103.95561218261724,16.77898979187006],[103.95140838623053,16.784868240356445],[103.9566192626956,16.797840118408203],[103.95581054687506,16.805860519409293],[103.95836639404308,16.817251205444393],[103.96208953857428,16.822261810302734],[103.96463775634794,16.817310333251953],[103.97196960449236,16.80932044982916],[103.97738647460943,16.814939498901424],[103.98034667968767,16.82092094421398],[103.98049163818371,16.82855033874523],[103.98284149169939,16.83492088317871],[103.98905181884794,16.833209991455135],[103.99919891357416,16.83473014831543],[104.00348663330084,16.8404598236084],[104.01116943359403,16.842720031738395],[104.01358032226562,16.847820281982422],[104.01750946044916,16.849317550659293],[104.02417755126964,16.855791091918945],[104.02980041503912,16.855619430542106],[104.0349960327149,16.85182189941412],[104.03407287597685,16.844129562377987],[104.04238891601568,16.838691711425895],[104.04451751709007,16.84404945373541],[104.04926300048834,16.84616279602062],[104.05191802978516,16.840759277343807],[104.05751800537138,16.84072113037115],[104.05944824218778,16.83753013610834],[104.06799316406256,16.835189819335994],[104.07324218750017,16.819898605346737],[104.07440185546875,16.816158294677734],[104.07916259765642,16.810871124267635],[104.08748626709013,16.806161880493107],[104.09513092041027,16.80916023254406],[104.0961685180664,16.80447959899908],[104.09398651123058,16.794780731201172],[104.09612274169939,16.788761138916072],[104.10119628906278,16.782110214233455],[104.10917663574241,16.77618980407715],[104.11630249023449,16.766599655151367],[104.11808776855469,16.760509490966854],[104.1221313476563,16.75601005554205],[104.12747192382818,16.756099700927734],[104.13381958007841,16.759391784667912],[104.1390609741211,16.755279541015682],[104.13429260253906,16.7479305267334],[104.13423919677729,16.73579025268566],[104.13655853271501,16.730880737304744],[104.14282226562494,16.725851058960018],[104.1533508300783,16.715251922607422],[104.1543197631836,16.70288276672369],[104.15918731689482,16.696540832519588],[104.17301940917969,16.694740295410156],[104.1702423095706,16.687410354614315],[104.16693878173834,16.685800552368107],[104.1647415161134,16.6795597076416],[104.16967010498075,16.67243003845215],[104.18418121337919,16.66789054870611],[104.18820190429699,16.664028167724666],[104.18836975097685,16.658760070800838],[104.1827392578125,16.65315055847168],[104.1787719726563,16.645690917968864],[104.17896270751959,16.63622283935547],[104.18321990966825,16.622930526733512],[104.18144226074224,16.613681793212947],[104.17777252197283,16.608749389648438],[104.18071746826178,16.600830078125114],[104.18057250976574,16.59633064270031],[104.1939926147461,16.59415054321289],[104.20912933349615,16.58066940307623],[104.20796966552757,16.57264137268072],[104.21099090576172,16.56170082092285],[104.21926116943388,16.560050964355582],[104.21991729736345,16.55636978149414],[104.22563934326189,16.552431106567496],[104.22801971435553,16.548540115356445],[104.22425842285168,16.539550781250057],[104.2238159179688,16.528520584106445],[104.2248077392581,16.526300430297965],[104.2340927124024,16.523611068725586],[104.24098205566412,16.519369125366325],[104.2431182861331,16.513301849365234],[104.24166870117205,16.509569168090763],[104.2413864135745,16.492130279541016],[104.23821258544939,16.483419418335018],[104.22975921630888,16.472560882568473],[104.23023223876953,16.467620849609375],[104.23512268066418,16.458030700683537],[104.24131774902344,16.45345115661621],[104.23950958251964,16.430469512939396],[104.24015808105469,16.42739105224615],[104.23612213134783,16.427560806274357],[104.22370147705072,16.435260772705078],[104.21997833251959,16.435310363769645],[104.20849609375,16.429540634155387],[104.19863128662132,16.428369522094727],[104.18681335449224,16.431768417358455],[104.17932891845703,16.441019058227596],[104.17514801025396,16.443420410156307],[104.16996002197266,16.442739486694336],[104.16575622558611,16.439880371093864],[104.16072845459013,16.44038009643549],[104.15534973144537,16.436330795288143],[104.1473999023437,16.434621810913143],[104.14792633056669,16.427080154419002],[104.14347839355474,16.426349639892635],[104.13796997070335,16.422639846801758],[104.13170623779303,16.425502777099553],[104.12101745605474,16.423370361328125],[104.10782623291021,16.41916084289545],[104.10115051269537,16.418651580810547],[104.09597778320312,16.412820816040153],[104.08934020996116,16.412410736083984],[104.08705902099615,16.407939910888786],[104.08258056640642,16.409429550170955],[104.07621002197294,16.406362533569393],[104.07026672363304,16.405900955200252],[104.07047271728521,16.398622512817383],[104.06587219238304,16.394861221313533],[104.05905151367216,16.39480972290039],[104.05274963378935,16.39291000366211],[104.0492019653322,16.389560699462947],[104.04432678222679,16.39073944091797],[104.04206085205084,16.394140243530273],[104.04382324218761,16.39969062805187],[104.04180908203125,16.40212059020996],[104.04289245605463,16.412008285522404],[104.03820800781256,16.413948059082145],[104.04212188720697,16.42494964599615],[104.04048156738287,16.43465042114252],[104.03237915039074,16.44147109985363],[104.02703094482433,16.438930511474666],[104.01232147216825,16.43980979919445],[104.00971984863298,16.441719055175838],[103.99565124511719,16.442720413208065],[103.98977661132835,16.434761047363224],[103.9808807373048,16.430030822753906],[103.97171783447277,16.431209564209098],[103.9511184692384,16.4406795501709],[103.94442749023466,16.44025993347168],[103.93405151367193,16.43335914611822],[103.930419921875,16.43305015563965],[103.92485046386736,16.436660766601506],[103.91719055175776,16.43702125549322],[103.91699218749994,16.443149566650447],[103.91319274902338,16.45061111450201],[103.90944671630865,16.449640274047965],[103.90672302246111,16.444982528686637],[103.90216827392578,16.44496917724615],[103.9001922607423,16.448440551757926],[103.88996124267578,16.451080322265682],[103.88086700439476,16.460269927978516],[103.86727142333984,16.468639373779297],[103.86033630371105,16.466220855712947],[103.85056304931646,16.460269927978516],[103.83895111084013,16.460950851440487],[103.83297729492193,16.463439941406307],[103.83007049560547,16.467470169067383],[103.82100677490263,16.467309951782283],[103.8134994506836,16.463138580322266],[103.80908203125017,16.452329635620174],[103.79718780517607,16.447130203247127],[103.78553009033232,16.438198089599666],[103.78317260742188,16.433870315551758],[103.77806854248053,16.433521270751896],[103.77326202392584,16.430780410766715],[103.77234649658209,16.425920486450252],[103.76805114746111,16.42123985290533],[103.76164245605474,16.418741226196403],[103.74350738525396,16.408781051635742],[103.73847961425776,16.405210494995117],[103.7374114990235,16.397621154785156],[103.71913146972662,16.385589599609375],[103.70865631103521,16.384822845459098],[103.70552825927734,16.38289070129406],[103.7010116577149,16.37532043457037],[103.70291137695335,16.37220954895031],[103.71054840087896,16.36561965942377],[103.71264648437506,16.36211013793951],[103.72618865966803,16.34888267517084],[103.73010253906267,16.34204292297369],[103.73075866699241,16.33763122558605],[103.72622680664091,16.330829620361385],[103.72706604003923,16.32691955566412],[103.74031066894537,16.31622123718273],[103.7559432983399,16.302732467651367],[103.7580184936524,16.29975128173828],[103.75801086425787,16.29224967956543],[103.75379943847656,16.28483963012701],[103.75699615478533,16.272611618041992],[103.75444030761747,16.25939750671398],[103.74935913085955,16.25354194641119],[103.73915863037115,16.246400833129883],[103.73863983154308,16.238769531250057],[103.73494720459007,16.228981018066406],[103.7362289428711,16.22174072265625],[103.73461151123075,16.219699859619084],[103.72634124755865,16.21962165832531],[103.71865081787126,16.216400146484375],[103.71402740478544,16.21647071838379],[103.70478057861328,16.220638275146598],[103.6936416625976,16.223369598388672],[103.69232940673845,16.221380233764705],[103.69975280761713,16.217140197753906],[103.69721221923834,16.213291168212947],[103.68772888183588,16.21599960327154],[103.67891693115263,16.21380043029785],[103.67597198486328,16.21013069152832],[103.67137145996111,16.214721679687557],[103.6726531982423,16.21862983703619],[103.66642761230469,16.219499588012695],[103.66327667236357,16.212459564208928],[103.66697692871111,16.206600189208984],[103.67829895019554,16.20086097717291],[103.67230224609392,16.195978164672965],[103.6676559448245,16.197101593017635],[103.6646804809572,16.191190719604492],[103.65843963623053,16.192260742187557],[103.65468597412138,16.19656944274908],[103.65361022949236,16.188091278076172],[103.64814758300787,16.19098091125494],[103.64388275146501,16.190210342407283],[103.64054107666038,16.185340881347656],[103.63323211669922,16.188779830932674],[103.63236236572271,16.198209762573242],[103.62991333007841,16.203081130981445],[103.62043762207048,16.215021133422965],[103.61138153076178,16.216619491577205],[103.60307312011736,16.213739395141545],[103.60452270507841,16.21088027954113],[103.61309051513678,16.212909698486385],[103.61469268798822,16.2080917358399],[103.61988830566406,16.20509910583496],[103.62062835693376,16.20076179504389],[103.61508178710955,16.19741058349615],[103.60974121093767,16.198549270629883],[103.60730743408203,16.192150115966854],[103.60047149658209,16.191030502319393],[103.60029602050804,16.198608398437614],[103.59646606445318,16.19993972778326],[103.59541320800776,16.19378089904785],[103.59095764160162,16.192699432373104],[103.56729125976585,16.200902938842773],[103.55615234375017,16.201210021972713],[103.55123901367188,16.2065105438233],[103.55673217773455,16.20751762390148],[103.55467224121094,16.21203994750988],[103.54516601562523,16.21191978454584],[103.5403900146485,16.21006011962885],[103.53813934326178,16.2134304046632],[103.5424575805664,16.2168483734132],[103.54294586181652,16.22052192687994],[103.53402709960955,16.216619491577205],[103.5317611694336,16.208488464355582],[103.52877807617193,16.206331253051758],[103.5278778076173,16.200479507446346],[103.52361297607445,16.198699951171932],[103.52281951904297,16.193767547607365],[103.51763916015642,16.194799423217773],[103.51418304443376,16.197862625122184],[103.51045989990257,16.19629096984869],[103.50553131103544,16.197690963745117],[103.50341033935553,16.201440811157283],[103.50640106201172,16.205961227417106],[103.49829101562528,16.20611953735363],[103.49682617187517,16.200710296630916],[103.48934936523449,16.204969406127987],[103.48265838623075,16.205871582031193],[103.4738159179688,16.194650650024528],[103.47180938720714,16.189361572265682],[103.46785736084001,16.191101074218807],[103.46601867675804,16.186611175537166],[103.45522308349604,16.179971694946232],[103.45202636718767,16.18960952758789],[103.44712066650396,16.19648170471197],[103.45294952392572,16.201650619506836],[103.44367218017584,16.20280075073248],[103.44655609130882,16.212570190429688],[103.45012664794922,16.214759826660213],[103.44880676269531,16.220777511596737],[103.44489288330107,16.220111846923828],[103.44071197509777,16.222660064697322],[103.43504333496111,16.230779647827262],[103.43000030517607,16.23459815979004],[103.4165878295899,16.23784828186041],[103.41285705566435,16.247909545898494],[103.4070129394533,16.25550079345703],[103.41107940673851,16.259849548339787],[103.40986633300798,16.270830154418945],[103.41493225097685,16.279739379882812],[103.40886688232433,16.28737068176264],[103.40023803710943,16.291650772094783],[103.39682006835966,16.295860290527457],[103.38713836669916,16.296791076660213],[103.38070678710938,16.295801162719727],[103.37052154541027,16.297729492187557],[103.35485076904325,16.305589675903377],[103.35264587402361,16.309471130371094],[103.35166931152338,16.31936073303234],[103.35070800781244,16.342809677124023],[103.34777069091803,16.356050491333008],[103.34207916259794,16.361061096191463],[103.33325195312506,16.36234092712408],[103.32993316650408,16.36478996276861],[103.3231201171875,16.36629295349121],[103.31122589111322,16.363670349121094],[103.30255126953148,16.368339538574332],[103.29891967773443,16.375640869140625],[103.29756164550781,16.388750076294002],[103.29351043701189,16.393299102783203],[103.2865600585938,16.393310546875114],[103.27609252929716,16.382961273193303],[103.2666091918947,16.376449584960938],[103.24987030029297,16.375738143921012],[103.24572753906256,16.373752593994197],[103.22203826904303,16.36848068237299],[103.19734954833979,16.363550186157283],[103.17845153808605,16.361061096191463],[103.17533874511741,16.369569778442326],[103.1686019897461,16.375940322876033],[103.16983795166044,16.380952835083065],[103.1658477783206,16.386079788208065],[103.16687011718767,16.39614105224615],[103.17259979248064,16.40763092041027],[103.17607879638678,16.40715980529785],[103.17639160156267,16.418430328369254],[103.18282318115263,16.425540924072266],[103.18656921386724,16.4366512298584],[103.18485260009771,16.440719604492188],[103.18563079834007,16.447019577026424],[103.17215728759777,16.460580825805664],[103.1692504882813,16.467050552368164],[103.16915893554705,16.475368499755916],[103.16110992431635,16.487859725952205],[103.1611404418947,16.49586105346691],[103.1629486083985,16.499982833862305],[103.1690521240235,16.504890441894645],[103.17234039306669,16.517431259155387],[103.17888641357439,16.523750305175838],[103.1802062988283,16.529790878295955],[103.18624877929716,16.539381027221793],[103.18911743164091,16.551921844482536],[103.18578338623047,16.56905174255371],[103.18051147460943,16.583459854126033],[103.17806243896513,16.58556175231945],[103.17296600341814,16.59469985961914],[103.16990661621111,16.60318183898937],[103.17085266113276,16.606611251831055],[103.19078063964866,16.620801925659237],[103.19738769531267,16.626510620117188],[103.19724273681646,16.629550933838004],[103.19306182861334,16.63932991027832],[103.19019317626959,16.640380859375],[103.18000030517572,16.63909912109375],[103.16201782226591,16.640407562255973],[103.15473937988304,16.642061233520565],[103.15323638916021,16.658180236816463],[103.16037750244158,16.668510437011776],[103.1607131958009,16.67379188537592],[103.15574645996122,16.682430267333928],[103.1516189575197,16.685350418090877],[103.15136718750011,16.691780090332088],[103.14826202392584,16.699220657348633],[103.15139007568354,16.707080841064453],[103.15209197998053,16.715288162231502],[103.1560897827149,16.716339111328125],[103.15908813476562,16.720701217651424],[103.16052246093761,16.731849670410213],[103.1492309570313,16.74497032165533],[103.1509399414063,16.748470306396484],[103.14840698242188,16.75214958190918],[103.15300750732428,16.759229660034237],[103.16040802001953,16.760469436645565],[103.16867065429693,16.764701843261832],[103.17633056640653,16.771820068359375],[103.17758178710938,16.77828025817871],[103.18506622314476,16.78684997558588],[103.18392944335943,16.7907390594483],[103.18591308593744,16.794780731201172],[103.18329620361328,16.798700332641715],[103.18723297119152,16.804641723632812],[103.18805694580078,16.817079544067383],[103.18602752685553,16.82298088073736],[103.18135833740251,16.828891754150504],[103.182426452637,16.839700698852653],[103.17520904541027,16.844890594482536],[103.17414855957031,16.8502197265625],[103.17803955078153,16.8582706451416],[103.17695617675776,16.862010955810604],[103.16554260253923,16.863790512085018],[103.15946197509766,16.863380432128906],[103.14740753173845,16.865022659301815],[103.15026855468767,16.853660583496094],[103.1487197875976,16.843248367309627],[103.14105224609403,16.8339080810548],[103.13980865478516,16.82969093322754],[103.12536621093773,16.81755065917963],[103.11573028564447,16.817369461059684],[103.11128997802763,16.82121086120611],[103.1072616577149,16.8282794952392],[103.10473632812506,16.839370727539062],[103.10877227783226,16.84284973144537],[103.10859680175787,16.84761047363287],[103.11543273925787,16.850229263305607],[103.11625671386747,16.862010955810604],[103.1179885864259,16.866670608520508],[103.12214660644537,16.869739532470703],[103.12243652343767,16.88441848754877],[103.12609863281256,16.89096069335949],[103.12532806396484,16.897771835327262],[103.11701202392607,16.904790878295955],[103.1112670898438,16.90497970581066],[103.10977172851591,16.907688140869084],[103.10125732421892,16.911651611328125],[103.1004028320313,16.92350959777832],[103.10256958007807,16.926090240478572],[103.10492706298834,16.936599731445312],[103.11171722412104,16.939809799194336],[103.11672973632812,16.956268310546875],[103.12316894531244,16.96058082580572],[103.1257095336914,16.95729827880865],[103.14111328125017,16.953220367431754],[103.14933776855469,16.949930191040153],[103.15229034423857,16.947032928466797],[103.1573715209961,16.947589874267578],[103.16477966308611,16.945970535278263],[103.16617584228538,16.948841094970817],[103.17227935791038,16.948770523071346],[103.17764282226568,16.951089859008903],[103.18383789062517,16.949689865112248],[103.18705749511713,16.945760726928768],[103.19127655029314,16.948009490966854],[103.19886779785168,16.948770523071346],[103.20123291015625,16.947179794311637],[103.20613861083979,16.957029342651424],[103.21373748779308,16.957750320434684],[103.21485900878935,16.961990356445312],[103.22158050537104,16.965892791748047],[103.22548675537115,16.963970184326172],[103.23062133789068,16.956710815429744],[103.2351379394533,16.95656967163086],[103.24077606201178,16.959028244018498],[103.24797058105469,16.958240509033203],[103.25422668457048,16.9591903686524],[103.25695037841803,16.951490402221737],[103.26351928710949,16.94572067260748],[103.27478027343761,16.941701889038086],[103.28026580810553,16.93382072448742],[103.28913116455095,16.92386817932129],[103.30316925048857,16.92039108276373],[103.31317138671892,16.920618057250977],[103.31842803955107,16.922399520874137],[103.3320922851563,16.923311233520508],[103.34358215332037,16.922269821166992],[103.35404205322271,16.919240951538086],[103.3631591796875,16.912630081176758],[103.37252044677734,16.9021511077882],[103.3756027221682,16.90099906921398],[103.3829498291015,16.9038600921632],[103.3901977539062,16.897281646728572],[103.3973922729495,16.893310546875],[103.40026092529325,16.88540267944336],[103.40589141845703,16.881378173828182],[103.40808105468778,16.873210906982422],[103.41220092773443,16.868459701538086],[103.41419982910168,16.862091064453182],[103.41081237792986,16.857551574707088],[103.40290832519537,16.851089477539176],[103.41175079345697,16.848688125610295],[103.41123962402344,16.843851089477596],[103.41300201416021,16.83807182312023],[103.41835784912115,16.830310821533203],[103.41860961914057,16.8267498016358],[103.42539215087913,16.820051193237305],[103.42253875732428,16.815820693969783],[103.41819000244169,16.81474113464361],[103.41226959228544,16.80743026733404],[103.4159927368164,16.80360984802246],[103.42310333251976,16.80029106140148],[103.43736267089844,16.812580108642635],[103.44140625000023,16.816999435424805],[103.44406890869146,16.823129653930607],[103.4476394653322,16.825641632080192],[103.45153808593756,16.8319091796875],[103.45156860351591,16.83559036254877],[103.44596862792974,16.84190940856945],[103.44654846191412,16.8472194671632],[103.45378875732428,16.850120544433707],[103.45790863037104,16.865009307861328],[103.46218109130865,16.866859436035213],[103.46592712402361,16.87152290344244],[103.47233581542974,16.873180389404297],[103.47364807128929,16.884029388427678],[103.4770278930664,16.88182067871105],[103.48087310791021,16.885177612304744],[103.48121643066406,16.890850067138786],[103.48523712158203,16.895910263061467],[103.48591613769543,16.900789260864258],[103.49186706542986,16.90043067932129],[103.49362182617188,16.90587997436529],[103.4928131103515,16.91877174377447],[103.49577331542991,16.924291610717887],[103.49484252929693,16.92741012573248],[103.48960113525408,16.930839538574332],[103.48925018310547,16.9407196044923],[103.49546813964838,16.949781417846737],[103.49331665039068,16.95511054992687],[103.49800109863281,16.96199989318842],[103.4966201782226,16.968320846557674],[103.50100708007807,16.96846961975092],[103.50496673584013,16.973888397216797],[103.50833129882818,16.984952926635856],[103.51412963867216,16.98661994934082],[103.51714324951178,16.994430541992188],[103.52176666259794,16.997539520263672],[103.51766204833984,17.02470016479498],[103.52047729492205,17.03179168701172],[103.51352691650396,17.03507804870611],[103.51702117919916,17.038709640503043],[103.51365661621094,17.04692268371582],[103.51937103271484,17.050331115722713],[103.52272033691435,17.056980133056754],[103.52790069580072,17.057310104370117],[103.52905273437494,17.060211181640625],[103.53788757324219,17.06270027160639],[103.5372619628908,17.067630767822322],[103.542709350586,17.076749801635742],[103.54921722412138,17.0776309967041],[103.55159759521484,17.08663940429699],[103.56067657470732,17.084642410278263],[103.56443023681663,17.09120178222662],[103.5766220092774,17.089750289916992],[103.57933807373053,17.098859786987305],[103.58187866210932,17.099649429321403],[103.59803771972685,17.093469619750977],[103.60417938232433,17.092939376830998],[103.60836029052763,17.097080230712834],[103.61136627197271,17.093879699707145],[103.6194305419923,17.090652465820426],[103.62618255615234,17.08414077758789],[103.63035583496111,17.076530456543082],[103.63967132568354,17.069442749023494],[103.64167785644554,17.056119918823185],[103.65080261230469,17.050529479980526],[103.65441131591797,17.044849395751953],[103.65280914306652,17.03106117248535],[103.64893341064476,17.024070739746207],[103.65014648437511,17.020589828491325],[103.66056823730491,17.017190933227596],[103.66461181640653,17.01748085021984]]]},"properties":{"ID_0":228,"ISO":"TH-46","NAME_0":"Thailand","ID_1":14,"NAME_1":"Kalasin","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"กาฬสินธุ์","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.8577423095706,16.734939575195426],[99.86107635498047,16.72599029541027],[99.87786865234375,16.726060867309513],[99.88742065429693,16.72434043884283],[99.89769744873047,16.72430038452154],[99.90074157714844,16.720901489257812],[99.90010070800793,16.709907531738338],[99.90209197998047,16.703912734985465],[99.8980178833009,16.700170516967887],[99.89740753173857,16.69346809387207],[99.90242767334001,16.68395042419445],[99.90326690673834,16.672609329223746],[99.90703582763672,16.66644096374506],[99.90600585937528,16.64797973632824],[99.90999603271513,16.62348937988287],[99.91179656982439,16.605590820312557],[99.92040252685547,16.60101127624523],[99.95040130615257,16.588279724121207],[99.95378875732422,16.58539009094244],[99.95954132080101,16.57215118408203],[99.96129608154325,16.570850372314396],[99.9777908325197,16.572629928588867],[99.988052368164,16.576570510864258],[99.99507904052763,16.57529067993164],[99.99688720703125,16.577590942382926],[100.00347900390636,16.577480316162223],[100.00811767578142,16.583898544311523],[100.0112991333009,16.580089569091854],[100.01757812500028,16.578350067138672],[100.01480102539062,16.573150634765682],[100.01201629638678,16.56731033325201],[100.01877593994158,16.562931060791072],[100.02200317382807,16.558982849121094],[100.02442932128935,16.540830612182674],[100.02919006347662,16.53087997436529],[100.03565216064476,16.51484107971197],[100.03588867187528,16.500181198120117],[100.01364135742205,16.47229957580572],[99.99942016601585,16.44514083862299],[99.99555969238281,16.436349868774414],[99.99495697021501,16.420940399169922],[99.99648284912126,16.411920547485295],[99.99433898925793,16.40024948120123],[99.98773956298828,16.388530731201172],[99.98452758789085,16.37747955322277],[99.98678588867188,16.372709274291935],[99.99668884277344,16.361829757690543],[99.99626922607439,16.357971191406307],[100.00226593017601,16.341949462890682],[100.00505828857439,16.336498260498047],[100.00863647460949,16.333599090576172],[100.02305603027366,16.336610794067383],[100.02686309814459,16.3346004486084],[100.02881622314482,16.330270767211857],[100.02146911621111,16.322521209716797],[100.02018737792974,16.318439483642635],[100.02272796630888,16.31221008300787],[100.01873779296886,16.309049606323242],[100.00110626220709,16.287330627441406],[100.0074081420899,16.286060333252067],[100.01048278808616,16.280761718750057],[100.00946044921875,16.273120880126953],[100.01377105712919,16.27297973632824],[100.02133178710943,16.279489517212028],[100.0302505493164,16.27511024475109],[100.02999877929699,16.271181106567383],[100.0263290405274,16.26029014587408],[100.02716827392595,16.255430221557617],[100.02229309082054,16.250078201294002],[100.02835845947266,16.240528106689453],[100.04464721679716,16.23406028747553],[100.05657958984375,16.227550506591797],[100.05317687988287,16.217870712280273],[100.04254913330107,16.214189529418945],[100.04631805419928,16.209920883178768],[100.04543304443388,16.202060699462947],[100.04228210449219,16.198209762573242],[100.03475952148449,16.194690704345817],[100.0285415649414,16.191480636596793],[100.02384185791021,16.18411254882824],[100.0241088867187,16.179740905761662],[100.02986907958984,16.177520751953125],[100.03186035156256,16.17184066772461],[100.0400314331057,16.159280776977596],[100.03369140625,16.153949737548828],[100.02031707763689,16.15314102172846],[100.01103973388695,16.14179039001465],[99.99993896484375,16.131341934204045],[99.99674224853538,16.12484169006359],[99.9895706176759,16.116430282592773],[99.98101043701189,16.110441207885856],[99.96862030029314,16.098709106445312],[99.95443725585966,16.0803604125976],[99.94277191162132,16.06879043579113],[99.9389572143557,16.062650680541992],[99.93712615966791,16.055419921875],[99.93396759033209,16.05154037475586],[99.92304229736345,16.047189712524528],[99.91397857666021,16.04705047607422],[99.89717864990257,16.051130294799748],[99.88858795166038,16.048330307006836],[99.87545776367193,16.041088104248104],[99.8683471679688,16.035829544067383],[99.85218048095709,16.020578384399414],[99.84574127197277,16.015689849853572],[99.84217834472673,16.00950050354004],[99.84281921386741,16.005849838256893],[99.84718322753912,15.999691009521541],[99.8484878540039,15.983681678771916],[99.84646606445318,15.978660583496207],[99.82975769042986,15.962989807128963],[99.82917785644526,15.958009719848633],[99.8256225585938,15.949039459228459],[99.81355285644548,15.943890571594352],[99.80805969238281,15.940190315246639],[99.80562591552757,15.931460380554313],[99.80668640136736,15.921441078186092],[99.79653167724621,15.921199798583928],[99.78726959228516,15.92720985412609],[99.78145599365263,15.923090934753361],[99.77014923095726,15.919530868530217],[99.77037048339872,15.912361145019531],[99.77348327636713,15.90391921997076],[99.77230834960949,15.899411201477108],[99.76332092285185,15.893260002136287],[99.75144958496116,15.880779266357422],[99.74849700927729,15.87501144409191],[99.7464599609375,15.864421844482422],[99.74314117431652,15.857050895691032],[99.73844146728516,15.858210563659782],[99.73172760009783,15.864959716796932],[99.73039245605486,15.86872863769537],[99.72482299804699,15.872241973876953],[99.71607208251947,15.8728408813476],[99.70864105224626,15.878130912780762],[99.70391082763672,15.874601364135799],[99.69774627685558,15.875721931457576],[99.69270324707054,15.872171401977539],[99.68525695800787,15.869750976562614],[99.68151092529325,15.864049911499023],[99.6687469482423,15.859240531921387],[99.65747070312528,15.857280731201286],[99.64427947998053,15.8709716796875],[99.63890838623053,15.878512382507324],[99.63059997558605,15.885000228881779],[99.61683654785185,15.88605976104742],[99.61241149902366,15.889459609985465],[99.60978698730497,15.89603137969982],[99.6056289672851,15.89813041687023],[99.59609985351557,15.897080421447868],[99.58394622802734,15.897489547729549],[99.57894897460955,15.901069641113224],[99.57834625244152,15.904861450195426],[99.57054901123064,15.904550552368107],[99.56134796142607,15.906690597534237],[99.55616760253912,15.90658092498785],[99.55345916748053,15.915850639343262],[99.54908752441429,15.916851043701172],[99.54257965087896,15.92201137542736],[99.53582000732416,15.924189567566032],[99.53070831298845,15.921931266784611],[99.52744293212908,15.91760063171398],[99.5221786499024,15.92426967620861],[99.5188980102539,15.923041343688965],[99.50998687744163,15.923540115356502],[99.50215911865257,15.927460670471191],[99.49408721923845,15.92356109619152],[99.48001098632818,15.921211242675838],[99.47914123535185,15.916172027587947],[99.48208618164062,15.909601211547908],[99.47708892822283,15.905370712280387],[99.47780609130888,15.901301383972282],[99.46804809570318,15.899629592895508],[99.46128845214844,15.904740333557129],[99.45182037353538,15.904420852661133],[99.44696807861345,15.901439666748104],[99.43656921386724,15.909470558166618],[99.43232727050787,15.907951354980412],[99.4304962158206,15.914850234985295],[99.42489624023443,15.918940544128418],[99.41860198974615,15.91162109375],[99.40982055664068,15.910570144653377],[99.394760131836,15.914871215820312],[99.38318634033232,15.917181968689022],[99.37751007080072,15.915170669555721],[99.36917877197266,15.917901992797795],[99.35752868652344,15.926209449768123],[99.34680938720697,15.920912742614746],[99.33329772949236,15.911439895629883],[99.32972717285162,15.911801338195858],[99.32711791992216,15.916081428527775],[99.32830047607416,15.920460700988713],[99.32254028320341,15.925970077514762],[99.31881713867188,15.916249275207633],[99.31115722656267,15.917780876159668],[99.31154632568376,15.905241012573242],[99.30619049072283,15.903751373291072],[99.30219268798845,15.907340049743596],[99.2979125976563,15.908081054687614],[99.29238128662115,15.899499893188533],[99.29241943359386,15.894001007080135],[99.28131866455084,15.898089408874455],[99.2792282104495,15.90198040008545],[99.2740325927735,15.904040336608887],[99.27207183837908,15.91113090515131],[99.26680755615257,15.9075803756715],[99.26133728027355,15.913190841674918],[99.25148010253906,15.91760063171398],[99.23509216308594,15.928490638732967],[99.23223876953125,15.932870864868221],[99.22740173339838,15.935630798339844],[99.22412109375028,15.943301200866642],[99.22138214111334,15.943780899047908],[99.22030639648466,15.93672084808344],[99.21409606933594,15.939229965209961],[99.21037292480497,15.947731018066463],[99.20744323730469,15.946610450744686],[99.20559692382818,15.936861991882324],[99.20018768310547,15.938770294189453],[99.19239807128912,15.936709403991756],[99.19271087646501,15.932501792907829],[99.18755340576189,15.928131103515739],[99.17665100097668,15.933231353759766],[99.1743621826173,15.927761077880916],[99.16221618652344,15.923600196838322],[99.1571578979495,15.919530868530217],[99.1481628417971,15.907649993896428],[99.13968658447283,15.904711723327694],[99.13256072998075,15.907611846923942],[99.12906646728521,15.910990715026912],[99.11657714843761,15.899311065673828],[99.10925292968773,15.89503097534191],[99.09622955322266,15.881679534912223],[99.08878326416016,15.884849548339957],[99.08928680419933,15.89585971832281],[99.08677673339872,15.898791313171444],[99.08808898925804,15.904170036316032],[99.08715820312528,15.911700248718262],[99.09104156494158,15.917669296264648],[99.0970306396485,15.923821449279785],[99.09803009033232,15.928030014038143],[99.09568023681646,15.933270454406738],[99.09195709228527,15.935099601745549],[99.09010314941423,15.94258022308361],[99.08642578125011,15.947299957275504],[99.08278656005888,15.946781158447266],[99.07621765136719,15.950930595397892],[99.075736999512,15.960350990295467],[99.07929229736334,15.961628913879508],[99.08251190185547,15.967571258544922],[99.08640289306669,15.970171928405875],[99.0897827148438,15.979411125183105],[99.08775329589872,15.98507022857666],[99.08760833740251,15.993951797485408],[99.08287811279297,16.003789901733512],[99.08450317382841,16.025131225585994],[99.0879592895509,16.031959533691406],[99.08766174316406,16.04112052917486],[99.0979919433596,16.046222686767635],[99.10613250732439,16.048589706420955],[99.10972595214838,16.05412101745611],[99.11512756347656,16.05883026123047],[99.11396789550781,16.06351089477539],[99.11737060546892,16.072099685669002],[99.1142959594726,16.079151153564453],[99.10977172851562,16.081600189208928],[99.10839843750017,16.08514976501465],[99.10932922363293,16.097621917724553],[99.1039581298831,16.100099563598633],[99.09452056884766,16.101890563964957],[99.09201812744158,16.109130859375114],[99.08872985839855,16.112640380859375],[99.08452606201183,16.113452911376896],[99.07981872558594,16.12461090087885],[99.0732116699221,16.127540588378906],[99.06884002685553,16.13128089904791],[99.06072998046892,16.131261825561523],[99.0533981323245,16.1331405639649],[99.0504226684572,16.14220046997076],[99.05074310302763,16.149642944335938],[99.05256652832031,16.153640747070312],[99.0512619018557,16.158189773559684],[99.05603790283226,16.1615505218507],[99.06849670410168,16.16523933410656],[99.07090759277366,16.17268943786621],[99.07108306884771,16.179161071777287],[99.07338714599632,16.183460235595646],[99.07437896728544,16.194810867309684],[99.08190155029314,16.201120376587028],[99.0837783813476,16.21120262145996],[99.08023834228521,16.217161178588924],[99.07553100585966,16.221160888671875],[99.07289123535168,16.227640151977653],[99.06665039062517,16.233890533447322],[99.06539154052757,16.2388916015625],[99.05580139160156,16.245420455932674],[99.05444335937517,16.253040313720817],[99.05049133300787,16.25621032714855],[99.0490798950197,16.26752090454113],[99.04606628417969,16.2757511138916],[99.04646301269531,16.280689239502067],[99.04284667968756,16.291330337524528],[99.045219421387,16.297809600830135],[99.05188751220732,16.303720474243278],[99.05399322509794,16.307790756225643],[99.05108642578148,16.314041137695312],[99.05335998535179,16.319578170776424],[99.05255889892578,16.33140945434576],[99.0429229736331,16.33831024169922],[99.04344177246116,16.347820281982536],[99.04550170898438,16.352411270141545],[99.04231262207054,16.35786247253418],[99.04242706298845,16.373170852661246],[99.03640747070318,16.38277053833002],[99.02279663085938,16.380849838256893],[99.01725006103533,16.38496971130371],[99.02111053466803,16.3995304107666],[99.01976776123053,16.409660339355526],[99.02072143554693,16.41706085205078],[99.02410125732439,16.420368194580078],[99.02391052246111,16.42688941955572],[99.01821899414062,16.437450408935604],[99.01793670654325,16.440820693969783],[99.01315307617216,16.447589874267692],[99.00731658935564,16.44947052001953],[99.0004272460937,16.449752807617244],[98.99620819091808,16.452520370483455],[98.99298858642572,16.4644393920899],[98.98780822753935,16.471460342407227],[98.98829650878912,16.48233985900879],[98.98734283447271,16.487859725952205],[98.99198913574247,16.493499755859318],[99.00093078613287,16.497779846191463],[99.00559234619158,16.496280670166016],[99.0121459960938,16.489210128784293],[99.01412200927763,16.482631683349666],[99.02471923828125,16.47360992431652],[99.0311584472658,16.472948074340763],[99.03459167480486,16.476270675659293],[99.04695892333996,16.47772979736328],[99.04773712158197,16.47925949096691],[99.05725097656261,16.480070114135856],[99.07405090332026,16.47879028320324],[99.08071899414074,16.471469879150334],[99.08584594726591,16.470291137695312],[99.09751129150385,16.47437095642084],[99.10159301757818,16.476879119873047],[99.10539245605469,16.47519111633312],[99.10787200927734,16.47916030883789],[99.11380004882818,16.478170394897575],[99.12406921386719,16.473461151123104],[99.12441253662104,16.477741241455192],[99.1285095214846,16.482170104980526],[99.13020324707037,16.48810005187994],[99.13520812988287,16.488880157470703],[99.13893890380876,16.49294090270996],[99.14009094238281,16.49792098999029],[99.14904022216814,16.498680114746094],[99.15023803710943,16.501150131225586],[99.16510009765625,16.501190185546875],[99.17510986328153,16.508850097656307],[99.16906738281267,16.51300048828125],[99.17170715332026,16.51988983154297],[99.18144226074213,16.52664184570324],[99.18119049072294,16.530782699585075],[99.19071197509771,16.528949737548828],[99.19081878662126,16.536270141601562],[99.19783782958979,16.535511016845817],[99.2004318237307,16.529850006103516],[99.20545196533214,16.530790328979606],[99.21321105957054,16.529090881347713],[99.22019195556658,16.525041580200195],[99.2244567871096,16.5303897857666],[99.2336120605471,16.5318603515625],[99.23974609375028,16.530979156494084],[99.24259185791021,16.534032821655387],[99.24862670898438,16.548280715942326],[99.2475280761721,16.553279876709098],[99.24974822998064,16.55700111389166],[99.25502777099638,16.56063270568859],[99.25727081298851,16.565690994262695],[99.2554168701173,16.580020904541016],[99.25092315673828,16.588640213012752],[99.25401306152366,16.59904289245611],[99.25016784667969,16.602880477905387],[99.2520523071289,16.60715103149414],[99.24817657470714,16.610652923584098],[99.24545288085943,16.62158012390148],[99.24479675292986,16.630180358886776],[99.24749755859375,16.64171981811529],[99.24711608886719,16.652032852172965],[99.24913024902355,16.654172897338924],[99.24703216552746,16.661350250244197],[99.2523117065432,16.66357994079584],[99.2594985961914,16.663980484008846],[99.26615142822283,16.668050765991268],[99.2712783813476,16.667470932006836],[99.27504730224638,16.67583084106451],[99.27348327636741,16.683000564575195],[99.28186798095726,16.686220169067383],[99.2833480834961,16.689729690551815],[99.27997589111334,16.697259902954045],[99.28302764892584,16.707769393920955],[99.2867660522461,16.713460922241268],[99.29570770263689,16.717670440673942],[99.29794311523466,16.724821090698185],[99.29749298095709,16.72985076904297],[99.30449676513689,16.73834037780773],[99.30233764648449,16.744911193847656],[99.30216979980463,16.751951217651367],[99.30406188964855,16.754390716552734],[99.30610656738287,16.765420913696346],[99.29614257812506,16.771118164062557],[99.29222869873058,16.778490066528434],[99.29374694824247,16.783912658691463],[99.29701232910168,16.78757095336914],[99.30323028564476,16.791059494018555],[99.31195831298828,16.792150497436467],[99.31739807128935,16.794149398803768],[99.32312011718778,16.810260772705078],[99.32711029052763,16.81187057495123],[99.33570861816435,16.811069488525447],[99.34468841552746,16.81159019470209],[99.34948730468767,16.808549880981502],[99.35427093505876,16.8080215454101],[99.36621093750028,16.802560806274414],[99.37473297119146,16.80169105529791],[99.38575744628906,16.807050704956055],[99.38883209228516,16.8130207061767],[99.38407897949224,16.820930480957088],[99.38752746582054,16.82388114929205],[99.38459014892595,16.83222007751465],[99.37606811523443,16.842758178710938],[99.38018035888666,16.85147094726574],[99.3799591064456,16.859138488769474],[99.38420867919939,16.86602020263672],[99.39055633544928,16.868600845336914],[99.40425109863298,16.870241165161076],[99.41510772705095,16.874141693115234],[99.42220306396484,16.87566947937023],[99.42720794677757,16.879091262817383],[99.43840026855469,16.880319595337028],[99.44496154785162,16.8832626342774],[99.45333099365257,16.875459671020508],[99.46206665039062,16.877450942993278],[99.46673583984403,16.886209487915096],[99.46842956542974,16.895719528198185],[99.474105834961,16.900819778442383],[99.48723602294922,16.907400131225586],[99.49054718017584,16.906829833984318],[99.49842834472668,16.89474105834961],[99.49987792968773,16.889789581298828],[99.50920104980474,16.88590049743658],[99.51158905029308,16.882591247558537],[99.51583862304688,16.86610031127924],[99.5200805664063,16.866041183471737],[99.52400970459001,16.861547470092887],[99.54059600830072,16.860870361328125],[99.55243682861345,16.86194038391119],[99.55703735351562,16.85802841186529],[99.5707778930664,16.856428146362248],[99.58023071289091,16.853031158447322],[99.58264160156256,16.843580245971737],[99.5831375122072,16.832599639892578],[99.5789794921875,16.82730293273937],[99.58580017089838,16.810792922973633],[99.59166717529325,16.806070327758846],[99.59642791748075,16.79873085021967],[99.59651184082048,16.793031692504883],[99.5995864868164,16.788621902465763],[99.60649108886741,16.785369873046875],[99.60646057128906,16.78045082092285],[99.60974884033226,16.77351951599121],[99.61609649658214,16.766548156738338],[99.61798095703153,16.76210975646967],[99.62323760986328,16.757209777832088],[99.63185882568382,16.75471115112299],[99.63520812988298,16.75014114379877],[99.64689636230469,16.742139816284293],[99.65178680419916,16.744899749755916],[99.6560668945313,16.744211196899414],[99.66397857666027,16.737951278686637],[99.67156982421903,16.73365974426281],[99.67822265625023,16.72671127319336],[99.68869781494163,16.729801177978572],[99.69567108154314,16.72982978820812],[99.69548034667986,16.724250793457145],[99.69754791259777,16.719881057739315],[99.69664001464861,16.714969635009822],[99.70703125000006,16.71791839599615],[99.7084197998048,16.72330093383789],[99.71720886230463,16.720701217651424],[99.72592926025419,16.726270675659237],[99.72853088378906,16.72150039672863],[99.73248291015642,16.70771980285656],[99.73693847656256,16.70656013488781],[99.74858856201195,16.694999694824276],[99.75945281982428,16.68857192993164],[99.76306152343756,16.685409545898438],[99.77069854736334,16.68264007568365],[99.77507781982428,16.686450958251953],[99.78045654296898,16.686571121215763],[99.78460693359375,16.68418121337902],[99.79321289062506,16.68434906005865],[99.79934692382818,16.689132690429744],[99.80358123779325,16.69032096862793],[99.80520629882812,16.696859359741268],[99.811576843262,16.701200485229492],[99.80747985839844,16.710020065307674],[99.8135986328125,16.71450042724615],[99.81832885742205,16.719961166381893],[99.82447814941412,16.71953964233404],[99.83014678955095,16.722320556640682],[99.83059692382818,16.717269897460938],[99.83654022216803,16.71428108215332],[99.84580993652344,16.713638305664062],[99.85105895996122,16.726219177246094],[99.8577423095706,16.734939575195426]]]},"properties":{"ID_0":228,"ISO":"TH-62","NAME_0":"Thailand","ID_1":15,"NAME_1":"Kamphaeng Phet","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"กำแพงเพชร","VARNAME_1":"Gampheang Phet|Kambhengbhej"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[98.98461151123064,15.180560111999455],[98.98995208740251,15.175750732421875],[98.993637084961,15.169190406799373],[98.99449157714855,15.164510726928768],[98.99994659423834,15.163910865783635],[99.00250244140636,15.160750389099178],[99.00422668457043,15.148921012878418],[99.00728607177746,15.144119262695312],[99.00200653076172,15.137420654296875],[99.00170135498053,15.118330955505371],[98.99904632568388,15.105290412902832],[99.00434875488304,15.102119445800781],[99.00853729248053,15.095199584961051],[99.01100921630865,15.08653926849371],[99.00199890136719,15.071749687194881],[99.01072692871088,15.068599700927848],[99.01344299316406,15.062790870666618],[99.01985931396496,15.05624008178711],[99.02561187744135,15.053671836853027],[99.0283432006836,15.049058914184684],[99.03282928466808,15.04749965667736],[99.03914642333979,15.04857063293457],[99.04995727539068,15.042209625244197],[99.05725860595714,15.042901039123592],[99.06716918945324,15.046401023864746],[99.07804107666027,15.037760734558105],[99.0875701904298,15.03816890716547],[99.09391784667986,15.041240692138729],[99.10056304931635,15.04171085357666],[99.1115112304688,15.046230316162166],[99.11532592773443,15.044441223144645],[99.12001037597668,15.05379867553711],[99.12577819824236,15.049990653991756],[99.13136291503912,15.048450469970703],[99.14306640625028,15.05076980590826],[99.14762115478544,15.046110153198356],[99.14145660400396,15.044150352478027],[99.13622283935558,15.03712081909191],[99.14319610595726,15.034079551696834],[99.14601135253906,15.025951385498047],[99.14994049072277,15.0225706100465],[99.15718841552746,15.021870613098258],[99.15756225585966,15.017550468444881],[99.16873931884771,15.01312065124523],[99.18041992187506,15.015919685363826],[99.18495178222662,15.018441200256348],[99.19188690185575,15.025678634643612],[99.20465087890653,15.013021469116211],[99.21257019042969,15.011521339416447],[99.21984863281256,15.012209892273006],[99.22865295410179,15.00957107543951],[99.23367309570324,15.011261940002498],[99.25115203857445,14.997700691223145],[99.25128173828142,14.995321273803768],[99.25695037841808,14.986680984497127],[99.26251220703142,14.990058898925838],[99.27523803710966,14.989050865173397],[99.27861022949224,14.990262031555176],[99.28353881835938,14.99594974517828],[99.28543090820312,14.993350028991756],[99.29142761230474,14.990600585937557],[99.29408264160179,14.986652374267578],[99.29853820800793,14.986079216003475],[99.30586242675781,14.978251457214355],[99.30541992187494,14.973380088806152],[99.3131713867188,14.965950012207031],[99.3158493041995,14.954740524292106],[99.32192230224632,14.947211265563965],[99.31227111816418,14.934860229492188],[99.31336975097685,14.930430412292537],[99.32215118408232,14.922810554504451],[99.32269287109398,14.918572425842399],[99.32061004638678,14.90985202789301],[99.31790924072288,14.904910087585563],[99.31891632080107,14.895051002502498],[99.31790161132818,14.89026927947998],[99.31333160400413,14.882350921630916],[99.30615997314464,14.88082027435297],[99.30055236816429,14.872929573059196],[99.29263305664057,14.864049911499023],[99.28816986084007,14.863631248474235],[99.28330230712908,14.859451293945426],[99.29251098632812,14.83844184875494],[99.29463195800787,14.832209587097225],[99.30558013916027,14.823340415954647],[99.310562133789,14.811679840088004],[99.31571960449213,14.8132905960083],[99.3267364501956,14.809229850769043],[99.33644104003912,14.799241065979004],[99.33563995361334,14.794041633605957],[99.34388732910185,14.782869338989258],[99.34848785400419,14.781271934509277],[99.3591766357423,14.7706813812257],[99.36741638183611,14.771521568298283],[99.37345123291044,14.766019821166992],[99.37858581542974,14.764398574829102],[99.38907623291021,14.764470100402832],[99.40857696533214,14.772951126098633],[99.41404724121116,14.774051666259822],[99.41674041748053,14.777469635009822],[99.42354583740234,14.779970169067496],[99.43234252929693,14.777301788330135],[99.4387512207033,14.771170616149902],[99.44043731689464,14.75879001617426],[99.44474792480491,14.754091262817383],[99.44808959960932,14.747709274291992],[99.45088958740263,14.734751701355094],[99.45345306396501,14.731780052185115],[99.45568084716825,14.724210739135742],[99.46173858642601,14.719951629638615],[99.46221923828142,14.710661888122672],[99.45936584472673,14.70665073394781],[99.4604110717774,14.700371742248649],[99.46492767333984,14.695421218872127],[99.47718811035179,14.697580337524357],[99.48573303222662,14.701680183410645],[99.49101257324236,14.700619697570858],[99.50367736816412,14.702759742736816],[99.5079727172851,14.700908660888672],[99.51463317871105,14.701050758361816],[99.52126312255865,14.70763111114502],[99.54326629638666,14.71514034271246],[99.55013275146479,14.720999717712402],[99.55290985107445,14.729010581970215],[99.54083251953125,14.745290756225643],[99.5431518554688,14.74911975860607],[99.5419921875,14.755632400512695],[99.54360198974638,14.759799957275504],[99.54991912841808,14.76635932922369],[99.54907226562506,14.775179862976131],[99.54637145996094,14.778328895568904],[99.54653167724626,14.78345108032238],[99.54412078857445,14.792001724243107],[99.54821777343744,14.800551414489746],[99.56048583984375,14.794599533081055],[99.56546783447271,14.786520957946834],[99.5704879760745,14.782490730285758],[99.57646179199236,14.787349700927734],[99.58075714111351,14.788900375366211],[99.5855331420899,14.78397274017334],[99.58960723876947,14.785371780395508],[99.6017608642581,14.783731460571346],[99.60607147216797,14.784359931945858],[99.61390686035162,14.780770301818848],[99.62039947509771,14.782090187072754],[99.62729644775413,14.788200378417969],[99.62918090820318,14.793310165405273],[99.63656616210955,14.799160957336426],[99.64208984375017,14.801510810852108],[99.65020751953153,14.802960395812988],[99.6619720458985,14.796739578247184],[99.67260742187517,14.789791107177734],[99.677299499512,14.783300399780387],[99.69068145751964,14.772649765014592],[99.69966125488276,14.772300720214787],[99.70417785644537,14.766160964965877],[99.7171478271485,14.762910842895565],[99.72782135009771,14.753970146179256],[99.72936248779325,14.748571395874137],[99.75699615478538,14.74176120758068],[99.76328277587913,14.744429588317814],[99.77005004882807,14.745539665222168],[99.77424621582026,14.744541168213004],[99.78309631347662,14.746121406555176],[99.78691101074224,14.742799758911076],[99.79695892334001,14.737671852111816],[99.7964477539063,14.725031852722282],[99.79255676269526,14.726581573486442],[99.78549194335932,14.71604061126709],[99.77680206298834,14.70863056182867],[99.77601623535156,14.70580959320074],[99.79614257812528,14.695261955261287],[99.79585266113281,14.685420036315918],[99.8059158325197,14.672031402588004],[99.81207275390625,14.666289329528809],[99.81433868408203,14.657960891723633],[99.81893157958984,14.654859542846737],[99.81973266601585,14.649490356445312],[99.82357788085943,14.64420032501232],[99.82208251953153,14.636370658874625],[99.82276916503912,14.631671905517578],[99.82881164550798,14.625511169433594],[99.8333816528322,14.617431640624943],[99.82769012451172,14.611800193786678],[99.81832122802751,14.611451148986873],[99.81199645996105,14.609590530395565],[99.80771636962913,14.611359596252385],[99.8050460815432,14.607840538025016],[99.80486297607445,14.598440170288143],[99.7984161376956,14.588040351867676],[99.80026245117193,14.583450317382926],[99.80551910400385,14.580121994018612],[99.81916809082054,14.575330734252987],[99.82228088378918,14.57256031036377],[99.82171630859386,14.566720962524528],[99.81920623779325,14.562029838562012],[99.81661224365251,14.550251960754395],[99.81297302246111,14.547869682312125],[99.81278228759783,14.535820007324219],[99.8192520141601,14.526110649109],[99.8165130615235,14.52142143249523],[99.82063293457031,14.512022018432674],[99.8214874267581,14.501930236816463],[99.82073974609403,14.491889953613395],[99.81997680664091,14.450670242309627],[99.81639099121088,14.438421249389762],[99.82150268554716,14.424210548400993],[99.82466125488281,14.410720825195312],[99.8178405761721,14.393709182739371],[99.81948089599626,14.385119438171444],[99.81787872314482,14.38239955902111],[99.82171630859386,14.347850799560547],[99.81488037109392,14.336020469665641],[99.82105255126959,14.31422042846691],[99.8243026733399,14.30920124053955],[99.82388305664062,14.296339988708553],[99.81929016113298,14.283061981201229],[99.8225173950197,14.269600868225098],[99.82341003417997,14.250821113586426],[99.81906890869135,14.23523044586176],[99.82151794433605,14.224729537963867],[99.81713104248058,14.227170944213867],[99.8121032714846,14.227141380310172],[99.80668640136736,14.220741271972656],[99.8057632446289,14.20597934722906],[99.78530120849604,14.190099716186637],[99.77717590332037,14.19783973693859],[99.76599884033232,14.19801139831543],[99.7631912231447,14.192831039428711],[99.76080322265648,14.1840114593507],[99.7587432861331,14.181501388549918],[99.74694824218761,14.18474006652832],[99.74388122558622,14.180330276489258],[99.74253845214872,14.17273998260498],[99.73726654052751,14.160781860351676],[99.7354125976563,14.150101661682243],[99.73197937011724,14.145510673523006],[99.72941589355463,14.128130912780762],[99.7296218872072,14.114971160888672],[99.7323913574221,14.109199523925838],[99.73039245605486,14.101941108703727],[99.73387908935553,14.096591949463004],[99.74163055419916,14.095430374145451],[99.7491989135745,14.091291427612418],[99.75794982910179,14.089909553527889],[99.77024841308611,14.092001914978027],[99.77945709228516,14.092280387878418],[99.79181671142595,14.098759651184025],[99.79757690429688,14.085121154785156],[99.80609893798822,14.082541465759391],[99.81072235107422,14.079350471496582],[99.81202697753923,14.075910568237305],[99.80856323242199,14.069040298461971],[99.81201171874994,14.064670562744197],[99.81711578369169,14.063760757446403],[99.82229614257824,14.060608863830623],[99.8325119018557,14.060420036315918],[99.84423065185558,14.058421134948844],[99.84707641601574,14.052109718322697],[99.85440826416016,14.041250228881893],[99.83399963378906,14.010809898376522],[99.83232879638695,14.007179260253963],[99.8330993652346,13.996431350708121],[99.83812713623058,13.995770454406738],[99.84571838378935,13.997281074523869],[99.84571838378935,13.98341274261469],[99.85314941406278,13.980789184570312],[99.85418701171892,13.96982192993164],[99.86219787597673,13.966971397400016],[99.87018585205072,13.962371826171932],[99.8779220581057,13.948290824890194],[99.86929321289062,13.935490608215275],[99.86131286621116,13.919801712036133],[99.85694885253912,13.919271469116325],[99.85063934326195,13.896800994873047],[99.84443664550776,13.880299568176326],[99.83934783935547,13.87489128112793],[99.83786773681663,13.864681243896598],[99.82984924316429,13.866460800170842],[99.82160949707031,13.863910675048942],[99.82115173339855,13.859980583190975],[99.8272781372072,13.852540016174373],[99.8193130493164,13.8462495803833],[99.81745910644554,13.838219642639217],[99.81948089599626,13.825659751892033],[99.81417083740234,13.812071800232047],[99.811576843262,13.807891845703182],[99.80327606201172,13.807411193847656],[99.79548645019537,13.820251464843807],[99.79055023193382,13.821771621704102],[99.78388977050804,13.821009635925293],[99.76049041748058,13.825300216674805],[99.75495910644543,13.829990386962834],[99.74971008300787,13.831850051879826],[99.74050140380876,13.828411102295036],[99.74098205566412,13.825780868530387],[99.72090148925781,13.825821876525936],[99.70024871826189,13.829810142517204],[99.69046783447294,13.837261199951172],[99.6812362670899,13.837080955505485],[99.67241668701189,13.839060783386344],[99.66689300537126,13.845191955566406],[99.66110229492216,13.840649604797477],[99.65895843505882,13.835810661315975],[99.64833831787121,13.826869964599666],[99.63632202148449,13.812048912048397],[99.61971282959013,13.800730705261344],[99.60618591308605,13.79800033569336],[99.59072875976574,13.779012680053768],[99.56935882568388,13.770780563354492],[99.5645599365235,13.765939712524471],[99.55780029296875,13.762871742248592],[99.55139160156256,13.75811958312994],[99.54602813720726,13.757540702819824],[99.54086303710943,13.759590148925838],[99.53302764892578,13.758890151977596],[99.52806854248047,13.764311790466309],[99.51975250244169,13.76631069183361],[99.51686859130865,13.763070106506404],[99.51239776611345,13.766349792480582],[99.506576538086,13.765080451965389],[99.5032806396485,13.76931095123291],[99.48658752441418,13.784991264343262],[99.48539733886724,13.789901733398438],[99.48021697998053,13.80011081695568],[99.47338867187506,13.803990364074764],[99.46862030029303,13.795331001281738],[99.45626068115246,13.781749725341797],[99.45375823974638,13.780300140380916],[99.43495941162126,13.777859687805233],[99.41287994384771,13.771651268005485],[99.40947723388695,13.76647090911871],[99.39945983886736,13.766201972961483],[99.3807678222658,13.75576114654541],[99.37304687500023,13.755459785461426],[99.35923767089861,13.75204086303711],[99.35369873046892,13.746361732482853],[99.3493423461914,13.748991966247502],[99.33560943603516,13.746720314025993],[99.33135223388666,13.746810913085994],[99.32321166992188,13.74431133270258],[99.312973022461,13.749149322509766],[99.30787658691418,13.747270584106502],[99.29902648925804,13.740059852600211],[99.28984069824219,13.754031181335563],[99.28682708740257,13.76011180877697],[99.2814559936524,13.759440422058105],[99.27382659912115,13.752671241760197],[99.27276611328153,13.746799468994254],[99.26689910888689,13.741939544677791],[99.26091003417974,13.742019653320312],[99.24111175537121,13.748690605163688],[99.23457336425804,13.746441841125602],[99.22817230224604,13.745971679687443],[99.22345733642578,13.748909950256348],[99.21849822998047,13.741092681884709],[99.2120132446289,13.740960121154842],[99.21309661865229,13.737191200256461],[99.20491027832048,13.734400749206486],[99.20437622070312,13.729660034179744],[99.20024108886741,13.727870941162166],[99.189697265625,13.731419563293457],[99.17848205566429,13.733181953430176],[99.17611694335955,13.738970756530705],[99.1727066040039,13.738580703735295],[99.16806793212902,13.732101440429688],[99.1681213378908,13.726629257202262],[99.16369628906244,13.725501060485954],[99.15741729736345,13.73574066162115],[99.15641021728544,13.753239631652889],[99.15405273437506,13.754969596862907],[99.14383697509777,13.756321907043514],[99.13314819335966,13.766421318054313],[99.1255493164062,13.768280029296818],[99.12461090087908,13.776069641113395],[99.12149810791044,13.78197956085205],[99.12056732177746,13.791611671447754],[99.1247177124024,13.798971176147461],[99.12416076660185,13.810920715332088],[99.11920928955107,13.813990592956543],[99.11730957031278,13.81835079193121],[99.1177368164062,13.826479911804313],[99.11254882812528,13.82980060577404],[99.10553741455095,13.832059860229549],[99.10305023193354,13.837328910827694],[99.10391235351585,13.851042747497502],[99.10964202880882,13.861321449279842],[99.11369323730497,13.864860534667969],[99.11342620849615,13.87881183624279],[99.11015319824219,13.891201019287053],[99.10518646240234,13.893860816955566],[99.09646606445335,13.889390945434684],[99.09063720703136,13.89111042022705],[99.08287811279297,13.890610694885254],[99.08003234863281,13.897089958190861],[99.07572937011747,13.902470588684196],[99.07087707519531,13.904891967773438],[99.06938171386741,13.914381980895996],[99.06456756591797,13.922080993652344],[99.06388854980497,13.926069259643612],[99.05593872070307,13.929829597473145],[99.05001831054682,13.937090873718319],[99.04496765136741,13.940609931945914],[99.03192901611345,13.945409774780387],[99.0235595703125,13.945871353149528],[99.0164871215822,13.96322154998785],[99.01848602294928,13.97136020660406],[99.01254272460943,13.989931106567496],[99.00853729248053,13.993540763855037],[99.00815582275396,13.997789382934513],[99.00157928466791,14.005661010742244],[99.00048065185547,14.010951042175407],[99.00170135498053,14.017460823059196],[98.99192047119146,14.01978969573986],[98.97985839843767,14.028290748596191],[98.97448730468744,14.030941963195858],[98.97660064697283,14.037521362304744],[98.97434997558594,14.040910720825195],[98.97350311279325,14.054229736328125],[98.97173309326195,14.057850837707576],[98.97245025634766,14.064009666442928],[98.97091674804688,14.069391250610408],[98.97083282470732,14.079819679260254],[98.96312713623053,14.090019226074332],[98.95948028564453,14.096480369567985],[98.94606018066418,14.091480255126896],[98.93847656250017,14.098610877990836],[98.92420196533203,14.107931137084904],[98.92053222656267,14.109049797058105],[98.90982055664074,14.108011245727653],[98.90045166015653,14.110040664672908],[98.89469146728521,14.113849639892578],[98.8872833251956,14.12070083618164],[98.88127136230469,14.12235069274908],[98.87742614746111,14.12588119506836],[98.87785339355469,14.12903976440441],[98.87404632568365,14.139829635620117],[98.87137603759771,14.144240379333496],[98.86637878417986,14.147472381591854],[98.86067199707031,14.147720336914062],[98.8522186279298,14.158210754394531],[98.84413909912132,14.163069725036564],[98.84069824218773,14.163241386413574],[98.83756256103533,14.168500900268612],[98.8306961059572,14.174201011657715],[98.82540893554693,14.174490928650016],[98.81935119628912,14.171849250793457],[98.81388854980463,14.175291061401367],[98.81154632568388,14.179287910461426],[98.80298614501982,14.186740875244197],[98.802261352539,14.189459800720215],[98.79332733154314,14.192360877990723],[98.78016662597673,14.19789123535162],[98.77834320068365,14.204590797424373],[98.7605590820313,14.214181900024471],[98.75852966308622,14.21305084228527],[98.75022888183594,14.224061965942383],[98.73825073242193,14.233100891113224],[98.73145294189482,14.240130424499569],[98.72521209716814,14.238850593566951],[98.7186813354495,14.243440628051701],[98.71482086181663,14.24905014038086],[98.70746612548822,14.25283145904541],[98.70392608642584,14.258000373840446],[98.70320892334013,14.264801025390625],[98.70015716552763,14.272549629211426],[98.69773864746088,14.274259567260685],[98.68395233154325,14.272381782531738],[98.67901611328136,14.279641151428336],[98.66980743408226,14.287130355835018],[98.66307067871094,14.290631294250431],[98.65995025634777,14.290531158447322],[98.64626312255876,14.300610542297363],[98.64353179931669,14.301580429077148],[98.63053131103521,14.314819335937557],[98.6249618530274,14.311831474304256],[98.6141815185548,14.312259674072322],[98.60157775878918,14.32383060455328],[98.59918212890625,14.331001281738281],[98.59971618652361,14.334479331970272],[98.59632873535156,14.343331336975211],[98.5974960327149,14.357170104980526],[98.59938812255865,14.366510391235352],[98.59536743164062,14.372859954833984],[98.58949279785162,14.369219779968262],[98.57907104492199,14.369030952453556],[98.57666778564453,14.376561164856014],[98.56826782226562,14.38263034820568],[98.56672668457048,14.391831398010254],[98.55967712402361,14.401629447937012],[98.5609588623048,14.415189743042106],[98.55618286132824,14.419960021972713],[98.55143737792963,14.420680999755803],[98.5502319335938,14.429141044616756],[98.55204010009783,14.432600975036621],[98.54830169677757,14.438501358032283],[98.54102325439459,14.443502426147461],[98.53703308105474,14.442240715026855],[98.52834320068371,14.452510833740348],[98.52240753173857,14.468551635742244],[98.51429748535156,14.475140571594238],[98.51264953613287,14.48915958404541],[98.50740814209001,14.493560791015682],[98.50784301757818,14.506992340087947],[98.50135803222662,14.510500907897892],[98.49893188476591,14.515111923217887],[98.49788665771484,14.524450302124137],[98.49272155761736,14.539109230041504],[98.48800659179693,14.534870147705135],[98.48285675048834,14.532879829406738],[98.47860717773455,14.535270690917969],[98.47058105468767,14.534539222717285],[98.46591949462896,14.529830932617301],[98.46189880371116,14.531631469726562],[98.46192169189459,14.538481712341309],[98.46022796630888,14.547131538391227],[98.45655822753929,14.555100440979004],[98.45919036865234,14.559061050415153],[98.4585571289062,14.56362056732172],[98.4605560302735,14.577199935913086],[98.45271301269537,14.582481384277457],[98.44007873535173,14.601400375366211],[98.43782806396484,14.607909202575684],[98.4313583374024,14.616170883178768],[98.4270706176759,14.617830276489371],[98.41982269287121,14.624171257018986],[98.4174423217774,14.628940582275504],[98.40988159179716,14.631501197814998],[98.40505218505865,14.636660575866756],[98.39984893798828,14.638331413269043],[98.39208221435553,14.645661354065055],[98.38503265380882,14.649510383606014],[98.37758636474615,14.660070419311637],[98.36955261230474,14.66769123077404],[98.36386871337913,14.686530113220272],[98.3569564819336,14.693121910095158],[98.35607147216825,14.69594955444336],[98.34432220459001,14.701121330261287],[98.34179687500011,14.707380294799918],[98.33667755126947,14.710289955139274],[98.33036041259777,14.705250740051383],[98.32660675048828,14.707780838012752],[98.32594299316435,14.71302127838129],[98.32167816162115,14.71665096282959],[98.31896972656267,14.72373008728033],[98.31178283691412,14.72780990600586],[98.30922698974626,14.730938911438045],[98.30944061279297,14.735640525817985],[98.30444335937494,14.744800567626953],[98.30010986328125,14.748419761657829],[98.29708862304693,14.761190414428654],[98.29740905761736,14.766559600830078],[98.28555297851557,14.775960922241268],[98.27989959716797,14.789469718933162],[98.27848052978527,14.794921875000057],[98.27359008789062,14.797321319580135],[98.26467895507835,14.808329582214412],[98.25778961181646,14.811308860778865],[98.25460052490263,14.81840991973877],[98.25411987304705,14.823041915893555],[98.25083923339838,14.82656097412115],[98.25145721435547,14.830780982971248],[98.25717163085955,14.834401130676383],[98.26200103759771,14.841341018676815],[98.26230621337908,14.84956169128418],[98.2641983032226,14.853968620300407],[98.25926971435564,14.8612899780274],[98.24826812744146,14.868841171264648],[98.24662017822277,14.87183952331543],[98.23377990722679,14.88815021514904],[98.23754119873047,14.894049644470272],[98.24413299560575,14.89587116241455],[98.24716949462919,14.89995098114025],[98.25327301025419,14.9128799438476],[98.2449722290039,14.921249389648551],[98.24368286132818,14.925239562988395],[98.2441024780274,14.936921119690055],[98.23223114013678,14.944179534912166],[98.23155212402355,14.952119827270565],[98.23384857177746,14.962030410766658],[98.23298645019537,14.965589523315487],[98.22294616699247,14.973222732543945],[98.22016143798845,14.973052024841365],[98.20987701416016,14.981120109558162],[98.21038818359386,14.997800827026424],[98.21317291259771,15.00969123840332],[98.21240234375006,15.013420104980469],[98.21427917480469,15.020050048828239],[98.22428894042997,15.025300979614258],[98.23384094238293,15.042991638183594],[98.22218322753935,15.054459571838379],[98.22264862060564,15.05828857421875],[98.2188491821289,15.061930656433105],[98.21276855468756,15.074430465698242],[98.20761871337896,15.075389862060604],[98.19525909423851,15.085791587829647],[98.18627166748053,15.094989776611328],[98.18607330322271,15.103960990905819],[98.1837997436524,15.11227989196783],[98.1868591308596,15.12117958068859],[98.18885040283197,15.122340202331657],[98.1911697387697,15.129811286926383],[98.19596862792969,15.1335706710816],[98.190658569336,15.139340400695858],[98.19174957275408,15.148930549621525],[98.20099639892584,15.154619216918945],[98.2033920288086,15.16497993469244],[98.20791625976574,15.167849540710506],[98.20851898193376,15.17340183258068],[98.21401214599621,15.17578125],[98.21378326416044,15.182171821594238],[98.20897674560553,15.188711166381893],[98.21119689941423,15.193580627441463],[98.20923614501964,15.200639724731502],[98.20025634765653,15.209329605102482],[98.2030868530274,15.213771820068303],[98.19921112060547,15.219271659851017],[98.20120239257841,15.224609375],[98.19935607910173,15.229661941528377],[98.2033920288086,15.234820365905819],[98.2101593017581,15.233490943908805],[98.22119903564476,15.221940040588379],[98.23306274414091,15.221310615539608],[98.23690032958996,15.218591690063533],[98.2406005859375,15.220422744750977],[98.24774169921903,15.22068023681652],[98.2541275024414,15.22446060180664],[98.25975036621122,15.224330902099666],[98.26106262207054,15.234051704406738],[98.26644897460966,15.238751411438102],[98.27133178710943,15.248121261596793],[98.28189086914091,15.254080772399846],[98.28572082519543,15.263019561767578],[98.30065917968767,15.272151947021484],[98.30613708496105,15.278560638427848],[98.30381011962919,15.288901329040584],[98.29817199707048,15.298581123352108],[98.30268096923857,15.302920341491756],[98.30355072021484,15.309378623962516],[98.30885314941423,15.310970306396541],[98.31635284423834,15.305650711059513],[98.32816314697271,15.301380157470703],[98.33709716796875,15.29330921173107],[98.3455657958985,15.2912216186524],[98.3534393310548,15.291790962219181],[98.35658264160162,15.288140296936035],[98.3649063110351,15.282200813293514],[98.37351989746111,15.281730651855582],[98.37979888916033,15.272919654846248],[98.39330291748058,15.265351295471305],[98.39971160888678,15.259831428527889],[98.40114593505854,15.25444126129156],[98.40512084960949,15.255541801452637],[98.40943145751959,15.25281143188488],[98.41204833984392,15.25648117065424],[98.41964721679682,15.261961936950684],[98.42253112792986,15.270221710205021],[98.41648101806646,15.293681144714355],[98.40598297119146,15.30348110198969],[98.40043640136719,15.304780006408748],[98.40972137451166,15.316439628601131],[98.4187088012697,15.31687068939209],[98.42180633544922,15.320992469787654],[98.4227905273438,15.327421188354549],[98.41927337646501,15.334779739379996],[98.4174423217774,15.348349571228027],[98.42292785644531,15.35820102691656],[98.42697143554693,15.361621856689453],[98.43477630615234,15.361359596252441],[98.43974304199224,15.357430458068904],[98.45491790771496,15.364009857177848],[98.47357177734403,15.374309539795036],[98.48226165771484,15.376621246338004],[98.48722076416016,15.386140823364201],[98.4933776855471,15.387490272521973],[98.50360107421892,15.38363075256359],[98.5070571899414,15.38073921203619],[98.51046752929705,15.374620437622127],[98.51509094238287,15.372900962829533],[98.53589630126959,15.368661880493164],[98.54048156738304,15.366339683532772],[98.5480728149414,15.358020782470703],[98.54718780517607,15.350489616393986],[98.54808807373053,15.341159820556754],[98.55184173584001,15.334900856018123],[98.55985260009783,15.330641746521053],[98.56249237060558,15.336819648742619],[98.57298278808605,15.349859237670898],[98.58132934570341,15.36359977722168],[98.58644104003912,15.390219688415641],[98.58780670166021,15.427192687988338],[98.5897674560548,15.438440322875977],[98.58741760253912,15.48898029327404],[98.58258819580078,15.51588058471674],[98.58309936523432,15.522989273071346],[98.57913970947266,15.535870552063045],[98.5746612548831,15.540499687194824],[98.5648269653322,15.56328201293951],[98.5625305175783,15.575930595398063],[98.56211853027338,15.590400695800781],[98.55744171142584,15.599611282348633],[98.56033325195318,15.60877990722662],[98.56391143798834,15.613349914550838],[98.57044982910162,15.642709732055664],[98.57190704345703,15.653549194335938],[98.57681274414057,15.658699989318848],[98.58509826660162,15.658860206603947],[98.59070587158214,15.644351005554256],[98.59989929199236,15.643831253051701],[98.60923004150385,15.640099525451717],[98.61328125,15.64309024810791],[98.62094116210943,15.639311790466422],[98.62641906738298,15.625320434570312],[98.63185119628929,15.62593078613287],[98.64331054687506,15.63661956787115],[98.6496124267581,15.631930351257381],[98.65476226806669,15.621609687805176],[98.65567779541021,15.611080169677734],[98.65876007080084,15.607780456542969],[98.6626968383789,15.597371101379395],[98.66915893554705,15.593220710754395],[98.67304992675804,15.583151817321777],[98.69506072998041,15.55625057220459],[98.699028015137,15.550869941711426],[98.71076965332031,15.529931068420353],[98.72509002685553,15.516349792480582],[98.71911621093767,15.511859893798942],[98.72071838378912,15.506340026855526],[98.71370697021513,15.503499984741325],[98.70513916015653,15.508480072021484],[98.70227813720732,15.503101348876896],[98.70517730712885,15.4981307983399],[98.72274017334001,15.489469528198242],[98.72823333740246,15.488280296325797],[98.73336029052763,15.482060432434139],[98.74143218994158,15.477791786193904],[98.74653625488293,15.481240272522086],[98.7583694458009,15.472322463989371],[98.76014709472656,15.468680381774902],[98.75625610351591,15.459520339965934],[98.75646209716808,15.455929756164608],[98.7600784301759,15.45104122161871],[98.75501251220703,15.440660476684684],[98.7635574340822,15.436780929565373],[98.76389312744152,15.434090614318904],[98.76980590820324,15.431659698486385],[98.7811279296875,15.419010162353516],[98.78399658203125,15.408170700073185],[98.80310058593756,15.389240264892521],[98.80674743652366,15.38179016113287],[98.81416320800787,15.375359535217342],[98.82147979736357,15.365300178527832],[98.82707214355486,15.355211257934684],[98.8343505859375,15.3443603515625],[98.84178161621094,15.346461296081657],[98.8607711791995,15.331440925598258],[98.86753845214844,15.328010559082088],[98.87155151367188,15.323401451110897],[98.88500976562511,15.302020072937125],[98.89140319824224,15.290619850158691],[98.89142608642584,15.283740997314567],[98.88764190673834,15.276471138000545],[98.88935089111334,15.274091720580998],[98.89971160888683,15.272100448608455],[98.90637207031261,15.268300056457633],[98.91387176513689,15.266000747680664],[98.91600799560553,15.255430221557617],[98.9196395874024,15.253582000732536],[98.92056274414062,15.248320579528922],[98.9248733520509,15.245089530944824],[98.92877960205078,15.24742126464838],[98.94641113281278,15.250461578369197],[98.95675659179682,15.245702743530273],[98.95732879638666,15.237100601196346],[98.95958709716808,15.229709625244197],[98.96322631835949,15.22313022613531],[98.96469116210943,15.216857910156364],[98.96483612060553,15.205780982971248],[98.97216796875028,15.19641017913824],[98.97138214111357,15.191940307617188],[98.98140716552734,15.181599617004395],[98.98461151123064,15.180560111999455]]]},"properties":{"ID_0":228,"ISO":"TH-71","NAME_0":"Thailand","ID_1":16,"NAME_1":"Kanchanaburi","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"กาญจนบุรี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.10125732421892,16.911651611328125],[103.10977172851591,16.907688140869084],[103.1112670898438,16.90497970581066],[103.11701202392607,16.904790878295955],[103.12532806396484,16.897771835327262],[103.12609863281256,16.89096069335949],[103.12243652343767,16.88441848754877],[103.12214660644537,16.869739532470703],[103.1179885864259,16.866670608520508],[103.11625671386747,16.862010955810604],[103.11543273925787,16.850229263305607],[103.10859680175787,16.84761047363287],[103.10877227783226,16.84284973144537],[103.10473632812506,16.839370727539062],[103.1072616577149,16.8282794952392],[103.11128997802763,16.82121086120611],[103.11573028564447,16.817369461059684],[103.12536621093773,16.81755065917963],[103.13980865478516,16.82969093322754],[103.14105224609403,16.8339080810548],[103.1487197875976,16.843248367309627],[103.15026855468767,16.853660583496094],[103.14740753173845,16.865022659301815],[103.15946197509766,16.863380432128906],[103.16554260253923,16.863790512085018],[103.17695617675776,16.862010955810604],[103.17803955078153,16.8582706451416],[103.17414855957031,16.8502197265625],[103.17520904541027,16.844890594482536],[103.182426452637,16.839700698852653],[103.18135833740251,16.828891754150504],[103.18602752685553,16.82298088073736],[103.18805694580078,16.817079544067383],[103.18723297119152,16.804641723632812],[103.18329620361328,16.798700332641715],[103.18591308593744,16.794780731201172],[103.18392944335943,16.7907390594483],[103.18506622314476,16.78684997558588],[103.17758178710938,16.77828025817871],[103.17633056640653,16.771820068359375],[103.16867065429693,16.764701843261832],[103.16040802001953,16.760469436645565],[103.15300750732428,16.759229660034237],[103.14840698242188,16.75214958190918],[103.1509399414063,16.748470306396484],[103.1492309570313,16.74497032165533],[103.16052246093761,16.731849670410213],[103.15908813476562,16.720701217651424],[103.1560897827149,16.716339111328125],[103.15209197998053,16.715288162231502],[103.15139007568354,16.707080841064453],[103.14826202392584,16.699220657348633],[103.15136718750011,16.691780090332088],[103.1516189575197,16.685350418090877],[103.15574645996122,16.682430267333928],[103.1607131958009,16.67379188537592],[103.16037750244158,16.668510437011776],[103.15323638916021,16.658180236816463],[103.15473937988304,16.642061233520565],[103.15270233154308,16.64011001586914],[103.15373992919922,16.618570327758846],[103.15666198730474,16.615180969238224],[103.1550903320313,16.608650207519645],[103.14891052246088,16.60223960876465],[103.14163208007841,16.597499847412223],[103.12510681152361,16.592809677124137],[103.12223815917986,16.587921142578068],[103.12265014648438,16.57852172851574],[103.1209564208985,16.575340270996094],[103.12100982666044,16.565109252929744],[103.11712646484375,16.559471130371207],[103.10816192626953,16.553890228271484],[103.10587310791016,16.544340133667106],[103.10328674316435,16.541810989379826],[103.10118103027372,16.5344696044923],[103.09352874755865,16.528829574585018],[103.08841705322294,16.519531250000057],[103.08927154541016,16.516651153564567],[103.08390808105486,16.51033973693842],[103.07689666748053,16.50892066955572],[103.07283782959001,16.503141403198356],[103.06479644775385,16.49904060363781],[103.04701232910185,16.493370056152344],[103.04453277587919,16.489839553833065],[103.040267944336,16.4903507232666],[103.03849792480486,16.498489379882812],[103.0277786254884,16.490539550781307],[103.02825164794928,16.488439559936637],[103.0227813720706,16.481050491333065],[103.02416992187494,16.477479934692496],[103.01918792724621,16.472640991210994],[103.00843048095709,16.466079711914062],[102.99323272705107,16.462787628173885],[102.98586273193376,16.46241950988781],[102.97612762451189,16.45622062683117],[102.96424865722685,16.45226097106928],[102.95774841308622,16.451629638671932],[102.95472717285168,16.44645118713379],[102.9615173339846,16.438150405883846],[102.96617889404291,16.427431106567383],[102.96961212158197,16.428329467773438],[102.97252655029297,16.424158096313477],[102.97714233398443,16.42235946655279],[102.97467803955101,16.41859054565441],[102.96224212646484,16.424011230468807],[102.96012878417969,16.423421859741325],[102.95789337158226,16.410869598388672],[102.95349884033209,16.407569885253963],[102.94866180419939,16.407060623169002],[102.95168304443354,16.401872634887695],[102.95841979980469,16.40018081665039],[102.95288848876953,16.39431953430187],[102.95226287841791,16.388330459594727],[102.94512176513695,16.388410568237305],[102.94213104248058,16.38474273681652],[102.93759918212908,16.38653182983404],[102.93667602539062,16.381820678710994],[102.93984985351574,16.376319885253963],[102.93416595459001,16.375450134277344],[102.9270706176759,16.378732681274357],[102.92256927490234,16.37495040893549],[102.92222595214866,16.370861053466854],[102.92958831787126,16.365070343017578],[102.9208068847658,16.363531112671012],[102.91665649414062,16.360059738159237],[102.91024780273466,16.359741210937614],[102.90744781494135,16.356330871582145],[102.91143035888683,16.348171234130916],[102.90908050537115,16.346889495849723],[102.89830780029314,16.347642898559513],[102.89782714843756,16.3418426513673],[102.90033721923857,16.33735275268566],[102.89785003662138,16.33102989196783],[102.89730072021513,16.31624984741211],[102.8899230957033,16.3084011077882],[102.8710098266601,16.296670913696403],[102.86741638183611,16.288730621338004],[102.85315704345709,16.27738189697277],[102.84963226318371,16.2726211547851],[102.84729003906256,16.26074028015148],[102.85080718994158,16.250511169433537],[102.84664916992188,16.24274826049816],[102.84678649902338,16.23209953308117],[102.85205841064459,16.220731735229492],[102.84588623046875,16.21103096008312],[102.85050201416021,16.196950912475643],[102.84851074218744,16.189758300781307],[102.84987640380876,16.17769050598139],[102.85386657714861,16.17012023925787],[102.85957336425776,16.16493988037115],[102.85946655273443,16.156009674072266],[102.85096740722668,16.149232864379996],[102.84723663330078,16.14318084716797],[102.8560180664063,16.12688827514654],[102.85809326171875,16.125089645385856],[102.8682708740235,16.122270584106502],[102.86997222900413,16.118257522583065],[102.86251831054693,16.1002197265625],[102.86258697509794,16.09441947937023],[102.85774230957037,16.089759826660156],[102.85774230957037,16.0796794891358],[102.85169219970732,16.07510948181158],[102.85111236572271,16.06855964660656],[102.85482788085955,16.063430786132812],[102.86193847656256,16.058628082275447],[102.86219024658232,16.05377006530773],[102.85842132568354,16.04754066467291],[102.8588027954101,16.042640686035156],[102.86296081542997,16.038059234619197],[102.86859130859375,16.03972244262701],[102.875473022461,16.037250518798885],[102.87729644775385,16.034099578857536],[102.89643859863281,16.02350044250494],[102.88549041748058,16.012100219726562],[102.89289093017607,16.00295066833496],[102.90128326416044,15.999321937560978],[102.90663146972685,15.983071327209586],[102.90571594238276,15.97546100616455],[102.90728759765642,15.967579841613713],[102.9019165039062,15.960311889648494],[102.89691162109403,15.956199645996037],[102.89951324462896,15.949060440063477],[102.89507293701189,15.940549850463867],[102.89196014404325,15.938880920410156],[102.89235687255871,15.931719779968262],[102.89539337158232,15.926321029663143],[102.89829254150385,15.925420761108512],[102.89888000488298,15.916490554809627],[102.90081787109375,15.915260314941406],[102.90544891357445,15.900911331176871],[102.90841674804705,15.89609146118164],[102.91950225830078,15.882710456848145],[102.92437744140653,15.88206005096447],[102.92971801757841,15.876421928405762],[102.92722320556669,15.86860179901123],[102.9284896850586,15.861050605773983],[102.93341064453142,15.854900360107479],[102.92841339111322,15.850560188293514],[102.9262390136721,15.845040321350098],[102.92632293701166,15.838751792907715],[102.92424774169939,15.832441329956112],[102.9249877929687,15.828120231628418],[102.9217605590822,15.821611404418945],[102.92917633056635,15.817891120910645],[102.92917633056635,15.814611434936637],[102.93432617187494,15.811070442199764],[102.9328002929687,15.793951034545955],[102.90792083740257,15.789151191711483],[102.89620208740251,15.784790992736816],[102.88620758056646,15.774689674377441],[102.87979888916033,15.766980171203613],[102.8765869140625,15.733820915222282],[102.88191223144548,15.691371917724553],[102.87577819824213,15.670880317688045],[102.87386322021479,15.66250038146984],[102.8681716918947,15.64822959899908],[102.85774230957037,15.643011093139648],[102.84767913818365,15.639760971069336],[102.832290649414,15.633270263671989],[102.81716156005865,15.630719184875602],[102.80657958984392,15.631099700927678],[102.7814559936524,15.644010543823299],[102.7746200561524,15.649550437927303],[102.76773071289085,15.652489662170467],[102.76390838623053,15.6513414382934],[102.75876617431663,15.654980659484863],[102.75695800781244,15.6588392257691],[102.75150299072271,15.661899566650447],[102.74829101562506,15.668881416320744],[102.7409896850586,15.666130065917969],[102.7322006225586,15.666142463684139],[102.73021697998075,15.664250373840446],[102.71833801269554,15.664529800415096],[102.71620941162115,15.67177963256836],[102.71296691894537,15.676170349121207],[102.70997619628935,15.685250282287598],[102.70630645751959,15.68507003784174],[102.70229339599615,15.691660881042537],[102.6920013427735,15.701299667358512],[102.69474029541044,15.706771850585938],[102.69306182861322,15.712890625],[102.69789123535156,15.713321685791016],[102.70067596435541,15.718411445617733],[102.69922637939453,15.722850799560547],[102.69214630126953,15.722479820251579],[102.6815032958985,15.726779937744197],[102.6747283935548,15.721799850463867],[102.67417907714838,15.717460632324219],[102.66941833496111,15.71451187133789],[102.66027832031267,15.716071128845215],[102.65242004394526,15.713649749755973],[102.63848876953136,15.716640472412166],[102.62020874023455,15.723299980163631],[102.6122665405274,15.727402687072754],[102.60478973388672,15.722750663757381],[102.59986877441412,15.7146511077882],[102.59999084472673,15.711751937866268],[102.58277130126982,15.70648002624506],[102.57863616943376,15.708490371704045],[102.56446075439482,15.70518970489502],[102.5521469116211,15.705789566040153],[102.54673767089855,15.71096134185791],[102.53674316406256,15.709410667419434],[102.53064727783226,15.715441703796387],[102.52308654785168,15.716781616211051],[102.51905822753935,15.722770690917969],[102.51419830322266,15.72571086883545],[102.5036163330081,15.723691940307617],[102.49942016601591,15.723950386047477],[102.48879241943376,15.71759128570568],[102.48397827148466,15.715931892395076],[102.47096252441412,15.715141296386719],[102.4578399658206,15.716450691223201],[102.44927215576183,15.713301658630428],[102.44435882568376,15.70769023895275],[102.4381103515625,15.70392990112316],[102.43257904052734,15.703420639038029],[102.42433166503923,15.69575023651123],[102.41857147216808,15.69445991516119],[102.40544128417986,15.700410842895565],[102.4013061523438,15.709751129150447],[102.39763641357439,15.712381362915096],[102.38836669921898,15.72455978393549],[102.38449096679688,15.72598934173584],[102.38024902343744,15.730740547180176],[102.36924743652344,15.731910705566406],[102.36257934570312,15.72943115234375],[102.3581619262697,15.737959861755485],[102.35961914062528,15.746269226074219],[102.36334228515625,15.75184154510498],[102.36194610595697,15.757659912109375],[102.36570739746122,15.760060310363713],[102.363021850586,15.76760196685791],[102.35385894775396,15.772009849548397],[102.34884643554688,15.776708602905273],[102.33065032958979,15.798030853271484],[102.32894134521479,15.801900863647461],[102.33064270019543,15.807861328125],[102.32653045654297,15.814300537109318],[102.32791137695318,15.820240974426326],[102.32347869873047,15.826811790466422],[102.3267669677735,15.828340530395565],[102.32386779785162,15.835611343383846],[102.32305145263689,15.841539382934627],[102.31768035888666,15.846651077270565],[102.32331848144554,15.85523891448986],[102.32205963134777,15.86470890045166],[102.33156585693388,15.87042140960699],[102.33712768554699,15.870589256286621],[102.33946228027361,15.878830909729004],[102.34474945068371,15.880730628967285],[102.34310913085938,15.886851310729924],[102.34790802001959,15.88842964172369],[102.35186767578142,15.89929008483898],[102.35791778564464,15.90548133850109],[102.36064147949236,15.911610603332576],[102.36107635498053,15.919200897216854],[102.36357116699241,15.924810409545955],[102.36266326904325,15.930211067199707],[102.36734008789062,15.935540199279842],[102.37050628662121,15.945281028747672],[102.37503051757818,15.942539215088004],[102.37583923339855,15.948270797729549],[102.36971282959013,15.952200889587402],[102.36836242675787,15.960090637207088],[102.37380218505876,15.965641021728459],[102.37301635742205,15.971769332885856],[102.38008117675798,15.97467136383068],[102.38495635986334,15.97991943359375],[102.3881759643557,15.990191459655875],[102.3778915405274,15.996520996093807],[102.373046875,15.99683952331543],[102.37140655517584,16.000160217285213],[102.36635589599626,15.999900817871094],[102.358451843262,16.004360198974553],[102.35412597656244,16.00993919372553],[102.35510253906267,16.0173282623291],[102.35186004638689,16.027128219604492],[102.34712982177734,16.028720855713004],[102.34628295898449,16.032819747924748],[102.34098052978533,16.036598205566463],[102.33110809326172,16.0322208404541],[102.32849121093756,16.029361724853516],[102.32376861572277,16.03565979003912],[102.31806182861322,16.036500930786246],[102.31381225585943,16.040649414062614],[102.3053894042971,16.03696250915533],[102.30018615722656,16.046649932861442],[102.29515838623058,16.053831100463867],[102.29075622558622,16.057090759277287],[102.28816223144548,16.068700790405273],[102.28391265869152,16.069501876831055],[102.2830657958985,16.075880050659293],[102.28543090820324,16.08276176452648],[102.29695129394531,16.096071243286133],[102.31392669677734,16.110441207885856],[102.33101654052746,16.130599975585938],[102.34232330322283,16.146930694580135],[102.34436035156278,16.153860092163143],[102.36720275878912,16.186399459838867],[102.37077331542969,16.189979553222713],[102.38803100585966,16.212060928344727],[102.40470123291033,16.239530563354606],[102.41053771972685,16.2446804046632],[102.41552734374994,16.247089385986385],[102.41657257080084,16.250408172607365],[102.41311645507812,16.265300750732422],[102.41497802734392,16.274248123168945],[102.41982269287115,16.284969329833984],[102.41929626464872,16.287630081176815],[102.42437744140625,16.303390502929688],[102.43017578125028,16.312589645385856],[102.43158721923845,16.317350387573356],[102.43813323974615,16.323661804199276],[102.43984985351568,16.32761192321783],[102.43859863281261,16.332920074462947],[102.44590759277344,16.340238571167106],[102.44790649414091,16.35408973693859],[102.45034027099615,16.364110946655387],[102.44892883300798,16.36930084228527],[102.4499282836914,16.37552833557129],[102.4575805664063,16.383960723876953],[102.46084594726585,16.390359878539982],[102.44915008544922,16.397800445556754],[102.44561767578153,16.406011581420955],[102.43750000000017,16.407501220703125],[102.42986297607439,16.41209030151373],[102.42385864257818,16.418279647827262],[102.41639709472679,16.422769546508903],[102.40830993652361,16.439559936523438],[102.41181945800804,16.444190979003963],[102.41056060791027,16.4519100189209],[102.40762329101585,16.45479011535656],[102.40593719482428,16.463871002197266],[102.40341949462896,16.4657497406007],[102.39768218994146,16.45851135253912],[102.39743804931658,16.450628280639705],[102.40155792236357,16.446170806884766],[102.3947219848634,16.4438095092774],[102.39266967773455,16.441392898559627],[102.3838577270509,16.441450119018555],[102.37999725341803,16.43708038330078],[102.36749267578142,16.43729972839361],[102.36994171142572,16.447090148925838],[102.35185241699236,16.45041084289562],[102.34438323974604,16.447420120239258],[102.34214019775408,16.44426918029791],[102.3378295898438,16.446277618408317],[102.33457946777366,16.444049835205078],[102.32749176025396,16.446420669555778],[102.32202148437528,16.44437980651867],[102.32054138183588,16.453229904174805],[102.31384277343778,16.452102661132756],[102.30365753173834,16.447050094604606],[102.30288696289068,16.444049835205078],[102.29358673095709,16.447269439697266],[102.29142761230469,16.45263862609869],[102.28436279296875,16.4521484375],[102.283500671387,16.455579757690487],[102.27008819580084,16.453371047973633],[102.26625061035156,16.459070205688477],[102.2565002441408,16.459608078002987],[102.2557601928711,16.465232849121207],[102.2462158203125,16.46681022644043],[102.2421188354495,16.476181030273438],[102.2364578247072,16.48398017883312],[102.23338317871088,16.481781005859432],[102.21858215332037,16.49154281616211],[102.2188110351563,16.495929718017578],[102.21434783935564,16.499090194702205],[102.2086257934572,16.496099472046012],[102.20471191406256,16.50255012512207],[102.19872283935547,16.500770568847656],[102.19419097900413,16.497051239013672],[102.18974304199236,16.502599716186467],[102.18338012695341,16.50057029724121],[102.17856597900396,16.492269515991325],[102.1739273071289,16.48991012573248],[102.16707611083984,16.49467086791998],[102.15988159179693,16.50139808654785],[102.15091705322271,16.497249603271484],[102.142593383789,16.49810028076172],[102.13655853271484,16.49519920349121],[102.1254119873048,16.49254989624029],[102.11804962158203,16.494899749755973],[102.1138763427735,16.493629455566463],[102.107681274414,16.495748519897404],[102.10111236572288,16.493169784545955],[102.09793853759777,16.496229171752987],[102.09298706054699,16.49225997924799],[102.08699798584007,16.490512847900504],[102.0809020996096,16.494569778442383],[102.07731628417997,16.49131965637207],[102.07073974609375,16.49208068847662],[102.06983947753929,16.494409561157283],[102.07376861572283,16.500030517578125],[102.06719207763678,16.503379821777457],[102.06395721435575,16.502109527587947],[102.0459899902346,16.506700515747013],[102.03820800781278,16.513561248779354],[102.03241729736328,16.524869918823356],[102.03585052490234,16.529670715332088],[102.03517150878935,16.533891677856502],[102.03100585937494,16.536979675292912],[102.03182983398438,16.54141044616705],[102.02732086181646,16.543260574340877],[102.02368164062523,16.555210113525334],[102.01982879638672,16.55700111389166],[102.00962066650419,16.55694007873535],[101.99880218505876,16.561170578002873],[101.99386596679688,16.564540863037053],[101.98979949951183,16.571132659912166],[101.99182891845726,16.575002670288143],[101.9913482666015,16.581407546997127],[101.98400878906273,16.58423042297369],[101.98188781738287,16.591970443725643],[101.98554992675787,16.595340728759822],[101.9781875610351,16.61170005798334],[101.9729614257813,16.61536979675293],[101.9577178955081,16.61652183532715],[101.95355224609386,16.622850418090934],[101.95886230468778,16.626840591430778],[101.9535598754884,16.63228988647461],[101.95007324218756,16.630199432373047],[101.94538116455072,16.634002685546932],[101.93807983398466,16.630199432373047],[101.9293594360351,16.632459640503043],[101.9236831665039,16.629459381103516],[101.92250061035173,16.626609802246207],[101.9141616821289,16.63219070434576],[101.91057586669945,16.62713050842285],[101.89993286132841,16.637609481811637],[101.89508819580078,16.638099670410156],[101.89235687255854,16.64226913452154],[101.8827514648438,16.64373970031744],[101.87438964843778,16.64113044738781],[101.87171173095732,16.646440505981502],[101.86618041992216,16.645200729370174],[101.86216735839872,16.64832115173334],[101.85646820068371,16.647790908813533],[101.85440826416033,16.652980804443416],[101.84227752685553,16.652980804443416],[101.83499908447266,16.656381607055778],[101.82881927490246,16.653720855712947],[101.81828308105474,16.652120590210075],[101.8049774169923,16.64619064331049],[101.80182647705084,16.647350311279297],[101.79564666748041,16.64015007019043],[101.78807067871094,16.637651443481502],[101.78707122802729,16.634651184081974],[101.77525329589861,16.630701065063477],[101.77642822265625,16.638622283935547],[101.78044891357422,16.6441707611084],[101.77404022216825,16.646350860595817],[101.77520751953153,16.64938926696783],[101.76593017578142,16.653272628784293],[101.7623291015625,16.650430679321346],[101.75543212890642,16.65076065063471],[101.75209808349615,16.654609680175838],[101.75370025634783,16.658800125122127],[101.7530212402346,16.665489196777457],[101.7497329711914,16.666679382324162],[101.7537689208985,16.66893959045416],[101.75253295898432,16.675100326538086],[101.76831054687506,16.677900314330998],[101.7737197875976,16.685060501098633],[101.77583312988298,16.695949554443473],[101.77371215820307,16.699939727783317],[101.77717590332048,16.70230102539074],[101.77796936035156,16.708820343017635],[101.7848510742188,16.719680786132926],[101.78952789306652,16.720701217651424],[101.78884887695312,16.727239608764762],[101.7866821289062,16.731210708618107],[101.78009796142584,16.737510681152344],[101.78256988525396,16.7434597015382],[101.78697204589866,16.744689941406193],[101.78952026367199,16.7483806610108],[101.78736114501976,16.760911941528434],[101.79794311523432,16.766820907592773],[101.80301666259771,16.767230987548885],[101.81304168701189,16.77098083496105],[101.82160949707048,16.776470184326172],[101.83180236816429,16.778110504150447],[101.83648681640642,16.782321929931754],[101.85034942626982,16.784429550170955],[101.85690307617205,16.78862953186035],[101.86376190185564,16.78922080993658],[101.868392944336,16.79198074340826],[101.8715896606447,16.800849914550838],[101.87937164306635,16.807830810546818],[101.88575744628912,16.810560226440487],[101.89372253417986,16.810358047485295],[101.90705108642595,16.812871932983455],[101.91043090820341,16.817110061645565],[101.92032623291021,16.822240829467887],[101.92737579345709,16.82879066467291],[101.93831634521479,16.833660125732536],[101.94364166259777,16.838039398193473],[101.95034027099604,16.840869903564567],[101.94651031494135,16.845970153808537],[101.94853973388678,16.848670959472656],[101.96015167236334,16.846050262451286],[101.97101593017584,16.845090866088924],[101.97296905517584,16.84056282043457],[101.98056030273443,16.839759826660213],[101.98439788818365,16.842201232910156],[101.98989868164068,16.842409133911076],[101.99687957763666,16.83860969543457],[102.00135803222679,16.843540191650504],[102.00308990478521,16.847990036010856],[102.0081024169923,16.853879928588924],[102.00412750244135,16.855281829833984],[102.00724792480474,16.862300872802734],[102.01275634765625,16.868959426879883],[102.01790618896484,16.863250732421932],[102.02146148681652,16.8670597076416],[102.02984619140636,16.860441207885742],[102.03452301025396,16.862041473388786],[102.04264831542963,16.85711097717285],[102.04773712158209,16.860168457031307],[102.04618835449241,16.865512847900504],[102.05538177490263,16.868110656738224],[102.05928039550798,16.86696052551281],[102.06259918212896,16.870080947875977],[102.05844116210966,16.873508453369254],[102.06584930419928,16.880197525024414],[102.06568908691435,16.88546180725109],[102.07128143310564,16.889150619506893],[102.0728530883789,16.882961273193416],[102.08525085449219,16.886671066284237],[102.0889282226563,16.88274955749506],[102.10108184814453,16.88017082214361],[102.09880065917974,16.889360427856445],[102.1024780273438,16.894420623779354],[102.10607910156273,16.895389556884822],[102.11454010009777,16.890520095825195],[102.11490631103544,16.88652992248535],[102.12001800537115,16.886911392211914],[102.12558746337919,16.87969017028803],[102.13317871093756,16.88056182861328],[102.136947631836,16.876750946045036],[102.15699768066429,16.879610061645508],[102.16050720214855,16.875061035156307],[102.16113281250017,16.86949920654297],[102.16954040527344,16.86821937561035],[102.16913604736345,16.865209579467773],[102.17720031738287,16.864070892333984],[102.18113708496111,16.869581222534123],[102.18611145019548,16.866460800170955],[102.18712615966803,16.860080718994197],[102.18997955322271,16.856018066406307],[102.20131683349621,16.857561111450252],[102.20330810546875,16.86039161682129],[102.21578216552763,16.859939575195312],[102.22727966308588,16.866149902343864],[102.22985076904303,16.873161315918026],[102.23767852783226,16.877679824829045],[102.24413299560547,16.87656974792486],[102.25055694580072,16.87998008728033],[102.25218963623053,16.88875007629389],[102.25586700439464,16.892360687255916],[102.26490783691406,16.88949012756359],[102.27214050292986,16.891090393066463],[102.28041076660179,16.891321182251033],[102.28427886962919,16.889062881469783],[102.2923812866211,16.88737106323248],[102.29389190673828,16.88165855407715],[102.30439758300781,16.883882522583065],[102.3087997436524,16.87943077087408],[102.3036499023438,16.87808036804205],[102.30425262451195,16.873300552368107],[102.31186676025396,16.869768142700252],[102.3136520385745,16.865089416503906],[102.31938934326183,16.866720199584904],[102.3249588012697,16.86544990539562],[102.32594299316406,16.862489700317383],[102.31813049316406,16.852989196777457],[102.32366180419922,16.85031127929699],[102.33204650878906,16.852750778198356],[102.33348083496122,16.84661102294922],[102.33080291748075,16.841699600219727],[102.34098815917986,16.831760406494084],[102.33693695068371,16.82951164245617],[102.34072875976591,16.82455062866211],[102.34542846679693,16.814701080322322],[102.35031127929682,16.81814002990734],[102.35034179687517,16.82539939880371],[102.3550491333009,16.826021194458008],[102.35781860351568,16.819721221923942],[102.36215209960955,16.814840316772404],[102.36736297607428,16.814350128173885],[102.37166595458979,16.81031990051281],[102.37742614746111,16.80813980102539],[102.37911224365229,16.81467056274414],[102.4031982421875,16.80288124084484],[102.409896850586,16.798780441284293],[102.42124176025402,16.793489456176815],[102.43366241455072,16.786489486694336],[102.4977264404298,16.8002605438233],[102.52009582519548,16.789199829101562],[102.54213714599638,16.77930068969738],[102.56321716308594,16.775039672851562],[102.57707977294916,16.77298927307129],[102.60701751708996,16.766820907592773],[102.6138305664063,16.766080856323242],[102.61406707763683,16.769451141357422],[102.61807250976574,16.774959564208984],[102.6148223876956,16.783950805664176],[102.615478515625,16.796550750732422],[102.61915588378929,16.81686973571783],[102.62252807617188,16.829059600830192],[102.62757873535185,16.843910217285156],[102.63655853271513,16.86420059204096],[102.64115142822277,16.876979827880803],[102.64527893066429,16.886070251464844],[102.65246582031267,16.897129058837947],[102.66018676757818,16.91301918029785],[102.66667175292974,16.923419952392635],[102.67279815673857,16.935510635375977],[102.67321777343744,16.939960479736328],[102.68090057373047,16.95803070068365],[102.68112182617193,16.965850830078182],[102.68316650390642,16.96825027465826],[102.67868804931646,16.97821044921875],[102.67066955566412,16.99118995666504],[102.6773071289063,17.00126266479498],[102.6809692382813,17.010549545288086],[102.67955780029297,17.01920127868658],[102.68190765380882,17.025711059570312],[102.67887115478521,17.03140068054205],[102.6809692382813,17.037200927734432],[102.67993927001953,17.043132781982422],[102.68184661865234,17.04798126220703],[102.68637084960932,17.053398132324276],[102.68859863281256,17.059070587158317],[102.69225311279325,17.062860488891715],[102.6972198486331,17.06443977355957],[102.70101928710966,17.069019317627067],[102.7003784179688,17.073490142822266],[102.70218658447277,17.086860656738395],[102.70656585693388,17.08716964721674],[102.71037292480497,17.08459091186529],[102.71167755126959,17.07675933837885],[102.71637725830078,17.07106971740734],[102.71877288818388,17.0612411499024],[102.7179794311524,17.05487060546875],[102.72628784179688,17.045480728149528],[102.73987579345709,17.04389953613287],[102.74671173095703,17.03824043273937],[102.75147247314453,17.039091110229606],[102.7621002197265,17.0308780670166],[102.76597595214844,17.023511886596623],[102.77863311767584,17.02009010314947],[102.78256225585938,17.01464080810547],[102.78971099853544,17.012821197509766],[102.79673004150413,17.004949569702262],[102.7998504638673,16.99681091308605],[102.80030822753906,16.990480422973633],[102.80329132080072,16.985359191894645],[102.81021881103516,16.982379913330135],[102.8190307617188,16.976610183715877],[102.81954193115251,16.972709655761776],[102.8255004882813,16.972171783447266],[102.82588195800787,16.966960906982536],[102.81558227539068,16.9619197845459],[102.80699157714844,16.955949783325195],[102.80650329589872,16.949350357055778],[102.81031799316435,16.944789886474666],[102.81568145751964,16.942739486694393],[102.82189178466803,16.93515968322754],[102.8177871704101,16.923360824584904],[102.81095123291033,16.91262054443365],[102.81373596191435,16.905000686645508],[102.8140716552735,16.8971004486084],[102.81243896484386,16.89139938354498],[102.81722259521479,16.881261825561523],[102.82404327392607,16.87092018127447],[102.82174682617216,16.867628097534293],[102.82557678222685,16.861780166626033],[102.84319305419939,16.870830535888786],[102.84995269775396,16.8714275360108],[102.85092926025419,16.875539779663086],[102.85585021972679,16.880380630493164],[102.86090850830072,16.881710052490348],[102.86515045166016,16.877910614013786],[102.87429046630876,16.879070281982365],[102.87744903564482,16.871288299560547],[102.88430023193365,16.873252868652287],[102.88848114013678,16.86578941345215],[102.89253997802746,16.86180114746088],[102.90052032470732,16.85704040527338],[102.9032974243164,16.84925079345703],[102.91246032714844,16.84185028076172],[102.913871765137,16.8368301391601],[102.91980743408232,16.833089828491268],[102.92369842529297,16.833288192749137],[102.93007659912115,16.837070465088004],[102.93815612792963,16.83667755126953],[102.9461975097658,16.83855056762701],[102.95474243164057,16.837970733642635],[102.96501159667997,16.84412002563488],[102.97219085693365,16.845951080322266],[102.97897338867182,16.84608078002924],[102.9829711914062,16.852270126342773],[102.99291992187517,16.855569839477482],[102.99698638916021,16.85881996154785],[103.00109863281244,16.868352890014705],[103.00534057617188,16.864339828491268],[103.01046752929705,16.864429473876953],[103.0131607055664,16.8689804077149],[103.01953887939482,16.86928749084467],[103.0282058715822,16.873500823974723],[103.03150939941412,16.878030776977653],[103.04203796386724,16.885339736938477],[103.04910278320341,16.886470794677848],[103.0539016723634,16.884431838989258],[103.0651931762697,16.890319824218807],[103.06725311279308,16.894050598144474],[103.07630920410156,16.900421142578182],[103.08232879638683,16.897359848022518],[103.08666992187506,16.898860931396598],[103.0953598022461,16.908590316772518],[103.10125732421892,16.911651611328125]]]},"properties":{"ID_0":228,"ISO":"TH-40","NAME_0":"Thailand","ID_1":17,"NAME_1":"Khon Kaen","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ขอนแก่น","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.21601867675781,7.404642105102482],[99.19935607910168,7.401844978332633],[99.19816589355497,7.422611236572379],[99.20314025878935,7.42847919464117],[99.21254730224626,7.409531116485596],[99.21601867675781,7.404642105102482]]],[[[99.11705780029303,7.492393016815299],[99.11758422851562,7.498507976532039],[99.12184143066429,7.496826171875057],[99.11705780029303,7.492393016815299]]],[[[99.12430572509771,7.541697978973502],[99.12638092041016,7.541901111602783],[99.1336593627932,7.5368480682373615],[99.1363449096682,7.533205986023063],[99.13352966308622,7.528421878814697],[99.12574005126947,7.531783103942985],[99.11940765380888,7.539598941802922],[99.12430572509771,7.541697978973502]]],[[[99.14505004882812,7.5931649208069985],[99.14945983886719,7.588863849639836],[99.14714813232422,7.58171892166132],[99.142074584961,7.586559772491569],[99.14066314697266,7.5918340682984535],[99.14505004882812,7.5931649208069985]]],[[[99.10037231445307,7.593760013580436],[99.09568023681646,7.59368896484375],[99.09234619140636,7.596879959106559],[99.09297180175798,7.602074146270866],[99.1005935668947,7.600488185882568],[99.10269927978533,7.597010135650578],[99.10037231445307,7.593760013580436]]],[[[99.14006805419939,7.640276908874512],[99.14588928222662,7.638833999633903],[99.15000152587908,7.627500057220516],[99.14499664306652,7.624444007873592],[99.14006805419939,7.640276908874512]]],[[[99.03784179687517,7.651319980621338],[99.04824829101591,7.643838882446232],[99.05245208740263,7.636660099029655],[99.0567398071289,7.618450164794979],[99.05986785888678,7.612399101257324],[99.06437683105469,7.61288595199585],[99.08027648925787,7.597499847412223],[99.08135223388672,7.589920043945369],[99.07695770263672,7.580784797668457],[99.07601165771484,7.57209491729742],[99.07701110839866,7.560706138610897],[99.08186340332043,7.5479111671447185],[99.08741760253923,7.5435571670532795],[99.08784484863281,7.538238048553467],[99.095756530762,7.530964851379508],[99.09760284423834,7.524312019348088],[99.10083770751959,7.521339893341121],[99.10354614257818,7.510250091552791],[99.10680389404325,7.506574153900203],[99.11007690429699,7.498240947723332],[99.11186218261719,7.490271091461295],[99.10988616943371,7.482126235961914],[99.10530853271496,7.477142810821647],[99.10285949707026,7.470023155212402],[99.09950256347662,7.469637870788631],[99.08956146240234,7.474271774292049],[99.08886718750006,7.4807848930359455],[99.08399963378923,7.483027935028076],[99.08265686035173,7.486991882324162],[99.07732391357439,7.488234043121338],[99.07369995117205,7.497354984283504],[99.07010650634766,7.496315956115836],[99.06101226806646,7.510903835296688],[99.05722045898466,7.519443988799992],[99.05388641357422,7.522819995880127],[99.04578399658232,7.544892787933463],[99.03778076171903,7.558610916137695],[99.03333282470726,7.570278167724609],[99.03138732910156,7.578053951263428],[99.03118133544922,7.594440937042236],[99.03433990478544,7.601561069488525],[99.0273666381836,7.621480941772461],[99.03221893310553,7.630973815918082],[99.02805328369169,7.641110897064323],[99.02399444580101,7.644614219665584],[99.03150177001964,7.646977901458797],[99.03784179687517,7.651319980621338]]],[[[99.0677795410158,7.6883330345154945],[99.07611083984403,7.686670780181828],[99.09165954589844,7.680099964141959],[99.10028839111351,7.679979801177922],[99.10941314697271,7.686319828033447],[99.11585998535173,7.679663181305045],[99.12097930908197,7.672556877136287],[99.12328338623064,7.663670063018799],[99.12859344482433,7.655779838562069],[99.13078308105474,7.648039817810115],[99.12709045410173,7.634047985076961],[99.11888885498064,7.6280608177186195],[99.12095642089855,7.612411975860539],[99.12431335449241,7.608652114868221],[99.12097930908197,7.6023340225220295],[99.12350463867188,7.592171192169303],[99.11952972412115,7.587245941162109],[99.11588287353516,7.587070941925106],[99.11663818359375,7.598346233368034],[99.10639190673851,7.602499961853084],[99.10134124755876,7.601240158081055],[99.09166717529297,7.6047229766845135],[99.09139251708996,7.598609924316406],[99.08777618408214,7.594721794128475],[99.0841674804687,7.595560073852653],[99.0708312988283,7.608061790466422],[99.06916809082037,7.613889217376709],[99.06379699707031,7.6197810173035805],[99.05948638916021,7.62112998962408],[99.05666351318388,7.626944065094051],[99.0569152832033,7.633072853088493],[99.05488586425804,7.635871887207088],[99.05313873291016,7.644854068756217],[99.05084991455078,7.648046970367375],[99.03916931152361,7.653888225555363],[99.0413665771485,7.664323806762752],[99.04131317138672,7.670761108398494],[99.03937530517595,7.678878784179631],[99.03943634033226,7.68441915512085],[99.04733276367199,7.686770915985164],[99.04994201660179,7.685300827026481],[99.0585327148438,7.687760829925651],[99.0677795410158,7.6883330345154945]]],[[[99.19166564941412,7.6908330917359535],[99.19333648681646,7.688055038452148],[99.19027709960938,7.682221889495963],[99.18666839599615,7.687500953674316],[99.19166564941412,7.6908330917359535]]],[[[99.1194458007812,7.695833206176815],[99.11333465576183,7.709166049957332],[99.11750030517607,7.710280895233154],[99.12139129638689,7.700555801391658],[99.1194458007812,7.695833206176815]]],[[[99.12388610839844,7.743610858917236],[99.12966918945335,7.738258838653678],[99.13009643554716,7.7323861122132485],[99.12464904785156,7.733636856079215],[99.1208267211914,7.739731788635368],[99.12388610839844,7.743610858917236]]],[[[99.136703491211,7.756002902984562],[99.13627624511719,7.751841068267936],[99.13222503662104,7.743888854980582],[99.12777709960943,7.751111030578613],[99.12952423095732,7.760840892791748],[99.13278961181652,7.768911838531608],[99.1355590820313,7.768332958221492],[99.136703491211,7.756002902984562]]],[[[98.77278137207037,7.763480186462459],[98.77336120605474,7.761332988739014],[98.7802124023438,7.758487224578914],[98.7806854248048,7.755845069885311],[98.78848266601591,7.742897033691463],[98.78866577148466,7.7363128662109375],[98.79239654541016,7.728909969329834],[98.78170776367188,7.73051309585577],[98.77928161621116,7.734854221343994],[98.76899719238287,7.737960815429801],[98.76583862304705,7.734620094299316],[98.7685546875,7.72966289520275],[98.76814270019548,7.725999832153434],[98.77038574218761,7.717363834381047],[98.76611328125006,7.719167232513371],[98.75666809082026,7.731944084167594],[98.75722503662121,7.741944789886418],[98.75861358642595,7.74472093582159],[98.76873016357422,7.740021228790226],[98.77359008789091,7.743864059448185],[98.77190399169933,7.752406120300293],[98.76531982421875,7.754065036773795],[98.76073455810547,7.759478092193717],[98.76557159423834,7.764341831207389],[98.75992584228533,7.777514934539795],[98.75605010986357,7.783670902252254],[98.7583694458009,7.786073207855225],[98.76224517822266,7.779162883758659],[98.77278137207037,7.763480186462459]]],[[[98.99781799316406,7.7959351539612385],[98.99338531494158,7.801365852356014],[98.99690246582037,7.8030009269714355],[98.99781799316406,7.7959351539612385]]],[[[99.02171325683616,7.834959030151424],[99.02219390869158,7.831236839294547],[99.01626586914057,7.829119205474967],[99.01661682128918,7.834910869598389],[99.02171325683616,7.834959030151424]]],[[[98.99413299560541,7.818584918975887],[98.98773956298834,7.8165478706361],[98.98197937011719,7.8295087814331055],[98.98506164550787,7.839224815368766],[98.99166870117205,7.84221792221075],[98.99170684814453,7.836979866027832],[98.99550628662126,7.833057880401611],[98.9933547973634,7.8266119956970215],[98.99413299560541,7.818584918975887]]],[[[99.066947937012,7.852222919464225],[99.07168579101585,7.851618766784668],[99.07519531249994,7.844145774841365],[99.07198333740251,7.8433799743651775],[99.06485748291044,7.849761962890739],[99.066947937012,7.852222919464225]]],[[[99.04895019531256,7.852993011474609],[99.05999755859375,7.852222919464225],[99.06833648681635,7.843609809875431],[99.0796813964846,7.838651180267391],[99.08833312988293,7.838890075683707],[99.09819793701195,7.843331813812313],[99.10124969482445,7.8387489318848225],[99.09777832031256,7.8350000381470295],[99.09638977050798,7.8291668891907875],[99.10200500488304,7.824798107147274],[99.10061645507812,7.820495128631535],[99.10353851318382,7.8190388679504395],[99.11123657226574,7.821680068969783],[99.11708068847679,7.825422763824406],[99.12117767334001,7.81993913650507],[99.1268768310548,7.817788124084473],[99.12854003906256,7.8149409294129555],[99.12722015380888,7.804720878601131],[99.12927246093773,7.798460960388184],[99.12995910644548,7.783295154571647],[99.12555694580072,7.772222995758057],[99.11972045898443,7.768890857696533],[99.11611175537132,7.760834217071533],[99.11264038085938,7.75639009475708],[99.11591339111334,7.753130912780875],[99.11215209960966,7.739180088043327],[99.1067962646485,7.739669799804801],[99.10806274414062,7.728490829467773],[99.10888671875006,7.710556983947697],[99.1030578613283,7.696667194366455],[99.09944152832048,7.693055152893066],[99.09139251708996,7.6900010108947185],[99.0853500366211,7.69013786315918],[99.07868194580078,7.6930527687072185],[99.06805419921898,7.694445133209342],[99.06333160400419,7.700555801391658],[99.06111145019548,7.696785926818961],[99.05222320556663,7.696942806243953],[99.04194641113287,7.702221870422477],[99.0359954833985,7.7161269187927815],[99.02467346191423,7.746798992156982],[99.02026367187494,7.765152931213379],[99.02694702148432,7.773889064788875],[99.02253723144543,7.7853808403015705],[99.02749633789074,7.791460990905875],[99.02881622314482,7.796529769897461],[99.0260086059572,7.803239822387809],[99.02527618408203,7.809439182281494],[99.01944732666044,7.814166069030875],[99.01721954345697,7.820833206176701],[99.01812744140653,7.827776908874512],[99.02729034423857,7.82882118225109],[99.02999877929682,7.827498912811393],[99.04312133789091,7.833473205566463],[99.04555511474632,7.839722156524772],[99.04471588134783,7.84610986709589],[99.04895019531256,7.852993011474609]]],[[[98.95522308349604,7.857011795044002],[98.96115112304705,7.854228973388786],[98.97329711914091,7.852379798889217],[98.97547912597673,7.84833908081049],[98.97587585449219,7.839464187622127],[98.97910308837908,7.83364820480341],[98.98555755615229,7.8186101913453285],[98.98309326171892,7.812940120697078],[98.98574829101557,7.80689096450817],[98.98474121093778,7.801600933075008],[98.99297332763683,7.795444965362549],[98.99170684814453,7.7867817878723145],[98.98500061035173,7.783723831176815],[98.9793548583985,7.793683052062988],[98.97084808349621,7.803380966186467],[98.96939849853516,7.80873012542736],[98.96124267578148,7.820940017700252],[98.9543228149414,7.827761173248405],[98.94818115234392,7.83168983459484],[98.9418258666995,7.837729930877742],[98.93618011474626,7.8370299339295],[98.93599700927751,7.842456817626953],[98.93904113769548,7.853196144104118],[98.9457092285158,7.853085041046143],[98.94793701171903,7.856249809265194],[98.95522308349604,7.857011795044002]]],[[[99.01139831542974,7.884390830993709],[99.02114105224632,7.884574890136776],[99.02764129638678,7.872220039367619],[99.03699493408232,7.868216037750244],[99.04041290283209,7.860770225525016],[99.03711700439453,7.852573871612606],[99.03305816650408,7.850851058960075],[99.03327178955095,7.8449749946595375],[99.02887725830095,7.839207172393856],[99.0230560302735,7.839722156524772],[99.01875305175798,7.8362298011779785],[99.01395416259777,7.838160991668701],[99.0027923583985,7.866337776184082],[99.00254058837908,7.874724864959717],[99.00530242919945,7.882888793945369],[99.01139831542974,7.884390830993709]]],[[[99.05496978759777,7.883880138397217],[99.05069732666038,7.880294799804631],[99.04470062255876,7.883930206298885],[99.05750274658203,7.893610000610408],[99.05496978759777,7.883880138397217]]],[[[99.07193756103527,7.9145030975342365],[99.08015441894526,7.914902210235709],[99.08083343505882,7.904723167419434],[99.07888793945312,7.899166107177791],[99.07444763183611,7.892777919769401],[99.06941223144537,7.881378173828182],[99.06555938720709,7.876398086547852],[99.05837249755888,7.877525806427116],[99.06361389160156,7.90083217620861],[99.06420135498047,7.915185928344783],[99.0662078857423,7.920330047607479],[99.07193756103527,7.9145030975342365]]],[[[98.99858856201172,7.923902034759578],[99.00694274902361,7.919960975647086],[99.01241302490263,7.910220146179256],[99.01245117187494,7.9032869338990395],[99.00544738769531,7.903077125549316],[99.0025100708009,7.906374931335449],[98.99614715576195,7.9223017692567055],[98.99858856201172,7.923902034759578]]],[[[98.98390197753906,7.927770137786979],[98.98972320556652,7.9264001846314045],[98.99416351318376,7.919166088104248],[98.9952774047851,7.90972280502325],[99.00044250488298,7.898330211639404],[98.99500274658226,7.8913898468018715],[98.99223327636713,7.881100177764893],[98.99223327636713,7.874440193176326],[98.99472045898455,7.862222194671688],[98.99361419677734,7.85166692733776],[98.9894409179688,7.8511109352112385],[98.98805236816423,7.860834121704215],[98.9863891601563,7.8627781867981525],[98.9847259521485,7.872220039367619],[98.97693634033232,7.884440898895377],[98.9744415283206,7.896666049957332],[98.97166442871111,7.904445171356258],[98.96806335449219,7.924170970916805],[98.97222137451189,7.926671028137264],[98.98390197753906,7.927770137786979]]],[[[99.00105285644531,7.932271003723258],[98.99734497070341,7.93351507186901],[98.99376678466814,7.939326763153133],[98.99954986572271,7.939880847931022],[99.00105285644531,7.932271003723258]]],[[[99.07111358642601,7.933319091796818],[99.06691741943382,7.935568809509391],[99.06714630126982,7.939839839935246],[99.07631683349621,7.949268817901668],[99.07825469970697,7.94494104385376],[99.07520294189447,7.936590194702205],[99.07111358642601,7.933319091796818]]],[[[99.09424591064464,7.946454048156738],[99.09507751464844,7.9512038230896],[99.10019683837908,7.956500053405762],[99.10163116455101,7.9525799751282875],[99.09424591064464,7.946454048156738]]],[[[98.81055450439459,7.957500934600944],[98.80999755859398,7.952499866485539],[98.80249786376953,7.952778816223201],[98.80500030517584,7.957222938537598],[98.81055450439459,7.957500934600944]]],[[[98.81260681152344,7.973948955535889],[98.8091201782226,7.967791080474967],[98.80278015136747,7.9699997901915935],[98.80777740478527,7.974721908569336],[98.81260681152344,7.973948955535889]]],[[[98.6372528076173,8.245560646057243],[98.64041900634771,8.247511863708553],[98.64369964599638,8.24440956115734],[98.64090728759783,8.237731933593693],[98.6372528076173,8.245560646057243]]],[[[98.62120056152372,8.289357185363713],[98.62512969970703,8.280792236328239],[98.62541198730497,8.27301120758068],[98.62846374511747,8.265236854553223],[98.6333236694336,8.26273632049572],[98.64015197753923,8.256677627563477],[98.63346862792986,8.2538480758667],[98.63096618652355,8.25884819030756],[98.6245727539063,8.263013839721793],[98.62429809570307,8.273013114929256],[98.62179565429699,8.276347160339355],[98.6194686889649,8.288962364196891],[98.62120056152372,8.289357185363713]]],[[[98.69692230224638,8.288114547729549],[98.69969940185547,8.296358108520508],[98.70330047607439,8.294962882995662],[98.70162963867193,8.289970397949332],[98.69692230224638,8.288114547729549]]],[[[99.29148101806652,8.31287956237793],[99.29910278320324,8.315299987793026],[99.29843139648443,8.307340621948242],[99.30314636230486,8.306579589843693],[99.30773162841814,8.301630020141715],[99.31307220459001,8.299980163574219],[99.31730651855469,8.294470787048397],[99.32399749755865,8.29601192474371],[99.33043670654314,8.290951728820858],[99.33180999755865,8.285920143127498],[99.33090972900396,8.28034973144537],[99.33386230468767,8.267080307006836],[99.33310699462908,8.25846958160406],[99.32405853271513,8.252739906311092],[99.32022857666021,8.242611885070744],[99.31664276123058,8.24205112457281],[99.31307220459001,8.23558139801031],[99.31938171386719,8.214001655578556],[99.32182312011713,8.208560943603572],[99.31978607177734,8.201960563659668],[99.31501007080078,8.193060874939079],[99.31125640869146,8.194160461425838],[99.30732727050776,8.191640853881893],[99.30609893798851,8.186939239501953],[99.30835723876959,8.176719665527344],[99.30326080322294,8.170001029968319],[99.2898559570313,8.164150238037223],[99.29067993164091,8.153440475463867],[99.29927825927763,8.140930175781307],[99.29696655273466,8.140121459960938],[99.29676818847662,8.131951332092285],[99.34645080566423,8.135330200195312],[99.38523101806646,8.10792160034191],[99.39179992675793,8.090070724487305],[99.39330291748075,8.083660125732536],[99.39308166503912,8.070960998535213],[99.39205932617188,8.065441131591797],[99.3961715698245,8.041219711303654],[99.4009475708009,8.033598899841422],[99.4019012451173,8.027680397033748],[99.40553283691418,8.020660400390739],[99.4044265747072,8.01544094085699],[99.41583251953136,8.00177097320568],[99.41470336914057,7.9988188743592445],[99.40946197509788,7.996380805969181],[99.3984832763673,7.984269142150822],[99.39324188232428,7.962639808654842],[99.39736175537126,7.956021785736198],[99.39668273925804,7.953731060028076],[99.38964843750006,7.948361873626766],[99.38700103759794,7.942479133606014],[99.38401794433611,7.941329956054631],[99.36817932128923,7.946390151977539],[99.36392974853544,7.94370079040533],[99.36437225341814,7.9375901222229],[99.35671997070307,7.931899070739803],[99.34558105468773,7.931759834289551],[99.33322143554716,7.928130149841422],[99.33345031738276,7.9189109802245525],[99.32657623291027,7.920720100402832],[99.32116699218773,7.919720172882137],[99.31733703613304,7.915060997009334],[99.31278991699224,7.913301944732666],[99.30980682373041,7.906240940094108],[99.30309295654325,7.900420188903865],[99.3047714233399,7.891530990600586],[99.31005859375,7.887010097503719],[99.31787109375,7.886940956115836],[99.31224060058622,7.878600120544434],[99.30536651611357,7.877911090850887],[99.29235839843773,7.865159034729061],[99.28936767578136,7.860600948333797],[99.28380584716825,7.857649803161678],[99.27908325195324,7.852879047393799],[99.27790069580107,7.848108768463192],[99.28198242187517,7.840950012207145],[99.28804779052746,7.836309909820557],[99.28994750976574,7.829459190368709],[99.29450225830107,7.824930191040096],[99.29415130615246,7.818769931793213],[99.28832244873053,7.816319942474422],[99.28887939453125,7.8093299865723225],[99.2997665405274,7.80912017822277],[99.30422210693388,7.807859897613639],[99.3038024902346,7.802091121673698],[99.30088806152344,7.79374980926525],[99.30171203613304,7.788119792938346],[99.29206085205072,7.778509140014705],[99.28882598876947,7.772959232330379],[99.29068756103544,7.7662792205811115],[99.28978729248064,7.76161098480236],[99.29511260986322,7.757360935211182],[99.3015823364259,7.7550201416015625],[99.30680847167969,7.754800796508903],[99.30757141113281,7.739731788635368],[99.31133270263666,7.7355499267578125],[99.31183624267584,7.726769924163875],[99.3081283569336,7.720510005950928],[99.31025695800787,7.711609840393123],[99.30764770507841,7.700900077819824],[99.29899597167969,7.691510200500545],[99.28563690185547,7.686998844146842],[99.2865371704101,7.681021213531608],[99.28202819824224,7.680262088775692],[99.27880859375023,7.681419849395866],[99.2703628540039,7.674619197845516],[99.26361083984403,7.664999008178768],[99.25835418701172,7.659677028656063],[99.25474548339844,7.659759044647217],[99.24665832519543,7.667459964752197],[99.24722290039074,7.671390056610221],[99.24330902099615,7.677071094512883],[99.24454498291027,7.680480957031307],[99.25255584716808,7.68618106842041],[99.25015258789062,7.688011169433707],[99.24291229248047,7.6822590827941895],[99.226318359375,7.671339035034293],[99.22321319580072,7.6754350662231445],[99.21349334716814,7.677734851837215],[99.20812988281261,7.675640106201229],[99.20394134521479,7.6692609786987305],[99.19623565673851,7.671136856079102],[99.1980972290039,7.678269863128662],[99.20153045654297,7.6792497634887695],[99.20632171630865,7.687160968780518],[99.2022171020509,7.698608875274772],[99.19711303710955,7.691281795501823],[99.19118499755876,7.694572925567741],[99.19000244140636,7.7030558586120605],[99.19829559326178,7.711371898651237],[99.20288848876959,7.724545955657959],[99.19851684570335,7.722922801971492],[99.19715118408209,7.712172031402588],[99.18542480468761,7.702827930450383],[99.18004608154325,7.703189849853459],[99.1761474609375,7.707642078399658],[99.17610931396501,7.714721202850399],[99.17250061035173,7.72027683258068],[99.1702804565432,7.726943969726506],[99.1588897705081,7.738609790802059],[99.15334320068388,7.74166917800909],[99.14752197265642,7.7400898933410645],[99.14015197753929,7.745948791503963],[99.1380538940432,7.751111030578613],[99.1386108398438,7.759165763855037],[99.13531494140642,7.771215915680045],[99.13639068603544,7.777499198913631],[99.13927459716808,7.783267974853629],[99.14749908447283,7.788055896759147],[99.14488220214844,7.789925098419246],[99.1349029541015,7.784519195556641],[99.13194274902366,7.7892122268677895],[99.13194274902366,7.79472017288208],[99.12840270996105,7.806090831756649],[99.12970733642607,7.816125869750977],[99.12168884277372,7.8216638565064045],[99.11931610107422,7.825541019439697],[99.11513519287115,7.825944900512809],[99.11241149902361,7.823329925537223],[99.1027450561524,7.819793224334717],[99.10182189941429,7.826619148254338],[99.09709167480497,7.830254077911377],[99.1021499633789,7.8394532203674885],[99.09971618652366,7.843891143798885],[99.08549499511713,7.840114116668758],[99.07805633544916,7.84250020980835],[99.07554626464872,7.846391201019344],[99.07416534423851,7.8536109924316975],[99.07153320312528,7.8559699058532715],[99.06626129150408,7.8548102378845215],[99.06392669677746,7.862610816955566],[99.06558227539085,7.86922121047985],[99.07389068603533,7.8783330917359535],[99.07889556884771,7.889963150024471],[99.08300018310558,7.8921380043029785],[99.08032226562511,7.896380901336727],[99.08463287353521,7.906871795654411],[99.08528137207043,7.919166088104248],[99.08662414550793,7.92328405380249],[99.09329986572277,7.927680969238338],[99.09243774414068,7.931750774383659],[99.07795715332037,7.918391227722168],[99.07228851318388,7.915619850158691],[99.06997680664068,7.917507171630916],[99.07173919677746,7.922987937927189],[99.08175659179693,7.9400911331177895],[99.08471679687511,7.942500114441032],[99.09694671630854,7.945750236511344],[99.10308837890625,7.951701164245549],[99.10134124755876,7.962029933929557],[99.0979080200197,7.956018924713135],[99.08305358886736,7.94970178604126],[99.08055877685564,7.953887939453239],[99.07333374023438,7.9486122131348225],[99.06727600097662,7.9425787925720215],[99.06508636474604,7.936120033264217],[99.06711578369146,7.928531169891301],[99.05999755859375,7.920000076294059],[99.05689239501947,7.907485008239803],[99.05290222167986,7.902829170227108],[99.04686737060553,7.8990020751953125],[99.04110717773438,7.897500038146973],[99.03778076171903,7.894443988800049],[99.02748870849621,7.889269828796444],[99.02501678466808,7.8909502029418945],[99.02004241943388,7.901131153106746],[99.02055358886741,7.914443016052246],[99.01555633544922,7.925278186798096],[99.00897979736357,7.928080081939811],[99.00416564941429,7.932222843170223],[98.99949645996111,7.9416699409486],[98.99214172363304,7.941555976867733],[98.98325347900402,7.937922954559326],[98.97819519042974,7.939568996429443],[98.9742126464846,7.9361071586609455],[98.97058868408226,7.93615913391119],[98.96665191650402,7.945662975311279],[98.95433807373047,7.967431068420524],[98.94668579101562,7.9775891304015545],[98.94251251220703,7.9874348640441895],[98.94506835937528,7.994290828704891],[98.95277404785173,7.996943950653133],[98.96055603027355,7.991666793823242],[98.95722198486334,8.000000000000057],[98.95841217041044,8.00416564941412],[98.95751190185541,8.010893821716422],[98.96156311035156,8.022871017456168],[98.96142578125006,8.026260375976562],[98.96747589111328,8.038459777832031],[98.95866394042963,8.030571937561149],[98.95279693603516,8.027777671813965],[98.9589233398438,8.024276733398551],[98.95545959472656,8.018351554870662],[98.95236968994135,8.004920959472713],[98.95034027099615,8.005359649658203],[98.94338989257824,8.0146999359132],[98.91948699951178,8.035420417785701],[98.91889190673834,8.03777885437023],[98.92414855957048,8.047030448913688],[98.92250061035162,8.060561180114746],[98.92028045654325,8.06166744232172],[98.91931152343778,8.050118446350098],[98.91253662109392,8.044992446899414],[98.90676116943371,8.046386718750114],[98.9000091552735,8.053693771362305],[98.89043426513672,8.058263778686523],[98.88059997558622,8.056847572326717],[98.88015747070318,8.054087638855094],[98.89081573486328,8.054697036743164],[98.89911651611357,8.050217628479118],[98.90277862548822,8.045697212219295],[98.9029693603515,8.039795875549316],[98.89579772949224,8.031185150146541],[98.89237213134771,8.030393600463867],[98.88468933105486,8.022192001342773],[98.88022613525419,8.020236015319824],[98.86846160888689,8.028079032898006],[98.86370086669939,8.029330253601017],[98.85675811767607,8.024817466735954],[98.84872436523443,8.01303863525385],[98.84157562255876,8.010224342346191],[98.84410858154303,8.00634956359869],[98.84339141845709,8.001749992370662],[98.83734130859386,8.006011962890625],[98.83801269531256,8.010354042053336],[98.8349380493164,8.0166597366333],[98.82932281494152,8.019341468811149],[98.82634735107422,8.027100563049373],[98.81476593017601,8.03695392608654],[98.81529235839844,8.039410591125545],[98.80773162841825,8.04399394989025],[98.79965972900396,8.046322822570914],[98.79380798339872,8.044816970825195],[98.78443145751976,8.045030593872127],[98.77789306640625,8.041625976562614],[98.7726364135745,8.041086196899528],[98.77150726318388,8.036994934082088],[98.77332305908203,8.023651123046932],[98.76898956298851,8.021168708801213],[98.7647552490235,8.02371883392334],[98.7639465332033,8.029154777526855],[98.76523590087902,8.03681945800787],[98.75816345214872,8.04919338226324],[98.74950408935553,8.054395675659123],[98.74397277832037,8.064654350280762],[98.74388885498041,8.074812889099064],[98.74059295654325,8.076913833618221],[98.74284362792974,8.086272239685002],[98.74658203125017,8.090044021606502],[98.74704742431663,8.101085662841797],[98.7456359863283,8.113101959228516],[98.74820709228521,8.121330261230582],[98.75222015380865,8.122506141662711],[98.75698852539068,8.13200473785406],[98.75578308105469,8.136599540710506],[98.75115203857439,8.137471199035758],[98.75090026855497,8.145670890808049],[98.74459838867216,8.141094207763786],[98.7435913085938,8.135708808898983],[98.73639678955107,8.134305000305176],[98.74066162109392,8.14237117767334],[98.73812866210966,8.157479286193848],[98.74342346191429,8.159763336181754],[98.74653625488293,8.16501235961914],[98.74787902832043,8.177597045898551],[98.75100708007812,8.181778907775936],[98.75023651123047,8.190682411193848],[98.7480850219726,8.196142196655273],[98.74865722656244,8.200856208801213],[98.75241088867193,8.204995155334473],[98.74610900878912,8.206110954284782],[98.74306488037115,8.209495544433537],[98.74747467041044,8.215677261352539],[98.74166870117188,8.2156019210816],[98.73661041259794,8.230792045593262],[98.73913574218767,8.236529350280762],[98.73082733154303,8.238059997558707],[98.72754669189453,8.250540733337402],[98.73070526123058,8.266014099121094],[98.72483062744158,8.267070770263672],[98.72757720947271,8.258530616760368],[98.72555541992199,8.254445075988713],[98.72470855712896,8.246870994567814],[98.72138977050776,8.240150451660213],[98.7230148315432,8.232212066650447],[98.71598052978521,8.220554351806697],[98.70848083496094,8.222879409790153],[98.71250152587896,8.229998588562012],[98.71944427490263,8.251388549804744],[98.71766662597662,8.256070137023983],[98.71896362304688,8.264407157898006],[98.71250152587896,8.265833854675236],[98.7119903564456,8.268659591674862],[98.7152023315432,8.275340080261344],[98.71115875244146,8.28525352478033],[98.70686340332043,8.286845207214355],[98.70616149902361,8.29902267456066],[98.70912933349638,8.310420036316032],[98.70711517334001,8.314793586731014],[98.69937896728521,8.308691024780273],[98.68296813964866,8.30257606506359],[98.67893218994146,8.296422004699707],[98.66836547851557,8.292287826538086],[98.65992736816435,8.286371231079215],[98.6527938842774,8.276087760925407],[98.64704132080078,8.276981353759766],[98.64295196533232,8.28248119354248],[98.6358261108399,8.286179542541618],[98.6282501220706,8.282384872436523],[98.6245727539063,8.295072555542106],[98.63027954101562,8.298334121704158],[98.62555694580101,8.305756568908748],[98.62570190429688,8.31295490264904],[98.63147735595709,8.3162136077882],[98.6305465698245,8.323551177978572],[98.63648986816418,8.329899787902889],[98.63517761230463,8.34756088256836],[98.63841247558588,8.347579956054801],[98.63964843750006,8.354820251464957],[98.63700103759788,8.356876373291016],[98.63449096679693,8.36614990234375],[98.63659667968756,8.371061325073242],[98.64440155029303,8.373871803283748],[98.65245819091803,8.369855880737248],[98.65216827392595,8.37399005889904],[98.65795898437506,8.375880241394157],[98.66929626464855,8.383720397949276],[98.66217041015648,8.395039558410645],[98.6566696166995,8.401390075683537],[98.64694976806669,8.407065391540641],[98.64531707763689,8.412372589111328],[98.65006256103533,8.418649673461914],[98.65454864501976,8.422311782836971],[98.66310119628912,8.423931121826286],[98.66608428955095,8.428559303283691],[98.66627502441423,8.435631752014217],[98.66395568847668,8.440759658813477],[98.66603851318388,8.448246955871582],[98.6645584106447,8.453561782836914],[98.66324615478533,8.465991973876953],[98.65981292724626,8.471509933471793],[98.65727996826183,8.47130012512207],[98.65383911132824,8.476631164550838],[98.64900207519537,8.48085021972662],[98.65367889404291,8.483600616455135],[98.66484832763695,8.501860618591422],[98.672836303711,8.5118408203125],[98.67735290527361,8.526990890503043],[98.67767333984403,8.53837108612072],[98.67968750000006,8.542810440063477],[98.6832580566408,8.55708026885992],[98.69148254394531,8.572080612182617],[98.6906280517581,8.575851440429801],[98.69483947753935,8.57874965667719],[98.69738769531267,8.583831787109432],[98.70630645751964,8.595380783081055],[98.70635986328125,8.602781295776367],[98.70317077636724,8.60447025299078],[98.70146942138695,8.627470970153865],[98.70316314697271,8.632069587707633],[98.70555114746088,8.62974071502697],[98.71182250976574,8.632231712341365],[98.71820068359375,8.632170677185059],[98.72133636474638,8.629141807556152],[98.73432159423857,8.65060043334961],[98.73712921142601,8.659690856933594],[98.74201202392595,8.664869308471737],[98.74601745605486,8.673500061035213],[98.7604293823245,8.672189712524471],[98.76434326171875,8.665040016174316],[98.7716827392581,8.657560348510742],[98.77715301513678,8.655611991882381],[98.78546142578136,8.64664077758789],[98.79544830322266,8.640361785888729],[98.80004119873053,8.647231101989746],[98.80020141601562,8.65525054931635],[98.8234100341798,8.654569625854549],[98.84355926513695,8.654879570007381],[98.85585784912104,8.630721092224178],[98.86219787597656,8.624381065368652],[98.87226867675798,8.625839233398551],[98.87594604492188,8.62462043762207],[98.87812042236357,8.62058067321783],[98.88797760009771,8.618061065673885],[98.89109039306669,8.611141204833984],[98.90177154541044,8.599227905273438],[98.90972137451178,8.594339370727596],[98.91239929199224,8.589249610900993],[98.9119262695312,8.585079193115291],[98.91689300537104,8.57907962799078],[98.92167663574236,8.575738906860465],[98.92455291748064,8.568400382995605],[98.9318466186524,8.566671371460075],[98.93553161621122,8.561030387878475],[98.93560028076189,8.557359695434627],[98.93244171142601,8.550140380859489],[98.93337249755865,8.541231155395451],[98.93582916259766,8.536421775817871],[98.94132232666033,8.532130241394043],[98.94243621826183,8.52174186706543],[98.94255065917991,8.507740974426213],[98.94570159912126,8.496609687805233],[98.94964599609403,8.492429733276424],[98.94940948486334,8.485030174255428],[98.9469604492188,8.482879638671875],[98.94818115234392,8.470460891723746],[98.9454803466798,8.468330383300724],[98.944351196289,8.459881782531738],[98.94017791748064,8.455959320068416],[98.94220733642607,8.451730728149528],[98.93855285644554,8.440600395202637],[98.94271850585943,8.434970855712947],[98.94423675537115,8.429442405700684],[98.94776916503918,8.424490928649902],[98.9532928466798,8.423431396484432],[98.9710769653322,8.41609001159668],[98.99405670166038,8.396309852600098],[98.99695587158232,8.392330169677678],[99.0047302246096,8.386851310730037],[99.0255813598634,8.370491981506461],[99.03813171386724,8.36371994018549],[99.04936218261741,8.360461235046387],[99.06179809570341,8.359901428222713],[99.07164001464844,8.361969947814941],[99.07398986816412,8.363640785217228],[99.08406066894537,8.362261772155819],[99.09430694580095,8.364491462707463],[99.11022186279303,8.366241455078239],[99.12275695800781,8.366621971130485],[99.14057159423857,8.361190795898438],[99.15473175048822,8.354020118713436],[99.17984008789068,8.342890739440861],[99.20813751220697,8.33683967590332],[99.21724700927763,8.327870368957463],[99.23217010498041,8.317220687866154],[99.26304626464855,8.30187129974371],[99.27590942382812,8.30066108703619],[99.29020690917969,8.30874061584467],[99.29148101806652,8.31287956237793]]]]},"properties":{"ID_0":228,"ISO":"TH-81","NAME_0":"Thailand","ID_1":18,"NAME_1":"Krabi","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"กระบี่","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.69541931152372,19.381029129028434],[99.6978683471682,19.37799072265625],[99.69352722167997,19.360919952392578],[99.69686126708984,19.353099822998047],[99.70098114013683,19.35062980651867],[99.7023162841798,19.345420837402344],[99.70839691162138,19.343719482421932],[99.7084197998048,19.33580017089855],[99.71013641357433,19.328790664672965],[99.70300292968773,19.315538406372127],[99.6995773315432,19.304479598999137],[99.70014953613304,19.300600051879883],[99.70439147949247,19.29549026489252],[99.70417022705084,19.287719726562614],[99.70704650878935,19.272090911865234],[99.70506286621094,19.263620376586914],[99.70610046386747,19.256839752197322],[99.70435333251976,19.253139495849553],[99.70732879638689,19.2482204437257],[99.7052078247072,19.243278503418082],[99.70677947998047,19.23896026611328],[99.7127532958985,19.23563003540039],[99.71202087402372,19.22902107238781],[99.71624755859386,19.220310211181754],[99.71765899658203,19.213951110839787],[99.71620941162138,19.209751129150447],[99.7198104858399,19.20685005187994],[99.72360992431663,19.197710037231502],[99.72397613525396,19.190481185913086],[99.72712707519526,19.187219619751033],[99.7308883666995,19.178979873657283],[99.7279968261721,19.16761016845703],[99.73103332519537,19.16778182983404],[99.74067687988276,19.156549453735465],[99.7430191040039,19.151081085205192],[99.744369506836,19.142339706421012],[99.7519760131836,19.13641166687023],[99.75910186767584,19.13285064697277],[99.7604370117188,19.12729263305664],[99.75936889648432,19.116382598876896],[99.76161956787138,19.113590240478516],[99.7663269042971,19.093442916870174],[99.76477813720709,19.08929252624523],[99.77030944824224,19.076061248779354],[99.77577972412126,19.07446098327648],[99.77426147460955,19.06553268432623],[99.77510833740257,19.062299728393555],[99.7833709716798,19.05852127075201],[99.78555297851562,19.05401039123535],[99.79796600341803,19.05199050903326],[99.80696868896507,19.05652046203619],[99.81519317626982,19.05701065063488],[99.81759643554688,19.060340881347713],[99.82174682617205,19.058151245117188],[99.82276916503912,19.049591064453125],[99.82193756103533,19.044649124145508],[99.82528686523443,19.04095077514654],[99.83450317382824,19.038471221923885],[99.83107757568354,19.03009033203125],[99.83658599853527,19.025209426879883],[99.83423614501976,19.020269393921012],[99.83567047119158,19.016550064087028],[99.83165740966791,19.01217842102062],[99.83232879638695,19.00686073303217],[99.8375625610351,19.003379821777287],[99.84004211425776,18.999479293823356],[99.84678649902344,19.00213050842285],[99.85549163818354,19.00095939636236],[99.85861206054688,18.9985809326173],[99.87438201904291,18.994689941406307],[99.87902069091797,18.998050689697322],[99.8849792480471,18.997779846191463],[99.88568115234375,18.993379592895508],[99.89126586914085,18.986169815063533],[99.89492034912138,18.987400054931754],[99.90302276611345,18.98456954956066],[99.90818786621094,18.98097991943365],[99.9142303466798,18.985280990600643],[99.91748046874994,18.980670928955135],[99.92761230468767,18.977630615234318],[99.94161224365257,18.9582195281983],[99.9428787231447,18.951879501342773],[99.94650268554705,18.945270538330192],[99.94692993164068,18.940919876098633],[99.95252990722685,18.93845939636242],[99.95620727539057,18.93300056457531],[99.96351623535156,18.92761039733881],[99.96965789794945,18.9248104095459],[99.97296142578136,18.92009925842285],[99.9792098999024,18.916280746460018],[99.9812927246096,18.91806030273449],[99.99855804443376,18.90370941162115],[100.0043029785158,18.90555953979498],[100.01126861572294,18.902660369873104],[100.01416778564464,18.897489547729492],[100.01825714111328,18.89430046081543],[100.02533721923834,18.89441108703619],[100.03546905517601,18.900329589843864],[100.04177093505865,18.88912010192871],[100.04725646972662,18.883520126342887],[100.05217742919939,18.88414955139166],[100.06050872802746,18.878400802612248],[100.064208984375,18.873979568481445],[100.06806945800804,18.86496925354004],[100.07199096679705,18.86349105834961],[100.07167053222662,18.856309890747127],[100.0689163208009,18.8489608764649],[100.07028961181658,18.843601226806754],[100.06751251220726,18.84216117858881],[100.063529968262,18.832628250122127],[100.067855834961,18.827661514282283],[100.06848144531256,18.81534957885748],[100.07434844970709,18.815921783447322],[100.07493591308616,18.819179534912223],[100.08309173583984,18.82344055175787],[100.08995819091797,18.82555961608881],[100.09065246582043,18.822580337524528],[100.09767913818388,18.81855964660656],[100.09967041015642,18.813550949096623],[100.10565185546898,18.812561035156307],[100.1159591674807,18.806961059570312],[100.11762237548828,18.797510147094783],[100.1236114501956,18.796270370483455],[100.1272659301759,18.7881698608399],[100.12731933593767,18.7825603485108],[100.11669921875006,18.774419784546012],[100.11720275878923,18.764270782470817],[100.11080169677757,18.76083946228033],[100.10962677001959,18.756570816040153],[100.10280609130865,18.749519348144474],[100.10356903076178,18.736280441284293],[100.09926605224626,18.732339859008903],[100.09839630126976,18.727502822875977],[100.10307312011713,18.722669601440487],[100.10247039794933,18.713029861450252],[100.10508728027366,18.709430694580078],[100.10521697998047,18.703140258789176],[100.10975646972673,18.701080322265625],[100.11003875732445,18.689649581909237],[100.10675048828125,18.688739776611442],[100.10639953613287,18.682680130004883],[100.11044311523443,18.681560516357422],[100.113037109375,18.669742584228516],[100.10668182373058,18.661239624023438],[100.10880279541033,18.65666961669922],[100.10816955566435,18.650329589843693],[100.10486602783209,18.647151947021598],[100.10369110107422,18.637979507446232],[100.1012802124024,18.629610061645508],[100.10243988037138,18.625320434570426],[100.10736846923851,18.620140075683707],[100.10742187500028,18.616149902343864],[100.11376190185564,18.60947036743164],[100.12133026123075,18.604320526123047],[100.12184143066412,18.599002838134822],[100.11724853515625,18.59243011474615],[100.1124877929688,18.589420318603516],[100.11203765869135,18.58143043518072],[100.1137771606447,18.575189590454215],[100.1102218627932,18.572599411010856],[100.10843658447283,18.567489624023494],[100.11006927490263,18.559892654419002],[100.1032028198245,18.559879302978516],[100.09234619140653,18.571121215820426],[100.08737945556669,18.56825256347662],[100.08082580566412,18.560800552368164],[100.07747650146513,18.55892944335949],[100.07060241699247,18.560390472412053],[100.06453704833979,18.559169769287166],[100.05716705322266,18.555351257324162],[100.05657196044922,18.547260284423828],[100.05362701416044,18.54010009765625],[100.05475616455107,18.536310195922795],[100.05140686035173,18.527362823486442],[100.05764007568388,18.525230407714844],[100.05748748779291,18.514501571655273],[100.05261993408226,18.50914001464855],[100.0524520874024,18.500680923461914],[100.05075073242216,18.495439529419002],[100.04335784912121,18.485940933227653],[100.02923583984386,18.463809967041072],[100.02928161621111,18.461040496826172],[100.02288055419945,18.446031570434627],[100.00930023193365,18.443920135498047],[100.01570129394543,18.435949325561523],[100.00769805908197,18.420419692993164],[100.00576782226574,18.413011550903377],[100.00797271728521,18.410840988159237],[100.00170898437523,18.4007511138916],[99.99809265136724,18.400970458984432],[99.99208831787126,18.396800994873047],[99.98902893066423,18.390319824218864],[99.97936248779303,18.38920974731451],[99.96842193603533,18.39234924316412],[99.97157287597679,18.38701820373535],[99.96858978271496,18.381259918213004],[99.96273803710938,18.382320404052734],[99.95635986328153,18.37385177612299],[99.950927734375,18.361352920532283],[99.95255279541027,18.355360031128043],[99.94535064697283,18.353179931640625],[99.94094848632807,18.349161148071403],[99.9407424926759,18.33925056457531],[99.93844604492199,18.33587074279785],[99.93794250488281,18.326700210571232],[99.93373107910173,18.321132659912166],[99.92739868164057,18.310092926025447],[99.92487335205107,18.308401107788143],[99.92131042480486,18.299579620361385],[99.91565704345709,18.290340423583984],[99.91307830810558,18.284070968627873],[99.90792846679699,18.27832984924322],[99.89682006835943,18.278459548950195],[99.89026641845703,18.281520843505973],[99.88150787353521,18.28041076660162],[99.87621307373053,18.276712417602653],[99.86559295654308,18.278579711914006],[99.86016082763678,18.282560348510742],[99.85822296142578,18.27939033508295],[99.86003112792997,18.273571014404297],[99.85398864746111,18.262069702148494],[99.85066223144537,18.253170013427734],[99.84680938720709,18.25517082214361],[99.84162139892578,18.244150161743164],[99.8356399536134,18.23784065246582],[99.83455657958984,18.23451042175293],[99.82448577880865,18.236600875854492],[99.80860900878923,18.22117996215826],[99.8028106689456,18.21329116821289],[99.80049133300787,18.1982803344726],[99.7918472290039,18.190521240234375],[99.78919219970709,18.183481216430664],[99.78003692626959,18.172769546508732],[99.7742919921875,18.163118362426758],[99.76129913330095,18.14775085449213],[99.75533294677746,18.13932037353527],[99.75723266601591,18.133661270141715],[99.75573730468744,18.127689361572266],[99.762748718262,18.122039794921875],[99.76148986816423,18.119171142578125],[99.75438690185558,18.117750167846623],[99.74829101562511,18.10984992980957],[99.73998260498053,18.105840682983455],[99.73397827148449,18.09085845947277],[99.72792816162126,18.084140777587834],[99.72689056396513,18.079490661621094],[99.721733093262,18.068761825561523],[99.71566009521496,18.069690704345703],[99.71090698242199,18.067052841186523],[99.70803833007824,18.06933021545416],[99.70213317871105,18.065380096435604],[99.69132995605469,18.06283950805664],[99.69235229492193,18.05328178405756],[99.68476867675793,18.0488796234132],[99.68165588378929,18.043949127197266],[99.6709213256836,18.040319442748967],[99.65840148925787,18.039171218872127],[99.65229797363287,18.053630828857422],[99.64176940917974,18.054849624633903],[99.63395690917991,18.060770034790153],[99.62959289550787,18.059299468994254],[99.62034606933611,18.04693031311035],[99.61064910888672,18.04718971252447],[99.60591888427757,18.041130065917912],[99.5992965698245,18.036609649658317],[99.5957870483399,18.037149429321403],[99.58709716796903,18.033491134643555],[99.58962249755876,18.02630996704113],[99.58995819091825,18.020299911499023],[99.59279632568388,18.012670516967773],[99.59645843505871,18.008670806884766],[99.5827713012697,17.99966812133789],[99.57782745361328,17.994092941284237],[99.56587982177757,17.98933029174799],[99.56255340576189,17.98316192626953],[99.56263732910179,17.97529029846197],[99.55914306640625,17.971860885620117],[99.54512786865263,17.96897125244152],[99.53990936279303,17.96109962463379],[99.53433990478516,17.960069656372184],[99.52359008789074,17.954240798950195],[99.52303314208996,17.950149536132756],[99.51297760009766,17.941551208496037],[99.50881958007818,17.941829681396598],[99.50028991699247,17.930192947387695],[99.49584960937506,17.927659988403434],[99.49137115478527,17.92061042785656],[99.48522186279325,17.917930603027344],[99.48568725585955,17.914560317993164],[99.4769515991211,17.89270973205572],[99.47139739990234,17.891010284423885],[99.46752166748058,17.884532928466854],[99.46000671386741,17.88113975524908],[99.45279693603544,17.87565040588379],[99.45215606689453,17.871389389038086],[99.44403076171903,17.86210823059082],[99.44011688232422,17.861919403076115],[99.43164825439482,17.856639862060547],[99.42890930175787,17.850578308105412],[99.42350006103533,17.84902954101574],[99.42269897460949,17.842201232910156],[99.41812133789074,17.839559555053768],[99.4179916381836,17.8353595733642],[99.41470336914057,17.83056259155279],[99.41390991210966,17.823600769043026],[99.40390014648438,17.819770812988338],[99.40261840820318,17.81590080261236],[99.39539337158232,17.814060211181584],[99.39534759521507,17.807310104370174],[99.38784027099626,17.79210090637207],[99.38761901855463,17.789150238037166],[99.378227233887,17.779380798339957],[99.37004089355497,17.775510787963924],[99.37162780761736,17.770759582519588],[99.38230895996111,17.763040542602653],[99.38160705566412,17.760040283203125],[99.38632202148455,17.75304985046398],[99.3808517456057,17.748239517211914],[99.38382720947283,17.740760803222656],[99.40051269531273,17.734800338745117],[99.40719604492193,17.72477912902832],[99.41134643554693,17.722999572753906],[99.40970611572294,17.717359542846793],[99.41629028320312,17.709709167480526],[99.41815948486345,17.70421028137207],[99.42372131347656,17.70836067199707],[99.43138885498053,17.708679199218693],[99.43370056152366,17.706399917602653],[99.44531250000006,17.706422805786076],[99.45092773437511,17.707590103149414],[99.4573593139649,17.713750839233512],[99.45960235595709,17.720712661743278],[99.45687103271501,17.723331451416016],[99.46173095703148,17.73075103759777],[99.46707916259788,17.73575973510748],[99.47357940673834,17.736610412597713],[99.47957611084001,17.722049713134822],[99.47534179687511,17.714439392089844],[99.4764862060548,17.6951904296875],[99.47165679931663,17.688949584960994],[99.47779083251982,17.675710678100643],[99.47206878662138,17.668399810791016],[99.47164154052757,17.6640625],[99.46768951416044,17.660020828247127],[99.4583129882813,17.653930664062443],[99.45176696777344,17.651769638061637],[99.44905090332048,17.64313125610363],[99.45114135742182,17.62909126281744],[99.44811248779314,17.621208190918026],[99.4511032104495,17.615659713745174],[99.4511184692384,17.611579895019474],[99.45645904541027,17.60725021362316],[99.45256805419945,17.596431732177678],[99.44429779052751,17.602220535278377],[99.44265747070335,17.607440948486442],[99.42765045166027,17.607530593872127],[99.42328643798822,17.60378074645996],[99.42005920410173,17.594770431518555],[99.42388153076189,17.591279983520508],[99.41661071777338,17.58008003234869],[99.41481018066429,17.572080612182617],[99.42115020751982,17.56727027893072],[99.43096923828125,17.567188262939567],[99.4370422363283,17.560922622680664],[99.43235015869163,17.5496501922608],[99.43389129638695,17.539779663085994],[99.43950653076166,17.530969619750977],[99.43913269042986,17.524232864379996],[99.43032836914074,17.51855850219738],[99.422836303711,17.517520904541016],[99.4198989868164,17.503740310668945],[99.42270660400402,17.49863052368164],[99.41942596435575,17.493539810180778],[99.4207382202149,17.485710144042912],[99.41763305664062,17.47830009460455],[99.4115219116211,17.477518081665153],[99.40844726562517,17.47487068176264],[99.4083099365235,17.466600418090877],[99.41896057128906,17.45416069030773],[99.41587829589861,17.44822120666504],[99.42253112792963,17.44069862365734],[99.4293670654298,17.439279556274414],[99.433837890625,17.433290481567326],[99.4376831054688,17.43190956115734],[99.44296264648455,17.433708190918026],[99.44233703613293,17.42291069030756],[99.43997192382818,17.418510437011832],[99.43141937255865,17.416271209716854],[99.42874145507835,17.406459808349553],[99.43187713623041,17.399509429931697],[99.43093109130876,17.390850067138672],[99.44020843505888,17.389190673828068],[99.44442749023466,17.385610580444393],[99.44638061523455,17.37949943542486],[99.45063018798828,17.374532699585018],[99.46066284179699,17.367750167846793],[99.469711303711,17.367111206054688],[99.47322845459013,17.36191940307623],[99.47209930419933,17.354562759399414],[99.47445678710938,17.35384750366211],[99.4755325317384,17.34452056884777],[99.47776031494163,17.339958190918082],[99.47815704345709,17.32452011108404],[99.46573638916038,17.313159942627067],[99.46302795410156,17.308790206909293],[99.45754241943382,17.304550170898438],[99.4533386230471,17.29401969909668],[99.45307159423845,17.27923965454096],[99.45503234863287,17.273910522460994],[99.45427703857428,17.266439437866268],[99.45655822753912,17.264411926269645],[99.45706939697283,17.25255012512207],[99.4537277221682,17.250078201294002],[99.44406890869152,17.25127029418951],[99.44484710693354,17.24082756042486],[99.44077301025396,17.228479385375977],[99.43588256835932,17.227720260620174],[99.43319702148449,17.230058670044002],[99.4283294677735,17.229049682617244],[99.42002105712902,17.222520828247184],[99.42220306396484,17.218059539794922],[99.40627288818388,17.217548370361385],[99.4013214111331,17.21856117248535],[99.39778137207031,17.206819534301815],[99.39093780517584,17.2054901123048],[99.37866210937494,17.208259582519588],[99.37323760986351,17.212949752807617],[99.37040710449247,17.22015953063959],[99.37094879150413,17.225870132446346],[99.36691284179693,17.232700347900334],[99.361801147461,17.237091064453182],[99.35974121093778,17.246770858764705],[99.35202026367188,17.253730773925895],[99.34925842285168,17.2533416748048],[99.341781616211,17.261781692504996],[99.34162902832043,17.26568031311035],[99.33199310302734,17.26408004760748],[99.32273864746122,17.267610549926758],[99.31655883789068,17.267391204834098],[99.31069946289091,17.268360137939396],[99.30416870117193,17.271690368652287],[99.30290222167997,17.278030395507812],[99.29930877685541,17.28528976440441],[99.29786682128912,17.301300048828125],[99.29453277587902,17.30644989013672],[99.28755187988281,17.310749053955078],[99.28658294677734,17.31758117675787],[99.27761840820312,17.329639434814453],[99.27928161621088,17.335800170898438],[99.27899932861351,17.3433895111084],[99.27245330810564,17.34766006469738],[99.27162170410185,17.354679107666072],[99.27363586425787,17.372499465942383],[99.27645111084001,17.380081176757812],[99.27143859863293,17.398889541626033],[99.26080322265642,17.40393829345703],[99.25144195556635,17.404571533203182],[99.24257659912132,17.403669357299805],[99.23847198486322,17.401029586791992],[99.22828674316412,17.404130935668945],[99.21414184570318,17.390071868896484],[99.20729827880882,17.378690719604492],[99.21053314209007,17.37142944335949],[99.207260131836,17.366809844970703],[99.198989868164,17.36240959167492],[99.1976470947265,17.357900619506836],[99.19323730468761,17.355752944946346],[99.18968963623047,17.350870132446403],[99.17855072021496,17.347339630126953],[99.17513275146496,17.33564949035639],[99.17218780517601,17.334360122680664],[99.16635131835949,17.33636093139654],[99.1549377441408,17.33604240417486],[99.14784240722668,17.353910446166992],[99.14289855957043,17.358940124511776],[99.1337203979495,17.360380172729492],[99.12738800048834,17.363178253173828],[99.12314605712896,17.363178253173828],[99.11367034912138,17.367519378662223],[99.11428070068371,17.360530853271484],[99.11022186279303,17.356830596923942],[99.10604858398466,17.362279891967773],[99.10028076171898,17.366931915283317],[99.0869903564456,17.3752498626709],[99.07752990722656,17.370769500732536],[99.06729125976585,17.376308441162053],[99.06632232666021,17.381179809570256],[99.05764007568371,17.386421203613338],[99.0491561889649,17.383890151977482],[99.0426101684572,17.388879776000977],[99.04457855224615,17.392099380493107],[99.04199981689464,17.396369934082088],[99.03515625000017,17.401550292968864],[99.03267669677751,17.409210205078068],[99.02070617675781,17.409490585327205],[99.01795959472668,17.41263961791998],[99.01320648193354,17.412649154663086],[99.01489257812528,17.420511245727482],[99.00791931152344,17.42699050903326],[99.00627899169928,17.43355941772461],[99.00138854980463,17.437271118164062],[99.00023651123041,17.44114112854004],[98.99359893798845,17.445829391479492],[98.9930419921875,17.45158004760748],[98.98832702636741,17.45421981811529],[98.98773956298834,17.458681106567383],[98.98059082031244,17.465780258178825],[98.97528076171892,17.463310241699276],[98.96376800537138,17.465139389038143],[98.9615707397461,17.461509704589844],[98.95612335205107,17.473329544067496],[98.95017242431646,17.468429565429744],[98.9450073242188,17.4672794342041],[98.93268585205107,17.473751068115348],[98.93402099609403,17.482179641723633],[98.9290924072265,17.486249923706055],[98.92822265625006,17.491580963134766],[98.93106842041016,17.494060516357422],[98.92797851562517,17.498111724853572],[98.9290924072265,17.504930496215877],[98.92341613769531,17.51171112060547],[98.9276123046875,17.521209716796875],[98.92417907714844,17.527202606201172],[98.91385650634783,17.53184127807623],[98.91207122802763,17.534420013427848],[98.90786743164091,17.540439605712947],[98.908432006836,17.550451278686637],[98.90628051757818,17.562759399414006],[98.91020965576166,17.56878089904785],[98.9088592529298,17.571790695190487],[98.91194915771501,17.57608032226574],[98.91042327880876,17.58204841613781],[98.89386749267578,17.58564949035656],[98.88942718505854,17.58848953247076],[98.88778686523443,17.601631164550895],[98.88201904296892,17.603441238403263],[98.88098907470732,17.608932495117188],[98.8858032226562,17.618690490722656],[98.8828887939456,17.624710083007926],[98.89501190185547,17.631340026855526],[98.89656066894537,17.636539459228516],[98.90085601806652,17.639390945434627],[98.90516662597679,17.638790130615234],[98.90962219238293,17.64705848693859],[98.91903686523438,17.640890121460075],[98.92288208007818,17.642419815063533],[98.93025207519548,17.64235115051264],[98.94062805175787,17.63846969604498],[98.94890594482433,17.64474105834961],[98.95771026611322,17.639390945434627],[98.96254730224615,17.638179779052848],[98.97402954101585,17.640640258789062],[98.97910308837908,17.63825035095209],[98.98354339599615,17.63858985900879],[98.99237823486357,17.63199043273937],[99.00049591064453,17.634189605712834],[99.006591796875,17.628131866455078],[99.00934600830107,17.622129440307674],[99.0158233642581,17.62075996398937],[99.01951599121111,17.614120483398438],[99.03211975097673,17.61317062377941],[99.03636932373053,17.611408233642635],[99.04100036621122,17.6133708953858],[99.04670715332037,17.610439300537166],[99.05171203613293,17.611352920532283],[99.05435180664091,17.61765289306652],[99.06040191650396,17.625078201294002],[99.06476593017578,17.6412029266358],[99.06237030029325,17.647470474243278],[99.06089019775385,17.65907859802246],[99.0624771118164,17.668117523193473],[99.06693267822271,17.672548294067383],[99.06474304199236,17.675020217895508],[99.06565093994152,17.690460205078182],[99.07122802734392,17.694570541381836],[99.07842254638683,17.696952819824276],[99.08226776123064,17.69642066955572],[99.0867309570313,17.6993408203125],[99.08860778808594,17.704450607299805],[99.08439636230469,17.70742034912115],[99.08644866943354,17.71230125427246],[99.08538055419928,17.7165203094483],[99.08732604980491,17.720609664917106],[99.08470916748058,17.722980499267635],[99.08471679687511,17.72789955139166],[99.0874862670899,17.73736953735346],[99.09525299072283,17.740669250488395],[99.10540008544922,17.739040374755973],[99.10816192626982,17.74265098571783],[99.10623168945341,17.74791908264166],[99.11193847656256,17.7520694732666],[99.11357116699236,17.758039474487305],[99.11267089843756,17.764442443847713],[99.11643981933594,17.768381118774528],[99.12487030029303,17.767110824585018],[99.12365722656267,17.771709442138615],[99.12468719482428,17.778150558471737],[99.11931610107422,17.780458450317383],[99.11805725097685,17.788900375366325],[99.11119079589872,17.791959762573356],[99.11017608642584,17.802991867065543],[99.1049118041995,17.8106307983399],[99.1116333007812,17.814470291137752],[99.12348937988298,17.817380905151367],[99.12876129150419,17.814689636230582],[99.13732910156278,17.819129943847656],[99.14769744873064,17.812509536743164],[99.15045166015648,17.814760208129826],[99.16105651855486,17.80663108825695],[99.17595672607422,17.80932807922369],[99.17491912841825,17.819780349731445],[99.17016601562511,17.823219299316463],[99.16603088378906,17.828678131103572],[99.1612014770509,17.840730667114258],[99.16213226318388,17.844802856445426],[99.17304229736322,17.844900131225643],[99.17874145507824,17.848039627075252],[99.1841888427735,17.848070144653377],[99.18527221679705,17.85686111450201],[99.18096160888695,17.859600067138786],[99.17375183105497,17.869609832763672],[99.16760253906256,17.872459411621207],[99.16406250000011,17.87631988525385],[99.16403961181669,17.88408851623541],[99.15908050537138,17.889520645141715],[99.15048980712919,17.893640518188533],[99.1457824707033,17.901260375976676],[99.14848327636719,17.908849716186637],[99.14157104492182,17.908121109008846],[99.13352966308622,17.912420272827205],[99.1219711303711,17.913959503173942],[99.11532592773443,17.910779953003043],[99.10874176025402,17.913150787353572],[99.11357879638672,17.918190002441463],[99.11602783203142,17.92589950561529],[99.11738586425798,17.935340881347713],[99.11649322509788,17.94559288024908],[99.11225891113281,17.947179794311637],[99.10572052001947,17.945329666137752],[99.09918212890653,17.948539733886776],[99.09565734863281,17.956981658935547],[99.09913635253929,17.9668483734132],[99.09622955322266,17.974098205566463],[99.10262298584013,17.979978561401424],[99.10264587402355,17.98250961303711],[99.09741210937506,17.990060806274357],[99.09671020507841,17.994430541992188],[99.1023864746096,17.999080657958984],[99.09996032714872,18.00766944885254],[99.09419250488304,18.012960433960018],[99.09362792968756,18.022569656372127],[99.085258483887,18.027900695800838],[99.08576202392584,18.034320831298942],[99.08245849609392,18.044950485229492],[99.07765197753918,18.050701141357536],[99.07160186767595,18.06234169006342],[99.07311248779314,18.06822967529297],[99.07406616210955,18.079589843750057],[99.07356262207037,18.091829299926815],[99.0683822631836,18.097940444946346],[99.07161712646484,18.103929519653263],[99.06730651855474,18.10814094543457],[99.06794738769526,18.11547279357916],[99.06613922119163,18.121429443359318],[99.06678771972668,18.126390457153434],[99.06617736816435,18.139110565185547],[99.06431579589855,18.145250320434627],[99.05944824218756,18.15384101867687],[99.05325317382824,18.159130096435547],[99.05303955078153,18.16622924804699],[99.0583114624024,18.17312049865734],[99.04557037353521,18.1940212249757],[99.03878021240251,18.19796180725092],[99.03697967529303,18.203670501709098],[99.03066253662132,18.213951110839844],[99.03141021728521,18.22153091430664],[99.02865600585932,18.230770111084098],[99.02263641357428,18.23841094970703],[99.02173614501982,18.24898910522461],[99.02294158935541,18.255361557006893],[99.03006744384771,18.260110855102653],[99.03067779541038,18.263368606567326],[99.04376220703142,18.262950897216854],[99.05271148681658,18.264030456543026],[99.05564880371116,18.268310546875],[99.06426239013678,18.270931243896484],[99.07965850830084,18.26708030700695],[99.08264160156244,18.267660140991154],[99.08576202392584,18.277910232543945],[99.09317016601562,18.278371810913086],[99.0992507934572,18.2710800170899],[99.10726165771501,18.264110565185604],[99.11373138427729,18.26521110534668],[99.11798095703125,18.272871017456055],[99.11474609375,18.292121887206974],[99.12338256835943,18.29845809936529],[99.12612915039057,18.302959442138672],[99.12419891357433,18.3099308013916],[99.1275558471682,18.311990737915153],[99.14579010009783,18.311239242553768],[99.15300750732433,18.313531875610295],[99.15297698974638,18.32060050964361],[99.1555404663086,18.329011917114258],[99.1593322753908,18.330961227417106],[99.1612014770509,18.337810516357365],[99.16835021972662,18.341009140014705],[99.17098236084001,18.346099853515568],[99.17098236084001,18.360511779785213],[99.16813659667969,18.363380432128963],[99.16973114013678,18.37362861633295],[99.17936706542986,18.378072738647575],[99.18208312988287,18.381139755249137],[99.19074249267607,18.38628959655773],[99.18974304199241,18.39328956604004],[99.19210052490246,18.39944076538086],[99.19698333740257,18.40673255920416],[99.19615173339861,18.409469604492188],[99.19985198974632,18.418518066406307],[99.2047195434572,18.423112869262752],[99.21025848388689,18.42322921752941],[99.2162704467774,18.42789077758789],[99.22213745117193,18.428091049194336],[99.23204040527344,18.4415798187257],[99.23857116699241,18.44671058654785],[99.2374191284182,18.454881668090763],[99.24146270751982,18.46603012084961],[99.24063873291021,18.47004127502447],[99.24427032470709,18.47832107543951],[99.24954986572283,18.481550216674805],[99.25113677978521,18.48547935485834],[99.2552032470706,18.486980438232422],[99.25895690917974,18.493759155273438],[99.27253723144537,18.493669509887752],[99.28431701660162,18.498060226440543],[99.28743743896513,18.4909610748291],[99.30001831054716,18.48773002624523],[99.30404663085966,18.48924064636236],[99.30969238281256,18.495170593261776],[99.31504058837896,18.49479103088379],[99.32009887695307,18.49918937683117],[99.32157897949247,18.510099411010685],[99.3211288452149,18.517669677734432],[99.31838226318354,18.522731781005916],[99.31857299804682,18.53088951110834],[99.3242874145509,18.53413963317871],[99.3282165527346,18.540870666503906],[99.3308715820313,18.557859420776424],[99.32998657226591,18.56508064270031],[99.33454132080107,18.57431983947754],[99.35289764404308,18.576320648193416],[99.3516464233399,18.59267807006836],[99.35492706298851,18.593030929565543],[99.35810089111328,18.59745025634777],[99.36000061035173,18.60522270202648],[99.35502624511736,18.610588073730526],[99.34774017333996,18.614500045776424],[99.33909606933616,18.613901138305778],[99.33020782470697,18.615989685058537],[99.3290481567384,18.619171142578182],[99.33145904541038,18.62494087219244],[99.32833862304705,18.627201080322266],[99.32884216308622,18.636819839477653],[99.33370208740234,18.647020339965877],[99.33725738525402,18.648508071899414],[99.34375762939447,18.64788055419922],[99.35025787353533,18.653829574585018],[99.3406372070313,18.663522720337028],[99.33487701416021,18.66654968261713],[99.335502624512,18.669860839843807],[99.33268737792963,18.67827033996582],[99.32901763916044,18.68304824829096],[99.33557128906267,18.68925094604498],[99.33621215820318,18.700681686401367],[99.3424224853515,18.703689575195426],[99.34263610839861,18.713850021362305],[99.34532928466797,18.71544075012207],[99.34971618652344,18.72322273254406],[99.34948730468767,18.731641769409237],[99.36292266845726,18.74464035034174],[99.36846923828148,18.747020721435604],[99.37210083007818,18.750881195068416],[99.37242889404297,18.756641387939567],[99.36791229248053,18.766788482666016],[99.36949920654291,18.77446937561041],[99.37223815917969,18.778329849243278],[99.36757659912121,18.784099578857536],[99.36579895019554,18.792659759521598],[99.36109161376964,18.79817008972168],[99.35832214355474,18.80677986145014],[99.35594940185558,18.8226318359375],[99.3524703979495,18.83173942565918],[99.35370635986345,18.844709396362305],[99.36173248291016,18.848131179809684],[99.36746215820312,18.852470397949332],[99.3741226196289,18.85518074035656],[99.3871688842774,18.86598968505865],[99.38941192626959,18.873811721801815],[99.38794708251982,18.876310348510685],[99.39237213134777,18.883691787719727],[99.38774871826178,18.88731956481945],[99.38854217529325,18.89241981506342],[99.38604736328153,18.89714050292963],[99.38468170166038,18.908340454101676],[99.37986755371094,18.920330047607422],[99.38481140136719,18.92933082580572],[99.3878479003908,18.941129684448356],[99.38494110107433,18.951110839843693],[99.37697601318376,18.957807540893555],[99.3789672851563,18.966180801391715],[99.37491607666021,18.970849990844727],[99.37642669677734,18.982980728149528],[99.38622283935553,18.989351272583008],[99.3917083740235,18.991670608520565],[99.39457702636724,18.99519157409668],[99.40245819091825,18.997560501098633],[99.40654754638672,18.99998283386236],[99.41725158691406,19.000150680541992],[99.42333221435547,19.001678466796875],[99.429443359375,19.006589889526367],[99.43788909912132,19.006010055541992],[99.43884277343773,19.01142120361328],[99.44519042968778,19.018272399902344],[99.45764160156267,19.02832984924322],[99.46254730224638,19.033412933349553],[99.46615600585966,19.033769607543945],[99.47590637207043,19.047941207885856],[99.47778320312528,19.053220748901424],[99.48560333251982,19.068450927734375],[99.49244689941429,19.071262359619197],[99.49492645263695,19.075290679931697],[99.5001602172851,19.07283973693859],[99.50453186035168,19.076139450073356],[99.51515960693365,19.07483100891119],[99.51830291748064,19.077310562133846],[99.52213287353516,19.073280334472713],[99.5317001342774,19.074800491333008],[99.5315704345706,19.07803153991705],[99.54039001464855,19.083948135375977],[99.53653717041044,19.092060089111385],[99.54093933105497,19.101610183715934],[99.53900909423857,19.10637283325201],[99.54241180419945,19.111370086670036],[99.54621887207054,19.112039566040096],[99.55368041992193,19.1199111938476],[99.55452728271501,19.12547111511236],[99.55856323242188,19.12808990478527],[99.56154632568371,19.136020660400504],[99.56108093261724,19.14128112792963],[99.5548629760745,19.14299011230463],[99.55172729492193,19.154529571533146],[99.54634857177751,19.15790939331066],[99.53778839111328,19.160341262817496],[99.54254150390625,19.1757106781007],[99.53951263427734,19.184120178222713],[99.5439376831057,19.190990447998047],[99.54236602783203,19.20375823974615],[99.5448913574221,19.208309173584098],[99.54441070556635,19.214290618896484],[99.54688262939447,19.22018051147461],[99.55030822753918,19.22149085998535],[99.55036163330078,19.234050750732536],[99.54747009277361,19.239400863647575],[99.55082702636724,19.246780395507812],[99.54946899414085,19.250720977783203],[99.5530929565432,19.255018234252987],[99.56075286865263,19.256269454956055],[99.56362152099638,19.26215171813959],[99.56199645996094,19.271221160888786],[99.56610107421903,19.27988052368164],[99.57425689697288,19.291810989379826],[99.57907867431669,19.290571212768498],[99.58000183105474,19.296901702880916],[99.57724761962908,19.299882888793945],[99.58200836181658,19.308851242065543],[99.57929992675793,19.314149856567383],[99.58141326904291,19.319999694824162],[99.57717132568388,19.325981140136776],[99.58206176757818,19.328519821167106],[99.5828704833985,19.33619117736822],[99.57457733154314,19.344642639160156],[99.57968139648449,19.34656143188488],[99.58271789550793,19.351879119873104],[99.58180236816423,19.357040405273438],[99.57723999023455,19.35948944091797],[99.57713317871116,19.368570327758846],[99.57836151123041,19.375061035156364],[99.5774765014649,19.387340545654354],[99.56497192382841,19.40199089050293],[99.56378936767584,19.4110107421875],[99.56709289550793,19.416040420532227],[99.57112121582048,19.41193962097168],[99.58557891845714,19.404308319091854],[99.5972900390625,19.40440940856945],[99.61136627197283,19.395730972290153],[99.61698913574241,19.394662857055664],[99.61936950683588,19.3896999359132],[99.62503051757841,19.38916969299322],[99.63587951660179,19.385850906372013],[99.64774322509794,19.387569427490348],[99.65046691894548,19.384229660034123],[99.65631103515653,19.38570022583002],[99.66110992431652,19.383850097656364],[99.67649841308616,19.3903102874757],[99.68403625488298,19.38867950439453],[99.68480682373064,19.383060455322266],[99.68969726562528,19.380210876464957],[99.69541931152372,19.381029129028434]]]},"properties":{"ID_0":228,"ISO":"TH-52","NAME_0":"Thailand","ID_1":19,"NAME_1":"Lampang","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ลำปาง","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.31857299804682,18.53088951110834],[99.31838226318354,18.522731781005916],[99.3211288452149,18.517669677734432],[99.32157897949247,18.510099411010685],[99.32009887695307,18.49918937683117],[99.31504058837896,18.49479103088379],[99.30969238281256,18.495170593261776],[99.30404663085966,18.48924064636236],[99.30001831054716,18.48773002624523],[99.28743743896513,18.4909610748291],[99.28431701660162,18.498060226440543],[99.27253723144537,18.493669509887752],[99.25895690917974,18.493759155273438],[99.2552032470706,18.486980438232422],[99.25113677978521,18.48547935485834],[99.24954986572283,18.481550216674805],[99.24427032470709,18.47832107543951],[99.24063873291021,18.47004127502447],[99.24146270751982,18.46603012084961],[99.2374191284182,18.454881668090763],[99.23857116699241,18.44671058654785],[99.23204040527344,18.4415798187257],[99.22213745117193,18.428091049194336],[99.2162704467774,18.42789077758789],[99.21025848388689,18.42322921752941],[99.2047195434572,18.423112869262752],[99.19985198974632,18.418518066406307],[99.19615173339861,18.409469604492188],[99.19698333740257,18.40673255920416],[99.19210052490246,18.39944076538086],[99.18974304199241,18.39328956604004],[99.19074249267607,18.38628959655773],[99.18208312988287,18.381139755249137],[99.17936706542986,18.378072738647575],[99.16973114013678,18.37362861633295],[99.16813659667969,18.363380432128963],[99.17098236084001,18.360511779785213],[99.17098236084001,18.346099853515568],[99.16835021972662,18.341009140014705],[99.1612014770509,18.337810516357365],[99.1593322753908,18.330961227417106],[99.1555404663086,18.329011917114258],[99.15297698974638,18.32060050964361],[99.15300750732433,18.313531875610295],[99.14579010009783,18.311239242553768],[99.1275558471682,18.311990737915153],[99.12419891357433,18.3099308013916],[99.12612915039057,18.302959442138672],[99.12338256835943,18.29845809936529],[99.11474609375,18.292121887206974],[99.11798095703125,18.272871017456055],[99.11373138427729,18.26521110534668],[99.10726165771501,18.264110565185604],[99.0992507934572,18.2710800170899],[99.09317016601562,18.278371810913086],[99.08576202392584,18.277910232543945],[99.08264160156244,18.267660140991154],[99.07965850830084,18.26708030700695],[99.06426239013678,18.270931243896484],[99.05564880371116,18.268310546875],[99.05271148681658,18.264030456543026],[99.04376220703142,18.262950897216854],[99.03067779541038,18.263368606567326],[99.03006744384771,18.260110855102653],[99.02294158935541,18.255361557006893],[99.02173614501982,18.24898910522461],[99.02263641357428,18.23841094970703],[99.02865600585932,18.230770111084098],[99.03141021728521,18.22153091430664],[99.03066253662132,18.213951110839844],[99.03697967529303,18.203670501709098],[99.03878021240251,18.19796180725092],[99.04557037353521,18.1940212249757],[99.0583114624024,18.17312049865734],[99.05303955078153,18.16622924804699],[99.05325317382824,18.159130096435547],[99.05944824218756,18.15384101867687],[99.06431579589855,18.145250320434627],[99.06617736816435,18.139110565185547],[99.06678771972668,18.126390457153434],[99.06613922119163,18.121429443359318],[99.06794738769526,18.11547279357916],[99.06730651855474,18.10814094543457],[99.07161712646484,18.103929519653263],[99.0683822631836,18.097940444946346],[99.07356262207037,18.091829299926815],[99.07406616210955,18.079589843750057],[99.07311248779314,18.06822967529297],[99.07160186767595,18.06234169006342],[99.07765197753918,18.050701141357536],[99.08245849609392,18.044950485229492],[99.08576202392584,18.034320831298942],[99.085258483887,18.027900695800838],[99.09362792968756,18.022569656372127],[99.09419250488304,18.012960433960018],[99.09996032714872,18.00766944885254],[99.1023864746096,17.999080657958984],[99.09671020507841,17.994430541992188],[99.09741210937506,17.990060806274357],[99.10264587402355,17.98250961303711],[99.10262298584013,17.979978561401424],[99.09622955322266,17.974098205566463],[99.09913635253929,17.9668483734132],[99.09565734863281,17.956981658935547],[99.09918212890653,17.948539733886776],[99.10572052001947,17.945329666137752],[99.11225891113281,17.947179794311637],[99.11649322509788,17.94559288024908],[99.11738586425798,17.935340881347713],[99.11602783203142,17.92589950561529],[99.11357879638672,17.918190002441463],[99.10874176025402,17.913150787353572],[99.11532592773443,17.910779953003043],[99.1219711303711,17.913959503173942],[99.13352966308622,17.912420272827205],[99.14157104492182,17.908121109008846],[99.14848327636719,17.908849716186637],[99.1457824707033,17.901260375976676],[99.15048980712919,17.893640518188533],[99.15908050537138,17.889520645141715],[99.16403961181669,17.88408851623541],[99.16406250000011,17.87631988525385],[99.16760253906256,17.872459411621207],[99.17375183105497,17.869609832763672],[99.18096160888695,17.859600067138786],[99.18527221679705,17.85686111450201],[99.1841888427735,17.848070144653377],[99.17874145507824,17.848039627075252],[99.17304229736322,17.844900131225643],[99.16213226318388,17.844802856445426],[99.1612014770509,17.840730667114258],[99.16603088378906,17.828678131103572],[99.17016601562511,17.823219299316463],[99.17491912841825,17.819780349731445],[99.17595672607422,17.80932807922369],[99.16105651855486,17.80663108825695],[99.15045166015648,17.814760208129826],[99.14769744873064,17.812509536743164],[99.13732910156278,17.819129943847656],[99.12876129150419,17.814689636230582],[99.12348937988298,17.817380905151367],[99.1116333007812,17.814470291137752],[99.1049118041995,17.8106307983399],[99.11017608642584,17.802991867065543],[99.11119079589872,17.791959762573356],[99.11805725097685,17.788900375366325],[99.11931610107422,17.780458450317383],[99.12468719482428,17.778150558471737],[99.12365722656267,17.771709442138615],[99.12487030029303,17.767110824585018],[99.11643981933594,17.768381118774528],[99.11267089843756,17.764442443847713],[99.11357116699236,17.758039474487305],[99.11193847656256,17.7520694732666],[99.10623168945341,17.74791908264166],[99.10816192626982,17.74265098571783],[99.10540008544922,17.739040374755973],[99.09525299072283,17.740669250488395],[99.0874862670899,17.73736953735346],[99.08471679687511,17.72789955139166],[99.08470916748058,17.722980499267635],[99.08732604980491,17.720609664917106],[99.08538055419928,17.7165203094483],[99.08644866943354,17.71230125427246],[99.08439636230469,17.70742034912115],[99.08860778808594,17.704450607299805],[99.0867309570313,17.6993408203125],[99.08226776123064,17.69642066955572],[99.07842254638683,17.696952819824276],[99.07122802734392,17.694570541381836],[99.06565093994152,17.690460205078182],[99.06474304199236,17.675020217895508],[99.06693267822271,17.672548294067383],[99.0624771118164,17.668117523193473],[99.06089019775385,17.65907859802246],[99.06237030029325,17.647470474243278],[99.06476593017578,17.6412029266358],[99.06040191650396,17.625078201294002],[99.05435180664091,17.61765289306652],[99.05171203613293,17.611352920532283],[99.04670715332037,17.610439300537166],[99.04100036621122,17.6133708953858],[99.03636932373053,17.611408233642635],[99.03211975097673,17.61317062377941],[99.01951599121111,17.614120483398438],[99.0158233642581,17.62075996398937],[99.00934600830107,17.622129440307674],[99.006591796875,17.628131866455078],[99.00049591064453,17.634189605712834],[98.99237823486357,17.63199043273937],[98.98354339599615,17.63858985900879],[98.97910308837908,17.63825035095209],[98.97402954101585,17.640640258789062],[98.96254730224615,17.638179779052848],[98.95771026611322,17.639390945434627],[98.94890594482433,17.64474105834961],[98.94062805175787,17.63846969604498],[98.93025207519548,17.64235115051264],[98.92288208007818,17.642419815063533],[98.91903686523438,17.640890121460075],[98.90962219238293,17.64705848693859],[98.90516662597679,17.638790130615234],[98.90085601806652,17.639390945434627],[98.89656066894537,17.636539459228516],[98.89501190185547,17.631340026855526],[98.8828887939456,17.624710083007926],[98.8858032226562,17.618690490722656],[98.88098907470732,17.608932495117188],[98.88201904296892,17.603441238403263],[98.88778686523443,17.601631164550895],[98.88942718505854,17.58848953247076],[98.89386749267578,17.58564949035656],[98.91042327880876,17.58204841613781],[98.91194915771501,17.57608032226574],[98.9088592529298,17.571790695190487],[98.91020965576166,17.56878089904785],[98.90628051757818,17.562759399414006],[98.908432006836,17.550451278686637],[98.90786743164091,17.540439605712947],[98.91207122802763,17.534420013427848],[98.89794158935553,17.52704048156744],[98.89546966552763,17.51941108703619],[98.89029693603538,17.516082763671875],[98.88999176025385,17.51149940490717],[98.88461303710966,17.509639739990178],[98.88262176513672,17.505540847778434],[98.88266754150413,17.49987030029297],[98.88040924072294,17.4962997436524],[98.88054656982428,17.489730834960938],[98.8729095458985,17.49118804931652],[98.87171936035173,17.499879837036133],[98.86598968505876,17.50345993041998],[98.86025238037126,17.509769439697322],[98.85449981689464,17.511631011962947],[98.84723663330107,17.51151084899908],[98.84217071533203,17.51357078552246],[98.83360290527344,17.51053047180187],[98.83178710937528,17.513481140136776],[98.82448577880882,17.51088905334484],[98.81688690185575,17.5055828094483],[98.81642150878906,17.498672485351506],[98.8094177246096,17.499521255493164],[98.79844665527338,17.49845123291027],[98.79190063476591,17.494010925293026],[98.78233337402366,17.492591857910156],[98.7793426513673,17.48876953125],[98.76875305175781,17.483318328857365],[98.76158905029325,17.480899810791016],[98.75675201416021,17.47435188293457],[98.75444030761719,17.46879005432129],[98.74797821044928,17.465820312500114],[98.74253082275402,17.46671104431158],[98.7369918823245,17.463541030883846],[98.73039245605469,17.462699890136776],[98.71967315673822,17.463340759277457],[98.71627044677751,17.457880020141715],[98.71482086181663,17.451930999755916],[98.71079254150396,17.452241897583008],[98.70324707031261,17.443439483642692],[98.70204162597679,17.434669494628963],[98.69618225097668,17.42938041687006],[98.69196319580107,17.430799484252987],[98.68836212158214,17.439601898193473],[98.68216705322271,17.44651985168457],[98.68441772460955,17.45116043090826],[98.6838989257813,17.45967102050787],[98.68643188476591,17.467090606689567],[98.69422912597662,17.475500106811637],[98.700210571289,17.47653961181635],[98.70645141601591,17.48563003540039],[98.70475006103544,17.491701126098633],[98.7069702148438,17.499980926513672],[98.70137023925798,17.504800796508903],[98.69792938232416,17.51220130920416],[98.70295715332037,17.523681640625],[98.70243835449224,17.531480789184684],[98.70487213134771,17.54054260253912],[98.70339202880865,17.55398750305187],[98.69750976562528,17.570909500122127],[98.69644165039062,17.580160140991268],[98.69452667236345,17.58547019958496],[98.68537902832031,17.59178924560547],[98.68358612060575,17.59551811218256],[98.68467712402366,17.60123062133789],[98.6908416748048,17.611919403076172],[98.6915817260745,17.61521148681635],[98.68984985351568,17.623069763183594],[98.69287872314476,17.627950668334904],[98.69267272949224,17.632221221923885],[98.68633270263672,17.641559600830135],[98.68650054931658,17.649021148681754],[98.68995666503906,17.65599060058605],[98.68519592285156,17.66139030456543],[98.68752288818365,17.666570663452205],[98.69876098632818,17.665439605713004],[98.72444915771501,17.67438125610363],[98.73352813720709,17.6810302734375],[98.7381896972658,17.681331634521484],[98.74546813964844,17.687280654907283],[98.74707794189482,17.69102287292492],[98.74559783935558,17.700061798095703],[98.7408523559572,17.706678390503043],[98.7265701293947,17.714260101318473],[98.72608947753912,17.724451065063533],[98.71633148193365,17.733240127563533],[98.7095413208009,17.736049652099553],[98.70339202880865,17.744369506835938],[98.70623016357445,17.75832939147955],[98.70420074462902,17.762510299682674],[98.69983673095697,17.764839172363338],[98.69535827636741,17.773141860962028],[98.69194793701178,17.775302886963004],[98.68733215332037,17.78110122680664],[98.6866073608399,17.789409637451286],[98.69873046875,17.7904510498048],[98.70896911621105,17.794689178466854],[98.71823120117193,17.796222686767635],[98.72592926025419,17.795871734619197],[98.72795104980474,17.79257965087902],[98.73530578613276,17.794740676879826],[98.7426681518557,17.803159713745174],[98.74666595459007,17.803140640258732],[98.75199890136724,17.800050735473746],[98.76412963867205,17.800251007080135],[98.76841735839866,17.806568145752067],[98.76901245117216,17.81208992004389],[98.77909088134788,17.82731246948248],[98.78479766845709,17.830972671508732],[98.78961944580107,17.82942008972168],[98.78959655761724,17.822919845581055],[98.79631042480497,17.82134056091303],[98.79498291015636,17.816749572753963],[98.79853057861334,17.81400108337408],[98.79467010498047,17.809600830078125],[98.79969787597679,17.801799774170036],[98.7992095947265,17.797458648681584],[98.80332183837913,17.794170379638786],[98.80796813964855,17.797458648681584],[98.82279205322271,17.79540061950678],[98.83027648925793,17.798469543457145],[98.83431243896501,17.80353927612316],[98.8565368652346,17.81241989135748],[98.853500366211,17.821899414062557],[98.85636138916021,17.828540802001896],[98.85410308837919,17.842439651489258],[98.86061096191418,17.853811264038086],[98.86624145507818,17.84943962097168],[98.87261962890636,17.848640441894645],[98.87180328369146,17.857719421386776],[98.87033081054699,17.85943031311035],[98.8674926757812,17.871200561523438],[98.86727905273449,17.880010604858455],[98.86355590820318,17.883911132812614],[98.86273956298845,17.89365005493164],[98.85639953613293,17.896699905395565],[98.8580093383789,17.907930374145565],[98.85352325439482,17.91349029541027],[98.849838256836,17.924551010131836],[98.85193634033209,17.928651809692383],[98.84339141845709,17.9428005218507],[98.84332275390625,17.948240280151367],[98.83954620361334,17.964490890502987],[98.83329010009794,17.972112655639705],[98.83229064941412,17.979101181030273],[98.83550262451172,17.984239578247127],[98.82892608642607,17.99460983276373],[98.82267761230486,17.996320724487305],[98.81160736083979,18.002929687500114],[98.80921936035162,18.006900787353516],[98.8037033081057,18.00558090209961],[98.79173278808622,18.00011062622076],[98.78939056396507,18.003450393676758],[98.78450775146496,18.003580093383903],[98.78063201904303,18.001121520996094],[98.77982330322271,18.009841918945256],[98.78639221191435,18.01699066162115],[98.78745269775396,18.02280807495123],[98.79470062255865,18.027900695800838],[98.79284667968756,18.034959793090877],[98.79830932617188,18.046159744262695],[98.79888153076172,18.056079864502067],[98.80777740478527,18.061290740966797],[98.80989074707026,18.0671901702882],[98.80799865722673,18.07126998901373],[98.81494140625006,18.077741622924805],[98.80813598632841,18.082490921020565],[98.79946899414068,18.08587074279785],[98.80323791503923,18.090200424194393],[98.80310821533209,18.102159500122184],[98.80832672119169,18.104909896850643],[98.81085205078142,18.11424064636236],[98.80739593505871,18.120410919189453],[98.80914306640642,18.12306976318365],[98.80644989013666,18.12949180603033],[98.8079376220706,18.13589096069336],[98.80503082275413,18.155780792236385],[98.80043792724615,18.158800125122184],[98.7933578491211,18.159931182861385],[98.79271697998041,18.16645050048828],[98.784408569336,18.177749633789062],[98.78533172607422,18.182468414306697],[98.78185272216791,18.1939697265625],[98.7851333618164,18.197589874267692],[98.7847671508789,18.205999374389705],[98.78659057617199,18.21447944641119],[98.78549194335955,18.219520568847656],[98.77744293212902,18.223110198974666],[98.7744979858399,18.22908020019537],[98.77825164794939,18.23490905761713],[98.77854919433622,18.2436580657959],[98.77713775634766,18.24855041503912],[98.77088165283209,18.254800796508732],[98.7639465332033,18.254962921142635],[98.76097106933616,18.25747108459467],[98.74205780029303,18.263170242309684],[98.73165130615263,18.270349502563533],[98.72464752197283,18.277700424194393],[98.70437622070341,18.287500381469783],[98.69661712646501,18.287572860717773],[98.68624114990263,18.293029785156364],[98.67516326904303,18.294500350952205],[98.66674041748053,18.300468444824332],[98.66999053955101,18.30590057373047],[98.67668151855474,18.312488555908203],[98.6754989624024,18.319030761718693],[98.6723175048831,18.32328987121582],[98.67459869384794,18.325531005859375],[98.68141937255865,18.326940536499137],[98.68898773193376,18.332801818847656],[98.6935272216798,18.332881927490234],[98.70110321044928,18.328718185424805],[98.70411682128912,18.330690383911246],[98.70459747314447,18.33603096008312],[98.69505310058605,18.35301971435547],[98.68322753906261,18.364732742309627],[98.68377685546903,18.36987113952648],[98.68850708007818,18.37648963928217],[98.6886901855471,18.383060455322266],[98.69178771972685,18.390100479126033],[98.7020797729495,18.397850036621094],[98.70590972900402,18.405271530151424],[98.70970153808622,18.40963172912609],[98.70729064941423,18.413810729980412],[98.70015716552763,18.408742904663143],[98.69499206542974,18.41479110717779],[98.69753265380871,18.420761108398494],[98.70133209228527,18.423830032348633],[98.70458221435558,18.43178749084467],[98.70897674560558,18.43848037719738],[98.7118377685548,18.439760208129996],[98.71803283691412,18.43198966979986],[98.72239685058594,18.433820724487305],[98.72464752197283,18.440219879150504],[98.7285919189456,18.443960189819336],[98.74099731445341,18.43440818786621],[98.74315643310564,18.43040084838873],[98.74857330322288,18.430749893188533],[98.7561874389649,18.435319900512752],[98.76473236083984,18.43264007568365],[98.76815032959001,18.43408966064453],[98.7705764770509,18.43938064575201],[98.7765197753908,18.44668006896967],[98.78852844238276,18.45218086242687],[98.79747009277355,18.450839996337947],[98.80076599121111,18.45242118835455],[98.8050994873048,18.46021270751953],[98.80871582031261,18.462430953979492],[98.81516265869146,18.461301803588867],[98.81941986083979,18.470720291137695],[98.82904815673834,18.4799098968507],[98.83715820312494,18.48170280456543],[98.84185028076195,18.48640060424799],[98.84623718261741,18.493610382080192],[98.84755706787115,18.503681182861385],[98.8537902832033,18.506019592285213],[98.857192993164,18.498090744018555],[98.86289215087902,18.502199172973633],[98.86305999755888,18.506191253662223],[98.86934661865263,18.512960433959904],[98.87623596191418,18.513370513916072],[98.8790969848634,18.5095596313476],[98.88311004638683,18.509410858154354],[98.88775634765625,18.514429092407227],[98.89701843261747,18.521230697631893],[98.90450286865251,18.524480819702205],[98.91565704345726,18.53277015686041],[98.92533111572266,18.534122467041016],[98.93070983886724,18.53833961486822],[98.93406677246111,18.543382644653263],[98.93447113037126,18.552659988403377],[98.93901824951166,18.559640884399414],[98.94538879394537,18.56225967407238],[98.94978332519537,18.571529388427734],[98.95527648925781,18.579210281372184],[98.95504760742205,18.583959579467773],[98.9636306762697,18.595090866088924],[98.96697235107445,18.595849990844727],[98.97090911865234,18.601320266723746],[98.96673583984375,18.60978126525879],[98.9694519042971,18.616350173950252],[98.9783096313476,18.626951217651424],[98.97985076904314,18.634029388427678],[98.98510742187506,18.632650375366268],[98.99186706542986,18.636550903320426],[98.9986190795899,18.63766098022461],[99.00641632080084,18.64268112182623],[99.00611877441435,18.658910751342773],[99.01171875000017,18.670749664306697],[99.01622009277372,18.67251014709467],[99.03713226318365,18.667518615722656],[99.05335235595709,18.66644096374523],[99.06761932373047,18.67168045043951],[99.07775115966803,18.67966079711914],[99.08232879638678,18.678140640258846],[99.10382080078142,18.678390502929688],[99.11458587646507,18.677360534668082],[99.11640167236322,18.680400848388672],[99.12515258789074,18.681110382080192],[99.12903594970703,18.688499450683594],[99.13352203369169,18.69285964965826],[99.13748168945335,18.699291229248047],[99.14356994628912,18.70074844360363],[99.15743255615251,18.70811080932623],[99.16844177246105,18.704730987548942],[99.18049621582048,18.7035808563233],[99.18325805664085,18.706012725830135],[99.18949127197266,18.70523834228527],[99.19209289550793,18.697830200195256],[99.18869018554682,18.687950134277344],[99.19055938720732,18.677459716796875],[99.20117187500006,18.668649673462028],[99.20643615722673,18.666299819946346],[99.20861816406273,18.657512664794922],[99.21582794189453,18.657579421997184],[99.21875762939459,18.652751922607422],[99.23396301269537,18.650949478149357],[99.2357101440432,18.648559570312614],[99.23284149169945,18.640989303588867],[99.23501586914074,18.634021759033146],[99.23336791992188,18.626930236816406],[99.23464202880871,18.620109558105526],[99.23713684082026,18.615629196166992],[99.23528289794922,18.61280059814453],[99.2252883911134,18.606050491333065],[99.22480010986328,18.601030349731445],[99.22075653076189,18.5933780670166],[99.22293853759788,18.588859558105582],[99.23076629638678,18.587289810180664],[99.23841094970732,18.58072090148937],[99.24636840820318,18.580631256103516],[99.2519989013673,18.57339096069336],[99.26377105712896,18.570159912109432],[99.27317810058588,18.561128616333008],[99.27465820312528,18.55741119384777],[99.28272247314447,18.549459457397518],[99.28961944580095,18.545619964599666],[99.29704284667986,18.536401748657283],[99.30404663085966,18.53498077392578],[99.31449127197288,18.5304794311524],[99.31857299804682,18.53088951110834]]]},"properties":{"ID_0":228,"ISO":"TH-51","NAME_0":"Thailand","ID_1":20,"NAME_1":"Lamphun","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ลำพูน","VARNAME_1":"Hariphunchai|Lampoon"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.10865020751947,18.211460113525447],[102.10441589355497,18.197799682617244],[102.1057586669923,18.181722640991268],[102.10366821289074,18.177761077880973],[102.10492706298851,18.173580169677678],[102.10488891601562,18.160640716552734],[102.09703063964861,18.15779113769537],[102.08998107910173,18.15810966491705],[102.07533264160156,18.14575004577648],[102.07073211669922,18.139299392700252],[102.07195281982428,18.135410308838004],[102.06452178955084,18.099372863769588],[102.0608520507813,18.09699821472168],[102.05845642089855,18.091650009155273],[102.05802154541021,18.08291053771984],[102.0561904907226,18.075920104980526],[102.05818176269537,18.0677108764649],[102.05829620361322,18.055149078369084],[102.0564575195313,18.050060272216797],[102.0566177368164,18.033391952514762],[102.05262756347656,18.031061172485295],[102.04605102539091,18.022481918335018],[102.0412292480471,18.02001953125],[102.0428771972658,18.01444816589361],[102.04096984863298,17.99929046630865],[102.04281616210949,17.9915008544923],[102.03972625732428,17.98905944824213],[102.02905273437528,17.989080429077205],[102.0206222534182,17.98040962219244],[102.02765655517584,17.973819732666072],[102.02838897705078,17.965419769287166],[102.02587890625017,17.962169647216854],[102.02645111084001,17.953308105468807],[102.03099822998058,17.943750381469727],[102.03360748291021,17.929540634155273],[102.03562164306658,17.92411994934082],[102.03415679931646,17.921360015869197],[102.03925323486345,17.90648269653326],[102.04228210449236,17.89466094970703],[102.04228210449236,17.888389587402344],[102.04009246826178,17.882520675659293],[102.04286956787126,17.88111114501953],[102.05116271972662,17.87200164794922],[102.05293273925793,17.866460800170955],[102.05020904541021,17.852039337158203],[102.05314636230463,17.84608840942377],[102.05016326904303,17.836679458618278],[102.05227661132818,17.83133125305187],[102.04876708984392,17.81709289550787],[102.03762817382818,17.80359840393072],[102.04096221923845,17.7987117767334],[102.04225921630854,17.793119430541935],[102.04666137695307,17.786962509155387],[102.0416717529298,17.78289031982422],[102.03102874755876,17.78310966491705],[102.02945709228544,17.780210494995117],[102.02968597412104,17.77248001098627],[102.0246200561524,17.763219833374023],[102.0241012573245,17.753330230712947],[102.01898193359386,17.75045967102062],[102.01824188232416,17.744979858398438],[102.02332305908209,17.730100631713924],[102.02358245849604,17.718460083007812],[102.02649688720703,17.708040237426815],[102.02812194824247,17.686470031738338],[102.02770996093756,17.677951812744197],[102.03089141845703,17.66807174682623],[102.03865051269526,17.657712936401367],[102.0320892333985,17.65574073791504],[102.0399017333985,17.649169921874943],[102.046142578125,17.64829826354992],[102.05484008789074,17.652168273925895],[102.05982208251947,17.655849456787166],[102.06661987304693,17.6519393920899],[102.07241058349604,17.64421081542963],[102.0791625976563,17.64479255676281],[102.08677673339844,17.633941650390625],[102.08940124511736,17.628789901733455],[102.09342956542969,17.625810623168945],[102.10128784179693,17.613090515136832],[102.104721069336,17.61247062683117],[102.1094818115235,17.607751846313533],[102.1147003173831,17.594360351562557],[102.11975860595703,17.585130691528263],[102.12039947509771,17.575300216674748],[102.12490844726562,17.566619873046875],[102.13681793212919,17.559499740600586],[102.13931274414091,17.55549049377447],[102.13912200927763,17.54598045349121],[102.1374588012697,17.541191101074332],[102.13845825195312,17.535831451416016],[102.14286804199224,17.529960632324162],[102.14267730712896,17.51939964294445],[102.1399993896485,17.51580238342291],[102.13812255859398,17.50696945190424],[102.13181304931646,17.50794982910162],[102.12880706787138,17.501180648803768],[102.13075256347668,17.492870330810547],[102.12338256835938,17.485609054565543],[102.11099243164062,17.480440139770508],[102.10292816162104,17.474840164184684],[102.0946807861331,17.4643611907959],[102.08786010742182,17.46396064758312],[102.07950592041016,17.458179473876953],[102.0739974975586,17.457401275634766],[102.05285644531273,17.448560714721737],[102.04685974121111,17.45446014404297],[102.04502105712896,17.453510284423942],[102.03379058837913,17.458070755004996],[102.02173614501953,17.457782745361328],[102.01740264892584,17.455570220947322],[102.0064697265625,17.457189559936637],[101.99317932128912,17.457309722900447],[101.99014282226591,17.447799682617188],[101.99130249023466,17.444522857666072],[101.98671722412138,17.43445968627941],[101.98919677734403,17.432870864868278],[101.98954772949224,17.426210403442496],[101.99414825439482,17.423589706420955],[101.99424743652344,17.418899536132926],[101.98609924316429,17.41416931152338],[101.98364257812506,17.41031265258789],[101.9877090454101,17.404769897460994],[101.9999771118164,17.39394187927246],[102.00679016113276,17.38463973999029],[102.01239013671875,17.381469726562557],[102.02011871337902,17.37181091308605],[102.01973724365246,17.364110946655387],[102.01496124267607,17.360418319702205],[102.01573181152355,17.354459762573242],[102.02188873291033,17.344749450683537],[102.02234649658226,17.339870452880973],[102.02001190185547,17.336639404296932],[102.01199340820312,17.33229064941412],[101.99996948242188,17.331539154052734],[101.99195861816406,17.319097518921012],[101.99182891845726,17.313550949096737],[101.99687194824213,17.30620193481451],[102.0008697509765,17.29583168029785],[102.01629638671903,17.286729812622127],[102.01542663574219,17.28137016296381],[102.01782989501964,17.2773113250733],[102.02575683593756,17.27981948852539],[102.02890777587885,17.278408050537166],[102.03076171875006,17.269662857055664],[102.03601074218767,17.264179229736328],[102.03624725341803,17.260210037231502],[102.04309844970703,17.26127815246582],[102.04624176025419,17.259229660034293],[102.04891204834013,17.253170013427734],[102.0535888671875,17.249219894409237],[102.06285095214855,17.250909805297965],[102.0685577392581,17.254899978637752],[102.07038116455084,17.251480102539006],[102.06265258789074,17.242782592773494],[102.06137084960955,17.230461120605582],[102.06443786621094,17.221790313720817],[102.06768798828125,17.21686935424799],[102.07553863525396,17.211589813232422],[102.07431793212885,17.20739936828619],[102.06716918945335,17.203350067138672],[102.05504608154291,17.20319938659668],[102.0394515991211,17.209611892700195],[102.01670837402338,17.212009429931697],[102.00826263427763,17.214879989624023],[102.0002059936524,17.207281112670955],[101.99868011474615,17.20308113098139],[102.00437927246094,17.19862937927246],[102.01850891113287,17.194730758667106],[102.0362396240235,17.19388008117687],[102.04612731933594,17.19215965270996],[102.06539916992188,17.193298339843693],[102.07540130615263,17.192930221557617],[102.07936859130882,17.188220977783317],[102.07750701904325,17.181720733642692],[102.07211303710943,17.183719635009766],[102.0650482177735,17.18069076538086],[102.0631713867188,17.17526817321783],[102.05253601074247,17.1698894500733],[102.04872131347685,17.165229797363395],[102.04933929443376,17.158050537109375],[102.04415130615246,17.15336036682129],[102.03775024414062,17.15777015686041],[102.03542327880876,17.16276931762701],[102.02230834960938,17.164949417114258],[102.02173614501953,17.16130828857422],[102.0242767333985,17.14908027648937],[102.02246093750017,17.131061553955078],[102.02953338623047,17.127340316772518],[102.03999328613298,17.129070281982536],[102.0455398559572,17.124908447265682],[102.05311584472668,17.124589920044002],[102.06758880615263,17.1193008422851],[102.07176971435553,17.112808227539006],[102.07537078857445,17.110609054565487],[102.0849227905274,17.11224937438965],[102.09259033203153,17.109382629394474],[102.0945205688476,17.101341247558707],[102.1004714965822,17.10118103027338],[102.10253906249994,17.086071014404297],[102.10636901855486,17.081390380859375],[102.10356903076178,17.068399429321403],[102.10729217529308,17.06120109558111],[102.11885833740257,17.057502746581974],[102.1262817382813,17.05005073547369],[102.12750244140636,17.04207038879406],[102.13919830322283,17.034151077270508],[102.14697265624994,17.030929565429744],[102.15225219726568,17.03090286254877],[102.15297698974615,17.026891708374137],[102.14910888671892,17.018909454345703],[102.1455078125,17.016490936279354],[102.14263153076189,17.01130104064947],[102.13703155517607,17.01081085205078],[102.13349914550781,17.006820678710938],[102.12650299072271,17.00568008422863],[102.11914062499994,17.002841949463004],[102.1118774414062,17.005821228027287],[102.09828186035162,17.001211166381836],[102.09768676757835,16.985321044921932],[102.08901214599626,16.973960876464787],[102.07888793945307,16.969690322875977],[102.07859039306646,16.96587944030773],[102.07505798339855,16.963169097900504],[102.06755065917991,16.96210289001465],[102.06478881835955,16.96470069885254],[102.05844116210966,16.964769363403377],[102.03913116455101,16.95569992065441],[102.03256225585955,16.949920654296818],[102.03861236572294,16.932710647583065],[102.04704284667963,16.914260864257756],[102.04669189453142,16.909130096435604],[102.04872131347685,16.9047527313233],[102.06780242919933,16.89519119262701],[102.07128143310564,16.889150619506893],[102.06568908691435,16.88546180725109],[102.06584930419928,16.880197525024414],[102.05844116210966,16.873508453369254],[102.06259918212896,16.870080947875977],[102.05928039550798,16.86696052551281],[102.05538177490263,16.868110656738224],[102.04618835449241,16.865512847900504],[102.04773712158209,16.860168457031307],[102.04264831542963,16.85711097717285],[102.03452301025396,16.862041473388786],[102.02984619140636,16.860441207885742],[102.02146148681652,16.8670597076416],[102.01790618896484,16.863250732421932],[102.01275634765625,16.868959426879883],[102.00724792480474,16.862300872802734],[102.00412750244135,16.855281829833984],[102.0081024169923,16.853879928588924],[102.00308990478521,16.847990036010856],[102.00135803222679,16.843540191650504],[101.99687957763666,16.83860969543457],[101.98989868164068,16.842409133911076],[101.98439788818365,16.842201232910156],[101.98056030273443,16.839759826660213],[101.97296905517584,16.84056282043457],[101.97101593017584,16.845090866088924],[101.96015167236334,16.846050262451286],[101.94853973388678,16.848670959472656],[101.94651031494135,16.845970153808537],[101.95034027099604,16.840869903564567],[101.94364166259777,16.838039398193473],[101.93831634521479,16.833660125732536],[101.92737579345709,16.82879066467291],[101.92032623291021,16.822240829467887],[101.91043090820341,16.817110061645565],[101.90705108642595,16.812871932983455],[101.89372253417986,16.810358047485295],[101.88575744628912,16.810560226440487],[101.87937164306635,16.807830810546818],[101.8715896606447,16.800849914550838],[101.868392944336,16.79198074340826],[101.86376190185564,16.78922080993658],[101.85690307617205,16.78862953186035],[101.85034942626982,16.784429550170955],[101.83648681640642,16.782321929931754],[101.83180236816429,16.778110504150447],[101.82160949707048,16.776470184326172],[101.81304168701189,16.77098083496105],[101.80301666259771,16.767230987548885],[101.79794311523432,16.766820907592773],[101.78736114501976,16.760911941528434],[101.77336883544939,16.757070541381836],[101.76867675781256,16.757251739501953],[101.76035308837885,16.753999710083065],[101.752426147461,16.754632949829215],[101.7304077148437,16.75052833557129],[101.72202301025385,16.754020690918082],[101.71283721923857,16.766660690307674],[101.70783233642584,16.777011871338004],[101.69676971435553,16.78833961486822],[101.68770599365251,16.79541969299322],[101.69590759277361,16.803289413452205],[101.7023468017581,16.806119918823242],[101.72007751464872,16.79712104797369],[101.7223663330081,16.80264282226574],[101.71977233886736,16.80700111389166],[101.71924591064459,16.813222885131893],[101.7096328735351,16.819330215454045],[101.70603179931658,16.827220916748047],[101.69792175292974,16.832149505615178],[101.69358062744152,16.833301544189396],[101.69081878662115,16.839370727539062],[101.68705749511724,16.84284973144537],[101.685287475586,16.84782981872553],[101.68755340576172,16.855930328369197],[101.68138885498041,16.854970932006893],[101.67843627929693,16.863929748535156],[101.68376922607428,16.87125968933117],[101.68302917480491,16.87780952453619],[101.6794815063476,16.88064956665039],[101.68245697021507,16.893669128417912],[101.68527221679688,16.901269912719783],[101.68342590332037,16.907791137695312],[101.68602752685547,16.920110702514762],[101.68971252441412,16.921028137207088],[101.68804931640636,16.928571701049805],[101.69069671630888,16.931989669799805],[101.68389129638689,16.9344100952149],[101.67819213867205,16.93807983398449],[101.67288208007812,16.952959060669002],[101.67198944091803,16.960678100585938],[101.67565917968761,16.966220855713004],[101.67740631103533,16.972471237182674],[101.67597198486351,16.976451873779354],[101.67082214355491,16.98089027404785],[101.6703872680664,16.985321044921932],[101.6614074707033,16.995359420776424],[101.6562576293947,17.00526237487793],[101.65712738037138,17.00969123840332],[101.65180206298857,17.01650047302246],[101.64665222167997,17.02799034118658],[101.64720153808622,17.0342693328858],[101.64552307128918,17.038160324096793],[101.64038085937494,17.042499542236442],[101.63080596923857,17.043239593505973],[101.62594604492188,17.035999298095817],[101.62184906005888,17.025711059570312],[101.61811828613281,17.022920608520565],[101.61827087402338,17.014289855957088],[101.61422729492216,17.004329681396598],[101.61025238037104,16.998880386352596],[101.60159301757818,16.998830795288143],[101.59485626220703,16.993909835815543],[101.5904006958009,16.995069503784293],[101.58537292480491,16.99110984802246],[101.58435058593767,16.986749649047965],[101.57614898681658,16.98307037353527],[101.56723022460943,16.98513031005865],[101.56166076660156,16.992151260375977],[101.55194854736328,16.993860244750977],[101.54827117919916,16.999629974365234],[101.54534149169928,17.014360427856502],[101.54239654541016,17.017772674560547],[101.5362625122072,17.02091026306158],[101.53761291503923,17.031200408935604],[101.53639221191435,17.03544044494629],[101.53256225585943,17.038211822509766],[101.53559875488287,17.043689727783203],[101.53145599365246,17.053398132324276],[101.52317047119146,17.05231285095209],[101.5149002075197,17.05601119995123],[101.5107421875,17.056119918823185],[101.50975036621111,17.060470581054744],[101.50344085693354,17.067068099975643],[101.49315643310564,17.07159996032715],[101.48854827880871,17.074840545654354],[101.48377990722668,17.069999694824276],[101.48142242431663,17.0715007781983],[101.47859954834013,17.084680557250977],[101.47206878662132,17.091110229492188],[101.4610977172851,17.092729568481502],[101.45807647705095,17.08692169189453],[101.44692230224615,17.080230712890625],[101.44523620605497,17.0763397216798],[101.43972015380871,17.071741104126033],[101.43074798583996,17.071918487548828],[101.42559814453136,17.079191207885685],[101.41664123535168,17.081760406494197],[101.4052124023437,17.0922794342041],[101.39482879638695,17.08741188049322],[101.39173889160156,17.081350326538086],[101.3881225585938,17.078609466552734],[101.3835220336914,17.078960418701115],[101.3778076171875,17.082590103149414],[101.37474060058594,17.0883407592774],[101.36779022216825,17.087829589843693],[101.36261749267584,17.08332061767578],[101.34812927246122,17.0827312469483],[101.34539031982422,17.08608055114746],[101.34172058105486,17.08387947082514],[101.33716583251953,17.071979522705135],[101.33049011230469,17.070381164550838],[101.32607269287126,17.07172012329096],[101.31800842285185,17.082611083984432],[101.31433868408226,17.090820312500057],[101.31011199951178,17.091947555542106],[101.30356597900408,17.08938026428234],[101.29595947265642,17.091398239135685],[101.28533172607428,17.082799911499137],[101.28087615966814,17.083051681518555],[101.28118896484403,17.091800689697266],[101.27527618408232,17.093748092651367],[101.26851654052734,17.08757972717291],[101.26178741455072,17.088441848754826],[101.25521850585943,17.097339630126953],[101.25524902343778,17.09939956665039],[101.24627685546903,17.10616111755371],[101.23599243164091,17.111259460449332],[101.23528289794939,17.117851257324276],[101.22698211669945,17.129600524902287],[101.2229080200197,17.13055992126465],[101.21618652343744,17.124418258666992],[101.20272827148443,17.12103843688965],[101.19944000244158,17.117990493774528],[101.20075988769548,17.110950469970817],[101.20600891113287,17.103879928588924],[101.20098114013672,17.087909698486442],[101.19235992431635,17.080390930175724],[101.187255859375,17.065450668335075],[101.17372131347656,17.053749084472656],[101.16971588134766,17.045900344848746],[101.16963195800793,17.03770065307623],[101.15873718261747,17.033599853515682],[101.147216796875,17.031370162963867],[101.14022827148466,17.031652450561637],[101.13578796386724,17.027111053466797],[101.12245178222679,17.023469924926758],[101.11663055419916,17.016391754150334],[101.11508178710949,17.007600784301758],[101.11309051513678,17.00658035278326],[101.11128234863276,16.998849868774414],[101.11508178710949,16.99495124816906],[101.1154327392581,16.982271194458008],[101.11464691162115,16.97558975219721],[101.11599731445318,16.97130966186529],[101.11561584472662,16.960081100463924],[101.11701202392572,16.941591262817326],[101.11647033691423,16.93262100219738],[101.11229705810547,16.92723083496088],[101.1106719970706,16.918479919433594],[101.10848999023438,16.914552688598633],[101.10803222656261,16.900249481201115],[101.09989929199219,16.892280578613395],[101.09525299072277,16.891910552978516],[101.09359741210938,16.8959197998048],[101.08660125732445,16.895240783691406],[101.08239746093773,16.900220870971737],[101.07617187500011,16.903160095214957],[101.07038116455101,16.902740478515682],[101.07424163818388,16.918640136718693],[101.07109069824219,16.924701690673828],[101.06520843505865,16.927181243896484],[101.05307769775419,16.928840637207088],[101.0415267944336,16.927970886230582],[101.03524780273438,16.93035125732422],[101.02937316894554,16.936950683593693],[101.02919006347679,16.945180892944336],[101.03723907470732,16.947139739990348],[101.04209899902344,16.95190811157238],[101.05158996582026,16.956729888916016],[101.0497131347658,16.962240219116325],[101.04556274414068,16.966489791870117],[101.04615783691429,16.972179412841797],[101.05007171630854,16.974689483642578],[101.04450988769543,16.981180191040096],[101.0418777465822,16.988161087036133],[101.04396820068354,16.995941162109375],[101.04833984374994,17.001308441162223],[101.05686187744146,17.018470764160156],[101.05533599853521,17.024940490722656],[101.05964660644531,17.027240753173942],[101.05950927734398,17.03220176696783],[101.05699157714844,17.036979675293026],[101.05957794189464,17.04813003540039],[101.05652618408214,17.054901123046875],[101.05905151367205,17.058629989624023],[101.05724334716803,17.0698699951173],[101.05235290527338,17.074800491333065],[101.05203247070312,17.077661514282283],[101.0573120117187,17.080329895019588],[101.06153869628923,17.084922790527457],[101.05845642089838,17.094980239868164],[101.0664672851562,17.101688385009766],[101.06675720214866,17.10651969909668],[101.06452178955107,17.113620758056754],[101.07054901123053,17.1143798828125],[101.07454681396484,17.131692886352653],[101.07939147949247,17.136577606201172],[101.08093261718778,17.1541805267334],[101.07820129394554,17.157882690429688],[101.08174133300798,17.165811538696346],[101.07837677001959,17.176830291748047],[101.08228302001964,17.186412811279297],[101.08525848388695,17.190759658813533],[101.09422302246116,17.195819854736385],[101.09826660156278,17.19976997375494],[101.10196685791033,17.20858955383312],[101.10884094238298,17.214540481567383],[101.11136627197271,17.226400375366325],[101.10974884033214,17.23505973815918],[101.10201263427734,17.242301940918082],[101.0941467285158,17.25238990783697],[101.09041595459007,17.264280319213867],[101.08450317382835,17.271099090576172],[101.08457183837902,17.27783966064453],[101.05979919433588,17.2781982421875],[101.05110168457037,17.281240463256836],[101.04606628417963,17.28770065307623],[101.03698730468756,17.296079635620117],[101.02829742431652,17.307769775390625],[101.01731872558594,17.309440612793082],[101.01271820068376,17.313199996948356],[101.00918579101568,17.31983947753912],[101.0101776123048,17.327239990234375],[101.00666809082037,17.332420349121094],[101.00386810302763,17.332649230957088],[100.99237060546898,17.33867263793951],[100.98892211914068,17.33642959594738],[100.97722625732439,17.336811065673942],[100.97158050537132,17.338750839233512],[100.95575714111351,17.33256912231451],[100.95419311523438,17.33481979370123],[100.94412994384771,17.33803939819336],[100.94014739990263,17.33383941650402],[100.93132781982428,17.333948135375977],[100.92819213867182,17.33637046813965],[100.9215927124024,17.337240219116325],[100.91632843017607,17.342519760131893],[100.91912841796898,17.3588104248048],[100.9164428710938,17.365961074829045],[100.91810607910173,17.371179580688477],[100.91471862792974,17.374599456787053],[100.91853332519537,17.384830474853572],[100.9183959960938,17.39397811889654],[100.92310333251953,17.405860900878963],[100.92299652099638,17.413940429687614],[100.92559051513678,17.417270660400504],[100.92320251464855,17.42038917541504],[100.92214965820312,17.429050445556697],[100.9165420532226,17.432050704955998],[100.9181518554688,17.437892913818473],[100.91751098632807,17.448650360107422],[100.91146087646484,17.44926071166998],[100.90596008300787,17.45551109313959],[100.90036010742205,17.45605278015148],[100.8957824707033,17.462619781494197],[100.88247680664062,17.4510498046875],[100.87600708007818,17.44799041748047],[100.86683654785156,17.451641082763786],[100.86062622070341,17.44969940185547],[100.85682678222668,17.452899932861385],[100.85259246826178,17.452438354492244],[100.84938812255871,17.45784950256359],[100.83859252929688,17.464031219482536],[100.83613586425787,17.46873092651373],[100.83496856689453,17.477119445800724],[100.8380966186524,17.482450485229492],[100.84571075439459,17.488861083984432],[100.84549713134771,17.500400543212947],[100.85473632812511,17.505510330200252],[100.86701202392578,17.514850616455078],[100.86962890624994,17.52202033996582],[100.87458801269526,17.527601242065543],[100.8683700561524,17.531860351562443],[100.86477661132835,17.54198074340826],[100.86255645751964,17.54323959350586],[100.8692703247072,17.564599990844783],[100.87657928466803,17.576009750366325],[100.88247680664062,17.58286094665533],[100.88707733154303,17.585760116577262],[100.90277862548857,17.591329574584904],[100.90689086914062,17.591110229492244],[100.90943145751959,17.5836696624757],[100.91999816894548,17.57855033874506],[100.91712188720697,17.574380874633846],[100.93464660644543,17.56635093688965],[100.93959045410185,17.567119598388672],[100.94391632080084,17.570671081543026],[100.96069335937506,17.57225036621105],[100.963432312012,17.572690963745117],[100.96817779541021,17.569572448730582],[100.97338104248041,17.567129135131836],[100.9810180664062,17.56888008117687],[100.9854507446289,17.564340591430607],[100.99514007568354,17.563381195068473],[101.00625610351562,17.553659439086857],[101.013969421387,17.555908203125],[101.0255126953125,17.55435180664074],[101.02542877197294,17.549760818481502],[101.03949737548834,17.543130874633903],[101.04151916503923,17.538951873779354],[101.04743194580095,17.54198074340826],[101.04850006103544,17.527370452880803],[101.06224822998058,17.524360656738338],[101.06294250488304,17.510110855102653],[101.06751251220709,17.511421203613395],[101.08109283447271,17.50047111511236],[101.08680725097662,17.50181007385254],[101.09755706787104,17.506429672241325],[101.10099792480463,17.49800109863287],[101.0961532592774,17.49541091918951],[101.10398101806646,17.490070343017635],[101.10801696777372,17.490369796753043],[101.11503601074224,17.47824096679699],[101.13408660888695,17.482561111450195],[101.13156127929688,17.478019714355582],[101.13265228271479,17.47228050231945],[101.1487731933596,17.47449111938488],[101.14919281005888,17.46887016296381],[101.15162658691412,17.465589523315543],[101.166557312012,17.46682167053234],[101.16927337646479,17.469039916992244],[101.17269897460932,17.478811264038086],[101.16985321044916,17.486940383911133],[101.17262268066429,17.49122047424322],[101.17796325683616,17.493360519409237],[101.18830108642607,17.494882583618278],[101.1891021728515,17.497390747070312],[101.18612670898438,17.50896072387701],[101.18498229980469,17.517959594726562],[101.1861419677735,17.52390098571783],[101.19005584716791,17.52676963806158],[101.19950866699241,17.530071258544922],[101.2085571289062,17.53055000305187],[101.21936798095709,17.529790878295955],[101.23458862304693,17.53415107727062],[101.24133300781278,17.550029754638786],[101.24750518798845,17.556289672851562],[101.25611877441406,17.576690673828068],[101.26452636718756,17.584699630737305],[101.26703643798851,17.59566116333002],[101.27281951904308,17.603750228881836],[101.27957153320312,17.609819412231502],[101.29232025146501,17.613950729370174],[101.29886627197271,17.623399734497127],[101.30555725097679,17.63009071350109],[101.31307220458996,17.632850646972713],[101.31513214111357,17.63692283630371],[101.31371307373047,17.64454078674322],[101.31578826904314,17.649299621582145],[101.32327270507818,17.650909423828125],[101.32859802246094,17.65435028076172],[101.3332214355471,17.65250968933117],[101.353988647461,17.65983963012701],[101.35788726806652,17.661790847778263],[101.36384582519548,17.668041229248104],[101.36897277832026,17.677459716796875],[101.37766265869163,17.679639816284123],[101.3843002319336,17.684400558471623],[101.39039611816406,17.694339752197266],[101.39971923828142,17.688631057739315],[101.40239715576172,17.681529998779297],[101.40789031982416,17.68068122863764],[101.4121932983399,17.68721008300787],[101.41358184814464,17.700031280517578],[101.42125701904314,17.707370758056697],[101.4346008300783,17.711780548095817],[101.43683624267607,17.71424102783203],[101.43342590332043,17.719631195068303],[101.42540740966808,17.72332954406744],[101.4081726074221,17.72387123107916],[101.40442657470714,17.726509094238338],[101.40943908691423,17.732788085937557],[101.4185333251956,17.73326110839855],[101.42401123046898,17.731410980224723],[101.43286132812494,17.73279953002924],[101.43817138671903,17.7298908233642],[101.45300292968773,17.73118972778326],[101.45770263671892,17.735410690307674],[101.46131896972673,17.742879867553768],[101.4697265625,17.743530273437614],[101.47097015380888,17.751760482788086],[101.47870635986328,17.753820419311467],[101.48367309570312,17.75826072692871],[101.48573303222673,17.75579833984375],[101.48268890380876,17.751770019531193],[101.47780609130865,17.750110626220817],[101.47706604003935,17.74595069885254],[101.48166656494169,17.741939544677848],[101.49272155761747,17.741792678833065],[101.48880004882812,17.736721038818416],[101.48835754394543,17.723180770874023],[101.49281311035156,17.722351074218864],[101.49833679199219,17.72540092468256],[101.50208282470714,17.736299514770565],[101.50654602050781,17.740760803222656],[101.5088806152346,17.745960235595646],[101.50775909423834,17.75495910644537],[101.52014923095709,17.766519546508732],[101.52873229980474,17.771980285644645],[101.53901672363304,17.77165985107422],[101.54367065429699,17.774271011352596],[101.55075836181658,17.784839630127067],[101.5546569824221,17.787759780883846],[101.56362152099632,17.78734016418457],[101.57553863525385,17.782800674438533],[101.58151245117188,17.78661155700695],[101.57846069335938,17.795209884643498],[101.57435607910185,17.801549911499023],[101.56873321533203,17.80494117736822],[101.5599594116211,17.80694961547863],[101.5543060302735,17.811969757080078],[101.55490875244169,17.814580917358455],[101.56799316406256,17.835020065307674],[101.57276916503912,17.850111007690543],[101.57428741455084,17.862369537353516],[101.57965087890648,17.86704063415533],[101.58275604248075,17.864641189575252],[101.58891296386736,17.849559783935547],[101.5959777832033,17.8473796844483],[101.60193634033209,17.85112953186041],[101.61035156250023,17.859380722045955],[101.61557006835949,17.86906051635748],[101.61605834960943,17.87875747680664],[101.6202392578125,17.88912010192871],[101.6249389648437,17.891670227050838],[101.63462829589872,17.89343070983898],[101.64498901367205,17.893302917480412],[101.65197753906278,17.894319534301758],[101.6811218261721,17.90217971801752],[101.69330596923834,17.90863037109375],[101.70279693603533,17.91057014465332],[101.70654296875028,17.907320022583008],[101.70832061767595,17.902679443359375],[101.71388244628906,17.900529861450252],[101.71797943115263,17.902719497680664],[101.73638153076172,17.91917991638195],[101.73786926269548,17.92713165283203],[101.73285675048857,17.944721221923828],[101.7330169677735,17.948080062866268],[101.73854827880865,17.95595169067377],[101.74607849121111,17.972431182861328],[101.74800872802734,17.98848152160656],[101.75505065917986,17.99917030334484],[101.7575073242187,18.009540557861442],[101.75753784179705,18.018489837646598],[101.76024627685553,18.03032112121582],[101.76729583740234,18.0429306030274],[101.76995849609375,18.05279922485363],[101.78208160400402,18.06573104858404],[101.78723907470714,18.069419860839844],[101.79821014404303,18.06217002868658],[101.81742095947283,18.05665969848627],[101.828422546387,18.055139541625977],[101.8380203247072,18.048240661621094],[101.85748291015642,18.04158020019537],[101.86277008056652,18.038829803466854],[101.87320709228521,18.029720306396598],[101.88314056396513,18.025989532470703],[101.89187622070335,18.027561187744197],[101.89920043945324,18.026319503784237],[101.90904235839866,18.029052734375114],[101.91400909423851,18.03320121765148],[101.91883850097668,18.043300628662223],[101.92887115478521,18.057470321655217],[101.94153594970714,18.071849822998104],[101.94879913330072,18.078300476074332],[101.95822143554688,18.0916805267334],[101.95867919921903,18.095409393310547],[101.98461914062528,18.112159729003963],[101.99421691894548,18.12121009826666],[101.99780273437511,18.121389389038086],[102.00482940673857,18.127389907836857],[102.01963806152344,18.14371109008789],[102.02465057373053,18.147079467773494],[102.02884674072271,18.147350311279354],[102.03733062744158,18.158411026001033],[102.03942871093767,18.169361114502067],[102.04530334472668,18.18546295166027],[102.04634094238281,18.193510055541992],[102.04981994628912,18.197059631347713],[102.0554504394533,18.199342727661133],[102.0657958984375,18.206449508666935],[102.08354187011724,18.21586990356451],[102.0898208618164,18.21780967712408],[102.10865020751947,18.211460113525447]]]},"properties":{"ID_0":228,"ISO":"TH-42","NAME_0":"Thailand","ID_1":21,"NAME_1":"Loei","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"เลย","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.3866729736331,15.329290390014705],[101.38339233398443,15.31515026092535],[101.38188171386724,15.30222129821783],[101.3819122314456,15.288881301879883],[101.38446044921892,15.270079612732047],[101.38421630859386,15.2616605758667],[101.3875579833985,15.241690635681096],[101.38691711425798,15.237201690673942],[101.37786102294928,15.239692687988338],[101.374755859375,15.242960929870605],[101.36785888671892,15.242601394653377],[101.36799621582043,15.246949195861816],[101.36443328857439,15.251051902770996],[101.35785675048857,15.250140190124625],[101.36176300048845,15.237921714782715],[101.36624145507818,15.234371185302678],[101.36865234375,15.228910446166992],[101.36740112304716,15.213151931762638],[101.3685760498048,15.205438613891658],[101.36682128906278,15.199750900268555],[101.36759948730497,15.190679550171012],[101.37574005126959,15.188982009887695],[101.37638092041044,15.182112693786678],[101.378471374512,15.177839279174862],[101.38252258300776,15.175440788269043],[101.38529968261724,15.167011260986442],[101.38905334472656,15.164510726928768],[101.39055633544939,15.15641117095953],[101.39546966552746,15.150122642517033],[101.3932189941408,15.143850326538086],[101.39359283447283,15.134501457214412],[101.39128112792963,15.129011154174862],[101.395980834961,15.121699333190975],[101.4010314941408,15.099710464477539],[101.39907073974638,15.09372997283947],[101.40239715576172,15.067390441894531],[101.40702056884771,15.057580947876033],[101.40965270996094,15.055770874023438],[101.41465759277366,15.044380187988338],[101.41326904296875,15.043060302734432],[101.4113159179687,15.040840148925895],[101.40544891357422,15.041161537170467],[101.40099334716808,15.035901069641113],[101.3874130249024,15.035989761352539],[101.3774185180664,15.038060188293514],[101.36483764648438,15.044800758361873],[101.35912322998047,15.03461074829113],[101.35282135009766,15.026571273803711],[101.35247802734398,15.018090248107967],[101.35498046875006,15.013699531555119],[101.34974670410173,15.005791664123478],[101.35117340087896,14.999060630798283],[101.34974670410173,14.992351531982422],[101.3438491821289,14.989040374755973],[101.3383712768557,14.988650321960563],[101.33444213867182,14.982271194458065],[101.33435058593756,14.977040290832633],[101.32531738281267,14.972920417785645],[101.31299591064476,14.972200393676871],[101.30523681640653,14.970398902893123],[101.29712677001953,14.972930908203239],[101.28376007080078,14.972871780395508],[101.27896881103533,14.969949722289982],[101.27989959716791,14.964721679687614],[101.2786483764649,14.944569587707576],[101.27713775634788,14.93663120269781],[101.2730178833009,14.927001953124943],[101.26891326904303,14.922280311584473],[101.26785278320341,14.91786003112793],[101.25710296630865,14.911100387573356],[101.24378204345709,14.917710304260254],[101.23842620849632,14.932549476623478],[101.23507690429682,14.939400672912711],[101.23301696777361,14.931070327758789],[101.2289505004884,14.922780990600586],[101.22023773193376,14.918489456176758],[101.21563720703142,14.919061660766602],[101.21044921875011,14.916449546814079],[101.19438934326178,14.919791221618652],[101.18704986572283,14.915029525756893],[101.18058776855469,14.913290977478027],[101.1719970703125,14.907571792602653],[101.16596984863287,14.900862693786621],[101.15441894531267,14.896230697631779],[101.14257049560541,14.89585113525402],[101.1378784179688,14.899581909179688],[101.12953186035162,14.901810646057243],[101.12564086914062,14.900769233703727],[101.11881256103521,14.90364074707037],[101.1166763305664,14.902460098266602],[101.10959625244158,14.90544128417963],[101.1014175415039,14.906681060790959],[101.0948104858399,14.904629707336426],[101.09223937988298,14.900291442871037],[101.09181976318371,14.891061782836914],[101.08666229248058,14.885751724243221],[101.07749938964872,14.880751609802303],[101.07675170898449,14.876030921936092],[101.08367156982439,14.870550155639648],[101.081108093262,14.864000320434627],[101.08564758300804,14.861540794372502],[101.08683776855497,14.855421066284123],[101.09095764160162,14.84585952758789],[101.0810317993164,14.849871635437012],[101.0772323608399,14.84703159332281],[101.07601928710955,14.84282016754156],[101.07215118408232,14.843132019042969],[101.06713104248053,14.838940620422477],[101.06829071044945,14.830810546875114],[101.07319641113281,14.830539703369254],[101.0772323608399,14.833219528198299],[101.08882904052734,14.832030296325684],[101.09027099609403,14.829371452331657],[101.0807418823245,14.818711280822754],[101.0812377929688,14.81146144866949],[101.07697296142595,14.809749603271598],[101.07450103759783,14.81401157379156],[101.07095336914085,14.81378078460699],[101.06948852539091,14.809469223022461],[101.07110595703125,14.797642707824707],[101.07419586181663,14.790210723876953],[101.06643676757841,14.791291236877498],[101.0633392333985,14.787651062011776],[101.0642929077149,14.783069610595817],[101.0573120117187,14.783110618591422],[101.05191040039068,14.79132270812994],[101.04618072509771,14.793460845947322],[101.04123687744169,14.798280715942496],[101.03447723388672,14.802029609680176],[101.02527618408197,14.811470031738281],[101.0197982788086,14.818719863891602],[101.01274871826172,14.823340415954647],[101.00807952880871,14.8283109664917],[101.00248718261741,14.82853031158453],[100.99777984619152,14.831480979919434],[100.98800659179693,14.82826995849615],[100.98551940917974,14.829671859741154],[100.97834014892572,14.82666110992443],[100.9700622558596,14.831649780273438],[100.96015167236334,14.82682037353527],[100.9560623168947,14.818849563598746],[100.95736694335932,14.809970855712834],[100.96005249023455,14.80303955078125],[100.95999908447294,14.79684066772461],[100.95649719238287,14.781060218811149],[100.95699310302729,14.772770881652946],[100.9587631225586,14.767041206359977],[100.97215270996116,14.755960464477482],[100.9681930541995,14.752059936523551],[100.96483612060564,14.744759559631404],[100.9562759399414,14.745300292968807],[100.94528961181646,14.74013996124279],[100.93360137939459,14.743671417236328],[100.93194580078153,14.749191284179801],[100.92874145507824,14.749199867248649],[100.92106628417974,14.75315189361578],[100.91636657714838,14.753719329833928],[100.90679931640636,14.761441230773983],[100.90608215332048,14.765239715576229],[100.90207672119158,14.768059730529842],[100.89604949951195,14.767911911010742],[100.88906860351574,14.770671844482536],[100.88520050048834,14.763150215148926],[100.87296295166021,14.761541366577262],[100.86389160156261,14.77029132843029],[100.86178588867199,14.778450012207031],[100.85900115966797,14.783830642700195],[100.85013580322294,14.786760330200252],[100.84483337402338,14.791521072387752],[100.8410873413086,14.800941467285156],[100.832046508789,14.80323123931879],[100.82344818115246,14.802480697631893],[100.81228637695312,14.802970886230582],[100.80716705322288,14.794510841369629],[100.79264831542974,14.793849945068416],[100.79067230224604,14.792409896850643],[100.78163909912115,14.794322013854924],[100.77723693847662,14.793989181518668],[100.76750946044928,14.79580116271984],[100.76042175292974,14.799010276794434],[100.75389862060547,14.806189537048454],[100.74478149414068,14.803381919860783],[100.74279785156244,14.79650974273693],[100.74273681640653,14.782490730285758],[100.7418518066408,14.77910041809082],[100.7249679565432,14.756699562072697],[100.71224975585949,14.748030662536735],[100.69647979736345,14.74872970581066],[100.69313049316412,14.750329971313533],[100.68620300292969,14.745721817016602],[100.68495178222685,14.737051963806152],[100.67056274414062,14.730331420898551],[100.65702056884766,14.714180946350098],[100.62902832031273,14.715081214904899],[100.62062835693382,14.716719627380428],[100.6208190917971,14.720810890197868],[100.61487579345703,14.722649574279842],[100.60762786865234,14.72252273559576],[100.60379791259766,14.717239379882812],[100.61074829101591,14.70355129241949],[100.61538696289057,14.700110435485897],[100.62758636474604,14.677050590515137],[100.61650848388683,14.663150787353516],[100.60388183593778,14.653731346130428],[100.58362579345726,14.663971900940055],[100.57522583007818,14.659990310669059],[100.56700897216803,14.66206169128418],[100.56011199951172,14.658841133117733],[100.55464172363304,14.659760475158805],[100.55397796630876,14.664800643920955],[100.550102233887,14.670911788940487],[100.54496765136747,14.66786193847662],[100.54126739501959,14.668629646301383],[100.53086090087902,14.666351318359432],[100.51564025878923,14.660320281982422],[100.510971069336,14.672991752624625],[100.51534271240257,14.674050331115836],[100.51667022705084,14.679719924926758],[100.50434112548857,14.680039405822754],[100.50444793701178,14.684591293334961],[100.50115966796892,14.68759918212902],[100.4965286254884,14.6971693038941],[100.4910888671875,14.695819854736385],[100.47795104980474,14.701460838317928],[100.4704818725586,14.707710266113281],[100.4697875976563,14.71473026275629],[100.47106170654297,14.719540596008414],[100.47509765625023,14.720851898193473],[100.4749374389649,14.728659629821777],[100.47905731201172,14.73215198516857],[100.47933959960966,14.737258911132812],[100.48612976074219,14.737981796264648],[100.48487854003935,14.743250846862793],[100.48973083496094,14.747051239013672],[100.48739624023432,14.752181053161678],[100.48291778564476,14.756449699401912],[100.47540283203142,14.758970260620117],[100.47332000732439,14.767790794372615],[100.47602844238287,14.771801948547477],[100.47458648681669,14.780350685119572],[100.47132873535185,14.786270141601562],[100.4743270874024,14.794451713562125],[100.47348785400408,14.798770904541016],[100.47556304931635,14.804869651794547],[100.46856689453125,14.814620018005314],[100.46652984619146,14.820739746093864],[100.4668273925783,14.83302021026617],[100.468978881836,14.834829330444279],[100.460258483887,14.843450546264648],[100.45929718017584,14.855540275573674],[100.45008850097662,14.856012344360408],[100.44748687744169,14.857659339904785],[100.44593811035162,14.866491317748967],[100.43798065185558,14.86750125885004],[100.43701934814464,14.873369216919002],[100.4397277832033,14.878501892089957],[100.43881225585938,14.883139610290527],[100.4403305053711,14.888390541076717],[100.43588256835949,14.890930175781364],[100.43193054199236,14.897919654846248],[100.43136596679688,14.909219741821346],[100.4324417114259,14.913981437683162],[100.43029022216803,14.923509597778377],[100.42682647705084,14.930839538574219],[100.4491195678711,14.93989086151123],[100.45420837402338,14.962100982666072],[100.45204925537115,14.972270011901799],[100.4516220092774,14.98265171051031],[100.44873046875,14.99122142791748],[100.45478057861322,14.990280151367301],[100.46472167968767,15.001910209655819],[100.47000885009794,15.014661788940543],[100.4720993041995,15.02250003814703],[100.47139739990251,15.029339790344181],[100.45627593994169,15.03412055969244],[100.44563293457026,15.039249420165959],[100.43090820312528,15.049270629882812],[100.42327880859403,15.055871009826717],[100.42941284179682,15.065281867981014],[100.4350509643557,15.07733154296875],[100.444107055664,15.09104061126709],[100.4508895874024,15.09529972076416],[100.46521759033232,15.11282920837408],[100.46776580810564,15.114280700683707],[100.47463226318376,15.107970237731877],[100.48262023925776,15.114969253540039],[100.49405670166027,15.120520591735954],[100.50016784667963,15.126540184020996],[100.50785827636719,15.129581451416072],[100.51081085205107,15.13319110870367],[100.50460815429688,15.144230842590332],[100.50614166259766,15.15559005737299],[100.51403045654303,15.167470932006779],[100.52729797363298,15.177209854126033],[100.53174591064476,15.178500175476074],[100.5354461669923,15.189059257507381],[100.5399932861331,15.196820259094181],[100.54450225830084,15.19635009765625],[100.55261993408197,15.203440666198674],[100.55677032470732,15.204792022705021],[100.56082153320307,15.21033000946045],[100.56183624267578,15.21450138092041],[100.56906890869158,15.218720436096191],[100.56867980957048,15.221320152282715],[100.58770751953136,15.22389125823986],[100.59256744384771,15.228071212768668],[100.5918731689456,15.235060691833496],[100.58898925781256,15.242890357971191],[100.59075164794933,15.25013065338129],[100.59510803222685,15.257860183715877],[100.59094238281261,15.266330718994197],[100.58068847656267,15.265821456909237],[100.57855224609386,15.26754093170166],[100.58032989501953,15.27403926849371],[100.58354187011736,15.274880409240836],[100.58563995361345,15.281521797180176],[100.59234619140625,15.28687953948969],[100.594711303711,15.286669731140137],[100.6071166992188,15.292310714721737],[100.61293792724626,15.293430328369197],[100.61409759521484,15.300821304321346],[100.61701202392601,15.307800292968807],[100.6244125366211,15.314110755920467],[100.6234359741211,15.317570686340332],[100.63030242919922,15.322031021118278],[100.63552093505865,15.321261405944938],[100.63562011718767,15.32710170745861],[100.63008117675798,15.335871696472168],[100.63037109375006,15.342650413513184],[100.63492584228521,15.358289718627987],[100.63614654541027,15.365670204162711],[100.6390686035158,15.371259689331112],[100.64305877685564,15.385198593139705],[100.64402008056658,15.394881248474121],[100.64726257324236,15.402629852294922],[100.6446380615235,15.406670570373649],[100.64668273925798,15.410161018371639],[100.64450836181669,15.415279388427791],[100.6506729125976,15.41849136352539],[100.65682983398438,15.424480438232536],[100.66573333740229,15.429011344909725],[100.67726135253912,15.429459571838379],[100.68643188476585,15.430959701538143],[100.69828033447271,15.440160751342887],[100.70374298095703,15.439250946044922],[100.71203613281278,15.440328598022518],[100.71877288818376,15.44580173492443],[100.7342758178711,15.446400642395076],[100.73655700683594,15.448930740356445],[100.74954986572271,15.45149040222168],[100.76003265380865,15.457290649414062],[100.76613616943365,15.458312034607047],[100.77304840087896,15.46565055847168],[100.77059173584013,15.470999717712402],[100.76996612548834,15.482190132141113],[100.77220153808611,15.485289573669434],[100.77136993408232,15.495500564575195],[100.76512908935564,15.50117111206066],[100.7530899047851,15.503952026367301],[100.75215911865251,15.507561683654899],[100.74666595458984,15.512261390686035],[100.75676727294922,15.513811111450195],[100.76094818115251,15.51802062988287],[100.76104736328153,15.5215101242066],[100.77485656738298,15.52041053771967],[100.78330230712896,15.523299217224178],[100.79174804687506,15.522879600524902],[100.79541015625011,15.519319534301758],[100.79486846923822,15.511931419372672],[100.79702758789062,15.507950782775993],[100.80420684814447,15.501210212707633],[100.8100280761721,15.487780570984],[100.82614898681635,15.478870391845817],[100.83271026611334,15.477850914001465],[100.83962249755865,15.479961395263729],[100.84413146972656,15.477499961853027],[100.845458984375,15.47296047210699],[100.85395050048857,15.470330238342342],[100.86395263671875,15.473260879516715],[100.87795257568365,15.47494029998785],[100.88539886474615,15.473600387573185],[100.89659118652344,15.473810195922908],[100.9078369140625,15.463351249694881],[100.91024017333996,15.464461326599064],[100.9207229614259,15.45637035369873],[100.9255599975586,15.458000183105412],[100.92906951904303,15.453310966491642],[100.94937896728533,15.445031166076774],[100.95121002197294,15.441972732544059],[100.95128631591814,15.43443965911871],[100.9581604003908,15.425421714782715],[100.96118164062494,15.419400215148869],[100.97077941894531,15.414031028747615],[100.97672271728521,15.414759635925407],[100.97965240478544,15.41178989410406],[100.97798156738298,15.385508537292537],[100.98281860351568,15.381780624389705],[100.99182128906256,15.378669738769531],[100.99581146240257,15.372320175170842],[101.0035476684572,15.366620063781738],[101.01010131835943,15.363299369812012],[101.01811218261724,15.352621078491325],[101.02233123779303,15.339411735534782],[101.02426910400419,15.337629318237305],[101.04551696777361,15.335220336914062],[101.07087707519548,15.336111068725586],[101.07701110839844,15.345470428466854],[101.0928802490235,15.35060024261469],[101.10099792480463,15.347789764404354],[101.10668945312511,15.335561752319336],[101.11399841308611,15.335659980773869],[101.12918090820341,15.329879760742188],[101.13217926025413,15.326399803161621],[101.13883972167974,15.324171066284237],[101.15625762939482,15.32363128662115],[101.16871643066423,15.325090408325309],[101.1845932006836,15.325110435485897],[101.19087219238281,15.328310012817496],[101.19780731201178,15.326571464538631],[101.20606231689464,15.318620681762638],[101.2128601074221,15.324700355529728],[101.2134628295899,15.332380294799862],[101.22531127929716,15.341300964355469],[101.23290252685553,15.341760635375977],[101.24343872070341,15.349560737609977],[101.24907684326178,15.352069854736328],[101.25411987304716,15.350510597229004],[101.26985931396484,15.358830451965389],[101.27742004394526,15.360449790954647],[101.2816467285158,15.364139556884822],[101.28643035888672,15.372720718383846],[101.29551696777355,15.375681877136174],[101.29946899414068,15.378669738769531],[101.30110931396501,15.383230209350586],[101.30655670166044,15.386639595031738],[101.30429077148449,15.39308071136486],[101.30484771728544,15.4085311889649],[101.30631256103521,15.414742469787598],[101.30387878417997,15.422780036926383],[101.30410766601574,15.428780555725154],[101.3089370727539,15.433341979980582],[101.3033599853515,15.438009262085018],[101.29940795898438,15.454330444336051],[101.30329132080084,15.459371566772518],[101.30454254150408,15.465770721435547],[101.30809783935575,15.47129154205328],[101.30419158935547,15.481850624084586],[101.30667877197271,15.488781929016227],[101.30407714843778,15.500141143798885],[101.30509185791033,15.506690979003906],[101.30359649658203,15.51270961761469],[101.30547332763689,15.51754188537609],[101.30432128906244,15.521910667419434],[101.29785156250017,15.525349617004451],[101.29057312011713,15.525240898132324],[101.28985595703142,15.529771804809513],[101.29197692871094,15.536470413208008],[101.30438995361334,15.542119979858398],[101.30887603759777,15.55166053771984],[101.31196594238298,15.571930885314941],[101.31645965576178,15.573201179504395],[101.33296966552734,15.572850227356014],[101.339340209961,15.576551437378043],[101.35260772705095,15.576999664306697],[101.35527038574236,15.57560062408453],[101.36245727539091,15.580081939697322],[101.37187957763672,15.57787132263195],[101.37127685546892,15.570671081543082],[101.37471771240251,15.555761337280387],[101.37448883056652,15.5458402633667],[101.37632751464866,15.534720420837402],[101.37584686279291,15.52746963500988],[101.37806701660162,15.517190933227539],[101.38075256347685,15.510442733764648],[101.38712310791033,15.482818603515625],[101.3875579833985,15.473090171813965],[101.38629913330107,15.463920593261662],[101.38094329834013,15.443041801452637],[101.37918853759788,15.431741714477539],[101.3790130615235,15.416740417480526],[101.37982177734386,15.407501220703125],[101.37837982177734,15.401950836181697],[101.37889862060541,15.389068603515682],[101.38205718994146,15.386480331420898],[101.37821960449224,15.380050659179688],[101.37716674804682,15.374509811401424],[101.37827301025419,15.362651824951229],[101.38056182861357,15.357430458068904],[101.37927246093744,15.35255146026617],[101.38186645507818,15.338709831237793],[101.3866729736331,15.329290390014705]]]},"properties":{"ID_0":228,"ISO":"TH-16","NAME_0":"Thailand","ID_1":22,"NAME_1":"Lopburi","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ลพบุรี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.52036285400408,18.4945907592774],[97.5246200561524,18.492370605468864],[97.53115844726591,18.492319107055664],[97.53940582275385,18.487590789794922],[97.54457092285173,18.49814987182623],[97.54294586181663,18.500419616699162],[97.54811859130888,18.514970779418945],[97.54868316650396,18.522560119628906],[97.55153656005865,18.526042938232536],[97.56118011474626,18.52412033081066],[97.5669021606447,18.518819808960075],[97.56992340087885,18.520219802856502],[97.57653808593778,18.531421661376953],[97.5804672241211,18.5299015045166],[97.58876037597685,18.530090332031307],[97.59250640869146,18.534690856933707],[97.59961700439482,18.532039642333984],[97.60858917236357,18.533550262451172],[97.60990905761724,18.538261413574276],[97.61589050292963,18.541481018066406],[97.62036895751959,18.541320800781307],[97.6225891113283,18.53573036193859],[97.62642669677734,18.539079666137752],[97.62523651123041,18.544250488281364],[97.6184310913086,18.551790237426758],[97.61828613281273,18.55755043029785],[97.62737274169922,18.561790466308707],[97.63231658935564,18.56125068664562],[97.63565063476568,18.55652999877941],[97.64012145996111,18.555509567260742],[97.64376831054705,18.558481216430664],[97.64856719970703,18.566890716552678],[97.65312194824219,18.56719970703125],[97.65410614013678,18.57234001159668],[97.6588973999024,18.574480056762695],[97.6653671264649,18.57182121276861],[97.67489624023443,18.570129394531307],[97.67806243896479,18.57361030578619],[97.69629669189476,18.56670951843273],[97.70361328125011,18.566221237182617],[97.7139663696289,18.56924057006836],[97.72415924072271,18.57019996643072],[97.72850799560553,18.580150604248104],[97.7396087646485,18.578710556030387],[97.74684143066429,18.57496070861822],[97.75119781494146,18.575559616088867],[97.75598144531256,18.572839736938533],[97.7718963623048,18.57500076293951],[97.77149963378918,18.583049774170036],[97.77477264404291,18.600811004638786],[97.7777862548831,18.606042861938533],[97.77820587158197,18.614810943603516],[97.7738876342774,18.618169784545955],[97.77471923828153,18.625522613525447],[97.77185058593778,18.62966156005865],[97.7755432128908,18.633670806884766],[97.77243041992216,18.640499114990178],[97.77538299560547,18.641468048095646],[97.7764968872072,18.652980804443416],[97.77314758300787,18.657619476318473],[97.77188873291027,18.664339065551758],[97.77572631835932,18.66888809204113],[97.77667999267572,18.674291610717887],[97.7750015258789,18.679281234741154],[97.77764892578142,18.684648513794002],[97.77584838867193,18.69285964965826],[97.76982879638689,18.69993972778326],[97.76786804199247,18.706470489502067],[97.76354980468767,18.709020614623967],[97.75744628906267,18.721920013427848],[97.75749206542974,18.730360031128043],[97.75554656982422,18.73303031921398],[97.75720214843761,18.738220214843864],[97.76113891601585,18.74131011962885],[97.76306152343756,18.748800277710018],[97.7665328979495,18.754610061645565],[97.76611328125006,18.759878158569393],[97.75714111328148,18.76493072509777],[97.75759124755871,18.781719207763672],[97.75282287597668,18.788139343261776],[97.7518005371096,18.795829772949332],[97.75631713867188,18.80545997619629],[97.7484512329101,18.808629989624023],[97.74604034423834,18.818700790405217],[97.74282073974615,18.827341079712028],[97.74841308593778,18.830102920532227],[97.75174713134766,18.84032058715826],[97.74780273437506,18.845268249511662],[97.74928283691412,18.852790832519588],[97.74514770507841,18.856401443481445],[97.74260711669928,18.872449874878043],[97.7444458007812,18.878480911254996],[97.74095153808622,18.883600234985465],[97.73677825927763,18.885349273681697],[97.7311096191408,18.88323974609375],[97.71940612792997,18.887880325317383],[97.71417999267578,18.893831253051815],[97.70822906494158,18.89677047729498],[97.69164276123064,18.913579940795955],[97.69271087646513,18.922080993652457],[97.67410278320312,18.928819656372184],[97.67108917236334,18.9324893951416],[97.67286682128935,18.94053840637207],[97.67115783691435,18.94442939758312],[97.68031311035185,18.944869995117188],[97.68808746337913,18.949739456176815],[97.69312286376964,18.94536972045904],[97.70617675781256,18.95596122741705],[97.7088394165039,18.95437049865734],[97.71112060546875,18.96307945251459],[97.71819305419928,18.965759277343864],[97.72354125976568,18.964168548584098],[97.728042602539,18.96982955932623],[97.73567962646501,18.970970153808594],[97.74121093750017,18.976419448852596],[97.73766326904303,18.98031044006359],[97.74040985107433,18.989700317382812],[97.7394332885745,18.99735069274908],[97.74002838134777,19.005100250244197],[97.73829650878935,19.01143074035639],[97.74237823486345,19.02284049987793],[97.74035644531273,19.026699066162223],[97.74186706542974,19.032140731811523],[97.73877716064453,19.038570404052678],[97.74674987792986,19.040000915527287],[97.75202178955107,19.0363826751709],[97.75525665283232,19.039880752563477],[97.76296234130876,19.036031723022518],[97.77294158935553,19.042289733886662],[97.77516174316423,19.053119659423828],[97.77184295654303,19.06069183349615],[97.76802062988287,19.064268112182674],[97.77237701416021,19.069641113281307],[97.78275299072277,19.07324981689453],[97.78861236572288,19.07072067260748],[97.79569244384794,19.071451187133846],[97.7992858886721,19.073860168457088],[97.80066680908232,19.078750610351562],[97.80621337890636,19.083232879638672],[97.81157684326166,19.083379745483512],[97.81400299072294,19.08819007873541],[97.82511901855463,19.08827018737793],[97.83727264404325,19.09220123291027],[97.83896636962913,19.09766006469738],[97.83860778808622,19.10692977905279],[97.84131622314464,19.110370635986385],[97.84178161621094,19.115560531616268],[97.83853912353516,19.129270553588867],[97.83647918701195,19.134130477905387],[97.83927917480469,19.142139434814396],[97.84436798095714,19.14394187927246],[97.84658050537115,19.1484317779541],[97.8433685302735,19.1517391204834],[97.84516143798845,19.157640457153377],[97.8420867919923,19.160310745239315],[97.84310150146484,19.16498947143566],[97.8405303955081,19.169509887695256],[97.84613037109392,19.17939186096197],[97.84243011474638,19.18516921997076],[97.84004211425781,19.192350387573185],[97.84075164794933,19.19683074951172],[97.8473129272461,19.199771881103516],[97.84671783447266,19.207401275634766],[97.84793090820335,19.214590072631893],[97.84570312500011,19.220251083374023],[97.83699798583984,19.224971771240234],[97.82981109619163,19.22727966308605],[97.8297195434572,19.234859466552734],[97.81960296630876,19.23682975769043],[97.8136672973634,19.250938415527457],[97.80580902099638,19.25611114501953],[97.7992782592774,19.258300781250057],[97.78618621826183,19.265220642089957],[97.79373931884771,19.276220321655387],[97.79389190673828,19.280639648437557],[97.79843902587908,19.28128242492687],[97.80735778808605,19.285961151123047],[97.8109664916995,19.28037071228033],[97.81507110595703,19.279560089111385],[97.82070159912138,19.282489776611442],[97.82544708251982,19.280042648315543],[97.82988739013666,19.282392501831055],[97.83563232421892,19.28911972045904],[97.84604644775419,19.287380218505916],[97.84575653076189,19.295301437378043],[97.8423690795899,19.298311233520508],[97.8337631225586,19.300090789794922],[97.83188629150396,19.308799743652344],[97.82781982421892,19.312791824340763],[97.82923126220726,19.319818496704215],[97.8255615234375,19.326389312744084],[97.81479644775402,19.332370758056697],[97.81738281250006,19.33653831481928],[97.81217193603533,19.343280792236385],[97.80320739746111,19.349250793457088],[97.80213928222662,19.3528728485108],[97.80544281005888,19.361320495605526],[97.80416870117205,19.36905097961437],[97.80961608886747,19.372989654541016],[97.80636596679693,19.37770080566412],[97.80712890625006,19.385240554809684],[97.78980255126982,19.394510269165096],[97.7911758422851,19.400409698486328],[97.80734252929716,19.40242958068859],[97.80996704101585,19.40826988220215],[97.81598663330095,19.410169601440373],[97.82081604003912,19.417690277099723],[97.82798004150385,19.423450469970817],[97.83046722412104,19.428251266479606],[97.83053588867193,19.437509536743278],[97.83677673339861,19.444690704345703],[97.83941650390636,19.445770263671932],[97.84384155273455,19.453411102294865],[97.85365295410179,19.46373176574707],[97.8611526489259,19.466939926147518],[97.86335754394537,19.470220565796012],[97.86342620849638,19.477581024170036],[97.86859130859386,19.48102951049816],[97.87401580810547,19.48102951049816],[97.87747192382818,19.485338211059627],[97.8754196166995,19.49071121215826],[97.88905334472673,19.49808120727539],[97.88228607177763,19.504800796508846],[97.87655639648443,19.506370544433594],[97.87769317626959,19.510660171508846],[97.87226104736345,19.513269424438477],[97.87103271484403,19.519630432128963],[97.86730957031267,19.524709701538143],[97.85810852050793,19.528930664062557],[97.85719299316423,19.538249969482536],[97.85945129394526,19.55332756042486],[97.86396789550787,19.56025123596197],[97.86437988281278,19.56463050842285],[97.8609924316408,19.569049835205078],[97.86376953125006,19.573209762573356],[97.8742294311524,19.575859069824276],[97.87741851806658,19.575042724609375],[97.88376617431646,19.578599929809627],[97.89518737792969,19.57426071166998],[97.90421295166021,19.575569152832145],[97.91133880615229,19.580432891845817],[97.9189758300783,19.582782745361328],[97.92378997802734,19.582710266113338],[97.92984771728533,19.58710098266613],[97.93324279785168,19.587301254272575],[97.9462890625,19.59514045715332],[97.95400238037138,19.591249465942496],[97.96328735351568,19.590410232544002],[97.96353912353544,19.595750808715877],[97.9735412597658,19.597360610962028],[97.97911834716803,19.600250244140625],[97.97984313964861,19.614561080932674],[97.97579956054682,19.619409561157283],[97.97895050048834,19.627281188964844],[97.97895812988304,19.632850646972656],[97.98385620117188,19.631759643554744],[97.98690032959001,19.637889862060547],[97.9940719604495,19.63496017456066],[97.99697875976557,19.63550949096691],[98.0052261352539,19.630260467529297],[98.0178985595706,19.635831832885742],[98.02963256835938,19.633691787719783],[98.03067779541044,19.638120651245117],[98.03591156005876,19.6401824951173],[98.04162597656267,19.639101028442496],[98.04281616210938,19.64590072631836],[98.04825592041027,19.652072906494197],[98.04625701904303,19.657260894775504],[98.04672241210966,19.662260055542106],[98.03604125976591,19.66798019409191],[98.03743743896501,19.67429924011242],[98.03201293945341,19.684780120849553],[98.03514862060564,19.688390731811637],[98.03423309326172,19.693321228027344],[98.03795623779308,19.69821166992199],[98.03338623046886,19.701709747314567],[98.02922821044939,19.71064949035656],[98.02912902832054,19.719530105590877],[98.03533935546892,19.721519470214844],[98.03304290771501,19.730720520019588],[98.03730010986334,19.737890243530273],[98.0362701416015,19.742910385131893],[98.0385971069336,19.746610641479606],[98.03665924072283,19.75052070617687],[98.04117584228544,19.760061264038143],[98.04102325439464,19.764921188354606],[98.03721618652338,19.77042961120617],[98.03849792480497,19.777139663696346],[98.03704833984392,19.783861160278434],[98.03977203369146,19.791471481323242],[98.04335021972673,19.7959308624267],[98.03862762451178,19.798788070678768],[98.03867340087896,19.802570343017635],[98.04675292968744,19.805200576782283],[98.05081176757812,19.80882263183605],[98.05940246582031,19.79989051818859],[98.06893157958984,19.8022403717041],[98.07070159912132,19.8070011138916],[98.08584594726574,19.80718994140625],[98.0877761840822,19.802980422973576],[98.0848999023437,19.790451049804744],[98.09259796142578,19.787948608398494],[98.10163116455107,19.770210266113338],[98.1063232421875,19.769041061401424],[98.11405181884794,19.77044105529791],[98.11939239501982,19.776351928710994],[98.12644958496122,19.776338577270508],[98.1308898925783,19.78089904785162],[98.13793182373041,19.78417015075695],[98.14054107666044,19.780769348144645],[98.147201538086,19.77754020690918],[98.15200042724638,19.771869659423885],[98.16001892089872,19.767780303955078],[98.165336608887,19.768800735473746],[98.17220306396513,19.766389846801758],[98.17884826660179,19.759019851684627],[98.18512725830084,19.756721496582145],[98.18525695800798,19.74701118469244],[98.19355773925787,19.736101150512695],[98.20626831054688,19.72854042053234],[98.21306610107433,19.728179931640625],[98.21679687500006,19.723360061645565],[98.22515106201172,19.721431732177734],[98.22969818115251,19.724611282348633],[98.23240661621094,19.715721130371207],[98.23922729492205,19.70817184448248],[98.23737335205084,19.702810287475586],[98.23252868652338,19.69589996337902],[98.23799133300787,19.68560981750494],[98.2440414428711,19.680850982666072],[98.25023651123075,19.673719406128043],[98.255859375,19.675819396972713],[98.26220703125023,19.675439834594727],[98.27160644531261,19.680799484253043],[98.27906036376964,19.679241180419865],[98.29023742675804,19.682081222534237],[98.29933166503906,19.679279327392578],[98.30390167236345,19.683889389038086],[98.30909729003912,19.683958053588924],[98.31958007812506,19.689989089965877],[98.32598114013683,19.694761276245117],[98.33265686035168,19.69413185119629],[98.33693695068365,19.68976020812994],[98.34297943115251,19.6942195892334],[98.34967803955095,19.694530487060547],[98.35394287109398,19.691209793090763],[98.35967254638695,19.692140579223746],[98.36647033691406,19.690559387207145],[98.37269592285168,19.686210632324162],[98.37815093994146,19.692821502685547],[98.38565826416044,19.6971111297608],[98.3973464965822,19.700380325317383],[98.40477752685564,19.697599411010685],[98.4095001220706,19.691181182861385],[98.41686248779303,19.68925094604498],[98.42134857177746,19.691749572753906],[98.42946624755865,19.69123077392578],[98.43518066406256,19.694030761718693],[98.4422531127932,19.690471649170036],[98.45095062255876,19.690570831298885],[98.45491027832043,19.693201065063533],[98.4638290405274,19.693130493164062],[98.46981048583979,19.688552856445312],[98.47297668457037,19.67450904846197],[98.47078704834001,19.659500122070256],[98.47480010986345,19.655540466308594],[98.48233032226568,19.652961730957145],[98.49057769775402,19.644332885742244],[98.49394989013695,19.63916015625],[98.50241851806635,19.634340286254996],[98.50544738769543,19.6297607421875],[98.51712799072283,19.62378120422369],[98.52355194091825,19.621839523315543],[98.52540588378912,19.61498069763195],[98.53016662597662,19.611991882324332],[98.54029083251976,19.60918045043951],[98.54100036621094,19.605840682983512],[98.53730773925793,19.600620269775504],[98.54014587402372,19.593700408935604],[98.53835296630865,19.58506011962902],[98.54238891601585,19.578540802001896],[98.54425048828125,19.55681037902832],[98.54608154296886,19.554340362548828],[98.55976867675787,19.54739952087408],[98.5670776367187,19.544759750366268],[98.5647659301759,19.53450012207037],[98.56549835205107,19.5260009765625],[98.56790161132812,19.522331237793082],[98.56671142578142,19.514102935791016],[98.57010650634777,19.506450653076172],[98.5755462646485,19.50811004638672],[98.58006286621111,19.507179260253963],[98.58506774902344,19.502719879150447],[98.59468841552763,19.491489410400447],[98.59651947021484,19.487720489502067],[98.59445953369163,19.48122978210455],[98.59774017334013,19.477481842041016],[98.60058593750006,19.467790603637752],[98.59883117675787,19.46243286132824],[98.59278869628935,19.461130142212028],[98.59358978271479,19.453269958496207],[98.59121704101585,19.44754028320324],[98.58629608154325,19.441650390625114],[98.58727264404308,19.431129455566463],[98.59101867675787,19.422380447387752],[98.58763885498075,19.41756057739252],[98.5883407592774,19.411180496215934],[98.59620666503935,19.404260635376033],[98.59568023681652,19.401279449462947],[98.58841705322277,19.395601272583008],[98.58242034912115,19.397140502929744],[98.57904052734403,19.395830154418945],[98.57482910156256,19.387659072876033],[98.57504272460966,19.38350105285656],[98.58230590820341,19.365161895751953],[98.59440612792969,19.35605049133312],[98.59137725830084,19.345340728759822],[98.59414672851574,19.338790893554744],[98.59069061279325,19.330631256103516],[98.59464263916021,19.321519851684684],[98.60070037841797,19.313989639282227],[98.6026458740235,19.30648994445812],[98.60025787353527,19.301580429077262],[98.6001586914063,19.295499801635856],[98.59597015380865,19.288938522338924],[98.59916687011719,19.28128242492687],[98.60549163818365,19.277551651000977],[98.59378051757807,19.26649093627924],[98.59091949462885,19.26126289367687],[98.59018707275408,19.251640319824276],[98.59471893310558,19.23935127258312],[98.59732818603538,19.2369327545166],[98.59996795654303,19.22800064086914],[98.58748626708979,19.216749191284293],[98.58106231689453,19.214902877807617],[98.57010650634777,19.21400070190441],[98.57048797607433,19.204891204833928],[98.5769729614259,19.20034027099615],[98.5835571289063,19.188190460205135],[98.58812713623047,19.184160232544002],[98.59607696533197,19.183130264282227],[98.60755920410156,19.177259445190543],[98.61048126220726,19.1701602935791],[98.6222229003908,19.164840698242244],[98.6210403442384,19.15975952148449],[98.62409973144543,19.15546035766613],[98.63401794433605,19.153961181640682],[98.63461303710955,19.146680831909237],[98.63327026367182,19.14069175720215],[98.63932800292997,19.132709503173885],[98.64221954345714,19.124378204345817],[98.64241027832043,19.11534118652338],[98.64488983154308,19.104152679443473],[98.65283966064459,19.092960357666016],[98.6497726440432,19.07971954345703],[98.64736938476574,19.075830459594783],[98.64122009277372,19.070659637451172],[98.64174652099615,19.067100524902344],[98.63404846191423,19.060350418090877],[98.629379272461,19.059980392455998],[98.62116241455101,19.055561065673828],[98.61530303955107,19.054950714111442],[98.60270690917997,19.049148559570256],[98.59800720214861,19.042379379272575],[98.5943679809572,19.04142951965332],[98.5877532958985,19.04503059387207],[98.5806274414062,19.04572105407715],[98.56942749023438,19.04356956481928],[98.5643997192384,19.03524971008312],[98.55619049072277,19.035360336303825],[98.55390930175793,19.029911041259822],[98.54721832275402,19.024339675903377],[98.52944183349615,19.022960662841797],[98.51712799072283,19.030179977417106],[98.49534606933605,19.036060333252067],[98.49214935302751,19.038639068603572],[98.48478698730491,19.038480758666992],[98.47973632812517,19.04078865051281],[98.47335815429693,19.039220809936523],[98.45873260498058,19.044450759887695],[98.43891143798822,19.045320510864315],[98.43041229248053,19.03980827331543],[98.42642974853538,19.03416252136236],[98.42536163330072,19.02911949157715],[98.42204284667991,19.02605056762701],[98.4158706665039,19.030179977417106],[98.40217590332037,19.03424263000494],[98.40213775634766,19.03766059875494],[98.39285278320335,19.051490783691406],[98.38501739501959,19.05995941162115],[98.38276672363287,19.057989120483455],[98.37726593017607,19.060880661010856],[98.3731460571289,19.065378189087028],[98.37599945068376,19.072530746460075],[98.37172698974638,19.083820343017578],[98.36499786376959,19.08671951293951],[98.36196136474632,19.086019515991268],[98.35491180419928,19.09185981750494],[98.35418701171903,19.098947525024528],[98.34706878662115,19.110099792480526],[98.3456268310548,19.12594985961914],[98.35003662109392,19.130317687988338],[98.34375000000017,19.13560295104986],[98.34085845947277,19.142669677734375],[98.3438415527346,19.149402618408203],[98.33174896240251,19.148330688476506],[98.3258895874024,19.153980255126953],[98.32116699218778,19.15398979187023],[98.3146362304688,19.15098190307623],[98.30297088623047,19.153430938720703],[98.29360198974626,19.15351104736328],[98.28630828857433,19.150909423828182],[98.27027893066418,19.153821945190373],[98.2659683227539,19.151100158691463],[98.26035308837902,19.1566104888916],[98.2543029785158,19.158590316772404],[98.24372100830084,19.149339675903263],[98.24420928955078,19.145532608032227],[98.24195861816412,19.138490676879883],[98.24546813964872,19.131940841674805],[98.24286651611345,19.12450027465826],[98.24897003173845,19.121000289917106],[98.24971008300798,19.116270065307617],[98.25332641601557,19.11138916015625],[98.25202941894531,19.106359481811523],[98.24436950683611,19.103219985961914],[98.239486694336,19.099330902099666],[98.23838043212896,19.092790603637752],[98.23381042480497,19.087869644165153],[98.22772979736357,19.0858993530274],[98.22486114501982,19.07571983337408],[98.21791076660156,19.069080352783146],[98.216850280762,19.065998077392692],[98.21060180664057,19.060411453247184],[98.20659637451166,19.046560287475643],[98.202133178711,19.043220520019645],[98.19165039062506,19.03960037231451],[98.19281768798857,19.033060073852596],[98.18692016601574,19.029609680175838],[98.18535614013678,19.024618148803768],[98.18759918212896,19.022539138793945],[98.1873016357423,19.014200210571346],[98.18173217773443,19.005159378051758],[98.17044830322271,18.995710372924805],[98.17163848876982,18.992862701416072],[98.16819000244146,18.982730865478516],[98.16532135009771,18.97980117797863],[98.16648864746122,18.974760055541992],[98.17392730712919,18.960420608520565],[98.17437744140642,18.954830169677678],[98.17289733886719,18.946058273315543],[98.16752624511736,18.937339782714957],[98.15882873535179,18.93539047241211],[98.160209655762,18.927539825439567],[98.15856170654314,18.917800903320312],[98.1502304077149,18.915132522583008],[98.14601898193365,18.910209655761776],[98.13247680664068,18.90998077392578],[98.12606811523466,18.905927658081055],[98.12137603759766,18.897069931030387],[98.11348724365246,18.89120101928711],[98.1118774414063,18.885641098022404],[98.1036376953125,18.882450103759822],[98.09252166748058,18.863769531249943],[98.0904769897461,18.8592529296875],[98.08969879150408,18.850931167602596],[98.08332061767607,18.835950851440487],[98.08312988281278,18.828210830688477],[98.08087158203136,18.816150665283317],[98.08364868164068,18.80981063842779],[98.08849334716825,18.80346107482916],[98.08685302734375,18.794290542602596],[98.09227752685553,18.783470153808537],[98.09350585937517,18.775390625000057],[98.10199737548834,18.773628234863338],[98.10993957519531,18.778060913085994],[98.12207031250011,18.773809432983455],[98.11991119384788,18.76112937927246],[98.12180328369146,18.756469726562557],[98.1166381835938,18.751911163330078],[98.10881805419928,18.74802970886236],[98.10768890380865,18.743040084838867],[98.09778594970726,18.73723030090332],[98.10341644287126,18.73402976989746],[98.10484313964866,18.72628974914545],[98.1045913696289,18.71627807617199],[98.1080322265625,18.709167480468807],[98.10208892822283,18.703830718994084],[98.10822296142578,18.689348220825195],[98.10649871826172,18.675870895385742],[98.11103057861322,18.672870635986385],[98.1138458251956,18.668319702148438],[98.11052703857422,18.663381576538143],[98.10714721679693,18.646730422973746],[98.11200714111345,18.642839431762752],[98.1188430786134,18.63309097290039],[98.12429046630865,18.631990432739315],[98.14598846435547,18.63717079162609],[98.15541839599638,18.631261825561523],[98.15762329101562,18.627281188964844],[98.1654129028322,18.624320983886776],[98.17484283447288,18.626380920410213],[98.184326171875,18.621839523315543],[98.18509674072266,18.60790061950695],[98.19822692871111,18.605970382690487],[98.21183776855474,18.605970382690487],[98.21604156494163,18.59733963012701],[98.21420288085949,18.588951110839844],[98.22400665283203,18.58699989318859],[98.22949218750017,18.583959579467773],[98.23100280761713,18.57917976379406],[98.23586273193365,18.574310302734432],[98.23806762695307,18.56792068481451],[98.23285675048857,18.562850952148438],[98.2330780029298,18.555751800537166],[98.22624206542963,18.55282974243164],[98.21790313720703,18.541660308838004],[98.20867156982433,18.535501480102653],[98.20140838623075,18.53975105285639],[98.19738006591825,18.538311004638672],[98.18987274169922,18.541620254516715],[98.18638610839861,18.546030044555778],[98.17619323730474,18.54528045654297],[98.17472076416027,18.53520011901861],[98.1715164184572,18.52779006958002],[98.17182159423857,18.52402114868164],[98.1655731201173,18.523540496826286],[98.1553878784182,18.510721206665153],[98.14762115478544,18.51209259033203],[98.14356231689476,18.508159637451172],[98.13243865966797,18.50296974182129],[98.13105773925776,18.50049972534174],[98.12361907958979,18.50059127807623],[98.12100982666016,18.49580955505371],[98.12023162841797,18.486230850219783],[98.11395263671875,18.480861663818303],[98.10817718505854,18.464839935302678],[98.10720062255871,18.456190109252987],[98.1016387939456,18.45491027832037],[98.08434295654314,18.444629669189396],[98.08233642578148,18.436410903930664],[98.07521057128923,18.426780700683537],[98.08342742919922,18.41554069519043],[98.09545135498047,18.41893005371105],[98.10172271728533,18.416780471801758],[98.10472106933605,18.41148948669428],[98.11395263671875,18.406507492065543],[98.11881256103544,18.406801223754826],[98.12657928466803,18.4045925140382],[98.12843322753906,18.399139404296818],[98.1250228881836,18.394092559814453],[98.13191223144537,18.385192871093864],[98.13716125488276,18.38298988342285],[98.13977050781256,18.377651214599723],[98.14128875732428,18.369989395141545],[98.14753723144537,18.36083984375],[98.15267181396484,18.357360839843693],[98.1645126342774,18.353370666503906],[98.17098236083984,18.346689224243278],[98.17575073242188,18.334379196167106],[98.17620086669928,18.3291912078858],[98.17196655273443,18.318809509277457],[98.17262268066418,18.30115127563488],[98.17649078369158,18.296190261840763],[98.18467712402361,18.29486846923828],[98.19267272949213,18.288360595703125],[98.2034759521485,18.28919982910162],[98.1959304809572,18.283439636230526],[98.18657684326189,18.28197288513178],[98.18386077880888,18.283660888671932],[98.17893981933588,18.281509399414062],[98.16883087158197,18.279991149902344],[98.16435241699241,18.281391143798828],[98.15860748291021,18.280599594116325],[98.15329742431663,18.283660888671932],[98.14642333984398,18.281660079956055],[98.14080047607439,18.278030395507812],[98.13703918457031,18.264520645141545],[98.13909149169939,18.256780624389762],[98.14427185058594,18.25101280212408],[98.14138031005876,18.242250442504883],[98.14154815673822,18.237529754638672],[98.14456176757841,18.23492050170904],[98.14890289306663,18.225290298461914],[98.16042327880871,18.219978332519645],[98.16239929199219,18.221691131591797],[98.17185974121105,18.217929840087947],[98.16799926757818,18.201721191406193],[98.17365264892578,18.19664192199707],[98.17735290527372,18.188209533691406],[98.16873168945318,18.180110931396484],[98.16725921630888,18.16551017761236],[98.15814971923822,18.163400650024528],[98.15799713134766,18.15802192687994],[98.16403198242199,18.1434001922608],[98.16909027099615,18.13899040222168],[98.16481018066418,18.130540847778377],[98.16776275634771,18.116771697998047],[98.19178009033203,18.112361907958928],[98.19509887695341,18.105871200561637],[98.20439910888678,18.097280502319393],[98.20382690429693,18.089019775390625],[98.20671844482428,18.08715057373047],[98.21620941162115,18.086008071899414],[98.2268371582033,18.08979034423828],[98.22941589355474,18.095590591430664],[98.23352050781267,18.094602584838924],[98.23459625244169,18.085220336914062],[98.24286651611345,18.085849761962834],[98.24382019042986,18.07736968994135],[98.24857330322283,18.074491500854492],[98.25392150878923,18.077039718627987],[98.25637817382807,18.081979751586857],[98.26817321777355,18.08428955078125],[98.27353668212885,18.08152008056652],[98.28092193603544,18.080610275268555],[98.28749084472673,18.08220100402832],[98.29022979736334,18.073289871215877],[98.2841186523438,18.06167984008789],[98.28267669677746,18.056949615478572],[98.2737808227539,18.046920776367244],[98.27606964111328,18.044340133666992],[98.27155303955101,18.040821075439567],[98.26550292968761,18.046409606933707],[98.26174163818376,18.038730621337834],[98.25785827636747,18.03454971313471],[98.25035858154303,18.032079696655387],[98.24592590332031,18.033319473266715],[98.23802947998075,18.029291152954215],[98.23264312744163,18.01921844482422],[98.23436737060553,18.013559341430664],[98.23954010009794,18.01195907592779],[98.2426223754884,18.003541946411246],[98.24620819091825,17.998199462890568],[98.24713897705101,17.99266052246105],[98.24532318115251,17.98732948303234],[98.23271942138666,17.983829498291016],[98.22132873535156,17.983810424804744],[98.21354675292974,17.97985267639166],[98.20633697509771,17.981880187988338],[98.1983261108399,17.977092742920036],[98.19304656982416,17.97837829589838],[98.18518066406278,17.97752952575695],[98.1815719604495,17.971170425414982],[98.17086791992216,17.971771240234432],[98.16687774658232,17.967607498168945],[98.16297912597656,17.96750068664562],[98.16092681884788,17.960050582885742],[98.15595245361334,17.958101272583065],[98.151420593262,17.947610855102596],[98.1501007080081,17.93960952758789],[98.14483642578125,17.933958053588924],[98.14186859130865,17.938341140747184],[98.12435913085949,17.9445095062257],[98.1217193603515,17.948780059814453],[98.11696624755876,17.949228286743107],[98.10420227050798,17.955141067504826],[98.10186767578136,17.958459854125977],[98.09033966064459,17.960540771484432],[98.08014678955095,17.955209732055664],[98.07602691650396,17.955881118774528],[98.063735961914,17.94968032836914],[98.05854034423857,17.95001983642578],[98.05349731445312,17.94560050964361],[98.03833007812528,17.940969467163086],[98.02384185791027,17.933631896972713],[98.02069854736334,17.92876052856451],[98.02319335937506,17.92290115356451],[98.0156631469726,17.91841125488287],[98.012748718262,17.923610687255916],[98.01097869873053,17.910850524902287],[98.01204681396479,17.906869888305778],[98.00975036621088,17.901372909545955],[98.0120315551759,17.8927898406983],[98.0211105346682,17.887329101562557],[98.02632904052746,17.888660430908203],[98.0288391113283,17.8843994140625],[98.0312118530274,17.87578964233404],[98.04614257812528,17.868169784545955],[98.05491638183622,17.86802101135254],[98.05938720703125,17.858409881591854],[98.06906890869135,17.85230827331543],[98.07032775878929,17.843179702758732],[98.07263946533232,17.837377548217717],[98.07511901855497,17.826341629028377],[98.08692932128912,17.812469482421875],[98.08924102783232,17.80704116821289],[98.10588073730463,17.79502105712902],[98.11090850830078,17.79289054870617],[98.11569976806646,17.79594230651867],[98.12243652343778,17.796091079711914],[98.1339416503908,17.794111251831055],[98.14018249511747,17.782979965210075],[98.14775848388695,17.77540016174322],[98.1424407958985,17.76096916198736],[98.13658142089855,17.757431030273494],[98.1421966552735,17.747079849243164],[98.14908599853521,17.74444007873535],[98.1512069702149,17.73357963562023],[98.154106140137,17.72785949707037],[98.15167999267595,17.723331451416016],[98.15097808837896,17.705770492553654],[98.1518859863283,17.698858261108512],[98.14643859863287,17.68932914733898],[98.1460723876956,17.680360794067383],[98.14044952392578,17.675640106201172],[98.13739013671892,17.669000625610465],[98.13063812255888,17.663869857788086],[98.12812805175787,17.659759521484432],[98.12149047851591,17.65448951721197],[98.11721038818365,17.653221130371094],[98.1140060424807,17.648759841919002],[98.1100387573245,17.649419784545955],[98.10273742675787,17.644451141357536],[98.09218597412126,17.635391235351676],[98.08776855468744,17.63549041748047],[98.08129882812517,17.63946151733404],[98.07348632812517,17.64640998840332],[98.06893920898438,17.647737503051758],[98.0635986328125,17.646488189697322],[98.06308746337896,17.654260635376033],[98.0588989257813,17.66069984436035],[98.05371856689459,17.665451049804744],[98.0481796264649,17.665201187133903],[98.04396057128906,17.67362022399908],[98.04396820068365,17.679069519043082],[98.04093170166021,17.684499740600643],[98.03932952880876,17.694049835205192],[98.03188323974604,17.701091766357536],[98.03260040283232,17.70713043212902],[98.02633666992199,17.707330703735465],[98.02529907226568,17.714611053466854],[98.0282592773437,17.719821929931584],[98.02359771728538,17.722391128540096],[98.02217102050798,17.729621887207145],[98.01641845703136,17.73087120056158],[98.0159301757813,17.73808097839361],[98.022720336914,17.73649978637701],[98.018051147461,17.744369506835938],[98.01293945312528,17.746629714965934],[98.01183319091808,17.753900527954215],[98.00862884521501,17.7601699829101],[98.01151275634766,17.764860153198356],[98.00531768798857,17.773630142211914],[97.99784088134788,17.773260116577262],[97.99967956542986,17.778472900390568],[97.99746704101585,17.784320831298828],[97.9915618896485,17.79453086853033],[97.98732757568365,17.798620223999137],[97.98683929443371,17.80726051330572],[97.98990631103527,17.80928039550787],[97.98034667968778,17.813091278076115],[97.98132324218761,17.821020126342773],[97.97627258300787,17.823360443115348],[97.97895812988304,17.830480575561637],[97.98342895507807,17.833400726318416],[97.98220062255882,17.838851928710994],[97.97563934326189,17.84691810607916],[97.97132873535179,17.84663009643566],[97.96850585937528,17.855110168457145],[97.97424316406278,17.861549377441463],[97.97013854980469,17.86702919006342],[97.96417999267595,17.866230010986385],[97.95703125000023,17.862390518188533],[97.95565032958984,17.859569549560604],[97.94185638427729,17.856840133666992],[97.919418334961,17.85704994201666],[97.91117858886736,17.850460052490348],[97.90882110595732,17.83953094482422],[97.90267181396507,17.83519172668457],[97.8999862670899,17.828580856323356],[97.90754699707048,17.818420410156307],[97.90709686279325,17.813270568847713],[97.90113067626959,17.806760787963924],[97.89552307128923,17.80251121520996],[97.88587951660179,17.79944038391119],[97.87696075439482,17.793159484863224],[97.87200927734403,17.793489456176815],[97.86926269531256,17.78781127929699],[97.864028930664,17.78896141052246],[97.86193084716791,17.783769607544002],[97.85605621337908,17.782598495483512],[97.8468627929687,17.777271270751953],[97.83950042724615,17.778789520263672],[97.83338165283203,17.778369903564567],[97.82701873779308,17.77983856201172],[97.8178100585938,17.78500938415533],[97.81201934814453,17.783290863037223],[97.80574035644537,17.777999877929744],[97.79627227783232,17.774999618530217],[97.78806304931669,17.783000946044922],[97.77410125732428,17.77716064453125],[97.75370788574241,17.775779724121207],[97.74975585937511,17.78055953979498],[97.74665832519537,17.780630111694393],[97.73976135253912,17.787088394165153],[97.73332214355497,17.794860839843864],[97.72554016113293,17.79649162292486],[97.71959686279325,17.80461120605463],[97.72132110595732,17.81359100341797],[97.71839904785162,17.81708145141613],[97.71090698242205,17.81661033630371],[97.7042312622072,17.81357955932623],[97.7003631591798,17.817449569702205],[97.69465637207026,17.826629638671932],[97.69388580322277,17.838800430297795],[97.67626953125023,17.868341445922965],[97.67634582519526,17.875020980835018],[97.6792831420899,17.88635063171398],[97.68647003173845,17.902971267700252],[97.69370269775385,17.924280166625977],[97.71277618408197,17.94145011901861],[97.71907806396479,17.94205093383789],[97.73030090332043,17.94659805297863],[97.73735046386747,17.951871871948242],[97.74102783203142,17.96652984619152],[97.73979949951178,17.97991943359375],[97.73504638671903,17.99197959899908],[97.72483062744158,18.01280021667492],[97.72698211669928,18.01745033264166],[97.70986938476591,18.04702949523937],[97.70771789550787,18.0561904907226],[97.69930267333984,18.064020156860465],[97.6943359375,18.064100265503043],[97.6891860961914,18.058500289916992],[97.68560791015648,18.064649581909237],[97.68705749511736,18.06930923461914],[97.69351196289057,18.081939697265568],[97.68920898437506,18.09453964233404],[97.67971038818365,18.111431121826172],[97.67968750000006,18.132961273193303],[97.67752838134783,18.145019531250114],[97.67854309082037,18.152549743652344],[97.67688751220732,18.159549713134822],[97.66587829589861,18.169811248779297],[97.6597366333009,18.17053031921398],[97.6516876220706,18.17710113525402],[97.64417266845703,18.19120025634777],[97.6282501220706,18.20627975463873],[97.61630249023455,18.221401214599666],[97.61035156249994,18.236730575561637],[97.60972595214872,18.241050720214844],[97.61235809326178,18.249492645263615],[97.62383270263678,18.25819969177246],[97.63410949707054,18.268440246582145],[97.64105224609386,18.2790203094483],[97.64044952392607,18.285829544067496],[97.62065124511713,18.316659927368164],[97.61502838134771,18.318550109863338],[97.60677337646484,18.32484817504877],[97.59379577636736,18.330041885376033],[97.58502197265642,18.330619812011832],[97.57653045654303,18.33680915832514],[97.56820678710932,18.335092544555607],[97.56108093261724,18.337650299072266],[97.55433654785156,18.33442115783697],[97.5511398315432,18.33057022094721],[97.54843902587896,18.319240570068416],[97.54389953613304,18.308599472045955],[97.5426406860351,18.298950195312614],[97.53717803955078,18.28470039367687],[97.52865600585943,18.275400161743107],[97.50773620605463,18.264810562133846],[97.5045776367188,18.265102386474723],[97.49479675292986,18.275091171264762],[97.4943389892581,18.277219772338867],[97.48641204834001,18.28778076171875],[97.4719467163086,18.298160552978516],[97.46193695068371,18.309339523315487],[97.4522171020509,18.327550888061467],[97.4494400024414,18.328462600708008],[97.445297241211,18.338020324707088],[97.4451980590822,18.349161148071403],[97.44310760498064,18.358880996704215],[97.45239257812528,18.37512969970703],[97.45343017578125,18.388090133666992],[97.44734191894531,18.394319534301815],[97.44185638427757,18.403329849243278],[97.43788146972685,18.40522956848156],[97.42990112304699,18.405059814453125],[97.42630767822283,18.409059524536246],[97.4213104248048,18.42067909240734],[97.41957855224638,18.433929443359432],[97.4161071777346,18.439550399780273],[97.40492248535168,18.4472599029541],[97.39991760253935,18.457040786743164],[97.39566802978521,18.469820022583008],[97.39247894287138,18.48793029785162],[97.38810729980497,18.50262260437023],[97.37989044189482,18.515310287475586],[97.37352752685547,18.5216903686524],[97.36643218994158,18.523920059204045],[97.35958862304688,18.527811050415096],[97.34877777099632,18.54235267639166],[97.34559631347668,18.555820465087834],[97.34552764892601,18.574979782104492],[97.35169219970714,18.5804119110108],[97.35958862304688,18.58998107910162],[97.3633270263673,18.59241104125988],[97.36492919921875,18.586799621582145],[97.36501312255888,18.577102661132812],[97.36279296875017,18.574882507324276],[97.36251831054693,18.567581176757812],[97.3637008666995,18.55808067321783],[97.36886596679699,18.555612564086914],[97.3760604858399,18.55645942687994],[97.38675689697294,18.555868148803654],[97.3983917236331,18.558580398559684],[97.40125274658232,18.561719894409237],[97.41040039062506,18.552488327026367],[97.41539001464872,18.55034828186041],[97.42278289794945,18.544660568237305],[97.42740631103544,18.52485847473156],[97.43267059326178,18.518390655517692],[97.43591308593756,18.503440856933707],[97.44377136230474,18.49486923217779],[97.44882965087908,18.491800308227596],[97.45626068115251,18.490169525146598],[97.46286010742216,18.496360778808707],[97.46787261962885,18.494159698486442],[97.47202301025419,18.496030807495117],[97.47476959228533,18.50082969665533],[97.4839172363283,18.5045108795166],[97.49186706542997,18.5053005218507],[97.49565124511724,18.501489639282283],[97.49945068359398,18.494150161743278],[97.50875091552734,18.48863983154297],[97.51183319091803,18.48879051208496],[97.52036285400408,18.4945907592774]]]},"properties":{"ID_0":228,"ISO":"TH-58","NAME_0":"Thailand","ID_1":23,"NAME_1":"Mae Hong Son","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"แม่ฮ่องสอน","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.50553131103544,16.197690963745117],[103.5044326782226,16.19347000122076],[103.49922180175787,16.19102287292486],[103.4967803955081,16.187137603759766],[103.49324035644531,16.189109802246094],[103.49024963378912,16.185911178588924],[103.49188995361345,16.17121124267578],[103.48722076416044,16.164230346679744],[103.48393249511724,16.15303993225109],[103.48252105712908,16.144050598144645],[103.47505187988293,16.140350341796932],[103.47312164306669,16.13247108459484],[103.46527862548834,16.12746238708496],[103.45986938476562,16.120002746582145],[103.4571609497072,16.112649917602482],[103.45932006835943,16.10671043395996],[103.45755767822283,16.09683036804205],[103.45800781250023,16.091920852661133],[103.45507049560564,16.080560684204215],[103.46134948730486,16.07022094726574],[103.46701049804716,16.064449310302678],[103.465347290039,16.062429428100586],[103.46897125244135,16.054861068725643],[103.46926116943382,16.050529479980526],[103.47255706787138,16.044361114502067],[103.47007751464872,16.032949447631893],[103.46742248535168,16.029851913452205],[103.46253967285156,16.018869400024414],[103.4658889770509,16.008319854736442],[103.46306610107439,16.003498077392635],[103.46246337890636,15.996081352234],[103.46414184570341,15.991939544677848],[103.46575164794939,15.969040870666504],[103.46790313720709,15.963161468505803],[103.47489166259783,15.955141067504883],[103.48078155517572,15.950700759887809],[103.48140716552734,15.946830749511832],[103.47992706298834,15.934908866882267],[103.48268890380854,15.925510406494197],[103.47479248046898,15.917352676391602],[103.4602661132813,15.907231330871639],[103.45990753173851,15.892740249633732],[103.45715332031267,15.890280723571834],[103.45404052734403,15.87676143646246],[103.44725036621111,15.8674898147583],[103.44552612304705,15.860971450805721],[103.44628906250017,15.853821754455566],[103.4398422241211,15.832720756530762],[103.44396209716808,15.828610420227108],[103.44095611572283,15.82086086273199],[103.44320678710932,15.814360618591365],[103.44127655029325,15.80835056304943],[103.43733215332048,15.80592060089117],[103.44268035888689,15.797761917114258],[103.43060302734386,15.777680397033805],[103.42887115478544,15.772520065307617],[103.42899322509771,15.7549409866333],[103.42630004882812,15.735269546508846],[103.4220962524414,15.71908092498785],[103.41625976562506,15.711991310119686],[103.4070663452149,15.708490371704045],[103.39247894287104,15.70761966705328],[103.3861007690432,15.711780548095646],[103.37966156005888,15.71261119842535],[103.37599182128929,15.715350151062125],[103.35296630859403,15.724250793457145],[103.3511810302735,15.718680381775016],[103.3425521850586,15.710450172424373],[103.3380661010745,15.708070755004996],[103.32363128662104,15.704481124877987],[103.31346893310575,15.703480720520076],[103.30728912353516,15.701561927795524],[103.30148315429699,15.696390151977596],[103.27580261230469,15.664349555969238],[103.27764129638683,15.660690307617244],[103.28650665283209,15.658150672912598],[103.29972076416021,15.660752296447868],[103.30648803710955,15.660249710083008],[103.30262756347668,15.655880928039664],[103.30203247070341,15.646681785583496],[103.29727935791027,15.638939857482967],[103.29688262939482,15.633331298828125],[103.2937088012697,15.623531341552734],[103.28777313232416,15.613390922546387],[103.27857208251982,15.608510971069336],[103.27671051025385,15.598920822143555],[103.28266143798828,15.592370986938477],[103.2864990234375,15.591039657592887],[103.29099273681652,15.59481239318842],[103.29635620117182,15.591239929199276],[103.29910278320318,15.585321426391602],[103.29672241210932,15.580390930175838],[103.29817199707054,15.573319435119686],[103.30500030517578,15.572031974792537],[103.30311584472662,15.565889358520565],[103.30535125732439,15.560189247131404],[103.31140136718761,15.560310363769588],[103.31536102294928,15.553221702575684],[103.32328033447283,15.553030014038143],[103.32935333251947,15.547081947326774],[103.33376312255876,15.545140266418457],[103.3470077514649,15.544268608093375],[103.35704803466797,15.538689613342399],[103.36135101318388,15.530339241027889],[103.36228179931646,15.524299621582088],[103.3758926391601,15.529191017150879],[103.37742614746111,15.534379959106445],[103.38223266601562,15.53334999084484],[103.3861007690432,15.536349296569881],[103.39334869384788,15.53668022155773],[103.39700317382841,15.53485202789318],[103.40596771240263,15.534099578857479],[103.40878295898443,15.536429405212402],[103.41548156738287,15.536809921264705],[103.42288970947271,15.524019241333121],[103.42397308349626,15.512340545654354],[103.42241668701166,15.497699737548885],[103.41651153564447,15.48917102813732],[103.4098281860351,15.465770721435547],[103.40609741210943,15.455901145935059],[103.40068817138666,15.43317985534668],[103.40010833740229,15.430661201476994],[103.39186096191435,15.42788124084484],[103.38022613525419,15.42584133148199],[103.37596893310553,15.422481536865234],[103.3652572631836,15.411250114440975],[103.35238647460966,15.409561157226506],[103.34632110595697,15.407532691955566],[103.3341903686524,15.410610198974553],[103.30464172363287,15.414851188659725],[103.29058837890653,15.420161247253418],[103.27259063720709,15.421731948852596],[103.26487731933588,15.426900863647461],[103.26448822021479,15.437410354614371],[103.25531005859403,15.441420555114746],[103.25285339355463,15.446531295776367],[103.24394226074219,15.448230743408203],[103.23271179199219,15.445880889892521],[103.22698974609375,15.447169303894157],[103.22663879394554,15.453409194946346],[103.216812133789,15.456561088562012],[103.21729278564476,15.460189819335994],[103.20997619628923,15.460119247436523],[103.2062606811524,15.458441734314022],[103.1681594848634,15.468641281127873],[103.15994262695341,15.47019958496088],[103.13465118408203,15.477529525756893],[103.11608123779308,15.481599807739315],[103.11443328857422,15.479340553283805],[103.11266326904291,15.48232269287115],[103.0931015014649,15.487111091613713],[103.08304595947271,15.49341106414795],[103.08014678955084,15.492460250854606],[103.0738296508789,15.500972747802848],[103.07682800292986,15.51084136962885],[103.08238983154297,15.513388633728084],[103.08490753173834,15.520039558410701],[103.09014129638683,15.524430274963379],[103.09332275390648,15.53131008148199],[103.08583068847656,15.540960311889648],[103.07987976074236,15.541750907898063],[103.0692214965822,15.55181980133068],[103.06363677978527,15.552762031555176],[103.0623168945312,15.55609130859375],[103.05385589599615,15.558601379394588],[103.04844665527344,15.563390731811637],[103.05033111572283,15.565350532531738],[103.04782867431635,15.571269989013672],[103.04998779296875,15.580559730529842],[103.05370330810575,15.58425045013422],[103.05475616455078,15.590741157531738],[103.04759979248075,15.592241287231502],[103.04722595214855,15.595980644226017],[103.03576660156278,15.598950386047363],[103.03005218505888,15.597820281982479],[103.02348327636724,15.606590270996037],[103.01494598388678,15.613220214843864],[103.01371765136736,15.626211166381836],[103.00759124755876,15.628520011901912],[103.00630187988281,15.63246059417736],[102.99890899658226,15.638410568237305],[102.99584197998053,15.646210670471248],[102.99028778076172,15.64657974243164],[102.98394012451189,15.654821395874023],[102.97837829589855,15.658160209655705],[102.97554016113276,15.66426086425787],[102.98197937011747,15.6713609695434],[102.98737335205095,15.674560546875057],[102.99621582031256,15.67728042602539],[103.00240325927746,15.681839942932186],[103.00718688964838,15.683340072631893],[103.00965118408214,15.694418907165584],[103.008041381836,15.697720527648926],[103.0122680664063,15.701430320739803],[103.00827789306646,15.708560943603516],[103.00656127929693,15.727580070495549],[102.99916839599621,15.734060287475643],[102.99021148681635,15.73096942901617],[102.98883056640653,15.735281944275016],[102.98181915283197,15.740571022033691],[102.97963714599632,15.745370864868221],[102.98053741455078,15.749350547790584],[102.97177124023438,15.756611824035588],[102.96794891357422,15.755281448364258],[102.96363830566412,15.759320259094238],[102.9596481323245,15.758581161499023],[102.94333648681658,15.765110969543514],[102.94020843505888,15.774471282959098],[102.9414672851563,15.781760215759334],[102.93483734130865,15.78826045989996],[102.9328002929687,15.793951034545955],[102.93432617187494,15.811070442199764],[102.92917633056635,15.814611434936637],[102.92917633056635,15.817891120910645],[102.9217605590822,15.821611404418945],[102.9249877929687,15.828120231628418],[102.92424774169939,15.832441329956112],[102.92632293701166,15.838751792907715],[102.9262390136721,15.845040321350098],[102.92841339111322,15.850560188293514],[102.93341064453142,15.854900360107479],[102.9284896850586,15.861050605773983],[102.92722320556669,15.86860179901123],[102.92971801757841,15.876421928405762],[102.92437744140653,15.88206005096447],[102.91950225830078,15.882710456848145],[102.90841674804705,15.89609146118164],[102.90544891357445,15.900911331176871],[102.90081787109375,15.915260314941406],[102.89888000488298,15.916490554809627],[102.89829254150385,15.925420761108512],[102.89539337158232,15.926321029663143],[102.89235687255871,15.931719779968262],[102.89196014404325,15.938880920410156],[102.89507293701189,15.940549850463867],[102.89951324462896,15.949060440063477],[102.89691162109403,15.956199645996037],[102.9019165039062,15.960311889648494],[102.90728759765642,15.967579841613713],[102.90571594238276,15.97546100616455],[102.90663146972685,15.983071327209586],[102.90128326416044,15.999321937560978],[102.89289093017607,16.00295066833496],[102.88549041748058,16.012100219726562],[102.89643859863281,16.02350044250494],[102.87729644775385,16.034099578857536],[102.875473022461,16.037250518798885],[102.86859130859375,16.03972244262701],[102.86296081542997,16.038059234619197],[102.8588027954101,16.042640686035156],[102.85842132568354,16.04754066467291],[102.86219024658232,16.05377006530773],[102.86193847656256,16.058628082275447],[102.85482788085955,16.063430786132812],[102.85111236572271,16.06855964660656],[102.85169219970732,16.07510948181158],[102.85774230957037,16.0796794891358],[102.85774230957037,16.089759826660156],[102.86258697509794,16.09441947937023],[102.86251831054693,16.1002197265625],[102.86997222900413,16.118257522583065],[102.8682708740235,16.122270584106502],[102.85809326171875,16.125089645385856],[102.8560180664063,16.12688827514654],[102.84723663330078,16.14318084716797],[102.85096740722668,16.149232864379996],[102.85946655273443,16.156009674072266],[102.85957336425776,16.16493988037115],[102.85386657714861,16.17012023925787],[102.84987640380876,16.17769050598139],[102.84851074218744,16.189758300781307],[102.85050201416021,16.196950912475643],[102.84588623046875,16.21103096008312],[102.85205841064459,16.220731735229492],[102.84678649902338,16.23209953308117],[102.84664916992188,16.24274826049816],[102.85080718994158,16.250511169433537],[102.84729003906256,16.26074028015148],[102.84963226318371,16.2726211547851],[102.85315704345709,16.27738189697277],[102.86741638183611,16.288730621338004],[102.8710098266601,16.296670913696403],[102.8899230957033,16.3084011077882],[102.89730072021513,16.31624984741211],[102.89785003662138,16.33102989196783],[102.90033721923857,16.33735275268566],[102.89782714843756,16.3418426513673],[102.89830780029314,16.347642898559513],[102.90908050537115,16.346889495849723],[102.91143035888683,16.348171234130916],[102.90744781494135,16.356330871582145],[102.91024780273466,16.359741210937614],[102.91665649414062,16.360059738159237],[102.9208068847658,16.363531112671012],[102.92958831787126,16.365070343017578],[102.92222595214866,16.370861053466854],[102.92256927490234,16.37495040893549],[102.9270706176759,16.378732681274357],[102.93416595459001,16.375450134277344],[102.93984985351574,16.376319885253963],[102.93667602539062,16.381820678710994],[102.93759918212908,16.38653182983404],[102.94213104248058,16.38474273681652],[102.94512176513695,16.388410568237305],[102.95226287841791,16.388330459594727],[102.95288848876953,16.39431953430187],[102.95841979980469,16.40018081665039],[102.95168304443354,16.401872634887695],[102.94866180419939,16.407060623169002],[102.95349884033209,16.407569885253963],[102.95789337158226,16.410869598388672],[102.96012878417969,16.423421859741325],[102.96224212646484,16.424011230468807],[102.97467803955101,16.41859054565441],[102.97714233398443,16.42235946655279],[102.97252655029297,16.424158096313477],[102.96961212158197,16.428329467773438],[102.96617889404291,16.427431106567383],[102.9615173339846,16.438150405883846],[102.95472717285168,16.44645118713379],[102.95774841308622,16.451629638671932],[102.96424865722685,16.45226097106928],[102.97612762451189,16.45622062683117],[102.98586273193376,16.46241950988781],[102.99323272705107,16.462787628173885],[103.00843048095709,16.466079711914062],[103.01918792724621,16.472640991210994],[103.02416992187494,16.477479934692496],[103.0227813720706,16.481050491333065],[103.02825164794928,16.488439559936637],[103.0277786254884,16.490539550781307],[103.03849792480486,16.498489379882812],[103.040267944336,16.4903507232666],[103.04453277587919,16.489839553833065],[103.04701232910185,16.493370056152344],[103.06479644775385,16.49904060363781],[103.07283782959001,16.503141403198356],[103.07689666748053,16.50892066955572],[103.08390808105486,16.51033973693842],[103.08927154541016,16.516651153564567],[103.08841705322294,16.519531250000057],[103.09352874755865,16.528829574585018],[103.10118103027372,16.5344696044923],[103.10328674316435,16.541810989379826],[103.10587310791016,16.544340133667106],[103.10816192626953,16.553890228271484],[103.11712646484375,16.559471130371207],[103.12100982666044,16.565109252929744],[103.1209564208985,16.575340270996094],[103.12265014648438,16.57852172851574],[103.12223815917986,16.587921142578068],[103.12510681152361,16.592809677124137],[103.14163208007841,16.597499847412223],[103.14891052246088,16.60223960876465],[103.1550903320313,16.608650207519645],[103.15666198730474,16.615180969238224],[103.15373992919922,16.618570327758846],[103.15270233154308,16.64011001586914],[103.15473937988304,16.642061233520565],[103.16201782226591,16.640407562255973],[103.18000030517572,16.63909912109375],[103.19019317626959,16.640380859375],[103.19306182861334,16.63932991027832],[103.19724273681646,16.629550933838004],[103.19738769531267,16.626510620117188],[103.19078063964866,16.620801925659237],[103.17085266113276,16.606611251831055],[103.16990661621111,16.60318183898937],[103.17296600341814,16.59469985961914],[103.17806243896513,16.58556175231945],[103.18051147460943,16.583459854126033],[103.18578338623047,16.56905174255371],[103.18911743164091,16.551921844482536],[103.18624877929716,16.539381027221793],[103.1802062988283,16.529790878295955],[103.17888641357439,16.523750305175838],[103.17234039306669,16.517431259155387],[103.1690521240235,16.504890441894645],[103.1629486083985,16.499982833862305],[103.1611404418947,16.49586105346691],[103.16110992431635,16.487859725952205],[103.16915893554705,16.475368499755916],[103.1692504882813,16.467050552368164],[103.17215728759777,16.460580825805664],[103.18563079834007,16.447019577026424],[103.18485260009771,16.440719604492188],[103.18656921386724,16.4366512298584],[103.18282318115263,16.425540924072266],[103.17639160156267,16.418430328369254],[103.17607879638678,16.40715980529785],[103.17259979248064,16.40763092041027],[103.16687011718767,16.39614105224615],[103.1658477783206,16.386079788208065],[103.16983795166044,16.380952835083065],[103.1686019897461,16.375940322876033],[103.17533874511741,16.369569778442326],[103.17845153808605,16.361061096191463],[103.19734954833979,16.363550186157283],[103.22203826904303,16.36848068237299],[103.24572753906256,16.373752593994197],[103.24987030029297,16.375738143921012],[103.2666091918947,16.376449584960938],[103.27609252929716,16.382961273193303],[103.2865600585938,16.393310546875114],[103.29351043701189,16.393299102783203],[103.29756164550781,16.388750076294002],[103.29891967773443,16.375640869140625],[103.30255126953148,16.368339538574332],[103.31122589111322,16.363670349121094],[103.3231201171875,16.36629295349121],[103.32993316650408,16.36478996276861],[103.33325195312506,16.36234092712408],[103.34207916259794,16.361061096191463],[103.34777069091803,16.356050491333008],[103.35070800781244,16.342809677124023],[103.35166931152338,16.31936073303234],[103.35264587402361,16.309471130371094],[103.35485076904325,16.305589675903377],[103.37052154541027,16.297729492187557],[103.38070678710938,16.295801162719727],[103.38713836669916,16.296791076660213],[103.39682006835966,16.295860290527457],[103.40023803710943,16.291650772094783],[103.40886688232433,16.28737068176264],[103.41493225097685,16.279739379882812],[103.40986633300798,16.270830154418945],[103.41107940673851,16.259849548339787],[103.4070129394533,16.25550079345703],[103.41285705566435,16.247909545898494],[103.4165878295899,16.23784828186041],[103.43000030517607,16.23459815979004],[103.43504333496111,16.230779647827262],[103.44071197509777,16.222660064697322],[103.44489288330107,16.220111846923828],[103.44880676269531,16.220777511596737],[103.45012664794922,16.214759826660213],[103.44655609130882,16.212570190429688],[103.44367218017584,16.20280075073248],[103.45294952392572,16.201650619506836],[103.44712066650396,16.19648170471197],[103.45202636718767,16.18960952758789],[103.45522308349604,16.179971694946232],[103.46601867675804,16.186611175537166],[103.46785736084001,16.191101074218807],[103.47180938720714,16.189361572265682],[103.4738159179688,16.194650650024528],[103.48265838623075,16.205871582031193],[103.48934936523449,16.204969406127987],[103.49682617187517,16.200710296630916],[103.49829101562528,16.20611953735363],[103.50640106201172,16.205961227417106],[103.50341033935553,16.201440811157283],[103.50553131103544,16.197690963745117]]]},"properties":{"ID_0":228,"ISO":"TH-44","NAME_0":"Thailand","ID_1":24,"NAME_1":"Maha Sarakham","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"มหาสารคาม","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.7351913452149,16.803819656372184],[104.74027252197266,16.802659988403377],[104.74032592773443,16.79588127136236],[104.7428665161134,16.78338050842291],[104.74812316894537,16.766820907592773],[104.75467681884794,16.753629684448242],[104.76158905029314,16.745889663696232],[104.76212310791027,16.738319396972713],[104.76120758056658,16.719430923461914],[104.76278686523438,16.710371017456055],[104.76706695556669,16.697549819946346],[104.76579284667986,16.688129425048942],[104.7607879638673,16.672849655151424],[104.75543975830107,16.660610198974666],[104.75324249267578,16.650899887085018],[104.7466583251956,16.635940551757926],[104.7429428100586,16.60848999023449],[104.74317169189476,16.59719085693365],[104.73641967773455,16.56946945190441],[104.73626708984375,16.563510894775447],[104.73797607421875,16.546791076660213],[104.73948669433611,16.541580200195312],[104.74542999267578,16.52925109863287],[104.75991821289062,16.510299682617188],[104.77259826660185,16.497600555419865],[104.7933197021485,16.483489990234432],[104.80187225341797,16.478799819946346],[104.82491302490251,16.468160629272518],[104.84230041503906,16.457719802856445],[104.8535232543947,16.44553947448742],[104.86363983154314,16.423999786376953],[104.86524200439476,16.414619445800838],[104.86415863037138,16.404960632324332],[104.8666305541995,16.39620018005371],[104.87062835693388,16.392099380493164],[104.87516021728538,16.382860183715877],[104.887191772461,16.368911743164176],[104.88845062255876,16.3650417327882],[104.8883590698245,16.354919433593807],[104.89466857910185,16.344400405883732],[104.902587890625,16.33769989013672],[104.91271209716803,16.33648109436041],[104.93396759033232,16.325782775878963],[104.94014739990234,16.315629959106445],[104.94811248779291,16.307260513305664],[104.9613265991211,16.289440155029354],[104.98065948486334,16.27746963500988],[104.97154998779308,16.275659561157283],[104.9622802734375,16.282550811767635],[104.95864105224626,16.279489517212028],[104.9620666503908,16.27215957641596],[104.9601821899414,16.269510269165096],[104.95166778564459,16.265348434448242],[104.94901275634794,16.260450363159237],[104.93569946289074,16.254320144653434],[104.93360137939464,16.251710891723633],[104.92137908935575,16.254440307617244],[104.91472625732416,16.252431869506836],[104.91291046142584,16.247150421142692],[104.90025329589861,16.238651275634766],[104.89623260498041,16.238309860229492],[104.88757324218756,16.231910705566463],[104.88842773437517,16.222539901733455],[104.88524627685553,16.213560104370174],[104.88224792480474,16.20886039733898],[104.87039184570335,16.20720291137701],[104.85697174072283,16.198972702026367],[104.84644317626947,16.200149536132756],[104.83937835693371,16.197561264038143],[104.83293151855486,16.201669692993278],[104.83023071289057,16.201320648193416],[104.82475280761719,16.18631935119629],[104.81616973876953,16.183200836181697],[104.80676269531261,16.186759948730582],[104.80258941650385,16.186189651489315],[104.797622680664,16.195371627807617],[104.79318237304716,16.197130203247184],[104.77842712402344,16.195751190185604],[104.77005767822271,16.193710327148438],[104.76393127441406,16.19849014282238],[104.75477600097656,16.196411132812557],[104.74861907959001,16.20231056213379],[104.74675750732422,16.200599670410156],[104.73754882812494,16.199871063232365],[104.71814727783203,16.202070236206055],[104.71118927001982,16.20845031738287],[104.7068862915039,16.205602645874137],[104.70065307617193,16.21140289306635],[104.6949310302735,16.213420867919922],[104.69600677490234,16.220939636230412],[104.69055938720709,16.22455024719244],[104.68173217773443,16.224269866943303],[104.67418670654325,16.228961944580135],[104.66696166992182,16.239830017089787],[104.6635208129884,16.22844123840332],[104.65946197509771,16.222330093383732],[104.65312957763678,16.2194499969483],[104.64916229248053,16.215320587158146],[104.64196777343761,16.211660385131893],[104.63043975830084,16.208932876587028],[104.61506652832043,16.21511077880865],[104.61109161376947,16.222089767456055],[104.60488128662115,16.22376060485834],[104.60320281982428,16.23603057861328],[104.6012191772461,16.238531112670955],[104.59390258789074,16.239280700683594],[104.58831024169928,16.236360549926815],[104.58007812500006,16.244180679321346],[104.57820129394537,16.2508602142334],[104.57866668701166,16.257850646972713],[104.57698059082048,16.263200759887695],[104.56474304199213,16.276100158691406],[104.5656127929688,16.282239913940487],[104.55947113037115,16.29331016540533],[104.5532684326173,16.30220985412609],[104.55342102050787,16.30867195129406],[104.54534149169922,16.311008453369254],[104.5404815673831,16.3152694702149],[104.53559112548845,16.316360473632812],[104.52633666992193,16.314769744873104],[104.52333068847668,16.31615066528326],[104.51602935791021,16.314220428466854],[104.51029205322288,16.31899070739746],[104.51159667968756,16.32612991333002],[104.50739288330078,16.336849212646484],[104.50411224365251,16.34008979797369],[104.49359893798822,16.34135246276861],[104.47706604003906,16.3400497436524],[104.46746063232416,16.343460083007812],[104.46212768554682,16.341199874878043],[104.44901275634766,16.342571258544922],[104.44214630126953,16.34412956237793],[104.43235778808588,16.344741821289062],[104.42542266845709,16.343761444091854],[104.41587829589866,16.34404945373535],[104.40828704834013,16.347450256347656],[104.39657592773438,16.347471237182674],[104.37535858154314,16.342252731323242],[104.36865997314447,16.338359832763672],[104.353271484375,16.32316970825201],[104.34198760986345,16.32336044311529],[104.33701324462908,16.325839996337947],[104.32804870605486,16.3272380828858],[104.32447052001953,16.33026123046875],[104.32627868652372,16.33362007141119],[104.33199310302763,16.33756065368658],[104.33258056640653,16.340270996093807],[104.32927703857445,16.34757995605463],[104.32875061035185,16.35318946838379],[104.3235473632813,16.36297035217291],[104.321548461914,16.373622894287053],[104.32247924804699,16.379478454589844],[104.31867980957026,16.388620376587028],[104.31832122802751,16.393569946289062],[104.32019042968761,16.402080535888672],[104.32166290283209,16.417110443115178],[104.32041168212885,16.42292976379406],[104.31636810302763,16.431358337402344],[104.31508636474626,16.443210601806754],[104.31297302246088,16.45049858093273],[104.30636596679693,16.462099075317383],[104.29511260986334,16.47076988220215],[104.29264831542974,16.470109939575195],[104.2911911010745,16.45895004272461],[104.28914642334001,16.451190948486385],[104.28626251220697,16.447290420532283],[104.27614593505854,16.440990447998047],[104.271537780762,16.435569763183594],[104.26712036132818,16.433839797973576],[104.26117706298834,16.43477058410656],[104.2550277709961,16.43255996704096],[104.2462997436524,16.435050964355526],[104.24015808105469,16.42739105224615],[104.23950958251964,16.430469512939396],[104.24131774902344,16.45345115661621],[104.23512268066418,16.458030700683537],[104.23023223876953,16.467620849609375],[104.22975921630888,16.472560882568473],[104.23821258544939,16.483419418335018],[104.2413864135745,16.492130279541016],[104.24166870117205,16.509569168090763],[104.2431182861331,16.513301849365234],[104.24098205566412,16.519369125366325],[104.2340927124024,16.523611068725586],[104.2248077392581,16.526300430297965],[104.2238159179688,16.528520584106445],[104.22425842285168,16.539550781250057],[104.22801971435553,16.548540115356445],[104.22563934326189,16.552431106567496],[104.21991729736345,16.55636978149414],[104.21926116943388,16.560050964355582],[104.21099090576172,16.56170082092285],[104.20796966552757,16.57264137268072],[104.20912933349615,16.58066940307623],[104.1939926147461,16.59415054321289],[104.18057250976574,16.59633064270031],[104.18071746826178,16.600830078125114],[104.17777252197283,16.608749389648438],[104.18144226074224,16.613681793212947],[104.18321990966825,16.622930526733512],[104.17896270751959,16.63622283935547],[104.1787719726563,16.645690917968864],[104.1827392578125,16.65315055847168],[104.18836975097685,16.658760070800838],[104.18820190429699,16.664028167724666],[104.18418121337919,16.66789054870611],[104.16967010498075,16.67243003845215],[104.1647415161134,16.6795597076416],[104.16693878173834,16.685800552368107],[104.1702423095706,16.687410354614315],[104.17301940917969,16.694740295410156],[104.15918731689482,16.696540832519588],[104.1543197631836,16.70288276672369],[104.1533508300783,16.715251922607422],[104.14282226562494,16.725851058960018],[104.13655853271501,16.730880737304744],[104.13423919677729,16.73579025268566],[104.13429260253906,16.7479305267334],[104.1390609741211,16.755279541015682],[104.13381958007841,16.759391784667912],[104.12747192382818,16.756099700927734],[104.1221313476563,16.75601005554205],[104.11808776855469,16.760509490966854],[104.11630249023449,16.766599655151367],[104.10917663574241,16.77618980407715],[104.10119628906278,16.782110214233455],[104.09612274169939,16.788761138916072],[104.09398651123058,16.794780731201172],[104.0961685180664,16.80447959899908],[104.09513092041027,16.80916023254406],[104.08748626709013,16.806161880493107],[104.07916259765642,16.810871124267635],[104.07440185546875,16.816158294677734],[104.07324218750017,16.819898605346737],[104.0795059204101,16.823040008544922],[104.09526824951178,16.82755088806158],[104.10929107666033,16.835859298706055],[104.12107086181652,16.849840164184513],[104.12679290771496,16.85785293579113],[104.12584686279291,16.874660491943473],[104.12313842773466,16.879421234130973],[104.1287231445312,16.88574028015148],[104.13759613037132,16.885177612304744],[104.1478500366211,16.886421203613224],[104.15954589843756,16.886278152465763],[104.16261291503935,16.887388229370117],[104.17833709716814,16.884479522705078],[104.18321990966825,16.880870819091854],[104.18775939941429,16.88037109375],[104.19644927978533,16.874570846557617],[104.20941925048845,16.873399734497127],[104.2169723510745,16.886341094970703],[104.22161865234392,16.889150619506893],[104.22988891601568,16.890600204467773],[104.24079895019537,16.889799118041935],[104.24706268310553,16.892419815063477],[104.2469100952149,16.899110794067383],[104.2552261352539,16.904830932617244],[104.25849151611334,16.899660110473633],[104.26420593261719,16.880889892578068],[104.26831054687511,16.878562927246207],[104.26988983154314,16.874420166015625],[104.27536773681652,16.868118286132812],[104.28185272216808,16.863880157470703],[104.28089141845732,16.856611251830998],[104.28999328613304,16.855619430542106],[104.29524230957048,16.869970321655217],[104.2996597290039,16.872770309448356],[104.30506134033226,16.88315963745123],[104.32389831542969,16.895460128784237],[104.32678222656256,16.900041580200195],[104.33905029296903,16.901969909668026],[104.34774780273438,16.901300430297965],[104.35688018798828,16.899110794067383],[104.35457611084001,16.892810821533146],[104.3636169433596,16.88760948181158],[104.3680801391601,16.88639068603527],[104.37396240234403,16.88928985595703],[104.37885284423834,16.88939094543457],[104.38234710693388,16.884880065917912],[104.38887023925776,16.88206100463873],[104.39216613769531,16.883680343628043],[104.39884185791016,16.882360458373967],[104.3994369506836,16.87874984741211],[104.4041976928711,16.877069473266715],[104.40685272216797,16.87931060791027],[104.40901184082054,16.887132644653377],[104.4149017333985,16.89139938354498],[104.41832733154303,16.89084053039545],[104.42639160156256,16.88545036315918],[104.43093872070335,16.879829406738338],[104.43601226806658,16.878250122070312],[104.43834686279297,16.874010086059684],[104.44230651855486,16.872690200805778],[104.44654846191406,16.864839553833065],[104.4561386108399,16.864641189575252],[104.47074127197283,16.86596107482916],[104.47409057617216,16.86469078063965],[104.48472595214866,16.85427093505865],[104.49183654785185,16.84972953796398],[104.49830627441435,16.84968948364252],[104.51090240478544,16.853551864623967],[104.5203018188476,16.859888076782283],[104.53504943847656,16.864860534667912],[104.543510437012,16.864009857177678],[104.55255889892595,16.866991043090934],[104.55719757080084,16.86359024047863],[104.56449127197294,16.861898422241325],[104.5704498291015,16.863660812377873],[104.57762145996116,16.863189697265625],[104.58930206298857,16.864351272583008],[104.60990905761747,16.86037063598627],[104.62330627441423,16.861911773681584],[104.63018798828142,16.861780166626033],[104.63329315185553,16.855030059814396],[104.63944244384771,16.84807968139654],[104.63973236084001,16.834980010986442],[104.63786315917974,16.827970504760856],[104.63951873779314,16.822740554809684],[104.65151214599604,16.805599212646598],[104.65811157226585,16.80102920532238],[104.66131591796875,16.79626846313488],[104.66246795654303,16.790119171142635],[104.66889953613298,16.78498077392578],[104.67182159423834,16.789329528808537],[104.67643737792974,16.792020797729492],[104.68374633789057,16.80190086364746],[104.69622039794922,16.81231117248535],[104.70281219482433,16.82545089721691],[104.71536254882841,16.826580047607536],[104.72412109375006,16.814950942993164],[104.72335815429693,16.80906105041504],[104.72986602783232,16.804470062255973],[104.7351913452149,16.803819656372184]]]},"properties":{"ID_0":228,"ISO":"TH-49","NAME_0":"Thailand","ID_1":25,"NAME_1":"Mukdahan","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"มุกดาหาร","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.43383789062517,14.388422012329102],[101.45166778564476,14.38064956665039],[101.46127319335949,14.374839782714844],[101.4776229858399,14.363490104675293],[101.47818756103521,14.35875034332281],[101.48539733886724,14.343529701233024],[101.49430847167986,14.337011337280217],[101.49881744384794,14.331521034240836],[101.49639129638666,14.32306098937994],[101.50005340576172,14.313051223754996],[101.50624084472662,14.308450698852653],[101.50052642822294,14.297220230102653],[101.50010681152366,14.272760391235408],[101.49915313720726,14.265781402588004],[101.49449920654314,14.261199951171875],[101.48583221435553,14.263059616088867],[101.48281860351574,14.265899658203068],[101.474418640137,14.260701179504395],[101.46537780761724,14.261680603027457],[101.45796203613304,14.256509780883846],[101.45098114013666,14.253300666809082],[101.4425582885745,14.253100395202694],[101.4331893920899,14.254859924316406],[101.4173278808596,14.25156021118164],[101.4138412475586,14.25304985046398],[101.39852905273432,14.270551681518612],[101.39399719238298,14.273011207580566],[101.38636779785173,14.272301673889217],[101.38275909423828,14.270481109619197],[101.38535308837902,14.26571083068859],[101.38269042968761,14.257061004638672],[101.38005828857439,14.254781723022575],[101.38388061523455,14.248609542846737],[101.3802719116211,14.236270904541016],[101.3852310180664,14.232090950012207],[101.38578796386736,14.227510452270565],[101.38260650634771,14.22048091888422],[101.37728118896507,14.218940734863395],[101.37291717529303,14.209160804748535],[101.37397003173845,14.203550338745117],[101.3677597045899,14.200989723205623],[101.35983276367205,14.201681137085018],[101.34774780273466,14.196651458740291],[101.34291076660156,14.188798904419002],[101.33663940429693,14.18511104583746],[101.33075714111334,14.179059982299918],[101.33151245117193,14.176091194152889],[101.31643676757835,14.172081947326603],[101.31295776367188,14.168810844421444],[101.31227111816435,14.163551330566406],[101.30458831787115,14.160678863525504],[101.29209136962902,14.152421951294059],[101.28845977783214,14.138299942016715],[101.2882766723634,14.131420135498104],[101.29515075683588,14.12358188629156],[101.30480957031256,14.118570327758789],[101.30967712402361,14.110360145568848],[101.30912017822283,14.09640979766857],[101.31680297851568,14.085821151733398],[101.3206176757813,14.08227920532238],[101.3232421875,14.074839591980094],[101.32134246826172,14.070019721984863],[101.31241607666021,14.065420150756836],[101.31150054931646,14.070150375366325],[101.3068008422851,14.072341918945312],[101.29802703857416,14.06510066986084],[101.2952728271485,14.058031082153434],[101.28807067871122,14.054249763488826],[101.28520202636747,14.04974174499523],[101.27674865722662,14.058589935302791],[101.27340698242182,14.059782028198299],[101.2601318359375,14.06074142456066],[101.24672698974626,14.057951927185172],[101.24002075195324,14.057461738586483],[101.23660278320307,14.05933952331543],[101.2250671386721,14.051350593566951],[101.21479034423834,14.053991317749023],[101.20909118652372,14.044989585876579],[101.20448303222662,14.043901443481559],[101.20417022705072,14.038500785827637],[101.19808197021479,14.027131080627385],[101.20111846923822,14.02423191070568],[101.19493103027366,14.021129608154297],[101.19795227050781,14.014609336853084],[101.18779754638689,14.011249542236328],[101.1796798706057,14.011191368103084],[101.1783294677735,14.006131172180233],[101.17359924316412,14.009799957275504],[101.17122650146484,14.0049409866333],[101.16636657714872,14.002070426940918],[101.15460968017595,13.999291419982853],[101.14668273925804,13.995551109314022],[101.14509582519531,14.000029563903809],[101.14006805419933,13.998050689697266],[101.14122772216791,13.98606109619152],[101.14299011230486,13.981199264526424],[101.1436386108399,13.971590995788631],[101.13870239257841,13.968110084533748],[101.13192749023455,13.96947956085205],[101.10401916503918,13.973000526428223],[101.08329010009783,13.974249839782658],[101.0460586547851,13.975579261779899],[101.02738952636736,13.970170974731445],[101.01905822753912,13.968541145324707],[101.00152587890648,13.96873855590826],[100.98793029785156,13.968022346496639],[100.91552734375006,13.95867919921875],[100.91574096679716,14.01228046417242],[100.91541290283197,14.01702976226801],[100.91597747802729,14.066750526428336],[100.91590881347662,14.08125972747797],[100.91426849365229,14.117940902710018],[100.91484832763689,14.136500358581543],[100.91493988037132,14.182581901550407],[100.91548156738287,14.215821266174316],[100.91745758056669,14.220979690551758],[100.94725036621088,14.235529899597168],[100.94705200195324,14.24773979187006],[100.95178222656278,14.259351730346793],[100.95112609863281,14.264231681823844],[100.95289611816429,14.271981239318961],[100.95291137695318,14.275251388549805],[100.94837951660168,14.280341148376579],[100.94682312011747,14.287009239196891],[100.95044708251982,14.292830467224121],[100.95108032226557,14.306690216064453],[100.95475769042969,14.307710647583121],[100.96349334716814,14.30410099029541],[100.97158050537132,14.303400993347168],[100.97238159179716,14.297440528869629],[100.97776794433588,14.290019989013786],[100.99108886718778,14.29053974151617],[100.99022674560547,14.296771049499569],[100.99780273437494,14.299011230468807],[100.99974822998064,14.2979097366333],[101.0174102783206,14.30075931549078],[101.02069854736322,14.302169799804688],[101.02703094482422,14.311760902404785],[101.02793884277338,14.315039634704704],[101.03971099853544,14.326319694519043],[101.0481414794923,14.332421302795467],[101.05890655517578,14.343110084533748],[101.06124877929693,14.34722042083746],[101.06333160400413,14.356871604919377],[101.06462097167969,14.376298904419002],[101.0580368041995,14.385460853576717],[101.05606842041021,14.390198707580623],[101.05934906005865,14.396209716796875],[101.05792999267578,14.409070968628043],[101.06320953369152,14.413229942321834],[101.07312011718761,14.403130531311035],[101.07292175292997,14.400731086730957],[101.07697296142595,14.389389991760254],[101.0877380371096,14.38151073455822],[101.09297943115229,14.380470275878963],[101.116020202637,14.382479667663688],[101.12767791748058,14.380339622497559],[101.13947296142607,14.37324047088623],[101.14904785156244,14.371821403503532],[101.1527328491211,14.368302345275993],[101.15901947021484,14.356760025024414],[101.15821075439447,14.348480224609489],[101.1612701416015,14.344641685485954],[101.16763305664068,14.341760635376033],[101.16960144042997,14.346929550170842],[101.17814636230491,14.345781326294002],[101.18682098388666,14.352760314941406],[101.18743896484375,14.364760398864803],[101.19425964355463,14.368330955505371],[101.20067596435553,14.36769104003912],[101.20362854003923,14.369441032409725],[101.20986175537138,14.369018554687557],[101.21286773681663,14.37257003784191],[101.2134017944336,14.377121925353947],[101.21025848388683,14.384270668029842],[101.20581817626959,14.389389991760254],[101.20555877685547,14.396439552307129],[101.20362854003923,14.40061092376709],[101.20730590820318,14.406760215759334],[101.2124099731447,14.412229537963924],[101.21253204345732,14.420061111450138],[101.21118927001982,14.427901268005428],[101.2138061523438,14.434270858764592],[101.21673583984403,14.436410903930721],[101.22122955322271,14.435210227966422],[101.22940826416016,14.429869651794547],[101.23052215576189,14.434200286865348],[101.22402191162104,14.445841789245549],[101.22940826416016,14.450801849365348],[101.23310089111334,14.451911926269531],[101.23501586914068,14.458141326904297],[101.2323532104495,14.461301803588924],[101.22807312011719,14.461151123046932],[101.2263793945313,14.469699859619084],[101.22914123535168,14.472320556640625],[101.23715972900402,14.470430374145451],[101.24378204345709,14.470360755920524],[101.24263000488287,14.478340148925895],[101.24639892578125,14.488551139831657],[101.24922943115251,14.487511634826774],[101.25234985351585,14.492940902710018],[101.26000976562528,14.495850563049373],[101.26847076416033,14.502281188964844],[101.26908874511719,14.505631446838493],[101.27397918701166,14.511079788208008],[101.27906799316412,14.510831832885742],[101.28231811523443,14.503160476684627],[101.28578186035185,14.500120162963867],[101.2845230102539,14.496211051940918],[101.2855072021485,14.488731384277344],[101.29399871826183,14.489421844482422],[101.30153656005865,14.495881080627498],[101.3060607910158,14.497229576110954],[101.30818176269531,14.493431091308707],[101.30768585205084,14.483780860900879],[101.3134307861331,14.47084045410162],[101.32392120361357,14.468179702758789],[101.33043670654291,14.464289665222282],[101.33364105224638,14.464289665222282],[101.33937072753935,14.460062026977596],[101.34453582763683,14.454170227050724],[101.35372924804705,14.452791213989315],[101.36009979248053,14.448419570922908],[101.36508178710943,14.447992324829158],[101.36685943603527,14.444380760192985],[101.38169097900396,14.432691574096737],[101.38314056396484,14.427671432495117],[101.38233184814447,14.422109603881836],[101.38984680175787,14.421710968017578],[101.39697265625028,14.417329788208065],[101.39907836914091,14.407160758972168],[101.40792846679688,14.403149604797477],[101.41451263427763,14.395780563354492],[101.4188995361331,14.38786983489996],[101.4243392944336,14.38247108459484],[101.43383789062517,14.388422012329102]]]},"properties":{"ID_0":228,"ISO":"TH-26","NAME_0":"Thailand","ID_1":26,"NAME_1":"Nakhon Nayok","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"นครนายก","VARNAME_1":"Nakon Nayok"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.28079986572294,14.124320030212516],[100.27822875976562,14.101572036743164],[100.27819824218767,14.084610939025879],[100.27436065673845,14.069990158081055],[100.27371215820318,14.055669784545842],[100.27410888671903,14.042071342468262],[100.27362823486328,14.031009674072209],[100.26641082763678,14.007990837097225],[100.27661132812511,14.000500679016227],[100.26914215087919,13.992210388183537],[100.27108764648449,13.986561775207633],[100.27626800537126,13.979900360107365],[100.28720855712896,13.969801902771053],[100.29888153076178,13.962091445922965],[100.2874374389649,13.945540428161678],[100.27085113525396,13.929121017456112],[100.26522064209001,13.920121192932072],[100.27617645263695,13.913251876831055],[100.28256225585955,13.900139808654785],[100.31999206542969,13.821471214294377],[100.32913970947266,13.803200721740666],[100.3312072753908,13.786641120910701],[100.33010864257812,13.76531124114996],[100.3324584960938,13.753231048584041],[100.33209991455107,13.742550849914608],[100.33365631103527,13.734211921692008],[100.33209228515653,13.732739448547306],[100.32396697998064,13.726711273193416],[100.32451629638666,13.721899986267033],[100.31806945800781,13.719330787658691],[100.31227874755871,13.719520568847656],[100.29683685302746,13.715350151062012],[100.28708648681669,13.709971427917594],[100.28466796875017,13.701470375061092],[100.28396606445318,13.692441940307674],[100.27906036376982,13.69186115264904],[100.27584838867199,13.685441017150936],[100.26635742187517,13.680710792541618],[100.26058197021513,13.683850288391227],[100.24472808837919,13.674441337585506],[100.24349212646484,13.677429199218807],[100.22667694091814,13.668711662292537],[100.2227706909182,13.678991317749023],[100.21501922607433,13.684539794921818],[100.19938659667963,13.680280685424918],[100.1865921020509,13.679409980773983],[100.18128967285173,13.688360214233398],[100.17781829833996,13.687919616699276],[100.1755676269533,13.680721282959041],[100.17076110839855,13.682588577270565],[100.16622161865251,13.687500953674316],[100.15653991699219,13.683271408081112],[100.14433288574219,13.683201789855957],[100.1346282958985,13.6808500289917],[100.1260833740235,13.67186164855957],[100.1224899291995,13.665081024169979],[100.11289215087913,13.653979301452637],[100.10109710693365,13.647319793701172],[100.09487152099604,13.64675045013422],[100.07958221435558,13.649400711059627],[100.07227325439476,13.651880264282283],[100.0672607421875,13.649799346923828],[100.05998992919939,13.65006160736084],[100.06140899658226,13.659971237182674],[100.06427764892584,13.665861129760742],[100.06478881835938,13.672389984130973],[100.0683898925783,13.679500579833928],[100.06938934326178,13.690390586853141],[100.06759643554682,13.694871902465934],[100.05674743652361,13.693970680236816],[100.03556060791033,13.690890312194938],[100.02651977539068,13.701421737671012],[100.02465057373058,13.707369804382324],[100.02278137207048,13.722900390625],[100.02439117431663,13.735330581664982],[100.03160095214844,13.744290351867733],[100.03057861328136,13.75051021575922],[100.02812194824236,13.752619743347225],[100.01921844482428,13.745380401611385],[100.01229095459001,13.744190216064453],[100.00076293945318,13.73584079742443],[99.99632263183594,13.736429214477653],[99.9724960327149,13.73380184173584],[99.9537963867188,13.73114013671875],[99.95020294189476,13.73760986328125],[99.94374084472662,13.742881774902457],[99.94226837158214,13.74619102478033],[99.94085693359398,13.759329795837402],[99.94924163818382,13.766540527343864],[99.95376586914062,13.775011062622013],[99.95468139648432,13.782871246337834],[99.95758056640625,13.79507160186779],[99.9637374877932,13.798469543457031],[99.96689605712908,13.796839714050293],[99.97100067138695,13.799730300903377],[99.97055053710938,13.809030532836971],[99.96343231201183,13.812101364135685],[99.96418762207043,13.818129539489803],[99.96195220947283,13.823030471801871],[99.96398925781278,13.827241897583121],[99.95809936523449,13.835001945495662],[99.9551010131836,13.831879615783691],[99.94258117675804,13.829521179199219],[99.93653106689464,13.833950996398983],[99.93852233886719,13.837478637695426],[99.93444061279308,13.842440605163631],[99.92590332031267,13.84303092956543],[99.92192077636719,13.845001220703125],[99.91446685791033,13.843320846557674],[99.909408569336,13.845930099487305],[99.90487670898449,13.840731620788631],[99.90222930908197,13.840400695800781],[99.90651702880882,13.854520797729549],[99.91317749023443,13.871470451355037],[99.91068267822266,13.877301216125431],[99.90541839599638,13.881609916687125],[99.90757751464861,13.886819839477539],[99.90223693847673,13.898961067199764],[99.8977813720706,13.901940345764217],[99.90699005126947,13.906720161437988],[99.91250610351574,13.903861999511832],[99.91599273681658,13.905220031738224],[99.9217300415039,13.916120529174805],[99.92407989501976,13.918181419372502],[99.92491912841791,13.925939559936637],[99.9271926879884,13.933799743652457],[99.92491912841791,13.93838119506836],[99.91960906982439,13.941160202026424],[99.90802764892584,13.938261032104549],[99.89652252197283,13.93944072723383],[99.88751220703136,13.943090438842887],[99.8779220581057,13.948290824890194],[99.87018585205072,13.962371826171932],[99.86219787597673,13.966971397400016],[99.85418701171892,13.96982192993164],[99.85314941406278,13.980789184570312],[99.84571838378935,13.98341274261469],[99.84571838378935,13.997281074523869],[99.83812713623058,13.995770454406738],[99.8330993652346,13.996431350708121],[99.83232879638695,14.007179260253963],[99.83399963378906,14.010809898376522],[99.85440826416016,14.041250228881893],[99.84707641601574,14.052109718322697],[99.84423065185558,14.058421134948844],[99.85708618164062,14.066349983215332],[99.87010955810553,14.071320533752498],[99.87744140625017,14.081269264221305],[99.89382934570307,14.098670959472656],[99.90609741210938,14.113739967346191],[99.91819763183622,14.118952751159668],[99.92893218994135,14.118680953979492],[99.93222045898438,14.12064170837408],[99.93728637695341,14.130069732666016],[99.94213104248047,14.134470939636287],[99.9564819335938,14.13589954376232],[99.9654388427735,14.133970260620174],[99.9741516113283,14.135052680969238],[99.97894287109375,14.138060569763297],[99.98490905761741,14.138870239257756],[99.995361328125,14.136610984802246],[100.00797271728521,14.139691352844295],[100.02780151367193,14.140239715576229],[100.05152130126982,14.142621994018668],[100.07102966308588,14.145831108093262],[100.08090972900419,14.146571159362736],[100.10877227783214,14.146380424499455],[100.13236999511724,14.145249366760254],[100.15611267089861,14.162341117858944],[100.15624237060575,14.16615104675293],[100.19336700439459,14.176250457763729],[100.21562957763689,14.181891441345272],[100.21646118164085,14.185279846191406],[100.22532653808588,14.190951347351131],[100.22807312011724,14.195679664611873],[100.2432327270509,14.208591461181584],[100.24450683593773,14.204951286315861],[100.24523925781256,14.182770729064885],[100.24748229980486,14.17307090759283],[100.2559204101563,14.171691894531193],[100.26957702636713,14.170930862426871],[100.28485107421892,14.16889953613287],[100.2853393554688,14.166559219360465],[100.28079986572294,14.124320030212516]]]},"properties":{"ID_0":228,"ISO":"TH-73","NAME_0":"Thailand","ID_1":27,"NAME_1":"Nakhon Pathom","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"นครปฐม","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.7351913452149,16.803819656372184],[104.72986602783232,16.804470062255973],[104.72335815429693,16.80906105041504],[104.72412109375006,16.814950942993164],[104.71536254882841,16.826580047607536],[104.70281219482433,16.82545089721691],[104.69622039794922,16.81231117248535],[104.68374633789057,16.80190086364746],[104.67643737792974,16.792020797729492],[104.67182159423834,16.789329528808537],[104.66889953613298,16.78498077392578],[104.66246795654303,16.790119171142635],[104.66131591796875,16.79626846313488],[104.65811157226585,16.80102920532238],[104.65151214599604,16.805599212646598],[104.63951873779314,16.822740554809684],[104.63786315917974,16.827970504760856],[104.63973236084001,16.834980010986442],[104.63944244384771,16.84807968139654],[104.63329315185553,16.855030059814396],[104.63018798828142,16.861780166626033],[104.62330627441423,16.861911773681584],[104.60990905761747,16.86037063598627],[104.58930206298857,16.864351272583008],[104.57762145996116,16.863189697265625],[104.5704498291015,16.863660812377873],[104.56449127197294,16.861898422241325],[104.55719757080084,16.86359024047863],[104.55255889892595,16.866991043090934],[104.543510437012,16.864009857177678],[104.53504943847656,16.864860534667912],[104.5203018188476,16.859888076782283],[104.51090240478544,16.853551864623967],[104.49830627441435,16.84968948364252],[104.49183654785185,16.84972953796398],[104.48472595214866,16.85427093505865],[104.47409057617216,16.86469078063965],[104.47074127197283,16.86596107482916],[104.4561386108399,16.864641189575252],[104.44654846191406,16.864839553833065],[104.44230651855486,16.872690200805778],[104.43834686279297,16.874010086059684],[104.43601226806658,16.878250122070312],[104.43093872070335,16.879829406738338],[104.42639160156256,16.88545036315918],[104.41832733154303,16.89084053039545],[104.4149017333985,16.89139938354498],[104.40901184082054,16.887132644653377],[104.40685272216797,16.87931060791027],[104.4041976928711,16.877069473266715],[104.3994369506836,16.87874984741211],[104.39884185791016,16.882360458373967],[104.39216613769531,16.883680343628043],[104.38887023925776,16.88206100463873],[104.38234710693388,16.884880065917912],[104.37885284423834,16.88939094543457],[104.37396240234403,16.88928985595703],[104.3680801391601,16.88639068603527],[104.3636169433596,16.88760948181158],[104.35457611084001,16.892810821533146],[104.35688018798828,16.899110794067383],[104.34774780273438,16.901300430297965],[104.33905029296903,16.901969909668026],[104.32678222656256,16.900041580200195],[104.32389831542969,16.895460128784237],[104.30506134033226,16.88315963745123],[104.2996597290039,16.872770309448356],[104.29524230957048,16.869970321655217],[104.28999328613304,16.855619430542106],[104.28089141845732,16.856611251830998],[104.28185272216808,16.863880157470703],[104.27536773681652,16.868118286132812],[104.26988983154314,16.874420166015625],[104.26831054687511,16.878562927246207],[104.26420593261719,16.880889892578068],[104.25849151611334,16.899660110473633],[104.2552261352539,16.904830932617244],[104.27101898193376,16.91907119750988],[104.28469848632841,16.923719406128043],[104.28930664062494,16.92640113830572],[104.30352783203148,16.924850463867244],[104.30538177490234,16.92685127258312],[104.31729125976568,16.956060409545955],[104.32263946533232,16.9652099609375],[104.31960296630888,16.97227096557623],[104.32704162597685,16.975080490112305],[104.3337707519533,16.97346115112316],[104.33856201171892,16.978691101074332],[104.3467788696289,16.98229026794445],[104.35398864746111,16.98274040222168],[104.35655212402366,16.986909866333065],[104.3578720092774,17.000160217285156],[104.35977935791021,17.004009246826115],[104.36429595947283,17.005821228027287],[104.37384033203142,17.006790161132812],[104.38089752197283,17.013521194458008],[104.391830444336,17.013740539550838],[104.40043640136724,17.020729064941406],[104.39893341064482,17.033840179443416],[104.3896026611331,17.033239364623967],[104.38762664794928,17.0429306030274],[104.38011932373064,17.045289993286246],[104.36705017089866,17.05409049987793],[104.36396026611328,17.062461853027287],[104.35977935791021,17.055959701538086],[104.35475921630876,17.059328079223633],[104.35466003417974,17.066459655761662],[104.36425781250011,17.072011947631836],[104.3619766235351,17.074840545654354],[104.36454010009771,17.087980270385685],[104.36406707763683,17.094440460205078],[104.36959075927746,17.10387039184576],[104.37644195556669,17.101449966430664],[104.38146209716814,17.104740142822266],[104.38738250732439,17.112808227539006],[104.39006042480486,17.122369766235465],[104.4029159545899,17.13331985473627],[104.402603149414,17.13772964477539],[104.39470672607445,17.141349792480526],[104.39128875732428,17.145469665527344],[104.39372253417974,17.152061462402457],[104.39279937744163,17.16603279113781],[104.39382934570307,17.176330566406193],[104.39685821533232,17.181781768798828],[104.40706634521484,17.19031906127941],[104.40892028808611,17.198642730712947],[104.42138671875006,17.220260620117188],[104.42724609375017,17.2260799407959],[104.43139648437511,17.23264122009283],[104.43775177001953,17.23847007751459],[104.42945861816435,17.243709564209098],[104.42724609375017,17.253030776977653],[104.4227066040039,17.259990692138672],[104.41928100585943,17.26127815246582],[104.40863800048834,17.277671813964844],[104.40811157226591,17.290670394897575],[104.40512084960955,17.297599792480582],[104.40556335449224,17.304780960083008],[104.41147613525396,17.310140609741325],[104.4194564819336,17.311981201171875],[104.41895294189459,17.31848907470703],[104.42446136474632,17.326530456543026],[104.42565155029325,17.337610244750977],[104.42098999023438,17.347669601440487],[104.41789245605486,17.349710464477653],[104.41528320312506,17.35589981079096],[104.41628265380865,17.361549377441406],[104.41425323486322,17.369369506835938],[104.40959930419928,17.378780364990348],[104.41783142089872,17.395139694213924],[104.4143829345706,17.401260375976562],[104.41323089599615,17.4072208404541],[104.4187774658206,17.4122695922851],[104.41944122314453,17.422550201416072],[104.4167709350586,17.427640914917106],[104.40592956542974,17.425989151001033],[104.39138031005876,17.425931930542106],[104.37798309326183,17.423669815063533],[104.37193298339861,17.4244003295899],[104.3442687988283,17.42485046386713],[104.33470916748041,17.42947959899908],[104.31057739257818,17.430629730224723],[104.30488586425787,17.428560256958008],[104.28919982910162,17.430919647216797],[104.27623748779303,17.424610137939453],[104.26917266845709,17.419000625610295],[104.25463104248064,17.414199829101562],[104.24651336669928,17.41662025451666],[104.23403167724626,17.41291046142578],[104.22701263427734,17.41324996948248],[104.2200469970706,17.416812896728516],[104.21121215820335,17.41340065002447],[104.20845794677751,17.414770126342773],[104.20722198486334,17.42206192016613],[104.20033264160162,17.426681518554744],[104.19571685791016,17.421680450439567],[104.19133758544922,17.42428016662609],[104.18710327148455,17.42118072509777],[104.17608642578125,17.427032470703182],[104.17125701904291,17.413650512695312],[104.16088104248053,17.415370941162223],[104.15605163574219,17.41193008422863],[104.15776824951172,17.40538024902355],[104.15119934082043,17.404050827026367],[104.1566162109375,17.394760131835938],[104.1540908813476,17.39132118225109],[104.14952087402361,17.391769409179744],[104.14612579345703,17.395780563354606],[104.14264678955072,17.393510818481502],[104.14533233642595,17.388919830322266],[104.1443481445312,17.38465118408203],[104.13450622558594,17.379009246826172],[104.12980651855497,17.38065910339361],[104.12799072265642,17.389690399169922],[104.12934112548828,17.394451141357422],[104.11966705322288,17.395561218261776],[104.11617279052734,17.390071868896484],[104.11248779296886,17.39018058776861],[104.11377716064459,17.399541854858455],[104.10861968994146,17.401969909667912],[104.10388183593778,17.398067474365178],[104.10085296630871,17.401510238647575],[104.09435272216825,17.40085029602062],[104.10102081298857,17.39058113098139],[104.10446929931652,17.38871955871582],[104.10214996337919,17.379590988159293],[104.0977172851563,17.373859405517578],[104.09172821044939,17.37418937683111],[104.09056854248041,17.376869201660213],[104.09416198730497,17.38159942626953],[104.08885955810541,17.38532066345209],[104.08336639404297,17.391441345214957],[104.07479858398438,17.377958297729492],[104.0708618164063,17.38022994995123],[104.0676879882812,17.387441635131836],[104.06326293945341,17.38648033142084],[104.06035614013678,17.389869689941463],[104.06127166748053,17.395029067993164],[104.05815124511713,17.397550582885742],[104.05446624755888,17.405740737915096],[104.04548645019537,17.413450241088924],[104.04220581054693,17.41873168945324],[104.0384902954101,17.430759429931697],[104.03118133544928,17.43794250488287],[104.03260803222673,17.443399429321232],[104.02715301513695,17.451709747314453],[104.0213088989259,17.455570220947322],[104.01444244384777,17.47381019592291],[104.01225280761724,17.485940933227482],[104.02281188964872,17.486890792846737],[104.02455139160168,17.489561080932674],[104.02719116210966,17.500930786132926],[104.03096008300787,17.504259109497013],[104.03547668457048,17.512649536132812],[104.03630828857445,17.518440246582088],[104.04119873046892,17.526428222656307],[104.0420532226563,17.530847549438533],[104.03929901123064,17.54319953918457],[104.0370788574221,17.55925941467291],[104.0399932861331,17.56529045104986],[104.05049896240246,17.569059371948242],[104.05381774902344,17.572050094604435],[104.05663299560564,17.58413124084484],[104.05667877197266,17.590818405151367],[104.04908752441429,17.602890014648494],[104.03813934326189,17.609912872314567],[104.03321838378906,17.61796760559082],[104.04003143310541,17.63811111450201],[104.04559326171892,17.64501953125],[104.05095672607422,17.63692283630371],[104.05940246582037,17.640390396118278],[104.06855773925787,17.647510528564567],[104.07376098632824,17.652851104736442],[104.07402038574219,17.665670394897575],[104.08557128906278,17.6778507232666],[104.07337951660168,17.67740058898937],[104.0695190429688,17.68897056579584],[104.0722961425783,17.692039489746207],[104.07788848876976,17.69152069091797],[104.0802459716798,17.69425010681158],[104.07733917236334,17.70058822631836],[104.07997894287115,17.70359992980957],[104.0787506103515,17.708410263061637],[104.069320678711,17.71381950378418],[104.06558227539057,17.720550537109375],[104.07051849365246,17.723188400268555],[104.07065582275396,17.732629776000977],[104.06770324707048,17.744422912597713],[104.0638580322265,17.744409561157227],[104.06240844726562,17.739271163940487],[104.05278778076183,17.73644065856945],[104.05393981933588,17.747390747070256],[104.05953979492188,17.74809074401867],[104.06004333496088,17.75589942932129],[104.05161285400419,17.763750076294002],[104.04038238525402,17.767948150634766],[104.03150939941406,17.766769409179744],[104.03176116943365,17.757120132446403],[104.02630615234392,17.757669448852596],[104.02452850341825,17.76831245422369],[104.01645660400396,17.778869628906193],[104.0164718627932,17.784660339355526],[104.01268768310553,17.79120063781744],[104.01600646972673,17.795610427856502],[104.02207946777355,17.794841766357422],[104.02368927001953,17.798799514770508],[104.01936340332037,17.80808830261236],[104.01560211181635,17.816619873046818],[104.01689147949247,17.820209503173828],[104.01325988769537,17.824819564819336],[104.01480865478544,17.828569412231445],[104.0072174072265,17.831872940063533],[104.00549316406244,17.83686065673828],[104.00148010253918,17.83912086486822],[104.00525665283232,17.84690093994152],[103.99252319335932,17.85327911376953],[103.98927307128918,17.860471725463867],[103.99237823486345,17.874309539795036],[103.99871063232428,17.88594055175787],[104.00148010253918,17.887580871581974],[104.01187896728521,17.88956260681158],[104.01846313476557,17.892009735107536],[104.01734924316423,17.894830703735465],[104.02246856689447,17.900459289550838],[104.03009033203136,17.904310226440373],[104.03219604492182,17.907739639282283],[104.0401458740235,17.905740737914982],[104.04515075683605,17.906459808349666],[104.05123901367216,17.903190612793082],[104.05311584472662,17.90024757385254],[104.04820251464855,17.89373016357422],[104.0515365600586,17.887920379638672],[104.05956268310553,17.883750915527457],[104.0678100585938,17.881580352783146],[104.07554626464844,17.877380371093807],[104.09095001220697,17.89382934570324],[104.09144592285162,17.898990631103516],[104.09777069091825,17.901218414306584],[104.10150146484375,17.905862808227596],[104.10829925537104,17.909299850463867],[104.11737823486351,17.918838500976676],[104.12586212158197,17.9237003326416],[104.13458251953153,17.932750701904297],[104.13864135742182,17.939559936523494],[104.14251708984375,17.953010559081974],[104.13566589355474,17.9562225341798],[104.13654327392572,17.962789535522518],[104.12975311279303,17.965890884399414],[104.1217269897461,17.972650527954215],[104.1205215454101,17.978822708129883],[104.11746215820307,17.983240127563477],[104.11837005615263,17.988571166992244],[104.11399078369169,17.996362686157227],[104.11734771728521,18.00248908996582],[104.12413024902338,18.00172042846691],[104.12635040283209,18.0060195922851],[104.1324310302735,18.0063095092774],[104.13768768310541,18.009019851684627],[104.14794921875028,18.01201057434082],[104.14888763427763,18.014940261840877],[104.15538024902372,18.02078056335455],[104.16052246093778,18.017589569091797],[104.16565704345709,18.010980606079215],[104.17006683349638,18.003099441528377],[104.175765991211,18.002300262451115],[104.17542266845714,18.015739440918082],[104.18444061279314,18.01889991760254],[104.18345642089838,18.02385139465332],[104.18721771240263,18.024999618530387],[104.1914672851562,18.020500183105582],[104.19975280761724,18.010089874267692],[104.20854949951195,18.004579544067383],[104.2204132080081,17.988889694213924],[104.22850036621111,17.971582412719727],[104.23493957519543,17.95511054992687],[104.23921966552734,17.947269439697322],[104.26255035400396,17.888130187988395],[104.2689819335938,17.877281188964787],[104.27053070068382,17.87082099914562],[104.2777709960938,17.8555908203125],[104.28636169433616,17.846189498901367],[104.30098724365251,17.837717056274414],[104.31214141845709,17.833209991455135],[104.32891082763678,17.830089569091797],[104.33431243896496,17.828365325927678],[104.34942626953142,17.820779800415096],[104.3607177734375,17.810600280761776],[104.36534881591803,17.803699493408317],[104.37341308593761,17.785749435424805],[104.3743972778322,17.78210067749029],[104.37940979003906,17.776229858398438],[104.39315795898443,17.75638008117687],[104.40103149414091,17.735599517822322],[104.40989685058611,17.720470428466797],[104.41987609863304,17.707500457763672],[104.42436981201189,17.70387077331543],[104.43836212158209,17.6882705688476],[104.4480285644533,17.67430114746105],[104.45735931396479,17.657989501953125],[104.46498870849604,17.651451110839787],[104.47325134277344,17.64603996276867],[104.49286651611345,17.63718986511236],[104.50939178466825,17.630790710449276],[104.52539062500028,17.623920440673828],[104.53208923339872,17.622440338134822],[104.53880310058588,17.618999481201172],[104.58679962158209,17.590440750122184],[104.60385131835955,17.57713127136236],[104.60848999023443,17.575170516967773],[104.61724853515625,17.575189590454215],[104.63582611084013,17.561880111694393],[104.64511871337896,17.556459426879996],[104.65647125244135,17.547580718994254],[104.67607116699247,17.53823089599615],[104.69773864746094,17.525409698486385],[104.70392608642607,17.519979476928654],[104.712699890137,17.50863075256342],[104.71734619140642,17.497261047363338],[104.72466278076178,17.489740371704215],[104.72976684570312,17.48283004760748],[104.7354202270509,17.472141265869197],[104.74514007568388,17.457920074463004],[104.75273132324224,17.443630218505973],[104.7718658447265,17.42881011962902],[104.78421020507818,17.414020538330135],[104.79229736328142,17.40138053894043],[104.79810333251976,17.384710311889762],[104.80253601074247,17.37836074829113],[104.80368804931669,17.347280502319393],[104.80272674560575,17.33415031433111],[104.80541992187511,17.32569122314453],[104.80655670166044,17.298259735107536],[104.80410003662104,17.277669906616268],[104.80484008789091,17.268230438232422],[104.80488586425798,17.24170112609869],[104.80631256103538,17.233940124511662],[104.8062133789062,17.22509193420416],[104.78415679931646,17.13128089904791],[104.78273773193354,17.119720458984375],[104.77091979980463,17.08749961853033],[104.76875305175787,17.079219818115234],[104.76483154296892,17.074569702148494],[104.76203155517584,17.0681610107423],[104.74855804443388,17.046409606933707],[104.74378967285185,17.04038047790533],[104.73780822753912,17.030200958251953],[104.73326873779303,17.017099380493278],[104.73149871826172,17.00482749938965],[104.73127746582048,16.989999771118278],[104.73367309570341,16.968639373779354],[104.73343658447271,16.96072006225586],[104.7348022460938,16.95529747009283],[104.73255157470732,16.93840980529785],[104.73459625244163,16.911279678344727],[104.7323532104495,16.91103172302246],[104.73770904541027,16.89545059204113],[104.74575042724604,16.878879547119084],[104.74894714355497,16.867940902710018],[104.75337982177729,16.859109878540096],[104.7564697265625,16.858209609985465],[104.75849151611357,16.84470939636236],[104.75173187255865,16.83243942260748],[104.74452209472662,16.825189590454215],[104.73739624023438,16.810880661010742],[104.7351913452149,16.803819656372184]]]},"properties":{"ID_0":228,"ISO":"TH-30","NAME_0":"Thailand","ID_1":28,"NAME_1":"Nakhon Phanom","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"นครพนม","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.32894134521479,15.801900863647461],[102.33065032958979,15.798030853271484],[102.34884643554688,15.776708602905273],[102.35385894775396,15.772009849548397],[102.363021850586,15.76760196685791],[102.36570739746122,15.760060310363713],[102.36194610595697,15.757659912109375],[102.36334228515625,15.75184154510498],[102.35961914062528,15.746269226074219],[102.3581619262697,15.737959861755485],[102.36257934570312,15.72943115234375],[102.36924743652344,15.731910705566406],[102.38024902343744,15.730740547180176],[102.38449096679688,15.72598934173584],[102.38836669921898,15.72455978393549],[102.39763641357439,15.712381362915096],[102.4013061523438,15.709751129150447],[102.40544128417986,15.700410842895565],[102.41857147216808,15.69445991516119],[102.42433166503923,15.69575023651123],[102.43257904052734,15.703420639038029],[102.4381103515625,15.70392990112316],[102.44435882568376,15.70769023895275],[102.44927215576183,15.713301658630428],[102.4578399658206,15.716450691223201],[102.47096252441412,15.715141296386719],[102.48397827148466,15.715931892395076],[102.48879241943376,15.71759128570568],[102.49942016601591,15.723950386047477],[102.5036163330081,15.723691940307617],[102.51419830322266,15.72571086883545],[102.51905822753935,15.722770690917969],[102.52308654785168,15.716781616211051],[102.53064727783226,15.715441703796387],[102.53674316406256,15.709410667419434],[102.54673767089855,15.71096134185791],[102.5521469116211,15.705789566040153],[102.56446075439482,15.70518970489502],[102.57863616943376,15.708490371704045],[102.58277130126982,15.70648002624506],[102.59999084472673,15.711751937866268],[102.59986877441412,15.7146511077882],[102.60478973388672,15.722750663757381],[102.6122665405274,15.727402687072754],[102.62020874023455,15.723299980163631],[102.63848876953136,15.716640472412166],[102.65242004394526,15.713649749755973],[102.66027832031267,15.716071128845215],[102.66941833496111,15.71451187133789],[102.67417907714838,15.717460632324219],[102.6747283935548,15.721799850463867],[102.6815032958985,15.726779937744197],[102.69214630126953,15.722479820251579],[102.69922637939453,15.722850799560547],[102.70067596435541,15.718411445617733],[102.69789123535156,15.713321685791016],[102.69306182861322,15.712890625],[102.69474029541044,15.706771850585938],[102.6920013427735,15.701299667358512],[102.70229339599615,15.691660881042537],[102.70630645751959,15.68507003784174],[102.70997619628935,15.685250282287598],[102.71296691894537,15.676170349121207],[102.71620941162115,15.67177963256836],[102.71833801269554,15.664529800415096],[102.73021697998075,15.664250373840446],[102.7322006225586,15.666142463684139],[102.7409896850586,15.666130065917969],[102.74829101562506,15.668881416320744],[102.75150299072271,15.661899566650447],[102.75695800781244,15.6588392257691],[102.75876617431663,15.654980659484863],[102.76390838623053,15.6513414382934],[102.76773071289085,15.652489662170467],[102.7746200561524,15.649550437927303],[102.7814559936524,15.644010543823299],[102.77938842773443,15.641709327697697],[102.78247833251982,15.637419700622672],[102.77894592285156,15.633370399475098],[102.78108978271507,15.627011299133358],[102.77336883544939,15.621910095214844],[102.77362823486334,15.616290092468319],[102.7776107788086,15.612092018127555],[102.77890014648455,15.604130744934139],[102.7835617065432,15.600060462951717],[102.77987670898455,15.592981338501033],[102.78031921386741,15.589778900146541],[102.78501129150408,15.587871551513729],[102.7864379882813,15.582702636718864],[102.78350067138689,15.578801155090446],[102.78717803955084,15.575651168823242],[102.78295135498047,15.57199954986578],[102.78430175781256,15.559082031249943],[102.78983306884771,15.553080558776855],[102.7914505004884,15.54564094543457],[102.79695892334013,15.542380332946834],[102.80130004882835,15.537790298461914],[102.79892730712908,15.529740333557072],[102.81250762939453,15.523520469665584],[102.81726074218767,15.511159896850529],[102.82135772705084,15.509881973266715],[102.82692718505871,15.511931419372672],[102.82836914062506,15.506779670715332],[102.8320922851562,15.506779670715332],[102.8353576660158,15.513279914855957],[102.84790802001964,15.51056957244873],[102.85990905761747,15.512081146240178],[102.8665618896485,15.50656986236578],[102.8719787597658,15.51172065734869],[102.87371063232439,15.516790390014705],[102.8853759765625,15.521801948547477],[102.89196014404325,15.516500473022404],[102.89846038818371,15.519339561462516],[102.90624237060575,15.516062736511174],[102.9136581420899,15.506851196289062],[102.92182922363287,15.505929946899357],[102.92707824707026,15.509539604187125],[102.93222808837885,15.506381034851074],[102.92437744140653,15.499429702758732],[102.92514038085966,15.495780944824219],[102.9294204711914,15.493729591369629],[102.93228912353516,15.486591339111385],[102.93563842773466,15.486579895019645],[102.94243621826178,15.49237060546875],[102.94647979736334,15.488149642944336],[102.94117736816418,15.482131004333553],[102.9415130615235,15.472970962524414],[102.95014953613293,15.477101325988826],[102.96186828613281,15.477739334106445],[102.96160125732416,15.482632637023983],[102.9689331054688,15.481891632080192],[102.96914672851585,15.47731971740717],[102.97493743896496,15.475870132446346],[102.97711944580078,15.480071067810172],[102.98258972167963,15.477972030639592],[102.98332977294933,15.473080635070858],[102.98739624023455,15.465251922607479],[102.99469757080084,15.466659545898494],[102.99785614013666,15.451292037963867],[103.0021591186524,15.447941780090389],[103.00470733642572,15.441469192504883],[103.01177215576166,15.434449195861873],[103.01355743408203,15.430050849914664],[103.00219726562528,15.42533969879156],[102.99909973144554,15.417289733886776],[102.99320983886724,15.412911415100154],[102.98813629150408,15.41710090637207],[102.99038696289074,15.421071052551383],[102.98275756835949,15.424429893493652],[102.98519897460943,15.416279792785701],[102.97930908203153,15.416171073913574],[102.97876739501947,15.419931411743164],[102.98113250732422,15.425820350646973],[102.9779815673831,15.427581787109432],[102.9726867675783,15.424819946289006],[102.97174835205095,15.417991638183594],[102.96714782714838,15.416819572448844],[102.96823883056669,15.41074180603033],[102.96570587158209,15.404179573059082],[102.95976257324219,15.408769607544002],[102.95378112792963,15.394701004028434],[102.9562301635745,15.382561683654785],[102.95781707763689,15.379719734191838],[102.96623992919922,15.37449169158947],[102.97219848632835,15.373141288757438],[102.98217010498075,15.373200416564941],[102.98799133300781,15.370601654052734],[102.9911575317384,15.363441467285156],[102.98963165283214,15.356370925903434],[102.99288177490229,15.351279258728084],[102.99394989013695,15.337439537048283],[102.9920501708985,15.333860397338924],[102.98599243164091,15.332130432128906],[102.97045898437506,15.331802368164062],[102.96363067626959,15.326130867004338],[102.95894622802729,15.324761390686035],[102.95462799072271,15.31479930877697],[102.95491027832043,15.308900833129826],[102.95889282226591,15.304100990295353],[102.96501159667997,15.299530982971135],[102.969482421875,15.291980743408203],[102.96703338623053,15.286170959472656],[102.9620361328125,15.281069755554142],[102.95656585693382,15.27003002166748],[102.95755767822294,15.266560554504451],[102.96227264404303,15.262411117553825],[102.9627761840822,15.25370025634777],[102.95728302001953,15.249541282653809],[102.96347808837919,15.23981952667242],[102.96353912353533,15.233390808105526],[102.9618225097658,15.221211433410758],[102.96322631835943,15.216201782226562],[102.97656250000006,15.205290794372559],[102.96972656250023,15.195529937744197],[102.96779632568365,15.190610885620117],[102.96341705322271,15.191230773925781],[102.95707702636719,15.187980651855469],[102.949462890625,15.187329292297363],[102.94107055664062,15.18237018585205],[102.93572998046875,15.181159973144588],[102.93147277832026,15.183382034301701],[102.91982269287121,15.182070732116642],[102.91947937011736,15.186919212341422],[102.89708709716825,15.187181472778434],[102.89009857177751,15.182930946350211],[102.87671661376964,15.171772003173942],[102.86769866943365,15.170340538024846],[102.85888671875006,15.170420646667594],[102.8507766723634,15.168490409851188],[102.84870147705072,15.164710998535156],[102.83835601806669,15.15613937377941],[102.83197021484375,15.144770622253475],[102.82466125488276,15.144981384277457],[102.81922912597679,15.141201972961483],[102.81783294677751,15.135770797729606],[102.81143951416021,15.133400917053166],[102.81220245361334,15.129300117492619],[102.79512786865251,15.107639312744197],[102.79080200195318,15.104669570922852],[102.78585052490257,15.094111442566032],[102.7787017822265,15.085289955139274],[102.76467132568365,15.07833194732666],[102.76712036132812,15.07478141784668],[102.77667999267584,15.069479942321777],[102.77906036376964,15.063151359558162],[102.7754516601562,15.05902099609375],[102.78034210205084,15.045159339904842],[102.78469848632818,15.042071342468205],[102.78098297119135,15.034969329834041],[102.77693939209013,15.032291412353572],[102.76557159423845,15.031319618225211],[102.75678253173845,15.02892971038824],[102.75509643554688,15.025661468505973],[102.75858306884788,15.015338897705135],[102.75800323486351,15.00648021697998],[102.75277709960955,15.000681877136174],[102.75209808349632,14.991470336914006],[102.74447631835943,14.990900039672965],[102.73766326904308,14.993961334228572],[102.73396301269537,14.993589401245174],[102.72667694091797,14.98906135559082],[102.72344970703125,14.985370635986385],[102.71595001220697,14.982782363891602],[102.71141815185547,14.976462364196834],[102.708969116211,14.969120025634766],[102.71154785156244,14.956279754638615],[102.71102142334001,14.953139305114746],[102.69930267334013,14.933410644531307],[102.69381713867182,14.932111740112305],[102.66324615478544,14.933069229126033],[102.64597320556658,14.933110237121639],[102.64231872558588,14.934120178222656],[102.61620330810564,14.934181213378963],[102.60198211669945,14.934989929199332],[102.57411193847662,14.956220626831112],[102.56328582763678,14.955840110778809],[102.55930328369169,14.954241752624569],[102.54891967773438,14.944190979003906],[102.56053924560547,14.937520027160701],[102.56524658203136,14.936332702636662],[102.5691833496096,14.925990104675293],[102.56349182128935,14.918010711669979],[102.56285095214844,14.915040969848633],[102.55591583251947,14.90846061706543],[102.5449829101563,14.902330398559627],[102.54280853271484,14.896809577941895],[102.54220581054705,14.887729644775447],[102.55255126953125,14.8776016235351],[102.5481262207033,14.871211051940918],[102.55391693115257,14.85952091217041],[102.55168151855497,14.848451614379826],[102.54479980468778,14.833820343017521],[102.54279327392595,14.824081420898494],[102.5352401733399,14.812960624694938],[102.52160644531267,14.805741310119629],[102.51033020019526,14.803931236267204],[102.50695037841797,14.801061630248967],[102.50251007080072,14.800919532775993],[102.49423980712896,14.805891036987305],[102.47779846191412,14.812491416931266],[102.47187805175787,14.818691253662166],[102.46190643310564,14.833270072937012],[102.4567108154298,14.830769538879508],[102.4492111206057,14.819259643554688],[102.44853973388666,14.806900978088379],[102.44716644287138,14.801181793213004],[102.44268798828125,14.79961013793951],[102.44190979003906,14.796271324157829],[102.4457626342774,14.78813171386713],[102.4458618164062,14.778690338134709],[102.44848632812528,14.776960372924862],[102.45411682128906,14.768241882324276],[102.46173095703142,14.76408863067627],[102.46994018554688,14.761851310730094],[102.47640991210955,14.754122734069824],[102.48281097412138,14.744449615478572],[102.48256683349615,14.735059738159123],[102.48960876464844,14.734331130981502],[102.49069213867182,14.73139953613287],[102.4798583984375,14.729949951171989],[102.46705627441423,14.720919609069824],[102.4609680175783,14.708149909973088],[102.46185302734403,14.699000358581543],[102.46726226806658,14.692569732666072],[102.46916198730486,14.687630653381461],[102.4715270996096,14.67136001586914],[102.47731018066418,14.653701782226562],[102.4781494140625,14.64202976226818],[102.47525787353533,14.6219100952149],[102.47223663330078,14.616669654846305],[102.47772979736345,14.61056041717535],[102.48258972167991,14.598711013794002],[102.4872283935548,14.583909988403263],[102.49649047851568,14.564400672912711],[102.49505615234386,14.558841705322266],[102.49449920654291,14.535949707031364],[102.49194335937506,14.528901100158805],[102.48517608642595,14.521600723266602],[102.48300933837919,14.513070106506461],[102.48567962646513,14.508911132812443],[102.49688720703148,14.504090309143123],[102.51355743408214,14.505660057067871],[102.52368927001947,14.505510330200138],[102.54460144042974,14.502939224243221],[102.56172180175787,14.499331474304256],[102.58539581298851,14.496340751648063],[102.60398101806635,14.495281219482422],[102.61158752441418,14.491299629211426],[102.60868835449224,14.4733505249024],[102.60822296142578,14.463810920715275],[102.6063232421875,14.457390785217399],[102.60186004638683,14.453989982605094],[102.60070800781278,14.44612026214594],[102.59642028808594,14.444450378417969],[102.58703613281267,14.4449720382691],[102.58339691162126,14.442881584167537],[102.57115173339855,14.426389694213924],[102.56910705566423,14.410051345825252],[102.56450653076166,14.399270057678223],[102.5648803710937,14.390081405639648],[102.56314086914074,14.382910728454647],[102.56398010253906,14.374681472778263],[102.56923675537138,14.361982345580998],[102.576469421387,14.361982345580998],[102.58380126953142,14.357131958007812],[102.58792877197294,14.349531173706112],[102.58924102783232,14.343541145324764],[102.58902740478521,14.33335971832281],[102.60064697265648,14.32649135589611],[102.60568237304699,14.32069015502941],[102.6142196655274,14.321301460266227],[102.62222290039068,14.318561553955135],[102.63479614257835,14.32445144653326],[102.64195251464861,14.32457160949707],[102.6644592285158,14.316082000732479],[102.66771697998064,14.314009666442871],[102.67610168457048,14.304880142211914],[102.67900848388672,14.29944038391119],[102.68827056884777,14.297068595886174],[102.67951965332026,14.293530464172363],[102.6703491210937,14.288460731506348],[102.66232299804699,14.28179931640625],[102.65109252929682,14.278180122375602],[102.64022827148432,14.272760391235408],[102.62454986572294,14.262841224670524],[102.61222839355469,14.252350807190055],[102.59876251220709,14.238331794738883],[102.58979797363287,14.234420776367301],[102.58029937744169,14.225690841674862],[102.57150268554716,14.220390319824219],[102.55658721923851,14.215410232543888],[102.55068969726568,14.21536922454834],[102.54363250732428,14.202920913696346],[102.54033660888672,14.200499534606934],[102.52017974853521,14.19917106628418],[102.51412963867199,14.199541091919059],[102.5100860595706,14.196450233459586],[102.50630950927746,14.188320159912223],[102.4989929199221,14.18583202362072],[102.4899673461914,14.187380790710563],[102.48074340820324,14.197271347045955],[102.47686004638695,14.198381423950309],[102.4707870483399,14.190540313720703],[102.45598602294939,14.192781448364258],[102.4514770507813,14.189069747924862],[102.4502563476562,14.183820724487418],[102.44239807128935,14.172268867492733],[102.44004058837896,14.161860466003418],[102.43530273437506,14.152058601379451],[102.43345642089838,14.150860786437988],[102.43045806884766,14.151211738586369],[102.42421722412132,14.156462669372559],[102.42011260986322,14.153109550476074],[102.41388702392578,14.15388011932373],[102.40847015380854,14.152380943298454],[102.40188598632818,14.14458179473877],[102.39170837402361,14.143342018127441],[102.38198089599626,14.145839691162053],[102.37648010253906,14.150650978088436],[102.36556243896479,14.163399696350154],[102.35994720459007,14.16272068023693],[102.36260986328148,14.149491310119686],[102.35903167724638,14.135490417480469],[102.3591918945313,14.130539894104004],[102.35447692871105,14.128540992736873],[102.35144042968744,14.124382019042912],[102.3418731689456,14.124490737915039],[102.33448028564447,14.119389533996582],[102.32846069335943,14.126640319824332],[102.32536315917969,14.126351356506348],[102.31062316894526,14.119680404663143],[102.30258941650419,14.122209548950195],[102.29814910888695,14.12947082519537],[102.291313171387,14.133919715881461],[102.28411102294916,14.130260467529297],[102.27564239501976,14.127740859985352],[102.27304840087885,14.129359245300407],[102.27236938476568,14.142361640930233],[102.26924133300776,14.145711898803711],[102.2606582641601,14.143870353698844],[102.24983978271484,14.139570236206168],[102.24030303955078,14.142720222473201],[102.22184753417991,14.142609596252498],[102.21659851074213,14.145180702209586],[102.21299743652361,14.153261184692383],[102.21495056152344,14.1607408523559],[102.21401214599615,14.169561386108398],[102.20548248291044,14.174901008605957],[102.20124816894554,14.179969787597713],[102.19703674316412,14.189049720764274],[102.19342803955101,14.193610191345215],[102.18717193603544,14.194741249084586],[102.18329620361334,14.193470954895076],[102.17726898193388,14.188559532165584],[102.1762619018557,14.182139396667537],[102.17331695556658,14.179349899292049],[102.16874694824236,14.17091178894043],[102.16883850097662,14.162890434265194],[102.1729125976562,14.156720161438102],[102.16934204101562,14.141981124877987],[102.16741180419939,14.14003944396984],[102.15421295166027,14.136141777038574],[102.13865661621094,14.135890960693473],[102.13298034667974,14.137579917907715],[102.12409973144526,14.145880699157829],[102.10817718505882,14.14956092834484],[102.10106658935547,14.154818534851074],[102.08509063720726,14.160280227661076],[102.07640838623041,14.161841392517147],[102.06954956054682,14.165360450744743],[102.06149291992216,14.174469947814998],[102.04869842529325,14.183600425720272],[102.04328918457031,14.186109542846793],[102.03752899169939,14.194211959838867],[102.03302764892601,14.19699859619152],[102.02265167236345,14.199990272521973],[102.0163803100586,14.200189590454102],[102.00183868408197,14.207270622253418],[101.99301910400419,14.215152740478572],[101.97019958496111,14.22542858123785],[101.97043609619146,14.228289604187069],[101.98439788818365,14.232510566711426],[101.99079132080095,14.237579345703182],[101.98906707763689,14.2397718429566],[101.97059631347656,14.245629310607967],[101.95738220214838,14.247111320495605],[101.95300292968744,14.249988555908146],[101.95304107666033,14.253790855407772],[101.95800018310564,14.256230354309139],[101.97280883789091,14.258469581604118],[101.97644042968761,14.263621330261287],[101.97753906250006,14.26906967163086],[101.98284149169928,14.271991729736385],[101.98416137695312,14.28157997131359],[101.98811340332048,14.284680366516227],[101.99488067626976,14.28351974487316],[102.00070190429705,14.288060188293514],[102.00028228759777,14.30342102050787],[101.99659729003929,14.312150001525879],[101.98361206054693,14.312870979309139],[101.97557067871094,14.314848899841422],[101.96035766601585,14.317042350769157],[101.95780944824236,14.30781078338623],[101.94860839843744,14.300821304321403],[101.94310760498064,14.30338001251232],[101.93808746337919,14.312271118164062],[101.93547058105486,14.3193998336792],[101.93118286132818,14.32589054107666],[101.92426300048828,14.32963085174572],[101.91877746582054,14.329840660095215],[101.91268920898443,14.325071334838924],[101.9039916992187,14.325791358947868],[101.8961563110351,14.328920364379883],[101.8934173583985,14.319379806518612],[101.88875579834001,14.321291923522892],[101.87828063964844,14.322059631347713],[101.86026000976591,14.340231895446891],[101.84774780273455,14.3482408523559],[101.8410873413086,14.350651741027889],[101.84028625488276,14.356860160827694],[101.84355163574236,14.36255073547369],[101.83287811279314,14.36173057556158],[101.82634735107416,14.350909233093262],[101.81223297119135,14.346570014953613],[101.80230712890636,14.354649543762264],[101.79641723632807,14.357440948486385],[101.78962707519537,14.358040809631461],[101.78134918212885,14.355241775512695],[101.78079986572283,14.349651336669979],[101.77185821533203,14.34692096710205],[101.76293945312523,14.342139244079704],[101.75440979003935,14.343729972839412],[101.75016021728538,14.346809387207031],[101.74819183349626,14.339110374450797],[101.75195312500011,14.323370933532772],[101.74923706054693,14.31736087799078],[101.74971008300798,14.313240051269531],[101.74240112304716,14.306550979614371],[101.73927307128912,14.3103408813476],[101.72992706298834,14.31681060791027],[101.72048187255871,14.32649135589611],[101.71311950683594,14.330880165100154],[101.70983886718767,14.335430145263615],[101.70022583007841,14.344940185546875],[101.69428253173851,14.353842735290527],[101.68472290039068,14.362981796264648],[101.681640625,14.364680290222225],[101.6645202636721,14.382500648498535],[101.65579223632841,14.390911102295036],[101.64923095703125,14.39188098907482],[101.6502075195313,14.401629447937012],[101.6444168090822,14.406591415405387],[101.63629150390648,14.404730796813908],[101.63111877441412,14.405740737915153],[101.62892150878918,14.411580085754395],[101.62171936035173,14.414422035217342],[101.62075042724604,14.416911125183105],[101.62354278564459,14.426401138305664],[101.60665893554705,14.434880256652832],[101.59789276123064,14.436981201171989],[101.58658599853527,14.436989784240836],[101.577377319336,14.434111595153752],[101.56880187988287,14.433080673217887],[101.54910278320318,14.434359550476188],[101.54637908935564,14.431791305541935],[101.5429916381836,14.42411994934082],[101.53566741943354,14.423280715942496],[101.529052734375,14.425389289856014],[101.511039733887,14.433300018310547],[101.50431823730474,14.438501358032283],[101.49320983886719,14.451279640197868],[101.48725891113298,14.461921691894588],[101.48178863525396,14.46123123168951],[101.47515869140653,14.457059860229549],[101.47152709960943,14.45829105377203],[101.46109008789057,14.455510139465389],[101.43770599365234,14.44444274902338],[101.43939208984392,14.442041397094727],[101.43786621093767,14.436661720275879],[101.44351959228544,14.426510810852108],[101.44864654541044,14.42127990722662],[101.44272613525396,14.413380622863826],[101.4403915405274,14.400560379028434],[101.43383789062517,14.388422012329102],[101.4243392944336,14.38247108459484],[101.4188995361331,14.38786983489996],[101.41451263427763,14.395780563354492],[101.40792846679688,14.403149604797477],[101.39907836914091,14.407160758972168],[101.39697265625028,14.417329788208065],[101.38984680175787,14.421710968017578],[101.38233184814447,14.422109603881836],[101.38314056396484,14.427671432495117],[101.38169097900396,14.432691574096737],[101.36685943603527,14.444380760192985],[101.36508178710943,14.447992324829158],[101.36009979248053,14.448419570922908],[101.35372924804705,14.452791213989315],[101.34453582763683,14.454170227050724],[101.33937072753935,14.460062026977596],[101.33364105224638,14.464289665222282],[101.33043670654291,14.464289665222282],[101.32392120361357,14.468179702758789],[101.3134307861331,14.47084045410162],[101.30768585205084,14.483780860900879],[101.30818176269531,14.493431091308707],[101.3060607910158,14.497229576110954],[101.30153656005865,14.495881080627498],[101.29399871826183,14.489421844482422],[101.2855072021485,14.488731384277344],[101.2845230102539,14.496211051940918],[101.28578186035185,14.500120162963867],[101.28231811523443,14.503160476684627],[101.27906799316412,14.510831832885742],[101.27397918701166,14.511079788208008],[101.26908874511719,14.505631446838493],[101.26847076416033,14.502281188964844],[101.26000976562528,14.495850563049373],[101.25234985351585,14.492940902710018],[101.24922943115251,14.487511634826774],[101.24639892578125,14.488551139831657],[101.24263000488287,14.478340148925895],[101.23593902587913,14.489690780639705],[101.23123931884777,14.493941307067928],[101.22606658935575,14.502401351928711],[101.21965789794939,14.505660057067871],[101.21259307861345,14.517051696777457],[101.19861602783232,14.525821685791016],[101.19766235351591,14.529740333557129],[101.190971374512,14.528929710388184],[101.18598175048834,14.53295993804926],[101.18588256835955,14.538530349731445],[101.18302917480486,14.546039581298828],[101.18550109863298,14.549630165100154],[101.19010925292969,14.550990104675293],[101.19493103027366,14.55615043640131],[101.1962509155274,14.560420989990291],[101.20260620117216,14.565300941467342],[101.2012557983399,14.568001747131461],[101.20693206787115,14.575289726257381],[101.20789337158209,14.579262733459586],[101.21659088134783,14.585610389709416],[101.21597290039091,14.590531349182243],[101.21079254150396,14.595269203186092],[101.21144866943376,14.59766006469738],[101.20596313476562,14.607510566711426],[101.20870208740263,14.61067199707037],[101.20600891113287,14.61383056640625],[101.20607757568354,14.624711036682072],[101.20983123779303,14.629481315612907],[101.20773315429693,14.633200645446891],[101.20607757568354,14.642401695251408],[101.2066726684572,14.652429580688477],[101.20439910888689,14.657179832458553],[101.201469421387,14.668130874633846],[101.20362854003923,14.6746702194215],[101.20213317871094,14.688221931457576],[101.19683074951178,14.70128059387207],[101.18904113769537,14.71098995208746],[101.19094848632818,14.712791442871037],[101.18730926513695,14.721071243286133],[101.19229888916044,14.723869323730412],[101.19519042968761,14.7296018600465],[101.19313049316423,14.733050346374625],[101.19608306884788,14.738570213317871],[101.19122314453142,14.743860244751033],[101.19048309326189,14.747030258178825],[101.19519805908214,14.749700546264762],[101.19935607910185,14.748261451721305],[101.19986724853521,14.757610321044979],[101.20361328124994,14.759781837463379],[101.2162704467774,14.754881858825797],[101.21833801269531,14.7454710006715],[101.22441864013689,14.742220878601188],[101.23320770263689,14.731550216674862],[101.23599243164091,14.733130455017204],[101.2425765991211,14.73262977600109],[101.24716949462896,14.730569839477653],[101.26145935058594,14.72911167144781],[101.26374816894531,14.730510711669922],[101.27545928955107,14.724370956421012],[101.28160858154291,14.72428035736084],[101.2847518920899,14.728270530700684],[101.28495025634771,14.744039535522404],[101.28865051269543,14.742130279541016],[101.29096221923822,14.736861228942871],[101.29509735107428,14.73418045043951],[101.30084991455107,14.735830307006779],[101.30483245849638,14.739541053771973],[101.30407714843778,14.749970436096305],[101.3093872070313,14.757189750671387],[101.31188201904303,14.756500244140625],[101.32154846191406,14.75853061676031],[101.32621002197294,14.757122039795036],[101.33618164062517,14.76377010345459],[101.34001159667986,14.771149635315055],[101.33683776855491,14.781620979309082],[101.33943176269548,14.785170555114803],[101.34829711914068,14.786739349365234],[101.35230255126959,14.793610572814998],[101.36113739013683,14.798401832580623],[101.37905120849638,14.805620193481502],[101.38910675048851,14.811181068420467],[101.39765167236328,14.817420959472713],[101.40685272216803,14.828071594238281],[101.40957641601574,14.834250450134391],[101.41718292236357,14.843241691589412],[101.42327880859403,14.842810630798454],[101.43003082275408,14.847931861877441],[101.45272827148455,14.857121467590275],[101.45568847656256,14.863349914550781],[101.45368957519548,14.865141868591422],[101.45501708984392,14.878300666809082],[101.45278930664068,14.885410308837947],[101.45226287841803,14.892789840698356],[101.44912719726562,14.907499313354435],[101.45075225830107,14.911000251770076],[101.44577789306646,14.919460296630803],[101.44603729248041,14.922669410705566],[101.44169616699219,14.926049232483024],[101.43756866455084,14.942880630493107],[101.43524932861334,14.944330215454158],[101.43183898925787,14.956471443176383],[101.4347610473634,14.960330009460506],[101.4346771240235,14.965900421142635],[101.4304275512697,14.97665119171154],[101.43158721923828,14.981669425964355],[101.4285812377932,14.98428058624279],[101.42433166503906,14.993187904358024],[101.42243194580078,15.001951217651367],[101.42601776123064,15.010420799255428],[101.42164611816423,15.016501426696834],[101.41815185546903,15.029940605163574],[101.41512298583979,15.034449577331486],[101.41655731201178,15.040011405944824],[101.41326904296875,15.043060302734432],[101.41465759277366,15.044380187988338],[101.40965270996094,15.055770874023438],[101.40702056884771,15.057580947876033],[101.40239715576172,15.067390441894531],[101.39907073974638,15.09372997283947],[101.4010314941408,15.099710464477539],[101.395980834961,15.121699333190975],[101.39128112792963,15.129011154174862],[101.39359283447283,15.134501457214412],[101.3932189941408,15.143850326538086],[101.39546966552746,15.150122642517033],[101.39055633544939,15.15641117095953],[101.38905334472656,15.164510726928768],[101.38529968261724,15.167011260986442],[101.38252258300776,15.175440788269043],[101.378471374512,15.177839279174862],[101.37638092041044,15.182112693786678],[101.37574005126959,15.188982009887695],[101.36759948730497,15.190679550171012],[101.36682128906278,15.199750900268555],[101.3685760498048,15.205438613891658],[101.36740112304716,15.213151931762638],[101.36865234375,15.228910446166992],[101.36624145507818,15.234371185302678],[101.36176300048845,15.237921714782715],[101.35785675048857,15.250140190124625],[101.36443328857439,15.251051902770996],[101.36799621582043,15.246949195861816],[101.36785888671892,15.242601394653377],[101.374755859375,15.242960929870605],[101.37786102294928,15.239692687988338],[101.38691711425798,15.237201690673942],[101.3875579833985,15.241690635681096],[101.38421630859386,15.2616605758667],[101.38446044921892,15.270079612732047],[101.3819122314456,15.288881301879883],[101.38188171386724,15.30222129821783],[101.38339233398443,15.31515026092535],[101.3866729736331,15.329290390014705],[101.38931274414068,15.32168006896967],[101.39163970947294,15.319581031799316],[101.40213775634777,15.317791938781738],[101.4072189331057,15.314051628112907],[101.41333007812523,15.315292358398551],[101.41139221191412,15.322390556335506],[101.41773986816412,15.324710845947322],[101.4193267822265,15.332071304321346],[101.42238616943354,15.33605003356945],[101.42382812500006,15.343102455139217],[101.42201232910173,15.348839759826717],[101.42745971679693,15.358799934387207],[101.43508911132818,15.368930816650447],[101.44040679931663,15.370490074157715],[101.44464111328153,15.368099212646484],[101.45881652832026,15.369119644165153],[101.46456146240251,15.36747932434082],[101.47599792480486,15.366991043090877],[101.49430084228533,15.35608100891119],[101.50286102294916,15.357542037963924],[101.50675201416016,15.361270904541016],[101.52014160156273,15.3697509765625],[101.52271270751947,15.373709678649902],[101.52900695800776,15.372541427612305],[101.54187774658226,15.37424087524414],[101.5486297607423,15.373440742492619],[101.55901336669922,15.373840332031364],[101.56743621826195,15.370450973510742],[101.57247924804682,15.372261047363338],[101.59044647216814,15.371800422668514],[101.59317779541021,15.375411033630371],[101.5990829467774,15.377840042114315],[101.61334228515642,15.36769104003912],[101.61792755126953,15.362062454223746],[101.62145233154325,15.361090660095158],[101.62943267822288,15.365409851074276],[101.63709259033232,15.381621360778865],[101.63874053955078,15.389460563659668],[101.64373779296898,15.39475059509283],[101.6509628295899,15.396219253540153],[101.6602783203125,15.39996147155756],[101.66532897949247,15.399250030517635],[101.67389678955084,15.395780563354435],[101.68235778808588,15.39104080200201],[101.68821716308622,15.390020370483512],[101.70262908935547,15.393641471862793],[101.7100601196289,15.390291213989371],[101.71602630615257,15.389378547668514],[101.72322845458984,15.383179664611873],[101.73336791992193,15.380440711975098],[101.7431259155274,15.380829811096191],[101.76280975341825,15.378361701965446],[101.77149200439453,15.379861831665039],[101.7813186645509,15.383741378784293],[101.78771972656256,15.390860557556152],[101.79413604736345,15.402800559997672],[101.79920959472662,15.420110702514705],[101.80388641357439,15.424891471862736],[101.80867004394531,15.426451683044547],[101.82395172119146,15.412920951843262],[101.83306121826189,15.409871101379338],[101.84349822998058,15.410039901733512],[101.88046264648443,15.3858900070191],[101.88252258300787,15.38984203338623],[101.8973464965822,15.397731781005916],[101.9082260131836,15.412801742553711],[101.91513824462896,15.430959701538143],[101.92932128906278,15.438530921936149],[101.93090057373064,15.449660301208553],[101.93705749511724,15.452692031860465],[101.9453582763673,15.45100021362316],[101.95970916748064,15.451070785522575],[101.97425079345709,15.453920364379883],[101.98805236816435,15.460360527038517],[101.99794769287115,15.462789535522461],[102.00343322753912,15.456951141357365],[102.0112915039063,15.454300880432186],[102.02545166015653,15.466491699218807],[102.03469848632812,15.471611022949219],[102.03739929199224,15.47837066650402],[102.03414916992193,15.488690376281738],[102.03427886962908,15.497711181640625],[102.0429382324221,15.515339851379338],[102.04505157470709,15.527280807495174],[102.04400634765642,15.533040046692008],[102.04020690917986,15.54319095611578],[102.0452499389649,15.551140785217285],[102.0549087524414,15.569602012634277],[102.06365203857439,15.5798597335816],[102.06314086914068,15.587450027465877],[102.06822204589861,15.590519905090332],[102.07404327392584,15.607510566711426],[102.07431793212885,15.617410659790096],[102.07711791992216,15.62212944030773],[102.08241271972662,15.624331474304256],[102.08599090576172,15.621830940246582],[102.08995056152338,15.62463188171398],[102.08719635009788,15.628582000732536],[102.09114074707031,15.631950378417912],[102.1019668579101,15.629782676696891],[102.10730743408197,15.631702423095703],[102.10616302490229,15.63611030578619],[102.1093368530274,15.641691207885742],[102.11808013916021,15.644560813903809],[102.12166595458984,15.647371292114315],[102.12281799316406,15.651680946350098],[102.12799835205084,15.649411201477164],[102.12967681884766,15.657471656799373],[102.12755584716814,15.661351203918514],[102.13349151611328,15.670780181884766],[102.13855743408232,15.670250892639217],[102.142593383789,15.678400993347168],[102.1470870971682,15.684741973876953],[102.14414978027361,15.692641258239746],[102.14575958251959,15.700761795044002],[102.14501190185553,15.706250190734977],[102.15032958984398,15.705540657043457],[102.15431976318365,15.717790603637809],[102.15754699707037,15.723429679870605],[102.16240692138683,15.724480628967228],[102.16313171386724,15.728270530700684],[102.15653991699236,15.729470252990723],[102.15907287597662,15.740710258484],[102.16449737548857,15.736330032348576],[102.1703109741211,15.742959976196403],[102.17814636230474,15.743801116943473],[102.18148803710949,15.746530532836971],[102.18598175048834,15.739460945129338],[102.1890716552735,15.737751960754395],[102.19741821289068,15.738219261169434],[102.20252990722656,15.740979194641056],[102.2020187377932,15.747779846191406],[102.20487213134788,15.75541973114008],[102.20903778076172,15.752520561218375],[102.21459197998053,15.753141403198299],[102.21597290039091,15.75012111663824],[102.22193145751947,15.750880241394043],[102.2284927368164,15.747369766235465],[102.23150634765642,15.742871284484977],[102.24411010742188,15.750309944152946],[102.25203704834013,15.749799728393555],[102.25219726562506,15.753190994262752],[102.24716186523438,15.755581855773983],[102.25279235839872,15.76251029968273],[102.25306701660173,15.768621444702262],[102.25762939453142,15.769278526306152],[102.25824737548828,15.779731750488395],[102.26509857177734,15.780151367187443],[102.27185058593756,15.78335952758789],[102.27900695800798,15.77985000610363],[102.28074645996094,15.782501220703125],[102.28691101074224,15.782191276550293],[102.28676605224621,15.785671234130916],[102.29512786865263,15.784269332885856],[102.29692077636736,15.78735065460205],[102.30367279052757,15.788501739501953],[102.30935668945312,15.792108535766658],[102.30921936035162,15.79790115356451],[102.3139419555664,15.798750877380428],[102.31385040283214,15.806281089782715],[102.31945037841797,15.806159973144531],[102.32894134521479,15.801900863647461]]]},"properties":{"ID_0":228,"ISO":"TH-30","NAME_0":"Thailand","ID_1":29,"NAME_1":"Nakhon Ratchasima","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"นครราชสีมา","VARNAME_1":"Khorat|Nagara Rajasima|Nakaun Rachasima"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.77157592773449,15.998451232910213],[100.77687072753912,15.998880386352596],[100.77876281738287,15.996101379394531],[100.78498840332031,15.993471145629883],[100.78379058837885,15.990171432495117],[100.78559112548834,15.981900215148926],[100.7784576416015,15.972340583801213],[100.77762603759771,15.959621429443416],[100.77025604248041,15.942361831665039],[100.7674560546875,15.93732929229742],[100.76846313476568,15.93058109283453],[100.76436614990251,15.922600746154899],[100.76526641845732,15.909970283508244],[100.77063751220697,15.900800704956168],[100.77516174316435,15.89690017700201],[100.78234100341797,15.89619064331066],[100.78703308105463,15.892451286315975],[100.79516601562506,15.891579627990723],[100.80516052246088,15.887022018432674],[100.81233215332037,15.879140853881836],[100.8128433227539,15.872179985046387],[100.81034851074236,15.861140251159668],[100.81302642822266,15.855710983276424],[100.80889129638695,15.849210739135742],[100.81062316894537,15.844090461731014],[100.80441284179705,15.830890655517635],[100.79850769042986,15.8241605758667],[100.8051071166995,15.803090095520076],[100.82041931152338,15.752101898193416],[100.82109069824241,15.737891197204647],[100.82109069824241,15.716682434082031],[100.82035064697271,15.711640357971248],[100.83196258544945,15.707091331481934],[100.83866119384771,15.708150863647575],[100.84716033935564,15.705940246582145],[100.85009765625006,15.694310188293457],[100.84691619873058,15.685408592224178],[100.8343811035158,15.678731918335018],[100.82852935791038,15.674461364746207],[100.82933807373075,15.664650917053223],[100.82518005371088,15.659621238708496],[100.82771301269531,15.644061088562012],[100.82235717773455,15.634589195251408],[100.82010650634766,15.628011703491268],[100.82688140869152,15.61195087432867],[100.81764221191412,15.600231170654297],[100.81352996826183,15.599470138549748],[100.81014251709001,15.594360351562614],[100.81086730957043,15.59105110168457],[100.81899261474632,15.584140777588004],[100.81891632080095,15.581669807434196],[100.81044006347662,15.571820259094238],[100.8144226074221,15.568781852722225],[100.80739593505888,15.558459281921387],[100.80558776855469,15.55360031127941],[100.7993927001956,15.547430992126408],[100.79074859619146,15.536140441894588],[100.7840576171875,15.535950660705623],[100.7763977050783,15.532479286193848],[100.7702713012697,15.532159805297908],[100.76104736328153,15.5215101242066],[100.76094818115251,15.51802062988287],[100.75676727294922,15.513811111450195],[100.74666595458984,15.512261390686035],[100.75215911865251,15.507561683654899],[100.7530899047851,15.503952026367301],[100.76512908935564,15.50117111206066],[100.77136993408232,15.495500564575195],[100.77220153808611,15.485289573669434],[100.76996612548834,15.482190132141113],[100.77059173584013,15.470999717712402],[100.77304840087896,15.46565055847168],[100.76613616943365,15.458312034607047],[100.76003265380865,15.457290649414062],[100.74954986572271,15.45149040222168],[100.73655700683594,15.448930740356445],[100.7342758178711,15.446400642395076],[100.71877288818376,15.44580173492443],[100.71203613281278,15.440328598022518],[100.70374298095703,15.439250946044922],[100.69828033447271,15.440160751342887],[100.68643188476585,15.430959701538143],[100.67726135253912,15.429459571838379],[100.66573333740229,15.429011344909725],[100.65682983398438,15.424480438232536],[100.6506729125976,15.41849136352539],[100.64450836181669,15.415279388427791],[100.64668273925798,15.410161018371639],[100.6446380615235,15.406670570373649],[100.64726257324236,15.402629852294922],[100.64402008056658,15.394881248474121],[100.64305877685564,15.385198593139705],[100.6390686035158,15.371259689331112],[100.63614654541027,15.365670204162711],[100.63492584228521,15.358289718627987],[100.63037109375006,15.342650413513184],[100.63008117675798,15.335871696472168],[100.63562011718767,15.32710170745861],[100.63552093505865,15.321261405944938],[100.63030242919922,15.322031021118278],[100.6234359741211,15.317570686340332],[100.6244125366211,15.314110755920467],[100.61701202392601,15.307800292968807],[100.61409759521484,15.300821304321346],[100.61293792724626,15.293430328369197],[100.6071166992188,15.292310714721737],[100.594711303711,15.286669731140137],[100.59234619140625,15.28687953948969],[100.58563995361345,15.281521797180176],[100.58354187011736,15.274880409240836],[100.58032989501953,15.27403926849371],[100.57855224609386,15.26754093170166],[100.58068847656267,15.265821456909237],[100.59094238281261,15.266330718994197],[100.59510803222685,15.257860183715877],[100.59075164794933,15.25013065338129],[100.58898925781256,15.242890357971191],[100.5918731689456,15.235060691833496],[100.59256744384771,15.228071212768668],[100.58770751953136,15.22389125823986],[100.56867980957048,15.221320152282715],[100.56906890869158,15.218720436096191],[100.56183624267578,15.21450138092041],[100.56082153320307,15.21033000946045],[100.55677032470732,15.204792022705021],[100.55261993408197,15.203440666198674],[100.54450225830084,15.19635009765625],[100.5399932861331,15.196820259094181],[100.5354461669923,15.189059257507381],[100.53174591064476,15.178500175476074],[100.52729797363298,15.177209854126033],[100.51403045654303,15.167470932006779],[100.50614166259766,15.15559005737299],[100.50460815429688,15.144230842590332],[100.51081085205107,15.13319110870367],[100.50785827636719,15.129581451416072],[100.50016784667963,15.126540184020996],[100.49405670166027,15.120520591735954],[100.48262023925776,15.114969253540039],[100.47463226318376,15.107970237731877],[100.46776580810564,15.114280700683707],[100.46521759033232,15.11282920837408],[100.4508895874024,15.09529972076416],[100.444107055664,15.09104061126709],[100.4350509643557,15.07733154296875],[100.42941284179682,15.065281867981014],[100.42327880859403,15.055871009826717],[100.4101867675783,15.06676959991455],[100.39671325683616,15.080121040344238],[100.38696289062506,15.087401390075684],[100.38224029541021,15.092350959777832],[100.37119293212919,15.094710350036678],[100.35443115234386,15.100289344787654],[100.35096740722685,15.105050086975154],[100.34397125244135,15.109661102294922],[100.3546524047851,15.117829322814998],[100.3473663330081,15.127201080322266],[100.34754180908232,15.145970344543514],[100.31701660156278,15.16366958618164],[100.31160736083984,15.168880462646541],[100.30391693115229,15.172800064086971],[100.29844665527344,15.181120872497615],[100.2960662841798,15.192790031433105],[100.29103851318382,15.195921897888184],[100.28861236572294,15.211750030517635],[100.28398895263695,15.230819702148551],[100.27485656738287,15.237139701843319],[100.2747802734375,15.24038124084484],[100.27039337158203,15.24805927276617],[100.2707595825197,15.25613021850586],[100.2677612304688,15.264531135559025],[100.26692199707048,15.273539543151912],[100.26394653320318,15.276680946350098],[100.26338195800804,15.287561416625977],[100.25580596923857,15.290740966796875],[100.25611114501959,15.29601001739502],[100.25009918212902,15.301591873169059],[100.24913787841825,15.306409835815487],[100.23964691162126,15.321130752563477],[100.22091674804699,15.34404087066656],[100.21275329589861,15.350262641906795],[100.20202636718778,15.36393070220953],[100.18889617919916,15.369701385498104],[100.17008972167974,15.37363052368164],[100.16751861572277,15.378581047058105],[100.15946197509771,15.385040283203182],[100.15035247802746,15.388980865478572],[100.13925933837919,15.387521743774414],[100.14176177978527,15.395351409912053],[100.14076232910162,15.399521827697754],[100.13606262207026,15.403221130371207],[100.13172912597656,15.402880668640194],[100.12700653076195,15.409900665283203],[100.1160125732423,15.41157054901123],[100.10334014892584,15.416589736938533],[100.09771728515636,15.421079635620174],[100.07862091064482,15.42527961730957],[100.05825042724604,15.423089981079215],[100.05857849121122,15.430321693420524],[100.06466674804693,15.438330650329533],[100.06735229492216,15.44890117645275],[100.0667572021485,15.457232475280819],[100.05898284912121,15.457060813903809],[100.05017089843756,15.459401130676383],[100.04164886474604,15.464310646057072],[100.03353881835943,15.47235107421875],[100.0270385742188,15.484469413757381],[100.02614593505888,15.491190910339412],[100.02733612060558,15.50427055358898],[100.02535247802757,15.506561279296932],[100.01302337646496,15.5034818649292],[100.00871276855469,15.503340721130485],[100.00643920898443,15.498770713806266],[100.01100158691406,15.493129730224666],[100.01059722900408,15.488711357116756],[99.99945068359403,15.481850624084586],[99.99462890625006,15.485490798950309],[99.99256896972662,15.490281105041504],[99.9874877929687,15.489530563354549],[99.98320007324241,15.49164199829113],[99.98178863525408,15.495940208435002],[99.96211242675776,15.502511024475098],[99.95912170410156,15.505510330200309],[99.94867706298851,15.498519897460994],[99.94586944580107,15.502470016479549],[99.94683074951183,15.514691352844295],[99.94433593750028,15.519160270690918],[99.94464874267584,15.524930953979492],[99.94123077392601,15.531938552856502],[99.94108581542997,15.545430183410758],[99.9418487548831,15.560111999511719],[99.94380950927729,15.57145023345953],[99.94165039062528,15.57693195343029],[99.93929290771484,15.595801353454647],[99.94261169433622,15.602779388427791],[99.94226837158214,15.606649398803768],[99.94449615478521,15.617301940917969],[99.94380950927729,15.625801086425895],[99.94110107421903,15.631501197814998],[99.93833923339844,15.645840644836426],[99.93696594238298,15.657331466674805],[99.93766021728544,15.666351318359375],[99.93596649169933,15.672450065612736],[99.92752075195318,15.674151420593375],[99.9229125976563,15.672290802001896],[99.90801239013672,15.668812751770076],[99.89952850341808,15.663661956787223],[99.88607025146484,15.660290718078556],[99.8797607421875,15.659639358520621],[99.86724090576195,15.654621124267578],[99.86550903320335,15.647061347961483],[99.86277770996111,15.641921043396053],[99.8652420043947,15.639752388000488],[99.86582946777361,15.627642631530705],[99.86315917968767,15.617231369018555],[99.84984588623053,15.620702743530273],[99.82672119140642,15.630241394042912],[99.81109619140625,15.638410568237305],[99.79650115966825,15.642370223999137],[99.7940979003908,15.647919654846248],[99.79022979736357,15.651881217956543],[99.76605224609392,15.661111831665096],[99.7596206665039,15.66985034942627],[99.75380706787121,15.674580574035758],[99.74594879150396,15.678230285644588],[99.73811340332054,15.686309814453068],[99.73078918457048,15.68812179565424],[99.72174835205107,15.68224143981945],[99.70674133300798,15.685981750488281],[99.69896697998047,15.682059288025016],[99.68649291992199,15.678000450134334],[99.68469238281273,15.675930976867619],[99.6705322265625,15.669429779052678],[99.66127777099638,15.669122695922908],[99.6575088500976,15.66279125213623],[99.64643859863293,15.652409553527889],[99.63468170166016,15.644831657409668],[99.62925720214855,15.639451026916504],[99.62078094482428,15.635161399841252],[99.61013031005882,15.633559226989803],[99.60485076904308,15.630371093750114],[99.5963363647461,15.628070831298828],[99.59175109863281,15.622249603271541],[99.58699035644531,15.619421958923397],[99.58109283447266,15.6117200851441],[99.57373809814482,15.606451034545955],[99.57215118408209,15.600709915161076],[99.56665802001959,15.592799186706543],[99.5505599975586,15.587351799011344],[99.5425872802735,15.581669807434196],[99.53247070312506,15.572440147399902],[99.52761077880871,15.572240829467773],[99.5231323242188,15.567509651184139],[99.51438140869163,15.56156063079834],[99.50521087646507,15.561160087585506],[99.4955520629884,15.568570137023926],[99.48745727539068,15.566390991210938],[99.47956085205072,15.562481880187988],[99.47257232666021,15.562801361083928],[99.47107696533226,15.565740585327148],[99.4692687988283,15.582611083984375],[99.46553802490257,15.586469650268668],[99.45699310302763,15.580769538879338],[99.4543075561524,15.581049919128532],[99.45111083984386,15.588712692260799],[99.44396972656256,15.591311454773006],[99.44207000732428,15.595570564270076],[99.4350280761721,15.598469734192008],[99.43416595458979,15.600650787353572],[99.42675781250017,15.604497909545898],[99.42823791503918,15.606841087341365],[99.42193603515636,15.613000869751033],[99.413070678711,15.613739967346248],[99.40609741210949,15.61571979522705],[99.40148925781278,15.619380950927791],[99.39083862304699,15.623689651489315],[99.37931060791021,15.623700141906738],[99.37509155273438,15.630151748657227],[99.37634277343761,15.634810447692871],[99.3716125488283,15.64142036437994],[99.3675918579101,15.651689529418945],[99.37001037597662,15.656430244445914],[99.36927032470732,15.66244029998785],[99.3635864257812,15.667591094970703],[99.36015319824213,15.675481796264705],[99.35540771484392,15.679330825805664],[99.34519195556663,15.683500289917049],[99.34098052978521,15.683399200439453],[99.3339233398438,15.689701080322266],[99.32612609863304,15.689781188964844],[99.32005310058622,15.687561035156307],[99.31352996826195,15.692449569702205],[99.29673004150396,15.692159652710075],[99.28864288330095,15.697018623352108],[99.2884063720706,15.703480720520076],[99.28420257568388,15.705821037292594],[99.27731323242193,15.71532058715826],[99.26893615722685,15.717511177062931],[99.2535705566408,15.718461990356445],[99.24887847900413,15.72045993804943],[99.24167633056669,15.732320785522518],[99.24131774902355,15.739939689636344],[99.23522186279291,15.747659683227596],[99.23020172119146,15.746710777282829],[99.22611236572266,15.75714111328125],[99.22054290771479,15.760190010070914],[99.21714019775408,15.764771461486816],[99.20626068115251,15.76449108123785],[99.19554901123041,15.775691032409668],[99.18518829345709,15.78026008605957],[99.17620086669945,15.780989646911678],[99.16832733154297,15.77616024017334],[99.16586303710938,15.776801109314022],[99.16491699218756,15.788400650024357],[99.1589431762697,15.791220664978027],[99.15148162841808,15.791160583496207],[99.14887237548828,15.794421195983944],[99.13626861572283,15.795410156249943],[99.13655853271513,15.792450904846191],[99.13175201416038,15.805269241333065],[99.1239776611331,15.813192367553768],[99.10826873779303,15.817400932312125],[99.10356140136747,15.820281982421932],[99.10404968261719,15.82594108581543],[99.0970382690432,15.83057022094738],[99.09542846679705,15.835439682006836],[99.09726715087919,15.840691566467285],[99.09867858886736,15.852311134338379],[99.09419250488304,15.857329368591422],[99.09729766845714,15.869779586791992],[99.09587097167974,15.872830390930176],[99.08899688720703,15.877640724182072],[99.08625793457026,15.88350963592535],[99.08878326416016,15.884849548339957],[99.09622955322266,15.881679534912223],[99.10925292968773,15.89503097534191],[99.11657714843761,15.899311065673828],[99.12906646728521,15.910990715026912],[99.13256072998075,15.907611846923942],[99.13968658447283,15.904711723327694],[99.1481628417971,15.907649993896428],[99.1571578979495,15.919530868530217],[99.16221618652344,15.923600196838322],[99.1743621826173,15.927761077880916],[99.17665100097668,15.933231353759766],[99.18755340576189,15.928131103515739],[99.19271087646501,15.932501792907829],[99.19239807128912,15.936709403991756],[99.20018768310547,15.938770294189453],[99.20559692382818,15.936861991882324],[99.20744323730469,15.946610450744686],[99.21037292480497,15.947731018066463],[99.21409606933594,15.939229965209961],[99.22030639648466,15.93672084808344],[99.22138214111334,15.943780899047908],[99.22412109375028,15.943301200866642],[99.22740173339838,15.935630798339844],[99.23223876953125,15.932870864868221],[99.23509216308594,15.928490638732967],[99.25148010253906,15.91760063171398],[99.26133728027355,15.913190841674918],[99.26680755615257,15.9075803756715],[99.27207183837908,15.91113090515131],[99.2740325927735,15.904040336608887],[99.2792282104495,15.90198040008545],[99.28131866455084,15.898089408874455],[99.29241943359386,15.894001007080135],[99.29238128662115,15.899499893188533],[99.2979125976563,15.908081054687614],[99.30219268798845,15.907340049743596],[99.30619049072283,15.903751373291072],[99.31154632568376,15.905241012573242],[99.31115722656267,15.917780876159668],[99.31881713867188,15.916249275207633],[99.32254028320341,15.925970077514762],[99.32830047607416,15.920460700988713],[99.32711791992216,15.916081428527775],[99.32972717285162,15.911801338195858],[99.33329772949236,15.911439895629883],[99.34680938720697,15.920912742614746],[99.35752868652344,15.926209449768123],[99.36917877197266,15.917901992797795],[99.37751007080072,15.915170669555721],[99.38318634033232,15.917181968689022],[99.394760131836,15.914871215820312],[99.40982055664068,15.910570144653377],[99.41860198974615,15.91162109375],[99.42489624023443,15.918940544128418],[99.4304962158206,15.914850234985295],[99.43232727050787,15.907951354980412],[99.43656921386724,15.909470558166618],[99.44696807861345,15.901439666748104],[99.45182037353538,15.904420852661133],[99.46128845214844,15.904740333557129],[99.46804809570318,15.899629592895508],[99.47780609130888,15.901301383972282],[99.47708892822283,15.905370712280387],[99.48208618164062,15.909601211547908],[99.47914123535185,15.916172027587947],[99.48001098632818,15.921211242675838],[99.49408721923845,15.92356109619152],[99.50215911865257,15.927460670471191],[99.50998687744163,15.923540115356502],[99.5188980102539,15.923041343688965],[99.5221786499024,15.92426967620861],[99.52744293212908,15.91760063171398],[99.53070831298845,15.921931266784611],[99.53582000732416,15.924189567566032],[99.54257965087896,15.92201137542736],[99.54908752441429,15.916851043701172],[99.55345916748053,15.915850639343262],[99.55616760253912,15.90658092498785],[99.56134796142607,15.906690597534237],[99.57054901123064,15.904550552368107],[99.57834625244152,15.904861450195426],[99.57894897460955,15.901069641113224],[99.58394622802734,15.897489547729549],[99.59609985351557,15.897080421447868],[99.6056289672851,15.89813041687023],[99.60978698730497,15.89603137969982],[99.61241149902366,15.889459609985465],[99.61683654785185,15.88605976104742],[99.63059997558605,15.885000228881779],[99.63890838623053,15.878512382507324],[99.64427947998053,15.8709716796875],[99.65747070312528,15.857280731201286],[99.6687469482423,15.859240531921387],[99.68151092529325,15.864049911499023],[99.68525695800787,15.869750976562614],[99.69270324707054,15.872171401977539],[99.69774627685558,15.875721931457576],[99.70391082763672,15.874601364135799],[99.70864105224626,15.878130912780762],[99.71607208251947,15.8728408813476],[99.72482299804699,15.872241973876953],[99.73039245605486,15.86872863769537],[99.73172760009783,15.864959716796932],[99.73844146728516,15.858210563659782],[99.74314117431652,15.857050895691032],[99.7464599609375,15.864421844482422],[99.74849700927729,15.87501144409191],[99.75144958496116,15.880779266357422],[99.76332092285185,15.893260002136287],[99.77230834960949,15.899411201477108],[99.77348327636713,15.90391921997076],[99.77037048339872,15.912361145019531],[99.77014923095726,15.919530868530217],[99.78145599365263,15.923090934753361],[99.78726959228516,15.92720985412609],[99.79653167724621,15.921199798583928],[99.80668640136736,15.921441078186092],[99.80562591552757,15.931460380554313],[99.80805969238281,15.940190315246639],[99.81355285644548,15.943890571594352],[99.8256225585938,15.949039459228459],[99.82917785644526,15.958009719848633],[99.82975769042986,15.962989807128963],[99.84646606445318,15.978660583496207],[99.8484878540039,15.983681678771916],[99.84718322753912,15.999691009521541],[99.84281921386741,16.005849838256893],[99.84217834472673,16.00950050354004],[99.84574127197277,16.015689849853572],[99.85218048095709,16.020578384399414],[99.8683471679688,16.035829544067383],[99.87545776367193,16.041088104248104],[99.88858795166038,16.048330307006836],[99.89717864990257,16.051130294799748],[99.91397857666021,16.04705047607422],[99.92304229736345,16.047189712524528],[99.93396759033209,16.05154037475586],[99.93712615966791,16.055419921875],[99.9389572143557,16.062650680541992],[99.94277191162132,16.06879043579113],[99.95443725585966,16.0803604125976],[99.96862030029314,16.098709106445312],[99.98101043701189,16.110441207885856],[99.9895706176759,16.116430282592773],[99.99674224853538,16.12484169006359],[99.99993896484375,16.131341934204045],[100.01103973388695,16.14179039001465],[100.02031707763689,16.15314102172846],[100.03369140625,16.153949737548828],[100.0400314331057,16.159280776977596],[100.03186035156256,16.17184066772461],[100.02986907958984,16.177520751953125],[100.0241088867187,16.179740905761662],[100.02384185791021,16.18411254882824],[100.0285415649414,16.191480636596793],[100.03475952148449,16.194690704345817],[100.03849792480474,16.19225120544445],[100.0468521118164,16.190248489379996],[100.05039978027355,16.184970855713004],[100.05101013183611,16.179790496826286],[100.05737304687506,16.174890518188477],[100.07034301757818,16.173950195312557],[100.08091735839855,16.171289443969783],[100.08178710937506,16.165220260620117],[100.08834838867216,16.159049987793026],[100.09407806396496,16.155740737915153],[100.09407806396496,16.15104103088379],[100.08373260498053,16.134290695190373],[100.07977294921886,16.123638153076172],[100.08271789550781,16.118989944458008],[100.08785247802734,16.11488151550293],[100.09227752685553,16.114009857177848],[100.09664916992188,16.110099792480582],[100.09745025634788,16.105470657348633],[100.09575653076178,16.09837150573736],[100.10186767578153,16.09367942810053],[100.1055374145509,16.08679008483898],[100.11509704589861,16.0792293548584],[100.11094665527344,16.0738906860351],[100.11939239501976,16.059249877929688],[100.11901855468756,16.04581069946289],[100.1244277954101,16.038549423217717],[100.12857818603544,16.038351058959904],[100.13202667236357,16.03504943847662],[100.13260650634777,16.030458450317383],[100.12943267822266,16.028020858764762],[100.13260650634777,16.01826095581066],[100.1389465332033,16.00993919372553],[100.14399719238304,15.998061180114803],[100.14781188964866,15.993639945984],[100.15026855468756,15.987401962280387],[100.16265106201178,15.979210853576717],[100.16477966308616,15.972681045532227],[100.16160583496105,15.966650009155217],[100.16207122802734,15.959721565246696],[100.16969299316406,15.956630706787223],[100.17021179199213,15.953181266784782],[100.1770477294923,15.946990013122672],[100.17456817626964,15.93699169158947],[100.17838287353527,15.929951667785758],[100.1766967773437,15.92595195770258],[100.18028259277372,15.923192024230957],[100.18412780761713,15.926050186157283],[100.18775177001947,15.93325042724615],[100.19657135009766,15.930471420288086],[100.20397186279291,15.93330192565918],[100.20804595947271,15.930400848388672],[100.21599578857439,15.928520202636832],[100.2189331054688,15.921860694885368],[100.22792816162115,15.919430732727108],[100.22930908203136,15.92423057556158],[100.23574066162132,15.929850578308162],[100.23693847656261,15.942529678344727],[100.23998260498075,15.95691204071045],[100.24626159667997,15.959759712219181],[100.2557907104495,15.959759712219181],[100.26248931884794,15.956489562988338],[100.2636795043947,15.952389717102108],[100.26338195800804,15.940791130066032],[100.26880645751964,15.938559532165584],[100.2822875976563,15.945159912109375],[100.28536987304716,15.948941230773926],[100.2916183471682,15.950152397155875],[100.30065155029308,15.956259727478084],[100.30655670166027,15.956459999084473],[100.3109588623048,15.960069656372013],[100.31143188476568,15.96383094787609],[100.32534790039068,15.968070030212402],[100.32549285888689,15.98108196258545],[100.33235168457048,15.979411125183105],[100.3474731445313,15.972949981689453],[100.34477996826172,15.966239929199276],[100.33193206787121,15.938579559326172],[100.35045623779291,15.933459281921444],[100.35469818115234,15.933629989624137],[100.37232208251959,15.938669204712028],[100.37815856933594,15.939049720764103],[100.3877563476563,15.936511039733944],[100.39488983154291,15.932620048522892],[100.40454864501959,15.932111740112248],[100.40883636474626,15.929161071777344],[100.42056274414068,15.926280021667594],[100.42980194091791,15.927741050720329],[100.44341278076178,15.927790641784725],[100.4683074951173,15.924751281738281],[100.48049926757841,15.927160263061467],[100.49314880371111,15.930839538574162],[100.50817108154308,15.930061340331974],[100.51370239257824,15.932439804077205],[100.5206527709961,15.939270973205566],[100.53218841552763,15.940040588378906],[100.53617858886747,15.938411712646484],[100.53607940673828,15.932700157165641],[100.5302124023438,15.929361343383732],[100.52887725830084,15.921849250793457],[100.52128601074224,15.914830207824764],[100.52677154541021,15.91129016876232],[100.5308380126956,15.91907119750988],[100.53613281250023,15.923220634460563],[100.54318237304693,15.925650596618596],[100.5465393066408,15.92370891571045],[100.55278015136747,15.931191444397086],[100.5567474365235,15.930882453918514],[100.56265258789085,15.939351081848088],[100.56829071044939,15.94144058227539],[100.58319854736328,15.959721565246696],[100.59073638916044,15.962889671325684],[100.60729217529303,15.966641426086426],[100.62779998779314,15.977581024169979],[100.64244079589855,15.981631278991642],[100.65883636474638,15.988390922546444],[100.6664581298831,15.989061355590763],[100.68083953857439,15.987151145935115],[100.69422912597662,15.992100715637264],[100.70944976806658,15.995150566101188],[100.72818756103521,15.98750019073492],[100.74079132080101,15.988369941711369],[100.75699615478521,15.994310379028377],[100.77157592773449,15.998451232910213]]]},"properties":{"ID_0":228,"ISO":"TH-60","NAME_0":"Thailand","ID_1":30,"NAME_1":"Nakhon Sawan","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"นครสวรรค์","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.73666381835949,8.397220611572322],[100.73434448242216,8.39505386352539],[100.729721069336,8.39861202239996],[100.73416900634794,8.401944160461426],[100.73666381835949,8.397220611572322]]],[[[100.33666992187528,7.931944847107047],[100.32756805419916,7.9315710067748455],[100.32028198242216,7.92952919006359],[100.31967163085943,7.935070037841854],[100.31588745117216,7.936999797821045],[100.31147003173834,7.935689926147518],[100.30934906005882,7.927509784698543],[100.30686187744146,7.923618793487549],[100.30757904052734,7.9138808250427815],[100.29312133789068,7.915841102600098],[100.27928161621105,7.913329124450684],[100.25514221191406,7.915309906005859],[100.24700164794928,7.916460990905762],[100.2452163696289,7.914480209350643],[100.24385070800798,7.904820919036922],[100.2389526367188,7.900349140167236],[100.22306823730486,7.8937602043151855],[100.21351623535173,7.8927302360535805],[100.19599914550781,7.887071132660026],[100.17836761474638,7.882569789886475],[100.16532897949224,7.877669811248893],[100.15914154052729,7.873589992523193],[100.15474700927746,7.873580932617301],[100.14392852783203,7.869651794433594],[100.12647247314482,7.865921020507869],[100.10980224609375,7.86424112319952],[100.0968093872072,7.86204195022583],[100.07676696777361,7.8508691787720295],[100.0736007690432,7.847731113433781],[100.07325744628935,7.843560218811035],[100.06089782714855,7.8422517776490395],[100.05567169189476,7.836330890655574],[100.04766845703148,7.836400985717773],[100.04463195800787,7.840950012207145],[100.03420257568371,7.845910072326717],[100.0285415649414,7.846370220184326],[100.01159667968756,7.85238885879528],[99.99694824218756,7.855251789093074],[99.98507690429693,7.861670017242375],[99.98020935058605,7.866200923919791],[99.96530151367216,7.8851408958436195],[99.9586791992187,7.888760089874268],[99.94635009765625,7.890200138092041],[99.94010162353538,7.888310909271354],[99.92777252197277,7.887771129608268],[99.92089080810558,7.88210916519165],[99.91181182861328,7.885069847106934],[99.9085693359375,7.890370845794735],[99.90254211425787,7.8897809982299805],[99.89592742919916,7.893400192260685],[99.89222717285179,7.8901591300964355],[99.88781738281256,7.892910003662166],[99.88114166259771,7.8926591873168945],[99.87919616699219,7.889560222625789],[99.87169647216808,7.889620780944881],[99.86326599121122,7.885190963745231],[99.8599777221682,7.8894300460816],[99.84935760498075,7.8877301216126625],[99.84629058837919,7.891100883483887],[99.83676910400419,7.885571002960262],[99.83186340332048,7.884998798370418],[99.82762145996105,7.887319087982235],[99.82157135009783,7.88477087020874],[99.81629943847679,7.885920047760067],[99.81301879882812,7.8898491859436035],[99.80625152587919,7.890329837799186],[99.7984924316408,7.881480216980094],[99.79695892334001,7.875181198120174],[99.79270172119169,7.8653512001038735],[99.78401947021484,7.860520839691219],[99.78291320800787,7.856949806213436],[99.77157592773432,7.85689115524292],[99.76393890380854,7.860091209411621],[99.75025939941406,7.855278968811149],[99.74723052978521,7.85857009887701],[99.73638916015648,7.855781078338566],[99.74085235595714,7.860940933227539],[99.74297332763689,7.8713698387146565],[99.74134826660179,7.878930091858024],[99.73634338378906,7.880329132080135],[99.7332992553711,7.8855390548706055],[99.73855590820324,7.892990112304744],[99.74395751953125,7.907601833343563],[99.74073028564453,7.9120588302612305],[99.7359008789062,7.913939952850285],[99.73954010009783,7.923618793487549],[99.74231719970709,7.927219867706242],[99.73995971679688,7.934370040893668],[99.73442840576172,7.940580844879264],[99.73471832275419,7.945971012115535],[99.74475097656256,7.953100204467717],[99.75531005859403,7.95688104629528],[99.7574768066408,7.960391044616756],[99.75395965576178,7.967961788177547],[99.7525405883789,7.979360103607178],[99.74562835693354,7.981491088867244],[99.73851776123075,7.987130165100041],[99.73084259033209,7.9967999458314125],[99.72442626953153,7.996921062469539],[99.71505737304716,7.992159843444824],[99.70384979248058,7.99029111862194],[99.69639587402355,7.992619991302604],[99.69216918945341,7.996251106262207],[99.68791198730474,7.996020793914909],[99.67774963378923,8.000931739807129],[99.67555236816429,8.005091667175407],[99.6707687377932,8.008819580078239],[99.6673202514649,8.007690429687614],[99.66277313232445,8.011601448059196],[99.65741729736351,8.01321029663086],[99.65235137939464,8.011550903320312],[99.64124298095732,8.011940002441406],[99.63877868652372,8.009381294250488],[99.63117980957043,8.009939193725529],[99.6220932006836,8.000061035156364],[99.6220169067384,7.997529029846248],[99.61596679687517,7.991550922393799],[99.61579895019531,7.98825120925909],[99.61096954345697,7.98633003234869],[99.60288238525413,7.985441207885799],[99.60603332519548,7.979778766632137],[99.60164642334001,7.978050231933651],[99.59493255615246,7.962350845336857],[99.59629058837885,7.957359790802059],[99.58628845214866,7.957011222839469],[99.58470153808594,7.950480937957707],[99.57955932617188,7.944619178771973],[99.56965637207037,7.945190906524715],[99.56485748291016,7.9348602294921875],[99.56027221679705,7.933059215545654],[99.56198883056658,7.924230098724365],[99.55594635009788,7.917679786682243],[99.54718780517601,7.91789007186901],[99.54215240478533,7.909640789032096],[99.54084014892578,7.902290821075553],[99.5346984863283,7.897920131683463],[99.53346252441412,7.890710830688477],[99.53678894042986,7.889150142669678],[99.53485107421886,7.882581233978385],[99.5314331054687,7.87785005569458],[99.51403808593778,7.875239849090633],[99.50625610351557,7.882309913635311],[99.4946594238283,7.8821210861206055],[99.4909286499024,7.886418819427604],[99.48129272460955,7.880549907684383],[99.47518157959001,7.890689849853459],[99.47219085693365,7.9045000076293945],[99.46129608154297,7.896529197692871],[99.45565795898466,7.8892412185668945],[99.4469375610351,7.886980056762809],[99.44326782226591,7.879030227661133],[99.43811035156278,7.878159999847412],[99.43640136718778,7.874321937561092],[99.42598724365251,7.8755908012390705],[99.42395782470726,7.88106107711792],[99.4198608398437,7.883921146392822],[99.41961669921903,7.908938884735107],[99.42115783691435,7.919388771057243],[99.42414855957054,7.926428794860783],[99.41887664794933,7.931899070739803],[99.42077636718778,7.943190097808895],[99.4206008911134,7.953070163726807],[99.41564178466808,7.955821037292537],[99.41028594970732,7.953129768371582],[99.40782928466808,7.9551100730896565],[99.39736175537126,7.956021785736198],[99.39324188232428,7.962639808654842],[99.3984832763673,7.984269142150822],[99.40946197509788,7.996380805969181],[99.41470336914057,7.9988188743592445],[99.41583251953136,8.00177097320568],[99.4044265747072,8.01544094085699],[99.40553283691418,8.020660400390739],[99.4019012451173,8.027680397033748],[99.4009475708009,8.033598899841422],[99.3961715698245,8.041219711303654],[99.39205932617188,8.065441131591797],[99.39308166503912,8.070960998535213],[99.39330291748075,8.083660125732536],[99.39179992675793,8.090070724487305],[99.38523101806646,8.10792160034191],[99.34645080566423,8.135330200195312],[99.29676818847662,8.131951332092285],[99.29696655273466,8.140121459960938],[99.29927825927763,8.140930175781307],[99.29067993164091,8.153440475463867],[99.2898559570313,8.164150238037223],[99.30326080322294,8.170001029968319],[99.30835723876959,8.176719665527344],[99.30609893798851,8.186939239501953],[99.30732727050776,8.191640853881893],[99.31125640869146,8.194160461425838],[99.31501007080078,8.193060874939079],[99.31978607177734,8.201960563659668],[99.32182312011713,8.208560943603572],[99.31938171386719,8.214001655578556],[99.31307220459001,8.23558139801031],[99.31664276123058,8.24205112457281],[99.32022857666021,8.242611885070744],[99.32405853271513,8.252739906311092],[99.33310699462908,8.25846958160406],[99.33386230468767,8.267080307006836],[99.33090972900396,8.28034973144537],[99.33180999755865,8.285920143127498],[99.33043670654314,8.290951728820858],[99.32399749755865,8.29601192474371],[99.31730651855469,8.294470787048397],[99.31307220459001,8.299980163574219],[99.30773162841814,8.301630020141715],[99.30314636230486,8.306579589843693],[99.29843139648443,8.307340621948242],[99.29910278320324,8.315299987793026],[99.29148101806652,8.31287956237793],[99.28675842285173,8.31787109375],[99.28233337402338,8.318999290466309],[99.28269195556652,8.324310302734489],[99.2808609008789,8.330921173095703],[99.28157043457026,8.33750057220459],[99.27941894531278,8.341702461242733],[99.27440643310553,8.345479965209961],[99.2749862670899,8.351779937744197],[99.26914215087919,8.353111267089957],[99.2664413452149,8.349551200866813],[99.25939178466825,8.352391242981014],[99.25733184814464,8.357689857483024],[99.24559783935553,8.36820125579834],[99.24008941650413,8.369521141052246],[99.2386627197265,8.378789901733512],[99.23475646972679,8.38673114776617],[99.23677825927751,8.388979911804256],[99.23446655273432,8.397200584411621],[99.23977661132824,8.399898529052848],[99.24549102783232,8.4056911468507],[99.25003051757818,8.413590431213493],[99.24973297119158,8.420671463012809],[99.25583648681658,8.430171012878475],[99.25672912597685,8.433739662170467],[99.26214599609392,8.436981201171932],[99.25958251953153,8.445281982421875],[99.26281738281256,8.449449539184684],[99.26967620849615,8.454759597778377],[99.27760314941423,8.455780982971191],[99.27823638916038,8.462051391601562],[99.2865371704101,8.469129562377987],[99.29287719726562,8.470660209655875],[99.29566192626964,8.473528861999625],[99.29337310791027,8.481090545654354],[99.30341339111351,8.4792995452882],[99.3096084594726,8.483720779419002],[99.31233215332031,8.491760253906364],[99.31986999511747,8.494220733642578],[99.3268661499024,8.49857044219982],[99.33264160156278,8.500151634216252],[99.33486938476568,8.515569686889762],[99.33878326416027,8.520021438598746],[99.35243988037132,8.511861801147518],[99.35761260986334,8.507170677185172],[99.36119842529303,8.500140190124569],[99.37374877929688,8.509511947631836],[99.37766265869169,8.51501178741455],[99.38906097412132,8.516209602356014],[99.39321899414062,8.513460159301758],[99.39507293701189,8.517719268798885],[99.39393615722673,8.52571010589594],[99.40206146240263,8.529830932617244],[99.40937805175798,8.529541015625114],[99.40879821777338,8.536310195922852],[99.41396331787126,8.541270256042424],[99.41304016113281,8.545649528503361],[99.40699768066429,8.544781684875488],[99.40415191650396,8.548671722412223],[99.405029296875,8.55311203002924],[99.4147109985351,8.566499710083065],[99.4237899780274,8.57384109497076],[99.43090820312511,8.582140922546387],[99.43589782714861,8.589659690856934],[99.4406204223634,8.599160194397086],[99.44995880126982,8.599849700927678],[99.45539093017578,8.60194015502924],[99.45600128173851,8.608599662780705],[99.45287322998064,8.615130424499512],[99.448051452637,8.620340347290153],[99.44985961914062,8.62732982635498],[99.44809722900408,8.632001876831055],[99.45329284667969,8.637331008911246],[99.45419311523432,8.642080307006836],[99.46266937255865,8.649420738220272],[99.47074890136747,8.645791053771973],[99.47587585449247,8.645442008972168],[99.48059844970709,8.648521423339957],[99.47824096679705,8.657329559326229],[99.48265838623047,8.661061286926383],[99.48867797851591,8.67114162445074],[99.49424743652338,8.671091079712028],[99.49444580078142,8.67621040344244],[99.49135589599621,8.68036079406744],[99.49700164794928,8.686231613159237],[99.49510192871116,8.692141532897892],[99.49205017089866,8.695780754089355],[99.49828338623064,8.699099540710506],[99.50727844238281,8.706980705261344],[99.50734710693388,8.712649345398006],[99.51708984375028,8.718001365661621],[99.52057647705095,8.718221664428768],[99.52556610107422,8.72791862487793],[99.52619171142601,8.73987102508545],[99.52884674072271,8.745889663696232],[99.52995300292969,8.760860443115234],[99.52298736572294,8.763099670410213],[99.52353668212913,8.777411460876522],[99.52239227294945,8.781959533691406],[99.52239227294945,8.794110298156795],[99.52658843994163,8.809321403503475],[99.5219497680664,8.818929672241268],[99.52200317382835,8.82726001739502],[99.5174407958985,8.834050178527946],[99.52036285400402,8.836461067199764],[99.52313995361351,8.843782424926758],[99.52983093261741,8.848930358886776],[99.53948211669939,8.851429939270133],[99.54425048828142,8.847531318664608],[99.55355834960932,8.848489761352653],[99.55986022949213,8.851360321044979],[99.55947113037104,8.859940528869572],[99.55663299560564,8.864950180053768],[99.55721282959001,8.875999450683594],[99.56764221191435,8.884949684143066],[99.57401275634766,8.891981124877987],[99.57620239257841,8.899180412292537],[99.57554626464844,8.909139633178711],[99.5810012817384,8.91329097747797],[99.58200073242205,8.917080879211426],[99.5920104980471,8.919990539550724],[99.59400177001947,8.923250198364371],[99.60430908203142,8.926931381225643],[99.6156005859375,8.927090644836483],[99.61841583251947,8.923041343688965],[99.6172561645509,8.918440818786564],[99.62284088134766,8.912190437316951],[99.62847900390653,8.911369323730582],[99.63252258300776,8.91323089599615],[99.63707733154308,8.92096042633051],[99.64338684082043,8.927580833435172],[99.65220642089861,8.921990394592285],[99.65656280517572,8.924921035766658],[99.66142272949241,8.923640251159782],[99.67122650146496,8.928450584411678],[99.67594909667974,8.928050041198844],[99.68814849853521,8.931099891662598],[99.69676208496122,8.93499946594244],[99.69834136962908,8.941670417785588],[99.69595336914085,8.951812744140739],[99.6894302368164,8.958470344543457],[99.69258880615246,8.963260650634766],[99.69384765625023,8.972060203552246],[99.69612121582037,8.9749116897583],[99.71346282958984,8.970300674438533],[99.71726989746094,8.976390838623047],[99.72223663330078,8.97675991058361],[99.72558593750011,8.979939460754451],[99.72467041015642,8.984581947326717],[99.73187255859386,8.995500564575252],[99.73084259033209,9.00160026550293],[99.73351287841803,9.007011413574219],[99.73375701904325,9.013352394104004],[99.73742675781244,9.014969825744743],[99.7445678710938,9.02705097198492],[99.74008941650402,9.03756046295166],[99.74398040771484,9.041831970214957],[99.74491119384766,9.049019813537598],[99.74063873291044,9.056790351867733],[99.74636840820324,9.062420845031738],[99.74472045898438,9.107539176941032],[99.7405624389649,9.115820884704704],[99.7461700439456,9.128110885620174],[99.74575805664068,9.14017200469982],[99.74411010742182,9.146161079406738],[99.7305374145509,9.150401115417537],[99.72702789306646,9.152510643005371],[99.72579193115229,9.158321380615178],[99.72772979736345,9.161360740661678],[99.73271179199219,9.16034030914301],[99.73987579345732,9.173590660095329],[99.74218750000011,9.182621002197322],[99.74207305908203,9.18959045410162],[99.73970794677746,9.200690269470329],[99.74772644042963,9.204360961914176],[99.74780273437506,9.213089942932186],[99.75380706787121,9.219440460205135],[99.75102233886719,9.227070808410645],[99.7512969970706,9.241680145263672],[99.75044250488281,9.253380775451774],[99.74884033203153,9.25619125366211],[99.74948120117205,9.262921333312988],[99.74822235107445,9.270762443542537],[99.75018310546886,9.279440879821834],[99.7475814819336,9.286279678344727],[99.75015258789091,9.294040679931697],[99.75757598876959,9.302061080932674],[99.76229858398443,9.3023300170899],[99.76396942138689,9.315109252929744],[99.76991271972656,9.322650909423885],[99.77530670166038,9.317875862121639],[99.77583312988281,9.311943054199162],[99.78111267089838,9.310002326965332],[99.78360748291033,9.312220573425236],[99.78810119628912,9.310181617736873],[99.79445648193354,9.313415527343807],[99.79830169677751,9.31120681762701],[99.80110931396496,9.317502021789608],[99.80555725097673,9.316109657287654],[99.79947662353516,9.30526256561285],[99.80805206298828,9.299722671508846],[99.81790161132824,9.297197341919002],[99.82499694824236,9.29888820648199],[99.82636260986328,9.306083679199219],[99.82971954345714,9.310279846191406],[99.83750152587896,9.303610801696834],[99.83833312988276,9.294719696044922],[99.84172058105497,9.290305137634334],[99.84194183349621,9.284440994262752],[99.84555816650402,9.276110649109],[99.84473419189476,9.263539314270076],[99.84972381591825,9.252777099609489],[99.8594360351563,9.252781867980957],[99.8637466430664,9.248375892639217],[99.86360931396507,9.240560531616154],[99.868896484375,9.237951278686523],[99.87071990966825,9.229860305786133],[99.87442016601562,9.222180366516227],[99.878890991211,9.218607902526855],[99.88138580322294,9.207781791687069],[99.87583160400396,9.204445838928223],[99.87555694580095,9.194167137146053],[99.87416839599621,9.185277938842773],[99.8738861083985,9.153056144714412],[99.875,9.141111373901424],[99.87694549560553,9.139445304870605],[99.87999725341803,9.1274995803833],[99.88249969482445,9.125278472900504],[99.89195251464861,9.124720573425236],[99.89749908447266,9.118888854980582],[99.89959716796875,9.110651969909668],[99.90361022949219,9.108887672424316],[99.90472412109392,9.10472202301031],[99.9093627929688,9.098223686218262],[99.90944671630871,9.089445114135799],[99.91194152832043,9.087498664856014],[99.91222381591803,9.081665992736873],[99.90972137451172,9.077777862548942],[99.90972137451172,9.066110610962028],[99.91278076171875,9.028610229492244],[99.91388702392595,9.020833969116154],[99.9236145019533,9.007223129272518],[99.91684722900396,8.997689247131348],[99.91505432128906,8.990251541137695],[99.91394042968756,8.97595119476324],[99.9130401611331,8.951281547546444],[99.9131698608399,8.933336257934684],[99.91387939453142,8.930514335632438],[99.91638946533203,8.898571968078613],[99.91919708251947,8.87524318695074],[99.92321777343767,8.847031593322754],[99.92944335937528,8.81221961975109],[99.93305206298834,8.80083370208746],[99.93138885498058,8.79555511474615],[99.93444824218761,8.789167404174805],[99.93694305419916,8.74888992309576],[99.9380569458009,8.7452774047851],[99.94061279296875,8.72043228149414],[99.94249725341814,8.710000991821403],[99.94750213623053,8.67527770996088],[99.95027923583996,8.665276527404842],[99.949722290039,8.6522216796875],[99.95041656494146,8.642560958862418],[99.95226287841797,8.632295608520565],[99.95861053466803,8.611667633056584],[99.96582031250006,8.600610733032227],[99.97333526611357,8.594444274902344],[99.97194671630882,8.590828895568848],[99.979057312012,8.586948394775447],[99.9805526733399,8.590833663940487],[99.98610687255888,8.594170570373592],[100.00110626220709,8.588060379028377],[100.00805664062511,8.581391334533748],[100.01194763183594,8.574723243713436],[100.00595092773466,8.569849967956657],[100.00627899169945,8.566950798034725],[100.01249694824236,8.565819740295353],[100.01608276367199,8.562857627868766],[100.02897644042991,8.542723655700684],[100.03491973876982,8.536341667175293],[100.04410552978527,8.523278236389103],[100.0480346679688,8.51522445678711],[100.05384826660168,8.499849319457951],[100.06248474121094,8.472679138183707],[100.0666580200197,8.467321395873967],[100.06989288330095,8.46045112609869],[100.07369995117182,8.446725845336971],[100.07360839843773,8.440561294555664],[100.08350372314459,8.420965194702262],[100.08860778808611,8.41361141204834],[100.0931549072265,8.416092872619572],[100.09999847412121,8.409166336059627],[100.10778045654325,8.407221794128418],[100.1163864135745,8.399722099304313],[100.12444305419939,8.399443626403752],[100.13777923583979,8.388891220092887],[100.15290832519531,8.388202667236385],[100.1569442749024,8.392223358154354],[100.16249847412132,8.389445304870549],[100.16722106933594,8.384445190429688],[100.17277526855474,8.387777328491325],[100.16889190673845,8.39527702331543],[100.16361236572271,8.40250015258789],[100.15638732910179,8.409722328186092],[100.15055847167963,8.422777175903434],[100.15027618408226,8.431110382080078],[100.14833068847656,8.441110610961857],[100.15361022949213,8.450554847717342],[100.15463256835938,8.462733268737793],[100.15924072265648,8.464165687560978],[100.16166687011719,8.473054885864315],[100.15944671630882,8.476111412048454],[100.16333007812511,8.480555534362907],[100.16249847412132,8.492501258850154],[100.15979003906256,8.500138282775936],[100.15472412109403,8.502498626709041],[100.1486129760745,8.509444236755428],[100.14083099365229,8.510833740234489],[100.13639068603544,8.513334274291992],[100.1319427490235,8.512501716613713],[100.1266632080081,8.516390800476131],[100.11944580078136,8.514165878295955],[100.11499786376976,8.519722938537598],[100.1286087036134,8.521110534668082],[100.13861083984375,8.519445419311523],[100.14916992187528,8.515561103820744],[100.16944122314447,8.50333118438732],[100.183891296387,8.4894437789917],[100.19361114501982,8.478611946105957],[100.207778930664,8.456388473510799],[100.21833038330078,8.434444427490348],[100.22833251953153,8.408610343933162],[100.23611450195335,8.38416576385498],[100.24111175537138,8.3725004196167],[100.24861145019548,8.347921371459904],[100.25416564941423,8.334166526794547],[100.25638580322294,8.325278282165527],[100.25916290283209,8.319722175598145],[100.26194763183588,8.308061599731502],[100.26805877685541,8.288055419921989],[100.26805877685541,8.285833358764705],[100.27861022949219,8.248332023620605],[100.2802810668947,8.238612174987793],[100.28555297851591,8.219721794128418],[100.28555297851591,8.215556144714355],[100.29028320312523,8.195281028747615],[100.2908325195313,8.185556411743164],[100.29389190673834,8.181389808654842],[100.29416656494152,8.174166679382324],[100.29861450195312,8.1547212600708],[100.30583190917986,8.111109733581657],[100.30722045898438,8.100276947021598],[100.31194305419939,8.074445724487305],[100.31555175781244,8.050277709960938],[100.316390991211,8.04889011383068],[100.31805419921892,8.032777786254883],[100.32043457031256,8.0225248336792],[100.32250213623053,8.007223129272575],[100.33126831054693,7.955360889434758],[100.33666992187528,7.931944847107047]]]]},"properties":{"ID_0":228,"ISO":"TH-80","NAME_0":"Thailand","ID_1":31,"NAME_1":"Nakhon Si Thammarat","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"นครศรีธรรมราช","VARNAME_1":"Nakhon Thammarat|Nagara Sridharmaraj|Nakhon Sri Thammarat|Nakhornsrithamrat|Nakornsrithamaraj"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.08892822265653,18.378490447998047],[101.08619689941412,18.3690509796142],[101.08061981201189,18.364179611205998],[101.07704925537115,18.355211257934627],[101.05980682373064,18.3543701171875],[101.0547714233399,18.34773254394537],[101.04886627197294,18.343540191650334],[101.04550170898455,18.337930679321403],[101.04106140136747,18.336269378662223],[101.03684234619146,18.331968307495117],[101.03103637695312,18.331520080566463],[101.02703857421875,18.325271606445426],[101.02009582519543,18.319679260253963],[101.00763702392601,18.31635856628418],[101.00187683105469,18.307750701904354],[101.00119781494169,18.302419662475586],[100.99344635009783,18.30731010437023],[100.98477935791044,18.305339813232536],[100.97970581054705,18.300510406494197],[100.97912597656267,18.29388046264654],[100.97267150878906,18.28845024108881],[100.96743774414091,18.282089233398438],[100.96498107910168,18.275890350341797],[100.95304870605469,18.26363754272461],[100.94927215576195,18.262910842895565],[100.9421615600586,18.253160476684627],[100.93222045898455,18.248659133911246],[100.92801666259783,18.249031066894474],[100.92108917236357,18.241769790649528],[100.91808319091791,18.230030059814567],[100.91449737548828,18.225591659545955],[100.92070007324247,18.215589523315373],[100.92407989501959,18.21520042419445],[100.92732238769537,18.2092227935791],[100.92343139648455,18.202449798583984],[100.90988159179682,18.191719055175838],[100.9107284545899,18.185520172119197],[100.90806579589866,18.174970626830998],[100.91130828857445,18.168098449707145],[100.91182708740234,18.162637710571403],[100.91529083251959,18.16020011901861],[100.9137802124024,18.155509948730582],[100.90370941162115,18.150640487670955],[100.89840698242199,18.14941978454584],[100.89264678955084,18.145740509033146],[100.88585662841814,18.149209976196346],[100.87342071533214,18.133010864257926],[100.87380981445324,18.12459945678711],[100.87689971923845,18.116819381713867],[100.86424255371122,18.108230590820426],[100.85906219482428,18.101810455322322],[100.85211944580095,18.087890625],[100.8512725830081,18.080339431762695],[100.84291076660168,18.0777912139892],[100.83354187011747,18.07982254028326],[100.82876586914091,18.078519821166992],[100.82212066650402,18.080749511718864],[100.81302642822266,18.076509475708008],[100.81005859375006,18.071380615234432],[100.80905151367193,18.06344032287609],[100.80291748046875,18.052610397338924],[100.79754638671892,18.04817008972168],[100.79370117187511,18.047260284423885],[100.7873992919923,18.04175186157238],[100.77651977539091,18.027650833129883],[100.76901245117193,18.023021697998104],[100.76116180419922,18.02601051330572],[100.7355194091798,18.026849746704215],[100.72695159912104,18.030639648437443],[100.7100677490235,18.028701782226676],[100.70774841308594,18.024738311767635],[100.70144653320312,18.026109695434513],[100.69966125488293,18.0242023468017],[100.69285583496111,18.024721145629996],[100.68942260742205,18.02818107604986],[100.68093109130865,18.03107070922863],[100.67475128173828,18.038379669189453],[100.67002105712896,18.040620803833008],[100.66091156005888,18.037332534790153],[100.65262603759766,18.03791999816889],[100.6330184936524,18.04313087463379],[100.6269226074221,18.041130065917912],[100.61267089843778,18.048030853271598],[100.60604095458979,18.045940399170036],[100.59883117675781,18.041219711303825],[100.58912658691406,18.038618087768555],[100.58216094970732,18.04219055175787],[100.57855987548822,18.041961669921932],[100.5758590698245,18.034490585327205],[100.56775665283203,18.035169601440373],[100.56147003173828,18.031251907348576],[100.55120849609398,18.031789779663086],[100.54825592041033,18.027721405029297],[100.54808044433611,18.02048110961914],[100.54380035400419,18.014841079711857],[100.53127288818354,18.016822814941463],[100.52693176269531,18.0215682983399],[100.52326965332048,18.019758224487305],[100.51154327392584,18.018970489501953],[100.5058975219726,18.022611618041992],[100.49891662597662,18.01993942260748],[100.49368286132807,18.02370834350586],[100.48829650878935,18.021802902221623],[100.47535705566418,18.023149490356502],[100.47255706787126,18.018531799316463],[100.46350860595732,18.02124977111822],[100.45812988281273,18.019510269165096],[100.45085906982428,18.020072937011776],[100.44441223144537,18.02362823486328],[100.44132232666021,18.02078056335455],[100.42362213134771,18.011571884155273],[100.41583251953153,18.020179748535156],[100.41847991943365,18.028869628906364],[100.41674804687506,18.035749435424805],[100.41380310058611,18.038999557495117],[100.4088973999024,18.049459457397404],[100.41066741943388,18.054790496826172],[100.40487670898438,18.06322860717779],[100.41140747070318,18.073780059814567],[100.40643310546898,18.078821182251033],[100.3982696533206,18.08365058898937],[100.39933013916016,18.0887908935548],[100.39772796630871,18.092300415039062],[100.40151977539091,18.097560882568416],[100.3959579467774,18.109430313110465],[100.39356231689447,18.116939544677678],[100.39765930175804,18.126031875610465],[100.39933013916016,18.13483047485363],[100.40451049804693,18.138620376587028],[100.41152191162126,18.13986968994152],[100.4155502319336,18.15020942687994],[100.42217254638666,18.15237998962408],[100.43447875976585,18.150819778442496],[100.44320678710938,18.152259826660213],[100.44841766357428,18.158100128173942],[100.45056152343761,18.166368484497127],[100.45384979248064,18.171230316162166],[100.45302581787138,18.1821804046632],[100.4574584960937,18.189580917358455],[100.4613265991211,18.192329406738395],[100.46026611328153,18.20037269592291],[100.45574951171892,18.21284103393566],[100.46083068847685,18.216472625732536],[100.46314239501982,18.228639602661246],[100.46895599365234,18.235130310058594],[100.47000885009794,18.24343109130865],[100.47866058349626,18.25999259948742],[100.4775390625,18.26255035400402],[100.49578094482416,18.27802085876465],[100.4848022460938,18.290252685546875],[100.4879760742187,18.296728134155273],[100.4840087890625,18.304761886596737],[100.48192596435547,18.318201065063533],[100.48368835449241,18.322540283203182],[100.48925781250028,18.326681137085018],[100.49404144287138,18.337869644165096],[100.48449707031278,18.341371536254996],[100.48427581787115,18.349290847778377],[100.4970092773438,18.35015106201172],[100.49989318847679,18.35485267639166],[100.50740051269543,18.360670089721737],[100.50759124755871,18.367240905761832],[100.51212310791021,18.374019622802848],[100.51212310791021,18.379840850830078],[100.51523590087885,18.386440277099553],[100.52172851562494,18.390661239624137],[100.52983856201195,18.388570785522575],[100.5383605957033,18.38887977600092],[100.54328155517572,18.402498245239315],[100.5476684570312,18.40495109558117],[100.5530776977539,18.419830322265682],[100.55043029785162,18.430271148681754],[100.54936981201183,18.439971923828125],[100.55214691162115,18.448490142822266],[100.54866027832048,18.4633407592774],[100.54586029052757,18.470939636230526],[100.54329681396501,18.487791061401367],[100.53663635253923,18.487829208374023],[100.53372192382824,18.48363113403326],[100.52617645263672,18.481250762939396],[100.52599334716797,18.478229522705078],[100.51846313476574,18.473869323730582],[100.5135574340822,18.475299835205192],[100.50814819335966,18.47147941589361],[100.5047683715822,18.474008560180664],[100.49632263183622,18.472709655761832],[100.48390960693388,18.480489730835075],[100.4789428710938,18.48818016052246],[100.4790878295899,18.492139816284293],[100.46215057373053,18.489549636840934],[100.45659637451195,18.49412155151373],[100.4477005004884,18.493970870971737],[100.4449234008789,18.489839553833008],[100.43749237060547,18.498649597168082],[100.42452239990234,18.494150161743278],[100.42079925537138,18.489549636840934],[100.41973876953125,18.48286247253418],[100.4126358032226,18.481119155883846],[100.40983581542969,18.48353958129877],[100.4017486572265,18.484210968017635],[100.40151214599638,18.49230003356945],[100.39736938476557,18.502309799194336],[100.3917007446289,18.50937080383312],[100.38858032226574,18.51082992553711],[100.39412689208979,18.521379470825252],[100.39747619628929,18.524179458618164],[100.3968505859375,18.530509948730582],[100.38920593261736,18.54104042053234],[100.38936614990229,18.55648994445812],[100.38162994384771,18.559709548950252],[100.37522888183605,18.564010620117244],[100.37989044189453,18.582780838012752],[100.37893676757812,18.587778091430778],[100.37991333007818,18.609590530395508],[100.38310241699236,18.615089416503906],[100.38326263427729,18.6204509735108],[100.3983459472658,18.625551223754996],[100.3949813842774,18.635110855102482],[100.38906097412115,18.637878417968864],[100.3781509399414,18.63505172729498],[100.3706512451173,18.637132644653377],[100.36115264892595,18.64733123779297],[100.362602233887,18.652700424194393],[100.36158752441412,18.657751083374023],[100.35639953613298,18.660930633544922],[100.35869598388672,18.66534996032709],[100.35827636718744,18.67158126831066],[100.35381317138678,18.67823028564453],[100.3611831665039,18.689100265502987],[100.36219024658226,18.6977996826173],[100.36579895019537,18.702201843261662],[100.36592864990251,18.706439971923885],[100.37361145019537,18.709810256958065],[100.37886047363276,18.716148376464844],[100.38025665283203,18.721240997314453],[100.38352203369146,18.72450828552246],[100.39021301269537,18.72517013549816],[100.38974761962885,18.731100082397575],[100.39348602294928,18.738870620727482],[100.38568878173857,18.742622375488395],[100.3814315795899,18.741331100463867],[100.37478637695318,18.742040634155273],[100.36601257324224,18.745340347290153],[100.36000061035173,18.749490737915096],[100.36022186279297,18.76115036010748],[100.36318206787138,18.76519012451172],[100.36087036132818,18.769729614257756],[100.36450195312506,18.774761199951286],[100.35855865478538,18.782470703125114],[100.34969329833979,18.784618377685604],[100.3427124023438,18.78320121765148],[100.33892059326195,18.785530090332145],[100.33827972412126,18.794111251831055],[100.3419189453125,18.80352020263672],[100.346908569336,18.81195068359375],[100.34220886230497,18.814752578735465],[100.34020233154297,18.818609237670955],[100.34160614013678,18.82398986816412],[100.35005950927746,18.827590942382812],[100.34877014160173,18.830249786377067],[100.3589096069336,18.841239929199332],[100.36534881591814,18.846189498901367],[100.36762237548822,18.85132026672369],[100.36527252197294,18.862039566040153],[100.36855316162121,18.87002944946289],[100.38794708251959,18.887840270996094],[100.39063262939459,18.894760131835994],[100.39006042480474,18.89921951293951],[100.39302825927734,18.912090301513786],[100.3922958374024,18.92349052429205],[100.3970870971682,18.928359985351676],[100.40338134765648,18.928800582885742],[100.40918731689447,18.93355751037609],[100.4077377319336,18.943420410156307],[100.423812866211,18.94535064697277],[100.43000030517595,18.952978134155217],[100.42668151855474,18.959537506103572],[100.4298706054688,18.964450836181697],[100.42430114746111,18.966751098632756],[100.42601013183611,18.970680236816463],[100.42101287841791,18.980289459228572],[100.42958068847668,18.983470916748047],[100.43009948730474,18.992969512939567],[100.44029235839838,19.004711151123104],[100.44101715087919,19.01517105102539],[100.4438171386721,19.024232864379883],[100.4498367309572,19.028499603271484],[100.45375061035162,19.03734970092779],[100.46166992187517,19.05238914489746],[100.47957611083979,19.0510311126709],[100.48530578613276,19.053199768066406],[100.49511718750006,19.05058097839367],[100.49472808837896,19.0415096282959],[100.4925079345706,19.037651062011832],[100.49523162841814,19.03407096862793],[100.5050811767581,19.029911041259822],[100.50971984863276,19.025159835815487],[100.51595306396513,19.023139953613338],[100.51597595214872,19.01866912841797],[100.50492095947277,19.005758285522575],[100.50412750244169,18.996778488159237],[100.50608825683588,18.988220214843807],[100.51217651367199,18.992189407348633],[100.51378631591797,18.995807647705192],[100.52551269531278,18.9985294342041],[100.53346252441429,18.997150421142692],[100.53710174560553,18.993970870971793],[100.54068756103521,18.99592018127447],[100.54736328125006,18.994710922241325],[100.54782867431669,19.004440307617244],[100.54714965820312,19.01674079895031],[100.54286193847685,19.03766059875494],[100.53990936279297,19.04244041442871],[100.5466232299807,19.04331016540533],[100.55110168457026,19.038351058960018],[100.55789947509771,19.042579650878963],[100.56095886230474,19.03963279724121],[100.56511688232428,19.030149459838924],[100.57205200195341,19.026510238647518],[100.57588195800793,19.028301239013672],[100.58434295654297,19.02868080139166],[100.58825683593778,19.02550125122076],[100.59387969970703,19.025350570678768],[100.60099792480474,19.022619247436523],[100.60672760009771,19.018470764160156],[100.61216735839861,19.024948120117188],[100.61567687988304,19.026041030883846],[100.62117004394531,19.03145027160656],[100.62017822265642,19.034860610962028],[100.6135864257813,19.043399810791016],[100.59870910644537,19.0490398406983],[100.59510803222685,19.053089141845703],[100.5873413085937,19.05574035644537],[100.58193969726568,19.06236076354986],[100.57270812988281,19.06936073303234],[100.5659790039062,19.07240104675293],[100.56571960449224,19.07810974121105],[100.57418823242182,19.089960098266715],[100.57064819335943,19.09113121032715],[100.57076263427751,19.097581863403377],[100.57743835449236,19.10350036621105],[100.58236694335949,19.100860595703125],[100.58303070068365,19.096538543701286],[100.586723327637,19.094142913818416],[100.59381103515636,19.0968074798584],[100.60317993164057,19.102817535400504],[100.60736846923822,19.10079956054699],[100.62030792236357,19.100940704345646],[100.62547302246105,19.097900390625057],[100.63041687011747,19.098470687866325],[100.63678741455078,19.102912902832145],[100.64605712890653,19.114620208740348],[100.64887237548834,19.116840362548885],[100.64366149902344,19.12290954589855],[100.64012908935575,19.124788284301758],[100.6389923095706,19.133871078491268],[100.63999938964861,19.14118957519537],[100.63694000244135,19.14563941955572],[100.63224792480474,19.14618110656744],[100.62699127197277,19.167772293090877],[100.627670288086,19.171529769897575],[100.6203689575197,19.179269790649528],[100.62040710449219,19.191070556640625],[100.62351226806646,19.197191238403434],[100.62262725830072,19.203950881958008],[100.61746215820324,19.220159530639762],[100.61849212646484,19.22451019287115],[100.6122665405274,19.234830856323356],[100.6022720336914,19.249320983886776],[100.60669708251959,19.254680633544922],[100.60727691650413,19.26226806640625],[100.60601806640636,19.266162872314453],[100.6089172363283,19.275979995727482],[100.61157226562494,19.278409957885742],[100.61351776123047,19.28674125671398],[100.61197662353533,19.292869567871207],[100.61311340332048,19.2994384765625],[100.61154174804699,19.306432723999023],[100.60807800292997,19.304519653320426],[100.59733581542974,19.30406761169445],[100.58226776123053,19.305709838867188],[100.57260894775419,19.30343055725109],[100.57086944580084,19.30621910095209],[100.56513977050787,19.307899475097713],[100.56524658203142,19.31160926818859],[100.56167602539068,19.318969726562557],[100.56298828125,19.32362937927246],[100.56159210205072,19.33245086669922],[100.5624008178711,19.33660125732422],[100.55587005615229,19.339759826660213],[100.54553985595732,19.349929809570426],[100.53643035888689,19.35205078125],[100.53317260742182,19.35850906372076],[100.53733062744169,19.36415100097662],[100.53748321533209,19.369010925292912],[100.53305816650396,19.3728084564209],[100.53266906738281,19.376930236816463],[100.5226364135745,19.385000228881836],[100.51992797851585,19.3978328704834],[100.52408599853516,19.40514945983898],[100.5384368896485,19.413442611694336],[100.54232788085932,19.414520263671932],[100.55155181884766,19.422830581665153],[100.56661987304688,19.433990478515682],[100.56706237792974,19.45195960998541],[100.57237243652366,19.460250854492188],[100.57670593261719,19.46306991577154],[100.58146667480486,19.469240188598633],[100.5905303955081,19.472480773925838],[100.58582305908197,19.48150062561041],[100.60117340087913,19.494979858398494],[100.60089874267595,19.507350921630973],[100.6038665771485,19.514490127563533],[100.60486602783214,19.5253200531007],[100.60926055908214,19.53094100952154],[100.61331939697283,19.53265953063965],[100.61309051513666,19.537139892578182],[100.6190795898438,19.54945182800293],[100.63260650634766,19.55352020263672],[100.63891601562506,19.554180145263672],[100.64539337158203,19.552860260009822],[100.65357208251953,19.554800033569336],[100.66308593750017,19.545721054077262],[100.67465972900419,19.547451019287053],[100.6770629882813,19.54479026794445],[100.683349609375,19.543489456176815],[100.68572998046903,19.540241241455078],[100.69352722167997,19.53738021850586],[100.6957626342774,19.534250259399414],[100.70117187500028,19.532699584960938],[100.70964813232422,19.533870697021598],[100.71398162841791,19.528480529785156],[100.71653747558594,19.52886962890625],[100.7237777709961,19.525039672851506],[100.73088073730491,19.52482986450201],[100.73739624023466,19.51931953430187],[100.7424926757813,19.518369674682617],[100.74392700195307,19.514410018920955],[100.7538299560548,19.50905036926281],[100.75969696044928,19.50983047485363],[100.76151275634783,19.505939483642635],[100.7604598999024,19.500421524047965],[100.76609039306658,19.49946022033697],[100.76799011230486,19.493078231811637],[100.76761627197283,19.488260269165153],[100.77300262451178,19.484960556030273],[100.78185272216825,19.490800857543945],[100.79309082031278,19.507730484008732],[100.8041381835938,19.513031005859375],[100.81333923339855,19.520900726318473],[100.81852722167986,19.52335166931158],[100.82173156738293,19.53098106384283],[100.82604980468773,19.534019470214844],[100.83000946044922,19.541942596435547],[100.83418273925798,19.54354286193859],[100.8372573852539,19.549140930175838],[100.84114074707037,19.551589965820312],[100.8432006835938,19.557729721069393],[100.84999847412126,19.566350936889762],[100.86200714111322,19.571500778198356],[100.86058807373053,19.57900047302246],[100.86759185791016,19.582912445068473],[100.8768692016601,19.59831047058111],[100.88159942626982,19.603967666626033],[100.88497924804693,19.604930877685604],[100.88533782958984,19.611070632934684],[100.89067077636719,19.622140884399528],[100.89186096191429,19.629457473754883],[100.89595794677729,19.631759643554744],[100.90245819091814,19.630559921264705],[100.91491699218756,19.624782562255916],[100.91982269287126,19.619941711425838],[100.9231719970706,19.622459411621207],[100.9312210083009,19.623500823974723],[100.93659973144548,19.620519638061637],[100.94010925292991,19.62360191345209],[100.94898223876947,19.622089385986328],[100.95976257324241,19.623069763183537],[100.96837615966825,19.620981216430778],[100.97621917724638,19.617321014404297],[100.98416137695318,19.62533187866211],[100.9911880493164,19.62280082702648],[100.99971771240229,19.624389648437614],[101.00287628173834,19.62063026428234],[101.0079421997072,19.62164115905773],[101.01632690429705,19.61790084838873],[101.02105712890636,19.6203994750976],[101.02536773681663,19.627569198608512],[101.03790283203125,19.626560211181754],[101.0397262573245,19.623380661010856],[101.045166015625,19.62315940856945],[101.05179595947283,19.619010925293082],[101.06481170654297,19.616979598999023],[101.06890869140653,19.610879898071403],[101.06848144531273,19.60333061218273],[101.07305908203148,19.600759506225586],[101.08087158203148,19.602621078491154],[101.09178161621122,19.59539985656744],[101.0938415527346,19.58522033691412],[101.09953308105469,19.58241081237793],[101.10320281982428,19.584329605102596],[101.1187973022461,19.581760406494254],[101.12092590332054,19.57349967956543],[101.1245880126956,19.57063102722168],[101.14225769042969,19.576999664306754],[101.148246765137,19.575599670410156],[101.15561676025396,19.579151153564453],[101.16928100585932,19.579561233520565],[101.17173004150402,19.583951950073242],[101.1804962158206,19.577600479125977],[101.18817901611345,19.577289581298885],[101.1940994262697,19.57456970214855],[101.1999893188476,19.575109481811637],[101.20641326904325,19.58596038818365],[101.2047500610351,19.589130401611385],[101.20516967773455,19.597049713134766],[101.20993041992205,19.603599548339957],[101.21953582763695,19.60012054443365],[101.22689819335955,19.602819442749023],[101.23551940917969,19.6003799438476],[101.24595642089838,19.601671218872127],[101.24838256835966,19.59239959716797],[101.25762939453125,19.58905982971197],[101.2641372680664,19.591220855712947],[101.26777648925787,19.587860107421932],[101.27571105957026,19.584461212158203],[101.28337097167986,19.57975006103527],[101.28202819824236,19.57594108581543],[101.28945159912126,19.567520141601676],[101.28534698486351,19.558879852295036],[101.27887725830084,19.55306053161621],[101.276351928711,19.547470092773494],[101.28257751464838,19.535829544067383],[101.28717041015642,19.532039642333984],[101.2872085571289,19.52429962158203],[101.28005218505888,19.51781082153326],[101.27706909179705,19.510580062866268],[101.27307128906267,19.50965118408203],[101.26972198486334,19.501581192016715],[101.27046966552757,19.493350982666072],[101.26902008056635,19.489999771118164],[101.27184295654325,19.48341941833496],[101.26850891113281,19.475299835205192],[101.26834869384771,19.468339920044002],[101.25527954101574,19.471790313720703],[101.24993896484386,19.472190856933707],[101.24494171142607,19.470199584960994],[101.23931884765625,19.47165107727062],[101.23899841308616,19.474630355834904],[101.2313232421875,19.47499084472662],[101.22824859619158,19.470729827880973],[101.21959686279325,19.470609664917106],[101.21559906005871,19.47328186035162],[101.21218109130854,19.470439910888672],[101.21303558349615,19.462530136108455],[101.20758056640653,19.455749511718864],[101.21073913574224,19.45271110534668],[101.2097473144533,19.448009490966854],[101.21407318115246,19.443260192871094],[101.21238708496088,19.43572044372553],[101.21707153320318,19.429651260376033],[101.21082305908232,19.421840667724666],[101.20928955078153,19.41642951965332],[101.20578765869146,19.41315078735363],[101.20063018798834,19.404319763183594],[101.19667816162115,19.403390884399357],[101.18930053710932,19.39846038818365],[101.19068145751953,19.386770248413086],[101.1923904418947,19.383710861206055],[101.19239807128906,19.375869750976676],[101.19770050048822,19.372209548950252],[101.20433807373075,19.361730575561523],[101.20321655273432,19.358730316162166],[101.20703124999994,19.348440170288143],[101.22589111328153,19.342678070068416],[101.231689453125,19.343402862548828],[101.23509979248064,19.333110809326172],[101.24014282226585,19.328487396240178],[101.22915649414057,19.30685997009283],[101.23091125488298,19.295909881591797],[101.23561859130888,19.288869857788086],[101.24140167236345,19.283021926879996],[101.24320983886724,19.267560958862305],[101.24935150146513,19.251890182495117],[101.25234222412132,19.240039825439453],[101.25556182861334,19.237560272216797],[101.25643157958979,19.218971252441406],[101.25531768798845,19.20784187316906],[101.25257110595732,19.203540802002067],[101.25399017334001,19.19824028015148],[101.25061798095709,19.183792114257926],[101.24713134765642,19.179250717163086],[101.2545471191408,19.165002822875977],[101.25920867919945,19.14344024658203],[101.2566909790039,19.13293838500988],[101.2587127685548,19.122610092163143],[101.26210784912138,19.12175941467291],[101.2678833007812,19.115680694580078],[101.27440643310564,19.11166000366211],[101.28663635253906,19.108291625976562],[101.29097747802751,19.102569580078125],[101.29487609863304,19.102319717407283],[101.29863739013672,19.098569869995117],[101.2989120483399,19.092710494995174],[101.31218719482422,19.08352088928234],[101.31755828857428,19.078390121460018],[101.3263778686524,19.078470230102596],[101.32888793945341,19.070629119873047],[101.33394622802734,19.07005119323742],[101.3365020751956,19.065811157226562],[101.34244537353527,19.067785263061637],[101.34580230712913,19.06118965148937],[101.34934997558611,19.05825805664074],[101.3526458740235,19.05032157897955],[101.3589096069336,19.047470092773438],[101.3510971069336,19.034009933471793],[101.34760284423822,19.023500442504883],[101.34226989746088,19.017574310302848],[101.34168243408214,19.00749015808117],[101.33722686767601,19.001840591430778],[101.32940673828148,19.000379562377987],[101.31200408935547,19.00014305114746],[101.3082962036134,18.99458122253418],[101.306869506836,18.98553276062023],[101.3030090332033,18.985200881958065],[101.29633331298845,18.980381011963004],[101.29335784912132,18.975009918213004],[101.29641723632818,18.970401763916072],[101.29409790039068,18.964969635009766],[101.29895782470714,18.95246124267578],[101.2957763671875,18.949819564819393],[101.29914855957043,18.94143104553217],[101.29595184326189,18.935480117797965],[101.29093170166044,18.9326229095459],[101.2839584350586,18.933759689331055],[101.2765502929688,18.928190231323242],[101.27807617187506,18.918819427490234],[101.2768096923831,18.915559768676758],[101.26637268066423,18.908201217651367],[101.25646209716814,18.90440750122076],[101.25251007080084,18.897979736328182],[101.2476882934572,18.886449813842773],[101.25057220458984,18.88153076171875],[101.2513427734375,18.87319183349615],[101.25636291503912,18.863620758056754],[101.25411987304716,18.860631942749137],[101.25586700439447,18.85420036315918],[101.25550842285173,18.848649978637752],[101.25100708007835,18.83864021301264],[101.24796295166038,18.836940765380973],[101.24488830566412,18.829561233520565],[101.24958038330072,18.823431015014762],[101.24936676025402,18.817409515380916],[101.25540161132835,18.81155967712408],[101.25393676757824,18.80686950683605],[101.25122070312506,18.77569961547863],[101.24913787841825,18.770940780639705],[101.24064636230486,18.762220382690543],[101.23916625976568,18.75375938415533],[101.23915863037115,18.74595069885254],[101.22669219970697,18.733898162841854],[101.22567749023466,18.7306804656983],[101.2317123413086,18.72158050537115],[101.23541259765653,18.71807098388672],[101.2342376708985,18.71422958374029],[101.23629760742193,18.709840774536246],[101.24549102783209,18.70977973937994],[101.25106048584013,18.70846939086914],[101.25547027587902,18.703769683837947],[101.25914001464861,18.7035808563233],[101.26309204101574,18.698280334472713],[101.26859283447294,18.697340011596793],[101.27297973632841,18.688631057739315],[101.26431274414062,18.681770324707145],[101.25850677490263,18.6672306060791],[101.24804687499994,18.652257919311523],[101.24312591552751,18.64756965637207],[101.24240875244146,18.639209747314453],[101.22899627685564,18.627201080322266],[101.2150192260745,18.620029449462947],[101.190971374512,18.61400032043457],[101.18366241455084,18.609750747680607],[101.1810760498048,18.603010177612305],[101.18363189697266,18.601360321045036],[101.18179321289068,18.58784103393566],[101.18856811523455,18.57781028747553],[101.18654632568382,18.56950187683111],[101.18399810791033,18.567209243774357],[101.18476104736345,18.558700561523494],[101.18139648437523,18.556550979614258],[101.17691040039057,18.558250427246094],[101.17241668701178,18.554950714111385],[101.16738128662126,18.55508041381836],[101.16203308105463,18.552761077880803],[101.15437316894543,18.552488327026367],[101.15025329589844,18.550230026245174],[101.15029144287115,18.54103279113781],[101.14408874511713,18.53606033325201],[101.14096832275396,18.5268497467041],[101.12915039062506,18.522701263427734],[101.1198120117188,18.52573013305664],[101.11100006103521,18.523719787597656],[101.1056518554688,18.51959037780773],[101.0982360839846,18.503940582275334],[101.09732055664091,18.499490737915153],[101.09394073486322,18.49773025512701],[101.09306335449224,18.490249633789176],[101.09587860107439,18.481990814209098],[101.0800170898437,18.468151092529297],[101.06504058837913,18.452329635620117],[101.05973052978521,18.443099975585994],[101.05628204345709,18.44054031372076],[101.05847167968767,18.43260002136242],[101.05464935302729,18.42362022399908],[101.06082153320318,18.420530319213924],[101.0724182128908,18.407140731811523],[101.07885742187494,18.40558052062994],[101.08361053466808,18.39885139465332],[101.08538055419939,18.39171981811529],[101.08496093749994,18.383291244506836],[101.08892822265653,18.378490447998047]]]},"properties":{"ID_0":228,"ISO":"TH-55","NAME_0":"Thailand","ID_1":32,"NAME_1":"Nan","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"น่าน","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.72515106201178,6.576667785644531],[101.73075866699247,6.567910194396973],[101.75521087646479,6.532120227813721],[101.75866699218767,6.525876045227051],[101.768798828125,6.513411045074463],[101.77592468261724,6.503084182739258],[101.7819595336914,6.495880126953182],[101.8000030517581,6.470555782318229],[101.81862640380865,6.450589179992733],[101.82333374023455,6.448057174682617],[101.83277893066412,6.445556163787899],[101.83727264404297,6.440481185913143],[101.84612274169928,6.433921813964957],[101.85686492919916,6.427556037902946],[101.85994720459001,6.428880214691276],[101.86798858642578,6.427600860595703],[101.87615966796892,6.423230171203613],[101.88304901123047,6.414272785186881],[101.90641784667997,6.3861098289490315],[101.91729736328153,6.37394380569458],[101.93926239013666,6.351493835449276],[101.95263671875017,6.3387651443481445],[101.97449493408209,6.321186065673828],[102.00053405761736,6.303088188171444],[102.02288055419922,6.289560794830322],[102.05483245849621,6.26853799819952],[102.06730651855469,6.259298801422062],[102.07811737060541,6.253121852874756],[102.08631134033214,6.246374130249137],[102.08795166015648,6.240750789642448],[102.09142303466825,6.236361026763916],[102.08051300048851,6.225380897521973],[102.07898712158226,6.209569931030387],[102.08026123046892,6.204188823700008],[102.07762145996094,6.19785118103033],[102.0774002075197,6.1911211013793945],[102.0807418823245,6.180699825286808],[102.07855987548828,6.171511173248291],[102.08229827880871,6.171601772308463],[102.08576965332048,6.164430141448975],[102.08466339111328,6.158649921417293],[102.09144592285185,6.1540617942811195],[102.09285736083984,6.146690845489502],[102.08497619628918,6.136421203613281],[102.08271026611322,6.136360168457145],[102.07723236083984,6.12077093124401],[102.0727920532226,6.117510795593319],[102.07183074951166,6.112010002136344],[102.06727600097673,6.109508991241569],[102.06243896484403,6.104118824005127],[102.05905151367182,6.096951007843018],[102.06107330322271,6.09214019775402],[102.05190277099632,6.078759193420467],[102.0433273315432,6.076181888580379],[102.02957916259771,6.065381050109806],[102.0213394165039,6.05988979339611],[102.01889038085943,6.052231788635311],[102.01583862304693,6.053860187530518],[102.01091766357428,6.050951957702694],[102.0032577514649,6.0496411323546795],[102.00411987304682,6.0446791648865315],[101.99874877929716,6.03980016708374],[101.9924011230471,6.040841102600211],[101.98770141601574,6.037139892578182],[101.98387145996122,6.029621124267635],[101.98018646240257,6.029610157012996],[101.97653198242188,6.023900032043514],[101.97133636474626,6.019060134887752],[101.97218322753929,6.005600929260254],[101.96846771240251,6.004080772399902],[101.9625396728515,5.996341228485221],[101.95381927490234,5.994080066680908],[101.95239257812528,5.988820075988826],[101.94699096679693,5.986838817596492],[101.94239807128912,5.981350898742733],[101.94603729248053,5.976620197296143],[101.9395370483399,5.972149848937988],[101.94200897216797,5.96596002578741],[101.94136047363276,5.959670066833553],[101.94434356689459,5.956383228302059],[101.9372329711914,5.948569774627799],[101.9309310913086,5.949739933013973],[101.93083190917997,5.940818786621151],[101.9290695190432,5.937780857086182],[101.93060302734398,5.933300018310604],[101.92765808105486,5.924110889434871],[101.92427062988281,5.92454195022583],[101.92163085937523,5.918560981750488],[101.92227172851574,5.9102191925049965],[101.92658996582054,5.910029888153076],[101.93276977539074,5.904321193695125],[101.93572235107428,5.899190902710018],[101.94075775146513,5.885190010070801],[101.93952178955078,5.880849838256893],[101.94349670410173,5.871728897094727],[101.93782043457037,5.861848831176758],[101.93081665039068,5.861090183258057],[101.92745208740229,5.856980800628662],[101.9290695190432,5.85260105133068],[101.91710662841825,5.843020915985221],[101.9052124023438,5.841419219970817],[101.89994049072294,5.844030857086295],[101.89515686035185,5.843801021576041],[101.89196777343744,5.838469982147274],[101.88726043701172,5.839169979095516],[101.88381958007812,5.837111949920711],[101.87899780273432,5.827949047088623],[101.87748718261736,5.819071769714469],[101.87980651855469,5.812339782714957],[101.86680603027361,5.807360172271672],[101.86128997802751,5.800570011138973],[101.86355590820307,5.79781007766735],[101.86399841308594,5.791389942169246],[101.8552017211914,5.797239780426082],[101.85109710693388,5.796649932861328],[101.84760284423834,5.7904210090637775],[101.83278656005888,5.789509773254451],[101.82898712158232,5.785470962524528],[101.8287887573245,5.781669139862174],[101.83194732666016,5.7788801193237305],[101.82810211181658,5.771821022033748],[101.82209014892584,5.764211177825985],[101.821342468262,5.758309841155949],[101.82316589355469,5.753650188446045],[101.82398986816412,5.740029811859131],[101.82299041748047,5.738181114196777],[101.81465148925787,5.7371602058410645],[101.80805206298822,5.743749141693115],[101.80426788330095,5.744029045105037],[101.79863739013678,5.750579833984375],[101.79077911376959,5.755180835723991],[101.78318023681646,5.763969898223991],[101.77587890625,5.779348850250301],[101.77706909179693,5.782121181488151],[101.77182006835955,5.786860942840633],[101.76877593994158,5.792020797729549],[101.7633819580081,5.796961784362907],[101.7581710815432,5.798780918121395],[101.74836730957048,5.796560764312858],[101.73647308349638,5.7880601882934],[101.72505950927746,5.785381793975887],[101.71763610839838,5.78010988235485],[101.71682739257841,5.771550178527889],[101.71221160888695,5.761980056762752],[101.70876312255865,5.759311199188176],[101.70247650146507,5.759946823120174],[101.69789886474632,5.768081188201961],[101.69339752197277,5.781250000000114],[101.67607116699236,5.796508789062614],[101.66880035400385,5.805591106414852],[101.66419982910185,5.815299987793026],[101.66279602050787,5.822670936584416],[101.66269683837885,5.832280158996696],[101.66410064697266,5.849391937255973],[101.66145324707037,5.85191917419445],[101.66477203369169,5.8623390197754475],[101.6625747680664,5.872206211090145],[101.65910339355486,5.874360084533635],[101.64029693603538,5.877530097961426],[101.636001586914,5.879590034484977],[101.62860107421892,5.892170906067008],[101.6235961914062,5.899240970611686],[101.61569976806663,5.907835006713981],[101.61448669433611,5.911709785461426],[101.60844421386741,5.915097236633301],[101.6012496948245,5.921910762786865],[101.58551025390625,5.932411193847713],[101.57894134521513,5.9338698387146565],[101.56533813476585,5.92346096038824],[101.54792785644531,5.921050071716252],[101.53942871093756,5.917921066284293],[101.51316833496088,5.901660919189567],[101.50067901611351,5.892691135406608],[101.49861145019537,5.9007110595703125],[101.49128723144531,5.900091171264648],[101.49233245849638,5.908501148223934],[101.49024200439482,5.914351940155029],[101.49254608154308,5.923919200897274],[101.49079132080084,5.928050994873047],[101.49047851562494,5.937479972839412],[101.49739837646484,5.948431015014762],[101.49166870117188,5.950610160827694],[101.49095153808616,5.954761028289909],[101.4872207641601,5.955589771270809],[101.48494720458979,5.961631774902401],[101.48581695556646,5.96901178359991],[101.47660827636719,5.981871128082332],[101.47589111328148,5.988589763641357],[101.47856903076178,5.998779773712272],[101.47823333740263,6.007541179657039],[101.4827270507813,6.012508869171143],[101.47785949707043,6.020390987396297],[101.47928619384766,6.028500080108643],[101.47850799560547,6.0351300239564125],[101.4743576049807,6.0398201942444985],[101.4783020019533,6.0426301956177895],[101.47841644287138,6.053050994873104],[101.47447204589861,6.067550182342586],[101.4660186767581,6.08034086227417],[101.46195220947271,6.077190876007137],[101.4552612304688,6.077860832214412],[101.44686889648443,6.081980228424186],[101.44528198242205,6.086238861084041],[101.43992614746088,6.0920100212098305],[101.43753814697271,6.09768104553234],[101.43849945068382,6.105541229248104],[101.44117736816429,6.1096301078796955],[101.43634033203142,6.1169891357421875],[101.437728881836,6.121199131012077],[101.43527984619146,6.1289410591126625],[101.43083953857422,6.128221035003719],[101.42810821533197,6.134020805358887],[101.42671966552763,6.14198017120367],[101.42359924316412,6.144111156463737],[101.41570281982416,6.142870903015194],[101.41153717041033,6.1514201164245605],[101.41230773925798,6.156199932098502],[101.3991088867187,6.157750129699707],[101.39488220214872,6.159629821777457],[101.38842773437494,6.16585016250616],[101.38632202148432,6.170431137085018],[101.38639068603516,6.181361198425293],[101.38326263427746,6.190371036529541],[101.37751007080107,6.198730945587158],[101.3719406127932,6.209411144256592],[101.3796691894533,6.2150402069092365],[101.39332580566412,6.221620082855225],[101.39726257324219,6.225590229034481],[101.39747619628912,6.229560852050838],[101.40347290039074,6.238461017608586],[101.40072631835943,6.242418766021672],[101.39569091796892,6.244939804077148],[101.39839172363281,6.254590034484806],[101.40159606933588,6.257960796356201],[101.40056610107428,6.267728805542106],[101.40293121337885,6.270380020141602],[101.39882659912132,6.2832112312316895],[101.39515686035156,6.286780834198112],[101.39573669433594,6.293351173400993],[101.39375305175793,6.300261974334774],[101.40011596679688,6.311240196228141],[101.40003204345732,6.3176989555359455],[101.38958740234392,6.327010154724178],[101.38797760009771,6.335791110992375],[101.38932800292997,6.3402190208436195],[101.39363098144531,6.3435401916504475],[101.39772796630888,6.3498687744140625],[101.39749145507835,6.357670783996639],[101.40354919433594,6.361959934234619],[101.4101867675783,6.368869781494141],[101.41735839843756,6.37197923660284],[101.4203186035158,6.383500099182129],[101.41937255859375,6.39107084274292],[101.41210174560564,6.396480083465633],[101.41851806640653,6.400760173797551],[101.42524719238276,6.413889884948787],[101.42292785644543,6.416460990905875],[101.42430877685564,6.42162990570074],[101.43448638916021,6.428710937500057],[101.44313812255888,6.428089141845817],[101.4570007324221,6.431599140167293],[101.46246337890642,6.424530982971248],[101.46837615966814,6.423871040344295],[101.47001647949247,6.4287500381470295],[101.46662902832026,6.439459800720158],[101.4645767211914,6.442161083221492],[101.46595764160162,6.450541019439697],[101.46254730224615,6.454528808593864],[101.46479797363287,6.465600967407283],[101.47853851318365,6.463500022888127],[101.48538970947266,6.463311195373649],[101.49674224853527,6.454390048980827],[101.50653839111328,6.45343112945551],[101.51255798339872,6.449570178985596],[101.51860809326195,6.448929786682186],[101.52987670898443,6.444200038909855],[101.53971862792986,6.441939830780086],[101.542739868164,6.445290088653678],[101.54717254638672,6.443900108337402],[101.55034637451183,6.446068763732967],[101.55030822753935,6.455228805542106],[101.54618835449236,6.45838117599493],[101.5418472290039,6.45792102813715],[101.53466033935553,6.463369846344108],[101.5335998535158,6.468588829040641],[101.54657745361345,6.482971191406193],[101.56125640869158,6.488211154937744],[101.56228637695335,6.492760181427116],[101.56919097900419,6.498300075531063],[101.57559967041016,6.499440193176383],[101.57995605468767,6.508859157562199],[101.58663177490251,6.512021064758358],[101.59189605712919,6.518970012664909],[101.59429931640625,6.528820037841911],[101.60286712646484,6.533470153808707],[101.60851287841808,6.54491996765131],[101.59806823730486,6.55221080780035],[101.59764862060558,6.560521125793571],[101.59310913085955,6.565400123596135],[101.5950775146485,6.567880153656063],[101.59401702880871,6.57285118103033],[101.5969467163086,6.581020832061711],[101.59091186523443,6.58562088012701],[101.58947753906267,6.589009761810416],[101.57814788818365,6.5933198928834145],[101.57415771484403,6.599439144134578],[101.57787322998047,6.609239101409912],[101.57678985595726,6.613570213317985],[101.5781173706057,6.618610858917236],[101.58333587646496,6.623159885406551],[101.58882141113287,6.625791072845516],[101.60076141357422,6.623871803283748],[101.60691070556646,6.631441116333008],[101.61402130126982,6.6327509880067055],[101.61647033691412,6.629569053650016],[101.62036132812494,6.629890918731803],[101.62444305419928,6.633790016174373],[101.62666320800776,6.6298699378967285],[101.63111877441412,6.6294708251953125],[101.63552093505865,6.620801925659293],[101.63941955566418,6.620060920715332],[101.65297698974604,6.62628078460699],[101.65270996093756,6.6133508682251545],[101.66026306152361,6.611081123351994],[101.65956878662132,6.603810787200928],[101.65371704101574,6.601770877838078],[101.65638732910168,6.596620082855225],[101.65965270996088,6.594571113586483],[101.66139984130876,6.587460041046256],[101.66635894775408,6.582689762115422],[101.666976928711,6.578111171722412],[101.67011260986357,6.573450088500977],[101.6790390014649,6.571920871734562],[101.69055175781244,6.571711063385067],[101.70337677001953,6.5674200057984535],[101.71076965332026,6.568290233612174],[101.72515106201178,6.576667785644531]]]},"properties":{"ID_0":228,"ISO":"TH-96","NAME_0":"Thailand","ID_1":33,"NAME_1":"Narathiwat","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"นราธิวาส","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.67066955566412,16.99118995666504],[102.67868804931646,16.97821044921875],[102.68316650390642,16.96825027465826],[102.68112182617193,16.965850830078182],[102.68090057373047,16.95803070068365],[102.67321777343744,16.939960479736328],[102.67279815673857,16.935510635375977],[102.66667175292974,16.923419952392635],[102.66018676757818,16.91301918029785],[102.65246582031267,16.897129058837947],[102.64527893066429,16.886070251464844],[102.64115142822277,16.876979827880803],[102.63655853271513,16.86420059204096],[102.62757873535185,16.843910217285156],[102.62252807617188,16.829059600830192],[102.61915588378929,16.81686973571783],[102.615478515625,16.796550750732422],[102.6148223876956,16.783950805664176],[102.61807250976574,16.774959564208984],[102.61406707763683,16.769451141357422],[102.6138305664063,16.766080856323242],[102.60701751708996,16.766820907592773],[102.57707977294916,16.77298927307129],[102.56321716308594,16.775039672851562],[102.54213714599638,16.77930068969738],[102.52009582519548,16.789199829101562],[102.4977264404298,16.8002605438233],[102.43366241455072,16.786489486694336],[102.42124176025402,16.793489456176815],[102.409896850586,16.798780441284293],[102.4031982421875,16.80288124084484],[102.37911224365229,16.81467056274414],[102.37742614746111,16.80813980102539],[102.37166595458979,16.81031990051281],[102.36736297607428,16.814350128173885],[102.36215209960955,16.814840316772404],[102.35781860351568,16.819721221923942],[102.3550491333009,16.826021194458008],[102.35034179687517,16.82539939880371],[102.35031127929682,16.81814002990734],[102.34542846679693,16.814701080322322],[102.34072875976591,16.82455062866211],[102.33693695068371,16.82951164245617],[102.34098815917986,16.831760406494084],[102.33080291748075,16.841699600219727],[102.33348083496122,16.84661102294922],[102.33204650878906,16.852750778198356],[102.32366180419922,16.85031127929699],[102.31813049316406,16.852989196777457],[102.32594299316406,16.862489700317383],[102.3249588012697,16.86544990539562],[102.31938934326183,16.866720199584904],[102.3136520385745,16.865089416503906],[102.31186676025396,16.869768142700252],[102.30425262451195,16.873300552368107],[102.3036499023438,16.87808036804205],[102.3087997436524,16.87943077087408],[102.30439758300781,16.883882522583065],[102.29389190673828,16.88165855407715],[102.2923812866211,16.88737106323248],[102.28427886962919,16.889062881469783],[102.28041076660179,16.891321182251033],[102.27214050292986,16.891090393066463],[102.26490783691406,16.88949012756359],[102.25586700439464,16.892360687255916],[102.25218963623053,16.88875007629389],[102.25055694580072,16.87998008728033],[102.24413299560547,16.87656974792486],[102.23767852783226,16.877679824829045],[102.22985076904303,16.873161315918026],[102.22727966308588,16.866149902343864],[102.21578216552763,16.859939575195312],[102.20330810546875,16.86039161682129],[102.20131683349621,16.857561111450252],[102.18997955322271,16.856018066406307],[102.18712615966803,16.860080718994197],[102.18611145019548,16.866460800170955],[102.18113708496111,16.869581222534123],[102.17720031738287,16.864070892333984],[102.16913604736345,16.865209579467773],[102.16954040527344,16.86821937561035],[102.16113281250017,16.86949920654297],[102.16050720214855,16.875061035156307],[102.15699768066429,16.879610061645508],[102.136947631836,16.876750946045036],[102.13317871093756,16.88056182861328],[102.12558746337919,16.87969017028803],[102.12001800537115,16.886911392211914],[102.11490631103544,16.88652992248535],[102.11454010009777,16.890520095825195],[102.10607910156273,16.895389556884822],[102.1024780273438,16.894420623779354],[102.09880065917974,16.889360427856445],[102.10108184814453,16.88017082214361],[102.0889282226563,16.88274955749506],[102.08525085449219,16.886671066284237],[102.0728530883789,16.882961273193416],[102.07128143310564,16.889150619506893],[102.06780242919933,16.89519119262701],[102.04872131347685,16.9047527313233],[102.04669189453142,16.909130096435604],[102.04704284667963,16.914260864257756],[102.03861236572294,16.932710647583065],[102.03256225585955,16.949920654296818],[102.03913116455101,16.95569992065441],[102.05844116210966,16.964769363403377],[102.06478881835955,16.96470069885254],[102.06755065917991,16.96210289001465],[102.07505798339855,16.963169097900504],[102.07859039306646,16.96587944030773],[102.07888793945307,16.969690322875977],[102.08901214599626,16.973960876464787],[102.09768676757835,16.985321044921932],[102.09828186035162,17.001211166381836],[102.1118774414062,17.005821228027287],[102.11914062499994,17.002841949463004],[102.12650299072271,17.00568008422863],[102.13349914550781,17.006820678710938],[102.13703155517607,17.01081085205078],[102.14263153076189,17.01130104064947],[102.1455078125,17.016490936279354],[102.14910888671892,17.018909454345703],[102.15297698974615,17.026891708374137],[102.15225219726568,17.03090286254877],[102.14697265624994,17.030929565429744],[102.13919830322283,17.034151077270508],[102.12750244140636,17.04207038879406],[102.1262817382813,17.05005073547369],[102.11885833740257,17.057502746581974],[102.10729217529308,17.06120109558111],[102.10356903076178,17.068399429321403],[102.10636901855486,17.081390380859375],[102.10253906249994,17.086071014404297],[102.1004714965822,17.10118103027338],[102.0945205688476,17.101341247558707],[102.09259033203153,17.109382629394474],[102.0849227905274,17.11224937438965],[102.07537078857445,17.110609054565487],[102.07176971435553,17.112808227539006],[102.06758880615263,17.1193008422851],[102.05311584472668,17.124589920044002],[102.0455398559572,17.124908447265682],[102.03999328613298,17.129070281982536],[102.02953338623047,17.127340316772518],[102.02246093750017,17.131061553955078],[102.0242767333985,17.14908027648937],[102.02173614501953,17.16130828857422],[102.02230834960938,17.164949417114258],[102.03542327880876,17.16276931762701],[102.03775024414062,17.15777015686041],[102.04415130615246,17.15336036682129],[102.04933929443376,17.158050537109375],[102.04872131347685,17.165229797363395],[102.05253601074247,17.1698894500733],[102.0631713867188,17.17526817321783],[102.0650482177735,17.18069076538086],[102.07211303710943,17.183719635009766],[102.07750701904325,17.181720733642692],[102.07936859130882,17.188220977783317],[102.07540130615263,17.192930221557617],[102.06539916992188,17.193298339843693],[102.04612731933594,17.19215965270996],[102.0362396240235,17.19388008117687],[102.01850891113287,17.194730758667106],[102.00437927246094,17.19862937927246],[101.99868011474615,17.20308113098139],[102.0002059936524,17.207281112670955],[102.00826263427763,17.214879989624023],[102.01670837402338,17.212009429931697],[102.0394515991211,17.209611892700195],[102.05504608154291,17.20319938659668],[102.06716918945335,17.203350067138672],[102.07431793212885,17.20739936828619],[102.07553863525396,17.211589813232422],[102.06768798828125,17.21686935424799],[102.06443786621094,17.221790313720817],[102.06137084960955,17.230461120605582],[102.06265258789074,17.242782592773494],[102.07038116455084,17.251480102539006],[102.0685577392581,17.254899978637752],[102.06285095214855,17.250909805297965],[102.0535888671875,17.249219894409237],[102.04891204834013,17.253170013427734],[102.04624176025419,17.259229660034293],[102.04309844970703,17.26127815246582],[102.03624725341803,17.260210037231502],[102.03601074218767,17.264179229736328],[102.03076171875006,17.269662857055664],[102.02890777587885,17.278408050537166],[102.02575683593756,17.27981948852539],[102.01782989501964,17.2773113250733],[102.01542663574219,17.28137016296381],[102.01629638671903,17.286729812622127],[102.0008697509765,17.29583168029785],[101.99687194824213,17.30620193481451],[101.99182891845726,17.313550949096737],[101.99195861816406,17.319097518921012],[101.99996948242188,17.331539154052734],[102.01199340820312,17.33229064941412],[102.02001190185547,17.336639404296932],[102.02234649658226,17.339870452880973],[102.02188873291033,17.344749450683537],[102.01573181152355,17.354459762573242],[102.01496124267607,17.360418319702205],[102.01973724365246,17.364110946655387],[102.02011871337902,17.37181091308605],[102.01239013671875,17.381469726562557],[102.00679016113276,17.38463973999029],[101.9999771118164,17.39394187927246],[101.9877090454101,17.404769897460994],[101.98364257812506,17.41031265258789],[101.98609924316429,17.41416931152338],[101.99424743652344,17.418899536132926],[101.99414825439482,17.423589706420955],[101.98954772949224,17.426210403442496],[101.98919677734403,17.432870864868278],[101.98671722412138,17.43445968627941],[101.99130249023466,17.444522857666072],[101.99014282226591,17.447799682617188],[101.99317932128912,17.457309722900447],[102.0064697265625,17.457189559936637],[102.01740264892584,17.455570220947322],[102.02173614501953,17.457782745361328],[102.03379058837913,17.458070755004996],[102.04502105712896,17.453510284423942],[102.04685974121111,17.45446014404297],[102.05285644531273,17.448560714721737],[102.0739974975586,17.457401275634766],[102.07950592041016,17.458179473876953],[102.08786010742182,17.46396064758312],[102.0946807861331,17.4643611907959],[102.10292816162104,17.474840164184684],[102.11099243164062,17.480440139770508],[102.12338256835938,17.485609054565543],[102.13075256347668,17.492870330810547],[102.12880706787138,17.501180648803768],[102.13181304931646,17.50794982910162],[102.13812255859398,17.50696945190424],[102.1399993896485,17.51580238342291],[102.14267730712896,17.51939964294445],[102.14286804199224,17.529960632324162],[102.13845825195312,17.535831451416016],[102.1374588012697,17.541191101074332],[102.13912200927763,17.54598045349121],[102.13931274414091,17.55549049377447],[102.13681793212919,17.559499740600586],[102.12490844726562,17.566619873046875],[102.12039947509771,17.575300216674748],[102.11975860595703,17.585130691528263],[102.1147003173831,17.594360351562557],[102.1094818115235,17.607751846313533],[102.104721069336,17.61247062683117],[102.10128784179693,17.613090515136832],[102.09342956542969,17.625810623168945],[102.08940124511736,17.628789901733455],[102.08677673339844,17.633941650390625],[102.10102844238298,17.643739700317383],[102.10555267334013,17.64501953125],[102.11155700683594,17.63709068298334],[102.12201690673845,17.63141059875494],[102.13067626953148,17.63399124145502],[102.13468170166038,17.6409912109375],[102.13346862792986,17.645219802856445],[102.14102172851591,17.648250579834098],[102.14396667480486,17.656490325927848],[102.1506958007813,17.66136169433588],[102.16467285156278,17.663490295410156],[102.16757202148432,17.660631179809684],[102.17459869384794,17.660419464111385],[102.18003845214844,17.664539337158203],[102.18708038330078,17.665340423583984],[102.20526885986334,17.65941810607916],[102.22013092041038,17.658340454101562],[102.23412322998058,17.660400390625114],[102.24413299560547,17.663471221923885],[102.24961090087908,17.663690567016715],[102.26464843750011,17.658260345458984],[102.26844024658232,17.65958976745617],[102.2725677490235,17.664840698242188],[102.27812957763678,17.66554069519043],[102.28292846679716,17.671100616455135],[102.30178833007818,17.67242050170904],[102.31987762451178,17.676670074463004],[102.32135772705078,17.660440444946403],[102.32173919677734,17.64372062683117],[102.3260116577149,17.624851226806584],[102.3285522460937,17.602830886840934],[102.32837677001947,17.591739654541072],[102.33580017089838,17.5764617919923],[102.33638000488276,17.56818008422863],[102.33474731445318,17.551500320434684],[102.33606719970703,17.54731941223156],[102.34456634521496,17.538730621337947],[102.35089874267595,17.52753829956066],[102.36128234863304,17.515501022338924],[102.36949920654303,17.500600814819336],[102.37419891357422,17.49061012268072],[102.37776947021479,17.479480743408317],[102.38356018066406,17.465078353881836],[102.3877029418947,17.450429916381836],[102.396957397461,17.42233276367199],[102.40651702880888,17.40230941772461],[102.4125900268557,17.39451980590826],[102.41844177246094,17.384790420532283],[102.43132019042997,17.35997009277355],[102.43305969238293,17.352279663085994],[102.44042968750023,17.337450027465877],[102.44448089599638,17.32380867004389],[102.4430084228515,17.31080818176281],[102.44330596923834,17.290889739990234],[102.44145965576183,17.280099868774528],[102.44931030273455,17.27786064147955],[102.46044158935553,17.27973175048828],[102.47303009033209,17.28409957885748],[102.4893875122072,17.281448364257812],[102.51013946533197,17.28566932678217],[102.52265930175787,17.281780242919922],[102.52860260009794,17.27746963500988],[102.54257202148432,17.273559570312614],[102.55377197265653,17.273691177368164],[102.56050872802751,17.26894760131836],[102.56658172607433,17.267129898071403],[102.57373046875006,17.26811981201172],[102.58051300048822,17.267078399658203],[102.58451843261713,17.27049064636242],[102.59481048583996,17.2654705047608],[102.59635925292963,17.262470245361328],[102.59342193603521,17.257831573486442],[102.59233856201166,17.249660491943303],[102.58233642578148,17.238180160522518],[102.58094787597656,17.23410034179699],[102.57492065429693,17.22817993164074],[102.57134246826183,17.22860908508312],[102.55223846435575,17.22205162048334],[102.54741668701178,17.218231201171932],[102.53279876709013,17.210742950439567],[102.52320098876959,17.20742988586437],[102.51442718505865,17.20719146728527],[102.50708007812494,17.205659866333065],[102.4980392456057,17.205457687377873],[102.48793792724615,17.20341110229498],[102.47544097900408,17.199630737304688],[102.48501586914062,17.176919937133903],[102.49302673339844,17.16579818725586],[102.49684143066406,17.158609390258903],[102.50263977050787,17.153451919555778],[102.50971221923857,17.1352996826173],[102.51410675048857,17.11799812316906],[102.51828765869169,17.107000350952262],[102.52442169189464,17.094240188598633],[102.538818359375,17.072929382324332],[102.54727172851568,17.063230514526367],[102.55294799804693,17.05842018127447],[102.56735229492182,17.04824066162115],[102.57565307617193,17.040561676025447],[102.60666656494158,17.026840209960938],[102.62792968750023,17.013330459594727],[102.64444732666033,17.000759124755803],[102.6572494506836,16.996080398559684],[102.663627624512,16.99518966674816],[102.67066955566412,16.99118995666504]]]},"properties":{"ID_0":228,"ISO":"TH-39","NAME_0":"Thailand","ID_1":34,"NAME_1":"Nong Bua Lam Phu","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"หนองบัวลำพู","VARNAME_1":"Nong Bua Lamphu"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.40622711181658,17.989049911499023],[103.4013290405274,17.979650497436467],[103.3933868408206,17.98393058776861],[103.38989257812506,17.979160308837947],[103.39437866210932,17.976360321044865],[103.39109039306669,17.967140197753906],[103.39144134521507,17.95677185058605],[103.3959121704101,17.95446968078619],[103.40264129638672,17.955280303955135],[103.41075897216825,17.948411941528377],[103.4159927368164,17.93147087097168],[103.41458892822277,17.929290771484432],[103.40676879882824,17.927190780639762],[103.39859008789057,17.927118301391545],[103.39737701416021,17.923429489135742],[103.40235900878935,17.921699523925895],[103.40335083007807,17.913570404052848],[103.4001693725586,17.907102584838924],[103.40276336669933,17.90266990661621],[103.39714813232428,17.895799636840934],[103.38214111328153,17.88508033752447],[103.36995697021496,17.87924766540533],[103.35009765625028,17.87471008300787],[103.34378051757818,17.875989913940487],[103.3402404785158,17.881160736084098],[103.33680725097673,17.882627487182617],[103.32820892333979,17.87823104858404],[103.31836700439459,17.86992073059082],[103.30432128906278,17.865890502929688],[103.3052368164063,17.859519958496207],[103.31195831298857,17.849750518798828],[103.31427764892572,17.839050292968807],[103.30724334716814,17.82637977600109],[103.29714202880876,17.827249526977596],[103.28734588623075,17.836309432983455],[103.28148651123064,17.839500427246207],[103.27259063720709,17.84724807739252],[103.26728820800787,17.854640960693473],[103.2590103149414,17.87337112426752],[103.25422668457048,17.876771926879883],[103.24401092529303,17.887002944946403],[103.23793792724638,17.884042739868164],[103.22795867919928,17.884130477905273],[103.22100067138666,17.875850677490178],[103.21578979492193,17.872369766235295],[103.21013641357416,17.871389389038086],[103.20139312744158,17.864620208740234],[103.19526672363276,17.86688041687023],[103.18876647949213,17.864440917968807],[103.18480682373064,17.85704040527355],[103.18107604980474,17.856529235839844],[103.17806243896513,17.85081291198736],[103.18090057373075,17.849309921264705],[103.17558288574247,17.843210220336914],[103.17296600341814,17.83802986145014],[103.17558288574247,17.83534049987793],[103.1741027832033,17.82808113098156],[103.1709594726563,17.8278102874757],[103.1690521240235,17.815338134765625],[103.1701431274414,17.81163978576666],[103.16738891601574,17.805370330810604],[103.16066741943365,17.803342819213924],[103.15767669677729,17.80451965332037],[103.15116882324247,17.801601409912223],[103.1471481323245,17.80953979492199],[103.14241027832043,17.81071090698248],[103.13430023193365,17.824569702148494],[103.1255722045899,17.83000946044922],[103.13095855712902,17.83568954467779],[103.1297225952149,17.841741561889762],[103.1189422607423,17.848131179809684],[103.11540222167969,17.859420776367188],[103.111068725586,17.859449386596793],[103.10758972167969,17.853771209716797],[103.10347747802763,17.857879638671875],[103.10198211669916,17.867620468139705],[103.0960083007813,17.864810943603516],[103.08866119384783,17.87298965454096],[103.08451080322266,17.87206840515148],[103.08406066894526,17.877559661865178],[103.08065032959001,17.88111114501953],[103.06800079345732,17.87536048889166],[103.0623168945312,17.874189376830998],[103.05600738525402,17.87590980529791],[103.04770660400396,17.882030487060604],[103.04380798339838,17.889789581298828],[103.03925323486345,17.887390136718693],[103.04284667968761,17.88233947753912],[103.04007720947271,17.874811172485465],[103.03270721435575,17.872711181640568],[103.02659606933622,17.875049591064567],[103.01609039306646,17.873399734497127],[103.01194763183605,17.867851257324276],[103.01358795166038,17.861589431762752],[103.01022338867199,17.857660293579215],[103.001708984375,17.854280471801758],[102.99698638916021,17.848979949951172],[102.99526977539068,17.84206962585455],[102.99153900146496,17.84037971496582],[102.98616790771513,17.833271026611442],[102.9853286743164,17.82708930969244],[102.97809600830084,17.820249557495117],[102.97303009033214,17.819150924682674],[102.96570587158209,17.823699951171875],[102.9623489379884,17.82943916320812],[102.96241760253906,17.8375701904298],[102.96080017089872,17.847059249878043],[102.95883941650396,17.850879669189453],[102.94668579101591,17.858560562133846],[102.94579315185564,17.866460800170955],[102.93579101562506,17.878120422363338],[102.93193817138678,17.883871078491325],[102.93123626709013,17.88829040527355],[102.92466735839844,17.888460159301758],[102.9215469360351,17.885751724243164],[102.91320037841814,17.886592864990234],[102.90451812744146,17.885620117187614],[102.90233612060547,17.883699417114315],[102.89438629150413,17.887300491333008],[102.8947677612307,17.892602920532227],[102.88742828369158,17.894098281860465],[102.87346649169933,17.88359832763672],[102.87146759033209,17.871942520141715],[102.87753295898455,17.86873054504406],[102.87548065185553,17.859519958496207],[102.87715148925798,17.853771209716797],[102.86898040771484,17.851760864257812],[102.87184143066406,17.840908050537223],[102.8678588867188,17.841079711914062],[102.85881805419939,17.835990905761776],[102.85352325439453,17.835601806640682],[102.84810638427746,17.832958221435547],[102.85402679443354,17.8224716186524],[102.84584808349626,17.821540832519645],[102.83995819091814,17.818889617919922],[102.83933258056652,17.8161296844483],[102.84291839599638,17.809640884399414],[102.8343887329101,17.805509567260685],[102.83860015869158,17.801261901855526],[102.84422302246116,17.80290985107422],[102.84654235839872,17.80063056945812],[102.84200286865246,17.78980255126953],[102.85238647460938,17.783390045166016],[102.84803771972679,17.77683067321783],[102.85354614257818,17.774980545044002],[102.85576629638689,17.768920898437614],[102.85436248779325,17.762662887573242],[102.85067749023443,17.757431030273494],[102.85272216796892,17.74777984619135],[102.84847259521513,17.746259689331055],[102.84574127197288,17.74101066589367],[102.85272216796892,17.734170913696346],[102.85289764404291,17.726039886474666],[102.84771728515636,17.720609664917106],[102.84786987304693,17.718200683593693],[102.83577728271484,17.71244049072277],[102.83867645263678,17.703100204467717],[102.83226013183622,17.69094276428234],[102.81777954101574,17.684120178222656],[102.80516052246122,17.68197059631359],[102.79635620117193,17.683250427246207],[102.79122924804716,17.680009841919002],[102.787582397461,17.680339813232365],[102.78276824951172,17.671340942382812],[102.78217315673828,17.667530059814567],[102.77681732177751,17.6614093780517],[102.77881622314459,17.653181076049805],[102.77613830566412,17.64480018615734],[102.77062988281278,17.642208099365178],[102.76708984375017,17.643100738525504],[102.76226806640636,17.6389675140382],[102.76535797119158,17.635910034179744],[102.76570129394543,17.629671096801815],[102.76959228515625,17.620889663696346],[102.76825714111328,17.617460250854435],[102.75660705566423,17.618339538574276],[102.75116729736334,17.617401123046932],[102.7476577758789,17.61432266235363],[102.74324035644548,17.61815071105957],[102.74002075195312,17.615159988403377],[102.73445892334001,17.602109909057674],[102.71949005126959,17.602540969848633],[102.71460723876947,17.604209899902344],[102.70041656494146,17.617631912231502],[102.69467163085943,17.617090225219783],[102.68971252441412,17.60872077941906],[102.67613983154297,17.603961944580135],[102.67044830322271,17.594280242920036],[102.66570281982428,17.592121124267635],[102.65032196044916,17.59129905700695],[102.64924621582031,17.596321105956974],[102.65132904052734,17.601160049438477],[102.64830780029303,17.61272048950201],[102.6304321289063,17.61931037902832],[102.60893249511713,17.623689651489258],[102.59963989257812,17.620399475097656],[102.59879302978544,17.626510620117188],[102.60352325439459,17.634599685669002],[102.60404205322266,17.65064048767084],[102.60166931152355,17.654689788818416],[102.59732818603533,17.670679092407283],[102.60057830810564,17.6767196655274],[102.60382843017595,17.676639556884822],[102.60739135742199,17.68071937561035],[102.61080932617216,17.680099487304688],[102.6161422729495,17.684850692749023],[102.60383605957031,17.693510055542106],[102.58986663818354,17.700300216674805],[102.57788085937517,17.710300445556584],[102.57779693603544,17.712810516357422],[102.54596710205107,17.737119674682674],[102.53961944580101,17.74331283569336],[102.54026794433588,17.750650405883903],[102.5353164672851,17.75714111328125],[102.5269775390625,17.760852813720703],[102.51407623291021,17.759580612182617],[102.5029525756836,17.755371093750114],[102.49968719482439,17.757650375366154],[102.4942474365235,17.75383949279791],[102.48750305175781,17.754051208496207],[102.47032928466797,17.751052856445312],[102.46623229980497,17.75497055053711],[102.45498657226591,17.7592010498048],[102.45429992675781,17.766799926757926],[102.45155334472685,17.769371032714844],[102.4466018676759,17.765832901001033],[102.4424209594726,17.765422821044865],[102.43953704834013,17.77567100524908],[102.44197082519537,17.781980514526424],[102.43508148193365,17.78773117065424],[102.4347457885745,17.796150207519588],[102.43279266357428,17.79978942871105],[102.43357086181663,17.806079864501953],[102.44371032714872,17.81802940368658],[102.43495941162138,17.81963920593256],[102.43000030517607,17.817329406738338],[102.42507171630854,17.81995010375988],[102.41172027587885,17.832540512085018],[102.41259765625006,17.83530807495123],[102.40756225585955,17.841011047363395],[102.40148162841797,17.84299278259283],[102.40497589111334,17.853540420532227],[102.40001678466803,17.86520004272461],[102.40290069580107,17.87298965454096],[102.39743041992205,17.88235092163086],[102.39182281494146,17.88959121704096],[102.3893585205081,17.896049499511776],[102.3822021484375,17.89496040344244],[102.37940216064476,17.899150848388672],[102.37169647216814,17.904117584228516],[102.36647796630888,17.905759811401424],[102.36866760253906,17.91188049316412],[102.3675308227539,17.915220260620117],[102.36012268066412,17.916730880737305],[102.35903930664091,17.923719406128043],[102.35202789306635,17.92210006713873],[102.34648895263666,17.924890518188477],[102.34372711181663,17.928831100463924],[102.33718872070312,17.93219184875494],[102.3249588012697,17.93470954895031],[102.31844329833979,17.94178962707514],[102.31182861328125,17.94559288024908],[102.29994964599604,17.96074104309082],[102.2998886108399,17.964460372924805],[102.29530334472662,17.971689224243278],[102.29521942138689,17.979249954223633],[102.29312896728516,17.983600616455192],[102.2869415283206,17.989490509033317],[102.28308868408209,17.987480163574332],[102.28256225585966,17.980970382690543],[102.27549743652372,17.978229522705192],[102.26934051513695,17.98134994506836],[102.26325988769537,17.982299804687557],[102.24530792236351,17.9914493560791],[102.24044799804682,17.998809814453125],[102.22888183593756,18.004159927368107],[102.22315216064453,18.005790710449332],[102.21684265136719,18.003351211547965],[102.2057876586914,18.00687980651867],[102.20379638671886,18.010540008544922],[102.20672607421875,18.017721176147518],[102.20519256591814,18.019950866699162],[102.1891860961914,18.0108585357666],[102.18454742431635,18.011539459228572],[102.17807006835932,18.016010284423942],[102.17459869384794,18.015649795532227],[102.1653976440432,17.99958038330078],[102.16044616699224,17.987619400024414],[102.15666198730497,17.986831665039062],[102.14807128906278,17.993259429931697],[102.14694976806669,17.99978065490717],[102.14125823974604,18.006130218505803],[102.14288330078148,18.019010543823242],[102.144828796387,18.02205085754406],[102.1451416015625,18.032001495361385],[102.13661956787115,18.033399581909293],[102.12721252441406,18.03224945068365],[102.12200164794916,18.028562545776424],[102.10907745361328,18.023590087890625],[102.1055297851563,18.029939651489258],[102.11361694335955,18.042358398437557],[102.11427307128929,18.048101425171012],[102.10913085937523,18.060260772705192],[102.09442901611334,18.05764007568365],[102.09265136718767,18.05462074279791],[102.0873107910158,18.056079864502067],[102.07768249511724,18.062160491943473],[102.0709228515625,18.074079513549748],[102.05802154541021,18.08291053771984],[102.05845642089855,18.091650009155273],[102.0608520507813,18.09699821472168],[102.06452178955084,18.099372863769588],[102.07195281982428,18.135410308838004],[102.07073211669922,18.139299392700252],[102.07533264160156,18.14575004577648],[102.08998107910173,18.15810966491705],[102.09703063964861,18.15779113769537],[102.10488891601562,18.160640716552734],[102.10492706298851,18.173580169677678],[102.10366821289074,18.177761077880973],[102.1057586669923,18.181722640991268],[102.10441589355497,18.197799682617244],[102.10865020751947,18.211460113525447],[102.11241912841825,18.208860397338924],[102.12858581542991,18.211269378662166],[102.1354598999024,18.213779449463004],[102.1423797607423,18.210790634155387],[102.14554595947271,18.204420089721737],[102.15834808349615,18.20169067382824],[102.1656112670899,18.20166969299322],[102.1729125976562,18.184360504150447],[102.17572784423857,18.174800872802734],[102.1808090209961,18.165660858154354],[102.18547058105497,18.14995002746582],[102.18917083740251,18.14480972290039],[102.1989669799807,18.138139724731502],[102.20027160644537,18.133390426635685],[102.21201324462885,18.127990722656307],[102.21983337402338,18.122980117797965],[102.22756958007835,18.115381240844727],[102.2452468872072,18.10096168518072],[102.24839782714872,18.09358024597168],[102.25273895263678,18.087310791015625],[102.27186584472685,18.069860458374137],[102.27770233154297,18.066390991210994],[102.28170013427734,18.0610294342041],[102.29054260253912,18.053220748901424],[102.29960632324236,18.051351547241325],[102.31352233886736,18.04481124877941],[102.3181381225586,18.04414939880371],[102.32707214355486,18.04595947265625],[102.34458160400385,18.04368019104004],[102.34947967529303,18.04215049743658],[102.36573028564464,18.032489776611328],[102.37155914306646,18.028049468994084],[102.3892211914062,18.012630462646484],[102.3952026367188,18.010339736938477],[102.40654754638683,17.999240875244254],[102.41841125488298,17.990701675415096],[102.42694091796903,17.985582351684627],[102.45497131347685,17.97303962707531],[102.45822906494169,17.971109390258846],[102.47563171386736,17.965930938720703],[102.48818969726574,17.964950561523494],[102.49592590332037,17.96586036682129],[102.50956726074213,17.96907234191889],[102.51673126220726,17.96829032897955],[102.52874755859398,17.96183967590332],[102.54242706298828,17.96191978454584],[102.55831146240257,17.966970443725643],[102.57168579101568,17.963859558105582],[102.58804321289068,17.958971023559513],[102.59580993652361,17.958089828491325],[102.60395050048857,17.955551147460938],[102.60955047607439,17.95013046264654],[102.60948944091808,17.946140289306697],[102.61357116699219,17.934089660644645],[102.61202239990251,17.918991088867244],[102.61695098876947,17.91911125183111],[102.6167602539062,17.909820556640682],[102.61357116699219,17.89904022216797],[102.61106872558611,17.89442253112793],[102.608169555664,17.881839752197322],[102.59562683105486,17.860240936279297],[102.59133148193365,17.851930618286246],[102.58998870849615,17.84593009948742],[102.59459686279325,17.836919784545955],[102.59831237792969,17.83357048034668],[102.60408782959007,17.83204078674322],[102.62151336669933,17.83002090454113],[102.63539886474638,17.830450057983512],[102.63963317871105,17.82942008972168],[102.64792633056646,17.82394981384283],[102.6618423461914,17.809579849243278],[102.66969299316429,17.804290771484375],[102.67727661132812,17.801481246948356],[102.68666076660162,17.80278968811035],[102.69487762451195,17.809160232544002],[102.69806671142578,17.815320968627987],[102.69725036621088,17.824644088745117],[102.68276214599604,17.840490341186523],[102.6790466308596,17.84357070922863],[102.67852783203153,17.850679397583008],[102.68747711181669,17.866380691528377],[102.69264984130871,17.8706893920899],[102.70128631591814,17.874799728393555],[102.72009277343778,17.877889633178768],[102.74279785156278,17.88351058959961],[102.74726104736345,17.886779785156364],[102.76164245605474,17.89339065551752],[102.76998138427734,17.901109695434627],[102.77394104003923,17.90719985961914],[102.78160095214844,17.925479888916016],[102.78835296630865,17.932439804077205],[102.79940032959007,17.936651229858455],[102.8119201660158,17.937110900878963],[102.8223419189456,17.940469741821232],[102.8281478881836,17.944379806518498],[102.85134124755871,17.96368980407715],[102.86142730712919,17.970809936523438],[102.86727905273443,17.971220016479606],[102.879638671875,17.97606277465826],[102.90023040771501,17.979379653930607],[102.90975189209001,17.98279953002941],[102.93170928955078,17.995950698852653],[102.94036102294928,17.999635696411133],[102.96134185791021,18.00288009643549],[102.96960449218761,18.002061843872013],[102.98065185546903,17.998470306396598],[102.99080657959001,17.991790771484375],[103.00138092041038,17.986328125000114],[103.0110931396485,17.97546958923334],[103.01946258544922,17.96995925903326],[103.02699279785185,17.970020294189567],[103.0387802124024,17.97546958923334],[103.05686187744146,17.99431037902832],[103.07395172119135,18.016809463500977],[103.07952880859375,18.02579116821289],[103.08380889892584,18.04036140441906],[103.08354187011719,18.04915046691906],[103.07565307617199,18.070550918579045],[103.076431274414,18.077310562133846],[103.08145904541016,18.093040466308594],[103.08200073242205,18.10618972778326],[103.08096313476591,18.10927009582514],[103.08373260498047,18.119859695434627],[103.08766937255871,18.125650405883903],[103.09445953369163,18.13117027282715],[103.1088180541995,18.13914108276373],[103.11544036865257,18.143859863281307],[103.13778686523443,18.1551895141601],[103.14289093017584,18.159469604492244],[103.15043640136713,18.16843986511242],[103.15599060058611,18.181940078735295],[103.15825653076166,18.19623947143566],[103.15808105468767,18.201250076293945],[103.15267181396513,18.21906089782715],[103.15246582031256,18.228269577026424],[103.16588592529291,18.249120712280387],[103.17333984375017,18.256481170654354],[103.18894958496105,18.2635498046875],[103.2045288085938,18.265462875366268],[103.21707153320312,18.271499633789176],[103.22342681884771,18.273241043090934],[103.23947143554716,18.28092002868658],[103.25991821289057,18.283809661865348],[103.28085327148466,18.289989471435547],[103.29189300537115,18.295129776001033],[103.30132293701189,18.302431106567496],[103.30045318603538,18.28862953186041],[103.2967758178711,18.28640937805187],[103.29927825927734,18.27821922302246],[103.2955932617187,18.271270751953182],[103.29064941406267,18.270679473876896],[103.28658294677763,18.267129898071346],[103.27822875976557,18.266492843628043],[103.27583312988287,18.261690139770508],[103.26888275146479,18.257921218872127],[103.2654266357423,18.262702941894645],[103.26204681396501,18.26062965393072],[103.26217651367216,18.246200561523438],[103.26618957519543,18.243890762329215],[103.26873779296875,18.23859024047863],[103.26622772216814,18.237049102783317],[103.26898956298851,18.22966194152832],[103.27783966064447,18.23304939270014],[103.28376007080072,18.232488632202205],[103.28929901123041,18.22678947448736],[103.29901885986322,18.22010040283203],[103.31678771972673,18.211589813232422],[103.32775115966803,18.202249526977596],[103.3299789428711,18.19886970520031],[103.32958984375,18.192131042480582],[103.34094238281278,18.18379020690918],[103.35012054443371,18.179159164428654],[103.3552703857423,18.173521041870174],[103.3590774536134,18.16427993774414],[103.35848999023466,18.16118049621582],[103.34816741943365,18.154159545898494],[103.33817291259766,18.145561218261776],[103.33666229248047,18.135839462280387],[103.32807922363281,18.130090713500977],[103.32428741455084,18.13310050964361],[103.32412719726568,18.137371063232422],[103.3269882202149,18.14659118652338],[103.31784820556669,18.153179168701115],[103.30551910400408,18.153940200805664],[103.30110168457043,18.151790618896598],[103.3001785278322,18.147872924804744],[103.3019104003908,18.140720367431697],[103.29715728759766,18.137430191040096],[103.29837036132818,18.13196945190441],[103.29483795166033,18.106170654296818],[103.2983169555664,18.10165977478033],[103.30216217041021,18.100530624389762],[103.31022644042997,18.103960037231445],[103.31640625000017,18.097091674804744],[103.30821228027361,18.09337997436529],[103.30348968505865,18.087779998779297],[103.30200195312506,18.079010009765682],[103.30755615234403,18.071220397949332],[103.30990600585955,18.070381164550838],[103.31475067138678,18.06056022644043],[103.31449127197283,18.055549621582088],[103.32876586914057,18.05212974548334],[103.3332290649414,18.048339843750114],[103.33715820312494,18.05009078979498],[103.34513854980497,18.047491073608455],[103.35395812988276,18.041738510131893],[103.35842132568365,18.029701232910156],[103.36289978027355,18.02691078186035],[103.37375640869169,18.03074073791504],[103.38221740722673,18.028310775756836],[103.38600921630876,18.02367973327648],[103.3949584960937,18.021299362182617],[103.39450836181646,18.01589965820324],[103.39959716796875,18.00629043579113],[103.40920257568365,18.002510070800838],[103.40354919433588,17.99225807189947],[103.40622711181658,17.989049911499023]]]},"properties":{"ID_0":228,"ISO":"TH-43","NAME_0":"Thailand","ID_1":35,"NAME_1":"Nong Khai","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"หนองคาย","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.56510925292974,13.948651313781681],[100.56867218017595,13.949020385742244],[100.54505920410156,13.84889984130865],[100.53713989257841,13.845101356506404],[100.51412963867205,13.824569702148438],[100.51026153564464,13.824021339416504],[100.50834655761747,13.816530227661246],[100.51685333251959,13.812081336975154],[100.50193023681658,13.799510955810547],[100.47148132324241,13.788299560546818],[100.46945953369135,13.79441070556635],[100.46453857421892,13.796229362487793],[100.43921661376959,13.79848957061779],[100.41233062744146,13.800009727478084],[100.33071899414085,13.803159713745117],[100.31999206542969,13.821471214294377],[100.28256225585955,13.900139808654785],[100.27617645263695,13.913251876831055],[100.26522064209001,13.920121192932072],[100.27085113525396,13.929121017456112],[100.2874374389649,13.945540428161678],[100.29888153076178,13.962091445922965],[100.28720855712896,13.969801902771053],[100.27626800537126,13.979900360107365],[100.27108764648449,13.986561775207633],[100.26914215087919,13.992210388183537],[100.27661132812511,14.000500679016227],[100.26641082763678,14.007990837097225],[100.27362823486328,14.031009674072209],[100.27410888671903,14.042071342468262],[100.27371215820318,14.055669784545842],[100.27436065673845,14.069990158081055],[100.27819824218767,14.084610939025879],[100.27822875976562,14.101572036743164],[100.28079986572294,14.124320030212516],[100.29431915283232,14.13517093658453],[100.29750823974615,14.138701438903809],[100.30213928222685,14.138891220092773],[100.31427764892578,14.13182067871088],[100.32118225097679,14.128731727600154],[100.33486938476562,14.126870155334586],[100.34049987792997,14.122109413146916],[100.34542846679693,14.113931655883732],[100.34352874755888,14.106180191040039],[100.34256744384771,14.095931053161564],[100.33503723144548,14.072610855102539],[100.33322143554693,14.063850402832088],[100.33287811279308,14.053849220275879],[100.33808135986345,14.035269737243766],[100.3455581665039,14.019189834594727],[100.35449981689453,14.002780914306584],[100.35595703125011,13.998319625854492],[100.36379241943354,13.991400718689079],[100.36820983886736,13.989590644836483],[100.38609313964855,13.986231803894043],[100.39012145996088,13.991341590881348],[100.43324279785173,13.980120658874512],[100.44140625000011,13.97598934173584],[100.45375061035162,13.966419219970703],[100.4605102539062,13.97035980224615],[100.46430969238276,13.970669746398983],[100.47006988525408,13.963959693908805],[100.48053741455072,13.955609321594295],[100.49518585205107,13.93916130065918],[100.50142669677757,13.935991287231388],[100.50768280029297,13.941451072692814],[100.51512908935553,13.943018913269157],[100.52617645263672,13.941209793090877],[100.53282165527361,13.944051742553825],[100.53833007812494,13.948510169983024],[100.5415496826173,13.9549303054809],[100.5466232299807,13.952150344848746],[100.56510925292974,13.948651313781681]]]},"properties":{"ID_0":228,"ISO":"TH-12","NAME_0":"Thailand","ID_1":36,"NAME_1":"Nonthaburi","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"นนทบุรี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.95289611816429,14.271981239318961],[100.95112609863281,14.264231681823844],[100.95178222656278,14.259351730346793],[100.94705200195324,14.24773979187006],[100.94725036621088,14.235529899597168],[100.91745758056669,14.220979690551758],[100.91548156738287,14.215821266174316],[100.91493988037132,14.182581901550407],[100.91484832763689,14.136500358581543],[100.91426849365229,14.117940902710018],[100.91590881347662,14.08125972747797],[100.91597747802729,14.066750526428336],[100.91541290283197,14.01702976226801],[100.91574096679716,14.01228046417242],[100.91552734375006,13.95867919921875],[100.9151458740235,13.944261550903377],[100.89894104003912,13.942931175232047],[100.83419036865251,13.934989929199162],[100.8258895874024,13.9334716796875],[100.82183074951178,13.935681343078556],[100.79643249511719,13.930801391601562],[100.77160644531267,13.923740386962947],[100.75260162353521,13.916899681091309],[100.72994995117193,13.915690422058162],[100.72991943359398,13.918740272522086],[100.72141265869152,13.916831970214957],[100.70813751220703,13.916889190673885],[100.70240020751953,13.919140815734863],[100.6991119384765,13.922720909118766],[100.69036865234392,13.92457199096691],[100.69081115722662,13.92893028259283],[100.68261718750023,13.929581642150936],[100.66483306884766,13.929121017456112],[100.64370727539085,13.93016147613531],[100.64108276367216,13.936590194702205],[100.62661743164074,13.93704986572277],[100.62644958496088,13.94800186157238],[100.61493682861334,13.95348072052002],[100.61064910888689,13.954251289367733],[100.60604095458979,13.950901031494084],[100.60523223876982,13.943790435791072],[100.58979034423857,13.9503812789917],[100.57554626464861,13.953400611877498],[100.56510925292974,13.948651313781681],[100.5466232299807,13.952150344848746],[100.5415496826173,13.9549303054809],[100.53833007812494,13.948510169983024],[100.53282165527361,13.944051742553825],[100.52617645263672,13.941209793090877],[100.51512908935553,13.943018913269157],[100.50768280029297,13.941451072692814],[100.50142669677757,13.935991287231388],[100.49518585205107,13.93916130065918],[100.48053741455072,13.955609321594295],[100.47006988525408,13.963959693908805],[100.46430969238276,13.970669746398983],[100.4605102539062,13.97035980224615],[100.45375061035162,13.966419219970703],[100.44140625000011,13.97598934173584],[100.43324279785173,13.980120658874512],[100.39012145996088,13.991341590881348],[100.38609313964855,13.986231803894043],[100.36820983886736,13.989590644836483],[100.36379241943354,13.991400718689079],[100.35595703125011,13.998319625854492],[100.35449981689453,14.002780914306584],[100.3455581665039,14.019189834594727],[100.33808135986345,14.035269737243766],[100.33287811279308,14.053849220275879],[100.33322143554693,14.063850402832088],[100.33503723144548,14.072610855102539],[100.34256744384771,14.095931053161564],[100.34352874755888,14.106180191040039],[100.34542846679693,14.113931655883732],[100.35550689697288,14.112381935119572],[100.3629760742188,14.113341331481934],[100.39364624023443,14.11417102813732],[100.41542816162115,14.1136217117309],[100.42324066162115,14.112901687622127],[100.44355773925798,14.11310005187994],[100.455062866211,14.11492061614996],[100.46489715576166,14.111429214477653],[100.4788208007812,14.110110282898063],[100.4881134033206,14.11184024810791],[100.49784088134794,14.115020751953239],[100.51641082763689,14.126751899719352],[100.5222091674807,14.123121261596737],[100.52732849121094,14.122262001037711],[100.53099822998053,14.118280410766715],[100.54125976562506,14.115781784057617],[100.5494995117188,14.11113071441656],[100.55416870117205,14.111700057983512],[100.55484771728521,14.11660099029541],[100.56192016601591,14.117450714111328],[100.56443023681652,14.12064170837408],[100.57499694824219,14.120989799499625],[100.58293914794933,14.126891136169434],[100.6034774780274,14.133270263671932],[100.60880279541038,14.13350963592535],[100.6161880493164,14.127960205078239],[100.62069702148449,14.131699562072754],[100.62095642089844,14.14046955108654],[100.63173675537138,14.147141456604004],[100.6616973876956,14.162640571594181],[100.6765823364259,14.170760154724121],[100.6995620727539,14.182478904724235],[100.74804687500023,14.20552062988287],[100.76258850097685,14.212809562683105],[100.78415679931652,14.224640846252498],[100.80269622802751,14.231980323791447],[100.82534027099638,14.242641448974666],[100.8389282226562,14.248841285705623],[100.8881072998048,14.272102355957088],[100.8925018310548,14.273280143737793],[100.89280700683616,14.250481605529728],[100.89441680908197,14.243120193481445],[100.91082000732416,14.250481605529728],[100.93681335449219,14.262929916381893],[100.95289611816429,14.271981239318961]]]},"properties":{"ID_0":228,"ISO":"TH-13","NAME_0":"Thailand","ID_1":37,"NAME_1":"Pathum Thani","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ปทุมธานี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.72515106201178,6.576667785644531],[101.71076965332026,6.568290233612174],[101.70337677001953,6.5674200057984535],[101.69055175781244,6.571711063385067],[101.6790390014649,6.571920871734562],[101.67011260986357,6.573450088500977],[101.666976928711,6.578111171722412],[101.66635894775408,6.582689762115422],[101.66139984130876,6.587460041046256],[101.65965270996088,6.594571113586483],[101.65638732910168,6.596620082855225],[101.65371704101574,6.601770877838078],[101.65956878662132,6.603810787200928],[101.66026306152361,6.611081123351994],[101.65270996093756,6.6133508682251545],[101.65297698974604,6.62628078460699],[101.63941955566418,6.620060920715332],[101.63552093505865,6.620801925659293],[101.63111877441412,6.6294708251953125],[101.62666320800776,6.6298699378967285],[101.62444305419928,6.633790016174373],[101.62036132812494,6.629890918731803],[101.61647033691412,6.629569053650016],[101.61402130126982,6.6327509880067055],[101.60691070556646,6.631441116333008],[101.60076141357422,6.623871803283748],[101.58882141113287,6.625791072845516],[101.58333587646496,6.623159885406551],[101.5781173706057,6.618610858917236],[101.57678985595726,6.613570213317985],[101.57787322998047,6.609239101409912],[101.57415771484403,6.599439144134578],[101.57814788818365,6.5933198928834145],[101.58947753906267,6.589009761810416],[101.59091186523443,6.58562088012701],[101.5969467163086,6.581020832061711],[101.59401702880871,6.57285118103033],[101.5950775146485,6.567880153656063],[101.59310913085955,6.565400123596135],[101.58802032470709,6.562359809875545],[101.58258056640636,6.55600118637085],[101.57495117187511,6.554320812225399],[101.56815338134766,6.550510883331242],[101.5622329711914,6.549950122833309],[101.5550460815432,6.553299903869686],[101.54622650146484,6.55512094497692],[101.53565216064464,6.555951118469181],[101.52902984619158,6.563029766082877],[101.5262374877932,6.571209907531681],[101.51828765869169,6.5761399269104],[101.51844787597662,6.579970836639404],[101.52233123779291,6.583170890808219],[101.5216064453125,6.588661193847656],[101.50833892822271,6.60260009765625],[101.50321960449247,6.604569911956901],[101.49677276611322,6.599881172180176],[101.4915390014649,6.604401111602783],[101.48323059082026,6.601369857788029],[101.47647857666021,6.594211101531982],[101.47023773193371,6.596611022949332],[101.4584732055664,6.595090866088867],[101.45976257324213,6.591011047363338],[101.45728302001947,6.581460952758789],[101.45258331298828,6.576469898223934],[101.44860076904303,6.57742977142334],[101.443901062012,6.581970214843693],[101.43744659423822,6.5917811393737225],[101.43270874023455,6.591800212860164],[101.42653656005888,6.595090866088867],[101.41593170166033,6.588661193847656],[101.41349792480474,6.583380222320557],[101.40792083740251,6.581231117248478],[101.40075683593756,6.574150085449162],[101.39032745361322,6.568109989166317],[101.38015747070318,6.569330215454158],[101.37242889404314,6.565820217132625],[101.35909271240251,6.561409950256348],[101.34429168701178,6.561929225921631],[101.34027862548851,6.554171085357723],[101.32383728027344,6.563758850097713],[101.31874847412115,6.568690776825008],[101.31227111816435,6.566350936889705],[101.30500030517584,6.568360805511418],[101.29754638671898,6.578650951385498],[101.29981231689459,6.588140964508057],[101.29335021972679,6.601369857788029],[101.29286956787104,6.6159400939941975],[101.3016510009765,6.618309974670467],[101.30335235595697,6.622091770172119],[101.29782104492182,6.633221149444637],[101.29908752441412,6.645740032196102],[101.29631805419939,6.654429912567082],[101.2922821044923,6.6587610244751545],[101.28959655761747,6.664560794830322],[101.29039764404291,6.669930934906063],[101.29595947265642,6.6739897727967445],[101.29711151123047,6.6774401664734455],[101.29148101806669,6.682159900665397],[101.28501129150419,6.680209159851188],[101.28337097167986,6.675149917602539],[101.28450775146501,6.670119762420768],[101.27886199951195,6.666551113128776],[101.27771759033226,6.659781932830867],[101.27304840087908,6.655801773071403],[101.25312042236334,6.64759016036993],[101.24917602539074,6.644391059875545],[101.23918914794945,6.633409976959342],[101.23204803466814,6.615859985351676],[101.22524261474615,6.6086487770081135],[101.22386932373047,6.60469913482666],[101.21871948242188,6.59775018692028],[101.2149505615235,6.5957489013671875],[101.19918823242216,6.596971035003605],[101.186050415039,6.599709987640381],[101.18036651611345,6.5986299514771645],[101.1694717407226,6.604199886322078],[101.16149139404314,6.603359222412166],[101.15418243408214,6.608920097351188],[101.14961242675793,6.610499858856258],[101.13886260986351,6.6085901260376545],[101.13339996337902,6.609200954437256],[101.1267471313476,6.613451004028434],[101.11342620849626,6.626988887786979],[101.10798645019537,6.628660202026367],[101.10592651367199,6.63109016418457],[101.09329223632818,6.6400117874146645],[101.08574676513689,6.642439842224121],[101.08120727539062,6.648859977722168],[101.06976318359375,6.661688804626465],[101.05848693847673,6.6710400581361],[101.0581665039063,6.676908969879207],[101.06165313720732,6.685330867767448],[101.05767059326183,6.7148499488831135],[101.05245208740257,6.7191600799561115],[101.03276062011719,6.720071792602653],[101.02027893066435,6.723741054534969],[101.01951599121122,6.727590084075928],[101.02324676513678,6.732871055603027],[101.03086853027344,6.738609790802116],[101.03263854980474,6.7453699111939045],[101.02725982666021,6.753699779510612],[101.03292846679705,6.759840011596793],[101.02786254882818,6.769340038299674],[101.02908325195307,6.7789387702941895],[101.03926086425781,6.788499832153377],[101.04265594482439,6.796010017395076],[101.0500793457033,6.798631191253662],[101.05679321289062,6.803569793701172],[101.06122589111351,6.8118300437927815],[101.06150054931635,6.819971084594783],[101.06523132324241,6.8260698318481445],[101.06156158447266,6.832251071930045],[101.05275726318376,6.834469795227051],[101.04308319091803,6.841640949249324],[101.04875183105486,6.84735012054449],[101.0635375976563,6.852330207824821],[101.0629272460938,6.856790065765381],[101.09166717529314,6.86027908325201],[101.09625244140642,6.859583854675293],[101.10221862792974,6.861389160156193],[101.1104431152346,6.861740112304801],[101.12928009033203,6.860582828521842],[101.13407897949224,6.859396934509334],[101.16207122802734,6.861289024353084],[101.16945648193354,6.864140033721924],[101.1863021850586,6.865437030792236],[101.20932769775385,6.8720011711120605],[101.22348022460955,6.878392219543514],[101.23527526855463,6.885753154754752],[101.24584197998053,6.897412776947078],[101.24848175048828,6.901579856872672],[101.2628707885745,6.902482032775879],[101.27134704589861,6.895546913147086],[101.27368164062506,6.891959190368709],[101.28472900390625,6.890633106231803],[101.28163909912126,6.8835740089415935],[101.28662872314453,6.878596782684326],[101.2940063476562,6.878760814666805],[101.30534362792974,6.885643959045353],[101.31010437011719,6.886343955993766],[101.31794738769537,6.878993034362907],[101.323013305664,6.877812862396354],[101.32970428466814,6.870501041412467],[101.33750152587885,6.883055210113525],[101.3444442749024,6.88555479049694],[101.34638977050787,6.889998912811336],[101.34500122070312,6.897500038146973],[101.34140777587896,6.900235176086369],[101.34240722656278,6.910638809204215],[101.3380584716798,6.912778854370174],[101.33166503906256,6.910554885864315],[101.32833099365246,6.913888931274357],[101.32731628417974,6.923369884491024],[101.3226394653322,6.9279217720032875],[101.31445312500017,6.922500133514518],[101.30694580078153,6.929029941558838],[101.3016662597658,6.92777776718151],[101.29645538330107,6.937013149261588],[101.29360961914074,6.938611030578613],[101.28555297851568,6.93750095367443],[101.2891693115235,6.942499160766545],[101.28499603271513,6.948060035705566],[101.28138732910185,6.948334217071533],[101.27444458007818,6.940833091735897],[101.27085113525413,6.943890094757137],[101.26083374023432,6.941111087799072],[101.25749969482445,6.9383330345154945],[101.25194549560553,6.938611030578613],[101.24527740478521,6.933888912201041],[101.2405548095706,6.9355549812316895],[101.2455520629884,6.942499160766545],[101.25583648681669,6.94611215591442],[101.2708358764649,6.947780132293644],[101.27861785888672,6.951670169830379],[101.28778076171875,6.950833797454948],[101.30194091796898,6.944446086883602],[101.31972503662138,6.933332920074577],[101.3380584716798,6.9161109924316975],[101.34694671630882,6.910000801086426],[101.35852813720703,6.903651237487793],[101.38698577880865,6.895068168640137],[101.38968658447271,6.895720005035457],[101.40094757080084,6.891840934753418],[101.41207122802729,6.890594005584774],[101.42562866210932,6.887235164642334],[101.43276214599615,6.88717079162609],[101.44271850585943,6.885112762451286],[101.44565582275385,6.886190891265983],[101.4589233398438,6.882428169250545],[101.47126007080078,6.877176761627311],[101.48413848876982,6.8693480491637615],[101.48999023437506,6.870749950408992],[101.49436187744146,6.866583824157715],[101.49945068359392,6.8677802085876465],[101.50638580322271,6.86291599273693],[101.5152740478515,6.860277175903434],[101.52027893066406,6.860277175903434],[101.52667999267607,6.8646259307862465],[101.53797912597673,6.852119922638053],[101.54478454589872,6.845857143402213],[101.55722045898432,6.846111774444694],[101.56416320800781,6.8358330726623535],[101.59354400634771,6.78523397445673],[101.59787750244158,6.779367923736572],[101.59878540039074,6.775008201599121],[101.6136093139649,6.751133918762207],[101.62934875488298,6.723147869110107],[101.64034271240263,6.714251041412467],[101.64457702636713,6.7080540657044025],[101.65048980712885,6.695841789245662],[101.6675872802735,6.665702819824162],[101.67444610595726,6.6563878059387775],[101.68166351318365,6.644999027252254],[101.68124389648455,6.639037132263184],[101.6843032836914,6.633861064910889],[101.69045257568365,6.627261161804199],[101.68860626220732,6.6211109161376385],[101.69269561767578,6.62125301361084],[101.69075775146501,6.630589962005729],[101.70017242431646,6.616199970245418],[101.71010589599632,6.599501132965145],[101.72515106201178,6.576667785644531]]]},"properties":{"ID_0":228,"ISO":"TH-94","NAME_0":"Thailand","ID_1":38,"NAME_1":"Pattani","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ปัตตานี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.54214477539062,8.101229667663517],[98.55157470703153,8.093809127807674],[98.55670928955084,8.08788967132574],[98.56152343750011,8.086254119873047],[98.56532287597685,8.082521438598576],[98.57453155517595,8.07704162597662],[98.58330535888689,8.075557708740234],[98.58816528320335,8.076589584350643],[98.5985488891601,8.082151412963924],[98.59256744384771,8.07052326202404],[98.59253692626959,8.065143585205135],[98.59494781494158,8.058404922485408],[98.60304260253929,8.04979038238531],[98.61043548583984,8.04426097869873],[98.60230255126959,8.034292221069393],[98.59972381591814,8.018333435058707],[98.60388946533197,8.003609657287654],[98.60327148437528,7.994260787963981],[98.60583496093767,7.98750114440918],[98.60972595214866,7.985833168029785],[98.61248016357416,7.9797358512879555],[98.61414337158232,7.965136051177922],[98.61142730712896,7.952119827270508],[98.61125946044928,7.944379806518555],[98.60737609863281,7.931632995605469],[98.6044998168947,7.928029060363826],[98.60453033447266,7.923396110534725],[98.60005187988293,7.913133144378719],[98.5990600585938,7.898646831512451],[98.59471893310558,7.890277862548942],[98.59288787841797,7.899362087249756],[98.5943679809572,7.903740882873649],[98.59123229980474,7.909580230712834],[98.58277893066406,7.915559768676815],[98.58091735839866,7.911790847778434],[98.58245086669945,7.904910087585506],[98.58376312255865,7.889885902404785],[98.57588958740251,7.902480125427303],[98.57591247558594,7.913198947906494],[98.57422637939459,7.915727138519287],[98.5770492553711,7.924459934234619],[98.57630920410162,7.929581165313834],[98.5713729858399,7.936127185821533],[98.56888580322271,7.94772577285778],[98.5643157958985,7.959352016449088],[98.56722259521513,7.967778205871525],[98.57118225097662,7.973921775817814],[98.57096099853516,7.97675991058361],[98.56472015380865,7.988611221313533],[98.56812286376959,7.992138862609977],[98.57311248779303,7.9875922203063965],[98.57944488525419,7.986111164093131],[98.58638763427734,7.993054866790715],[98.58833312988287,8.005000114440975],[98.58661651611334,8.015340805053711],[98.57932281494158,8.017554283142204],[98.56580352783203,8.034817695617733],[98.55440521240257,8.03393363952648],[98.55094146728521,8.03635215759283],[98.54618835449224,8.047816276550407],[98.54479217529314,8.054421424865836],[98.53868865966814,8.062358856201115],[98.5408325195313,8.067004203796444],[98.53070068359375,8.071371078491154],[98.53219604492205,8.07494926452648],[98.53016662597662,8.082310676574764],[98.52449798584013,8.08906555175787],[98.52554321289062,8.09482574462902],[98.53287506103521,8.09528827667242],[98.53055572509771,8.100555419921989],[98.53350067138683,8.102191925048942],[98.5299682617188,8.11155891418457],[98.54214477539062,8.101229667663517]]],[[[98.55468749999994,8.133728027343864],[98.55612945556663,8.127317428588867],[98.54476928710932,8.133281707763786],[98.53865814208979,8.139288902282658],[98.53563690185564,8.144150733947754],[98.53462982177746,8.150511741638297],[98.53836822509771,8.151038169860897],[98.55131530761719,8.139034271240178],[98.55468749999994,8.133728027343864]]],[[[98.41287231445318,8.149148941040039],[98.40982055664068,8.149583816528377],[98.40774536132818,8.160490036010742],[98.41084289550793,8.16166973114025],[98.41384887695318,8.152843475341854],[98.41287231445318,8.149148941040039]]],[[[98.53900909423857,8.167333602905273],[98.53450012207048,8.172159194946232],[98.53607940673834,8.17701625823986],[98.53972625732445,8.17529106140148],[98.53900909423857,8.167333602905273]]],[[[98.63596343994158,8.186385154724235],[98.63839721679699,8.179345130920524],[98.63356018066429,8.17204475402832],[98.63693237304688,8.167382240295353],[98.63542938232422,8.157810211181697],[98.6312255859375,8.14912414550787],[98.63513183593778,8.148842811584586],[98.63438415527355,8.141607284545898],[98.6319046020509,8.137803077697697],[98.62322235107422,8.131522178649902],[98.62729644775419,8.126940727234],[98.625785827637,8.116740226745605],[98.62284851074224,8.108764648437614],[98.62267303466803,8.101822853088379],[98.61830139160179,8.097469329833984],[98.61902618408203,8.086690902709961],[98.61694335937506,8.08024787902832],[98.60842132568388,8.08270263671875],[98.61055755615246,8.09299278259283],[98.60871887207031,8.096405029296818],[98.6009368896485,8.101962089538688],[98.5967407226563,8.100691795349178],[98.59233856201178,8.094942092895508],[98.57925415039091,8.101506233215332],[98.56603240966803,8.113442420959473],[98.5640258789062,8.119812011718864],[98.57665252685564,8.11424827575695],[98.58230590820341,8.119900703430233],[98.58757019042974,8.118098258972225],[98.59249877929688,8.126940727234],[98.59249877929688,8.136943817138672],[98.59707641601562,8.142919540405273],[98.59764099121094,8.1486177444458],[98.60067749023455,8.154112815857047],[98.61479949951189,8.167241096496696],[98.6203002929687,8.1737699508667],[98.62825775146513,8.179089546203727],[98.62803649902366,8.186420440673885],[98.63596343994158,8.186385154724235]]],[[[98.64001464843756,8.191819190979004],[98.63407897949219,8.194431304931697],[98.63710784912126,8.19990539550787],[98.64001464843756,8.191819190979004]]],[[[98.49053955078153,8.202081680297965],[98.493148803711,8.200228691101017],[98.49230957031244,8.185784339904842],[98.49563598632818,8.176230430603084],[98.4928665161134,8.169118881225643],[98.48731231689482,8.178007125854492],[98.48564910888689,8.186617851257381],[98.48619842529308,8.19772911071783],[98.49053955078153,8.202081680297965]]],[[[98.46747589111357,8.20641040802002],[98.46798706054693,8.200530052185059],[98.45990753173845,8.19610404968256],[98.45452117919933,8.195773124694881],[98.45312500000023,8.201555252075195],[98.45737457275419,8.206829071044979],[98.46720123291016,8.210124969482536],[98.46747589111357,8.20641040802002]]],[[[98.50865936279325,8.207756996154899],[98.50560760498075,8.211091041564941],[98.50337982177729,8.222758293151855],[98.50727081298834,8.222481727600211],[98.50949096679705,8.216089248657227],[98.50865936279325,8.207756996154899]]],[[[98.46459960937528,8.242241859436092],[98.46626281738287,8.24752140045166],[98.47206115722685,8.25191974639904],[98.47320556640653,8.248077392578125],[98.46848297119158,8.246965408325195],[98.46459960937528,8.242241859436092]]],[[[98.46499633789091,8.289999008178711],[98.46694183349604,8.283611297607365],[98.4614868164063,8.285189628601131],[98.46499633789091,8.289999008178711]]],[[[98.58830261230469,8.293573379516658],[98.5971069335938,8.290731430053711],[98.59937286376953,8.287557601928768],[98.59496307373064,8.284541130065861],[98.57572937011719,8.279821395874137],[98.57395172119135,8.28075981140148],[98.57785797119146,8.28895092010498],[98.58830261230469,8.293573379516658]]],[[[98.49778747558622,8.28082370758068],[98.49555206298822,8.276945114135856],[98.48694610595714,8.284444808959961],[98.48611450195318,8.293889999389705],[98.48777770996094,8.30111026763916],[98.49166870117193,8.30111026763916],[98.49916839599621,8.295831680297852],[98.50083160400396,8.284167289733887],[98.49778747558622,8.28082370758068]]],[[[98.45971679687517,8.31350040435791],[98.46787261962902,8.307931900024528],[98.468803405762,8.302555084228516],[98.46263885498053,8.295683860778752],[98.4527206420899,8.304634094238395],[98.44178771972673,8.312541961670036],[98.45596313476568,8.315340995788631],[98.45971679687517,8.31350040435791]]],[[[98.494125366211,8.332198143005428],[98.48832702636736,8.331719398498592],[98.47944641113304,8.33887958526617],[98.47898864746111,8.345748901367188],[98.48969268798828,8.342061996459961],[98.4932937622072,8.337350845336857],[98.494125366211,8.332198143005428]]],[[[98.47664642333996,8.358721733093205],[98.47745513916033,8.356187820434684],[98.47410583496116,8.34501838684082],[98.47611236572283,8.339166641235408],[98.48986816406267,8.329000473022575],[98.49665069580107,8.328863143920842],[98.49912261962919,8.323690414428825],[98.49536895751947,8.318094253540039],[98.49011230468756,8.316701889038086],[98.48252868652372,8.3180313110351],[98.47882843017578,8.325222969055176],[98.47271728515625,8.331773757934684],[98.46396636962896,8.334251403808537],[98.46415710449224,8.340220451354924],[98.46823883056669,8.346570014953556],[98.46488952636719,8.356286048889217],[98.45790100097679,8.360116958618221],[98.45974731445312,8.362860679626465],[98.45760345458979,8.369247436523494],[98.46220397949236,8.37486267089838],[98.46913146972662,8.369990348815861],[98.47039031982439,8.361971855163517],[98.47664642333996,8.358721733093205]]],[[[98.60697937011736,8.365559577941951],[98.60243988037115,8.372909545898551],[98.59538269042974,8.37827301025402],[98.59665679931658,8.38136100769043],[98.6067352294923,8.387030601501579],[98.60901641845714,8.384016036987305],[98.60894012451178,8.369050979614258],[98.60697937011736,8.365559577941951]]],[[[97.64263916015625,8.486158370971793],[97.64608764648438,8.482575416564998],[97.65412902832037,8.477770805358887],[97.64906311035168,8.475278854370174],[97.6440353393557,8.478784561157283],[97.64263916015625,8.486158370971793]]],[[[97.64660644531267,8.494220733642578],[97.64394378662126,8.49483680725109],[97.63527679443365,8.507499694824219],[97.63639068603521,8.508334159851074],[97.64800262451178,8.498962402343807],[97.64660644531267,8.494220733642578]]],[[[97.63111114501982,8.576670646667537],[97.63333129882818,8.573334693908748],[97.64111328125,8.568333625793514],[97.6388854980471,8.560556411743164],[97.63555908203142,8.56138992309576],[97.63416290283232,8.569722175598088],[97.63111114501982,8.576670646667537]]],[[[97.63639068603521,8.59778118133545],[97.64121246337919,8.589357376098633],[97.63819122314464,8.586751937866211],[97.6347198486331,8.591941833496094],[97.63639068603521,8.59778118133545]]],[[[97.64611053466803,8.669170379638729],[97.651107788086,8.668060302734375],[97.65218353271484,8.661933898925724],[97.65145874023443,8.65540885925293],[97.64868927001947,8.64950084686285],[97.65216064453142,8.643790245056096],[97.64949798583984,8.638595581054744],[97.65299224853538,8.632508277893123],[97.64913940429688,8.628658294677734],[97.64675140380888,8.631086349487362],[97.64413452148455,8.639279365539608],[97.64524841308605,8.642452239990291],[97.63876342773449,8.651273727417049],[97.63993072509783,8.65386772155756],[97.63697814941429,8.659818649291992],[97.6391677856447,8.663888931274357],[97.6464614868164,8.66417026519781],[97.64611053466803,8.669170379638729]]],[[[97.64861297607445,8.681944847106934],[97.65351867675781,8.677095413208008],[97.65062713623064,8.673471450805664],[97.6446914672851,8.675911903381348],[97.64083099365263,8.680001258850154],[97.64861297607445,8.681944847106934]]],[[[98.38015747070307,8.926357269287223],[98.37855529785179,8.93265247344982],[98.38343811035173,8.933915138244743],[98.38292694091803,8.928097724914664],[98.38015747070307,8.926357269287223]]],[[[98.3782958984375,8.933369636535701],[98.37586975097662,8.936370849609489],[98.37498474121105,8.943347930908146],[98.37828826904314,8.943101882934684],[98.37983703613281,8.937405586242733],[98.3782958984375,8.933369636535701]]],[[[98.35601043701178,8.977878570556584],[98.36118316650396,8.977005958557243],[98.36910247802729,8.968767166137752],[98.37329864501947,8.956999778747559],[98.36913299560564,8.957829475402946],[98.36190032958984,8.967419624328556],[98.35067749023443,8.976156234741325],[98.35601043701178,8.977878570556584]]],[[[98.26979064941406,9.013904571533317],[98.27880859375006,9.007879257202092],[98.29126739501964,9.004220962524414],[98.3091430664063,8.997900962829647],[98.32160186767572,8.99070835113531],[98.32383728027372,8.982140541076774],[98.31339263916027,8.960721969604606],[98.30886840820312,8.946245193481502],[98.30428314209001,8.941798210143986],[98.29987335205095,8.944098472595272],[98.29586791992205,8.939574241638297],[98.29634094238304,8.928317070007324],[98.28646087646513,8.919844627380371],[98.28275299072266,8.894168853759766],[98.27805328369146,8.885531425476017],[98.2733535766601,8.874479293823299],[98.26945495605491,8.867739677429256],[98.26677703857445,8.875202178955135],[98.26544189453148,8.885129928588924],[98.26371002197271,8.889890670776424],[98.25728607177763,8.900365829467773],[98.2487258911134,8.91238975524908],[98.24867248535162,8.91559028625494],[98.25708007812528,8.930475234985465],[98.25969696044928,8.937460899353141],[98.2621688842774,8.939059257507381],[98.26304626464838,8.95824241638195],[98.26083374023443,8.980278968810978],[98.25514984130882,8.996688842773438],[98.2522201538086,9.00194358825695],[98.2474975585938,9.006388664245662],[98.25244903564459,9.0115327835083],[98.2651672363283,9.015271186828727],[98.26979064941406,9.013904571533317]]],[[[98.28987121582037,9.167780876159782],[98.29677581787138,9.15765476226818],[98.29914855957031,9.150813102722282],[98.29830932617199,9.141023635864315],[98.2967147827149,9.136659622192496],[98.29826354980474,9.133102416992188],[98.29332733154325,9.12528038024908],[98.29718017578136,9.122617721557674],[98.30052947998053,9.126850128173771],[98.30225372314476,9.135572433471737],[98.30555725097668,9.141388893127498],[98.30906677246094,9.13591384887701],[98.30998229980486,9.130510330200252],[98.3195571899414,9.120064735412711],[98.32330322265636,9.118154525756836],[98.32527160644531,9.108954429626579],[98.33079528808611,9.095227241516113],[98.33441162109392,9.08056831359869],[98.32920074462919,9.072941780090332],[98.32760620117193,9.066516876220817],[98.32306671142584,9.063335418701115],[98.3177871704101,9.063036918640194],[98.31710815429693,9.057840347290096],[98.31398773193376,9.054200172424373],[98.30999755859392,9.056000709533635],[98.30934143066435,9.062000274658146],[98.30174255371105,9.069621086120605],[98.30232238769543,9.062870025634822],[98.30790710449236,9.060718536376953],[98.30583190917969,9.054439544677791],[98.3105545043947,9.049721717834416],[98.30511474609398,9.046346664428825],[98.30412292480469,9.039175987243596],[98.2956848144533,9.035308837890682],[98.28713989257812,9.037270545959586],[98.28802490234386,9.031333923339957],[98.2787170410158,9.029599189758244],[98.25190734863304,9.029191970825195],[98.24597930908209,9.031868934631404],[98.25151062011724,9.070380210876522],[98.25186920166021,9.098933219909782],[98.2491683959961,9.126387596130371],[98.25270080566435,9.125341415405387],[98.25602722167986,9.12817192077648],[98.26161956787115,9.140933036804142],[98.26059722900408,9.164360046386719],[98.27458190917974,9.167181968688965],[98.28987121582037,9.167780876159782]]],[[[98.3150024414063,9.17055511474615],[98.31890869140636,9.172307968139648],[98.32189941406273,9.166970252990836],[98.33853149414091,9.148176193237362],[98.33583068847679,9.127779960632267],[98.33139038085938,9.126387596130371],[98.32416534423834,9.135277748107967],[98.31811523437528,9.145833015441951],[98.31166839599621,9.153056144714412],[98.30999755859392,9.159166336059684],[98.30972290039091,9.17055511474615],[98.31333160400396,9.17972183227539],[98.3150024414063,9.17055511474615]]],[[[98.37777709960943,9.197099685669002],[98.36944580078153,9.205910682678336],[98.37248229980497,9.208251953125],[98.37777709960943,9.197099685669002]]],[[[98.36106872558605,9.211572647094783],[98.3592300415039,9.21200084686285],[98.35282135009771,9.220272064209098],[98.35597229003923,9.223571777343807],[98.359115600586,9.21976566314703],[98.36106872558605,9.211572647094783]]],[[[98.31337738037121,9.257340431213436],[98.31726837158203,9.253561019897461],[98.31310272216803,9.244671821594295],[98.30671691894543,9.236619949340934],[98.3058776855471,9.23161792755127],[98.30226898193365,9.226060867309627],[98.29560089111334,9.223838806152287],[98.29199218750028,9.213839530944824],[98.28894042968778,9.21022796630865],[98.28894042968778,9.2024507522583],[98.29476928710938,9.201061248779297],[98.29532623291016,9.19550704956049],[98.29060363769537,9.194951057434025],[98.28595733642595,9.190231323242301],[98.2842178344726,9.179951667785645],[98.27782440185553,9.17800521850586],[98.26949310302763,9.171619415283317],[98.26365661621111,9.171060562133789],[98.26420593261736,9.181340217590389],[98.26255035400396,9.19411659240717],[98.26420593261736,9.199122428894043],[98.26393890380865,9.206062316894645],[98.27227020263672,9.205229759216365],[98.27643585205095,9.208561897277832],[98.28032684326195,9.215505599975643],[98.28199005126953,9.227728843689022],[98.28671264648455,9.228561401367301],[98.29449462890636,9.239671707153434],[98.29810333251982,9.243011474609432],[98.29921722412115,9.251061439514217],[98.30310058593744,9.259118080139274],[98.30838012695318,9.260784149169922],[98.31337738037121,9.257340431213436]]],[[[98.50588226318376,9.308641433715877],[98.51468658447266,9.304059982299918],[98.51892089843756,9.299301147460994],[98.5268783569336,9.296531677246094],[98.52742004394548,9.293500900268612],[98.52462768554693,9.286620140075684],[98.5275268554688,9.270380973815975],[98.52680969238293,9.262630462646598],[98.53041076660185,9.254679679870605],[98.52768707275396,9.247819900512752],[98.52768707275396,9.24321079254156],[98.52334594726591,9.234309196472225],[98.51747894287121,9.231631278991756],[98.51714324951189,9.22815132141119],[98.51161193847673,9.226070404052734],[98.51111602783226,9.222820281982422],[98.50546264648449,9.216931343078613],[98.5025482177735,9.216990470886344],[98.50000762939453,9.21200084686285],[98.49845886230469,9.202779769897575],[98.49632263183588,9.201090812683162],[98.49736022949224,9.193291664123649],[98.4923400878908,9.18770980834961],[98.49578857421875,9.177201271057186],[98.49388885498047,9.172590255737362],[98.49585723876976,9.165269851684684],[98.50190734863281,9.15973091125494],[98.50196838378912,9.153499603271598],[98.4969482421875,9.153390884399471],[98.49214172363298,9.15038013458252],[98.48311614990263,9.149071693420524],[98.48088073730486,9.145449638366756],[98.48503112792997,9.13157939910883],[98.48085021972668,9.122281074523869],[98.48619079589855,9.11614131927496],[98.48426055908232,9.112560272216797],[98.48880004882835,9.10822963714594],[98.49091339111334,9.097060203552303],[98.49077606201183,9.086591720581168],[98.49385833740251,9.08110141754156],[98.4849777221682,9.070099830627555],[98.4806594848634,9.069768905639705],[98.47264099121105,9.06449985504156],[98.47440338134783,9.055191993713493],[98.4733276367188,9.049421310424918],[98.47495269775385,9.043901443481502],[98.4797973632813,9.036589622497615],[98.48486328125011,9.034100532531795],[98.48457336425787,9.028259277343807],[98.48903656005888,9.020530700683594],[98.48764801025413,9.016001701354924],[98.49250793457026,9.014981269836483],[98.49732971191406,9.011300086975154],[98.50482177734398,8.999840736389217],[98.51058197021513,8.997741699218807],[98.50637054443388,8.989130973815918],[98.5051498413086,8.983079910278377],[98.49846649169922,8.983009338378963],[98.4946517944336,8.985131263732967],[98.48281097412126,8.978161811828613],[98.47496032714838,8.976289749145621],[98.462699890137,8.969300270080623],[98.45059967041016,8.965941429138127],[98.44824981689447,8.95689964294445],[98.44921875000017,8.951399803161735],[98.44274139404314,8.945401191711483],[98.44741821289068,8.939500808715763],[98.45514678955095,8.936321258544922],[98.4562301635745,8.932500839233512],[98.45352935791021,8.924401283264103],[98.4541625976562,8.91598033905035],[98.45092773437494,8.908720970153752],[98.44712066650408,8.903519630432186],[98.44525146484375,8.895531654357967],[98.45108032226591,8.894710540771428],[98.45597839355474,8.890130043029785],[98.47139739990234,8.889170646667424],[98.4734268188476,8.89009952545166],[98.48327636718756,8.88566970825201],[98.49318695068382,8.883490562439079],[98.50643157958979,8.87903976440441],[98.5101089477539,8.866421699523983],[98.51380920410185,8.860530853271598],[98.52178955078148,8.85951042175293],[98.52488708496122,8.860540390014705],[98.53408813476557,8.859240531921387],[98.53621673584001,8.85660171508789],[98.53254699707043,8.844591140747127],[98.54265594482433,8.84064960479742],[98.5485916137697,8.8310804367066],[98.55317687988298,8.827660560608024],[98.55561828613293,8.821220397949219],[98.55465698242199,8.814029693603459],[98.56485748291016,8.807050704956055],[98.56913757324247,8.807040214538631],[98.57496643066406,8.803771018982047],[98.58502197265642,8.806230545043945],[98.58753204345703,8.802219390869084],[98.59480285644531,8.800291061401424],[98.5984115600586,8.796999931335563],[98.59937286376953,8.785401344299316],[98.60144042968767,8.782211303710994],[98.59732818603538,8.776921272277832],[98.59732055664085,8.763630867004451],[98.59593963623047,8.759539604187069],[98.5964660644533,8.746509552001896],[98.59387969970709,8.731829643249512],[98.59558868408209,8.72306919097906],[98.59400939941423,8.712029457092342],[98.58869934082031,8.705681800842285],[98.58168029785179,8.703141212463322],[98.58030700683594,8.696549415588436],[98.57292938232428,8.691769599914664],[98.57228088378906,8.685030937194938],[98.57006835937506,8.682079315185547],[98.56310272216814,8.68104171752941],[98.5594024658206,8.675068855285645],[98.55155944824224,8.673450469970817],[98.54574584960955,8.67391109466547],[98.54123687744146,8.67046928405756],[98.53643798828125,8.661391258239746],[98.5425109863283,8.656970024108944],[98.5468292236331,8.656210899353027],[98.55297851562517,8.65211105346674],[98.55517578125023,8.64832973480236],[98.55983734130854,8.645589828491268],[98.5648269653322,8.63803863525402],[98.57659912109386,8.633910179138184],[98.5857620239259,8.628521919250488],[98.59134674072266,8.630460739135742],[98.59925079345709,8.63076019287115],[98.60356903076172,8.62638187408453],[98.60939025878935,8.632350921630916],[98.6117095947265,8.637900352478027],[98.62014007568376,8.636550903320256],[98.62155914306646,8.639261245727653],[98.6285629272461,8.644167900085506],[98.6350173950197,8.642721176147518],[98.6392669677735,8.645000457763786],[98.64383697509771,8.65062046051031],[98.64762878417969,8.658810615539494],[98.65574645996105,8.65822982788086],[98.66113281250017,8.655320167541504],[98.66699981689464,8.656940460205078],[98.6679077148438,8.659741401672477],[98.67413330078125,8.660920143127498],[98.67643737792969,8.658330917358455],[98.68431854248053,8.654661178588867],[98.69454956054688,8.645000457763786],[98.69757843017595,8.640051841735897],[98.69782257080084,8.635471343994254],[98.70316314697271,8.632069587707633],[98.70146942138695,8.627470970153865],[98.70317077636724,8.60447025299078],[98.70635986328125,8.602781295776367],[98.70630645751964,8.595380783081055],[98.69738769531267,8.583831787109432],[98.69483947753935,8.57874965667719],[98.6906280517581,8.575851440429801],[98.69148254394531,8.572080612182617],[98.6832580566408,8.55708026885992],[98.67968750000006,8.542810440063477],[98.67767333984403,8.53837108612072],[98.67735290527361,8.526990890503043],[98.672836303711,8.5118408203125],[98.66484832763695,8.501860618591422],[98.65367889404291,8.483600616455135],[98.64900207519537,8.48085021972662],[98.65383911132824,8.476631164550838],[98.65727996826183,8.47130012512207],[98.65981292724626,8.471509933471793],[98.66324615478533,8.465991973876953],[98.6645584106447,8.453561782836914],[98.66289520263672,8.440902709960938],[98.66512298583979,8.436182975769043],[98.66364288330078,8.42622089385992],[98.65277099609375,8.424974441528377],[98.64699554443354,8.42114543914795],[98.64322662353516,8.413459777832031],[98.64394378662104,8.407154083252067],[98.6476669311524,8.405445098877067],[98.65799713134771,8.38977146148676],[98.65476989746122,8.383092880249023],[98.63937377929682,8.381133079528752],[98.63482666015642,8.37893104553217],[98.62306976318382,8.380291938781852],[98.62088775634783,8.38332462310791],[98.61884307861334,8.39359092712408],[98.61560058593756,8.401176452636832],[98.61197662353521,8.417161941528377],[98.60961914062494,8.420671463012809],[98.60414123535156,8.422270774841365],[98.60939788818371,8.412181854248047],[98.61042022705078,8.401517868041935],[98.60871124267578,8.392761230468864],[98.60156250000028,8.38599014282238],[98.59552001953142,8.38469123840332],[98.59369659423851,8.377987861633414],[98.60024261474621,8.372079849243164],[98.5978927612307,8.366169929504508],[98.5917892456057,8.361046791076717],[98.58149719238304,8.358050346374569],[98.57058715820318,8.359713554382324],[98.57009124755888,8.356505393982047],[98.56554412841808,8.35492324829113],[98.560287475586,8.356440544128361],[98.55920410156278,8.363986968994197],[98.56147003173851,8.370491981506461],[98.56987762451178,8.380601882934684],[98.57089996337885,8.386154174804688],[98.56496429443371,8.389862060546932],[98.566635131836,8.382064819336051],[98.55902862548857,8.373844146728516],[98.55615234375028,8.366079330444336],[98.556137084961,8.360658645629883],[98.55942535400402,8.351779937744197],[98.55647277832037,8.350558280944824],[98.54203033447271,8.36787128448492],[98.5369873046875,8.376290321350098],[98.53482055664074,8.375761032104606],[98.53919219970732,8.362130165100098],[98.55019378662115,8.344140052795524],[98.54953765869135,8.340207099914608],[98.53748321533232,8.341796875000057],[98.53660583496094,8.336181640625],[98.53260040283203,8.333394050598258],[98.5248641967774,8.333605766296387],[98.51856231689459,8.326547622680721],[98.5143661499024,8.325340270996094],[98.51114654541044,8.3280544281007],[98.50675201416044,8.34209060668951],[98.50722503662126,8.352083206176758],[98.51162719726562,8.368339538574332],[98.51537322998058,8.389142036437988],[98.51008605957048,8.378233909607047],[98.50805664062523,8.371111869812125],[98.50457000732422,8.365788459777946],[98.50295257568388,8.359228134155273],[98.50360870361328,8.350000381469727],[98.50027465820341,8.349444389343262],[98.49725341796886,8.35831737518322],[98.49330139160173,8.361063003540039],[98.48664855957031,8.358368873596191],[98.48695373535168,8.364693641662654],[98.4946899414063,8.367569923400936],[98.49316406250006,8.370147705078125],[98.48617553710966,8.36675834655773],[98.48305511474615,8.35805416107172],[98.48860931396507,8.353887557983398],[98.495834350586,8.355832099914608],[98.49833679199241,8.347222328186149],[98.49833679199241,8.340276718139762],[98.49333190917969,8.340555191040153],[98.49028015136719,8.345000267028865],[98.48305511474615,8.346666336059684],[98.47916412353533,8.349165916442871],[98.47913360595714,8.35887527465826],[98.47389221191412,8.362501144409237],[98.47078704834001,8.37023639678955],[98.46457672119163,8.373961448669434],[98.4632186889649,8.377020835876522],[98.45794677734403,8.371712684631348],[98.45665740966814,8.366084098815975],[98.45782470703142,8.358104705810604],[98.46332550048822,8.35657978057867],[98.46684265136724,8.347158432006779],[98.46127319335938,8.342472076416072],[98.4599380493164,8.337471961975211],[98.46334075927751,8.331119537353516],[98.47302246093761,8.326655387878532],[98.47353363037132,8.318733215332088],[98.46670532226591,8.320783615112362],[98.45368957519537,8.322859764099178],[98.44171142578153,8.320836067199707],[98.43002319335943,8.314622879028434],[98.41884613037138,8.305239677429256],[98.41330718994169,8.295282363891658],[98.4152908325197,8.2945814132691],[98.4205780029298,8.30309104919445],[98.4308395385745,8.3105211257934],[98.4385757446289,8.3105087280274],[98.44510650634771,8.307687759399471],[98.45802307128906,8.296467781066895],[98.46083068847668,8.289999008178711],[98.45718383789091,8.28514671325695],[98.45691680908209,8.265563011169377],[98.46094512939476,8.260153770446834],[98.4615173339846,8.251071929931697],[98.4567565917971,8.246039390564022],[98.45529937744152,8.241449356079102],[98.46372985839861,8.239950180053825],[98.46590423584007,8.234965324401855],[98.46809387207026,8.219781875610408],[98.46334838867205,8.221164703369197],[98.46305847167974,8.211668014526424],[98.45494842529314,8.207284927368164],[98.45063018798834,8.200771331787223],[98.44964599609375,8.196294784545842],[98.44394683837896,8.190279960632438],[98.44124603271484,8.179710388183707],[98.43555450439459,8.162777900695858],[98.43860626220709,8.155831336975154],[98.4431762695313,8.15114784240734],[98.44003295898449,8.144019126892204],[98.43772888183622,8.144632339477596],[98.43272399902366,8.137458801269531],[98.42764282226574,8.135569572448674],[98.42375946044945,8.141882896423397],[98.42578887939453,8.145319938659668],[98.42289733886736,8.14981746673584],[98.42221832275396,8.155969619750977],[98.41846466064482,8.159655570983887],[98.41242980957048,8.162139892578182],[98.41028594970714,8.17094898223877],[98.40647888183588,8.162146568298454],[98.40766143798845,8.152540206909237],[98.40180969238287,8.145075798034782],[98.40395355224638,8.13725566864025],[98.39814758300781,8.138378143310604],[98.39343261718773,8.13406085968029],[98.38787078857428,8.126676559448185],[98.38468170166044,8.128251075744743],[98.37416839599632,8.138901710510368],[98.37165069580084,8.156049728393498],[98.3682708740235,8.159542083740291],[98.36655426025396,8.171962738037166],[98.3629074096682,8.174397468566895],[98.36411285400402,8.17843055725109],[98.35983276367193,8.188611984253043],[98.35233306884783,8.190633773803711],[98.34493255615234,8.187520027160645],[98.33879089355486,8.181070327758846],[98.33510589599638,8.18040657043457],[98.32809448242182,8.18579292297369],[98.32814025878906,8.190446853637809],[98.32473754882818,8.191361427307243],[98.3238906860351,8.195889472961369],[98.32784271240263,8.198660850524902],[98.3277587890625,8.204951286316032],[98.31627655029314,8.199152946472168],[98.30323791503935,8.201991081237793],[98.29435729980486,8.20751094818121],[98.2863006591798,8.20734691619873],[98.28208923339872,8.204705238342399],[98.28269958496088,8.221579551696834],[98.28038024902355,8.237190246582031],[98.28238677978521,8.23845005035406],[98.28225708007841,8.245348930358944],[98.27588653564453,8.278001785278434],[98.27085876464855,8.29809474945074],[98.26967620849638,8.305602073669377],[98.265380859375,8.317544937133789],[98.26266479492182,8.335378646850586],[98.25537109375028,8.364520072937012],[98.25605010986328,8.368096351623535],[98.25061035156278,8.382994651794547],[98.24716949462919,8.398433685302678],[98.23970031738304,8.423641204833984],[98.23586273193365,8.434159278869743],[98.23104095459001,8.459555625915527],[98.22503662109403,8.479664802551383],[98.22134399414062,8.501392364502067],[98.2132110595706,8.532502174377441],[98.20938110351568,8.540324211120605],[98.20585632324236,8.556885719299316],[98.20833587646501,8.568526268005428],[98.21166992187506,8.575000762939567],[98.21606445312506,8.573323249817008],[98.21454620361357,8.56427097320568],[98.21908569335943,8.554738998413086],[98.22821807861334,8.548384666442985],[98.22543334960966,8.541975975036621],[98.2206420898438,8.538812637329102],[98.21717071533209,8.527986526489315],[98.22110748291033,8.518983840942383],[98.2264480590822,8.510236740112248],[98.23246765136724,8.50418758392334],[98.23429107666016,8.507991790771541],[98.23053741455101,8.515735626220646],[98.22357940673845,8.522156715393066],[98.22320556640642,8.529850959777946],[98.22621917724621,8.534521102905273],[98.2267456054688,8.54017639160162],[98.23522186279314,8.544961929321346],[98.24118804931646,8.541424751281795],[98.24948120117199,8.527811050415096],[98.25083160400402,8.510277748108024],[98.25553131103538,8.502437591552734],[98.2581634521485,8.504084587097168],[98.25499725341825,8.512499809265137],[98.25417327880865,8.525270462036133],[98.25721740722662,8.528960227966252],[98.25928497314453,8.539929389953727],[98.25440979003935,8.543633460998592],[98.23699188232428,8.553818702697754],[98.22943878173857,8.561580657959041],[98.22569274902361,8.563911437988281],[98.22336578369152,8.56951045989996],[98.22299957275385,8.579116821289176],[98.23456573486334,8.582806587219295],[98.23827362060564,8.586243629455566],[98.24192810058594,8.599081993103084],[98.23947906494146,8.60025405883789],[98.23728942871105,8.606623649597225],[98.23802185058622,8.61592006683361],[98.23155212402355,8.617953300476074],[98.23018646240263,8.621795654296932],[98.23391723632812,8.626059532165527],[98.24386596679693,8.630220413208065],[98.24623870849621,8.638713836670036],[98.24579620361351,8.64779186248785],[98.24720001220714,8.652800559997559],[98.24607849121088,8.660730361938533],[98.241943359375,8.669721603393555],[98.24055480957048,8.686111450195426],[98.23722076416038,8.710832595825195],[98.23555755615246,8.718054771423397],[98.23027801513689,8.724721908569393],[98.2225265502932,8.72853946685791],[98.21926116943365,8.732914924621639],[98.21861267089838,8.741666793823242],[98.22611236572266,8.734167098998967],[98.23501586914057,8.733970642089957],[98.24652099609375,8.742610931396541],[98.25047302246111,8.743411064148063],[98.25575256347685,8.751058578491268],[98.26155853271501,8.76296615600586],[98.26286315917963,8.775055885314885],[98.26165771484403,8.790146827697754],[98.25885772705072,8.801083564758244],[98.25250244140653,8.809165954589787],[98.25988006591803,8.813947677612305],[98.26377868652372,8.819641113281364],[98.26611328125017,8.831574440002441],[98.26548004150419,8.848711013793888],[98.26420593261736,8.859169960021916],[98.27307128906273,8.864500999450684],[98.28244018554693,8.879700660705623],[98.28259277343756,8.885736465454102],[98.28945922851568,8.8934068679809],[98.28749847412126,8.901666641235408],[98.28888702392584,8.918330192566032],[98.29611206054688,8.923889160156307],[98.29833221435541,8.928333282470703],[98.29833221435541,8.936664581298942],[98.30222320556646,8.940834045410156],[98.30927276611328,8.943292617797965],[98.31510162353527,8.956730842590275],[98.32092285156256,8.96558952331543],[98.32238769531267,8.971262931823787],[98.330810546875,8.977115631103459],[98.33428192138678,8.977766990661564],[98.3410186767581,8.974147796630916],[98.35338592529303,8.962634086608887],[98.36055755615234,8.959443092346305],[98.36760711669939,8.94960880279541],[98.37271118164074,8.944382667541618],[98.37417602539068,8.934430122375488],[98.37635803222673,8.927502632141227],[98.37613677978527,8.921951293945312],[98.37975311279308,8.921170234680233],[98.38599395751976,8.93032264709484],[98.38480377197266,8.941082000732422],[98.38005065917974,8.946001052856445],[98.3741989135745,8.962857246398926],[98.37281799316412,8.970138549804801],[98.3703231811524,8.974925041198787],[98.35900878906267,8.98268127441412],[98.35955047607433,8.988935470581168],[98.36618041992216,8.991741180419979],[98.37625122070318,8.994211196899528],[98.3600082397461,8.999089241027832],[98.36173248291021,9.003266334533748],[98.3699569702149,9.008460044860783],[98.37989807128912,9.016334533691406],[98.38697052001982,9.02801513671875],[98.39451599121094,9.027626037597656],[98.39898681640653,9.034502029418945],[98.38774108886747,9.034243583679256],[98.37879180908232,9.025569915771428],[98.36884307861334,9.017987251281738],[98.36399841308594,9.017160415649414],[98.35584259033209,9.011790275573844],[98.35202026367193,9.004820823669547],[98.34728240966803,9.002482414245605],[98.33904266357428,9.005331039428768],[98.33448791503929,9.00879955291748],[98.33292388916016,9.0145845413208],[98.32826232910168,9.015650749206543],[98.32609558105491,9.024525642395076],[98.32005310058605,9.029821395874023],[98.31841278076172,9.033152580261344],[98.32035064697271,9.041300773620662],[98.32734680175798,9.048870086669922],[98.32788085937511,9.053704261779899],[98.33701324462919,9.062771797180119],[98.3468627929688,9.068845748901424],[98.35278320312506,9.070261955261287],[98.36592102050781,9.069660186767578],[98.37085723876953,9.060882568359432],[98.38481903076178,9.058553695678825],[98.38637542724632,9.062441825866756],[98.38017272949236,9.068861961364803],[98.37892150878912,9.075840950012264],[98.37863922119135,9.090650558471623],[98.373832702637,9.080084800720272],[98.36931610107439,9.078610420226994],[98.36559295654303,9.08944034576416],[98.36642456054682,9.094677925109863],[98.37187194824241,9.098326683044434],[98.36840057373047,9.100781440734863],[98.35765838623041,9.093941688537711],[98.35388946533203,9.0939302444458],[98.35323333740263,9.098346710205135],[98.34642791748064,9.112977027893123],[98.350601196289,9.11686992645275],[98.3483047485351,9.119298934936523],[98.3424987792971,9.118611335754508],[98.346733093262,9.128055572509766],[98.3414611816408,9.130393981933594],[98.34185028076189,9.136118888855094],[98.3394470214846,9.151667594909668],[98.32817840576178,9.166445732116813],[98.32603454589844,9.171296119689998],[98.31867980957037,9.182604789733944],[98.3161392211914,9.194023132324332],[98.31701660156261,9.201351165771541],[98.322319030762,9.213802337646598],[98.32607269287115,9.21682071685791],[98.32801818847662,9.22221565246582],[98.3309631347658,9.22235107421875],[98.33386993408203,9.21786117553711],[98.33472442626982,9.207221984863395],[98.33432006835943,9.198160171508789],[98.33751678466803,9.188021659851188],[98.34292602539091,9.181998252868766],[98.34757995605486,9.186182975769043],[98.33931732177746,9.190300941467285],[98.3380966186524,9.200889587402457],[98.34115600585943,9.212141990661735],[98.34610748291021,9.221669197082463],[98.35043334960955,9.218550682067928],[98.35379028320341,9.21239089965826],[98.35903930664062,9.207348823547306],[98.36270904541021,9.206312179565487],[98.37056732177763,9.19937515258789],[98.37081146240229,9.196537017822322],[98.37733459472673,9.192603111267147],[98.37822723388683,9.199050903320312],[98.37416839599632,9.208609580993652],[98.3685379028322,9.208760261535645],[98.36589813232422,9.212615966796875],[98.36719512939447,9.223825454712028],[98.36591339111328,9.227251052856502],[98.34672546386747,9.235401153564453],[98.34420776367193,9.240161895751953],[98.34763336181646,9.24762153625494],[98.35067749023443,9.247808456420842],[98.35858154296886,9.25407600402832],[98.36440277099615,9.262357711791992],[98.36885833740263,9.274259567260799],[98.36750030517584,9.279167175292969],[98.36151123046875,9.278970718383903],[98.36118316650396,9.28380107879633],[98.37068176269531,9.290690422058105],[98.37364196777372,9.288391113281307],[98.37786102294933,9.291793823242188],[98.3791198730471,9.29858112335205],[98.38099670410162,9.32067680358881],[98.3853530883789,9.32919025421154],[98.39108276367188,9.335481643676758],[98.39251708984403,9.347281455993652],[98.40387725830078,9.350421905517578],[98.40939331054688,9.346151351928768],[98.41371154785168,9.339940071105957],[98.4163970947265,9.339821815490666],[98.43424987792991,9.34509086608881],[98.4435119628908,9.351630210876465],[98.45308685302734,9.34768009185791],[98.45656585693382,9.341732025146541],[98.46259307861345,9.335179328918457],[98.46681213378906,9.325289726257381],[98.45643615722668,9.31550121307373],[98.46389007568354,9.314161300659293],[98.46662139892578,9.315320968628043],[98.46997833251964,9.320992469787598],[98.47734069824224,9.314881324768066],[98.48417663574219,9.30758094787609],[98.49336242675787,9.307121276855526],[98.49713897705078,9.30525016784668],[98.50588226318376,9.308641433715877]]]]},"properties":{"ID_0":228,"ISO":"TH-82","NAME_0":"Thailand","ID_1":39,"NAME_1":"Phangnga","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"พังงา","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.14392852783203,7.869651794433594],[100.14119720458996,7.8664112091063885],[100.14054870605491,7.857619762420711],[100.13757324218761,7.839830875396672],[100.13741302490251,7.834550857544059],[100.13318634033214,7.816950798034725],[100.13031005859403,7.811160087585449],[100.1270370483399,7.800680160522575],[100.13182830810575,7.803450107574577],[100.14554595947294,7.809061050415039],[100.15276336669945,7.80915021896368],[100.16406250000028,7.805230140686035],[100.17204284667974,7.804961204528809],[100.1792602539063,7.800250053405705],[100.18303680419922,7.795851230621281],[100.18367004394554,7.790369987487793],[100.1819076538086,7.785971164703369],[100.18766784667991,7.782259941101131],[100.19391632080078,7.782139778137321],[100.19534301757841,7.779050827026424],[100.20073699951189,7.778151035308838],[100.20775604248058,7.780860900878963],[100.22656250000006,7.6713080406188965],[100.22910308837919,7.58967304229742],[100.23518371582037,7.523758888244686],[100.25597381591803,7.493843078613395],[100.28335571289062,7.463926792144889],[100.29602813720709,7.457334995269775],[100.31428527832037,7.498913764953727],[100.33456420898466,7.539475917816219],[100.3725891113283,7.543025970458984],[100.39337921142595,7.506787776947078],[100.39794158935541,7.483117103576717],[100.39052581787126,7.442331790924015],[100.39936828613287,7.4011178016663735],[100.40222167968756,7.376303195953369],[100.41448974609403,7.33295202255249],[100.41990661621111,7.318120956421012],[100.42845916748041,7.30899286270153],[100.42646789550804,7.299297809600944],[100.42646789550804,7.289030075073242],[100.42475128173851,7.2804718017578125],[100.41534423828125,7.276478767395076],[100.40707397460949,7.26935005187994],[100.40637969970703,7.263444900512752],[100.40106201171875,7.262541770935059],[100.3955917358399,7.268081188202018],[100.38492584228544,7.275691032409782],[100.38192749023432,7.282701015472412],[100.38305664062494,7.290430068969727],[100.37898254394537,7.296949863433838],[100.37725830078148,7.30548095703125],[100.37847137451183,7.3103699684143635],[100.37442016601568,7.311110973358211],[100.37158203125028,7.304221153259391],[100.3623275756836,7.303409099578914],[100.35647583007835,7.298541069030819],[100.3555297851563,7.292540073394775],[100.35843658447277,7.283979892730713],[100.36177062988281,7.280361175537109],[100.36035919189464,7.276971817016658],[100.35555267334013,7.274798870086727],[100.34677124023466,7.275551795959473],[100.34004211425787,7.274169921875],[100.3366394042971,7.271201133728141],[100.33618164062517,7.265659809112606],[100.34117889404303,7.2539801597595215],[100.34046936035162,7.249330043792725],[100.33370971679688,7.243570804596061],[100.3344192504884,7.240080833435115],[100.3219604492188,7.235751152038574],[100.31591796875011,7.2305707931518555],[100.30660247802751,7.211389064788818],[100.30207061767578,7.209159851074219],[100.29489135742216,7.211249828338737],[100.28514099121116,7.210721969604606],[100.27945709228544,7.204989910125789],[100.27574157714844,7.198390960693359],[100.26589202880865,7.203020095825309],[100.26087188720703,7.200981140136776],[100.25904083251982,7.1978697776795],[100.24991607666027,7.199380874633903],[100.2419509887697,7.193009853363151],[100.23554229736351,7.194571971893367],[100.22367095947266,7.193580150604248],[100.21581268310564,7.1901087760924725],[100.21190643310553,7.186079978942928],[100.20732879638678,7.1867308616637615],[100.20501708984398,7.183619976043758],[100.20038604736328,7.183780193328857],[100.19789886474626,7.180809974670467],[100.19352722167969,7.1822509765625],[100.18714904785185,7.177190780639762],[100.17468261718756,7.1751599311828045],[100.17064666748047,7.168910980224723],[100.1699905395509,7.164630889892578],[100.16528320312517,7.16212987899786],[100.16490936279297,7.155520915985107],[100.16159820556652,7.155429840087891],[100.15619659423851,7.148731231689396],[100.15056610107416,7.1513800621032715],[100.1466064453125,7.1488800048828125],[100.13552093505876,7.153268814086857],[100.1335830688476,7.157979965209961],[100.12567138671898,7.161640167236385],[100.12010192871094,7.165859222412223],[100.11136627197288,7.165320873260441],[100.1062774658206,7.162180900573787],[100.10518646240251,7.159190177917594],[100.09835815429688,7.15467977523798],[100.09543609619135,7.150809764862174],[100.08341217041027,7.145921230316162],[100.074028015137,7.146280765533561],[100.0683670043947,7.139180183410758],[100.06304931640642,7.13733100891119],[100.0601882934572,7.125720977783203],[100.06501007080084,7.121429920196647],[100.0638427734375,7.116240024566764],[100.06581115722662,7.108809947967643],[100.05651092529308,7.107401847839412],[100.05193328857433,7.11048078536993],[100.04824829101585,7.107339859008789],[100.03971099853544,7.109300136566162],[100.03726196289057,7.107339859008789],[100.03724670410168,7.102040767669735],[100.0333862304688,7.099349021911735],[100.0296096801759,7.091918945312557],[100.02578735351591,7.0921111106873695],[100.02709960937528,7.098770141601619],[100.02416229248047,7.103579044342155],[100.01325988769548,7.108679771423397],[99.99823760986334,7.113489151001033],[99.99201202392607,7.121170043945256],[99.98513793945341,7.138060092926025],[99.97245788574219,7.148161888122615],[99.9681320190432,7.165669918060303],[99.96241760253929,7.166511058807373],[99.95820617675804,7.176550865173397],[99.9591903686524,7.181509971618709],[99.95535278320335,7.189270019531193],[99.95942687988293,7.197090148925724],[99.95630645751976,7.20036077499384],[99.95136260986334,7.201089859008903],[99.94812774658209,7.204230785369816],[99.9464569091798,7.211130142211971],[99.94821929931658,7.215351104736328],[99.93852996826172,7.235249996185416],[99.93309783935558,7.240929126739502],[99.9329833984375,7.246469974517822],[99.93696594238298,7.255010128021297],[99.94071960449247,7.256281852722111],[99.94592285156267,7.268230915069694],[99.94313049316412,7.272150993347168],[99.94011688232428,7.2818012237549965],[99.94064331054693,7.294839859008789],[99.9380569458009,7.30797004699707],[99.93924713134783,7.31512022018444],[99.93611907959013,7.318360805511475],[99.9310607910158,7.317421913147086],[99.91870117187506,7.319201946258545],[99.91165924072271,7.322268962860164],[99.90444946289068,7.329460144042912],[99.90318298339838,7.336060047149658],[99.90439605712896,7.340361118316764],[99.90255737304716,7.344199180603084],[99.90474700927734,7.34882116317749],[99.90360260009766,7.3550000190736],[99.89888763427757,7.358689785003719],[99.89521789550781,7.364921092987117],[99.90159606933622,7.376811027526969],[99.90152740478516,7.387939929962158],[99.89221954345726,7.401010990142822],[99.88706970214866,7.406829833984432],[99.88488006591814,7.413050174713192],[99.87711334228516,7.417991161346549],[99.87711334228516,7.422311782836971],[99.8719482421875,7.42743110656744],[99.87055969238276,7.432981014251766],[99.86595916748058,7.438660144805851],[99.86145782470703,7.441069126129264],[99.86007690429682,7.44680118560791],[99.86086273193376,7.451869964599609],[99.85726165771484,7.460231781005859],[99.84899139404308,7.464049816131592],[99.847671508789,7.469699859619254],[99.84929656982445,7.475599765777702],[99.8531188964846,7.478519916534481],[99.85276794433622,7.482359886169547],[99.84324645996122,7.4942097663879395],[99.84099578857416,7.498750209808463],[99.83618927001982,7.499959945678711],[99.83145141601574,7.504549980163631],[99.82639312744146,7.505980968475342],[99.8203811645509,7.5122509002686115],[99.82115936279291,7.517880916595573],[99.82762145996105,7.526329040527344],[99.82916259765636,7.532830238342285],[99.83669281005865,7.5412402153015705],[99.83413696289057,7.5493102073668865],[99.82283782959013,7.555998802185172],[99.8113632202149,7.573949813842773],[99.80670166015642,7.5766210556029705],[99.79973602294928,7.583351135253906],[99.79712677001947,7.589240074157715],[99.80074310302746,7.597428798675537],[99.80026245117193,7.602220058441219],[99.80227661132807,7.60871076583868],[99.80506896972662,7.611219882965031],[99.8065414428711,7.619430065155143],[99.80892944335949,7.620879173278752],[99.79808044433588,7.629711151123161],[99.79540252685558,7.63811016082775],[99.78540802001976,7.643230915069523],[99.79129791259771,7.645650863647404],[99.80789184570318,7.645669937133846],[99.81333160400402,7.649401187896785],[99.81770324707043,7.65858983993536],[99.816650390625,7.664159774780273],[99.81913757324224,7.669311046600399],[99.81624603271484,7.673608779907227],[99.8178405761721,7.678349971771183],[99.80857086181635,7.6828808784486],[99.7997589111331,7.689610958099365],[99.79760742187523,7.6969499588012695],[99.78827667236351,7.700531005859432],[99.78864288330101,7.707050800323543],[99.78579711914085,7.7138500213623615],[99.78881072998053,7.7184009552001385],[99.78501892089866,7.725780963897819],[99.78379058837908,7.73537015914917],[99.78820037841814,7.742128849029655],[99.7858200073245,7.746390819549617],[99.78044128417991,7.749529838561955],[99.7830810546875,7.760021209716911],[99.77728271484386,7.760560989379826],[99.77356719970709,7.765430927276725],[99.76750183105474,7.768351078033447],[99.76922607421903,7.772999763488883],[99.7653732299807,7.777490139007568],[99.77060699462902,7.782599925994873],[99.77114868164091,7.787621021270809],[99.76699829101557,7.79544115066534],[99.75991058349621,7.801410198211727],[99.75786590576189,7.807859897613639],[99.7582168579101,7.812290191650334],[99.75579071044922,7.8221287727356525],[99.75193023681635,7.824910163879338],[99.75174713134783,7.831301212310791],[99.74916076660179,7.836050033569336],[99.7415161132813,7.837851047515869],[99.7323913574221,7.848649024963322],[99.7330627441408,7.854200839996452],[99.73638916015648,7.855781078338566],[99.74723052978521,7.85857009887701],[99.75025939941406,7.855278968811149],[99.76393890380854,7.860091209411621],[99.77157592773432,7.85689115524292],[99.78291320800787,7.856949806213436],[99.78401947021484,7.860520839691219],[99.79270172119169,7.8653512001038735],[99.79695892334001,7.875181198120174],[99.7984924316408,7.881480216980094],[99.80625152587919,7.890329837799186],[99.81301879882812,7.8898491859436035],[99.81629943847679,7.885920047760067],[99.82157135009783,7.88477087020874],[99.82762145996105,7.887319087982235],[99.83186340332048,7.884998798370418],[99.83676910400419,7.885571002960262],[99.84629058837919,7.891100883483887],[99.84935760498075,7.8877301216126625],[99.8599777221682,7.8894300460816],[99.86326599121122,7.885190963745231],[99.87169647216808,7.889620780944881],[99.87919616699219,7.889560222625789],[99.88114166259771,7.8926591873168945],[99.88781738281256,7.892910003662166],[99.89222717285179,7.8901591300964355],[99.89592742919916,7.893400192260685],[99.90254211425787,7.8897809982299805],[99.9085693359375,7.890370845794735],[99.91181182861328,7.885069847106934],[99.92089080810558,7.88210916519165],[99.92777252197277,7.887771129608268],[99.94010162353538,7.888310909271354],[99.94635009765625,7.890200138092041],[99.9586791992187,7.888760089874268],[99.96530151367216,7.8851408958436195],[99.98020935058605,7.866200923919791],[99.98507690429693,7.861670017242375],[99.99694824218756,7.855251789093074],[100.01159667968756,7.85238885879528],[100.0285415649414,7.846370220184326],[100.03420257568371,7.845910072326717],[100.04463195800787,7.840950012207145],[100.04766845703148,7.836400985717773],[100.05567169189476,7.836330890655574],[100.06089782714855,7.8422517776490395],[100.07325744628935,7.843560218811035],[100.0736007690432,7.847731113433781],[100.07676696777361,7.8508691787720295],[100.0968093872072,7.86204195022583],[100.10980224609375,7.86424112319952],[100.12647247314482,7.865921020507869],[100.14392852783203,7.869651794433594]]]},"properties":{"ID_0":228,"ISO":"TH-93","NAME_0":"Thailand","ID_1":40,"NAME_1":"Phatthalung","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"พัทลุง","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.58582305908197,19.48150062561041],[100.5905303955081,19.472480773925838],[100.58146667480486,19.469240188598633],[100.57670593261719,19.46306991577154],[100.57237243652366,19.460250854492188],[100.56706237792974,19.45195960998541],[100.56661987304688,19.433990478515682],[100.55155181884766,19.422830581665153],[100.54232788085932,19.414520263671932],[100.5384368896485,19.413442611694336],[100.52408599853516,19.40514945983898],[100.51992797851585,19.3978328704834],[100.5226364135745,19.385000228881836],[100.53266906738281,19.376930236816463],[100.53305816650396,19.3728084564209],[100.53748321533209,19.369010925292912],[100.53733062744169,19.36415100097662],[100.53317260742182,19.35850906372076],[100.53643035888689,19.35205078125],[100.54553985595732,19.349929809570426],[100.55587005615229,19.339759826660213],[100.5624008178711,19.33660125732422],[100.56159210205072,19.33245086669922],[100.56298828125,19.32362937927246],[100.56167602539068,19.318969726562557],[100.56524658203142,19.31160926818859],[100.56513977050787,19.307899475097713],[100.57086944580084,19.30621910095209],[100.57260894775419,19.30343055725109],[100.58226776123053,19.305709838867188],[100.59733581542974,19.30406761169445],[100.60807800292997,19.304519653320426],[100.61154174804699,19.306432723999023],[100.61311340332048,19.2994384765625],[100.61197662353533,19.292869567871207],[100.61351776123047,19.28674125671398],[100.61157226562494,19.278409957885742],[100.6089172363283,19.275979995727482],[100.60601806640636,19.266162872314453],[100.60727691650413,19.26226806640625],[100.60669708251959,19.254680633544922],[100.6022720336914,19.249320983886776],[100.6122665405274,19.234830856323356],[100.61849212646484,19.22451019287115],[100.61746215820324,19.220159530639762],[100.62262725830072,19.203950881958008],[100.62351226806646,19.197191238403434],[100.62040710449219,19.191070556640625],[100.6203689575197,19.179269790649528],[100.627670288086,19.171529769897575],[100.62699127197277,19.167772293090877],[100.63224792480474,19.14618110656744],[100.63694000244135,19.14563941955572],[100.63999938964861,19.14118957519537],[100.6389923095706,19.133871078491268],[100.64012908935575,19.124788284301758],[100.64366149902344,19.12290954589855],[100.64887237548834,19.116840362548885],[100.64605712890653,19.114620208740348],[100.63678741455078,19.102912902832145],[100.63041687011747,19.098470687866325],[100.62547302246105,19.097900390625057],[100.62030792236357,19.100940704345646],[100.60736846923822,19.10079956054699],[100.60317993164057,19.102817535400504],[100.59381103515636,19.0968074798584],[100.586723327637,19.094142913818416],[100.58303070068365,19.096538543701286],[100.58236694335949,19.100860595703125],[100.57743835449236,19.10350036621105],[100.57076263427751,19.097581863403377],[100.57064819335943,19.09113121032715],[100.57418823242182,19.089960098266715],[100.56571960449224,19.07810974121105],[100.5659790039062,19.07240104675293],[100.57270812988281,19.06936073303234],[100.58193969726568,19.06236076354986],[100.5873413085937,19.05574035644537],[100.59510803222685,19.053089141845703],[100.59870910644537,19.0490398406983],[100.6135864257813,19.043399810791016],[100.62017822265642,19.034860610962028],[100.62117004394531,19.03145027160656],[100.61567687988304,19.026041030883846],[100.61216735839861,19.024948120117188],[100.60672760009771,19.018470764160156],[100.60099792480474,19.022619247436523],[100.59387969970703,19.025350570678768],[100.58825683593778,19.02550125122076],[100.58434295654297,19.02868080139166],[100.57588195800793,19.028301239013672],[100.57205200195341,19.026510238647518],[100.56511688232428,19.030149459838924],[100.56095886230474,19.03963279724121],[100.55789947509771,19.042579650878963],[100.55110168457026,19.038351058960018],[100.5466232299807,19.04331016540533],[100.53990936279297,19.04244041442871],[100.54286193847685,19.03766059875494],[100.54714965820312,19.01674079895031],[100.54782867431669,19.004440307617244],[100.54736328125006,18.994710922241325],[100.54068756103521,18.99592018127447],[100.53710174560553,18.993970870971793],[100.53346252441429,18.997150421142692],[100.52551269531278,18.9985294342041],[100.51378631591797,18.995807647705192],[100.51217651367199,18.992189407348633],[100.50608825683588,18.988220214843807],[100.50412750244169,18.996778488159237],[100.50492095947277,19.005758285522575],[100.51597595214872,19.01866912841797],[100.51595306396513,19.023139953613338],[100.50971984863276,19.025159835815487],[100.5050811767581,19.029911041259822],[100.49523162841814,19.03407096862793],[100.4925079345706,19.037651062011832],[100.49472808837896,19.0415096282959],[100.49511718750006,19.05058097839367],[100.48530578613276,19.053199768066406],[100.47957611083979,19.0510311126709],[100.46166992187517,19.05238914489746],[100.45375061035162,19.03734970092779],[100.4498367309572,19.028499603271484],[100.4438171386721,19.024232864379883],[100.44101715087919,19.01517105102539],[100.44029235839838,19.004711151123104],[100.43009948730474,18.992969512939567],[100.42958068847668,18.983470916748047],[100.42101287841791,18.980289459228572],[100.42601013183611,18.970680236816463],[100.42430114746111,18.966751098632756],[100.4298706054688,18.964450836181697],[100.42668151855474,18.959537506103572],[100.43000030517595,18.952978134155217],[100.423812866211,18.94535064697277],[100.4077377319336,18.943420410156307],[100.40918731689447,18.93355751037609],[100.40338134765648,18.928800582885742],[100.3970870971682,18.928359985351676],[100.3922958374024,18.92349052429205],[100.39302825927734,18.912090301513786],[100.39006042480474,18.89921951293951],[100.39063262939459,18.894760131835994],[100.38794708251959,18.887840270996094],[100.36855316162121,18.87002944946289],[100.36527252197294,18.862039566040153],[100.36762237548822,18.85132026672369],[100.36534881591814,18.846189498901367],[100.3589096069336,18.841239929199332],[100.34877014160173,18.830249786377067],[100.35005950927746,18.827590942382812],[100.34160614013678,18.82398986816412],[100.34020233154297,18.818609237670955],[100.34220886230497,18.814752578735465],[100.346908569336,18.81195068359375],[100.3419189453125,18.80352020263672],[100.34047698974638,18.81106948852539],[100.32836151123064,18.80940055847168],[100.31835937500028,18.81088256835949],[100.31314849853521,18.80899810791027],[100.3046188354495,18.81655120849615],[100.29294586181663,18.81579971313471],[100.28430938720703,18.818170547485465],[100.27471923828136,18.81682968139654],[100.25939941406256,18.818769454956055],[100.25637054443388,18.816169738769588],[100.25193786621116,18.818370819091854],[100.24138641357439,18.81767082214361],[100.23625183105469,18.821199417114315],[100.2283477783206,18.82348060607916],[100.22384643554688,18.81892967224121],[100.21840667724638,18.81636047363287],[100.20922851562523,18.817270278930607],[100.2080917358399,18.81389808654785],[100.20095062255876,18.812122344970817],[100.18994140625006,18.81637954711914],[100.18718719482416,18.82883071899414],[100.17893218994169,18.830039978027344],[100.17428588867193,18.822851181030387],[100.16838836669928,18.82559967041027],[100.16101074218778,18.83243179321289],[100.15513610839838,18.830440521240348],[100.15444946289068,18.827470779419002],[100.14570617675804,18.822677612304744],[100.14068603515625,18.822410583496094],[100.13582611084013,18.815389633178768],[100.11944580078136,18.817590713501033],[100.1159591674807,18.806961059570312],[100.10565185546898,18.812561035156307],[100.09967041015642,18.813550949096623],[100.09767913818388,18.81855964660656],[100.09065246582043,18.822580337524528],[100.08995819091797,18.82555961608881],[100.08309173583984,18.82344055175787],[100.07493591308616,18.819179534912223],[100.07434844970709,18.815921783447322],[100.06848144531256,18.81534957885748],[100.067855834961,18.827661514282283],[100.063529968262,18.832628250122127],[100.06751251220726,18.84216117858881],[100.07028961181658,18.843601226806754],[100.0689163208009,18.8489608764649],[100.07167053222662,18.856309890747127],[100.07199096679705,18.86349105834961],[100.06806945800804,18.86496925354004],[100.064208984375,18.873979568481445],[100.06050872802746,18.878400802612248],[100.05217742919939,18.88414955139166],[100.04725646972662,18.883520126342887],[100.04177093505865,18.88912010192871],[100.03546905517601,18.900329589843864],[100.02533721923834,18.89441108703619],[100.01825714111328,18.89430046081543],[100.01416778564464,18.897489547729492],[100.01126861572294,18.902660369873104],[100.0043029785158,18.90555953979498],[99.99855804443376,18.90370941162115],[99.9812927246096,18.91806030273449],[99.9792098999024,18.916280746460018],[99.97296142578136,18.92009925842285],[99.96965789794945,18.9248104095459],[99.96351623535156,18.92761039733881],[99.95620727539057,18.93300056457531],[99.95252990722685,18.93845939636242],[99.94692993164068,18.940919876098633],[99.94650268554705,18.945270538330192],[99.9428787231447,18.951879501342773],[99.94161224365257,18.9582195281983],[99.92761230468767,18.977630615234318],[99.91748046874994,18.980670928955135],[99.9142303466798,18.985280990600643],[99.90818786621094,18.98097991943365],[99.90302276611345,18.98456954956066],[99.89492034912138,18.987400054931754],[99.89126586914085,18.986169815063533],[99.88568115234375,18.993379592895508],[99.8849792480471,18.997779846191463],[99.87902069091797,18.998050689697322],[99.87438201904291,18.994689941406307],[99.85861206054688,18.9985809326173],[99.85549163818354,19.00095939636236],[99.84678649902344,19.00213050842285],[99.84004211425776,18.999479293823356],[99.8375625610351,19.003379821777287],[99.83232879638695,19.00686073303217],[99.83165740966791,19.01217842102062],[99.83567047119158,19.016550064087028],[99.83423614501976,19.020269393921012],[99.83658599853527,19.025209426879883],[99.83107757568354,19.03009033203125],[99.83450317382824,19.038471221923885],[99.82528686523443,19.04095077514654],[99.82193756103533,19.044649124145508],[99.82276916503912,19.049591064453125],[99.82174682617205,19.058151245117188],[99.81759643554688,19.060340881347713],[99.81519317626982,19.05701065063488],[99.80696868896507,19.05652046203619],[99.79796600341803,19.05199050903326],[99.78555297851562,19.05401039123535],[99.7833709716798,19.05852127075201],[99.77510833740257,19.062299728393555],[99.77426147460955,19.06553268432623],[99.77577972412126,19.07446098327648],[99.77030944824224,19.076061248779354],[99.76477813720709,19.08929252624523],[99.7663269042971,19.093442916870174],[99.76161956787138,19.113590240478516],[99.75936889648432,19.116382598876896],[99.7604370117188,19.12729263305664],[99.75910186767584,19.13285064697277],[99.7519760131836,19.13641166687023],[99.744369506836,19.142339706421012],[99.7430191040039,19.151081085205192],[99.74067687988276,19.156549453735465],[99.73103332519537,19.16778182983404],[99.7279968261721,19.16761016845703],[99.7308883666995,19.178979873657283],[99.72712707519526,19.187219619751033],[99.72397613525396,19.190481185913086],[99.72360992431663,19.197710037231502],[99.7198104858399,19.20685005187994],[99.71620941162138,19.209751129150447],[99.71765899658203,19.213951110839787],[99.71624755859386,19.220310211181754],[99.71202087402372,19.22902107238781],[99.7127532958985,19.23563003540039],[99.70677947998047,19.23896026611328],[99.7052078247072,19.243278503418082],[99.70732879638689,19.2482204437257],[99.70435333251976,19.253139495849553],[99.70610046386747,19.256839752197322],[99.70506286621094,19.263620376586914],[99.70704650878935,19.272090911865234],[99.70417022705084,19.287719726562614],[99.70439147949247,19.29549026489252],[99.70014953613304,19.300600051879883],[99.6995773315432,19.304479598999137],[99.70300292968773,19.315538406372127],[99.71013641357433,19.328790664672965],[99.7084197998048,19.33580017089855],[99.70839691162138,19.343719482421932],[99.7023162841798,19.345420837402344],[99.70098114013683,19.35062980651867],[99.69686126708984,19.353099822998047],[99.69352722167997,19.360919952392578],[99.6978683471682,19.37799072265625],[99.69541931152372,19.381029129028434],[99.6887664794923,19.396690368652344],[99.68888092041021,19.40270805358898],[99.68451690673851,19.416879653930778],[99.6874465942384,19.418649673461857],[99.70141601562517,19.418100357055664],[99.7065505981447,19.420240402221793],[99.70806121826166,19.423461914062557],[99.71671295166021,19.418071746826286],[99.7183303833009,19.420190811157227],[99.72953033447288,19.423019409179688],[99.73470306396513,19.423019409179688],[99.73699951171903,19.426410675048885],[99.7527694702149,19.433330535888786],[99.75742340087919,19.439041137695312],[99.76628112792969,19.438770294189453],[99.77366638183588,19.441009521484432],[99.77731323242205,19.44029045104992],[99.78929138183605,19.44876289367687],[99.80644226074247,19.449230194091797],[99.81369018554716,19.4484481811524],[99.82846069335938,19.444160461425724],[99.84120178222673,19.444271087646484],[99.84487915039062,19.44329261779785],[99.85379791259783,19.44499015808111],[99.86683654785162,19.44432067871105],[99.87362670898455,19.452749252319336],[99.87908935546903,19.453729629516715],[99.8821563720706,19.447280883789062],[99.88774871826189,19.446620941162166],[99.89131927490263,19.44067192077648],[99.89610290527355,19.436740875244197],[99.9004669189456,19.425359725952205],[99.90400695800781,19.425249099731502],[99.90809631347685,19.42950057983404],[99.91625976562523,19.430908203125057],[99.92331695556663,19.40481948852539],[99.92856597900408,19.409259796142635],[99.93099212646513,19.413509368896598],[99.94447326660179,19.418319702148494],[99.94628906249994,19.42473983764654],[99.95088958740251,19.426828384399528],[99.95880889892584,19.427402496337947],[99.96472167968756,19.426111221313477],[99.97151947021484,19.427690505981502],[99.97441864013695,19.426080703735465],[99.98345184326183,19.427770614624023],[99.98911285400413,19.430589675903377],[99.99423980712896,19.427419662475643],[100.00306701660185,19.429651260376033],[100.01097106933611,19.426811218261662],[100.01023864746094,19.431938171386832],[100.01185607910185,19.43726921081543],[100.02112579345709,19.43436050415039],[100.02893829345703,19.43456077575695],[100.03569030761747,19.44074058532715],[100.04077148437506,19.44269943237316],[100.05018615722685,19.442501068115348],[100.05285644531278,19.44740104675293],[100.05947875976568,19.45063972473156],[100.06365203857422,19.450260162353572],[100.06768035888678,19.455190658569336],[100.07005310058605,19.46313285827648],[100.06736755371122,19.468769073486385],[100.06868743896513,19.476060867309513],[100.07208251953148,19.482440948486328],[100.06674957275413,19.499401092529297],[100.0685424804687,19.505350112915096],[100.06678009033232,19.50857162475586],[100.06925201416044,19.518970489502067],[100.0619812011721,19.524389266967887],[100.06878662109375,19.53832054138195],[100.0850677490235,19.54990959167486],[100.09523773193371,19.550529479980526],[100.10035705566435,19.55282974243164],[100.10971069335966,19.55228805541998],[100.1245880126956,19.552680969238395],[100.13742828369158,19.55515289306652],[100.15003204345703,19.555889129638672],[100.15264892578136,19.560739517212028],[100.16194915771513,19.5619411468507],[100.16535186767601,19.571159362793082],[100.17014312744146,19.57463073730463],[100.16661071777361,19.584270477294922],[100.17189788818371,19.586389541626033],[100.17777252197271,19.58471107482916],[100.18324279785156,19.58539962768549],[100.19638061523438,19.592679977417106],[100.20101165771507,19.59826087951666],[100.20799255371111,19.598209381103516],[100.21591186523443,19.60761070251465],[100.223129272461,19.608970642089844],[100.23352050781261,19.60495185852062],[100.23906707763666,19.60720825195324],[100.24291229248064,19.615400314330998],[100.24401855468744,19.6241397857666],[100.25424957275396,19.635499954223746],[100.25447845459013,19.638650894165096],[100.26148223876976,19.643320083618278],[100.26386260986322,19.64674186706543],[100.27024078369146,19.644300460815487],[100.2759628295899,19.644399642944336],[100.27735137939482,19.648361206054744],[100.28240966796875,19.65011978149414],[100.2831192016601,19.643869400024528],[100.2918319702149,19.641321182251033],[100.29840087890642,19.643989562988338],[100.31118011474626,19.6437606811524],[100.31852722167974,19.64676094055187],[100.32099151611351,19.655120849609318],[100.32483673095732,19.66068840026861],[100.32678222656261,19.670740127563533],[100.33109283447288,19.67429924011242],[100.33660125732428,19.682590484619197],[100.34255981445318,19.685779571533203],[100.35254669189447,19.68754959106451],[100.36058044433611,19.687149047851676],[100.36650085449236,19.69526290893549],[100.37068939209001,19.698841094970817],[100.37448120117182,19.7059001922608],[100.3869400024414,19.70845031738287],[100.39151000976562,19.713108062744197],[100.39235687255888,19.71936988830572],[100.40004730224604,19.727680206298942],[100.4056396484375,19.729391098022518],[100.40856170654303,19.73394012451172],[100.41899871826178,19.73032951354986],[100.4205093383789,19.727100372314567],[100.42762756347662,19.72687911987316],[100.43329620361328,19.719490051269588],[100.43962860107445,19.716970443725643],[100.44113922119146,19.710050582885742],[100.4441223144533,19.70576095581049],[100.43974304199236,19.696439743042106],[100.43521881103521,19.69127082824707],[100.43189239501947,19.67646980285656],[100.42994689941435,19.671270370483512],[100.44335174560564,19.66276931762701],[100.44526672363298,19.65660095214855],[100.44415283203125,19.651260375976676],[100.44557189941435,19.645441055297795],[100.4440460205081,19.638570785522518],[100.44484710693371,19.63327980041504],[100.44953918457054,19.625999450683594],[100.45757293701178,19.626230239868164],[100.46199798584013,19.61680984497076],[100.46968841552751,19.612859725952262],[100.47601318359375,19.61166954040533],[100.48757934570307,19.596549987793082],[100.48842620849615,19.59094047546398],[100.4861068725586,19.58567047119152],[100.48795318603527,19.581249237060547],[100.48944854736357,19.565811157226676],[100.48712158203148,19.56096076965332],[100.48307800292969,19.557493209838924],[100.48532867431658,19.547950744628906],[100.47837829589872,19.540470123291072],[100.47511291503912,19.531970977783317],[100.472640991211,19.52955055236822],[100.47617340087908,19.525171279907283],[100.47801971435575,19.51667976379406],[100.48120880126976,19.51271057128912],[100.48139953613304,19.507062911987248],[100.47811126708984,19.495820999145565],[100.48171997070312,19.48764038085949],[100.48432922363293,19.489879608154297],[100.48947906494152,19.487550735473633],[100.51068115234392,19.486160278320312],[100.53074645996094,19.493980407714844],[100.54511260986334,19.4876708984375],[100.54884338378923,19.488359451294002],[100.55692291259788,19.484439849853572],[100.57187652587902,19.481531143188533],[100.58296966552751,19.48430824279785],[100.58582305908197,19.48150062561041]]]},"properties":{"ID_0":228,"ISO":"TH-56","NAME_0":"Thailand","ID_1":41,"NAME_1":"Phayao","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"พะเยา","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.78736114501976,16.760911941528434],[101.78952026367199,16.7483806610108],[101.78697204589866,16.744689941406193],[101.78256988525396,16.7434597015382],[101.78009796142584,16.737510681152344],[101.7866821289062,16.731210708618107],[101.78884887695312,16.727239608764762],[101.78952789306652,16.720701217651424],[101.7848510742188,16.719680786132926],[101.77796936035156,16.708820343017635],[101.77717590332048,16.70230102539074],[101.77371215820307,16.699939727783317],[101.77583312988298,16.695949554443473],[101.7737197875976,16.685060501098633],[101.76831054687506,16.677900314330998],[101.75253295898432,16.675100326538086],[101.7537689208985,16.66893959045416],[101.7497329711914,16.666679382324162],[101.74552917480469,16.665809631347713],[101.74373626709013,16.659339904785213],[101.73377227783209,16.655981063842773],[101.73419952392607,16.651840209960938],[101.72798156738281,16.649801254272575],[101.7190170288086,16.655570983886832],[101.71903991699219,16.657749176025447],[101.71084594726568,16.663570404052734],[101.70355224609392,16.674789428710994],[101.70015716552734,16.67595100402832],[101.69589233398432,16.6819305419923],[101.68443298339855,16.68628120422369],[101.6554412841798,16.686450958251953],[101.64788055419922,16.681800842285156],[101.63542175292963,16.679069519043082],[101.61943817138689,16.68530082702648],[101.61393737792969,16.69256019592291],[101.6063003540039,16.706171035766715],[101.59494018554716,16.70732116699213],[101.59445953369158,16.715581893920955],[101.58925628662121,16.722320556640682],[101.57834625244169,16.72575187683117],[101.57427215576172,16.72434043884283],[101.56732940673822,16.725168228149414],[101.5622329711914,16.729709625244254],[101.55564880371122,16.728740692138786],[101.5543594360351,16.720331192016545],[101.55670928955078,16.709730148315543],[101.56143951416033,16.704788208007926],[101.56413269042986,16.69626045227062],[101.57206726074247,16.691640853881836],[101.57324981689447,16.682889938354492],[101.57547760009771,16.6760311126709],[101.57901763916016,16.67066764831543],[101.5784683227539,16.66193962097168],[101.57434844970732,16.654069900512752],[101.57344055175776,16.64750099182129],[101.56729125976591,16.646511077880973],[101.56318664550781,16.647769927978516],[101.56331634521496,16.65205001831066],[101.5596313476563,16.654569625854606],[101.55500793457031,16.654399871826172],[101.55114746093767,16.65978050231928],[101.54827117919916,16.66753959655773],[101.54013061523438,16.664060592651424],[101.53656768798834,16.669359207153434],[101.52870941162115,16.67761993408203],[101.51950073242205,16.678060531616325],[101.51548004150408,16.680330276489258],[101.51226043701172,16.675319671630973],[101.5149993896485,16.67169952392578],[101.51345825195335,16.663089752197322],[101.51103210449247,16.656829833984375],[101.51174926757835,16.652580261230412],[101.51554107666021,16.646921157836914],[101.51663970947283,16.6389102935791],[101.52482604980486,16.6313095092774],[101.52783966064464,16.61829757690441],[101.52192687988293,16.615060806274414],[101.51853942871111,16.617361068725643],[101.50781250000011,16.614540100097713],[101.50308990478533,16.610000610351676],[101.50344085693354,16.602069854736442],[101.50209808349604,16.593490600585938],[101.50251770019548,16.586811065673942],[101.49788665771496,16.56937026977539],[101.50025939941406,16.56182098388672],[101.50628662109386,16.557189941406364],[101.51692199707037,16.552528381347713],[101.52072143554693,16.54680061340332],[101.51452636718767,16.54137039184576],[101.50775909423834,16.54141044616705],[101.50660705566412,16.537309646606502],[101.49743652343773,16.537210464477653],[101.49476623535179,16.531248092651367],[101.48690795898438,16.527429580688533],[101.48552703857439,16.52341079711914],[101.47995758056652,16.522619247436637],[101.474349975586,16.527248382568416],[101.4721221923831,16.521089553833065],[101.46685791015642,16.51396942138672],[101.4670486450197,16.507740020751953],[101.46511077880854,16.49995994567871],[101.47366333007824,16.486589431762752],[101.47477722167997,16.476959228515625],[101.46923828125006,16.473329544067326],[101.46340179443376,16.461631774902457],[101.45551300048857,16.45730018615717],[101.45049285888678,16.449840545654354],[101.44873046875017,16.441238403320256],[101.44927215576166,16.435529708862305],[101.43421936035173,16.42975807189947],[101.42900085449247,16.425510406494084],[101.42801666259788,16.42120933532715],[101.4237213134765,16.420410156250114],[101.42163085937517,16.41152763366705],[101.42234802246122,16.407270431518555],[101.41600799560553,16.40785026550293],[101.4111633300783,16.403472900390568],[101.4095306396485,16.39925193786621],[101.4039306640625,16.39598083496105],[101.4136734008789,16.387210845947266],[101.41407775878912,16.38055992126465],[101.41162109375006,16.37454032897955],[101.40283966064476,16.371980667114315],[101.39742279052751,16.367919921875057],[101.39704895019548,16.361339569091854],[101.38728332519526,16.356040954589844],[101.38713073730486,16.349660873413086],[101.38310241699236,16.34416961669922],[101.38343811035185,16.33769989013672],[101.38150787353544,16.326829910278434],[101.38188171386724,16.31883049011236],[101.3839721679688,16.3149795532226],[101.37986755371111,16.306539535522404],[101.37718200683588,16.295940399170036],[101.37239837646479,16.28866004943859],[101.37268066406256,16.28029060363781],[101.37512969970703,16.276609420776367],[101.37625885009783,16.268070220947322],[101.36219787597662,16.26176071166998],[101.35958862304716,16.25597190856945],[101.35494995117193,16.255809783935547],[101.3533172607423,16.2519207000733],[101.35813140869158,16.247310638427848],[101.36476135253918,16.246870040893555],[101.37046051025419,16.240739822387752],[101.37722778320312,16.239669799804688],[101.37726593017584,16.233129501342773],[101.37413787841814,16.230220794677734],[101.37339019775408,16.219100952148438],[101.37973785400396,16.21023178100586],[101.38037872314482,16.205799102783203],[101.37838745117188,16.199499130249137],[101.37979125976591,16.192930221557674],[101.38333892822266,16.187137603759766],[101.37985229492182,16.185461044311523],[101.37306213378912,16.186098098754883],[101.36487579345726,16.1830997467041],[101.36363983154291,16.17534255981451],[101.35764312744146,16.172281265258846],[101.35562133789057,16.16369056701666],[101.34815216064482,16.159309387207145],[101.346176147461,16.15337181091303],[101.3429565429688,16.150899887084904],[101.34429168701178,16.142381668090934],[101.34056854248064,16.13186073303234],[101.34108734130888,16.123149871826286],[101.33677673339861,16.11578941345209],[101.34002685546875,16.10379028320324],[101.33676910400408,16.100940704345703],[101.33772277832048,16.09474945068365],[101.33191680908232,16.085880279541072],[101.33365631103544,16.081951141357536],[101.33254241943354,16.07323265075695],[101.32975006103516,16.06973075866705],[101.32669067382812,16.059249877929688],[101.33116912841825,16.052110671997127],[101.32656860351568,16.04788970947277],[101.32438659667969,16.039340972900447],[101.32565307617199,16.035299301147404],[101.33130645751976,16.03183937072754],[101.33220672607422,16.021530151367244],[101.34216308593756,16.01134109497076],[101.34091186523449,16.00740051269537],[101.34516143798845,15.999979972839355],[101.33995056152372,15.995570182800236],[101.33857727050787,15.991401672363338],[101.34284210205072,15.983730316162223],[101.34816741943371,15.979561805725098],[101.35212707519537,15.974189758300781],[101.35446166992199,15.968061447143612],[101.3580932617187,15.965339660644645],[101.3590469360351,15.961112022400016],[101.36914062500011,15.966169357299862],[101.3736495971682,15.966980934143123],[101.3762512207033,15.963670730590934],[101.37600708007824,15.957180023193416],[101.37351989746122,15.953401565551758],[101.37107849121088,15.935811042785701],[101.36406707763672,15.931229591369572],[101.36505889892584,15.926240921020565],[101.36309051513689,15.920391082763786],[101.3745193481447,15.919210433959961],[101.3761596679688,15.917821884155217],[101.37061309814459,15.908241271972713],[101.36421203613276,15.9058198928833],[101.36279296875006,15.899520874023551],[101.35681915283203,15.8931503295899],[101.352279663086,15.885880470275879],[101.3436508178711,15.887181282043514],[101.3394165039062,15.88529014587408],[101.33294677734392,15.87887191772461],[101.3335800170899,15.874480247497615],[101.3294830322265,15.85509967803955],[101.32769012451195,15.851001739501896],[101.33232879638683,15.848882675170955],[101.33217620849626,15.842400550842285],[101.32653808593773,15.837149620056096],[101.32573699951172,15.830728530883903],[101.33200836181658,15.828600883483944],[101.33238983154314,15.821810722351017],[101.32875061035173,15.816069602966365],[101.32743072509783,15.80492115020752],[101.33177947998041,15.803281784057674],[101.330825805664,15.79945087432867],[101.32241821289074,15.795669555664062],[101.31855010986334,15.790130615234375],[101.31945037841797,15.78623199462902],[101.32376098632807,15.786340713500977],[101.32985687255871,15.783301353454647],[101.33451843261719,15.77594089508068],[101.333061218262,15.771960258483944],[101.33966827392578,15.766368865966797],[101.33759307861334,15.762390136718864],[101.3367919921875,15.753572463989315],[101.34104156494163,15.754340171814079],[101.34918975830078,15.750330924987793],[101.35161590576166,15.74751091003418],[101.36315155029303,15.741950035095329],[101.38514709472685,15.735119819641113],[101.38923645019531,15.742528915405217],[101.39369964599615,15.743540763855037],[101.40231323242216,15.740210533142204],[101.40775299072266,15.73449993133545],[101.40457153320318,15.731241226196289],[101.40148925781256,15.722729682922363],[101.4015426635745,15.70471096038824],[101.400199890137,15.695992469787654],[101.39688873291016,15.687582015991325],[101.39640045166044,15.680830955505428],[101.39324188232422,15.661369323730469],[101.38546752929693,15.640451431274414],[101.38572692871122,15.635919570922908],[101.38314056396484,15.62495136260992],[101.38259124755865,15.618330001831168],[101.37919616699224,15.615389823913688],[101.37172698974615,15.582271575927678],[101.37187957763672,15.57787132263195],[101.36245727539091,15.580081939697322],[101.35527038574236,15.57560062408453],[101.35260772705095,15.576999664306697],[101.339340209961,15.576551437378043],[101.33296966552734,15.572850227356014],[101.31645965576178,15.573201179504395],[101.31196594238298,15.571930885314941],[101.30887603759777,15.55166053771984],[101.30438995361334,15.542119979858398],[101.29197692871094,15.536470413208008],[101.28985595703142,15.529771804809513],[101.29057312011713,15.525240898132324],[101.29785156250017,15.525349617004451],[101.30432128906244,15.521910667419434],[101.30547332763689,15.51754188537609],[101.30359649658203,15.51270961761469],[101.30509185791033,15.506690979003906],[101.30407714843778,15.500141143798885],[101.30667877197271,15.488781929016227],[101.30419158935547,15.481850624084586],[101.30809783935575,15.47129154205328],[101.30454254150408,15.465770721435547],[101.30329132080084,15.459371566772518],[101.29940795898438,15.454330444336051],[101.3033599853515,15.438009262085018],[101.3089370727539,15.433341979980582],[101.30410766601574,15.428780555725154],[101.30387878417997,15.422780036926383],[101.30631256103521,15.414742469787598],[101.30484771728544,15.4085311889649],[101.30429077148449,15.39308071136486],[101.30655670166044,15.386639595031738],[101.30110931396501,15.383230209350586],[101.29946899414068,15.378669738769531],[101.29551696777355,15.375681877136174],[101.28643035888672,15.372720718383846],[101.2816467285158,15.364139556884822],[101.27742004394526,15.360449790954647],[101.26985931396484,15.358830451965389],[101.25411987304716,15.350510597229004],[101.24907684326178,15.352069854736328],[101.24343872070341,15.349560737609977],[101.23290252685553,15.341760635375977],[101.22531127929716,15.341300964355469],[101.2134628295899,15.332380294799862],[101.2128601074221,15.324700355529728],[101.20606231689464,15.318620681762638],[101.19780731201178,15.326571464538631],[101.19087219238281,15.328310012817496],[101.1845932006836,15.325110435485897],[101.16871643066423,15.325090408325309],[101.15625762939482,15.32363128662115],[101.13883972167974,15.324171066284237],[101.13217926025413,15.326399803161621],[101.12918090820341,15.329879760742188],[101.11399841308611,15.335659980773869],[101.10668945312511,15.335561752319336],[101.10099792480463,15.347789764404354],[101.0928802490235,15.35060024261469],[101.07701110839844,15.345470428466854],[101.07087707519548,15.336111068725586],[101.04551696777361,15.335220336914062],[101.02426910400419,15.337629318237305],[101.02233123779303,15.339411735534782],[101.01811218261724,15.352621078491325],[101.01010131835943,15.363299369812012],[101.0035476684572,15.366620063781738],[100.99581146240257,15.372320175170842],[100.99182128906256,15.378669738769531],[100.98281860351568,15.381780624389705],[100.97798156738298,15.385508537292537],[100.97965240478544,15.41178989410406],[100.97672271728521,15.414759635925407],[100.97077941894531,15.414031028747615],[100.96118164062494,15.419400215148869],[100.9581604003908,15.425421714782715],[100.95128631591814,15.43443965911871],[100.95121002197294,15.441972732544059],[100.94937896728533,15.445031166076774],[100.92906951904303,15.453310966491642],[100.9255599975586,15.458000183105412],[100.9207229614259,15.45637035369873],[100.91024017333996,15.464461326599064],[100.9078369140625,15.463351249694881],[100.89659118652344,15.473810195922908],[100.88539886474615,15.473600387573185],[100.87795257568365,15.47494029998785],[100.86395263671875,15.473260879516715],[100.85395050048857,15.470330238342342],[100.845458984375,15.47296047210699],[100.84413146972656,15.477499961853027],[100.83962249755865,15.479961395263729],[100.83271026611334,15.477850914001465],[100.82614898681635,15.478870391845817],[100.8100280761721,15.487780570984],[100.80420684814447,15.501210212707633],[100.79702758789062,15.507950782775993],[100.79486846923822,15.511931419372672],[100.79541015625011,15.519319534301758],[100.79174804687506,15.522879600524902],[100.78330230712896,15.523299217224178],[100.77485656738298,15.52041053771967],[100.76104736328153,15.5215101242066],[100.7702713012697,15.532159805297908],[100.7763977050783,15.532479286193848],[100.7840576171875,15.535950660705623],[100.79074859619146,15.536140441894588],[100.7993927001956,15.547430992126408],[100.80558776855469,15.55360031127941],[100.80739593505888,15.558459281921387],[100.8144226074221,15.568781852722225],[100.81044006347662,15.571820259094238],[100.81891632080095,15.581669807434196],[100.81899261474632,15.584140777588004],[100.81086730957043,15.59105110168457],[100.81014251709001,15.594360351562614],[100.81352996826183,15.599470138549748],[100.81764221191412,15.600231170654297],[100.82688140869152,15.61195087432867],[100.82010650634766,15.628011703491268],[100.82235717773455,15.634589195251408],[100.82771301269531,15.644061088562012],[100.82518005371088,15.659621238708496],[100.82933807373075,15.664650917053223],[100.82852935791038,15.674461364746207],[100.8343811035158,15.678731918335018],[100.84691619873058,15.685408592224178],[100.85009765625006,15.694310188293457],[100.84716033935564,15.705940246582145],[100.83866119384771,15.708150863647575],[100.83196258544945,15.707091331481934],[100.82035064697271,15.711640357971248],[100.82109069824241,15.716682434082031],[100.82109069824241,15.737891197204647],[100.82041931152338,15.752101898193416],[100.8051071166995,15.803090095520076],[100.79850769042986,15.8241605758667],[100.80441284179705,15.830890655517635],[100.81062316894537,15.844090461731014],[100.80889129638695,15.849210739135742],[100.81302642822266,15.855710983276424],[100.81034851074236,15.861140251159668],[100.8128433227539,15.872179985046387],[100.81233215332037,15.879140853881836],[100.80516052246088,15.887022018432674],[100.79516601562506,15.891579627990723],[100.78703308105463,15.892451286315975],[100.78234100341797,15.89619064331066],[100.77516174316435,15.89690017700201],[100.77063751220697,15.900800704956168],[100.76526641845732,15.909970283508244],[100.76436614990251,15.922600746154899],[100.76846313476568,15.93058109283453],[100.7674560546875,15.93732929229742],[100.77025604248041,15.942361831665039],[100.77762603759771,15.959621429443416],[100.7784576416015,15.972340583801213],[100.78559112548834,15.981900215148926],[100.78379058837885,15.990171432495117],[100.78498840332031,15.993471145629883],[100.77876281738287,15.996101379394531],[100.77687072753912,15.998880386352596],[100.77157592773449,15.998451232910213],[100.76264190673845,16.0070419311524],[100.75364685058605,16.00999832153326],[100.74762725830078,16.015590667724723],[100.73200988769537,16.023841857910213],[100.72303009033209,16.026939392089957],[100.71718597412138,16.027362823486385],[100.7032928466798,16.032091140747127],[100.65653228759794,16.046550750732422],[100.6482772827149,16.043411254882812],[100.63745117187528,16.047189712524528],[100.64504241943382,16.05041122436529],[100.6563873291015,16.10653114318859],[100.65495300292974,16.111890792846737],[100.65509033203142,16.125440597534237],[100.65104675292963,16.12796974182129],[100.64553070068376,16.137420654296875],[100.64759063720714,16.141540527343864],[100.70919036865263,16.241411209106445],[100.71797943115246,16.24629020690918],[100.7214431762697,16.249910354614315],[100.7220458984375,16.254550933838004],[100.7144622802735,16.264579772949332],[100.70732879638689,16.262069702148494],[100.70098876953153,16.251770019531307],[100.69541168212896,16.24831008911127],[100.6818466186524,16.24864006042486],[100.67254638671903,16.25974845886242],[100.66873168945341,16.269790649414062],[100.66670227050798,16.280128479003906],[100.66468048095709,16.28268051147461],[100.65560913085949,16.287160873413143],[100.65203094482439,16.292869567871094],[100.65045166015636,16.306430816650504],[100.65347290039091,16.314420700073242],[100.65032196044939,16.324689865112305],[100.66230010986322,16.33162117004389],[100.66691589355486,16.339509963989315],[100.66857910156261,16.34930992126465],[100.67086029052746,16.350738525390682],[100.6790924072265,16.361610412597713],[100.68566131591803,16.366050720214957],[100.6997680664063,16.36948013305664],[100.70400238037115,16.37234115600586],[100.70789337158197,16.378681182861385],[100.70719146728516,16.390811920166016],[100.70542144775408,16.396118164062557],[100.70616912841791,16.401931762695426],[100.70394134521484,16.40884971618658],[100.70880126953153,16.414421081543026],[100.70867156982439,16.417640686035156],[100.71909332275419,16.416700363159237],[100.72957611084013,16.42126846313488],[100.75595855712885,16.42425155639654],[100.76354217529325,16.42912101745617],[100.77086639404314,16.424158096313477],[100.77527618408203,16.42575836181652],[100.77587890625006,16.433652877807674],[100.77799224853538,16.438091278076115],[100.78909301757841,16.447050094604606],[100.80153656005854,16.44922065734869],[100.80741119384794,16.447460174560547],[100.80580139160156,16.453950881958065],[100.8004379272461,16.456190109252987],[100.79553222656273,16.470779418945426],[100.79989624023443,16.472520828247184],[100.80641937255865,16.47828292846691],[100.81803131103521,16.481027603149414],[100.81577301025396,16.49294090270996],[100.81874084472673,16.49617958068859],[100.82614135742182,16.500381469726562],[100.83458709716797,16.50302124023449],[100.83657836914091,16.5089492797851],[100.83506774902372,16.51494026184082],[100.83812713623075,16.520389556884822],[100.84477233886724,16.519580841064453],[100.85018920898455,16.521560668945312],[100.85060119628906,16.53206062316906],[100.84895324707037,16.53899955749523],[100.85932922363276,16.544929504394588],[100.85896301269548,16.5527801513673],[100.8520889282226,16.564220428466797],[100.85289001464844,16.571380615234375],[100.84883880615229,16.578559875488224],[100.851058959961,16.580610275268498],[100.84897613525419,16.59007072448736],[100.85211944580095,16.596401214599553],[100.85607910156244,16.610750198364315],[100.85582733154303,16.613300323486385],[100.86290740966825,16.62103080749523],[100.86303710937506,16.634761810302734],[100.86962890624994,16.646209716796932],[100.87574768066423,16.64840126037609],[100.8831863403322,16.654180526733455],[100.88654327392584,16.65842056274414],[100.8877563476562,16.663690567016545],[100.89475250244169,16.667310714721737],[100.90435791015642,16.665008544921875],[100.91626739501976,16.667390823364315],[100.92189788818354,16.663869857788143],[100.92762756347673,16.66505813598627],[100.92900085449219,16.670398712158146],[100.93347930908232,16.67856025695795],[100.9318008422851,16.683280944824162],[100.93457031250006,16.6885604858399],[100.93444061279325,16.693790435791072],[100.92975616455078,16.69485092163086],[100.92578887939459,16.699359893798942],[100.92440795898455,16.704490661621094],[100.9253921508789,16.710411071777344],[100.93126678466814,16.70827293395996],[100.93270874023466,16.71091079711914],[100.93142700195307,16.717790603637752],[100.918930053711,16.7245197296142],[100.9154891967774,16.72981071472168],[100.92172241210955,16.738849639892692],[100.92373657226568,16.74485015869152],[100.91924285888689,16.757171630859432],[100.91314697265642,16.758510589599723],[100.90699005126964,16.757720947265625],[100.90097045898438,16.760070800781307],[100.8972778320312,16.771610260009822],[100.90415954589838,16.773609161376953],[100.9071578979495,16.77971076965332],[100.90650939941406,16.791990280151367],[100.90473937988298,16.797210693359375],[100.91179656982439,16.795089721679688],[100.9207992553711,16.789768218994254],[100.93696594238276,16.792020797729492],[100.93926239013689,16.793449401855526],[100.95078277587896,16.78978157043457],[100.95565795898432,16.792659759521428],[100.95764923095709,16.79774284362793],[100.9553833007813,16.801500320434627],[100.95883941650419,16.8045711517334],[100.95703125,16.80835914611822],[100.9587631225586,16.816989898681697],[100.95520782470709,16.820329666137695],[100.96111297607428,16.824420928955135],[100.96875000000006,16.827760696411133],[100.97471618652338,16.82525062561035],[100.98103332519548,16.828002929687614],[100.98288726806669,16.831739425659237],[100.97978973388695,16.835531234741268],[100.98233032226574,16.84173011779791],[100.98256683349626,16.84696006774908],[100.98970031738304,16.84786987304699],[100.99494934082026,16.85262107849121],[101.0006713867187,16.85190963745123],[101.013442993164,16.85612106323248],[101.01822662353533,16.864181518554744],[101.023666381836,16.86521911621105],[101.0287170410158,16.8725528717041],[101.02934265136719,16.88078117370617],[101.03285217285185,16.890899658203182],[101.04489135742199,16.901109695434684],[101.04895019531267,16.903480529785213],[101.05459594726591,16.90331077575695],[101.06259918212919,16.90002822875988],[101.07038116455101,16.902740478515682],[101.07617187500011,16.903160095214957],[101.08239746093773,16.900220870971737],[101.08660125732445,16.895240783691406],[101.09359741210938,16.8959197998048],[101.09525299072277,16.891910552978516],[101.09989929199219,16.892280578613395],[101.10803222656261,16.900249481201115],[101.10848999023438,16.914552688598633],[101.1106719970706,16.918479919433594],[101.11229705810547,16.92723083496088],[101.11647033691423,16.93262100219738],[101.11701202392572,16.941591262817326],[101.11561584472662,16.960081100463924],[101.11599731445318,16.97130966186529],[101.11464691162115,16.97558975219721],[101.1154327392581,16.982271194458008],[101.11508178710949,16.99495124816906],[101.11128234863276,16.998849868774414],[101.11309051513678,17.00658035278326],[101.11508178710949,17.007600784301758],[101.11663055419916,17.016391754150334],[101.12245178222679,17.023469924926758],[101.13578796386724,17.027111053466797],[101.14022827148466,17.031652450561637],[101.147216796875,17.031370162963867],[101.15873718261747,17.033599853515682],[101.16963195800793,17.03770065307623],[101.16971588134766,17.045900344848746],[101.17372131347656,17.053749084472656],[101.187255859375,17.065450668335075],[101.19235992431635,17.080390930175724],[101.20098114013672,17.087909698486442],[101.20600891113287,17.103879928588924],[101.20075988769548,17.110950469970817],[101.19944000244158,17.117990493774528],[101.20272827148443,17.12103843688965],[101.21618652343744,17.124418258666992],[101.2229080200197,17.13055992126465],[101.22698211669945,17.129600524902287],[101.23528289794939,17.117851257324276],[101.23599243164091,17.111259460449332],[101.24627685546903,17.10616111755371],[101.25524902343778,17.09939956665039],[101.25521850585943,17.097339630126953],[101.26178741455072,17.088441848754826],[101.26851654052734,17.08757972717291],[101.27527618408232,17.093748092651367],[101.28118896484403,17.091800689697266],[101.28087615966814,17.083051681518555],[101.28533172607428,17.082799911499137],[101.29595947265642,17.091398239135685],[101.30356597900408,17.08938026428234],[101.31011199951178,17.091947555542106],[101.31433868408226,17.090820312500057],[101.31800842285185,17.082611083984432],[101.32607269287126,17.07172012329096],[101.33049011230469,17.070381164550838],[101.33716583251953,17.071979522705135],[101.34172058105486,17.08387947082514],[101.34539031982422,17.08608055114746],[101.34812927246122,17.0827312469483],[101.36261749267584,17.08332061767578],[101.36779022216825,17.087829589843693],[101.37474060058594,17.0883407592774],[101.3778076171875,17.082590103149414],[101.3835220336914,17.078960418701115],[101.3881225585938,17.078609466552734],[101.39173889160156,17.081350326538086],[101.39482879638695,17.08741188049322],[101.4052124023437,17.0922794342041],[101.41664123535168,17.081760406494197],[101.42559814453136,17.079191207885685],[101.43074798583996,17.071918487548828],[101.43972015380871,17.071741104126033],[101.44523620605497,17.0763397216798],[101.44692230224615,17.080230712890625],[101.45807647705095,17.08692169189453],[101.4610977172851,17.092729568481502],[101.47206878662132,17.091110229492188],[101.47859954834013,17.084680557250977],[101.48142242431663,17.0715007781983],[101.48377990722668,17.069999694824276],[101.48854827880871,17.074840545654354],[101.49315643310564,17.07159996032715],[101.50344085693354,17.067068099975643],[101.50975036621111,17.060470581054744],[101.5107421875,17.056119918823185],[101.5149002075197,17.05601119995123],[101.52317047119146,17.05231285095209],[101.53145599365246,17.053398132324276],[101.53559875488287,17.043689727783203],[101.53256225585943,17.038211822509766],[101.53639221191435,17.03544044494629],[101.53761291503923,17.031200408935604],[101.5362625122072,17.02091026306158],[101.54239654541016,17.017772674560547],[101.54534149169928,17.014360427856502],[101.54827117919916,16.999629974365234],[101.55194854736328,16.993860244750977],[101.56166076660156,16.992151260375977],[101.56723022460943,16.98513031005865],[101.57614898681658,16.98307037353527],[101.58435058593767,16.986749649047965],[101.58537292480491,16.99110984802246],[101.5904006958009,16.995069503784293],[101.59485626220703,16.993909835815543],[101.60159301757818,16.998830795288143],[101.61025238037104,16.998880386352596],[101.61422729492216,17.004329681396598],[101.61827087402338,17.014289855957088],[101.61811828613281,17.022920608520565],[101.62184906005888,17.025711059570312],[101.62594604492188,17.035999298095817],[101.63080596923857,17.043239593505973],[101.64038085937494,17.042499542236442],[101.64552307128918,17.038160324096793],[101.64720153808622,17.0342693328858],[101.64665222167997,17.02799034118658],[101.65180206298857,17.01650047302246],[101.65712738037138,17.00969123840332],[101.6562576293947,17.00526237487793],[101.6614074707033,16.995359420776424],[101.6703872680664,16.985321044921932],[101.67082214355491,16.98089027404785],[101.67597198486351,16.976451873779354],[101.67740631103533,16.972471237182674],[101.67565917968761,16.966220855713004],[101.67198944091803,16.960678100585938],[101.67288208007812,16.952959060669002],[101.67819213867205,16.93807983398449],[101.68389129638689,16.9344100952149],[101.69069671630888,16.931989669799805],[101.68804931640636,16.928571701049805],[101.68971252441412,16.921028137207088],[101.68602752685547,16.920110702514762],[101.68342590332037,16.907791137695312],[101.68527221679688,16.901269912719783],[101.68245697021507,16.893669128417912],[101.6794815063476,16.88064956665039],[101.68302917480491,16.87780952453619],[101.68376922607428,16.87125968933117],[101.67843627929693,16.863929748535156],[101.68138885498041,16.854970932006893],[101.68755340576172,16.855930328369197],[101.685287475586,16.84782981872553],[101.68705749511724,16.84284973144537],[101.69081878662115,16.839370727539062],[101.69358062744152,16.833301544189396],[101.69792175292974,16.832149505615178],[101.70603179931658,16.827220916748047],[101.7096328735351,16.819330215454045],[101.71924591064459,16.813222885131893],[101.71977233886736,16.80700111389166],[101.7223663330081,16.80264282226574],[101.72007751464872,16.79712104797369],[101.7023468017581,16.806119918823242],[101.69590759277361,16.803289413452205],[101.68770599365251,16.79541969299322],[101.69676971435553,16.78833961486822],[101.70783233642584,16.777011871338004],[101.71283721923857,16.766660690307674],[101.72202301025385,16.754020690918082],[101.7304077148437,16.75052833557129],[101.752426147461,16.754632949829215],[101.76035308837885,16.753999710083065],[101.76867675781256,16.757251739501953],[101.77336883544939,16.757070541381836],[101.78736114501976,16.760911941528434]]]},"properties":{"ID_0":228,"ISO":"TH-67","NAME_0":"Thailand","ID_1":42,"NAME_1":"Phetchabun","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"เพชรบูรณ์","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.85732269287132,13.327820777893123],[99.85659027099638,13.319479942321777],[99.85343170166033,13.30712890625],[99.85546112060575,13.280851364135856],[99.85855102539057,13.268650054931584],[99.85849761962919,13.255460739135799],[99.86013793945312,13.2449111938476],[99.8694915771485,13.246811866760368],[99.87773132324241,13.250371932983512],[99.88503265380871,13.245590209960994],[99.88622283935564,13.252269744873047],[99.88285064697271,13.258731842040959],[99.88951873779303,13.263721466064453],[99.89421081542963,13.264261245727539],[99.89779663085966,13.275940895080623],[99.8945770263673,13.282271385192814],[99.89653015136736,13.286071777343864],[99.90119934082037,13.2858505249024],[99.91356658935553,13.281169891357479],[99.91925048828125,13.284070968627987],[99.9264373779298,13.279879570007267],[99.93554687500028,13.284210205078125],[99.93852233886719,13.292110443115178],[99.94328308105469,13.294269561767578],[99.95305633544945,13.295410156250114],[99.94889068603521,13.277221679687557],[99.94277954101568,13.268611907959098],[99.94416809082043,13.264720916748104],[99.95221710205095,13.262779235839957],[99.97000122070312,13.243331909179801],[99.97471618652361,13.245280265808162],[99.98610687255888,13.235000610351562],[99.9938888549807,13.226110458374137],[99.994155883789,13.222781181335506],[99.99888610839872,13.218055725097656],[99.99945068359403,13.212781906128043],[100.00527954101562,13.20028114318859],[100.01972198486322,13.18499946594244],[100.02583312988298,13.183610916137752],[100.03193664550798,13.179720878601188],[100.04528045654291,13.173332214355582],[100.05889129638678,13.164443969726562],[100.06722259521501,13.156941413879395],[100.06999969482428,13.150000572204647],[100.06583404541044,13.139444351196403],[100.06610870361328,13.13527774810791],[100.0636062622072,13.128610610961857],[100.0625,13.108333587646541],[100.06416320800776,13.104167938232479],[100.06472015380871,13.09000015258789],[100.0674972534182,13.079722404480037],[100.07055664062523,13.075280189514217],[100.08444213867188,13.061389923095703],[100.09111022949219,13.05805587768566],[100.10388946533203,13.056666374206657],[100.0936126708985,13.041939735412711],[100.09471893310547,13.040000915527457],[100.08638763427757,13.030278205871582],[100.08000183105486,13.021110534668026],[100.07344055175787,13.01465034484869],[100.06166839599621,13.000280380249137],[100.05805206298822,12.993332862854118],[100.03943634033209,12.964428901672477],[100.03771972656256,12.95436000823986],[100.02979278564482,12.936231613159293],[100.02715301513666,12.919979095458928],[100.02500152587919,12.90083026885992],[100.02574157714866,12.895936965942383],[100.01914215087885,12.874370574951286],[100.01600646972679,12.869250297546387],[100.01304626464838,12.859721183776855],[100.00000000000006,12.838611602783203],[99.99360656738298,12.820830345153922],[99.99491882324213,12.814541816711369],[99.98860931396496,12.806667327880973],[99.97447967529325,12.768686294555607],[99.96643066406256,12.740830421447754],[99.96417236328153,12.72246170043951],[99.96444702148438,12.703056335449219],[99.96338653564459,12.688581466674862],[99.95804595947271,12.661939620971793],[99.95583343505876,12.641667366027889],[99.95555877685553,12.63257122039795],[99.95201110839838,12.63400936126709],[99.94111633300793,12.630090713500977],[99.93231201171903,12.62878131866455],[99.9259262084961,12.629961013794002],[99.9244232177735,12.6251802444458],[99.91577148437494,12.624739646911678],[99.91332244873064,12.630049705505428],[99.90560913085966,12.635569572448674],[99.89856719970732,12.628450393676871],[99.89260864257835,12.626791000366268],[99.88997650146513,12.622970581054688],[99.88346862792974,12.620590209961051],[99.8767929077149,12.625301361083928],[99.86654663085949,12.62559890747076],[99.84658813476562,12.621741294860783],[99.82917785644526,12.630127906799373],[99.82023620605486,12.627340316772518],[99.80915832519548,12.619759559631348],[99.7906570434572,12.606000900268612],[99.78214263916021,12.600819587707576],[99.77700805664085,12.595952033996525],[99.76909637451166,12.590600967407227],[99.76473236084001,12.584020614624023],[99.75750732421875,12.583890914917049],[99.75505828857428,12.593270301818904],[99.7533798217774,12.606491088867301],[99.74842834472662,12.606881141662711],[99.74986267089861,12.615101814270076],[99.74771118164074,12.627950668335018],[99.73803710937517,12.623391151428223],[99.73855590820324,12.633870124817008],[99.73561096191412,12.63737964630127],[99.72158813476574,12.64176273345953],[99.71984863281278,12.648289680481014],[99.71559143066429,12.651201248168888],[99.70770263671892,12.652461051940975],[99.69599151611357,12.649939537048454],[99.69316864013683,12.650749206543082],[99.68683624267607,12.647501945495662],[99.67627716064459,12.64708042144781],[99.66848754882835,12.645330429077262],[99.65734863281267,12.639630317687931],[99.6462707519533,12.635980606079102],[99.64082336425804,12.641090393066406],[99.63156890869135,12.643151283264103],[99.6288604736331,12.652430534362793],[99.61997222900408,12.648620605468864],[99.62200927734386,12.645550727844181],[99.61482238769548,12.63611984252941],[99.61483764648438,12.626489639282283],[99.61611938476557,12.621431350707951],[99.61399078369169,12.614569664001465],[99.61772155761724,12.60812091827404],[99.6269912719726,12.601350784301815],[99.62888336181652,12.593401908874625],[99.6244659423831,12.586111068725586],[99.62525177001964,12.576411247253532],[99.62180328369169,12.56587028503418],[99.62377929687517,12.554660797119197],[99.61841583251947,12.546731948852539],[99.62026977539091,12.54159927368164],[99.61342620849621,12.53993129730219],[99.6036300659182,12.541620254516658],[99.59427642822271,12.547730445861873],[99.58869934082031,12.557000160217285],[99.58509826660156,12.570220947265739],[99.58094024658226,12.577341079712028],[99.5766830444336,12.575871467590446],[99.56845092773455,12.577190399170036],[99.55827331542997,12.576992034912223],[99.5475463867188,12.578730583190861],[99.54051971435553,12.577051162719727],[99.54058074951183,12.574261665344238],[99.53385162353521,12.567779541015739],[99.52675628662115,12.565019607543945],[99.52407836914068,12.560931205749569],[99.51657867431658,12.562920570373535],[99.5130310058596,12.566631317138729],[99.50048828125028,12.573710441589412],[99.4956665039063,12.580351829528752],[99.49175262451183,12.581939697265625],[99.49311065673845,12.587649345398063],[99.48874664306658,12.58998966217041],[99.48567962646501,12.587869644164982],[99.48013305664057,12.58942031860363],[99.47277069091803,12.587781906127873],[99.46407318115263,12.584289550781307],[99.46045684814464,12.580617904663143],[99.45410919189476,12.57855129241949],[99.43975067138672,12.58240032196045],[99.43441009521484,12.589741706848201],[99.42545318603516,12.595601081848145],[99.42166137695318,12.606751441955566],[99.4127120971682,12.615031242370605],[99.40567016601568,12.612840652465934],[99.39774322509783,12.61238002777111],[99.38758850097685,12.616279602050781],[99.37963104248064,12.615010261535758],[99.37785339355497,12.621351242065373],[99.37016296386724,12.621700286865234],[99.36640167236357,12.624361991882324],[99.3680191040039,12.632130622863826],[99.36273956298851,12.634502410888672],[99.35617065429705,12.635311126709041],[99.35533142089872,12.639398574829102],[99.34934997558594,12.63812065124506],[99.34461975097679,12.641680717468205],[99.34584808349604,12.645970344543457],[99.33972167968761,12.657390594482422],[99.33896636962902,12.661050796508846],[99.33397674560575,12.664241790771484],[99.31787109375,12.668410301208553],[99.31482696533203,12.66604042053234],[99.3089218139649,12.66747093200695],[99.30828094482416,12.670069694519157],[99.2961196899414,12.677080154419059],[99.30040740966825,12.684241294860897],[99.29969024658197,12.69157791137701],[99.29058074951172,12.698181152343807],[99.29123687744146,12.714150428771973],[99.27951049804705,12.716160774230957],[99.27578735351568,12.722498893737907],[99.27050781249994,12.728340148925895],[99.26465606689453,12.724919319152832],[99.26049804687523,12.725281715393123],[99.25388336181669,12.72317123413086],[99.24862670898438,12.718607902526855],[99.24048614501976,12.722900390625],[99.23474884033226,12.7374906539917],[99.22872924804699,12.742449760437012],[99.23477935791021,12.75276088714611],[99.23320770263678,12.77029037475586],[99.23542785644548,12.776861190795898],[99.22853851318371,12.790191650390568],[99.22978973388695,12.795360565185604],[99.22759246826166,12.799989700317383],[99.22585296630871,12.81205081939703],[99.22367858886724,12.814141273498592],[99.22303771972673,12.82269191741949],[99.217758178711,12.827081680297852],[99.21231079101574,12.825579643249512],[99.20777893066423,12.83050918579113],[99.20704650878906,12.83533000946045],[99.19921875,12.839969635009822],[99.19841003417963,12.843509674072209],[99.19036865234403,12.845049858093262],[99.18634796142607,12.850370407104606],[99.18799591064459,12.855511665344352],[99.1858291625976,12.861129760742301],[99.1880493164063,12.868509292602539],[99.189018249512,12.8794202804566],[99.1833801269533,12.883551597595272],[99.18141174316418,12.888079643249625],[99.18396759033203,12.893110275268668],[99.18237304687511,12.906391143798942],[99.18350982666027,12.909841537475643],[99.17616271972656,12.919700622558537],[99.16442871093778,12.925029754638729],[99.17137908935547,12.934339523315373],[99.17308807373047,12.942410469055233],[99.185531616211,12.944181442260799],[99.18856048583984,12.950030326843319],[99.19419860839855,12.95282173156744],[99.19583892822288,12.959300994873047],[99.19322204589872,12.96512889862072],[99.19010162353521,12.967209815978947],[99.18781280517584,12.975560188293457],[99.19048309326178,12.983011245727596],[99.19548797607428,12.989871025085506],[99.18961334228527,12.989690780639648],[99.18135833740257,12.992670059204102],[99.1693878173831,13.007589340209904],[99.17172241210955,13.012889862060547],[99.16281127929688,13.019599914550895],[99.15724945068376,13.01980972290039],[99.15547943115246,13.025850296020508],[99.14811706542969,13.025991439819393],[99.14612579345714,13.032621383666992],[99.13463592529303,13.032361030578556],[99.12049865722679,13.042901992797908],[99.11415100097656,13.053759574890194],[99.1149520874024,13.056909561157227],[99.10955047607439,13.063181877136344],[99.10433197021513,13.06262111663824],[99.10362243652338,13.06791973114025],[99.10087585449224,13.070431709289608],[99.09980010986322,13.077100753784237],[99.10498046875017,13.083662033081168],[99.10942077636724,13.0827894210816],[99.1144561767581,13.087151527404899],[99.12091827392607,13.095391273498478],[99.13059234619146,13.095159530639648],[99.12818145751982,13.102610588073787],[99.12950897216825,13.117831230163631],[99.13327789306663,13.117320060730094],[99.13658142089872,13.134019851684627],[99.13198852539091,13.136699676513672],[99.13094329833984,13.141989707946834],[99.1374282836914,13.149009704589844],[99.1345520019533,13.163840293884277],[99.12712860107422,13.168810844421444],[99.12252044677751,13.169171333312988],[99.1170501708985,13.175591468811092],[99.12365722656267,13.18115043640131],[99.12397003173857,13.19391059875494],[99.13018035888672,13.200750350952262],[99.13918304443365,13.204700469970817],[99.15074920654314,13.20532035827648],[99.15486907959013,13.207391738891602],[99.16456604003929,13.207180023193473],[99.16748046875028,13.20432186126709],[99.17413330078153,13.202249526977539],[99.1820373535158,13.19232177734375],[99.19062805175798,13.192091941833496],[99.1931381225586,13.195750236511344],[99.19799804687528,13.192738533020133],[99.20395660400408,13.198060989379883],[99.20490264892572,13.203260421753043],[99.2111358642581,13.206250190734977],[99.2153930664062,13.201060295105094],[99.22196197509771,13.203790664672852],[99.23043060302746,13.201151847839355],[99.2352371215822,13.191519737243652],[99.24040985107439,13.186280250549373],[99.24481964111328,13.18501091003418],[99.25218963623058,13.171051025390739],[99.25624084472673,13.168438911438045],[99.25965881347673,13.162810325622672],[99.2657012939456,13.157988548278865],[99.26496887207043,13.155659675598201],[99.26992034912121,13.148040771484375],[99.2808609008789,13.150590896606445],[99.29267120361345,13.15797138214117],[99.29556274414062,13.161080360412654],[99.30497741699247,13.16250038146984],[99.31063842773443,13.169519424438533],[99.31630706787126,13.17311096191412],[99.32462310791044,13.176260948181152],[99.3258361816408,13.18330097198492],[99.31935119628923,13.188541412353459],[99.31880187988298,13.20132923126232],[99.32153320312523,13.212312698364371],[99.32520294189482,13.214790344238281],[99.32617187500028,13.220950126647892],[99.3310317993164,13.21958065032959],[99.33503723144531,13.220930099487362],[99.33895111084013,13.226320266723633],[99.33886718750006,13.231620788574219],[99.3479995727539,13.240019798278865],[99.3511505126956,13.241271018981934],[99.35923004150408,13.230890274047852],[99.36778259277338,13.23228931427002],[99.37152099609398,13.22659969329834],[99.3719863891601,13.218931198120117],[99.392318725586,13.211979866027946],[99.39916992187523,13.215941429138184],[99.40143585205084,13.212009429931584],[99.40579223632812,13.212030410766658],[99.40843200683611,13.208721160888786],[99.411430358887,13.199861526489315],[99.41932678222656,13.195340156555233],[99.42545318603516,13.197160720825252],[99.43177795410179,13.194451332092285],[99.43907928466825,13.183830261230582],[99.45426177978521,13.183410644531307],[99.46241760253923,13.186149597167912],[99.46819305419928,13.18999099731451],[99.47847747802734,13.199561119079647],[99.48136138916021,13.197421073913631],[99.4857788085938,13.190191268920955],[99.49205017089866,13.188472747802791],[99.49904632568376,13.184610366821346],[99.50119018554693,13.180219650268555],[99.5077590942384,13.179351806640625],[99.51010894775408,13.189030647277889],[99.51522064208979,13.192449569702148],[99.5154190063476,13.200981140136832],[99.52243804931669,13.208979606628418],[99.52944183349632,13.206619262695312],[99.53833007812517,13.206170082092399],[99.54189300537138,13.202230453491268],[99.54731750488281,13.201601028442496],[99.55224609375017,13.206471443176383],[99.55602264404308,13.203260421753043],[99.5663833618164,13.203779220581112],[99.57778167724604,13.196191787719727],[99.58950042724615,13.199021339416504],[99.59420776367205,13.197072029113826],[99.5985565185548,13.2024888992309],[99.60270690917974,13.204500198364371],[99.61419677734386,13.202630996704102],[99.62925720214855,13.204151153564567],[99.63627624511724,13.201130867004508],[99.63729858398432,13.20716190338129],[99.64332580566412,13.211020469665584],[99.65331268310541,13.212271690368596],[99.66114044189447,13.210200309753475],[99.66445159912115,13.213582038879395],[99.6628723144533,13.217519760131893],[99.66545104980474,13.221549987793026],[99.66423034667969,13.228590011596793],[99.66857147216791,13.234891891479606],[99.66610717773455,13.241291999816951],[99.66607666015636,13.250570297241154],[99.6692123413086,13.257290840148926],[99.66847229003912,13.266590118408203],[99.66503143310553,13.269769668579102],[99.66317749023466,13.275360107421932],[99.66577911376953,13.28496170043951],[99.67888641357439,13.28967094421381],[99.68331909179688,13.289970397949219],[99.68650054931635,13.293280601501579],[99.68541717529297,13.298529624938965],[99.69610595703125,13.306679725647086],[99.70012664794928,13.316441535949764],[99.70591735839872,13.319901466369629],[99.72334289550798,13.326101303100529],[99.72560882568354,13.325711250305119],[99.74508666992205,13.33706092834484],[99.75150299072294,13.337221145629996],[99.756820678711,13.339180946350098],[99.75869750976585,13.343041419982967],[99.76299285888666,13.343190193176326],[99.76634216308616,13.339020729064941],[99.77371215820312,13.339469909668082],[99.77789306640642,13.335230827331543],[99.78533935546892,13.33323192596447],[99.7902908325197,13.3355588912965],[99.79741668701195,13.330490112304801],[99.80339050292997,13.329010963440055],[99.81027221679699,13.33926010131836],[99.8147583007813,13.336529731750602],[99.82174682617205,13.33965015411377],[99.83055114746094,13.338569641113281],[99.83837127685547,13.333568572998047],[99.84736633300787,13.331830024719238],[99.85732269287132,13.327820777893123]]]},"properties":{"ID_0":228,"ISO":"TH-76","NAME_0":"Thailand","ID_1":43,"NAME_1":"Phetchaburi","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"เพชรบุรี","VARNAME_1":"Petchburi"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.65032196044939,16.324689865112305],[100.65347290039091,16.314420700073242],[100.65045166015636,16.306430816650504],[100.65203094482439,16.292869567871094],[100.65560913085949,16.287160873413143],[100.66468048095709,16.28268051147461],[100.66670227050798,16.280128479003906],[100.66873168945341,16.269790649414062],[100.67254638671903,16.25974845886242],[100.6818466186524,16.24864006042486],[100.69541168212896,16.24831008911127],[100.70098876953153,16.251770019531307],[100.70732879638689,16.262069702148494],[100.7144622802735,16.264579772949332],[100.7220458984375,16.254550933838004],[100.7214431762697,16.249910354614315],[100.71797943115246,16.24629020690918],[100.70919036865263,16.241411209106445],[100.64759063720714,16.141540527343864],[100.64553070068376,16.137420654296875],[100.65104675292963,16.12796974182129],[100.65509033203142,16.125440597534237],[100.65495300292974,16.111890792846737],[100.6563873291015,16.10653114318859],[100.64504241943382,16.05041122436529],[100.63745117187528,16.047189712524528],[100.6482772827149,16.043411254882812],[100.65653228759794,16.046550750732422],[100.7032928466798,16.032091140747127],[100.71718597412138,16.027362823486385],[100.72303009033209,16.026939392089957],[100.73200988769537,16.023841857910213],[100.74762725830078,16.015590667724723],[100.75364685058605,16.00999832153326],[100.76264190673845,16.0070419311524],[100.77157592773449,15.998451232910213],[100.75699615478521,15.994310379028377],[100.74079132080101,15.988369941711369],[100.72818756103521,15.98750019073492],[100.70944976806658,15.995150566101188],[100.69422912597662,15.992100715637264],[100.68083953857439,15.987151145935115],[100.6664581298831,15.989061355590763],[100.65883636474638,15.988390922546444],[100.64244079589855,15.981631278991642],[100.62779998779314,15.977581024169979],[100.60729217529303,15.966641426086426],[100.59073638916044,15.962889671325684],[100.58319854736328,15.959721565246696],[100.56829071044939,15.94144058227539],[100.56265258789085,15.939351081848088],[100.5567474365235,15.930882453918514],[100.55278015136747,15.931191444397086],[100.5465393066408,15.92370891571045],[100.54318237304693,15.925650596618596],[100.53613281250023,15.923220634460563],[100.5308380126956,15.91907119750988],[100.52677154541021,15.91129016876232],[100.52128601074224,15.914830207824764],[100.52887725830084,15.921849250793457],[100.5302124023438,15.929361343383732],[100.53607940673828,15.932700157165641],[100.53617858886747,15.938411712646484],[100.53218841552763,15.940040588378906],[100.5206527709961,15.939270973205566],[100.51370239257824,15.932439804077205],[100.50817108154308,15.930061340331974],[100.49314880371111,15.930839538574162],[100.48049926757841,15.927160263061467],[100.4683074951173,15.924751281738281],[100.44341278076178,15.927790641784725],[100.42980194091791,15.927741050720329],[100.42056274414068,15.926280021667594],[100.40883636474626,15.929161071777344],[100.40454864501959,15.932111740112248],[100.39488983154291,15.932620048522892],[100.3877563476563,15.936511039733944],[100.37815856933594,15.939049720764103],[100.37232208251959,15.938669204712028],[100.35469818115234,15.933629989624137],[100.35045623779291,15.933459281921444],[100.33193206787121,15.938579559326172],[100.34477996826172,15.966239929199276],[100.3474731445313,15.972949981689453],[100.33235168457048,15.979411125183105],[100.32549285888689,15.98108196258545],[100.32534790039068,15.968070030212402],[100.31143188476568,15.96383094787609],[100.3109588623048,15.960069656372013],[100.30655670166027,15.956459999084473],[100.30065155029308,15.956259727478084],[100.2916183471682,15.950152397155875],[100.28536987304716,15.948941230773926],[100.2822875976563,15.945159912109375],[100.26880645751964,15.938559532165584],[100.26338195800804,15.940791130066032],[100.2636795043947,15.952389717102108],[100.26248931884794,15.956489562988338],[100.2557907104495,15.959759712219181],[100.24626159667997,15.959759712219181],[100.23998260498075,15.95691204071045],[100.23693847656261,15.942529678344727],[100.23574066162132,15.929850578308162],[100.22930908203136,15.92423057556158],[100.22792816162115,15.919430732727108],[100.2189331054688,15.921860694885368],[100.21599578857439,15.928520202636832],[100.20804595947271,15.930400848388672],[100.20397186279291,15.93330192565918],[100.19657135009766,15.930471420288086],[100.18775177001947,15.93325042724615],[100.18412780761713,15.926050186157283],[100.18028259277372,15.923192024230957],[100.1766967773437,15.92595195770258],[100.17838287353527,15.929951667785758],[100.17456817626964,15.93699169158947],[100.1770477294923,15.946990013122672],[100.17021179199213,15.953181266784782],[100.16969299316406,15.956630706787223],[100.16207122802734,15.959721565246696],[100.16160583496105,15.966650009155217],[100.16477966308616,15.972681045532227],[100.16265106201178,15.979210853576717],[100.15026855468756,15.987401962280387],[100.14781188964866,15.993639945984],[100.14399719238304,15.998061180114803],[100.1389465332033,16.00993919372553],[100.13260650634777,16.01826095581066],[100.12943267822266,16.028020858764762],[100.13260650634777,16.030458450317383],[100.13202667236357,16.03504943847662],[100.12857818603544,16.038351058959904],[100.1244277954101,16.038549423217717],[100.11901855468756,16.04581069946289],[100.11939239501976,16.059249877929688],[100.11094665527344,16.0738906860351],[100.11509704589861,16.0792293548584],[100.1055374145509,16.08679008483898],[100.10186767578153,16.09367942810053],[100.09575653076178,16.09837150573736],[100.09745025634788,16.105470657348633],[100.09664916992188,16.110099792480582],[100.09227752685553,16.114009857177848],[100.08785247802734,16.11488151550293],[100.08271789550781,16.118989944458008],[100.07977294921886,16.123638153076172],[100.08373260498053,16.134290695190373],[100.09407806396496,16.15104103088379],[100.09407806396496,16.155740737915153],[100.08834838867216,16.159049987793026],[100.08178710937506,16.165220260620117],[100.08091735839855,16.171289443969783],[100.07034301757818,16.173950195312557],[100.05737304687506,16.174890518188477],[100.05101013183611,16.179790496826286],[100.05039978027355,16.184970855713004],[100.0468521118164,16.190248489379996],[100.03849792480474,16.19225120544445],[100.03475952148449,16.194690704345817],[100.04228210449219,16.198209762573242],[100.04543304443388,16.202060699462947],[100.04631805419928,16.209920883178768],[100.04254913330107,16.214189529418945],[100.05317687988287,16.217870712280273],[100.05657958984375,16.227550506591797],[100.04464721679716,16.23406028747553],[100.02835845947266,16.240528106689453],[100.02229309082054,16.250078201294002],[100.02716827392595,16.255430221557617],[100.0263290405274,16.26029014587408],[100.02999877929699,16.271181106567383],[100.0302505493164,16.27511024475109],[100.02133178710943,16.279489517212028],[100.01377105712919,16.27297973632824],[100.00946044921875,16.273120880126953],[100.01048278808616,16.280761718750057],[100.0074081420899,16.286060333252067],[100.00110626220709,16.287330627441406],[100.01873779296886,16.309049606323242],[100.02272796630888,16.31221008300787],[100.02018737792974,16.318439483642635],[100.02146911621111,16.322521209716797],[100.02881622314482,16.330270767211857],[100.02686309814459,16.3346004486084],[100.02305603027366,16.336610794067383],[100.00863647460949,16.333599090576172],[100.00505828857439,16.336498260498047],[100.00226593017601,16.341949462890682],[99.99626922607439,16.357971191406307],[99.99668884277344,16.361829757690543],[99.98678588867188,16.372709274291935],[99.98452758789085,16.37747955322277],[99.98773956298828,16.388530731201172],[99.99433898925793,16.40024948120123],[99.99648284912126,16.411920547485295],[99.99495697021501,16.420940399169922],[99.99555969238281,16.436349868774414],[99.99942016601585,16.44514083862299],[100.01364135742205,16.47229957580572],[100.03588867187528,16.500181198120117],[100.03565216064476,16.51484107971197],[100.02919006347662,16.53087997436529],[100.02442932128935,16.540830612182674],[100.02200317382807,16.558982849121094],[100.01877593994158,16.562931060791072],[100.01201629638678,16.56731033325201],[100.01480102539062,16.573150634765682],[100.01905059814476,16.5723495483399],[100.02435302734375,16.57732963562023],[100.03613281250017,16.581680297851562],[100.04934692382812,16.570978164672795],[100.06088256835966,16.572669982910156],[100.06227874755876,16.575050354003963],[100.0684509277346,16.574550628662166],[100.08171844482439,16.577869415283317],[100.08479309082048,16.58234977722168],[100.09046936035168,16.586719512939453],[100.08798217773449,16.593372344970703],[100.09609985351568,16.596731185913143],[100.09941101074247,16.603580474853572],[100.11154174804693,16.598949432373047],[100.1166763305664,16.599500656127873],[100.11968994140642,16.606069564819393],[100.12535858154308,16.607139587402457],[100.13391113281278,16.605171203613338],[100.13916778564453,16.598901748657227],[100.15023803710938,16.59397125244152],[100.15833282470732,16.59190750122076],[100.17543792724615,16.599662780761776],[100.18212890625023,16.601551055908146],[100.18527221679682,16.60419082641613],[100.19313049316423,16.60478019714361],[100.19825744628923,16.607051849365348],[100.19573974609386,16.61238288879389],[100.19742584228544,16.6182098388673],[100.20137023925787,16.616331100463867],[100.20485687255865,16.621610641479606],[100.19346618652355,16.625579833984432],[100.19284057617193,16.632200241088924],[100.19632720947277,16.63195991516119],[100.2026672363283,16.641790390014762],[100.20552825927751,16.643539428710994],[100.21421051025419,16.64320945739746],[100.21681213378906,16.645307540893555],[100.21916198730474,16.636001586914062],[100.23198699951183,16.624860763549748],[100.23390960693354,16.620960235595817],[100.23410797119135,16.603969573974666],[100.23496246337913,16.58768081665039],[100.2322082519533,16.566839218139762],[100.23448944091791,16.54401969909668],[100.23368072509794,16.533161163330135],[100.23507690429705,16.52870941162115],[100.23940277099638,16.526710510253906],[100.25717926025385,16.529132843017578],[100.26390838623047,16.535730361938477],[100.26760864257818,16.536140441894588],[100.27780914306658,16.53172111511236],[100.28951263427757,16.529460906982365],[100.29957580566406,16.526348114013786],[100.32258605957043,16.522680282592773],[100.32958984375006,16.52704048156744],[100.33670043945324,16.526750564575195],[100.34770965576178,16.53160095214855],[100.36219787597679,16.533271789550838],[100.37143707275385,16.540859222412223],[100.37806701660185,16.54470062255865],[100.38136291503923,16.543109893798885],[100.37790679931635,16.538061141967887],[100.3810729980471,16.535591125488338],[100.39599609375028,16.517660140991325],[100.39985656738276,16.518070220947266],[100.40322113037115,16.52431106567377],[100.40825653076189,16.523969650268498],[100.41570281982439,16.518190383911133],[100.41671752929693,16.512010574340934],[100.42555236816435,16.507070541381893],[100.42724609375006,16.51037979125971],[100.44132232666021,16.512029647827205],[100.46776580810564,16.517700195312614],[100.47663879394537,16.524930953979435],[100.47509002685553,16.531330108642692],[100.48385620117193,16.535411834716797],[100.48298645019543,16.54329109191906],[100.48697662353544,16.551719665527344],[100.4921188354495,16.55413246154791],[100.4991378784182,16.560369491577262],[100.5057983398438,16.560501098632812],[100.50578308105474,16.567380905151424],[100.51139068603544,16.572580337524414],[100.51619720458979,16.567420959472713],[100.51985931396501,16.566810607910156],[100.52584838867193,16.570970535278434],[100.52871704101568,16.57592010498047],[100.54441833496088,16.57690811157238],[100.54981994628906,16.58177185058605],[100.5545883178711,16.58372116088873],[100.56497192382841,16.58423805236822],[100.57135772705095,16.588239669799748],[100.58641815185564,16.59338951110834],[100.59079742431658,16.591930389404354],[100.59921264648438,16.58103942871088],[100.59986114501959,16.55633926391596],[100.59712982177734,16.53960990905756],[100.5970611572265,16.52894020080572],[100.58888244628923,16.520460128784237],[100.58322143554693,16.518352508545036],[100.58682250976562,16.511592864990234],[100.58570861816412,16.503810882568416],[100.58737182617205,16.4967098236084],[100.58432006835955,16.485401153564396],[100.58425903320341,16.470859527588004],[100.59217071533203,16.468851089477596],[100.59668731689447,16.4649600982666],[100.59252166748064,16.4603328704834],[100.59313964843756,16.44910049438488],[100.59606170654325,16.446771621704215],[100.59487152099615,16.442190170288086],[100.59863281250017,16.435512542724666],[100.59739685058622,16.425771713256836],[100.59806060791033,16.413190841674805],[100.60044860839872,16.407028198242244],[100.6008911132812,16.39690971374523],[100.6031112670899,16.381990432739258],[100.61511993408209,16.374130249023438],[100.625053405762,16.362632751464957],[100.62113189697283,16.357959747314567],[100.61971282959013,16.339019775390625],[100.61833190917974,16.335380554199162],[100.61927795410162,16.322250366210938],[100.61325836181652,16.30718994140625],[100.62100219726568,16.309650421142635],[100.62528228759777,16.31275939941412],[100.62841033935547,16.318180084228516],[100.63944244384783,16.32501029968273],[100.64640045166021,16.32217025756836],[100.65032196044939,16.324689865112305]]]},"properties":{"ID_0":228,"ISO":"TH-66","NAME_0":"Thailand","ID_1":44,"NAME_1":"Phichit","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"พิจิตร","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.96069335937506,17.57225036621105],[100.94391632080084,17.570671081543026],[100.93959045410185,17.567119598388672],[100.93464660644543,17.56635093688965],[100.91712188720697,17.574380874633846],[100.91999816894548,17.57855033874506],[100.90943145751959,17.5836696624757],[100.90689086914062,17.591110229492244],[100.90277862548857,17.591329574584904],[100.88707733154303,17.585760116577262],[100.88247680664062,17.58286094665533],[100.87657928466803,17.576009750366325],[100.8692703247072,17.564599990844783],[100.86255645751964,17.54323959350586],[100.86477661132835,17.54198074340826],[100.8683700561524,17.531860351562443],[100.87458801269526,17.527601242065543],[100.86962890624994,17.52202033996582],[100.86701202392578,17.514850616455078],[100.85473632812511,17.505510330200252],[100.84549713134771,17.500400543212947],[100.84571075439459,17.488861083984432],[100.8380966186524,17.482450485229492],[100.83496856689453,17.477119445800724],[100.83613586425787,17.46873092651373],[100.83859252929688,17.464031219482536],[100.84938812255871,17.45784950256359],[100.85259246826178,17.452438354492244],[100.85682678222668,17.452899932861385],[100.86062622070341,17.44969940185547],[100.86683654785156,17.451641082763786],[100.87600708007818,17.44799041748047],[100.88247680664062,17.4510498046875],[100.8957824707033,17.462619781494197],[100.90036010742205,17.45605278015148],[100.90596008300787,17.45551109313959],[100.91146087646484,17.44926071166998],[100.91751098632807,17.448650360107422],[100.9181518554688,17.437892913818473],[100.9165420532226,17.432050704955998],[100.92214965820312,17.429050445556697],[100.92320251464855,17.42038917541504],[100.92559051513678,17.417270660400504],[100.92299652099638,17.413940429687614],[100.92310333251953,17.405860900878963],[100.9183959960938,17.39397811889654],[100.91853332519537,17.384830474853572],[100.91471862792974,17.374599456787053],[100.91810607910173,17.371179580688477],[100.9164428710938,17.365961074829045],[100.91912841796898,17.3588104248048],[100.91632843017607,17.342519760131893],[100.9215927124024,17.337240219116325],[100.92819213867182,17.33637046813965],[100.93132781982428,17.333948135375977],[100.94014739990263,17.33383941650402],[100.94412994384771,17.33803939819336],[100.95419311523438,17.33481979370123],[100.95575714111351,17.33256912231451],[100.97158050537132,17.338750839233512],[100.97722625732439,17.336811065673942],[100.98892211914068,17.33642959594738],[100.99237060546898,17.33867263793951],[101.00386810302763,17.332649230957088],[101.00666809082037,17.332420349121094],[101.0101776123048,17.327239990234375],[101.00918579101568,17.31983947753912],[101.01271820068376,17.313199996948356],[101.01731872558594,17.309440612793082],[101.02829742431652,17.307769775390625],[101.03698730468756,17.296079635620117],[101.04606628417963,17.28770065307623],[101.05110168457037,17.281240463256836],[101.05979919433588,17.2781982421875],[101.08457183837902,17.27783966064453],[101.08450317382835,17.271099090576172],[101.09041595459007,17.264280319213867],[101.0941467285158,17.25238990783697],[101.10201263427734,17.242301940918082],[101.10974884033214,17.23505973815918],[101.11136627197271,17.226400375366325],[101.10884094238298,17.214540481567383],[101.10196685791033,17.20858955383312],[101.09826660156278,17.19976997375494],[101.09422302246116,17.195819854736385],[101.08525848388695,17.190759658813533],[101.08228302001964,17.186412811279297],[101.07837677001959,17.176830291748047],[101.08174133300798,17.165811538696346],[101.07820129394554,17.157882690429688],[101.08093261718778,17.1541805267334],[101.07939147949247,17.136577606201172],[101.07454681396484,17.131692886352653],[101.07054901123053,17.1143798828125],[101.06452178955107,17.113620758056754],[101.06675720214866,17.10651969909668],[101.0664672851562,17.101688385009766],[101.05845642089838,17.094980239868164],[101.06153869628923,17.084922790527457],[101.0573120117187,17.080329895019588],[101.05203247070312,17.077661514282283],[101.05235290527338,17.074800491333065],[101.05724334716803,17.0698699951173],[101.05905151367205,17.058629989624023],[101.05652618408214,17.054901123046875],[101.05957794189464,17.04813003540039],[101.05699157714844,17.036979675293026],[101.05950927734398,17.03220176696783],[101.05964660644531,17.027240753173942],[101.05533599853521,17.024940490722656],[101.05686187744146,17.018470764160156],[101.04833984374994,17.001308441162223],[101.04396820068354,16.995941162109375],[101.0418777465822,16.988161087036133],[101.04450988769543,16.981180191040096],[101.05007171630854,16.974689483642578],[101.04615783691429,16.972179412841797],[101.04556274414068,16.966489791870117],[101.0497131347658,16.962240219116325],[101.05158996582026,16.956729888916016],[101.04209899902344,16.95190811157238],[101.03723907470732,16.947139739990348],[101.02919006347679,16.945180892944336],[101.02937316894554,16.936950683593693],[101.03524780273438,16.93035125732422],[101.0415267944336,16.927970886230582],[101.05307769775419,16.928840637207088],[101.06520843505865,16.927181243896484],[101.07109069824219,16.924701690673828],[101.07424163818388,16.918640136718693],[101.07038116455101,16.902740478515682],[101.06259918212919,16.90002822875988],[101.05459594726591,16.90331077575695],[101.04895019531267,16.903480529785213],[101.04489135742199,16.901109695434684],[101.03285217285185,16.890899658203182],[101.02934265136719,16.88078117370617],[101.0287170410158,16.8725528717041],[101.023666381836,16.86521911621105],[101.01822662353533,16.864181518554744],[101.013442993164,16.85612106323248],[101.0006713867187,16.85190963745123],[100.99494934082026,16.85262107849121],[100.98970031738304,16.84786987304699],[100.98256683349626,16.84696006774908],[100.98233032226574,16.84173011779791],[100.97978973388695,16.835531234741268],[100.98288726806669,16.831739425659237],[100.98103332519548,16.828002929687614],[100.97471618652338,16.82525062561035],[100.96875000000006,16.827760696411133],[100.96111297607428,16.824420928955135],[100.95520782470709,16.820329666137695],[100.9587631225586,16.816989898681697],[100.95703125,16.80835914611822],[100.95883941650419,16.8045711517334],[100.9553833007813,16.801500320434627],[100.95764923095709,16.79774284362793],[100.95565795898432,16.792659759521428],[100.95078277587896,16.78978157043457],[100.93926239013689,16.793449401855526],[100.93696594238276,16.792020797729492],[100.9207992553711,16.789768218994254],[100.91179656982439,16.795089721679688],[100.90473937988298,16.797210693359375],[100.90650939941406,16.791990280151367],[100.9071578979495,16.77971076965332],[100.90415954589838,16.773609161376953],[100.8972778320312,16.771610260009822],[100.90097045898438,16.760070800781307],[100.90699005126964,16.757720947265625],[100.91314697265642,16.758510589599723],[100.91924285888689,16.757171630859432],[100.92373657226568,16.74485015869152],[100.92172241210955,16.738849639892692],[100.9154891967774,16.72981071472168],[100.918930053711,16.7245197296142],[100.93142700195307,16.717790603637752],[100.93270874023466,16.71091079711914],[100.93126678466814,16.70827293395996],[100.9253921508789,16.710411071777344],[100.92440795898455,16.704490661621094],[100.92578887939459,16.699359893798942],[100.92975616455078,16.69485092163086],[100.93444061279325,16.693790435791072],[100.93457031250006,16.6885604858399],[100.9318008422851,16.683280944824162],[100.93347930908232,16.67856025695795],[100.92900085449219,16.670398712158146],[100.92762756347673,16.66505813598627],[100.92189788818354,16.663869857788143],[100.91626739501976,16.667390823364315],[100.90435791015642,16.665008544921875],[100.89475250244169,16.667310714721737],[100.8877563476562,16.663690567016545],[100.88654327392584,16.65842056274414],[100.8831863403322,16.654180526733455],[100.87574768066423,16.64840126037609],[100.86962890624994,16.646209716796932],[100.86303710937506,16.634761810302734],[100.86290740966825,16.62103080749523],[100.85582733154303,16.613300323486385],[100.85607910156244,16.610750198364315],[100.85211944580095,16.596401214599553],[100.84897613525419,16.59007072448736],[100.851058959961,16.580610275268498],[100.84883880615229,16.578559875488224],[100.85289001464844,16.571380615234375],[100.8520889282226,16.564220428466797],[100.85896301269548,16.5527801513673],[100.85932922363276,16.544929504394588],[100.84895324707037,16.53899955749523],[100.85060119628906,16.53206062316906],[100.85018920898455,16.521560668945312],[100.84477233886724,16.519580841064453],[100.83812713623075,16.520389556884822],[100.83506774902372,16.51494026184082],[100.83657836914091,16.5089492797851],[100.83458709716797,16.50302124023449],[100.82614135742182,16.500381469726562],[100.81874084472673,16.49617958068859],[100.81577301025396,16.49294090270996],[100.81803131103521,16.481027603149414],[100.80641937255865,16.47828292846691],[100.79989624023443,16.472520828247184],[100.79553222656273,16.470779418945426],[100.8004379272461,16.456190109252987],[100.80580139160156,16.453950881958065],[100.80741119384794,16.447460174560547],[100.80153656005854,16.44922065734869],[100.78909301757841,16.447050094604606],[100.77799224853538,16.438091278076115],[100.77587890625006,16.433652877807674],[100.77527618408203,16.42575836181652],[100.77086639404314,16.424158096313477],[100.76354217529325,16.42912101745617],[100.75595855712885,16.42425155639654],[100.72957611084013,16.42126846313488],[100.71909332275419,16.416700363159237],[100.70867156982439,16.417640686035156],[100.70880126953153,16.414421081543026],[100.70394134521484,16.40884971618658],[100.70616912841791,16.401931762695426],[100.70542144775408,16.396118164062557],[100.70719146728516,16.390811920166016],[100.70789337158197,16.378681182861385],[100.70400238037115,16.37234115600586],[100.6997680664063,16.36948013305664],[100.68566131591803,16.366050720214957],[100.6790924072265,16.361610412597713],[100.67086029052746,16.350738525390682],[100.66857910156261,16.34930992126465],[100.66691589355486,16.339509963989315],[100.66230010986322,16.33162117004389],[100.65032196044939,16.324689865112305],[100.64640045166021,16.32217025756836],[100.63944244384783,16.32501029968273],[100.62841033935547,16.318180084228516],[100.62528228759777,16.31275939941412],[100.62100219726568,16.309650421142635],[100.61325836181652,16.30718994140625],[100.61927795410162,16.322250366210938],[100.61833190917974,16.335380554199162],[100.61971282959013,16.339019775390625],[100.62113189697283,16.357959747314567],[100.625053405762,16.362632751464957],[100.61511993408209,16.374130249023438],[100.6031112670899,16.381990432739258],[100.6008911132812,16.39690971374523],[100.60044860839872,16.407028198242244],[100.59806060791033,16.413190841674805],[100.59739685058622,16.425771713256836],[100.59863281250017,16.435512542724666],[100.59487152099615,16.442190170288086],[100.59606170654325,16.446771621704215],[100.59313964843756,16.44910049438488],[100.59252166748064,16.4603328704834],[100.59668731689447,16.4649600982666],[100.59217071533203,16.468851089477596],[100.58425903320341,16.470859527588004],[100.58432006835955,16.485401153564396],[100.58737182617205,16.4967098236084],[100.58570861816412,16.503810882568416],[100.58682250976562,16.511592864990234],[100.58322143554693,16.518352508545036],[100.58888244628923,16.520460128784237],[100.5970611572265,16.52894020080572],[100.59712982177734,16.53960990905756],[100.59986114501959,16.55633926391596],[100.59921264648438,16.58103942871088],[100.59079742431658,16.591930389404354],[100.58641815185564,16.59338951110834],[100.57135772705095,16.588239669799748],[100.56497192382841,16.58423805236822],[100.5545883178711,16.58372116088873],[100.54981994628906,16.58177185058605],[100.54441833496088,16.57690811157238],[100.52871704101568,16.57592010498047],[100.52584838867193,16.570970535278434],[100.51985931396501,16.566810607910156],[100.51619720458979,16.567420959472713],[100.51139068603544,16.572580337524414],[100.50578308105474,16.567380905151424],[100.5057983398438,16.560501098632812],[100.4991378784182,16.560369491577262],[100.4921188354495,16.55413246154791],[100.48697662353544,16.551719665527344],[100.48298645019543,16.54329109191906],[100.48385620117193,16.535411834716797],[100.47509002685553,16.531330108642692],[100.47663879394537,16.524930953979435],[100.46776580810564,16.517700195312614],[100.44132232666021,16.512029647827205],[100.42724609375006,16.51037979125971],[100.42555236816435,16.507070541381893],[100.41671752929693,16.512010574340934],[100.41570281982439,16.518190383911133],[100.40825653076189,16.523969650268498],[100.40322113037115,16.52431106567377],[100.39985656738276,16.518070220947266],[100.39599609375028,16.517660140991325],[100.3810729980471,16.535591125488338],[100.37790679931635,16.538061141967887],[100.38136291503923,16.543109893798885],[100.37806701660185,16.54470062255865],[100.37143707275385,16.540859222412223],[100.36219787597679,16.533271789550838],[100.34770965576178,16.53160095214855],[100.33670043945324,16.526750564575195],[100.32958984375006,16.52704048156744],[100.32258605957043,16.522680282592773],[100.29957580566406,16.526348114013786],[100.28951263427757,16.529460906982365],[100.27780914306658,16.53172111511236],[100.26760864257818,16.536140441894588],[100.26390838623047,16.535730361938477],[100.25717926025385,16.529132843017578],[100.23940277099638,16.526710510253906],[100.23507690429705,16.52870941162115],[100.23368072509794,16.533161163330135],[100.23448944091791,16.54401969909668],[100.2322082519533,16.566839218139762],[100.23496246337913,16.58768081665039],[100.23410797119135,16.603969573974666],[100.23390960693354,16.620960235595817],[100.23198699951183,16.624860763549748],[100.21916198730474,16.636001586914062],[100.21681213378906,16.645307540893555],[100.21421051025419,16.64320945739746],[100.20552825927751,16.643539428710994],[100.2026672363283,16.641790390014762],[100.19632720947277,16.63195991516119],[100.19284057617193,16.632200241088924],[100.19346618652355,16.625579833984432],[100.20485687255865,16.621610641479606],[100.20137023925787,16.616331100463867],[100.19742584228544,16.6182098388673],[100.19573974609386,16.61238288879389],[100.19825744628923,16.607051849365348],[100.19313049316423,16.60478019714361],[100.18527221679682,16.60419082641613],[100.18212890625023,16.601551055908146],[100.17543792724615,16.599662780761776],[100.15833282470732,16.59190750122076],[100.15023803710938,16.59397125244152],[100.13916778564453,16.598901748657227],[100.13391113281278,16.605171203613338],[100.12535858154308,16.607139587402457],[100.11968994140642,16.606069564819393],[100.1166763305664,16.599500656127873],[100.11154174804693,16.598949432373047],[100.09941101074247,16.603580474853572],[100.09609985351568,16.596731185913143],[100.08798217773449,16.593372344970703],[100.09046936035168,16.586719512939453],[100.08479309082048,16.58234977722168],[100.08171844482439,16.577869415283317],[100.0684509277346,16.574550628662166],[100.06227874755876,16.575050354003963],[100.06088256835966,16.572669982910156],[100.04934692382812,16.570978164672795],[100.03613281250017,16.581680297851562],[100.02435302734375,16.57732963562023],[100.01905059814476,16.5723495483399],[100.01480102539062,16.573150634765682],[100.01757812500028,16.578350067138672],[100.0112991333009,16.580089569091854],[100.00811767578142,16.583898544311523],[100.00347900390636,16.577480316162223],[99.99688720703125,16.577590942382926],[99.99507904052763,16.57529067993164],[99.988052368164,16.576570510864258],[99.9777908325197,16.572629928588867],[99.96129608154325,16.570850372314396],[99.95954132080101,16.57215118408203],[99.95378875732422,16.58539009094244],[99.95040130615257,16.588279724121207],[99.92040252685547,16.60101127624523],[99.91179656982439,16.605590820312557],[99.90999603271513,16.62348937988287],[99.90600585937528,16.64797973632824],[99.90703582763672,16.66644096374506],[99.90326690673834,16.672609329223746],[99.90242767334001,16.68395042419445],[99.89740753173857,16.69346809387207],[99.8980178833009,16.700170516967887],[99.90209197998047,16.703912734985465],[99.90010070800793,16.709907531738338],[99.90074157714844,16.720901489257812],[99.89769744873047,16.72430038452154],[99.88742065429693,16.72434043884283],[99.87786865234375,16.726060867309513],[99.86107635498047,16.72599029541027],[99.8577423095706,16.734939575195426],[99.86467742919939,16.743110656738338],[99.8692092895509,16.753791809082088],[99.86962127685564,16.75757980346674],[99.87387084960938,16.763891220092887],[99.87995147705078,16.76661109924322],[99.88874053955078,16.76589012145996],[99.89141082763672,16.76167106628418],[99.9080200195313,16.760721206665153],[99.92172241210938,16.762809753417912],[99.92327117919922,16.77334022521984],[99.92137908935553,16.782640457153377],[99.91565704345709,16.790580749511776],[99.9120712280274,16.801549911499023],[99.91709899902338,16.806480407714957],[99.93675231933588,16.818611145019588],[99.9428787231447,16.824811935424805],[99.94613647460938,16.834421157836914],[99.9503402709961,16.841011047363224],[99.95310211181669,16.85728263854986],[99.95796203613281,16.85886955261242],[99.97547149658197,16.860181808471793],[99.9783172607423,16.862190246581974],[99.9905776977539,16.86635971069336],[99.99624633789074,16.865600585937614],[100.00093078613304,16.862041473388786],[100.00292968749994,16.854368209838867],[100.00580596923845,16.850032806396598],[100.01873779296886,16.852460861206055],[100.02287292480491,16.860591888427734],[100.01673889160162,16.866319656372127],[100.01201629638678,16.866029739379996],[100.00808715820307,16.868682861328068],[100.01007843017584,16.873918533325195],[100.00894165039085,16.882480621338004],[100.009506225586,16.88894081115717],[100.01381683349626,16.890951156616154],[100.03211212158197,16.891799926757812],[100.04596710205084,16.89339828491211],[100.05531311035162,16.887760162353572],[100.06088256835966,16.88770103454584],[100.06752014160162,16.884799957275334],[100.07321929931663,16.887790679931754],[100.0775985717774,16.89328193664562],[100.08349609375006,16.888931274414062],[100.08924102783226,16.892940521240348],[100.09664154052734,16.895349502563533],[100.10024261474626,16.90043067932129],[100.09912872314453,16.907989501953125],[100.10334014892584,16.916259765625057],[100.11071777343767,16.91562080383312],[100.11216735839872,16.920539855957145],[100.10801696777355,16.92778968811041],[100.10933685302746,16.934890747070312],[100.1127471923831,16.936420440673885],[100.11042022705101,16.941980361938477],[100.10730743408203,16.956750869751033],[100.10614013671892,16.968490600585938],[100.10108947753912,16.976730346679744],[100.10206604003935,16.982299804687614],[100.0976486206057,16.98373985290533],[100.0945663452149,16.98828125],[100.08821105957048,16.99279975891119],[100.0782089233399,16.99398994445812],[100.077896118164,17.000061035156364],[100.07065582275408,17.009630203247184],[100.06632232666016,17.011840820312557],[100.05399322509794,17.008089065551815],[100.04480743408226,17.012041091919002],[100.0410614013673,17.019210815429688],[100.03322601318388,17.020969390869084],[100.0335311889649,17.025730133056754],[100.02941131591825,17.028600692749137],[100.01772308349632,17.031040191650504],[100.01345062255876,17.035451889038143],[100.00757598876953,17.0491104125976],[100.00876617431663,17.05328941345215],[100.00598144531244,17.055601119995117],[99.998550415039,17.057529449462947],[99.9978103637697,17.069179534912223],[99.99584960937511,17.077159881591854],[99.98822021484386,17.07722091674816],[99.9856185913086,17.081321716308707],[99.97663879394548,17.075508117675838],[99.97296142578136,17.071090698242188],[99.9649963378908,17.069490432739315],[99.9594802856447,17.077199935913143],[99.9508666992187,17.078660964965877],[99.95524597167963,17.093971252441406],[99.9520874023438,17.098190307617188],[99.95059967041021,17.105909347534123],[99.95112609863287,17.112749099731502],[99.95606231689453,17.116250991821403],[99.96076965332043,17.11721992492687],[99.96440124511713,17.123640060424748],[99.9611892700197,17.13323974609375],[99.96212005615229,17.14265823364252],[99.95540618896513,17.15300941467291],[99.95932006835938,17.157350540161133],[99.95440673828148,17.164571762085018],[99.95722961425787,17.168252944946346],[99.96808624267578,17.166469573974723],[99.97354125976574,17.163230895996094],[99.98095703125028,17.171632766723633],[99.99053192138666,17.17231178283697],[99.99809265136724,17.185289382934684],[100.0016708374024,17.184650421142578],[100.00670623779325,17.178581237793082],[100.00733947753923,17.1735515594483],[100.01348876953125,17.17267036437994],[100.0200881958009,17.169361114501896],[100.02643585205078,17.164400100708008],[100.03176116943376,17.162509918212834],[100.03465270996094,17.165191650390682],[100.03386688232439,17.170629501342773],[100.0397186279298,17.178739547729606],[100.04590606689453,17.177022933960075],[100.05381011962919,17.180461883544922],[100.07296752929705,17.178951263427734],[100.08158111572266,17.1843318939209],[100.08879852294939,17.185449600219783],[100.10292053222656,17.195249557495174],[100.11485290527372,17.199560165405217],[100.12442016601574,17.20051002502447],[100.14572143554693,17.20505142211914],[100.15821838378923,17.209962844848633],[100.16593933105474,17.205160140991268],[100.17362213134777,17.19498062133789],[100.1769104003908,17.18886947631836],[100.18824768066429,17.19071006774908],[100.2005081176759,17.199710845947266],[100.21972656250006,17.215919494628963],[100.22849273681663,17.22241020202648],[100.23631286621116,17.226659774780273],[100.24830627441412,17.234930038452205],[100.25392913818371,17.241910934448242],[100.25428009033232,17.24979972839361],[100.25048828125011,17.25432968139654],[100.24858856201183,17.26566123962408],[100.24822998046892,17.2779598236084],[100.24443054199236,17.288217544555664],[100.2388992309572,17.315139770507926],[100.23880004882818,17.3195095062257],[100.24163818359398,17.330379486083984],[100.24201202392584,17.33613014221197],[100.24037933349621,17.34238052368164],[100.24491119384771,17.350311279296875],[100.25341796875,17.35377120971691],[100.2576599121096,17.357259750366325],[100.26431274414068,17.355789184570426],[100.2713012695312,17.36503028869629],[100.28041076660185,17.37042045593273],[100.2898788452149,17.373701095580998],[100.29908752441435,17.372760772705078],[100.30551910400396,17.377670288085994],[100.31620025634771,17.373701095580998],[100.32254028320318,17.36997032165533],[100.32811737060558,17.36930084228527],[100.3318099975586,17.37619018554699],[100.33006286621111,17.3842010498048],[100.34014129638683,17.387348175048942],[100.34377288818354,17.385442733764705],[100.35009765625017,17.389999389648438],[100.35517120361357,17.38426017761236],[100.35842895507841,17.383529663085938],[100.365219116211,17.387319564819393],[100.37381744384788,17.389020919799805],[100.37993621826178,17.39381027221691],[100.3907470703125,17.399021148681584],[100.39231872558616,17.40252113342291],[100.39978027343756,17.400960922241154],[100.42304229736334,17.410760879516715],[100.42852783203125,17.41981124877924],[100.43218231201195,17.41716957092291],[100.43998718261724,17.41708946228033],[100.44975280761724,17.422052383422795],[100.45468902587913,17.416812896728516],[100.46837615966797,17.418569564819336],[100.4765090942384,17.4185791015625],[100.48024749755882,17.416088104248104],[100.48996734619146,17.417629241943416],[100.49710083007824,17.421270370483455],[100.50257110595726,17.426839828491268],[100.50634002685547,17.421249389648438],[100.50961303710943,17.406970977783317],[100.51445007324247,17.404371261596793],[100.5241317749024,17.406932830810604],[100.53205871582048,17.415422439575195],[100.5347061157226,17.413341522216797],[100.54808807373064,17.414430618286133],[100.55251312255865,17.412969589233512],[100.56323242187506,17.41535186767578],[100.57173919677751,17.420379638671932],[100.58396911621094,17.418979644775447],[100.58670806884771,17.416999816894645],[100.59950256347685,17.421350479125977],[100.60510253906267,17.42613029479992],[100.60375213623041,17.43375968933117],[100.60482788085943,17.444837570190373],[100.60932922363281,17.45028114318842],[100.61023712158197,17.455831527710018],[100.6155471801759,17.46373939514166],[100.6226806640625,17.466659545898438],[100.62947082519543,17.47199058532715],[100.64586639404325,17.471549987793082],[100.64537048339844,17.479400634765568],[100.64665222167963,17.48318862915039],[100.64335632324224,17.487369537353516],[100.64351654052757,17.491159439086914],[100.65392303466814,17.492322921752873],[100.66004943847673,17.497198104858455],[100.67151641845703,17.499320983886776],[100.67848968505871,17.505420684814567],[100.6868286132813,17.51510047912609],[100.68955993652355,17.51988029479986],[100.70437622070318,17.52800941467291],[100.71221923828153,17.53067016601574],[100.72323608398443,17.532560348510856],[100.73545074462913,17.53627967834484],[100.74179077148466,17.541418075561523],[100.74552154541016,17.553260803222656],[100.7541427612307,17.56105232238781],[100.75855255126959,17.563079833984432],[100.76277923584013,17.567611694335994],[100.76747894287115,17.569730758667106],[100.76806640625023,17.577169418335075],[100.77414703369146,17.580249786376953],[100.77658081054705,17.58440971374523],[100.77600097656267,17.594921112060547],[100.78202819824247,17.603691101074276],[100.78643798828153,17.60433006286621],[100.7918090820312,17.612052917480526],[100.79257965087885,17.61557006835949],[100.80348205566423,17.632810592651424],[100.80385589599626,17.636650085449276],[100.81118774414068,17.640630722045955],[100.82769775390642,17.64356994628912],[100.83242034912121,17.646320343017635],[100.83817291259783,17.646442413330078],[100.84590148925787,17.653230667114258],[100.84778594970709,17.661890029907283],[100.85154724121111,17.665439605713004],[100.85994720458984,17.687709808349666],[100.86772918701166,17.697149276733512],[100.86946105957048,17.702430725097656],[100.87641906738287,17.70956039428711],[100.89627075195318,17.71373176574707],[100.9079132080081,17.711530685424805],[100.90853118896479,17.7052898406983],[100.9118423461914,17.69895172119135],[100.91567230224615,17.69733047485346],[100.92340087890636,17.69816970825201],[100.92639923095709,17.694351196289176],[100.94367980957031,17.70006942749029],[100.94770050048828,17.698009490966854],[100.95652008056663,17.69857978820812],[100.96775054931646,17.703371047973576],[100.97836303710955,17.71380043029791],[100.98645019531256,17.728900909423885],[100.9901733398437,17.741621017455998],[100.9972915649414,17.73356056213379],[101.0018386840822,17.73236083984375],[101.0074386596682,17.72397041320795],[101.00473022460938,17.71473121643072],[101.00663757324219,17.701869964599723],[101.01077270507807,17.698089599609432],[101.00730895996122,17.68873977661127],[101.0000686645509,17.677129745483512],[100.99724578857439,17.6764297485351],[100.99234008789062,17.666772842407227],[100.99146270751982,17.65997123718273],[100.99688720703142,17.65566062927246],[100.99391937255865,17.652519226074276],[100.9932861328125,17.64591979980463],[100.99645233154308,17.64025115966797],[100.99479675292969,17.638179779052848],[100.99553680419939,17.62909126281744],[100.9925384521485,17.62076950073248],[100.98898315429716,17.616279602050838],[100.98896026611334,17.6097412109375],[100.98000335693365,17.599121093750057],[100.97811126709013,17.59403991699213],[100.9702911376956,17.591249465942383],[100.969009399414,17.582389831543082],[100.96069335937506,17.57225036621105]]]},"properties":{"ID_0":228,"ISO":"TH-65","NAME_0":"Thailand","ID_1":45,"NAME_1":"Phitsanulok","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"พิษณุโลก","VARNAME_1":"Bisnulok|Phisanulauk|Phitsnulok|Pitsanuloke"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.510971069336,14.672991752624625],[100.51564025878923,14.660320281982422],[100.53086090087902,14.666351318359432],[100.54126739501959,14.668629646301383],[100.54496765136747,14.66786193847662],[100.550102233887,14.670911788940487],[100.55397796630876,14.664800643920955],[100.55464172363304,14.659760475158805],[100.56011199951172,14.658841133117733],[100.56700897216803,14.66206169128418],[100.57522583007818,14.659990310669059],[100.58362579345726,14.663971900940055],[100.60388183593778,14.653731346130428],[100.58827209472668,14.63379096984869],[100.58338928222656,14.624691009521541],[100.57820892334001,14.605701446533146],[100.57871246337919,14.597709655761776],[100.57660675048857,14.595041275024414],[100.58200836181635,14.588980674743596],[100.59403991699236,14.583860397338867],[100.60455322265625,14.57658863067627],[100.60256195068388,14.554341316223201],[100.6054992675783,14.552861213684196],[100.61640930175787,14.552459716796875],[100.62493896484392,14.553300857544002],[100.64067840576178,14.549160003662166],[100.6496276855471,14.548569679260368],[100.66188049316435,14.549758911132812],[100.67205047607439,14.553360939025822],[100.66998291015625,14.559420585632381],[100.67230987548834,14.56516170501709],[100.67318725585955,14.574840545654297],[100.67556762695335,14.580241203308162],[100.6921157836914,14.58279132843029],[100.70201873779297,14.572539329528922],[100.70326995849638,14.575361251831112],[100.7162399291995,14.579080581665096],[100.71743011474604,14.570322036743278],[100.73116302490229,14.57011890411377],[100.731430053711,14.58042144775385],[100.74320220947283,14.568741798400936],[100.75698852539068,14.568840026855469],[100.76394653320324,14.567822456359863],[100.7709579467774,14.56489086151123],[100.78386688232422,14.56654071807867],[100.78269958496094,14.559251785278434],[100.77922821044916,14.556140899658203],[100.77665710449241,14.549650192260856],[100.78112030029291,14.535091400146598],[100.78053283691418,14.5304212570191],[100.7763214111331,14.525390625000057],[100.7631225585938,14.521249771118221],[100.76056671142595,14.517801284790096],[100.74942016601591,14.516390800476188],[100.75015258789068,14.50919055938732],[100.75482177734392,14.504021644592285],[100.7591171264649,14.502281188964844],[100.76167297363276,14.49341011047369],[100.76667022705095,14.496492385864315],[100.77272796630854,14.492150306701603],[100.76798248291033,14.48727035522461],[100.76596832275413,14.482770919799805],[100.773696899414,14.481901168823299],[100.77410888671892,14.478252410888786],[100.76896667480469,14.47739028930664],[100.76896667480469,14.468909263610897],[100.7714004516601,14.464381217956543],[100.76859283447266,14.459858894348145],[100.76666259765642,14.451930046081657],[100.76302337646501,14.447809219360408],[100.7684860229495,14.439911842346191],[100.77079010009794,14.433320999145565],[100.7675170898438,14.431041717529297],[100.76937103271484,14.420769691467399],[100.76637268066412,14.416330337524471],[100.76068878173857,14.41255092620844],[100.76220703125028,14.409749984741268],[100.77081298828136,14.405711174011287],[100.77427673339861,14.405941009521541],[100.77796936035162,14.409749984741268],[100.7825622558596,14.406390190124512],[100.7825622558596,14.396980285644531],[100.7867965698245,14.394290924072322],[100.79479980468756,14.392552375793457],[100.79798889160162,14.389181137085018],[100.793716430664,14.386798858642578],[100.7892684936524,14.378492355346737],[100.78803253173845,14.364600181579647],[100.79355621337908,14.361701011657715],[100.78663635253918,14.352281570434627],[100.78336334228544,14.338549613952694],[100.77478790283232,14.329830169677791],[100.77732849121111,14.32437992095953],[100.78865051269537,14.32151985168457],[100.80030822753929,14.324069976806697],[100.8133697509765,14.324279785156193],[100.81780242919922,14.327700614929256],[100.82438659667997,14.326290130615234],[100.82447814941406,14.24440956115717],[100.82534027099638,14.242641448974666],[100.80269622802751,14.231980323791447],[100.78415679931652,14.224640846252498],[100.76258850097685,14.212809562683105],[100.74804687500023,14.20552062988287],[100.6995620727539,14.182478904724235],[100.6765823364259,14.170760154724121],[100.6616973876956,14.162640571594181],[100.63173675537138,14.147141456604004],[100.62095642089844,14.14046955108654],[100.62069702148449,14.131699562072754],[100.6161880493164,14.127960205078239],[100.60880279541038,14.13350963592535],[100.6034774780274,14.133270263671932],[100.58293914794933,14.126891136169434],[100.57499694824219,14.120989799499625],[100.56443023681652,14.12064170837408],[100.56192016601591,14.117450714111328],[100.55484771728521,14.11660099029541],[100.55416870117205,14.111700057983512],[100.5494995117188,14.11113071441656],[100.54125976562506,14.115781784057617],[100.53099822998053,14.118280410766715],[100.52732849121094,14.122262001037711],[100.5222091674807,14.123121261596737],[100.51641082763689,14.126751899719352],[100.49784088134794,14.115020751953239],[100.4881134033206,14.11184024810791],[100.4788208007812,14.110110282898063],[100.46489715576166,14.111429214477653],[100.455062866211,14.11492061614996],[100.44355773925798,14.11310005187994],[100.42324066162115,14.112901687622127],[100.41542816162115,14.1136217117309],[100.39364624023443,14.11417102813732],[100.3629760742188,14.113341331481934],[100.35550689697288,14.112381935119572],[100.34542846679693,14.113931655883732],[100.34049987792997,14.122109413146916],[100.33486938476562,14.126870155334586],[100.32118225097679,14.128731727600154],[100.31427764892578,14.13182067871088],[100.30213928222685,14.138891220092773],[100.29750823974615,14.138701438903809],[100.29431915283232,14.13517093658453],[100.28079986572294,14.124320030212516],[100.2853393554688,14.166559219360465],[100.28485107421892,14.16889953613287],[100.26957702636713,14.170930862426871],[100.2559204101563,14.171691894531193],[100.24748229980486,14.17307090759283],[100.24523925781256,14.182770729064885],[100.24450683593773,14.204951286315861],[100.2432327270509,14.208591461181584],[100.24450683593773,14.209671020507812],[100.24421691894526,14.23640060424816],[100.24349975585938,14.250310897827205],[100.24373626709007,14.283550262451115],[100.25192260742193,14.293001174926871],[100.2555160522461,14.29569053649908],[100.259750366211,14.303130149841309],[100.26110839843773,14.315790176391602],[100.26300048828148,14.319719314575309],[100.26840209960966,14.324441909790096],[100.26873016357445,14.375870704650936],[100.26956176757824,14.384391784667969],[100.27649688720703,14.389340400695858],[100.28071594238287,14.394680023193416],[100.28227996826195,14.401939392089844],[100.27706909179688,14.409840583801213],[100.27603149414091,14.420089721679688],[100.27397155761713,14.428039550781193],[100.26432800292974,14.426551818847656],[100.24935913085932,14.435469627380371],[100.25151062011719,14.439351081848258],[100.24874114990263,14.450210571289062],[100.24497985839838,14.457240104675407],[100.24652099609392,14.46480941772461],[100.25070190429682,14.476531028747615],[100.25382995605474,14.481008529663029],[100.25608825683594,14.48209190368658],[100.25879669189459,14.489469528198242],[100.26644134521507,14.48911190032959],[100.2743911743164,14.485861778259277],[100.28227996826195,14.488180160522518],[100.28720092773443,14.496430397033748],[100.3080596923831,14.493531227111816],[100.31771850585943,14.488221168518123],[100.32402038574224,14.488190650939941],[100.33393096923834,14.49192047119135],[100.34333038330084,14.493100166320858],[100.34928131103527,14.497719764709473],[100.36914825439447,14.49790000915533],[100.38117980957048,14.505828857421989],[100.38944244384771,14.508009910583553],[100.40001678466808,14.506171226501579],[100.41004180908209,14.50903129577648],[100.414115905762,14.504490852355957],[100.41620635986357,14.495940208435059],[100.41538238525396,14.488861083984489],[100.41868591308622,14.481460571289062],[100.4191665649414,14.476670265197868],[100.41728210449224,14.469240188598746],[100.41908264160185,14.451141357421875],[100.41893005371088,14.44324016571045],[100.4333114624024,14.446330070495662],[100.43795013427763,14.446030616760254],[100.44312286376964,14.436230659484863],[100.44950866699219,14.436571121215877],[100.45845794677734,14.440730094909668],[100.46128082275408,14.437748908996582],[100.47728729248041,14.444870948791504],[100.47973632812528,14.449399948120117],[100.49282836914068,14.45790100097662],[100.50094604492182,14.459130287170524],[100.49887084960955,14.473720550537053],[100.49961853027361,14.495491027832088],[100.50138854980469,14.501179695129508],[100.49237823486345,14.511691093444824],[100.49308776855497,14.514590263366756],[100.4989624023438,14.517151832580566],[100.49809265136736,14.52552127838129],[100.49394989013672,14.528109550476074],[100.491752624512,14.5355806350708],[100.49265289306663,14.547979354858398],[100.49088287353516,14.5517196655274],[100.47934722900419,14.564371109008846],[100.48612213134766,14.568621635437125],[100.49297332763672,14.579401969909668],[100.49410247802751,14.588219642639274],[100.49285125732428,14.594921112060604],[100.4935913085938,14.61084270477295],[100.501449584961,14.617712020874137],[100.49955749511747,14.624489784240836],[100.50334930419928,14.626822471618652],[100.50170898437494,14.648839950561637],[100.49816894531256,14.65294265747076],[100.49951934814476,14.65624141693121],[100.50467681884771,14.658451080322322],[100.5078964233399,14.66858005523676],[100.510971069336,14.672991752624625]]]},"properties":{"ID_0":228,"ISO":"TH-14","NAME_0":"Thailand","ID_1":46,"NAME_1":"Phra Nakhon Si Ayutthaya","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"พระนครศรีอยุธยา","VARNAME_1":"Ayudhya|Ayutthaya"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.3419189453125,18.80352020263672],[100.33827972412126,18.794111251831055],[100.33892059326195,18.785530090332145],[100.3427124023438,18.78320121765148],[100.34969329833979,18.784618377685604],[100.35855865478538,18.782470703125114],[100.36450195312506,18.774761199951286],[100.36087036132818,18.769729614257756],[100.36318206787138,18.76519012451172],[100.36022186279297,18.76115036010748],[100.36000061035173,18.749490737915096],[100.36601257324224,18.745340347290153],[100.37478637695318,18.742040634155273],[100.3814315795899,18.741331100463867],[100.38568878173857,18.742622375488395],[100.39348602294928,18.738870620727482],[100.38974761962885,18.731100082397575],[100.39021301269537,18.72517013549816],[100.38352203369146,18.72450828552246],[100.38025665283203,18.721240997314453],[100.37886047363276,18.716148376464844],[100.37361145019537,18.709810256958065],[100.36592864990251,18.706439971923885],[100.36579895019537,18.702201843261662],[100.36219024658226,18.6977996826173],[100.3611831665039,18.689100265502987],[100.35381317138678,18.67823028564453],[100.35827636718744,18.67158126831066],[100.35869598388672,18.66534996032709],[100.35639953613298,18.660930633544922],[100.36158752441412,18.657751083374023],[100.362602233887,18.652700424194393],[100.36115264892595,18.64733123779297],[100.3706512451173,18.637132644653377],[100.3781509399414,18.63505172729498],[100.38906097412115,18.637878417968864],[100.3949813842774,18.635110855102482],[100.3983459472658,18.625551223754996],[100.38326263427729,18.6204509735108],[100.38310241699236,18.615089416503906],[100.37991333007818,18.609590530395508],[100.37893676757812,18.587778091430778],[100.37989044189453,18.582780838012752],[100.37522888183605,18.564010620117244],[100.38162994384771,18.559709548950252],[100.38936614990229,18.55648994445812],[100.38920593261736,18.54104042053234],[100.3968505859375,18.530509948730582],[100.39747619628929,18.524179458618164],[100.39412689208979,18.521379470825252],[100.38858032226574,18.51082992553711],[100.3917007446289,18.50937080383312],[100.39736938476557,18.502309799194336],[100.40151214599638,18.49230003356945],[100.4017486572265,18.484210968017635],[100.40983581542969,18.48353958129877],[100.4126358032226,18.481119155883846],[100.41973876953125,18.48286247253418],[100.42079925537138,18.489549636840934],[100.42452239990234,18.494150161743278],[100.43749237060547,18.498649597168082],[100.4449234008789,18.489839553833008],[100.4477005004884,18.493970870971737],[100.45659637451195,18.49412155151373],[100.46215057373053,18.489549636840934],[100.4790878295899,18.492139816284293],[100.4789428710938,18.48818016052246],[100.48390960693388,18.480489730835075],[100.49632263183622,18.472709655761832],[100.5047683715822,18.474008560180664],[100.50814819335966,18.47147941589361],[100.5135574340822,18.475299835205192],[100.51846313476574,18.473869323730582],[100.52599334716797,18.478229522705078],[100.52617645263672,18.481250762939396],[100.53372192382824,18.48363113403326],[100.53663635253923,18.487829208374023],[100.54329681396501,18.487791061401367],[100.54586029052757,18.470939636230526],[100.54866027832048,18.4633407592774],[100.55214691162115,18.448490142822266],[100.54936981201183,18.439971923828125],[100.55043029785162,18.430271148681754],[100.5530776977539,18.419830322265682],[100.5476684570312,18.40495109558117],[100.54328155517572,18.402498245239315],[100.5383605957033,18.38887977600092],[100.52983856201195,18.388570785522575],[100.52172851562494,18.390661239624137],[100.51523590087885,18.386440277099553],[100.51212310791021,18.379840850830078],[100.51212310791021,18.374019622802848],[100.50759124755871,18.367240905761832],[100.50740051269543,18.360670089721737],[100.49989318847679,18.35485267639166],[100.4970092773438,18.35015106201172],[100.48427581787115,18.349290847778377],[100.48449707031278,18.341371536254996],[100.49404144287138,18.337869644165096],[100.48925781250028,18.326681137085018],[100.48368835449241,18.322540283203182],[100.48192596435547,18.318201065063533],[100.4840087890625,18.304761886596737],[100.4879760742187,18.296728134155273],[100.4848022460938,18.290252685546875],[100.49578094482416,18.27802085876465],[100.4775390625,18.26255035400402],[100.47866058349626,18.25999259948742],[100.47000885009794,18.24343109130865],[100.46895599365234,18.235130310058594],[100.46314239501982,18.228639602661246],[100.46083068847685,18.216472625732536],[100.45574951171892,18.21284103393566],[100.46026611328153,18.20037269592291],[100.4613265991211,18.192329406738395],[100.4574584960937,18.189580917358455],[100.45302581787138,18.1821804046632],[100.45384979248064,18.171230316162166],[100.45056152343761,18.166368484497127],[100.44841766357428,18.158100128173942],[100.44320678710938,18.152259826660213],[100.43447875976585,18.150819778442496],[100.42217254638666,18.15237998962408],[100.4155502319336,18.15020942687994],[100.41152191162126,18.13986968994152],[100.40451049804693,18.138620376587028],[100.39933013916016,18.13483047485363],[100.39765930175804,18.126031875610465],[100.39356231689447,18.116939544677678],[100.3959579467774,18.109430313110465],[100.40151977539091,18.097560882568416],[100.39772796630871,18.092300415039062],[100.39933013916016,18.0887908935548],[100.3982696533206,18.08365058898937],[100.40643310546898,18.078821182251033],[100.41140747070318,18.073780059814567],[100.40487670898438,18.06322860717779],[100.41066741943388,18.054790496826172],[100.4088973999024,18.049459457397404],[100.41380310058611,18.038999557495117],[100.41674804687506,18.035749435424805],[100.41847991943365,18.028869628906364],[100.41583251953153,18.020179748535156],[100.40918731689447,18.022790908813533],[100.40007781982439,18.01936149597168],[100.39388275146513,18.019790649414062],[100.38609313964855,18.011081695556584],[100.38198852539062,18.01054954528803],[100.38066864013678,18.00383186340332],[100.37716674804705,17.998729705810547],[100.36058807373064,17.985862731933594],[100.35175323486357,17.98156929016119],[100.35243225097662,17.976140975952205],[100.35736846923828,17.961990356445312],[100.35601043701189,17.952579498291016],[100.35669708251982,17.940280914306754],[100.3614196777346,17.934682846069336],[100.36017608642572,17.93103981018072],[100.36074066162121,17.922372817993164],[100.34916687011719,17.913379669189567],[100.35008239746111,17.90751075744629],[100.34395599365246,17.89822006225586],[100.34307098388672,17.89186096191412],[100.33644866943382,17.889009475708008],[100.32779693603516,17.88997268676752],[100.32646942138672,17.89495277404791],[100.32021331787115,17.90497970581066],[100.31478118896479,17.90756988525402],[100.31067657470709,17.91776084899908],[100.31057739257824,17.9260196685791],[100.308578491211,17.930910110473746],[100.3003768920899,17.93701171875],[100.28958892822277,17.934511184692496],[100.28750610351557,17.947929382324276],[100.28218841552751,17.953769683837947],[100.27783203125,17.955579757690543],[100.26580810546875,17.951250076294002],[100.26252746582026,17.95222282409668],[100.25424957275396,17.959280014038086],[100.2482681274414,17.960069656372184],[100.23980712890636,17.953809738159237],[100.2367630004884,17.953550338745117],[100.23237609863293,17.947050094604435],[100.22680664062528,17.946109771728516],[100.22638702392601,17.937349319458065],[100.22138214111328,17.936340332031307],[100.21608734130882,17.92589950561529],[100.21620178222673,17.918991088867244],[100.20867156982428,17.914989471435547],[100.20382690429688,17.91582107543951],[100.19629669189482,17.904130935669002],[100.18511962890642,17.899549484252873],[100.18180084228544,17.896230697631893],[100.17285156250011,17.890819549560604],[100.17085266113287,17.88821983337408],[100.16184234619158,17.88776969909668],[100.15566253662138,17.875520706176815],[100.14845275878918,17.869461059570256],[100.1456527709961,17.864549636840763],[100.13044738769554,17.855110168457145],[100.12661743164068,17.85724067687994],[100.12081146240229,17.856920242309513],[100.1137924194336,17.849950790405217],[100.10237121582031,17.845310211181754],[100.09635162353544,17.848640441894645],[100.09178161621122,17.845329284668026],[100.0897293090822,17.841239929199162],[100.08410644531273,17.84114074707037],[100.07872009277344,17.836679458618278],[100.06651306152344,17.839031219482365],[100.06239318847685,17.836748123168945],[100.05995178222668,17.832019805908203],[100.05339050292991,17.839500427246207],[100.05436706542974,17.84210014343273],[100.04704284667969,17.84584999084467],[100.01605224609403,17.83235168457037],[100.00469970703125,17.83188056945812],[99.98808288574236,17.828861236572322],[99.99230194091797,17.812929153442383],[99.98636627197283,17.802078247070426],[99.98169708251959,17.79820060729986],[99.97557067871116,17.79712104797369],[99.97335815429699,17.798900604248104],[99.964340209961,17.796119689941463],[99.9633407592774,17.78922080993658],[99.96010589599615,17.779529571533146],[99.95169830322271,17.777000427246094],[99.93847656250017,17.781070709228516],[99.93385314941435,17.788818359375],[99.92919921875006,17.788110733032227],[99.9198608398438,17.794572830200195],[99.91249847412121,17.80206108093273],[99.90268707275396,17.802860260009766],[99.89839935302746,17.805120468139762],[99.8919677734375,17.803251266479492],[99.88887786865229,17.80614089965826],[99.87786865234375,17.801839828491325],[99.86975097656278,17.803062438964957],[99.86678314209001,17.799200057983512],[99.85280609130871,17.797220230102482],[99.85034942626947,17.80000114440918],[99.84439086914091,17.796617507934684],[99.83473968505876,17.800661087036076],[99.82167053222662,17.80014991760254],[99.81838989257818,17.801799774170036],[99.80500793457031,17.798959732055664],[99.80364990234392,17.794689178466854],[99.79785919189482,17.791030883789176],[99.78359222412104,17.78928947448742],[99.77838897705107,17.786270141601676],[99.7763900756836,17.780210494995117],[99.77854156494163,17.77589035034191],[99.77362060546903,17.77375030517578],[99.76625823974626,17.759670257568473],[99.75637817382812,17.750900268554744],[99.75794219970726,17.748100280761832],[99.75402069091791,17.742481231689567],[99.75431060791038,17.738178253173828],[99.75065612792969,17.73383140563965],[99.74411773681658,17.730228424072322],[99.74317932128923,17.72640037536621],[99.73664855957043,17.724769592285213],[99.7323913574221,17.720310211181697],[99.72583770751953,17.720581054687557],[99.72470092773438,17.727270126342887],[99.71820068359392,17.726730346679744],[99.7171020507813,17.732641220092887],[99.71115112304688,17.737222671508846],[99.71224212646496,17.741851806640568],[99.7107925415039,17.750150680542106],[99.70652770996088,17.75613021850586],[99.70033264160179,17.754859924316406],[99.69741058349626,17.757780075073356],[99.69223022460932,17.757749557495174],[99.69345855712896,17.76377105712902],[99.6916809082033,17.767198562622127],[99.6847610473634,17.770290374755916],[99.68757629394537,17.775960922241154],[99.68296051025396,17.782871246337947],[99.67428588867199,17.790819168090877],[99.67125701904314,17.798931121826286],[99.65648651123053,17.79405021667492],[99.64936065673828,17.79620933532715],[99.63717651367193,17.804149627685547],[99.636962890625,17.806421279907227],[99.6306991577149,17.813230514526424],[99.62583160400402,17.81040000915533],[99.61827087402344,17.815820693969783],[99.612777709961,17.813619613647518],[99.60031890869158,17.819780349731445],[99.58213806152372,17.81355094909668],[99.57295227050787,17.813859939575195],[99.56768035888666,17.80928039550787],[99.55220031738293,17.810182571411076],[99.54479980468767,17.80873107910162],[99.54161071777344,17.803188323974553],[99.53401184082054,17.799350738525504],[99.52091217041044,17.79565048217779],[99.51848602294939,17.79375076293951],[99.51709747314482,17.781221389770508],[99.51168823242193,17.780290603637695],[99.50010681152372,17.77257919311529],[99.49743652343778,17.767709732055664],[99.49089813232428,17.76155281066889],[99.4857177734375,17.752389907836857],[99.48300933837908,17.743190765380916],[99.47606658935575,17.73958015441906],[99.47357940673834,17.736610412597713],[99.46707916259788,17.73575973510748],[99.46173095703148,17.73075103759777],[99.45687103271501,17.723331451416016],[99.45960235595709,17.720712661743278],[99.4573593139649,17.713750839233512],[99.45092773437511,17.707590103149414],[99.44531250000006,17.706422805786076],[99.43370056152366,17.706399917602653],[99.43138885498053,17.708679199218693],[99.42372131347656,17.70836067199707],[99.41815948486345,17.70421028137207],[99.41629028320312,17.709709167480526],[99.40970611572294,17.717359542846793],[99.41134643554693,17.722999572753906],[99.40719604492193,17.72477912902832],[99.40051269531273,17.734800338745117],[99.38382720947283,17.740760803222656],[99.3808517456057,17.748239517211914],[99.38632202148455,17.75304985046398],[99.38160705566412,17.760040283203125],[99.38230895996111,17.763040542602653],[99.37162780761736,17.770759582519588],[99.37004089355497,17.775510787963924],[99.378227233887,17.779380798339957],[99.38761901855463,17.789150238037166],[99.38784027099626,17.79210090637207],[99.39534759521507,17.807310104370174],[99.39539337158232,17.814060211181584],[99.40261840820318,17.81590080261236],[99.40390014648438,17.819770812988338],[99.41390991210966,17.823600769043026],[99.41470336914057,17.83056259155279],[99.4179916381836,17.8353595733642],[99.41812133789074,17.839559555053768],[99.42269897460949,17.842201232910156],[99.42350006103533,17.84902954101574],[99.42890930175787,17.850578308105412],[99.43164825439482,17.856639862060547],[99.44011688232422,17.861919403076115],[99.44403076171903,17.86210823059082],[99.45215606689453,17.871389389038086],[99.45279693603544,17.87565040588379],[99.46000671386741,17.88113975524908],[99.46752166748058,17.884532928466854],[99.47139739990234,17.891010284423885],[99.4769515991211,17.89270973205572],[99.48568725585955,17.914560317993164],[99.48522186279325,17.917930603027344],[99.49137115478527,17.92061042785656],[99.49584960937506,17.927659988403434],[99.50028991699247,17.930192947387695],[99.50881958007818,17.941829681396598],[99.51297760009766,17.941551208496037],[99.52303314208996,17.950149536132756],[99.52359008789074,17.954240798950195],[99.53433990478516,17.960069656372184],[99.53990936279303,17.96109962463379],[99.54512786865263,17.96897125244152],[99.55914306640625,17.971860885620117],[99.56263732910179,17.97529029846197],[99.56255340576189,17.98316192626953],[99.56587982177757,17.98933029174799],[99.57782745361328,17.994092941284237],[99.5827713012697,17.99966812133789],[99.59645843505871,18.008670806884766],[99.59279632568388,18.012670516967773],[99.58995819091825,18.020299911499023],[99.58962249755876,18.02630996704113],[99.58709716796903,18.033491134643555],[99.5957870483399,18.037149429321403],[99.5992965698245,18.036609649658317],[99.60591888427757,18.041130065917912],[99.61064910888672,18.04718971252447],[99.62034606933611,18.04693031311035],[99.62959289550787,18.059299468994254],[99.63395690917991,18.060770034790153],[99.64176940917974,18.054849624633903],[99.65229797363287,18.053630828857422],[99.65840148925787,18.039171218872127],[99.6709213256836,18.040319442748967],[99.68165588378929,18.043949127197266],[99.68476867675793,18.0488796234132],[99.69235229492193,18.05328178405756],[99.69132995605469,18.06283950805664],[99.70213317871105,18.065380096435604],[99.70803833007824,18.06933021545416],[99.71090698242199,18.067052841186523],[99.71566009521496,18.069690704345703],[99.721733093262,18.068761825561523],[99.72689056396513,18.079490661621094],[99.72792816162126,18.084140777587834],[99.73397827148449,18.09085845947277],[99.73998260498053,18.105840682983455],[99.74829101562511,18.10984992980957],[99.75438690185558,18.117750167846623],[99.76148986816423,18.119171142578125],[99.762748718262,18.122039794921875],[99.75573730468744,18.127689361572266],[99.75723266601591,18.133661270141715],[99.75533294677746,18.13932037353527],[99.76129913330095,18.14775085449213],[99.7742919921875,18.163118362426758],[99.78003692626959,18.172769546508732],[99.78919219970709,18.183481216430664],[99.7918472290039,18.190521240234375],[99.80049133300787,18.1982803344726],[99.8028106689456,18.21329116821289],[99.80860900878923,18.22117996215826],[99.82448577880865,18.236600875854492],[99.83455657958984,18.23451042175293],[99.8356399536134,18.23784065246582],[99.84162139892578,18.244150161743164],[99.84680938720709,18.25517082214361],[99.85066223144537,18.253170013427734],[99.85398864746111,18.262069702148494],[99.86003112792997,18.273571014404297],[99.85822296142578,18.27939033508295],[99.86016082763678,18.282560348510742],[99.86559295654308,18.278579711914006],[99.87621307373053,18.276712417602653],[99.88150787353521,18.28041076660162],[99.89026641845703,18.281520843505973],[99.89682006835943,18.278459548950195],[99.90792846679699,18.27832984924322],[99.91307830810558,18.284070968627873],[99.91565704345709,18.290340423583984],[99.92131042480486,18.299579620361385],[99.92487335205107,18.308401107788143],[99.92739868164057,18.310092926025447],[99.93373107910173,18.321132659912166],[99.93794250488281,18.326700210571232],[99.93844604492199,18.33587074279785],[99.9407424926759,18.33925056457531],[99.94094848632807,18.349161148071403],[99.94535064697283,18.353179931640625],[99.95255279541027,18.355360031128043],[99.950927734375,18.361352920532283],[99.95635986328153,18.37385177612299],[99.96273803710938,18.382320404052734],[99.96858978271496,18.381259918213004],[99.97157287597679,18.38701820373535],[99.96842193603533,18.39234924316412],[99.97936248779303,18.38920974731451],[99.98902893066423,18.390319824218864],[99.99208831787126,18.396800994873047],[99.99809265136724,18.400970458984432],[100.00170898437523,18.4007511138916],[100.00797271728521,18.410840988159237],[100.00576782226574,18.413011550903377],[100.00769805908197,18.420419692993164],[100.01570129394543,18.435949325561523],[100.00930023193365,18.443920135498047],[100.02288055419945,18.446031570434627],[100.02928161621111,18.461040496826172],[100.02923583984386,18.463809967041072],[100.04335784912121,18.485940933227653],[100.05075073242216,18.495439529419002],[100.0524520874024,18.500680923461914],[100.05261993408226,18.50914001464855],[100.05748748779291,18.514501571655273],[100.05764007568388,18.525230407714844],[100.05140686035173,18.527362823486442],[100.05475616455107,18.536310195922795],[100.05362701416044,18.54010009765625],[100.05657196044922,18.547260284423828],[100.05716705322266,18.555351257324162],[100.06453704833979,18.559169769287166],[100.07060241699247,18.560390472412053],[100.07747650146513,18.55892944335949],[100.08082580566412,18.560800552368164],[100.08737945556669,18.56825256347662],[100.09234619140653,18.571121215820426],[100.1032028198245,18.559879302978516],[100.11006927490263,18.559892654419002],[100.10843658447283,18.567489624023494],[100.1102218627932,18.572599411010856],[100.1137771606447,18.575189590454215],[100.11203765869135,18.58143043518072],[100.1124877929688,18.589420318603516],[100.11724853515625,18.59243011474615],[100.12184143066412,18.599002838134822],[100.12133026123075,18.604320526123047],[100.11376190185564,18.60947036743164],[100.10742187500028,18.616149902343864],[100.10736846923851,18.620140075683707],[100.10243988037138,18.625320434570426],[100.1012802124024,18.629610061645508],[100.10369110107422,18.637979507446232],[100.10486602783209,18.647151947021598],[100.10816955566435,18.650329589843693],[100.10880279541033,18.65666961669922],[100.10668182373058,18.661239624023438],[100.113037109375,18.669742584228516],[100.11044311523443,18.681560516357422],[100.10639953613287,18.682680130004883],[100.10675048828125,18.688739776611442],[100.11003875732445,18.689649581909237],[100.10975646972673,18.701080322265625],[100.10521697998047,18.703140258789176],[100.10508728027366,18.709430694580078],[100.10247039794933,18.713029861450252],[100.10307312011713,18.722669601440487],[100.09839630126976,18.727502822875977],[100.09926605224626,18.732339859008903],[100.10356903076178,18.736280441284293],[100.10280609130865,18.749519348144474],[100.10962677001959,18.756570816040153],[100.11080169677757,18.76083946228033],[100.11720275878923,18.764270782470817],[100.11669921875006,18.774419784546012],[100.12731933593767,18.7825603485108],[100.1272659301759,18.7881698608399],[100.1236114501956,18.796270370483455],[100.11762237548828,18.797510147094783],[100.1159591674807,18.806961059570312],[100.11944580078136,18.817590713501033],[100.13582611084013,18.815389633178768],[100.14068603515625,18.822410583496094],[100.14570617675804,18.822677612304744],[100.15444946289068,18.827470779419002],[100.15513610839838,18.830440521240348],[100.16101074218778,18.83243179321289],[100.16838836669928,18.82559967041027],[100.17428588867193,18.822851181030387],[100.17893218994169,18.830039978027344],[100.18718719482416,18.82883071899414],[100.18994140625006,18.81637954711914],[100.20095062255876,18.812122344970817],[100.2080917358399,18.81389808654785],[100.20922851562523,18.817270278930607],[100.21840667724638,18.81636047363287],[100.22384643554688,18.81892967224121],[100.2283477783206,18.82348060607916],[100.23625183105469,18.821199417114315],[100.24138641357439,18.81767082214361],[100.25193786621116,18.818370819091854],[100.25637054443388,18.816169738769588],[100.25939941406256,18.818769454956055],[100.27471923828136,18.81682968139654],[100.28430938720703,18.818170547485465],[100.29294586181663,18.81579971313471],[100.3046188354495,18.81655120849615],[100.31314849853521,18.80899810791027],[100.31835937500028,18.81088256835949],[100.32836151123064,18.80940055847168],[100.34047698974638,18.81106948852539],[100.3419189453125,18.80352020263672]]]},"properties":{"ID_0":228,"ISO":"TH-54","NAME_0":"Thailand","ID_1":47,"NAME_1":"Phrae","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"แพร่","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.33293151855474,7.520309925079346],[98.3329467773438,7.5102319717407795],[98.33032989501982,7.503299236297664],[98.32360839843756,7.497500896453857],[98.32469940185547,7.492001056671143],[98.31989288330072,7.492609977722111],[98.31617736816429,7.4956769943237305],[98.31652832031256,7.501077175140381],[98.32035827636724,7.505871772766113],[98.32496643066412,7.50872278213501],[98.32527923583984,7.515561103820801],[98.33293151855474,7.520309925079346]]],[[[98.37812805175781,7.614595890045166],[98.37961578369158,7.610980987548885],[98.37665557861334,7.605153083801383],[98.37761688232428,7.602220058441219],[98.37045288085955,7.596807003021297],[98.36305236816406,7.587488174438533],[98.35612487792963,7.589147090911865],[98.35333251953125,7.5983338356018635],[98.35540008544939,7.603031158447379],[98.36055755615234,7.607777118682861],[98.36542510986357,7.606952190399113],[98.36345672607428,7.613880157470817],[98.36844635009788,7.614826202392635],[98.37039947509794,7.610096931457633],[98.37548828125006,7.616287231445426],[98.37812805175781,7.614595890045166]]],[[[98.36944580078153,7.74777889251709],[98.37404632568371,7.745472908020076],[98.37999725341814,7.746944904327506],[98.38329315185553,7.740231037139949],[98.37949371337896,7.7377119064331055],[98.37516021728544,7.738637924194393],[98.37252807617182,7.742035865783635],[98.36343383789062,7.738446235656795],[98.36277770996105,7.744722843170223],[98.36944580078153,7.74777889251709]]],[[[98.332817077637,7.752690792083854],[98.32804870605497,7.752665996551627],[98.33071899414091,7.759280204772949],[98.33402252197283,7.758108139038143],[98.332817077637,7.752690792083854]]],[[[98.40000152587885,7.766390800476131],[98.39749908447277,7.761390209197998],[98.39250183105497,7.756110191345158],[98.39083099365246,7.760000228881893],[98.40000152587885,7.766390800476131]]],[[[98.4821395874024,7.767242908477897],[98.48069000244158,7.761034965515137],[98.47670745849626,7.760937213897705],[98.47555541992205,7.765553951263428],[98.4821395874024,7.767242908477897]]],[[[98.3704071044923,7.795551776886043],[98.37710571289057,7.793441772460994],[98.38278198242216,7.793821811676025],[98.38442993164068,7.788957118988094],[98.38939666748053,7.785359859466553],[98.38184356689482,7.778823852539006],[98.37139129638666,7.780119895935172],[98.3628768920899,7.7797307968140785],[98.35518646240251,7.786251068115291],[98.3563308715822,7.789630889892578],[98.36788940429693,7.795900821685905],[98.3704071044923,7.795551776886043]]],[[[98.4158325195312,7.8309497833251385],[98.41940307617216,7.829799175262451],[98.41651916503912,7.8240208625794025],[98.41033935546875,7.827011108398494],[98.4158325195312,7.8309497833251385]]],[[[98.43807983398443,7.941162109375],[98.43959045410179,7.937051773071289],[98.43769836425787,7.931350231170654],[98.43189239501953,7.92620420455944],[98.42390441894531,7.929923057556152],[98.41905975341808,7.927673816681022],[98.4140014648438,7.9374189376831055],[98.41671752929693,7.943130970001334],[98.42282104492193,7.941425800323543],[98.43050384521496,7.942287921905461],[98.43483734130865,7.946000099182129],[98.43807983398443,7.941162109375]]],[[[98.46891021728516,8.058029174804801],[98.47245025634777,8.04586315155035],[98.4699325561524,8.039011955261344],[98.46526336669939,8.0476589202882],[98.46002197265653,8.050720214843807],[98.45752716064459,8.05455112457281],[98.46669769287138,8.061881065368652],[98.46891021728516,8.058029174804801]]],[[[98.2932357788086,8.199727058410645],[98.30203247070318,8.197616577148494],[98.30178070068376,8.194607734680176],[98.30784606933605,8.190350532531681],[98.30989074707054,8.186276435852108],[98.3138427734375,8.187081336975098],[98.32198333740229,8.179161071777457],[98.33187866210949,8.173130035400504],[98.33822631835955,8.170780181884822],[98.34182739257807,8.158719062805176],[98.34158325195341,8.147523880004996],[98.34803009033226,8.142102241516056],[98.34539794921903,8.13243579864502],[98.3456268310548,8.127211570739803],[98.35415649414068,8.123331069946232],[98.35166168212913,8.112826347351188],[98.36025238037115,8.114528656005916],[98.36708068847662,8.120427131652832],[98.37229919433622,8.119668006897086],[98.37546539306646,8.115594863891658],[98.37373352050781,8.110612869262695],[98.37601470947266,8.10268592834484],[98.37536621093761,8.099361419677678],[98.38468933105497,8.089570045471191],[98.38623809814464,8.086071968078613],[98.39722442626959,8.08055591583252],[98.39998626708996,8.082461357116756],[98.40590667724604,8.080026626587028],[98.410453796387,8.084493637085075],[98.41613769531256,8.085550308227653],[98.4249877929687,8.095370292663574],[98.43058776855474,8.09830379486084],[98.43833160400385,8.09353065490734],[98.43914794921875,8.088979721069336],[98.4348831176759,8.085872650146484],[98.43514251708984,8.075169563293457],[98.43650054931646,8.07263088226324],[98.4419555664062,8.072668075561637],[98.44281768798834,8.065566062927303],[98.43458557128906,8.065572738647518],[98.42979431152344,8.053771972656307],[98.43172454833984,8.045713424682674],[98.43032073974604,8.042510032653865],[98.4244995117188,8.04377079010004],[98.41841888427757,8.04109001159668],[98.41777801513672,8.037222862243766],[98.41085052490246,8.025811195373649],[98.41027832031261,8.021943092346248],[98.41249847412132,8.010560989379996],[98.4107513427735,8.002635002136174],[98.41501617431669,7.995879173278809],[98.42314910888678,7.987809181213436],[98.41285705566412,7.990744113922233],[98.40750122070312,7.989968776702881],[98.40093994140636,7.986137866973877],[98.39962768554705,7.982086181640682],[98.39416503906256,7.978055953979606],[98.39501953125011,7.970849990844783],[98.3983383178711,7.967498779296875],[98.39389038085932,7.96083307266241],[98.39794921875,7.953475952148494],[98.39807891845714,7.947511196136588],[98.40127563476591,7.940878868103141],[98.41101074218778,7.930899143218937],[98.41506958007807,7.921030044555664],[98.41257476806652,7.917811870575065],[98.41761779785162,7.908944129943848],[98.42266845703136,7.902885913848991],[98.42100524902361,7.8970417976379395],[98.4278640747072,7.900116920471305],[98.43203735351557,7.9056439399720375],[98.43202972412121,7.911273002624455],[98.4403686523438,7.914910793304557],[98.44156646728527,7.906371116638297],[98.43840789794928,7.899631023407039],[98.43838500976562,7.893345832824821],[98.44029235839844,7.88853216171259],[98.44513702392584,7.883481025695801],[98.4394149780274,7.882143974304199],[98.43038940429688,7.875039100646973],[98.43463134765648,7.8692798614501385],[98.43373107910168,7.866189956665153],[98.42578887939453,7.874159812927189],[98.42028045654297,7.873610019683895],[98.4158325195312,7.871109962463493],[98.41418457031256,7.875250816345272],[98.409477233887,7.87742996215826],[98.39881134033232,7.87060022354126],[98.4022674560548,7.862543106079158],[98.39589691162115,7.859549999237174],[98.39333343505876,7.850000858306885],[98.39524078369158,7.8486199378967285],[98.39772033691423,7.839324951171875],[98.40766906738281,7.83918380737299],[98.40225982666027,7.831450939178524],[98.40583038330101,7.826944828033504],[98.40751647949224,7.817571163177433],[98.40229034423822,7.813057899475098],[98.40426635742193,7.809648990631217],[98.4111099243164,7.808333873748779],[98.4082870483399,7.7995409965515705],[98.4051589965822,7.805370807647705],[98.40156555175781,7.806544780731258],[98.39677429199236,7.813358783721867],[98.39197540283214,7.812706947326717],[98.38587188720714,7.8085088729859535],[98.385238647461,7.8161101341248695],[98.38036346435564,7.824804782867545],[98.3778686523437,7.83463001251215],[98.3755569458009,7.839444160461426],[98.36633300781256,7.838534832000732],[98.3608016967774,7.832622051239014],[98.35507202148443,7.831294059753532],[98.3483657836914,7.826789855957088],[98.33999633789068,7.808331012725887],[98.33717346191412,7.796999931335563],[98.33392333984398,7.790860176086483],[98.33365631103533,7.786861896514893],[98.33937835693376,7.780304908752498],[98.33309936523438,7.7741899490356445],[98.32986450195312,7.775310993194637],[98.3191909790039,7.769750118255615],[98.32014465332031,7.764895915985051],[98.31835937499994,7.760911941528434],[98.31144714355497,7.757532119750977],[98.30338287353521,7.762201786041203],[98.30650329589872,7.774384021759033],[98.30374908447271,7.777464866638127],[98.29700469970697,7.777552127838192],[98.28837585449247,7.775983810424805],[98.28677368164068,7.779569149017448],[98.29023742675804,7.785469055175895],[98.28594970703142,7.786880016327018],[98.28626251220732,7.792476177215633],[98.29280090332026,7.793640136718807],[98.29850006103527,7.803994178772086],[98.29558563232445,7.812867164611816],[98.29880523681646,7.815340042114258],[98.298080444336,7.819111824035701],[98.28947448730491,7.82647800445568],[98.29447937011747,7.833027839660701],[98.29243469238298,7.848252773284912],[98.28925323486334,7.857921123504752],[98.28203582763695,7.859652996063346],[98.2827377319336,7.864280223846492],[98.27732849121105,7.864192962646484],[98.27200317382824,7.869751930236873],[98.27494812011724,7.876179218292236],[98.26930999755888,7.88165378570551],[98.26559448242188,7.880023956298828],[98.2611465454101,7.8863301277160645],[98.263168334961,7.892199039459285],[98.27069091796892,7.891014099121094],[98.27383422851585,7.886354923248234],[98.28071594238287,7.8886499404907795],[98.28916931152355,7.885953903198356],[98.29298400878918,7.890943050384578],[98.29634857177757,7.900937080383358],[98.29656982421903,7.905600070953369],[98.29443359375023,7.9112658500671955],[98.28984069824224,7.915894985198918],[98.28498840332026,7.9156041145325275],[98.27287292480474,7.924911975860596],[98.26669311523455,7.925174236297607],[98.26321411132824,7.922787189483756],[98.26089477539091,7.9284491539001465],[98.2610092163086,7.933827877044735],[98.2580947875976,7.936232089996281],[98.2626266479495,7.949019908905143],[98.26694488525396,7.947500228881893],[98.281478881836,7.952281951904411],[98.28328704834001,7.9622302055359455],[98.27948760986345,7.963766098022575],[98.27831268310541,7.976096153259334],[98.27517700195335,7.983540058135986],[98.26986694335966,7.986257076263428],[98.27180480957043,7.989109992981071],[98.28382873535168,7.984855175018424],[98.28980255126953,7.990858078003043],[98.29250335693365,8.002737045288086],[98.29048919677746,8.022187232971305],[98.28798675537138,8.029523849487362],[98.2803497314456,8.029330253601017],[98.27220916748041,8.03757095336914],[98.27562713623058,8.04141616821289],[98.27760314941406,8.048175811767635],[98.2761917114259,8.051107406616325],[98.27776336669939,8.058219909668082],[98.27686309814459,8.062358856201115],[98.27258300781244,8.065254211425895],[98.27072143554688,8.07481861114502],[98.27533721923834,8.078930854797477],[98.28335571289068,8.083217620849666],[98.28639221191412,8.086666107177791],[98.28971862792997,8.08277797698986],[98.29718017578136,8.08926010131836],[98.29701232910173,8.099743843078727],[98.3000793457033,8.102923393249625],[98.30193328857433,8.109622001647892],[98.30165100097662,8.11989784240717],[98.29349517822271,8.165486335754451],[98.2885131835938,8.18535137176508],[98.28395080566429,8.196083068847713],[98.28655242919922,8.199922561645565],[98.2932357788086,8.199727058410645]]]]},"properties":{"ID_0":228,"ISO":"TH-83","NAME_0":"Thailand","ID_1":48,"NAME_1":"Phuket","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ภูเก็ต","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.10817718505882,14.14956092834484],[102.10395050048834,14.13451004028326],[102.10064697265642,14.127670288085938],[102.09963989257841,14.117790222168026],[102.1012802124024,14.103441238403263],[102.09165954589838,14.091819763183594],[102.08558654785173,14.086611747741756],[102.07958221435553,14.083970069885197],[102.07498168945335,14.086552619934025],[102.06619262695318,14.078290939331112],[102.05861663818388,14.079119682312012],[102.05818176269537,14.073640823364371],[102.04902648925787,14.07529067993164],[102.0416870117187,14.063830375671387],[102.04588317871088,14.055230140686035],[102.04283142089838,14.03910064697277],[102.0350418090822,14.034359931945858],[102.02757263183588,14.034189224243278],[102.01438140869169,14.031641006469783],[101.99279785156256,14.031360626220817],[101.97364807128906,14.026470184326172],[101.96151733398443,14.021190643310604],[101.95375823974604,14.021321296691838],[101.9509887695313,14.018951416015625],[101.94130706787115,14.015322685241813],[101.93672180175787,14.006839752197266],[101.93776702880876,13.991761207580623],[101.94130706787115,13.986489295959586],[101.94281005859398,13.964741706848201],[101.93924713134777,13.960089683532829],[101.94155883789057,13.95191860198986],[101.95178985595709,13.938310623168945],[101.95133209228516,13.93214130401617],[101.94489288330084,13.929619789123649],[101.94027709960938,13.9334716796875],[101.9319458007813,13.932451248169002],[101.9254913330081,13.937521934509334],[101.92160034179688,13.934729576110954],[101.91339874267578,13.933830261230412],[101.91313171386713,13.928640365600529],[101.90969848632807,13.922760009765739],[101.91011810302751,13.918830871582031],[101.90717315673857,13.913040161132756],[101.90782165527361,13.908009529113713],[101.90605163574247,13.900650024414006],[101.90775299072294,13.8862886428833],[101.90586853027355,13.88125038146967],[101.91593170166021,13.871270179748649],[101.91723632812506,13.86589145660406],[101.92101287841797,13.860940933227596],[101.92996978759766,13.852910995483342],[101.92617797851562,13.84766864776617],[101.92591094970697,13.84115123748785],[101.92208862304699,13.8298597335816],[101.92723846435558,13.823340415954704],[101.92662811279325,13.815290451049918],[101.93035888671875,13.811850547790584],[101.94531250000006,13.808291435241756],[101.94890594482445,13.800130844116211],[101.94544982910162,13.788722038269157],[101.94563293457031,13.783220291137695],[101.94416046142584,13.765419960022086],[101.9379119873048,13.759611129760856],[101.93176269531256,13.757051467895621],[101.92764282226557,13.757991790771541],[101.9225692749024,13.75574111938488],[101.92063903808594,13.750941276550407],[101.9240112304687,13.747471809387207],[101.93061065673834,13.745390892028809],[101.93734741210949,13.738810539245605],[101.94300842285162,13.73622035980219],[101.93988037109392,13.722221374511776],[101.93913269042969,13.709230422973633],[101.94239044189453,13.705061912536678],[101.94416809082037,13.698780059814453],[101.94375610351585,13.693779945373535],[101.946029663086,13.68649959564209],[101.9459381103515,13.674559593200797],[101.94947814941429,13.670430183410645],[101.94732666015625,13.664699554443416],[101.94828033447266,13.659620285034237],[101.94668579101574,13.654689788818303],[101.94239807128912,13.649970054626579],[101.94476318359403,13.646371841430721],[101.94404602050776,13.641401290893498],[101.94699096679693,13.63557052612316],[101.9514617919923,13.634030342102108],[101.95535278320312,13.628330230713004],[101.95582580566435,13.618540763855037],[101.95159149169928,13.618171691894474],[101.94782257080107,13.622741699218693],[101.94465637207031,13.619689941406193],[101.94431304931646,13.615169525146598],[101.94801330566435,13.607020378112793],[101.94391632080078,13.605198860168457],[101.93962860107433,13.60004997253418],[101.92085266113287,13.603680610656795],[101.91509246826172,13.606499671936092],[101.9102325439456,13.600549697875977],[101.90995025634766,13.58844089508051],[101.91245269775396,13.585261344909668],[101.89852905273443,13.581250190734977],[101.89357757568365,13.580659866333008],[101.88980865478521,13.583821296691895],[101.88526916503918,13.596110343933049],[101.87615966796892,13.60063171386713],[101.872329711914,13.60461139678955],[101.8689270019533,13.612481117248478],[101.86762237548828,13.62061977386469],[101.86447143554716,13.628572463989258],[101.85723876953136,13.63206958770752],[101.84200286865229,13.634552001953239],[101.83722686767572,13.638269424438477],[101.83525085449224,13.646691322326717],[101.83927154541044,13.655830383300838],[101.83917999267578,13.667091369628963],[101.83777618408214,13.672320365905819],[101.84184265136736,13.679641723632812],[101.83983612060553,13.684970855713004],[101.83917236328142,13.69390964508051],[101.8351211547851,13.700600624084416],[101.82817077636741,13.703940391540641],[101.82155609130888,13.70429992675787],[101.81664276123064,13.70239067077648],[101.8105697631836,13.694491386413688],[101.80245971679716,13.69308853149414],[101.80014801025396,13.695672035217285],[101.80159759521501,13.706360816955566],[101.79659271240229,13.711400032043457],[101.79202270507807,13.719491004943848],[101.79241180419916,13.724228858947868],[101.79537200927757,13.73158168792736],[101.79236602783232,13.736460685730094],[101.7979202270509,13.738270759582463],[101.79650878906273,13.74531078338623],[101.78916931152338,13.752461433410701],[101.78824615478533,13.756451606750488],[101.79051971435564,13.76036262512207],[101.79026794433622,13.768770217895508],[101.78066253662115,13.778850555420036],[101.77506256103533,13.780711174011344],[101.76741027832026,13.795391082763729],[101.7580871582033,13.802100181579647],[101.74928283691418,13.811750411987305],[101.74433898925776,13.803180694580135],[101.73870086669928,13.800551414489746],[101.73046112060547,13.79474067687994],[101.72251129150413,13.796229362487793],[101.71447753906256,13.796320915222225],[101.71002197265642,13.792780876159668],[101.70358276367188,13.791030883789062],[101.70066070556635,13.788061141967717],[101.70030212402361,13.78047084808344],[101.6977920532226,13.769380569458065],[101.69486999511724,13.76574993133545],[101.6858978271485,13.763991355896053],[101.68208312988287,13.756100654602108],[101.67788696289068,13.750569343566951],[101.67352294921903,13.740051269531193],[101.66835021972662,13.73606014251709],[101.66201782226568,13.735861778259277],[101.65344238281256,13.738631248474178],[101.64562988281256,13.744980812072868],[101.64019012451166,13.745089530944767],[101.63137817382841,13.73978042602539],[101.62568664550793,13.741270065307674],[101.61876678466803,13.737150192260685],[101.6121902465822,13.735210418701172],[101.60980987548834,13.737311363220329],[101.6014785766601,13.737240791320858],[101.5933685302735,13.734371185302848],[101.58766174316429,13.7439603805542],[101.57881164550798,13.752141952514705],[101.57602691650413,13.759811401367244],[101.57090759277372,13.75929069519043],[101.56375885009766,13.765301704406852],[101.55767059326172,13.775321006774846],[101.5563583374024,13.783850669860954],[101.55342864990251,13.794389724731502],[101.54837036132835,13.785371780395508],[101.53994750976568,13.785511016845817],[101.5324172973634,13.773909568786678],[101.529052734375,13.774901390075797],[101.5295028686524,13.782910346984863],[101.5254821777346,13.787031173706112],[101.5094833374024,13.796181678771973],[101.49658203124994,13.799139976501579],[101.48954772949236,13.802519798278865],[101.48377990722668,13.812329292297363],[101.47048187255876,13.821930885314941],[101.45890808105491,13.824749946594295],[101.43918609619158,13.82558917999279],[101.42890167236345,13.835559844970703],[101.41242218017607,13.835749626159668],[101.4015426635745,13.838629722595158],[101.38366699218744,13.845939636230469],[101.381889343262,13.849691390991211],[101.38314056396484,13.87003040313732],[101.37761688232422,13.87111854553234],[101.36976623535173,13.862180709838924],[101.3632278442384,13.867332458496094],[101.34786987304688,13.866390228271598],[101.34393310546903,13.857920646667537],[101.33785247802763,13.860432624816951],[101.33766937255871,13.86654090881359],[101.32985687255871,13.864950180053711],[101.31912231445318,13.866901397705135],[101.30925750732433,13.872949600219783],[101.30542755126982,13.872949600219783],[101.29776763916021,13.869961738586483],[101.28842926025419,13.872751235961971],[101.27950286865246,13.877099990844727],[101.27108001709013,13.87505054473877],[101.2631225585937,13.868769645690975],[101.25093841552751,13.86460113525385],[101.24714660644531,13.8673610687257],[101.24738311767601,13.87397098541254],[101.23648834228521,13.881950378417912],[101.22254180908203,13.884131431579647],[101.22281646728544,13.875470161437988],[101.21199798583979,13.87538146972662],[101.20265960693354,13.876911163330021],[101.20056152343744,13.873270988464355],[101.19608306884788,13.872731208801213],[101.18486022949247,13.861800193786678],[101.17665863037138,13.860770225524846],[101.17655181884783,13.857679367065373],[101.16728973388678,13.856790542602653],[101.16380310058594,13.852390289306697],[101.15284729003918,13.850219726562557],[101.15177154541016,13.855072021484318],[101.1609191894533,13.85818958282482],[101.16149139404314,13.861741065979118],[101.14633941650419,13.868941307067985],[101.1405868530274,13.878749847412166],[101.1408767700197,13.883502006530875],[101.14562225341791,13.885459899902344],[101.15148925781278,13.878649711608887],[101.1544265747072,13.879010200500602],[101.15969085693388,13.884600639343319],[101.1629028320313,13.890289306640682],[101.15804290771501,13.892860412597656],[101.15415191650419,13.888390541076717],[101.14914703369146,13.887711524963322],[101.14730072021513,13.891369819641227],[101.15051269531256,13.894790649414062],[101.15614318847673,13.896419525146484],[101.1532592773437,13.902020454406795],[101.15439605712885,13.913670539856014],[101.16194152832054,13.923960685730094],[101.16126251220697,13.93196964263916],[101.15589141845732,13.928741455078125],[101.15319061279303,13.931049346923942],[101.15563964843773,13.939650535583553],[101.15336608886724,13.94906997680664],[101.1497421264649,13.954530715942383],[101.14869689941423,13.960561752319336],[101.13912963867182,13.965371131896973],[101.13870239257841,13.968110084533748],[101.1436386108399,13.971590995788631],[101.14299011230486,13.981199264526424],[101.14122772216791,13.98606109619152],[101.14006805419933,13.998050689697266],[101.14509582519531,14.000029563903809],[101.14668273925804,13.995551109314022],[101.15460968017595,13.999291419982853],[101.16636657714872,14.002070426940918],[101.17122650146484,14.0049409866333],[101.17359924316412,14.009799957275504],[101.1783294677735,14.006131172180233],[101.1796798706057,14.011191368103084],[101.18779754638689,14.011249542236328],[101.19795227050781,14.014609336853084],[101.19493103027366,14.021129608154297],[101.20111846923822,14.02423191070568],[101.19808197021479,14.027131080627385],[101.20417022705072,14.038500785827637],[101.20448303222662,14.043901443481559],[101.20909118652372,14.044989585876579],[101.21479034423834,14.053991317749023],[101.2250671386721,14.051350593566951],[101.23660278320307,14.05933952331543],[101.24002075195324,14.057461738586483],[101.24672698974626,14.057951927185172],[101.2601318359375,14.06074142456066],[101.27340698242182,14.059782028198299],[101.27674865722662,14.058589935302791],[101.28520202636747,14.04974174499523],[101.28807067871122,14.054249763488826],[101.2952728271485,14.058031082153434],[101.29802703857416,14.06510066986084],[101.3068008422851,14.072341918945312],[101.31150054931646,14.070150375366325],[101.31241607666021,14.065420150756836],[101.32134246826172,14.070019721984863],[101.3232421875,14.074839591980094],[101.3206176757813,14.08227920532238],[101.31680297851568,14.085821151733398],[101.30912017822283,14.09640979766857],[101.30967712402361,14.110360145568848],[101.30480957031256,14.118570327758789],[101.29515075683588,14.12358188629156],[101.2882766723634,14.131420135498104],[101.28845977783214,14.138299942016715],[101.29209136962902,14.152421951294059],[101.30458831787115,14.160678863525504],[101.31227111816435,14.163551330566406],[101.31295776367188,14.168810844421444],[101.31643676757835,14.172081947326603],[101.33151245117193,14.176091194152889],[101.33075714111334,14.179059982299918],[101.33663940429693,14.18511104583746],[101.34291076660156,14.188798904419002],[101.34774780273466,14.196651458740291],[101.35983276367205,14.201681137085018],[101.3677597045899,14.200989723205623],[101.37397003173845,14.203550338745117],[101.37291717529303,14.209160804748535],[101.37728118896507,14.218940734863395],[101.38260650634771,14.22048091888422],[101.38578796386736,14.227510452270565],[101.3852310180664,14.232090950012207],[101.3802719116211,14.236270904541016],[101.38388061523455,14.248609542846737],[101.38005828857439,14.254781723022575],[101.38269042968761,14.257061004638672],[101.38535308837902,14.26571083068859],[101.38275909423828,14.270481109619197],[101.38636779785173,14.272301673889217],[101.39399719238298,14.273011207580566],[101.39852905273432,14.270551681518612],[101.4138412475586,14.25304985046398],[101.4173278808596,14.25156021118164],[101.4331893920899,14.254859924316406],[101.4425582885745,14.253100395202694],[101.45098114013666,14.253300666809082],[101.45796203613304,14.256509780883846],[101.46537780761724,14.261680603027457],[101.474418640137,14.260701179504395],[101.48281860351574,14.265899658203068],[101.48583221435553,14.263059616088867],[101.49449920654314,14.261199951171875],[101.49915313720726,14.265781402588004],[101.50010681152366,14.272760391235408],[101.50052642822294,14.297220230102653],[101.50624084472662,14.308450698852653],[101.50005340576172,14.313051223754996],[101.49639129638666,14.32306098937994],[101.49881744384794,14.331521034240836],[101.49430847167986,14.337011337280217],[101.48539733886724,14.343529701233024],[101.47818756103521,14.35875034332281],[101.4776229858399,14.363490104675293],[101.46127319335949,14.374839782714844],[101.45166778564476,14.38064956665039],[101.43383789062517,14.388422012329102],[101.4403915405274,14.400560379028434],[101.44272613525396,14.413380622863826],[101.44864654541044,14.42127990722662],[101.44351959228544,14.426510810852108],[101.43786621093767,14.436661720275879],[101.43939208984392,14.442041397094727],[101.43770599365234,14.44444274902338],[101.46109008789057,14.455510139465389],[101.47152709960943,14.45829105377203],[101.47515869140653,14.457059860229549],[101.48178863525396,14.46123123168951],[101.48725891113298,14.461921691894588],[101.49320983886719,14.451279640197868],[101.50431823730474,14.438501358032283],[101.511039733887,14.433300018310547],[101.529052734375,14.425389289856014],[101.53566741943354,14.423280715942496],[101.5429916381836,14.42411994934082],[101.54637908935564,14.431791305541935],[101.54910278320318,14.434359550476188],[101.56880187988287,14.433080673217887],[101.577377319336,14.434111595153752],[101.58658599853527,14.436989784240836],[101.59789276123064,14.436981201171989],[101.60665893554705,14.434880256652832],[101.62354278564459,14.426401138305664],[101.62075042724604,14.416911125183105],[101.62171936035173,14.414422035217342],[101.62892150878918,14.411580085754395],[101.63111877441412,14.405740737915153],[101.63629150390648,14.404730796813908],[101.6444168090822,14.406591415405387],[101.6502075195313,14.401629447937012],[101.64923095703125,14.39188098907482],[101.65579223632841,14.390911102295036],[101.6645202636721,14.382500648498535],[101.681640625,14.364680290222225],[101.68472290039068,14.362981796264648],[101.69428253173851,14.353842735290527],[101.70022583007841,14.344940185546875],[101.70983886718767,14.335430145263615],[101.71311950683594,14.330880165100154],[101.72048187255871,14.32649135589611],[101.72992706298834,14.31681060791027],[101.73927307128912,14.3103408813476],[101.74240112304716,14.306550979614371],[101.74971008300798,14.313240051269531],[101.74923706054693,14.31736087799078],[101.75195312500011,14.323370933532772],[101.74819183349626,14.339110374450797],[101.75016021728538,14.346809387207031],[101.75440979003935,14.343729972839412],[101.76293945312523,14.342139244079704],[101.77185821533203,14.34692096710205],[101.78079986572283,14.349651336669979],[101.78134918212885,14.355241775512695],[101.78962707519537,14.358040809631461],[101.79641723632807,14.357440948486385],[101.80230712890636,14.354649543762264],[101.81223297119135,14.346570014953613],[101.82634735107416,14.350909233093262],[101.83287811279314,14.36173057556158],[101.84355163574236,14.36255073547369],[101.84028625488276,14.356860160827694],[101.8410873413086,14.350651741027889],[101.84774780273455,14.3482408523559],[101.86026000976591,14.340231895446891],[101.87828063964844,14.322059631347713],[101.88875579834001,14.321291923522892],[101.8934173583985,14.319379806518612],[101.8961563110351,14.328920364379883],[101.9039916992187,14.325791358947868],[101.91268920898443,14.325071334838924],[101.91877746582054,14.329840660095215],[101.92426300048828,14.32963085174572],[101.93118286132818,14.32589054107666],[101.93547058105486,14.3193998336792],[101.93808746337919,14.312271118164062],[101.94310760498064,14.30338001251232],[101.94860839843744,14.300821304321403],[101.95780944824236,14.30781078338623],[101.96035766601585,14.317042350769157],[101.97557067871094,14.314848899841422],[101.98361206054693,14.312870979309139],[101.99659729003929,14.312150001525879],[102.00028228759777,14.30342102050787],[102.00070190429705,14.288060188293514],[101.99488067626976,14.28351974487316],[101.98811340332048,14.284680366516227],[101.98416137695312,14.28157997131359],[101.98284149169928,14.271991729736385],[101.97753906250006,14.26906967163086],[101.97644042968761,14.263621330261287],[101.97280883789091,14.258469581604118],[101.95800018310564,14.256230354309139],[101.95304107666033,14.253790855407772],[101.95300292968744,14.249988555908146],[101.95738220214838,14.247111320495605],[101.97059631347656,14.245629310607967],[101.98906707763689,14.2397718429566],[101.99079132080095,14.237579345703182],[101.98439788818365,14.232510566711426],[101.97043609619146,14.228289604187069],[101.97019958496111,14.22542858123785],[101.99301910400419,14.215152740478572],[102.00183868408197,14.207270622253418],[102.0163803100586,14.200189590454102],[102.02265167236345,14.199990272521973],[102.03302764892601,14.19699859619152],[102.03752899169939,14.194211959838867],[102.04328918457031,14.186109542846793],[102.04869842529325,14.183600425720272],[102.06149291992216,14.174469947814998],[102.06954956054682,14.165360450744743],[102.07640838623041,14.161841392517147],[102.08509063720726,14.160280227661076],[102.10106658935547,14.154818534851074],[102.10817718505882,14.14956092834484]]]},"properties":{"ID_0":228,"ISO":"TH-25","NAME_0":"Thailand","ID_1":49,"NAME_1":"Prachin Buri","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ปราจีนบุรี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.55995941162132,11.069950103759822],[99.55391693115246,11.069410324096737],[99.55670928955101,11.077626228332576],[99.56344604492216,11.082339286804256],[99.56294250488298,11.072714805603084],[99.55995941162132,11.069950103759822]]],[[[99.95555877685553,12.63257122039795],[99.95451354980486,12.621125221252498],[99.95502471923857,12.601648330688477],[99.9561386108399,12.583931922912654],[99.95812225341814,12.576239585876522],[99.9630584716798,12.569168090820312],[99.96357727050787,12.556600570678768],[99.9649963378908,12.54856014251709],[99.9686355590822,12.537419319152832],[99.97557067871116,12.521389961242676],[99.98221588134771,12.518059730529785],[99.97558593750006,12.506219863891715],[99.97425842285162,12.499279975891113],[99.97529602050798,12.476630210876465],[99.97888946533214,12.458060264587516],[99.9838333129884,12.450256347656364],[99.98162078857422,12.444940567016658],[99.98358154296898,12.438798904419002],[99.97988128662126,12.43574047088623],[99.98139190673845,12.424445152282772],[99.98668670654325,12.415129661560172],[99.99339294433588,12.407679557800293],[99.99504089355474,12.397295951843375],[99.99942779541021,12.384520530700684],[100.00063323974621,12.371830940246525],[99.99749755859398,12.353620529174805],[99.99852752685558,12.340450286865291],[100.0022201538086,12.335277557373104],[99.99447631835943,12.331721305847282],[99.98813629150396,12.320911407470703],[99.98284912109403,12.305961608886719],[99.98007202148455,12.29586124420166],[99.9792861938476,12.286299705505371],[99.97679901123041,12.278951644897575],[99.97474670410156,12.277779579162598],[99.97342681884766,12.270222663879395],[99.97640228271496,12.25606918334961],[99.97869873046886,12.250773429870662],[99.98889923095709,12.237322807311955],[100.00103759765642,12.228259086608944],[100.00649261474615,12.217619895935059],[100.0013885498048,12.213331222534293],[100.0170364379884,12.2002210617066],[100.0158309936524,12.192777633666992],[100.02055358886724,12.189307212829704],[100.01497650146501,12.182539939880371],[100.00821685791044,12.176897048950195],[100.0047531127932,12.16847991943365],[99.99623107910168,12.162919044494629],[99.98693847656267,12.153411865234432],[99.98459625244152,12.153601646423397],[99.98007202148455,12.147291183471737],[99.97499847412132,12.14444446563732],[99.96916961669916,12.135276794433594],[99.9695281982423,12.130719184875602],[99.96083068847656,12.111111640930119],[99.96666717529308,12.104891777038631],[99.96800231933605,12.098571777343864],[99.9642562866211,12.093960762023926],[99.96244812011747,12.086669921875057],[99.95667266845709,12.088061332702694],[99.95097351074241,12.083832740783748],[99.9456405639649,12.083571434021053],[99.9394760131836,12.07830619812023],[99.93389129638666,12.069170951843319],[99.92735290527372,12.063349723816032],[99.91458892822294,12.049964904785156],[99.90856170654297,12.04164123535162],[99.89697265625006,12.030409812927303],[99.88008117675793,12.012440681457633],[99.86612701416044,11.996420860290584],[99.85639190673857,11.983610153198299],[99.84500122070307,11.966390609741211],[99.83194732666038,11.941110610961914],[99.82277679443365,11.919443130493221],[99.81610870361351,11.901665687561092],[99.81223297119158,11.883610725402832],[99.8129196166995,11.871200561523551],[99.81836700439453,11.863609313964787],[99.82569885253935,11.865269660949707],[99.8229064941408,11.857330322265625],[99.82437896728527,11.85104942321783],[99.83161163330107,11.849120140075684],[99.83528137207026,11.84132099151617],[99.83467864990246,11.8348903656007],[99.83187866210955,11.828063964843807],[99.82852172851585,11.828615188598633],[99.82993316650385,11.837030410766658],[99.82769775390625,11.839139938354435],[99.81999969482433,11.83972358703619],[99.8147201538086,11.837781906128043],[99.80693817138678,11.830560684204158],[99.79888916015625,11.817502021789608],[99.79902648925793,11.806979179382438],[99.8014678955081,11.798681259155387],[99.81096649169945,11.787025451660213],[99.81764984130882,11.786710739135742],[99.81845855712919,11.781028747558594],[99.81146240234392,11.784414291381836],[99.80589294433605,11.783825874328613],[99.7991561889649,11.778260231018123],[99.79640197753923,11.772588729858398],[99.79666900634788,11.764735221862793],[99.80110931396496,11.765833854675236],[99.80472564697294,11.7605562210083],[99.8033370971682,11.752780914306697],[99.81111145019531,11.741665840148926],[99.81111145019531,11.737500190734863],[99.8063888549807,11.736665725708008],[99.80110931396496,11.738610267639217],[99.79702758789068,11.744345664978141],[99.7916870117188,11.74558162689209],[99.7861099243164,11.741670608520565],[99.76320648193376,11.721261024475154],[99.75138854980486,11.71138954162609],[99.7326965332033,11.691181182861385],[99.72471618652344,11.679169654846305],[99.7155532836914,11.655278205871582],[99.70861053466808,11.643889427185059],[99.68972015380871,11.61500072479248],[99.68360900878935,11.60333156585699],[99.67388916015636,11.58806133270258],[99.66916656494158,11.5780611038208],[99.659164428711,11.560832977294922],[99.6502761840822,11.543333053588867],[99.63500213623041,11.509166717529297],[99.63054656982428,11.492221832275447],[99.63027954101562,11.486941337585563],[99.62722015380876,11.47611045837408],[99.62777709960955,11.471112251281795],[99.61972045898449,11.465000152587947],[99.61416625976591,11.453888893127555],[99.61083221435547,11.444730758666992],[99.60583496093767,11.425555229186955],[99.60529327392578,11.417779922485352],[99.59944152832054,11.415278434753418],[99.59916687011736,11.404167175292969],[99.59583282470709,11.39972114562994],[99.58499908447294,11.37611103057867],[99.58110809326178,11.364999771118221],[99.58139038085949,11.35860919952404],[99.57360839843767,11.358612060546932],[99.56694793701189,11.350555419921875],[99.55972290039062,11.33500003814703],[99.55500030517601,11.320554733276367],[99.55194091796898,11.30694389343273],[99.55027770996122,11.293889045715389],[99.55027770996122,11.271110534668026],[99.5527801513673,11.256943702697754],[99.55527496337885,11.247220993042049],[99.5599899291995,11.23443984985363],[99.56610870361357,11.223334312438965],[99.57194519042974,11.217777252197322],[99.57799530029314,11.215920448303223],[99.58083343505854,11.210275650024471],[99.57776641845714,11.199201583862418],[99.57718658447277,11.192532539367619],[99.57002258300781,11.188619613647518],[99.5669250488283,11.183547019958553],[99.55972290039062,11.18861103057867],[99.56138610839838,11.190833091735954],[99.56138610839838,11.202221870422477],[99.5527801513673,11.206391334533691],[99.54332733154297,11.208061218261719],[99.53866577148449,11.20666217803955],[99.52848815917991,11.200649261474723],[99.52556610107422,11.200489997863883],[99.52036285400402,11.196024894714412],[99.50749969482445,11.181671142578239],[99.50083160400413,11.172780036926326],[99.49305725097685,11.157501220703068],[99.48832702636713,11.143890380859432],[99.48638916015653,11.130832672119197],[99.48611450195318,11.116944313049316],[99.48750305175787,11.106945037841854],[99.49081420898432,11.091389656067008],[99.48441314697271,11.087511062622184],[99.48538970947288,11.084260940551871],[99.49054718017584,11.0841703414917],[99.49333190917969,11.079998970031681],[99.4958267211914,11.060279846191406],[99.49805450439447,11.051388740539494],[99.5011138916015,11.045834541320914],[99.50083160400413,11.013890266418514],[99.49916839599638,11.002500534057674],[99.50000000000017,10.995000839233398],[99.50305175781267,10.992221832275334],[99.50166320800793,10.988333702087402],[99.49630737304716,10.988253593444824],[99.49295806884766,10.987301826476994],[99.486312866211,10.989560127258414],[99.47921752929688,10.988559722900504],[99.47360992431669,10.991971969604549],[99.47009277343756,10.99201965332037],[99.46237945556652,10.988341331481934],[99.44042205810575,10.970600128173885],[99.42690277099621,10.969550132751579],[99.41494750976562,10.958910942077694],[99.40889739990257,10.955019950866642],[99.3998794555664,10.956579208374137],[99.37941741943354,10.962920188903752],[99.37384033203153,10.969640731811523],[99.3695983886721,10.968050003051815],[99.3608016967774,10.968648910522461],[99.34587097167986,10.975030899047852],[99.34358215332048,10.97400093078619],[99.33685302734403,10.965741157531681],[99.33338165283209,10.965230941772461],[99.32756042480486,10.96897983551031],[99.31144714355474,10.967930793762264],[99.30771636962908,10.965201377868766],[99.2996215820313,10.9681911468507],[99.29091644287104,10.969009399414176],[99.2816162109375,10.957478523254451],[99.27519989013695,10.960790634155387],[99.27256011962919,10.96550178527832],[99.26706695556652,10.96735858917242],[99.25824737548857,10.965600013733024],[99.25627899169928,10.968132019042969],[99.24967956542997,10.96825122833252],[99.24521636962896,10.971990585327205],[99.24156188964844,10.971591949463004],[99.2409896850586,10.97721195220953],[99.23722839355491,10.979230880737362],[99.23204803466797,10.978030204773006],[99.22294616699224,10.982672691345272],[99.2162704467774,10.981790542602596],[99.20894622802734,10.988021850585994],[99.19906616210943,10.991290092468262],[99.20050048828136,10.995540618896484],[99.19319152832037,10.99745082855219],[99.1852264404298,10.995771408081055],[99.1685409545899,11.004180908203125],[99.16526794433594,11.010100364685059],[99.15727996826172,11.012530326843319],[99.15470123291044,11.011809349060059],[99.14745330810575,11.015610694885197],[99.15145874023466,11.020670890808105],[99.15123748779303,11.032372474670524],[99.15734863281278,11.031820297241211],[99.16574859619169,11.042000770568848],[99.17093658447277,11.042189598083553],[99.17299652099638,11.045431137085018],[99.17073059082043,11.051031112670842],[99.17163848876959,11.054171562194938],[99.17765045166033,11.06066036224371],[99.17981719970726,11.071150779724178],[99.17784118652361,11.075771331787053],[99.17988586425793,11.082050323486442],[99.188949584961,11.082619667053223],[99.19333648681646,11.086971282959098],[99.20050811767572,11.090410232543888],[99.20304870605469,11.100251197815055],[99.21183776855474,11.097440719604492],[99.21588897705084,11.099970817565861],[99.21698760986334,11.104591369628963],[99.22283172607416,11.10608959197998],[99.22757720947277,11.112200736999512],[99.22881317138678,11.11767959594738],[99.22875976562517,11.129691123962402],[99.22389221191429,11.13453197479248],[99.22487640380888,11.141430854797363],[99.23195648193371,11.143100738525334],[99.23972320556663,11.154390335083065],[99.24336242675787,11.154800415039176],[99.24851226806646,11.163480758667049],[99.2531814575197,11.168621063232536],[99.25212097167991,11.173211097717285],[99.25775146484392,11.18281078338623],[99.25930786132812,11.187707901000977],[99.25769805908232,11.191520690917969],[99.26132965087902,11.194040298461914],[99.26225280761747,11.198630332946891],[99.26966094970726,11.203420639038029],[99.27780151367188,11.19906139373785],[99.28041839599621,11.190831184387207],[99.28665161132818,11.18949985504156],[99.29171752929705,11.194198608398494],[99.29393768310575,11.199181556701717],[99.29297637939482,11.202980995178223],[99.2979125976563,11.204019546508846],[99.3026733398438,11.2095308303833],[99.30330657958996,11.214620590210075],[99.30790710449236,11.216540336608887],[99.30793762207031,11.227951049804688],[99.31005859375,11.23331165313732],[99.30663299560553,11.238091468811092],[99.30198669433588,11.238970756530875],[99.29828643798834,11.242899894714355],[99.29628753662126,11.248171806335392],[99.29899597167969,11.252532005310059],[99.307670593262,11.256177902221737],[99.31172943115251,11.263489723205623],[99.31414794921903,11.271290779113713],[99.31723022460949,11.27251052856451],[99.32446289062511,11.281611442565918],[99.32691955566435,11.286641120910701],[99.32390594482433,11.295009613037166],[99.32417297363281,11.300409317016545],[99.31328582763672,11.313961029052848],[99.31920623779297,11.322630882263297],[99.32707214355491,11.328640937805233],[99.3270263671875,11.334550857543888],[99.3316268920899,11.336820602417049],[99.33638000488281,11.333789825439567],[99.34226989746094,11.33617973327631],[99.34401702880865,11.346611976623535],[99.34690093994163,11.351352691650504],[99.35182189941406,11.352890968322754],[99.36061859130865,11.362670898437557],[99.36543273925787,11.370891571044922],[99.37903594970697,11.37482070922863],[99.38461303710938,11.380651473999023],[99.39576721191435,11.38140964508068],[99.40235900878906,11.38838195800787],[99.40233612060564,11.392729759216365],[99.39807128906278,11.39939022064209],[99.40017700195341,11.403071403503418],[99.40554046630871,11.406311988830566],[99.40196990966797,11.410200119018555],[99.40349578857422,11.41460132598877],[99.40306091308605,11.42488002777094],[99.39685821533209,11.438890457153263],[99.40210723876964,11.442750930786133],[99.3985366821289,11.445460319519043],[99.39360046386719,11.45267200469982],[99.394828796387,11.46085071563732],[99.40412139892601,11.465650558471793],[99.40965270996116,11.46266078948969],[99.4125366210938,11.467070579528809],[99.41155242919928,11.471771240234432],[99.41954803466803,11.473921775817871],[99.42083740234392,11.480180740356502],[99.42648315429716,11.481220245361442],[99.43031311035185,11.477999687194767],[99.43321990966814,11.480570793151912],[99.44055175781273,11.478081703186092],[99.44258117675798,11.486931800842228],[99.44702148437506,11.491312026977653],[99.45928955078153,11.490621566772575],[99.45877838134783,11.494640350341797],[99.44873046875006,11.50781059265148],[99.45429992675804,11.509320259094352],[99.46105957031244,11.516099929809684],[99.4634017944336,11.521250724792594],[99.47322845459013,11.530791282653809],[99.47428131103516,11.535299301147404],[99.47003173828142,11.541640281677246],[99.46871185302751,11.548859596252555],[99.46318817138689,11.548660278320426],[99.46349334716825,11.556469917297363],[99.46817779541016,11.563401222228947],[99.46804046630865,11.566300392150879],[99.46340942382812,11.575370788574332],[99.45871734619169,11.58069133758545],[99.45876312255854,11.583720207214355],[99.46347045898443,11.588300704956168],[99.46118164062506,11.593489646911564],[99.4627227783206,11.5986709594726],[99.46775054931658,11.60553073883068],[99.4674682617188,11.61304092407238],[99.47798919677763,11.622961997985897],[99.48426818847685,11.625810623168888],[99.49160003662126,11.624521255493164],[99.49382019042997,11.628211021423283],[99.50638580322271,11.635460853576774],[99.51651763916044,11.635971069335994],[99.5221023559572,11.625149726867676],[99.52809906005882,11.62129116058361],[99.53385925292997,11.621010780334416],[99.5419692993164,11.6230211257934],[99.54534912109386,11.626950263977108],[99.55037689208984,11.627381324768123],[99.55770111084013,11.623201370239258],[99.56416320800804,11.625972747802791],[99.5705795288086,11.637689590454102],[99.5703506469726,11.642560005188045],[99.57350158691429,11.64727973937994],[99.58489227294922,11.65435886383068],[99.58757781982422,11.658411979675407],[99.583511352539,11.675020217895451],[99.58370208740229,11.677950859069824],[99.58863830566418,11.682050704956112],[99.5882873535158,11.686991691589412],[99.59041595458984,11.690941810607967],[99.59796142578153,11.693539619445914],[99.59716796875006,11.698590278625488],[99.60301971435547,11.706950187683105],[99.61000823974621,11.709491729736385],[99.61554718017572,11.709570884704647],[99.61956787109392,11.720850944519043],[99.6272583007813,11.723440170288143],[99.63095855712919,11.72282886505127],[99.6385116577149,11.730731010436955],[99.64057159423845,11.7427597045899],[99.63788604736345,11.755430221557617],[99.64089965820324,11.76454162597662],[99.64421844482422,11.767910003662223],[99.64436340332048,11.774271011352596],[99.64224243164074,11.776940345764217],[99.64070129394543,11.788352012634334],[99.6452026367188,11.789650917053223],[99.64859771728516,11.802680969238338],[99.65338897705084,11.812569618225098],[99.65806579589855,11.810759544372559],[99.6605606079101,11.819488525390739],[99.66477203369158,11.822800636291447],[99.65927124023438,11.828301429748649],[99.65190887451178,11.829339981079102],[99.64240264892607,11.826370239257926],[99.63565063476568,11.83067989349371],[99.62998199462896,11.83240127563488],[99.62219238281278,11.832290649414176],[99.62480163574241,11.838021278381461],[99.62525939941418,11.84955978393566],[99.62055969238281,11.854280471801871],[99.614486694336,11.85689926147461],[99.61051177978538,11.864231109619254],[99.61012268066429,11.86791038513195],[99.60350036621122,11.87035274505621],[99.60027313232433,11.878211021423454],[99.59571075439447,11.872131347656364],[99.58856964111351,11.872090339660758],[99.58946228027344,11.88583087921154],[99.58496093750006,11.88898944854742],[99.58158111572277,11.896309852600098],[99.57974243164062,11.904400825500488],[99.58618164062494,11.91296100616455],[99.58653259277355,11.929391860961971],[99.58362579345709,11.933380126953239],[99.58055114746116,11.943679809570426],[99.59210205078142,11.950739860534725],[99.59404754638672,11.9545192718507],[99.59187316894543,11.963661193847713],[99.59461212158203,11.970240592956657],[99.59400939941423,11.975730895996207],[99.59060668945312,11.979969978332576],[99.59268951416033,11.989811897277832],[99.58943939209001,11.996891021728516],[99.58277893066423,11.998480796813965],[99.57736968994169,12.005869865417537],[99.56658935546875,12.007381439208984],[99.5627670288086,12.010589599609432],[99.55596160888695,12.010052680969238],[99.55152130126953,12.012140274047908],[99.53807830810575,12.013689994812069],[99.53726959228538,12.018680572509822],[99.54112243652372,12.028361320495662],[99.54133605957043,12.036109924316463],[99.53569030761719,12.041839599609432],[99.53605651855469,12.048930168151855],[99.5327606201173,12.053321838378963],[99.53427886962902,12.065271377563477],[99.54152679443371,12.074440002441463],[99.54601287841803,12.07660102844244],[99.55027770996122,12.081630706787166],[99.55187988281267,12.090049743652344],[99.55623626708979,12.092450141906738],[99.55708312988287,12.097391128540096],[99.55539703369146,12.103719711303711],[99.5556182861331,12.112690925598145],[99.56092834472662,12.118680953979549],[99.5603790283206,12.127221107482853],[99.57007598876976,12.136101722717342],[99.5713729858399,12.144721984863395],[99.56535339355497,12.144621849060115],[99.5621490478515,12.147591590881461],[99.55789947509794,12.147199630737305],[99.55007171630888,12.150151252746696],[99.54026794433594,12.14369201660162],[99.53070831298845,12.147471427917594],[99.52536010742205,12.144221305847282],[99.52262115478544,12.147130966186637],[99.51715087890642,12.147291183471737],[99.50849151611357,12.14293098449707],[99.50179290771507,12.143780708312988],[99.49401855468778,12.129159927368107],[99.48590087890625,12.128359794616813],[99.47885131835938,12.133001327514705],[99.47373962402366,12.131011009216309],[99.47270202636736,12.135609626770076],[99.47473907470732,12.143671035766602],[99.47464752197266,12.154790878296012],[99.47344207763683,12.156830787658691],[99.47844696044939,12.162929534912223],[99.4871368408206,12.165430068969727],[99.48995208740257,12.170741081237907],[99.48887634277355,12.180910110473633],[99.49524688720703,12.188879966735897],[99.49678039550781,12.196101188659782],[99.49263000488304,12.199140548706112],[99.49144744873047,12.207749366760254],[99.48654174804693,12.211739540100098],[99.48803710937506,12.216150283813477],[99.47918701171892,12.225469589233455],[99.47927856445335,12.22812938690197],[99.47389221191406,12.231331825256461],[99.47193908691423,12.234870910644588],[99.47277069091803,12.24063968658453],[99.4763488769533,12.241689682006893],[99.4785079956057,12.247130393982047],[99.48269653320318,12.251811981201286],[99.48291015625023,12.258318901062012],[99.48104858398466,12.26500129699707],[99.48475646972656,12.272661209106502],[99.48239898681652,12.278052330017033],[99.47532653808622,12.281760215759334],[99.46650695800804,12.281629562378043],[99.46224212646484,12.284930229187069],[99.46257781982416,12.29651927947998],[99.45816802978527,12.298959732055664],[99.45388031005865,12.305862426757926],[99.45329284667969,12.310971260070914],[99.44830322265642,12.311689376831112],[99.443359375,12.326880455017033],[99.44632720947294,12.330631256103516],[99.44303894042991,12.335062026977596],[99.43441009521484,12.341851234436035],[99.43769836425804,12.348300933838004],[99.44393920898438,12.349780082702694],[99.44280242919922,12.355571746826286],[99.43271636962896,12.363031387329102],[99.43837738037126,12.370169639587346],[99.43718719482433,12.374270439147892],[99.44297027587908,12.381561279296932],[99.44349670410168,12.392671585083065],[99.44229888916021,12.39907073974615],[99.4454421997072,12.405070304870662],[99.44332885742205,12.410060882568416],[99.43566131591808,12.413559913635254],[99.42597961425798,12.425901412963867],[99.42450714111334,12.437349319458121],[99.42540740966814,12.448180198669377],[99.41459655761724,12.449380874633903],[99.40908813476585,12.455821990966854],[99.4034576416015,12.459459304809684],[99.4044799804688,12.466959953308049],[99.40699005126976,12.471671104431152],[99.40651702880876,12.47981166839611],[99.41548919677751,12.485622406005916],[99.41720581054705,12.488361358642521],[99.4262619018557,12.49043273925787],[99.42523193359392,12.499120712280273],[99.42121887207048,12.504301071166992],[99.42070007324224,12.517470359802246],[99.4187316894533,12.523001670837402],[99.42234039306635,12.528980255126896],[99.42440032959013,12.541310310363826],[99.42218780517578,12.550849914550781],[99.42443084716791,12.556078910827637],[99.43264007568354,12.555290222168026],[99.43592834472656,12.564721107483024],[99.43141174316429,12.569010734558049],[99.43531036376947,12.573341369628906],[99.43975067138672,12.58240032196045],[99.45410919189476,12.57855129241949],[99.46045684814464,12.580617904663143],[99.46407318115263,12.584289550781307],[99.47277069091803,12.587781906127873],[99.48013305664057,12.58942031860363],[99.48567962646501,12.587869644164982],[99.48874664306658,12.58998966217041],[99.49311065673845,12.587649345398063],[99.49175262451183,12.581939697265625],[99.4956665039063,12.580351829528752],[99.50048828125028,12.573710441589412],[99.5130310058596,12.566631317138729],[99.51657867431658,12.562920570373535],[99.52407836914068,12.560931205749569],[99.52675628662115,12.565019607543945],[99.53385162353521,12.567779541015739],[99.54058074951183,12.574261665344238],[99.54051971435553,12.577051162719727],[99.5475463867188,12.578730583190861],[99.55827331542997,12.576992034912223],[99.56845092773455,12.577190399170036],[99.5766830444336,12.575871467590446],[99.58094024658226,12.577341079712028],[99.58509826660156,12.570220947265739],[99.58869934082031,12.557000160217285],[99.59427642822271,12.547730445861873],[99.6036300659182,12.541620254516658],[99.61342620849621,12.53993129730219],[99.62026977539091,12.54159927368164],[99.61841583251947,12.546731948852539],[99.62377929687517,12.554660797119197],[99.62180328369169,12.56587028503418],[99.62525177001964,12.576411247253532],[99.6244659423831,12.586111068725586],[99.62888336181652,12.593401908874625],[99.6269912719726,12.601350784301815],[99.61772155761724,12.60812091827404],[99.61399078369169,12.614569664001465],[99.61611938476557,12.621431350707951],[99.61483764648438,12.626489639282283],[99.61482238769548,12.63611984252941],[99.62200927734386,12.645550727844181],[99.61997222900408,12.648620605468864],[99.6288604736331,12.652430534362793],[99.63156890869135,12.643151283264103],[99.64082336425804,12.641090393066406],[99.6462707519533,12.635980606079102],[99.65734863281267,12.639630317687931],[99.66848754882835,12.645330429077262],[99.67627716064459,12.64708042144781],[99.68683624267607,12.647501945495662],[99.69316864013683,12.650749206543082],[99.69599151611357,12.649939537048454],[99.70770263671892,12.652461051940975],[99.71559143066429,12.651201248168888],[99.71984863281278,12.648289680481014],[99.72158813476574,12.64176273345953],[99.73561096191412,12.63737964630127],[99.73855590820324,12.633870124817008],[99.73803710937517,12.623391151428223],[99.74771118164074,12.627950668335018],[99.74986267089861,12.615101814270076],[99.74842834472662,12.606881141662711],[99.7533798217774,12.606491088867301],[99.75505828857428,12.593270301818904],[99.75750732421875,12.583890914917049],[99.76473236084001,12.584020614624023],[99.76909637451166,12.590600967407227],[99.77700805664085,12.595952033996525],[99.78214263916021,12.600819587707576],[99.7906570434572,12.606000900268612],[99.80915832519548,12.619759559631348],[99.82023620605486,12.627340316772518],[99.82917785644526,12.630127906799373],[99.84658813476562,12.621741294860783],[99.86654663085949,12.62559890747076],[99.8767929077149,12.625301361083928],[99.88346862792974,12.620590209961051],[99.88997650146513,12.622970581054688],[99.89260864257835,12.626791000366268],[99.89856719970732,12.628450393676871],[99.90560913085966,12.635569572448674],[99.91332244873064,12.630049705505428],[99.91577148437494,12.624739646911678],[99.9244232177735,12.6251802444458],[99.9259262084961,12.629961013794002],[99.93231201171903,12.62878131866455],[99.94111633300793,12.630090713500977],[99.95201110839838,12.63400936126709],[99.95555877685553,12.63257122039795]]]]},"properties":{"ID_0":228,"ISO":"TH-77","NAME_0":"Thailand","ID_1":50,"NAME_1":"Prachuap Khiri Khan","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ประจวบคีรีขันธ์","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.35066223144531,9.433947563171387],[98.34850311279291,9.440096855163631],[98.35225677490263,9.440739631652889],[98.35468292236334,9.436717033386344],[98.35066223144531,9.433947563171387]]],[[[98.38156890869146,9.478392601013297],[98.37722015380882,9.476426124572754],[98.37183380126953,9.478712081909237],[98.37260437011724,9.48344802856451],[98.36924743652372,9.492362022399846],[98.37254333496111,9.493291854858342],[98.37486267089844,9.489151000976506],[98.38131713867205,9.48678970336914],[98.3838195800783,9.483532905578556],[98.38156890869146,9.478392601013297]]],[[[98.35305786132824,9.503397941589355],[98.3511428833009,9.497590065002441],[98.35245513916044,9.492286682128963],[98.35073852539091,9.488649368286133],[98.34491729736328,9.484679222107047],[98.34223175048845,9.474413871765194],[98.33148956298857,9.467713356018123],[98.33004760742188,9.470931053161678],[98.33171844482416,9.478413581848145],[98.3375015258789,9.485569953918514],[98.33972167968744,9.494169235229549],[98.34818267822266,9.50267505645752],[98.35305786132824,9.503397941589355]]],[[[98.48180389404308,9.535629272461051],[98.47865295410162,9.543121337890568],[98.47972106933588,9.549445152282715],[98.4854965209961,9.54839897155773],[98.48555755615257,9.53878116607666],[98.48180389404308,9.535629272461051]]],[[[98.51984405517578,9.572224617004338],[98.5137023925783,9.571711540222225],[98.51440429687528,9.577178001403865],[98.51986694335943,9.57709980010992],[98.51984405517578,9.572224617004338]]],[[[98.4774475097658,9.582309722900334],[98.4859008789063,9.580141067504996],[98.48932647705078,9.576642036437988],[98.487113952637,9.57330322265625],[98.48181915283197,9.571469306945744],[98.47279357910162,9.579759597778434],[98.4774475097658,9.582309722900334]]],[[[98.47199249267584,9.587212562560978],[98.47295379638678,9.58384895324707],[98.4710617065432,9.576948165893612],[98.46694183349604,9.57336711883545],[98.46253967285168,9.575441360473633],[98.4614334106447,9.579998970031852],[98.4637680053711,9.585680961609],[98.47199249267584,9.587212562560978]]],[[[98.50389099121122,9.611944198608398],[98.49777221679693,9.613725662231559],[98.49722290039091,9.618887901306152],[98.50111389160173,9.623611450195256],[98.50749969482428,9.615830421447754],[98.50389099121122,9.611944198608398]]],[[[98.5081253051759,9.705327033996696],[98.51483917236345,9.702731132507381],[98.5134887695312,9.696850776672363],[98.5078125,9.697362899780387],[98.50234985351568,9.702183723449707],[98.49820709228527,9.701306343078727],[98.49783325195324,9.70648002624523],[98.5028915405274,9.709541320800838],[98.5081253051759,9.705327033996696]]],[[[98.41472625732422,9.770380020141602],[98.41576385498053,9.76834487915039],[98.41471862792986,9.759166717529297],[98.4208068847658,9.746047973632926],[98.42288208007807,9.736701011657658],[98.42508697509788,9.734503746032772],[98.4204940795899,9.72226524353033],[98.41723632812506,9.71836090087902],[98.40896606445307,9.712900161743278],[98.40456390380871,9.711359977722225],[98.4014282226563,9.705497741699219],[98.38986206054699,9.703864097595329],[98.39060211181669,9.706668853759709],[98.39588165283209,9.710310935974178],[98.39590454101585,9.718765258789176],[98.38682556152355,9.730761528015194],[98.37982177734375,9.731671333313102],[98.38884735107445,9.747223854064885],[98.39291381835949,9.746987342834586],[98.3989028930664,9.743801116943416],[98.40636444091803,9.74818134307867],[98.40856933593761,9.755987167358398],[98.40843200683594,9.762367248535213],[98.40068817138678,9.765098571777457],[98.40486907959007,9.76900577545166],[98.41472625732422,9.770380020141602]]],[[[98.45623779296886,9.86286544799816],[98.46354675292986,9.859300613403377],[98.46966552734375,9.862837791442871],[98.4713287353515,9.858874320983887],[98.47015380859403,9.852975845336914],[98.46337890625,9.838753700256461],[98.46338653564453,9.835160255432072],[98.46714782714861,9.830367088317871],[98.46849822998064,9.824461936950684],[98.46402740478544,9.816910743713379],[98.45656585693382,9.817481040954647],[98.45391845703153,9.814860343933105],[98.45034027099621,9.804211616516113],[98.45355224609403,9.800938606262207],[98.45508575439482,9.795243263244743],[98.452201843262,9.789800643920955],[98.4479598999024,9.798691749572868],[98.44542694091814,9.800094604492188],[98.43988800048845,9.797588348388729],[98.43318939208979,9.804644584655875],[98.43494415283203,9.812520980835018],[98.43206024169939,9.813832283020076],[98.43171691894531,9.822951316833496],[98.44216156005876,9.833133697509709],[98.44229888916044,9.843485832214412],[98.43819427490234,9.857880592346191],[98.45255279541038,9.871049880981388],[98.45623779296886,9.86286544799816]]],[[[98.5154647827149,9.90497684478754],[98.51308441162121,9.899516105651855],[98.50824737548851,9.903519630432186],[98.5154647827149,9.90497684478754]]],[[[98.48610687255865,9.91256237030035],[98.49180603027344,9.909687995910645],[98.48964691162104,9.905081748962516],[98.48273468017607,9.896990776062125],[98.47126007080084,9.895213127136287],[98.47636413574224,9.907135009765682],[98.47532653808605,9.910326004028263],[98.48171234130865,9.913804054260254],[98.48610687255865,9.91256237030035]]],[[[98.56381225585949,9.919012069702092],[98.56815338134771,9.91850566864025],[98.57027435302763,9.911390304565373],[98.5622253417971,9.902499198913688],[98.55998229980497,9.896370887756461],[98.55722045898438,9.896941184997559],[98.55666351318365,9.9047212600708],[98.55750274658232,9.914722442627067],[98.56381225585949,9.919012069702092]]],[[[98.52179718017601,9.921229362487736],[98.51888275146484,9.913961410522518],[98.51351928710955,9.912139892578239],[98.51072692871116,9.90715122222906],[98.5075073242188,9.910870552063045],[98.51508331298834,9.920840263366642],[98.52179718017601,9.921229362487736]]],[[[98.48256683349621,9.927462577819881],[98.48050689697283,9.932431221008358],[98.48482513427763,9.934602737426758],[98.48734283447277,9.930581092834473],[98.48256683349621,9.927462577819881]]],[[[98.59068298339872,9.937399864196777],[98.58603668212896,9.942219734192008],[98.5860443115235,9.947981834411735],[98.58868408203125,9.954951286316032],[98.59443664550787,9.951110839843693],[98.59068298339872,9.937399864196777]]],[[[98.66443634033209,10.155281066894588],[98.66722106933588,10.150278091430607],[98.66083526611351,10.142223358154354],[98.65583038330078,10.141670227050781],[98.65166473388678,10.144998550415039],[98.6566696166995,10.15472221374523],[98.66443634033209,10.155281066894588]]],[[[98.6738891601562,10.1650009155274],[98.67888641357439,10.162491798400879],[98.67944335937517,10.156109809875488],[98.67444610595714,10.152779579162598],[98.67082977294933,10.154166221618766],[98.66889190673857,10.158610343933162],[98.6738891601562,10.1650009155274]]],[[[98.66444396972662,10.16555500030529],[98.6661148071289,10.156665802001953],[98.6572189331057,10.156388282775879],[98.65860748291027,10.162501335143986],[98.66444396972662,10.16555500030529]]],[[[98.88932037353521,10.773949623107853],[98.89025878906256,10.76965141296398],[98.89456176757824,10.761540412902889],[98.8948364257813,10.756060600280875],[98.899917602539,10.751910209655762],[98.90995025634771,10.753141403198242],[98.91438293457043,10.747591018676815],[98.91042327880876,10.740701675415096],[98.9114379882813,10.73640060424816],[98.90522766113293,10.729121208190975],[98.90550994873047,10.7227401733399],[98.90217590332043,10.719070434570312],[98.90188598632812,10.714680671692008],[98.89855194091808,10.712570190429688],[98.89924621582037,10.70597171783453],[98.89006042480469,10.69480037689209],[98.89560699462896,10.681749343872127],[98.90071868896484,10.684981346130485],[98.90516662597679,10.690120697021484],[98.91110992431669,10.685400962829533],[98.90870666503923,10.680980682373047],[98.90962982177746,10.677652359008732],[98.91889190673834,10.679809570312557],[98.92382049560547,10.678631782531852],[98.93017578125006,10.672069549560604],[98.92849731445324,10.665150642394963],[98.92623901367182,10.662500381469783],[98.92546844482416,10.655751228332633],[98.9285888671875,10.648140907287598],[98.93289184570324,10.649339675903377],[98.94702911376947,10.644691467285213],[98.94808197021507,10.639001846313477],[98.95075988769554,10.63707160949707],[98.94857788085955,10.630551338195858],[98.9453201293947,10.611517906189022],[98.94731140136724,10.610120773315487],[98.9554672241211,10.613830566406307],[98.95971679687523,10.613141059875488],[98.96121978759771,10.607749938964957],[98.96481323242188,10.60492038726818],[98.96306610107439,10.599919319152775],[98.9615707397461,10.588630676269588],[98.95990753173851,10.583709716796932],[98.95488739013672,10.578429222106934],[98.94439697265625,10.570170402526855],[98.9412994384765,10.569290161132812],[98.94798278808588,10.55292129516613],[98.95468139648455,10.546829223632812],[98.95848083496111,10.54515171051031],[98.96269989013689,10.539918899536246],[98.95208740234398,10.534720420837346],[98.9447402954101,10.521011352539006],[98.94535827636719,10.5173597335816],[98.9405059814456,10.516111373901424],[98.93666076660162,10.512789726257381],[98.926498413086,10.513289451599178],[98.91835784912138,10.507331848144531],[98.91201019287115,10.49531173706066],[98.91063690185547,10.489109992980957],[98.90780639648443,10.489319801330623],[98.89575958251953,10.483370780944824],[98.89473724365246,10.47465991973877],[98.88503265380854,10.45853137969982],[98.88861083984403,10.454690933227482],[98.8872833251956,10.451319694519043],[98.89549255371122,10.440299987793082],[98.8966522216798,10.431600570678768],[98.89377593994169,10.428770065307674],[98.8950958251956,10.422901153564453],[98.89369964599615,10.41621017456049],[98.90515136718756,10.409900665283317],[98.90489196777361,10.40495967864996],[98.90129089355469,10.398659706115723],[98.90847778320324,10.397781372070426],[98.91610717773449,10.394879341125431],[98.92488098144543,10.39603042602539],[98.92888641357433,10.394590377807674],[98.93031311035162,10.385099411010799],[98.93746948242199,10.383669853210506],[98.93762207031278,10.377902030944824],[98.93235015869158,10.369160652160645],[98.93158721923845,10.364719390869084],[98.9358978271485,10.361020088195858],[98.94271850585943,10.35858154296875],[98.94346618652344,10.351031303405819],[98.93987274169928,10.340841293335018],[98.93247222900419,10.332171440124569],[98.93028259277344,10.325730323791447],[98.92632293701178,10.323970794677791],[98.92415618896501,10.319041252136287],[98.91826629638672,10.315259933471737],[98.91491699218756,10.309471130371207],[98.91462707519548,10.305451393127498],[98.90991973876959,10.299671173095646],[98.90659332275385,10.299541473388672],[98.90103912353527,10.289710998535156],[98.90130615234375,10.28435039520275],[98.89904785156256,10.278679847717285],[98.90136718750006,10.272691726684684],[98.9091415405274,10.268481254577694],[98.90377044677734,10.2544908523559],[98.89720916748075,10.251571655273438],[98.89975738525408,10.245830535888786],[98.89933776855463,10.23994064331066],[98.89038085937494,10.23572921752941],[98.88893890380865,10.231890678405875],[98.89134979248064,10.225790023803768],[98.88363647460943,10.213630676269588],[98.87889099121122,10.211021423339957],[98.87448883056669,10.203099250793514],[98.87460327148438,10.193141937255916],[98.8708419799807,10.185851097107047],[98.87703704834001,10.181879997253475],[98.87789154052757,10.177801132202262],[98.8819198608399,10.175900459289494],[98.88938140869169,10.167941093444881],[98.88912963867193,10.160260200500431],[98.8821487426759,10.155430793762264],[98.87706756591797,10.156209945678768],[98.86975860595714,10.154891014099178],[98.869857788086,10.145211219787654],[98.86783599853544,10.140810012817383],[98.868148803711,10.133781433105582],[98.8609008789063,10.132489204406738],[98.85894012451189,10.128771781921387],[98.86042785644526,10.125029563903752],[98.85872650146501,10.120091438293457],[98.86305999755888,10.115359306335563],[98.86563110351562,10.109201431274471],[98.8659210205081,10.104141235351562],[98.86281585693365,10.098361015319881],[98.86244964599632,10.093301773071289],[98.85565948486322,10.083459854126033],[98.85128784179705,10.084590911865234],[98.84704589843778,10.082509994506836],[98.84584045410162,10.07654094696045],[98.83983612060541,10.071411132812614],[98.83586120605486,10.06581974029541],[98.83898925781273,10.062700271606559],[98.84687805175793,10.06182003021246],[98.86106872558594,10.063611030578613],[98.86550140380882,10.06034088134777],[98.86776733398443,10.063089370727653],[98.87329864501959,10.06344032287609],[98.87815856933605,10.0614013671875],[98.88152313232445,10.064591407775993],[98.88849639892595,10.060539245605582],[98.89273071289062,10.064299583435115],[98.9020767211914,10.054829597473145],[98.90077209472662,10.045392036438102],[98.90583038330072,10.032589912414608],[98.90422058105491,10.025251388549748],[98.9013290405274,10.025650024414176],[98.88764190673834,10.014130592346191],[98.88532257080084,10.00625038146984],[98.88056945800804,10.004289627075252],[98.87625122070324,10.000070571899471],[98.87152099609392,9.998970985412711],[98.8645629882813,9.992679595947322],[98.85813140869152,9.996411323547477],[98.85314178466825,9.992880821228027],[98.84485626220703,9.993561744689998],[98.8420333862307,9.98705101013195],[98.83695220947277,9.984112739563045],[98.83461761474615,9.979599952697754],[98.8300399780274,9.977471351623535],[98.82994079589861,9.970759391784725],[98.82302856445324,9.958980560302848],[98.82390594482428,9.947299957275447],[98.8145599365235,9.936180114746207],[98.81105041503923,9.93674087524414],[98.80245208740229,9.942329406738224],[98.79604339599615,9.940071105957031],[98.78964233398449,9.945180892944336],[98.78164672851574,9.949610710144157],[98.7736129760745,9.946110725402832],[98.76740264892578,9.939900398254451],[98.75580596923834,9.933500289916935],[98.7515258789062,9.917741775512809],[98.74684906005865,9.917551040649528],[98.73899841308594,9.906731605529785],[98.72982788085938,9.901910781860465],[98.7288818359375,9.899189949035645],[98.72204589843756,9.89409160614025],[98.72003173828136,9.889201164245605],[98.7197875976563,9.882620811462402],[98.72209167480497,9.877129554748478],[98.72136688232433,9.867439270019531],[98.7157211303711,9.860309600830135],[98.70569610595732,9.852411270141602],[98.69767761230497,9.841769218444881],[98.6929397583009,9.832689285278434],[98.69045257568388,9.831561088562125],[98.68270111084001,9.834389686584416],[98.67865753173822,9.827239990234432],[98.6708374023437,9.821740150451717],[98.66458892822266,9.81514930725092],[98.66371154785162,9.807270050048885],[98.65656280517595,9.804521560668945],[98.64987945556658,9.795621871948242],[98.643569946289,9.789750099182243],[98.64147186279291,9.791152000427303],[98.63565063476568,9.78836917877203],[98.6297531127932,9.778541564941406],[98.63339996337919,9.769040107727164],[98.63065338134766,9.765098571777457],[98.6268310546875,9.764020919799862],[98.63286590576183,9.756641387939396],[98.63179016113281,9.750160217285213],[98.63405609130876,9.74473953247076],[98.64200592041044,9.738260269165153],[98.64137268066412,9.732220649719352],[98.63800048828153,9.721652030944881],[98.64025115966803,9.716620445251579],[98.63936614990229,9.71322154998785],[98.64340209960955,9.706871986389217],[98.65051269531256,9.700089454650993],[98.64655303955084,9.691900253295898],[98.6564331054688,9.687761306762695],[98.65930175781256,9.685020446777287],[98.65962982177734,9.676969528198185],[98.65402984619152,9.671810150146484],[98.65249633789091,9.666021347045955],[98.6473770141601,9.661890983581543],[98.65258026123047,9.658909797668514],[98.65406799316423,9.65448093414318],[98.66403198242188,9.653291702270508],[98.67263793945318,9.654331207275447],[98.68650054931658,9.645130157470703],[98.6873168945313,9.641160011291618],[98.69586944580078,9.638771057128963],[98.6996307373048,9.63517856597906],[98.70845794677734,9.630120277404728],[98.7149658203125,9.628398895263729],[98.72193145751964,9.628230094909782],[98.72885894775408,9.613251686096248],[98.73372650146513,9.612410545349178],[98.73645019531244,9.609130859375],[98.7361679077149,9.603520393371525],[98.73876190185564,9.601080894470158],[98.73802947998047,9.59292030334484],[98.73970031738276,9.590519905090446],[98.73738861083996,9.583889961242676],[98.74703979492193,9.576479911804256],[98.75502014160156,9.576010704040584],[98.75849151611351,9.573691368103084],[98.75971984863276,9.568791389465275],[98.7573013305664,9.56476974487299],[98.7582092285158,9.558000564575309],[98.76631927490257,9.54822063446045],[98.76799774169928,9.544350624084473],[98.76361846923834,9.536210060119686],[98.75431060791021,9.537679672241325],[98.74724578857445,9.534999847412223],[98.74513244628912,9.531281471252555],[98.73525238037138,9.519770622253418],[98.73323822021501,9.515892028808594],[98.72825622558588,9.51382923126232],[98.72397613525413,9.508270263671875],[98.72363281250028,9.502820968627873],[98.71736907958996,9.499410629272461],[98.71553039550781,9.486940383911133],[98.70404815673845,9.485260009765682],[98.69972229003912,9.477021217346191],[98.69317626953142,9.468959808349666],[98.68445587158209,9.468982696533317],[98.67666625976585,9.464851379394588],[98.6691131591798,9.466011047363395],[98.66504669189459,9.458541870117244],[98.66809844970709,9.446420669555778],[98.68031311035162,9.436809539794922],[98.67690277099638,9.430971145629996],[98.6733627319336,9.429391860961971],[98.67133331298851,9.425000190734863],[98.66507720947294,9.420761108398494],[98.65983581542969,9.419611930847168],[98.64994049072271,9.42858028411871],[98.64718627929682,9.426951408386287],[98.6466369628908,9.414490699768123],[98.65355682373053,9.403780937194824],[98.6539916992188,9.399169921875],[98.64787292480491,9.387761116027946],[98.65715789794922,9.385081291198674],[98.664115905762,9.385721206665096],[98.66851806640653,9.38821029663086],[98.67138671875011,9.384810447692871],[98.67250061035185,9.377241134643612],[98.67035675048834,9.370649337768498],[98.6712112426759,9.367881774902344],[98.66892242431652,9.360240936279354],[98.6625366210938,9.352629661560115],[98.6590805053711,9.346830368041992],[98.64936828613287,9.348849296569824],[98.6390380859375,9.352640151977539],[98.63414001464866,9.356279373168945],[98.6288528442384,9.353840827941838],[98.6187820434572,9.346810340881404],[98.61508941650419,9.342450141906738],[98.6112670898438,9.34164047241211],[98.59764862060547,9.348119735717887],[98.58921051025385,9.356458663940487],[98.59037780761736,9.361810684204102],[98.58644866943382,9.367471694946403],[98.5831527709961,9.36532115936285],[98.57303619384766,9.36548042297369],[98.57171630859375,9.362778663635254],[98.56461334228533,9.358209609985352],[98.5620880126956,9.359528541564941],[98.55275726318371,9.359230995178336],[98.54640960693365,9.360570907592773],[98.54010009765648,9.354021072387695],[98.53803253173857,9.349040985107365],[98.52980804443382,9.345072746276855],[98.52748107910162,9.340379714965934],[98.52037048339861,9.33534145355236],[98.51233673095697,9.32643032073969],[98.5119705200197,9.322100639343375],[98.50601959228527,9.315870285034293],[98.50588226318376,9.308641433715877],[98.49713897705078,9.30525016784668],[98.49336242675787,9.307121276855526],[98.48417663574219,9.30758094787609],[98.47734069824224,9.314881324768066],[98.46997833251964,9.320992469787598],[98.46662139892578,9.315320968628043],[98.46389007568354,9.314161300659293],[98.45643615722668,9.31550121307373],[98.46681213378906,9.325289726257381],[98.46259307861345,9.335179328918457],[98.45656585693382,9.341732025146541],[98.45308685302734,9.34768009185791],[98.4435119628908,9.351630210876465],[98.43424987792991,9.34509086608881],[98.4163970947265,9.339821815490666],[98.41371154785168,9.339940071105957],[98.40939331054688,9.346151351928768],[98.40387725830078,9.350421905517578],[98.39251708984403,9.347281455993652],[98.39550781250006,9.367661476135197],[98.39552307128929,9.383421897888297],[98.3973464965822,9.385471343994084],[98.39694213867182,9.402777671813965],[98.40207672119152,9.403797149658146],[98.40750122070312,9.398331642150993],[98.41444396972685,9.40555667877203],[98.41881561279303,9.408055305480957],[98.4180526733399,9.411110877990836],[98.42258453369146,9.421487808227482],[98.42697906494146,9.435921669006461],[98.42956542968744,9.44041633605957],[98.43161773681669,9.450245857238826],[98.43367767334007,9.467231750488281],[98.43387603759771,9.478249549865836],[98.43706512451172,9.478962898254338],[98.43679046630871,9.484320640564079],[98.43432617187494,9.486060142517033],[98.4347229003908,9.492501258850154],[98.43939971923851,9.493847846984806],[98.43576812744163,9.499383926391658],[98.4390258789063,9.512910842895508],[98.44483947753923,9.527743339538517],[98.44786834716791,9.538933753967399],[98.44995117187511,9.540850639343375],[98.45471954345714,9.556389808654842],[98.45555114746094,9.563329696655273],[98.4616470336914,9.562340736389217],[98.46694183349604,9.567501068115234],[98.46938323974638,9.562850952148494],[98.46441650390653,9.557129859924316],[98.46083068847668,9.556112289428711],[98.46996307373075,9.541910171508846],[98.4749832153322,9.53004074096691],[98.47524261474615,9.522979736328182],[98.47231292724626,9.51676177978527],[98.46990203857428,9.498809814453182],[98.46444702148449,9.49051952362072],[98.46419525146507,9.483149528503418],[98.467025756836,9.480095863342342],[98.47162628173851,9.467619895935059],[98.4698715209961,9.459581375122184],[98.47475433349621,9.460624694824276],[98.47493743896496,9.471255302429313],[98.47030639648443,9.48291015625],[98.47196197509766,9.489748001098746],[98.47881317138672,9.49700927734375],[98.48179626464855,9.502921104431152],[98.48357391357439,9.516208648681697],[98.48141479492199,9.529424667358455],[98.4818267822265,9.532453536987305],[98.48775482177751,9.53537559509283],[98.4906082153322,9.525265693664664],[98.49662780761724,9.515380859375057],[98.49680328369163,9.51061058044445],[98.48908233642595,9.503368377685547],[98.4936828613283,9.496211051940975],[98.50386047363304,9.512294769287223],[98.50086212158232,9.516369819641113],[98.49777984619146,9.52489376068121],[98.4990463256836,9.536231040954533],[98.49817657470732,9.546710014343319],[98.4990463256836,9.552718162536678],[98.50902557373053,9.554074287414664],[98.51213836669933,9.552322387695312],[98.51552581787138,9.559220314025879],[98.52525329589872,9.566060066223201],[98.53227233886724,9.568544387817326],[98.54022216796892,9.568037986755485],[98.54722595214855,9.563887596130314],[98.55757141113298,9.562701225280762],[98.56256103515625,9.564272880554256],[98.55108642578142,9.568945884704647],[98.54716491699241,9.57270622253418],[98.53581237792986,9.577230453491211],[98.53024291992199,9.577530860900879],[98.52333068847662,9.581111907959041],[98.50833129882807,9.595001220703068],[98.49220275878912,9.591184616088867],[98.48885345458996,9.592674255371207],[98.48166656494158,9.592499732971305],[98.4719467163086,9.598333358764762],[98.46833038330078,9.598889350891227],[98.4647216796875,9.605277061462346],[98.46334838867205,9.62866115570074],[98.46754455566423,9.625317573547363],[98.47207641601574,9.625801086425838],[98.47827911376959,9.634341239929313],[98.48545074462885,9.628918647766113],[98.49136352539057,9.620985031127987],[98.49490356445335,9.618551254272575],[98.49732208251953,9.614716529846191],[98.49649810791027,9.610881805420036],[98.49988555908232,9.611310005188102],[98.50417327880876,9.6094388961792],[98.50791168212919,9.61343860626215],[98.50763702392578,9.617449760437012],[98.503646850586,9.622600555419922],[98.5095443725586,9.625212669372615],[98.51825714111322,9.619782447815055],[98.51969909667991,9.621317863464412],[98.51138305664057,9.627873420715446],[98.50997924804693,9.630804061889592],[98.50319671630876,9.628490447998047],[98.50080108642584,9.635268211364746],[98.50605773925798,9.64087963104248],[98.50956726074224,9.64713096618658],[98.50988006591814,9.653904914855957],[98.51750183105486,9.65250110626232],[98.52387237548834,9.655320167541504],[98.51477050781278,9.658121109008846],[98.50723266601562,9.65668106079113],[98.50247192382812,9.658073425293026],[98.49769592285156,9.652874946594352],[98.49666595459013,9.660277366638184],[98.4920043945313,9.66192722320568],[98.48988342285156,9.678999900817928],[98.48484039306669,9.68122673034668],[98.48554229736334,9.686024665832576],[98.49101257324236,9.684807777404899],[98.4966583251956,9.681341171264762],[98.50044250488287,9.675126075744572],[98.50937652587896,9.672548294067383],[98.51389312744158,9.674440383911133],[98.52166748046886,9.681390762329158],[98.52839660644548,9.681901931762695],[98.5352783203125,9.69333362579357],[98.54092407226574,9.695684432983398],[98.54149627685558,9.702849388122615],[98.5390701293947,9.705942153930721],[98.54366302490234,9.710192680358944],[98.54654693603516,9.717340469360352],[98.55369567871122,9.727342605590877],[98.55750274658232,9.729166030883789],[98.55680847167986,9.736810684204102],[98.55361175537115,9.740833282470703],[98.55422973632818,9.7489271163941],[98.55700683593767,9.750106811523438],[98.5608215332033,9.757987976074276],[98.54640960693365,9.74441242218029],[98.53903198242199,9.743489265442008],[98.53108215332031,9.746528625488338],[98.5269470214846,9.750291824340934],[98.52111053466791,9.748061180114803],[98.51397705078148,9.741230010986328],[98.51115417480497,9.741398811340446],[98.50746917724615,9.736479759216422],[98.5002059936524,9.739040374755916],[98.50241088867199,9.744665145874137],[98.5067825317384,9.744903564453239],[98.5067825317384,9.74970817565918],[98.51205444335943,9.753443717956543],[98.51242065429693,9.760334014892578],[98.50911712646501,9.767230033874569],[98.50653076171898,9.782267570495662],[98.51136016845714,9.783954620361328],[98.51480865478527,9.788116455078182],[98.52737426757841,9.787117958068848],[98.53257751464861,9.790230751037654],[98.54127502441435,9.785012245178223],[98.54369354248053,9.788656234741268],[98.54806518554688,9.788467407226562],[98.55183410644548,9.79276275634777],[98.55000305175787,9.794999122619686],[98.5553207397461,9.799675941467228],[98.56521606445312,9.811331748962402],[98.57228088378906,9.814009666442871],[98.5703964233399,9.816700935363883],[98.56112670898466,9.812881469726562],[98.57632446289068,9.827836990356502],[98.57611083984375,9.835000038146973],[98.57317352294933,9.837003707885685],[98.56272125244158,9.820591926574707],[98.55783081054693,9.816410064697266],[98.54750061035156,9.803055763244686],[98.5398788452149,9.79975414276123],[98.53598785400385,9.800779342651367],[98.53806304931652,9.805633544921875],[98.53383636474638,9.809287071228084],[98.52919006347656,9.818314552307186],[98.5267868041995,9.830121040344238],[98.52194213867188,9.834165573120117],[98.5212020874024,9.841788291931096],[98.51568603515648,9.851250648498535],[98.51608276367193,9.854340553283748],[98.52078247070312,9.856891632080135],[98.52974700927734,9.856696128845215],[98.52699279785185,9.863990783691406],[98.52870178222685,9.8737411499024],[98.53283691406256,9.877581596374512],[98.53562927246111,9.882950782775936],[98.54254913330084,9.887007713317871],[98.55027770996105,9.887579917907715],[98.55439758300787,9.882283210754451],[98.55474853515625,9.876079559326172],[98.55702209472656,9.87054634094244],[98.56276702880865,9.867489814758244],[98.56999969482422,9.86882114410406],[98.57431030273449,9.878465652465934],[98.57126617431652,9.87820053100586],[98.5642395019533,9.869838714599666],[98.55861663818365,9.87170124053955],[98.55670166015648,9.876417160034237],[98.56086730957037,9.886217117309627],[98.56591033935558,9.891110420227164],[98.56861114501947,9.900277137756404],[98.57321929931658,9.90657043457037],[98.5804519653322,9.905150413513184],[98.58055877685553,9.910030364990234],[98.570785522461,9.912238121032715],[98.56949615478521,9.922075271606502],[98.58385467529308,9.930555343627987],[98.5913925170899,9.933611869812125],[98.59222412109403,9.942777633667049],[98.59527587890653,9.951110839843693],[98.590873718262,9.956543922424373],[98.59472656250011,9.970967292785701],[98.5920028686524,9.97421932220459],[98.60111236572271,9.983330726623649],[98.60415649414068,9.997241020202694],[98.60637664794916,10.000281333923283],[98.61583709716803,10.01833438873291],[98.62340545654297,10.034789085388297],[98.62998962402372,10.03944110870367],[98.63471984863287,10.046943664550838],[98.63666534423857,10.05444526672369],[98.63972473144543,10.059445381164608],[98.64027404785185,10.064167976379395],[98.64360809326172,10.072777748108024],[98.65165710449224,10.080829620361385],[98.6547241210938,10.085832595825195],[98.65180969238281,10.093055725097656],[98.65333557128906,10.100000381469783],[98.6577758789063,10.097780227661246],[98.66110992431635,10.099165916442928],[98.66944122314459,10.108060836791992],[98.6730575561524,10.11694145202648],[98.67854309082037,10.126799583435059],[98.67861175537138,10.136111259460506],[98.68360900878918,10.148056030273494],[98.68972015380854,10.166389465332145],[98.69527435302751,10.176666259765682],[98.6999969482423,10.182222366333065],[98.70833587646507,10.176387786865291],[98.72360992431646,10.167221069335938],[98.73110961914057,10.158054351806697],[98.7394409179688,10.156665802001953],[98.74194335937528,10.160833358764762],[98.7341690063476,10.163055419921875],[98.72805786132807,10.169722557067871],[98.72000122070341,10.17222118377697],[98.70944213867193,10.178609848022404],[98.70639038085943,10.183060646057072],[98.69972229003912,10.184170722961426],[98.69277954101557,10.179165840148926],[98.69027709960949,10.1816663742066],[98.69750213623075,10.191389083862248],[98.70639038085943,10.210277557373047],[98.70999908447266,10.220276832580566],[98.71611022949219,10.22944355010992],[98.721664428711,10.250276565551758],[98.72888946533203,10.269445419311523],[98.72916412353544,10.276943206787223],[98.73472595214855,10.28277778625494],[98.73777770996105,10.293057441711426],[98.73777770996105,10.306111335754451],[98.74250030517607,10.31278038024908],[98.7497253417971,10.317777633667049],[98.75250244140642,10.327220916748104],[98.7527770996096,10.332221031188965],[98.74999999999994,10.34194374084484],[98.7505569458009,10.35805511474615],[98.753890991211,10.370555877685604],[98.75472259521513,10.390000343322697],[98.75777435302763,10.394721984863395],[98.76667022705084,10.40250110626215],[98.7694473266601,10.408611297607422],[98.77111053466825,10.418611526489371],[98.77359771728544,10.423904418945426],[98.77735900878912,10.424481391906738],[98.77922058105469,10.429849624633903],[98.78468322753918,10.43928146362299],[98.78917694091803,10.441869735717773],[98.80136108398438,10.443511009216422],[98.80284118652361,10.446900367736816],[98.80034637451166,10.454330444335938],[98.81195068359403,10.467041015624943],[98.81204986572266,10.470669746398983],[98.8046569824221,10.476151466369686],[98.80403137207031,10.482211112976074],[98.8074111938476,10.485260963439998],[98.8140411376956,10.486820220947266],[98.82000732421892,10.496692657470646],[98.82250213623064,10.505859375000057],[98.81949615478521,10.511940002441463],[98.82142639160162,10.518930435180778],[98.81915283203148,10.527520179748478],[98.81548309326172,10.528930664062557],[98.82003784179688,10.54514026641857],[98.81640625000017,10.546719551086426],[98.81500244140653,10.552511215209961],[98.81128692626953,10.55161094665533],[98.80551147460955,10.557210922241154],[98.80959320068365,10.567781448364371],[98.80998229980474,10.576521873474121],[98.81288909912138,10.579460144043026],[98.81051635742188,10.58557033538824],[98.80699920654308,10.585170745849723],[98.80066680908209,10.595621109008903],[98.804428100586,10.599520683288574],[98.80197143554693,10.602811813354492],[98.79709625244152,10.601301193237305],[98.78971099853516,10.603730201721248],[98.78308868408209,10.60145092010498],[98.78436279296892,10.606490135192871],[98.78370666503935,10.613559722900447],[98.77616119384783,10.61411190032959],[98.77391815185553,10.618531227111816],[98.77793121337896,10.622440338134766],[98.77752685546875,10.628290176391602],[98.78002166748053,10.632619857788086],[98.77913665771513,10.637579917907715],[98.78607177734392,10.644049644470215],[98.78504943847685,10.664340972900504],[98.78246307373047,10.67572116851801],[98.78492736816423,10.680471420288086],[98.78904724121122,10.67776107788086],[98.79263305664085,10.680640220642033],[98.79949951171898,10.694869995117244],[98.80558013916021,10.697531700134334],[98.80603027343778,10.701551437378043],[98.82015228271513,10.715420722961483],[98.82221221923834,10.721650123596305],[98.82640838623053,10.723711013794002],[98.82586669921903,10.728637695312557],[98.83106994628923,10.730301856994629],[98.83378601074219,10.736521720886287],[98.84088897705101,10.744979858398438],[98.84303283691435,10.751290321350098],[98.84683990478544,10.75093936920166],[98.8482666015625,10.755419731140194],[98.8564529418947,10.763321876525879],[98.86225128173851,10.771499633789062],[98.87048339843778,10.773780822753906],[98.87274169921898,10.779501914978027],[98.883316040039,10.784749984741154],[98.88932037353521,10.773949623107853]]]]},"properties":{"ID_0":228,"ISO":"TH-85","NAME_0":"Thailand","ID_1":51,"NAME_1":"Ranong","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ระนอง","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.0672607421875,13.649799346923828],[100.07025146484386,13.643841743469181],[100.07009124755876,13.637100219726562],[100.06507110595732,13.630411148071403],[100.05812835693365,13.630839347839299],[100.0544509887697,13.627310752868596],[100.05480957031244,13.617712020874137],[100.04022216796898,13.611751556396598],[100.03246307373075,13.610549926757756],[100.03845977783203,13.603860855102653],[100.04310607910162,13.594990730285758],[100.0394287109375,13.59081077575695],[100.03755187988304,13.578431129455623],[100.04059600830084,13.56312179565441],[100.04466247558622,13.552908897399846],[100.04435729980486,13.538579940795842],[100.04128265380876,13.534750938415641],[100.03322601318388,13.530521392822209],[100.03048706054693,13.526830673217773],[100.03238677978521,13.52079963684082],[100.02861785888678,13.518260955810604],[100.03044891357422,13.506609916687125],[100.02333068847668,13.50444126129156],[100.01094055175776,13.514131546020508],[100.00557708740246,13.50868034362793],[99.99640655517607,13.494041442871094],[99.99108123779308,13.498880386352539],[99.98799133300787,13.498890876769963],[99.97611999511724,13.490440368652344],[99.96582794189459,13.487551689148063],[99.96240234375023,13.495791435241642],[99.95510864257812,13.497529983520508],[99.9476928710938,13.496391296386776],[99.93718719482422,13.498870849609432],[99.92594146728516,13.51358890533453],[99.9150619506836,13.510271072387638],[99.92141723632818,13.499900817871207],[99.91722869873053,13.498510360717887],[99.91259002685547,13.493651390075684],[99.90393066406261,13.488179206848258],[99.90009307861357,13.483110427856502],[99.8974685668947,13.47375202178955],[99.89247894287121,13.469061851501465],[99.89389038085938,13.463430404663029],[99.8910827636721,13.456850051879826],[99.89106750488304,13.44286060333252],[99.89212036132807,13.440410614013729],[99.8913879394533,13.429269790649414],[99.88661956787126,13.420251846313477],[99.88020324707054,13.40570163726818],[99.87362670898455,13.387350082397461],[99.86746978759794,13.374531745910588],[99.86785888671903,13.36629962921154],[99.86405181884777,13.355971336364803],[99.86009216308611,13.336421012878475],[99.85732269287132,13.327820777893123],[99.84736633300787,13.331830024719238],[99.83837127685547,13.333568572998047],[99.83055114746094,13.338569641113281],[99.82174682617205,13.33965015411377],[99.8147583007813,13.336529731750602],[99.81027221679699,13.33926010131836],[99.80339050292997,13.329010963440055],[99.79741668701195,13.330490112304801],[99.7902908325197,13.3355588912965],[99.78533935546892,13.33323192596447],[99.77789306640642,13.335230827331543],[99.77371215820312,13.339469909668082],[99.76634216308616,13.339020729064941],[99.76299285888666,13.343190193176326],[99.75869750976585,13.343041419982967],[99.756820678711,13.339180946350098],[99.75150299072294,13.337221145629996],[99.74508666992205,13.33706092834484],[99.72560882568354,13.325711250305119],[99.72334289550798,13.326101303100529],[99.70591735839872,13.319901466369629],[99.70012664794928,13.316441535949764],[99.69610595703125,13.306679725647086],[99.68541717529297,13.298529624938965],[99.68650054931635,13.293280601501579],[99.68331909179688,13.289970397949219],[99.67888641357439,13.28967094421381],[99.66577911376953,13.28496170043951],[99.66317749023466,13.275360107421932],[99.66503143310553,13.269769668579102],[99.66847229003912,13.266590118408203],[99.6692123413086,13.257290840148926],[99.66607666015636,13.250570297241154],[99.66610717773455,13.241291999816951],[99.66857147216791,13.234891891479606],[99.66423034667969,13.228590011596793],[99.66545104980474,13.221549987793026],[99.6628723144533,13.217519760131893],[99.66445159912115,13.213582038879395],[99.66114044189447,13.210200309753475],[99.65331268310541,13.212271690368596],[99.64332580566412,13.211020469665584],[99.63729858398432,13.20716190338129],[99.63627624511724,13.201130867004508],[99.62925720214855,13.204151153564567],[99.61419677734386,13.202630996704102],[99.60270690917974,13.204500198364371],[99.5985565185548,13.2024888992309],[99.59420776367205,13.197072029113826],[99.58950042724615,13.199021339416504],[99.57778167724604,13.196191787719727],[99.5663833618164,13.203779220581112],[99.55602264404308,13.203260421753043],[99.55224609375017,13.206471443176383],[99.54731750488281,13.201601028442496],[99.54189300537138,13.202230453491268],[99.53833007812517,13.206170082092399],[99.52944183349632,13.206619262695312],[99.52243804931669,13.208979606628418],[99.5154190063476,13.200981140136832],[99.51522064208979,13.192449569702148],[99.51010894775408,13.189030647277889],[99.5077590942384,13.179351806640625],[99.50119018554693,13.180219650268555],[99.49904632568376,13.184610366821346],[99.49205017089866,13.188472747802791],[99.4857788085938,13.190191268920955],[99.48136138916021,13.197421073913631],[99.47847747802734,13.199561119079647],[99.46819305419928,13.18999099731451],[99.46241760253923,13.186149597167912],[99.45426177978521,13.183410644531307],[99.43907928466825,13.183830261230582],[99.43177795410179,13.194451332092285],[99.42545318603516,13.197160720825252],[99.41932678222656,13.195340156555233],[99.411430358887,13.199861526489315],[99.40843200683611,13.208721160888786],[99.40579223632812,13.212030410766658],[99.40143585205084,13.212009429931584],[99.39916992187523,13.215941429138184],[99.392318725586,13.211979866027946],[99.3719863891601,13.218931198120117],[99.37152099609398,13.22659969329834],[99.36778259277338,13.23228931427002],[99.35923004150408,13.230890274047852],[99.3511505126956,13.241271018981934],[99.3479995727539,13.240019798278865],[99.33886718750006,13.231620788574219],[99.33895111084013,13.226320266723633],[99.33503723144531,13.220930099487362],[99.3310317993164,13.21958065032959],[99.32617187500028,13.220950126647892],[99.32520294189482,13.214790344238281],[99.32153320312523,13.212312698364371],[99.31880187988298,13.20132923126232],[99.31935119628923,13.188541412353459],[99.3258361816408,13.18330097198492],[99.32462310791044,13.176260948181152],[99.31630706787126,13.17311096191412],[99.31063842773443,13.169519424438533],[99.30497741699247,13.16250038146984],[99.29556274414062,13.161080360412654],[99.29267120361345,13.15797138214117],[99.2808609008789,13.150590896606445],[99.26992034912121,13.148040771484375],[99.26496887207043,13.155659675598201],[99.2657012939456,13.157988548278865],[99.25965881347673,13.162810325622672],[99.25624084472673,13.168438911438045],[99.25218963623058,13.171051025390739],[99.24481964111328,13.18501091003418],[99.24040985107439,13.186280250549373],[99.2352371215822,13.191519737243652],[99.23043060302746,13.201151847839355],[99.22196197509771,13.203790664672852],[99.2153930664062,13.201060295105094],[99.2111358642581,13.206250190734977],[99.2095565795899,13.211359977722282],[99.20490264892572,13.219149589538631],[99.2095031738283,13.224549293518066],[99.20871734619135,13.231541633605957],[99.205322265625,13.239110946655387],[99.19888305664068,13.247841835021973],[99.19750213623047,13.256180763244572],[99.20320129394548,13.260030746460018],[99.21160125732439,13.259771347045898],[99.20922088623053,13.26516056060791],[99.2000579833985,13.273119926452694],[99.19875335693388,13.27716064453125],[99.1946105957033,13.27932071685791],[99.19274139404297,13.284000396728572],[99.18818664550787,13.288661003112736],[99.19074249267607,13.294281959533805],[99.1912765502932,13.30147933959961],[99.1943283081057,13.304060935974121],[99.19146728515648,13.308050155639648],[99.19156646728533,13.315679550170898],[99.1952133178711,13.320150375366325],[99.19935607910168,13.321229934692496],[99.20472717285173,13.331770896911678],[99.20870971679682,13.334259986877441],[99.20910644531267,13.3452405929566],[99.20613861084007,13.351289749145565],[99.20848083496122,13.357281684875545],[99.20844268798851,13.363250732421932],[99.20421600341803,13.369270324706974],[99.20799255371094,13.376840591430721],[99.20873260498064,13.394750595092887],[99.20720672607439,13.400739669799805],[99.21250915527355,13.407570838928336],[99.21317291259771,13.411670684814567],[99.20992279052734,13.415189743041935],[99.20970916748047,13.419309616088924],[99.20417022705095,13.423610687255916],[99.20707702636724,13.430882453918514],[99.20282745361345,13.438811302185172],[99.20178985595732,13.44907093048107],[99.20780944824219,13.452729225158748],[99.21026611328142,13.456521987915039],[99.2090606689456,13.462800979614258],[99.20610809326172,13.467120170593319],[99.2059860229495,13.478118896484489],[99.20146179199213,13.479591369628963],[99.19413757324241,13.487600326538143],[99.19094848632824,13.493670463562125],[99.19402313232416,13.498929977416992],[99.19188690185575,13.503470420837516],[99.19532012939482,13.509922027587834],[99.19261932373053,13.525390625000057],[99.19447326660156,13.530180931091422],[99.1952819824221,13.540521621704158],[99.19035339355497,13.547589302062988],[99.18431854248064,13.55012130737316],[99.18135070800804,13.557359695434684],[99.17806243896484,13.561001777648983],[99.17327880859375,13.56262016296381],[99.17125701904303,13.56818962097168],[99.16716003417986,13.571101188659782],[99.18139648437528,13.583221435546989],[99.17871093750028,13.591300964355469],[99.17491912841825,13.595259666442814],[99.1694412231447,13.606661796569824],[99.17030334472662,13.61730098724371],[99.17455291748058,13.628079414367676],[99.17208862304682,13.637410163879395],[99.17418670654291,13.644290924072322],[99.16925048828142,13.651729583740291],[99.1732330322265,13.659380912780819],[99.17359924316418,13.667619705200138],[99.16906738281267,13.672150611877555],[99.16806793212902,13.679070472717285],[99.17324066162104,13.682241439819336],[99.17417907714855,13.68980979919445],[99.17022705078125,13.69159030914318],[99.17304229736322,13.705460548400936],[99.17179107666021,13.719991683959961],[99.1681213378908,13.726629257202262],[99.16806793212902,13.732101440429688],[99.1727066040039,13.738580703735295],[99.17611694335955,13.738970756530705],[99.17848205566429,13.733181953430176],[99.189697265625,13.731419563293457],[99.20024108886741,13.727870941162166],[99.20437622070312,13.729660034179744],[99.20491027832048,13.734400749206486],[99.21309661865229,13.737191200256461],[99.2120132446289,13.740960121154842],[99.21849822998047,13.741092681884709],[99.22345733642578,13.748909950256348],[99.22817230224604,13.745971679687443],[99.23457336425804,13.746441841125602],[99.24111175537121,13.748690605163688],[99.26091003417974,13.742019653320312],[99.26689910888689,13.741939544677791],[99.27276611328153,13.746799468994254],[99.27382659912115,13.752671241760197],[99.2814559936524,13.759440422058105],[99.28682708740257,13.76011180877697],[99.28984069824219,13.754031181335563],[99.29902648925804,13.740059852600211],[99.30787658691418,13.747270584106502],[99.312973022461,13.749149322509766],[99.32321166992188,13.74431133270258],[99.33135223388666,13.746810913085994],[99.33560943603516,13.746720314025993],[99.3493423461914,13.748991966247502],[99.35369873046892,13.746361732482853],[99.35923767089861,13.75204086303711],[99.37304687500023,13.755459785461426],[99.3807678222658,13.75576114654541],[99.39945983886736,13.766201972961483],[99.40947723388695,13.76647090911871],[99.41287994384771,13.771651268005485],[99.43495941162126,13.777859687805233],[99.45375823974638,13.780300140380916],[99.45626068115246,13.781749725341797],[99.46862030029303,13.795331001281738],[99.47338867187506,13.803990364074764],[99.48021697998053,13.80011081695568],[99.48539733886724,13.789901733398438],[99.48658752441418,13.784991264343262],[99.5032806396485,13.76931095123291],[99.506576538086,13.765080451965389],[99.51239776611345,13.766349792480582],[99.51686859130865,13.763070106506404],[99.51975250244169,13.76631069183361],[99.52806854248047,13.764311790466309],[99.53302764892578,13.758890151977596],[99.54086303710943,13.759590148925838],[99.54602813720726,13.757540702819824],[99.55139160156256,13.75811958312994],[99.55780029296875,13.762871742248592],[99.5645599365235,13.765939712524471],[99.56935882568388,13.770780563354492],[99.59072875976574,13.779012680053768],[99.60618591308605,13.79800033569336],[99.61971282959013,13.800730705261344],[99.63632202148449,13.812048912048397],[99.64833831787121,13.826869964599666],[99.65895843505882,13.835810661315975],[99.66110229492216,13.840649604797477],[99.66689300537126,13.845191955566406],[99.67241668701189,13.839060783386344],[99.6812362670899,13.837080955505485],[99.69046783447294,13.837261199951172],[99.70024871826189,13.829810142517204],[99.72090148925781,13.825821876525936],[99.74098205566412,13.825780868530387],[99.74050140380876,13.828411102295036],[99.74971008300787,13.831850051879826],[99.75495910644543,13.829990386962834],[99.76049041748058,13.825300216674805],[99.78388977050804,13.821009635925293],[99.79055023193382,13.821771621704102],[99.79548645019537,13.820251464843807],[99.80327606201172,13.807411193847656],[99.811576843262,13.807891845703182],[99.81417083740234,13.812071800232047],[99.81948089599626,13.825659751892033],[99.81745910644554,13.838219642639217],[99.8193130493164,13.8462495803833],[99.8272781372072,13.852540016174373],[99.82115173339855,13.859980583190975],[99.82160949707031,13.863910675048942],[99.82984924316429,13.866460800170842],[99.83786773681663,13.864681243896598],[99.83934783935547,13.87489128112793],[99.84443664550776,13.880299568176326],[99.85063934326195,13.896800994873047],[99.85694885253912,13.919271469116325],[99.86131286621116,13.919801712036133],[99.86929321289062,13.935490608215275],[99.8779220581057,13.948290824890194],[99.88751220703136,13.943090438842887],[99.89652252197283,13.93944072723383],[99.90802764892584,13.938261032104549],[99.91960906982439,13.941160202026424],[99.92491912841791,13.93838119506836],[99.9271926879884,13.933799743652457],[99.92491912841791,13.925939559936637],[99.92407989501976,13.918181419372502],[99.9217300415039,13.916120529174805],[99.91599273681658,13.905220031738224],[99.91250610351574,13.903861999511832],[99.90699005126947,13.906720161437988],[99.8977813720706,13.901940345764217],[99.90223693847673,13.898961067199764],[99.90757751464861,13.886819839477539],[99.90541839599638,13.881609916687125],[99.91068267822266,13.877301216125431],[99.91317749023443,13.871470451355037],[99.90651702880882,13.854520797729549],[99.90222930908197,13.840400695800781],[99.90487670898449,13.840731620788631],[99.909408569336,13.845930099487305],[99.91446685791033,13.843320846557674],[99.92192077636719,13.845001220703125],[99.92590332031267,13.84303092956543],[99.93444061279308,13.842440605163631],[99.93852233886719,13.837478637695426],[99.93653106689464,13.833950996398983],[99.94258117675804,13.829521179199219],[99.9551010131836,13.831879615783691],[99.95809936523449,13.835001945495662],[99.96398925781278,13.827241897583121],[99.96195220947283,13.823030471801871],[99.96418762207043,13.818129539489803],[99.96343231201183,13.812101364135685],[99.97055053710938,13.809030532836971],[99.97100067138695,13.799730300903377],[99.96689605712908,13.796839714050293],[99.9637374877932,13.798469543457031],[99.95758056640625,13.79507160186779],[99.95468139648432,13.782871246337834],[99.95376586914062,13.775011062622013],[99.94924163818382,13.766540527343864],[99.94085693359398,13.759329795837402],[99.94226837158214,13.74619102478033],[99.94374084472662,13.742881774902457],[99.95020294189476,13.73760986328125],[99.9537963867188,13.73114013671875],[99.9724960327149,13.73380184173584],[99.99632263183594,13.736429214477653],[100.00076293945318,13.73584079742443],[100.01229095459001,13.744190216064453],[100.01921844482428,13.745380401611385],[100.02812194824236,13.752619743347225],[100.03057861328136,13.75051021575922],[100.03160095214844,13.744290351867733],[100.02439117431663,13.735330581664982],[100.02278137207048,13.722900390625],[100.02465057373058,13.707369804382324],[100.02651977539068,13.701421737671012],[100.03556060791033,13.690890312194938],[100.05674743652361,13.693970680236816],[100.06759643554682,13.694871902465934],[100.06938934326178,13.690390586853141],[100.0683898925783,13.679500579833928],[100.06478881835938,13.672389984130973],[100.06427764892584,13.665861129760742],[100.06140899658226,13.659971237182674],[100.05998992919939,13.65006160736084],[100.0672607421875,13.649799346923828]]]},"properties":{"ID_0":228,"ISO":"TH-70","NAME_0":"Thailand","ID_1":52,"NAME_1":"Ratchaburi","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ราชบุรี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[101.45890045166021,12.574952125549373],[101.46307373046875,12.57519245147705],[101.46822357177734,12.572282791137695],[101.47004699707043,12.568599700927848],[101.45862579345697,12.564134597778377],[101.4565658569336,12.560050964355526],[101.44999694824247,12.553056716919002],[101.45140075683611,12.549627304077092],[101.44811248779308,12.545469284057617],[101.45066833496094,12.540060997009391],[101.44844055175787,12.538462638855094],[101.4487380981447,12.531848907470646],[101.44460296630882,12.533270835876465],[101.44535827636724,12.546579360961971],[101.447998046875,12.562207221984863],[101.44540405273466,12.5801420211792],[101.45079040527338,12.582995414733887],[101.45442962646479,12.577862739562988],[101.45890045166021,12.574952125549373]]],[[[101.6984786987307,13.151228904724064],[101.69692230224615,13.143117904663143],[101.69738769531278,13.134210586547908],[101.69077301025408,13.129098892211971],[101.68666076660162,13.118270874023438],[101.69037628173845,13.109489440917912],[101.69487762451178,13.107549667358398],[101.69992828369158,13.108558654785156],[101.69429016113287,13.09309101104742],[101.69541931152366,13.088391304016227],[101.70427703857416,13.072661399841309],[101.70522308349621,13.066471099853459],[101.71469879150396,13.051191329956112],[101.71385192871111,13.046501159668082],[101.71859741210932,13.03296089172369],[101.72788238525419,13.028780937194881],[101.73203277587896,13.032880783081112],[101.740463256836,13.033141136169547],[101.74574279785156,13.03656196594244],[101.74830627441435,13.03413200378418],[101.75485992431658,13.035591125488338],[101.7580871582033,13.031201362609806],[101.76113128662104,13.021980285644531],[101.76026153564459,13.012579917907715],[101.75595092773449,13.005010604858455],[101.74030303955107,12.982851028442496],[101.73963928222656,12.979031562805233],[101.7429885864259,12.974761009216422],[101.74011993408214,12.958170890808105],[101.74813079833996,12.949140548706112],[101.75189971923834,12.949839591980037],[101.75665283203148,12.940780639648494],[101.75881958007824,12.939850807189998],[101.76750183105474,12.943299293518123],[101.77536773681646,12.950519561767578],[101.77993011474615,12.951690673828239],[101.79138183593756,12.94202995300293],[101.79382324218756,12.938260078430233],[101.791732788086,12.928751945495605],[101.797607421875,12.925100326538143],[101.80367279052751,12.916661262512264],[101.80293273925798,12.908470153808594],[101.80764007568371,12.899180412292424],[101.80951690673857,12.884989738464412],[101.81320190429682,12.886509895324707],[101.81215667724632,12.893710136413574],[101.8151626586914,12.900761604309082],[101.8189086914062,12.899320602417049],[101.82022857666027,12.89369201660162],[101.81861877441412,12.88850021362316],[101.82109832763678,12.878730773925781],[101.82430267333984,12.872710227966422],[101.823226928711,12.861820220947209],[101.82847595214861,12.852720260620117],[101.82633209228527,12.841420173644963],[101.82978057861322,12.838391304016113],[101.82926177978516,12.82832145690918],[101.8312377929688,12.824971199035758],[101.82919311523449,12.809850692749023],[101.8194198608399,12.79883193969738],[101.82315826416016,12.790519714355582],[101.8207015991211,12.784781455993766],[101.82227325439459,12.779609680175838],[101.81973266601562,12.776610374450797],[101.81858825683594,12.765840530395508],[101.8209915161134,12.762671470642204],[101.81871795654291,12.757901191711426],[101.8207015991211,12.753590583801326],[101.8150024414063,12.748731613159293],[101.8118972778322,12.74982070922863],[101.81176757812523,12.754790306091365],[101.80681610107445,12.754890441894645],[101.80616760253923,12.75158977508545],[101.8007202148438,12.745991706848201],[101.80438232421903,12.740340232849235],[101.79840850830084,12.731492042541504],[101.7980575561524,12.721390724182129],[101.7844467163086,12.709444046020565],[101.78943634033209,12.699440956115723],[101.78305816650385,12.693332672119197],[101.77388763427746,12.696668624878043],[101.76194763183594,12.705280303955078],[101.7494430541995,12.707782745361385],[101.7349395751956,12.706111907959041],[101.73194122314447,12.703889846801758],[101.72000122070318,12.703333854675293],[101.7138900756836,12.69972133636486],[101.70509338378906,12.698891639709473],[101.70194244384794,12.696389198303223],[101.6909484863283,12.69396018981945],[101.67804718017584,12.687500953674373],[101.67194366455084,12.683334350586051],[101.66916656494152,12.676109313964957],[101.66222381591803,12.668889045715389],[101.65499877929693,12.658887863159293],[101.65110778808611,12.651944160461483],[101.6423568725586,12.643802642822209],[101.63365936279325,12.643405914306754],[101.62166595459013,12.64888954162609],[101.60138702392601,12.652221679687557],[101.59778594970709,12.654170036315975],[101.5932922363283,12.652260780334586],[101.58313751220732,12.652454376220703],[101.57277679443382,12.65082931518566],[101.56577301025419,12.647200584411678],[101.56407165527355,12.637792587280273],[101.5652465820312,12.631449699401855],[101.55638885498053,12.626943588256836],[101.54861450195341,12.628888130188045],[101.52806091308611,12.630825042724553],[101.51593780517601,12.63053131103527],[101.51027679443388,12.631670951843319],[101.49590301513678,12.630392074585018],[101.48410034179693,12.63298130035406],[101.4637069702149,12.632772445678825],[101.44886779785168,12.63047885894781],[101.43675231933594,12.62594127655035],[101.42609405517584,12.61833572387701],[101.42498016357428,12.601540565490836],[101.42153167724632,12.589909553527832],[101.41867828369146,12.584941864013729],[101.41293334960943,12.587190628051815],[101.41440582275408,12.592129707336369],[101.40305328369146,12.600569725036564],[101.39052581787104,12.607712745666504],[101.38276672363281,12.61083030700695],[101.37917327880865,12.613890647888297],[101.3658370971682,12.620834350585938],[101.3455581665039,12.630000114441032],[101.324722290039,12.63861083984375],[101.31636810302751,12.642984390258732],[101.30684661865234,12.645270347595215],[101.28845214843778,12.653653144836483],[101.28443145751982,12.65692138671875],[101.27641296386747,12.657831192016715],[101.2696533203125,12.66099643707281],[101.26667022705084,12.65861034393322],[101.23593139648443,12.66514873504633],[101.22002410888689,12.667293548583984],[101.20894622802729,12.667711257934627],[101.20001983642595,12.669090270996094],[101.17778015136724,12.669166564941463],[101.16459655761724,12.671257019043026],[101.15888977050804,12.670832633972282],[101.15416717529325,12.662780761718693],[101.15982055664068,12.655091285705623],[101.1600265502932,12.640521049499625],[101.15695190429693,12.639740943908691],[101.15702056884794,12.656880378723201],[101.15027618408209,12.658890724182186],[101.1513900756836,12.67249870300293],[101.13971710205072,12.672821044921932],[101.1337280273438,12.663931846618652],[101.13223266601591,12.67333126068121],[101.13054656982416,12.674999237060604],[101.1302261352539,12.639181137085018],[101.12925720214861,12.639529228210563],[101.12989807128929,12.670592308044434],[101.12954711914091,12.674723625183105],[101.12520599365229,12.67768192291254],[101.11310577392601,12.678605079650993],[101.09989929199219,12.678260803222656],[101.09232330322288,12.675020217895621],[101.07318878173828,12.67527961730957],[101.06445312500006,12.674169540405217],[101.05694580078142,12.669445037841854],[101.05043029785168,12.669685363769531],[101.04350280761724,12.665060043334961],[100.99576568603516,12.657564163208065],[100.99267578125017,12.655878067016658],[100.99424743652344,12.657780647277832],[100.99108886718778,12.667270660400334],[100.9931259155274,12.67471027374279],[100.99021911621094,12.682850837707576],[100.98560333251947,12.69115161895752],[100.98805236816418,12.699460983276424],[100.99571228027338,12.713932037353572],[100.99270629882812,12.720680236816463],[100.99297332763678,12.72533035278326],[100.99703216552729,12.72909927368164],[101.00469970703142,12.733511924743596],[101.0046768188476,12.738610267639217],[101.00872039794922,12.74352169036871],[101.01020812988276,12.751790046691838],[101.01612091064447,12.75807189941412],[101.01374053955101,12.760720252990723],[101.01597595214844,12.771369934082031],[101.01470184326178,12.785649299621639],[101.02075958251953,12.797479629516545],[101.03077697753918,12.801349639892521],[101.03227233886747,12.807129859924373],[101.03962707519531,12.811239242553768],[101.04416656494158,12.81011104583746],[101.05049896240234,12.814761161804256],[101.05361175537115,12.82178020477295],[101.05774688720703,12.823810577392692],[101.06516265869158,12.837109565734863],[101.06327819824219,12.839411735534725],[101.06490325927763,12.845421791076717],[101.0648193359375,12.852120399475154],[101.06223297119169,12.856231689453125],[101.06665802001947,12.860849380493164],[101.07028198242182,12.870001792907772],[101.07524871826166,12.878279685974064],[101.07260894775408,12.885210990905875],[101.07640838623064,12.893280982971191],[101.08100891113281,12.895430564880485],[101.07826232910185,12.903500556945858],[101.08683776855497,12.90936088562006],[101.09010314941418,12.914900779724064],[101.08824920654314,12.930159568786564],[101.09278106689447,12.942058563232536],[101.0904388427735,12.944540977478027],[101.09236907959013,12.957600593566895],[101.09960937500028,12.962748527526855],[101.10401916503918,12.969331741332951],[101.10327911376947,12.972620010375977],[101.0971984863283,12.97423171997076],[101.09446716308622,12.978700637817383],[101.09619903564464,12.986021995544547],[101.09197998046903,12.992971420288143],[101.0916824340822,12.99700927734375],[101.08190155029308,13.003931045532227],[101.07576751709013,13.005741119384822],[101.06867218017601,13.00508022308361],[101.07408142089855,13.016000747680721],[101.07904815673822,13.02335166931158],[101.08721923828153,13.02902889251709],[101.10169219970709,13.04512023925787],[101.11158752441429,13.047691345214787],[101.1279296875,13.045169830322266],[101.1378784179688,13.045930862426815],[101.14933776855474,13.044879913330192],[101.15358734130888,13.046309471130485],[101.17121887207048,13.045130729675293],[101.17552947998075,13.04143047332775],[101.18395996093744,13.040540695190543],[101.18843078613287,13.037359237670898],[101.19330596923822,13.041790008544979],[101.20172119140642,13.045161247253475],[101.19918060302763,13.050141334533805],[101.18898010253906,13.055800437927303],[101.17961120605486,13.053270339965763],[101.17411804199224,13.058101654052734],[101.17584991455084,13.061299324035758],[101.17457580566435,13.07184028625494],[101.1774215698245,13.078460693359375],[101.18582153320341,13.086469650268612],[101.19644927978521,13.0867214202882],[101.21713256835949,13.075241088867244],[101.22274017333984,13.075630187988338],[101.23783111572271,13.063949584960938],[101.24320983886724,13.063391685485897],[101.24494171142607,13.067730903625545],[101.25154876708984,13.073650360107479],[101.26059722900419,13.076371192932129],[101.26490020751953,13.072961807250977],[101.26966857910156,13.061430931091309],[101.27332305908226,13.056428909301815],[101.288101196289,13.052521705627441],[101.29180145263678,13.050020217895451],[101.29376983642607,13.058000564575309],[101.2939071655274,13.064459800720215],[101.30249786376959,13.071299552917537],[101.31175994873041,13.072751998901424],[101.31764984130871,13.079890251159725],[101.32675170898443,13.082392692565975],[101.3322677612307,13.080879211425724],[101.33509826660162,13.07501125335699],[101.34294128417991,13.073439598083496],[101.34512329101557,13.06791973114025],[101.34925842285162,13.064560890197754],[101.35276794433588,13.056830406188965],[101.35836029052734,13.055751800537223],[101.36290740966814,13.047020912170467],[101.36785888671892,13.0425901412965],[101.37136840820335,13.042881965637207],[101.38117980957026,13.037570953369197],[101.38474273681646,13.03933143615717],[101.39198303222662,13.03945064544672],[101.40422058105497,13.0417098999024],[101.41378021240246,13.038221359252987],[101.42292022705107,13.037841796875057],[101.43183898925787,13.044400215148926],[101.43834686279325,13.05084037780773],[101.44587707519548,13.047601699829102],[101.45478820800793,13.038090705871582],[101.45568084716803,13.03551101684576],[101.4649658203125,13.032260894775447],[101.46708679199224,13.034519195556697],[101.47634124755871,13.037961006164608],[101.48558044433594,13.03861045837408],[101.48747253417969,13.045089721679744],[101.49577331542997,13.052960395812931],[101.49809265136713,13.057070732116813],[101.51225280761736,13.057150840759391],[101.51628112792969,13.059221267700195],[101.52169799804716,13.070910453796444],[101.52770233154314,13.073650360107479],[101.55813598632841,13.071799278259334],[101.56469726562517,13.0794296264649],[101.57303619384777,13.083730697631836],[101.57576751709001,13.088761329650879],[101.57726287841791,13.097241401672363],[101.5830688476563,13.108720779419059],[101.58622741699213,13.11178016662609],[101.58891296386736,13.11819076538086],[101.5861206054688,13.126391410827637],[101.5808563232423,13.134370803833008],[101.58618164062528,13.138470649719238],[101.60095977783203,13.137499809265194],[101.6077423095706,13.135730743408203],[101.62085723876959,13.1422700881958],[101.63172149658226,13.150691986084041],[101.63793945312517,13.158089637756461],[101.64795684814459,13.163071632385368],[101.65454101562517,13.159611701965332],[101.66108703613304,13.15787124633789],[101.66252136230463,13.152699470519963],[101.67160034179693,13.153591156005973],[101.68324279785162,13.150880813598746],[101.68888092041016,13.152689933776855],[101.69402313232439,13.15072059631342],[101.6984786987307,13.151228904724064]]]]},"properties":{"ID_0":228,"ISO":"TH-21","NAME_0":"Thailand","ID_1":53,"NAME_1":"Rayong","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ระยอง","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.353271484375,16.32316970825201],[104.35053253173822,16.312330245971737],[104.34461212158214,16.305080413818416],[104.34268951416044,16.297571182251033],[104.34571075439459,16.28972816467291],[104.33889007568371,16.28197097778326],[104.33397674560564,16.270809173583928],[104.32881927490251,16.2679119110108],[104.32585906982428,16.263309478759822],[104.32077789306635,16.261079788208008],[104.31262207031267,16.25434112548828],[104.30845642089844,16.255220413208065],[104.29940795898449,16.250770568847713],[104.30039215087908,16.237989425659237],[104.28768920898443,16.231340408325195],[104.28140258789085,16.225250244140682],[104.27693176269548,16.222949981689396],[104.27117156982433,16.224710464477596],[104.2616577148437,16.223100662231445],[104.25222778320335,16.21560859680187],[104.25219726562506,16.205049514770565],[104.24954223632818,16.19919013977062],[104.24633789062506,16.198930740356445],[104.24458312988287,16.187660217285213],[104.24093627929688,16.185791015625114],[104.23860168457048,16.180089950561523],[104.23145294189459,16.169839859008903],[104.232231140137,16.166959762573242],[104.21761322021501,16.155250549316463],[104.21270751953125,16.155759811401424],[104.20942687988298,16.161670684814567],[104.20677185058594,16.161130905151424],[104.19863128662132,16.149549484252873],[104.19122314453153,16.145090103149414],[104.18688964843744,16.14702033996582],[104.18067932128912,16.14698028564453],[104.1687469482423,16.14022827148449],[104.165771484375,16.129699707031307],[104.1589126586914,16.12845039367687],[104.1566162109375,16.119150161743164],[104.15471649169922,16.116580963134766],[104.1394958496096,16.10832023620617],[104.13382720947294,16.111169815063477],[104.11801147460949,16.112230300903434],[104.11383819580072,16.10484123229986],[104.11128234863287,16.1049098968507],[104.10968017578142,16.09655952453619],[104.10301971435547,16.09255981445324],[104.10511016845703,16.085588455200195],[104.10186004638689,16.081819534301758],[104.09778594970732,16.07069015502941],[104.10117340087896,16.065410614013672],[104.10115814209007,16.05626106262207],[104.10408782958996,16.04820060729986],[104.11139678955095,16.044179916381893],[104.11553955078136,16.039110183715877],[104.11569213867216,16.03047180175787],[104.11223602294928,16.028150558471737],[104.11367034912126,16.01922035217285],[104.1126327514649,16.015108108520565],[104.1030883789063,16.002849578857422],[104.10887145996088,15.994380950927791],[104.10890197753923,15.988530158996696],[104.10531616210938,15.982269287109432],[104.09317779541021,15.975350379943848],[104.08555603027372,15.97635269165039],[104.08265686035179,15.980722427368164],[104.0783767700197,15.979801177978516],[104.06633758544916,15.982489585876408],[104.05974578857428,15.984902381896973],[104.0524673461914,15.984681129455566],[104.0503921508789,15.982761383056754],[104.0322494506836,15.980411529541072],[104.03177642822294,15.978097915649471],[104.02532196044933,15.97362041473383],[104.0243606567384,15.970450401306266],[104.01798248291021,15.963689804077205],[104.01640319824236,15.958181381225643],[104.01361846923851,15.95642185211176],[104.01716613769548,15.947299957275504],[104.0232925415039,15.95060062408453],[104.02252960205078,15.9535293579101],[104.02909851074247,15.958860397338867],[104.03193664550787,15.94723033905035],[104.0345458984375,15.94657993316656],[104.03842163085943,15.9376802444458],[104.03504943847668,15.927601814270076],[104.02912902832043,15.921588897705021],[104.03050231933611,15.917551040649414],[104.02448272705101,15.909560203552303],[104.01748657226591,15.909960746765137],[104.02143859863304,15.903950691223201],[104.0183715820313,15.898481369018612],[104.01709747314482,15.891241073608455],[104.02037048339838,15.888261795044002],[104.01734924316423,15.884229660034293],[104.02369689941412,15.881071090698242],[104.027328491211,15.87664890289318],[104.03404998779303,15.873470306396598],[104.02636718750006,15.870671272277775],[104.03092193603516,15.86627006530773],[104.02783203125017,15.862361907959041],[104.03057098388678,15.856439590454215],[104.0295715332033,15.850761413574219],[104.02082061767578,15.845970153808594],[104.02356719970732,15.838561058044434],[104.01399230957054,15.837910652160645],[104.01692962646496,15.827989578247127],[104.01242065429688,15.830071449279842],[104.01132965087913,15.81962966918951],[104.0130233764649,15.814981460571289],[104.00260925292997,15.808589935302791],[104.0044784545899,15.801779747009334],[104.00189208984392,15.796471595764217],[104.00354003906278,15.794090270996094],[104.0108871459961,15.793201446533317],[104.01634979248058,15.795710563659668],[104.02678680419928,15.797821044921932],[104.03645324707031,15.794989585876579],[104.05706787109375,15.806841850280819],[104.06111145019554,15.809921264648438],[104.07125091552763,15.812991142273063],[104.08103179931635,15.81980133056652],[104.07948303222668,15.824191093444881],[104.07242584228527,15.825241088867244],[104.07285308837908,15.836170196533203],[104.07836151123041,15.837359428405819],[104.09961700439459,15.822850227355957],[104.10607147216797,15.816169738769645],[104.11223602294928,15.806121826171875],[104.1208877563476,15.803819656372184],[104.12651062011724,15.800589561462402],[104.13420104980497,15.799101829528865],[104.1367492675783,15.796499252319279],[104.1400375366211,15.784321784973145],[104.13555908203136,15.77781009674078],[104.13455963134771,15.77208042144781],[104.12882995605474,15.767591476440487],[104.13439941406278,15.752889633178711],[104.14150238037104,15.753351211547852],[104.14141082763695,15.746489524841365],[104.13453674316429,15.74275016784668],[104.1362075805664,15.733401298523006],[104.1435928344726,15.727240562439079],[104.13202667236328,15.724531173706112],[104.12953186035156,15.72037124633789],[104.13009643554688,15.708942413330078],[104.13231658935558,15.704040527343693],[104.12087249755871,15.704620361328068],[104.1199188232423,15.701850891113338],[104.12406158447271,15.695908546447754],[104.13018035888678,15.695091247558537],[104.1348876953125,15.699799537658748],[104.13877868652372,15.707401275634766],[104.14218139648443,15.71030044555664],[104.14624023437511,15.701411247253532],[104.15339660644537,15.69552040100092],[104.1547470092774,15.68914985656744],[104.16430664062506,15.685911178588867],[104.16947174072271,15.678421974182186],[104.16996765136719,15.672830581665039],[104.17626953125,15.671629905700684],[104.17843627929693,15.668960571289006],[104.17854309082031,15.662888526916504],[104.1837768554688,15.666520118713379],[104.18856048584013,15.665531158447322],[104.18942260742188,15.659800529480037],[104.1863784790039,15.655769348144645],[104.18194580078142,15.655720710754338],[104.17771911621105,15.659880638122615],[104.17341613769531,15.655139923095703],[104.175765991211,15.645059585571346],[104.1801376342774,15.639270782470817],[104.17949676513672,15.636740684509277],[104.17304229736334,15.634769439697266],[104.17401885986351,15.630331993103084],[104.18224334716803,15.629369735717887],[104.19020843505865,15.631719589233342],[104.19117736816412,15.626219749450684],[104.18630218505871,15.623590469360465],[104.1843185424807,15.618430137634277],[104.18888854980474,15.615401268005371],[104.19145965576166,15.608771324157772],[104.19532775878906,15.611980438232536],[104.20442962646479,15.613801002502555],[104.2113876342774,15.616832733154297],[104.21431732177763,15.61277961730957],[104.21150970459001,15.607530593872184],[104.18268585205072,15.60330963134777],[104.16596221923828,15.602080345153865],[104.16205596923857,15.600709915161076],[104.15328216552763,15.593620300292912],[104.12490081787104,15.57643032073969],[104.12301635742205,15.57340145111084],[104.1255493164063,15.565959930419979],[104.12464904785162,15.561809539795036],[104.11995697021501,15.559849739074707],[104.1074829101563,15.56703090667736],[104.10285949707037,15.566199302673397],[104.10063171386747,15.562391281127987],[104.10131072998047,15.558049201965446],[104.10790252685558,15.548121452331543],[104.10388183593778,15.544330596923828],[104.09250640869158,15.548439979553166],[104.08802795410162,15.548749923705998],[104.08470153808594,15.543070793151912],[104.08104705810564,15.543242454528752],[104.07610321044939,15.537529945373649],[104.08006286621105,15.529130935669002],[104.07592010498064,15.521259307861328],[104.06810760498047,15.5215101242066],[104.06495666503935,15.517090797424373],[104.0589599609375,15.513870239257926],[104.05848693847685,15.507901191711369],[104.06324768066435,15.499281883239803],[104.04299926757818,15.49153041839611],[104.03845977783232,15.490469932556152],[104.02938079834001,15.483949661254996],[104.02160644531256,15.469431877136287],[104.0086593627932,15.4543714523316],[104.00196838378912,15.451339721679688],[103.99794769287115,15.446890830993766],[103.99462890624994,15.427721023559513],[103.9898223876956,15.405541419983024],[103.98391723632841,15.403459548950309],[103.97596740722673,15.40449047088623],[103.97277069091803,15.408301353454647],[103.97785186767572,15.419170379638786],[103.97538757324236,15.42477035522461],[103.96463775634794,15.422109603881836],[103.96277618408197,15.419380187988338],[103.9636001586914,15.413380622863826],[103.95056152343744,15.412740707397404],[103.94953155517601,15.417050361633358],[103.94359588623053,15.42661094665533],[103.94863891601574,15.431031227111873],[103.94799041748053,15.43665790557867],[103.94364929199247,15.437400817871037],[103.92955017089872,15.432461738586483],[103.92710876464838,15.436790466308707],[103.9220199584961,15.438820838928223],[103.91629791259766,15.437730789184627],[103.91168212890642,15.434821128845272],[103.90722656250028,15.44031143188488],[103.90011596679693,15.442390441894531],[103.90132904052763,15.449831008911246],[103.89517974853521,15.461441040039006],[103.8909530639649,15.455101013183707],[103.8855361938476,15.453651428222656],[103.88529968261747,15.461660385131893],[103.88043975830078,15.467020034789982],[103.87448883056658,15.46218013763422],[103.86737060546903,15.459487915039176],[103.86734771728521,15.451942443847656],[103.86341094970697,15.447600364685115],[103.85935211181669,15.450239181518612],[103.86064147949241,15.457759857177734],[103.85845947265642,15.46272182464611],[103.853286743164,15.464520454406795],[103.84900665283226,15.455201148986816],[103.8455657958985,15.454770088195858],[103.84053039550798,15.458761215209961],[103.83370971679688,15.459371566772518],[103.8291625976563,15.454109191894588],[103.81723785400385,15.44692134857172],[103.80251312255888,15.442790985107536],[103.80024719238293,15.443679809570426],[103.78446197509783,15.440660476684684],[103.77993774414068,15.434419631958008],[103.77548217773432,15.434150695800724],[103.7728881835938,15.437891006469727],[103.76805877685564,15.438711166381836],[103.76066589355469,15.435931205749625],[103.7535705566408,15.439039230346793],[103.74691772460938,15.446500778198185],[103.74075317382807,15.441341400146484],[103.73596954345714,15.442421913146973],[103.73236846923822,15.438520431518555],[103.7283401489259,15.440500259399357],[103.72464752197288,15.437581062316895],[103.71936035156278,15.444219589233342],[103.71601104736328,15.442561149597225],[103.70488739013683,15.441120147705021],[103.70236206054693,15.444050788879395],[103.6982498168947,15.442130088806266],[103.6864318847658,15.446580886840934],[103.68348693847685,15.445329666137695],[103.67498779296892,15.448150634765625],[103.67015075683622,15.445270538330192],[103.6649169921875,15.451121330261287],[103.66197967529291,15.448520660400504],[103.65519714355474,15.450518608093319],[103.65052795410168,15.456859588623104],[103.6468124389649,15.456001281738338],[103.63957214355474,15.457680702209473],[103.63601684570341,15.45603275299078],[103.63011169433605,15.457579612732047],[103.62705993652355,15.461381912231502],[103.62171173095732,15.459600448608455],[103.62113189697294,15.463989257812557],[103.60302734375011,15.46669006347662],[103.59156799316435,15.463230133056754],[103.5768432617188,15.461849212646541],[103.57453155517584,15.459371566772518],[103.56636047363287,15.45659065246582],[103.56198883056669,15.451870918273926],[103.5568389892581,15.450711250305176],[103.55439758300793,15.445199966430721],[103.54810333251964,15.43906021118164],[103.53826904296875,15.42731952667242],[103.53096771240251,15.425441741943473],[103.51978302001959,15.429450988769531],[103.51815795898449,15.427382469177303],[103.50550079345726,15.437991142273063],[103.5018920898438,15.436111450195312],[103.49472808837908,15.43688106536871],[103.4879760742188,15.444360733032227],[103.4883422851563,15.44741058349615],[103.47705078125006,15.451669692993221],[103.46125793457037,15.451800346374512],[103.45867156982416,15.45282077789318],[103.43924713134783,15.453541755676213],[103.43541717529314,15.453010559082145],[103.4338760375976,15.448479652404728],[103.4282989501956,15.447779655456486],[103.42459869384771,15.443971633911133],[103.41110992431646,15.438530921936149],[103.40068817138666,15.43317985534668],[103.40609741210943,15.455901145935059],[103.4098281860351,15.465770721435547],[103.41651153564447,15.48917102813732],[103.42241668701166,15.497699737548885],[103.42397308349626,15.512340545654354],[103.42288970947271,15.524019241333121],[103.41548156738287,15.536809921264705],[103.40878295898443,15.536429405212402],[103.40596771240263,15.534099578857479],[103.39700317382841,15.53485202789318],[103.39334869384788,15.53668022155773],[103.3861007690432,15.536349296569881],[103.38223266601562,15.53334999084484],[103.37742614746111,15.534379959106445],[103.3758926391601,15.529191017150879],[103.36228179931646,15.524299621582088],[103.36135101318388,15.530339241027889],[103.35704803466797,15.538689613342399],[103.3470077514649,15.544268608093375],[103.33376312255876,15.545140266418457],[103.32935333251947,15.547081947326774],[103.32328033447283,15.553030014038143],[103.31536102294928,15.553221702575684],[103.31140136718761,15.560310363769588],[103.30535125732439,15.560189247131404],[103.30311584472662,15.565889358520565],[103.30500030517578,15.572031974792537],[103.29817199707054,15.573319435119686],[103.29672241210932,15.580390930175838],[103.29910278320318,15.585321426391602],[103.29635620117182,15.591239929199276],[103.29099273681652,15.59481239318842],[103.2864990234375,15.591039657592887],[103.28266143798828,15.592370986938477],[103.27671051025385,15.598920822143555],[103.27857208251982,15.608510971069336],[103.28777313232416,15.613390922546387],[103.2937088012697,15.623531341552734],[103.29688262939482,15.633331298828125],[103.29727935791027,15.638939857482967],[103.30203247070341,15.646681785583496],[103.30262756347668,15.655880928039664],[103.30648803710955,15.660249710083008],[103.29972076416021,15.660752296447868],[103.28650665283209,15.658150672912598],[103.27764129638683,15.660690307617244],[103.27580261230469,15.664349555969238],[103.30148315429699,15.696390151977596],[103.30728912353516,15.701561927795524],[103.31346893310575,15.703480720520076],[103.32363128662104,15.704481124877987],[103.3380661010745,15.708070755004996],[103.3425521850586,15.710450172424373],[103.3511810302735,15.718680381775016],[103.35296630859403,15.724250793457145],[103.37599182128929,15.715350151062125],[103.37966156005888,15.71261119842535],[103.3861007690432,15.711780548095646],[103.39247894287104,15.70761966705328],[103.4070663452149,15.708490371704045],[103.41625976562506,15.711991310119686],[103.4220962524414,15.71908092498785],[103.42630004882812,15.735269546508846],[103.42899322509771,15.7549409866333],[103.42887115478544,15.772520065307617],[103.43060302734386,15.777680397033805],[103.44268035888689,15.797761917114258],[103.43733215332048,15.80592060089117],[103.44127655029325,15.80835056304943],[103.44320678710932,15.814360618591365],[103.44095611572283,15.82086086273199],[103.44396209716808,15.828610420227108],[103.4398422241211,15.832720756530762],[103.44628906250017,15.853821754455566],[103.44552612304705,15.860971450805721],[103.44725036621111,15.8674898147583],[103.45404052734403,15.87676143646246],[103.45715332031267,15.890280723571834],[103.45990753173851,15.892740249633732],[103.4602661132813,15.907231330871639],[103.47479248046898,15.917352676391602],[103.48268890380854,15.925510406494197],[103.47992706298834,15.934908866882267],[103.48140716552734,15.946830749511832],[103.48078155517572,15.950700759887809],[103.47489166259783,15.955141067504883],[103.46790313720709,15.963161468505803],[103.46575164794939,15.969040870666504],[103.46414184570341,15.991939544677848],[103.46246337890636,15.996081352234],[103.46306610107439,16.003498077392635],[103.4658889770509,16.008319854736442],[103.46253967285156,16.018869400024414],[103.46742248535168,16.029851913452205],[103.47007751464872,16.032949447631893],[103.47255706787138,16.044361114502067],[103.46926116943382,16.050529479980526],[103.46897125244135,16.054861068725643],[103.465347290039,16.062429428100586],[103.46701049804716,16.064449310302678],[103.46134948730486,16.07022094726574],[103.45507049560564,16.080560684204215],[103.45800781250023,16.091920852661133],[103.45755767822283,16.09683036804205],[103.45932006835943,16.10671043395996],[103.4571609497072,16.112649917602482],[103.45986938476562,16.120002746582145],[103.46527862548834,16.12746238708496],[103.47312164306669,16.13247108459484],[103.47505187988293,16.140350341796932],[103.48252105712908,16.144050598144645],[103.48393249511724,16.15303993225109],[103.48722076416044,16.164230346679744],[103.49188995361345,16.17121124267578],[103.49024963378912,16.185911178588924],[103.49324035644531,16.189109802246094],[103.4967803955081,16.187137603759766],[103.49922180175787,16.19102287292486],[103.5044326782226,16.19347000122076],[103.50553131103544,16.197690963745117],[103.51045989990257,16.19629096984869],[103.51418304443376,16.197862625122184],[103.51763916015642,16.194799423217773],[103.52281951904297,16.193767547607365],[103.52361297607445,16.198699951171932],[103.5278778076173,16.200479507446346],[103.52877807617193,16.206331253051758],[103.5317611694336,16.208488464355582],[103.53402709960955,16.216619491577205],[103.54294586181652,16.22052192687994],[103.5424575805664,16.2168483734132],[103.53813934326178,16.2134304046632],[103.5403900146485,16.21006011962885],[103.54516601562523,16.21191978454584],[103.55467224121094,16.21203994750988],[103.55673217773455,16.20751762390148],[103.55123901367188,16.2065105438233],[103.55615234375017,16.201210021972713],[103.56729125976585,16.200902938842773],[103.59095764160162,16.192699432373104],[103.59541320800776,16.19378089904785],[103.59646606445318,16.19993972778326],[103.60029602050804,16.198608398437614],[103.60047149658209,16.191030502319393],[103.60730743408203,16.192150115966854],[103.60974121093767,16.198549270629883],[103.61508178710955,16.19741058349615],[103.62062835693376,16.20076179504389],[103.61988830566406,16.20509910583496],[103.61469268798822,16.2080917358399],[103.61309051513678,16.212909698486385],[103.60452270507841,16.21088027954113],[103.60307312011736,16.213739395141545],[103.61138153076178,16.216619491577205],[103.62043762207048,16.215021133422965],[103.62991333007841,16.203081130981445],[103.63236236572271,16.198209762573242],[103.63323211669922,16.188779830932674],[103.64054107666038,16.185340881347656],[103.64388275146501,16.190210342407283],[103.64814758300787,16.19098091125494],[103.65361022949236,16.188091278076172],[103.65468597412138,16.19656944274908],[103.65843963623053,16.192260742187557],[103.6646804809572,16.191190719604492],[103.6676559448245,16.197101593017635],[103.67230224609392,16.195978164672965],[103.67829895019554,16.20086097717291],[103.66697692871111,16.206600189208984],[103.66327667236357,16.212459564208928],[103.66642761230469,16.219499588012695],[103.6726531982423,16.21862983703619],[103.67137145996111,16.214721679687557],[103.67597198486328,16.21013069152832],[103.67891693115263,16.21380043029785],[103.68772888183588,16.21599960327154],[103.69721221923834,16.213291168212947],[103.69975280761713,16.217140197753906],[103.69232940673845,16.221380233764705],[103.6936416625976,16.223369598388672],[103.70478057861328,16.220638275146598],[103.71402740478544,16.21647071838379],[103.71865081787126,16.216400146484375],[103.72634124755865,16.21962165832531],[103.73461151123075,16.219699859619084],[103.7362289428711,16.22174072265625],[103.73494720459007,16.228981018066406],[103.73863983154308,16.238769531250057],[103.73915863037115,16.246400833129883],[103.74935913085955,16.25354194641119],[103.75444030761747,16.25939750671398],[103.75699615478533,16.272611618041992],[103.75379943847656,16.28483963012701],[103.75801086425787,16.29224967956543],[103.7580184936524,16.29975128173828],[103.7559432983399,16.302732467651367],[103.74031066894537,16.31622123718273],[103.72706604003923,16.32691955566412],[103.72622680664091,16.330829620361385],[103.73075866699241,16.33763122558605],[103.73010253906267,16.34204292297369],[103.72618865966803,16.34888267517084],[103.71264648437506,16.36211013793951],[103.71054840087896,16.36561965942377],[103.70291137695335,16.37220954895031],[103.7010116577149,16.37532043457037],[103.70552825927734,16.38289070129406],[103.70865631103521,16.384822845459098],[103.71913146972662,16.385589599609375],[103.7374114990235,16.397621154785156],[103.73847961425776,16.405210494995117],[103.74350738525396,16.408781051635742],[103.76164245605474,16.418741226196403],[103.76805114746111,16.42123985290533],[103.77234649658209,16.425920486450252],[103.77326202392584,16.430780410766715],[103.77806854248053,16.433521270751896],[103.78317260742188,16.433870315551758],[103.78553009033232,16.438198089599666],[103.79718780517607,16.447130203247127],[103.80908203125017,16.452329635620174],[103.8134994506836,16.463138580322266],[103.82100677490263,16.467309951782283],[103.83007049560547,16.467470169067383],[103.83297729492193,16.463439941406307],[103.83895111084013,16.460950851440487],[103.85056304931646,16.460269927978516],[103.86033630371105,16.466220855712947],[103.86727142333984,16.468639373779297],[103.88086700439476,16.460269927978516],[103.88996124267578,16.451080322265682],[103.9001922607423,16.448440551757926],[103.90216827392578,16.44496917724615],[103.90672302246111,16.444982528686637],[103.90944671630865,16.449640274047965],[103.91319274902338,16.45061111450201],[103.91699218749994,16.443149566650447],[103.91719055175776,16.43702125549322],[103.92485046386736,16.436660766601506],[103.930419921875,16.43305015563965],[103.93405151367193,16.43335914611822],[103.94442749023466,16.44025993347168],[103.9511184692384,16.4406795501709],[103.97171783447277,16.431209564209098],[103.9808807373048,16.430030822753906],[103.98977661132835,16.434761047363224],[103.99565124511719,16.442720413208065],[104.00971984863298,16.441719055175838],[104.01232147216825,16.43980979919445],[104.02703094482433,16.438930511474666],[104.03237915039074,16.44147109985363],[104.04048156738287,16.43465042114252],[104.04212188720697,16.42494964599615],[104.03820800781256,16.413948059082145],[104.04289245605463,16.412008285522404],[104.04180908203125,16.40212059020996],[104.04382324218761,16.39969062805187],[104.04206085205084,16.394140243530273],[104.04432678222679,16.39073944091797],[104.0492019653322,16.389560699462947],[104.05274963378935,16.39291000366211],[104.05905151367216,16.39480972290039],[104.06587219238304,16.394861221313533],[104.07047271728521,16.398622512817383],[104.07026672363304,16.405900955200252],[104.07621002197294,16.406362533569393],[104.08258056640642,16.409429550170955],[104.08705902099615,16.407939910888786],[104.08934020996116,16.412410736083984],[104.09597778320312,16.412820816040153],[104.10115051269537,16.418651580810547],[104.10782623291021,16.41916084289545],[104.12101745605474,16.423370361328125],[104.13170623779303,16.425502777099553],[104.13796997070335,16.422639846801758],[104.14347839355474,16.426349639892635],[104.14792633056669,16.427080154419002],[104.1473999023437,16.434621810913143],[104.15534973144537,16.436330795288143],[104.16072845459013,16.44038009643549],[104.16575622558611,16.439880371093864],[104.16996002197266,16.442739486694336],[104.17514801025396,16.443420410156307],[104.17932891845703,16.441019058227596],[104.18681335449224,16.431768417358455],[104.19863128662132,16.428369522094727],[104.20849609375,16.429540634155387],[104.21997833251959,16.435310363769645],[104.22370147705072,16.435260772705078],[104.23612213134783,16.427560806274357],[104.24015808105469,16.42739105224615],[104.2462997436524,16.435050964355526],[104.2550277709961,16.43255996704096],[104.26117706298834,16.43477058410656],[104.26712036132818,16.433839797973576],[104.271537780762,16.435569763183594],[104.27614593505854,16.440990447998047],[104.28626251220697,16.447290420532283],[104.28914642334001,16.451190948486385],[104.2911911010745,16.45895004272461],[104.29264831542974,16.470109939575195],[104.29511260986334,16.47076988220215],[104.30636596679693,16.462099075317383],[104.31297302246088,16.45049858093273],[104.31508636474626,16.443210601806754],[104.31636810302763,16.431358337402344],[104.32041168212885,16.42292976379406],[104.32166290283209,16.417110443115178],[104.32019042968761,16.402080535888672],[104.31832122802751,16.393569946289062],[104.31867980957026,16.388620376587028],[104.32247924804699,16.379478454589844],[104.321548461914,16.373622894287053],[104.3235473632813,16.36297035217291],[104.32875061035185,16.35318946838379],[104.32927703857445,16.34757995605463],[104.33258056640653,16.340270996093807],[104.33199310302763,16.33756065368658],[104.32627868652372,16.33362007141119],[104.32447052001953,16.33026123046875],[104.32804870605486,16.3272380828858],[104.33701324462908,16.325839996337947],[104.34198760986345,16.32336044311529],[104.353271484375,16.32316970825201]]]},"properties":{"ID_0":228,"ISO":"TH-45","NAME_0":"Thailand","ID_1":54,"NAME_1":"Roi Et","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ร้อยเอ็ด","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.43345642089838,14.150860786437988],[102.4347686767581,14.14541053771967],[102.43875885009794,14.141821861267147],[102.44673156738304,14.140980720520076],[102.452621459961,14.142061233520565],[102.45548248291021,14.140411376953068],[102.4574508666995,14.13462162017828],[102.46573638916033,14.133219718933049],[102.47582244873064,14.129751205444393],[102.48478698730486,14.13976097106945],[102.4893875122072,14.138371467590446],[102.49192047119146,14.134631156921387],[102.50122833251953,14.13529014587408],[102.50367736816423,14.130518913269157],[102.51058197021484,14.131360054016056],[102.51891326904291,14.139949798583984],[102.52474975585943,14.141349792480412],[102.53452301025419,14.136430740356559],[102.54032897949219,14.13672065734869],[102.54946136474626,14.133550643920898],[102.55316925048834,14.134181976318473],[102.56630706787115,14.144550323486328],[102.5768585205081,14.150570869445858],[102.5855484008789,14.154151916503906],[102.5915908813476,14.159619331359863],[102.59342193603521,14.164421081543082],[102.60600280761724,14.169330596923828],[102.61414337158203,14.167910575866813],[102.62622833251959,14.153609275817871],[102.63529205322283,14.147540092468205],[102.64134979248058,14.150049209594727],[102.64595031738276,14.157810211181754],[102.65513610839861,14.16382026672369],[102.67111968994135,14.156780242919922],[102.68383789062506,14.150201797485352],[102.69255065917969,14.141851425171012],[102.69114685058588,14.13264083862316],[102.696830749512,14.129460334777775],[102.7105331420899,14.13174057006836],[102.71936035156261,14.135821342468319],[102.72701263427729,14.136871337890682],[102.73676300048845,14.139849662780875],[102.74308776855469,14.139781951904297],[102.75595855712919,14.13728237152111],[102.7635116577149,14.137331962585506],[102.76731872558594,14.139459609985465],[102.77262878417986,14.148430824279728],[102.77452850341814,14.153809547424316],[102.7793807983399,14.1614608764649],[102.78784942626947,14.157771110534725],[102.79273223876959,14.169189453125114],[102.79579162597662,14.169900894165096],[102.8001327514649,14.158948898315487],[102.80483245849604,14.157720565795842],[102.80541229248064,14.167011260986271],[102.80988311767601,14.170499801635685],[102.81365203857422,14.170591354370174],[102.8204727172851,14.167579650878963],[102.8245468139649,14.161532402038631],[102.83042907714844,14.156669616699219],[102.8327407836914,14.157851219177303],[102.83106994628912,14.164961814880485],[102.83476257324213,14.165821075439567],[102.84420776367193,14.157980918884277],[102.849349975586,14.15719032287609],[102.86093139648455,14.14835071563715],[102.86389160156256,14.147259712219238],[102.87162780761719,14.149160385131836],[102.8713989257812,14.15609073638916],[102.87343597412138,14.167241096496582],[102.87734222412126,14.171629905700797],[102.88336944580107,14.172120094299316],[102.893852233887,14.16819095611578],[102.90097045898455,14.162640571594181],[102.91255950927763,14.166040420532227],[102.91916656494146,14.169699668884391],[102.9275512695313,14.172471046447697],[102.9312896728515,14.175101280212346],[102.93514251708984,14.17125034332281],[102.93849182128935,14.1642103195191],[102.9392776489259,14.15911960601801],[102.94307708740263,14.15021133422863],[102.94249725341825,14.146321296691951],[102.93839263916016,14.14005088806158],[102.92787933349626,14.131771087646484],[102.92565155029303,14.125110626220703],[102.92662048339866,14.10757064819336],[102.92476654052763,14.103059768676701],[102.91301727294922,14.093200683593807],[102.90991973876947,14.093551635742188],[102.9057083129884,14.084520339965934],[102.90277862548851,14.081380844116325],[102.90451812744146,14.06531143188488],[102.90080261230486,14.058950424194336],[102.90006256103516,14.048469543456974],[102.90521240234375,14.039951324463004],[102.90355682373053,14.033720016479606],[102.91007232666044,14.025202751159725],[102.91050720214861,14.019021987915039],[102.91335296630854,14.015330314636344],[102.90466308593756,14.014181137085018],[102.8959503173831,14.005401611328125],[102.88867950439459,14.008501052856445],[102.8843460083009,14.00720024108898],[102.88192749023438,14.001779556274357],[102.87470245361328,14.001239776611442],[102.87097167968778,14.00298976898199],[102.86663055419916,13.999811172485408],[102.85095214843778,13.984070777893066],[102.81761932373064,13.963470458984375],[102.8145828247072,13.954300880432129],[102.81015777587885,13.94701004028326],[102.8050003051759,13.941082000732479],[102.80030059814453,13.94032096862793],[102.79508972167963,13.935771942138729],[102.78488159179693,13.930871963500977],[102.78394317626976,13.919701576233024],[102.76972961425776,13.854290008544979],[102.75939178466825,13.843819618225211],[102.74320220947277,13.818001747131404],[102.74156188964844,13.818881988525504],[102.7259368896485,13.793651580810604],[102.72521972656256,13.789241790771541],[102.73400878906278,13.783220291137695],[102.7336807250976,13.772220611572266],[102.71875000000028,13.772831916809082],[102.70346832275396,13.759742736816406],[102.69043731689453,13.750110626220703],[102.68091583251953,13.747781753540039],[102.66594696044933,13.740121841430664],[102.60204315185575,13.706610679626579],[102.59393310546875,13.705549240112305],[102.59055328369146,13.70249080657959],[102.58244323730486,13.698671340942496],[102.57862854003923,13.694491386413688],[102.57884979248047,13.69120025634777],[102.57089996337913,13.689189910888786],[102.56391906738276,13.681281089782658],[102.55818939208996,13.668649673461971],[102.55509948730497,13.6668701171875],[102.55030822753912,13.658159255981502],[102.561752319336,13.645019531250114],[102.57228851318388,13.640939712524414],[102.57411956787115,13.63175106048584],[102.5822067260745,13.6251802444458],[102.58988189697283,13.626800537109375],[102.5928573608399,13.622139930725154],[102.60302734374994,13.620170593261776],[102.60984802246122,13.613419532775822],[102.6251602172851,13.60936069488531],[102.61258697509783,13.60365200042719],[102.59764862060575,13.60675144195551],[102.58349609375006,13.604640960693416],[102.5760421752932,13.601872444152946],[102.5712814331057,13.5900497436524],[102.57186889648443,13.584139823913574],[102.56594085693382,13.580692291259709],[102.56450653076166,13.576960563659725],[102.55111694335966,13.57528114318859],[102.54213714599638,13.568380355834961],[102.5280303955081,13.562780380249137],[102.52381896972685,13.564789772033635],[102.51246643066423,13.567270278930778],[102.5097732543947,13.565501213073787],[102.50318908691429,13.569271087646484],[102.49848937988293,13.567700386047477],[102.49185943603533,13.570340156555233],[102.48562622070318,13.56891059875494],[102.48191070556635,13.57079124450695],[102.47818756103521,13.56685924530035],[102.4714431762697,13.563859939575138],[102.46592712402361,13.563531875610352],[102.46093749999994,13.56022930145275],[102.45275115966814,13.559440612792969],[102.44387817382818,13.561370849609375],[102.44062805175804,13.558071136474666],[102.43247985839872,13.561430931091365],[102.4260559082033,13.568181037902832],[102.42108917236345,13.569490432739315],[102.41200256347662,13.56526184082037],[102.39437103271479,13.565519332885742],[102.39028930664068,13.569581031799316],[102.38626098632835,13.57040119171154],[102.37993621826172,13.574871063232479],[102.37487792968778,13.573380470275822],[102.36660766601568,13.575540542602539],[102.36138153076189,13.569500923156738],[102.35723114013672,13.562431335449332],[102.34593200683611,13.559130668640137],[102.33982086181635,13.554740905761776],[102.33978271484403,13.54426193237299],[102.33625793457031,13.539911270141658],[102.33736419677751,13.535551071166992],[102.34233856201172,13.529171943664664],[102.34819793701166,13.52660083770752],[102.35276794433605,13.517561912536678],[102.36054229736334,13.510279655456486],[102.36361694335966,13.503000259399528],[102.36258697509771,13.482091903686637],[102.35878753662115,13.477581024169979],[102.35970306396484,13.4749116897583],[102.35719299316423,13.457909584045467],[102.3570327758789,13.445562362670898],[102.36209106445341,13.440740585327092],[102.3599700927735,13.436909675598088],[102.36058044433605,13.429821968078727],[102.36416625976568,13.422980308532829],[102.36116790771479,13.416691780090275],[102.36215972900408,13.412421226501522],[102.36049652099615,13.40697956085205],[102.36260223388678,13.403919219970703],[102.35636138916044,13.386490821838379],[102.35668182373053,13.375810623168945],[102.35353851318354,13.372991561889762],[102.3483276367188,13.35527133941656],[102.3468627929687,13.345660209655875],[102.3538208007813,13.338720321655273],[102.35222625732439,13.334971427917594],[102.3539199829101,13.329917907714957],[102.35894012451172,13.323109626770076],[102.36131286621122,13.312420845031738],[102.3607101440432,13.307799339294547],[102.35507965087885,13.297624588012695],[102.34970092773466,13.296540260314998],[102.34552001953136,13.30370998382574],[102.3370132446289,13.314981460571289],[102.33304595947288,13.31406021118164],[102.32810211181646,13.304791450500488],[102.32411193847662,13.299539566040039],[102.32440185546892,13.295890808105469],[102.3124389648438,13.285810470581168],[102.2993774414062,13.289072036743164],[102.29943084716797,13.294380187988338],[102.29270172119135,13.29894924163824],[102.28974914550804,13.294911384582576],[102.29608917236357,13.28822135925293],[102.29648590087919,13.282429695129395],[102.29261016845726,13.27600955963129],[102.29518890380854,13.273480415344238],[102.29247283935575,13.264780998230094],[102.28988647460938,13.265781402587834],[102.28740692138672,13.259230613708496],[102.28276824951183,13.258720397949276],[102.27510833740263,13.254350662231445],[102.25570678710932,13.255670547485352],[102.24543762207048,13.262681007385254],[102.22808074951189,13.258410453796444],[102.22187042236334,13.263139724731445],[102.21286773681646,13.262131690979004],[102.20665740966808,13.25741195678711],[102.20437622070324,13.257961273193303],[102.20260620117193,13.265940666198844],[102.1977005004884,13.275902748107967],[102.19689178466803,13.282439231872672],[102.19296264648455,13.286410331726074],[102.19100189209013,13.291740417480526],[102.19209289550804,13.295161247253418],[102.18863677978521,13.301712036132926],[102.18363189697283,13.30321979522705],[102.17797088623053,13.297761917114371],[102.17359161376976,13.295651435852108],[102.16425323486351,13.29457092285162],[102.15595245361322,13.296110153198356],[102.15339660644537,13.304841041564941],[102.14560699462919,13.30990123748785],[102.14189910888672,13.31639194488531],[102.14244842529297,13.32129192352295],[102.13903045654297,13.331029891967887],[102.13095092773432,13.334610939025879],[102.12805938720732,13.326239585876522],[102.13101959228516,13.324140548706112],[102.12545013427751,13.308409690856934],[102.12075042724615,13.302430152893123],[102.119888305664,13.297581672668514],[102.12100982666044,13.291069984436149],[102.11904144287132,13.275651931762638],[102.10997772216791,13.26308917999279],[102.10423278808605,13.260381698608455],[102.09575653076178,13.258410453796444],[102.091781616211,13.258879661560115],[102.08490753173851,13.256470680236873],[102.07322692871094,13.254481315612907],[102.06575775146501,13.249881744384822],[102.06373596191429,13.243981361389103],[102.0581893920899,13.23967075347906],[102.05182647705095,13.238361358642578],[102.04651641845703,13.24053955078125],[102.02973937988281,13.235680580139217],[102.03164672851562,13.261370658874455],[102.03083801269548,13.26602935791027],[102.03710937499994,13.277901649475211],[102.03617858886736,13.282659530639648],[102.02945709228544,13.286660194397086],[102.02587890625017,13.286020278930664],[102.01216888427751,13.291031837463493],[102.00785827636724,13.304339408874512],[102.00296020507824,13.314791679382267],[101.99398040771513,13.32200145721447],[101.99030303955101,13.332160949707088],[101.98651885986357,13.33739185333252],[101.98979949951183,13.343541145324764],[101.98973846435553,13.353260993957576],[101.98445892333996,13.355469703674373],[101.98091125488281,13.363900184631461],[101.9821319580081,13.36998081207281],[101.98195648193388,13.378890037536678],[101.97489166259794,13.3840913772583],[101.97524261474615,13.388489723205623],[101.97293853759788,13.393551826477164],[101.97675323486351,13.398679733276424],[101.97624969482433,13.406431198120117],[101.9680786132812,13.409160614013729],[101.96260833740234,13.413600921630803],[101.96009826660173,13.419330596923771],[101.95552825927734,13.422539710998535],[101.95089721679682,13.428461074829102],[101.94306945800793,13.434799194335994],[101.93627166748047,13.44797134399414],[101.94084930419922,13.461280822753963],[101.93379974365234,13.469849586486816],[101.93437957763672,13.474470138549918],[101.92758178710966,13.47384071350092],[101.92045593261719,13.47693157196045],[101.9155960083009,13.47637081146246],[101.909477233887,13.484371185302678],[101.90593719482422,13.486351013183707],[101.90187072753918,13.493600845336971],[101.90222167968778,13.503520011901912],[101.89759826660179,13.509119987487907],[101.89760589599632,13.513521194458008],[101.89266967773443,13.52003002166748],[101.88410186767607,13.523150444030819],[101.87663269042974,13.522219657898006],[101.86695098876982,13.528849601745605],[101.86205291748064,13.537469863891658],[101.8828430175783,13.540959358215389],[101.89871215820312,13.546931266784668],[101.90260314941435,13.551521301269588],[101.9061279296875,13.564171791076774],[101.91285705566429,13.57446002960205],[101.9153671264649,13.584211349487305],[101.91245269775396,13.585261344909668],[101.90995025634766,13.58844089508051],[101.9102325439456,13.600549697875977],[101.91509246826172,13.606499671936092],[101.92085266113287,13.603680610656795],[101.93962860107433,13.60004997253418],[101.94391632080078,13.605198860168457],[101.94801330566435,13.607020378112793],[101.94431304931646,13.615169525146598],[101.94465637207031,13.619689941406193],[101.94782257080107,13.622741699218693],[101.95159149169928,13.618171691894474],[101.95582580566435,13.618540763855037],[101.95535278320312,13.628330230713004],[101.9514617919923,13.634030342102108],[101.94699096679693,13.63557052612316],[101.94404602050776,13.641401290893498],[101.94476318359403,13.646371841430721],[101.94239807128912,13.649970054626579],[101.94668579101574,13.654689788818303],[101.94828033447266,13.659620285034237],[101.94732666015625,13.664699554443416],[101.94947814941429,13.670430183410645],[101.9459381103515,13.674559593200797],[101.946029663086,13.68649959564209],[101.94375610351585,13.693779945373535],[101.94416809082037,13.698780059814453],[101.94239044189453,13.705061912536678],[101.93913269042969,13.709230422973633],[101.93988037109392,13.722221374511776],[101.94300842285162,13.73622035980219],[101.93734741210949,13.738810539245605],[101.93061065673834,13.745390892028809],[101.9240112304687,13.747471809387207],[101.92063903808594,13.750941276550407],[101.9225692749024,13.75574111938488],[101.92764282226557,13.757991790771541],[101.93176269531256,13.757051467895621],[101.9379119873048,13.759611129760856],[101.94416046142584,13.765419960022086],[101.94563293457031,13.783220291137695],[101.94544982910162,13.788722038269157],[101.94890594482445,13.800130844116211],[101.94531250000006,13.808291435241756],[101.93035888671875,13.811850547790584],[101.92662811279325,13.815290451049918],[101.92723846435558,13.823340415954704],[101.92208862304699,13.8298597335816],[101.92591094970697,13.84115123748785],[101.92617797851562,13.84766864776617],[101.92996978759766,13.852910995483342],[101.92101287841797,13.860940933227596],[101.91723632812506,13.86589145660406],[101.91593170166021,13.871270179748649],[101.90586853027355,13.88125038146967],[101.90775299072294,13.8862886428833],[101.90605163574247,13.900650024414006],[101.90782165527361,13.908009529113713],[101.90717315673857,13.913040161132756],[101.91011810302751,13.918830871582031],[101.90969848632807,13.922760009765739],[101.91313171386713,13.928640365600529],[101.91339874267578,13.933830261230412],[101.92160034179688,13.934729576110954],[101.9254913330081,13.937521934509334],[101.9319458007813,13.932451248169002],[101.94027709960938,13.9334716796875],[101.94489288330084,13.929619789123649],[101.95133209228516,13.93214130401617],[101.95178985595709,13.938310623168945],[101.94155883789057,13.95191860198986],[101.93924713134777,13.960089683532829],[101.94281005859398,13.964741706848201],[101.94130706787115,13.986489295959586],[101.93776702880876,13.991761207580623],[101.93672180175787,14.006839752197266],[101.94130706787115,14.015322685241813],[101.9509887695313,14.018951416015625],[101.95375823974604,14.021321296691838],[101.96151733398443,14.021190643310604],[101.97364807128906,14.026470184326172],[101.99279785156256,14.031360626220817],[102.01438140869169,14.031641006469783],[102.02757263183588,14.034189224243278],[102.0350418090822,14.034359931945858],[102.04283142089838,14.03910064697277],[102.04588317871088,14.055230140686035],[102.0416870117187,14.063830375671387],[102.04902648925787,14.07529067993164],[102.05818176269537,14.073640823364371],[102.05861663818388,14.079119682312012],[102.06619262695318,14.078290939331112],[102.07498168945335,14.086552619934025],[102.07958221435553,14.083970069885197],[102.08558654785173,14.086611747741756],[102.09165954589838,14.091819763183594],[102.1012802124024,14.103441238403263],[102.09963989257841,14.117790222168026],[102.10064697265642,14.127670288085938],[102.10395050048834,14.13451004028326],[102.10817718505882,14.14956092834484],[102.12409973144526,14.145880699157829],[102.13298034667974,14.137579917907715],[102.13865661621094,14.135890960693473],[102.15421295166027,14.136141777038574],[102.16741180419939,14.14003944396984],[102.16934204101562,14.141981124877987],[102.1729125976562,14.156720161438102],[102.16883850097662,14.162890434265194],[102.16874694824236,14.17091178894043],[102.17331695556658,14.179349899292049],[102.1762619018557,14.182139396667537],[102.17726898193388,14.188559532165584],[102.18329620361334,14.193470954895076],[102.18717193603544,14.194741249084586],[102.19342803955101,14.193610191345215],[102.19703674316412,14.189049720764274],[102.20124816894554,14.179969787597713],[102.20548248291044,14.174901008605957],[102.21401214599615,14.169561386108398],[102.21495056152344,14.1607408523559],[102.21299743652361,14.153261184692383],[102.21659851074213,14.145180702209586],[102.22184753417991,14.142609596252498],[102.24030303955078,14.142720222473201],[102.24983978271484,14.139570236206168],[102.2606582641601,14.143870353698844],[102.26924133300776,14.145711898803711],[102.27236938476568,14.142361640930233],[102.27304840087885,14.129359245300407],[102.27564239501976,14.127740859985352],[102.28411102294916,14.130260467529297],[102.291313171387,14.133919715881461],[102.29814910888695,14.12947082519537],[102.30258941650419,14.122209548950195],[102.31062316894526,14.119680404663143],[102.32536315917969,14.126351356506348],[102.32846069335943,14.126640319824332],[102.33448028564447,14.119389533996582],[102.3418731689456,14.124490737915039],[102.35144042968744,14.124382019042912],[102.35447692871105,14.128540992736873],[102.3591918945313,14.130539894104004],[102.35903167724638,14.135490417480469],[102.36260986328148,14.149491310119686],[102.35994720459007,14.16272068023693],[102.36556243896479,14.163399696350154],[102.37648010253906,14.150650978088436],[102.38198089599626,14.145839691162053],[102.39170837402361,14.143342018127441],[102.40188598632818,14.14458179473877],[102.40847015380854,14.152380943298454],[102.41388702392578,14.15388011932373],[102.42011260986322,14.153109550476074],[102.42421722412132,14.156462669372559],[102.43045806884766,14.151211738586369],[102.43345642089838,14.150860786437988]]]},"properties":{"ID_0":228,"ISO":"TH-27","NAME_0":"Thailand","ID_1":55,"NAME_1":"Sa Kaeo","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สระแก้ว","VARNAME_1":"Srakaeo"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.01936340332037,17.80808830261236],[104.02368927001953,17.798799514770508],[104.02207946777355,17.794841766357422],[104.01600646972673,17.795610427856502],[104.01268768310553,17.79120063781744],[104.0164718627932,17.784660339355526],[104.01645660400396,17.778869628906193],[104.02452850341825,17.76831245422369],[104.02630615234392,17.757669448852596],[104.03176116943365,17.757120132446403],[104.03150939941406,17.766769409179744],[104.04038238525402,17.767948150634766],[104.05161285400419,17.763750076294002],[104.06004333496088,17.75589942932129],[104.05953979492188,17.74809074401867],[104.05393981933588,17.747390747070256],[104.05278778076183,17.73644065856945],[104.06240844726562,17.739271163940487],[104.0638580322265,17.744409561157227],[104.06770324707048,17.744422912597713],[104.07065582275396,17.732629776000977],[104.07051849365246,17.723188400268555],[104.06558227539057,17.720550537109375],[104.069320678711,17.71381950378418],[104.0787506103515,17.708410263061637],[104.07997894287115,17.70359992980957],[104.07733917236334,17.70058822631836],[104.0802459716798,17.69425010681158],[104.07788848876976,17.69152069091797],[104.0722961425783,17.692039489746207],[104.0695190429688,17.68897056579584],[104.07337951660168,17.67740058898937],[104.08557128906278,17.6778507232666],[104.07402038574219,17.665670394897575],[104.07376098632824,17.652851104736442],[104.06855773925787,17.647510528564567],[104.05940246582037,17.640390396118278],[104.05095672607422,17.63692283630371],[104.04559326171892,17.64501953125],[104.04003143310541,17.63811111450201],[104.03321838378906,17.61796760559082],[104.03813934326189,17.609912872314567],[104.04908752441429,17.602890014648494],[104.05667877197266,17.590818405151367],[104.05663299560564,17.58413124084484],[104.05381774902344,17.572050094604435],[104.05049896240246,17.569059371948242],[104.0399932861331,17.56529045104986],[104.0370788574221,17.55925941467291],[104.03929901123064,17.54319953918457],[104.0420532226563,17.530847549438533],[104.04119873046892,17.526428222656307],[104.03630828857445,17.518440246582088],[104.03547668457048,17.512649536132812],[104.03096008300787,17.504259109497013],[104.02719116210966,17.500930786132926],[104.02455139160168,17.489561080932674],[104.02281188964872,17.486890792846737],[104.01225280761724,17.485940933227482],[104.01444244384777,17.47381019592291],[104.0213088989259,17.455570220947322],[104.02715301513695,17.451709747314453],[104.03260803222673,17.443399429321232],[104.03118133544928,17.43794250488287],[104.0384902954101,17.430759429931697],[104.04220581054693,17.41873168945324],[104.04548645019537,17.413450241088924],[104.05446624755888,17.405740737915096],[104.05815124511713,17.397550582885742],[104.06127166748053,17.395029067993164],[104.06035614013678,17.389869689941463],[104.06326293945341,17.38648033142084],[104.0676879882812,17.387441635131836],[104.0708618164063,17.38022994995123],[104.07479858398438,17.377958297729492],[104.08336639404297,17.391441345214957],[104.08885955810541,17.38532066345209],[104.09416198730497,17.38159942626953],[104.09056854248041,17.376869201660213],[104.09172821044939,17.37418937683111],[104.0977172851563,17.373859405517578],[104.10214996337919,17.379590988159293],[104.10446929931652,17.38871955871582],[104.10102081298857,17.39058113098139],[104.09435272216825,17.40085029602062],[104.10085296630871,17.401510238647575],[104.10388183593778,17.398067474365178],[104.10861968994146,17.401969909667912],[104.11377716064459,17.399541854858455],[104.11248779296886,17.39018058776861],[104.11617279052734,17.390071868896484],[104.11966705322288,17.395561218261776],[104.12934112548828,17.394451141357422],[104.12799072265642,17.389690399169922],[104.12980651855497,17.38065910339361],[104.13450622558594,17.379009246826172],[104.1443481445312,17.38465118408203],[104.14533233642595,17.388919830322266],[104.14264678955072,17.393510818481502],[104.14612579345703,17.395780563354606],[104.14952087402361,17.391769409179744],[104.1540908813476,17.39132118225109],[104.1566162109375,17.394760131835938],[104.15119934082043,17.404050827026367],[104.15776824951172,17.40538024902355],[104.15605163574219,17.41193008422863],[104.16088104248053,17.415370941162223],[104.17125701904291,17.413650512695312],[104.17608642578125,17.427032470703182],[104.18710327148455,17.42118072509777],[104.19133758544922,17.42428016662609],[104.19571685791016,17.421680450439567],[104.20033264160162,17.426681518554744],[104.20722198486334,17.42206192016613],[104.20845794677751,17.414770126342773],[104.21121215820335,17.41340065002447],[104.2200469970706,17.416812896728516],[104.22701263427734,17.41324996948248],[104.23403167724626,17.41291046142578],[104.24651336669928,17.41662025451666],[104.25463104248064,17.414199829101562],[104.26917266845709,17.419000625610295],[104.27623748779303,17.424610137939453],[104.28919982910162,17.430919647216797],[104.30488586425787,17.428560256958008],[104.31057739257818,17.430629730224723],[104.33470916748041,17.42947959899908],[104.3442687988283,17.42485046386713],[104.37193298339861,17.4244003295899],[104.37798309326183,17.423669815063533],[104.39138031005876,17.425931930542106],[104.40592956542974,17.425989151001033],[104.4167709350586,17.427640914917106],[104.41944122314453,17.422550201416072],[104.4187774658206,17.4122695922851],[104.41323089599615,17.4072208404541],[104.4143829345706,17.401260375976562],[104.41783142089872,17.395139694213924],[104.40959930419928,17.378780364990348],[104.41425323486322,17.369369506835938],[104.41628265380865,17.361549377441406],[104.41528320312506,17.35589981079096],[104.41789245605486,17.349710464477653],[104.42098999023438,17.347669601440487],[104.42565155029325,17.337610244750977],[104.42446136474632,17.326530456543026],[104.41895294189459,17.31848907470703],[104.4194564819336,17.311981201171875],[104.41147613525396,17.310140609741325],[104.40556335449224,17.304780960083008],[104.40512084960955,17.297599792480582],[104.40811157226591,17.290670394897575],[104.40863800048834,17.277671813964844],[104.41928100585943,17.26127815246582],[104.4227066040039,17.259990692138672],[104.42724609375017,17.253030776977653],[104.42945861816435,17.243709564209098],[104.43775177001953,17.23847007751459],[104.43139648437511,17.23264122009283],[104.42724609375017,17.2260799407959],[104.42138671875006,17.220260620117188],[104.40892028808611,17.198642730712947],[104.40706634521484,17.19031906127941],[104.39685821533232,17.181781768798828],[104.39382934570307,17.176330566406193],[104.39279937744163,17.16603279113781],[104.39372253417974,17.152061462402457],[104.39128875732428,17.145469665527344],[104.39470672607445,17.141349792480526],[104.402603149414,17.13772964477539],[104.4029159545899,17.13331985473627],[104.39006042480486,17.122369766235465],[104.38738250732439,17.112808227539006],[104.38146209716814,17.104740142822266],[104.37644195556669,17.101449966430664],[104.36959075927746,17.10387039184576],[104.36406707763683,17.094440460205078],[104.36454010009771,17.087980270385685],[104.3619766235351,17.074840545654354],[104.36425781250011,17.072011947631836],[104.35466003417974,17.066459655761662],[104.35475921630876,17.059328079223633],[104.35977935791021,17.055959701538086],[104.36396026611328,17.062461853027287],[104.36705017089866,17.05409049987793],[104.38011932373064,17.045289993286246],[104.38762664794928,17.0429306030274],[104.3896026611331,17.033239364623967],[104.39893341064482,17.033840179443416],[104.40043640136724,17.020729064941406],[104.391830444336,17.013740539550838],[104.38089752197283,17.013521194458008],[104.37384033203142,17.006790161132812],[104.36429595947283,17.005821228027287],[104.35977935791021,17.004009246826115],[104.3578720092774,17.000160217285156],[104.35655212402366,16.986909866333065],[104.35398864746111,16.98274040222168],[104.3467788696289,16.98229026794445],[104.33856201171892,16.978691101074332],[104.3337707519533,16.97346115112316],[104.32704162597685,16.975080490112305],[104.31960296630888,16.97227096557623],[104.32263946533232,16.9652099609375],[104.31729125976568,16.956060409545955],[104.30538177490234,16.92685127258312],[104.30352783203148,16.924850463867244],[104.28930664062494,16.92640113830572],[104.28469848632841,16.923719406128043],[104.27101898193376,16.91907119750988],[104.2552261352539,16.904830932617244],[104.2469100952149,16.899110794067383],[104.24706268310553,16.892419815063477],[104.24079895019537,16.889799118041935],[104.22988891601568,16.890600204467773],[104.22161865234392,16.889150619506893],[104.2169723510745,16.886341094970703],[104.20941925048845,16.873399734497127],[104.19644927978533,16.874570846557617],[104.18775939941429,16.88037109375],[104.18321990966825,16.880870819091854],[104.17833709716814,16.884479522705078],[104.16261291503935,16.887388229370117],[104.15954589843756,16.886278152465763],[104.1478500366211,16.886421203613224],[104.13759613037132,16.885177612304744],[104.1287231445312,16.88574028015148],[104.12313842773466,16.879421234130973],[104.12584686279291,16.874660491943473],[104.12679290771496,16.85785293579113],[104.12107086181652,16.849840164184513],[104.10929107666033,16.835859298706055],[104.09526824951178,16.82755088806158],[104.0795059204101,16.823040008544922],[104.07324218750017,16.819898605346737],[104.06799316406256,16.835189819335994],[104.05944824218778,16.83753013610834],[104.05751800537138,16.84072113037115],[104.05191802978516,16.840759277343807],[104.04926300048834,16.84616279602062],[104.04451751709007,16.84404945373541],[104.04238891601568,16.838691711425895],[104.03407287597685,16.844129562377987],[104.0349960327149,16.85182189941412],[104.02980041503912,16.855619430542106],[104.02417755126964,16.855791091918945],[104.01750946044916,16.849317550659293],[104.01358032226562,16.847820281982422],[104.01116943359403,16.842720031738395],[104.00348663330084,16.8404598236084],[103.99919891357416,16.83473014831543],[103.98905181884794,16.833209991455135],[103.98284149169939,16.83492088317871],[103.98049163818371,16.82855033874523],[103.98034667968767,16.82092094421398],[103.97738647460943,16.814939498901424],[103.97196960449236,16.80932044982916],[103.96463775634794,16.817310333251953],[103.96208953857428,16.822261810302734],[103.95836639404308,16.817251205444393],[103.95581054687506,16.805860519409293],[103.9566192626956,16.797840118408203],[103.95140838623053,16.784868240356445],[103.95561218261724,16.77898979187006],[103.95352172851568,16.774820327758846],[103.94419097900413,16.77069091796875],[103.9393386840822,16.774190902710075],[103.93885803222662,16.780042648315487],[103.93453979492182,16.783979415893555],[103.92987823486351,16.78428077697754],[103.92524719238281,16.787229537963867],[103.92160797119158,16.79527091979986],[103.90307617187494,16.80247116088873],[103.89517211914085,16.807859420776424],[103.89147186279314,16.8130207061767],[103.88474273681652,16.81406021118164],[103.88085937500023,16.817911148071346],[103.87489318847656,16.818321228027287],[103.87516021728521,16.825899124145565],[103.87061309814482,16.831260681152457],[103.86550140380854,16.831310272216854],[103.86122131347679,16.834640502929744],[103.8465423583985,16.838979721069393],[103.84250640869146,16.846031188964844],[103.83879089355463,16.847940444946232],[103.84052276611322,16.858360290527457],[103.83986663818365,16.865081787109375],[103.8349227905274,16.86708068847662],[103.82778930664062,16.865520477294865],[103.8221130371096,16.874799728393555],[103.8140029907226,16.874790191650447],[103.80918884277372,16.88101959228527],[103.80906677246111,16.884531021118278],[103.8030624389649,16.883560180664006],[103.79187774658197,16.88766860961914],[103.7945861816408,16.896041870117244],[103.79100799560553,16.904069900512695],[103.786148071289,16.90566062927246],[103.782958984375,16.91563034057623],[103.78201293945312,16.922138214111442],[103.77310180664085,16.92197990417492],[103.77649688720703,16.926889419555607],[103.78262329101568,16.930719375610295],[103.78238677978516,16.934698104858455],[103.79142761230474,16.938802719116325],[103.78679656982422,16.942590713500977],[103.78518676757824,16.957149505615234],[103.77300262451166,16.96550941467291],[103.7641296386721,16.9625301361084],[103.7569732666015,16.96969985961914],[103.75299835205095,16.971878051757812],[103.7452926635745,16.970077514648494],[103.74498748779314,16.97691917419445],[103.74112701416027,16.985691070556584],[103.73628234863304,16.987390518188477],[103.72872924804699,16.980270385742188],[103.72603607177763,16.97986030578619],[103.72347259521484,16.98846054077154],[103.72860717773438,16.99588012695324],[103.73232269287138,16.99854850769043],[103.73163604736345,17.004261016845703],[103.72679901123075,17.01250076293951],[103.72387695312506,17.01460075378418],[103.71502685546892,17.016059875488395],[103.7080688476563,17.019971847534237],[103.70430755615246,17.025609970092717],[103.6969909667971,17.031719207763672],[103.69278717041021,17.031652450561637],[103.68756103515642,17.026630401611385],[103.68202972412126,17.0298309326173],[103.6741485595706,17.021701812744254],[103.66461181640653,17.01748085021984],[103.66063690185558,17.026359558105582],[103.66216278076183,17.03099060058588],[103.66364288330084,17.04387092590332],[103.667221069336,17.050872802734375],[103.66384124755888,17.063190460205078],[103.6601333618164,17.067131042480526],[103.65730285644537,17.073770523071232],[103.6578598022461,17.076860427856445],[103.66388702392572,17.086521148681697],[103.66918182373075,17.10436058044445],[103.65738677978527,17.113910675048828],[103.64714050292986,17.113460540771598],[103.63957977294945,17.110929489135742],[103.63844299316429,17.119390487671012],[103.62940979003923,17.135139465331974],[103.62564086914068,17.139181137085018],[103.62357330322271,17.146051406860295],[103.62049865722662,17.148740768432674],[103.61535644531273,17.148412704467887],[103.61203002929705,17.15516853332531],[103.60694885253912,17.158109664917106],[103.6010360717774,17.16739082336437],[103.59423065185575,17.170301437377987],[103.58364868164062,17.159879684448185],[103.57408905029314,17.155460357666016],[103.55950164794928,17.164329528808594],[103.557426452637,17.168540954589844],[103.54791259765636,17.172250747680664],[103.54413604736345,17.17625999450695],[103.53437805175776,17.182308197021598],[103.52262115478516,17.19125938415533],[103.51416015624994,17.19519996643072],[103.50109100341803,17.20437049865734],[103.49079132080084,17.208539962768555],[103.47682189941423,17.21598052978527],[103.47451019287126,17.218231201171932],[103.47390747070324,17.225719451904354],[103.47029876708979,17.2252197265625],[103.46537780761736,17.216110229492244],[103.46170043945324,17.21578025817871],[103.45356750488281,17.210830688476676],[103.44921112060553,17.215660095214844],[103.44069671630888,17.21153068542492],[103.43282318115257,17.214910507202205],[103.43235015869135,17.218389511108512],[103.42545318603527,17.217971801757812],[103.4197998046875,17.210880279541072],[103.40666961669928,17.21860122680664],[103.40360260009766,17.219152450561637],[103.39489746093756,17.225280761718807],[103.38803100585943,17.228691101074276],[103.3816986083985,17.229101181030387],[103.3799667358399,17.234058380126953],[103.37191772460955,17.235280990600586],[103.36808013916033,17.23307991027832],[103.36363220214872,17.234340667724666],[103.36057281494169,17.240491867065487],[103.35450744628918,17.24333953857422],[103.35716247558622,17.248180389404297],[103.35308074951178,17.253520965576172],[103.34010314941412,17.253961563110465],[103.33454895019531,17.25875282287609],[103.32248687744135,17.26260948181158],[103.31884002685558,17.26180076599121],[103.30829620361334,17.268249511718864],[103.29244232177757,17.266160964965934],[103.28816223144548,17.26915931701666],[103.28572845458984,17.264970779419002],[103.2760620117188,17.271289825439453],[103.27423858642595,17.279689788818416],[103.26776123046892,17.285079956054688],[103.26364898681663,17.29144096374523],[103.25930023193388,17.302240371704215],[103.25959014892578,17.3075408935548],[103.25453186035185,17.309539794921932],[103.25556945800798,17.316080093383846],[103.25940704345703,17.325048446655217],[103.26877593994146,17.326730728149414],[103.27498626708979,17.340599060058594],[103.27497863769526,17.347471237182674],[103.27754211425787,17.35177993774414],[103.28472137451166,17.358650207519645],[103.28572082519531,17.36677932739252],[103.29061126708996,17.369859695434627],[103.2998275756836,17.38636970520014],[103.30425262451178,17.388458251953125],[103.30220031738287,17.39463996887207],[103.29840850830107,17.395740509033317],[103.29473876953148,17.40252113342291],[103.2911987304687,17.405250549316406],[103.28513336181658,17.41650009155279],[103.28533935546875,17.42246055603033],[103.28340911865251,17.429861068725643],[103.27870941162132,17.43400192260748],[103.27803039550776,17.44293022155756],[103.2823410034182,17.44688987731945],[103.28431701660168,17.456291198730582],[103.29223632812506,17.46611976623535],[103.28993988037115,17.46818923950201],[103.29038238525419,17.474300384521598],[103.28790283203153,17.47965049743658],[103.29213714599621,17.48496818542486],[103.29039001464872,17.488357543945426],[103.29131317138678,17.49770164489746],[103.30252075195312,17.502990722656307],[103.30416107177729,17.509420394897518],[103.31565856933594,17.517591476440487],[103.31867980957048,17.522190093994254],[103.31799316406256,17.527790069580078],[103.32174682617205,17.53720855712885],[103.32061004638689,17.54124069213873],[103.32575988769548,17.551851272583065],[103.32971954345697,17.547452926635685],[103.3341217041015,17.554790496826286],[103.33722686767578,17.555950164795036],[103.3425903320313,17.569231033325252],[103.33967590332048,17.570631027221737],[103.34288787841791,17.575889587402457],[103.34860992431635,17.578659057617188],[103.35251617431646,17.584720611572322],[103.36213684082043,17.589000701904297],[103.37062835693365,17.58335113525385],[103.3746871948245,17.578269958496094],[103.37931823730463,17.578069686889705],[103.37805938720709,17.589670181274528],[103.38329315185575,17.587591171264705],[103.38677215576189,17.591510772705078],[103.3984603881836,17.593080520629996],[103.40524291992199,17.589281082153434],[103.41088867187523,17.593420028686467],[103.41069030761724,17.598180770873967],[103.40093994140625,17.60807991027832],[103.39974212646501,17.61478042602539],[103.40241241455095,17.617940902710018],[103.40049743652338,17.62330245971691],[103.40500640869146,17.630790710449276],[103.40325927734398,17.63841819763195],[103.40065002441435,17.641178131103572],[103.40128326416033,17.648611068725586],[103.40918731689459,17.665910720825252],[103.40657043457043,17.671451568603516],[103.40744018554693,17.675239562988395],[103.40380859375006,17.684640884399528],[103.408256530762,17.692228317260685],[103.40547943115251,17.698009490966854],[103.40882110595709,17.700300216674805],[103.40863800048857,17.708641052246207],[103.40402984619163,17.715360641479492],[103.40924072265636,17.71882820129389],[103.40779113769531,17.721830368041992],[103.41259002685553,17.727832794189396],[103.40886688232433,17.742740631103516],[103.40294647216808,17.756069183349553],[103.39936828613298,17.75304985046398],[103.3952560424807,17.75375938415533],[103.3895111083985,17.75028038024908],[103.38582611084001,17.75213050842291],[103.38069915771484,17.759130477905387],[103.38044738769543,17.764299392700252],[103.38336944580078,17.767290115356445],[103.37928009033232,17.77305030822754],[103.3719482421875,17.776979446411246],[103.371109008789,17.79200172424322],[103.37496948242205,17.790849685669002],[103.38062286376982,17.793840408325195],[103.37689971923828,17.799829483032283],[103.38389587402338,17.80918121337885],[103.3856277465822,17.817541122436467],[103.39090728759794,17.82069015502941],[103.39231109619158,17.829170227050895],[103.38371276855463,17.83522033691412],[103.38844299316435,17.840789794921932],[103.39736938476568,17.841220855712947],[103.40103149414091,17.839130401611385],[103.3980102539062,17.832620620727596],[103.40361022949219,17.829389572143555],[103.4064102172851,17.834571838378906],[103.4175872802735,17.83279037475586],[103.42088317871105,17.83798980712885],[103.408432006836,17.847509384155273],[103.40085601806652,17.844530105590763],[103.39727020263689,17.853141784668026],[103.4000167846682,17.855491638183707],[103.40902709960966,17.856781005859432],[103.40651702880865,17.867439270019588],[103.40849304199213,17.875770568847656],[103.41996765136736,17.878078460693416],[103.41403198242182,17.893302917480412],[103.4164428710938,17.895719528198356],[103.4096908569336,17.902799606323185],[103.40276336669933,17.90266990661621],[103.4001693725586,17.907102584838924],[103.40335083007807,17.913570404052848],[103.40235900878935,17.921699523925895],[103.39737701416021,17.923429489135742],[103.39859008789057,17.927118301391545],[103.40676879882824,17.927190780639762],[103.41458892822277,17.929290771484432],[103.4159927368164,17.93147087097168],[103.41075897216825,17.948411941528377],[103.40264129638672,17.955280303955135],[103.3959121704101,17.95446968078619],[103.39144134521507,17.95677185058605],[103.39109039306669,17.967140197753906],[103.39437866210932,17.976360321044865],[103.38989257812506,17.979160308837947],[103.3933868408206,17.98393058776861],[103.4013290405274,17.979650497436467],[103.40622711181658,17.989049911499023],[103.41056060791044,17.990570068359318],[103.41266632080107,17.98478126525879],[103.42471313476557,17.981330871582088],[103.4303588867188,17.98156929016119],[103.42988586425798,17.97430992126459],[103.44262695312511,17.97287178039562],[103.44214630126959,17.967622756958065],[103.44898986816406,17.96517944335949],[103.45327758789091,17.970319747924748],[103.44618988037115,17.978099822998047],[103.44138336181646,17.98147010803217],[103.44641876220732,17.988531112670955],[103.45130920410162,17.992670059204215],[103.45675659179682,17.98941040039074],[103.4652709960938,17.986909866333065],[103.4694213867188,17.989299774170036],[103.47186279296892,17.998399734497184],[103.47743225097662,18.003730773925724],[103.48120117187517,18.001060485839787],[103.48491668701178,17.995380401611385],[103.49153137207031,17.99053001403803],[103.49510955810564,17.98611831665039],[103.5000991821289,17.988590240478516],[103.4982299804688,17.99266052246105],[103.5014419555664,17.99629020690918],[103.5065307617187,17.997810363769645],[103.50520324707026,18.0047607421875],[103.50228881835966,18.007310867309627],[103.50148010253912,18.01317024230957],[103.49765014648443,18.01654052734375],[103.50122070312517,18.021232604980582],[103.49938964843773,18.03252029418951],[103.49637603759794,18.035690307617244],[103.49677276611357,18.040889739990234],[103.5005493164063,18.04575157165533],[103.49707794189459,18.050649642944336],[103.4964675903322,18.05924987792963],[103.50032043457037,18.062379837036133],[103.50865173339861,18.061582565307674],[103.50720214843756,18.065380096435604],[103.50982666015625,18.06989097595215],[103.51786041259766,18.073650360107365],[103.52239227294939,18.07049179077154],[103.52877044677757,18.068941116333065],[103.54016876220703,18.069061279296932],[103.53845977783203,18.073682785034123],[103.54051971435564,18.07887077331543],[103.5398712158206,18.083328247070312],[103.54235076904325,18.088060379028434],[103.54621887207026,18.0867595672608],[103.54659271240229,18.08048057556158],[103.54886627197277,18.075399398803654],[103.54212188720726,18.07191085815441],[103.545219421387,18.064519882202262],[103.55326843261713,18.06101036071783],[103.5629272460938,18.060880661010856],[103.5693359375,18.053100585937614],[103.57869720458984,18.047370910644645],[103.58013916015636,18.039930343627873],[103.58708953857422,18.036649703979606],[103.5910720825197,18.037149429321403],[103.5910110473634,18.045709609985465],[103.59507751464861,18.049339294433594],[103.59825897216808,18.048770904541072],[103.59774017334001,18.042881011963004],[103.60929870605497,18.033781051635856],[103.61142730712902,18.016830444335994],[103.61469268798822,18.01194000244135],[103.6261978149414,18.01172065734869],[103.63568115234392,18.014141082763615],[103.64375305175787,18.01209831237793],[103.6367874145509,18.003980636596737],[103.62869262695318,18.004751205444393],[103.62425994873064,18.000120162963867],[103.6259994506836,17.99151039123541],[103.6250076293947,17.98719978332514],[103.6286010742187,17.98085975646984],[103.6265029907226,17.971500396728572],[103.63107299804699,17.968339920043945],[103.63369750976568,17.973281860351562],[103.64132690429693,17.9744491577149],[103.64544677734375,17.961009979248104],[103.65484619140648,17.96125030517578],[103.65853118896496,17.96441078186041],[103.65985870361357,17.969650268554688],[103.6646270751956,17.971731185913143],[103.66837310791021,17.969261169433594],[103.67011260986334,17.963132858276367],[103.66420745849615,17.954540252685604],[103.6637802124024,17.949600219726562],[103.67330169677734,17.94701957702648],[103.68579864501982,17.953899383544922],[103.70050048828136,17.946950912475643],[103.7074890136721,17.941390991210938],[103.709213256836,17.936429977416992],[103.71573638916044,17.93988037109375],[103.7203521728515,17.93768119812023],[103.72164154052763,17.92919921875],[103.72576141357422,17.922870635986385],[103.73082733154308,17.922140121460018],[103.74308013916033,17.91644287109375],[103.74913024902355,17.908540725708065],[103.75621032714838,17.913850784301815],[103.75544738769526,17.918670654296818],[103.7521514892581,17.92315101623535],[103.75614929199224,17.92919921875],[103.76113891601591,17.94559288024908],[103.7646484375,17.951469421386662],[103.7687377929688,17.951942443847713],[103.76847839355469,17.94292068481451],[103.7662277221682,17.936559677123967],[103.76069641113304,17.92821121215826],[103.75961303710966,17.922439575195426],[103.76082611084001,17.917728424072322],[103.7643432617188,17.916730880737305],[103.77217864990263,17.920711517333984],[103.78222656250006,17.92939949035639],[103.78639221191406,17.92728996276861],[103.78594970703136,17.92358970642084],[103.78012847900396,17.914310455322322],[103.77820587158203,17.9055500030517],[103.78852844238287,17.892879486083984],[103.79000854492205,17.889150619506893],[103.78639221191406,17.886260986328125],[103.77935028076172,17.888591766357536],[103.7708892822265,17.888521194458065],[103.76766967773455,17.883369445800895],[103.76860046386713,17.87945938110363],[103.77617645263678,17.870279312133732],[103.77892303466814,17.861169815063477],[103.7817764282226,17.858238220214844],[103.78933715820318,17.855800628662223],[103.79083251953148,17.848070144653377],[103.7969589233399,17.84066963195812],[103.80043029785185,17.840070724487305],[103.80423736572294,17.844600677490234],[103.81076049804682,17.84780120849615],[103.81456756591791,17.856010437011776],[103.80789184570307,17.859361648559684],[103.80204010009766,17.866380691528377],[103.79792022705084,17.8685302734375],[103.79772186279303,17.873542785644588],[103.80246734619163,17.874828338623104],[103.80722045898443,17.871229171752987],[103.8144302368164,17.869182586669865],[103.837890625,17.86779022216797],[103.84522247314459,17.871591567993278],[103.85147857666021,17.879409790039062],[103.85820007324247,17.881202697753963],[103.86966705322294,17.878290176391545],[103.87140655517572,17.87535095214855],[103.86624145507824,17.864719390869197],[103.87254333496105,17.863309860229435],[103.87516021728521,17.87132263183605],[103.8775863647461,17.873449325561523],[103.88877868652338,17.87700080871582],[103.9074783325197,17.87894058227539],[103.90982055664062,17.875400543212947],[103.903617858887,17.867990493774357],[103.90483093261736,17.860481262207145],[103.90290069580095,17.84855079650879],[103.91494750976562,17.850740432739315],[103.91706848144531,17.856178283691406],[103.92117309570324,17.856939315795955],[103.92561340332048,17.853019714355582],[103.92389678955095,17.849950790405217],[103.92466735839861,17.843679428100586],[103.92793273925781,17.83284187316906],[103.9197616577149,17.81702995300293],[103.92370605468767,17.812480926513786],[103.92881774902338,17.81159973144537],[103.93660736084013,17.803489685058594],[103.94280242919922,17.79204940795904],[103.94074249267584,17.787231445312614],[103.9441986083985,17.781490325927734],[103.95359039306669,17.777509689331055],[103.95726776123064,17.77301025390625],[103.96311950683622,17.772718429565373],[103.96718597412126,17.778921127319393],[103.9722518920899,17.781509399414176],[103.9749298095706,17.772848129272575],[103.9816970825197,17.767169952392578],[103.98306274414062,17.773059844970703],[103.98914337158203,17.7777996063233],[103.98928070068354,17.784370422363395],[103.9929504394533,17.786991119384766],[104.00180053710943,17.78559112548828],[104.00295257568365,17.791219711303654],[104.00126647949247,17.799640655517635],[104.00340270996088,17.805700302123967],[104.00810241699224,17.807409286499137],[104.01936340332037,17.80808830261236]]]},"properties":{"ID_0":228,"ISO":"TH-47","NAME_0":"Thailand","ID_1":56,"NAME_1":"Sakon Nakhon","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สกลนคร","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.86199188232416,13.696111679077262],[100.879692077637,13.688360214233398],[100.93474578857428,13.668770790100098],[100.94036865234386,13.667830467224178],[100.95278930664057,13.663632392883414],[100.95700073242205,13.661161422729549],[100.94960021972656,13.654899597168026],[100.94941711425781,13.651219367981014],[100.95603942871088,13.6449613571167],[100.96398925781278,13.642280578613338],[100.96108245849615,13.631328582763729],[100.95136260986351,13.6242094039917],[100.94509124755865,13.618391036987362],[100.93331146240246,13.604180335998592],[100.9243774414062,13.592281341552848],[100.91925811767595,13.593311309814453],[100.91079711914091,13.591460227966309],[100.90811157226591,13.588390350341797],[100.90841674804688,13.579859733581657],[100.91510772705084,13.576411247253475],[100.91645812988304,13.57040119171154],[100.90674591064459,13.555391311645565],[100.90438842773438,13.553760528564567],[100.89594268798822,13.56050109863287],[100.8872680664063,13.55497074127203],[100.88495635986328,13.549991607665959],[100.88133239746094,13.547458648681754],[100.87361907958996,13.522760391235408],[100.87496948242182,13.51946926116949],[100.87287902832026,13.510689735412598],[100.87377166748075,13.50444126129156],[100.87348175048845,13.491491317749023],[100.87104034423834,13.487969398498535],[100.867416381836,13.488641738891658],[100.85430145263678,13.494530677795467],[100.85292053222662,13.493730545043945],[100.85008239746116,13.478610992431754],[100.84749603271479,13.480560302734432],[100.83361053466814,13.481389999389648],[100.8113861083985,13.490280151367244],[100.80472564697294,13.487777709960938],[100.79305267334007,13.492780685424918],[100.77889251708984,13.493330001831168],[100.76860809326172,13.495281219482422],[100.75860595703136,13.495002746582031],[100.75250244140636,13.498332977294922],[100.74944305419933,13.497778892517204],[100.73332977294928,13.49972057342535],[100.7244415283206,13.501944541931266],[100.71778106689464,13.50111103057867],[100.70417022705101,13.505001068115234],[100.69194793701178,13.506111145019588],[100.6819458007812,13.506109237671012],[100.66805267334001,13.5105562210083],[100.66139221191406,13.513890266418514],[100.6512527465822,13.516800880432186],[100.6392822265625,13.517971992492619],[100.63253784179682,13.520021438598633],[100.6250762939456,13.524370193481388],[100.62091827392572,13.53017425537115],[100.61083221435564,13.539450645446834],[100.59583282470726,13.549722671508903],[100.58389282226574,13.553610801696834],[100.57917022705095,13.558889389038143],[100.57833099365263,13.568889617919922],[100.58139038085966,13.573610305786133],[100.59027862548834,13.582222938537654],[100.5952758789063,13.591389656066838],[100.5961074829101,13.601387977600211],[100.5941696166995,13.606940269470215],[100.58999633789074,13.610833168029842],[100.58194732666044,13.613891601562557],[100.56526947021484,13.61361122131359],[100.5583801269533,13.615493774414006],[100.5577774047851,13.611666679382381],[100.56276702880876,13.609721183776855],[100.5855560302735,13.607501029968319],[100.58914947509771,13.603891372680778],[100.58999633789074,13.596110343933049],[100.57917022705095,13.581945419311523],[100.57499694824219,13.574166297912598],[100.57332611084007,13.565279960632324],[100.57472229003935,13.557221412658691],[100.58110809326172,13.548320770263672],[100.58805847167997,13.532220840454102],[100.58499908447294,13.525830268859863],[100.57250213623064,13.514442443847656],[100.54750061035173,13.511670112609806],[100.53305816650396,13.50805473327648],[100.52944183349615,13.509443283081055],[100.52305603027338,13.506671905517692],[100.51667022705084,13.506945610046444],[100.50222015380888,13.505832672119197],[100.49277496337908,13.503333091735783],[100.48833465576183,13.50083255767828],[100.48472595214838,13.503060340881348],[100.47778320312506,13.50167179107666],[100.465835571289,13.502498626708928],[100.45999908447266,13.498888969421387],[100.45777893066435,13.501944541931266],[100.45324707031244,13.50158500671381],[100.45275878906256,13.510531425476074],[100.44937896728521,13.527351379394645],[100.4452514648437,13.554929733276424],[100.44790649414057,13.586150169372559],[100.452377319336,13.594429969787654],[100.45553588867182,13.60426044464117],[100.46466827392607,13.60477066040039],[100.46801757812506,13.60281085968029],[100.46936035156256,13.593890190124512],[100.47451782226568,13.594120025634822],[100.47531890869146,13.598739624023438],[100.48194122314459,13.60704135894781],[100.501953125,13.602361679077148],[100.5058975219726,13.60365200042719],[100.5123901367187,13.60099029541027],[100.52159881591797,13.604359626769963],[100.51770019531261,13.61259937286377],[100.5159301757813,13.628541946411133],[100.51785278320318,13.635760307312125],[100.51934814453148,13.647990226745549],[100.51856994628912,13.650930404663029],[100.51928710937517,13.664779663085938],[100.51885223388683,13.673019409179744],[100.5227279663086,13.678640365600586],[100.53026580810575,13.671681404113883],[100.53624725341814,13.668440818786678],[100.54550933837896,13.669310569763184],[100.55075836181658,13.674460411071777],[100.55345153808594,13.681720733642635],[100.55236053466803,13.69735145568859],[100.5554809570312,13.704240798950138],[100.56150054931663,13.705841064453182],[100.56947326660156,13.703440666198787],[100.58257293701166,13.697422027587834],[100.589111328125,13.691069602966309],[100.59046173095703,13.686101913452205],[100.58851623535173,13.678150177001896],[100.58106994628923,13.667209625244197],[100.5937118530274,13.663000106811523],[100.60523223876982,13.66123199462902],[100.62922668457037,13.655110359191838],[100.64897918701189,13.650920867919922],[100.6551361083985,13.66874980926525],[100.66396331787138,13.670290946960563],[100.66747283935564,13.674521446228084],[100.67032623291033,13.671150207519645],[100.66857910156261,13.665261268615836],[100.6855087280274,13.657759666442928],[100.69985198974621,13.654790878295898],[100.700912475586,13.661931037902946],[100.70609283447271,13.67212104797369],[100.70796203613287,13.680800437927303],[100.71321868896479,13.694181442260856],[100.71383666992205,13.701661109924373],[100.71121978759771,13.717001914978027],[100.7217559814456,13.717869758605957],[100.74890136718744,13.71533107757574],[100.77587890625006,13.714980125427303],[100.78942108154303,13.715261459350586],[100.80995941162126,13.70818042755127],[100.8249893188476,13.702361106872615],[100.84414672851568,13.695731163025016],[100.86019134521507,13.688350677490291],[100.86199188232416,13.696111679077262]]]},"properties":{"ID_0":228,"ISO":"TH-11","NAME_0":"Thailand","ID_1":57,"NAME_1":"Samut Prakan","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สมุทรปราการ","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.40859222412138,13.493056297302246],[100.39333343505888,13.490555763244743],[100.38999938964844,13.49222183227539],[100.38305664062494,13.491109848022461],[100.3797225952149,13.488887786865291],[100.36805725097656,13.48917102813715],[100.36389160156256,13.487219810485897],[100.35500335693371,13.48639011383051],[100.32943725585966,13.48639011383051],[100.3130569458009,13.490555763244743],[100.29360961914057,13.498888969421387],[100.2811126708985,13.506667137146053],[100.27471923828136,13.517778396606502],[100.26721954345709,13.526389122009391],[100.26555633544933,13.520832061767578],[100.27166748046886,13.514721870422306],[100.27527618408214,13.506109237671012],[100.27222442626964,13.498332977294922],[100.27139282226585,13.492500305175781],[100.26750183105486,13.485829353332576],[100.2549972534182,13.476667404174805],[100.23777770996094,13.472221374511832],[100.2249984741211,13.469722747802734],[100.2230529785158,13.466390609741268],[100.21111297607428,13.465000152587947],[100.20249938964844,13.46111202239996],[100.1963882446289,13.46111202239996],[100.17804718017595,13.454721450805778],[100.14888763427734,13.447501182556152],[100.1255569458009,13.440280914306754],[100.11083221435575,13.434721946716309],[100.1002807617188,13.43194389343273],[100.09471893310547,13.429444313049373],[100.07963562011736,13.424913406372127],[100.07914733886741,13.43566989898676],[100.07363128662115,13.456530570983887],[100.06305694580078,13.470801353454647],[100.05603027343756,13.482590675353947],[100.04934692382812,13.491690635681096],[100.04390716552763,13.49707889556879],[100.04286956787115,13.501640319824162],[100.03044891357422,13.506609916687125],[100.02861785888678,13.518260955810604],[100.03238677978521,13.52079963684082],[100.03048706054693,13.526830673217773],[100.03322601318388,13.530521392822209],[100.04128265380876,13.534750938415641],[100.04435729980486,13.538579940795842],[100.04466247558622,13.552908897399846],[100.04059600830084,13.56312179565441],[100.03755187988304,13.578431129455623],[100.0394287109375,13.59081077575695],[100.04310607910162,13.594990730285758],[100.03845977783203,13.603860855102653],[100.03246307373075,13.610549926757756],[100.04022216796898,13.611751556396598],[100.05480957031244,13.617712020874137],[100.0544509887697,13.627310752868596],[100.05812835693365,13.630839347839299],[100.06507110595732,13.630411148071403],[100.07009124755876,13.637100219726562],[100.07025146484386,13.643841743469181],[100.0672607421875,13.649799346923828],[100.07227325439476,13.651880264282283],[100.07958221435558,13.649400711059627],[100.09487152099604,13.64675045013422],[100.10109710693365,13.647319793701172],[100.11289215087913,13.653979301452637],[100.1224899291995,13.665081024169979],[100.1260833740235,13.67186164855957],[100.1346282958985,13.6808500289917],[100.14433288574219,13.683201789855957],[100.15653991699219,13.683271408081112],[100.16622161865251,13.687500953674316],[100.17076110839855,13.682588577270565],[100.1755676269533,13.680721282959041],[100.17781829833996,13.687919616699276],[100.18128967285173,13.688360214233398],[100.1865921020509,13.679409980773983],[100.19938659667963,13.680280685424918],[100.21501922607433,13.684539794921818],[100.2227706909182,13.678991317749023],[100.22667694091814,13.668711662292537],[100.24349212646484,13.677429199218807],[100.24472808837919,13.674441337585506],[100.26058197021513,13.683850288391227],[100.26635742187517,13.680710792541618],[100.27584838867199,13.685441017150936],[100.27906036376982,13.69186115264904],[100.28396606445318,13.692441940307674],[100.28466796875017,13.701470375061092],[100.28708648681669,13.709971427917594],[100.29683685302746,13.715350151062012],[100.31227874755871,13.719520568847656],[100.31806945800781,13.719330787658691],[100.32451629638666,13.721899986267033],[100.32396697998064,13.726711273193416],[100.33209228515653,13.732739448547306],[100.33566284179693,13.728451728820858],[100.33534240722685,13.713971138000545],[100.33161926269531,13.712101936340446],[100.33132171630888,13.699408531188908],[100.33460998535168,13.68069076538086],[100.33930206298851,13.674210548400936],[100.34246826171892,13.659930229187069],[100.33991241455107,13.650360107421989],[100.33930206298851,13.642090797424316],[100.34168243408197,13.638011932373104],[100.34974670410156,13.64000129699707],[100.3562622070313,13.639261245727539],[100.36044311523443,13.634490966796932],[100.37097167968756,13.628609657287654],[100.377426147461,13.61808967590332],[100.37954711914085,13.607919692993107],[100.3795928955081,13.593311309814453],[100.38700866699224,13.583959579467887],[100.39108276367182,13.569861412048454],[100.3921661376956,13.561570167541504],[100.3973007202149,13.55610179901123],[100.41757965087885,13.56163120269781],[100.41548919677729,13.549921035766715],[100.42009735107439,13.545821189880485],[100.4197616577149,13.539901733398494],[100.41384887695318,13.535869598388615],[100.41230010986328,13.525330543518066],[100.40762329101591,13.517740249633789],[100.40515899658232,13.510820388794059],[100.40650177001964,13.503091812133846],[100.40580749511719,13.49564075469965],[100.40859222412138,13.493056297302246]]]},"properties":{"ID_0":228,"ISO":"TH-74","NAME_0":"Thailand","ID_1":58,"NAME_1":"Samut Sakhon","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สมุทรสาคร","VARNAME_1":"Samudrasagara"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.03044891357422,13.506609916687125],[100.04286956787115,13.501640319824162],[100.04390716552763,13.49707889556879],[100.04934692382812,13.491690635681096],[100.05603027343756,13.482590675353947],[100.06305694580078,13.470801353454647],[100.07363128662115,13.456530570983887],[100.07914733886741,13.43566989898676],[100.07963562011736,13.424913406372127],[100.0674972534182,13.420832633972111],[100.05777740478538,13.416119575500431],[100.04777526855486,13.405555725097656],[100.04000091552734,13.393891334533635],[100.03888702392601,13.381943702697754],[100.0344467163086,13.371110916137752],[100.02278137207048,13.36139106750494],[100.01168060302746,13.365281105041447],[99.9991683959961,13.367781639099121],[99.99555206298828,13.374070167541504],[99.98977661132807,13.380010604858455],[99.99392700195341,13.365333557128963],[100.00000000000006,13.358610153198299],[100.0022201538086,13.353334426879883],[99.9972229003908,13.345555305480957],[99.9994430541995,13.333332061767578],[99.99610900878906,13.32944393157959],[99.98889160156256,13.326944351196403],[99.98472595214866,13.322221755981445],[99.97666931152344,13.316110610961914],[99.9669418334961,13.311944961547852],[99.95805358886747,13.3066663742066],[99.95527648925798,13.303334236145133],[99.95305633544945,13.295410156250114],[99.94328308105469,13.294269561767578],[99.93852233886719,13.292110443115178],[99.93554687500028,13.284210205078125],[99.9264373779298,13.279879570007267],[99.91925048828125,13.284070968627987],[99.91356658935553,13.281169891357479],[99.90119934082037,13.2858505249024],[99.89653015136736,13.286071777343864],[99.8945770263673,13.282271385192814],[99.89779663085966,13.275940895080623],[99.89421081542963,13.264261245727539],[99.88951873779303,13.263721466064453],[99.88285064697271,13.258731842040959],[99.88622283935564,13.252269744873047],[99.88503265380871,13.245590209960994],[99.87773132324241,13.250371932983512],[99.8694915771485,13.246811866760368],[99.86013793945312,13.2449111938476],[99.85849761962919,13.255460739135799],[99.85855102539057,13.268650054931584],[99.85546112060575,13.280851364135856],[99.85343170166033,13.30712890625],[99.85659027099638,13.319479942321777],[99.85732269287132,13.327820777893123],[99.86009216308611,13.336421012878475],[99.86405181884777,13.355971336364803],[99.86785888671903,13.36629962921154],[99.86746978759794,13.374531745910588],[99.87362670898455,13.387350082397461],[99.88020324707054,13.40570163726818],[99.88661956787126,13.420251846313477],[99.8913879394533,13.429269790649414],[99.89212036132807,13.440410614013729],[99.89106750488304,13.44286060333252],[99.8910827636721,13.456850051879826],[99.89389038085938,13.463430404663029],[99.89247894287121,13.469061851501465],[99.8974685668947,13.47375202178955],[99.90009307861357,13.483110427856502],[99.90393066406261,13.488179206848258],[99.91259002685547,13.493651390075684],[99.91722869873053,13.498510360717887],[99.92141723632818,13.499900817871207],[99.9150619506836,13.510271072387638],[99.92594146728516,13.51358890533453],[99.93718719482422,13.498870849609432],[99.9476928710938,13.496391296386776],[99.95510864257812,13.497529983520508],[99.96240234375023,13.495791435241642],[99.96582794189459,13.487551689148063],[99.97611999511724,13.490440368652344],[99.98799133300787,13.498890876769963],[99.99108123779308,13.498880386352539],[99.99640655517607,13.494041442871094],[100.00557708740246,13.50868034362793],[100.01094055175776,13.514131546020508],[100.02333068847668,13.50444126129156],[100.03044891357422,13.506609916687125]]]},"properties":{"ID_0":228,"ISO":"TH-75","NAME_0":"Thailand","ID_1":59,"NAME_1":"Samut Songkhram","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สมุทรสงคร","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.41326904296875,15.043060302734432],[101.41655731201178,15.040011405944824],[101.41512298583979,15.034449577331486],[101.41815185546903,15.029940605163574],[101.42164611816423,15.016501426696834],[101.42601776123064,15.010420799255428],[101.42243194580078,15.001951217651367],[101.42433166503906,14.993187904358024],[101.4285812377932,14.98428058624279],[101.43158721923828,14.981669425964355],[101.4304275512697,14.97665119171154],[101.4346771240235,14.965900421142635],[101.4347610473634,14.960330009460506],[101.43183898925787,14.956471443176383],[101.43524932861334,14.944330215454158],[101.43756866455084,14.942880630493107],[101.44169616699219,14.926049232483024],[101.44603729248041,14.922669410705566],[101.44577789306646,14.919460296630803],[101.45075225830107,14.911000251770076],[101.44912719726562,14.907499313354435],[101.45226287841803,14.892789840698356],[101.45278930664068,14.885410308837947],[101.45501708984392,14.878300666809082],[101.45368957519548,14.865141868591422],[101.45568847656256,14.863349914550781],[101.45272827148455,14.857121467590275],[101.43003082275408,14.847931861877441],[101.42327880859403,14.842810630798454],[101.41718292236357,14.843241691589412],[101.40957641601574,14.834250450134391],[101.40685272216803,14.828071594238281],[101.39765167236328,14.817420959472713],[101.38910675048851,14.811181068420467],[101.37905120849638,14.805620193481502],[101.36113739013683,14.798401832580623],[101.35230255126959,14.793610572814998],[101.34829711914068,14.786739349365234],[101.33943176269548,14.785170555114803],[101.33683776855491,14.781620979309082],[101.34001159667986,14.771149635315055],[101.33618164062517,14.76377010345459],[101.32621002197294,14.757122039795036],[101.32154846191406,14.75853061676031],[101.31188201904303,14.756500244140625],[101.3093872070313,14.757189750671387],[101.30407714843778,14.749970436096305],[101.30483245849638,14.739541053771973],[101.30084991455107,14.735830307006779],[101.29509735107428,14.73418045043951],[101.29096221923822,14.736861228942871],[101.28865051269543,14.742130279541016],[101.28495025634771,14.744039535522404],[101.2847518920899,14.728270530700684],[101.28160858154291,14.72428035736084],[101.27545928955107,14.724370956421012],[101.26374816894531,14.730510711669922],[101.26145935058594,14.72911167144781],[101.24716949462896,14.730569839477653],[101.2425765991211,14.73262977600109],[101.23599243164091,14.733130455017204],[101.23320770263689,14.731550216674862],[101.22441864013689,14.742220878601188],[101.21833801269531,14.7454710006715],[101.2162704467774,14.754881858825797],[101.20361328124994,14.759781837463379],[101.19986724853521,14.757610321044979],[101.19935607910185,14.748261451721305],[101.19519805908214,14.749700546264762],[101.19048309326189,14.747030258178825],[101.19122314453142,14.743860244751033],[101.19608306884788,14.738570213317871],[101.19313049316423,14.733050346374625],[101.19519042968761,14.7296018600465],[101.19229888916044,14.723869323730412],[101.18730926513695,14.721071243286133],[101.19094848632818,14.712791442871037],[101.18904113769537,14.71098995208746],[101.19683074951178,14.70128059387207],[101.20213317871094,14.688221931457576],[101.20362854003923,14.6746702194215],[101.201469421387,14.668130874633846],[101.20439910888689,14.657179832458553],[101.2066726684572,14.652429580688477],[101.20607757568354,14.642401695251408],[101.20773315429693,14.633200645446891],[101.20983123779303,14.629481315612907],[101.20607757568354,14.624711036682072],[101.20600891113287,14.61383056640625],[101.20870208740263,14.61067199707037],[101.20596313476562,14.607510566711426],[101.21144866943376,14.59766006469738],[101.21079254150396,14.595269203186092],[101.21597290039091,14.590531349182243],[101.21659088134783,14.585610389709416],[101.20789337158209,14.579262733459586],[101.20693206787115,14.575289726257381],[101.2012557983399,14.568001747131461],[101.20260620117216,14.565300941467342],[101.1962509155274,14.560420989990291],[101.19493103027366,14.55615043640131],[101.19010925292969,14.550990104675293],[101.18550109863298,14.549630165100154],[101.18302917480486,14.546039581298828],[101.18588256835955,14.538530349731445],[101.18598175048834,14.53295993804926],[101.190971374512,14.528929710388184],[101.19766235351591,14.529740333557129],[101.19861602783232,14.525821685791016],[101.21259307861345,14.517051696777457],[101.21965789794939,14.505660057067871],[101.22606658935575,14.502401351928711],[101.23123931884777,14.493941307067928],[101.23593902587913,14.489690780639705],[101.24263000488287,14.478340148925895],[101.24378204345709,14.470360755920524],[101.23715972900402,14.470430374145451],[101.22914123535168,14.472320556640625],[101.2263793945313,14.469699859619084],[101.22807312011719,14.461151123046932],[101.2323532104495,14.461301803588924],[101.23501586914068,14.458141326904297],[101.23310089111334,14.451911926269531],[101.22940826416016,14.450801849365348],[101.22402191162104,14.445841789245549],[101.23052215576189,14.434200286865348],[101.22940826416016,14.429869651794547],[101.22122955322271,14.435210227966422],[101.21673583984403,14.436410903930721],[101.2138061523438,14.434270858764592],[101.21118927001982,14.427901268005428],[101.21253204345732,14.420061111450138],[101.2124099731447,14.412229537963924],[101.20730590820318,14.406760215759334],[101.20362854003923,14.40061092376709],[101.20555877685547,14.396439552307129],[101.20581817626959,14.389389991760254],[101.21025848388683,14.384270668029842],[101.2134017944336,14.377121925353947],[101.21286773681663,14.37257003784191],[101.20986175537138,14.369018554687557],[101.20362854003923,14.369441032409725],[101.20067596435553,14.36769104003912],[101.19425964355463,14.368330955505371],[101.18743896484375,14.364760398864803],[101.18682098388666,14.352760314941406],[101.17814636230491,14.345781326294002],[101.16960144042997,14.346929550170842],[101.16763305664068,14.341760635376033],[101.1612701416015,14.344641685485954],[101.15821075439447,14.348480224609489],[101.15901947021484,14.356760025024414],[101.1527328491211,14.368302345275993],[101.14904785156244,14.371821403503532],[101.13947296142607,14.37324047088623],[101.12767791748058,14.380339622497559],[101.116020202637,14.382479667663688],[101.09297943115229,14.380470275878963],[101.0877380371096,14.38151073455822],[101.07697296142595,14.389389991760254],[101.07292175292997,14.400731086730957],[101.07312011718761,14.403130531311035],[101.06320953369152,14.413229942321834],[101.05792999267578,14.409070968628043],[101.05934906005865,14.396209716796875],[101.05606842041021,14.390198707580623],[101.0580368041995,14.385460853576717],[101.06462097167969,14.376298904419002],[101.06333160400413,14.356871604919377],[101.06124877929693,14.34722042083746],[101.05890655517578,14.343110084533748],[101.0481414794923,14.332421302795467],[101.03971099853544,14.326319694519043],[101.02793884277338,14.315039634704704],[101.02703094482422,14.311760902404785],[101.02069854736322,14.302169799804688],[101.0174102783206,14.30075931549078],[100.99974822998064,14.2979097366333],[100.99780273437494,14.299011230468807],[100.99022674560547,14.296771049499569],[100.99108886718778,14.29053974151617],[100.97776794433588,14.290019989013786],[100.97238159179716,14.297440528869629],[100.97158050537132,14.303400993347168],[100.96349334716814,14.30410099029541],[100.95475769042969,14.307710647583121],[100.95108032226557,14.306690216064453],[100.95044708251982,14.292830467224121],[100.94682312011747,14.287009239196891],[100.94837951660168,14.280341148376579],[100.95291137695318,14.275251388549805],[100.95289611816429,14.271981239318961],[100.93681335449219,14.262929916381893],[100.91082000732416,14.250481605529728],[100.89441680908197,14.243120193481445],[100.89280700683616,14.250481605529728],[100.8925018310548,14.273280143737793],[100.8881072998048,14.272102355957088],[100.8389282226562,14.248841285705623],[100.82534027099638,14.242641448974666],[100.82447814941406,14.24440956115717],[100.82438659667997,14.326290130615234],[100.81780242919922,14.327700614929256],[100.8133697509765,14.324279785156193],[100.80030822753929,14.324069976806697],[100.78865051269537,14.32151985168457],[100.77732849121111,14.32437992095953],[100.77478790283232,14.329830169677791],[100.78336334228544,14.338549613952694],[100.78663635253918,14.352281570434627],[100.79355621337908,14.361701011657715],[100.78803253173845,14.364600181579647],[100.7892684936524,14.378492355346737],[100.793716430664,14.386798858642578],[100.79798889160162,14.389181137085018],[100.79479980468756,14.392552375793457],[100.7867965698245,14.394290924072322],[100.7825622558596,14.396980285644531],[100.7825622558596,14.406390190124512],[100.77796936035162,14.409749984741268],[100.77427673339861,14.405941009521541],[100.77081298828136,14.405711174011287],[100.76220703125028,14.409749984741268],[100.76068878173857,14.41255092620844],[100.76637268066412,14.416330337524471],[100.76937103271484,14.420769691467399],[100.7675170898438,14.431041717529297],[100.77079010009794,14.433320999145565],[100.7684860229495,14.439911842346191],[100.76302337646501,14.447809219360408],[100.76666259765642,14.451930046081657],[100.76859283447266,14.459858894348145],[100.7714004516601,14.464381217956543],[100.76896667480469,14.468909263610897],[100.76896667480469,14.47739028930664],[100.77410888671892,14.478252410888786],[100.773696899414,14.481901168823299],[100.76596832275413,14.482770919799805],[100.76798248291033,14.48727035522461],[100.77272796630854,14.492150306701603],[100.76667022705095,14.496492385864315],[100.76167297363276,14.49341011047369],[100.7591171264649,14.502281188964844],[100.75482177734392,14.504021644592285],[100.75015258789068,14.50919055938732],[100.74942016601591,14.516390800476188],[100.76056671142595,14.517801284790096],[100.7631225585938,14.521249771118221],[100.7763214111331,14.525390625000057],[100.78053283691418,14.5304212570191],[100.78112030029291,14.535091400146598],[100.77665710449241,14.549650192260856],[100.77922821044916,14.556140899658203],[100.78269958496094,14.559251785278434],[100.78386688232422,14.56654071807867],[100.7709579467774,14.56489086151123],[100.76394653320324,14.567822456359863],[100.75698852539068,14.568840026855469],[100.74320220947283,14.568741798400936],[100.731430053711,14.58042144775385],[100.73116302490229,14.57011890411377],[100.71743011474604,14.570322036743278],[100.7162399291995,14.579080581665096],[100.70326995849638,14.575361251831112],[100.70201873779297,14.572539329528922],[100.6921157836914,14.58279132843029],[100.67556762695335,14.580241203308162],[100.67318725585955,14.574840545654297],[100.67230987548834,14.56516170501709],[100.66998291015625,14.559420585632381],[100.67205047607439,14.553360939025822],[100.66188049316435,14.549758911132812],[100.6496276855471,14.548569679260368],[100.64067840576178,14.549160003662166],[100.62493896484392,14.553300857544002],[100.61640930175787,14.552459716796875],[100.6054992675783,14.552861213684196],[100.60256195068388,14.554341316223201],[100.60455322265625,14.57658863067627],[100.59403991699236,14.583860397338867],[100.58200836181635,14.588980674743596],[100.57660675048857,14.595041275024414],[100.57871246337919,14.597709655761776],[100.57820892334001,14.605701446533146],[100.58338928222656,14.624691009521541],[100.58827209472668,14.63379096984869],[100.60388183593778,14.653731346130428],[100.61650848388683,14.663150787353516],[100.62758636474604,14.677050590515137],[100.61538696289057,14.700110435485897],[100.61074829101591,14.70355129241949],[100.60379791259766,14.717239379882812],[100.60762786865234,14.72252273559576],[100.61487579345703,14.722649574279842],[100.6208190917971,14.720810890197868],[100.62062835693382,14.716719627380428],[100.62902832031273,14.715081214904899],[100.65702056884766,14.714180946350098],[100.67056274414062,14.730331420898551],[100.68495178222685,14.737051963806152],[100.68620300292969,14.745721817016602],[100.69313049316412,14.750329971313533],[100.69647979736345,14.74872970581066],[100.71224975585949,14.748030662536735],[100.7249679565432,14.756699562072697],[100.7418518066408,14.77910041809082],[100.74273681640653,14.782490730285758],[100.74279785156244,14.79650974273693],[100.74478149414068,14.803381919860783],[100.75389862060547,14.806189537048454],[100.76042175292974,14.799010276794434],[100.76750946044928,14.79580116271984],[100.77723693847662,14.793989181518668],[100.78163909912115,14.794322013854924],[100.79067230224604,14.792409896850643],[100.79264831542974,14.793849945068416],[100.80716705322288,14.794510841369629],[100.81228637695312,14.802970886230582],[100.82344818115246,14.802480697631893],[100.832046508789,14.80323123931879],[100.8410873413086,14.800941467285156],[100.84483337402338,14.791521072387752],[100.85013580322294,14.786760330200252],[100.85900115966797,14.783830642700195],[100.86178588867199,14.778450012207031],[100.86389160156261,14.77029132843029],[100.87296295166021,14.761541366577262],[100.88520050048834,14.763150215148926],[100.88906860351574,14.770671844482536],[100.89604949951195,14.767911911010742],[100.90207672119158,14.768059730529842],[100.90608215332048,14.765239715576229],[100.90679931640636,14.761441230773983],[100.91636657714838,14.753719329833928],[100.92106628417974,14.75315189361578],[100.92874145507824,14.749199867248649],[100.93194580078153,14.749191284179801],[100.93360137939459,14.743671417236328],[100.94528961181646,14.74013996124279],[100.9562759399414,14.745300292968807],[100.96483612060564,14.744759559631404],[100.9681930541995,14.752059936523551],[100.97215270996116,14.755960464477482],[100.9587631225586,14.767041206359977],[100.95699310302729,14.772770881652946],[100.95649719238287,14.781060218811149],[100.95999908447294,14.79684066772461],[100.96005249023455,14.80303955078125],[100.95736694335932,14.809970855712834],[100.9560623168947,14.818849563598746],[100.96015167236334,14.82682037353527],[100.9700622558596,14.831649780273438],[100.97834014892572,14.82666110992443],[100.98551940917974,14.829671859741154],[100.98800659179693,14.82826995849615],[100.99777984619152,14.831480979919434],[101.00248718261741,14.82853031158453],[101.00807952880871,14.8283109664917],[101.01274871826172,14.823340415954647],[101.0197982788086,14.818719863891602],[101.02527618408197,14.811470031738281],[101.03447723388672,14.802029609680176],[101.04123687744169,14.798280715942496],[101.04618072509771,14.793460845947322],[101.05191040039068,14.79132270812994],[101.0573120117187,14.783110618591422],[101.0642929077149,14.783069610595817],[101.0633392333985,14.787651062011776],[101.06643676757841,14.791291236877498],[101.07419586181663,14.790210723876953],[101.07110595703125,14.797642707824707],[101.06948852539091,14.809469223022461],[101.07095336914085,14.81378078460699],[101.07450103759783,14.81401157379156],[101.07697296142595,14.809749603271598],[101.0812377929688,14.81146144866949],[101.0807418823245,14.818711280822754],[101.09027099609403,14.829371452331657],[101.08882904052734,14.832030296325684],[101.0772323608399,14.833219528198299],[101.07319641113281,14.830539703369254],[101.06829071044945,14.830810546875114],[101.06713104248053,14.838940620422477],[101.07215118408232,14.843132019042969],[101.07601928710955,14.84282016754156],[101.0772323608399,14.84703159332281],[101.0810317993164,14.849871635437012],[101.09095764160162,14.84585952758789],[101.08683776855497,14.855421066284123],[101.08564758300804,14.861540794372502],[101.081108093262,14.864000320434627],[101.08367156982439,14.870550155639648],[101.07675170898449,14.876030921936092],[101.07749938964872,14.880751609802303],[101.08666229248058,14.885751724243221],[101.09181976318371,14.891061782836914],[101.09223937988298,14.900291442871037],[101.0948104858399,14.904629707336426],[101.1014175415039,14.906681060790959],[101.10959625244158,14.90544128417963],[101.1166763305664,14.902460098266602],[101.11881256103521,14.90364074707037],[101.12564086914062,14.900769233703727],[101.12953186035162,14.901810646057243],[101.1378784179688,14.899581909179688],[101.14257049560541,14.89585113525402],[101.15441894531267,14.896230697631779],[101.16596984863287,14.900862693786621],[101.1719970703125,14.907571792602653],[101.18058776855469,14.913290977478027],[101.18704986572283,14.915029525756893],[101.19438934326178,14.919791221618652],[101.21044921875011,14.916449546814079],[101.21563720703142,14.919061660766602],[101.22023773193376,14.918489456176758],[101.2289505004884,14.922780990600586],[101.23301696777361,14.931070327758789],[101.23507690429682,14.939400672912711],[101.23842620849632,14.932549476623478],[101.24378204345709,14.917710304260254],[101.25710296630865,14.911100387573356],[101.26785278320341,14.91786003112793],[101.26891326904303,14.922280311584473],[101.2730178833009,14.927001953124943],[101.27713775634788,14.93663120269781],[101.2786483764649,14.944569587707576],[101.27989959716791,14.964721679687614],[101.27896881103533,14.969949722289982],[101.28376007080078,14.972871780395508],[101.29712677001953,14.972930908203239],[101.30523681640653,14.970398902893123],[101.31299591064476,14.972200393676871],[101.32531738281267,14.972920417785645],[101.33435058593756,14.977040290832633],[101.33444213867182,14.982271194458065],[101.3383712768557,14.988650321960563],[101.3438491821289,14.989040374755973],[101.34974670410173,14.992351531982422],[101.35117340087896,14.999060630798283],[101.34974670410173,15.005791664123478],[101.35498046875006,15.013699531555119],[101.35247802734398,15.018090248107967],[101.35282135009766,15.026571273803711],[101.35912322998047,15.03461074829113],[101.36483764648438,15.044800758361873],[101.3774185180664,15.038060188293514],[101.3874130249024,15.035989761352539],[101.40099334716808,15.035901069641113],[101.40544891357422,15.041161537170467],[101.4113159179687,15.040840148925895],[101.41326904296875,15.043060302734432]]]},"properties":{"ID_0":228,"ISO":"TH-19","NAME_0":"Thailand","ID_1":60,"NAME_1":"Saraburi","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สระบุรี","VARNAME_1":"Sara Buri"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.07118988037121,6.462255954742432],[100.06588745117205,6.461856842041129],[100.07003021240263,6.469669818878174],[100.07413482666016,6.4655261039734455],[100.07118988037121,6.462255954742432]]],[[[99.31054687500011,6.487649917602539],[99.30595397949247,6.484537124633903],[99.29982757568388,6.487154960632381],[99.29443359375006,6.483676910400391],[99.28699493408209,6.480900764465389],[99.28778076171898,6.486670017242432],[99.29380798339861,6.48758602142334],[99.30106353759783,6.493538856506348],[99.30565643310547,6.495400905609188],[99.30963897705095,6.492280960083065],[99.31054687500011,6.487649917602539]]],[[[99.70500183105463,6.522500038146973],[99.70222473144537,6.51694393157959],[99.69777679443376,6.522220134735221],[99.70500183105463,6.522500038146973]]],[[[99.69499969482445,6.518610000610408],[99.69166564941423,6.5180559158325195],[99.68965148925804,6.523431777954215],[99.69346618652366,6.526360988617057],[99.69499969482445,6.518610000610408]]],[[[99.15833282470714,6.541943073272705],[99.165283203125,6.537220954895133],[99.16767120361357,6.533226013183651],[99.17336273193365,6.530478954315242],[99.17822265625017,6.525142192840576],[99.1846466064456,6.523830890655518],[99.18465423583996,6.520906925201416],[99.17576599121094,6.516221046447754],[99.16770172119135,6.5199198722839355],[99.16665649414085,6.522483825683594],[99.1581497192384,6.522304058074951],[99.1543426513673,6.527781009674072],[99.15416717529291,6.533888816833496],[99.15833282470714,6.541943073272705]]],[[[99.44526672363281,6.556110858917293],[99.44374084472656,6.558045864105338],[99.44611358642584,6.565277099609432],[99.44992828369146,6.569812774658317],[99.45300292968778,6.577160835266113],[99.45636749267584,6.574685096740836],[99.45321655273449,6.564757823944092],[99.44702148437506,6.5604681968688965],[99.44526672363281,6.556110858917293]]],[[[99.27694702148466,6.577781200408992],[99.28970336914068,6.570840835571346],[99.29721832275385,6.565577983856201],[99.30148315429693,6.566610813140869],[99.3087158203125,6.561970233917236],[99.31472015380888,6.564721107482967],[99.31398773193371,6.557438850402946],[99.32611083984398,6.551943778991699],[99.32277679443354,6.549444198608512],[99.32198333740246,6.54357481002819],[99.32427215576183,6.525319099426326],[99.32066345214855,6.516541957855225],[99.31317901611357,6.509477138519287],[99.29841613769531,6.5073890686035725],[99.29596710205084,6.508772850036678],[99.28443145751947,6.5087018013001625],[99.28360748291021,6.512776851654053],[99.28633880615229,6.518449783325309],[99.28179168701189,6.539402008056641],[99.27510833740251,6.551394939422721],[99.27414703369158,6.570351123809871],[99.27694702148466,6.577781200408992]]],[[[99.24777984619169,6.583333015441951],[99.25627899169928,6.576055049896354],[99.25845336914091,6.570000171661491],[99.25936126709007,6.560289859771785],[99.25794982910173,6.556440830230827],[99.23918151855497,6.551344871521053],[99.22805786132818,6.543056011199951],[99.21774291992188,6.538088798523006],[99.21457672119169,6.540542125701961],[99.20813751220697,6.539400100708065],[99.2013854980471,6.541389942169303],[99.19534301757824,6.54519081115734],[99.18998718261747,6.546490192413444],[99.18681335449236,6.5421900749205975],[99.18177795410185,6.540503025054932],[99.17173767089861,6.540870189666748],[99.16822814941435,6.5426411628723145],[99.16572570800787,6.550137042999268],[99.1714477539063,6.55200386047369],[99.172592163086,6.547989845275993],[99.1795883178711,6.546330928802433],[99.18083953857433,6.5550007820129395],[99.18966674804705,6.561079025268668],[99.19277954101568,6.568210124969596],[99.19194793701189,6.575833797454891],[99.20462799072288,6.574721813201961],[99.20932006835955,6.577169895172176],[99.21148681640648,6.574991226196289],[99.2225112915039,6.575699806213322],[99.22860717773438,6.5805611610413735],[99.2366333007813,6.5777649879456135],[99.24138641357422,6.582222938537598],[99.24777984619169,6.583333015441951]]],[[[99.4541702270509,6.587223052978516],[99.45694732666021,6.584440231323242],[99.45777893066435,6.579165935516414],[99.45384216308611,6.578451156616325],[99.45166778564482,6.584444999694881],[99.4541702270509,6.587223052978516]]],[[[99.86299896240234,6.671161174774284],[99.8657684326173,6.666765213012695],[99.85694122314476,6.661671161651725],[99.85278320312528,6.661390781402588],[99.84750366210955,6.653334140777702],[99.84388732910173,6.653612136840877],[99.84638977050781,6.665201187133789],[99.86299896240234,6.671161174774284]]],[[[99.86747741699247,6.684580802917537],[99.86651611328153,6.679060935974121],[99.86277770996111,6.675555229187012],[99.85939788818365,6.678666114807243],[99.86138916015636,6.686940193176383],[99.86412811279297,6.690980911254883],[99.86747741699247,6.684580802917537]]],[[[99.84221649169928,6.702779769897518],[99.84550476074224,6.700703144073543],[99.8429260253908,6.696559906005859],[99.83583068847668,6.694167137146053],[99.83638763427763,6.6991667747498695],[99.84221649169928,6.702779769897518]]],[[[99.88781738281256,6.7088189125061035],[99.88781738281256,6.7067961692811195],[99.87873840332043,6.699998855590877],[99.87333679199241,6.701667785644588],[99.87364959716814,6.705273151397762],[99.88243103027344,6.708798885345573],[99.88781738281256,6.7088189125061035]]],[[[99.88471221923845,6.71385383605957],[99.88150787353521,6.711184978485164],[99.87332153320318,6.710879802703971],[99.8736572265625,6.717930793762207],[99.88471221923845,6.71385383605957]]],[[[99.82330322265625,6.720499992370719],[99.81020355224632,6.7114038467407795],[99.80557250976562,6.715342044830379],[99.81803131103538,6.720378875732422],[99.82330322265625,6.720499992370719]]],[[[99.84916687011747,6.734169960022086],[99.8592987060548,6.731449127197266],[99.86208343505882,6.7276091575623695],[99.86311340332043,6.716148853302116],[99.86722564697288,6.7080559730529785],[99.86389160156244,6.704999923706055],[99.85415649414057,6.7063899040223305],[99.84799194335943,6.703452110290527],[99.84072113037132,6.709690093994141],[99.84444427490251,6.72027683258051],[99.84638977050781,6.732219219207877],[99.84916687011747,6.734169960022086]]],[[[99.66055297851574,6.719445228576717],[99.66444396972656,6.715557098388786],[99.6658325195313,6.703055858612117],[99.67028045654308,6.69722318649292],[99.67666625976568,6.701388835906982],[99.68003845214861,6.69017219543457],[99.68434143066412,6.684539794921989],[99.68280029296898,6.673330783844108],[99.6854858398438,6.65894985198986],[99.683334350586,6.648890018463135],[99.68498992919939,6.646221160888729],[99.68045806884766,6.637722015380973],[99.67891693115234,6.6258702278137775],[99.68002319335932,6.617431163787899],[99.68368530273438,6.610519886016846],[99.68944549560553,6.604444026947078],[99.69453430175798,6.601208209991569],[99.69583129882824,6.574999809265137],[99.69129943847673,6.569447994232178],[99.69410705566418,6.564051151275635],[99.69365692138695,6.560429096221867],[99.6988220214846,6.556830883026237],[99.69916534423834,6.547222137451172],[99.69555664062506,6.541943073272705],[99.69445800781278,6.531651020050049],[99.69051361083979,6.528435230255241],[99.68312072753906,6.536581039428711],[99.67279052734392,6.534436225891113],[99.66784667968767,6.5286102294921875],[99.67002105712913,6.517586231231803],[99.67392730712908,6.512551784515438],[99.6651687622072,6.51275014877325],[99.6604080200197,6.50470685958868],[99.65270996093778,6.5031800270081135],[99.64908599853544,6.5118408203125],[99.64462280273443,6.517070770263672],[99.6404647827149,6.53256893157959],[99.63888549804688,6.535080909729004],[99.63821411132841,6.547049045562801],[99.62805175781273,6.559444904327506],[99.62442779541038,6.566300868988037],[99.61875915527372,6.563930034637508],[99.61406707763672,6.5663890838623615],[99.61100769042986,6.573571205139274],[99.60391235351557,6.582263946533203],[99.59625244140653,6.597105026245174],[99.59755706787115,6.60611200332653],[99.60115051269554,6.612580776214713],[99.6087417602539,6.6144561767578125],[99.61283111572294,6.617091178894157],[99.6146850585938,6.6225061416626545],[99.61805725097673,6.639280796051025],[99.61772918701178,6.645956039428825],[99.6149978637697,6.6500000953674885],[99.6149978637697,6.6588878631592365],[99.6188888549807,6.665000915527344],[99.626693725586,6.662502765655518],[99.63277435302734,6.670277118682975],[99.63592529296903,6.6703338623046875],[99.64079284667969,6.6790790557862465],[99.6411972045899,6.6839380264282795],[99.64554595947266,6.702779769897518],[99.64145660400419,6.707055091858024],[99.6444091796875,6.71206712722784],[99.640609741211,6.7197661399842445],[99.64095306396501,6.734291076660213],[99.6433029174807,6.7382612228393555],[99.64760589599626,6.7398838996887775],[99.65088653564453,6.734479904174918],[99.65717315673828,6.727577209472713],[99.66055297851574,6.719445228576717]]],[[[99.77639770507812,6.780386924743709],[99.76974487304693,6.780046939849967],[99.76728057861351,6.7841949462890625],[99.77005004882807,6.793220043182373],[99.77658081054688,6.787206172943229],[99.77639770507812,6.780386924743709]]],[[[99.69758605957048,6.8509650230407715],[99.69492340087908,6.846098899841422],[99.69845581054693,6.832283020019588],[99.69452667236345,6.8242602348328205],[99.6944427490235,6.819722175598258],[99.69027709960966,6.816390037536621],[99.6848754882813,6.82284688949585],[99.6791687011721,6.8186101913453285],[99.6772232055664,6.823057174682617],[99.67861175537115,6.830000877380428],[99.68582153320318,6.8361592292785645],[99.68341827392607,6.839892864227295],[99.68662261962896,6.843486785888729],[99.69000244140625,6.85083198547369],[99.69532775878906,6.853284835815543],[99.69758605957048,6.8509650230407715]]],[[[99.69889068603527,7.0919442176819985],[99.70221710205084,7.091670989990348],[99.70027923583984,7.085278034210319],[99.69610595703125,7.08722019195568],[99.69889068603527,7.0919442176819985]]],[[[99.76667022705078,7.125555038452148],[99.77121734619158,7.12506008148199],[99.7799682617187,7.127598762512207],[99.78798675537126,7.126978874206543],[99.79255676269526,7.119699954986629],[99.79928588867188,7.114490032195988],[99.8072586059572,7.113820075988883],[99.81275177001964,7.104781150817871],[99.81751251220714,7.102629184722957],[99.82498168945307,7.0945701599120525],[99.8337707519533,7.095449924469108],[99.83625030517595,7.090050220489502],[99.83332061767607,7.08355903625494],[99.83481597900413,7.079989910125732],[99.83918762207054,7.0779509544373695],[99.84208679199247,7.080129146575985],[99.84661102294928,7.077779769897575],[99.84848022460938,7.073569774627629],[99.8566131591798,7.069029808044547],[99.86328887939464,7.068749904632625],[99.86277770996111,7.075800895691032],[99.86709594726591,7.080420970916862],[99.8694915771485,7.076351165771541],[99.8764190673831,7.081540107727108],[99.88179779052746,7.0831217765808105],[99.88803863525396,7.080581188202018],[99.89454650878935,7.0881109237672035],[99.89975738525408,7.096329212188721],[99.91217803955095,7.0957708358765785],[99.91905212402344,7.100860118865967],[99.92167663574213,7.098791122436637],[99.93025207519543,7.101631164550838],[99.93338012695312,7.100240230560303],[99.9387969970706,7.102441787719783],[99.93917083740263,7.105630874633789],[99.95020294189476,7.099789142608756],[99.95334625244135,7.09654092788702],[99.96483612060547,7.09827995300293],[99.96649932861322,7.100670814514217],[99.9771270751956,7.100989818573112],[99.9803390502932,7.102190971374512],[99.98159027099626,7.11102104187006],[99.98574829101574,7.1122608184813885],[99.99649047851562,7.111808776855582],[99.99823760986334,7.113489151001033],[100.01325988769548,7.108679771423397],[100.02416229248047,7.103579044342155],[100.02709960937528,7.098770141601619],[100.02578735351591,7.0921111106873695],[100.0296096801759,7.091918945312557],[100.0333862304688,7.099349021911735],[100.03724670410168,7.102040767669735],[100.03726196289057,7.107339859008789],[100.03971099853544,7.109300136566162],[100.04824829101585,7.107339859008789],[100.05193328857433,7.11048078536993],[100.05651092529308,7.107401847839412],[100.0571517944336,7.103510856628361],[100.0547485351563,7.09387922286993],[100.0586318969726,7.085731983184871],[100.06207275390642,7.081490039825496],[100.06253051757818,7.0770211219788735],[100.0601882934572,7.068861007690373],[100.0645217895509,7.0633888244629475],[100.06378936767595,7.057209968566838],[100.06980133056663,7.050240993499813],[100.0739517211914,7.047740936279354],[100.07572174072271,7.042911052703971],[100.0791015625,7.040670871734676],[100.07522583007807,7.033751010894775],[100.06442260742193,7.031799793243522],[100.06595611572271,7.025630950927791],[100.06289672851568,7.019528865814323],[100.06389617919928,7.013600826263541],[100.07013702392578,7.0094599723817055],[100.08290100097656,6.997910022735596],[100.08255004882818,6.99315977096569],[100.07853698730474,6.9855108261109535],[100.07929229736328,6.975820064544791],[100.08503723144537,6.969920158386287],[100.08982086181663,6.969140052795524],[100.09398651123053,6.966119766235465],[100.09601593017572,6.961111068725586],[100.10917663574213,6.9432811737061115],[100.11801147460938,6.937338829040527],[100.12220764160156,6.923830986022892],[100.13178253173851,6.922520160675106],[100.14785003662138,6.923410892486572],[100.15666198730463,6.919180870056152],[100.16635131835966,6.913220882415828],[100.17675018310547,6.912321090698242],[100.18235015869146,6.913088798523006],[100.18679809570307,6.911300182342529],[100.19606781005882,6.903019905090389],[100.20182800292997,6.899731159210319],[100.20855712890642,6.8935799598694985],[100.2122421264649,6.884541034698486],[100.21682739257818,6.880060195922908],[100.22056579589838,6.870380878448486],[100.21253204345714,6.858160018920898],[100.20861816406256,6.8458800315856365],[100.19825744628923,6.835990905761832],[100.19503021240251,6.827040195465145],[100.19599914550781,6.815050125122184],[100.1908264160158,6.808821201324463],[100.19330596923845,6.797310829162711],[100.19399261474638,6.787390232086295],[100.1989364624024,6.781661033630371],[100.20150756835955,6.770330905914307],[100.20947265625011,6.766290187835807],[100.21376037597656,6.758440971374625],[100.20704650878923,6.750629901885986],[100.20642852783214,6.74745082855236],[100.20704650878923,6.732289791107291],[100.20503234863304,6.725989818573055],[100.1992797851563,6.721313953399601],[100.18772125244169,6.716338157653865],[100.18029785156261,6.698914051055965],[100.17189788818371,6.69391584396368],[100.17309570312517,6.686278820037899],[100.18011474609386,6.6798701286317055],[100.17828369140625,6.668273925781307],[100.18109130859392,6.656920909881649],[100.18048095703136,6.653687000274715],[100.1735229492188,6.648682117462158],[100.17050933837913,6.635381221771354],[100.16607666015625,6.630677223205566],[100.16687011718773,6.622682094574088],[100.17073822021513,6.607089996337891],[100.177963256836,6.6042962074279785],[100.18069458007807,6.598418235778865],[100.17907714843773,6.591125011444149],[100.18432617187494,6.5772700309754555],[100.18347167968773,6.574097156524658],[100.17572021484386,6.569091796875057],[100.17028808593756,6.573486804962101],[100.16589355468756,6.570679187774658],[100.15808105468756,6.578917980194149],[100.15669250488298,6.575180053710994],[100.15933227539057,6.56709098815918],[100.15527343750028,6.561097145080623],[100.15368652343756,6.55047702789318],[100.15649414062517,6.542725086212272],[100.1571044921875,6.525513172149715],[100.15570068359386,6.520080089569092],[100.1578979492188,6.5142822265625],[100.1578979492188,6.508119106292725],[100.1605224609375,6.503295898437557],[100.15972900390642,6.487669944763297],[100.15447998046898,6.483520030975399],[100.15869140625006,6.478881835937557],[100.15130615234386,6.475707054138127],[100.15148925781261,6.472105979919434],[100.14672851562511,6.470887184143123],[100.1448974609375,6.466674804687557],[100.14508056640625,6.459290981292725],[100.1478881835937,6.453489780426025],[100.13787841796898,6.43572902679449],[100.12768554687517,6.421691894531364],[100.1246948242188,6.410706043243465],[100.12204742431663,6.415932178497428],[100.1172714233399,6.434331893920898],[100.11861419677757,6.441666126251334],[100.1150588989259,6.448469161987305],[100.11449432373058,6.455448150634766],[100.10743713378918,6.479071140289307],[100.10277557373053,6.486668109893799],[100.10194396972673,6.497499942779541],[100.0880203247072,6.493562221527213],[100.08463287353516,6.496895790100211],[100.08976745605469,6.499589920044059],[100.09227752685553,6.506391048431453],[100.09350585937511,6.51409912109375],[100.09864044189482,6.516617774963379],[100.09916687011741,6.528889179229793],[100.0947265625,6.541686058044547],[100.09869384765642,6.546874999999943],[100.09646606445318,6.550711154937858],[100.08989715576183,6.548899173736686],[100.08083343505865,6.556944847107047],[100.07833099365234,6.556940078735408],[100.07611846923857,6.545975208282584],[100.07199096679705,6.538452148437614],[100.06730651855491,6.518938064575195],[100.06388854980491,6.515308856964168],[100.05162811279297,6.5196242332459065],[100.04454040527361,6.524892807006779],[100.04250335693365,6.528057098388786],[100.02166748046875,6.544579982757568],[100.00694274902338,6.5613160133362385],[100.00058746337919,6.5743708610535805],[99.99756622314464,6.578091144561824],[99.98952484130888,6.594683170318717],[99.99255371093773,6.598471164703369],[99.99709320068365,6.5977091789245605],[100.00611114501959,6.588055133819694],[100.01305389404314,6.585555076599235],[100.01416778564464,6.589169025421256],[100.01916503906267,6.595276832580623],[100.01999664306646,6.599443912506217],[100.02368164062528,6.603181838989201],[100.0256423950197,6.5981202125549885],[100.0330352783206,6.590322971344051],[100.04000091552734,6.580832004547233],[100.04805755615257,6.577781200408992],[100.05388641357439,6.573334217071533],[100.05777740478538,6.582222938537598],[100.04944610595714,6.5780558586120605],[100.03868865966803,6.587027072906494],[100.02925109863276,6.597721099853516],[100.0283813476563,6.605147838592529],[100.0243759155274,6.606720924377498],[100.0161209106447,6.599161148071403],[100.01323699951166,6.594828128814754],[100.00833129882812,6.592220783233756],[100.00555419921903,6.5983338356018635],[99.9994430541995,6.604444026947078],[99.9866561889649,6.607500076294002],[99.9783172607423,6.603889942169246],[99.9694442749024,6.594168186187801],[99.95861053466803,6.5908331871032715],[99.95471954345703,6.5852770805359455],[99.95111083984375,6.583889007568416],[99.94834136962919,6.5908308029174805],[99.94944763183616,6.594720840454158],[99.94833374023466,6.6038880348206135],[99.95054626464844,6.608329772949219],[99.94917297363298,6.617220878601131],[99.95333099365246,6.620560169220084],[99.96055603027372,6.616666793823242],[99.97138977050787,6.624166011810303],[99.97273254394537,6.630091190338192],[99.96347045898455,6.637637138366756],[99.9602890014649,6.652177810669059],[99.95744323730491,6.656692981719971],[99.95491790771484,6.665579795837459],[99.9498977661134,6.668697834014949],[99.94600677490257,6.6619791984558105],[99.93657684326189,6.65616512298584],[99.93198394775385,6.658884048461857],[99.92714691162115,6.669290065765381],[99.92376708984386,6.670249938964957],[99.91944122314453,6.676670074462834],[99.92333221435553,6.682777881622258],[99.92277526855497,6.6908330917359535],[99.91985321044928,6.6958508491515545],[99.91555786132824,6.695559024810905],[99.9102783203125,6.688888072967529],[99.90694427490263,6.690001010894775],[99.90721893310564,6.696667194366455],[99.90416717529314,6.705833911895866],[99.90888977050793,6.711110115051326],[99.91361236572294,6.712780952453613],[99.9166107177735,6.71959495544445],[99.91031646728521,6.726370811462402],[99.90557861328148,6.738730907440242],[99.90392303466808,6.736422061920109],[99.9063415527346,6.728051185608024],[99.90314483642607,6.7209420204163735],[99.89096832275385,6.722881793975944],[99.87793731689459,6.720180988311824],[99.87088775634794,6.728991985321159],[99.86788940429682,6.738668918609619],[99.86944580078142,6.74353122711193],[99.86163330078142,6.751079082489127],[99.85250091552734,6.764165878295955],[99.8452758789063,6.771111011505127],[99.8422241210938,6.776111125946159],[99.84194183349621,6.78055477142334],[99.8383026123048,6.7816810607910725],[99.83662414550798,6.776896953582764],[99.8320617675783,6.774610996246452],[99.82583618164085,6.7755589485169025],[99.81749725341825,6.770830154419059],[99.81138610839872,6.770000934600944],[99.80495452880854,6.777141094207764],[99.80014038085966,6.806920051574821],[99.79527282714844,6.816929817199707],[99.78423309326178,6.832269191742],[99.77651214599621,6.839408874511832],[99.77194213867199,6.841940879821777],[99.76860046386724,6.836900234222526],[99.76382446289068,6.834555149078312],[99.7589035034182,6.8377680778504555],[99.75333404541021,6.832499027252311],[99.74934387207037,6.840632915496826],[99.74049377441423,6.84702920913702],[99.7216567993164,6.855831146240234],[99.7181015014649,6.860113143920955],[99.70739746093773,6.857915878295842],[99.7048416137697,6.858963966369629],[99.70027923583984,6.854166984558219],[99.69721984863298,6.856389045715332],[99.69777679443376,6.865834236145076],[99.70277404785156,6.8644428253174965],[99.70240783691412,6.8703508377075195],[99.69638824462919,6.869439125061035],[99.68904876708984,6.882824897766227],[99.68555450439447,6.894999980926514],[99.68277740478521,6.895833969116325],[99.6780548095706,6.90166616439825],[99.6800003051759,6.905831813812256],[99.6875,6.905279159545898],[99.68805694580095,6.90999889373785],[99.68472290039068,6.9155597686768715],[99.68277740478521,6.925950050354004],[99.68166351318365,6.944168090820256],[99.68472290039068,6.948887825012207],[99.69222259521479,6.955280780792236],[99.7005462646485,6.9538898468018715],[99.70889282226568,6.946390151977596],[99.7152786254884,6.942221164703426],[99.72384643554716,6.934771060943717],[99.73027801513695,6.9266657829285805],[99.72944641113298,6.921669960022086],[99.73549652099621,6.922772884368953],[99.73361206054682,6.928887844085693],[99.74395751953125,6.936460018158016],[99.74527740478533,6.944721221923885],[99.74055480957037,6.9472222328186035],[99.7402801513673,6.939167022705078],[99.73305511474626,6.934444904327506],[99.72583007812517,6.938611030578613],[99.71584320068388,6.949999809265137],[99.71083068847679,6.951943874359131],[99.70666503906278,6.956110000610352],[99.70639038085938,6.9627771377564045],[99.70111083984398,6.970554828643799],[99.69472503662126,6.9686107635498615],[99.68833160400413,6.964167118072453],[99.68416595459013,6.958888053894157],[99.68166351318365,6.963889122009334],[99.68250274658197,6.971110820770264],[99.69027709960966,6.971389770507926],[99.68527984619163,6.976111888885441],[99.67762756347662,6.981067180633602],[99.6720123291015,6.9939031600953285],[99.67028045654308,7.002778053283691],[99.67511749267578,7.008840084076041],[99.6785736083985,7.008568763732967],[99.68345642089838,7.011789798736686],[99.6763305664063,7.023012161254883],[99.67028808593744,7.039888858795109],[99.67583465576189,7.053055763244743],[99.68389129638672,7.057779788971061],[99.69083404541044,7.067779064178524],[99.69222259521479,7.071681022644043],[99.69805908203148,7.076670169830436],[99.70027923583984,7.067501068115234],[99.70269012451183,7.067615032196045],[99.70890808105474,7.07846117019659],[99.71135711669922,7.085330009460563],[99.71639251709013,7.0905561447143555],[99.71196746826195,7.0998687744140625],[99.713920593262,7.102814197540283],[99.72721862792974,7.111390113830623],[99.73503112792974,7.109880924224797],[99.73789215087896,7.117721080780086],[99.73582458496116,7.127172946929932],[99.74061584472685,7.130139827728385],[99.7491989135745,7.125424861907959],[99.75572967529308,7.123369216918945],[99.76388549804716,7.122778892517147],[99.76667022705078,7.125555038452148]]]]},"properties":{"ID_0":228,"ISO":"TH-91","NAME_0":"Thailand","ID_1":61,"NAME_1":"Satun","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สตูล","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.12464904785162,15.561809539795036],[104.13153839111357,15.554349899292049],[104.13990020751959,15.53450965881359],[104.13926696777344,15.526570320129508],[104.13533020019537,15.514360427856445],[104.13907623291016,15.505640029907283],[104.14865875244163,15.497750282287598],[104.15885925292963,15.495421409606934],[104.16570281982433,15.491520881652832],[104.1837768554688,15.4769802093507],[104.19313049316435,15.463500976562614],[104.19512176513689,15.459030151367244],[104.2038879394533,15.44596099853527],[104.217788696289,15.428750991821346],[104.22522735595697,15.418600082397518],[104.23223876953153,15.415370941162053],[104.2354583740235,15.409920692443961],[104.23506164550804,15.402529716491813],[104.2374572753908,15.393341064453068],[104.24436950683594,15.377349853515625],[104.24909210205095,15.37182998657238],[104.25312042236328,15.37061977386469],[104.26288604736334,15.371221542358398],[104.27435302734398,15.363389968872184],[104.27787780761713,15.363250732421875],[104.28333282470709,15.356060981750602],[104.29299926757812,15.352640151977539],[104.29856109619146,15.343791961670036],[104.30393218994146,15.343521118164176],[104.30770874023443,15.340800285339355],[104.3162002563476,15.3406400680542],[104.32308197021479,15.344801902771053],[104.33531188964861,15.342299461364803],[104.34571838378935,15.34408187866211],[104.34922790527361,15.341461181640568],[104.35708618164062,15.342581748962346],[104.36827850341791,15.327271461486873],[104.37069702148443,15.320809364318904],[104.37477874755876,15.320469856262207],[104.37770843505865,15.317170143127498],[104.38195037841803,15.307121276855412],[104.38421630859398,15.294881820678654],[104.38626861572266,15.291941642761174],[104.40705108642578,15.288311004638786],[104.42085266113287,15.284591674804801],[104.45491790771484,15.276399612426815],[104.45925140380854,15.275720596313477],[104.46492004394537,15.269650459289664],[104.47074890136719,15.266671180725211],[104.48838043212896,15.265489578247127],[104.50492858886724,15.26573181152338],[104.5155181884765,15.256450653076286],[104.52349853515653,15.252011299133358],[104.53156280517595,15.250419616699276],[104.55094146728521,15.25160121917719],[104.55650329589872,15.251211166381836],[104.58036041259777,15.251519203186035],[104.58428192138678,15.255040168762207],[104.59230804443382,15.266880035400447],[104.6020965576173,15.265959739685059],[104.6078491210937,15.271571159362793],[104.60980987548828,15.27004241943365],[104.6085891723634,15.262319564819336],[104.61096954345709,15.257711410522461],[104.6179580688476,15.258770942688102],[104.62716674804688,15.256681442260856],[104.629867553711,15.260250091552848],[104.64119720458996,15.253590583801326],[104.64682769775396,15.253729820251465],[104.64805603027372,15.248921394348145],[104.64681243896484,15.242531776428223],[104.6500473022461,15.23736953735363],[104.65872955322294,15.237260818481502],[104.6643371582033,15.23950099945074],[104.65437316894526,15.242821693420524],[104.65431976318365,15.245800971984977],[104.65956115722673,15.248359680175895],[104.65997314453125,15.25593090057373],[104.66776275634783,15.255489349365348],[104.67163085937506,15.251880645752067],[104.67810821533209,15.239769935608024],[104.6809158325197,15.232159614562988],[104.68016052246111,15.226119995117188],[104.68325805664068,15.2223415374757],[104.68865203857428,15.22152137756359],[104.69735717773438,15.222890853881893],[104.69616699218767,15.217721939086857],[104.68692016601568,15.217280387878475],[104.68386840820318,15.211750030517635],[104.6915130615235,15.206731796264762],[104.68937683105474,15.202050209045353],[104.68290710449241,15.203271865844727],[104.68498229980474,15.19823074340826],[104.68936157226568,15.197481155395621],[104.69567108154303,15.201568603515682],[104.70297241210966,15.20003986358654],[104.70670318603516,15.194790840148983],[104.70153045654314,15.189351081848258],[104.70391082763678,15.183870315551815],[104.7095718383789,15.184180259704647],[104.71511840820318,15.19233036041254],[104.71953582763678,15.190910339355526],[104.71977996826183,15.18468093872076],[104.7151489257813,15.180841445922908],[104.7067260742188,15.176261901855582],[104.70060729980469,15.169059753417969],[104.70009613037115,15.157039642334041],[104.7047271728515,15.155321121215934],[104.71121215820307,15.157790184020996],[104.72548675537138,15.16786098480219],[104.73230743408226,15.168230056762752],[104.7375030517581,15.164540290832633],[104.73873901367188,15.160640716552791],[104.73641204834001,15.156121253967285],[104.72202301025396,15.145180702209586],[104.7058563232423,15.128629684448299],[104.69161987304688,15.125711441040096],[104.68813323974604,15.122200965881348],[104.68221282958996,15.121569633484],[104.68258666992199,15.115790367126408],[104.67845916748047,15.112191200256461],[104.68205261230486,15.108421325683594],[104.68158721923834,15.104931831359863],[104.67687988281244,15.103201866149846],[104.67272949218767,15.09672927856451],[104.67762756347668,15.091031074523983],[104.6812286376956,15.09257030487072],[104.68327331542974,15.098449707031364],[104.68907928466808,15.098552703857365],[104.69110870361351,15.093998908996525],[104.6808624267581,15.087032318115291],[104.68540191650396,15.083379745483398],[104.69393920898443,15.081970214843807],[104.694389343262,15.079501152038574],[104.68834686279314,15.071590423584041],[104.68844604492193,15.062459945678768],[104.69120788574236,15.060521125793514],[104.68766784667991,15.053150177002067],[104.68209838867188,15.047109603881779],[104.68798065185564,15.042250633239803],[104.68177795410162,15.03555965423584],[104.67884063720703,15.039521217346305],[104.67505645751959,15.036141395568848],[104.67611694335932,15.031730651855469],[104.67508697509788,15.01814937591547],[104.67906951904303,15.01422023773199],[104.68232727050804,15.007480621337947],[104.68527221679682,15.006490707397404],[104.68518066406256,15.000248908996639],[104.68685150146484,14.99210071563732],[104.68421173095709,14.987091064453125],[104.68579101562506,14.975749969482422],[104.69116210937528,14.966360092163143],[104.68878936767584,14.962480545044059],[104.68563842773449,14.952290534973088],[104.68833160400385,14.945220947265682],[104.69879150390653,14.939489364624137],[104.70224761962885,14.933699607849121],[104.70761871337908,14.935020446777344],[104.72264099121105,14.930338859558105],[104.72988891601574,14.92701053619379],[104.74372100830084,14.924921035766715],[104.74812316894537,14.92046070098877],[104.76246643066412,14.916029930114803],[104.77593994140625,14.910820007324219],[104.79210662841814,14.900921821594295],[104.7977828979495,14.899191856384277],[104.80661010742205,14.894549369812069],[104.80889129638689,14.886272430419865],[104.81285858154308,14.879710197448844],[104.81384277343744,14.87366104125988],[104.8126831054687,14.868011474609489],[104.81462097167986,14.861809730529785],[104.81957244873064,14.85250186920166],[104.82289123535162,14.849220275878906],[104.83007812500017,14.835309982299862],[104.81578826904297,14.831000328064079],[104.80870819091814,14.827469825744629],[104.80275726318371,14.820500373840275],[104.79949951171903,14.814250946044979],[104.8014297485351,14.807739257812614],[104.80964660644526,14.796702384948787],[104.81346130371088,14.794121742248535],[104.81880950927751,14.785540580749455],[104.8205795288086,14.770718574523869],[104.81939697265642,14.761601448059082],[104.82193756103521,14.75304031372076],[104.83349609375017,14.740800857544002],[104.84506988525419,14.734029769897518],[104.84638214111334,14.730951309204215],[104.84543609619146,14.723650932312069],[104.85098266601591,14.71630001068121],[104.86920928955078,14.7011013031007],[104.87753295898432,14.698231697082463],[104.87879943847662,14.694099426269474],[104.87822723388678,14.680130958557186],[104.87879943847662,14.669692039489746],[104.8822784423831,14.666761398315543],[104.883529663086,14.66212081909191],[104.88713836669922,14.660458564758244],[104.89211273193365,14.651000976562443],[104.88237762451172,14.653339385986442],[104.87825775146513,14.658431053161621],[104.8753280639649,14.65785026550293],[104.86875915527338,14.66122055053711],[104.86331939697271,14.659590721130371],[104.86058044433611,14.65657997131342],[104.85221862792969,14.656559944152889],[104.84963989257841,14.644379615783691],[104.84678649902372,14.642621040344295],[104.8391799926759,14.63379096984869],[104.84040069580078,14.630760192871207],[104.83756256103521,14.614630699157772],[104.83165740966803,14.608861923217773],[104.82910156249994,14.604470252990836],[104.82813262939447,14.59801101684576],[104.83109283447271,14.592780113220329],[104.82821655273443,14.590681076049748],[104.83094024658209,14.578660964965877],[104.82599639892607,14.572772026062069],[104.82681274414057,14.56834983825695],[104.82198333740263,14.562450408935547],[104.822738647461,14.558039665222168],[104.81920623779314,14.549151420593319],[104.82372283935575,14.544980049133358],[104.82582092285185,14.536150932312069],[104.83592224121122,14.526471138000545],[104.83959960937517,14.519980430603027],[104.84777069091808,14.513880729675407],[104.85243225097656,14.507361412048283],[104.8575668334961,14.50547790527338],[104.85949707031256,14.500541687011719],[104.86369323730474,14.498280525207576],[104.86389160156256,14.491889953613395],[104.8614120483399,14.489021301269645],[104.86245727539074,14.48215103149414],[104.86084747314459,14.470161437988395],[104.85553741455084,14.466650962829647],[104.8532104492188,14.46107101440441],[104.84777069091808,14.453261375427303],[104.83606719970726,14.448181152343807],[104.83287811279325,14.444349288940543],[104.83174896240246,14.439021110534668],[104.84210205078142,14.424480438232536],[104.85105895996111,14.42323112487793],[104.87825775146513,14.435530662536678],[104.88125610351568,14.434129714965934],[104.89894104003923,14.41537857055664],[104.90805053710932,14.411161422729606],[104.91073608398432,14.404289245605526],[104.90986633300787,14.398341178893986],[104.9066696166995,14.398131370544434],[104.90067291259766,14.404220581054688],[104.895980834961,14.404410362243652],[104.8883819580081,14.408210754394531],[104.88094329834013,14.410271644592399],[104.87486267089838,14.416020393371639],[104.86972808837885,14.41415977478033],[104.86411285400396,14.40762996673584],[104.86035156250011,14.410361289978084],[104.85218048095697,14.404061317443848],[104.84364318847656,14.40182113647461],[104.84001922607422,14.412601470947322],[104.83123016357439,14.416609764099121],[104.8232421875,14.416229248046875],[104.8179321289063,14.427599906921387],[104.80882263183622,14.43501186370861],[104.79133605957026,14.432520866394043],[104.7785186767581,14.423070907592773],[104.76999664306658,14.422061920166016],[104.75866699218778,14.41262245178217],[104.75888061523449,14.409431457519588],[104.75450897216791,14.404191017150993],[104.74352264404297,14.411508560180664],[104.73491668701172,14.41084194183344],[104.72966003417974,14.403559684753418],[104.72590637207026,14.401289939880485],[104.72350311279303,14.405891418457145],[104.7278213500976,14.41537857055664],[104.72325897216814,14.423370361328182],[104.71850585937517,14.425482749939079],[104.71685028076195,14.429169654846305],[104.71222686767578,14.431691169738826],[104.70780181884783,14.430700302124023],[104.70246124267595,14.426289558410645],[104.69713592529314,14.419640541076774],[104.69243621826195,14.411340713500977],[104.6920776367188,14.405840873718262],[104.68660736083979,14.397649765014592],[104.68196105957037,14.393859863281364],[104.68087768554699,14.389201164245549],[104.67382812499994,14.396590232849121],[104.66266632080084,14.398031234741154],[104.655532836914,14.40502071380621],[104.65538787841797,14.414900779724121],[104.65280151367216,14.420379638671989],[104.6463012695313,14.42153072357172],[104.63149261474604,14.408411979675407],[104.62930297851585,14.404250144958553],[104.61318206787104,14.394499778747559],[104.60529327392584,14.394220352172908],[104.5945968627932,14.385081291198787],[104.59031677246111,14.378719329833928],[104.58255767822271,14.374380111694279],[104.57832336425781,14.365669250488224],[104.58107757568365,14.3570814132691],[104.57972717285162,14.355321884155217],[104.5726089477539,14.357350349426383],[104.56922912597679,14.3564710617066],[104.56513214111345,14.350271224975643],[104.55629730224638,14.350561141967773],[104.54705810546875,14.35387039184576],[104.53679656982445,14.351691246032829],[104.53174591064447,14.35768985748291],[104.5239562988283,14.358680725097713],[104.51712799072271,14.367561340331974],[104.50218200683588,14.37328052520752],[104.49373626709013,14.36940002441412],[104.48641967773443,14.368289947509766],[104.47940063476568,14.36128044128418],[104.48014831542991,14.350200653076229],[104.47331237792974,14.345049858093319],[104.4649963378908,14.343360900878906],[104.46296691894537,14.345351219177303],[104.46588134765653,14.35416030883789],[104.46283721923857,14.358401298523006],[104.45744323730474,14.358539581298828],[104.44931030273466,14.354741096496582],[104.44419097900385,14.357119560241813],[104.4391098022461,14.355971336364746],[104.43354034423845,14.359000205993652],[104.42974090576172,14.366568565368766],[104.41471099853521,14.370651245117188],[104.40953063964844,14.365441322326774],[104.40650177001959,14.365710258484],[104.4009933471682,14.373571395874137],[104.39676666259766,14.374080657959041],[104.38726043701195,14.37045955657959],[104.3762664794923,14.380301475525016],[104.37123107910162,14.37406063079834],[104.36145782470703,14.371000289916992],[104.35797882080072,14.371831893920955],[104.35218048095709,14.368481636047363],[104.33350372314459,14.369160652160758],[104.32341003417997,14.374211311340332],[104.31642913818376,14.381381988525504],[104.30954742431658,14.38230037689209],[104.30226898193371,14.38910102844244],[104.29373931884783,14.39945030212408],[104.28911590576166,14.398782730102596],[104.28067779541044,14.407250404358024],[104.27522277832048,14.406419754028377],[104.26843261718773,14.398110389709416],[104.26219177246122,14.397688865661564],[104.26036834716797,14.393959999084473],[104.25417327880888,14.390119552612362],[104.25466918945312,14.386090278625545],[104.25092315673857,14.377281188964957],[104.24807739257841,14.375309944152775],[104.23384857177751,14.369391441345272],[104.22071838378906,14.365751266479606],[104.21241760253935,14.367030143737907],[104.20793151855469,14.372041702270508],[104.20246887207037,14.38084983825695],[104.19706726074219,14.380091667175293],[104.19197082519537,14.382781028747672],[104.18679046630865,14.382920265197754],[104.1830520629884,14.379670143127441],[104.17272949218778,14.374320983886776],[104.17678833007807,14.3687620162965],[104.17465972900402,14.365571022033748],[104.17736816406267,14.359581947326603],[104.17426300048857,14.357671737670898],[104.15717315673845,14.355310440063533],[104.14727783203125,14.352701187133903],[104.14176177978521,14.353990554809627],[104.13871002197271,14.357560157775936],[104.14176177978521,14.364109992980957],[104.14044952392601,14.371661186218262],[104.13301849365257,14.37479019165039],[104.1255493164063,14.372041702270508],[104.11020660400385,14.376721382141113],[104.1089172363283,14.369639396667537],[104.10070800781267,14.365300178527889],[104.0998229980471,14.360611915588436],[104.09372711181663,14.349020004272404],[104.09153747558611,14.347119331359863],[104.07247924804705,14.342020988464412],[104.05908203125011,14.343649864196891],[104.0595474243164,14.348291397094783],[104.0558319091798,14.354400634765568],[104.04821777343744,14.357191085815543],[104.04631042480463,14.360449790954704],[104.05287170410156,14.377281188964957],[104.04936218261713,14.386500358581657],[104.05162048339872,14.391850471496639],[104.04946136474615,14.406261444091797],[104.05565643310541,14.412700653076172],[104.05615234375023,14.417011260986442],[104.05329132080101,14.422730445861816],[104.05355834960932,14.4324111938476],[104.05751800537138,14.442131996154899],[104.05812072753918,14.452830314636287],[104.06095123291044,14.455519676208496],[104.0595474243164,14.46503925323492],[104.06076049804716,14.46727085113531],[104.05432891845697,14.471249580383244],[104.05134582519531,14.47764968872076],[104.05261230468744,14.488700866699219],[104.04592132568371,14.495261192321834],[104.04167938232428,14.493820190429801],[104.03679656982439,14.4985609054566],[104.03945922851557,14.516420364379883],[104.03576660156256,14.530229568481502],[104.03662109375017,14.535360336303654],[104.03441619873053,14.542769432067928],[104.03588104248047,14.544820785522518],[104.04776000976585,14.552451133728084],[104.04991149902372,14.556619644165153],[104.04825592041033,14.564190864562988],[104.05690765380882,14.574971199035758],[104.05866241455107,14.587862014770621],[104.06204223632818,14.601651191711483],[104.0598526000976,14.60885143280035],[104.05972290039062,14.624840736389274],[104.05457305908203,14.630940437316895],[104.05314636230497,14.636271476745662],[104.05602264404308,14.641921043396053],[104.05648803710938,14.649841308593864],[104.05446624755888,14.652270317077637],[104.05518341064459,14.65991020202631],[104.05179595947294,14.67150020599371],[104.04942321777344,14.674481391906795],[104.02326202392595,14.698179244995174],[104.00952148437517,14.714599609375057],[104.00341033935541,14.7255220413208],[104.00135040283203,14.734150886535645],[104.00209808349626,14.738812446594352],[104.00878143310564,14.747200965881348],[104.0103607177735,14.758550643920898],[104.00491333007824,14.774760246276912],[104.0021667480471,14.77943038940441],[104.00055694580095,14.79209136962902],[103.99832916259771,14.797250747680721],[103.98770141601568,14.804961204528809],[103.98217773437528,14.807491302490178],[103.95337677001982,14.817279815673828],[103.94460296630888,14.81931114196783],[103.92092895507818,14.826510429382438],[103.91124725341825,14.833919525146541],[103.90647888183622,14.841769218444938],[103.90451812744163,14.848241806030273],[103.90827941894531,14.853650093078727],[103.90963745117193,14.859371185302678],[103.91716766357433,14.868342399597168],[103.9220809936524,14.871240615844783],[103.91886901855497,14.876881599426326],[103.9221572875976,14.887729644775447],[103.92919158935558,14.90003967285162],[103.92996215820307,14.90315055847168],[103.93907928466825,14.907020568847656],[103.94055175781256,14.911431312561035],[103.94886016845697,14.920121192932243],[103.95292663574219,14.92232990264904],[103.95928955078153,14.94059944152832],[103.96717834472673,14.947429656982479],[103.96997070312528,14.947411537170524],[103.97055816650419,14.962550163268986],[103.96817779541016,14.969099998474235],[103.96975708007818,14.973299980163631],[103.97690582275408,14.977291107177734],[103.97789001464844,14.973060607910213],[103.98338317871088,14.97291088104248],[103.98246002197283,14.977051734924316],[103.98990631103516,14.983551979064998],[103.99595642089838,14.986100196838493],[104.00099945068365,14.990980148315543],[104.00212097167969,15.002429962158146],[103.99681854248053,15.015361785888786],[104.00569915771479,15.01965141296381],[104.01284790039085,15.0184907913208],[104.01486968994158,15.02445125579834],[104.01335144042986,15.027211189270133],[104.01815032958984,15.031499862670898],[104.01518249511747,15.035999298095646],[104.01541137695307,15.040789604187012],[104.0195999145509,15.040641784668082],[104.0231323242188,15.045410156250114],[104.0173416137697,15.050271034240723],[104.0137100219726,15.05753040313732],[104.00749969482428,15.0589017868042],[104.01506042480486,15.065299987792969],[104.0122909545899,15.069401741027775],[104.0217361450197,15.070891380310115],[104.02246093750011,15.077080726623649],[104.01705932617193,15.081260681152457],[104.00367736816412,15.07776927947998],[104.0012893676759,15.080361366271916],[104.00374603271513,15.084600448608455],[103.99578094482416,15.085940361022892],[104.00032806396496,15.092029571533317],[103.99681854248053,15.09586143493658],[103.9991302490235,15.099969863891658],[103.9962158203125,15.107760429382324],[103.99989318847662,15.10946273803711],[103.99585723876959,15.113900184631461],[103.99868774414062,15.120450019836483],[103.99752807617205,15.123981475830078],[103.99140930175798,15.123959541320744],[103.99208831787115,15.134572029113826],[103.99870300292969,15.135068893432617],[104.00267791748064,15.138699531555176],[103.99964904785156,15.141411781310978],[103.99899291992199,15.146471023559627],[103.99569702148443,15.150279998779297],[103.98780822753906,15.153431892395076],[103.98674774169928,15.160141944885254],[103.98107910156244,15.15746974945074],[103.97099304199236,15.162090301513672],[103.97335815429693,15.166170120239371],[103.97106170654303,15.172619819641113],[103.97399902343778,15.17944145202648],[103.96920776367216,15.183441162109432],[103.97197723388672,15.187190055847282],[103.97793579101568,15.189570426940918],[103.98181915283232,15.195261001586914],[103.97969055175787,15.197599411010685],[103.98304748535156,15.201699256896973],[103.9799118041995,15.206489562988281],[103.98284149169939,15.21195125579834],[103.97419738769543,15.218070030212402],[103.9742660522461,15.220721244812069],[103.97904205322266,15.22517013549816],[103.99028015136736,15.223791122436523],[103.99233245849604,15.225931167602482],[103.99507141113281,15.236970901489371],[103.98905944824247,15.246110916137809],[103.99842071533214,15.249352455139103],[103.99877166748075,15.253920555114746],[103.98986816406244,15.25962066650402],[103.9840698242188,15.261151313781738],[103.97857666015653,15.271140098571834],[103.97705078125028,15.279840469360408],[103.98203277587885,15.28083133697504],[103.98277282714872,15.273811340332031],[103.98693847656256,15.273590087890625],[103.99252319335932,15.26832103729248],[103.99687194824247,15.26791954040533],[104.00209808349626,15.273799896240348],[103.99961090087908,15.277489662170467],[103.99912261962913,15.289609909057674],[104.0002212524414,15.295372009277344],[104.00505065917974,15.292790412902832],[104.00717926025419,15.289240837097282],[104.01542663574213,15.291590690612793],[104.01383209228521,15.29677963256836],[104.014389038086,15.30730056762701],[104.01641082763689,15.311770439147892],[104.02149963378918,15.313700675964355],[104.024711608887,15.312039375305176],[104.03108215332048,15.317050933837947],[104.02719879150419,15.324540138244629],[104.02863311767578,15.329169273376522],[104.03481292724615,15.328949928283691],[104.03877258300787,15.3264999389649],[104.04122161865234,15.332481384277457],[104.0459976196289,15.331542015075684],[104.04567718505865,15.338760375976676],[104.04778289794928,15.34037971496582],[104.0543518066408,15.338641166687125],[104.0570373535158,15.341600418090877],[104.06313323974626,15.341630935669002],[104.06389617919939,15.346740722656307],[104.0679016113283,15.348752021789608],[104.07131195068354,15.346620559692496],[104.078109741211,15.35216140747076],[104.08146667480469,15.347819328308049],[104.09230804443376,15.348401069641227],[104.09018707275385,15.35426044464117],[104.08637237548822,15.357031822204704],[104.08750915527338,15.369070053100529],[104.08223724365234,15.371990203857479],[104.08078002929693,15.375390052795524],[104.08682250976562,15.380511283874512],[104.08451843261719,15.383831977844295],[104.07791900634771,15.37936019897461],[104.07277679443388,15.382290840148983],[104.07682037353527,15.386891365051326],[104.07666015625017,15.390051841735954],[104.06237792968767,15.399890899658317],[104.05903625488287,15.403510093689022],[104.0558471679687,15.396560668945426],[104.04955291748041,15.401089668273869],[104.041488647461,15.402061462402457],[104.0362777709961,15.405599594116268],[104.03082275390653,15.402771949768066],[104.02720642089872,15.403031349182186],[104.02189636230463,15.40894985198969],[104.0182418823245,15.407591819763297],[104.01708984375028,15.403031349182186],[104.01280212402344,15.402931213378906],[104.00968170166027,15.406540870666504],[104.0039672851562,15.404790878295898],[104.00393676757841,15.39718055725109],[103.99675750732439,15.392180442810002],[103.9951858520509,15.398710250854549],[103.9898223876956,15.405541419983024],[103.99462890624994,15.427721023559513],[103.99794769287115,15.446890830993766],[104.00196838378912,15.451339721679688],[104.0086593627932,15.4543714523316],[104.02160644531256,15.469431877136287],[104.02938079834001,15.483949661254996],[104.03845977783232,15.490469932556152],[104.04299926757818,15.49153041839611],[104.06324768066435,15.499281883239803],[104.05848693847685,15.507901191711369],[104.0589599609375,15.513870239257926],[104.06495666503935,15.517090797424373],[104.06810760498047,15.5215101242066],[104.07592010498064,15.521259307861328],[104.08006286621105,15.529130935669002],[104.07610321044939,15.537529945373649],[104.08104705810564,15.543242454528752],[104.08470153808594,15.543070793151912],[104.08802795410162,15.548749923705998],[104.09250640869158,15.548439979553166],[104.10388183593778,15.544330596923828],[104.10790252685558,15.548121452331543],[104.10131072998047,15.558049201965446],[104.10063171386747,15.562391281127987],[104.10285949707037,15.566199302673397],[104.1074829101563,15.56703090667736],[104.11995697021501,15.559849739074707],[104.12464904785162,15.561809539795036]]]},"properties":{"ID_0":228,"ISO":"TH-33","NAME_0":"Thailand","ID_1":62,"NAME_1":"Sisaket","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ศรีสะเกษ","VARNAME_1":"Si Sa Ket"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.42327880859403,15.055871009826717],[100.43090820312528,15.049270629882812],[100.44563293457026,15.039249420165959],[100.45627593994169,15.03412055969244],[100.47139739990251,15.029339790344181],[100.4720993041995,15.02250003814703],[100.47000885009794,15.014661788940543],[100.46472167968767,15.001910209655819],[100.45478057861322,14.990280151367301],[100.44873046875,14.99122142791748],[100.4516220092774,14.98265171051031],[100.45204925537115,14.972270011901799],[100.45420837402338,14.962100982666072],[100.4491195678711,14.93989086151123],[100.42682647705084,14.930839538574219],[100.43029022216803,14.923509597778377],[100.4324417114259,14.913981437683162],[100.43136596679688,14.909219741821346],[100.43193054199236,14.897919654846248],[100.43588256835949,14.890930175781364],[100.4403305053711,14.888390541076717],[100.43881225585938,14.883139610290527],[100.4397277832033,14.878501892089957],[100.43701934814464,14.873369216919002],[100.43798065185558,14.86750125885004],[100.44593811035162,14.866491317748967],[100.44748687744169,14.857659339904785],[100.45008850097662,14.856012344360408],[100.45929718017584,14.855540275573674],[100.460258483887,14.843450546264648],[100.468978881836,14.834829330444279],[100.4668273925783,14.83302021026617],[100.46652984619146,14.820739746093864],[100.46856689453125,14.814620018005314],[100.47556304931635,14.804869651794547],[100.47348785400408,14.798770904541016],[100.4743270874024,14.794451713562125],[100.47132873535185,14.786270141601562],[100.47458648681669,14.780350685119572],[100.47602844238287,14.771801948547477],[100.47332000732439,14.767790794372615],[100.47540283203142,14.758970260620117],[100.48291778564476,14.756449699401912],[100.48739624023432,14.752181053161678],[100.48973083496094,14.747051239013672],[100.48487854003935,14.743250846862793],[100.48612976074219,14.737981796264648],[100.47933959960966,14.737258911132812],[100.47905731201172,14.73215198516857],[100.4749374389649,14.728659629821777],[100.47509765625023,14.720851898193473],[100.47106170654297,14.719540596008414],[100.4697875976563,14.71473026275629],[100.46714782714872,14.714200973510799],[100.46376037597673,14.720660209655875],[100.45246124267607,14.724169731140137],[100.43961334228521,14.72649097442627],[100.42151641845709,14.725790977478027],[100.41617584228521,14.726392745971737],[100.41741943359392,14.733309745788574],[100.41488647460966,14.736540794372615],[100.41794586181652,14.740261077880916],[100.41754150390653,14.747420310974178],[100.42388153076166,14.746589660644531],[100.42626190185553,14.750329971313533],[100.41464996337896,14.750711441040096],[100.40812683105474,14.754261970520133],[100.39421844482428,14.74337196350092],[100.38214111328142,14.74120044708252],[100.37776947021484,14.75404071807867],[100.3701782226563,14.763200759887638],[100.36463928222662,14.763599395752067],[100.35655212402338,14.758199691772461],[100.354721069336,14.758710861205998],[100.35124206542986,14.767041206359977],[100.34487152099638,14.767439842224178],[100.34213256835943,14.77313137054449],[100.34380340576189,14.785041809082145],[100.33869934082037,14.788149833679256],[100.33738708496116,14.793290138244743],[100.33238983154297,14.799441337585563],[100.32739257812517,14.799367904663086],[100.31127929687506,14.794479370117188],[100.31520080566423,14.79104042053217],[100.31388092041016,14.787359237670898],[100.3043289184572,14.786440849304313],[100.2995071411134,14.787131309509391],[100.29499816894531,14.780681610107479],[100.29199981689476,14.78390026092535],[100.27826690673851,14.790181159973145],[100.2746200561524,14.796911239624023],[100.26802825927746,14.794561386108512],[100.24899291992205,14.795269966125602],[100.24691009521501,14.796950340270996],[100.23681640625,14.793741226196289],[100.23075866699224,14.78888034820568],[100.22853851318388,14.789620399475154],[100.22521209716803,14.796519279480037],[100.2206726074221,14.795981407165527],[100.21695709228533,14.798559188842887],[100.21533203125023,14.805171012878532],[100.20684051513689,14.807050704956112],[100.20526123046903,14.809028625488338],[100.20948791503918,14.820320129394645],[100.21051025390625,14.832579612731934],[100.2190322875976,14.841790199279785],[100.2174606323245,14.848469734191951],[100.21943664550798,14.852590560913086],[100.21884155273432,14.857460975646973],[100.22135925292986,14.861091613769588],[100.22164916992216,14.866101264953613],[100.2179794311524,14.869679450988883],[100.21820831298834,14.873049736023063],[100.22496795654314,14.879390716552848],[100.22364807128923,14.884491920471135],[100.21752929687517,14.884551048278865],[100.21347808837902,14.88264083862299],[100.2092971801759,14.885681152343807],[100.20783996582031,14.897860527038688],[100.21489715576172,14.89675140380865],[100.22328186035156,14.904140472412166],[100.21745300292997,14.908750534057674],[100.19899749755871,14.902971267700309],[100.1953582763673,14.90283203125],[100.18750000000006,14.906330108642578],[100.18663787841814,14.9162216186524],[100.18299865722673,14.923710823059082],[100.18347930908226,14.934110641479549],[100.1897811889649,14.936970710754451],[100.19579315185564,14.93705081939703],[100.19882202148432,14.939701080322266],[100.20223999023449,14.94773960113531],[100.20302581787126,14.952981948852482],[100.23027801513683,14.94754791259777],[100.2493362426759,14.944341659545898],[100.26100921630876,14.943501472473258],[100.26458740234403,14.948820114135799],[100.27339172363276,14.95116996765131],[100.27458190917969,14.957262039184627],[100.27916717529297,14.961099624633846],[100.2746505737307,14.972430229187125],[100.26139831542986,14.988780021667537],[100.26213836669916,14.993279457092342],[100.27131652832048,15.000248908996639],[100.2698059082033,15.008331298828182],[100.2642822265625,15.010161399841309],[100.25779724121094,15.005971908569336],[100.2531280517581,15.010461807250977],[100.25152587890625,15.018059730529785],[100.24131774902372,15.02388954162609],[100.23705291748053,15.02120113372797],[100.23352050781261,15.023990631103459],[100.22957611083984,15.04446029663086],[100.23381805419945,15.054081916809139],[100.23684692382818,15.056771278381348],[100.24218750000006,15.054459571838379],[100.26058959960949,15.057100296020621],[100.27700042724621,15.065070152282658],[100.28376770019537,15.063030242920036],[100.29480743408203,15.065229415893498],[100.29553222656267,15.070199966430721],[100.29268646240251,15.07592964172369],[100.29448699951195,15.07955074310297],[100.30039215087913,15.084330558776912],[100.30780792236334,15.084971427917594],[100.31920623779314,15.090807914733944],[100.34397125244135,15.109661102294922],[100.35096740722685,15.105050086975154],[100.35443115234386,15.100289344787654],[100.37119293212919,15.094710350036678],[100.38224029541021,15.092350959777832],[100.38696289062506,15.087401390075684],[100.39671325683616,15.080121040344238],[100.4101867675783,15.06676959991455],[100.42327880859403,15.055871009826717]]]},"properties":{"ID_0":228,"ISO":"TH-17","NAME_0":"Thailand","ID_1":63,"NAME_1":"Sing Buri","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สิงห์บุรี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.54222869873053,7.183879852294922],[100.54638671875,7.175833225250244],[100.54701232910179,7.171319961547908],[100.55055236816423,7.1658339500427815],[100.5577774047851,7.160276889801139],[100.54859924316418,7.1519999504089355],[100.54277801513672,7.148611068725586],[100.53107452392572,7.147015094757137],[100.52527618408209,7.148054122924805],[100.52749633789062,7.154445171356258],[100.53346252441429,7.156207084655762],[100.5369415283206,7.160830974578801],[100.53778076171892,7.17117881774908],[100.54222869873053,7.183879852294922]]],[[[100.33666992187528,7.931944847107047],[100.33972167968778,7.9141650199890705],[100.34222412109386,7.903611183166504],[100.34970855712908,7.86447811126709],[100.35610961914068,7.836121082306022],[100.35749816894543,7.827776908874512],[100.36472320556669,7.799167156219596],[100.36777496337919,7.783611774444523],[100.37201690673845,7.76851320266735],[100.37275695800776,7.762245178222656],[100.37617492675793,7.751624107360897],[100.38092803955107,7.730630874633789],[100.38444519042969,7.719167232513371],[100.3897171020509,7.695559978485164],[100.394027709961,7.682639122009391],[100.39537048339866,7.67370700836193],[100.39916992187506,7.660278797149772],[100.40930175781273,7.613203048706168],[100.41220092773466,7.6034212112427895],[100.42028045654314,7.5680561065674965],[100.42583465576172,7.546110153198242],[100.433609008789,7.519165992736873],[100.43981933593773,7.494297981262264],[100.44618225097668,7.472908973693791],[100.45701599121122,7.439444065093994],[100.46389007568388,7.421389102935791],[100.46444702148443,7.418333053588867],[100.47356414794928,7.394355773925781],[100.4752807617188,7.388442039489803],[100.49555206298857,7.3433308601379395],[100.51194763183622,7.309722900390682],[100.51638793945307,7.303334236145076],[100.52834320068365,7.282228946685848],[100.53825378417974,7.267849922180233],[100.54930877685553,7.255973815918082],[100.54889678955084,7.254152774810848],[100.55645751953142,7.248610019683952],[100.56472015380865,7.229444980621338],[100.57527923584013,7.220555782318229],[100.5749588012697,7.213580131530762],[100.57308197021484,7.210409164428711],[100.58156585693388,7.196090221405029],[100.57791900634771,7.190972805023193],[100.56581878662126,7.188744068145866],[100.56301116943365,7.194619178772086],[100.55612182617188,7.19793605804449],[100.5466232299807,7.195972919464111],[100.54551696777372,7.202464103698844],[100.5376815795899,7.212207794189567],[100.52845001220703,7.218560218811092],[100.52326202392572,7.223940849304256],[100.5189208984375,7.2254381179809],[100.51201629638689,7.230535984039307],[100.49723815917974,7.243010044097957],[100.48861694335943,7.249129772186336],[100.47727203369152,7.255771160125846],[100.46856689453125,7.256254196167049],[100.45806884765625,7.251181125640869],[100.441421508789,7.250918865203857],[100.4284210205081,7.245168209076041],[100.42370605468767,7.241720199584961],[100.4083786010745,7.237736225128174],[100.39651489257835,7.225971221923942],[100.38782501220697,7.2119340896606445],[100.39020538330084,7.20172119140625],[100.397445678711,7.2002511024476235],[100.40361022949247,7.196288108825797],[100.41086578369169,7.202363967895565],[100.4121704101563,7.192416191101074],[100.41118621826178,7.188630104064998],[100.41549682617182,7.185400009155217],[100.41324615478516,7.178718090057373],[100.41608428955095,7.174997806549129],[100.42013549804688,7.161529064178467],[100.42554473876982,7.158479213714713],[100.43157196044922,7.157765865325985],[100.43804168701172,7.151749134063834],[100.44190979003929,7.151969909668026],[100.44770812988293,7.147700786590576],[100.45093536376982,7.159317970275993],[100.45323944091808,7.156817913055534],[100.45516967773432,7.14402008056652],[100.46148681640642,7.143451213836784],[100.46694183349638,7.152113914489746],[100.47049713134771,7.154240131378174],[100.47304534912138,7.147062778472957],[100.48374938964855,7.142673015594596],[100.48887634277372,7.13373517990118],[100.49553680419928,7.133390903473014],[100.50430297851568,7.135599136352596],[100.50939178466797,7.138131141662711],[100.53308868408226,7.137288093567008],[100.53712463378935,7.138887882232666],[100.54608917236357,7.139628887176627],[100.55408477783209,7.143807888030949],[100.56090545654303,7.151150226593018],[100.56716156005876,7.153813838958854],[100.56948852539068,7.161011219024658],[100.5774307250976,7.1632609367370605],[100.5908432006836,7.171168804168701],[100.59435272216825,7.180793762207088],[100.58862304687528,7.184679985046444],[100.58994293212896,7.190211772918644],[100.58579254150402,7.204154968261719],[100.58030700683611,7.21442985534668],[100.57693481445318,7.224177837371826],[100.58055877685553,7.229720115661621],[100.5855560302735,7.218887805938834],[100.58873748779297,7.215567111969051],[100.59641265869163,7.2160730361939045],[100.60202789306635,7.205541133880615],[100.61305236816435,7.1880559921265785],[100.61783599853527,7.18291807174694],[100.62286376953125,7.182448863983268],[100.63444519042963,7.162221908569393],[100.64631652832048,7.144255161285514],[100.65951538085943,7.122429847717342],[100.66278076171898,7.118887901306152],[100.67272949218756,7.102880001068229],[100.68383789062511,7.086268901824951],[100.69284820556658,7.074728012085075],[100.69425964355491,7.06961297988903],[100.69916534423828,7.067223072052059],[100.70944213867205,7.0519428253174965],[100.7194442749024,7.03833198547369],[100.73527526855474,7.018054962158317],[100.75639343261719,6.993741035461426],[100.77571105957037,6.976421833038273],[100.7868728637697,6.968164920806828],[100.80663299560575,6.9562110900879475],[100.81639099121105,6.95333385467535],[100.82934570312528,6.951185226440373],[100.83171844482422,6.952154159545898],[100.83855438232439,6.960213184356746],[100.84365081787138,6.95945405960083],[100.84918212890653,6.9621291160584065],[100.89200592041016,6.922894001007137],[100.90912628173845,6.908699989318961],[100.93389129638683,6.890554904937801],[100.9518814086914,6.880159854888973],[100.96138763427751,6.875821113586369],[100.9672241210938,6.871109962463493],[100.96971130371122,6.871538162231559],[100.98498535156278,6.863347053527889],[101.00473022460938,6.8561110496521565],[101.01874542236357,6.853234767913875],[101.02138519287115,6.851109981536979],[101.03221893310553,6.850553989410514],[101.03852081298834,6.853652000427303],[101.05333709716814,6.854721069335881],[101.0629272460938,6.856790065765381],[101.0635375976563,6.852330207824821],[101.04875183105486,6.84735012054449],[101.04308319091803,6.841640949249324],[101.05275726318376,6.834469795227051],[101.06156158447266,6.832251071930045],[101.06523132324241,6.8260698318481445],[101.06150054931635,6.819971084594783],[101.06122589111351,6.8118300437927815],[101.05679321289062,6.803569793701172],[101.0500793457033,6.798631191253662],[101.04265594482439,6.796010017395076],[101.03926086425781,6.788499832153377],[101.02908325195307,6.7789387702941895],[101.02786254882818,6.769340038299674],[101.03292846679705,6.759840011596793],[101.02725982666021,6.753699779510612],[101.03263854980474,6.7453699111939045],[101.03086853027344,6.738609790802116],[101.02324676513678,6.732871055603027],[101.01951599121122,6.727590084075928],[101.02027893066435,6.723741054534969],[101.03276062011719,6.720071792602653],[101.05245208740257,6.7191600799561115],[101.05767059326183,6.7148499488831135],[101.06165313720732,6.685330867767448],[101.0581665039063,6.676908969879207],[101.05848693847673,6.6710400581361],[101.06976318359375,6.661688804626465],[101.08120727539062,6.648859977722168],[101.08574676513689,6.642439842224121],[101.09329223632818,6.6400117874146645],[101.10592651367199,6.63109016418457],[101.10798645019537,6.628660202026367],[101.10138702392595,6.625791072845516],[101.09706115722662,6.617700099945125],[101.08843994140642,6.613090991973934],[101.09304809570312,6.6054401397706215],[101.10093688964872,6.602039813995361],[101.10933685302763,6.595321178436336],[101.11234283447288,6.58738899230957],[101.10768890380876,6.583761215210018],[101.09729766845709,6.579191207885856],[101.09298706054682,6.574950218200684],[101.08640289306663,6.571351051330566],[101.08213043212908,6.565639972686768],[101.07953643798851,6.554288864135742],[101.07324981689476,6.550749778747615],[101.07153320312523,6.546590805053825],[101.06725311279314,6.543830871582031],[101.05947875976562,6.542020797729606],[101.041069030762,6.539999008178711],[101.04157257080084,6.532861232757682],[101.04026031494146,6.523571014404297],[101.03703308105474,6.515519142150936],[101.03060150146479,6.505081176757926],[101.02381896972662,6.498931884765682],[101.01654052734375,6.49780082702631],[101.01332855224615,6.493329048156795],[101.00672912597685,6.488591194152946],[101.0062484741211,6.485371112823543],[100.99623107910185,6.481659889221135],[100.98834991455084,6.485040187835693],[100.97782897949219,6.486481189727897],[100.9730300903322,6.476030826568717],[100.97335815429716,6.468278884887809],[100.96534729003935,6.466060161590633],[100.96324157714872,6.463211059570369],[100.96083831787126,6.451320171356201],[100.95197296142607,6.449760913848877],[100.9525070190432,6.445540904998779],[100.9478988647461,6.442360877990836],[100.94232940673845,6.443890094757023],[100.93270874023466,6.444271087646541],[100.927490234375,6.436611175537166],[100.91985321044922,6.419711112976188],[100.91931152343756,6.409750938415527],[100.91697692871094,6.397459983825797],[100.91863250732433,6.39129018783575],[100.92189788818354,6.388790130615348],[100.91987609863287,6.382250785827694],[100.92189788818354,6.380928993225211],[100.92272949218756,6.372129917144832],[100.92652130126953,6.370039939880314],[100.92703247070307,6.364991188049316],[100.92559051513678,6.355391979217586],[100.92079162597656,6.35565090179449],[100.92180633544945,6.3497419357299805],[100.92028808593756,6.34624099731451],[100.92813873291044,6.33157920837408],[100.92283630371088,6.320380210876522],[100.91638183593767,6.316380023956356],[100.91501617431635,6.311559200286865],[100.9096069335938,6.3037810325623695],[100.89743041992216,6.303181171417236],[100.89292907714861,6.300980091094971],[100.88846588134794,6.296360015869141],[100.88494110107422,6.296811103820801],[100.8709793090822,6.293971061706657],[100.86396789550781,6.296720027923584],[100.85942077636724,6.293510913848877],[100.8490371704101,6.2886791229248615],[100.84584045410156,6.292191028594971],[100.84349822998041,6.2989897727967445],[100.84297180175781,6.306829929351807],[100.84768676757807,6.310101032257137],[100.8484497070312,6.315069198608512],[100.84465026855463,6.31837177276617],[100.84749603271479,6.3257508277893635],[100.84870147705078,6.334568977355957],[100.84870147705078,6.34401178359991],[100.84729766845714,6.353850841522274],[100.84140014648432,6.356938838958683],[100.83760070800798,6.3549699783325195],[100.83360290527361,6.347700119018498],[100.82879638671886,6.3472819328308105],[100.82762145996122,6.351480960846061],[100.82219696044922,6.355970859527702],[100.82241058349615,6.363750934600944],[100.82113647460966,6.367889881134033],[100.82395935058616,6.384830951690731],[100.82122039794939,6.399499893188477],[100.8237915039063,6.406161785125732],[100.82160949707031,6.41664981842041],[100.82550811767584,6.420829772949219],[100.82330322265642,6.430010795593375],[100.81859588623053,6.437360763549805],[100.80829620361334,6.444834232330322],[100.7865829467774,6.454301834106502],[100.7819595336914,6.455360889434871],[100.77693176269526,6.463050842285213],[100.77108001708984,6.456730842590446],[100.76548004150385,6.455379962921143],[100.7524032592774,6.459260940551815],[100.7462997436524,6.469780921936149],[100.74299621582048,6.488248825073356],[100.74359893798828,6.504611015319824],[100.74060058593773,6.507820129394531],[100.73403167724626,6.510119915008602],[100.7324829101562,6.5056090354918865],[100.72494506835943,6.495385169983024],[100.7195205688476,6.490900039672852],[100.71747589111328,6.484475135803336],[100.71234893798834,6.480801105499324],[100.70909881591797,6.471478939056453],[100.70372772216814,6.470079898834285],[100.6974029541015,6.470629215240535],[100.69457244873064,6.4653010368348305],[100.68888092041016,6.464440822601318],[100.68560028076189,6.460960865020695],[100.68419647216825,6.453911781311092],[100.6765823364259,6.4539408683776855],[100.66970825195341,6.451681137084961],[100.66329193115251,6.4512410163879395],[100.65226745605474,6.4434709548950195],[100.64253234863281,6.4497017860413735],[100.64570617675776,6.452569007873592],[100.6455383300783,6.458340167999381],[100.63620758056658,6.457489967346191],[100.61708068847668,6.459650993347168],[100.61396789550787,6.4649910926819985],[100.60804748535179,6.470930099487305],[100.60315704345714,6.469099998474178],[100.59836578369169,6.473910808563289],[100.59041595459001,6.478700160980338],[100.58644104003906,6.478491783142147],[100.57399749755854,6.482769966125488],[100.57009887695318,6.487821102142334],[100.56169891357445,6.49540996551525],[100.55168914794939,6.490470886230469],[100.54881286621088,6.484671115875301],[100.54252624511713,6.490300178527946],[100.53763580322271,6.487370014190617],[100.5324096679687,6.489521026611442],[100.52742767333996,6.486849784851188],[100.52137756347673,6.492080211639404],[100.51811981201189,6.491260051727352],[100.50882720947266,6.496471881866569],[100.5064086914063,6.502521038055477],[100.50340270996105,6.501369953155574],[100.4945068359375,6.518221855163631],[100.4956970214846,6.520830154418945],[100.48925781250028,6.525101184844971],[100.48271179199224,6.52223110198986],[100.47936248779308,6.5235209465026855],[100.468521118164,6.5209088325501625],[100.46672821044928,6.52475023269659],[100.46157836914068,6.527301788330192],[100.45786285400408,6.531309127807674],[100.45390319824224,6.528291225433463],[100.44248199462913,6.525680065155086],[100.42861938476591,6.5196809768677895],[100.42389678955095,6.514579772949332],[100.41908264160185,6.518768787384033],[100.41490936279291,6.51977014541626],[100.40920257568354,6.524209022521973],[100.3949813842774,6.53125],[100.38562774658209,6.531061172485465],[100.37825775146513,6.5361409187316895],[100.37554168701195,6.535190105438346],[100.36615753173828,6.539310932159424],[100.35946655273438,6.5465788841248695],[100.35861206054716,6.55587100982666],[100.3536071777346,6.560541152954158],[100.35388183593744,6.570496082305908],[100.3136978149414,6.603960990905875],[100.31420135498058,6.6098909378052895],[100.32389831542997,6.615559101104736],[100.32669830322271,6.622480869293213],[100.32279968261713,6.642280101776237],[100.32470703124994,6.654297828674316],[100.32506561279308,6.6631269454956055],[100.31909179687523,6.6674799919129555],[100.30371093750011,6.67510890960699],[100.29913330078136,6.679539203643856],[100.29589843749994,6.6869311332703205],[100.29540252685553,6.698380947113094],[100.29660034179693,6.7031102180481525],[100.29560089111334,6.7086901664734455],[100.28990173339866,6.710630893707275],[100.28528594970703,6.7079758644104],[100.2784957885745,6.70805120468151],[100.27227783203142,6.69592189788824],[100.27281188964855,6.69160985946661],[100.26129150390648,6.694273948669547],[100.2609252929688,6.707275867462215],[100.25830078125011,6.71032810211193],[100.25347900390648,6.70672702789301],[100.25329589843756,6.698485851287899],[100.25128173828142,6.69592189788824],[100.24468994140648,6.696716785430908],[100.23564910888689,6.694214820861873],[100.2284011840822,6.70313119888317],[100.21549987792974,6.720469951629639],[100.20503234863304,6.725989818573055],[100.20704650878923,6.732289791107291],[100.20642852783214,6.74745082855236],[100.20704650878923,6.750629901885986],[100.21376037597656,6.758440971374625],[100.20947265625011,6.766290187835807],[100.20150756835955,6.770330905914307],[100.1989364624024,6.781661033630371],[100.19399261474638,6.787390232086295],[100.19330596923845,6.797310829162711],[100.1908264160158,6.808821201324463],[100.19599914550781,6.815050125122184],[100.19503021240251,6.827040195465145],[100.19825744628923,6.835990905761832],[100.20861816406256,6.8458800315856365],[100.21253204345714,6.858160018920898],[100.22056579589838,6.870380878448486],[100.21682739257818,6.880060195922908],[100.2122421264649,6.884541034698486],[100.20855712890642,6.8935799598694985],[100.20182800292997,6.899731159210319],[100.19606781005882,6.903019905090389],[100.18679809570307,6.911300182342529],[100.18235015869146,6.913088798523006],[100.17675018310547,6.912321090698242],[100.16635131835966,6.913220882415828],[100.15666198730463,6.919180870056152],[100.14785003662138,6.923410892486572],[100.13178253173851,6.922520160675106],[100.12220764160156,6.923830986022892],[100.11801147460938,6.937338829040527],[100.10917663574213,6.9432811737061115],[100.09601593017572,6.961111068725586],[100.09398651123053,6.966119766235465],[100.08982086181663,6.969140052795524],[100.08503723144537,6.969920158386287],[100.07929229736328,6.975820064544791],[100.07853698730474,6.9855108261109535],[100.08255004882818,6.99315977096569],[100.08290100097656,6.997910022735596],[100.07013702392578,7.0094599723817055],[100.06389617919928,7.013600826263541],[100.06289672851568,7.019528865814323],[100.06595611572271,7.025630950927791],[100.06442260742193,7.031799793243522],[100.07522583007807,7.033751010894775],[100.0791015625,7.040670871734676],[100.07572174072271,7.042911052703971],[100.0739517211914,7.047740936279354],[100.06980133056663,7.050240993499813],[100.06378936767595,7.057209968566838],[100.0645217895509,7.0633888244629475],[100.0601882934572,7.068861007690373],[100.06253051757818,7.0770211219788735],[100.06207275390642,7.081490039825496],[100.0586318969726,7.085731983184871],[100.0547485351563,7.09387922286993],[100.0571517944336,7.103510856628361],[100.05651092529308,7.107401847839412],[100.06581115722662,7.108809947967643],[100.0638427734375,7.116240024566764],[100.06501007080084,7.121429920196647],[100.0601882934572,7.125720977783203],[100.06304931640642,7.13733100891119],[100.0683670043947,7.139180183410758],[100.074028015137,7.146280765533561],[100.08341217041027,7.145921230316162],[100.09543609619135,7.150809764862174],[100.09835815429688,7.15467977523798],[100.10518646240251,7.159190177917594],[100.1062774658206,7.162180900573787],[100.11136627197288,7.165320873260441],[100.12010192871094,7.165859222412223],[100.12567138671898,7.161640167236385],[100.1335830688476,7.157979965209961],[100.13552093505876,7.153268814086857],[100.1466064453125,7.1488800048828125],[100.15056610107416,7.1513800621032715],[100.15619659423851,7.148731231689396],[100.16159820556652,7.155429840087891],[100.16490936279297,7.155520915985107],[100.16528320312517,7.16212987899786],[100.1699905395509,7.164630889892578],[100.17064666748047,7.168910980224723],[100.17468261718756,7.1751599311828045],[100.18714904785185,7.177190780639762],[100.19352722167969,7.1822509765625],[100.19789886474626,7.180809974670467],[100.20038604736328,7.183780193328857],[100.20501708984398,7.183619976043758],[100.20732879638678,7.1867308616637615],[100.21190643310553,7.186079978942928],[100.21581268310564,7.1901087760924725],[100.22367095947266,7.193580150604248],[100.23554229736351,7.194571971893367],[100.2419509887697,7.193009853363151],[100.24991607666027,7.199380874633903],[100.25904083251982,7.1978697776795],[100.26087188720703,7.200981140136776],[100.26589202880865,7.203020095825309],[100.27574157714844,7.198390960693359],[100.27945709228544,7.204989910125789],[100.28514099121116,7.210721969604606],[100.29489135742216,7.211249828338737],[100.30207061767578,7.209159851074219],[100.30660247802751,7.211389064788818],[100.31591796875011,7.2305707931518555],[100.3219604492188,7.235751152038574],[100.3344192504884,7.240080833435115],[100.33370971679688,7.243570804596061],[100.34046936035162,7.249330043792725],[100.34117889404303,7.2539801597595215],[100.33618164062517,7.265659809112606],[100.3366394042971,7.271201133728141],[100.34004211425787,7.274169921875],[100.34677124023466,7.275551795959473],[100.35555267334013,7.274798870086727],[100.36035919189464,7.276971817016658],[100.36177062988281,7.280361175537109],[100.35843658447277,7.283979892730713],[100.3555297851563,7.292540073394775],[100.35647583007835,7.298541069030819],[100.3623275756836,7.303409099578914],[100.37158203125028,7.304221153259391],[100.37442016601568,7.311110973358211],[100.37847137451183,7.3103699684143635],[100.37725830078148,7.30548095703125],[100.37898254394537,7.296949863433838],[100.38305664062494,7.290430068969727],[100.38192749023432,7.282701015472412],[100.38492584228544,7.275691032409782],[100.3955917358399,7.268081188202018],[100.40106201171875,7.262541770935059],[100.40637969970703,7.263444900512752],[100.40707397460949,7.26935005187994],[100.41534423828125,7.276478767395076],[100.42475128173851,7.2804718017578125],[100.42646789550804,7.289030075073242],[100.42646789550804,7.299297809600944],[100.42845916748041,7.30899286270153],[100.41990661621111,7.318120956421012],[100.41448974609403,7.33295202255249],[100.40222167968756,7.376303195953369],[100.39936828613287,7.4011178016663735],[100.39052581787126,7.442331790924015],[100.39794158935541,7.483117103576717],[100.39337921142595,7.506787776947078],[100.3725891113283,7.543025970458984],[100.33456420898466,7.539475917816219],[100.31428527832037,7.498913764953727],[100.29602813720709,7.457334995269775],[100.28335571289062,7.463926792144889],[100.25597381591803,7.493843078613395],[100.23518371582037,7.523758888244686],[100.22910308837919,7.58967304229742],[100.22656250000006,7.6713080406188965],[100.20775604248058,7.780860900878963],[100.20073699951189,7.778151035308838],[100.19534301757841,7.779050827026424],[100.19391632080078,7.782139778137321],[100.18766784667991,7.782259941101131],[100.1819076538086,7.785971164703369],[100.18367004394554,7.790369987487793],[100.18303680419922,7.795851230621281],[100.1792602539063,7.800250053405705],[100.17204284667974,7.804961204528809],[100.16406250000028,7.805230140686035],[100.15276336669945,7.80915021896368],[100.14554595947294,7.809061050415039],[100.13182830810575,7.803450107574577],[100.1270370483399,7.800680160522575],[100.13031005859403,7.811160087585449],[100.13318634033214,7.816950798034725],[100.13741302490251,7.834550857544059],[100.13757324218761,7.839830875396672],[100.14054870605491,7.857619762420711],[100.14119720458996,7.8664112091063885],[100.14392852783203,7.869651794433594],[100.15474700927746,7.873580932617301],[100.15914154052729,7.873589992523193],[100.16532897949224,7.877669811248893],[100.17836761474638,7.882569789886475],[100.19599914550781,7.887071132660026],[100.21351623535173,7.8927302360535805],[100.22306823730486,7.8937602043151855],[100.2389526367188,7.900349140167236],[100.24385070800798,7.904820919036922],[100.2452163696289,7.914480209350643],[100.24700164794928,7.916460990905762],[100.25514221191406,7.915309906005859],[100.27928161621105,7.913329124450684],[100.29312133789068,7.915841102600098],[100.30757904052734,7.9138808250427815],[100.30686187744146,7.923618793487549],[100.30934906005882,7.927509784698543],[100.31147003173834,7.935689926147518],[100.31588745117216,7.936999797821045],[100.31967163085943,7.935070037841854],[100.32028198242216,7.92952919006359],[100.32756805419916,7.9315710067748455],[100.33666992187528,7.931944847107047]]]]},"properties":{"ID_0":228,"ISO":"TH-90","NAME_0":"Thailand","ID_1":64,"NAME_1":"Songkhla","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สงขลา","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.89839935302746,17.805120468139762],[99.90187835693376,17.795480728149528],[99.90721130371111,17.791509628295955],[99.91426849365251,17.792688369750977],[99.92344665527344,17.785509109497127],[99.92331695556663,17.77942085266119],[99.92745208740234,17.772649765014705],[99.9239807128908,17.76628112792963],[99.91429901123047,17.762491226196403],[99.92189788818376,17.74699020385748],[99.92749786376976,17.7423610687257],[99.93212890625028,17.742481231689567],[99.9375305175783,17.734659194946232],[99.94152832031267,17.73316955566412],[99.94288635253923,17.72867965698248],[99.94776916503935,17.721830368041992],[99.95327758789068,17.717769622802734],[99.95767211914091,17.716751098632812],[99.96566772460943,17.709299087524357],[99.96858215332043,17.70157241821289],[99.96833801269537,17.69399070739746],[99.9701309204101,17.690111160278377],[99.9698410034182,17.68289947509777],[99.97583007812511,17.670570373535156],[99.9759368896485,17.659650802612305],[99.97856140136719,17.65489959716797],[99.97605895996111,17.64594078063965],[99.97187805175798,17.642040252685547],[99.96723937988293,17.63148117065441],[99.96907043457037,17.627029418945256],[99.9737091064456,17.62225914001465],[99.97457885742188,17.618400573730582],[99.9632110595706,17.611530303955078],[99.95703125,17.60328292846674],[99.94357299804716,17.592292785644645],[99.9398269653322,17.59005928039562],[99.92716217041044,17.586759567260742],[99.92518615722662,17.584289550781364],[99.92752075195318,17.56545829772955],[99.93710327148449,17.554540634155273],[99.94328308105469,17.54185295104986],[99.94184112548857,17.535688400268555],[99.93885040283197,17.5339412689209],[99.93408203124994,17.5239200592041],[99.92778778076166,17.51935958862299],[99.93750762939447,17.509189605712947],[99.94333648681663,17.505270004272575],[99.95532989501959,17.499229431152457],[99.96363067626964,17.496919631958065],[99.97617340087919,17.49020004272461],[99.98290252685541,17.485420227050838],[99.98855590820318,17.476289749145565],[99.98845672607439,17.470001220703182],[99.99228668212908,17.46426010131836],[99.9984893798831,17.463701248169002],[99.99977111816412,17.459329605102596],[100.00464630126947,17.456039428710994],[100.0039672851563,17.451250076293945],[99.99993896484375,17.449071884155273],[99.99787902832054,17.44028091430664],[100.00096893310575,17.431648254394588],[99.99922943115257,17.42434120178217],[100.00372314453142,17.421150207519588],[100.00520324707043,17.41726112365734],[99.9973068237307,17.4141902923584],[99.99597930908226,17.407470703125114],[99.99224090576183,17.404510498046875],[99.99089813232433,17.399379730224723],[99.99970245361345,17.39104270935053],[100.00486755371111,17.389129638671932],[100.00985717773438,17.381750106811523],[100.01120758056646,17.37594985961914],[100.00794982910156,17.37108993530279],[100.0013885498048,17.36618995666504],[100.00624847412115,17.364120483398494],[100.00907135009783,17.356971740722656],[100.00199890136736,17.35188293457037],[100.00934600830084,17.340570449829215],[100.0117263793947,17.335180282592773],[100.01526641845709,17.332298278808707],[100.0157699584961,17.3253498077392],[100.00978851318371,17.31017112731928],[100.0065231323245,17.30574035644537],[100.00164031982422,17.29475975036621],[99.99481964111334,17.28807067871105],[99.98808288574236,17.288652420044002],[99.9751586914063,17.28717041015625],[99.96808624267578,17.279069900512752],[99.96597290039062,17.27172088623047],[99.96710968017595,17.261520385742244],[99.96454620361357,17.256929397583008],[99.96675872802734,17.2498397827149],[99.96544647216803,17.246288299560547],[99.95791625976557,17.241559982299805],[99.96521759033203,17.239419937133846],[99.97141265869169,17.243448257446346],[99.97776031494135,17.243160247802848],[99.97601318359386,17.23788070678711],[99.97064208984403,17.2332706451416],[99.96019744873058,17.228889465332088],[99.96895599365246,17.224700927734432],[99.97263336181658,17.220640182495174],[99.98295593261719,17.21380043029785],[99.9798889160158,17.20614051818842],[99.97669219970709,17.203149795532227],[99.97463989257818,17.19675827026373],[99.97866058349638,17.18741035461437],[99.97799682617188,17.17581748962408],[99.98095703125028,17.171632766723633],[99.97354125976574,17.163230895996094],[99.96808624267578,17.166469573974723],[99.95722961425787,17.168252944946346],[99.95440673828148,17.164571762085018],[99.95932006835938,17.157350540161133],[99.95540618896513,17.15300941467291],[99.96212005615229,17.14265823364252],[99.9611892700197,17.13323974609375],[99.96440124511713,17.123640060424748],[99.96076965332043,17.11721992492687],[99.95606231689453,17.116250991821403],[99.95112609863287,17.112749099731502],[99.95059967041021,17.105909347534123],[99.9520874023438,17.098190307617188],[99.95524597167963,17.093971252441406],[99.9508666992187,17.078660964965877],[99.9594802856447,17.077199935913143],[99.9649963378908,17.069490432739315],[99.97296142578136,17.071090698242188],[99.97663879394548,17.075508117675838],[99.9856185913086,17.081321716308707],[99.98822021484386,17.07722091674816],[99.99584960937511,17.077159881591854],[99.9978103637697,17.069179534912223],[99.998550415039,17.057529449462947],[100.00598144531244,17.055601119995117],[100.00876617431663,17.05328941345215],[100.00757598876953,17.0491104125976],[100.01345062255876,17.035451889038143],[100.01772308349632,17.031040191650504],[100.02941131591825,17.028600692749137],[100.0335311889649,17.025730133056754],[100.03322601318388,17.020969390869084],[100.0410614013673,17.019210815429688],[100.04480743408226,17.012041091919002],[100.05399322509794,17.008089065551815],[100.06632232666016,17.011840820312557],[100.07065582275408,17.009630203247184],[100.077896118164,17.000061035156364],[100.0782089233399,16.99398994445812],[100.08821105957048,16.99279975891119],[100.0945663452149,16.98828125],[100.0976486206057,16.98373985290533],[100.10206604003935,16.982299804687614],[100.10108947753912,16.976730346679744],[100.10614013671892,16.968490600585938],[100.10730743408203,16.956750869751033],[100.11042022705101,16.941980361938477],[100.1127471923831,16.936420440673885],[100.10933685302746,16.934890747070312],[100.10801696777355,16.92778968811041],[100.11216735839872,16.920539855957145],[100.11071777343767,16.91562080383312],[100.10334014892584,16.916259765625057],[100.09912872314453,16.907989501953125],[100.10024261474626,16.90043067932129],[100.09664154052734,16.895349502563533],[100.08924102783226,16.892940521240348],[100.08349609375006,16.888931274414062],[100.0775985717774,16.89328193664562],[100.07321929931663,16.887790679931754],[100.06752014160162,16.884799957275334],[100.06088256835966,16.88770103454584],[100.05531311035162,16.887760162353572],[100.04596710205084,16.89339828491211],[100.03211212158197,16.891799926757812],[100.01381683349626,16.890951156616154],[100.009506225586,16.88894081115717],[100.00894165039085,16.882480621338004],[100.01007843017584,16.873918533325195],[100.00808715820307,16.868682861328068],[100.01201629638678,16.866029739379996],[100.01673889160162,16.866319656372127],[100.02287292480491,16.860591888427734],[100.01873779296886,16.852460861206055],[100.00580596923845,16.850032806396598],[100.00292968749994,16.854368209838867],[100.00093078613304,16.862041473388786],[99.99624633789074,16.865600585937614],[99.9905776977539,16.86635971069336],[99.9783172607423,16.862190246581974],[99.97547149658197,16.860181808471793],[99.95796203613281,16.85886955261242],[99.95310211181669,16.85728263854986],[99.9503402709961,16.841011047363224],[99.94613647460938,16.834421157836914],[99.9428787231447,16.824811935424805],[99.93675231933588,16.818611145019588],[99.91709899902338,16.806480407714957],[99.9120712280274,16.801549911499023],[99.91565704345709,16.790580749511776],[99.92137908935553,16.782640457153377],[99.92327117919922,16.77334022521984],[99.92172241210938,16.762809753417912],[99.9080200195313,16.760721206665153],[99.89141082763672,16.76167106628418],[99.88874053955078,16.76589012145996],[99.87995147705078,16.76661109924322],[99.87387084960938,16.763891220092887],[99.86962127685564,16.75757980346674],[99.8692092895509,16.753791809082088],[99.86467742919939,16.743110656738338],[99.8577423095706,16.734939575195426],[99.85105895996122,16.726219177246094],[99.84580993652344,16.713638305664062],[99.83654022216803,16.71428108215332],[99.83059692382818,16.717269897460938],[99.83014678955095,16.722320556640682],[99.82447814941412,16.71953964233404],[99.81832885742205,16.719961166381893],[99.8135986328125,16.71450042724615],[99.80747985839844,16.710020065307674],[99.811576843262,16.701200485229492],[99.80520629882812,16.696859359741268],[99.80358123779325,16.69032096862793],[99.79934692382818,16.689132690429744],[99.79321289062506,16.68434906005865],[99.78460693359375,16.68418121337902],[99.78045654296898,16.686571121215763],[99.77507781982428,16.686450958251953],[99.77069854736334,16.68264007568365],[99.76306152343756,16.685409545898438],[99.75945281982428,16.68857192993164],[99.74858856201195,16.694999694824276],[99.73693847656256,16.70656013488781],[99.73248291015642,16.70771980285656],[99.72853088378906,16.72150039672863],[99.72592926025419,16.726270675659237],[99.71720886230463,16.720701217651424],[99.7084197998048,16.72330093383789],[99.70703125000006,16.71791839599615],[99.69664001464861,16.714969635009822],[99.69754791259777,16.719881057739315],[99.69548034667986,16.724250793457145],[99.69567108154314,16.72982978820812],[99.68869781494163,16.729801177978572],[99.67822265625023,16.72671127319336],[99.67156982421903,16.73365974426281],[99.66397857666027,16.737951278686637],[99.6560668945313,16.744211196899414],[99.65178680419916,16.744899749755916],[99.64689636230469,16.742139816284293],[99.63520812988298,16.75014114379877],[99.63185882568382,16.75471115112299],[99.62323760986328,16.757209777832088],[99.61798095703153,16.76210975646967],[99.61609649658214,16.766548156738338],[99.60974884033226,16.77351951599121],[99.60646057128906,16.78045082092285],[99.60649108886741,16.785369873046875],[99.5995864868164,16.788621902465763],[99.59651184082048,16.793031692504883],[99.59642791748075,16.79873085021967],[99.59166717529325,16.806070327758846],[99.58580017089838,16.810792922973633],[99.5789794921875,16.82730293273937],[99.5831375122072,16.832599639892578],[99.58264160156256,16.843580245971737],[99.58023071289091,16.853031158447322],[99.5707778930664,16.856428146362248],[99.55703735351562,16.85802841186529],[99.55243682861345,16.86194038391119],[99.54059600830072,16.860870361328125],[99.52400970459001,16.861547470092887],[99.5200805664063,16.866041183471737],[99.51583862304688,16.86610031127924],[99.51158905029308,16.882591247558537],[99.50920104980474,16.88590049743658],[99.49987792968773,16.889789581298828],[99.49842834472668,16.89474105834961],[99.49054718017584,16.906829833984318],[99.48723602294922,16.907400131225586],[99.474105834961,16.900819778442383],[99.46842956542974,16.895719528198185],[99.46673583984403,16.886209487915096],[99.46206665039062,16.877450942993278],[99.45333099365257,16.875459671020508],[99.44496154785162,16.8832626342774],[99.43840026855469,16.880319595337028],[99.42720794677757,16.879091262817383],[99.42729949951166,16.883359909057617],[99.43132019042986,16.889169692993164],[99.43653106689459,16.89192008972168],[99.44050598144531,16.902099609375],[99.44651794433622,16.907670974731445],[99.4412078857423,16.911529541015682],[99.43699645996105,16.917129516601506],[99.43414306640636,16.927869796752987],[99.4278869628908,16.93062973022461],[99.42040252685558,16.931631088256836],[99.41499328613304,16.93964958190918],[99.41336059570324,16.950849533081055],[99.42002868652355,16.953060150146598],[99.42090606689476,16.955320358276424],[99.41818237304688,16.96703910827631],[99.41316986083996,16.972431182861385],[99.41256713867216,16.978321075439453],[99.41683959960955,16.982168197631836],[99.41771697998075,16.98686027526867],[99.42510223388695,16.993312835693303],[99.4300384521485,16.999658584594783],[99.43306732177734,17.010091781616268],[99.42479705810558,17.01030158996582],[99.42531585693365,17.013870239257812],[99.42111968994146,17.016450881958065],[99.41602325439464,17.01558113098139],[99.40625762939482,17.01984024047846],[99.3984985351562,17.02009010314947],[99.39501190185575,17.023870468139762],[99.3925323486331,17.033760070800838],[99.3935623168947,17.04561996459961],[99.39079284667974,17.055681228637695],[99.3878479003908,17.059730529785213],[99.38787841796875,17.067541122436637],[99.39475250244146,17.076259613037223],[99.39434814453125,17.08040809631359],[99.3866424560548,17.081090927124137],[99.38304138183588,17.086999893188533],[99.37905120849626,17.08991050720215],[99.368408203125,17.093120574951172],[99.36200714111357,17.088279724121094],[99.35115814209013,17.09171104431158],[99.34062957763678,17.08947944641119],[99.3328399658206,17.096639633178768],[99.33049011230474,17.101860046386776],[99.32231903076178,17.109119415283203],[99.32118988037138,17.11575126647955],[99.32221221923845,17.124330520629883],[99.3303909301759,17.131660461425895],[99.32695770263683,17.136230468750114],[99.31877899169939,17.137100219726562],[99.31516265869158,17.142070770263786],[99.31842041015642,17.147310256958065],[99.319877624512,17.155860900878963],[99.31887817382835,17.164461135864315],[99.31469726562506,17.171300888061637],[99.31117248535173,17.18408012390148],[99.31443786621094,17.186119079589844],[99.31752777099632,17.2035427093507],[99.32080078125006,17.20649909973156],[99.31542968750023,17.213979721069393],[99.32112121582031,17.22410011291504],[99.32057952880882,17.23242950439453],[99.32189941406256,17.238819122314453],[99.31916809082048,17.260038375854492],[99.31655883789068,17.267391204834098],[99.32273864746122,17.267610549926758],[99.33199310302734,17.26408004760748],[99.34162902832043,17.26568031311035],[99.341781616211,17.261781692504996],[99.34925842285168,17.2533416748048],[99.35202026367188,17.253730773925895],[99.35974121093778,17.246770858764705],[99.361801147461,17.237091064453182],[99.36691284179693,17.232700347900334],[99.37094879150413,17.225870132446346],[99.37040710449247,17.22015953063959],[99.37323760986351,17.212949752807617],[99.37866210937494,17.208259582519588],[99.39093780517584,17.2054901123048],[99.39778137207031,17.206819534301815],[99.4013214111331,17.21856117248535],[99.40627288818388,17.217548370361385],[99.42220306396484,17.218059539794922],[99.42002105712902,17.222520828247184],[99.4283294677735,17.229049682617244],[99.43319702148449,17.230058670044002],[99.43588256835932,17.227720260620174],[99.44077301025396,17.228479385375977],[99.44484710693354,17.24082756042486],[99.44406890869152,17.25127029418951],[99.4537277221682,17.250078201294002],[99.45706939697283,17.25255012512207],[99.45655822753912,17.264411926269645],[99.45427703857428,17.266439437866268],[99.45503234863287,17.273910522460994],[99.45307159423845,17.27923965454096],[99.4533386230471,17.29401969909668],[99.45754241943382,17.304550170898438],[99.46302795410156,17.308790206909293],[99.46573638916038,17.313159942627067],[99.47815704345709,17.32452011108404],[99.47776031494163,17.339958190918082],[99.4755325317384,17.34452056884777],[99.47445678710938,17.35384750366211],[99.47209930419933,17.354562759399414],[99.47322845459013,17.36191940307623],[99.469711303711,17.367111206054688],[99.46066284179699,17.367750167846793],[99.45063018798828,17.374532699585018],[99.44638061523455,17.37949943542486],[99.44442749023466,17.385610580444393],[99.44020843505888,17.389190673828068],[99.43093109130876,17.390850067138672],[99.43187713623041,17.399509429931697],[99.42874145507835,17.406459808349553],[99.43141937255865,17.416271209716854],[99.43997192382818,17.418510437011832],[99.44233703613293,17.42291069030756],[99.44296264648455,17.433708190918026],[99.4376831054688,17.43190956115734],[99.433837890625,17.433290481567326],[99.4293670654298,17.439279556274414],[99.42253112792963,17.44069862365734],[99.41587829589861,17.44822120666504],[99.41896057128906,17.45416069030773],[99.4083099365235,17.466600418090877],[99.40844726562517,17.47487068176264],[99.4115219116211,17.477518081665153],[99.41763305664062,17.47830009460455],[99.4207382202149,17.485710144042912],[99.41942596435575,17.493539810180778],[99.42270660400402,17.49863052368164],[99.4198989868164,17.503740310668945],[99.422836303711,17.517520904541016],[99.43032836914074,17.51855850219738],[99.43913269042986,17.524232864379996],[99.43950653076166,17.530969619750977],[99.43389129638695,17.539779663085994],[99.43235015869163,17.5496501922608],[99.4370422363283,17.560922622680664],[99.43096923828125,17.567188262939567],[99.42115020751982,17.56727027893072],[99.41481018066429,17.572080612182617],[99.41661071777338,17.58008003234869],[99.42388153076189,17.591279983520508],[99.42005920410173,17.594770431518555],[99.42328643798822,17.60378074645996],[99.42765045166027,17.607530593872127],[99.44265747070335,17.607440948486442],[99.44429779052751,17.602220535278377],[99.45256805419945,17.596431732177678],[99.45645904541027,17.60725021362316],[99.4511184692384,17.611579895019474],[99.4511032104495,17.615659713745174],[99.44811248779314,17.621208190918026],[99.45114135742182,17.62909126281744],[99.44905090332048,17.64313125610363],[99.45176696777344,17.651769638061637],[99.4583129882813,17.653930664062443],[99.46768951416044,17.660020828247127],[99.47164154052757,17.6640625],[99.47206878662138,17.668399810791016],[99.47779083251982,17.675710678100643],[99.47165679931663,17.688949584960994],[99.4764862060548,17.6951904296875],[99.47534179687511,17.714439392089844],[99.47957611084001,17.722049713134822],[99.47357940673834,17.736610412597713],[99.47606658935575,17.73958015441906],[99.48300933837908,17.743190765380916],[99.4857177734375,17.752389907836857],[99.49089813232428,17.76155281066889],[99.49743652343778,17.767709732055664],[99.50010681152372,17.77257919311529],[99.51168823242193,17.780290603637695],[99.51709747314482,17.781221389770508],[99.51848602294939,17.79375076293951],[99.52091217041044,17.79565048217779],[99.53401184082054,17.799350738525504],[99.54161071777344,17.803188323974553],[99.54479980468767,17.80873107910162],[99.55220031738293,17.810182571411076],[99.56768035888666,17.80928039550787],[99.57295227050787,17.813859939575195],[99.58213806152372,17.81355094909668],[99.60031890869158,17.819780349731445],[99.612777709961,17.813619613647518],[99.61827087402344,17.815820693969783],[99.62583160400402,17.81040000915533],[99.6306991577149,17.813230514526424],[99.636962890625,17.806421279907227],[99.63717651367193,17.804149627685547],[99.64936065673828,17.79620933532715],[99.65648651123053,17.79405021667492],[99.67125701904314,17.798931121826286],[99.67428588867199,17.790819168090877],[99.68296051025396,17.782871246337947],[99.68757629394537,17.775960922241154],[99.6847610473634,17.770290374755916],[99.6916809082033,17.767198562622127],[99.69345855712896,17.76377105712902],[99.69223022460932,17.757749557495174],[99.69741058349626,17.757780075073356],[99.70033264160179,17.754859924316406],[99.70652770996088,17.75613021850586],[99.7107925415039,17.750150680542106],[99.71224212646496,17.741851806640568],[99.71115112304688,17.737222671508846],[99.7171020507813,17.732641220092887],[99.71820068359392,17.726730346679744],[99.72470092773438,17.727270126342887],[99.72583770751953,17.720581054687557],[99.7323913574221,17.720310211181697],[99.73664855957043,17.724769592285213],[99.74317932128923,17.72640037536621],[99.74411773681658,17.730228424072322],[99.75065612792969,17.73383140563965],[99.75431060791038,17.738178253173828],[99.75402069091791,17.742481231689567],[99.75794219970726,17.748100280761832],[99.75637817382812,17.750900268554744],[99.76625823974626,17.759670257568473],[99.77362060546903,17.77375030517578],[99.77854156494163,17.77589035034191],[99.7763900756836,17.780210494995117],[99.77838897705107,17.786270141601676],[99.78359222412104,17.78928947448742],[99.79785919189482,17.791030883789176],[99.80364990234392,17.794689178466854],[99.80500793457031,17.798959732055664],[99.81838989257818,17.801799774170036],[99.82167053222662,17.80014991760254],[99.83473968505876,17.800661087036076],[99.84439086914091,17.796617507934684],[99.85034942626947,17.80000114440918],[99.85280609130871,17.797220230102482],[99.86678314209001,17.799200057983512],[99.86975097656278,17.803062438964957],[99.87786865234375,17.801839828491325],[99.88887786865229,17.80614089965826],[99.8919677734375,17.803251266479492],[99.89839935302746,17.805120468139762]]]},"properties":{"ID_0":228,"ISO":"TH-64","NAME_0":"Thailand","ID_1":65,"NAME_1":"Sukhothai","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สุโขทัย","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.71694183349632,14.976152420044002],[99.72058868408232,14.964610099792594],[99.72306823730497,14.961540222167969],[99.7389373779298,14.962740898132267],[99.74745178222679,14.958901405334473],[99.76296997070324,14.961210250854549],[99.76615142822288,14.960709571838436],[99.77149200439476,14.952850341796932],[99.78002166748047,14.951350212097168],[99.78610229492205,14.946919441223258],[99.79479217529325,14.942721366882324],[99.81385803222685,14.93997859954834],[99.8153686523438,14.938098907470817],[99.82865905761719,14.93557167053234],[99.83483886718778,14.935881614685172],[99.84615325927729,14.939590454101506],[99.85444641113304,14.939400672912711],[99.86357116699219,14.932470321655217],[99.87011718750006,14.93003082275402],[99.87323760986322,14.926770210266113],[99.87384796142578,14.917070388794059],[99.88395690917969,14.912139892578125],[99.89993286132807,14.914790153503475],[99.90795898437517,14.913471221923885],[99.93399810791038,14.906702041625977],[99.95027923583996,14.910241127014103],[99.95674896240246,14.906431198120174],[99.96408081054688,14.904500007629451],[99.96528625488287,14.902132034301815],[99.97225189209001,14.902651786804142],[99.9754028320313,14.905191421508846],[99.98053741455101,14.904109954834041],[99.98574829101574,14.907280921936092],[100.00237274169939,14.908750534057674],[100.01010894775396,14.908440589904842],[100.01896667480486,14.91295146942133],[100.03491973876982,14.913869857788143],[100.04312133789091,14.917521476745549],[100.04302978515625,14.923640251159611],[100.04699707031244,14.93622970581066],[100.04570007324219,14.940971374511719],[100.0420913696289,14.943718910217342],[100.03739929199247,14.951399803161621],[100.03945159912115,14.95885086059576],[100.04147338867205,14.959780693054256],[100.05867004394531,14.955789566040153],[100.0674896240235,14.952081680297852],[100.07646179199241,14.955981254577694],[100.11366271972679,14.944920539855957],[100.12700653076195,14.930529594421387],[100.12851715087896,14.919610977172795],[100.1325378417971,14.913730621337834],[100.13880157470703,14.912180900573674],[100.14321899414085,14.917111396789608],[100.14846038818354,14.914970397949162],[100.15438079833979,14.925009727478141],[100.16207885742193,14.93202972412115],[100.18533325195312,14.946081161499023],[100.20302581787126,14.952981948852482],[100.20223999023449,14.94773960113531],[100.19882202148432,14.939701080322266],[100.19579315185564,14.93705081939703],[100.1897811889649,14.936970710754451],[100.18347930908226,14.934110641479549],[100.18299865722673,14.923710823059082],[100.18663787841814,14.9162216186524],[100.18750000000006,14.906330108642578],[100.1953582763673,14.90283203125],[100.19899749755871,14.902971267700309],[100.21745300292997,14.908750534057674],[100.22328186035156,14.904140472412166],[100.21489715576172,14.89675140380865],[100.20783996582031,14.897860527038688],[100.2092971801759,14.885681152343807],[100.21347808837902,14.88264083862299],[100.21752929687517,14.884551048278865],[100.22364807128923,14.884491920471135],[100.22496795654314,14.879390716552848],[100.21820831298834,14.873049736023063],[100.2179794311524,14.869679450988883],[100.22164916992216,14.866101264953613],[100.22135925292986,14.861091613769588],[100.21884155273432,14.857460975646973],[100.21943664550798,14.852590560913086],[100.2174606323245,14.848469734191951],[100.2190322875976,14.841790199279785],[100.21051025390625,14.832579612731934],[100.20948791503918,14.820320129394645],[100.20526123046903,14.809028625488338],[100.20684051513689,14.807050704956112],[100.21533203125023,14.805171012878532],[100.21695709228533,14.798559188842887],[100.2206726074221,14.795981407165527],[100.22521209716803,14.796519279480037],[100.22853851318388,14.789620399475154],[100.22511291503918,14.780929565429688],[100.22160339355474,14.778651237487907],[100.21141815185564,14.776480674743596],[100.21244812011724,14.765830993652287],[100.20835876464838,14.757349967956543],[100.20681762695324,14.740090370178166],[100.2103271484375,14.735390663146973],[100.21546936035156,14.72412014007574],[100.21704864501976,14.714579582214299],[100.21495819091803,14.703879356384277],[100.21660614013672,14.698620796203556],[100.21610260009771,14.690299987792912],[100.21006774902338,14.684780120849666],[100.21105957031267,14.678489685058594],[100.2152404785158,14.673640251159668],[100.222396850586,14.670338630676383],[100.2316284179687,14.650389671325797],[100.22682952880871,14.640020370483455],[100.21555328369169,14.627401351928768],[100.19599151611345,14.607510566711426],[100.2027206420899,14.595602035522575],[100.2040405273438,14.586610794067383],[100.21118164062528,14.577770233154354],[100.21073150634771,14.574390411377067],[100.20664978027361,14.57028961181652],[100.19831085205078,14.565171241760368],[100.19719696044945,14.555229187011832],[100.2027206420899,14.546980857849235],[100.20516204833984,14.545511245727596],[100.20921325683616,14.538290977478027],[100.20648193359392,14.531999588012809],[100.20761108398455,14.52184009552002],[100.21391296386736,14.514360427856445],[100.22651672363281,14.506450653076229],[100.22940063476562,14.502009391784725],[100.2326431274414,14.48876094818121],[100.24240875244163,14.48058986663824],[100.25070953369158,14.484931945800781],[100.25382995605474,14.481008529663029],[100.25070190429682,14.476531028747615],[100.24652099609392,14.46480941772461],[100.24497985839838,14.457240104675407],[100.24874114990263,14.450210571289062],[100.25151062011719,14.439351081848258],[100.24935913085932,14.435469627380371],[100.26432800292974,14.426551818847656],[100.27397155761713,14.428039550781193],[100.27603149414091,14.420089721679688],[100.27706909179688,14.409840583801213],[100.28227996826195,14.401939392089844],[100.28071594238287,14.394680023193416],[100.27649688720703,14.389340400695858],[100.26956176757824,14.384391784667969],[100.26873016357445,14.375870704650936],[100.26840209960966,14.324441909790096],[100.26300048828148,14.319719314575309],[100.26110839843773,14.315790176391602],[100.259750366211,14.303130149841309],[100.2555160522461,14.29569053649908],[100.25192260742193,14.293001174926871],[100.24373626709007,14.283550262451115],[100.24349975585938,14.250310897827205],[100.24421691894526,14.23640060424816],[100.24450683593773,14.209671020507812],[100.2432327270509,14.208591461181584],[100.22807312011724,14.195679664611873],[100.22532653808588,14.190951347351131],[100.21646118164085,14.185279846191406],[100.21562957763689,14.181891441345272],[100.19336700439459,14.176250457763729],[100.15624237060575,14.16615104675293],[100.15611267089861,14.162341117858944],[100.13236999511724,14.145249366760254],[100.10877227783214,14.146380424499455],[100.08090972900419,14.146571159362736],[100.07102966308588,14.145831108093262],[100.05152130126982,14.142621994018668],[100.02780151367193,14.140239715576229],[100.00797271728521,14.139691352844295],[99.995361328125,14.136610984802246],[99.98490905761741,14.138870239257756],[99.97894287109375,14.138060569763297],[99.9741516113283,14.135052680969238],[99.9654388427735,14.133970260620174],[99.9564819335938,14.13589954376232],[99.94213104248047,14.134470939636287],[99.93728637695341,14.130069732666016],[99.93222045898438,14.12064170837408],[99.92893218994135,14.118680953979492],[99.91819763183622,14.118952751159668],[99.90609741210938,14.113739967346191],[99.89382934570307,14.098670959472656],[99.87744140625017,14.081269264221305],[99.87010955810553,14.071320533752498],[99.85708618164062,14.066349983215332],[99.84423065185558,14.058421134948844],[99.8325119018557,14.060420036315918],[99.82229614257824,14.060608863830623],[99.81711578369169,14.063760757446403],[99.81201171874994,14.064670562744197],[99.80856323242199,14.069040298461971],[99.81202697753923,14.075910568237305],[99.81072235107422,14.079350471496582],[99.80609893798822,14.082541465759391],[99.79757690429688,14.085121154785156],[99.79181671142595,14.098759651184025],[99.77945709228516,14.092280387878418],[99.77024841308611,14.092001914978027],[99.75794982910179,14.089909553527889],[99.7491989135745,14.091291427612418],[99.74163055419916,14.095430374145451],[99.73387908935553,14.096591949463004],[99.73039245605486,14.101941108703727],[99.7323913574221,14.109199523925838],[99.7296218872072,14.114971160888672],[99.72941589355463,14.128130912780762],[99.73197937011724,14.145510673523006],[99.7354125976563,14.150101661682243],[99.73726654052751,14.160781860351676],[99.74253845214872,14.17273998260498],[99.74388122558622,14.180330276489258],[99.74694824218761,14.18474006652832],[99.7587432861331,14.181501388549918],[99.76080322265648,14.1840114593507],[99.7631912231447,14.192831039428711],[99.76599884033232,14.19801139831543],[99.77717590332037,14.19783973693859],[99.78530120849604,14.190099716186637],[99.8057632446289,14.20597934722906],[99.80668640136736,14.220741271972656],[99.8121032714846,14.227141380310172],[99.81713104248058,14.227170944213867],[99.82151794433605,14.224729537963867],[99.81906890869135,14.23523044586176],[99.82341003417997,14.250821113586426],[99.8225173950197,14.269600868225098],[99.81929016113298,14.283061981201229],[99.82388305664062,14.296339988708553],[99.8243026733399,14.30920124053955],[99.82105255126959,14.31422042846691],[99.81488037109392,14.336020469665641],[99.82171630859386,14.347850799560547],[99.81787872314482,14.38239955902111],[99.81948089599626,14.385119438171444],[99.8178405761721,14.393709182739371],[99.82466125488281,14.410720825195312],[99.82150268554716,14.424210548400993],[99.81639099121088,14.438421249389762],[99.81997680664091,14.450670242309627],[99.82073974609403,14.491889953613395],[99.8214874267581,14.501930236816463],[99.82063293457031,14.512022018432674],[99.8165130615235,14.52142143249523],[99.8192520141601,14.526110649109],[99.81278228759783,14.535820007324219],[99.81297302246111,14.547869682312125],[99.81661224365251,14.550251960754395],[99.81920623779325,14.562029838562012],[99.82171630859386,14.566720962524528],[99.82228088378918,14.57256031036377],[99.81916809082054,14.575330734252987],[99.80551910400385,14.580121994018612],[99.80026245117193,14.583450317382926],[99.7984161376956,14.588040351867676],[99.80486297607445,14.598440170288143],[99.8050460815432,14.607840538025016],[99.80771636962913,14.611359596252385],[99.81199645996105,14.609590530395565],[99.81832122802751,14.611451148986873],[99.82769012451172,14.611800193786678],[99.8333816528322,14.617431640624943],[99.82881164550798,14.625511169433594],[99.82276916503912,14.631671905517578],[99.82208251953153,14.636370658874625],[99.82357788085943,14.64420032501232],[99.81973266601585,14.649490356445312],[99.81893157958984,14.654859542846737],[99.81433868408203,14.657960891723633],[99.81207275390625,14.666289329528809],[99.8059158325197,14.672031402588004],[99.79585266113281,14.685420036315918],[99.79614257812528,14.695261955261287],[99.77601623535156,14.70580959320074],[99.77680206298834,14.70863056182867],[99.78549194335932,14.71604061126709],[99.79255676269526,14.726581573486442],[99.7964477539063,14.725031852722282],[99.79695892334001,14.737671852111816],[99.78691101074224,14.742799758911076],[99.78309631347662,14.746121406555176],[99.77424621582026,14.744541168213004],[99.77005004882807,14.745539665222168],[99.76328277587913,14.744429588317814],[99.75699615478538,14.74176120758068],[99.72936248779325,14.748571395874137],[99.72782135009771,14.753970146179256],[99.7171478271485,14.762910842895565],[99.70417785644537,14.766160964965877],[99.69966125488276,14.772300720214787],[99.69068145751964,14.772649765014592],[99.677299499512,14.783300399780387],[99.67260742187517,14.789791107177734],[99.6619720458985,14.796739578247184],[99.65020751953153,14.802960395812988],[99.64208984375017,14.801510810852108],[99.63656616210955,14.799160957336426],[99.62918090820318,14.793310165405273],[99.62729644775413,14.788200378417969],[99.62039947509771,14.782090187072754],[99.61390686035162,14.780770301818848],[99.60607147216797,14.784359931945858],[99.6017608642581,14.783731460571346],[99.58960723876947,14.785371780395508],[99.5855331420899,14.78397274017334],[99.58075714111351,14.788900375366211],[99.57646179199236,14.787349700927734],[99.5704879760745,14.782490730285758],[99.56546783447271,14.786520957946834],[99.56048583984375,14.794599533081055],[99.54821777343744,14.800551414489746],[99.54412078857445,14.792001724243107],[99.54653167724626,14.78345108032238],[99.54637145996094,14.778328895568904],[99.54907226562506,14.775179862976131],[99.54991912841808,14.76635932922369],[99.54360198974638,14.759799957275504],[99.5419921875,14.755632400512695],[99.5431518554688,14.74911975860607],[99.54083251953125,14.745290756225643],[99.55290985107445,14.729010581970215],[99.55013275146479,14.720999717712402],[99.54326629638666,14.71514034271246],[99.52126312255865,14.70763111114502],[99.51463317871105,14.701050758361816],[99.5079727172851,14.700908660888672],[99.50367736816412,14.702759742736816],[99.49101257324236,14.700619697570858],[99.48573303222662,14.701680183410645],[99.47718811035179,14.697580337524357],[99.46492767333984,14.695421218872127],[99.4604110717774,14.700371742248649],[99.45936584472673,14.70665073394781],[99.46221923828142,14.710661888122672],[99.46173858642601,14.719951629638615],[99.45568084716825,14.724210739135742],[99.45345306396501,14.731780052185115],[99.45088958740263,14.734751701355094],[99.44808959960932,14.747709274291992],[99.44474792480491,14.754091262817383],[99.44043731689464,14.75879001617426],[99.4387512207033,14.771170616149902],[99.43234252929693,14.777301788330135],[99.42354583740234,14.779970169067496],[99.41674041748053,14.777469635009822],[99.41404724121116,14.774051666259822],[99.40857696533214,14.772951126098633],[99.38907623291021,14.764470100402832],[99.37858581542974,14.764398574829102],[99.37345123291044,14.766019821166992],[99.36741638183611,14.771521568298283],[99.3591766357423,14.7706813812257],[99.34848785400419,14.781271934509277],[99.34388732910185,14.782869338989258],[99.33563995361334,14.794041633605957],[99.33644104003912,14.799241065979004],[99.3267364501956,14.809229850769043],[99.31571960449213,14.8132905960083],[99.310562133789,14.811679840088004],[99.30558013916027,14.823340415954647],[99.29463195800787,14.832209587097225],[99.29251098632812,14.83844184875494],[99.28330230712908,14.859451293945426],[99.28816986084007,14.863631248474235],[99.29263305664057,14.864049911499023],[99.30055236816429,14.872929573059196],[99.30615997314464,14.88082027435297],[99.31333160400413,14.882350921630916],[99.31790161132818,14.89026927947998],[99.31891632080107,14.895051002502498],[99.31790924072288,14.904910087585563],[99.32061004638678,14.90985202789301],[99.32269287109398,14.918572425842399],[99.32215118408232,14.922810554504451],[99.31336975097685,14.930430412292537],[99.31227111816418,14.934860229492188],[99.32192230224632,14.947211265563965],[99.3158493041995,14.954740524292106],[99.3131713867188,14.965950012207031],[99.30541992187494,14.973380088806152],[99.30586242675781,14.978251457214355],[99.29853820800793,14.986079216003475],[99.29408264160179,14.986652374267578],[99.29142761230474,14.990600585937557],[99.28543090820312,14.993350028991756],[99.28559875488298,15.005709648132324],[99.29595184326178,15.008720397949276],[99.30233001709013,15.01333999633789],[99.3030624389649,15.01892185211193],[99.30808258056635,15.02406120300293],[99.29733276367193,15.035677909851131],[99.30235290527355,15.043340682983398],[99.29959106445318,15.047860145568904],[99.30651092529325,15.061070442199707],[99.3125610351563,15.06245136260992],[99.31439971923845,15.06711196899414],[99.32026672363293,15.068289756775016],[99.3224182128908,15.072520256042537],[99.32064819335949,15.079751968383846],[99.32981872558605,15.078079223632812],[99.3352890014649,15.080829620361271],[99.34085083007841,15.079320907592887],[99.34500122070335,15.07267093658453],[99.34963226318388,15.06980133056652],[99.35790252685564,15.057781219482422],[99.35691833496088,15.054880142211914],[99.3661804199221,15.0476713180542],[99.37145233154297,15.049241065979118],[99.382621765137,15.049920082092285],[99.38646697998058,15.046879768371696],[99.39572906494163,15.048771858215446],[99.40403747558611,15.043901443481502],[99.41326141357428,15.045769691467342],[99.41744232177734,15.048629760742301],[99.42205047607445,15.04498100280773],[99.41786956787132,15.038542747497502],[99.41941833496122,15.029170989990234],[99.42278289794922,15.025079727172795],[99.42748260498041,15.010479927062988],[99.42885589599626,15.002241134643668],[99.43543243408209,14.995941162109432],[99.44075012207054,14.984860420227164],[99.4452285766601,14.982689857483024],[99.4511184692384,14.986841201782283],[99.47348022460955,14.988691329956168],[99.47795867919928,14.987130165100098],[99.48329925537115,14.988620758056697],[99.49098968505871,14.983399391174373],[99.49781036376982,14.982700347900447],[99.50736999511747,14.984450340270996],[99.51390075683611,14.981582641601562],[99.52471923828153,14.980219841003475],[99.53208160400396,14.974970817565918],[99.53240966796892,14.967989921569881],[99.54969787597685,14.962361335754508],[99.56179046630876,14.9620618820191],[99.57430267334013,14.954120635986442],[99.5769805908206,14.954331398010254],[99.58184814453125,14.948900222778377],[99.58863067626964,14.945009231567383],[99.60392761230486,14.94685077667242],[99.61299133300804,14.943311691284293],[99.62171936035156,14.942211151123047],[99.63185882568382,14.938320159912223],[99.63372802734375,14.940589904785156],[99.63278961181646,14.95116138458252],[99.63401794433622,14.96897029876709],[99.62793731689464,14.977389335632438],[99.63289642333996,14.987592697143498],[99.63909149169928,14.988640785217285],[99.64628601074236,14.986761093139705],[99.65473175048834,14.98840045928955],[99.66095733642595,14.987510681152344],[99.66992187500017,14.980001449584961],[99.67907714843767,14.980521202087516],[99.68345642089838,14.976210594177246],[99.69087219238293,14.973899841308707],[99.69510650634783,14.975401878357047],[99.69898986816412,14.973230361938477],[99.70375061035162,14.974431037902832],[99.71315765380888,14.980441093444938],[99.71694183349632,14.976152420044002]]]},"properties":{"ID_0":228,"ISO":"TH-72","NAME_0":"Thailand","ID_1":66,"NAME_1":"Suphan Buri","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สุพรรณบุรี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.06999969482428,9.5897216796875],[100.07583618164062,9.586668014526424],[100.07971954345726,9.58860969543457],[100.08000183105486,9.57500076293951],[100.08611297607439,9.571945190429688],[100.0894470214846,9.56833457946783],[100.0883331298831,9.5600004196167],[100.08416748046886,9.55916786193859],[100.08249664306658,9.555556297302246],[100.07749938964855,9.55194473266613],[100.07527923583984,9.546944618225211],[100.07722473144554,9.540556907653865],[100.07138824462902,9.538887977600154],[100.06944274902372,9.533333778381404],[100.0613861083985,9.527777671814022],[100.05638885498047,9.513891220092717],[100.05583190917969,9.501667976379338],[100.06027984619146,9.4988889694215],[100.06166839599621,9.490281105041618],[100.06666564941423,9.486945152282772],[100.06722259521501,9.477780342102164],[100.0711059570313,9.478062629699707],[100.07027435302751,9.466667175292969],[100.0636062622072,9.471670150756893],[100.05583190917969,9.471391677856502],[100.05027770996094,9.469166755676326],[100.04638671875028,9.465276718139648],[100.0397186279298,9.453612327575797],[100.03166961669928,9.450278282165527],[100.02777862548828,9.450555801391658],[100.02305603027366,9.441666603088322],[100.02083587646496,9.432776451110897],[100.01638793945335,9.424721717834473],[100.01194763183594,9.42055606842041],[100.00083160400385,9.423334121704215],[99.98278045654297,9.421389579773006],[99.96438598632824,9.40869522094738],[99.9585800170899,9.414545059204158],[99.95669555664085,9.420056343078613],[99.95111083984375,9.421669960021973],[99.94750213623053,9.419999122619629],[99.9402770996096,9.421389579773006],[99.93444824218761,9.417498588561955],[99.9290161132813,9.416888236999625],[99.92822265625,9.426541328430176],[99.93419647216803,9.426069259643612],[99.93663787841803,9.430458068847656],[99.93423461914091,9.43295860290533],[99.93376159667969,9.442402839660645],[99.93498229980497,9.448361396789608],[99.93277740478533,9.459723472595329],[99.93222045898438,9.469166755676326],[99.92531585693376,9.485166549682674],[99.92222595214855,9.489444732666016],[99.93210601806646,9.495910644531307],[99.93423461914091,9.50169467926031],[99.93434906005865,9.510601997375602],[99.93219757080095,9.51843070983898],[99.93392944335938,9.522833824157829],[99.93385314941435,9.537451744079647],[99.9313507080081,9.543540000915527],[99.9292755126956,9.553013801574707],[99.92543792724638,9.559820175171012],[99.91832733154303,9.567781448364201],[99.91306304931669,9.568611145019588],[99.91694641113298,9.576110839843693],[99.92315673828153,9.574811935424862],[99.93583679199219,9.578055381774902],[99.94999694824224,9.578888893127498],[99.96166992187506,9.580554962158317],[99.96861267089861,9.583889961242676],[99.98137664794916,9.587788581848201],[99.98777770996116,9.579167366027832],[99.9972229003908,9.571389198303223],[100.00389099121088,9.570000648498649],[100.01860809326189,9.57277679443365],[100.01833343505888,9.567501068115234],[100.02694702148449,9.561665534973201],[100.03194427490251,9.5600004196167],[100.03944396972662,9.561665534973201],[100.05278015136719,9.557222366333065],[100.06111145019526,9.563329696655273],[100.06194305419928,9.570554733276367],[100.06582641601591,9.57500076293951],[100.06999969482428,9.5897216796875]]],[[[99.15922546386741,9.703375816345215],[99.16000366210943,9.688611984252873],[99.1619415283206,9.678056716918945],[99.16555786132841,9.670277595519963],[99.16666412353538,9.663889884948844],[99.17138671875,9.653332710266113],[99.17916870117205,9.642219543457088],[99.18333435058605,9.634443283080998],[99.20417022705095,9.606943130493164],[99.20967864990251,9.601444244384766],[99.20833587646479,9.591941833496037],[99.20805358886741,9.579445838928223],[99.20944213867216,9.569167137146053],[99.21166992187523,9.564443588256779],[99.21527862548834,9.551388740539664],[99.2211074829101,9.537221908569336],[99.23227691650413,9.514695167541618],[99.23611450195318,9.501943588256836],[99.23972320556663,9.493611335754508],[99.241943359375,9.484443664550781],[99.24610900878923,9.476943969726506],[99.2638931274414,9.447779655456657],[99.27138519287132,9.43833255767828],[99.28388977050798,9.425292015075684],[99.30166625976562,9.409721374511776],[99.30833435058594,9.401388168334961],[99.3128204345706,9.392833709716854],[99.29333496093756,9.40333366394043],[99.28193664550793,9.393611907959041],[99.27835845947283,9.388451576232853],[99.27443695068382,9.376390457153377],[99.26805877685564,9.37528133392334],[99.26296234130865,9.370208740234432],[99.26328277587908,9.361680984497127],[99.25416564941406,9.356945037841854],[99.25138854980497,9.357222557067928],[99.2388916015625,9.352781295776367],[99.23916625976568,9.348890304565543],[99.23133087158226,9.34342956542963],[99.22606658935541,9.341891288757381],[99.21888732910156,9.337221145629883],[99.21611022949247,9.32750129699707],[99.21666717529325,9.321388244628963],[99.21584320068365,9.307772636413688],[99.21861267089855,9.29194355010992],[99.2255630493164,9.278611183166504],[99.22415161132824,9.256306648254451],[99.22860717773438,9.251671791076774],[99.237777709961,9.238056182861328],[99.24555206298845,9.235834121704158],[99.24972534179682,9.229998588561955],[99.2552795410158,9.231111526489371],[99.26055908203153,9.226667404174805],[99.26249694824213,9.22057056427002],[99.2669448852539,9.219166755676383],[99.27266693115234,9.222389221191463],[99.27575683593773,9.221810340881348],[99.28194427490246,9.226943016052303],[99.28521728515642,9.2325696945191],[99.29125213623075,9.231401443481502],[99.2936096191408,9.236665725707951],[99.3011093139649,9.235555648803825],[99.30889129638672,9.243610382080078],[99.31166839599638,9.230560302734375],[99.31722259521496,9.228889465332088],[99.31472015380888,9.221111297607422],[99.3200302124024,9.219073295593319],[99.32959747314482,9.221890449523926],[99.33212280273432,9.224357604980582],[99.33950042724638,9.20948696136486],[99.34777832031267,9.209719657898006],[99.35579681396501,9.213568687438965],[99.35994720458996,9.216941833496207],[99.36305236816423,9.2147216796875],[99.35944366455078,9.20777797698969],[99.36149597167963,9.197388648986816],[99.3683319091798,9.197220802307129],[99.38202667236334,9.191696166992244],[99.38861083984392,9.194444656372127],[99.40222167968773,9.203055381774902],[99.41110992431658,9.204445838928223],[99.4132308959961,9.206279754638729],[99.43166351318371,9.203889846801758],[99.4574966430664,9.19888877868658],[99.46549987792969,9.199424743652287],[99.47138977050798,9.20694446563732],[99.47583007812506,9.210280418395996],[99.48194122314476,9.211943626403922],[99.48583221435558,9.210556030273494],[99.4927749633789,9.216110229492244],[99.49843597412104,9.222371101379508],[99.4958267211914,9.225560188293514],[99.49722290039068,9.232500076293945],[99.50083160400413,9.238612174987793],[99.50833129882824,9.26000022888195],[99.51472473144537,9.26805591583252],[99.51889038085938,9.275559425354004],[99.52361297607416,9.280559539795036],[99.53444671630888,9.286669731140137],[99.54165649414085,9.285831451416072],[99.57888793945341,9.270277976989803],[99.5888900756836,9.26805591583252],[99.60278320312517,9.267499923706055],[99.61264038085966,9.269431114196777],[99.62000274658203,9.276110649109],[99.62303924560547,9.283599853515625],[99.62722015380876,9.288610458374137],[99.6336975097658,9.292192459106445],[99.64266204834001,9.302900314331168],[99.64861297607422,9.305280685424805],[99.651107788086,9.303333282470703],[99.66754150390648,9.303526878356877],[99.67194366455084,9.306388854980582],[99.67555236816429,9.3117094039917],[99.6800003051759,9.310832977294979],[99.68335723876976,9.318513870239258],[99.68083190917969,9.321109771728572],[99.68555450439447,9.330277442932072],[99.69361114501953,9.325000762939567],[99.707290649414,9.32089996337902],[99.71472167968761,9.316390037536678],[99.723892211914,9.31250190734869],[99.73151397705072,9.313293457031193],[99.73583221435553,9.322500228881893],[99.74305725097679,9.324443817138615],[99.74973297119163,9.320561408996639],[99.75138854980486,9.317777633667106],[99.75861358642595,9.315278053283691],[99.7638168334961,9.319890975952262],[99.76991271972656,9.322650909423885],[99.76396942138689,9.315109252929744],[99.76229858398443,9.3023300170899],[99.75757598876959,9.302061080932674],[99.75015258789091,9.294040679931697],[99.7475814819336,9.286279678344727],[99.75018310546886,9.279440879821834],[99.74822235107445,9.270762443542537],[99.74948120117205,9.262921333312988],[99.74884033203153,9.25619125366211],[99.75044250488281,9.253380775451774],[99.7512969970706,9.241680145263672],[99.75102233886719,9.227070808410645],[99.75380706787121,9.219440460205135],[99.74780273437506,9.213089942932186],[99.74772644042963,9.204360961914176],[99.73970794677746,9.200690269470329],[99.74207305908203,9.18959045410162],[99.74218750000011,9.182621002197322],[99.73987579345732,9.173590660095329],[99.73271179199219,9.16034030914301],[99.72772979736345,9.161360740661678],[99.72579193115229,9.158321380615178],[99.72702789306646,9.152510643005371],[99.7305374145509,9.150401115417537],[99.74411010742182,9.146161079406738],[99.74575805664068,9.14017200469982],[99.7461700439456,9.128110885620174],[99.7405624389649,9.115820884704704],[99.74472045898438,9.107539176941032],[99.74636840820324,9.062420845031738],[99.74063873291044,9.056790351867733],[99.74491119384766,9.049019813537598],[99.74398040771484,9.041831970214957],[99.74008941650402,9.03756046295166],[99.7445678710938,9.02705097198492],[99.73742675781244,9.014969825744743],[99.73375701904325,9.013352394104004],[99.73351287841803,9.007011413574219],[99.73084259033209,9.00160026550293],[99.73187255859386,8.995500564575252],[99.72467041015642,8.984581947326717],[99.72558593750011,8.979939460754451],[99.72223663330078,8.97675991058361],[99.71726989746094,8.976390838623047],[99.71346282958984,8.970300674438533],[99.69612121582037,8.9749116897583],[99.69384765625023,8.972060203552246],[99.69258880615246,8.963260650634766],[99.6894302368164,8.958470344543457],[99.69595336914085,8.951812744140739],[99.69834136962908,8.941670417785588],[99.69676208496122,8.93499946594244],[99.68814849853521,8.931099891662598],[99.67594909667974,8.928050041198844],[99.67122650146496,8.928450584411678],[99.66142272949241,8.923640251159782],[99.65656280517572,8.924921035766658],[99.65220642089861,8.921990394592285],[99.64338684082043,8.927580833435172],[99.63707733154308,8.92096042633051],[99.63252258300776,8.91323089599615],[99.62847900390653,8.911369323730582],[99.62284088134766,8.912190437316951],[99.6172561645509,8.918440818786564],[99.61841583251947,8.923041343688965],[99.6156005859375,8.927090644836483],[99.60430908203142,8.926931381225643],[99.59400177001947,8.923250198364371],[99.5920104980471,8.919990539550724],[99.58200073242205,8.917080879211426],[99.5810012817384,8.91329097747797],[99.57554626464844,8.909139633178711],[99.57620239257841,8.899180412292537],[99.57401275634766,8.891981124877987],[99.56764221191435,8.884949684143066],[99.55721282959001,8.875999450683594],[99.55663299560564,8.864950180053768],[99.55947113037104,8.859940528869572],[99.55986022949213,8.851360321044979],[99.55355834960932,8.848489761352653],[99.54425048828142,8.847531318664608],[99.53948211669939,8.851429939270133],[99.52983093261741,8.848930358886776],[99.52313995361351,8.843782424926758],[99.52036285400402,8.836461067199764],[99.5174407958985,8.834050178527946],[99.52200317382835,8.82726001739502],[99.5219497680664,8.818929672241268],[99.52658843994163,8.809321403503475],[99.52239227294945,8.794110298156795],[99.52239227294945,8.781959533691406],[99.52353668212913,8.777411460876522],[99.52298736572294,8.763099670410213],[99.52995300292969,8.760860443115234],[99.52884674072271,8.745889663696232],[99.52619171142601,8.73987102508545],[99.52556610107422,8.72791862487793],[99.52057647705095,8.718221664428768],[99.51708984375028,8.718001365661621],[99.50734710693388,8.712649345398006],[99.50727844238281,8.706980705261344],[99.49828338623064,8.699099540710506],[99.49205017089866,8.695780754089355],[99.49510192871116,8.692141532897892],[99.49700164794928,8.686231613159237],[99.49135589599621,8.68036079406744],[99.49444580078142,8.67621040344244],[99.49424743652338,8.671091079712028],[99.48867797851591,8.67114162445074],[99.48265838623047,8.661061286926383],[99.47824096679705,8.657329559326229],[99.48059844970709,8.648521423339957],[99.47587585449247,8.645442008972168],[99.47074890136747,8.645791053771973],[99.46266937255865,8.649420738220272],[99.45419311523432,8.642080307006836],[99.45329284667969,8.637331008911246],[99.44809722900408,8.632001876831055],[99.44985961914062,8.62732982635498],[99.448051452637,8.620340347290153],[99.45287322998064,8.615130424499512],[99.45600128173851,8.608599662780705],[99.45539093017578,8.60194015502924],[99.44995880126982,8.599849700927678],[99.4406204223634,8.599160194397086],[99.43589782714861,8.589659690856934],[99.43090820312511,8.582140922546387],[99.4237899780274,8.57384109497076],[99.4147109985351,8.566499710083065],[99.405029296875,8.55311203002924],[99.40415191650396,8.548671722412223],[99.40699768066429,8.544781684875488],[99.41304016113281,8.545649528503361],[99.41396331787126,8.541270256042424],[99.40879821777338,8.536310195922852],[99.40937805175798,8.529541015625114],[99.40206146240263,8.529830932617244],[99.39393615722673,8.52571010589594],[99.39507293701189,8.517719268798885],[99.39321899414062,8.513460159301758],[99.38906097412132,8.516209602356014],[99.37766265869169,8.51501178741455],[99.37374877929688,8.509511947631836],[99.36119842529303,8.500140190124569],[99.35761260986334,8.507170677185172],[99.35243988037132,8.511861801147518],[99.33878326416027,8.520021438598746],[99.33486938476568,8.515569686889762],[99.33264160156278,8.500151634216252],[99.3268661499024,8.49857044219982],[99.31986999511747,8.494220733642578],[99.31233215332031,8.491760253906364],[99.3096084594726,8.483720779419002],[99.30341339111351,8.4792995452882],[99.29337310791027,8.481090545654354],[99.29566192626964,8.473528861999625],[99.29287719726562,8.470660209655875],[99.2865371704101,8.469129562377987],[99.27823638916038,8.462051391601562],[99.27760314941423,8.455780982971191],[99.26967620849615,8.454759597778377],[99.26281738281256,8.449449539184684],[99.25958251953153,8.445281982421875],[99.26214599609392,8.436981201171932],[99.25672912597685,8.433739662170467],[99.25583648681658,8.430171012878475],[99.24973297119158,8.420671463012809],[99.25003051757818,8.413590431213493],[99.24549102783232,8.4056911468507],[99.23977661132824,8.399898529052848],[99.23446655273432,8.397200584411621],[99.23677825927751,8.388979911804256],[99.23475646972679,8.38673114776617],[99.2386627197265,8.378789901733512],[99.24008941650413,8.369521141052246],[99.24559783935553,8.36820125579834],[99.25733184814464,8.357689857483024],[99.25939178466825,8.352391242981014],[99.2664413452149,8.349551200866813],[99.26914215087919,8.353111267089957],[99.2749862670899,8.351779937744197],[99.27440643310553,8.345479965209961],[99.27941894531278,8.341702461242733],[99.28157043457026,8.33750057220459],[99.2808609008789,8.330921173095703],[99.28269195556652,8.324310302734489],[99.28233337402338,8.318999290466309],[99.28675842285173,8.31787109375],[99.29148101806652,8.31287956237793],[99.29020690917969,8.30874061584467],[99.27590942382812,8.30066108703619],[99.26304626464855,8.30187129974371],[99.23217010498041,8.317220687866154],[99.21724700927763,8.327870368957463],[99.20813751220697,8.33683967590332],[99.17984008789068,8.342890739440861],[99.15473175048822,8.354020118713436],[99.14057159423857,8.361190795898438],[99.12275695800781,8.366621971130485],[99.11022186279303,8.366241455078239],[99.09430694580095,8.364491462707463],[99.08406066894537,8.362261772155819],[99.07398986816412,8.363640785217228],[99.07164001464844,8.361969947814941],[99.06179809570341,8.359901428222713],[99.04936218261741,8.360461235046387],[99.03813171386724,8.36371994018549],[99.0255813598634,8.370491981506461],[99.0047302246096,8.386851310730037],[98.99695587158232,8.392330169677678],[98.99405670166038,8.396309852600098],[98.9710769653322,8.41609001159668],[98.9532928466798,8.423431396484432],[98.94776916503918,8.424490928649902],[98.94423675537115,8.429442405700684],[98.94271850585943,8.434970855712947],[98.93855285644554,8.440600395202637],[98.94220733642607,8.451730728149528],[98.94017791748064,8.455959320068416],[98.944351196289,8.459881782531738],[98.9454803466798,8.468330383300724],[98.94818115234392,8.470460891723746],[98.9469604492188,8.482879638671875],[98.94940948486334,8.485030174255428],[98.94964599609403,8.492429733276424],[98.94570159912126,8.496609687805233],[98.94255065917991,8.507740974426213],[98.94243621826183,8.52174186706543],[98.94132232666033,8.532130241394043],[98.93582916259766,8.536421775817871],[98.93337249755865,8.541231155395451],[98.93244171142601,8.550140380859489],[98.93560028076189,8.557359695434627],[98.93553161621122,8.561030387878475],[98.9318466186524,8.566671371460075],[98.92455291748064,8.568400382995605],[98.92167663574236,8.575738906860465],[98.91689300537104,8.57907962799078],[98.9119262695312,8.585079193115291],[98.91239929199224,8.589249610900993],[98.90972137451178,8.594339370727596],[98.90177154541044,8.599227905273438],[98.89109039306669,8.611141204833984],[98.88797760009771,8.618061065673885],[98.87812042236357,8.62058067321783],[98.87594604492188,8.62462043762207],[98.87226867675798,8.625839233398551],[98.86219787597656,8.624381065368652],[98.85585784912104,8.630721092224178],[98.84355926513695,8.654879570007381],[98.8234100341798,8.654569625854549],[98.80020141601562,8.65525054931635],[98.80004119873053,8.647231101989746],[98.79544830322266,8.640361785888729],[98.78546142578136,8.64664077758789],[98.77715301513678,8.655611991882381],[98.7716827392581,8.657560348510742],[98.76434326171875,8.665040016174316],[98.7604293823245,8.672189712524471],[98.74601745605486,8.673500061035213],[98.74201202392595,8.664869308471737],[98.73712921142601,8.659690856933594],[98.73432159423857,8.65060043334961],[98.72133636474638,8.629141807556152],[98.71820068359375,8.632170677185059],[98.71182250976574,8.632231712341365],[98.70555114746088,8.62974071502697],[98.70316314697271,8.632069587707633],[98.69782257080084,8.635471343994254],[98.69757843017595,8.640051841735897],[98.69454956054688,8.645000457763786],[98.68431854248053,8.654661178588867],[98.67643737792969,8.658330917358455],[98.67413330078125,8.660920143127498],[98.6679077148438,8.659741401672477],[98.66699981689464,8.656940460205078],[98.66113281250017,8.655320167541504],[98.65574645996105,8.65822982788086],[98.64762878417969,8.658810615539494],[98.64383697509771,8.65062046051031],[98.6392669677735,8.645000457763786],[98.6350173950197,8.642721176147518],[98.6285629272461,8.644167900085506],[98.62155914306646,8.639261245727653],[98.62014007568376,8.636550903320256],[98.6117095947265,8.637900352478027],[98.60939025878935,8.632350921630916],[98.60356903076172,8.62638187408453],[98.59925079345709,8.63076019287115],[98.59134674072266,8.630460739135742],[98.5857620239259,8.628521919250488],[98.57659912109386,8.633910179138184],[98.5648269653322,8.63803863525402],[98.55983734130854,8.645589828491268],[98.55517578125023,8.64832973480236],[98.55297851562517,8.65211105346674],[98.5468292236331,8.656210899353027],[98.5425109863283,8.656970024108944],[98.53643798828125,8.661391258239746],[98.54123687744146,8.67046928405756],[98.54574584960955,8.67391109466547],[98.55155944824224,8.673450469970817],[98.5594024658206,8.675068855285645],[98.56310272216814,8.68104171752941],[98.57006835937506,8.682079315185547],[98.57228088378906,8.685030937194938],[98.57292938232428,8.691769599914664],[98.58030700683594,8.696549415588436],[98.58168029785179,8.703141212463322],[98.58869934082031,8.705681800842285],[98.59400939941423,8.712029457092342],[98.59558868408209,8.72306919097906],[98.59387969970709,8.731829643249512],[98.5964660644533,8.746509552001896],[98.59593963623047,8.759539604187069],[98.59732055664085,8.763630867004451],[98.59732818603538,8.776921272277832],[98.60144042968767,8.782211303710994],[98.59937286376953,8.785401344299316],[98.5984115600586,8.796999931335563],[98.59480285644531,8.800291061401424],[98.58753204345703,8.802219390869084],[98.58502197265642,8.806230545043945],[98.57496643066406,8.803771018982047],[98.56913757324247,8.807040214538631],[98.56485748291016,8.807050704956055],[98.55465698242199,8.814029693603459],[98.55561828613293,8.821220397949219],[98.55317687988298,8.827660560608024],[98.5485916137697,8.8310804367066],[98.54265594482433,8.84064960479742],[98.53254699707043,8.844591140747127],[98.53621673584001,8.85660171508789],[98.53408813476557,8.859240531921387],[98.52488708496122,8.860540390014705],[98.52178955078148,8.85951042175293],[98.51380920410185,8.860530853271598],[98.5101089477539,8.866421699523983],[98.50643157958979,8.87903976440441],[98.49318695068382,8.883490562439079],[98.48327636718756,8.88566970825201],[98.4734268188476,8.89009952545166],[98.47139739990234,8.889170646667424],[98.45597839355474,8.890130043029785],[98.45108032226591,8.894710540771428],[98.44525146484375,8.895531654357967],[98.44712066650408,8.903519630432186],[98.45092773437494,8.908720970153752],[98.4541625976562,8.91598033905035],[98.45352935791021,8.924401283264103],[98.4562301635745,8.932500839233512],[98.45514678955095,8.936321258544922],[98.44741821289068,8.939500808715763],[98.44274139404314,8.945401191711483],[98.44921875000017,8.951399803161735],[98.44824981689447,8.95689964294445],[98.45059967041016,8.965941429138127],[98.462699890137,8.969300270080623],[98.47496032714838,8.976289749145621],[98.48281097412126,8.978161811828613],[98.4946517944336,8.985131263732967],[98.49846649169922,8.983009338378963],[98.5051498413086,8.983079910278377],[98.50637054443388,8.989130973815918],[98.51058197021513,8.997741699218807],[98.50482177734398,8.999840736389217],[98.49732971191406,9.011300086975154],[98.49250793457026,9.014981269836483],[98.48764801025413,9.016001701354924],[98.48903656005888,9.020530700683594],[98.48457336425787,9.028259277343807],[98.48486328125011,9.034100532531795],[98.4797973632813,9.036589622497615],[98.47495269775385,9.043901443481502],[98.4733276367188,9.049421310424918],[98.47440338134783,9.055191993713493],[98.47264099121105,9.06449985504156],[98.4806594848634,9.069768905639705],[98.4849777221682,9.070099830627555],[98.49385833740251,9.08110141754156],[98.49077606201183,9.086591720581168],[98.49091339111334,9.097060203552303],[98.48880004882835,9.10822963714594],[98.48426055908232,9.112560272216797],[98.48619079589855,9.11614131927496],[98.48085021972668,9.122281074523869],[98.48503112792997,9.13157939910883],[98.48088073730486,9.145449638366756],[98.48311614990263,9.149071693420524],[98.49214172363298,9.15038013458252],[98.4969482421875,9.153390884399471],[98.50196838378912,9.153499603271598],[98.50190734863281,9.15973091125494],[98.49585723876976,9.165269851684684],[98.49388885498047,9.172590255737362],[98.49578857421875,9.177201271057186],[98.4923400878908,9.18770980834961],[98.49736022949224,9.193291664123649],[98.49632263183588,9.201090812683162],[98.49845886230469,9.202779769897575],[98.50000762939453,9.21200084686285],[98.5025482177735,9.216990470886344],[98.50546264648449,9.216931343078613],[98.51111602783226,9.222820281982422],[98.51161193847673,9.226070404052734],[98.51714324951189,9.22815132141119],[98.51747894287121,9.231631278991756],[98.52334594726591,9.234309196472225],[98.52768707275396,9.24321079254156],[98.52768707275396,9.247819900512752],[98.53041076660185,9.254679679870605],[98.52680969238293,9.262630462646598],[98.5275268554688,9.270380973815975],[98.52462768554693,9.286620140075684],[98.52742004394548,9.293500900268612],[98.5268783569336,9.296531677246094],[98.51892089843756,9.299301147460994],[98.51468658447266,9.304059982299918],[98.50588226318376,9.308641433715877],[98.50601959228527,9.315870285034293],[98.5119705200197,9.322100639343375],[98.51233673095697,9.32643032073969],[98.52037048339861,9.33534145355236],[98.52748107910162,9.340379714965934],[98.52980804443382,9.345072746276855],[98.53803253173857,9.349040985107365],[98.54010009765648,9.354021072387695],[98.54640960693365,9.360570907592773],[98.55275726318371,9.359230995178336],[98.5620880126956,9.359528541564941],[98.56461334228533,9.358209609985352],[98.57171630859375,9.362778663635254],[98.57303619384766,9.36548042297369],[98.5831527709961,9.36532115936285],[98.58644866943382,9.367471694946403],[98.59037780761736,9.361810684204102],[98.58921051025385,9.356458663940487],[98.59764862060547,9.348119735717887],[98.6112670898438,9.34164047241211],[98.61508941650419,9.342450141906738],[98.6187820434572,9.346810340881404],[98.6288528442384,9.353840827941838],[98.63414001464866,9.356279373168945],[98.6390380859375,9.352640151977539],[98.64936828613287,9.348849296569824],[98.6590805053711,9.346830368041992],[98.6625366210938,9.352629661560115],[98.66892242431652,9.360240936279354],[98.6712112426759,9.367881774902344],[98.67035675048834,9.370649337768498],[98.67250061035185,9.377241134643612],[98.67138671875011,9.384810447692871],[98.66851806640653,9.38821029663086],[98.664115905762,9.385721206665096],[98.65715789794922,9.385081291198674],[98.64787292480491,9.387761116027946],[98.6539916992188,9.399169921875],[98.65355682373053,9.403780937194824],[98.6466369628908,9.414490699768123],[98.64718627929682,9.426951408386287],[98.64994049072271,9.42858028411871],[98.65983581542969,9.419611930847168],[98.66507720947294,9.420761108398494],[98.67133331298851,9.425000190734863],[98.6733627319336,9.429391860961971],[98.67690277099638,9.430971145629996],[98.68031311035162,9.436809539794922],[98.66809844970709,9.446420669555778],[98.66504669189459,9.458541870117244],[98.6691131591798,9.466011047363395],[98.67666625976585,9.464851379394588],[98.68445587158209,9.468982696533317],[98.69317626953142,9.468959808349666],[98.69972229003912,9.477021217346191],[98.70404815673845,9.485260009765682],[98.71553039550781,9.486940383911133],[98.71736907958996,9.499410629272461],[98.72363281250028,9.502820968627873],[98.72397613525413,9.508270263671875],[98.72825622558588,9.51382923126232],[98.73323822021501,9.515892028808594],[98.73525238037138,9.519770622253418],[98.74513244628912,9.531281471252555],[98.74724578857445,9.534999847412223],[98.75431060791021,9.537679672241325],[98.76361846923834,9.536210060119686],[98.76799774169928,9.544350624084473],[98.76631927490257,9.54822063446045],[98.7582092285158,9.558000564575309],[98.7573013305664,9.56476974487299],[98.75971984863276,9.568791389465275],[98.75849151611351,9.573691368103084],[98.75502014160156,9.576010704040584],[98.74703979492193,9.576479911804256],[98.73738861083996,9.583889961242676],[98.73970031738276,9.590519905090446],[98.73802947998047,9.59292030334484],[98.73876190185564,9.601080894470158],[98.7470321655274,9.605150222778263],[98.74990844726585,9.610770225525016],[98.75521087646484,9.617201805114803],[98.766166687012,9.628142356872672],[98.76841735839866,9.636061668396053],[98.76461791992193,9.643460273742733],[98.76686096191412,9.654171943664608],[98.76821136474615,9.669450759887695],[98.76657104492199,9.67158031463623],[98.76757812500017,9.685441017150822],[98.7701873779298,9.687849998474235],[98.77847290039062,9.688340187072754],[98.78221130371105,9.692159652710018],[98.78881072998053,9.69025039672863],[98.78740692138689,9.687310218811149],[98.79142761230469,9.683151245117188],[98.79521179199236,9.68754863739025],[98.8045883178711,9.688151359558049],[98.81555938720732,9.696021080017204],[98.81932830810553,9.702630996704045],[98.83181762695307,9.702911376953239],[98.83699798584001,9.704649925231877],[98.84435272216825,9.70346927642828],[98.85443878173851,9.70897102355957],[98.86190795898466,9.717950820922852],[98.86218261718767,9.722579956054801],[98.8651809692384,9.727510452270565],[98.87120819091803,9.730531692504883],[98.87809753417974,9.730721473693904],[98.88494110107428,9.725799560546989],[98.89173889160173,9.733900070190487],[98.89949798584013,9.732350349426326],[98.90522766113293,9.733670234680233],[98.91131591796903,9.730690956115723],[98.92118835449241,9.723860740661735],[98.92881011962896,9.720521926879996],[98.93843078613293,9.722071647644157],[98.94577789306646,9.720131874084586],[98.95713806152338,9.72062015533453],[98.96212005615251,9.711829185485897],[98.96750640869146,9.710741996765194],[98.97232818603521,9.712190628051758],[98.97989654541016,9.709490776062125],[98.98542022705078,9.71034145355236],[98.99639892578136,9.7029905319215],[99.00431823730474,9.710251808166504],[99.00633239746105,9.709600448608398],[99.00605010986334,9.701641082763729],[99.01728820800787,9.694430351257438],[99.02173614501982,9.697270393371639],[99.03125000000023,9.694830894470272],[99.03842163085955,9.688131332397518],[99.04222869873064,9.678669929504338],[99.05158233642595,9.67388057708746],[99.05207061767607,9.667000770568848],[99.07184600830084,9.654339790344295],[99.07215881347673,9.651961326599235],[99.08258056640653,9.652150154113713],[99.0841674804687,9.654060363769588],[99.09401702880865,9.657750129699707],[99.09594726562528,9.66266059875494],[99.09040069580107,9.672241210937443],[99.0853881835938,9.673712730407829],[99.07952117919928,9.679071426391658],[99.08065032959007,9.685278892517147],[99.07441711425793,9.686331748962346],[99.07212066650402,9.690681457519588],[99.07467651367188,9.697710037231445],[99.07850646972656,9.703430175781307],[99.10278320312506,9.703451156616325],[99.10830688476585,9.699930191040153],[99.11266326904303,9.693940162658748],[99.12027740478516,9.694069862365723],[99.12471008300804,9.701391220092717],[99.12966918945335,9.702911376953239],[99.15547943115246,9.702070236206112],[99.15922546386741,9.703375816345215]]],[[[100.0270690917971,9.804596900940055],[100.0322189331057,9.802499771118221],[100.03499603271501,9.792781829834041],[100.04028320312528,9.794170379638786],[100.04332733154325,9.792209625244197],[100.05333709716797,9.792501449585075],[100.0605545043947,9.786945343017692],[100.05611419677763,9.78055572509777],[100.0575027465822,9.771389961242676],[100.0625,9.769721031188965],[100.06694793701178,9.773333549499569],[100.06888580322294,9.768333435058707],[100.0730590820313,9.765832901001033],[100.0730590820313,9.759720802307186],[100.07722473144554,9.753332138061523],[100.07554626464872,9.747230529785156],[100.07971954345726,9.745280265808162],[100.08110809326183,9.734439849853572],[100.07888793945312,9.724721908569336],[100.0761108398438,9.721666336059684],[100.0761108398438,9.709444999694881],[100.08000183105486,9.701112747192383],[100.07666778564476,9.69333362579357],[100.07332611084001,9.689719200134391],[100.07805633544933,9.683610916137695],[100.06861114501953,9.679166793823299],[100.06777954101557,9.671666145324707],[100.06416320800776,9.673609733581657],[100.05999755859392,9.67944526672369],[100.04916381835943,9.68444538116455],[100.03888702392601,9.69333362579357],[100.02361297607428,9.697500228881893],[100.01667022705072,9.701944351196346],[100.00416564941412,9.704167366027946],[99.99749755859398,9.706391334533805],[99.99276733398466,9.704989433288574],[99.98889160156256,9.706945419311523],[99.97768402099615,9.720804214477539],[99.97534942626959,9.726318359375057],[99.97998809814482,9.73167991638195],[99.97693634033232,9.73750114440918],[99.97550201416033,9.747180938720703],[99.97326660156256,9.750000000000057],[99.9661102294923,9.752778053283691],[99.96039581298822,9.757399559021053],[99.96177673339844,9.765178680420036],[99.95999908447277,9.767501831054744],[99.9617919921875,9.772639274597111],[99.96640014648443,9.77610969543457],[99.96640014648443,9.785560607910156],[99.97250366210943,9.786666870117301],[99.97083282470732,9.791389465332088],[99.97694396972685,9.791389465332088],[99.98221588134771,9.79916954040533],[99.98832702636724,9.799441337585506],[99.99147033691418,9.803560256958008],[99.99694824218756,9.791391372680721],[100.00305175781256,9.78722095489502],[100.00833129882812,9.788055419921875],[100.01611328125017,9.801666259765682],[100.0270690917971,9.804596900940055]]],[[[99.83805847167991,10.126387596130371],[99.84305572509794,10.124721527099723],[99.84278106689453,10.119445800781307],[99.85138702392584,10.110554695129395],[99.84638977050781,10.104166030883789],[99.85166931152355,10.098609924316406],[99.85138702392584,10.0944442749024],[99.85610961914062,10.089999198913688],[99.8502807617188,10.08527660369873],[99.84666442871122,10.07972335815441],[99.8447189331057,10.072777748108024],[99.84027862548828,10.07250022888195],[99.84027862548828,10.0652818679809],[99.8377761840822,10.063611030578613],[99.83249664306646,10.065834045410213],[99.83139038085943,10.059720993042106],[99.82777404785162,10.057777404785156],[99.82638549804693,10.066111564636287],[99.82221984863304,10.063611030578613],[99.81527709960955,10.071109771728572],[99.81610870361351,10.0780544281007],[99.81887817382807,10.082501411437988],[99.82193756103533,10.082221031189022],[99.82721710205107,10.092782020568904],[99.82638549804693,10.103334426879996],[99.82138824462908,10.106390953063965],[99.81916809082054,10.114721298217773],[99.82055664062528,10.120830535888672],[99.82389068603516,10.126387596130371],[99.82777404785162,10.123612403869629],[99.83528137207026,10.121111869811955],[99.83805847167991,10.126387596130371]]]]},"properties":{"ID_0":228,"ISO":"TH-84","NAME_0":"Thailand","ID_1":67,"NAME_1":"Surat Thani","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สุราษฎร์ธานี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.40068817138666,15.43317985534668],[103.41110992431646,15.438530921936149],[103.42459869384771,15.443971633911133],[103.4282989501956,15.447779655456486],[103.4338760375976,15.448479652404728],[103.43541717529314,15.453010559082145],[103.43924713134783,15.453541755676213],[103.45867156982416,15.45282077789318],[103.46125793457037,15.451800346374512],[103.47705078125006,15.451669692993221],[103.4883422851563,15.44741058349615],[103.4879760742188,15.444360733032227],[103.49472808837908,15.43688106536871],[103.5018920898438,15.436111450195312],[103.50550079345726,15.437991142273063],[103.51815795898449,15.427382469177303],[103.51978302001959,15.429450988769531],[103.53096771240251,15.425441741943473],[103.53826904296875,15.42731952667242],[103.54810333251964,15.43906021118164],[103.55439758300793,15.445199966430721],[103.5568389892581,15.450711250305176],[103.56198883056669,15.451870918273926],[103.56636047363287,15.45659065246582],[103.57453155517584,15.459371566772518],[103.5768432617188,15.461849212646541],[103.59156799316435,15.463230133056754],[103.60302734375011,15.46669006347662],[103.62113189697294,15.463989257812557],[103.62171173095732,15.459600448608455],[103.62705993652355,15.461381912231502],[103.63011169433605,15.457579612732047],[103.63601684570341,15.45603275299078],[103.63957214355474,15.457680702209473],[103.6468124389649,15.456001281738338],[103.65052795410168,15.456859588623104],[103.65519714355474,15.450518608093319],[103.66197967529291,15.448520660400504],[103.6649169921875,15.451121330261287],[103.67015075683622,15.445270538330192],[103.67498779296892,15.448150634765625],[103.68348693847685,15.445329666137695],[103.6864318847658,15.446580886840934],[103.6982498168947,15.442130088806266],[103.70236206054693,15.444050788879395],[103.70488739013683,15.441120147705021],[103.71601104736328,15.442561149597225],[103.71936035156278,15.444219589233342],[103.72464752197288,15.437581062316895],[103.7283401489259,15.440500259399357],[103.73236846923822,15.438520431518555],[103.73596954345714,15.442421913146973],[103.74075317382807,15.441341400146484],[103.74691772460938,15.446500778198185],[103.7535705566408,15.439039230346793],[103.76066589355469,15.435931205749625],[103.76805877685564,15.438711166381836],[103.7728881835938,15.437891006469727],[103.77548217773432,15.434150695800724],[103.77993774414068,15.434419631958008],[103.78446197509783,15.440660476684684],[103.80024719238293,15.443679809570426],[103.80251312255888,15.442790985107536],[103.81723785400385,15.44692134857172],[103.8291625976563,15.454109191894588],[103.83370971679688,15.459371566772518],[103.84053039550798,15.458761215209961],[103.8455657958985,15.454770088195858],[103.84900665283226,15.455201148986816],[103.853286743164,15.464520454406795],[103.85845947265642,15.46272182464611],[103.86064147949241,15.457759857177734],[103.85935211181669,15.450239181518612],[103.86341094970697,15.447600364685115],[103.86734771728521,15.451942443847656],[103.86737060546903,15.459487915039176],[103.87448883056658,15.46218013763422],[103.88043975830078,15.467020034789982],[103.88529968261747,15.461660385131893],[103.8855361938476,15.453651428222656],[103.8909530639649,15.455101013183707],[103.89517974853521,15.461441040039006],[103.90132904052763,15.449831008911246],[103.90011596679693,15.442390441894531],[103.90722656250028,15.44031143188488],[103.91168212890642,15.434821128845272],[103.91629791259766,15.437730789184627],[103.9220199584961,15.438820838928223],[103.92710876464838,15.436790466308707],[103.92955017089872,15.432461738586483],[103.94364929199247,15.437400817871037],[103.94799041748053,15.43665790557867],[103.94863891601574,15.431031227111873],[103.94359588623053,15.42661094665533],[103.94953155517601,15.417050361633358],[103.95056152343744,15.412740707397404],[103.9636001586914,15.413380622863826],[103.96277618408197,15.419380187988338],[103.96463775634794,15.422109603881836],[103.97538757324236,15.42477035522461],[103.97785186767572,15.419170379638786],[103.97277069091803,15.408301353454647],[103.97596740722673,15.40449047088623],[103.98391723632841,15.403459548950309],[103.9898223876956,15.405541419983024],[103.9951858520509,15.398710250854549],[103.99675750732439,15.392180442810002],[104.00393676757841,15.39718055725109],[104.0039672851562,15.404790878295898],[104.00968170166027,15.406540870666504],[104.01280212402344,15.402931213378906],[104.01708984375028,15.403031349182186],[104.0182418823245,15.407591819763297],[104.02189636230463,15.40894985198969],[104.02720642089872,15.403031349182186],[104.03082275390653,15.402771949768066],[104.0362777709961,15.405599594116268],[104.041488647461,15.402061462402457],[104.04955291748041,15.401089668273869],[104.0558471679687,15.396560668945426],[104.05903625488287,15.403510093689022],[104.06237792968767,15.399890899658317],[104.07666015625017,15.390051841735954],[104.07682037353527,15.386891365051326],[104.07277679443388,15.382290840148983],[104.07791900634771,15.37936019897461],[104.08451843261719,15.383831977844295],[104.08682250976562,15.380511283874512],[104.08078002929693,15.375390052795524],[104.08223724365234,15.371990203857479],[104.08750915527338,15.369070053100529],[104.08637237548822,15.357031822204704],[104.09018707275385,15.35426044464117],[104.09230804443376,15.348401069641227],[104.08146667480469,15.347819328308049],[104.078109741211,15.35216140747076],[104.07131195068354,15.346620559692496],[104.0679016113283,15.348752021789608],[104.06389617919939,15.346740722656307],[104.06313323974626,15.341630935669002],[104.0570373535158,15.341600418090877],[104.0543518066408,15.338641166687125],[104.04778289794928,15.34037971496582],[104.04567718505865,15.338760375976676],[104.0459976196289,15.331542015075684],[104.04122161865234,15.332481384277457],[104.03877258300787,15.3264999389649],[104.03481292724615,15.328949928283691],[104.02863311767578,15.329169273376522],[104.02719879150419,15.324540138244629],[104.03108215332048,15.317050933837947],[104.024711608887,15.312039375305176],[104.02149963378918,15.313700675964355],[104.01641082763689,15.311770439147892],[104.014389038086,15.30730056762701],[104.01383209228521,15.29677963256836],[104.01542663574213,15.291590690612793],[104.00717926025419,15.289240837097282],[104.00505065917974,15.292790412902832],[104.0002212524414,15.295372009277344],[103.99912261962913,15.289609909057674],[103.99961090087908,15.277489662170467],[104.00209808349626,15.273799896240348],[103.99687194824247,15.26791954040533],[103.99252319335932,15.26832103729248],[103.98693847656256,15.273590087890625],[103.98277282714872,15.273811340332031],[103.98203277587885,15.28083133697504],[103.97705078125028,15.279840469360408],[103.97857666015653,15.271140098571834],[103.9840698242188,15.261151313781738],[103.98986816406244,15.25962066650402],[103.99877166748075,15.253920555114746],[103.99842071533214,15.249352455139103],[103.98905944824247,15.246110916137809],[103.99507141113281,15.236970901489371],[103.99233245849604,15.225931167602482],[103.99028015136736,15.223791122436523],[103.97904205322266,15.22517013549816],[103.9742660522461,15.220721244812069],[103.97419738769543,15.218070030212402],[103.98284149169939,15.21195125579834],[103.9799118041995,15.206489562988281],[103.98304748535156,15.201699256896973],[103.97969055175787,15.197599411010685],[103.98181915283232,15.195261001586914],[103.97793579101568,15.189570426940918],[103.97197723388672,15.187190055847282],[103.96920776367216,15.183441162109432],[103.97399902343778,15.17944145202648],[103.97106170654303,15.172619819641113],[103.97335815429693,15.166170120239371],[103.97099304199236,15.162090301513672],[103.98107910156244,15.15746974945074],[103.98674774169928,15.160141944885254],[103.98780822753906,15.153431892395076],[103.99569702148443,15.150279998779297],[103.99899291992199,15.146471023559627],[103.99964904785156,15.141411781310978],[104.00267791748064,15.138699531555176],[103.99870300292969,15.135068893432617],[103.99208831787115,15.134572029113826],[103.99140930175798,15.123959541320744],[103.99752807617205,15.123981475830078],[103.99868774414062,15.120450019836483],[103.99585723876959,15.113900184631461],[103.99989318847662,15.10946273803711],[103.9962158203125,15.107760429382324],[103.9991302490235,15.099969863891658],[103.99681854248053,15.09586143493658],[104.00032806396496,15.092029571533317],[103.99578094482416,15.085940361022892],[104.00374603271513,15.084600448608455],[104.0012893676759,15.080361366271916],[104.00367736816412,15.07776927947998],[104.01705932617193,15.081260681152457],[104.02246093750011,15.077080726623649],[104.0217361450197,15.070891380310115],[104.0122909545899,15.069401741027775],[104.01506042480486,15.065299987792969],[104.00749969482428,15.0589017868042],[104.0137100219726,15.05753040313732],[104.0173416137697,15.050271034240723],[104.0231323242188,15.045410156250114],[104.0195999145509,15.040641784668082],[104.01541137695307,15.040789604187012],[104.01518249511747,15.035999298095646],[104.01815032958984,15.031499862670898],[104.01335144042986,15.027211189270133],[104.01486968994158,15.02445125579834],[104.01284790039085,15.0184907913208],[104.00569915771479,15.01965141296381],[103.99681854248053,15.015361785888786],[104.00212097167969,15.002429962158146],[104.00099945068365,14.990980148315543],[103.99595642089838,14.986100196838493],[103.98990631103516,14.983551979064998],[103.98246002197283,14.977051734924316],[103.98338317871088,14.97291088104248],[103.97789001464844,14.973060607910213],[103.97690582275408,14.977291107177734],[103.96975708007818,14.973299980163631],[103.96817779541016,14.969099998474235],[103.97055816650419,14.962550163268986],[103.96997070312528,14.947411537170524],[103.96717834472673,14.947429656982479],[103.95928955078153,14.94059944152832],[103.95292663574219,14.92232990264904],[103.94886016845697,14.920121192932243],[103.94055175781256,14.911431312561035],[103.93907928466825,14.907020568847656],[103.92996215820307,14.90315055847168],[103.92919158935558,14.90003967285162],[103.9221572875976,14.887729644775447],[103.91886901855497,14.876881599426326],[103.9220809936524,14.871240615844783],[103.91716766357433,14.868342399597168],[103.90963745117193,14.859371185302678],[103.90827941894531,14.853650093078727],[103.90451812744163,14.848241806030273],[103.90647888183622,14.841769218444938],[103.91124725341825,14.833919525146541],[103.92092895507818,14.826510429382438],[103.94460296630888,14.81931114196783],[103.95337677001982,14.817279815673828],[103.98217773437528,14.807491302490178],[103.98770141601568,14.804961204528809],[103.99832916259771,14.797250747680721],[104.00055694580095,14.79209136962902],[104.0021667480471,14.77943038940441],[104.00491333007824,14.774760246276912],[104.0103607177735,14.758550643920898],[104.00878143310564,14.747200965881348],[104.00209808349626,14.738812446594352],[104.00135040283203,14.734150886535645],[104.00341033935541,14.7255220413208],[104.00952148437517,14.714599609375057],[104.02326202392595,14.698179244995174],[104.04942321777344,14.674481391906795],[104.05179595947294,14.67150020599371],[104.05518341064459,14.65991020202631],[104.05446624755888,14.652270317077637],[104.05648803710938,14.649841308593864],[104.05602264404308,14.641921043396053],[104.05314636230497,14.636271476745662],[104.05457305908203,14.630940437316895],[104.05972290039062,14.624840736389274],[104.0598526000976,14.60885143280035],[104.06204223632818,14.601651191711483],[104.05866241455107,14.587862014770621],[104.05690765380882,14.574971199035758],[104.04825592041033,14.564190864562988],[104.04991149902372,14.556619644165153],[104.04776000976585,14.552451133728084],[104.03588104248047,14.544820785522518],[104.03441619873053,14.542769432067928],[104.03662109375017,14.535360336303654],[104.03576660156256,14.530229568481502],[104.03945922851557,14.516420364379883],[104.03679656982439,14.4985609054566],[104.04167938232428,14.493820190429801],[104.04592132568371,14.495261192321834],[104.05261230468744,14.488700866699219],[104.05134582519531,14.47764968872076],[104.05432891845697,14.471249580383244],[104.06076049804716,14.46727085113531],[104.0595474243164,14.46503925323492],[104.06095123291044,14.455519676208496],[104.05812072753918,14.452830314636287],[104.05751800537138,14.442131996154899],[104.05355834960932,14.4324111938476],[104.05329132080101,14.422730445861816],[104.05615234375023,14.417011260986442],[104.05565643310541,14.412700653076172],[104.04946136474615,14.406261444091797],[104.05162048339872,14.391850471496639],[104.04936218261713,14.386500358581657],[104.05287170410156,14.377281188964957],[104.04631042480463,14.360449790954704],[104.04821777343744,14.357191085815543],[104.0558319091798,14.354400634765568],[104.0595474243164,14.348291397094783],[104.05908203125011,14.343649864196891],[104.05327606201178,14.339700698852596],[104.04442596435564,14.34022045135498],[104.03517913818365,14.338569641113224],[104.03147125244158,14.335930824279728],[104.02881622314453,14.339051246643066],[104.01876068115257,14.340311050415153],[104.0123672485351,14.347429275512695],[104.01219177246111,14.353631019592399],[104.00846862792991,14.355151176452694],[104.00118255615234,14.349849700927791],[103.99809265136736,14.343962669372559],[103.99009704589844,14.344559669494629],[103.98545074462902,14.352329254150447],[103.9823608398438,14.353181838989258],[103.97447204589844,14.348039627075195],[103.95141601562506,14.348349571228027],[103.94815826416016,14.341571807861328],[103.94943237304682,14.33165073394781],[103.94667053222679,14.328740119934196],[103.94050598144531,14.33049106597906],[103.93258666992216,14.330051422119254],[103.92633056640636,14.33412075042736],[103.91574859619146,14.334300994873047],[103.90962219238281,14.337081909179688],[103.90278625488287,14.33596134185791],[103.90193176269526,14.344039916992244],[103.89650726318382,14.341651916503906],[103.88867950439476,14.342121124267578],[103.88352966308616,14.336550712585392],[103.87776184082031,14.345170974731445],[103.87336730957031,14.34647178649908],[103.86868286132818,14.35443115234375],[103.86326599121094,14.355389595031795],[103.86351013183616,14.365080833435059],[103.84310150146507,14.370401382446346],[103.83740234375006,14.368960380554313],[103.83077239990246,14.357720375061035],[103.83199310302734,14.351699829101676],[103.82784271240257,14.351511001586971],[103.82112884521484,14.354221343994197],[103.81011199951178,14.353680610656795],[103.80478668212896,14.35569095611578],[103.80648803710943,14.363960266113281],[103.805160522461,14.367309570312557],[103.79619598388678,14.365400314331168],[103.78697967529297,14.365010261535588],[103.78218841552751,14.360280990600529],[103.77120971679693,14.365530014038143],[103.76676177978516,14.371251106262264],[103.75952911376959,14.376231193542424],[103.75518035888678,14.370539665222168],[103.75206756591797,14.370610237121582],[103.74877929687494,14.37592983245844],[103.74333953857445,14.375321388244686],[103.74034118652372,14.377281188964957],[103.73323822021507,14.376879692077694],[103.72836303710932,14.378279685974121],[103.71212768554699,14.37545108795166],[103.70680999755854,14.378952026367244],[103.70346832275396,14.385349273681754],[103.70305633544922,14.392021179199219],[103.70504760742216,14.395441055297965],[103.70468139648466,14.403951644897404],[103.70954895019531,14.41090106964117],[103.71086120605469,14.419751167297306],[103.71095275878935,14.430049896240234],[103.69671630859392,14.436989784240836],[103.68994140625023,14.43794059753418],[103.68234252929716,14.433780670166072],[103.66713714599604,14.43445110321045],[103.66150665283209,14.436520576477164],[103.65553283691423,14.43452167510992],[103.64753723144531,14.428730964660588],[103.64421081542997,14.419400215148926],[103.65154266357422,14.419541358947754],[103.65844726562506,14.417001724243278],[103.6593170166015,14.414321899414062],[103.65637207031273,14.408200263977108],[103.65142059326178,14.41068172454834],[103.64315032958984,14.408441543579045],[103.63134002685547,14.401380538940487],[103.628158569336,14.398151397705192],[103.6220397949221,14.396740913391113],[103.61763000488287,14.399970054626408],[103.61409759521496,14.407328605651855],[103.6124877929688,14.417959213256893],[103.60810852050804,14.414690971374569],[103.59983062744158,14.41539096832281],[103.59139251708996,14.422711372375545],[103.58026885986351,14.425170898437443],[103.57707214355497,14.422611236572266],[103.57135009765653,14.423590660095329],[103.55780792236357,14.421300888061467],[103.55162811279303,14.417239189147892],[103.53853607177763,14.414351463317928],[103.53028106689459,14.40886116027832],[103.52793884277361,14.400540351867676],[103.5229568481447,14.400250434875602],[103.52112579345709,14.403470993042049],[103.50282287597679,14.39951038360607],[103.5000610351562,14.397121429443416],[103.49871063232416,14.389201164245549],[103.49494934082031,14.384270668029842],[103.48919677734392,14.386359214782772],[103.48449707031256,14.384781837463379],[103.48329162597673,14.378619194030819],[103.47535705566429,14.374839782714844],[103.47254180908232,14.366108894348258],[103.4673690795899,14.363162040710506],[103.46289062500017,14.36549091339117],[103.45302581787115,14.36665058135992],[103.44783782958984,14.376971244812125],[103.44110870361322,14.378430366516113],[103.44033813476574,14.38696098327648],[103.43730163574213,14.389201164245549],[103.42381286621094,14.38278961181652],[103.41938781738298,14.379540443420467],[103.41217041015625,14.369670867919979],[103.41362762451183,14.3622207641601],[103.41007995605469,14.355841636657772],[103.3936004638673,14.355440139770508],[103.3836288452149,14.351430892944393],[103.37034606933588,14.350380897522086],[103.35813903808588,14.35061073303234],[103.34880065917963,14.3530015945434],[103.34162902832037,14.350031852722225],[103.32975769042986,14.349810600280819],[103.3214874267581,14.354339599609432],[103.31745910644537,14.355051040649414],[103.28533172607422,14.346970558166618],[103.26715850830072,14.34945106506359],[103.26403808593756,14.34862995147705],[103.25811767578148,14.3429212570191],[103.24813842773438,14.336521148681754],[103.23773956298857,14.333230018615836],[103.22897338867216,14.32553958892828],[103.22811889648438,14.336509704589844],[103.22354888916016,14.347070693969727],[103.22518920898449,14.351041793823299],[103.2262802124024,14.361321449279785],[103.22370147705095,14.369919776916504],[103.2236709594726,14.37716102600092],[103.23307800292969,14.382899284362736],[103.23242950439464,14.39016056060791],[103.22278594970703,14.398738861084098],[103.22625732421898,14.404800415039062],[103.23795318603544,14.407650947570858],[103.24060821533232,14.41825962066656],[103.24714660644526,14.428680419921932],[103.24888610839861,14.439690589904728],[103.24678802490251,14.445570945739746],[103.24238586425798,14.44913101196289],[103.24093627929693,14.454140663147086],[103.24246215820318,14.457851409912223],[103.23606872558588,14.467120170593319],[103.23825836181646,14.477121353149414],[103.236831665039,14.480770111083928],[103.22650909423857,14.488972663879508],[103.22746276855497,14.494021415710506],[103.22348785400385,14.49790000915533],[103.21897888183594,14.498470306396598],[103.21595001220709,14.503611564636344],[103.22003173828136,14.50648117065441],[103.22010803222656,14.51187992095953],[103.22318267822271,14.516579627990723],[103.21598052978521,14.52556037902832],[103.21685028076189,14.52903079986578],[103.21466827392607,14.533919334411621],[103.21656036376959,14.541750907898063],[103.22466278076189,14.545050621032772],[103.22129058837896,14.553000450134277],[103.2229309082033,14.562729835510254],[103.21894073486345,14.56579971313488],[103.21601104736357,14.573420524597282],[103.21195983886741,14.574380874633732],[103.21512603759783,14.592281341552791],[103.22029113769531,14.597231864929313],[103.22583770751953,14.606380462646541],[103.23355865478544,14.60691070556652],[103.23819732666033,14.613591194152832],[103.23950958251947,14.62183856964117],[103.23332977294928,14.630760192871207],[103.23500823974615,14.635551452636662],[103.23488616943388,14.64552021026617],[103.24444580078136,14.649589538574276],[103.24829101562494,14.658451080322322],[103.25695037841803,14.66222095489502],[103.25717926025396,14.666390419006404],[103.26154327392601,14.66946029663086],[103.25979614257812,14.676851272583008],[103.263931274414,14.683320999145508],[103.26126098632807,14.687932014465275],[103.26702117919922,14.692091941833553],[103.26638031005871,14.701259613037053],[103.2728729248048,14.713290214538574],[103.27182006835943,14.719840049743596],[103.27556610107416,14.729560852050895],[103.27474975585966,14.732980728149471],[103.27735137939459,14.746330261230582],[103.26996612548834,14.753181457519645],[103.27304840087919,14.759040832519588],[103.26844787597685,14.765960693359489],[103.28322601318376,14.77601242065441],[103.28472900390642,14.781850814819336],[103.29158020019526,14.780850410461426],[103.29511260986351,14.78953075408947],[103.29596710205072,14.796010971069393],[103.29250335693388,14.805400848388615],[103.29705047607428,14.810608863830623],[103.31040191650396,14.806340217590446],[103.31143951416033,14.811441421508903],[103.31471252441406,14.811470031738281],[103.32260131835943,14.820390701294059],[103.3224411010745,14.825049400329647],[103.33171844482428,14.830510139465389],[103.33879852294945,14.830611228942985],[103.34422302246088,14.826320648193416],[103.34955596923822,14.830680847167912],[103.347221374512,14.835519790649414],[103.35267639160156,14.83772087097168],[103.36145782470703,14.846920013427791],[103.36458587646513,14.854789733886776],[103.37403869628906,14.860540390014762],[103.37841033935547,14.858320236206055],[103.38410186767595,14.871009826660213],[103.38272857666027,14.875920295715389],[103.39308929443376,14.883750915527344],[103.39250183105486,14.892902374267692],[103.39858245849604,14.89358139038086],[103.40447235107433,14.892350196838379],[103.40513610839844,14.897781372070426],[103.4015121459961,14.89995098114025],[103.40602874755854,14.905969619751033],[103.40248870849615,14.913230895996207],[103.40541076660185,14.918221473693961],[103.41384887695307,14.915670394897575],[103.42089080810541,14.91754055023199],[103.42820739746094,14.927290916442928],[103.42796325683588,14.931770324706974],[103.43051910400396,14.940370559692496],[103.42752838134794,14.941029548644963],[103.42482757568365,14.947250366210938],[103.42597198486334,14.952460289001522],[103.41954803466808,14.955809593200684],[103.42143249511747,14.963481903076286],[103.42473602294939,14.966280937194881],[103.42259979248058,14.971661567688045],[103.42324829101562,14.97599029541027],[103.42907714843761,14.974570274353084],[103.43335723876953,14.976800918579215],[103.43144226074219,14.981582641601562],[103.424789428711,14.98314189910883],[103.43000030517607,14.989839553833008],[103.41706848144543,15.003841400146541],[103.41944885253912,15.01292991638195],[103.42665100097673,15.028780937194824],[103.43402862548857,15.025540351867619],[103.44151306152361,15.028980255126953],[103.44506072998053,15.032840728759822],[103.44595336914062,15.037799835205135],[103.44993591308594,15.043060302734432],[103.44814300537138,15.047617912292424],[103.44264984130854,15.054549217224235],[103.43570709228521,15.058320999145508],[103.42880249023443,15.059219360351562],[103.42518615722662,15.064620971679744],[103.4273071289063,15.067959785461483],[103.43502807617205,15.070770263671989],[103.43901062011713,15.080250740051383],[103.44419097900408,15.085230827331543],[103.44068908691435,15.087531089782829],[103.43749237060541,15.083831787109375],[103.433578491211,15.087569236755314],[103.43363189697294,15.097880363464412],[103.44194030761719,15.098670959472656],[103.44348144531256,15.104290962219352],[103.4397659301759,15.107391357421989],[103.43533325195318,15.106792449951172],[103.4290924072265,15.103269577026424],[103.42887115478544,15.114439964294547],[103.43476104736334,15.119180679321289],[103.43035125732445,15.126380920410156],[103.4262008666995,15.127348899841365],[103.42707061767578,15.137361526489315],[103.4302215576173,15.14031124114996],[103.42314147949247,15.150250434875602],[103.42713165283209,15.15094089508051],[103.43080139160168,15.156431198120117],[103.42286682128906,15.16670131683361],[103.42489624023432,15.172180175781307],[103.43010711669922,15.177191734314079],[103.43006896972673,15.184082031250114],[103.42082214355474,15.187801361084098],[103.42263031005876,15.191899299621582],[103.42177581787115,15.201162338256893],[103.42626190185564,15.205660820007381],[103.4305267333985,15.206210136413631],[103.43345642089872,15.203360557556152],[103.43743133544928,15.20780086517334],[103.43180847167986,15.209321022033691],[103.43203735351568,15.215109825134334],[103.43765258789091,15.216990470886174],[103.43943023681658,15.221211433410758],[103.43624877929693,15.22772026062023],[103.43665313720709,15.23295974731451],[103.44107055664091,15.246709823608455],[103.44789123535179,15.251609802246207],[103.44296264648443,15.259241104126033],[103.44605255126964,15.261271476745605],[103.45401000976568,15.253951072692871],[103.46018981933588,15.25442886352539],[103.4631118774414,15.257681846618766],[103.46035766601574,15.264810562133903],[103.46550750732433,15.274060249328556],[103.46495056152338,15.280839920044059],[103.47173309326195,15.278420448303223],[103.4715499877932,15.284030914306697],[103.47895050048828,15.288651466369572],[103.48214721679705,15.293100357055664],[103.48562622070312,15.290121078491211],[103.49233245849632,15.289211273193416],[103.49536895751959,15.291290283203068],[103.50083923339861,15.2894802093507],[103.49968719482439,15.295911788940487],[103.50045776367205,15.301870346069393],[103.50495147705084,15.304160118103084],[103.50576019287121,15.310199737548885],[103.50247955322294,15.312170982360897],[103.49849700927763,15.305809974670353],[103.49579620361334,15.313741683960075],[103.48979949951172,15.309161186218262],[103.48493194580107,15.317779541015739],[103.47509765625017,15.318610191345215],[103.47160339355497,15.323651313781681],[103.47651672363287,15.328000068664664],[103.47383880615257,15.336079597473145],[103.46708679199236,15.336720466613826],[103.46125030517601,15.334330558776855],[103.45603179931658,15.33624076843273],[103.45372009277361,15.34226131439209],[103.4460067749024,15.34238052368164],[103.44406127929693,15.338319778442383],[103.45165252685547,15.336020469665584],[103.44529724121105,15.329500198364201],[103.44258117675787,15.33320140838623],[103.43824005126964,15.333271980285701],[103.43470001220703,15.328021049499512],[103.43770599365251,15.323748588562125],[103.432670593262,15.319451332092342],[103.43342590332037,15.314141273498592],[103.4320297241211,15.307589530944767],[103.4283523559572,15.307580947875977],[103.42591857910156,15.31416130065918],[103.42040252685553,15.314769744873104],[103.41590118408232,15.30895137786871],[103.41146087646507,15.313039779663086],[103.40686035156256,15.306932449340934],[103.40249633789085,15.313170433044547],[103.39660644531256,15.312501907348746],[103.39193725585955,15.314451217651424],[103.38820648193365,15.319890975952148],[103.3915176391601,15.324741363525504],[103.40122222900419,15.327070236206168],[103.39746093750017,15.333221435546989],[103.39070129394537,15.331819534301758],[103.38855743408209,15.326040267944393],[103.38282012939453,15.328010559082088],[103.3793106079101,15.335769653320312],[103.37364196777344,15.338709831237793],[103.36705780029325,15.336909294128532],[103.36210632324247,15.337909698486442],[103.36389160156267,15.344101905822868],[103.35578155517584,15.343180656433162],[103.35038757324219,15.33844089508051],[103.34371948242188,15.34275054931652],[103.34184265136741,15.335391044616813],[103.33775329589861,15.334611892700309],[103.33174133300804,15.336698532104492],[103.32997131347656,15.331160545349121],[103.32604980468778,15.331940650939885],[103.32241058349615,15.326740264892578],[103.31607055664068,15.32573032379156],[103.31919097900419,15.321481704711857],[103.31720733642578,15.317290306091365],[103.30963897705084,15.318821907043514],[103.30668640136736,15.316821098327694],[103.30214691162115,15.306429862976017],[103.29238891601562,15.298191070556697],[103.2907104492188,15.301931381225529],[103.28331756591803,15.304250717163086],[103.28283691406267,15.306891441345329],[103.28907012939482,15.313909530639762],[103.2863159179688,15.317350387573356],[103.2791290283206,15.31279087066656],[103.27693176269548,15.317590713501033],[103.26818084716797,15.316371917724553],[103.26702880859375,15.313261032104549],[103.26000213623053,15.311549186706657],[103.25466918945318,15.320980072021484],[103.24768829345714,15.316049575805721],[103.23680877685575,15.3187513351441],[103.2326889038086,15.321450233459416],[103.22924041748064,15.32041263580328],[103.22339630126976,15.322539329528922],[103.22049713134766,15.333550453186092],[103.215103149414,15.33047962188732],[103.21235656738287,15.33330059051525],[103.21492004394548,15.338590621948242],[103.20845794677751,15.338118553161678],[103.20461273193354,15.340531349182072],[103.20226287841825,15.333860397338924],[103.19886016845714,15.334039688110465],[103.197319030762,15.342809677124023],[103.19068145751947,15.357699394226188],[103.19898986816429,15.356661796569824],[103.19702911376953,15.363389968872184],[103.19020843505882,15.363299369812012],[103.18226623535168,15.365670204162711],[103.1817626953125,15.36001014709467],[103.17852783203125,15.35822963714594],[103.17262268066406,15.36104965209961],[103.16496276855486,15.35234069824213],[103.15825653076166,15.35344028472906],[103.16464233398443,15.359349250793457],[103.1645812988283,15.362760543823356],[103.1577377319336,15.363271713256893],[103.15968322753912,15.367351531982422],[103.15679168701172,15.371582031250114],[103.15213775634777,15.37169075012207],[103.1507415771485,15.376009941101188],[103.15744018554716,15.377500534057617],[103.1543197631836,15.383310317993164],[103.15000152587919,15.379740715026855],[103.14723205566423,15.384940147399902],[103.14279174804699,15.387090682983455],[103.14317321777355,15.393301963806266],[103.14630889892578,15.395000457763672],[103.14681243896479,15.401612281799316],[103.14002227783209,15.410202026367244],[103.13552093505888,15.405151367187614],[103.13617706298828,15.398579597473258],[103.11853027343778,15.400099754333553],[103.11650085449236,15.406381607055664],[103.11049652099615,15.40708065032959],[103.10096740722662,15.413721084594783],[103.09429168701178,15.415310859680233],[103.09255981445335,15.422491073608398],[103.10192871093756,15.427680015563965],[103.10278320312517,15.433870315551758],[103.10784912109403,15.438171386718693],[103.10980987548822,15.446390151977653],[103.1124114990235,15.45006084442133],[103.10819244384788,15.455229759216365],[103.1109695434572,15.463971138000545],[103.11611175537104,15.464578628540039],[103.11765289306658,15.468390464782772],[103.11483764648438,15.471270561218262],[103.11443328857422,15.479340553283805],[103.11608123779308,15.481599807739315],[103.13465118408203,15.477529525756893],[103.15994262695341,15.47019958496088],[103.1681594848634,15.468641281127873],[103.2062606811524,15.458441734314022],[103.20997619628923,15.460119247436523],[103.21729278564476,15.460189819335994],[103.216812133789,15.456561088562012],[103.22663879394554,15.453409194946346],[103.22698974609375,15.447169303894157],[103.23271179199219,15.445880889892521],[103.24394226074219,15.448230743408203],[103.25285339355463,15.446531295776367],[103.25531005859403,15.441420555114746],[103.26448822021479,15.437410354614371],[103.26487731933588,15.426900863647461],[103.27259063720709,15.421731948852596],[103.29058837890653,15.420161247253418],[103.30464172363287,15.414851188659725],[103.3341903686524,15.410610198974553],[103.34632110595697,15.407532691955566],[103.35238647460966,15.409561157226506],[103.3652572631836,15.411250114440975],[103.37596893310553,15.422481536865234],[103.38022613525419,15.42584133148199],[103.39186096191435,15.42788124084484],[103.40010833740229,15.430661201476994],[103.40068817138666,15.43317985534668]]]},"properties":{"ID_0":228,"ISO":"TH-32","NAME_0":"Thailand","ID_1":68,"NAME_1":"Surin","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"สุรินทร์","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[98.09218597412126,17.635391235351676],[98.09934234619169,17.61930274963379],[98.10260772705107,17.616750717163086],[98.10106658935575,17.61268043518072],[98.10710144042974,17.609991073608512],[98.10809326171898,17.60415077209484],[98.10488128662138,17.59951019287115],[98.1070785522461,17.593080520629996],[98.11112976074224,17.589479446411246],[98.10811614990263,17.584579467773494],[98.11383819580107,17.575130462646484],[98.12787628173828,17.56488037109375],[98.127182006836,17.556249618530273],[98.13109588623064,17.552688598632812],[98.13323211669928,17.544710159301758],[98.13891601562517,17.53923988342291],[98.1428680419923,17.540380477905387],[98.1502075195313,17.539230346679744],[98.16922760009783,17.544879913330192],[98.17424774169928,17.542528152465877],[98.18019866943365,17.535440444946346],[98.19895172119152,17.54084014892578],[98.2055282592774,17.537799835205135],[98.21331024169922,17.539150238037223],[98.22064971923857,17.54537963867199],[98.22792053222685,17.54347038269043],[98.23670196533214,17.54825973510748],[98.2427597045899,17.55378913879406],[98.2505111694336,17.556739807128963],[98.25180053710932,17.565202713012752],[98.2568130493164,17.571519851684627],[98.26304626464838,17.572639465332145],[98.26877593994135,17.577260971069336],[98.273422241211,17.57746124267578],[98.28832244873053,17.573280334472656],[98.29795837402338,17.573930740356445],[98.30348968505854,17.564699172973746],[98.29943084716825,17.55337905883789],[98.30156707763683,17.549560546875114],[98.30657958984375,17.547821044921932],[98.30903625488298,17.54127120971691],[98.30976867675793,17.533149719238395],[98.30738067626959,17.530990600585994],[98.31504058837913,17.52474975585949],[98.31353759765653,17.516580581665096],[98.31659698486357,17.508899688720703],[98.31716156005888,17.502380371093807],[98.32141113281244,17.498580932617244],[98.3287124633789,17.486129760742188],[98.33029937744163,17.4689617156983],[98.3255462646485,17.458871841430664],[98.32344055175787,17.44688987731945],[98.3210525512697,17.443920135498104],[98.32147216796875,17.433130264282227],[98.32865905761713,17.42736053466797],[98.32460784912138,17.421382904052734],[98.32314300537126,17.41461944580078],[98.31648254394548,17.41366004943842],[98.30613708496105,17.40967941284191],[98.30091094970709,17.41105079650879],[98.29496765136719,17.408880233764705],[98.2928695678711,17.405609130859375],[98.29975128173834,17.398689270019645],[98.30658721923828,17.388860702514705],[98.31746673583984,17.37930107116705],[98.3212127685548,17.37425041198742],[98.31801605224626,17.370721817016715],[98.31888580322294,17.364837646484375],[98.33458709716814,17.347860336303768],[98.33090972900419,17.334630966186523],[98.33286285400385,17.32731819152832],[98.32054901123053,17.321430206298828],[98.32301330566412,17.315570831298885],[98.32276916503923,17.309980392455998],[98.32935333251959,17.30417060852045],[98.33138275146484,17.30048942565918],[98.33901977539062,17.29548072814947],[98.35099029541033,17.29219055175787],[98.3581161499024,17.28760910034191],[98.36270141601568,17.287048339843807],[98.36888885498058,17.29458045959484],[98.3731689453125,17.297180175781307],[98.38044738769537,17.298280715942383],[98.40083312988287,17.30523109436041],[98.42182159423834,17.307460784912053],[98.4296493530274,17.304340362548885],[98.43878173828125,17.302700042724553],[98.45030975341825,17.307069778442383],[98.45813751220732,17.312610626220646],[98.46756744384766,17.309440612793082],[98.47631072998064,17.30286026000988],[98.48748016357428,17.299989700317383],[98.48307037353538,17.29618263244629],[98.48606872558594,17.290121078491325],[98.49109649658209,17.299360275268555],[98.4941024780274,17.299789428710938],[98.49447631835938,17.286809921264705],[98.49349975585938,17.28330993652355],[98.49787902832048,17.27372169494629],[98.50361633300781,17.277490615844727],[98.51882171630854,17.27898025512701],[98.53060913085966,17.272670745849666],[98.53343963623053,17.273160934448356],[98.5428619384765,17.279462814330998],[98.54660034179693,17.280719757080192],[98.55285644531256,17.279550552368278],[98.56849670410162,17.283798217773494],[98.57556152343756,17.283412933349723],[98.57930755615251,17.295471191406307],[98.57601928710949,17.297790527343864],[98.5671997070313,17.291790008545036],[98.55883789062528,17.291580200195312],[98.559326171875,17.297611236572266],[98.55786132812506,17.313280105590934],[98.56159973144531,17.318861007690487],[98.5582962036134,17.325849533081055],[98.55561828613293,17.336009979248104],[98.55860900878929,17.343719482421932],[98.56282043457037,17.349571228027344],[98.5590362548831,17.352319717407283],[98.54899597167986,17.35163116455078],[98.54445648193365,17.35395050048828],[98.538627624512,17.361511230468864],[98.54434967041044,17.37096977233898],[98.55088043212908,17.385339736938533],[98.55667877197271,17.39599037170416],[98.55528259277361,17.408792495727596],[98.55831146240229,17.417161941528377],[98.55735778808588,17.423780441284237],[98.55976104736334,17.430440902710018],[98.55251312255865,17.4421005249024],[98.54659271240257,17.44663047790533],[98.53218841552751,17.45014953613287],[98.52755737304716,17.456470489501953],[98.5201568603515,17.476739883422965],[98.5203323364259,17.482931137085075],[98.52558898925787,17.494871139526367],[98.52030944824247,17.508991241455135],[98.524642944336,17.51276969909668],[98.52680969238293,17.51814079284668],[98.52558898925787,17.52177047729498],[98.52883148193365,17.535009384155387],[98.53781890869163,17.539230346679744],[98.53621673584001,17.542289733886776],[98.54355621337896,17.55512046813965],[98.55075073242193,17.562330245971623],[98.5594787597658,17.567659378051815],[98.57849121093778,17.575782775878906],[98.58725738525419,17.578130722046012],[98.58506774902344,17.586240768432617],[98.58094787597685,17.595600128173885],[98.56430053710943,17.61423110961914],[98.55853271484392,17.615400314331055],[98.54075622558588,17.61585998535162],[98.53354644775408,17.619478225708008],[98.53079986572294,17.634460449218864],[98.5337982177735,17.63830184936529],[98.52963256835943,17.65811157226574],[98.52448272705084,17.671529769897518],[98.52343750000017,17.681400299072322],[98.52356719970714,17.6956081390382],[98.5264358520509,17.701639175415153],[98.52555847167969,17.709802627563533],[98.52230072021484,17.713750839233512],[98.52089691162121,17.723480224609432],[98.51876831054716,17.72711753845209],[98.51879119873075,17.734840393066406],[98.5075073242188,17.75093078613287],[98.50531768798845,17.75971984863287],[98.50776672363276,17.768451690673942],[98.5112533569336,17.77051925659191],[98.51058959960966,17.77863121032709],[98.51174926757824,17.787189483642578],[98.50354766845714,17.793291091919002],[98.49568939209013,17.79573059082037],[98.49392700195318,17.805231094360295],[98.4957427978515,17.812231063842773],[98.4981384277346,17.814159393310604],[98.51203155517584,17.811309814453125],[98.5168914794923,17.81620025634777],[98.5156478881836,17.820238113403377],[98.5206832885745,17.822851181030387],[98.52378845214838,17.82188987731945],[98.53163146972673,17.81345939636236],[98.54574584960955,17.809190750122184],[98.55169677734375,17.801990509033317],[98.5612411499024,17.794351577758732],[98.56455230712919,17.795070648193416],[98.57154846191412,17.80359077453619],[98.57398986816406,17.808322906494084],[98.5820083618164,17.805509567260685],[98.58480834960949,17.799669265747184],[98.58985900878912,17.79874992370611],[98.5913925170899,17.80351066589361],[98.59852600097668,17.800792694091854],[98.60523223876947,17.792211532592773],[98.60984802246094,17.78310966491705],[98.61483764648443,17.7784481048584],[98.62358093261719,17.776840209960994],[98.62827301025419,17.771139144897575],[98.6302719116211,17.764991760253906],[98.62924194335949,17.757900238037166],[98.63442230224626,17.742919921875057],[98.63880920410173,17.735260009765682],[98.64393615722668,17.73693084716797],[98.65068054199219,17.74283981323248],[98.66603851318388,17.747289657592887],[98.66934967041033,17.75187110900879],[98.68067932128929,17.757629394531307],[98.69004058837896,17.7652206420899],[98.69194793701178,17.775302886963004],[98.69535827636741,17.773141860962028],[98.69983673095697,17.764839172363338],[98.70420074462902,17.762510299682674],[98.70623016357445,17.75832939147955],[98.70339202880865,17.744369506835938],[98.7095413208009,17.736049652099553],[98.71633148193365,17.733240127563533],[98.72608947753912,17.724451065063533],[98.7265701293947,17.714260101318473],[98.7408523559572,17.706678390503043],[98.74559783935558,17.700061798095703],[98.74707794189482,17.69102287292492],[98.74546813964844,17.687280654907283],[98.7381896972658,17.681331634521484],[98.73352813720709,17.6810302734375],[98.72444915771501,17.67438125610363],[98.69876098632818,17.665439605713004],[98.68752288818365,17.666570663452205],[98.68519592285156,17.66139030456543],[98.68995666503906,17.65599060058605],[98.68650054931658,17.649021148681754],[98.68633270263672,17.641559600830135],[98.69267272949224,17.632221221923885],[98.69287872314476,17.627950668334904],[98.68984985351568,17.623069763183594],[98.6915817260745,17.61521148681635],[98.6908416748048,17.611919403076172],[98.68467712402366,17.60123062133789],[98.68358612060575,17.59551811218256],[98.68537902832031,17.59178924560547],[98.69452667236345,17.58547019958496],[98.69644165039062,17.580160140991268],[98.69750976562528,17.570909500122127],[98.70339202880865,17.55398750305187],[98.70487213134771,17.54054260253912],[98.70243835449224,17.531480789184684],[98.70295715332037,17.523681640625],[98.69792938232416,17.51220130920416],[98.70137023925798,17.504800796508903],[98.7069702148438,17.499980926513672],[98.70475006103544,17.491701126098633],[98.70645141601591,17.48563003540039],[98.700210571289,17.47653961181635],[98.69422912597662,17.475500106811637],[98.68643188476591,17.467090606689567],[98.6838989257813,17.45967102050787],[98.68441772460955,17.45116043090826],[98.68216705322271,17.44651985168457],[98.68836212158214,17.439601898193473],[98.69196319580107,17.430799484252987],[98.69618225097668,17.42938041687006],[98.70204162597679,17.434669494628963],[98.70324707031261,17.443439483642692],[98.71079254150396,17.452241897583008],[98.71482086181663,17.451930999755916],[98.71627044677751,17.457880020141715],[98.71967315673822,17.463340759277457],[98.73039245605469,17.462699890136776],[98.7369918823245,17.463541030883846],[98.74253082275402,17.46671104431158],[98.74797821044928,17.465820312500114],[98.75444030761719,17.46879005432129],[98.75675201416021,17.47435188293457],[98.76158905029325,17.480899810791016],[98.76875305175781,17.483318328857365],[98.7793426513673,17.48876953125],[98.78233337402366,17.492591857910156],[98.79190063476591,17.494010925293026],[98.79844665527338,17.49845123291027],[98.8094177246096,17.499521255493164],[98.81642150878906,17.498672485351506],[98.81688690185575,17.5055828094483],[98.82448577880882,17.51088905334484],[98.83178710937528,17.513481140136776],[98.83360290527344,17.51053047180187],[98.84217071533203,17.51357078552246],[98.84723663330107,17.51151084899908],[98.85449981689464,17.511631011962947],[98.86025238037126,17.509769439697322],[98.86598968505876,17.50345993041998],[98.87171936035173,17.499879837036133],[98.8729095458985,17.49118804931652],[98.88054656982428,17.489730834960938],[98.88040924072294,17.4962997436524],[98.88266754150413,17.49987030029297],[98.88262176513672,17.505540847778434],[98.88461303710966,17.509639739990178],[98.88999176025385,17.51149940490717],[98.89029693603538,17.516082763671875],[98.89546966552763,17.51941108703619],[98.89794158935553,17.52704048156744],[98.91207122802763,17.534420013427848],[98.91385650634783,17.53184127807623],[98.92417907714844,17.527202606201172],[98.9276123046875,17.521209716796875],[98.92341613769531,17.51171112060547],[98.9290924072265,17.504930496215877],[98.92797851562517,17.498111724853572],[98.93106842041016,17.494060516357422],[98.92822265625006,17.491580963134766],[98.9290924072265,17.486249923706055],[98.93402099609403,17.482179641723633],[98.93268585205107,17.473751068115348],[98.9450073242188,17.4672794342041],[98.95017242431646,17.468429565429744],[98.95612335205107,17.473329544067496],[98.9615707397461,17.461509704589844],[98.96376800537138,17.465139389038143],[98.97528076171892,17.463310241699276],[98.98059082031244,17.465780258178825],[98.98773956298834,17.458681106567383],[98.98832702636741,17.45421981811529],[98.9930419921875,17.45158004760748],[98.99359893798845,17.445829391479492],[99.00023651123041,17.44114112854004],[99.00138854980463,17.437271118164062],[99.00627899169928,17.43355941772461],[99.00791931152344,17.42699050903326],[99.01489257812528,17.420511245727482],[99.01320648193354,17.412649154663086],[99.01795959472668,17.41263961791998],[99.02070617675781,17.409490585327205],[99.03267669677751,17.409210205078068],[99.03515625000017,17.401550292968864],[99.04199981689464,17.396369934082088],[99.04457855224615,17.392099380493107],[99.0426101684572,17.388879776000977],[99.0491561889649,17.383890151977482],[99.05764007568371,17.386421203613338],[99.06632232666021,17.381179809570256],[99.06729125976585,17.376308441162053],[99.07752990722656,17.370769500732536],[99.0869903564456,17.3752498626709],[99.10028076171898,17.366931915283317],[99.10604858398466,17.362279891967773],[99.11022186279303,17.356830596923942],[99.11428070068371,17.360530853271484],[99.11367034912138,17.367519378662223],[99.12314605712896,17.363178253173828],[99.12738800048834,17.363178253173828],[99.1337203979495,17.360380172729492],[99.14289855957043,17.358940124511776],[99.14784240722668,17.353910446166992],[99.1549377441408,17.33604240417486],[99.16635131835949,17.33636093139654],[99.17218780517601,17.334360122680664],[99.17513275146496,17.33564949035639],[99.17855072021496,17.347339630126953],[99.18968963623047,17.350870132446403],[99.19323730468761,17.355752944946346],[99.1976470947265,17.357900619506836],[99.198989868164,17.36240959167492],[99.207260131836,17.366809844970703],[99.21053314209007,17.37142944335949],[99.20729827880882,17.378690719604492],[99.21414184570318,17.390071868896484],[99.22828674316412,17.404130935668945],[99.23847198486322,17.401029586791992],[99.24257659912132,17.403669357299805],[99.25144195556635,17.404571533203182],[99.26080322265642,17.40393829345703],[99.27143859863293,17.398889541626033],[99.27645111084001,17.380081176757812],[99.27363586425787,17.372499465942383],[99.27162170410185,17.354679107666072],[99.27245330810564,17.34766006469738],[99.27899932861351,17.3433895111084],[99.27928161621088,17.335800170898438],[99.27761840820312,17.329639434814453],[99.28658294677734,17.31758117675787],[99.28755187988281,17.310749053955078],[99.29453277587902,17.30644989013672],[99.29786682128912,17.301300048828125],[99.29930877685541,17.28528976440441],[99.30290222167997,17.278030395507812],[99.30416870117193,17.271690368652287],[99.31069946289091,17.268360137939396],[99.31655883789068,17.267391204834098],[99.31916809082048,17.260038375854492],[99.32189941406256,17.238819122314453],[99.32057952880882,17.23242950439453],[99.32112121582031,17.22410011291504],[99.31542968750023,17.213979721069393],[99.32080078125006,17.20649909973156],[99.31752777099632,17.2035427093507],[99.31443786621094,17.186119079589844],[99.31117248535173,17.18408012390148],[99.31469726562506,17.171300888061637],[99.31887817382835,17.164461135864315],[99.319877624512,17.155860900878963],[99.31842041015642,17.147310256958065],[99.31516265869158,17.142070770263786],[99.31877899169939,17.137100219726562],[99.32695770263683,17.136230468750114],[99.3303909301759,17.131660461425895],[99.32221221923845,17.124330520629883],[99.32118988037138,17.11575126647955],[99.32231903076178,17.109119415283203],[99.33049011230474,17.101860046386776],[99.3328399658206,17.096639633178768],[99.34062957763678,17.08947944641119],[99.35115814209013,17.09171104431158],[99.36200714111357,17.088279724121094],[99.368408203125,17.093120574951172],[99.37905120849626,17.08991050720215],[99.38304138183588,17.086999893188533],[99.3866424560548,17.081090927124137],[99.39434814453125,17.08040809631359],[99.39475250244146,17.076259613037223],[99.38787841796875,17.067541122436637],[99.3878479003908,17.059730529785213],[99.39079284667974,17.055681228637695],[99.3935623168947,17.04561996459961],[99.3925323486331,17.033760070800838],[99.39501190185575,17.023870468139762],[99.3984985351562,17.02009010314947],[99.40625762939482,17.01984024047846],[99.41602325439464,17.01558113098139],[99.42111968994146,17.016450881958065],[99.42531585693365,17.013870239257812],[99.42479705810558,17.01030158996582],[99.43306732177734,17.010091781616268],[99.4300384521485,16.999658584594783],[99.42510223388695,16.993312835693303],[99.41771697998075,16.98686027526867],[99.41683959960955,16.982168197631836],[99.41256713867216,16.978321075439453],[99.41316986083996,16.972431182861385],[99.41818237304688,16.96703910827631],[99.42090606689476,16.955320358276424],[99.42002868652355,16.953060150146598],[99.41336059570324,16.950849533081055],[99.41499328613304,16.93964958190918],[99.42040252685558,16.931631088256836],[99.4278869628908,16.93062973022461],[99.43414306640636,16.927869796752987],[99.43699645996105,16.917129516601506],[99.4412078857423,16.911529541015682],[99.44651794433622,16.907670974731445],[99.44050598144531,16.902099609375],[99.43653106689459,16.89192008972168],[99.43132019042986,16.889169692993164],[99.42729949951166,16.883359909057617],[99.42720794677757,16.879091262817383],[99.42220306396484,16.87566947937023],[99.41510772705095,16.874141693115234],[99.40425109863298,16.870241165161076],[99.39055633544928,16.868600845336914],[99.38420867919939,16.86602020263672],[99.3799591064456,16.859138488769474],[99.38018035888666,16.85147094726574],[99.37606811523443,16.842758178710938],[99.38459014892595,16.83222007751465],[99.38752746582054,16.82388114929205],[99.38407897949224,16.820930480957088],[99.38883209228516,16.8130207061767],[99.38575744628906,16.807050704956055],[99.37473297119146,16.80169105529791],[99.36621093750028,16.802560806274414],[99.35427093505876,16.8080215454101],[99.34948730468767,16.808549880981502],[99.34468841552746,16.81159019470209],[99.33570861816435,16.811069488525447],[99.32711029052763,16.81187057495123],[99.32312011718778,16.810260772705078],[99.31739807128935,16.794149398803768],[99.31195831298828,16.792150497436467],[99.30323028564476,16.791059494018555],[99.29701232910168,16.78757095336914],[99.29374694824247,16.783912658691463],[99.29222869873058,16.778490066528434],[99.29614257812506,16.771118164062557],[99.30610656738287,16.765420913696346],[99.30406188964855,16.754390716552734],[99.30216979980463,16.751951217651367],[99.30233764648449,16.744911193847656],[99.30449676513689,16.73834037780773],[99.29749298095709,16.72985076904297],[99.29794311523466,16.724821090698185],[99.29570770263689,16.717670440673942],[99.2867660522461,16.713460922241268],[99.28302764892584,16.707769393920955],[99.27997589111334,16.697259902954045],[99.2833480834961,16.689729690551815],[99.28186798095726,16.686220169067383],[99.27348327636741,16.683000564575195],[99.27504730224638,16.67583084106451],[99.2712783813476,16.667470932006836],[99.26615142822283,16.668050765991268],[99.2594985961914,16.663980484008846],[99.2523117065432,16.66357994079584],[99.24703216552746,16.661350250244197],[99.24913024902355,16.654172897338924],[99.24711608886719,16.652032852172965],[99.24749755859375,16.64171981811529],[99.24479675292986,16.630180358886776],[99.24545288085943,16.62158012390148],[99.24817657470714,16.610652923584098],[99.2520523071289,16.60715103149414],[99.25016784667969,16.602880477905387],[99.25401306152366,16.59904289245611],[99.25092315673828,16.588640213012752],[99.2554168701173,16.580020904541016],[99.25727081298851,16.565690994262695],[99.25502777099638,16.56063270568859],[99.24974822998064,16.55700111389166],[99.2475280761721,16.553279876709098],[99.24862670898438,16.548280715942326],[99.24259185791021,16.534032821655387],[99.23974609375028,16.530979156494084],[99.2336120605471,16.5318603515625],[99.2244567871096,16.5303897857666],[99.22019195556658,16.525041580200195],[99.21321105957054,16.529090881347713],[99.20545196533214,16.530790328979606],[99.2004318237307,16.529850006103516],[99.19783782958979,16.535511016845817],[99.19081878662126,16.536270141601562],[99.19071197509771,16.528949737548828],[99.18119049072294,16.530782699585075],[99.18144226074213,16.52664184570324],[99.17170715332026,16.51988983154297],[99.16906738281267,16.51300048828125],[99.17510986328153,16.508850097656307],[99.16510009765625,16.501190185546875],[99.15023803710943,16.501150131225586],[99.14904022216814,16.498680114746094],[99.14009094238281,16.49792098999029],[99.13893890380876,16.49294090270996],[99.13520812988287,16.488880157470703],[99.13020324707037,16.48810005187994],[99.1285095214846,16.482170104980526],[99.12441253662104,16.477741241455192],[99.12406921386719,16.473461151123104],[99.11380004882818,16.478170394897575],[99.10787200927734,16.47916030883789],[99.10539245605469,16.47519111633312],[99.10159301757818,16.476879119873047],[99.09751129150385,16.47437095642084],[99.08584594726591,16.470291137695312],[99.08071899414074,16.471469879150334],[99.07405090332026,16.47879028320324],[99.05725097656261,16.480070114135856],[99.04773712158197,16.47925949096691],[99.04695892333996,16.47772979736328],[99.03459167480486,16.476270675659293],[99.0311584472658,16.472948074340763],[99.02471923828125,16.47360992431652],[99.01412200927763,16.482631683349666],[99.0121459960938,16.489210128784293],[99.00559234619158,16.496280670166016],[99.00093078613287,16.497779846191463],[98.99198913574247,16.493499755859318],[98.98734283447271,16.487859725952205],[98.98829650878912,16.48233985900879],[98.98780822753935,16.471460342407227],[98.99298858642572,16.4644393920899],[98.99620819091808,16.452520370483455],[99.0004272460937,16.449752807617244],[99.00731658935564,16.44947052001953],[99.01315307617216,16.447589874267692],[99.01793670654325,16.440820693969783],[99.01821899414062,16.437450408935604],[99.02391052246111,16.42688941955572],[99.02410125732439,16.420368194580078],[99.02072143554693,16.41706085205078],[99.01976776123053,16.409660339355526],[99.02111053466803,16.3995304107666],[99.01725006103533,16.38496971130371],[99.02279663085938,16.380849838256893],[99.03640747070318,16.38277053833002],[99.04242706298845,16.373170852661246],[99.04231262207054,16.35786247253418],[99.04550170898438,16.352411270141545],[99.04344177246116,16.347820281982536],[99.0429229736331,16.33831024169922],[99.05255889892578,16.33140945434576],[99.05335998535179,16.319578170776424],[99.05108642578148,16.314041137695312],[99.05399322509794,16.307790756225643],[99.05188751220732,16.303720474243278],[99.045219421387,16.297809600830135],[99.04284667968756,16.291330337524528],[99.04646301269531,16.280689239502067],[99.04606628417969,16.2757511138916],[99.0490798950197,16.26752090454113],[99.05049133300787,16.25621032714855],[99.05444335937517,16.253040313720817],[99.05580139160156,16.245420455932674],[99.06539154052757,16.2388916015625],[99.06665039062517,16.233890533447322],[99.07289123535168,16.227640151977653],[99.07553100585966,16.221160888671875],[99.08023834228521,16.217161178588924],[99.0837783813476,16.21120262145996],[99.08190155029314,16.201120376587028],[99.07437896728544,16.194810867309684],[99.07338714599632,16.183460235595646],[99.07108306884771,16.179161071777287],[99.07090759277366,16.17268943786621],[99.06849670410168,16.16523933410656],[99.05603790283226,16.1615505218507],[99.0512619018557,16.158189773559684],[99.05256652832031,16.153640747070312],[99.05074310302763,16.149642944335938],[99.0504226684572,16.14220046997076],[99.0533981323245,16.1331405639649],[99.06072998046892,16.131261825561523],[99.06884002685553,16.13128089904791],[99.0732116699221,16.127540588378906],[99.07981872558594,16.12461090087885],[99.08452606201183,16.113452911376896],[99.08872985839855,16.112640380859375],[99.09201812744158,16.109130859375114],[99.09452056884766,16.101890563964957],[99.1039581298831,16.100099563598633],[99.10932922363293,16.097621917724553],[99.10839843750017,16.08514976501465],[99.10977172851562,16.081600189208928],[99.1142959594726,16.079151153564453],[99.11737060546892,16.072099685669002],[99.11396789550781,16.06351089477539],[99.11512756347656,16.05883026123047],[99.10972595214838,16.05412101745611],[99.10613250732439,16.048589706420955],[99.0979919433596,16.046222686767635],[99.08766174316406,16.04112052917486],[99.0879592895509,16.031959533691406],[99.08450317382841,16.025131225585994],[99.08287811279297,16.003789901733512],[99.08760833740251,15.993951797485408],[99.08775329589872,15.98507022857666],[99.0897827148438,15.979411125183105],[99.08640289306669,15.970171928405875],[99.08251190185547,15.967571258544922],[99.07929229736334,15.961628913879508],[99.075736999512,15.960350990295467],[99.07621765136719,15.950930595397892],[99.08278656005888,15.946781158447266],[99.08642578125011,15.947299957275504],[99.09010314941423,15.94258022308361],[99.09195709228527,15.935099601745549],[99.09568023681646,15.933270454406738],[99.09803009033232,15.928030014038143],[99.0970306396485,15.923821449279785],[99.09104156494158,15.917669296264648],[99.08715820312528,15.911700248718262],[99.08808898925804,15.904170036316032],[99.08677673339872,15.898791313171444],[99.08928680419933,15.89585971832281],[99.08878326416016,15.884849548339957],[99.08625793457026,15.88350963592535],[99.08899688720703,15.877640724182072],[99.09587097167974,15.872830390930176],[99.09729766845714,15.869779586791992],[99.09419250488304,15.857329368591422],[99.09867858886736,15.852311134338379],[99.09726715087919,15.840691566467285],[99.09542846679705,15.835439682006836],[99.0970382690432,15.83057022094738],[99.10404968261719,15.82594108581543],[99.10356140136747,15.820281982421932],[99.10826873779303,15.817400932312125],[99.1239776611331,15.813192367553768],[99.13175201416038,15.805269241333065],[99.13655853271513,15.792450904846191],[99.13591766357422,15.78639125823986],[99.12860870361322,15.772139549255371],[99.12851715087913,15.765110969543514],[99.13092803955095,15.758700370788574],[99.13220977783214,15.749191284179744],[99.1355590820313,15.743050575256348],[99.13613891601585,15.736631393432617],[99.13948822021501,15.732929229736442],[99.13092803955095,15.72101020812994],[99.13134765625006,15.716909408569393],[99.12848663330084,15.71139240264904],[99.13136291503912,15.705121994018668],[99.12751007080078,15.698471069336051],[99.1265029907226,15.692879676818848],[99.11923217773449,15.683280944824219],[99.11743164062506,15.674419403076172],[99.1148223876956,15.672809600830192],[99.11437225341803,15.667390823364315],[99.11678314208979,15.66187953948969],[99.11300659179688,15.647361755371207],[99.11801910400413,15.644439697265682],[99.11663818359375,15.634571075439453],[99.11437225341803,15.627791404724121],[99.10997772216797,15.622359275817985],[99.10811614990257,15.61505031585699],[99.09834289550781,15.610342025756779],[99.09599304199213,15.596860885620117],[99.09255218505854,15.590129852294922],[99.09519958496105,15.580890655517692],[99.08557891845709,15.578168869018555],[99.07544708251953,15.572850227356014],[99.0672378540039,15.566720962524528],[99.06212615966803,15.566710472106934],[99.05245971679716,15.562239646911678],[99.04924774169933,15.55217075347906],[99.05217742919922,15.543880462646598],[99.05574798583979,15.538379669189567],[99.05517578124994,15.529402732849178],[99.05731964111328,15.52256965637207],[99.06115722656256,15.518561363220272],[99.07488250732422,15.509391784668026],[99.07936859130871,15.499560356140194],[99.07984161376953,15.495969772338867],[99.0764923095706,15.489912033081112],[99.07521820068376,15.48425102233898],[99.07158660888689,15.478911399841422],[99.06526184082043,15.4726819992066],[99.06395721435564,15.467580795288143],[99.0660705566408,15.461839675903434],[99.05932617187528,15.458400726318416],[99.06027984619169,15.45300102233881],[99.05738830566412,15.440090179443416],[99.06298065185558,15.435331344604549],[99.06516265869146,15.424920082092342],[99.06925201416044,15.414679527282658],[99.06781005859375,15.400719642639217],[99.06974029541021,15.394520759582576],[99.06462860107445,15.391350746154842],[99.05993652343744,15.393880844116211],[99.05567169189459,15.380821228027344],[99.05055236816435,15.380700111389217],[99.04617309570341,15.374181747436637],[99.04570007324219,15.367268562316951],[99.04766082763678,15.362840652465934],[99.04724121093756,15.357589721679744],[99.04431152343767,15.35093021392828],[99.0439682006836,15.344101905822868],[99.03436279296886,15.339501380920467],[99.03172302246111,15.33520889282238],[99.03311157226562,15.329339981079102],[99.0313186645509,15.326391220092773],[99.03338623046903,15.315899848937988],[99.03163146972679,15.309969902038631],[99.03272247314453,15.297721862793026],[99.03849029541038,15.296469688415527],[99.03882598876953,15.286191940307674],[99.0295333862307,15.282120704650993],[99.02536773681669,15.277791023254451],[99.02165222167969,15.268081665039062],[99.0168533325197,15.26291942596447],[99.02030181884783,15.25852108001709],[99.02114868164068,15.252270698547477],[99.01976013183594,15.24446964263916],[99.01255798339866,15.242849349975586],[99.00681304931646,15.2378511428833],[99.00955200195341,15.230140686035156],[99.00753021240234,15.228041648864803],[99.00570678710943,15.218961715698185],[99.00640106201172,15.213120460510197],[99.0095672607423,15.206630706787166],[99.00588989257818,15.20143032073969],[99.00611114501982,15.197540283203182],[99.00296783447266,15.190810203552246],[99.00055694580084,15.18211936950695],[98.99508666992182,15.182411193847656],[98.99214172363304,15.1854505538941],[98.98744201660168,15.18458080291748],[98.98461151123064,15.180560111999455],[98.98140716552734,15.181599617004395],[98.97138214111357,15.191940307617188],[98.97216796875028,15.19641017913824],[98.96483612060553,15.205780982971248],[98.96469116210943,15.216857910156364],[98.96322631835949,15.22313022613531],[98.95958709716808,15.229709625244197],[98.95732879638666,15.237100601196346],[98.95675659179682,15.245702743530273],[98.94641113281278,15.250461578369197],[98.92877960205078,15.24742126464838],[98.9248733520509,15.245089530944824],[98.92056274414062,15.248320579528922],[98.9196395874024,15.253582000732536],[98.91600799560553,15.255430221557617],[98.91387176513689,15.266000747680664],[98.90637207031261,15.268300056457633],[98.89971160888683,15.272100448608455],[98.88935089111334,15.274091720580998],[98.88764190673834,15.276471138000545],[98.89142608642584,15.283740997314567],[98.89140319824224,15.290619850158691],[98.88500976562511,15.302020072937125],[98.87155151367188,15.323401451110897],[98.86753845214844,15.328010559082088],[98.8607711791995,15.331440925598258],[98.84178161621094,15.346461296081657],[98.8343505859375,15.3443603515625],[98.82707214355486,15.355211257934684],[98.82147979736357,15.365300178527832],[98.81416320800787,15.375359535217342],[98.80674743652366,15.38179016113287],[98.80310058593756,15.389240264892521],[98.78399658203125,15.408170700073185],[98.7811279296875,15.419010162353516],[98.76980590820324,15.431659698486385],[98.76389312744152,15.434090614318904],[98.7635574340822,15.436780929565373],[98.75501251220703,15.440660476684684],[98.7600784301759,15.45104122161871],[98.75646209716808,15.455929756164608],[98.75625610351591,15.459520339965934],[98.76014709472656,15.468680381774902],[98.7583694458009,15.472322463989371],[98.74653625488293,15.481240272522086],[98.74143218994158,15.477791786193904],[98.73336029052763,15.482060432434139],[98.72823333740246,15.488280296325797],[98.72274017334001,15.489469528198242],[98.70517730712885,15.4981307983399],[98.70227813720732,15.503101348876896],[98.70513916015653,15.508480072021484],[98.71370697021513,15.503499984741325],[98.72071838378912,15.506340026855526],[98.71911621093767,15.511859893798942],[98.72509002685553,15.516349792480582],[98.71076965332031,15.529931068420353],[98.699028015137,15.550869941711426],[98.69506072998041,15.55625057220459],[98.67304992675804,15.583151817321777],[98.66915893554705,15.593220710754395],[98.6626968383789,15.597371101379395],[98.65876007080084,15.607780456542969],[98.65567779541021,15.611080169677734],[98.65476226806669,15.621609687805176],[98.6496124267581,15.631930351257381],[98.64331054687506,15.63661956787115],[98.63185119628929,15.62593078613287],[98.62641906738298,15.625320434570312],[98.62094116210943,15.639311790466422],[98.61328125,15.64309024810791],[98.60923004150385,15.640099525451717],[98.59989929199236,15.643831253051701],[98.59070587158214,15.644351005554256],[98.58509826660162,15.658860206603947],[98.57681274414057,15.658699989318848],[98.57190704345703,15.653549194335938],[98.55995178222662,15.650390625000057],[98.5581359863283,15.653950691223258],[98.54766845703125,15.681700706481877],[98.56643676757818,15.757231712341252],[98.57044982910162,15.772541046142635],[98.57891845703142,15.797870635986385],[98.58666229248053,15.817850112915096],[98.59158325195318,15.827570915222168],[98.61112213134777,15.8754301071167],[98.60417175292974,15.874570846557617],[98.60153198242193,15.872109413146916],[98.59660339355497,15.874650955200195],[98.59668731689453,15.88495922088623],[98.59337615966808,15.886469841003361],[98.58966827392584,15.893020629882926],[98.58930969238304,15.906690597534237],[98.58592987060575,15.912331581115836],[98.58531188964866,15.917101860046444],[98.58898162841825,15.931850433349723],[98.59233093261724,15.936681747436637],[98.59281158447277,15.950901031494254],[98.59599304199241,15.959749221801758],[98.60282897949224,15.964200019836426],[98.6061325073245,15.964370727539176],[98.6092605590822,15.971431732177734],[98.60913848876959,15.976910591125431],[98.60637664794916,15.98112964630127],[98.60530090332037,15.990040779113883],[98.60051727294922,15.995771408081168],[98.59751892089866,16.004650115966854],[98.59252929687506,16.011962890625],[98.58690643310558,16.013738632202262],[98.57888031005871,16.018497467041016],[98.57656860351591,16.023971557617188],[98.567138671875,16.028079986572266],[98.5628814697265,16.03116035461437],[98.56418609619169,16.044290542602596],[98.5680923461914,16.055139541626033],[98.57611083984375,16.056730270385742],[98.58199310302751,16.061740875244254],[98.58867645263672,16.05524063110363],[98.594970703125,16.055311203003043],[98.59910583496105,16.060789108276424],[98.60584259033203,16.062589645385685],[98.60920715332043,16.059829711914062],[98.60468292236345,16.05223274230957],[98.60810852050798,16.049251556396484],[98.60929870605469,16.04122924804699],[98.61445617675787,16.0386905670166],[98.61966705322294,16.041191101074276],[98.62600708007824,16.041040420532283],[98.63275146484375,16.04828071594244],[98.62761688232428,16.058660507202205],[98.62953186035162,16.06089019775402],[98.6424789428711,16.060911178588867],[98.6433715820312,16.065031051635856],[98.65509796142584,16.07004928588873],[98.66171264648455,16.07189750671398],[98.66322326660173,16.075700759887695],[98.65983581542969,16.080299377441463],[98.66140747070335,16.083129882812557],[98.6720581054688,16.089059829711914],[98.6756591796875,16.09437942504877],[98.67487335205095,16.098390579223633],[98.66992187500017,16.10304069519043],[98.66738891601574,16.108400344848746],[98.67333221435564,16.111070632934684],[98.68213653564453,16.109619140625],[98.68296813964866,16.117111206054744],[98.67907714843767,16.12420082092291],[98.68058776855486,16.12659072875988],[98.68710327148438,16.12735939025879],[98.6874389648437,16.131700515747184],[98.6934509277346,16.13014030456543],[98.69995117187506,16.13367080688471],[98.70864868164062,16.133962631225586],[98.7147827148438,16.130712509155273],[98.71736907958996,16.123500823974666],[98.72164154052734,16.121549606323242],[98.7311782836914,16.121461868286133],[98.74465942382807,16.117460250854606],[98.7504806518557,16.11905288696289],[98.75874328613293,16.118118286132926],[98.77081298828142,16.11947059631359],[98.77394866943382,16.12269020080572],[98.7808380126956,16.124811172485465],[98.78505706787138,16.122051239013615],[98.78900909423851,16.110019683837834],[98.79910278320318,16.104810714721737],[98.80741882324236,16.103572845458984],[98.80976867675787,16.106830596923828],[98.82021331787126,16.10943984985363],[98.83036041259766,16.11606979370123],[98.82950592041027,16.12041091918951],[98.83203125000017,16.124210357666016],[98.84332275390625,16.128011703491154],[98.84780883789091,16.1260604858399],[98.85285949707031,16.134029388427848],[98.85077667236334,16.13647079467779],[98.85273742675787,16.141019821166992],[98.85492706298845,16.15508079528803],[98.85160064697294,16.158109664917106],[98.85755920410168,16.161750793457088],[98.85823059082037,16.164949417114258],[98.86289215087902,16.167499542236328],[98.86254882812517,16.174722671508846],[98.86062622070307,16.181011199951172],[98.86147308349615,16.18551063537592],[98.85501098632835,16.19086837768566],[98.86207580566412,16.1961994171142],[98.8600463867187,16.20458984375],[98.85550689697283,16.20870971679699],[98.85331726074247,16.213808059692383],[98.85617065429693,16.22227096557623],[98.86762237548857,16.231992721557617],[98.87100219726568,16.23237037658697],[98.8790817260745,16.228471755981445],[98.88204193115234,16.23682022094738],[98.88822937011747,16.240730285644645],[98.88794708251953,16.245830535888615],[98.89440917968767,16.24675750732422],[98.90473937988281,16.25313949584961],[98.90573883056663,16.25938987731945],[98.91108703613304,16.265739440918082],[98.90805053710943,16.27121925354004],[98.91297912597662,16.291561126709098],[98.91242218017601,16.298009872436523],[98.91651916503923,16.303930282592773],[98.92466735839872,16.303012847900504],[98.92877197265625,16.30523109436041],[98.92623901367182,16.310800552368278],[98.93257904052734,16.3272380828858],[98.92830657958996,16.337499618530273],[98.92533111572266,16.340749740600643],[98.92510223388689,16.345138549804688],[98.9180297851562,16.342430114746037],[98.91184997558616,16.343080520629883],[98.91004943847673,16.346059799194336],[98.91229248046886,16.35120964050293],[98.91790771484375,16.356309890747127],[98.92088317871105,16.367868423461914],[98.91841125488276,16.373622894287053],[98.91857147216825,16.381700515747127],[98.91728973388689,16.388860702514705],[98.90400695800787,16.39757919311529],[98.8977813720706,16.405181884765568],[98.89288330078142,16.406480789184627],[98.89198303222662,16.411350250244254],[98.88382720947271,16.421329498291016],[98.87966918945324,16.42337989807129],[98.87438964843767,16.421329498291016],[98.86920928955072,16.422410964965763],[98.86267089843778,16.42777061462408],[98.85852813720697,16.427991867065543],[98.84958648681658,16.41880989074707],[98.84600067138672,16.417842864990348],[98.84127044677757,16.420219421386832],[98.8304824829101,16.42065048217779],[98.82884979248053,16.41304969787592],[98.81936645507841,16.399259567260742],[98.81520080566418,16.395032882690373],[98.81430816650408,16.391290664672965],[98.8175201416015,16.384849548339844],[98.80858612060564,16.378709793090934],[98.80516815185547,16.37767982482916],[98.79325866699247,16.36947250366211],[98.78605651855486,16.36669921875],[98.78286743164062,16.363550186157283],[98.78241729736322,16.352920532226506],[98.77646636962919,16.347219467163086],[98.76676177978527,16.342069625854492],[98.74693298339855,16.34382820129389],[98.74423980712919,16.338508605957088],[98.72946166992188,16.33024978637701],[98.72621154785156,16.32150840759283],[98.72885894775408,16.317119598388786],[98.72556304931652,16.311750411987305],[98.7198791503908,16.31023025512701],[98.72107696533209,16.301870346069393],[98.71949768066423,16.294879913330078],[98.70754241943365,16.291561126709098],[98.70559692382812,16.28239059448248],[98.70626831054716,16.278270721435547],[98.7043075561524,16.271591186523494],[98.7003860473634,16.267137527465763],[98.69464111328153,16.268760681152457],[98.69274139404325,16.273540496826172],[98.68727874755876,16.275690078735465],[98.67617034912121,16.269710540771484],[98.67465972900385,16.273290634155387],[98.67459106445318,16.281530380249137],[98.6694793701173,16.282550811767635],[98.66810607910162,16.289657592773438],[98.67092132568365,16.29426956176752],[98.67066955566423,16.308809280395565],[98.67154693603544,16.315862655639762],[98.66559600830084,16.31595993041998],[98.66963195800787,16.325130462646598],[98.66667938232439,16.345619201660213],[98.65521240234392,16.348949432373104],[98.65615081787104,16.355690002441463],[98.66295623779303,16.35803031921381],[98.66519165039068,16.363729476928825],[98.66181182861334,16.3673610687257],[98.65477752685575,16.36930084228527],[98.6587677001956,16.3753280639649],[98.65419769287138,16.38671112060547],[98.65025329589861,16.39132118225092],[98.65641784667974,16.396699905395508],[98.64433288574213,16.402370452880973],[98.64302825927751,16.406549453735465],[98.63723754882841,16.410278320312557],[98.64161682128935,16.414619445800838],[98.63906860351568,16.42504119873047],[98.6457290649414,16.437681198120174],[98.6520690917971,16.446310043335075],[98.6575775146485,16.449359893798828],[98.65847015380876,16.455762863159237],[98.65273284912126,16.461059570312614],[98.65225982666038,16.46978950500494],[98.64540100097662,16.471469879150334],[98.64420318603516,16.477369308471737],[98.63571166992216,16.476440429687557],[98.63170623779325,16.48549079895031],[98.62915802001959,16.494050979614315],[98.62387084960966,16.496112823486328],[98.61496734619158,16.505310058593864],[98.61139678955078,16.51659011840826],[98.60588073730474,16.524820327758732],[98.59770965576195,16.531700134277344],[98.5964660644533,16.535810470581055],[98.5991516113283,16.542261123657283],[98.58851623535162,16.542140960693416],[98.5857620239259,16.54496002197277],[98.58602905273438,16.55672073364252],[98.581352233887,16.555250167846623],[98.57785797119146,16.55685997009283],[98.57920074462913,16.561750411987305],[98.57536315917974,16.570638656616268],[98.57817077636736,16.57090759277355],[98.58149719238304,16.564090728759822],[98.5853729248048,16.56826972961437],[98.58036041259771,16.573141098022575],[98.58705139160185,16.582809448242188],[98.58690643310558,16.58741760253912],[98.58323669433622,16.591638565063477],[98.58255767822283,16.598579406738395],[98.5782318115235,16.596240997314453],[98.5776977539063,16.60448837280279],[98.57229614257812,16.60371971130371],[98.57009124755888,16.614830017089844],[98.5750885009765,16.619020462036246],[98.57196807861334,16.62481117248535],[98.57225036621111,16.629148483276424],[98.56252288818376,16.62870025634777],[98.56008911132812,16.633520126342773],[98.55507659912126,16.632101058960075],[98.54516601562517,16.63657951354986],[98.54010772705101,16.633100509643555],[98.53459167480474,16.634439468383846],[98.53176879882824,16.638771057128963],[98.5247802734375,16.64201164245617],[98.52324676513689,16.648250579834098],[98.51902770996111,16.648021697998104],[98.51526641845703,16.64426994323742],[98.51307678222668,16.64903831481945],[98.51602935791016,16.653980255127067],[98.51663208007818,16.664672851562557],[98.51554107666044,16.668029785156193],[98.51902770996111,16.674001693725643],[98.51545715332031,16.68440055847168],[98.51753234863281,16.689769744873104],[98.51597595214861,16.69969177246088],[98.50437927246094,16.69796943664562],[98.50080871582054,16.690820693969727],[98.4971771240235,16.70018959045416],[98.49970245361357,16.705940246582145],[98.50324249267578,16.709369659423828],[98.50238800048857,16.71360015869135],[98.49658203125006,16.715270996093864],[98.49288177490229,16.708589553833065],[98.49046325683594,16.70820045471197],[98.48722839355469,16.714210510253906],[98.47823333740251,16.713541030883846],[98.47326660156267,16.71179008483898],[98.4710311889649,16.714439392089844],[98.47793579101568,16.718309402465877],[98.47174072265642,16.722249984741268],[98.46901702880871,16.726591110229492],[98.46452331542969,16.726409912109375],[98.46495056152366,16.73124122619629],[98.46945190429705,16.73596954345703],[98.46311187744152,16.747560501098746],[98.4640579223634,16.749679565429688],[98.47103881835943,16.749589920044002],[98.47595977783203,16.744501113891715],[98.48062133789091,16.74744033813488],[98.47740936279308,16.751390457153434],[98.4780502319336,16.760669708251953],[98.48525238037104,16.765350341796875],[98.49047088623047,16.772100448608512],[98.485107421875,16.778739929199276],[98.48636627197294,16.788070678710994],[98.49066162109375,16.790140151977482],[98.49330139160173,16.787218093872127],[98.49704742431669,16.7901611328125],[98.50000762939453,16.78582954406744],[98.50485992431669,16.784700393676815],[98.50784301757818,16.787040710449162],[98.50810241699247,16.794361114502067],[98.51136016845714,16.796541213989315],[98.51603698730474,16.793781280517692],[98.5164413452149,16.790039062500114],[98.52223968505871,16.789400100708008],[98.52590179443376,16.793369293212947],[98.52628326416033,16.798799514770565],[98.51850891113281,16.797149658203068],[98.51647186279303,16.803329467773494],[98.52033996582043,16.806102752685604],[98.54725646972673,16.811090469360465],[98.54804229736345,16.815811157226676],[98.54228210449213,16.820461273193473],[98.54154205322283,16.82539939880371],[98.53697204589861,16.82902145385748],[98.52847290039085,16.825309753418026],[98.52355194091825,16.833000183105412],[98.518310546875,16.835210800171012],[98.51013183593756,16.835420608520565],[98.50637054443388,16.831018447875977],[98.50248718261719,16.831230163574276],[98.49407196044922,16.84021186828619],[98.50032806396479,16.860340118408317],[98.50697326660168,16.864751815795955],[98.51103210449236,16.8616104125976],[98.51206970214866,16.854450225830192],[98.51718902587896,16.857070922851562],[98.5136108398438,16.867750167846737],[98.50858306884766,16.873540878296012],[98.50963592529325,16.877281188964844],[98.5137023925783,16.878429412841854],[98.52007293701195,16.87655067443842],[98.52610778808611,16.870002746581974],[98.53401184082037,16.864919662475643],[98.53842163085966,16.858089447021428],[98.54141235351568,16.859449386596793],[98.53376007080078,16.873382568359432],[98.52789306640648,16.879869461059627],[98.52781677246111,16.885570526123047],[98.53176116943388,16.8901309967041],[98.53659820556658,16.892690658569336],[98.53456115722662,16.898160934448356],[98.51460266113293,16.899801254272518],[98.51351928710955,16.902460098266715],[98.5186996459961,16.9058895111084],[98.52320098876964,16.911420822143555],[98.52014923095714,16.91656112670904],[98.51000213623075,16.913949966430664],[98.50701904296892,16.90982055664074],[98.50187683105486,16.91496086120617],[98.50553131103516,16.923311233520508],[98.50473022460955,16.927101135253906],[98.4985809326173,16.92617034912115],[98.49381256103527,16.92192840576172],[98.49076080322277,16.92453002929699],[98.49243164062506,16.931631088256836],[98.48561096191418,16.93498039245617],[98.48530578613281,16.94012260437023],[98.49160766601562,16.942911148071232],[98.49532318115263,16.946830749511832],[98.50026702880888,16.94890022277832],[98.50514221191406,16.943380355835075],[98.50862884521507,16.94707107543951],[98.50290679931663,16.953439712524414],[98.49931335449247,16.955400466919002],[98.49005889892595,16.956251144409237],[98.49047088623047,16.967849731445256],[98.48844146728544,16.970512390136832],[98.48217773437511,16.970260620117244],[98.47592926025408,16.967639923095703],[98.46955108642584,16.972251892089787],[98.48024749755888,16.976230621337947],[98.48097229003929,16.980470657348746],[98.47509765625028,16.983869552612305],[98.47322845458996,16.987930297851562],[98.4732131958009,16.994710922241154],[98.4582290649414,16.990821838378963],[98.44986724853521,16.99584007263178],[98.44979858398455,16.999801635742244],[98.45626068115229,17.008697509765625],[98.45298004150419,17.014730453491154],[98.4562301635745,17.018199920654354],[98.45407867431663,17.02165985107422],[98.44608306884771,17.020729064941406],[98.4418563842774,17.01860046386713],[98.43271636962913,17.019279479980526],[98.43225097656267,17.022211074829215],[98.43782806396484,17.025529861450195],[98.43865966796903,17.03377914428711],[98.43154907226568,17.036741256713924],[98.4258422851563,17.036071777343807],[98.42254638671875,17.043060302734375],[98.41691589355497,17.041151046752987],[98.41242980957048,17.05126953125],[98.40283966064464,17.05320167541504],[98.40071868896513,17.047170639038086],[98.3964462280274,17.046239852905273],[98.39083862304682,17.050989151001033],[98.39150238037115,17.05805015563965],[98.37835693359398,17.056379318237305],[98.36849975585949,17.052932739257756],[98.36147308349604,17.047542572021484],[98.35350799560547,17.047840118408317],[98.34477996826178,17.04646110534668],[98.3385696411134,17.04920959472662],[98.33255767822271,17.055421829223746],[98.32833099365234,17.057899475097656],[98.31803131103516,17.067470550537223],[98.31462097167974,17.075550079345703],[98.3118972778322,17.078399658203182],[98.31317138671903,17.086431503296012],[98.30445861816423,17.092311859130803],[98.30748748779291,17.09774971008312],[98.31104278564459,17.098569869995174],[98.31478118896484,17.093490600585994],[98.31748199462896,17.095449447631836],[98.31867980957037,17.104570388794002],[98.32170867919945,17.11006164550787],[98.30812072753906,17.1099090576173],[98.30081176757807,17.105211257934684],[98.29957580566412,17.116050720214787],[98.30104064941423,17.119150161743107],[98.29611206054688,17.125209808349666],[98.29393768310558,17.11869049072277],[98.2957611083985,17.113759994506836],[98.28707885742182,17.10917282104498],[98.28079986572283,17.11300086975109],[98.2809524536134,17.11989021301281],[98.28694915771484,17.129947662353516],[98.2853317260745,17.141660690307674],[98.28971862792997,17.143302917480582],[98.29633331298834,17.14011955261236],[98.29891967773455,17.14224052429205],[98.29364776611334,17.152629852294922],[98.28343200683605,17.15221977233898],[98.27442932128912,17.148559570312557],[98.26867675781256,17.15602111816412],[98.2691192626956,17.160629272460994],[98.27954101562506,17.165811538696346],[98.2805862426759,17.17118835449213],[98.26906585693382,17.174671173095817],[98.26127624511747,17.173660278320256],[98.2600173950197,17.177022933960075],[98.26345062255876,17.181480407714787],[98.25865173339855,17.184389114379826],[98.25099182128935,17.179920196533203],[98.24948883056652,17.18598937988287],[98.2518920898438,17.19548988342285],[98.24500274658209,17.194110870361442],[98.2435760498048,17.19757080078125],[98.24494171142595,17.207990646362305],[98.23654174804682,17.206600189208984],[98.2285461425783,17.200990676879826],[98.22656250000028,17.206621170044002],[98.23317718505865,17.214670181274528],[98.24243164062511,17.218231201171932],[98.24411010742216,17.223279953002987],[98.24234008789068,17.226089477539176],[98.23684692382818,17.226890563964844],[98.228759765625,17.21887969970703],[98.22328186035162,17.220542907714957],[98.2195510864259,17.224161148071346],[98.2114028930664,17.2278728485108],[98.20902252197294,17.231599807739315],[98.20841217041038,17.240711212158146],[98.20487976074213,17.247100830078068],[98.19741058349621,17.25195121765148],[98.18927001953142,17.252901077270508],[98.18422698974638,17.25601959228527],[98.17440795898438,17.25756263732916],[98.16693115234392,17.263320922851562],[98.1663284301759,17.272701263427848],[98.15878295898438,17.280099868774528],[98.15307617187506,17.282140731811467],[98.14711761474626,17.289699554443473],[98.13749694824247,17.290639877319393],[98.13736724853533,17.29730987548828],[98.13462066650396,17.304889678955135],[98.12906646728538,17.307420730590763],[98.126937866211,17.31635093688965],[98.11901855468761,17.320980072021598],[98.11303710937506,17.31813812255865],[98.11100006103544,17.31997108459484],[98.10630798339844,17.333890914916992],[98.1055068969726,17.344079971313477],[98.11074829101568,17.360799789428768],[98.11805725097685,17.368312835693303],[98.11634063720732,17.374380111694393],[98.11193847656278,17.373380661010742],[98.10942840576195,17.379009246826172],[98.11115264892584,17.38395118713379],[98.10102081298834,17.389661788940543],[98.0949096679688,17.389680862426758],[98.08843994140648,17.39394187927246],[98.08367156982445,17.388490676879883],[98.07894897460966,17.395139694213924],[98.07418823242216,17.399351119995174],[98.07247161865263,17.405309677124137],[98.06713867187511,17.408319473266545],[98.06314849853527,17.41665077209484],[98.05985260009771,17.419889450073242],[98.04657745361345,17.428489685058537],[98.0494995117188,17.433439254760742],[98.05677795410179,17.434299468994084],[98.0554962158206,17.441240310669002],[98.0486526489259,17.44391059875494],[98.03675079345726,17.451930999755916],[98.02638244628923,17.464412689209098],[98.02108764648443,17.472139358520565],[98.00476837158214,17.490932464599723],[97.99365234375023,17.508560180664176],[97.98889160156256,17.511030197143498],[97.97381591796898,17.506879806518555],[97.970703125,17.508760452270565],[97.96663665771496,17.516120910644588],[97.96890258789091,17.518890380859318],[97.96240234375028,17.526889801025447],[97.95159149169939,17.529380798339787],[97.94050598144543,17.5300807952882],[97.93493652343778,17.536069869995117],[97.92450714111345,17.538240432739258],[97.92310333251982,17.549671173095817],[97.92074584960938,17.555509567260742],[97.9125595092774,17.560989379882926],[97.91207885742199,17.56707191467285],[97.90940093994152,17.570850372314567],[97.90753173828142,17.581840515136662],[97.9020614624024,17.587560653686523],[97.89843750000006,17.58867835998541],[97.89228820800798,17.59435081481945],[97.88095092773466,17.60094070434576],[97.8775787353515,17.605640411376953],[97.87174224853521,17.607990264892635],[97.86457824707043,17.614570617675838],[97.84867095947271,17.626350402832088],[97.84188079833996,17.63482856750494],[97.83199310302729,17.64213943481451],[97.82894897460955,17.648139953613338],[97.82235717773443,17.652929306030217],[97.8206176757813,17.659320831298942],[97.81147003173834,17.666530609130916],[97.80522155761724,17.669691085815543],[97.80253601074241,17.674499511718864],[97.79538726806658,17.677650451660156],[97.7923583984375,17.690380096435604],[97.78295898437511,17.69927024841303],[97.78026580810575,17.703809738159293],[97.77625274658232,17.70519065856928],[97.76822662353544,17.719079971313477],[97.76429748535173,17.722852706909237],[97.76612854003935,17.727949142456055],[97.76394653320312,17.732330322265568],[97.76399230957037,17.742471694946232],[97.77128601074247,17.744459152221793],[97.77520751953125,17.75098991394043],[97.76747131347685,17.755990982055778],[97.7578201293947,17.770570755004883],[97.74848175048845,17.76741981506359],[97.74614715576183,17.768381118774528],[97.74481201171886,17.774709701538143],[97.74665832519537,17.780630111694393],[97.74975585937511,17.78055953979498],[97.75370788574241,17.775779724121207],[97.77410125732428,17.77716064453125],[97.78806304931669,17.783000946044922],[97.79627227783232,17.774999618530217],[97.80574035644537,17.777999877929744],[97.81201934814453,17.783290863037223],[97.8178100585938,17.78500938415533],[97.82701873779308,17.77983856201172],[97.83338165283203,17.778369903564567],[97.83950042724615,17.778789520263672],[97.8468627929687,17.777271270751953],[97.85605621337908,17.782598495483512],[97.86193084716791,17.783769607544002],[97.864028930664,17.78896141052246],[97.86926269531256,17.78781127929699],[97.87200927734403,17.793489456176815],[97.87696075439482,17.793159484863224],[97.88587951660179,17.79944038391119],[97.89552307128923,17.80251121520996],[97.90113067626959,17.806760787963924],[97.90709686279325,17.813270568847713],[97.90754699707048,17.818420410156307],[97.8999862670899,17.828580856323356],[97.90267181396507,17.83519172668457],[97.90882110595732,17.83953094482422],[97.91117858886736,17.850460052490348],[97.919418334961,17.85704994201666],[97.94185638427729,17.856840133666992],[97.95565032958984,17.859569549560604],[97.95703125000023,17.862390518188533],[97.96417999267595,17.866230010986385],[97.97013854980469,17.86702919006342],[97.97424316406278,17.861549377441463],[97.96850585937528,17.855110168457145],[97.97132873535179,17.84663009643566],[97.97563934326189,17.84691810607916],[97.98220062255882,17.838851928710994],[97.98342895507807,17.833400726318416],[97.97895812988304,17.830480575561637],[97.97627258300787,17.823360443115348],[97.98132324218761,17.821020126342773],[97.98034667968778,17.813091278076115],[97.98990631103527,17.80928039550787],[97.98683929443371,17.80726051330572],[97.98732757568365,17.798620223999137],[97.9915618896485,17.79453086853033],[97.99746704101585,17.784320831298828],[97.99967956542986,17.778472900390568],[97.99784088134788,17.773260116577262],[98.00531768798857,17.773630142211914],[98.01151275634766,17.764860153198356],[98.00862884521501,17.7601699829101],[98.01183319091808,17.753900527954215],[98.01293945312528,17.746629714965934],[98.018051147461,17.744369506835938],[98.022720336914,17.73649978637701],[98.0159301757813,17.73808097839361],[98.01641845703136,17.73087120056158],[98.02217102050798,17.729621887207145],[98.02359771728538,17.722391128540096],[98.0282592773437,17.719821929931584],[98.02529907226568,17.714611053466854],[98.02633666992199,17.707330703735465],[98.03260040283232,17.70713043212902],[98.03188323974604,17.701091766357536],[98.03932952880876,17.694049835205192],[98.04093170166021,17.684499740600643],[98.04396820068365,17.679069519043082],[98.04396057128906,17.67362022399908],[98.0481796264649,17.665201187133903],[98.05371856689459,17.665451049804744],[98.0588989257813,17.66069984436035],[98.06308746337896,17.654260635376033],[98.0635986328125,17.646488189697322],[98.06893920898438,17.647737503051758],[98.07348632812517,17.64640998840332],[98.08129882812517,17.63946151733404],[98.08776855468744,17.63549041748047],[98.09218597412126,17.635391235351676]]]},"properties":{"ID_0":228,"ISO":"TH-63","NAME_0":"Thailand","ID_1":69,"NAME_1":"Tak","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ตาก","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.53555297851585,6.835279941558952],[99.54110717773466,6.8350019454956055],[99.54416656494169,6.832221031188965],[99.53746032714866,6.824059009552116],[99.53195953369169,6.822421073913574],[99.52727508544939,6.824936866760368],[99.52486419677757,6.828957080841121],[99.52777862548857,6.833611011505241],[99.53250122070335,6.831110954284782],[99.53555297851585,6.835279941558952]]],[[[99.47556304931658,7.024999141693172],[99.47416687011747,7.0275001525879475],[99.47333526611334,7.039165973663273],[99.47583007812506,7.0380568504334065],[99.47556304931658,7.024999141693172]]],[[[99.56738281250006,7.115458011627197],[99.57808685302757,7.110910892486629],[99.58303070068382,7.113045215606803],[99.59619903564476,7.104063034057674],[99.6085433959961,7.0922517776490395],[99.61600494384771,7.081535816192684],[99.60851287841814,7.080060958862418],[99.60115051269554,7.0852599143981365],[99.59169006347668,7.089920997619572],[99.57827758789085,7.089494228363037],[99.56541442871111,7.093215942382869],[99.5644760131836,7.101241111755428],[99.56124877929688,7.107503890991268],[99.55739593505876,7.109848976135311],[99.5566635131836,7.11690282821661],[99.55422973632835,7.125543117523193],[99.55773925781261,7.125790119171143],[99.56738281250006,7.115458011627197]]],[[[99.61238098144537,7.185956954956168],[99.6198348999024,7.1844000816345215],[99.62303161621094,7.177688121795768],[99.62046813964872,7.165941238403377],[99.61462402343767,7.160586833953971],[99.59794616699247,7.156485080719108],[99.60114288330084,7.166490077972526],[99.60610961914085,7.176667213440055],[99.60472106933594,7.179998874664307],[99.59749603271484,7.186669826507682],[99.60164642334001,7.192184925079459],[99.6045761108399,7.1894707679748535],[99.61238098144537,7.185956954956168]]],[[[99.06083679199247,7.215278148651237],[99.06555175781256,7.212499141693172],[99.06582641601574,7.207781791687125],[99.0627899169923,7.202427864074764],[99.06262207031267,7.197721004486084],[99.05931854248075,7.196200847625789],[99.0546646118164,7.198111057281494],[99.05334472656256,7.203864097595272],[99.0569992065432,7.2137298583984375],[99.06083679199247,7.215278148651237]]],[[[99.07807159423845,7.228515148162842],[99.08263397216791,7.223962783813533],[99.07887268066406,7.219779014587402],[99.07454681396507,7.220181941986198],[99.06305694580078,7.216390132903996],[99.06555175781256,7.221111774444694],[99.07139587402361,7.227776050567627],[99.07807159423845,7.228515148162842]]],[[[99.39801788330101,7.267189025878963],[99.39888763427751,7.263332843780518],[99.41236114501982,7.262819766998405],[99.42517089843761,7.266670227050895],[99.43222045898466,7.2641668319703285],[99.44001007080084,7.258090972900391],[99.44830322265642,7.256872177124137],[99.45047760009788,7.254825115203971],[99.44743347167991,7.249776840210018],[99.42305755615263,7.245001792907715],[99.41665649414062,7.240830898284969],[99.41256713867216,7.242663860320988],[99.40483856201172,7.232604026794434],[99.3942413330081,7.224914073944149],[99.39309692382841,7.219230175018367],[99.39441680908209,7.210342884063834],[99.384506225586,7.20564079284668],[99.37426757812494,7.210058212280273],[99.3698120117188,7.219141006469783],[99.36476135253923,7.2245240211487385],[99.37083435058588,7.239720821380615],[99.37081146240246,7.24664497375494],[99.36786651611334,7.256869792938289],[99.3683319091798,7.266110897064323],[99.37110900878912,7.2684931755067055],[99.37605285644531,7.267560958862418],[99.38407897949224,7.2781410217285725],[99.38780212402355,7.277105808258057],[99.39801788330101,7.267189025878963]]],[[[99.53888702392595,7.293889999389762],[99.53666687011724,7.296109199523983],[99.54860687255854,7.304999828338623],[99.5516662597658,7.304999828338623],[99.55027770996122,7.296669960021916],[99.54804992675798,7.294999122619629],[99.53888702392595,7.293889999389762]]],[[[99.25480651855474,7.298729896545524],[99.2513961791995,7.301577091216984],[99.25191497802757,7.309935092926025],[99.24826812744146,7.31969785690319],[99.2508850097658,7.323616027832088],[99.25968170166016,7.308735847473258],[99.25586700439453,7.303349971771183],[99.25480651855474,7.298729896545524]]],[[[99.50555419921875,7.338611125946045],[99.50776672363293,7.330830097198486],[99.51110839843756,7.324168205261344],[99.51083374023432,7.319721221923885],[99.50554656982422,7.312588214874324],[99.50207519531267,7.322297096252441],[99.50306701660156,7.33664178848278],[99.50555419921875,7.338611125946045]]],[[[99.49971008300787,7.373642921447811],[99.49812316894531,7.362639904022274],[99.49829864501953,7.350739955902213],[99.49693298339861,7.340944766998348],[99.49224090576195,7.3400239944459145],[99.48810577392607,7.349706172943058],[99.48612213134771,7.357828140258846],[99.48665618896484,7.372779846191406],[99.49223327636724,7.374087810516357],[99.49282073974632,7.378910064697379],[99.49796295166038,7.381054878234977],[99.49971008300787,7.373642921447811]]],[[[99.2938232421875,7.3891620635987465],[99.29756927490246,7.3904199600220295],[99.30281066894531,7.380325794219971],[99.30938720703153,7.375340938568172],[99.30544281005876,7.363182067871207],[99.30468750000017,7.355136871337891],[99.30097198486357,7.3527960777282715],[99.29633331298834,7.353915214538688],[99.29415130615246,7.359737873077506],[99.28907775878906,7.36493015289318],[99.28388977050798,7.365279197692814],[99.28527832031256,7.373054981231633],[99.28745269775419,7.377240180969352],[99.28694152832048,7.382500171661434],[99.28277587890625,7.38749980926508],[99.29030609130888,7.391059875488224],[99.2938232421875,7.3891620635987465]]],[[[99.50212097167969,7.376253128051758],[99.49980163574236,7.383975028991756],[99.50385284423834,7.393009185791129],[99.50433349609386,7.404036045074577],[99.50701141357433,7.40523004531866],[99.50821685791016,7.388796806335563],[99.50212097167969,7.376253128051758]]],[[[99.73638916015648,7.855781078338566],[99.7330627441408,7.854200839996452],[99.7323913574221,7.848649024963322],[99.7415161132813,7.837851047515869],[99.74916076660179,7.836050033569336],[99.75174713134783,7.831301212310791],[99.75193023681635,7.824910163879338],[99.75579071044922,7.8221287727356525],[99.7582168579101,7.812290191650334],[99.75786590576189,7.807859897613639],[99.75991058349621,7.801410198211727],[99.76699829101557,7.79544115066534],[99.77114868164091,7.787621021270809],[99.77060699462902,7.782599925994873],[99.7653732299807,7.777490139007568],[99.76922607421903,7.772999763488883],[99.76750183105474,7.768351078033447],[99.77356719970709,7.765430927276725],[99.77728271484386,7.760560989379826],[99.7830810546875,7.760021209716911],[99.78044128417991,7.749529838561955],[99.7858200073245,7.746390819549617],[99.78820037841814,7.742128849029655],[99.78379058837908,7.73537015914917],[99.78501892089866,7.725780963897819],[99.78881072998053,7.7184009552001385],[99.78579711914085,7.7138500213623615],[99.78864288330101,7.707050800323543],[99.78827667236351,7.700531005859432],[99.79760742187523,7.6969499588012695],[99.7997589111331,7.689610958099365],[99.80857086181635,7.6828808784486],[99.8178405761721,7.678349971771183],[99.81624603271484,7.673608779907227],[99.81913757324224,7.669311046600399],[99.816650390625,7.664159774780273],[99.81770324707043,7.65858983993536],[99.81333160400402,7.649401187896785],[99.80789184570318,7.645669937133846],[99.79129791259771,7.645650863647404],[99.78540802001976,7.643230915069523],[99.79540252685558,7.63811016082775],[99.79808044433588,7.629711151123161],[99.80892944335949,7.620879173278752],[99.8065414428711,7.619430065155143],[99.80506896972662,7.611219882965031],[99.80227661132807,7.60871076583868],[99.80026245117193,7.602220058441219],[99.80074310302746,7.597428798675537],[99.79712677001947,7.589240074157715],[99.79973602294928,7.583351135253906],[99.80670166015642,7.5766210556029705],[99.8113632202149,7.573949813842773],[99.82283782959013,7.555998802185172],[99.83413696289057,7.5493102073668865],[99.83669281005865,7.5412402153015705],[99.82916259765636,7.532830238342285],[99.82762145996105,7.526329040527344],[99.82115936279291,7.517880916595573],[99.8203811645509,7.5122509002686115],[99.82639312744146,7.505980968475342],[99.83145141601574,7.504549980163631],[99.83618927001982,7.499959945678711],[99.84099578857416,7.498750209808463],[99.84324645996122,7.4942097663879395],[99.85276794433622,7.482359886169547],[99.8531188964846,7.478519916534481],[99.84929656982445,7.475599765777702],[99.847671508789,7.469699859619254],[99.84899139404308,7.464049816131592],[99.85726165771484,7.460231781005859],[99.86086273193376,7.451869964599609],[99.86007690429682,7.44680118560791],[99.86145782470703,7.441069126129264],[99.86595916748058,7.438660144805851],[99.87055969238276,7.432981014251766],[99.8719482421875,7.42743110656744],[99.87711334228516,7.422311782836971],[99.87711334228516,7.417991161346549],[99.88488006591814,7.413050174713192],[99.88706970214866,7.406829833984432],[99.89221954345726,7.401010990142822],[99.90152740478516,7.387939929962158],[99.90159606933622,7.376811027526969],[99.89521789550781,7.364921092987117],[99.89888763427757,7.358689785003719],[99.90360260009766,7.3550000190736],[99.90474700927734,7.34882116317749],[99.90255737304716,7.344199180603084],[99.90439605712896,7.340361118316764],[99.90318298339838,7.336060047149658],[99.90444946289068,7.329460144042912],[99.91165924072271,7.322268962860164],[99.91870117187506,7.319201946258545],[99.9310607910158,7.317421913147086],[99.93611907959013,7.318360805511475],[99.93924713134783,7.31512022018444],[99.9380569458009,7.30797004699707],[99.94064331054693,7.294839859008789],[99.94011688232428,7.2818012237549965],[99.94313049316412,7.272150993347168],[99.94592285156267,7.268230915069694],[99.94071960449247,7.256281852722111],[99.93696594238298,7.255010128021297],[99.9329833984375,7.246469974517822],[99.93309783935558,7.240929126739502],[99.93852996826172,7.235249996185416],[99.94821929931658,7.215351104736328],[99.9464569091798,7.211130142211971],[99.94812774658209,7.204230785369816],[99.95136260986334,7.201089859008903],[99.95630645751976,7.20036077499384],[99.95942687988293,7.197090148925724],[99.95535278320335,7.189270019531193],[99.9591903686524,7.181509971618709],[99.95820617675804,7.176550865173397],[99.96241760253929,7.166511058807373],[99.9681320190432,7.165669918060303],[99.97245788574219,7.148161888122615],[99.98513793945341,7.138060092926025],[99.99201202392607,7.121170043945256],[99.99823760986334,7.113489151001033],[99.99649047851562,7.111808776855582],[99.98574829101574,7.1122608184813885],[99.98159027099626,7.11102104187006],[99.9803390502932,7.102190971374512],[99.9771270751956,7.100989818573112],[99.96649932861322,7.100670814514217],[99.96483612060547,7.09827995300293],[99.95334625244135,7.09654092788702],[99.95020294189476,7.099789142608756],[99.93917083740263,7.105630874633789],[99.9387969970706,7.102441787719783],[99.93338012695312,7.100240230560303],[99.93025207519543,7.101631164550838],[99.92167663574213,7.098791122436637],[99.91905212402344,7.100860118865967],[99.91217803955095,7.0957708358765785],[99.89975738525408,7.096329212188721],[99.89454650878935,7.0881109237672035],[99.88803863525396,7.080581188202018],[99.88179779052746,7.0831217765808105],[99.8764190673831,7.081540107727108],[99.8694915771485,7.076351165771541],[99.86709594726591,7.080420970916862],[99.86277770996111,7.075800895691032],[99.86328887939464,7.068749904632625],[99.8566131591798,7.069029808044547],[99.84848022460938,7.073569774627629],[99.84661102294928,7.077779769897575],[99.84208679199247,7.080129146575985],[99.83918762207054,7.0779509544373695],[99.83481597900413,7.079989910125732],[99.83332061767607,7.08355903625494],[99.83625030517595,7.090050220489502],[99.8337707519533,7.095449924469108],[99.82498168945307,7.0945701599120525],[99.81751251220714,7.102629184722957],[99.81275177001964,7.104781150817871],[99.8072586059572,7.113820075988883],[99.79928588867188,7.114490032195988],[99.79255676269526,7.119699954986629],[99.78798675537126,7.126978874206543],[99.7799682617187,7.127598762512207],[99.77121734619158,7.12506008148199],[99.76667022705078,7.125555038452148],[99.76333618164091,7.124444961547965],[99.75692749023438,7.127171039581356],[99.75216674804688,7.126760959625187],[99.74089813232439,7.134685039520377],[99.7440872192384,7.144009113311824],[99.74481201171903,7.150098800659293],[99.74736785888689,7.153309822082633],[99.74508666992205,7.156813144683895],[99.73875427246105,7.140900135040397],[99.73008728027366,7.130609989166317],[99.72082519531261,7.127831935882568],[99.70916748046903,7.131111145019531],[99.70803070068371,7.139510154724121],[99.70500183105463,7.137777805328483],[99.70194244384777,7.131946086883602],[99.69667053222656,7.129929065704346],[99.69045257568388,7.124080181121826],[99.68083190917969,7.123332977295036],[99.67778015136719,7.119443893432617],[99.66571807861322,7.1160011291504475],[99.6708297729495,7.125278949737606],[99.66810607910179,7.131677150726375],[99.66847229003912,7.137551784515381],[99.66014099121122,7.159524917602653],[99.66055297851574,7.1677827835084145],[99.65888977050781,7.173751831054744],[99.66055297851574,7.176945209503174],[99.67028045654308,7.181666851043701],[99.67610931396507,7.187221050262451],[99.67406463623075,7.197359085083008],[99.66586303710966,7.206459999084416],[99.66194152832031,7.206110954284782],[99.6561126708985,7.201391220092887],[99.66647338867182,7.2023138999938965],[99.6699295043947,7.196238040924186],[99.67162322998041,7.188479900360221],[99.65436553955101,7.179643154144401],[99.64826202392601,7.1684160232543945],[99.64584350585966,7.166738986969051],[99.6426773071289,7.175797939300651],[99.63822174072277,7.183718204498291],[99.62749481201178,7.196118831634635],[99.62016296386736,7.199010848999023],[99.61557006835955,7.203811168670768],[99.61392974853538,7.20798921585083],[99.61621856689476,7.213430881500301],[99.62563323974621,7.222019195556641],[99.63416290283226,7.2311201095581055],[99.63897705078153,7.242566108703727],[99.63583374023438,7.244443893432674],[99.62986755371111,7.232861042022762],[99.62554168701178,7.227791786193961],[99.61540222167969,7.21878290176403],[99.61170196533232,7.21226692199707],[99.61181640625006,7.204192161560115],[99.61695861816412,7.196780204772892],[99.63416290283226,7.179251194000244],[99.63860321044933,7.169631004333496],[99.63579559326189,7.160827159881649],[99.62947845458979,7.155839920044002],[99.6138916015625,7.138887882232666],[99.60735321044916,7.136497020721549],[99.59986877441435,7.1389198303223225],[99.60163116455072,7.143290996551457],[99.60002899169928,7.148379802703971],[99.60238647460932,7.155130863189697],[99.61418914794933,7.157574176788444],[99.61996459960955,7.1615080833436195],[99.62477874755865,7.172963142395133],[99.62467193603544,7.182560920715332],[99.61765289306635,7.187629222869816],[99.60898590087913,7.18894004821783],[99.60228729248053,7.194230079650993],[99.60221862792986,7.198056221008358],[99.60630798339866,7.210371017456168],[99.60974884033226,7.233012199401799],[99.60801696777366,7.23407077789318],[99.60361480712896,7.2133331298828125],[99.60028076171886,7.203888893127498],[99.59770202636724,7.188839912414551],[99.59313964843773,7.184795856475887],[99.60240936279314,7.180905818939152],[99.60379791259771,7.1762309074401855],[99.5995254516601,7.167916774749813],[99.59522247314459,7.157007217407283],[99.59189605712885,7.151509761810416],[99.58480072021513,7.147325038909969],[99.57696533203153,7.1587848663331215],[99.57543182373053,7.167705059051457],[99.56657409667969,7.189725875854549],[99.55860900878912,7.208059787750244],[99.54666900634777,7.222300052642879],[99.53861236572271,7.233611106872615],[99.52862548828125,7.241442203521842],[99.5215835571289,7.249407768249625],[99.52194213867188,7.258889198303336],[99.52597045898438,7.262033939361686],[99.52944183349632,7.269169807434082],[99.53083038330107,7.279444217681828],[99.53388977050793,7.283610820770377],[99.54574584960932,7.285641193389893],[99.55409240722685,7.289429187774715],[99.55972290039062,7.288054943084774],[99.56393432617193,7.300231933593864],[99.5721969604495,7.3155531883240315],[99.57334136962919,7.325933933258057],[99.57585906982433,7.336750984191951],[99.58094787597679,7.34774303436285],[99.58622741699219,7.3554511070251465],[99.59159851074224,7.353538990020866],[99.59563446044945,7.348807811737004],[99.60011291503923,7.3472461700438885],[99.61030578613304,7.350730895996151],[99.60832977294939,7.353610038757324],[99.60020446777366,7.349737167358455],[99.59635925292974,7.350891113281307],[99.59388732910162,7.357220172882137],[99.58644104003912,7.363019943237305],[99.58821868896513,7.3682808876038735],[99.58751678466791,7.375494003295955],[99.59248352050798,7.382483959198055],[99.59822845459001,7.394052982330436],[99.6035461425783,7.399559020996151],[99.60940551757841,7.4127440452575115],[99.60773468017572,7.4137768745421795],[99.60241699218767,7.406448841094971],[99.60161590576183,7.400620937347469],[99.59593200683611,7.395217895507926],[99.58583068847673,7.378958225250244],[99.58171844482428,7.373923778534049],[99.57527923583996,7.370000839233512],[99.56865692138689,7.359179973602409],[99.57054901123064,7.351951122283992],[99.56823730468761,7.33463096618658],[99.56578826904314,7.328254222869873],[99.55901336669945,7.317777156829891],[99.55275726318388,7.314446926117],[99.54582977294928,7.3083319664001465],[99.5262832641601,7.296173095703182],[99.51849365234392,7.298741817474479],[99.50860595703125,7.3071608543396565],[99.51210021972662,7.321610927581787],[99.50888824462919,7.330277919769344],[99.50868225097685,7.336527824401969],[99.50371551513678,7.342270851135254],[99.50277709960966,7.347691059112606],[99.50820922851562,7.359611034393367],[99.50671386718756,7.37691783905035],[99.51039123535162,7.383182048797721],[99.51146697998047,7.389270782470703],[99.50837707519548,7.40289402008068],[99.50757598876964,7.410956859588737],[99.51400756835943,7.423497200012264],[99.51305389404303,7.429168224334717],[99.5064926147461,7.428233146667537],[99.50516510009766,7.425910949707145],[99.50788116455101,7.415707111358643],[99.5022430419923,7.402754783630428],[99.502182006836,7.395761966705436],[99.49916839599638,7.38888788223278],[99.49044036865251,7.379769802093506],[99.4865112304688,7.37988805770874],[99.48243713378923,7.376745223999023],[99.48330688476568,7.371674060821647],[99.48091888427751,7.356210231781063],[99.48228454589844,7.349993228912467],[99.48831939697277,7.332192897796688],[99.49083709716814,7.32250022888195],[99.4906158447265,7.312259197235221],[99.48665618896484,7.310558795929069],[99.48694610595732,7.304180145263615],[99.48409271240263,7.292476177215576],[99.47779846191435,7.289514064788932],[99.47267150878918,7.284348964691276],[99.46932983398443,7.283630847930908],[99.46194458007818,7.288237094879207],[99.4509582519533,7.29234886169445],[99.44249725341825,7.293889999389762],[99.42729187011713,7.300067901611385],[99.41899108886724,7.299540042877197],[99.41722869873047,7.30653190612793],[99.40645599365263,7.317251205444336],[99.40305328369152,7.31583118438715],[99.40296173095709,7.307558059692326],[99.39888763427751,7.303887844085693],[99.39493560791016,7.307930946350041],[99.38794708251982,7.322871208190918],[99.37531280517584,7.339667797088623],[99.37066650390642,7.3390049934387775],[99.36231231689453,7.349053859710693],[99.36148071289074,7.356061935424918],[99.35813140869146,7.360689163208065],[99.34783172607428,7.370814800262565],[99.33818054199247,7.378341197967643],[99.33977508544939,7.38784217834484],[99.34888458251964,7.402503967285099],[99.34835052490251,7.407789230346623],[99.3439178466798,7.412621021270809],[99.34645080566423,7.423927783966178],[99.3448181152346,7.437972068786621],[99.34500122070335,7.4434027671813965],[99.3422241210937,7.448610782623405],[99.33866882324219,7.46042108535778],[99.34078979492193,7.4643988609313965],[99.33620452880865,7.467751026153621],[99.33417510986357,7.471714973449707],[99.33167266845709,7.482501983642692],[99.32756805419939,7.49423885345459],[99.32110595703125,7.501670837402457],[99.311264038086,7.507649898529053],[99.3089218139649,7.512239933013973],[99.30197143554699,7.507792949676514],[99.30055999755882,7.503359794616756],[99.29571533203142,7.498266220092773],[99.2915649414063,7.502879142761344],[99.28407287597673,7.516647815704459],[99.28943634033203,7.520280838012695],[99.292709350586,7.5136780738831135],[99.29683685302729,7.51427078247076],[99.29944610595732,7.518333911895866],[99.30753326416033,7.523644924163875],[99.30778503417974,7.532610893249625],[99.31336212158209,7.537296772003231],[99.3209991455081,7.549148082733211],[99.31764221191423,7.550943851471004],[99.31278228759771,7.540389060974064],[99.30894470214866,7.543882846832389],[99.30468750000017,7.5510058403015705],[99.29587554931635,7.559521198272705],[99.2947235107423,7.5680561065674965],[99.29078674316406,7.575521945953483],[99.29007720947288,7.5817060470581055],[99.2824096679688,7.592268943786564],[99.28034973144554,7.598917961120662],[99.27790069580107,7.601240158081055],[99.28232574462902,7.61804914474493],[99.27677154541044,7.628944873809871],[99.2863082885745,7.637270927429256],[99.28434753417991,7.638809204101676],[99.27527618408197,7.632781028747615],[99.27352905273466,7.626054763794059],[99.27076721191406,7.62162017822277],[99.26499938964861,7.621111869812125],[99.26249694824213,7.61667013168335],[99.25111389160156,7.621665954589787],[99.24749755859375,7.6251392364501385],[99.24138641357422,7.62722206115734],[99.23516845703153,7.626743793487606],[99.232421875,7.632415771484432],[99.23916625976568,7.633611202240047],[99.24330139160156,7.63058614730835],[99.25360870361334,7.62985897064209],[99.25111389160156,7.639584064483756],[99.25583648681658,7.650829792022819],[99.26110839843778,7.654722213745174],[99.26333618164068,7.662500858306885],[99.27252197265648,7.675199985504207],[99.27793121337902,7.679955005645752],[99.28202819824224,7.680262088775692],[99.2865371704101,7.681021213531608],[99.28563690185547,7.686998844146842],[99.29899597167969,7.691510200500545],[99.30764770507841,7.700900077819824],[99.31025695800787,7.711609840393123],[99.3081283569336,7.720510005950928],[99.31183624267584,7.726769924163875],[99.31133270263666,7.7355499267578125],[99.30757141113281,7.739731788635368],[99.30680847167969,7.754800796508903],[99.3015823364259,7.7550201416015625],[99.29511260986322,7.757360935211182],[99.28978729248064,7.76161098480236],[99.29068756103544,7.7662792205811115],[99.28882598876947,7.772959232330379],[99.29206085205072,7.778509140014705],[99.30171203613304,7.788119792938346],[99.30088806152344,7.79374980926525],[99.3038024902346,7.802091121673698],[99.30422210693388,7.807859897613639],[99.2997665405274,7.80912017822277],[99.28887939453125,7.8093299865723225],[99.28832244873053,7.816319942474422],[99.29415130615246,7.818769931793213],[99.29450225830107,7.824930191040096],[99.28994750976574,7.829459190368709],[99.28804779052746,7.836309909820557],[99.28198242187517,7.840950012207145],[99.27790069580107,7.848108768463192],[99.27908325195324,7.852879047393799],[99.28380584716825,7.857649803161678],[99.28936767578136,7.860600948333797],[99.29235839843773,7.865159034729061],[99.30536651611357,7.877911090850887],[99.31224060058622,7.878600120544434],[99.31787109375,7.886940956115836],[99.31005859375,7.887010097503719],[99.3047714233399,7.891530990600586],[99.30309295654325,7.900420188903865],[99.30980682373041,7.906240940094108],[99.31278991699224,7.913301944732666],[99.31733703613304,7.915060997009334],[99.32116699218773,7.919720172882137],[99.32657623291027,7.920720100402832],[99.33345031738276,7.9189109802245525],[99.33322143554716,7.928130149841422],[99.34558105468773,7.931759834289551],[99.35671997070307,7.931899070739803],[99.36437225341814,7.9375901222229],[99.36392974853544,7.94370079040533],[99.36817932128923,7.946390151977539],[99.38401794433611,7.941329956054631],[99.38700103759794,7.942479133606014],[99.38964843750006,7.948361873626766],[99.39668273925804,7.953731060028076],[99.39736175537126,7.956021785736198],[99.40782928466808,7.9551100730896565],[99.41028594970732,7.953129768371582],[99.41564178466808,7.955821037292537],[99.4206008911134,7.953070163726807],[99.42077636718778,7.943190097808895],[99.41887664794933,7.931899070739803],[99.42414855957054,7.926428794860783],[99.42115783691435,7.919388771057243],[99.41961669921903,7.908938884735107],[99.4198608398437,7.883921146392822],[99.42395782470726,7.88106107711792],[99.42598724365251,7.8755908012390705],[99.43640136718778,7.874321937561092],[99.43811035156278,7.878159999847412],[99.44326782226591,7.879030227661133],[99.4469375610351,7.886980056762809],[99.45565795898466,7.8892412185668945],[99.46129608154297,7.896529197692871],[99.47219085693365,7.9045000076293945],[99.47518157959001,7.890689849853459],[99.48129272460955,7.880549907684383],[99.4909286499024,7.886418819427604],[99.4946594238283,7.8821210861206055],[99.50625610351557,7.882309913635311],[99.51403808593778,7.875239849090633],[99.5314331054687,7.87785005569458],[99.53485107421886,7.882581233978385],[99.53678894042986,7.889150142669678],[99.53346252441412,7.890710830688477],[99.5346984863283,7.897920131683463],[99.54084014892578,7.902290821075553],[99.54215240478533,7.909640789032096],[99.54718780517601,7.91789007186901],[99.55594635009788,7.917679786682243],[99.56198883056658,7.924230098724365],[99.56027221679705,7.933059215545654],[99.56485748291016,7.9348602294921875],[99.56965637207037,7.945190906524715],[99.57955932617188,7.944619178771973],[99.58470153808594,7.950480937957707],[99.58628845214866,7.957011222839469],[99.59629058837885,7.957359790802059],[99.59493255615246,7.962350845336857],[99.60164642334001,7.978050231933651],[99.60603332519548,7.979778766632137],[99.60288238525413,7.985441207885799],[99.61096954345697,7.98633003234869],[99.61579895019531,7.98825120925909],[99.61596679687517,7.991550922393799],[99.6220169067384,7.997529029846248],[99.6220932006836,8.000061035156364],[99.63117980957043,8.009939193725529],[99.63877868652372,8.009381294250488],[99.64124298095732,8.011940002441406],[99.65235137939464,8.011550903320312],[99.65741729736351,8.01321029663086],[99.66277313232445,8.011601448059196],[99.6673202514649,8.007690429687614],[99.6707687377932,8.008819580078239],[99.67555236816429,8.005091667175407],[99.67774963378923,8.000931739807129],[99.68791198730474,7.996020793914909],[99.69216918945341,7.996251106262207],[99.69639587402355,7.992619991302604],[99.70384979248058,7.99029111862194],[99.71505737304716,7.992159843444824],[99.72442626953153,7.996921062469539],[99.73084259033209,7.9967999458314125],[99.73851776123075,7.987130165100041],[99.74562835693354,7.981491088867244],[99.7525405883789,7.979360103607178],[99.75395965576178,7.967961788177547],[99.7574768066408,7.960391044616756],[99.75531005859403,7.95688104629528],[99.74475097656256,7.953100204467717],[99.73471832275419,7.945971012115535],[99.73442840576172,7.940580844879264],[99.73995971679688,7.934370040893668],[99.74231719970709,7.927219867706242],[99.73954010009783,7.923618793487549],[99.7359008789062,7.913939952850285],[99.74073028564453,7.9120588302612305],[99.74395751953125,7.907601833343563],[99.73855590820324,7.892990112304744],[99.7332992553711,7.8855390548706055],[99.73634338378906,7.880329132080135],[99.74134826660179,7.878930091858024],[99.74297332763689,7.8713698387146565],[99.74085235595714,7.860940933227539],[99.73638916015648,7.855781078338566]]]]},"properties":{"ID_0":228,"ISO":"TH-92","NAME_0":"Thailand","ID_1":70,"NAME_1":"Trang","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ตรัง","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[102.51667022705078,11.725001335143986],[102.52027893066423,11.724445343017692],[102.52416992187523,11.720561027526912],[102.52610778808622,11.71554946899414],[102.5211105346682,11.708608627319393],[102.5149993896485,11.717499732971305],[102.51667022705078,11.725001335143986]]],[[[102.56722259521484,11.72722339630127],[102.56400299072271,11.722069740295524],[102.56575012207054,11.717719078063965],[102.56253814697294,11.713319778442496],[102.5658340454101,11.700277328491154],[102.57077026367199,11.703598022460938],[102.57026672363281,11.708329200744743],[102.57721710205084,11.708329200744743],[102.57972717285185,11.711879730224553],[102.58503723144537,11.705662727355957],[102.58968353271479,11.702624320983944],[102.59010314941406,11.695921897888127],[102.59610748291044,11.694720268249512],[102.60083007812506,11.700000762939567],[102.60562896728521,11.695228576660156],[102.60861206054688,11.688887596130371],[102.6030578613283,11.686665534973258],[102.60083007812506,11.67694473266613],[102.60861206054688,11.654722213745117],[102.60887908935553,11.650001525878906],[102.60521697998053,11.634623527526855],[102.5970916748048,11.628050804138184],[102.60321807861322,11.627281188964787],[102.60004425048828,11.622071266174373],[102.59461212158214,11.621330261230582],[102.59158325195307,11.613257408142147],[102.59398651123053,11.60896110534668],[102.59973907470732,11.609622001647892],[102.60092926025385,11.605681419372672],[102.596664428711,11.601943969726562],[102.5966491699221,11.596391677856559],[102.5936126708985,11.593059539794922],[102.59610748291044,11.578889846801701],[102.59416198730491,11.570688247680607],[102.59416961669945,11.562776565551815],[102.58999633789068,11.561667442321777],[102.58583068847685,11.563888549804744],[102.57749938964861,11.572500228881779],[102.57194519042963,11.573333740234375],[102.56861114501976,11.576111793518123],[102.57108306884788,11.58839225769043],[102.5669631958009,11.593549728393612],[102.5569458007813,11.591390609741211],[102.55524444580084,11.595794677734489],[102.55107879638678,11.595212936401367],[102.5472259521485,11.591111183166504],[102.54170227050787,11.601061820983887],[102.53802490234392,11.603014945983944],[102.52703094482445,11.603529930114803],[102.52567291259771,11.607500076293888],[102.52861022949247,11.61051082611084],[102.53610992431658,11.611940383911133],[102.53305816650408,11.618890762329215],[102.54138946533232,11.619444847106877],[102.5449981689456,11.622501373291072],[102.54389190673822,11.636943817138672],[102.54028320312494,11.636941909790096],[102.53416442871088,11.65139007568365],[102.53138732910162,11.654445648193473],[102.52400207519537,11.657057762145996],[102.53388977050804,11.666939735412711],[102.53193664550781,11.673318862915039],[102.53333282470709,11.677221298217773],[102.52722167968773,11.686388015747127],[102.52726745605497,11.696050643921012],[102.53153228759783,11.699490547180119],[102.53624725341808,11.69835090637207],[102.54055786132818,11.703060150146598],[102.53859710693376,11.711910247802734],[102.53572082519548,11.716169357299805],[102.53446197509788,11.724181175231934],[102.54049682617205,11.72832202911377],[102.54003906250028,11.733222007751522],[102.54682159423828,11.738522529602108],[102.54409790039057,11.752970695495662],[102.54750823974621,11.759831428527832],[102.55330657958984,11.762189865112362],[102.55825805664062,11.757098197937012],[102.55918884277361,11.750591278076115],[102.5662612915039,11.740799903869572],[102.56642913818376,11.736718177795467],[102.57067108154297,11.731539726257324],[102.56722259521484,11.72722339630127]]],[[[102.39528656005888,11.771940231323299],[102.39244842529291,11.77077960968029],[102.38819122314459,11.774080276489315],[102.39303588867182,11.776910781860352],[102.39528656005888,11.771940231323299]]],[[[102.38690185546886,11.776163101196289],[102.38397979736351,11.782430648803768],[102.3841323852539,11.795560836792049],[102.38057708740263,11.801390647888127],[102.38091278076178,11.809101104736442],[102.38571929931646,11.81066036224371],[102.3913803100586,11.800891876220817],[102.39302062988276,11.795659065246582],[102.39032745361357,11.793233871459961],[102.391586303711,11.786131858825627],[102.38936614990263,11.785149574279842],[102.38690185546886,11.776163101196289]]],[[[102.4713897705081,11.834549903869686],[102.47656249999994,11.832963943481445],[102.48243713378935,11.828910827636719],[102.48876953124994,11.82781124114996],[102.49532318115234,11.829678535461483],[102.49843597412115,11.828631401062012],[102.505912780762,11.829961776733512],[102.51107025146496,11.82638168334961],[102.50800323486357,11.815091133117619],[102.50486755371094,11.811970710754451],[102.49305725097662,11.815240859985352],[102.48947906494146,11.814040184020996],[102.48645782470732,11.806961059570256],[102.48727416992205,11.800185203552303],[102.48988342285185,11.79712200164795],[102.48647308349621,11.790011405944938],[102.48387145996094,11.79795169830328],[102.47997283935575,11.798638343811035],[102.478813171387,11.80338096618658],[102.47333526611322,11.808323860168514],[102.46280670166044,11.81326961517334],[102.45137023925793,11.813000679016113],[102.44538116455084,11.807761192321777],[102.44490051269526,11.815947532653809],[102.44950103759783,11.821829795837402],[102.4550170898437,11.818092346191463],[102.46089935302763,11.821111679077205],[102.46446228027366,11.820052146911735],[102.47016906738287,11.826422691345215],[102.4713897705081,11.834549903869686]]],[[[102.5208129882812,11.83277893066412],[102.52194213867199,11.842219352722225],[102.52665710449224,11.854180335998592],[102.53305816650408,11.843059539795036],[102.52778625488304,11.833610534668082],[102.5208129882812,11.83277893066412]]],[[[102.45169067382835,11.892221450805778],[102.44721984863298,11.898887634277287],[102.45277404785156,11.900278091430607],[102.45169067382835,11.892221450805778]]],[[[102.3969421386721,11.909444808960018],[102.40444183349638,11.902221679687557],[102.41234588623047,11.90443134307867],[102.41694641113287,11.901665687561092],[102.41361999511713,11.898651123046989],[102.40694427490229,11.896112442016602],[102.39765167236328,11.896539688110408],[102.39722442626947,11.903333663940487],[102.3930892944336,11.906380653381348],[102.3969421386721,11.909444808960018]]],[[[102.34520721435547,11.90027999877941],[102.34333038330084,11.905289649963436],[102.3461074829101,11.913888931274471],[102.35527801513689,11.922780036926326],[102.36083221435564,11.923892021179313],[102.36222076416021,11.917781829834041],[102.35916900634771,11.915276527404899],[102.34520721435547,11.90027999877941]]],[[[102.4819412231447,11.946110725402775],[102.48027801513678,11.937781333923283],[102.47611236572271,11.936944961547852],[102.47611236572271,11.932499885559139],[102.47110748291016,11.92972183227539],[102.46721649169916,11.933891296386776],[102.46749877929693,11.943888664245662],[102.46971893310564,11.953340530395508],[102.47750091552746,11.960000038146973],[102.4819412231447,11.959165573120117],[102.4827804565432,11.951390266418514],[102.4819412231447,11.946110725402775]]],[[[102.25194549560547,12.157220840454102],[102.25638580322271,12.156110763549918],[102.27083587646484,12.144721984863395],[102.28416442871094,12.140833854675293],[102.29194641113276,12.144172668456974],[102.30304718017578,12.142499923706112],[102.31305694580107,12.138890266418514],[102.31527709960938,12.136112213134766],[102.3222198486331,12.13638973236084],[102.33361053466803,12.123053550720272],[102.34666442871105,12.113056182861328],[102.35083007812528,12.114443778991813],[102.35611724853521,12.108330726623478],[102.35583496093744,12.100832939148006],[102.36360931396513,12.094711303710994],[102.36416625976568,12.08917045593273],[102.36972045898466,12.079167366027889],[102.37777709960932,12.070000648498478],[102.38166809082037,12.069444656372013],[102.38416290283226,12.06027793884283],[102.38194274902355,12.05805587768549],[102.38722229003929,12.048333168029842],[102.3947219848634,12.051944732665959],[102.39788055419928,12.04913520812994],[102.3998565673831,12.040560722351131],[102.39749908447271,12.035340309143066],[102.40556335449247,12.031390190124512],[102.41249847412126,12.023332595825195],[102.41833496093756,12.014444351196346],[102.41972351074213,12.009165763855094],[102.43019866943371,11.989544868469295],[102.44277954101591,11.981111526489371],[102.44611358642578,11.976943969726562],[102.43868255615234,11.969850540161246],[102.43477630615246,11.960790634155387],[102.43747711181635,11.955127716064453],[102.43472290039068,11.951669692993221],[102.42527770996111,11.958888053894043],[102.42278289794916,11.962780952453613],[102.41611480712885,11.96722316741949],[102.41306304931635,11.967221260070858],[102.40972137451195,11.97249889373785],[102.39943695068365,11.97972202301031],[102.40055847167974,11.983060836792049],[102.39638519287115,11.986665725707951],[102.39305877685564,11.99222278594982],[102.38610839843778,11.993611335754338],[102.3825912475586,12.00034332275402],[102.37361145019548,11.99806022644043],[102.36972045898466,11.993611335754338],[102.3738861083985,11.984720230102653],[102.3775024414063,11.981939315795955],[102.37863922119163,11.972590446472111],[102.37745666503906,11.964200973510799],[102.362777709961,11.961666107177791],[102.35832977294939,11.965280532837028],[102.35555267334007,11.96361064910883],[102.34971618652355,11.964720726013184],[102.34662628173857,11.968339920044059],[102.33361053466803,11.97527980804449],[102.32672882080084,11.973146438598633],[102.31694793701189,11.97388935089117],[102.31194305419933,11.970001220703239],[102.31223297119146,11.965280532837028],[102.31861114501982,11.963333129882926],[102.31944274902361,11.957782745361328],[102.31403350830107,11.95752334594738],[102.30944824218778,11.963889122009391],[102.30500793457054,11.974999427795524],[102.30110931396501,11.980571746826286],[102.29389190673828,11.981939315795955],[102.29638671875,11.987221717834416],[102.29750061035173,11.997501373291072],[102.2944412231447,11.999720573425293],[102.29277801513678,12.00805568695074],[102.28833007812517,12.012220382690487],[102.28778076171892,12.015831947326603],[102.29083251953142,12.026110649108944],[102.29000091552763,12.029445648193303],[102.29416656494146,12.042220115661678],[102.28971862792969,12.05805587768549],[102.28333282470714,12.06583213806158],[102.27916717529291,12.064722061157227],[102.27471923828153,12.071666717529297],[102.27610778808588,12.076666831970215],[102.27527618408209,12.083056449890137],[102.27583312988304,12.093330383300838],[102.27333068847662,12.102781295776367],[102.26416778564459,12.117777824401855],[102.25305175781267,12.12944507598877],[102.25389099121116,12.135555267333984],[102.2611083984375,12.13305473327631],[102.26721954345709,12.13305473327631],[102.26889801025408,12.142219543457145],[102.26777648925781,12.144721984863395],[102.26083374023449,12.146388053894043],[102.25583648681669,12.151391029358024],[102.25055694580072,12.153611183166504],[102.25194549560547,12.157220840454102]]],[[[102.51181793212919,12.75056171417242],[102.50727844238276,12.742759704589844],[102.50241088867193,12.737090110778922],[102.50682830810553,12.729461669921932],[102.50483703613298,12.715611457824707],[102.50562286376953,12.709850311279297],[102.49960327148466,12.702740669250602],[102.50920867919939,12.694700241088924],[102.51219177246122,12.689070701599064],[102.5114288330081,12.683811187744254],[102.50753021240234,12.680999755859432],[102.51277923584013,12.667881965637207],[102.51655578613287,12.66649055480957],[102.51915740966797,12.6618013381958],[102.52369689941423,12.659940719604492],[102.53103637695335,12.653540611267147],[102.54084777832026,12.65101242065441],[102.54457092285179,12.654799461364746],[102.55249023437494,12.653520584106445],[102.55515289306635,12.649861335754451],[102.5595779418947,12.650790214538688],[102.56838989257818,12.655161857605037],[102.57375335693382,12.650878906250057],[102.58233642578148,12.650661468505803],[102.58271026611334,12.645010948181096],[102.60125732421903,12.62749099731451],[102.60723876953142,12.626000404357853],[102.62014007568388,12.612710952758789],[102.62779235839872,12.612971305847225],[102.63166809082048,12.607320785522518],[102.64711761474626,12.608990669250488],[102.64906311035156,12.59823989868164],[102.64540863037126,12.594551086425781],[102.64553833007824,12.583890914917049],[102.65312957763678,12.579799652099666],[102.66352081298845,12.580439567566032],[102.66838073730474,12.572030067443848],[102.66828918457048,12.563089370727539],[102.67079162597656,12.560001373291072],[102.67765045166016,12.557151794433594],[102.6861190795899,12.547189712524528],[102.67845916748053,12.541692733764705],[102.67839050292986,12.538649559020996],[102.68263244628906,12.534729957580623],[102.68789672851557,12.53469085693365],[102.69387817382812,12.53057956695568],[102.69828033447271,12.525241851806697],[102.69580841064459,12.521020889282283],[102.69950103759794,12.51720142364502],[102.706352233887,12.517499923706112],[102.70553588867193,12.513262748718375],[102.71388244628923,12.505860328674316],[102.71762847900419,12.504650115966854],[102.72712707519537,12.510570526123104],[102.72991943359375,12.50814247131342],[102.724136352539,12.501081466674862],[102.7264709472658,12.495330810546875],[102.72055816650408,12.49024963378912],[102.72113037109392,12.485880851745605],[102.72460937500006,12.482850074768123],[102.73316192626953,12.488089561462402],[102.74085998535162,12.480810165405273],[102.73797607421898,12.474350929260197],[102.73742675781256,12.465490341186637],[102.74347686767578,12.463709831237907],[102.7447586059572,12.458050727844181],[102.74865722656273,12.455641746520996],[102.75253295898466,12.45958042144781],[102.75608062744146,12.453829765319824],[102.76683807373075,12.454401969909668],[102.76959991455078,12.44791126251232],[102.77023315429693,12.441189765930233],[102.77336120605463,12.435351371765137],[102.7772216796875,12.432160377502555],[102.78201293945318,12.433039665222168],[102.78762817382841,12.415539741516113],[102.78691864013689,12.406590461730957],[102.78440093994152,12.399150848388672],[102.7796173095706,12.399401664734],[102.77198791503935,12.392930984497013],[102.76236724853521,12.393391609191838],[102.75193786621122,12.391269683837834],[102.74156951904297,12.383939743041992],[102.74059295654297,12.379190444946403],[102.72657012939482,12.363820075988713],[102.72487640380888,12.354010581970215],[102.7245864868164,12.34490108489996],[102.72608947753923,12.339250564575252],[102.72409057617216,12.333580017089787],[102.72675323486334,12.327210426330623],[102.7259368896485,12.318209648132324],[102.72676849365263,12.302511215210018],[102.72325897216797,12.28394985198969],[102.72048950195341,12.280229568481445],[102.71897888183605,12.271660804748535],[102.71495819091825,12.264581680297795],[102.71524810791016,12.255521774291935],[102.71911621093756,12.247640609741325],[102.71846008300798,12.220371246337834],[102.71350097656267,12.220211982726994],[102.70903015136747,12.204230308532658],[102.7129211425783,12.196021080017033],[102.70540618896513,12.179109573364371],[102.70449066162104,12.171961784362793],[102.71032714843773,12.162711143493652],[102.70922088623075,12.15893936157238],[102.71090698242193,12.151140213012695],[102.71656036376953,12.143291473388786],[102.71843719482439,12.137909889221135],[102.72344970703125,12.1315212249757],[102.7296600341798,12.12936115264904],[102.73268127441435,12.124899864196777],[102.7347259521485,12.11771202087408],[102.7347259521485,12.110480308532772],[102.74803161621094,12.095129966735783],[102.75258636474626,12.09287166595459],[102.75588989257818,12.087981224060115],[102.75829315185541,12.080559730529785],[102.76663208007841,12.073859214782772],[102.77092742919922,12.07349014282238],[102.76994323730486,12.067131042480469],[102.77503967285185,12.050990104675293],[102.77413940429705,12.047492027282715],[102.77443695068365,12.035120964050407],[102.78189849853544,12.021759986877441],[102.778060913086,12.011859893798942],[102.7794570922851,11.999839782714844],[102.78199005126953,11.988931655883903],[102.78636932373047,11.976729393005371],[102.79138183593773,11.976409912109432],[102.79756164550793,11.96107196807867],[102.79680633544916,11.956700325012264],[102.80191040039091,11.948160171508789],[102.80912780761741,11.94530010223383],[102.81652069091797,11.932970046997127],[102.8137817382812,11.922841072082463],[102.8203964233399,11.915540695190487],[102.81894683837885,11.91255092620861],[102.82273864746105,11.906901359558162],[102.82019042968773,11.892230033874625],[102.82595825195341,11.87318134307867],[102.82833099365234,11.869670867919922],[102.83637237548834,11.851971626281795],[102.84571075439453,11.844429969787598],[102.84912872314453,11.832631111144963],[102.85572052001982,11.823900222778377],[102.86170959472656,11.82473087310791],[102.86428070068388,11.816291809081974],[102.86295318603544,11.81312179565441],[102.86682128906244,11.806211471557617],[102.87024688720697,11.803400993347111],[102.87812805175781,11.801420211791992],[102.88491821289074,11.798160552978572],[102.88183593750028,11.790141105651912],[102.88526153564482,11.787840843200797],[102.893325805664,11.785930633544922],[102.89453887939453,11.782079696655387],[102.90451812744146,11.768671989441032],[102.90892791748075,11.750520706176871],[102.9111099243164,11.747090339660701],[102.91139984130888,11.727300643920955],[102.91081237792974,11.71616268157959],[102.91243743896501,11.698451042175407],[102.91137695312506,11.680420875549373],[102.91335296630854,11.676091194152832],[102.91303253173828,11.65950965881359],[102.91519165039068,11.652951240539494],[102.90916442871088,11.64888858795166],[102.90560150146484,11.655916213989371],[102.9036102294923,11.666110038757324],[102.90410614013695,11.6756210327149],[102.90083312988281,11.68341445922863],[102.9005584716798,11.687849044799918],[102.90305328369135,11.692501068115291],[102.90528106689459,11.701945304870605],[102.90611267089838,11.71360969543457],[102.90194702148455,11.724445343017692],[102.89738464355469,11.73249721527111],[102.89597320556652,11.741682052612248],[102.89167022705078,11.751667022705135],[102.88444519042974,11.764721870422306],[102.86723327636736,11.793609619140568],[102.848892211914,11.815834045410213],[102.84736633300776,11.81687068939209],[102.82861328125028,11.839999198913688],[102.81833648681669,11.855278968811035],[102.77694702148466,11.906940460205192],[102.7730560302735,11.914720535278434],[102.7726669311524,11.923139572143612],[102.77666473388672,11.929444313049316],[102.78172302246105,11.929521560668945],[102.78444671630876,11.943047523498592],[102.78360748291044,11.94888973236084],[102.77854919433594,11.961857795715389],[102.77245330810547,11.970030784606934],[102.76693725585938,11.979746818542537],[102.76583099365257,11.983887672424373],[102.77079010009788,11.986148834228459],[102.77027893066418,11.994721412658691],[102.7656021118164,12.0075302124024],[102.76583099365257,12.022223472595329],[102.75962066650385,12.033249855041504],[102.7513351440432,12.044395446777457],[102.7295227050783,12.063375473022518],[102.72850799560558,12.065969467163086],[102.71527862548851,12.07499885559082],[102.70749664306669,12.081389427185002],[102.69306182861322,12.094711303710994],[102.67424774169928,12.108964920043945],[102.66416931152366,12.120002746582031],[102.65547943115229,12.1260347366333],[102.6413879394533,12.133331298828125],[102.63555908203148,12.140833854675293],[102.62786102294939,12.145879745483398],[102.62444305419922,12.15111064910883],[102.62695312500006,12.155558586120605],[102.63667297363287,12.157781600952205],[102.64389038085938,12.156108856201172],[102.64721679687506,12.163060188293514],[102.64706420898449,12.167792320251408],[102.64440917968744,12.175326347351017],[102.63416290283203,12.185001373291072],[102.61694335937494,12.193887710571346],[102.61135101318365,12.2002210617066],[102.600357055664,12.203157424926701],[102.59249877929716,12.211111068725586],[102.58000183105469,12.202778816223201],[102.57194519042963,12.202221870422477],[102.56944274902355,12.193612098693848],[102.56416320800781,12.195829391479492],[102.56027984619152,12.200834274291992],[102.55777740478544,12.209166526794547],[102.55972290039057,12.214166641235465],[102.5524978637697,12.231671333312988],[102.55055236816418,12.230001449584961],[102.55333709716803,12.221389770507926],[102.55416870117216,12.213331222534293],[102.55805206298845,12.203890800476188],[102.558334350586,12.199166297912598],[102.56722259521484,12.191390037536678],[102.56333160400402,12.188055038452148],[102.56388854980497,12.181388854980469],[102.57527923584007,12.166951179504508],[102.57416534423834,12.164999961853027],[102.56459045410162,12.166058540344238],[102.55587768554716,12.16224193572998],[102.56076812744146,12.147461891174316],[102.56055450439453,12.140556335449162],[102.5569763183596,12.131211280822868],[102.56161499023449,12.125314712524528],[102.56205749511736,12.122056007385368],[102.56651306152366,12.117741584777946],[102.5608596801759,12.107110023498592],[102.56237792968761,12.103340148925895],[102.55974578857439,12.100009918212834],[102.56124114990246,12.09286022186285],[102.56916809082037,12.088055610656738],[102.57305908203136,12.088061332702694],[102.57507324218756,12.07703876495367],[102.58377838134783,12.06991195678711],[102.58944702148466,12.054443359375057],[102.58652496337896,12.046037673950195],[102.58361053466814,12.043061256408805],[102.57682037353521,12.050670623779297],[102.57176971435564,12.051608085632324],[102.56722259521484,12.049166679382381],[102.54750061035168,12.058600425720272],[102.55074310302746,12.070323944091797],[102.54833221435547,12.07499885559082],[102.55081939697266,12.08368015289318],[102.54927062988298,12.08725357055664],[102.54222106933611,12.095000267028809],[102.53909301757841,12.10425090789795],[102.5316085815432,12.113561630249137],[102.52108001708984,12.12097072601324],[102.49667358398443,12.131619453430233],[102.48141479492193,12.136988639831486],[102.47631835937506,12.139823913574219],[102.46997070312506,12.146419525146484],[102.4672241210937,12.151945114135685],[102.46778106689464,12.158330917358455],[102.47396850585938,12.162514686584416],[102.47148132324219,12.164539337158203],[102.45748138427746,12.16342926025385],[102.44348907470726,12.165705680847225],[102.43435668945318,12.168860435485897],[102.42323303222656,12.169719696044979],[102.40959167480497,12.169439315796012],[102.39863586425787,12.168370246887207],[102.39305877685564,12.169990539550781],[102.38709259033214,12.180239677429313],[102.3824996948245,12.181111335754338],[102.37695312500028,12.184720993042106],[102.36765289306635,12.19328975677496],[102.35278320312494,12.195280075073242],[102.34644317626982,12.198810577392521],[102.34221649169928,12.198889732360783],[102.33305358886741,12.195834159851131],[102.32639312744146,12.18944072723383],[102.32611083984392,12.180280685424862],[102.32018280029314,12.182551383972282],[102.31388854980486,12.182223320007324],[102.30665588378923,12.188611030578613],[102.30055236816423,12.185832977295036],[102.2944412231447,12.186941146850643],[102.28888702392572,12.191121101379451],[102.28527832031267,12.196944236755485],[102.2827758789062,12.196944236755485],[102.27777862548857,12.206945419311523],[102.28193664550804,12.213331222534293],[102.27805328369158,12.223609924316463],[102.28555297851585,12.222220420837402],[102.28833007812517,12.229439735412711],[102.28666687011719,12.2383327484132],[102.27937316894548,12.251075744628963],[102.26555633544928,12.267779350280819],[102.2657928466798,12.274771690368766],[102.26222229003923,12.286110877990666],[102.25944519042974,12.289723396301326],[102.26605987548828,12.291589736938533],[102.27139282226562,12.283610343933162],[102.27639007568365,12.283054351806697],[102.29111480712896,12.29083347320568],[102.29416656494146,12.289444923400936],[102.30611419677734,12.291389465332145],[102.31027984619158,12.295001029968319],[102.31722259521507,12.296111106872672],[102.32470703125028,12.300740242004395],[102.32805633544922,12.305556297302246],[102.32904052734398,12.312151908874512],[102.33130645751959,12.314400672912598],[102.33820343017601,12.31503677368164],[102.34278106689476,12.318332672119197],[102.3468475341798,12.323661804199162],[102.347221374512,12.331111907959041],[102.36353302001953,12.341281890869254],[102.36499786376947,12.345280647277946],[102.35888671874994,12.35333061218273],[102.34833526611334,12.363334655761662],[102.34829711914068,12.365584373474064],[102.35264587402344,12.37096023559576],[102.35679626464838,12.373332977294865],[102.35759735107422,12.373708724975643],[102.35805511474615,12.37388896942133],[102.36052703857428,12.375031471252441],[102.36496734619152,12.384571075439567],[102.366943359375,12.385833740234318],[102.36888885498053,12.385833740234318],[102.37300872802729,12.386492729187012],[102.37143707275419,12.392794609069824],[102.36817169189459,12.402320861816463],[102.35930633544939,12.404391288757438],[102.35192108154303,12.411569595336971],[102.34265136718761,12.415539741516113],[102.33541107177746,12.417090415954533],[102.32804870605469,12.424578666687125],[102.32678222656256,12.428169250488224],[102.32808685302757,12.43578052520752],[102.33032989501953,12.43893146514904],[102.32856750488276,12.44441032409668],[102.32128906250011,12.451089859008903],[102.32836151123041,12.454621315002498],[102.33338165283203,12.46068096160883],[102.33840179443365,12.463089942932243],[102.33965301513689,12.470879554748649],[102.34320068359403,12.47544097900402],[102.3429183959961,12.480590820312614],[102.33206176757812,12.496200561523494],[102.33029174804705,12.501180648803654],[102.32633209228516,12.503111839294377],[102.32164764404325,12.50834178924572],[102.31858062744146,12.508579254150334],[102.3155899047851,12.526220321655273],[102.3171615600586,12.532481193542537],[102.31669616699247,12.53989028930664],[102.30744171142578,12.547199249267635],[102.30670928955084,12.554670333862362],[102.31188964843756,12.555501937866325],[102.31674194335932,12.559330940246525],[102.32411193847662,12.558279991149902],[102.33168029785156,12.563089370727539],[102.33483886718761,12.568591117859],[102.33995819091825,12.568299293518123],[102.34561920166021,12.580720901489315],[102.34709930419939,12.587649345398063],[102.35877990722662,12.594491004943961],[102.36561584472656,12.593100547790641],[102.37374114990246,12.596520423889217],[102.37687683105469,12.5954008102417],[102.38185882568365,12.582370758056754],[102.38452148437506,12.5829696655274],[102.38867187500017,12.57641983032238],[102.39752197265648,12.573051452636776],[102.3998565673831,12.567411422729492],[102.40312957763666,12.566451072692871],[102.41767120361345,12.57014083862316],[102.42365264892601,12.568281173706168],[102.4246215820313,12.572369575500488],[102.41773986816429,12.578300476074219],[102.41162109375006,12.586060523986873],[102.4015502929688,12.592281341552848],[102.40119171142607,12.5947904586792],[102.393539428711,12.601399421691951],[102.38925170898455,12.608711242675838],[102.39881134033203,12.609060287475643],[102.39710998535162,12.61235141754156],[102.40229034423851,12.614510536193961],[102.39849090576178,12.626111984252873],[102.39292144775396,12.62865066528326],[102.39154815673828,12.633041381835938],[102.39462280273438,12.637861251831112],[102.3893585205081,12.647530555725211],[102.38861083984403,12.656821250915641],[102.38558959960932,12.66068172454834],[102.38687896728544,12.667949676513729],[102.38436889648443,12.67080116271984],[102.38632965087902,12.67821979522705],[102.3948593139649,12.67870998382574],[102.39372253417974,12.685469627380371],[102.40381622314476,12.691089630127067],[102.40206146240234,12.696559906005916],[102.40400695800804,12.69929122924816],[102.4111633300783,12.700421333313102],[102.41561889648443,12.70543003082281],[102.42501831054716,12.710700035095215],[102.42607879638672,12.722129821777344],[102.43173217773449,12.72251033782959],[102.43666076660185,12.728650093078727],[102.44093322753923,12.730320930481014],[102.44432067871105,12.736499786376896],[102.4514770507813,12.73390102386469],[102.45992279052763,12.732490539550838],[102.46687316894548,12.732749938964957],[102.4759368896485,12.734730720520076],[102.48487854003929,12.746809959411678],[102.49034881591797,12.75023078918457],[102.49244689941406,12.754611968994084],[102.50126647949224,12.755881309509277],[102.50514221191435,12.75164890289318],[102.51181793212919,12.75056171417242]]]]},"properties":{"ID_0":228,"ISO":"TH-23","NAME_0":"Thailand","ID_1":71,"NAME_1":"Trat","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ตราด","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.90986633300787,14.398341178893986],[104.91073608398432,14.404289245605526],[104.90805053710932,14.411161422729606],[104.89894104003923,14.41537857055664],[104.88125610351568,14.434129714965934],[104.87825775146513,14.435530662536678],[104.85105895996111,14.42323112487793],[104.84210205078142,14.424480438232536],[104.83174896240246,14.439021110534668],[104.83287811279325,14.444349288940543],[104.83606719970726,14.448181152343807],[104.84777069091808,14.453261375427303],[104.8532104492188,14.46107101440441],[104.85553741455084,14.466650962829647],[104.86084747314459,14.470161437988395],[104.86245727539074,14.48215103149414],[104.8614120483399,14.489021301269645],[104.86389160156256,14.491889953613395],[104.86369323730474,14.498280525207576],[104.85949707031256,14.500541687011719],[104.8575668334961,14.50547790527338],[104.85243225097656,14.507361412048283],[104.84777069091808,14.513880729675407],[104.83959960937517,14.519980430603027],[104.83592224121122,14.526471138000545],[104.82582092285185,14.536150932312069],[104.82372283935575,14.544980049133358],[104.81920623779314,14.549151420593319],[104.822738647461,14.558039665222168],[104.82198333740263,14.562450408935547],[104.82681274414057,14.56834983825695],[104.82599639892607,14.572772026062069],[104.83094024658209,14.578660964965877],[104.82821655273443,14.590681076049748],[104.83109283447271,14.592780113220329],[104.82813262939447,14.59801101684576],[104.82910156249994,14.604470252990836],[104.83165740966803,14.608861923217773],[104.83756256103521,14.614630699157772],[104.84040069580078,14.630760192871207],[104.8391799926759,14.63379096984869],[104.84678649902372,14.642621040344295],[104.84963989257841,14.644379615783691],[104.85221862792969,14.656559944152889],[104.86058044433611,14.65657997131342],[104.86331939697271,14.659590721130371],[104.86875915527338,14.66122055053711],[104.8753280639649,14.65785026550293],[104.87825775146513,14.658431053161621],[104.88237762451172,14.653339385986442],[104.89211273193365,14.651000976562443],[104.88713836669922,14.660458564758244],[104.883529663086,14.66212081909191],[104.8822784423831,14.666761398315543],[104.87879943847662,14.669692039489746],[104.87822723388678,14.680130958557186],[104.87879943847662,14.694099426269474],[104.87753295898432,14.698231697082463],[104.86920928955078,14.7011013031007],[104.85098266601591,14.71630001068121],[104.84543609619146,14.723650932312069],[104.84638214111334,14.730951309204215],[104.84506988525419,14.734029769897518],[104.83349609375017,14.740800857544002],[104.82193756103521,14.75304031372076],[104.81939697265642,14.761601448059082],[104.8205795288086,14.770718574523869],[104.81880950927751,14.785540580749455],[104.81346130371088,14.794121742248535],[104.80964660644526,14.796702384948787],[104.8014297485351,14.807739257812614],[104.79949951171903,14.814250946044979],[104.80275726318371,14.820500373840275],[104.80870819091814,14.827469825744629],[104.81578826904297,14.831000328064079],[104.83007812500017,14.835309982299862],[104.82289123535162,14.849220275878906],[104.81957244873064,14.85250186920166],[104.81462097167986,14.861809730529785],[104.8126831054687,14.868011474609489],[104.81384277343744,14.87366104125988],[104.81285858154308,14.879710197448844],[104.80889129638689,14.886272430419865],[104.80661010742205,14.894549369812069],[104.7977828979495,14.899191856384277],[104.79210662841814,14.900921821594295],[104.77593994140625,14.910820007324219],[104.76246643066412,14.916029930114803],[104.74812316894537,14.92046070098877],[104.74372100830084,14.924921035766715],[104.72988891601574,14.92701053619379],[104.72264099121105,14.930338859558105],[104.70761871337908,14.935020446777344],[104.70224761962885,14.933699607849121],[104.69879150390653,14.939489364624137],[104.68833160400385,14.945220947265682],[104.68563842773449,14.952290534973088],[104.68878936767584,14.962480545044059],[104.69116210937528,14.966360092163143],[104.68579101562506,14.975749969482422],[104.68421173095709,14.987091064453125],[104.68685150146484,14.99210071563732],[104.68518066406256,15.000248908996639],[104.68527221679682,15.006490707397404],[104.68232727050804,15.007480621337947],[104.67906951904303,15.01422023773199],[104.67508697509788,15.01814937591547],[104.67611694335932,15.031730651855469],[104.67505645751959,15.036141395568848],[104.67884063720703,15.039521217346305],[104.68177795410162,15.03555965423584],[104.68798065185564,15.042250633239803],[104.68209838867188,15.047109603881779],[104.68766784667991,15.053150177002067],[104.69120788574236,15.060521125793514],[104.68844604492193,15.062459945678768],[104.68834686279314,15.071590423584041],[104.694389343262,15.079501152038574],[104.69393920898443,15.081970214843807],[104.68540191650396,15.083379745483398],[104.6808624267581,15.087032318115291],[104.69110870361351,15.093998908996525],[104.68907928466808,15.098552703857365],[104.68327331542974,15.098449707031364],[104.6812286376956,15.09257030487072],[104.67762756347668,15.091031074523983],[104.67272949218767,15.09672927856451],[104.67687988281244,15.103201866149846],[104.68158721923834,15.104931831359863],[104.68205261230486,15.108421325683594],[104.67845916748047,15.112191200256461],[104.68258666992199,15.115790367126408],[104.68221282958996,15.121569633484],[104.68813323974604,15.122200965881348],[104.69161987304688,15.125711441040096],[104.7058563232423,15.128629684448299],[104.72202301025396,15.145180702209586],[104.73641204834001,15.156121253967285],[104.73873901367188,15.160640716552791],[104.7375030517581,15.164540290832633],[104.73230743408226,15.168230056762752],[104.72548675537138,15.16786098480219],[104.71121215820307,15.157790184020996],[104.7047271728515,15.155321121215934],[104.70009613037115,15.157039642334041],[104.70060729980469,15.169059753417969],[104.7067260742188,15.176261901855582],[104.7151489257813,15.180841445922908],[104.71977996826183,15.18468093872076],[104.71953582763678,15.190910339355526],[104.71511840820318,15.19233036041254],[104.7095718383789,15.184180259704647],[104.70391082763678,15.183870315551815],[104.70153045654314,15.189351081848258],[104.70670318603516,15.194790840148983],[104.70297241210966,15.20003986358654],[104.69567108154303,15.201568603515682],[104.68936157226568,15.197481155395621],[104.68498229980474,15.19823074340826],[104.68290710449241,15.203271865844727],[104.68937683105474,15.202050209045353],[104.6915130615235,15.206731796264762],[104.68386840820318,15.211750030517635],[104.68692016601568,15.217280387878475],[104.69616699218767,15.217721939086857],[104.69735717773438,15.222890853881893],[104.68865203857428,15.22152137756359],[104.68325805664068,15.2223415374757],[104.68016052246111,15.226119995117188],[104.6809158325197,15.232159614562988],[104.67810821533209,15.239769935608024],[104.67163085937506,15.251880645752067],[104.66776275634783,15.255489349365348],[104.65997314453125,15.25593090057373],[104.65956115722673,15.248359680175895],[104.65431976318365,15.245800971984977],[104.65437316894526,15.242821693420524],[104.6643371582033,15.23950099945074],[104.65872955322294,15.237260818481502],[104.6500473022461,15.23736953735363],[104.64681243896484,15.242531776428223],[104.64805603027372,15.248921394348145],[104.64682769775396,15.253729820251465],[104.64119720458996,15.253590583801326],[104.629867553711,15.260250091552848],[104.62716674804688,15.256681442260856],[104.6179580688476,15.258770942688102],[104.61096954345709,15.257711410522461],[104.6085891723634,15.262319564819336],[104.60980987548828,15.27004241943365],[104.6078491210937,15.271571159362793],[104.6020965576173,15.265959739685059],[104.59230804443382,15.266880035400447],[104.58428192138678,15.255040168762207],[104.58036041259777,15.251519203186035],[104.55650329589872,15.251211166381836],[104.55094146728521,15.25160121917719],[104.53156280517595,15.250419616699276],[104.52349853515653,15.252011299133358],[104.5155181884765,15.256450653076286],[104.50492858886724,15.26573181152338],[104.48838043212896,15.265489578247127],[104.47074890136719,15.266671180725211],[104.46492004394537,15.269650459289664],[104.45925140380854,15.275720596313477],[104.45491790771484,15.276399612426815],[104.42085266113287,15.284591674804801],[104.40705108642578,15.288311004638786],[104.41826629638689,15.320699691772518],[104.41767883300776,15.326231002807674],[104.41436004638678,15.329889297485352],[104.41970062255865,15.336031913757324],[104.41696166992188,15.34032058715826],[104.42247009277361,15.343311309814453],[104.42124938964872,15.361420631408748],[104.41857147216803,15.366552352905387],[104.41429901123047,15.379440307617188],[104.41055297851568,15.384950637817496],[104.40524291992216,15.387601852416992],[104.39598083496094,15.38467121124279],[104.3906478881836,15.386311531066951],[104.3849487304688,15.39155101776123],[104.38288116455101,15.39703273773199],[104.38582611083979,15.400951385498104],[104.39212036132807,15.402880668640194],[104.39347076416033,15.407222747802734],[104.38864898681669,15.414521217346305],[104.39008331298828,15.426492691040096],[104.38630676269554,15.444540977478084],[104.374771118164,15.456391334533748],[104.3789672851562,15.464079856872502],[104.38732910156261,15.483200073242188],[104.39097595214838,15.48859024047863],[104.38590240478521,15.49408054351801],[104.38630676269554,15.503319740295467],[104.38990783691412,15.51299953460699],[104.39633941650408,15.525639533996525],[104.40112304687517,15.542901992797965],[104.40570068359392,15.541329383850211],[104.40764617919928,15.537421226501522],[104.41382598876982,15.534671783447322],[104.42118072509766,15.534870147705135],[104.43361663818382,15.53934192657482],[104.44934082031244,15.538400650024414],[104.45890045166033,15.53973197937023],[104.47229766845703,15.539682388305607],[104.48155212402355,15.535319328308049],[104.48496246337919,15.538510322570858],[104.48535919189482,15.544440269470215],[104.4943923950197,15.55004024505621],[104.49668884277344,15.549810409545955],[104.51239013671898,15.561440467834473],[104.52346801757818,15.557311058044547],[104.52816009521484,15.556861877441406],[104.52964782714838,15.55018234252941],[104.53582000732428,15.551250457763729],[104.5409774780274,15.548910140991325],[104.54444885253912,15.542390823364258],[104.54946136474621,15.540630340576286],[104.55683135986351,15.554331779480037],[104.56848907470709,15.554861068725586],[104.57878112792974,15.562450408935547],[104.58815002441435,15.56521034240734],[104.5865478515625,15.587261199951172],[104.57929229736328,15.595801353454647],[104.58129119873075,15.602490425109977],[104.58676147460943,15.60581111907959],[104.60427856445312,15.609750747680664],[104.6094818115235,15.613320350646973],[104.61229705810547,15.617601394653377],[104.61898803710943,15.622801780700684],[104.616752624512,15.627801895141545],[104.61635589599615,15.636280059814453],[104.62007141113298,15.639900207519588],[104.63256835937506,15.641810417175293],[104.64025878906244,15.645369529724178],[104.63275909423834,15.66063117980957],[104.62957000732433,15.662171363830566],[104.62435913085943,15.660200119018555],[104.61419677734375,15.661651611328239],[104.606430053711,15.666310310363826],[104.60369873046875,15.671469688415527],[104.60481262207048,15.67469120025629],[104.61186981201189,15.679640769958496],[104.62287139892607,15.685361862182617],[104.63449096679716,15.687290191650447],[104.64515686035162,15.684261322021598],[104.6485366821289,15.677079200744686],[104.6576309204101,15.673299789428654],[104.66364288330101,15.672320365905762],[104.67540740966797,15.673430442810115],[104.68080902099632,15.670021057128963],[104.68704223632812,15.668812751770076],[104.69535064697294,15.659180641174373],[104.6998291015625,15.656061172485352],[104.71169281005865,15.656330108642578],[104.71639251709001,15.658729553222713],[104.72518920898438,15.653020858764762],[104.72431182861334,15.649852752685547],[104.73699951171892,15.648760795593375],[104.7367477416995,15.653658866882381],[104.74385070800798,15.654621124267578],[104.74703979492216,15.649700164794979],[104.74839019775402,15.640961647033691],[104.7561798095706,15.63854122161871],[104.7620697021485,15.631240844726562],[104.76657104492205,15.633770942688102],[104.77143096923834,15.628641128540096],[104.78021240234403,15.62593078613287],[104.78203582763672,15.618900299072266],[104.79013824462919,15.613710403442383],[104.78798675537115,15.609588623046989],[104.7911682128908,15.601539611816463],[104.79576110839844,15.599540710449219],[104.79892730712919,15.592949867248592],[104.80594635009771,15.592089653015194],[104.80631256103538,15.596180915832633],[104.81257629394537,15.60403060913086],[104.81362915039074,15.599960327148438],[104.81723785400419,15.598271369934196],[104.81961822509766,15.59144115447998],[104.82634735107428,15.583370208740348],[104.82969665527361,15.583499908447322],[104.83354187011719,15.588861465454215],[104.8405990600586,15.588471412658805],[104.84021759033203,15.579039573669547],[104.84665679931658,15.58203029632574],[104.8466262817384,15.576149940490723],[104.84953308105486,15.572310447692928],[104.85356903076172,15.575810432434025],[104.86181640625023,15.575769424438477],[104.8637084960938,15.577699661254883],[104.87005615234403,15.570671081543082],[104.86959075927734,15.56603145599371],[104.87816619873047,15.562450408935547],[104.87267303466803,15.558328628540153],[104.86753082275413,15.55935001373291],[104.86691284179688,15.547611236572266],[104.87425231933622,15.547731399536133],[104.8763122558596,15.544561386108398],[104.87203979492205,15.538311958313045],[104.88359069824247,15.536511421203556],[104.88471984863287,15.544851303100643],[104.88806152343767,15.54603099822998],[104.89270019531256,15.552909851074276],[104.8936691284182,15.560120582580566],[104.89707183837896,15.562639236450195],[104.89052581787126,15.567839622497502],[104.88820648193371,15.572799682617301],[104.89433288574213,15.575411796569824],[104.89913177490251,15.584622383117676],[104.90309906005854,15.586200714111385],[104.91044616699241,15.594670295715446],[104.91361999511736,15.59391117095953],[104.91963958740263,15.598469734192008],[104.92524719238298,15.59838962554943],[104.92884063720697,15.601019859313908],[104.92629241943365,15.60713005065918],[104.92604064941406,15.612531661987362],[104.93267822265642,15.61676025390625],[104.92913818359398,15.623490333557186],[104.93353271484398,15.627959251403809],[104.93152618408197,15.634041786193961],[104.93564605712896,15.635800361633358],[104.93109130859403,15.641630172729435],[104.92714691162126,15.640421867370549],[104.9116668701173,15.644890785217399],[104.89710998535162,15.652271270751896],[104.89524078369169,15.67918968200695],[104.89348602294928,15.68704986572277],[104.89958953857428,15.698430061340446],[104.90061187744135,15.708449363708496],[104.90254211425798,15.714889526367301],[104.90891265869146,15.725820541381893],[104.90891265869146,15.734171867370662],[104.90709686279291,15.746641159057674],[104.90724945068388,15.752731323242188],[104.91185760498058,15.761672019958496],[104.93605041503935,15.770870208740348],[104.95516204833979,15.78119945526123],[104.96143341064482,15.786898612976017],[104.96611022949219,15.801071166992244],[104.96723937988281,15.810750961303768],[104.9669113159182,15.83033084869379],[104.96543884277372,15.83858966827404],[104.96572875976562,15.858880996704158],[104.97486114501953,15.872058868408203],[104.98149108886713,15.88770961761469],[104.9848327636721,15.89995098114025],[104.9920425415039,15.909429550170842],[104.98355865478544,15.909170150756893],[104.97431945800787,15.912080764770565],[104.97653961181635,15.92793178558361],[104.97912597656256,15.935171127319279],[104.98452758789074,15.93972015380865],[104.99888610839861,15.945240020751896],[105.00197601318365,15.94856071472168],[105.01145935058611,15.962691307067871],[105.01072692871094,15.967310905456657],[105.01259613037126,15.976801872253475],[105.00937652587908,15.983131408691406],[105.00720977783232,15.99297046661377],[105.01084899902355,15.999820709228516],[105.0067977905274,16.007120132446403],[105.00543975830101,16.015071868896484],[105.00779724121105,16.026521682739315],[105.01068878173845,16.0316104888916],[105.0168228149414,16.0372695922851],[105.0223999023438,16.044549942016545],[105.02722930908232,16.053979873657283],[105.02645111084013,16.0597381591798],[105.0298080444336,16.068269729614258],[105.03372192382841,16.07438087463379],[105.03695678710966,16.076431274414062],[105.0377578735351,16.081251144409293],[105.04612731933605,16.09308052062994],[105.0559921264649,16.091289520263786],[105.06275939941423,16.09553909301752],[105.06365966796903,16.095991134643555],[105.08512878417969,16.084119796753043],[105.08764648437523,16.08722114562994],[105.10173034667974,16.0892009735108],[105.11245727539068,16.084520339965877],[105.12149047851557,16.075809478759822],[105.12954711914062,16.07786941528326],[105.13681030273438,16.077779769897518],[105.14064025878912,16.074010848999137],[105.14874267578136,16.073270797729435],[105.15860748291021,16.067340850830078],[105.16927337646507,16.065000534057674],[105.18556213378918,16.05857086181652],[105.19216918945335,16.055019378662166],[105.21364593505876,16.047941207885742],[105.23198699951172,16.044059753418026],[105.2474975585938,16.042150497436637],[105.25771331787126,16.042409896850586],[105.27363586425787,16.04116058349615],[105.28349304199219,16.039020538330192],[105.31311798095709,16.030670166015682],[105.31977844238287,16.026679992675838],[105.33850097656278,16.027959823608455],[105.3541717529298,16.026750564575252],[105.36142730712885,16.023258209228516],[105.36667633056646,16.01865959167492],[105.38813018798822,16.01665115356451],[105.41419219970709,16.012958526611328],[105.42530822753918,16.0037517547608],[105.42816162109403,15.991761207580566],[105.42597961425787,15.986912727356014],[105.41973114013678,15.985190391540527],[105.40721893310541,15.986291885376033],[105.39900970458979,15.98905086517334],[105.3930282592774,15.988460540771541],[105.38049316406261,15.982380867004451],[105.37840270996088,15.975041389465332],[105.37074279785185,15.966940879821834],[105.36637115478527,15.955210685730037],[105.36276245117182,15.950061798095703],[105.3529663085938,15.942590713501033],[105.35079193115251,15.9307603836059],[105.345756530762,15.923380851745662],[105.3450164794923,15.91348934173584],[105.34915161132818,15.907170295715332],[105.35444641113281,15.904509544372559],[105.36741638183594,15.876240730285645],[105.37328338623064,15.865160942077637],[105.37413024902366,15.860081672668514],[105.38078308105474,15.84425067901617],[105.38626861572283,15.837511062622127],[105.39140319824236,15.827612876892033],[105.39238739013672,15.821451187133789],[105.39260101318365,15.807560920715332],[105.39579772949236,15.801250457763672],[105.40222930908214,15.793421745300293],[105.40928649902355,15.793320655822868],[105.41581726074236,15.79114055633545],[105.42151641845697,15.787240982055778],[105.42060089111345,15.778830528259277],[105.42173767089861,15.773261070251408],[105.43689727783209,15.752699851989746],[105.46267700195341,15.743801116943473],[105.47003173828125,15.744480133056697],[105.47454071044916,15.749618530273551],[105.4884490966798,15.757729530334473],[105.49356079101591,15.76194953918457],[105.50076293945318,15.764620780944824],[105.50524139404291,15.764579772949219],[105.51168060302763,15.761969566345329],[105.51754760742193,15.755450248718262],[105.52268218994146,15.75420093536377],[105.53238677978516,15.74740028381342],[105.53697967529297,15.74612045288086],[105.54567718505854,15.747930526733398],[105.55445098876947,15.74789047241211],[105.55993652343778,15.744090080261287],[105.56286621093767,15.73718070983881],[105.56735229492193,15.73441123962408],[105.57900238037115,15.731600761413574],[105.59388732910185,15.725351333618221],[105.60333251953125,15.71908092498785],[105.60681152343756,15.713200569152832],[105.60927581787115,15.699909210205192],[105.61402893066406,15.689370155334586],[105.63386535644531,15.6676282882691],[105.6376113891601,15.658711433410701],[105.63912963867199,15.627570152282715],[105.63194274902344,15.605260848999023],[105.62902832031244,15.589400291442814],[105.62905120849626,15.56621074676508],[105.62523651123064,15.556840896606388],[105.61244964599604,15.545641899108887],[105.60501861572283,15.527041435241756],[105.59693908691435,15.511771202087346],[105.59558868408209,15.504870414733887],[105.60095977783232,15.492110252380314],[105.60500335693354,15.477910041809196],[105.60504913330078,15.471686363220329],[105.60057067871122,15.461791038513127],[105.59938049316429,15.45249080657959],[105.59998321533209,15.442261695861816],[105.59719085693354,15.43121147155773],[105.59382629394537,15.422444343566838],[105.58931732177763,15.415169715881348],[105.58251953125017,15.407440185546989],[105.57662200927751,15.402950286865348],[105.56387329101562,15.396719932556266],[105.55773162841814,15.396761894226131],[105.54669952392578,15.391010284423828],[105.53900909423822,15.389801025390682],[105.52693176269537,15.39132022857666],[105.4988708496096,15.384441375732536],[105.4955825805664,15.384320259094238],[105.48618316650385,15.373169898986816],[105.4795227050783,15.36802196502697],[105.47106933593778,15.352940559387264],[105.46978759765642,15.345561027526855],[105.47466278076178,15.33426952362072],[105.49192047119158,15.325679779052848],[105.49806213378906,15.31891059875494],[105.50369262695341,15.318669319152946],[105.50813293457048,15.31375980377203],[105.53160095214861,15.320640563964957],[105.56166839599638,15.318441390991268],[105.57605743408203,15.323420524597111],[105.57862854003935,15.322670936584473],[105.58065032958984,15.316350936889705],[105.58397674560575,15.313160896301213],[105.58583068847662,15.29595088958746],[105.58895111084013,15.28468036651617],[105.59281158447283,15.278780937194767],[105.59400177001953,15.271125793457031],[105.5848388671875,15.259639739990291],[105.57441711425787,15.25907039642334],[105.56276702880882,15.260991096496639],[105.55020904541044,15.251291275024357],[105.5424270629884,15.251081466674862],[105.53602600097656,15.241930961609],[105.52427673339872,15.22940921783453],[105.5197067260745,15.221600532531681],[105.5194320678711,15.218240737915153],[105.50421905517584,15.206050872802791],[105.50026702880871,15.20427036285406],[105.49021911621111,15.187140464782658],[105.48454284667974,15.185140609741268],[105.4775085449221,15.17584037780773],[105.47991180419939,15.171540260314885],[105.47849273681669,15.166521072387752],[105.47432708740246,15.16497993469244],[105.47164916992216,15.157060623168888],[105.4728164672851,15.154291152954158],[105.47859191894531,15.152629852294979],[105.48055267334007,15.146910667419434],[105.47483062744163,15.134820938110352],[105.47012329101591,15.133950233459586],[105.47084045410162,15.128200531005916],[105.46827697753923,15.124031066894474],[105.46698760986334,15.112990379333496],[105.46880340576183,15.107709884643668],[105.474609375,15.098529815673942],[105.48221588134766,15.094700813293514],[105.50127410888689,15.090559959411678],[105.50679779052751,15.086611747741756],[105.5131454467774,15.084436416625977],[105.5166702270509,15.077125549316406],[105.51548004150396,15.073700904846135],[105.51766204834001,15.067502021789494],[105.51657867431646,15.06089019775385],[105.52265167236328,15.062661170959473],[105.52845764160162,15.060621261596793],[105.53453063964866,15.06300067901617],[105.54016113281244,15.061541557311955],[105.54213714599615,15.064331054687443],[105.54711151123053,15.063241958618164],[105.5542602539062,15.058950424194336],[105.55503082275385,15.053441047668457],[105.55370330810541,15.04520416259777],[105.55018615722662,15.043990135192928],[105.54952239990251,15.036602020263672],[105.55599212646479,15.028030395507926],[105.56330108642578,15.027521133422965],[105.56785583496094,15.02522087097168],[105.56942749023443,15.021274566650504],[105.57363128662132,15.02002143859869],[105.57679748535173,15.013317108154297],[105.57514953613287,15.010951995849666],[105.57666015625006,15.001939773559627],[105.57495117187506,14.998300552368221],[105.57881927490263,14.995071411132926],[105.5851364135745,14.996820449829215],[105.58860778808588,14.994210243225098],[105.60633087158197,14.99055099487316],[105.6119155883789,14.988007545471305],[105.62233734130871,14.974631309509391],[105.61821746826172,14.970270156860408],[105.61429595947294,14.970569610595646],[105.60756683349615,14.968081474304142],[105.60555267333996,14.962480545044059],[105.59774017333996,14.960171699523926],[105.59295654296903,14.949786186218262],[105.58630371093744,14.944154739379996],[105.5764389038086,14.945370674133414],[105.57180023193371,14.952249526977539],[105.56358337402372,14.951621055603027],[105.55847167968744,14.953260421752873],[105.55433654785156,14.945590972900334],[105.55558013916027,14.93885135650629],[105.55164337158203,14.933611869812012],[105.551498413086,14.928190231323299],[105.54882049560553,14.924651145935172],[105.55374145507812,14.91875171661377],[105.56275177001959,14.91631031036377],[105.56918334960955,14.907240867614803],[105.57263946533203,14.90493106842041],[105.57917022705101,14.895700454711971],[105.58112335205107,14.888640403747502],[105.57971191406256,14.879490852355957],[105.57357025146501,14.879170417785701],[105.56037902832026,14.873829841613826],[105.55423736572294,14.87429046630865],[105.55082702636713,14.871040344238338],[105.53852081298834,14.8666410446167],[105.53836059570318,14.859960556030387],[105.54219818115263,14.854730606079215],[105.55249023437506,14.850681304931697],[105.55564880371094,14.83533096313488],[105.55461120605497,14.832770347595215],[105.54415893554682,14.82639026641857],[105.53166961669945,14.820611953735295],[105.52443695068365,14.823460578918514],[105.52181243896513,14.82106018066412],[105.52001953125006,14.811971664428711],[105.51423645019548,14.801100730895996],[105.51481628417986,14.792371749877987],[105.51914978027355,14.785520553588924],[105.52234649658209,14.774611473083496],[105.51819610595714,14.773010253906307],[105.51557922363298,14.763710975647086],[105.51754760742193,14.756871223449764],[105.51548004150396,14.752459526062069],[105.51976776123064,14.74867057800293],[105.52104187011747,14.74462985992443],[105.5288772583009,14.740111351013184],[105.53907775878906,14.736540794372615],[105.54225921630854,14.73010063171381],[105.53048706054688,14.728491783142147],[105.52379608154297,14.726560592651424],[105.5247573852539,14.717350959777832],[105.52382659912115,14.71035194396984],[105.52716064453136,14.70469856262207],[105.52449035644543,14.698200225830021],[105.52050781249994,14.698130607605094],[105.51799011230497,14.69347953796381],[105.5243301391601,14.685301780700627],[105.52609252929688,14.675251007080135],[105.51893615722685,14.66493034362793],[105.5191802978515,14.656920433044434],[105.52102661132841,14.649900436401424],[105.52471923828142,14.647639274597111],[105.53141021728533,14.636519432067871],[105.52725982666021,14.633330345153865],[105.53238677978516,14.62218093872076],[105.540542602539,14.621879577636719],[105.5448608398438,14.619150161743278],[105.53913879394537,14.611689567565975],[105.53417205810553,14.608260154724064],[105.53125762939453,14.595660209655819],[105.53279113769537,14.592231750488395],[105.53819274902372,14.59055233001709],[105.54164123535185,14.582071304321289],[105.53205108642601,14.572320938110352],[105.5321426391601,14.568270683288688],[105.53714752197266,14.55844974517828],[105.53594207763683,14.552041053771916],[105.52597045898443,14.548979759216309],[105.52799224853516,14.537541389465389],[105.51815795898443,14.536060333252067],[105.51703643798857,14.53248119354248],[105.51094818115246,14.523440361023063],[105.5044631958009,14.520880699157829],[105.50293731689464,14.516820907592887],[105.503921508789,14.51138973236084],[105.4983596801759,14.510870933532772],[105.48983001709001,14.508010864257812],[105.48480987548857,14.501520156860295],[105.48950958251959,14.497811317443961],[105.48352050781267,14.492940902710018],[105.48168182373053,14.485489845275879],[105.47798156738276,14.481140136718807],[105.47606658935541,14.47507095336914],[105.47019195556658,14.467240333557186],[105.4631576538086,14.46465015411377],[105.4604568481447,14.461010932922363],[105.45970916748047,14.453450202941951],[105.45218658447294,14.449911117553654],[105.45169830322266,14.44606018066412],[105.4477462768557,14.442960739135799],[105.44535827636713,14.437340736389217],[105.44561767578125,14.43163013458252],[105.44348144531267,14.42692089080822],[105.43434143066406,14.423631668090877],[105.43184661865251,14.418549537658691],[105.43270874023443,14.414641380310172],[105.42694854736334,14.413500785827694],[105.42327117919939,14.41980075836193],[105.41263580322271,14.42761039733881],[105.40983581542997,14.425861358642578],[105.4058380126956,14.418710708618278],[105.40413665771496,14.411340713500977],[105.39932250976568,14.40608024597168],[105.39521026611345,14.404730796813908],[105.38912200927751,14.408320426940918],[105.38929748535173,14.400540351867676],[105.382080078125,14.396580696106014],[105.37538146972673,14.398269653320256],[105.37209320068371,14.396260261535758],[105.36453247070312,14.386290550231934],[105.35803222656267,14.385899543762264],[105.34365081787138,14.383220672607479],[105.33429718017607,14.392401695251465],[105.32746887207043,14.396391868591309],[105.3227767944336,14.395840644836483],[105.32063293457048,14.390990257263297],[105.31661224365229,14.387331008911133],[105.30863189697283,14.373831748962346],[105.30680084228538,14.36449146270752],[105.29933929443365,14.366841316223201],[105.29467010498041,14.366410255432243],[105.2916564941408,14.362991333007756],[105.28597259521484,14.3631010055542],[105.2853393554687,14.35581016540533],[105.28230285644548,14.352199554443473],[105.27826690673822,14.351971626281795],[105.26817321777338,14.358959197998047],[105.25588989257818,14.361130714416504],[105.25012969970709,14.358430862426871],[105.24894714355469,14.353529930114803],[105.24276733398466,14.348139762878532],[105.2378921508789,14.348070144653377],[105.2366333007813,14.337430953979492],[105.23442077636736,14.33369064331066],[105.22982025146479,14.331620216369686],[105.22373962402361,14.334910392761287],[105.21888732910162,14.33314132690424],[105.21254730224615,14.34088134765625],[105.20735168457048,14.341961860656738],[105.20163726806658,14.346879959106445],[105.19315338134794,14.34447956085205],[105.18858337402372,14.340510368347282],[105.1829605102539,14.340719223022518],[105.17807006835943,14.344290733337402],[105.17334747314464,14.336929321289062],[105.1697387695312,14.33363056182867],[105.16886138916016,14.325141906738338],[105.1761398315432,14.321091651916504],[105.17823791503929,14.313110351562557],[105.17243194580095,14.307420730590877],[105.17066192626982,14.302861213684082],[105.16310119628923,14.300318717956486],[105.1617507934572,14.287590980529842],[105.15605926513672,14.286161422729549],[105.15235900878935,14.281889915466422],[105.1518783569336,14.274021148681584],[105.1547775268557,14.267399787902832],[105.14647674560541,14.260970115661621],[105.14620971679693,14.257381439209098],[105.1526184082033,14.258050918579158],[105.15551757812506,14.253111839294377],[105.144340515137,14.236519813537711],[105.13726806640653,14.231820106506348],[105.12812042236357,14.223310470581168],[105.11651611328136,14.219921112060604],[105.11251068115246,14.214241027832031],[105.10550689697283,14.21156120300293],[105.0948486328125,14.214229583740291],[105.08611297607445,14.208119392395076],[105.07801055908197,14.211520195007381],[105.06205749511724,14.21193885803234],[105.05284881591814,14.212889671325684],[105.04843139648432,14.219941139221305],[105.04872894287132,14.224611282348633],[105.03562164306669,14.230890274047852],[105.031967163086,14.236221313476562],[105.02745056152338,14.236421585083008],[105.02426147460938,14.241109848022461],[105.02297973632835,14.250411033630485],[105.02490234375006,14.257340431213322],[105.02420043945324,14.262991905212516],[105.01825714111357,14.26981067657482],[105.01853179931658,14.273300170898551],[105.01056671142584,14.283660888671875],[105.00614929199219,14.291780471801815],[105.00480651855469,14.301621437072754],[105.00013732910185,14.306131362915096],[104.99301910400396,14.309119224548397],[104.98674011230491,14.316270828247184],[104.99297332763689,14.319621086120605],[104.99562072753923,14.327948570251522],[104.99447631835955,14.331570625305233],[104.99510192871094,14.341430664062443],[105.00096893310564,14.350099563598633],[105.00392150878912,14.363020896911621],[105.00318145751982,14.366031646728572],[104.99720764160162,14.3712797164917],[104.99594879150419,14.378120422363281],[104.99176025390653,14.377579689025879],[104.98522949218756,14.384030342102108],[104.98052215576183,14.384611129760799],[104.97544860839844,14.390240669250488],[104.97162628173828,14.390639305114746],[104.96605682373064,14.38713169097906],[104.95865631103516,14.388422012329102],[104.95777130126959,14.38069057464611],[104.95475006103544,14.37936019897461],[104.9481506347658,14.381159782409782],[104.9423370361331,14.385700225830135],[104.93974304199236,14.390500068664608],[104.9274520874024,14.396549224853572],[104.92487335205095,14.400321006775016],[104.91958618164068,14.397790908813477],[104.90986633300787,14.398341178893986]]]},"properties":{"ID_0":228,"ISO":"TH-34","NAME_0":"Thailand","ID_1":72,"NAME_1":"Ubon Ratchathani","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"อุบลราชธานี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.40276336669933,17.90266990661621],[103.4096908569336,17.902799606323185],[103.4164428710938,17.895719528198356],[103.41403198242182,17.893302917480412],[103.41996765136736,17.878078460693416],[103.40849304199213,17.875770568847656],[103.40651702880865,17.867439270019588],[103.40902709960966,17.856781005859432],[103.4000167846682,17.855491638183707],[103.39727020263689,17.853141784668026],[103.40085601806652,17.844530105590763],[103.408432006836,17.847509384155273],[103.42088317871105,17.83798980712885],[103.4175872802735,17.83279037475586],[103.4064102172851,17.834571838378906],[103.40361022949219,17.829389572143555],[103.3980102539062,17.832620620727596],[103.40103149414091,17.839130401611385],[103.39736938476568,17.841220855712947],[103.38844299316435,17.840789794921932],[103.38371276855463,17.83522033691412],[103.39231109619158,17.829170227050895],[103.39090728759794,17.82069015502941],[103.3856277465822,17.817541122436467],[103.38389587402338,17.80918121337885],[103.37689971923828,17.799829483032283],[103.38062286376982,17.793840408325195],[103.37496948242205,17.790849685669002],[103.371109008789,17.79200172424322],[103.3719482421875,17.776979446411246],[103.37928009033232,17.77305030822754],[103.38336944580078,17.767290115356445],[103.38044738769543,17.764299392700252],[103.38069915771484,17.759130477905387],[103.38582611084001,17.75213050842291],[103.3895111083985,17.75028038024908],[103.3952560424807,17.75375938415533],[103.39936828613298,17.75304985046398],[103.40294647216808,17.756069183349553],[103.40886688232433,17.742740631103516],[103.41259002685553,17.727832794189396],[103.40779113769531,17.721830368041992],[103.40924072265636,17.71882820129389],[103.40402984619163,17.715360641479492],[103.40863800048857,17.708641052246207],[103.40882110595709,17.700300216674805],[103.40547943115251,17.698009490966854],[103.408256530762,17.692228317260685],[103.40380859375006,17.684640884399528],[103.40744018554693,17.675239562988395],[103.40657043457043,17.671451568603516],[103.40918731689459,17.665910720825252],[103.40128326416033,17.648611068725586],[103.40065002441435,17.641178131103572],[103.40325927734398,17.63841819763195],[103.40500640869146,17.630790710449276],[103.40049743652338,17.62330245971691],[103.40241241455095,17.617940902710018],[103.39974212646501,17.61478042602539],[103.40093994140625,17.60807991027832],[103.41069030761724,17.598180770873967],[103.41088867187523,17.593420028686467],[103.40524291992199,17.589281082153434],[103.3984603881836,17.593080520629996],[103.38677215576189,17.591510772705078],[103.38329315185575,17.587591171264705],[103.37805938720709,17.589670181274528],[103.37931823730463,17.578069686889705],[103.3746871948245,17.578269958496094],[103.37062835693365,17.58335113525385],[103.36213684082043,17.589000701904297],[103.35251617431646,17.584720611572322],[103.34860992431635,17.578659057617188],[103.34288787841791,17.575889587402457],[103.33967590332048,17.570631027221737],[103.3425903320313,17.569231033325252],[103.33722686767578,17.555950164795036],[103.3341217041015,17.554790496826286],[103.32971954345697,17.547452926635685],[103.32575988769548,17.551851272583065],[103.32061004638689,17.54124069213873],[103.32174682617205,17.53720855712885],[103.31799316406256,17.527790069580078],[103.31867980957048,17.522190093994254],[103.31565856933594,17.517591476440487],[103.30416107177729,17.509420394897518],[103.30252075195312,17.502990722656307],[103.29131317138678,17.49770164489746],[103.29039001464872,17.488357543945426],[103.29213714599621,17.48496818542486],[103.28790283203153,17.47965049743658],[103.29038238525419,17.474300384521598],[103.28993988037115,17.46818923950201],[103.29223632812506,17.46611976623535],[103.28431701660168,17.456291198730582],[103.2823410034182,17.44688987731945],[103.27803039550776,17.44293022155756],[103.27870941162132,17.43400192260748],[103.28340911865251,17.429861068725643],[103.28533935546875,17.42246055603033],[103.28513336181658,17.41650009155279],[103.2911987304687,17.405250549316406],[103.29473876953148,17.40252113342291],[103.29840850830107,17.395740509033317],[103.30220031738287,17.39463996887207],[103.30425262451178,17.388458251953125],[103.2998275756836,17.38636970520014],[103.29061126708996,17.369859695434627],[103.28572082519531,17.36677932739252],[103.28472137451166,17.358650207519645],[103.27754211425787,17.35177993774414],[103.27497863769526,17.347471237182674],[103.27498626708979,17.340599060058594],[103.26877593994146,17.326730728149414],[103.25940704345703,17.325048446655217],[103.25556945800798,17.316080093383846],[103.25453186035185,17.309539794921932],[103.25959014892578,17.3075408935548],[103.25930023193388,17.302240371704215],[103.26364898681663,17.29144096374523],[103.26776123046892,17.285079956054688],[103.27423858642595,17.279689788818416],[103.2760620117188,17.271289825439453],[103.28572845458984,17.264970779419002],[103.28816223144548,17.26915931701666],[103.29244232177757,17.266160964965934],[103.30829620361334,17.268249511718864],[103.31884002685558,17.26180076599121],[103.32248687744135,17.26260948181158],[103.33454895019531,17.25875282287609],[103.34010314941412,17.253961563110465],[103.35308074951178,17.253520965576172],[103.35716247558622,17.248180389404297],[103.35450744628918,17.24333953857422],[103.36057281494169,17.240491867065487],[103.36363220214872,17.234340667724666],[103.36808013916033,17.23307991027832],[103.37191772460955,17.235280990600586],[103.3799667358399,17.234058380126953],[103.3816986083985,17.229101181030387],[103.38803100585943,17.228691101074276],[103.39489746093756,17.225280761718807],[103.40360260009766,17.219152450561637],[103.40666961669928,17.21860122680664],[103.4197998046875,17.210880279541072],[103.42545318603527,17.217971801757812],[103.43235015869135,17.218389511108512],[103.43282318115257,17.214910507202205],[103.44069671630888,17.21153068542492],[103.44921112060553,17.215660095214844],[103.45356750488281,17.210830688476676],[103.46170043945324,17.21578025817871],[103.46537780761736,17.216110229492244],[103.47029876708979,17.2252197265625],[103.47390747070324,17.225719451904354],[103.47451019287126,17.218231201171932],[103.47682189941423,17.21598052978527],[103.49079132080084,17.208539962768555],[103.50109100341803,17.20437049865734],[103.51416015624994,17.19519996643072],[103.52262115478516,17.19125938415533],[103.53437805175776,17.182308197021598],[103.54413604736345,17.17625999450695],[103.54791259765636,17.172250747680664],[103.557426452637,17.168540954589844],[103.55950164794928,17.164329528808594],[103.57408905029314,17.155460357666016],[103.58364868164062,17.159879684448185],[103.59423065185575,17.170301437377987],[103.6010360717774,17.16739082336437],[103.60694885253912,17.158109664917106],[103.61203002929705,17.15516853332531],[103.61535644531273,17.148412704467887],[103.62049865722662,17.148740768432674],[103.62357330322271,17.146051406860295],[103.62564086914068,17.139181137085018],[103.62940979003923,17.135139465331974],[103.63844299316429,17.119390487671012],[103.63957977294945,17.110929489135742],[103.64714050292986,17.113460540771598],[103.65738677978527,17.113910675048828],[103.66918182373075,17.10436058044445],[103.66388702392572,17.086521148681697],[103.6578598022461,17.076860427856445],[103.65730285644537,17.073770523071232],[103.6601333618164,17.067131042480526],[103.66384124755888,17.063190460205078],[103.667221069336,17.050872802734375],[103.66364288330084,17.04387092590332],[103.66216278076183,17.03099060058588],[103.66063690185558,17.026359558105582],[103.66461181640653,17.01748085021984],[103.66056823730491,17.017190933227596],[103.65014648437511,17.020589828491325],[103.64893341064476,17.024070739746207],[103.65280914306652,17.03106117248535],[103.65441131591797,17.044849395751953],[103.65080261230469,17.050529479980526],[103.64167785644554,17.056119918823185],[103.63967132568354,17.069442749023494],[103.63035583496111,17.076530456543082],[103.62618255615234,17.08414077758789],[103.6194305419923,17.090652465820426],[103.61136627197271,17.093879699707145],[103.60836029052763,17.097080230712834],[103.60417938232433,17.092939376830998],[103.59803771972685,17.093469619750977],[103.58187866210932,17.099649429321403],[103.57933807373053,17.098859786987305],[103.5766220092774,17.089750289916992],[103.56443023681663,17.09120178222662],[103.56067657470732,17.084642410278263],[103.55159759521484,17.08663940429699],[103.54921722412138,17.0776309967041],[103.542709350586,17.076749801635742],[103.5372619628908,17.067630767822322],[103.53788757324219,17.06270027160639],[103.52905273437494,17.060211181640625],[103.52790069580072,17.057310104370117],[103.52272033691435,17.056980133056754],[103.51937103271484,17.050331115722713],[103.51365661621094,17.04692268371582],[103.51702117919916,17.038709640503043],[103.51352691650396,17.03507804870611],[103.52047729492205,17.03179168701172],[103.51766204833984,17.02470016479498],[103.52176666259794,16.997539520263672],[103.51714324951178,16.994430541992188],[103.51412963867216,16.98661994934082],[103.50833129882818,16.984952926635856],[103.50496673584013,16.973888397216797],[103.50100708007807,16.96846961975092],[103.4966201782226,16.968320846557674],[103.49800109863281,16.96199989318842],[103.49331665039068,16.95511054992687],[103.49546813964838,16.949781417846737],[103.48925018310547,16.9407196044923],[103.48960113525408,16.930839538574332],[103.49484252929693,16.92741012573248],[103.49577331542991,16.924291610717887],[103.4928131103515,16.91877174377447],[103.49362182617188,16.90587997436529],[103.49186706542986,16.90043067932129],[103.48591613769543,16.900789260864258],[103.48523712158203,16.895910263061467],[103.48121643066406,16.890850067138786],[103.48087310791021,16.885177612304744],[103.4770278930664,16.88182067871105],[103.47364807128929,16.884029388427678],[103.47233581542974,16.873180389404297],[103.46592712402361,16.87152290344244],[103.46218109130865,16.866859436035213],[103.45790863037104,16.865009307861328],[103.45378875732428,16.850120544433707],[103.44654846191412,16.8472194671632],[103.44596862792974,16.84190940856945],[103.45156860351591,16.83559036254877],[103.45153808593756,16.8319091796875],[103.4476394653322,16.825641632080192],[103.44406890869146,16.823129653930607],[103.44140625000023,16.816999435424805],[103.43736267089844,16.812580108642635],[103.42310333251976,16.80029106140148],[103.4159927368164,16.80360984802246],[103.41226959228544,16.80743026733404],[103.41819000244169,16.81474113464361],[103.42253875732428,16.815820693969783],[103.42539215087913,16.820051193237305],[103.41860961914057,16.8267498016358],[103.41835784912115,16.830310821533203],[103.41300201416021,16.83807182312023],[103.41123962402344,16.843851089477596],[103.41175079345697,16.848688125610295],[103.40290832519537,16.851089477539176],[103.41081237792986,16.857551574707088],[103.41419982910168,16.862091064453182],[103.41220092773443,16.868459701538086],[103.40808105468778,16.873210906982422],[103.40589141845703,16.881378173828182],[103.40026092529325,16.88540267944336],[103.3973922729495,16.893310546875],[103.3901977539062,16.897281646728572],[103.3829498291015,16.9038600921632],[103.3756027221682,16.90099906921398],[103.37252044677734,16.9021511077882],[103.3631591796875,16.912630081176758],[103.35404205322271,16.919240951538086],[103.34358215332037,16.922269821166992],[103.3320922851563,16.923311233520508],[103.31842803955107,16.922399520874137],[103.31317138671892,16.920618057250977],[103.30316925048857,16.92039108276373],[103.28913116455095,16.92386817932129],[103.28026580810553,16.93382072448742],[103.27478027343761,16.941701889038086],[103.26351928710949,16.94572067260748],[103.25695037841803,16.951490402221737],[103.25422668457048,16.9591903686524],[103.24797058105469,16.958240509033203],[103.24077606201178,16.959028244018498],[103.2351379394533,16.95656967163086],[103.23062133789068,16.956710815429744],[103.22548675537115,16.963970184326172],[103.22158050537104,16.965892791748047],[103.21485900878935,16.961990356445312],[103.21373748779308,16.957750320434684],[103.20613861083979,16.957029342651424],[103.20123291015625,16.947179794311637],[103.19886779785168,16.948770523071346],[103.19127655029314,16.948009490966854],[103.18705749511713,16.945760726928768],[103.18383789062517,16.949689865112248],[103.17764282226568,16.951089859008903],[103.17227935791038,16.948770523071346],[103.16617584228538,16.948841094970817],[103.16477966308611,16.945970535278263],[103.1573715209961,16.947589874267578],[103.15229034423857,16.947032928466797],[103.14933776855469,16.949930191040153],[103.14111328125017,16.953220367431754],[103.1257095336914,16.95729827880865],[103.12316894531244,16.96058082580572],[103.11672973632812,16.956268310546875],[103.11171722412104,16.939809799194336],[103.10492706298834,16.936599731445312],[103.10256958007807,16.926090240478572],[103.1004028320313,16.92350959777832],[103.10125732421892,16.911651611328125],[103.0953598022461,16.908590316772518],[103.08666992187506,16.898860931396598],[103.08232879638683,16.897359848022518],[103.07630920410156,16.900421142578182],[103.06725311279308,16.894050598144474],[103.0651931762697,16.890319824218807],[103.0539016723634,16.884431838989258],[103.04910278320341,16.886470794677848],[103.04203796386724,16.885339736938477],[103.03150939941412,16.878030776977653],[103.0282058715822,16.873500823974723],[103.01953887939482,16.86928749084467],[103.0131607055664,16.8689804077149],[103.01046752929705,16.864429473876953],[103.00534057617188,16.864339828491268],[103.00109863281244,16.868352890014705],[102.99698638916021,16.85881996154785],[102.99291992187517,16.855569839477482],[102.9829711914062,16.852270126342773],[102.97897338867182,16.84608078002924],[102.97219085693365,16.845951080322266],[102.96501159667997,16.84412002563488],[102.95474243164057,16.837970733642635],[102.9461975097658,16.83855056762701],[102.93815612792963,16.83667755126953],[102.93007659912115,16.837070465088004],[102.92369842529297,16.833288192749137],[102.91980743408232,16.833089828491268],[102.913871765137,16.8368301391601],[102.91246032714844,16.84185028076172],[102.9032974243164,16.84925079345703],[102.90052032470732,16.85704040527338],[102.89253997802746,16.86180114746088],[102.88848114013678,16.86578941345215],[102.88430023193365,16.873252868652287],[102.87744903564482,16.871288299560547],[102.87429046630876,16.879070281982365],[102.86515045166016,16.877910614013786],[102.86090850830072,16.881710052490348],[102.85585021972679,16.880380630493164],[102.85092926025419,16.875539779663086],[102.84995269775396,16.8714275360108],[102.84319305419939,16.870830535888786],[102.82557678222685,16.861780166626033],[102.82174682617216,16.867628097534293],[102.82404327392607,16.87092018127447],[102.81722259521479,16.881261825561523],[102.81243896484386,16.89139938354498],[102.8140716552735,16.8971004486084],[102.81373596191435,16.905000686645508],[102.81095123291033,16.91262054443365],[102.8177871704101,16.923360824584904],[102.82189178466803,16.93515968322754],[102.81568145751964,16.942739486694393],[102.81031799316435,16.944789886474666],[102.80650329589872,16.949350357055778],[102.80699157714844,16.955949783325195],[102.81558227539068,16.9619197845459],[102.82588195800787,16.966960906982536],[102.8255004882813,16.972171783447266],[102.81954193115251,16.972709655761776],[102.8190307617188,16.976610183715877],[102.81021881103516,16.982379913330135],[102.80329132080072,16.985359191894645],[102.80030822753906,16.990480422973633],[102.7998504638673,16.99681091308605],[102.79673004150413,17.004949569702262],[102.78971099853544,17.012821197509766],[102.78256225585938,17.01464080810547],[102.77863311767584,17.02009010314947],[102.76597595214844,17.023511886596623],[102.7621002197265,17.0308780670166],[102.75147247314453,17.039091110229606],[102.74671173095703,17.03824043273937],[102.73987579345709,17.04389953613287],[102.72628784179688,17.045480728149528],[102.7179794311524,17.05487060546875],[102.71877288818388,17.0612411499024],[102.71637725830078,17.07106971740734],[102.71167755126959,17.07675933837885],[102.71037292480497,17.08459091186529],[102.70656585693388,17.08716964721674],[102.70218658447277,17.086860656738395],[102.7003784179688,17.073490142822266],[102.70101928710966,17.069019317627067],[102.6972198486331,17.06443977355957],[102.69225311279325,17.062860488891715],[102.68859863281256,17.059070587158317],[102.68637084960932,17.053398132324276],[102.68184661865234,17.04798126220703],[102.67993927001953,17.043132781982422],[102.6809692382813,17.037200927734432],[102.67887115478521,17.03140068054205],[102.68190765380882,17.025711059570312],[102.67955780029297,17.01920127868658],[102.6809692382813,17.010549545288086],[102.6773071289063,17.00126266479498],[102.67066955566412,16.99118995666504],[102.663627624512,16.99518966674816],[102.6572494506836,16.996080398559684],[102.64444732666033,17.000759124755803],[102.62792968750023,17.013330459594727],[102.60666656494158,17.026840209960938],[102.57565307617193,17.040561676025447],[102.56735229492182,17.04824066162115],[102.55294799804693,17.05842018127447],[102.54727172851568,17.063230514526367],[102.538818359375,17.072929382324332],[102.52442169189464,17.094240188598633],[102.51828765869169,17.107000350952262],[102.51410675048857,17.11799812316906],[102.50971221923857,17.1352996826173],[102.50263977050787,17.153451919555778],[102.49684143066406,17.158609390258903],[102.49302673339844,17.16579818725586],[102.48501586914062,17.176919937133903],[102.47544097900408,17.199630737304688],[102.48793792724615,17.20341110229498],[102.4980392456057,17.205457687377873],[102.50708007812494,17.205659866333065],[102.51442718505865,17.20719146728527],[102.52320098876959,17.20742988586437],[102.53279876709013,17.210742950439567],[102.54741668701178,17.218231201171932],[102.55223846435575,17.22205162048334],[102.57134246826183,17.22860908508312],[102.57492065429693,17.22817993164074],[102.58094787597656,17.23410034179699],[102.58233642578148,17.238180160522518],[102.59233856201166,17.249660491943303],[102.59342193603521,17.257831573486442],[102.59635925292963,17.262470245361328],[102.59481048583996,17.2654705047608],[102.58451843261713,17.27049064636242],[102.58051300048822,17.267078399658203],[102.57373046875006,17.26811981201172],[102.56658172607433,17.267129898071403],[102.56050872802751,17.26894760131836],[102.55377197265653,17.273691177368164],[102.54257202148432,17.273559570312614],[102.52860260009794,17.27746963500988],[102.52265930175787,17.281780242919922],[102.51013946533197,17.28566932678217],[102.4893875122072,17.281448364257812],[102.47303009033209,17.28409957885748],[102.46044158935553,17.27973175048828],[102.44931030273455,17.27786064147955],[102.44145965576183,17.280099868774528],[102.44330596923834,17.290889739990234],[102.4430084228515,17.31080818176281],[102.44448089599638,17.32380867004389],[102.44042968750023,17.337450027465877],[102.43305969238293,17.352279663085994],[102.43132019042997,17.35997009277355],[102.41844177246094,17.384790420532283],[102.4125900268557,17.39451980590826],[102.40651702880888,17.40230941772461],[102.396957397461,17.42233276367199],[102.3877029418947,17.450429916381836],[102.38356018066406,17.465078353881836],[102.37776947021479,17.479480743408317],[102.37419891357422,17.49061012268072],[102.36949920654303,17.500600814819336],[102.36128234863304,17.515501022338924],[102.35089874267595,17.52753829956066],[102.34456634521496,17.538730621337947],[102.33606719970703,17.54731941223156],[102.33474731445318,17.551500320434684],[102.33638000488276,17.56818008422863],[102.33580017089838,17.5764617919923],[102.32837677001947,17.591739654541072],[102.3285522460937,17.602830886840934],[102.3260116577149,17.624851226806584],[102.32173919677734,17.64372062683117],[102.32135772705078,17.660440444946403],[102.31987762451178,17.676670074463004],[102.30178833007818,17.67242050170904],[102.28292846679716,17.671100616455135],[102.27812957763678,17.66554069519043],[102.2725677490235,17.664840698242188],[102.26844024658232,17.65958976745617],[102.26464843750011,17.658260345458984],[102.24961090087908,17.663690567016715],[102.24413299560547,17.663471221923885],[102.23412322998058,17.660400390625114],[102.22013092041038,17.658340454101562],[102.20526885986334,17.65941810607916],[102.18708038330078,17.665340423583984],[102.18003845214844,17.664539337158203],[102.17459869384794,17.660419464111385],[102.16757202148432,17.660631179809684],[102.16467285156278,17.663490295410156],[102.1506958007813,17.66136169433588],[102.14396667480486,17.656490325927848],[102.14102172851591,17.648250579834098],[102.13346862792986,17.645219802856445],[102.13468170166038,17.6409912109375],[102.13067626953148,17.63399124145502],[102.12201690673845,17.63141059875494],[102.11155700683594,17.63709068298334],[102.10555267334013,17.64501953125],[102.10102844238298,17.643739700317383],[102.08677673339844,17.633941650390625],[102.0791625976563,17.64479255676281],[102.07241058349604,17.64421081542963],[102.06661987304693,17.6519393920899],[102.05982208251947,17.655849456787166],[102.05484008789074,17.652168273925895],[102.046142578125,17.64829826354992],[102.0399017333985,17.649169921874943],[102.0320892333985,17.65574073791504],[102.03865051269526,17.657712936401367],[102.03089141845703,17.66807174682623],[102.02770996093756,17.677951812744197],[102.02812194824247,17.686470031738338],[102.02649688720703,17.708040237426815],[102.02358245849604,17.718460083007812],[102.02332305908209,17.730100631713924],[102.01824188232416,17.744979858398438],[102.01898193359386,17.75045967102062],[102.0241012573245,17.753330230712947],[102.0246200561524,17.763219833374023],[102.02968597412104,17.77248001098627],[102.02945709228544,17.780210494995117],[102.03102874755876,17.78310966491705],[102.0416717529298,17.78289031982422],[102.04666137695307,17.786962509155387],[102.04225921630854,17.793119430541935],[102.04096221923845,17.7987117767334],[102.03762817382818,17.80359840393072],[102.04876708984392,17.81709289550787],[102.05227661132818,17.83133125305187],[102.05016326904303,17.836679458618278],[102.05314636230463,17.84608840942377],[102.05020904541021,17.852039337158203],[102.05293273925793,17.866460800170955],[102.05116271972662,17.87200164794922],[102.04286956787126,17.88111114501953],[102.04009246826178,17.882520675659293],[102.04228210449236,17.888389587402344],[102.04228210449236,17.89466094970703],[102.03925323486345,17.90648269653326],[102.03415679931646,17.921360015869197],[102.03562164306658,17.92411994934082],[102.03360748291021,17.929540634155273],[102.03099822998058,17.943750381469727],[102.02645111084001,17.953308105468807],[102.02587890625017,17.962169647216854],[102.02838897705078,17.965419769287166],[102.02765655517584,17.973819732666072],[102.0206222534182,17.98040962219244],[102.02905273437528,17.989080429077205],[102.03972625732428,17.98905944824213],[102.04281616210949,17.9915008544923],[102.04096984863298,17.99929046630865],[102.0428771972658,18.01444816589361],[102.0412292480471,18.02001953125],[102.04605102539091,18.022481918335018],[102.05262756347656,18.031061172485295],[102.0566177368164,18.033391952514762],[102.0564575195313,18.050060272216797],[102.05829620361322,18.055149078369084],[102.05818176269537,18.0677108764649],[102.0561904907226,18.075920104980526],[102.05802154541021,18.08291053771984],[102.0709228515625,18.074079513549748],[102.07768249511724,18.062160491943473],[102.0873107910158,18.056079864502067],[102.09265136718767,18.05462074279791],[102.09442901611334,18.05764007568365],[102.10913085937523,18.060260772705192],[102.11427307128929,18.048101425171012],[102.11361694335955,18.042358398437557],[102.1055297851563,18.029939651489258],[102.10907745361328,18.023590087890625],[102.12200164794916,18.028562545776424],[102.12721252441406,18.03224945068365],[102.13661956787115,18.033399581909293],[102.1451416015625,18.032001495361385],[102.144828796387,18.02205085754406],[102.14288330078148,18.019010543823242],[102.14125823974604,18.006130218505803],[102.14694976806669,17.99978065490717],[102.14807128906278,17.993259429931697],[102.15666198730497,17.986831665039062],[102.16044616699224,17.987619400024414],[102.1653976440432,17.99958038330078],[102.17459869384794,18.015649795532227],[102.17807006835932,18.016010284423942],[102.18454742431635,18.011539459228572],[102.1891860961914,18.0108585357666],[102.20519256591814,18.019950866699162],[102.20672607421875,18.017721176147518],[102.20379638671886,18.010540008544922],[102.2057876586914,18.00687980651867],[102.21684265136719,18.003351211547965],[102.22315216064453,18.005790710449332],[102.22888183593756,18.004159927368107],[102.24044799804682,17.998809814453125],[102.24530792236351,17.9914493560791],[102.26325988769537,17.982299804687557],[102.26934051513695,17.98134994506836],[102.27549743652372,17.978229522705192],[102.28256225585966,17.980970382690543],[102.28308868408209,17.987480163574332],[102.2869415283206,17.989490509033317],[102.29312896728516,17.983600616455192],[102.29521942138689,17.979249954223633],[102.29530334472662,17.971689224243278],[102.2998886108399,17.964460372924805],[102.29994964599604,17.96074104309082],[102.31182861328125,17.94559288024908],[102.31844329833979,17.94178962707514],[102.3249588012697,17.93470954895031],[102.33718872070312,17.93219184875494],[102.34372711181663,17.928831100463924],[102.34648895263666,17.924890518188477],[102.35202789306635,17.92210006713873],[102.35903930664091,17.923719406128043],[102.36012268066412,17.916730880737305],[102.3675308227539,17.915220260620117],[102.36866760253906,17.91188049316412],[102.36647796630888,17.905759811401424],[102.37169647216814,17.904117584228516],[102.37940216064476,17.899150848388672],[102.3822021484375,17.89496040344244],[102.3893585205081,17.896049499511776],[102.39182281494146,17.88959121704096],[102.39743041992205,17.88235092163086],[102.40290069580107,17.87298965454096],[102.40001678466803,17.86520004272461],[102.40497589111334,17.853540420532227],[102.40148162841797,17.84299278259283],[102.40756225585955,17.841011047363395],[102.41259765625006,17.83530807495123],[102.41172027587885,17.832540512085018],[102.42507171630854,17.81995010375988],[102.43000030517607,17.817329406738338],[102.43495941162138,17.81963920593256],[102.44371032714872,17.81802940368658],[102.43357086181663,17.806079864501953],[102.43279266357428,17.79978942871105],[102.4347457885745,17.796150207519588],[102.43508148193365,17.78773117065424],[102.44197082519537,17.781980514526424],[102.43953704834013,17.77567100524908],[102.4424209594726,17.765422821044865],[102.4466018676759,17.765832901001033],[102.45155334472685,17.769371032714844],[102.45429992675781,17.766799926757926],[102.45498657226591,17.7592010498048],[102.46623229980497,17.75497055053711],[102.47032928466797,17.751052856445312],[102.48750305175781,17.754051208496207],[102.4942474365235,17.75383949279791],[102.49968719482439,17.757650375366154],[102.5029525756836,17.755371093750114],[102.51407623291021,17.759580612182617],[102.5269775390625,17.760852813720703],[102.5353164672851,17.75714111328125],[102.54026794433588,17.750650405883903],[102.53961944580101,17.74331283569336],[102.54596710205107,17.737119674682674],[102.57779693603544,17.712810516357422],[102.57788085937517,17.710300445556584],[102.58986663818354,17.700300216674805],[102.60383605957031,17.693510055542106],[102.6161422729495,17.684850692749023],[102.61080932617216,17.680099487304688],[102.60739135742199,17.68071937561035],[102.60382843017595,17.676639556884822],[102.60057830810564,17.6767196655274],[102.59732818603533,17.670679092407283],[102.60166931152355,17.654689788818416],[102.60404205322266,17.65064048767084],[102.60352325439459,17.634599685669002],[102.59879302978544,17.626510620117188],[102.59963989257812,17.620399475097656],[102.60893249511713,17.623689651489258],[102.6304321289063,17.61931037902832],[102.64830780029303,17.61272048950201],[102.65132904052734,17.601160049438477],[102.64924621582031,17.596321105956974],[102.65032196044916,17.59129905700695],[102.66570281982428,17.592121124267635],[102.67044830322271,17.594280242920036],[102.67613983154297,17.603961944580135],[102.68971252441412,17.60872077941906],[102.69467163085943,17.617090225219783],[102.70041656494146,17.617631912231502],[102.71460723876947,17.604209899902344],[102.71949005126959,17.602540969848633],[102.73445892334001,17.602109909057674],[102.74002075195312,17.615159988403377],[102.74324035644548,17.61815071105957],[102.7476577758789,17.61432266235363],[102.75116729736334,17.617401123046932],[102.75660705566423,17.618339538574276],[102.76825714111328,17.617460250854435],[102.76959228515625,17.620889663696346],[102.76570129394543,17.629671096801815],[102.76535797119158,17.635910034179744],[102.76226806640636,17.6389675140382],[102.76708984375017,17.643100738525504],[102.77062988281278,17.642208099365178],[102.77613830566412,17.64480018615734],[102.77881622314459,17.653181076049805],[102.77681732177751,17.6614093780517],[102.78217315673828,17.667530059814567],[102.78276824951172,17.671340942382812],[102.787582397461,17.680339813232365],[102.79122924804716,17.680009841919002],[102.79635620117193,17.683250427246207],[102.80516052246122,17.68197059631359],[102.81777954101574,17.684120178222656],[102.83226013183622,17.69094276428234],[102.83867645263678,17.703100204467717],[102.83577728271484,17.71244049072277],[102.84786987304693,17.718200683593693],[102.84771728515636,17.720609664917106],[102.85289764404291,17.726039886474666],[102.85272216796892,17.734170913696346],[102.84574127197288,17.74101066589367],[102.84847259521513,17.746259689331055],[102.85272216796892,17.74777984619135],[102.85067749023443,17.757431030273494],[102.85436248779325,17.762662887573242],[102.85576629638689,17.768920898437614],[102.85354614257818,17.774980545044002],[102.84803771972679,17.77683067321783],[102.85238647460938,17.783390045166016],[102.84200286865246,17.78980255126953],[102.84654235839872,17.80063056945812],[102.84422302246116,17.80290985107422],[102.83860015869158,17.801261901855526],[102.8343887329101,17.805509567260685],[102.84291839599638,17.809640884399414],[102.83933258056652,17.8161296844483],[102.83995819091814,17.818889617919922],[102.84584808349626,17.821540832519645],[102.85402679443354,17.8224716186524],[102.84810638427746,17.832958221435547],[102.85352325439453,17.835601806640682],[102.85881805419939,17.835990905761776],[102.8678588867188,17.841079711914062],[102.87184143066406,17.840908050537223],[102.86898040771484,17.851760864257812],[102.87715148925798,17.853771209716797],[102.87548065185553,17.859519958496207],[102.87753295898455,17.86873054504406],[102.87146759033209,17.871942520141715],[102.87346649169933,17.88359832763672],[102.88742828369158,17.894098281860465],[102.8947677612307,17.892602920532227],[102.89438629150413,17.887300491333008],[102.90233612060547,17.883699417114315],[102.90451812744146,17.885620117187614],[102.91320037841814,17.886592864990234],[102.9215469360351,17.885751724243164],[102.92466735839844,17.888460159301758],[102.93123626709013,17.88829040527355],[102.93193817138678,17.883871078491325],[102.93579101562506,17.878120422363338],[102.94579315185564,17.866460800170955],[102.94668579101591,17.858560562133846],[102.95883941650396,17.850879669189453],[102.96080017089872,17.847059249878043],[102.96241760253906,17.8375701904298],[102.9623489379884,17.82943916320812],[102.96570587158209,17.823699951171875],[102.97303009033214,17.819150924682674],[102.97809600830084,17.820249557495117],[102.9853286743164,17.82708930969244],[102.98616790771513,17.833271026611442],[102.99153900146496,17.84037971496582],[102.99526977539068,17.84206962585455],[102.99698638916021,17.848979949951172],[103.001708984375,17.854280471801758],[103.01022338867199,17.857660293579215],[103.01358795166038,17.861589431762752],[103.01194763183605,17.867851257324276],[103.01609039306646,17.873399734497127],[103.02659606933622,17.875049591064567],[103.03270721435575,17.872711181640568],[103.04007720947271,17.874811172485465],[103.04284667968761,17.88233947753912],[103.03925323486345,17.887390136718693],[103.04380798339838,17.889789581298828],[103.04770660400396,17.882030487060604],[103.05600738525402,17.87590980529791],[103.0623168945312,17.874189376830998],[103.06800079345732,17.87536048889166],[103.08065032959001,17.88111114501953],[103.08406066894526,17.877559661865178],[103.08451080322266,17.87206840515148],[103.08866119384783,17.87298965454096],[103.0960083007813,17.864810943603516],[103.10198211669916,17.867620468139705],[103.10347747802763,17.857879638671875],[103.10758972167969,17.853771209716797],[103.111068725586,17.859449386596793],[103.11540222167969,17.859420776367188],[103.1189422607423,17.848131179809684],[103.1297225952149,17.841741561889762],[103.13095855712902,17.83568954467779],[103.1255722045899,17.83000946044922],[103.13430023193365,17.824569702148494],[103.14241027832043,17.81071090698248],[103.1471481323245,17.80953979492199],[103.15116882324247,17.801601409912223],[103.15767669677729,17.80451965332037],[103.16066741943365,17.803342819213924],[103.16738891601574,17.805370330810604],[103.1701431274414,17.81163978576666],[103.1690521240235,17.815338134765625],[103.1709594726563,17.8278102874757],[103.1741027832033,17.82808113098156],[103.17558288574247,17.83534049987793],[103.17296600341814,17.83802986145014],[103.17558288574247,17.843210220336914],[103.18090057373075,17.849309921264705],[103.17806243896513,17.85081291198736],[103.18107604980474,17.856529235839844],[103.18480682373064,17.85704040527355],[103.18876647949213,17.864440917968807],[103.19526672363276,17.86688041687023],[103.20139312744158,17.864620208740234],[103.21013641357416,17.871389389038086],[103.21578979492193,17.872369766235295],[103.22100067138666,17.875850677490178],[103.22795867919928,17.884130477905273],[103.23793792724638,17.884042739868164],[103.24401092529303,17.887002944946403],[103.25422668457048,17.876771926879883],[103.2590103149414,17.87337112426752],[103.26728820800787,17.854640960693473],[103.27259063720709,17.84724807739252],[103.28148651123064,17.839500427246207],[103.28734588623075,17.836309432983455],[103.29714202880876,17.827249526977596],[103.30724334716814,17.82637977600109],[103.31427764892572,17.839050292968807],[103.31195831298857,17.849750518798828],[103.3052368164063,17.859519958496207],[103.30432128906278,17.865890502929688],[103.31836700439459,17.86992073059082],[103.32820892333979,17.87823104858404],[103.33680725097673,17.882627487182617],[103.3402404785158,17.881160736084098],[103.34378051757818,17.875989913940487],[103.35009765625028,17.87471008300787],[103.36995697021496,17.87924766540533],[103.38214111328153,17.88508033752447],[103.39714813232428,17.895799636840934],[103.40276336669933,17.90266990661621]]]},"properties":{"ID_0":228,"ISO":"TH-41","NAME_0":"Thailand","ID_1":73,"NAME_1":"Udon Thani","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"อุดรธานี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.10334014892584,15.416589736938533],[100.09493255615234,15.414270401001033],[100.09069824218767,15.41145133972168],[100.0881958007812,15.406881332397461],[100.0893783569336,15.39659118652338],[100.09542083740246,15.388750076294002],[100.10434722900419,15.381800651550293],[100.10601043701178,15.373970031738338],[100.10131835937528,15.371930122375488],[100.09423828125028,15.373991012573356],[100.08447265625023,15.37904071807867],[100.07756042480469,15.376270294189396],[100.0755004882813,15.372640609741325],[100.07634735107433,15.366470336914062],[100.07958221435558,15.363080024719352],[100.09529876708984,15.352919578552246],[100.10058593749994,15.345589637756404],[100.10060119628923,15.336041450500431],[100.09784698486334,15.330809593200684],[100.09288024902366,15.326370239257926],[100.08493804931652,15.322319984436092],[100.07962799072283,15.31791019439703],[100.07826232910168,15.313931465148869],[100.08069610595732,15.304381370544547],[100.07885742187517,15.295271873474064],[100.07572174072271,15.291300773620662],[100.06606292724604,15.286170959472656],[100.05921936035173,15.27781963348383],[100.05451965332037,15.279411315918026],[100.05502319335955,15.286831855773869],[100.04902648925787,15.288610458374023],[100.04161071777372,15.294481277465877],[100.03932952880888,15.292059898376465],[100.02504730224621,15.289529800415096],[100.01708984375,15.292671203613281],[100.01214599609375,15.298589706420955],[100.0057067871096,15.300219535827694],[99.99703216552751,15.298851966857967],[99.98355865478521,15.300662040710563],[99.97434997558611,15.298078536987418],[99.96599578857422,15.298110961914176],[99.9581527709961,15.304080009460506],[99.95027923583996,15.301751136779842],[99.94055938720697,15.300301551818848],[99.93750762939447,15.301060676574764],[99.93065643310564,15.297060966491813],[99.92864227294945,15.298430442810115],[99.9186782836914,15.297760009765739],[99.90643310546892,15.292961120605582],[99.90065765380888,15.29275989532465],[99.893310546875,15.289919853210506],[99.89095306396496,15.290701866149846],[99.88466644287121,15.286170959472656],[99.8787918090822,15.291541099548397],[99.87911987304699,15.298310279846248],[99.8764190673831,15.302001953125],[99.87004852294922,15.30426120758068],[99.86512756347679,15.303530693054313],[99.85753631591825,15.305170059204158],[99.85173034667969,15.31017017364502],[99.8451461791995,15.307761192321834],[99.83499145507835,15.30846118927002],[99.83267211914062,15.310091018676758],[99.817855834961,15.312911987304688],[99.80928802490263,15.31636047363287],[99.78884124755882,15.317021369934082],[99.78296661376982,15.310470581054744],[99.77912902832037,15.309700965881348],[99.77426910400408,15.30338096618658],[99.7553024291995,15.29413032531744],[99.75215148925798,15.29559135437023],[99.74217224121105,15.292851448059139],[99.73676300048851,15.290019989013786],[99.7220230102539,15.276861190795955],[99.72171783447271,15.267730712890682],[99.72660827636719,15.262889862060604],[99.72223663330078,15.256881713867244],[99.73265838623041,15.24446105957037],[99.72422790527372,15.237340927124023],[99.72226715087913,15.23109054565441],[99.72409057617205,15.221890449523983],[99.73072814941418,15.209589958190918],[99.74668121337913,15.188339233398438],[99.75126647949241,15.186351776123047],[99.76058959960943,15.173842430114746],[99.74887847900385,15.163031578064022],[99.76193237304693,15.150439262390137],[99.76747131347679,15.142661094665641],[99.77536010742199,15.13621997833252],[99.77967834472679,15.127340316772518],[99.78569793701189,15.122980117797852],[99.79210662841803,15.115369796753043],[99.79662322998047,15.107911109924373],[99.803466796875,15.100079536438102],[99.80708312988298,15.09331130981451],[99.8015975952149,15.088390350341854],[99.79609680175804,15.080970764160156],[99.79020690917997,15.070911407470646],[99.77745056152372,15.059250831604004],[99.77388000488298,15.054570198059082],[99.78253936767601,15.047209739685115],[99.78497314453125,15.04122066497797],[99.78246307373064,15.033129692077637],[99.77638244628906,15.028910636901799],[99.77909851074224,15.02457046508789],[99.76808929443388,15.021289825439567],[99.76180267334013,15.017870903015137],[99.75492095947294,15.011181831359977],[99.74588012695312,15.005599975585938],[99.73056793212885,15.0007905960083],[99.72902679443371,14.992972373962346],[99.72458648681646,14.987669944763184],[99.72393798828125,14.977601051330566],[99.71694183349632,14.976152420044002],[99.71315765380888,14.980441093444938],[99.70375061035162,14.974431037902832],[99.69898986816412,14.973230361938477],[99.69510650634783,14.975401878357047],[99.69087219238293,14.973899841308707],[99.68345642089838,14.976210594177246],[99.67907714843767,14.980521202087516],[99.66992187500017,14.980001449584961],[99.66095733642595,14.987510681152344],[99.65473175048834,14.98840045928955],[99.64628601074236,14.986761093139705],[99.63909149169928,14.988640785217285],[99.63289642333996,14.987592697143498],[99.62793731689464,14.977389335632438],[99.63401794433622,14.96897029876709],[99.63278961181646,14.95116138458252],[99.63372802734375,14.940589904785156],[99.63185882568382,14.938320159912223],[99.62171936035156,14.942211151123047],[99.61299133300804,14.943311691284293],[99.60392761230486,14.94685077667242],[99.58863067626964,14.945009231567383],[99.58184814453125,14.948900222778377],[99.5769805908206,14.954331398010254],[99.57430267334013,14.954120635986442],[99.56179046630876,14.9620618820191],[99.54969787597685,14.962361335754508],[99.53240966796892,14.967989921569881],[99.53208160400396,14.974970817565918],[99.52471923828153,14.980219841003475],[99.51390075683611,14.981582641601562],[99.50736999511747,14.984450340270996],[99.49781036376982,14.982700347900447],[99.49098968505871,14.983399391174373],[99.48329925537115,14.988620758056697],[99.47795867919928,14.987130165100098],[99.47348022460955,14.988691329956168],[99.4511184692384,14.986841201782283],[99.4452285766601,14.982689857483024],[99.44075012207054,14.984860420227164],[99.43543243408209,14.995941162109432],[99.42885589599626,15.002241134643668],[99.42748260498041,15.010479927062988],[99.42278289794922,15.025079727172795],[99.41941833496122,15.029170989990234],[99.41786956787132,15.038542747497502],[99.42205047607445,15.04498100280773],[99.41744232177734,15.048629760742301],[99.41326141357428,15.045769691467342],[99.40403747558611,15.043901443481502],[99.39572906494163,15.048771858215446],[99.38646697998058,15.046879768371696],[99.382621765137,15.049920082092285],[99.37145233154297,15.049241065979118],[99.3661804199221,15.0476713180542],[99.35691833496088,15.054880142211914],[99.35790252685564,15.057781219482422],[99.34963226318388,15.06980133056652],[99.34500122070335,15.07267093658453],[99.34085083007841,15.079320907592887],[99.3352890014649,15.080829620361271],[99.32981872558605,15.078079223632812],[99.32064819335949,15.079751968383846],[99.3224182128908,15.072520256042537],[99.32026672363293,15.068289756775016],[99.31439971923845,15.06711196899414],[99.3125610351563,15.06245136260992],[99.30651092529325,15.061070442199707],[99.29959106445318,15.047860145568904],[99.30235290527355,15.043340682983398],[99.29733276367193,15.035677909851131],[99.30808258056635,15.02406120300293],[99.3030624389649,15.01892185211193],[99.30233001709013,15.01333999633789],[99.29595184326178,15.008720397949276],[99.28559875488298,15.005709648132324],[99.28543090820312,14.993350028991756],[99.28353881835938,14.99594974517828],[99.27861022949224,14.990262031555176],[99.27523803710966,14.989050865173397],[99.26251220703142,14.990058898925838],[99.25695037841808,14.986680984497127],[99.25128173828142,14.995321273803768],[99.25115203857445,14.997700691223145],[99.23367309570324,15.011261940002498],[99.22865295410179,15.00957107543951],[99.21984863281256,15.012209892273006],[99.21257019042969,15.011521339416447],[99.20465087890653,15.013021469116211],[99.19188690185575,15.025678634643612],[99.18495178222662,15.018441200256348],[99.18041992187506,15.015919685363826],[99.16873931884771,15.01312065124523],[99.15756225585966,15.017550468444881],[99.15718841552746,15.021870613098258],[99.14994049072277,15.0225706100465],[99.14601135253906,15.025951385498047],[99.14319610595726,15.034079551696834],[99.13622283935558,15.03712081909191],[99.14145660400396,15.044150352478027],[99.14762115478544,15.046110153198356],[99.14306640625028,15.05076980590826],[99.13136291503912,15.048450469970703],[99.12577819824236,15.049990653991756],[99.12001037597668,15.05379867553711],[99.11532592773443,15.044441223144645],[99.1115112304688,15.046230316162166],[99.10056304931635,15.04171085357666],[99.09391784667986,15.041240692138729],[99.0875701904298,15.03816890716547],[99.07804107666027,15.037760734558105],[99.06716918945324,15.046401023864746],[99.05725860595714,15.042901039123592],[99.04995727539068,15.042209625244197],[99.03914642333979,15.04857063293457],[99.03282928466808,15.04749965667736],[99.0283432006836,15.049058914184684],[99.02561187744135,15.053671836853027],[99.01985931396496,15.05624008178711],[99.01344299316406,15.062790870666618],[99.01072692871088,15.068599700927848],[99.00199890136719,15.071749687194881],[99.01100921630865,15.08653926849371],[99.00853729248053,15.095199584961051],[99.00434875488304,15.102119445800781],[98.99904632568388,15.105290412902832],[99.00170135498053,15.118330955505371],[99.00200653076172,15.137420654296875],[99.00728607177746,15.144119262695312],[99.00422668457043,15.148921012878418],[99.00250244140636,15.160750389099178],[98.99994659423834,15.163910865783635],[98.99449157714855,15.164510726928768],[98.993637084961,15.169190406799373],[98.98995208740251,15.175750732421875],[98.98461151123064,15.180560111999455],[98.98744201660168,15.18458080291748],[98.99214172363304,15.1854505538941],[98.99508666992182,15.182411193847656],[99.00055694580084,15.18211936950695],[99.00296783447266,15.190810203552246],[99.00611114501982,15.197540283203182],[99.00588989257818,15.20143032073969],[99.0095672607423,15.206630706787166],[99.00640106201172,15.213120460510197],[99.00570678710943,15.218961715698185],[99.00753021240234,15.228041648864803],[99.00955200195341,15.230140686035156],[99.00681304931646,15.2378511428833],[99.01255798339866,15.242849349975586],[99.01976013183594,15.24446964263916],[99.02114868164068,15.252270698547477],[99.02030181884783,15.25852108001709],[99.0168533325197,15.26291942596447],[99.02165222167969,15.268081665039062],[99.02536773681669,15.277791023254451],[99.0295333862307,15.282120704650993],[99.03882598876953,15.286191940307674],[99.03849029541038,15.296469688415527],[99.03272247314453,15.297721862793026],[99.03163146972679,15.309969902038631],[99.03338623046903,15.315899848937988],[99.0313186645509,15.326391220092773],[99.03311157226562,15.329339981079102],[99.03172302246111,15.33520889282238],[99.03436279296886,15.339501380920467],[99.0439682006836,15.344101905822868],[99.04431152343767,15.35093021392828],[99.04724121093756,15.357589721679744],[99.04766082763678,15.362840652465934],[99.04570007324219,15.367268562316951],[99.04617309570341,15.374181747436637],[99.05055236816435,15.380700111389217],[99.05567169189459,15.380821228027344],[99.05993652343744,15.393880844116211],[99.06462860107445,15.391350746154842],[99.06974029541021,15.394520759582576],[99.06781005859375,15.400719642639217],[99.06925201416044,15.414679527282658],[99.06516265869146,15.424920082092342],[99.06298065185558,15.435331344604549],[99.05738830566412,15.440090179443416],[99.06027984619169,15.45300102233881],[99.05932617187528,15.458400726318416],[99.0660705566408,15.461839675903434],[99.06395721435564,15.467580795288143],[99.06526184082043,15.4726819992066],[99.07158660888689,15.478911399841422],[99.07521820068376,15.48425102233898],[99.0764923095706,15.489912033081112],[99.07984161376953,15.495969772338867],[99.07936859130871,15.499560356140194],[99.07488250732422,15.509391784668026],[99.06115722656256,15.518561363220272],[99.05731964111328,15.52256965637207],[99.05517578124994,15.529402732849178],[99.05574798583979,15.538379669189567],[99.05217742919922,15.543880462646598],[99.04924774169933,15.55217075347906],[99.05245971679716,15.562239646911678],[99.06212615966803,15.566710472106934],[99.0672378540039,15.566720962524528],[99.07544708251953,15.572850227356014],[99.08557891845709,15.578168869018555],[99.09519958496105,15.580890655517692],[99.09255218505854,15.590129852294922],[99.09599304199213,15.596860885620117],[99.09834289550781,15.610342025756779],[99.10811614990257,15.61505031585699],[99.10997772216797,15.622359275817985],[99.11437225341803,15.627791404724121],[99.11663818359375,15.634571075439453],[99.11801910400413,15.644439697265682],[99.11300659179688,15.647361755371207],[99.11678314208979,15.66187953948969],[99.11437225341803,15.667390823364315],[99.1148223876956,15.672809600830192],[99.11743164062506,15.674419403076172],[99.11923217773449,15.683280944824219],[99.1265029907226,15.692879676818848],[99.12751007080078,15.698471069336051],[99.13136291503912,15.705121994018668],[99.12848663330084,15.71139240264904],[99.13134765625006,15.716909408569393],[99.13092803955095,15.72101020812994],[99.13948822021501,15.732929229736442],[99.13613891601585,15.736631393432617],[99.1355590820313,15.743050575256348],[99.13220977783214,15.749191284179744],[99.13092803955095,15.758700370788574],[99.12851715087913,15.765110969543514],[99.12860870361322,15.772139549255371],[99.13591766357422,15.78639125823986],[99.13655853271513,15.792450904846191],[99.13626861572283,15.795410156249943],[99.14887237548828,15.794421195983944],[99.15148162841808,15.791160583496207],[99.1589431762697,15.791220664978027],[99.16491699218756,15.788400650024357],[99.16586303710938,15.776801109314022],[99.16832733154297,15.77616024017334],[99.17620086669945,15.780989646911678],[99.18518829345709,15.78026008605957],[99.19554901123041,15.775691032409668],[99.20626068115251,15.76449108123785],[99.21714019775408,15.764771461486816],[99.22054290771479,15.760190010070914],[99.22611236572266,15.75714111328125],[99.23020172119146,15.746710777282829],[99.23522186279291,15.747659683227596],[99.24131774902355,15.739939689636344],[99.24167633056669,15.732320785522518],[99.24887847900413,15.72045993804943],[99.2535705566408,15.718461990356445],[99.26893615722685,15.717511177062931],[99.27731323242193,15.71532058715826],[99.28420257568388,15.705821037292594],[99.2884063720706,15.703480720520076],[99.28864288330095,15.697018623352108],[99.29673004150396,15.692159652710075],[99.31352996826195,15.692449569702205],[99.32005310058622,15.687561035156307],[99.32612609863304,15.689781188964844],[99.3339233398438,15.689701080322266],[99.34098052978521,15.683399200439453],[99.34519195556663,15.683500289917049],[99.35540771484392,15.679330825805664],[99.36015319824213,15.675481796264705],[99.3635864257812,15.667591094970703],[99.36927032470732,15.66244029998785],[99.37001037597662,15.656430244445914],[99.3675918579101,15.651689529418945],[99.3716125488283,15.64142036437994],[99.37634277343761,15.634810447692871],[99.37509155273438,15.630151748657227],[99.37931060791021,15.623700141906738],[99.39083862304699,15.623689651489315],[99.40148925781278,15.619380950927791],[99.40609741210949,15.61571979522705],[99.413070678711,15.613739967346248],[99.42193603515636,15.613000869751033],[99.42823791503918,15.606841087341365],[99.42675781250017,15.604497909545898],[99.43416595458979,15.600650787353572],[99.4350280761721,15.598469734192008],[99.44207000732428,15.595570564270076],[99.44396972656256,15.591311454773006],[99.45111083984386,15.588712692260799],[99.4543075561524,15.581049919128532],[99.45699310302763,15.580769538879338],[99.46553802490257,15.586469650268668],[99.4692687988283,15.582611083984375],[99.47107696533226,15.565740585327148],[99.47257232666021,15.562801361083928],[99.47956085205072,15.562481880187988],[99.48745727539068,15.566390991210938],[99.4955520629884,15.568570137023926],[99.50521087646507,15.561160087585506],[99.51438140869163,15.56156063079834],[99.5231323242188,15.567509651184139],[99.52761077880871,15.572240829467773],[99.53247070312506,15.572440147399902],[99.5425872802735,15.581669807434196],[99.5505599975586,15.587351799011344],[99.56665802001959,15.592799186706543],[99.57215118408209,15.600709915161076],[99.57373809814482,15.606451034545955],[99.58109283447266,15.6117200851441],[99.58699035644531,15.619421958923397],[99.59175109863281,15.622249603271541],[99.5963363647461,15.628070831298828],[99.60485076904308,15.630371093750114],[99.61013031005882,15.633559226989803],[99.62078094482428,15.635161399841252],[99.62925720214855,15.639451026916504],[99.63468170166016,15.644831657409668],[99.64643859863293,15.652409553527889],[99.6575088500976,15.66279125213623],[99.66127777099638,15.669122695922908],[99.6705322265625,15.669429779052678],[99.68469238281273,15.675930976867619],[99.68649291992199,15.678000450134334],[99.69896697998047,15.682059288025016],[99.70674133300798,15.685981750488281],[99.72174835205107,15.68224143981945],[99.73078918457048,15.68812179565424],[99.73811340332054,15.686309814453068],[99.74594879150396,15.678230285644588],[99.75380706787121,15.674580574035758],[99.7596206665039,15.66985034942627],[99.76605224609392,15.661111831665096],[99.79022979736357,15.651881217956543],[99.7940979003908,15.647919654846248],[99.79650115966825,15.642370223999137],[99.81109619140625,15.638410568237305],[99.82672119140642,15.630241394042912],[99.84984588623053,15.620702743530273],[99.86315917968767,15.617231369018555],[99.86582946777361,15.627642631530705],[99.8652420043947,15.639752388000488],[99.86277770996111,15.641921043396053],[99.86550903320335,15.647061347961483],[99.86724090576195,15.654621124267578],[99.8797607421875,15.659639358520621],[99.88607025146484,15.660290718078556],[99.89952850341808,15.663661956787223],[99.90801239013672,15.668812751770076],[99.9229125976563,15.672290802001896],[99.92752075195318,15.674151420593375],[99.93596649169933,15.672450065612736],[99.93766021728544,15.666351318359375],[99.93696594238298,15.657331466674805],[99.93833923339844,15.645840644836426],[99.94110107421903,15.631501197814998],[99.94380950927729,15.625801086425895],[99.94449615478521,15.617301940917969],[99.94226837158214,15.606649398803768],[99.94261169433622,15.602779388427791],[99.93929290771484,15.595801353454647],[99.94165039062528,15.57693195343029],[99.94380950927729,15.57145023345953],[99.9418487548831,15.560111999511719],[99.94108581542997,15.545430183410758],[99.94123077392601,15.531938552856502],[99.94464874267584,15.524930953979492],[99.94433593750028,15.519160270690918],[99.94683074951183,15.514691352844295],[99.94586944580107,15.502470016479549],[99.94867706298851,15.498519897460994],[99.95912170410156,15.505510330200309],[99.96211242675776,15.502511024475098],[99.98178863525408,15.495940208435002],[99.98320007324241,15.49164199829113],[99.9874877929687,15.489530563354549],[99.99256896972662,15.490281105041504],[99.99462890625006,15.485490798950309],[99.99945068359403,15.481850624084586],[100.01059722900408,15.488711357116756],[100.01100158691406,15.493129730224666],[100.00643920898443,15.498770713806266],[100.00871276855469,15.503340721130485],[100.01302337646496,15.5034818649292],[100.02535247802757,15.506561279296932],[100.02733612060558,15.50427055358898],[100.02614593505888,15.491190910339412],[100.0270385742188,15.484469413757381],[100.03353881835943,15.47235107421875],[100.04164886474604,15.464310646057072],[100.05017089843756,15.459401130676383],[100.05898284912121,15.457060813903809],[100.0667572021485,15.457232475280819],[100.06735229492216,15.44890117645275],[100.06466674804693,15.438330650329533],[100.05857849121122,15.430321693420524],[100.05825042724604,15.423089981079215],[100.07862091064482,15.42527961730957],[100.09771728515636,15.421079635620174],[100.10334014892584,15.416589736938533]]]},"properties":{"ID_0":228,"ISO":"TH-61","NAME_0":"Thailand","ID_1":74,"NAME_1":"Uthai Thani","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"อุทัยธานี","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.9901733398437,17.741621017455998],[100.98645019531256,17.728900909423885],[100.97836303710955,17.71380043029791],[100.96775054931646,17.703371047973576],[100.95652008056663,17.69857978820812],[100.94770050048828,17.698009490966854],[100.94367980957031,17.70006942749029],[100.92639923095709,17.694351196289176],[100.92340087890636,17.69816970825201],[100.91567230224615,17.69733047485346],[100.9118423461914,17.69895172119135],[100.90853118896479,17.7052898406983],[100.9079132080081,17.711530685424805],[100.89627075195318,17.71373176574707],[100.87641906738287,17.70956039428711],[100.86946105957048,17.702430725097656],[100.86772918701166,17.697149276733512],[100.85994720458984,17.687709808349666],[100.85154724121111,17.665439605713004],[100.84778594970709,17.661890029907283],[100.84590148925787,17.653230667114258],[100.83817291259783,17.646442413330078],[100.83242034912121,17.646320343017635],[100.82769775390642,17.64356994628912],[100.81118774414068,17.640630722045955],[100.80385589599626,17.636650085449276],[100.80348205566423,17.632810592651424],[100.79257965087885,17.61557006835949],[100.7918090820312,17.612052917480526],[100.78643798828153,17.60433006286621],[100.78202819824247,17.603691101074276],[100.77600097656267,17.594921112060547],[100.77658081054705,17.58440971374523],[100.77414703369146,17.580249786376953],[100.76806640625023,17.577169418335075],[100.76747894287115,17.569730758667106],[100.76277923584013,17.567611694335994],[100.75855255126959,17.563079833984432],[100.7541427612307,17.56105232238781],[100.74552154541016,17.553260803222656],[100.74179077148466,17.541418075561523],[100.73545074462913,17.53627967834484],[100.72323608398443,17.532560348510856],[100.71221923828153,17.53067016601574],[100.70437622070318,17.52800941467291],[100.68955993652355,17.51988029479986],[100.6868286132813,17.51510047912609],[100.67848968505871,17.505420684814567],[100.67151641845703,17.499320983886776],[100.66004943847673,17.497198104858455],[100.65392303466814,17.492322921752873],[100.64351654052757,17.491159439086914],[100.64335632324224,17.487369537353516],[100.64665222167963,17.48318862915039],[100.64537048339844,17.479400634765568],[100.64586639404325,17.471549987793082],[100.62947082519543,17.47199058532715],[100.6226806640625,17.466659545898438],[100.6155471801759,17.46373939514166],[100.61023712158197,17.455831527710018],[100.60932922363281,17.45028114318842],[100.60482788085943,17.444837570190373],[100.60375213623041,17.43375968933117],[100.60510253906267,17.42613029479992],[100.59950256347685,17.421350479125977],[100.58670806884771,17.416999816894645],[100.58396911621094,17.418979644775447],[100.57173919677751,17.420379638671932],[100.56323242187506,17.41535186767578],[100.55251312255865,17.412969589233512],[100.54808807373064,17.414430618286133],[100.5347061157226,17.413341522216797],[100.53205871582048,17.415422439575195],[100.5241317749024,17.406932830810604],[100.51445007324247,17.404371261596793],[100.50961303710943,17.406970977783317],[100.50634002685547,17.421249389648438],[100.50257110595726,17.426839828491268],[100.49710083007824,17.421270370483455],[100.48996734619146,17.417629241943416],[100.48024749755882,17.416088104248104],[100.4765090942384,17.4185791015625],[100.46837615966797,17.418569564819336],[100.45468902587913,17.416812896728516],[100.44975280761724,17.422052383422795],[100.43998718261724,17.41708946228033],[100.43218231201195,17.41716957092291],[100.42852783203125,17.41981124877924],[100.42304229736334,17.410760879516715],[100.39978027343756,17.400960922241154],[100.39231872558616,17.40252113342291],[100.3907470703125,17.399021148681584],[100.37993621826178,17.39381027221691],[100.37381744384788,17.389020919799805],[100.365219116211,17.387319564819393],[100.35842895507841,17.383529663085938],[100.35517120361357,17.38426017761236],[100.35009765625017,17.389999389648438],[100.34377288818354,17.385442733764705],[100.34014129638683,17.387348175048942],[100.33006286621111,17.3842010498048],[100.3318099975586,17.37619018554699],[100.32811737060558,17.36930084228527],[100.32254028320318,17.36997032165533],[100.31620025634771,17.373701095580998],[100.30551910400396,17.377670288085994],[100.29908752441435,17.372760772705078],[100.2898788452149,17.373701095580998],[100.28041076660185,17.37042045593273],[100.2713012695312,17.36503028869629],[100.26431274414068,17.355789184570426],[100.2576599121096,17.357259750366325],[100.25341796875,17.35377120971691],[100.24491119384771,17.350311279296875],[100.24037933349621,17.34238052368164],[100.24201202392584,17.33613014221197],[100.24163818359398,17.330379486083984],[100.23880004882818,17.3195095062257],[100.2388992309572,17.315139770507926],[100.24443054199236,17.288217544555664],[100.24822998046892,17.2779598236084],[100.24858856201183,17.26566123962408],[100.25048828125011,17.25432968139654],[100.25428009033232,17.24979972839361],[100.25392913818371,17.241910934448242],[100.24830627441412,17.234930038452205],[100.23631286621116,17.226659774780273],[100.22849273681663,17.22241020202648],[100.21972656250006,17.215919494628963],[100.2005081176759,17.199710845947266],[100.18824768066429,17.19071006774908],[100.1769104003908,17.18886947631836],[100.17362213134777,17.19498062133789],[100.16593933105474,17.205160140991268],[100.15821838378923,17.209962844848633],[100.14572143554693,17.20505142211914],[100.12442016601574,17.20051002502447],[100.11485290527372,17.199560165405217],[100.10292053222656,17.195249557495174],[100.08879852294939,17.185449600219783],[100.08158111572266,17.1843318939209],[100.07296752929705,17.178951263427734],[100.05381011962919,17.180461883544922],[100.04590606689453,17.177022933960075],[100.0397186279298,17.178739547729606],[100.03386688232439,17.170629501342773],[100.03465270996094,17.165191650390682],[100.03176116943376,17.162509918212834],[100.02643585205078,17.164400100708008],[100.0200881958009,17.169361114501896],[100.01348876953125,17.17267036437994],[100.00733947753923,17.1735515594483],[100.00670623779325,17.178581237793082],[100.0016708374024,17.184650421142578],[99.99809265136724,17.185289382934684],[99.99053192138666,17.17231178283697],[99.98095703125028,17.171632766723633],[99.97799682617188,17.17581748962408],[99.97866058349638,17.18741035461437],[99.97463989257818,17.19675827026373],[99.97669219970709,17.203149795532227],[99.9798889160158,17.20614051818842],[99.98295593261719,17.21380043029785],[99.97263336181658,17.220640182495174],[99.96895599365246,17.224700927734432],[99.96019744873058,17.228889465332088],[99.97064208984403,17.2332706451416],[99.97601318359386,17.23788070678711],[99.97776031494135,17.243160247802848],[99.97141265869169,17.243448257446346],[99.96521759033203,17.239419937133846],[99.95791625976557,17.241559982299805],[99.96544647216803,17.246288299560547],[99.96675872802734,17.2498397827149],[99.96454620361357,17.256929397583008],[99.96710968017595,17.261520385742244],[99.96597290039062,17.27172088623047],[99.96808624267578,17.279069900512752],[99.9751586914063,17.28717041015625],[99.98808288574236,17.288652420044002],[99.99481964111334,17.28807067871105],[100.00164031982422,17.29475975036621],[100.0065231323245,17.30574035644537],[100.00978851318371,17.31017112731928],[100.0157699584961,17.3253498077392],[100.01526641845709,17.332298278808707],[100.0117263793947,17.335180282592773],[100.00934600830084,17.340570449829215],[100.00199890136736,17.35188293457037],[100.00907135009783,17.356971740722656],[100.00624847412115,17.364120483398494],[100.0013885498048,17.36618995666504],[100.00794982910156,17.37108993530279],[100.01120758056646,17.37594985961914],[100.00985717773438,17.381750106811523],[100.00486755371111,17.389129638671932],[99.99970245361345,17.39104270935053],[99.99089813232433,17.399379730224723],[99.99224090576183,17.404510498046875],[99.99597930908226,17.407470703125114],[99.9973068237307,17.4141902923584],[100.00520324707043,17.41726112365734],[100.00372314453142,17.421150207519588],[99.99922943115257,17.42434120178217],[100.00096893310575,17.431648254394588],[99.99787902832054,17.44028091430664],[99.99993896484375,17.449071884155273],[100.0039672851563,17.451250076293945],[100.00464630126947,17.456039428710994],[99.99977111816412,17.459329605102596],[99.9984893798831,17.463701248169002],[99.99228668212908,17.46426010131836],[99.98845672607439,17.470001220703182],[99.98855590820318,17.476289749145565],[99.98290252685541,17.485420227050838],[99.97617340087919,17.49020004272461],[99.96363067626964,17.496919631958065],[99.95532989501959,17.499229431152457],[99.94333648681663,17.505270004272575],[99.93750762939447,17.509189605712947],[99.92778778076166,17.51935958862299],[99.93408203124994,17.5239200592041],[99.93885040283197,17.5339412689209],[99.94184112548857,17.535688400268555],[99.94328308105469,17.54185295104986],[99.93710327148449,17.554540634155273],[99.92752075195318,17.56545829772955],[99.92518615722662,17.584289550781364],[99.92716217041044,17.586759567260742],[99.9398269653322,17.59005928039562],[99.94357299804716,17.592292785644645],[99.95703125,17.60328292846674],[99.9632110595706,17.611530303955078],[99.97457885742188,17.618400573730582],[99.9737091064456,17.62225914001465],[99.96907043457037,17.627029418945256],[99.96723937988293,17.63148117065441],[99.97187805175798,17.642040252685547],[99.97605895996111,17.64594078063965],[99.97856140136719,17.65489959716797],[99.9759368896485,17.659650802612305],[99.97583007812511,17.670570373535156],[99.9698410034182,17.68289947509777],[99.9701309204101,17.690111160278377],[99.96833801269537,17.69399070739746],[99.96858215332043,17.70157241821289],[99.96566772460943,17.709299087524357],[99.95767211914091,17.716751098632812],[99.95327758789068,17.717769622802734],[99.94776916503935,17.721830368041992],[99.94288635253923,17.72867965698248],[99.94152832031267,17.73316955566412],[99.9375305175783,17.734659194946232],[99.93212890625028,17.742481231689567],[99.92749786376976,17.7423610687257],[99.92189788818376,17.74699020385748],[99.91429901123047,17.762491226196403],[99.9239807128908,17.76628112792963],[99.92745208740234,17.772649765014705],[99.92331695556663,17.77942085266119],[99.92344665527344,17.785509109497127],[99.91426849365251,17.792688369750977],[99.90721130371111,17.791509628295955],[99.90187835693376,17.795480728149528],[99.89839935302746,17.805120468139762],[99.90268707275396,17.802860260009766],[99.91249847412121,17.80206108093273],[99.9198608398438,17.794572830200195],[99.92919921875006,17.788110733032227],[99.93385314941435,17.788818359375],[99.93847656250017,17.781070709228516],[99.95169830322271,17.777000427246094],[99.96010589599615,17.779529571533146],[99.9633407592774,17.78922080993658],[99.964340209961,17.796119689941463],[99.97335815429699,17.798900604248104],[99.97557067871116,17.79712104797369],[99.98169708251959,17.79820060729986],[99.98636627197283,17.802078247070426],[99.99230194091797,17.812929153442383],[99.98808288574236,17.828861236572322],[100.00469970703125,17.83188056945812],[100.01605224609403,17.83235168457037],[100.04704284667969,17.84584999084467],[100.05436706542974,17.84210014343273],[100.05339050292991,17.839500427246207],[100.05995178222668,17.832019805908203],[100.06239318847685,17.836748123168945],[100.06651306152344,17.839031219482365],[100.07872009277344,17.836679458618278],[100.08410644531273,17.84114074707037],[100.0897293090822,17.841239929199162],[100.09178161621122,17.845329284668026],[100.09635162353544,17.848640441894645],[100.10237121582031,17.845310211181754],[100.1137924194336,17.849950790405217],[100.12081146240229,17.856920242309513],[100.12661743164068,17.85724067687994],[100.13044738769554,17.855110168457145],[100.1456527709961,17.864549636840763],[100.14845275878918,17.869461059570256],[100.15566253662138,17.875520706176815],[100.16184234619158,17.88776969909668],[100.17085266113287,17.88821983337408],[100.17285156250011,17.890819549560604],[100.18180084228544,17.896230697631893],[100.18511962890642,17.899549484252873],[100.19629669189482,17.904130935669002],[100.20382690429688,17.91582107543951],[100.20867156982428,17.914989471435547],[100.21620178222673,17.918991088867244],[100.21608734130882,17.92589950561529],[100.22138214111328,17.936340332031307],[100.22638702392601,17.937349319458065],[100.22680664062528,17.946109771728516],[100.23237609863293,17.947050094604435],[100.2367630004884,17.953550338745117],[100.23980712890636,17.953809738159237],[100.2482681274414,17.960069656372184],[100.25424957275396,17.959280014038086],[100.26252746582026,17.95222282409668],[100.26580810546875,17.951250076294002],[100.27783203125,17.955579757690543],[100.28218841552751,17.953769683837947],[100.28750610351557,17.947929382324276],[100.28958892822277,17.934511184692496],[100.3003768920899,17.93701171875],[100.308578491211,17.930910110473746],[100.31057739257824,17.9260196685791],[100.31067657470709,17.91776084899908],[100.31478118896479,17.90756988525402],[100.32021331787115,17.90497970581066],[100.32646942138672,17.89495277404791],[100.32779693603516,17.88997268676752],[100.33644866943382,17.889009475708008],[100.34307098388672,17.89186096191412],[100.34395599365246,17.89822006225586],[100.35008239746111,17.90751075744629],[100.34916687011719,17.913379669189567],[100.36074066162121,17.922372817993164],[100.36017608642572,17.93103981018072],[100.3614196777346,17.934682846069336],[100.35669708251982,17.940280914306754],[100.35601043701189,17.952579498291016],[100.35736846923828,17.961990356445312],[100.35243225097662,17.976140975952205],[100.35175323486357,17.98156929016119],[100.36058807373064,17.985862731933594],[100.37716674804705,17.998729705810547],[100.38066864013678,18.00383186340332],[100.38198852539062,18.01054954528803],[100.38609313964855,18.011081695556584],[100.39388275146513,18.019790649414062],[100.40007781982439,18.01936149597168],[100.40918731689447,18.022790908813533],[100.41583251953153,18.020179748535156],[100.42362213134771,18.011571884155273],[100.44132232666021,18.02078056335455],[100.44441223144537,18.02362823486328],[100.45085906982428,18.020072937011776],[100.45812988281273,18.019510269165096],[100.46350860595732,18.02124977111822],[100.47255706787126,18.018531799316463],[100.47535705566418,18.023149490356502],[100.48829650878935,18.021802902221623],[100.49368286132807,18.02370834350586],[100.49891662597662,18.01993942260748],[100.5058975219726,18.022611618041992],[100.51154327392584,18.018970489501953],[100.52326965332048,18.019758224487305],[100.52693176269531,18.0215682983399],[100.53127288818354,18.016822814941463],[100.54380035400419,18.014841079711857],[100.54808044433611,18.02048110961914],[100.54825592041033,18.027721405029297],[100.55120849609398,18.031789779663086],[100.56147003173828,18.031251907348576],[100.56775665283203,18.035169601440373],[100.5758590698245,18.034490585327205],[100.57855987548822,18.041961669921932],[100.58216094970732,18.04219055175787],[100.58912658691406,18.038618087768555],[100.59883117675781,18.041219711303825],[100.60604095458979,18.045940399170036],[100.61267089843778,18.048030853271598],[100.6269226074221,18.041130065917912],[100.6330184936524,18.04313087463379],[100.65262603759766,18.03791999816889],[100.66091156005888,18.037332534790153],[100.67002105712896,18.040620803833008],[100.67475128173828,18.038379669189453],[100.68093109130865,18.03107070922863],[100.68942260742205,18.02818107604986],[100.69285583496111,18.024721145629996],[100.69966125488293,18.0242023468017],[100.70144653320312,18.026109695434513],[100.70774841308594,18.024738311767635],[100.7100677490235,18.028701782226676],[100.72695159912104,18.030639648437443],[100.7355194091798,18.026849746704215],[100.76116180419922,18.02601051330572],[100.76901245117193,18.023021697998104],[100.77651977539091,18.027650833129883],[100.7873992919923,18.04175186157238],[100.79370117187511,18.047260284423885],[100.79754638671892,18.04817008972168],[100.80291748046875,18.052610397338924],[100.80905151367193,18.06344032287609],[100.81005859375006,18.071380615234432],[100.81302642822266,18.076509475708008],[100.82212066650402,18.080749511718864],[100.82876586914091,18.078519821166992],[100.83354187011747,18.07982254028326],[100.84291076660168,18.0777912139892],[100.8512725830081,18.080339431762695],[100.85211944580095,18.087890625],[100.85906219482428,18.101810455322322],[100.86424255371122,18.108230590820426],[100.87689971923845,18.116819381713867],[100.87380981445324,18.12459945678711],[100.87342071533214,18.133010864257926],[100.88585662841814,18.149209976196346],[100.89264678955084,18.145740509033146],[100.89840698242199,18.14941978454584],[100.90370941162115,18.150640487670955],[100.9137802124024,18.155509948730582],[100.91529083251959,18.16020011901861],[100.91182708740234,18.162637710571403],[100.91130828857445,18.168098449707145],[100.90806579589866,18.174970626830998],[100.9107284545899,18.185520172119197],[100.90988159179682,18.191719055175838],[100.92343139648455,18.202449798583984],[100.92732238769537,18.2092227935791],[100.92407989501959,18.21520042419445],[100.92070007324247,18.215589523315373],[100.91449737548828,18.225591659545955],[100.91808319091791,18.230030059814567],[100.92108917236357,18.241769790649528],[100.92801666259783,18.249031066894474],[100.93222045898455,18.248659133911246],[100.9421615600586,18.253160476684627],[100.94927215576195,18.262910842895565],[100.95304870605469,18.26363754272461],[100.96498107910168,18.275890350341797],[100.96743774414091,18.282089233398438],[100.97267150878906,18.28845024108881],[100.97912597656267,18.29388046264654],[100.97970581054705,18.300510406494197],[100.98477935791044,18.305339813232536],[100.99344635009783,18.30731010437023],[101.00119781494169,18.302419662475586],[101.00187683105469,18.307750701904354],[101.00763702392601,18.31635856628418],[101.02009582519543,18.319679260253963],[101.02703857421875,18.325271606445426],[101.03103637695312,18.331520080566463],[101.03684234619146,18.331968307495117],[101.04106140136747,18.336269378662223],[101.04550170898455,18.337930679321403],[101.04886627197294,18.343540191650334],[101.0547714233399,18.34773254394537],[101.05980682373064,18.3543701171875],[101.07704925537115,18.355211257934627],[101.08061981201189,18.364179611205998],[101.08619689941412,18.3690509796142],[101.08892822265653,18.378490447998047],[101.0972518920899,18.37935066223139],[101.10452270507835,18.37343025207514],[101.10974884033214,18.372800827026367],[101.1132583618164,18.369211196899528],[101.12100219726574,18.369470596313477],[101.13059997558594,18.365228652954045],[101.14399719238287,18.35468101501465],[101.14998626708996,18.345529556274528],[101.15718078613287,18.347360610961914],[101.16285705566406,18.34378051757824],[101.16970825195312,18.34468078613287],[101.18363952636719,18.33735847473156],[101.1816024780274,18.324951171875],[101.17732238769548,18.320631027221737],[101.17080688476557,18.319580078125114],[101.16551208496094,18.310710906982536],[101.16152954101568,18.308300018310547],[101.15930938720732,18.301189422607365],[101.15212249755876,18.297269821166992],[101.15017700195324,18.29323959350586],[101.15754699707054,18.285240173339957],[101.16086578369152,18.278049468994197],[101.1609725952149,18.273519515991268],[101.15167236328153,18.266450881958008],[101.1460266113283,18.258930206298885],[101.16056060791016,18.245571136474666],[101.1610717773437,18.239770889282227],[101.16400909423834,18.232429504394474],[101.1676864624024,18.230119705200252],[101.16777038574236,18.223360061645508],[101.16564941406244,18.220609664916992],[101.16718292236322,18.21602058410656],[101.1723098754884,18.214920043945312],[101.18199920654325,18.217220306396598],[101.186752319336,18.21547126770031],[101.19301605224615,18.208620071411246],[101.18559265136741,18.19333076477062],[101.18544006347685,18.187871932983455],[101.18006896972662,18.180118560791016],[101.17433166503929,18.16551017761236],[101.17330169677751,18.152759552002067],[101.17089080810553,18.139659881591797],[101.16336059570307,18.123701095581055],[101.16471862792986,18.115640640258846],[101.16776275634783,18.11171913146984],[101.16616058349615,18.105310440063477],[101.17462921142595,18.085355758666992],[101.17414093017601,18.075439453125114],[101.17639923095703,18.070880889892635],[101.18242645263666,18.06884002685547],[101.18527221679699,18.06191062927246],[101.17745208740246,18.051589965820426],[101.17880249023432,18.048280715942383],[101.1737060546875,18.04411125183117],[101.16932678222656,18.036569595337028],[101.16150665283203,18.02783966064453],[101.15825653076172,18.034700393676758],[101.15260314941412,18.03503036499029],[101.14630889892584,18.026960372924748],[101.14228057861334,18.02509117126465],[101.13971710205072,18.017179489135856],[101.13439941406267,18.01192283630371],[101.13043975830084,18.00342941284191],[101.12477111816412,17.999559402465934],[101.12193298339872,17.99246978759777],[101.11939239501959,17.973949432373047],[101.117660522461,17.96743011474615],[101.11924743652372,17.9548282623291],[101.118408203125,17.949270248413143],[101.10642242431646,17.94560050964361],[101.10095977783232,17.938341140747184],[101.09693145751982,17.935911178588924],[101.09706115722662,17.929800033569393],[101.09192657470709,17.92754936218273],[101.09047698974621,17.923620223999023],[101.08042907714861,17.92255020141613],[101.05899047851591,17.912221908569393],[101.04840087890625,17.911340713500977],[101.04479980468756,17.907449722290153],[101.03536224365246,17.902950286865234],[101.02890777587908,17.895709991455078],[101.02128601074236,17.890699386596737],[101.01830291748053,17.882591247558707],[101.02233123779303,17.880779266357536],[101.01936340332026,17.87559127807623],[101.02599334716825,17.8712997436524],[101.0301132202149,17.864730834960938],[101.03312683105486,17.853860855102482],[101.03333282470703,17.847549438476562],[101.03085327148438,17.83706092834484],[101.03198242187517,17.83251953125],[101.02491760253923,17.827150344848746],[101.00807952880871,17.821870803833008],[101.00424957275419,17.82253074645996],[101.00022888183622,17.817899703979606],[101.00116729736334,17.81547164916998],[100.99433135986357,17.802860260009766],[100.99916076660173,17.799381256103516],[101.0040893554687,17.793411254882812],[101.00450134277361,17.788692474365178],[101.00804901123075,17.78342819213873],[101.00373077392595,17.77448081970215],[100.99623870849638,17.770349502563477],[100.9829406738283,17.765880584716854],[100.9794464111331,17.760900497436523],[100.97956848144537,17.751091003418026],[100.98596954345697,17.748319625854492],[100.9901733398437,17.741621017455998]]]},"properties":{"ID_0":228,"ISO":"TH-53","NAME_0":"Thailand","ID_1":75,"NAME_1":"Uttaradit","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"อุตรดิตถ์","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.59310913085955,6.565400123596135],[101.59764862060558,6.560521125793571],[101.59806823730486,6.55221080780035],[101.60851287841808,6.54491996765131],[101.60286712646484,6.533470153808707],[101.59429931640625,6.528820037841911],[101.59189605712919,6.518970012664909],[101.58663177490251,6.512021064758358],[101.57995605468767,6.508859157562199],[101.57559967041016,6.499440193176383],[101.56919097900419,6.498300075531063],[101.56228637695335,6.492760181427116],[101.56125640869158,6.488211154937744],[101.54657745361345,6.482971191406193],[101.5335998535158,6.468588829040641],[101.53466033935553,6.463369846344108],[101.5418472290039,6.45792102813715],[101.54618835449236,6.45838117599493],[101.55030822753935,6.455228805542106],[101.55034637451183,6.446068763732967],[101.54717254638672,6.443900108337402],[101.542739868164,6.445290088653678],[101.53971862792986,6.441939830780086],[101.52987670898443,6.444200038909855],[101.51860809326195,6.448929786682186],[101.51255798339872,6.449570178985596],[101.50653839111328,6.45343112945551],[101.49674224853527,6.454390048980827],[101.48538970947266,6.463311195373649],[101.47853851318365,6.463500022888127],[101.46479797363287,6.465600967407283],[101.46254730224615,6.454528808593864],[101.46595764160162,6.450541019439697],[101.4645767211914,6.442161083221492],[101.46662902832026,6.439459800720158],[101.47001647949247,6.4287500381470295],[101.46837615966814,6.423871040344295],[101.46246337890642,6.424530982971248],[101.4570007324221,6.431599140167293],[101.44313812255888,6.428089141845817],[101.43448638916021,6.428710937500057],[101.42430877685564,6.42162990570074],[101.42292785644543,6.416460990905875],[101.42524719238276,6.413889884948787],[101.41851806640653,6.400760173797551],[101.41210174560564,6.396480083465633],[101.41937255859375,6.39107084274292],[101.4203186035158,6.383500099182129],[101.41735839843756,6.37197923660284],[101.4101867675783,6.368869781494141],[101.40354919433594,6.361959934234619],[101.39749145507835,6.357670783996639],[101.39772796630888,6.3498687744140625],[101.39363098144531,6.3435401916504475],[101.38932800292997,6.3402190208436195],[101.38797760009771,6.335791110992375],[101.38958740234392,6.327010154724178],[101.40003204345732,6.3176989555359455],[101.40011596679688,6.311240196228141],[101.39375305175793,6.300261974334774],[101.39573669433594,6.293351173400993],[101.39515686035156,6.286780834198112],[101.39882659912132,6.2832112312316895],[101.40293121337885,6.270380020141602],[101.40056610107428,6.267728805542106],[101.40159606933588,6.257960796356201],[101.39839172363281,6.254590034484806],[101.39569091796892,6.244939804077148],[101.40072631835943,6.242418766021672],[101.40347290039074,6.238461017608586],[101.39747619628912,6.229560852050838],[101.39726257324219,6.225590229034481],[101.39332580566412,6.221620082855225],[101.3796691894533,6.2150402069092365],[101.3719406127932,6.209411144256592],[101.37751007080107,6.198730945587158],[101.38326263427746,6.190371036529541],[101.38639068603516,6.181361198425293],[101.38632202148432,6.170431137085018],[101.38842773437494,6.16585016250616],[101.39488220214872,6.159629821777457],[101.3991088867187,6.157750129699707],[101.41230773925798,6.156199932098502],[101.41153717041033,6.1514201164245605],[101.41570281982416,6.142870903015194],[101.42359924316412,6.144111156463737],[101.42671966552763,6.14198017120367],[101.42810821533197,6.134020805358887],[101.43083953857422,6.128221035003719],[101.43527984619146,6.1289410591126625],[101.437728881836,6.121199131012077],[101.43634033203142,6.1169891357421875],[101.44117736816429,6.1096301078796955],[101.43849945068382,6.105541229248104],[101.43753814697271,6.09768104553234],[101.43992614746088,6.0920100212098305],[101.44528198242205,6.086238861084041],[101.44686889648443,6.081980228424186],[101.4552612304688,6.077860832214412],[101.46195220947271,6.077190876007137],[101.4660186767581,6.08034086227417],[101.47447204589861,6.067550182342586],[101.47841644287138,6.053050994873104],[101.4783020019533,6.0426301956177895],[101.4743576049807,6.0398201942444985],[101.47850799560547,6.0351300239564125],[101.47928619384766,6.028500080108643],[101.47785949707043,6.020390987396297],[101.4827270507813,6.012508869171143],[101.47823333740263,6.007541179657039],[101.47856903076178,5.998779773712272],[101.47589111328148,5.988589763641357],[101.47660827636719,5.981871128082332],[101.48581695556646,5.96901178359991],[101.48494720458979,5.961631774902401],[101.4872207641601,5.955589771270809],[101.49095153808616,5.954761028289909],[101.49166870117188,5.950610160827694],[101.49739837646484,5.948431015014762],[101.49047851562494,5.937479972839412],[101.49079132080084,5.928050994873047],[101.49254608154308,5.923919200897274],[101.49024200439482,5.914351940155029],[101.49233245849638,5.908501148223934],[101.49128723144531,5.900091171264648],[101.49861145019537,5.9007110595703125],[101.50067901611351,5.892691135406608],[101.49301147460938,5.886559963226375],[101.4850082397461,5.877961158752555],[101.47103118896501,5.874178886413688],[101.46437072753923,5.876491069793701],[101.46289062500006,5.87483119964611],[101.43358612060575,5.8768892288209145],[101.4109878540039,5.878089904785213],[101.401176452637,5.877021789550781],[101.39457702636719,5.8747010231018635],[101.38537597656244,5.863101005554313],[101.38037109375028,5.851860046386719],[101.3720703125,5.838190078735352],[101.36917114257807,5.835529804229793],[101.35865783691418,5.833409786224365],[101.34719848632841,5.824019908905143],[101.34526062011724,5.819739818572998],[101.33164978027344,5.819241046905518],[101.31465148925798,5.808191776275692],[101.30605316162126,5.812301158905029],[101.29344177246088,5.820390224456844],[101.28623962402344,5.821051120758057],[101.27513885498041,5.813361167907772],[101.26690673828136,5.802719116210994],[101.26394653320312,5.801609992980957],[101.2616271972658,5.794731140136776],[101.25492858886736,5.779570102691764],[101.24967956542991,5.7599902153015705],[101.25556945800787,5.750590801239014],[101.25476837158203,5.7427101135254475],[101.25978851318382,5.732389926910457],[101.25711822509788,5.715030193328971],[101.24812316894537,5.705739974975586],[101.23130798339844,5.692161083221492],[101.22409820556646,5.6879901885987465],[101.2191925048831,5.688440799713192],[101.21887207031244,5.682510852813834],[101.2100982666015,5.666998863220215],[101.2058029174807,5.6621508598328205],[101.19568634033209,5.655090808868522],[101.18817901611345,5.6524701118470375],[101.17418670654325,5.650359153747672],[101.16848754882824,5.646320819854793],[101.15777587890653,5.631830215454102],[101.14457702636741,5.623209953308049],[101.13906860351568,5.61743879318243],[101.13430023193365,5.616197109222526],[101.13230133056658,5.636859893798885],[101.1233215332033,5.656045913696289],[101.1233978271485,5.660980224609432],[101.11986541748041,5.663311958312931],[101.11873626708979,5.669519901275635],[101.11370086669928,5.677681922912711],[101.10810089111328,5.682960033416748],[101.08146667480474,5.717336177825985],[101.068901062012,5.732701778411865],[101.06449890136724,5.741209983825684],[101.057373046875,5.747300148010368],[101.04525756835966,5.745701789856071],[101.03495788574247,5.745561122894287],[101.03012847900396,5.7477130889893715],[101.01599884033209,5.773128986358643],[101.00456237792974,5.783171176910514],[100.98989105224632,5.791312217712516],[100.9870300292971,5.798340797424373],[100.98609924316412,5.806541919708195],[100.9995422363283,5.818190097808838],[101.0020523071289,5.825318813323975],[101.01229858398432,5.832081794738883],[101.01551055908232,5.835443019867],[101.01000976562494,5.83991003036499],[101.00920104980497,5.846000194549504],[101.00611877441412,5.850511074066219],[101.00994110107428,5.858051776886043],[101.00945281982439,5.8736419677734375],[101.01341247558622,5.8742499351501465],[101.0130920410158,5.88109016418457],[101.02213287353538,5.891149997711295],[101.02420043945318,5.896859169006461],[101.0290908813476,5.9013991355896],[101.02555847167991,5.9127898216248695],[101.03186035156273,5.914268970489616],[101.03623199462896,5.917891025543156],[101.04460144042969,5.91572999954235],[101.05065917968767,5.91028976440424],[101.0546875,5.91119909286499],[101.05564880371094,5.915290832519645],[101.06085968017584,5.918910026550293],[101.07433319091797,5.918150901794547],[101.07855987548834,5.916100025177059],[101.0840225219726,5.9106712341308025],[101.0864868164062,5.911621093750057],[101.08792877197288,5.92297983169567],[101.09068298339838,5.9257898330689045],[101.09186553955095,5.931639194488525],[101.09830474853527,5.944770812988281],[101.09555053710943,5.950259208679256],[101.1016464233399,5.95189094543457],[101.1081466674807,5.958399772644043],[101.11376190185541,5.9619879722595215],[101.12409973144548,5.97228908538824],[101.12709808349621,5.978281021118278],[101.12650299072294,5.981280803680534],[101.1187973022461,5.987070083618278],[101.10639953613281,5.999090194702148],[101.10877227783232,6.002090930938721],[101.1112747192384,6.010299205780086],[101.10894012451178,6.017619132995719],[101.11123657226591,6.020330905914307],[101.10768127441423,6.0291109085084145],[101.11251831054693,6.031468868255672],[101.11239624023466,6.0388698577882],[101.10659790039068,6.050479888915959],[101.10272216796892,6.0548810958862305],[101.10557556152338,6.061546802520866],[101.11530303955072,6.069510936737174],[101.11740112304682,6.07332086563116],[101.11840057373047,6.083159923553524],[101.12239837646484,6.087779998779354],[101.13099670410156,6.092590808868522],[101.13330078125006,6.096630096435661],[101.13210296630876,6.102149963378963],[101.11873626708979,6.113729953765983],[101.11235809326178,6.112690925598088],[101.10581970214844,6.114120006561393],[101.10772705078125,6.117361068725643],[101.10482025146501,6.123878955841178],[101.10179901123047,6.123151779174918],[101.09639739990246,6.127010822296199],[101.08969116210966,6.134050846099967],[101.08679199218773,6.133541107177791],[101.07424926757841,6.1357808113098145],[101.0708999633789,6.139769077301025],[101.06134796142595,6.14024114608776],[101.05867004394548,6.1427888870240395],[101.06092071533214,6.1508097648620605],[101.06445312500006,6.151599884033203],[101.07079315185553,6.158791065216178],[101.07540130615263,6.160820007324162],[101.07570648193365,6.1703510284424965],[101.08479309082048,6.174321174621582],[101.08580017089844,6.178630828857536],[101.09205627441423,6.176411151886043],[101.09642028808588,6.179230213165397],[101.10179901123047,6.178208827972469],[101.10775756835943,6.179470062255859],[101.11878967285156,6.185530185699463],[101.12655639648432,6.195321083068961],[101.12209320068365,6.201779842376766],[101.1151962280274,6.204339981079215],[101.11876678466814,6.212200164795036],[101.11573028564453,6.216960906982536],[101.11367797851585,6.226380825042668],[101.1056518554688,6.2395410537720295],[101.1117553710938,6.2488532066345215],[101.11003875732428,6.252106189727726],[101.10238647460938,6.253929138183594],[101.09690093994163,6.260059833526611],[101.09410095214855,6.261081218719596],[101.08741760253935,6.259359836578369],[101.08197784423828,6.259650230407715],[101.07639312744135,6.256025791168327],[101.07176208496122,6.2579197883606525],[101.06624603271513,6.2568187713623615],[101.05400085449224,6.258631229400578],[101.04270172119146,6.25606012344366],[101.01940155029297,6.253689765930176],[101.0118026733399,6.256659030914307],[100.99839782714861,6.268990039825496],[100.98819732666021,6.284221172332707],[100.9810028076173,6.289151191711426],[100.97139739990257,6.287391185760498],[100.96826171875017,6.28275108337408],[100.96817779541021,6.277968883514518],[100.96504211425781,6.272480964660758],[100.95780181884766,6.268640995025692],[100.94409942626959,6.252071857452393],[100.93599700927729,6.248880863189811],[100.92240142822271,6.2516498565674965],[100.91729736328136,6.25141096115118],[100.90779876709001,6.245329856872559],[100.90029907226591,6.247381210327148],[100.89009857177734,6.255929946899471],[100.87930297851591,6.261999130249137],[100.87400054931652,6.258639812469596],[100.86750030517607,6.243821144103947],[100.86070251464861,6.240001201629639],[100.8536987304688,6.243780136108398],[100.85189819335932,6.249070167541561],[100.84449768066406,6.264708995819092],[100.83515930175781,6.288910865783748],[100.83687591552734,6.298419952392692],[100.84297180175781,6.306829929351807],[100.84349822998041,6.2989897727967445],[100.84584045410156,6.292191028594971],[100.8490371704101,6.2886791229248615],[100.85942077636724,6.293510913848877],[100.86396789550781,6.296720027923584],[100.8709793090822,6.293971061706657],[100.88494110107422,6.296811103820801],[100.88846588134794,6.296360015869141],[100.89292907714861,6.300980091094971],[100.89743041992216,6.303181171417236],[100.9096069335938,6.3037810325623695],[100.91501617431635,6.311559200286865],[100.91638183593767,6.316380023956356],[100.92283630371088,6.320380210876522],[100.92813873291044,6.33157920837408],[100.92028808593756,6.34624099731451],[100.92180633544945,6.3497419357299805],[100.92079162597656,6.35565090179449],[100.92559051513678,6.355391979217586],[100.92703247070307,6.364991188049316],[100.92652130126953,6.370039939880314],[100.92272949218756,6.372129917144832],[100.92189788818354,6.380928993225211],[100.91987609863287,6.382250785827694],[100.92189788818354,6.388790130615348],[100.91863250732433,6.39129018783575],[100.91697692871094,6.397459983825797],[100.91931152343756,6.409750938415527],[100.91985321044922,6.419711112976188],[100.927490234375,6.436611175537166],[100.93270874023466,6.444271087646541],[100.94232940673845,6.443890094757023],[100.9478988647461,6.442360877990836],[100.9525070190432,6.445540904998779],[100.95197296142607,6.449760913848877],[100.96083831787126,6.451320171356201],[100.96324157714872,6.463211059570369],[100.96534729003935,6.466060161590633],[100.97335815429716,6.468278884887809],[100.9730300903322,6.476030826568717],[100.97782897949219,6.486481189727897],[100.98834991455084,6.485040187835693],[100.99623107910185,6.481659889221135],[101.0062484741211,6.485371112823543],[101.00672912597685,6.488591194152946],[101.01332855224615,6.493329048156795],[101.01654052734375,6.49780082702631],[101.02381896972662,6.498931884765682],[101.03060150146479,6.505081176757926],[101.03703308105474,6.515519142150936],[101.04026031494146,6.523571014404297],[101.04157257080084,6.532861232757682],[101.041069030762,6.539999008178711],[101.05947875976562,6.542020797729606],[101.06725311279314,6.543830871582031],[101.07153320312523,6.546590805053825],[101.07324981689476,6.550749778747615],[101.07953643798851,6.554288864135742],[101.08213043212908,6.565639972686768],[101.08640289306663,6.571351051330566],[101.09298706054682,6.574950218200684],[101.09729766845709,6.579191207885856],[101.10768890380876,6.583761215210018],[101.11234283447288,6.58738899230957],[101.10933685302763,6.595321178436336],[101.10093688964872,6.602039813995361],[101.09304809570312,6.6054401397706215],[101.08843994140642,6.613090991973934],[101.09706115722662,6.617700099945125],[101.10138702392595,6.625791072845516],[101.10798645019537,6.628660202026367],[101.11342620849626,6.626988887786979],[101.1267471313476,6.613451004028434],[101.13339996337902,6.609200954437256],[101.13886260986351,6.6085901260376545],[101.14961242675793,6.610499858856258],[101.15418243408214,6.608920097351188],[101.16149139404314,6.603359222412166],[101.1694717407226,6.604199886322078],[101.18036651611345,6.5986299514771645],[101.186050415039,6.599709987640381],[101.19918823242216,6.596971035003605],[101.2149505615235,6.5957489013671875],[101.21871948242188,6.59775018692028],[101.22386932373047,6.60469913482666],[101.22524261474615,6.6086487770081135],[101.23204803466814,6.615859985351676],[101.23918914794945,6.633409976959342],[101.24917602539074,6.644391059875545],[101.25312042236334,6.64759016036993],[101.27304840087908,6.655801773071403],[101.27771759033226,6.659781932830867],[101.27886199951195,6.666551113128776],[101.28450775146501,6.670119762420768],[101.28337097167986,6.675149917602539],[101.28501129150419,6.680209159851188],[101.29148101806669,6.682159900665397],[101.29711151123047,6.6774401664734455],[101.29595947265642,6.6739897727967445],[101.29039764404291,6.669930934906063],[101.28959655761747,6.664560794830322],[101.2922821044923,6.6587610244751545],[101.29631805419939,6.654429912567082],[101.29908752441412,6.645740032196102],[101.29782104492182,6.633221149444637],[101.30335235595697,6.622091770172119],[101.3016510009765,6.618309974670467],[101.29286956787104,6.6159400939941975],[101.29335021972679,6.601369857788029],[101.29981231689459,6.588140964508057],[101.29754638671898,6.578650951385498],[101.30500030517584,6.568360805511418],[101.31227111816435,6.566350936889705],[101.31874847412115,6.568690776825008],[101.32383728027344,6.563758850097713],[101.34027862548851,6.554171085357723],[101.34429168701178,6.561929225921631],[101.35909271240251,6.561409950256348],[101.37242889404314,6.565820217132625],[101.38015747070318,6.569330215454158],[101.39032745361322,6.568109989166317],[101.40075683593756,6.574150085449162],[101.40792083740251,6.581231117248478],[101.41349792480474,6.583380222320557],[101.41593170166033,6.588661193847656],[101.42653656005888,6.595090866088867],[101.43270874023455,6.591800212860164],[101.43744659423822,6.5917811393737225],[101.443901062012,6.581970214843693],[101.44860076904303,6.57742977142334],[101.45258331298828,6.576469898223934],[101.45728302001947,6.581460952758789],[101.45976257324213,6.591011047363338],[101.4584732055664,6.595090866088867],[101.47023773193371,6.596611022949332],[101.47647857666021,6.594211101531982],[101.48323059082026,6.601369857788029],[101.4915390014649,6.604401111602783],[101.49677276611322,6.599881172180176],[101.50321960449247,6.604569911956901],[101.50833892822271,6.60260009765625],[101.5216064453125,6.588661193847656],[101.52233123779291,6.583170890808219],[101.51844787597662,6.579970836639404],[101.51828765869169,6.5761399269104],[101.5262374877932,6.571209907531681],[101.52902984619158,6.563029766082877],[101.53565216064464,6.555951118469181],[101.54622650146484,6.55512094497692],[101.5550460815432,6.553299903869686],[101.5622329711914,6.549950122833309],[101.56815338134766,6.550510883331242],[101.57495117187511,6.554320812225399],[101.58258056640636,6.55600118637085],[101.58802032470709,6.562359809875545],[101.59310913085955,6.565400123596135]]]},"properties":{"ID_0":228,"ISO":"TH-95","NAME_0":"Thailand","ID_1":76,"NAME_1":"Yala","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ยะลา","VARNAME_1":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.77005767822271,16.193710327148438],[104.77162170410162,16.185842514038086],[104.77896881103533,16.18433952331543],[104.78169250488287,16.181690216064567],[104.79492950439464,16.154319763183707],[104.80793762207048,16.16002082824707],[104.81466674804688,16.155599594116268],[104.822563171387,16.156280517578068],[104.82659149169933,16.15370941162115],[104.82762908935547,16.149539947509766],[104.82698059082043,16.140190124511776],[104.82440948486334,16.13408088684082],[104.81964874267584,16.130268096923828],[104.82145690917963,16.119979858398494],[104.81656646728516,16.105470657348633],[104.81726074218744,16.09659957885748],[104.81494140625028,16.09342002868658],[104.80503845214855,16.093770980835018],[104.79737091064459,16.100561141967773],[104.7918319702149,16.102872848510742],[104.78714752197283,16.10844039916998],[104.77997589111334,16.10519981384283],[104.77147674560558,16.099229812622127],[104.76519012451166,16.096628189086857],[104.75652313232445,16.096452713012695],[104.74246215820341,16.097549438476562],[104.7393417358399,16.100151062011832],[104.73068237304682,16.10012054443365],[104.71935272216803,16.102500915527287],[104.71755218505876,16.105150222778377],[104.70556640625,16.10765075683588],[104.70433044433605,16.11226081848139],[104.69699096679693,16.11174964904785],[104.68608856201172,16.114311218261662],[104.68016052246111,16.117229461670036],[104.67717742919945,16.11615943908697],[104.66847229003918,16.117811203002987],[104.66651916503912,16.120679855346737],[104.65380096435541,16.11922836303711],[104.64746093750028,16.121099472046012],[104.62953186035185,16.119251251220703],[104.62548828125023,16.121238708496094],[104.61598968505888,16.11341094970703],[104.60927581787132,16.111589431762752],[104.60746765136713,16.10655975341797],[104.59507751464861,16.105491638183707],[104.58251190185564,16.098310470581055],[104.5699462890625,16.09869003295904],[104.5636901855471,16.096498489379883],[104.5605010986331,16.086309432983455],[104.55742645263678,16.084461212158146],[104.55065917968767,16.074560165405387],[104.5414505004884,16.05820083618164],[104.53605651855474,16.0516300201416],[104.53292083740251,16.036251068115234],[104.52362823486334,16.030080795288143],[104.51815032959013,16.023971557617188],[104.5204391479495,16.018880844116325],[104.530776977539,16.006040573120174],[104.53331756591797,15.999720573425407],[104.52799987792974,15.998640060424918],[104.52555847167974,15.988520622253418],[104.52002716064459,15.98197078704834],[104.51268005371111,15.979830741882381],[104.50678253173845,15.980311393737736],[104.50315856933611,15.975172042846793],[104.5037002563476,15.962181091308594],[104.50537872314482,15.956669807434196],[104.50563049316423,15.948781967163086],[104.50225067138678,15.949159622192496],[104.4966430664062,15.94103145599371],[104.49076843261736,15.939390182495117],[104.48580169677751,15.93107128143322],[104.48378753662115,15.932209968566951],[104.47943115234403,15.924830436706543],[104.47097778320318,15.91644096374523],[104.46724700927746,15.909480094909725],[104.47135162353521,15.908271789550895],[104.4705810546875,15.902590751648006],[104.45632934570318,15.899499893188533],[104.45671844482428,15.895580291748104],[104.46026611328125,15.89087963104248],[104.45407867431669,15.87852954864502],[104.4590530395509,15.873591423034725],[104.4525604248048,15.870039939880428],[104.45021057128929,15.865999221801871],[104.45204925537126,15.861860275268612],[104.45893096923828,15.857071876525879],[104.45812988281267,15.85203933715826],[104.4623184204101,15.84414005279541],[104.46176147460955,15.84037017822277],[104.45401000976568,15.835821151733398],[104.45011901855486,15.830670356750488],[104.44703674316418,15.818461418151912],[104.44216918945318,15.815170288085994],[104.44180297851568,15.81145000457775],[104.43782043457037,15.808760643005371],[104.4422760009765,15.8046493530274],[104.43370056152338,15.79214096069336],[104.43496704101568,15.78549957275385],[104.43373107910173,15.779357910156364],[104.43018341064476,15.773059844970703],[104.43342590332054,15.76422023773199],[104.4327697753908,15.75973033905035],[104.4361724853515,15.754071235656795],[104.43253326416027,15.749119758606014],[104.42807769775413,15.751349449157715],[104.42137145996094,15.747090339660588],[104.4244918823245,15.739740371704215],[104.43305969238287,15.73547077178955],[104.42768859863287,15.714010238647518],[104.42508697509794,15.71222114562994],[104.42605590820324,15.706760406494254],[104.42218780517584,15.704620361328068],[104.4245681762697,15.699971199035588],[104.42531585693354,15.693780899047965],[104.43519592285185,15.699000358581543],[104.44380950927729,15.69775104522705],[104.44175720214844,15.686680793762207],[104.44629669189447,15.680740356445426],[104.44267272949213,15.675331115722713],[104.44673919677734,15.674461364746207],[104.44790649414068,15.669309616088867],[104.43930816650396,15.666790962219181],[104.44815826416044,15.659511566162053],[104.44851684570318,15.653270721435547],[104.44367980957031,15.646741867065543],[104.44167327880888,15.64136123657238],[104.44915008544916,15.63222980499279],[104.44593811035173,15.629320144653263],[104.44526672363287,15.621709823608455],[104.45186614990234,15.615909576416072],[104.46401214599621,15.626322746276855],[104.46650695800776,15.626250267028809],[104.46919250488298,15.620451927185172],[104.46877288818371,15.6134414672851],[104.465072631836,15.610519409179744],[104.46485900878906,15.604089736938533],[104.46948242187506,15.601651191711483],[104.46714782714844,15.595891952514648],[104.46125793457037,15.59160041809082],[104.46668243408214,15.585400581359863],[104.48352050781267,15.588479995727653],[104.49057006835955,15.592411994934082],[104.49327087402344,15.585880279540959],[104.49606323242182,15.587599754333553],[104.50211334228521,15.586859703064079],[104.50858306884771,15.582578659057674],[104.50937652587919,15.575851440429801],[104.51302337646496,15.569300651550293],[104.51239013671898,15.561440467834473],[104.49668884277344,15.549810409545955],[104.4943923950197,15.55004024505621],[104.48535919189482,15.544440269470215],[104.48496246337919,15.538510322570858],[104.48155212402355,15.535319328308049],[104.47229766845703,15.539682388305607],[104.45890045166033,15.53973197937023],[104.44934082031244,15.538400650024414],[104.43361663818382,15.53934192657482],[104.42118072509766,15.534870147705135],[104.41382598876982,15.534671783447322],[104.40764617919928,15.537421226501522],[104.40570068359392,15.541329383850211],[104.40112304687517,15.542901992797965],[104.39633941650408,15.525639533996525],[104.38990783691412,15.51299953460699],[104.38630676269554,15.503319740295467],[104.38590240478521,15.49408054351801],[104.39097595214838,15.48859024047863],[104.38732910156261,15.483200073242188],[104.3789672851562,15.464079856872502],[104.374771118164,15.456391334533748],[104.38630676269554,15.444540977478084],[104.39008331298828,15.426492691040096],[104.38864898681669,15.414521217346305],[104.39347076416033,15.407222747802734],[104.39212036132807,15.402880668640194],[104.38582611083979,15.400951385498104],[104.38288116455101,15.39703273773199],[104.3849487304688,15.39155101776123],[104.3906478881836,15.386311531066951],[104.39598083496094,15.38467121124279],[104.40524291992216,15.387601852416992],[104.41055297851568,15.384950637817496],[104.41429901123047,15.379440307617188],[104.41857147216803,15.366552352905387],[104.42124938964872,15.361420631408748],[104.42247009277361,15.343311309814453],[104.41696166992188,15.34032058715826],[104.41970062255865,15.336031913757324],[104.41436004638678,15.329889297485352],[104.41767883300776,15.326231002807674],[104.41826629638689,15.320699691772518],[104.40705108642578,15.288311004638786],[104.38626861572266,15.291941642761174],[104.38421630859398,15.294881820678654],[104.38195037841803,15.307121276855412],[104.37770843505865,15.317170143127498],[104.37477874755876,15.320469856262207],[104.37069702148443,15.320809364318904],[104.36827850341791,15.327271461486873],[104.35708618164062,15.342581748962346],[104.34922790527361,15.341461181640568],[104.34571838378935,15.34408187866211],[104.33531188964861,15.342299461364803],[104.32308197021479,15.344801902771053],[104.3162002563476,15.3406400680542],[104.30770874023443,15.340800285339355],[104.30393218994146,15.343521118164176],[104.29856109619146,15.343791961670036],[104.29299926757812,15.352640151977539],[104.28333282470709,15.356060981750602],[104.27787780761713,15.363250732421875],[104.27435302734398,15.363389968872184],[104.26288604736334,15.371221542358398],[104.25312042236328,15.37061977386469],[104.24909210205095,15.37182998657238],[104.24436950683594,15.377349853515625],[104.2374572753908,15.393341064453068],[104.23506164550804,15.402529716491813],[104.2354583740235,15.409920692443961],[104.23223876953153,15.415370941162053],[104.22522735595697,15.418600082397518],[104.217788696289,15.428750991821346],[104.2038879394533,15.44596099853527],[104.19512176513689,15.459030151367244],[104.19313049316435,15.463500976562614],[104.1837768554688,15.4769802093507],[104.16570281982433,15.491520881652832],[104.15885925292963,15.495421409606934],[104.14865875244163,15.497750282287598],[104.13907623291016,15.505640029907283],[104.13533020019537,15.514360427856445],[104.13926696777344,15.526570320129508],[104.13990020751959,15.53450965881359],[104.13153839111357,15.554349899292049],[104.12464904785162,15.561809539795036],[104.1255493164063,15.565959930419979],[104.12301635742205,15.57340145111084],[104.12490081787104,15.57643032073969],[104.15328216552763,15.593620300292912],[104.16205596923857,15.600709915161076],[104.16596221923828,15.602080345153865],[104.18268585205072,15.60330963134777],[104.21150970459001,15.607530593872184],[104.21431732177763,15.61277961730957],[104.2113876342774,15.616832733154297],[104.20442962646479,15.613801002502555],[104.19532775878906,15.611980438232536],[104.19145965576166,15.608771324157772],[104.18888854980474,15.615401268005371],[104.1843185424807,15.618430137634277],[104.18630218505871,15.623590469360465],[104.19117736816412,15.626219749450684],[104.19020843505865,15.631719589233342],[104.18224334716803,15.629369735717887],[104.17401885986351,15.630331993103084],[104.17304229736334,15.634769439697266],[104.17949676513672,15.636740684509277],[104.1801376342774,15.639270782470817],[104.175765991211,15.645059585571346],[104.17341613769531,15.655139923095703],[104.17771911621105,15.659880638122615],[104.18194580078142,15.655720710754338],[104.1863784790039,15.655769348144645],[104.18942260742188,15.659800529480037],[104.18856048584013,15.665531158447322],[104.1837768554688,15.666520118713379],[104.17854309082031,15.662888526916504],[104.17843627929693,15.668960571289006],[104.17626953125,15.671629905700684],[104.16996765136719,15.672830581665039],[104.16947174072271,15.678421974182186],[104.16430664062506,15.685911178588867],[104.1547470092774,15.68914985656744],[104.15339660644537,15.69552040100092],[104.14624023437511,15.701411247253532],[104.14218139648443,15.71030044555664],[104.13877868652372,15.707401275634766],[104.1348876953125,15.699799537658748],[104.13018035888678,15.695091247558537],[104.12406158447271,15.695908546447754],[104.1199188232423,15.701850891113338],[104.12087249755871,15.704620361328068],[104.13231658935558,15.704040527343693],[104.13009643554688,15.708942413330078],[104.12953186035156,15.72037124633789],[104.13202667236328,15.724531173706112],[104.1435928344726,15.727240562439079],[104.1362075805664,15.733401298523006],[104.13453674316429,15.74275016784668],[104.14141082763695,15.746489524841365],[104.14150238037104,15.753351211547852],[104.13439941406278,15.752889633178711],[104.12882995605474,15.767591476440487],[104.13455963134771,15.77208042144781],[104.13555908203136,15.77781009674078],[104.1400375366211,15.784321784973145],[104.1367492675783,15.796499252319279],[104.13420104980497,15.799101829528865],[104.12651062011724,15.800589561462402],[104.1208877563476,15.803819656372184],[104.11223602294928,15.806121826171875],[104.10607147216797,15.816169738769645],[104.09961700439459,15.822850227355957],[104.07836151123041,15.837359428405819],[104.07285308837908,15.836170196533203],[104.07242584228527,15.825241088867244],[104.07948303222668,15.824191093444881],[104.08103179931635,15.81980133056652],[104.07125091552763,15.812991142273063],[104.06111145019554,15.809921264648438],[104.05706787109375,15.806841850280819],[104.03645324707031,15.794989585876579],[104.02678680419928,15.797821044921932],[104.01634979248058,15.795710563659668],[104.0108871459961,15.793201446533317],[104.00354003906278,15.794090270996094],[104.00189208984392,15.796471595764217],[104.0044784545899,15.801779747009334],[104.00260925292997,15.808589935302791],[104.0130233764649,15.814981460571289],[104.01132965087913,15.81962966918951],[104.01242065429688,15.830071449279842],[104.01692962646496,15.827989578247127],[104.01399230957054,15.837910652160645],[104.02356719970732,15.838561058044434],[104.02082061767578,15.845970153808594],[104.0295715332033,15.850761413574219],[104.03057098388678,15.856439590454215],[104.02783203125017,15.862361907959041],[104.03092193603516,15.86627006530773],[104.02636718750006,15.870671272277775],[104.03404998779303,15.873470306396598],[104.027328491211,15.87664890289318],[104.02369689941412,15.881071090698242],[104.01734924316423,15.884229660034293],[104.02037048339838,15.888261795044002],[104.01709747314482,15.891241073608455],[104.0183715820313,15.898481369018612],[104.02143859863304,15.903950691223201],[104.01748657226591,15.909960746765137],[104.02448272705101,15.909560203552303],[104.03050231933611,15.917551040649414],[104.02912902832043,15.921588897705021],[104.03504943847668,15.927601814270076],[104.03842163085943,15.9376802444458],[104.0345458984375,15.94657993316656],[104.03193664550787,15.94723033905035],[104.02909851074247,15.958860397338867],[104.02252960205078,15.9535293579101],[104.0232925415039,15.95060062408453],[104.01716613769548,15.947299957275504],[104.01361846923851,15.95642185211176],[104.01640319824236,15.958181381225643],[104.01798248291021,15.963689804077205],[104.0243606567384,15.970450401306266],[104.02532196044933,15.97362041473383],[104.03177642822294,15.978097915649471],[104.0322494506836,15.980411529541072],[104.0503921508789,15.982761383056754],[104.0524673461914,15.984681129455566],[104.05974578857428,15.984902381896973],[104.06633758544916,15.982489585876408],[104.0783767700197,15.979801177978516],[104.08265686035179,15.980722427368164],[104.08555603027372,15.97635269165039],[104.09317779541021,15.975350379943848],[104.10531616210938,15.982269287109432],[104.10890197753923,15.988530158996696],[104.10887145996088,15.994380950927791],[104.1030883789063,16.002849578857422],[104.1126327514649,16.015108108520565],[104.11367034912126,16.01922035217285],[104.11223602294928,16.028150558471737],[104.11569213867216,16.03047180175787],[104.11553955078136,16.039110183715877],[104.11139678955095,16.044179916381893],[104.10408782958996,16.04820060729986],[104.10115814209007,16.05626106262207],[104.10117340087896,16.065410614013672],[104.09778594970732,16.07069015502941],[104.10186004638689,16.081819534301758],[104.10511016845703,16.085588455200195],[104.10301971435547,16.09255981445324],[104.10968017578142,16.09655952453619],[104.11128234863287,16.1049098968507],[104.11383819580072,16.10484123229986],[104.11801147460949,16.112230300903434],[104.13382720947294,16.111169815063477],[104.1394958496096,16.10832023620617],[104.15471649169922,16.116580963134766],[104.1566162109375,16.119150161743164],[104.1589126586914,16.12845039367687],[104.165771484375,16.129699707031307],[104.1687469482423,16.14022827148449],[104.18067932128912,16.14698028564453],[104.18688964843744,16.14702033996582],[104.19122314453153,16.145090103149414],[104.19863128662132,16.149549484252873],[104.20677185058594,16.161130905151424],[104.20942687988298,16.161670684814567],[104.21270751953125,16.155759811401424],[104.21761322021501,16.155250549316463],[104.232231140137,16.166959762573242],[104.23145294189459,16.169839859008903],[104.23860168457048,16.180089950561523],[104.24093627929688,16.185791015625114],[104.24458312988287,16.187660217285213],[104.24633789062506,16.198930740356445],[104.24954223632818,16.19919013977062],[104.25219726562506,16.205049514770565],[104.25222778320335,16.21560859680187],[104.2616577148437,16.223100662231445],[104.27117156982433,16.224710464477596],[104.27693176269548,16.222949981689396],[104.28140258789085,16.225250244140682],[104.28768920898443,16.231340408325195],[104.30039215087908,16.237989425659237],[104.29940795898449,16.250770568847713],[104.30845642089844,16.255220413208065],[104.31262207031267,16.25434112548828],[104.32077789306635,16.261079788208008],[104.32585906982428,16.263309478759822],[104.32881927490251,16.2679119110108],[104.33397674560564,16.270809173583928],[104.33889007568371,16.28197097778326],[104.34571075439459,16.28972816467291],[104.34268951416044,16.297571182251033],[104.34461212158214,16.305080413818416],[104.35053253173822,16.312330245971737],[104.353271484375,16.32316970825201],[104.36865997314447,16.338359832763672],[104.37535858154314,16.342252731323242],[104.39657592773438,16.347471237182674],[104.40828704834013,16.347450256347656],[104.41587829589866,16.34404945373535],[104.42542266845709,16.343761444091854],[104.43235778808588,16.344741821289062],[104.44214630126953,16.34412956237793],[104.44901275634766,16.342571258544922],[104.46212768554682,16.341199874878043],[104.46746063232416,16.343460083007812],[104.47706604003906,16.3400497436524],[104.49359893798822,16.34135246276861],[104.50411224365251,16.34008979797369],[104.50739288330078,16.336849212646484],[104.51159667968756,16.32612991333002],[104.51029205322288,16.31899070739746],[104.51602935791021,16.314220428466854],[104.52333068847668,16.31615066528326],[104.52633666992193,16.314769744873104],[104.53559112548845,16.316360473632812],[104.5404815673831,16.3152694702149],[104.54534149169922,16.311008453369254],[104.55342102050787,16.30867195129406],[104.5532684326173,16.30220985412609],[104.55947113037115,16.29331016540533],[104.5656127929688,16.282239913940487],[104.56474304199213,16.276100158691406],[104.57698059082048,16.263200759887695],[104.57866668701166,16.257850646972713],[104.57820129394537,16.2508602142334],[104.58007812500006,16.244180679321346],[104.58831024169928,16.236360549926815],[104.59390258789074,16.239280700683594],[104.6012191772461,16.238531112670955],[104.60320281982428,16.23603057861328],[104.60488128662115,16.22376060485834],[104.61109161376947,16.222089767456055],[104.61506652832043,16.21511077880865],[104.63043975830084,16.208932876587028],[104.64196777343761,16.211660385131893],[104.64916229248053,16.215320587158146],[104.65312957763678,16.2194499969483],[104.65946197509771,16.222330093383732],[104.6635208129884,16.22844123840332],[104.66696166992182,16.239830017089787],[104.67418670654325,16.228961944580135],[104.68173217773443,16.224269866943303],[104.69055938720709,16.22455024719244],[104.69600677490234,16.220939636230412],[104.6949310302735,16.213420867919922],[104.70065307617193,16.21140289306635],[104.7068862915039,16.205602645874137],[104.71118927001982,16.20845031738287],[104.71814727783203,16.202070236206055],[104.73754882812494,16.199871063232365],[104.74675750732422,16.200599670410156],[104.74861907959001,16.20231056213379],[104.75477600097656,16.196411132812557],[104.76393127441406,16.19849014282238],[104.77005767822271,16.193710327148438]]]},"properties":{"ID_0":228,"ISO":"TH-35","NAME_0":"Thailand","ID_1":77,"NAME_1":"Yasothon","TYPE_1":"Changwat","ENGTYPE_1":"Province","NL_NAME_1":"ยโสธร","VARNAME_1":""}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/timorleste.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/timorleste.geojson
new file mode 100644
index 0000000..a1a7d86
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/timorleste.geojson
@@ -0,0 +1,20 @@
+{
+"type": "FeatureCollection",
+"name": "timorleste",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+"features": [
+{ "type": "Feature", "properties": { "NAME": "Aileu", "ISO": "TL-AL" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.7661, -8.571 ], [ 125.7703, -8.5872 ], [ 125.7675, -8.5953 ], [ 125.7605, -8.5988 ], [ 125.7583, -8.6044 ], [ 125.7668, -8.6124 ], [ 125.7673, -8.6168 ], [ 125.7756, -8.6259 ], [ 125.7741, -8.6356 ], [ 125.7817, -8.6489 ], [ 125.7861, -8.65 ], [ 125.7881, -8.6635 ], [ 125.7916, -8.6652 ], [ 125.7939, -8.6732 ], [ 125.8046, -8.6774 ], [ 125.8085, -8.6767 ], [ 125.8141, -8.6847 ], [ 125.8121, -8.6942 ], [ 125.8121, -8.7104 ], [ 125.8102, -8.713 ], [ 125.8179, -8.7288 ], [ 125.8073, -8.7373 ], [ 125.8054, -8.745 ], [ 125.797, -8.7492 ], [ 125.7885, -8.7425 ], [ 125.7856, -8.744 ], [ 125.7785, -8.7392 ], [ 125.7705, -8.7391 ], [ 125.7711, -8.7482 ], [ 125.7681, -8.7547 ], [ 125.7539, -8.7623 ], [ 125.7529, -8.7726 ], [ 125.7487, -8.7741 ], [ 125.7453, -8.7801 ], [ 125.7415, -8.7805 ], [ 125.7363, -8.7865 ], [ 125.7233, -8.7822 ], [ 125.7252, -8.777 ], [ 125.707, -8.7625 ], [ 125.7012, -8.7644 ], [ 125.6957, -8.763 ], [ 125.6868, -8.7568 ], [ 125.6812, -8.7558 ], [ 125.67, -8.7608 ], [ 125.6585, -8.7626 ], [ 125.6506, -8.7657 ], [ 125.6466, -8.7709 ], [ 125.645, -8.7874 ], [ 125.6385, -8.7879 ], [ 125.62, -8.7856 ], [ 125.6133, -8.7886 ], [ 125.6083, -8.788 ], [ 125.6052, -8.7949 ], [ 125.6079, -8.7993 ], [ 125.6075, -8.8114 ], [ 125.6093, -8.8197 ], [ 125.5975, -8.8244 ], [ 125.5942, -8.8232 ], [ 125.5827, -8.8255 ], [ 125.5771, -8.8314 ], [ 125.5693, -8.8331 ], [ 125.5635, -8.8402 ], [ 125.5572, -8.8408 ], [ 125.5487, -8.836 ], [ 125.5424, -8.8386 ], [ 125.5364, -8.8447 ], [ 125.531, -8.8462 ], [ 125.5187, -8.8463 ], [ 125.5129, -8.8448 ], [ 125.5074, -8.8487 ], [ 125.4972, -8.8508 ], [ 125.4929, -8.8282 ], [ 125.4946, -8.8243 ], [ 125.4913, -8.8173 ], [ 125.4862, -8.8128 ], [ 125.4794, -8.7999 ], [ 125.4727, -8.7987 ], [ 125.4651, -8.8 ], [ 125.4605, -8.7963 ], [ 125.4593, -8.7863 ], [ 125.4546, -8.7826 ], [ 125.4615, -8.7733 ], [ 125.464, -8.7655 ], [ 125.4718, -8.7607 ], [ 125.47, -8.7535 ], [ 125.4761, -8.7451 ], [ 125.4757, -8.7368 ], [ 125.4649, -8.7298 ], [ 125.4588, -8.7298 ], [ 125.4552, -8.7227 ], [ 125.4644, -8.7204 ], [ 125.4773, -8.7233 ], [ 125.4838, -8.7232 ], [ 125.4865, -8.7058 ], [ 125.4968, -8.71 ], [ 125.5099, -8.7076 ], [ 125.5177, -8.6991 ], [ 125.526, -8.693 ], [ 125.5352, -8.6774 ], [ 125.5347, -8.6703 ], [ 125.5301, -8.6684 ], [ 125.5241, -8.6562 ], [ 125.5215, -8.6465 ], [ 125.5111, -8.6437 ], [ 125.5033, -8.638 ], [ 125.5039, -8.6351 ], [ 125.5141, -8.6346 ], [ 125.5129, -8.6278 ], [ 125.5157, -8.6228 ], [ 125.5239, -8.6189 ], [ 125.5273, -8.6137 ], [ 125.5322, -8.6139 ], [ 125.5426, -8.6199 ], [ 125.5626, -8.6269 ], [ 125.5734, -8.6229 ], [ 125.5796, -8.6189 ], [ 125.5893, -8.6086 ], [ 125.5911, -8.603 ], [ 125.6086, -8.5992 ], [ 125.6028, -8.5895 ], [ 125.6195, -8.583 ], [ 125.6421, -8.5933 ], [ 125.6469, -8.5919 ], [ 125.6534, -8.5843 ], [ 125.659, -8.5711 ], [ 125.6639, -8.5699 ], [ 125.6638, -8.5773 ], [ 125.6758, -8.5873 ], [ 125.6855, -8.5881 ], [ 125.688, -8.5821 ], [ 125.6857, -8.5715 ], [ 125.6901, -8.5689 ], [ 125.6975, -8.5588 ], [ 125.706, -8.5613 ], [ 125.7111, -8.5652 ], [ 125.723, -8.5636 ], [ 125.7315, -8.5654 ], [ 125.7427, -8.5655 ], [ 125.7536, -8.5639 ], [ 125.7607, -8.5663 ], [ 125.7661, -8.571 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Ainaro", "ISO": "TL-AN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.7233, -8.7822 ], [ 125.7175, -8.7856 ], [ 125.7084, -8.7862 ], [ 125.6984, -8.7961 ], [ 125.6905, -8.7979 ], [ 125.6888, -8.8027 ], [ 125.6824, -8.8099 ], [ 125.6851, -8.8134 ], [ 125.6804, -8.8184 ], [ 125.6854, -8.8281 ], [ 125.6834, -8.8327 ], [ 125.6885, -8.8415 ], [ 125.6826, -8.8464 ], [ 125.6855, -8.8521 ], [ 125.6839, -8.8666 ], [ 125.6902, -8.8691 ], [ 125.6865, -8.8747 ], [ 125.6872, -8.8892 ], [ 125.682, -8.899 ], [ 125.6766, -8.9027 ], [ 125.6661, -8.8962 ], [ 125.6606, -8.8969 ], [ 125.6494, -8.9207 ], [ 125.6417, -8.9212 ], [ 125.6335, -8.9155 ], [ 125.6247, -8.9141 ], [ 125.6209, -8.9184 ], [ 125.6217, -8.9232 ], [ 125.6144, -8.9308 ], [ 125.6133, -8.9381 ], [ 125.6078, -8.9395 ], [ 125.6067, -8.9479 ], [ 125.5996, -8.9529 ], [ 125.5939, -8.9613 ], [ 125.5921, -8.9718 ], [ 125.5943, -8.9808 ], [ 125.5903, -8.9941 ], [ 125.5875, -9.0123 ], [ 125.5933, -9.016 ], [ 125.5923, -9.0241 ], [ 125.596, -9.0303 ], [ 125.5958, -9.0417 ], [ 125.6119, -9.0503 ], [ 125.6278, -9.0562 ], [ 125.6292, -9.0616 ], [ 125.6372, -9.0687 ], [ 125.6441, -9.0675 ], [ 125.6538, -9.0753 ], [ 125.6664, -9.0718 ], [ 125.6709, -9.0734 ], [ 125.6739, -9.0794 ], [ 125.6839, -9.0838 ], [ 125.687, -9.092 ], [ 125.6911, -9.094 ], [ 125.6917, -9.1075 ], [ 125.687, -9.1184 ], [ 125.6759, -9.1192 ], [ 125.6699, -9.1243 ], [ 125.6706, -9.1297 ], [ 125.6672, -9.136 ], [ 125.6701, -9.1512 ], [ 125.6741, -9.1609 ], [ 125.6748, -9.1699 ], [ 125.6773, -9.1732 ], [ 125.6898, -9.1788 ], [ 125.7016, -9.1942 ], [ 125.6922, -9.1967 ], [ 125.6836, -9.2014 ], [ 125.6708, -9.2019 ], [ 125.6572, -9.2006 ], [ 125.6253, -9.1872 ], [ 125.6144, -9.1853 ], [ 125.5975, -9.1869 ], [ 125.5886, -9.1897 ], [ 125.5732, -9.199 ], [ 125.5589, -9.2103 ], [ 125.545, -9.2192 ], [ 125.5161, -9.2214 ], [ 125.5034, -9.2257 ], [ 125.5066, -9.2149 ], [ 125.5197, -9.1963 ], [ 125.5277, -9.1942 ], [ 125.5321, -9.186 ], [ 125.5352, -9.1739 ], [ 125.54, -9.163 ], [ 125.5304, -9.1598 ], [ 125.5251, -9.1519 ], [ 125.5248, -9.1466 ], [ 125.5209, -9.1421 ], [ 125.4948, -9.1431 ], [ 125.4952, -9.1398 ], [ 125.4739, -9.1274 ], [ 125.481, -9.1049 ], [ 125.4797, -9.0965 ], [ 125.4744, -9.0873 ], [ 125.4765, -9.0814 ], [ 125.4749, -9.0764 ], [ 125.468, -9.072 ], [ 125.4637, -9.0655 ], [ 125.445, -9.0623 ], [ 125.4447, -9.0565 ], [ 125.4488, -9.0506 ], [ 125.4455, -9.0398 ], [ 125.4501, -9.029 ], [ 125.4481, -9.0223 ], [ 125.4434, -9.0184 ], [ 125.4411, -9.0108 ], [ 125.4296, -9.0071 ], [ 125.4259, -9.0034 ], [ 125.4243, -8.9947 ], [ 125.43, -8.9852 ], [ 125.4488, -8.9759 ], [ 125.4508, -8.9702 ], [ 125.4565, -8.9644 ], [ 125.4519, -8.9545 ], [ 125.4602, -8.9439 ], [ 125.4727, -8.9362 ], [ 125.4806, -8.9299 ], [ 125.4817, -8.9216 ], [ 125.4912, -8.9159 ], [ 125.4947, -8.9106 ], [ 125.4921, -8.8967 ], [ 125.4984, -8.8936 ], [ 125.5041, -8.8832 ], [ 125.5176, -8.8779 ], [ 125.5223, -8.8722 ], [ 125.5074, -8.8487 ], [ 125.5129, -8.8448 ], [ 125.5187, -8.8463 ], [ 125.531, -8.8462 ], [ 125.5364, -8.8447 ], [ 125.5424, -8.8386 ], [ 125.5487, -8.836 ], [ 125.5572, -8.8408 ], [ 125.5635, -8.8402 ], [ 125.5693, -8.8331 ], [ 125.5771, -8.8314 ], [ 125.5827, -8.8255 ], [ 125.5942, -8.8232 ], [ 125.5975, -8.8244 ], [ 125.6093, -8.8197 ], [ 125.6075, -8.8114 ], [ 125.6079, -8.7993 ], [ 125.6052, -8.7949 ], [ 125.6083, -8.788 ], [ 125.6133, -8.7886 ], [ 125.62, -8.7856 ], [ 125.6385, -8.7879 ], [ 125.645, -8.7874 ], [ 125.6466, -8.7709 ], [ 125.6506, -8.7657 ], [ 125.6585, -8.7626 ], [ 125.67, -8.7608 ], [ 125.6812, -8.7558 ], [ 125.6868, -8.7568 ], [ 125.6957, -8.763 ], [ 125.7012, -8.7644 ], [ 125.707, -8.7625 ], [ 125.7252, -8.777 ], [ 125.7233, -8.7822 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Oecusse", "ISO": "TL-OE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.4473, -9.1669 ], [ 124.4663, -9.173 ], [ 124.4779, -9.1756 ], [ 124.4808, -9.192 ], [ 124.4761, -9.2032 ], [ 124.4685, -9.2083 ], [ 124.466, -9.2247 ], [ 124.4671, -9.2381 ], [ 124.4645, -9.2429 ], [ 124.4648, -9.251 ], [ 124.4548, -9.2662 ], [ 124.4558, -9.2817 ], [ 124.4622, -9.2991 ], [ 124.4543, -9.3086 ], [ 124.4468, -9.3064 ], [ 124.44, -9.3147 ], [ 124.4385, -9.3336 ], [ 124.4332, -9.3315 ], [ 124.4256, -9.3323 ], [ 124.4214, -9.3358 ], [ 124.4101, -9.3371 ], [ 124.4044, -9.3415 ], [ 124.4011, -9.3521 ], [ 124.3966, -9.3558 ], [ 124.3863, -9.3601 ], [ 124.3803, -9.3573 ], [ 124.3784, -9.3702 ], [ 124.3741, -9.3764 ], [ 124.3778, -9.3789 ], [ 124.3812, -9.3875 ], [ 124.3803, -9.3967 ], [ 124.368, -9.4084 ], [ 124.3629, -9.4188 ], [ 124.3541, -9.4241 ], [ 124.3509, -9.4289 ], [ 124.3506, -9.4382 ], [ 124.3611, -9.4456 ], [ 124.3652, -9.4594 ], [ 124.3565, -9.4642 ], [ 124.3557, -9.4784 ], [ 124.3497, -9.4856 ], [ 124.3427, -9.4827 ], [ 124.3241, -9.4899 ], [ 124.3164, -9.4957 ], [ 124.3034, -9.4942 ], [ 124.2878, -9.5047 ], [ 124.2782, -9.503 ], [ 124.2794, -9.4889 ], [ 124.2831, -9.4796 ], [ 124.2882, -9.4729 ], [ 124.2835, -9.4582 ], [ 124.287, -9.4512 ], [ 124.2842, -9.4449 ], [ 124.2751, -9.4353 ], [ 124.2757, -9.4252 ], [ 124.2711, -9.4147 ], [ 124.2629, -9.4039 ], [ 124.2621, -9.3973 ], [ 124.2522, -9.3931 ], [ 124.2436, -9.3829 ], [ 124.2388, -9.3816 ], [ 124.235, -9.3741 ], [ 124.2303, -9.3757 ], [ 124.2163, -9.3656 ], [ 124.2109, -9.3701 ], [ 124.2045, -9.3711 ], [ 124.2037, -9.3773 ], [ 124.1922, -9.3778 ], [ 124.1898, -9.3842 ], [ 124.1816, -9.389 ], [ 124.1735, -9.3907 ], [ 124.1677, -9.3947 ], [ 124.1718, -9.3995 ], [ 124.161, -9.4125 ], [ 124.1623, -9.4189 ], [ 124.1584, -9.421 ], [ 124.1342, -9.4265 ], [ 124.1251, -9.4111 ], [ 124.1125, -9.4065 ], [ 124.1062, -9.409 ], [ 124.0931, -9.4092 ], [ 124.0609, -9.3594 ], [ 124.0536, -9.3518 ], [ 124.0491, -9.3501 ], [ 124.0452, -9.3442 ], [ 124.0453, -9.3359 ], [ 124.0641, -9.3321 ], [ 124.0737, -9.3246 ], [ 124.0838, -9.3276 ], [ 124.0963, -9.3242 ], [ 124.0998, -9.3195 ], [ 124.1106, -9.3104 ], [ 124.1222, -9.3097 ], [ 124.1283, -9.3067 ], [ 124.137, -9.2973 ], [ 124.1567, -9.2956 ], [ 124.1641, -9.2904 ], [ 124.1672, -9.2841 ], [ 124.173, -9.2782 ], [ 124.1799, -9.2641 ], [ 124.1851, -9.25 ], [ 124.2005, -9.2463 ], [ 124.2038, -9.244 ], [ 124.214, -9.2448 ], [ 124.2214, -9.2383 ], [ 124.233, -9.2372 ], [ 124.2385, -9.235 ], [ 124.2551, -9.2365 ], [ 124.2636, -9.2247 ], [ 124.2723, -9.2238 ], [ 124.2877, -9.216 ], [ 124.2947, -9.2151 ], [ 124.3028, -9.2106 ], [ 124.3058, -9.2017 ], [ 124.3119, -9.1982 ], [ 124.3194, -9.2003 ], [ 124.3308, -9.1963 ], [ 124.3495, -9.1962 ], [ 124.355, -9.1983 ], [ 124.3696, -9.1984 ], [ 124.3847, -9.193 ], [ 124.3906, -9.1873 ], [ 124.3956, -9.1881 ], [ 124.412, -9.1727 ], [ 124.4276, -9.1672 ], [ 124.4407, -9.1687 ], [ 124.4473, -9.1669 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Baucau", "ISO": "TL-BA" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.6954, -8.4249 ], [ 126.6977, -8.4343 ], [ 126.7029, -8.437 ], [ 126.7069, -8.4431 ], [ 126.7054, -8.4484 ], [ 126.7077, -8.4586 ], [ 126.7166, -8.4799 ], [ 126.7302, -8.4867 ], [ 126.7367, -8.4873 ], [ 126.741, -8.492 ], [ 126.7331, -8.4952 ], [ 126.7271, -8.5032 ], [ 126.723, -8.5043 ], [ 126.7235, -8.5163 ], [ 126.7305, -8.5212 ], [ 126.7368, -8.5281 ], [ 126.7481, -8.5312 ], [ 126.7556, -8.5435 ], [ 126.7589, -8.5539 ], [ 126.7708, -8.5592 ], [ 126.7836, -8.5674 ], [ 126.7861, -8.5824 ], [ 126.7926, -8.5844 ], [ 126.8012, -8.5921 ], [ 126.8045, -8.599 ], [ 126.8082, -8.5984 ], [ 126.8092, -8.6071 ], [ 126.8122, -8.6134 ], [ 126.8079, -8.6216 ], [ 126.8035, -8.6202 ], [ 126.7967, -8.623 ], [ 126.7854, -8.6242 ], [ 126.781, -8.6275 ], [ 126.7747, -8.6394 ], [ 126.766, -8.6464 ], [ 126.7638, -8.6567 ], [ 126.7548, -8.6568 ], [ 126.7478, -8.6651 ], [ 126.745, -8.6744 ], [ 126.737, -8.6842 ], [ 126.7299, -8.6871 ], [ 126.7348, -8.677 ], [ 126.7283, -8.6667 ], [ 126.7292, -8.6626 ], [ 126.7226, -8.6592 ], [ 126.7124, -8.6477 ], [ 126.705, -8.6485 ], [ 126.6754, -8.6447 ], [ 126.6664, -8.6386 ], [ 126.6536, -8.6357 ], [ 126.6449, -8.6474 ], [ 126.6274, -8.6513 ], [ 126.621, -8.6621 ], [ 126.6226, -8.6754 ], [ 126.6128, -8.6883 ], [ 126.5956, -8.668 ], [ 126.5879, -8.6605 ], [ 126.5888, -8.6531 ], [ 126.5845, -8.6516 ], [ 126.5791, -8.655 ], [ 126.5669, -8.6573 ], [ 126.5588, -8.6644 ], [ 126.5468, -8.6681 ], [ 126.5334, -8.681 ], [ 126.5226, -8.6817 ], [ 126.5109, -8.6773 ], [ 126.5022, -8.6633 ], [ 126.5013, -8.6597 ], [ 126.4917, -8.6494 ], [ 126.4873, -8.6427 ], [ 126.4879, -8.6373 ], [ 126.4849, -8.632 ], [ 126.4848, -8.6259 ], [ 126.4879, -8.6175 ], [ 126.4776, -8.6115 ], [ 126.4781, -8.6038 ], [ 126.4736, -8.5936 ], [ 126.4637, -8.5922 ], [ 126.4649, -8.5972 ], [ 126.4592, -8.6125 ], [ 126.462, -8.6224 ], [ 126.4674, -8.623 ], [ 126.468, -8.629 ], [ 126.4628, -8.632 ], [ 126.4546, -8.6469 ], [ 126.4484, -8.6527 ], [ 126.4453, -8.662 ], [ 126.4547, -8.6708 ], [ 126.4556, -8.6847 ], [ 126.4505, -8.6846 ], [ 126.4476, -8.6996 ], [ 126.4424, -8.7019 ], [ 126.404, -8.6912 ], [ 126.3983, -8.6879 ], [ 126.3954, -8.6769 ], [ 126.3905, -8.6727 ], [ 126.3906, -8.665 ], [ 126.3951, -8.6569 ], [ 126.3892, -8.6569 ], [ 126.3809, -8.6602 ], [ 126.3767, -8.6655 ], [ 126.3677, -8.6657 ], [ 126.3605, -8.6699 ], [ 126.3577, -8.6774 ], [ 126.3429, -8.6839 ], [ 126.3382, -8.6809 ], [ 126.3346, -8.6733 ], [ 126.3235, -8.6761 ], [ 126.3173, -8.6811 ], [ 126.3078, -8.6815 ], [ 126.2911, -8.6693 ], [ 126.2828, -8.6688 ], [ 126.2747, -8.6781 ], [ 126.2728, -8.6845 ], [ 126.268, -8.6866 ], [ 126.2645, -8.6929 ], [ 126.2551, -8.6935 ], [ 126.2517, -8.6846 ], [ 126.2394, -8.686 ], [ 126.2316, -8.6837 ], [ 126.2266, -8.6974 ], [ 126.2121, -8.6956 ], [ 126.2085, -8.6866 ], [ 126.2004, -8.6858 ], [ 126.1942, -8.6919 ], [ 126.1864, -8.6878 ], [ 126.178, -8.687 ], [ 126.1737, -8.6807 ], [ 126.1678, -8.6764 ], [ 126.1612, -8.6792 ], [ 126.1546, -8.673 ], [ 126.1495, -8.6729 ], [ 126.152, -8.667 ], [ 126.165, -8.6572 ], [ 126.1661, -8.6548 ], [ 126.1771, -8.6511 ], [ 126.1811, -8.6434 ], [ 126.1887, -8.6372 ], [ 126.1942, -8.6279 ], [ 126.1936, -8.6172 ], [ 126.1905, -8.6116 ], [ 126.1961, -8.6061 ], [ 126.1924, -8.596 ], [ 126.197, -8.5798 ], [ 126.1871, -8.5688 ], [ 126.1844, -8.557 ], [ 126.1828, -8.5298 ], [ 126.1843, -8.5252 ], [ 126.1696, -8.5137 ], [ 126.165, -8.508 ], [ 126.161, -8.496 ], [ 126.1694, -8.4961 ], [ 126.1819, -8.5024 ], [ 126.1892, -8.5028 ], [ 126.2061, -8.4949 ], [ 126.2261, -8.4989 ], [ 126.2333, -8.5024 ], [ 126.2437, -8.4984 ], [ 126.2551, -8.486 ], [ 126.2606, -8.4867 ], [ 126.2786, -8.4811 ], [ 126.2917, -8.4714 ], [ 126.2997, -8.4611 ], [ 126.3081, -8.4558 ], [ 126.3236, -8.4515 ], [ 126.3406, -8.4494 ], [ 126.3467, -8.4389 ], [ 126.3583, -8.4275 ], [ 126.3733, -8.4228 ], [ 126.3806, -8.4281 ], [ 126.385, -8.4244 ], [ 126.4022, -8.4183 ], [ 126.4167, -8.4144 ], [ 126.4269, -8.4203 ], [ 126.4356, -8.4219 ], [ 126.442, -8.4253 ], [ 126.4558, -8.4367 ], [ 126.4606, -8.4372 ], [ 126.47, -8.4425 ], [ 126.4842, -8.4444 ], [ 126.4911, -8.4474 ], [ 126.5044, -8.45 ], [ 126.5176, -8.4578 ], [ 126.5238, -8.4648 ], [ 126.5322, -8.4658 ], [ 126.5389, -8.4697 ], [ 126.554, -8.4815 ], [ 126.5622, -8.4806 ], [ 126.568, -8.4822 ], [ 126.5817, -8.4703 ], [ 126.5983, -8.4697 ], [ 126.6082, -8.4604 ], [ 126.6303, -8.4517 ], [ 126.6378, -8.451 ], [ 126.6581, -8.4375 ], [ 126.6642, -8.4364 ], [ 126.6739, -8.4311 ], [ 126.6954, -8.4249 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Bobonaro", "ISO": "TL-BO" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.1899, -8.7536 ], [ 125.1964, -8.7635 ], [ 125.2014, -8.7679 ], [ 125.2106, -8.7655 ], [ 125.2348, -8.7678 ], [ 125.2498, -8.7809 ], [ 125.258, -8.7902 ], [ 125.2716, -8.8127 ], [ 125.2792, -8.8236 ], [ 125.2814, -8.8322 ], [ 125.2827, -8.8508 ], [ 125.2942, -8.8627 ], [ 125.2937, -8.8828 ], [ 125.2993, -8.8937 ], [ 125.3118, -8.8977 ], [ 125.3138, -8.8998 ], [ 125.315, -8.9116 ], [ 125.3192, -8.9127 ], [ 125.3288, -8.9263 ], [ 125.3218, -8.9324 ], [ 125.3172, -8.9407 ], [ 125.3265, -8.9551 ], [ 125.3273, -8.9622 ], [ 125.3381, -8.9703 ], [ 125.3435, -8.9826 ], [ 125.3424, -8.9903 ], [ 125.3491, -8.9955 ], [ 125.3628, -8.9938 ], [ 125.3733, -8.9861 ], [ 125.3844, -8.9857 ], [ 125.3869, -8.9839 ], [ 125.4001, -8.9827 ], [ 125.4144, -8.9782 ], [ 125.4257, -8.9844 ], [ 125.43, -8.9852 ], [ 125.4243, -8.9947 ], [ 125.4259, -9.0034 ], [ 125.4296, -9.0071 ], [ 125.4323, -9.011 ], [ 125.4344, -9.0221 ], [ 125.4212, -9.0401 ], [ 125.4127, -9.0309 ], [ 125.4112, -9.0222 ], [ 125.4072, -9.0196 ], [ 125.3998, -9.0319 ], [ 125.3958, -9.0333 ], [ 125.3951, -9.0403 ], [ 125.3865, -9.0487 ], [ 125.3777, -9.0515 ], [ 125.3708, -9.0623 ], [ 125.3686, -9.0691 ], [ 125.3725, -9.0786 ], [ 125.3658, -9.0876 ], [ 125.3693, -9.0966 ], [ 125.374, -9.1029 ], [ 125.3705, -9.1146 ], [ 125.3655, -9.1195 ], [ 125.3609, -9.1301 ], [ 125.3502, -9.1263 ], [ 125.3413, -9.1255 ], [ 125.3385, -9.1284 ], [ 125.3314, -9.1283 ], [ 125.3266, -9.1365 ], [ 125.3194, -9.1411 ], [ 125.3162, -9.1511 ], [ 125.3173, -9.1562 ], [ 125.3311, -9.1639 ], [ 125.3406, -9.1655 ], [ 125.3527, -9.1725 ], [ 125.3447, -9.1839 ], [ 125.3461, -9.1871 ], [ 125.3393, -9.1951 ], [ 125.3347, -9.1978 ], [ 125.3281, -9.1949 ], [ 125.3197, -9.1951 ], [ 125.3113, -9.1992 ], [ 125.304, -9.2051 ], [ 125.2995, -9.2029 ], [ 125.2859, -9.2008 ], [ 125.2802, -9.2055 ], [ 125.2785, -9.2107 ], [ 125.2672, -9.2039 ], [ 125.2594, -9.2074 ], [ 125.2511, -9.2135 ], [ 125.246, -9.2075 ], [ 125.2414, -9.2118 ], [ 125.2263, -9.2049 ], [ 125.2254, -9.2 ], [ 125.2318, -9.1861 ], [ 125.2299, -9.18 ], [ 125.2236, -9.1752 ], [ 125.2107, -9.1704 ], [ 125.1961, -9.1688 ], [ 125.1841, -9.1628 ], [ 125.1794, -9.1664 ], [ 125.1765, -9.1577 ], [ 125.179, -9.1461 ], [ 125.1763, -9.1442 ], [ 125.1706, -9.1234 ], [ 125.1721, -9.1194 ], [ 125.1791, -9.117 ], [ 125.1732, -9.1065 ], [ 125.178, -9.1004 ], [ 125.1802, -9.0839 ], [ 125.1845, -9.0803 ], [ 125.1873, -9.0733 ], [ 125.1846, -9.0672 ], [ 125.1845, -9.0597 ], [ 125.1885, -9.0571 ], [ 125.1889, -9.0456 ], [ 125.1843, -9.0366 ], [ 125.1841, -9.0259 ], [ 125.1715, -9.0176 ], [ 125.1623, -9.0098 ], [ 125.1486, -8.9957 ], [ 125.1375, -8.9959 ], [ 125.1299, -8.9897 ], [ 125.1297, -8.9845 ], [ 125.1218, -8.9781 ], [ 125.1209, -8.9705 ], [ 125.1119, -8.9667 ], [ 125.1043, -8.9726 ], [ 125.1015, -8.9819 ], [ 125.102, -8.9877 ], [ 125.0984, -8.9988 ], [ 125.088, -9.012 ], [ 125.0817, -9.0146 ], [ 125.0757, -9.0223 ], [ 125.069, -9.0275 ], [ 125.0585, -9.0271 ], [ 125.0525, -9.0318 ], [ 125.0377, -9.0331 ], [ 125.0315, -9.0382 ], [ 125.0298, -9.0438 ], [ 125.0233, -9.0423 ], [ 125.0211, -9.0494 ], [ 125.0105, -9.0499 ], [ 125.0049, -9.0624 ], [ 124.9964, -9.0649 ], [ 124.9906, -9.0636 ], [ 124.9842, -9.066 ], [ 124.9757, -9.0637 ], [ 124.9723, -9.0586 ], [ 124.9563, -9.0584 ], [ 124.9528, -9.0486 ], [ 124.9473, -9.05 ], [ 124.9402, -9.047 ], [ 124.9416, -9.039 ], [ 124.9319, -9.0283 ], [ 124.9319, -9.0182 ], [ 124.937, -9.0165 ], [ 124.9367, -9.0008 ], [ 124.933, -8.9999 ], [ 124.9412, -8.9833 ], [ 124.9501, -8.9692 ], [ 124.9517, -8.9609 ], [ 124.9564, -8.9492 ], [ 124.9674, -8.9454 ], [ 124.9701, -8.9463 ], [ 124.9775, -8.9395 ], [ 124.9804, -8.9289 ], [ 124.9857, -8.9256 ], [ 124.9889, -8.9197 ], [ 124.9925, -8.9044 ], [ 125.0008, -8.8925 ], [ 125.0008, -8.8875 ], [ 125.0044, -8.8781 ], [ 125.005, -8.8647 ], [ 125.0128, -8.8547 ], [ 125.0253, -8.8428 ], [ 125.0314, -8.8386 ], [ 125.0356, -8.8322 ], [ 125.0411, -8.8283 ], [ 125.0553, -8.8292 ], [ 125.0692, -8.8244 ], [ 125.0783, -8.8167 ], [ 125.0936, -8.8011 ], [ 125.0975, -8.793 ], [ 125.0977, -8.7867 ], [ 125.0931, -8.7558 ], [ 125.0919, -8.74 ], [ 125.0931, -8.736 ], [ 125.1014, -8.7381 ], [ 125.1144, -8.7369 ], [ 125.1211, -8.7377 ], [ 125.1249, -8.7421 ], [ 125.1366, -8.7445 ], [ 125.1461, -8.7513 ], [ 125.1603, -8.7504 ], [ 125.1693, -8.753 ], [ 125.1803, -8.7479 ], [ 125.1899, -8.7536 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Covalima", "ISO": "TL-CO" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.5034, -9.2257 ], [ 125.4956, -9.2286 ], [ 125.4803, -9.2369 ], [ 125.4644, -9.2478 ], [ 125.4497, -9.2553 ], [ 125.4272, -9.2614 ], [ 125.4167, -9.2606 ], [ 125.3933, -9.2636 ], [ 125.3776, -9.2701 ], [ 125.3594, -9.2825 ], [ 125.3483, -9.2928 ], [ 125.3394, -9.2986 ], [ 125.3139, -9.3125 ], [ 125.2967, -9.3272 ], [ 125.292, -9.3327 ], [ 125.2831, -9.3483 ], [ 125.2769, -9.3539 ], [ 125.2709, -9.351 ], [ 125.2625, -9.3536 ], [ 125.2558, -9.3614 ], [ 125.252, -9.37 ], [ 125.2394, -9.3808 ], [ 125.2275, -9.3931 ], [ 125.2078, -9.4119 ], [ 125.1928, -9.4092 ], [ 125.1828, -9.4114 ], [ 125.16, -9.4139 ], [ 125.1406, -9.4194 ], [ 125.1211, -9.4297 ], [ 125.1106, -9.4375 ], [ 125.0942, -9.4544 ], [ 125.0894, -9.4606 ], [ 125.0844, -9.4495 ], [ 125.0797, -9.4429 ], [ 125.0814, -9.4329 ], [ 125.079, -9.4261 ], [ 125.0815, -9.4221 ], [ 125.0788, -9.4172 ], [ 125.0818, -9.4139 ], [ 125.0774, -9.4057 ], [ 125.08, -9.3904 ], [ 125.0754, -9.3838 ], [ 125.0709, -9.3825 ], [ 125.0655, -9.3724 ], [ 125.0525, -9.3627 ], [ 125.05, -9.3523 ], [ 125.0524, -9.3307 ], [ 125.0496, -9.3247 ], [ 125.038, -9.3189 ], [ 125.0296, -9.3168 ], [ 125.0236, -9.3117 ], [ 125.0188, -9.3036 ], [ 125.0105, -9.2993 ], [ 125.0062, -9.294 ], [ 124.9969, -9.2941 ], [ 124.9945, -9.2902 ], [ 124.9979, -9.2783 ], [ 124.9894, -9.268 ], [ 124.9876, -9.2547 ], [ 124.9844, -9.2498 ], [ 124.9826, -9.2356 ], [ 124.9781, -9.233 ], [ 124.9818, -9.2266 ], [ 124.9808, -9.2184 ], [ 124.9836, -9.1995 ], [ 124.9884, -9.1936 ], [ 124.9881, -9.1857 ], [ 124.9943, -9.1724 ], [ 125.0003, -9.1742 ], [ 125.011, -9.1744 ], [ 125.0138, -9.1697 ], [ 125.0262, -9.1714 ], [ 125.0331, -9.1702 ], [ 125.0354, -9.1741 ], [ 125.0487, -9.1714 ], [ 125.0524, -9.1691 ], [ 125.068, -9.1758 ], [ 125.0744, -9.1761 ], [ 125.0791, -9.1887 ], [ 125.0904, -9.1954 ], [ 125.0985, -9.2047 ], [ 125.1028, -9.1955 ], [ 125.1169, -9.1862 ], [ 125.1218, -9.185 ], [ 125.1336, -9.1751 ], [ 125.1489, -9.1714 ], [ 125.1582, -9.1736 ], [ 125.1747, -9.1737 ], [ 125.1794, -9.1664 ], [ 125.1841, -9.1628 ], [ 125.1961, -9.1688 ], [ 125.2107, -9.1704 ], [ 125.2236, -9.1752 ], [ 125.2299, -9.18 ], [ 125.2318, -9.1861 ], [ 125.2254, -9.2 ], [ 125.2263, -9.2049 ], [ 125.2414, -9.2118 ], [ 125.246, -9.2075 ], [ 125.2511, -9.2135 ], [ 125.2594, -9.2074 ], [ 125.2672, -9.2039 ], [ 125.2785, -9.2107 ], [ 125.2802, -9.2055 ], [ 125.2859, -9.2008 ], [ 125.2995, -9.2029 ], [ 125.304, -9.2051 ], [ 125.3113, -9.1992 ], [ 125.3197, -9.1951 ], [ 125.3281, -9.1949 ], [ 125.3347, -9.1978 ], [ 125.3393, -9.1951 ], [ 125.3461, -9.1871 ], [ 125.3447, -9.1839 ], [ 125.3527, -9.1725 ], [ 125.3406, -9.1655 ], [ 125.3311, -9.1639 ], [ 125.3173, -9.1562 ], [ 125.3162, -9.1511 ], [ 125.3194, -9.1411 ], [ 125.3266, -9.1365 ], [ 125.3314, -9.1283 ], [ 125.3385, -9.1284 ], [ 125.3413, -9.1255 ], [ 125.3502, -9.1263 ], [ 125.3609, -9.1301 ], [ 125.3655, -9.1195 ], [ 125.3705, -9.1146 ], [ 125.374, -9.1029 ], [ 125.3693, -9.0966 ], [ 125.3658, -9.0876 ], [ 125.3725, -9.0786 ], [ 125.3686, -9.0691 ], [ 125.3708, -9.0623 ], [ 125.3777, -9.0515 ], [ 125.3865, -9.0487 ], [ 125.3951, -9.0403 ], [ 125.3958, -9.0333 ], [ 125.3998, -9.0319 ], [ 125.4072, -9.0196 ], [ 125.4112, -9.0222 ], [ 125.4127, -9.0309 ], [ 125.4212, -9.0401 ], [ 125.4344, -9.0221 ], [ 125.4323, -9.011 ], [ 125.4296, -9.0071 ], [ 125.4411, -9.0108 ], [ 125.4434, -9.0184 ], [ 125.4481, -9.0223 ], [ 125.4501, -9.029 ], [ 125.4455, -9.0398 ], [ 125.4488, -9.0506 ], [ 125.4447, -9.0565 ], [ 125.445, -9.0623 ], [ 125.4637, -9.0655 ], [ 125.468, -9.072 ], [ 125.4749, -9.0764 ], [ 125.4765, -9.0814 ], [ 125.4744, -9.0873 ], [ 125.4797, -9.0965 ], [ 125.481, -9.1049 ], [ 125.4739, -9.1274 ], [ 125.4952, -9.1398 ], [ 125.4948, -9.1431 ], [ 125.5209, -9.1421 ], [ 125.5248, -9.1466 ], [ 125.5251, -9.1519 ], [ 125.5304, -9.1598 ], [ 125.54, -9.163 ], [ 125.5352, -9.1739 ], [ 125.5321, -9.186 ], [ 125.5277, -9.1942 ], [ 125.5197, -9.1963 ], [ 125.5066, -9.2149 ], [ 125.5034, -9.2257 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Dili", "ISO": "TL-DI" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.7661, -8.571 ], [ 125.7607, -8.5663 ], [ 125.7536, -8.5639 ], [ 125.7427, -8.5655 ], [ 125.7315, -8.5654 ], [ 125.723, -8.5636 ], [ 125.7111, -8.5652 ], [ 125.706, -8.5613 ], [ 125.6975, -8.5588 ], [ 125.6901, -8.5689 ], [ 125.6857, -8.5715 ], [ 125.688, -8.5821 ], [ 125.6855, -8.5881 ], [ 125.6758, -8.5873 ], [ 125.6638, -8.5773 ], [ 125.6639, -8.5699 ], [ 125.659, -8.5711 ], [ 125.6534, -8.5843 ], [ 125.6469, -8.5919 ], [ 125.6421, -8.5933 ], [ 125.6195, -8.583 ], [ 125.6028, -8.5895 ], [ 125.6086, -8.5992 ], [ 125.5911, -8.603 ], [ 125.5893, -8.6086 ], [ 125.5796, -8.6189 ], [ 125.5734, -8.6229 ], [ 125.5626, -8.6269 ], [ 125.5426, -8.6199 ], [ 125.5322, -8.6139 ], [ 125.5273, -8.6137 ], [ 125.5195, -8.613 ], [ 125.5164, -8.6099 ], [ 125.5184, -8.6034 ], [ 125.5172, -8.5978 ], [ 125.5202, -8.5913 ], [ 125.5178, -8.5841 ], [ 125.5073, -8.5805 ], [ 125.5068, -8.5746 ], [ 125.4934, -8.5616 ], [ 125.4978, -8.5561 ], [ 125.5075, -8.5567 ], [ 125.5175, -8.5458 ], [ 125.5333, -8.5369 ], [ 125.5573, -8.5476 ], [ 125.5694, -8.5483 ], [ 125.5772, -8.5533 ], [ 125.5881, -8.5475 ], [ 125.5936, -8.5478 ], [ 125.6041, -8.5449 ], [ 125.6078, -8.5456 ], [ 125.6142, -8.5364 ], [ 125.6147, -8.5314 ], [ 125.6094, -8.5289 ], [ 125.6092, -8.5192 ], [ 125.6153, -8.5219 ], [ 125.6217, -8.5194 ], [ 125.622, -8.5251 ], [ 125.6353, -8.5271 ], [ 125.6481, -8.5253 ], [ 125.6592, -8.5264 ], [ 125.6664, -8.525 ], [ 125.6842, -8.5364 ], [ 125.6983, -8.5339 ], [ 125.7192, -8.5197 ], [ 125.7244, -8.5267 ], [ 125.7319, -8.5208 ], [ 125.7442, -8.5228 ], [ 125.7523, -8.5187 ], [ 125.7611, -8.5108 ], [ 125.7883, -8.5022 ], [ 125.8033, -8.5036 ], [ 125.8106, -8.5011 ], [ 125.8229, -8.4898 ], [ 125.8285, -8.4909 ], [ 125.8348, -8.4858 ], [ 125.8445, -8.4928 ], [ 125.8502, -8.5024 ], [ 125.8605, -8.5097 ], [ 125.8568, -8.5185 ], [ 125.8585, -8.5226 ], [ 125.8512, -8.5292 ], [ 125.8449, -8.5305 ], [ 125.8368, -8.5387 ], [ 125.8291, -8.5349 ], [ 125.823, -8.5391 ], [ 125.8087, -8.5402 ], [ 125.8013, -8.546 ], [ 125.794, -8.546 ], [ 125.7922, -8.543 ], [ 125.7843, -8.5421 ], [ 125.7812, -8.5462 ], [ 125.7807, -8.5551 ], [ 125.7753, -8.5666 ], [ 125.7661, -8.571 ] ] ], [ [ [ 125.6367, -8.1269 ], [ 125.639, -8.1328 ], [ 125.6414, -8.1475 ], [ 125.6399, -8.1509 ], [ 125.6444, -8.1633 ], [ 125.6409, -8.1665 ], [ 125.6408, -8.1725 ], [ 125.635, -8.1825 ], [ 125.6342, -8.1922 ], [ 125.6258, -8.1998 ], [ 125.6217, -8.2069 ], [ 125.6175, -8.2092 ], [ 125.61, -8.2214 ], [ 125.6069, -8.2492 ], [ 125.6092, -8.255 ], [ 125.5989, -8.2867 ], [ 125.5826, -8.3068 ], [ 125.5758, -8.3086 ], [ 125.561, -8.3065 ], [ 125.5539, -8.2981 ], [ 125.5289, -8.2969 ], [ 125.5058, -8.2756 ], [ 125.5006, -8.2633 ], [ 125.5044, -8.2578 ], [ 125.5178, -8.2475 ], [ 125.5216, -8.241 ], [ 125.5232, -8.227 ], [ 125.5362, -8.2199 ], [ 125.5492, -8.2197 ], [ 125.5557, -8.2081 ], [ 125.5591, -8.2067 ], [ 125.5619, -8.1978 ], [ 125.5775, -8.1811 ], [ 125.5852, -8.1749 ], [ 125.5901, -8.1622 ], [ 125.5974, -8.1583 ], [ 125.6075, -8.1488 ], [ 125.6191, -8.1328 ], [ 125.6367, -8.1269 ] ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Ermera", "ISO": "TL-ER" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.5074, -8.8487 ], [ 125.5223, -8.8722 ], [ 125.5176, -8.8779 ], [ 125.5041, -8.8832 ], [ 125.4984, -8.8936 ], [ 125.4921, -8.8967 ], [ 125.4947, -8.9106 ], [ 125.4912, -8.9159 ], [ 125.4817, -8.9216 ], [ 125.4806, -8.9299 ], [ 125.4727, -8.9362 ], [ 125.4602, -8.9439 ], [ 125.4519, -8.9545 ], [ 125.4565, -8.9644 ], [ 125.4508, -8.9702 ], [ 125.4488, -8.9759 ], [ 125.43, -8.9852 ], [ 125.4257, -8.9844 ], [ 125.4144, -8.9782 ], [ 125.4001, -8.9827 ], [ 125.3869, -8.9839 ], [ 125.3844, -8.9857 ], [ 125.3733, -8.9861 ], [ 125.3628, -8.9938 ], [ 125.3491, -8.9955 ], [ 125.3424, -8.9903 ], [ 125.3435, -8.9826 ], [ 125.3381, -8.9703 ], [ 125.3273, -8.9622 ], [ 125.3265, -8.9551 ], [ 125.3172, -8.9407 ], [ 125.3218, -8.9324 ], [ 125.3288, -8.9263 ], [ 125.3192, -8.9127 ], [ 125.315, -8.9116 ], [ 125.3138, -8.8998 ], [ 125.3118, -8.8977 ], [ 125.2993, -8.8937 ], [ 125.2937, -8.8828 ], [ 125.2942, -8.8627 ], [ 125.2827, -8.8508 ], [ 125.2814, -8.8322 ], [ 125.2792, -8.8236 ], [ 125.2716, -8.8127 ], [ 125.258, -8.7902 ], [ 125.2498, -8.7809 ], [ 125.2348, -8.7678 ], [ 125.2106, -8.7655 ], [ 125.2014, -8.7679 ], [ 125.1964, -8.7635 ], [ 125.1899, -8.7536 ], [ 125.1969, -8.7442 ], [ 125.2089, -8.7373 ], [ 125.2162, -8.7379 ], [ 125.222, -8.7342 ], [ 125.2314, -8.7345 ], [ 125.2355, -8.7327 ], [ 125.2501, -8.7324 ], [ 125.2635, -8.7227 ], [ 125.2683, -8.7247 ], [ 125.2753, -8.7234 ], [ 125.286, -8.7166 ], [ 125.2916, -8.7085 ], [ 125.3017, -8.7037 ], [ 125.3067, -8.7049 ], [ 125.3125, -8.6953 ], [ 125.3211, -8.6946 ], [ 125.3245, -8.6976 ], [ 125.3355, -8.6951 ], [ 125.3433, -8.697 ], [ 125.3484, -8.7042 ], [ 125.3581, -8.7039 ], [ 125.3575, -8.6999 ], [ 125.3699, -8.7013 ], [ 125.3797, -8.6914 ], [ 125.3966, -8.6888 ], [ 125.3988, -8.6847 ], [ 125.3979, -8.6753 ], [ 125.4033, -8.668 ], [ 125.4108, -8.6725 ], [ 125.423, -8.6668 ], [ 125.4326, -8.6601 ], [ 125.4356, -8.6536 ], [ 125.4431, -8.6506 ], [ 125.4469, -8.6454 ], [ 125.4551, -8.6489 ], [ 125.4596, -8.6453 ], [ 125.4671, -8.6468 ], [ 125.4699, -8.6436 ], [ 125.4854, -8.6435 ], [ 125.4927, -8.6389 ], [ 125.501, -8.6404 ], [ 125.5033, -8.638 ], [ 125.5111, -8.6437 ], [ 125.5215, -8.6465 ], [ 125.5241, -8.6562 ], [ 125.5301, -8.6684 ], [ 125.5347, -8.6703 ], [ 125.5352, -8.6774 ], [ 125.526, -8.693 ], [ 125.5177, -8.6991 ], [ 125.5099, -8.7076 ], [ 125.4968, -8.71 ], [ 125.4865, -8.7058 ], [ 125.4838, -8.7232 ], [ 125.4773, -8.7233 ], [ 125.4644, -8.7204 ], [ 125.4552, -8.7227 ], [ 125.4588, -8.7298 ], [ 125.4649, -8.7298 ], [ 125.4757, -8.7368 ], [ 125.4761, -8.7451 ], [ 125.47, -8.7535 ], [ 125.4718, -8.7607 ], [ 125.464, -8.7655 ], [ 125.4615, -8.7733 ], [ 125.4546, -8.7826 ], [ 125.4593, -8.7863 ], [ 125.4605, -8.7963 ], [ 125.4651, -8.8 ], [ 125.4727, -8.7987 ], [ 125.4794, -8.7999 ], [ 125.4862, -8.8128 ], [ 125.4913, -8.8173 ], [ 125.4946, -8.8243 ], [ 125.4929, -8.8282 ], [ 125.4972, -8.8508 ], [ 125.5074, -8.8487 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Lautem", "ISO": "TL-LA" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.3236, -8.4111 ], [ 127.3314, -8.4147 ], [ 127.3369, -8.4203 ], [ 127.3419, -8.4319 ], [ 127.3392, -8.4428 ], [ 127.3325, -8.4442 ], [ 127.33, -8.4481 ], [ 127.3203, -8.4464 ], [ 127.3086, -8.4356 ], [ 127.3078, -8.4222 ], [ 127.3092, -8.4169 ], [ 127.3169, -8.4114 ], [ 127.3236, -8.4111 ] ] ], [ [ [ 126.7362, -8.7566 ], [ 126.7341, -8.7535 ], [ 126.7371, -8.746 ], [ 126.7385, -8.731 ], [ 126.7339, -8.7298 ], [ 126.7347, -8.7195 ], [ 126.7292, -8.7143 ], [ 126.7307, -8.7089 ], [ 126.7291, -8.6927 ], [ 126.7299, -8.6871 ], [ 126.737, -8.6842 ], [ 126.745, -8.6744 ], [ 126.7478, -8.6651 ], [ 126.7548, -8.6568 ], [ 126.7638, -8.6567 ], [ 126.766, -8.6464 ], [ 126.7747, -8.6394 ], [ 126.781, -8.6275 ], [ 126.7854, -8.6242 ], [ 126.7967, -8.623 ], [ 126.8035, -8.6202 ], [ 126.8079, -8.6216 ], [ 126.8122, -8.6134 ], [ 126.8092, -8.6071 ], [ 126.8082, -8.5984 ], [ 126.8045, -8.599 ], [ 126.8012, -8.5921 ], [ 126.7926, -8.5844 ], [ 126.7861, -8.5824 ], [ 126.7836, -8.5674 ], [ 126.7708, -8.5592 ], [ 126.7589, -8.5539 ], [ 126.7556, -8.5435 ], [ 126.7481, -8.5312 ], [ 126.7368, -8.5281 ], [ 126.7305, -8.5212 ], [ 126.7235, -8.5163 ], [ 126.723, -8.5043 ], [ 126.7271, -8.5032 ], [ 126.7331, -8.4952 ], [ 126.741, -8.492 ], [ 126.7367, -8.4873 ], [ 126.7302, -8.4867 ], [ 126.7166, -8.4799 ], [ 126.7077, -8.4586 ], [ 126.7054, -8.4484 ], [ 126.7069, -8.4431 ], [ 126.7029, -8.437 ], [ 126.6977, -8.4343 ], [ 126.6954, -8.4249 ], [ 126.7075, -8.4192 ], [ 126.7154, -8.4117 ], [ 126.7189, -8.4111 ], [ 126.7295, -8.4032 ], [ 126.7367, -8.4033 ], [ 126.7422, -8.4106 ], [ 126.7514, -8.4178 ], [ 126.7672, -8.4222 ], [ 126.7753, -8.4183 ], [ 126.7853, -8.4181 ], [ 126.7939, -8.4094 ], [ 126.8011, -8.4056 ], [ 126.8126, -8.4059 ], [ 126.8214, -8.4008 ], [ 126.8272, -8.4003 ], [ 126.8319, -8.3958 ], [ 126.8364, -8.3956 ], [ 126.8456, -8.3911 ], [ 126.8561, -8.3825 ], [ 126.8803, -8.37 ], [ 126.8869, -8.3706 ], [ 126.8942, -8.3656 ], [ 126.9045, -8.3614 ], [ 126.9157, -8.353 ], [ 126.9331, -8.3381 ], [ 126.9489, -8.3331 ], [ 126.9586, -8.3272 ], [ 127.0025, -8.3225 ], [ 127.0111, -8.3275 ], [ 127.0236, -8.3381 ], [ 127.0311, -8.3408 ], [ 127.0361, -8.3392 ], [ 127.0472, -8.3436 ], [ 127.0538, -8.3525 ], [ 127.0636, -8.3631 ], [ 127.0714, -8.3644 ], [ 127.0825, -8.3631 ], [ 127.0897, -8.3667 ], [ 127.0986, -8.3661 ], [ 127.1158, -8.3681 ], [ 127.1339, -8.3656 ], [ 127.1453, -8.3619 ], [ 127.1689, -8.3408 ], [ 127.1725, -8.3403 ], [ 127.18, -8.3339 ], [ 127.1853, -8.3361 ], [ 127.1964, -8.3358 ], [ 127.2019, -8.3408 ], [ 127.2039, -8.3481 ], [ 127.2167, -8.3614 ], [ 127.2208, -8.3678 ], [ 127.2336, -8.3786 ], [ 127.2428, -8.3789 ], [ 127.2561, -8.385 ], [ 127.265, -8.3842 ], [ 127.2719, -8.3878 ], [ 127.2822, -8.3861 ], [ 127.2914, -8.3886 ], [ 127.2981, -8.3939 ], [ 127.2994, -8.4099 ], [ 127.3019, -8.4178 ], [ 127.3011, -8.4311 ], [ 127.2936, -8.4367 ], [ 127.2867, -8.4369 ], [ 127.2759, -8.4408 ], [ 127.2694, -8.4478 ], [ 127.2678, -8.4558 ], [ 127.2581, -8.4661 ], [ 127.2452, -8.4745 ], [ 127.2306, -8.4792 ], [ 127.2281, -8.4853 ], [ 127.2228, -8.4906 ], [ 127.2114, -8.4983 ], [ 127.2075, -8.5094 ], [ 127.1858, -8.5278 ], [ 127.174, -8.5327 ], [ 127.1661, -8.5403 ], [ 127.145, -8.5508 ], [ 127.1403, -8.5567 ], [ 127.1325, -8.5586 ], [ 127.1264, -8.5664 ], [ 127.1197, -8.5697 ], [ 127.1058, -8.5811 ], [ 127.1028, -8.5864 ], [ 127.0869, -8.5986 ], [ 127.085, -8.6031 ], [ 127.07, -8.6178 ], [ 127.0589, -8.6319 ], [ 127.0511, -8.6442 ], [ 127.0403, -8.6525 ], [ 127.0256, -8.6658 ], [ 127.0186, -8.6814 ], [ 127.0128, -8.6864 ], [ 127.0025, -8.6819 ], [ 126.9961, -8.6825 ], [ 126.9876, -8.6797 ], [ 126.9786, -8.6794 ], [ 126.9633, -8.6808 ], [ 126.9547, -8.6835 ], [ 126.9347, -8.6933 ], [ 126.9221, -8.7035 ], [ 126.9161, -8.7106 ], [ 126.9061, -8.7111 ], [ 126.8858, -8.7233 ], [ 126.8764, -8.7334 ], [ 126.8643, -8.7438 ], [ 126.8504, -8.7518 ], [ 126.8347, -8.7559 ], [ 126.8278, -8.7565 ], [ 126.8217, -8.7606 ], [ 126.8156, -8.7603 ], [ 126.8107, -8.7561 ], [ 126.8003, -8.7547 ], [ 126.7916, -8.7562 ], [ 126.7822, -8.7542 ], [ 126.7748, -8.7473 ], [ 126.7608, -8.7475 ], [ 126.7483, -8.7522 ], [ 126.7383, -8.7578 ], [ 126.7362, -8.7566 ] ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Liquica", "ISO": "TL-LI" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.4978, -8.5561 ], [ 125.4934, -8.5616 ], [ 125.5068, -8.5746 ], [ 125.5073, -8.5805 ], [ 125.5178, -8.5841 ], [ 125.5202, -8.5913 ], [ 125.5172, -8.5978 ], [ 125.5184, -8.6034 ], [ 125.5164, -8.6099 ], [ 125.5195, -8.613 ], [ 125.5273, -8.6137 ], [ 125.5239, -8.6189 ], [ 125.5157, -8.6228 ], [ 125.5129, -8.6278 ], [ 125.5141, -8.6346 ], [ 125.5039, -8.6351 ], [ 125.5033, -8.638 ], [ 125.501, -8.6404 ], [ 125.4927, -8.6389 ], [ 125.4854, -8.6435 ], [ 125.4699, -8.6436 ], [ 125.4671, -8.6468 ], [ 125.4596, -8.6453 ], [ 125.4551, -8.6489 ], [ 125.4469, -8.6454 ], [ 125.4431, -8.6506 ], [ 125.4356, -8.6536 ], [ 125.4326, -8.6601 ], [ 125.423, -8.6668 ], [ 125.4108, -8.6725 ], [ 125.4033, -8.668 ], [ 125.3979, -8.6753 ], [ 125.3988, -8.6847 ], [ 125.3966, -8.6888 ], [ 125.3797, -8.6914 ], [ 125.3699, -8.7013 ], [ 125.3575, -8.6999 ], [ 125.3581, -8.7039 ], [ 125.3484, -8.7042 ], [ 125.3433, -8.697 ], [ 125.3355, -8.6951 ], [ 125.3245, -8.6976 ], [ 125.3211, -8.6946 ], [ 125.3125, -8.6953 ], [ 125.3067, -8.7049 ], [ 125.3017, -8.7037 ], [ 125.2916, -8.7085 ], [ 125.286, -8.7166 ], [ 125.2753, -8.7234 ], [ 125.2683, -8.7247 ], [ 125.2635, -8.7227 ], [ 125.2501, -8.7324 ], [ 125.2355, -8.7327 ], [ 125.2314, -8.7345 ], [ 125.222, -8.7342 ], [ 125.2162, -8.7379 ], [ 125.2089, -8.7373 ], [ 125.1969, -8.7442 ], [ 125.1899, -8.7536 ], [ 125.1803, -8.7479 ], [ 125.1693, -8.753 ], [ 125.1603, -8.7504 ], [ 125.1461, -8.7513 ], [ 125.1366, -8.7445 ], [ 125.1249, -8.7421 ], [ 125.1211, -8.7377 ], [ 125.1144, -8.7369 ], [ 125.1014, -8.7381 ], [ 125.0931, -8.736 ], [ 125.0919, -8.74 ], [ 125.091, -8.7347 ], [ 125.095, -8.7306 ], [ 125.1003, -8.7114 ], [ 125.1003, -8.6968 ], [ 125.0978, -8.6889 ], [ 125.1061, -8.6778 ], [ 125.1083, -8.6678 ], [ 125.1136, -8.6559 ], [ 125.1198, -8.6495 ], [ 125.1236, -8.6394 ], [ 125.1439, -8.6342 ], [ 125.1532, -8.628 ], [ 125.1672, -8.6228 ], [ 125.1939, -8.6114 ], [ 125.2036, -8.6103 ], [ 125.2108, -8.6056 ], [ 125.2289, -8.6053 ], [ 125.2386, -8.6036 ], [ 125.2483, -8.6044 ], [ 125.2567, -8.6028 ], [ 125.2711, -8.605 ], [ 125.2975, -8.6019 ], [ 125.3097, -8.5889 ], [ 125.3205, -8.5909 ], [ 125.3264, -8.59 ], [ 125.3322, -8.5833 ], [ 125.3447, -8.5833 ], [ 125.3508, -8.5797 ], [ 125.3681, -8.5764 ], [ 125.3753, -8.5731 ], [ 125.3856, -8.5658 ], [ 125.4175, -8.5617 ], [ 125.4289, -8.5656 ], [ 125.4435, -8.5681 ], [ 125.4478, -8.5714 ], [ 125.4639, -8.5678 ], [ 125.4722, -8.5679 ], [ 125.4742, -8.5741 ], [ 125.4801, -8.5736 ], [ 125.4856, -8.5656 ], [ 125.4878, -8.5553 ], [ 125.4978, -8.5561 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Manatuto", "ISO": "TL-MT" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.161, -8.496 ], [ 126.165, -8.508 ], [ 126.1696, -8.5137 ], [ 126.1843, -8.5252 ], [ 126.1828, -8.5298 ], [ 126.1844, -8.557 ], [ 126.1871, -8.5688 ], [ 126.197, -8.5798 ], [ 126.1924, -8.596 ], [ 126.1961, -8.6061 ], [ 126.1905, -8.6116 ], [ 126.1936, -8.6172 ], [ 126.1942, -8.6279 ], [ 126.1887, -8.6372 ], [ 126.1811, -8.6434 ], [ 126.1771, -8.6511 ], [ 126.1661, -8.6548 ], [ 126.165, -8.6572 ], [ 126.152, -8.667 ], [ 126.1495, -8.6729 ], [ 126.1425, -8.6672 ], [ 126.1319, -8.67 ], [ 126.125, -8.6669 ], [ 126.1084, -8.6735 ], [ 126.1045, -8.6821 ], [ 126.0989, -8.6866 ], [ 126.0947, -8.7077 ], [ 126.0967, -8.7122 ], [ 126.0961, -8.7231 ], [ 126.0909, -8.7261 ], [ 126.0882, -8.7336 ], [ 126.0759, -8.7458 ], [ 126.0702, -8.749 ], [ 126.0615, -8.7571 ], [ 126.0573, -8.7569 ], [ 126.0514, -8.7635 ], [ 126.0465, -8.7743 ], [ 126.0518, -8.7881 ], [ 126.0479, -8.7956 ], [ 126.0549, -8.7997 ], [ 126.0562, -8.8044 ], [ 126.0659, -8.8108 ], [ 126.075, -8.8207 ], [ 126.0744, -8.8318 ], [ 126.0782, -8.8365 ], [ 126.089, -8.8411 ], [ 126.0942, -8.8481 ], [ 126.0927, -8.8577 ], [ 126.0886, -8.8628 ], [ 126.0923, -8.8711 ], [ 126.0847, -8.882 ], [ 126.092, -8.8915 ], [ 126.0923, -8.8972 ], [ 126.0976, -8.9032 ], [ 126.1002, -8.9098 ], [ 126.1006, -8.9225 ], [ 126.1044, -8.9362 ], [ 126.1042, -8.9407 ], [ 126.1086, -8.947 ], [ 126.1177, -8.9487 ], [ 126.1253, -8.9527 ], [ 126.1321, -8.962 ], [ 126.1447, -8.9707 ], [ 126.1427, -8.9733 ], [ 126.1435, -8.9825 ], [ 126.1503, -8.9851 ], [ 126.1547, -8.9904 ], [ 126.1428, -8.9944 ], [ 126.1328, -8.9994 ], [ 126.0976, -9.0218 ], [ 126.0889, -9.0289 ], [ 126.0844, -9.0358 ], [ 126.0673, -9.0541 ], [ 126.0615, -9.0569 ], [ 126.0548, -9.036 ], [ 126.0494, -9.0336 ], [ 126.0459, -9.0214 ], [ 126.043, -9.0162 ], [ 126.035, -9.0151 ], [ 126.0336, -9.0097 ], [ 126.0164, -8.9908 ], [ 126.0118, -8.9919 ], [ 125.9978, -8.9853 ], [ 125.9971, -8.9833 ], [ 125.9798, -8.9707 ], [ 125.9601, -8.9631 ], [ 125.9469, -8.9505 ], [ 125.9446, -8.94 ], [ 125.9367, -8.938 ], [ 125.937, -8.933 ], [ 125.9282, -8.9226 ], [ 125.9344, -8.912 ], [ 125.9134, -8.8971 ], [ 125.9076, -8.8956 ], [ 125.904, -8.8907 ], [ 125.8949, -8.8872 ], [ 125.8877, -8.8881 ], [ 125.8778, -8.8834 ], [ 125.8689, -8.8846 ], [ 125.8586, -8.8808 ], [ 125.8385, -8.878 ], [ 125.8354, -8.8822 ], [ 125.8293, -8.8792 ], [ 125.8288, -8.8601 ], [ 125.8183, -8.8499 ], [ 125.8123, -8.8403 ], [ 125.8066, -8.8356 ], [ 125.8089, -8.8259 ], [ 125.8042, -8.8233 ], [ 125.8005, -8.8128 ], [ 125.8086, -8.8054 ], [ 125.8084, -8.8025 ], [ 125.8159, -8.7901 ], [ 125.8202, -8.7802 ], [ 125.8139, -8.7785 ], [ 125.8147, -8.7678 ], [ 125.8212, -8.7576 ], [ 125.8215, -8.7532 ], [ 125.8168, -8.7492 ], [ 125.8131, -8.7535 ], [ 125.8085, -8.7521 ], [ 125.8054, -8.745 ], [ 125.8073, -8.7373 ], [ 125.8179, -8.7288 ], [ 125.8102, -8.713 ], [ 125.8121, -8.7104 ], [ 125.8121, -8.6942 ], [ 125.8141, -8.6847 ], [ 125.8085, -8.6767 ], [ 125.8046, -8.6774 ], [ 125.7939, -8.6732 ], [ 125.7916, -8.6652 ], [ 125.7881, -8.6635 ], [ 125.7861, -8.65 ], [ 125.7817, -8.6489 ], [ 125.7741, -8.6356 ], [ 125.7756, -8.6259 ], [ 125.7673, -8.6168 ], [ 125.7668, -8.6124 ], [ 125.7583, -8.6044 ], [ 125.7605, -8.5988 ], [ 125.7675, -8.5953 ], [ 125.7703, -8.5872 ], [ 125.7661, -8.571 ], [ 125.7753, -8.5666 ], [ 125.7807, -8.5551 ], [ 125.7812, -8.5462 ], [ 125.7843, -8.5421 ], [ 125.7922, -8.543 ], [ 125.794, -8.546 ], [ 125.8013, -8.546 ], [ 125.8087, -8.5402 ], [ 125.823, -8.5391 ], [ 125.8291, -8.5349 ], [ 125.8368, -8.5387 ], [ 125.8449, -8.5305 ], [ 125.8512, -8.5292 ], [ 125.8585, -8.5226 ], [ 125.8568, -8.5185 ], [ 125.8605, -8.5097 ], [ 125.8502, -8.5024 ], [ 125.8445, -8.4928 ], [ 125.8348, -8.4858 ], [ 125.8528, -8.475 ], [ 125.8903, -8.4772 ], [ 125.8939, -8.4753 ], [ 125.9047, -8.475 ], [ 125.9086, -8.4783 ], [ 125.9233, -8.4803 ], [ 125.9369, -8.4784 ], [ 125.9406, -8.4761 ], [ 125.9494, -8.4783 ], [ 125.9584, -8.485 ], [ 125.9656, -8.4847 ], [ 125.9714, -8.4878 ], [ 125.9803, -8.4847 ], [ 125.989, -8.4894 ], [ 125.9958, -8.4978 ], [ 126.0097, -8.5026 ], [ 126.0147, -8.5091 ], [ 126.0283, -8.5128 ], [ 126.0438, -8.5125 ], [ 126.0499, -8.5168 ], [ 126.0639, -8.5125 ], [ 126.0676, -8.5148 ], [ 126.0678, -8.5223 ], [ 126.0743, -8.5173 ], [ 126.0936, -8.5192 ], [ 126.1003, -8.5125 ], [ 126.1062, -8.5095 ], [ 126.1121, -8.5103 ], [ 126.1217, -8.5039 ], [ 126.1278, -8.5033 ], [ 126.1358, -8.5078 ], [ 126.1453, -8.5008 ], [ 126.1571, -8.5005 ], [ 126.161, -8.496 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Manufahi", "ISO": "TL-MF" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.8054, -8.745 ], [ 125.8085, -8.7521 ], [ 125.8131, -8.7535 ], [ 125.8168, -8.7492 ], [ 125.8215, -8.7532 ], [ 125.8212, -8.7576 ], [ 125.8147, -8.7678 ], [ 125.8139, -8.7785 ], [ 125.8202, -8.7802 ], [ 125.8159, -8.7901 ], [ 125.8084, -8.8025 ], [ 125.8086, -8.8054 ], [ 125.8005, -8.8128 ], [ 125.8042, -8.8233 ], [ 125.8089, -8.8259 ], [ 125.8066, -8.8356 ], [ 125.8123, -8.8403 ], [ 125.8183, -8.8499 ], [ 125.8288, -8.8601 ], [ 125.8293, -8.8792 ], [ 125.8354, -8.8822 ], [ 125.8385, -8.878 ], [ 125.8586, -8.8808 ], [ 125.8689, -8.8846 ], [ 125.8778, -8.8834 ], [ 125.8877, -8.8881 ], [ 125.8949, -8.8872 ], [ 125.904, -8.8907 ], [ 125.9076, -8.8956 ], [ 125.9134, -8.8971 ], [ 125.9344, -8.912 ], [ 125.9282, -8.9226 ], [ 125.937, -8.933 ], [ 125.9367, -8.938 ], [ 125.9446, -8.94 ], [ 125.9469, -8.9505 ], [ 125.9601, -8.9631 ], [ 125.9798, -8.9707 ], [ 125.9971, -8.9833 ], [ 125.9978, -8.9853 ], [ 126.0118, -8.9919 ], [ 126.0164, -8.9908 ], [ 126.0336, -9.0097 ], [ 126.035, -9.0151 ], [ 126.043, -9.0162 ], [ 126.0459, -9.0214 ], [ 126.0494, -9.0336 ], [ 126.0548, -9.036 ], [ 126.0615, -9.0569 ], [ 126.0587, -9.0596 ], [ 126.0386, -9.0681 ], [ 126.0256, -9.0694 ], [ 126.0264, -9.0744 ], [ 125.9981, -9.1006 ], [ 125.9844, -9.1106 ], [ 125.9631, -9.1194 ], [ 125.9436, -9.1331 ], [ 125.9364, -9.1347 ], [ 125.9056, -9.1339 ], [ 125.8914, -9.1314 ], [ 125.8775, -9.1269 ], [ 125.8548, -9.1241 ], [ 125.8424, -9.1277 ], [ 125.8358, -9.1339 ], [ 125.8269, -9.1394 ], [ 125.8244, -9.1461 ], [ 125.8161, -9.1514 ], [ 125.8083, -9.1464 ], [ 125.8028, -9.1456 ], [ 125.7909, -9.1473 ], [ 125.7786, -9.1536 ], [ 125.7719, -9.1536 ], [ 125.7675, -9.1608 ], [ 125.7564, -9.166 ], [ 125.7455, -9.1669 ], [ 125.7375, -9.1642 ], [ 125.7268, -9.1672 ], [ 125.7144, -9.1786 ], [ 125.7016, -9.1942 ], [ 125.6898, -9.1788 ], [ 125.6773, -9.1732 ], [ 125.6748, -9.1699 ], [ 125.6741, -9.1609 ], [ 125.6701, -9.1512 ], [ 125.6672, -9.136 ], [ 125.6706, -9.1297 ], [ 125.6699, -9.1243 ], [ 125.6759, -9.1192 ], [ 125.687, -9.1184 ], [ 125.6917, -9.1075 ], [ 125.6911, -9.094 ], [ 125.687, -9.092 ], [ 125.6839, -9.0838 ], [ 125.6739, -9.0794 ], [ 125.6709, -9.0734 ], [ 125.6664, -9.0718 ], [ 125.6538, -9.0753 ], [ 125.6441, -9.0675 ], [ 125.6372, -9.0687 ], [ 125.6292, -9.0616 ], [ 125.6278, -9.0562 ], [ 125.6119, -9.0503 ], [ 125.5958, -9.0417 ], [ 125.596, -9.0303 ], [ 125.5923, -9.0241 ], [ 125.5933, -9.016 ], [ 125.5875, -9.0123 ], [ 125.5903, -8.9941 ], [ 125.5943, -8.9808 ], [ 125.5921, -8.9718 ], [ 125.5939, -8.9613 ], [ 125.5996, -8.9529 ], [ 125.6067, -8.9479 ], [ 125.6078, -8.9395 ], [ 125.6133, -8.9381 ], [ 125.6144, -8.9308 ], [ 125.6217, -8.9232 ], [ 125.6209, -8.9184 ], [ 125.6247, -8.9141 ], [ 125.6335, -8.9155 ], [ 125.6417, -8.9212 ], [ 125.6494, -8.9207 ], [ 125.6606, -8.8969 ], [ 125.6661, -8.8962 ], [ 125.6766, -8.9027 ], [ 125.682, -8.899 ], [ 125.6872, -8.8892 ], [ 125.6865, -8.8747 ], [ 125.6902, -8.8691 ], [ 125.6839, -8.8666 ], [ 125.6855, -8.8521 ], [ 125.6826, -8.8464 ], [ 125.6885, -8.8415 ], [ 125.6834, -8.8327 ], [ 125.6854, -8.8281 ], [ 125.6804, -8.8184 ], [ 125.6851, -8.8134 ], [ 125.6824, -8.8099 ], [ 125.6888, -8.8027 ], [ 125.6905, -8.7979 ], [ 125.6984, -8.7961 ], [ 125.7084, -8.7862 ], [ 125.7175, -8.7856 ], [ 125.7233, -8.7822 ], [ 125.7363, -8.7865 ], [ 125.7415, -8.7805 ], [ 125.7453, -8.7801 ], [ 125.7487, -8.7741 ], [ 125.7529, -8.7726 ], [ 125.7539, -8.7623 ], [ 125.7681, -8.7547 ], [ 125.7711, -8.7482 ], [ 125.7705, -8.7391 ], [ 125.7785, -8.7392 ], [ 125.7856, -8.744 ], [ 125.7885, -8.7425 ], [ 125.797, -8.7492 ], [ 125.8054, -8.745 ] ] ] } },
+{ "type": "Feature", "properties": { "NAME": "Viqueque", "ISO": "TL-VI" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.7299, -8.6871 ], [ 126.7291, -8.6927 ], [ 126.7307, -8.7089 ], [ 126.7292, -8.7143 ], [ 126.7347, -8.7195 ], [ 126.7339, -8.7298 ], [ 126.7385, -8.731 ], [ 126.7371, -8.746 ], [ 126.7341, -8.7535 ], [ 126.7362, -8.7566 ], [ 126.7081, -8.7572 ], [ 126.6759, -8.764 ], [ 126.6619, -8.7702 ], [ 126.6497, -8.7781 ], [ 126.6441, -8.7798 ], [ 126.6293, -8.7904 ], [ 126.6224, -8.7979 ], [ 126.6158, -8.8026 ], [ 126.5969, -8.7995 ], [ 126.5867, -8.8021 ], [ 126.5825, -8.8061 ], [ 126.5742, -8.8183 ], [ 126.5667, -8.8211 ], [ 126.5464, -8.8458 ], [ 126.5367, -8.8591 ], [ 126.5235, -8.8793 ], [ 126.5192, -8.8881 ], [ 126.5083, -8.9028 ], [ 126.5039, -8.9153 ], [ 126.4967, -8.9306 ], [ 126.4849, -8.9396 ], [ 126.4781, -8.947 ], [ 126.4661, -8.9481 ], [ 126.4548, -8.9514 ], [ 126.4482, -8.9471 ], [ 126.4446, -8.9486 ], [ 126.4347, -8.9467 ], [ 126.4274, -8.9498 ], [ 126.4183, -8.9467 ], [ 126.4007, -8.9491 ], [ 126.3894, -8.9531 ], [ 126.3844, -8.9533 ], [ 126.3642, -8.9594 ], [ 126.3056, -8.981 ], [ 126.2803, -8.9819 ], [ 126.2717, -8.98 ], [ 126.2367, -8.9758 ], [ 126.2149, -8.9745 ], [ 126.1986, -8.9744 ], [ 126.1792, -8.9797 ], [ 126.1683, -8.9853 ], [ 126.1547, -8.9904 ], [ 126.1503, -8.9851 ], [ 126.1435, -8.9825 ], [ 126.1427, -8.9733 ], [ 126.1447, -8.9707 ], [ 126.1321, -8.962 ], [ 126.1253, -8.9527 ], [ 126.1177, -8.9487 ], [ 126.1086, -8.947 ], [ 126.1042, -8.9407 ], [ 126.1044, -8.9362 ], [ 126.1006, -8.9225 ], [ 126.1002, -8.9098 ], [ 126.0976, -8.9032 ], [ 126.0923, -8.8972 ], [ 126.092, -8.8915 ], [ 126.0847, -8.882 ], [ 126.0923, -8.8711 ], [ 126.0886, -8.8628 ], [ 126.0927, -8.8577 ], [ 126.0942, -8.8481 ], [ 126.089, -8.8411 ], [ 126.0782, -8.8365 ], [ 126.0744, -8.8318 ], [ 126.075, -8.8207 ], [ 126.0659, -8.8108 ], [ 126.0562, -8.8044 ], [ 126.0549, -8.7997 ], [ 126.0479, -8.7956 ], [ 126.0518, -8.7881 ], [ 126.0465, -8.7743 ], [ 126.0514, -8.7635 ], [ 126.0573, -8.7569 ], [ 126.0615, -8.7571 ], [ 126.0702, -8.749 ], [ 126.0759, -8.7458 ], [ 126.0882, -8.7336 ], [ 126.0909, -8.7261 ], [ 126.0961, -8.7231 ], [ 126.0967, -8.7122 ], [ 126.0947, -8.7077 ], [ 126.0989, -8.6866 ], [ 126.1045, -8.6821 ], [ 126.1084, -8.6735 ], [ 126.125, -8.6669 ], [ 126.1319, -8.67 ], [ 126.1425, -8.6672 ], [ 126.1495, -8.6729 ], [ 126.1546, -8.673 ], [ 126.1612, -8.6792 ], [ 126.1678, -8.6764 ], [ 126.1737, -8.6807 ], [ 126.178, -8.687 ], [ 126.1864, -8.6878 ], [ 126.1942, -8.6919 ], [ 126.2004, -8.6858 ], [ 126.2085, -8.6866 ], [ 126.2121, -8.6956 ], [ 126.2266, -8.6974 ], [ 126.2316, -8.6837 ], [ 126.2394, -8.686 ], [ 126.2517, -8.6846 ], [ 126.2551, -8.6935 ], [ 126.2645, -8.6929 ], [ 126.268, -8.6866 ], [ 126.2728, -8.6845 ], [ 126.2747, -8.6781 ], [ 126.2828, -8.6688 ], [ 126.2911, -8.6693 ], [ 126.3078, -8.6815 ], [ 126.3173, -8.6811 ], [ 126.3235, -8.6761 ], [ 126.3346, -8.6733 ], [ 126.3382, -8.6809 ], [ 126.3429, -8.6839 ], [ 126.3577, -8.6774 ], [ 126.3605, -8.6699 ], [ 126.3677, -8.6657 ], [ 126.3767, -8.6655 ], [ 126.3809, -8.6602 ], [ 126.3892, -8.6569 ], [ 126.3951, -8.6569 ], [ 126.3906, -8.665 ], [ 126.3905, -8.6727 ], [ 126.3954, -8.6769 ], [ 126.3983, -8.6879 ], [ 126.404, -8.6912 ], [ 126.4424, -8.7019 ], [ 126.4476, -8.6996 ], [ 126.4505, -8.6846 ], [ 126.4556, -8.6847 ], [ 126.4547, -8.6708 ], [ 126.4453, -8.662 ], [ 126.4484, -8.6527 ], [ 126.4546, -8.6469 ], [ 126.4628, -8.632 ], [ 126.468, -8.629 ], [ 126.4674, -8.623 ], [ 126.462, -8.6224 ], [ 126.4592, -8.6125 ], [ 126.4649, -8.5972 ], [ 126.4637, -8.5922 ], [ 126.4736, -8.5936 ], [ 126.4781, -8.6038 ], [ 126.4776, -8.6115 ], [ 126.4879, -8.6175 ], [ 126.4848, -8.6259 ], [ 126.4849, -8.632 ], [ 126.4879, -8.6373 ], [ 126.4873, -8.6427 ], [ 126.4917, -8.6494 ], [ 126.5013, -8.6597 ], [ 126.5022, -8.6633 ], [ 126.5109, -8.6773 ], [ 126.5226, -8.6817 ], [ 126.5334, -8.681 ], [ 126.5468, -8.6681 ], [ 126.5588, -8.6644 ], [ 126.5669, -8.6573 ], [ 126.5791, -8.655 ], [ 126.5845, -8.6516 ], [ 126.5888, -8.6531 ], [ 126.5879, -8.6605 ], [ 126.5956, -8.668 ], [ 126.6128, -8.6883 ], [ 126.6226, -8.6754 ], [ 126.621, -8.6621 ], [ 126.6274, -8.6513 ], [ 126.6449, -8.6474 ], [ 126.6536, -8.6357 ], [ 126.6664, -8.6386 ], [ 126.6754, -8.6447 ], [ 126.705, -8.6485 ], [ 126.7124, -8.6477 ], [ 126.7226, -8.6592 ], [ 126.7292, -8.6626 ], [ 126.7283, -8.6667 ], [ 126.7348, -8.677 ], [ 126.7299, -8.6871 ] ] ] } }
+]
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson
new file mode 100644
index 0000000..fa66f81
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson
@@ -0,0 +1,219 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.152421995997429,51.59897994995117],[0.159775003790799,51.563388824463004],[0.193339005112705,51.55400085449213],[0.172252997756004,51.528106689453125],[0.166115000844059,51.506519317627],[0.119151003658828,51.51191329956066],[0.097815997898692,51.5101890563966],[0.074619002640361,51.542129516601676],[0.127525001764411,51.55410003662115],[0.137917995452995,51.591773986816406],[0.152421995997429,51.59897994995117]]]},"properties":{"ID_0":242,"ISO":"GB-BDG","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":1,"NAME_2":"Barking and Dagenham","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.712670087814331,51.31989288330084],[-2.714828968048096,51.342681884765625],[-2.680032968521061,51.34134292602544],[-2.646574974060059,51.34937286376953],[-2.633456945419198,51.382179260253906],[-2.562264919281006,51.38015365600586],[-2.539515018463078,51.39353561401367],[-2.522646903991642,51.41886901855474],[-2.503379106521606,51.405582427978565],[-2.397656917572021,51.40290451049804],[-2.280632972717285,51.420318603515625],[-2.279999017715397,51.37250137329113],[-2.333611011505127,51.34693908691411],[-2.296669006347543,51.34027099609381],[-2.290097951889038,51.324958801269524],[-2.34583401679987,51.29999923706065],[-2.40500092506403,51.29943847656256],[-2.42305588722229,51.28221893310547],[-2.458056926727294,51.27304840087885],[-2.488332986831608,51.27582931518555],[-2.493057012557927,51.289440155029354],[-2.539444923400879,51.29999923706065],[-2.591387987136727,51.28305053710943],[-2.62083196640009,51.28305053710943],[-2.668334007263184,51.31193923950201],[-2.712670087814331,51.31989288330084]]]},"properties":{"ID_0":242,"ISO":"GB-BAS","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":2,"NAME_2":"Bath and North East Somerset","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.385149002075138,51.92111587524414],[-0.403178989887238,51.91548156738281],[-0.464507997035866,51.91367721557617],[-0.477133989334106,51.89022827148448],[-0.471720993518829,51.866779327392635],[-0.45266801118845,51.847469329833984],[-0.482221007346993,51.83443832397472],[-0.491389989852848,51.81499099731457],[-0.514999985694885,51.801940917968864],[-0.533610999584198,51.819438934326165],[-0.561110973358154,51.854721069335994],[-0.603057026863098,51.88000106811535],[-0.625555992126465,51.87638854980469],[-0.661110997200012,51.896389007568416],[-0.688054978847504,51.90277099609381],[-0.657158970832768,51.94794845581065],[-0.641668021678868,51.96194076538086],[-0.654165983200016,51.9880485534668],[-0.634442985057717,52.00444030761724],[-0.630001008510589,52.028331756591854],[-0.658333003520909,52.03889083862316],[-0.621945977210999,52.071659088134815],[-0.573612987995148,52.09666061401373],[-0.588057994842416,52.11804962158203],[-0.63160502910614,52.1465110778808],[-0.621200978755894,52.174911499023494],[-0.654443979263249,52.192501068115234],[-0.634442985057717,52.216110229492244],[-0.641389012336731,52.259159088134815],[-0.590556025505009,52.26610946655267],[-0.558610975742226,52.248050689697266],[-0.525277018547001,52.260551452636776],[-0.525277018547001,52.283329010009766],[-0.503054976463204,52.30305099487315],[-0.458727985620499,52.30881881713878],[-0.429443985223656,52.29748916625982],[-0.418888986110687,52.27804946899419],[-0.371111005544662,52.26778030395519],[-0.368333011865616,52.241939544677734],[-0.355277985334396,52.227218627929744],[-0.293334007263127,52.22415924072271],[-0.29194301366806,52.20277023315441],[-0.253057003021183,52.191940307617244],[-0.233888998627606,52.17277908325207],[-0.246943995356503,52.160549163818416],[-0.206945002078953,52.150550842285206],[-0.216665998101234,52.13277053833019],[-0.130555003881341,52.12137985229492],[-0.146109998226166,52.069721221923885],[-0.204723000526428,52.03026962280279],[-0.200832992792073,52.00999069213867],[-0.236945003271103,51.996379852295036],[-0.254720002412796,51.978610992431754],[-0.289999008178597,51.99361038208008],[-0.311388999223652,51.98389053344732],[-0.347777992486897,51.981380462646484],[-0.344166994094792,51.96305084228521],[-0.361110001802444,51.949440002441406],[-0.386388003826141,51.97111129760747],[-0.399167001247349,51.935001373291016],[-0.385149002075138,51.92111587524414]]]},"properties":{"ID_0":242,"ISO":"GB-BDF","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":3,"NAME_2":"Bedfordshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.486946940422058,51.332500457763665],[-1.498057007789498,51.366100311279354],[-1.533334016799813,51.37749099731445],[-1.56333398818964,51.4122200012207],[-1.521944999694767,51.4258308410645],[-1.528332948684692,51.4513893127442],[-1.550554990768433,51.46139144897455],[-1.580399990081673,51.50305557250982],[-1.584468007087594,51.517429351806754],[-1.567499995231572,51.54582977294921],[-1.534168004989624,51.550548553466854],[-1.486667990684452,51.54693984985357],[-1.448889017105103,51.53277969360351],[-1.418334960937386,51.54027938842779],[-1.388056993484497,51.536109924316406],[-1.365556955337524,51.544998168945426],[-1.338889002799988,51.53722000122076],[-1.321943998336792,51.549999237060604],[-1.289721012115422,51.54861068725586],[-1.264443993568364,51.53248977661144],[-1.226943016052246,51.53332901000976],[-1.184167981147709,51.52304840087902],[-1.148056983947697,51.53165817260748],[-1.132778048515206,51.51082992553711],[-1.100556015968323,51.48917007446295],[-1.063611030578613,51.48527908325195],[-0.983610987663269,51.44916915893566],[-0.97222197055811,51.448051452636776],[-0.907221019268036,51.47499847412121],[-0.868332028388977,51.50194168090826],[-0.890277981758061,51.5286102294923],[-0.891583979129791,51.54838180541992],[-0.850832998752537,51.539161682128906],[-0.798332989215851,51.541381835937614],[-0.772499024868011,51.55722045898449],[-0.709721982479039,51.55833053588867],[-0.687223017215672,51.53998947143554],[-0.70472198724741,51.50471115112304],[-0.660278975963593,51.48083114624035],[-0.623161017894745,51.480899810791016],[-0.64333397150034,51.503330230713004],[-0.644442975521031,51.5263786315919],[-0.616667985916138,51.530269622802734],[-0.561389982700291,51.521938323974666],[-0.557501018047333,51.50416946411133],[-0.523611009120941,51.506389617920036],[-0.51277798414219,51.475830078125],[-0.526400029659271,51.43140029907238],[-0.569967985153085,51.442989349365284],[-0.590278029441833,51.42638015747076],[-0.598887979984227,51.403610229492244],[-0.619722008705139,51.38777160644537],[-0.658056974410954,51.38222122192394],[-0.720833003520966,51.36388015747082],[-0.765276014804726,51.33137893676758],[-0.819719970226288,51.348880767822266],[-0.886389970779362,51.35139083862305],[-0.919166028499603,51.36027908325207],[-0.9666650295257,51.357219696045036],[-0.996388018131199,51.36222076416021],[-1.031944036483708,51.35472106933594],[-1.060279011726379,51.37332916259777],[-1.111111998558044,51.37137985229492],[-1.120000958442631,51.35472106933594],[-1.245278000831547,51.368888854980526],[-1.399446010589599,51.37054824829113],[-1.436666011810246,51.35248947143549],[-1.433055996894836,51.33472061157238],[-1.486946940422058,51.332500457763665]]]},"properties":{"ID_0":242,"ISO":"GB-WBK","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":4,"NAME_2":"Berkshire","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.080312997102794,51.431617736816456],[0.087980002164898,51.465873718261655],[0.121247999370098,51.476787567138786],[0.119151003658828,51.51191329956066],[0.166115000844059,51.506519317627],[0.191625997424126,51.48337554931651],[0.224682003259659,51.489070892333984],[0.223610997200012,51.47333145141607],[0.211390003561974,51.456939697265625],[0.160833999514637,51.41722106933605],[0.16627000272274,51.39855575561529],[0.138674005866051,51.412044525146484],[0.104828998446465,51.41489028930663],[0.080312997102794,51.431617736816456]]]},"properties":{"ID_0":242,"ISO":"GB-BEX","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":5,"NAME_2":"Bexley","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.35657095909113,53.66466140747076],[-2.376390933990479,53.63499069213878],[-2.434444904327393,53.64416885375971],[-2.463610887527465,53.62416076660162],[-2.504431962966919,53.62708282470714],[-2.526494026184025,53.653591156005916],[-2.525605916976872,53.7379989624024],[-2.496287107467595,53.76198577880859],[-2.446531057357788,53.77264785766607],[-2.418098926544189,53.76554107666027],[-2.379894018173217,53.707790374755916],[-2.35657095909113,53.66466140747076]]]},"properties":{"ID_0":242,"ISO":"GB-BBD","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":6,"NAME_2":"Blackburn with Darwen","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":"Blackburn, Blackburn and Darwen"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.885833978652954,50.71349334716797],[-1.921450018882751,50.71969223022461],[-1.920369982719308,50.75004577636713],[-1.870257973670959,50.75146865844737],[-1.816418051719666,50.738227844238224],[-1.79193997383112,50.719028472900504],[-1.83027803897852,50.72069549560547],[-1.885833978652954,50.71349334716797]]]},"properties":{"ID_0":242,"ISO":"GB-BMH","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":7,"NAME_2":"Bournemouth","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.236594006419125,51.52651214599621],[-0.293960005044937,51.52960205078125],[-0.32547599077219,51.54936599731445],[-0.305317014455795,51.57789230346691],[-0.283463001251164,51.581935882568295],[-0.266775012016239,51.60105514526367],[-0.243687003850937,51.57310104370123],[-0.204728007316589,51.551540374755916],[-0.178977996110916,51.52835083007818],[-0.211057007312775,51.522098541259766],[-0.236594006419125,51.52651214599621]]]},"properties":{"ID_0":242,"ISO":"GB-BEN","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":8,"NAME_2":"Brent","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.017590999603328,50.78486251831049],[-0.085277996957302,50.809860229492244],[-0.157499000429993,50.8223609924317],[-0.207498997449875,50.82641601562506],[-0.230278998613301,50.85694122314459],[-0.213330999016762,50.87498855590826],[-0.181667000055313,50.872501373291065],[-0.152777001261711,50.89139175415045],[-0.128588005900383,50.88260269165044],[-0.05392400175333,50.84808731079107],[-0.011202000081539,50.8243522644043],[0.017590999603328,50.78486251831049]]]},"properties":{"ID_0":242,"ISO":"GB-BNH","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":9,"NAME_2":"Brighton and Hove","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.633456945419198,51.382179260253906],[-2.630516052246037,51.44305419921874],[-2.66798996925354,51.46714019775396],[-2.705461025238037,51.48052597045898],[-2.731005907058602,51.49736022949219],[-2.683054924011174,51.53552627563482],[-2.666650056838932,51.520671844482536],[-2.571633100509644,51.48721694946294],[-2.518100023269653,51.47249603271496],[-2.522646903991642,51.41886901855474],[-2.539515018463078,51.39353561401367],[-2.562264919281006,51.38015365600586],[-2.633456945419198,51.382179260253906]]]},"properties":{"ID_0":242,"ISO":"GB-BST","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":10,"NAME_2":"Bristol","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.013167000375745,51.32074356079107],[0.000276000239069,51.34575653076172],[-0.030860999599042,51.38095474243164],[-0.05952399969101,51.39484405517584],[-0.07634399831295,51.414375305175724],[-0.074546001851559,51.41921997070318],[-0.066652998328209,51.42107391357422],[-0.022267000749707,51.41886138916021],[0.003723999951148,51.411174774170036],[0.025491999462304,51.438079833984375],[0.080312997102794,51.431617736816456],[0.104828998446465,51.41489028930663],[0.138674005866051,51.412044525146484],[0.16627000272274,51.39855575561529],[0.155277997255325,51.35472106933594],[0.096665002405643,51.31110000610346],[0.09388899803173,51.288330078125],[0.054444000124988,51.28998947143555],[0.022500000894127,51.289718627929744],[0.013167000375745,51.32074356079107]]]},"properties":{"ID_0":242,"ISO":"GB-BRY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":11,"NAME_2":"Bromley","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.493405014276448,51.5909881591798],[-0.471388995647374,51.549999237060604],[-0.484445989131927,51.49443817138683],[-0.497188985347748,51.477870941162166],[-0.51277798414219,51.475830078125],[-0.523611009120941,51.506389617920036],[-0.557501018047333,51.50416946411133],[-0.561389982700291,51.521938323974666],[-0.616667985916138,51.530269622802734],[-0.644442975521031,51.5263786315919],[-0.64333397150034,51.503330230713004],[-0.623161017894745,51.480899810791016],[-0.660278975963593,51.48083114624035],[-0.70472198724741,51.50471115112304],[-0.687223017215672,51.53998947143554],[-0.709721982479039,51.55833053588867],[-0.772499024868011,51.55722045898449],[-0.798332989215851,51.541381835937614],[-0.850832998752537,51.539161682128906],[-0.891583979129791,51.54838180541992],[-0.931945025920868,51.57054901123058],[-0.911945998668671,51.5897216796875],[-0.944446027278843,51.61915969848632],[-0.930554986000061,51.63471984863281],[-0.921387970447483,51.667221069335994],[-0.876667022705078,51.664440155029354],[-0.884442985057831,51.71638107299816],[-0.911945998668671,51.740550994873104],[-0.965555012226048,51.756099700927734],[-1.018057942390385,51.75249099731445],[-1.040277004241943,51.74332809448242],[-1.065834999084473,51.7513885498048],[-1.079722046852112,51.773048400878956],[-1.108610033988953,51.7797203063966],[-1.1161110401153,51.83805084228515],[-1.069445013999939,51.823879241943416],[-1.047220945358276,51.83304977416998],[-1.062777042388916,51.87860870361339],[-1.081665992736816,51.89776992797862],[-1.075834035873356,51.919441223144474],[-1.047220945358276,51.939720153808594],[-1.082499980926457,51.95249938964843],[-1.053056001663151,51.992771148681754],[-1.108158946037292,52.00925827026373],[-1.141713976860046,52.01774978637707],[-1.096667051315251,52.04388046264659],[-1.03666698932642,52.05360031127941],[-1.02333402633667,52.06472015380864],[-0.990832984447479,52.063049316406364],[-0.940555989742222,52.07194137573236],[-0.901345014572144,52.018619537353565],[-0.867379009723663,52.03387069702154],[-0.837885022163334,52.011081695556754],[-0.778361022472325,51.976810455322266],[-0.722445011138916,51.9497528076173],[-0.657158970832768,51.94794845581065],[-0.688054978847504,51.90277099609381],[-0.661110997200012,51.896389007568416],[-0.625555992126465,51.87638854980469],[-0.603057026863098,51.88000106811535],[-0.561110973358154,51.854721069335994],[-0.533610999584198,51.819438934326165],[-0.551944971084538,51.82165908813488],[-0.579445004463196,51.80138015747076],[-0.653887987136784,51.811389923095646],[-0.676388025283813,51.829158782958984],[-0.674444019794464,51.84304809570318],[-0.713056981563511,51.84833145141607],[-0.730000019073486,51.82777023315441],[-0.709721982479039,51.80916976928711],[-0.678331971168518,51.79582977294933],[-0.673609972000065,51.76943969726568],[-0.631389021873417,51.7488899230957],[-0.588890016078949,51.74916076660156],[-0.548331975936833,51.71638107299816],[-0.537222027778625,51.67499923706066],[-0.498055011033955,51.667770385742244],[-0.523889005184174,51.641109466552734],[-0.518612027168274,51.60776901245123],[-0.493405014276448,51.5909881591798]]]},"properties":{"ID_0":242,"ISO":"GB-BKM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":12,"NAME_2":"Buckinghamshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.447221010923329,52.43222045898443],[0.392776995897293,52.40805053710949],[0.389721006155128,52.39027023315424],[0.419167995452938,52.35583114624029],[0.446667999029103,52.34000015258795],[0.434166997671127,52.309719085693416],[0.472499012947196,52.30833053588873],[0.510555982589665,52.28165817260748],[0.495555013418311,52.264999389648544],[0.430554002523422,52.253879547119254],[0.382777005434036,52.276939392089844],[0.349721997976417,52.25777053833007],[0.392498999834118,52.22499847412104],[0.426943987608013,52.2380485534669],[0.462222993373985,52.2397193908692],[0.50472199916851,52.2283287048341],[0.517220973968563,52.210548400878906],[0.498333007097301,52.177219390869084],[0.498611003160477,52.160831451416016],[0.46166700124752,52.16389083862305],[0.431665986776409,52.145000457763665],[0.427500009536743,52.12916946411133],[0.398056000471172,52.104438781738395],[0.408932000398693,52.05936050415039],[0.365554988384247,52.04417037963873],[0.325278997421265,52.07416915893566],[0.286664992570934,52.0849990844726],[0.255832999944744,52.07693862915039],[0.206668004393578,52.08166885375971],[0.193610996007976,52.05693817138683],[0.139166995883045,52.04193878173828],[0.106389999389705,52.054988861083984],[0.108332000672874,52.027500152587834],[0.08055599778902,52.00249099731457],[0.051389999687728,52.04333114624018],[-0.011388000100794,52.051670074463],[-0.029443999752345,52.039989471435604],[-0.067220002412796,52.03387832641607],[-0.109168000519276,52.01943969726562],[-0.135555997490883,52.04360961914057],[-0.146109998226166,52.069721221923885],[-0.130555003881341,52.12137985229492],[-0.216665998101234,52.13277053833019],[-0.206945002078953,52.150550842285206],[-0.246943995356503,52.160549163818416],[-0.233888998627606,52.17277908325207],[-0.253057003021183,52.191940307617244],[-0.29194301366806,52.20277023315441],[-0.293334007263127,52.22415924072271],[-0.355277985334396,52.227218627929744],[-0.368333011865616,52.241939544677734],[-0.371111005544662,52.26778030395519],[-0.418888986110687,52.27804946899419],[-0.429443985223656,52.29748916625982],[-0.458727985620499,52.30881881713878],[-0.461389988660812,52.32360839843744],[-0.485556006431523,52.348609924316406],[-0.484445989131927,52.365550994873104],[-0.425832986831608,52.38249969482433],[-0.416388988494816,52.39582824707037],[-0.382777988910675,52.412220001220696],[-0.335557013750019,52.45555114746105],[-0.348055988550129,52.4900016784669],[-0.407130986451989,52.5118293762207],[-0.39832898974413,52.537429809570256],[-0.414335012435913,52.559688568115234],[-0.397866010665837,52.55894088745117],[-0.326526999473515,52.50751113891607],[-0.286709994077682,52.504192352294915],[-0.238598003983498,52.532394409179744],[-0.215372994542065,52.552303314209034],[-0.140716001391411,52.57719039916986],[-0.062739998102188,52.58548355102544],[-0.049467999488115,52.598758697509766],[-0.049467999488115,52.65792465209961],[3.98e-13,52.64752960205078],[0.032219998538608,52.64804840087885],[0.057222999632472,52.670558929443416],[0.052777998149509,52.70055007934582],[0.097498998046035,52.70804977416992],[0.149443000555095,52.725269317626946],[0.172442004084644,52.724388122558594],[0.157077997922954,52.67021179199219],[0.197501003742218,52.66110992431646],[0.184722006321067,52.63000106811534],[0.245831996202469,52.60139083862316],[0.219998002052307,52.58443832397455],[0.228332996368408,52.56082916259777],[0.218331992626247,52.543331146240284],[0.223055005073547,52.52165985107422],[0.253055006265754,52.48749923706066],[0.285834014415855,52.500000000000114],[0.32861098647129,52.503330230713],[0.362500995397568,52.49055099487315],[0.398056000471172,52.45528030395519],[0.447221010923329,52.43222045898443]]]},"properties":{"ID_0":242,"ISO":"GB-CAM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":13,"NAME_2":"Cambridgeshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.130917996168137,51.56416702270519],[-0.110025003552437,51.5265617370606],[-0.096313998103028,51.51580429077148],[-0.102742999792099,51.51198959350586],[-0.121914997696877,51.509796142578125],[-0.145739004015809,51.52985763549816],[-0.178977996110916,51.52835083007818],[-0.204728007316589,51.551540374755916],[-0.16264800727356,51.566417694091854],[-0.130917996168137,51.56416702270519]]]},"properties":{"ID_0":242,"ISO":"GB-CMD","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":14,"NAME_2":"Camden","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.976848959922791,53.207370758056754],[-2.005557060241642,53.18610000610357],[-2.030555009841919,53.18471908569335],[-2.06833291053772,53.165828704833984],[-2.140001058578491,53.16999816894537],[-2.134721994399968,53.15027999877935],[-2.157778024673462,53.14749908447271],[-2.20491099357605,53.113666534423885],[-2.243597030639535,53.08589172363286],[-2.272222995757943,53.07749938964849],[-2.305557012557927,53.0791587829591],[-2.33555793762207,53.056110382080185],[-2.36583399772644,53.0522193908692],[-2.37388801574707,53.03722000122081],[-2.366389989852848,53.00027084350586],[-2.378781080245972,52.98960876464855],[-2.423609972000065,52.9786109924317],[-2.430835008621216,52.96500015258788],[-2.478888034820557,52.95415878295904],[-2.512778997421208,52.96165847778332],[-2.527224063873234,52.94721984863287],[-2.57778000831604,52.95360946655279],[-2.589446067810059,52.9769401550294],[-2.622776985168457,52.98582839965826],[-2.727740049362126,52.96660995483404],[-2.7744460105896,52.9849891662597],[-2.812777042388916,52.984161376953125],[-2.827500104904174,53.00222015380871],[-2.860470056533813,53.021930694580185],[-2.864376068115177,53.05360031127941],[-2.895487070083504,53.100749969482536],[-2.93833398818964,53.124721527099666],[-2.956809043884277,53.14467239379883],[-2.909168004989624,53.171390533447266],[-2.912499904632568,53.18638992309582],[-2.955276966094914,53.215549468994254],[-3.001389026641846,53.23944091796881],[-3.037220954894906,53.25111007690429],[-3.092499971389771,53.25672149658203],[-3.099165916442757,53.285758972168026],[-3.066668033599854,53.30554962158203],[-3.02527904510498,53.29360961914068],[-2.974445104598999,53.29666137695318],[-2.944998025894165,53.2894401550293],[-2.924989938735962,53.30680465698242],[-2.878056049346923,53.28930664062494],[-2.838610887527465,53.29402923583996],[-2.813055038452148,53.304584503173885],[-2.771389961242676,53.304862976074276],[-2.763055086135864,53.32764053344732],[-2.808409929275455,53.32847213745128],[-2.767220973968449,53.347770690918026],[-2.77222204208374,53.365001678466854],[-2.741111993789616,53.388328552246094],[-2.680557012557927,53.37887954711914],[-2.662832021713257,53.357460021972656],[-2.605659961700383,53.338134765624936],[-2.580697059631234,53.31558609008789],[-2.55492901802063,53.31236648559575],[-2.447022914886475,53.355045318603516],[-2.42877006530756,53.38039016723633],[-2.364721059799137,53.36249923706055],[-2.316668033599854,53.359989166259766],[-2.28333306312561,53.34222030639659],[-2.238333940505868,53.35499954223644],[-2.176111936569157,53.34555053710949],[-2.159446954727173,53.321388244628906],[-2.140279054641724,53.3277702331543],[-2.119998931884766,53.359439849853516],[-2.080832004547119,53.3611106872558],[-2.049443960189762,53.3522186279298],[-2.016736030578613,53.370479583740234],[-1.998056054115296,53.33583068847667],[-1.995555996894836,53.26416015624999],[-1.990556001663208,53.241661071777344],[-1.970834016799927,53.23027038574224],[-1.976848959922791,53.207370758056754]]]},"properties":{"ID_0":242,"ISO":"GB-CHS","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":15,"NAME_2":"Cheshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.554721832275391,50.92303848266607],[-4.458333015441895,50.92110061645508],[-4.455832958221436,50.90166091918951],[-4.417778015136719,50.85499954223644],[-4.439445972442627,50.841110229492244],[-4.450000762939453,50.799438476562614],[-4.440556049346924,50.77972030639648],[-4.412777900695744,50.76055145263672],[-4.376945018768311,50.764438629150504],[-4.37805700302124,50.74166107177729],[-4.362500190734863,50.71944046020502],[-4.360834121704045,50.69250106811534],[-4.346944808959961,50.6786003112794],[-4.335000038146972,50.64278030395508],[-4.296113014221191,50.62554931640625],[-4.301390171051025,50.58777999877941],[-4.273055076599121,50.56499099731445],[-4.270555019378662,50.54249954223633],[-4.216945171356144,50.533611297607536],[-4.189723014831543,50.494438171386825],[-4.217779159545842,50.494720458984375],[-4.23097801208496,50.470417022705135],[-4.204721927642765,50.44013977050781],[-4.209722995758057,50.39291763305664],[-4.18305492401123,50.35763931274414],[-4.208611011505013,50.317916870117244],[-4.245832920074406,50.34208297729498],[-4.291944980621338,50.358470916748104],[-4.366943836212158,50.35985946655284],[-4.386943817138672,50.36402893066406],[-4.436943054199218,50.36041641235363],[-4.451388835906869,50.34347152709972],[-4.53916692733759,50.323192596435604],[-4.58583307266224,50.33180618286144],[-4.602499961852971,50.324306488037166],[-4.682499885558968,50.32263946533203],[-4.70527791976923,50.340415954589844],[-4.765833854675293,50.323192596435604],[-4.755833148956299,50.2993049621582],[-4.783610820770264,50.287361145019524],[-4.785276889801025,50.2454185485841],[-4.798057079315186,50.23041534423833],[-4.863055229186955,50.23430633544916],[-4.903610229492131,50.21097183227539],[-4.958610057830811,50.20124816894542],[-4.973611831665039,50.18430709838873],[-4.972498893737792,50.16402816772461],[-5.008612155914306,50.139026641845646],[-5.025277137756347,50.15430450439459],[-5.020277023315429,50.18347167968756],[-5.031943798065186,50.200416564941406],[-5.063055992126407,50.1926383972168],[-5.04527711868286,50.16930389404297],[-5.069723129272461,50.161804199218864],[-5.066944122314453,50.14458465576177],[-5.08861207962036,50.12430572509765],[-5.086390018463078,50.1043052673341],[-5.101944923400879,50.09375],[-5.07694482803339,50.07930374145519],[-5.059165954589787,50.051528930664176],[-5.069167137145882,50.03374862670893],[-5.089166164398192,50.030971527099666],[-5.100276947021428,50.004028320312614],[-5.156389236450138,50.007362365722656],[-5.197638988494759,49.95847320556651],[-5.245139122009277,49.974304199218864],[-5.268610954284668,50.006248474121094],[-5.256945133209229,50.02069473266607],[-5.279166221618539,50.05625152587896],[-5.333610057830754,50.09041595458989],[-5.357500076293888,50.088748931884815],[-5.389165878295842,50.103195190429744],[-5.428610801696777,50.10458374023448],[-5.461390018463078,50.12236022949219],[-5.491387844085637,50.12847137451172],[-5.529723167419434,50.12374877929693],[-5.546944141387939,50.1073608398438],[-5.531389236450082,50.089027404785156],[-5.549166202545166,50.06180572509771],[-5.572500228881835,50.05263900756836],[-5.670833110809269,50.03458404541027],[-5.716389179229735,50.06402969360363],[-5.693055152893066,50.08263778686523],[-5.704721927642822,50.13541793823242],[-5.671946048736515,50.16680526733404],[-5.621943950653076,50.176807403564446],[-5.565277099609318,50.20013809204107],[-5.549166202545166,50.21180725097656],[-5.499722957611084,50.2198600769044],[-5.468056201934814,50.19958496093744],[-5.436944007873478,50.19374847412115],[-5.391944885253906,50.22735977172851],[-5.395833015441838,50.24013900756836],[-5.344723224639893,50.238193511963],[-5.315277099609375,50.249584197998104],[-5.275834083557129,50.27513885498046],[-5.245833873748779,50.28680419921875],[-5.23527717590332,50.31874847412121],[-5.199721813201847,50.32097244262707],[-5.181944847106934,50.340694427490234],[-5.158610820770207,50.34875106811529],[-5.147500038146916,50.37513732910161],[-5.146944046020451,50.40569305419927],[-5.070279121398926,50.420696258545036],[-5.042500972747746,50.443473815918026],[-5.024721145629883,50.539859771728565],[-4.984166145324707,50.54264068603521],[-4.970832824706974,50.55875015258795],[-4.937500953674259,50.55347061157238],[-4.915277004241887,50.575138092041065],[-4.870277881622314,50.5951385498048],[-4.795832157134896,50.59847259521484],[-4.770834922790471,50.62486267089849],[-4.757499217987004,50.67208480834972],[-4.70638990402216,50.68597412109375],[-4.655278205871582,50.715972900390625],[-4.652500152587833,50.739582061767635],[-4.620276927947941,50.751251220703125],[-4.557500839233398,50.78763961791997],[-4.556387901306152,50.8576393127442],[-4.569721221923771,50.904304504394645],[-4.554721832275391,50.92303848266607]]],[[[-6.314583778381291,49.913192749023494],[-6.309862136840763,49.93319320678722],[-6.275972843170166,49.92791748046881],[-6.28652811050415,49.909862518310604],[-6.314583778381291,49.913192749023494]]]]},"properties":{"ID_0":242,"ISO":"GB-CON","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":16,"NAME_2":"Cornwall","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":"Cornouailles|Cornovaglia|Cornualha|Cornualles|Cornwall and Isles of Scilly"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.163618996739387,51.31964111328125],[-0.110386997461319,51.34771347045892],[-0.11829599738121,51.37684249877941],[-0.131302997469902,51.38724136352539],[-0.126905992627087,51.408092498779354],[-0.07634399831295,51.414375305175724],[-0.05952399969101,51.39484405517584],[-0.030860999599042,51.38095474243164],[0.000276000239069,51.34575653076172],[0.013167000375745,51.32074356079107],[-0.026667999103609,51.330829620361385],[-0.046666998416185,51.315551757812614],[-0.084721997380257,51.31110000610346],[-0.101943001150971,51.29277038574224],[-0.12805700302124,51.28916168212896],[-0.163618996739387,51.31964111328125]]]},"properties":{"ID_0":242,"ISO":"GB-CRY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":17,"NAME_2":"Croydon","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.049704074859619,54.98513412475591],[-3.030833005905151,55.0166587829591],[-3.033334970474243,55.05250167846691],[-2.977777004241943,55.03998947143555],[-2.950556993484497,55.04055023193364],[-2.92833304405201,55.071388244628906],[-2.884166002273446,55.08137893676758],[-2.850555896758976,55.112220764160156],[-2.819998979568481,55.13972091674799],[-2.771111965179443,55.14611053466791],[-2.699444055557194,55.1772193908692],[-2.685632944107056,55.19132995605469],[-2.64083194732666,55.13222122192394],[-2.59777903556818,55.12360000610357],[-2.587500095367375,55.103050231933594],[-2.547223091125375,55.079990386963],[-2.505280017852783,55.08694076538086],[-2.481945991516113,55.039161682128906],[-2.559999942779541,55.01194000244146],[-2.56777906417841,54.986110687255916],[-2.591943979263306,54.96665954589844],[-2.565000057220459,54.95777130126959],[-2.541666984558105,54.92304992675787],[-2.559443950653076,54.91582870483398],[-2.570276975631657,54.89305114746094],[-2.59361004829401,54.88277053833019],[-2.566387891769409,54.85832977294922],[-2.56361198425293,54.82360839843749],[-2.533612012863102,54.808048248291016],[-2.5,54.8052711486817],[-2.400000095367375,54.84722137451166],[-2.361944913864135,54.810829162597656],[-2.305007934570312,54.78327178955089],[-2.327223062515259,54.72748947143565],[-2.353888988494873,54.69083023071295],[-2.344722032546997,54.68222045898449],[-2.290832042694035,54.66582870483404],[-2.279166936874276,54.65027999877923],[-2.305557012557927,54.627780914306584],[-2.285279989242497,54.58805084228515],[-2.209444046020451,54.552219390869254],[-2.191667079925537,54.531391143798885],[-2.1630539894104,54.52804946899414],[-2.155178070068359,54.4556999206544],[-2.194166898727303,54.44665908813482],[-2.244719982147217,54.44805145263671],[-2.276667118072453,54.43555068969726],[-2.29555606842041,54.417770385742244],[-2.28333306312561,54.382770538330135],[-2.347222089767456,54.35026931762689],[-2.306111097335815,54.32054901123058],[-2.311387062072754,54.281391143798935],[-2.3002769947052,54.265270233154354],[-2.309720993041992,54.243328094482415],[-2.352498054504395,54.250549316406364],[-2.40055608749384,54.2283287048341],[-2.4474999904632,54.230270385742244],[-2.457778930664062,54.23833084106445],[-2.531666040420532,54.208610534668075],[-2.576667070388737,54.19610977172862],[-2.62805700302124,54.19916915893566],[-2.671112060546875,54.15861129760742],[-2.709167003631592,54.16444015502941],[-2.733057022094726,54.183048248291016],[-2.792222976684513,54.19083023071289],[-2.83472204208374,54.16813278198242],[-2.865833044052067,54.18319320678711],[-2.879168033599854,54.201805114746094],[-2.909166097640991,54.190692901611385],[-2.919723033905029,54.15930557250988],[-2.981389045715332,54.149307250976676],[-3.003611087799072,54.160694122314446],[-2.996387958526554,54.175971984863395],[-3.053055047988834,54.19819259643566],[-3.060832977294865,54.16152954101557],[-3.075278043746948,54.154861450195256],[-3.105278968810978,54.11875152587902],[-3.157500982284432,54.08902740478527],[-3.189167022705078,54.10069274902338],[-3.2286119461059,54.09458160400385],[-3.245276927947884,54.131805419921875],[-3.236943960189819,54.155139923095646],[-3.244723081588688,54.172084808349716],[-3.215832948684692,54.17819595336925],[-3.198611974716187,54.228473663330135],[-3.225276947021484,54.24236297607433],[-3.253056049346924,54.21875],[-3.240278959274292,54.20291519165045],[-3.260277986526489,54.190418243408146],[-3.283612012863159,54.19652938842767],[-3.324167013168335,54.190692901611385],[-3.36583399772644,54.233470916748104],[-3.40416693687439,54.26374816894542],[-3.423055887222233,54.34041595458996],[-3.450834035873413,54.35541534423834],[-3.486388921737614,54.395973205566406],[-3.561944961547795,54.450973510742244],[-3.600276947021484,54.48708343505871],[-3.639722108840942,54.511806488037045],[-3.614166021347045,54.524581909179744],[-3.584166049957218,54.56402587890625],[-3.571388959884587,54.60374832153314],[-3.575834035873413,54.64402770996099],[-3.56250095367426,54.66069412231451],[-3.517498970031738,54.69347381591808],[-3.507500886917057,54.71569442749035],[-3.461389064788818,54.73986053466797],[-3.433610916137695,54.764305114746094],[-3.434722900390625,54.806251525878906],[-3.40083193778986,54.866806030273494],[-3.365278005599975,54.89291763305664],[-3.295279026031494,54.88291549682623],[-3.27027702331543,54.902637481689396],[-3.303055047988892,54.915138244628906],[-3.280277967453003,54.93624877929699],[-3.206387996673527,54.95458221435558],[-3.135833024978581,54.92791748046875],[-3.07027792930603,54.93847274780285],[-3.090276956558228,54.95652770996093],[-3.049704074859619,54.98513412475591]]],[[[-3.25527811050415,54.15291595458996],[-3.26583194732666,54.14458465576172],[-3.249166965484505,54.122638702392635],[-3.273055076599121,54.115970611572315],[-3.276945114135742,54.14374923706054],[-3.25527811050415,54.15291595458996]]]]},"properties":{"ID_0":242,"ISO":"GB-CMA","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":18,"NAME_2":"Cumbria","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.431946039199829,54.48117065429699],[-1.466667056083679,54.482769012451286],[-1.446110963821411,54.45111083984375],[-1.472221016883793,54.44805145263671],[-1.495000958442688,54.478881835937614],[-1.525555014610291,54.480831146240284],[-1.532500028610173,54.46527099609381],[-1.577777028083744,54.48971939086913],[-1.600278973579293,54.51250076293951],[-1.629999041557312,54.50833129882812],[-1.642222046852055,54.523330688476676],[-1.68175303935999,54.53115844726573],[-1.680750966072083,54.578582763671925],[-1.672726035118046,54.59161758422857],[-1.628597021102905,54.59563064575201],[-1.572435021400452,54.57256317138666],[-1.483175039291325,54.57256317138666],[-1.450077056884709,54.579582214355575],[-1.412564992904663,54.60003280639654],[-1.396942973136845,54.584720611572266],[-1.401111960411072,54.56444168090832],[-1.424721956253052,54.554988861083984],[-1.434447050094548,54.53499984741216],[-1.411944985389652,54.51250076293951],[-1.431946039199829,54.48117065429699]]]},"properties":{"ID_0":242,"ISO":"GB-DAL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":19,"NAME_2":"Darlington","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.17599701881403,53.29296112060547],[-1.160277962684575,53.285831451416016],[-1.160277962684575,53.262210845947315],[-1.195832967758122,53.232498168945305],[-1.18944597244257,53.20972061157226],[-1.190834045410156,53.1677703857423],[-1.230000972747746,53.162498474121094],[-1.243888020515385,53.15166091918957],[-1.276389002799988,53.154159545898494],[-1.309720993041992,53.14278030395508],[-1.312777042388916,53.13109970092773],[-1.291944026947021,53.08388900756841],[-1.329723000526371,53.050281524658196],[-1.321388006210213,53.0130500793457],[-1.283889055252018,52.98582839965826],[-1.282500982284546,52.946109771728516],[-1.269443988799992,52.919170379638786],[-1.271111965179387,52.898891448974666],[-1.23259699344635,52.88074111938482],[-1.262778043746891,52.861660003662166],[-1.301388025283813,52.86249923706066],[-1.370558023452702,52.83137893676763],[-1.395277023315373,52.789989471435604],[-1.427222013473397,52.78387832641607],[-1.474722981452942,52.74860000610357],[-1.532778024673405,52.74972152709966],[-1.543334960937443,52.73360061645502],[-1.534999966621285,52.70610809326177],[-1.583055019378605,52.685001373291016],[-1.639999985694828,52.685001373291016],[-1.645833969116097,52.70666885375988],[-1.700348973274231,52.726200103759766],[-1.672500014305115,52.758331298828125],[-1.629166960716191,52.77222061157232],[-1.615000009536743,52.79804992675787],[-1.590831995010376,52.810829162597706],[-1.630555033683777,52.84111022949219],[-1.720834016799927,52.84527969360357],[-1.754999995231572,52.86610031127941],[-1.823889017105103,52.875549316406364],[-1.840831995010319,52.90472030639648],[-1.84027898311615,52.9244384765625],[-1.816944956779423,52.92998886108404],[-1.812222003936768,52.96139144897461],[-1.75777804851532,52.98249816894537],[-1.74555504322052,53],[-1.747499942779484,53.022220611572266],[-1.763888955116272,53.03194046020508],[-1.776111960411015,53.07083129882818],[-1.771667957305851,53.09027099609381],[-1.799445986747742,53.118610382080135],[-1.798889994621277,53.14165878295904],[-1.824167013168335,53.1630592346192],[-1.856667995452824,53.17638015747075],[-1.932224035263062,53.194999694824276],[-1.952499032020512,53.2138786315918],[-1.976848959922791,53.207370758056754],[-1.970834016799927,53.23027038574224],[-1.990556001663208,53.241661071777344],[-1.995555996894836,53.26416015624999],[-1.998056054115296,53.33583068847667],[-2.016736030578613,53.370479583740234],[-1.981389045715275,53.39833068847662],[-2.011667013168335,53.41249847412121],[-2.009166955947819,53.4275016784668],[-1.982499003410283,53.443889617919865],[-1.963611960411015,53.49472045898432],[-1.918890953063908,53.50083160400385],[-1.897222995758,53.53305053710949],[-1.870833039283696,53.532218933105526],[-1.816110968589726,53.51610946655279],[-1.795554995536747,53.496940612793026],[-1.787222981452828,53.46860885620123],[-1.731112957000676,53.441108703613395],[-1.734166979789734,53.41083145141607],[-1.701665997505188,53.40361022949218],[-1.6905579566955,53.38750076293945],[-1.646389961242676,53.3766593933106],[-1.650277972221317,53.35194015502941],[-1.592499971389771,53.337779998779354],[-1.582777023315373,53.326389312744254],[-1.610002040863037,53.30582809448242],[-1.570556998252869,53.3049888610841],[-1.531389951705933,53.28971862792969],[-1.458889961242562,53.306938171386776],[-1.43194401264185,53.32360839843761],[-1.393610954284554,53.32527160644537],[-1.380835056304932,53.306938171386776],[-1.332499027252197,53.29888153076172],[-1.31138896942133,53.3138885498048],[-1.281944990158081,53.2994384765625],[-1.242499947547913,53.290828704834034],[-1.17599701881403,53.29296112060547]],[[-1.420825958251953,52.852661132812614],[-1.397094011306706,52.89257049560541],[-1.401407957077026,52.909832000732365],[-1.45318603515625,52.93463897705083],[-1.48662698268879,52.93787765502923],[-1.538403034210148,52.89796447753906],[-1.545956015586853,52.876392364502],[-1.494178056716862,52.84726715087896],[-1.431610941886902,52.84187316894531],[-1.420825958251953,52.852661132812614]]]},"properties":{"ID_0":242,"ISO":"GB-DBY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":20,"NAME_2":"Derbyshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.420825958251953,52.852661132812614],[-1.431610941886902,52.84187316894531],[-1.494178056716862,52.84726715087896],[-1.545956015586853,52.876392364502],[-1.538403034210148,52.89796447753906],[-1.48662698268879,52.93787765502923],[-1.45318603515625,52.93463897705083],[-1.401407957077026,52.909832000732365],[-1.397094011306706,52.89257049560541],[-1.420825958251953,52.852661132812614]]]},"properties":{"ID_0":242,"ISO":"GB-DER","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":21,"NAME_2":"Derby","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.124557971954289,50.34541702270508],[-4.100728034973088,50.36006164550781],[-4.038702964782658,50.378669738769645],[-4.041804790496826,50.39934539794921],[-4.124504089355469,50.43552398681635],[-4.154482841491642,50.43552398681635],[-4.184873104095402,50.42597198486339],[-4.201387882232609,50.45569610595714],[-4.23097801208496,50.470417022705135],[-4.217779159545842,50.494720458984375],[-4.189723014831543,50.494438171386825],[-4.216945171356144,50.533611297607536],[-4.270555019378662,50.54249954223633],[-4.273055076599121,50.56499099731445],[-4.301390171051025,50.58777999877941],[-4.296113014221191,50.62554931640625],[-4.335000038146972,50.64278030395508],[-4.346944808959961,50.6786003112794],[-4.360834121704045,50.69250106811534],[-4.362500190734863,50.71944046020502],[-4.37805700302124,50.74166107177729],[-4.376945018768311,50.764438629150504],[-4.412777900695744,50.76055145263672],[-4.440556049346924,50.77972030639648],[-4.450000762939453,50.799438476562614],[-4.439445972442627,50.841110229492244],[-4.417778015136719,50.85499954223644],[-4.455832958221436,50.90166091918951],[-4.458333015441895,50.92110061645508],[-4.554721832275391,50.92303848266607],[-4.533610820770264,50.965415954589844],[-4.535276889800969,50.99375152587902],[-4.522500038146973,51.02152633667003],[-4.470277786254883,51.021804809570426],[-4.425833225250244,51.01430511474615],[-4.389165878295842,50.99430465698242],[-4.343610763549805,50.98930740356457],[-4.309165954589844,50.99514007568354],[-4.25916576385498,51.03819274902355],[-4.23638916015625,51.04347229003912],[-4.226387977600098,51.062362670898494],[-4.181944847106877,51.05625152587896],[-4.154167175292969,51.0801391601563],[-4.215277194976807,51.07680511474609],[-4.221389770507812,51.11680603027355],[-4.25750017166132,51.1470832824707],[-4.215833187103271,51.150138854980526],[-4.209722995758057,51.17208480834961],[-4.220833778381348,51.1845817565919],[-4.201943874359074,51.2006950378418],[-4.174722194671631,51.19847106933588],[-4.121943950653076,51.21236038208008],[-4.073057174682617,51.21791839599604],[-4.050833225250244,51.20819473266607],[-4.029167175292969,51.21625137329113],[-3.949721097946167,51.2212486267091],[-3.924721002578679,51.23208236694347],[-3.881387948989811,51.22930526733398],[-3.839723110198918,51.23513793945312],[-3.770277976989746,51.237915039062614],[-3.714181900024414,51.23208236694347],[-3.72416710853571,51.1786003112793],[-3.770277976989746,51.17332839965831],[-3.821110010147094,51.17721939086914],[-3.825834035873413,51.14194107055664],[-3.774724960327035,51.111110687255916],[-3.750554084777775,51.10694122314453],[-3.71555590629572,51.08304977416998],[-3.678333044052124,51.08250045776373],[-3.636389970779362,51.06222152709961],[-3.596111059188843,51.06304931640619],[-3.588057041168212,51.054721832275504],[-3.607778072357178,51.02444076538086],[-3.59972095489502,51.011940002441406],[-3.528887987136841,51.00722122192394],[-3.50805401802063,51.03054809570318],[-3.474999904632568,51.03610992431652],[-3.444443941116333,51.0263786315918],[-3.422224044799748,51.02944183349621],[-3.373888015747013,51.008609771728516],[-3.370556116104069,50.98083114624029],[-3.321388959884643,50.978881835937614],[-3.268332958221378,50.94749069213873],[-3.221667051315308,50.943889617920036],[-3.157222032546997,50.948608398437436],[-3.178056001663208,50.91471862792968],[-3.147500038146973,50.896938323974666],[-3.089998960494995,50.90805053710943],[-3.047499895095768,50.90583038330089],[-3.048333883285466,50.87778091430664],[-2.962778091430664,50.8505592346192],[-2.948494911193791,50.82255172729498],[-2.882221937179565,50.797218322753906],[-2.946666955947876,50.770828247070426],[-2.932499885559025,50.761940002441406],[-2.949167013168221,50.73416137695324],[-2.942807912826538,50.719306945800895],[-3.018611907958984,50.6981925964356],[-3.083055019378662,50.701248168945305],[-3.095278024673405,50.68486022949219],[-3.193054914474487,50.684028625488395],[-3.263056039810181,50.67124938964855],[-3.304721117019596,50.628749847412166],[-3.368056058883667,50.60958480834961],[-3.408611059188842,50.61125183105469],[-3.416944026947021,50.63069534301769],[-3.451387882232666,50.67375183105462],[-3.4663889408111,50.66097259521479],[-3.451387882232666,50.648471832275504],[-3.444721937179565,50.5915260314942],[-3.466943025588989,50.57708358764654],[-3.494720935821533,50.543472290039176],[-3.510278940200806,50.50804138183594],[-3.587133884429874,50.50906753540039],[-3.609673976898193,50.49882125854492],[-3.642460107803345,50.46398544311535],[-3.648608922958317,50.433246612548885],[-3.61991906166071,50.406608581543026],[-3.512501001358032,50.37486267089855],[-3.516388893127441,50.34736251831055],[-3.575834035873413,50.324306488037166],[-3.608056068420353,50.31958389282232],[-3.643610954284611,50.28930664062505],[-3.654721021652221,50.2595825195313],[-3.658056020736695,50.2176399230957],[-3.682498931884765,50.221248626708984],[-3.719166040420532,50.20208358764654],[-3.77361011505127,50.225692749023544],[-3.786945104598999,50.209026336669865],[-3.824166059494019,50.21736145019531],[-3.859723091125488,50.24263763427746],[-3.862500905990487,50.264862060546875],[-3.879165887832642,50.28430557250982],[-3.960278034210205,50.30430603027337],[-3.993053913116398,50.30680465698248],[-4.03916597366333,50.29264068603526],[-4.070831775665283,50.30319595336925],[-4.083611011505127,50.31708145141607],[-4.111389160156193,50.31541824340831],[-4.124557971954289,50.34541702270508]]]},"properties":{"ID_0":242,"ISO":"GB-DEV","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":22,"NAME_2":"Devon","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.942807912826538,50.719306945800895],[-2.949167013168221,50.73416137695324],[-2.932499885559025,50.761940002441406],[-2.946666955947876,50.770828247070426],[-2.882221937179565,50.797218322753906],[-2.948494911193791,50.82255172729498],[-2.920279026031494,50.841110229492244],[-2.788888931274357,50.85472106933605],[-2.75888895988453,50.867221832275504],[-2.714724063873177,50.86804962158209],[-2.653054952621346,50.88666915893565],[-2.614444017410221,50.88555145263677],[-2.616111993789559,50.911380767822266],[-2.595000982284489,50.95750045776367],[-2.598889112472534,50.97639083862305],[-2.549998998641911,50.97861099243175],[-2.541944980621338,51.0019416809082],[-2.495832920074406,50.99528121948242],[-2.47055792808527,50.96277999877941],[-2.441112995147705,50.95277023315429],[-2.432497978210449,50.970550537109375],[-2.40055608749384,50.9652709960938],[-2.337776899337769,50.98305892944336],[-2.370556116104126,50.9988899230957],[-2.364167928695621,51.016391754150504],[-2.324166059493962,51.04222106933605],[-2.335279941558838,51.06472015380871],[-2.321666002273502,51.08332824707031],[-2.238610029220581,51.07138824462902],[-2.194166898727303,51.04388046264643],[-2.144166946411132,50.98611068725585],[-2.123333930969238,50.98110961914068],[-2.099168062210083,50.955829620361385],[-2.058888912200928,50.95999908447276],[-2.033334970474186,50.97166061401373],[-1.996111989021301,50.97748947143566],[-1.970278024673462,50.99277114868163],[-1.950001001358032,50.98833084106457],[-1.907220959663391,50.943889617920036],[-1.879721045494023,50.92472076416027],[-1.836946964263859,50.93360900878911],[-1.804999947547912,50.92943954467768],[-1.811388015747013,50.905548095703125],[-1.839166045188847,50.89139175415045],[-1.832777976989632,50.86582946777338],[-1.805701971054077,50.8677215576173],[-1.796110987663212,50.83166885375982],[-1.809445977210999,50.802219390869084],[-1.786492943763676,50.76871871948248],[-1.735000967979374,50.77804946899414],[-1.734166979789734,50.75444030761712],[-1.676666021347046,50.75444030761712],[-1.671587944030705,50.73541641235362],[-1.719720959663391,50.73541641235362],[-1.744721055030709,50.713748931884766],[-1.79193997383112,50.719028472900504],[-1.816418051719666,50.738227844238224],[-1.870257973670959,50.75146865844737],[-1.920369982719308,50.75004577636713],[-1.941753029823303,50.76559066772455],[-1.994711041450443,50.770004272460994],[-2.006184101104679,50.762943267822266],[-2.020304918289127,50.72851943969732],[-2.037964105606022,50.71763992309576],[-2.021944046020451,50.681251525878906],[-1.974166035652161,50.66597366333019],[-1.932499051094055,50.63069534301769],[-1.95749902725214,50.616527557373104],[-1.959167003631592,50.59069442749018],[-2.026387929916325,50.58847045898449],[-2.057501077651978,50.57652664184582],[-2.065277099609318,50.59069442749018],[-2.106944084167423,50.59652709960937],[-2.129722118377686,50.610694885253956],[-2.205833911895752,50.622081756591854],[-2.243609905242863,50.61569595336914],[-2.324166059493962,50.62458419799816],[-2.337498903274536,50.631805419921875],[-2.423612117767277,50.63569259643566],[-2.452500104904174,50.613471984863395],[-2.465832948684579,50.592082977294915],[-2.461945056915226,50.571804046630795],[-2.426944017410221,50.56819534301758],[-2.414721012115479,50.54902648925781],[-2.457499980926514,50.51291656494152],[-2.44861197471613,50.55875015258795],[-2.506387948989754,50.598194122314446],[-2.604721069335938,50.65013885498047],[-2.738610982894897,50.70236206054682],[-2.79249906539917,50.71791839599615],[-2.910278081893864,50.73374938964849],[-2.942807912826538,50.719306945800895]]]},"properties":{"ID_0":242,"ISO":"GB-DOR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":23,"NAME_2":"Dorset","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.68175303935999,54.53115844726573],[-1.724722027778568,54.52499008178711],[-1.766945004463196,54.52861022949224],[-1.787222981452828,54.481670379638615],[-1.824445009231567,54.5027809143067],[-1.850833058357125,54.48054885864258],[-1.930557012557983,54.45471954345703],[-1.956110954284668,54.45444107055663],[-2.006944894790593,54.47249984741222],[-2.045556068420353,54.47972106933594],[-2.099721908569336,54.46804809570307],[-2.138889074325562,54.44971084594732],[-2.155178070068359,54.4556999206544],[-2.1630539894104,54.52804946899414],[-2.191667079925537,54.531391143798885],[-2.209444046020451,54.552219390869254],[-2.285279989242497,54.58805084228515],[-2.305557012557927,54.627780914306584],[-2.279166936874276,54.65027999877923],[-2.290832042694035,54.66582870483404],[-2.344722032546997,54.68222045898449],[-2.353888988494873,54.69083023071295],[-2.327223062515259,54.72748947143565],[-2.305007934570312,54.78327178955089],[-2.272500991821289,54.792221069335994],[-2.211390018463135,54.77861022949219],[-2.191389083862305,54.80028152465825],[-2.160278081893921,54.80360031127941],[-2.133055925369263,54.82194137573236],[-2.129724025726318,54.836940765380916],[-2.082222938537598,54.830551147460994],[-1.993056058883667,54.86471939086914],[-1.920279026031437,54.84498977661144],[-1.904167056083679,54.83415985107427],[-1.866665959358215,54.84833145141601],[-1.820001006126347,54.90472030639643],[-1.70114004611969,54.894161224365284],[-1.595293998718205,54.89270019531256],[-1.560006022453308,54.879650115966854],[-1.552342057228032,54.85789871215826],[-1.523211956024113,54.831798553466854],[-1.506346940994263,54.7999000549317],[-1.440425038337708,54.79700088500976],[-1.411224007606506,54.80133056640631],[-1.389835000038033,54.860801696777344],[-1.351943969726506,54.86963653564459],[-1.324722051620427,54.83736038208019],[-1.29694402217865,54.76569366455083],[-1.24530100822443,54.72541809082037],[-1.294167995452824,54.71139144897461],[-1.325834035873413,54.68222045898449],[-1.333611011505127,54.64749908447277],[-1.379444003105163,54.63888931274414],[-1.38845598697651,54.62672805786138],[-1.412564992904663,54.60003280639654],[-1.450077056884709,54.579582214355575],[-1.483175039291325,54.57256317138666],[-1.572435021400452,54.57256317138666],[-1.628597021102905,54.59563064575201],[-1.672726035118046,54.59161758422857],[-1.680750966072083,54.578582763671925],[-1.68175303935999,54.53115844726573]]]},"properties":{"ID_0":242,"ISO":"GB-DUR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":24,"NAME_2":"Durham","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":"County Durham"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.39266499876976,51.49367141723633],[-0.370314002037048,51.517177581787166],[-0.399996995925846,51.52495956420898],[-0.367751985788288,51.54844665527355],[-0.32547599077219,51.54936599731445],[-0.293960005044937,51.52960205078125],[-0.236594006419125,51.52651214599621],[-0.244496002793255,51.494441986083984],[-0.359903007745743,51.488414764404354],[-0.39266499876976,51.49367141723633]]]},"properties":{"ID_0":242,"ISO":"GB-EAL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":25,"NAME_2":"Ealing","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.296339988708496,53.74236297607422],[-0.309246003627663,53.76496505737304],[-0.341006010770798,53.78765106201183],[-0.386379003524723,53.7887840270996],[-0.426079988479557,53.77403640747082],[-0.444227993488255,53.7490844726563],[-0.449739009141865,53.71374893188488],[-0.488611996173859,53.71625137329113],[-0.55138897895813,53.70847320556646],[-0.60527902841568,53.73014068603515],[-0.669167995452767,53.72236251831048],[-0.700277984142303,53.68819046020519],[-0.766933023929482,53.658145904541016],[-0.843985974788666,53.613910675048885],[-0.860692024230957,53.612518310546925],[-0.860000014305058,53.63249969482422],[-0.94138997793192,53.656940460205014],[-0.996388018131199,53.65999984741205],[-1.073925971984863,53.647708892822315],[-1.109722018241882,53.675548553466854],[-1.093862056732178,53.713638305664176],[-1.020555973052979,53.69472122192383],[-0.982779026031494,53.70249938964844],[-0.942499995231515,53.719989776611385],[-0.963611006736755,53.74304962158214],[-0.93416702747345,53.76832962036127],[-0.920278012752476,53.807781219482536],[-0.941111981868687,53.83554840087902],[-0.940470993518829,53.86803817749035],[-0.939999997615814,53.89194107055664],[-0.920831978321075,53.94388961791998],[-0.927909016609192,53.97192001342779],[-0.889317989349365,54.007209777832145],[-0.73388797044754,54.02222061157226],[-0.70194399356842,54.00833129882823],[-0.668332993984166,54.007221221923885],[-0.665557026863098,54.024990081787166],[-0.640833020210266,54.03221893310541],[-0.641111016273499,54.05887985229492],[-0.604166984558105,54.06776809692394],[-0.57083398103714,54.08472061157238],[-0.513333976268768,54.083328247070256],[-0.446666985750198,54.107219696045036],[-0.448610991239491,54.12360000610357],[-0.420278996229172,54.138610839843864],[-0.415832996368351,54.162769317626896],[-0.37389001250267,54.165550231933594],[-0.354999989271164,54.14944076538085],[-0.294443011283818,54.13610839843761],[-0.222778007388001,54.133049011230526],[-0.196943998336792,54.155754089355575],[-0.131945997476578,54.136528015136825],[-0.098610997200012,54.13124847412109],[-0.075277000665551,54.113471984863224],[-0.104167997837067,54.10319519042969],[-0.168610006570816,54.09763717651372],[-0.211389005184174,54.06069564819347],[-0.212498992681503,54.00485992431646],[-0.155833005905151,53.90236282348644],[-0.131945997476578,53.874027252197266],[-0.024167999625149,53.77847290039068],[0.041942998767013,53.727359771728516],[0.118611000478325,53.661804199218686],[0.130278006196136,53.64652633666998],[0.125277996063289,53.62236022949219],[0.065833002328873,53.64347076416027],[0.031389001756963,53.647361755371094],[-0.054168000817299,53.6290283203125],[-0.106944002211094,53.635692596435604],[-0.166943997144699,53.671249389648494],[-0.172500997781754,53.679584503173935],[-0.227501004934311,53.70791625976574],[-0.244721993803978,53.732360839843864],[-0.296339988708496,53.74236297607422]]]},"properties":{"ID_0":242,"ISO":"GB-ERY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":26,"NAME_2":"East Riding of Yorkshire","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":"East Riding, East Yorkshire"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.128588005900383,50.88260269165044],[-0.116944000124818,50.92694091796881],[-0.093888998031616,50.94944000244146],[-0.105555996298733,50.970279693603516],[-0.067501001060009,50.993328094482365],[-0.044167000800371,50.98083114624029],[-0.015832999721113,50.981941223144645],[-0.006665999535414,51.02249908447271],[0.019168000668344,51.05054092407238],[-0.021111000329142,51.090549468994254],[0.01472099963587,51.0980491638183],[0.036667000502405,51.11138153076177],[0.021364999935145,51.135879516601676],[0.06278099864727,51.135879516601676],[0.132499992847499,51.14416885375988],[0.154384002089614,51.13933944702154],[0.140560999512729,51.11169052124029],[0.221388995647487,51.12194061279308],[0.266943991184348,51.11027908325195],[0.331389009952545,51.119998931884766],[0.335557013750133,51.10694122314453],[0.401111990213508,51.081939697265625],[0.416667014360485,51.06528091430664],[0.474721997976303,51.04777908325201],[0.479721993208045,51.03026962280279],[0.536943972110805,51.01832962036133],[0.569723010063228,51],[0.658056974411011,51.013889312744254],[0.69583398103714,50.99554824829107],[0.763333022594509,50.997219085693416],[0.786666989326477,50.98833084106457],[0.821111023426056,50.944160461425895],[0.866666972637233,50.943889617920036],[0.867712974548283,50.921249389648494],[0.792499005794639,50.93319320678722],[0.773055970668906,50.93180465698248],[0.728609979152736,50.91263961792003],[0.667500019073486,50.871250152588004],[0.586390018463135,50.8531951904298],[0.532500028610343,50.84958267211914],[0.48027798533451,50.837150573730526],[0.41694501042366,50.830696105957145],[0.357499003410396,50.81347274780268],[0.32916700840002,50.784305572509766],[0.302500993013496,50.774581909179744],[0.241944000124988,50.73374938964849],[0.218057006597633,50.736251831054744],[0.154165998101234,50.757637023925895],[0.120277002453804,50.757915496826286],[0.066389001905918,50.78208160400402],[0.017590999603328,50.78486251831049],[-0.011202000081539,50.8243522644043],[-0.05392400175333,50.84808731079107],[-0.128588005900383,50.88260269165044]]]},"properties":{"ID_0":242,"ISO":"GB-ESX","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":27,"NAME_2":"East Sussex","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.029931999742985,51.60110855102545],[-0.060770999640113,51.6061897277832],[-0.130517005920296,51.60783386230469],[-0.148900002241135,51.59728622436529],[-0.16264800727356,51.566417694091854],[-0.204728007316589,51.551540374755916],[-0.243687003850937,51.57310104370123],[-0.266775012016239,51.60105514526367],[-0.293592989444676,51.6384162902832],[-0.25416699051857,51.644168853759766],[-0.245278000831604,51.667499542236385],[-0.217500001192093,51.65415954589844],[-0.173332005739212,51.6663818359375],[-0.148056998848858,51.68915939331055],[-0.011218000203371,51.67724990844738],[-0.002580000087562,51.6466522216798],[-0.029931999742985,51.60110855102545]]]},"properties":{"ID_0":242,"ISO":"GB-ENF","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":28,"NAME_2":"Enfield","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.547411978244895,51.51680374145513],[0.544757008552608,51.52919769287103],[0.481191992759818,51.54315185546874],[0.355614006519374,51.5571060180664],[0.31991100311285,51.5579986572265],[0.30833300948143,51.57889175415033],[0.28444600105297,51.58388900756836],[0.231389999389762,51.629169464111385],[0.148513004183826,51.61749649047857],[0.112222999334449,51.61555099487305],[0.083888001739979,51.601100921630916],[0.02760099992156,51.62652587890625],[-0.002580000087562,51.6466522216798],[-0.011218000203371,51.67724990844738],[3.98e-13,51.733119964599666],[0.035555001348314,51.76832962036133],[0.108332000672874,51.77750015258789],[0.158053994178829,51.790550231933594],[0.173057004809493,51.82527160644531],[0.173611000180301,51.84833145141607],[0.199166998267287,51.86582946777355],[0.189999997615928,51.890270233154354],[0.141666993498859,51.88388824462896],[0.110831998288745,51.97360992431635],[0.082501001656112,51.98332977294933],[0.08055599778902,52.00249099731457],[0.108332000672874,52.027500152587834],[0.106389999389705,52.054988861083984],[0.139166995883045,52.04193878173828],[0.193610996007976,52.05693817138683],[0.206668004393578,52.08166885375971],[0.255832999944744,52.07693862915039],[0.286664992570934,52.0849990844726],[0.325278997421265,52.07416915893566],[0.365554988384247,52.04417037963873],[0.408932000398693,52.05936050415039],[0.489167004823685,52.069160461425895],[0.524999022483882,52.0483283996582],[0.636111974716243,52.07500076293945],[0.678332984447479,52.07722091674815],[0.701112985611075,52.06750106811535],[0.715255022049007,52.04413986206054],[0.721665978431815,52.01194000244152],[0.787778973579464,51.954719543457145],[0.865832984447479,51.9594383239746],[0.914444029331264,51.96833038330078],[0.96805602312088,51.963878631591854],[1.019443988800049,51.95055007934576],[1.058055043220634,51.94908523559582],[1.136389017105159,51.94041824340825],[1.171388983726615,51.94819259643555],[1.196944952011108,51.94069290161144],[1.243054986000175,51.94847106933594],[1.267500996589717,51.94541549682623],[1.270833015442008,51.92874908447277],[1.239089012145996,51.88124847412121],[1.259166002273616,51.8835334777832],[1.290277957916316,51.86319351196294],[1.234166026115417,51.81735992431652],[1.130831956863517,51.77624893188488],[1.045833945274353,51.76930618286133],[1.0302770137788,51.795696258545036],[0.995278000831661,51.81458282470703],[0.944166004657859,51.810138702392635],[0.900833010673523,51.791526794433594],[0.890832006931362,51.76791763305663],[0.841389000415916,51.738471984863274],[0.763611018657684,51.73902893066406],[0.713611006736812,51.71513748168945],[0.756388008594513,51.710140228271484],[0.792499005794639,51.71763992309576],[0.859166026115417,51.71791839599615],[0.901944994926453,51.745693206787166],[0.930276989936772,51.7473602294923],[0.948055028915519,51.73458480834961],[0.941944003105164,51.69680404663085],[0.949723005294743,51.68291854858404],[0.931389987468776,51.630416870117244],[0.948055028915519,51.60652923583989],[0.918610990047455,51.585693359375],[0.828007996082363,51.54264068603521],[0.820719003677482,51.54780197143549],[0.685837984085197,51.57725906372076],[0.648630976676998,51.56950759887706],[0.634675979614371,51.54315185546874],[0.644990980625209,51.536804199218864],[0.617500007152614,51.51430511474621],[0.570833027362823,51.508193969726676],[0.547411978244895,51.51680374145513]]]},"properties":{"ID_0":242,"ISO":"GB-ESS","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":29,"NAME_2":"Essex","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.62972092628479,51.60569381713873],[-2.66444802284235,51.613750457763786],[-2.675554037094059,51.637771606445305],[-2.659168004989567,51.673049926757805],[-2.676944971084537,51.68915939331055],[-2.685276985168457,51.7269401550293],[-2.667778015136719,51.74000167846691],[-2.68388891220087,51.76554870605469],[-2.676778078079167,51.78963088989269],[-2.647500991821289,51.82221984863281],[-2.619997978210449,51.8377799987793],[-2.550554990768319,51.861660003662166],[-2.519721031188965,51.8588905334472],[-2.505834102630558,51.88000106811535],[-2.470279932022038,51.88277053833008],[-2.434444904327393,51.896659851074276],[-2.433888912200928,51.91555023193365],[-2.460278987884521,51.94778060913086],[-2.481389999389648,51.95804977417003],[-2.460834980010986,52.01971817016601],[-2.42944693565363,51.99443817138672],[-2.393331050872803,51.99472045898443],[-2.351562023162785,52.01398468017583],[-2.341665983200016,52.01499938964838],[-2.307776927947998,51.97360992431635],[-2.234168052673283,51.96416091918956],[-2.208055973052979,51.99082946777344],[-2.174724102020264,51.98778152465832],[-2.176332950592041,52.007350921630916],[-2.164720058441048,52.04055023193371],[-2.114902973174992,52.04222106933605],[-2.143285036086979,52.006328582763615],[-2.07166600227356,52.007770538330135],[-2.030833005905151,52],[-1.970834016799927,52.02611160278332],[-1.904167056083679,52.03139114379888],[-1.878888964652901,52.028049468994254],[-1.843611001968384,52.007770538330135],[-1.827777981758004,52.034439086914176],[-1.863332033157349,52.06277084350597],[-1.843055009841919,52.07305145263672],[-1.813889026641846,52.068889617919865],[-1.778331995010376,52.098880767822266],[-1.75777804851532,52.10583114624035],[-1.715832948684636,52.0849990844726],[-1.706666946411076,52.06528091430663],[-1.674445986747685,52.031108856201286],[-1.612221002578735,52.02666091918951],[-1.652547955513,51.983989715576286],[-1.656944990158081,51.95915985107421],[-1.618888020515385,51.94499969482416],[-1.612777948379517,51.93165969848638],[-1.64611196517933,51.90999984741205],[-1.63749897480011,51.893878936767635],[-1.657778978347778,51.88304901123047],[-1.675832033157349,51.855270385742244],[-1.679167032241764,51.797218322753906],[-1.709167003631535,51.77499008178711],[-1.692499041557312,51.76250076293951],[-1.676110029220581,51.70471954345703],[-1.647222042083683,51.68638992309576],[-1.683266997337284,51.67866897583008],[-1.701110005378723,51.68111038208019],[-1.724444031715336,51.66276931762707],[-1.749668955802917,51.65884017944336],[-1.777338027954045,51.660419464111385],[-1.79583299159998,51.694438934326286],[-1.832777976989632,51.656658172607536],[-1.866387963294983,51.673328399658196],[-1.887222051620483,51.66249847412121],[-1.940000057220402,51.66305923461914],[-1.94861102104187,51.63999938964855],[-1.988055944442749,51.64582824707037],[-2.057219982147217,51.664161682128956],[-2.101109981536752,51.620281219482365],[-2.148890018463078,51.58943939208996],[-2.191667079925537,51.59833145141613],[-2.240000009536686,51.579158782959034],[-2.271603107452279,51.57722091674805],[-2.3002769947052,51.60667037963873],[-2.3438880443573,51.60860061645519],[-2.36499905586237,51.594718933105526],[-2.384166955947819,51.603050231933594],[-2.37916707992548,51.635829925537166],[-2.444998979568368,51.64833068847662],[-2.478888034820557,51.63916015625005],[-2.487222909927254,51.65972137451172],[-2.544723033905029,51.67605972290044],[-2.575277090072632,51.649028778076286],[-2.583611965179443,51.62930679321289],[-2.62972092628479,51.60569381713873]]]},"properties":{"ID_0":242,"ISO":"GB-GLS","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":30,"NAME_2":"Gloucestershire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.025491999462304,51.438079833984375],[0.013474999926984,51.465690612792905],[-0.023135000839716,51.4887351989746],[-0.004727000370622,51.479656219482536],[0.019481999799609,51.50265884399414],[0.033514998853207,51.49438095092785],[0.073413997888565,51.49655532836914],[0.097815997898692,51.5101890563966],[0.119151003658828,51.51191329956066],[0.121247999370098,51.476787567138786],[0.087980002164898,51.465873718261655],[0.080312997102794,51.431617736816456],[0.025491999462304,51.438079833984375]]]},"properties":{"ID_0":242,"ISO":"GB-GRE","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":31,"NAME_2":"Greenwich","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.011008000001254,51.543540954589844],[-0.066616997122765,51.52652359008795],[-0.072025001049042,51.51602935791027],[-0.087598003447056,51.528736114501946],[-0.071289002895298,51.54322433471674],[-0.094132997095585,51.56012344360357],[-0.089492000639382,51.5714225769044],[-0.052708998322487,51.5736465454101],[-0.010583999566734,51.55247879028325],[-0.011008000001254,51.543540954589844]]]},"properties":{"ID_0":242,"ISO":"GB-HCK","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":32,"NAME_2":"Hackney","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.099165916442757,53.285758972168026],[-3.122499942779484,53.304862976074276],[-3.12860989570612,53.328193664550895],[-3.171942949295044,53.354026794433594],[-3.200278043746891,53.38569259643566],[-3.169167041778508,53.40319442749029],[-3.099165916442757,53.422084808349666],[-3.074166059493962,53.43486022949219],[-3.038611888885441,53.44124984741211],[-3.015834093093815,53.410137176513615],[-2.998054027557316,53.37041854858409],[-2.924989938735962,53.30680465698242],[-2.944998025894165,53.2894401550293],[-2.974445104598999,53.29666137695318],[-3.02527904510498,53.29360961914068],[-3.066668033599854,53.30554962158203],[-3.099165916442757,53.285758972168026]]]},"properties":{"ID_0":242,"ISO":"GB-HAL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":33,"NAME_2":"Halton","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.213793992996216,51.4719123840332],[-0.236507996916771,51.48230743408203],[-0.244496002793255,51.494441986083984],[-0.236594006419125,51.52651214599621],[-0.211057007312775,51.522098541259766],[-0.19922100007534,51.490581512451115],[-0.168094992637634,51.47075271606445],[-0.188695996999684,51.4587020874024],[-0.213793992996216,51.4719123840332]]]},"properties":{"ID_0":242,"ISO":"GB-HMF","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":34,"NAME_2":"Hammersmith and Fulham","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.320162057876587,50.851249694824276],[-1.307240962982121,50.891723632812614],[-1.30865204334259,50.92132568359369],[-1.369269967079163,50.945293426513665],[-1.425657987594604,50.94106292724615],[-1.446804046630859,50.925556182861385],[-1.450752019882202,50.903751373291016],[-1.413611054420471,50.88430404663091],[-1.307500958442574,50.81458282470703],[-1.342499017715454,50.78541564941412],[-1.376943945884648,50.78513717651373],[-1.414723038673344,50.76708221435547],[-1.45861005783081,50.76180648803711],[-1.527498960494995,50.74708175659191],[-1.564165949821415,50.707916259765625],[-1.585278034210205,50.719306945800895],[-1.671587944030705,50.73541641235362],[-1.676666021347046,50.75444030761712],[-1.734166979789734,50.75444030761712],[-1.735000967979374,50.77804946899414],[-1.786492943763676,50.76871871948248],[-1.809445977210999,50.802219390869084],[-1.796110987663212,50.83166885375982],[-1.805701971054077,50.8677215576173],[-1.832777976989632,50.86582946777338],[-1.839166045188847,50.89139175415045],[-1.811388015747013,50.905548095703125],[-1.804999947547912,50.92943954467768],[-1.836946964263859,50.93360900878911],[-1.879721045494023,50.92472076416027],[-1.907220959663391,50.943889617920036],[-1.950001001358032,50.98833084106457],[-1.92641901969904,50.999519348144645],[-1.837499976158085,51.00915908813471],[-1.810832023620548,50.99277114868163],[-1.740556955337468,50.97805023193365],[-1.698055982589722,50.97499847412115],[-1.65499901771534,50.950271606445426],[-1.610558032989502,50.95972061157238],[-1.599722981452885,50.9769401550293],[-1.621389985084534,50.99472045898449],[-1.59666895866394,51.01749038696295],[-1.621947050094548,51.03416061401367],[-1.620278000831604,51.0541610717774],[-1.631389021873474,51.08610916137701],[-1.621947050094548,51.108329772949276],[-1.65277898311615,51.12638854980469],[-1.647778034210148,51.14999008178711],[-1.65499901771534,51.17139053344732],[-1.685279011726379,51.20528030395508],[-1.696388006210327,51.23666000366222],[-1.628057003021183,51.234161376953125],[-1.579723000526428,51.257770538330135],[-1.538334012031441,51.24499893188482],[-1.539168000221252,51.275550842285156],[-1.519999027252197,51.30250167846691],[-1.52666699886322,51.32971954345703],[-1.486946940422058,51.332500457763665],[-1.433055996894836,51.33472061157238],[-1.436666011810246,51.35248947143549],[-1.399446010589599,51.37054824829113],[-1.245278000831547,51.368888854980526],[-1.120000958442631,51.35472106933594],[-1.111111998558044,51.37137985229492],[-1.060279011726379,51.37332916259777],[-1.031944036483708,51.35472106933594],[-0.996388018131199,51.36222076416021],[-0.9666650295257,51.357219696045036],[-0.919166028499603,51.36027908325207],[-0.886389970779362,51.35139083862305],[-0.819719970226288,51.348880767822266],[-0.765276014804726,51.33137893676758],[-0.729722023010254,51.29166030883789],[-0.731109976768494,51.24388885498047],[-0.748332977294922,51.23167037963873],[-0.799444973468724,51.239170074463],[-0.829167008399906,51.226100921630916],[-0.839999973773899,51.203891754150504],[-0.824445009231511,51.18278121948242],[-0.823611021041813,51.15166091918945],[-0.79083198308939,51.1469383239746],[-0.779999971389714,51.12360000610346],[-0.746945023536682,51.11138153076177],[-0.753660023212376,51.08871078491211],[-0.774721026420479,51.08110809326183],[-0.788056015968266,51.06055068969732],[-0.828611016273442,51.063610076904354],[-0.862500011920929,51.043609619140625],[-0.866110026836395,51.028049468994084],[-0.890833973884526,51.00999069213867],[-0.893055975437164,50.993610382080135],[-0.930832982063237,50.943889617920036],[-0.921666026115417,50.92055892944341],[-0.952500998973846,50.89194107055669],[-0.92333197593689,50.86526870727545],[-0.932498991489297,50.8398818969726],[-0.996389985084477,50.84014892578131],[-0.998512029647827,50.85084152221691],[-1.074637055397034,50.85788726806646],[-1.1036119461059,50.84469223022472],[-1.148610949516296,50.835971832275334],[-1.111943960189819,50.78874969482433],[-1.136944055557194,50.77347183227539],[-1.184721946716252,50.78763961791997],[-1.214722037315368,50.809581756591854],[-1.304167032241764,50.83819580078125],[-1.320162057876587,50.851249694824276]]]},"properties":{"ID_0":242,"ISO":"GB-HAM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":35,"NAME_2":"Hampshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":"Southampton"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.094132997095585,51.56012344360357],[-0.130917996168137,51.56416702270519],[-0.16264800727356,51.566417694091854],[-0.148900002241135,51.59728622436529],[-0.130517005920296,51.60783386230469],[-0.060770999640113,51.6061897277832],[-0.029931999742985,51.60110855102545],[-0.052708998322487,51.5736465454101],[-0.089492000639382,51.5714225769044],[-0.094132997095585,51.56012344360357]]]},"properties":{"ID_0":242,"ISO":"GB-HRY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":36,"NAME_2":"Haringey","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.367751985788288,51.54844665527355],[-0.399760007858276,51.614810943603516],[-0.37389001250267,51.614440917968864],[-0.320834010839405,51.63444137573242],[-0.293592989444676,51.6384162902832],[-0.266775012016239,51.60105514526367],[-0.283463001251164,51.581935882568295],[-0.305317014455795,51.57789230346691],[-0.32547599077219,51.54936599731445],[-0.367751985788288,51.54844665527355]]]},"properties":{"ID_0":242,"ISO":"GB-HRW","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":37,"NAME_2":"Harrow","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.211668014526367,54.606704711914006],[-1.318693995475712,54.61167907714844],[-1.38845598697651,54.62672805786138],[-1.379444003105163,54.63888931274414],[-1.333611011505127,54.64749908447277],[-1.325834035873413,54.68222045898449],[-1.294167995452824,54.71139144897461],[-1.24530100822443,54.72541809082037],[-1.180276989936715,54.700416564941406],[-1.198611021041813,54.68013763427729],[-1.1686110496521,54.63735961914074],[-1.190773010253849,54.621528625488395],[-1.211668014526367,54.606704711914006]]]},"properties":{"ID_0":242,"ISO":"GB-HPL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":38,"NAME_2":"Hartlepool","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.31991100311285,51.5579986572265],[0.336111009120941,51.53998947143554],[0.247777000069732,51.52000045776367],[0.242221996188164,51.49888992309575],[0.224682003259659,51.489070892333984],[0.191625997424126,51.48337554931651],[0.166115000844059,51.506519317627],[0.172252997756004,51.528106689453125],[0.193339005112705,51.55400085449213],[0.159775003790799,51.563388824463004],[0.152421995997429,51.59897994995117],[0.148513004183826,51.61749649047857],[0.231389999389762,51.629169464111385],[0.28444600105297,51.58388900756836],[0.30833300948143,51.57889175415033],[0.31991100311285,51.5579986572265]]]},"properties":{"ID_0":242,"ISO":"GB-HAV","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":39,"NAME_2":"Havering","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.647500991821289,51.82221984863281],[-2.682285070419198,51.82587814331066],[-2.697777986526489,51.83943939208989],[-2.737222909927368,51.83943939208989],[-2.778609991073608,51.8858299255371],[-2.820832967758179,51.90166091918945],[-2.866389036178532,51.92889022827143],[-2.895555019378662,51.92638015747082],[-2.943888902664185,51.90665817260747],[-2.988888025283757,51.92554855346685],[-2.994446992874088,51.943328857421875],[-3.051388978958016,51.98332977294933],[-3.08666706085205,52.022220611572266],[-3.082221031188965,52.04666137695307],[-3.112498998641968,52.069438934326286],[-3.115890026092529,52.098251342773494],[-3.099999904632568,52.1124992370606],[-3.129722118377686,52.12694168090826],[-3.075556039810181,52.14804840087896],[-3.113610982894897,52.166110992431754],[-3.061666965484562,52.21500015258789],[-3.055001020431404,52.23110961914057],[-3.013056039810124,52.25555038452154],[-2.953888893127441,52.26137924194336],[-3.001111030578613,52.28722000122082],[-2.992222070693912,52.310268402099666],[-2.956943035125732,52.32471084594726],[-2.957314968109017,52.34125900268549],[-2.932777881622258,52.34471893310552],[-2.838888883590698,52.391391754150504],[-2.80333399772644,52.380268096923885],[-2.781388044357243,52.35277938842779],[-2.731945037841797,52.35139083862304],[-2.746109962463379,52.3244400024414],[-2.694999933242798,52.30360031127935],[-2.674998044967595,52.30638885498058],[-2.66527795791626,52.329719543456974],[-2.64086389541626,52.33226013183594],[-2.631388902664185,52.29195022583013],[-2.615957021713143,52.27780532836914],[-2.618530988693237,52.252086639404354],[-2.606956958770752,52.241798400878906],[-2.527225971221924,52.24308395385742],[-2.488646984100342,52.26494598388677],[-2.447496891021672,52.25851440429699],[-2.45778489112854,52.23022460937506],[-2.415348052978516,52.21993637084972],[-2.406347990035954,52.205791473388786],[-2.410203933715707,52.15692520141607],[-2.392200946807861,52.13120651245128],[-2.360050916671696,52.12220382690435],[-2.349762916564941,52.106773376464844],[-2.351562023162785,52.01398468017583],[-2.393331050872803,51.99472045898443],[-2.42944693565363,51.99443817138672],[-2.460834980010986,52.01971817016601],[-2.481389999389648,51.95804977417003],[-2.460278987884521,51.94778060913086],[-2.433888912200928,51.91555023193365],[-2.434444904327393,51.896659851074276],[-2.470279932022038,51.88277053833008],[-2.505834102630558,51.88000106811535],[-2.519721031188965,51.8588905334472],[-2.550554990768319,51.861660003662166],[-2.619997978210449,51.8377799987793],[-2.647500991821289,51.82221984863281]]]},"properties":{"ID_0":242,"ISO":"GB-HRT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":40,"NAME_2":"Herefordshire","TYPE_2":"Unitary Authority (county)","ENGTYPE_2":"Unitary Authority (county)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.399760007858276,51.614810943603516],[-0.458889991044941,51.61082839965826],[-0.481389999389592,51.6161003112793],[-0.493405014276448,51.5909881591798],[-0.518612027168274,51.60776901245123],[-0.523889005184174,51.641109466552734],[-0.498055011033955,51.667770385742244],[-0.537222027778625,51.67499923706066],[-0.548331975936833,51.71638107299816],[-0.588890016078949,51.74916076660156],[-0.631389021873417,51.7488899230957],[-0.673609972000065,51.76943969726568],[-0.678331971168518,51.79582977294933],[-0.709721982479039,51.80916976928711],[-0.730000019073486,51.82777023315441],[-0.713056981563511,51.84833145141607],[-0.674444019794464,51.84304809570318],[-0.676388025283813,51.829158782958984],[-0.653887987136784,51.811389923095646],[-0.579445004463196,51.80138015747076],[-0.551944971084538,51.82165908813488],[-0.533610999584198,51.819438934326165],[-0.514999985694885,51.801940917968864],[-0.491389989852848,51.81499099731457],[-0.482221007346993,51.83443832397472],[-0.45266801118845,51.847469329833984],[-0.418610990047455,51.843330383300895],[-0.379999995231572,51.82444000244151],[-0.335278987884465,51.85110092163085],[-0.348612010478917,51.88109970092779],[-0.367778986692372,51.892219543457024],[-0.385149002075138,51.92111587524414],[-0.399167001247349,51.935001373291016],[-0.386388003826141,51.97111129760747],[-0.361110001802444,51.949440002441406],[-0.344166994094792,51.96305084228521],[-0.347777992486897,51.981380462646484],[-0.311388999223652,51.98389053344732],[-0.289999008178597,51.99361038208008],[-0.254720002412796,51.978610992431754],[-0.236945003271103,51.996379852295036],[-0.200832992792073,52.00999069213867],[-0.204723000526428,52.03026962280279],[-0.146109998226166,52.069721221923885],[-0.135555997490883,52.04360961914057],[-0.109168000519276,52.01943969726562],[-0.067220002412796,52.03387832641607],[-0.029443999752345,52.039989471435604],[-0.011388000100794,52.051670074463],[0.051389999687728,52.04333114624018],[0.08055599778902,52.00249099731457],[0.082501001656112,51.98332977294933],[0.110831998288745,51.97360992431635],[0.141666993498859,51.88388824462896],[0.189999997615928,51.890270233154354],[0.199166998267287,51.86582946777355],[0.173611000180301,51.84833145141607],[0.173057004809493,51.82527160644531],[0.158053994178829,51.790550231933594],[0.108332000672874,51.77750015258789],[0.035555001348314,51.76832962036133],[3.98e-13,51.733119964599666],[-0.011218000203371,51.67724990844738],[-0.148056998848858,51.68915939331055],[-0.173332005739212,51.6663818359375],[-0.217500001192093,51.65415954589844],[-0.245278000831604,51.667499542236385],[-0.25416699051857,51.644168853759766],[-0.293592989444676,51.6384162902832],[-0.320834010839405,51.63444137573242],[-0.37389001250267,51.614440917968864],[-0.399760007858276,51.614810943603516]]]},"properties":{"ID_0":242,"ISO":"GB-HEF","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":41,"NAME_2":"Hertfordshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.493405014276448,51.5909881591798],[-0.481389999389592,51.6161003112793],[-0.458889991044941,51.61082839965826],[-0.399760007858276,51.614810943603516],[-0.367751985788288,51.54844665527355],[-0.399996995925846,51.52495956420898],[-0.370314002037048,51.517177581787166],[-0.39266499876976,51.49367141723633],[-0.426436990499496,51.452278137207145],[-0.441388010978585,51.45389175415045],[-0.473610997200012,51.458889007568466],[-0.497188985347748,51.477870941162166],[-0.484445989131927,51.49443817138683],[-0.471388995647374,51.549999237060604],[-0.493405014276448,51.5909881591798]]]},"properties":{"ID_0":242,"ISO":"GB-HIL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":42,"NAME_2":"Hillingdon","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.236507996916771,51.48230743408203],[-0.270539999008179,51.4798583984375],[-0.306046992540359,51.46807479858393],[-0.314743995666447,51.45487976074219],[-0.366232007741928,51.450191497802734],[-0.368874996900558,51.429012298583984],[-0.384377986192703,51.413726806640675],[-0.431665986776352,51.430271148681754],[-0.441388010978585,51.45389175415045],[-0.426436990499496,51.452278137207145],[-0.39266499876976,51.49367141723633],[-0.359903007745743,51.488414764404354],[-0.244496002793255,51.494441986083984],[-0.236507996916771,51.48230743408203]]]},"properties":{"ID_0":242,"ISO":"GB-HNS","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":43,"NAME_2":"Hounslow","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.073055028915292,50.689861297607536],[-1.096389055252018,50.67069625854498],[-1.139165997505131,50.66013717651367],[-1.165832042694092,50.64402770996094],[-1.182500004768372,50.59736251831049],[-1.242499947547913,50.581806182861385],[-1.299165964126587,50.5745849609375],[-1.344167947769165,50.60402679443365],[-1.390277028083744,50.62736129760742],[-1.443055033683777,50.64125061035162],[-1.484722018241882,50.6662483215332],[-1.528610944747868,50.666805267333984],[-1.570279002189636,50.658473968505916],[-1.523054957389832,50.707637786865234],[-1.469166994094849,50.710140228271484],[-1.429165959358102,50.72652816772461],[-1.41305494308466,50.725139617920036],[-1.354166030883732,50.73902893066406],[-1.323055982589722,50.764862060546925],[-1.270833969116154,50.76597213745111],[-1.21416604518879,50.73513793945324],[-1.153612017631474,50.73374938964849],[-1.106943964958191,50.72069549560547],[-1.094166994094735,50.69625091552746],[-1.073055028915292,50.689861297607536]]]},"properties":{"ID_0":242,"ISO":"GB-IOW","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":44,"NAME_2":"Isle of Wight","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.130917996168137,51.56416702270519],[-0.094132997095585,51.56012344360357],[-0.071289002895298,51.54322433471674],[-0.087598003447056,51.528736114501946],[-0.072025001049042,51.51602935791027],[-0.096313998103028,51.51580429077148],[-0.110025003552437,51.5265617370606],[-0.130917996168137,51.56416702270519]]]},"properties":{"ID_0":242,"ISO":"GB-ISL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":45,"NAME_2":"Islington","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.211057007312775,51.522098541259766],[-0.198547005653381,51.5209007263183],[-0.166424006223679,51.492107391357365],[-0.138977006077766,51.47813796997082],[-0.168094992637634,51.47075271606445],[-0.19922100007534,51.490581512451115],[-0.211057007312775,51.522098541259766]]]},"properties":{"ID_0":242,"ISO":"GB-KEC","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":46,"NAME_2":"Kensington and Chelsea","TYPE_2":"London Borough (royal)","ENGTYPE_2":"London Borough (royal)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.16627000272274,51.39855575561529],[0.160833999514637,51.41722106933605],[0.211390003561974,51.456939697265625],[0.223610997200012,51.47333145141607],[0.265554010868073,51.456668853759766],[0.31222099065792,51.46554946899425],[0.341390013694877,51.44638824462901],[0.366111993789787,51.44332885742199],[0.414166986942348,51.449993133544915],[0.458056002855301,51.45402908325201],[0.468055009841919,51.4826393127442],[0.510277986526546,51.48541641235363],[0.48258700966835,51.46253204345709],[0.485686004161892,51.43772888183599],[0.512041985988617,51.42687606811518],[0.504293024539891,51.40206909179693],[0.456230998039189,51.363311767578125],[0.446929991245327,51.33850479125988],[0.5058429837228,51.34780883789057],[0.535299003124351,51.34315490722662],[0.592661976814384,51.312149047851506],[0.648476004600582,51.33695602416998],[0.667222023010311,51.3837509155274],[0.686389029026088,51.39152908325207],[0.696388006210441,51.41958236694347],[0.717499971389884,51.42041778564458],[0.725831985473746,51.399860382080135],[0.764167010784149,51.38402938842779],[0.764167010784149,51.36375045776367],[0.819723010063171,51.35430526733404],[0.876942992210502,51.35402679443365],[0.896389007568473,51.34152603149419],[0.933611989021301,51.346805572509766],[1.003054976463318,51.3484725952149],[1.031944990158081,51.36597061157238],[1.099722027778739,51.372638702392635],[1.166388988494873,51.37402725219737],[1.206943988800049,51.38069534301769],[1.277498960494995,51.37763977050787],[1.287500023841915,51.382362365722656],[1.378054976463318,51.387084960937614],[1.423611998558158,51.39263916015619],[1.44972205162054,51.37763977050787],[1.444167971611137,51.35097122192383],[1.409721016883907,51.32652664184582],[1.373610019683952,51.32791519165039],[1.37694501876831,51.28874969482422],[1.404723048210144,51.23236083984386],[1.40527701377863,51.17097091674805],[1.380833029747066,51.14236068725586],[1.315278053283691,51.12236022949213],[1.26916694641119,51.1015281677246],[1.225276947021428,51.09930419921875],[1.191388964653129,51.0765266418457],[1.085832953453064,51.06597137451171],[1.045833945274353,51.05374908447265],[0.995278000831661,51.023471832275334],[0.978055000305289,51.0054168701173],[0.964165985584373,50.96097183227539],[0.982499003410339,50.92013931274414],[0.973610997200012,50.910415649414176],[0.867712974548283,50.921249389648494],[0.866666972637233,50.943889617920036],[0.821111023426056,50.944160461425895],[0.786666989326477,50.98833084106457],[0.763333022594509,50.997219085693416],[0.69583398103714,50.99554824829107],[0.658056974411011,51.013889312744254],[0.569723010063228,51],[0.536943972110805,51.01832962036133],[0.479721993208045,51.03026962280279],[0.474721997976303,51.04777908325201],[0.416667014360485,51.06528091430664],[0.401111990213508,51.081939697265625],[0.335557013750133,51.10694122314453],[0.331389009952545,51.119998931884766],[0.266943991184348,51.11027908325195],[0.221388995647487,51.12194061279308],[0.140560999512729,51.11169052124029],[0.154384002089614,51.13933944702154],[0.132499992847499,51.14416885375988],[0.06278099864727,51.135879516601676],[0.060279000550565,51.181659698486385],[0.04444300010806,51.20999908447271],[0.063888996839523,51.242221832275504],[0.054444000124988,51.28998947143555],[0.09388899803173,51.288330078125],[0.096665002405643,51.31110000610346],[0.155277997255325,51.35472106933594],[0.16627000272274,51.39855575561529]]],[[[0.739721000194606,51.415973663330185],[0.744722008705253,51.44847106933605],[0.790277004241943,51.43986129760742],[0.819167017936706,51.42680740356451],[0.885277986526546,51.42124938964838],[0.935833990573883,51.39263916015619],[0.950276970863456,51.37458419799816],[0.920276999473515,51.357639312744084],[0.894722998142186,51.35402679443365],[0.820833027362937,51.369026184082024],[0.764723002910614,51.37069320678716],[0.768055021762905,51.38347244262701],[0.727500021457729,51.405693054199276],[0.739721000194606,51.415973663330185]]]]},"properties":{"ID_0":242,"ISO":"GB-KEN","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":47,"NAME_2":"Kent","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.296339988708496,53.74236297607422],[-0.449739009141865,53.71374893188488],[-0.444227993488255,53.7490844726563],[-0.426079988479557,53.77403640747082],[-0.386379003524723,53.7887840270996],[-0.341006010770798,53.78765106201183],[-0.309246003627663,53.76496505737304],[-0.296339988708496,53.74236297607422]]]},"properties":{"ID_0":242,"ISO":"GB-KHL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":48,"NAME_2":"Kingston upon Hull","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":"Hull"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.224751994013786,51.385395050048885],[-0.243055999278965,51.37360000610363],[-0.268334001302719,51.36166000366211],[-0.293334007263127,51.32889175415039],[-0.314999014139175,51.34722137451183],[-0.298056006431523,51.37054824829113],[-0.306676000356674,51.38444137573247],[-0.298146992921772,51.410175323486385],[-0.279599010944366,51.423812866210994],[-0.244277000427246,51.43251037597656],[-0.224751994013786,51.385395050048885]]]},"properties":{"ID_0":242,"ISO":"GB-KTT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":49,"NAME_2":"Kingston upon Thames","TYPE_2":"London Borough (royal)","ENGTYPE_2":"London Borough (royal)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.07634399831295,51.414375305175724],[-0.126905992627087,51.408092498779354],[-0.13170200586319,51.41772079467768],[-0.141544997692051,51.46076202392578],[-0.121486999094429,51.476806640625],[-0.103221997618618,51.502265930175895],[-0.080381996929646,51.46084976196288],[-0.091673001646996,51.443386077880916],[-0.074546001851559,51.41921997070318],[-0.07634399831295,51.414375305175724]]]},"properties":{"ID_0":242,"ISO":"GB-LBH","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":50,"NAME_2":"Lambeth","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.504431962966919,53.62708282470714],[-2.558887958526611,53.59915924072271],[-2.589999914169311,53.61304855346691],[-2.616111993789559,53.595550537109425],[-2.6349999904632,53.60694122314453],[-2.686667919158935,53.599720001220646],[-2.692500114440861,53.56082916259771],[-2.713057994842529,53.52999877929698],[-2.751987934112549,53.51115036010747],[-2.776109933853149,53.5288810729981],[-2.801666021346989,53.51694107055658],[-2.805000066757145,53.493610382080135],[-2.863610982894841,53.51805114746094],[-2.910278081893864,53.52444076538086],[-2.954444885253906,53.54582977294933],[-2.958611965179443,53.51583099365239],[-3.031666994094849,53.54193878173834],[-3.030555009841805,53.56026840209961],[-3.011667966842651,53.57749938964837],[-3.018887996673527,53.593608856201286],[-2.996387958526554,53.613609313964844],[-2.963609933853149,53.6261100769043],[-2.932777881622258,53.66054916381847],[-2.947770118713265,53.70819473266613],[-2.942501068115121,53.73208236694347],[-3.017499923705998,53.7398681640625],[-3.045834064483642,53.75763702392583],[-3.058054924011174,53.77847290039068],[-3.056945085525456,53.83069610595709],[-3.047499895095768,53.867916107177734],[-3.046387910842896,53.92319488525396],[-2.997500896453801,53.92819595336914],[-2.914721965789738,53.946529388427734],[-2.896389007568359,53.94152832031256],[-2.8536119461059,53.96652603149414],[-2.874166965484562,53.97152709960948],[-2.905277967452889,54.02208328247076],[-2.893054962158203,54.05986022949213],[-2.860277891159001,54.07736206054699],[-2.818054914474487,54.08902740478527],[-2.793055057525635,54.12652587890631],[-2.814167022705078,54.13319396972661],[-2.83472204208374,54.16813278198242],[-2.792222976684513,54.19083023071289],[-2.733057022094726,54.183048248291016],[-2.709167003631592,54.16444015502941],[-2.671112060546875,54.15861129760742],[-2.62805700302124,54.19916915893566],[-2.576667070388737,54.19610977172862],[-2.531666040420532,54.208610534668075],[-2.457778930664062,54.23833084106445],[-2.4474999904632,54.230270385742244],[-2.45333194732666,54.21722030639654],[-2.511666059493962,54.171661376953125],[-2.547498941421509,54.15111160278332],[-2.545001029968262,54.11360931396496],[-2.519166946411132,54.09722137451183],[-2.46777701377863,54.07971954345703],[-2.458332061767578,54.04721832275396],[-2.426944017410221,54.03805923461914],[-2.380557060241642,54.045558929443416],[-2.35472297668457,54.04249954223638],[-2.347500085830688,54.0022201538087],[-2.335000991821289,53.99110031127924],[-2.299998998641968,53.989170074463],[-2.274167060851994,53.96998977661132],[-2.227499008178711,53.982769012451165],[-2.222223043441772,53.96804809570318],[-2.190557003021183,53.965831756591854],[-2.174166917800903,53.936100006103565],[-2.105000019073486,53.91471862792963],[-2.097500085830575,53.88861083984375],[-2.066113948822021,53.862781524658196],[-2.032510042190552,53.84766006469738],[-2.047224044799748,53.82444000244146],[-2.095555067062378,53.810550689697266],[-2.120558023452759,53.7913818359375],[-2.121388912200871,53.755268096923885],[-2.159722089767456,53.725559234619254],[-2.15134596824646,53.69654846191406],[-2.225554943084717,53.67221832275396],[-2.275001049041691,53.62665939331055],[-2.279999017715397,53.66527938842785],[-2.329166889190617,53.65777969360357],[-2.35657095909113,53.66466140747076],[-2.379894018173217,53.707790374755916],[-2.418098926544189,53.76554107666027],[-2.446531057357788,53.77264785766607],[-2.496287107467595,53.76198577880859],[-2.525605916976872,53.7379989624024],[-2.526494026184025,53.653591156005916],[-2.504431962966919,53.62708282470714]]]},"properties":{"ID_0":242,"ISO":"GB-LAN","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":51,"NAME_2":"Lancashire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.651041984558105,52.747573852539176],[-0.727120995521545,52.7162742614746],[-0.782460987567845,52.71879196166997],[-0.805100023746377,52.70872879028326],[-0.800069987773895,52.673511505126896],[-0.800069987773895,52.59553527832037],[-0.764853000640869,52.53264999389654],[-0.729862987995148,52.50671386718744],[-0.761111974716187,52.49943923950195],[-0.78916597366333,52.50693893432623],[-0.870832026004678,52.50500106811529],[-0.892499983310699,52.473880767822266],[-0.870278000831547,52.462219238281364],[-0.897499978542214,52.44721984863281],[-0.937223970889988,52.4616584777832],[-0.962777018547058,52.46361160278325],[-1.033612966537419,52.444721221923885],[-1.02222204208374,52.432781219482536],[-1.045194983482247,52.40248107910161],[-1.100556015968323,52.42416000366216],[-1.134166002273503,52.403610229492244],[-1.156666040420475,52.37833023071294],[-1.186583995818978,52.38137817382824],[-1.211665987968445,52.41582870483393],[-1.241111993789673,52.4261093139649],[-1.293334007263184,52.47943878173822],[-1.395833015441838,52.51250076293957],[-1.417222976684513,52.53527069091808],[-1.495000958442688,52.556388854980526],[-1.517778992652836,52.574440002441406],[-1.545832991600037,52.58082962036133],[-1.542222023010197,52.60083007812506],[-1.558889985084477,52.62166976928711],[-1.533890008926391,52.64165878295893],[-1.580000996589661,52.6769409179688],[-1.583055019378605,52.685001373291016],[-1.534999966621285,52.70610809326177],[-1.543334960937443,52.73360061645502],[-1.532778024673405,52.74972152709966],[-1.474722981452942,52.74860000610357],[-1.427222013473397,52.78387832641607],[-1.395277023315373,52.789989471435604],[-1.370558023452702,52.83137893676763],[-1.301388025283813,52.86249923706066],[-1.262778043746891,52.861660003662166],[-1.268056035041752,52.81916046142578],[-1.259721040725594,52.79916000366222],[-1.225556969642582,52.77804946899413],[-1.188184022903386,52.77230834960943],[-1.166388034820556,52.78610992431652],[-1.133610010147038,52.79193878173833],[-1.10000205039978,52.808048248291016],[-1.052222013473454,52.803890228271534],[-0.979444980621338,52.807781219482536],[-0.968887984752655,52.8255500793457],[-0.849722981452885,52.893051147460994],[-0.821111023426056,52.92916107177745],[-0.819445013999882,52.9413795471192],[-0.791666984558105,52.957500457763786],[-0.766695976257324,52.96121978759777],[-0.764442026615086,52.94388961791997],[-0.744445025920868,52.928329467773494],[-0.763056993484497,52.89471817016613],[-0.753611981868687,52.87083053588872],[-0.723612010478917,52.86582946777355],[-0.690554976463318,52.816669464111385],[-0.676110029220581,52.80693817138666],[-0.651041984558105,52.747573852539176]],[[-1.064187049865723,52.59553527832037],[-1.056640982627869,52.62320327758788],[-1.07173395156849,52.648357391357415],[-1.119526982307434,52.655906677246094],[-1.159773945808354,52.655906677246094],[-1.179896950721684,52.63829803466808],[-1.167320966720581,52.57541275024419],[-1.122040987014771,52.565349578857536],[-1.064187049865723,52.59553527832037]]]},"properties":{"ID_0":242,"ISO":"GB-LEC","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":52,"NAME_2":"Leicestershire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.064187049865723,52.59553527832037],[-1.122040987014771,52.565349578857536],[-1.167320966720581,52.57541275024419],[-1.179896950721684,52.63829803466808],[-1.159773945808354,52.655906677246094],[-1.119526982307434,52.655906677246094],[-1.07173395156849,52.648357391357415],[-1.056640982627869,52.62320327758788],[-1.064187049865723,52.59553527832037]]]},"properties":{"ID_0":242,"ISO":"GB-LCE","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":53,"NAME_2":"Leicester","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.066652998328209,51.42107391357422],[-0.034924998879433,51.44993972778331],[-0.047993998974448,51.47789382934576],[-0.023135000839716,51.4887351989746],[0.013474999926984,51.465690612792905],[0.025491999462304,51.438079833984375],[0.003723999951148,51.411174774170036],[-0.022267000749707,51.41886138916021],[-0.066652998328209,51.42107391357422]]]},"properties":{"ID_0":242,"ISO":"GB-LEW","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":54,"NAME_2":"Lewisham","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.288432002067509,52.8223609924317],[0.262499988079128,52.775829315185604],[0.276389002800045,52.75638961791998],[0.199723005294913,52.72166061401373],[0.172442004084644,52.724388122558594],[0.149443000555095,52.725269317626946],[0.097498998046035,52.70804977416992],[0.052777998149509,52.70055007934582],[0.057222999632472,52.670558929443416],[0.032219998538608,52.64804840087885],[3.98e-13,52.64752960205078],[-0.049467999488115,52.65792465209961],[-0.101388998329639,52.6519393920899],[-0.137500002980175,52.63861083984381],[-0.183054998517036,52.6419410705567],[-0.19946500658989,52.656269073486385],[-0.261945009231567,52.647499084472656],[-0.314999014139175,52.663600921630795],[-0.401942998170853,52.63694000244151],[-0.466666013002396,52.64332962036144],[-0.490702003240472,52.63652038574224],[-0.495279014110508,52.65055084228515],[-0.4497210085392,52.661659240722656],[-0.415279000997543,52.68666076660162],[-0.51555597782135,52.70972061157237],[-0.526389002799931,52.72499847412114],[-0.563609004020691,52.740550994873104],[-0.651041984558105,52.747573852539176],[-0.676110029220581,52.80693817138666],[-0.690554976463318,52.816669464111385],[-0.723612010478917,52.86582946777355],[-0.753611981868687,52.87083053588872],[-0.763056993484497,52.89471817016613],[-0.744445025920868,52.928329467773494],[-0.764442026615086,52.94388961791997],[-0.766695976257324,52.96121978759777],[-0.78638797998417,52.98666000366222],[-0.781387984752655,53.00609970092785],[-0.738888978958073,53.036380767822315],[-0.688610970973912,53.04972076416026],[-0.7119420170784,53.08304977416992],[-0.70305597782135,53.09666061401372],[-0.710831999778748,53.1402702331543],[-0.706112027168274,53.160270690918026],[-0.745001018047333,53.17082977294933],[-0.730831980705148,53.191669464111385],[-0.692220985889435,53.203891754150504],[-0.66444498300541,53.20333099365234],[-0.656944990158081,53.2313804626466],[-0.70472198724741,53.24110031127941],[-0.72388702630991,53.22943878173828],[-0.766381978988591,53.23249053955078],[-0.770555019378662,53.26639175415045],[-0.742779016494694,53.290828704834034],[-0.762221992015839,53.33443832397461],[-0.787500023841858,53.347499847412166],[-0.773055016994419,53.368328094482536],[-0.811110019683838,53.4163818359375],[-0.788331985473633,53.43610000610351],[-0.785458028316498,53.45186996459972],[-0.747223019599915,53.48666000366211],[-0.739723026752472,53.513889312744084],[-0.61583399772644,53.50526809692394],[-0.609444975852966,53.488048553466854],[-0.621388018131199,53.46500015258795],[-0.60333198308939,53.452770233154354],[-0.56888997554779,53.45111083984375],[-0.466944009065628,53.47249984741205],[-0.458889991044941,53.50387954711919],[-0.399167001247349,53.50999069213873],[-0.400555014610234,53.53139114379894],[-0.476942986249924,53.53833007812506],[-0.416667014360371,53.56610870361328],[-0.352499991655293,53.555828094482536],[-0.327499985694885,53.558048248291065],[-0.290832996368408,53.58304977416997],[-0.282074987888336,53.606346130371094],[-0.237498998641968,53.58972167968749],[-0.208610996603966,53.56610870361328],[-0.170277997851372,53.557498931884815],[-0.19777800142765,53.535549163818416],[-0.184166997671127,53.5013885498048],[-0.19055600464344,53.47748947143554],[-0.142222002148628,53.4508285522462],[-0.113609999418259,53.42694091796881],[-0.07277899980545,53.44250106811534],[-0.092500999569836,53.461940765380916],[-0.058056000620127,53.51028060913085],[0.016943000257072,53.52251434326183],[0.034166999161357,53.51013946533214],[0.060832999646777,53.51208496093744],[0.083057001233158,53.49319458007807],[0.154165998101234,53.47652816772461],[0.176388993859291,53.44124984741211],[0.200832992792186,53.419029235839844],[0.264165997505188,53.34486007690441],[0.306944996118546,53.28819274902343],[0.338611990213394,53.23847198486334],[0.356388986110801,53.18347167968749],[0.348610013723487,53.128192901611435],[0.33749899268156,53.09430694580084],[0.294721990823859,53.08430480957031],[0.271944999694938,53.06819534301758],[0.155834004282951,53.009029388427734],[0.115832999348754,52.9781951904298],[0.069168001413402,52.923473358154354],[0.077500000596103,52.902915954589844],[0.123612001538334,52.89680480957031],[0.182500004768372,52.8609733581544],[0.224722996354103,52.82319259643566],[0.288432002067509,52.8223609924317]]]},"properties":{"ID_0":242,"ISO":"GB-LIN","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":55,"NAME_2":"Lincolnshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.072025001049042,51.51602935791027],[-0.077073000371399,51.50599288940441],[-0.0998620018363,51.507091522216854],[-0.102742999792099,51.51198959350586],[-0.096313998103028,51.51580429077148],[-0.072025001049042,51.51602935791027]]]},"properties":{"ID_0":242,"ISO":"GB-LND","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":56,"NAME_2":"London","TYPE_2":"London Borough (city)","ENGTYPE_2":"London Borough (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.45266801118845,51.847469329833984],[-0.471720993518829,51.866779327392635],[-0.477133989334106,51.89022827148448],[-0.464507997035866,51.91367721557617],[-0.403178989887238,51.91548156738281],[-0.385149002075138,51.92111587524414],[-0.367778986692372,51.892219543457024],[-0.348612010478917,51.88109970092779],[-0.335278987884465,51.85110092163085],[-0.379999995231572,51.82444000244151],[-0.418610990047455,51.843330383300895],[-0.45266801118845,51.847469329833984]]]},"properties":{"ID_0":242,"ISO":"GB-LUT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":57,"NAME_2":"Luton","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.42877006530756,53.38039016723633],[-2.460556983947754,53.388328552246094],[-2.446665048599186,53.4188804626466],[-2.485001087188664,53.46221923828131],[-2.522222995758056,53.46249008178716],[-2.566404104232788,53.43566894531255],[-2.59972095489502,53.458328247070305],[-2.603888988494873,53.47249984741205],[-2.690000057220345,53.47166061401373],[-2.751987934112549,53.51115036010747],[-2.713057994842529,53.52999877929698],[-2.692500114440861,53.56082916259771],[-2.686667919158935,53.599720001220646],[-2.6349999904632,53.60694122314453],[-2.616111993789559,53.595550537109425],[-2.589999914169311,53.61304855346691],[-2.558887958526611,53.59915924072271],[-2.504431962966919,53.62708282470714],[-2.463610887527465,53.62416076660162],[-2.434444904327393,53.64416885375971],[-2.376390933990479,53.63499069213878],[-2.35657095909113,53.66466140747076],[-2.329166889190617,53.65777969360357],[-2.279999017715397,53.66527938842785],[-2.275001049041691,53.62665939331055],[-2.225554943084717,53.67221832275396],[-2.15134596824646,53.69654846191406],[-2.098612070083618,53.67193984985357],[-2.046390056610051,53.68416976928722],[-2.031388998031616,53.663330078124936],[-2.035001039505005,53.646938323974666],[-2.01694393157959,53.61861038208002],[-1.988055944442749,53.6147193908692],[-1.97694194316864,53.593891143798885],[-1.937777996063176,53.5680503845216],[-1.897222995758,53.53305053710949],[-1.918890953063908,53.50083160400385],[-1.963611960411015,53.49472045898432],[-1.982499003410283,53.443889617919865],[-2.009166955947819,53.4275016784668],[-2.011667013168335,53.41249847412121],[-1.981389045715275,53.39833068847662],[-2.016736030578613,53.370479583740234],[-2.049443960189762,53.3522186279298],[-2.080832004547119,53.3611106872558],[-2.119998931884766,53.359439849853516],[-2.140279054641724,53.3277702331543],[-2.159446954727173,53.321388244628906],[-2.176111936569157,53.34555053710949],[-2.238333940505868,53.35499954223644],[-2.28333306312561,53.34222030639659],[-2.316668033599854,53.359989166259766],[-2.364721059799137,53.36249923706055],[-2.42877006530756,53.38039016723633]]]},"properties":{"ID_0":242,"ISO":"GB-MAN","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":58,"NAME_2":"Manchester","TYPE_2":"Metropolitan Borough (city)","ENGTYPE_2":"Metropolitan Borough (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.667222023010311,51.3837509155274],[0.648476004600582,51.33695602416998],[0.592661976814384,51.312149047851506],[0.535299003124351,51.34315490722662],[0.5058429837228,51.34780883789057],[0.446929991245327,51.33850479125988],[0.456230998039189,51.363311767578125],[0.504293024539891,51.40206909179693],[0.512041985988617,51.42687606811518],[0.485686004161892,51.43772888183599],[0.48258700966835,51.46253204345709],[0.510277986526546,51.48541641235363],[0.548054993152732,51.487361907958984],[0.611944019794464,51.478748321533146],[0.700832009315491,51.472637176513786],[0.723612010478973,51.443195343017635],[0.703611016273555,51.43319320678711],[0.634720981121063,51.43930435180664],[0.604166984558219,51.41458511352545],[0.550276994705257,51.40652847290039],[0.576945006847438,51.39097213745128],[0.667222023010311,51.3837509155274]]]},"properties":{"ID_0":242,"ISO":"GB-MDW","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":59,"NAME_2":"Medway","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":"Medway Towns"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.566404104232788,53.43566894531255],[-2.616111993789559,53.43054962158208],[-2.639722108840942,53.44055175781244],[-2.670834064483643,53.431110382080014],[-2.648056983947754,53.391391754150504],[-2.680557012557927,53.37887954711914],[-2.741111993789616,53.388328552246094],[-2.77222204208374,53.365001678466854],[-2.767220973968449,53.347770690918026],[-2.808409929275455,53.32847213745128],[-2.838054895401001,53.32680511474614],[-2.880278110504094,53.334304809570426],[-2.987499952316284,53.38791656494135],[-3.009167909622192,53.439861297607536],[-3.040833950042668,53.4651374816895],[-3.06138896942133,53.501251220703125],[-3.06361198425293,53.5223617553712],[-3.1002779006958,53.54291534423834],[-3.1002779006958,53.56652832031256],[-3.051388978958016,53.62236022949219],[-3.01916599273676,53.65124893188476],[-2.99083399772644,53.66736221313482],[-2.972501039504948,53.69402694702154],[-2.947770118713265,53.70819473266613],[-2.932777881622258,53.66054916381847],[-2.963609933853149,53.6261100769043],[-2.996387958526554,53.613609313964844],[-3.018887996673527,53.593608856201286],[-3.011667966842651,53.57749938964837],[-3.030555009841805,53.56026840209961],[-3.031666994094849,53.54193878173834],[-2.958611965179443,53.51583099365239],[-2.954444885253906,53.54582977294933],[-2.910278081893864,53.52444076538086],[-2.863610982894841,53.51805114746094],[-2.805000066757145,53.493610382080135],[-2.801666021346989,53.51694107055658],[-2.776109933853149,53.5288810729981],[-2.751987934112549,53.51115036010747],[-2.690000057220345,53.47166061401373],[-2.603888988494873,53.47249984741205],[-2.59972095489502,53.458328247070305],[-2.566404104232788,53.43566894531255]]]},"properties":{"ID_0":242,"ISO":"GB-MER","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":60,"NAME_2":"Merseyside","TYPE_2":"Metropolitan County","ENGTYPE_2":"Metropolitan County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.244277000427246,51.43251037597656],[-0.199147999286652,51.43706512451183],[-0.167852997779789,51.42296600341791],[-0.13170200586319,51.41772079467768],[-0.126905992627087,51.408092498779354],[-0.131302997469902,51.38724136352539],[-0.187601998448372,51.382141113281186],[-0.224751994013786,51.385395050048885],[-0.244277000427246,51.43251037597656]]]},"properties":{"ID_0":242,"ISO":"GB-MRT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":61,"NAME_2":"Merton","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.250823020935002,54.48669433593761],[-1.292322039604187,54.502136230468864],[-1.299860954284611,54.51515960693354],[-1.293007969856262,54.54463195800787],[-1.259423017501717,54.5775299072265],[-1.218665003776493,54.57542419433588],[-1.21761405467987,54.55353927612316],[-1.179504990577698,54.503860473632926],[-1.235002040863037,54.499721527099666],[-1.250823020935002,54.48669433593761]]]},"properties":{"ID_0":242,"ISO":"GB-MDB","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":62,"NAME_2":"Middlesbrough","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.867379009723663,52.03387069702154],[-0.855832993984166,52.05860900878911],[-0.827777028083801,52.07221984863275],[-0.851666986942177,52.08583068847656],[-0.87833297252655,52.116100311279354],[-0.825833022594452,52.12749099731445],[-0.806666016578674,52.15222167968756],[-0.776111006736755,52.1469383239746],[-0.761943995952606,52.162498474121094],[-0.728887975215855,52.16165924072277],[-0.654443979263249,52.192501068115234],[-0.621200978755894,52.174911499023494],[-0.63160502910614,52.1465110778808],[-0.588057994842416,52.11804962158203],[-0.573612987995148,52.09666061401373],[-0.621945977210999,52.071659088134815],[-0.658333003520909,52.03889083862316],[-0.630001008510589,52.028331756591854],[-0.634442985057717,52.00444030761724],[-0.654165983200016,51.9880485534668],[-0.641668021678868,51.96194076538086],[-0.657158970832768,51.94794845581065],[-0.722445011138916,51.9497528076173],[-0.778361022472325,51.976810455322266],[-0.837885022163334,52.011081695556754],[-0.867379009723663,52.03387069702154]]]},"properties":{"ID_0":242,"ISO":"GB-MIK","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":63,"NAME_2":"Milton Keynes","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.097815997898692,51.5101890563966],[0.073413997888565,51.49655532836914],[0.033514998853207,51.49438095092785],[0.019481999799609,51.50265884399414],[0.003920000046605,51.5137672424317],[-0.011008000001254,51.543540954589844],[-0.010583999566734,51.55247879028325],[0.023910999298096,51.5543327331543],[0.053291000425872,51.56283187866222],[0.074619002640361,51.542129516601676],[0.097815997898692,51.5101890563966]]]},"properties":{"ID_0":242,"ISO":"GB-NWM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":64,"NAME_2":"Newham","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.741943955421448,52.530696868896484],[1.690832018852234,52.54222106933594],[1.663334012031555,52.53194046020519],[1.65305495262146,52.51082992553711],[1.675832986831779,52.4927711486817],[1.700278997421265,52.4877815246582],[1.66055595874792,52.459159851074276],[1.640555977821464,52.453609466552734],[1.598055005073547,52.46944046020508],[1.519443035125846,52.4511108398438],[1.490000963211173,52.458049774169915],[1.464444994926453,52.45138931274419],[1.44222104549408,52.46139144897472],[1.411388993263301,52.43693923950201],[1.363052964210567,52.42248916625988],[1.323611021041813,52.383609771728516],[1.274443030357418,52.38193893432617],[1.234722018241882,52.36054992675787],[1.202499985694999,52.353881835937614],[1.124166011810303,52.364719390869084],[1.077221989631596,52.3652687072755],[1.034999012947196,52.374160766601506],[0.973333001136893,52.359989166259766],[0.931389987468776,52.38222122192394],[0.881389975547791,52.382770538330135],[0.837776005268211,52.395271301269645],[0.787778973579464,52.38166046142578],[0.751389980316162,52.3794403076173],[0.733888983726501,52.38777160644537],[0.693333983421326,52.38916015625006],[0.670000016689301,52.39889144897461],[0.671109974384308,52.41971969604498],[0.709721028804893,52.43748855590826],[0.676388978958244,52.44694137573242],[0.638611972332058,52.43972015380871],[0.558332026004791,52.44638824462902],[0.491943001747188,52.43138885498047],[0.447221010923329,52.43222045898443],[0.398056000471172,52.45528030395519],[0.362500995397568,52.49055099487315],[0.32861098647129,52.503330230713],[0.285834014415855,52.500000000000114],[0.253055006265754,52.48749923706066],[0.223055005073547,52.52165985107422],[0.218331992626247,52.543331146240284],[0.228332996368408,52.56082916259777],[0.219998002052307,52.58443832397455],[0.245831996202469,52.60139083862316],[0.184722006321067,52.63000106811534],[0.197501003742218,52.66110992431646],[0.157077997922954,52.67021179199219],[0.172442004084644,52.724388122558594],[0.199723005294913,52.72166061401373],[0.276389002800045,52.75638961791998],[0.262499988079128,52.775829315185604],[0.288432002067509,52.8223609924317],[0.322499990463371,52.820415496826165],[0.351943999528942,52.80486297607422],[0.392498999834118,52.83124923706049],[0.444721013307685,52.850139617919865],[0.443055003881454,52.867637634277344],[0.47194600105297,52.90763854980463],[0.49583300948143,52.955696105957145],[0.528612017631587,52.97513961791998],[0.631945014,52.974029541015625],[0.689720988273621,52.988193511963],[0.760276973247585,52.979305267333984],[0.966943979263363,52.964584350585994],[0.994722008705196,52.9781951904298],[1.136945009231624,52.949859619140625],[1.210834026336784,52.94652938842779],[1.29916703701025,52.93402862548828],[1.425832033157349,52.885692596435604],[1.485277056694031,52.849861145019524],[1.603611946106014,52.79013824462902],[1.658612012863159,52.75597381591808],[1.697500944137687,52.72236251831055],[1.744166016578731,52.630973815918026],[1.733610987663326,52.55152893066417],[1.741943955421448,52.530696868896484]]]},"properties":{"ID_0":242,"ISO":"GB-NFK","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":65,"NAME_2":"Norfolk","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.016943000257072,53.52251434326183],[-0.058056000620127,53.51028060913085],[-0.092500999569836,53.461940765380916],[-0.07277899980545,53.44250106811534],[-0.113609999418259,53.42694091796881],[-0.142222002148628,53.4508285522462],[-0.19055600464344,53.47748947143554],[-0.184166997671127,53.5013885498048],[-0.19777800142765,53.535549163818416],[-0.170277997851372,53.557498931884815],[-0.208610996603966,53.56610870361328],[-0.237498998641968,53.58972167968749],[-0.282074987888336,53.606346130371094],[-0.274780988693237,53.616764068603516],[-0.1875,53.63209152221691],[-0.094723001122475,53.58152770996094],[-0.072498999536037,53.5837516784668],[-0.031943999230862,53.566249847412166],[0.016943000257072,53.52251434326183]]]},"properties":{"ID_0":242,"ISO":"GB-NEL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":66,"NAME_2":"North East Lincolnshire","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.282074987888336,53.606346130371094],[-0.290832996368408,53.58304977416997],[-0.327499985694885,53.558048248291065],[-0.352499991655293,53.555828094482536],[-0.416667014360371,53.56610870361328],[-0.476942986249924,53.53833007812506],[-0.400555014610234,53.53139114379894],[-0.399167001247349,53.50999069213873],[-0.458889991044941,53.50387954711919],[-0.466944009065628,53.47249984741205],[-0.56888997554779,53.45111083984375],[-0.60333198308939,53.452770233154354],[-0.621388018131199,53.46500015258795],[-0.609444975852966,53.488048553466854],[-0.61583399772644,53.50526809692394],[-0.739723026752472,53.513889312744084],[-0.747223019599915,53.48666000366211],[-0.785458028316498,53.45186996459972],[-0.904999017715397,53.45777130126953],[-0.890833973884526,53.47137832641601],[-0.919336974620819,53.48748016357416],[-0.943333983421326,53.51805114746094],[-0.914722025394383,53.53305053710949],[-0.881111025810242,53.52804946899414],[-0.872775971889382,53.54582977294933],[-0.904443025588932,53.57165908813488],[-0.860831022262516,53.581668853759766],[-0.860692024230957,53.612518310546925],[-0.843985974788666,53.613910675048885],[-0.766933023929482,53.658145904541016],[-0.700277984142303,53.68819046020519],[-0.686945021152439,53.69874954223633],[-0.619722008705139,53.71430587768566],[-0.550832986831665,53.679584503173935],[-0.504167020320892,53.680416107177734],[-0.478055000305176,53.69597244262701],[-0.400276988744736,53.69902801513672],[-0.335833013057709,53.710693359375],[-0.29305499792099,53.71374893188488],[-0.210277006030083,53.64236068725591],[-0.1875,53.63209152221691],[-0.274780988693237,53.616764068603516],[-0.282074987888336,53.606346130371094]]]},"properties":{"ID_0":242,"ISO":"GB-NLN","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":67,"NAME_2":"North Lincolnshire","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.991249084472656,51.32125091552746],[-2.961944103240853,51.382083892822266],[-2.941943883895817,51.39847183227538],[-2.907500028610173,51.40013885498046],[-2.885277986526489,51.428749084472656],[-2.808053970336857,51.482082366943416],[-2.731005907058602,51.49736022949219],[-2.705461025238037,51.48052597045898],[-2.66798996925354,51.46714019775396],[-2.630516052246037,51.44305419921874],[-2.633456945419198,51.382179260253906],[-2.646574974060059,51.34937286376953],[-2.680032968521061,51.34134292602544],[-2.714828968048096,51.342681884765625],[-2.712670087814331,51.31989288330084],[-2.811944961547852,51.327499389648494],[-2.788888931274357,51.29721832275402],[-2.837223052978515,51.29444122314453],[-2.879446029663086,51.30167007446295],[-2.889445066452026,51.28638076782232],[-2.929721117019596,51.29916000366216],[-2.975832939147892,51.29333114624035],[-2.991249084472656,51.32125091552746]]]},"properties":{"ID_0":242,"ISO":"GB-NSM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":68,"NAME_2":"North Somerset","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":"North West Somerset"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.927909016609192,53.97192001342779],[-0.987452983856087,53.974716186523494],[-1.004220962524414,53.99008560180669],[-1.007017970085144,54.02781677246087],[-1.026579022407532,54.03899383544927],[-1.092252969741764,54.040390014648544],[-1.146749019622746,54.02781677246087],[-1.177492022514343,53.98030471801758],[-1.231986045837402,53.9691276550294],[-1.23478102684021,53.945373535156364],[-1.218013048171997,53.91463088989252],[-1.177492022514343,53.87690353393555],[-1.14116096496582,53.86013412475585],[-1.025182008743229,53.85734176635748],[-0.969289004802704,53.87131500244146],[-0.940470993518829,53.86803817749035],[-0.941111981868687,53.83554840087902],[-0.920278012752476,53.807781219482536],[-0.93416702747345,53.76832962036127],[-0.963611006736755,53.74304962158214],[-0.942499995231515,53.719989776611385],[-0.982779026031494,53.70249938964844],[-1.020555973052979,53.69472122192383],[-1.093862056732178,53.713638305664176],[-1.109722018241882,53.675548553466854],[-1.073925971984863,53.647708892822315],[-1.199445009231511,53.63861083984381],[-1.229943990707341,53.620719909668026],[-1.246947050094548,53.63555145263671],[-1.245278000831547,53.67193984985357],[-1.219980001449585,53.714698791503906],[-1.259443044662419,53.71776962280285],[-1.304167032241764,53.749721527099666],[-1.288612008094788,53.77027130126959],[-1.307500958442574,53.79027938842773],[-1.305276989936772,53.819721221923885],[-1.326110005378666,53.846378326416016],[-1.305557012557869,53.860828399658146],[-1.307777047157288,53.89471817016607],[-1.294167995452824,53.9255485534668],[-1.333611011505127,53.94499969482433],[-1.386667013168221,53.9394416809082],[-1.454722046852055,53.90610885620117],[-1.507187962532043,53.91077041625988],[-1.534446001052856,53.93526840209961],[-1.549167037010193,53.90861129760747],[-1.583333015441838,53.900829315185604],[-1.641389966011047,53.907218933105526],[-1.728610038757267,53.90277099609374],[-1.79778003692627,53.94305038452142],[-1.871762990951538,53.9404411315918],[-1.901944994926396,53.95499038696294],[-1.943611979484501,53.957771301269645],[-1.950834989547729,53.93193817138672],[-1.973610043525696,53.91722106933594],[-1.966109991073608,53.87638854980463],[-2.002779006957951,53.86999893188471],[-2.032510042190552,53.84766006469738],[-2.066113948822021,53.862781524658196],[-2.097500085830575,53.88861083984375],[-2.105000019073486,53.91471862792963],[-2.174166917800903,53.936100006103565],[-2.190557003021183,53.965831756591854],[-2.222223043441772,53.96804809570318],[-2.227499008178711,53.982769012451165],[-2.274167060851994,53.96998977661132],[-2.299998998641968,53.989170074463],[-2.335000991821289,53.99110031127924],[-2.347500085830688,54.0022201538087],[-2.35472297668457,54.04249954223638],[-2.380557060241642,54.045558929443416],[-2.426944017410221,54.03805923461914],[-2.458332061767578,54.04721832275396],[-2.46777701377863,54.07971954345703],[-2.519166946411132,54.09722137451183],[-2.545001029968262,54.11360931396496],[-2.547498941421509,54.15111160278332],[-2.511666059493962,54.171661376953125],[-2.45333194732666,54.21722030639654],[-2.4474999904632,54.230270385742244],[-2.40055608749384,54.2283287048341],[-2.352498054504395,54.250549316406364],[-2.309720993041992,54.243328094482415],[-2.3002769947052,54.265270233154354],[-2.311387062072754,54.281391143798935],[-2.306111097335815,54.32054901123058],[-2.347222089767456,54.35026931762689],[-2.28333306312561,54.382770538330135],[-2.29555606842041,54.417770385742244],[-2.276667118072453,54.43555068969726],[-2.244719982147217,54.44805145263671],[-2.194166898727303,54.44665908813482],[-2.155178070068359,54.4556999206544],[-2.138889074325562,54.44971084594732],[-2.099721908569336,54.46804809570307],[-2.045556068420353,54.47972106933594],[-2.006944894790593,54.47249984741222],[-1.956110954284668,54.45444107055663],[-1.930557012557983,54.45471954345703],[-1.850833058357125,54.48054885864258],[-1.824445009231567,54.5027809143067],[-1.787222981452828,54.481670379638615],[-1.766945004463196,54.52861022949224],[-1.724722027778568,54.52499008178711],[-1.68175303935999,54.53115844726573],[-1.642222046852055,54.523330688476676],[-1.629999041557312,54.50833129882812],[-1.600278973579293,54.51250076293951],[-1.577777028083744,54.48971939086913],[-1.532500028610173,54.46527099609381],[-1.525555014610291,54.480831146240284],[-1.495000958442688,54.478881835937614],[-1.472221016883793,54.44805145263671],[-1.446110963821411,54.45111083984375],[-1.466667056083679,54.482769012451286],[-1.431946039199829,54.48117065429699],[-1.408334970474243,54.49248886108404],[-1.369721055030766,54.48888015747082],[-1.361945033073425,54.467498779296875],[-1.326665997505074,54.4622192382813],[-1.250823020935002,54.48669433593761],[-1.235002040863037,54.499721527099666],[-1.179504990577698,54.503860473632926],[-1.114166975021305,54.49805068969738],[-1.07444596290577,54.505001068115234],[-1.029168009757995,54.49248886108404],[-0.976109981536865,54.5],[-0.932501018047333,54.48666000366211],[-0.880833029746896,54.495830535888665],[-0.838334023952427,54.48722076416021],[-0.837777972221374,54.5158309936524],[-0.814722001552525,54.540550231933594],[-0.778769016265755,54.55736160278332],[-0.744166970252934,54.52791595458996],[-0.712500989437103,54.53374862670893],[-0.680833995342255,54.51958465576171],[-0.661388993263245,54.49902725219721],[-0.590278029441833,54.4879150390625],[-0.520832002162876,54.44736099243164],[-0.531388998031559,54.42652893066406],[-0.463055998086873,54.39041519165045],[-0.414723008871078,54.330417633056584],[-0.417501002550068,54.31180572509776],[-0.395832985639572,54.27264022827143],[-0.353612005710545,54.2406959533692],[-0.266945987939778,54.21819305419922],[-0.282501012086868,54.192916870117244],[-0.236945003271103,54.16291809082031],[-0.196943998336792,54.155754089355575],[-0.222778007388001,54.133049011230526],[-0.294443011283818,54.13610839843761],[-0.354999989271164,54.14944076538085],[-0.37389001250267,54.165550231933594],[-0.415832996368351,54.162769317626896],[-0.420278996229172,54.138610839843864],[-0.448610991239491,54.12360000610357],[-0.446666985750198,54.107219696045036],[-0.513333976268768,54.083328247070256],[-0.57083398103714,54.08472061157238],[-0.604166984558105,54.06776809692394],[-0.641111016273499,54.05887985229492],[-0.640833020210266,54.03221893310541],[-0.665557026863098,54.024990081787166],[-0.668332993984166,54.007221221923885],[-0.70194399356842,54.00833129882823],[-0.73388797044754,54.02222061157226],[-0.889317989349365,54.007209777832145],[-0.927909016609192,53.97192001342779]]]},"properties":{"ID_0":242,"ISO":"GB-NYK","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":69,"NAME_2":"North Yorkshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.867379009723663,52.03387069702154],[-0.901345014572144,52.018619537353565],[-0.940555989742222,52.07194137573236],[-0.990832984447479,52.063049316406364],[-1.02333402633667,52.06472015380864],[-1.03666698932642,52.05360031127941],[-1.096667051315251,52.04388046264659],[-1.141713976860046,52.01774978637707],[-1.108158946037292,52.00925827026373],[-1.138334035873299,51.989719390869254],[-1.183611989021244,51.978328704833984],[-1.264999985694828,51.97972106933588],[-1.296666026115417,52.03889083862316],[-1.293889999389648,52.07138824462896],[-1.237221956253052,52.096111297607536],[-1.321192026138306,52.161590576171925],[-1.303056955337524,52.181110382080135],[-1.248610019683781,52.195270538330135],[-1.265833973884526,52.227779388427734],[-1.208055973052979,52.25],[-1.208889961242676,52.27249908447259],[-1.22416698932642,52.28248977661144],[-1.202499032020512,52.30138015747082],[-1.241667985916138,52.31110000610362],[-1.233332991600037,52.327499389648494],[-1.181112051010132,52.3383293151856],[-1.165277957916203,52.348049163818416],[-1.186583995818978,52.38137817382824],[-1.156666040420475,52.37833023071294],[-1.134166002273503,52.403610229492244],[-1.100556015968323,52.42416000366216],[-1.045194983482247,52.40248107910161],[-1.02222204208374,52.432781219482536],[-1.033612966537419,52.444721221923885],[-0.962777018547058,52.46361160278325],[-0.937223970889988,52.4616584777832],[-0.897499978542214,52.44721984863281],[-0.870278000831547,52.462219238281364],[-0.892499983310699,52.473880767822266],[-0.870832026004678,52.50500106811529],[-0.78916597366333,52.50693893432623],[-0.761111974716187,52.49943923950195],[-0.729862987995148,52.50671386718744],[-0.696942985057831,52.52304840087896],[-0.681666016578674,52.54304885864252],[-0.548057019710541,52.590549468994084],[-0.521109998226109,52.62388992309581],[-0.490702003240472,52.63652038574224],[-0.46611300110817,52.609161376953125],[-0.473888993263245,52.568050384521484],[-0.414335012435913,52.559688568115234],[-0.39832898974413,52.537429809570256],[-0.407130986451989,52.5118293762207],[-0.348055988550129,52.4900016784669],[-0.335557013750019,52.45555114746105],[-0.382777988910675,52.412220001220696],[-0.416388988494816,52.39582824707037],[-0.425832986831608,52.38249969482433],[-0.484445989131927,52.365550994873104],[-0.485556006431523,52.348609924316406],[-0.461389988660812,52.32360839843744],[-0.458727985620499,52.30881881713878],[-0.503054976463204,52.30305099487315],[-0.525277018547001,52.283329010009766],[-0.525277018547001,52.260551452636776],[-0.558610975742226,52.248050689697266],[-0.590556025505009,52.26610946655267],[-0.641389012336731,52.259159088134815],[-0.634442985057717,52.216110229492244],[-0.654443979263249,52.192501068115234],[-0.728887975215855,52.16165924072277],[-0.761943995952606,52.162498474121094],[-0.776111006736755,52.1469383239746],[-0.806666016578674,52.15222167968756],[-0.825833022594452,52.12749099731445],[-0.87833297252655,52.116100311279354],[-0.851666986942177,52.08583068847656],[-0.827777028083801,52.07221984863275],[-0.855832993984166,52.05860900878911],[-0.867379009723663,52.03387069702154]]]},"properties":{"ID_0":242,"ISO":"GB-NTH","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":70,"NAME_2":"Northamptonshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.454121947288513,55.07013702392589],[-1.493610978126469,55.04916000366211],[-1.559999942779484,55.05110931396479],[-1.586109042167664,55.06055068969721],[-1.688889026641789,55.07221984863287],[-1.697221994400024,55.033050537109375],[-1.728332042694035,55.02804946899419],[-1.766667008399963,54.98443984985363],[-1.799998998641968,54.97222137451172],[-1.821666955947819,54.92943954467779],[-1.850558042526132,54.91971969604498],[-1.820001006126347,54.90472030639643],[-1.866665959358215,54.84833145141601],[-1.904167056083679,54.83415985107427],[-1.920279026031437,54.84498977661144],[-1.993056058883667,54.86471939086914],[-2.082222938537598,54.830551147460994],[-2.129724025726318,54.836940765380916],[-2.133055925369263,54.82194137573236],[-2.160278081893921,54.80360031127941],[-2.191389083862305,54.80028152465825],[-2.211390018463135,54.77861022949219],[-2.272500991821289,54.792221069335994],[-2.305007934570312,54.78327178955089],[-2.361944913864135,54.810829162597656],[-2.400000095367375,54.84722137451166],[-2.5,54.8052711486817],[-2.533612012863102,54.808048248291016],[-2.56361198425293,54.82360839843749],[-2.566387891769409,54.85832977294922],[-2.59361004829401,54.88277053833019],[-2.570276975631657,54.89305114746094],[-2.559443950653076,54.91582870483398],[-2.541666984558105,54.92304992675787],[-2.565000057220459,54.95777130126959],[-2.591943979263306,54.96665954589844],[-2.56777906417841,54.986110687255916],[-2.559999942779541,55.01194000244146],[-2.481945991516113,55.039161682128906],[-2.505280017852783,55.08694076538086],[-2.547223091125375,55.079990386963],[-2.587500095367375,55.103050231933594],[-2.59777903556818,55.12360000610357],[-2.64083194732666,55.13222122192394],[-2.685632944107056,55.19132995605469],[-2.659723997116032,55.21638107299799],[-2.626111030578613,55.22333145141607],[-2.618335008621216,55.244159698486385],[-2.628334999084473,55.26554870605469],[-2.569998979568425,55.29222106933594],[-2.55222392082203,55.31555175781256],[-2.522778987884521,55.3255500793457],[-2.463057041168213,55.36111068725597],[-2.427778005599919,55.366939544677734],[-2.402225017547551,55.361381530761776],[-2.38499903678894,55.344158172607536],[-2.349721908569279,55.3647193908692],[-2.330832958221436,55.39833068847662],[-2.29416799545288,55.4030494689942],[-2.273334980010986,55.419719696044865],[-2.216109991073552,55.4252815246582],[-2.182499885559082,55.458889007568416],[-2.213887929916268,55.490268707275504],[-2.216944932937565,55.50944137573248],[-2.257777929305973,55.54943847656256],[-2.278332948684635,55.589721679687614],[-2.325834989547673,55.62221908569347],[-2.330925941467228,55.64054870605469],[-2.238610029220581,55.65193939208979],[-2.172498941421452,55.719158172607365],[-2.088495016098022,55.7584495544433],[-2.080277919769287,55.79444122314453],[-2.030278921127262,55.80439758300781],[-2.004723072052002,55.78985977172857],[-1.989168047904968,55.75541687011724],[-1.959720969200021,55.73291778564459],[-1.874722957611084,55.685695648193416],[-1.857499957084599,55.65625],[-1.829722046852055,55.638748168945426],[-1.781944036483765,55.641803741455135],[-1.764166951179504,55.627082824707145],[-1.693055987358093,55.60652923583979],[-1.628054976463318,55.55458450317383],[-1.639168024062997,55.54013824462902],[-1.610833048820496,55.5198593139649],[-1.616389989852905,55.49986267089855],[-1.591943979263306,55.49069595336913],[-1.592499971389771,55.439304351806754],[-1.578611016273442,55.43125152587885],[-1.57916700839985,55.4070816040039],[-1.610277056694031,55.38791656494152],[-1.584720969200077,55.34125137329107],[-1.550832986831665,55.3223609924317],[-1.571944952011108,55.275417327880916],[-1.560834050178471,55.253471374511825],[-1.533612012863159,55.2334709167481],[-1.50916600227356,55.198749542236385],[-1.525277018547058,55.15902709960949],[-1.491945028304997,55.12263870239263],[-1.496945023536625,55.10319519042963],[-1.454121947288513,55.07013702392589]]]},"properties":{"ID_0":242,"ISO":"GB-NBL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":71,"NAME_2":"Northumberland","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.17599701881403,53.29296112060547],[-1.134999990463257,53.32582855224615],[-1.144721031188965,53.337779998779354],[-1.113888025283813,53.356109619140625],[-1.118057012557927,53.378608703613274],[-1.066388964653015,53.41305923461914],[-1.013056993484383,53.40832901000982],[-0.977500021457672,53.43444061279308],[-0.969721972942352,53.46305084228527],[-0.919336974620819,53.48748016357416],[-0.890833973884526,53.47137832641601],[-0.904999017715397,53.45777130126953],[-0.785458028316498,53.45186996459972],[-0.788331985473633,53.43610000610351],[-0.811110019683838,53.4163818359375],[-0.773055016994419,53.368328094482536],[-0.787500023841858,53.347499847412166],[-0.762221992015839,53.33443832397461],[-0.742779016494694,53.290828704834034],[-0.770555019378662,53.26639175415045],[-0.766381978988591,53.23249053955078],[-0.72388702630991,53.22943878173828],[-0.70472198724741,53.24110031127941],[-0.656944990158081,53.2313804626466],[-0.66444498300541,53.20333099365234],[-0.692220985889435,53.203891754150504],[-0.730831980705148,53.191669464111385],[-0.745001018047333,53.17082977294933],[-0.706112027168274,53.160270690918026],[-0.710831999778748,53.1402702331543],[-0.70305597782135,53.09666061401372],[-0.7119420170784,53.08304977416992],[-0.688610970973912,53.04972076416026],[-0.738888978958073,53.036380767822315],[-0.781387984752655,53.00609970092785],[-0.78638797998417,52.98666000366222],[-0.766695976257324,52.96121978759777],[-0.791666984558105,52.957500457763786],[-0.819445013999882,52.9413795471192],[-0.821111023426056,52.92916107177745],[-0.849722981452885,52.893051147460994],[-0.968887984752655,52.8255500793457],[-0.979444980621338,52.807781219482536],[-1.052222013473454,52.803890228271534],[-1.10000205039978,52.808048248291016],[-1.133610010147038,52.79193878173833],[-1.166388034820556,52.78610992431652],[-1.188184022903386,52.77230834960943],[-1.225556969642582,52.77804946899413],[-1.259721040725594,52.79916000366222],[-1.268056035041752,52.81916046142578],[-1.262778043746891,52.861660003662166],[-1.23259699344635,52.88074111938482],[-1.271111965179387,52.898891448974666],[-1.269443988799992,52.919170379638786],[-1.282500982284546,52.946109771728516],[-1.283889055252018,52.98582839965826],[-1.321388006210213,53.0130500793457],[-1.329723000526371,53.050281524658196],[-1.291944026947021,53.08388900756841],[-1.312777042388916,53.13109970092773],[-1.309720993041992,53.14278030395508],[-1.276389002799988,53.154159545898494],[-1.243888020515385,53.15166091918957],[-1.230000972747746,53.162498474121094],[-1.190834045410156,53.1677703857423],[-1.18944597244257,53.20972061157226],[-1.195832967758122,53.232498168945305],[-1.160277962684575,53.262210845947315],[-1.160277962684575,53.285831451416016],[-1.17599701881403,53.29296112060547]],[[-1.142567038536072,52.89261627197265],[-1.10401797294611,52.918991088867244],[-1.103003025054875,52.94029617309581],[-1.135465025901738,52.98188781738281],[-1.160825014114266,52.99507522583019],[-1.192271947860718,52.99203109741222],[-1.217632055282479,52.96971511840832],[-1.228793025016671,52.91595077514648],[-1.200387954711914,52.87942886352545],[-1.170971989631596,52.872329711914176],[-1.142567038536072,52.89261627197265]]]},"properties":{"ID_0":242,"ISO":"GB-NTT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":72,"NAME_2":"Nottinghamshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.142567038536072,52.89261627197265],[-1.170971989631596,52.872329711914176],[-1.200387954711914,52.87942886352545],[-1.228793025016671,52.91595077514648],[-1.217632055282479,52.96971511840832],[-1.192271947860718,52.99203109741222],[-1.160825014114266,52.99507522583019],[-1.135465025901738,52.98188781738281],[-1.103003025054875,52.94029617309581],[-1.10401797294611,52.918991088867244],[-1.142567038536072,52.89261627197265]]]},"properties":{"ID_0":242,"ISO":"GB-NGM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":73,"NAME_2":"Nottingham","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.891583979129791,51.54838180541992],[-0.890277981758061,51.5286102294923],[-0.868332028388977,51.50194168090826],[-0.907221019268036,51.47499847412121],[-0.97222197055811,51.448051452636776],[-0.983610987663269,51.44916915893566],[-1.063611030578613,51.48527908325195],[-1.100556015968323,51.48917007446295],[-1.132778048515206,51.51082992553711],[-1.148056983947697,51.53165817260748],[-1.184167981147709,51.52304840087902],[-1.226943016052246,51.53332901000976],[-1.264443993568364,51.53248977661144],[-1.289721012115422,51.54861068725586],[-1.321943998336792,51.549999237060604],[-1.338889002799988,51.53722000122076],[-1.365556955337524,51.544998168945426],[-1.388056993484497,51.536109924316406],[-1.418334960937386,51.54027938842779],[-1.448889017105103,51.53277969360351],[-1.486667990684452,51.54693984985357],[-1.534168004989624,51.550548553466854],[-1.567499995231572,51.54582977294921],[-1.584468007087594,51.517429351806754],[-1.602777004241887,51.52027130126953],[-1.646667957305908,51.568599700927734],[-1.67527794837946,51.572780609130795],[-1.677778959274292,51.599720001220696],[-1.659721016883793,51.611110687255966],[-1.654441952705383,51.63193893432617],[-1.68388903141016,51.650550842285156],[-1.683266997337284,51.67866897583008],[-1.647222042083683,51.68638992309576],[-1.676110029220581,51.70471954345703],[-1.692499041557312,51.76250076293951],[-1.709167003631535,51.77499008178711],[-1.679167032241764,51.797218322753906],[-1.675832033157349,51.855270385742244],[-1.657778978347778,51.88304901123047],[-1.63749897480011,51.893878936767635],[-1.64611196517933,51.90999984741205],[-1.612777948379517,51.93165969848638],[-1.618888020515385,51.94499969482416],[-1.656944990158081,51.95915985107421],[-1.652547955513,51.983989715576286],[-1.603888988494816,51.954990386963004],[-1.586109042167664,51.96722030639643],[-1.549721002578735,51.96915817260742],[-1.545554041862488,51.984718322753906],[-1.509721994400024,51.998329162597706],[-1.495277047157231,52.060829162597656],[-1.470278978347778,52.08861160278326],[-1.436388015747013,52.09304809570312],[-1.407500028610229,52.107769012451286],[-1.379444003105163,52.09194183349615],[-1.351112008094731,52.104438781738395],[-1.373610019683838,52.11832809448242],[-1.341390013694763,52.134441375732536],[-1.321192026138306,52.161590576171925],[-1.237221956253052,52.096111297607536],[-1.293889999389648,52.07138824462896],[-1.296666026115417,52.03889083862316],[-1.264999985694828,51.97972106933588],[-1.183611989021244,51.978328704833984],[-1.138334035873299,51.989719390869254],[-1.108158946037292,52.00925827026373],[-1.053056001663151,51.992771148681754],[-1.082499980926457,51.95249938964843],[-1.047220945358276,51.939720153808594],[-1.075834035873356,51.919441223144474],[-1.081665992736816,51.89776992797862],[-1.062777042388916,51.87860870361339],[-1.047220945358276,51.83304977416998],[-1.069445013999939,51.823879241943416],[-1.1161110401153,51.83805084228515],[-1.108610033988953,51.7797203063966],[-1.079722046852112,51.773048400878956],[-1.065834999084473,51.7513885498048],[-1.040277004241943,51.74332809448242],[-1.018057942390385,51.75249099731445],[-0.965555012226048,51.756099700927734],[-0.911945998668671,51.740550994873104],[-0.884442985057831,51.71638107299816],[-0.876667022705078,51.664440155029354],[-0.921387970447483,51.667221069335994],[-0.930554986000061,51.63471984863281],[-0.944446027278843,51.61915969848632],[-0.911945998668671,51.5897216796875],[-0.931945025920868,51.57054901123058],[-0.891583979129791,51.54838180541992]]]},"properties":{"ID_0":242,"ISO":"GB-OXF","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":74,"NAME_2":"Oxfordshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.414335012435913,52.559688568115234],[-0.473888993263245,52.568050384521484],[-0.46611300110817,52.609161376953125],[-0.490702003240472,52.63652038574224],[-0.466666013002396,52.64332962036144],[-0.401942998170853,52.63694000244151],[-0.314999014139175,52.663600921630795],[-0.261945009231567,52.647499084472656],[-0.19946500658989,52.656269073486385],[-0.183054998517036,52.6419410705567],[-0.137500002980175,52.63861083984381],[-0.101388998329639,52.6519393920899],[-0.049467999488115,52.65792465209961],[-0.049467999488115,52.598758697509766],[-0.062739998102188,52.58548355102544],[-0.140716001391411,52.57719039916986],[-0.215372994542065,52.552303314209034],[-0.238598003983498,52.532394409179744],[-0.286709994077682,52.504192352294915],[-0.326526999473515,52.50751113891607],[-0.397866010665837,52.55894088745117],[-0.414335012435913,52.559688568115234]]]},"properties":{"ID_0":242,"ISO":"GB-PTE","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":75,"NAME_2":"Peterborough","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.124557971954289,50.34541702270508],[-4.125277996063232,50.36402893066406],[-4.163054943084717,50.36069488525396],[-4.204721927642765,50.39986038208013],[-4.184873104095402,50.42597198486339],[-4.154482841491642,50.43552398681635],[-4.124504089355469,50.43552398681635],[-4.041804790496826,50.39934539794921],[-4.038702964782658,50.378669738769645],[-4.100728034973088,50.36006164550781],[-4.124557971954289,50.34541702270508]]]},"properties":{"ID_0":242,"ISO":"GB-PLY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":76,"NAME_2":"Plymouth","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.037964105606022,50.71763992309576],[-2.020304918289127,50.72851943969732],[-2.006184101104679,50.762943267822266],[-1.994711041450443,50.770004272460994],[-1.941753029823303,50.76559066772455],[-1.920369982719308,50.75004577636713],[-1.921450018882751,50.71969223022461],[-1.885833978652954,50.71349334716797],[-1.932499051094055,50.698471069335994],[-1.953611016273498,50.7095832824707],[-2.014720916748047,50.71041488647472],[-2.037964105606022,50.71763992309576]]]},"properties":{"ID_0":242,"ISO":"GB-POL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":77,"NAME_2":"Poole","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.1036119461059,50.84469223022472],[-1.074637055397034,50.85788726806646],[-0.998512029647827,50.85084152221691],[-0.996389985084477,50.84014892578131],[-1.044167041778564,50.82902908325201],[-1.032500982284489,50.78625106811523],[-1.089722990989685,50.777362823486435],[-1.109722018241882,50.7904167175293],[-1.098610997199955,50.82069396972662],[-1.1036119461059,50.84469223022472]]],[[[-0.97083401679987,50.83791732788086],[-0.951943993568364,50.82847213745123],[-0.943055987358093,50.77597045898449],[-1.023612022399902,50.78625106811523],[-0.989723026752472,50.804027557373104],[-0.991388976573944,50.82597351074219],[-0.97083401679987,50.83791732788086]]]]},"properties":{"ID_0":242,"ISO":"GB-POR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":78,"NAME_2":"Portsmouth","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.074619002640361,51.542129516601676],[0.053291000425872,51.56283187866222],[0.023910999298096,51.5543327331543],[0.020289000123739,51.58667373657238],[0.02760099992156,51.62652587890625],[0.083888001739979,51.601100921630916],[0.112222999334449,51.61555099487305],[0.148513004183826,51.61749649047857],[0.152421995997429,51.59897994995117],[0.137917995452995,51.591773986816406],[0.127525001764411,51.55410003662115],[0.074619002640361,51.542129516601676]]]},"properties":{"ID_0":242,"ISO":"GB-RDB","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":79,"NAME_2":"Redbridge","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.778769016265755,54.55736160278332],[-0.814722001552525,54.540550231933594],[-0.837777972221374,54.5158309936524],[-0.838334023952427,54.48722076416021],[-0.880833029746896,54.495830535888665],[-0.932501018047333,54.48666000366211],[-0.976109981536865,54.5],[-1.029168009757995,54.49248886108404],[-1.07444596290577,54.505001068115234],[-1.114166975021305,54.49805068969738],[-1.179504990577698,54.503860473632926],[-1.21761405467987,54.55353927612316],[-1.218665003776493,54.57542419433588],[-1.211668014526367,54.606704711914006],[-1.190773010253849,54.621528625488395],[-1.123610973358097,54.63041687011719],[-0.970278024673405,54.58680725097662],[-0.925831973552704,54.58708190917969],[-0.899722993373871,54.57347106933605],[-0.852500975131989,54.571804046630916],[-0.809166014194432,54.559028625488224],[-0.778769016265755,54.55736160278332]]]},"properties":{"ID_0":242,"ISO":"GB-RCC","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":80,"NAME_2":"Redcar and Cleveland","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.306676000356674,51.38444137573247],[-0.343333005905151,51.394168853759815],[-0.384377986192703,51.413726806640675],[-0.368874996900558,51.429012298583984],[-0.366232007741928,51.450191497802734],[-0.314743995666447,51.45487976074219],[-0.306046992540359,51.46807479858393],[-0.270539999008179,51.4798583984375],[-0.236507996916771,51.48230743408203],[-0.213793992996216,51.4719123840332],[-0.245690003037453,51.45571517944336],[-0.244277000427246,51.43251037597656],[-0.279599010944366,51.423812866210994],[-0.298146992921772,51.410175323486385],[-0.306676000356674,51.38444137573247]]]},"properties":{"ID_0":242,"ISO":"GB-RIC","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":81,"NAME_2":"Richmond upon Thames","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.651041984558105,52.747573852539176],[-0.563609004020691,52.740550994873104],[-0.526389002799931,52.72499847412114],[-0.51555597782135,52.70972061157237],[-0.415279000997543,52.68666076660162],[-0.4497210085392,52.661659240722656],[-0.495279014110508,52.65055084228515],[-0.490702003240472,52.63652038574224],[-0.521109998226109,52.62388992309581],[-0.548057019710541,52.590549468994084],[-0.681666016578674,52.54304885864252],[-0.696942985057831,52.52304840087896],[-0.729862987995148,52.50671386718744],[-0.764853000640869,52.53264999389654],[-0.800069987773895,52.59553527832037],[-0.800069987773895,52.673511505126896],[-0.805100023746377,52.70872879028326],[-0.782460987567845,52.71879196166997],[-0.727120995521545,52.7162742614746],[-0.651041984558105,52.747573852539176]]]},"properties":{"ID_0":242,"ISO":"GB-RUT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":82,"NAME_2":"Rutland","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.957314968109017,52.34125900268549],[-2.97555494308466,52.34637832641613],[-3.021944046020508,52.34027099609375],[-3.067778110504037,52.34498977661138],[-3.103888034820499,52.368610382080135],[-3.140279054641724,52.38388824462885],[-3.166388988494816,52.403610229492244],[-3.196110963821411,52.41027069091797],[-3.214167118072396,52.43138885498047],[-3.214167118072396,52.4511108398438],[-3.196110963821411,52.46722030639654],[-3.149446010589542,52.478328704834034],[-3.108613014221191,52.494438171386776],[-3.029444932937622,52.496940612793075],[-3.019721984863224,52.51361083984375],[-2.991389989852905,52.51916885375988],[-2.974445104598999,52.54193878173834],[-3.01083397865284,52.569721221923935],[-3.068056106567383,52.54610061645502],[-3.086389064788818,52.52888107299816],[-3.125,52.56610870361334],[-3.124166011810303,52.582218170166016],[-3.080554962158146,52.60110092163086],[-3.063889980316162,52.63832855224604],[-3.02916693687439,52.6533317565918],[-3.032778978347778,52.682220458984375],[-3.011111974716073,52.711658477783146],[-2.968888044357186,52.7161102294923],[-2.957221031188908,52.73276901245123],[-2.992222070693912,52.74528121948242],[-3.001111030578613,52.75777053833019],[-3.058888912200928,52.7658309936524],[-3.075521945953369,52.781478881835994],[-3.11388897895813,52.784439086914055],[-3.140832901000977,52.796390533447266],[-3.155833959579468,52.82194137573242],[-3.11916804313654,52.85610961914074],[-3.131666898727417,52.883331298828175],[-3.096668004989624,52.89416885375988],[-3.089446067810059,52.913059234619254],[-2.993890047073364,52.95360946655279],[-2.962729930877686,52.95272827148443],[-2.92833304405201,52.93278121948242],[-2.879168033599854,52.9419403076173],[-2.853610038757324,52.939720153808594],[-2.783334970474129,52.898609161376946],[-2.75,52.91471862792969],[-2.71972203254694,52.91722106933593],[-2.716943979263249,52.946109771728516],[-2.727740049362126,52.96660995483404],[-2.622776985168457,52.98582839965826],[-2.589446067810059,52.9769401550294],[-2.57778000831604,52.95360946655279],[-2.527224063873234,52.94721984863287],[-2.512778997421208,52.96165847778332],[-2.478888034820557,52.95415878295904],[-2.430835008621216,52.96500015258788],[-2.423609972000065,52.9786109924317],[-2.378781080245972,52.98960876464855],[-2.364167928695621,52.9802703857423],[-2.375277996063232,52.94971084594726],[-2.419167995452881,52.9363899230957],[-2.442501068115234,52.91276931762701],[-2.449445962905827,52.88555145263672],[-2.434444904327393,52.86804962158209],[-2.36583399772644,52.884159088134815],[-2.378057003021127,52.838050842285156],[-2.396553993225098,52.82164764404297],[-2.473174095153695,52.798183441162166],[-2.53649806976307,52.784614562988224],[-2.588511943817139,52.767650604248104],[-2.646181106567383,52.75860595703131],[-2.663141965866089,52.74277496337896],[-2.640526056289559,52.72129058837885],[-2.460736989974976,52.61725997924805],[-2.424552917480412,52.60708236694347],[-2.396282911300602,52.64100646972656],[-2.339746952056885,52.729206085205014],[-2.323899984359741,52.747806549072315],[-2.305557012557927,52.73389053344732],[-2.310276985168457,52.70055007934582],[-2.293056011199951,52.6802711486817],[-2.231389999389535,52.66917037963867],[-2.226943016052246,52.63666915893566],[-2.236943960189762,52.61249923706054],[-2.266387939453125,52.60361099243169],[-2.303333044052124,52.608890533447266],[-2.310554981231689,52.591381072998104],[-2.269165992736816,52.57749938964844],[-2.2511110305785,52.56248855590832],[-2.267221927642822,52.54832839965826],[-2.255002021789494,52.51832962036138],[-2.284168004989624,52.50500106811529],[-2.298610925674382,52.47555923461914],[-2.286118984222298,52.444629669189396],[-2.304723024368229,52.43082809448248],[-2.339446067810002,52.43444061279297],[-2.350486040115243,52.423778533935604],[-2.327501058578491,52.38972091674805],[-2.390558004379272,52.383609771728516],[-2.410279035568237,52.36333084106456],[-2.46972107887268,52.35721969604503],[-2.46777701377863,52.33721923828125],[-2.493057012557927,52.32666015624994],[-2.525279998779297,52.33972167968756],[-2.546945095062199,52.330280303955135],[-2.555556058883667,52.30860900878906],[-2.59777903556818,52.30527114868164],[-2.616389989852905,52.324169158935604],[-2.64086389541626,52.33226013183594],[-2.66527795791626,52.329719543456974],[-2.674998044967595,52.30638885498058],[-2.694999933242798,52.30360031127935],[-2.746109962463379,52.3244400024414],[-2.731945037841797,52.35139083862304],[-2.781388044357243,52.35277938842779],[-2.80333399772644,52.380268096923885],[-2.838888883590698,52.391391754150504],[-2.932777881622258,52.34471893310552],[-2.957314968109017,52.34125900268549]]]},"properties":{"ID_0":242,"ISO":"GB-SHR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":83,"NAME_2":"Shropshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":"Salop"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.991249084472656,51.32125091552746],[-2.975832939147892,51.29333114624035],[-2.929721117019596,51.29916000366216],[-2.889445066452026,51.28638076782232],[-2.879446029663086,51.30167007446295],[-2.837223052978515,51.29444122314453],[-2.788888931274357,51.29721832275402],[-2.811944961547852,51.327499389648494],[-2.712670087814331,51.31989288330084],[-2.668334007263184,51.31193923950201],[-2.62083196640009,51.28305053710943],[-2.591387987136727,51.28305053710943],[-2.539444923400879,51.29999923706065],[-2.493057012557927,51.289440155029354],[-2.488332986831608,51.27582931518555],[-2.458056926727294,51.27304840087885],[-2.42305588722229,51.28221893310547],[-2.40500092506403,51.29943847656256],[-2.34583401679987,51.29999923706065],[-2.290097951889038,51.324958801269524],[-2.26694393157959,51.316379547119254],[-2.271110057830811,51.295829772949276],[-2.242779016494751,51.28527069091796],[-2.236109972000065,51.26416015625006],[-2.252501010894775,51.24472045898443],[-2.266109943389892,51.20888900756836],[-2.348891019821167,51.1177711486817],[-2.347500085830688,51.09498977661127],[-2.321666002273502,51.08332824707031],[-2.335279941558838,51.06472015380871],[-2.324166059493962,51.04222106933605],[-2.364167928695621,51.016391754150504],[-2.370556116104126,50.9988899230957],[-2.337776899337769,50.98305892944336],[-2.40055608749384,50.9652709960938],[-2.432497978210449,50.970550537109375],[-2.441112995147705,50.95277023315429],[-2.47055792808527,50.96277999877941],[-2.495832920074406,50.99528121948242],[-2.541944980621338,51.0019416809082],[-2.549998998641911,50.97861099243175],[-2.598889112472534,50.97639083862305],[-2.595000982284489,50.95750045776367],[-2.616111993789559,50.911380767822266],[-2.614444017410221,50.88555145263677],[-2.653054952621346,50.88666915893565],[-2.714724063873177,50.86804962158209],[-2.75888895988453,50.867221832275504],[-2.788888931274357,50.85472106933605],[-2.920279026031494,50.841110229492244],[-2.948494911193791,50.82255172729498],[-2.962778091430664,50.8505592346192],[-3.048333883285466,50.87778091430664],[-3.047499895095768,50.90583038330089],[-3.089998960494995,50.90805053710943],[-3.147500038146973,50.896938323974666],[-3.178056001663208,50.91471862792968],[-3.157222032546997,50.948608398437436],[-3.221667051315308,50.943889617920036],[-3.268332958221378,50.94749069213873],[-3.321388959884643,50.978881835937614],[-3.370556116104069,50.98083114624029],[-3.373888015747013,51.008609771728516],[-3.422224044799748,51.02944183349621],[-3.444443941116333,51.0263786315918],[-3.474999904632568,51.03610992431652],[-3.50805401802063,51.03054809570318],[-3.528887987136841,51.00722122192394],[-3.59972095489502,51.011940002441406],[-3.607778072357178,51.02444076538086],[-3.588057041168212,51.054721832275504],[-3.596111059188843,51.06304931640619],[-3.636389970779362,51.06222152709961],[-3.678333044052124,51.08250045776373],[-3.71555590629572,51.08304977416998],[-3.750554084777775,51.10694122314453],[-3.774724960327035,51.111110687255916],[-3.825834035873413,51.14194107055664],[-3.821110010147094,51.17721939086914],[-3.770277976989746,51.17332839965831],[-3.72416710853571,51.1786003112793],[-3.714181900024414,51.23208236694347],[-3.616389036178588,51.21791839599604],[-3.579165935516357,51.231529235839844],[-3.535279035568237,51.231529235839844],[-3.446389913558903,51.209026336670036],[-3.409723043441772,51.18347167968756],[-3.36694407463068,51.185138702392635],[-3.274723052978459,51.18041610717785],[-3.200278043746891,51.20236206054693],[-3.157500982284432,51.20847320556646],[-3.098612070083561,51.20847320556646],[-3.057498931884708,51.20319366455089],[-2.999722957611027,51.23236083984386],[-3.016943931579533,51.26041793823242],[-3.01083397865284,51.32152938842785],[-2.991249084472656,51.32125091552746]]]},"properties":{"ID_0":242,"ISO":"GB-SOM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":84,"NAME_2":"Somerset","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.683054924011174,51.53552627563482],[-2.664721965789794,51.57374954223632],[-2.62972092628479,51.60569381713873],[-2.583611965179443,51.62930679321289],[-2.575277090072632,51.649028778076286],[-2.544723033905029,51.67605972290044],[-2.487222909927254,51.65972137451172],[-2.478888034820557,51.63916015625005],[-2.444998979568368,51.64833068847662],[-2.37916707992548,51.635829925537166],[-2.384166955947819,51.603050231933594],[-2.36499905586237,51.594718933105526],[-2.3438880443573,51.60860061645519],[-2.3002769947052,51.60667037963873],[-2.271603107452279,51.57722091674805],[-2.245275974273682,51.518608093261776],[-2.280555009841862,51.509990692138786],[-2.313333988189697,51.49388885498058],[-2.286946058273315,51.4813804626466],[-2.280632972717285,51.420318603515625],[-2.397656917572021,51.40290451049804],[-2.503379106521606,51.405582427978565],[-2.522646903991642,51.41886901855474],[-2.518100023269653,51.47249603271496],[-2.571633100509644,51.48721694946294],[-2.666650056838932,51.520671844482536],[-2.683054924011174,51.53552627563482]]]},"properties":{"ID_0":242,"ISO":"GB-SGC","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":85,"NAME_2":"South Gloucestershire","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.919336974620819,53.48748016357416],[-0.969721972942352,53.46305084228527],[-0.977500021457672,53.43444061279308],[-1.013056993484383,53.40832901000982],[-1.066388964653015,53.41305923461914],[-1.118057012557927,53.378608703613274],[-1.113888025283813,53.356109619140625],[-1.144721031188965,53.337779998779354],[-1.134999990463257,53.32582855224615],[-1.17599701881403,53.29296112060547],[-1.242499947547913,53.290828704834034],[-1.281944990158081,53.2994384765625],[-1.31138896942133,53.3138885498048],[-1.332499027252197,53.29888153076172],[-1.380835056304932,53.306938171386776],[-1.393610954284554,53.32527160644537],[-1.43194401264185,53.32360839843761],[-1.458889961242562,53.306938171386776],[-1.531389951705933,53.28971862792969],[-1.570556998252869,53.3049888610841],[-1.610002040863037,53.30582809448242],[-1.582777023315373,53.326389312744254],[-1.592499971389771,53.337779998779354],[-1.650277972221317,53.35194015502941],[-1.646389961242676,53.3766593933106],[-1.6905579566955,53.38750076293945],[-1.701665997505188,53.40361022949218],[-1.734166979789734,53.41083145141607],[-1.731112957000676,53.441108703613395],[-1.787222981452828,53.46860885620123],[-1.795554995536747,53.496940612793026],[-1.816110968589726,53.51610946655279],[-1.80666601657856,53.531940460205135],[-1.771667957305851,53.53527069091802],[-1.714722990989628,53.55472183227539],[-1.674445986747685,53.54999923706055],[-1.615278005599975,53.56333160400402],[-1.584167957305851,53.59777069091797],[-1.560556054115239,53.60667037963873],[-1.535277962684631,53.593608856201286],[-1.485000014305115,53.59222030639654],[-1.448055028915405,53.600830078125],[-1.423889994621277,53.59498977661133],[-1.367776989936829,53.59888076782232],[-1.344444036483708,53.58082962036144],[-1.305276989936772,53.57611083984386],[-1.24333202838892,53.59693908691417],[-1.229943990707341,53.620719909668026],[-1.199445009231511,53.63861083984381],[-1.073925971984863,53.647708892822315],[-0.996388018131199,53.65999984741205],[-0.94138997793192,53.656940460205014],[-0.860000014305058,53.63249969482422],[-0.860692024230957,53.612518310546925],[-0.860831022262516,53.581668853759766],[-0.904443025588932,53.57165908813488],[-0.872775971889382,53.54582977294933],[-0.881111025810242,53.52804946899414],[-0.914722025394383,53.53305053710949],[-0.943333983421326,53.51805114746094],[-0.919336974620819,53.48748016357416]]]},"properties":{"ID_0":242,"ISO":"GB-SY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":86,"NAME_2":"South Yorkshire","TYPE_2":"Metropolitan County","ENGTYPE_2":"Metropolitan County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.320162057876587,50.851249694824276],[-1.385277032852116,50.89125061035156],[-1.442500948905888,50.90791702270508],[-1.450752019882202,50.903751373291016],[-1.446804046630859,50.925556182861385],[-1.425657987594604,50.94106292724615],[-1.369269967079163,50.945293426513665],[-1.30865204334259,50.92132568359369],[-1.307240962982121,50.891723632812614],[-1.320162057876587,50.851249694824276]]]},"properties":{"ID_0":242,"ISO":"GB-STH","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":87,"NAME_2":"Southampton","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.968609988689422,51.80875015258789],[0.995278000831661,51.78958511352545],[0.947501003742218,51.774581909179744],[0.901944994926453,51.774028778076165],[0.907500028610343,51.79041671752924],[0.942499995231628,51.806804656982536],[0.968609988689422,51.80875015258789]]],[[[0.828007996082363,51.54264068603521],[0.785833001136893,51.52125167846691],[0.765277028083915,51.527637481689446],[0.644990980625209,51.536804199218864],[0.634675979614371,51.54315185546874],[0.648630976676998,51.56950759887706],[0.685837984085197,51.57725906372076],[0.820719003677482,51.54780197143549],[0.828007996082363,51.54264068603521]]]]},"properties":{"ID_0":242,"ISO":"GB-SOS","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":88,"NAME_2":"Southend-on-Sea","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":"Southend"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.066652998328209,51.42107391357422],[-0.074546001851559,51.41921997070318],[-0.091673001646996,51.443386077880916],[-0.080381996929646,51.46084976196288],[-0.103221997618618,51.502265930175895],[-0.0998620018363,51.507091522216854],[-0.077073000371399,51.50599288940441],[-0.034336999058667,51.50417709350586],[-0.023135000839716,51.4887351989746],[-0.047993998974448,51.47789382934576],[-0.034924998879433,51.44993972778331],[-0.066652998328209,51.42107391357422]]]},"properties":{"ID_0":242,"ISO":"GB-SWK","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":89,"NAME_2":"Southwark","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.580000996589661,52.6769409179688],[-1.600833058357239,52.656108856201286],[-1.631111025810242,52.64278030395519],[-1.623888015747013,52.626110076904354],[-1.634721040725708,52.58805084228521],[-1.665555953979435,52.575828552246094],[-1.753610014915466,52.579441070556754],[-1.777673006057739,52.575420379638786],[-1.815001010894719,52.590831756591854],[-1.855556011199895,52.57555007934576],[-1.875277042388859,52.58639144897461],[-1.896389007568303,52.617488861083984],[-1.897222995758,52.649440765380966],[-1.934445977210999,52.66527938842785],[-1.952499032020512,52.637500762939446],[-2.025834083557072,52.61610031127924],[-2.066389083862248,52.60805892944347],[-2.097500085830575,52.63415908813482],[-2.131109952926579,52.629440307617244],[-2.144166946411132,52.61278152465826],[-2.180556058883667,52.599998474121094],[-2.200557947158757,52.579441070556754],[-2.174444913864136,52.567501068115234],[-2.157500028610229,52.54639053344732],[-2.12611198425293,52.544441223144645],[-2.134443998336735,52.5152702331543],[-2.177500009536743,52.5011100769043],[-2.158890008926335,52.47748947143555],[-2.153856039047241,52.423000335693416],[-2.171113014221191,52.421661376953125],[-2.220556974410954,52.43555068969732],[-2.260555982589664,52.43638992309582],[-2.286118984222298,52.444629669189396],[-2.298610925674382,52.47555923461914],[-2.284168004989624,52.50500106811529],[-2.255002021789494,52.51832962036138],[-2.267221927642822,52.54832839965826],[-2.2511110305785,52.56248855590832],[-2.269165992736816,52.57749938964844],[-2.310554981231689,52.591381072998104],[-2.303333044052124,52.608890533447266],[-2.266387939453125,52.60361099243169],[-2.236943960189762,52.61249923706054],[-2.226943016052246,52.63666915893566],[-2.231389999389535,52.66917037963867],[-2.293056011199951,52.6802711486817],[-2.310276985168457,52.70055007934582],[-2.305557012557927,52.73389053344732],[-2.323899984359741,52.747806549072315],[-2.368890047073364,52.781940460205135],[-2.368334054946899,52.80693817138666],[-2.396553993225098,52.82164764404297],[-2.378057003021127,52.838050842285156],[-2.36583399772644,52.884159088134815],[-2.434444904327393,52.86804962158209],[-2.449445962905827,52.88555145263672],[-2.442501068115234,52.91276931762701],[-2.419167995452881,52.9363899230957],[-2.375277996063232,52.94971084594726],[-2.364167928695621,52.9802703857423],[-2.378781080245972,52.98960876464855],[-2.366389989852848,53.00027084350586],[-2.37388801574707,53.03722000122081],[-2.36583399772644,53.0522193908692],[-2.33555793762207,53.056110382080185],[-2.305557012557927,53.0791587829591],[-2.272222995757943,53.07749938964849],[-2.243597030639535,53.08589172363286],[-2.228863954544067,53.05550003051769],[-2.201549053192082,52.963798522949276],[-2.178138017654362,52.94526672363281],[-2.111800909042358,52.94038772583008],[-2.090338945388794,52.96575164794927],[-2.09814190864563,52.98916244506847],[-2.148870944976807,53.05159759521496],[-2.191793918609562,53.083789825439396],[-2.20491099357605,53.113666534423885],[-2.157778024673462,53.14749908447271],[-2.134721994399968,53.15027999877935],[-2.140001058578491,53.16999816894537],[-2.06833291053772,53.165828704833984],[-2.030555009841919,53.18471908569335],[-2.005557060241642,53.18610000610357],[-1.976848959922791,53.207370758056754],[-1.952499032020512,53.2138786315918],[-1.932224035263062,53.194999694824276],[-1.856667995452824,53.17638015747075],[-1.824167013168335,53.1630592346192],[-1.798889994621277,53.14165878295904],[-1.799445986747742,53.118610382080135],[-1.771667957305851,53.09027099609381],[-1.776111960411015,53.07083129882818],[-1.763888955116272,53.03194046020508],[-1.747499942779484,53.022220611572266],[-1.74555504322052,53],[-1.75777804851532,52.98249816894537],[-1.812222003936768,52.96139144897461],[-1.816944956779423,52.92998886108404],[-1.84027898311615,52.9244384765625],[-1.840831995010319,52.90472030639648],[-1.823889017105103,52.875549316406364],[-1.754999995231572,52.86610031127941],[-1.720834016799927,52.84527969360357],[-1.630555033683777,52.84111022949219],[-1.590831995010376,52.810829162597706],[-1.615000009536743,52.79804992675787],[-1.629166960716191,52.77222061157232],[-1.672500014305115,52.758331298828125],[-1.700348973274231,52.726200103759766],[-1.645833969116097,52.70666885375988],[-1.639999985694828,52.685001373291016],[-1.583055019378605,52.685001373291016],[-1.580000996589661,52.6769409179688]]]},"properties":{"ID_0":242,"ISO":"GB-STS","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":90,"NAME_2":"Staffordshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.250823020935002,54.48669433593761],[-1.326665997505074,54.4622192382813],[-1.361945033073425,54.467498779296875],[-1.369721055030766,54.48888015747082],[-1.408334970474243,54.49248886108404],[-1.431946039199829,54.48117065429699],[-1.411944985389652,54.51250076293951],[-1.434447050094548,54.53499984741216],[-1.424721956253052,54.554988861083984],[-1.401111960411072,54.56444168090832],[-1.396942973136845,54.584720611572266],[-1.412564992904663,54.60003280639654],[-1.38845598697651,54.62672805786138],[-1.318693995475712,54.61167907714844],[-1.211668014526367,54.606704711914006],[-1.218665003776493,54.57542419433588],[-1.259423017501717,54.5775299072265],[-1.293007969856262,54.54463195800787],[-1.299860954284611,54.51515960693354],[-1.292322039604187,54.502136230468864],[-1.250823020935002,54.48669433593761]]]},"properties":{"ID_0":242,"ISO":"GB-STT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":91,"NAME_2":"Stockton-on-Tees","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":"Stockton"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.243597030639535,53.08589172363286],[-2.20491099357605,53.113666534423885],[-2.191793918609562,53.083789825439396],[-2.148870944976807,53.05159759521496],[-2.09814190864563,52.98916244506847],[-2.090338945388794,52.96575164794927],[-2.111800909042358,52.94038772583008],[-2.178138017654362,52.94526672363281],[-2.201549053192082,52.963798522949276],[-2.228863954544067,53.05550003051769],[-2.243597030639535,53.08589172363286]]]},"properties":{"ID_0":242,"ISO":"GB-STE","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":92,"NAME_2":"Stoke-on-Trent","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.063611030578613,51.948875427246094],[1.062499046325683,51.94891738891595],[1.058055043220634,51.94908523559582],[1.019443988800049,51.95055007934576],[0.96805602312088,51.963878631591854],[0.914444029331264,51.96833038330078],[0.865832984447479,51.9594383239746],[0.787778973579464,51.954719543457145],[0.721665978431815,52.01194000244152],[0.715255022049007,52.04413986206054],[0.701112985611075,52.06750106811535],[0.678332984447479,52.07722091674815],[0.636111974716243,52.07500076293945],[0.524999022483882,52.0483283996582],[0.489167004823685,52.069160461425895],[0.408932000398693,52.05936050415039],[0.398056000471172,52.104438781738395],[0.427500009536743,52.12916946411133],[0.431665986776409,52.145000457763665],[0.46166700124752,52.16389083862305],[0.498611003160477,52.160831451416016],[0.498333007097301,52.177219390869084],[0.517220973968563,52.210548400878906],[0.50472199916851,52.2283287048341],[0.462222993373985,52.2397193908692],[0.426943987608013,52.2380485534669],[0.392498999834118,52.22499847412104],[0.349721997976417,52.25777053833007],[0.382777005434036,52.276939392089844],[0.430554002523422,52.253879547119254],[0.495555013418311,52.264999389648544],[0.510555982589665,52.28165817260748],[0.472499012947196,52.30833053588873],[0.434166997671127,52.309719085693416],[0.446667999029103,52.34000015258795],[0.419167995452938,52.35583114624029],[0.389721006155128,52.39027023315424],[0.392776995897293,52.40805053710949],[0.447221010923329,52.43222045898443],[0.491943001747188,52.43138885498047],[0.558332026004791,52.44638824462902],[0.638611972332058,52.43972015380871],[0.676388978958244,52.44694137573242],[0.709721028804893,52.43748855590826],[0.671109974384308,52.41971969604498],[0.670000016689301,52.39889144897461],[0.693333983421326,52.38916015625006],[0.733888983726501,52.38777160644537],[0.751389980316162,52.3794403076173],[0.787778973579464,52.38166046142578],[0.837776005268211,52.395271301269645],[0.881389975547791,52.382770538330135],[0.931389987468776,52.38222122192394],[0.973333001136893,52.359989166259766],[1.034999012947196,52.374160766601506],[1.077221989631596,52.3652687072755],[1.124166011810303,52.364719390869084],[1.202499985694999,52.353881835937614],[1.234722018241882,52.36054992675787],[1.274443030357418,52.38193893432617],[1.323611021041813,52.383609771728516],[1.363052964210567,52.42248916625988],[1.411388993263301,52.43693923950201],[1.44222104549408,52.46139144897472],[1.464444994926453,52.45138931274419],[1.490000963211173,52.458049774169915],[1.519443035125846,52.4511108398438],[1.598055005073547,52.46944046020508],[1.640555977821464,52.453609466552734],[1.66055595874792,52.459159851074276],[1.700278997421265,52.4877815246582],[1.675832986831779,52.4927711486817],[1.65305495262146,52.51082992553711],[1.663334012031555,52.53194046020519],[1.690832018852234,52.54222106933594],[1.741943955421448,52.530696868896484],[1.76249897480011,52.47652816772461],[1.736945986747855,52.45264053344721],[1.727501034736576,52.3948593139649],[1.692499995231685,52.352085113525504],[1.680276989936829,52.3218040466308],[1.646944999694938,52.29763793945324],[1.632500052452144,52.275695800781364],[1.622498989105281,52.20402908325201],[1.581943988800106,52.08763885498058],[1.565832972526664,52.079029083251946],[1.490277051925716,52.05764007568365],[1.443611979484672,52.02597045898443],[1.430279016494808,52.003749847412166],[1.39416599273693,51.98652648925792],[1.370278000831661,51.96513748168945],[1.312500000000114,51.953750610351676],[1.282500028610343,51.968471527099666],[1.186388015747127,51.95541763305664],[1.176944017410335,51.96541595458979],[1.127500057220573,51.953750610351676],[1.089166998863334,51.95847320556646],[1.063611030578613,51.948875427246094]]]},"properties":{"ID_0":242,"ISO":"GB-SFK","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":93,"NAME_2":"Suffolk","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.06278099864727,51.135879516601676],[0.021364999935145,51.135879516601676],[-0.053334001451731,51.13528060913086],[-0.076110996305943,51.14139175415039],[-0.119167000055256,51.134441375732536],[-0.14138799905777,51.15222167968755],[-0.181944996118546,51.161380767822266],[-0.302500009536743,51.116661071777344],[-0.351666003465596,51.11500167846691],[-0.420556992292404,51.096939086914176],[-0.475555002689305,51.09527969360357],[-0.541387975215912,51.07915878295893],[-0.60166597366333,51.07611083984381],[-0.626668989658299,51.084438323974666],[-0.688054978847504,51.07083129882824],[-0.731109976768494,51.078048706054744],[-0.753660023212376,51.08871078491211],[-0.746945023536682,51.11138153076177],[-0.779999971389714,51.12360000610346],[-0.79083198308939,51.1469383239746],[-0.823611021041813,51.15166091918945],[-0.824445009231511,51.18278121948242],[-0.839999973773899,51.203891754150504],[-0.829167008399906,51.226100921630916],[-0.799444973468724,51.239170074463],[-0.748332977294922,51.23167037963873],[-0.731109976768494,51.24388885498047],[-0.729722023010254,51.29166030883789],[-0.765276014804726,51.33137893676758],[-0.720833003520966,51.36388015747082],[-0.658056974410954,51.38222122192394],[-0.619722008705139,51.38777160644537],[-0.598887979984227,51.403610229492244],[-0.590278029441833,51.42638015747076],[-0.569967985153085,51.442989349365284],[-0.526400029659271,51.43140029907238],[-0.51277798414219,51.475830078125],[-0.497188985347748,51.477870941162166],[-0.473610997200012,51.458889007568466],[-0.441388010978585,51.45389175415045],[-0.431665986776352,51.430271148681754],[-0.384377986192703,51.413726806640675],[-0.343333005905151,51.394168853759815],[-0.306676000356674,51.38444137573247],[-0.298056006431523,51.37054824829113],[-0.314999014139175,51.34722137451183],[-0.293334007263127,51.32889175415039],[-0.268334001302719,51.36166000366211],[-0.243055999278965,51.37360000610363],[-0.218055993318558,51.35305023193365],[-0.219444006681442,51.32833099365246],[-0.178332999348584,51.339160919189446],[-0.163618996739387,51.31964111328125],[-0.12805700302124,51.28916168212896],[-0.101943001150971,51.29277038574224],[-0.084721997380257,51.31110000610346],[-0.046666998416185,51.315551757812614],[-0.026667999103609,51.330829620361385],[0.013167000375745,51.32074356079107],[0.022500000894127,51.289718627929744],[0.054444000124988,51.28998947143555],[0.063888996839523,51.242221832275504],[0.04444300010806,51.20999908447271],[0.060279000550565,51.181659698486385],[0.06278099864727,51.135879516601676]]]},"properties":{"ID_0":242,"ISO":"GB-SRY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":94,"NAME_2":"Surrey","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.163618996739387,51.31964111328125],[-0.178332999348584,51.339160919189446],[-0.219444006681442,51.32833099365246],[-0.218055993318558,51.35305023193365],[-0.243055999278965,51.37360000610363],[-0.224751994013786,51.385395050048885],[-0.187601998448372,51.382141113281186],[-0.131302997469902,51.38724136352539],[-0.11829599738121,51.37684249877941],[-0.110386997461319,51.34771347045892],[-0.163618996739387,51.31964111328125]]]},"properties":{"ID_0":242,"ISO":"GB-STN","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":95,"NAME_2":"Sutton","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.580399990081673,51.50305557250982],[-1.600487947463989,51.490497589111385],[-1.697631955146789,51.46014022827154],[-1.760949015617371,51.46274185180663],[-1.810387969016972,51.480091094970646],[-1.834674000740051,51.50784683227545],[-1.839010953903141,51.546875],[-1.831205010414124,51.565959930419915],[-1.756611943244934,51.642284393310604],[-1.749668955802917,51.65884017944336],[-1.724444031715336,51.66276931762707],[-1.701110005378723,51.68111038208019],[-1.683266997337284,51.67866897583008],[-1.68388903141016,51.650550842285156],[-1.654441952705383,51.63193893432617],[-1.659721016883793,51.611110687255966],[-1.677778959274292,51.599720001220696],[-1.67527794837946,51.572780609130795],[-1.646667957305908,51.568599700927734],[-1.602777004241887,51.52027130126953],[-1.584468007087594,51.517429351806754],[-1.580399990081673,51.50305557250982]]]},"properties":{"ID_0":242,"ISO":"GB-SWD","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":96,"NAME_2":"Swindon","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":"Thamesdown"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.396553993225098,52.82164764404297],[-2.368334054946899,52.80693817138666],[-2.368890047073364,52.781940460205135],[-2.323899984359741,52.747806549072315],[-2.339746952056885,52.729206085205014],[-2.396282911300602,52.64100646972656],[-2.424552917480412,52.60708236694347],[-2.460736989974976,52.61725997924805],[-2.640526056289559,52.72129058837885],[-2.663141965866089,52.74277496337896],[-2.646181106567383,52.75860595703131],[-2.588511943817139,52.767650604248104],[-2.53649806976307,52.784614562988224],[-2.473174095153695,52.798183441162166],[-2.396553993225098,52.82164764404297]]]},"properties":{"ID_0":242,"ISO":"GB-TFW","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":97,"NAME_2":"Telford and Wrekin","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":"The Wrekin, Wrekin"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.547411978244895,51.51680374145513],[0.510277986526546,51.5051383972168],[0.458609998226279,51.50652694702154],[0.44083300232893,51.49180603027355],[0.436944991350117,51.46513748168951],[0.414166986942348,51.449993133544915],[0.366111993789787,51.44332885742199],[0.341390013694877,51.44638824462901],[0.31222099065792,51.46554946899425],[0.265554010868073,51.456668853759766],[0.223610997200012,51.47333145141607],[0.224682003259659,51.489070892333984],[0.242221996188164,51.49888992309575],[0.247777000069732,51.52000045776367],[0.336111009120941,51.53998947143554],[0.31991100311285,51.5579986572265],[0.355614006519374,51.5571060180664],[0.481191992759818,51.54315185546874],[0.544757008552608,51.52919769287103],[0.547411978244895,51.51680374145513]]]},"properties":{"ID_0":242,"ISO":"GB-THR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":98,"NAME_2":"Thurrock","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.512501001358032,50.37486267089855],[-3.61991906166071,50.406608581543026],[-3.648608922958317,50.433246612548885],[-3.642460107803345,50.46398544311535],[-3.609673976898193,50.49882125854492],[-3.587133884429874,50.50906753540039],[-3.510278940200806,50.50804138183594],[-3.514723062515258,50.48236083984381],[-3.491389036178589,50.470417022705135],[-3.510278940200806,50.45458221435558],[-3.533610105514526,50.46263885498047],[-3.559721946716309,50.437084197998104],[-3.555834054946899,50.40902709960937],[-3.513611078262215,50.39902877807617],[-3.512501001358032,50.37486267089855]]]},"properties":{"ID_0":242,"ISO":"GB-TOB","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":99,"NAME_2":"Torbay","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.077073000371399,51.50599288940441],[-0.072025001049042,51.51602935791027],[-0.066616997122765,51.52652359008795],[-0.011008000001254,51.543540954589844],[0.003920000046605,51.5137672424317],[0.019481999799609,51.50265884399414],[-0.004727000370622,51.479656219482536],[-0.023135000839716,51.4887351989746],[-0.034336999058667,51.50417709350586],[-0.077073000371399,51.50599288940441]]]},"properties":{"ID_0":242,"ISO":"GB-TWH","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":100,"NAME_2":"Tower Hamlets","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.351943969726506,54.86963653564459],[-1.389835000038033,54.860801696777344],[-1.411224007606506,54.80133056640631],[-1.440425038337708,54.79700088500976],[-1.506346940994263,54.7999000549317],[-1.523211956024113,54.831798553466854],[-1.552342057228032,54.85789871215826],[-1.560006022453308,54.879650115966854],[-1.595293998718205,54.89270019531256],[-1.70114004611969,54.894161224365284],[-1.820001006126347,54.90472030639643],[-1.850558042526132,54.91971969604498],[-1.821666955947819,54.92943954467779],[-1.799998998641968,54.97222137451172],[-1.766667008399963,54.98443984985363],[-1.728332042694035,55.02804946899419],[-1.697221994400024,55.033050537109375],[-1.688889026641789,55.07221984863287],[-1.586109042167664,55.06055068969721],[-1.559999942779484,55.05110931396479],[-1.493610978126469,55.04916000366211],[-1.454121947288513,55.07013702392589],[-1.428056001663208,55.03819274902344],[-1.42972195148468,55.007362365722706],[-1.379166007041931,54.98597335815424],[-1.353055953979379,54.95652770996093],[-1.367498993873483,54.93847274780285],[-1.350834012031498,54.905418395996094],[-1.360277056693917,54.89014053344732],[-1.351943969726506,54.86963653564459]]]},"properties":{"ID_0":242,"ISO":"GB-TAW","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":101,"NAME_2":"Tyne and Wear","TYPE_2":"Metropolitan County","ENGTYPE_2":"Metropolitan County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.023910999298096,51.5543327331543],[-0.010583999566734,51.55247879028325],[-0.052708998322487,51.5736465454101],[-0.029931999742985,51.60110855102545],[-0.002580000087562,51.6466522216798],[0.02760099992156,51.62652587890625],[0.020289000123739,51.58667373657238],[0.023910999298096,51.5543327331543]]]},"properties":{"ID_0":242,"ISO":"GB-WFT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":102,"NAME_2":"Waltham Forest","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.213793992996216,51.4719123840332],[-0.188695996999684,51.4587020874024],[-0.168094992637634,51.47075271606445],[-0.138977006077766,51.47813796997082],[-0.121486999094429,51.476806640625],[-0.141544997692051,51.46076202392578],[-0.13170200586319,51.41772079467768],[-0.167852997779789,51.42296600341791],[-0.199147999286652,51.43706512451183],[-0.244277000427246,51.43251037597656],[-0.245690003037453,51.45571517944336],[-0.213793992996216,51.4719123840332]]]},"properties":{"ID_0":242,"ISO":"GB-WND","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":103,"NAME_2":"Wandsworth","TYPE_2":"London Borough","ENGTYPE_2":"London Borough","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.680557012557927,53.37887954711914],[-2.648056983947754,53.391391754150504],[-2.670834064483643,53.431110382080014],[-2.639722108840942,53.44055175781244],[-2.616111993789559,53.43054962158208],[-2.566404104232788,53.43566894531255],[-2.522222995758056,53.46249008178716],[-2.485001087188664,53.46221923828131],[-2.446665048599186,53.4188804626466],[-2.460556983947754,53.388328552246094],[-2.42877006530756,53.38039016723633],[-2.447022914886475,53.355045318603516],[-2.55492901802063,53.31236648559575],[-2.580697059631234,53.31558609008789],[-2.605659961700383,53.338134765624936],[-2.662832021713257,53.357460021972656],[-2.680557012557927,53.37887954711914]]]},"properties":{"ID_0":242,"ISO":"GB-WRT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":104,"NAME_2":"Warrington","TYPE_2":"Unitary Authority","ENGTYPE_2":"Unitary Authority","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.75777804851532,52.10583114624035],[-1.787222981452828,52.12944030761713],[-1.840831995010319,52.136108398437614],[-1.875262975692692,52.14947128295904],[-1.890872955322209,52.13365936279297],[-1.944447040557862,52.164718627929794],[-1.923056960105839,52.195270538330135],[-1.902222990989628,52.210548400878906],[-1.902778983116093,52.230548858642635],[-1.920001029968262,52.26610946655267],[-1.88277804851532,52.2741584777832],[-1.868057012557983,52.29888153076172],[-1.847499012947082,52.310001373291016],[-1.876945018768197,52.34471893310552],[-1.852777004241943,52.362499237060604],[-1.844444990158081,52.383609771728516],[-1.82249903678894,52.3763885498048],[-1.79694497585291,52.35221862792963],[-1.751667976379281,52.34749984741222],[-1.714722990989628,52.35527038574213],[-1.682500958442688,52.34249877929682],[-1.562777996063176,52.37221908569335],[-1.536944031715336,52.35583114624029],[-1.510833978652954,52.36748886108404],[-1.46277904510498,52.36582946777343],[-1.431666016578617,52.383609771728516],[-1.438053965568486,52.429439544677734],[-1.455000042915287,52.43804931640619],[-1.619444012641793,52.444438934326115],[-1.661666989326477,52.42472076416015],[-1.682500958442688,52.43972015380871],[-1.741111040115356,52.49750137329101],[-1.733332037925663,52.5116691589356],[-1.753056049346867,52.54666137695318],[-1.777673006057739,52.575420379638786],[-1.753610014915466,52.579441070556754],[-1.665555953979435,52.575828552246094],[-1.634721040725708,52.58805084228521],[-1.623888015747013,52.626110076904354],[-1.631111025810242,52.64278030395519],[-1.600833058357239,52.656108856201286],[-1.580000996589661,52.6769409179688],[-1.533890008926391,52.64165878295893],[-1.558889985084477,52.62166976928711],[-1.542222023010197,52.60083007812506],[-1.545832991600037,52.58082962036133],[-1.517778992652836,52.574440002441406],[-1.495000958442688,52.556388854980526],[-1.417222976684513,52.53527069091808],[-1.395833015441838,52.51250076293957],[-1.293334007263184,52.47943878173822],[-1.241111993789673,52.4261093139649],[-1.211665987968445,52.41582870483393],[-1.186583995818978,52.38137817382824],[-1.165277957916203,52.348049163818416],[-1.181112051010132,52.3383293151856],[-1.233332991600037,52.327499389648494],[-1.241667985916138,52.31110000610362],[-1.202499032020512,52.30138015747082],[-1.22416698932642,52.28248977661144],[-1.208889961242676,52.27249908447259],[-1.208055973052979,52.25],[-1.265833973884526,52.227779388427734],[-1.248610019683781,52.195270538330135],[-1.303056955337524,52.181110382080135],[-1.321192026138306,52.161590576171925],[-1.341390013694763,52.134441375732536],[-1.373610019683838,52.11832809448242],[-1.351112008094731,52.104438781738395],[-1.379444003105163,52.09194183349615],[-1.407500028610229,52.107769012451286],[-1.436388015747013,52.09304809570312],[-1.470278978347778,52.08861160278326],[-1.495277047157231,52.060829162597656],[-1.509721994400024,51.998329162597706],[-1.545554041862488,51.984718322753906],[-1.549721002578735,51.96915817260742],[-1.586109042167664,51.96722030639643],[-1.603888988494816,51.954990386963004],[-1.652547955513,51.983989715576286],[-1.612221002578735,52.02666091918951],[-1.674445986747685,52.031108856201286],[-1.706666946411076,52.06528091430663],[-1.715832948684636,52.0849990844726],[-1.75777804851532,52.10583114624035]]]},"properties":{"ID_0":242,"ISO":"GB-WAR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":105,"NAME_2":"Warwickshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.844444990158081,52.383609771728516],[-1.90055501461029,52.39278030395508],[-1.954723000526428,52.38694000244135],[-1.983054995536747,52.37749099731439],[-2.001945018768254,52.39278030395508],[-1.983054995536747,52.41777038574224],[-2.030555009841919,52.43693923950201],[-2.058332920074463,52.42248916625988],[-2.082776069641056,52.436100006103516],[-2.118889093399048,52.42221832275385],[-2.153856039047241,52.423000335693416],[-2.158890008926335,52.47748947143555],[-2.177500009536743,52.5011100769043],[-2.134443998336735,52.5152702331543],[-2.12611198425293,52.544441223144645],[-2.157500028610229,52.54639053344732],[-2.174444913864136,52.567501068115234],[-2.200557947158757,52.579441070556754],[-2.180556058883667,52.599998474121094],[-2.144166946411132,52.61278152465826],[-2.131109952926579,52.629440307617244],[-2.097500085830575,52.63415908813482],[-2.066389083862248,52.60805892944347],[-2.025834083557072,52.61610031127924],[-1.952499032020512,52.637500762939446],[-1.934445977210999,52.66527938842785],[-1.897222995758,52.649440765380966],[-1.896389007568303,52.617488861083984],[-1.875277042388859,52.58639144897461],[-1.855556011199895,52.57555007934576],[-1.815001010894719,52.590831756591854],[-1.777673006057739,52.575420379638786],[-1.753056049346867,52.54666137695318],[-1.733332037925663,52.5116691589356],[-1.741111040115356,52.49750137329101],[-1.682500958442688,52.43972015380871],[-1.661666989326477,52.42472076416015],[-1.619444012641793,52.444438934326115],[-1.455000042915287,52.43804931640619],[-1.438053965568486,52.429439544677734],[-1.431666016578617,52.383609771728516],[-1.46277904510498,52.36582946777343],[-1.510833978652954,52.36748886108404],[-1.536944031715336,52.35583114624029],[-1.562777996063176,52.37221908569335],[-1.682500958442688,52.34249877929682],[-1.714722990989628,52.35527038574213],[-1.751667976379281,52.34749984741222],[-1.79694497585291,52.35221862792963],[-1.82249903678894,52.3763885498048],[-1.844444990158081,52.383609771728516]]]},"properties":{"ID_0":242,"ISO":"GB-WM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":106,"NAME_2":"West Midlands","TYPE_2":"Metropolitan County","ENGTYPE_2":"Metropolitan County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.932498991489297,50.8398818969726],[-0.92333197593689,50.86526870727545],[-0.952500998973846,50.89194107055669],[-0.921666026115417,50.92055892944341],[-0.930832982063237,50.943889617920036],[-0.893055975437164,50.993610382080135],[-0.890833973884526,51.00999069213867],[-0.866110026836395,51.028049468994084],[-0.862500011920929,51.043609619140625],[-0.828611016273442,51.063610076904354],[-0.788056015968266,51.06055068969732],[-0.774721026420479,51.08110809326183],[-0.753660023212376,51.08871078491211],[-0.731109976768494,51.078048706054744],[-0.688054978847504,51.07083129882824],[-0.626668989658299,51.084438323974666],[-0.60166597366333,51.07611083984381],[-0.541387975215912,51.07915878295893],[-0.475555002689305,51.09527969360357],[-0.420556992292404,51.096939086914176],[-0.351666003465596,51.11500167846691],[-0.302500009536743,51.116661071777344],[-0.181944996118546,51.161380767822266],[-0.14138799905777,51.15222167968755],[-0.119167000055256,51.134441375732536],[-0.076110996305943,51.14139175415039],[-0.053334001451731,51.13528060913086],[0.021364999935145,51.135879516601676],[0.036667000502405,51.11138153076177],[0.01472099963587,51.0980491638183],[-0.021111000329142,51.090549468994254],[0.019168000668344,51.05054092407238],[-0.006665999535414,51.02249908447271],[-0.015832999721113,50.981941223144645],[-0.044167000800371,50.98083114624029],[-0.067501001060009,50.993328094482365],[-0.105555996298733,50.970279693603516],[-0.093888998031616,50.94944000244146],[-0.116944000124818,50.92694091796881],[-0.128588005900383,50.88260269165044],[-0.152777001261711,50.89139175415045],[-0.181667000055313,50.872501373291065],[-0.213330999016762,50.87498855590826],[-0.230278998613301,50.85694122314459],[-0.207498997449875,50.82641601562506],[-0.282501012086868,50.82624816894537],[-0.36472299695015,50.80902862548828],[-0.445279002189579,50.80180740356456],[-0.540278017520848,50.80180740356456],[-0.599165976047402,50.7904167175293],[-0.654721975326424,50.78541564941412],[-0.730278015136719,50.77069473266613],[-0.758055984973907,50.75291824340826],[-0.785834014415741,50.72208404541021],[-0.835277974605503,50.749305725097656],[-0.916944026947021,50.779861450195305],[-0.894721984863281,50.79180526733404],[-0.94472199678421,50.819583892822266],[-0.932498991489297,50.8398818969726]]]},"properties":{"ID_0":242,"ISO":"GB-WSX","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":107,"NAME_2":"West Sussex","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.816110968589726,53.51610946655279],[-1.870833039283696,53.532218933105526],[-1.897222995758,53.53305053710949],[-1.937777996063176,53.5680503845216],[-1.97694194316864,53.593891143798885],[-1.988055944442749,53.6147193908692],[-2.01694393157959,53.61861038208002],[-2.035001039505005,53.646938323974666],[-2.031388998031616,53.663330078124936],[-2.046390056610051,53.68416976928722],[-2.098612070083618,53.67193984985357],[-2.15134596824646,53.69654846191406],[-2.159722089767456,53.725559234619254],[-2.121388912200871,53.755268096923885],[-2.120558023452759,53.7913818359375],[-2.095555067062378,53.810550689697266],[-2.047224044799748,53.82444000244146],[-2.032510042190552,53.84766006469738],[-2.002779006957951,53.86999893188471],[-1.966109991073608,53.87638854980463],[-1.973610043525696,53.91722106933594],[-1.950834989547729,53.93193817138672],[-1.943611979484501,53.957771301269645],[-1.901944994926396,53.95499038696294],[-1.871762990951538,53.9404411315918],[-1.79778003692627,53.94305038452142],[-1.728610038757267,53.90277099609374],[-1.641389966011047,53.907218933105526],[-1.583333015441838,53.900829315185604],[-1.549167037010193,53.90861129760747],[-1.534446001052856,53.93526840209961],[-1.507187962532043,53.91077041625988],[-1.454722046852055,53.90610885620117],[-1.386667013168221,53.9394416809082],[-1.333611011505127,53.94499969482433],[-1.294167995452824,53.9255485534668],[-1.307777047157288,53.89471817016607],[-1.305557012557869,53.860828399658146],[-1.326110005378666,53.846378326416016],[-1.305276989936772,53.819721221923885],[-1.307500958442574,53.79027938842773],[-1.288612008094788,53.77027130126959],[-1.304167032241764,53.749721527099666],[-1.259443044662419,53.71776962280285],[-1.219980001449585,53.714698791503906],[-1.245278000831547,53.67193984985357],[-1.246947050094548,53.63555145263671],[-1.229943990707341,53.620719909668026],[-1.24333202838892,53.59693908691417],[-1.305276989936772,53.57611083984386],[-1.344444036483708,53.58082962036144],[-1.367776989936829,53.59888076782232],[-1.423889994621277,53.59498977661133],[-1.448055028915405,53.600830078125],[-1.485000014305115,53.59222030639654],[-1.535277962684631,53.593608856201286],[-1.560556054115239,53.60667037963873],[-1.584167957305851,53.59777069091797],[-1.615278005599975,53.56333160400402],[-1.674445986747685,53.54999923706055],[-1.714722990989628,53.55472183227539],[-1.771667957305851,53.53527069091802],[-1.80666601657856,53.531940460205135],[-1.816110968589726,53.51610946655279]]]},"properties":{"ID_0":242,"ISO":"GB-WY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":108,"NAME_2":"West Yorkshire","TYPE_2":"Metropolitan County","ENGTYPE_2":"Metropolitan County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.211057007312775,51.522098541259766],[-0.178977996110916,51.52835083007818],[-0.145739004015809,51.52985763549816],[-0.121914997696877,51.509796142578125],[-0.102742999792099,51.51198959350586],[-0.0998620018363,51.507091522216854],[-0.103221997618618,51.502265930175895],[-0.121486999094429,51.476806640625],[-0.138977006077766,51.47813796997082],[-0.166424006223679,51.492107391357365],[-0.198547005653381,51.5209007263183],[-0.211057007312775,51.522098541259766]]]},"properties":{"ID_0":242,"ISO":"GB-WSM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":109,"NAME_2":"Westminster","TYPE_2":"London Borough (city)","ENGTYPE_2":"London Borough (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.290097951889038,51.324958801269524],[-2.296669006347543,51.34027099609381],[-2.333611011505127,51.34693908691411],[-2.279999017715397,51.37250137329113],[-2.280632972717285,51.420318603515625],[-2.286946058273315,51.4813804626466],[-2.313333988189697,51.49388885498058],[-2.280555009841862,51.509990692138786],[-2.245275974273682,51.518608093261776],[-2.271603107452279,51.57722091674805],[-2.240000009536686,51.579158782959034],[-2.191667079925537,51.59833145141613],[-2.148890018463078,51.58943939208996],[-2.101109981536752,51.620281219482365],[-2.057219982147217,51.664161682128956],[-1.988055944442749,51.64582824707037],[-1.94861102104187,51.63999938964855],[-1.940000057220402,51.66305923461914],[-1.887222051620483,51.66249847412121],[-1.866387963294983,51.673328399658196],[-1.832777976989632,51.656658172607536],[-1.79583299159998,51.694438934326286],[-1.777338027954045,51.660419464111385],[-1.749668955802917,51.65884017944336],[-1.756611943244934,51.642284393310604],[-1.831205010414124,51.565959930419915],[-1.839010953903141,51.546875],[-1.834674000740051,51.50784683227545],[-1.810387969016972,51.480091094970646],[-1.760949015617371,51.46274185180663],[-1.697631955146789,51.46014022827154],[-1.600487947463989,51.490497589111385],[-1.580399990081673,51.50305557250982],[-1.550554990768433,51.46139144897455],[-1.528332948684692,51.4513893127442],[-1.521944999694767,51.4258308410645],[-1.56333398818964,51.4122200012207],[-1.533334016799813,51.37749099731445],[-1.498057007789498,51.366100311279354],[-1.486946940422058,51.332500457763665],[-1.52666699886322,51.32971954345703],[-1.519999027252197,51.30250167846691],[-1.539168000221252,51.275550842285156],[-1.538334012031441,51.24499893188482],[-1.579723000526428,51.257770538330135],[-1.628057003021183,51.234161376953125],[-1.696388006210327,51.23666000366222],[-1.685279011726379,51.20528030395508],[-1.65499901771534,51.17139053344732],[-1.647778034210148,51.14999008178711],[-1.65277898311615,51.12638854980469],[-1.621947050094548,51.108329772949276],[-1.631389021873474,51.08610916137701],[-1.620278000831604,51.0541610717774],[-1.621947050094548,51.03416061401367],[-1.59666895866394,51.01749038696295],[-1.621389985084534,50.99472045898449],[-1.599722981452885,50.9769401550293],[-1.610558032989502,50.95972061157238],[-1.65499901771534,50.950271606445426],[-1.698055982589722,50.97499847412115],[-1.740556955337468,50.97805023193365],[-1.810832023620548,50.99277114868163],[-1.837499976158085,51.00915908813471],[-1.92641901969904,50.999519348144645],[-1.950001001358032,50.98833084106457],[-1.970278024673462,50.99277114868163],[-1.996111989021301,50.97748947143566],[-2.033334970474186,50.97166061401373],[-2.058888912200928,50.95999908447276],[-2.099168062210083,50.955829620361385],[-2.123333930969238,50.98110961914068],[-2.144166946411132,50.98611068725585],[-2.194166898727303,51.04388046264643],[-2.238610029220581,51.07138824462902],[-2.321666002273502,51.08332824707031],[-2.347500085830688,51.09498977661127],[-2.348891019821167,51.1177711486817],[-2.266109943389892,51.20888900756836],[-2.252501010894775,51.24472045898443],[-2.236109972000065,51.26416015625006],[-2.242779016494751,51.28527069091796],[-2.271110057830811,51.295829772949276],[-2.26694393157959,51.316379547119254],[-2.290097951889038,51.324958801269524]]]},"properties":{"ID_0":242,"ISO":"GB-WIL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":110,"NAME_2":"Wiltshire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.75777804851532,52.10583114624035],[-1.778331995010376,52.098880767822266],[-1.813889026641846,52.068889617919865],[-1.843055009841919,52.07305145263672],[-1.863332033157349,52.06277084350597],[-1.827777981758004,52.034439086914176],[-1.843611001968384,52.007770538330135],[-1.878888964652901,52.028049468994254],[-1.904167056083679,52.03139114379888],[-1.970834016799927,52.02611160278332],[-2.030833005905151,52],[-2.07166600227356,52.007770538330135],[-2.143285036086979,52.006328582763615],[-2.114902973174992,52.04222106933605],[-2.164720058441048,52.04055023193371],[-2.176332950592041,52.007350921630916],[-2.174724102020264,51.98778152465832],[-2.208055973052979,51.99082946777344],[-2.234168052673283,51.96416091918956],[-2.307776927947998,51.97360992431635],[-2.341665983200016,52.01499938964838],[-2.351562023162785,52.01398468017583],[-2.349762916564941,52.106773376464844],[-2.360050916671696,52.12220382690435],[-2.392200946807861,52.13120651245128],[-2.410203933715707,52.15692520141607],[-2.406347990035954,52.205791473388786],[-2.415348052978516,52.21993637084972],[-2.45778489112854,52.23022460937506],[-2.447496891021672,52.25851440429699],[-2.488646984100342,52.26494598388677],[-2.527225971221924,52.24308395385742],[-2.606956958770752,52.241798400878906],[-2.618530988693237,52.252086639404354],[-2.615957021713143,52.27780532836914],[-2.631388902664185,52.29195022583013],[-2.64086389541626,52.33226013183594],[-2.616389989852905,52.324169158935604],[-2.59777903556818,52.30527114868164],[-2.555556058883667,52.30860900878906],[-2.546945095062199,52.330280303955135],[-2.525279998779297,52.33972167968756],[-2.493057012557927,52.32666015624994],[-2.46777701377863,52.33721923828125],[-2.46972107887268,52.35721969604503],[-2.410279035568237,52.36333084106456],[-2.390558004379272,52.383609771728516],[-2.327501058578491,52.38972091674805],[-2.350486040115243,52.423778533935604],[-2.339446067810002,52.43444061279297],[-2.304723024368229,52.43082809448248],[-2.286118984222298,52.444629669189396],[-2.260555982589664,52.43638992309582],[-2.220556974410954,52.43555068969732],[-2.171113014221191,52.421661376953125],[-2.153856039047241,52.423000335693416],[-2.118889093399048,52.42221832275385],[-2.082776069641056,52.436100006103516],[-2.058332920074463,52.42248916625988],[-2.030555009841919,52.43693923950201],[-1.983054995536747,52.41777038574224],[-2.001945018768254,52.39278030395508],[-1.983054995536747,52.37749099731439],[-1.954723000526428,52.38694000244135],[-1.90055501461029,52.39278030395508],[-1.844444990158081,52.383609771728516],[-1.852777004241943,52.362499237060604],[-1.876945018768197,52.34471893310552],[-1.847499012947082,52.310001373291016],[-1.868057012557983,52.29888153076172],[-1.88277804851532,52.2741584777832],[-1.920001029968262,52.26610946655267],[-1.902778983116093,52.230548858642635],[-1.902222990989628,52.210548400878906],[-1.923056960105839,52.195270538330135],[-1.944447040557862,52.164718627929794],[-1.890872955322209,52.13365936279297],[-1.875262975692692,52.14947128295904],[-1.840831995010319,52.136108398437614],[-1.787222981452828,52.12944030761713],[-1.75777804851532,52.10583114624035]]]},"properties":{"ID_0":242,"ISO":"GB-WOR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":111,"NAME_2":"Worcestershire","TYPE_2":"Administrative County","ENGTYPE_2":"Administrative County","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.927909016609192,53.97192001342779],[-0.920831978321075,53.94388961791998],[-0.939999997615814,53.89194107055664],[-0.940470993518829,53.86803817749035],[-0.969289004802704,53.87131500244146],[-1.025182008743229,53.85734176635748],[-1.14116096496582,53.86013412475585],[-1.177492022514343,53.87690353393555],[-1.218013048171997,53.91463088989252],[-1.23478102684021,53.945373535156364],[-1.231986045837402,53.9691276550294],[-1.177492022514343,53.98030471801758],[-1.146749019622746,54.02781677246087],[-1.092252969741764,54.040390014648544],[-1.026579022407532,54.03899383544927],[-1.007017970085144,54.02781677246087],[-1.004220962524414,53.99008560180669],[-0.987452983856087,53.974716186523494],[-0.927909016609192,53.97192001342779]]]},"properties":{"ID_0":242,"ISO":"GB-YOR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":112,"NAME_2":"York","TYPE_2":"Unitary Authority (city)","ENGTYPE_2":"Unitary Authority (city)","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.065834999084473,54.622768402099716],[-6.138055801391601,54.61861038208019],[-6.22972297668457,54.59165954589844],[-6.26403284072876,54.59251022338867],[-6.311635017394963,54.587226867675895],[-6.333023071289062,54.5984840393067],[-6.437018871307316,54.56887435913086],[-6.433769226074162,54.602985382080014],[-6.41801118850708,54.64013290405285],[-6.42082405090332,54.65476608276373],[-6.498589992523137,54.70628738403326],[-6.470020771026554,54.7678108215332],[-6.480641841888371,54.782779693603565],[-6.388610839843749,54.77666091918951],[-6.353055953979435,54.795829772949276],[-6.329721927642709,54.78860092163086],[-6.268055915832463,54.794441223144524],[-6.212778091430606,54.78194046020507],[-6.192500114440804,54.80221939086919],[-6.152501106262207,54.807220458984375],[-6.084166049957275,54.79193878173828],[-6.045557022094727,54.774440765380966],[-6.063610076904296,54.748050689697315],[-6.039721012115478,54.71416091918956],[-6.051390171051025,54.67110061645508],[-6.022499084472656,54.66249847412114],[-6.061666011810303,54.649440765380916],[-6.045557022094727,54.62971115112305],[-6.065834999084473,54.622768402099716]]]},"properties":{"ID_0":242,"ISO":"GB-ANT","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":113,"NAME_2":"Antrim","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.645833015441895,54.45875167846691],[-5.715835094451847,54.447219848632926],[-5.738056182861328,54.46054840087902],[-5.790832042694092,54.4661102294923],[-5.818612098693733,54.49166107177746],[-5.82333517074585,54.525829315185604],[-5.787777900695744,54.546939849853516],[-5.792778015136719,54.55916976928711],[-5.754724025726262,54.58332824707036],[-5.756946086883488,54.61582946777355],[-5.72888708114624,54.628879547119254],[-5.698892116546631,54.61861038208019],[-5.650002002716064,54.61888885498058],[-5.616114139556885,54.630268096923764],[-5.604722023010254,54.64582824707031],[-5.577221870422306,54.6536102294923],[-5.571944236755257,54.6687583923341],[-5.525279045104924,54.64041519165039],[-5.534722805023193,54.62402725219726],[-5.520277976989746,54.59597396850586],[-5.477500915527344,54.56430435180664],[-5.485834121704102,54.54902648925787],[-5.461390018463078,54.49597167968756],[-5.432499885559082,54.48736190795909],[-5.434721946716309,54.47041702270502],[-5.461390018463078,54.43930435180675],[-5.479721069335881,54.430694580078125],[-5.461944103240967,54.41236114501953],[-5.462500095367432,54.38236236572277],[-5.491387844085637,54.35514068603515],[-5.496387958526611,54.3323593139649],[-5.525832176208496,54.34180450439453],[-5.528055191040039,54.35930633544933],[-5.558610916137695,54.3848609924317],[-5.578609943389893,54.39152908325195],[-5.577499866485539,54.413471221923885],[-5.544166088104248,54.43486022949213],[-5.543612003326416,54.486526489257926],[-5.556944847106877,54.53152847290039],[-5.581944942474364,54.53152847290039],[-5.614167213439941,54.5584716796875],[-5.639722824096623,54.56097412109375],[-5.684721946716309,54.58235931396484],[-5.706943988800049,54.53736114501959],[-5.658055782318115,54.51486206054693],[-5.645833015441895,54.45875167846691]]]},"properties":{"ID_0":242,"ISO":"GB-ARD","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":114,"NAME_2":"Ards","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.360001087188607,54.27693939208984],[-6.400834083557129,54.27637863159185],[-6.445003032684326,54.268329620361385],[-6.485556125640869,54.253608703613395],[-6.511943817138672,54.225830078125],[-6.537777900695687,54.23471832275402],[-6.576944828033447,54.21694183349615],[-6.605278968810978,54.218330383300895],[-6.64686393737793,54.18768692016607],[-6.687240123748779,54.20381546020508],[-6.73123121261591,54.18588638305664],[-6.749739170074463,54.20280838012707],[-6.77783203125,54.20781326293945],[-6.810042858123779,54.225318908691456],[-6.827834129333439,54.26260757446294],[-6.858615875244141,54.27651214599621],[-6.850320816039925,54.2956047058106],[-6.863120555877629,54.32888412475597],[-6.829998970031738,54.3413810729981],[-6.832777976989689,54.358890533447266],[-6.805552959442139,54.38026809692383],[-6.810277938842773,54.40111160278325],[-6.795835018157901,54.41305923461914],[-6.717223167419434,54.40388107299805],[-6.695556163787785,54.43138885498058],[-6.698890209197941,54.444438934326286],[-6.658054828643798,54.46416091918945],[-6.613058090209961,54.44944000244146],[-6.554677963256779,54.4633903503418],[-6.510280132293701,54.41833114624035],[-6.484446048736572,54.416938781738274],[-6.48416805267334,54.39527130126959],[-6.462224006652775,54.37833023071289],[-6.434999942779484,54.37722015380871],[-6.405278205871525,54.393878936767635],[-6.374722003936768,54.34083175659185],[-6.377778053283691,54.29333114624029],[-6.360001087188607,54.27693939208984]]]},"properties":{"ID_0":242,"ISO":"GB-ARM","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":115,"NAME_2":"Armagh","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.006947040557804,54.798610687255916],[-6.084166049957275,54.79193878173828],[-6.152501106262207,54.807220458984375],[-6.192500114440804,54.80221939086919],[-6.212778091430606,54.78194046020507],[-6.268055915832463,54.794441223144524],[-6.329721927642709,54.78860092163086],[-6.353055953979435,54.795829772949276],[-6.388610839843749,54.77666091918951],[-6.480641841888371,54.782779693603565],[-6.471110820770264,54.827499389648494],[-6.491387844085693,54.89054870605469],[-6.506910800933781,54.9160614013673],[-6.460000038146973,54.9177703857423],[-6.433611869812012,54.91083145141596],[-6.451388835906982,54.960548400878906],[-6.370276927947884,54.96998977661133],[-6.325555801391602,55.00305175781244],[-6.287222862243652,55.00165939331054],[-6.24222183227539,55.0111083984375],[-6.192500114440804,55.02833175659173],[-6.168890953063964,55.02193832397466],[-6.140277862548828,54.98638153076177],[-6.101945877075138,54.98693847656256],[-6.035275936126652,54.94832992553716],[-6.023612022399902,54.93471908569336],[-6.038888931274414,54.89665985107422],[-6.028334140777531,54.85916137695318],[-5.998331069946289,54.850830078125114],[-5.965001106262093,54.85499954223633],[-5.944724082946721,54.83277130126953],[-5.959167003631591,54.820831298828175],[-6.019443035125732,54.81859970092779],[-6.006947040557804,54.798610687255916]]]},"properties":{"ID_0":242,"ISO":"GB-BLA","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":116,"NAME_2":"Ballymena","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.506910800933781,54.9160614013673],[-6.520390033721867,54.945171356201115],[-6.552501201629582,54.95943832397472],[-6.551391124725342,54.97639083862316],[-6.581943035125732,54.995281219482536],[-6.591946125030518,55.020271301269524],[-6.582499027252197,55.04055023193364],[-6.61384391784668,55.076698303222656],[-6.578608036041203,55.098049163818416],[-6.572781085968018,55.13109970092785],[-6.515277862548828,55.14915847778325],[-6.477777004241887,55.148609161377],[-6.425280094146615,55.126110076904354],[-6.395277023315429,55.13777160644531],[-6.363891124725342,55.12833023071288],[-6.346389770507812,55.10889053344732],[-6.324165821075439,55.10416030883795],[-6.228055000305176,55.12054824829107],[-6.235280036926269,55.08887863159185],[-6.22972297668457,55.06859970092773],[-6.192500114440804,55.02833175659173],[-6.24222183227539,55.0111083984375],[-6.287222862243652,55.00165939331054],[-6.325555801391602,55.00305175781244],[-6.370276927947884,54.96998977661133],[-6.451388835906982,54.960548400878906],[-6.433611869812012,54.91083145141596],[-6.460000038146973,54.9177703857423],[-6.506910800933781,54.9160614013673]]]},"properties":{"ID_0":242,"ISO":"GB-BLY","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":117,"NAME_2":"Ballymoney","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.950353145599364,54.379711151123104],[-5.939445018768311,54.36278152465826],[-5.970555782318115,54.341110229492244],[-5.96722412109375,54.32054901123058],[-5.947500228881836,54.29055023193365],[-5.965557098388672,54.28416061401373],[-5.988891124725285,54.24528121948248],[-6.037775993347168,54.26361083984375],[-6.045279026031493,54.24666976928722],[-6.073610782623291,54.25249099731451],[-6.115003108978215,54.24222183227545],[-6.192224025726318,54.24610900878912],[-6.28194522857666,54.265270233154354],[-6.343889236450138,54.265270233154354],[-6.360001087188607,54.27693939208984],[-6.377778053283691,54.29333114624029],[-6.374722003936768,54.34083175659185],[-6.405278205871525,54.393878936767635],[-6.391666889190674,54.40111160278325],[-6.329999923706055,54.39139175415045],[-6.237780094146672,54.397499084472656],[-6.214724063873291,54.41276931762707],[-6.210473060607852,54.43323898315423],[-6.166388034820557,54.444160461425895],[-6.136943817138671,54.43722152709972],[-6.059999942779483,54.40748977661127],[-6.064167022705078,54.388328552246094],[-6.00916910171503,54.37638854980474],[-5.950353145599364,54.379711151123104]]]},"properties":{"ID_0":242,"ISO":"GB-BNB","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":118,"NAME_2":"Banbridge","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.913610935211125,54.64651870727539],[-5.885832786560059,54.62553024291992],[-5.807776927947941,54.6144409179688],[-5.816112041473388,54.59304809570318],[-5.894721984863281,54.582218170166016],[-5.954721927642765,54.55443954467779],[-6.031668186187687,54.58082962036144],[-6.042778968811034,54.60832977294927],[-6.065834999084473,54.622768402099716],[-6.045557022094727,54.62971115112305],[-6.061666011810303,54.649440765380916],[-6.022499084472656,54.66249847412114],[-5.983891010284424,54.66305923461908],[-5.965001106262093,54.646938323974666],[-5.940557956695557,54.65972137451166],[-5.913610935211125,54.64651870727539]]]},"properties":{"ID_0":242,"ISO":"GB-BFS","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":119,"NAME_2":"Belfast","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.878611087799015,54.68295288085949],[-5.905835151672363,54.71221923828125],[-5.889164924621525,54.76943969726562],[-5.7911119461059,54.77666091918951],[-5.742219924926701,54.7638893127442],[-5.690833091735782,54.770694732666016],[-5.71194410324091,54.74514007568371],[-5.764165878295842,54.71958160400402],[-5.778055191040038,54.72319412231445],[-5.8313889503479,54.70819473266607],[-5.878611087799015,54.68295288085949]]]},"properties":{"ID_0":242,"ISO":"GB-CKF","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":120,"NAME_2":"Carrickfergus","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.818612098693733,54.49166107177746],[-5.868053913116455,54.479160308838004],[-5.897223949432316,54.5013885498048],[-5.92389011383051,54.5397186279298],[-5.954721927642765,54.55443954467779],[-5.894721984863281,54.582218170166016],[-5.816112041473388,54.59304809570318],[-5.807776927947941,54.6144409179688],[-5.756946086883488,54.61582946777355],[-5.754724025726262,54.58332824707036],[-5.792778015136719,54.55916976928711],[-5.787777900695744,54.546939849853516],[-5.82333517074585,54.525829315185604],[-5.818612098693733,54.49166107177746]]]},"properties":{"ID_0":242,"ISO":"GB-CSR","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":121,"NAME_2":"Castlereagh","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.520390033721867,54.945171356201115],[-6.541944026947021,54.92832946777343],[-6.58527994155878,54.921661376953125],[-6.640554904937743,54.93444061279296],[-6.655279159545842,54.92332839965826],[-6.694724082946777,54.9161109924317],[-6.736947059631348,54.928890228271534],[-6.781112194061222,54.91110992431635],[-6.795279026031437,54.956939697265625],[-6.808611869812012,54.968891143798885],[-6.780002117156982,54.99082946777355],[-6.809721946716309,55.008609771728565],[-6.806943893432616,55.07054901123058],[-6.821389198303166,55.10194015502923],[-6.862224102020264,55.12554931640625],[-6.839612960815373,55.1662483215332],[-6.730278015136662,55.17041778564459],[-6.709167003631591,55.19374847412121],[-6.605278968810978,55.20597076416027],[-6.541470050811711,55.22124862670904],[-6.524167060852051,55.18861007690429],[-6.515277862548828,55.14915847778325],[-6.572781085968018,55.13109970092785],[-6.578608036041203,55.098049163818416],[-6.61384391784668,55.076698303222656],[-6.582499027252197,55.04055023193364],[-6.591946125030518,55.020271301269524],[-6.581943035125732,54.995281219482536],[-6.551391124725342,54.97639083862316],[-6.552501201629582,54.95943832397472],[-6.520390033721867,54.945171356201115]]]},"properties":{"ID_0":242,"ISO":"GB-CLR","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":122,"NAME_2":"Coleraine","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.437018871307316,54.56887435913086],[-6.527803897857666,54.53982162475597],[-6.637776851654053,54.56583023071289],[-6.714723110198975,54.55138015747076],[-6.73861122131342,54.57221984863281],[-6.766666889190673,54.563888549804744],[-6.823891162872314,54.575828552246094],[-6.89611291885376,54.56444168090832],[-6.961391925811768,54.57666015625006],[-6.94999980926508,54.60610961914074],[-6.972221851348876,54.643051147460994],[-6.968890190124512,54.66305923461908],[-7.000277996063232,54.674720764160206],[-6.987779140472412,54.693599700927734],[-6.994999885559082,54.730831146240234],[-6.969724178314209,54.7416610717774],[-6.945278167724609,54.72943878173833],[-6.890833854675293,54.728328704833984],[-6.826388835906926,54.74082946777344],[-6.781112194061222,54.730831146240234],[-6.761109828948918,54.736110687255795],[-6.721389770507812,54.70610809326172],[-6.683610916137638,54.695831298828125],[-6.60027599334711,54.716110229492244],[-6.573609828948975,54.71194076538086],[-6.559445858001709,54.7272186279298],[-6.498589992523137,54.70628738403326],[-6.42082405090332,54.65476608276373],[-6.41801118850708,54.64013290405285],[-6.433769226074162,54.602985382080014],[-6.437018871307316,54.56887435913086]]]},"properties":{"ID_0":242,"ISO":"GB-CKT","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":123,"NAME_2":"Cookstown","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.26403284072876,54.59251022338867],[-6.284166812896729,54.564159393310604],[-6.273612022399902,54.522220611572315],[-6.239168167114258,54.50222015380859],[-6.252501010894775,54.485549926757926],[-6.241943836212158,54.46665954589855],[-6.212502002716064,54.44971084594732],[-6.210473060607852,54.43323898315423],[-6.214724063873291,54.41276931762707],[-6.237780094146672,54.397499084472656],[-6.329999923706055,54.39139175415045],[-6.391666889190674,54.40111160278325],[-6.405278205871525,54.393878936767635],[-6.434999942779484,54.37722015380871],[-6.462224006652775,54.37833023071289],[-6.48416805267334,54.39527130126959],[-6.484446048736572,54.416938781738274],[-6.510280132293701,54.41833114624035],[-6.554677963256779,54.4633903503418],[-6.565278053283691,54.493610382080135],[-6.583611011505069,54.50833129882812],[-6.527803897857666,54.53982162475597],[-6.437018871307316,54.56887435913086],[-6.333023071289062,54.5984840393067],[-6.311635017394963,54.587226867675895],[-6.26403284072876,54.59251022338867]]]},"properties":{"ID_0":242,"ISO":"GB-CGV","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":124,"NAME_2":"Craigavon","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.147499084472599,55.05067443847661],[-7.174167156219482,55.03165817260748],[-7.153056144714355,55.018051147460994],[-7.131112098693847,54.983329772949276],[-7.086945056915283,54.983600616455135],[-7.097776889800969,54.96472167968744],[-7.083332061767521,54.924438476562614],[-7.053055763244629,54.91138076782238],[-7.040555000305062,54.86861038208013],[-7.039444923400879,54.83887863159191],[-7.010279178619385,54.81555175781244],[-7.069445133209229,54.80582809448248],[-7.109447002410832,54.81388854980469],[-7.162221908569337,54.85110092163097],[-7.195557117462158,54.84498977661144],[-7.209445953369141,54.883609771728516],[-7.276389122009277,54.88721084594726],[-7.262221813201847,54.91389083862299],[-7.317502021789437,54.92248916625976],[-7.373888015746956,54.91804885864269],[-7.414719104766845,54.94377136230469],[-7.392883777618408,54.94592285156256],[-7.400813102722167,54.98300170898449],[-7.380218982696476,55.02537155151372],[-7.347958087921142,55.04896926879883],[-7.305460929870605,55.04806137084966],[-7.263638973236084,55.066703796386825],[-7.233612060546875,55.05541610717768],[-7.176945209503174,55.06069564819347],[-7.147499084472599,55.05067443847661]]]},"properties":{"ID_0":242,"ISO":"GB-DRY","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":125,"NAME_2":"Derry","TYPE_2":"District","ENGTYPE_2":"London Borough (city)","NL_NAME_2":null,"VARNAME_2":"Londonderry"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.874722957611084,54.184402465820426],[-5.925000190734863,54.17889022827154],[-5.966114044189396,54.19359970092779],[-6.00389003753662,54.18555068969732],[-6.032224178314152,54.171100616455135],[-6.055277824401855,54.20166015625005],[-6.062778949737548,54.23083114624035],[-6.045279026031493,54.24666976928722],[-6.037775993347168,54.26361083984375],[-5.988891124725285,54.24528121948248],[-5.965557098388672,54.28416061401373],[-5.947500228881836,54.29055023193365],[-5.96722412109375,54.32054901123058],[-5.970555782318115,54.341110229492244],[-5.939445018768311,54.36278152465826],[-5.950353145599364,54.379711151123104],[-5.932500839233342,54.3905487060548],[-5.942780017852783,54.40972137451172],[-5.910000801086426,54.43333053588873],[-5.915555953979492,54.44971084594732],[-5.868053913116455,54.479160308838004],[-5.818612098693733,54.49166107177746],[-5.790832042694092,54.4661102294923],[-5.738056182861328,54.46054840087902],[-5.715835094451847,54.447219848632926],[-5.645833015441895,54.45875167846691],[-5.626944065093936,54.43458175659179],[-5.645833015441895,54.41791534423828],[-5.640276908874512,54.40013885498041],[-5.664722919464111,54.365695953369254],[-5.589167118072452,54.38458251953131],[-5.556944847106877,54.37652587890625],[-5.538611888885498,54.337081909179744],[-5.539721012115479,54.31208419799815],[-5.558610916137695,54.28736114501964],[-5.598055839538517,54.260417938232365],[-5.63638877868641,54.25041580200201],[-5.650278091430607,54.2293052673341],[-5.674168109893799,54.234027862548885],[-5.691389083862248,54.25125122070318],[-5.747498989105225,54.252361297607536],[-5.830832958221436,54.24041748046881],[-5.891389846801701,54.20680618286144],[-5.874722957611084,54.184402465820426]]]},"properties":{"ID_0":242,"ISO":"GB-DOW","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":126,"NAME_2":"Down","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.863120555877629,54.32888412475597],[-6.869012832641488,54.34420394897461],[-6.900617122650146,54.35240173339855],[-6.90691423416132,54.375503540039176],[-7.003812789916991,54.419204711914006],[-7.041902065276986,54.415897369384766],[-7.102208137512206,54.371002197265625],[-7.100008964538517,54.35840606689453],[-7.148999214172362,54.33770751953131],[-7.173195838928166,54.336410522461044],[-7.183473110198975,54.31648254394537],[-7.190278053283634,54.33694076538086],[-7.231667041778564,54.32194137573247],[-7.253057003021239,54.32833099365239],[-7.277779102325439,54.36333084106451],[-7.316112041473332,54.36582946777344],[-7.33861398696888,54.38360977172863],[-7.329720020294189,54.4033317565918],[-7.364448070526065,54.4302711486817],[-7.310554981231689,54.43666076660162],[-7.264165878295898,54.44832992553711],[-7.23083305358881,54.44832992553711],[-7.216668128967228,54.459438323974666],[-7.170001029968204,54.470550537109375],[-7.125277042388801,54.468891143798764],[-7.090557098388672,54.493610382080135],[-7.037776947021484,54.50305175781256],[-7.026668071746769,54.51943969726568],[-7.001667976379395,54.52165985107421],[-6.972777843475284,54.5380592346192],[-6.975275993347053,54.55804824829107],[-6.961391925811768,54.57666015625006],[-6.89611291885376,54.56444168090832],[-6.823891162872314,54.575828552246094],[-6.766666889190673,54.563888549804744],[-6.73861122131342,54.57221984863281],[-6.714723110198975,54.55138015747076],[-6.637776851654053,54.56583023071289],[-6.527803897857666,54.53982162475597],[-6.583611011505069,54.50833129882812],[-6.565278053283691,54.493610382080135],[-6.554677963256779,54.4633903503418],[-6.613058090209961,54.44944000244146],[-6.658054828643798,54.46416091918945],[-6.698890209197941,54.444438934326286],[-6.695556163787785,54.43138885498058],[-6.717223167419434,54.40388107299805],[-6.795835018157901,54.41305923461914],[-6.810277938842773,54.40111160278325],[-6.805552959442139,54.38026809692383],[-6.832777976989689,54.358890533447266],[-6.829998970031738,54.3413810729981],[-6.863120555877629,54.32888412475597]]]},"properties":{"ID_0":242,"ISO":"GB-DGN","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":127,"NAME_2":"Dungannon","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.711314201354924,54.60568237304693],[-7.693334102630558,54.600830078125],[-7.670000076293888,54.578609466552734],[-7.638611793518066,54.57971954345709],[-7.597500801086312,54.56138992309581],[-7.548889160156249,54.56528091430664],[-7.578610897064153,54.505550384521484],[-7.559721946716309,54.45637893676757],[-7.559165954589843,54.429161071777344],[-7.508056163787842,54.40499877929693],[-7.420557975769043,54.43610000610345],[-7.364448070526065,54.4302711486817],[-7.329720020294189,54.4033317565918],[-7.33861398696888,54.38360977172863],[-7.316112041473332,54.36582946777344],[-7.277779102325439,54.36333084106451],[-7.253057003021239,54.32833099365239],[-7.231667041778564,54.32194137573247],[-7.190278053283634,54.33694076538086],[-7.183473110198975,54.31648254394537],[-7.20209789276123,54.29770660400385],[-7.149693965911865,54.27251052856445],[-7.142300128936654,54.227310180664176],[-7.204390048980713,54.21961212158209],[-7.240301132202148,54.205215454101506],[-7.242999076843263,54.170719146728565],[-7.274088859558105,54.124519348144474],[-7.303291797637939,54.16611862182623],[-7.325190067291259,54.14891815185558],[-7.306694984435978,54.133213043212834],[-7.333889961242618,54.11952590942383],[-7.372791767120304,54.13812255859374],[-7.41258001327509,54.13702011108393],[-7.428689956664982,54.154422760009766],[-7.463780879974308,54.14081954956066],[-7.473382949829102,54.125923156738274],[-7.523079872131292,54.13432312011719],[-7.554275035858153,54.12801742553722],[-7.581388950347844,54.14471817016601],[-7.617269992828312,54.150718688964844],[-7.624574184417667,54.172821044921875],[-7.665857791900635,54.18392562866222],[-7.690956115722656,54.20652389526372],[-7.76294994354248,54.20911788940423],[-7.82814598083496,54.20552444458007],[-7.847545146942138,54.218421936035156],[-7.854437828063907,54.25841522216791],[-7.877947807312012,54.29872131347656],[-7.90594482421875,54.295513153076115],[-7.942931175231933,54.30731582641613],[-7.970230102539062,54.340015411376946],[-8.003613471984863,54.36278152465826],[-8.042832374572697,54.36540985107433],[-8.092052459716683,54.408618927001896],[-8.147810935974064,54.437412261963004],[-8.137898445129395,54.47091293334966],[-8.11441612243641,54.469009399414055],[-8.067432403564396,54.48870849609374],[-8.03971958160389,54.49040222167969],[-8.018127441406191,54.52550506591797],[-7.996231079101562,54.543502807617244],[-7.927524089813175,54.5359001159668],[-7.829245090484563,54.54470062255871],[-7.819436073303223,54.56250381469738],[-7.739074230194034,54.60013580322271],[-7.711314201354924,54.60568237304693]]]},"properties":{"ID_0":242,"ISO":"GB-FER","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":128,"NAME_2":"Fermanagh","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.690833091735782,54.770694732666016],[-5.742219924926701,54.7638893127442],[-5.7911119461059,54.77666091918951],[-5.889164924621525,54.76943969726562],[-5.99027681350708,54.773048400878906],[-6.006947040557804,54.798610687255916],[-6.019443035125732,54.81859970092779],[-5.959167003631591,54.820831298828175],[-5.944724082946721,54.83277130126953],[-5.965001106262093,54.85499954223633],[-5.998331069946289,54.850830078125114],[-6.028334140777531,54.85916137695318],[-6.038888931274414,54.89665985107422],[-6.023612022399902,54.93471908569336],[-6.035275936126652,54.94832992553716],[-6.101945877075138,54.98693847656256],[-6.011666774749756,55.03443908691412],[-5.978576183319035,55.0573120117188],[-5.964167118072453,55.05125045776367],[-5.976387977600098,55.00680541992193],[-5.993054866790771,54.98930740356451],[-5.957500934600829,54.97041702270513],[-5.919166088104191,54.96263885498046],[-5.893611907958928,54.9359703063966],[-5.879723072051945,54.9095840454101],[-5.840278148651122,54.89736175537121],[-5.795279026031436,54.84875106811529],[-5.800833225250244,54.822639465332024],[-5.759722232818604,54.829029083251946],[-5.791388034820557,54.850418090820426],[-5.763055801391602,54.8595848083496],[-5.721944808959961,54.84624862670904],[-5.690833091735782,54.8095817565918],[-5.690833091735782,54.770694732666016]]]},"properties":{"ID_0":242,"ISO":"GB-LRN","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":129,"NAME_2":"Larne","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.781112194061222,54.91110992431635],[-6.768610954284611,54.90137863159185],[-6.776946067810059,54.86526870727539],[-6.811388015747013,54.84666061401373],[-6.889999866485596,54.851661682128906],[-6.888887882232666,54.830829620361385],[-6.917448043823185,54.81586074829101],[-6.942224025726261,54.82777023315435],[-6.991942882537784,54.825271606445426],[-7.010279178619385,54.81555175781244],[-7.039444923400879,54.83887863159191],[-7.040555000305062,54.86861038208013],[-7.053055763244629,54.91138076782238],[-7.083332061767521,54.924438476562614],[-7.097776889800969,54.96472167968744],[-7.086945056915283,54.983600616455135],[-7.131112098693847,54.983329772949276],[-7.153056144714355,55.018051147460994],[-7.174167156219482,55.03165817260748],[-7.147499084472599,55.05067443847661],[-7.133056163787842,55.04208374023443],[-7.053612232208251,55.048751831054744],[-7.023612022399846,55.06874847412114],[-7.011388778686466,55.106803894042905],[-6.98638916015625,55.11930465698236],[-6.952500820159912,55.192916870117244],[-6.890277862548828,55.169303894043026],[-6.839612960815373,55.1662483215332],[-6.862224102020264,55.12554931640625],[-6.821389198303166,55.10194015502923],[-6.806943893432616,55.07054901123058],[-6.809721946716309,55.008609771728565],[-6.780002117156982,54.99082946777355],[-6.808611869812012,54.968891143798885],[-6.795279026031437,54.956939697265625],[-6.781112194061222,54.91110992431635]]]},"properties":{"ID_0":242,"ISO":"GB-LMV","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":130,"NAME_2":"Limavady","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.26403284072876,54.59251022338867],[-6.22972297668457,54.59165954589844],[-6.138055801391601,54.61861038208019],[-6.065834999084473,54.622768402099716],[-6.042778968811034,54.60832977294927],[-6.031668186187687,54.58082962036144],[-5.954721927642765,54.55443954467779],[-5.92389011383051,54.5397186279298],[-5.897223949432316,54.5013885498048],[-5.868053913116455,54.479160308838004],[-5.915555953979492,54.44971084594732],[-5.910000801086426,54.43333053588873],[-5.942780017852783,54.40972137451172],[-5.932500839233342,54.3905487060548],[-5.950353145599364,54.379711151123104],[-6.00916910171503,54.37638854980474],[-6.064167022705078,54.388328552246094],[-6.059999942779483,54.40748977661127],[-6.136943817138671,54.43722152709972],[-6.166388034820557,54.444160461425895],[-6.210473060607852,54.43323898315423],[-6.212502002716064,54.44971084594732],[-6.241943836212158,54.46665954589855],[-6.252501010894775,54.485549926757926],[-6.239168167114258,54.50222015380859],[-6.273612022399902,54.522220611572315],[-6.284166812896729,54.564159393310604],[-6.26403284072876,54.59251022338867]]]},"properties":{"ID_0":242,"ISO":"GB-LSB","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":131,"NAME_2":"Lisburn","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.969724178314209,54.7416610717774],[-6.936667919158935,54.751941680908146],[-6.92972278594965,54.76778030395502],[-6.901113033294621,54.775550842285156],[-6.917448043823185,54.81586074829101],[-6.888887882232666,54.830829620361385],[-6.889999866485596,54.851661682128906],[-6.811388015747013,54.84666061401373],[-6.776946067810059,54.86526870727539],[-6.768610954284611,54.90137863159185],[-6.781112194061222,54.91110992431635],[-6.736947059631348,54.928890228271534],[-6.694724082946777,54.9161109924317],[-6.655279159545842,54.92332839965826],[-6.640554904937743,54.93444061279296],[-6.58527994155878,54.921661376953125],[-6.541944026947021,54.92832946777343],[-6.520390033721867,54.945171356201115],[-6.506910800933781,54.9160614013673],[-6.491387844085693,54.89054870605469],[-6.471110820770264,54.827499389648494],[-6.480641841888371,54.782779693603565],[-6.470020771026554,54.7678108215332],[-6.498589992523137,54.70628738403326],[-6.559445858001709,54.7272186279298],[-6.573609828948975,54.71194076538086],[-6.60027599334711,54.716110229492244],[-6.683610916137638,54.695831298828125],[-6.721389770507812,54.70610809326172],[-6.761109828948918,54.736110687255795],[-6.781112194061222,54.730831146240234],[-6.826388835906926,54.74082946777344],[-6.890833854675293,54.728328704833984],[-6.945278167724609,54.72943878173833],[-6.969724178314209,54.7416610717774]]]},"properties":{"ID_0":242,"ISO":"GB-MFT","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":132,"NAME_2":"Magherafelt","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.241390228271484,55.31263732910156],[-6.226388931274414,55.295696258545036],[-6.260832786560058,55.289585113525504],[-6.268611907958928,55.30708312988275],[-6.241390228271484,55.31263732910156]]],[[[-5.978576183319035,55.0573120117188],[-6.011666774749756,55.03443908691412],[-6.101945877075138,54.98693847656256],[-6.140277862548828,54.98638153076177],[-6.168890953063964,55.02193832397466],[-6.192500114440804,55.02833175659173],[-6.22972297668457,55.06859970092773],[-6.235280036926269,55.08887863159185],[-6.228055000305176,55.12054824829107],[-6.324165821075439,55.10416030883795],[-6.346389770507812,55.10889053344732],[-6.363891124725342,55.12833023071288],[-6.395277023315429,55.13777160644531],[-6.425280094146615,55.126110076904354],[-6.477777004241887,55.148609161377],[-6.515277862548828,55.14915847778325],[-6.524167060852051,55.18861007690429],[-6.541470050811711,55.22124862670904],[-6.504167079925537,55.24708175659191],[-6.470832824707031,55.25180435180669],[-6.453054904937744,55.24041748046881],[-6.333611011505126,55.23875045776367],[-6.289722919464111,55.230415344238224],[-6.236946105956974,55.204303741455135],[-6.179166793823242,55.213748931884766],[-6.156942844390869,55.227359771728565],[-6.065276145935002,55.19708251953125],[-6.030834197998047,55.16819381713867],[-6.024168014526367,55.139305114746094],[-6.040832996368408,55.131248474121094],[-6.034721851348877,55.1029167175293],[-6.054721832275391,55.08402633666986],[-6.05583381652832,55.05875015258795],[-6.040278911590519,55.05402755737316],[-5.978576183319035,55.0573120117188]]]]},"properties":{"ID_0":242,"ISO":"GB-MYL","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":133,"NAME_2":"Moyle","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.64686393737793,54.18768692016607],[-6.605278968810978,54.218330383300895],[-6.576944828033447,54.21694183349615],[-6.537777900695687,54.23471832275402],[-6.511943817138672,54.225830078125],[-6.485556125640869,54.253608703613395],[-6.445003032684326,54.268329620361385],[-6.400834083557129,54.27637863159185],[-6.360001087188607,54.27693939208984],[-6.343889236450138,54.265270233154354],[-6.28194522857666,54.265270233154354],[-6.192224025726318,54.24610900878912],[-6.115003108978215,54.24222183227545],[-6.073610782623291,54.25249099731451],[-6.045279026031493,54.24666976928722],[-6.062778949737548,54.23083114624035],[-6.055277824401855,54.20166015625005],[-6.032224178314152,54.171100616455135],[-6.00389003753662,54.18555068969732],[-5.966114044189396,54.19359970092779],[-5.925000190734863,54.17889022827154],[-5.874722957611084,54.184402465820426],[-5.874166011810302,54.1559715270996],[-5.885832786560059,54.12014007568354],[-5.90250110626215,54.099582672119254],[-6.000833988189697,54.05430603027355],[-6.012500762939452,54.04152679443371],[-6.060833930969181,54.02264022827148],[-6.064258098602295,54.04008865356456],[-6.120233058929443,54.10583877563482],[-6.289166927337533,54.11041641235357],[-6.317078113555851,54.09527587890631],[-6.331875801086369,54.113914489746094],[-6.358060836791991,54.10821533203131],[-6.350285053253174,54.082878112793026],[-6.389462947845402,54.065113067626896],[-6.427567005157471,54.061515808105526],[-6.472287178039551,54.06690979003917],[-6.50372314453125,54.0567016601563],[-6.553584098815918,54.054161071777344],[-6.592153072357178,54.044822692871094],[-6.627350807189941,54.048114776611435],[-6.661441802978458,54.071823120117244],[-6.643348217010497,54.101821899414006],[-6.645637989044189,54.1269149780274],[-6.626046180725098,54.14981842041021],[-6.64686393737793,54.18768692016607]]]},"properties":{"ID_0":242,"ISO":"GB-NYM","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":134,"NAME_2":"Newry and Mourne","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":"Mourne"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.084166049957275,54.79193878173828],[-6.006947040557804,54.798610687255916],[-5.99027681350708,54.773048400878906],[-5.889164924621525,54.76943969726562],[-5.905835151672363,54.71221923828125],[-5.878611087799015,54.68295288085949],[-5.913610935211125,54.64651870727539],[-5.940557956695557,54.65972137451166],[-5.965001106262093,54.646938323974666],[-5.983891010284424,54.66305923461908],[-6.022499084472656,54.66249847412114],[-6.051390171051025,54.67110061645508],[-6.039721012115478,54.71416091918956],[-6.063610076904296,54.748050689697315],[-6.045557022094727,54.774440765380966],[-6.084166049957275,54.79193878173828]]]},"properties":{"ID_0":242,"ISO":"GB-NTA","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":135,"NAME_2":"Newtownabbey","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.807776927947941,54.6144409179688],[-5.885832786560059,54.62553024291992],[-5.821387767791748,54.65236282348644],[-5.750277042388915,54.674026489257756],[-5.723610877990666,54.667640686035206],[-5.654166221618652,54.670970916748104],[-5.634723186492919,54.68125152587901],[-5.571944236755257,54.6687583923341],[-5.577221870422306,54.6536102294923],[-5.604722023010254,54.64582824707031],[-5.616114139556885,54.630268096923764],[-5.650002002716064,54.61888885498058],[-5.698892116546631,54.61861038208019],[-5.72888708114624,54.628879547119254],[-5.756946086883488,54.61582946777355],[-5.807776927947941,54.6144409179688]]]},"properties":{"ID_0":242,"ISO":"GB-NDN","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":136,"NAME_2":"North Down","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.364448070526065,54.4302711486817],[-7.420557975769043,54.43610000610345],[-7.508056163787842,54.40499877929693],[-7.559165954589843,54.429161071777344],[-7.559721946716309,54.45637893676757],[-7.578610897064153,54.505550384521484],[-7.548889160156249,54.56528091430664],[-7.597500801086312,54.56138992309581],[-7.638611793518066,54.57971954345709],[-7.670000076293888,54.578609466552734],[-7.693334102630558,54.600830078125],[-7.653057098388615,54.625549316406364],[-7.611946105956974,54.62416076660162],[-7.559721946716309,54.642219543457024],[-7.543334960937499,54.63721084594732],[-7.482500076293888,54.6511116027832],[-7.465279102325382,54.64165878295909],[-7.414444923400879,54.668331146240284],[-7.390276908874513,54.692501068115234],[-7.329720020294189,54.70915985107421],[-7.30805492401123,54.73167037963873],[-7.268332004547118,54.72888183593756],[-7.240834236145019,54.74443817138672],[-7.205554962158202,54.75278091430664],[-7.109724998474063,54.74888992309564],[-7.082777976989746,54.760829925537166],[-7.022222042083683,54.768329620361435],[-6.999999999999886,54.77722167968744],[-6.92972278594965,54.76778030395502],[-6.936667919158935,54.751941680908146],[-6.969724178314209,54.7416610717774],[-6.994999885559082,54.730831146240234],[-6.987779140472412,54.693599700927734],[-7.000277996063232,54.674720764160206],[-6.968890190124512,54.66305923461908],[-6.972221851348876,54.643051147460994],[-6.94999980926508,54.60610961914074],[-6.961391925811768,54.57666015625006],[-6.975275993347053,54.55804824829107],[-6.972777843475284,54.5380592346192],[-7.001667976379395,54.52165985107421],[-7.026668071746769,54.51943969726568],[-7.037776947021484,54.50305175781256],[-7.090557098388672,54.493610382080135],[-7.125277042388801,54.468891143798764],[-7.170001029968204,54.470550537109375],[-7.216668128967228,54.459438323974666],[-7.23083305358881,54.44832992553711],[-7.264165878295898,54.44832992553711],[-7.310554981231689,54.43666076660162],[-7.364448070526065,54.4302711486817]]]},"properties":{"ID_0":242,"ISO":"GB-OMH","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":137,"NAME_2":"Omagh","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.414719104766845,54.94377136230469],[-7.373888015746956,54.91804885864269],[-7.317502021789437,54.92248916625976],[-7.262221813201847,54.91389083862299],[-7.276389122009277,54.88721084594726],[-7.209445953369141,54.883609771728516],[-7.195557117462158,54.84498977661144],[-7.162221908569337,54.85110092163097],[-7.109447002410832,54.81388854980469],[-7.069445133209229,54.80582809448248],[-7.010279178619385,54.81555175781244],[-6.991942882537784,54.825271606445426],[-6.942224025726261,54.82777023315435],[-6.917448043823185,54.81586074829101],[-6.901113033294621,54.775550842285156],[-6.92972278594965,54.76778030395502],[-6.999999999999886,54.77722167968744],[-7.022222042083683,54.768329620361435],[-7.082777976989746,54.760829925537166],[-7.109724998474063,54.74888992309564],[-7.205554962158202,54.75278091430664],[-7.240834236145019,54.74443817138672],[-7.268332004547118,54.72888183593756],[-7.30805492401123,54.73167037963873],[-7.329720020294189,54.70915985107421],[-7.390276908874513,54.692501068115234],[-7.414444923400879,54.668331146240284],[-7.465279102325382,54.64165878295909],[-7.482500076293888,54.6511116027832],[-7.543334960937499,54.63721084594732],[-7.559721946716309,54.642219543457024],[-7.611946105956974,54.62416076660162],[-7.653057098388615,54.625549316406364],[-7.693334102630558,54.600830078125],[-7.711314201354924,54.60568237304693],[-7.693349838256779,54.61369705200195],[-7.704639911651611,54.63259124755871],[-7.756030082702579,54.61971664428722],[-7.80938720703125,54.63909912109386],[-7.842618942260629,54.635063171386776],[-7.856639862060546,54.65179824829113],[-7.899225234985351,54.667396545410156],[-7.893633842468204,54.690784454345696],[-7.834397792816105,54.738483428955135],[-7.750647068023682,54.70547103881836],[-7.639691829681396,54.74738693237305],[-7.572354793548583,54.750385284423935],[-7.544353961944522,54.756790161132926],[-7.530230045318603,54.80861663818365],[-7.482840061187744,54.829929351806754],[-7.445333957672119,54.87998199462902],[-7.442993164062501,54.93450927734381],[-7.414719104766845,54.94377136230469]]]},"properties":{"ID_0":242,"ISO":"GB-STB","NAME_0":"United Kingdom","ID_1":2,"NAME_1":"Northern Ireland","ID_2":138,"NAME_2":"Strabane","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.068054914474487,57.104927062988395],[-2.0913889408111,57.067916870117294],[-2.155833959579411,57.018749237060604],[-2.180834054946899,56.984306335449276],[-2.206943988799935,56.963195800781364],[-2.194166898727303,56.94235992431646],[-2.19749903678894,56.90680694580078],[-2.21305608749384,56.88347244262695],[-2.25694298744196,56.8451385498048],[-2.275276899337654,56.84097290039057],[-2.324166059493962,56.79430389404297],[-2.401387929916382,56.77347183227545],[-2.435278892517033,56.740135192871094],[-2.494445085525513,56.74415969848644],[-2.535278081893921,56.771659851074276],[-2.594722986221257,56.77611160278326],[-2.619723081588745,56.78499984741205],[-2.668889999389648,56.82555007934575],[-2.673053979873657,56.85721969604498],[-2.65416693687439,56.88916015625006],[-2.686110973358097,56.91693878173828],[-2.725831985473632,56.932781219482536],[-2.75888895988453,56.958889007568466],[-2.80722188949585,56.958889007568466],[-2.830832004547119,56.97360992431646],[-2.872498989105168,56.98471832275396],[-2.928055047988778,56.96998977661144],[-3.026388883590698,56.97166061401372],[-3.059444904327392,56.96416091918945],[-3.087779045104924,56.94554901123047],[-3.107779026031494,56.897499084472656],[-3.120831966400146,56.8905487060548],[-3.159723043441715,56.90665817260753],[-3.198055028915405,56.909160614013615],[-3.274723052978459,56.9302711486817],[-3.293334960937443,56.900550842285156],[-3.395034074783268,56.88157272338867],[-3.461389064788818,56.87554931640625],[-3.503056049346867,56.8905487060548],[-3.549443006515503,56.88582992553716],[-3.569722890853768,56.89387893676769],[-3.569444894790593,56.921390533447266],[-3.588057041168212,56.929988861083984],[-3.624722957611084,56.9233283996582],[-3.662221908569335,56.929988861083984],[-3.687777996063175,56.920269012451165],[-3.727777004241887,56.92277908325201],[-3.743612051010132,56.932781219482536],[-3.79639005661005,56.9302711486817],[-3.781388998031616,56.964439392089844],[-3.745831966400146,56.99166107177728],[-3.74888801574707,57.02777099609375],[-3.736943006515446,57.07722091674805],[-3.67945408821106,57.095508575439396],[-3.619829893112183,57.082057952880916],[-3.42759895324707,57.082057952880916],[-3.345422029495239,57.089397430419865],[-3.323411941528263,57.11287307739252],[-3.345422029495239,57.148094177246094],[-3.33221697807312,57.17597198486328],[-3.280855894088688,57.18917846679693],[-3.189877986907959,57.25667953491205],[-3.122376918792668,57.27722549438488],[-3.029930114746037,57.26695251464844],[-2.985907077789307,57.29776763916027],[-2.966830015182438,57.32711791992199],[-2.969765901565552,57.36380386352545],[-3.004982948303165,57.400485992431584],[-3.010852098464966,57.44891357421874],[-2.991775035858097,57.47679138183599],[-2.93601393699646,57.50467300415038],[-2.891993045806828,57.52081680297863],[-2.809818029403687,57.52081680297863],[-2.73204493522644,57.506141662597706],[-2.707098007202148,57.513477325439446],[-2.705631971359253,57.529621124267514],[-2.749654054641724,57.56924057006847],[-2.78046989440918,57.58538055419933],[-2.823024034500065,57.63380432128917],[-2.821804046630859,57.69486236572277],[-2.787498950958252,57.697917938232415],[-2.718055963516122,57.69235992431652],[-2.684166908264103,57.68430709838861],[-2.598054885864201,57.68291473388672],[-2.553056001663208,57.67069625854498],[-2.496388912200871,57.67347335815429],[-2.385277032852173,57.669582366943466],[-2.341389894485474,57.671527862548764],[-2.3002769947052,57.69597244262695],[-2.244723081588745,57.68264007568371],[-2.178611993789673,57.67402648925787],[-2.119720935821533,57.7009735107423],[-2.077500104904175,57.7009735107423],[-2.038054943084717,57.692916870117244],[-1.999722003936767,57.697917938232415],[-1.991389989852905,57.6801376342774],[-1.91527795791626,57.673194885253906],[-1.886944055557251,57.638473510742195],[-1.824167013168335,57.613471984863274],[-1.82805597782135,57.58763885498053],[-1.801944017410278,57.54347229003906],[-1.806388020515328,57.53013992309582],[-1.779165983200073,57.49375152587896],[-1.779165983200073,57.460693359375],[-1.859166026115417,57.388473510742244],[-1.904167056083679,57.3659706115722],[-1.951944947242737,57.33097076416009],[-1.971943974494934,57.32513809204112],[-2.013055086135864,57.28097152709961],[-2.048612117767334,57.23406600952154],[-2.115828037261963,57.23821258544927],[-2.14713191986084,57.22121810913086],[-2.174858093261662,57.22121810913086],[-2.207057952880859,57.240001678466854],[-2.267874002456551,57.240001678466854],[-2.300071001052856,57.219429016113274],[-2.298285007476807,57.19528198242193],[-2.267874002456551,57.163978576660206],[-2.290235042572021,57.136253356933594],[-2.344789981841984,57.135356903076286],[-2.352839946746826,57.09958267211914],[-2.334058046340942,57.082588195800895],[-2.10420298576355,57.11120986938476],[-2.068054914474487,57.104927062988395]]]},"properties":{"ID_0":242,"ISO":"GB-ABD","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":139,"NAME_2":"Aberdeenshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.048612117767334,57.23406600952154],[-2.075834035873413,57.180416107177734],[-2.071389913558903,57.144859313964844],[-2.046390056610051,57.14069366455084],[-2.068054914474487,57.104927062988395],[-2.10420298576355,57.11120986938476],[-2.334058046340942,57.082588195800895],[-2.352839946746826,57.09958267211914],[-2.344789981841984,57.135356903076286],[-2.290235042572021,57.136253356933594],[-2.267874002456551,57.163978576660206],[-2.298285007476807,57.19528198242193],[-2.300071001052856,57.219429016113274],[-2.267874002456551,57.240001678466854],[-2.207057952880859,57.240001678466854],[-2.174858093261662,57.22121810913086],[-2.14713191986084,57.22121810913086],[-2.115828037261963,57.23821258544927],[-2.048612117767334,57.23406600952154]]]},"properties":{"ID_0":242,"ISO":"GB-ABE","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":140,"NAME_2":"Aberdeen","TYPE_2":"Unitary District (city)","ENGTYPE_2":"Unitary District (city)","NL_NAME_2":null,"VARNAME_2":"Aberdeen City"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.079322099685669,56.47496032714838],[-3.146891117095947,56.49051284790039],[-3.170222997665405,56.51676177978515],[-3.168764114379883,56.53134536743164],[-3.142514944076538,56.56926345825189],[-3.084182977676392,56.607177734375],[-3.129390001296997,56.615928649902344],[-3.155641078948975,56.64801025390625],[-3.181890010833683,56.658218383789176],[-3.262094974517822,56.66988372802729],[-3.278135061264038,56.67717742919922],[-3.335011005401554,56.723842620849666],[-3.355427026748657,56.76029968261713],[-3.355427026748657,56.79675674438482],[-3.391881942748967,56.852169036865234],[-3.395034074783268,56.88157272338867],[-3.293334960937443,56.900550842285156],[-3.274723052978459,56.9302711486817],[-3.198055028915405,56.909160614013615],[-3.159723043441715,56.90665817260753],[-3.120831966400146,56.8905487060548],[-3.107779026031494,56.897499084472656],[-3.087779045104924,56.94554901123047],[-3.059444904327392,56.96416091918945],[-3.026388883590698,56.97166061401372],[-2.928055047988778,56.96998977661144],[-2.872498989105168,56.98471832275396],[-2.830832004547119,56.97360992431646],[-2.80722188949585,56.958889007568466],[-2.75888895988453,56.958889007568466],[-2.725831985473632,56.932781219482536],[-2.686110973358097,56.91693878173828],[-2.65416693687439,56.88916015625006],[-2.673053979873657,56.85721969604498],[-2.668889999389648,56.82555007934575],[-2.619723081588745,56.78499984741205],[-2.594722986221257,56.77611160278326],[-2.535278081893921,56.771659851074276],[-2.494445085525513,56.74415969848644],[-2.435278892517033,56.740135192871094],[-2.454721927642765,56.70347213745123],[-2.474721908569336,56.71986007690435],[-2.514723062515259,56.722915649414],[-2.515279054641723,56.698749542236435],[-2.481944084167367,56.704303741455014],[-2.434722900390625,56.702362060546875],[-2.450834035873413,56.67819595336914],[-2.480278015136719,56.67180633544922],[-2.508610010147038,56.649860382080135],[-2.505278110504094,56.63236236572265],[-2.480278015136719,56.62097167968756],[-2.549166917800903,56.5606956481933],[-2.606945991516113,56.549861907958984],[-2.634167909622192,56.526248931884815],[-2.707499027252197,56.49902725219738],[-2.730833053588754,56.46597290039074],[-2.786389112472534,56.478473663330014],[-2.822092056274357,56.47708511352544],[-2.845024108886662,56.51676177978515],[-2.928147077560368,56.51676177978515],[-2.968980073928776,56.509471893310604],[-3.063766956329346,56.50072097778325],[-3.079322099685669,56.47496032714838]]]},"properties":{"ID_0":242,"ISO":"GB-ANS","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":141,"NAME_2":"Angus","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":"Forfar"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.467501163482609,56.69152832031256],[-6.450832843780518,56.68624877929698],[-6.466945171356143,56.65291595458979],[-6.497500896453857,56.6223602294923],[-6.565278053283691,56.58680725097662],[-6.593056201934758,56.58569335937506],[-6.638054847717284,56.57236099243163],[-6.678055763244572,56.58124923706066],[-6.618611812591552,56.62014007568359],[-6.598611831664982,56.638748168945426],[-6.548057079315186,56.66041564941406],[-6.534167766571045,56.67541503906244],[-6.467501163482609,56.69152832031256]]],[[[-5.299166202545109,56.6400413513183],[-5.169188976287785,56.630920410156364],[-5.144714832305851,56.61651611328125],[-5.075194835662842,56.607299804687614],[-5.038574218749943,56.6234741210938],[-5.020019054412842,56.64093017578125],[-4.970823764800969,56.644287109375114],[-4.924377918243408,56.65948486328131],[-4.863892078399658,56.64672851562506],[-4.790771961212158,56.6539306640625],[-4.757224082946777,56.64332962036133],[-4.708611965179387,56.641510009765625],[-4.671945095062256,56.63972091674804],[-4.633612155914193,56.64971923828125],[-4.617524147033635,56.63150787353527],[-4.628056049346924,56.612220764160206],[-4.595580101013184,56.607482910156364],[-4.558332920074406,56.57027053833008],[-4.595276832580566,56.57444000244146],[-4.692779064178466,56.54804992675781],[-4.660831928253117,56.534439086914176],[-4.649171829223633,56.51922225952154],[-4.676392078399658,56.491699218750114],[-4.639380931854247,56.47185134887695],[-4.665526866912842,56.4603271484375],[-4.722229957580566,56.453918457031364],[-4.725832939147892,56.437484741210994],[-4.770556926727238,56.42694091796875],[-4.803298950195256,56.4083480834962],[-4.833006858825627,56.36291503906255],[-4.775816917419319,56.34307861328131],[-4.778891086578368,56.31832885742199],[-4.719178199768066,56.32830810546875],[-4.649203777313232,56.32083511352545],[-4.671691894531192,56.30029296875],[-4.657409191131592,56.28112792968761],[-4.685180187225342,56.24847412109381],[-4.68048095703125,56.19848632812506],[-4.611256122589111,56.08835983276372],[-4.598025798797607,56.07788085937499],[-4.597777843475228,55.960327148437614],[-4.591363906860352,55.94153594970703],[-4.6686110496521,55.957359313964844],[-4.703610897064209,55.99236297607433],[-4.786389827728271,56.016803741455135],[-4.836389064788818,56.07847213745128],[-4.841390132903996,56.05847167968755],[-4.808610916137695,56.01486206054699],[-4.767499923706055,55.987083435058594],[-4.836945056915282,55.982917785644524],[-4.869165897369327,56.01486206054699],[-4.868611812591553,56.037082672119254],[-4.906387805938664,56.05541610717784],[-4.894167900085335,55.998470306396484],[-4.908610820770264,55.95958328247076],[-4.9330539703368,55.94208145141613],[-4.949168205261174,55.8979148864746],[-4.970276832580566,55.88319396972662],[-4.979166030883789,55.860973358154354],[-5.045833110809326,55.87097167968756],[-5.074722766876164,55.898750305175724],[-5.105277061462346,55.899307250976506],[-5.18972110748291,55.945972442626946],[-5.208055019378605,55.9162483215332],[-5.239720821380558,55.902084350585994],[-5.200277805328312,55.83041763305664],[-5.317501068115178,55.85680389404297],[-5.326943874359131,55.884304046630966],[-5.352499961852971,55.89708328247082],[-5.349167823791504,55.92680740356451],[-5.330277919769287,55.95819473266601],[-5.346944808959904,55.966251373291065],[-5.341389179229736,55.99680709838873],[-5.314723014831486,56.01180648803711],[-5.290832996368351,56.04819488525396],[-5.265832901000977,56.07069396972661],[-5.217500209808293,56.09708404541026],[-5.203053951263428,56.128749847412166],[-5.152501106262206,56.13791656494135],[-5.100276947021428,56.15625],[-5.061388015747013,56.20763778686518],[-5.104721069335938,56.2020835876466],[-5.105833053588809,56.1856956481933],[-5.136943817138672,56.15902709960943],[-5.193612098693848,56.14930725097661],[-5.236945152282715,56.128471374511776],[-5.256388187408447,56.09708404541026],[-5.283057212829533,56.089027404785206],[-5.297500133514404,56.06486129760748],[-5.335278034210091,56.06680679321295],[-5.337501049041748,56.03097152709972],[-5.381944179534912,56.00374984741205],[-5.428054809570256,56.010971069335994],[-5.450276851654053,56.00597381591797],[-5.44416618347168,55.95958328247076],[-5.428054809570256,55.9473609924317],[-5.418610095977726,55.896251678466854],[-5.376389980316105,55.851806640625114],[-5.343610763549691,55.82986068725586],[-5.314167022705021,55.785415649414176],[-5.328055858612061,55.76291656494151],[-5.350833892822266,55.76514053344721],[-5.394166946411132,55.750137329101676],[-5.447501182556152,55.70986175537121],[-5.446389198303166,55.69180679321295],[-5.475832939147948,55.63486099243158],[-5.47527885437006,55.60458374023448],[-5.45861196517933,55.59041595458989],[-5.486944198608342,55.57847213745117],[-5.492499828338565,55.54597091674799],[-5.51361179351801,55.497081756591854],[-5.547500133514404,55.44319534301758],[-5.548610210418701,55.417915344238274],[-5.515277862548828,55.37097167968744],[-5.561944961547851,55.32291793823247],[-5.601943969726562,55.30708312988275],[-5.681387901306151,55.3084716796875],[-5.71805477142334,55.29319381713873],[-5.764165878295842,55.289859771728516],[-5.798055171966552,55.298194885253956],[-5.796945095062198,55.33569335937494],[-5.804722785949706,55.34791564941406],[-5.798055171966552,55.39180374145513],[-5.754721164703312,55.4209709167481],[-5.720832824706974,55.43013763427734],[-5.712500095367375,55.46569442749023],[-5.71416711807251,55.51013946533209],[-5.705277919769287,55.55208206176752],[-5.716945171356201,55.57764053344721],[-5.694167137145996,55.587360382080014],[-5.678612232208251,55.61736297607433],[-5.663610935211181,55.66652679443365],[-5.669167041778564,55.68402862548828],[-5.635832786560002,55.69763946533209],[-5.571387767791748,55.76652908325195],[-5.553610801696721,55.76736068725591],[-5.478055000305062,55.805694580078125],[-5.496387958526611,55.817081451416016],[-5.538611888885498,55.78597259521496],[-5.615276813506966,55.75986099243163],[-5.614167213439941,55.77763748168951],[-5.661388874053955,55.79680633544927],[-5.671946048736515,55.81513977050787],[-5.663610935211181,55.84736251831055],[-5.628610134124756,55.882083892822266],[-5.604166030883789,55.9156951904298],[-5.680277824401798,55.88597106933588],[-5.686388015747069,55.91680526733398],[-5.666388988494873,55.94847106933605],[-5.640832901000977,55.96458435058593],[-5.595833778381234,56.00986099243164],[-5.613611221313477,56.01430511474621],[-5.667499065399113,55.96430587768555],[-5.708055973052979,55.96569442749029],[-5.649722099304199,56.02902603149419],[-5.584167003631592,56.092361450195305],[-5.543056011199894,56.087360382080135],[-5.529167175292969,56.09708404541026],[-5.568612098693848,56.11430740356451],[-5.50416707992548,56.1845817565918],[-5.525279045104924,56.18791580200201],[-5.576943874359074,56.154582977295036],[-5.590277194976806,56.16847229003906],[-5.55805492401123,56.21180725097656],[-5.551943778991699,56.23819351196288],[-5.621943950653076,56.264583587646534],[-5.651388168334961,56.29319381713873],[-5.640832901000977,56.31180572509771],[-5.596943855285588,56.32374954223644],[-5.539721012115479,56.34986114501953],[-5.524166107177678,56.38624954223638],[-5.47527885437006,56.41736221313482],[-5.484168052673339,56.437362670898544],[-5.443610191345215,56.452915191650334],[-5.41416597366333,56.450416564941406],[-5.343054771423283,56.45819473266607],[-5.28583288192749,56.45069503784179],[-5.268054962158202,56.45791625976568],[-5.228610038757267,56.44513702392584],[-5.191390037536621,56.44819259643555],[-5.142499923706055,56.47874832153326],[-5.155832767486515,56.499862670898494],[-5.186388969421386,56.459304809570256],[-5.236945152282715,56.451248168945426],[-5.261388778686467,56.462360382080135],[-5.282501220703068,56.46041488647461],[-5.361944198608398,56.4701385498048],[-5.400277137756348,56.46652603149414],[-5.410277843475285,56.48986053466797],[-5.462500095367432,56.49347305297857],[-5.435833930969238,56.520973205566406],[-5.403055191040039,56.525970458984425],[-5.381388187408334,56.51013946533209],[-5.313611030578556,56.52902603149408],[-5.31138896942133,56.550140380859375],[-5.368054866790771,56.523750305175895],[-5.420277118682861,56.5487518310548],[-5.364167213439885,56.59680557250976],[-5.299166202545109,56.6400413513183]]],[[[-6.235277175903263,56.315971374511776],[-6.248610019683838,56.34319305419922],[-6.190278053283691,56.332637786865234],[-6.019721031188964,56.36486053466808],[-5.998611927032471,56.386528015136776],[-6.029722213745117,56.3929176330567],[-6.058611869812012,56.37513732910161],[-6.111390113830453,56.36513900756847],[-6.147500991821289,56.36597061157226],[-6.195278167724552,56.35791778564459],[-6.209721088409424,56.37236022949219],[-6.200279235839844,56.39125061035156],[-6.150277137756291,56.414585113525334],[-6.120832920074406,56.451248168945426],[-6.077498912811166,56.44791793823253],[-6.020833015441895,56.46708297729492],[-6.034165859222412,56.48791503906244],[-6.13361215591425,56.47402954101562],[-6.15861177444458,56.46347045898449],[-6.21305608749384,56.4701385498048],[-6.239721775054932,56.46541595458979],[-6.269165992736816,56.477638244628906],[-6.307500839233398,56.48041534423834],[-6.301387786865234,56.497081756591854],[-6.250277996063175,56.494583129882926],[-6.220277786254883,56.500415802001896],[-6.189166069030762,56.485694885253906],[-6.15138912200922,56.50125122070324],[-6.188055992126465,56.51013946533209],[-6.228055000305176,56.52902603149408],[-6.262498855590819,56.52264022827154],[-6.333054065704345,56.532638549804744],[-6.338055133819523,56.55347061157226],[-6.316389083862305,56.57902908325195],[-6.315277099609374,56.60235977172857],[-6.223055839538573,56.61097335815435],[-6.226944923400822,56.632083892822266],[-6.197501182556152,56.64291763305664],[-6.166388034820557,56.64180374145508],[-6.147500991821289,56.65319442749018],[-6.059165954589787,56.634582519531364],[-6.013610839843692,56.58930587768548],[-5.988055229187012,56.57875061035156],[-5.956944942474365,56.52319335937511],[-5.798055171966552,56.51569366455084],[-5.765277862548714,56.489028930664176],[-5.719167232513428,56.4859733581543],[-5.666944980621338,56.44958496093744],[-5.646389961242676,56.42458343505871],[-5.695277214050293,56.36986160278326],[-5.743610858917179,56.342082977295036],[-5.833055019378662,56.31041717529297],[-5.888611793517952,56.3223609924317],[-5.849166870117131,56.342361450195426],[-5.889167785644531,56.353195190429744],[-5.932500839233342,56.321250915527344],[-5.985833168029784,56.32263946533209],[-6.040832996368408,56.29319381713873],[-6.12694501876831,56.29652786254877],[-6.138055801391601,56.28569412231445],[-6.246943950653019,56.28819274902355],[-6.26416778564453,56.26374816894537],[-6.323612213134765,56.26930618286132],[-6.337501049041748,56.28152847290044],[-6.381944179534855,56.28597259521484],[-6.369166851043701,56.332637786865234],[-6.349721908569279,56.34708404541021],[-6.303609848022461,56.344860076904354],[-6.267499923705998,56.324306488037166],[-6.235277175903263,56.315971374511776]]],[[[-5.584722995758057,56.462917327880916],[-5.572500228881835,56.49486160278332],[-5.533054828643742,56.50736236572277],[-5.472500801086369,56.552917480468864],[-5.433055877685546,56.55125045776373],[-5.486390113830566,56.517917633056754],[-5.50416707992548,56.49930572509771],[-5.584722995758057,56.462917327880916]]],[[[-6.910276889801025,56.44041824340825],[-6.976387977600097,56.471248626708984],[-6.977500915527344,56.51652908325201],[-6.933610916137695,56.529582977295036],[-6.873054981231633,56.51821136474621],[-6.818611145019418,56.54319381713867],[-6.792500972747746,56.53458404541021],[-6.773055076599121,56.547084808349666],[-6.725833892822266,56.53958511352539],[-6.725277900695801,56.52736282348633],[-6.788609981536864,56.52736282348633],[-6.8125,56.51208496093756],[-6.823054790496769,56.49097061157232],[-6.878611087799071,56.488193511963004],[-6.896944046020451,56.470695495605526],[-6.889165878295898,56.44625091552739],[-6.910276889801025,56.44041824340825]]],[[[-5.556388854980411,56.409584045410156],[-5.51361179351801,56.41430664062494],[-5.525832176208496,56.391803741455135],[-5.552501201629525,56.371528625488395],[-5.589167118072452,56.379859924316456],[-5.556388854980411,56.409584045410156]]],[[[-6.386387825012206,56.351528167724666],[-6.384722232818546,56.33736038208008],[-6.418055057525635,56.30764007568371],[-6.43638801574707,56.332637786865234],[-6.386387825012206,56.351528167724666]]],[[[-5.656943798065186,56.21680450439458],[-5.665278911590576,56.233470916748104],[-5.649166107177734,56.26374816894537],[-5.61749887466425,56.24041748046875],[-5.634167194366455,56.20291519165038],[-5.656943798065186,56.21680450439458]]],[[[-5.68916702270502,56.200695037841854],[-5.674722194671631,56.19124984741211],[-5.695277214050293,56.16097259521496],[-5.747498989105225,56.16152954101574],[-5.729166030883732,56.18902587890636],[-5.68916702270502,56.200695037841854]]],[[[-5.800833225250244,56.0006942749024],[-5.850278854370059,55.94235992431646],[-5.851388931274413,55.92930603027344],[-5.900278091430663,55.881526947021484],[-5.935832977294922,55.867084503173885],[-5.963611125945987,55.79208374023449],[-6.064723014831543,55.805694580078125],[-6.079721927642822,55.81819534301758],[-6.096944808959961,55.87125015258789],[-6.093054771423339,55.891250610351676],[-6.042500972747803,55.940418243408146],[-5.998611927032471,55.952640533447266],[-5.977499961853027,55.94930648803716],[-5.9480562210083,55.96319580078136],[-6.001389980316161,55.98014068603526],[-6.001389980316161,55.989307403564446],[-5.9480562210083,56.03847122192383],[-5.863612174987793,56.07847213745128],[-5.821387767791748,56.089584350585994],[-5.79638910293579,56.113193511963004],[-5.748054981231689,56.128192901611385],[-5.720832824706974,56.148193359375114],[-5.691389083862248,56.13624954223644],[-5.687500953674316,56.11152648925787],[-5.730278015136605,56.07319259643555],[-5.779720783233643,56.01402664184582],[-5.800833225250244,56.0006942749024]]],[[[-6.189722061157226,56.1037483215332],[-6.176945209503174,56.1209716796875],[-6.138055801391601,56.116249084472656],[-6.166388034820557,56.07875061035167],[-6.195278167724552,56.06180572509777],[-6.183610916137695,56.04319381713878],[-6.204722881317139,56.02958297729498],[-6.265276908874512,56.0359725952149],[-6.248610019683838,56.06180572509777],[-6.245833873748779,56.08569335937499],[-6.213612079620248,56.10569381713873],[-6.189722061157226,56.1037483215332]]],[[[-6.226388931274414,56.028751373291016],[-6.238055229186955,56.00624847412115],[-6.268611907958928,56.02486038208019],[-6.226388931274414,56.028751373291016]]],[[[-6.486944198608342,55.670696258545036],[-6.525833129882699,55.69235992431635],[-6.493053913116454,55.714862823486385],[-6.503611087799072,55.72680664062506],[-6.455833911895695,55.77291488647472],[-6.488056182861271,55.79291534423828],[-6.45972204208374,55.813751220703175],[-6.45527791976923,55.85319519042969],[-6.392498970031681,55.858196258545036],[-6.370832920074463,55.87513732910156],[-6.337501049041748,55.867362976074276],[-6.320834159851017,55.85013961791998],[-6.295834064483642,55.87513732910156],[-6.269167900085392,55.882362365722656],[-6.198057174682616,55.92458343505864],[-6.161943912506047,55.934028625488224],[-6.120832920074406,55.93513870239257],[-6.131390094757023,55.8904151916505],[-6.101945877075138,55.84597396850597],[-6.104165077209473,55.814304351806754],[-6.08472204208374,55.78319549560547],[-6.046389102935791,55.76235961914057],[-6.049168109893742,55.73625183105469],[-6.030834197998047,55.72847366333019],[-6.040278911590519,55.70958328247082],[-6.019721031188964,55.68264007568354],[-6.090832233428955,55.6462516784669],[-6.144722938537598,55.625972747802784],[-6.191944122314396,55.632915496826286],[-6.214166164398193,55.62069320678722],[-6.238612174987793,55.59263992309576],[-6.26694393157959,55.57875061035156],[-6.336389064788818,55.58874893188476],[-6.328609943389836,55.6256942749024],[-6.297500133514347,55.650138854980526],[-6.260276794433594,55.6576385498048],[-6.28194522857666,55.69847106933588],[-6.304165840148926,55.713470458984425],[-6.338611125945988,55.71986007690435],[-6.332500934600772,55.74152755737305],[-6.261388778686523,55.76430511474609],[-6.259167194366397,55.78263854980468],[-6.345276832580566,55.784862518310604],[-6.383609771728459,55.7301406860351],[-6.414166927337589,55.705417633056754],[-6.486944198608342,55.670696258545036]]],[[[-5.767500877380371,55.668193817138786],[-5.775833129882755,55.67458343505871],[-5.730278015136605,55.70958328247082],[-5.728055953979492,55.66652679443365],[-5.767500877380371,55.668193817138786]]]]},"properties":{"ID_0":242,"ISO":"GB-AGB","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":142,"NAME_2":"Argyll and Bute","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":"Earra-Ghaidheal agus Bòd"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.750951051712036,56.07049179077142],[-3.80521297454834,56.10653686523443],[-3.846137046813965,56.10766983032237],[-3.861366033554077,56.129344940185604],[-3.839694023132211,56.15687561035156],[-3.824373006820679,56.1925888061524],[-3.758888959884587,56.21583175659174],[-3.72305703163147,56.18972015380865],[-3.66416597366333,56.187221527099545],[-3.655555009841862,56.196941375732536],[-3.61166596412653,56.19805145263672],[-3.561388015746957,56.186939239502],[-3.56249809265131,56.1772193908692],[-3.642776012420654,56.15526962280279],[-3.630553007125854,56.12825012207031],[-3.631387948989868,56.10638046264648],[-3.71555590629572,56.097499847412166],[-3.750951051712036,56.07049179077142]]]},"properties":{"ID_0":242,"ISO":"GB-CLK","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":143,"NAME_2":"Clackmannanshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.038609981536808,54.991947174072266],[-4.986947059631348,55.00777053833007],[-4.92444610595703,54.998050689697266],[-4.889166831970215,55.0147209167481],[-4.870555877685547,55.036659240722656],[-4.800557136535588,55.04417037963867],[-4.701388835906982,55.04193878173839],[-4.630556106567383,55.05389022827143],[-4.619720935821476,55.076938629150504],[-4.644722938537541,55.085830688476506],[-4.647500991821232,55.11972045898443],[-4.61111307144165,55.1402702331544],[-4.538609027862549,55.16138076782232],[-4.488890171051025,55.15166091918951],[-4.467479228973332,55.15789031982433],[-4.437222003936768,55.1755485534669],[-4.431330204009953,55.14205932617199],[-4.403335094451903,55.153049468994254],[-4.402223110198918,55.1733283996582],[-4.384724140167179,55.181938171386825],[-4.377223014831542,55.217498779296875],[-4.353332996368408,55.24139022827148],[-4.348888874053898,55.26277160644537],[-4.321667194366455,55.27527999877941],[-4.296945095062142,55.307781219482415],[-4.244166851043701,55.30443954467779],[-4.231389999389648,55.31666946411144],[-4.188612937927189,55.313888549804744],[-4.135279178619385,55.28416061401367],[-4.113334178924561,55.29999923706055],[-4.113612174987793,55.31666946411144],[-4.085555076599121,55.34722137451177],[-4.097777843475342,55.37137985229498],[-4.094168186187744,55.39611053466808],[-4.070556163787785,55.41498947143554],[-4.003057956695557,55.435001373291016],[-4.008614063262883,55.454158782959034],[-3.983174085617065,55.461067199707024],[-3.956665992736816,55.45444107055663],[-3.878612041473275,55.45499038696283],[-3.825834035873413,55.446388244628906],[-3.769443988799935,55.40916061401373],[-3.743056058883667,55.37110900878912],[-3.708333015441895,55.36278152465826],[-3.701389074325562,55.32083129882812],[-3.642222881317139,55.28971862792962],[-3.616667032241821,55.29277038574213],[-3.607223987579232,55.31888961791998],[-3.571944952011052,55.32971954345709],[-3.567501068115178,55.38388824462896],[-3.500277996063176,55.40972137451172],[-3.443609952926636,55.40444183349615],[-3.410557985305786,55.411941528320426],[-3.345000028610229,55.411941528320426],[-3.316390037536564,55.438331604003906],[-3.252499103546143,55.428890228271484],[-3.241389036178532,55.41888046264654],[-3.283056020736694,55.4013786315919],[-3.303333044052124,55.384990692138615],[-3.309443950653019,55.34915924072271],[-3.285000085830632,55.34111022949224],[-3.207499980926456,55.3722190856933],[-3.164166927337532,55.349720001220646],[-3.130279064178467,55.35667037963873],[-3.104444980621338,55.352218627929744],[-3.098331928253117,55.32971954345709],[-3.056945085525456,55.30722045898448],[-3.03444504737854,55.27304840087896],[-2.997498035430908,55.26832962036132],[-2.944998025894165,55.28805923461925],[-2.891110897064152,55.27804946899414],[-2.872498989105168,55.2619400024414],[-2.898056983947697,55.25305175781261],[-2.868889093399048,55.2369384765625],[-2.863888978958073,55.21860885620123],[-2.884166002273446,55.20193862915038],[-2.889445066452026,55.15526962280279],[-2.85944390296936,55.136379241943416],[-2.850555896758976,55.112220764160156],[-2.884166002273446,55.08137893676758],[-2.92833304405201,55.071388244628906],[-2.950556993484497,55.04055023193364],[-2.977777004241943,55.03998947143555],[-3.033334970474243,55.05250167846691],[-3.030833005905151,55.0166587829591],[-3.049704074859619,54.98513412475591],[-3.119721889495793,54.975971221923885],[-3.154721975326538,54.96430587768554],[-3.209722042083683,54.975971221923885],[-3.278054952621403,54.965694427490284],[-3.316943883895817,54.97680664062505],[-3.373054027557316,54.970138549804744],[-3.406388998031616,54.975971221923885],[-3.437499046325627,54.99236297607416],[-3.449722051620483,54.976249694824276],[-3.476943969726562,54.96736145019542],[-3.52805590629572,54.96736145019542],[-3.556387901306152,54.978473663330135],[-3.586388111114502,54.94152832031256],[-3.56250095367426,54.90430450439453],[-3.596389055252075,54.88291549682623],[-3.639166116714363,54.87847137451183],[-3.705832958221436,54.88319396972662],[-3.761945962905884,54.85625076293957],[-3.795834064483586,54.864307403564446],[-3.807501077651978,54.844306945800895],[-3.860279083251896,54.844581604003906],[-3.825834035873413,54.822639465332024],[-3.875277996063118,54.80180740356451],[-3.940279006957894,54.785415649414],[-3.964723110198975,54.770694732666016],[-4.045279026031437,54.76930618286127],[-4.065834045410043,54.78069305419921],[-4.049167156219482,54.82097244262707],[-4.071944236755371,54.829582214355526],[-4.089722156524657,54.81402587890619],[-4.089166164398193,54.77486038208007],[-4.159722805023193,54.77902603149408],[-4.220276832580566,54.8245849609375],[-4.230278015136719,54.85486221313482],[-4.255834102630558,54.83625030517584],[-4.306387901306096,54.84541702270502],[-4.358612060546761,54.86125183105474],[-4.382499217987004,54.8801383972168],[-4.419722080230713,54.884860992431754],[-4.420278072357178,54.85208511352533],[-4.410277843475285,54.82791519165039],[-4.352499008178711,54.81291580200201],[-4.340278148651066,54.79791641235345],[-4.358612060546761,54.78041839599621],[-4.355277061462401,54.75847244262695],[-4.365831851959229,54.7315292358399],[-4.350832939147892,54.70513916015625],[-4.364165782928467,54.69097137451183],[-4.407498836517334,54.677639007568416],[-4.444722175598087,54.69291687011713],[-4.481389045715331,54.69847106933594],[-4.521944046020508,54.71347045898449],[-4.546390056610107,54.73319625854498],[-4.568611145019531,54.73652648925787],[-4.58583307266224,54.76569366455083],[-4.680277824401855,54.80402755737298],[-4.714722156524545,54.82569503784185],[-4.763055801391602,54.82680511474604],[-4.788055896758976,54.83569335937506],[-4.80916690826416,54.86041641235357],[-4.850833892822266,54.86597061157238],[-4.872499942779484,54.85319519042969],[-4.938055038452148,54.83069610595703],[-4.960832118988037,54.80291748046886],[-4.948612213134709,54.79624938964855],[-4.91083288192749,54.72624969482433],[-4.906387805938664,54.70152664184576],[-4.865832805633488,54.68180465698242],[-4.881389141082707,54.670696258544865],[-4.876388072967529,54.63958358764659],[-4.921944141387882,54.6426391601563],[-4.964723110198974,54.668193817138786],[-4.973054885864258,54.69041824340825],[-4.948056221008301,54.70097351074219],[-4.993610858917235,54.734859466552784],[-5.001389980316104,54.77264022827154],[-5.043055057525635,54.793193817138665],[-5.138055801391602,54.850139617920036],[-5.145833969116211,54.87041854858398],[-5.185276985168343,54.9118041992188],[-5.187499046325626,54.97652816772466],[-5.170278072357177,55.00041580200201],[-5.10916805267334,55.01847076416027],[-5.074722766876164,54.995971679687614],[-5.064166069030762,54.92763900756836],[-5.032499790191594,54.90791702270519],[-4.99138879776001,54.917083740234375],[-4.997498989105168,54.93847274780285],[-5.038609981536808,54.991947174072266]]]},"properties":{"ID_0":242,"ISO":"GB-DGY","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":144,"NAME_2":"Dumfries and Galloway","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.822092056274357,56.47708511352544],[-2.868055105209351,56.46319580078124],[-2.934165954589787,56.46569442749018],[-2.988611936569213,56.45069503784179],[-3.056514024734497,56.455696105956974],[-3.079322099685669,56.47496032714838],[-3.063766956329346,56.50072097778325],[-2.968980073928776,56.509471893310604],[-2.928147077560368,56.51676177978515],[-2.845024108886662,56.51676177978515],[-2.822092056274357,56.47708511352544]]]},"properties":{"ID_0":242,"ISO":"GB-DND","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":145,"NAME_2":"Dundee","TYPE_2":"Unitary District (city)","ENGTYPE_2":"Unitary District (city)","NL_NAME_2":null,"VARNAME_2":"Dundee City"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.467479228973332,55.15789031982433],[-4.444540023803711,55.200832366943416],[-4.444540023803711,55.2819595336914],[-4.474586009979248,55.310504913330135],[-4.533174991607609,55.339046478271484],[-4.576743125915527,55.381111145019524],[-4.569231033325195,55.396137237548885],[-4.465571880340519,55.385620117187614],[-4.461063861846924,55.41115951538085],[-4.483600139617863,55.44571304321289],[-4.479092121124268,55.45772933959961],[-4.432519912719727,55.48327255249023],[-4.426511764526367,55.517822265625114],[-4.443036079406738,55.54486465454101],[-4.491108894348145,55.55688476562506],[-4.582045078277587,55.59136199951177],[-4.510039806365853,55.621482849121094],[-4.501026153564453,55.64552307128912],[-4.534078121185303,55.65603637695318],[-4.610695838928223,55.65753936767584],[-4.618207931518555,55.677070617675895],[-4.558114051818791,55.71463012695324],[-4.517907142639159,55.75934219360357],[-4.506277084350529,55.750869750976676],[-4.347330093383789,55.710868835449155],[-4.284173011779785,55.690868377685604],[-4.250916004180851,55.6859970092774],[-4.217688083648625,55.64101409912121],[-4.180130004882812,55.61697769165038],[-4.172617912292367,55.59894943237316],[-4.20717191696167,55.57190704345709],[-4.196653842926025,55.55237579345697],[-4.064451217651254,55.553878784179794],[-4.029899120330811,55.57190704345709],[-3.992338895797729,55.570404052734425],[-3.960791110992374,55.540359497070256],[-3.963794946670532,55.50730895996105],[-3.983174085617065,55.461067199707024],[-4.008614063262883,55.454158782959034],[-4.003057956695557,55.435001373291016],[-4.070556163787785,55.41498947143554],[-4.094168186187744,55.39611053466808],[-4.097777843475342,55.37137985229498],[-4.085555076599121,55.34722137451177],[-4.113612174987793,55.31666946411144],[-4.113334178924561,55.29999923706055],[-4.135279178619385,55.28416061401367],[-4.188612937927189,55.313888549804744],[-4.231389999389648,55.31666946411144],[-4.244166851043701,55.30443954467779],[-4.296945095062142,55.307781219482415],[-4.321667194366455,55.27527999877941],[-4.348888874053898,55.26277160644537],[-4.353332996368408,55.24139022827148],[-4.377223014831542,55.217498779296875],[-4.384724140167179,55.181938171386825],[-4.402223110198918,55.1733283996582],[-4.403335094451903,55.153049468994254],[-4.431330204009953,55.14205932617199],[-4.437222003936768,55.1755485534669],[-4.467479228973332,55.15789031982433]]]},"properties":{"ID_0":242,"ISO":"GB-EAY","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":146,"NAME_2":"East Ayrshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.125696182250977,56.005580902099666],[-4.120912075042725,55.96242523193371],[-4.098583221435547,55.956047058105526],[-4.047551155090332,55.957641601562614],[-4.044360160827637,55.92414855957031],[-4.069877147674561,55.90820312500006],[-4.149620056152344,55.909797668456974],[-4.161842823028508,55.89171981811529],[-4.213646888732853,55.88981628417969],[-4.269435882568303,55.91613006591797],[-4.294700145721322,55.89823532104503],[-4.35162878036499,55.90525436401373],[-4.359961032867431,55.91191864013672],[-4.364751815795842,55.97564697265625],[-4.301668167114258,55.957218170166016],[-4.2744460105896,55.95888900756847],[-4.267776966094971,55.98804855346691],[-4.287500858306827,56.0166587829591],[-4.198334217071533,56.01971817016613],[-4.158332824706974,56.02582931518566],[-4.125696182250977,56.005580902099666]]]},"properties":{"ID_0":242,"ISO":"GB-EDU","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":147,"NAME_2":"East Dunbartonshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.364721059799137,55.94638442993164],[-2.364850997924805,55.94625091552734],[-2.365672111511174,55.94541549682617],[-2.435832977294922,55.895271301269645],[-2.40055608749384,55.886379241943416],[-2.426388025283756,55.86388015747082],[-2.533056020736637,55.85638046264654],[-2.595000982284489,55.827770233154354],[-2.640278100967407,55.83361053466802],[-2.654444932937622,55.848331451416016],[-2.735832929611206,55.82804870605468],[-2.780556917190551,55.83832931518566],[-2.820858955383301,55.82167816162104],[-3.028450965881234,55.91139221191406],[-3.055566072463932,55.9273414611817],[-3.06107306480402,55.947639465332024],[-2.989722013473397,55.957916259765625],[-2.972501039504948,55.97013854980469],[-2.923054933547974,55.972915649414176],[-2.884721994400024,56.00041580200201],[-2.86083197593689,56.039585113525504],[-2.84361100196827,56.039585113525504],[-2.81583309173584,56.063751220703125],[-2.774166107177678,56.06735992431634],[-2.698610067367497,56.05819320678716],[-2.690834045410156,56.063751220703125],[-2.624166965484619,56.052360534668026],[-2.588609933853149,56.01597213745117],[-2.55472207069397,56.002639770507926],[-2.5313880443573,56.007915496826286],[-2.478611946105957,55.99763870239252],[-2.464167118072453,55.98764038085937],[-2.398612022399902,55.9698600769043],[-2.364167928695621,55.94694900512695],[-2.364578008651677,55.94652938842768],[-2.364721059799137,55.94638442993164]]]},"properties":{"ID_0":242,"ISO":"GB-ELN","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":148,"NAME_2":"East Lothian","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":"Haddington"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.240317821502629,55.79342651367198],[-4.251543045043888,55.74981689453125],[-4.225224971771126,55.7350807189942],[-4.225224971771126,55.690868377685604],[-4.250916004180851,55.6859970092774],[-4.284173011779785,55.690868377685604],[-4.347330093383789,55.710868835449155],[-4.506277084350529,55.750869750976676],[-4.517907142639159,55.75934219360357],[-4.516318798065129,55.76287841796881],[-4.488380908966008,55.77613067626953],[-4.441013813018742,55.786659240722656],[-4.356803894042969,55.81916046142589],[-4.347330093383789,55.794025421142635],[-4.292593955993539,55.795078277587834],[-4.25680494308466,55.80350112915039],[-4.240317821502629,55.79342651367198]]]},"properties":{"ID_0":242,"ISO":"GB-ERW","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":149,"NAME_2":"East Renfrewshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.395265102386475,55.81739425659174],[-3.393668889999389,55.89225387573247],[-3.43513298034668,55.903415679931584],[-3.449486970901489,55.91617584228521],[-3.449739933013916,55.99652862548834],[-3.388612031936532,55.990139007568416],[-3.3513889312743,56.001525878906364],[-3.321388959884643,55.984306335449276],[-3.265279054641667,55.9793052673341],[-3.16749906539917,55.98597335815441],[-3.11805605888361,55.957637786865234],[-3.078310012817383,55.94791793823242],[-3.087460041046086,55.89065933227539],[-3.189531087875366,55.88268280029308],[-3.360150098800602,55.81172943115246],[-3.395265102386475,55.81739425659174]]]},"properties":{"ID_0":242,"ISO":"GB-EDH","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":150,"NAME_2":"Edinburgh","TYPE_2":"Unitary District (city)","ENGTYPE_2":"Unitary District (city)","NL_NAME_2":null,"VARNAME_2":"Édimbourg|Edimburgo"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.443611145019474,58.12763977050792],[-6.377500057220458,58.09097290039068],[-6.35694408416748,58.03958511352545],[-6.36527681350708,58.01680374145508],[-6.385831832885742,58.00041580200195],[-6.434165954589787,58.01430511474614],[-6.472498893737679,58.00125122070312],[-6.453054904937744,57.98875045776367],[-6.448610782623234,57.965137481689446],[-6.471388816833496,57.93708419799805],[-6.497500896453857,57.939861297607536],[-6.535833835601807,57.917915344238274],[-6.578054904937687,57.91041564941401],[-6.652500152587891,57.917915344238274],[-6.709167003631591,57.96680450439459],[-6.704721927642822,57.992362976074276],[-6.724167823791504,58.012638092041065],[-6.75083398818964,58.005973815917905],[-6.720832824706974,57.959861755371094],[-6.673056125640868,57.922637939453075],[-6.668612003326416,57.87930679321288],[-6.792500972747746,57.892639160156364],[-6.734722137451172,57.827362060546925],[-6.78805685043335,57.809860229492294],[-6.848054885864258,57.802639007568416],[-6.871388912200928,57.7762489318847],[-6.939165115356444,57.75541687011719],[-6.964168071746826,57.72986221313488],[-7.054721832275334,57.777915954589844],[-7.086945056915283,57.807918548583984],[-7.116944789886418,57.814029693603516],[-7.133612155914306,57.83791732788086],[-7.100833892822266,57.839862823486385],[-7.074168205261173,57.82430648803705],[-7.046944141387939,57.82764053344732],[-6.982501029968205,57.863471984863395],[-6.92083215713501,57.874862670898494],[-6.960833072662297,57.88708496093756],[-6.924166202545166,57.909862518310604],[-6.853610992431527,57.89986038208008],[-6.848054885864258,57.913471221923885],[-6.943612098693848,57.9495849609375],[-6.985833168029785,57.95569610595703],[-7.016945838928223,57.9520835876466],[-7.080277919769287,57.96680450439459],[-7.08583211898798,58.01930618286133],[-7.050278186798096,58.020973205566456],[-7.057499885559025,58.06069564819335],[-7.098611831665039,58.068473815918026],[-7.114723205566349,58.11347198486333],[-7.131388187408447,58.138748168945305],[-7.090833187103271,58.16374969482421],[-7.102499961853026,58.18569564819347],[-7.066945075988713,58.194583892822266],[-7.050278186798096,58.23125076293951],[-6.999166011810246,58.23430633544921],[-6.975833892822265,58.21958160400401],[-6.908610820770207,58.20597076416022],[-6.944722175598145,58.19430541992187],[-6.878055095672607,58.179306030273544],[-6.835278034210148,58.203472137451286],[-6.756944179534798,58.19430541992187],[-6.764166831970214,58.22541809082037],[-6.790278911590575,58.236526489257926],[-6.828610897064209,58.28430557250988],[-6.796945095062255,58.30708312988286],[-6.754166126251221,58.306526184082145],[-6.724721908569222,58.328472137451165],[-6.653610229492131,58.35180664062499],[-6.62583398818964,58.34902954101568],[-6.579166889190674,58.365139007568416],[-6.550833225250244,58.36597061157237],[-6.523611068725586,58.39513778686535],[-6.45638990402216,58.42041778564465],[-6.399168014526367,58.44985961914062],[-6.354722023010254,58.46041488647455],[-6.332500934600772,58.47930526733398],[-6.300834178924504,58.48152923583984],[-6.271389961242619,58.49652862548839],[-6.260276794433594,58.51736068725591],[-6.22138786315918,58.50069427490246],[-6.214722156524601,58.484306335449325],[-6.181944847106934,58.469581604003956],[-6.190278053283691,58.4426383972169],[-6.168056011199951,58.42680740356457],[-6.205832958221379,58.38458251953119],[-6.210833072662354,58.36208343505853],[-6.191390037536621,58.349582672119084],[-6.207499027252196,58.32597351074224],[-6.231945037841796,58.31680679321288],[-6.245277881622314,58.29375076293945],[-6.283054828643799,58.28597259521478],[-6.279723167419433,58.26902770996093],[-6.321390151977481,58.26847076416015],[-6.31583309173584,58.24430465698237],[-6.343610763549748,58.23736190795904],[-6.291389942169189,58.20680618286138],[-6.236946105956974,58.223472595214844],[-6.201388835906982,58.24847030639659],[-6.136387825012207,58.261249542236435],[-6.166388034820557,58.209304809570256],[-6.206944942474308,58.188472747802734],[-6.255833148956242,58.17958450317388],[-6.28583288192749,58.20430374145508],[-6.307500839233398,58.20513916015625],[-6.338611125945988,58.18597412109381],[-6.388610839843749,58.199584960937436],[-6.366944789886475,58.15263748168951],[-6.370832920074463,58.13069534301758],[-6.443611145019474,58.12763977050792]]],[[[-6.887499809265137,58.27180480957037],[-6.854721069335881,58.26652908325202],[-6.820833206176701,58.23986053466797],[-6.786943912506103,58.2243041992188],[-6.803612232208252,58.20680618286138],[-6.867499828338565,58.20708465576171],[-6.875278949737549,58.23764038085943],[-6.89305591583252,58.25208282470703],[-6.887499809265137,58.27180480957037]]],[[[-7.131388187408447,58.038192749023544],[-7.109166145324706,58.03125],[-7.10138988494873,58.00402832031261],[-7.153612136840819,58.00791549682623],[-7.171389102935791,58.029582977294915],[-7.131388187408447,58.038192749023544]]],[[[-7.001388072967472,57.922084808349666],[-6.986945152282715,57.9026374816895],[-7.011944770812874,57.88013839721691],[-7.049722194671517,57.8848609924317],[-7.030831813812198,57.91875076293945],[-7.001388072967472,57.922084808349666]]],[[[-6.700833797454776,57.87291717529297],[-6.650278091430664,57.87069320678711],[-6.669722080230713,57.84930419921881],[-6.700833797454776,57.87291717529297]]],[[[-8.611390113830566,57.82819366455089],[-8.56361007690424,57.82069396972661],[-8.595278739929142,57.80458450317388],[-8.611390113830566,57.82819366455089]]],[[[-7.215278148651123,57.78541564941412],[-7.207499980926457,57.76541519165038],[-7.246387958526611,57.76013946533203],[-7.260276794433594,57.77986145019537],[-7.215278148651123,57.78541564941412]]],[[[-7.161943912506104,57.73902893066412],[-7.149167060851994,57.71875],[-7.198054790496769,57.70180511474609],[-7.218056201934814,57.711528778076286],[-7.198610782623234,57.73374938964856],[-7.161943912506104,57.73902893066412]]],[[[-7.387500762939453,57.63458251953136],[-7.37249994277954,57.65958404541026],[-7.349721908569336,57.66374969482433],[-7.290833950042725,57.65347290039073],[-7.198610782623234,57.6973609924317],[-7.161943912506104,57.68319320678711],[-7.163609981536865,57.654582977294915],[-7.138609886169376,57.648193359375],[-7.093610763549804,57.651527404785206],[-7.063055038452092,57.64014053344732],[-7.103055953979492,57.607639312744084],[-7.153056144714355,57.62708282470708],[-7.154722213745059,57.5890274047851],[-7.100277900695801,57.593750000000114],[-7.130834102630615,57.53791809082025],[-7.163055896758975,57.50847244262695],[-7.249722957611084,57.50680541992199],[-7.26527786254877,57.51208496093756],[-7.322500228881836,57.50902938842767],[-7.324165821075326,57.52736282348633],[-7.35416603088379,57.552639007568416],[-7.399166107177733,57.56541824340826],[-7.42139005661005,57.581249237060604],[-7.461388111114445,57.56402587890636],[-7.482500076293888,57.567081451416065],[-7.519722938537597,57.602638244628906],[-7.483612060546874,57.662918090820305],[-7.41972112655634,57.65347290039073],[-7.387500762939453,57.63458251953136]]],[[[-7.405831813812256,57.54763793945307],[-7.370833873748779,57.549304962158196],[-7.337499141693115,57.529582977295036],[-7.35583305358881,57.50680541992199],[-7.405831813812256,57.54763793945307]]],[[[-7.204166889190617,57.484306335449325],[-7.249166965484619,57.479026794433594],[-7.278611183166504,57.496528625488224],[-7.256389141082765,57.50652694702159],[-7.214722156524657,57.50152587890624],[-7.204166889190617,57.484306335449325]]],[[[-7.204723834991455,57.503192901611385],[-7.171389102935791,57.50291824340815],[-7.157499790191594,57.48319625854498],[-7.174167156219482,57.47013854980474],[-7.206389904022216,57.48875045776378],[-7.204723834991455,57.503192901611385]]],[[[-7.219165802001953,57.45819473266607],[-7.205276966094971,57.41485977172852],[-7.238056182861327,57.39513778686535],[-7.301389217376652,57.39736175537109],[-7.351387977600097,57.417915344238395],[-7.393610954284668,57.42597198486329],[-7.411944866180363,57.47069549560553],[-7.37972211837763,57.47486114501959],[-7.367498874664249,57.49152755737304],[-7.287498950958252,57.48541641235351],[-7.26694393157959,57.46597290039073],[-7.241387844085636,57.47624969482427],[-7.219165802001953,57.45819473266607]]],[[[-7.26694393157959,57.10291671752941],[-7.373055934906006,57.1031951904298],[-7.412500858306827,57.14847183227545],[-7.42472219467163,57.1926383972168],[-7.423056125640869,57.2165260314942],[-7.440833091735783,57.23875045776361],[-7.425278186798097,57.25402832031256],[-7.423056125640869,57.285972595214844],[-7.397500038146915,57.302082061767514],[-7.399722099304142,57.347637176513786],[-7.411388874053956,57.38791656494146],[-7.397500038146915,57.400138854980526],[-7.339167118072453,57.403194427490234],[-7.315834045410099,57.388473510742244],[-7.27416706085205,57.38180541992193],[-7.260276794433594,57.358470916748104],[-7.227499008178597,57.34791564941417],[-7.236388206481877,57.32485961914056],[-7.220279216766301,57.303749084472656],[-7.190834045410157,57.298194885253906],[-7.203610897064152,57.27958297729492],[-7.251945018768253,57.259582519531364],[-7.264721870422363,57.19486236572271],[-7.245277881622258,57.162082672119084],[-7.277501106262207,57.14263916015631],[-7.245831966400146,57.135971069335994],[-7.211390018463079,57.112915039062614],[-7.26694393157959,57.10291671752941]]],[[[-7.278055191040039,57.092082977294865],[-7.271944046020508,57.077640533447266],[-7.30805492401123,57.057361602783146],[-7.310832977294922,57.08541488647461],[-7.278055191040039,57.092082977294865]]],[[[-7.511794090270939,56.995693206787166],[-7.506944179534912,57.0051383972168],[-7.454165935516357,57.02597045898449],[-7.383611202239989,57.004859924316406],[-7.377500057220345,56.99041748046881],[-7.423056125640869,56.97180557250982],[-7.435832023620605,56.94763946533203],[-7.529168128967285,56.94652938842784],[-7.556389808654728,56.95069503784191],[-7.553610801696777,56.97152709960943],[-7.515278816223088,56.9793052673341],[-7.511794090270939,56.995693206787166]]],[[[-7.567500114440861,56.94985961914074],[-7.531943798065128,56.94652938842784],[-7.508612155914307,56.922084808349716],[-7.551389217376708,56.908473968505916],[-7.581945896148681,56.931526184082145],[-7.567500114440861,56.94985961914074]]],[[[-7.619165897369327,56.831806182861385],[-7.620833873748779,56.801807403564446],[-7.653611183166504,56.79513931274414],[-7.658610820770263,56.82347106933594],[-7.619165897369327,56.831806182861385]]]]},"properties":{"ID_0":242,"ISO":"GB-ELS","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":151,"NAME_2":"Eilean Siar","TYPE_2":"Island Area","ENGTYPE_2":"Island Area","NL_NAME_2":null,"VARNAME_2":"Western Isles"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.512501001358032,55.99986648559576],[-3.539443016052189,55.98666000366216],[-3.598611116409188,55.99110031127941],[-3.66722202301014,55.942211151123104],[-3.719166040420532,55.93193817138666],[-3.773890018463135,55.90250015258789],[-3.808888912200927,55.895271301269645],[-3.815001964568978,55.90639114379888],[-3.8938889503479,55.93333053588878],[-3.865000963211002,55.95610809326183],[-3.922498941421395,55.95750045776373],[-3.937222003936768,55.98443984985363],[-3.97472095489502,55.98527908325195],[-3.972779035568237,56.00638961792003],[-4.011261940002441,56.01226806640625],[-3.988538980484009,56.02302932739258],[-3.921557903289795,56.03738403320324],[-3.824273109435978,56.04376220703125],[-3.768455028533879,56.051734924316406],[-3.729166984558105,56.05069351196289],[-3.727500915527344,56.03291702270502],[-3.670833110809326,56.01625061035156],[-3.578612089157047,56.018749237060604],[-3.512501001358032,55.99986648559576]]]},"properties":{"ID_0":242,"ISO":"GB-FAL","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":152,"NAME_2":"Falkirk","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.630553007125854,56.12825012207031],[-3.584722042083683,56.13471984863281],[-3.550833940505981,56.152500152588],[-3.529165983200073,56.14165878295898],[-3.472500085830631,56.14387893676769],[-3.386945962905884,56.13721084594738],[-3.359998941421452,56.161941528320426],[-3.323889017105103,56.16749954223638],[-3.297498941421509,56.18526840209972],[-3.261111974716186,56.19638824462896],[-3.264168977737427,56.21915817260748],[-3.288887977600041,56.23305892944336],[-3.34833288192749,56.23666000366211],[-3.362777948379517,56.26472091674805],[-3.334443092346191,56.281940460205135],[-3.299722909927311,56.281658172607415],[-3.290555953979492,56.30305099487305],[-3.258610010147094,56.301670074462834],[-3.24194502830494,56.31361007690435],[-3.2623450756073,56.350971221923885],[-3.19416689872736,56.365417480468864],[-3.116942882537842,56.391803741455135],[-3.090833902359009,56.39513778686517],[-3.039167881011849,56.41624832153332],[-2.99194407463068,56.42013931274413],[-2.945832967758065,56.43652725219721],[-2.93638801574707,56.447082519531364],[-2.883611917495728,56.452915191650334],[-2.85805606842041,56.43986129760748],[-2.810832977294922,56.44541549682623],[-2.803056001663094,56.43513870239269],[-2.81250095367426,56.38874816894525],[-2.824722051620483,56.377361297607536],[-2.880278110504094,56.362361907958984],[-2.836389064788705,56.353195190429744],[-2.778055906295776,56.332916259765625],[-2.687499046325683,56.326805114746094],[-2.655833005905095,56.31763839721691],[-2.631388902664185,56.29597091674805],[-2.584166049957162,56.27819442749035],[-2.68861198425293,56.221527099609375],[-2.780277967453003,56.20013809204107],[-2.811944961547852,56.18541717529291],[-2.844722986221313,56.18291854858404],[-2.894166946411076,56.207084655761776],[-2.955276966094914,56.210140228271484],[-2.985277891159058,56.198749542236385],[-3.017499923705998,56.1743049621582],[-3.045278072357178,56.16764068603527],[-3.084167003631535,56.1390266418457],[-3.144721031188908,56.119304656982536],[-3.17361211776722,56.06208419799816],[-3.213610887527466,56.06402587890631],[-3.230834007263127,56.054584503173885],[-3.26583194732666,56.05930709838867],[-3.337500095367432,56.03930664062494],[-3.35583305358881,56.02597045898432],[-3.387499094009399,56.022640228271484],[-3.388612031936532,56.00736236572271],[-3.514723062515258,56.0404167175293],[-3.546389102935734,56.039859771728516],[-3.575834035873413,56.05847167968755],[-3.663611888885498,56.04680633544922],[-3.731349945068303,56.06379699707031],[-3.750951051712036,56.07049179077142],[-3.71555590629572,56.097499847412166],[-3.631387948989868,56.10638046264648],[-3.630553007125854,56.12825012207031]]]},"properties":{"ID_0":242,"ISO":"GB-FIF","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":153,"NAME_2":"Fife","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.356803894042969,55.81916046142589],[-4.355751991271916,55.86409378051769],[-4.35162878036499,55.90525436401373],[-4.294700145721322,55.89823532104503],[-4.269435882568303,55.91613006591797],[-4.213646888732853,55.88981628417969],[-4.161842823028508,55.89171981811529],[-4.119316101074162,55.868331909179744],[-4.079444885253849,55.868331909179744],[-4.069877147674561,55.85557174682617],[-4.084230899810791,55.82730102539068],[-4.176805019378662,55.830867767334034],[-4.196805000305176,55.82034301757807],[-4.189435958862305,55.795078277587834],[-4.20206880569458,55.784553527832024],[-4.240317821502629,55.79342651367198],[-4.25680494308466,55.80350112915039],[-4.292593955993539,55.795078277587834],[-4.347330093383789,55.794025421142635],[-4.356803894042969,55.81916046142589]]]},"properties":{"ID_0":242,"ISO":"GB-GLG","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":154,"NAME_2":"Glasgow","TYPE_2":"Unitary District (city)","ENGTYPE_2":"Unitary District (city)","NL_NAME_2":null,"VARNAME_2":"Glasgow City"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.761389017105045,57.63118362426763],[-3.728888988494759,57.58499908447277],[-3.708889961242618,57.577499389648494],[-3.71166801452631,57.532489776611264],[-3.687222003936711,57.52249908447265],[-3.679167032241821,57.493049621582145],[-3.684721946716194,57.44610977172851],[-3.719166040420532,57.42277908325206],[-3.701667070388794,57.40805053710937],[-3.6663880348205,57.430828094482365],[-3.610277891158943,57.43444061279302],[-3.578331947326603,57.448879241943416],[-3.498055934906006,57.457500457763786],[-3.438611030578556,57.42610931396496],[-3.397778034210148,57.421390533447315],[-3.384444952011051,57.381389617920036],[-3.418334007263126,57.35776901245111],[-3.44527792930603,57.3294410705567],[-3.47305607795704,57.31721115112305],[-3.482779026031437,57.29888153076183],[-3.44527792930603,57.28583145141613],[-3.454998016357365,57.23722076416021],[-3.420278072357178,57.223049163818416],[-3.427222967147827,57.202499389648494],[-3.452500104904174,57.17805099487315],[-3.474999904632568,57.17860031127935],[-3.530833959579411,57.163890838623104],[-3.556390047073364,57.145549774169915],[-3.614166021347045,57.117488861083984],[-3.641665935516357,57.11582946777338],[-3.67945408821106,57.095508575439396],[-3.736943006515446,57.07722091674805],[-3.74888801574707,57.02777099609375],[-3.745831966400146,56.99166107177728],[-3.781388998031616,56.964439392089844],[-3.79639005661005,56.9302711486817],[-3.816668033599796,56.93416976928711],[-3.878056049346867,56.924720764160156],[-3.940557003021127,56.947490692138615],[-3.960000038146859,56.929161071777344],[-3.976110935211182,56.89554977416998],[-4.033055782318058,56.90250015258789],[-4.099165916442814,56.89527130126959],[-4.16416692733759,56.90861129760742],[-4.202221870422306,56.89305114746087],[-4.201111793518066,56.86943817138672],[-4.253056049346924,56.85305023193359],[-4.303055763244629,56.84498977661138],[-4.332777976989746,56.824169158935604],[-4.366665840148926,56.826660156249936],[-4.393423080444336,56.812953948974666],[-4.436561107635498,56.7784423828125],[-4.47444391250599,56.78583145141607],[-4.514166831970215,56.803600311279354],[-4.551668167114201,56.76361083984381],[-4.578333854675293,56.75500106811535],[-4.573609828948975,56.727489471435604],[-4.597777843475228,56.70861053466791],[-4.586390972137451,56.69250106811523],[-4.64527702331543,56.6755485534668],[-4.702776908874512,56.67026901245123],[-4.708611965179387,56.641510009765625],[-4.757224082946777,56.64332962036133],[-4.790771961212158,56.6539306640625],[-4.863892078399658,56.64672851562506],[-4.924377918243408,56.65948486328131],[-4.970823764800969,56.644287109375114],[-5.020019054412842,56.64093017578125],[-5.038574218749943,56.6234741210938],[-5.075194835662842,56.607299804687614],[-5.144714832305851,56.61651611328125],[-5.169188976287785,56.630920410156364],[-5.299166202545109,56.6400413513183],[-5.320277214050293,56.64875030517578],[-5.27861213684082,56.670139312744254],[-5.24972200393671,56.669860839843864],[-5.185276985168343,56.699584960937614],[-5.247499942779541,56.705696105957145],[-5.165277957916203,56.78069305419916],[-5.101944923400879,56.82430648803711],[-5.173610210418701,56.852085113525504],[-5.264722824096623,56.85347366333002],[-5.255279064178467,56.84236145019531],[-5.17972278594965,56.846527099609375],[-5.122500896453857,56.825695037841854],[-5.218612194061222,56.76458358764642],[-5.253610134124756,56.737361907958984],[-5.249166011810246,56.71819305419921],[-5.302499771118107,56.71208190917968],[-5.352499961852971,56.68458175659185],[-5.355834007263127,56.67430496215826],[-5.406390190124512,56.64236068725586],[-5.434165954589844,56.64180374145508],[-5.470279216766301,56.614582061767635],[-5.493055820465031,56.60680389404297],[-5.55916690826416,56.54458236694341],[-5.613611221313477,56.51958465576166],[-5.678612232208251,56.500137329101506],[-5.695277214050293,56.51180648803722],[-5.752499103546086,56.517917633056754],[-5.771944999694824,56.53236007690435],[-5.865277767181396,56.544029235839844],[-5.928609848022461,56.56347274780279],[-5.960833072662297,56.58319473266596],[-5.979166030883789,56.61041641235363],[-6.001389980316161,56.61930465698242],[-6.007500171661319,56.64597320556646],[-5.914721012115479,56.66291809082037],[-5.838612079620304,56.66069412231445],[-5.76583194732666,56.6948623657226],[-5.721944808959961,56.6973609924317],[-5.71805477142334,56.70986175537115],[-5.770833015441781,56.708194732666016],[-5.839166164398193,56.67263793945318],[-5.926943778991699,56.67541503906244],[-5.936388969421387,56.687084197998104],[-5.980832099914437,56.673194885253906],[-6.030834197998047,56.67986297607422],[-6.050834178924561,56.69263839721691],[-6.117500782012939,56.69597244262695],[-6.141387939453068,56.68236160278332],[-6.186944007873535,56.687084197998104],[-6.228055000305176,56.71652603149408],[-6.18861198425293,56.75485992431646],[-6.12027883529663,56.76541519165039],[-6.064723014831543,56.760692596435604],[-5.998055934906006,56.77097320556634],[-5.959722995758057,56.78430557250982],[-5.905276775360107,56.7506942749024],[-5.888611793517952,56.76235961914074],[-5.88749885559082,56.785137176513786],[-5.836390018463135,56.7779159545899],[-5.794723033904972,56.79486083984375],[-5.866943836212101,56.810974121093864],[-5.860277175903263,56.82986068725586],[-5.78583383560175,56.837081909179744],[-5.756390094757023,56.857360839843864],[-5.786387920379639,56.866249084472706],[-5.746388912200928,56.884304046630916],[-5.799167156219482,56.89097213745122],[-5.872499942779484,56.8801383972169],[-5.921388149261475,56.88069534301769],[-5.924166202545166,56.89180374145502],[-5.880277156829834,56.89958190917969],[-5.88361120223999,56.922637939453125],[-5.854166984558105,56.940139770507926],[-5.843612194061279,56.99041748046881],[-5.830276966094971,57.0087509155274],[-5.806942939758244,57.01430511474621],[-5.727499008178711,57.01819610595703],[-5.708055973052979,56.9906959533692],[-5.670833110809269,56.97708511352539],[-5.624722003936768,56.974861145019474],[-5.53027677536005,56.99347305297846],[-5.53194522857666,57.00180435180675],[-5.61638879776001,56.98263931274414],[-5.656943798065186,56.992637634277344],[-5.679165840148869,57.0093040466308],[-5.689723014831428,57.039306640625114],[-5.754721164703312,57.03180694580084],[-5.786943912506104,57.047916412353565],[-5.798055171966552,57.065971374511776],[-5.758612155914306,57.09041595458996],[-5.731389999389648,57.09847259521478],[-5.723054885864201,57.11819458007818],[-5.679165840148869,57.119304656982536],[-5.64527702331543,57.12791824340832],[-5.592498779296875,57.119583129882926],[-5.534722805023193,57.08708190917969],[-5.51694393157959,57.100139617919915],[-5.552501201629525,57.11180496215826],[-5.560276985168457,57.13236236572277],[-5.610277175903319,57.145137786865234],[-5.660831928253116,57.142360687255916],[-5.68916702270502,57.15625],[-5.675278186798096,57.18513870239269],[-5.643054962158203,57.19708251953119],[-5.625277996063232,57.21569442749023],[-5.656387805938721,57.23430633544921],[-5.63638877868641,57.250694274902344],[-5.521944046020451,57.26902770996094],[-5.662500858306827,57.28097152709961],[-5.726943016052246,57.27930450439453],[-5.714723110198975,57.318473815918026],[-5.684165954589844,57.32847213745123],[-5.685834884643555,57.34180450439464],[-5.614167213439941,57.338748931884766],[-5.579165935516357,57.3543052673341],[-5.533610820770207,57.35319519042974],[-5.460834026336613,57.38930511474621],[-5.440278053283635,57.414306640625114],[-5.463056087493896,57.4190292358399],[-5.536388874053897,57.36847305297851],[-5.599165916442871,57.35514068603526],[-5.635832786560002,57.36652755737316],[-5.613611221313477,57.40124893188471],[-5.692501068115178,57.37625122070318],[-5.723610877990666,57.356803894043026],[-5.787499904632512,57.346527099609425],[-5.821387767791748,57.361804962158196],[-5.828054904937687,57.39152908325189],[-5.810277938842773,57.40180587768566],[-5.82583284378046,57.44124984741216],[-5.853610992431641,57.44208526611333],[-5.870833873748722,57.46930694580079],[-5.870833873748722,57.50152969360362],[-5.854166984558105,57.52680587768555],[-5.854166984558105,57.54902648925781],[-5.837500095367375,57.57930374145513],[-5.809721946716309,57.58541488647466],[-5.743054866790771,57.54430389404303],[-5.698054790496826,57.54847335815441],[-5.700276851654053,57.53291702270508],[-5.671946048736515,57.523471832275504],[-5.608055114746094,57.53569412231457],[-5.520833969116211,57.53013992309582],[-5.54027795791626,57.5531959533692],[-5.65749979019165,57.54791641235363],[-5.685277938842717,57.554306030273544],[-5.685834884643555,57.5770835876466],[-5.729722023010197,57.585971832275455],[-5.737500190734863,57.609027862548835],[-5.773055076599064,57.63236236572266],[-5.819722175598087,57.648193359375],[-5.786943912506104,57.684028625488224],[-5.79027795791626,57.6973609924317],[-5.760278224945067,57.70680618286127],[-5.71083402633667,57.707359313964844],[-5.69749879837036,57.73014068603526],[-5.761943817138672,57.731529235839844],[-5.809165000915527,57.746528625488395],[-5.801945209503174,57.795696258544865],[-5.813611984252929,57.81680679321294],[-5.808055877685547,57.862361907959034],[-5.779167175292912,57.85930633544916],[-5.690277099609374,57.869304656982536],[-5.683609962463379,57.8351402282716],[-5.66194486618042,57.82652664184576],[-5.665832996368408,57.79847335815436],[-5.624166011810246,57.76874923706065],[-5.585277080535832,57.8140258789063],[-5.58250093460083,57.837081909179744],[-5.639722824096623,57.86291503906262],[-5.636944770812987,57.91374969482428],[-5.597499847412053,57.923751831054794],[-5.551387786865234,57.90930557250983],[-5.55083179473877,57.88319396972656],[-5.537498950958251,57.8676376342774],[-5.453054904937744,57.85208511352545],[-5.454166889190617,57.869583129882926],[-5.424167156219482,57.9087486267091],[-5.35138988494873,57.88735961914063],[-5.325277805328312,57.86541748046869],[-5.261388778686467,57.85347366333019],[-5.246943950652962,57.86708450317382],[-5.314723014831486,57.88124847412104],[-5.340833187103157,57.90680694580072],[-5.395277023315372,57.913471221923885],[-5.406390190124512,57.92708206176769],[-5.357500076293888,57.93875122070319],[-5.330833911895752,57.91458511352539],[-5.289166927337646,57.91069412231456],[-5.240832805633487,57.91764068603526],[-5.149723052978516,57.874862670898494],[-5.126945018768254,57.8745841979981],[-5.08472204208374,57.827915191650504],[-5.065834045410099,57.82764053344732],[-5.099722862243651,57.869583129882926],[-5.133055210113525,57.87930679321288],[-5.152501106262206,57.8962516784668],[-5.214721202850341,57.9201393127442],[-5.191390037536621,57.95402908325196],[-5.241388797759895,57.96180725097662],[-5.248055934906006,57.97069549560541],[-5.314723014831486,57.98041534423822],[-5.309722900390625,57.98986053466802],[-5.3691668510437,58.03069305419928],[-5.424723148345947,58.038192749023544],[-5.424723148345947,58.05791854858409],[-5.45861196517933,58.068473815918026],[-5.436944007873478,58.10514068603527],[-5.400833129882812,58.097362518310604],[-5.364723205566349,58.07069396972656],[-5.325277805328312,58.069026947021435],[-5.287500858306884,58.07819366455084],[-5.279166221618539,58.10263824462901],[-5.285278797149601,58.12569427490239],[-5.310832023620605,58.15486145019537],[-5.313611030578556,58.171527862548885],[-5.361388206481934,58.20486068725585],[-5.362500190734863,58.21680450439454],[-5.405278205871525,58.23430633544921],[-5.395833015441838,58.2551383972169],[-5.343054771423283,58.251251220703246],[-5.305833816528263,58.228473663330014],[-5.238611221313363,58.2556953430177],[-5.154723167419434,58.25430679321295],[-5.134720802307071,58.27763748168957],[-5.138055801391602,58.31041717529297],[-5.169166088104248,58.32097244262689],[-5.187499046325626,58.352916717529354],[-5.155276775360051,58.379306793213004],[-5.151945114135742,58.405418395996094],[-5.112500190734806,58.39847183227539],[-5.116943836212158,58.43041610717784],[-5.082499980926457,58.45124816894536],[-5.053054809570255,58.45319366455084],[-5.126945018768254,58.48847198486333],[-5.114721775054875,58.522361755371094],[-5.093056201934814,58.538471221923835],[-5.051942825317326,58.540973663330135],[-5.011943817138615,58.593471527099666],[-5.005834102630615,58.62791824340821],[-4.946390151977481,58.61180496215831],[-4.868055820465087,58.60902786254882],[-4.823056221008244,58.596527099609375],[-4.795278072357178,58.57764053344732],[-4.738056182861271,58.579029083252074],[-4.702498912811279,58.555694580078125],[-4.655278205871582,58.5529174804688],[-4.650834083557072,58.53319549560546],[-4.711944103240967,58.49597167968744],[-4.70972204208374,58.46541595458995],[-4.675277233123722,58.484306335449325],[-4.64361095428461,58.52041625976562],[-4.595276832580566,58.53430557250982],[-4.599721908569278,58.5712509155274],[-4.543055057525634,58.582084655761776],[-4.4352769851684,58.55597305297846],[-4.409167766571045,58.52430725097662],[-4.447500228881836,58.50152587890625],[-4.474165916442814,58.444026947021484],[-4.42472314834589,58.48069381713867],[-4.418610095977783,58.495693206787045],[-4.355834007263184,58.53763961792003],[-4.30194616317749,58.54430389404297],[-4.215277194976807,58.53291702270508],[-4.214167118072453,58.551528930664055],[-4.166943073272705,58.5459709167481],[-4.149166107177678,58.566249847412216],[-4.082499027252197,58.5598602294923],[-4.049723148345947,58.572360992431584],[-4.044722080230599,58.58930587768566],[-4.014721870422306,58.594306945800845],[-4.005277156829776,58.56597137451167],[-3.953056097030526,58.5745849609375],[-3.920277118682805,58.5598602294923],[-3.891388893127441,58.56874847412114],[-3.859167098999024,58.564304351806754],[-3.774166107177678,58.57513809204107],[-3.649723052978459,58.62402725219737],[-3.640278100967407,58.615970611572315],[-3.535279035568237,58.622917175293026],[-3.546942949294987,58.60402679443365],[-3.514723062515258,58.5981941223145],[-3.485276937484741,58.61013793945318],[-3.428611040115299,58.60652923583991],[-3.363611936569214,58.595695495605575],[-3.345832109451237,58.61097335815435],[-3.414167881011963,58.639862060546875],[-3.406388998031616,58.66152954101556],[-3.377501010894718,58.672359466552734],[-3.343610048294067,58.6479148864746],[-3.295279026031494,58.64569473266607],[-3.269722938537541,58.654582977294865],[-3.200834035873356,58.65597152709961],[-3.162501096725407,58.63874816894536],[-3.103056907653751,58.646526336670036],[-3.024167060852051,58.64430618286133],[-3.035276889801025,58.61069488525396],[-3.066943883895874,58.56375122070312],[-3.121390104293766,58.53069305419916],[-3.133054971694946,58.510692596435604],[-3.126944065093994,58.48597335815424],[-3.106389045715332,58.47402954101574],[-3.050278902053833,58.47986221313471],[-3.051388978958016,58.446250915527344],[-3.098612070083561,58.396526336669915],[-3.106389045715332,58.37097167968756],[-3.142498970031681,58.355693817138615],[-3.219722986221313,58.305416107177784],[-3.272500991821232,58.29791641235351],[-3.386389970779419,58.26680374145502],[-3.469167947769165,58.20735931396495],[-3.506387948989811,58.1720848083496],[-3.673610925674381,58.10124969482427],[-3.743056058883667,58.06819534301763],[-3.784167051315307,58.06402587890625],[-3.832500934600831,58.03958511352545],[-3.84472107887268,58.00763702392584],[-3.890832901000977,57.98736190795909],[-3.934721946716309,57.982917785644524],[-3.983612060546818,57.9690284729005],[-4.007500171661377,57.93208312988286],[-3.991388082504272,57.90236282348633],[-4.013055801391602,57.89041519165044],[-4.018056869506836,57.86375045776378],[-4.089722156524657,57.863471984863395],[-4.108055114746037,57.85319519042963],[-4.174166202545166,57.860137939453125],[-4.202499866485539,57.87097167968749],[-4.271944999694824,57.869304656982536],[-4.300833225250244,57.8537483215332],[-4.19194507598877,57.86291503906262],[-4.140833854675236,57.828472137451286],[-4.098053932189884,57.83235931396496],[-4.045279026031437,57.81652832031261],[-3.965831995010319,57.84569549560552],[-3.919167041778451,57.83791732788086],[-3.890832901000977,57.82125091552739],[-3.860832929611149,57.82485961914068],[-3.829165935516357,57.84041595458979],[-3.813055038452092,57.860694885253906],[-3.779722929000797,57.849029541015625],[-3.850833892822265,57.78874969482421],[-3.918055057525578,57.75069427490241],[-3.915832996368295,57.743751525878906],[-3.976946115493718,57.692916870117244],[-4.036389827728215,57.699028015136776],[-4.010834217071533,57.73569488525402],[-4.073057174682617,57.73180389404302],[-4.106945037841797,57.71875],[-4.158054828643742,57.68847274780284],[-4.208611011505013,57.692081451416136],[-4.264722824096566,57.67819595336908],[-4.300833225250244,57.675415039062614],[-4.299167156219426,57.65874862670892],[-4.413611888885441,57.60652923583996],[-4.374722957611083,57.59763717651372],[-4.326388835906982,57.630695343017685],[-4.245832920074406,57.66680526733398],[-4.215277194976807,57.67402648925787],[-4.163054943084717,57.674861907959034],[-4.166389942169189,57.662918090820305],[-4.088612079620304,57.66430664062505],[-4.03472185134882,57.68430709838861],[-3.992501020431519,57.675971984863395],[-4.025833129882812,57.657917022705135],[-4.102500915527344,57.605415344238395],[-4.113612174987793,57.57764053344737],[-4.169722080230656,57.566249847412045],[-4.174166202545166,57.55236053466808],[-4.23416614532465,57.50069427490246],[-4.311944007873535,57.502082824707024],[-4.368609905242806,57.51208496093756],[-4.415833950042668,57.50236129760742],[-4.375833034515381,57.47986221313477],[-4.296389102935734,57.48180389404308],[-4.218610763549805,57.49680709838862],[-4.183610916137695,57.48458480834972],[-4.113612174987793,57.51597213745123],[-4.096387863159123,57.53958511352539],[-4.054166793823241,57.55208206176769],[-4.038609981536865,57.56735992431641],[-4.060277938842773,57.58958435058605],[-4.010834217071533,57.60069274902343],[-3.933056116104126,57.58569335937506],[-3.865277051925659,57.590972900390625],[-3.799165964126531,57.60930633544922],[-3.761389017105045,57.63118362426763]]],[[[-5.89194393157959,57.23986053466797],[-5.853610992431641,57.25513839721691],[-5.806388854980469,57.25847244262701],[-5.780276775360107,57.27041625976568],[-5.738056182861328,57.27486038208008],[-5.647500038146916,57.253749847412166],[-5.666388988494873,57.236251831054744],[-5.668611049651985,57.209304809570305],[-5.710278034210205,57.185974121093864],[-5.786943912506104,57.16736221313488],[-5.782499790191594,57.14402770996105],[-5.828054904937687,57.10736083984381],[-5.851388931274413,57.11097335815429],[-5.871943950653076,57.085140228271534],[-5.922500133514347,57.042640686035156],[-5.984723091125431,57.027915954589844],[-6.024168014526367,57.02430725097656],[-6.037500858306828,57.05236053466796],[-6.010279178619384,57.08847045898443],[-5.987501144409123,57.1048622131347],[-5.995276927947941,57.127082824706974],[-5.943056106567326,57.14680480957037],[-5.918056011199951,57.16513824462896],[-5.933610916137695,57.17514038085932],[-5.983057022094727,57.1668052673341],[-6.010832786560059,57.20541763305664],[-6.083055973052978,57.12625122070318],[-6.113609790802002,57.136528015136776],[-6.103611946105957,57.1668052673341],[-6.131943225860538,57.18402862548834],[-6.186944007873535,57.17291641235363],[-6.210277080535889,57.17708206176763],[-6.313055038452148,57.15958404541021],[-6.284166812896729,57.18958282470714],[-6.353055953979435,57.18708419799805],[-6.404166221618651,57.2315292358399],[-6.450276851654052,57.26152801513683],[-6.481389999389648,57.3120841979981],[-6.446389198303166,57.32097244262695],[-6.445833206176701,57.347362518310604],[-6.48194408416748,57.36652755737316],[-6.471388816833496,57.377082824707145],[-6.525833129882699,57.39819335937506],[-6.555276870727539,57.38486099243158],[-6.563611984252873,57.335971832275504],[-6.580832958221379,57.331806182861435],[-6.61972188949585,57.34819412231457],[-6.673612117767334,57.35652923583978],[-6.722498893737793,57.373748779296875],[-6.743054866790771,57.41569519042968],[-6.78805685043335,57.43125152587902],[-6.784721851348877,57.4548606872558],[-6.764166831970214,57.45930480957042],[-6.748054981231689,57.500137329101676],[-6.713611125946045,57.5134735107423],[-6.663610935211182,57.46125030517573],[-6.61138916015625,57.44625091552741],[-6.63861083984375,57.502639770507756],[-6.560833930969181,57.508193969726555],[-6.643055915832463,57.55236053466808],[-6.635276794433594,57.60791778564447],[-6.581388950347844,57.587917327880916],[-6.567500114440918,57.551528930664055],[-6.503055095672607,57.534027099609425],[-6.468057155609074,57.508193969726555],[-6.406943798065186,57.523471832275504],[-6.368054866790771,57.517082214355575],[-6.399168014526367,57.564304351806754],[-6.395277023315429,57.61291503906249],[-6.426942825317383,57.64069366455089],[-6.354166030883789,57.67124938964838],[-6.354722023010254,57.6970825195313],[-6.300278186798039,57.70791625976562],[-6.296944141387882,57.69319534301763],[-6.260276794433594,57.680973052978565],[-6.235833168029728,57.63902664184576],[-6.190834045410156,57.63319396972661],[-6.139165878295785,57.581806182861385],[-6.141387939453068,57.49430465698253],[-6.135278224945068,57.470973968505916],[-6.144722938537598,57.42902755737311],[-6.176945209503174,57.41208267211926],[-6.124166965484619,57.394584655761776],[-6.137499809265137,57.3662490844726],[-6.100832939147892,57.3259735107423],[-6.105278015136719,57.31486129760736],[-6.046945095062256,57.31013870239257],[-6.040832996368408,57.292083740234375],[-5.999166011810303,57.27291488647461],[-5.904167175292968,57.253471374511776],[-5.89194393157959,57.23986053466797]]],[[[-5.980832099914437,57.51430511474609],[-5.998611927032471,57.53125],[-5.980278015136719,57.546527862548885],[-5.989723205566406,57.57069396972668],[-5.957500934600829,57.581806182861385],[-5.958611011505127,57.55180740356445],[-5.980832099914437,57.51430511474609]]],[[[-5.983057022094727,57.48485946655273],[-6.002500057220459,57.45208358764654],[-6.025278091430607,57.44208145141596],[-6.017498970031738,57.38902664184582],[-5.993610858917236,57.355693817138665],[-6.02027702331543,57.332637786865234],[-6.068611145019474,57.3334732055664],[-6.081943988800048,57.35597229003906],[-6.075276851654053,57.37763977050786],[-6.085278034210205,57.42152786254883],[-6.05583381652832,57.461807250976506],[-6.011944770812988,57.464584350586],[-6.034721851348877,57.49097061157226],[-5.983057022094727,57.48485946655273]]],[[[-5.998611927032471,57.32541656494152],[-5.9480562210083,57.318473815918026],[-5.923612117767277,57.30680465698253],[-5.925278186798096,57.28208160400396],[-5.987499237060547,57.276805877685604],[-6.023612022399902,57.30430603027344],[-5.998611927032471,57.32541656494152]]],[[[-6.204166889190617,57.165973663330135],[-6.181944847106934,57.151248931884766],[-6.203610897064152,57.13513946533203],[-6.23305511474598,57.12930679321289],[-6.255833148956242,57.14986038208002],[-6.204166889190617,57.165973663330135]]],[[[-6.486944198608342,57.047916412353565],[-6.514721870422363,57.04513931274425],[-6.551389217376709,57.05652618408203],[-6.507499217987003,57.07180404663097],[-6.486944198608342,57.047916412353565]]],[[[-6.415278911590518,57.02847290039057],[-6.397499084472656,57.042640686035156],[-6.336389064788818,57.059860229492244],[-6.254167079925423,57.03319549560558],[-6.240277767181396,57.00763702392589],[-6.259723186492863,56.96097183227545],[-6.297500133514347,56.938751220703175],[-6.329721927642709,56.93513870239258],[-6.370276927947884,56.9526405334472],[-6.393610954284611,56.97430419921869],[-6.453054904937744,57.00208282470709],[-6.415278911590518,57.02847290039057]]],[[[-6.206944942474308,56.901527404785206],[-6.161389827728271,56.913192749023494],[-6.152499198913573,56.9415283203125],[-6.113609790802002,56.92902755737305],[-6.115831851959229,56.88680648803722],[-6.135278224945068,56.872638702392635],[-6.164721965789794,56.87180709838867],[-6.210277080535889,56.88847351074213],[-6.206944942474308,56.901527404785206]]],[[[-5.876389026641789,56.811248779296875],[-5.832499027252197,56.79763793945324],[-5.858055114746037,56.7859725952149],[-5.888054847717285,56.79430389404297],[-5.876389026641789,56.811248779296875]]]]},"properties":{"ID_0":242,"ISO":"GB-HLD","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":155,"NAME_2":"Highland","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.751653194427377,55.857284545898494],[-4.775751113891602,55.86981582641613],[-4.851539134979191,55.87086868286133],[-4.891388893127441,55.864933013916016],[-4.899722099304199,55.890972137451286],[-4.880832195281982,55.90402603149413],[-4.880832195281982,55.94152832031249],[-4.793610095977783,55.963748931884766],[-4.671389102935791,55.93319320678711],[-4.641944885253793,55.9317626953125],[-4.590487003326358,55.88139343261713],[-4.588380813598576,55.85086822509759],[-4.608382225036621,55.84244537353527],[-4.727327823638858,55.848762512206974],[-4.751653194427377,55.857284545898494]]]},"properties":{"ID_0":242,"ISO":"GB-IVC","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":156,"NAME_2":"Inverclyde","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.078310012817383,55.94791793823242],[-3.06107306480402,55.947639465332024],[-3.055566072463932,55.9273414611817],[-3.028450965881234,55.91139221191406],[-2.820858955383301,55.82167816162104],[-2.855556011199951,55.8133316040039],[-2.886111974716187,55.78805923461913],[-2.932499885559025,55.78610992431646],[-2.942779064178467,55.815280914306754],[-3.073611974716187,55.751388549804744],[-3.095556020736581,55.73611068725597],[-3.093333959579467,55.71860885620117],[-3.120831966400146,55.71194076538086],[-3.14499902725214,55.722221374511776],[-3.143332958221322,55.7388801574707],[-3.184165954589844,55.80167007446295],[-3.230000019073486,55.77637863159174],[-3.269721031188965,55.77389144897472],[-3.297498941421509,55.7938804626466],[-3.336946010589543,55.794170379638665],[-3.360150098800602,55.81172943115246],[-3.189531087875366,55.88268280029308],[-3.087460041046086,55.89065933227539],[-3.078310012817383,55.94791793823242]]]},"properties":{"ID_0":242,"ISO":"GB-MLN","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":157,"NAME_2":"Midlothian","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":"Edinburgh"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.761389017105045,57.63118362426763],[-3.707499027252083,57.64402770996093],[-3.703610897064209,57.657917022705135],[-3.621944904327392,57.664028167724666],[-3.550277948379517,57.661529541015625],[-3.499722003936711,57.675971984863395],[-3.483611106872559,57.70319366455084],[-3.346945047378483,57.72486114501953],[-3.280277967453003,57.71652603149425],[-3.17305588722229,57.68791580200206],[-3.044166088104248,57.665695190429794],[-3.017499923705998,57.66430664062505],[-2.92749905586237,57.690139770507805],[-2.922498941421509,57.697917938232415],[-2.849168062210083,57.70624923706049],[-2.821804046630859,57.69486236572277],[-2.823024034500065,57.63380432128917],[-2.78046989440918,57.58538055419933],[-2.749654054641724,57.56924057006847],[-2.705631971359253,57.529621124267514],[-2.707098007202148,57.513477325439446],[-2.73204493522644,57.506141662597706],[-2.809818029403687,57.52081680297863],[-2.891993045806828,57.52081680297863],[-2.93601393699646,57.50467300415038],[-2.991775035858097,57.47679138183599],[-3.010852098464966,57.44891357421874],[-3.004982948303165,57.400485992431584],[-2.969765901565552,57.36380386352545],[-2.966830015182438,57.32711791992199],[-2.985907077789307,57.29776763916027],[-3.029930114746037,57.26695251464844],[-3.122376918792668,57.27722549438488],[-3.189877986907959,57.25667953491205],[-3.280855894088688,57.18917846679693],[-3.33221697807312,57.17597198486328],[-3.345422029495239,57.148094177246094],[-3.323411941528263,57.11287307739252],[-3.345422029495239,57.089397430419865],[-3.42759895324707,57.082057952880916],[-3.619829893112183,57.082057952880916],[-3.67945408821106,57.095508575439396],[-3.641665935516357,57.11582946777338],[-3.614166021347045,57.117488861083984],[-3.556390047073364,57.145549774169915],[-3.530833959579411,57.163890838623104],[-3.474999904632568,57.17860031127935],[-3.452500104904174,57.17805099487315],[-3.427222967147827,57.202499389648494],[-3.420278072357178,57.223049163818416],[-3.454998016357365,57.23722076416021],[-3.44527792930603,57.28583145141613],[-3.482779026031437,57.29888153076183],[-3.47305607795704,57.31721115112305],[-3.44527792930603,57.3294410705567],[-3.418334007263126,57.35776901245111],[-3.384444952011051,57.381389617920036],[-3.397778034210148,57.421390533447315],[-3.438611030578556,57.42610931396496],[-3.498055934906006,57.457500457763786],[-3.578331947326603,57.448879241943416],[-3.610277891158943,57.43444061279302],[-3.6663880348205,57.430828094482365],[-3.701667070388794,57.40805053710937],[-3.719166040420532,57.42277908325206],[-3.684721946716194,57.44610977172851],[-3.679167032241821,57.493049621582145],[-3.687222003936711,57.52249908447265],[-3.71166801452631,57.532489776611264],[-3.708889961242618,57.577499389648494],[-3.728888988494759,57.58499908447277],[-3.761389017105045,57.63118362426763]]]},"properties":{"ID_0":242,"ISO":"GB-MRY","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":158,"NAME_2":"Moray","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":"Elgin"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.11527776718134,55.770973205566406],[-5.141387939453125,55.80875015258795],[-5.139721870422363,55.83569335937506],[-5.192500114440918,55.866527557373104],[-5.220277786254826,55.90375137329113],[-5.186388969421386,55.92625045776378],[-5.16083288192749,55.922359466552734],[-5.109722137451058,55.89152908325201],[-5.079723834991455,55.882362365722656],[-5.061388015747013,55.85985946655279],[-5.058055877685547,55.83874893188471],[-5.023055076599121,55.842918395996094],[-5.021389007568303,55.80902862548834],[-5.001389980316104,55.77291488647472],[-5.011943817138615,55.7456932067871],[-5.003612041473389,55.729583740234375],[-5.033055782318058,55.72208404541027],[-5.054168224334717,55.73319625854498],[-5.063055992126407,55.761806488037166],[-5.11527776718134,55.770973205566406]]],[[[-4.885276794433594,55.729862213134766],[-4.857501029968262,55.749862670898494],[-4.860833168029728,55.781528472900334],[-4.889722824096623,55.81874847412115],[-4.891388893127441,55.864933013916016],[-4.851539134979191,55.87086868286133],[-4.775751113891602,55.86981582641613],[-4.751653194427377,55.857284545898494],[-4.715750217437744,55.81192016601573],[-4.634696960449104,55.76665878295893],[-4.516318798065129,55.76287841796881],[-4.517907142639159,55.75934219360357],[-4.558114051818791,55.71463012695324],[-4.618207931518555,55.677070617675895],[-4.610695838928223,55.65753936767584],[-4.534078121185303,55.65603637695318],[-4.501026153564453,55.64552307128912],[-4.510039806365853,55.621482849121094],[-4.582045078277587,55.59136199951177],[-4.65749979019165,55.561981201171925],[-4.664165973663273,55.585693359375114],[-4.694723129272404,55.605972290039006],[-4.738056182861271,55.623195648193466],[-4.803054809570312,55.640140533447315],[-4.866390228271484,55.68597412109381],[-4.905831813812199,55.69930648803722],[-4.90472221374506,55.72208404541027],[-4.885276794433594,55.729862213134766]]],[[[-4.903056144714355,55.79319381713867],[-4.899166107177734,55.7537498474121],[-4.951389789581242,55.75041580200207],[-4.930833816528263,55.78430557250982],[-4.903056144714355,55.79319381713867]]],[[[-5.349167823791504,55.50485992431652],[-5.355278015136662,55.52569580078125],[-5.342501163482666,55.5451393127442],[-5.348054885864257,55.56930541992199],[-5.397500991821289,55.61402893066406],[-5.380834102630615,55.65708160400385],[-5.364167213439885,55.679584503173885],[-5.331387996673526,55.68791580200195],[-5.319167137145996,55.705417633056754],[-5.260276794433537,55.72152709960948],[-5.204166889190674,55.70430374145508],[-5.160276889801025,55.679027557373104],[-5.137499809265136,55.64263916015625],[-5.131945133209229,55.60069274902344],[-5.149723052978516,55.57819366455083],[-5.108055114746094,55.57236099243164],[-5.081943035125676,55.55236053466791],[-5.110278129577637,55.5426406860351],[-5.125277042388916,55.52486038208008],[-5.078610897064209,55.50930404663097],[-5.09250020980835,55.48430633544921],[-5.079166889190674,55.465415954589844],[-5.105277061462346,55.44041824340826],[-5.156945228576603,55.441806793213004],[-5.173610210418701,55.43430709838873],[-5.250277996063176,55.438751220703125],[-5.31583309173584,55.464862823486435],[-5.329165935516357,55.49041748046874],[-5.349167823791504,55.50485992431652]]]]},"properties":{"ID_0":242,"ISO":"GB-NAY","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":159,"NAME_2":"North Ayshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.161842823028508,55.89171981811529],[-4.149620056152344,55.909797668456974],[-4.069877147674561,55.90820312500006],[-4.044360160827637,55.92414855957031],[-4.047551155090332,55.957641601562614],[-4.098583221435547,55.956047058105526],[-4.120912075042725,55.96242523193371],[-4.125696182250977,56.005580902099666],[-4.081943035125732,56.02582931518566],[-4.017778873443604,56.02582931518566],[-4.011261940002441,56.01226806640625],[-3.972779035568237,56.00638961792003],[-3.97472095489502,55.98527908325195],[-3.937222003936768,55.98443984985363],[-3.922498941421395,55.95750045776373],[-3.865000963211002,55.95610809326183],[-3.8938889503479,55.93333053588878],[-3.815001964568978,55.90639114379888],[-3.808888912200927,55.895271301269645],[-3.793334007263127,55.871940612793026],[-3.728332996368352,55.883331298828125],[-3.710278034210148,55.87028121948242],[-3.744999885559082,55.85805892944336],[-3.71833395957941,55.8124885559082],[-3.733390092849675,55.7835693359375],[-3.781213045120182,55.7630729675293],[-3.881686925888005,55.73276901245117],[-3.897635936737061,55.73436355590825],[-3.982161998748722,55.77582931518555],[-4.065093040466309,55.812511444091854],[-4.084230899810791,55.82730102539068],[-4.069877147674561,55.85557174682617],[-4.079444885253849,55.868331909179744],[-4.119316101074162,55.868331909179744],[-4.161842823028508,55.89171981811529]]]},"properties":{"ID_0":242,"ISO":"GB-NLK","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":160,"NAME_2":"North Lanarkshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.379723072051945,59.392917633056584],[-2.408611059188842,59.37763977050787],[-2.409723043441772,59.354862213134815],[-2.450834035873413,59.35985946655284],[-2.434722900390625,59.38541793823254],[-2.379723072051945,59.392917633056584]]],[[[-2.98416805267334,59.32263946533203],[-2.900276899337768,59.30319595336919],[-2.881943941116333,59.28652954101574],[-2.875833988189697,59.25597381591803],[-2.920833110809269,59.27708435058594],[-2.995277881622314,59.26458358764648],[-3.020277976989689,59.285137176513615],[-3.021944046020508,59.30152893066411],[-3.055277109146118,59.316528320312436],[-2.98416805267334,59.32263946533203]]],[[[-2.514723062515259,59.255695343017635],[-2.533056020736637,59.23652648925786],[-2.613055944442749,59.23847198486339],[-2.687499046325683,59.203193664550895],[-2.695833921432495,59.22180557250987],[-2.569166898727417,59.277362823486335],[-2.531389951705819,59.266529083252],[-2.486388921737614,59.29041671752935],[-2.415277004241943,59.31180572509765],[-2.42416596412653,59.275417327880795],[-2.473612070083618,59.278194427490284],[-2.514723062515259,59.255695343017635]]],[[[-2.754723072051945,59.19235992431635],[-2.757500886917114,59.16374969482416],[-2.771944046020507,59.144306182861385],[-2.828056097030639,59.17347335815435],[-2.819720983505249,59.188194274902344],[-2.780277967453003,59.18986129760748],[-2.791944980621281,59.21347045898448],[-2.787498950958252,59.24069595336908],[-2.733055114746037,59.223751068115234],[-2.754723072051945,59.19235992431635]]],[[[-3.049721956253051,59.1298599243164],[-3.076944112777653,59.137359619140675],[-3.115277051925545,59.16180419921887],[-3.117499113082829,59.1754150390625],[-3.084722995758,59.197639465332145],[-3.048055887222233,59.19486236572265],[-3.039167881011849,59.179306030273494],[-2.953054904937744,59.17958450317388],[-2.976388931274357,59.159584045410156],[-2.963056087493896,59.135417938232365],[-3.00583291053772,59.126804351806754],[-3.049721956253051,59.1298599243164]]],[[[-2.930278062820435,59.17124938964844],[-2.908612012863045,59.164859771728516],[-2.916388034820557,59.13152694702154],[-2.936944007873535,59.13652801513671],[-2.930278062820435,59.17124938964844]]],[[[-2.549166917800903,59.100418090820256],[-2.540832996368408,59.082359313964844],[-2.579168081283569,59.07569503784191],[-2.633611917495614,59.107082366943416],[-2.645832061767578,59.07458496093756],[-2.68861198425293,59.08652877807623],[-2.651945114135685,59.11264038085937],[-2.621944904327336,59.12458419799805],[-2.665833950042725,59.14986038208019],[-2.594166994094792,59.14069366455078],[-2.608612060546818,59.126804351806754],[-2.565831899642944,59.12014007568364],[-2.549166917800903,59.100418090820256]]],[[[-3.089167118072509,58.99986267089855],[-3.055277109146118,58.99708175659192],[-3.036390066146851,59.01041793823247],[-2.948055028915348,58.99041748046875],[-2.931390047073307,59.015693664550895],[-2.906389951705933,59.00069427490234],[-2.918055057525635,58.98347091674804],[-2.909166097640991,58.9620819091798],[-2.810278892517033,58.98485946655279],[-2.805834054946843,58.947917938232365],[-2.7063889503479,58.9731941223145],[-2.710277080535889,58.9243049621582],[-2.779721975326538,58.91624832153331],[-2.831943988799992,58.87125015258783],[-2.845833063125554,58.88874816894531],[-2.883055925369263,58.899860382080014],[-2.906944036483708,58.871528625488224],[-2.875833988189697,58.84458160400396],[-2.889166116714421,58.82347106933587],[-2.929721117019596,58.791805267334034],[-2.936944007873535,58.76958465576178],[-2.908612012863045,58.7548599243164],[-2.923054933547974,58.73319625854492],[-2.947500944137573,58.732917785644524],[-2.986943960189819,58.74791717529308],[-2.983612060546875,58.78069305419933],[-3.022500038146916,58.80764007568354],[-3.008054971694946,58.8254165649414],[-2.962500095367432,58.836807250976676],[-2.963056087493896,58.84791564941406],[-2.9252769947052,58.87819290161138],[-2.933612108230591,58.9026374816895],[-2.973611116409302,58.939861297607536],[-3.008054971694946,58.94458389282232],[-3.085833072662354,58.92763900756841],[-3.113610982894897,58.930973052978516],[-3.134722948074341,58.91597366333014],[-3.190277099609375,58.91764068603527],[-3.222498893737793,58.92514038085932],[-3.236943960189819,58.941528320312436],[-3.239722967147827,58.985416412353565],[-3.298610925674438,58.94930648803711],[-3.32583308219904,58.95236206054698],[-3.362499952316284,58.98236083984369],[-3.368056058883667,58.99708175659192],[-3.349723100662175,59.06152725219732],[-3.348053932189941,59.09958267211914],[-3.310833930969125,59.1393051147462],[-3.240278959274292,59.152915954589844],[-3.191389083862305,59.14875030517584],[-3.090276956558228,59.118473052978516],[-3.049165964126587,59.111526489257805],[-3.050278902053833,59.09597396850587],[-3.000833034515381,59.06347274780285],[-3.061944961547738,59.02986145019531],[-3.098056077957096,59.015972137451286],[-3.089167118072509,58.99986267089855]]],[[[-2.801944017410221,59.08763885498041],[-2.799165964126473,59.07013702392578],[-2.835278987884521,59.02458190917974],[-2.899723052978516,59.03513717651367],[-2.935833930969181,59.030971527099666],[-2.903611898422241,59.07069396972656],[-2.855278015136719,59.05652618408214],[-2.837501049041748,59.079303741455185],[-2.801944017410221,59.08763885498041]]],[[[-3.239722967147827,58.784584045410156],[-3.210832118988037,58.80069351196289],[-3.137499094009343,58.80236053466797],[-3.140276908874512,58.783195495605575],[-3.241389036178532,58.77347183227539],[-3.291944026946965,58.7756958007813],[-3.370277881622314,58.83625030517572],[-3.388056039810124,58.87014007568364],[-3.433610916137695,58.87097167968744],[-3.423055887222233,58.903194427490284],[-3.396388053893986,58.924026489257805],[-3.331945896148568,58.93013763427734],[-3.317500114440918,58.90902709960943],[-3.285278081893864,58.905971527099545],[-3.213610887527466,58.878471374511726],[-3.199722051620427,58.855415344238345],[-3.20194411277771,58.80569458007824],[-3.245832920074463,58.80069351196289],[-3.239722967147827,58.784584045410156]]],[[[-3.069721937179565,58.8495826721192],[-3.102499961852914,58.83458328247082],[-3.077501058578434,58.814861297607415],[-3.138055086135807,58.81569290161144],[-3.148056030273438,58.82764053344726],[-3.1202778816222,58.84347152709961],[-3.069721937179565,58.8495826721192]]]]},"properties":{"ID_0":242,"ISO":"GB-ORK","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":161,"NAME_2":"Orkney Islands","TYPE_2":"Island Area","ENGTYPE_2":"Island Area","NL_NAME_2":null,"VARNAME_2":"Orcadas|Orcades|Orcadi|Orkneyöarna|Orknøyene"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.2623450756073,56.350971221923885],[-3.24194502830494,56.31361007690435],[-3.258610010147094,56.301670074462834],[-3.290555953979492,56.30305099487305],[-3.299722909927311,56.281658172607415],[-3.334443092346191,56.281940460205135],[-3.362777948379517,56.26472091674805],[-3.34833288192749,56.23666000366211],[-3.288887977600041,56.23305892944336],[-3.264168977737427,56.21915817260748],[-3.261111974716186,56.19638824462896],[-3.297498941421509,56.18526840209972],[-3.323889017105103,56.16749954223638],[-3.359998941421452,56.161941528320426],[-3.386945962905884,56.13721084594738],[-3.472500085830631,56.14387893676769],[-3.529165983200073,56.14165878295898],[-3.550833940505981,56.152500152588],[-3.584722042083683,56.13471984863281],[-3.630553007125854,56.12825012207031],[-3.642776012420654,56.15526962280279],[-3.56249809265131,56.1772193908692],[-3.561388015746957,56.186939239502],[-3.61166596412653,56.19805145263672],[-3.655555009841862,56.196941375732536],[-3.66416597366333,56.187221527099545],[-3.72305703163147,56.18972015380865],[-3.758888959884587,56.21583175659174],[-3.824373006820679,56.1925888061524],[-3.842777013778629,56.21833038330084],[-3.878056049346867,56.2138786315919],[-3.906666040420532,56.23389053344732],[-3.962500095367374,56.25083160400385],[-3.996388912200927,56.26916885375982],[-4.099165916442814,56.278610229492244],[-4.120277881622258,56.293880462646484],[-4.170556068420353,56.30028152465832],[-4.219446182250976,56.329158782958984],[-4.228888034820557,56.35583114624018],[-4.22415018081665,56.380058288574276],[-4.186388969421387,56.39139175415044],[-4.186944961547851,56.45721817016607],[-4.148056030273438,56.45277023315429],[-4.095277786254883,56.46833038330078],[-4.121665954589844,56.50222015380854],[-4.144721984863281,56.51221084594738],[-4.175594806671086,56.50953674316406],[-4.234340190887451,56.49155426025385],[-4.284689903259277,56.48136520385742],[-4.322779178619327,56.533329010009815],[-4.351666927337589,56.5408287048341],[-4.390555858612061,56.52611160278332],[-4.482501029968262,56.510829925537166],[-4.521111965179443,56.51443862915045],[-4.529723167419434,56.501110076904354],[-4.600277900695744,56.49248886108404],[-4.639380931854247,56.47185134887695],[-4.676392078399658,56.491699218750114],[-4.649171829223633,56.51922225952154],[-4.660831928253117,56.534439086914176],[-4.692779064178466,56.54804992675781],[-4.595276832580566,56.57444000244146],[-4.558332920074406,56.57027053833008],[-4.595580101013184,56.607482910156364],[-4.628056049346924,56.612220764160206],[-4.617524147033635,56.63150787353527],[-4.633612155914193,56.64971923828125],[-4.671945095062256,56.63972091674804],[-4.708611965179387,56.641510009765625],[-4.702776908874512,56.67026901245123],[-4.64527702331543,56.6755485534668],[-4.586390972137451,56.69250106811523],[-4.597777843475228,56.70861053466791],[-4.573609828948975,56.727489471435604],[-4.578333854675293,56.75500106811535],[-4.551668167114201,56.76361083984381],[-4.514166831970215,56.803600311279354],[-4.47444391250599,56.78583145141607],[-4.436561107635498,56.7784423828125],[-4.393423080444336,56.812953948974666],[-4.366665840148926,56.826660156249936],[-4.332777976989746,56.824169158935604],[-4.303055763244629,56.84498977661138],[-4.253056049346924,56.85305023193359],[-4.201111793518066,56.86943817138672],[-4.202221870422306,56.89305114746087],[-4.16416692733759,56.90861129760742],[-4.099165916442814,56.89527130126959],[-4.033055782318058,56.90250015258789],[-3.976110935211182,56.89554977416998],[-3.960000038146859,56.929161071777344],[-3.940557003021127,56.947490692138615],[-3.878056049346867,56.924720764160156],[-3.816668033599796,56.93416976928711],[-3.79639005661005,56.9302711486817],[-3.743612051010132,56.932781219482536],[-3.727777004241887,56.92277908325201],[-3.687777996063175,56.920269012451165],[-3.662221908569335,56.929988861083984],[-3.624722957611084,56.9233283996582],[-3.588057041168212,56.929988861083984],[-3.569444894790593,56.921390533447266],[-3.569722890853768,56.89387893676769],[-3.549443006515503,56.88582992553716],[-3.503056049346867,56.8905487060548],[-3.461389064788818,56.87554931640625],[-3.395034074783268,56.88157272338867],[-3.391881942748967,56.852169036865234],[-3.355427026748657,56.79675674438482],[-3.355427026748657,56.76029968261713],[-3.335011005401554,56.723842620849666],[-3.278135061264038,56.67717742919922],[-3.262094974517822,56.66988372802729],[-3.181890010833683,56.658218383789176],[-3.155641078948975,56.64801025390625],[-3.129390001296997,56.615928649902344],[-3.084182977676392,56.607177734375],[-3.142514944076538,56.56926345825189],[-3.168764114379883,56.53134536743164],[-3.170222997665405,56.51676177978515],[-3.146891117095947,56.49051284790039],[-3.079322099685669,56.47496032714838],[-3.056514024734497,56.455696105956974],[-3.080832958221379,56.45097351074218],[-3.131944894790649,56.42514038085948],[-3.175277948379517,56.39347076416027],[-3.2623450756073,56.350971221923885]]]},"properties":{"ID_0":242,"ISO":"GB-PKN","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":162,"NAME_2":"Perthshire and Kinross","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":"Perth and Kinross"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.356803894042969,55.81916046142589],[-4.441013813018742,55.786659240722656],[-4.488380908966008,55.77613067626953],[-4.516318798065129,55.76287841796881],[-4.634696960449104,55.76665878295893],[-4.715750217437744,55.81192016601573],[-4.751653194427377,55.857284545898494],[-4.727327823638858,55.848762512206974],[-4.608382225036621,55.84244537353527],[-4.588380813598576,55.85086822509759],[-4.590487003326358,55.88139343261713],[-4.641944885253793,55.9317626953125],[-4.580277919769173,55.92402648925787],[-4.517499923706055,55.92986297607422],[-4.489168167114258,55.9261093139649],[-4.355751991271916,55.86409378051769],[-4.356803894042969,55.81916046142589]]]},"properties":{"ID_0":242,"ISO":"GB-RFW","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":163,"NAME_2":"Renfrewshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.500277996063176,55.40972137451172],[-3.534723043441658,55.43804931640631],[-3.512223005294799,55.49222183227539],[-3.484998941421509,55.51499938964843],[-3.487222909927311,55.56026840209972],[-3.526946067810002,55.600269317627],[-3.478055953979492,55.61222076416027],[-3.468887090682983,55.625831604003906],[-3.479444026946964,55.648609161376946],[-3.394443988799992,55.707771301269645],[-3.435832977294808,55.71833038330078],[-3.4352769851684,55.734161376953125],[-3.45783805847168,55.76966094970703],[-3.434444904327393,55.79721832275402],[-3.395265102386475,55.81739425659174],[-3.360150098800602,55.81172943115246],[-3.336946010589543,55.794170379638665],[-3.297498941421509,55.7938804626466],[-3.269721031188965,55.77389144897472],[-3.230000019073486,55.77637863159174],[-3.184165954589844,55.80167007446295],[-3.143332958221322,55.7388801574707],[-3.14499902725214,55.722221374511776],[-3.120831966400146,55.71194076538086],[-3.093333959579467,55.71860885620117],[-3.095556020736581,55.73611068725597],[-3.073611974716187,55.751388549804744],[-2.942779064178467,55.815280914306754],[-2.932499885559025,55.78610992431646],[-2.886111974716187,55.78805923461913],[-2.855556011199951,55.8133316040039],[-2.820858955383301,55.82167816162104],[-2.780556917190551,55.83832931518566],[-2.735832929611206,55.82804870605468],[-2.654444932937622,55.848331451416016],[-2.640278100967407,55.83361053466802],[-2.595000982284489,55.827770233154354],[-2.533056020736637,55.85638046264654],[-2.426388025283756,55.86388015747082],[-2.40055608749384,55.886379241943416],[-2.435832977294922,55.895271301269645],[-2.365672111511174,55.94541549682617],[-2.323610067367554,55.932083129882926],[-2.25583291053772,55.92486190795904],[-2.203612089156991,55.92902755737304],[-2.174166917800903,55.917083740234375],[-2.135832071304321,55.91652679443359],[-2.133610010147038,55.89263916015619],[-2.072499990463257,55.86902618408203],[-2.066389083862248,55.842918395996094],[-2.030278921127262,55.80439758300781],[-2.080277919769287,55.79444122314453],[-2.088495016098022,55.7584495544433],[-2.172498941421452,55.719158172607365],[-2.238610029220581,55.65193939208979],[-2.330925941467228,55.64054870605469],[-2.325834989547673,55.62221908569347],[-2.278332948684635,55.589721679687614],[-2.257777929305973,55.54943847656256],[-2.216944932937565,55.50944137573248],[-2.213887929916268,55.490268707275504],[-2.182499885559082,55.458889007568416],[-2.216109991073552,55.4252815246582],[-2.273334980010986,55.419719696044865],[-2.29416799545288,55.4030494689942],[-2.330832958221436,55.39833068847662],[-2.349721908569279,55.3647193908692],[-2.38499903678894,55.344158172607536],[-2.402225017547551,55.361381530761776],[-2.427778005599919,55.366939544677734],[-2.463057041168213,55.36111068725597],[-2.522778987884521,55.3255500793457],[-2.55222392082203,55.31555175781256],[-2.569998979568425,55.29222106933594],[-2.628334999084473,55.26554870605469],[-2.618335008621216,55.244159698486385],[-2.626111030578613,55.22333145141607],[-2.659723997116032,55.21638107299799],[-2.685632944107056,55.19132995605469],[-2.699444055557194,55.1772193908692],[-2.771111965179443,55.14611053466791],[-2.819998979568481,55.13972091674799],[-2.850555896758976,55.112220764160156],[-2.85944390296936,55.136379241943416],[-2.889445066452026,55.15526962280279],[-2.884166002273446,55.20193862915038],[-2.863888978958073,55.21860885620123],[-2.868889093399048,55.2369384765625],[-2.898056983947697,55.25305175781261],[-2.872498989105168,55.2619400024414],[-2.891110897064152,55.27804946899414],[-2.944998025894165,55.28805923461925],[-2.997498035430908,55.26832962036132],[-3.03444504737854,55.27304840087896],[-3.056945085525456,55.30722045898448],[-3.098331928253117,55.32971954345709],[-3.104444980621338,55.352218627929744],[-3.130279064178467,55.35667037963873],[-3.164166927337532,55.349720001220646],[-3.207499980926456,55.3722190856933],[-3.285000085830632,55.34111022949224],[-3.309443950653019,55.34915924072271],[-3.303333044052124,55.384990692138615],[-3.283056020736694,55.4013786315919],[-3.241389036178532,55.41888046264654],[-3.252499103546143,55.428890228271484],[-3.316390037536564,55.438331604003906],[-3.345000028610229,55.411941528320426],[-3.410557985305786,55.411941528320426],[-3.443609952926636,55.40444183349615],[-3.500277996063176,55.40972137451172]]]},"properties":{"ID_0":242,"ISO":"GB-SCB","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":164,"NAME_2":"Scottish Borders","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":"The Borders"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.846354186534825,60.67552185058593],[-0.954166710376683,60.67291641235363],[-1.033333420753479,60.597915649414055],[-0.997916698455754,60.58124923706054],[-1.037500023841744,60.489582061767685],[-1.147916674613953,60.48333358764642],[-1.172916650771981,60.500000000000114],[-1.189062595367432,60.53802108764654],[-1.192187547683716,60.581771850585994],[-1.202604174613896,60.6036491394044],[-1.189583420753422,60.63333511352545],[-1.140104174613953,60.65885162353521],[-1.128645896911564,60.72656250000006],[-1.075000047683716,60.73333358764654],[-1.012500047683716,60.7270851135255],[-0.974479198455754,60.7046852111817],[-0.960416674613953,60.72083282470709],[-0.966145873069763,60.74114608764655],[-0.946354210376683,60.75260162353515],[-0.940104186534825,60.777606964111435],[-0.951562523841801,60.79739379882807],[-0.912500023841858,60.81874847412103],[-0.893229186534881,60.843231201171875],[-0.783333361148777,60.83124923706049],[-0.779166698455754,60.78125],[-0.81406253576273,60.771354675293026],[-0.783854186534882,60.74218750000006],[-0.834895849227848,60.7286491394043],[-0.860937535762787,60.7046852111817],[-0.829687535762787,60.683856964111335],[-0.846354186534825,60.67552185058593]]],[[[-1.504166722297668,60.16249847412109],[-1.563020825386047,60.19427108764654],[-1.595833420753422,60.193748474121094],[-1.660416722297612,60.227085113525455],[-1.6953125,60.23802185058593],[-1.681770801544189,60.27864837646484],[-1.683333396911564,60.302082061767635],[-1.620833396911621,60.30833435058588],[-1.583333373069649,60.302082061767635],[-1.512500047683716,60.31874847412115],[-1.466145873069763,60.35260391235357],[-1.46875,60.37916564941406],[-1.408854246139526,60.399478912353516],[-1.45572924613947,60.415103912353516],[-1.454166650772095,60.44791793823242],[-1.511979222297668,60.46510696411138],[-1.541666746139413,60.48125076293939],[-1.61250007152546,60.47499847412121],[-1.635416746139526,60.48749923706065],[-1.566666722297612,60.51666641235363],[-1.561979174613839,60.545314788818466],[-1.527083396911621,60.55625152587901],[-1.493749976158142,60.54791641235357],[-1.433854222297668,60.57760620117199],[-1.425000071525517,60.62083435058594],[-1.381250023841858,60.60833358764649],[-1.34375,60.60833358764649],[-1.34375,60.625],[-1.300520896911564,60.6223983764649],[-1.313020825385991,60.54010391235357],[-1.339583396911621,60.53541564941411],[-1.324479222297668,60.499481201171875],[-1.262500047683659,60.47916793823243],[-1.229166746139526,60.49583435058588],[-1.172916650771981,60.45833206176769],[-1.170833349227905,60.42708206176752],[-1.127604246139526,60.41719055175787],[-1.070833325386047,60.44583511352539],[-1.048437476158028,60.435939788818416],[-1.125,60.39374923706054],[-1.078645825386047,60.38072586059564],[-1.075000047683716,60.35833358764654],[-1.118749976158142,60.34375],[-1.125,60.32500076293956],[-1.084895849227905,60.318225860595696],[-1.141666650772095,60.28333282470714],[-1.110416650772038,60.275001525878906],[-1.141145825385991,60.2578125],[-1.149999976158085,60.23958206176752],[-1.178645849227905,60.24010086059582],[-1.191145896911507,60.21718978881841],[-1.156770825386047,60.20260620117193],[-1.148437499999943,60.18385696411144],[-1.164062499999943,60.16510391235357],[-1.150520801544133,60.1317710876466],[-1.210416674613952,60.09999847412114],[-1.209895849227848,60.06510162353527],[-1.183333396911621,60.041667938232415],[-1.231250047683659,60.02916717529297],[-1.224479198455811,60.00885391235351],[-1.201388955116158,59.994304656982365],[-1.219084024429264,59.97455596923822],[-1.247416019439697,59.98294448852545],[-1.269165992736816,59.932361602783196],[-1.270277976989689,59.90819549560547],[-1.293056011199951,59.8687515258789],[-1.32027804851532,59.897914886474666],[-1.384711027145386,59.889282226562614],[-1.373612046241703,59.917083740234425],[-1.333055019378662,59.9667205810548],[-1.349722027778569,59.98014068603515],[-1.347916722297668,60.00416564941406],[-1.321354150772095,60.010940551757926],[-1.359895825386047,60.055728912353516],[-1.356250047683659,60.075000762939446],[-1.304166674613896,60.12291717529308],[-1.298437476158142,60.14739608764654],[-1.337499976158028,60.16041564941413],[-1.329166650772095,60.181251525878956],[-1.347916722297668,60.2000007629395],[-1.404166698455811,60.19583511352545],[-1.400520801544189,60.17968750000006],[-1.447916746139413,60.15625],[-1.504166722297668,60.16249847412109]]],[[[-0.866145849227905,60.63177108764648],[-0.829687535762787,60.62656021118175],[-0.816666722297668,60.60416793823248],[-0.773437499999943,60.61198043823247],[-0.769270837306919,60.594268798828125],[-0.804166674613896,60.5708351135255],[-0.830729186534825,60.581771850585994],[-0.887500047683716,60.56041717529302],[-0.911979198455811,60.57135391235357],[-0.951562523841801,60.62031555175787],[-0.941666722297668,60.63124847412104],[-0.893750011920815,60.62291717529296],[-0.866145849227905,60.63177108764648]]],[[[-0.912500023841858,60.37708282470709],[-0.987500011920815,60.327083587646605],[-1.047395825385991,60.33802413940429],[-1.060416698455811,60.37083435058599],[-0.983333349227905,60.36875152587903],[-0.968229174613953,60.38072586059564],[-0.912500023841858,60.37708282470709]]],[[[-1.726562499999886,60.34426879882812],[-1.668750047683716,60.341667175293075],[-1.65885424613947,60.323440551757805],[-1.697916746139526,60.314582824707145],[-1.724479198455811,60.323440551757805],[-1.726562499999886,60.34426879882812]]],[[[-1.07291674613947,60.17708206176758],[-1.043750047683659,60.152084350586044],[-1.006250023841858,60.15000152587902],[-1.018750071525574,60.13124847412115],[-1.050520896911621,60.14218521118164],[-1.070833325386047,60.10416793823236],[-1.12031257152546,60.117187500000114],[-1.113020896911564,60.14843750000005],[-1.149999976158085,60.17083358764654],[-1.134895920753479,60.182815551757926],[-1.07291674613947,60.17708206176758]]],[[[-2.072396039962711,60.15468978881847],[-2.046354293823185,60.149478912353565],[-2.052604198455754,60.11302185058587],[-2.114583253860416,60.133335113525334],[-2.1015625,60.151565551757756],[-2.072396039962711,60.15468978881847]]],[[[-1.631945013999939,59.554584503173885],[-1.611389994621277,59.532081604003906],[-1.652500987052917,59.53402709960938],[-1.631945013999939,59.554584503173885]]]]},"properties":{"ID_0":242,"ISO":"GB-ZET","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":165,"NAME_2":"Shetland Islands","TYPE_2":"Island Area","ENGTYPE_2":"Island Area","NL_NAME_2":null,"VARNAME_2":"Zetland"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.65749979019165,55.561981201171925],[-4.582045078277587,55.59136199951177],[-4.491108894348145,55.55688476562506],[-4.443036079406738,55.54486465454101],[-4.426511764526367,55.517822265625114],[-4.432519912719727,55.48327255249023],[-4.479092121124268,55.45772933959961],[-4.483600139617863,55.44571304321289],[-4.461063861846924,55.41115951538085],[-4.465571880340519,55.385620117187614],[-4.569231033325195,55.396137237548885],[-4.576743125915527,55.381111145019524],[-4.533174991607609,55.339046478271484],[-4.474586009979248,55.310504913330135],[-4.444540023803711,55.2819595336914],[-4.444540023803711,55.200832366943416],[-4.467479228973332,55.15789031982433],[-4.488890171051025,55.15166091918951],[-4.538609027862549,55.16138076782232],[-4.61111307144165,55.1402702331544],[-4.647500991821232,55.11972045898443],[-4.644722938537541,55.085830688476506],[-4.619720935821476,55.076938629150504],[-4.630556106567383,55.05389022827143],[-4.701388835906982,55.04193878173839],[-4.800557136535588,55.04417037963867],[-4.870555877685547,55.036659240722656],[-4.889166831970215,55.0147209167481],[-4.92444610595703,54.998050689697266],[-4.986947059631348,55.00777053833007],[-5.038609981536808,54.991947174072266],[-5.056389808654785,55.01263809204113],[-5.053610801696721,55.05014038085949],[-4.999166965484619,55.11208343505864],[-4.993610858917235,55.14374923706055],[-4.931943893432617,55.17347335815423],[-4.910278797149658,55.19958496093756],[-4.860833168029728,55.226806640625],[-4.860833168029728,55.25263977050787],[-4.839168071746826,55.27680587768565],[-4.837499141693114,55.31124877929699],[-4.84638786315918,55.32458496093761],[-4.775833129882756,55.35930633544933],[-4.771388053894043,55.400695800781364],[-4.746944904327336,55.421527862548885],[-4.713610172271672,55.43430709838873],[-4.656943798065186,55.43986129760747],[-4.641944885253793,55.471805572509766],[-4.619166851043701,55.491806030273494],[-4.623054981231633,55.508750915527344],[-4.658055782318115,55.54013824462902],[-4.65749979019165,55.561981201171925]]]},"properties":{"ID_0":242,"ISO":"GB-SAY","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":166,"NAME_2":"South Ayrshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.250916004180851,55.6859970092774],[-4.225224971771126,55.690868377685604],[-4.225224971771126,55.7350807189942],[-4.251543045043888,55.74981689453125],[-4.240317821502629,55.79342651367198],[-4.20206880569458,55.784553527832024],[-4.189435958862305,55.795078277587834],[-4.196805000305176,55.82034301757807],[-4.176805019378662,55.830867767334034],[-4.084230899810791,55.82730102539068],[-4.065093040466309,55.812511444091854],[-3.982161998748722,55.77582931518555],[-3.897635936737061,55.73436355590825],[-3.881686925888005,55.73276901245117],[-3.781213045120182,55.7630729675293],[-3.733390092849675,55.7835693359375],[-3.688055992126351,55.79526901245111],[-3.611109972000122,55.803890228271484],[-3.565001010894719,55.787769317627],[-3.522778034210205,55.7855491638183],[-3.45783805847168,55.76966094970703],[-3.4352769851684,55.734161376953125],[-3.435832977294808,55.71833038330078],[-3.394443988799992,55.707771301269645],[-3.479444026946964,55.648609161376946],[-3.468887090682983,55.625831604003906],[-3.478055953979492,55.61222076416027],[-3.526946067810002,55.600269317627],[-3.487222909927311,55.56026840209972],[-3.484998941421509,55.51499938964843],[-3.512223005294799,55.49222183227539],[-3.534723043441658,55.43804931640631],[-3.500277996063176,55.40972137451172],[-3.567501068115178,55.38388824462896],[-3.571944952011052,55.32971954345709],[-3.607223987579232,55.31888961791998],[-3.616667032241821,55.29277038574213],[-3.642222881317139,55.28971862792962],[-3.701389074325562,55.32083129882812],[-3.708333015441895,55.36278152465826],[-3.743056058883667,55.37110900878912],[-3.769443988799935,55.40916061401373],[-3.825834035873413,55.446388244628906],[-3.878612041473275,55.45499038696283],[-3.956665992736816,55.45444107055663],[-3.983174085617065,55.461067199707024],[-3.963794946670532,55.50730895996105],[-3.960791110992374,55.540359497070256],[-3.992338895797729,55.570404052734425],[-4.029899120330811,55.57190704345709],[-4.064451217651254,55.553878784179794],[-4.196653842926025,55.55237579345697],[-4.20717191696167,55.57190704345709],[-4.172617912292367,55.59894943237316],[-4.180130004882812,55.61697769165038],[-4.217688083648625,55.64101409912121],[-4.250916004180851,55.6859970092774]]]},"properties":{"ID_0":242,"ISO":"GB-SLK","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":167,"NAME_2":"South Lanarkshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.125696182250977,56.005580902099666],[-4.158332824706974,56.02582931518566],[-4.198334217071533,56.01971817016613],[-4.287500858306827,56.0166587829591],[-4.267776966094971,55.98804855346691],[-4.2744460105896,55.95888900756847],[-4.301668167114258,55.957218170166016],[-4.364751815795842,55.97564697265625],[-4.408608913421574,55.975830078125],[-4.431944847106934,55.99860000610346],[-4.458333015441895,56.003051757812614],[-4.470555782318115,56.0286102294923],[-4.429722785949706,56.041110992431754],[-4.446669101715031,56.0538902282716],[-4.500277996063176,56.062770843505916],[-4.521344184875488,56.072448730468864],[-4.598025798797607,56.07788085937499],[-4.611256122589111,56.08835983276372],[-4.68048095703125,56.19848632812506],[-4.685180187225342,56.24847412109381],[-4.657409191131592,56.28112792968761],[-4.671691894531192,56.30029296875],[-4.649203777313232,56.32083511352545],[-4.719178199768066,56.32830810546875],[-4.778891086578368,56.31832885742199],[-4.775816917419319,56.34307861328131],[-4.833006858825627,56.36291503906255],[-4.803298950195256,56.4083480834962],[-4.770556926727238,56.42694091796875],[-4.725832939147892,56.437484741210994],[-4.722229957580566,56.453918457031364],[-4.665526866912842,56.4603271484375],[-4.639380931854247,56.47185134887695],[-4.600277900695744,56.49248886108404],[-4.529723167419434,56.501110076904354],[-4.521111965179443,56.51443862915045],[-4.482501029968262,56.510829925537166],[-4.390555858612061,56.52611160278332],[-4.351666927337589,56.5408287048341],[-4.322779178619327,56.533329010009815],[-4.284689903259277,56.48136520385742],[-4.234340190887451,56.49155426025385],[-4.175594806671086,56.50953674316406],[-4.144721984863281,56.51221084594738],[-4.121665954589844,56.50222015380854],[-4.095277786254883,56.46833038330078],[-4.148056030273438,56.45277023315429],[-4.186944961547851,56.45721817016607],[-4.186388969421387,56.39139175415044],[-4.22415018081665,56.380058288574276],[-4.228888034820557,56.35583114624018],[-4.219446182250976,56.329158782958984],[-4.170556068420353,56.30028152465832],[-4.120277881622258,56.293880462646484],[-4.099165916442814,56.278610229492244],[-3.996388912200927,56.26916885375982],[-3.962500095367374,56.25083160400385],[-3.906666040420532,56.23389053344732],[-3.878056049346867,56.2138786315919],[-3.842777013778629,56.21833038330084],[-3.824373006820679,56.1925888061524],[-3.839694023132211,56.15687561035156],[-3.861366033554077,56.129344940185604],[-3.846137046813965,56.10766983032237],[-3.80521297454834,56.10653686523443],[-3.750951051712036,56.07049179077142],[-3.731349945068303,56.06379699707031],[-3.729166984558105,56.05069351196289],[-3.768455028533879,56.051734924316406],[-3.824273109435978,56.04376220703125],[-3.921557903289795,56.03738403320324],[-3.988538980484009,56.02302932739258],[-4.011261940002441,56.01226806640625],[-4.017778873443604,56.02582931518566],[-4.081943035125732,56.02582931518566],[-4.125696182250977,56.005580902099666]]]},"properties":{"ID_0":242,"ISO":"GB-STG","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":168,"NAME_2":"Stirling","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.35162878036499,55.90525436401373],[-4.355751991271916,55.86409378051769],[-4.489168167114258,55.9261093139649],[-4.517499923706055,55.92986297607422],[-4.591169834136906,55.940971374511776],[-4.591363906860352,55.94153594970703],[-4.597777843475228,55.960327148437614],[-4.598025798797607,56.07788085937499],[-4.521344184875488,56.072448730468864],[-4.500277996063176,56.062770843505916],[-4.446669101715031,56.0538902282716],[-4.429722785949706,56.041110992431754],[-4.470555782318115,56.0286102294923],[-4.458333015441895,56.003051757812614],[-4.431944847106934,55.99860000610346],[-4.408608913421574,55.975830078125],[-4.364751815795842,55.97564697265625],[-4.359961032867431,55.91191864013672],[-4.35162878036499,55.90525436401373]]]},"properties":{"ID_0":242,"ISO":"GB-WDU","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":169,"NAME_2":"West Dunbartonshire","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":"Dumbarton and Clydebank"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.808888912200927,55.895271301269645],[-3.773890018463135,55.90250015258789],[-3.719166040420532,55.93193817138666],[-3.66722202301014,55.942211151123104],[-3.598611116409188,55.99110031127941],[-3.539443016052189,55.98666000366216],[-3.512501001358032,55.99986648559576],[-3.449739933013916,55.99652862548834],[-3.449486970901489,55.91617584228521],[-3.43513298034668,55.903415679931584],[-3.393668889999389,55.89225387573247],[-3.395265102386475,55.81739425659174],[-3.434444904327393,55.79721832275402],[-3.45783805847168,55.76966094970703],[-3.522778034210205,55.7855491638183],[-3.565001010894719,55.787769317627],[-3.611109972000122,55.803890228271484],[-3.688055992126351,55.79526901245111],[-3.733390092849675,55.7835693359375],[-3.71833395957941,55.8124885559082],[-3.744999885559082,55.85805892944336],[-3.710278034210148,55.87028121948242],[-3.728332996368352,55.883331298828125],[-3.793334007263127,55.871940612793026],[-3.808888912200927,55.895271301269645]]]},"properties":{"ID_0":242,"ISO":"GB-WLN","NAME_0":"United Kingdom","ID_1":3,"NAME_1":"Scotland","ID_2":170,"NAME_2":"West Lothian","TYPE_2":"Unitary District","ENGTYPE_2":"Unitary District","NL_NAME_2":null,"VARNAME_2":"Linlithgow"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.229166030883789,53.18264007568371],[-4.303612232208251,53.14680480957042],[-4.356944084167424,53.13069534301769],[-4.405832767486572,53.14402770996094],[-4.416944026947021,53.161251068115234],[-4.443056106567269,53.15708160400402],[-4.46638822555542,53.181804656982536],[-4.507501125335637,53.186805725097706],[-4.501944065093994,53.21208190917969],[-4.554721832275391,53.249305725097656],[-4.557500839233398,53.263748168945256],[-4.583610057830811,53.28347396850597],[-4.556944847106876,53.29819488525396],[-4.581387996673527,53.33347320556646],[-4.558610916137638,53.36402893066417],[-4.575277805328369,53.404026031494084],[-4.506945133209172,53.40902709960949],[-4.485833168029728,53.4201393127442],[-4.454166889190617,53.4162483215332],[-4.428054809570312,53.42986297607433],[-4.368053913116398,53.424583435058594],[-4.283055782318115,53.41152954101574],[-4.269721031188965,53.395694732666016],[-4.279166221618652,53.37680435180664],[-4.264722824096566,53.36013793945318],[-4.24138879776001,53.35958480834955],[-4.20527791976923,53.29486083984375],[-4.143611907958984,53.304862976074276],[-4.119721889495793,53.319305419921875],[-4.045279026031437,53.304584503173885],[-4.070278167724553,53.29069519042969],[-4.087500095367432,53.26235961914074],[-4.210277080535832,53.20958328247076],[-4.229166030883789,53.18264007568371]]]},"properties":{"ID_0":242,"ISO":"GB-AGY","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":171,"NAME_2":"Anglesey","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.128468990325871,51.79459381103521],[-3.110353946685791,51.765609741210994],[-3.106729984283447,51.70401763916021],[-3.114710092544499,51.70082473754883],[-3.1701340675354,51.72575378417974],[-3.232223987579289,51.73833084106456],[-3.257499933242797,51.77027130126964],[-3.288985967636052,51.793331146240234],[-3.274167060852051,51.81472015380871],[-3.20666599273676,51.808609008789176],[-3.156816959381046,51.81079864501958],[-3.128468990325871,51.79459381103521]]]},"properties":{"ID_0":242,"ISO":"GB-BGW","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":172,"NAME_2":"Blaenau Gwent","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.475198030471745,51.510440826416016],[-3.523056030273438,51.49361038208019],[-3.517220973968392,51.45000076293945],[-3.525556087493896,51.43582916259771],[-3.578056097030583,51.41977310180675],[-3.597498893737793,51.440971374511776],[-3.660834074020386,51.47902679443371],[-3.718610048294067,51.477916717529354],[-3.745277881622257,51.50125122070318],[-3.7624990940094,51.534671783447266],[-3.691112041473332,51.52582931518565],[-3.640278100967407,51.54249954223633],[-3.651945114135742,51.56999969482433],[-3.682498931884765,51.58749008178711],[-3.667500019073486,51.604999542236435],[-3.653610944747868,51.63999938964855],[-3.588609933853092,51.63444137573242],[-3.549144983291626,51.641819000244254],[-3.490776062011718,51.61706161499023],[-3.4617919921875,51.58988952636719],[-3.475198030471745,51.510440826416016]]]},"properties":{"ID_0":242,"ISO":"GB-BGE","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":173,"NAME_2":"Bridgend","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.227468013763371,51.545169830322266],[-3.257086992263794,51.579021453857536],[-3.301707983016968,51.64862442016607],[-3.277014017105103,51.65872955322265],[-3.275203943252563,51.676841735839844],[-3.296942949295044,51.70944976806635],[-3.333810091018677,51.789947509765625],[-3.288985967636052,51.793331146240234],[-3.257499933242797,51.77027130126964],[-3.232223987579289,51.73833084106456],[-3.1701340675354,51.72575378417974],[-3.114710092544499,51.70082473754883],[-3.070498943328857,51.68046569824219],[-3.075934886932373,51.62974166870123],[-3.031853914260864,51.60578918457037],[-3.109121084213257,51.58730697631836],[-3.083611011505127,51.562770843505916],[-3.10233902931202,51.543170928955185],[-3.1563880443573,51.553050994873104],[-3.227468013763371,51.545169830322266]]]},"properties":{"ID_0":242,"ISO":"GB-CAY","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":174,"NAME_2":"Caerphilly","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.179722070693913,51.458801269531364],[-3.200683116912841,51.46776962280279],[-3.260731935501099,51.46937179565441],[-3.291353940963688,51.50046157836925],[-3.276110887527409,51.51639175415039],[-3.227468013763371,51.545169830322266],[-3.1563880443573,51.553050994873104],[-3.10233902931202,51.543170928955185],[-3.067500114440804,51.5261116027832],[-3.07563591003418,51.502361297607536],[-3.119721889495793,51.49041748046881],[-3.155833959579468,51.45124816894531],[-3.179722070693913,51.458801269531364]]]},"properties":{"ID_0":242,"ISO":"GB-CRF","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":175,"NAME_2":"Cardiff","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.933089971542301,51.762283325195256],[-3.978055000305175,51.76665878295904],[-4.023056983947754,51.744159698486385],[-4.041944026947021,51.702220916748104],[-4.070831775665283,51.673873901367244],[-4.083611011505127,51.66208267211914],[-4.140276908874455,51.656806945800724],[-4.161388874053898,51.66069412231457],[-4.179165840148926,51.67847061157226],[-4.216945171356144,51.68513870239258],[-4.311388015747069,51.67319488525402],[-4.344723224639893,51.692085266113224],[-4.376389026641846,51.72402954101568],[-4.370832920074463,51.769027709960994],[-4.40861177444458,51.756526947021484],[-4.452500820159912,51.73402786254888],[-4.559166908264103,51.74180603027349],[-4.578611850738525,51.733470916748104],[-4.638973236083928,51.73430633544922],[-4.640035152435303,51.80602264404296],[-4.663082122802678,51.8255233764649],[-4.724246978759652,51.820205688476676],[-4.766796112060547,51.82463836669933],[-4.758817195892333,51.83882141113281],[-4.724246978759652,51.84591293334955],[-4.740202903747559,51.86896133422863],[-4.732223987579346,51.88402938842785],[-4.693221092224064,51.908847808838004],[-4.631171226501465,51.91062164306652],[-4.597486019134521,51.91948699951172],[-4.517706871032714,51.94873809814459],[-4.494659900665283,51.96912765502924],[-4.523912906646672,51.99394607543945],[-4.541642189025765,52.02497100830078],[-4.558641910552922,52.03772354125982],[-4.496541023254395,52.03733825683594],[-4.409586906433049,52.02828216552739],[-4.235680103301944,52.03190231323242],[-4.203072071075383,52.04096221923828],[-4.161406993865967,52.0699462890625],[-4.119740009307861,52.089874267578175],[-4.059960842132568,52.10617828369135],[-4.036409854888859,52.09893035888666],[-3.989310026168823,52.09711837768549],[-3.934963941574096,52.12248229980474],[-3.866127014160099,52.12429046630853],[-3.76286888122553,52.10617828369135],[-3.741137027740421,52.12170028686535],[-3.706666946411133,52.11471939086914],[-3.71055603027338,52.086658477783196],[-3.667500019073486,52.075271606445256],[-3.643610954284611,52.03139114379888],[-3.673610925674381,52.01277160644531],[-3.695557117462158,51.98888015747076],[-3.686666011810245,51.94832992553722],[-3.709867000579834,51.9323616027832],[-3.716665983200073,51.90333175659174],[-3.711244106292724,51.88187026977544],[-3.72166895866394,51.86582946777355],[-3.752223014831486,51.84722137451172],[-3.76694393157959,51.817768096923885],[-3.800007104873658,51.78530883789074],[-3.819443941116276,51.79999923706054],[-3.867223024368229,51.80028152465832],[-3.878056049346867,51.775279998779354],[-3.896111011505127,51.76361083984369],[-3.933089971542301,51.762283325195256]]]},"properties":{"ID_0":242,"ISO":"GB-CMN","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":176,"NAME_2":"Carmarthenshire","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.927417993545532,52.553249359130916],[-3.867779016494694,52.556110382080135],[-3.839445114135685,52.54861068725586],[-3.829165935516357,52.532779693603516],[-3.833889007568303,52.50416946411133],[-3.813055038452092,52.48138046264654],[-3.766665935516358,52.48666000366211],[-3.745277881622257,52.5011100769043],[-3.724720001220703,52.49888992309576],[-3.736943006515446,52.46722030639654],[-3.757776975631657,52.45861053466808],[-3.760833024978637,52.43748855590826],[-3.720000028610229,52.42026901245117],[-3.694443941116276,52.38249969482433],[-3.670279026031438,52.36333084106456],[-3.662221908569335,52.33943939208978],[-3.703610897064209,52.33472061157238],[-3.731111049652043,52.318889617920036],[-3.701111078262329,52.27389144897472],[-3.734724044799805,52.25804901123047],[-3.743056058883667,52.20277023315441],[-3.752501010894719,52.17860031127929],[-3.741137027740421,52.12170028686535],[-3.76286888122553,52.10617828369135],[-3.866127014160099,52.12429046630853],[-3.934963941574096,52.12248229980474],[-3.989310026168823,52.09711837768549],[-4.036409854888859,52.09893035888666],[-4.059960842132568,52.10617828369135],[-4.119740009307861,52.089874267578175],[-4.161406993865967,52.0699462890625],[-4.203072071075383,52.04096221923828],[-4.235680103301944,52.03190231323242],[-4.409586906433049,52.02828216552739],[-4.496541023254395,52.03733825683594],[-4.558641910552922,52.03772354125982],[-4.622305870056151,52.050678253173885],[-4.641808032989502,52.0639762878418],[-4.69676685333252,52.06840515136713],[-4.69487810134882,52.10486221313482],[-4.6875,52.129859924316406],[-4.639166831970215,52.13874816894542],[-4.517499923706055,52.13597106933594],[-4.468612194061279,52.16624832153325],[-4.432498931884709,52.176528930664176],[-4.377499103546086,52.21569442749035],[-4.326942920684758,52.21291732788086],[-4.260279178619385,52.24791717529296],[-4.209722995758057,52.26374816894531],[-4.13861083984375,52.325695037841854],[-4.097499847412109,52.39319610595714],[-4.0813889503479,52.44513702392578],[-4.052498817443791,52.48069381713867],[-4.059720993041992,52.52680587768565],[-4.019166946411132,52.52597045898449],[-3.968611001968383,52.54513931274425],[-3.933056116104126,52.552474975586044],[-3.927417993545532,52.553249359130916]]]},"properties":{"ID_0":242,"ISO":"GB-CGN","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":177,"NAME_2":"Ceredigion","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":"Cardiganshire"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.51269507408142,53.316806793213004],[-3.518656969070435,53.24980926513683],[-3.477432012557927,53.21244430541998],[-3.474853992462045,53.16992950439453],[-3.49804401397705,53.1441650390625],[-3.585649967193603,53.087478637695426],[-3.517369031906128,53.079746246338004],[-3.477432012557927,53.05655670166027],[-3.468413114547729,53.03336715698248],[-3.461512088775578,52.97647094726574],[-3.493890047073307,52.9647216796875],[-3.518332958221436,52.969440460205135],[-3.567223072052002,52.96527099609375],[-3.593333005905151,52.98167037963873],[-3.601110935211182,53.00693893432617],[-3.669356107711792,52.98888015747076],[-3.719638109207153,52.96379470825207],[-3.767306089401245,52.949623107910156],[-3.787919044494572,52.93674087524414],[-3.821417093276978,52.944469451904354],[-3.860066890716439,52.96379470825207],[-3.89485311508173,53.00888824462902],[-3.945096969604492,52.996006011963004],[-3.979881048202515,52.996006011963004],[-3.968286991119385,53.03078842163086],[-3.976017951965218,53.06042098999029],[-4.006937026977482,53.08876419067382],[-4.004361152648926,53.11066818237315],[-3.950249910354614,53.15704727172851],[-3.927059888839722,53.20085144042969],[-4.000833034515381,53.249027252197266],[-3.937500953674316,53.2679176330567],[-3.881387948989811,53.289859771728565],[-3.838054895400887,53.296249389648494],[-3.850833892822265,53.32347106933593],[-3.779166936874333,53.328750610351676],[-3.739167928695622,53.304584503173885],[-3.705832958221436,53.293472290039176],[-3.609721899032535,53.29013824462896],[-3.51269507408142,53.316806793213004]]]},"properties":{"ID_0":242,"ISO":"GB-CWY","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":178,"NAME_2":"Conwy","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":"Aberconwy and Colwyn"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.122706890106144,53.0664329528808],[-3.132157087325936,53.05913162231457],[-3.141175031661987,52.99729156494135],[-3.094794988632202,52.96379470825207],[-3.200437068939209,52.938030242920036],[-3.311233043670654,52.93287658691406],[-3.373075008392334,52.88907241821289],[-3.390722036361581,52.86741638183594],[-3.43611097335804,52.85667037963867],[-3.469971895217895,52.86201095581055],[-3.468333959579467,52.893608093261776],[-3.452778100967407,52.9030494689942],[-3.476665973663216,52.93333053588867],[-3.434444904327393,52.95861053466797],[-3.426388025283813,52.97360992431652],[-3.461512088775578,52.97647094726574],[-3.468413114547729,53.03336715698248],[-3.477432012557927,53.05655670166027],[-3.517369031906128,53.079746246338004],[-3.585649967193603,53.087478637695426],[-3.49804401397705,53.1441650390625],[-3.474853992462045,53.16992950439453],[-3.477432012557927,53.21244430541998],[-3.518656969070435,53.24980926513683],[-3.51269507408142,53.316806793213004],[-3.405833005905151,53.34430694580084],[-3.361262083053532,53.35041809082037],[-3.375653028488159,53.33226013183593],[-3.382092952728271,53.297477722168075],[-3.340866088867188,53.272998809814396],[-3.347309112548771,53.24594116210943],[-3.340866088867188,53.21888732910167],[-3.29835104942316,53.17637252807623],[-3.251971006393376,53.151893615722706],[-3.191418886184692,53.14802932739269],[-3.145040035247803,53.08876419067382],[-3.122706890106144,53.0664329528808]]]},"properties":{"ID_0":242,"ISO":"GB-DEN","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":179,"NAME_2":"Denbighshire","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.956809043884277,53.14467239379883],[-2.991724967956543,53.1390113830567],[-3.10381293296814,53.08103561401373],[-3.122706890106144,53.0664329528808],[-3.145040035247803,53.08876419067382],[-3.191418886184692,53.14802932739269],[-3.251971006393376,53.151893615722706],[-3.29835104942316,53.17637252807623],[-3.340866088867188,53.21888732910167],[-3.347309112548771,53.24594116210943],[-3.340866088867188,53.272998809814396],[-3.382092952728271,53.297477722168075],[-3.375653028488159,53.33226013183593],[-3.361262083053532,53.35041809082037],[-3.313055992126408,53.35458374023437],[-3.303611040115356,53.3348617553712],[-3.200278043746891,53.293472290039176],[-3.120834112167358,53.2481956481933],[-3.092499971389771,53.25672149658203],[-3.037220954894906,53.25111007690429],[-3.001389026641846,53.23944091796881],[-2.955276966094914,53.215549468994254],[-2.912499904632568,53.18638992309582],[-2.909168004989624,53.171390533447266],[-2.956809043884277,53.14467239379883]]]},"properties":{"ID_0":242,"ISO":"GB-FLN","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":180,"NAME_2":"Flintshire","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.612501144409123,53.304862976074276],[-4.554165840148925,53.24791717529291],[-4.588611125945987,53.23902893066412],[-4.610832214355412,53.2437515258789],[-4.63861083984375,53.28374862670904],[-4.68083381652832,53.282081604003906],[-4.696945190429631,53.30569458007824],[-4.651946067810059,53.32319259643555],[-4.612501144409123,53.304862976074276]]],[[[-4.000833034515381,53.249027252197266],[-3.927059888839722,53.20085144042969],[-3.950249910354614,53.15704727172851],[-4.004361152648926,53.11066818237315],[-4.006937026977482,53.08876419067382],[-3.976017951965218,53.06042098999029],[-3.968286991119385,53.03078842163086],[-3.979881048202515,52.996006011963004],[-3.945096969604492,52.996006011963004],[-3.89485311508173,53.00888824462902],[-3.860066890716439,52.96379470825207],[-3.821417093276978,52.944469451904354],[-3.787919044494572,52.93674087524414],[-3.767306089401245,52.949623107910156],[-3.719638109207153,52.96379470825207],[-3.669356107711792,52.98888015747076],[-3.601110935211182,53.00693893432617],[-3.593333005905151,52.98167037963873],[-3.567223072052002,52.96527099609375],[-3.518332958221436,52.969440460205135],[-3.493890047073307,52.9647216796875],[-3.461512088775578,52.97647094726574],[-3.426388025283813,52.97360992431652],[-3.434444904327393,52.95861053466797],[-3.476665973663216,52.93333053588867],[-3.452778100967407,52.9030494689942],[-3.468333959579467,52.893608093261776],[-3.469971895217895,52.86201095581055],[-3.490833044052124,52.834720611572266],[-3.527224063873234,52.83332824707037],[-3.577500104904118,52.81916046142578],[-3.597223043441772,52.784439086914055],[-3.580277919769287,52.76361083984386],[-3.571666955947819,52.73054885864252],[-3.601387023925724,52.69554901123041],[-3.667778015136719,52.68888854980469],[-3.69861102104187,52.676109313964844],[-3.726666927337646,52.67776870727539],[-3.763055086135864,52.66944122314453],[-3.796946048736515,52.67472076416027],[-3.83361101150507,52.640830993652344],[-3.827778100967407,52.62665939331055],[-3.837779045104923,52.59915924072271],[-3.875555992126465,52.576110839843864],[-3.911945104598942,52.568050384521484],[-3.927417993545532,52.553249359130916],[-3.933056116104126,52.552474975586044],[-3.959722042083627,52.56041717529302],[-4.044722080230599,52.542640686035156],[-4.07305383682251,52.54513931274425],[-4.107499122619572,52.59208297729492],[-4.130277156829834,52.61125183105469],[-4.118609905242919,52.64014053344721],[-4.09694385528553,52.66902923583979],[-4.057498931884709,52.68763732910162],[-4.061389923095703,52.72208404541015],[-4.0813889503479,52.747360229492244],[-4.145277976989746,52.80152893066412],[-4.154167175292969,52.81569290161138],[-4.129723072051945,52.826805114746094],[-4.118611812591553,52.850139617919865],[-4.144165992736816,52.882362365722706],[-4.134167194366455,52.91319274902344],[-4.168612003326416,52.90652847290045],[-4.220833778381348,52.91902923583996],[-4.321389198303223,52.90680694580083],[-4.331943988800049,52.891803741455135],[-4.393610000610352,52.89458465576177],[-4.411389827728271,52.88124847412115],[-4.465278148651066,52.867637634277344],[-4.471943855285645,52.84541702270508],[-4.501388072967529,52.83180618286144],[-4.49083423614502,52.7906951904298],[-4.51472091674799,52.792640686035156],[-4.586945056915283,52.8220825195313],[-4.609722137451172,52.824028015136776],[-4.641388893127385,52.80014038085943],[-4.68638801574707,52.79569625854498],[-4.719723224639893,52.802917480468864],[-4.730833053588866,52.78152847290039],[-4.767499923706055,52.79375076293951],[-4.736944198608342,52.83097076416009],[-4.726388931274357,52.853195190429744],[-4.674167156219369,52.8756942749024],[-4.650277137756348,52.906250000000114],[-4.576387882232609,52.9393043518067],[-4.530279159545898,52.93736267089855],[-4.473609924316349,52.96625137329113],[-4.4375,52.99930572509771],[-4.407498836517334,52.99930572509771],[-4.356389999389648,53.031806945800724],[-4.340278148651066,53.05236053466808],[-4.336388111114445,53.08402633666992],[-4.348054885864201,53.114582061767635],[-4.311944007873535,53.10486221313482],[-4.310277938842717,53.12958145141601],[-4.272499084472656,53.14597320556646],[-4.25750017166132,53.16208267211919],[-4.212501049041748,53.18264007568371],[-4.209722995758057,53.20208358764648],[-4.121943950653076,53.23764038085937],[-4.083055019378662,53.22958374023449],[-4.033055782318058,53.237083435058594],[-4.000833034515381,53.249027252197266]]]]},"properties":{"ID_0":242,"ISO":"GB-GWN","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":181,"NAME_2":"Gwynedd","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":"Caernarfonshire and Merionethshire"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.301707983016968,51.64862442016607],[-3.378459930419922,51.70220565795904],[-3.438241958618107,51.754737854003956],[-3.412879943847656,51.765609741210994],[-3.43513798713684,51.816669464111385],[-3.404999017715454,51.82777023315441],[-3.385833024978638,51.811660766601676],[-3.35694503784174,51.80554962158214],[-3.333810091018677,51.789947509765625],[-3.296942949295044,51.70944976806635],[-3.275203943252563,51.676841735839844],[-3.277014017105103,51.65872955322265],[-3.301707983016968,51.64862442016607]]]},"properties":{"ID_0":242,"ISO":"GB-MTY","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":182,"NAME_2":"Merthyr Tydfil","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.66444802284235,51.613750457763786],[-2.713054895401001,51.58097076416021],[-2.744165897369328,51.57986068725586],[-2.797791004180908,51.563472747802734],[-2.853115081787053,51.584453582763665],[-2.847681999206429,51.5953254699707],[-2.798768997192382,51.62249755859375],[-2.800580978393555,51.64423370361328],[-2.835000991821289,51.6496696472168],[-2.896591901779118,51.62612152099609],[-2.961265087127629,51.62749099731457],[-2.976300001144352,51.66778564453131],[-2.976300001144352,51.70944976806635],[-2.990792989730835,51.7221298217774],[-3.021589040756226,51.727565765380916],[-3.048760890960637,51.78372192382818],[-3.081367969512825,51.79459381103521],[-3.128468990325871,51.79459381103521],[-3.156816959381046,51.81079864501958],[-3.088610887527409,51.829158782958984],[-3.064445972442627,51.867488861083984],[-3.035001993179264,51.88610839843749],[-3.063889980316162,51.93833160400384],[-3.051388978958016,51.98332977294933],[-2.994446992874088,51.943328857421875],[-2.988888025283757,51.92554855346685],[-2.943888902664185,51.90665817260747],[-2.895555019378662,51.92638015747082],[-2.866389036178532,51.92889022827143],[-2.820832967758179,51.90166091918945],[-2.778609991073608,51.8858299255371],[-2.737222909927368,51.83943939208989],[-2.697777986526489,51.83943939208989],[-2.682285070419198,51.82587814331066],[-2.647500991821289,51.82221984863281],[-2.676778078079167,51.78963088989269],[-2.68388891220087,51.76554870605469],[-2.667778015136719,51.74000167846691],[-2.685276985168457,51.7269401550293],[-2.676944971084537,51.68915939331055],[-2.659168004989567,51.673049926757805],[-2.675554037094059,51.637771606445305],[-2.66444802284235,51.613750457763786]]]},"properties":{"ID_0":242,"ISO":"GB-MON","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":183,"NAME_2":"Monmouthshire","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.889312982559205,51.61791610717779],[-3.82989597320551,51.68771362304687],[-3.933089971542301,51.762283325195256],[-3.896111011505127,51.76361083984369],[-3.878056049346867,51.775279998779354],[-3.867223024368229,51.80028152465832],[-3.819443941116276,51.79999923706054],[-3.800007104873658,51.78530883789074],[-3.763334035873413,51.757770538330185],[-3.733057022094726,51.76082992553722],[-3.648334980010986,51.77944183349604],[-3.59166693687439,51.76250076293951],[-3.583708047866821,51.7513313293457],[-3.571666955947819,51.73221969604503],[-3.569444894790593,51.67248916625987],[-3.549144983291626,51.641819000244254],[-3.588609933853092,51.63444137573242],[-3.653610944747868,51.63999938964855],[-3.667500019073486,51.604999542236435],[-3.682498931884765,51.58749008178711],[-3.651945114135742,51.56999969482433],[-3.640278100967407,51.54249954223633],[-3.691112041473332,51.52582931518565],[-3.7624990940094,51.534671783447266],[-3.805279016494751,51.58458328247082],[-3.839720964431706,51.60541534423834],[-3.844167947769108,51.619304656982536],[-3.889312982559205,51.61791610717779]]]},"properties":{"ID_0":242,"ISO":"GB-NTL","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":184,"NAME_2":"Neath Port Talbot","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":"Neath and Port Talbot"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.797791004180908,51.563472747802734],[-2.843055009841862,51.545696258544865],[-2.908056020736637,51.53263854980463],[-2.954720973968449,51.53513717651373],[-2.989722013473397,51.54430389404297],[-2.998610973358154,51.53319549560558],[-3.07563591003418,51.502361297607536],[-3.067500114440804,51.5261116027832],[-3.10233902931202,51.543170928955185],[-3.083611011505127,51.562770843505916],[-3.109121084213257,51.58730697631836],[-3.031853914260864,51.60578918457037],[-2.961265087127629,51.62749099731457],[-2.896591901779118,51.62612152099609],[-2.835000991821289,51.6496696472168],[-2.800580978393555,51.64423370361328],[-2.798768997192382,51.62249755859375],[-2.847681999206429,51.5953254699707],[-2.853115081787053,51.584453582763665],[-2.797791004180908,51.563472747802734]]]},"properties":{"ID_0":242,"ISO":"GB-NWP","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":185,"NAME_2":"Newport","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.69487810134882,52.10486221313482],[-4.69676685333252,52.06840515136713],[-4.641808032989502,52.0639762878418],[-4.622305870056151,52.050678253173885],[-4.558641910552922,52.03772354125982],[-4.541642189025765,52.02497100830078],[-4.523912906646672,51.99394607543945],[-4.494659900665283,51.96912765502924],[-4.517706871032714,51.94873809814459],[-4.597486019134521,51.91948699951172],[-4.631171226501465,51.91062164306652],[-4.693221092224064,51.908847808838004],[-4.732223987579346,51.88402938842785],[-4.740202903747559,51.86896133422863],[-4.724246978759652,51.84591293334955],[-4.758817195892333,51.83882141113281],[-4.766796112060547,51.82463836669933],[-4.724246978759652,51.820205688476676],[-4.663082122802678,51.8255233764649],[-4.640035152435303,51.80602264404296],[-4.638973236083928,51.73430633544922],[-4.693611145019474,51.716251373291016],[-4.683055877685547,51.69680404663085],[-4.715832233428898,51.65513992309582],[-4.760278224945068,51.65180587768555],[-4.788055896758976,51.63708496093756],[-4.847499847412109,51.645973205566406],[-4.898612022399902,51.62430572509771],[-4.930277824401799,51.59819412231445],[-4.990832805633545,51.610137939453125],[-5.01138782501215,51.60847091674805],[-5.057499885559081,51.619583129882926],[-5.050833225250187,51.64236068725597],[-5.065834045410099,51.66291809082031],[-5.099166870117188,51.6668052673341],[-5.124722957611027,51.68264007568365],[-5.111388206481877,51.692359924316456],[-5.078610897064209,51.689861297607536],[-5.029168128967285,51.69513702392572],[-4.97472095489502,51.68541717529291],[-4.960278987884521,51.69430541992193],[-5.033055782318058,51.71069335937506],[-5.086944103240967,51.706527709961044],[-5.095279216766301,51.7165260314942],[-5.157498836517334,51.71319580078131],[-5.15750122070301,51.68708419799805],[-5.188055038452092,51.689861297607536],[-5.187499046325626,51.70875167846691],[-5.228610038757267,51.72263717651373],[-5.160276889801025,51.77236175537121],[-5.119165897369385,51.768749237060604],[-5.103055000305119,51.783748626708984],[-5.104166984557992,51.812637329101506],[-5.126389026641789,51.85597229003906],[-5.218056201934758,51.87263870239258],[-5.266388893127441,51.871250152588],[-5.304721832275333,51.86375045776373],[-5.315277099609375,51.88124847412121],[-5.295833110809269,51.89402770996105],[-5.307499885559082,51.90791702270507],[-5.255279064178467,51.91680526733404],[-5.212499141693115,51.93264007568359],[-5.194166183471623,51.95041656494146],[-5.157498836517334,51.94847106933594],[-5.14416599273676,51.962638854980526],[-5.108055114746094,51.962360382080135],[-5.084166049957275,51.97041702270519],[-5.074166774749698,52.003749847412166],[-5.091944217681828,52.014862060546875],[-5.070833206176701,52.03041839599621],[-4.986944198608398,52.024028778076286],[-4.979722023010254,52.00152587890624],[-4.885832786560058,52.020973205566406],[-4.835277080535889,52.024307250976676],[-4.847499847412109,52.0404167175294],[-4.820278167724552,52.056251525878906],[-4.789721965789738,52.059307098388786],[-4.762499809265137,52.07791519165039],[-4.730277061462402,52.11819458007807],[-4.69487810134882,52.10486221313482]]]},"properties":{"ID_0":242,"ISO":"GB-PEM","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":186,"NAME_2":"Pembrokeshire","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.43513798713684,51.816669464111385],[-3.471112012863159,51.81637954711914],[-3.478610038757267,51.790279388427734],[-3.546946048736572,51.77360916137707],[-3.583708047866821,51.7513313293457],[-3.59166693687439,51.76250076293951],[-3.648334980010986,51.77944183349604],[-3.733057022094726,51.76082992553722],[-3.763334035873413,51.757770538330185],[-3.800007104873658,51.78530883789074],[-3.76694393157959,51.817768096923885],[-3.752223014831486,51.84722137451172],[-3.72166895866394,51.86582946777355],[-3.711244106292724,51.88187026977544],[-3.716665983200073,51.90333175659174],[-3.709867000579834,51.9323616027832],[-3.686666011810245,51.94832992553722],[-3.695557117462158,51.98888015747076],[-3.673610925674381,52.01277160644531],[-3.643610954284611,52.03139114379888],[-3.667500019073486,52.075271606445256],[-3.71055603027338,52.086658477783196],[-3.706666946411133,52.11471939086914],[-3.741137027740421,52.12170028686535],[-3.752501010894719,52.17860031127929],[-3.743056058883667,52.20277023315441],[-3.734724044799805,52.25804901123047],[-3.701111078262329,52.27389144897472],[-3.731111049652043,52.318889617920036],[-3.703610897064209,52.33472061157238],[-3.662221908569335,52.33943939208978],[-3.670279026031438,52.36333084106456],[-3.694443941116276,52.38249969482433],[-3.720000028610229,52.42026901245117],[-3.760833024978637,52.43748855590826],[-3.757776975631657,52.45861053466808],[-3.736943006515446,52.46722030639654],[-3.724720001220703,52.49888992309576],[-3.745277881622257,52.5011100769043],[-3.766665935516358,52.48666000366211],[-3.813055038452092,52.48138046264654],[-3.833889007568303,52.50416946411133],[-3.829165935516357,52.532779693603516],[-3.839445114135685,52.54861068725586],[-3.867779016494694,52.556110382080135],[-3.927417993545532,52.553249359130916],[-3.911945104598942,52.568050384521484],[-3.875555992126465,52.576110839843864],[-3.837779045104923,52.59915924072271],[-3.827778100967407,52.62665939331055],[-3.83361101150507,52.640830993652344],[-3.796946048736515,52.67472076416027],[-3.763055086135864,52.66944122314453],[-3.726666927337646,52.67776870727539],[-3.69861102104187,52.676109313964844],[-3.667778015136719,52.68888854980469],[-3.601387023925724,52.69554901123041],[-3.571666955947819,52.73054885864252],[-3.580277919769287,52.76361083984386],[-3.597223043441772,52.784439086914055],[-3.577500104904118,52.81916046142578],[-3.527224063873234,52.83332824707037],[-3.490833044052124,52.834720611572266],[-3.469971895217895,52.86201095581055],[-3.43611097335804,52.85667037963867],[-3.390722036361581,52.86741638183594],[-3.371943950653076,52.84999847412121],[-3.299722909927311,52.82693862915045],[-3.242223024368172,52.779159545898494],[-3.190834999084416,52.793331146240234],[-3.140832901000977,52.796390533447266],[-3.11388897895813,52.784439086914055],[-3.075521945953369,52.781478881835994],[-3.058888912200928,52.7658309936524],[-3.001111030578613,52.75777053833019],[-2.992222070693912,52.74528121948242],[-2.957221031188908,52.73276901245123],[-2.968888044357186,52.7161102294923],[-3.011111974716073,52.711658477783146],[-3.032778978347778,52.682220458984375],[-3.02916693687439,52.6533317565918],[-3.063889980316162,52.63832855224604],[-3.080554962158146,52.60110092163086],[-3.124166011810303,52.582218170166016],[-3.125,52.56610870361334],[-3.086389064788818,52.52888107299816],[-3.068056106567383,52.54610061645502],[-3.01083397865284,52.569721221923935],[-2.974445104598999,52.54193878173834],[-2.991389989852905,52.51916885375988],[-3.019721984863224,52.51361083984375],[-3.029444932937622,52.496940612793075],[-3.108613014221191,52.494438171386776],[-3.149446010589542,52.478328704834034],[-3.196110963821411,52.46722030639654],[-3.214167118072396,52.4511108398438],[-3.214167118072396,52.43138885498047],[-3.196110963821411,52.41027069091797],[-3.166388988494816,52.403610229492244],[-3.140279054641724,52.38388824462885],[-3.103888034820499,52.368610382080135],[-3.067778110504037,52.34498977661138],[-3.021944046020508,52.34027099609375],[-2.97555494308466,52.34637832641613],[-2.957314968109017,52.34125900268549],[-2.956943035125732,52.32471084594726],[-2.992222070693912,52.310268402099666],[-3.001111030578613,52.28722000122082],[-2.953888893127441,52.26137924194336],[-3.013056039810124,52.25555038452154],[-3.055001020431404,52.23110961914057],[-3.061666965484562,52.21500015258789],[-3.113610982894897,52.166110992431754],[-3.075556039810181,52.14804840087896],[-3.129722118377686,52.12694168090826],[-3.099999904632568,52.1124992370606],[-3.115890026092529,52.098251342773494],[-3.112498998641968,52.069438934326286],[-3.082221031188965,52.04666137695307],[-3.08666706085205,52.022220611572266],[-3.051388978958016,51.98332977294933],[-3.063889980316162,51.93833160400384],[-3.035001993179264,51.88610839843749],[-3.064445972442627,51.867488861083984],[-3.088610887527409,51.829158782958984],[-3.156816959381046,51.81079864501958],[-3.20666599273676,51.808609008789176],[-3.274167060852051,51.81472015380871],[-3.288985967636052,51.793331146240234],[-3.333810091018677,51.789947509765625],[-3.35694503784174,51.80554962158214],[-3.385833024978638,51.811660766601676],[-3.404999017715454,51.82777023315441],[-3.43513798713684,51.816669464111385]]]},"properties":{"ID_0":242,"ISO":"GB-POW","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":187,"NAME_2":"Powys","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.549144983291626,51.641819000244254],[-3.569444894790593,51.67248916625987],[-3.571666955947819,51.73221969604503],[-3.583708047866821,51.7513313293457],[-3.546946048736572,51.77360916137707],[-3.478610038757267,51.790279388427734],[-3.471112012863159,51.81637954711914],[-3.43513798713684,51.816669464111385],[-3.412879943847656,51.765609741210994],[-3.438241958618107,51.754737854003956],[-3.378459930419922,51.70220565795904],[-3.301707983016968,51.64862442016607],[-3.257086992263794,51.579021453857536],[-3.227468013763371,51.545169830322266],[-3.276110887527409,51.51639175415039],[-3.291353940963688,51.50046157836925],[-3.372221946716308,51.506938934326286],[-3.392221927642822,51.49610900878912],[-3.442500114440918,51.51583099365246],[-3.475198030471745,51.510440826416016],[-3.4617919921875,51.58988952636719],[-3.490776062011718,51.61706161499023],[-3.549144983291626,51.641819000244254]]]},"properties":{"ID_0":242,"ISO":"GB-RCT","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":188,"NAME_2":"Rhondda, Cynon, Taff","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.889312982559205,51.61791610717779],[-3.923054933547974,51.60902786254877],[-3.965831995010319,51.61180496215826],[-3.998054981231689,51.592361450195305],[-3.990278005599918,51.56319427490234],[-4.036943912506103,51.56791687011713],[-4.074166774749641,51.56180572509776],[-4.114721775054818,51.57125091552739],[-4.13972091674799,51.56930541992187],[-4.160276889800969,51.554862976074276],[-4.234723091125431,51.54097366333008],[-4.280834197998047,51.560695648193416],[-4.306387901306096,51.60902786254877],[-4.283055782318115,51.613471984863395],[-4.253056049346924,51.63152694702143],[-4.248611927032471,51.64402770996088],[-4.200833797454834,51.62625122070324],[-4.118611812591553,51.64402770996088],[-4.080276966094971,51.65902709960943],[-4.070831775665283,51.673873901367244],[-4.041944026947021,51.702220916748104],[-4.023056983947754,51.744159698486385],[-3.978055000305175,51.76665878295904],[-3.933089971542301,51.762283325195256],[-3.82989597320551,51.68771362304687],[-3.889312982559205,51.61791610717779]]]},"properties":{"ID_0":242,"ISO":"GB-SWA","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":189,"NAME_2":"Swansea","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.031853914260864,51.60578918457037],[-3.075934886932373,51.62974166870123],[-3.070498943328857,51.68046569824219],[-3.114710092544499,51.70082473754883],[-3.106729984283447,51.70401763916021],[-3.110353946685791,51.765609741210994],[-3.128468990325871,51.79459381103521],[-3.081367969512825,51.79459381103521],[-3.048760890960637,51.78372192382818],[-3.021589040756226,51.727565765380916],[-2.990792989730835,51.7221298217774],[-2.976300001144352,51.70944976806635],[-2.976300001144352,51.66778564453131],[-2.961265087127629,51.62749099731457],[-3.031853914260864,51.60578918457037]]]},"properties":{"ID_0":242,"ISO":"GB-TOF","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":190,"NAME_2":"Torfaen","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.179722070693913,51.458801269531364],[-3.164166927337532,51.440139770507805],[-3.169167041778508,51.405693054199276],[-3.189723014831543,51.399307250976506],[-3.22749996185297,51.402362823486385],[-3.290832042694035,51.38569259643555],[-3.310277938842717,51.39236068725585],[-3.340277910232487,51.38069534301769],[-3.40416693687439,51.38069534301769],[-3.520833015441781,51.399581909179744],[-3.560277938842773,51.40124893188482],[-3.578056097030583,51.41977310180675],[-3.525556087493896,51.43582916259771],[-3.517220973968392,51.45000076293945],[-3.523056030273438,51.49361038208019],[-3.475198030471745,51.510440826416016],[-3.442500114440918,51.51583099365246],[-3.392221927642822,51.49610900878912],[-3.372221946716308,51.506938934326286],[-3.291353940963688,51.50046157836925],[-3.260731935501099,51.46937179565441],[-3.200683116912841,51.46776962280279],[-3.179722070693913,51.458801269531364]]]},"properties":{"ID_0":242,"ISO":"GB-VGL","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":191,"NAME_2":"Vale of Glamorgan","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.140832901000977,52.796390533447266],[-3.190834999084416,52.793331146240234],[-3.242223024368172,52.779159545898494],[-3.299722909927311,52.82693862915045],[-3.371943950653076,52.84999847412121],[-3.390722036361581,52.86741638183594],[-3.373075008392334,52.88907241821289],[-3.311233043670654,52.93287658691406],[-3.200437068939209,52.938030242920036],[-3.094794988632202,52.96379470825207],[-3.141175031661987,52.99729156494135],[-3.132157087325936,53.05913162231457],[-3.122706890106144,53.0664329528808],[-3.10381293296814,53.08103561401373],[-2.991724967956543,53.1390113830567],[-2.956809043884277,53.14467239379883],[-2.93833398818964,53.124721527099666],[-2.895487070083504,53.100749969482536],[-2.864376068115177,53.05360031127941],[-2.860470056533813,53.021930694580185],[-2.827500104904174,53.00222015380871],[-2.812777042388916,52.984161376953125],[-2.7744460105896,52.9849891662597],[-2.727740049362126,52.96660995483404],[-2.716943979263249,52.946109771728516],[-2.71972203254694,52.91722106933593],[-2.75,52.91471862792969],[-2.783334970474129,52.898609161376946],[-2.853610038757324,52.939720153808594],[-2.879168033599854,52.9419403076173],[-2.92833304405201,52.93278121948242],[-2.962729930877686,52.95272827148443],[-2.993890047073364,52.95360946655279],[-3.089446067810059,52.913059234619254],[-3.096668004989624,52.89416885375988],[-3.131666898727417,52.883331298828175],[-3.11916804313654,52.85610961914074],[-3.155833959579468,52.82194137573242],[-3.140832901000977,52.796390533447266]]]},"properties":{"ID_0":242,"ISO":"GB-WRX","NAME_0":"United Kingdom","ID_1":4,"NAME_1":"Wales","ID_2":192,"NAME_2":"Wrexham","TYPE_2":"Unitary Authority (wales)","ENGTYPE_2":"Unitary Authority (wales","NL_NAME_2":null,"VARNAME_2":null}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-NET","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":205,"NAME_2":"Newcastle upon Tyne","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.637893605385297,55.064768597812005],[-1.6385078008313936,55.041551349041356],[-1.5926377415084274,55.038940380402764],[-1.5873825018672498,55.025777798790564],[-1.6002664388791212,55.00983844727313],[-1.5585039788567177,55.00554365830061],[-1.562981060121042,54.992317493771715],[-1.5292129836146306,54.98334130741928],[-1.5355253430199736,54.96523484767873],[-1.5538817384420445,54.95908490640094],[-1.5943326191343197,54.97060544223477],[-1.640073958064805,54.95926565999575],[-1.7003925142994276,54.97078331957437],[-1.719662014574189,54.96748374975912],[-1.747127463447843,54.981765602633345],[-1.766667008399963,54.98443984985363],[-1.728332042694035,55.02804946899419],[-1.697221994400024,55.033050537109375],[-1.688889026641789,55.07221984863287],[-1.637893605385297,55.064768597812005]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-NTY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":204,"NAME_2":"North Tyneside","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.562981060121042,54.992317493771715],[-1.5585039788567177,55.00554365830061],[-1.6002664388791212,55.00983844727313],[-1.5873825018672498,55.025777798790564],[-1.5926377415084274,55.038940380402764],[-1.6385078008313936,55.041551349041356],[-1.637893605385297,55.064768597812005],[-1.586109042167664,55.06055068969721],[-1.559999942779484,55.05110931396479],[-1.493610978126469,55.04916000366211],[-1.454121947288513,55.07013702392589],[-1.428056001663208,55.03819274902344],[-1.42972195148468,55.007362365722706],[-1.4533035788215456,54.98981534304894],[-1.5308458423819309,54.98401528309465],[-1.5292129836146306,54.98334130741928],[-1.562981060121042,54.992317493771715]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-STY","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":203,"NAME_2":"South Tyneside","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.42972195148468,55.007362365722706],[-1.379166007041931,54.98597335815424],[-1.353055953979379,54.95652770996093],[-1.367498993873483,54.93847274780285],[-1.3696831726000283,54.9424293829535],[-1.4193708269241863,54.92992401027664],[-1.5112175753936958,54.93166591553027],[-1.5153298812543685,54.957349818849906],[-1.5355253430199736,54.96523484767873],[-1.5292129836146306,54.98334130741928],[-1.5308458423819309,54.98401528309465],[-1.4495276527721541,54.9843355871573],[-1.42972195148468,55.007362365722706]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-SND","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":202,"NAME_2":"Sunderland","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.351943969726506,54.86963653564459],[-1.389835000038033,54.860801696777344],[-1.411224007606506,54.80133056640631],[-1.440425038337708,54.79700088500976],[-1.506346940994263,54.7999000549317],[-1.523211956024113,54.831798553466854],[-1.552342057228032,54.85789871215826],[-1.5594108423845006,54.88203709563008],[-1.5570802954893481,54.90921128231478],[-1.5688913696667814,54.92462482411063],[-1.5112175753936958,54.93166591553027],[-1.4193708269241863,54.92992401027664],[-1.3696831726000283,54.9424293829535],[-1.3696850794979791,54.94242762876271],[-1.3756848680534932,54.93690908273037],[-1.367498993873483,54.93847274780285],[-1.350834012031498,54.905418395996094],[-1.360277056693917,54.89014053344732],[-1.351943969726506,54.86963653564459]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-GAT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":201,"NAME_2":"Gateshead","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.766667008399963,54.98443984985363],[-1.747127463447843,54.981765602633345],[-1.719662014574189,54.96748374975912],[-1.7003925142994276,54.97078331957437],[-1.640073958064805,54.95926565999575],[-1.5943326191343197,54.97060544223477],[-1.5538817384420445,54.95908490640094],[-1.5355253430199736,54.96523484767873],[-1.5153298812543685,54.957349818849906],[-1.5112175753936958,54.93166591553027],[-1.5688913696667814,54.92462482411063],[-1.5570802954893481,54.90921128231478],[-1.5594108423845006,54.88203709563008],[-1.560006022453308,54.879650115966854],[-1.595293998718205,54.89270019531256],[-1.70114004611969,54.894161224365284],[-1.820001006126347,54.90472030639643],[-1.850558042526132,54.91971969604498],[-1.821666955947819,54.92943954467779],[-1.799998998641968,54.97222137451172],[-1.766667008399963,54.98443984985363]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-BRD","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":206,"NAME_2":"Bradford","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.728610038757267,53.90277099609374],[-1.73204879266721,53.89594325075279],[-1.717057547419288,53.89226166106078],[-1.7254307560718554,53.88568922907194],[-1.7563547985969659,53.884706129499996],[-1.7874648701095268,53.896900483232514],[-1.800424229633669,53.88596457577919],[-1.7605110704384566,53.863609042741246],[-1.7152860252485,53.86624455080066],[-1.6950919029119742,53.857537979195925],[-1.7119957303650024,53.78306976757263],[-1.6822705352699179,53.786414904743225],[-1.6742333842008723,53.7800047384966],[-1.640405933268333,53.77968368790602],[-1.6495638555890175,53.76819793719327],[-1.6816208329636275,53.75646888034447],[-1.7144316115903575,53.76245816984497],[-1.7337654265688964,53.74691831169833],[-1.7472250975667662,53.7468142321564],[-1.7459009737585947,53.73448984312321],[-1.760908957841842,53.73464545418409],[-1.7700862781627797,53.72625231008317],[-1.8093678285622556,53.7643806918915],[-1.827836366896612,53.76373265358225],[-1.8554563588416322,53.748307995249604],[-1.8726533729287733,53.75494083924053],[-1.8734027438503054,53.77869041991246],[-1.9281716252138732,53.787577043719274],[-1.9808488762530807,53.786353020276685],[-1.9867652441712251,53.796150574521526],[-2.047224044799748,53.82444000244146],[-2.032510042190552,53.84766006469738],[-2.002779006957951,53.86999893188471],[-1.966109991073608,53.87638854980463],[-1.973610043525696,53.91722106933594],[-1.950834989547729,53.93193817138672],[-1.943611979484501,53.957771301269645],[-1.901944994926396,53.95499038696294],[-1.871762990951538,53.9404411315918],[-1.79778003692627,53.94305038452142],[-1.728610038757267,53.90277099609374]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-CLD","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":207,"NAME_2":"Calderdale","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.7700862781627797,53.72625231008317],[-1.7536367530860233,53.7258603031649],[-1.7358710915125493,53.71324284745348],[-1.7312828421501738,53.680371982778546],[-1.7473017947117206,53.69459457269439],[-1.8257242848934756,53.67025621583839],[-1.8536828281573843,53.672537894106384],[-1.8435663241589404,53.66612189117391],[-1.8945985643971932,53.64542178165289],[-1.9341522381980882,53.648339600553584],[-1.9727437163101147,53.62577347065747],[-2.009470755392109,53.61677953810537],[-1.988055944442749,53.6147193908692],[-2.01694393157959,53.61861038208002],[-2.035001039505005,53.646938323974666],[-2.031388998031616,53.663330078124936],[-2.046390056610051,53.68416976928722],[-2.098612070083618,53.67193984985357],[-2.15134596824646,53.69654846191406],[-2.159722089767456,53.725559234619254],[-2.121388912200871,53.755268096923885],[-2.120558023452759,53.7913818359375],[-2.095555067062378,53.810550689697266],[-2.047224044799748,53.82444000244146],[-2.047224044799748,53.82444000244146],[-1.9867652441712251,53.796150574521526],[-1.9808488762530807,53.786353020276685],[-1.9281716252138732,53.787577043719274],[-1.8734027438503054,53.77869041991246],[-1.8726533729287733,53.75494083924053],[-1.8554563588416322,53.748307995249604],[-1.827836366896612,53.76373265358225],[-1.8093678285622556,53.7643806918915],[-1.7700862781627797,53.72625231008317]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-KIR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":208,"NAME_2":"Kirklees","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.6816208329636275,53.75646888034447],[-1.6584439961554542,53.74545777049434],[-1.6378819490635026,53.747728913926046],[-1.6233716039931367,53.71854696150013],[-1.5922042738516327,53.71853616246708],[-1.5711222061724999,53.7064046197108],[-1.5983760291819142,53.699780759264726],[-1.6024994122575773,53.692171616634305],[-1.591920090885816,53.689334699229015],[-1.615216853840093,53.67758113210644],[-1.590626057095915,53.66066361221685],[-1.6249014560431192,53.653642139813186],[-1.6136755976408235,53.62457316512705],[-1.5864532989071738,53.60717405390706],[-1.584167957305851,53.59777069091797],[-1.615278005599975,53.56333160400402],[-1.674445986747685,53.54999923706055],[-1.714722990989628,53.55472183227539],[-1.771667957305851,53.53527069091802],[-1.80666601657856,53.531940460205135],[-1.816110968589726,53.51610946655279],[-1.870833039283696,53.532218933105526],[-1.897222995758,53.53305053710949],[-1.937777996063176,53.5680503845216],[-1.97694194316864,53.593891143798885],[-1.988055944442749,53.6147193908692],[-2.01694393157959,53.61861038208002],[-2.009470755392109,53.61677953810537],[-1.9727437163101147,53.62577347065747],[-1.9341522381980882,53.648339600553584],[-1.8945985643971932,53.64542178165289],[-1.8435663241589404,53.66612189117391],[-1.8536828281573843,53.672537894106384],[-1.8257242848934756,53.67025621583839],[-1.7473017947117206,53.69459457269439],[-1.7312828421501738,53.680371982778546],[-1.7358710915125493,53.71324284745348],[-1.7536367530860233,53.7258603031649],[-1.7700862781627797,53.72625231008317],[-1.760908957841842,53.73464545418409],[-1.7459009737585947,53.73448984312321],[-1.7472250975667662,53.7468142321564],[-1.7337654265688964,53.74691831169833],[-1.7144316115903575,53.76245816984497],[-1.6816208329636275,53.75646888034447]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-LDS","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":209,"NAME_2":"Leeds","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.304167032241764,53.749721527099666],[-1.3997217052678315,53.71930941607449],[-1.4431494342181035,53.72822662954728],[-1.4882982958378521,53.72775701029367],[-1.4957279953127665,53.722308403027206],[-1.5103956816858568,53.72969011580311],[-1.5593228953993103,53.69898368127084],[-1.5711222061724999,53.7064046197108],[-1.5922042738516327,53.71853616246708],[-1.6233716039931367,53.71854696150013],[-1.6378819490635026,53.747728913926046],[-1.6584439961554542,53.74545777049434],[-1.6816208329636275,53.75646888034447],[-1.6495638555890175,53.76819793719327],[-1.640405933268333,53.77968368790602],[-1.6742333842008723,53.7800047384966],[-1.6822705352699179,53.786414904743225],[-1.7119957303650024,53.78306976757263],[-1.6950919029119742,53.857537979195925],[-1.7152860252485,53.86624455080066],[-1.7605110704384566,53.863609042741246],[-1.800424229633669,53.88596457577919],[-1.7874648701095268,53.896900483232514],[-1.7563547985969659,53.884706129499996],[-1.7254307560718554,53.88568922907194],[-1.717057547419288,53.89226166106078],[-1.73204879266721,53.89594325075279],[-1.728610038757267,53.90277099609374],[-1.641389966011047,53.907218933105526],[-1.583333015441838,53.900829315185604],[-1.549167037010193,53.90861129760747],[-1.534446001052856,53.93526840209961],[-1.507187962532043,53.91077041625988],[-1.454722046852055,53.90610885620117],[-1.386667013168221,53.9394416809082],[-1.333611011505127,53.94499969482433],[-1.294167995452824,53.9255485534668],[-1.307777047157288,53.89471817016607],[-1.305557012557869,53.860828399658146],[-1.326110005378666,53.846378326416016],[-1.305276989936772,53.819721221923885],[-1.307500958442574,53.79027938842773],[-1.288612008094788,53.77027130126959],[-1.304167032241764,53.749721527099666]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-WKF","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":210,"NAME_2":"Wakefield","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.584167957305851,53.59777069091797],[-1.5864532989071738,53.60717405390706],[-1.6136755976408235,53.62457316512705],[-1.6249014560431192,53.653642139813186],[-1.590626057095915,53.66066361221685],[-1.615216853840093,53.67758113210644],[-1.591920090885816,53.689334699229015],[-1.6024994122575773,53.692171616634305],[-1.5983760291819142,53.699780759264726],[-1.5711222061724999,53.7064046197108],[-1.5593228953993103,53.69898368127084],[-1.5103956816858568,53.72969011580311],[-1.4957279953127665,53.722308403027206],[-1.4882982958378521,53.72775701029367],[-1.4431494342181035,53.72822662954728],[-1.3997217052678315,53.71930941607449],[-1.304167032241764,53.749721527099666],[-1.259443044662419,53.71776962280285],[-1.219980001449585,53.714698791503906],[-1.245278000831547,53.67193984985357],[-1.246947050094548,53.63555145263671],[-1.229943990707341,53.620719909668026],[-1.24333202838892,53.59693908691417],[-1.305276989936772,53.57611083984386],[-1.344444036483708,53.58082962036144],[-1.367776989936829,53.59888076782232],[-1.423889994621277,53.59498977661133],[-1.448055028915405,53.600830078125],[-1.485000014305115,53.59222030639654],[-1.535277962684631,53.593608856201286],[-1.560556054115239,53.60667037963873],[-1.584167957305851,53.59777069091797]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"IM","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"Isle of Man","ID_2":2,"NAME_2":"Isle of Man","TYPE_2":"Crown Dependency","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-4.383544921875,54.34134830540375],[-4.37530517578125,54.36375806691923],[-4.362945556640625,54.39175308509071],[-4.365692138671874,54.41733182694633],[-4.482421875,54.38855462060335],[-4.53460693359375,54.37255855831926],[-4.54833984375,54.35815677227375],[-4.5600128173828125,54.334943271492],[-4.603958129882812,54.279257540609336],[-4.6451568603515625,54.250784674876684],[-4.6904754638671875,54.22470072101279],[-4.7021484375,54.225503550071174],[-4.720001220703125,54.20984556727275],[-4.7234344482421875,54.18373573436089],[-4.7412872314453125,54.17489482345622],[-4.7454071044921875,54.16444403731646],[-4.733734130859375,54.15559900222241],[-4.7385406494140625,54.131868892085414],[-4.750213623046875,54.1069175102521],[-4.7646331787109375,54.11174798232063],[-4.7824859619140625,54.090811871873825],[-4.7632598876953125,54.0900064257852],[-4.7975921630859375,54.063820915086225],[-4.8332977294921875,54.05495438499805],[-4.82025146484375,54.043666972870625],[-4.780426025390625,54.055357450153174],[-4.757080078125,54.0609999517185],[-4.7296142578125,54.08356229415844],[-4.692535400390625,54.081951104880396],[-4.6856689453125,54.067044638606795],[-4.6630096435546875,54.062611954247565],[-4.658203125,54.07187975467914],[-4.648590087890625,54.07590858798479],[-4.6307373046875,54.07631144981169],[-4.622497558593749,54.067044638606795],[-4.6300506591796875,54.05817879674286],[-4.623870849609375,54.05374516606874],[-4.603271484375,54.07550572224815],[-4.6149444580078125,54.07067102844564],[-4.618377685546875,54.0787285386706],[-4.5764923095703125,54.10047600536083],[-4.54833984375,54.10168386374337],[-4.5298004150390625,54.12382170046237],[-4.50439453125,54.12502887884479],[-4.4659423828125,54.142730121693035],[-4.4707489013671875,54.14514334149681],[-4.478302001953125,54.15077364078996],[-4.4769287109375,54.159217654166895],[-4.464569091796875,54.165650031996904],[-4.43572998046875,54.16725797022493],[-4.387664794921875,54.19538677476911],[-4.401397705078125,54.20342006190774],[-4.404144287109375,54.213861000644926],[-4.382171630859375,54.22751055441583],[-4.35333251953125,54.26361995010228],[-4.30389404296875,54.299697745943455],[-4.340972900390625,54.30690951430536],[-4.379425048828125,54.3197273165176],[-4.383544921875,54.34134830540375]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-CHE","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":211,"NAME_2":"Cheshire East","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-2.503124,53.332322],[-2.447022914886475,53.355045318603516],[-2.42877006530756,53.38039016723633],[-2.364721059799137,53.36249923706055],[-2.316668033599854,53.359989166259766],[-2.28333306312561,53.34222030639659],[-2.238333940505868,53.35499954223644],[-2.176111936569157,53.34555053710949],[-2.159446954727173,53.321388244628906],[-2.140279054641724,53.3277702331543],[-2.119998931884766,53.359439849853516],[-2.080832004547119,53.3611106872558],[-2.049443960189762,53.3522186279298],[-2.016736030578613,53.370479583740234],[-1.998056054115296,53.33583068847667],[-1.995555996894836,53.26416015624999],[-1.990556001663208,53.241661071777344],[-1.970834016799927,53.23027038574224],[-1.976848959922791,53.207370758056754],[-2.005557060241642,53.18610000610357],[-2.030555009841919,53.18471908569335],[-2.06833291053772,53.165828704833984],[-2.140001058578491,53.16999816894537],[-2.134721994399968,53.15027999877935],[-2.157778024673462,53.14749908447271],[-2.20491099357605,53.113666534423885],[-2.243597030639535,53.08589172363286],[-2.272222995757943,53.07749938964849],[-2.305557012557927,53.0791587829591],[-2.33555793762207,53.056110382080185],[-2.36583399772644,53.0522193908692],[-2.37388801574707,53.03722000122081],[-2.366389989852848,53.00027084350586],[-2.378781080245972,52.98960876464855],[-2.423609972000065,52.9786109924317],[-2.430835008621216,52.96500015258788],[-2.478888034820557,52.95415878295904],[-2.512778997421208,52.96165847778332],[-2.527224063873234,52.94721984863287],[-2.57778000831604,52.95360946655279],[-2.589446067810059,52.9769401550294],[-2.622776985168457,52.98582839965826],[-2.727740049362126,52.96660995483404],[-2.69929242541042,52.99543881492112],[-2.668817362661816,53.03865395690339],[-2.7024105948798103,53.0543212271167],[-2.718262793890581,53.04421408238489],[-2.7529286697448767,53.069226255530296],[-2.7317386071692047,53.091808954566744],[-2.71136363193619,53.09364241328605],[-2.706054071937529,53.118509149806194],[-2.671145068527531,53.11587002635502],[-2.6597303498762486,53.130716437310326],[-2.6412634457727053,53.12842106828762],[-2.6252837142956897,53.1508474454638],[-2.5920897823706253,53.14450477640153],[-2.5965047449945127,53.1588720534501],[-2.583580955796339,53.155497891245666],[-2.572402573358417,53.16347223219018],[-2.54292438715405,53.14977217705609],[-2.4997406601267818,53.164151979736],[-2.4688673347879777,53.152736732701385],[-2.443759598733158,53.15988323300474],[-2.4434774505382038,53.1708381853081],[-2.4573741833378864,53.176693897687585],[-2.4565568822113124,53.20261297077961],[-2.4306634912809755,53.197965287645374],[-2.4063665724789765,53.174087431160686],[-2.392109733478435,53.17991522992649],[-2.378319611154369,53.172012897685356],[-2.3687309526100115,53.18293310732565],[-2.372554311462734,53.19558288298865],[-2.4101609019432515,53.205696397148344],[-2.414181807392303,53.21929974563053],[-2.4011722965015694,53.22175880134511],[-2.3962893093078983,53.23436231637357],[-2.363799855536885,53.22357083157431],[-2.3490260583775426,53.249012074682156],[-2.3641523737211614,53.24850109129004],[-2.394115190421391,53.266754280242004],[-2.4144548386760607,53.268319390382516],[-2.4274608589892663,53.2611695571301],[-2.453170662658378,53.28455076075722],[-2.498006104194348,53.289908925446895],[-2.512281155915481,53.32134620700367],[-2.503124,53.332322]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-CHW","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":212,"NAME_2":"Cheshire West and Chester","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-2.69929242541042,52.99543881492112],[-2.727740049362126,52.96660995483404],[-2.7744460105896,52.9849891662597],[-2.812777042388916,52.984161376953125],[-2.827500104904174,53.00222015380871],[-2.860470056533813,53.021930694580185],[-2.864376068115177,53.05360031127941],[-2.895487070083504,53.100749969482536],[-2.93833398818964,53.124721527099666],[-2.956809043884277,53.14467239379883],[-2.909168004989624,53.171390533447266],[-2.912499904632568,53.18638992309582],[-2.955276966094914,53.215549468994254],[-3.001389026641846,53.23944091796881],[-3.037220954894906,53.25111007690429],[-3.092499971389771,53.25672149658203],[-3.099165916442757,53.285758972168026],[-3.104025388762669,53.28805576260414],[-3.103733121138837,53.29999435427673],[-3.0741654904919797,53.316380908019056],[-3.026139522596778,53.29774869209405],[-2.992737815610769,53.30710878331546],[-2.968033296688178,53.3012551093274],[-2.939551319692313,53.31041563488773],[-2.931602543078512,53.306068832815846],[-2.9287564668151167,53.30841299304941],[-2.9285733193370813,53.30824801712984],[-2.901730978034698,53.29923482940577],[-2.8761936549383713,53.29065064886871],[-2.84558026284004,53.29113403786215],[-2.8126861614917296,53.30481522264111],[-2.7894899824606516,53.296849726505705],[-2.752827376996626,53.31456936820613],[-2.7524892430550585,53.31473267321978],[-2.739292174240041,53.30687033883386],[-2.738836637359983,53.30705152380454],[-2.7382055794543425,53.30669637740584],[-2.7386470041916118,53.307126947182],[-2.7235253728668827,53.31313964458688],[-2.700801145463609,53.30580718868542],[-2.685151721447282,53.31545145878494],[-2.6415569202347107,53.30503479895434],[-2.6450614629819666,53.31013510072038],[-2.624122729072159,53.30939815904222],[-2.619934770655549,53.32032094142578],[-2.609086573898332,53.312071202293055],[-2.595223105393976,53.32245434572998],[-2.580697059631234,53.31558609008789],[-2.55492901802063,53.31236648559575],[-2.447022914886475,53.355045318603516],[-2.503124,53.332322],[-2.512281155915481,53.32134620700367],[-2.498006104194348,53.289908925446895],[-2.453170662658378,53.28455076075722],[-2.4274608589892663,53.2611695571301],[-2.4144548386760607,53.268319390382516],[-2.394115190421391,53.266754280242004],[-2.3641523737211614,53.24850109129004],[-2.3490260583775426,53.249012074682156],[-2.363799855536885,53.22357083157431],[-2.3962893093078983,53.23436231637357],[-2.4011722965015694,53.22175880134511],[-2.414181807392303,53.21929974563053],[-2.4101609019432515,53.205696397148344],[-2.372554311462734,53.19558288298865],[-2.3687309526100115,53.18293310732565],[-2.378319611154369,53.172012897685356],[-2.392109733478435,53.17991522992649],[-2.4063665724789765,53.174087431160686],[-2.4306634912809755,53.197965287645374],[-2.4565568822113124,53.20261297077961],[-2.4573741833378864,53.176693897687585],[-2.4434774505382038,53.1708381853081],[-2.443759598733158,53.15988323300474],[-2.4688673347879777,53.152736732701385],[-2.4997406601267818,53.164151979736],[-2.54292438715405,53.14977217705609],[-2.572402573358417,53.16347223219018],[-2.583580955796339,53.155497891245666],[-2.5965047449945127,53.1588720534501],[-2.5920897823706253,53.14450477640153],[-2.6252837142956897,53.1508474454638],[-2.6412634457727053,53.12842106828762],[-2.6597303498762486,53.130716437310326],[-2.671145068527531,53.11587002635502],[-2.706054071937529,53.118509149806194],[-2.71136363193619,53.09364241328605],[-2.7317386071692047,53.091808954566744],[-2.7529286697448767,53.069226255530296],[-2.718262793890581,53.04421408238489],[-2.7024105948798103,53.0543212271167],[-2.668817362661816,53.03865395690339],[-2.69929242541042,52.99543881492112]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-HAL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":213,"NAME_2":"Halton","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[-2.6906328033643474,53.38538819887531],[-2.680557012557927,53.37887954711914],[-2.662832021713257,53.357460021972656],[-2.605659961700383,53.338134765624936],[-2.580697059631234,53.31558609008789],[-2.595223105393976,53.32245434572998],[-2.609086573898332,53.312071202293055],[-2.619934770655549,53.32032094142578],[-2.624122729072159,53.30939815904222],[-2.6450614629819666,53.31013510072038],[-2.6415569202347107,53.30503479895434],[-2.685151721447282,53.31545145878494],[-2.700801145463609,53.30580718868542],[-2.7235253728668827,53.31313964458688],[-2.7386470041916118,53.307126947182],[-2.7463205093272602,53.31461009870791],[-2.7630580540853917,53.33092174120937],[-2.753249998793975,53.34359955705048],[-2.740202777458212,53.34506489881115],[-2.7381914457377103,53.34793646284791],[-2.7591335731230733,53.34960649072296],[-2.7755257843675882,53.33895375514488],[-2.785584172527674,53.32345942791167],[-2.8221495120534503,53.3334093671374],[-2.8275834556324004,53.33098145503876],[-2.832457303217845,53.33728947774635],[-2.8187798745443087,53.33977154129373],[-2.818806904374221,53.34800073421497],[-2.7873017229574066,53.35629039621995],[-2.7766710534347734,53.38105868293533],[-2.7576540799353046,53.38073789254475],[-2.745174605499206,53.402095648481286],[-2.715226797703995,53.399034871811146],[-2.712803447263301,53.39062599574497],[-2.6906328033643474,53.38538819887531]]],[[[-2.738836637359983,53.30705152380454],[-2.739292174240041,53.30687033883386],[-2.7524892430550585,53.31473267321978],[-2.752205913970762,53.314573312537085],[-2.738836637359983,53.30705152380454]]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-KWL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":215,"NAME_2":"Knowsley","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-2.8249644186438823,53.48520925194317],[-2.818711728158975,53.46689107502111],[-2.804407775672048,53.467236409853285],[-2.7950694680621293,53.44323009479305],[-2.8050295780688237,53.43865997711093],[-2.776201389989665,53.42668703835805],[-2.7867759144555664,53.40118756707545],[-2.745174605499206,53.402095648481286],[-2.7576540799353046,53.38073789254475],[-2.7766710534347734,53.38105868293533],[-2.7873017229574066,53.35629039621995],[-2.818806904374221,53.34800073421497],[-2.8404055929822314,53.347331071139905],[-2.853495811111275,53.363514490179924],[-2.8561650149124373,53.378815010693316],[-2.821954837185798,53.38066707898254],[-2.8371937067863002,53.399741433945394],[-2.856219824988291,53.39496011378423],[-2.892411156705693,53.4107621106839],[-2.865927223044769,53.41830162941371],[-2.867855282181373,53.4492945946253],[-2.900315030312638,53.4691586759534],[-2.914377598458968,53.46500517358472],[-2.922615127321468,53.474983221867795],[-2.8879942087273798,53.5038287512821],[-2.863610982894841,53.51805114746094],[-2.805000066757145,53.493610382080135],[-2.8249644186438823,53.48520925194317]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-LIV","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":216,"NAME_2":"Liverpool","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-2.818806904374221,53.34800073421497],[-2.8187798745443087,53.33977154129373],[-2.832457303217845,53.33728947774635],[-2.8275834556324004,53.33098145503876],[-2.836474654189664,53.3270076975817],[-2.878158399223132,53.334198839003406],[-2.9027093942427484,53.345606530987155],[-2.9817232994180594,53.3822445228796],[-3.0033556769120726,53.41410662121449],[-3.00864346820523,53.43787912516354],[-2.974914555250172,53.443323961595766],[-2.9738232140443714,53.462756641485505],[-2.9563065635473573,53.472993440769805],[-2.922615127321468,53.474983221867795],[-2.914377598458968,53.46500517358472],[-2.900315030312638,53.4691586759534],[-2.867855282181373,53.4492945946253],[-2.865927223044769,53.41830162941371],[-2.892411156705693,53.4107621106839],[-2.856219824988291,53.39496011378423],[-2.8371937067863002,53.399741433945394],[-2.821954837185798,53.38066707898254],[-2.8561650149124373,53.378815010693316],[-2.853495811111275,53.363514490179924],[-2.8404055929822314,53.347331071139905],[-2.818806904374221,53.34800073421497]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-SHN","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":217,"NAME_2":"St. Helens","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-2.6906328033643474,53.38538819887531],[-2.712803447263301,53.39062599574497],[-2.715226797703995,53.399034871811146],[-2.745174605499206,53.402095648481286],[-2.7867759144555664,53.40118756707545],[-2.776201389989665,53.42668703835805],[-2.8050295780688237,53.43865997711093],[-2.7950694680621293,53.44323009479305],[-2.804407775672048,53.467236409853285],[-2.818711728158975,53.46689107502111],[-2.8249644186438823,53.48520925194317],[-2.805000066757145,53.493610382080135],[-2.801666021346989,53.51694107055658],[-2.776109933853149,53.5288810729981],[-2.751987934112549,53.51115036010747],[-2.690000057220345,53.47166061401373],[-2.603888988494873,53.47249984741205],[-2.59972095489502,53.458328247070305],[-2.566404104232788,53.43566894531255],[-2.616111993789559,53.43054962158208],[-2.639722108840942,53.44055175781244],[-2.670834064483643,53.431110382080014],[-2.648056983947754,53.391391754150504],[-2.680557012557927,53.37887954711914],[-2.6906328033643474,53.38538819887531]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-SFT","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":218,"NAME_2":"Sefton","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-2.863610982894841,53.51805114746094],[-2.8879942087273798,53.5038287512821],[-2.922615127321468,53.474983221867795],[-2.9563065635473573,53.472993440769805],[-2.9738232140443714,53.462756641485505],[-2.974914555250172,53.443323961595766],[-3.00864346820523,53.43787912516354],[-3.008755289200723,53.43838154498731],[-3.040833950042668,53.4651374816895],[-3.06138896942133,53.501251220703125],[-3.06361198425293,53.5223617553712],[-3.1002779006958,53.54291534423834],[-3.1002779006958,53.56652832031256],[-3.051388978958016,53.62236022949219],[-3.01916599273676,53.65124893188476],[-2.99083399772644,53.66736221313482],[-2.972501039504948,53.69402694702154],[-2.947770118713265,53.70819473266613],[-2.932777881622258,53.66054916381847],[-2.963609933853149,53.6261100769043],[-2.996387958526554,53.613609313964844],[-3.018887996673527,53.593608856201286],[-3.011667966842651,53.57749938964837],[-3.030555009841805,53.56026840209961],[-3.031666994094849,53.54193878173834],[-2.958611965179443,53.51583099365239],[-2.954444885253906,53.54582977294933],[-2.910278081893864,53.52444076538086],[-2.863610982894841,53.51805114746094]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-WRL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":219,"NAME_2":"Wirral","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-2.9287564668151167,53.30841299304941],[-2.931602543078512,53.306068832815846],[-2.939551319692313,53.31041563488773],[-2.968033296688178,53.3012551093274],[-2.992737815610769,53.30710878331546],[-3.026139522596778,53.29774869209405],[-3.0741654904919797,53.316380908019056],[-3.103733121138837,53.29999435427673],[-3.1037322636345945,53.30002934804953],[-3.1090147166578257,53.29725750745639],[-3.1166343558439107,53.31171865570986],[-3.122336556752299,53.32253388267948],[-3.186277019464458,53.36444603100735],[-3.2003693343126156,53.38751432995951],[-3.1736326305871425,53.40143583086426],[-3.0403203214367336,53.44289654953395],[-3.01645759994499,53.410577110896554],[-3.002522132920189,53.37473245214664],[-2.934169251041866,53.313288041250125],[-2.9287564668151167,53.30841299304941]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-BIR","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":220,"NAME_2":"Birmingham","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.7535232040259174,52.51296690956616],[-1.7994465715786179,52.50429325232655],[-1.7557828743406476,52.49948012688693],[-1.759600499826434,52.45191093161349],[-1.779146248816952,52.450154615190755],[-1.8003174036920766,52.45829756060253],[-1.8346435093023545,52.4174332370946],[-1.8444961945912532,52.410252604968385],[-1.8666451481106627,52.41104531977225],[-1.8687468031867753,52.404737506339956],[-1.845498272804539,52.39978223961458],[-1.844444990158081,52.383609771728516],[-1.90055501461029,52.39278030395508],[-1.954723000526428,52.38694000244135],[-1.983054995536747,52.37749099731439],[-2.001945018768254,52.39278030395508],[-1.983054995536747,52.41777038574224],[-2.016990282419047,52.4326829049244],[-2.013243469381798,52.4621907598166],[-1.9778967430437608,52.46716543160672],[-1.964006976484736,52.481985666946336],[-1.9507770607038752,52.48324663801256],[-1.9381321414490529,52.49842476289323],[-1.9630249126644133,52.50489727915291],[-1.9619814538100087,52.5284156793635],[-1.9294410516361902,52.53129919343769],[-1.9331498676191794,52.54581281031442],[-1.9181574543575888,52.547306508689616],[-1.878715984113474,52.56943440492526],[-1.872564469611435,52.584944671524696],[-1.875277042388859,52.58639144897461],[-1.855556011199895,52.57555007934576],[-1.815001010894719,52.590831756591854],[-1.777673006057739,52.575420379638786],[-1.753056049346867,52.54666137695318],[-1.733332037925663,52.5116691589356],[-1.7535232040259174,52.51296690956616]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-COV","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":221,"NAME_2":"Coventry","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.6010673268718723,52.38929945930054],[-1.6021755434992606,52.41605700579916],[-1.6144499964861112,52.42796797184463],[-1.6082707976447488,52.438841008005525],[-1.5952286648660792,52.439926413404116],[-1.5952286648660792,52.442926413404116],[-1.455000042915287,52.43804931640619],[-1.438053965568486,52.429439544677734],[-1.431666016578617,52.383609771728516],[-1.46277904510498,52.36582946777343],[-1.510833978652954,52.36748886108404],[-1.536944031715336,52.35583114624029],[-1.562777996063176,52.37221908569335],[-1.5676068988662508,52.384688959934735],[-1.6010673268718723,52.38929945930054]]]}},{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-DUD","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":222,"NAME_2":"Dudley","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-2.073942090146734,52.5498796695657],[-2.0795904608909996,52.524084766328386],[-2.057257620053761,52.51227148967935],[-2.0643229399889718,52.48716900687397],[-2.097090363561211,52.46839477878771],[-2.0590167147981466,52.46197535251913],[-2.0227492132989906,52.48055141631847],[-2.013243469381798,52.4621907598166],[-2.016990282419047,52.4326829049244],[-2.030555009841919,52.43693923950201],[-2.058332920074463,52.42248916625988],[-2.082776069641056,52.436100006103516],[-2.118889093399048,52.42221832275385],[-2.153856039047241,52.423000335693416],[-2.158890008926335,52.47748947143555],[-2.177500009536743,52.5011100769043],[-2.134443998336735,52.5152702331543],[-2.12611198425293,52.544441223144645],[-2.1214536447560484,52.55693494609824],[-2.108244358337544,52.543944892365815],[-2.0797787067929865,52.55702729259615],[-2.073942090146734,52.5498796695657]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-SAW","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":223,"NAME_2":"Sandwell","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.9181574543575888,52.547306508689616],[-1.9331498676191794,52.54581281031442],[-1.9294410516361902,52.53129919343769],[-1.9619814538100087,52.5284156793635],[-1.9630249126644133,52.50489727915291],[-1.9381321414490529,52.49842476289323],[-1.9507770607038752,52.48324663801256],[-1.964006976484736,52.481985666946336],[-1.9778967430437608,52.46716543160672],[-2.013243469381798,52.4621907598166],[-2.0227492132989906,52.48055141631847],[-2.0590167147981466,52.46197535251913],[-2.097090363561211,52.46839477878771],[-2.0643229399889718,52.48716900687397],[-2.057257620053761,52.51227148967935],[-2.0795904608909996,52.524084766328386],[-2.073942090146734,52.5498796695657],[-2.050982445654555,52.55272911259622],[-2.010978452375163,52.56906533086296],[-1.975496610455888,52.55556040195912],[-1.9641434593340144,52.5632268063678],[-1.9510685945348045,52.55683306471927],[-1.9339272996596213,52.560034196862155],[-1.9181574543575888,52.547306508689616]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-SOL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":224,"NAME_2":"Solihull","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.5952286648660792,52.442926413404116],[-1.5952286648660792,52.439926413404116],[-1.6082707976447488,52.438841008005525],[-1.6144499964861112,52.42796797184463],[-1.6021755434992606,52.41605700579916],[-1.6010673268718723,52.38929945930054],[-1.5676068988662508,52.384688959934735],[-1.562777996063176,52.37221908569335],[-1.682500958442688,52.34249877929682],[-1.714722990989628,52.35527038574213],[-1.751667976379281,52.34749984741222],[-1.79694497585291,52.35221862792963],[-1.82249903678894,52.3763885498048],[-1.844444990158081,52.383609771728516],[-1.845498272804539,52.39978223961458],[-1.8687468031867753,52.404737506339956],[-1.8666451481106627,52.41104531977225],[-1.8444961945912532,52.410252604968385],[-1.8346435093023545,52.4174332370946],[-1.8003174036920766,52.45829756060253],[-1.779146248816952,52.450154615190755],[-1.759600499826434,52.45191093161349],[-1.7557828743406476,52.49948012688693],[-1.7994465715786179,52.50429325232655],[-1.7535232040259174,52.51296690956616],[-1.733332037925663,52.5116691589356],[-1.741111040115356,52.49750137329101],[-1.682500958442688,52.43972015380871],[-1.661666989326477,52.42472076416015],[-1.619444012641793,52.444438934326115],[-1.5952286648660792,52.442926413404116]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-WLL","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":225,"NAME_2":"Walsall","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-1.872564469611435,52.584944671524696],[-1.878715984113474,52.56943440492526],[-1.9181574543575888,52.547306508689616],[-1.9339272996596213,52.560034196862155],[-1.9510685945348045,52.55683306471927],[-1.9641434593340144,52.5632268063678],[-1.975496610455888,52.55556040195912],[-2.010978452375163,52.56906533086296],[-2.050982445654555,52.55272911259622],[-2.061952548381922,52.55824902064915],[-2.0500221605804145,52.57214052345834],[-2.077823919994913,52.58606048217102],[-2.054599038491829,52.60084758246004],[-2.066389083862248,52.60805892944347],[-2.025834083557072,52.61610031127924],[-1.952499032020512,52.637500762939446],[-1.934445977210999,52.66527938842785],[-1.897222995758,52.649440765380966],[-1.896389007568303,52.617488861083984],[-1.875277042388859,52.58639144897461],[-1.855556011199895,52.57555007934576],[-1.872564469611435,52.584944671524696]]]}},
+{"type":"Feature","properties":{"ID_0":242,"ISO":"GB-WLV","NAME_0":"United Kingdom","ID_1":1,"NAME_1":"England","ID_2":226,"NAME_2":"Wolverhampton","TYPE_2":"Metropolitan District","ENGTYPE_2":"Metropolitan District","NL_NAME_2":null,"VARNAME_2":null},"geometry":{"type":"Polygon","coordinates":[[[-2.1214536447560484,52.55693494609824],[-2.12611198425293,52.544441223144645],[-2.157500028610229,52.54639053344732],[-2.174444913864136,52.567501068115234],[-2.200557947158757,52.579441070556754],[-2.180556058883667,52.599998474121094],[-2.144166946411132,52.61278152465826],[-2.131109952926579,52.629440307617244],[-2.097500085830575,52.63415908813482],[-2.066389083862248,52.60805892944347],[-2.054599038491829,52.60084758246004],[-2.077823919994913,52.58606048217102],[-2.0500221605804145,52.57214052345834],[-2.061952548381922,52.55824902064915],[-2.050982445654555,52.55272911259622],[-2.073942090146734,52.5498796695657],[-2.0797787067929865,52.55702729259615],[-2.108244358337544,52.543944892365815],[-2.1214536447560484,52.55693494609824]]]}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson
new file mode 100644
index 0000000..eb45ba9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson
@@ -0,0 +1,29 @@
+{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[32.878444671631144,49.220344543457145],[32.77760314941412,49.14488220214844],[32.8314590454101,49.10888671875006],[32.912761688232706,49.09610748291021],[32.912380218506144,49.07252502441417],[32.857730865478686,49.04962158203136],[32.856285095215014,48.9553260803222],[32.70254135131859,48.933662414550895],[32.61239242553722,48.9406089782716],[32.54902267456083,48.91777420043945],[32.54049301147455,48.97084426879883],[32.46869277954124,49.02457809448242],[32.44146728515625,49.00720214843756],[32.36950302124029,49.06087112426758],[32.297206878662166,49.06743240356457],[32.26097488403326,49.044235229492244],[32.233745574951456,48.99743270874035],[32.161472320556925,48.95103454589838],[32.17946624755865,48.92736053466808],[32.134361267090014,48.88661193847656],[32.05330276489286,48.910804748535156],[32.026294708252124,48.89339065551758],[31.945241928100696,48.8940162658692],[31.836971282959038,48.93002319335949],[31.719800949096793,48.924861907958984],[31.665918350219837,48.90167999267578],[31.575876235962202,48.896324157714844],[31.5856876373291,48.81992340087896],[31.50523948669428,48.779277801513615],[31.353410720825252,48.72143173217785],[31.33510971069336,48.74501800537121],[31.26303863525402,48.7630386352539],[31.200349807739197,48.75750732421875],[31.120323181152628,48.72269439697277],[31.056867599487305,48.758193969726676],[30.949075698852596,48.76449584960932],[30.89578247070318,48.741222381591854],[30.832527160644812,48.75901794433594],[30.679840087890625,48.75938034057622],[30.626924514770565,48.7243003845216],[30.61063575744646,48.665721893310604],[30.548803329467997,48.63066101074219],[30.585378646850586,48.60717391967779],[30.586374282836854,48.572029113769645],[30.415475845336854,48.58392715454113],[30.38119888305681,48.53123855590826],[30.2653064727786,48.5134162902832],[30.239219665527514,48.489910125732536],[30.176088333129993,48.50710296630865],[30.123943328857422,48.465835571289055],[29.980772018432674,48.493942260742244],[30.041431427002237,48.53537750244151],[30.030441284179915,48.593757629394645],[29.97668457031278,48.60494613647455],[30.01093482971208,48.64036560058594],[29.964702606201225,48.68667984008795],[29.928934097290206,48.692123413085994],[29.874048233032283,48.73240280151367],[29.881019592285323,48.77931213378912],[29.78249740600603,48.80139160156255],[29.780744552612585,48.84235763549816],[29.7437953948974,48.876945495605526],[29.75087165832542,48.91808319091797],[29.669904708862532,48.94600677490239],[29.711572647094954,49.005397796630916],[29.664943695068644,49.05736923217767],[29.662855148315483,49.104282379150504],[29.747997283935547,49.18792724609369],[29.74568748474132,49.24075317382824],[29.774694442748963,49.1883277893067],[29.951723098754936,49.231681823730526],[29.97719192504894,49.267189025878956],[29.96625328063965,49.314067840576286],[29.992483139038367,49.33196258544922],[30.09181404113787,49.32699584960937],[30.111040115356563,49.29779052734369],[30.18191528320341,49.33356094360345],[30.20206642150896,49.280849456787166],[30.35655021667503,49.26395797729492],[30.480152130127237,49.35808944702154],[30.562925338745345,49.328693389892635],[30.63441658020031,49.36386108398443],[30.679853439331108,49.363796234130916],[30.72637367248529,49.32847976684575],[30.78943061828619,49.34597778320318],[30.862277984619137,49.33993530273449],[30.943578720092773,49.357337951660156],[30.95128059387224,49.41018295288097],[31.032878875732706,49.421680450439396],[31.03214454650896,49.4510612487793],[31.095333099365405,49.47434616088867],[31.13013076782232,49.544734954833984],[31.175483703613395,49.556312561035206],[31.156412124633846,49.59164810180664],[31.227516174316687,49.67952346801769],[31.23546600341803,49.73239517211914],[31.215892791748047,49.78538131713878],[31.223794937133903,49.83825683593756],[31.323888778686694,49.87896347045904],[31.397157669067663,49.89035797119152],[31.321590423584038,49.97891616821295],[31.43187713623064,49.990108489990234],[31.46909523010248,49.972270965576286],[31.451616287231502,49.92533874511718],[31.461730957031303,49.87826156616222],[31.499031066894702,49.84866333007812],[31.581546783447262,49.85995864868175],[31.646163940429744,49.84196853637701],[31.747289657592944,49.84141159057622],[31.838191986084098,49.940837860107536],[31.948686599731502,49.951961517333984],[31.929729461670203,50.01086044311518],[31.938373565674,50.075477600097656],[31.993612289428764,50.104553222656364],[32.02995300292997,50.19252777099604],[32.085624694824276,50.186321258545036],[32.14112854003912,50.2095108032226],[32.150524139404354,50.18593597412115],[32.224838256836165,50.13845062255865],[32.289691925049,50.12041473388683],[32.31750106811552,50.02616500854492],[32.36368560791021,50.03174972534185],[32.382087707519474,49.99045562744146],[32.455699920654354,49.93700027465831],[32.45539093017578,49.860507965088004],[32.40018463134793,49.855026245117244],[32.46431732177751,49.80158996582031],[32.592510223388956,49.747592926025504],[32.601116180420206,49.67685699462896],[32.68338394165056,49.65847015380854],[32.756095886230746,49.61067199707037],[32.746677398681584,49.587188720703125],[32.79195404052762,49.55139923095709],[32.79150772094721,49.51603698730469],[32.7085571289063,49.44614410400402],[32.725971221923885,49.375263214111385],[32.7893905639649,49.35102844238281],[32.779987335205135,49.3275527954101],[32.689041137695305,49.328506469726506],[32.61651611328142,49.35279846191412],[32.51657485961937,49.37142181396479],[32.4889564514163,49.32458114624035],[32.54317092895502,49.28285217285162],[32.68786239624029,49.222476959228565],[32.76961135864275,49.22747802734375],[32.79652404785185,49.20360183715826],[32.878444671631144,49.220344543457145]]]},"properties":{"ID_0":240,"ISO":"UA-71","NAME_0":"Ukraine","ID_1":1,"NAME_1":"Cherkasy","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Cherkas'ka Oblast'|Cherkasskaya Oblast'|Cherkassy"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.427616119384936,52.3442115783692],[33.38936233520513,52.260772705078175],[33.325595855713054,52.19298553466797],[33.32460021972662,52.14630889892584],[33.36208343505854,52.139640808105526],[33.45310211181658,52.07283401489269],[33.50841140747076,52.065841674804744],[33.50878143310564,52.025146484375],[33.44343185424799,52.01393890380865],[33.396900177001896,52.03231048583996],[33.341419219970874,51.999774932861385],[33.42752456665062,51.96378707885736],[33.394931793213175,51.916851043701286],[33.28780364990257,51.92345809936529],[33.16868209838873,51.865077972412166],[33.16719436645536,51.811744689941406],[33.117862701416186,51.77052688598644],[33.12702941894537,51.74084472656256],[33.18413925170921,51.68720245361334],[33.145328521728686,51.65199279785167],[33.221691131591854,51.56289672851568],[33.19276046752958,51.486362457275504],[33.154445648193644,51.480728149414176],[33.135166168213175,51.427761077880916],[33.14447784423845,51.36281204223633],[33.096660614013786,51.35724639892584],[33.08640670776384,51.2394256591798],[33.05735778808593,51.192504882812614],[32.990447998047095,51.16350173950195],[33.01863479614286,51.133872985839844],[32.98971176147478,51.09873580932623],[33.10277938842768,51.050884246826286],[33.111625671387,51.01550292968761],[33.08253479003906,50.97449111938476],[33.23291397094726,50.9382438659668],[33.241062164306584,50.87938308715826],[33.1935997009279,50.862026214599666],[33.20106506347684,50.76788330078131],[33.24740219116228,50.7382049560548],[33.171337127685604,50.69160079956055],[33.189365386963004,50.656192779541065],[33.13277435302763,50.6388931274414],[33.1216659545899,50.55068588256836],[33.092609405517635,50.497882843017635],[33.05452346801752,50.45690155029297],[32.95119476318388,50.41046142578131],[32.89464569091797,50.36371994018549],[32.80129241943387,50.34077453613281],[32.596519470215014,50.342041015625114],[32.53132629394537,50.33654403686529],[32.503543853759766,50.38376235961914],[32.410350799560604,50.39020156860363],[32.35441207885748,50.40818405151367],[32.28001022338867,50.332168579101555],[32.1776771545413,50.32690048217768],[32.112380981445426,50.35080718994152],[32.05611038208013,50.39818191528331],[32.0274353027346,50.46891403198248],[32.08327102661161,50.492122650146484],[32.082950592041186,50.52741241455089],[31.99873542785673,50.5278892517091],[31.960680007934567,50.575153350830135],[31.847497940063587,50.61694717407232],[31.8010196685791,50.59367370605469],[31.80188941955595,50.54661941528332],[31.708114624023494,50.55301284790045],[31.63425636291515,50.50636291503912],[31.540285110473633,50.52450561523443],[31.46640586853033,50.48960876464849],[31.38113212585449,50.53120803833008],[31.26901245117187,50.53180313110351],[31.210729598999134,50.59677124023443],[31.22624969482439,50.68486022949219],[31.139301300049112,50.74995040893549],[31.12895584106451,50.773506164550724],[31.05442619323736,50.76210403442394],[30.848503112793196,50.76278305053711],[30.74406814575218,50.79824447631836],[30.768627166748043,50.86872482299815],[30.682821273803878,50.90413665771496],[30.642480850219897,50.96296310424816],[30.640617370605526,50.99821472167968],[30.58318519592285,51.02769088745117],[30.50899505615257,51.02790451049805],[30.489318847656307,51.05150985717768],[30.513940811157227,51.11018753051763],[30.474897384643725,51.17552185058605],[30.519046783447553,51.198616027832145],[30.509107589721733,51.24024581909185],[30.535083770752237,51.269706726074276],[30.588104248046875,51.28022384643555],[30.60475730896007,51.32155990600597],[30.65711021423345,51.33758544921881],[30.623411178589148,51.406112670898494],[30.616550445556584,51.48315429687506],[30.572303771972717,51.50444030761719],[30.52880668640165,51.5713348388673],[30.565828323364258,51.60756301879882],[30.520992279052678,51.662387847900504],[30.56768798828125,51.67437362670904],[30.577983856201453,51.71097183227544],[30.6238651275637,51.72357177734374],[30.69740295410162,51.837852478027344],[30.71175956726086,51.88551712036138],[30.812522888183707,51.916053771972656],[30.805837631225756,51.95095062255859],[30.8620033264163,51.99011993408209],[30.940582275390625,51.99276351928722],[30.951120376586914,52.0784797668457],[31.05743026733404,52.078529357910156],[31.11174392700212,52.0948104858399],[31.23543739318842,52.04833602905273],[31.29511260986345,52.06956481933594],[31.30680847167974,52.09890747070324],[31.443658828735405,52.13754272460943],[31.48966789245611,52.11967849731445],[31.681915283203296,52.11468505859381],[31.80774879455589,52.09617233276367],[31.858610153198523,52.10762405395508],[31.94972991943376,52.08386611938482],[31.923452377319396,52.0361213684082],[32.0219268798831,52.04119873046875],[32.072063446045085,52.022766113281364],[32.21000289916992,52.05716323852545],[32.229854583740234,52.08079528808605],[32.29918289184599,52.091964721679744],[32.35117340087902,52.13898086547857],[32.32890319824236,52.2353515625],[32.39633178710943,52.252891540527344],[32.358680725097656,52.33577728271496],[32.53191375732427,52.33327102661133],[32.62036895751953,52.30223846435558],[32.706577301025675,52.253143310546925],[32.747074127197436,52.27048492431646],[32.87995529174833,52.27319335937506],[32.90880966186518,52.24350357055669],[32.977085113525334,52.26479721069336],[33.0746307373048,52.3225936889649],[33.17728424072283,52.33797073364269],[33.1853103637697,52.3680992126466],[33.242950439453175,52.368160247802734],[33.343891143799,52.33840560913085],[33.427616119384936,52.3442115783692]]]},"properties":{"ID_0":240,"ISO":"UA-74","NAME_0":"Ukraine","ID_1":2,"NAME_1":"Chernihiv","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Chernigov|Tschernigow"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.625947952270508,48.67673110961914],[25.70867919921875,48.6622695922851],[25.788305282592887,48.671047210693416],[25.857351303100696,48.62656402587902],[25.851633071899414,48.60287475585943],[25.91664123535162,48.58759307861334],[25.96638870239269,48.61873245239258],[26.149723052978626,48.59591674804687],[26.146175384521484,48.554622650146484],[26.176998138427848,48.526359558105526],[26.28397560119646,48.53598785400402],[26.296056747436637,48.51285552978521],[26.359701156616268,48.50917053222656],[26.437473297119197,48.53564071655279],[26.510892868041992,48.52648162841796],[26.555419921875053,48.46259307861328],[26.620014190673885,48.45283889770513],[26.651996612548828,48.48396301269531],[26.723920822143555,48.486755371093864],[26.71844482421875,48.52861022949219],[26.803565979003963,48.56860733032232],[26.90369033813488,48.545246124267514],[26.934822082519585,48.57596969604492],[27.005056381225586,48.573749542236385],[27.104028701782283,48.55498123168939],[27.15440750122093,48.586490631103516],[27.227418899536186,48.566162109375],[27.23247528076172,48.61349105834972],[27.27615737915067,48.62720870971691],[27.31411170959484,48.599334716796875],[27.374431610107536,48.63139343261719],[27.457410812378043,48.59319686889654],[27.47717666625982,48.55816650390624],[27.470438003540096,48.50998687744146],[27.533691406250053,48.464416503906364],[27.471635818481555,48.448894500732536],[27.46418952941906,48.4233665466308],[27.381259918213004,48.41062545776367],[27.32387924194347,48.44143295288097],[27.284778594970817,48.38408279418939],[27.229536056518498,48.37453079223644],[27.197153091430778,48.39616775512701],[27.15061378479015,48.38280487060558],[27.094108581543082,48.40908432006836],[27.0028915405274,48.365390777587834],[26.928272247314567,48.370529174804744],[26.88106918334961,48.425903320312614],[26.726482391357536,48.39499282836913],[26.828771591186637,48.34069061279291],[26.820150375366268,48.293167114257926],[26.772674560546932,48.277458190918026],[26.752584457397514,48.31863021850597],[26.690494537353516,48.3476676940918],[26.674463272094727,48.30824661254888],[26.61643028259283,48.24929428100586],[26.53169441223156,48.21019744873058],[26.47389411926281,48.220451354980526],[26.402503967285266,48.18900680541992],[26.336137771606502,48.184467315673885],[26.26848220825201,48.076736450195305],[26.213724136352653,48.05101013183594],[26.189668655395565,47.99571228027344],[26.102588653564567,47.97848510742182],[26.062509536743274,47.98831558227539],[25.953598022460934,47.97108840942394],[25.862892150878963,47.97044754028326],[25.776258468627987,47.93962478637707],[25.627159118652628,47.949031829833984],[25.593940734863338,47.93868637084972],[25.31250762939447,47.91458129882807],[25.23960876464855,47.895549774170036],[25.223596572876033,47.85888671874994],[25.117712020873967,47.76792907714844],[25.041725158691406,47.7256698608399],[24.93280029296875,47.727939605713004],[25.005004882812614,47.819515228271484],[25.00832939147955,47.84307098388672],[24.945228576660213,47.88597488403326],[24.90699958801281,47.937423706054794],[24.89846229553217,47.99044799804699],[24.93268775939947,48.057537078857365],[24.9890975952149,48.09610748291027],[24.983072280883842,48.13701248168951],[25.06084632873535,48.15297698974621],[25.134000778198466,48.26234817504894],[25.19427490234375,48.27704620361328],[25.338451385498104,48.38917541503906],[25.415601730346793,48.41016769409191],[25.521902084350586,48.414657592773544],[25.64058113098156,48.39582824707031],[25.594791412353572,48.464431762695426],[25.604721069336104,48.51758575439459],[25.57933044433605,48.62799453735363],[25.625947952270508,48.67673110961914]]]},"properties":{"ID_0":240,"ISO":"UA-77","NAME_0":"Ukraine","ID_1":3,"NAME_1":"Chernivtsi","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Chernivets'ka Oblast'|Chernovitskaya Oblast'|Chernovtsy|Czernowitz|Tschernowzy|Tchernovtsy"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.056884765625284,46.01227188110363],[34.07029724121111,46.04892349243164],[34.21107482910173,46.02893829345714],[34.32836151123064,46.0278892517091],[34.42665481567394,46.10229492187506],[34.519184112548764,46.05566024780279],[34.558979034423885,46.11584472656256],[34.618587493896655,46.08187484741222],[34.61413955688505,46.032535552978516],[34.5625801086428,46.04688262939464],[34.50018692016607,46.04038238525402],[34.46310424804693,46.02116394042963],[34.458526611328175,45.97988128662114],[34.52196502685564,45.93108367919933],[34.602302551269524,45.948871612548885],[34.66382980346685,46.01050567626953],[34.653778076172046,46.07901000976562],[34.69904327392584,46.09243774414074],[34.795230865478516,46.072448730468864],[34.839305877685604,46.05289459228521],[34.865970611572436,45.95791625976568],[34.91902923584013,45.85069274902344],[35.03402709960966,45.679862976074276],[35.105972290039006,45.59847259521496],[35.204860687255966,45.51347351074219],[35.2626380920413,45.44985961914074],[35.3768043518067,45.35347366333019],[35.45069503784208,45.309307098388665],[35.528472900390796,45.283473968505966],[35.59680557251005,45.31152725219721],[35.72013854980462,45.334304809570426],[35.75763702392601,45.36819458007818],[35.753749847412394,45.39736175537115],[35.84875106811552,45.439582824707145],[35.885971069335994,45.4059715270996],[35.94819259643572,45.37625122070324],[36.005416870117244,45.369583129882926],[36.070415496826286,45.40180587768555],[36.069862365722884,45.43763732910162],[36.143196105956974,45.46680450439459],[36.28374862670904,45.48152923583996],[36.342361450195476,45.47735977172857],[36.41847229003906,45.445137023925724],[36.49124908447294,45.45097351074224],[36.52875137329113,45.42680740356451],[36.59708404541044,45.43763732910162],[36.64652633666997,45.38180541992199],[36.60486221313471,45.34791564941406],[36.48513793945341,45.3609733581543],[36.47986221313482,45.30513763427729],[36.43708419799805,45.267360687255916],[36.40208435058593,45.213195800781364],[36.40625000000017,45.172637939453125],[36.44374847412137,45.08680725097656],[36.374862670898494,45.05902862548834],[36.26291656494169,45.0531959533692],[36.226528167724666,45.0279159545899],[36.02680587768555,45.049583435058594],[35.955696105956974,45.01291656494152],[35.90430450439476,45.01874923706049],[35.839027404785156,44.99874877929693],[35.809860229492244,45.04347229003906],[35.717918395996094,45.097084045410156],[35.612895965576335,45.12736129760748],[35.565803527832315,45.1304168701173],[35.475418090820426,45.11013793945318],[35.40541839599621,45.070137023925895],[35.38347244262701,45.04013824462896],[35.425140380859375,45.011806488037166],[35.364028930664176,44.99347305297857],[35.35013961791998,44.964305877685604],[35.27125167846674,44.96875],[35.237361907958984,44.91569519042969],[35.16680526733404,44.90097045898431],[35.12847137451183,44.82847213745123],[35.082637786865405,44.79208374023437],[35.029304504394474,44.8304176330567],[34.96347045898466,44.8404159545899],[34.88958358764643,44.81597137451172],[34.77291488647461,44.81847381591802],[34.48930740356451,44.72652816772472],[34.4162483215332,44.67319488525402],[34.35235977172857,44.586807250976676],[34.34763717651373,44.54819488525396],[34.276527404785156,44.53902816772472],[34.25097274780302,44.50624847412115],[34.164585113525504,44.492362976074325],[34.127082824707315,44.428470611572266],[33.94013977050787,44.39125061035162],[33.882915496826335,44.40402603149413],[33.80236053466797,44.39420700073248],[33.92674636840831,44.429439544677734],[33.86188507080084,44.52409744262701],[33.797657012939624,44.497566223144474],[33.713996887206974,44.51655578613287],[33.6789131164553,44.54543304443371],[33.66891479492193,44.58584976196289],[33.75345993041998,44.62055969238292],[33.77341842651384,44.67374801635742],[33.72583389282249,44.70423889160162],[33.61883163452171,44.70058822631847],[33.613399505615405,44.742172241210994],[33.67987442016607,44.758396148681584],[33.66495895385748,44.78236389160156],[33.59279251098649,44.80184173583984],[33.57392501831072,44.83791732788097],[33.60680389404291,44.86902618408209],[33.61264038085943,44.92152786254883],[33.60013961792014,45.01013946533203],[33.56902694702154,45.0745849609375],[33.51291656494169,45.1337509155274],[33.42375183105469,45.18930435180664],[33.38347244262701,45.19708251953131],[33.305973052978516,45.17458343505865],[33.25819396972656,45.148193359375],[33.22791671752947,45.17514038085943],[33.14847183227562,45.20375061035162],[33.015972137451456,45.308193206787166],[33.02013778686552,45.37125015258789],[32.97680664062494,45.3531951904298],[32.87041854858427,45.36680603027344],[32.75597381591814,45.36513900756836],[32.6543045043947,45.31569290161144],[32.4945831298831,45.345417022705135],[32.48041534423834,45.39041519165045],[32.4995841979981,45.422359466552734],[32.584861755371264,45.480693817138786],[32.78819274902361,45.562084197998104],[32.82430648803705,45.59013748168957],[32.95597076416044,45.662082672119254],[33.152915954589844,45.73208236694347],[33.16569519042968,45.779304504394474],[33.24124908447271,45.75097274780284],[33.31652832031267,45.7698593139649],[33.425693511962834,45.83402633666998],[33.49458312988287,45.85486221313482],[33.54735946655302,45.83763885498058],[33.56791687011736,45.86930465698242],[33.67652893066429,45.898193359375],[33.75263977050787,45.94819259643566],[33.63069534301786,45.95708465576171],[33.61486053466796,46.05374908447277],[33.64180374145502,46.08458328247064],[33.62374877929716,46.110332489013615],[33.629108428955135,46.162303924560604],[33.65636825561529,46.18651199340826],[33.74657440185575,46.14308166503906],[33.82028198242187,46.15596771240246],[33.883033752441406,46.13815307617193],[33.97277069091825,46.08840560913086],[33.990180969238224,46.05530166625982],[34.04221725463867,46.04610061645508],[34.056884765625284,46.01227188110363]]]},"properties":{"ID_0":240,"ISO":"UA-43","NAME_0":"Ukraine","ID_1":4,"NAME_1":"Crimea","TYPE_1":"Autonomous Republic","ENGTYPE_1":"Autonomous Republic","NL_NAME_1":null,"VARNAME_1":"Crimée|Criméia|Krim|Krymskaya Respublika|Respublika Krym"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.061527252197315,49.13572692871094],[35.211250305175895,49.13317489624029],[35.21788024902372,49.097221374511776],[35.45847702026373,48.997375488281364],[35.517875671386946,48.96045303344738],[35.59692001342779,48.95303344726568],[35.72139739990257,48.96263122558605],[35.824035644531534,48.91278076171881],[35.843410491943644,48.93629837036133],[36.0051002502442,48.96881484985362],[36.03888702392595,48.830627441406364],[36.13344573974621,48.798656463623104],[36.15796279907237,48.77420425415045],[36.152812957763786,48.708644866943416],[36.22837829589849,48.665119171142635],[36.279933929443416,48.65200042724609],[36.258083343506144,48.59881591796875],[36.377109527588004,48.55446243286133],[36.47330856323242,48.65375518798834],[36.608570098877,48.59138488769537],[36.69025802612333,48.619319915771484],[36.734184265136776,48.618278503418026],[36.81653594970703,48.55672073364258],[36.87693023681652,48.54325485229498],[36.81750869751005,48.47343826293951],[36.82889938354515,48.407772064208984],[36.8009643554688,48.39064788818371],[36.80137634277372,48.3015594482423],[36.854373931884936,48.306163787841854],[36.895843505859546,48.28134155273449],[36.922260284424,48.19165802001959],[36.85945129394531,48.17552185058594],[36.89282989501953,48.06800079345703],[36.854595184326165,48.03346252441406],[36.76876831054716,48.047397613525504],[36.65102386474614,48.091476440429744],[36.5886497497558,48.07495880126964],[36.59473419189459,47.95050811767578],[36.64339828491205,47.91405487060547],[36.55477905273449,47.89210891723638],[36.59258651733404,47.83230972290039],[36.46862411499052,47.79900360107416],[36.38397598266612,47.81795883178722],[36.33884048461914,47.79494476318371],[36.22735214233427,47.80252075195318],[36.212585449219034,47.83238601684576],[36.11634826660156,47.816192626953125],[36.123565673828296,47.90512847900396],[36.097682952880966,47.905597686767635],[36.05580902099637,48.03127288818371],[36.01204681396489,48.02617645263672],[35.98060226440447,48.06845855712902],[35.8390464782716,48.03544998168945],[35.833007812500284,48.07130813598633],[35.76346969604498,48.0726203918457],[35.73125457763672,48.108985900878906],[35.570007324219034,48.04639053344732],[35.38973617553728,48.08538818359381],[35.33873748779297,48.104198455810604],[35.2518424987793,48.10576248168957],[35.08544540405302,48.08496856689453],[35.031562805176065,48.05615234375],[34.9535446166995,48.05766296386719],[34.94633102416998,48.081676483154354],[34.886695861816406,48.10074234008795],[34.90876770019548,48.034664154052734],[34.87302780151384,48.01745986938488],[34.88604354858404,47.9455680847169],[34.82081604003917,47.869243621826286],[34.89468383789079,47.80208206176763],[34.868030548095646,47.79066085815441],[34.88206863403343,47.73662185668951],[34.94292068481451,47.741413116455135],[34.940010070801065,47.69367599487305],[34.89393615722656,47.64675903320324],[34.92557525634783,47.598335266113395],[34.91370010375982,47.544754028320256],[34.936695098876896,47.496479034423885],[34.87561035156267,47.48566055297863],[34.77214431762695,47.487686157226676],[34.66218185424833,47.52585983276372],[34.575962066650675,47.52772903442383],[34.47105407714861,47.50613403320318],[34.2965927124024,47.480316162109375],[34.147533416748104,47.448284149170036],[34.00723266601568,47.42241287231445],[33.973041534423885,47.43530654907238],[33.923320770263615,47.49026107788097],[33.808971405029354,47.469799041748104],[33.651100158691406,47.456707000732536],[33.64358901977545,47.4865379333496],[33.591125488281534,47.48810195922857],[33.58587265014677,47.57701492309575],[33.497764587402344,47.56774139404302],[33.48744201660173,47.52667999267578],[33.44251632690447,47.49848937988286],[33.372203826904524,47.494663238525504],[33.34464645385759,47.46007156372075],[33.29292297363287,47.48516082763677],[33.28516387939481,47.514865875244254],[33.223590850830135,47.51068878173834],[33.20701217651373,47.54058837890624],[33.093521118164176,47.56114959716791],[33.094047546387,47.578781127929744],[32.98924255371111,47.59886932373058],[32.990818023681584,47.65759277343756],[32.9742965698245,47.6990966796875],[33.0101013183596,47.72182846069347],[33.071712493896655,47.72045516967785],[33.08195495605469,47.773178100585994],[33.0652618408206,47.80885314941412],[33.094032287597706,47.89653396606457],[33.023490905762,47.90391159057622],[33.03403472900408,47.974338531494254],[33.06144332885742,48.00911331176758],[33.105724334716854,48.00820159912121],[33.1776504516601,48.04796600341797],[33.33866882324236,48.09763336181652],[33.330654144287394,48.1273307800294],[33.40197372436529,48.13759994506847],[33.51839065551752,48.17052459716808],[33.58163070678734,48.204650878906364],[33.56523132324236,48.24644470214855],[33.52970886230497,48.247200012207145],[33.52231216430687,48.294692993164176],[33.496185302734546,48.3129768371582],[33.51598358154325,48.37765884399414],[33.51154708862322,48.52567291259776],[33.61944198608427,48.54733276367193],[33.66504669189459,48.57609558105469],[33.70016479492193,48.557659149169915],[33.799739837646655,48.59728622436535],[33.76630783081083,48.663124084472706],[33.72260284423845,48.69355773925781],[33.6689071655274,48.69451904296874],[33.6252555847168,48.73083114624018],[33.64411926269537,48.76011657714838],[33.698677062988565,48.782875061035156],[33.823696136474666,48.76884078979492],[33.85862731933594,48.7445068359375],[33.91490173339844,48.814739227295036],[33.93502426147461,48.87374496459961],[33.99654006958036,48.84305572509777],[34.05889129638672,48.836090087890625],[34.15563583374018,48.798835754394474],[34.18061447143566,48.75681304931652],[34.25133132934599,48.74372100830078],[34.312240600586165,48.71294784545898],[34.367183685302905,48.74771499633795],[34.33381652832037,48.795871734619084],[34.37994766235345,48.83081054687506],[34.33734130859391,48.87314987182617],[34.38546752929693,48.94972229003906],[34.39632034301786,48.9911994934082],[34.4521026611331,49.03794097900396],[34.60361480712908,49.035617828369254],[34.62412261962919,49.08890914916992],[34.74958801269537,49.10486984252924],[34.78734207153332,49.14601516723644],[34.859672546386776,49.16875839233393],[35.009578704834155,49.154476165771484],[35.061527252197315,49.13572692871094]]]},"properties":{"ID_0":240,"ISO":"UA-12","NAME_0":"Ukraine","ID_1":5,"NAME_1":"Dnipropetrovs'k","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Dnipropetrovsk|Dniepropietrovsk|Dnjepropetrowsk"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[39.060066223144815,47.86254119873047],[38.9300384521486,47.868629455566406],[38.83940887451183,47.8542098999024],[38.76478576660185,47.68413162231445],[38.67514419555681,47.696815490722656],[38.66309738159197,47.663700103759766],[38.60552978515653,47.63789367675781],[38.457427978515625,47.63735198974615],[38.46673202514671,47.609565734863395],[38.37160873413114,47.611076354980575],[38.35765075683611,47.57899093627924],[38.310749053955355,47.56166839599621],[38.29051589965826,47.520183563232536],[38.31133651733427,47.45143508911133],[38.29831695556658,47.3759002685548],[38.25248718261747,47.36819458007812],[38.224414825439624,47.31311035156255],[38.325645446777344,47.30075454711914],[38.334228515625,47.25302886962896],[38.245891571045206,47.228363037109375],[38.234554290771484,47.11986160278332],[38.166526794433764,47.07069396972662],[38.06236267089838,47.11180496215826],[38.03236007690447,47.08986282348638],[37.96236038208025,47.093193054199276],[37.899860382080135,47.1109733581543],[37.79569625854498,47.08541488647461],[37.7023620605471,47.08013916015625],[37.630138397216854,47.09486007690441],[37.535694122314624,47.080696105956974],[37.47208404541033,47.025970458984375],[37.33791732788086,46.89125061035167],[37.29208374023443,46.9329185485841],[37.23458480834984,46.95124816894531],[37.16263961791992,46.91347122192394],[37.06030654907255,46.88291549682623],[37.029228210449276,46.921546936035206],[37.049308776855526,46.949844360351506],[37.138324737549105,46.979637145996094],[37.089683532714844,47.00658035278331],[37.117874145507976,47.0285530090332],[37.00292968750006,47.081405639648544],[36.998600006103516,47.122539520263786],[36.87554931640631,47.185024261474666],[36.96400833129894,47.20572662353521],[36.935443878174,47.265235900878956],[36.93151092529314,47.312278747558594],[37.04256057739286,47.297008514404354],[37.087551116943416,47.313091278076286],[37.145549774170206,47.36978912353527],[37.190067291259936,47.379772186279354],[37.25014495849615,47.453895568847706],[37.15412139892595,47.451946258545036],[37.079116821289176,47.483993530273494],[37.01507568359392,47.539009094238395],[36.94738769531249,47.55867767333979],[36.90171432495117,47.536411285400504],[36.82217788696289,47.609115600585994],[36.76232528686546,47.616436004638665],[36.73009872436546,47.640724182128906],[36.67174148559576,47.75399017333979],[36.67395782470731,47.7775497436524],[36.5866241455081,47.7674674987793],[36.617393493652514,47.82001876831066],[36.59258651733404,47.83230972290039],[36.55477905273449,47.89210891723638],[36.64339828491205,47.91405487060547],[36.59473419189459,47.95050811767578],[36.5886497497558,48.07495880126964],[36.65102386474614,48.091476440429744],[36.76876831054716,48.047397613525504],[36.854595184326165,48.03346252441406],[36.89282989501953,48.06800079345703],[36.85945129394531,48.17552185058594],[36.922260284424,48.19165802001959],[36.895843505859546,48.28134155273449],[36.854373931884936,48.306163787841854],[36.80137634277372,48.3015594482423],[36.8009643554688,48.39064788818371],[36.82889938354515,48.407772064208984],[36.81750869751005,48.47343826293951],[36.87693023681652,48.54325485229498],[36.81653594970703,48.55672073364258],[36.734184265136776,48.618278503418026],[36.73249053955084,48.69573593139643],[36.686691284179744,48.77430725097662],[36.919158935546875,48.79797363281256],[36.98823928833002,48.77807235717779],[37.01837539672846,48.812847137451115],[37.06273269653343,48.811431884765625],[37.08410644531267,48.846424102783146],[37.146247863769645,48.84431076049816],[37.19310760498069,48.866428375244254],[37.2336502075197,48.912490844726676],[37.30861282348638,48.94524383544927],[37.30356597900419,48.98109817504883],[37.378086090088004,49.007724761963004],[37.392269134521484,49.05461883544922],[37.51095581054682,49.073062896728516],[37.49713134765648,49.109333038330135],[37.580749511718864,49.13523864746105],[37.56006240844721,49.189674377441406],[37.51813888549822,49.2153205871582],[37.5757102966308,49.24839782714838],[37.65601730346697,49.244777679443416],[37.78796768188505,49.22086715698242],[37.86023330688505,49.22346496582031],[37.8734397888183,49.25863647460948],[37.939350128174055,49.207782745361385],[37.90751647949236,49.167545318603565],[37.959014892578296,49.14716339111328],[38.08274078369169,49.129154205322266],[38.05686569213873,49.064807891845646],[38.08676910400402,49.015609741210994],[38.00749206542968,48.95398712158209],[38.2125244140625,48.94366455078125],[38.20962905883812,48.84845352172857],[38.27786254882841,48.821109771728516],[38.245258331298885,48.77513885498058],[38.294868469238224,48.74279403686535],[38.28744125366234,48.68362808227545],[38.221626281738224,48.65724182128912],[38.291011810302734,48.49890518188471],[38.26962661743181,48.470245361328125],[38.31008911132841,48.43840408325207],[38.41442108154325,48.42103576660156],[38.41868591308611,48.38510894775402],[38.47641754150418,48.35227584838867],[38.411113739013786,48.326011657714844],[38.404293060302905,48.27282333374035],[38.54523086547868,48.27121734619152],[38.58978271484392,48.20933151245128],[38.58506011962896,48.1739120483399],[38.652290344238395,48.14653778076172],[38.79998397827177,48.120742797851676],[38.821304321289006,48.01867294311523],[39.039722442627,48.007263183593864],[39.0407142639163,47.9600181579591],[39.07302093505888,47.94686508178722],[39.060066223144815,47.86254119873047]]]},"properties":{"ID_0":240,"ISO":"UA-14","NAME_0":"Ukraine","ID_1":6,"NAME_1":"Donets'k","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Donetsk|Donetskaya Oblast'|Donezk|Stalino"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.709098815918026,49.49817657470709],[24.760036468505803,49.39469528198248],[24.806293487548885,49.385398864746094],[24.83896064758295,49.34584808349621],[24.80844116210937,49.30883026123058],[24.82333946228033,49.26836395263683],[24.883520126342773,49.224407196045036],[24.836347579956165,49.18070983886719],[24.898210525512752,49.12508773803705],[24.970905303955135,49.11706161499035],[24.9503498077392,49.07483291625982],[24.901666641235465,49.0428733825683],[25.032554626464844,49.00255966186529],[25.095523834228626,48.99979782104492],[25.114767074585018,48.93022918701183],[25.221349716186523,48.93531036376959],[25.245668411254883,48.83073806762707],[25.278366088867127,48.791141510009766],[25.338346481323356,48.870143890380916],[25.42675781249994,48.879901885986385],[25.44144821166998,48.83940505981445],[25.545413970947322,48.80265808105469],[25.633951187133956,48.7474822998048],[25.625947952270508,48.67673110961914],[25.57933044433605,48.62799453735363],[25.604721069336104,48.51758575439459],[25.594791412353572,48.464431762695426],[25.64058113098156,48.39582824707031],[25.521902084350586,48.414657592773544],[25.415601730346793,48.41016769409191],[25.338451385498104,48.38917541503906],[25.19427490234375,48.27704620361328],[25.134000778198466,48.26234817504894],[25.06084632873535,48.15297698974621],[24.983072280883842,48.13701248168951],[24.9890975952149,48.09610748291027],[24.93268775939947,48.057537078857365],[24.89846229553217,47.99044799804699],[24.90699958801281,47.937423706054794],[24.945228576660213,47.88597488403326],[25.00832939147955,47.84307098388672],[25.005004882812614,47.819515228271484],[24.93280029296875,47.727939605713004],[24.838142395019474,47.77977371215832],[24.829368591308537,47.82072830200201],[24.75459098815918,47.82999420166021],[24.67456436157238,47.863647460937614],[24.67540550231928,47.896633148193416],[24.569614410400444,47.9683570861817],[24.566320419311523,48.03275680541992],[24.614669799804688,48.05851364135742],[24.598463058471733,48.10418701171875],[24.52041053771984,48.151790618896484],[24.496540069580135,48.19105911254877],[24.532066345214844,48.24598693847661],[24.47595977783203,48.26573944091796],[24.478391647338867,48.306903839111385],[24.35287094116211,48.374736785888615],[24.311510086059627,48.41301345825207],[24.265602111816403,48.36862945556646],[24.183500289916932,48.38628005981451],[24.141117095947436,48.43024826049804],[24.140714645386023,48.54211425781249],[23.995227813720703,48.51361465454101],[23.950822830200252,48.46309661865246],[23.894794464111385,48.4823455810548],[23.899440765380803,48.559371948242244],[23.838539123535156,48.55464935302746],[23.77847099304205,48.597167968750114],[23.761886596679684,48.64310836791992],[23.68357086181669,48.636913299560604],[23.6097354888916,48.70784759521478],[23.544797897339095,48.7261962890625],[23.561981201171875,48.78090667724604],[23.545328140258846,48.82689666748047],[23.560642242431925,48.89317321777349],[23.54796409606928,48.91582107543957],[23.59451293945324,49.00811767578125],[23.674638748169002,49.061714172363274],[23.669857025146484,49.090900421142685],[23.744485855102653,49.126380920410156],[23.791460037231445,49.1123504638673],[23.908252716064453,49.10962677001959],[23.965644836425838,49.14355850219738],[24.023361206054688,49.11824035644537],[24.05429077148437,49.15007400512689],[24.127033233642575,49.1434211730957],[24.23346900939947,49.15073013305669],[24.283136367797965,49.177700042724716],[24.379739761352766,49.18979644775402],[24.43822479248047,49.217037200927734],[24.363836288452205,49.23608398437506],[24.33820152282715,49.2876930236817],[24.378133773803768,49.31974411010747],[24.40570640563959,49.374641418457145],[24.361522674560604,49.431102752685604],[24.4040851593017,49.44550323486334],[24.38649177551281,49.50359344482416],[24.438755035400447,49.512584686279354],[24.477760314941463,49.55028915405273],[24.52636528015142,49.52350616455084],[24.560869216918885,49.5313339233399],[24.628137588501257,49.499610900878906],[24.709098815918026,49.49817657470709]]]},"properties":{"ID_0":240,"ISO":"UA-26","NAME_0":"Ukraine","ID_1":7,"NAME_1":"Ivano-Frankivs'k","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Ivano-Frankovsk|Ivano-Frankovskaya Oblast'|Stanislav"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[38.034046173095646,49.922767639160206],[38.074523925781534,49.88388824462902],[38.01675796508795,49.84527587890631],[38.04908370971708,49.81339645385753],[38.02692031860357,49.77840042114257],[37.982707977295206,49.786449432373104],[37.96036529541033,49.75129318237305],[38.03017044067411,49.73011016845709],[38.03192901611334,49.66997528076171],[37.95479583740229,49.63158035278326],[37.927326202392635,49.55492019653326],[37.88087081909191,49.54495620727539],[37.85425186157232,49.47439575195324],[37.894882202148544,49.436759948730526],[37.90278625488281,49.35277557373047],[37.961978912353686,49.32014846801769],[37.95837020874023,49.290454864501896],[37.8734397888183,49.25863647460948],[37.86023330688505,49.22346496582031],[37.78796768188505,49.22086715698242],[37.65601730346697,49.244777679443416],[37.5757102966308,49.24839782714838],[37.51813888549822,49.2153205871582],[37.56006240844721,49.189674377441406],[37.580749511718864,49.13523864746105],[37.49713134765648,49.109333038330135],[37.51095581054682,49.073062896728516],[37.392269134521484,49.05461883544922],[37.378086090088004,49.007724761963004],[37.30356597900419,48.98109817504883],[37.30861282348638,48.94524383544927],[37.2336502075197,48.912490844726676],[37.19310760498069,48.866428375244254],[37.146247863769645,48.84431076049816],[37.08410644531267,48.846424102783146],[37.06273269653343,48.811431884765625],[37.01837539672846,48.812847137451115],[36.98823928833002,48.77807235717779],[36.919158935546875,48.79797363281256],[36.686691284179744,48.77430725097662],[36.73249053955084,48.69573593139643],[36.734184265136776,48.618278503418026],[36.69025802612333,48.619319915771484],[36.608570098877,48.59138488769537],[36.47330856323242,48.65375518798834],[36.377109527588004,48.55446243286133],[36.258083343506144,48.59881591796875],[36.279933929443416,48.65200042724609],[36.22837829589849,48.665119171142635],[36.152812957763786,48.708644866943416],[36.15796279907237,48.77420425415045],[36.13344573974621,48.798656463623104],[36.03888702392595,48.830627441406364],[36.0051002502442,48.96881484985362],[35.843410491943644,48.93629837036133],[35.824035644531534,48.91278076171881],[35.72139739990257,48.96263122558605],[35.59692001342779,48.95303344726568],[35.517875671386946,48.96045303344738],[35.45847702026373,48.997375488281364],[35.21788024902372,49.097221374511776],[35.211250305175895,49.13317489624029],[35.061527252197315,49.13572692871094],[35.01331710815458,49.22005844116222],[35.02555084228515,49.27954101562499],[35.062992095947436,49.314769744873104],[35.114315032959155,49.28411102294922],[35.23751831054693,49.276084899902344],[35.32842254638672,49.316390991210994],[35.347961425781534,49.34595489501959],[35.412582397460994,49.38674545288097],[35.39746475219755,49.42884826660156],[35.345718383789176,49.45359039306651],[35.36602783203131,49.495121002197266],[35.507095336914006,49.47494125366211],[35.509410858154354,49.510810852050895],[35.43861007690435,49.517910003662166],[35.431957244873274,49.553909301757926],[35.512111663818644,49.55266189575207],[35.48064041137724,49.61899185180669],[35.430088043213175,49.66763687133795],[35.28816223144548,49.68166732788086],[35.29092407226568,49.729469299316406],[35.24636077880854,49.730091094970646],[35.22494888305663,49.82604980468756],[35.17304611206072,49.85661697387695],[35.092845916748104,49.857646942138786],[34.99600219726568,49.88268661499018],[34.90898132324235,49.93136978149414],[34.893161773681925,49.97327041625988],[34.93167495727545,50.026550292968864],[34.98709106445341,50.06180191040039],[34.9620361328125,50.09781646728521],[34.96434402465832,50.145481109619254],[35.01067733764677,50.18085098266601],[35.09195709228521,50.19805908203119],[35.18393325805681,50.24514007568371],[35.263664245605746,50.22068405151367],[35.32135772705095,50.29210662841797],[35.422080993652344,50.3213729858399],[35.50201416015631,50.29674911499035],[35.539249420166186,50.32036590576172],[35.62119293212908,50.33718109130865],[35.658256530761946,50.360183715820256],[35.73010635376005,50.35943603515625],[35.809940338134766,50.40177917480469],[35.833274841308764,50.450107574463004],[35.936752319335994,50.44561004638683],[35.97690582275408,50.46102523803711],[36.0739059448245,50.46371078491211],[36.15499877929699,50.44929885864269],[36.18258285522455,50.41435623168951],[36.28067398071289,50.359390258789176],[36.26884460449247,50.342308044433594],[36.31538772583008,50.29401397705078],[36.384288787842024,50.29599761962896],[36.42852783203119,50.32491683959966],[36.49313354492216,50.32691955566411],[36.558074951172046,50.28678894042969],[36.59706115722679,50.23817443847656],[36.660217285156534,50.22873687744151],[36.711212158203296,50.276859283447315],[36.87816619873052,50.33929443359381],[36.925628662109546,50.34740829467779],[37.05329132080101,50.334320068359425],[37.1670379638673,50.349414825439396],[37.29360961914068,50.38535308837902],[37.33602523803716,50.42089080810547],[37.40948104858404,50.410987854003906],[37.49312973022478,50.42899322509776],[37.48173522949247,50.353893280029354],[37.57415008544922,50.305255889892635],[37.646842956543026,50.30525207519525],[37.62530136108393,50.22102355957036],[37.65234375,50.176918029785156],[37.7604217529298,50.09633636474615],[37.93384170532232,50.04768371582036],[37.947795867920206,50.01959991455078],[38.04784774780279,49.95610427856457],[38.034046173095646,49.922767639160206]]]},"properties":{"ID_0":240,"ISO":"UA-63","NAME_0":"Ukraine","ID_1":8,"NAME_1":"Kharkiv","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Charkow|Jarkov|Karkov|Khar'kov"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[32.54875183105497,46.069305419921925],[32.7248611450197,46.037361145019645],[32.79735946655302,46.03236007690429],[32.86875152587896,46.05958175659191],[32.88791656494135,46.04236221313482],[33.03541564941406,46.02597045898437],[33.01708221435564,46.00680541992199],[32.91652679443354,46.011806488037166],[32.72069549560547,46.037082672119084],[32.54875183105497,46.069305419921925]]],[[[34.50018692016607,46.04038238525402],[34.5625801086428,46.04688262939464],[34.61413955688505,46.032535552978516],[34.618587493896655,46.08187484741222],[34.558979034423885,46.11584472656256],[34.519184112548764,46.05566024780279],[34.42665481567394,46.10229492187506],[34.32836151123064,46.0278892517091],[34.21107482910173,46.02893829345714],[34.07029724121111,46.04892349243164],[34.056884765625284,46.01227188110363],[34.04221725463867,46.04610061645508],[33.990180969238224,46.05530166625982],[33.97277069091825,46.08840560913086],[33.883033752441406,46.13815307617193],[33.82028198242187,46.15596771240246],[33.74657440185575,46.14308166503906],[33.65636825561529,46.18651199340826],[33.629108428955135,46.162303924560604],[33.62374877929716,46.110332489013615],[33.58819580078131,46.15930557250988],[33.53958511352556,46.11930465698242],[33.52180480957037,46.082084655761776],[33.4212493896486,46.03041839599615],[33.30791854858404,46.12069320678711],[33.22791671752947,46.15402603149414],[33.18458175659208,46.15597152709961],[33.13486099243181,46.12458419799816],[33.030693054199446,46.15597152709961],[33.01402664184576,46.10985946655279],[32.934307098388956,46.105693817138786],[32.76597213745134,46.121807098388665],[32.67402648925804,46.099304199218864],[32.62208175659208,46.102359771728516],[32.53958511352556,46.06569290161127],[32.23180389404314,46.13013839721691],[32.236251831054744,46.184307098388786],[32.18708419799822,46.17930603027344],[32.119026184082315,46.206527709961044],[32.08514022827154,46.242637634277344],[31.990417480468807,46.25569534301757],[31.94069480896013,46.29152679443365],[31.875694274902283,46.268196105957024],[31.78986167907715,46.27375030517578],[31.766250610351733,46.3079185485841],[31.83791732788092,46.33486175537121],[31.923194885254077,46.335971832275334],[32.00652694702154,46.35902786254894],[32.05930709838884,46.39791488647472],[32.02402877807634,46.44625091552746],[31.95125007629406,46.439304351806754],[31.813472747802734,46.477638244628906],[31.747360229492358,46.48819351196289],[31.699583053588977,46.467918395996094],[31.63263893127447,46.49069595336914],[31.5493049621582,46.53874969482427],[31.665138244629073,46.53680419921881],[31.755138397216854,46.546806335449325],[31.872360229492415,46.51374816894537],[31.898195266723917,46.51847076416015],[32.00958251953119,46.48819351196289],[32.11986160278326,46.49874877929698],[32.197360992431584,46.48014068603521],[32.312362670898494,46.46513748168945],[32.28736114501953,46.52763748168957],[32.29013824462901,46.57736206054687],[32.241527557373274,46.59097290039068],[32.14014053344721,46.5576400756837],[32.09652709960965,46.615139007568416],[32.051528930664176,46.61486053466808],[32.001716613769815,46.64069366455078],[32.10111236572294,46.67074966430664],[32.11126327514671,46.71717834472656],[32.179878234863565,46.744907379150334],[32.231960296630916,46.784709930420036],[32.2920875549317,46.806915283203175],[32.359390258789006,46.78218078613292],[32.39472198486345,46.822467803955135],[32.48016357421892,46.82644653320307],[32.547878265381144,46.807212829589844],[32.557731628418246,46.842105865478565],[32.70328140258795,46.83230972290039],[32.728023529052905,46.808174133300774],[32.840015411376946,46.81069564819347],[32.96179580688505,46.83047866821295],[32.94680023193387,46.877853393554744],[32.9748916625976,46.9239501953125],[32.96855163574247,46.976955413818416],[33.04574584960943,46.957035064697266],[33.090923309326456,46.996772766113224],[32.988555908203175,47.040946960449276],[32.929172515869425,47.07789611816406],[32.930038452148715,47.101356506347656],[32.98389816284208,47.14680099487305],[33.07177352905279,47.167766571044865],[33.125556945800895,47.207347869873104],[33.17827606201172,47.21755218505865],[33.10255813598661,47.29625320434575],[33.13809204101568,47.31288909912115],[33.14108657836942,47.40108108520508],[33.12623977661127,47.48385620117199],[33.093521118164176,47.56114959716791],[33.20701217651373,47.54058837890624],[33.223590850830135,47.51068878173834],[33.28516387939481,47.514865875244254],[33.29292297363287,47.48516082763677],[33.34464645385759,47.46007156372075],[33.372203826904524,47.494663238525504],[33.44251632690447,47.49848937988286],[33.48744201660173,47.52667999267578],[33.497764587402344,47.56774139404302],[33.58587265014677,47.57701492309575],[33.591125488281534,47.48810195922857],[33.64358901977545,47.4865379333496],[33.651100158691406,47.456707000732536],[33.808971405029354,47.469799041748104],[33.923320770263615,47.49026107788097],[33.973041534423885,47.43530654907238],[34.00723266601568,47.42241287231445],[34.147533416748104,47.448284149170036],[34.24863433837908,47.39193725585948],[34.27037429809593,47.31370162963867],[34.30923080444336,47.23489761352533],[34.48339080810575,47.266426086425895],[34.53163528442383,47.205314636230526],[34.48827362060552,47.200347900390625],[34.516986846923885,47.09759902954101],[34.55767822265625,47.05455780029291],[34.57160186767578,46.99406051635742],[34.603427886963175,46.9451255798341],[34.68723678588884,46.901050567627],[34.75605010986334,46.89963531494152],[34.77814483642595,46.82668685913097],[34.82113265991228,46.825878143310604],[34.835613250732365,46.771148681640625],[34.78377914428711,46.766021728515625],[34.780609130859546,46.69931793212896],[34.67634963989252,46.67699050903332],[34.657527923583984,46.64079284667974],[34.699459075927905,46.61551284790045],[34.776737213134766,46.61413192749029],[34.78242492675787,46.54677963256836],[34.74663162231451,46.51049423217768],[34.78826522827177,46.47913742065435],[34.8745307922365,46.4966278076173],[34.92296981811517,46.42885589599615],[34.974544525146534,46.44103240966796],[35.07524871826183,46.41081619262701],[35.09714508056668,46.32690811157232],[35.088748931884936,46.28757095336914],[35.009029388427905,46.25541687011719],[34.895416259765796,46.238471984863274],[34.847915649414006,46.21430587768555],[34.80930709838884,46.157638549804744],[34.82902908325201,46.1234703063966],[34.839305877685604,46.05289459228521],[34.795230865478516,46.072448730468864],[34.69904327392584,46.09243774414074],[34.653778076172046,46.07901000976562],[34.66382980346685,46.01050567626953],[34.602302551269524,45.948871612548885],[34.52196502685564,45.93108367919933],[34.458526611328175,45.97988128662114],[34.46310424804693,46.02116394042963],[34.50018692016607,46.04038238525402]]]]},"properties":{"ID_0":240,"ISO":"UA-65","NAME_0":"Ukraine","ID_1":9,"NAME_1":"Kherson","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Cherson|Khersons'ka Oblast'"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.197437286376893,50.566642761230526],[27.209735870361385,50.53729248046881],[27.307903289794922,50.49361801147461],[27.251758575439567,50.39575195312505],[27.32988929748541,50.36318588256835],[27.332168579101673,50.33941268920904],[27.40911865234375,50.31872558593756],[27.413034439086967,50.27713775634771],[27.48057174682623,50.2560768127442],[27.511301040649528,50.22753906250006],[27.592605590820312,50.26069259643566],[27.596895217895565,50.2131919860841],[27.686681747436637,50.151344299316406],[27.62352180480957,50.12491989135736],[27.627212524414176,50.083377838134766],[27.684650421142805,50.06787872314459],[27.615432739257756,50.00547790527343],[27.549833297729492,50.00871276855469],[27.572650909423828,49.962028503418026],[27.538688659668022,49.92490005493164],[27.550081253051758,49.90156555175787],[27.61606788635271,49.89240646362299],[27.652658462524528,49.79278182983404],[27.728277206421012,49.7780494689942],[27.824869155883903,49.734382629394474],[27.81855583190918,49.6984481811524],[27.763044357299805,49.69620895385742],[27.775758743286133,49.65510559082031],[27.82344436645525,49.63919067382824],[27.772428512573242,49.58364105224615],[27.79575920104986,49.525157928466854],[27.75162887573248,49.499610900878906],[27.79331779479992,49.441886901855526],[27.870355606079098,49.28459548950195],[27.869831085205078,49.171787261963004],[27.803962707519588,49.19297027587896],[27.752773284912166,49.143489837646534],[27.697929382324272,49.14130783081055],[27.659463882446346,49.16348266601574],[27.60460662841797,49.161251068115284],[27.571474075317383,49.11840057373052],[27.50658416748047,49.1275749206543],[27.493801116943473,49.06187820434576],[27.43003845214838,49.05922317504894],[27.39012145996122,48.99244689941406],[27.41987037658697,48.96410751342768],[27.38658905029297,48.92724609375],[27.419164657592773,48.863578796386776],[27.405448913574386,48.80985641479492],[27.417779922485405,48.76902008056652],[27.406255722045955,48.685844421386776],[27.374431610107536,48.63139343261719],[27.31411170959484,48.599334716796875],[27.27615737915067,48.62720870971691],[27.23247528076172,48.61349105834972],[27.227418899536186,48.566162109375],[27.15440750122093,48.586490631103516],[27.104028701782283,48.55498123168939],[27.005056381225586,48.573749542236385],[26.934822082519585,48.57596969604492],[26.90369033813488,48.545246124267514],[26.803565979003963,48.56860733032232],[26.71844482421875,48.52861022949219],[26.723920822143555,48.486755371093864],[26.651996612548828,48.48396301269531],[26.620014190673885,48.45283889770513],[26.555419921875053,48.46259307861328],[26.510892868041992,48.52648162841796],[26.437473297119197,48.53564071655279],[26.373043060302848,48.54512405395508],[26.33403587341303,48.56734848022472],[26.327968597412166,48.61445999145519],[26.238733291626087,48.676059722900504],[26.24568557739275,48.76509094238281],[26.217515945434627,48.84682846069336],[26.198017120361328,48.85786819458002],[26.19213294982916,48.98199844360363],[26.207441329956055,49.00634384155279],[26.180238723754883,49.08222961425792],[26.206895828247184,49.16637039184576],[26.19026374816906,49.23088073730468],[26.240779876708984,49.2686538696289],[26.217823028564396,49.30918502807617],[26.21343040466337,49.427661895752],[26.19892501831066,49.4745140075683],[26.140752792358455,49.50164031982433],[26.14718818664562,49.52567291259777],[26.20782089233404,49.558029174804744],[26.193998336792106,49.5989990234375],[26.254074096679744,49.637287139892635],[26.248132705688477,49.690509796142635],[26.20883750915533,49.71254730224614],[26.241540908813533,49.749660491943416],[26.16606903076172,49.847393035888615],[26.191640853881893,49.86637878417963],[26.14958763122553,49.91208648681646],[26.142301559448356,49.97721862792969],[26.204744338989315,49.997882843017514],[26.193593978882117,50.09860610961914],[26.248901367187557,50.10109710693365],[26.22198295593267,50.177337646484375],[26.285934448242244,50.18618011474621],[26.380435943603572,50.255985260009766],[26.49134826660162,50.26093673706055],[26.628789901733622,50.368461608886776],[26.647951126098633,50.36335754394536],[26.76735496521007,50.47015762329101],[26.78223991394054,50.50664520263683],[26.89081192016624,50.54134368896495],[26.9950790405274,50.528030395507756],[27.0200214385988,50.558994293213004],[27.12903785705572,50.59359359741211],[27.141363143921012,50.56425094604497],[27.197437286376893,50.566642761230526]]]},"properties":{"ID_0":240,"ISO":"UA-68","NAME_0":"Ukraine","ID_1":10,"NAME_1":"Khmel'nyts'kyy","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Khmelnitsky|Khmelnytskyi|Chmelnizkij|Hmelnicki|Kamenets-Podol'skaya Oblast'|Khmel'nyts'ka Oblast'"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.46630477905273,50.587009429931754],[30.505210876465128,50.54578399658203],[30.561292648315373,50.53395462036138],[30.66333198547369,50.53384017944347],[30.708208084106726,50.569053649902344],[30.801263809204155,50.56889343261719],[30.803293228149414,50.521846771240234],[30.748510360717997,50.49843597412121],[30.760301589965934,50.439609527588004],[30.807470321655558,50.42187118530284],[30.808670043945597,50.39245986938488],[30.69955825805681,50.33974838256836],[30.65276336669922,50.351581573486385],[30.617002487182784,50.322223663330135],[30.675188064575252,50.25745391845709],[30.63043022155767,50.222229003906364],[30.55509757995628,50.257595062255916],[30.54306983947748,50.322292327880966],[30.51536941528326,50.322307586670036],[30.343509674072322,50.4577255249024],[30.28989982604997,50.42828369140619],[30.243902206420838,50.434139251708984],[30.27663230896019,50.51664733886719],[30.33826065063488,50.569595336914176],[30.392265319824446,50.59302902221679],[30.46630477905273,50.587009429931754]]]},"properties":{"ID_0":240,"ISO":"UA-30","NAME_0":"Ukraine","ID_1":11,"NAME_1":"Kiev City","TYPE_1":"Independent City","ENGTYPE_1":"Independent City","NL_NAME_1":null,"VARNAME_1":"Kyiv"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.535083770752237,51.269706726074276],[30.509107589721733,51.24024581909185],[30.519046783447553,51.198616027832145],[30.474897384643725,51.17552185058605],[30.513940811157227,51.11018753051763],[30.489318847656307,51.05150985717768],[30.50899505615257,51.02790451049805],[30.58318519592285,51.02769088745117],[30.640617370605526,50.99821472167968],[30.642480850219897,50.96296310424816],[30.682821273803878,50.90413665771496],[30.768627166748043,50.86872482299815],[30.74406814575218,50.79824447631836],[30.848503112793196,50.76278305053711],[31.05442619323736,50.76210403442394],[31.12895584106451,50.773506164550724],[31.139301300049112,50.74995040893549],[31.22624969482439,50.68486022949219],[31.210729598999134,50.59677124023443],[31.26901245117187,50.53180313110351],[31.38113212585449,50.53120803833008],[31.46640586853033,50.48960876464849],[31.540285110473633,50.52450561523443],[31.63425636291515,50.50636291503912],[31.708114624023494,50.55301284790045],[31.80188941955595,50.54661941528332],[31.8010196685791,50.59367370605469],[31.847497940063587,50.61694717407232],[31.960680007934567,50.575153350830135],[31.99873542785673,50.5278892517091],[32.082950592041186,50.52741241455089],[32.08327102661161,50.492122650146484],[32.0274353027346,50.46891403198248],[32.05611038208013,50.39818191528331],[32.112380981445426,50.35080718994152],[32.1776771545413,50.32690048217768],[32.159324645996264,50.2799644470216],[32.12226104736356,50.262542724609375],[32.14112854003912,50.2095108032226],[32.085624694824276,50.186321258545036],[32.02995300292997,50.19252777099604],[31.993612289428764,50.104553222656364],[31.938373565674,50.075477600097656],[31.929729461670203,50.01086044311518],[31.948686599731502,49.951961517333984],[31.838191986084098,49.940837860107536],[31.747289657592944,49.84141159057622],[31.646163940429744,49.84196853637701],[31.581546783447262,49.85995864868175],[31.499031066894702,49.84866333007812],[31.461730957031303,49.87826156616222],[31.451616287231502,49.92533874511718],[31.46909523010248,49.972270965576286],[31.43187713623064,49.990108489990234],[31.321590423584038,49.97891616821295],[31.397157669067663,49.89035797119152],[31.323888778686694,49.87896347045904],[31.223794937133903,49.83825683593756],[31.215892791748047,49.78538131713878],[31.23546600341803,49.73239517211914],[31.227516174316687,49.67952346801769],[31.156412124633846,49.59164810180664],[31.175483703613395,49.556312561035206],[31.13013076782232,49.544734954833984],[31.095333099365405,49.47434616088867],[31.03214454650896,49.4510612487793],[31.032878875732706,49.421680450439396],[30.95128059387224,49.41018295288097],[30.943578720092773,49.357337951660156],[30.862277984619137,49.33993530273449],[30.78943061828619,49.34597778320318],[30.72637367248529,49.32847976684575],[30.679853439331108,49.363796234130916],[30.63441658020031,49.36386108398443],[30.562925338745345,49.328693389892635],[30.480152130127237,49.35808944702154],[30.35655021667503,49.26395797729492],[30.20206642150896,49.280849456787166],[30.18191528320341,49.33356094360345],[30.111040115356563,49.29779052734369],[30.09181404113787,49.32699584960937],[29.992483139038367,49.33196258544922],[29.96625328063965,49.314067840576286],[29.97719192504894,49.267189025878956],[29.951723098754936,49.231681823730526],[29.774694442748963,49.1883277893067],[29.74568748474132,49.24075317382824],[29.656057357788026,49.25684356689453],[29.617633819580362,49.32075500488287],[29.554855346679854,49.3312606811524],[29.516794204711914,49.38338851928711],[29.611511230468917,49.45588302612304],[29.575347900390852,49.46693801879883],[29.562364578247067,49.554946899414055],[29.51523590087896,49.6069717407226],[29.55854415893549,49.637287139892635],[29.512737274170203,49.65991973876959],[29.51918220520048,49.71306228637706],[29.47439384460472,49.712135314941406],[29.47995758056646,49.782966613769645],[29.531251907348803,49.83704757690441],[29.558980941772404,49.81990051269531],[29.637956619262923,49.856719970703175],[29.697420120239258,49.928451538085994],[29.74953269958513,49.96464920043956],[29.702947616577433,50.005165100097706],[29.717708587646538,50.07614898681651],[29.68048286438011,50.10505294799816],[29.67643737792991,50.19349670410156],[29.71052360534691,50.235336303710994],[29.690628051757756,50.27636718750006],[29.715202331543253,50.32987976074219],[29.669845581054627,50.335128784179744],[29.65885925292974,50.376335144043026],[29.61278915405279,50.39337158203119],[29.592920303344783,50.42855453491222],[29.51876831054699,50.45695495605469],[29.52475166320818,50.516265869140625],[29.487649917602766,50.527503967285156],[29.519617080688644,50.61101150512701],[29.497741699219034,50.67592620849615],[29.596563339233565,50.70709991455089],[29.6030731201173,50.75470352172863],[29.50939941406278,50.79495239257818],[29.531723022461218,50.88459396362315],[29.47286033630377,50.94931030273449],[29.489414215088114,50.979434967041016],[29.485841751098803,51.03921890258795],[29.520395278930835,51.075645446777344],[29.415054321289233,51.1463508605957],[29.311130523681925,51.192958831787166],[29.289331436157507,51.24718856811535],[29.304931640625284,51.29027938842785],[29.35999679565424,51.2912635803222],[29.402633666992354,51.34106445312505],[29.400138854980412,51.37801742553722],[29.36211013793962,51.396415710449325],[29.41283226013212,51.4303436279298],[29.508380889892525,51.41236114501958],[29.52274513244652,51.49296951293951],[29.59288597106962,51.47500991821295],[29.72085762023943,51.52903747558593],[29.74454116821306,51.47873687744146],[29.78527450561552,51.44429016113292],[29.8860454559329,51.454864501953125],[29.93506431579618,51.48984909057617],[29.993101119995288,51.48344039916997],[30.019281387329382,51.517246246338004],[30.088544845581115,51.507198333740234],[30.201828002929854,51.50650024414057],[30.250274658203296,51.493740081787166],[30.348478317260742,51.432334899902344],[30.36124229431169,51.378646850585994],[30.328775405883846,51.3696060180664],[30.419364929199272,51.31264495849615],[30.464635848999023,51.31882476806635],[30.535083770752237,51.269706726074276]],[[30.46630477905273,50.587009429931754],[30.392265319824446,50.59302902221679],[30.33826065063488,50.569595336914176],[30.27663230896019,50.51664733886719],[30.243902206420838,50.434139251708984],[30.28989982604997,50.42828369140619],[30.343509674072322,50.4577255249024],[30.51536941528326,50.322307586670036],[30.54306983947748,50.322292327880966],[30.55509757995628,50.257595062255916],[30.63043022155767,50.222229003906364],[30.675188064575252,50.25745391845709],[30.617002487182784,50.322223663330135],[30.65276336669922,50.351581573486385],[30.69955825805681,50.33974838256836],[30.808670043945597,50.39245986938488],[30.807470321655558,50.42187118530284],[30.760301589965934,50.439609527588004],[30.748510360717997,50.49843597412121],[30.803293228149414,50.521846771240234],[30.801263809204155,50.56889343261719],[30.708208084106726,50.569053649902344],[30.66333198547369,50.53384017944347],[30.561292648315373,50.53395462036138],[30.505210876465128,50.54578399658203],[30.46630477905273,50.587009429931754]]]},"properties":{"ID_0":240,"ISO":"UA-32","NAME_0":"Ukraine","ID_1":12,"NAME_1":"Kiev","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Kiev Oblast|Kiew|Kijew|Kiiv|Kijev|Kiyev|Kyiv|Kyjiv|Kyyiv|Kyyivs'ka Oblast'"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.93502426147461,48.87374496459961],[33.91490173339844,48.814739227295036],[33.85862731933594,48.7445068359375],[33.823696136474666,48.76884078979492],[33.698677062988565,48.782875061035156],[33.64411926269537,48.76011657714838],[33.6252555847168,48.73083114624018],[33.6689071655274,48.69451904296874],[33.72260284423845,48.69355773925781],[33.76630783081083,48.663124084472706],[33.799739837646655,48.59728622436535],[33.70016479492193,48.557659149169915],[33.66504669189459,48.57609558105469],[33.61944198608427,48.54733276367193],[33.51154708862322,48.52567291259776],[33.51598358154325,48.37765884399414],[33.496185302734546,48.3129768371582],[33.52231216430687,48.294692993164176],[33.52970886230497,48.247200012207145],[33.56523132324236,48.24644470214855],[33.58163070678734,48.204650878906364],[33.51839065551752,48.17052459716808],[33.40197372436529,48.13759994506847],[33.330654144287394,48.1273307800294],[33.33866882324236,48.09763336181652],[33.1776504516601,48.04796600341797],[33.105724334716854,48.00820159912121],[33.06144332885742,48.00911331176758],[33.03403472900408,47.974338531494254],[33.017295837402344,48.015892028808594],[32.91946411132818,48.00016021728521],[32.86548614501959,47.9600181579591],[32.82147598266618,47.97259902954107],[32.72403717041044,47.96845245361334],[32.67008209228527,47.91651916503906],[32.70438766479492,47.85721969604503],[32.659458160400675,47.811054229736435],[32.58858108520525,47.788791656494084],[32.53583145141624,47.79550552368164],[32.43878173828142,47.77939224243175],[32.35968780517601,47.78635406494152],[32.31599426269537,47.81622314453125],[32.236782073974666,47.811344146728516],[32.21879577636747,47.75298309326183],[32.12222290039085,47.74818801879883],[32.10481262207031,47.783508300781364],[32.04340362548828,47.807537078857415],[31.964370727539176,47.802371978759766],[31.946825027466105,47.78493881225597],[31.850334167480636,47.77977371215832],[31.858884811401538,47.85591125488287],[31.885162353515682,47.89675903320318],[31.858610153198523,47.94971466064453],[31.761621475220014,47.956211090088004],[31.752449035644815,48.02077865600586],[31.805408477783143,48.02630996704101],[31.78749656677274,48.07921218872076],[31.725593566894702,48.079597473144524],[31.654518127441467,48.121086120605526],[31.610525131225526,48.092018127441406],[31.566295623779354,48.092277526855526],[31.486330032348686,48.122074127197266],[31.353786468506026,48.10523223876959],[31.33580017089849,48.12292861938488],[31.265230178833175,48.10572052001953],[31.25534248352051,48.164440155029354],[31.201910018921183,48.17646789550775],[31.165626525879077,48.21773147583019],[31.041090011596907,48.22427368164068],[31.015317916870174,48.18334197998046],[30.9358501434329,48.16029739379894],[30.83799743652349,48.160823822021534],[30.73023605346674,48.196586608886776],[30.686395645141655,48.167495727539006],[30.62423324584961,48.156097412109375],[30.552299499511776,48.17403793334972],[30.400552749634073,48.168647766113224],[30.37346267700201,48.18036270141613],[30.320903778076282,48.145236968994254],[30.063100814819503,48.15607070922857],[29.95393753051752,48.25450134277344],[29.911380767822546,48.21339797973633],[29.866865158081225,48.23045730590826],[29.787736892700476,48.235431671142635],[29.79258728027366,48.34023666381836],[29.8081188201906,48.392887115478516],[29.893878936767745,48.45222091674805],[29.981405258178995,48.47642135620117],[29.980772018432674,48.493942260742244],[30.123943328857422,48.465835571289055],[30.176088333129993,48.50710296630865],[30.239219665527514,48.489910125732536],[30.2653064727786,48.5134162902832],[30.38119888305681,48.53123855590826],[30.415475845336854,48.58392715454113],[30.586374282836854,48.572029113769645],[30.585378646850586,48.60717391967779],[30.548803329467997,48.63066101074219],[30.61063575744646,48.665721893310604],[30.626924514770565,48.7243003845216],[30.679840087890625,48.75938034057622],[30.832527160644812,48.75901794433594],[30.89578247070318,48.741222381591854],[30.949075698852596,48.76449584960932],[31.056867599487305,48.758193969726676],[31.120323181152628,48.72269439697277],[31.200349807739197,48.75750732421875],[31.26303863525402,48.7630386352539],[31.33510971069336,48.74501800537121],[31.353410720825252,48.72143173217785],[31.50523948669428,48.779277801513615],[31.5856876373291,48.81992340087896],[31.575876235962202,48.896324157714844],[31.665918350219837,48.90167999267578],[31.719800949096793,48.924861907958984],[31.836971282959038,48.93002319335949],[31.945241928100696,48.8940162658692],[32.026294708252124,48.89339065551758],[32.05330276489286,48.910804748535156],[32.134361267090014,48.88661193847656],[32.17946624755865,48.92736053466808],[32.161472320556925,48.95103454589838],[32.233745574951456,48.99743270874035],[32.26097488403326,49.044235229492244],[32.297206878662166,49.06743240356457],[32.36950302124029,49.06087112426758],[32.44146728515625,49.00720214843756],[32.46869277954124,49.02457809448242],[32.54049301147455,48.97084426879883],[32.54902267456083,48.91777420043945],[32.61239242553722,48.9406089782716],[32.70254135131859,48.933662414550895],[32.856285095215014,48.9553260803222],[32.857730865478686,49.04962158203136],[32.912380218506144,49.07252502441417],[32.912761688232706,49.09610748291021],[32.8314590454101,49.10888671875006],[32.77760314941412,49.14488220214844],[32.878444671631144,49.220344543457145],[32.93270111084013,49.20791625976574],[33.014457702636776,49.212833404541016],[33.01392745971697,49.18333816528325],[33.16741943359381,49.151870727539176],[33.19382476806668,49.11608505249035],[33.20170974731451,49.062816619873104],[33.264854431152514,49.05602645874035],[33.248260498047046,49.12125396728521],[33.284877777099894,49.13848114013683],[33.33802795410185,49.090454101562614],[33.310188293457145,49.061294555664055],[33.36336898803727,49.01913452148431],[33.33554840087919,48.98998641967784],[33.352108001709155,48.930614471435604],[33.43258285522478,48.90570449829112],[33.469425201416016,48.934700012207024],[33.50446319580084,48.898628234863274],[33.56764221191435,48.90352630615246],[33.639240264892805,48.8905143737793],[33.694900512695426,48.94292068481457],[33.765853881836044,48.912120819091854],[33.828723907470646,48.91108322143549],[33.93502426147461,48.87374496459961]]]},"properties":{"ID_0":240,"ISO":"UA-35","NAME_0":"Ukraine","ID_1":13,"NAME_1":"Kirovohrad","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Kirovograd|Kirovogradskaya Oblast'"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.11369132995617,50.30974960327148],[25.209199905395508,50.284793853759766],[25.169778823852596,50.22917175292969],[25.20239830017084,50.18912124633795],[25.201953887939567,50.11767578125006],[25.335626602172795,50.005302429199276],[25.403366088867415,49.97883605957037],[25.385288238525387,49.90074157714844],[25.344669342041012,49.85723876953125],[25.266178131103572,49.82376861572271],[25.20234107971191,49.820629119873104],[25.163627624511776,49.83650207519537],[25.064998626709098,49.81959915161133],[25.072673797607422,49.7606658935548],[25.051620483398434,49.71212768554687],[24.994888305664176,49.72693252563482],[24.937538146972656,49.61127090454096],[24.865409851074332,49.60735321044916],[24.761655807495117,49.57202911376964],[24.707088470459208,49.574897766113395],[24.709098815918026,49.49817657470709],[24.628137588501257,49.499610900878906],[24.560869216918885,49.5313339233399],[24.52636528015142,49.52350616455084],[24.477760314941463,49.55028915405273],[24.438755035400447,49.512584686279354],[24.38649177551281,49.50359344482416],[24.4040851593017,49.44550323486334],[24.361522674560604,49.431102752685604],[24.40570640563959,49.374641418457145],[24.378133773803768,49.31974411010747],[24.33820152282715,49.2876930236817],[24.363836288452205,49.23608398437506],[24.43822479248047,49.217037200927734],[24.379739761352766,49.18979644775402],[24.283136367797965,49.177700042724716],[24.23346900939947,49.15073013305669],[24.127033233642575,49.1434211730957],[24.05429077148437,49.15007400512689],[24.023361206054688,49.11824035644537],[23.965644836425838,49.14355850219738],[23.908252716064453,49.10962677001959],[23.791460037231445,49.1123504638673],[23.744485855102653,49.126380920410156],[23.669857025146484,49.090900421142685],[23.674638748169002,49.061714172363274],[23.59451293945324,49.00811767578125],[23.54796409606928,48.91582107543957],[23.560642242431925,48.89317321777349],[23.545328140258846,48.82689666748047],[23.561981201171875,48.78090667724604],[23.544797897339095,48.7261962890625],[23.475126266479492,48.72040939331055],[23.375286102295036,48.73595428466797],[23.3615398406983,48.764484405517635],[23.291826248169002,48.7588996887207],[23.184305191040153,48.76828384399414],[23.179233551025334,48.79752731323248],[23.12454223632824,48.858543395996094],[22.978166580200195,48.842002868652344],[22.96252822875988,48.88234710693371],[22.898220062256144,48.91359710693371],[22.884773254394812,48.94828033447271],[22.920421600341797,48.98009490966797],[22.897964477539176,49.01430511474621],[22.855985641479435,49.11095046997082],[22.7972030639649,49.157711029052734],[22.755945205688416,49.1543083190918],[22.747234344482422,49.24031448364258],[22.80492019653326,49.28842163085949],[22.807594299316577,49.33349227905279],[22.722591400146595,49.40798568725585],[22.697177886962947,49.44475936889642],[22.70001792907715,49.49433135986334],[22.667398452758903,49.526767730712834],[22.67659378051769,49.56715011596691],[22.763273239135856,49.63257598876953],[22.79437255859386,49.690410614013786],[22.894729614257926,49.74633789062506],[22.910812377929684,49.78199386596679],[23.01267433166498,49.855819702148494],[23.137826919555664,49.96044158935547],[23.220201492309737,50.043682098388665],[23.2777996063233,50.06897354125987],[23.293975830078125,50.10005569458013],[23.410123825073242,50.15952301025402],[23.52131462097168,50.241603851318466],[23.601013183593864,50.27500915527349],[23.60977554321289,50.297271728515625],[23.697729110717773,50.343864440918026],[23.71502113342285,50.383872985839844],[23.809520721435604,50.421123504638615],[23.942411422729435,50.41172790527343],[24.04377365112333,50.444004058838004],[24.06803131103538,50.479183197021534],[24.102453231811523,50.62680435180664],[24.08992958068859,50.64473724365246],[24.14743804931669,50.66119003295904],[24.22467994689947,50.624698638916016],[24.236902236938533,50.60185241699212],[24.31204223632841,50.589714050293026],[24.336330413818416,50.615451812744254],[24.420810699462947,50.603572845459034],[24.40557861328125,50.57855606079107],[24.455068588256946,50.55205154418951],[24.508424758911303,50.567584991455185],[24.552591323852596,50.510623931884766],[24.589962005615234,50.50701522827148],[24.589906692504883,50.43532562255871],[24.715709686279354,50.389255523681754],[24.71109008789074,50.35319900512707],[24.785863876342773,50.34562683105474],[24.829456329345817,50.366001129150334],[24.931875228881893,50.359756469726676],[24.955739974975696,50.39089202880854],[25.04793357849121,50.318256378173885],[25.11369132995617,50.30974960327148]]]},"properties":{"ID_0":240,"ISO":"UA-46","NAME_0":"Ukraine","ID_1":14,"NAME_1":"L'viv","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Lemberg|Llvov|L'vov|Lwow|L'vivs'ka Oblast'"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[39.060066223144815,47.86254119873047],[39.07302093505888,47.94686508178722],[39.0407142639163,47.9600181579591],[39.039722442627,48.007263183593864],[38.821304321289006,48.01867294311523],[38.79998397827177,48.120742797851676],[38.652290344238395,48.14653778076172],[38.58506011962896,48.1739120483399],[38.58978271484392,48.20933151245128],[38.54523086547868,48.27121734619152],[38.404293060302905,48.27282333374035],[38.411113739013786,48.326011657714844],[38.47641754150418,48.35227584838867],[38.41868591308611,48.38510894775402],[38.41442108154325,48.42103576660156],[38.31008911132841,48.43840408325207],[38.26962661743181,48.470245361328125],[38.291011810302734,48.49890518188471],[38.221626281738224,48.65724182128912],[38.28744125366234,48.68362808227545],[38.294868469238224,48.74279403686535],[38.245258331298885,48.77513885498058],[38.27786254882841,48.821109771728516],[38.20962905883812,48.84845352172857],[38.2125244140625,48.94366455078125],[38.00749206542968,48.95398712158209],[38.08676910400402,49.015609741210994],[38.05686569213873,49.064807891845646],[38.08274078369169,49.129154205322266],[37.959014892578296,49.14716339111328],[37.90751647949236,49.167545318603565],[37.939350128174055,49.207782745361385],[37.8734397888183,49.25863647460948],[37.95837020874023,49.290454864501896],[37.961978912353686,49.32014846801769],[37.90278625488281,49.35277557373047],[37.894882202148544,49.436759948730526],[37.85425186157232,49.47439575195324],[37.88087081909191,49.54495620727539],[37.927326202392635,49.55492019653326],[37.95479583740229,49.63158035278326],[38.03192901611334,49.66997528076171],[38.03017044067411,49.73011016845709],[37.96036529541033,49.75129318237305],[37.982707977295206,49.786449432373104],[38.02692031860357,49.77840042114257],[38.04908370971708,49.81339645385753],[38.01675796508795,49.84527587890631],[38.074523925781534,49.88388824462902],[38.034046173095646,49.922767639160206],[38.08345794677757,49.951847076416065],[38.18107986450207,49.959136962890625],[38.19978713989252,50.0759391784668],[38.243923187255916,50.06501007080084],[38.33926010131852,50.08589935302746],[38.37343597412121,50.004013061523494],[38.424236297607706,49.9867324829101],[38.477542877197436,49.99921417236334],[38.5039901733399,49.96771621704113],[38.611801147460994,49.97761154174816],[38.69832229614286,49.955017089843864],[38.74046707153349,49.91405487060541],[38.84964752197271,49.87072753906261],[38.921077728271534,49.868854522705135],[38.93712234497099,49.81128311157232],[39.074851989746094,49.82051849365239],[39.171989440918026,49.879978179931754],[39.22240447998058,49.84978485107416],[39.26540374755865,49.76936340332037],[39.37724304199247,49.73956680297857],[39.452754974365405,49.7654762268067],[39.603275299072266,49.74347686767583],[39.59728622436535,49.707756042480526],[39.65687942504883,49.626773834228516],[39.719581604004134,49.616535186767635],[39.794551849365405,49.56964111328125],[39.91308593750017,49.56077194213867],[39.956905364990234,49.598426818847656],[40.06097412109381,49.608020782470646],[40.162017822265796,49.596160888671875],[40.20854568481451,49.56168746948242],[40.217403411865405,49.50698471069335],[40.1632843017581,49.45814895629883],[40.16217041015619,49.39949417114269],[40.2003250122072,49.27058029174816],[40.07600784301786,49.188034057617244],[40.03341674804681,49.18098831176758],[39.961120605468864,49.120456695556754],[39.93523406982439,49.06344223022472],[39.81470870971708,49.070476531982536],[39.74531555175786,49.04483795166027],[39.669868469238395,49.0479850769044],[39.70275497436552,49.00642395019537],[39.7483825683596,48.99270248413097],[39.829807281494084,48.888568878173764],[39.907817840576115,48.91241455078131],[39.99873352050798,48.87696075439459],[40.030433654785156,48.90999221801758],[40.078880310058594,48.91299819946289],[40.075561523437614,48.85575103759771],[39.99103927612304,48.80121231079096],[39.79698562622082,48.850021362304744],[39.780723571777514,48.79289627075201],[39.74145126342802,48.778667449951286],[39.708370208740234,48.65987777709955],[39.65682220459007,48.61847305297863],[39.68866729736334,48.59093093872076],[39.78369903564481,48.59314727783209],[39.85005187988287,48.57080078125006],[39.86975479125982,48.51975250244152],[39.851890563964844,48.47211074829107],[39.940765380859546,48.386775970458984],[39.93801498413086,48.36014938354498],[39.850292205810604,48.32209396362298],[39.916160583496264,48.30021286010742],[39.986366271972656,48.315490722656364],[40.014892578125284,48.266578674316456],[39.996429443359546,48.22307205200207],[39.94241714477545,48.217144012451286],[39.903888702392635,48.130447387695426],[39.81848526000982,48.00790023803722],[39.84791946411144,47.99254608154308],[39.81603622436552,47.945613861083984],[39.81665039062506,47.883056640625114],[39.72630310058622,47.829658508300895],[39.630027770996264,47.84035110473632],[39.52960205078148,47.8291511535645],[39.45601272583025,47.86181640625],[39.406459808349666,47.845550537109375],[39.379436492920206,47.87584686279308],[39.3161048889163,47.86280059814459],[39.225936889648494,47.86604690551752],[39.126213073730526,47.83968353271484],[39.060066223144815,47.86254119873047]]]},"properties":{"ID_0":240,"ISO":"UA-09","NAME_0":"Ukraine","ID_1":15,"NAME_1":"Luhans'k","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Luhansk|Lugansk|Luhans'ka Oblast'|Voroshilovgrad"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.03403472900408,47.974338531494254],[33.023490905762,47.90391159057622],[33.094032287597706,47.89653396606457],[33.0652618408206,47.80885314941412],[33.08195495605469,47.773178100585994],[33.071712493896655,47.72045516967785],[33.0101013183596,47.72182846069347],[32.9742965698245,47.6990966796875],[32.990818023681584,47.65759277343756],[32.98924255371111,47.59886932373058],[33.094047546387,47.578781127929744],[33.093521118164176,47.56114959716791],[33.12623977661127,47.48385620117199],[33.14108657836942,47.40108108520508],[33.13809204101568,47.31288909912115],[33.10255813598661,47.29625320434575],[33.17827606201172,47.21755218505865],[33.125556945800895,47.207347869873104],[33.07177352905279,47.167766571044865],[32.98389816284208,47.14680099487305],[32.930038452148715,47.101356506347656],[32.929172515869425,47.07789611816406],[32.988555908203175,47.040946960449276],[33.090923309326456,46.996772766113224],[33.04574584960943,46.957035064697266],[32.96855163574247,46.976955413818416],[32.9748916625976,46.9239501953125],[32.94680023193387,46.877853393554744],[32.96179580688505,46.83047866821295],[32.840015411376946,46.81069564819347],[32.728023529052905,46.808174133300774],[32.70328140258795,46.83230972290039],[32.557731628418246,46.842105865478565],[32.547878265381144,46.807212829589844],[32.48016357421892,46.82644653320307],[32.39472198486345,46.822467803955135],[32.359390258789006,46.78218078613292],[32.2920875549317,46.806915283203175],[32.231960296630916,46.784709930420036],[32.179878234863565,46.744907379150334],[32.11126327514671,46.71717834472656],[32.10111236572294,46.67074966430664],[32.001716613769815,46.64069366455078],[31.969305038452315,46.68069458007824],[31.97680473327642,46.7098617553712],[31.93902778625517,46.75069427490246],[31.96847152709972,46.86875152587902],[31.912639617920092,46.840694427490234],[31.872917175293022,46.76625061035162],[31.918193817138672,46.72541809082031],[31.88930511474615,46.63874816894542],[31.797916412353796,46.61041641235363],[31.654306411743335,46.64847183227545],[31.604860305786413,46.64541625976574],[31.5493049621582,46.59986114501953],[31.480972290039286,46.626525878906364],[31.373472213745284,46.623748779296875],[31.35236167907721,46.60124969482422],[31.20569229126005,46.6220817565918],[31.213542938232532,46.70423889160156],[31.198089599609432,46.826519012451286],[31.15362548828125,46.843765258789176],[31.055046081543026,46.919231414794865],[31.04524040222168,46.96606445312494],[31.142465591430888,46.977218627929744],[31.283805847168253,46.981346130371094],[31.2737522125247,47.02218246459972],[31.325895309448523,47.021915435791016],[31.32366752624529,47.08617401123058],[31.28632164001465,47.16816711425787],[31.156024932861385,47.15130996704113],[31.161434173584272,47.26234436035162],[31.021297454833928,47.239940643310604],[30.99355125427246,47.28685379028326],[30.92257499694841,47.28165817260742],[30.86811256408708,47.32876586914068],[30.91202163696306,47.35179519653332],[30.875602722168026,47.387138366699276],[30.89270401001005,47.41619873046869],[30.856397628784347,47.4457244873048],[30.8629741668704,47.53923797607422],[30.809028625488338,47.56304550170904],[30.744457244873274,47.651321411132926],[30.7098331451416,47.6105728149414],[30.638561248779354,47.61092376708996],[30.64654731750494,47.64605712890625],[30.451236724853516,47.62865829467779],[30.38844871521024,47.6521377563476],[30.35859870910673,47.75794982910167],[30.419618606567667,47.79910659790039],[30.382974624633842,47.83436203002941],[30.303152084350643,47.8284797668457],[30.290695190429858,47.94600296020508],[30.245470046997355,47.975330352783146],[30.235462188720643,48.016353607177734],[30.27764129638678,48.09835815429693],[30.33092117309576,48.10429763793945],[30.320903778076282,48.145236968994254],[30.37346267700201,48.18036270141613],[30.400552749634073,48.168647766113224],[30.552299499511776,48.17403793334972],[30.62423324584961,48.156097412109375],[30.686395645141655,48.167495727539006],[30.73023605346674,48.196586608886776],[30.83799743652349,48.160823822021534],[30.9358501434329,48.16029739379894],[31.015317916870174,48.18334197998046],[31.041090011596907,48.22427368164068],[31.165626525879077,48.21773147583019],[31.201910018921183,48.17646789550775],[31.25534248352051,48.164440155029354],[31.265230178833175,48.10572052001953],[31.33580017089849,48.12292861938488],[31.353786468506026,48.10523223876959],[31.486330032348686,48.122074127197266],[31.566295623779354,48.092277526855526],[31.610525131225526,48.092018127441406],[31.654518127441467,48.121086120605526],[31.725593566894702,48.079597473144524],[31.78749656677274,48.07921218872076],[31.805408477783143,48.02630996704101],[31.752449035644815,48.02077865600586],[31.761621475220014,47.956211090088004],[31.858610153198523,47.94971466064453],[31.885162353515682,47.89675903320318],[31.858884811401538,47.85591125488287],[31.850334167480636,47.77977371215832],[31.946825027466105,47.78493881225597],[31.964370727539176,47.802371978759766],[32.04340362548828,47.807537078857415],[32.10481262207031,47.783508300781364],[32.12222290039085,47.74818801879883],[32.21879577636747,47.75298309326183],[32.236782073974666,47.811344146728516],[32.31599426269537,47.81622314453125],[32.35968780517601,47.78635406494152],[32.43878173828142,47.77939224243175],[32.53583145141624,47.79550552368164],[32.58858108520525,47.788791656494084],[32.659458160400675,47.811054229736435],[32.70438766479492,47.85721969604503],[32.67008209228527,47.91651916503906],[32.72403717041044,47.96845245361334],[32.82147598266618,47.97259902954107],[32.86548614501959,47.9600181579591],[32.91946411132818,48.00016021728521],[33.017295837402344,48.015892028808594],[33.03403472900408,47.974338531494254]]]},"properties":{"ID_0":240,"ISO":"UA-48","NAME_0":"Ukraine","ID_1":16,"NAME_1":"Mykolayiv","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Mykolaiv|Nikolajew|Nikolayev"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.320903778076282,48.145236968994254],[30.33092117309576,48.10429763793945],[30.27764129638678,48.09835815429693],[30.235462188720643,48.016353607177734],[30.245470046997355,47.975330352783146],[30.290695190429858,47.94600296020508],[30.303152084350643,47.8284797668457],[30.382974624633842,47.83436203002941],[30.419618606567667,47.79910659790039],[30.35859870910673,47.75794982910167],[30.38844871521024,47.6521377563476],[30.451236724853516,47.62865829467779],[30.64654731750494,47.64605712890625],[30.638561248779354,47.61092376708996],[30.7098331451416,47.6105728149414],[30.744457244873274,47.651321411132926],[30.809028625488338,47.56304550170904],[30.8629741668704,47.53923797607422],[30.856397628784347,47.4457244873048],[30.89270401001005,47.41619873046869],[30.875602722168026,47.387138366699276],[30.91202163696306,47.35179519653332],[30.86811256408708,47.32876586914068],[30.92257499694841,47.28165817260742],[30.99355125427246,47.28685379028326],[31.021297454833928,47.239940643310604],[31.161434173584272,47.26234436035162],[31.156024932861385,47.15130996704113],[31.28632164001465,47.16816711425787],[31.32366752624529,47.08617401123058],[31.325895309448523,47.021915435791016],[31.2737522125247,47.02218246459972],[31.283805847168253,46.981346130371094],[31.142465591430888,46.977218627929744],[31.04524040222168,46.96606445312494],[31.055046081543026,46.919231414794865],[31.15362548828125,46.843765258789176],[31.198089599609432,46.826519012451286],[31.213542938232532,46.70423889160156],[31.20569229126005,46.6220817565918],[31.177917480468807,46.62791824340826],[31.028472900390792,46.60124969482422],[30.81986045837408,46.54930496215826],[30.780416488647745,46.55597305297857],[30.729305267334155,46.51097106933588],[30.77208328247076,46.44958496093749],[30.75236129760736,46.374584197998104],[30.679582595825476,46.32319259643549],[30.562915802002237,46.16291809082031],[30.513195037841967,46.12513732910156],[30.478195190429858,46.078193664550724],[30.356250762939453,45.987083435058594],[30.258472442627006,45.89347076416021],[30.141805648803995,45.82152938842785],[30.070138931274467,45.80097198486334],[30.003194808959904,45.849582672119254],[29.957916259765625,45.771526336670036],[29.907361984253154,45.75041580200189],[29.825138092041303,45.74847412109375],[29.788473129272628,45.730140686035156],[29.811805725097656,45.695137023925895],[29.882360458374077,45.67208480834961],[29.778472900390852,45.61958312988287],[29.694305419921875,45.56735992431652],[29.622360229492358,45.50236129760748],[29.665695190429688,45.47624969482422],[29.75541687011724,45.444583892822315],[29.76541709899902,45.32374954223633],[29.728195190429805,45.216526031494254],[29.672250747680717,45.22082138061529],[29.679269790649585,45.26947402954107],[29.652616500854606,45.3399887084962],[29.591152191162223,45.39025115966797],[29.431493759155334,45.44289398193359],[29.300466537475643,45.430423736572266],[29.25185012817377,45.43532562255865],[29.152366638183707,45.38882827758789],[29.045434951782397,45.36098480224621],[28.98411560058605,45.332027435302784],[28.926939010620117,45.282791137695426],[28.818828582763782,45.33630371093756],[28.79495048522949,45.29343414306646],[28.758417129516598,45.2895851135255],[28.782171249389645,45.237697601318466],[28.72042083740234,45.224594116211044],[28.634342193603572,45.24475860595709],[28.56250762939476,45.249835968017635],[28.351459503174055,45.32015228271496],[28.286964416504016,45.400089263916016],[28.288265228271655,45.43339920043957],[28.21631431579595,45.46890258789068],[28.26890945434576,45.53105545043957],[28.31025123596197,45.545608520507926],[28.40615463256836,45.51965713500976],[28.435531616210994,45.48762130737305],[28.516286849975586,45.505466461181754],[28.501026153564506,45.56753158569335],[28.547777175903434,45.583602905273544],[28.527603149414286,45.66470718383795],[28.496015548705998,45.67531585693371],[28.547887802123967,45.73716354370123],[28.60032272338867,45.73582077026373],[28.60572624206543,45.76879119873058],[28.71773147583036,45.79195785522472],[28.71186256408691,45.81926727294927],[28.790445327758786,45.846446990966854],[28.765075683593807,45.9222679138183],[28.79420471191406,45.97723388671886],[28.95420837402338,46.00539016723644],[28.988256454467884,46.02360916137695],[28.998229980468864,46.06908798217785],[28.957822799682614,46.10808181762695],[29.05764389038097,46.20111465454096],[28.948177337646595,46.277931213378906],[28.988731384277287,46.326114654541016],[28.934158325195423,46.46059036254888],[29.089458465576225,46.527896881103516],[29.15064239501964,46.52552413940441],[29.24220657348638,46.56333160400396],[29.234199523925724,46.42647552490228],[29.323440551758093,46.418483734130916],[29.31447792053228,46.471439361572266],[29.350307464599776,46.506347656250114],[29.40129852294939,46.4609489440918],[29.45276069641119,46.49721527099621],[29.50892257690458,46.464881896972706],[29.49858474731451,46.443611145019645],[29.560533523559624,46.408679962158196],[29.593429565429744,46.36433792114269],[29.680429458618164,46.36354064941406],[29.672697067260916,46.43879318237304],[29.73698043823248,46.434261322021484],[29.754188537597823,46.475189208984425],[29.829061508178654,46.38208389282237],[29.8855438232423,46.36441802978521],[29.94687271118175,46.40275192260742],[30.01037216186552,46.382404327392635],[30.074571609497355,46.40327453613287],[29.994220733642745,46.504665374755916],[29.946170806884766,46.501327514648494],[29.893777847290323,46.54370880126958],[29.953508377075135,46.563060760498104],[29.967193603515568,46.59309387207037],[29.9478378295899,46.65216064453125],[29.97286224365263,46.69187164306646],[29.979202270507923,46.763614654541016],[29.9401340484622,46.805942535400334],[29.971731185913033,46.82878875732422],[29.882858276367468,46.84547805786133],[29.873472213745398,46.88401031494152],[29.796070098876953,46.862777709960994],[29.74938583374046,46.86875915527355],[29.73460960388212,46.919685363769645],[29.653032302856506,46.92592620849615],[29.605106353759936,46.969490051269474],[29.619859695434855,47.1026611328125],[29.55227661132818,47.08037185668956],[29.51500129699718,47.13092422485363],[29.591196060180717,47.1418685913087],[29.56067657470709,47.24401473999035],[29.604446411132983,47.26347732543957],[29.589864730835075,47.366046905517635],[29.50361251831049,47.36467361450201],[29.49114227294939,47.31571960449219],[29.443269729614542,47.300262451171875],[29.392921447754073,47.319168090820305],[29.407575607299975,47.372066497802734],[29.339334487915153,47.383651733398494],[29.327384948730696,47.43841552734381],[29.251863479614254,47.42620468139642],[29.208099365234542,47.43986892700201],[29.194982528686577,47.48171234130865],[29.133705139160156,47.54899978637706],[29.201154708862248,47.57151794433593],[29.241861343383903,47.6399307250976],[29.222158432007003,47.72404861450201],[29.267744064331225,47.75804519653332],[29.24012756347673,47.79783630371105],[29.209272384643782,47.887516021728565],[29.188543319702262,47.99400711059582],[29.10967636108404,47.98391723632818],[29.076671600341854,47.9421157836914],[29.029029846191403,47.94888687133789],[28.989036560058654,47.97902297973633],[28.943750381469837,47.956123352050895],[28.855596542358395,48.03298568725586],[28.8568058013916,48.081050872802734],[28.956403732299915,48.09860992431652],[28.968315124511662,48.16617202758795],[29.04884529113781,48.14642715454096],[29.088787078857422,48.20978927612305],[29.169298171997127,48.165500640869084],[29.283134460449446,48.11899948120117],[29.396863937378097,48.12084960937506],[29.42242050170898,48.144077301025504],[29.501939773559627,48.12794494628911],[29.580926895141832,48.12885665893566],[29.606456756591967,48.152221679687614],[29.685415267944446,48.1530876159669],[29.68355178833013,48.205204010009766],[29.787736892700476,48.235431671142635],[29.866865158081225,48.23045730590826],[29.911380767822546,48.21339797973633],[29.95393753051752,48.25450134277344],[30.063100814819503,48.15607070922857],[30.320903778076282,48.145236968994254]]]},"properties":{"ID_0":240,"ISO":"UA-51","NAME_0":"Ukraine","ID_1":17,"NAME_1":"Odessa","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Odesa|Odes'ka Oblast'|Odesskaya Oblast'"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.96434402465832,50.145481109619254],[34.9620361328125,50.09781646728521],[34.98709106445341,50.06180191040039],[34.93167495727545,50.026550292968864],[34.893161773681925,49.97327041625988],[34.90898132324235,49.93136978149414],[34.99600219726568,49.88268661499018],[35.092845916748104,49.857646942138786],[35.17304611206072,49.85661697387695],[35.22494888305663,49.82604980468756],[35.24636077880854,49.730091094970646],[35.29092407226568,49.729469299316406],[35.28816223144548,49.68166732788086],[35.430088043213175,49.66763687133795],[35.48064041137724,49.61899185180669],[35.512111663818644,49.55266189575207],[35.431957244873274,49.553909301757926],[35.43861007690435,49.517910003662166],[35.509410858154354,49.510810852050895],[35.507095336914006,49.47494125366211],[35.36602783203131,49.495121002197266],[35.345718383789176,49.45359039306651],[35.39746475219755,49.42884826660156],[35.412582397460994,49.38674545288097],[35.347961425781534,49.34595489501959],[35.32842254638672,49.316390991210994],[35.23751831054693,49.276084899902344],[35.114315032959155,49.28411102294922],[35.062992095947436,49.314769744873104],[35.02555084228515,49.27954101562499],[35.01331710815458,49.22005844116222],[35.061527252197315,49.13572692871094],[35.009578704834155,49.154476165771484],[34.859672546386776,49.16875839233393],[34.78734207153332,49.14601516723644],[34.74958801269537,49.10486984252924],[34.62412261962919,49.08890914916992],[34.60361480712908,49.035617828369254],[34.4521026611331,49.03794097900396],[34.39632034301786,48.9911994934082],[34.38546752929693,48.94972229003906],[34.33734130859391,48.87314987182617],[34.37994766235345,48.83081054687506],[34.33381652832037,48.795871734619084],[34.367183685302905,48.74771499633795],[34.312240600586165,48.71294784545898],[34.25133132934599,48.74372100830078],[34.18061447143566,48.75681304931652],[34.15563583374018,48.798835754394474],[34.05889129638672,48.836090087890625],[33.99654006958036,48.84305572509777],[33.93502426147461,48.87374496459961],[33.828723907470646,48.91108322143549],[33.765853881836044,48.912120819091854],[33.694900512695426,48.94292068481457],[33.639240264892805,48.8905143737793],[33.56764221191435,48.90352630615246],[33.50446319580084,48.898628234863274],[33.469425201416016,48.934700012207024],[33.43258285522478,48.90570449829112],[33.352108001709155,48.930614471435604],[33.33554840087919,48.98998641967784],[33.36336898803727,49.01913452148431],[33.310188293457145,49.061294555664055],[33.33802795410185,49.090454101562614],[33.284877777099894,49.13848114013683],[33.248260498047046,49.12125396728521],[33.264854431152514,49.05602645874035],[33.20170974731451,49.062816619873104],[33.19382476806668,49.11608505249035],[33.16741943359381,49.151870727539176],[33.01392745971697,49.18333816528325],[33.014457702636776,49.212833404541016],[32.93270111084013,49.20791625976574],[32.878444671631144,49.220344543457145],[32.79652404785185,49.20360183715826],[32.76961135864275,49.22747802734375],[32.68786239624029,49.222476959228565],[32.54317092895502,49.28285217285162],[32.4889564514163,49.32458114624035],[32.51657485961937,49.37142181396479],[32.61651611328142,49.35279846191412],[32.689041137695305,49.328506469726506],[32.779987335205135,49.3275527954101],[32.7893905639649,49.35102844238281],[32.725971221923885,49.375263214111385],[32.7085571289063,49.44614410400402],[32.79150772094721,49.51603698730469],[32.79195404052762,49.55139923095709],[32.746677398681584,49.587188720703125],[32.756095886230746,49.61067199707037],[32.68338394165056,49.65847015380854],[32.601116180420206,49.67685699462896],[32.592510223388956,49.747592926025504],[32.46431732177751,49.80158996582031],[32.40018463134793,49.855026245117244],[32.45539093017578,49.860507965088004],[32.455699920654354,49.93700027465831],[32.382087707519474,49.99045562744146],[32.36368560791021,50.03174972534185],[32.31750106811552,50.02616500854492],[32.289691925049,50.12041473388683],[32.224838256836165,50.13845062255865],[32.150524139404354,50.18593597412115],[32.14112854003912,50.2095108032226],[32.12226104736356,50.262542724609375],[32.159324645996264,50.2799644470216],[32.1776771545413,50.32690048217768],[32.28001022338867,50.332168579101555],[32.35441207885748,50.40818405151367],[32.410350799560604,50.39020156860363],[32.503543853759766,50.38376235961914],[32.53132629394537,50.33654403686529],[32.596519470215014,50.342041015625114],[32.80129241943387,50.34077453613281],[32.89464569091797,50.36371994018549],[32.95119476318388,50.41046142578131],[33.05452346801752,50.45690155029297],[33.092609405517635,50.497882843017635],[33.17640304565424,50.48555374145519],[33.26973342895508,50.484916687011825],[33.28016662597662,50.531978607177734],[33.410072326660384,50.501632690429744],[33.465023040771655,50.46586608886719],[33.558101654052905,50.465202331543026],[33.59567260742193,50.47673797607422],[33.724868774414006,50.44628906250006],[33.8269691467288,50.445545196533146],[33.88370132446289,50.47468948364269],[33.87551498413086,50.50429534912115],[33.95926284790045,50.509632110595646],[33.99730300903349,50.53302383422857],[34.06946563720731,50.48522949218755],[34.162166595459155,50.49052810668957],[34.24656677246111,50.519596099853516],[34.282344818115234,50.49567794799816],[34.29748916626005,50.424446105957145],[34.42288589477556,50.358287811279354],[34.43894577026367,50.310646057128906],[34.49204254150408,50.274562835693416],[34.5376052856447,50.274196624755916],[34.54442596435575,50.226539611816406],[34.598667144775675,50.22011947631835],[34.596954345703125,50.18442535400396],[34.54132080078147,50.16112136840832],[34.602340698242244,50.10700225830084],[34.72861480712913,50.099887847900504],[34.73939514160173,50.135520935058594],[34.8392372131347,50.15251159667969],[34.96434402465832,50.145481109619254]]]},"properties":{"ID_0":240,"ISO":"UA-53","NAME_0":"Ukraine","ID_1":18,"NAME_1":"Poltava","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.67983627319336,51.524150848388615],[27.575523376464957,51.487445831298885],[27.611959457397404,51.417705535888786],[27.531883239746204,51.43684768676757],[27.488357543945426,51.392562866210994],[27.52998161315918,51.36487197875987],[27.48651504516607,51.32685089111328],[27.439956665039006,51.31879425048839],[27.468233108520447,51.23620986938482],[27.40552139282238,51.2036705017091],[27.364269256591854,51.14806365966808],[27.368713378906307,51.10631561279308],[27.327318191528317,51.050670623779354],[27.280321121215934,51.048690795898544],[27.20893287658697,51.00971221923834],[27.255706787109318,50.92190933227545],[27.2424259185791,50.86748504638683],[27.2608699798584,50.77853012084972],[27.285009384155387,50.72571945190441],[27.214817047119137,50.67494201660156],[27.22430801391613,50.579727172851506],[27.197437286376893,50.566642761230526],[27.141363143921012,50.56425094604497],[27.12903785705572,50.59359359741211],[27.0200214385988,50.558994293213004],[26.9950790405274,50.528030395507756],[26.89081192016624,50.54134368896495],[26.78223991394054,50.50664520263683],[26.76735496521007,50.47015762329101],[26.647951126098633,50.36335754394536],[26.628789901733622,50.368461608886776],[26.49134826660162,50.26093673706055],[26.380435943603572,50.255985260009766],[26.285934448242244,50.18618011474621],[26.22198295593267,50.177337646484375],[26.17321968078636,50.198966979980575],[26.15081787109375,50.233707427978565],[26.05449676513672,50.26507568359375],[26.021553039550835,50.227802276611385],[25.94369506835937,50.259990692138665],[25.89957618713407,50.24008560180675],[25.841131210327262,50.18376541137701],[25.674671173095703,50.182022094726676],[25.64063644409191,50.156608581543026],[25.583364486694336,50.17180252075206],[25.479404449462947,50.11331176757818],[25.403919219970817,50.05020904541027],[25.34045219421398,50.04120635986333],[25.335626602172795,50.005302429199276],[25.201953887939567,50.11767578125006],[25.20239830017084,50.18912124633795],[25.169778823852596,50.22917175292969],[25.209199905395508,50.284793853759766],[25.11369132995617,50.30974960327148],[25.16521835327148,50.34221267700195],[25.151695251464957,50.37732315063476],[25.206180572509936,50.38605880737304],[25.151548385620345,50.454944610595696],[25.154310226440543,50.5088768005371],[25.112436294555774,50.548583984375114],[25.185476303100586,50.558303833007926],[25.27132225036621,50.5386848449707],[25.324571609497013,50.55925369262695],[25.307615280151424,50.62423706054693],[25.374370574951286,50.60954284667969],[25.379426956176815,50.645698547363395],[25.422172546386662,50.6776962280274],[25.478347778320366,50.67439270019531],[25.61234664916998,50.72260284423828],[25.704931259155558,50.72687149047846],[25.729511260986442,50.674125671386825],[25.83336830139166,50.66092300415039],[25.876348495483455,50.6927947998048],[25.88356208801281,50.79485321044933],[25.916013717651595,50.838218688964844],[26.029384613037053,50.82533645629882],[25.99624633789074,50.87173843383794],[25.985681533813477,50.967109680175724],[26.06868362426775,50.97677612304699],[26.111915588378906,51.00865173339855],[26.107997894287106,51.04444122314459],[26.04759216308588,51.08377075195318],[25.963220596313704,51.08607864379882],[25.940015792846676,51.127090454101676],[26.033067703247127,51.13115692138671],[26.073776245117188,51.18698501586914],[26.01205062866211,51.23839187622082],[25.964141845703182,51.24832916259771],[25.930929183960014,51.29498672485357],[25.849679946899414,51.35159683227538],[25.855703353881836,51.381958007812436],[25.73224830627447,51.39453506469732],[25.672777175903377,51.42195510864258],[25.64515495300293,51.498935699463004],[25.576850891113395,51.51985931396478],[25.61464500427246,51.5997428894043],[25.5534343719483,51.63893508911144],[25.635120391845817,51.666748046875],[25.71754646301269,51.77671813964855],[25.656850814819393,51.8145866394044],[25.662410736083924,51.85477447509777],[25.733308792114197,51.908203125],[25.646942138671932,51.916259765625],[25.626155853271598,51.937751770019474],[25.80682945251476,51.93313980102539],[25.853982925415096,51.95707702636719],[25.961559295654354,51.92792510986334],[26.047897338867244,51.942348480224666],[26.116323471069393,51.92839813232433],[26.193557739257812,51.88095474243175],[26.3666286468507,51.87659454345703],[26.50222015380865,51.80929565429693],[26.57860565185541,51.82920455932623],[26.77853393554687,51.82604598999035],[26.826513290405217,51.771430969238224],[26.867322921752873,51.78101348876953],[26.98523139953619,51.76398086547857],[26.998472213745174,51.78162002563488],[27.193468093872127,51.78728485107422],[27.19928741455078,51.683742523193466],[27.262527465820426,51.65533828735362],[27.230190277099894,51.60236358642584],[27.349048614502063,51.62408447265631],[27.45764923095714,51.620014190673885],[27.55190467834478,51.642536163330185],[27.603197097778377,51.62089920043945],[27.71983909606939,51.6192131042481],[27.71465682983427,51.57267379760748],[27.668016433715877,51.55345535278326],[27.67983627319336,51.524150848388615]]]},"properties":{"ID_0":240,"ISO":"UA-56","NAME_0":"Ukraine","ID_1":19,"NAME_1":"Rivne","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Rovno|Rivnens'ka Oblast'|Rovenskaya Oblast'"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.57392501831072,44.83791732788097],[33.59279251098649,44.80184173583984],[33.66495895385748,44.78236389160156],[33.67987442016607,44.758396148681584],[33.613399505615405,44.742172241210994],[33.61883163452171,44.70058822631847],[33.72583389282249,44.70423889160162],[33.77341842651384,44.67374801635742],[33.75345993041998,44.62055969238292],[33.66891479492193,44.58584976196289],[33.6789131164553,44.54543304443371],[33.713996887206974,44.51655578613287],[33.797657012939624,44.497566223144474],[33.86188507080084,44.52409744262701],[33.92674636840831,44.429439544677734],[33.80236053466797,44.39420700073248],[33.798751831054744,44.39425277709972],[33.792907714844034,44.39152908325201],[33.72763824462913,44.39152908325201],[33.70430374145536,44.42152786254894],[33.6468048095706,44.42874908447265],[33.637084960937784,44.47041702270507],[33.595695495605746,44.49347305297845],[33.495971679687614,44.50263977050787],[33.40152740478543,44.55930709838867],[33.45652770996111,44.610137939453125],[33.53013992309593,44.61486053466808],[33.5476379394534,44.72874832153325],[33.53458404541021,44.791805267333984],[33.57392501831072,44.83791732788097]]]},"properties":{"ID_0":240,"ISO":"UA-40","NAME_0":"Ukraine","ID_1":20,"NAME_1":"Sevastopol'","TYPE_1":"Autonomous Republic","ENGTYPE_1":"Autonomous Republic","NL_NAME_1":null,"VARNAME_1":"Sebastopol"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.658256530761946,50.360183715820256],[35.62119293212908,50.33718109130865],[35.539249420166186,50.32036590576172],[35.50201416015631,50.29674911499035],[35.422080993652344,50.3213729858399],[35.32135772705095,50.29210662841797],[35.263664245605746,50.22068405151367],[35.18393325805681,50.24514007568371],[35.09195709228521,50.19805908203119],[35.01067733764677,50.18085098266601],[34.96434402465832,50.145481109619254],[34.8392372131347,50.15251159667969],[34.73939514160173,50.135520935058594],[34.72861480712913,50.099887847900504],[34.602340698242244,50.10700225830084],[34.54132080078147,50.16112136840832],[34.596954345703125,50.18442535400396],[34.598667144775675,50.22011947631835],[34.54442596435575,50.226539611816406],[34.5376052856447,50.274196624755916],[34.49204254150408,50.274562835693416],[34.43894577026367,50.310646057128906],[34.42288589477556,50.358287811279354],[34.29748916626005,50.424446105957145],[34.282344818115234,50.49567794799816],[34.24656677246111,50.519596099853516],[34.162166595459155,50.49052810668957],[34.06946563720731,50.48522949218755],[33.99730300903349,50.53302383422857],[33.95926284790045,50.509632110595646],[33.87551498413086,50.50429534912115],[33.88370132446289,50.47468948364269],[33.8269691467288,50.445545196533146],[33.724868774414006,50.44628906250006],[33.59567260742193,50.47673797607422],[33.558101654052905,50.465202331543026],[33.465023040771655,50.46586608886719],[33.410072326660384,50.501632690429744],[33.28016662597662,50.531978607177734],[33.26973342895508,50.484916687011825],[33.17640304565424,50.48555374145519],[33.092609405517635,50.497882843017635],[33.1216659545899,50.55068588256836],[33.13277435302763,50.6388931274414],[33.189365386963004,50.656192779541065],[33.171337127685604,50.69160079956055],[33.24740219116228,50.7382049560548],[33.20106506347684,50.76788330078131],[33.1935997009279,50.862026214599666],[33.241062164306584,50.87938308715826],[33.23291397094726,50.9382438659668],[33.08253479003906,50.97449111938476],[33.111625671387,51.01550292968761],[33.10277938842768,51.050884246826286],[32.98971176147478,51.09873580932623],[33.01863479614286,51.133872985839844],[32.990447998047095,51.16350173950195],[33.05735778808593,51.192504882812614],[33.08640670776384,51.2394256591798],[33.096660614013786,51.35724639892584],[33.14447784423845,51.36281204223633],[33.135166168213175,51.427761077880916],[33.154445648193644,51.480728149414176],[33.19276046752958,51.486362457275504],[33.221691131591854,51.56289672851568],[33.145328521728686,51.65199279785167],[33.18413925170921,51.68720245361334],[33.12702941894537,51.74084472656256],[33.117862701416186,51.77052688598644],[33.16719436645536,51.811744689941406],[33.16868209838873,51.865077972412166],[33.28780364990257,51.92345809936529],[33.394931793213175,51.916851043701286],[33.42752456665062,51.96378707885736],[33.341419219970874,51.999774932861385],[33.396900177001896,52.03231048583996],[33.44343185424799,52.01393890380865],[33.50878143310564,52.025146484375],[33.50841140747076,52.065841674804744],[33.45310211181658,52.07283401489269],[33.36208343505854,52.139640808105526],[33.32460021972662,52.14630889892584],[33.325595855713054,52.19298553466797],[33.38936233520513,52.260772705078175],[33.427616119384936,52.3442115783692],[33.530292510986385,52.34958267211919],[33.57121276855474,52.31460189819336],[33.6639938354495,52.32571411132807],[33.72587966918974,52.354530334472656],[33.832492828369425,52.349731445312614],[33.84355545043974,52.303688049316456],[33.92303466796869,52.30184936523449],[33.93422317504899,52.25913619995122],[33.99047851562522,52.23024368286127],[34.01820373535167,52.194107055664006],[34.114337921142635,52.13401031494152],[34.069179534912394,52.068988800048885],[34.09249496459972,52.015304565429744],[34.15698242187523,51.956703186035156],[34.1988258361817,51.946758270263786],[34.22565460205101,51.90607070922857],[34.265476226806925,51.908481597900334],[34.417987823486385,51.821269989013786],[34.39533996582048,51.782817840576165],[34.43217468261719,51.73873519897461],[34.40315628051786,51.720806121826165],[34.30647277832031,51.71761322021496],[34.2607727050784,51.6977157592774],[34.126987457275675,51.68684005737299],[34.09138488769537,51.663307189941406],[34.25180435180681,51.588607788085994],[34.269245147705135,51.55197143554693],[34.31819534301758,51.52880859375011],[34.30360794067411,51.491226196289176],[34.2613639831543,51.4633445739746],[34.22528076171881,51.399845123291016],[34.342140197753906,51.357769012451286],[34.270694732666186,51.259902954101555],[34.36447906494146,51.233085632324276],[34.4146347045899,51.26752090454107],[34.5171089172365,51.24675369262701],[34.6556549072265,51.248001098632926],[34.687877655029354,51.18821716308594],[34.81972122192411,51.176284790039176],[34.832130432128906,51.19934082031256],[34.97594833374052,51.236854553222656],[35.123470306396655,51.220962524414176],[35.129135131835994,51.15097808837885],[35.1955184936524,51.05895996093756],[35.281696319580355,51.067031860351676],[35.31283950805681,51.08671951293951],[35.4235687255861,51.05403518676758],[35.42578506469743,51.03333663940441],[35.35508728027361,50.9937629699707],[35.34387207031249,50.94857025146496],[35.40547561645536,50.93305587768549],[35.39562988281256,50.885238647461044],[35.426940917969034,50.86204528808593],[35.42802429199224,50.81504440307617],[35.49131774902344,50.77139663696295],[35.47220230102562,50.7377281188966],[35.50151443481445,50.688339233398494],[35.41648864746088,50.64061355590831],[35.41308593750017,50.58973693847661],[35.44765472412115,50.569770812988395],[35.4618949890139,50.52671813964844],[35.52958297729498,50.47529602050787],[35.582424163818416,50.466644287109375],[35.58817672729498,50.40303039550787],[35.658256530761946,50.360183715820256]]]},"properties":{"ID_0":240,"ISO":"UA-59","NAME_0":"Ukraine","ID_1":21,"NAME_1":"Sumy","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":null}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[26.22198295593267,50.177337646484375],[26.248901367187557,50.10109710693365],[26.193593978882117,50.09860610961914],[26.204744338989315,49.997882843017514],[26.142301559448356,49.97721862792969],[26.14958763122553,49.91208648681646],[26.191640853881893,49.86637878417963],[26.16606903076172,49.847393035888615],[26.241540908813533,49.749660491943416],[26.20883750915533,49.71254730224614],[26.248132705688477,49.690509796142635],[26.254074096679744,49.637287139892635],[26.193998336792106,49.5989990234375],[26.20782089233404,49.558029174804744],[26.14718818664562,49.52567291259777],[26.140752792358455,49.50164031982433],[26.19892501831066,49.4745140075683],[26.21343040466337,49.427661895752],[26.217823028564396,49.30918502807617],[26.240779876708984,49.2686538696289],[26.19026374816906,49.23088073730468],[26.206895828247184,49.16637039184576],[26.180238723754883,49.08222961425792],[26.207441329956055,49.00634384155279],[26.19213294982916,48.98199844360363],[26.198017120361328,48.85786819458002],[26.217515945434627,48.84682846069336],[26.24568557739275,48.76509094238281],[26.238733291626087,48.676059722900504],[26.327968597412166,48.61445999145519],[26.33403587341303,48.56734848022472],[26.373043060302848,48.54512405395508],[26.437473297119197,48.53564071655279],[26.359701156616268,48.50917053222656],[26.296056747436637,48.51285552978521],[26.28397560119646,48.53598785400402],[26.176998138427848,48.526359558105526],[26.146175384521484,48.554622650146484],[26.149723052978626,48.59591674804687],[25.96638870239269,48.61873245239258],[25.91664123535162,48.58759307861334],[25.851633071899414,48.60287475585943],[25.857351303100696,48.62656402587902],[25.788305282592887,48.671047210693416],[25.70867919921875,48.6622695922851],[25.625947952270508,48.67673110961914],[25.633951187133956,48.7474822998048],[25.545413970947322,48.80265808105469],[25.44144821166998,48.83940505981445],[25.42675781249994,48.879901885986385],[25.338346481323356,48.870143890380916],[25.278366088867127,48.791141510009766],[25.245668411254883,48.83073806762707],[25.221349716186523,48.93531036376959],[25.114767074585018,48.93022918701183],[25.095523834228626,48.99979782104492],[25.032554626464844,49.00255966186529],[24.901666641235465,49.0428733825683],[24.9503498077392,49.07483291625982],[24.970905303955135,49.11706161499035],[24.898210525512752,49.12508773803705],[24.836347579956165,49.18070983886719],[24.883520126342773,49.224407196045036],[24.82333946228033,49.26836395263683],[24.80844116210937,49.30883026123058],[24.83896064758295,49.34584808349621],[24.806293487548885,49.385398864746094],[24.760036468505803,49.39469528198248],[24.709098815918026,49.49817657470709],[24.707088470459208,49.574897766113395],[24.761655807495117,49.57202911376964],[24.865409851074332,49.60735321044916],[24.937538146972656,49.61127090454096],[24.994888305664176,49.72693252563482],[25.051620483398434,49.71212768554687],[25.072673797607422,49.7606658935548],[25.064998626709098,49.81959915161133],[25.163627624511776,49.83650207519537],[25.20234107971191,49.820629119873104],[25.266178131103572,49.82376861572271],[25.344669342041012,49.85723876953125],[25.385288238525387,49.90074157714844],[25.403366088867415,49.97883605957037],[25.335626602172795,50.005302429199276],[25.34045219421398,50.04120635986333],[25.403919219970817,50.05020904541027],[25.479404449462947,50.11331176757818],[25.583364486694336,50.17180252075206],[25.64063644409191,50.156608581543026],[25.674671173095703,50.182022094726676],[25.841131210327262,50.18376541137701],[25.89957618713407,50.24008560180675],[25.94369506835937,50.259990692138665],[26.021553039550835,50.227802276611385],[26.05449676513672,50.26507568359375],[26.15081787109375,50.233707427978565],[26.17321968078636,50.198966979980575],[26.22198295593267,50.177337646484375]]]},"properties":{"ID_0":240,"ISO":"UA-61","NAME_0":"Ukraine","ID_1":22,"NAME_1":"Ternopil'","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Ternopol|Ternopol'"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[22.897964477539176,49.01430511474621],[22.920421600341797,48.98009490966797],[22.884773254394812,48.94828033447271],[22.898220062256144,48.91359710693371],[22.96252822875988,48.88234710693371],[22.978166580200195,48.842002868652344],[23.12454223632824,48.858543395996094],[23.179233551025334,48.79752731323248],[23.184305191040153,48.76828384399414],[23.291826248169002,48.7588996887207],[23.3615398406983,48.764484405517635],[23.375286102295036,48.73595428466797],[23.475126266479492,48.72040939331055],[23.544797897339095,48.7261962890625],[23.6097354888916,48.70784759521478],[23.68357086181669,48.636913299560604],[23.761886596679684,48.64310836791992],[23.77847099304205,48.597167968750114],[23.838539123535156,48.55464935302746],[23.899440765380803,48.559371948242244],[23.894794464111385,48.4823455810548],[23.950822830200252,48.46309661865246],[23.995227813720703,48.51361465454101],[24.140714645386023,48.54211425781249],[24.141117095947436,48.43024826049804],[24.183500289916932,48.38628005981451],[24.265602111816403,48.36862945556646],[24.311510086059627,48.41301345825207],[24.35287094116211,48.374736785888615],[24.478391647338867,48.306903839111385],[24.47595977783203,48.26573944091796],[24.532066345214844,48.24598693847661],[24.496540069580135,48.19105911254877],[24.52041053771984,48.151790618896484],[24.598463058471733,48.10418701171875],[24.614669799804688,48.05851364135742],[24.566320419311523,48.03275680541992],[24.569614410400444,47.9683570861817],[24.503639221191406,47.952541351318416],[24.437505722046012,47.970767974853516],[24.383222579956055,47.92684555053722],[24.326524734497294,47.9261589050293],[24.2298965454101,47.89674377441412],[24.198307037353626,47.91632843017578],[24.114313125610465,47.91506958007818],[24.10022735595703,47.93677902221691],[24.010686874389588,47.967521667480526],[23.85262489318859,47.93717575073253],[23.817398071289062,47.982860565185604],[23.773448944091854,47.99521255493164],[23.664424896240348,47.98487854003911],[23.611959457397518,48.0083274841308],[23.527334213256946,48.00505828857422],[23.502691268920955,47.96896743774419],[23.340095520019645,48.018493652343864],[23.285804748535156,48.05069732666021],[23.270385742187553,48.087245941162216],[23.131910324096737,48.095947265625114],[23.11085319519043,48.03857803344732],[23.076185226440483,48.00891113281256],[23.015066146850756,47.99093246459972],[22.928621292114258,48.01944732666027],[22.94611358642578,47.969501495361385],[22.91534996032715,47.959701538085994],[22.84605216979992,47.98844909667969],[22.880443572998104,48.04105758666998],[22.825958251953125,48.11979293823248],[22.744882583618107,48.12332153320318],[22.67818832397461,48.09463882446295],[22.598482131958065,48.113285064697266],[22.592327117920036,48.15922927856445],[22.522434234619197,48.23725509643555],[22.44282722473167,48.253345489502],[22.37318992614757,48.238853454589844],[22.340681076049805,48.2997398376466],[22.219820022583008,48.427272796630916],[22.14834213256836,48.42738723754883],[22.173116683960075,48.566753387451286],[22.192974090576172,48.603633880615234],[22.23959541320812,48.62076568603521],[22.30209350585949,48.68261718750011],[22.354055404663143,48.69762802124035],[22.36919975280773,48.73836517333979],[22.346237182617188,48.77564239501959],[22.376668930053654,48.7932243347168],[22.38475990295421,48.8739128112793],[22.41339111328125,48.88808441162121],[22.422897338867188,48.93650054931652],[22.477964401245117,48.99813079833995],[22.54215812683111,49.00459671020508],[22.56094169616699,49.086154937744254],[22.60218048095703,49.09510421752941],[22.674457550048885,49.043586730957024],[22.797672271728572,49.04933929443365],[22.897964477539176,49.01430511474621]]]},"properties":{"ID_0":240,"ISO":"UA-21","NAME_0":"Ukraine","ID_1":23,"NAME_1":"Transcarpathia","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Transcarpathian|Zakarpattia|Ruthenia|Zakarpats'ka Oblast'|Zakarpatskaya Oblast'"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.512737274170203,49.65991973876959],[29.55854415893549,49.637287139892635],[29.51523590087896,49.6069717407226],[29.562364578247067,49.554946899414055],[29.575347900390852,49.46693801879883],[29.611511230468917,49.45588302612304],[29.516794204711914,49.38338851928711],[29.554855346679854,49.3312606811524],[29.617633819580362,49.32075500488287],[29.656057357788026,49.25684356689453],[29.74568748474132,49.24075317382824],[29.747997283935547,49.18792724609369],[29.662855148315483,49.104282379150504],[29.664943695068644,49.05736923217767],[29.711572647094954,49.005397796630916],[29.669904708862532,48.94600677490239],[29.75087165832542,48.91808319091797],[29.7437953948974,48.876945495605526],[29.780744552612585,48.84235763549816],[29.78249740600603,48.80139160156255],[29.881019592285323,48.77931213378912],[29.874048233032283,48.73240280151367],[29.928934097290206,48.692123413085994],[29.964702606201225,48.68667984008795],[30.01093482971208,48.64036560058594],[29.97668457031278,48.60494613647455],[30.030441284179915,48.593757629394645],[30.041431427002237,48.53537750244151],[29.980772018432674,48.493942260742244],[29.981405258178995,48.47642135620117],[29.893878936767745,48.45222091674805],[29.8081188201906,48.392887115478516],[29.79258728027366,48.34023666381836],[29.787736892700476,48.235431671142635],[29.68355178833013,48.205204010009766],[29.685415267944446,48.1530876159669],[29.606456756591967,48.152221679687614],[29.580926895141832,48.12885665893566],[29.501939773559627,48.12794494628911],[29.42242050170898,48.144077301025504],[29.396863937378097,48.12084960937506],[29.283134460449446,48.11899948120117],[29.169298171997127,48.165500640869084],[29.088787078857422,48.20978927612305],[29.04884529113781,48.14642715454096],[28.968315124511662,48.16617202758795],[28.956403732299915,48.09860992431652],[28.8568058013916,48.081050872802734],[28.854471206665153,48.12166976928711],[28.76025390625,48.13813781738281],[28.65558815002441,48.14526367187506],[28.577175140380973,48.172153472900504],[28.533090591430778,48.127086639404354],[28.44949340820324,48.0884399414063],[28.426366806030384,48.175773620605526],[28.381179809570593,48.175567626953125],[28.35423088073736,48.1369285583496],[28.31100845336914,48.15652084350597],[28.357660293579098,48.1850929260255],[28.37173271179205,48.22487640380871],[28.346273422241325,48.249347686767635],[28.21792984008789,48.20868682861339],[28.1886043548584,48.2554435729981],[28.107629776000977,48.234107971191406],[28.08337783813488,48.25343704223633],[28.096492767334038,48.30175018310558],[28.050012588500977,48.32706069946289],[27.926914215087947,48.32863616943371],[27.8614120483399,48.36767196655268],[27.88723182678234,48.39054870605474],[27.763639450073242,48.45856475830072],[27.68260383605968,48.44354248046875],[27.56609344482422,48.473842620849666],[27.533691406250053,48.464416503906364],[27.470438003540096,48.50998687744146],[27.47717666625982,48.55816650390624],[27.457410812378043,48.59319686889654],[27.374431610107536,48.63139343261719],[27.406255722045955,48.685844421386776],[27.417779922485405,48.76902008056652],[27.405448913574386,48.80985641479492],[27.419164657592773,48.863578796386776],[27.38658905029297,48.92724609375],[27.41987037658697,48.96410751342768],[27.39012145996122,48.99244689941406],[27.43003845214838,49.05922317504894],[27.493801116943473,49.06187820434576],[27.50658416748047,49.1275749206543],[27.571474075317383,49.11840057373052],[27.60460662841797,49.161251068115284],[27.659463882446346,49.16348266601574],[27.697929382324272,49.14130783081055],[27.752773284912166,49.143489837646534],[27.803962707519588,49.19297027587896],[27.869831085205078,49.171787261963004],[27.870355606079098,49.28459548950195],[27.79331779479992,49.441886901855526],[27.75162887573248,49.499610900878906],[27.79575920104986,49.525157928466854],[27.772428512573242,49.58364105224615],[27.82344436645525,49.63919067382824],[27.775758743286133,49.65510559082031],[27.763044357299805,49.69620895385742],[27.81855583190918,49.6984481811524],[27.824869155883903,49.734382629394474],[27.89654731750494,49.76699829101557],[28.00684356689453,49.78335571289074],[28.063823699951172,49.76784133911144],[28.164226531982532,49.78973007202154],[28.34876060485834,49.79682922363286],[28.38724517822271,49.774471282959034],[28.439125061035213,49.823890686035156],[28.5046443939209,49.80838012695324],[28.559289932250973,49.81620407104497],[28.579946517944506,49.78127670288086],[28.62570571899414,49.78281784057623],[28.641719818115234,49.818962097168026],[28.761970520019528,49.79907989501953],[28.777307510375973,49.84700012207037],[28.87652587890636,49.86775588989269],[28.892988204956055,49.897865295410156],[28.978845596313587,49.83523559570323],[29.00153350830078,49.75902175903326],[29.02985572814964,49.74214553833008],[28.98677635192865,49.69944763183605],[28.988834381103683,49.66405105590832],[29.02722930908214,49.629817962646484],[29.029256820678828,49.59444808959972],[29.174047470092884,49.598743438720696],[29.300746917724666,49.59029769897461],[29.29833030700689,49.6373863220216],[29.370807647705362,49.62734603881836],[29.458740234375167,49.66467285156256],[29.512737274170203,49.65991973876959]]]},"properties":{"ID_0":240,"ISO":"UA-05","NAME_0":"Ukraine","ID_1":24,"NAME_1":"Vinnytsya","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Vinnytsia|Vinnitskaya Oblast'|Vinnyts'ka Oblast|Winniza"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.626155853271598,51.937751770019474],[25.646942138671932,51.916259765625],[25.733308792114197,51.908203125],[25.662410736083924,51.85477447509777],[25.656850814819393,51.8145866394044],[25.71754646301269,51.77671813964855],[25.635120391845817,51.666748046875],[25.5534343719483,51.63893508911144],[25.61464500427246,51.5997428894043],[25.576850891113395,51.51985931396478],[25.64515495300293,51.498935699463004],[25.672777175903377,51.42195510864258],[25.73224830627447,51.39453506469732],[25.855703353881836,51.381958007812436],[25.849679946899414,51.35159683227538],[25.930929183960014,51.29498672485357],[25.964141845703182,51.24832916259771],[26.01205062866211,51.23839187622082],[26.073776245117188,51.18698501586914],[26.033067703247127,51.13115692138671],[25.940015792846676,51.127090454101676],[25.963220596313704,51.08607864379882],[26.04759216308588,51.08377075195318],[26.107997894287106,51.04444122314459],[26.111915588378906,51.00865173339855],[26.06868362426775,50.97677612304699],[25.985681533813477,50.967109680175724],[25.99624633789074,50.87173843383794],[26.029384613037053,50.82533645629882],[25.916013717651595,50.838218688964844],[25.88356208801281,50.79485321044933],[25.876348495483455,50.6927947998048],[25.83336830139166,50.66092300415039],[25.729511260986442,50.674125671386825],[25.704931259155558,50.72687149047846],[25.61234664916998,50.72260284423828],[25.478347778320366,50.67439270019531],[25.422172546386662,50.6776962280274],[25.379426956176815,50.645698547363395],[25.374370574951286,50.60954284667969],[25.307615280151424,50.62423706054693],[25.324571609497013,50.55925369262695],[25.27132225036621,50.5386848449707],[25.185476303100586,50.558303833007926],[25.112436294555774,50.548583984375114],[25.154310226440543,50.5088768005371],[25.151548385620345,50.454944610595696],[25.206180572509936,50.38605880737304],[25.151695251464957,50.37732315063476],[25.16521835327148,50.34221267700195],[25.11369132995617,50.30974960327148],[25.04793357849121,50.318256378173885],[24.955739974975696,50.39089202880854],[24.931875228881893,50.359756469726676],[24.829456329345817,50.366001129150334],[24.785863876342773,50.34562683105474],[24.71109008789074,50.35319900512707],[24.715709686279354,50.389255523681754],[24.589906692504883,50.43532562255871],[24.589962005615234,50.50701522827148],[24.552591323852596,50.510623931884766],[24.508424758911303,50.567584991455185],[24.455068588256946,50.55205154418951],[24.40557861328125,50.57855606079107],[24.420810699462947,50.603572845459034],[24.336330413818416,50.615451812744254],[24.31204223632841,50.589714050293026],[24.236902236938533,50.60185241699212],[24.22467994689947,50.624698638916016],[24.14743804931669,50.66119003295904],[24.08992958068859,50.64473724365246],[24.01921653747587,50.724765777588],[24.023214340210018,50.76974105834972],[23.974130630493278,50.77610015869146],[23.994230270386026,50.84303283691412],[24.107496261596737,50.83872222900402],[24.152034759521484,50.85956192016607],[24.028974533081165,50.91392135620122],[23.93164443969738,51.02132797241222],[23.912080764770565,51.079864501953125],[23.87178039550787,51.08248138427746],[23.85278701782249,51.126583099365284],[23.871471405029297,51.150310516357365],[23.74800109863287,51.21286773681646],[23.72394943237316,51.26782989501959],[23.65740394592285,51.283340454101506],[23.64147567749029,51.31124496459972],[23.682092666626257,51.3684921264649],[23.700920104980526,51.42196273803711],[23.666967391967887,51.507549285888615],[23.69010925292963,51.58990859985363],[23.655481338500977,51.615890502929744],[23.677938461303768,51.646072387695426],[23.83855438232422,51.65864944458008],[23.844459533691406,51.63866806030279],[23.945117950439506,51.63890838623047],[23.95311355590843,51.591583251953125],[24.027051925659293,51.58411026000982],[24.11996459960943,51.62105178833008],[24.15943908691412,51.67024612426752],[24.280649185180778,51.721012115478516],[24.354328155517692,51.787231445312614],[24.335853576660213,51.83478164672857],[24.386892318725813,51.910644531250114],[24.49044990539562,51.91294860839855],[24.603916168212947,51.930667877197266],[24.812778472900447,51.90372467041021],[24.945985794067383,51.92684936523448],[24.99504280090332,51.912250518798935],[25.086872100830135,51.962257385253956],[25.284065246582145,51.98341369628912],[25.3703289031983,51.948165893554744],[25.494070053100586,51.93225479125982],[25.56822204589872,51.952301025390625],[25.626155853271598,51.937751770019474]]]},"properties":{"ID_0":240,"ISO":"UA-07","NAME_0":"Ukraine","ID_1":25,"NAME_1":"Volyn","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Volhynia|Volyns'ka Oblast'|Volynskaya Oblast'|Wolynien"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[36.59258651733404,47.83230972290039],[36.617393493652514,47.82001876831066],[36.5866241455081,47.7674674987793],[36.67395782470731,47.7775497436524],[36.67174148559576,47.75399017333979],[36.73009872436546,47.640724182128906],[36.76232528686546,47.616436004638665],[36.82217788696289,47.609115600585994],[36.90171432495117,47.536411285400504],[36.94738769531249,47.55867767333979],[37.01507568359392,47.539009094238395],[37.079116821289176,47.483993530273494],[37.15412139892595,47.451946258545036],[37.25014495849615,47.453895568847706],[37.190067291259936,47.379772186279354],[37.145549774170206,47.36978912353527],[37.087551116943416,47.313091278076286],[37.04256057739286,47.297008514404354],[36.93151092529314,47.312278747558594],[36.935443878174,47.265235900878956],[36.96400833129894,47.20572662353521],[36.87554931640631,47.185024261474666],[36.998600006103516,47.122539520263786],[37.00292968750006,47.081405639648544],[37.117874145507976,47.0285530090332],[37.089683532714844,47.00658035278331],[37.138324737549105,46.979637145996094],[37.049308776855526,46.949844360351506],[37.029228210449276,46.921546936035206],[37.06030654907255,46.88291549682623],[36.976249694824276,46.858196258544865],[36.89764022827142,46.8095817565918],[36.82986068725591,46.70402908325207],[36.78652954101574,46.75041580200207],[36.720973968506144,46.779304504394645],[36.612361907958984,46.77819442749029],[36.415973663330135,46.72680664062505],[36.35541534423834,46.69597244262701],[36.27125167846691,46.60625076293945],[36.23458480834966,46.65069580078131],[36.187915802001896,46.67152786254883],[36.109027862548885,46.65847396850597],[36.047359466552905,46.66902923583996],[35.92152786254883,46.65986251831055],[35.718750000000284,46.58430480957037],[35.64902877807623,46.52236175537121],[35.578472137451456,46.47986221313482],[35.46569442749029,46.447360992431584],[35.35069274902338,46.347637176513665],[35.23652648925787,46.218471527099545],[35.198471069336044,46.16541671752941],[35.15430450439459,46.12958145141613],[34.99236297607422,46.07875061035167],[34.992084503173885,46.10597229003912],[35.06347274780279,46.15097045898443],[35.140693664550724,46.16291809082031],[35.2134704589846,46.187637329101676],[35.22263717651384,46.22124862670904],[35.26235961914074,46.24958419799804],[35.358196258545206,46.360416412353516],[35.26569366455084,46.354862213134766],[35.199859619140796,46.380973815918026],[35.13152694702154,46.34652709960948],[35.088748931884936,46.28757095336914],[35.09714508056668,46.32690811157232],[35.07524871826183,46.41081619262701],[34.974544525146534,46.44103240966796],[34.92296981811517,46.42885589599615],[34.8745307922365,46.4966278076173],[34.78826522827177,46.47913742065435],[34.74663162231451,46.51049423217768],[34.78242492675787,46.54677963256836],[34.776737213134766,46.61413192749029],[34.699459075927905,46.61551284790045],[34.657527923583984,46.64079284667974],[34.67634963989252,46.67699050903332],[34.780609130859546,46.69931793212896],[34.78377914428711,46.766021728515625],[34.835613250732365,46.771148681640625],[34.82113265991228,46.825878143310604],[34.77814483642595,46.82668685913097],[34.75605010986334,46.89963531494152],[34.68723678588884,46.901050567627],[34.603427886963175,46.9451255798341],[34.57160186767578,46.99406051635742],[34.55767822265625,47.05455780029291],[34.516986846923885,47.09759902954101],[34.48827362060552,47.200347900390625],[34.53163528442383,47.205314636230526],[34.48339080810575,47.266426086425895],[34.30923080444336,47.23489761352533],[34.27037429809593,47.31370162963867],[34.24863433837908,47.39193725585948],[34.147533416748104,47.448284149170036],[34.2965927124024,47.480316162109375],[34.47105407714861,47.50613403320318],[34.575962066650675,47.52772903442383],[34.66218185424833,47.52585983276372],[34.77214431762695,47.487686157226676],[34.87561035156267,47.48566055297863],[34.936695098876896,47.496479034423885],[34.91370010375982,47.544754028320256],[34.92557525634783,47.598335266113395],[34.89393615722656,47.64675903320324],[34.940010070801065,47.69367599487305],[34.94292068481451,47.741413116455135],[34.88206863403343,47.73662185668951],[34.868030548095646,47.79066085815441],[34.89468383789079,47.80208206176763],[34.82081604003917,47.869243621826286],[34.88604354858404,47.9455680847169],[34.87302780151384,48.01745986938488],[34.90876770019548,48.034664154052734],[34.886695861816406,48.10074234008795],[34.94633102416998,48.081676483154354],[34.9535446166995,48.05766296386719],[35.031562805176065,48.05615234375],[35.08544540405302,48.08496856689453],[35.2518424987793,48.10576248168957],[35.33873748779297,48.104198455810604],[35.38973617553728,48.08538818359381],[35.570007324219034,48.04639053344732],[35.73125457763672,48.108985900878906],[35.76346969604498,48.0726203918457],[35.833007812500284,48.07130813598633],[35.8390464782716,48.03544998168945],[35.98060226440447,48.06845855712902],[36.01204681396489,48.02617645263672],[36.05580902099637,48.03127288818371],[36.097682952880966,47.905597686767635],[36.123565673828296,47.90512847900396],[36.11634826660156,47.816192626953125],[36.212585449219034,47.83238601684576],[36.22735214233427,47.80252075195318],[36.33884048461914,47.79494476318371],[36.38397598266612,47.81795883178722],[36.46862411499052,47.79900360107416],[36.59258651733404,47.83230972290039]]]},"properties":{"ID_0":240,"ISO":"UA-23","NAME_0":"Ukraine","ID_1":26,"NAME_1":"Zaporizhzhya","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Saporoshje|Zaporizhia|Zaporiz'ka Oblast'|Zaporojie|Zaporozhskaya Oblast'|Zaporozh'ye|Zaporožje"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.36211013793962,51.396415710449325],[29.400138854980412,51.37801742553722],[29.402633666992354,51.34106445312505],[29.35999679565424,51.2912635803222],[29.304931640625284,51.29027938842785],[29.289331436157507,51.24718856811535],[29.311130523681925,51.192958831787166],[29.415054321289233,51.1463508605957],[29.520395278930835,51.075645446777344],[29.485841751098803,51.03921890258795],[29.489414215088114,50.979434967041016],[29.47286033630377,50.94931030273449],[29.531723022461218,50.88459396362315],[29.50939941406278,50.79495239257818],[29.6030731201173,50.75470352172863],[29.596563339233565,50.70709991455089],[29.497741699219034,50.67592620849615],[29.519617080688644,50.61101150512701],[29.487649917602766,50.527503967285156],[29.52475166320818,50.516265869140625],[29.51876831054699,50.45695495605469],[29.592920303344783,50.42855453491222],[29.61278915405279,50.39337158203119],[29.65885925292974,50.376335144043026],[29.669845581054627,50.335128784179744],[29.715202331543253,50.32987976074219],[29.690628051757756,50.27636718750006],[29.71052360534691,50.235336303710994],[29.67643737792991,50.19349670410156],[29.68048286438011,50.10505294799816],[29.717708587646538,50.07614898681651],[29.702947616577433,50.005165100097706],[29.74953269958513,49.96464920043956],[29.697420120239258,49.928451538085994],[29.637956619262923,49.856719970703175],[29.558980941772404,49.81990051269531],[29.531251907348803,49.83704757690441],[29.47995758056646,49.782966613769645],[29.47439384460472,49.712135314941406],[29.51918220520048,49.71306228637706],[29.512737274170203,49.65991973876959],[29.458740234375167,49.66467285156256],[29.370807647705362,49.62734603881836],[29.29833030700689,49.6373863220216],[29.300746917724666,49.59029769897461],[29.174047470092884,49.598743438720696],[29.029256820678828,49.59444808959972],[29.02722930908214,49.629817962646484],[28.988834381103683,49.66405105590832],[28.98677635192865,49.69944763183605],[29.02985572814964,49.74214553833008],[29.00153350830078,49.75902175903326],[28.978845596313587,49.83523559570323],[28.892988204956055,49.897865295410156],[28.87652587890636,49.86775588989269],[28.777307510375973,49.84700012207037],[28.761970520019528,49.79907989501953],[28.641719818115234,49.818962097168026],[28.62570571899414,49.78281784057623],[28.579946517944506,49.78127670288086],[28.559289932250973,49.81620407104497],[28.5046443939209,49.80838012695324],[28.439125061035213,49.823890686035156],[28.38724517822271,49.774471282959034],[28.34876060485834,49.79682922363286],[28.164226531982532,49.78973007202154],[28.063823699951172,49.76784133911144],[28.00684356689453,49.78335571289074],[27.89654731750494,49.76699829101557],[27.824869155883903,49.734382629394474],[27.728277206421012,49.7780494689942],[27.652658462524528,49.79278182983404],[27.61606788635271,49.89240646362299],[27.550081253051758,49.90156555175787],[27.538688659668022,49.92490005493164],[27.572650909423828,49.962028503418026],[27.549833297729492,50.00871276855469],[27.615432739257756,50.00547790527343],[27.684650421142805,50.06787872314459],[27.627212524414176,50.083377838134766],[27.62352180480957,50.12491989135736],[27.686681747436637,50.151344299316406],[27.596895217895565,50.2131919860841],[27.592605590820312,50.26069259643566],[27.511301040649528,50.22753906250006],[27.48057174682623,50.2560768127442],[27.413034439086967,50.27713775634771],[27.40911865234375,50.31872558593756],[27.332168579101673,50.33941268920904],[27.32988929748541,50.36318588256835],[27.251758575439567,50.39575195312505],[27.307903289794922,50.49361801147461],[27.209735870361385,50.53729248046881],[27.197437286376893,50.566642761230526],[27.22430801391613,50.579727172851506],[27.214817047119137,50.67494201660156],[27.285009384155387,50.72571945190441],[27.2608699798584,50.77853012084972],[27.2424259185791,50.86748504638683],[27.255706787109318,50.92190933227545],[27.20893287658697,51.00971221923834],[27.280321121215934,51.048690795898544],[27.327318191528317,51.050670623779354],[27.368713378906307,51.10631561279308],[27.364269256591854,51.14806365966808],[27.40552139282238,51.2036705017091],[27.468233108520447,51.23620986938482],[27.439956665039006,51.31879425048839],[27.48651504516607,51.32685089111328],[27.52998161315918,51.36487197875987],[27.488357543945426,51.392562866210994],[27.531883239746204,51.43684768676757],[27.611959457397404,51.417705535888786],[27.575523376464957,51.487445831298885],[27.67983627319336,51.524150848388615],[27.76055908203136,51.4927978515625],[27.785261154174858,51.540019989013665],[27.832773208618164,51.54577255249029],[27.819622039794865,51.58757400512701],[27.83385658264171,51.640563964843864],[27.902008056640682,51.63638305664073],[27.925128936767578,51.5865097045899],[27.965787887573242,51.56907272338873],[28.082235336303768,51.5701560974121],[28.17152023315424,51.650554656982536],[28.274139404296932,51.6977653503418],[28.259414672851562,51.63032913208019],[28.29727554321289,51.632961273193416],[28.369188308715877,51.56703948974615],[28.4195613861084,51.565265655517635],[28.489187240600582,51.59806823730469],[28.601055145263615,51.56431961059576],[28.680454254150387,51.56209182739269],[28.67092514038086,51.516845703125],[28.7140598297122,51.44618988037121],[28.806072235107536,51.46107864379883],[28.784332275390852,51.484920501708984],[28.825105667114368,51.54280471801769],[28.904903411865178,51.57487869262689],[29.039348602295036,51.580543518066406],[29.10403823852556,51.63100051879883],[29.160102844238338,51.65066528320324],[29.216932296753214,51.57704544067383],[29.26475334167486,51.55051040649413],[29.2416667938233,51.49702453613281],[29.316879272460998,51.449134826660156],[29.3245468139649,51.40196228027355],[29.36211013793962,51.396415710449325]]]},"properties":{"ID_0":240,"ISO":"UA-18","NAME_0":"Ukraine","ID_1":27,"NAME_1":"Zhytomyr","TYPE_1":"Oblast'","ENGTYPE_1":"Region","NL_NAME_1":null,"VARNAME_1":"Zhitomir|Jitomir|Shitomir|Zhitomirskaya Oblast'"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/usa.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/usa.geojson
new file mode 100644
index 0000000..7df55c7
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/usa.geojson
@@ -0,0 +1,206417 @@
+{
+  "crs": {
+    "properties": {
+      "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
+    }, 
+    "type": "name"
+  }, 
+  "features": [
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -112.538593, 
+                37.000674
+              ], 
+              [
+                -112.534545, 
+                37.000684
+              ], 
+              [
+                -112.368946, 
+                37.001125
+              ], 
+              [
+                -112.35769, 
+                37.001025
+              ], 
+              [
+                -111.412784, 
+                37.001478
+              ], 
+              [
+                -111.405869, 
+                37.001481
+              ], 
+              [
+                -111.405517, 
+                37.001497
+              ], 
+              [
+                -111.189888, 
+                37.000959
+              ], 
+              [
+                -110.75069, 
+                37.003197
+              ], 
+              [
+                -110.495259, 
+                37.003875
+              ], 
+              [
+                -110.33105, 
+                36.998216
+              ], 
+              [
+                -110.000677, 
+                36.997968
+              ], 
+              [
+                -109.381226, 
+                36.999148
+              ], 
+              [
+                -109.378039, 
+                36.999135
+              ], 
+              [
+                -109.270097, 
+                36.999266
+              ], 
+              [
+                -109.268213, 
+                36.999242
+              ], 
+              [
+                -109.26339, 
+                36.999263
+              ], 
+              [
+                -109.246917, 
+                36.999346
+              ], 
+              [
+                -109.233848, 
+                36.999266
+              ], 
+              [
+                -109.181196, 
+                36.999271
+              ], 
+              [
+                -109.045223, 
+                36.999084
+              ], 
+              [
+                -109.045244, 
+                36.969489
+              ], 
+              [
+                -109.045272, 
+                36.968871
+              ], 
+              [
+                -109.045407, 
+                36.874998
+              ], 
+              [
+                -109.045433, 
+                36.874589
+              ], 
+              [
+                -109.045973, 
+                36.002338
+              ], 
+              [
+                -109.046011, 
+                35.925896
+              ], 
+              [
+                -109.046054, 
+                35.92586
+              ], 
+              [
+                -109.046055, 
+                35.888721
+              ], 
+              [
+                -109.046024, 
+                35.8798
+              ], 
+              [
+                -109.046295, 
+                35.616517
+              ], 
+              [
+                -109.046296, 
+                35.614251
+              ], 
+              [
+                -109.046509, 
+                35.54644
+              ], 
+              [
+                -109.046481, 
+                35.546326
+              ], 
+              [
+                -109.046082, 
+                35.174665
+              ], 
+              [
+                -109.045851, 
+                34.959718
+              ], 
+              [
+                -109.046156, 
+                34.579291
+              ], 
+              [
+                -109.046182, 
+                34.522553
+              ], 
+              [
+                -109.046182, 
+                34.522393
+              ], 
+              [
+                -109.046627, 
+                33.778233
+              ], 
+              [
+                -109.04687, 
+                33.372654
+              ], 
+              [
+                -109.047045, 
+                33.36928
+              ], 
+              [
+                -109.046909, 
+                33.36557
+              ], 
+              [
+                -109.046827, 
+                33.365272
+              ], 
+              [
+                -109.047237, 
+                33.208965
+              ], 
+              [
+                -109.047116, 
+                33.137995
+              ], 
+              [
+                -109.047117, 
+                33.137559
+              ], 
+              [
+                -109.047013, 
+                33.092917
+              ], 
+              [
+                -109.046905, 
+                33.091931
+              ], 
+              [
+                -109.047453, 
+                33.069427
+              ], 
+              [
+                -109.04748, 
+                33.06842
+              ], 
+              [
+                -109.047117, 
+                32.77757
+              ], 
+              [
+                -109.047117, 
+                32.777569
+              ], 
+              [
+                -109.047638, 
+                32.693439
+              ], 
+              [
+                -109.047645, 
+                32.689988
+              ], 
+              [
+                -109.047653, 
+                32.686327
+              ], 
+              [
+                -109.047653, 
+                32.681379
+              ], 
+              [
+                -109.047926, 
+                32.426376
+              ], 
+              [
+                -109.048286, 
+                32.089114
+              ], 
+              [
+                -109.048296, 
+                32.084093
+              ], 
+              [
+                -109.048731, 
+                32.028174
+              ], 
+              [
+                -109.048599, 
+                32.013651
+              ], 
+              [
+                -109.04859, 
+                31.870791
+              ], 
+              [
+                -109.048769, 
+                31.861383
+              ], 
+              [
+                -109.048763, 
+                31.810776
+              ], 
+              [
+                -109.049195, 
+                31.796551
+              ], 
+              [
+                -109.049813, 
+                31.499528
+              ], 
+              [
+                -109.049843, 
+                31.499515
+              ], 
+              [
+                -109.050044, 
+                31.332502
+              ], 
+              [
+                -109.426931, 
+                31.334033
+              ], 
+              [
+                -110.460172, 
+                31.333051
+              ], 
+              [
+                -110.760997, 
+                31.332765
+              ], 
+              [
+                -110.976828, 
+                31.33256
+              ], 
+              [
+                -111.098097, 
+                31.339836
+              ], 
+              [
+                -111.366635, 
+                31.42588
+              ], 
+              [
+                -111.57953, 
+                31.494095
+              ], 
+              [
+                -112.246102, 
+                31.704195
+              ], 
+              [
+                -112.867074, 
+                31.895488
+              ], 
+              [
+                -113.125961, 
+                31.97278
+              ], 
+              [
+                -113.333794, 
+                32.038521
+              ], 
+              [
+                -113.493196, 
+                32.088943
+              ], 
+              [
+                -114.250775, 
+                32.32391
+              ], 
+              [
+                -114.813613, 
+                32.494277
+              ], 
+              [
+                -114.809393, 
+                32.617119
+              ], 
+              [
+                -114.80739, 
+                32.621332
+              ], 
+              [
+                -114.799302, 
+                32.625115
+              ], 
+              [
+                -114.781872, 
+                32.62505
+              ], 
+              [
+                -114.753111, 
+                32.658304
+              ], 
+              [
+                -114.748, 
+                32.664184
+              ], 
+              [
+                -114.719633, 
+                32.718763
+              ], 
+              [
+                -114.678632, 
+                32.736614
+              ], 
+              [
+                -114.677091, 
+                32.736218
+              ], 
+              [
+                -114.65884, 
+                32.73383
+              ], 
+              [
+                -114.65826, 
+                32.733799
+              ], 
+              [
+                -114.615585, 
+                32.728446
+              ], 
+              [
+                -114.615733, 
+                32.729427
+              ], 
+              [
+                -114.496827, 
+                32.822119
+              ], 
+              [
+                -114.496284, 
+                32.822326
+              ], 
+              [
+                -114.465715, 
+                32.879191
+              ], 
+              [
+                -114.465715, 
+                32.87942
+              ], 
+              [
+                -114.46289, 
+                32.905797
+              ], 
+              [
+                -114.468605, 
+                32.971649
+              ], 
+              [
+                -114.511343, 
+                33.023455
+              ], 
+              [
+                -114.516912, 
+                33.026871
+              ], 
+              [
+                -114.523578, 
+                33.030961
+              ], 
+              [
+                -114.571653, 
+                33.036624
+              ], 
+              [
+                -114.578287, 
+                33.035375
+              ], 
+              [
+                -114.584765, 
+                33.028231
+              ], 
+              [
+                -114.589778, 
+                33.026228
+              ], 
+              [
+                -114.606282, 
+                33.025703
+              ], 
+              [
+                -114.62387, 
+                33.02872
+              ], 
+              [
+                -114.675104, 
+                33.047532
+              ], 
+              [
+                -114.707819, 
+                33.091102
+              ], 
+              [
+                -114.706175, 
+                33.105335
+              ], 
+              [
+                -114.696829, 
+                33.131209
+              ], 
+              [
+                -114.687074, 
+                33.142196
+              ], 
+              [
+                -114.679359, 
+                33.159519
+              ], 
+              [
+                -114.67536, 
+                33.185489
+              ], 
+              [
+                -114.672088, 
+                33.258499
+              ], 
+              [
+                -114.700103, 
+                33.341045
+              ], 
+              [
+                -114.721233, 
+                33.396912
+              ], 
+              [
+                -114.665278, 
+                33.415358
+              ], 
+              [
+                -114.627125, 
+                33.433554
+              ], 
+              [
+                -114.622918, 
+                33.456561
+              ], 
+              [
+                -114.594534, 
+                33.495059
+              ], 
+              [
+                -114.558898, 
+                33.531819
+              ], 
+              [
+                -114.535664, 
+                33.568788
+              ], 
+              [
+                -114.535965, 
+                33.569154
+              ], 
+              [
+                -114.5403, 
+                33.580615
+              ], 
+              [
+                -114.540617, 
+                33.591412
+              ], 
+              [
+                -114.530348, 
+                33.679245
+              ], 
+              [
+                -114.523959, 
+                33.685879
+              ], 
+              [
+                -114.519113, 
+                33.688473
+              ], 
+              [
+                -114.496489, 
+                33.696901
+              ], 
+              [
+                -114.494197, 
+                33.707922
+              ], 
+              [
+                -114.50434, 
+                33.756381
+              ], 
+              [
+                -114.523365, 
+                33.80612
+              ], 
+              [
+                -114.525539, 
+                33.838614
+              ], 
+              [
+                -114.518434, 
+                33.917518
+              ], 
+              [
+                -114.499883, 
+                33.961789
+              ], 
+              [
+                -114.46361, 
+                33.993431
+              ], 
+              [
+                -114.438266, 
+                34.022609
+              ], 
+              [
+                -114.434949, 
+                34.037784
+              ], 
+              [
+                -114.435429, 
+                34.079727
+              ], 
+              [
+                -114.43338, 
+                34.088413
+              ], 
+              [
+                -114.420499, 
+                34.103466
+              ], 
+              [
+                -114.411681, 
+                34.110031
+              ], 
+              [
+                -114.401352, 
+                34.111652
+              ], 
+              [
+                -114.390565, 
+                34.110084
+              ], 
+              [
+                -114.366521, 
+                34.118575
+              ], 
+              [
+                -114.321618, 
+                34.138093
+              ], 
+              [
+                -114.312592, 
+                34.144453
+              ], 
+              [
+                -114.244191, 
+                34.179625
+              ], 
+              [
+                -114.225861, 
+                34.201774
+              ], 
+              [
+                -114.164476, 
+                34.251667
+              ], 
+              [
+                -114.133264, 
+                34.258462
+              ], 
+              [
+                -114.131489, 
+                34.260387
+              ], 
+              [
+                -114.138282, 
+                34.30323
+              ], 
+              [
+                -114.176909, 
+                34.349306
+              ], 
+              [
+                -114.199482, 
+                34.361373
+              ], 
+              [
+                -114.264317, 
+                34.401329
+              ], 
+              [
+                -114.339627, 
+                34.451435
+              ], 
+              [
+                -114.452547, 
+                34.653494
+              ], 
+              [
+                -114.465607, 
+                34.69226
+              ], 
+              [
+                -114.552682, 
+                34.766871
+              ], 
+              [
+                -114.633051, 
+                34.869971
+              ], 
+              [
+                -114.635176, 
+                34.875003
+              ], 
+              [
+                -114.636725, 
+                34.889107
+              ], 
+              [
+                -114.630877, 
+                34.907263
+              ], 
+              [
+                -114.629015, 
+                34.986148
+              ], 
+              [
+                -114.62919, 
+                34.991887
+              ], 
+              [
+                -114.633013, 
+                35.002085
+              ], 
+              [
+                -114.633544, 
+                35.015644
+              ], 
+              [
+                -114.635469, 
+                35.028266
+              ], 
+              [
+                -114.621956, 
+                35.094678
+              ], 
+              [
+                -114.59912, 
+                35.12105
+              ], 
+              [
+                -114.5843, 
+                35.124999
+              ], 
+              [
+                -114.578524, 
+                35.12875
+              ], 
+              [
+                -114.572747, 
+                35.138725
+              ], 
+              [
+                -114.569569, 
+                35.163053
+              ], 
+              [
+                -114.569238, 
+                35.18348
+              ], 
+              [
+                -114.595931, 
+                35.325234
+              ], 
+              [
+                -114.604314, 
+                35.353584
+              ], 
+              [
+                -114.627137, 
+                35.409504
+              ], 
+              [
+                -114.652005, 
+                35.429165
+              ], 
+              [
+                -114.662125, 
+                35.444241
+              ], 
+              [
+                -114.677643, 
+                35.489742
+              ], 
+              [
+                -114.676733, 
+                35.499063
+              ], 
+              [
+                -114.674981, 
+                35.510564
+              ], 
+              [
+                -114.671147, 
+                35.520641
+              ], 
+              [
+                -114.653806, 
+                35.59949
+              ], 
+              [
+                -114.653406, 
+                35.610789
+              ], 
+              [
+                -114.657506, 
+                35.618289
+              ], 
+              [
+                -114.676707, 
+                35.640989
+              ], 
+              [
+                -114.689407, 
+                35.651412
+              ], 
+              [
+                -114.700308, 
+                35.700387
+              ], 
+              [
+                -114.70771, 
+                35.811885
+              ], 
+              [
+                -114.705611, 
+                35.848884
+              ], 
+              [
+                -114.704211, 
+                35.851984
+              ], 
+              [
+                -114.70613, 
+                35.878712
+              ], 
+              [
+                -114.731296, 
+                35.945157
+              ], 
+              [
+                -114.743576, 
+                35.983721
+              ], 
+              [
+                -114.755618, 
+                36.087166
+              ], 
+              [
+                -114.744857, 
+                36.098693
+              ], 
+              [
+                -114.736165, 
+                36.104367
+              ], 
+              [
+                -114.631716, 
+                36.142306
+              ], 
+              [
+                -114.572031, 
+                36.15161
+              ], 
+              [
+                -114.513256, 
+                36.151217
+              ], 
+              [
+                -114.381446, 
+                36.141665
+              ], 
+              [
+                -114.365835, 
+                36.133722
+              ], 
+              [
+                -114.328777, 
+                36.105501
+              ], 
+              [
+                -114.310857, 
+                36.083787
+              ], 
+              [
+                -114.307235, 
+                36.076544
+              ], 
+              [
+                -114.303614, 
+                36.066456
+              ], 
+              [
+                -114.292663, 
+                36.051118
+              ], 
+              [
+                -114.263146, 
+                36.025937
+              ], 
+              [
+                -114.252651, 
+                36.020193
+              ], 
+              [
+                -114.238799, 
+                36.014561
+              ], 
+              [
+                -114.233289, 
+                36.014289
+              ], 
+              [
+                -114.21369, 
+                36.015613
+              ], 
+              [
+                -114.15413, 
+                36.023862
+              ], 
+              [
+                -114.148774, 
+                36.02731
+              ], 
+              [
+                -114.138202, 
+                36.041284
+              ], 
+              [
+                -114.125796, 
+                36.077531
+              ], 
+              [
+                -114.120193, 
+                36.102228
+              ], 
+              [
+                -114.063021, 
+                36.186942
+              ], 
+              [
+                -114.060302, 
+                36.189363
+              ], 
+              [
+                -114.046838, 
+                36.194069
+              ], 
+              [
+                -114.047106, 
+                36.250591
+              ], 
+              [
+                -114.048515, 
+                36.289598
+              ], 
+              [
+                -114.046403, 
+                36.371873
+              ], 
+              [
+                -114.046488, 
+                36.473449
+              ], 
+              [
+                -114.050562, 
+                36.656259
+              ], 
+              [
+                -114.050578, 
+                36.800173
+              ], 
+              [
+                -114.050583, 
+                36.843141
+              ], 
+              [
+                -114.0506, 
+                37.000396
+              ], 
+              [
+                -113.965907, 
+                37.000025
+              ], 
+              [
+                -113.965907, 
+                36.999976
+              ], 
+              [
+                -112.966471, 
+                37.000219
+              ], 
+              [
+                -112.899366, 
+                37.000319
+              ], 
+              [
+                -112.609787, 
+                37.000753
+              ], 
+              [
+                -112.558974, 
+                37.000692
+              ], 
+              [
+                -112.545094, 
+                37.000734
+              ], 
+              [
+                -112.540368, 
+                37.000669
+              ], 
+              [
+                -112.538593, 
+                37.000674
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 0, 
+      "properties": {
+        "CENSUSAREA": 113594.084, 
+        "GEO_ID": "0400000US04", 
+        "ISO": "US-AZ", 
+        "LSAD": "", 
+        "NAME": "Arizona", 
+        "NAME_1": "Arizona", 
+        "STATE": "AZ"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -94.042964, 
+                33.019219
+              ], 
+              [
+                -94.043036, 
+                33.079485
+              ], 
+              [
+                -94.04287, 
+                33.092727
+              ], 
+              [
+                -94.043007, 
+                33.13389
+              ], 
+              [
+                -94.043077, 
+                33.138162
+              ], 
+              [
+                -94.043185, 
+                33.143476
+              ], 
+              [
+                -94.042875, 
+                33.199785
+              ], 
+              [
+                -94.042892, 
+                33.202666
+              ], 
+              [
+                -94.042876, 
+                33.215219
+              ], 
+              [
+                -94.04273, 
+                33.241823
+              ], 
+              [
+                -94.043004, 
+                33.250128
+              ], 
+              [
+                -94.04305, 
+                33.260904
+              ], 
+              [
+                -94.04299, 
+                33.271227
+              ], 
+              [
+                -94.04299, 
+                33.271243
+              ], 
+              [
+                -94.043067, 
+                33.330498
+              ], 
+              [
+                -94.043067, 
+                33.347351
+              ], 
+              [
+                -94.043067, 
+                33.352097
+              ], 
+              [
+                -94.043128, 
+                33.358757
+              ], 
+              [
+                -94.042869, 
+                33.37117
+              ], 
+              [
+                -94.043053, 
+                33.377716
+              ], 
+              [
+                -94.042887, 
+                33.420225
+              ], 
+              [
+                -94.042988, 
+                33.431024
+              ], 
+              [
+                -94.042988, 
+                33.435824
+              ], 
+              [
+                -94.043188, 
+                33.470324
+              ], 
+              [
+                -94.043279, 
+                33.49103
+              ], 
+              [
+                -94.043009, 
+                33.493039
+              ], 
+              [
+                -94.043375, 
+                33.542315
+              ], 
+              [
+                -94.043428, 
+                33.551425
+              ], 
+              [
+                -94.04345, 
+                33.552253
+              ], 
+              [
+                -94.066846, 
+                33.568909
+              ], 
+              [
+                -94.085243, 
+                33.575546
+              ], 
+              [
+                -94.181805, 
+                33.593217
+              ], 
+              [
+                -94.252656, 
+                33.586144
+              ], 
+              [
+                -94.257801, 
+                33.582508
+              ], 
+              [
+                -94.355945, 
+                33.54318
+              ], 
+              [
+                -94.409329, 
+                33.568265
+              ], 
+              [
+                -94.464336, 
+                33.598819
+              ], 
+              [
+                -94.470963, 
+                33.60594
+              ], 
+              [
+                -94.478366, 
+                33.620847
+              ], 
+              [
+                -94.485875, 
+                33.637867
+              ], 
+              [
+                -94.485577, 
+                33.65331
+              ], 
+              [
+                -94.485528, 
+                33.663388
+              ], 
+              [
+                -94.48452, 
+                33.687909
+              ], 
+              [
+                -94.484616, 
+                33.691592
+              ], 
+              [
+                -94.48384, 
+                33.711332
+              ], 
+              [
+                -94.483874, 
+                33.716733
+              ], 
+              [
+                -94.48287, 
+                33.750564
+              ], 
+              [
+                -94.482862, 
+                33.75078
+              ], 
+              [
+                -94.482777, 
+                33.753638
+              ], 
+              [
+                -94.482682, 
+                33.756286
+              ], 
+              [
+                -94.481842, 
+                33.789008
+              ], 
+              [
+                -94.481543, 
+                33.795719
+              ], 
+              [
+                -94.481361, 
+                33.802649
+              ], 
+              [
+                -94.481355, 
+                33.802887
+              ], 
+              [
+                -94.480574, 
+                33.830166
+              ], 
+              [
+                -94.479954, 
+                33.85133
+              ], 
+              [
+                -94.478994, 
+                33.881197
+              ], 
+              [
+                -94.478842, 
+                33.881485
+              ], 
+              [
+                -94.477387, 
+                33.937759
+              ], 
+              [
+                -94.477318, 
+                33.940932
+              ], 
+              [
+                -94.477038, 
+                33.953838
+              ], 
+              [
+                -94.476957, 
+                33.957365
+              ], 
+              [
+                -94.474895, 
+                34.019655
+              ], 
+              [
+                -94.474896, 
+                34.021838
+              ], 
+              [
+                -94.474896, 
+                34.021877
+              ], 
+              [
+                -94.470292, 
+                34.189864
+              ], 
+              [
+                -94.465847, 
+                34.352073
+              ], 
+              [
+                -94.465425, 
+                34.359548
+              ], 
+              [
+                -94.464176, 
+                34.402713
+              ], 
+              [
+                -94.463816, 
+                34.414465
+              ], 
+              [
+                -94.463671, 
+                34.419585
+              ], 
+              [
+                -94.461149, 
+                34.507457
+              ], 
+              [
+                -94.460058, 
+                34.545264
+              ], 
+              [
+                -94.460052, 
+                34.547869
+              ], 
+              [
+                -94.4575, 
+                34.634945
+              ], 
+              [
+                -94.45753, 
+                34.642961
+              ], 
+              [
+                -94.454576, 
+                34.728962
+              ], 
+              [
+                -94.450233, 
+                34.855413
+              ], 
+              [
+                -94.45014, 
+                34.858694
+              ], 
+              [
+                -94.450065, 
+                34.861335
+              ], 
+              [
+                -94.44963, 
+                34.875253
+              ], 
+              [
+                -94.449058, 
+                34.890556
+              ], 
+              [
+                -94.449086, 
+                34.894152
+              ], 
+              [
+                -94.449253, 
+                34.895869
+              ], 
+              [
+                -94.447889, 
+                34.933941
+              ], 
+              [
+                -94.441232, 
+                35.119724
+              ], 
+              [
+                -94.440754, 
+                35.128806
+              ], 
+              [
+                -94.43955, 
+                35.169037
+              ], 
+              [
+                -94.439509, 
+                35.171807
+              ], 
+              [
+                -94.439056, 
+                35.193588
+              ], 
+              [
+                -94.439084, 
+                35.197298
+              ], 
+              [
+                -94.43847, 
+                35.208587
+              ], 
+              [
+                -94.438247, 
+                35.210992
+              ], 
+              [
+                -94.437774, 
+                35.239271
+              ], 
+              [
+                -94.437578, 
+                35.242202
+              ], 
+              [
+                -94.435812, 
+                35.2713
+              ], 
+              [
+                -94.435706, 
+                35.274267
+              ], 
+              [
+                -94.435316, 
+                35.275893
+              ], 
+              [
+                -94.43528, 
+                35.287485
+              ], 
+              [
+                -94.43517, 
+                35.291494
+              ], 
+              [
+                -94.434115, 
+                35.306493
+              ], 
+              [
+                -94.431815, 
+                35.362891
+              ], 
+              [
+                -94.432685, 
+                35.380806
+              ], 
+              [
+                -94.433742, 
+                35.386467
+              ], 
+              [
+                -94.433915, 
+                35.387391
+              ], 
+              [
+                -94.431215, 
+                35.39429
+              ], 
+              [
+                -94.431789, 
+                35.397659
+              ], 
+              [
+                -94.463318, 
+                35.58266
+              ], 
+              [
+                -94.464097, 
+                35.587265
+              ], 
+              [
+                -94.464457, 
+                35.588909
+              ], 
+              [
+                -94.465272, 
+                35.594037
+              ], 
+              [
+                -94.472647, 
+                35.638556
+              ], 
+              [
+                -94.487585, 
+                35.726147
+              ], 
+              [
+                -94.48821, 
+                35.72924
+              ], 
+              [
+                -94.492932, 
+                35.759166
+              ], 
+              [
+                -94.493362, 
+                35.761892
+              ], 
+              [
+                -94.494549, 
+                35.768303
+              ], 
+              [
+                -94.499045, 
+                35.79346
+              ], 
+              [
+                -94.499647, 
+                35.79691
+              ], 
+              [
+                -94.500526, 
+                35.802642
+              ], 
+              [
+                -94.500764, 
+                35.80382
+              ], 
+              [
+                -94.501162, 
+                35.80643
+              ], 
+              [
+                -94.503011, 
+                35.81721
+              ], 
+              [
+                -94.504438, 
+                35.826369
+              ], 
+              [
+                -94.505642, 
+                35.833628
+              ], 
+              [
+                -94.507631, 
+                35.845901
+              ], 
+              [
+                -94.522658, 
+                35.93425
+              ], 
+              [
+                -94.522658, 
+                35.934799
+              ], 
+              [
+                -94.522634, 
+                35.934892
+              ], 
+              [
+                -94.52291, 
+                35.936127
+              ], 
+              [
+                -94.524344, 
+                35.94405
+              ], 
+              [
+                -94.52464, 
+                35.945727
+              ], 
+              [
+                -94.528162, 
+                35.965665
+              ], 
+              [
+                -94.528305, 
+                35.966054
+              ], 
+              [
+                -94.532071, 
+                35.987852
+              ], 
+              [
+                -94.533646, 
+                35.996804
+              ], 
+              [
+                -94.534852, 
+                36.002678
+              ], 
+              [
+                -94.535724, 
+                36.007807
+              ], 
+              [
+                -94.547715, 
+                36.077271
+              ], 
+              [
+                -94.547871, 
+                36.078281
+              ], 
+              [
+                -94.552184, 
+                36.102235
+              ], 
+              [
+                -94.561165, 
+                36.15211
+              ], 
+              [
+                -94.562803, 
+                36.161749
+              ], 
+              [
+                -94.562828, 
+                36.161895
+              ], 
+              [
+                -94.565655, 
+                36.178439
+              ], 
+              [
+                -94.566588, 
+                36.183774
+              ], 
+              [
+                -94.571253, 
+                36.210901
+              ], 
+              [
+                -94.571806, 
+                36.213748
+              ], 
+              [
+                -94.574395, 
+                36.229996
+              ], 
+              [
+                -94.57488, 
+                36.232741
+              ], 
+              [
+                -94.575071, 
+                36.233682
+              ], 
+              [
+                -94.576003, 
+                36.24007
+              ], 
+              [
+                -94.577899, 
+                36.249548
+              ], 
+              [
+                -94.577883, 
+                36.25008
+              ], 
+              [
+                -94.5862, 
+                36.299969
+              ], 
+              [
+                -94.593397, 
+                36.345742
+              ], 
+              [
+                -94.599723, 
+                36.387587
+              ], 
+              [
+                -94.601984, 
+                36.40212
+              ], 
+              [
+                -94.602623, 
+                36.405283
+              ], 
+              [
+                -94.605408, 
+                36.421949
+              ], 
+              [
+                -94.611609, 
+                36.461528
+              ], 
+              [
+                -94.61383, 
+                36.476248
+              ], 
+              [
+                -94.615311, 
+                36.484992
+              ], 
+              [
+                -94.617919, 
+                36.499414
+              ], 
+              [
+                -94.55929, 
+                36.499496
+              ], 
+              [
+                -94.519478, 
+                36.499214
+              ], 
+              [
+                -94.111473, 
+                36.498597
+              ], 
+              [
+                -94.110673, 
+                36.498587
+              ], 
+              [
+                -94.100252, 
+                36.49867
+              ], 
+              [
+                -94.098588, 
+                36.498676
+              ], 
+              [
+                -94.077089, 
+                36.49873
+              ], 
+              [
+                -93.96392, 
+                36.498717
+              ], 
+              [
+                -93.95919, 
+                36.498717
+              ], 
+              [
+                -93.92184, 
+                36.498718
+              ], 
+              [
+                -93.906128, 
+                36.498718
+              ], 
+              [
+                -93.866758, 
+                36.498789
+              ], 
+              [
+                -93.728022, 
+                36.499037
+              ], 
+              [
+                -93.727552, 
+                36.499055
+              ], 
+              [
+                -93.718893, 
+                36.499178
+              ], 
+              [
+                -93.709956, 
+                36.499179
+              ], 
+              [
+                -93.700171, 
+                36.499135
+              ], 
+              [
+                -93.584282, 
+                36.498896
+              ], 
+              [
+                -93.584281, 
+                36.498896
+              ], 
+              [
+                -93.514512, 
+                36.498881
+              ], 
+              [
+                -93.507408, 
+                36.498911
+              ], 
+              [
+                -93.426989, 
+                36.498585
+              ], 
+              [
+                -93.396079, 
+                36.498669
+              ], 
+              [
+                -93.394718, 
+                36.498519
+              ], 
+              [
+                -93.315337, 
+                36.498408
+              ], 
+              [
+                -93.315324, 
+                36.498408
+              ], 
+              [
+                -93.296117, 
+                36.498389
+              ], 
+              [
+                -93.088988, 
+                36.498184
+              ], 
+              [
+                -93.087635, 
+                36.498239
+              ], 
+              [
+                -93.069512, 
+                36.498242
+              ], 
+              [
+                -93.068455, 
+                36.49825
+              ], 
+              [
+                -93.013742, 
+                36.49813
+              ], 
+              [
+                -92.894336, 
+                36.497867
+              ], 
+              [
+                -92.894001, 
+                36.49785
+              ], 
+              [
+                -92.854049, 
+                36.497983
+              ], 
+              [
+                -92.838876, 
+                36.498033
+              ], 
+              [
+                -92.838621, 
+                36.498079
+              ], 
+              [
+                -92.772341, 
+                36.497772
+              ], 
+              [
+                -92.772333, 
+                36.497772
+              ], 
+              [
+                -92.529145, 
+                36.497739
+              ], 
+              [
+                -92.318415, 
+                36.497711
+              ], 
+              [
+                -92.309424, 
+                36.497894
+              ], 
+              [
+                -92.216412, 
+                36.498417
+              ], 
+              [
+                -92.214143, 
+                36.498372
+              ], 
+              [
+                -92.211449, 
+                36.498395
+              ], 
+              [
+                -92.199396, 
+                36.498351
+              ], 
+              [
+                -92.150295, 
+                36.498634
+              ], 
+              [
+                -92.137741, 
+                36.498706
+              ], 
+              [
+                -92.120415, 
+                36.498863
+              ], 
+              [
+                -92.120306, 
+                36.498864
+              ], 
+              [
+                -92.098356, 
+                36.498803
+              ], 
+              [
+                -92.074934, 
+                36.498761
+              ], 
+              [
+                -92.057178, 
+                36.49867
+              ], 
+              [
+                -92.055789, 
+                36.49867
+              ], 
+              [
+                -92.028847, 
+                36.498642
+              ], 
+              [
+                -92.019375, 
+                36.498524
+              ], 
+              [
+                -91.988751, 
+                36.498498
+              ], 
+              [
+                -91.985802, 
+                36.498431
+              ], 
+              [
+                -91.865995, 
+                36.498783
+              ], 
+              [
+                -91.864385, 
+                36.498789
+              ], 
+              [
+                -91.805981, 
+                36.498987
+              ], 
+              [
+                -91.80204, 
+                36.498963
+              ], 
+              [
+                -91.7995, 
+                36.498952
+              ], 
+              [
+                -91.784713, 
+                36.499074
+              ], 
+              [
+                -91.766111, 
+                36.499114
+              ], 
+              [
+                -91.726663, 
+                36.499209
+              ], 
+              [
+                -91.687615, 
+                36.499397
+              ], 
+              [
+                -91.686026, 
+                36.499374
+              ], 
+              [
+                -91.672343, 
+                36.499463
+              ], 
+              [
+                -91.64259, 
+                36.499335
+              ], 
+              [
+                -91.631439, 
+                36.499198
+              ], 
+              [
+                -91.601317, 
+                36.499343
+              ], 
+              [
+                -91.596213, 
+                36.499162
+              ], 
+              [
+                -91.549163, 
+                36.499161
+              ], 
+              [
+                -91.539359, 
+                36.499116
+              ], 
+              [
+                -91.53687, 
+                36.499156
+              ], 
+              [
+                -91.529774, 
+                36.499022
+              ], 
+              [
+                -91.450005, 
+                36.497538
+              ], 
+              [
+                -91.446284, 
+                36.497469
+              ], 
+              [
+                -91.436502, 
+                36.497377
+              ], 
+              [
+                -91.433298, 
+                36.497262
+              ], 
+              [
+                -91.407261, 
+                36.497123
+              ], 
+              [
+                -91.407137, 
+                36.497112
+              ], 
+              [
+                -91.405141, 
+                36.497165
+              ], 
+              [
+                -91.404915, 
+                36.49712
+              ], 
+              [
+                -91.227398, 
+                36.497617
+              ], 
+              [
+                -91.218645, 
+                36.497564
+              ], 
+              [
+                -91.21736, 
+                36.497511
+              ], 
+              [
+                -91.126529, 
+                36.497712
+              ], 
+              [
+                -91.096277, 
+                36.497893
+              ], 
+              [
+                -91.09588, 
+                36.49787
+              ], 
+              [
+                -91.017974, 
+                36.498062
+              ], 
+              [
+                -91.008558, 
+                36.49827
+              ], 
+              [
+                -90.963063, 
+                36.498418
+              ], 
+              [
+                -90.960648, 
+                36.498426
+              ], 
+              [
+                -90.87922, 
+                36.498378
+              ], 
+              [
+                -90.876867, 
+                36.498423
+              ], 
+              [
+                -90.876567, 
+                36.498313
+              ], 
+              [
+                -90.873775, 
+                36.498074
+              ], 
+              [
+                -90.850434, 
+                36.498548
+              ], 
+              [
+                -90.784398, 
+                36.498524
+              ], 
+              [
+                -90.782454, 
+                36.498523
+              ], 
+              [
+                -90.765672, 
+                36.498494
+              ], 
+              [
+                -90.711226, 
+                36.498318
+              ], 
+              [
+                -90.693005, 
+                36.49851
+              ], 
+              [
+                -90.653246, 
+                36.498488
+              ], 
+              [
+                -90.648494, 
+                36.498447
+              ], 
+              [
+                -90.612554, 
+                36.498559
+              ], 
+              [
+                -90.60545, 
+                36.498459
+              ], 
+              [
+                -90.5943, 
+                36.498459
+              ], 
+              [
+                -90.585342, 
+                36.498497
+              ], 
+              [
+                -90.57618, 
+                36.498446
+              ], 
+              [
+                -90.576112, 
+                36.498446
+              ], 
+              [
+                -90.50016, 
+                36.498399
+              ], 
+              [
+                -90.495027, 
+                36.498371
+              ], 
+              [
+                -90.494575, 
+                36.498368
+              ], 
+              [
+                -90.339892, 
+                36.498213
+              ], 
+              [
+                -90.228943, 
+                36.497771
+              ], 
+              [
+                -90.220732, 
+                36.497858
+              ], 
+              [
+                -90.220702, 
+                36.497858
+              ], 
+              [
+                -90.217323, 
+                36.497797
+              ], 
+              [
+                -90.193943, 
+                36.497823
+              ], 
+              [
+                -90.152481, 
+                36.497952
+              ], 
+              [
+                -90.154409, 
+                36.496832
+              ], 
+              [
+                -90.156369, 
+                36.487748
+              ], 
+              [
+                -90.133993, 
+                36.437906
+              ], 
+              [
+                -90.072897, 
+                36.393007
+              ], 
+              [
+                -90.064514, 
+                36.382085
+              ], 
+              [
+                -90.06398, 
+                36.303038
+              ], 
+              [
+                -90.076301, 
+                36.280708
+              ], 
+              [
+                -90.083731, 
+                36.272332
+              ], 
+              [
+                -90.114922, 
+                36.265595
+              ], 
+              [
+                -90.198735, 
+                36.201382
+              ], 
+              [
+                -90.220425, 
+                36.184764
+              ], 
+              [
+                -90.319168, 
+                36.089976
+              ], 
+              [
+                -90.36443, 
+                36.013625
+              ], 
+              [
+                -90.368718, 
+                35.995812
+              ], 
+              [
+                -90.342616, 
+                35.995895
+              ], 
+              [
+                -90.339434, 
+                35.996033
+              ], 
+              [
+                -90.292376, 
+                35.996397
+              ], 
+              [
+                -90.288947, 
+                35.996418
+              ], 
+              [
+                -90.2888, 
+                35.996419
+              ], 
+              [
+                -90.158812, 
+                35.997375
+              ], 
+              [
+                -90.127331, 
+                35.997635
+              ], 
+              [
+                -90.12635, 
+                35.997596
+              ], 
+              [
+                -89.972563, 
+                35.998994
+              ], 
+              [
+                -89.965327, 
+                35.998813
+              ], 
+              [
+                -89.961075, 
+                35.999135
+              ], 
+              [
+                -89.959893, 
+                35.99902
+              ], 
+              [
+                -89.959377, 
+                35.99902
+              ], 
+              [
+                -89.959375, 
+                35.99902
+              ], 
+              [
+                -89.901183, 
+                35.999365
+              ], 
+              [
+                -89.896508, 
+                35.999432
+              ], 
+              [
+                -89.875586, 
+                35.999562
+              ], 
+              [
+                -89.875085, 
+                35.999578
+              ], 
+              [
+                -89.87459, 
+                35.999575
+              ], 
+              [
+                -89.86901, 
+                35.99964
+              ], 
+              [
+                -89.770255, 
+                36.000524
+              ], 
+              [
+                -89.769973, 
+                36.000536
+              ], 
+              [
+                -89.737648, 
+                36.000567
+              ], 
+              [
+                -89.737564, 
+                36.000522
+              ], 
+              [
+                -89.733095, 
+                36.000608
+              ], 
+              [
+                -89.71997, 
+                35.97462
+              ], 
+              [
+                -89.686924, 
+                35.947716
+              ], 
+              [
+                -89.687939, 
+                35.905384
+              ], 
+              [
+                -89.688141, 
+                35.896946
+              ], 
+              [
+                -89.714934, 
+                35.906247
+              ], 
+              [
+                -89.73361, 
+                35.904699
+              ], 
+              [
+                -89.756036, 
+                35.896817
+              ], 
+              [
+                -89.765689, 
+                35.891299
+              ], 
+              [
+                -89.771726, 
+                35.879724
+              ], 
+              [
+                -89.773564, 
+                35.871697
+              ], 
+              [
+                -89.772467, 
+                35.865098
+              ], 
+              [
+                -89.769413, 
+                35.861558
+              ], 
+              [
+                -89.749424, 
+                35.852955
+              ], 
+              [
+                -89.729517, 
+                35.847632
+              ], 
+              [
+                -89.709261, 
+                35.838911
+              ], 
+              [
+                -89.702883, 
+                35.834153
+              ], 
+              [
+                -89.701045, 
+                35.828227
+              ], 
+              [
+                -89.703875, 
+                35.820281
+              ], 
+              [
+                -89.821216, 
+                35.756716
+              ], 
+              [
+                -89.865631, 
+                35.746577
+              ], 
+              [
+                -89.889023, 
+                35.750558
+              ], 
+              [
+                -89.905538, 
+                35.759063
+              ], 
+              [
+                -89.909996, 
+                35.759396
+              ], 
+              [
+                -89.950278, 
+                35.738493
+              ], 
+              [
+                -89.956254, 
+                35.733386
+              ], 
+              [
+                -89.958882, 
+                35.723834
+              ], 
+              [
+                -89.955753, 
+                35.690621
+              ], 
+              [
+                -89.937383, 
+                35.665711
+              ], 
+              [
+                -89.922749, 
+                35.655293
+              ], 
+              [
+                -89.906147, 
+                35.651145
+              ], 
+              [
+                -89.89051, 
+                35.652408
+              ], 
+              [
+                -89.884932, 
+                35.655107
+              ], 
+              [
+                -89.909797, 
+                35.537914
+              ], 
+              [
+                -89.933572, 
+                35.533299
+              ], 
+              [
+                -89.957347, 
+                35.528683
+              ], 
+              [
+                -90.017312, 
+                35.555996
+              ], 
+              [
+                -90.02862, 
+                35.555249
+              ], 
+              [
+                -90.032938, 
+                35.55344
+              ], 
+              [
+                -90.039744, 
+                35.548041
+              ], 
+              [
+                -90.034976, 
+                35.480705
+              ], 
+              [
+                -90.034014, 
+                35.468821
+              ], 
+              [
+                -90.04768, 
+                35.459255
+              ], 
+              [
+                -90.059068, 
+                35.457889
+              ], 
+              [
+                -90.067798, 
+                35.466224
+              ], 
+              [
+                -90.072154, 
+                35.470752
+              ], 
+              [
+                -90.07442, 
+                35.472518
+              ], 
+              [
+                -90.107723, 
+                35.476935
+              ], 
+              [
+                -90.152386, 
+                35.436789
+              ], 
+              [
+                -90.169002, 
+                35.421853
+              ], 
+              [
+                -90.179265, 
+                35.385194
+              ], 
+              [
+                -90.178341, 
+                35.382092
+              ], 
+              [
+                -90.166246, 
+                35.374745
+              ], 
+              [
+                -90.143633, 
+                35.374745
+              ], 
+              [
+                -90.13551, 
+                35.376668
+              ], 
+              [
+                -90.093589, 
+                35.393333
+              ], 
+              [
+                -90.089612, 
+                35.379842
+              ], 
+              [
+                -90.086691, 
+                35.369935
+              ], 
+              [
+                -90.114893, 
+                35.303887
+              ], 
+              [
+                -90.153394, 
+                35.302588
+              ], 
+              [
+                -90.158913, 
+                35.300637
+              ], 
+              [
+                -90.163812, 
+                35.296115
+              ], 
+              [
+                -90.168871, 
+                35.281997
+              ], 
+              [
+                -90.166594, 
+                35.274588
+              ], 
+              [
+                -90.158865, 
+                35.262577
+              ], 
+              [
+                -90.152094, 
+                35.255989
+              ], 
+              [
+                -90.140394, 
+                35.252289
+              ], 
+              [
+                -90.116493, 
+                35.255788
+              ], 
+              [
+                -90.105093, 
+                35.254288
+              ], 
+              [
+                -90.097947, 
+                35.249983
+              ], 
+              [
+                -90.07741, 
+                35.225479
+              ], 
+              [
+                -90.074262, 
+                35.218316
+              ], 
+              [
+                -90.073354, 
+                35.211004
+              ], 
+              [
+                -90.064612, 
+                35.140621
+              ], 
+              [
+                -90.065392, 
+                35.137691
+              ], 
+              [
+                -90.08342, 
+                35.12167
+              ], 
+              [
+                -90.09061, 
+                35.118287
+              ], 
+              [
+                -90.100593, 
+                35.116691
+              ], 
+              [
+                -90.109393, 
+                35.118891
+              ], 
+              [
+                -90.142794, 
+                35.135091
+              ], 
+              [
+                -90.160058, 
+                35.12883
+              ], 
+              [
+                -90.174594, 
+                35.116682
+              ], 
+              [
+                -90.193859, 
+                35.061646
+              ], 
+              [
+                -90.295596, 
+                35.040093
+              ], 
+              [
+                -90.309877, 
+                35.00975
+              ], 
+              [
+                -90.309297, 
+                34.995694
+              ], 
+              [
+                -90.253969, 
+                34.954988
+              ], 
+              [
+                -90.244476, 
+                34.937596
+              ], 
+              [
+                -90.250095, 
+                34.90732
+              ], 
+              [
+                -90.293918, 
+                34.860563
+              ], 
+              [
+                -90.307384, 
+                34.846195
+              ], 
+              [
+                -90.407964, 
+                34.832767
+              ], 
+              [
+                -90.414864, 
+                34.831846
+              ], 
+              [
+                -90.423879, 
+                34.834606
+              ], 
+              [
+                -90.436431, 
+                34.85506
+              ], 
+              [
+                -90.461451, 
+                34.856728
+              ], 
+              [
+                -90.473961, 
+                34.852558
+              ], 
+              [
+                -90.478131, 
+                34.832542
+              ], 
+              [
+                -90.467289, 
+                34.782502
+              ], 
+              [
+                -90.479799, 
+                34.769158
+              ], 
+              [
+                -90.494811, 
+                34.76749
+              ], 
+              [
+                -90.501325, 
+                34.769931
+              ], 
+              [
+                -90.519831, 
+                34.782502
+              ], 
+              [
+                -90.537345, 
+                34.78417
+              ], 
+              [
+                -90.549855, 
+                34.76332
+              ], 
+              [
+                -90.554859, 
+                34.727458
+              ], 
+              [
+                -90.533175, 
+                34.707442
+              ], 
+              [
+                -90.509823, 
+                34.689928
+              ], 
+              [
+                -90.508989, 
+                34.679086
+              ], 
+              [
+                -90.521499, 
+                34.66324
+              ], 
+              [
+                -90.539013, 
+                34.65907
+              ], 
+              [
+                -90.549855, 
+                34.662406
+              ], 
+              [
+                -90.564033, 
+                34.665742
+              ], 
+              [
+                -90.576543, 
+                34.657402
+              ], 
+              [
+                -90.575786, 
+                34.641749
+              ], 
+              [
+                -90.570133, 
+                34.524829
+              ], 
+              [
+                -90.565809, 
+                34.4354
+              ], 
+              [
+                -90.575336, 
+                34.415152
+              ], 
+              [
+                -90.613944, 
+                34.390723
+              ], 
+              [
+                -90.658542, 
+                34.375705
+              ], 
+              [
+                -90.764143, 
+                34.363396
+              ], 
+              [
+                -90.856367, 
+                34.238928
+              ], 
+              [
+                -90.868775, 
+                34.228245
+              ], 
+              [
+                -90.894744, 
+                34.229977
+              ], 
+              [
+                -90.91148, 
+                34.223051
+              ], 
+              [
+                -90.913212, 
+                34.210355
+              ], 
+              [
+                -90.895898, 
+                34.191888
+              ], 
+              [
+                -90.880894, 
+                34.180346
+              ], 
+              [
+                -90.880317, 
+                34.169381
+              ], 
+              [
+                -90.893013, 
+                34.155531
+              ], 
+              [
+                -90.918405, 
+                34.154376
+              ], 
+              [
+                -90.934564, 
+                34.130138
+              ], 
+              [
+                -90.933116, 
+                34.124488
+              ], 
+              [
+                -90.931969, 
+                34.120017
+              ], 
+              [
+                -90.928793, 
+                34.107631
+              ], 
+              [
+                -90.912057, 
+                34.095512
+              ], 
+              [
+                -90.888396, 
+                34.087433
+              ], 
+              [
+                -90.879163, 
+                34.065503
+              ], 
+              [
+                -90.887413, 
+                34.032505
+              ], 
+              [
+                -90.964708, 
+                34.007952
+              ], 
+              [
+                -91.01889, 
+                34.003151
+              ], 
+              [
+                -91.089119, 
+                33.972653
+              ], 
+              [
+                -91.088164, 
+                33.960078
+              ], 
+              [
+                -91.036821, 
+                33.914656
+              ], 
+              [
+                -91.067511, 
+                33.840443
+              ], 
+              [
+                -91.139869, 
+                33.777117
+              ], 
+              [
+                -91.144682, 
+                33.750108
+              ], 
+              [
+                -91.136118, 
+                33.728632
+              ], 
+              [
+                -91.126805, 
+                33.707814
+              ], 
+              [
+                -91.1279, 
+                33.695762
+              ], 
+              [
+                -91.132831, 
+                33.688092
+              ], 
+              [
+                -91.139953, 
+                33.683709
+              ], 
+              [
+                -91.14817, 
+                33.679327
+              ], 
+              [
+                -91.17611, 
+                33.684257
+              ], 
+              [
+                -91.185971, 
+                33.679327
+              ], 
+              [
+                -91.18871, 
+                33.669466
+              ], 
+              [
+                -91.193093, 
+                33.656866
+              ], 
+              [
+                -91.186519, 
+                33.645909
+              ], 
+              [
+                -91.157484, 
+                33.626187
+              ], 
+              [
+                -91.130445, 
+                33.606034
+              ], 
+              [
+                -91.134043, 
+                33.594489
+              ], 
+              [
+                -91.152148, 
+                33.582721
+              ], 
+              [
+                -91.224121, 
+                33.567369
+              ], 
+              [
+                -91.228287, 
+                33.559937
+              ], 
+              [
+                -91.232295, 
+                33.552788
+              ], 
+              [
+                -91.215671, 
+                33.529423
+              ], 
+              [
+                -91.125109, 
+                33.472842
+              ], 
+              [
+                -91.118495, 
+                33.449116
+              ], 
+              [
+                -91.131885, 
+                33.430063
+              ], 
+              [
+                -91.184427, 
+                33.419576
+              ], 
+              [
+                -91.141216, 
+                33.298397
+              ], 
+              [
+                -91.110561, 
+                33.24593
+              ], 
+              [
+                -91.085984, 
+                33.221644
+              ], 
+              [
+                -91.087589, 
+                33.145177
+              ], 
+              [
+                -91.125656, 
+                33.038276
+              ], 
+              [
+                -91.157662, 
+                33.011217
+              ], 
+              [
+                -91.166073, 
+                33.004106
+              ], 
+              [
+                -91.265018, 
+                33.005084
+              ], 
+              [
+                -91.284398, 
+                33.005007
+              ], 
+              [
+                -91.312016, 
+                33.005262
+              ], 
+              [
+                -91.322506, 
+                33.005341
+              ], 
+              [
+                -91.325037, 
+                33.005364
+              ], 
+              [
+                -91.326396, 
+                33.005376
+              ], 
+              [
+                -91.329767, 
+                33.005421
+              ], 
+              [
+                -91.333011, 
+                33.005529
+              ], 
+              [
+                -91.376016, 
+                33.005794
+              ], 
+              [
+                -91.425466, 
+                33.006016
+              ], 
+              [
+                -91.435782, 
+                33.006099
+              ], 
+              [
+                -91.46037, 
+                33.006246
+              ], 
+              [
+                -91.559494, 
+                33.00684
+              ], 
+              [
+                -91.572326, 
+                33.006908
+              ], 
+              [
+                -91.579639, 
+                33.006472
+              ], 
+              [
+                -91.579802, 
+                33.006518
+              ], 
+              [
+                -91.609001, 
+                33.006556
+              ], 
+              [
+                -91.617615, 
+                33.006717
+              ], 
+              [
+                -91.62667, 
+                33.006639
+              ], 
+              [
+                -91.950001, 
+                33.00752
+              ], 
+              [
+                -91.951958, 
+                33.007428
+              ], 
+              [
+                -92.069105, 
+                33.008163
+              ], 
+              [
+                -92.222825, 
+                33.00908
+              ], 
+              [
+                -92.292664, 
+                33.010103
+              ], 
+              [
+                -92.335893, 
+                33.010349
+              ], 
+              [
+                -92.362865, 
+                33.010628
+              ], 
+              [
+                -92.37029, 
+                33.010717
+              ], 
+              [
+                -92.469762, 
+                33.01201
+              ], 
+              [
+                -92.501383, 
+                33.01216
+              ], 
+              [
+                -92.503776, 
+                33.012161
+              ], 
+              [
+                -92.711289, 
+                33.014307
+              ], 
+              [
+                -92.715884, 
+                33.014398
+              ], 
+              [
+                -92.723553, 
+                33.014328
+              ], 
+              [
+                -92.724743, 
+                33.014347
+              ], 
+              [
+                -92.724994, 
+                33.014351
+              ], 
+              [
+                -92.733197, 
+                33.014347
+              ], 
+              [
+                -92.830798, 
+                33.015661
+              ], 
+              [
+                -92.844073, 
+                33.016034
+              ], 
+              [
+                -92.844286, 
+                33.01607
+              ], 
+              [
+                -92.854167, 
+                33.016132
+              ], 
+              [
+                -92.86751, 
+                33.016062
+              ], 
+              [
+                -92.946553, 
+                33.016807
+              ], 
+              [
+                -92.971137, 
+                33.017192
+              ], 
+              [
+                -92.988708, 
+                33.017298
+              ], 
+              [
+                -93.070686, 
+                33.017792
+              ], 
+              [
+                -93.073167, 
+                33.017898
+              ], 
+              [
+                -93.081428, 
+                33.017928
+              ], 
+              [
+                -93.100981, 
+                33.017786
+              ], 
+              [
+                -93.101443, 
+                33.01774
+              ], 
+              [
+                -93.154351, 
+                33.017856
+              ], 
+              [
+                -93.197402, 
+                33.017951
+              ], 
+              [
+                -93.238607, 
+                33.017992
+              ], 
+              [
+                -93.308181, 
+                33.018156
+              ], 
+              [
+                -93.308398, 
+                33.018179
+              ], 
+              [
+                -93.340353, 
+                33.018337
+              ], 
+              [
+                -93.377134, 
+                33.018234
+              ], 
+              [
+                -93.467042, 
+                33.018611
+              ], 
+              [
+                -93.489506, 
+                33.018443
+              ], 
+              [
+                -93.49052, 
+                33.018442
+              ], 
+              [
+                -93.490893, 
+                33.018442
+              ], 
+              [
+                -93.520971, 
+                33.018616
+              ], 
+              [
+                -93.520994, 
+                33.018616
+              ], 
+              [
+                -93.524916, 
+                33.018637
+              ], 
+              [
+                -93.531499, 
+                33.018643
+              ], 
+              [
+                -93.80493, 
+                33.019347
+              ], 
+              [
+                -93.814553, 
+                33.019372
+              ], 
+              [
+                -94.024475, 
+                33.019207
+              ], 
+              [
+                -94.027983, 
+                33.019139
+              ], 
+              [
+                -94.035839, 
+                33.019145
+              ], 
+              [
+                -94.041444, 
+                33.019188
+              ], 
+              [
+                -94.042964, 
+                33.019219
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 1, 
+      "properties": {
+        "CENSUSAREA": 52035.477, 
+        "GEO_ID": "0400000US05", 
+        "ISO": "US-AR", 
+        "LSAD": "", 
+        "NAME": "Arkansas", 
+        "NAME_1": "Arkansas", 
+        "STATE": "AR"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -120.248484, 
+                33.999329
+              ], 
+              [
+                -120.247393, 
+                34.001911
+              ], 
+              [
+                -120.238657, 
+                34.007592
+              ], 
+              [
+                -120.230001, 
+                34.010136
+              ], 
+              [
+                -120.221287, 
+                34.010367
+              ], 
+              [
+                -120.208478, 
+                34.005655
+              ], 
+              [
+                -120.19578, 
+                34.004284
+              ], 
+              [
+                -120.167306, 
+                34.008219
+              ], 
+              [
+                -120.151663, 
+                34.018126
+              ], 
+              [
+                -120.147647, 
+                34.024831
+              ], 
+              [
+                -120.140362, 
+                34.025974
+              ], 
+              [
+                -120.135853, 
+                34.026087
+              ], 
+              [
+                -120.115058, 
+                34.019866
+              ], 
+              [
+                -120.090182, 
+                34.019806
+              ], 
+              [
+                -120.073609, 
+                34.024477
+              ], 
+              [
+                -120.062778, 
+                34.031161
+              ], 
+              [
+                -120.061953, 
+                34.033976
+              ], 
+              [
+                -120.057637, 
+                34.03734
+              ], 
+              [
+                -120.055107, 
+                34.037729
+              ], 
+              [
+                -120.043259, 
+                34.035806
+              ], 
+              [
+                -120.044004, 
+                34.02482
+              ], 
+              [
+                -120.047798, 
+                34.021227
+              ], 
+              [
+                -120.050382, 
+                34.013331
+              ], 
+              [
+                -120.048926, 
+                34.009898
+              ], 
+              [
+                -120.046575, 
+                34.000002
+              ], 
+              [
+                -120.041311, 
+                33.994507
+              ], 
+              [
+                -120.025653, 
+                33.985553
+              ], 
+              [
+                -120.011123, 
+                33.979894
+              ], 
+              [
+                -120.003815, 
+                33.979547
+              ], 
+              [
+                -119.984316, 
+                33.983948
+              ], 
+              [
+                -119.978876, 
+                33.983081
+              ], 
+              [
+                -119.979913, 
+                33.969623
+              ], 
+              [
+                -119.976857, 
+                33.956693
+              ], 
+              [
+                -119.971141, 
+                33.950401
+              ], 
+              [
+                -119.97026, 
+                33.944359
+              ], 
+              [
+                -119.973691, 
+                33.942481
+              ], 
+              [
+                -120.00096, 
+                33.941554
+              ], 
+              [
+                -120.017715, 
+                33.936366
+              ], 
+              [
+                -120.046881, 
+                33.919597
+              ], 
+              [
+                -120.048315, 
+                33.917625
+              ], 
+              [
+                -120.048611, 
+                33.915775
+              ], 
+              [
+                -120.049682, 
+                33.914563
+              ], 
+              [
+                -120.077793, 
+                33.908886
+              ], 
+              [
+                -120.098601, 
+                33.907853
+              ], 
+              [
+                -120.105489, 
+                33.90428
+              ], 
+              [
+                -120.109137, 
+                33.899129
+              ], 
+              [
+                -120.121817, 
+                33.895712
+              ], 
+              [
+                -120.168974, 
+                33.91909
+              ], 
+              [
+                -120.179049, 
+                33.927994
+              ], 
+              [
+                -120.18984, 
+                33.947703
+              ], 
+              [
+                -120.192339, 
+                33.950266
+              ], 
+              [
+                -120.198602, 
+                33.952211
+              ], 
+              [
+                -120.200085, 
+                33.956904
+              ], 
+              [
+                -120.209372, 
+                33.972376
+              ], 
+              [
+                -120.224461, 
+                33.989059
+              ], 
+              [
+                -120.248484, 
+                33.999329
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -119.789798, 
+                34.05726
+              ], 
+              [
+                -119.770729, 
+                34.055051
+              ], 
+              [
+                -119.766081, 
+                34.05537
+              ], 
+              [
+                -119.763688, 
+                34.057155
+              ], 
+              [
+                -119.755521, 
+                34.056716
+              ], 
+              [
+                -119.739472, 
+                34.049299
+              ], 
+              [
+                -119.726437, 
+                34.047908
+              ], 
+              [
+                -119.712576, 
+                34.043265
+              ], 
+              [
+                -119.704628, 
+                34.037681
+              ], 
+              [
+                -119.686507, 
+                34.019805
+              ], 
+              [
+                -119.637742, 
+                34.013178
+              ], 
+              [
+                -119.619343, 
+                34.016468
+              ], 
+              [
+                -119.612226, 
+                34.021256
+              ], 
+              [
+                -119.604287, 
+                34.031561
+              ], 
+              [
+                -119.608798, 
+                34.035245
+              ], 
+              [
+                -119.609239, 
+                34.03735
+              ], 
+              [
+                -119.59324, 
+                34.049625
+              ], 
+              [
+                -119.57341, 
+                34.05011
+              ], 
+              [
+                -119.5667, 
+                34.053452
+              ], 
+              [
+                -119.529603, 
+                34.041155
+              ], 
+              [
+                -119.52064, 
+                34.034262
+              ], 
+              [
+                -119.52177, 
+                34.032247
+              ], 
+              [
+                -119.532413, 
+                34.024949
+              ], 
+              [
+                -119.538847, 
+                34.023988
+              ], 
+              [
+                -119.542449, 
+                34.021082
+              ], 
+              [
+                -119.54828, 
+                34.009819
+              ], 
+              [
+                -119.547072, 
+                34.005469
+              ], 
+              [
+                -119.554472, 
+                33.99782
+              ], 
+              [
+                -119.560464, 
+                33.99553
+              ], 
+              [
+                -119.575636, 
+                33.996009
+              ], 
+              [
+                -119.5902, 
+                33.989712
+              ], 
+              [
+                -119.596877, 
+                33.988611
+              ], 
+              [
+                -119.619082, 
+                33.987228
+              ], 
+              [
+                -119.621117, 
+                33.98899
+              ], 
+              [
+                -119.64771, 
+                33.987786
+              ], 
+              [
+                -119.662825, 
+                33.985889
+              ], 
+              [
+                -119.69011, 
+                33.972225
+              ], 
+              [
+                -119.706952, 
+                33.969178
+              ], 
+              [
+                -119.712363, 
+                33.965422
+              ], 
+              [
+                -119.714696, 
+                33.961439
+              ], 
+              [
+                -119.721206, 
+                33.959583
+              ], 
+              [
+                -119.742966, 
+                33.963877
+              ], 
+              [
+                -119.750438, 
+                33.963759
+              ], 
+              [
+                -119.758141, 
+                33.959212
+              ], 
+              [
+                -119.795938, 
+                33.962929
+              ], 
+              [
+                -119.842748, 
+                33.97034
+              ], 
+              [
+                -119.873358, 
+                33.980375
+              ], 
+              [
+                -119.877057, 
+                33.985757
+              ], 
+              [
+                -119.883033, 
+                34.000802
+              ], 
+              [
+                -119.884896, 
+                34.008814
+              ], 
+              [
+                -119.882531, 
+                34.011674
+              ], 
+              [
+                -119.876916, 
+                34.023527
+              ], 
+              [
+                -119.876329, 
+                34.032087
+              ], 
+              [
+                -119.892821, 
+                34.045529
+              ], 
+              [
+                -119.916216, 
+                34.058351
+              ], 
+              [
+                -119.923337, 
+                34.069361
+              ], 
+              [
+                -119.919155, 
+                34.07728
+              ], 
+              [
+                -119.912857, 
+                34.077508
+              ], 
+              [
+                -119.89113, 
+                34.072856
+              ], 
+              [
+                -119.857304, 
+                34.071298
+              ], 
+              [
+                -119.825865, 
+                34.059794
+              ], 
+              [
+                -119.818742, 
+                34.052997
+              ], 
+              [
+                -119.807825, 
+                34.052127
+              ], 
+              [
+                -119.789798, 
+                34.05726
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -120.46258, 
+                34.042627
+              ], 
+              [
+                -120.440248, 
+                34.036918
+              ], 
+              [
+                -120.418768, 
+                34.052093
+              ], 
+              [
+                -120.415287, 
+                34.05496
+              ], 
+              [
+                -120.411314, 
+                34.052869
+              ], 
+              [
+                -120.403613, 
+                34.050442
+              ], 
+              [
+                -120.396188, 
+                34.050187
+              ], 
+              [
+                -120.390906, 
+                34.051994
+              ], 
+              [
+                -120.374211, 
+                34.062658
+              ], 
+              [
+                -120.368813, 
+                34.06778
+              ], 
+              [
+                -120.368584, 
+                34.071214
+              ], 
+              [
+                -120.370176, 
+                34.074907
+              ], 
+              [
+                -120.368278, 
+                34.076465
+              ], 
+              [
+                -120.362251, 
+                34.073056
+              ], 
+              [
+                -120.354982, 
+                34.059256
+              ], 
+              [
+                -120.36029, 
+                34.05582
+              ], 
+              [
+                -120.358608, 
+                34.050235
+              ], 
+              [
+                -120.346946, 
+                34.046576
+              ], 
+              [
+                -120.331161, 
+                34.049097
+              ], 
+              [
+                -120.319032, 
+                34.041979
+              ], 
+              [
+                -120.313175, 
+                34.036576
+              ], 
+              [
+                -120.302122, 
+                34.023574
+              ], 
+              [
+                -120.304543, 
+                34.021171
+              ], 
+              [
+                -120.317052, 
+                34.018837
+              ], 
+              [
+                -120.347706, 
+                34.020114
+              ], 
+              [
+                -120.35532, 
+                34.017914
+              ], 
+              [
+                -120.35793, 
+                34.015029
+              ], 
+              [
+                -120.375143, 
+                34.018775
+              ], 
+              [
+                -120.409368, 
+                34.032198
+              ], 
+              [
+                -120.415225, 
+                34.032245
+              ], 
+              [
+                -120.419021, 
+                34.028949
+              ], 
+              [
+                -120.427408, 
+                34.025425
+              ], 
+              [
+                -120.454134, 
+                34.028081
+              ], 
+              [
+                -120.459635, 
+                34.031537
+              ], 
+              [
+                -120.465329, 
+                34.038448
+              ], 
+              [
+                -120.46258, 
+                34.042627
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -119.543842, 
+                33.280329
+              ], 
+              [
+                -119.532941, 
+                33.284728
+              ], 
+              [
+                -119.528141, 
+                33.284929
+              ], 
+              [
+                -119.50504, 
+                33.272829
+              ], 
+              [
+                -119.48278, 
+                33.263973
+              ], 
+              [
+                -119.465717, 
+                33.259239
+              ], 
+              [
+                -119.458466, 
+                33.254661
+              ], 
+              [
+                -119.429559, 
+                33.228167
+              ], 
+              [
+                -119.444269, 
+                33.21919
+              ], 
+              [
+                -119.464725, 
+                33.215432
+              ], 
+              [
+                -119.476029, 
+                33.21552
+              ], 
+              [
+                -119.500684, 
+                33.220569
+              ], 
+              [
+                -119.511659, 
+                33.223027
+              ], 
+              [
+                -119.517514, 
+                33.226737
+              ], 
+              [
+                -119.545872, 
+                33.233406
+              ], 
+              [
+                -119.564971, 
+                33.24744
+              ], 
+              [
+                -119.565641, 
+                33.250029
+              ], 
+              [
+                -119.566014, 
+                33.252639
+              ], 
+              [
+                -119.570642, 
+                33.257729
+              ], 
+              [
+                -119.578942, 
+                33.278628
+              ], 
+              [
+                -119.562042, 
+                33.271129
+              ], 
+              [
+                -119.555242, 
+                33.273429
+              ], 
+              [
+                -119.547642, 
+                33.280328
+              ], 
+              [
+                -119.543842, 
+                33.280329
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -119.422972, 
+                34.004368
+              ], 
+              [
+                -119.427589, 
+                34.006445
+              ], 
+              [
+                -119.437734, 
+                34.01
+              ], 
+              [
+                -119.441116, 
+                34.012426
+              ], 
+              [
+                -119.441226, 
+                34.014075
+              ], 
+              [
+                -119.433912, 
+                34.015975
+              ], 
+              [
+                -119.421376, 
+                34.015012
+              ], 
+              [
+                -119.411317, 
+                34.008005
+              ], 
+              [
+                -119.396251, 
+                34.005918
+              ], 
+              [
+                -119.389983, 
+                34.006099
+              ], 
+              [
+                -119.366591, 
+                34.016785
+              ], 
+              [
+                -119.357462, 
+                34.015919
+              ], 
+              [
+                -119.376396, 
+                34.010551
+              ], 
+              [
+                -119.391551, 
+                34.002505
+              ], 
+              [
+                -119.414528, 
+                34.004994
+              ], 
+              [
+                -119.422972, 
+                34.004368
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -118.524531, 
+                32.895488
+              ], 
+              [
+                -118.535823, 
+                32.90628
+              ], 
+              [
+                -118.551134, 
+                32.945155
+              ], 
+              [
+                -118.560887, 
+                32.957891
+              ], 
+              [
+                -118.573522, 
+                32.969183
+              ], 
+              [
+                -118.586928, 
+                33.008281
+              ], 
+              [
+                -118.596037, 
+                33.015357
+              ], 
+              [
+                -118.606559, 
+                33.01469
+              ], 
+              [
+                -118.605534, 
+                33.030999
+              ], 
+              [
+                -118.594033, 
+                33.035951
+              ], 
+              [
+                -118.57516, 
+                33.033961
+              ], 
+              [
+                -118.569013, 
+                33.029151
+              ], 
+              [
+                -118.564445, 
+                33.024914
+              ], 
+              [
+                -118.564527, 
+                33.018637
+              ], 
+              [
+                -118.559171, 
+                33.006291
+              ], 
+              [
+                -118.540069, 
+                32.980933
+              ], 
+              [
+                -118.529228, 
+                32.970921
+              ], 
+              [
+                -118.496811, 
+                32.933847
+              ], 
+              [
+                -118.485288, 
+                32.923545
+              ], 
+              [
+                -118.479039, 
+                32.920363
+              ], 
+              [
+                -118.460623, 
+                32.90951
+              ], 
+              [
+                -118.446771, 
+                32.895424
+              ], 
+              [
+                -118.369984, 
+                32.839273
+              ], 
+              [
+                -118.353504, 
+                32.821962
+              ], 
+              [
+                -118.356541, 
+                32.817311
+              ], 
+              [
+                -118.36053, 
+                32.819921
+              ], 
+              [
+                -118.379968, 
+                32.824545
+              ], 
+              [
+                -118.387375, 
+                32.825327
+              ], 
+              [
+                -118.394565, 
+                32.823978
+              ], 
+              [
+                -118.401268, 
+                32.820338
+              ], 
+              [
+                -118.425634, 
+                32.800595
+              ], 
+              [
+                -118.42943, 
+                32.805429
+              ], 
+              [
+                -118.428372, 
+                32.806872
+              ], 
+              [
+                -118.44492, 
+                32.820593
+              ], 
+              [
+                -118.476074, 
+                32.841754
+              ], 
+              [
+                -118.487908, 
+                32.84459
+              ], 
+              [
+                -118.496298, 
+                32.851572
+              ], 
+              [
+                -118.506902, 
+                32.868503
+              ], 
+              [
+                -118.508095, 
+                32.871321
+              ], 
+              [
+                -118.507193, 
+                32.876264
+              ], 
+              [
+                -118.524641, 
+                32.893175
+              ], 
+              [
+                -118.524531, 
+                32.895488
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -118.500212, 
+                33.449592
+              ], 
+              [
+                -118.499669, 
+                33.447879
+              ], 
+              [
+                -118.48557, 
+                33.446213
+              ], 
+              [
+                -118.477646, 
+                33.448392
+              ], 
+              [
+                -118.445812, 
+                33.428907
+              ], 
+              [
+                -118.423576, 
+                33.427258
+              ], 
+              [
+                -118.382037, 
+                33.409883
+              ], 
+              [
+                -118.370323, 
+                33.409285
+              ], 
+              [
+                -118.368301, 
+                33.40711
+              ], 
+              [
+                -118.365094, 
+                33.388374
+              ], 
+              [
+                -118.32446, 
+                33.348782
+              ], 
+              [
+                -118.316083, 
+                33.342928
+              ], 
+              [
+                -118.310213, 
+                33.335795
+              ], 
+              [
+                -118.303174, 
+                33.320264
+              ], 
+              [
+                -118.305084, 
+                33.310323
+              ], 
+              [
+                -118.316787, 
+                33.301137
+              ], 
+              [
+                -118.325244, 
+                33.299075
+              ], 
+              [
+                -118.343249, 
+                33.305234
+              ], 
+              [
+                -118.360332, 
+                33.31533
+              ], 
+              [
+                -118.374768, 
+                33.320065
+              ], 
+              [
+                -118.402941, 
+                33.320901
+              ], 
+              [
+                -118.440047, 
+                33.318638
+              ], 
+              [
+                -118.456309, 
+                33.32182
+              ], 
+              [
+                -118.465368, 
+                33.326056
+              ], 
+              [
+                -118.481886, 
+                33.344123
+              ], 
+              [
+                -118.48877, 
+                33.356649
+              ], 
+              [
+                -118.482609, 
+                33.369914
+              ], 
+              [
+                -118.478465, 
+                33.38632
+              ], 
+              [
+                -118.484949, 
+                33.412131
+              ], 
+              [
+                -118.48875, 
+                33.419826
+              ], 
+              [
+                -118.503952, 
+                33.424234
+              ], 
+              [
+                -118.515914, 
+                33.422417
+              ], 
+              [
+                -118.516267, 
+                33.425075
+              ], 
+              [
+                -118.52323, 
+                33.430733
+              ], 
+              [
+                -118.53738, 
+                33.434608
+              ], 
+              [
+                -118.558715, 
+                33.433419
+              ], 
+              [
+                -118.563442, 
+                33.434381
+              ], 
+              [
+                -118.570927, 
+                33.439351
+              ], 
+              [
+                -118.575901, 
+                33.448261
+              ], 
+              [
+                -118.593969, 
+                33.467198
+              ], 
+              [
+                -118.601185, 
+                33.469853
+              ], 
+              [
+                -118.60403, 
+                33.47654
+              ], 
+              [
+                -118.603375, 
+                33.478098
+              ], 
+              [
+                -118.598783, 
+                33.477939
+              ], 
+              [
+                -118.585936, 
+                33.473819
+              ], 
+              [
+                -118.54453, 
+                33.474119
+              ], 
+              [
+                -118.530702, 
+                33.468071
+              ], 
+              [
+                -118.500212, 
+                33.449592
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -122.418698, 
+                37.852717
+              ], 
+              [
+                -122.434403, 
+                37.852434
+              ], 
+              [
+                -122.443302, 
+                37.855448
+              ], 
+              [
+                -122.446316, 
+                37.861046
+              ], 
+              [
+                -122.438565, 
+                37.868367
+              ], 
+              [
+                -122.430958, 
+                37.872242
+              ], 
+              [
+                -122.421439, 
+                37.869969
+              ], 
+              [
+                -122.421341, 
+                37.869946
+              ], 
+              [
+                -122.41847, 
+                37.861764
+              ], 
+              [
+                -122.41847, 
+                37.852721
+              ], 
+              [
+                -122.418698, 
+                37.852717
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -123.013916, 
+                37.700355
+              ], 
+              [
+                -123.013897, 
+                37.704478
+              ], 
+              [
+                -123.012194, 
+                37.706749
+              ], 
+              [
+                -123.004489, 
+                37.706262
+              ], 
+              [
+                -123.00019, 
+                37.702937
+              ], 
+              [
+                -122.997189, 
+                37.697909
+              ], 
+              [
+                -123.000677, 
+                37.690203
+              ], 
+              [
+                -123.005543, 
+                37.689392
+              ], 
+              [
+                -123.011464, 
+                37.691907
+              ], 
+              [
+                -123.014303, 
+                37.696205
+              ], 
+              [
+                -123.013916, 
+                37.700355
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -122.3785, 
+                37.826505
+              ], 
+              [
+                -122.377879, 
+                37.830648
+              ], 
+              [
+                -122.369941, 
+                37.832137
+              ], 
+              [
+                -122.363244, 
+                37.823951
+              ], 
+              [
+                -122.358779, 
+                37.814278
+              ], 
+              [
+                -122.362661, 
+                37.807577
+              ], 
+              [
+                -122.372422, 
+                37.811301
+              ], 
+              [
+                -122.37267, 
+                37.81651
+              ], 
+              [
+                -122.3785, 
+                37.826505
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -124.065521, 
+                41.464739
+              ], 
+              [
+                -124.066057, 
+                41.470258
+              ], 
+              [
+                -124.075917, 
+                41.501757
+              ], 
+              [
+                -124.081427, 
+                41.511228
+              ], 
+              [
+                -124.081987, 
+                41.547761
+              ], 
+              [
+                -124.092404, 
+                41.553615
+              ], 
+              [
+                -124.101123, 
+                41.569192
+              ], 
+              [
+                -124.101403, 
+                41.578524
+              ], 
+              [
+                -124.097385, 
+                41.585251
+              ], 
+              [
+                -124.100961, 
+                41.602499
+              ], 
+              [
+                -124.114413, 
+                41.616768
+              ], 
+              [
+                -124.116037, 
+                41.628849
+              ], 
+              [
+                -124.120225, 
+                41.640354
+              ], 
+              [
+                -124.135552, 
+                41.657307
+              ], 
+              [
+                -124.139354, 
+                41.671652
+              ], 
+              [
+                -124.138373, 
+                41.678881
+              ], 
+              [
+                -124.143479, 
+                41.709284
+              ], 
+              [
+                -124.147412, 
+                41.717955
+              ], 
+              [
+                -124.154246, 
+                41.728801
+              ], 
+              [
+                -124.164716, 
+                41.740126
+              ], 
+              [
+                -124.17739, 
+                41.745756
+              ], 
+              [
+                -124.185363, 
+                41.739351
+              ], 
+              [
+                -124.19104, 
+                41.736079
+              ], 
+              [
+                -124.194953, 
+                41.736778
+              ], 
+              [
+                -124.203843, 
+                41.747035
+              ], 
+              [
+                -124.23972, 
+                41.7708
+              ], 
+              [
+                -124.242288, 
+                41.772034
+              ], 
+              [
+                -124.248704, 
+                41.771459
+              ], 
+              [
+                -124.255994, 
+                41.783014
+              ], 
+              [
+                -124.245027, 
+                41.7923
+              ], 
+              [
+                -124.230678, 
+                41.818681
+              ], 
+              [
+                -124.219592, 
+                41.846432
+              ], 
+              [
+                -124.208439, 
+                41.888192
+              ], 
+              [
+                -124.203402, 
+                41.940964
+              ], 
+              [
+                -124.204948, 
+                41.983441
+              ], 
+              [
+                -124.211605, 
+                41.99846
+              ], 
+              [
+                -124.100921, 
+                41.996956
+              ], 
+              [
+                -124.100216, 
+                41.996842
+              ], 
+              [
+                -124.087827, 
+                41.996891
+              ], 
+              [
+                -124.086661, 
+                41.996869
+              ], 
+              [
+                -123.821472, 
+                41.995473
+              ], 
+              [
+                -123.624554, 
+                41.999837
+              ], 
+              [
+                -123.518075, 
+                42.000436
+              ], 
+              [
+                -123.501997, 
+                42.000527
+              ], 
+              [
+                -123.498896, 
+                42.000474
+              ], 
+              [
+                -123.49883, 
+                42.000525
+              ], 
+              [
+                -123.347562, 
+                41.999108
+              ], 
+              [
+                -123.230764, 
+                42.003845
+              ], 
+              [
+                -123.230762, 
+                42.003845
+              ], 
+              [
+                -123.154908, 
+                42.008036
+              ], 
+              [
+                -123.045254, 
+                42.003049
+              ], 
+              [
+                -123.001152, 
+                42.003
+              ], 
+              [
+                -122.634739, 
+                42.004858
+              ], 
+              [
+                -122.501135, 
+                42.00846
+              ], 
+              [
+                -122.378193, 
+                42.009518
+              ], 
+              [
+                -122.289533, 
+                42.007764
+              ], 
+              [
+                -122.289527, 
+                42.007764
+              ], 
+              [
+                -122.161328, 
+                42.007637
+              ], 
+              [
+                -122.160438, 
+                42.007637
+              ], 
+              [
+                -122.156666, 
+                42.007384
+              ], 
+              [
+                -122.155408, 
+                42.007429
+              ], 
+              [
+                -122.001119, 
+                42.004017
+              ], 
+              [
+                -121.708199, 
+                42.000815
+              ], 
+              [
+                -121.705045, 
+                42.000766
+              ], 
+              [
+                -121.689159, 
+                42.000584
+              ], 
+              [
+                -121.675348, 
+                42.000351
+              ], 
+              [
+                -121.580865, 
+                41.998668
+              ], 
+              [
+                -121.52025, 
+                41.997983
+              ], 
+              [
+                -121.44754, 
+                41.997169
+              ], 
+              [
+                -121.43961, 
+                41.99708
+              ], 
+              [
+                -121.434977, 
+                41.997022
+              ], 
+              [
+                -121.376101, 
+                41.997026
+              ], 
+              [
+                -121.360253, 
+                41.99668
+              ], 
+              [
+                -121.340517, 
+                41.99622
+              ], 
+              [
+                -121.335734, 
+                41.996518
+              ], 
+              [
+                -121.334385, 
+                41.996655
+              ], 
+              [
+                -121.154347, 
+                41.996352
+              ], 
+              [
+                -121.035195, 
+                41.993323
+              ], 
+              [
+                -120.879481, 
+                41.993781
+              ], 
+              [
+                -120.693941, 
+                41.993676
+              ], 
+              [
+                -120.692219, 
+                41.993677
+              ], 
+              [
+                -120.326005, 
+                41.993122
+              ], 
+              [
+                -120.286424, 
+                41.993058
+              ], 
+              [
+                -119.999168, 
+                41.99454
+              ], 
+              [
+                -119.999866, 
+                41.183974
+              ], 
+              [
+                -119.999358, 
+                40.873101
+              ], 
+              [
+                -119.999232, 
+                40.867454
+              ], 
+              [
+                -119.999231, 
+                40.865899
+              ], 
+              [
+                -119.995926, 
+                40.499901
+              ], 
+              [
+                -119.996155, 
+                40.321838
+              ], 
+              [
+                -119.996155, 
+                40.32125
+              ], 
+              [
+                -119.996182, 
+                40.263532
+              ], 
+              [
+                -119.996183, 
+                40.262461
+              ], 
+              [
+                -119.997124, 
+                40.126363
+              ], 
+              [
+                -119.997234, 
+                40.091591
+              ], 
+              [
+                -119.997175, 
+                40.077245
+              ], 
+              [
+                -119.997291, 
+                40.071803
+              ], 
+              [
+                -120.000607, 
+                39.780779
+              ], 
+              [
+                -120.000502, 
+                39.779956
+              ], 
+              [
+                -120.001319, 
+                39.72242
+              ], 
+              [
+                -120.001319, 
+                39.722416
+              ], 
+              [
+                -120.003116, 
+                39.445113
+              ], 
+              [
+                -120.003117, 
+                39.445045
+              ], 
+              [
+                -120.005318, 
+                39.316479
+              ], 
+              [
+                -120.00532, 
+                39.31635
+              ], 
+              [
+                -120.005413, 
+                39.313848
+              ], 
+              [
+                -120.005414, 
+                39.313345
+              ], 
+              [
+                -120.005743, 
+                39.228664
+              ], 
+              [
+                -120.005746, 
+                39.22521
+              ], 
+              [
+                -120.004504, 
+                39.165599
+              ], 
+              [
+                -120.003402, 
+                39.112687
+              ], 
+              [
+                -120.002461, 
+                39.067489
+              ], 
+              [
+                -120.001014, 
+                38.999574
+              ], 
+              [
+                -119.904315, 
+                38.933324
+              ], 
+              [
+                -119.587679, 
+                38.714734
+              ], 
+              [
+                -119.587066, 
+                38.714345
+              ], 
+              [
+                -119.585437, 
+                38.713212
+              ], 
+              [
+                -119.494183, 
+                38.649852
+              ], 
+              [
+                -119.494022, 
+                38.649734
+              ], 
+              [
+                -119.450612, 
+                38.619964
+              ], 
+              [
+                -119.450623, 
+                38.619965
+              ], 
+              [
+                -119.328498, 
+                38.534648
+              ], 
+              [
+                -119.156863, 
+                38.414743
+              ], 
+              [
+                -119.125982, 
+                38.39317
+              ], 
+              [
+                -118.746598, 
+                38.124926
+              ], 
+              [
+                -118.428581, 
+                37.895613
+              ], 
+              [
+                -118.039798, 
+                37.615273
+              ], 
+              [
+                -118.039849, 
+                37.615245
+              ], 
+              [
+                -117.832726, 
+                37.464929
+              ], 
+              [
+                -117.500909, 
+                37.220282
+              ], 
+              [
+                -117.166187, 
+                36.970862
+              ], 
+              [
+                -117.000895, 
+                36.847694
+              ], 
+              [
+                -116.488233, 
+                36.459097
+              ], 
+              [
+                -116.097216, 
+                36.158346
+              ], 
+              [
+                -116.093601, 
+                36.155805
+              ], 
+              [
+                -115.912858, 
+                36.015359
+              ], 
+              [
+                -115.892975, 
+                35.999967
+              ], 
+              [
+                -115.84608, 
+                35.963596
+              ], 
+              [
+                -115.689302, 
+                35.842003
+              ], 
+              [
+                -115.648029, 
+                35.809629
+              ], 
+              [
+                -115.647683, 
+                35.809358
+              ], 
+              [
+                -115.647202, 
+                35.808995
+              ], 
+              [
+                -115.406079, 
+                35.618613
+              ], 
+              [
+                -115.404537, 
+                35.617605
+              ], 
+              [
+                -115.393996, 
+                35.609344
+              ], 
+              [
+                -115.391535, 
+                35.607271
+              ], 
+              [
+                -115.388866, 
+                35.605171
+              ], 
+              [
+                -115.303743, 
+                35.538207
+              ], 
+              [
+                -115.271342, 
+                35.51266
+              ], 
+              [
+                -115.225273, 
+                35.475907
+              ], 
+              [
+                -115.160599, 
+                35.424313
+              ], 
+              [
+                -115.160068, 
+                35.424129
+              ], 
+              [
+                -115.146788, 
+                35.413662
+              ], 
+              [
+                -115.145813, 
+                35.413182
+              ], 
+              [
+                -114.92548, 
+                35.237054
+              ], 
+              [
+                -114.925381, 
+                35.237039
+              ], 
+              [
+                -114.80503, 
+                35.140284
+              ], 
+              [
+                -114.804249, 
+                35.139689
+              ], 
+              [
+                -114.633013, 
+                35.002085
+              ], 
+              [
+                -114.62919, 
+                34.991887
+              ], 
+              [
+                -114.629015, 
+                34.986148
+              ], 
+              [
+                -114.630877, 
+                34.907263
+              ], 
+              [
+                -114.636725, 
+                34.889107
+              ], 
+              [
+                -114.635176, 
+                34.875003
+              ], 
+              [
+                -114.633051, 
+                34.869971
+              ], 
+              [
+                -114.552682, 
+                34.766871
+              ], 
+              [
+                -114.465607, 
+                34.69226
+              ], 
+              [
+                -114.452547, 
+                34.653494
+              ], 
+              [
+                -114.339627, 
+                34.451435
+              ], 
+              [
+                -114.264317, 
+                34.401329
+              ], 
+              [
+                -114.199482, 
+                34.361373
+              ], 
+              [
+                -114.176909, 
+                34.349306
+              ], 
+              [
+                -114.138282, 
+                34.30323
+              ], 
+              [
+                -114.131489, 
+                34.260387
+              ], 
+              [
+                -114.133264, 
+                34.258462
+              ], 
+              [
+                -114.164476, 
+                34.251667
+              ], 
+              [
+                -114.225861, 
+                34.201774
+              ], 
+              [
+                -114.244191, 
+                34.179625
+              ], 
+              [
+                -114.312592, 
+                34.144453
+              ], 
+              [
+                -114.321618, 
+                34.138093
+              ], 
+              [
+                -114.366521, 
+                34.118575
+              ], 
+              [
+                -114.390565, 
+                34.110084
+              ], 
+              [
+                -114.401352, 
+                34.111652
+              ], 
+              [
+                -114.411681, 
+                34.110031
+              ], 
+              [
+                -114.420499, 
+                34.103466
+              ], 
+              [
+                -114.43338, 
+                34.088413
+              ], 
+              [
+                -114.435429, 
+                34.079727
+              ], 
+              [
+                -114.434949, 
+                34.037784
+              ], 
+              [
+                -114.438266, 
+                34.022609
+              ], 
+              [
+                -114.46361, 
+                33.993431
+              ], 
+              [
+                -114.499883, 
+                33.961789
+              ], 
+              [
+                -114.518434, 
+                33.917518
+              ], 
+              [
+                -114.525539, 
+                33.838614
+              ], 
+              [
+                -114.523365, 
+                33.80612
+              ], 
+              [
+                -114.50434, 
+                33.756381
+              ], 
+              [
+                -114.494197, 
+                33.707922
+              ], 
+              [
+                -114.496489, 
+                33.696901
+              ], 
+              [
+                -114.519113, 
+                33.688473
+              ], 
+              [
+                -114.523959, 
+                33.685879
+              ], 
+              [
+                -114.530348, 
+                33.679245
+              ], 
+              [
+                -114.540617, 
+                33.591412
+              ], 
+              [
+                -114.5403, 
+                33.580615
+              ], 
+              [
+                -114.535965, 
+                33.569154
+              ], 
+              [
+                -114.535664, 
+                33.568788
+              ], 
+              [
+                -114.558898, 
+                33.531819
+              ], 
+              [
+                -114.594534, 
+                33.495059
+              ], 
+              [
+                -114.622918, 
+                33.456561
+              ], 
+              [
+                -114.627125, 
+                33.433554
+              ], 
+              [
+                -114.665278, 
+                33.415358
+              ], 
+              [
+                -114.721233, 
+                33.396912
+              ], 
+              [
+                -114.700103, 
+                33.341045
+              ], 
+              [
+                -114.672088, 
+                33.258499
+              ], 
+              [
+                -114.67536, 
+                33.185489
+              ], 
+              [
+                -114.679359, 
+                33.159519
+              ], 
+              [
+                -114.687074, 
+                33.142196
+              ], 
+              [
+                -114.696829, 
+                33.131209
+              ], 
+              [
+                -114.706175, 
+                33.105335
+              ], 
+              [
+                -114.707819, 
+                33.091102
+              ], 
+              [
+                -114.675104, 
+                33.047532
+              ], 
+              [
+                -114.62387, 
+                33.02872
+              ], 
+              [
+                -114.606282, 
+                33.025703
+              ], 
+              [
+                -114.589778, 
+                33.026228
+              ], 
+              [
+                -114.584765, 
+                33.028231
+              ], 
+              [
+                -114.578287, 
+                33.035375
+              ], 
+              [
+                -114.571653, 
+                33.036624
+              ], 
+              [
+                -114.523578, 
+                33.030961
+              ], 
+              [
+                -114.516912, 
+                33.026871
+              ], 
+              [
+                -114.511343, 
+                33.023455
+              ], 
+              [
+                -114.468605, 
+                32.971649
+              ], 
+              [
+                -114.46289, 
+                32.905797
+              ], 
+              [
+                -114.465715, 
+                32.87942
+              ], 
+              [
+                -114.465715, 
+                32.879191
+              ], 
+              [
+                -114.496284, 
+                32.822326
+              ], 
+              [
+                -114.496827, 
+                32.822119
+              ], 
+              [
+                -114.615733, 
+                32.729427
+              ], 
+              [
+                -114.615585, 
+                32.728446
+              ], 
+              [
+                -114.65826, 
+                32.733799
+              ], 
+              [
+                -114.65884, 
+                32.73383
+              ], 
+              [
+                -114.677091, 
+                32.736218
+              ], 
+              [
+                -114.678632, 
+                32.736614
+              ], 
+              [
+                -114.719633, 
+                32.718763
+              ], 
+              [
+                -115.465164, 
+                32.6671
+              ], 
+              [
+                -115.875842, 
+                32.636424
+              ], 
+              [
+                -116.106159, 
+                32.618328
+              ], 
+              [
+                -116.390091, 
+                32.59602
+              ], 
+              [
+                -117.118865, 
+                32.534661
+              ], 
+              [
+                -117.124862, 
+                32.534156
+              ], 
+              [
+                -117.133363, 
+                32.575625
+              ], 
+              [
+                -117.132963, 
+                32.597054
+              ], 
+              [
+                -117.136664, 
+                32.618754
+              ], 
+              [
+                -117.139464, 
+                32.627054
+              ], 
+              [
+                -117.159865, 
+                32.660652
+              ], 
+              [
+                -117.168866, 
+                32.671952
+              ], 
+              [
+                -117.180366, 
+                32.681652
+              ], 
+              [
+                -117.192967, 
+                32.687751
+              ], 
+              [
+                -117.196767, 
+                32.688851
+              ], 
+              [
+                -117.213068, 
+                32.687751
+              ], 
+              [
+                -117.223868, 
+                32.683051
+              ], 
+              [
+                -117.236239, 
+                32.671353
+              ], 
+              [
+                -117.246069, 
+                32.669352
+              ], 
+              [
+                -117.255169, 
+                32.700051
+              ], 
+              [
+                -117.25757, 
+                32.72605
+              ], 
+              [
+                -117.25537, 
+                32.745449
+              ], 
+              [
+                -117.25257, 
+                32.752949
+              ], 
+              [
+                -117.25497, 
+                32.786948
+              ], 
+              [
+                -117.26107, 
+                32.803148
+              ], 
+              [
+                -117.280971, 
+                32.822247
+              ], 
+              [
+                -117.28217, 
+                32.839547
+              ], 
+              [
+                -117.28117, 
+                32.843047
+              ], 
+              [
+                -117.27387, 
+                32.851447
+              ], 
+              [
+                -117.26497, 
+                32.848947
+              ], 
+              [
+                -117.26067, 
+                32.852647
+              ], 
+              [
+                -117.25617, 
+                32.859447
+              ], 
+              [
+                -117.25167, 
+                32.874346
+              ], 
+              [
+                -117.25447, 
+                32.900146
+              ], 
+              [
+                -117.26047, 
+                32.931245
+              ], 
+              [
+                -117.262547, 
+                32.939542
+              ], 
+              [
+                -117.28077, 
+                33.012343
+              ], 
+              [
+                -117.29337, 
+                33.034642
+              ], 
+              [
+                -117.309771, 
+                33.07454
+              ], 
+              [
+                -117.315278, 
+                33.093504
+              ], 
+              [
+                -117.328359, 
+                33.121842
+              ], 
+              [
+                -117.359484, 
+                33.164231
+              ], 
+              [
+                -117.362572, 
+                33.168437
+              ], 
+              [
+                -117.39148, 
+                33.202762
+              ], 
+              [
+                -117.401926, 
+                33.213598
+              ], 
+              [
+                -117.445583, 
+                33.268517
+              ], 
+              [
+                -117.469794, 
+                33.296417
+              ], 
+              [
+                -117.50565, 
+                33.334063
+              ], 
+              [
+                -117.547693, 
+                33.365491
+              ], 
+              [
+                -117.571722, 
+                33.378988
+              ], 
+              [
+                -117.59588, 
+                33.386629
+              ], 
+              [
+                -117.607905, 
+                33.406317
+              ], 
+              [
+                -117.631682, 
+                33.430528
+              ], 
+              [
+                -117.645582, 
+                33.440728
+              ], 
+              [
+                -117.645592, 
+                33.440733
+              ], 
+              [
+                -117.684584, 
+                33.461927
+              ], 
+              [
+                -117.689284, 
+                33.460155
+              ], 
+              [
+                -117.691984, 
+                33.456627
+              ], 
+              [
+                -117.691384, 
+                33.454028
+              ], 
+              [
+                -117.715349, 
+                33.460556
+              ], 
+              [
+                -117.726486, 
+                33.483427
+              ], 
+              [
+                -117.761387, 
+                33.516326
+              ], 
+              [
+                -117.784888, 
+                33.541525
+              ], 
+              [
+                -117.801288, 
+                33.546324
+              ], 
+              [
+                -117.814188, 
+                33.552224
+              ], 
+              [
+                -117.840289, 
+                33.573523
+              ], 
+              [
+                -117.87679, 
+                33.592322
+              ], 
+              [
+                -117.89979, 
+                33.599622
+              ], 
+              [
+                -117.927091, 
+                33.605521
+              ], 
+              [
+                -117.940591, 
+                33.620021
+              ], 
+              [
+                -117.957114, 
+                33.629466
+              ], 
+              [
+                -118.000593, 
+                33.654319
+              ], 
+              [
+                -118.029694, 
+                33.676418
+              ], 
+              [
+                -118.064895, 
+                33.711018
+              ], 
+              [
+                -118.088896, 
+                33.729817
+              ], 
+              [
+                -118.101097, 
+                33.734117
+              ], 
+              [
+                -118.116703, 
+                33.743549
+              ], 
+              [
+                -118.132698, 
+                33.753217
+              ], 
+              [
+                -118.1569, 
+                33.760317
+              ], 
+              [
+                -118.1755, 
+                33.763617
+              ], 
+              [
+                -118.180831, 
+                33.763072
+              ], 
+              [
+                -118.187701, 
+                33.749218
+              ], 
+              [
+                -118.1837, 
+                33.736118
+              ], 
+              [
+                -118.181367, 
+                33.717367
+              ], 
+              [
+                -118.207476, 
+                33.716905
+              ], 
+              [
+                -118.258687, 
+                33.703741
+              ], 
+              [
+                -118.277208, 
+                33.707091
+              ], 
+              [
+                -118.297104, 
+                33.708319
+              ], 
+              [
+                -118.317205, 
+                33.712818
+              ], 
+              [
+                -118.354705, 
+                33.732317
+              ], 
+              [
+                -118.360505, 
+                33.736817
+              ], 
+              [
+                -118.385006, 
+                33.741417
+              ], 
+              [
+                -118.396606, 
+                33.735917
+              ], 
+              [
+                -118.411211, 
+                33.741985
+              ], 
+              [
+                -118.428407, 
+                33.774715
+              ], 
+              [
+                -118.423407, 
+                33.782015
+              ], 
+              [
+                -118.405007, 
+                33.800215
+              ], 
+              [
+                -118.394376, 
+                33.804289
+              ], 
+              [
+                -118.394307, 
+                33.804315
+              ], 
+              [
+                -118.391507, 
+                33.815415
+              ], 
+              [
+                -118.392107, 
+                33.840915
+              ], 
+              [
+                -118.412708, 
+                33.883913
+              ], 
+              [
+                -118.44241, 
+                33.940312
+              ], 
+              [
+                -118.460611, 
+                33.969111
+              ], 
+              [
+                -118.482729, 
+                33.995912
+              ], 
+              [
+                -118.484212, 
+                33.99771
+              ], 
+              [
+                -118.502813, 
+                34.015509
+              ], 
+              [
+                -118.519514, 
+                34.027509
+              ], 
+              [
+                -118.543115, 
+                34.038508
+              ], 
+              [
+                -118.569235, 
+                34.04164
+              ], 
+              [
+                -118.603572, 
+                34.039048
+              ], 
+              [
+                -118.609652, 
+                34.036424
+              ], 
+              [
+                -118.668358, 
+                34.038887
+              ], 
+              [
+                -118.67543, 
+                34.037479
+              ], 
+              [
+                -118.679366, 
+                34.033255
+              ], 
+              [
+                -118.706215, 
+                34.029383
+              ], 
+              [
+                -118.732391, 
+                34.032743
+              ], 
+              [
+                -118.744952, 
+                34.032103
+              ], 
+              [
+                -118.783433, 
+                34.021543
+              ], 
+              [
+                -118.787094, 
+                34.019545
+              ], 
+              [
+                -118.805114, 
+                34.001239
+              ], 
+              [
+                -118.821579, 
+                34.013959
+              ], 
+              [
+                -118.84038, 
+                34.027527
+              ], 
+              [
+                -118.854653, 
+                34.034215
+              ], 
+              [
+                -118.896159, 
+                34.039207
+              ], 
+              [
+                -118.928048, 
+                34.045847
+              ], 
+              [
+                -118.938081, 
+                34.043383
+              ], 
+              [
+                -118.944887, 
+                34.04534
+              ], 
+              [
+                -118.954722, 
+                34.048167
+              ], 
+              [
+                -118.977751, 
+                34.059822
+              ], 
+              [
+                -118.99698, 
+                34.065943
+              ], 
+              [
+                -119.004644, 
+                34.066231
+              ], 
+              [
+                -119.037494, 
+                34.083111
+              ], 
+              [
+                -119.069959, 
+                34.09047
+              ], 
+              [
+                -119.088536, 
+                34.09831
+              ], 
+              [
+                -119.098216, 
+                34.099334
+              ], 
+              [
+                -119.109784, 
+                34.094566
+              ], 
+              [
+                -119.130169, 
+                34.100102
+              ], 
+              [
+                -119.159554, 
+                34.119653
+              ], 
+              [
+                -119.18864, 
+                34.139005
+              ], 
+              [
+                -119.20314, 
+                34.144505
+              ], 
+              [
+                -119.211241, 
+                34.144905
+              ], 
+              [
+                -119.216441, 
+                34.146105
+              ], 
+              [
+                -119.227743, 
+                34.161728
+              ], 
+              [
+                -119.237142, 
+                34.175804
+              ], 
+              [
+                -119.257043, 
+                34.213304
+              ], 
+              [
+                -119.265927, 
+                34.234609
+              ], 
+              [
+                -119.270144, 
+                34.252903
+              ], 
+              [
+                -119.278644, 
+                34.266902
+              ], 
+              [
+                -119.290945, 
+                34.274902
+              ], 
+              [
+                -119.302131, 
+                34.272761
+              ], 
+              [
+                -119.313034, 
+                34.275689
+              ], 
+              [
+                -119.337475, 
+                34.290576
+              ], 
+              [
+                -119.349187, 
+                34.304383
+              ], 
+              [
+                -119.370356, 
+                34.319486
+              ], 
+              [
+                -119.37578, 
+                34.321118
+              ], 
+              [
+                -119.388249, 
+                34.317398
+              ], 
+              [
+                -119.390449, 
+                34.318198
+              ], 
+              [
+                -119.42777, 
+                34.353016
+              ], 
+              [
+                -119.431066, 
+                34.355297
+              ], 
+              [
+                -119.435888, 
+                34.355839
+              ], 
+              [
+                -119.461036, 
+                34.374064
+              ], 
+              [
+                -119.472678, 
+                34.375628
+              ], 
+              [
+                -119.478265, 
+                34.377197
+              ], 
+              [
+                -119.510655, 
+                34.386295
+              ], 
+              [
+                -119.536957, 
+                34.395495
+              ], 
+              [
+                -119.559459, 
+                34.413395
+              ], 
+              [
+                -119.616862, 
+                34.420995
+              ], 
+              [
+                -119.638864, 
+                34.415696
+              ], 
+              [
+                -119.648664, 
+                34.417396
+              ], 
+              [
+                -119.671866, 
+                34.416096
+              ], 
+              [
+                -119.688167, 
+                34.412497
+              ], 
+              [
+                -119.684666, 
+                34.408297
+              ], 
+              [
+                -119.691749, 
+                34.403154
+              ], 
+              [
+                -119.709067, 
+                34.395397
+              ], 
+              [
+                -119.729369, 
+                34.395897
+              ], 
+              [
+                -119.74547, 
+                34.402898
+              ], 
+              [
+                -119.785871, 
+                34.415997
+              ], 
+              [
+                -119.794771, 
+                34.417597
+              ], 
+              [
+                -119.835771, 
+                34.415796
+              ], 
+              [
+                -119.853771, 
+                34.407996
+              ], 
+              [
+                -119.873971, 
+                34.408795
+              ], 
+              [
+                -119.925227, 
+                34.433931
+              ], 
+              [
+                -119.956433, 
+                34.435288
+              ], 
+              [
+                -119.971951, 
+                34.444641
+              ], 
+              [
+                -120.008077, 
+                34.460447
+              ], 
+              [
+                -120.038828, 
+                34.463434
+              ], 
+              [
+                -120.050682, 
+                34.461651
+              ], 
+              [
+                -120.088591, 
+                34.460208
+              ], 
+              [
+                -120.097212, 
+                34.461809
+              ], 
+              [
+                -120.118411, 
+                34.469927
+              ], 
+              [
+                -120.141165, 
+                34.473405
+              ], 
+              [
+                -120.183505, 
+                34.470372
+              ], 
+              [
+                -120.225498, 
+                34.470587
+              ], 
+              [
+                -120.238002, 
+                34.468098
+              ], 
+              [
+                -120.25777, 
+                34.467451
+              ], 
+              [
+                -120.283001, 
+                34.468354
+              ], 
+              [
+                -120.295051, 
+                34.470623
+              ], 
+              [
+                -120.299169, 
+                34.469731
+              ], 
+              [
+                -120.301822, 
+                34.467077
+              ], 
+              [
+                -120.341369, 
+                34.458789
+              ], 
+              [
+                -120.441975, 
+                34.451512
+              ], 
+              [
+                -120.451425, 
+                34.447094
+              ], 
+              [
+                -120.471376, 
+                34.447846
+              ], 
+              [
+                -120.47661, 
+                34.475131
+              ], 
+              [
+                -120.480372, 
+                34.481059
+              ], 
+              [
+                -120.490523, 
+                34.490075
+              ], 
+              [
+                -120.511421, 
+                34.522953
+              ], 
+              [
+                -120.524776, 
+                34.531291
+              ], 
+              [
+                -120.581293, 
+                34.556959
+              ], 
+              [
+                -120.608355, 
+                34.556656
+              ], 
+              [
+                -120.612005, 
+                34.553564
+              ], 
+              [
+                -120.622575, 
+                34.554017
+              ], 
+              [
+                -120.637805, 
+                34.56622
+              ], 
+              [
+                -120.645739, 
+                34.581035
+              ], 
+              [
+                -120.640244, 
+                34.604406
+              ], 
+              [
+                -120.625127, 
+                34.634489
+              ], 
+              [
+                -120.60197, 
+                34.692095
+              ], 
+              [
+                -120.60045, 
+                34.70464
+              ], 
+              [
+                -120.601672, 
+                34.709721
+              ], 
+              [
+                -120.614852, 
+                34.730709
+              ], 
+              [
+                -120.62632, 
+                34.738072
+              ], 
+              [
+                -120.637415, 
+                34.755895
+              ], 
+              [
+                -120.62297, 
+                34.7933
+              ], 
+              [
+                -120.616296, 
+                34.816308
+              ], 
+              [
+                -120.609898, 
+                34.842751
+              ], 
+              [
+                -120.610266, 
+                34.85818
+              ], 
+              [
+                -120.616325, 
+                34.866739
+              ], 
+              [
+                -120.639283, 
+                34.880413
+              ], 
+              [
+                -120.642212, 
+                34.894145
+              ], 
+              [
+                -120.647328, 
+                34.901133
+              ], 
+              [
+                -120.662889, 
+                34.901183
+              ], 
+              [
+                -120.670835, 
+                34.904115
+              ], 
+              [
+                -120.648905, 
+                34.974393
+              ], 
+              [
+                -120.63999, 
+                35.002963
+              ], 
+              [
+                -120.63357, 
+                35.033085
+              ], 
+              [
+                -120.629931, 
+                35.061515
+              ], 
+              [
+                -120.629583, 
+                35.078362
+              ], 
+              [
+                -120.630957, 
+                35.101941
+              ], 
+              [
+                -120.635787, 
+                35.123805
+              ], 
+              [
+                -120.644311, 
+                35.139616
+              ], 
+              [
+                -120.651134, 
+                35.147768
+              ], 
+              [
+                -120.662475, 
+                35.153357
+              ], 
+              [
+                -120.667994, 
+                35.15203
+              ], 
+              [
+                -120.675074, 
+                35.153061
+              ], 
+              [
+                -120.686974, 
+                35.160708
+              ], 
+              [
+                -120.698906, 
+                35.171192
+              ], 
+              [
+                -120.704203, 
+                35.173206
+              ], 
+              [
+                -120.714185, 
+                35.175998
+              ], 
+              [
+                -120.734231, 
+                35.178472
+              ], 
+              [
+                -120.74887, 
+                35.177795
+              ], 
+              [
+                -120.754823, 
+                35.174701
+              ], 
+              [
+                -120.756862, 
+                35.169208
+              ], 
+              [
+                -120.756086, 
+                35.160459
+              ], 
+              [
+                -120.760492, 
+                35.15971
+              ], 
+              [
+                -120.778998, 
+                35.168897
+              ], 
+              [
+                -120.786076, 
+                35.177666
+              ], 
+              [
+                -120.805258, 
+                35.184973
+              ], 
+              [
+                -120.846674, 
+                35.204429
+              ], 
+              [
+                -120.856047, 
+                35.206487
+              ], 
+              [
+                -120.873046, 
+                35.225688
+              ], 
+              [
+                -120.89679, 
+                35.247877
+              ], 
+              [
+                -120.896876, 
+                35.25399
+              ], 
+              [
+                -120.889354, 
+                35.277819
+              ], 
+              [
+                -120.87957, 
+                35.294184
+              ], 
+              [
+                -120.8672, 
+                35.327154
+              ], 
+              [
+                -120.862684, 
+                35.346776
+              ], 
+              [
+                -120.862133, 
+                35.360763
+              ], 
+              [
+                -120.866099, 
+                35.393045
+              ], 
+              [
+                -120.869209, 
+                35.403276
+              ], 
+              [
+                -120.884757, 
+                35.430196
+              ], 
+              [
+                -120.896862, 
+                35.442243
+              ], 
+              [
+                -120.907937, 
+                35.449069
+              ], 
+              [
+                -120.946546, 
+                35.446715
+              ], 
+              [
+                -120.950742, 
+                35.44802
+              ], 
+              [
+                -120.955863, 
+                35.453743
+              ], 
+              [
+                -120.969436, 
+                35.460197
+              ], 
+              [
+                -120.976122, 
+                35.459028
+              ], 
+              [
+                -121.003359, 
+                35.46071
+              ], 
+              [
+                -121.025621, 
+                35.484598
+              ], 
+              [
+                -121.05308, 
+                35.50753
+              ], 
+              [
+                -121.059913, 
+                35.509671
+              ], 
+              [
+                -121.101595, 
+                35.548814
+              ], 
+              [
+                -121.126027, 
+                35.593058
+              ], 
+              [
+                -121.133556, 
+                35.600455
+              ], 
+              [
+                -121.143561, 
+                35.606046
+              ], 
+              [
+                -121.166712, 
+                35.635399
+              ], 
+              [
+                -121.188897, 
+                35.643138
+              ], 
+              [
+                -121.195291, 
+                35.640734
+              ], 
+              [
+                -121.251034, 
+                35.656641
+              ], 
+              [
+                -121.272322, 
+                35.666711
+              ], 
+              [
+                -121.284973, 
+                35.674109
+              ], 
+              [
+                -121.289794, 
+                35.689428
+              ], 
+              [
+                -121.296473, 
+                35.696824
+              ], 
+              [
+                -121.304583, 
+                35.701794
+              ], 
+              [
+                -121.314632, 
+                35.71331
+              ], 
+              [
+                -121.315786, 
+                35.75252
+              ], 
+              [
+                -121.324918, 
+                35.769347
+              ], 
+              [
+                -121.332449, 
+                35.783106
+              ], 
+              [
+                -121.346363, 
+                35.795183
+              ], 
+              [
+                -121.356737, 
+                35.804187
+              ], 
+              [
+                -121.388053, 
+                35.823483
+              ], 
+              [
+                -121.406823, 
+                35.844623
+              ], 
+              [
+                -121.413146, 
+                35.855316
+              ], 
+              [
+                -121.426955, 
+                35.860103
+              ], 
+              [
+                -121.439584, 
+                35.86695
+              ], 
+              [
+                -121.462264, 
+                35.885618
+              ], 
+              [
+                -121.461227, 
+                35.896906
+              ], 
+              [
+                -121.463452, 
+                35.904416
+              ], 
+              [
+                -121.472435, 
+                35.91989
+              ], 
+              [
+                -121.4862, 
+                35.970348
+              ], 
+              [
+                -121.503112, 
+                36.000299
+              ], 
+              [
+                -121.51159, 
+                36.006598
+              ], 
+              [
+                -121.531876, 
+                36.014368
+              ], 
+              [
+                -121.553716, 
+                36.019798
+              ], 
+              [
+                -121.569612, 
+                36.021539
+              ], 
+              [
+                -121.574602, 
+                36.025156
+              ], 
+              [
+                -121.590395, 
+                36.050363
+              ], 
+              [
+                -121.589183, 
+                36.053775
+              ], 
+              [
+                -121.592853, 
+                36.065062
+              ], 
+              [
+                -121.606845, 
+                36.072065
+              ], 
+              [
+                -121.618672, 
+                36.087767
+              ], 
+              [
+                -121.622009, 
+                36.099695
+              ], 
+              [
+                -121.629634, 
+                36.114452
+              ], 
+              [
+                -121.680145, 
+                36.165818
+              ], 
+              [
+                -121.717176, 
+                36.195146
+              ], 
+              [
+                -121.779851, 
+                36.227407
+              ], 
+              [
+                -121.797059, 
+                36.234211
+              ], 
+              [
+                -121.806979, 
+                36.232907
+              ], 
+              [
+                -121.813734, 
+                36.234235
+              ], 
+              [
+                -121.826425, 
+                36.24186
+              ], 
+              [
+                -121.835785, 
+                36.250748
+              ], 
+              [
+                -121.83935, 
+                36.260478
+              ], 
+              [
+                -121.851967, 
+                36.277831
+              ], 
+              [
+                -121.874797, 
+                36.289064
+              ], 
+              [
+                -121.888491, 
+                36.30281
+              ], 
+              [
+                -121.894714, 
+                36.317806
+              ], 
+              [
+                -121.892917, 
+                36.340428
+              ], 
+              [
+                -121.905446, 
+                36.358269
+              ], 
+              [
+                -121.902669, 
+                36.363901
+              ], 
+              [
+                -121.901813, 
+                36.381879
+              ], 
+              [
+                -121.903195, 
+                36.393603
+              ], 
+              [
+                -121.905657, 
+                36.398206
+              ], 
+              [
+                -121.914378, 
+                36.404344
+              ], 
+              [
+                -121.917463, 
+                36.414809
+              ], 
+              [
+                -121.91474, 
+                36.42589
+              ], 
+              [
+                -121.9255, 
+                36.453918
+              ], 
+              [
+                -121.937205, 
+                36.472488
+              ], 
+              [
+                -121.9416, 
+                36.485602
+              ], 
+              [
+                -121.939216, 
+                36.496896
+              ], 
+              [
+                -121.938763, 
+                36.506423
+              ], 
+              [
+                -121.943678, 
+                36.511802
+              ], 
+              [
+                -121.944666, 
+                36.521861
+              ], 
+              [
+                -121.928769, 
+                36.523147
+              ], 
+              [
+                -121.925937, 
+                36.525173
+              ], 
+              [
+                -121.932508, 
+                36.559935
+              ], 
+              [
+                -121.942533, 
+                36.566435
+              ], 
+              [
+                -121.949659, 
+                36.567602
+              ], 
+              [
+                -121.95146, 
+                36.564009
+              ], 
+              [
+                -121.957335, 
+                36.564482
+              ], 
+              [
+                -121.972594, 
+                36.57337
+              ], 
+              [
+                -121.978592, 
+                36.580488
+              ], 
+              [
+                -121.970427, 
+                36.582754
+              ], 
+              [
+                -121.941666, 
+                36.618059
+              ], 
+              [
+                -121.938551, 
+                36.633908
+              ], 
+              [
+                -121.93643, 
+                36.636746
+              ], 
+              [
+                -121.929666, 
+                36.636959
+              ], 
+              [
+                -121.923866, 
+                36.634559
+              ], 
+              [
+                -121.890164, 
+                36.609259
+              ], 
+              [
+                -121.889064, 
+                36.601759
+              ], 
+              [
+                -121.886764, 
+                36.601459
+              ], 
+              [
+                -121.871364, 
+                36.604559
+              ], 
+              [
+                -121.860604, 
+                36.611136
+              ], 
+              [
+                -121.842263, 
+                36.630059
+              ], 
+              [
+                -121.831995, 
+                36.644856
+              ], 
+              [
+                -121.825052, 
+                36.657207
+              ], 
+              [
+                -121.814462, 
+                36.682858
+              ], 
+              [
+                -121.807062, 
+                36.714157
+              ], 
+              [
+                -121.805643, 
+                36.750239
+              ], 
+              [
+                -121.788278, 
+                36.803994
+              ], 
+              [
+                -121.791544, 
+                36.815186
+              ], 
+              [
+                -121.809363, 
+                36.848654
+              ], 
+              [
+                -121.810552, 
+                36.850648
+              ], 
+              [
+                -121.827664, 
+                36.879353
+              ], 
+              [
+                -121.862266, 
+                36.931552
+              ], 
+              [
+                -121.880167, 
+                36.950151
+              ], 
+              [
+                -121.894667, 
+                36.961851
+              ], 
+              [
+                -121.906468, 
+                36.96895
+              ], 
+              [
+                -121.930069, 
+                36.97815
+              ], 
+              [
+                -121.93947, 
+                36.97805
+              ], 
+              [
+                -121.95167, 
+                36.97145
+              ], 
+              [
+                -121.972771, 
+                36.954151
+              ], 
+              [
+                -121.975871, 
+                36.954051
+              ], 
+              [
+                -121.983896, 
+                36.958727
+              ], 
+              [
+                -122.012373, 
+                36.96455
+              ], 
+              [
+                -122.023373, 
+                36.96215
+              ], 
+              [
+                -122.027174, 
+                36.95115
+              ], 
+              [
+                -122.050122, 
+                36.948523
+              ], 
+              [
+                -122.066421, 
+                36.948271
+              ], 
+              [
+                -122.079356, 
+                36.950783
+              ], 
+              [
+                -122.105976, 
+                36.955951
+              ], 
+              [
+                -122.140578, 
+                36.97495
+              ], 
+              [
+                -122.155078, 
+                36.98085
+              ], 
+              [
+                -122.186879, 
+                37.00345
+              ], 
+              [
+                -122.20618, 
+                37.013949
+              ], 
+              [
+                -122.252181, 
+                37.059448
+              ], 
+              [
+                -122.260481, 
+                37.072548
+              ], 
+              [
+                -122.284882, 
+                37.101747
+              ], 
+              [
+                -122.292974, 
+                37.107318
+              ], 
+              [
+                -122.306139, 
+                37.116383
+              ], 
+              [
+                -122.313907, 
+                37.118161
+              ], 
+              [
+                -122.322971, 
+                37.11546
+              ], 
+              [
+                -122.330463, 
+                37.115338
+              ], 
+              [
+                -122.337071, 
+                37.117382
+              ], 
+              [
+                -122.338856, 
+                37.120854
+              ], 
+              [
+                -122.337085, 
+                37.130795
+              ], 
+              [
+                -122.337833, 
+                37.135936
+              ], 
+              [
+                -122.344029, 
+                37.144099
+              ], 
+              [
+                -122.359791, 
+                37.155574
+              ], 
+              [
+                -122.36179, 
+                37.163593
+              ], 
+              [
+                -122.367085, 
+                37.172817
+              ], 
+              [
+                -122.37927, 
+                37.181128
+              ], 
+              [
+                -122.390599, 
+                37.182988
+              ], 
+              [
+                -122.397065, 
+                37.187249
+              ], 
+              [
+                -122.405073, 
+                37.195791
+              ], 
+              [
+                -122.407181, 
+                37.219465
+              ], 
+              [
+                -122.408982, 
+                37.225258
+              ], 
+              [
+                -122.415822, 
+                37.232839
+              ], 
+              [
+                -122.419113, 
+                37.24147
+              ], 
+              [
+                -122.418452, 
+                37.248521
+              ], 
+              [
+                -122.411686, 
+                37.265844
+              ], 
+              [
+                -122.401323, 
+                37.337009
+              ], 
+              [
+                -122.40085, 
+                37.359225
+              ], 
+              [
+                -122.409258, 
+                37.374805
+              ], 
+              [
+                -122.423286, 
+                37.392542
+              ], 
+              [
+                -122.443687, 
+                37.435941
+              ], 
+              [
+                -122.445987, 
+                37.461541
+              ], 
+              [
+                -122.452087, 
+                37.48054
+              ], 
+              [
+                -122.467888, 
+                37.49814
+              ], 
+              [
+                -122.472388, 
+                37.50054
+              ], 
+              [
+                -122.476443, 
+                37.498768
+              ], 
+              [
+                -122.482351, 
+                37.496187
+              ], 
+              [
+                -122.485888, 
+                37.494641
+              ], 
+              [
+                -122.486749, 
+                37.49439
+              ], 
+              [
+                -122.487139, 
+                37.494277
+              ], 
+              [
+                -122.493789, 
+                37.492341
+              ], 
+              [
+                -122.494429, 
+                37.49269
+              ], 
+              [
+                -122.499289, 
+                37.495341
+              ], 
+              [
+                -122.516689, 
+                37.52134
+              ], 
+              [
+                -122.519533, 
+                37.537302
+              ], 
+              [
+                -122.516589, 
+                37.544939
+              ], 
+              [
+                -122.514789, 
+                37.546139
+              ], 
+              [
+                -122.513688, 
+                37.552239
+              ], 
+              [
+                -122.518088, 
+                37.576138
+              ], 
+              [
+                -122.517187, 
+                37.590637
+              ], 
+              [
+                -122.501386, 
+                37.599637
+              ], 
+              [
+                -122.496786, 
+                37.612136
+              ], 
+              [
+                -122.494085, 
+                37.644035
+              ], 
+              [
+                -122.496784, 
+                37.686433
+              ], 
+              [
+                -122.502427, 
+                37.708133
+              ], 
+              [
+                -122.506483, 
+                37.723731
+              ], 
+              [
+                -122.509397, 
+                37.748841
+              ], 
+              [
+                -122.511983, 
+                37.77113
+              ], 
+              [
+                -122.514483, 
+                37.780829
+              ], 
+              [
+                -122.50531, 
+                37.788312
+              ], 
+              [
+                -122.492883, 
+                37.787929
+              ], 
+              [
+                -122.485783, 
+                37.790629
+              ], 
+              [
+                -122.478083, 
+                37.810828
+              ], 
+              [
+                -122.470336, 
+                37.808671
+              ], 
+              [
+                -122.463793, 
+                37.804653
+              ], 
+              [
+                -122.425942, 
+                37.810979
+              ], 
+              [
+                -122.407452, 
+                37.811441
+              ], 
+              [
+                -122.398139, 
+                37.80563
+              ], 
+              [
+                -122.385323, 
+                37.790724
+              ], 
+              [
+                -122.375854, 
+                37.734979
+              ], 
+              [
+                -122.370094, 
+                37.732331
+              ], 
+              [
+                -122.367697, 
+                37.734943
+              ], 
+              [
+                -122.365478, 
+                37.734621
+              ], 
+              [
+                -122.356784, 
+                37.729505
+              ], 
+              [
+                -122.361749, 
+                37.71501
+              ], 
+              [
+                -122.370411, 
+                37.717572
+              ], 
+              [
+                -122.391374, 
+                37.708331
+              ], 
+              [
+                -122.39319, 
+                37.707531
+              ], 
+              [
+                -122.387626, 
+                37.67906
+              ], 
+              [
+                -122.374291, 
+                37.662206
+              ], 
+              [
+                -122.3756, 
+                37.652389
+              ], 
+              [
+                -122.37789, 
+                37.650425
+              ], 
+              [
+                -122.387381, 
+                37.648462
+              ], 
+              [
+                -122.386072, 
+                37.637662
+              ], 
+              [
+                -122.365455, 
+                37.626208
+              ], 
+              [
+                -122.35531, 
+                37.615736
+              ], 
+              [
+                -122.358583, 
+                37.611155
+              ], 
+              [
+                -122.370364, 
+                37.614427
+              ], 
+              [
+                -122.373309, 
+                37.613773
+              ], 
+              [
+                -122.378545, 
+                37.605592
+              ], 
+              [
+                -122.360219, 
+                37.592501
+              ], 
+              [
+                -122.317676, 
+                37.590865
+              ], 
+              [
+                -122.315385, 
+                37.587265
+              ], 
+              [
+                -122.315713, 
+                37.583666
+              ], 
+              [
+                -122.305895, 
+                37.575484
+              ], 
+              [
+                -122.262698, 
+                37.572866
+              ], 
+              [
+                -122.251898, 
+                37.566321
+              ], 
+              [
+                -122.244372, 
+                37.55814
+              ], 
+              [
+                -122.242832, 
+                37.557136
+              ], 
+              [
+                -122.236323, 
+                37.552891
+              ], 
+              [
+                -122.225135, 
+                37.545594
+              ], 
+              [
+                -122.214264, 
+                37.538505
+              ], 
+              [
+                -122.196593, 
+                37.537196
+              ], 
+              [
+                -122.194957, 
+                37.522469
+              ], 
+              [
+                -122.168449, 
+                37.504143
+              ], 
+              [
+                -122.155686, 
+                37.501198
+              ], 
+              [
+                -122.149632, 
+                37.502671
+              ], 
+              [
+                -122.140142, 
+                37.507907
+              ], 
+              [
+                -122.130979, 
+                37.503652
+              ], 
+              [
+                -122.127706, 
+                37.500053
+              ], 
+              [
+                -122.116112, 
+                37.505386
+              ], 
+              [
+                -122.111344, 
+                37.50758
+              ], 
+              [
+                -122.111998, 
+                37.528851
+              ], 
+              [
+                -122.128688, 
+                37.560594
+              ], 
+              [
+                -122.133924, 
+                37.562885
+              ], 
+              [
+                -122.137524, 
+                37.567467
+              ], 
+              [
+                -122.144396, 
+                37.581866
+              ], 
+              [
+                -122.147014, 
+                37.588411
+              ], 
+              [
+                -122.145378, 
+                37.600846
+              ], 
+              [
+                -122.14636, 
+                37.607391
+              ], 
+              [
+                -122.152905, 
+                37.640771
+              ], 
+              [
+                -122.163049, 
+                37.667933
+              ], 
+              [
+                -122.170904, 
+                37.676114
+              ], 
+              [
+                -122.179085, 
+                37.680041
+              ], 
+              [
+                -122.197411, 
+                37.692804
+              ], 
+              [
+                -122.203971, 
+                37.697769
+              ], 
+              [
+                -122.213774, 
+                37.698695
+              ], 
+              [
+                -122.221628, 
+                37.705567
+              ], 
+              [
+                -122.246826, 
+                37.72193
+              ], 
+              [
+                -122.255989, 
+                37.735674
+              ], 
+              [
+                -122.257953, 
+                37.739601
+              ], 
+              [
+                -122.257134, 
+                37.745001
+              ], 
+              [
+                -122.252226, 
+                37.747619
+              ], 
+              [
+                -122.244938, 
+                37.750294
+              ], 
+              [
+                -122.242638, 
+                37.753744
+              ], 
+              [
+                -122.253753, 
+                37.761218
+              ], 
+              [
+                -122.264101, 
+                37.764667
+              ], 
+              [
+                -122.275408, 
+                37.76735
+              ], 
+              [
+                -122.286139, 
+                37.769458
+              ], 
+              [
+                -122.293996, 
+                37.770416
+              ], 
+              [
+                -122.304345, 
+                37.774632
+              ], 
+              [
+                -122.318909, 
+                37.77904
+              ], 
+              [
+                -122.329159, 
+                37.783173
+              ], 
+              [
+                -122.33079, 
+                37.78383
+              ], 
+              [
+                -122.330963, 
+                37.786035
+              ], 
+              [
+                -122.331748, 
+                37.796052
+              ], 
+              [
+                -122.33555, 
+                37.799538
+              ], 
+              [
+                -122.335675, 
+                37.799652
+              ], 
+              [
+                -122.333711, 
+                37.809797
+              ], 
+              [
+                -122.323567, 
+                37.823214
+              ], 
+              [
+                -122.317676, 
+                37.826814
+              ], 
+              [
+                -122.306222, 
+                37.827469
+              ], 
+              [
+                -122.303931, 
+                37.830087
+              ], 
+              [
+                -122.301313, 
+                37.847758
+              ], 
+              [
+                -122.310477, 
+                37.873938
+              ], 
+              [
+                -122.309986, 
+                37.892755
+              ], 
+              [
+                -122.313258, 
+                37.89701
+              ], 
+              [
+                -122.313496, 
+                37.897211
+              ], 
+              [
+                -122.32373, 
+                37.905845
+              ], 
+              [
+                -122.33453, 
+                37.908791
+              ], 
+              [
+                -122.35711, 
+                37.908791
+              ], 
+              [
+                -122.362346, 
+                37.904209
+              ], 
+              [
+                -122.367582, 
+                37.903882
+              ], 
+              [
+                -122.378709, 
+                37.905191
+              ], 
+              [
+                -122.385908, 
+                37.908136
+              ], 
+              [
+                -122.389181, 
+                37.9101
+              ], 
+              [
+                -122.39049, 
+                37.922535
+              ], 
+              [
+                -122.395071, 
+                37.927117
+              ], 
+              [
+                -122.401289, 
+                37.928426
+              ], 
+              [
+                -122.413725, 
+                37.937262
+              ], 
+              [
+                -122.417371, 
+                37.943513
+              ], 
+              [
+                -122.430087, 
+                37.963115
+              ], 
+              [
+                -122.42976, 
+                37.965405
+              ], 
+              [
+                -122.415361, 
+                37.963115
+              ], 
+              [
+                -122.411761, 
+                37.960497
+              ], 
+              [
+                -122.408383, 
+                37.957544
+              ], 
+              [
+                -122.399832, 
+                37.956009
+              ], 
+              [
+                -122.367582, 
+                37.978168
+              ], 
+              [
+                -122.361905, 
+                37.989991
+              ], 
+              [
+                -122.363001, 
+                37.994375
+              ], 
+              [
+                -122.366928, 
+                37.998458
+              ], 
+              [
+                -122.368891, 
+                38.007948
+              ], 
+              [
+                -122.367909, 
+                38.01253
+              ], 
+              [
+                -122.363655, 
+                38.014166
+              ], 
+              [
+                -122.359493, 
+                38.009941
+              ], 
+              [
+                -122.340093, 
+                38.003694
+              ], 
+              [
+                -122.331912, 
+                38.00533
+              ], 
+              [
+                -122.321112, 
+                38.012857
+              ], 
+              [
+                -122.315549, 
+                38.013511
+              ], 
+              [
+                -122.300823, 
+                38.010893
+              ], 
+              [
+                -122.283478, 
+                38.022674
+              ], 
+              [
+                -122.262861, 
+                38.0446
+              ], 
+              [
+                -122.262861, 
+                38.051473
+              ], 
+              [
+                -122.266669, 
+                38.06007
+              ], 
+              [
+                -122.273006, 
+                38.07438
+              ], 
+              [
+                -122.282824, 
+                38.082889
+              ], 
+              [
+                -122.301804, 
+                38.105142
+              ], 
+              [
+                -122.314567, 
+                38.115287
+              ], 
+              [
+                -122.366273, 
+                38.141467
+              ], 
+              [
+                -122.39638, 
+                38.149976
+              ], 
+              [
+                -122.403514, 
+                38.150624
+              ], 
+              [
+                -122.40358, 
+                38.15063
+              ], 
+              [
+                -122.409798, 
+                38.136231
+              ], 
+              [
+                -122.439577, 
+                38.116923
+              ], 
+              [
+                -122.450377, 
+                38.116269
+              ], 
+              [
+                -122.454958, 
+                38.118887
+              ], 
+              [
+                -122.484411, 
+                38.11496
+              ], 
+              [
+                -122.489974, 
+                38.112014
+              ], 
+              [
+                -122.490727, 
+                38.109755
+              ], 
+              [
+                -122.491283, 
+                38.108087
+              ], 
+              [
+                -122.489974, 
+                38.096961
+              ], 
+              [
+                -122.486702, 
+                38.090088
+              ], 
+              [
+                -122.483757, 
+                38.071762
+              ], 
+              [
+                -122.492265, 
+                38.056381
+              ], 
+              [
+                -122.499465, 
+                38.032165
+              ], 
+              [
+                -122.497828, 
+                38.019402
+              ], 
+              [
+                -122.494556, 
+                38.015148
+              ], 
+              [
+                -122.481466, 
+                38.007621
+              ], 
+              [
+                -122.462812, 
+                38.003367
+              ], 
+              [
+                -122.452995, 
+                37.996167
+              ], 
+              [
+                -122.448413, 
+                37.988313
+              ], 
+              [
+                -122.448413, 
+                37.984713
+              ], 
+              [
+                -122.456595, 
+                37.978823
+              ], 
+              [
+                -122.462485, 
+                37.981441
+              ], 
+              [
+                -122.471975, 
+                37.981768
+              ], 
+              [
+                -122.488665, 
+                37.966714
+              ], 
+              [
+                -122.490302, 
+                37.964751
+              ], 
+              [
+                -122.490302, 
+                37.959188
+              ], 
+              [
+                -122.487684, 
+                37.948716
+              ], 
+              [
+                -122.480484, 
+                37.945443
+              ], 
+              [
+                -122.479175, 
+                37.941516
+              ], 
+              [
+                -122.48572, 
+                37.937589
+              ], 
+              [
+                -122.499465, 
+                37.939225
+              ], 
+              [
+                -122.503064, 
+                37.936607
+              ], 
+              [
+                -122.503064, 
+                37.928753
+              ], 
+              [
+                -122.493574, 
+                37.921881
+              ], 
+              [
+                -122.486375, 
+                37.921881
+              ], 
+              [
+                -122.478193, 
+                37.918608
+              ], 
+              [
+                -122.471975, 
+                37.910427
+              ], 
+              [
+                -122.472303, 
+                37.902573
+              ], 
+              [
+                -122.458558, 
+                37.894064
+              ], 
+              [
+                -122.448413, 
+                37.89341
+              ], 
+              [
+                -122.43925, 
+                37.88392
+              ], 
+              [
+                -122.438268, 
+                37.880974
+              ], 
+              [
+                -122.45005, 
+                37.871157
+              ], 
+              [
+                -122.462158, 
+                37.868866
+              ], 
+              [
+                -122.474266, 
+                37.874429
+              ], 
+              [
+                -122.480811, 
+                37.873448
+              ], 
+              [
+                -122.483429, 
+                37.868866
+              ], 
+              [
+                -122.483102, 
+                37.863957
+              ], 
+              [
+                -122.476536, 
+                37.832812
+              ], 
+              [
+                -122.476473, 
+                37.832513
+              ], 
+              [
+                -122.479151, 
+                37.825428
+              ], 
+              [
+                -122.47986, 
+                37.825641
+              ], 
+              [
+                -122.483483, 
+                37.826728
+              ], 
+              [
+                -122.492474, 
+                37.82484
+              ], 
+              [
+                -122.505383, 
+                37.822128
+              ], 
+              [
+                -122.522836, 
+                37.824717
+              ], 
+              [
+                -122.523585, 
+                37.824828
+              ], 
+              [
+                -122.537285, 
+                37.830328
+              ], 
+              [
+                -122.548986, 
+                37.836227
+              ], 
+              [
+                -122.561487, 
+                37.851827
+              ], 
+              [
+                -122.584289, 
+                37.859227
+              ], 
+              [
+                -122.60129, 
+                37.875126
+              ], 
+              [
+                -122.627113, 
+                37.88608
+              ], 
+              [
+                -122.639977, 
+                37.897349
+              ], 
+              [
+                -122.656519, 
+                37.904519
+              ], 
+              [
+                -122.678474, 
+                37.906604
+              ], 
+              [
+                -122.682171, 
+                37.90645
+              ], 
+              [
+                -122.693569, 
+                37.901171
+              ], 
+              [
+                -122.70264, 
+                37.89382
+              ], 
+              [
+                -122.727297, 
+                37.904626
+              ], 
+              [
+                -122.732898, 
+                37.920225
+              ], 
+              [
+                -122.736898, 
+                37.925825
+              ], 
+              [
+                -122.754606, 
+                37.935527
+              ], 
+              [
+                -122.766138, 
+                37.938004
+              ], 
+              [
+                -122.783244, 
+                37.951334
+              ], 
+              [
+                -122.791739, 
+                37.969422
+              ], 
+              [
+                -122.797405, 
+                37.976657
+              ], 
+              [
+                -122.821383, 
+                37.996735
+              ], 
+              [
+                -122.856573, 
+                38.016717
+              ], 
+              [
+                -122.882114, 
+                38.025273
+              ], 
+              [
+                -122.939711, 
+                38.031908
+              ], 
+              [
+                -122.956811, 
+                38.02872
+              ], 
+              [
+                -122.972378, 
+                38.020247
+              ], 
+              [
+                -122.981776, 
+                38.009119
+              ], 
+              [
+                -122.982386, 
+                38.004274
+              ], 
+              [
+                -122.980147, 
+                38.000831
+              ], 
+              [
+                -122.976764, 
+                37.99568
+              ], 
+              [
+                -122.97439, 
+                37.992429
+              ], 
+              [
+                -123.024066, 
+                37.994878
+              ], 
+              [
+                -123.020562, 
+                37.999544
+              ], 
+              [
+                -123.016303, 
+                38.001691
+              ], 
+              [
+                -123.011533, 
+                38.003438
+              ], 
+              [
+                -122.99242, 
+                38.041758
+              ], 
+              [
+                -122.960889, 
+                38.112962
+              ], 
+              [
+                -122.952086, 
+                38.138562
+              ], 
+              [
+                -122.949074, 
+                38.15406
+              ], 
+              [
+                -122.949626, 
+                38.164041
+              ], 
+              [
+                -122.953629, 
+                38.17567
+              ], 
+              [
+                -122.965408, 
+                38.187113
+              ], 
+              [
+                -122.96637, 
+                38.198514
+              ], 
+              [
+                -122.968112, 
+                38.202428
+              ], 
+              [
+                -122.991953, 
+                38.233185
+              ], 
+              [
+                -122.993959, 
+                38.237602
+              ], 
+              [
+                -122.993235, 
+                38.239686
+              ], 
+              [
+                -122.987149, 
+                38.237538
+              ], 
+              [
+                -122.968569, 
+                38.242879
+              ], 
+              [
+                -122.967203, 
+                38.250691
+              ], 
+              [
+                -122.977082, 
+                38.267902
+              ], 
+              [
+                -122.986319, 
+                38.273164
+              ], 
+              [
+                -122.994603, 
+                38.283096
+              ], 
+              [
+                -122.997106, 
+                38.289458
+              ], 
+              [
+                -123.002911, 
+                38.295708
+              ], 
+              [
+                -123.004122, 
+                38.297012
+              ], 
+              [
+                -123.024333, 
+                38.310573
+              ], 
+              [
+                -123.038742, 
+                38.313576
+              ], 
+              [
+                -123.051061, 
+                38.310693
+              ], 
+              [
+                -123.053476, 
+                38.305722
+              ], 
+              [
+                -123.052021, 
+                38.302246
+              ], 
+              [
+                -123.053504, 
+                38.299385
+              ], 
+              [
+                -123.058239, 
+                38.298355
+              ], 
+              [
+                -123.063671, 
+                38.302178
+              ], 
+              [
+                -123.074684, 
+                38.322574
+              ], 
+              [
+                -123.068437, 
+                38.33521
+              ], 
+              [
+                -123.068265, 
+                38.359865
+              ], 
+              [
+                -123.085572, 
+                38.390525
+              ], 
+              [
+                -123.103706, 
+                38.415541
+              ], 
+              [
+                -123.122379, 
+                38.437314
+              ], 
+              [
+                -123.128825, 
+                38.450418
+              ], 
+              [
+                -123.145325, 
+                38.459422
+              ], 
+              [
+                -123.166428, 
+                38.474947
+              ], 
+              [
+                -123.202277, 
+                38.494314
+              ], 
+              [
+                -123.249797, 
+                38.511045
+              ], 
+              [
+                -123.287156, 
+                38.540223
+              ], 
+              [
+                -123.297151, 
+                38.543452
+              ], 
+              [
+                -123.331899, 
+                38.565542
+              ], 
+              [
+                -123.343338, 
+                38.590008
+              ], 
+              [
+                -123.349612, 
+                38.596805
+              ], 
+              [
+                -123.371876, 
+                38.607235
+              ], 
+              [
+                -123.379303, 
+                38.621953
+              ], 
+              [
+                -123.398166, 
+                38.647044
+              ], 
+              [
+                -123.40301, 
+                38.649449
+              ], 
+              [
+                -123.405663, 
+                38.656729
+              ], 
+              [
+                -123.43272, 
+                38.687131
+              ], 
+              [
+                -123.441774, 
+                38.699744
+              ], 
+              [
+                -123.461291, 
+                38.717001
+              ], 
+              [
+                -123.490021, 
+                38.732213
+              ], 
+              [
+                -123.514784, 
+                38.741966
+              ], 
+              [
+                -123.525152, 
+                38.753801
+              ], 
+              [
+                -123.533535, 
+                38.768408
+              ], 
+              [
+                -123.541837, 
+                38.776764
+              ], 
+              [
+                -123.571987, 
+                38.798189
+              ], 
+              [
+                -123.579856, 
+                38.802835
+              ], 
+              [
+                -123.58638, 
+                38.802857
+              ], 
+              [
+                -123.600221, 
+                38.814115
+              ], 
+              [
+                -123.601569, 
+                38.81899
+              ], 
+              [
+                -123.605317, 
+                38.822765
+              ], 
+              [
+                -123.638637, 
+                38.843865
+              ], 
+              [
+                -123.642676, 
+                38.844005
+              ], 
+              [
+                -123.647387, 
+                38.845472
+              ], 
+              [
+                -123.652212, 
+                38.854582
+              ], 
+              [
+                -123.654696, 
+                38.865638
+              ], 
+              [
+                -123.659846, 
+                38.872529
+              ], 
+              [
+                -123.688099, 
+                38.893594
+              ], 
+              [
+                -123.71054, 
+                38.91323
+              ], 
+              [
+                -123.725367, 
+                38.917438
+              ], 
+              [
+                -123.72763, 
+                38.9295
+              ], 
+              [
+                -123.726315, 
+                38.936367
+              ], 
+              [
+                -123.738886, 
+                38.95412
+              ], 
+              [
+                -123.732892, 
+                38.954994
+              ], 
+              [
+                -123.729053, 
+                38.956667
+              ], 
+              [
+                -123.721347, 
+                38.963879
+              ], 
+              [
+                -123.711149, 
+                38.977316
+              ], 
+              [
+                -123.6969, 
+                39.004401
+              ], 
+              [
+                -123.69074, 
+                39.021293
+              ], 
+              [
+                -123.690095, 
+                39.031157
+              ], 
+              [
+                -123.693969, 
+                39.057363
+              ], 
+              [
+                -123.713392, 
+                39.108422
+              ], 
+              [
+                -123.721505, 
+                39.125327
+              ], 
+              [
+                -123.735936, 
+                39.139644
+              ], 
+              [
+                -123.737913, 
+                39.143442
+              ], 
+              [
+                -123.742221, 
+                39.164885
+              ], 
+              [
+                -123.76101, 
+                39.191595
+              ], 
+              [
+                -123.765891, 
+                39.193657
+              ], 
+              [
+                -123.774998, 
+                39.212083
+              ], 
+              [
+                -123.777368, 
+                39.237214
+              ], 
+              [
+                -123.787893, 
+                39.264327
+              ], 
+              [
+                -123.798991, 
+                39.271355
+              ], 
+              [
+                -123.803848, 
+                39.278771
+              ], 
+              [
+                -123.801757, 
+                39.28353
+              ], 
+              [
+                -123.803081, 
+                39.291747
+              ], 
+              [
+                -123.811387, 
+                39.312825
+              ], 
+              [
+                -123.808772, 
+                39.324368
+              ], 
+              [
+                -123.817369, 
+                39.3388
+              ], 
+              [
+                -123.822085, 
+                39.343857
+              ], 
+              [
+                -123.825331, 
+                39.360814
+              ], 
+              [
+                -123.826306, 
+                39.36871
+              ], 
+              [
+                -123.822325, 
+                39.379987
+              ], 
+              [
+                -123.821887, 
+                39.406809
+              ], 
+              [
+                -123.81469, 
+                39.446538
+              ], 
+              [
+                -123.795639, 
+                39.492215
+              ], 
+              [
+                -123.78417, 
+                39.509419
+              ], 
+              [
+                -123.778521, 
+                39.521478
+              ], 
+              [
+                -123.766475, 
+                39.552803
+              ], 
+              [
+                -123.76721, 
+                39.559852
+              ], 
+              [
+                -123.787417, 
+                39.604552
+              ], 
+              [
+                -123.78354, 
+                39.609517
+              ], 
+              [
+                -123.782322, 
+                39.621486
+              ], 
+              [
+                -123.78636, 
+                39.659932
+              ], 
+              [
+                -123.792659, 
+                39.684122
+              ], 
+              [
+                -123.808208, 
+                39.710715
+              ], 
+              [
+                -123.824744, 
+                39.718128
+              ], 
+              [
+                -123.829545, 
+                39.723071
+              ], 
+              [
+                -123.831599, 
+                39.730629
+              ], 
+              [
+                -123.835092, 
+                39.738768
+              ], 
+              [
+                -123.838089, 
+                39.752409
+              ], 
+              [
+                -123.83715, 
+                39.776232
+              ], 
+              [
+                -123.839797, 
+                39.795637
+              ], 
+              [
+                -123.851714, 
+                39.832041
+              ], 
+              [
+                -123.853764, 
+                39.8341
+              ], 
+              [
+                -123.881458, 
+                39.845422
+              ], 
+              [
+                -123.907664, 
+                39.863028
+              ], 
+              [
+                -123.915142, 
+                39.875313
+              ], 
+              [
+                -123.915853, 
+                39.881114
+              ], 
+              [
+                -123.930047, 
+                39.909697
+              ], 
+              [
+                -123.954952, 
+                39.922373
+              ], 
+              [
+                -123.962655, 
+                39.937635
+              ], 
+              [
+                -123.980031, 
+                39.962458
+              ], 
+              [
+                -123.99586, 
+                39.973045
+              ], 
+              [
+                -124.023938, 
+                40.001284
+              ], 
+              [
+                -124.035904, 
+                40.013319
+              ], 
+              [
+                -124.056408, 
+                40.024305
+              ], 
+              [
+                -124.065069, 
+                40.024785
+              ], 
+              [
+                -124.068908, 
+                40.021307
+              ], 
+              [
+                -124.072509, 
+                40.022657
+              ], 
+              [
+                -124.079983, 
+                40.029773
+              ], 
+              [
+                -124.080709, 
+                40.06611
+              ], 
+              [
+                -124.087086, 
+                40.078442
+              ], 
+              [
+                -124.110549, 
+                40.103765
+              ], 
+              [
+                -124.139952, 
+                40.11635
+              ], 
+              [
+                -124.170767, 
+                40.124207
+              ], 
+              [
+                -124.187874, 
+                40.130542
+              ], 
+              [
+                -124.214895, 
+                40.160902
+              ], 
+              [
+                -124.231095, 
+                40.171581
+              ], 
+              [
+                -124.258405, 
+                40.184277
+              ], 
+              [
+                -124.296497, 
+                40.208816
+              ], 
+              [
+                -124.320912, 
+                40.226617
+              ], 
+              [
+                -124.327691, 
+                40.23737
+              ], 
+              [
+                -124.34307, 
+                40.243979
+              ], 
+              [
+                -124.352715, 
+                40.250453
+              ], 
+              [
+                -124.363414, 
+                40.260974
+              ], 
+              [
+                -124.363634, 
+                40.276212
+              ], 
+              [
+                -124.347853, 
+                40.314634
+              ], 
+              [
+                -124.353124, 
+                40.331425
+              ], 
+              [
+                -124.356595, 
+                40.335016
+              ], 
+              [
+                -124.362796, 
+                40.350046
+              ], 
+              [
+                -124.365357, 
+                40.374855
+              ], 
+              [
+                -124.373599, 
+                40.392923
+              ], 
+              [
+                -124.379082, 
+                40.398828
+              ], 
+              [
+                -124.391496, 
+                40.407047
+              ], 
+              [
+                -124.402623, 
+                40.422105
+              ], 
+              [
+                -124.409591, 
+                40.438076
+              ], 
+              [
+                -124.408601, 
+                40.443201
+              ], 
+              [
+                -124.396642, 
+                40.462119
+              ], 
+              [
+                -124.38494, 
+                40.48982
+              ], 
+              [
+                -124.383224, 
+                40.499852
+              ], 
+              [
+                -124.387023, 
+                40.504954
+              ], 
+              [
+                -124.382816, 
+                40.519
+              ], 
+              [
+                -124.379096, 
+                40.522865
+              ], 
+              [
+                -124.363545, 
+                40.548698
+              ], 
+              [
+                -124.329404, 
+                40.61643
+              ], 
+              [
+                -124.315141, 
+                40.639526
+              ], 
+              [
+                -124.312558, 
+                40.641333
+              ], 
+              [
+                -124.289119, 
+                40.67963
+              ], 
+              [
+                -124.248406, 
+                40.735166
+              ], 
+              [
+                -124.228244, 
+                40.76939
+              ], 
+              [
+                -124.201921, 
+                40.805111
+              ], 
+              [
+                -124.176715, 
+                40.843618
+              ], 
+              [
+                -124.158322, 
+                40.876069
+              ], 
+              [
+                -124.137066, 
+                40.925732
+              ], 
+              [
+                -124.118147, 
+                40.989263
+              ], 
+              [
+                -124.112165, 
+                41.028173
+              ], 
+              [
+                -124.125448, 
+                41.048504
+              ], 
+              [
+                -124.132946, 
+                41.052482
+              ], 
+              [
+                -124.138217, 
+                41.054342
+              ], 
+              [
+                -124.142867, 
+                41.054032
+              ], 
+              [
+                -124.147216, 
+                41.052884
+              ], 
+              [
+                -124.148939, 
+                41.051467
+              ], 
+              [
+                -124.151266, 
+                41.051101
+              ], 
+              [
+                -124.153622, 
+                41.05355
+              ], 
+              [
+                -124.154028, 
+                41.059923
+              ], 
+              [
+                -124.154513, 
+                41.087159
+              ], 
+              [
+                -124.160556, 
+                41.099011
+              ], 
+              [
+                -124.159065, 
+                41.121957
+              ], 
+              [
+                -124.165414, 
+                41.129822
+              ], 
+              [
+                -124.163988, 
+                41.138675
+              ], 
+              [
+                -124.158539, 
+                41.143021
+              ], 
+              [
+                -124.149674, 
+                41.140845
+              ], 
+              [
+                -124.1438, 
+                41.144686
+              ], 
+              [
+                -124.122677, 
+                41.189726
+              ], 
+              [
+                -124.106986, 
+                41.229678
+              ], 
+              [
+                -124.106389, 
+                41.240682
+              ], 
+              [
+                -124.092284, 
+                41.287695
+              ], 
+              [
+                -124.079015, 
+                41.347135
+              ], 
+              [
+                -124.072294, 
+                41.374844
+              ], 
+              [
+                -124.063076, 
+                41.439579
+              ], 
+              [
+                -124.065521, 
+                41.464739
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 2, 
+      "properties": {
+        "CENSUSAREA": 155779.22, 
+        "GEO_ID": "0400000US06", 
+        "ISO": "US-CA", 
+        "LSAD": "", 
+        "NAME": "California", 
+        "NAME_1": "California", 
+        "STATE": "CA"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -107.317794, 
+                41.002957
+              ], 
+              [
+                -107.000606, 
+                41.003444
+              ], 
+              [
+                -106.857772, 
+                41.003082
+              ], 
+              [
+                -106.453859, 
+                41.002057
+              ], 
+              [
+                -106.439563, 
+                41.001978
+              ], 
+              [
+                -106.437419, 
+                41.001795
+              ], 
+              [
+                -106.43095, 
+                41.001752
+              ], 
+              [
+                -106.391852, 
+                41.001176
+              ], 
+              [
+                -106.386356, 
+                41.001144
+              ], 
+              [
+                -106.321165, 
+                40.999123
+              ], 
+              [
+                -106.19055, 
+                40.998056
+              ], 
+              [
+                -106.061181, 
+                40.996999
+              ], 
+              [
+                -105.730421, 
+                40.996886
+              ], 
+              [
+                -105.724804, 
+                40.99691
+              ], 
+              [
+                -105.277138, 
+                40.998173
+              ], 
+              [
+                -105.27686, 
+                40.998173
+              ], 
+              [
+                -105.256527, 
+                40.998191
+              ], 
+              [
+                -105.254779, 
+                40.99821
+              ], 
+              [
+                -104.943371, 
+                40.99819
+              ], 
+              [
+                -104.882452, 
+                40.998186
+              ], 
+              [
+                -104.497149, 
+                41.001828
+              ], 
+              [
+                -104.497058, 
+                41.001805
+              ], 
+              [
+                -104.214692, 
+                41.001657
+              ], 
+              [
+                -104.214191, 
+                41.001568
+              ], 
+              [
+                -104.211473, 
+                41.001591
+              ], 
+              [
+                -104.123586, 
+                41.001626
+              ], 
+              [
+                -104.10459, 
+                41.001543
+              ], 
+              [
+                -104.086068, 
+                41.001563
+              ], 
+              [
+                -104.066961, 
+                41.001504
+              ], 
+              [
+                -104.053249, 
+                41.001406
+              ], 
+              [
+                -104.039238, 
+                41.001502
+              ], 
+              [
+                -104.023383, 
+                41.001887
+              ], 
+              [
+                -104.018223, 
+                41.001617
+              ], 
+              [
+                -103.972642, 
+                41.001615
+              ], 
+              [
+                -103.971373, 
+                41.001524
+              ], 
+              [
+                -103.953525, 
+                41.001596
+              ], 
+              [
+                -103.896207, 
+                41.00175
+              ], 
+              [
+                -103.877967, 
+                41.001673
+              ], 
+              [
+                -103.858449, 
+                41.001681
+              ], 
+              [
+                -103.574522, 
+                41.001721
+              ], 
+              [
+                -103.497447, 
+                41.001635
+              ], 
+              [
+                -103.486697, 
+                41.001914
+              ], 
+              [
+                -103.421975, 
+                41.002007
+              ], 
+              [
+                -103.421925, 
+                41.001969
+              ], 
+              [
+                -103.382493, 
+                41.001883
+              ], 
+              [
+                -103.365314, 
+                41.001846
+              ], 
+              [
+                -103.362979, 
+                41.001844
+              ], 
+              [
+                -103.077804, 
+                41.002298
+              ], 
+              [
+                -103.076536, 
+                41.002253
+              ], 
+              [
+                -103.059538, 
+                41.002368
+              ], 
+              [
+                -103.057998, 
+                41.002368
+              ], 
+              [
+                -103.043444, 
+                41.002344
+              ], 
+              [
+                -103.038704, 
+                41.002251
+              ], 
+              [
+                -103.002026, 
+                41.002486
+              ], 
+              [
+                -103.000102, 
+                41.0024
+              ], 
+              [
+                -102.98269, 
+                41.002157
+              ], 
+              [
+                -102.981483, 
+                41.002112
+              ], 
+              [
+                -102.963669, 
+                41.002186
+              ], 
+              [
+                -102.962522, 
+                41.002072
+              ], 
+              [
+                -102.960706, 
+                41.002059
+              ], 
+              [
+                -102.959624, 
+                41.002095
+              ], 
+              [
+                -102.94483, 
+                41.002303
+              ], 
+              [
+                -102.943109, 
+                41.002051
+              ], 
+              [
+                -102.925568, 
+                41.00228
+              ], 
+              [
+                -102.924029, 
+                41.002142
+              ], 
+              [
+                -102.906547, 
+                41.002276
+              ], 
+              [
+                -102.904796, 
+                41.002207
+              ], 
+              [
+                -102.887407, 
+                41.002178
+              ], 
+              [
+                -102.885746, 
+                41.002131
+              ], 
+              [
+                -102.867822, 
+                41.002183
+              ], 
+              [
+                -102.865784, 
+                41.001988
+              ], 
+              [
+                -102.849263, 
+                41.002301
+              ], 
+              [
+                -102.846455, 
+                41.002256
+              ], 
+              [
+                -102.830303, 
+                41.002351
+              ], 
+              [
+                -102.82728, 
+                41.002143
+              ], 
+              [
+                -102.773546, 
+                41.002414
+              ], 
+              [
+                -102.766723, 
+                41.002275
+              ], 
+              [
+                -102.754617, 
+                41.002361
+              ], 
+              [
+                -102.739624, 
+                41.00223
+              ], 
+              [
+                -102.653463, 
+                41.002332
+              ], 
+              [
+                -102.621033, 
+                41.002597
+              ], 
+              [
+                -102.578696, 
+                41.002291
+              ], 
+              [
+                -102.575738, 
+                41.002268
+              ], 
+              [
+                -102.575496, 
+                41.0022
+              ], 
+              [
+                -102.566048, 
+                41.0022
+              ], 
+              [
+                -102.556789, 
+                41.002219
+              ], 
+              [
+                -102.487955, 
+                41.002445
+              ], 
+              [
+                -102.470537, 
+                41.002382
+              ], 
+              [
+                -102.469223, 
+                41.002424
+              ], 
+              [
+                -102.379593, 
+                41.002301
+              ], 
+              [
+                -102.364066, 
+                41.002174
+              ], 
+              [
+                -102.292833, 
+                41.002207
+              ], 
+              [
+                -102.292622, 
+                41.00223
+              ], 
+              [
+                -102.292553, 
+                41.002207
+              ], 
+              [
+                -102.291354, 
+                41.002207
+              ], 
+              [
+                -102.2721, 
+                41.002245
+              ], 
+              [
+                -102.267812, 
+                41.002383
+              ], 
+              [
+                -102.231931, 
+                41.002327
+              ], 
+              [
+                -102.2122, 
+                41.002462
+              ], 
+              [
+                -102.209361, 
+                41.002442
+              ], 
+              [
+                -102.19121, 
+                41.002326
+              ], 
+              [
+                -102.124972, 
+                41.002338
+              ], 
+              [
+                -102.070598, 
+                41.002423
+              ], 
+              [
+                -102.051718, 
+                41.002377
+              ], 
+              [
+                -102.051614, 
+                41.002377
+              ], 
+              [
+                -102.051292, 
+                40.749591
+              ], 
+              [
+                -102.051292, 
+                40.749586
+              ], 
+              [
+                -102.051398, 
+                40.697542
+              ], 
+              [
+                -102.051725, 
+                40.537839
+              ], 
+              [
+                -102.051519, 
+                40.520094
+              ], 
+              [
+                -102.051465, 
+                40.440008
+              ], 
+              [
+                -102.05184, 
+                40.396396
+              ], 
+              [
+                -102.051572, 
+                40.39308
+              ], 
+              [
+                -102.051669, 
+                40.349213
+              ], 
+              [
+                -102.051922, 
+                40.235344
+              ], 
+              [
+                -102.051894, 
+                40.229193
+              ], 
+              [
+                -102.051909, 
+                40.162674
+              ], 
+              [
+                -102.052001, 
+                40.148359
+              ], 
+              [
+                -102.051744, 
+                40.003078
+              ], 
+              [
+                -102.051569, 
+                39.849805
+              ], 
+              [
+                -102.051363, 
+                39.843471
+              ], 
+              [
+                -102.051318, 
+                39.833311
+              ], 
+              [
+                -102.051254, 
+                39.818992
+              ], 
+              [
+                -102.050594, 
+                39.675594
+              ], 
+              [
+                -102.049954, 
+                39.592331
+              ], 
+              [
+                -102.049806, 
+                39.574058
+              ], 
+              [
+                -102.049764, 
+                39.56818
+              ], 
+              [
+                -102.049554, 
+                39.538932
+              ], 
+              [
+                -102.049673, 
+                39.536691
+              ], 
+              [
+                -102.049679, 
+                39.506183
+              ], 
+              [
+                -102.049369, 
+                39.423333
+              ], 
+              [
+                -102.04937, 
+                39.41821
+              ], 
+              [
+                -102.049167, 
+                39.403597
+              ], 
+              [
+                -102.04896, 
+                39.373712
+              ], 
+              [
+                -102.048449, 
+                39.303138
+              ], 
+              [
+                -102.04725, 
+                39.13702
+              ], 
+              [
+                -102.047189, 
+                39.133147
+              ], 
+              [
+                -102.047134, 
+                39.129701
+              ], 
+              [
+                -102.046571, 
+                39.047038
+              ], 
+              [
+                -102.045388, 
+                38.813392
+              ], 
+              [
+                -102.045334, 
+                38.799463
+              ], 
+              [
+                -102.045448, 
+                38.783453
+              ], 
+              [
+                -102.045371, 
+                38.770064
+              ], 
+              [
+                -102.045287, 
+                38.755528
+              ], 
+              [
+                -102.045375, 
+                38.754339
+              ], 
+              [
+                -102.045212, 
+                38.697567
+              ], 
+              [
+                -102.045156, 
+                38.688555
+              ], 
+              [
+                -102.045127, 
+                38.686725
+              ], 
+              [
+                -102.04516, 
+                38.675221
+              ], 
+              [
+                -102.045102, 
+                38.674946
+              ], 
+              [
+                -102.045074, 
+                38.669617
+              ], 
+              [
+                -102.045288, 
+                38.615249
+              ], 
+              [
+                -102.045288, 
+                38.615168
+              ], 
+              [
+                -102.045211, 
+                38.581609
+              ], 
+              [
+                -102.045189, 
+                38.558732
+              ], 
+              [
+                -102.045223, 
+                38.543797
+              ], 
+              [
+                -102.045112, 
+                38.523784
+              ], 
+              [
+                -102.045262, 
+                38.505532
+              ], 
+              [
+                -102.045263, 
+                38.505395
+              ], 
+              [
+                -102.044944, 
+                38.384419
+              ], 
+              [
+                -102.044613, 
+                38.312324
+              ], 
+              [
+                -102.044568, 
+                38.268819
+              ], 
+              [
+                -102.044567, 
+                38.268749
+              ], 
+              [
+                -102.04451, 
+                38.262412
+              ], 
+              [
+                -102.044398, 
+                38.250015
+              ], 
+              [
+                -102.043844, 
+                37.928102
+              ], 
+              [
+                -102.043845, 
+                37.926135
+              ], 
+              [
+                -102.043219, 
+                37.867929
+              ], 
+              [
+                -102.043033, 
+                37.824146
+              ], 
+              [
+                -102.042953, 
+                37.803535
+              ], 
+              [
+                -102.042668, 
+                37.788758
+              ], 
+              [
+                -102.042158, 
+                37.760164
+              ], 
+              [
+                -102.04199, 
+                37.738541
+              ], 
+              [
+                -102.041876, 
+                37.723875
+              ], 
+              [
+                -102.041574, 
+                37.680436
+              ], 
+              [
+                -102.041694, 
+                37.665681
+              ], 
+              [
+                -102.041582, 
+                37.654495
+              ], 
+              [
+                -102.041585, 
+                37.644282
+              ], 
+              [
+                -102.041618, 
+                37.607868
+              ], 
+              [
+                -102.041894, 
+                37.557977
+              ], 
+              [
+                -102.041899, 
+                37.541186
+              ], 
+              [
+                -102.042016, 
+                37.535261
+              ], 
+              [
+                -102.041786, 
+                37.506066
+              ], 
+              [
+                -102.041801, 
+                37.469488
+              ], 
+              [
+                -102.041755, 
+                37.434855
+              ], 
+              [
+                -102.041669, 
+                37.43474
+              ], 
+              [
+                -102.041676, 
+                37.409898
+              ], 
+              [
+                -102.041826, 
+                37.389191
+              ], 
+              [
+                -102.042089, 
+                37.352819
+              ], 
+              [
+                -102.041974, 
+                37.352613
+              ], 
+              [
+                -102.041817, 
+                37.30949
+              ], 
+              [
+                -102.041664, 
+                37.29765
+              ], 
+              [
+                -102.041963, 
+                37.258164
+              ], 
+              [
+                -102.042002, 
+                37.141744
+              ], 
+              [
+                -102.042135, 
+                37.125021
+              ], 
+              [
+                -102.042092, 
+                37.125021
+              ], 
+              [
+                -102.041809, 
+                37.111973
+              ], 
+              [
+                -102.041983, 
+                37.106551
+              ], 
+              [
+                -102.04192, 
+                37.035083
+              ], 
+              [
+                -102.041749, 
+                37.034397
+              ], 
+              [
+                -102.041921, 
+                37.032178
+              ], 
+              [
+                -102.04195, 
+                37.030805
+              ], 
+              [
+                -102.041952, 
+                37.024742
+              ], 
+              [
+                -102.04224, 
+                36.993083
+              ], 
+              [
+                -102.054503, 
+                36.993109
+              ], 
+              [
+                -102.184271, 
+                36.993593
+              ], 
+              [
+                -102.208316, 
+                36.99373
+              ], 
+              [
+                -102.355288, 
+                36.994506
+              ], 
+              [
+                -102.355367, 
+                36.994575
+              ], 
+              [
+                -102.570896, 
+                36.995136
+              ], 
+              [
+                -102.875481, 
+                36.999628
+              ], 
+              [
+                -102.979613, 
+                36.998549
+              ], 
+              [
+                -102.985807, 
+                36.998571
+              ], 
+              [
+                -102.986976, 
+                36.998524
+              ], 
+              [
+                -103.002199, 
+                37.000104
+              ], 
+              [
+                -103.086105, 
+                36.999864
+              ], 
+              [
+                -103.733247, 
+                36.998016
+              ], 
+              [
+                -103.734364, 
+                36.998041
+              ], 
+              [
+                -104.007855, 
+                36.996239
+              ], 
+              [
+                -104.732031, 
+                36.993447
+              ], 
+              [
+                -104.73212, 
+                36.993484
+              ], 
+              [
+                -105.000554, 
+                36.993264
+              ], 
+              [
+                -105.1208, 
+                36.995428
+              ], 
+              [
+                -105.155042, 
+                36.995339
+              ], 
+              [
+                -105.220613, 
+                36.995169
+              ], 
+              [
+                -105.41931, 
+                36.995856
+              ], 
+              [
+                -105.442459, 
+                36.995994
+              ], 
+              [
+                -105.447255, 
+                36.996017
+              ], 
+              [
+                -105.465182, 
+                36.995991
+              ], 
+              [
+                -105.508836, 
+                36.995895
+              ], 
+              [
+                -105.512485, 
+                36.995777
+              ], 
+              [
+                -105.533922, 
+                36.995875
+              ], 
+              [
+                -105.62747, 
+                36.995679
+              ], 
+              [
+                -105.66472, 
+                36.995874
+              ], 
+              [
+                -105.716471, 
+                36.995849
+              ], 
+              [
+                -105.71847, 
+                36.995846
+              ], 
+              [
+                -105.996159, 
+                36.995418
+              ], 
+              [
+                -105.997472, 
+                36.995417
+              ], 
+              [
+                -106.006634, 
+                36.995343
+              ], 
+              [
+                -106.247705, 
+                36.994266
+              ], 
+              [
+                -106.248675, 
+                36.994288
+              ], 
+              [
+                -106.476228, 
+                36.993472
+              ], 
+              [
+                -106.617159, 
+                36.992967
+              ], 
+              [
+                -106.617125, 
+                36.993004
+              ], 
+              [
+                -106.628652, 
+                36.993175
+              ], 
+              [
+                -106.628733, 
+                36.993161
+              ], 
+              [
+                -106.661344, 
+                36.993243
+              ], 
+              [
+                -106.675626, 
+                36.993123
+              ], 
+              [
+                -106.869796, 
+                36.992426
+              ], 
+              [
+                -107.000592, 
+                37.000009
+              ], 
+              [
+                -107.420913, 
+                37.000005
+              ], 
+              [
+                -107.420915, 
+                37.000005
+              ], 
+              [
+                -107.481737, 
+                36.999973
+              ], 
+              [
+                -108.288086, 
+                36.999555
+              ], 
+              [
+                -108.2884, 
+                36.99952
+              ], 
+              [
+                -108.320464, 
+                36.999499
+              ], 
+              [
+                -108.320721, 
+                36.99951
+              ], 
+              [
+                -108.379203, 
+                36.999459
+              ], 
+              [
+                -108.619689, 
+                36.999249
+              ], 
+              [
+                -108.620309, 
+                36.999287
+              ], 
+              [
+                -108.954404, 
+                36.998906
+              ], 
+              [
+                -108.958868, 
+                36.998913
+              ], 
+              [
+                -109.045223, 
+                36.999084
+              ], 
+              [
+                -109.045166, 
+                37.072742
+              ], 
+              [
+                -109.045058, 
+                37.074661
+              ], 
+              [
+                -109.044995, 
+                37.086429
+              ], 
+              [
+                -109.045189, 
+                37.096271
+              ], 
+              [
+                -109.045173, 
+                37.109464
+              ], 
+              [
+                -109.045203, 
+                37.111958
+              ], 
+              [
+                -109.045156, 
+                37.112064
+              ], 
+              [
+                -109.04581, 
+                37.374993
+              ], 
+              [
+                -109.043053, 
+                37.485161
+              ], 
+              [
+                -109.041915, 
+                37.530653
+              ], 
+              [
+                -109.041865, 
+                37.530726
+              ], 
+              [
+                -109.041806, 
+                37.604171
+              ], 
+              [
+                -109.042131, 
+                37.617662
+              ], 
+              [
+                -109.042089, 
+                37.623795
+              ], 
+              [
+                -109.041732, 
+                37.711214
+              ], 
+              [
+                -109.04176, 
+                37.713182
+              ], 
+              [
+                -109.041754, 
+                37.835826
+              ], 
+              [
+                -109.041723, 
+                37.842051
+              ], 
+              [
+                -109.042137, 
+                37.88116
+              ], 
+              [
+                -109.043121, 
+                37.97426
+              ], 
+              [
+                -109.042819, 
+                37.997068
+              ], 
+              [
+                -109.04282, 
+                37.999301
+              ], 
+              [
+                -109.042074, 
+                38.153023
+              ], 
+              [
+                -109.042062, 
+                38.15549
+              ], 
+              [
+                -109.060062, 
+                38.275489
+              ], 
+              [
+                -109.059962, 
+                38.499987
+              ], 
+              [
+                -109.059541, 
+                38.719888
+              ], 
+              [
+                -109.053943, 
+                38.904414
+              ], 
+              [
+                -109.053797, 
+                38.905284
+              ], 
+              [
+                -109.053233, 
+                38.942467
+              ], 
+              [
+                -109.053292, 
+                38.942878
+              ], 
+              [
+                -109.051516, 
+                39.124982
+              ], 
+              [
+                -109.051417, 
+                39.366677
+              ], 
+              [
+                -109.051363, 
+                39.497674
+              ], 
+              [
+                -109.051221, 
+                39.660472
+              ], 
+              [
+                -109.050873, 
+                40.058915
+              ], 
+              [
+                -109.050813, 
+                40.059579
+              ], 
+              [
+                -109.050944, 
+                40.180712
+              ], 
+              [
+                -109.050973, 
+                40.180849
+              ], 
+              [
+                -109.050854, 
+                40.222662
+              ], 
+              [
+                -109.049955, 
+                40.539901
+              ], 
+              [
+                -109.050074, 
+                40.540358
+              ], 
+              [
+                -109.048249, 
+                40.653601
+              ], 
+              [
+                -109.048296, 
+                40.662602
+              ], 
+              [
+                -109.050076, 
+                41.000659
+              ], 
+              [
+                -108.250649, 
+                41.000114
+              ], 
+              [
+                -107.918421, 
+                41.002036
+              ], 
+              [
+                -107.317794, 
+                41.002957
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 3, 
+      "properties": {
+        "CENSUSAREA": 103641.888, 
+        "GEO_ID": "0400000US08", 
+        "ISO": "US-CO", 
+        "LSAD": "", 
+        "NAME": "Colorado", 
+        "NAME_1": "Colorado", 
+        "STATE": "CO"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -72.397428, 
+                42.033302
+              ], 
+              [
+                -72.198828, 
+                42.030982
+              ], 
+              [
+                -72.135715, 
+                42.030245
+              ], 
+              [
+                -72.135687, 
+                42.030245
+              ], 
+              [
+                -72.10216, 
+                42.028962
+              ], 
+              [
+                -72.059752, 
+                42.027339
+              ], 
+              [
+                -71.80065, 
+                42.023569
+              ], 
+              [
+                -71.799242, 
+                42.008065
+              ], 
+              [
+                -71.796822, 
+                41.928552
+              ], 
+              [
+                -71.796089, 
+                41.904468
+              ], 
+              [
+                -71.794161, 
+                41.841101
+              ], 
+              [
+                -71.794161, 
+                41.840141
+              ], 
+              [
+                -71.792786, 
+                41.80867
+              ], 
+              [
+                -71.792767, 
+                41.807001
+              ], 
+              [
+                -71.789678, 
+                41.724734
+              ], 
+              [
+                -71.789678, 
+                41.724568
+              ], 
+              [
+                -71.789465, 
+                41.640017
+              ], 
+              [
+                -71.789356, 
+                41.59691
+              ], 
+              [
+                -71.789359, 
+                41.596852
+              ], 
+              [
+                -71.797674, 
+                41.41691
+              ], 
+              [
+                -71.797683, 
+                41.416709
+              ], 
+              [
+                -71.81839, 
+                41.419599
+              ], 
+              [
+                -71.839649, 
+                41.412119
+              ], 
+              [
+                -71.842563, 
+                41.409855
+              ], 
+              [
+                -71.843472, 
+                41.40583
+              ], 
+              [
+                -71.842131, 
+                41.395359
+              ], 
+              [
+                -71.833443, 
+                41.384524
+              ], 
+              [
+                -71.831613, 
+                41.370899
+              ], 
+              [
+                -71.83124, 
+                41.344645
+              ], 
+              [
+                -71.83253, 
+                41.341204
+              ], 
+              [
+                -71.839782, 
+                41.33469
+              ], 
+              [
+                -71.85957, 
+                41.322399
+              ], 
+              [
+                -71.868235, 
+                41.330941
+              ], 
+              [
+                -71.886302, 
+                41.33641
+              ], 
+              [
+                -71.91671, 
+                41.332217
+              ], 
+              [
+                -71.922092, 
+                41.334518
+              ], 
+              [
+                -71.923282, 
+                41.335113
+              ], 
+              [
+                -71.936284, 
+                41.337959
+              ], 
+              [
+                -71.945652, 
+                41.337799
+              ], 
+              [
+                -71.956747, 
+                41.329871
+              ], 
+              [
+                -71.970955, 
+                41.324526
+              ], 
+              [
+                -71.979447, 
+                41.329987
+              ], 
+              [
+                -71.982194, 
+                41.329861
+              ], 
+              [
+                -71.988153, 
+                41.320577
+              ], 
+              [
+                -72.021898, 
+                41.316838
+              ], 
+              [
+                -72.084487, 
+                41.319634
+              ], 
+              [
+                -72.094443, 
+                41.314164
+              ], 
+              [
+                -72.09982, 
+                41.306998
+              ], 
+              [
+                -72.11182, 
+                41.299098
+              ], 
+              [
+                -72.134221, 
+                41.299398
+              ], 
+              [
+                -72.16158, 
+                41.310262
+              ], 
+              [
+                -72.173922, 
+                41.317597
+              ], 
+              [
+                -72.177622, 
+                41.322497
+              ], 
+              [
+                -72.184122, 
+                41.323997
+              ], 
+              [
+                -72.191022, 
+                41.323197
+              ], 
+              [
+                -72.201422, 
+                41.315697
+              ], 
+              [
+                -72.203022, 
+                41.313197
+              ], 
+              [
+                -72.204022, 
+                41.299097
+              ], 
+              [
+                -72.212924, 
+                41.291365
+              ], 
+              [
+                -72.225276, 
+                41.299047
+              ], 
+              [
+                -72.235531, 
+                41.300413
+              ], 
+              [
+                -72.248161, 
+                41.299488
+              ], 
+              [
+                -72.251895, 
+                41.29862
+              ], 
+              [
+                -72.250515, 
+                41.294386
+              ], 
+              [
+                -72.251323, 
+                41.289997
+              ], 
+              [
+                -72.261487, 
+                41.282926
+              ], 
+              [
+                -72.31776, 
+                41.277782
+              ], 
+              [
+                -72.327595, 
+                41.27846
+              ], 
+              [
+                -72.333894, 
+                41.282916
+              ], 
+              [
+                -72.34146, 
+                41.28011
+              ], 
+              [
+                -72.348643, 
+                41.277446
+              ], 
+              [
+                -72.348068, 
+                41.269698
+              ], 
+              [
+                -72.386629, 
+                41.261798
+              ], 
+              [
+                -72.398688, 
+                41.278172
+              ], 
+              [
+                -72.40593, 
+                41.278398
+              ], 
+              [
+                -72.451925, 
+                41.278885
+              ], 
+              [
+                -72.472539, 
+                41.270103
+              ], 
+              [
+                -72.485693, 
+                41.270881
+              ], 
+              [
+                -72.499534, 
+                41.265866
+              ], 
+              [
+                -72.506634, 
+                41.260099
+              ], 
+              [
+                -72.51866, 
+                41.261253
+              ], 
+              [
+                -72.521312, 
+                41.2656
+              ], 
+              [
+                -72.529416, 
+                41.264421
+              ], 
+              [
+                -72.533247, 
+                41.26269
+              ], 
+              [
+                -72.536746, 
+                41.256207
+              ], 
+              [
+                -72.537776, 
+                41.255646
+              ], 
+              [
+                -72.546833, 
+                41.250718
+              ], 
+              [
+                -72.547235, 
+                41.250499
+              ], 
+              [
+                -72.570655, 
+                41.267744
+              ], 
+              [
+                -72.571076, 
+                41.268054
+              ], 
+              [
+                -72.571136, 
+                41.268098
+              ], 
+              [
+                -72.583336, 
+                41.271698
+              ], 
+              [
+                -72.585181, 
+                41.271321
+              ], 
+              [
+                -72.585934, 
+                41.271168
+              ], 
+              [
+                -72.586674, 
+                41.271017
+              ], 
+              [
+                -72.587926, 
+                41.270761
+              ], 
+              [
+                -72.589818, 
+                41.270375
+              ], 
+              [
+                -72.590967, 
+                41.270141
+              ], 
+              [
+                -72.598036, 
+                41.268698
+              ], 
+              [
+                -72.607863, 
+                41.270387
+              ], 
+              [
+                -72.610236, 
+                41.270795
+              ], 
+              [
+                -72.617237, 
+                41.271998
+              ], 
+              [
+                -72.617521, 
+                41.27194
+              ], 
+              [
+                -72.617983, 
+                41.271845
+              ], 
+              [
+                -72.631363, 
+                41.269092
+              ], 
+              [
+                -72.641001, 
+                41.267108
+              ], 
+              [
+                -72.641538, 
+                41.266998
+              ], 
+              [
+                -72.642811, 
+                41.266884
+              ], 
+              [
+                -72.650697, 
+                41.266178
+              ], 
+              [
+                -72.653838, 
+                41.265897
+              ], 
+              [
+                -72.653931, 
+                41.265931
+              ], 
+              [
+                -72.654715, 
+                41.266219
+              ], 
+              [
+                -72.662203, 
+                41.268964
+              ], 
+              [
+                -72.662838, 
+                41.269197
+              ], 
+              [
+                -72.667176, 
+                41.268192
+              ], 
+              [
+                -72.671673, 
+                41.267151
+              ], 
+              [
+                -72.672339, 
+                41.266997
+              ], 
+              [
+                -72.674319, 
+                41.26552
+              ], 
+              [
+                -72.684939, 
+                41.257597
+              ], 
+              [
+                -72.685414, 
+                41.252607
+              ], 
+              [
+                -72.685539, 
+                41.251297
+              ], 
+              [
+                -72.689446, 
+                41.247629
+              ], 
+              [
+                -72.690237, 
+                41.246887
+              ], 
+              [
+                -72.690439, 
+                41.246697
+              ], 
+              [
+                -72.693441, 
+                41.245493
+              ], 
+              [
+                -72.694744, 
+                41.24497
+              ], 
+              [
+                -72.69547, 
+                41.244948
+              ], 
+              [
+                -72.701806, 
+                41.244752
+              ], 
+              [
+                -72.706236, 
+                41.244615
+              ], 
+              [
+                -72.707212, 
+                41.244585
+              ], 
+              [
+                -72.708658, 
+                41.24454
+              ], 
+              [
+                -72.708963, 
+                41.24453
+              ], 
+              [
+                -72.709193, 
+                41.244523
+              ], 
+              [
+                -72.710595, 
+                41.24448
+              ], 
+              [
+                -72.710821, 
+                41.244812
+              ], 
+              [
+                -72.713674, 
+                41.249007
+              ], 
+              [
+                -72.711208, 
+                41.251018
+              ], 
+              [
+                -72.71246, 
+                41.254167
+              ], 
+              [
+                -72.722439, 
+                41.259138
+              ], 
+              [
+                -72.732813, 
+                41.254727
+              ], 
+              [
+                -72.754444, 
+                41.266913
+              ], 
+              [
+                -72.757477, 
+                41.266913
+              ], 
+              [
+                -72.786142, 
+                41.264796
+              ], 
+              [
+                -72.818737, 
+                41.252244
+              ], 
+              [
+                -72.819372, 
+                41.254061
+              ], 
+              [
+                -72.826883, 
+                41.256755
+              ], 
+              [
+                -72.847767, 
+                41.25669
+              ], 
+              [
+                -72.85021, 
+                41.255544
+              ], 
+              [
+                -72.854055, 
+                41.24774
+              ], 
+              [
+                -72.861344, 
+                41.245297
+              ], 
+              [
+                -72.881445, 
+                41.242597
+              ], 
+              [
+                -72.895445, 
+                41.243697
+              ], 
+              [
+                -72.900803, 
+                41.245864
+              ], 
+              [
+                -72.904345, 
+                41.247297
+              ], 
+              [
+                -72.905245, 
+                41.248297
+              ], 
+              [
+                -72.903045, 
+                41.252797
+              ], 
+              [
+                -72.902808, 
+                41.252894
+              ], 
+              [
+                -72.894745, 
+                41.256197
+              ], 
+              [
+                -72.89473, 
+                41.25626
+              ], 
+              [
+                -72.893845, 
+                41.259897
+              ], 
+              [
+                -72.89637, 
+                41.263949
+              ], 
+              [
+                -72.903129, 
+                41.274794
+              ], 
+              [
+                -72.907962, 
+                41.282549
+              ], 
+              [
+                -72.9082, 
+                41.282932
+              ], 
+              [
+                -72.916827, 
+                41.282033
+              ], 
+              [
+                -72.917037, 
+                41.281905
+              ], 
+              [
+                -72.920062, 
+                41.280056
+              ], 
+              [
+                -72.920658, 
+                41.271574
+              ], 
+              [
+                -72.920714, 
+                41.27078
+              ], 
+              [
+                -72.920846, 
+                41.268897
+              ], 
+              [
+                -72.931887, 
+                41.261139
+              ], 
+              [
+                -72.933472, 
+                41.260024
+              ], 
+              [
+                -72.935646, 
+                41.258497
+              ], 
+              [
+                -72.956984, 
+                41.25292
+              ], 
+              [
+                -72.959633, 
+                41.252228
+              ], 
+              [
+                -72.961345, 
+                41.25178
+              ], 
+              [
+                -72.962047, 
+                41.251597
+              ], 
+              [
+                -72.983751, 
+                41.235364
+              ], 
+              [
+                -72.985095, 
+                41.234358
+              ], 
+              [
+                -72.986247, 
+                41.233497
+              ], 
+              [
+                -72.997948, 
+                41.222697
+              ], 
+              [
+                -73.003639, 
+                41.215287
+              ], 
+              [
+                -73.007548, 
+                41.210197
+              ], 
+              [
+                -73.013465, 
+                41.205479
+              ], 
+              [
+                -73.013988, 
+                41.205062
+              ], 
+              [
+                -73.014948, 
+                41.204297
+              ], 
+              [
+                -73.020149, 
+                41.204097
+              ], 
+              [
+                -73.020167, 
+                41.204237
+              ], 
+              [
+                -73.020195, 
+                41.204446
+              ], 
+              [
+                -73.02021, 
+                41.204568
+              ], 
+              [
+                -73.020254, 
+                41.204906
+              ], 
+              [
+                -73.020449, 
+                41.206397
+              ], 
+              [
+                -73.022549, 
+                41.207197
+              ], 
+              [
+                -73.024783, 
+                41.207435
+              ], 
+              [
+                -73.045602, 
+                41.209658
+              ], 
+              [
+                -73.05065, 
+                41.210197
+              ], 
+              [
+                -73.054947, 
+                41.208468
+              ], 
+              [
+                -73.05935, 
+                41.206697
+              ], 
+              [
+                -73.07761, 
+                41.195176
+              ], 
+              [
+                -73.07945, 
+                41.194015
+              ], 
+              [
+                -73.09122, 
+                41.184153
+              ], 
+              [
+                -73.092, 
+                41.1835
+              ], 
+              [
+                -73.092147, 
+                41.183377
+              ], 
+              [
+                -73.104328, 
+                41.17317
+              ], 
+              [
+                -73.105483, 
+                41.172203
+              ], 
+              [
+                -73.105493, 
+                41.172194
+              ], 
+              [
+                -73.107987, 
+                41.168738
+              ], 
+              [
+                -73.110352, 
+                41.159697
+              ], 
+              [
+                -73.109952, 
+                41.156997
+              ], 
+              [
+                -73.108352, 
+                41.153718
+              ], 
+              [
+                -73.111052, 
+                41.150797
+              ], 
+              [
+                -73.130253, 
+                41.146797
+              ], 
+              [
+                -73.16437, 
+                41.158565
+              ], 
+              [
+                -73.170074, 
+                41.160532
+              ], 
+              [
+                -73.170701, 
+                41.164945
+              ], 
+              [
+                -73.177774, 
+                41.166697
+              ], 
+              [
+                -73.202656, 
+                41.158096
+              ], 
+              [
+                -73.228295, 
+                41.142602
+              ], 
+              [
+                -73.235058, 
+                41.143996
+              ], 
+              [
+                -73.247958, 
+                41.126396
+              ], 
+              [
+                -73.262358, 
+                41.117496
+              ], 
+              [
+                -73.286759, 
+                41.127896
+              ], 
+              [
+                -73.296359, 
+                41.125696
+              ], 
+              [
+                -73.31186, 
+                41.116296
+              ], 
+              [
+                -73.33066, 
+                41.109996
+              ], 
+              [
+                -73.372296, 
+                41.10402
+              ], 
+              [
+                -73.392162, 
+                41.087696
+              ], 
+              [
+                -73.400154, 
+                41.086299
+              ], 
+              [
+                -73.41367, 
+                41.073258
+              ], 
+              [
+                -73.435063, 
+                41.056696
+              ], 
+              [
+                -73.450364, 
+                41.057096
+              ], 
+              [
+                -73.468239, 
+                41.051347
+              ], 
+              [
+                -73.477364, 
+                41.035997
+              ], 
+              [
+                -73.493327, 
+                41.048173
+              ], 
+              [
+                -73.516903, 
+                41.038738
+              ], 
+              [
+                -73.516766, 
+                41.029497
+              ], 
+              [
+                -73.522666, 
+                41.019297
+              ], 
+              [
+                -73.528866, 
+                41.016397
+              ], 
+              [
+                -73.531169, 
+                41.021919
+              ], 
+              [
+                -73.530189, 
+                41.028776
+              ], 
+              [
+                -73.532786, 
+                41.03167
+              ], 
+              [
+                -73.535338, 
+                41.03192
+              ], 
+              [
+                -73.551494, 
+                41.024336
+              ], 
+              [
+                -73.561968, 
+                41.016797
+              ], 
+              [
+                -73.567668, 
+                41.010897
+              ], 
+              [
+                -73.570068, 
+                41.001597
+              ], 
+              [
+                -73.583968, 
+                41.000897
+              ], 
+              [
+                -73.584988, 
+                41.010537
+              ], 
+              [
+                -73.595699, 
+                41.015995
+              ], 
+              [
+                -73.603952, 
+                41.015054
+              ], 
+              [
+                -73.643478, 
+                41.002171
+              ], 
+              [
+                -73.651175, 
+                40.995229
+              ], 
+              [
+                -73.657336, 
+                40.985171
+              ], 
+              [
+                -73.654671, 
+                41.011697
+              ], 
+              [
+                -73.655371, 
+                41.012797
+              ], 
+              [
+                -73.670472, 
+                41.030097
+              ], 
+              [
+                -73.679973, 
+                41.041797
+              ], 
+              [
+                -73.687173, 
+                41.050697
+              ], 
+              [
+                -73.694273, 
+                41.059296
+              ], 
+              [
+                -73.727775, 
+                41.100696
+              ], 
+              [
+                -73.639672, 
+                41.141495
+              ], 
+              [
+                -73.632153, 
+                41.144921
+              ], 
+              [
+                -73.614407, 
+                41.153001
+              ], 
+              [
+                -73.514617, 
+                41.198434
+              ], 
+              [
+                -73.509487, 
+                41.200814
+              ], 
+              [
+                -73.482709, 
+                41.21276
+              ], 
+              [
+                -73.550961, 
+                41.295422
+              ], 
+              [
+                -73.544728, 
+                41.366375
+              ], 
+              [
+                -73.543641, 
+                41.376778
+              ], 
+              [
+                -73.537673, 
+                41.433905
+              ], 
+              [
+                -73.537469, 
+                41.43589
+              ], 
+              [
+                -73.536969, 
+                41.441094
+              ], 
+              [
+                -73.536067, 
+                41.451331
+              ], 
+              [
+                -73.535986, 
+                41.45306
+              ], 
+              [
+                -73.535885, 
+                41.455236
+              ], 
+              [
+                -73.535857, 
+                41.455709
+              ], 
+              [
+                -73.535769, 
+                41.457159
+              ], 
+              [
+                -73.534369, 
+                41.475894
+              ], 
+              [
+                -73.534269, 
+                41.476394
+              ], 
+              [
+                -73.534269, 
+                41.476911
+              ], 
+              [
+                -73.53415, 
+                41.47806
+              ], 
+              [
+                -73.534055, 
+                41.478968
+              ], 
+              [
+                -73.533969, 
+                41.479693
+              ], 
+              [
+                -73.530067, 
+                41.527194
+              ], 
+              [
+                -73.521457, 
+                41.616429
+              ], 
+              [
+                -73.517473, 
+                41.666646
+              ], 
+              [
+                -73.510171, 
+                41.758686
+              ], 
+              [
+                -73.505008, 
+                41.823773
+              ], 
+              [
+                -73.504944, 
+                41.824285
+              ], 
+              [
+                -73.487314, 
+                42.049638
+              ], 
+              [
+                -73.29442, 
+                42.046984
+              ], 
+              [
+                -73.293097, 
+                42.04694
+              ], 
+              [
+                -73.231056, 
+                42.044945
+              ], 
+              [
+                -73.229798, 
+                42.044877
+              ], 
+              [
+                -73.127276, 
+                42.041964
+              ], 
+              [
+                -73.053254, 
+                42.039861
+              ], 
+              [
+                -73.008739, 
+                42.039356
+              ], 
+              [
+                -72.863733, 
+                42.03771
+              ], 
+              [
+                -72.863619, 
+                42.037709
+              ], 
+              [
+                -72.813541, 
+                42.036494
+              ], 
+              [
+                -72.816741, 
+                41.997595
+              ], 
+              [
+                -72.774757, 
+                42.002129
+              ], 
+              [
+                -72.766739, 
+                42.002995
+              ], 
+              [
+                -72.766139, 
+                42.007695
+              ], 
+              [
+                -72.758151, 
+                42.020865
+              ], 
+              [
+                -72.757467, 
+                42.020947
+              ], 
+              [
+                -72.755838, 
+                42.036195
+              ], 
+              [
+                -72.714134, 
+                42.036608
+              ], 
+              [
+                -72.695927, 
+                42.036788
+              ], 
+              [
+                -72.509187, 
+                42.034607
+              ], 
+              [
+                -72.397428, 
+                42.033302
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 4, 
+      "properties": {
+        "CENSUSAREA": 4842.355, 
+        "GEO_ID": "0400000US09", 
+        "ISO": "US-CT", 
+        "LSAD": "", 
+        "NAME": "Connecticut", 
+        "NAME_1": "Connecticut", 
+        "STATE": "CT"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -77.032986, 
+                38.8395
+              ], 
+              [
+                -77.031698, 
+                38.850512
+              ], 
+              [
+                -77.040599, 
+                38.871212
+              ], 
+              [
+                -77.068199, 
+                38.899811
+              ], 
+              [
+                -77.0902, 
+                38.904211
+              ], 
+              [
+                -77.1012, 
+                38.911111
+              ], 
+              [
+                -77.119863, 
+                38.934265
+              ], 
+              [
+                -77.1199, 
+                38.934311
+              ], 
+              [
+                -77.1007, 
+                38.94891
+              ], 
+              [
+                -77.054299, 
+                38.98511
+              ], 
+              [
+                -77.040999, 
+                38.99511
+              ], 
+              [
+                -77.036299, 
+                38.99171
+              ], 
+              [
+                -77.015598, 
+                38.97591
+              ], 
+              [
+                -77.013798, 
+                38.97441
+              ], 
+              [
+                -77.008298, 
+                38.97011
+              ], 
+              [
+                -77.002636, 
+                38.965521
+              ], 
+              [
+                -77.002498, 
+                38.96541
+              ], 
+              [
+                -76.941722, 
+                38.918019
+              ], 
+              [
+                -76.909395, 
+                38.892812
+              ], 
+              [
+                -76.910795, 
+                38.891712
+              ], 
+              [
+                -76.919295, 
+                38.885112
+              ], 
+              [
+                -76.920195, 
+                38.884412
+              ], 
+              [
+                -76.949696, 
+                38.861312
+              ], 
+              [
+                -76.953696, 
+                38.858512
+              ], 
+              [
+                -77.001397, 
+                38.821513
+              ], 
+              [
+                -77.024392, 
+                38.80297
+              ], 
+              [
+                -77.038598, 
+                38.791513
+              ], 
+              [
+                -77.032986, 
+                38.8395
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 5, 
+      "properties": {
+        "CENSUSAREA": 61.048, 
+        "GEO_ID": "0400000US11", 
+        "ISO": "US-DC", 
+        "LSAD": "", 
+        "NAME": "District of Columbia", 
+        "NAME_1": "District of Columbia", 
+        "STATE": "DC"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -84.810477, 
+                34.987607
+              ], 
+              [
+                -84.809184, 
+                34.987569
+              ], 
+              [
+                -84.808127, 
+                34.987592
+              ], 
+              [
+                -84.775852, 
+                34.9878
+              ], 
+              [
+                -84.731022, 
+                34.988088
+              ], 
+              [
+                -84.727434, 
+                34.98802
+              ], 
+              [
+                -84.621483, 
+                34.988329
+              ], 
+              [
+                -84.509886, 
+                34.98801
+              ], 
+              [
+                -84.509052, 
+                34.988033
+              ], 
+              [
+                -84.394903, 
+                34.98803
+              ], 
+              [
+                -84.393935, 
+                34.988068
+              ], 
+              [
+                -84.321869, 
+                34.988408
+              ], 
+              [
+                -84.129555, 
+                34.987504
+              ], 
+              [
+                -84.129455, 
+                34.987504
+              ], 
+              [
+                -84.029954, 
+                34.987321
+              ], 
+              [
+                -84.021357, 
+                34.98743
+              ], 
+              [
+                -84.005457, 
+                34.98744
+              ], 
+              [
+                -83.936646, 
+                34.987485
+              ], 
+              [
+                -83.936413, 
+                34.987485
+              ], 
+              [
+                -83.673621, 
+                34.987111
+              ], 
+              [
+                -83.620185, 
+                34.992091
+              ], 
+              [
+                -83.549381, 
+                34.992492
+              ], 
+              [
+                -83.483064, 
+                34.993737
+              ], 
+              [
+                -83.108714, 
+                35.000768
+              ], 
+              [
+                -83.108535, 
+                35.000771
+              ], 
+              [
+                -83.143261, 
+                34.924756
+              ], 
+              [
+                -83.242962, 
+                34.877749
+              ], 
+              [
+                -83.267293, 
+                34.832748
+              ], 
+              [
+                -83.283151, 
+                34.821328
+              ], 
+              [
+                -83.32406, 
+                34.788691
+              ], 
+              [
+                -83.339129, 
+                34.741266
+              ], 
+              [
+                -83.352422, 
+                34.716111
+              ], 
+              [
+                -83.352485, 
+                34.715993
+              ], 
+              [
+                -83.351392, 
+                34.714456
+              ], 
+              [
+                -83.350976, 
+                34.713243
+              ], 
+              [
+                -83.351293, 
+                34.701703
+              ], 
+              [
+                -83.338194, 
+                34.687924
+              ], 
+              [
+                -83.337867, 
+                34.687681
+              ], 
+              [
+                -83.291683, 
+                34.653396
+              ], 
+              [
+                -83.240669, 
+                34.624507
+              ], 
+              [
+                -83.240676, 
+                34.624307
+              ], 
+              [
+                -83.167523, 
+                34.600424
+              ], 
+              [
+                -83.170978, 
+                34.598798
+              ], 
+              [
+                -83.170278, 
+                34.592398
+              ], 
+              [
+                -83.106874, 
+                34.534053
+              ], 
+              [
+                -83.087189, 
+                34.515939
+              ], 
+              [
+                -83.072746, 
+                34.504349
+              ], 
+              [
+                -83.052161, 
+                34.493062
+              ], 
+              [
+                -83.034712, 
+                34.483495
+              ], 
+              [
+                -83.006848, 
+                34.474376
+              ], 
+              [
+                -82.995284, 
+                34.474549
+              ], 
+              [
+                -82.992671, 
+                34.479072
+              ], 
+              [
+                -82.992215, 
+                34.479198
+              ], 
+              [
+                -82.979568, 
+                34.482702
+              ], 
+              [
+                -82.939067, 
+                34.486202
+              ], 
+              [
+                -82.902665, 
+                34.485902
+              ], 
+              [
+                -82.882864, 
+                34.479003
+              ], 
+              [
+                -82.873831, 
+                34.471508
+              ], 
+              [
+                -82.874864, 
+                34.468891
+              ], 
+              [
+                -82.848651, 
+                34.423844
+              ], 
+              [
+                -82.766078, 
+                34.293509
+              ], 
+              [
+                -82.755028, 
+                34.276067
+              ], 
+              [
+                -82.74198, 
+                34.230196
+              ], 
+              [
+                -82.743461, 
+                34.227343
+              ], 
+              [
+                -82.744415, 
+                34.224913
+              ], 
+              [
+                -82.74192, 
+                34.210063
+              ], 
+              [
+                -82.741491, 
+                34.208709
+              ], 
+              [
+                -82.731881, 
+                34.178363
+              ], 
+              [
+                -82.717507, 
+                34.150504
+              ], 
+              [
+                -82.70414, 
+                34.141007
+              ], 
+              [
+                -82.67732, 
+                34.131657
+              ], 
+              [
+                -82.668113, 
+                34.12016
+              ], 
+              [
+                -82.659077, 
+                34.103544
+              ], 
+              [
+                -82.658561, 
+                34.103118
+              ], 
+              [
+                -82.654019, 
+                34.100346
+              ], 
+              [
+                -82.652175, 
+                34.099704
+              ], 
+              [
+                -82.641252, 
+                34.088914
+              ], 
+              [
+                -82.640701, 
+                34.088341
+              ], 
+              [
+                -82.597079, 
+                34.01239
+              ], 
+              [
+                -82.564582, 
+                33.95581
+              ], 
+              [
+                -82.564483, 
+                33.955744
+              ], 
+              [
+                -82.429164, 
+                33.865844
+              ], 
+              [
+                -82.422803, 
+                33.863754
+              ], 
+              [
+                -82.408354, 
+                33.86632
+              ], 
+              [
+                -82.403881, 
+                33.865477
+              ], 
+              [
+                -82.32448, 
+                33.820033
+              ], 
+              [
+                -82.301457, 
+                33.801864
+              ], 
+              [
+                -82.247472, 
+                33.752591
+              ], 
+              [
+                -82.218649, 
+                33.686299
+              ], 
+              [
+                -82.196583, 
+                33.630582
+              ], 
+              [
+                -82.179854, 
+                33.615945
+              ], 
+              [
+                -82.135046, 
+                33.591044
+              ], 
+              [
+                -82.12908, 
+                33.589925
+              ], 
+              [
+                -82.124841, 
+                33.591274
+              ], 
+              [
+                -82.11663, 
+                33.589723
+              ], 
+              [
+                -82.098816, 
+                33.586358
+              ], 
+              [
+                -82.069039, 
+                33.575382
+              ], 
+              [
+                -82.046335, 
+                33.56383
+              ], 
+              [
+                -82.028238, 
+                33.544934
+              ], 
+              [
+                -82.014293, 
+                33.530313
+              ], 
+              [
+                -82.007638, 
+                33.523335
+              ], 
+              [
+                -82.007138, 
+                33.522835
+              ], 
+              [
+                -81.967037, 
+                33.480636
+              ], 
+              [
+                -81.957934, 
+                33.468632
+              ], 
+              [
+                -81.912572, 
+                33.408811
+              ], 
+              [
+                -81.902737, 
+                33.331242
+              ], 
+              [
+                -81.852136, 
+                33.247544
+              ], 
+              [
+                -81.851975, 
+                33.247408
+              ], 
+              [
+                -81.772251, 
+                33.18012
+              ], 
+              [
+                -81.696934, 
+                33.116551
+              ], 
+              [
+                -81.620287, 
+                33.095408
+              ], 
+              [
+                -81.615756, 
+                33.092534
+              ], 
+              [
+                -81.541831, 
+                33.045654
+              ], 
+              [
+                -81.51169, 
+                33.024506
+              ], 
+              [
+                -81.496637, 
+                33.010224
+              ], 
+              [
+                -81.491495, 
+                32.998572
+              ], 
+              [
+                -81.494736, 
+                32.978998
+              ], 
+              [
+                -81.49983, 
+                32.963816
+              ], 
+              [
+                -81.423772, 
+                32.810514
+              ], 
+              [
+                -81.404949, 
+                32.747027
+              ], 
+              [
+                -81.405134, 
+                32.744964
+              ], 
+              [
+                -81.414761, 
+                32.63744
+              ], 
+              [
+                -81.418431, 
+                32.634704
+              ], 
+              [
+                -81.41866, 
+                32.629392
+              ], 
+              [
+                -81.411906, 
+                32.61841
+              ], 
+              [
+                -81.389338, 
+                32.595436
+              ], 
+              [
+                -81.389258, 
+                32.595385
+              ], 
+              [
+                -81.348155, 
+                32.569294
+              ], 
+              [
+                -81.328753, 
+                32.561228
+              ], 
+              [
+                -81.318255, 
+                32.559722
+              ], 
+              [
+                -81.286776, 
+                32.544831
+              ], 
+              [
+                -81.275415, 
+                32.539457
+              ], 
+              [
+                -81.199029, 
+                32.467286
+              ], 
+              [
+                -81.168032, 
+                32.368391
+              ], 
+              [
+                -81.140932, 
+                32.349393
+              ], 
+              [
+                -81.134332, 
+                32.341693
+              ], 
+              [
+                -81.122333, 
+                32.305395
+              ], 
+              [
+                -81.120333, 
+                32.285796
+              ], 
+              [
+                -81.128034, 
+                32.276297
+              ], 
+              [
+                -81.125457, 
+                32.22713
+              ], 
+              [
+                -81.122034, 
+                32.161803
+              ], 
+              [
+                -81.117234, 
+                32.117605
+              ], 
+              [
+                -81.113334, 
+                32.113205
+              ], 
+              [
+                -81.06185, 
+                32.087935
+              ], 
+              [
+                -81.042833, 
+                32.084508
+              ], 
+              [
+                -81.004115, 
+                32.072225
+              ], 
+              [
+                -80.885517, 
+                32.0346
+              ], 
+              [
+                -80.859111, 
+                32.023693
+              ], 
+              [
+                -80.852276, 
+                32.026676
+              ], 
+              [
+                -80.84313, 
+                32.024226
+              ], 
+              [
+                -80.840549, 
+                32.011306
+              ], 
+              [
+                -80.841913, 
+                32.002643
+              ], 
+              [
+                -80.848441, 
+                31.988279
+              ], 
+              [
+                -80.862814, 
+                31.969346
+              ], 
+              [
+                -80.882814, 
+                31.959075
+              ], 
+              [
+                -80.897687, 
+                31.949065
+              ], 
+              [
+                -80.911207, 
+                31.943769
+              ], 
+              [
+                -80.929101, 
+                31.944964
+              ], 
+              [
+                -80.930279, 
+                31.956705
+              ], 
+              [
+                -80.948491, 
+                31.95723
+              ], 
+              [
+                -80.972392, 
+                31.94127
+              ], 
+              [
+                -80.975714, 
+                31.923602
+              ], 
+              [
+                -80.968494, 
+                31.915822
+              ], 
+              [
+                -80.954469, 
+                31.911768
+              ], 
+              [
+                -80.941359, 
+                31.912984
+              ], 
+              [
+                -80.934508, 
+                31.90918
+              ], 
+              [
+                -80.947294, 
+                31.89621
+              ], 
+              [
+                -80.971434, 
+                31.877941
+              ], 
+              [
+                -80.99269, 
+                31.857641
+              ], 
+              [
+                -81.000317, 
+                31.856744
+              ], 
+              [
+                -81.014478, 
+                31.867474
+              ], 
+              [
+                -81.041548, 
+                31.876198
+              ], 
+              [
+                -81.065255, 
+                31.877095
+              ], 
+              [
+                -81.058596, 
+                31.857811
+              ], 
+              [
+                -81.05907, 
+                31.850106
+              ], 
+              [
+                -81.06279, 
+                31.84474
+              ], 
+              [
+                -81.076178, 
+                31.836132
+              ], 
+              [
+                -81.075812, 
+                31.829031
+              ], 
+              [
+                -81.057181, 
+                31.822687
+              ], 
+              [
+                -81.050946, 
+                31.822383
+              ], 
+              [
+                -81.04794, 
+                31.824881
+              ], 
+              [
+                -81.039808, 
+                31.823
+              ], 
+              [
+                -81.036958, 
+                31.819558
+              ], 
+              [
+                -81.036873, 
+                31.812721
+              ], 
+              [
+                -81.047345, 
+                31.802865
+              ], 
+              [
+                -81.068116, 
+                31.768735
+              ], 
+              [
+                -81.077057, 
+                31.761256
+              ], 
+              [
+                -81.097402, 
+                31.753126
+              ], 
+              [
+                -81.130634, 
+                31.722692
+              ], 
+              [
+                -81.138448, 
+                31.720934
+              ], 
+              [
+                -81.154686, 
+                31.726203
+              ], 
+              [
+                -81.16067, 
+                31.728144
+              ], 
+              [
+                -81.192784, 
+                31.733245
+              ], 
+              [
+                -81.198394, 
+                31.72607
+              ], 
+              [
+                -81.203572, 
+                31.719448
+              ], 
+              [
+                -81.186303, 
+                31.701509
+              ], 
+              [
+                -81.161084, 
+                31.691401
+              ], 
+              [
+                -81.154624, 
+                31.693874
+              ], 
+              [
+                -81.151888, 
+                31.698411
+              ], 
+              [
+                -81.149369, 
+                31.699304
+              ], 
+              [
+                -81.139394, 
+                31.699917
+              ], 
+              [
+                -81.131137, 
+                31.695774
+              ], 
+              [
+                -81.135608, 
+                31.683491
+              ], 
+              [
+                -81.136408, 
+                31.674832
+              ], 
+              [
+                -81.131728, 
+                31.654484
+              ], 
+              [
+                -81.133493, 
+                31.623348
+              ], 
+              [
+                -81.14997, 
+                31.593476
+              ], 
+              [
+                -81.160364, 
+                31.570436
+              ], 
+              [
+                -81.173079, 
+                31.555908
+              ], 
+              [
+                -81.178822, 
+                31.55553
+              ], 
+              [
+                -81.183252, 
+                31.560058
+              ], 
+              [
+                -81.186114, 
+                31.568032
+              ], 
+              [
+                -81.19438, 
+                31.568101
+              ], 
+              [
+                -81.204315, 
+                31.568183
+              ], 
+              [
+                -81.214536, 
+                31.557601
+              ], 
+              [
+                -81.240699, 
+                31.552313
+              ], 
+              [
+                -81.254218, 
+                31.55594
+              ], 
+              [
+                -81.260076, 
+                31.54828
+              ], 
+              [
+                -81.263905, 
+                31.532579
+              ], 
+              [
+                -81.263437, 
+                31.530932
+              ], 
+              [
+                -81.258809, 
+                31.52906
+              ], 
+              [
+                -81.217948, 
+                31.527284
+              ], 
+              [
+                -81.213519, 
+                31.528152
+              ], 
+              [
+                -81.199518, 
+                31.537596
+              ], 
+              [
+                -81.193016, 
+                31.535833
+              ], 
+              [
+                -81.181592, 
+                31.527697
+              ], 
+              [
+                -81.17831, 
+                31.52241
+              ], 
+              [
+                -81.177254, 
+                31.517074
+              ], 
+              [
+                -81.189643, 
+                31.503588
+              ], 
+              [
+                -81.204883, 
+                31.473124
+              ], 
+              [
+                -81.246911, 
+                31.422784
+              ], 
+              [
+                -81.258616, 
+                31.404425
+              ], 
+              [
+                -81.278798, 
+                31.367214
+              ], 
+              [
+                -81.279338, 
+                31.351127
+              ], 
+              [
+                -81.282923, 
+                31.326491
+              ], 
+              [
+                -81.274513, 
+                31.326237
+              ], 
+              [
+                -81.268027, 
+                31.324218
+              ], 
+              [
+                -81.25482, 
+                31.315452
+              ], 
+              [
+                -81.260958, 
+                31.30391
+              ], 
+              [
+                -81.269906, 
+                31.294489
+              ], 
+              [
+                -81.274688, 
+                31.289454
+              ], 
+              [
+                -81.276862, 
+                31.254734
+              ], 
+              [
+                -81.282842, 
+                31.24433
+              ], 
+              [
+                -81.289136, 
+                31.225487
+              ], 
+              [
+                -81.288403, 
+                31.211065
+              ], 
+              [
+                -81.293359, 
+                31.206332
+              ], 
+              [
+                -81.304957, 
+                31.206173
+              ], 
+              [
+                -81.314183, 
+                31.207938
+              ], 
+              [
+                -81.339028, 
+                31.186918
+              ], 
+              [
+                -81.35488, 
+                31.167204
+              ], 
+              [
+                -81.360791, 
+                31.155903
+              ], 
+              [
+                -81.359349, 
+                31.149166
+              ], 
+              [
+                -81.368241, 
+                31.136534
+              ], 
+              [
+                -81.38683, 
+                31.133214
+              ], 
+              [
+                -81.399677, 
+                31.134113
+              ], 
+              [
+                -81.402096, 
+                31.125383
+              ], 
+              [
+                -81.403732, 
+                31.107115
+              ], 
+              [
+                -81.401209, 
+                31.086143
+              ], 
+              [
+                -81.401267, 
+                31.072781
+              ], 
+              [
+                -81.415123, 
+                31.026718
+              ], 
+              [
+                -81.420474, 
+                31.016703
+              ], 
+              [
+                -81.424732, 
+                31.013678
+              ], 
+              [
+                -81.432475, 
+                31.012991
+              ], 
+              [
+                -81.43471, 
+                31.014641
+              ], 
+              [
+                -81.434923, 
+                31.017804
+              ], 
+              [
+                -81.44317, 
+                31.016661
+              ], 
+              [
+                -81.451444, 
+                31.015515
+              ], 
+              [
+                -81.457795, 
+                31.010259
+              ], 
+              [
+                -81.45924, 
+                31.005692
+              ], 
+              [
+                -81.469298, 
+                30.996028
+              ], 
+              [
+                -81.490586, 
+                30.984952
+              ], 
+              [
+                -81.493651, 
+                30.977528
+              ], 
+              [
+                -81.486966, 
+                30.969602
+              ], 
+              [
+                -81.475789, 
+                30.965976
+              ], 
+              [
+                -81.472321, 
+                30.969899
+              ], 
+              [
+                -81.466814, 
+                30.97091
+              ], 
+              [
+                -81.453568, 
+                30.965573
+              ], 
+              [
+                -81.447388, 
+                30.956732
+              ], 
+              [
+                -81.426929, 
+                30.956615
+              ], 
+              [
+                -81.420108, 
+                30.974076
+              ], 
+              [
+                -81.415825, 
+                30.977192
+              ], 
+              [
+                -81.408484, 
+                30.977718
+              ], 
+              [
+                -81.403409, 
+                30.957914
+              ], 
+              [
+                -81.405153, 
+                30.908203
+              ], 
+              [
+                -81.428577, 
+                30.836336
+              ], 
+              [
+                -81.430835, 
+                30.831156
+              ], 
+              [
+                -81.44013, 
+                30.821369
+              ], 
+              [
+                -81.446927, 
+                30.81039
+              ], 
+              [
+                -81.455287, 
+                30.79093
+              ], 
+              [
+                -81.460061, 
+                30.769912
+              ], 
+              [
+                -81.461065, 
+                30.753684
+              ], 
+              [
+                -81.45947, 
+                30.741979
+              ], 
+              [
+                -81.449375, 
+                30.715601
+              ], 
+              [
+                -81.444124, 
+                30.709714
+              ], 
+              [
+                -81.544618, 
+                30.712636
+              ], 
+              [
+                -81.606221, 
+                30.718135
+              ], 
+              [
+                -81.624298, 
+                30.736194
+              ], 
+              [
+                -81.637222, 
+                30.733835
+              ], 
+              [
+                -81.719927, 
+                30.744634
+              ], 
+              [
+                -81.732627, 
+                30.749934
+              ], 
+              [
+                -81.741278, 
+                30.762681
+              ], 
+              [
+                -81.759338, 
+                30.771377
+              ], 
+              [
+                -81.806652, 
+                30.789683
+              ], 
+              [
+                -81.827014, 
+                30.788933
+              ], 
+              [
+                -81.840375, 
+                30.786384
+              ], 
+              [
+                -81.868608, 
+                30.792754
+              ], 
+              [
+                -81.906014, 
+                30.822176
+              ], 
+              [
+                -81.999836, 
+                30.788348
+              ], 
+              [
+                -82.023213, 
+                30.781987
+              ], 
+              [
+                -82.050432, 
+                30.676266
+              ], 
+              [
+                -82.049401, 
+                30.655296
+              ], 
+              [
+                -82.037609, 
+                30.633271
+              ], 
+              [
+                -82.01329, 
+                30.595665
+              ], 
+              [
+                -82.005477, 
+                30.563495
+              ], 
+              [
+                -82.01699, 
+                30.519358
+              ], 
+              [
+                -82.016103, 
+                30.497355
+              ], 
+              [
+                -82.050031, 
+                30.36249
+              ], 
+              [
+                -82.050069, 
+                30.362338
+              ], 
+              [
+                -82.124835, 
+                30.366564
+              ], 
+              [
+                -82.165192, 
+                30.358035
+              ], 
+              [
+                -82.171508, 
+                30.359869
+              ], 
+              [
+                -82.189583, 
+                30.376213
+              ], 
+              [
+                -82.204151, 
+                30.40133
+              ], 
+              [
+                -82.210291, 
+                30.42459
+              ], 
+              [
+                -82.20604, 
+                30.455507
+              ], 
+              [
+                -82.21233, 
+                30.499558
+              ], 
+              [
+                -82.214385, 
+                30.566958
+              ], 
+              [
+                -82.214847, 
+                30.567009
+              ], 
+              [
+                -82.249841, 
+                30.570863
+              ], 
+              [
+                -82.2581, 
+                30.571559
+              ], 
+              [
+                -82.287343, 
+                30.573458
+              ], 
+              [
+                -82.374844, 
+                30.579004
+              ], 
+              [
+                -82.418915, 
+                30.581745
+              ], 
+              [
+                -82.459544, 
+                30.584272
+              ], 
+              [
+                -82.459792, 
+                30.584287
+              ], 
+              [
+                -82.524899, 
+                30.588189
+              ], 
+              [
+                -82.536233, 
+                30.588885
+              ], 
+              [
+                -82.545055, 
+                30.589361
+              ], 
+              [
+                -82.553159, 
+                30.589934
+              ], 
+              [
+                -82.565476, 
+                30.590622
+              ], 
+              [
+                -82.569237, 
+                30.590965
+              ], 
+              [
+                -82.584002, 
+                30.591796
+              ], 
+              [
+                -82.689271, 
+                30.597719
+              ], 
+              [
+                -82.689539, 
+                30.597734
+              ], 
+              [
+                -82.698618, 
+                30.598232
+              ], 
+              [
+                -82.698902, 
+                30.598271
+              ], 
+              [
+                -82.877259, 
+                30.609024
+              ], 
+              [
+                -82.878779, 
+                30.609082
+              ], 
+              [
+                -83.136616, 
+                30.624346
+              ], 
+              [
+                -83.15617, 
+                30.625504
+              ], 
+              [
+                -83.163309, 
+                30.625895
+              ], 
+              [
+                -83.174411, 
+                30.626444
+              ], 
+              [
+                -83.187391, 
+                30.627223
+              ], 
+              [
+                -83.256218, 
+                30.631279
+              ], 
+              [
+                -83.309249, 
+                30.634405
+              ], 
+              [
+                -83.30925, 
+                30.634405
+              ], 
+              [
+                -83.309455, 
+                30.634417
+              ], 
+              [
+                -83.311647, 
+                30.634577
+              ], 
+              [
+                -83.340852, 
+                30.636336
+              ], 
+              [
+                -83.341011, 
+                30.636346
+              ], 
+              [
+                -83.357703, 
+                30.637359
+              ], 
+              [
+                -83.37946, 
+                30.63868
+              ], 
+              [
+                -83.390062, 
+                30.639333
+              ], 
+              [
+                -83.429477, 
+                30.641519
+              ], 
+              [
+                -83.429584, 
+                30.641496
+              ], 
+              [
+                -83.440021, 
+                30.642023
+              ], 
+              [
+                -83.448895, 
+                30.64241
+              ], 
+              [
+                -83.611667, 
+                30.651255
+              ], 
+              [
+                -83.61172, 
+                30.651258
+              ], 
+              [
+                -83.674058, 
+                30.654747
+              ], 
+              [
+                -83.676773, 
+                30.654905
+              ], 
+              [
+                -83.743729, 
+                30.658396
+              ], 
+              [
+                -83.810536, 
+                30.66188
+              ], 
+              [
+                -83.820886, 
+                30.662612
+              ], 
+              [
+                -83.855216, 
+                30.664412
+              ], 
+              [
+                -83.88022, 
+                30.665832
+              ], 
+              [
+                -83.880317, 
+                30.665807
+              ], 
+              [
+                -84.007391, 
+                30.672097
+              ], 
+              [
+                -84.007454, 
+                30.6721
+              ], 
+              [
+                -84.039707, 
+                30.673819
+              ], 
+              [
+                -84.04181, 
+                30.673878
+              ], 
+              [
+                -84.046605, 
+                30.6742
+              ], 
+              [
+                -84.057228, 
+                30.674705
+              ], 
+              [
+                -84.083753, 
+                30.675954
+              ], 
+              [
+                -84.28121, 
+                30.685256
+              ], 
+              [
+                -84.282562, 
+                30.685316
+              ], 
+              [
+                -84.380719, 
+                30.689673
+              ], 
+              [
+                -84.535042, 
+                30.696523
+              ], 
+              [
+                -84.53937, 
+                30.696775
+              ], 
+              [
+                -84.606249, 
+                30.699872
+              ], 
+              [
+                -84.606386, 
+                30.699865
+              ], 
+              [
+                -84.863465, 
+                30.711487
+              ], 
+              [
+                -84.864693, 
+                30.711542
+              ], 
+              [
+                -84.896122, 
+                30.750591
+              ], 
+              [
+                -84.941925, 
+                30.887988
+              ], 
+              [
+                -84.959626, 
+                30.910587
+              ], 
+              [
+                -84.983527, 
+                30.935486
+              ], 
+              [
+                -84.998628, 
+                30.971386
+              ], 
+              [
+                -85.002368, 
+                31.000682
+              ], 
+              [
+                -84.999428, 
+                31.013843
+              ], 
+              [
+                -85.022121, 
+                31.07548
+              ], 
+              [
+                -85.029736, 
+                31.096163
+              ], 
+              [
+                -85.035615, 
+                31.108192
+              ], 
+              [
+                -85.076628, 
+                31.156927
+              ], 
+              [
+                -85.083582, 
+                31.15963
+              ], 
+              [
+                -85.092106, 
+                31.160293
+              ], 
+              [
+                -85.100207, 
+                31.16549
+              ], 
+              [
+                -85.107516, 
+                31.186451
+              ], 
+              [
+                -85.111871, 
+                31.258388
+              ], 
+              [
+                -85.101561, 
+                31.283362
+              ], 
+              [
+                -85.087651, 
+                31.308677
+              ], 
+              [
+                -85.068065, 
+                31.427586
+              ], 
+              [
+                -85.046859, 
+                31.517451
+              ], 
+              [
+                -85.041305, 
+                31.540987
+              ], 
+              [
+                -85.057473, 
+                31.618624
+              ], 
+              [
+                -85.059534, 
+                31.621717
+              ], 
+              [
+                -85.065236, 
+                31.624351
+              ], 
+              [
+                -85.087029, 
+                31.640966
+              ], 
+              [
+                -85.12553, 
+                31.694965
+              ], 
+              [
+                -85.12653, 
+                31.716764
+              ], 
+              [
+                -85.12223, 
+                31.722764
+              ], 
+              [
+                -85.11893, 
+                31.732664
+              ], 
+              [
+                -85.124501, 
+                31.763081
+              ], 
+              [
+                -85.12523, 
+                31.767063
+              ], 
+              [
+                -85.130731, 
+                31.772263
+              ], 
+              [
+                -85.138668, 
+                31.780425
+              ], 
+              [
+                -85.141331, 
+                31.783163
+              ], 
+              [
+                -85.141831, 
+                31.839861
+              ], 
+              [
+                -85.132931, 
+                31.88826
+              ], 
+              [
+                -85.10663, 
+                31.915159
+              ], 
+              [
+                -85.08213, 
+                31.944658
+              ], 
+              [
+                -85.07233, 
+                31.964758
+              ], 
+              [
+                -85.062246, 
+                31.991857
+              ], 
+              [
+                -85.050212, 
+                32.024196
+              ], 
+              [
+                -85.056029, 
+                32.063055
+              ], 
+              [
+                -85.047865, 
+                32.142033
+              ], 
+              [
+                -84.995929, 
+                32.184852
+              ], 
+              [
+                -84.964828, 
+                32.194952
+              ], 
+              [
+                -84.923638, 
+                32.231539
+              ], 
+              [
+                -84.92165, 
+                32.233306
+              ], 
+              [
+                -84.909052, 
+                32.26354
+              ], 
+              [
+                -84.916611, 
+                32.281177
+              ], 
+              [
+                -84.93868, 
+                32.300708
+              ], 
+              [
+                -85.001874, 
+                32.322015
+              ], 
+              [
+                -85.007103, 
+                32.328362
+              ], 
+              [
+                -85.008096, 
+                32.336677
+              ], 
+              [
+                -84.987386, 
+                32.381201
+              ], 
+              [
+                -84.987278, 
+                32.381623
+              ], 
+              [
+                -84.979431, 
+                32.412244
+              ], 
+              [
+                -84.983831, 
+                32.445643
+              ], 
+              [
+                -84.998231, 
+                32.469842
+              ], 
+              [
+                -85.000779, 
+                32.506548
+              ], 
+              [
+                -85.00103, 
+                32.510157
+              ], 
+              [
+                -85.001052, 
+                32.510477
+              ], 
+              [
+                -85.001324, 
+                32.512973
+              ], 
+              [
+                -85.0071, 
+                32.523868
+              ], 
+              [
+                -85.022509, 
+                32.542923
+              ], 
+              [
+                -85.044606, 
+                32.559499
+              ], 
+              [
+                -85.069583, 
+                32.58393
+              ], 
+              [
+                -85.079935, 
+                32.602889
+              ], 
+              [
+                -85.080288, 
+                32.603577
+              ], 
+              [
+                -85.082454, 
+                32.607022
+              ], 
+              [
+                -85.10479, 
+                32.642542
+              ], 
+              [
+                -85.114737, 
+                32.685634
+              ], 
+              [
+                -85.137136, 
+                32.745168
+              ], 
+              [
+                -85.136776, 
+                32.746512
+              ], 
+              [
+                -85.13204, 
+                32.764211
+              ], 
+              [
+                -85.123421, 
+                32.772248
+              ], 
+              [
+                -85.184131, 
+                32.870525
+              ], 
+              [
+                -85.221868, 
+                33.055538
+              ], 
+              [
+                -85.223261, 
+                33.06258
+              ], 
+              [
+                -85.232378, 
+                33.108077
+              ], 
+              [
+                -85.236509, 
+                33.129562
+              ], 
+              [
+                -85.293902, 
+                33.428079
+              ], 
+              [
+                -85.304439, 
+                33.482884
+              ], 
+              [
+                -85.313999, 
+                33.529807
+              ], 
+              [
+                -85.314091, 
+                33.530218
+              ], 
+              [
+                -85.314994, 
+                33.535898
+              ], 
+              [
+                -85.322497, 
+                33.574167
+              ], 
+              [
+                -85.337974, 
+                33.653111
+              ], 
+              [
+                -85.360491, 
+                33.767958
+              ], 
+              [
+                -85.361844, 
+                33.773951
+              ], 
+              [
+                -85.386693, 
+                33.901697
+              ], 
+              [
+                -85.398837, 
+                33.964129
+              ], 
+              [
+                -85.421731, 
+                34.080821
+              ], 
+              [
+                -85.455057, 
+                34.250689
+              ], 
+              [
+                -85.455371, 
+                34.252854
+              ], 
+              [
+                -85.458071, 
+                34.265736
+              ], 
+              [
+                -85.458693, 
+                34.269437
+              ], 
+              [
+                -85.462304, 
+                34.286365
+              ], 
+              [
+                -85.502316, 
+                34.473954
+              ], 
+              [
+                -85.502454, 
+                34.474527
+              ], 
+              [
+                -85.508384, 
+                34.501212
+              ], 
+              [
+                -85.512108, 
+                34.518252
+              ], 
+              [
+                -85.513699, 
+                34.524133
+              ], 
+              [
+                -85.513709, 
+                34.52417
+              ], 
+              [
+                -85.51393, 
+                34.525192
+              ], 
+              [
+                -85.527127, 
+                34.588684
+              ], 
+              [
+                -85.534423, 
+                34.623789
+              ], 
+              [
+                -85.541264, 
+                34.656701
+              ], 
+              [
+                -85.541267, 
+                34.656783
+              ], 
+              [
+                -85.552454, 
+                34.708138
+              ], 
+              [
+                -85.552482, 
+                34.708321
+              ], 
+              [
+                -85.583145, 
+                34.860371
+              ], 
+              [
+                -85.595163, 
+                34.924171
+              ], 
+              [
+                -85.595191, 
+                34.924331
+              ], 
+              [
+                -85.605165, 
+                34.984678
+              ], 
+              [
+                -85.474472, 
+                34.983972
+              ], 
+              [
+                -85.363919, 
+                34.983375
+              ], 
+              [
+                -85.308257, 
+                34.984375
+              ], 
+              [
+                -85.305457, 
+                34.984475
+              ], 
+              [
+                -85.301488, 
+                34.984475
+              ], 
+              [
+                -85.2945, 
+                34.984651
+              ], 
+              [
+                -85.277556, 
+                34.984975
+              ], 
+              [
+                -85.275856, 
+                34.984975
+              ], 
+              [
+                -85.265055, 
+                34.985075
+              ], 
+              [
+                -85.254955, 
+                34.985175
+              ], 
+              [
+                -85.235555, 
+                34.985475
+              ], 
+              [
+                -85.230354, 
+                34.985475
+              ], 
+              [
+                -85.221854, 
+                34.985475
+              ], 
+              [
+                -85.220554, 
+                34.985575
+              ], 
+              [
+                -85.217854, 
+                34.985675
+              ], 
+              [
+                -85.216554, 
+                34.985675
+              ], 
+              [
+                -85.185905, 
+                34.985995
+              ], 
+              [
+                -85.180553, 
+                34.986075
+              ], 
+              [
+                -85.045183, 
+                34.986883
+              ], 
+              [
+                -85.045052, 
+                34.986859
+              ], 
+              [
+                -84.97986, 
+                34.987647
+              ], 
+              [
+                -84.976973, 
+                34.987669
+              ], 
+              [
+                -84.955623, 
+                34.98783
+              ], 
+              [
+                -84.94442, 
+                34.987864
+              ], 
+              [
+                -84.939306, 
+                34.987916
+              ], 
+              [
+                -84.861314, 
+                34.987791
+              ], 
+              [
+                -84.858032, 
+                34.987746
+              ], 
+              [
+                -84.831799, 
+                34.988004
+              ], 
+              [
+                -84.82401, 
+                34.987707
+              ], 
+              [
+                -84.820478, 
+                34.987913
+              ], 
+              [
+                -84.817279, 
+                34.987753
+              ], 
+              [
+                -84.810742, 
+                34.987615
+              ], 
+              [
+                -84.810477, 
+                34.987607
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 6, 
+      "properties": {
+        "CENSUSAREA": 57513.485, 
+        "GEO_ID": "0400000US13", 
+        "ISO": "US-GA", 
+        "LSAD": "", 
+        "NAME": "Georgia", 
+        "NAME_1": "Georgia", 
+        "STATE": "GA"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -89.366031, 
+                42.500274
+              ], 
+              [
+                -89.361561, 
+                42.500012
+              ], 
+              [
+                -89.290896, 
+                42.498853
+              ], 
+              [
+                -89.250759, 
+                42.497994
+              ], 
+              [
+                -89.246972, 
+                42.49813
+              ], 
+              [
+                -89.228279, 
+                42.498047
+              ], 
+              [
+                -89.22627, 
+                42.497957
+              ], 
+              [
+                -89.166728, 
+                42.497256
+              ], 
+              [
+                -89.164905, 
+                42.497347
+              ], 
+              [
+                -89.125111, 
+                42.496957
+              ], 
+              [
+                -89.120365, 
+                42.496992
+              ], 
+              [
+                -89.116949, 
+                42.49691
+              ], 
+              [
+                -89.099012, 
+                42.496499
+              ], 
+              [
+                -89.071141, 
+                42.496208
+              ], 
+              [
+                -89.042898, 
+                42.496255
+              ], 
+              [
+                -89.013804, 
+                42.496097
+              ], 
+              [
+                -89.013667, 
+                42.496087
+              ], 
+              [
+                -88.992977, 
+                42.496026
+              ], 
+              [
+                -88.992659, 
+                42.496025
+              ], 
+              [
+                -88.943264, 
+                42.495114
+              ], 
+              [
+                -88.940391, 
+                42.495046
+              ], 
+              [
+                -88.940388, 
+                42.495046
+              ], 
+              [
+                -88.776496, 
+                42.49402
+              ], 
+              [
+                -88.70738, 
+                42.493587
+              ], 
+              [
+                -88.707378, 
+                42.493587
+              ], 
+              [
+                -88.506912, 
+                42.494883
+              ], 
+              [
+                -88.470597, 
+                42.494672
+              ], 
+              [
+                -88.461397, 
+                42.494618
+              ], 
+              [
+                -88.417396, 
+                42.494618
+              ], 
+              [
+                -88.304692, 
+                42.494773
+              ], 
+              [
+                -88.271691, 
+                42.494818
+              ], 
+              [
+                -88.2169, 
+                42.495923
+              ], 
+              [
+                -88.200172, 
+                42.496016
+              ], 
+              [
+                -88.199521, 
+                42.496013
+              ], 
+              [
+                -88.049782, 
+                42.495319
+              ], 
+              [
+                -87.99018, 
+                42.494519
+              ], 
+              [
+                -87.971279, 
+                42.494019
+              ], 
+              [
+                -87.900242, 
+                42.49302
+              ], 
+              [
+                -87.843594, 
+                42.492307
+              ], 
+              [
+                -87.815872, 
+                42.49192
+              ], 
+              [
+                -87.800561, 
+                42.49192
+              ], 
+              [
+                -87.800477, 
+                42.49192
+              ], 
+              [
+                -87.800317, 
+                42.490578
+              ], 
+              [
+                -87.798971, 
+                42.479278
+              ], 
+              [
+                -87.79823, 
+                42.473054
+              ], 
+              [
+                -87.798071, 
+                42.471721
+              ], 
+              [
+                -87.800752, 
+                42.445867
+              ], 
+              [
+                -87.80337, 
+                42.420621
+              ], 
+              [
+                -87.803529, 
+                42.417759
+              ], 
+              [
+                -87.80375, 
+                42.413793
+              ], 
+              [
+                -87.80537, 
+                42.384721
+              ], 
+              [
+                -87.80613, 
+                42.383357
+              ], 
+              [
+                -87.81557, 
+                42.366416
+              ], 
+              [
+                -87.81657, 
+                42.364621
+              ], 
+              [
+                -87.820858, 
+                42.361584
+              ], 
+              [
+                -87.820871, 
+                42.361544
+              ], 
+              [
+                -87.826717, 
+                42.343497
+              ], 
+              [
+                -87.830646, 
+                42.331368
+              ], 
+              [
+                -87.830986, 
+                42.330317
+              ], 
+              [
+                -87.831221, 
+                42.32853
+              ], 
+              [
+                -87.834769, 
+                42.301522
+              ], 
+              [
+                -87.833468, 
+                42.294892
+              ], 
+              [
+                -87.832738, 
+                42.291173
+              ], 
+              [
+                -87.83253, 
+                42.290109
+              ], 
+              [
+                -87.831286, 
+                42.283772
+              ], 
+              [
+                -87.828569, 
+                42.269922
+              ], 
+              [
+                -87.828034, 
+                42.268673
+              ], 
+              [
+                -87.82772, 
+                42.267937
+              ], 
+              [
+                -87.826944, 
+                42.266125
+              ], 
+              [
+                -87.825313, 
+                42.262313
+              ], 
+              [
+                -87.812461, 
+                42.232278
+              ], 
+              [
+                -87.812422, 
+                42.232185
+              ], 
+              [
+                -87.812315, 
+                42.231935
+              ], 
+              [
+                -87.812267, 
+                42.231823
+              ], 
+              [
+                -87.808395, 
+                42.224271
+              ], 
+              [
+                -87.803873, 
+                42.215449
+              ], 
+              [
+                -87.800066, 
+                42.208024
+              ], 
+              [
+                -87.798589, 
+                42.206007
+              ], 
+              [
+                -87.7983, 
+                42.205611
+              ], 
+              [
+                -87.797497, 
+                42.204514
+              ], 
+              [
+                -87.797444, 
+                42.204442
+              ], 
+              [
+                -87.796937, 
+                42.203748
+              ], 
+              [
+                -87.796779, 
+                42.203533
+              ], 
+              [
+                -87.788313, 
+                42.191966
+              ], 
+              [
+                -87.787241, 
+                42.190501
+              ], 
+              [
+                -87.775295, 
+                42.174179
+              ], 
+              [
+                -87.759327, 
+                42.152362
+              ], 
+              [
+                -87.75639, 
+                42.14835
+              ], 
+              [
+                -87.755826, 
+                42.147579
+              ], 
+              [
+                -87.754767, 
+                42.146132
+              ], 
+              [
+                -87.754444, 
+                42.145691
+              ], 
+              [
+                -87.754358, 
+                42.145573
+              ], 
+              [
+                -87.750396, 
+                42.14016
+              ], 
+              [
+                -87.748486, 
+                42.13755
+              ], 
+              [
+                -87.746421, 
+                42.134729
+              ], 
+              [
+                -87.741662, 
+                42.128227
+              ], 
+              [
+                -87.741318, 
+                42.127812
+              ], 
+              [
+                -87.740787, 
+                42.127172
+              ], 
+              [
+                -87.740718, 
+                42.127089
+              ], 
+              [
+                -87.739735, 
+                42.125903
+              ], 
+              [
+                -87.739529, 
+                42.125655
+              ], 
+              [
+                -87.733929, 
+                42.118903
+              ], 
+              [
+                -87.730463, 
+                42.114723
+              ], 
+              [
+                -87.729387, 
+                42.113426
+              ], 
+              [
+                -87.729378, 
+                42.113414
+              ], 
+              [
+                -87.728335, 
+                42.112157
+              ], 
+              [
+                -87.728191, 
+                42.111984
+              ], 
+              [
+                -87.727248, 
+                42.110847
+              ], 
+              [
+                -87.727005, 
+                42.110554
+              ], 
+              [
+                -87.725196, 
+                42.108373
+              ], 
+              [
+                -87.724661, 
+                42.107727
+              ], 
+              [
+                -87.724603, 
+                42.107674
+              ], 
+              [
+                -87.723723, 
+                42.106879
+              ], 
+              [
+                -87.722306, 
+                42.105596
+              ], 
+              [
+                -87.72222, 
+                42.105518
+              ], 
+              [
+                -87.7215, 
+                42.104866
+              ], 
+              [
+                -87.720407, 
+                42.103878
+              ], 
+              [
+                -87.720303, 
+                42.103783
+              ], 
+              [
+                -87.718065, 
+                42.101758
+              ], 
+              [
+                -87.717504, 
+                42.10125
+              ], 
+              [
+                -87.717276, 
+                42.101044
+              ], 
+              [
+                -87.717169, 
+                42.100947
+              ], 
+              [
+                -87.712206, 
+                42.096455
+              ], 
+              [
+                -87.71096, 
+                42.095328
+              ], 
+              [
+                -87.706415, 
+                42.092213
+              ], 
+              [
+                -87.704594, 
+                42.090966
+              ], 
+              [
+                -87.703882, 
+                42.090478
+              ], 
+              [
+                -87.70237, 
+                42.089442
+              ], 
+              [
+                -87.682359, 
+                42.075729
+              ], 
+              [
+                -87.682179, 
+                42.075441
+              ], 
+              [
+                -87.68075, 
+                42.07316
+              ], 
+              [
+                -87.679843, 
+                42.071713
+              ], 
+              [
+                -87.671462, 
+                42.058334
+              ], 
+              [
+                -87.670512, 
+                42.05298
+              ], 
+              [
+                -87.670699, 
+                42.052305
+              ], 
+              [
+                -87.671119, 
+                42.050781
+              ], 
+              [
+                -87.671184, 
+                42.050548
+              ], 
+              [
+                -87.671894, 
+                42.047972
+              ], 
+              [
+                -87.671094, 
+                42.042802
+              ], 
+              [
+                -87.668982, 
+                42.029142
+              ], 
+              [
+                -87.630953, 
+                41.933132
+              ], 
+              [
+                -87.63087, 
+                41.932784
+              ], 
+              [
+                -87.627038, 
+                41.916738
+              ], 
+              [
+                -87.624763, 
+                41.907209
+              ], 
+              [
+                -87.624134, 
+                41.904574
+              ], 
+              [
+                -87.624052, 
+                41.904232
+              ], 
+              [
+                -87.622944, 
+                41.90202
+              ], 
+              [
+                -87.619852, 
+                41.901392
+              ], 
+              [
+                -87.617433, 
+                41.898032
+              ], 
+              [
+                -87.614163, 
+                41.893418
+              ], 
+              [
+                -87.612291, 
+                41.893335
+              ], 
+              [
+                -87.611659, 
+                41.892216
+              ], 
+              [
+                -87.611659, 
+                41.890708
+              ], 
+              [
+                -87.61268, 
+                41.889248
+              ], 
+              [
+                -87.614188, 
+                41.888421
+              ], 
+              [
+                -87.613556, 
+                41.88448
+              ], 
+              [
+                -87.613654, 
+                41.884412
+              ], 
+              [
+                -87.615734, 
+                41.882958
+              ], 
+              [
+                -87.616537, 
+                41.882396
+              ], 
+              [
+                -87.616251, 
+                41.868933
+              ], 
+              [
+                -87.60945, 
+                41.845233
+              ], 
+              [
+                -87.600549, 
+                41.826833
+              ], 
+              [
+                -87.587123, 
+                41.811422
+              ], 
+              [
+                -87.587054, 
+                41.811342
+              ], 
+              [
+                -87.580948, 
+                41.804334
+              ], 
+              [
+                -87.58092, 
+                41.804225
+              ], 
+              [
+                -87.58055, 
+                41.80275
+              ], 
+              [
+                -87.576347, 
+                41.786034
+              ], 
+              [
+                -87.560646, 
+                41.766034
+              ], 
+              [
+                -87.542845, 
+                41.752135
+              ], 
+              [
+                -87.530745, 
+                41.748235
+              ], 
+              [
+                -87.524141, 
+                41.72399
+              ], 
+              [
+                -87.524044, 
+                41.708335
+              ], 
+              [
+                -87.524944, 
+                41.702635
+              ], 
+              [
+                -87.524844, 
+                41.691635
+              ], 
+              [
+                -87.524642, 
+                41.634935
+              ], 
+              [
+                -87.524742, 
+                41.632435
+              ], 
+              [
+                -87.524642, 
+                41.622535
+              ], 
+              [
+                -87.524641, 
+                41.563335
+              ], 
+              [
+                -87.525669, 
+                41.470283
+              ], 
+              [
+                -87.525671, 
+                41.470115
+              ], 
+              [
+                -87.525623, 
+                41.453619
+              ], 
+              [
+                -87.526768, 
+                41.298177
+              ], 
+              [
+                -87.526768, 
+                41.298052
+              ], 
+              [
+                -87.52657, 
+                41.166097
+              ], 
+              [
+                -87.526567, 
+                41.163865
+              ], 
+              [
+                -87.52666, 
+                41.16009
+              ], 
+              [
+                -87.526719, 
+                41.159448
+              ], 
+              [
+                -87.526693, 
+                41.153958
+              ], 
+              [
+                -87.526696, 
+                41.149222
+              ], 
+              [
+                -87.5267, 
+                41.139658
+              ], 
+              [
+                -87.526711, 
+                41.121485
+              ], 
+              [
+                -87.52652, 
+                41.024837
+              ], 
+              [
+                -87.526346, 
+                41.010583
+              ], 
+              [
+                -87.526307, 
+                41.010355
+              ], 
+              [
+                -87.526305, 
+                41.010346
+              ], 
+              [
+                -87.526084, 
+                40.911914
+              ], 
+              [
+                -87.526437, 
+                40.894209
+              ], 
+              [
+                -87.525962, 
+                40.880618
+              ], 
+              [
+                -87.526113, 
+                40.879703
+              ], 
+              [
+                -87.525783, 
+                40.854357
+              ], 
+              [
+                -87.526129, 
+                40.73695
+              ], 
+              [
+                -87.526129, 
+                40.736885
+              ], 
+              [
+                -87.526292, 
+                40.535409
+              ], 
+              [
+                -87.526352, 
+                40.535111
+              ], 
+              [
+                -87.526376, 
+                40.491574
+              ], 
+              [
+                -87.526379, 
+                40.491237
+              ], 
+              [
+                -87.526502, 
+                40.477158
+              ], 
+              [
+                -87.526511, 
+                40.476879
+              ], 
+              [
+                -87.526549, 
+                40.475659
+              ], 
+              [
+                -87.526809, 
+                40.46217
+              ], 
+              [
+                -87.530054, 
+                40.250671
+              ], 
+              [
+                -87.529992, 
+                40.250036
+              ], 
+              [
+                -87.530828, 
+                40.191812
+              ], 
+              [
+                -87.531133, 
+                40.17003
+              ], 
+              [
+                -87.531438, 
+                40.148123
+              ], 
+              [
+                -87.531439, 
+                40.148027
+              ], 
+              [
+                -87.531759, 
+                40.144273
+              ], 
+              [
+                -87.531561, 
+                40.133005
+              ], 
+              [
+                -87.532308, 
+                40.011587
+              ], 
+              [
+                -87.532308, 
+                40.011492
+              ], 
+              [
+                -87.532287, 
+                40.000037
+              ], 
+              [
+                -87.532331, 
+                39.997776
+              ], 
+              [
+                -87.532542, 
+                39.987462
+              ], 
+              [
+                -87.532683, 
+                39.977691
+              ], 
+              [
+                -87.53279, 
+                39.97501
+              ], 
+              [
+                -87.532776, 
+                39.971077
+              ], 
+              [
+                -87.533227, 
+                39.883127
+              ], 
+              [
+                -87.533227, 
+                39.883
+              ], 
+              [
+                -87.533142, 
+                39.810947
+              ], 
+              [
+                -87.533056, 
+                39.803922
+              ], 
+              [
+                -87.533058, 
+                39.796243
+              ], 
+              [
+                -87.533066, 
+                39.781743
+              ], 
+              [
+                -87.532703, 
+                39.664868
+              ], 
+              [
+                -87.532444, 
+                39.646102
+              ], 
+              [
+                -87.532365, 
+                39.646126
+              ], 
+              [
+                -87.532196, 
+                39.607306
+              ], 
+              [
+                -87.532008, 
+                39.564013
+              ], 
+              [
+                -87.531939, 
+                39.545853
+              ], 
+              [
+                -87.531965, 
+                39.526937
+              ], 
+              [
+                -87.531692, 
+                39.495516
+              ], 
+              [
+                -87.531627, 
+                39.491698
+              ], 
+              [
+                -87.531663, 
+                39.47712
+              ], 
+              [
+                -87.531663, 
+                39.47711
+              ], 
+              [
+                -87.531624, 
+                39.469378
+              ], 
+              [
+                -87.531608, 
+                39.466225
+              ], 
+              [
+                -87.531489, 
+                39.449474
+              ], 
+              [
+                -87.531355, 
+                39.437732
+              ], 
+              [
+                -87.531355, 
+                39.436656
+              ], 
+              [
+                -87.531646, 
+                39.347888
+              ], 
+              [
+                -87.537271, 
+                39.352089
+              ], 
+              [
+                -87.544013, 
+                39.352907
+              ], 
+              [
+                -87.584852, 
+                39.337329
+              ], 
+              [
+                -87.589084, 
+                39.333831
+              ], 
+              [
+                -87.604043, 
+                39.313526
+              ], 
+              [
+                -87.61005, 
+                39.282232
+              ], 
+              [
+                -87.605543, 
+                39.261122
+              ], 
+              [
+                -87.604076, 
+                39.259459
+              ], 
+              [
+                -87.593486, 
+                39.247452
+              ], 
+              [
+                -87.587507, 
+                39.249282
+              ], 
+              [
+                -87.605173, 
+                39.185897
+              ], 
+              [
+                -87.628727, 
+                39.157427
+              ], 
+              [
+                -87.642174, 
+                39.157097
+              ], 
+              [
+                -87.651719, 
+                39.150602
+              ], 
+              [
+                -87.658746, 
+                39.135997
+              ], 
+              [
+                -87.614881, 
+                39.102655
+              ], 
+              [
+                -87.572588, 
+                39.057286
+              ], 
+              [
+                -87.512187, 
+                38.954417
+              ], 
+              [
+                -87.518826, 
+                38.923205
+              ], 
+              [
+                -87.52791, 
+                38.908209
+              ], 
+              [
+                -87.528108, 
+                38.908027
+              ], 
+              [
+                -87.540804, 
+                38.896385
+              ], 
+              [
+                -87.553384, 
+                38.863344
+              ], 
+              [
+                -87.550515, 
+                38.85956
+              ], 
+              [
+                -87.537248, 
+                38.853592
+              ], 
+              [
+                -87.532064, 
+                38.852503
+              ], 
+              [
+                -87.528194, 
+                38.851691
+              ], 
+              [
+                -87.525893, 
+                38.848795
+              ], 
+              [
+                -87.495211, 
+                38.78306
+              ], 
+              [
+                -87.498515, 
+                38.758983
+              ], 
+              [
+                -87.519609, 
+                38.697198
+              ], 
+              [
+                -87.531231, 
+                38.684036
+              ], 
+              [
+                -87.540052, 
+                38.679143
+              ], 
+              [
+                -87.579397, 
+                38.672475
+              ], 
+              [
+                -87.593678, 
+                38.667402
+              ], 
+              [
+                -87.60018, 
+                38.662462
+              ], 
+              [
+                -87.62012, 
+                38.639489
+              ], 
+              [
+                -87.627345, 
+                38.607237
+              ], 
+              [
+                -87.651529, 
+                38.568166
+              ], 
+              [
+                -87.670071, 
+                38.545237
+              ], 
+              [
+                -87.669232, 
+                38.541742
+              ], 
+              [
+                -87.656144, 
+                38.521668
+              ], 
+              [
+                -87.740001, 
+                38.415698
+              ], 
+              [
+                -87.750028, 
+                38.403027
+              ], 
+              [
+                -87.863032, 
+                38.280172
+              ], 
+              [
+                -87.923958, 
+                38.258409
+              ], 
+              [
+                -87.951715, 
+                38.239632
+              ], 
+              [
+                -87.955344, 
+                38.230008
+              ], 
+              [
+                -87.961103, 
+                38.214733
+              ], 
+              [
+                -87.959062, 
+                38.203712
+              ], 
+              [
+                -87.951307, 
+                38.193099
+              ], 
+              [
+                -87.940694, 
+                38.181261
+              ], 
+              [
+                -87.928856, 
+                38.176771
+              ], 
+              [
+                -87.915666, 
+                38.173322
+              ], 
+              [
+                -87.910792, 
+                38.167666
+              ], 
+              [
+                -87.911034, 
+                38.162194
+              ], 
+              [
+                -87.92783, 
+                38.141545
+              ], 
+              [
+                -87.942176, 
+                38.131759
+              ], 
+              [
+                -87.974272, 
+                38.121981
+              ], 
+              [
+                -88.013118, 
+                38.103527
+              ], 
+              [
+                -88.042132, 
+                38.046345
+              ], 
+              [
+                -88.041532, 
+                38.037345
+              ], 
+              [
+                -88.012574, 
+                37.977062
+              ], 
+              [
+                -88.013451, 
+                37.893951
+              ], 
+              [
+                -88.017073, 
+                37.889222
+              ], 
+              [
+                -88.021117, 
+                37.888057
+              ], 
+              [
+                -88.055373, 
+                37.891238
+              ], 
+              [
+                -88.071449, 
+                37.895813
+              ], 
+              [
+                -88.049453, 
+                37.845187
+              ], 
+              [
+                -88.027789, 
+                37.828298
+              ], 
+              [
+                -88.02803, 
+                37.799224
+              ], 
+              [
+                -88.039, 
+                37.775454
+              ], 
+              [
+                -88.045008, 
+                37.762436
+              ], 
+              [
+                -88.050969, 
+                37.752599
+              ], 
+              [
+                -88.059588, 
+                37.742608
+              ], 
+              [
+                -88.072538, 
+                37.733286
+              ], 
+              [
+                -88.122412, 
+                37.709685
+              ], 
+              [
+                -88.151646, 
+                37.675098
+              ], 
+              [
+                -88.158207, 
+                37.664542
+              ], 
+              [
+                -88.160187, 
+                37.657592
+              ], 
+              [
+                -88.156827, 
+                37.632801
+              ], 
+              [
+                -88.139973, 
+                37.586451
+              ], 
+              [
+                -88.133416, 
+                37.574277
+              ], 
+              [
+                -88.133393, 
+                37.574235
+              ], 
+              [
+                -88.133306, 
+                37.574191
+              ], 
+              [
+                -88.133235, 
+                37.574154
+              ], 
+              [
+                -88.121517, 
+                37.568166
+              ], 
+              [
+                -88.072242, 
+                37.528826
+              ], 
+              [
+                -88.063311, 
+                37.515755
+              ], 
+              [
+                -88.061311, 
+                37.505332
+              ], 
+              [
+                -88.061292, 
+                37.505232
+              ], 
+              [
+                -88.062562, 
+                37.489385
+              ], 
+              [
+                -88.083395, 
+                37.473683
+              ], 
+              [
+                -88.255193, 
+                37.456748
+              ], 
+              [
+                -88.281667, 
+                37.452596
+              ], 
+              [
+                -88.312585, 
+                37.440591
+              ], 
+              [
+                -88.330622, 
+                37.429316
+              ], 
+              [
+                -88.358436, 
+                37.40486
+              ], 
+              [
+                -88.408808, 
+                37.425216
+              ], 
+              [
+                -88.414895, 
+                37.423461
+              ], 
+              [
+                -88.439333, 
+                37.416416
+              ], 
+              [
+                -88.456, 
+                37.408482
+              ], 
+              [
+                -88.470224, 
+                37.396255
+              ], 
+              [
+                -88.476592, 
+                37.386875
+              ], 
+              [
+                -88.514661, 
+                37.290948
+              ], 
+              [
+                -88.515939, 
+                37.284043
+              ], 
+              [
+                -88.509328, 
+                37.26213
+              ], 
+              [
+                -88.471753, 
+                37.220155
+              ], 
+              [
+                -88.458763, 
+                37.213536
+              ], 
+              [
+                -88.447764, 
+                37.203527
+              ], 
+              [
+                -88.424403, 
+                37.152428
+              ], 
+              [
+                -88.444605, 
+                37.098601
+              ], 
+              [
+                -88.458948, 
+                37.073796
+              ], 
+              [
+                -88.482856, 
+                37.067114
+              ], 
+              [
+                -88.490297, 
+                37.066669
+              ], 
+              [
+                -88.514356, 
+                37.065231
+              ], 
+              [
+                -88.531576, 
+                37.067192
+              ], 
+              [
+                -88.545403, 
+                37.070003
+              ], 
+              [
+                -88.560032, 
+                37.07601
+              ], 
+              [
+                -88.564152, 
+                37.07844
+              ], 
+              [
+                -88.576718, 
+                37.085852
+              ], 
+              [
+                -88.589207, 
+                37.099655
+              ], 
+              [
+                -88.625889, 
+                37.119458
+              ], 
+              [
+                -88.809206, 
+                37.189235
+              ], 
+              [
+                -88.916934, 
+                37.224291
+              ], 
+              [
+                -88.928021, 
+                37.226281
+              ], 
+              [
+                -88.942111, 
+                37.228811
+              ], 
+              [
+                -88.933385, 
+                37.225005
+              ], 
+              [
+                -88.933399, 
+                37.225007
+              ], 
+              [
+                -88.966831, 
+                37.229891
+              ], 
+              [
+                -88.98326, 
+                37.228685
+              ], 
+              [
+                -89.000968, 
+                37.224401
+              ], 
+              [
+                -89.041263, 
+                37.202881
+              ], 
+              [
+                -89.086526, 
+                37.165602
+              ], 
+              [
+                -89.168087, 
+                37.074218
+              ], 
+              [
+                -89.171881, 
+                37.068184
+              ], 
+              [
+                -89.175725, 
+                37.062069
+              ], 
+              [
+                -89.181369, 
+                37.046305
+              ], 
+              [
+                -89.182509, 
+                37.037275
+              ], 
+              [
+                -89.178975, 
+                37.020928
+              ], 
+              [
+                -89.173595, 
+                37.011409
+              ], 
+              [
+                -89.166447, 
+                37.003337
+              ], 
+              [
+                -89.132685, 
+                36.9822
+              ], 
+              [
+                -89.170008, 
+                36.970298
+              ], 
+              [
+                -89.185491, 
+                36.973518
+              ], 
+              [
+                -89.207013, 
+                36.982437
+              ], 
+              [
+                -89.226247, 
+                36.985287
+              ], 
+              [
+                -89.245481, 
+                36.98315
+              ], 
+              [
+                -89.261154, 
+                36.982437
+              ], 
+              [
+                -89.271127, 
+                36.985287
+              ], 
+              [
+                -89.278628, 
+                36.98867
+              ], 
+              [
+                -89.29213, 
+                36.992189
+              ], 
+              [
+                -89.322733, 
+                37.009033
+              ], 
+              [
+                -89.378277, 
+                37.039605
+              ], 
+              [
+                -89.383937, 
+                37.046441
+              ], 
+              [
+                -89.385434, 
+                37.05513
+              ], 
+              [
+                -89.414471, 
+                37.12505
+              ], 
+              [
+                -89.467631, 
+                37.2182
+              ], 
+              [
+                -89.491222, 
+                37.248629
+              ], 
+              [
+                -89.517032, 
+                37.28192
+              ], 
+              [
+                -89.518393, 
+                37.289354
+              ], 
+              [
+                -89.511842, 
+                37.310825
+              ], 
+              [
+                -89.489005, 
+                37.333368
+              ], 
+              [
+                -89.484598, 
+                37.334832
+              ], 
+              [
+                -89.474569, 
+                37.338165
+              ], 
+              [
+                -89.447556, 
+                37.340475
+              ], 
+              [
+                -89.43604, 
+                37.344441
+              ], 
+              [
+                -89.432836, 
+                37.347056
+              ], 
+              [
+                -89.428185, 
+                37.356158
+              ], 
+              [
+                -89.421054, 
+                37.387668
+              ], 
+              [
+                -89.42594, 
+                37.407471
+              ], 
+              [
+                -89.439769, 
+                37.4372
+              ], 
+              [
+                -89.450969, 
+                37.450069
+              ], 
+              [
+                -89.475525, 
+                37.471388
+              ], 
+              [
+                -89.492051, 
+                37.494008
+              ], 
+              [
+                -89.517051, 
+                37.537278
+              ], 
+              [
+                -89.521697, 
+                37.557325
+              ], 
+              [
+                -89.521523, 
+                37.566208
+              ], 
+              [
+                -89.521407, 
+                37.572143
+              ], 
+              [
+                -89.521274, 
+                37.578971
+              ], 
+              [
+                -89.518007, 
+                37.583962
+              ], 
+              [
+                -89.511936, 
+                37.584564
+              ], 
+              [
+                -89.506563, 
+                37.62505
+              ], 
+              [
+                -89.515436, 
+                37.67137
+              ], 
+              [
+                -89.671255, 
+                37.801144
+              ], 
+              [
+                -89.674304, 
+                37.803179
+              ], 
+              [
+                -89.739873, 
+                37.84693
+              ], 
+              [
+                -89.844786, 
+                37.905572
+              ], 
+              [
+                -89.851048, 
+                37.90398
+              ], 
+              [
+                -89.862949, 
+                37.896906
+              ], 
+              [
+                -89.881475, 
+                37.879591
+              ], 
+              [
+                -89.901832, 
+                37.869822
+              ], 
+              [
+                -89.923185, 
+                37.870672
+              ], 
+              [
+                -89.937383, 
+                37.874693
+              ], 
+              [
+                -89.938191, 
+                37.875111
+              ], 
+              [
+                -89.950594, 
+                37.881526
+              ], 
+              [
+                -89.973642, 
+                37.917661
+              ], 
+              [
+                -89.974918, 
+                37.926719
+              ], 
+              [
+                -89.997103, 
+                37.963225
+              ], 
+              [
+                -90.072283, 
+                38.017001
+              ], 
+              [
+                -90.126532, 
+                38.041666
+              ], 
+              [
+                -90.203847, 
+                38.088753
+              ], 
+              [
+                -90.243116, 
+                38.112669
+              ], 
+              [
+                -90.254112, 
+                38.12199
+              ], 
+              [
+                -90.334258, 
+                38.189932
+              ], 
+              [
+                -90.353902, 
+                38.213855
+              ], 
+              [
+                -90.363926, 
+                38.236355
+              ], 
+              [
+                -90.373929, 
+                38.281853
+              ], 
+              [
+                -90.372519, 
+                38.323354
+              ], 
+              [
+                -90.370819, 
+                38.333554
+              ], 
+              [
+                -90.350918, 
+                38.375053
+              ], 
+              [
+                -90.346118, 
+                38.381853
+              ], 
+              [
+                -90.340297, 
+                38.386998
+              ], 
+              [
+                -90.295316, 
+                38.426753
+              ], 
+              [
+                -90.285215, 
+                38.443453
+              ], 
+              [
+                -90.279215, 
+                38.472453
+              ], 
+              [
+                -90.263064, 
+                38.52022
+              ], 
+              [
+                -90.260314, 
+                38.528352
+              ], 
+              [
+                -90.257773, 
+                38.532008
+              ], 
+              [
+                -90.248913, 
+                38.544752
+              ], 
+              [
+                -90.224512, 
+                38.574651
+              ], 
+              [
+                -90.202511, 
+                38.588651
+              ], 
+              [
+                -90.196011, 
+                38.594451
+              ], 
+              [
+                -90.18451, 
+                38.611551
+              ], 
+              [
+                -90.182625, 
+                38.617989
+              ], 
+              [
+                -90.17801, 
+                38.63375
+              ], 
+              [
+                -90.17771, 
+                38.64275
+              ], 
+              [
+                -90.18111, 
+                38.65955
+              ], 
+              [
+                -90.181399, 
+                38.660378
+              ], 
+              [
+                -90.18641, 
+                38.67475
+              ], 
+              [
+                -90.19521, 
+                38.68755
+              ], 
+              [
+                -90.20221, 
+                38.69345
+              ], 
+              [
+                -90.20921, 
+                38.70275
+              ], 
+              [
+                -90.21201, 
+                38.71175
+              ], 
+              [
+                -90.20991, 
+                38.72605
+              ], 
+              [
+                -90.171309, 
+                38.766549
+              ], 
+              [
+                -90.165082, 
+                38.770618
+              ], 
+              [
+                -90.123107, 
+                38.798048
+              ], 
+              [
+                -90.117707, 
+                38.805748
+              ], 
+              [
+                -90.114707, 
+                38.815048
+              ], 
+              [
+                -90.109107, 
+                38.837448
+              ], 
+              [
+                -90.109407, 
+                38.843548
+              ], 
+              [
+                -90.113327, 
+                38.849306
+              ], 
+              [
+                -90.207035, 
+                38.898954
+              ], 
+              [
+                -90.22585, 
+                38.908923
+              ], 
+              [
+                -90.250248, 
+                38.919344
+              ], 
+              [
+                -90.275932, 
+                38.926453
+              ], 
+              [
+                -90.385751, 
+                38.956848
+              ], 
+              [
+                -90.406367, 
+                38.962554
+              ], 
+              [
+                -90.450792, 
+                38.967764
+              ], 
+              [
+                -90.450809, 
+                38.967758
+              ], 
+              [
+                -90.467784, 
+                38.961809
+              ], 
+              [
+                -90.472122, 
+                38.958838
+              ], 
+              [
+                -90.482419, 
+                38.94446
+              ], 
+              [
+                -90.482725, 
+                38.934712
+              ], 
+              [
+                -90.486974, 
+                38.925982
+              ], 
+              [
+                -90.507451, 
+                38.902767
+              ], 
+              [
+                -90.54403, 
+                38.87505
+              ], 
+              [
+                -90.555693, 
+                38.870785
+              ], 
+              [
+                -90.566557, 
+                38.868847
+              ], 
+              [
+                -90.583388, 
+                38.86903
+              ], 
+              [
+                -90.625122, 
+                38.888654
+              ], 
+              [
+                -90.657254, 
+                38.92027
+              ], 
+              [
+                -90.663372, 
+                38.928042
+              ], 
+              [
+                -90.66587, 
+                38.934195
+              ], 
+              [
+                -90.71158, 
+                39.046798
+              ], 
+              [
+                -90.713629, 
+                39.053977
+              ], 
+              [
+                -90.712541, 
+                39.057064
+              ], 
+              [
+                -90.682744, 
+                39.088348
+              ], 
+              [
+                -90.681086, 
+                39.10059
+              ], 
+              [
+                -90.718996, 
+                39.224973
+              ], 
+              [
+                -90.726981, 
+                39.251173
+              ], 
+              [
+                -90.72996, 
+                39.255894
+              ], 
+              [
+                -90.799346, 
+                39.313087
+              ], 
+              [
+                -90.842175, 
+                39.341932
+              ], 
+              [
+                -90.882706, 
+                39.362254
+              ], 
+              [
+                -90.939983, 
+                39.393555
+              ], 
+              [
+                -90.993789, 
+                39.422959
+              ], 
+              [
+                -91.042351, 
+                39.452062
+              ], 
+              [
+                -91.158606, 
+                39.553048
+              ], 
+              [
+                -91.168419, 
+                39.564928
+              ], 
+              [
+                -91.178012, 
+                39.598196
+              ], 
+              [
+                -91.229317, 
+                39.620853
+              ], 
+              [
+                -91.313162, 
+                39.684907
+              ], 
+              [
+                -91.349039, 
+                39.712316
+              ], 
+              [
+                -91.367753, 
+                39.729029
+              ], 
+              [
+                -91.370009, 
+                39.732524
+              ], 
+              [
+                -91.369953, 
+                39.745042
+              ], 
+              [
+                -91.367962, 
+                39.759124
+              ], 
+              [
+                -91.365396, 
+                39.777266
+              ], 
+              [
+                -91.432919, 
+                39.840554
+              ], 
+              [
+                -91.446385, 
+                39.870394
+              ], 
+              [
+                -91.455887, 
+                39.945538
+              ], 
+              [
+                -91.460287, 
+                39.980333
+              ], 
+              [
+                -91.494865, 
+                40.037421
+              ], 
+              [
+                -91.510322, 
+                40.127994
+              ], 
+              [
+                -91.512974, 
+                40.181062
+              ], 
+              [
+                -91.510332, 
+                40.201142
+              ], 
+              [
+                -91.505968, 
+                40.234305
+              ], 
+              [
+                -91.501435, 
+                40.248874
+              ], 
+              [
+                -91.489868, 
+                40.286048
+              ], 
+              [
+                -91.46214, 
+                40.342414
+              ], 
+              [
+                -91.444833, 
+                40.36317
+              ], 
+              [
+                -91.419422, 
+                40.378264
+              ], 
+              [
+                -91.38836, 
+                40.384929
+              ], 
+              [
+                -91.375746, 
+                40.391879
+              ], 
+              [
+                -91.372554, 
+                40.4012
+              ], 
+              [
+                -91.36391, 
+                40.490122
+              ], 
+              [
+                -91.364211, 
+                40.500043
+              ], 
+              [
+                -91.369059, 
+                40.512532
+              ], 
+              [
+                -91.384531, 
+                40.530948
+              ], 
+              [
+                -91.404125, 
+                40.539127
+              ], 
+              [
+                -91.406851, 
+                40.547557
+              ], 
+              [
+                -91.405241, 
+                40.554641
+              ], 
+              [
+                -91.359873, 
+                40.601805
+              ], 
+              [
+                -91.348733, 
+                40.609695
+              ], 
+              [
+                -91.339719, 
+                40.613488
+              ], 
+              [
+                -91.306524, 
+                40.626231
+              ], 
+              [
+                -91.253074, 
+                40.637962
+              ], 
+              [
+                -91.218437, 
+                40.638437
+              ], 
+              [
+                -91.197906, 
+                40.636107
+              ], 
+              [
+                -91.18698, 
+                40.637297
+              ], 
+              [
+                -91.185415, 
+                40.638052
+              ], 
+              [
+                -91.138055, 
+                40.660893
+              ], 
+              [
+                -91.122421, 
+                40.670675
+              ], 
+              [
+                -91.112258, 
+                40.696218
+              ], 
+              [
+                -91.11194, 
+                40.697018
+              ], 
+              [
+                -91.094728, 
+                40.797833
+              ], 
+              [
+                -91.097031, 
+                40.802471
+              ], 
+              [
+                -91.097553, 
+                40.808433
+              ], 
+              [
+                -91.092993, 
+                40.821079
+              ], 
+              [
+                -91.009536, 
+                40.900565
+              ], 
+              [
+                -90.9985, 
+                40.90812
+              ], 
+              [
+                -90.968995, 
+                40.919127
+              ], 
+              [
+                -90.962916, 
+                40.924957
+              ], 
+              [
+                -90.952233, 
+                40.954047
+              ], 
+              [
+                -90.942253, 
+                41.034702
+              ], 
+              [
+                -90.945549, 
+                41.06173
+              ], 
+              [
+                -90.948523, 
+                41.070248
+              ], 
+              [
+                -90.949383, 
+                41.07271
+              ], 
+              [
+                -90.949383, 
+                41.072711
+              ], 
+              [
+                -90.946627, 
+                41.096632
+              ], 
+              [
+                -90.989663, 
+                41.155716
+              ], 
+              [
+                -90.997906, 
+                41.162564
+              ], 
+              [
+                -91.005503, 
+                41.165622
+              ], 
+              [
+                -91.019036, 
+                41.16491
+              ], 
+              [
+                -91.049808, 
+                41.178033
+              ], 
+              [
+                -91.113648, 
+                41.241401
+              ], 
+              [
+                -91.114186, 
+                41.250029
+              ], 
+              [
+                -91.079657, 
+                41.333727
+              ], 
+              [
+                -91.078682, 
+                41.336089
+              ], 
+              [
+                -91.047819, 
+                41.4109
+              ], 
+              [
+                -91.039872, 
+                41.418523
+              ], 
+              [
+                -91.027787, 
+                41.423603
+              ], 
+              [
+                -90.989976, 
+                41.431962
+              ], 
+              [
+                -90.847458, 
+                41.455019
+              ], 
+              [
+                -90.786282, 
+                41.452888
+              ], 
+              [
+                -90.771672, 
+                41.450761
+              ], 
+              [
+                -90.737537, 
+                41.450127
+              ], 
+              [
+                -90.655839, 
+                41.462132
+              ], 
+              [
+                -90.605937, 
+                41.494232
+              ], 
+              [
+                -90.499475, 
+                41.518055
+              ], 
+              [
+                -90.474332, 
+                41.519733
+              ], 
+              [
+                -90.461432, 
+                41.523533
+              ], 
+              [
+                -90.39793, 
+                41.572233
+              ], 
+              [
+                -90.34165, 
+                41.621484
+              ], 
+              [
+                -90.343162, 
+                41.648141
+              ], 
+              [
+                -90.334525, 
+                41.679559
+              ], 
+              [
+                -90.317041, 
+                41.729104
+              ], 
+              [
+                -90.31522, 
+                41.734264
+              ], 
+              [
+                -90.309826, 
+                41.743321
+              ], 
+              [
+                -90.302782, 
+                41.750031
+              ], 
+              [
+                -90.278633, 
+                41.767358
+              ], 
+              [
+                -90.242747, 
+                41.783767
+              ], 
+              [
+                -90.222263, 
+                41.793133
+              ], 
+              [
+                -90.20844, 
+                41.797176
+              ], 
+              [
+                -90.187969, 
+                41.803163
+              ], 
+              [
+                -90.181973, 
+                41.80707
+              ], 
+              [
+                -90.152104, 
+                41.928947
+              ], 
+              [
+                -90.1516, 
+                41.931002
+              ], 
+              [
+                -90.140613, 
+                41.995999
+              ], 
+              [
+                -90.141167, 
+                42.008931
+              ], 
+              [
+                -90.150916, 
+                42.02944
+              ], 
+              [
+                -90.154221, 
+                42.033073
+              ], 
+              [
+                -90.164537, 
+                42.045007
+              ], 
+              [
+                -90.166495, 
+                42.054543
+              ], 
+              [
+                -90.168358, 
+                42.075779
+              ], 
+              [
+                -90.163405, 
+                42.087613
+              ], 
+              [
+                -90.161119, 
+                42.104404
+              ], 
+              [
+                -90.162225, 
+                42.11488
+              ], 
+              [
+                -90.167533, 
+                42.122475
+              ], 
+              [
+                -90.211328, 
+                42.15401
+              ], 
+              [
+                -90.234919, 
+                42.165431
+              ], 
+              [
+                -90.306531, 
+                42.190439
+              ], 
+              [
+                -90.316269, 
+                42.1936
+              ], 
+              [
+                -90.349162, 
+                42.204277
+              ], 
+              [
+                -90.356964, 
+                42.205445
+              ], 
+              [
+                -90.375129, 
+                42.214811
+              ], 
+              [
+                -90.391108, 
+                42.225473
+              ], 
+              [
+                -90.419326, 
+                42.254467
+              ], 
+              [
+                -90.430884, 
+                42.27823
+              ], 
+              [
+                -90.430735, 
+                42.284211
+              ], 
+              [
+                -90.424326, 
+                42.293326
+              ], 
+              [
+                -90.4162, 
+                42.321314
+              ], 
+              [
+                -90.416535, 
+                42.325109
+              ], 
+              [
+                -90.419027, 
+                42.328505
+              ], 
+              [
+                -90.474834, 
+                42.381473
+              ], 
+              [
+                -90.477279, 
+                42.383794
+              ], 
+              [
+                -90.559451, 
+                42.430695
+              ], 
+              [
+                -90.624328, 
+                42.458904
+              ], 
+              [
+                -90.646727, 
+                42.471904
+              ], 
+              [
+                -90.654027, 
+                42.478503
+              ], 
+              [
+                -90.656327, 
+                42.483603
+              ], 
+              [
+                -90.656527, 
+                42.489203
+              ], 
+              [
+                -90.655927, 
+                42.491703
+              ], 
+              [
+                -90.640927, 
+                42.508302
+              ], 
+              [
+                -90.617731, 
+                42.508077
+              ], 
+              [
+                -90.614589, 
+                42.508053
+              ], 
+              [
+                -90.565441, 
+                42.5076
+              ], 
+              [
+                -90.555862, 
+                42.507509
+              ], 
+              [
+                -90.551165, 
+                42.507691
+              ], 
+              [
+                -90.544799, 
+                42.507713
+              ], 
+              [
+                -90.544347, 
+                42.507707
+              ], 
+              [
+                -90.532254, 
+                42.507573
+              ], 
+              [
+                -90.491716, 
+                42.507624
+              ], 
+              [
+                -90.479446, 
+                42.507416
+              ], 
+              [
+                -90.474955, 
+                42.507484
+              ], 
+              [
+                -90.437011, 
+                42.507147
+              ], 
+              [
+                -90.426378, 
+                42.507059
+              ], 
+              [
+                -90.405927, 
+                42.506891
+              ], 
+              [
+                -90.370673, 
+                42.507111
+              ], 
+              [
+                -90.367874, 
+                42.507114
+              ], 
+              [
+                -90.362652, 
+                42.507048
+              ], 
+              [
+                -90.303823, 
+                42.507469
+              ], 
+              [
+                -90.272864, 
+                42.507531
+              ], 
+              [
+                -90.269335, 
+                42.507726
+              ], 
+              [
+                -90.267143, 
+                42.507642
+              ], 
+              [
+                -90.253121, 
+                42.50734
+              ], 
+              [
+                -90.250622, 
+                42.507521
+              ], 
+              [
+                -90.22319, 
+                42.507765
+              ], 
+              [
+                -90.206073, 
+                42.507747
+              ], 
+              [
+                -90.181572, 
+                42.508068
+              ], 
+              [
+                -90.164363, 
+                42.508272
+              ], 
+              [
+                -90.142922, 
+                42.508151
+              ], 
+              [
+                -90.095004, 
+                42.507885
+              ], 
+              [
+                -90.093026, 
+                42.50816
+              ], 
+              [
+                -90.018665, 
+                42.507288
+              ], 
+              [
+                -90.017028, 
+                42.507127
+              ], 
+              [
+                -89.999314, 
+                42.506914
+              ], 
+              [
+                -89.997213, 
+                42.506755
+              ], 
+              [
+                -89.985645, 
+                42.506431
+              ], 
+              [
+                -89.985072, 
+                42.506464
+              ], 
+              [
+                -89.926484, 
+                42.505787
+              ], 
+              [
+                -89.926374, 
+                42.505788
+              ], 
+              [
+                -89.926224, 
+                42.505788
+              ], 
+              [
+                -89.837587, 
+                42.505543
+              ], 
+              [
+                -89.801897, 
+                42.505444
+              ], 
+              [
+                -89.799704, 
+                42.505421
+              ], 
+              [
+                -89.793957, 
+                42.505466
+              ], 
+              [
+                -89.780302, 
+                42.505349
+              ], 
+              [
+                -89.769643, 
+                42.505322
+              ], 
+              [
+                -89.742395, 
+                42.505382
+              ], 
+              [
+                -89.693487, 
+                42.505099
+              ], 
+              [
+                -89.690088, 
+                42.505191
+              ], 
+              [
+                -89.667596, 
+                42.50496
+              ], 
+              [
+                -89.650324, 
+                42.504613
+              ], 
+              [
+                -89.644176, 
+                42.50452
+              ], 
+              [
+                -89.61341, 
+                42.503942
+              ], 
+              [
+                -89.603523, 
+                42.503557
+              ], 
+              [
+                -89.600001, 
+                42.503672
+              ], 
+              [
+                -89.594779, 
+                42.503468
+              ], 
+              [
+                -89.564407, 
+                42.502628
+              ], 
+              [
+                -89.522542, 
+                42.501889
+              ], 
+              [
+                -89.493216, 
+                42.501514
+              ], 
+              [
+                -89.492612, 
+                42.501514
+              ], 
+              [
+                -89.4843, 
+                42.501426
+              ], 
+              [
+                -89.425162, 
+                42.500726
+              ], 
+              [
+                -89.423926, 
+                42.500818
+              ], 
+              [
+                -89.422567, 
+                42.50068
+              ], 
+              [
+                -89.420991, 
+                42.500589
+              ], 
+              [
+                -89.401432, 
+                42.500433
+              ], 
+              [
+                -89.401416, 
+                42.500433
+              ], 
+              [
+                -89.366031, 
+                42.500274
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 7, 
+      "properties": {
+        "CENSUSAREA": 55518.93, 
+        "GEO_ID": "0400000US17", 
+        "ISO": "US-IL", 
+        "LSAD": "", 
+        "NAME": "Illinois", 
+        "NAME_1": "Illinois", 
+        "STATE": "IL"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -84.804119, 
+                40.352757
+              ], 
+              [
+                -84.803917, 
+                40.310115
+              ], 
+              [
+                -84.803918, 
+                40.310094
+              ], 
+              [
+                -84.804098, 
+                40.302498
+              ], 
+              [
+                -84.805627, 
+                40.223659
+              ], 
+              [
+                -84.806175, 
+                40.197995
+              ], 
+              [
+                -84.80634, 
+                40.192327
+              ], 
+              [
+                -84.806347, 
+                40.192252
+              ], 
+              [
+                -84.806766, 
+                40.180128
+              ], 
+              [
+                -84.808291, 
+                40.129027
+              ], 
+              [
+                -84.808305, 
+                40.127018
+              ], 
+              [
+                -84.808706, 
+                40.107216
+              ], 
+              [
+                -84.809737, 
+                40.048929
+              ], 
+              [
+                -84.810099, 
+                40.034214
+              ], 
+              [
+                -84.81067, 
+                40.005074
+              ], 
+              [
+                -84.812193, 
+                39.92734
+              ], 
+              [
+                -84.812357, 
+                39.921764
+              ], 
+              [
+                -84.812411, 
+                39.916916
+              ], 
+              [
+                -84.812411, 
+                39.916915
+              ], 
+              [
+                -84.812698, 
+                39.891585
+              ], 
+              [
+                -84.812787, 
+                39.89083
+              ], 
+              [
+                -84.81305, 
+                39.872958
+              ], 
+              [
+                -84.813464, 
+                39.853261
+              ], 
+              [
+                -84.813549, 
+                39.850773
+              ], 
+              [
+                -84.813674, 
+                39.843173
+              ], 
+              [
+                -84.813703, 
+                39.843059
+              ], 
+              [
+                -84.813793, 
+                39.826771
+              ], 
+              [
+                -84.813852, 
+                39.824621
+              ], 
+              [
+                -84.814179, 
+                39.814212
+              ], 
+              [
+                -84.81412, 
+                39.811398
+              ], 
+              [
+                -84.814209, 
+                39.799755
+              ], 
+              [
+                -84.814179, 
+                39.786853
+              ], 
+              [
+                -84.814189, 
+                39.785569
+              ], 
+              [
+                -84.814129, 
+                39.72662
+              ], 
+              [
+                -84.814129, 
+                39.726556
+              ], 
+              [
+                -84.81453, 
+                39.680429
+              ], 
+              [
+                -84.814619, 
+                39.669174
+              ], 
+              [
+                -84.814705, 
+                39.628854
+              ], 
+              [
+                -84.815156, 
+                39.568351
+              ], 
+              [
+                -84.815036, 
+                39.567695
+              ], 
+              [
+                -84.814955, 
+                39.567251
+              ], 
+              [
+                -84.814955, 
+                39.566251
+              ], 
+              [
+                -84.815155, 
+                39.548051
+              ], 
+              [
+                -84.815355, 
+                39.521951
+              ], 
+              [
+                -84.815355, 
+                39.52195
+              ], 
+              [
+                -84.815555, 
+                39.511052
+              ], 
+              [
+                -84.815555, 
+                39.510952
+              ], 
+              [
+                -84.815754, 
+                39.477358
+              ], 
+              [
+                -84.815754, 
+                39.477352
+              ], 
+              [
+                -84.817453, 
+                39.391753
+              ], 
+              [
+                -84.819352, 
+                39.309454
+              ], 
+              [
+                -84.819451, 
+                39.305153
+              ], 
+              [
+                -84.819451, 
+                39.305152
+              ], 
+              [
+                -84.819622, 
+                39.27159
+              ], 
+              [
+                -84.819633, 
+                39.261855
+              ], 
+              [
+                -84.819859, 
+                39.251018
+              ], 
+              [
+                -84.819801, 
+                39.247806
+              ], 
+              [
+                -84.819813, 
+                39.244334
+              ], 
+              [
+                -84.819802, 
+                39.157613
+              ], 
+              [
+                -84.819826, 
+                39.156504
+              ], 
+              [
+                -84.819985, 
+                39.149081
+              ], 
+              [
+                -84.820157, 
+                39.10548
+              ], 
+              [
+                -84.831197, 
+                39.10192
+              ], 
+              [
+                -84.888873, 
+                39.066376
+              ], 
+              [
+                -84.897364, 
+                39.057378
+              ], 
+              [
+                -84.897171, 
+                39.052407
+              ], 
+              [
+                -84.889065, 
+                39.04082
+              ], 
+              [
+                -84.878614, 
+                39.030296
+              ], 
+              [
+                -84.849445, 
+                39.000923
+              ], 
+              [
+                -84.813182, 
+                38.930583
+              ], 
+              [
+                -84.789521, 
+                38.884687
+              ], 
+              [
+                -84.785111, 
+                38.879988
+              ], 
+              [
+                -84.785799, 
+                38.869496
+              ], 
+              [
+                -84.791078, 
+                38.855859
+              ], 
+              [
+                -84.81335, 
+                38.79833
+              ], 
+              [
+                -84.844412, 
+                38.787078
+              ], 
+              [
+                -84.944296, 
+                38.775184
+              ], 
+              [
+                -84.973432, 
+                38.778847
+              ], 
+              [
+                -84.984627, 
+                38.779072
+              ], 
+              [
+                -84.995939, 
+                38.776756
+              ], 
+              [
+                -85.024205, 
+                38.763311
+              ], 
+              [
+                -85.100963, 
+                38.7268
+              ], 
+              [
+                -85.106902, 
+                38.720789
+              ], 
+              [
+                -85.13868, 
+                38.699168
+              ], 
+              [
+                -85.156158, 
+                38.692251
+              ], 
+              [
+                -85.172528, 
+                38.688082
+              ], 
+              [
+                -85.189362, 
+                38.687579
+              ], 
+              [
+                -85.201498, 
+                38.691575
+              ], 
+              [
+                -85.213257, 
+                38.695446
+              ], 
+              [
+                -85.226062, 
+                38.705456
+              ], 
+              [
+                -85.246505, 
+                38.731821
+              ], 
+              [
+                -85.258846, 
+                38.737754
+              ], 
+              [
+                -85.275454, 
+                38.741172
+              ], 
+              [
+                -85.289226, 
+                38.74241
+              ], 
+              [
+                -85.333285, 
+                38.74048
+              ], 
+              [
+                -85.410925, 
+                38.73708
+              ], 
+              [
+                -85.422021, 
+                38.734834
+              ], 
+              [
+                -85.434065, 
+                38.729455
+              ], 
+              [
+                -85.452114, 
+                38.709348
+              ], 
+              [
+                -85.456978, 
+                38.689135
+              ], 
+              [
+                -85.439351, 
+                38.610388
+              ], 
+              [
+                -85.427467, 
+                38.586735
+              ], 
+              [
+                -85.415821, 
+                38.563558
+              ], 
+              [
+                -85.4156, 
+                38.546341
+              ], 
+              [
+                -85.417322, 
+                38.540763
+              ], 
+              [
+                -85.423077, 
+                38.531581
+              ], 
+              [
+                -85.432928, 
+                38.524072
+              ], 
+              [
+                -85.433136, 
+                38.523914
+              ], 
+              [
+                -85.462518, 
+                38.512602
+              ], 
+              [
+                -85.607629, 
+                38.439295
+              ], 
+              [
+                -85.620521, 
+                38.423105
+              ], 
+              [
+                -85.632937, 
+                38.395666
+              ], 
+              [
+                -85.638041, 
+                38.380338
+              ], 
+              [
+                -85.638044, 
+                38.38027
+              ], 
+              [
+                -85.638777, 
+                38.361443
+              ], 
+              [
+                -85.653641, 
+                38.327108
+              ], 
+              [
+                -85.675017, 
+                38.301317
+              ], 
+              [
+                -85.683561, 
+                38.295469
+              ], 
+              [
+                -85.744862, 
+                38.26717
+              ], 
+              [
+                -85.750962, 
+                38.26787
+              ], 
+              [
+                -85.761062, 
+                38.27257
+              ], 
+              [
+                -85.766563, 
+                38.27767
+              ], 
+              [
+                -85.765963, 
+                38.280469
+              ], 
+              [
+                -85.773363, 
+                38.286169
+              ], 
+              [
+                -85.780963, 
+                38.288469
+              ], 
+              [
+                -85.791563, 
+                38.288569
+              ], 
+              [
+                -85.791575, 
+                38.288566
+              ], 
+              [
+                -85.816164, 
+                38.282969
+              ], 
+              [
+                -85.823764, 
+                38.280569
+              ], 
+              [
+                -85.829364, 
+                38.276769
+              ], 
+              [
+                -85.897664, 
+                38.184269
+              ], 
+              [
+                -85.89955, 
+                38.180343
+              ], 
+              [
+                -85.908764, 
+                38.161169
+              ], 
+              [
+                -85.909464, 
+                38.14007
+              ], 
+              [
+                -85.905164, 
+                38.11107
+              ], 
+              [
+                -85.904564, 
+                38.10027
+              ], 
+              [
+                -85.906163, 
+                38.08617
+              ], 
+              [
+                -85.911607, 
+                38.06689
+              ], 
+              [
+                -85.922395, 
+                38.028679
+              ], 
+              [
+                -85.930235, 
+                38.018311
+              ], 
+              [
+                -85.941403, 
+                38.009831
+              ], 
+              [
+                -85.947952, 
+                38.007083
+              ], 
+              [
+                -85.951467, 
+                38.005608
+              ], 
+              [
+                -85.998609, 
+                37.997775
+              ], 
+              [
+                -86.029509, 
+                37.99264
+              ], 
+              [
+                -86.172186, 
+                38.00992
+              ], 
+              [
+                -86.178983, 
+                38.011308
+              ], 
+              [
+                -86.220371, 
+                38.027922
+              ], 
+              [
+                -86.266891, 
+                38.057125
+              ], 
+              [
+                -86.273584, 
+                38.067443
+              ], 
+              [
+                -86.27872, 
+                38.089303
+              ], 
+              [
+                -86.278034, 
+                38.102426
+              ], 
+              [
+                -86.271223, 
+                38.130112
+              ], 
+              [
+                -86.283964, 
+                38.143185
+              ], 
+              [
+                -86.309727, 
+                38.144393
+              ], 
+              [
+                -86.314292, 
+                38.14261
+              ], 
+              [
+                -86.323453, 
+                38.139032
+              ], 
+              [
+                -86.326788, 
+                38.134604
+              ], 
+              [
+                -86.332567, 
+                38.130131
+              ], 
+              [
+                -86.398661, 
+                38.106238
+              ], 
+              [
+                -86.426508, 
+                38.081784
+              ], 
+              [
+                -86.430091, 
+                38.078638
+              ], 
+              [
+                -86.432789, 
+                38.067171
+              ], 
+              [
+                -86.438236, 
+                38.060426
+              ], 
+              [
+                -86.452192, 
+                38.05049
+              ], 
+              [
+                -86.466876, 
+                38.046597
+              ], 
+              [
+                -86.490853, 
+                38.045796
+              ], 
+              [
+                -86.490858, 
+                38.045796
+              ], 
+              [
+                -86.51176, 
+                38.044448
+              ], 
+              [
+                -86.517289, 
+                38.042634
+              ], 
+              [
+                -86.521825, 
+                38.038327
+              ], 
+              [
+                -86.524969, 
+                38.027879
+              ], 
+              [
+                -86.525174, 
+                37.968228
+              ], 
+              [
+                -86.604624, 
+                37.858272
+              ], 
+              [
+                -86.634271, 
+                37.843845
+              ], 
+              [
+                -86.648028, 
+                37.841425
+              ], 
+              [
+                -86.655285, 
+                37.842506
+              ], 
+              [
+                -86.655296, 
+                37.842508
+              ], 
+              [
+                -86.660293, 
+                37.865057
+              ], 
+              [
+                -86.709164, 
+                37.89764
+              ], 
+              [
+                -86.718462, 
+                37.893123
+              ], 
+              [
+                -86.72351, 
+                37.892831
+              ], 
+              [
+                -86.73146, 
+                37.89434
+              ], 
+              [
+                -86.740877, 
+                37.902568
+              ], 
+              [
+                -86.75099, 
+                37.912893
+              ], 
+              [
+                -86.770179, 
+                37.940264
+              ], 
+              [
+                -86.787695, 
+                37.971449
+              ], 
+              [
+                -86.794985, 
+                37.988982
+              ], 
+              [
+                -86.814776, 
+                37.998638
+              ], 
+              [
+                -86.815267, 
+                37.998877
+              ], 
+              [
+                -86.823491, 
+                37.998939
+              ], 
+              [
+                -86.85595, 
+                37.987292
+              ], 
+              [
+                -86.884961, 
+                37.964373
+              ], 
+              [
+                -86.902413, 
+                37.946161
+              ], 
+              [
+                -86.919329, 
+                37.936664
+              ], 
+              [
+                -86.97883, 
+                37.930214
+              ], 
+              [
+                -86.978957, 
+                37.9302
+              ], 
+              [
+                -87.010315, 
+                37.919668
+              ], 
+              [
+                -87.033444, 
+                37.906593
+              ], 
+              [
+                -87.042249, 
+                37.898291
+              ], 
+              [
+                -87.046237, 
+                37.889866
+              ], 
+              [
+                -87.043407, 
+                37.87994
+              ], 
+              [
+                -87.043854, 
+                37.870796
+              ], 
+              [
+                -87.057836, 
+                37.827457
+              ], 
+              [
+                -87.067836, 
+                37.806065
+              ], 
+              [
+                -87.077404, 
+                37.796209
+              ], 
+              [
+                -87.090636, 
+                37.787808
+              ], 
+              [
+                -87.111133, 
+                37.782512
+              ], 
+              [
+                -87.119229, 
+                37.782848
+              ], 
+              [
+                -87.128749, 
+                37.785728
+              ], 
+              [
+                -87.132621, 
+                37.791008
+              ], 
+              [
+                -87.20224, 
+                37.843791
+              ], 
+              [
+                -87.26293, 
+                37.872846
+              ], 
+              [
+                -87.269561, 
+                37.877155
+              ], 
+              [
+                -87.302324, 
+                37.898445
+              ], 
+              [
+                -87.380247, 
+                37.935596
+              ], 
+              [
+                -87.402632, 
+                37.942267
+              ], 
+              [
+                -87.418585, 
+                37.944763
+              ], 
+              [
+                -87.436859, 
+                37.944192
+              ], 
+              [
+                -87.450458, 
+                37.941451
+              ], 
+              [
+                -87.451185, 
+                37.941034
+              ], 
+              [
+                -87.511499, 
+                37.906426
+              ], 
+              [
+                -87.550333, 
+                37.92489
+              ], 
+              [
+                -87.559342, 
+                37.931146
+              ], 
+              [
+                -87.57203, 
+                37.947466
+              ], 
+              [
+                -87.574287, 
+                37.954842
+              ], 
+              [
+                -87.573415, 
+                37.962642
+              ], 
+              [
+                -87.574715, 
+                37.967742
+              ], 
+              [
+                -87.581115, 
+                37.973442
+              ], 
+              [
+                -87.585916, 
+                37.975442
+              ], 
+              [
+                -87.592916, 
+                37.975842
+              ], 
+              [
+                -87.601416, 
+                37.972542
+              ], 
+              [
+                -87.62896, 
+                37.926714
+              ], 
+              [
+                -87.626256, 
+                37.916138
+              ], 
+              [
+                -87.620272, 
+                37.906922
+              ], 
+              [
+                -87.597118, 
+                37.892394
+              ], 
+              [
+                -87.591582, 
+                37.887194
+              ], 
+              [
+                -87.588426, 
+                37.868791
+              ], 
+              [
+                -87.588729, 
+                37.860984
+              ], 
+              [
+                -87.591504, 
+                37.856642
+              ], 
+              [
+                -87.606599, 
+                37.838669
+              ], 
+              [
+                -87.615399, 
+                37.831974
+              ], 
+              [
+                -87.645858, 
+                37.825899
+              ], 
+              [
+                -87.670889, 
+                37.828429
+              ], 
+              [
+                -87.679188, 
+                37.836321
+              ], 
+              [
+                -87.6819, 
+                37.84641
+              ], 
+              [
+                -87.681633, 
+                37.855917
+              ], 
+              [
+                -87.662865, 
+                37.885578
+              ], 
+              [
+                -87.666481, 
+                37.895786
+              ], 
+              [
+                -87.67573, 
+                37.90193
+              ], 
+              [
+                -87.684018, 
+                37.903498
+              ], 
+              [
+                -87.700421, 
+                37.900858
+              ], 
+              [
+                -87.76226, 
+                37.890906
+              ], 
+              [
+                -87.783643, 
+                37.877759
+              ], 
+              [
+                -87.7909, 
+                37.875714
+              ], 
+              [
+                -87.830578, 
+                37.876516
+              ], 
+              [
+                -87.841193, 
+                37.882325
+              ], 
+              [
+                -87.857243, 
+                37.900649
+              ], 
+              [
+                -87.865558, 
+                37.915056
+              ], 
+              [
+                -87.87254, 
+                37.920999
+              ], 
+              [
+                -87.883321, 
+                37.926238
+              ], 
+              [
+                -87.898062, 
+                37.927514
+              ], 
+              [
+                -87.904789, 
+                37.924892
+              ], 
+              [
+                -87.927424, 
+                37.902038
+              ], 
+              [
+                -87.936784, 
+                37.892587
+              ], 
+              [
+                -87.940069, 
+                37.88767
+              ], 
+              [
+                -87.940839, 
+                37.883338
+              ], 
+              [
+                -87.940005, 
+                37.875044
+              ], 
+              [
+                -87.936228, 
+                37.867937
+              ], 
+              [
+                -87.927303, 
+                37.858709
+              ], 
+              [
+                -87.914892, 
+                37.849618
+              ], 
+              [
+                -87.910276, 
+                37.843416
+              ], 
+              [
+                -87.907773, 
+                37.837611
+              ], 
+              [
+                -87.903804, 
+                37.817762
+              ], 
+              [
+                -87.90681, 
+                37.807624
+              ], 
+              [
+                -87.943756, 
+                37.776843
+              ], 
+              [
+                -87.970869, 
+                37.783456
+              ], 
+              [
+                -87.976389, 
+                37.788004
+              ], 
+              [
+                -88.004706, 
+                37.800145
+              ], 
+              [
+                -88.017314, 
+                37.801911
+              ], 
+              [
+                -88.02803, 
+                37.799224
+              ], 
+              [
+                -88.027789, 
+                37.828298
+              ], 
+              [
+                -88.049453, 
+                37.845187
+              ], 
+              [
+                -88.071449, 
+                37.895813
+              ], 
+              [
+                -88.055373, 
+                37.891238
+              ], 
+              [
+                -88.021117, 
+                37.888057
+              ], 
+              [
+                -88.017073, 
+                37.889222
+              ], 
+              [
+                -88.013451, 
+                37.893951
+              ], 
+              [
+                -88.012574, 
+                37.977062
+              ], 
+              [
+                -88.041532, 
+                38.037345
+              ], 
+              [
+                -88.042132, 
+                38.046345
+              ], 
+              [
+                -88.013118, 
+                38.103527
+              ], 
+              [
+                -87.974272, 
+                38.121981
+              ], 
+              [
+                -87.942176, 
+                38.131759
+              ], 
+              [
+                -87.92783, 
+                38.141545
+              ], 
+              [
+                -87.911034, 
+                38.162194
+              ], 
+              [
+                -87.910792, 
+                38.167666
+              ], 
+              [
+                -87.915666, 
+                38.173322
+              ], 
+              [
+                -87.928856, 
+                38.176771
+              ], 
+              [
+                -87.940694, 
+                38.181261
+              ], 
+              [
+                -87.951307, 
+                38.193099
+              ], 
+              [
+                -87.959062, 
+                38.203712
+              ], 
+              [
+                -87.961103, 
+                38.214733
+              ], 
+              [
+                -87.955344, 
+                38.230008
+              ], 
+              [
+                -87.951715, 
+                38.239632
+              ], 
+              [
+                -87.923958, 
+                38.258409
+              ], 
+              [
+                -87.863032, 
+                38.280172
+              ], 
+              [
+                -87.750028, 
+                38.403027
+              ], 
+              [
+                -87.740001, 
+                38.415698
+              ], 
+              [
+                -87.656144, 
+                38.521668
+              ], 
+              [
+                -87.669232, 
+                38.541742
+              ], 
+              [
+                -87.670071, 
+                38.545237
+              ], 
+              [
+                -87.651529, 
+                38.568166
+              ], 
+              [
+                -87.627345, 
+                38.607237
+              ], 
+              [
+                -87.62012, 
+                38.639489
+              ], 
+              [
+                -87.60018, 
+                38.662462
+              ], 
+              [
+                -87.593678, 
+                38.667402
+              ], 
+              [
+                -87.579397, 
+                38.672475
+              ], 
+              [
+                -87.540052, 
+                38.679143
+              ], 
+              [
+                -87.531231, 
+                38.684036
+              ], 
+              [
+                -87.519609, 
+                38.697198
+              ], 
+              [
+                -87.498515, 
+                38.758983
+              ], 
+              [
+                -87.495211, 
+                38.78306
+              ], 
+              [
+                -87.525893, 
+                38.848795
+              ], 
+              [
+                -87.528194, 
+                38.851691
+              ], 
+              [
+                -87.532064, 
+                38.852503
+              ], 
+              [
+                -87.537248, 
+                38.853592
+              ], 
+              [
+                -87.550515, 
+                38.85956
+              ], 
+              [
+                -87.553384, 
+                38.863344
+              ], 
+              [
+                -87.540804, 
+                38.896385
+              ], 
+              [
+                -87.528108, 
+                38.908027
+              ], 
+              [
+                -87.52791, 
+                38.908209
+              ], 
+              [
+                -87.518826, 
+                38.923205
+              ], 
+              [
+                -87.512187, 
+                38.954417
+              ], 
+              [
+                -87.572588, 
+                39.057286
+              ], 
+              [
+                -87.614881, 
+                39.102655
+              ], 
+              [
+                -87.658746, 
+                39.135997
+              ], 
+              [
+                -87.651719, 
+                39.150602
+              ], 
+              [
+                -87.642174, 
+                39.157097
+              ], 
+              [
+                -87.628727, 
+                39.157427
+              ], 
+              [
+                -87.605173, 
+                39.185897
+              ], 
+              [
+                -87.587507, 
+                39.249282
+              ], 
+              [
+                -87.593486, 
+                39.247452
+              ], 
+              [
+                -87.604076, 
+                39.259459
+              ], 
+              [
+                -87.605543, 
+                39.261122
+              ], 
+              [
+                -87.61005, 
+                39.282232
+              ], 
+              [
+                -87.604043, 
+                39.313526
+              ], 
+              [
+                -87.589084, 
+                39.333831
+              ], 
+              [
+                -87.584852, 
+                39.337329
+              ], 
+              [
+                -87.544013, 
+                39.352907
+              ], 
+              [
+                -87.537271, 
+                39.352089
+              ], 
+              [
+                -87.531646, 
+                39.347888
+              ], 
+              [
+                -87.531355, 
+                39.436656
+              ], 
+              [
+                -87.531355, 
+                39.437732
+              ], 
+              [
+                -87.531489, 
+                39.449474
+              ], 
+              [
+                -87.531608, 
+                39.466225
+              ], 
+              [
+                -87.531624, 
+                39.469378
+              ], 
+              [
+                -87.531663, 
+                39.47711
+              ], 
+              [
+                -87.531663, 
+                39.47712
+              ], 
+              [
+                -87.531627, 
+                39.491698
+              ], 
+              [
+                -87.531692, 
+                39.495516
+              ], 
+              [
+                -87.531965, 
+                39.526937
+              ], 
+              [
+                -87.531939, 
+                39.545853
+              ], 
+              [
+                -87.532008, 
+                39.564013
+              ], 
+              [
+                -87.532196, 
+                39.607306
+              ], 
+              [
+                -87.532365, 
+                39.646126
+              ], 
+              [
+                -87.532444, 
+                39.646102
+              ], 
+              [
+                -87.532703, 
+                39.664868
+              ], 
+              [
+                -87.533066, 
+                39.781743
+              ], 
+              [
+                -87.533058, 
+                39.796243
+              ], 
+              [
+                -87.533056, 
+                39.803922
+              ], 
+              [
+                -87.533142, 
+                39.810947
+              ], 
+              [
+                -87.533227, 
+                39.883
+              ], 
+              [
+                -87.533227, 
+                39.883127
+              ], 
+              [
+                -87.532776, 
+                39.971077
+              ], 
+              [
+                -87.53279, 
+                39.97501
+              ], 
+              [
+                -87.532683, 
+                39.977691
+              ], 
+              [
+                -87.532542, 
+                39.987462
+              ], 
+              [
+                -87.532331, 
+                39.997776
+              ], 
+              [
+                -87.532287, 
+                40.000037
+              ], 
+              [
+                -87.532308, 
+                40.011492
+              ], 
+              [
+                -87.532308, 
+                40.011587
+              ], 
+              [
+                -87.531561, 
+                40.133005
+              ], 
+              [
+                -87.531759, 
+                40.144273
+              ], 
+              [
+                -87.531439, 
+                40.148027
+              ], 
+              [
+                -87.531438, 
+                40.148123
+              ], 
+              [
+                -87.531133, 
+                40.17003
+              ], 
+              [
+                -87.530828, 
+                40.191812
+              ], 
+              [
+                -87.529992, 
+                40.250036
+              ], 
+              [
+                -87.530054, 
+                40.250671
+              ], 
+              [
+                -87.526809, 
+                40.46217
+              ], 
+              [
+                -87.526549, 
+                40.475659
+              ], 
+              [
+                -87.526511, 
+                40.476879
+              ], 
+              [
+                -87.526502, 
+                40.477158
+              ], 
+              [
+                -87.526379, 
+                40.491237
+              ], 
+              [
+                -87.526376, 
+                40.491574
+              ], 
+              [
+                -87.526352, 
+                40.535111
+              ], 
+              [
+                -87.526292, 
+                40.535409
+              ], 
+              [
+                -87.526129, 
+                40.736885
+              ], 
+              [
+                -87.526129, 
+                40.73695
+              ], 
+              [
+                -87.525783, 
+                40.854357
+              ], 
+              [
+                -87.526113, 
+                40.879703
+              ], 
+              [
+                -87.525962, 
+                40.880618
+              ], 
+              [
+                -87.526437, 
+                40.894209
+              ], 
+              [
+                -87.526084, 
+                40.911914
+              ], 
+              [
+                -87.526305, 
+                41.010346
+              ], 
+              [
+                -87.526307, 
+                41.010355
+              ], 
+              [
+                -87.526346, 
+                41.010583
+              ], 
+              [
+                -87.52652, 
+                41.024837
+              ], 
+              [
+                -87.526711, 
+                41.121485
+              ], 
+              [
+                -87.5267, 
+                41.139658
+              ], 
+              [
+                -87.526696, 
+                41.149222
+              ], 
+              [
+                -87.526693, 
+                41.153958
+              ], 
+              [
+                -87.526719, 
+                41.159448
+              ], 
+              [
+                -87.52666, 
+                41.16009
+              ], 
+              [
+                -87.526567, 
+                41.163865
+              ], 
+              [
+                -87.52657, 
+                41.166097
+              ], 
+              [
+                -87.526768, 
+                41.298052
+              ], 
+              [
+                -87.526768, 
+                41.298177
+              ], 
+              [
+                -87.525623, 
+                41.453619
+              ], 
+              [
+                -87.525671, 
+                41.470115
+              ], 
+              [
+                -87.525669, 
+                41.470283
+              ], 
+              [
+                -87.524641, 
+                41.563335
+              ], 
+              [
+                -87.524642, 
+                41.622535
+              ], 
+              [
+                -87.524742, 
+                41.632435
+              ], 
+              [
+                -87.524642, 
+                41.634935
+              ], 
+              [
+                -87.524844, 
+                41.691635
+              ], 
+              [
+                -87.524944, 
+                41.702635
+              ], 
+              [
+                -87.524044, 
+                41.708335
+              ], 
+              [
+                -87.520544, 
+                41.709935
+              ], 
+              [
+                -87.515243, 
+                41.704235
+              ], 
+              [
+                -87.511043, 
+                41.696535
+              ], 
+              [
+                -87.505343, 
+                41.691535
+              ], 
+              [
+                -87.470742, 
+                41.672835
+              ], 
+              [
+                -87.463142, 
+                41.675535
+              ], 
+              [
+                -87.453041, 
+                41.673035
+              ], 
+              [
+                -87.446113, 
+                41.66934
+              ], 
+              [
+                -87.441987, 
+                41.671905
+              ], 
+              [
+                -87.43853, 
+                41.670679
+              ], 
+              [
+                -87.437191, 
+                41.669006
+              ], 
+              [
+                -87.434849, 
+                41.666887
+              ], 
+              [
+                -87.432953, 
+                41.665102
+              ], 
+              [
+                -87.432396, 
+                41.66053
+              ], 
+              [
+                -87.438941, 
+                41.654335
+              ], 
+              [
+                -87.42984, 
+                41.646035
+              ], 
+              [
+                -87.42344, 
+                41.642835
+              ], 
+              [
+                -87.394539, 
+                41.637235
+              ], 
+              [
+                -87.365439, 
+                41.629536
+              ], 
+              [
+                -87.324338, 
+                41.623036
+              ], 
+              [
+                -87.287637, 
+                41.622236
+              ], 
+              [
+                -87.278437, 
+                41.619736
+              ], 
+              [
+                -87.261536, 
+                41.620336
+              ], 
+              [
+                -87.222644, 
+                41.624161
+              ], 
+              [
+                -87.22066, 
+                41.624356
+              ], 
+              [
+                -87.187651, 
+                41.629653
+              ], 
+              [
+                -87.160625, 
+                41.637266
+              ], 
+              [
+                -87.160784, 
+                41.645385
+              ], 
+              [
+                -87.125835, 
+                41.650302
+              ], 
+              [
+                -87.120322, 
+                41.645701
+              ], 
+              [
+                -87.066033, 
+                41.661845
+              ], 
+              [
+                -87.027888, 
+                41.674661
+              ], 
+              [
+                -87.00964, 
+                41.68152
+              ], 
+              [
+                -86.93483, 
+                41.709638
+              ], 
+              [
+                -86.932747, 
+                41.71104
+              ], 
+              [
+                -86.90913, 
+                41.726938
+              ], 
+              [
+                -86.875429, 
+                41.737939
+              ], 
+              [
+                -86.824828, 
+                41.76024
+              ], 
+              [
+                -86.823628, 
+                41.76024
+              ], 
+              [
+                -86.804427, 
+                41.76024
+              ], 
+              [
+                -86.801578, 
+                41.76024
+              ], 
+              [
+                -86.800707, 
+                41.76024
+              ], 
+              [
+                -86.800611, 
+                41.760251
+              ], 
+              [
+                -86.748096, 
+                41.759967
+              ], 
+              [
+                -86.746521, 
+                41.759982
+              ], 
+              [
+                -86.641186, 
+                41.759633
+              ], 
+              [
+                -86.640044, 
+                41.759671
+              ], 
+              [
+                -86.524223, 
+                41.759456
+              ], 
+              [
+                -86.519318, 
+                41.759447
+              ], 
+              [
+                -86.501773, 
+                41.759553
+              ], 
+              [
+                -86.265496, 
+                41.760207
+              ], 
+              [
+                -86.226097, 
+                41.760016
+              ], 
+              [
+                -86.22607, 
+                41.760016
+              ], 
+              [
+                -86.21759, 
+                41.760016
+              ], 
+              [
+                -86.127844, 
+                41.760592
+              ], 
+              [
+                -86.12546, 
+                41.76056
+              ], 
+              [
+                -86.12506, 
+                41.760576
+              ], 
+              [
+                -86.062572, 
+                41.760283
+              ], 
+              [
+                -86.003683, 
+                41.760007
+              ], 
+              [
+                -85.991302, 
+                41.759949
+              ], 
+              [
+                -85.97498, 
+                41.759849
+              ], 
+              [
+                -85.974901, 
+                41.759849
+              ], 
+              [
+                -85.888825, 
+                41.759422
+              ], 
+              [
+                -85.874997, 
+                41.759341
+              ], 
+              [
+                -85.872041, 
+                41.759365
+              ], 
+              [
+                -85.791363, 
+                41.759051
+              ], 
+              [
+                -85.791335, 
+                41.759051
+              ], 
+              [
+                -85.775039, 
+                41.759147
+              ], 
+              [
+                -85.750469, 
+                41.75909
+              ], 
+              [
+                -85.749992, 
+                41.759091
+              ], 
+              [
+                -85.724534, 
+                41.759085
+              ], 
+              [
+                -85.65975, 
+                41.759101
+              ], 
+              [
+                -85.650738, 
+                41.759103
+              ], 
+              [
+                -85.647683, 
+                41.759125
+              ], 
+              [
+                -85.632714, 
+                41.759164
+              ], 
+              [
+                -85.624987, 
+                41.759093
+              ], 
+              [
+                -85.622608, 
+                41.759049
+              ], 
+              [
+                -85.608312, 
+                41.759193
+              ], 
+              [
+                -85.607548, 
+                41.759079
+              ], 
+              [
+                -85.518251, 
+                41.759513
+              ], 
+              [
+                -85.515959, 
+                41.759352
+              ], 
+              [
+                -85.432471, 
+                41.759684
+              ], 
+              [
+                -85.427553, 
+                41.759706
+              ], 
+              [
+                -85.379133, 
+                41.759875
+              ], 
+              [
+                -85.350174, 
+                41.759908
+              ], 
+              [
+                -85.330623, 
+                41.759982
+              ], 
+              [
+                -85.318129, 
+                41.759983
+              ], 
+              [
+                -85.30814, 
+                41.760097
+              ], 
+              [
+                -85.298365, 
+                41.760028
+              ], 
+              [
+                -85.292178, 
+                41.759963
+              ], 
+              [
+                -85.292099, 
+                41.759962
+              ], 
+              [
+                -85.273713, 
+                41.75977
+              ], 
+              [
+                -85.272951, 
+                41.759911
+              ], 
+              [
+                -85.272216, 
+                41.759999
+              ], 
+              [
+                -85.232835, 
+                41.759839
+              ], 
+              [
+                -85.196774, 
+                41.759735
+              ], 
+              [
+                -85.196637, 
+                41.759735
+              ], 
+              [
+                -85.17223, 
+                41.759618
+              ], 
+              [
+                -85.123102, 
+                41.759743
+              ], 
+              [
+                -85.117267, 
+                41.7597
+              ], 
+              [
+                -85.039436, 
+                41.759985
+              ], 
+              [
+                -85.037817, 
+                41.759801
+              ], 
+              [
+                -84.972803, 
+                41.759366
+              ], 
+              [
+                -84.971551, 
+                41.759527
+              ], 
+              [
+                -84.961562, 
+                41.759552
+              ], 
+              [
+                -84.96086, 
+                41.759438
+              ], 
+              [
+                -84.932484, 
+                41.759691
+              ], 
+              [
+                -84.825196, 
+                41.75999
+              ], 
+              [
+                -84.82513, 
+                41.759991
+              ], 
+              [
+                -84.818873, 
+                41.760059
+              ], 
+              [
+                -84.806134, 
+                41.743115
+              ], 
+              [
+                -84.806074, 
+                41.737603
+              ], 
+              [
+                -84.806065, 
+                41.732909
+              ], 
+              [
+                -84.806042, 
+                41.720544
+              ], 
+              [
+                -84.806018, 
+                41.707485
+              ], 
+              [
+                -84.806082, 
+                41.696089
+              ], 
+              [
+                -84.80621, 
+                41.67455
+              ], 
+              [
+                -84.805673, 
+                41.632342
+              ], 
+              [
+                -84.805696, 
+                41.631398
+              ], 
+              [
+                -84.805812, 
+                41.61304
+              ], 
+              [
+                -84.804729, 
+                41.530231
+              ], 
+              [
+                -84.804729, 
+                41.530135
+              ], 
+              [
+                -84.804729, 
+                41.530092
+              ], 
+              [
+                -84.804551, 
+                41.500364
+              ], 
+              [
+                -84.804457, 
+                41.488224
+              ], 
+              [
+                -84.803919, 
+                41.435531
+              ], 
+              [
+                -84.803956, 
+                41.426128
+              ], 
+              [
+                -84.803956, 
+                41.426044
+              ], 
+              [
+                -84.804015, 
+                41.411655
+              ], 
+              [
+                -84.804046, 
+                41.408361
+              ], 
+              [
+                -84.804133, 
+                41.408292
+              ], 
+              [
+                -84.803926, 
+                41.367959
+              ], 
+              [
+                -84.803582, 
+                41.271273
+              ], 
+              [
+                -84.803581, 
+                41.271079
+              ], 
+              [
+                -84.80358, 
+                41.270942
+              ], 
+              [
+                -84.803492, 
+                41.252562
+              ], 
+              [
+                -84.803492, 
+                41.252531
+              ], 
+              [
+                -84.803472, 
+                41.173889
+              ], 
+              [
+                -84.803594, 
+                41.173203
+              ], 
+              [
+                -84.803413, 
+                41.164649
+              ], 
+              [
+                -84.803378, 
+                41.096867
+              ], 
+              [
+                -84.803374, 
+                41.089302
+              ], 
+              [
+                -84.803313, 
+                40.989394
+              ], 
+              [
+                -84.803313, 
+                40.989209
+              ], 
+              [
+                -84.802936, 
+                40.922568
+              ], 
+              [
+                -84.802935, 
+                40.922377
+              ], 
+              [
+                -84.802538, 
+                40.765515
+              ], 
+              [
+                -84.802266, 
+                40.742298
+              ], 
+              [
+                -84.802119, 
+                40.728163
+              ], 
+              [
+                -84.802119, 
+                40.728146
+              ], 
+              [
+                -84.802181, 
+                40.718602
+              ], 
+              [
+                -84.802094, 
+                40.702476
+              ], 
+              [
+                -84.802127, 
+                40.691405
+              ], 
+              [
+                -84.802157, 
+                40.689324
+              ], 
+              [
+                -84.80222, 
+                40.674776
+              ], 
+              [
+                -84.802193, 
+                40.660298
+              ], 
+              [
+                -84.802135, 
+                40.644859
+              ], 
+              [
+                -84.802265, 
+                40.572215
+              ], 
+              [
+                -84.802265, 
+                40.572212
+              ], 
+              [
+                -84.802483, 
+                40.528046
+              ], 
+              [
+                -84.803068, 
+                40.465388
+              ], 
+              [
+                -84.804119, 
+                40.352844
+              ], 
+              [
+                -84.804119, 
+                40.352757
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 8, 
+      "properties": {
+        "CENSUSAREA": 35826.109, 
+        "GEO_ID": "0400000US18", 
+        "ISO": "US-IN", 
+        "LSAD": "", 
+        "NAME": "Indiana", 
+        "NAME_1": "Indiana", 
+        "STATE": "IN"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -88.865067, 
+                29.752714
+              ], 
+              [
+                -88.889755, 
+                29.718204
+              ], 
+              [
+                -88.940346, 
+                29.657234
+              ], 
+              [
+                -88.944435, 
+                29.658806
+              ], 
+              [
+                -88.94632, 
+                29.662579
+              ], 
+              [
+                -88.941605, 
+                29.674833
+              ], 
+              [
+                -88.920235, 
+                29.694319
+              ], 
+              [
+                -88.911751, 
+                29.699348
+              ], 
+              [
+                -88.89006, 
+                29.729202
+              ], 
+              [
+                -88.873611, 
+                29.758043
+              ], 
+              [
+                -88.867973, 
+                29.772272
+              ], 
+              [
+                -88.867973, 
+                29.79133
+              ], 
+              [
+                -88.861267, 
+                29.805826
+              ], 
+              [
+                -88.846497, 
+                29.817101
+              ], 
+              [
+                -88.84301, 
+                29.82596
+              ], 
+              [
+                -88.836296, 
+                29.855221
+              ], 
+              [
+                -88.83683, 
+                29.858978
+              ], 
+              [
+                -88.843277, 
+                29.86381
+              ], 
+              [
+                -88.8312, 
+                29.878839
+              ], 
+              [
+                -88.828247, 
+                29.920717
+              ], 
+              [
+                -88.837379, 
+                29.944878
+              ], 
+              [
+                -88.838715, 
+                29.962326
+              ], 
+              [
+                -88.835495, 
+                29.967695
+              ], 
+              [
+                -88.835495, 
+                29.974138
+              ], 
+              [
+                -88.83979, 
+                29.983803
+              ], 
+              [
+                -88.840866, 
+                29.995613
+              ], 
+              [
+                -88.848373, 
+                30.01333
+              ], 
+              [
+                -88.857368, 
+                30.027826
+              ], 
+              [
+                -88.86972, 
+                30.043798
+              ], 
+              [
+                -88.881454, 
+                30.053202
+              ], 
+              [
+                -88.870476, 
+                30.049212
+              ], 
+              [
+                -88.855583, 
+                30.034414
+              ], 
+              [
+                -88.841225, 
+                30.012789
+              ], 
+              [
+                -88.833725, 
+                29.998821
+              ], 
+              [
+                -88.824158, 
+                29.970461
+              ], 
+              [
+                -88.817017, 
+                29.93425
+              ], 
+              [
+                -88.818146, 
+                29.889109
+              ], 
+              [
+                -88.826538, 
+                29.847092
+              ], 
+              [
+                -88.83271, 
+                29.824062
+              ], 
+              [
+                -88.844078, 
+                29.795713
+              ], 
+              [
+                -88.865067, 
+                29.752714
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -94.043147, 
+                32.69303
+              ], 
+              [
+                -94.043147, 
+                32.693031
+              ], 
+              [
+                -94.042947, 
+                32.767991
+              ], 
+              [
+                -94.043027, 
+                32.776863
+              ], 
+              [
+                -94.042938, 
+                32.780558
+              ], 
+              [
+                -94.042829, 
+                32.785277
+              ], 
+              [
+                -94.042747, 
+                32.786973
+              ], 
+              [
+                -94.043026, 
+                32.797476
+              ], 
+              [
+                -94.042785, 
+                32.871486
+              ], 
+              [
+                -94.043025, 
+                32.880446
+              ], 
+              [
+                -94.042886, 
+                32.880965
+              ], 
+              [
+                -94.042886, 
+                32.881089
+              ], 
+              [
+                -94.042859, 
+                32.892771
+              ], 
+              [
+                -94.042885, 
+                32.898911
+              ], 
+              [
+                -94.043092, 
+                32.910021
+              ], 
+              [
+                -94.043067, 
+                32.937903
+              ], 
+              [
+                -94.043088, 
+                32.955592
+              ], 
+              [
+                -94.042964, 
+                33.019219
+              ], 
+              [
+                -94.041444, 
+                33.019188
+              ], 
+              [
+                -94.035839, 
+                33.019145
+              ], 
+              [
+                -94.027983, 
+                33.019139
+              ], 
+              [
+                -94.024475, 
+                33.019207
+              ], 
+              [
+                -93.814553, 
+                33.019372
+              ], 
+              [
+                -93.80493, 
+                33.019347
+              ], 
+              [
+                -93.531499, 
+                33.018643
+              ], 
+              [
+                -93.524916, 
+                33.018637
+              ], 
+              [
+                -93.520994, 
+                33.018616
+              ], 
+              [
+                -93.520971, 
+                33.018616
+              ], 
+              [
+                -93.490893, 
+                33.018442
+              ], 
+              [
+                -93.49052, 
+                33.018442
+              ], 
+              [
+                -93.489506, 
+                33.018443
+              ], 
+              [
+                -93.467042, 
+                33.018611
+              ], 
+              [
+                -93.377134, 
+                33.018234
+              ], 
+              [
+                -93.340353, 
+                33.018337
+              ], 
+              [
+                -93.308398, 
+                33.018179
+              ], 
+              [
+                -93.308181, 
+                33.018156
+              ], 
+              [
+                -93.238607, 
+                33.017992
+              ], 
+              [
+                -93.197402, 
+                33.017951
+              ], 
+              [
+                -93.154351, 
+                33.017856
+              ], 
+              [
+                -93.101443, 
+                33.01774
+              ], 
+              [
+                -93.100981, 
+                33.017786
+              ], 
+              [
+                -93.081428, 
+                33.017928
+              ], 
+              [
+                -93.073167, 
+                33.017898
+              ], 
+              [
+                -93.070686, 
+                33.017792
+              ], 
+              [
+                -92.988708, 
+                33.017298
+              ], 
+              [
+                -92.971137, 
+                33.017192
+              ], 
+              [
+                -92.946553, 
+                33.016807
+              ], 
+              [
+                -92.86751, 
+                33.016062
+              ], 
+              [
+                -92.854167, 
+                33.016132
+              ], 
+              [
+                -92.844286, 
+                33.01607
+              ], 
+              [
+                -92.844073, 
+                33.016034
+              ], 
+              [
+                -92.830798, 
+                33.015661
+              ], 
+              [
+                -92.733197, 
+                33.014347
+              ], 
+              [
+                -92.724994, 
+                33.014351
+              ], 
+              [
+                -92.724743, 
+                33.014347
+              ], 
+              [
+                -92.723553, 
+                33.014328
+              ], 
+              [
+                -92.715884, 
+                33.014398
+              ], 
+              [
+                -92.711289, 
+                33.014307
+              ], 
+              [
+                -92.503776, 
+                33.012161
+              ], 
+              [
+                -92.501383, 
+                33.01216
+              ], 
+              [
+                -92.469762, 
+                33.01201
+              ], 
+              [
+                -92.37029, 
+                33.010717
+              ], 
+              [
+                -92.362865, 
+                33.010628
+              ], 
+              [
+                -92.335893, 
+                33.010349
+              ], 
+              [
+                -92.292664, 
+                33.010103
+              ], 
+              [
+                -92.222825, 
+                33.00908
+              ], 
+              [
+                -92.069105, 
+                33.008163
+              ], 
+              [
+                -91.951958, 
+                33.007428
+              ], 
+              [
+                -91.950001, 
+                33.00752
+              ], 
+              [
+                -91.62667, 
+                33.006639
+              ], 
+              [
+                -91.617615, 
+                33.006717
+              ], 
+              [
+                -91.609001, 
+                33.006556
+              ], 
+              [
+                -91.579802, 
+                33.006518
+              ], 
+              [
+                -91.579639, 
+                33.006472
+              ], 
+              [
+                -91.572326, 
+                33.006908
+              ], 
+              [
+                -91.559494, 
+                33.00684
+              ], 
+              [
+                -91.46037, 
+                33.006246
+              ], 
+              [
+                -91.435782, 
+                33.006099
+              ], 
+              [
+                -91.425466, 
+                33.006016
+              ], 
+              [
+                -91.376016, 
+                33.005794
+              ], 
+              [
+                -91.333011, 
+                33.005529
+              ], 
+              [
+                -91.329767, 
+                33.005421
+              ], 
+              [
+                -91.326396, 
+                33.005376
+              ], 
+              [
+                -91.325037, 
+                33.005364
+              ], 
+              [
+                -91.322506, 
+                33.005341
+              ], 
+              [
+                -91.312016, 
+                33.005262
+              ], 
+              [
+                -91.284398, 
+                33.005007
+              ], 
+              [
+                -91.265018, 
+                33.005084
+              ], 
+              [
+                -91.166073, 
+                33.004106
+              ], 
+              [
+                -91.201842, 
+                32.961212
+              ], 
+              [
+                -91.214027, 
+                32.93032
+              ], 
+              [
+                -91.212837, 
+                32.922104
+              ], 
+              [
+                -91.208263, 
+                32.915354
+              ], 
+              [
+                -91.196785, 
+                32.906784
+              ], 
+              [
+                -91.175405, 
+                32.899998
+              ], 
+              [
+                -91.159975, 
+                32.899879
+              ], 
+              [
+                -91.145076, 
+                32.905494
+              ], 
+              [
+                -91.134041, 
+                32.917676
+              ], 
+              [
+                -91.132115, 
+                32.923122
+              ], 
+              [
+                -91.130947, 
+                32.963815
+              ], 
+              [
+                -91.138585, 
+                32.971352
+              ], 
+              [
+                -91.134414, 
+                32.980533
+              ], 
+              [
+                -91.125107, 
+                32.984669
+              ], 
+              [
+                -91.106581, 
+                32.988938
+              ], 
+              [
+                -91.094265, 
+                32.984371
+              ], 
+              [
+                -91.086802, 
+                32.976266
+              ], 
+              [
+                -91.063974, 
+                32.924113
+              ], 
+              [
+                -91.063809, 
+                32.903709
+              ], 
+              [
+                -91.070602, 
+                32.888659
+              ], 
+              [
+                -91.086683, 
+                32.873392
+              ], 
+              [
+                -91.105631, 
+                32.858396
+              ], 
+              [
+                -91.116091, 
+                32.855641
+              ], 
+              [
+                -91.127886, 
+                32.855059
+              ], 
+              [
+                -91.145002, 
+                32.84287
+              ], 
+              [
+                -91.158336, 
+                32.822304
+              ], 
+              [
+                -91.161669, 
+                32.812465
+              ], 
+              [
+                -91.164397, 
+                32.785821
+              ], 
+              [
+                -91.165328, 
+                32.751301
+              ], 
+              [
+                -91.163389, 
+                32.747009
+              ], 
+              [
+                -91.154461, 
+                32.742339
+              ], 
+              [
+                -91.123152, 
+                32.742798
+              ], 
+              [
+                -91.077176, 
+                32.732534
+              ], 
+              [
+                -91.060766, 
+                32.727494
+              ], 
+              [
+                -91.054481, 
+                32.722259
+              ], 
+              [
+                -91.057043, 
+                32.712576
+              ], 
+              [
+                -91.063946, 
+                32.702926
+              ], 
+              [
+                -91.076061, 
+                32.693751
+              ], 
+              [
+                -91.098762, 
+                32.685291
+              ], 
+              [
+                -91.118258, 
+                32.674075
+              ], 
+              [
+                -91.152081, 
+                32.641508
+              ], 
+              [
+                -91.153821, 
+                32.631282
+              ], 
+              [
+                -91.151318, 
+                32.615919
+              ], 
+              [
+                -91.146204, 
+                32.604144
+              ], 
+              [
+                -91.141148, 
+                32.597209
+              ], 
+              [
+                -91.127912, 
+                32.586493
+              ], 
+              [
+                -91.119854, 
+                32.584795
+              ], 
+              [
+                -91.104111, 
+                32.584657
+              ], 
+              [
+                -91.096774, 
+                32.576652
+              ], 
+              [
+                -91.090771, 
+                32.563978
+              ], 
+              [
+                -91.090611, 
+                32.562705
+              ], 
+              [
+                -91.089436, 
+                32.553306
+              ], 
+              [
+                -91.093741, 
+                32.549128
+              ], 
+              [
+                -91.097878, 
+                32.544752
+              ], 
+              [
+                -91.116708, 
+                32.500139
+              ], 
+              [
+                -91.116008, 
+                32.48314
+              ], 
+              [
+                -91.108808, 
+                32.47204
+              ], 
+              [
+                -91.095308, 
+                32.458741
+              ], 
+              [
+                -91.070207, 
+                32.445141
+              ], 
+              [
+                -91.052907, 
+                32.438442
+              ], 
+              [
+                -91.029606, 
+                32.433542
+              ], 
+              [
+                -90.99408, 
+                32.403862
+              ], 
+              [
+                -91.004506, 
+                32.368144
+              ], 
+              [
+                -91.003506, 
+                32.362145
+              ], 
+              [
+                -91.000106, 
+                32.357695
+              ], 
+              [
+                -90.986672, 
+                32.35176
+              ], 
+              [
+                -90.912363, 
+                32.339454
+              ], 
+              [
+                -90.901511, 
+                32.337864
+              ], 
+              [
+                -90.898588, 
+                32.329094
+              ], 
+              [
+                -90.905173, 
+                32.315497
+              ], 
+              [
+                -91.004557, 
+                32.215381
+              ], 
+              [
+                -91.006306, 
+                32.22415
+              ], 
+              [
+                -91.021507, 
+                32.236149
+              ], 
+              [
+                -91.039007, 
+                32.242349
+              ], 
+              [
+                -91.046507, 
+                32.241149
+              ], 
+              [
+                -91.122602, 
+                32.216929
+              ], 
+              [
+                -91.133587, 
+                32.213432
+              ], 
+              [
+                -91.158026, 
+                32.201956
+              ], 
+              [
+                -91.164171, 
+                32.196888
+              ], 
+              [
+                -91.171046, 
+                32.176526
+              ], 
+              [
+                -91.174552, 
+                32.154978
+              ], 
+              [
+                -91.171702, 
+                32.14425
+              ], 
+              [
+                -91.165452, 
+                32.13429
+              ], 
+              [
+                -91.162822, 
+                32.132694
+              ], 
+              [
+                -91.131403, 
+                32.126213
+              ], 
+              [
+                -91.067004, 
+                32.132144
+              ], 
+              [
+                -91.057487, 
+                32.135515
+              ], 
+              [
+                -91.052342, 
+                32.137337
+              ], 
+              [
+                -91.046615, 
+                32.138768
+              ], 
+              [
+                -91.040531, 
+                32.137337
+              ], 
+              [
+                -91.034447, 
+                32.134832
+              ], 
+              [
+                -91.030152, 
+                32.129821
+              ], 
+              [
+                -91.026931, 
+                32.123737
+              ], 
+              [
+                -91.027125, 
+                32.120434
+              ], 
+              [
+                -91.027535, 
+                32.113431
+              ], 
+              [
+                -91.027946, 
+                32.112722
+              ], 
+              [
+                -91.034707, 
+                32.101053
+              ], 
+              [
+                -91.128009, 
+                31.985857
+              ], 
+              [
+                -91.248144, 
+                31.869848
+              ], 
+              [
+                -91.293413, 
+                31.86016
+              ], 
+              [
+                -91.326914, 
+                31.854961
+              ], 
+              [
+                -91.338414, 
+                31.851261
+              ], 
+              [
+                -91.345714, 
+                31.842861
+              ], 
+              [
+                -91.359514, 
+                31.799362
+              ], 
+              [
+                -91.363714, 
+                31.780363
+              ], 
+              [
+                -91.365614, 
+                31.760763
+              ], 
+              [
+                -91.365084, 
+                31.752743
+              ], 
+              [
+                -91.369375, 
+                31.746903
+              ], 
+              [
+                -91.379935, 
+                31.733013
+              ], 
+              [
+                -91.397915, 
+                31.709364
+              ], 
+              [
+                -91.400115, 
+                31.688164
+              ], 
+              [
+                -91.398059, 
+                31.655922
+              ], 
+              [
+                -91.404668, 
+                31.637898
+              ], 
+              [
+                -91.42209, 
+                31.63129
+              ], 
+              [
+                -91.441315, 
+                31.63129
+              ], 
+              [
+                -91.45273, 
+                31.63129
+              ], 
+              [
+                -91.464746, 
+                31.628886
+              ], 
+              [
+                -91.474959, 
+                31.621677
+              ], 
+              [
+                -91.477963, 
+                31.610863
+              ], 
+              [
+                -91.477963, 
+                31.604855
+              ], 
+              [
+                -91.477963, 
+                31.598247
+              ], 
+              [
+                -91.477362, 
+                31.592239
+              ], 
+              [
+                -91.470754, 
+                31.58563
+              ], 
+              [
+                -91.458679, 
+                31.583226
+              ], 
+              [
+                -91.44862, 
+                31.583032
+              ], 
+              [
+                -91.437711, 
+                31.580824
+              ], 
+              [
+                -91.425094, 
+                31.57782
+              ], 
+              [
+                -91.415482, 
+                31.567006
+              ], 
+              [
+                -91.416683, 
+                31.561599
+              ], 
+              [
+                -91.422691, 
+                31.55439
+              ], 
+              [
+                -91.437616, 
+                31.546166
+              ], 
+              [
+                -91.450017, 
+                31.539666
+              ], 
+              [
+                -91.479718, 
+                31.530366
+              ], 
+              [
+                -91.511217, 
+                31.532612
+              ], 
+              [
+                -91.51581, 
+                31.530894
+              ], 
+              [
+                -91.52292, 
+                31.519841
+              ], 
+              [
+                -91.51513, 
+                31.449206
+              ], 
+              [
+                -91.510356, 
+                31.438928
+              ], 
+              [
+                -91.505301, 
+                31.432945
+              ], 
+              [
+                -91.500406, 
+                31.419008
+              ], 
+              [
+                -91.505093, 
+                31.400933
+              ], 
+              [
+                -91.513795, 
+                31.386875
+              ], 
+              [
+                -91.525386, 
+                31.378904
+              ], 
+              [
+                -91.541242, 
+                31.35675
+              ], 
+              [
+                -91.539904, 
+                31.337336
+              ], 
+              [
+                -91.531201, 
+                31.326625
+              ], 
+              [
+                -91.51982, 
+                31.311228
+              ], 
+              [
+                -91.508858, 
+                31.291644
+              ], 
+              [
+                -91.515614, 
+                31.27821
+              ], 
+              [
+                -91.522397, 
+                31.273423
+              ], 
+              [
+                -91.547588, 
+                31.264444
+              ], 
+              [
+                -91.574493, 
+                31.261289
+              ], 
+              [
+                -91.59849, 
+                31.205485
+              ], 
+              [
+                -91.599965, 
+                31.192318
+              ], 
+              [
+                -91.604197, 
+                31.154545
+              ], 
+              [
+                -91.577373, 
+                31.078179
+              ], 
+              [
+                -91.56415, 
+                31.06683
+              ], 
+              [
+                -91.561283, 
+                31.060906
+              ], 
+              [
+                -91.559907, 
+                31.054119
+              ], 
+              [
+                -91.562468, 
+                31.043213
+              ], 
+              [
+                -91.571695, 
+                31.029782
+              ], 
+              [
+                -91.58467, 
+                31.020185
+              ], 
+              [
+                -91.636942, 
+                30.999416
+              ], 
+              [
+                -91.625118, 
+                30.999167
+              ], 
+              [
+                -91.538727, 
+                30.999388
+              ], 
+              [
+                -91.425749, 
+                30.999007
+              ], 
+              [
+                -91.423621, 
+                30.998984
+              ], 
+              [
+                -91.224839, 
+                30.999183
+              ], 
+              [
+                -91.224068, 
+                30.999183
+              ], 
+              [
+                -91.176209, 
+                30.999144
+              ], 
+              [
+                -91.17614, 
+                30.999144
+              ], 
+              [
+                -91.108291, 
+                30.99888
+              ], 
+              [
+                -91.108114, 
+                30.998857
+              ], 
+              [
+                -91.080814, 
+                30.998909
+              ], 
+              [
+                -91.06827, 
+                30.99892
+              ], 
+              [
+                -91.060217, 
+                30.998935
+              ], 
+              [
+                -90.826027, 
+                30.99936
+              ], 
+              [
+                -90.825829, 
+                30.99936
+              ], 
+              [
+                -90.783745, 
+                30.999447
+              ], 
+              [
+                -90.779858, 
+                30.999457
+              ], 
+              [
+                -90.775981, 
+                30.999491
+              ], 
+              [
+                -90.769333, 
+                30.999374
+              ], 
+              [
+                -90.758775, 
+                30.999583
+              ], 
+              [
+                -90.734552, 
+                30.999222
+              ], 
+              [
+                -90.734473, 
+                30.999214
+              ], 
+              [
+                -90.651193, 
+                30.99951
+              ], 
+              [
+                -90.648721, 
+                30.999486
+              ], 
+              [
+                -90.588676, 
+                30.99965
+              ], 
+              [
+                -90.587373, 
+                30.999604
+              ], 
+              [
+                -90.584448, 
+                30.999698
+              ], 
+              [
+                -90.583518, 
+                30.999698
+              ], 
+              [
+                -90.567195, 
+                30.999733
+              ], 
+              [
+                -90.547615, 
+                30.999723
+              ], 
+              [
+                -90.486749, 
+                30.999693
+              ], 
+              [
+                -90.485876, 
+                30.99974
+              ], 
+              [
+                -90.477284, 
+                30.999717
+              ], 
+              [
+                -90.475928, 
+                30.99974
+              ], 
+              [
+                -90.474094, 
+                30.999798
+              ], 
+              [
+                -90.442479, 
+                30.999722
+              ], 
+              [
+                -90.441725, 
+                30.999729
+              ], 
+              [
+                -90.437351, 
+                30.99973
+              ], 
+              [
+                -90.426849, 
+                30.999776
+              ], 
+              [
+                -90.422117, 
+                30.99981
+              ], 
+              [
+                -90.369371, 
+                31.000335
+              ], 
+              [
+                -90.347241, 
+                31.000359
+              ], 
+              [
+                -90.34723, 
+                31.000359
+              ], 
+              [
+                -90.346007, 
+                31.000363
+              ], 
+              [
+                -90.259555, 
+                31.000657
+              ], 
+              [
+                -90.164676, 
+                31.00098
+              ], 
+              [
+                -90.164278, 
+                31.001025
+              ], 
+              [
+                -90.131395, 
+                31.000924
+              ], 
+              [
+                -90.128406, 
+                31.001047
+              ], 
+              [
+                -90.050706, 
+                31.001215
+              ], 
+              [
+                -90.029574, 
+                31.00119
+              ], 
+              [
+                -90.022185, 
+                31.001302
+              ], 
+              [
+                -90.005332, 
+                31.001364
+              ], 
+              [
+                -89.97543, 
+                31.001692
+              ], 
+              [
+                -89.972802, 
+                31.001392
+              ], 
+              [
+                -89.927161, 
+                31.001437
+              ], 
+              [
+                -89.923119, 
+                31.001446
+              ], 
+              [
+                -89.897516, 
+                31.001913
+              ], 
+              [
+                -89.892708, 
+                31.001759
+              ], 
+              [
+                -89.856862, 
+                31.002075
+              ], 
+              [
+                -89.835908, 
+                31.002059
+              ], 
+              [
+                -89.835542, 
+                31.002059
+              ], 
+              [
+                -89.824617, 
+                31.00206
+              ], 
+              [
+                -89.816429, 
+                31.002084
+              ], 
+              [
+                -89.752642, 
+                31.001853
+              ], 
+              [
+                -89.732504, 
+                31.004831
+              ], 
+              [
+                -89.728147, 
+                31.002431
+              ], 
+              [
+                -89.728148, 
+                31.0023
+              ], 
+              [
+                -89.728382, 
+                30.971141
+              ], 
+              [
+                -89.744789, 
+                30.918933
+              ], 
+              [
+                -89.756543, 
+                30.900431
+              ], 
+              [
+                -89.770931, 
+                30.899432
+              ], 
+              [
+                -89.77341, 
+                30.897693
+              ], 
+              [
+                -89.789863, 
+                30.851527
+              ], 
+              [
+                -89.826175, 
+                30.736594
+              ], 
+              [
+                -89.842596, 
+                30.666038
+              ], 
+              [
+                -89.842585, 
+                30.666005
+              ], 
+              [
+                -89.823384, 
+                30.608535
+              ], 
+              [
+                -89.806843, 
+                30.572039
+              ], 
+              [
+                -89.76057, 
+                30.515761
+              ], 
+              [
+                -89.732577, 
+                30.492502
+              ], 
+              [
+                -89.724614, 
+                30.491902
+              ], 
+              [
+                -89.69058, 
+                30.458773
+              ], 
+              [
+                -89.68341, 
+                30.451793
+              ], 
+              [
+                -89.629941, 
+                30.339449
+              ], 
+              [
+                -89.629877, 
+                30.321017
+              ], 
+              [
+                -89.640694, 
+                30.301313
+              ], 
+              [
+                -89.643575, 
+                30.293099
+              ], 
+              [
+                -89.64344, 
+                30.287682
+              ], 
+              [
+                -89.607655, 
+                30.217096
+              ], 
+              [
+                -89.580754, 
+                30.186197
+              ], 
+              [
+                -89.572654, 
+                30.180897
+              ], 
+              [
+                -89.524504, 
+                30.180753
+              ], 
+              [
+                -89.531213, 
+                30.177099
+              ], 
+              [
+                -89.537493, 
+                30.171745
+              ], 
+              [
+                -89.555013, 
+                30.170798
+              ], 
+              [
+                -89.562825, 
+                30.168667
+              ], 
+              [
+                -89.56827, 
+                30.163932
+              ], 
+              [
+                -89.572093, 
+                30.160362
+              ], 
+              [
+                -89.587062, 
+                30.150648
+              ], 
+              [
+                -89.595021, 
+                30.149891
+              ], 
+              [
+                -89.598027, 
+                30.152409
+              ], 
+              [
+                -89.617542, 
+                30.156422
+              ], 
+              [
+                -89.62288, 
+                30.152368
+              ], 
+              [
+                -89.625053, 
+                30.150717
+              ], 
+              [
+                -89.640989, 
+                30.138612
+              ], 
+              [
+                -89.64455, 
+                30.134108
+              ], 
+              [
+                -89.650467, 
+                30.126625
+              ], 
+              [
+                -89.656986, 
+                30.118381
+              ], 
+              [
+                -89.658594, 
+                30.117364
+              ], 
+              [
+                -89.668164, 
+                30.111311
+              ], 
+              [
+                -89.668638, 
+                30.111011
+              ], 
+              [
+                -89.669157, 
+                30.110683
+              ], 
+              [
+                -89.669182, 
+                30.110667
+              ], 
+              [
+                -89.672881, 
+                30.11049
+              ], 
+              [
+                -89.674124, 
+                30.11043
+              ], 
+              [
+                -89.674633, 
+                30.110406
+              ], 
+              [
+                -89.674956, 
+                30.110212
+              ], 
+              [
+                -89.675762, 
+                30.109728
+              ], 
+              [
+                -89.676117, 
+                30.109515
+              ], 
+              [
+                -89.678156, 
+                30.10829
+              ], 
+              [
+                -89.678163, 
+                30.108286
+              ], 
+              [
+                -89.678293, 
+                30.107746
+              ], 
+              [
+                -89.678457, 
+                30.107059
+              ], 
+              [
+                -89.678499, 
+                30.106886
+              ], 
+              [
+                -89.679655, 
+                30.102067
+              ], 
+              [
+                -89.679823, 
+                30.101367
+              ], 
+              [
+                -89.679838, 
+                30.101304
+              ], 
+              [
+                -89.680042, 
+                30.100452
+              ], 
+              [
+                -89.68035, 
+                30.099171
+              ], 
+              [
+                -89.680485, 
+                30.098605
+              ], 
+              [
+                -89.681265, 
+                30.095355
+              ], 
+              [
+                -89.681906, 
+                30.092682
+              ], 
+              [
+                -89.682057, 
+                30.092052
+              ], 
+              [
+                -89.682181, 
+                30.091536
+              ], 
+              [
+                -89.682181, 
+                30.091531
+              ], 
+              [
+                -89.682277, 
+                30.090565
+              ], 
+              [
+                -89.68228, 
+                30.090531
+              ], 
+              [
+                -89.682331, 
+                30.090015
+              ], 
+              [
+                -89.682371, 
+                30.089607
+              ], 
+              [
+                -89.682393, 
+                30.089391
+              ], 
+              [
+                -89.682409, 
+                30.089225
+              ], 
+              [
+                -89.682691, 
+                30.086365
+              ], 
+              [
+                -89.683051, 
+                30.082718
+              ], 
+              [
+                -89.683168, 
+                30.08153
+              ], 
+              [
+                -89.683712, 
+                30.076018
+              ], 
+              [
+                -89.697556, 
+                30.070842
+              ], 
+              [
+                -89.698461, 
+                30.070504
+              ], 
+              [
+                -89.698496, 
+                30.070491
+              ], 
+              [
+                -89.698909, 
+                30.070451
+              ], 
+              [
+                -89.699144, 
+                30.070428
+              ], 
+              [
+                -89.699629, 
+                30.070381
+              ], 
+              [
+                -89.711848, 
+                30.069194
+              ], 
+              [
+                -89.712942, 
+                30.069088
+              ], 
+              [
+                -89.713003, 
+                30.069061
+              ], 
+              [
+                -89.714085, 
+                30.068582
+              ], 
+              [
+                -89.714827, 
+                30.068253
+              ], 
+              [
+                -89.715494, 
+                30.067958
+              ], 
+              [
+                -89.715884, 
+                30.067785
+              ], 
+              [
+                -89.716237, 
+                30.067628
+              ], 
+              [
+                -89.716425, 
+                30.067545
+              ], 
+              [
+                -89.71675, 
+                30.067402
+              ], 
+              [
+                -89.716887, 
+                30.067341
+              ], 
+              [
+                -89.721992, 
+                30.06508
+              ], 
+              [
+                -89.724433, 
+                30.063999
+              ], 
+              [
+                -89.72633, 
+                30.063158
+              ], 
+              [
+                -89.727453, 
+                30.062661
+              ], 
+              [
+                -89.728026, 
+                30.061841
+              ], 
+              [
+                -89.72957, 
+                30.059628
+              ], 
+              [
+                -89.72968, 
+                30.05947
+              ], 
+              [
+                -89.72979, 
+                30.059314
+              ], 
+              [
+                -89.729911, 
+                30.059139
+              ], 
+              [
+                -89.73099, 
+                30.057594
+              ], 
+              [
+                -89.730999, 
+                30.057581
+              ], 
+              [
+                -89.731208, 
+                30.054558
+              ], 
+              [
+                -89.731428, 
+                30.051377
+              ], 
+              [
+                -89.731452, 
+                30.05104
+              ], 
+              [
+                -89.731545, 
+                30.049694
+              ], 
+              [
+                -89.731545, 
+                30.049691
+              ], 
+              [
+                -89.731544, 
+                30.04969
+              ], 
+              [
+                -89.7163, 
+                30.02811
+              ], 
+              [
+                -89.7163, 
+                30.028106
+              ], 
+              [
+                -89.716301, 
+                30.028088
+              ], 
+              [
+                -89.716328, 
+                30.027415
+              ], 
+              [
+                -89.716336, 
+                30.02723
+              ], 
+              [
+                -89.716358, 
+                30.026686
+              ], 
+              [
+                -89.716377, 
+                30.026222
+              ], 
+              [
+                -89.724649, 
+                30.022454
+              ], 
+              [
+                -89.724669, 
+                30.022453
+              ], 
+              [
+                -89.72576, 
+                30.022403
+              ], 
+              [
+                -89.733323, 
+                30.022054
+              ], 
+              [
+                -89.734361, 
+                30.022884
+              ], 
+              [
+                -89.739028, 
+                30.026618
+              ], 
+              [
+                -89.739574, 
+                30.027055
+              ], 
+              [
+                -89.740886, 
+                30.028104
+              ], 
+              [
+                -89.745827, 
+                30.032056
+              ], 
+              [
+                -89.746313, 
+                30.032445
+              ], 
+              [
+                -89.746505, 
+                30.032599
+              ], 
+              [
+                -89.746506, 
+                30.0326
+              ], 
+              [
+                -89.757138, 
+                30.03865
+              ], 
+              [
+                -89.763216, 
+                30.042108
+              ], 
+              [
+                -89.782534, 
+                30.045372
+              ], 
+              [
+                -89.78463, 
+                30.045253
+              ], 
+              [
+                -89.813684, 
+                30.043605
+              ], 
+              [
+                -89.818561, 
+                30.043328
+              ], 
+              [
+                -89.829762, 
+                30.033275
+              ], 
+              [
+                -89.830442, 
+                30.032664
+              ], 
+              [
+                -89.832213, 
+                30.031075
+              ], 
+              [
+                -89.832965, 
+                30.0304
+              ], 
+              [
+                -89.833794, 
+                30.029656
+              ], 
+              [
+                -89.834644, 
+                30.028893
+              ], 
+              [
+                -89.835202, 
+                30.028393
+              ], 
+              [
+                -89.839926, 
+                30.024153
+              ], 
+              [
+                -89.839933, 
+                30.024146
+              ], 
+              [
+                -89.840963, 
+                30.022995
+              ], 
+              [
+                -89.841739, 
+                30.022127
+              ], 
+              [
+                -89.854533, 
+                30.007821
+              ], 
+              [
+                -89.857558, 
+                30.004439
+              ], 
+              [
+                -89.852312, 
+                29.97765
+              ], 
+              [
+                -89.844202, 
+                29.955645
+              ], 
+              [
+                -89.8385, 
+                29.945816
+              ], 
+              [
+                -89.829023, 
+                29.939228
+              ], 
+              [
+                -89.81803, 
+                29.934145
+              ], 
+              [
+                -89.804463, 
+                29.932588
+              ], 
+              [
+                -89.775459, 
+                29.937416
+              ], 
+              [
+                -89.748492, 
+                29.945831
+              ], 
+              [
+                -89.727933, 
+                29.95878
+              ], 
+              [
+                -89.719067, 
+                29.953699
+              ], 
+              [
+                -89.71291, 
+                29.946349
+              ], 
+              [
+                -89.736311, 
+                29.936263
+              ], 
+              [
+                -89.742727, 
+                29.935894
+              ], 
+              [
+                -89.746273, 
+                29.928221
+              ], 
+              [
+                -89.742479, 
+                29.90817
+              ], 
+              [
+                -89.711158, 
+                29.879287
+              ], 
+              [
+                -89.692004, 
+                29.868722
+              ], 
+              [
+                -89.671555, 
+                29.867535
+              ], 
+              [
+                -89.660568, 
+                29.862909
+              ], 
+              [
+                -89.638016, 
+                29.864065
+              ], 
+              [
+                -89.613159, 
+                29.87216
+              ], 
+              [
+                -89.598129, 
+                29.881409
+              ], 
+              [
+                -89.591194, 
+                29.897018
+              ], 
+              [
+                -89.592346, 
+                29.917253
+              ], 
+              [
+                -89.583099, 
+                29.931705
+              ], 
+              [
+                -89.583099, 
+                29.945581
+              ], 
+              [
+                -89.574997, 
+                29.959455
+              ], 
+              [
+                -89.574425, 
+                29.983738
+              ], 
+              [
+                -89.58136, 
+                29.994722
+              ], 
+              [
+                -89.571533, 
+                29.999926
+              ], 
+              [
+                -89.551292, 
+                30.005709
+              ], 
+              [
+                -89.501587, 
+                30.034037
+              ], 
+              [
+                -89.494064, 
+                30.040972
+              ], 
+              [
+                -89.494637, 
+                30.0508
+              ], 
+              [
+                -89.499275, 
+                30.058893
+              ], 
+              [
+                -89.493484, 
+                30.072191
+              ], 
+              [
+                -89.481926, 
+                30.079128
+              ], 
+              [
+                -89.458946, 
+                30.06345
+              ], 
+              [
+                -89.444618, 
+                30.060959
+              ], 
+              [
+                -89.429047, 
+                30.05224
+              ], 
+              [
+                -89.418465, 
+                30.049747
+              ], 
+              [
+                -89.372375, 
+                30.054729
+              ], 
+              [
+                -89.368637, 
+                30.047256
+              ], 
+              [
+                -89.372375, 
+                30.036671
+              ], 
+              [
+                -89.381096, 
+                30.030441
+              ], 
+              [
+                -89.393555, 
+                30.029818
+              ], 
+              [
+                -89.41597, 
+                30.020477
+              ], 
+              [
+                -89.422813, 
+                30.015495
+              ], 
+              [
+                -89.432785, 
+                30.008022
+              ], 
+              [
+                -89.433411, 
+                29.991205
+              ], 
+              [
+                -89.432785, 
+                29.978752
+              ], 
+              [
+                -89.40538, 
+                29.965672
+              ], 
+              [
+                -89.393555, 
+                29.966295
+              ], 
+              [
+                -89.379227, 
+                29.963804
+              ], 
+              [
+                -89.378601, 
+                29.919588
+              ], 
+              [
+                -89.368019, 
+                29.911491
+              ], 
+              [
+                -89.331894, 
+                29.91585
+              ], 
+              [
+                -89.315453, 
+                29.923208
+              ], 
+              [
+                -89.283562, 
+                29.97332
+              ], 
+              [
+                -89.273315, 
+                29.99382
+              ], 
+              [
+                -89.250534, 
+                30.002361
+              ], 
+              [
+                -89.243706, 
+                29.997236
+              ], 
+              [
+                -89.249969, 
+                29.975597
+              ], 
+              [
+                -89.218071, 
+                29.97275
+              ], 
+              [
+                -89.22377, 
+                29.961929
+              ], 
+              [
+                -89.231178, 
+                29.925484
+              ], 
+              [
+                -89.244843, 
+                29.93004
+              ], 
+              [
+                -89.263062, 
+                29.929472
+              ], 
+              [
+                -89.280144, 
+                29.924915
+              ], 
+              [
+                -89.318306, 
+                29.898149
+              ], 
+              [
+                -89.322289, 
+                29.887333
+              ], 
+              [
+                -89.311462, 
+                29.881636
+              ], 
+              [
+                -89.289253, 
+                29.880499
+              ], 
+              [
+                -89.272179, 
+                29.886763
+              ], 
+              [
+                -89.241425, 
+                29.88961
+              ], 
+              [
+                -89.236298, 
+                29.886763
+              ], 
+              [
+                -89.236298, 
+                29.877081
+              ], 
+              [
+                -89.254517, 
+                29.864552
+              ], 
+              [
+                -89.269897, 
+                29.859997
+              ], 
+              [
+                -89.294952, 
+                29.857149
+              ], 
+              [
+                -89.317726, 
+                29.850885
+              ], 
+              [
+                -89.363289, 
+                29.84576
+              ], 
+              [
+                -89.383789, 
+                29.838928
+              ], 
+              [
+                -89.383217, 
+                29.830385
+              ], 
+              [
+                -89.372971, 
+                29.82526
+              ], 
+              [
+                -89.345634, 
+                29.820135
+              ], 
+              [
+                -89.342781, 
+                29.798496
+              ], 
+              [
+                -89.33197, 
+                29.790524
+              ], 
+              [
+                -89.318306, 
+                29.788815
+              ], 
+              [
+                -89.293251, 
+                29.803053
+              ], 
+              [
+                -89.277298, 
+                29.807608
+              ], 
+              [
+                -89.277298, 
+                29.799635
+              ], 
+              [
+                -89.284134, 
+                29.795649
+              ], 
+              [
+                -89.284706, 
+                29.770021
+              ], 
+              [
+                -89.269325, 
+                29.760912
+              ], 
+              [
+                -89.271034, 
+                29.756355
+              ], 
+              [
+                -89.305199, 
+                29.756926
+              ], 
+              [
+                -89.316025, 
+                29.760912
+              ], 
+              [
+                -89.325134, 
+                29.772301
+              ], 
+              [
+                -89.337662, 
+                29.779135
+              ], 
+              [
+                -89.354179, 
+                29.781412
+              ], 
+              [
+                -89.367271, 
+                29.775148
+              ], 
+              [
+                -89.386063, 
+                29.788815
+              ], 
+              [
+                -89.394608, 
+                29.784828
+              ], 
+              [
+                -89.399162, 
+                29.770592
+              ], 
+              [
+                -89.414536, 
+                29.752371
+              ], 
+              [
+                -89.428207, 
+                29.74155
+              ], 
+              [
+                -89.42421, 
+                29.697638
+              ], 
+              [
+                -89.44812, 
+                29.703316
+              ], 
+              [
+                -89.471992, 
+                29.718597
+              ], 
+              [
+                -89.486961, 
+                29.72592
+              ], 
+              [
+                -89.506065, 
+                29.731651
+              ], 
+              [
+                -89.530258, 
+                29.74375
+              ], 
+              [
+                -89.540131, 
+                29.74375
+              ], 
+              [
+                -89.560181, 
+                29.735472
+              ], 
+              [
+                -89.572922, 
+                29.746616
+              ], 
+              [
+                -89.598068, 
+                29.74757
+              ], 
+              [
+                -89.634048, 
+                29.752981
+              ], 
+              [
+                -89.651237, 
+                29.749479
+              ], 
+              [
+                -89.649651, 
+                29.719872
+              ], 
+              [
+                -89.644562, 
+                29.710957
+              ], 
+              [
+                -89.618446, 
+                29.700768
+              ], 
+              [
+                -89.59903, 
+                29.704908
+              ], 
+              [
+                -89.592979, 
+                29.702042
+              ], 
+              [
+                -89.599663, 
+                29.690262
+              ], 
+              [
+                -89.596802, 
+                29.684212
+              ], 
+              [
+                -89.573883, 
+                29.674025
+              ], 
+              [
+                -89.55732, 
+                29.670204
+              ], 
+              [
+                -89.53376, 
+                29.670204
+              ], 
+              [
+                -89.487915, 
+                29.630405
+              ], 
+              [
+                -89.485367, 
+                29.624357
+              ], 
+              [
+                -89.486709, 
+                29.621003
+              ], 
+              [
+                -89.486931, 
+                29.620447
+              ], 
+              [
+                -89.504738, 
+                29.631508
+              ], 
+              [
+                -89.523018, 
+                29.639427
+              ], 
+              [
+                -89.535202, 
+                29.648567
+              ], 
+              [
+                -89.583336, 
+                29.652834
+              ], 
+              [
+                -89.608925, 
+                29.657707
+              ], 
+              [
+                -89.621109, 
+                29.657101
+              ], 
+              [
+                -89.62355, 
+                29.662584
+              ], 
+              [
+                -89.632698, 
+                29.671724
+              ], 
+              [
+                -89.644272, 
+                29.675381
+              ], 
+              [
+                -89.64975, 
+                29.672941
+              ], 
+              [
+                -89.641228, 
+                29.647961
+              ], 
+              [
+                -89.641228, 
+                29.635773
+              ], 
+              [
+                -89.647324, 
+                29.625414
+              ], 
+              [
+                -89.657677, 
+                29.624195
+              ], 
+              [
+                -89.674736, 
+                29.626633
+              ], 
+              [
+                -89.684486, 
+                29.624804
+              ], 
+              [
+                -89.688141, 
+                29.615055
+              ], 
+              [
+                -89.684486, 
+                29.602867
+              ], 
+              [
+                -89.671082, 
+                29.588243
+              ], 
+              [
+                -89.668648, 
+                29.580322
+              ], 
+              [
+                -89.684486, 
+                29.563263
+              ], 
+              [
+                -89.684486, 
+                29.551073
+              ], 
+              [
+                -89.681092, 
+                29.534487
+              ], 
+              [
+                -89.69623, 
+                29.525004
+              ], 
+              [
+                -89.699698, 
+                29.523423
+              ], 
+              [
+                -89.700845, 
+                29.520785
+              ], 
+              [
+                -89.700501, 
+                29.515967
+              ], 
+              [
+                -89.693877, 
+                29.508559
+              ], 
+              [
+                -89.665813, 
+                29.49002
+              ], 
+              [
+                -89.644039, 
+                29.492343
+              ], 
+              [
+                -89.63533, 
+                29.489294
+              ], 
+              [
+                -89.617558, 
+                29.468298
+              ], 
+              [
+                -89.596533, 
+                29.456303
+              ], 
+              [
+                -89.592474, 
+                29.449822
+              ], 
+              [
+                -89.589536, 
+                29.437662
+              ], 
+              [
+                -89.577096, 
+                29.433692
+              ], 
+              [
+                -89.574635, 
+                29.435734
+              ], 
+              [
+                -89.574653, 
+                29.4411
+              ], 
+              [
+                -89.548686, 
+                29.465723
+              ], 
+              [
+                -89.528429, 
+                29.454702
+              ], 
+              [
+                -89.53215, 
+                29.434567
+              ], 
+              [
+                -89.531943, 
+                29.425679
+              ], 
+              [
+                -89.518368, 
+                29.40023
+              ], 
+              [
+                -89.508551, 
+                29.386168
+              ], 
+              [
+                -89.505038, 
+                29.38604
+              ], 
+              [
+                -89.487308, 
+                29.393346
+              ], 
+              [
+                -89.484354, 
+                29.397471
+              ], 
+              [
+                -89.482318, 
+                29.406222
+              ], 
+              [
+                -89.47714, 
+                29.411241
+              ], 
+              [
+                -89.470142, 
+                29.401471
+              ], 
+              [
+                -89.457303, 
+                29.393148
+              ], 
+              [
+                -89.42238, 
+                29.390628
+              ], 
+              [
+                -89.380001, 
+                29.391785
+              ], 
+              [
+                -89.373109, 
+                29.387175
+              ], 
+              [
+                -89.355528, 
+                29.381569
+              ], 
+              [
+                -89.340304, 
+                29.381412
+              ], 
+              [
+                -89.336589, 
+                29.378228
+              ], 
+              [
+                -89.347615, 
+                29.365
+              ], 
+              [
+                -89.350694, 
+                29.349544
+              ], 
+              [
+                -89.32317, 
+                29.343982
+              ], 
+              [
+                -89.303766, 
+                29.357455
+              ], 
+              [
+                -89.283028, 
+                29.356467
+              ], 
+              [
+                -89.272543, 
+                29.351195
+              ], 
+              [
+                -89.2653, 
+                29.345352
+              ], 
+              [
+                -89.257852, 
+                29.336872
+              ], 
+              [
+                -89.253545, 
+                29.322802
+              ], 
+              [
+                -89.24087, 
+                29.310081
+              ], 
+              [
+                -89.224192, 
+                29.313792
+              ], 
+              [
+                -89.223444, 
+                29.318066
+              ], 
+              [
+                -89.219734, 
+                29.324412
+              ], 
+              [
+                -89.204703, 
+                29.338674
+              ], 
+              [
+                -89.200389, 
+                29.344418
+              ], 
+              [
+                -89.200599, 
+                29.347672
+              ], 
+              [
+                -89.189354, 
+                29.345061
+              ], 
+              [
+                -89.179547, 
+                29.339608
+              ], 
+              [
+                -89.177351, 
+                29.33521
+              ], 
+              [
+                -89.178221, 
+                29.32697
+              ], 
+              [
+                -89.165015, 
+                29.303039
+              ], 
+              [
+                -89.157593, 
+                29.296691
+              ], 
+              [
+                -89.140275, 
+                29.291085
+              ], 
+              [
+                -89.134337, 
+                29.27934
+              ], 
+              [
+                -89.136979, 
+                29.275239
+              ], 
+              [
+                -89.129688, 
+                29.265632
+              ], 
+              [
+                -89.100106, 
+                29.25022
+              ], 
+              [
+                -89.096173, 
+                29.24293
+              ], 
+              [
+                -89.095544, 
+                29.238028
+              ], 
+              [
+                -89.098389, 
+                29.232963
+              ], 
+              [
+                -89.105833, 
+                29.231608
+              ], 
+              [
+                -89.106244, 
+                29.215912
+              ], 
+              [
+                -89.10065, 
+                29.206314
+              ], 
+              [
+                -89.090724, 
+                29.199992
+              ], 
+              [
+                -89.068265, 
+                29.204166
+              ], 
+              [
+                -89.067371, 
+                29.208636
+              ], 
+              [
+                -89.029103, 
+                29.220956
+              ], 
+              [
+                -89.02185, 
+                29.218162
+              ], 
+              [
+                -89.015192, 
+                29.211561
+              ], 
+              [
+                -89.000674, 
+                29.180091
+              ], 
+              [
+                -89.00529, 
+                29.164949
+              ], 
+              [
+                -89.013254, 
+                29.16328
+              ], 
+              [
+                -89.018344, 
+                29.165046
+              ], 
+              [
+                -89.024269, 
+                29.170043
+              ], 
+              [
+                -89.043919, 
+                29.162528
+              ], 
+              [
+                -89.047233, 
+                29.157833
+              ], 
+              [
+                -89.03873, 
+                29.14238
+              ], 
+              [
+                -89.032004, 
+                29.144747
+              ], 
+              [
+                -89.024149, 
+                29.137298
+              ], 
+              [
+                -89.023942, 
+                29.1337
+              ], 
+              [
+                -89.026031, 
+                29.130126
+              ], 
+              [
+                -89.051953, 
+                29.106554
+              ], 
+              [
+                -89.055475, 
+                29.084167
+              ], 
+              [
+                -89.062335, 
+                29.070234
+              ], 
+              [
+                -89.09126, 
+                29.066931
+              ], 
+              [
+                -89.098068, 
+                29.067984
+              ], 
+              [
+                -89.105009, 
+                29.073641
+              ], 
+              [
+                -89.121542, 
+                29.069074
+              ], 
+              [
+                -89.143453, 
+                29.047591
+              ], 
+              [
+                -89.156339, 
+                29.028782
+              ], 
+              [
+                -89.162, 
+                29.01586
+              ], 
+              [
+                -89.162326, 
+                29.011713
+              ], 
+              [
+                -89.164788, 
+                29.008703
+              ], 
+              [
+                -89.16985, 
+                29.008703
+              ], 
+              [
+                -89.175732, 
+                29.012123
+              ], 
+              [
+                -89.186061, 
+                29.017993
+              ], 
+              [
+                -89.18215, 
+                29.025486
+              ], 
+              [
+                -89.189893, 
+                29.032635
+              ], 
+              [
+                -89.197871, 
+                29.029701
+              ], 
+              [
+                -89.202563, 
+                29.031603
+              ], 
+              [
+                -89.211144, 
+                29.040813
+              ], 
+              [
+                -89.216101, 
+                29.056371
+              ], 
+              [
+                -89.215531, 
+                29.06141
+              ], 
+              [
+                -89.217201, 
+                29.067275
+              ], 
+              [
+                -89.225865, 
+                29.07866
+              ], 
+              [
+                -89.23631, 
+                29.084605
+              ], 
+              [
+                -89.254726, 
+                29.083261
+              ], 
+              [
+                -89.257283, 
+                29.081086
+              ], 
+              [
+                -89.256869, 
+                29.0738
+              ], 
+              [
+                -89.25364, 
+                29.064954
+              ], 
+              [
+                -89.259354, 
+                29.058358
+              ], 
+              [
+                -89.283215, 
+                29.053325
+              ], 
+              [
+                -89.29109, 
+                29.053097
+              ], 
+              [
+                -89.304888, 
+                29.046379
+              ], 
+              [
+                -89.315389, 
+                29.039081
+              ], 
+              [
+                -89.318102, 
+                29.035342
+              ], 
+              [
+                -89.315182, 
+                29.032662
+              ], 
+              [
+                -89.32485, 
+                29.013805
+              ], 
+              [
+                -89.335228, 
+                29.015003
+              ], 
+              [
+                -89.338249, 
+                29.012935
+              ], 
+              [
+                -89.383814, 
+                28.947434
+              ], 
+              [
+                -89.41148, 
+                28.925011
+              ], 
+              [
+                -89.419865, 
+                28.929709
+              ], 
+              [
+                -89.412388, 
+                28.957504
+              ], 
+              [
+                -89.408157, 
+                28.965341
+              ], 
+              [
+                -89.398104, 
+                28.977016
+              ], 
+              [
+                -89.382106, 
+                28.981525
+              ], 
+              [
+                -89.375049, 
+                28.985368
+              ], 
+              [
+                -89.334735, 
+                29.040335
+              ], 
+              [
+                -89.339828, 
+                29.052221
+              ], 
+              [
+                -89.354798, 
+                29.072543
+              ], 
+              [
+                -89.374522, 
+                29.084174
+              ], 
+              [
+                -89.405654, 
+                29.086936
+              ], 
+              [
+                -89.411154, 
+                29.105838
+              ], 
+              [
+                -89.409371, 
+                29.127855
+              ], 
+              [
+                -89.417718, 
+                29.13869
+              ], 
+              [
+                -89.428965, 
+                29.14451
+              ], 
+              [
+                -89.432932, 
+                29.149023
+              ], 
+              [
+                -89.447472, 
+                29.178576
+              ], 
+              [
+                -89.455829, 
+                29.190991
+              ], 
+              [
+                -89.47231, 
+                29.20755
+              ], 
+              [
+                -89.482844, 
+                29.215053
+              ], 
+              [
+                -89.5366, 
+                29.236212
+              ], 
+              [
+                -89.606651, 
+                29.252023
+              ], 
+              [
+                -89.671781, 
+                29.289028
+              ], 
+              [
+                -89.697258, 
+                29.296679
+              ], 
+              [
+                -89.726162, 
+                29.304026
+              ], 
+              [
+                -89.782149, 
+                29.311132
+              ], 
+              [
+                -89.819859, 
+                29.310241
+              ], 
+              [
+                -89.850305, 
+                29.311768
+              ], 
+              [
+                -89.855109, 
+                29.334997
+              ], 
+              [
+                -89.853699, 
+                29.34064
+              ], 
+              [
+                -89.847124, 
+                29.349186
+              ], 
+              [
+                -89.835, 
+                29.359043
+              ], 
+              [
+                -89.820824, 
+                29.377486
+              ], 
+              [
+                -89.816916, 
+                29.384385
+              ], 
+              [
+                -89.816155, 
+                29.393518
+              ], 
+              [
+                -89.816916, 
+                29.398845
+              ], 
+              [
+                -89.819199, 
+                29.404173
+              ], 
+              [
+                -89.822243, 
+                29.4095
+              ], 
+              [
+                -89.826049, 
+                29.415589
+              ], 
+              [
+                -89.835392, 
+                29.418538
+              ], 
+              [
+                -89.843553, 
+                29.421677
+              ], 
+              [
+                -89.845075, 
+                29.434615
+              ], 
+              [
+                -89.836773, 
+                29.45404
+              ], 
+              [
+                -89.833659, 
+                29.456686
+              ], 
+              [
+                -89.833659, 
+                29.459731
+              ], 
+              [
+                -89.832898, 
+                29.463536
+              ], 
+              [
+                -89.833659, 
+                29.467341
+              ], 
+              [
+                -89.83442, 
+                29.470386
+              ], 
+              [
+                -89.840509, 
+                29.47343
+              ], 
+              [
+                -89.849642, 
+                29.477996
+              ], 
+              [
+                -89.86258, 
+                29.476474
+              ], 
+              [
+                -89.876224, 
+                29.472168
+              ], 
+              [
+                -89.902179, 
+                29.460011
+              ], 
+              [
+                -89.918999, 
+                29.444254
+              ], 
+              [
+                -89.932598, 
+                29.429288
+              ], 
+              [
+                -89.95543, 
+                29.428527
+              ], 
+              [
+                -89.96195, 
+                29.432874
+              ], 
+              [
+                -89.964563, 
+                29.434615
+              ], 
+              [
+                -89.972934, 
+                29.443748
+              ], 
+              [
+                -89.991961, 
+                29.463536
+              ], 
+              [
+                -90.01251, 
+                29.462775
+              ], 
+              [
+                -90.018598, 
+                29.45212
+              ], 
+              [
+                -90.022404, 
+                29.444509
+              ], 
+              [
+                -90.029466, 
+                29.432015
+              ], 
+              [
+                -90.032298, 
+                29.427005
+              ], 
+              [
+                -90.031536, 
+                29.412545
+              ], 
+              [
+                -90.033295, 
+                29.393274
+              ], 
+              [
+                -90.029468, 
+                29.388136
+              ], 
+              [
+                -90.029614, 
+                29.386658
+              ], 
+              [
+                -90.029967, 
+                29.383087
+              ], 
+              [
+                -90.030761, 
+                29.375043
+              ], 
+              [
+                -90.030764, 
+                29.375008
+              ], 
+              [
+                -90.030855, 
+                29.374876
+              ], 
+              [
+                -90.033604, 
+                29.370851
+              ], 
+              [
+                -90.035415, 
+                29.368201
+              ], 
+              [
+                -90.036374, 
+                29.363661
+              ], 
+              [
+                -90.032842, 
+                29.348624
+              ], 
+              [
+                -90.031815, 
+                29.344251
+              ], 
+              [
+                -90.034275, 
+                29.322661
+              ], 
+              [
+                -90.028536, 
+                29.307083
+              ], 
+              [
+                -90.013778, 
+                29.30271
+              ], 
+              [
+                -90.009678, 
+                29.294785
+              ], 
+              [
+                -90.016288, 
+                29.284257
+              ], 
+              [
+                -90.019517, 
+                29.282213
+              ], 
+              [
+                -90.032088, 
+                29.280027
+              ], 
+              [
+                -90.043293, 
+                29.282487
+              ], 
+              [
+                -90.057094, 
+                29.281331
+              ], 
+              [
+                -90.061057, 
+                29.276748
+              ], 
+              [
+                -90.059691, 
+                29.272648
+              ], 
+              [
+                -90.060511, 
+                29.267729
+              ], 
+              [
+                -90.070622, 
+                29.262537
+              ], 
+              [
+                -90.086747, 
+                29.259257
+              ], 
+              [
+                -90.091119, 
+                29.261443
+              ], 
+              [
+                -90.097678, 
+                29.26199
+              ], 
+              [
+                -90.101231, 
+                29.259804
+              ], 
+              [
+                -90.096038, 
+                29.240673
+              ], 
+              [
+                -90.073355, 
+                29.227282
+              ], 
+              [
+                -90.073355, 
+                29.210611
+              ], 
+              [
+                -90.070622, 
+                29.208698
+              ], 
+              [
+                -90.06361, 
+                29.209474
+              ], 
+              [
+                -90.04291, 
+                29.211765
+              ], 
+              [
+                -90.019772, 
+                29.231903
+              ], 
+              [
+                -90.005718, 
+                29.240627
+              ], 
+              [
+                -89.969981, 
+                29.255753
+              ], 
+              [
+                -89.965667, 
+                29.259126
+              ], 
+              [
+                -89.959509, 
+                29.267677
+              ], 
+              [
+                -89.951175, 
+                29.266124
+              ], 
+              [
+                -89.949925, 
+                29.263154
+              ], 
+              [
+                -89.950756, 
+                29.260801
+              ], 
+              [
+                -89.95646, 
+                29.253744
+              ], 
+              [
+                -90.022029, 
+                29.216065
+              ], 
+              [
+                -90.058512, 
+                29.183687
+              ], 
+              [
+                -90.079276, 
+                29.16997
+              ], 
+              [
+                -90.088684, 
+                29.162574
+              ], 
+              [
+                -90.104162, 
+                29.150407
+              ], 
+              [
+                -90.174273, 
+                29.105301
+              ], 
+              [
+                -90.223587, 
+                29.085075
+              ], 
+              [
+                -90.231984, 
+                29.08773
+              ], 
+              [
+                -90.245283, 
+                29.085824
+              ], 
+              [
+                -90.343293, 
+                29.057062
+              ], 
+              [
+                -90.348768, 
+                29.057817
+              ], 
+              [
+                -90.349891, 
+                29.063681
+              ], 
+              [
+                -90.325514, 
+                29.075138
+              ], 
+              [
+                -90.304129, 
+                29.077332
+              ], 
+              [
+                -90.29293, 
+                29.078761
+              ], 
+              [
+                -90.282983, 
+                29.082326
+              ], 
+              [
+                -90.26629, 
+                29.089421
+              ], 
+              [
+                -90.258145, 
+                29.091627
+              ], 
+              [
+                -90.253141, 
+                29.093772
+              ], 
+              [
+                -90.249806, 
+                29.100919
+              ], 
+              [
+                -90.250044, 
+                29.108067
+              ], 
+              [
+                -90.243849, 
+                29.11045
+              ], 
+              [
+                -90.234235, 
+                29.110268
+              ], 
+              [
+                -90.234405, 
+                29.128824
+              ], 
+              [
+                -90.243435, 
+                29.136311
+              ], 
+              [
+                -90.248629, 
+                29.13837
+              ], 
+              [
+                -90.26901, 
+                29.139242
+              ], 
+              [
+                -90.280516, 
+                29.142521
+              ], 
+              [
+                -90.27832, 
+                29.150691
+              ], 
+              [
+                -90.297, 
+                29.171317
+              ], 
+              [
+                -90.302846, 
+                29.175098
+              ], 
+              [
+                -90.302948, 
+                29.187948
+              ], 
+              [
+                -90.300885, 
+                29.196171
+              ], 
+              [
+                -90.293183, 
+                29.199789
+              ], 
+              [
+                -90.2828, 
+                29.192545
+              ], 
+              [
+                -90.275851, 
+                29.193668
+              ], 
+              [
+                -90.271251, 
+                29.204639
+              ], 
+              [
+                -90.286621, 
+                29.225694
+              ], 
+              [
+                -90.300304, 
+                29.231241
+              ], 
+              [
+                -90.311663, 
+                29.237954
+              ], 
+              [
+                -90.311523, 
+                29.256374
+              ], 
+              [
+                -90.316093, 
+                29.264777
+              ], 
+              [
+                -90.332796, 
+                29.276956
+              ], 
+              [
+                -90.367166, 
+                29.274128
+              ], 
+              [
+                -90.368154, 
+                29.270736
+              ], 
+              [
+                -90.367012, 
+                29.264956
+              ], 
+              [
+                -90.372565, 
+                29.258923
+              ], 
+              [
+                -90.387924, 
+                29.252786
+              ], 
+              [
+                -90.383857, 
+                29.235606
+              ], 
+              [
+                -90.399465, 
+                29.201046
+              ], 
+              [
+                -90.408578, 
+                29.196421
+              ], 
+              [
+                -90.409416, 
+                29.196135
+              ], 
+              [
+                -90.432912, 
+                29.188132
+              ], 
+              [
+                -90.435907, 
+                29.188449
+              ], 
+              [
+                -90.443954, 
+                29.19583
+              ], 
+              [
+                -90.472489, 
+                29.192688
+              ], 
+              [
+                -90.473273, 
+                29.195224
+              ], 
+              [
+                -90.468773, 
+                29.198469
+              ], 
+              [
+                -90.467233, 
+                29.202549
+              ], 
+              [
+                -90.485786, 
+                29.209843
+              ], 
+              [
+                -90.494928, 
+                29.216713
+              ], 
+              [
+                -90.490987, 
+                29.220883
+              ], 
+              [
+                -90.46832, 
+                29.227532
+              ], 
+              [
+                -90.465764, 
+                29.242951
+              ], 
+              [
+                -90.462866, 
+                29.249809
+              ], 
+              [
+                -90.450674, 
+                29.263739
+              ], 
+              [
+                -90.452186, 
+                29.26625
+              ], 
+              [
+                -90.472779, 
+                29.272556
+              ], 
+              [
+                -90.495299, 
+                29.287277
+              ], 
+              [
+                -90.510555, 
+                29.290925
+              ], 
+              [
+                -90.517277, 
+                29.282719
+              ], 
+              [
+                -90.526216, 
+                29.276492
+              ], 
+              [
+                -90.552005, 
+                29.278512
+              ], 
+              [
+                -90.565436, 
+                29.285111
+              ], 
+              [
+                -90.582525, 
+                29.276037
+              ], 
+              [
+                -90.589724, 
+                29.248521
+              ], 
+              [
+                -90.58847, 
+                29.245863
+              ], 
+              [
+                -90.583924, 
+                29.242886
+              ], 
+              [
+                -90.576506, 
+                29.243986
+              ], 
+              [
+                -90.565378, 
+                29.242475
+              ], 
+              [
+                -90.544547, 
+                29.230683
+              ], 
+              [
+                -90.543245, 
+                29.227843
+              ], 
+              [
+                -90.544311, 
+                29.224292
+              ], 
+              [
+                -90.556501, 
+                29.219913
+              ], 
+              [
+                -90.55739, 
+                29.207881
+              ], 
+              [
+                -90.560889, 
+                29.204261
+              ], 
+              [
+                -90.575277, 
+                29.206827
+              ], 
+              [
+                -90.618413, 
+                29.20329
+              ], 
+              [
+                -90.624161, 
+                29.210366
+              ], 
+              [
+                -90.62742, 
+                29.211004
+              ], 
+              [
+                -90.633819, 
+                29.209128
+              ], 
+              [
+                -90.640223, 
+                29.196554
+              ], 
+              [
+                -90.645612, 
+                29.175867
+              ], 
+              [
+                -90.645169, 
+                29.172958
+              ], 
+              [
+                -90.640863, 
+                29.171261
+              ], 
+              [
+                -90.636973, 
+                29.164572
+              ], 
+              [
+                -90.647042, 
+                29.12858
+              ], 
+              [
+                -90.677724, 
+                29.118742
+              ], 
+              [
+                -90.691109, 
+                29.121722
+              ], 
+              [
+                -90.700893, 
+                29.12147
+              ], 
+              [
+                -90.718035, 
+                29.116611
+              ], 
+              [
+                -90.731239, 
+                29.122886
+              ], 
+              [
+                -90.764189, 
+                29.113374
+              ], 
+              [
+                -90.773458, 
+                29.100133
+              ], 
+              [
+                -90.799444, 
+                29.087377
+              ], 
+              [
+                -90.802053, 
+                29.083322
+              ], 
+              [
+                -90.803699, 
+                29.063709
+              ], 
+              [
+                -90.79872, 
+                29.054841
+              ], 
+              [
+                -90.781981, 
+                29.049431
+              ], 
+              [
+                -90.765188, 
+                29.049403
+              ], 
+              [
+                -90.750092, 
+                29.053247
+              ], 
+              [
+                -90.7253, 
+                29.066616
+              ], 
+              [
+                -90.709105, 
+                29.064305
+              ], 
+              [
+                -90.70535, 
+                29.062679
+              ], 
+              [
+                -90.702102, 
+                29.060275
+              ], 
+              [
+                -90.692205, 
+                29.059607
+              ], 
+              [
+                -90.683645, 
+                29.060944
+              ], 
+              [
+                -90.676958, 
+                29.063619
+              ], 
+              [
+                -90.665589, 
+                29.06723
+              ], 
+              [
+                -90.652348, 
+                29.069237
+              ], 
+              [
+                -90.644189, 
+                29.07151
+              ], 
+              [
+                -90.641247, 
+                29.072313
+              ], 
+              [
+                -90.63924, 
+                29.072848
+              ], 
+              [
+                -90.637623, 
+                29.072084
+              ], 
+              [
+                -90.636033, 
+                29.069792
+              ], 
+              [
+                -90.637495, 
+                29.066608
+              ], 
+              [
+                -90.648058, 
+                29.062649
+              ], 
+              [
+                -90.730899, 
+                29.042259
+              ], 
+              [
+                -90.755677, 
+                29.038997
+              ], 
+              [
+                -90.79768, 
+                29.039741
+              ], 
+              [
+                -90.811473, 
+                29.03658
+              ], 
+              [
+                -90.839345, 
+                29.039167
+              ], 
+              [
+                -90.842762, 
+                29.042947
+              ], 
+              [
+                -90.844849, 
+                29.048721
+              ], 
+              [
+                -90.841226, 
+                29.054266
+              ], 
+              [
+                -90.844593, 
+                29.06728
+              ], 
+              [
+                -90.862757, 
+                29.094863
+              ], 
+              [
+                -90.867766, 
+                29.095434
+              ], 
+              [
+                -90.877583, 
+                29.104891
+              ], 
+              [
+                -90.885351, 
+                29.117016
+              ], 
+              [
+                -90.898215, 
+                29.131342
+              ], 
+              [
+                -90.925797, 
+                29.153116
+              ], 
+              [
+                -90.941877, 
+                29.162373
+              ], 
+              [
+                -90.948091, 
+                29.174104
+              ], 
+              [
+                -90.961278, 
+                29.180817
+              ], 
+              [
+                -90.981458, 
+                29.171211
+              ], 
+              [
+                -91.000096, 
+                29.169481
+              ], 
+              [
+                -91.023955, 
+                29.174784
+              ], 
+              [
+                -91.031786, 
+                29.182188
+              ], 
+              [
+                -91.05863, 
+                29.181734
+              ], 
+              [
+                -91.094015, 
+                29.187711
+              ], 
+              [
+                -91.11476, 
+                29.207918
+              ], 
+              [
+                -91.129141, 
+                29.215863
+              ], 
+              [
+                -91.199647, 
+                29.221287
+              ], 
+              [
+                -91.219032, 
+                29.226051
+              ], 
+              [
+                -91.278792, 
+                29.247776
+              ], 
+              [
+                -91.302677, 
+                29.265958
+              ], 
+              [
+                -91.334885, 
+                29.298775
+              ], 
+              [
+                -91.33275, 
+                29.305816
+              ], 
+              [
+                -91.309314, 
+                29.305698
+              ], 
+              [
+                -91.299054, 
+                29.309017
+              ], 
+              [
+                -91.291821, 
+                29.311357
+              ], 
+              [
+                -91.29042, 
+                29.313062
+              ], 
+              [
+                -91.279742, 
+                29.326058
+              ], 
+              [
+                -91.276647, 
+                29.329825
+              ], 
+              [
+                -91.276187, 
+                29.332783
+              ], 
+              [
+                -91.274308, 
+                29.344878
+              ], 
+              [
+                -91.270582, 
+                29.355415
+              ], 
+              [
+                -91.270053, 
+                29.356912
+              ], 
+              [
+                -91.26994, 
+                29.357231
+              ], 
+              [
+                -91.266589, 
+                29.361218
+              ], 
+              [
+                -91.265479, 
+                29.361767
+              ], 
+              [
+                -91.251546, 
+                29.368659
+              ], 
+              [
+                -91.251232, 
+                29.368814
+              ], 
+              [
+                -91.249517, 
+                29.369662
+              ], 
+              [
+                -91.249109, 
+                29.369864
+              ], 
+              [
+                -91.245558, 
+                29.37058
+              ], 
+              [
+                -91.238515, 
+                29.371999
+              ], 
+              [
+                -91.235348, 
+                29.370638
+              ], 
+              [
+                -91.222377, 
+                29.360703
+              ], 
+              [
+                -91.207299, 
+                29.360703
+              ], 
+              [
+                -91.197465, 
+                29.369882
+              ], 
+              [
+                -91.200087, 
+                29.38955
+              ], 
+              [
+                -91.218463, 
+                29.407235
+              ], 
+              [
+                -91.215976, 
+                29.412505
+              ], 
+              [
+                -91.214284, 
+                29.416089
+              ], 
+              [
+                -91.211999, 
+                29.420931
+              ], 
+              [
+                -91.2151, 
+                29.427542
+              ], 
+              [
+                -91.217448, 
+                29.432549
+              ], 
+              [
+                -91.218067, 
+                29.433193
+              ], 
+              [
+                -91.219242, 
+                29.434418
+              ], 
+              [
+                -91.221166, 
+                29.436421
+              ], 
+              [
+                -91.24164, 
+                29.441021
+              ], 
+              [
+                -91.251319, 
+                29.444483
+              ], 
+              [
+                -91.258226, 
+                29.446954
+              ], 
+              [
+                -91.259537, 
+                29.458001
+              ], 
+              [
+                -91.259844, 
+                29.460582
+              ], 
+              [
+                -91.259988, 
+                29.461803
+              ], 
+              [
+                -91.260024, 
+                29.462102
+              ], 
+              [
+                -91.261588, 
+                29.464954
+              ], 
+              [
+                -91.265649, 
+                29.472362
+              ], 
+              [
+                -91.2813, 
+                29.481547
+              ], 
+              [
+                -91.294325, 
+                29.476894
+              ], 
+              [
+                -91.335742, 
+                29.485886
+              ], 
+              [
+                -91.343567, 
+                29.492593
+              ], 
+              [
+                -91.34588, 
+                29.504538
+              ], 
+              [
+                -91.356625, 
+                29.515191
+              ], 
+              [
+                -91.402214, 
+                29.511914
+              ], 
+              [
+                -91.420449, 
+                29.515745
+              ], 
+              [
+                -91.42713, 
+                29.520215
+              ], 
+              [
+                -91.432337, 
+                29.53283
+              ], 
+              [
+                -91.439941, 
+                29.540434
+              ], 
+              [
+                -91.447345, 
+                29.544749
+              ], 
+              [
+                -91.468748, 
+                29.544299
+              ], 
+              [
+                -91.517274, 
+                29.52974
+              ], 
+              [
+                -91.531021, 
+                29.531543
+              ], 
+              [
+                -91.531471, 
+                29.535374
+              ], 
+              [
+                -91.52584, 
+                29.545946
+              ], 
+              [
+                -91.525523, 
+                29.551904
+              ], 
+              [
+                -91.529217, 
+                29.558598
+              ], 
+              [
+                -91.537445, 
+                29.565888
+              ], 
+              [
+                -91.541974, 
+                29.594353
+              ], 
+              [
+                -91.553537, 
+                29.632766
+              ], 
+              [
+                -91.560908, 
+                29.63735
+              ], 
+              [
+                -91.570589, 
+                29.638312
+              ], 
+              [
+                -91.581843, 
+                29.637165
+              ], 
+              [
+                -91.600179, 
+                29.631156
+              ], 
+              [
+                -91.625114, 
+                29.626195
+              ], 
+              [
+                -91.643832, 
+                29.630625
+              ], 
+              [
+                -91.648941, 
+                29.633635
+              ], 
+              [
+                -91.648657, 
+                29.636713
+              ], 
+              [
+                -91.646478, 
+                29.639427
+              ], 
+              [
+                -91.643198, 
+                29.640274
+              ], 
+              [
+                -91.637344, 
+                29.647217
+              ], 
+              [
+                -91.627286, 
+                29.662132
+              ], 
+              [
+                -91.625114, 
+                29.671679
+              ], 
+              [
+                -91.626826, 
+                29.684753
+              ], 
+              [
+                -91.623829, 
+                29.69924
+              ], 
+              [
+                -91.618479, 
+                29.710816
+              ], 
+              [
+                -91.61809, 
+                29.720694
+              ], 
+              [
+                -91.621512, 
+                29.735429
+              ], 
+              [
+                -91.632829, 
+                29.742576
+              ], 
+              [
+                -91.667128, 
+                29.745822
+              ], 
+              [
+                -91.710935, 
+                29.738993
+              ], 
+              [
+                -91.737253, 
+                29.74937
+              ], 
+              [
+                -91.752259, 
+                29.748264
+              ], 
+              [
+                -91.783674, 
+                29.740689
+              ], 
+              [
+                -91.830499, 
+                29.718918
+              ], 
+              [
+                -91.845962, 
+                29.708763
+              ], 
+              [
+                -91.85864, 
+                29.703121
+              ], 
+              [
+                -91.866516, 
+                29.70715
+              ], 
+              [
+                -91.88075, 
+                29.710839
+              ], 
+              [
+                -91.880999, 
+                29.713338
+              ], 
+              [
+                -91.878331, 
+                29.716087
+              ], 
+              [
+                -91.875637, 
+                29.722316
+              ], 
+              [
+                -91.87557, 
+                29.722471
+              ], 
+              [
+                -91.87557, 
+                29.728043
+              ], 
+              [
+                -91.878355, 
+                29.735007
+              ], 
+              [
+                -91.879748, 
+                29.742668
+              ], 
+              [
+                -91.878355, 
+                29.751025
+              ], 
+              [
+                -91.874761, 
+                29.760083
+              ], 
+              [
+                -91.859151, 
+                29.783331
+              ], 
+              [
+                -91.854677, 
+                29.807436
+              ], 
+              [
+                -91.869998, 
+                29.828328
+              ], 
+              [
+                -91.889118, 
+                29.836023
+              ], 
+              [
+                -91.90689, 
+                29.83094
+              ], 
+              [
+                -91.915989, 
+                29.815654
+              ], 
+              [
+                -91.919143, 
+                29.815379
+              ], 
+              [
+                -91.940723, 
+                29.817008
+              ], 
+              [
+                -91.96123, 
+                29.810221
+              ], 
+              [
+                -91.970443, 
+                29.80431
+              ], 
+              [
+                -91.978381, 
+                29.799217
+              ], 
+              [
+                -91.983871, 
+                29.794516
+              ], 
+              [
+                -92.035666, 
+                29.781662
+              ], 
+              [
+                -92.056398, 
+                29.772313
+              ], 
+              [
+                -92.107486, 
+                29.744429
+              ], 
+              [
+                -92.144431, 
+                29.716418
+              ], 
+              [
+                -92.149349, 
+                29.697052
+              ], 
+              [
+                -92.134347, 
+                29.669516
+              ], 
+              [
+                -92.132804, 
+                29.660462
+              ], 
+              [
+                -92.111787, 
+                29.62177
+              ], 
+              [
+                -92.093419, 
+                29.618694
+              ], 
+              [
+                -92.06564, 
+                29.619967
+              ], 
+              [
+                -92.04767, 
+                29.624527
+              ], 
+              [
+                -92.02532, 
+                29.625647
+              ], 
+              [
+                -92.01627, 
+                29.618741
+              ], 
+              [
+                -92.000371, 
+                29.613143
+              ], 
+              [
+                -92.000003, 
+                29.613013
+              ], 
+              [
+                -91.965031, 
+                29.608019
+              ], 
+              [
+                -91.939903, 
+                29.610291
+              ], 
+              [
+                -91.935024, 
+                29.612239
+              ], 
+              [
+                -91.929567, 
+                29.61884
+              ], 
+              [
+                -91.922825, 
+                29.633173
+              ], 
+              [
+                -91.898996, 
+                29.63701
+              ], 
+              [
+                -91.896763, 
+                29.634618
+              ], 
+              [
+                -91.882318, 
+                29.62977
+              ], 
+              [
+                -91.866113, 
+                29.631583
+              ], 
+              [
+                -91.863018, 
+                29.633739
+              ], 
+              [
+                -91.841294, 
+                29.62962
+              ], 
+              [
+                -91.838981, 
+                29.624475
+              ], 
+              [
+                -91.840921, 
+                29.619913
+              ], 
+              [
+                -91.838297, 
+                29.616041
+              ], 
+              [
+                -91.821693, 
+                29.606049
+              ], 
+              [
+                -91.803831, 
+                29.599562
+              ], 
+              [
+                -91.784976, 
+                29.595204
+              ], 
+              [
+                -91.7785, 
+                29.58922
+              ], 
+              [
+                -91.774805, 
+                29.582113
+              ], 
+              [
+                -91.774686, 
+                29.576387
+              ], 
+              [
+                -91.74632, 
+                29.574337
+              ], 
+              [
+                -91.719102, 
+                29.565568
+              ], 
+              [
+                -91.715642, 
+                29.565844
+              ], 
+              [
+                -91.712002, 
+                29.56474
+              ], 
+              [
+                -91.709205, 
+                29.561012
+              ], 
+              [
+                -91.711654, 
+                29.55427
+              ], 
+              [
+                -91.733956, 
+                29.539504
+              ], 
+              [
+                -91.747058, 
+                29.535144
+              ], 
+              [
+                -91.765448, 
+                29.520844
+              ], 
+              [
+                -91.771927, 
+                29.504871
+              ], 
+              [
+                -91.772529, 
+                29.499016
+              ], 
+              [
+                -91.770069, 
+                29.493812
+              ], 
+              [
+                -91.770516, 
+                29.488953
+              ], 
+              [
+                -91.782387, 
+                29.482882
+              ], 
+              [
+                -91.789119, 
+                29.482081
+              ], 
+              [
+                -91.800121, 
+                29.486828
+              ], 
+              [
+                -91.803448, 
+                29.486851
+              ], 
+              [
+                -91.814609, 
+                29.482061
+              ], 
+              [
+                -91.821576, 
+                29.473925
+              ], 
+              [
+                -91.8385, 
+                29.478874
+              ], 
+              [
+                -91.848665, 
+                29.484144
+              ], 
+              [
+                -91.852598, 
+                29.494984
+              ], 
+              [
+                -91.862324, 
+                29.502393
+              ], 
+              [
+                -91.878746, 
+                29.502937
+              ], 
+              [
+                -91.886815, 
+                29.505577
+              ], 
+              [
+                -91.906175, 
+                29.518052
+              ], 
+              [
+                -91.915322, 
+                29.518513
+              ], 
+              [
+                -91.947007, 
+                29.53316
+              ], 
+              [
+                -91.969312, 
+                29.536893
+              ], 
+              [
+                -91.985726, 
+                29.547708
+              ], 
+              [
+                -92.02681, 
+                29.566805
+              ], 
+              [
+                -92.035462, 
+                29.57864
+              ], 
+              [
+                -92.041168, 
+                29.581648
+              ], 
+              [
+                -92.046316, 
+                29.584362
+              ], 
+              [
+                -92.066533, 
+                29.583842
+              ], 
+              [
+                -92.105923, 
+                29.586335
+              ], 
+              [
+                -92.158624, 
+                29.581616
+              ], 
+              [
+                -92.21259, 
+                29.562479
+              ], 
+              [
+                -92.25186, 
+                29.539354
+              ], 
+              [
+                -92.280392, 
+                29.533434
+              ], 
+              [
+                -92.309357, 
+                29.533026
+              ], 
+              [
+                -92.347236, 
+                29.539394
+              ], 
+              [
+                -92.402165, 
+                29.551269
+              ], 
+              [
+                -92.473585, 
+                29.561081
+              ], 
+              [
+                -92.558602, 
+                29.569935
+              ], 
+              [
+                -92.61627, 
+                29.578729
+              ], 
+              [
+                -92.617725, 
+                29.579092
+              ], 
+              [
+                -92.653651, 
+                29.588065
+              ], 
+              [
+                -92.744126, 
+                29.617608
+              ], 
+              [
+                -92.871232, 
+                29.670028
+              ], 
+              [
+                -92.940455, 
+                29.701033
+              ], 
+              [
+                -92.974305, 
+                29.71398
+              ], 
+              [
+                -93.065354, 
+                29.740966
+              ], 
+              [
+                -93.088182, 
+                29.749125
+              ], 
+              [
+                -93.17693, 
+                29.770487
+              ], 
+              [
+                -93.226934, 
+                29.777519
+              ], 
+              [
+                -93.267456, 
+                29.778113
+              ], 
+              [
+                -93.295573, 
+                29.775071
+              ], 
+              [
+                -93.342104, 
+                29.763402
+              ], 
+              [
+                -93.344993, 
+                29.759618
+              ], 
+              [
+                -93.347331, 
+                29.759046
+              ], 
+              [
+                -93.372029, 
+                29.763049
+              ], 
+              [
+                -93.438973, 
+                29.768949
+              ], 
+              [
+                -93.475252, 
+                29.769242
+              ], 
+              [
+                -93.538462, 
+                29.763299
+              ], 
+              [
+                -93.590786, 
+                29.755649
+              ], 
+              [
+                -93.635304, 
+                29.752806
+              ], 
+              [
+                -93.68364, 
+                29.747153
+              ], 
+              [
+                -93.741948, 
+                29.736343
+              ], 
+              [
+                -93.766048, 
+                29.7295
+              ], 
+              [
+                -93.79925, 
+                29.71526
+              ], 
+              [
+                -93.818995, 
+                29.704076
+              ], 
+              [
+                -93.837971, 
+                29.690619
+              ], 
+              [
+                -93.892246, 
+                29.765241
+              ], 
+              [
+                -93.89847, 
+                29.771577
+              ], 
+              [
+                -93.890679, 
+                29.843159
+              ], 
+              [
+                -93.840799, 
+                29.914423
+              ], 
+              [
+                -93.789431, 
+                29.987812
+              ], 
+              [
+                -93.75663, 
+                30.014163
+              ], 
+              [
+                -93.752038, 
+                30.016403
+              ], 
+              [
+                -93.722481, 
+                30.050898
+              ], 
+              [
+                -93.721589, 
+                30.051939
+              ], 
+              [
+                -93.712101, 
+                30.067346
+              ], 
+              [
+                -93.695684, 
+                30.135729
+              ], 
+              [
+                -93.695252, 
+                30.1476
+              ], 
+              [
+                -93.712008, 
+                30.194304
+              ], 
+              [
+                -93.716223, 
+                30.244318
+              ], 
+              [
+                -93.720575, 
+                30.295961
+              ], 
+              [
+                -93.723586, 
+                30.294951
+              ], 
+              [
+                -93.735896, 
+                30.29944
+              ], 
+              [
+                -93.765822, 
+                30.333318
+              ], 
+              [
+                -93.757654, 
+                30.390423
+              ], 
+              [
+                -93.751437, 
+                30.396288
+              ], 
+              [
+                -93.741701, 
+                30.403007
+              ], 
+              [
+                -93.702665, 
+                30.429947
+              ], 
+              [
+                -93.698302, 
+                30.438657
+              ], 
+              [
+                -93.697828, 
+                30.443838
+              ], 
+              [
+                -93.710117, 
+                30.5064
+              ], 
+              [
+                -93.740045, 
+                30.538765
+              ], 
+              [
+                -93.727844, 
+                30.57407
+              ], 
+              [
+                -93.578395, 
+                30.802047
+              ], 
+              [
+                -93.563292, 
+                30.818503
+              ], 
+              [
+                -93.558672, 
+                30.868829
+              ], 
+              [
+                -93.558617, 
+                30.869424
+              ], 
+              [
+                -93.55497, 
+                30.876685
+              ], 
+              [
+                -93.554576, 
+                30.87747
+              ], 
+              [
+                -93.530936, 
+                30.924534
+              ], 
+              [
+                -93.540354, 
+                31.008135
+              ], 
+              [
+                -93.527644, 
+                31.074509
+              ], 
+              [
+                -93.531744, 
+                31.180817
+              ], 
+              [
+                -93.535097, 
+                31.185614
+              ], 
+              [
+                -93.548931, 
+                31.186601
+              ], 
+              [
+                -93.55254, 
+                31.185605
+              ], 
+              [
+                -93.552649, 
+                31.185575
+              ], 
+              [
+                -93.579215, 
+                31.167422
+              ], 
+              [
+                -93.588503, 
+                31.165581
+              ], 
+              [
+                -93.598828, 
+                31.174679
+              ], 
+              [
+                -93.599705, 
+                31.176456
+              ], 
+              [
+                -93.602315, 
+                31.181742
+              ], 
+              [
+                -93.607243, 
+                31.204806
+              ], 
+              [
+                -93.608158, 
+                31.227835
+              ], 
+              [
+                -93.614402, 
+                31.260869
+              ], 
+              [
+                -93.620829, 
+                31.271299
+              ], 
+              [
+                -93.644407, 
+                31.27711
+              ], 
+              [
+                -93.671676, 
+                31.299586
+              ], 
+              [
+                -93.640805, 
+                31.372546
+              ], 
+              [
+                -93.670182, 
+                31.387184
+              ], 
+              [
+                -93.695866, 
+                31.409392
+              ], 
+              [
+                -93.729613, 
+                31.487922
+              ], 
+              [
+                -93.798087, 
+                31.534044
+              ], 
+              [
+                -93.818582, 
+                31.554826
+              ], 
+              [
+                -93.834923, 
+                31.58621
+              ], 
+              [
+                -93.834924, 
+                31.586211
+              ], 
+              [
+                -93.82629, 
+                31.614903
+              ], 
+              [
+                -93.817059, 
+                31.671694
+              ], 
+              [
+                -93.812477, 
+                31.715246
+              ], 
+              [
+                -93.840029, 
+                31.800596
+              ], 
+              [
+                -93.878225, 
+                31.844276
+              ], 
+              [
+                -93.889193, 
+                31.856819
+              ], 
+              [
+                -93.92029, 
+                31.888651
+              ], 
+              [
+                -93.932135, 
+                31.893672
+              ], 
+              [
+                -93.975377, 
+                31.92366
+              ], 
+              [
+                -94.01563, 
+                31.979856
+              ], 
+              [
+                -94.04272, 
+                31.999265
+              ], 
+              [
+                -94.0427, 
+                32.056012
+              ], 
+              [
+                -94.042337, 
+                32.119914
+              ], 
+              [
+                -94.042681, 
+                32.137956
+              ], 
+              [
+                -94.042591, 
+                32.158097
+              ], 
+              [
+                -94.042539, 
+                32.166826
+              ], 
+              [
+                -94.042566, 
+                32.166894
+              ], 
+              [
+                -94.042621, 
+                32.196005
+              ], 
+              [
+                -94.042662, 
+                32.218146
+              ], 
+              [
+                -94.042732, 
+                32.26962
+              ], 
+              [
+                -94.042733, 
+                32.269696
+              ], 
+              [
+                -94.042739, 
+                32.363559
+              ], 
+              [
+                -94.042763, 
+                32.373332
+              ], 
+              [
+                -94.042901, 
+                32.392283
+              ], 
+              [
+                -94.042923, 
+                32.399918
+              ], 
+              [
+                -94.042899, 
+                32.400659
+              ], 
+              [
+                -94.042986, 
+                32.435507
+              ], 
+              [
+                -94.042908, 
+                32.439891
+              ], 
+              [
+                -94.042903, 
+                32.470386
+              ], 
+              [
+                -94.042875, 
+                32.471348
+              ], 
+              [
+                -94.042902, 
+                32.472906
+              ], 
+              [
+                -94.042995, 
+                32.478004
+              ], 
+              [
+                -94.042955, 
+                32.480261
+              ], 
+              [
+                -94.043072, 
+                32.4843
+              ], 
+              [
+                -94.043089, 
+                32.486561
+              ], 
+              [
+                -94.042911, 
+                32.492852
+              ], 
+              [
+                -94.042885, 
+                32.505145
+              ], 
+              [
+                -94.043081, 
+                32.513613
+              ], 
+              [
+                -94.043142, 
+                32.559502
+              ], 
+              [
+                -94.043083, 
+                32.564261
+              ], 
+              [
+                -94.042919, 
+                32.610142
+              ], 
+              [
+                -94.042929, 
+                32.61826
+              ], 
+              [
+                -94.042926, 
+                32.622015
+              ], 
+              [
+                -94.042824, 
+                32.640305
+              ], 
+              [
+                -94.04278, 
+                32.643466
+              ], 
+              [
+                -94.042913, 
+                32.655127
+              ], 
+              [
+                -94.043147, 
+                32.69303
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 9, 
+      "properties": {
+        "CENSUSAREA": 43203.905, 
+        "GEO_ID": "0400000US22", 
+        "ISO": "US-LA", 
+        "LSAD": "", 
+        "NAME": "Louisiana", 
+        "NAME_1": "Louisiana", 
+        "STATE": "LA"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -92.191501, 
+                46.672586
+              ], 
+              [
+                -92.197145, 
+                46.663408
+              ], 
+              [
+                -92.202292, 
+                46.655041
+              ], 
+              [
+                -92.207092, 
+                46.651941
+              ], 
+              [
+                -92.212392, 
+                46.649941
+              ], 
+              [
+                -92.221731, 
+                46.649724
+              ], 
+              [
+                -92.222338, 
+                46.64971
+              ], 
+              [
+                -92.228155, 
+                46.649574
+              ], 
+              [
+                -92.231944, 
+                46.649486
+              ], 
+              [
+                -92.232647, 
+                46.64947
+              ], 
+              [
+                -92.234815, 
+                46.64942
+              ], 
+              [
+                -92.242493, 
+                46.649241
+              ], 
+              [
+                -92.250861, 
+                46.650061
+              ], 
+              [
+                -92.254379, 
+                46.650405
+              ], 
+              [
+                -92.256654, 
+                46.650628
+              ], 
+              [
+                -92.262503, 
+                46.651201
+              ], 
+              [
+                -92.264462, 
+                46.651393
+              ], 
+              [
+                -92.269948, 
+                46.65193
+              ], 
+              [
+                -92.274465, 
+                46.654227
+              ], 
+              [
+                -92.276373, 
+                46.655198
+              ], 
+              [
+                -92.277155, 
+                46.655596
+              ], 
+              [
+                -92.292192, 
+                46.663242
+              ], 
+              [
+                -92.291597, 
+                46.624941
+              ], 
+              [
+                -92.291647, 
+                46.604649
+              ], 
+              [
+                -92.292371, 
+                46.495585
+              ], 
+              [
+                -92.29251, 
+                46.478761
+              ], 
+              [
+                -92.292727, 
+                46.431993
+              ], 
+              [
+                -92.292847, 
+                46.420876
+              ], 
+              [
+                -92.29286, 
+                46.41722
+              ], 
+              [
+                -92.292999, 
+                46.321894
+              ], 
+              [
+                -92.292782, 
+                46.319312
+              ], 
+              [
+                -92.292803, 
+                46.314628
+              ], 
+              [
+                -92.29288, 
+                46.313752
+              ], 
+              [
+                -92.292839, 
+                46.307107
+              ], 
+              [
+                -92.29284, 
+                46.304319
+              ], 
+              [
+                -92.293007, 
+                46.297987
+              ], 
+              [
+                -92.293074, 
+                46.295129
+              ], 
+              [
+                -92.293619, 
+                46.244043
+              ], 
+              [
+                -92.293558, 
+                46.224578
+              ], 
+              [
+                -92.293857, 
+                46.180073
+              ], 
+              [
+                -92.293744, 
+                46.166838
+              ], 
+              [
+                -92.293706, 
+                46.157321
+              ], 
+              [
+                -92.29353, 
+                46.113824
+              ], 
+              [
+                -92.294069, 
+                46.078346
+              ], 
+              [
+                -92.294033, 
+                46.074377
+              ], 
+              [
+                -92.306756, 
+                46.07241
+              ], 
+              [
+                -92.326877, 
+                46.066618
+              ], 
+              [
+                -92.443285, 
+                46.014648
+              ], 
+              [
+                -92.656125, 
+                45.924442
+              ], 
+              [
+                -92.707702, 
+                45.894901
+              ], 
+              [
+                -92.721128, 
+                45.883805
+              ], 
+              [
+                -92.734039, 
+                45.868108
+              ], 
+              [
+                -92.76249, 
+                45.819239
+              ], 
+              [
+                -92.76843, 
+                45.79801
+              ], 
+              [
+                -92.784621, 
+                45.764196
+              ], 
+              [
+                -92.803971, 
+                45.749805
+              ], 
+              [
+                -92.841051, 
+                45.730024
+              ], 
+              [
+                -92.863703, 
+                45.72182
+              ], 
+              [
+                -92.869193, 
+                45.717568
+              ], 
+              [
+                -92.883987, 
+                45.65487
+              ], 
+              [
+                -92.885661, 
+                45.644126
+              ], 
+              [
+                -92.888114, 
+                45.628377
+              ], 
+              [
+                -92.886421, 
+                45.594881
+              ], 
+              [
+                -92.883749, 
+                45.575483
+              ], 
+              [
+                -92.871082, 
+                45.567581
+              ], 
+              [
+                -92.823309, 
+                45.560934
+              ], 
+              [
+                -92.803432, 
+                45.5625
+              ], 
+              [
+                -92.72623, 
+                45.531085
+              ], 
+              [
+                -92.680234, 
+                45.464344
+              ], 
+              [
+                -92.664102, 
+                45.393309
+              ], 
+              [
+                -92.704794, 
+                45.326526
+              ], 
+              [
+                -92.732594, 
+                45.304224
+              ], 
+              [
+                -92.746139, 
+                45.296046
+              ], 
+              [
+                -92.751735, 
+                45.292667
+              ], 
+              [
+                -92.760615, 
+                45.278827
+              ], 
+              [
+                -92.765898, 
+                45.210173
+              ], 
+              [
+                -92.76713, 
+                45.194165
+              ], 
+              [
+                -92.792875, 
+                45.078489
+              ], 
+              [
+                -92.791206, 
+                45.045698
+              ], 
+              [
+                -92.768606, 
+                45.008016
+              ], 
+              [
+                -92.750645, 
+                44.937299
+              ], 
+              [
+                -92.761677, 
+                44.862022
+              ], 
+              [
+                -92.761845, 
+                44.860879
+              ], 
+              [
+                -92.765461, 
+                44.836202
+              ], 
+              [
+                -92.784443, 
+                44.793958
+              ], 
+              [
+                -92.802201, 
+                44.745714
+              ], 
+              [
+                -92.802402, 
+                44.745167
+              ], 
+              [
+                -92.737259, 
+                44.717155
+              ], 
+              [
+                -92.732042, 
+                44.713775
+              ], 
+              [
+                -92.632105, 
+                44.649027
+              ], 
+              [
+                -92.621733, 
+                44.638983
+              ], 
+              [
+                -92.619774, 
+                44.629214
+              ], 
+              [
+                -92.549685, 
+                44.576
+              ], 
+              [
+                -92.534186, 
+                44.570375
+              ], 
+              [
+                -92.491773, 
+                44.566003
+              ], 
+              [
+                -92.357313, 
+                44.55848
+              ], 
+              [
+                -92.340058, 
+                44.555273
+              ], 
+              [
+                -92.329013, 
+                44.550895
+              ], 
+              [
+                -92.319938, 
+                44.54494
+              ], 
+              [
+                -92.316425, 
+                44.540792
+              ], 
+              [
+                -92.314071, 
+                44.538014
+              ], 
+              [
+                -92.303046, 
+                44.518646
+              ], 
+              [
+                -92.302215, 
+                44.500298
+              ], 
+              [
+                -92.291005, 
+                44.485464
+              ], 
+              [
+                -92.276784, 
+                44.473649
+              ], 
+              [
+                -92.24201, 
+                44.454254
+              ], 
+              [
+                -92.233897, 
+                44.446334
+              ], 
+              [
+                -92.221083, 
+                44.440386
+              ], 
+              [
+                -92.115296, 
+                44.416056
+              ], 
+              [
+                -92.083925, 
+                44.406211
+              ], 
+              [
+                -92.046285, 
+                44.394398
+              ], 
+              [
+                -91.972493, 
+                44.36676
+              ], 
+              [
+                -91.9636, 
+                44.362112
+              ], 
+              [
+                -91.92559, 
+                44.333548
+              ], 
+              [
+                -91.918625, 
+                44.322671
+              ], 
+              [
+                -91.887189, 
+                44.252513
+              ], 
+              [
+                -91.887905, 
+                44.246398
+              ], 
+              [
+                -91.892963, 
+                44.235149
+              ], 
+              [
+                -91.892698, 
+                44.231105
+              ], 
+              [
+                -91.875158, 
+                44.200575
+              ], 
+              [
+                -91.862858, 
+                44.193001
+              ], 
+              [
+                -91.808064, 
+                44.159262
+              ], 
+              [
+                -91.740871, 
+                44.133918
+              ], 
+              [
+                -91.721552, 
+                44.130342
+              ], 
+              [
+                -91.67252, 
+                44.091286
+              ], 
+              [
+                -91.59207, 
+                44.031372
+              ], 
+              [
+                -91.580019, 
+                44.026925
+              ], 
+              [
+                -91.559197, 
+                44.023959
+              ], 
+              [
+                -91.547028, 
+                44.022226
+              ], 
+              [
+                -91.505918, 
+                44.018651
+              ], 
+              [
+                -91.463515, 
+                44.009041
+              ], 
+              [
+                -91.43738, 
+                43.999962
+              ], 
+              [
+                -91.432522, 
+                43.996827
+              ], 
+              [
+                -91.420114, 
+                43.984243
+              ], 
+              [
+                -91.363242, 
+                43.926563
+              ], 
+              [
+                -91.310991, 
+                43.867381
+              ], 
+              [
+                -91.298815, 
+                43.856555
+              ], 
+              [
+                -91.284138, 
+                43.847065
+              ], 
+              [
+                -91.262436, 
+                43.792166
+              ], 
+              [
+                -91.268198, 
+                43.726571
+              ], 
+              [
+                -91.273316, 
+                43.668307
+              ], 
+              [
+                -91.268748, 
+                43.615348
+              ], 
+              [
+                -91.265091, 
+                43.609977
+              ], 
+              [
+                -91.217706, 
+                43.50055
+              ], 
+              [
+                -91.369325, 
+                43.500827
+              ], 
+              [
+                -91.371608, 
+                43.500945
+              ], 
+              [
+                -91.37695, 
+                43.500482
+              ], 
+              [
+                -91.441786, 
+                43.500438
+              ], 
+              [
+                -91.445932, 
+                43.500588
+              ], 
+              [
+                -91.461403, 
+                43.500642
+              ], 
+              [
+                -91.465063, 
+                43.500608
+              ], 
+              [
+                -91.491042, 
+                43.50069
+              ], 
+              [
+                -91.533806, 
+                43.50056
+              ], 
+              [
+                -91.54122, 
+                43.500515
+              ], 
+              [
+                -91.551021, 
+                43.500539
+              ], 
+              [
+                -91.591073, 
+                43.500536
+              ], 
+              [
+                -91.610832, 
+                43.50053
+              ], 
+              [
+                -91.610895, 
+                43.50053
+              ], 
+              [
+                -91.615293, 
+                43.50055
+              ], 
+              [
+                -91.616895, 
+                43.500663
+              ], 
+              [
+                -91.617407, 
+                43.500687
+              ], 
+              [
+                -91.620785, 
+                43.500677
+              ], 
+              [
+                -91.625611, 
+                43.500727
+              ], 
+              [
+                -91.634244, 
+                43.500479
+              ], 
+              [
+                -91.634495, 
+                43.500439
+              ], 
+              [
+                -91.635626, 
+                43.500463
+              ], 
+              [
+                -91.639772, 
+                43.500573
+              ], 
+              [
+                -91.644924, 
+                43.500529
+              ], 
+              [
+                -91.651396, 
+                43.500454
+              ], 
+              [
+                -91.658401, 
+                43.500533
+              ], 
+              [
+                -91.670872, 
+                43.500513
+              ], 
+              [
+                -91.700749, 
+                43.500581
+              ], 
+              [
+                -91.730217, 
+                43.50068
+              ], 
+              [
+                -91.730359, 
+                43.50068
+              ], 
+              [
+                -91.73333, 
+                43.500623
+              ], 
+              [
+                -91.736558, 
+                43.500561
+              ], 
+              [
+                -91.738446, 
+                43.500525
+              ], 
+              [
+                -91.761414, 
+                43.500637
+              ], 
+              [
+                -91.777688, 
+                43.500711
+              ], 
+              [
+                -91.77929, 
+                43.500803
+              ], 
+              [
+                -91.804925, 
+                43.500716
+              ], 
+              [
+                -91.807156, 
+                43.500648
+              ], 
+              [
+                -91.824848, 
+                43.500684
+              ], 
+              [
+                -91.941837, 
+                43.500554
+              ], 
+              [
+                -91.949879, 
+                43.500485
+              ], 
+              [
+                -92.079802, 
+                43.500647
+              ], 
+              [
+                -92.079954, 
+                43.500647
+              ], 
+              [
+                -92.08997, 
+                43.500684
+              ], 
+              [
+                -92.103886, 
+                43.500735
+              ], 
+              [
+                -92.178863, 
+                43.500713
+              ], 
+              [
+                -92.198788, 
+                43.500527
+              ], 
+              [
+                -92.277425, 
+                43.500466
+              ], 
+              [
+                -92.279084, 
+                43.500436
+              ], 
+              [
+                -92.368908, 
+                43.500454
+              ], 
+              [
+                -92.388298, 
+                43.500483
+              ], 
+              [
+                -92.40613, 
+                43.500476
+              ], 
+              [
+                -92.408832, 
+                43.500614
+              ], 
+              [
+                -92.448948, 
+                43.50042
+              ], 
+              [
+                -92.464505, 
+                43.500345
+              ], 
+              [
+                -92.553128, 
+                43.5003
+              ], 
+              [
+                -92.553161, 
+                43.5003
+              ], 
+              [
+                -92.649194, 
+                43.500049
+              ], 
+              [
+                -92.653318, 
+                43.50005
+              ], 
+              [
+                -92.67258, 
+                43.500055
+              ], 
+              [
+                -92.689033, 
+                43.500062
+              ], 
+              [
+                -92.692786, 
+                43.500063
+              ], 
+              [
+                -92.707312, 
+                43.500069
+              ], 
+              [
+                -92.752088, 
+                43.500084
+              ], 
+              [
+                -92.790317, 
+                43.499567
+              ], 
+              [
+                -92.870277, 
+                43.499548
+              ], 
+              [
+                -93.007871, 
+                43.499604
+              ], 
+              [
+                -93.024348, 
+                43.499572
+              ], 
+              [
+                -93.024429, 
+                43.499572
+              ], 
+              [
+                -93.049192, 
+                43.499571
+              ], 
+              [
+                -93.228861, 
+                43.499567
+              ], 
+              [
+                -93.2718, 
+                43.499356
+              ], 
+              [
+                -93.399035, 
+                43.499485
+              ], 
+              [
+                -93.428509, 
+                43.499478
+              ], 
+              [
+                -93.468563, 
+                43.499473
+              ], 
+              [
+                -93.472804, 
+                43.4994
+              ], 
+              [
+                -93.482009, 
+                43.499482
+              ], 
+              [
+                -93.488261, 
+                43.499417
+              ], 
+              [
+                -93.49735, 
+                43.499456
+              ], 
+              [
+                -93.497405, 
+                43.499456
+              ], 
+              [
+                -93.528482, 
+                43.499471
+              ], 
+              [
+                -93.532178, 
+                43.499472
+              ], 
+              [
+                -93.558631, 
+                43.499521
+              ], 
+              [
+                -93.576728, 
+                43.49952
+              ], 
+              [
+                -93.617131, 
+                43.499548
+              ], 
+              [
+                -93.648533, 
+                43.499559
+              ], 
+              [
+                -93.699345, 
+                43.499576
+              ], 
+              [
+                -93.704916, 
+                43.499568
+              ], 
+              [
+                -93.708771, 
+                43.499564
+              ], 
+              [
+                -93.716217, 
+                43.499563
+              ], 
+              [
+                -93.794285, 
+                43.499542
+              ], 
+              [
+                -93.795793, 
+                43.49952
+              ], 
+              [
+                -93.97076, 
+                43.499605
+              ], 
+              [
+                -93.970762, 
+                43.499605
+              ], 
+              [
+                -94.092894, 
+                43.500302
+              ], 
+              [
+                -94.094339, 
+                43.500302
+              ], 
+              [
+                -94.108068, 
+                43.5003
+              ], 
+              [
+                -94.10988, 
+                43.500283
+              ], 
+              [
+                -94.247965, 
+                43.500333
+              ], 
+              [
+                -94.377466, 
+                43.500379
+              ], 
+              [
+                -94.390597, 
+                43.500469
+              ], 
+              [
+                -94.442835, 
+                43.500583
+              ], 
+              [
+                -94.442848, 
+                43.500583
+              ], 
+              [
+                -94.447048, 
+                43.500639
+              ], 
+              [
+                -94.47042, 
+                43.50034
+              ], 
+              [
+                -94.560838, 
+                43.500377
+              ], 
+              [
+                -94.565665, 
+                43.50033
+              ], 
+              [
+                -94.615916, 
+                43.500544
+              ], 
+              [
+                -94.854555, 
+                43.500614
+              ], 
+              [
+                -94.857867, 
+                43.500615
+              ], 
+              [
+                -94.860192, 
+                43.500546
+              ], 
+              [
+                -94.872725, 
+                43.500564
+              ], 
+              [
+                -94.874235, 
+                43.500557
+              ], 
+              [
+                -94.887291, 
+                43.500502
+              ], 
+              [
+                -94.914523, 
+                43.50045
+              ], 
+              [
+                -94.914634, 
+                43.50045
+              ], 
+              [
+                -94.914905, 
+                43.50045
+              ], 
+              [
+                -94.914955, 
+                43.50045
+              ], 
+              [
+                -94.934625, 
+                43.50049
+              ], 
+              [
+                -94.954477, 
+                43.500467
+              ], 
+              [
+                -94.974359, 
+                43.500508
+              ], 
+              [
+                -94.99446, 
+                43.500523
+              ], 
+              [
+                -95.014245, 
+                43.500872
+              ], 
+              [
+                -95.034, 
+                43.500811
+              ], 
+              [
+                -95.053504, 
+                43.500769
+              ], 
+              [
+                -95.054289, 
+                43.50086
+              ], 
+              [
+                -95.114874, 
+                43.500667
+              ], 
+              [
+                -95.122633, 
+                43.500755
+              ], 
+              [
+                -95.167294, 
+                43.500771
+              ], 
+              [
+                -95.167891, 
+                43.500885
+              ], 
+              [
+                -95.180423, 
+                43.500774
+              ], 
+              [
+                -95.214938, 
+                43.500885
+              ], 
+              [
+                -95.250762, 
+                43.500406
+              ], 
+              [
+                -95.250969, 
+                43.500464
+              ], 
+              [
+                -95.374737, 
+                43.500314
+              ], 
+              [
+                -95.375269, 
+                43.500322
+              ], 
+              [
+                -95.387787, 
+                43.50024
+              ], 
+              [
+                -95.387812, 
+                43.50024
+              ], 
+              [
+                -95.387851, 
+                43.50024
+              ], 
+              [
+                -95.434199, 
+                43.500314
+              ], 
+              [
+                -95.434293, 
+                43.50036
+              ], 
+              [
+                -95.454433, 
+                43.500644
+              ], 
+              [
+                -95.454706, 
+                43.500648
+              ], 
+              [
+                -95.454706, 
+                43.500563
+              ], 
+              [
+                -95.475065, 
+                43.500335
+              ], 
+              [
+                -95.486737, 
+                43.500274
+              ], 
+              [
+                -95.486803, 
+                43.500246
+              ], 
+              [
+                -95.514774, 
+                43.499865
+              ], 
+              [
+                -95.740813, 
+                43.499894
+              ], 
+              [
+                -95.741569, 
+                43.499891
+              ], 
+              [
+                -95.821277, 
+                43.499965
+              ], 
+              [
+                -95.834421, 
+                43.499966
+              ], 
+              [
+                -95.860946, 
+                43.499966
+              ], 
+              [
+                -95.861152, 
+                43.499966
+              ], 
+              [
+                -96.053163, 
+                43.500176
+              ], 
+              [
+                -96.198484, 
+                43.500335
+              ], 
+              [
+                -96.198766, 
+                43.500312
+              ], 
+              [
+                -96.208814, 
+                43.500391
+              ], 
+              [
+                -96.332062, 
+                43.500415
+              ], 
+              [
+                -96.351059, 
+                43.500333
+              ], 
+              [
+                -96.453049, 
+                43.500415
+              ], 
+              [
+                -96.453352, 
+                43.58704
+              ], 
+              [
+                -96.453383, 
+                43.588183
+              ], 
+              [
+                -96.453356, 
+                43.607544
+              ], 
+              [
+                -96.453387, 
+                43.609944
+              ], 
+              [
+                -96.453408, 
+                43.675008
+              ], 
+              [
+                -96.45338, 
+                43.689637
+              ], 
+              [
+                -96.453281, 
+                43.791435
+              ], 
+              [
+                -96.453088, 
+                43.805123
+              ], 
+              [
+                -96.453264, 
+                43.849501
+              ], 
+              [
+                -96.453264, 
+                43.849506
+              ], 
+              [
+                -96.453264, 
+                43.849604
+              ], 
+              [
+                -96.453335, 
+                43.877029
+              ], 
+              [
+                -96.453304, 
+                43.878583
+              ], 
+              [
+                -96.453183, 
+                43.87865
+              ], 
+              [
+                -96.453352, 
+                43.949122
+              ], 
+              [
+                -96.453289, 
+                43.950814
+              ], 
+              [
+                -96.453165, 
+                43.96654
+              ], 
+              [
+                -96.453292, 
+                43.96718
+              ], 
+              [
+                -96.453389, 
+                43.97806
+              ], 
+              [
+                -96.453263, 
+                43.980277
+              ], 
+              [
+                -96.453328, 
+                43.992871
+              ], 
+              [
+                -96.453297, 
+                43.994723
+              ], 
+              [
+                -96.453116, 
+                44.006876
+              ], 
+              [
+                -96.453053, 
+                44.008887
+              ], 
+              [
+                -96.453373, 
+                44.023744
+              ], 
+              [
+                -96.453405, 
+                44.025413
+              ], 
+              [
+                -96.453313, 
+                44.03643
+              ], 
+              [
+                -96.453187, 
+                44.03835
+              ], 
+              [
+                -96.452774, 
+                44.19678
+              ], 
+              [
+                -96.452774, 
+                44.196895
+              ], 
+              [
+                -96.452673, 
+                44.254588
+              ], 
+              [
+                -96.452419, 
+                44.255274
+              ], 
+              [
+                -96.452369, 
+                44.268967
+              ], 
+              [
+                -96.452365, 
+                44.271972
+              ], 
+              [
+                -96.452617, 
+                44.282702
+              ], 
+              [
+                -96.4525, 
+                44.285687
+              ], 
+              [
+                -96.452334, 
+                44.297009
+              ], 
+              [
+                -96.452239, 
+                44.298655
+              ], 
+              [
+                -96.452369, 
+                44.312071
+              ], 
+              [
+                -96.452248, 
+                44.313362
+              ], 
+              [
+                -96.452372, 
+                44.325991
+              ], 
+              [
+                -96.452309, 
+                44.328094
+              ], 
+              [
+                -96.452248, 
+                44.340642
+              ], 
+              [
+                -96.452152, 
+                44.342219
+              ], 
+              [
+                -96.452305, 
+                44.345332
+              ], 
+              [
+                -96.452282, 
+                44.354857
+              ], 
+              [
+                -96.452213, 
+                44.360149
+              ], 
+              [
+                -96.452134, 
+                44.383679
+              ], 
+              [
+                -96.452073, 
+                44.38969
+              ], 
+              [
+                -96.451924, 
+                44.441549
+              ], 
+              [
+                -96.451816, 
+                44.460402
+              ], 
+              [
+                -96.452218, 
+                44.470873
+              ], 
+              [
+                -96.452122, 
+                44.473043
+              ], 
+              [
+                -96.451974, 
+                44.506849
+              ], 
+              [
+                -96.45201, 
+                44.516929
+              ], 
+              [
+                -96.452236, 
+                44.526871
+              ], 
+              [
+                -96.452016, 
+                44.543533
+              ], 
+              [
+                -96.45199, 
+                44.543639
+              ], 
+              [
+                -96.451888, 
+                44.544058
+              ], 
+              [
+                -96.45172, 
+                44.630708
+              ], 
+              [
+                -96.451761, 
+                44.631194
+              ], 
+              [
+                -96.451761, 
+                44.63135
+              ], 
+              [
+                -96.451543, 
+                44.703135
+              ], 
+              [
+                -96.451573, 
+                44.76051
+              ], 
+              [
+                -96.45138, 
+                44.761788
+              ], 
+              [
+                -96.45162, 
+                44.776191
+              ], 
+              [
+                -96.451823, 
+                44.790471
+              ], 
+              [
+                -96.451888, 
+                44.792299
+              ], 
+              [
+                -96.451829, 
+                44.797691
+              ], 
+              [
+                -96.451559, 
+                44.805468
+              ], 
+              [
+                -96.45156, 
+                44.805569
+              ], 
+              [
+                -96.452009, 
+                44.89008
+              ], 
+              [
+                -96.451853, 
+                44.906672
+              ], 
+              [
+                -96.452047, 
+                44.910695
+              ], 
+              [
+                -96.452347, 
+                44.962734
+              ], 
+              [
+                -96.452092, 
+                44.977475
+              ], 
+              [
+                -96.452092, 
+                44.977494
+              ], 
+              [
+                -96.45224, 
+                45.042347
+              ], 
+              [
+                -96.452177, 
+                45.050185
+              ], 
+              [
+                -96.45221, 
+                45.051602
+              ], 
+              [
+                -96.452219, 
+                45.093836
+              ], 
+              [
+                -96.452026, 
+                45.095138
+              ], 
+              [
+                -96.452418, 
+                45.122677
+              ], 
+              [
+                -96.452353, 
+                45.124071
+              ], 
+              [
+                -96.452304, 
+                45.178563
+              ], 
+              [
+                -96.452162, 
+                45.203109
+              ], 
+              [
+                -96.452152, 
+                45.204849
+              ], 
+              [
+                -96.452315, 
+                45.208986
+              ], 
+              [
+                -96.452948, 
+                45.268925
+              ], 
+              [
+                -96.452949, 
+                45.269059
+              ], 
+              [
+                -96.452791, 
+                45.28428
+              ], 
+              [
+                -96.453067, 
+                45.298115
+              ], 
+              [
+                -96.454094, 
+                45.301546
+              ], 
+              [
+                -96.47002, 
+                45.326832
+              ], 
+              [
+                -96.489065, 
+                45.357071
+              ], 
+              [
+                -96.521787, 
+                45.375645
+              ], 
+              [
+                -96.617726, 
+                45.408092
+              ], 
+              [
+                -96.680454, 
+                45.410499
+              ], 
+              [
+                -96.692541, 
+                45.417338
+              ], 
+              [
+                -96.732739, 
+                45.458737
+              ], 
+              [
+                -96.742509, 
+                45.478723
+              ], 
+              [
+                -96.745487, 
+                45.488712
+              ], 
+              [
+                -96.76528, 
+                45.521414
+              ], 
+              [
+                -96.784863, 
+                45.5413
+              ], 
+              [
+                -96.835451, 
+                45.586129
+              ], 
+              [
+                -96.843957, 
+                45.594003
+              ], 
+              [
+                -96.844334, 
+                45.594375
+              ], 
+              [
+                -96.849444, 
+                45.598944
+              ], 
+              [
+                -96.853646, 
+                45.602307
+              ], 
+              [
+                -96.857751, 
+                45.605962
+              ], 
+              [
+                -96.844211, 
+                45.639583
+              ], 
+              [
+                -96.840746, 
+                45.645294
+              ], 
+              [
+                -96.835769, 
+                45.649648
+              ], 
+              [
+                -96.745086, 
+                45.701576
+              ], 
+              [
+                -96.711157, 
+                45.717561
+              ], 
+              [
+                -96.672665, 
+                45.732336
+              ], 
+              [
+                -96.652226, 
+                45.746809
+              ], 
+              [
+                -96.583085, 
+                45.820024
+              ], 
+              [
+                -96.57974, 
+                45.82582
+              ], 
+              [
+                -96.576544, 
+                45.839945
+              ], 
+              [
+                -96.572984, 
+                45.861602
+              ], 
+              [
+                -96.568772, 
+                45.888072
+              ], 
+              [
+                -96.568281, 
+                45.891203
+              ], 
+              [
+                -96.568053, 
+                45.898697
+              ], 
+              [
+                -96.568315, 
+                45.902902
+              ], 
+              [
+                -96.568918, 
+                45.911426
+              ], 
+              [
+                -96.569265, 
+                45.911471
+              ], 
+              [
+                -96.569401, 
+                45.913946
+              ], 
+              [
+                -96.569069, 
+                45.914785
+              ], 
+              [
+                -96.564317, 
+                45.921074
+              ], 
+              [
+                -96.564518, 
+                45.926256
+              ], 
+              [
+                -96.56328, 
+                45.935238
+              ], 
+              [
+                -96.57035, 
+                45.963595
+              ], 
+              [
+                -96.577326, 
+                46.021757
+              ], 
+              [
+                -96.57794, 
+                46.026874
+              ], 
+              [
+                -96.566295, 
+                46.051416
+              ], 
+              [
+                -96.559271, 
+                46.058272
+              ], 
+              [
+                -96.55694, 
+                46.064601
+              ], 
+              [
+                -96.554835, 
+                46.084824
+              ], 
+              [
+                -96.557952, 
+                46.102442
+              ], 
+              [
+                -96.578362, 
+                46.170112
+              ], 
+              [
+                -96.585647, 
+                46.177309
+              ], 
+              [
+                -96.599087, 
+                46.263701
+              ], 
+              [
+                -96.598233, 
+                46.312563
+              ], 
+              [
+                -96.631586, 
+                46.353752
+              ], 
+              [
+                -96.669794, 
+                46.384644
+              ], 
+              [
+                -96.721999, 
+                46.439986
+              ], 
+              [
+                -96.716438, 
+                46.444567
+              ], 
+              [
+                -96.739054, 
+                46.543708
+              ], 
+              [
+                -96.783003, 
+                46.630405
+              ], 
+              [
+                -96.783009, 
+                46.630418
+              ], 
+              [
+                -96.783014, 
+                46.630647
+              ], 
+              [
+                -96.784205, 
+                46.686768
+              ], 
+              [
+                -96.802013, 
+                46.812464
+              ], 
+              [
+                -96.767458, 
+                46.905163
+              ], 
+              [
+                -96.780258, 
+                46.928263
+              ], 
+              [
+                -96.791558, 
+                46.934264
+              ], 
+              [
+                -96.823222, 
+                46.970861
+              ], 
+              [
+                -96.824598, 
+                46.993309
+              ], 
+              [
+                -96.82318, 
+                46.999965
+              ], 
+              [
+                -96.824807, 
+                47.124968
+              ], 
+              [
+                -96.826655, 
+                47.150539
+              ], 
+              [
+                -96.832946, 
+                47.237588
+              ], 
+              [
+                -96.833019, 
+                47.238095
+              ], 
+              [
+                -96.852676, 
+                47.374973
+              ], 
+              [
+                -96.862312, 
+                47.422333
+              ], 
+              [
+                -96.853768, 
+                47.499527
+              ], 
+              [
+                -96.853286, 
+                47.503881
+              ], 
+              [
+                -96.84243, 
+                47.508225
+              ], 
+              [
+                -96.850955, 
+                47.598287
+              ], 
+              [
+                -96.88574, 
+                47.664266
+              ], 
+              [
+                -96.890671, 
+                47.672153
+              ], 
+              [
+                -96.980391, 
+                47.815662
+              ], 
+              [
+                -97.000356, 
+                47.860915
+              ], 
+              [
+                -97.023156, 
+                47.873978
+              ], 
+              [
+                -97.088158, 
+                48.059515
+              ], 
+              [
+                -97.098275, 
+                48.07131
+              ], 
+              [
+                -97.123135, 
+                48.109497
+              ], 
+              [
+                -97.14751, 
+                48.170572
+              ], 
+              [
+                -97.147498, 
+                48.173227
+              ], 
+              [
+                -97.147401, 
+                48.193779
+              ], 
+              [
+                -97.14717, 
+                48.242966
+              ], 
+              [
+                -97.143148, 
+                48.246708
+              ], 
+              [
+                -97.134534, 
+                48.249737
+              ], 
+              [
+                -97.12993, 
+                48.249731
+              ], 
+              [
+                -97.11657, 
+                48.279661
+              ], 
+              [
+                -97.115581, 
+                48.323928
+              ], 
+              [
+                -97.126745, 
+                48.34214
+              ], 
+              [
+                -97.136373, 
+                48.352393
+              ], 
+              [
+                -97.145693, 
+                48.397431
+              ], 
+              [
+                -97.131479, 
+                48.406586
+              ], 
+              [
+                -97.123399, 
+                48.421201
+              ], 
+              [
+                -97.12677, 
+                48.520191
+              ], 
+              [
+                -97.150541, 
+                48.539449
+              ], 
+              [
+                -97.16111, 
+                48.543155
+              ], 
+              [
+                -97.163105, 
+                48.543855
+              ], 
+              [
+                -97.16305, 
+                48.543963
+              ], 
+              [
+                -97.092606, 
+                48.682033
+              ], 
+              [
+                -97.137571, 
+                48.749191
+              ], 
+              [
+                -97.157797, 
+                48.78768
+              ], 
+              [
+                -97.199549, 
+                48.881183
+              ], 
+              [
+                -97.23261, 
+                48.946561
+              ], 
+              [
+                -97.239155, 
+                48.967596
+              ], 
+              [
+                -97.238387, 
+                48.982631
+              ], 
+              [
+                -97.234005, 
+                48.99747
+              ], 
+              [
+                -97.229039, 
+                49.000687
+              ], 
+              [
+                -96.405412, 
+                48.99982
+              ], 
+              [
+                -95.368698, 
+                48.998729
+              ], 
+              [
+                -95.355819, 
+                48.998735
+              ], 
+              [
+                -95.340962, 
+                48.99874
+              ], 
+              [
+                -95.322946, 
+                48.998767
+              ], 
+              [
+                -95.319895, 
+                48.998769
+              ], 
+              [
+                -95.153711, 
+                48.998903
+              ], 
+              [
+                -95.153309, 
+                49.18488
+              ], 
+              [
+                -95.153424, 
+                49.249995
+              ], 
+              [
+                -95.153333, 
+                49.305655
+              ], 
+              [
+                -95.153319, 
+                49.30772
+              ], 
+              [
+                -95.153331, 
+                49.308442
+              ], 
+              [
+                -95.15333, 
+                49.309287
+              ], 
+              [
+                -95.153284, 
+                49.343409
+              ], 
+              [
+                -95.153344, 
+                49.343662
+              ], 
+              [
+                -95.153407, 
+                49.354397
+              ], 
+              [
+                -95.15333, 
+                49.365886
+              ], 
+              [
+                -95.153259, 
+                49.367691
+              ], 
+              [
+                -95.153293, 
+                49.369107
+              ], 
+              [
+                -95.15335, 
+                49.383079
+              ], 
+              [
+                -95.153314, 
+                49.384358
+              ], 
+              [
+                -95.126467, 
+                49.369439
+              ], 
+              [
+                -95.058404, 
+                49.35317
+              ], 
+              [
+                -95.014415, 
+                49.356405
+              ], 
+              [
+                -94.988908, 
+                49.368897
+              ], 
+              [
+                -94.957465, 
+                49.370186
+              ], 
+              [
+                -94.909273, 
+                49.350176
+              ], 
+              [
+                -94.824291, 
+                49.308834
+              ], 
+              [
+                -94.797527, 
+                49.197791
+              ], 
+              [
+                -94.773223, 
+                49.120733
+              ], 
+              [
+                -94.750221, 
+                49.099763
+              ], 
+              [
+                -94.750218, 
+                48.999992
+              ], 
+              [
+                -94.718932, 
+                48.999991
+              ], 
+              [
+                -94.683069, 
+                48.883929
+              ], 
+              [
+                -94.683127, 
+                48.883376
+              ], 
+              [
+                -94.690302, 
+                48.863711
+              ], 
+              [
+                -94.690246, 
+                48.863363
+              ], 
+              [
+                -94.690889, 
+                48.778066
+              ], 
+              [
+                -94.690863, 
+                48.778047
+              ], 
+              [
+                -94.646256, 
+                48.749975
+              ], 
+              [
+                -94.64515, 
+                48.748991
+              ], 
+              [
+                -94.628854, 
+                48.738789
+              ], 
+              [
+                -94.533057, 
+                48.701262
+              ], 
+              [
+                -94.468728, 
+                48.696324
+              ], 
+              [
+                -94.431854, 
+                48.706588
+              ], 
+              [
+                -94.416191, 
+                48.710948
+              ], 
+              [
+                -94.388848, 
+                48.711945
+              ], 
+              [
+                -94.308446, 
+                48.710239
+              ], 
+              [
+                -94.290737, 
+                48.707747
+              ], 
+              [
+                -94.260541, 
+                48.696381
+              ], 
+              [
+                -94.251169, 
+                48.683514
+              ], 
+              [
+                -94.250497, 
+                48.656654
+              ], 
+              [
+                -94.250191, 
+                48.656323
+              ], 
+              [
+                -94.244394, 
+                48.653442
+              ], 
+              [
+                -94.224276, 
+                48.649527
+              ], 
+              [
+                -94.126336, 
+                48.644447
+              ], 
+              [
+                -94.052452, 
+                48.64402
+              ], 
+              [
+                -93.840754, 
+                48.628548
+              ], 
+              [
+                -93.834323, 
+                48.624954
+              ], 
+              [
+                -93.822644, 
+                48.609067
+              ], 
+              [
+                -93.806763, 
+                48.577616
+              ], 
+              [
+                -93.805369, 
+                48.568393
+              ], 
+              [
+                -93.811201, 
+                48.542385
+              ], 
+              [
+                -93.818375, 
+                48.534442
+              ], 
+              [
+                -93.818253, 
+                48.530046
+              ], 
+              [
+                -93.815178, 
+                48.526508
+              ], 
+              [
+                -93.794454, 
+                48.516021
+              ], 
+              [
+                -93.771741, 
+                48.515825
+              ], 
+              [
+                -93.756483, 
+                48.515366
+              ], 
+              [
+                -93.662337, 
+                48.515708
+              ], 
+              [
+                -93.544361, 
+                48.529109
+              ], 
+              [
+                -93.467504, 
+                48.545664
+              ], 
+              [
+                -93.460798, 
+                48.550552
+              ], 
+              [
+                -93.456675, 
+                48.561834
+              ], 
+              [
+                -93.457046, 
+                48.567199
+              ], 
+              [
+                -93.461731, 
+                48.57403
+              ], 
+              [
+                -93.466007, 
+                48.587291
+              ], 
+              [
+                -93.464308, 
+                48.591792
+              ], 
+              [
+                -93.40366, 
+                48.607593
+              ], 
+              [
+                -93.367025, 
+                48.608283
+              ], 
+              [
+                -93.347528, 
+                48.62662
+              ], 
+              [
+                -93.254854, 
+                48.642784
+              ], 
+              [
+                -93.207398, 
+                48.642474
+              ], 
+              [
+                -93.17999, 
+                48.624926
+              ], 
+              [
+                -93.14242, 
+                48.624924
+              ], 
+              [
+                -93.088438, 
+                48.627597
+              ], 
+              [
+                -92.980484, 
+                48.624915
+              ], 
+              [
+                -92.728046, 
+                48.53929
+              ], 
+              [
+                -92.657881, 
+                48.546263
+              ], 
+              [
+                -92.634931, 
+                48.542873
+              ], 
+              [
+                -92.625739, 
+                48.518189
+              ], 
+              [
+                -92.625151, 
+                48.513048
+              ], 
+              [
+                -92.625374, 
+                48.512916
+              ], 
+              [
+                -92.631117, 
+                48.508252
+              ], 
+              [
+                -92.631137, 
+                48.508077
+              ], 
+              [
+                -92.627237, 
+                48.503383
+              ], 
+              [
+                -92.636696, 
+                48.499428
+              ], 
+              [
+                -92.661418, 
+                48.496557
+              ], 
+              [
+                -92.684866, 
+                48.497611
+              ], 
+              [
+                -92.698824, 
+                48.494892
+              ], 
+              [
+                -92.712562, 
+                48.463013
+              ], 
+              [
+                -92.687998, 
+                48.443889
+              ], 
+              [
+                -92.656027, 
+                48.436709
+              ], 
+              [
+                -92.575636, 
+                48.440827
+              ], 
+              [
+                -92.537202, 
+                48.447703
+              ], 
+              [
+                -92.507285, 
+                48.447875
+              ], 
+              [
+                -92.456325, 
+                48.414204
+              ], 
+              [
+                -92.415121, 
+                48.293841
+              ], 
+              [
+                -92.384387, 
+                48.242914
+              ], 
+              [
+                -92.325304, 
+                48.23703
+              ], 
+              [
+                -92.295053, 
+                48.276587
+              ], 
+              [
+                -92.295668, 
+                48.278118
+              ], 
+              [
+                -92.301451, 
+                48.288608
+              ], 
+              [
+                -92.306309, 
+                48.316442
+              ], 
+              [
+                -92.304561, 
+                48.322977
+              ], 
+              [
+                -92.288994, 
+                48.342991
+              ], 
+              [
+                -92.26228, 
+                48.354933
+              ], 
+              [
+                -92.055228, 
+                48.359213
+              ], 
+              [
+                -92.030872, 
+                48.325824
+              ], 
+              [
+                -91.989545, 
+                48.260214
+              ], 
+              [
+                -91.977555, 
+                48.24714
+              ], 
+              [
+                -91.977486, 
+                48.24634
+              ], 
+              [
+                -91.954432, 
+                48.251678
+              ], 
+              [
+                -91.954397, 
+                48.251199
+              ], 
+              [
+                -91.907597, 
+                48.238183
+              ], 
+              [
+                -91.906967, 
+                48.23777
+              ], 
+              [
+                -91.867641, 
+                48.218341
+              ], 
+              [
+                -91.798268, 
+                48.200086
+              ], 
+              [
+                -91.789693, 
+                48.197829
+              ], 
+              [
+                -91.742313, 
+                48.204491
+              ], 
+              [
+                -91.714931, 
+                48.19913
+              ], 
+              [
+                -91.710519, 
+                48.193898
+              ], 
+              [
+                -91.699336, 
+                48.144728
+              ], 
+              [
+                -91.708099, 
+                48.122985
+              ], 
+              [
+                -91.712226, 
+                48.116883
+              ], 
+              [
+                -91.71185, 
+                48.114598
+              ], 
+              [
+                -91.641062, 
+                48.097703
+              ], 
+              [
+                -91.569746, 
+                48.093348
+              ], 
+              [
+                -91.488067, 
+                48.068111
+              ], 
+              [
+                -91.340159, 
+                48.073236
+              ], 
+              [
+                -91.328738, 
+                48.070588
+              ], 
+              [
+                -91.290215, 
+                48.073945
+              ], 
+              [
+                -91.26638, 
+                48.078713
+              ], 
+              [
+                -91.250112, 
+                48.084087
+              ], 
+              [
+                -91.176181, 
+                48.125811
+              ], 
+              [
+                -91.140773, 
+                48.147689
+              ], 
+              [
+                -91.138311, 
+                48.151024
+              ], 
+              [
+                -91.138482, 
+                48.151458
+              ], 
+              [
+                -91.035858, 
+                48.189436
+              ], 
+              [
+                -91.03555, 
+                48.189459
+              ], 
+              [
+                -91.032942, 
+                48.190794
+              ], 
+              [
+                -90.976955, 
+                48.219452
+              ], 
+              [
+                -90.88548, 
+                48.245784
+              ], 
+              [
+                -90.847352, 
+                48.244443
+              ], 
+              [
+                -90.843624, 
+                48.243576
+              ], 
+              [
+                -90.839176, 
+                48.239511
+              ], 
+              [
+                -90.804207, 
+                48.177833
+              ], 
+              [
+                -90.789776, 
+                48.143472
+              ], 
+              [
+                -90.795308, 
+                48.135523
+              ], 
+              [
+                -90.793841, 
+                48.135569
+              ], 
+              [
+                -90.776133, 
+                48.122481
+              ], 
+              [
+                -90.775962, 
+                48.122229
+              ], 
+              [
+                -90.774225, 
+                48.118894
+              ], 
+              [
+                -90.774191, 
+                48.118575
+              ], 
+              [
+                -90.761625, 
+                48.098283
+              ], 
+              [
+                -90.751608, 
+                48.090968
+              ], 
+              [
+                -90.569763, 
+                48.106951
+              ], 
+              [
+                -90.495637, 
+                48.099444
+              ], 
+              [
+                -90.495398, 
+                48.099787
+              ], 
+              [
+                -90.452022, 
+                48.105006
+              ], 
+              [
+                -90.403219, 
+                48.105114
+              ], 
+              [
+                -90.344234, 
+                48.094447
+              ], 
+              [
+                -90.343484, 
+                48.095064
+              ], 
+              [
+                -90.337177, 
+                48.099771
+              ], 
+              [
+                -90.330052, 
+                48.102399
+              ], 
+              [
+                -90.312386, 
+                48.1053
+              ], 
+              [
+                -90.176605, 
+                48.112445
+              ], 
+              [
+                -90.136191, 
+                48.112136
+              ], 
+              [
+                -90.12509, 
+                48.107702
+              ], 
+              [
+                -90.1239, 
+                48.107131
+              ], 
+              [
+                -90.091639, 
+                48.10463
+              ], 
+              [
+                -90.073873, 
+                48.101138
+              ], 
+              [
+                -90.023595, 
+                48.084708
+              ], 
+              [
+                -89.997852, 
+                48.057567
+              ], 
+              [
+                -89.993822, 
+                48.049027
+              ], 
+              [
+                -89.996702, 
+                48.035391
+              ], 
+              [
+                -89.99305, 
+                48.028404
+              ], 
+              [
+                -89.968255, 
+                48.014482
+              ], 
+              [
+                -89.897414, 
+                47.987599
+              ], 
+              [
+                -89.873286, 
+                47.985419
+              ], 
+              [
+                -89.847571, 
+                47.992442
+              ], 
+              [
+                -89.819802, 
+                48.015099
+              ], 
+              [
+                -89.763967, 
+                48.022969
+              ], 
+              [
+                -89.749314, 
+                48.023325
+              ], 
+              [
+                -89.724184, 
+                48.019818
+              ], 
+              [
+                -89.687891, 
+                48.010826
+              ], 
+              [
+                -89.655793, 
+                48.007532
+              ], 
+              [
+                -89.564288, 
+                48.00293
+              ], 
+              [
+                -89.489226, 
+                48.014528
+              ], 
+              [
+                -89.491739, 
+                48.005212
+              ], 
+              [
+                -89.495344, 
+                48.002356
+              ], 
+              [
+                -89.541521, 
+                47.992841
+              ], 
+              [
+                -89.551555, 
+                47.987305
+              ], 
+              [
+                -89.552939, 
+                47.980731
+              ], 
+              [
+                -89.555015, 
+                47.974849
+              ], 
+              [
+                -89.572315, 
+                47.967238
+              ], 
+              [
+                -89.58823, 
+                47.9662
+              ], 
+              [
+                -89.59589, 
+                47.971046
+              ], 
+              [
+                -89.611412, 
+                47.980731
+              ], 
+              [
+                -89.624559, 
+                47.983153
+              ], 
+              [
+                -89.631825, 
+                47.980039
+              ], 
+              [
+                -89.637015, 
+                47.973465
+              ], 
+              [
+                -89.640129, 
+                47.96793
+              ], 
+              [
+                -89.639844, 
+                47.959826
+              ], 
+              [
+                -89.638285, 
+                47.954275
+              ], 
+              [
+                -89.639545, 
+                47.95359
+              ], 
+              [
+                -89.660616, 
+                47.951216
+              ], 
+              [
+                -89.697619, 
+                47.941288
+              ], 
+              [
+                -89.72973, 
+                47.925245
+              ], 
+              [
+                -89.737539, 
+                47.918183
+              ], 
+              [
+                -89.758714, 
+                47.906993
+              ], 
+              [
+                -89.793539, 
+                47.891358
+              ], 
+              [
+                -89.85396, 
+                47.873997
+              ], 
+              [
+                -89.87158, 
+                47.874194
+              ], 
+              [
+                -89.923649, 
+                47.862062
+              ], 
+              [
+                -89.930844, 
+                47.857723
+              ], 
+              [
+                -89.92752, 
+                47.850825
+              ], 
+              [
+                -89.933899, 
+                47.84676
+              ], 
+              [
+                -89.974296, 
+                47.830514
+              ], 
+              [
+                -90.01373, 
+                47.821373
+              ], 
+              [
+                -90.042761, 
+                47.817568
+              ], 
+              [
+                -90.072025, 
+                47.811105
+              ], 
+              [
+                -90.072241, 
+                47.807727
+              ], 
+              [
+                -90.075559, 
+                47.803303
+              ], 
+              [
+                -90.082354, 
+                47.803619
+              ], 
+              [
+                -90.08816, 
+                47.803041
+              ], 
+              [
+                -90.1168, 
+                47.79538
+              ], 
+              [
+                -90.132078, 
+                47.79572
+              ], 
+              [
+                -90.16079, 
+                47.792807
+              ], 
+              [
+                -90.178755, 
+                47.786414
+              ], 
+              [
+                -90.187636, 
+                47.77813
+              ], 
+              [
+                -90.229145, 
+                47.776198
+              ], 
+              [
+                -90.248794, 
+                47.772763
+              ], 
+              [
+                -90.295952, 
+                47.759054
+              ], 
+              [
+                -90.30634, 
+                47.756627
+              ], 
+              [
+                -90.313958, 
+                47.756681
+              ], 
+              [
+                -90.323446, 
+                47.753771
+              ], 
+              [
+                -90.330254, 
+                47.750892
+              ], 
+              [
+                -90.332686, 
+                47.746387
+              ], 
+              [
+                -90.386234, 
+                47.7411
+              ], 
+              [
+                -90.393823, 
+                47.738271
+              ], 
+              [
+                -90.42139, 
+                47.73515
+              ], 
+              [
+                -90.437712, 
+                47.731612
+              ], 
+              [
+                -90.441912, 
+                47.726404
+              ], 
+              [
+                -90.458365, 
+                47.7214
+              ], 
+              [
+                -90.537105, 
+                47.703055
+              ], 
+              [
+                -90.551291, 
+                47.690266
+              ], 
+              [
+                -90.584954, 
+                47.68074
+              ], 
+              [
+                -90.647837, 
+                47.656176
+              ], 
+              [
+                -90.686382, 
+                47.643594
+              ], 
+              [
+                -90.735927, 
+                47.624343
+              ], 
+              [
+                -90.86827, 
+                47.5569
+              ], 
+              [
+                -90.907494, 
+                47.532873
+              ], 
+              [
+                -90.910127, 
+                47.530178
+              ], 
+              [
+                -90.909801, 
+                47.526215
+              ], 
+              [
+                -90.914247, 
+                47.522639
+              ], 
+              [
+                -90.919375, 
+                47.519784
+              ], 
+              [
+                -90.927975, 
+                47.519008
+              ], 
+              [
+                -90.939072, 
+                47.514532
+              ], 
+              [
+                -91.023124, 
+                47.464964
+              ], 
+              [
+                -91.023125, 
+                47.464964
+              ], 
+              [
+                -91.032945, 
+                47.458236
+              ], 
+              [
+                -91.045646, 
+                47.456525
+              ], 
+              [
+                -91.077712, 
+                47.428767
+              ], 
+              [
+                -91.097569, 
+                47.413888
+              ], 
+              [
+                -91.106218, 
+                47.411806
+              ], 
+              [
+                -91.128131, 
+                47.399619
+              ], 
+              [
+                -91.131268, 
+                47.393567
+              ], 
+              [
+                -91.146958, 
+                47.381464
+              ], 
+              [
+                -91.156513, 
+                47.378816
+              ], 
+              [
+                -91.170037, 
+                47.366266
+              ], 
+              [
+                -91.188772, 
+                47.340082
+              ], 
+              [
+                -91.206248, 
+                47.329182
+              ], 
+              [
+                -91.238658, 
+                47.304976
+              ], 
+              [
+                -91.250163, 
+                47.29049
+              ], 
+              [
+                -91.262512, 
+                47.27929
+              ], 
+              [
+                -91.26595, 
+                47.279479
+              ], 
+              [
+                -91.270697, 
+                47.277134
+              ], 
+              [
+                -91.288478, 
+                47.26596
+              ], 
+              [
+                -91.326019, 
+                47.238993
+              ], 
+              [
+                -91.35385, 
+                47.212686
+              ], 
+              [
+                -91.357803, 
+                47.206743
+              ], 
+              [
+                -91.374191, 
+                47.1978
+              ], 
+              [
+                -91.387021, 
+                47.187293
+              ], 
+              [
+                -91.398455, 
+                47.183916
+              ], 
+              [
+                -91.418805, 
+                47.172152
+              ], 
+              [
+                -91.452031, 
+                47.145158
+              ], 
+              [
+                -91.456965, 
+                47.139156
+              ], 
+              [
+                -91.477351, 
+                47.125667
+              ], 
+              [
+                -91.497902, 
+                47.122579
+              ], 
+              [
+                -91.506998, 
+                47.118489
+              ], 
+              [
+                -91.518793, 
+                47.108121
+              ], 
+              [
+                -91.573817, 
+                47.089917
+              ], 
+              [
+                -91.591508, 
+                47.068684
+              ], 
+              [
+                -91.600969, 
+                47.063425
+              ], 
+              [
+                -91.604949, 
+                47.063309
+              ], 
+              [
+                -91.613173, 
+                47.059192
+              ], 
+              [
+                -91.626824, 
+                47.049953
+              ], 
+              [
+                -91.637164, 
+                47.040429
+              ], 
+              [
+                -91.644564, 
+                47.026491
+              ], 
+              [
+                -91.660248, 
+                47.019288
+              ], 
+              [
+                -91.666477, 
+                47.014297
+              ], 
+              [
+                -91.704649, 
+                47.005246
+              ], 
+              [
+                -91.737098, 
+                46.982853
+              ], 
+              [
+                -91.7773, 
+                46.951799
+              ], 
+              [
+                -91.780675, 
+                46.945881
+              ], 
+              [
+                -91.794039, 
+                46.939676
+              ], 
+              [
+                -91.806851, 
+                46.933727
+              ], 
+              [
+                -91.826068, 
+                46.927199
+              ], 
+              [
+                -91.834852, 
+                46.927135
+              ], 
+              [
+                -91.841349, 
+                46.925215
+              ], 
+              [
+                -91.871286, 
+                46.908352
+              ], 
+              [
+                -91.883238, 
+                46.905728
+              ], 
+              [
+                -91.906483, 
+                46.891236
+              ], 
+              [
+                -91.914984, 
+                46.883836
+              ], 
+              [
+                -91.952985, 
+                46.867037
+              ], 
+              [
+                -91.985086, 
+                46.849637
+              ], 
+              [
+                -91.997987, 
+                46.838737
+              ], 
+              [
+                -92.013405, 
+                46.833727
+              ], 
+              [
+                -92.058888, 
+                46.809938
+              ], 
+              [
+                -92.062088, 
+                46.804038
+              ], 
+              [
+                -92.086089, 
+                46.794339
+              ], 
+              [
+                -92.094089, 
+                46.787839
+              ], 
+              [
+                -92.088289, 
+                46.773639
+              ], 
+              [
+                -92.06449, 
+                46.745439
+              ], 
+              [
+                -92.025789, 
+                46.710839
+              ], 
+              [
+                -92.01529, 
+                46.706469
+              ], 
+              [
+                -92.020289, 
+                46.704039
+              ], 
+              [
+                -92.02472, 
+                46.705624
+              ], 
+              [
+                -92.03399, 
+                46.708939
+              ], 
+              [
+                -92.08949, 
+                46.74924
+              ], 
+              [
+                -92.11659, 
+                46.74864
+              ], 
+              [
+                -92.170413, 
+                46.725553
+              ], 
+              [
+                -92.172997, 
+                46.724444
+              ], 
+              [
+                -92.189091, 
+                46.717541
+              ], 
+              [
+                -92.195321, 
+                46.709626
+              ], 
+              [
+                -92.196264, 
+                46.703966
+              ], 
+              [
+                -92.196435, 
+                46.702938
+              ], 
+              [
+                -92.196575, 
+                46.7021
+              ], 
+              [
+                -92.194562, 
+                46.697672
+              ], 
+              [
+                -92.194087, 
+                46.696626
+              ], 
+              [
+                -92.193439, 
+                46.695202
+              ], 
+              [
+                -92.187795, 
+                46.690185
+              ], 
+              [
+                -92.187592, 
+                46.678941
+              ], 
+              [
+                -92.191075, 
+                46.673278
+              ], 
+              [
+                -92.191501, 
+                46.672586
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 10, 
+      "properties": {
+        "CENSUSAREA": 79626.743, 
+        "GEO_ID": "0400000US27", 
+        "ISO": "US-MN", 
+        "LSAD": "", 
+        "NAME": "Minnesota", 
+        "NAME_1": "Minnesota", 
+        "STATE": "MN"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -89.095623, 
+                30.231767
+              ], 
+              [
+                -89.077259, 
+                30.23168
+              ], 
+              [
+                -89.067128, 
+                30.250199
+              ], 
+              [
+                -89.063989, 
+                30.246299
+              ], 
+              [
+                -89.065097, 
+                30.239929
+              ], 
+              [
+                -89.073538, 
+                30.223318
+              ], 
+              [
+                -89.091469, 
+                30.202305
+              ], 
+              [
+                -89.118222, 
+                30.223343
+              ], 
+              [
+                -89.156738, 
+                30.230699
+              ], 
+              [
+                -89.095623, 
+                30.231767
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -88.90037, 
+                30.224576
+              ], 
+              [
+                -88.909752, 
+                30.220405
+              ], 
+              [
+                -88.945498, 
+                30.209646
+              ], 
+              [
+                -88.974672, 
+                30.207391
+              ], 
+              [
+                -88.980239, 
+                30.207962
+              ], 
+              [
+                -88.984249, 
+                30.21032
+              ], 
+              [
+                -88.982219, 
+                30.211627
+              ], 
+              [
+                -88.976811, 
+                30.210987
+              ], 
+              [
+                -88.947872, 
+                30.214179
+              ], 
+              [
+                -88.920511, 
+                30.220578
+              ], 
+              [
+                -88.908885, 
+                30.225437
+              ], 
+              [
+                -88.889797, 
+                30.239665
+              ], 
+              [
+                -88.877824, 
+                30.242442
+              ], 
+              [
+                -88.87366, 
+                30.241748
+              ], 
+              [
+                -88.90037, 
+                30.224576
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -88.506999, 
+                30.214348
+              ], 
+              [
+                -88.500011, 
+                30.214044
+              ], 
+              [
+                -88.465713, 
+                30.20254
+              ], 
+              [
+                -88.453444, 
+                30.201236
+              ], 
+              [
+                -88.442654, 
+                30.202314
+              ], 
+              [
+                -88.430332, 
+                30.208548
+              ], 
+              [
+                -88.401466, 
+                30.210172
+              ], 
+              [
+                -88.404581, 
+                30.206162
+              ], 
+              [
+                -88.428301, 
+                30.198511
+              ], 
+              [
+                -88.453654, 
+                30.196584
+              ], 
+              [
+                -88.493523, 
+                30.205945
+              ], 
+              [
+                -88.502752, 
+                30.210506
+              ], 
+              [
+                -88.506999, 
+                30.214348
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -88.710719, 
+                30.250799
+              ], 
+              [
+                -88.656804, 
+                30.233956
+              ], 
+              [
+                -88.573044, 
+                30.22264
+              ], 
+              [
+                -88.568056, 
+                30.222732
+              ], 
+              [
+                -88.562067, 
+                30.227476
+              ], 
+              [
+                -88.565576, 
+                30.222847
+              ], 
+              [
+                -88.569138, 
+                30.221357
+              ], 
+              [
+                -88.587424, 
+                30.219154
+              ], 
+              [
+                -88.633743, 
+                30.226342
+              ], 
+              [
+                -88.665857, 
+                30.228847
+              ], 
+              [
+                -88.71183, 
+                30.242662
+              ], 
+              [
+                -88.740647, 
+                30.238665
+              ], 
+              [
+                -88.752782, 
+                30.238803
+              ], 
+              [
+                -88.764022, 
+                30.241488
+              ], 
+              [
+                -88.771991, 
+                30.245523
+              ], 
+              [
+                -88.73255, 
+                30.246322
+              ], 
+              [
+                -88.718104, 
+                30.252931
+              ], 
+              [
+                -88.710719, 
+                30.250799
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -89.198288, 
+                34.994484
+              ], 
+              [
+                -89.139136, 
+                34.994307
+              ], 
+              [
+                -89.138997, 
+                34.99433
+              ], 
+              [
+                -89.017128, 
+                34.994649
+              ], 
+              [
+                -88.823049, 
+                34.995157
+              ], 
+              [
+                -88.786612, 
+                34.995252
+              ], 
+              [
+                -88.469877, 
+                34.996033
+              ], 
+              [
+                -88.469801, 
+                34.996052
+              ], 
+              [
+                -88.380508, 
+                34.99561
+              ], 
+              [
+                -88.363531, 
+                34.99559
+              ], 
+              [
+                -88.258111, 
+                34.995463
+              ], 
+              [
+                -88.253825, 
+                34.995553
+              ], 
+              [
+                -88.200064, 
+                34.995634
+              ], 
+              [
+                -88.125038, 
+                34.902227
+              ], 
+              [
+                -88.097888, 
+                34.892202
+              ], 
+              [
+                -88.118407, 
+                34.724292
+              ], 
+              [
+                -88.138719, 
+                34.589215
+              ], 
+              [
+                -88.139246, 
+                34.587795
+              ], 
+              [
+                -88.139988, 
+                34.581703
+              ], 
+              [
+                -88.155305, 
+                34.463087
+              ], 
+              [
+                -88.165634, 
+                34.383102
+              ], 
+              [
+                -88.16591, 
+                34.380926
+              ], 
+              [
+                -88.173632, 
+                34.321054
+              ], 
+              [
+                -88.175867, 
+                34.302171
+              ], 
+              [
+                -88.176889, 
+                34.293858
+              ], 
+              [
+                -88.203597, 
+                34.08653
+              ], 
+              [
+                -88.207229, 
+                34.058333
+              ], 
+              [
+                -88.226428, 
+                33.912875
+              ], 
+              [
+                -88.226517, 
+                33.911665
+              ], 
+              [
+                -88.226517, 
+                33.911551
+              ], 
+              [
+                -88.24839, 
+                33.744908
+              ], 
+              [
+                -88.254445, 
+                33.698779
+              ], 
+              [
+                -88.254622, 
+                33.69578
+              ], 
+              [
+                -88.256131, 
+                33.68286
+              ], 
+              [
+                -88.256343, 
+                33.682053
+              ], 
+              [
+                -88.267005, 
+                33.594229
+              ], 
+              [
+                -88.267148, 
+                33.591989
+              ], 
+              [
+                -88.26816, 
+                33.58504
+              ], 
+              [
+                -88.269076, 
+                33.576929
+              ], 
+              [
+                -88.269532, 
+                33.572894
+              ], 
+              [
+                -88.27005, 
+                33.570819
+              ], 
+              [
+                -88.274619, 
+                33.534008
+              ], 
+              [
+                -88.276805, 
+                33.516463
+              ], 
+              [
+                -88.277421, 
+                33.512436
+              ], 
+              [
+                -88.291127, 
+                33.399061
+              ], 
+              [
+                -88.304514, 
+                33.28832
+              ], 
+              [
+                -88.340432, 
+                32.991199
+              ], 
+              [
+                -88.347692, 
+                32.929059
+              ], 
+              [
+                -88.382985, 
+                32.626954
+              ], 
+              [
+                -88.383039, 
+                32.626679
+              ], 
+              [
+                -88.388739, 
+                32.578116
+              ], 
+              [
+                -88.403789, 
+                32.449885
+              ], 
+              [
+                -88.403789, 
+                32.44977
+              ], 
+              [
+                -88.421453, 
+                32.30868
+              ], 
+              [
+                -88.431707, 
+                32.227662
+              ], 
+              [
+                -88.43865, 
+                32.172806
+              ], 
+              [
+                -88.43871, 
+                32.172078
+              ], 
+              [
+                -88.454959, 
+                32.040576
+              ], 
+              [
+                -88.455039, 
+                32.039719
+              ], 
+              [
+                -88.46866, 
+                31.933173
+              ], 
+              [
+                -88.468879, 
+                31.930262
+              ], 
+              [
+                -88.46996, 
+                31.893759
+              ], 
+              [
+                -88.471214, 
+                31.851385
+              ], 
+              [
+                -88.471106, 
+                31.850949
+              ], 
+              [
+                -88.464428, 
+                31.697952
+              ], 
+              [
+                -88.464425, 
+                31.697881
+              ], 
+              [
+                -88.459722, 
+                31.624002
+              ], 
+              [
+                -88.459478, 
+                31.621652
+              ], 
+              [
+                -88.449446, 
+                31.435837
+              ], 
+              [
+                -88.44866, 
+                31.421277
+              ], 
+              [
+                -88.448686, 
+                31.420888
+              ], 
+              [
+                -88.445209, 
+                31.355969
+              ], 
+              [
+                -88.445182, 
+                31.355855
+              ], 
+              [
+                -88.438211, 
+                31.231252
+              ], 
+              [
+                -88.438104, 
+                31.23006
+              ], 
+              [
+                -88.432007, 
+                31.114298
+              ], 
+              [
+                -88.425807, 
+                31.001123
+              ], 
+              [
+                -88.425729, 
+                31.000183
+              ], 
+              [
+                -88.425635, 
+                30.998301
+              ], 
+              [
+                -88.412462, 
+                30.735598
+              ], 
+              [
+                -88.41227, 
+                30.731771
+              ], 
+              [
+                -88.412209, 
+                30.730395
+              ], 
+              [
+                -88.41155, 
+                30.712956
+              ], 
+              [
+                -88.411339, 
+                30.706334
+              ], 
+              [
+                -88.409571, 
+                30.668731
+              ], 
+              [
+                -88.40807, 
+                30.63697
+              ], 
+              [
+                -88.407462, 
+                30.631653
+              ], 
+              [
+                -88.407484, 
+                30.622736
+              ], 
+              [
+                -88.404013, 
+                30.54506
+              ], 
+              [
+                -88.403931, 
+                30.543359
+              ], 
+              [
+                -88.403547, 
+                30.5331
+              ], 
+              [
+                -88.402283, 
+                30.510852
+              ], 
+              [
+                -88.395023, 
+                30.369425
+              ], 
+              [
+                -88.397236, 
+                30.367689
+              ], 
+              [
+                -88.399062, 
+                30.360744
+              ], 
+              [
+                -88.397082, 
+                30.354785
+              ], 
+              [
+                -88.39415, 
+                30.352493
+              ], 
+              [
+                -88.39398, 
+                30.349307
+              ], 
+              [
+                -88.401181, 
+                30.344382
+              ], 
+              [
+                -88.409927, 
+                30.342115
+              ], 
+              [
+                -88.418811, 
+                30.353911
+              ], 
+              [
+                -88.433891, 
+                30.354652
+              ], 
+              [
+                -88.446495, 
+                30.347753
+              ], 
+              [
+                -88.446625, 
+                30.337671
+              ], 
+              [
+                -88.45381, 
+                30.329626
+              ], 
+              [
+                -88.471875, 
+                30.32002
+              ], 
+              [
+                -88.480117, 
+                30.318345
+              ], 
+              [
+                -88.504802, 
+                30.321472
+              ], 
+              [
+                -88.506226, 
+                30.322393
+              ], 
+              [
+                -88.506334, 
+                30.327398
+              ], 
+              [
+                -88.522494, 
+                30.340092
+              ], 
+              [
+                -88.536214, 
+                30.343299
+              ], 
+              [
+                -88.579483, 
+                30.34419
+              ], 
+              [
+                -88.596349, 
+                30.358365
+              ], 
+              [
+                -88.599249, 
+                30.358933
+              ], 
+              [
+                -88.601762, 
+                30.355876
+              ], 
+              [
+                -88.613745, 
+                30.353108
+              ], 
+              [
+                -88.624523, 
+                30.358713
+              ], 
+              [
+                -88.66382, 
+                30.362099
+              ], 
+              [
+                -88.679575, 
+                30.35571
+              ], 
+              [
+                -88.692164, 
+                30.347302
+              ], 
+              [
+                -88.700587, 
+                30.343689
+              ], 
+              [
+                -88.714077, 
+                30.342186
+              ], 
+              [
+                -88.728893, 
+                30.342671
+              ], 
+              [
+                -88.746945, 
+                30.347622
+              ], 
+              [
+                -88.771742, 
+                30.365403
+              ], 
+              [
+                -88.811615, 
+                30.384907
+              ], 
+              [
+                -88.812576, 
+                30.38768
+              ], 
+              [
+                -88.810127, 
+                30.391298
+              ], 
+              [
+                -88.810227, 
+                30.394698
+              ], 
+              [
+                -88.823724, 
+                30.402376
+              ], 
+              [
+                -88.841328, 
+                30.409598
+              ], 
+              [
+                -88.845609, 
+                30.405266
+              ], 
+              [
+                -88.857828, 
+                30.392898
+              ], 
+              [
+                -88.851442, 
+                30.375355
+              ], 
+              [
+                -88.880526, 
+                30.3866
+              ], 
+              [
+                -88.883789, 
+                30.389172
+              ], 
+              [
+                -88.884829, 
+                30.391998
+              ], 
+              [
+                -88.89393, 
+                30.393398
+              ], 
+              [
+                -88.922031, 
+                30.393798
+              ], 
+              [
+                -88.971233, 
+                30.390798
+              ], 
+              [
+                -89.016334, 
+                30.383898
+              ], 
+              [
+                -89.083237, 
+                30.368097
+              ], 
+              [
+                -89.18684, 
+                30.331197
+              ], 
+              [
+                -89.220442, 
+                30.322497
+              ], 
+              [
+                -89.271833, 
+                30.305491
+              ], 
+              [
+                -89.285744, 
+                30.303097
+              ], 
+              [
+                -89.291444, 
+                30.303296
+              ], 
+              [
+                -89.294444, 
+                30.307596
+              ], 
+              [
+                -89.291844, 
+                30.328096
+              ], 
+              [
+                -89.287844, 
+                30.333196
+              ], 
+              [
+                -89.281564, 
+                30.33198
+              ], 
+              [
+                -89.279818, 
+                30.34979
+              ], 
+              [
+                -89.292499, 
+                30.365635
+              ], 
+              [
+                -89.315067, 
+                30.375408
+              ], 
+              [
+                -89.335942, 
+                30.374016
+              ], 
+              [
+                -89.340947, 
+                30.372896
+              ], 
+              [
+                -89.349447, 
+                30.370995
+              ], 
+              [
+                -89.353248, 
+                30.368795
+              ], 
+              [
+                -89.363848, 
+                30.357395
+              ], 
+              [
+                -89.366116, 
+                30.352169
+              ], 
+              [
+                -89.345934, 
+                30.343573
+              ], 
+              [
+                -89.338847, 
+                30.342995
+              ], 
+              [
+                -89.332546, 
+                30.337895
+              ], 
+              [
+                -89.322345, 
+                30.319296
+              ], 
+              [
+                -89.322545, 
+                30.314896
+              ], 
+              [
+                -89.329946, 
+                30.302896
+              ], 
+              [
+                -89.344746, 
+                30.293196
+              ], 
+              [
+                -89.358546, 
+                30.288896
+              ], 
+              [
+                -89.365747, 
+                30.284896
+              ], 
+              [
+                -89.379547, 
+                30.270396
+              ], 
+              [
+                -89.383747, 
+                30.267796
+              ], 
+              [
+                -89.419348, 
+                30.25432
+              ], 
+              [
+                -89.424624, 
+                30.245391
+              ], 
+              [
+                -89.424493, 
+                30.239092
+              ], 
+              [
+                -89.430428, 
+                30.223218
+              ], 
+              [
+                -89.447465, 
+                30.205098
+              ], 
+              [
+                -89.44791, 
+                30.185352
+              ], 
+              [
+                -89.461275, 
+                30.174745
+              ], 
+              [
+                -89.463595, 
+                30.173943
+              ], 
+              [
+                -89.469792, 
+                30.176278
+              ], 
+              [
+                -89.475824, 
+                30.191561
+              ], 
+              [
+                -89.480214, 
+                30.193751
+              ], 
+              [
+                -89.490099, 
+                30.187677
+              ], 
+              [
+                -89.503231, 
+                30.183051
+              ], 
+              [
+                -89.522814, 
+                30.183076
+              ], 
+              [
+                -89.524504, 
+                30.180753
+              ], 
+              [
+                -89.572654, 
+                30.180897
+              ], 
+              [
+                -89.580754, 
+                30.186197
+              ], 
+              [
+                -89.607655, 
+                30.217096
+              ], 
+              [
+                -89.64344, 
+                30.287682
+              ], 
+              [
+                -89.643575, 
+                30.293099
+              ], 
+              [
+                -89.640694, 
+                30.301313
+              ], 
+              [
+                -89.629877, 
+                30.321017
+              ], 
+              [
+                -89.629941, 
+                30.339449
+              ], 
+              [
+                -89.68341, 
+                30.451793
+              ], 
+              [
+                -89.69058, 
+                30.458773
+              ], 
+              [
+                -89.724614, 
+                30.491902
+              ], 
+              [
+                -89.732577, 
+                30.492502
+              ], 
+              [
+                -89.76057, 
+                30.515761
+              ], 
+              [
+                -89.806843, 
+                30.572039
+              ], 
+              [
+                -89.823384, 
+                30.608535
+              ], 
+              [
+                -89.842585, 
+                30.666005
+              ], 
+              [
+                -89.842596, 
+                30.666038
+              ], 
+              [
+                -89.826175, 
+                30.736594
+              ], 
+              [
+                -89.789863, 
+                30.851527
+              ], 
+              [
+                -89.77341, 
+                30.897693
+              ], 
+              [
+                -89.770931, 
+                30.899432
+              ], 
+              [
+                -89.756543, 
+                30.900431
+              ], 
+              [
+                -89.744789, 
+                30.918933
+              ], 
+              [
+                -89.728382, 
+                30.971141
+              ], 
+              [
+                -89.728148, 
+                31.0023
+              ], 
+              [
+                -89.728147, 
+                31.002431
+              ], 
+              [
+                -89.732504, 
+                31.004831
+              ], 
+              [
+                -89.752642, 
+                31.001853
+              ], 
+              [
+                -89.816429, 
+                31.002084
+              ], 
+              [
+                -89.824617, 
+                31.00206
+              ], 
+              [
+                -89.835542, 
+                31.002059
+              ], 
+              [
+                -89.835908, 
+                31.002059
+              ], 
+              [
+                -89.856862, 
+                31.002075
+              ], 
+              [
+                -89.892708, 
+                31.001759
+              ], 
+              [
+                -89.897516, 
+                31.001913
+              ], 
+              [
+                -89.923119, 
+                31.001446
+              ], 
+              [
+                -89.927161, 
+                31.001437
+              ], 
+              [
+                -89.972802, 
+                31.001392
+              ], 
+              [
+                -89.97543, 
+                31.001692
+              ], 
+              [
+                -90.005332, 
+                31.001364
+              ], 
+              [
+                -90.022185, 
+                31.001302
+              ], 
+              [
+                -90.029574, 
+                31.00119
+              ], 
+              [
+                -90.050706, 
+                31.001215
+              ], 
+              [
+                -90.128406, 
+                31.001047
+              ], 
+              [
+                -90.131395, 
+                31.000924
+              ], 
+              [
+                -90.164278, 
+                31.001025
+              ], 
+              [
+                -90.164676, 
+                31.00098
+              ], 
+              [
+                -90.259555, 
+                31.000657
+              ], 
+              [
+                -90.346007, 
+                31.000363
+              ], 
+              [
+                -90.34723, 
+                31.000359
+              ], 
+              [
+                -90.347241, 
+                31.000359
+              ], 
+              [
+                -90.369371, 
+                31.000335
+              ], 
+              [
+                -90.422117, 
+                30.99981
+              ], 
+              [
+                -90.426849, 
+                30.999776
+              ], 
+              [
+                -90.437351, 
+                30.99973
+              ], 
+              [
+                -90.441725, 
+                30.999729
+              ], 
+              [
+                -90.442479, 
+                30.999722
+              ], 
+              [
+                -90.474094, 
+                30.999798
+              ], 
+              [
+                -90.475928, 
+                30.99974
+              ], 
+              [
+                -90.477284, 
+                30.999717
+              ], 
+              [
+                -90.485876, 
+                30.99974
+              ], 
+              [
+                -90.486749, 
+                30.999693
+              ], 
+              [
+                -90.547615, 
+                30.999723
+              ], 
+              [
+                -90.567195, 
+                30.999733
+              ], 
+              [
+                -90.583518, 
+                30.999698
+              ], 
+              [
+                -90.584448, 
+                30.999698
+              ], 
+              [
+                -90.587373, 
+                30.999604
+              ], 
+              [
+                -90.588676, 
+                30.99965
+              ], 
+              [
+                -90.648721, 
+                30.999486
+              ], 
+              [
+                -90.651193, 
+                30.99951
+              ], 
+              [
+                -90.734473, 
+                30.999214
+              ], 
+              [
+                -90.734552, 
+                30.999222
+              ], 
+              [
+                -90.758775, 
+                30.999583
+              ], 
+              [
+                -90.769333, 
+                30.999374
+              ], 
+              [
+                -90.775981, 
+                30.999491
+              ], 
+              [
+                -90.779858, 
+                30.999457
+              ], 
+              [
+                -90.783745, 
+                30.999447
+              ], 
+              [
+                -90.825829, 
+                30.99936
+              ], 
+              [
+                -90.826027, 
+                30.99936
+              ], 
+              [
+                -91.060217, 
+                30.998935
+              ], 
+              [
+                -91.06827, 
+                30.99892
+              ], 
+              [
+                -91.080814, 
+                30.998909
+              ], 
+              [
+                -91.108114, 
+                30.998857
+              ], 
+              [
+                -91.108291, 
+                30.99888
+              ], 
+              [
+                -91.17614, 
+                30.999144
+              ], 
+              [
+                -91.176209, 
+                30.999144
+              ], 
+              [
+                -91.224068, 
+                30.999183
+              ], 
+              [
+                -91.224839, 
+                30.999183
+              ], 
+              [
+                -91.423621, 
+                30.998984
+              ], 
+              [
+                -91.425749, 
+                30.999007
+              ], 
+              [
+                -91.538727, 
+                30.999388
+              ], 
+              [
+                -91.625118, 
+                30.999167
+              ], 
+              [
+                -91.636942, 
+                30.999416
+              ], 
+              [
+                -91.58467, 
+                31.020185
+              ], 
+              [
+                -91.571695, 
+                31.029782
+              ], 
+              [
+                -91.562468, 
+                31.043213
+              ], 
+              [
+                -91.559907, 
+                31.054119
+              ], 
+              [
+                -91.561283, 
+                31.060906
+              ], 
+              [
+                -91.56415, 
+                31.06683
+              ], 
+              [
+                -91.577373, 
+                31.078179
+              ], 
+              [
+                -91.604197, 
+                31.154545
+              ], 
+              [
+                -91.599965, 
+                31.192318
+              ], 
+              [
+                -91.59849, 
+                31.205485
+              ], 
+              [
+                -91.574493, 
+                31.261289
+              ], 
+              [
+                -91.547588, 
+                31.264444
+              ], 
+              [
+                -91.522397, 
+                31.273423
+              ], 
+              [
+                -91.515614, 
+                31.27821
+              ], 
+              [
+                -91.508858, 
+                31.291644
+              ], 
+              [
+                -91.51982, 
+                31.311228
+              ], 
+              [
+                -91.531201, 
+                31.326625
+              ], 
+              [
+                -91.539904, 
+                31.337336
+              ], 
+              [
+                -91.541242, 
+                31.35675
+              ], 
+              [
+                -91.525386, 
+                31.378904
+              ], 
+              [
+                -91.513795, 
+                31.386875
+              ], 
+              [
+                -91.505093, 
+                31.400933
+              ], 
+              [
+                -91.500406, 
+                31.419008
+              ], 
+              [
+                -91.505301, 
+                31.432945
+              ], 
+              [
+                -91.510356, 
+                31.438928
+              ], 
+              [
+                -91.51513, 
+                31.449206
+              ], 
+              [
+                -91.52292, 
+                31.519841
+              ], 
+              [
+                -91.51581, 
+                31.530894
+              ], 
+              [
+                -91.511217, 
+                31.532612
+              ], 
+              [
+                -91.479718, 
+                31.530366
+              ], 
+              [
+                -91.450017, 
+                31.539666
+              ], 
+              [
+                -91.437616, 
+                31.546166
+              ], 
+              [
+                -91.422691, 
+                31.55439
+              ], 
+              [
+                -91.416683, 
+                31.561599
+              ], 
+              [
+                -91.415482, 
+                31.567006
+              ], 
+              [
+                -91.425094, 
+                31.57782
+              ], 
+              [
+                -91.437711, 
+                31.580824
+              ], 
+              [
+                -91.44862, 
+                31.583032
+              ], 
+              [
+                -91.458679, 
+                31.583226
+              ], 
+              [
+                -91.470754, 
+                31.58563
+              ], 
+              [
+                -91.477362, 
+                31.592239
+              ], 
+              [
+                -91.477963, 
+                31.598247
+              ], 
+              [
+                -91.477963, 
+                31.604855
+              ], 
+              [
+                -91.477963, 
+                31.610863
+              ], 
+              [
+                -91.474959, 
+                31.621677
+              ], 
+              [
+                -91.464746, 
+                31.628886
+              ], 
+              [
+                -91.45273, 
+                31.63129
+              ], 
+              [
+                -91.441315, 
+                31.63129
+              ], 
+              [
+                -91.42209, 
+                31.63129
+              ], 
+              [
+                -91.404668, 
+                31.637898
+              ], 
+              [
+                -91.398059, 
+                31.655922
+              ], 
+              [
+                -91.400115, 
+                31.688164
+              ], 
+              [
+                -91.397915, 
+                31.709364
+              ], 
+              [
+                -91.379935, 
+                31.733013
+              ], 
+              [
+                -91.369375, 
+                31.746903
+              ], 
+              [
+                -91.365084, 
+                31.752743
+              ], 
+              [
+                -91.365614, 
+                31.760763
+              ], 
+              [
+                -91.363714, 
+                31.780363
+              ], 
+              [
+                -91.359514, 
+                31.799362
+              ], 
+              [
+                -91.345714, 
+                31.842861
+              ], 
+              [
+                -91.338414, 
+                31.851261
+              ], 
+              [
+                -91.326914, 
+                31.854961
+              ], 
+              [
+                -91.293413, 
+                31.86016
+              ], 
+              [
+                -91.248144, 
+                31.869848
+              ], 
+              [
+                -91.128009, 
+                31.985857
+              ], 
+              [
+                -91.034707, 
+                32.101053
+              ], 
+              [
+                -91.027946, 
+                32.112722
+              ], 
+              [
+                -91.027535, 
+                32.113431
+              ], 
+              [
+                -91.027125, 
+                32.120434
+              ], 
+              [
+                -91.026931, 
+                32.123737
+              ], 
+              [
+                -91.030152, 
+                32.129821
+              ], 
+              [
+                -91.034447, 
+                32.134832
+              ], 
+              [
+                -91.040531, 
+                32.137337
+              ], 
+              [
+                -91.046615, 
+                32.138768
+              ], 
+              [
+                -91.052342, 
+                32.137337
+              ], 
+              [
+                -91.057487, 
+                32.135515
+              ], 
+              [
+                -91.067004, 
+                32.132144
+              ], 
+              [
+                -91.131403, 
+                32.126213
+              ], 
+              [
+                -91.162822, 
+                32.132694
+              ], 
+              [
+                -91.165452, 
+                32.13429
+              ], 
+              [
+                -91.171702, 
+                32.14425
+              ], 
+              [
+                -91.174552, 
+                32.154978
+              ], 
+              [
+                -91.171046, 
+                32.176526
+              ], 
+              [
+                -91.164171, 
+                32.196888
+              ], 
+              [
+                -91.158026, 
+                32.201956
+              ], 
+              [
+                -91.133587, 
+                32.213432
+              ], 
+              [
+                -91.122602, 
+                32.216929
+              ], 
+              [
+                -91.046507, 
+                32.241149
+              ], 
+              [
+                -91.039007, 
+                32.242349
+              ], 
+              [
+                -91.021507, 
+                32.236149
+              ], 
+              [
+                -91.006306, 
+                32.22415
+              ], 
+              [
+                -91.004557, 
+                32.215381
+              ], 
+              [
+                -90.905173, 
+                32.315497
+              ], 
+              [
+                -90.898588, 
+                32.329094
+              ], 
+              [
+                -90.901511, 
+                32.337864
+              ], 
+              [
+                -90.912363, 
+                32.339454
+              ], 
+              [
+                -90.986672, 
+                32.35176
+              ], 
+              [
+                -91.000106, 
+                32.357695
+              ], 
+              [
+                -91.003506, 
+                32.362145
+              ], 
+              [
+                -91.004506, 
+                32.368144
+              ], 
+              [
+                -90.99408, 
+                32.403862
+              ], 
+              [
+                -91.029606, 
+                32.433542
+              ], 
+              [
+                -91.052907, 
+                32.438442
+              ], 
+              [
+                -91.070207, 
+                32.445141
+              ], 
+              [
+                -91.095308, 
+                32.458741
+              ], 
+              [
+                -91.108808, 
+                32.47204
+              ], 
+              [
+                -91.116008, 
+                32.48314
+              ], 
+              [
+                -91.116708, 
+                32.500139
+              ], 
+              [
+                -91.097878, 
+                32.544752
+              ], 
+              [
+                -91.093741, 
+                32.549128
+              ], 
+              [
+                -91.089436, 
+                32.553306
+              ], 
+              [
+                -91.090611, 
+                32.562705
+              ], 
+              [
+                -91.090771, 
+                32.563978
+              ], 
+              [
+                -91.096774, 
+                32.576652
+              ], 
+              [
+                -91.104111, 
+                32.584657
+              ], 
+              [
+                -91.119854, 
+                32.584795
+              ], 
+              [
+                -91.127912, 
+                32.586493
+              ], 
+              [
+                -91.141148, 
+                32.597209
+              ], 
+              [
+                -91.146204, 
+                32.604144
+              ], 
+              [
+                -91.151318, 
+                32.615919
+              ], 
+              [
+                -91.153821, 
+                32.631282
+              ], 
+              [
+                -91.152081, 
+                32.641508
+              ], 
+              [
+                -91.118258, 
+                32.674075
+              ], 
+              [
+                -91.098762, 
+                32.685291
+              ], 
+              [
+                -91.076061, 
+                32.693751
+              ], 
+              [
+                -91.063946, 
+                32.702926
+              ], 
+              [
+                -91.057043, 
+                32.712576
+              ], 
+              [
+                -91.054481, 
+                32.722259
+              ], 
+              [
+                -91.060766, 
+                32.727494
+              ], 
+              [
+                -91.077176, 
+                32.732534
+              ], 
+              [
+                -91.123152, 
+                32.742798
+              ], 
+              [
+                -91.154461, 
+                32.742339
+              ], 
+              [
+                -91.163389, 
+                32.747009
+              ], 
+              [
+                -91.165328, 
+                32.751301
+              ], 
+              [
+                -91.164397, 
+                32.785821
+              ], 
+              [
+                -91.161669, 
+                32.812465
+              ], 
+              [
+                -91.158336, 
+                32.822304
+              ], 
+              [
+                -91.145002, 
+                32.84287
+              ], 
+              [
+                -91.127886, 
+                32.855059
+              ], 
+              [
+                -91.116091, 
+                32.855641
+              ], 
+              [
+                -91.105631, 
+                32.858396
+              ], 
+              [
+                -91.086683, 
+                32.873392
+              ], 
+              [
+                -91.070602, 
+                32.888659
+              ], 
+              [
+                -91.063809, 
+                32.903709
+              ], 
+              [
+                -91.063974, 
+                32.924113
+              ], 
+              [
+                -91.086802, 
+                32.976266
+              ], 
+              [
+                -91.094265, 
+                32.984371
+              ], 
+              [
+                -91.106581, 
+                32.988938
+              ], 
+              [
+                -91.125107, 
+                32.984669
+              ], 
+              [
+                -91.134414, 
+                32.980533
+              ], 
+              [
+                -91.138585, 
+                32.971352
+              ], 
+              [
+                -91.130947, 
+                32.963815
+              ], 
+              [
+                -91.132115, 
+                32.923122
+              ], 
+              [
+                -91.134041, 
+                32.917676
+              ], 
+              [
+                -91.145076, 
+                32.905494
+              ], 
+              [
+                -91.159975, 
+                32.899879
+              ], 
+              [
+                -91.175405, 
+                32.899998
+              ], 
+              [
+                -91.196785, 
+                32.906784
+              ], 
+              [
+                -91.208263, 
+                32.915354
+              ], 
+              [
+                -91.212837, 
+                32.922104
+              ], 
+              [
+                -91.214027, 
+                32.93032
+              ], 
+              [
+                -91.201842, 
+                32.961212
+              ], 
+              [
+                -91.166073, 
+                33.004106
+              ], 
+              [
+                -91.157662, 
+                33.011217
+              ], 
+              [
+                -91.125656, 
+                33.038276
+              ], 
+              [
+                -91.087589, 
+                33.145177
+              ], 
+              [
+                -91.085984, 
+                33.221644
+              ], 
+              [
+                -91.110561, 
+                33.24593
+              ], 
+              [
+                -91.141216, 
+                33.298397
+              ], 
+              [
+                -91.184427, 
+                33.419576
+              ], 
+              [
+                -91.131885, 
+                33.430063
+              ], 
+              [
+                -91.118495, 
+                33.449116
+              ], 
+              [
+                -91.125109, 
+                33.472842
+              ], 
+              [
+                -91.215671, 
+                33.529423
+              ], 
+              [
+                -91.232295, 
+                33.552788
+              ], 
+              [
+                -91.228287, 
+                33.559937
+              ], 
+              [
+                -91.224121, 
+                33.567369
+              ], 
+              [
+                -91.152148, 
+                33.582721
+              ], 
+              [
+                -91.134043, 
+                33.594489
+              ], 
+              [
+                -91.130445, 
+                33.606034
+              ], 
+              [
+                -91.157484, 
+                33.626187
+              ], 
+              [
+                -91.186519, 
+                33.645909
+              ], 
+              [
+                -91.193093, 
+                33.656866
+              ], 
+              [
+                -91.18871, 
+                33.669466
+              ], 
+              [
+                -91.185971, 
+                33.679327
+              ], 
+              [
+                -91.17611, 
+                33.684257
+              ], 
+              [
+                -91.14817, 
+                33.679327
+              ], 
+              [
+                -91.139953, 
+                33.683709
+              ], 
+              [
+                -91.132831, 
+                33.688092
+              ], 
+              [
+                -91.1279, 
+                33.695762
+              ], 
+              [
+                -91.126805, 
+                33.707814
+              ], 
+              [
+                -91.136118, 
+                33.728632
+              ], 
+              [
+                -91.144682, 
+                33.750108
+              ], 
+              [
+                -91.139869, 
+                33.777117
+              ], 
+              [
+                -91.067511, 
+                33.840443
+              ], 
+              [
+                -91.036821, 
+                33.914656
+              ], 
+              [
+                -91.088164, 
+                33.960078
+              ], 
+              [
+                -91.089119, 
+                33.972653
+              ], 
+              [
+                -91.01889, 
+                34.003151
+              ], 
+              [
+                -90.964708, 
+                34.007952
+              ], 
+              [
+                -90.887413, 
+                34.032505
+              ], 
+              [
+                -90.879163, 
+                34.065503
+              ], 
+              [
+                -90.888396, 
+                34.087433
+              ], 
+              [
+                -90.912057, 
+                34.095512
+              ], 
+              [
+                -90.928793, 
+                34.107631
+              ], 
+              [
+                -90.931969, 
+                34.120017
+              ], 
+              [
+                -90.933116, 
+                34.124488
+              ], 
+              [
+                -90.934564, 
+                34.130138
+              ], 
+              [
+                -90.918405, 
+                34.154376
+              ], 
+              [
+                -90.893013, 
+                34.155531
+              ], 
+              [
+                -90.880317, 
+                34.169381
+              ], 
+              [
+                -90.880894, 
+                34.180346
+              ], 
+              [
+                -90.895898, 
+                34.191888
+              ], 
+              [
+                -90.913212, 
+                34.210355
+              ], 
+              [
+                -90.91148, 
+                34.223051
+              ], 
+              [
+                -90.894744, 
+                34.229977
+              ], 
+              [
+                -90.868775, 
+                34.228245
+              ], 
+              [
+                -90.856367, 
+                34.238928
+              ], 
+              [
+                -90.764143, 
+                34.363396
+              ], 
+              [
+                -90.658542, 
+                34.375705
+              ], 
+              [
+                -90.613944, 
+                34.390723
+              ], 
+              [
+                -90.575336, 
+                34.415152
+              ], 
+              [
+                -90.565809, 
+                34.4354
+              ], 
+              [
+                -90.570133, 
+                34.524829
+              ], 
+              [
+                -90.575786, 
+                34.641749
+              ], 
+              [
+                -90.576543, 
+                34.657402
+              ], 
+              [
+                -90.564033, 
+                34.665742
+              ], 
+              [
+                -90.549855, 
+                34.662406
+              ], 
+              [
+                -90.539013, 
+                34.65907
+              ], 
+              [
+                -90.521499, 
+                34.66324
+              ], 
+              [
+                -90.508989, 
+                34.679086
+              ], 
+              [
+                -90.509823, 
+                34.689928
+              ], 
+              [
+                -90.533175, 
+                34.707442
+              ], 
+              [
+                -90.554859, 
+                34.727458
+              ], 
+              [
+                -90.549855, 
+                34.76332
+              ], 
+              [
+                -90.537345, 
+                34.78417
+              ], 
+              [
+                -90.519831, 
+                34.782502
+              ], 
+              [
+                -90.501325, 
+                34.769931
+              ], 
+              [
+                -90.494811, 
+                34.76749
+              ], 
+              [
+                -90.479799, 
+                34.769158
+              ], 
+              [
+                -90.467289, 
+                34.782502
+              ], 
+              [
+                -90.478131, 
+                34.832542
+              ], 
+              [
+                -90.473961, 
+                34.852558
+              ], 
+              [
+                -90.461451, 
+                34.856728
+              ], 
+              [
+                -90.436431, 
+                34.85506
+              ], 
+              [
+                -90.423879, 
+                34.834606
+              ], 
+              [
+                -90.414864, 
+                34.831846
+              ], 
+              [
+                -90.407964, 
+                34.832767
+              ], 
+              [
+                -90.307384, 
+                34.846195
+              ], 
+              [
+                -90.293918, 
+                34.860563
+              ], 
+              [
+                -90.250095, 
+                34.90732
+              ], 
+              [
+                -90.244476, 
+                34.937596
+              ], 
+              [
+                -90.253969, 
+                34.954988
+              ], 
+              [
+                -90.309297, 
+                34.995694
+              ], 
+              [
+                -89.893402, 
+                34.994356
+              ], 
+              [
+                -89.883365, 
+                34.994261
+              ], 
+              [
+                -89.848488, 
+                34.994193
+              ], 
+              [
+                -89.795187, 
+                34.994293
+              ], 
+              [
+                -89.724324, 
+                34.994763
+              ], 
+              [
+                -89.644282, 
+                34.995293
+              ], 
+              [
+                -89.511153, 
+                34.994755
+              ], 
+              [
+                -89.493739, 
+                34.994361
+              ], 
+              [
+                -89.352679, 
+                34.99442
+              ], 
+              [
+                -89.198288, 
+                34.994484
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 11, 
+      "properties": {
+        "CENSUSAREA": 46923.274, 
+        "GEO_ID": "0400000US28", 
+        "ISO": "US-MS", 
+        "LSAD": "", 
+        "NAME": "Mississippi", 
+        "NAME_1": "Mississippi", 
+        "STATE": "MS"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -111.044275, 
+                45.001345
+              ], 
+              [
+                -111.056207, 
+                44.935901
+              ], 
+              [
+                -111.055629, 
+                44.933578
+              ], 
+              [
+                -111.056888, 
+                44.866658
+              ], 
+              [
+                -111.055495, 
+                44.666262
+              ], 
+              [
+                -111.055208, 
+                44.624927
+              ], 
+              [
+                -111.048974, 
+                44.474072
+              ], 
+              [
+                -111.106574, 
+                44.48633
+              ], 
+              [
+                -111.122654, 
+                44.493659
+              ], 
+              [
+                -111.131379, 
+                44.499925
+              ], 
+              [
+                -111.139455, 
+                44.517112
+              ], 
+              [
+                -111.219236, 
+                44.622616
+              ], 
+              [
+                -111.323669, 
+                44.724474
+              ], 
+              [
+                -111.377682, 
+                44.751744
+              ], 
+              [
+                -111.394815, 
+                44.751351
+              ], 
+              [
+                -111.481536, 
+                44.709186
+              ], 
+              [
+                -111.489008, 
+                44.705553
+              ], 
+              [
+                -111.516588, 
+                44.643707
+              ], 
+              [
+                -111.525764, 
+                44.604883
+              ], 
+              [
+                -111.601249, 
+                44.55421
+              ], 
+              [
+                -111.617502, 
+                44.553035
+              ], 
+              [
+                -111.631505, 
+                44.552022
+              ], 
+              [
+                -111.704218, 
+                44.560205
+              ], 
+              [
+                -111.737191, 
+                44.54306
+              ], 
+              [
+                -111.806528, 
+                44.515459
+              ], 
+              [
+                -111.843295, 
+                44.528225
+              ], 
+              [
+                -111.849293, 
+                44.539837
+              ], 
+              [
+                -111.870504, 
+                44.564033
+              ], 
+              [
+                -111.947941, 
+                44.556776
+              ], 
+              [
+                -112.078471, 
+                44.533551
+              ], 
+              [
+                -112.187115, 
+                44.534452
+              ], 
+              [
+                -112.221698, 
+                44.543519
+              ], 
+              [
+                -112.229477, 
+                44.549494
+              ], 
+              [
+                -112.235864, 
+                44.555194
+              ], 
+              [
+                -112.246665, 
+                44.56101
+              ], 
+              [
+                -112.258297, 
+                44.564334
+              ], 
+              [
+                -112.274083, 
+                44.564334
+              ], 
+              [
+                -112.299009, 
+                44.559348
+              ], 
+              [
+                -112.339721, 
+                44.538577
+              ], 
+              [
+                -112.347199, 
+                44.520298
+              ], 
+              [
+                -112.3566, 
+                44.493127
+              ], 
+              [
+                -112.358926, 
+                44.48628
+              ], 
+              [
+                -112.371294, 
+                44.472108
+              ], 
+              [
+                -112.38708, 
+                44.460476
+              ], 
+              [
+                -112.410345, 
+                44.462968
+              ], 
+              [
+                -112.473207, 
+                44.480027
+              ], 
+              [
+                -112.544224, 
+                44.483763
+              ], 
+              [
+                -112.68816, 
+                44.49885
+              ], 
+              [
+                -112.71911, 
+                44.504344
+              ], 
+              [
+                -112.781294, 
+                44.484888
+              ], 
+              [
+                -112.812087, 
+                44.45137
+              ], 
+              [
+                -112.822046, 
+                44.434109
+              ], 
+              [
+                -112.822046, 
+                44.420831
+              ], 
+              [
+                -112.823373, 
+                44.406225
+              ], 
+              [
+                -112.824701, 
+                44.393611
+              ], 
+              [
+                -112.829247, 
+                44.385427
+              ], 
+              [
+                -112.83134, 
+                44.38166
+              ], 
+              [
+                -112.849266, 
+                44.371038
+              ], 
+              [
+                -112.875822, 
+                44.374357
+              ], 
+              [
+                -112.9703, 
+                44.426933
+              ], 
+              [
+                -113.003544, 
+                44.450814
+              ], 
+              [
+                -113.027147, 
+                44.495915
+              ], 
+              [
+                -113.05677, 
+                44.618657
+              ], 
+              [
+                -113.053529, 
+                44.621187
+              ], 
+              [
+                -113.049349, 
+                44.62938
+              ], 
+              [
+                -113.051504, 
+                44.63695
+              ], 
+              [
+                -113.101082, 
+                44.718832
+              ], 
+              [
+                -113.134617, 
+                44.763149
+              ], 
+              [
+                -113.158206, 
+                44.780847
+              ], 
+              [
+                -113.207878, 
+                44.80804
+              ], 
+              [
+                -113.247166, 
+                44.82295
+              ], 
+              [
+                -113.278382, 
+                44.812706
+              ], 
+              [
+                -113.329491, 
+                44.788645
+              ], 
+              [
+                -113.341704, 
+                44.784853
+              ], 
+              [
+                -113.353631, 
+                44.791395
+              ], 
+              [
+                -113.455071, 
+                44.865424
+              ], 
+              [
+                -113.475838, 
+                44.894648
+              ], 
+              [
+                -113.498745, 
+                44.942314
+              ], 
+              [
+                -113.494446, 
+                44.948597
+              ], 
+              [
+                -113.480836, 
+                44.95031
+              ], 
+              [
+                -113.472715, 
+                44.948123
+              ], 
+              [
+                -113.447199, 
+                44.971924
+              ], 
+              [
+                -113.445915, 
+                44.979918
+              ], 
+              [
+                -113.445751, 
+                45.018351
+              ], 
+              [
+                -113.449349, 
+                45.045745
+              ], 
+              [
+                -113.463961, 
+                45.063194
+              ], 
+              [
+                -113.47377, 
+                45.0617
+              ], 
+              [
+                -113.485278, 
+                45.063519
+              ], 
+              [
+                -113.576453, 
+                45.130311
+              ], 
+              [
+                -113.57636, 
+                45.133771
+              ], 
+              [
+                -113.566179, 
+                45.14312
+              ], 
+              [
+                -113.565979, 
+                45.149335
+              ], 
+              [
+                -113.599506, 
+                45.191114
+              ], 
+              [
+                -113.650064, 
+                45.23471
+              ], 
+              [
+                -113.674409, 
+                45.249411
+              ], 
+              [
+                -113.738729, 
+                45.329741
+              ], 
+              [
+                -113.760924, 
+                45.406501
+              ], 
+              [
+                -113.774156, 
+                45.465372
+              ], 
+              [
+                -113.76576, 
+                45.483228
+              ], 
+              [
+                -113.772915, 
+                45.512322
+              ], 
+              [
+                -113.786269, 
+                45.521385
+              ], 
+              [
+                -113.810117, 
+                45.530924
+              ], 
+              [
+                -113.813456, 
+                45.550002
+              ], 
+              [
+                -113.802009, 
+                45.579096
+              ], 
+              [
+                -113.804871, 
+                45.589112
+              ], 
+              [
+                -113.813933, 
+                45.600559
+              ], 
+              [
+                -113.835396, 
+                45.61296
+              ], 
+              [
+                -113.896681, 
+                45.641451
+              ], 
+              [
+                -113.93422, 
+                45.682232
+              ], 
+              [
+                -113.9426, 
+                45.686362
+              ], 
+              [
+                -113.971565, 
+                45.700636
+              ], 
+              [
+                -113.987759, 
+                45.705247
+              ], 
+              [
+                -114.015633, 
+                45.696127
+              ], 
+              [
+                -114.019315, 
+                45.692937
+              ], 
+              [
+                -114.022534, 
+                45.67962
+              ], 
+              [
+                -114.03493, 
+                45.647967
+              ], 
+              [
+                -114.135249, 
+                45.557465
+              ], 
+              [
+                -114.187852, 
+                45.542151
+              ], 
+              [
+                -114.247828, 
+                45.545489
+              ], 
+              [
+                -114.309613, 
+                45.469432
+              ], 
+              [
+                -114.350819, 
+                45.468542
+              ], 
+              [
+                -114.36662, 
+                45.491616
+              ], 
+              [
+                -114.460542, 
+                45.561283
+              ], 
+              [
+                -114.473759, 
+                45.563278
+              ], 
+              [
+                -114.514196, 
+                45.564734
+              ], 
+              [
+                -114.551286, 
+                45.559007
+              ], 
+              [
+                -114.560855, 
+                45.564575
+              ], 
+              [
+                -114.561773, 
+                45.565109
+              ], 
+              [
+                -114.563652, 
+                45.637412
+              ], 
+              [
+                -114.561046, 
+                45.639906
+              ], 
+              [
+                -114.550834, 
+                45.6426
+              ], 
+              [
+                -114.545574, 
+                45.642928
+              ], 
+              [
+                -114.54182, 
+                45.641305
+              ], 
+              [
+                -114.515411, 
+                45.652842
+              ], 
+              [
+                -114.500925, 
+                45.666715
+              ], 
+              [
+                -114.495421, 
+                45.703321
+              ], 
+              [
+                -114.497553, 
+                45.710677
+              ], 
+              [
+                -114.504869, 
+                45.722176
+              ], 
+              [
+                -114.528667, 
+                45.731636
+              ], 
+              [
+                -114.547763, 
+                45.743309
+              ], 
+              [
+                -114.566172, 
+                45.773864
+              ], 
+              [
+                -114.514596, 
+                45.840785
+              ], 
+              [
+                -114.509303, 
+                45.845531
+              ], 
+              [
+                -114.498809, 
+                45.850676
+              ], 
+              [
+                -114.44868, 
+                45.858891
+              ], 
+              [
+                -114.39376, 
+                45.89402
+              ], 
+              [
+                -114.401552, 
+                45.963195
+              ], 
+              [
+                -114.412007, 
+                45.978057
+              ], 
+              [
+                -114.429638, 
+                45.986638
+              ], 
+              [
+                -114.465376, 
+                45.996077
+              ], 
+              [
+                -114.483379, 
+                46.008047
+              ], 
+              [
+                -114.490578, 
+                46.022872
+              ], 
+              [
+                -114.4912, 
+                46.034059
+              ], 
+              [
+                -114.4912, 
+                46.044003
+              ], 
+              [
+                -114.476284, 
+                46.062026
+              ], 
+              [
+                -114.467583, 
+                46.081914
+              ], 
+              [
+                -114.468205, 
+                46.099937
+              ], 
+              [
+                -114.476284, 
+                46.112988
+              ], 
+              [
+                -114.48312, 
+                46.129147
+              ], 
+              [
+                -114.472643, 
+                46.162202
+              ], 
+              [
+                -114.426885, 
+                46.289671
+              ], 
+              [
+                -114.378, 
+                46.435371
+              ], 
+              [
+                -114.385297, 
+                46.467162
+              ], 
+              [
+                -114.346528, 
+                46.535789
+              ], 
+              [
+                -114.331093, 
+                46.607649
+              ], 
+              [
+                -114.331093, 
+                46.630248
+              ], 
+              [
+                -114.337942, 
+                46.641205
+              ], 
+              [
+                -114.341336, 
+                46.642803
+              ], 
+              [
+                -114.349584, 
+                46.646684
+              ], 
+              [
+                -114.370129, 
+                46.654217
+              ], 
+              [
+                -114.422176, 
+                46.652163
+              ], 
+              [
+                -114.44683, 
+                46.645314
+              ], 
+              [
+                -114.461211, 
+                46.639151
+              ], 
+              [
+                -114.481943, 
+                46.631993
+              ], 
+              [
+                -114.592264, 
+                46.632861
+              ], 
+              [
+                -114.594707, 
+                46.633558
+              ], 
+              [
+                -114.614423, 
+                46.639188
+              ], 
+              [
+                -114.635868, 
+                46.65951
+              ], 
+              [
+                -114.642713, 
+                46.673145
+              ], 
+              [
+                -114.641745, 
+                46.679286
+              ], 
+              [
+                -114.641322, 
+                46.686404
+              ], 
+              [
+                -114.642692, 
+                46.694622
+              ], 
+              [
+                -114.644747, 
+                46.702155
+              ], 
+              [
+                -114.655704, 
+                46.711743
+              ], 
+              [
+                -114.667346, 
+                46.719276
+              ], 
+              [
+                -114.675505, 
+                46.719516
+              ], 
+              [
+                -114.69063, 
+                46.719961
+              ], 
+              [
+                -114.717645, 
+                46.713994
+              ], 
+              [
+                -114.739253, 
+                46.715167
+              ], 
+              [
+                -114.76718, 
+                46.738828
+              ], 
+              [
+                -114.825923, 
+                46.781949
+              ], 
+              [
+                -114.853279, 
+                46.799794
+              ], 
+              [
+                -114.888146, 
+                46.808573
+              ], 
+              [
+                -114.920459, 
+                46.827697
+              ], 
+              [
+                -114.927837, 
+                46.83599
+              ], 
+              [
+                -114.938713, 
+                46.869021
+              ], 
+              [
+                -114.936015, 
+                46.899761
+              ], 
+              [
+                -114.975789, 
+                46.932865
+              ], 
+              [
+                -115.072985, 
+                47.01376
+              ], 
+              [
+                -115.099178, 
+                47.048129
+              ], 
+              [
+                -115.193221, 
+                47.133026
+              ], 
+              [
+                -115.200547, 
+                47.139154
+              ], 
+              [
+                -115.266723, 
+                47.181101
+              ], 
+              [
+                -115.29211, 
+                47.209861
+              ], 
+              [
+                -115.294785, 
+                47.220914
+              ], 
+              [
+                -115.320184, 
+                47.255717
+              ], 
+              [
+                -115.339201, 
+                47.261623
+              ], 
+              [
+                -115.421645, 
+                47.271736
+              ], 
+              [
+                -115.479255, 
+                47.282089
+              ], 
+              [
+                -115.52369, 
+                47.298919
+              ], 
+              [
+                -115.551309, 
+                47.333856
+              ], 
+              [
+                -115.561439, 
+                47.351887
+              ], 
+              [
+                -115.576836, 
+                47.366825
+              ], 
+              [
+                -115.661341, 
+                47.402663
+              ], 
+              [
+                -115.69057, 
+                47.415059
+              ], 
+              [
+                -115.721084, 
+                47.42235
+              ], 
+              [
+                -115.729861, 
+                47.447287
+              ], 
+              [
+                -115.725931, 
+                47.466934
+              ], 
+              [
+                -115.712178, 
+                47.488546
+              ], 
+              [
+                -115.729861, 
+                47.518016
+              ], 
+              [
+                -115.739684, 
+                47.537663
+              ], 
+              [
+                -115.735755, 
+                47.555346
+              ], 
+              [
+                -115.721207, 
+                47.576323
+              ], 
+              [
+                -115.718072, 
+                47.592675
+              ], 
+              [
+                -115.706284, 
+                47.637864
+              ], 
+              [
+                -115.72377, 
+                47.696671
+              ], 
+              [
+                -115.729123, 
+                47.703102
+              ], 
+              [
+                -115.919291, 
+                47.857406
+              ], 
+              [
+                -116.007254, 
+                47.944968
+              ], 
+              [
+                -116.048421, 
+                47.97682
+              ], 
+              [
+                -116.048424, 
+                47.977126
+              ], 
+              [
+                -116.04932, 
+                48.066644
+              ], 
+              [
+                -116.049368, 
+                48.072134
+              ], 
+              [
+                -116.049398, 
+                48.075395
+              ], 
+              [
+                -116.049415, 
+                48.07722
+              ], 
+              [
+                -116.049353, 
+                48.21546
+              ], 
+              [
+                -116.049226, 
+                48.502058
+              ], 
+              [
+                -116.049023, 
+                48.957947
+              ], 
+              [
+                -116.049025, 
+                48.958351
+              ], 
+              [
+                -116.049193, 
+                49.000912
+              ], 
+              [
+                -115.251126, 
+                48.999557
+              ], 
+              [
+                -114.728125, 
+                49.000623
+              ], 
+              [
+                -114.678217, 
+                49.000725
+              ], 
+              [
+                -114.674398, 
+                49.000679
+              ], 
+              [
+                -114.43883, 
+                49.001076
+              ], 
+              [
+                -114.068151, 
+                48.999364
+              ], 
+              [
+                -113.692982, 
+                48.997632
+              ], 
+              [
+                -113.116356, 
+                48.998462
+              ], 
+              [
+                -113.110155, 
+                48.99855
+              ], 
+              [
+                -113.106891, 
+                48.998501
+              ], 
+              [
+                -113.103212, 
+                48.99853
+              ], 
+              [
+                -113.098147, 
+                48.998494
+              ], 
+              [
+                -113.095436, 
+                48.998533
+              ], 
+              [
+                -113.092055, 
+                48.998543
+              ], 
+              [
+                -113.087863, 
+                48.998557
+              ], 
+              [
+                -113.085576, 
+                48.998581
+              ], 
+              [
+                -113.011041, 
+                48.998643
+              ], 
+              [
+                -113.009895, 
+                48.998619
+              ], 
+              [
+                -112.193588, 
+                48.998229
+              ], 
+              [
+                -111.854088, 
+                48.998067
+              ], 
+              [
+                -111.85409, 
+                48.998039
+              ], 
+              [
+                -111.761679, 
+                48.997614
+              ], 
+              [
+                -111.761613, 
+                48.99765
+              ], 
+              [
+                -111.270702, 
+                48.997895
+              ], 
+              [
+                -110.887459, 
+                48.998087
+              ], 
+              [
+                -110.886706, 
+                48.998124
+              ], 
+              [
+                -110.743209, 
+                48.998363
+              ], 
+              [
+                -110.216135, 
+                48.999239
+              ], 
+              [
+                -110.215516, 
+                48.999197
+              ], 
+              [
+                -110.171595, 
+                48.999262
+              ], 
+              [
+                -109.995618, 
+                48.999642
+              ], 
+              [
+                -109.489686, 
+                49.000267
+              ], 
+              [
+                -109.384762, 
+                49.000397
+              ], 
+              [
+                -109.384068, 
+                49.000374
+              ], 
+              [
+                -109.06057, 
+                48.999666
+              ], 
+              [
+                -109.060292, 
+                48.999621
+              ], 
+              [
+                -109.000708, 
+                48.999234
+              ], 
+              [
+                -108.994722, 
+                48.999237
+              ], 
+              [
+                -108.543194, 
+                48.999377
+              ], 
+              [
+                -108.488063, 
+                48.999368
+              ], 
+              [
+                -108.236495, 
+                48.999405
+              ], 
+              [
+                -107.179865, 
+                48.999559
+              ], 
+              [
+                -106.625597, 
+                48.99964
+              ], 
+              [
+                -106.617539, 
+                48.999583
+              ], 
+              [
+                -106.518201, 
+                48.999564
+              ], 
+              [
+                -106.500592, 
+                48.999756
+              ], 
+              [
+                -106.374616, 
+                48.999617
+              ], 
+              [
+                -106.368151, 
+                48.999503
+              ], 
+              [
+                -106.274267, 
+                48.999312
+              ], 
+              [
+                -106.24621, 
+                48.999258
+              ], 
+              [
+                -106.243154, 
+                48.999373
+              ], 
+              [
+                -106.233987, 
+                48.999423
+              ], 
+              [
+                -106.112108, 
+                48.999279
+              ], 
+              [
+                -106.050543, 
+                48.999207
+              ], 
+              [
+                -105.966197, 
+                48.999445
+              ], 
+              [
+                -105.834181, 
+                48.999707
+              ], 
+              [
+                -105.775808, 
+                48.999637
+              ], 
+              [
+                -105.65027, 
+                48.999444
+              ], 
+              [
+                -105.612577, 
+                48.999703
+              ], 
+              [
+                -105.607542, 
+                48.999624
+              ], 
+              [
+                -105.578616, 
+                48.999673
+              ], 
+              [
+                -105.522636, 
+                48.999591
+              ], 
+              [
+                -105.411972, 
+                48.999582
+              ], 
+              [
+                -105.407909, 
+                48.99948
+              ], 
+              [
+                -105.391379, 
+                48.999475
+              ], 
+              [
+                -105.38749, 
+                48.999382
+              ], 
+              [
+                -105.355888, 
+                48.999357
+              ], 
+              [
+                -105.277521, 
+                48.999457
+              ], 
+              [
+                -105.265192, 
+                48.9995
+              ], 
+              [
+                -105.057514, 
+                48.999448
+              ], 
+              [
+                -104.647389, 
+                48.999344
+              ], 
+              [
+                -104.543636, 
+                48.999541
+              ], 
+              [
+                -104.048736, 
+                48.999877
+              ], 
+              [
+                -104.048478, 
+                48.987007
+              ], 
+              [
+                -104.048616, 
+                48.966736
+              ], 
+              [
+                -104.048555, 
+                48.963772
+              ], 
+              [
+                -104.0488, 
+                48.958997
+              ], 
+              [
+                -104.048627, 
+                48.957124
+              ], 
+              [
+                -104.048698, 
+                48.951823
+              ], 
+              [
+                -104.048872, 
+                48.94963
+              ], 
+              [
+                -104.04877, 
+                48.943301
+              ], 
+              [
+                -104.048701, 
+                48.940331
+              ], 
+              [
+                -104.048807, 
+                48.933636
+              ], 
+              [
+                -104.048744, 
+                48.912113
+              ], 
+              [
+                -104.048746, 
+                48.906858
+              ], 
+              [
+                -104.048643, 
+                48.902609
+              ], 
+              [
+                -104.048719, 
+                48.879921
+              ], 
+              [
+                -104.048893, 
+                48.875739
+              ], 
+              [
+                -104.048883, 
+                48.874008
+              ], 
+              [
+                -104.048824, 
+                48.867539
+              ], 
+              [
+                -104.048652, 
+                48.865734
+              ], 
+              [
+                -104.0489, 
+                48.847387
+              ], 
+              [
+                -104.048569, 
+                48.797052
+              ], 
+              [
+                -104.048537, 
+                48.788552
+              ], 
+              [
+                -104.048548, 
+                48.751356
+              ], 
+              [
+                -104.04834, 
+                48.747133
+              ], 
+              [
+                -104.047883, 
+                48.664191
+              ], 
+              [
+                -104.047849, 
+                48.663163
+              ], 
+              [
+                -104.047861, 
+                48.658856
+              ], 
+              [
+                -104.047865, 
+                48.65745
+              ], 
+              [
+                -104.047887, 
+                48.649911
+              ], 
+              [
+                -104.047819, 
+                48.648631
+              ], 
+              [
+                -104.047582, 
+                48.633984
+              ], 
+              [
+                -104.047582, 
+                48.633976
+              ], 
+              [
+                -104.04762, 
+                48.627015
+              ], 
+              [
+                -104.047586, 
+                48.625644
+              ], 
+              [
+                -104.04793, 
+                48.62019
+              ], 
+              [
+                -104.048212, 
+                48.599055
+              ], 
+              [
+                -104.047974, 
+                48.591606
+              ], 
+              [
+                -104.047811, 
+                48.56277
+              ], 
+              [
+                -104.047783, 
+                48.539737
+              ], 
+              [
+                -104.047648, 
+                48.531489
+              ], 
+              [
+                -104.047876, 
+                48.530798
+              ], 
+              [
+                -104.047513, 
+                48.525913
+              ], 
+              [
+                -104.047675, 
+                48.517852
+              ], 
+              [
+                -104.047555, 
+                48.49414
+              ], 
+              [
+                -104.047392, 
+                48.467086
+              ], 
+              [
+                -104.047259, 
+                48.452941
+              ], 
+              [
+                -104.047294, 
+                48.452529
+              ], 
+              [
+                -104.047192, 
+                48.447251
+              ], 
+              [
+                -104.04709, 
+                48.445903
+              ], 
+              [
+                -104.04696, 
+                48.421065
+              ], 
+              [
+                -104.047134, 
+                48.411057
+              ], 
+              [
+                -104.046969, 
+                48.390675
+              ], 
+              [
+                -104.046913, 
+                48.389433
+              ], 
+              [
+                -104.046913, 
+                48.389429
+              ], 
+              [
+                -104.046654, 
+                48.374773
+              ], 
+              [
+                -104.046371, 
+                48.374154
+              ], 
+              [
+                -104.046332, 
+                48.34229
+              ], 
+              [
+                -104.046039, 
+                48.256761
+              ], 
+              [
+                -104.045861, 
+                48.255097
+              ], 
+              [
+                -104.045645, 
+                48.246179
+              ], 
+              [
+                -104.045729, 
+                48.244586
+              ], 
+              [
+                -104.045692, 
+                48.241415
+              ], 
+              [
+                -104.04556, 
+                48.193913
+              ], 
+              [
+                -104.045424, 
+                48.192473
+              ], 
+              [
+                -104.045498, 
+                48.176249
+              ], 
+              [
+                -104.045399, 
+                48.16439
+              ], 
+              [
+                -104.04412, 
+                47.996107
+              ], 
+              [
+                -104.044162, 
+                47.992836
+              ], 
+              [
+                -104.043933, 
+                47.971515
+              ], 
+              [
+                -104.043497, 
+                47.95449
+              ], 
+              [
+                -104.043329, 
+                47.949554
+              ], 
+              [
+                -104.04223, 
+                47.891031
+              ], 
+              [
+                -104.041662, 
+                47.862282
+              ], 
+              [
+                -104.041869, 
+                47.841699
+              ], 
+              [
+                -104.042567, 
+                47.808237
+              ], 
+              [
+                -104.042432, 
+                47.805358
+              ], 
+              [
+                -104.042384, 
+                47.803256
+              ], 
+              [
+                -104.043199, 
+                47.747292
+              ], 
+              [
+                -104.043242, 
+                47.747106
+              ], 
+              [
+                -104.044621, 
+                47.45938
+              ], 
+              [
+                -104.044797, 
+                47.438445
+              ], 
+              [
+                -104.045069, 
+                47.397461
+              ], 
+              [
+                -104.045333, 
+                47.343452
+              ], 
+              [
+                -104.045313, 
+                47.331955
+              ], 
+              [
+                -104.045307, 
+                47.330128
+              ], 
+              [
+                -104.045121, 
+                47.276969
+              ], 
+              [
+                -104.045155, 
+                47.27393
+              ], 
+              [
+                -104.045088, 
+                47.271406
+              ], 
+              [
+                -104.045057, 
+                47.266868
+              ], 
+              [
+                -104.045091, 
+                47.265953
+              ], 
+              [
+                -104.045159, 
+                47.263874
+              ], 
+              [
+                -104.045081, 
+                47.092813
+              ], 
+              [
+                -104.045018, 
+                47.081202
+              ], 
+              [
+                -104.045354, 
+                47.078574
+              ], 
+              [
+                -104.045259, 
+                47.063901
+              ], 
+              [
+                -104.045227, 
+                47.057502
+              ], 
+              [
+                -104.045195, 
+                47.053639
+              ], 
+              [
+                -104.045052, 
+                47.040863
+              ], 
+              [
+                -104.045076, 
+                47.037589
+              ], 
+              [
+                -104.045566, 
+                46.941231
+              ], 
+              [
+                -104.045535, 
+                46.934009
+              ], 
+              [
+                -104.045542, 
+                46.933887
+              ], 
+              [
+                -104.045402, 
+                46.725423
+              ], 
+              [
+                -104.045403, 
+                46.722177
+              ], 
+              [
+                -104.04537, 
+                46.721332
+              ], 
+              [
+                -104.045572, 
+                46.713881
+              ], 
+              [
+                -104.045474, 
+                46.708738
+              ], 
+              [
+                -104.045271, 
+                46.641449
+              ], 
+              [
+                -104.045271, 
+                46.641443
+              ], 
+              [
+                -104.045335, 
+                46.540929
+              ], 
+              [
+                -104.045462, 
+                46.341895
+              ], 
+              [
+                -104.045469, 
+                46.324545
+              ], 
+              [
+                -104.045633, 
+                46.280188
+              ], 
+              [
+                -104.04667, 
+                46.000001
+              ], 
+              [
+                -104.045443, 
+                45.94531
+              ], 
+              [
+                -104.04403, 
+                45.881975
+              ], 
+              [
+                -104.04403, 
+                45.881971
+              ], 
+              [
+                -104.044009, 
+                45.871974
+              ], 
+              [
+                -104.043814, 
+                45.868385
+              ], 
+              [
+                -104.041937, 
+                45.557915
+              ], 
+              [
+                -104.041647, 
+                45.550691
+              ], 
+              [
+                -104.041717, 
+                45.539122
+              ], 
+              [
+                -104.041145, 
+                45.503367
+              ], 
+              [
+                -104.041274, 
+                45.499994
+              ], 
+              [
+                -104.041764, 
+                45.490789
+              ], 
+              [
+                -104.04041, 
+                45.393474
+              ], 
+              [
+                -104.040114, 
+                45.374214
+              ], 
+              [
+                -104.040265, 
+                45.345356
+              ], 
+              [
+                -104.040358, 
+                45.335946
+              ], 
+              [
+                -104.040274, 
+                45.212891
+              ], 
+              [
+                -104.040128, 
+                44.999987
+              ], 
+              [
+                -104.057698, 
+                44.997431
+              ], 
+              [
+                -104.470117, 
+                44.998453
+              ], 
+              [
+                -104.470422, 
+                44.998453
+              ], 
+              [
+                -104.663882, 
+                44.998869
+              ], 
+              [
+                -104.665171, 
+                44.998618
+              ], 
+              [
+                -104.759855, 
+                44.999066
+              ], 
+              [
+                -104.765063, 
+                44.999183
+              ], 
+              [
+                -105.01824, 
+                45.000437
+              ], 
+              [
+                -105.019284, 
+                45.000329
+              ], 
+              [
+                -105.025266, 
+                45.00029
+              ], 
+              [
+                -105.038405, 
+                45.000345
+              ], 
+              [
+                -105.076607, 
+                45.000347
+              ], 
+              [
+                -105.848065, 
+                45.000396
+              ], 
+              [
+                -105.918995, 
+                44.997771
+              ], 
+              [
+                -105.928184, 
+                44.993647
+              ], 
+              [
+                -106.024814, 
+                44.993688
+              ], 
+              [
+                -106.263586, 
+                44.993788
+              ], 
+              [
+                -106.888773, 
+                44.995885
+              ], 
+              [
+                -106.892875, 
+                44.995947
+              ], 
+              [
+                -107.080624, 
+                44.996791
+              ], 
+              [
+                -107.13418, 
+                45.000109
+              ], 
+              [
+                -107.607824, 
+                45.000929
+              ], 
+              [
+                -107.608854, 
+                45.00086
+              ], 
+              [
+                -107.911495, 
+                45.000948
+              ], 
+              [
+                -108.125666, 
+                45.001011
+              ], 
+              [
+                -108.249345, 
+                44.999458
+              ], 
+              [
+                -108.565921, 
+                45.000578
+              ], 
+              [
+                -108.578484, 
+                45.000484
+              ], 
+              [
+                -108.621313, 
+                45.000408
+              ], 
+              [
+                -109.062262, 
+                44.999623
+              ], 
+              [
+                -109.08301, 
+                44.99961
+              ], 
+              [
+                -109.103445, 
+                45.005904
+              ], 
+              [
+                -109.263431, 
+                45.005345
+              ], 
+              [
+                -109.269294, 
+                45.005283
+              ], 
+              [
+                -109.798687, 
+                45.002188
+              ], 
+              [
+                -110.025544, 
+                45.003602
+              ], 
+              [
+                -110.026347, 
+                45.003665
+              ], 
+              [
+                -110.110103, 
+                45.003905
+              ], 
+              [
+                -110.221343, 
+                44.996176
+              ], 
+              [
+                -110.547165, 
+                44.992459
+              ], 
+              [
+                -110.552433, 
+                44.992237
+              ], 
+              [
+                -110.705272, 
+                44.992324
+              ], 
+              [
+                -110.750767, 
+                44.997948
+              ], 
+              [
+                -110.875772, 
+                45.002101
+              ], 
+              [
+                -111.044275, 
+                45.001345
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 12, 
+      "properties": {
+        "CENSUSAREA": 145545.801, 
+        "GEO_ID": "0400000US30", 
+        "ISO": "US-MT", 
+        "LSAD": "", 
+        "NAME": "Montana", 
+        "NAME_1": "Montana", 
+        "STATE": "MT"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -105.998003, 
+                32.002328
+              ], 
+              [
+                -106.09976, 
+                32.002174
+              ], 
+              [
+                -106.18184, 
+                32.00205
+              ], 
+              [
+                -106.200699, 
+                32.001785
+              ], 
+              [
+                -106.205915, 
+                32.001762
+              ], 
+              [
+                -106.313307, 
+                32.001512
+              ], 
+              [
+                -106.377174, 
+                32.00149
+              ], 
+              [
+                -106.394298, 
+                32.001484
+              ], 
+              [
+                -106.411075, 
+                32.001334
+              ], 
+              [
+                -106.565142, 
+                32.000736
+              ], 
+              [
+                -106.566056, 
+                32.000759
+              ], 
+              [
+                -106.587972, 
+                32.000749
+              ], 
+              [
+                -106.595333, 
+                32.000778
+              ], 
+              [
+                -106.598639, 
+                32.000754
+              ], 
+              [
+                -106.599096, 
+                32.000731
+              ], 
+              [
+                -106.614702, 
+                31.956
+              ], 
+              [
+                -106.616136, 
+                31.948439
+              ], 
+              [
+                -106.627808, 
+                31.860593
+              ], 
+              [
+                -106.625763, 
+                31.856276
+              ], 
+              [
+                -106.621857, 
+                31.852854
+              ], 
+              [
+                -106.614637, 
+                31.84649
+              ], 
+              [
+                -106.605845, 
+                31.846305
+              ], 
+              [
+                -106.605245, 
+                31.845905
+              ], 
+              [
+                -106.566844, 
+                31.813306
+              ], 
+              [
+                -106.563444, 
+                31.812606
+              ], 
+              [
+                -106.545344, 
+                31.805007
+              ], 
+              [
+                -106.544714, 
+                31.804287
+              ], 
+              [
+                -106.542144, 
+                31.802107
+              ], 
+              [
+                -106.542097, 
+                31.802146
+              ], 
+              [
+                -106.535843, 
+                31.798607
+              ], 
+              [
+                -106.535343, 
+                31.797507
+              ], 
+              [
+                -106.535154, 
+                31.797089
+              ], 
+              [
+                -106.534743, 
+                31.796107
+              ], 
+              [
+                -106.533043, 
+                31.791907
+              ], 
+              [
+                -106.533, 
+                31.791829
+              ], 
+              [
+                -106.53248, 
+                31.791914
+              ], 
+              [
+                -106.530515, 
+                31.792103
+              ], 
+              [
+                -106.527943, 
+                31.790507
+              ], 
+              [
+                -106.527738, 
+                31.789761
+              ], 
+              [
+                -106.527623, 
+                31.789119
+              ], 
+              [
+                -106.527997, 
+                31.786945
+              ], 
+              [
+                -106.528543, 
+                31.784407
+              ], 
+              [
+                -106.528543, 
+                31.783907
+              ], 
+              [
+                -106.750547, 
+                31.783706
+              ], 
+              [
+                -106.750547, 
+                31.783898
+              ], 
+              [
+                -106.993544, 
+                31.783689
+              ], 
+              [
+                -106.998235, 
+                31.783671
+              ], 
+              [
+                -107.00056, 
+                31.783679
+              ], 
+              [
+                -107.00056, 
+                31.783513
+              ], 
+              [
+                -107.296824, 
+                31.783762
+              ], 
+              [
+                -107.422246, 
+                31.783599
+              ], 
+              [
+                -107.422495, 
+                31.783599
+              ], 
+              [
+                -108.208394, 
+                31.783599
+              ], 
+              [
+                -108.208521, 
+                31.499798
+              ], 
+              [
+                -108.208572, 
+                31.499742
+              ], 
+              [
+                -108.208573, 
+                31.333395
+              ], 
+              [
+                -108.851105, 
+                31.332301
+              ], 
+              [
+                -108.861028, 
+                31.332315
+              ], 
+              [
+                -109.050044, 
+                31.332502
+              ], 
+              [
+                -109.049843, 
+                31.499515
+              ], 
+              [
+                -109.049813, 
+                31.499528
+              ], 
+              [
+                -109.049195, 
+                31.796551
+              ], 
+              [
+                -109.048763, 
+                31.810776
+              ], 
+              [
+                -109.048769, 
+                31.861383
+              ], 
+              [
+                -109.04859, 
+                31.870791
+              ], 
+              [
+                -109.048599, 
+                32.013651
+              ], 
+              [
+                -109.048731, 
+                32.028174
+              ], 
+              [
+                -109.048296, 
+                32.084093
+              ], 
+              [
+                -109.048286, 
+                32.089114
+              ], 
+              [
+                -109.047926, 
+                32.426376
+              ], 
+              [
+                -109.047653, 
+                32.681379
+              ], 
+              [
+                -109.047653, 
+                32.686327
+              ], 
+              [
+                -109.047645, 
+                32.689988
+              ], 
+              [
+                -109.047638, 
+                32.693439
+              ], 
+              [
+                -109.047117, 
+                32.777569
+              ], 
+              [
+                -109.047117, 
+                32.77757
+              ], 
+              [
+                -109.04748, 
+                33.06842
+              ], 
+              [
+                -109.047453, 
+                33.069427
+              ], 
+              [
+                -109.046905, 
+                33.091931
+              ], 
+              [
+                -109.047013, 
+                33.092917
+              ], 
+              [
+                -109.047117, 
+                33.137559
+              ], 
+              [
+                -109.047116, 
+                33.137995
+              ], 
+              [
+                -109.047237, 
+                33.208965
+              ], 
+              [
+                -109.046827, 
+                33.365272
+              ], 
+              [
+                -109.046909, 
+                33.36557
+              ], 
+              [
+                -109.047045, 
+                33.36928
+              ], 
+              [
+                -109.04687, 
+                33.372654
+              ], 
+              [
+                -109.046627, 
+                33.778233
+              ], 
+              [
+                -109.046182, 
+                34.522393
+              ], 
+              [
+                -109.046182, 
+                34.522553
+              ], 
+              [
+                -109.046156, 
+                34.579291
+              ], 
+              [
+                -109.045851, 
+                34.959718
+              ], 
+              [
+                -109.046082, 
+                35.174665
+              ], 
+              [
+                -109.046481, 
+                35.546326
+              ], 
+              [
+                -109.046509, 
+                35.54644
+              ], 
+              [
+                -109.046296, 
+                35.614251
+              ], 
+              [
+                -109.046295, 
+                35.616517
+              ], 
+              [
+                -109.046024, 
+                35.8798
+              ], 
+              [
+                -109.046055, 
+                35.888721
+              ], 
+              [
+                -109.046054, 
+                35.92586
+              ], 
+              [
+                -109.046011, 
+                35.925896
+              ], 
+              [
+                -109.045973, 
+                36.002338
+              ], 
+              [
+                -109.045433, 
+                36.874589
+              ], 
+              [
+                -109.045407, 
+                36.874998
+              ], 
+              [
+                -109.045272, 
+                36.968871
+              ], 
+              [
+                -109.045244, 
+                36.969489
+              ], 
+              [
+                -109.045223, 
+                36.999084
+              ], 
+              [
+                -108.958868, 
+                36.998913
+              ], 
+              [
+                -108.954404, 
+                36.998906
+              ], 
+              [
+                -108.620309, 
+                36.999287
+              ], 
+              [
+                -108.619689, 
+                36.999249
+              ], 
+              [
+                -108.379203, 
+                36.999459
+              ], 
+              [
+                -108.320721, 
+                36.99951
+              ], 
+              [
+                -108.320464, 
+                36.999499
+              ], 
+              [
+                -108.2884, 
+                36.99952
+              ], 
+              [
+                -108.288086, 
+                36.999555
+              ], 
+              [
+                -107.481737, 
+                36.999973
+              ], 
+              [
+                -107.420915, 
+                37.000005
+              ], 
+              [
+                -107.420913, 
+                37.000005
+              ], 
+              [
+                -107.000592, 
+                37.000009
+              ], 
+              [
+                -106.869796, 
+                36.992426
+              ], 
+              [
+                -106.675626, 
+                36.993123
+              ], 
+              [
+                -106.661344, 
+                36.993243
+              ], 
+              [
+                -106.628733, 
+                36.993161
+              ], 
+              [
+                -106.628652, 
+                36.993175
+              ], 
+              [
+                -106.617125, 
+                36.993004
+              ], 
+              [
+                -106.617159, 
+                36.992967
+              ], 
+              [
+                -106.476228, 
+                36.993472
+              ], 
+              [
+                -106.248675, 
+                36.994288
+              ], 
+              [
+                -106.247705, 
+                36.994266
+              ], 
+              [
+                -106.006634, 
+                36.995343
+              ], 
+              [
+                -105.997472, 
+                36.995417
+              ], 
+              [
+                -105.996159, 
+                36.995418
+              ], 
+              [
+                -105.71847, 
+                36.995846
+              ], 
+              [
+                -105.716471, 
+                36.995849
+              ], 
+              [
+                -105.66472, 
+                36.995874
+              ], 
+              [
+                -105.62747, 
+                36.995679
+              ], 
+              [
+                -105.533922, 
+                36.995875
+              ], 
+              [
+                -105.512485, 
+                36.995777
+              ], 
+              [
+                -105.508836, 
+                36.995895
+              ], 
+              [
+                -105.465182, 
+                36.995991
+              ], 
+              [
+                -105.447255, 
+                36.996017
+              ], 
+              [
+                -105.442459, 
+                36.995994
+              ], 
+              [
+                -105.41931, 
+                36.995856
+              ], 
+              [
+                -105.220613, 
+                36.995169
+              ], 
+              [
+                -105.155042, 
+                36.995339
+              ], 
+              [
+                -105.1208, 
+                36.995428
+              ], 
+              [
+                -105.000554, 
+                36.993264
+              ], 
+              [
+                -104.73212, 
+                36.993484
+              ], 
+              [
+                -104.732031, 
+                36.993447
+              ], 
+              [
+                -104.007855, 
+                36.996239
+              ], 
+              [
+                -103.734364, 
+                36.998041
+              ], 
+              [
+                -103.733247, 
+                36.998016
+              ], 
+              [
+                -103.086105, 
+                36.999864
+              ], 
+              [
+                -103.002199, 
+                37.000104
+              ], 
+              [
+                -103.002247, 
+                36.911587
+              ], 
+              [
+                -103.001964, 
+                36.909573
+              ], 
+              [
+                -103.002198, 
+                36.719427
+              ], 
+              [
+                -103.002518, 
+                36.675186
+              ], 
+              [
+                -103.002252, 
+                36.61718
+              ], 
+              [
+                -103.002188, 
+                36.602716
+              ], 
+              [
+                -103.002565, 
+                36.526588
+              ], 
+              [
+                -103.002434, 
+                36.500397
+              ], 
+              [
+                -103.041669, 
+                36.478514
+              ], 
+              [
+                -103.041745, 
+                36.318267
+              ], 
+              [
+                -103.041674, 
+                36.317534
+              ], 
+              [
+                -103.040824, 
+                36.055231
+              ], 
+              [
+                -103.041357, 
+                35.739274
+              ], 
+              [
+                -103.041554, 
+                35.622487
+              ], 
+              [
+                -103.042497, 
+                35.211862
+              ], 
+              [
+                -103.042377, 
+                35.183156
+              ], 
+              [
+                -103.042377, 
+                35.183149
+              ], 
+              [
+                -103.042366, 
+                35.182786
+              ], 
+              [
+                -103.042339, 
+                35.181922
+              ], 
+              [
+                -103.042395, 
+                35.178573
+              ], 
+              [
+                -103.042568, 
+                35.159318
+              ], 
+              [
+                -103.042711, 
+                35.144735
+              ], 
+              [
+                -103.0426, 
+                35.142766
+              ], 
+              [
+                -103.04252, 
+                35.135596
+              ], 
+              [
+                -103.042521, 
+                34.954101
+              ], 
+              [
+                -103.042521, 
+                34.899546
+              ], 
+              [
+                -103.042781, 
+                34.850243
+              ], 
+              [
+                -103.04277, 
+                34.792224
+              ], 
+              [
+                -103.042769, 
+                34.747361
+              ], 
+              [
+                -103.042827, 
+                34.671188
+              ], 
+              [
+                -103.043072, 
+                34.619782
+              ], 
+              [
+                -103.043594, 
+                34.46266
+              ], 
+              [
+                -103.043589, 
+                34.459774
+              ], 
+              [
+                -103.043588, 
+                34.459662
+              ], 
+              [
+                -103.043582, 
+                34.455657
+              ], 
+              [
+                -103.043538, 
+                34.405463
+              ], 
+              [
+                -103.043583, 
+                34.400678
+              ], 
+              [
+                -103.043611, 
+                34.397105
+              ], 
+              [
+                -103.043585, 
+                34.393716
+              ], 
+              [
+                -103.043613, 
+                34.390442
+              ], 
+              [
+                -103.043613, 
+                34.388679
+              ], 
+              [
+                -103.043614, 
+                34.384969
+              ], 
+              [
+                -103.04363, 
+                34.38469
+              ], 
+              [
+                -103.043693, 
+                34.383578
+              ], 
+              [
+                -103.043919, 
+                34.380916
+              ], 
+              [
+                -103.043944, 
+                34.37966
+              ], 
+              [
+                -103.043946, 
+                34.379555
+              ], 
+              [
+                -103.043979, 
+                34.312764
+              ], 
+              [
+                -103.043979, 
+                34.312749
+              ], 
+              [
+                -103.043936, 
+                34.302585
+              ], 
+              [
+                -103.043719, 
+                34.289441
+              ], 
+              [
+                -103.043644, 
+                34.256903
+              ], 
+              [
+                -103.043569, 
+                34.087947
+              ], 
+              [
+                -103.043516, 
+                34.079382
+              ], 
+              [
+                -103.043686, 
+                34.063078
+              ], 
+              [
+                -103.043744, 
+                34.049986
+              ], 
+              [
+                -103.043767, 
+                34.043545
+              ], 
+              [
+                -103.043721, 
+                34.04232
+              ], 
+              [
+                -103.043771, 
+                34.041538
+              ], 
+              [
+                -103.043746, 
+                34.037294
+              ], 
+              [
+                -103.043555, 
+                34.032714
+              ], 
+              [
+                -103.043531, 
+                34.018014
+              ], 
+              [
+                -103.043617, 
+                34.003633
+              ], 
+              [
+                -103.04395, 
+                33.974629
+              ], 
+              [
+                -103.044893, 
+                33.945617
+              ], 
+              [
+                -103.045698, 
+                33.906299
+              ], 
+              [
+                -103.045644, 
+                33.901537
+              ], 
+              [
+                -103.046907, 
+                33.8503
+              ], 
+              [
+                -103.047346, 
+                33.824675
+              ], 
+              [
+                -103.049096, 
+                33.74627
+              ], 
+              [
+                -103.050148, 
+                33.701971
+              ], 
+              [
+                -103.050532, 
+                33.672408
+              ], 
+              [
+                -103.051087, 
+                33.658186
+              ], 
+              [
+                -103.051535, 
+                33.650487
+              ], 
+              [
+                -103.051363, 
+                33.64195
+              ], 
+              [
+                -103.051664, 
+                33.629489
+              ], 
+              [
+                -103.05261, 
+                33.570599
+              ], 
+              [
+                -103.056655, 
+                33.388438
+              ], 
+              [
+                -103.056655, 
+                33.388416
+              ], 
+              [
+                -103.057487, 
+                33.329477
+              ], 
+              [
+                -103.057856, 
+                33.315234
+              ], 
+              [
+                -103.060103, 
+                33.219225
+              ], 
+              [
+                -103.063905, 
+                33.042055
+              ], 
+              [
+                -103.06398, 
+                33.038693
+              ], 
+              [
+                -103.064452, 
+                33.01029
+              ], 
+              [
+                -103.064625, 
+                32.999899
+              ], 
+              [
+                -103.064679, 
+                32.964373
+              ], 
+              [
+                -103.064657, 
+                32.959097
+              ], 
+              [
+                -103.064569, 
+                32.900014
+              ], 
+              [
+                -103.064701, 
+                32.879355
+              ], 
+              [
+                -103.064862, 
+                32.868346
+              ], 
+              [
+                -103.064807, 
+                32.857696
+              ], 
+              [
+                -103.064916, 
+                32.85726
+              ], 
+              [
+                -103.064889, 
+                32.849359
+              ], 
+              [
+                -103.064672, 
+                32.82847
+              ], 
+              [
+                -103.064699, 
+                32.827531
+              ], 
+              [
+                -103.064711, 
+                32.784593
+              ], 
+              [
+                -103.064698, 
+                32.783602
+              ], 
+              [
+                -103.064807, 
+                32.777303
+              ], 
+              [
+                -103.064827, 
+                32.726628
+              ], 
+              [
+                -103.064799, 
+                32.708694
+              ], 
+              [
+                -103.064798, 
+                32.690761
+              ], 
+              [
+                -103.064864, 
+                32.682647
+              ], 
+              [
+                -103.064633, 
+                32.64642
+              ], 
+              [
+                -103.064815, 
+                32.624537
+              ], 
+              [
+                -103.064761, 
+                32.601863
+              ], 
+              [
+                -103.064788, 
+                32.600397
+              ], 
+              [
+                -103.064761, 
+                32.587983
+              ], 
+              [
+                -103.064696, 
+                32.522193
+              ], 
+              [
+                -103.064422, 
+                32.145006
+              ], 
+              [
+                -103.064348, 
+                32.123041
+              ], 
+              [
+                -103.064344, 
+                32.087051
+              ], 
+              [
+                -103.064423, 
+                32.000518
+              ], 
+              [
+                -103.085876, 
+                32.000465
+              ], 
+              [
+                -103.088698, 
+                32.000453
+              ], 
+              [
+                -103.215641, 
+                32.000513
+              ], 
+              [
+                -103.267633, 
+                32.000475
+              ], 
+              [
+                -103.267708, 
+                32.000324
+              ], 
+              [
+                -103.270383, 
+                32.000326
+              ], 
+              [
+                -103.278521, 
+                32.000419
+              ], 
+              [
+                -103.326501, 
+                32.00037
+              ], 
+              [
+                -103.722853, 
+                32.000221
+              ], 
+              [
+                -103.980179, 
+                32.000125
+              ], 
+              [
+                -104.024521, 
+                32.00001
+              ], 
+              [
+                -104.531756, 
+                32.000117
+              ], 
+              [
+                -104.531937, 
+                32.000311
+              ], 
+              [
+                -104.640918, 
+                32.000396
+              ], 
+              [
+                -104.643526, 
+                32.000443
+              ], 
+              [
+                -104.847757, 
+                32.000482
+              ], 
+              [
+                -104.918272, 
+                32.000496
+              ], 
+              [
+                -105.077046, 
+                32.000579
+              ], 
+              [
+                -105.078605, 
+                32.000533
+              ], 
+              [
+                -105.11804, 
+                32.000485
+              ], 
+              [
+                -105.131377, 
+                32.000524
+              ], 
+              [
+                -105.132916, 
+                32.000518
+              ], 
+              [
+                -105.14824, 
+                32.000485
+              ], 
+              [
+                -105.15031, 
+                32.000497
+              ], 
+              [
+                -105.153994, 
+                32.000497
+              ], 
+              [
+                -105.390396, 
+                32.000607
+              ], 
+              [
+                -105.427049, 
+                32.000638
+              ], 
+              [
+                -105.428582, 
+                32.0006
+              ], 
+              [
+                -105.429281, 
+                32.000577
+              ], 
+              [
+                -105.886159, 
+                32.00197
+              ], 
+              [
+                -105.9006, 
+                32.0021
+              ], 
+              [
+                -105.998003, 
+                32.002328
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 13, 
+      "properties": {
+        "CENSUSAREA": 121298.148, 
+        "GEO_ID": "0400000US35", 
+        "ISO": "US-NM", 
+        "LSAD": "", 
+        "NAME": "New Mexico", 
+        "NAME_1": "New Mexico", 
+        "STATE": "NM"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -100.511949, 
+                45.943654
+              ], 
+              [
+                -100.627681, 
+                45.943642
+              ], 
+              [
+                -100.65082, 
+                45.94368
+              ], 
+              [
+                -100.720865, 
+                45.944024
+              ], 
+              [
+                -100.750407, 
+                45.943649
+              ], 
+              [
+                -100.762072, 
+                45.943803
+              ], 
+              [
+                -100.76211, 
+                45.943767
+              ], 
+              [
+                -100.769751, 
+                45.943766
+              ], 
+              [
+                -100.890176, 
+                45.943861
+              ], 
+              [
+                -100.935582, 
+                45.943757
+              ], 
+              [
+                -100.938989, 
+                45.943848
+              ], 
+              [
+                -100.964411, 
+                45.943822
+              ], 
+              [
+                -100.976565, 
+                45.943864
+              ], 
+              [
+                -100.980693, 
+                45.944068
+              ], 
+              [
+                -101.101334, 
+                45.943841
+              ], 
+              [
+                -101.106826, 
+                45.943984
+              ], 
+              [
+                -101.142571, 
+                45.943841
+              ], 
+              [
+                -101.146076, 
+                45.943842
+              ], 
+              [
+                -101.163241, 
+                45.943915
+              ], 
+              [
+                -101.171074, 
+                45.943959
+              ], 
+              [
+                -101.175693, 
+                45.943983
+              ], 
+              [
+                -101.179103, 
+                45.943896
+              ], 
+              [
+                -101.203787, 
+                45.943895
+              ], 
+              [
+                -101.224006, 
+                45.944025
+              ], 
+              [
+                -101.271524, 
+                45.944209
+              ], 
+              [
+                -101.287223, 
+                45.944107
+              ], 
+              [
+                -101.313272, 
+                45.944164
+              ], 
+              [
+                -101.333871, 
+                45.944166
+              ], 
+              [
+                -101.365283, 
+                45.944092
+              ], 
+              [
+                -101.37069, 
+                45.944198
+              ], 
+              [
+                -101.373769, 
+                45.944265
+              ], 
+              [
+                -101.557276, 
+                45.9441
+              ], 
+              [
+                -101.562156, 
+                45.944237
+              ], 
+              [
+                -101.628597, 
+                45.944293
+              ], 
+              [
+                -101.657631, 
+                45.944387
+              ], 
+              [
+                -101.680574, 
+                45.944329
+              ], 
+              [
+                -101.681819, 
+                45.944444
+              ], 
+              [
+                -101.708785, 
+                45.944348
+              ], 
+              [
+                -101.72338, 
+                45.944187
+              ], 
+              [
+                -101.730069, 
+                45.944356
+              ], 
+              [
+                -101.758611, 
+                45.944478
+              ], 
+              [
+                -101.764277, 
+                45.944412
+              ], 
+              [
+                -101.765293, 
+                45.944367
+              ], 
+              [
+                -101.766177, 
+                45.944322
+              ], 
+              [
+                -101.790054, 
+                45.944442
+              ], 
+              [
+                -101.794606, 
+                45.944397
+              ], 
+              [
+                -101.832991, 
+                45.944464
+              ], 
+              [
+                -101.852642, 
+                45.944457
+              ], 
+              [
+                -101.886838, 
+                45.944559
+              ], 
+              [
+                -101.957439, 
+                45.944484
+              ], 
+              [
+                -101.973749, 
+                45.944456
+              ], 
+              [
+                -101.989501, 
+                45.944472
+              ], 
+              [
+                -101.992187, 
+                45.944471
+              ], 
+              [
+                -101.998618, 
+                45.944556
+              ], 
+              [
+                -101.998703, 
+                45.944557
+              ], 
+              [
+                -102.000425, 
+                45.944581
+              ], 
+              [
+                -102.000656, 
+                45.944515
+              ], 
+              [
+                -102.000679, 
+                45.944515
+              ], 
+              [
+                -102.06093, 
+                45.944622
+              ], 
+              [
+                -102.085122, 
+                45.944642
+              ], 
+              [
+                -102.087555, 
+                45.944598
+              ], 
+              [
+                -102.124628, 
+                45.944813
+              ], 
+              [
+                -102.125429, 
+                45.944652
+              ], 
+              [
+                -102.135269, 
+                45.944586
+              ], 
+              [
+                -102.145356, 
+                45.944659
+              ], 
+              [
+                -102.156393, 
+                45.944663
+              ], 
+              [
+                -102.157965, 
+                45.944641
+              ], 
+              [
+                -102.159439, 
+                45.944641
+              ], 
+              [
+                -102.176698, 
+                45.944622
+              ], 
+              [
+                -102.176993, 
+                45.944622
+              ], 
+              [
+                -102.217867, 
+                45.944711
+              ], 
+              [
+                -102.32823, 
+                45.944806
+              ], 
+              [
+                -102.353384, 
+                45.944984
+              ], 
+              [
+                -102.354283, 
+                45.944901
+              ], 
+              [
+                -102.392696, 
+                45.944951
+              ], 
+              [
+                -102.392767, 
+                45.944979
+              ], 
+              [
+                -102.396359, 
+                45.944916
+              ], 
+              [
+                -102.398575, 
+                45.944868
+              ], 
+              [
+                -102.406176, 
+                45.944997
+              ], 
+              [
+                -102.410346, 
+                45.945079
+              ], 
+              [
+                -102.420173, 
+                45.94507
+              ], 
+              [
+                -102.425358, 
+                45.94499
+              ], 
+              [
+                -102.425397, 
+                45.945041
+              ], 
+              [
+                -102.446419, 
+                45.945083
+              ], 
+              [
+                -102.459586, 
+                45.945081
+              ], 
+              [
+                -102.467563, 
+                45.945159
+              ], 
+              [
+                -102.476024, 
+                45.945183
+              ], 
+              [
+                -102.550947, 
+                45.945015
+              ], 
+              [
+                -102.558579, 
+                45.945129
+              ], 
+              [
+                -102.642555, 
+                45.945404
+              ], 
+              [
+                -102.65162, 
+                45.94545
+              ], 
+              [
+                -102.666684, 
+                45.945307
+              ], 
+              [
+                -102.672474, 
+                45.945244
+              ], 
+              [
+                -102.674077, 
+                45.945274
+              ], 
+              [
+                -102.704871, 
+                45.945072
+              ], 
+              [
+                -102.880252, 
+                45.945069
+              ], 
+              [
+                -102.920482, 
+                45.945038
+              ], 
+              [
+                -102.94207, 
+                45.945092
+              ], 
+              [
+                -102.989902, 
+                45.945211
+              ], 
+              [
+                -102.995345, 
+                45.945166
+              ], 
+              [
+                -102.995668, 
+                45.945167
+              ], 
+              [
+                -103.026058, 
+                45.945307
+              ], 
+              [
+                -103.047779, 
+                45.945335
+              ], 
+              [
+                -103.078477, 
+                45.945289
+              ], 
+              [
+                -103.097872, 
+                45.945262
+              ], 
+              [
+                -103.140939, 
+                45.945257
+              ], 
+              [
+                -103.161251, 
+                45.945309
+              ], 
+              [
+                -103.210634, 
+                45.945222
+              ], 
+              [
+                -103.218396, 
+                45.945208
+              ], 
+              [
+                -103.284092, 
+                45.945149
+              ], 
+              [
+                -103.284109, 
+                45.945152
+              ], 
+              [
+                -103.411325, 
+                45.945264
+              ], 
+              [
+                -103.41804, 
+                45.945186
+              ], 
+              [
+                -103.432393, 
+                45.945313
+              ], 
+              [
+                -103.434851, 
+                45.945291
+              ], 
+              [
+                -103.55871, 
+                45.945131
+              ], 
+              [
+                -103.577083, 
+                45.945283
+              ], 
+              [
+                -103.660779, 
+                45.945231
+              ], 
+              [
+                -103.660779, 
+                45.945241
+              ], 
+              [
+                -103.668479, 
+                45.945242
+              ], 
+              [
+                -104.045443, 
+                45.94531
+              ], 
+              [
+                -104.04667, 
+                46.000001
+              ], 
+              [
+                -104.045633, 
+                46.280188
+              ], 
+              [
+                -104.045469, 
+                46.324545
+              ], 
+              [
+                -104.045462, 
+                46.341895
+              ], 
+              [
+                -104.045335, 
+                46.540929
+              ], 
+              [
+                -104.045271, 
+                46.641443
+              ], 
+              [
+                -104.045271, 
+                46.641449
+              ], 
+              [
+                -104.045474, 
+                46.708738
+              ], 
+              [
+                -104.045572, 
+                46.713881
+              ], 
+              [
+                -104.04537, 
+                46.721332
+              ], 
+              [
+                -104.045403, 
+                46.722177
+              ], 
+              [
+                -104.045402, 
+                46.725423
+              ], 
+              [
+                -104.045542, 
+                46.933887
+              ], 
+              [
+                -104.045535, 
+                46.934009
+              ], 
+              [
+                -104.045566, 
+                46.941231
+              ], 
+              [
+                -104.045076, 
+                47.037589
+              ], 
+              [
+                -104.045052, 
+                47.040863
+              ], 
+              [
+                -104.045195, 
+                47.053639
+              ], 
+              [
+                -104.045227, 
+                47.057502
+              ], 
+              [
+                -104.045259, 
+                47.063901
+              ], 
+              [
+                -104.045354, 
+                47.078574
+              ], 
+              [
+                -104.045018, 
+                47.081202
+              ], 
+              [
+                -104.045081, 
+                47.092813
+              ], 
+              [
+                -104.045159, 
+                47.263874
+              ], 
+              [
+                -104.045091, 
+                47.265953
+              ], 
+              [
+                -104.045057, 
+                47.266868
+              ], 
+              [
+                -104.045088, 
+                47.271406
+              ], 
+              [
+                -104.045155, 
+                47.27393
+              ], 
+              [
+                -104.045121, 
+                47.276969
+              ], 
+              [
+                -104.045307, 
+                47.330128
+              ], 
+              [
+                -104.045313, 
+                47.331955
+              ], 
+              [
+                -104.045333, 
+                47.343452
+              ], 
+              [
+                -104.045069, 
+                47.397461
+              ], 
+              [
+                -104.044797, 
+                47.438445
+              ], 
+              [
+                -104.044621, 
+                47.45938
+              ], 
+              [
+                -104.043242, 
+                47.747106
+              ], 
+              [
+                -104.043199, 
+                47.747292
+              ], 
+              [
+                -104.042384, 
+                47.803256
+              ], 
+              [
+                -104.042432, 
+                47.805358
+              ], 
+              [
+                -104.042567, 
+                47.808237
+              ], 
+              [
+                -104.041869, 
+                47.841699
+              ], 
+              [
+                -104.041662, 
+                47.862282
+              ], 
+              [
+                -104.04223, 
+                47.891031
+              ], 
+              [
+                -104.043329, 
+                47.949554
+              ], 
+              [
+                -104.043497, 
+                47.95449
+              ], 
+              [
+                -104.043933, 
+                47.971515
+              ], 
+              [
+                -104.044162, 
+                47.992836
+              ], 
+              [
+                -104.04412, 
+                47.996107
+              ], 
+              [
+                -104.045399, 
+                48.16439
+              ], 
+              [
+                -104.045498, 
+                48.176249
+              ], 
+              [
+                -104.045424, 
+                48.192473
+              ], 
+              [
+                -104.04556, 
+                48.193913
+              ], 
+              [
+                -104.045692, 
+                48.241415
+              ], 
+              [
+                -104.045729, 
+                48.244586
+              ], 
+              [
+                -104.045645, 
+                48.246179
+              ], 
+              [
+                -104.045861, 
+                48.255097
+              ], 
+              [
+                -104.046039, 
+                48.256761
+              ], 
+              [
+                -104.046332, 
+                48.34229
+              ], 
+              [
+                -104.046371, 
+                48.374154
+              ], 
+              [
+                -104.046654, 
+                48.374773
+              ], 
+              [
+                -104.046913, 
+                48.389429
+              ], 
+              [
+                -104.046913, 
+                48.389433
+              ], 
+              [
+                -104.046969, 
+                48.390675
+              ], 
+              [
+                -104.047134, 
+                48.411057
+              ], 
+              [
+                -104.04696, 
+                48.421065
+              ], 
+              [
+                -104.04709, 
+                48.445903
+              ], 
+              [
+                -104.047192, 
+                48.447251
+              ], 
+              [
+                -104.047294, 
+                48.452529
+              ], 
+              [
+                -104.047259, 
+                48.452941
+              ], 
+              [
+                -104.047392, 
+                48.467086
+              ], 
+              [
+                -104.047555, 
+                48.49414
+              ], 
+              [
+                -104.047675, 
+                48.517852
+              ], 
+              [
+                -104.047513, 
+                48.525913
+              ], 
+              [
+                -104.047876, 
+                48.530798
+              ], 
+              [
+                -104.047648, 
+                48.531489
+              ], 
+              [
+                -104.047783, 
+                48.539737
+              ], 
+              [
+                -104.047811, 
+                48.56277
+              ], 
+              [
+                -104.047974, 
+                48.591606
+              ], 
+              [
+                -104.048212, 
+                48.599055
+              ], 
+              [
+                -104.04793, 
+                48.62019
+              ], 
+              [
+                -104.047586, 
+                48.625644
+              ], 
+              [
+                -104.04762, 
+                48.627015
+              ], 
+              [
+                -104.047582, 
+                48.633976
+              ], 
+              [
+                -104.047582, 
+                48.633984
+              ], 
+              [
+                -104.047819, 
+                48.648631
+              ], 
+              [
+                -104.047887, 
+                48.649911
+              ], 
+              [
+                -104.047865, 
+                48.65745
+              ], 
+              [
+                -104.047861, 
+                48.658856
+              ], 
+              [
+                -104.047849, 
+                48.663163
+              ], 
+              [
+                -104.047883, 
+                48.664191
+              ], 
+              [
+                -104.04834, 
+                48.747133
+              ], 
+              [
+                -104.048548, 
+                48.751356
+              ], 
+              [
+                -104.048537, 
+                48.788552
+              ], 
+              [
+                -104.048569, 
+                48.797052
+              ], 
+              [
+                -104.0489, 
+                48.847387
+              ], 
+              [
+                -104.048652, 
+                48.865734
+              ], 
+              [
+                -104.048824, 
+                48.867539
+              ], 
+              [
+                -104.048883, 
+                48.874008
+              ], 
+              [
+                -104.048893, 
+                48.875739
+              ], 
+              [
+                -104.048719, 
+                48.879921
+              ], 
+              [
+                -104.048643, 
+                48.902609
+              ], 
+              [
+                -104.048746, 
+                48.906858
+              ], 
+              [
+                -104.048744, 
+                48.912113
+              ], 
+              [
+                -104.048807, 
+                48.933636
+              ], 
+              [
+                -104.048701, 
+                48.940331
+              ], 
+              [
+                -104.04877, 
+                48.943301
+              ], 
+              [
+                -104.048872, 
+                48.94963
+              ], 
+              [
+                -104.048698, 
+                48.951823
+              ], 
+              [
+                -104.048627, 
+                48.957124
+              ], 
+              [
+                -104.0488, 
+                48.958997
+              ], 
+              [
+                -104.048555, 
+                48.963772
+              ], 
+              [
+                -104.048616, 
+                48.966736
+              ], 
+              [
+                -104.048478, 
+                48.987007
+              ], 
+              [
+                -104.048736, 
+                48.999877
+              ], 
+              [
+                -103.992467, 
+                48.999567
+              ], 
+              [
+                -103.988925, 
+                48.99958
+              ], 
+              [
+                -103.983786, 
+                48.999604
+              ], 
+              [
+                -103.982361, 
+                48.999615
+              ], 
+              [
+                -103.980868, 
+                48.999581
+              ], 
+              [
+                -103.976459, 
+                48.999605
+              ], 
+              [
+                -103.969479, 
+                48.999525
+              ], 
+              [
+                -103.968611, 
+                48.999525
+              ], 
+              [
+                -103.923261, 
+                48.999562
+              ], 
+              [
+                -103.921976, 
+                48.999551
+              ], 
+              [
+                -103.918921, 
+                48.999551
+              ], 
+              [
+                -103.917428, 
+                48.999585
+              ], 
+              [
+                -103.876905, 
+                48.999544
+              ], 
+              [
+                -103.865336, 
+                48.999591
+              ], 
+              [
+                -103.862738, 
+                48.999639
+              ], 
+              [
+                -103.858363, 
+                48.999606
+              ], 
+              [
+                -103.856072, 
+                48.999572
+              ], 
+              [
+                -103.852287, 
+                48.999561
+              ], 
+              [
+                -102.938793, 
+                48.998998
+              ], 
+              [
+                -102.216993, 
+                48.998553
+              ], 
+              [
+                -102.211301, 
+                48.998554
+              ], 
+              [
+                -102.151847, 
+                48.998798
+              ], 
+              [
+                -102.131614, 
+                48.998842
+              ], 
+              [
+                -102.021144, 
+                48.999015
+              ], 
+              [
+                -101.496737, 
+                48.999355
+              ], 
+              [
+                -101.225915, 
+                48.999531
+              ], 
+              [
+                -101.225187, 
+                48.999566
+              ], 
+              [
+                -101.220754, 
+                48.999455
+              ], 
+              [
+                -101.216182, 
+                48.999469
+              ], 
+              [
+                -100.920577, 
+                48.99956
+              ], 
+              [
+                -100.917939, 
+                48.999571
+              ], 
+              [
+                -100.913634, 
+                48.999662
+              ], 
+              [
+                -100.907107, 
+                48.999593
+              ], 
+              [
+                -100.433981, 
+                48.99941
+              ], 
+              [
+                -100.434351, 
+                48.99957
+              ], 
+              [
+                -100.431642, 
+                48.999604
+              ], 
+              [
+                -100.431676, 
+                48.999398
+              ], 
+              [
+                -100.182707, 
+                48.99923
+              ], 
+              [
+                -99.91378, 
+                48.999049
+              ], 
+              [
+                -99.913705, 
+                48.999049
+              ], 
+              [
+                -99.861488, 
+                48.999156
+              ], 
+              [
+                -99.861454, 
+                48.999202
+              ], 
+              [
+                -99.5257, 
+                48.999423
+              ], 
+              [
+                -98.999819, 
+                48.999769
+              ], 
+              [
+                -97.950205, 
+                49.000459
+              ], 
+              [
+                -97.77575, 
+                49.000574
+              ], 
+              [
+                -97.411216, 
+                49.00051
+              ], 
+              [
+                -97.229039, 
+                49.000687
+              ], 
+              [
+                -97.234005, 
+                48.99747
+              ], 
+              [
+                -97.238387, 
+                48.982631
+              ], 
+              [
+                -97.239155, 
+                48.967596
+              ], 
+              [
+                -97.23261, 
+                48.946561
+              ], 
+              [
+                -97.199549, 
+                48.881183
+              ], 
+              [
+                -97.157797, 
+                48.78768
+              ], 
+              [
+                -97.137571, 
+                48.749191
+              ], 
+              [
+                -97.092606, 
+                48.682033
+              ], 
+              [
+                -97.16305, 
+                48.543963
+              ], 
+              [
+                -97.163105, 
+                48.543855
+              ], 
+              [
+                -97.16111, 
+                48.543155
+              ], 
+              [
+                -97.150541, 
+                48.539449
+              ], 
+              [
+                -97.12677, 
+                48.520191
+              ], 
+              [
+                -97.123399, 
+                48.421201
+              ], 
+              [
+                -97.131479, 
+                48.406586
+              ], 
+              [
+                -97.145693, 
+                48.397431
+              ], 
+              [
+                -97.136373, 
+                48.352393
+              ], 
+              [
+                -97.126745, 
+                48.34214
+              ], 
+              [
+                -97.115581, 
+                48.323928
+              ], 
+              [
+                -97.11657, 
+                48.279661
+              ], 
+              [
+                -97.12993, 
+                48.249731
+              ], 
+              [
+                -97.134534, 
+                48.249737
+              ], 
+              [
+                -97.143148, 
+                48.246708
+              ], 
+              [
+                -97.14717, 
+                48.242966
+              ], 
+              [
+                -97.147401, 
+                48.193779
+              ], 
+              [
+                -97.147498, 
+                48.173227
+              ], 
+              [
+                -97.14751, 
+                48.170572
+              ], 
+              [
+                -97.123135, 
+                48.109497
+              ], 
+              [
+                -97.098275, 
+                48.07131
+              ], 
+              [
+                -97.088158, 
+                48.059515
+              ], 
+              [
+                -97.023156, 
+                47.873978
+              ], 
+              [
+                -97.000356, 
+                47.860915
+              ], 
+              [
+                -96.980391, 
+                47.815662
+              ], 
+              [
+                -96.890671, 
+                47.672153
+              ], 
+              [
+                -96.88574, 
+                47.664266
+              ], 
+              [
+                -96.850955, 
+                47.598287
+              ], 
+              [
+                -96.84243, 
+                47.508225
+              ], 
+              [
+                -96.853286, 
+                47.503881
+              ], 
+              [
+                -96.853768, 
+                47.499527
+              ], 
+              [
+                -96.862312, 
+                47.422333
+              ], 
+              [
+                -96.852676, 
+                47.374973
+              ], 
+              [
+                -96.833019, 
+                47.238095
+              ], 
+              [
+                -96.832946, 
+                47.237588
+              ], 
+              [
+                -96.826655, 
+                47.150539
+              ], 
+              [
+                -96.824807, 
+                47.124968
+              ], 
+              [
+                -96.82318, 
+                46.999965
+              ], 
+              [
+                -96.824598, 
+                46.993309
+              ], 
+              [
+                -96.823222, 
+                46.970861
+              ], 
+              [
+                -96.791558, 
+                46.934264
+              ], 
+              [
+                -96.780258, 
+                46.928263
+              ], 
+              [
+                -96.767458, 
+                46.905163
+              ], 
+              [
+                -96.802013, 
+                46.812464
+              ], 
+              [
+                -96.784205, 
+                46.686768
+              ], 
+              [
+                -96.783014, 
+                46.630647
+              ], 
+              [
+                -96.783009, 
+                46.630418
+              ], 
+              [
+                -96.783003, 
+                46.630405
+              ], 
+              [
+                -96.739054, 
+                46.543708
+              ], 
+              [
+                -96.716438, 
+                46.444567
+              ], 
+              [
+                -96.721999, 
+                46.439986
+              ], 
+              [
+                -96.669794, 
+                46.384644
+              ], 
+              [
+                -96.631586, 
+                46.353752
+              ], 
+              [
+                -96.598233, 
+                46.312563
+              ], 
+              [
+                -96.599087, 
+                46.263701
+              ], 
+              [
+                -96.585647, 
+                46.177309
+              ], 
+              [
+                -96.578362, 
+                46.170112
+              ], 
+              [
+                -96.557952, 
+                46.102442
+              ], 
+              [
+                -96.554835, 
+                46.084824
+              ], 
+              [
+                -96.55694, 
+                46.064601
+              ], 
+              [
+                -96.559271, 
+                46.058272
+              ], 
+              [
+                -96.566295, 
+                46.051416
+              ], 
+              [
+                -96.57794, 
+                46.026874
+              ], 
+              [
+                -96.577326, 
+                46.021757
+              ], 
+              [
+                -96.57035, 
+                45.963595
+              ], 
+              [
+                -96.56328, 
+                45.935238
+              ], 
+              [
+                -96.576897, 
+                45.935259
+              ], 
+              [
+                -96.597432, 
+                45.935209
+              ], 
+              [
+                -96.607142, 
+                45.935301
+              ], 
+              [
+                -96.618295, 
+                45.935407
+              ], 
+              [
+                -96.639066, 
+                45.935318
+              ], 
+              [
+                -96.659895, 
+                45.93556
+              ], 
+              [
+                -96.680646, 
+                45.935716
+              ], 
+              [
+                -96.701313, 
+                45.935807
+              ], 
+              [
+                -96.791505, 
+                45.935857
+              ], 
+              [
+                -96.998652, 
+                45.9357
+              ], 
+              [
+                -97.019596, 
+                45.935382
+              ], 
+              [
+                -97.118053, 
+                45.935485
+              ], 
+              [
+                -97.144987, 
+                45.935278
+              ], 
+              [
+                -97.228291, 
+                45.935141
+              ], 
+              [
+                -97.228304, 
+                45.935141
+              ], 
+              [
+                -97.228323, 
+                45.935141
+              ], 
+              [
+                -97.312184, 
+                45.935077
+              ], 
+              [
+                -97.318899, 
+                45.935054
+              ], 
+              [
+                -97.481967, 
+                45.935138
+              ], 
+              [
+                -97.491892, 
+                45.935111
+              ], 
+              [
+                -97.518944, 
+                45.935304
+              ], 
+              [
+                -97.519035, 
+                45.935304
+              ], 
+              [
+                -97.542598, 
+                45.935258
+              ], 
+              [
+                -97.696691, 
+                45.935352
+              ], 
+              [
+                -97.77704, 
+                45.935393
+              ], 
+              [
+                -97.784575, 
+                45.935327
+              ], 
+              [
+                -97.958718, 
+                45.935878
+              ], 
+              [
+                -97.978778, 
+                45.935937
+              ], 
+              [
+                -97.986893, 
+                45.935961
+              ], 
+              [
+                -98.008102, 
+                45.936095
+              ], 
+              [
+                -98.008202, 
+                45.936096
+              ], 
+              [
+                -98.070515, 
+                45.93618
+              ], 
+              [
+                -98.184637, 
+                45.936183
+              ], 
+              [
+                -98.18563, 
+                45.936185
+              ], 
+              [
+                -98.724375, 
+                45.938685
+              ], 
+              [
+                -98.904429, 
+                45.93952
+              ], 
+              [
+                -98.905477, 
+                45.93952
+              ], 
+              [
+                -99.005642, 
+                45.939944
+              ], 
+              [
+                -99.005754, 
+                45.939944
+              ], 
+              [
+                -99.092868, 
+                45.940184
+              ], 
+              [
+                -99.102372, 
+                45.940158
+              ], 
+              [
+                -99.212571, 
+                45.940108
+              ], 
+              [
+                -99.213644, 
+                45.940116
+              ], 
+              [
+                -99.221672, 
+                45.940069
+              ], 
+              [
+                -99.222269, 
+                45.940071
+              ], 
+              [
+                -99.257745, 
+                45.94006
+              ], 
+              [
+                -99.276266, 
+                45.940188
+              ], 
+              [
+                -99.283968, 
+                45.940195
+              ], 
+              [
+                -99.297272, 
+                45.940165
+              ], 
+              [
+                -99.317875, 
+                45.940263
+              ], 
+              [
+                -99.344774, 
+                45.940299
+              ], 
+              [
+                -99.34496, 
+                45.940299
+              ], 
+              [
+                -99.378486, 
+                45.940403
+              ], 
+              [
+                -99.385565, 
+                45.940407
+              ], 
+              [
+                -99.40126, 
+                45.940367
+              ], 
+              [
+                -99.490254, 
+                45.940362
+              ], 
+              [
+                -99.49314, 
+                45.940383
+              ], 
+              [
+                -99.58878, 
+                45.941104
+              ], 
+              [
+                -99.61116, 
+                45.941098
+              ], 
+              [
+                -99.671938, 
+                45.941062
+              ], 
+              [
+                -99.692975, 
+                45.940949
+              ], 
+              [
+                -99.718071, 
+                45.940907
+              ], 
+              [
+                -99.718073, 
+                45.940907
+              ], 
+              [
+                -99.74787, 
+                45.940933
+              ], 
+              [
+                -99.749325, 
+                45.940935
+              ], 
+              [
+                -99.749494, 
+                45.940956
+              ], 
+              [
+                -99.750396, 
+                45.940935
+              ], 
+              [
+                -99.83868, 
+                45.941293
+              ], 
+              [
+                -99.880062, 
+                45.94167
+              ], 
+              [
+                -99.880292, 
+                45.941672
+              ], 
+              [
+                -99.965775, 
+                45.941822
+              ], 
+              [
+                -100.005486, 
+                45.94195
+              ], 
+              [
+                -100.06902, 
+                45.94217
+              ], 
+              [
+                -100.084163, 
+                45.942301
+              ], 
+              [
+                -100.108471, 
+                45.942391
+              ], 
+              [
+                -100.110339, 
+                45.942367
+              ], 
+              [
+                -100.14173, 
+                45.942506
+              ], 
+              [
+                -100.152084, 
+                45.942486
+              ], 
+              [
+                -100.170826, 
+                45.942514
+              ], 
+              [
+                -100.274762, 
+                45.942945
+              ], 
+              [
+                -100.275614, 
+                45.942922
+              ], 
+              [
+                -100.284134, 
+                45.942951
+              ], 
+              [
+                -100.285345, 
+                45.94313
+              ], 
+              [
+                -100.294126, 
+                45.943269
+              ], 
+              [
+                -100.410386, 
+                45.943453
+              ], 
+              [
+                -100.420162, 
+                45.943533
+              ], 
+              [
+                -100.424438, 
+                45.943569
+              ], 
+              [
+                -100.430597, 
+                45.943638
+              ], 
+              [
+                -100.462838, 
+                45.943566
+              ], 
+              [
+                -100.499354, 
+                45.943632
+              ], 
+              [
+                -100.511793, 
+                45.943654
+              ], 
+              [
+                -100.511949, 
+                45.943654
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 14, 
+      "properties": {
+        "CENSUSAREA": 69000.798, 
+        "GEO_ID": "0400000US38", 
+        "ISO": "US-ND", 
+        "LSAD": "", 
+        "NAME": "North Dakota", 
+        "NAME_1": "North Dakota", 
+        "STATE": "ND"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -100.000381, 
+                34.746358
+              ], 
+              [
+                -100.000381, 
+                34.746461
+              ], 
+              [
+                -100.000384, 
+                35.030385
+              ], 
+              [
+                -100.000385, 
+                35.182702
+              ], 
+              [
+                -100.000389, 
+                35.422364
+              ], 
+              [
+                -100.000392, 
+                35.619115
+              ], 
+              [
+                -100.000396, 
+                35.880948
+              ], 
+              [
+                -100.000399, 
+                36.055677
+              ], 
+              [
+                -100.000406, 
+                36.499702
+              ], 
+              [
+                -100.003762, 
+                36.499699
+              ], 
+              [
+                -100.090021, 
+                36.499634
+              ], 
+              [
+                -100.181221, 
+                36.499633
+              ], 
+              [
+                -100.310643, 
+                36.499642
+              ], 
+              [
+                -100.311018, 
+                36.499688
+              ], 
+              [
+                -100.311245, 
+                36.499631
+              ], 
+              [
+                -100.32415, 
+                36.499679
+              ], 
+              [
+                -100.334441, 
+                36.49944
+              ], 
+              [
+                -100.334464, 
+                36.49942
+              ], 
+              [
+                -100.351842, 
+                36.499473
+              ], 
+              [
+                -100.351852, 
+                36.499487
+              ], 
+              [
+                -100.378592, 
+                36.499445
+              ], 
+              [
+                -100.378634, 
+                36.499517
+              ], 
+              [
+                -100.41355, 
+                36.499469
+              ], 
+              [
+                -100.413634, 
+                36.499444
+              ], 
+              [
+                -100.421301, 
+                36.499488
+              ], 
+              [
+                -100.421328, 
+                36.499447
+              ], 
+              [
+                -100.433959, 
+                36.499456
+              ], 
+              [
+                -100.441064, 
+                36.499462
+              ], 
+              [
+                -100.441065, 
+                36.49949
+              ], 
+              [
+                -100.522227, 
+                36.499291
+              ], 
+              [
+                -100.530314, 
+                36.499357
+              ], 
+              [
+                -100.530478, 
+                36.49924
+              ], 
+              [
+                -100.531215, 
+                36.49929
+              ], 
+              [
+                -100.531215, 
+                36.499341
+              ], 
+              [
+                -100.546145, 
+                36.499343
+              ], 
+              [
+                -100.578114, 
+                36.499439
+              ], 
+              [
+                -100.578114, 
+                36.499463
+              ], 
+              [
+                -100.583379, 
+                36.499443
+              ], 
+              [
+                -100.583539, 
+                36.499483
+              ], 
+              [
+                -100.592551, 
+                36.499429
+              ], 
+              [
+                -100.592556, 
+                36.499469
+              ], 
+              [
+                -100.592614, 
+                36.499469
+              ], 
+              [
+                -100.648344, 
+                36.499463
+              ], 
+              [
+                -100.648343, 
+                36.499495
+              ], 
+              [
+                -100.657763, 
+                36.4995
+              ], 
+              [
+                -100.657763, 
+                36.499483
+              ], 
+              [
+                -100.708628, 
+                36.499521
+              ], 
+              [
+                -100.708626, 
+                36.499553
+              ], 
+              [
+                -100.724361, 
+                36.499558
+              ], 
+              [
+                -100.724362, 
+                36.49958
+              ], 
+              [
+                -100.761811, 
+                36.49958
+              ], 
+              [
+                -100.761811, 
+                36.499618
+              ], 
+              [
+                -100.802886, 
+                36.499621
+              ], 
+              [
+                -100.802909, 
+                36.499621
+              ], 
+              [
+                -100.806172, 
+                36.499634
+              ], 
+              [
+                -100.80619, 
+                36.499674
+              ], 
+              [
+                -100.824218, 
+                36.499618
+              ], 
+              [
+                -100.824236, 
+                36.499618
+              ], 
+              [
+                -100.85084, 
+                36.4997
+              ], 
+              [
+                -100.859657, 
+                36.499687
+              ], 
+              [
+                -100.88408, 
+                36.499682
+              ], 
+              [
+                -100.884174, 
+                36.499682
+              ], 
+              [
+                -100.918513, 
+                36.499621
+              ], 
+              [
+                -100.936058, 
+                36.499602
+              ], 
+              [
+                -100.954153, 
+                36.499599
+              ], 
+              [
+                -100.977088, 
+                36.499595
+              ], 
+              [
+                -101.045331, 
+                36.49954
+              ], 
+              [
+                -101.052418, 
+                36.499563
+              ], 
+              [
+                -101.085156, 
+                36.499244
+              ], 
+              [
+                -101.623915, 
+                36.499528
+              ], 
+              [
+                -101.649966, 
+                36.499573
+              ], 
+              [
+                -101.653708, 
+                36.499573
+              ], 
+              [
+                -101.698685, 
+                36.499508
+              ], 
+              [
+                -101.709314, 
+                36.499722
+              ], 
+              [
+                -101.779435, 
+                36.499734
+              ], 
+              [
+                -101.78061, 
+                36.499727
+              ], 
+              [
+                -101.781987, 
+                36.499718
+              ], 
+              [
+                -101.783359, 
+                36.499709
+              ], 
+              [
+                -101.78811, 
+                36.499678
+              ], 
+              [
+                -101.826498, 
+                36.499535
+              ], 
+              [
+                -101.826565, 
+                36.499654
+              ], 
+              [
+                -102.032339, 
+                36.500066
+              ], 
+              [
+                -102.162463, 
+                36.500326
+              ], 
+              [
+                -103.002434, 
+                36.500397
+              ], 
+              [
+                -103.002565, 
+                36.526588
+              ], 
+              [
+                -103.002188, 
+                36.602716
+              ], 
+              [
+                -103.002252, 
+                36.61718
+              ], 
+              [
+                -103.002518, 
+                36.675186
+              ], 
+              [
+                -103.002198, 
+                36.719427
+              ], 
+              [
+                -103.001964, 
+                36.909573
+              ], 
+              [
+                -103.002247, 
+                36.911587
+              ], 
+              [
+                -103.002199, 
+                37.000104
+              ], 
+              [
+                -102.986976, 
+                36.998524
+              ], 
+              [
+                -102.985807, 
+                36.998571
+              ], 
+              [
+                -102.979613, 
+                36.998549
+              ], 
+              [
+                -102.875481, 
+                36.999628
+              ], 
+              [
+                -102.570896, 
+                36.995136
+              ], 
+              [
+                -102.355367, 
+                36.994575
+              ], 
+              [
+                -102.355288, 
+                36.994506
+              ], 
+              [
+                -102.208316, 
+                36.99373
+              ], 
+              [
+                -102.184271, 
+                36.993593
+              ], 
+              [
+                -102.054503, 
+                36.993109
+              ], 
+              [
+                -102.04224, 
+                36.993083
+              ], 
+              [
+                -102.028207, 
+                36.993125
+              ], 
+              [
+                -102.028204, 
+                36.993125
+              ], 
+              [
+                -102.000447, 
+                36.993272
+              ], 
+              [
+                -102.000447, 
+                36.993249
+              ], 
+              [
+                -101.90244, 
+                36.993702
+              ], 
+              [
+                -101.601593, 
+                36.995095
+              ], 
+              [
+                -101.600396, 
+                36.995153
+              ], 
+              [
+                -101.55526, 
+                36.995414
+              ], 
+              [
+                -101.555239, 
+                36.995414
+              ], 
+              [
+                -101.519066, 
+                36.995546
+              ], 
+              [
+                -101.485326, 
+                36.995611
+              ], 
+              [
+                -101.415005, 
+                36.995966
+              ], 
+              [
+                -101.413868, 
+                36.996008
+              ], 
+              [
+                -101.37818, 
+                36.996164
+              ], 
+              [
+                -101.359674, 
+                36.996232
+              ], 
+              [
+                -101.357797, 
+                36.996271
+              ], 
+              [
+                -101.212909, 
+                36.997044
+              ], 
+              [
+                -101.211486, 
+                36.997124
+              ], 
+              [
+                -101.066742, 
+                36.997921
+              ], 
+              [
+                -101.053589, 
+                36.997967
+              ], 
+              [
+                -101.012641, 
+                36.998176
+              ], 
+              [
+                -100.996502, 
+                36.998044
+              ], 
+              [
+                -100.945566, 
+                36.998152
+              ], 
+              [
+                -100.945469, 
+                36.998153
+              ], 
+              [
+                -100.904588, 
+                36.998561
+              ], 
+              [
+                -100.904274, 
+                36.998745
+              ], 
+              [
+                -100.89166, 
+                36.998604
+              ], 
+              [
+                -100.855634, 
+                36.998626
+              ], 
+              [
+                -100.814277, 
+                36.999085
+              ], 
+              [
+                -100.806116, 
+                36.999091
+              ], 
+              [
+                -100.765484, 
+                36.999177
+              ], 
+              [
+                -100.756894, 
+                36.999357
+              ], 
+              [
+                -100.675552, 
+                36.999688
+              ], 
+              [
+                -100.633327, 
+                36.999936
+              ], 
+              [
+                -100.633323, 
+                36.999936
+              ], 
+              [
+                -100.62977, 
+                37.000025
+              ], 
+              [
+                -100.591413, 
+                37.000399
+              ], 
+              [
+                -100.591328, 
+                37.000376
+              ], 
+              [
+                -100.552683, 
+                37.000735
+              ], 
+              [
+                -100.551598, 
+                37.00062
+              ], 
+              [
+                -100.201676, 
+                37.002081
+              ], 
+              [
+                -100.193754, 
+                37.002133
+              ], 
+              [
+                -100.192371, 
+                37.002036
+              ], 
+              [
+                -100.187547, 
+                37.002082
+              ], 
+              [
+                -100.115722, 
+                37.002206
+              ], 
+              [
+                -100.089484, 
+                37.002092
+              ], 
+              [
+                -100.005706, 
+                37.001726
+              ], 
+              [
+                -100.002563, 
+                37.001706
+              ], 
+              [
+                -100.001286, 
+                37.001699
+              ], 
+              [
+                -99.995201, 
+                37.001631
+              ], 
+              [
+                -99.786016, 
+                37.000931
+              ], 
+              [
+                -99.774816, 
+                37.000841
+              ], 
+              [
+                -99.774255, 
+                37.000837
+              ], 
+              [
+                -99.657658, 
+                37.000197
+              ], 
+              [
+                -99.625399, 
+                36.999671
+              ], 
+              [
+                -99.558068, 
+                36.999528
+              ], 
+              [
+                -99.541116, 
+                36.999573
+              ], 
+              [
+                -99.508574, 
+                36.999658
+              ], 
+              [
+                -99.504093, 
+                36.999648
+              ], 
+              [
+                -99.502665, 
+                36.999645
+              ], 
+              [
+                -99.500395, 
+                36.999637
+              ], 
+              [
+                -99.500395, 
+                36.999576
+              ], 
+              [
+                -99.484333, 
+                36.999626
+              ], 
+              [
+                -99.456203, 
+                36.999471
+              ], 
+              [
+                -99.277506, 
+                36.999579
+              ], 
+              [
+                -99.24812, 
+                36.999565
+              ], 
+              [
+                -99.129449, 
+                36.999422
+              ], 
+              [
+                -99.124883, 
+                36.99942
+              ], 
+              [
+                -99.029337, 
+                36.999595
+              ], 
+              [
+                -99.000303, 
+                36.99951
+              ], 
+              [
+                -98.994371, 
+                36.999493
+              ], 
+              [
+                -98.88058, 
+                36.999309
+              ], 
+              [
+                -98.880009, 
+                36.999263
+              ], 
+              [
+                -98.869449, 
+                36.999286
+              ], 
+              [
+                -98.797452, 
+                36.999229
+              ], 
+              [
+                -98.793711, 
+                36.999227
+              ], 
+              [
+                -98.791936, 
+                36.999255
+              ], 
+              [
+                -98.761597, 
+                36.999425
+              ], 
+              [
+                -98.718465, 
+                36.99918
+              ], 
+              [
+                -98.714512, 
+                36.99906
+              ], 
+              [
+                -98.544872, 
+                36.998997
+              ], 
+              [
+                -98.54466, 
+                36.998996
+              ], 
+              [
+                -98.420209, 
+                36.998516
+              ], 
+              [
+                -98.418268, 
+                36.998538
+              ], 
+              [
+                -98.408991, 
+                36.998513
+              ], 
+              [
+                -98.354073, 
+                36.997961
+              ], 
+              [
+                -98.347149, 
+                36.997962
+              ], 
+              [
+                -98.346188, 
+                36.997962
+              ], 
+              [
+                -98.237712, 
+                36.997972
+              ], 
+              [
+                -98.219499, 
+                36.997824
+              ], 
+              [
+                -98.208218, 
+                36.997997
+              ], 
+              [
+                -98.177596, 
+                36.998009
+              ], 
+              [
+                -98.147452, 
+                36.998162
+              ], 
+              [
+                -98.111985, 
+                36.998133
+              ], 
+              [
+                -98.045342, 
+                36.998327
+              ], 
+              [
+                -98.03989, 
+                36.998349
+              ], 
+              [
+                -98.033955, 
+                36.998366
+              ], 
+              [
+                -97.802313, 
+                36.998713
+              ], 
+              [
+                -97.802298, 
+                36.998713
+              ], 
+              [
+                -97.783489, 
+                36.998847
+              ], 
+              [
+                -97.783432, 
+                36.998961
+              ], 
+              [
+                -97.768704, 
+                36.99875
+              ], 
+              [
+                -97.697104, 
+                36.998826
+              ], 
+              [
+                -97.650466, 
+                36.999004
+              ], 
+              [
+                -97.637137, 
+                36.99909
+              ], 
+              [
+                -97.606549, 
+                36.998682
+              ], 
+              [
+                -97.564536, 
+                36.998711
+              ], 
+              [
+                -97.546498, 
+                36.998747
+              ], 
+              [
+                -97.5459, 
+                36.998709
+              ], 
+              [
+                -97.527292, 
+                36.99875
+              ], 
+              [
+                -97.472861, 
+                36.998721
+              ], 
+              [
+                -97.462346, 
+                36.998685
+              ], 
+              [
+                -97.46228, 
+                36.998685
+              ], 
+              [
+                -97.384925, 
+                36.998843
+              ], 
+              [
+                -97.372421, 
+                36.998861
+              ], 
+              [
+                -97.147721, 
+                36.999111
+              ], 
+              [
+                -97.122597, 
+                36.999036
+              ], 
+              [
+                -97.120285, 
+                36.999014
+              ], 
+              [
+                -97.104276, 
+                36.99902
+              ], 
+              [
+                -97.100652, 
+                36.998998
+              ], 
+              [
+                -97.039784, 
+                36.999
+              ], 
+              [
+                -97.030082, 
+                36.998929
+              ], 
+              [
+                -96.975562, 
+                36.999019
+              ], 
+              [
+                -96.967371, 
+                36.999067
+              ], 
+              [
+                -96.934642, 
+                36.99907
+              ], 
+              [
+                -96.921915, 
+                36.999151
+              ], 
+              [
+                -96.917093, 
+                36.999182
+              ], 
+              [
+                -96.90351, 
+                36.999132
+              ], 
+              [
+                -96.902083, 
+                36.999155
+              ], 
+              [
+                -96.87629, 
+                36.999233
+              ], 
+              [
+                -96.867517, 
+                36.999217
+              ], 
+              [
+                -96.822791, 
+                36.999182
+              ], 
+              [
+                -96.795199, 
+                36.99886
+              ], 
+              [
+                -96.79206, 
+                36.99918
+              ], 
+              [
+                -96.749838, 
+                36.998988
+              ], 
+              [
+                -96.74127, 
+                36.999239
+              ], 
+              [
+                -96.73659, 
+                36.999286
+              ], 
+              [
+                -96.710482, 
+                36.999271
+              ], 
+              [
+                -96.705431, 
+                36.999203
+              ], 
+              [
+                -96.525493, 
+                36.999147
+              ], 
+              [
+                -96.415412, 
+                36.999113
+              ], 
+              [
+                -96.394272, 
+                36.999221
+              ], 
+              [
+                -96.279079, 
+                36.999272
+              ], 
+              [
+                -96.276368, 
+                36.999271
+              ], 
+              [
+                -96.217571, 
+                36.99907
+              ], 
+              [
+                -96.200028, 
+                36.999028
+              ], 
+              [
+                -96.184768, 
+                36.999211
+              ], 
+              [
+                -96.154017, 
+                36.999161
+              ], 
+              [
+                -96.152384, 
+                36.999051
+              ], 
+              [
+                -96.149709, 
+                36.99904
+              ], 
+              [
+                -96.147143, 
+                36.999022
+              ], 
+              [
+                -96.143207, 
+                36.999134
+              ], 
+              [
+                -96.14121, 
+                36.998973
+              ], 
+              [
+                -96.00081, 
+                36.99886
+              ], 
+              [
+                -95.96427, 
+                36.999094
+              ], 
+              [
+                -95.936992, 
+                36.999268
+              ], 
+              [
+                -95.928122, 
+                36.999245
+              ], 
+              [
+                -95.91018, 
+                36.999336
+              ], 
+              [
+                -95.877151, 
+                36.999304
+              ], 
+              [
+                -95.875257, 
+                36.999302
+              ], 
+              [
+                -95.873944, 
+                36.9993
+              ], 
+              [
+                -95.866899, 
+                36.999261
+              ], 
+              [
+                -95.80798, 
+                36.999124
+              ], 
+              [
+                -95.786762, 
+                36.99931
+              ], 
+              [
+                -95.768719, 
+                36.999205
+              ], 
+              [
+                -95.759905, 
+                36.999271
+              ], 
+              [
+                -95.741908, 
+                36.999244
+              ], 
+              [
+                -95.718054, 
+                36.999255
+              ], 
+              [
+                -95.714887, 
+                36.999279
+              ], 
+              [
+                -95.71038, 
+                36.999371
+              ], 
+              [
+                -95.696659, 
+                36.999215
+              ], 
+              [
+                -95.686452, 
+                36.999349
+              ], 
+              [
+                -95.664301, 
+                36.999322
+              ], 
+              [
+                -95.630079, 
+                36.99932
+              ], 
+              [
+                -95.62435, 
+                36.99936
+              ], 
+              [
+                -95.615934, 
+                36.999365
+              ], 
+              [
+                -95.61214, 
+                36.999321
+              ], 
+              [
+                -95.573598, 
+                36.99931
+              ], 
+              [
+                -95.534401, 
+                36.999332
+              ], 
+              [
+                -95.522415, 
+                36.999281
+              ], 
+              [
+                -95.511578, 
+                36.999235
+              ], 
+              [
+                -95.407683, 
+                36.999241
+              ], 
+              [
+                -95.407572, 
+                36.999241
+              ], 
+              [
+                -95.33121, 
+                36.99938
+              ], 
+              [
+                -95.328327, 
+                36.999366
+              ], 
+              [
+                -95.328058, 
+                36.999365
+              ], 
+              [
+                -95.322565, 
+                36.999358
+              ], 
+              [
+                -95.195307, 
+                36.999565
+              ], 
+              [
+                -95.177301, 
+                36.99952
+              ], 
+              [
+                -95.155372, 
+                36.99954
+              ], 
+              [
+                -95.155187, 
+                36.999539
+              ], 
+              [
+                -95.073509, 
+                36.999509
+              ], 
+              [
+                -95.073504, 
+                36.999509
+              ], 
+              [
+                -95.049499, 
+                36.99958
+              ], 
+              [
+                -95.037857, 
+                36.999497
+              ], 
+              [
+                -95.030324, 
+                36.999517
+              ], 
+              [
+                -95.011433, 
+                36.999535
+              ], 
+              [
+                -95.00762, 
+                36.999514
+              ], 
+              [
+                -94.995293, 
+                36.999529
+              ], 
+              [
+                -94.853197, 
+                36.998874
+              ], 
+              [
+                -94.849801, 
+                36.998876
+              ], 
+              [
+                -94.840926, 
+                36.998833
+              ], 
+              [
+                -94.83128, 
+                36.998812
+              ], 
+              [
+                -94.777257, 
+                36.998764
+              ], 
+              [
+                -94.739324, 
+                36.998687
+              ], 
+              [
+                -94.737183, 
+                36.998665
+              ], 
+              [
+                -94.71277, 
+                36.998794
+              ], 
+              [
+                -94.701797, 
+                36.998814
+              ], 
+              [
+                -94.699735, 
+                36.998805
+              ], 
+              [
+                -94.61808, 
+                36.998135
+              ], 
+              [
+                -94.618049, 
+                36.996208
+              ], 
+              [
+                -94.618031, 
+                36.994704
+              ], 
+              [
+                -94.618026, 
+                36.950158
+              ], 
+              [
+                -94.618109, 
+                36.946564
+              ], 
+              [
+                -94.618166, 
+                36.937584
+              ], 
+              [
+                -94.618295, 
+                36.929647
+              ], 
+              [
+                -94.618207, 
+                36.926236
+              ], 
+              [
+                -94.618282, 
+                36.911472
+              ], 
+              [
+                -94.618243, 
+                36.897027
+              ], 
+              [
+                -94.618658, 
+                36.880064
+              ], 
+              [
+                -94.61838, 
+                36.84732
+              ], 
+              [
+                -94.618307, 
+                36.76656
+              ], 
+              [
+                -94.61813, 
+                36.701423
+              ], 
+              [
+                -94.618025, 
+                36.66943
+              ], 
+              [
+                -94.618019, 
+                36.667921
+              ], 
+              [
+                -94.617815, 
+                36.612604
+              ], 
+              [
+                -94.617865, 
+                36.606851
+              ], 
+              [
+                -94.617853, 
+                36.59912
+              ], 
+              [
+                -94.617814, 
+                36.577732
+              ], 
+              [
+                -94.617897, 
+                36.536983
+              ], 
+              [
+                -94.617868, 
+                36.53609
+              ], 
+              [
+                -94.617997, 
+                36.53428
+              ], 
+              [
+                -94.617883, 
+                36.517799
+              ], 
+              [
+                -94.617877, 
+                36.514999
+              ], 
+              [
+                -94.617919, 
+                36.499414
+              ], 
+              [
+                -94.615311, 
+                36.484992
+              ], 
+              [
+                -94.61383, 
+                36.476248
+              ], 
+              [
+                -94.611609, 
+                36.461528
+              ], 
+              [
+                -94.605408, 
+                36.421949
+              ], 
+              [
+                -94.602623, 
+                36.405283
+              ], 
+              [
+                -94.601984, 
+                36.40212
+              ], 
+              [
+                -94.599723, 
+                36.387587
+              ], 
+              [
+                -94.593397, 
+                36.345742
+              ], 
+              [
+                -94.5862, 
+                36.299969
+              ], 
+              [
+                -94.577883, 
+                36.25008
+              ], 
+              [
+                -94.577899, 
+                36.249548
+              ], 
+              [
+                -94.576003, 
+                36.24007
+              ], 
+              [
+                -94.575071, 
+                36.233682
+              ], 
+              [
+                -94.57488, 
+                36.232741
+              ], 
+              [
+                -94.574395, 
+                36.229996
+              ], 
+              [
+                -94.571806, 
+                36.213748
+              ], 
+              [
+                -94.571253, 
+                36.210901
+              ], 
+              [
+                -94.566588, 
+                36.183774
+              ], 
+              [
+                -94.565655, 
+                36.178439
+              ], 
+              [
+                -94.562828, 
+                36.161895
+              ], 
+              [
+                -94.562803, 
+                36.161749
+              ], 
+              [
+                -94.561165, 
+                36.15211
+              ], 
+              [
+                -94.552184, 
+                36.102235
+              ], 
+              [
+                -94.547871, 
+                36.078281
+              ], 
+              [
+                -94.547715, 
+                36.077271
+              ], 
+              [
+                -94.535724, 
+                36.007807
+              ], 
+              [
+                -94.534852, 
+                36.002678
+              ], 
+              [
+                -94.533646, 
+                35.996804
+              ], 
+              [
+                -94.532071, 
+                35.987852
+              ], 
+              [
+                -94.528305, 
+                35.966054
+              ], 
+              [
+                -94.528162, 
+                35.965665
+              ], 
+              [
+                -94.52464, 
+                35.945727
+              ], 
+              [
+                -94.524344, 
+                35.94405
+              ], 
+              [
+                -94.52291, 
+                35.936127
+              ], 
+              [
+                -94.522634, 
+                35.934892
+              ], 
+              [
+                -94.522658, 
+                35.934799
+              ], 
+              [
+                -94.522658, 
+                35.93425
+              ], 
+              [
+                -94.507631, 
+                35.845901
+              ], 
+              [
+                -94.505642, 
+                35.833628
+              ], 
+              [
+                -94.504438, 
+                35.826369
+              ], 
+              [
+                -94.503011, 
+                35.81721
+              ], 
+              [
+                -94.501162, 
+                35.80643
+              ], 
+              [
+                -94.500764, 
+                35.80382
+              ], 
+              [
+                -94.500526, 
+                35.802642
+              ], 
+              [
+                -94.499647, 
+                35.79691
+              ], 
+              [
+                -94.499045, 
+                35.79346
+              ], 
+              [
+                -94.494549, 
+                35.768303
+              ], 
+              [
+                -94.493362, 
+                35.761892
+              ], 
+              [
+                -94.492932, 
+                35.759166
+              ], 
+              [
+                -94.48821, 
+                35.72924
+              ], 
+              [
+                -94.487585, 
+                35.726147
+              ], 
+              [
+                -94.472647, 
+                35.638556
+              ], 
+              [
+                -94.465272, 
+                35.594037
+              ], 
+              [
+                -94.464457, 
+                35.588909
+              ], 
+              [
+                -94.464097, 
+                35.587265
+              ], 
+              [
+                -94.463318, 
+                35.58266
+              ], 
+              [
+                -94.431789, 
+                35.397659
+              ], 
+              [
+                -94.431215, 
+                35.39429
+              ], 
+              [
+                -94.433915, 
+                35.387391
+              ], 
+              [
+                -94.433742, 
+                35.386467
+              ], 
+              [
+                -94.432685, 
+                35.380806
+              ], 
+              [
+                -94.431815, 
+                35.362891
+              ], 
+              [
+                -94.434115, 
+                35.306493
+              ], 
+              [
+                -94.43517, 
+                35.291494
+              ], 
+              [
+                -94.43528, 
+                35.287485
+              ], 
+              [
+                -94.435316, 
+                35.275893
+              ], 
+              [
+                -94.435706, 
+                35.274267
+              ], 
+              [
+                -94.435812, 
+                35.2713
+              ], 
+              [
+                -94.437578, 
+                35.242202
+              ], 
+              [
+                -94.437774, 
+                35.239271
+              ], 
+              [
+                -94.438247, 
+                35.210992
+              ], 
+              [
+                -94.43847, 
+                35.208587
+              ], 
+              [
+                -94.439084, 
+                35.197298
+              ], 
+              [
+                -94.439056, 
+                35.193588
+              ], 
+              [
+                -94.439509, 
+                35.171807
+              ], 
+              [
+                -94.43955, 
+                35.169037
+              ], 
+              [
+                -94.440754, 
+                35.128806
+              ], 
+              [
+                -94.441232, 
+                35.119724
+              ], 
+              [
+                -94.447889, 
+                34.933941
+              ], 
+              [
+                -94.449253, 
+                34.895869
+              ], 
+              [
+                -94.449086, 
+                34.894152
+              ], 
+              [
+                -94.449058, 
+                34.890556
+              ], 
+              [
+                -94.44963, 
+                34.875253
+              ], 
+              [
+                -94.450065, 
+                34.861335
+              ], 
+              [
+                -94.45014, 
+                34.858694
+              ], 
+              [
+                -94.450233, 
+                34.855413
+              ], 
+              [
+                -94.454576, 
+                34.728962
+              ], 
+              [
+                -94.45753, 
+                34.642961
+              ], 
+              [
+                -94.4575, 
+                34.634945
+              ], 
+              [
+                -94.460052, 
+                34.547869
+              ], 
+              [
+                -94.460058, 
+                34.545264
+              ], 
+              [
+                -94.461149, 
+                34.507457
+              ], 
+              [
+                -94.463671, 
+                34.419585
+              ], 
+              [
+                -94.463816, 
+                34.414465
+              ], 
+              [
+                -94.464176, 
+                34.402713
+              ], 
+              [
+                -94.465425, 
+                34.359548
+              ], 
+              [
+                -94.465847, 
+                34.352073
+              ], 
+              [
+                -94.470292, 
+                34.189864
+              ], 
+              [
+                -94.474896, 
+                34.021877
+              ], 
+              [
+                -94.474896, 
+                34.021838
+              ], 
+              [
+                -94.474895, 
+                34.019655
+              ], 
+              [
+                -94.476957, 
+                33.957365
+              ], 
+              [
+                -94.477038, 
+                33.953838
+              ], 
+              [
+                -94.477318, 
+                33.940932
+              ], 
+              [
+                -94.477387, 
+                33.937759
+              ], 
+              [
+                -94.478842, 
+                33.881485
+              ], 
+              [
+                -94.478994, 
+                33.881197
+              ], 
+              [
+                -94.479954, 
+                33.85133
+              ], 
+              [
+                -94.480574, 
+                33.830166
+              ], 
+              [
+                -94.481355, 
+                33.802887
+              ], 
+              [
+                -94.481361, 
+                33.802649
+              ], 
+              [
+                -94.481543, 
+                33.795719
+              ], 
+              [
+                -94.481842, 
+                33.789008
+              ], 
+              [
+                -94.482682, 
+                33.756286
+              ], 
+              [
+                -94.482777, 
+                33.753638
+              ], 
+              [
+                -94.482862, 
+                33.75078
+              ], 
+              [
+                -94.48287, 
+                33.750564
+              ], 
+              [
+                -94.483874, 
+                33.716733
+              ], 
+              [
+                -94.48384, 
+                33.711332
+              ], 
+              [
+                -94.484616, 
+                33.691592
+              ], 
+              [
+                -94.48452, 
+                33.687909
+              ], 
+              [
+                -94.485528, 
+                33.663388
+              ], 
+              [
+                -94.485577, 
+                33.65331
+              ], 
+              [
+                -94.485875, 
+                33.637867
+              ], 
+              [
+                -94.487611, 
+                33.628544
+              ], 
+              [
+                -94.490684, 
+                33.625586
+              ], 
+              [
+                -94.524055, 
+                33.615765
+              ], 
+              [
+                -94.52838, 
+                33.615995
+              ], 
+              [
+                -94.660964, 
+                33.660322
+              ], 
+              [
+                -94.735128, 
+                33.691267
+              ], 
+              [
+                -94.746096, 
+                33.703016
+              ], 
+              [
+                -94.760604, 
+                33.727054
+              ], 
+              [
+                -94.822473, 
+                33.732716
+              ], 
+              [
+                -94.8693, 
+                33.745871
+              ], 
+              [
+                -95.039452, 
+                33.860621
+              ], 
+              [
+                -95.062284, 
+                33.903618
+              ], 
+              [
+                -95.063459, 
+                33.91404
+              ], 
+              [
+                -95.067253, 
+                33.917351
+              ], 
+              [
+                -95.129572, 
+                33.936718
+              ], 
+              [
+                -95.155981, 
+                33.944027
+              ], 
+              [
+                -95.219358, 
+                33.961567
+              ], 
+              [
+                -95.226393, 
+                33.961954
+              ], 
+              [
+                -95.231113, 
+                33.960361
+              ], 
+              [
+                -95.252906, 
+                33.933648
+              ], 
+              [
+                -95.253623, 
+                33.92971
+              ], 
+              [
+                -95.249807, 
+                33.922241
+              ], 
+              [
+                -95.2482, 
+                33.912327
+              ], 
+              [
+                -95.249922, 
+                33.902024
+              ], 
+              [
+                -95.255541, 
+                33.892047
+              ], 
+              [
+                -95.260815, 
+                33.887653
+              ], 
+              [
+                -95.287565, 
+                33.873617
+              ], 
+              [
+                -95.310475, 
+                33.871481
+              ], 
+              [
+                -95.339758, 
+                33.868752
+              ], 
+              [
+                -95.407795, 
+                33.866308
+              ], 
+              [
+                -95.445751, 
+                33.86885
+              ], 
+              [
+                -95.544346, 
+                33.880111
+              ], 
+              [
+                -95.548325, 
+                33.882744
+              ], 
+              [
+                -95.552085, 
+                33.888422
+              ], 
+              [
+                -95.552331, 
+                33.89442
+              ], 
+              [
+                -95.549475, 
+                33.901311
+              ], 
+              [
+                -95.549145, 
+                33.90795
+              ], 
+              [
+                -95.559414, 
+                33.930179
+              ], 
+              [
+                -95.567022, 
+                33.932697
+              ], 
+              [
+                -95.599678, 
+                33.934247
+              ], 
+              [
+                -95.757156, 
+                33.867293
+              ], 
+              [
+                -95.763622, 
+                33.847954
+              ], 
+              [
+                -95.82468, 
+                33.837726
+              ], 
+              [
+                -95.846334, 
+                33.841136
+              ], 
+              [
+                -95.949935, 
+                33.857452
+              ], 
+              [
+                -96.097526, 
+                33.847544
+              ], 
+              [
+                -96.14807, 
+                33.837799
+              ], 
+              [
+                -96.156717, 
+                33.813324
+              ], 
+              [
+                -96.1641, 
+                33.784261
+              ], 
+              [
+                -96.170055, 
+                33.76917
+              ], 
+              [
+                -96.181704, 
+                33.758504
+              ], 
+              [
+                -96.1999, 
+                33.752117
+              ], 
+              [
+                -96.220521, 
+                33.74739
+              ], 
+              [
+                -96.229859, 
+                33.74832
+              ], 
+              [
+                -96.304675, 
+                33.745901
+              ], 
+              [
+                -96.36959, 
+                33.716809
+              ], 
+              [
+                -96.378473, 
+                33.726648
+              ], 
+              [
+                -96.423362, 
+                33.776365
+              ], 
+              [
+                -96.436455, 
+                33.78005
+              ], 
+              [
+                -96.448045, 
+                33.781031
+              ], 
+              [
+                -96.500268, 
+                33.772583
+              ], 
+              [
+                -96.612925, 
+                33.833939
+              ], 
+              [
+                -96.61487, 
+                33.841234
+              ], 
+              [
+                -96.615843, 
+                33.853393
+              ], 
+              [
+                -96.612963, 
+                33.867651
+              ], 
+              [
+                -96.611466, 
+                33.875278
+              ], 
+              [
+                -96.613494, 
+                33.878321
+              ], 
+              [
+                -96.615356, 
+                33.881114
+              ], 
+              [
+                -96.622165, 
+                33.885977
+              ], 
+              [
+                -96.633351, 
+                33.889382
+              ], 
+              [
+                -96.646968, 
+                33.895218
+              ], 
+              [
+                -96.65864, 
+                33.900081
+              ], 
+              [
+                -96.672258, 
+                33.899595
+              ], 
+              [
+                -96.67858, 
+                33.892786
+              ], 
+              [
+                -96.682471, 
+                33.883059
+              ], 
+              [
+                -96.685389, 
+                33.872846
+              ], 
+              [
+                -96.68928, 
+                33.86166
+              ], 
+              [
+                -96.694629, 
+                33.849988
+              ], 
+              [
+                -96.700952, 
+                33.840748
+              ], 
+              [
+                -96.707274, 
+                33.835398
+              ], 
+              [
+                -96.712422, 
+                33.831633
+              ], 
+              [
+                -96.761588, 
+                33.824406
+              ], 
+              [
+                -96.85609, 
+                33.84749
+              ], 
+              [
+                -96.866438, 
+                33.853149
+              ], 
+              [
+                -96.88301, 
+                33.868019
+              ], 
+              [
+                -96.895728, 
+                33.896414
+              ], 
+              [
+                -96.899442, 
+                33.933728
+              ], 
+              [
+                -96.907387, 
+                33.950025
+              ], 
+              [
+                -96.9163, 
+                33.957798
+              ], 
+              [
+                -96.922114, 
+                33.959579
+              ], 
+              [
+                -96.934508, 
+                33.953748
+              ], 
+              [
+                -96.944611, 
+                33.948994
+              ], 
+              [
+                -96.97287, 
+                33.935698
+              ], 
+              [
+                -96.985567, 
+                33.886522
+              ], 
+              [
+                -97.00613, 
+                33.861884
+              ], 
+              [
+                -97.047972, 
+                33.817931
+              ], 
+              [
+                -97.092414, 
+                33.733214
+              ], 
+              [
+                -97.097154, 
+                33.727809
+              ], 
+              [
+                -97.107183, 
+                33.721119
+              ], 
+              [
+                -97.121102, 
+                33.717174
+              ], 
+              [
+                -97.13753, 
+                33.718664
+              ], 
+              [
+                -97.151257, 
+                33.722608
+              ], 
+              [
+                -97.162803, 
+                33.729127
+              ], 
+              [
+                -97.163149, 
+                33.729322
+              ], 
+              [
+                -97.172192, 
+                33.737545
+              ], 
+              [
+                -97.204827, 
+                33.799908
+              ], 
+              [
+                -97.204995, 
+                33.81887
+              ], 
+              [
+                -97.1997, 
+                33.827322
+              ], 
+              [
+                -97.194678, 
+                33.831192
+              ], 
+              [
+                -97.18137, 
+                33.831375
+              ], 
+              [
+                -97.171627, 
+                33.835335
+              ], 
+              [
+                -97.166824, 
+                33.840395
+              ], 
+              [
+                -97.166629, 
+                33.847311
+              ], 
+              [
+                -97.180845, 
+                33.895204
+              ], 
+              [
+                -97.185458, 
+                33.9007
+              ], 
+              [
+                -97.210921, 
+                33.916064
+              ], 
+              [
+                -97.226522, 
+                33.914642
+              ], 
+              [
+                -97.310843, 
+                33.872461
+              ], 
+              [
+                -97.372941, 
+                33.819454
+              ], 
+              [
+                -97.426493, 
+                33.819398
+              ], 
+              [
+                -97.444193, 
+                33.823773
+              ], 
+              [
+                -97.453057, 
+                33.828536
+              ], 
+              [
+                -97.459068, 
+                33.834581
+              ], 
+              [
+                -97.462857, 
+                33.841772
+              ], 
+              [
+                -97.461486, 
+                33.84956
+              ], 
+              [
+                -97.457617, 
+                33.855126
+              ], 
+              [
+                -97.451469, 
+                33.87093
+              ], 
+              [
+                -97.450954, 
+                33.891398
+              ], 
+              [
+                -97.458069, 
+                33.901635
+              ], 
+              [
+                -97.484071, 
+                33.91568
+              ], 
+              [
+                -97.486505, 
+                33.916994
+              ], 
+              [
+                -97.50096, 
+                33.919643
+              ], 
+              [
+                -97.519171, 
+                33.913638
+              ], 
+              [
+                -97.545526, 
+                33.900396
+              ], 
+              [
+                -97.555002, 
+                33.897282
+              ], 
+              [
+                -97.561054, 
+                33.898006
+              ], 
+              [
+                -97.581041, 
+                33.900396
+              ], 
+              [
+                -97.587441, 
+                33.902479
+              ], 
+              [
+                -97.596289, 
+                33.913769
+              ], 
+              [
+                -97.597115, 
+                33.917868
+              ], 
+              [
+                -97.588828, 
+                33.951882
+              ], 
+              [
+                -97.589598, 
+                33.953554
+              ], 
+              [
+                -97.609091, 
+                33.968093
+              ], 
+              [
+                -97.65621, 
+                33.989488
+              ], 
+              [
+                -97.671772, 
+                33.99137
+              ], 
+              [
+                -97.688023, 
+                33.986607
+              ], 
+              [
+                -97.69311, 
+                33.983699
+              ], 
+              [
+                -97.700477, 
+                33.972246
+              ], 
+              [
+                -97.733723, 
+                33.936392
+              ], 
+              [
+                -97.785317, 
+                33.890701
+              ], 
+              [
+                -97.834333, 
+                33.857671
+              ], 
+              [
+                -97.865765, 
+                33.849393
+              ], 
+              [
+                -97.877387, 
+                33.850236
+              ], 
+              [
+                -97.966706, 
+                33.881949
+              ], 
+              [
+                -97.97781, 
+                33.889894
+              ], 
+              [
+                -97.977859, 
+                33.889929
+              ], 
+              [
+                -97.953395, 
+                33.936445
+              ], 
+              [
+                -97.94573, 
+                33.989839
+              ], 
+              [
+                -97.983521, 
+                34.001559
+              ], 
+              [
+                -98.019485, 
+                33.993804
+              ], 
+              [
+                -98.041117, 
+                33.993456
+              ], 
+              [
+                -98.08526, 
+                34.003259
+              ], 
+              [
+                -98.088203, 
+                34.005481
+              ], 
+              [
+                -98.106261, 
+                34.033696
+              ], 
+              [
+                -98.16912, 
+                34.114171
+              ], 
+              [
+                -98.200075, 
+                34.116783
+              ], 
+              [
+                -98.293901, 
+                34.13302
+              ], 
+              [
+                -98.300209, 
+                34.134579
+              ], 
+              [
+                -98.325445, 
+                34.151025
+              ], 
+              [
+                -98.364023, 
+                34.157109
+              ], 
+              [
+                -98.383222, 
+                34.147806
+              ], 
+              [
+                -98.398441, 
+                34.128456
+              ], 
+              [
+                -98.400494, 
+                34.121778
+              ], 
+              [
+                -98.433769, 
+                34.096116
+              ], 
+              [
+                -98.475066, 
+                34.064269
+              ], 
+              [
+                -98.504182, 
+                34.072371
+              ], 
+              [
+                -98.553717, 
+                34.13366
+              ], 
+              [
+                -98.577356, 
+                34.1491
+              ], 
+              [
+                -98.599789, 
+                34.160571
+              ], 
+              [
+                -98.610112, 
+                34.161039
+              ], 
+              [
+                -98.637575, 
+                34.162284
+              ], 
+              [
+                -98.652347, 
+                34.161029
+              ], 
+              [
+                -98.665824, 
+                34.151617
+              ], 
+              [
+                -98.700182, 
+                34.135995
+              ], 
+              [
+                -98.76557, 
+                34.136376
+              ], 
+              [
+                -98.858419, 
+                34.152732
+              ], 
+              [
+                -98.920042, 
+                34.182908
+              ], 
+              [
+                -98.952527, 
+                34.195621
+              ], 
+              [
+                -98.966743, 
+                34.201185
+              ], 
+              [
+                -99.060344, 
+                34.204761
+              ], 
+              [
+                -99.119204, 
+                34.201747
+              ], 
+              [
+                -99.157114, 
+                34.207414
+              ], 
+              [
+                -99.19089, 
+                34.215251
+              ], 
+              [
+                -99.211648, 
+                34.292232
+              ], 
+              [
+                -99.2116, 
+                34.31397
+              ], 
+              [
+                -99.209724, 
+                34.324935
+              ], 
+              [
+                -99.211396, 
+                34.337688
+              ], 
+              [
+                -99.211423, 
+                34.337897
+              ], 
+              [
+                -99.261321, 
+                34.403499
+              ], 
+              [
+                -99.356713, 
+                34.442144
+              ], 
+              [
+                -99.398635, 
+                34.375832
+              ], 
+              [
+                -99.407168, 
+                34.372605
+              ], 
+              [
+                -99.44076, 
+                34.374123
+              ], 
+              [
+                -99.453477, 
+                34.388756
+              ], 
+              [
+                -99.474161, 
+                34.398052
+              ], 
+              [
+                -99.499875, 
+                34.409608
+              ], 
+              [
+                -99.515385, 
+                34.414333
+              ], 
+              [
+                -99.574367, 
+                34.418281
+              ], 
+              [
+                -99.58006, 
+                34.416653
+              ], 
+              [
+                -99.616793, 
+                34.375391
+              ], 
+              [
+                -99.663948, 
+                34.37368
+              ], 
+              [
+                -99.69497, 
+                34.378333
+              ], 
+              [
+                -99.767234, 
+                34.430502
+              ], 
+              [
+                -99.793684, 
+                34.453894
+              ], 
+              [
+                -99.846399, 
+                34.505045
+              ], 
+              [
+                -99.864922, 
+                34.523018
+              ], 
+              [
+                -99.872357, 
+                34.532096
+              ], 
+              [
+                -99.874403, 
+                34.537095
+              ], 
+              [
+                -99.884842, 
+                34.546953
+              ], 
+              [
+                -99.923211, 
+                34.574552
+              ], 
+              [
+                -99.94572, 
+                34.579273
+              ], 
+              [
+                -99.954567, 
+                34.578195
+              ], 
+              [
+                -99.997853, 
+                34.561485
+              ], 
+              [
+                -100.000381, 
+                34.560509
+              ], 
+              [
+                -100.000381, 
+                34.746358
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 15, 
+      "properties": {
+        "CENSUSAREA": 68594.921, 
+        "GEO_ID": "0400000US40", 
+        "ISO": "US-OK", 
+        "LSAD": "", 
+        "NAME": "Oklahoma", 
+        "NAME_1": "Oklahoma", 
+        "STATE": "OK"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -79.476662, 
+                39.721078
+              ], 
+              [
+                -79.608223, 
+                39.721154
+              ], 
+              [
+                -79.610623, 
+                39.721245
+              ], 
+              [
+                -79.763774, 
+                39.720776
+              ], 
+              [
+                -79.852904, 
+                39.720713
+              ], 
+              [
+                -79.853131, 
+                39.720713
+              ], 
+              [
+                -79.916266, 
+                39.720792
+              ], 
+              [
+                -80.308651, 
+                39.721283
+              ], 
+              [
+                -80.309457, 
+                39.721264
+              ], 
+              [
+                -80.421388, 
+                39.721189
+              ], 
+              [
+                -80.519342, 
+                39.721403
+              ], 
+              [
+                -80.519248, 
+                39.936967
+              ], 
+              [
+                -80.519115, 
+                39.939188
+              ], 
+              [
+                -80.519175, 
+                39.956648
+              ], 
+              [
+                -80.519203, 
+                39.959394
+              ], 
+              [
+                -80.519217, 
+                39.962199
+              ], 
+              [
+                -80.519218, 
+                39.962424
+              ], 
+              [
+                -80.519207, 
+                39.963381
+              ], 
+              [
+                -80.51912, 
+                40.01641
+              ], 
+              [
+                -80.519008, 
+                40.077001
+              ], 
+              [
+                -80.51896, 
+                40.078089
+              ], 
+              [
+                -80.519104, 
+                40.159672
+              ], 
+              [
+                -80.519056, 
+                40.172744
+              ], 
+              [
+                -80.519056, 
+                40.172771
+              ], 
+              [
+                -80.517991, 
+                40.398868
+              ], 
+              [
+                -80.517998, 
+                40.399644
+              ], 
+              [
+                -80.518692, 
+                40.477365
+              ], 
+              [
+                -80.519054, 
+                40.517922
+              ], 
+              [
+                -80.519057, 
+                40.517922
+              ], 
+              [
+                -80.519055, 
+                40.590173
+              ], 
+              [
+                -80.519086, 
+                40.590161
+              ], 
+              [
+                -80.519086, 
+                40.616385
+              ], 
+              [
+                -80.519039, 
+                40.616391
+              ], 
+              [
+                -80.518991, 
+                40.638801
+              ], 
+              [
+                -80.519058, 
+                40.792298
+              ], 
+              [
+                -80.518992, 
+                40.801221
+              ], 
+              [
+                -80.519081, 
+                40.849157
+              ], 
+              [
+                -80.51902, 
+                40.850073
+              ], 
+              [
+                -80.519039, 
+                40.851339
+              ], 
+              [
+                -80.519764, 
+                40.899858
+              ], 
+              [
+                -80.51979, 
+                40.900761
+              ], 
+              [
+                -80.519091, 
+                40.921061
+              ], 
+              [
+                -80.519, 
+                40.98738
+              ], 
+              [
+                -80.518989, 
+                40.995445
+              ], 
+              [
+                -80.518927, 
+                41.015387
+              ], 
+              [
+                -80.51896, 
+                41.061546
+              ], 
+              [
+                -80.518928, 
+                41.070954
+              ], 
+              [
+                -80.51896, 
+                41.071866
+              ], 
+              [
+                -80.518999, 
+                41.075014
+              ], 
+              [
+                -80.519088, 
+                41.082074
+              ], 
+              [
+                -80.519092, 
+                41.090658
+              ], 
+              [
+                -80.519125, 
+                41.100819
+              ], 
+              [
+                -80.519192, 
+                41.105358
+              ], 
+              [
+                -80.518992, 
+                41.115958
+              ], 
+              [
+                -80.519056, 
+                41.125057
+              ], 
+              [
+                -80.519012, 
+                41.125057
+              ], 
+              [
+                -80.519012, 
+                41.125093
+              ], 
+              [
+                -80.519012, 
+                41.125116
+              ], 
+              [
+                -80.519167, 
+                41.133343
+              ], 
+              [
+                -80.519167, 
+                41.133388
+              ], 
+              [
+                -80.519115, 
+                41.14552
+              ], 
+              [
+                -80.519144, 
+                41.171203
+              ], 
+              [
+                -80.51883, 
+                41.209213
+              ], 
+              [
+                -80.518893, 
+                41.219356
+              ], 
+              [
+                -80.518893, 
+                41.219357
+              ], 
+              [
+                -80.518893, 
+                41.232556
+              ], 
+              [
+                -80.518693, 
+                41.248855
+              ], 
+              [
+                -80.518893, 
+                41.265155
+              ], 
+              [
+                -80.518993, 
+                41.268155
+              ], 
+              [
+                -80.518996, 
+                41.2683
+              ], 
+              [
+                -80.518794, 
+                41.305509
+              ], 
+              [
+                -80.519129, 
+                41.312408
+              ], 
+              [
+                -80.519265, 
+                41.333495
+              ], 
+              [
+                -80.519281, 
+                41.335958
+              ], 
+              [
+                -80.519281, 
+                41.337145
+              ], 
+              [
+                -80.519281, 
+                41.337174
+              ], 
+              [
+                -80.519311, 
+                41.339052
+              ], 
+              [
+                -80.519293, 
+                41.339054
+              ], 
+              [
+                -80.519293, 
+                41.339654
+              ], 
+              [
+                -80.519345, 
+                41.340145
+              ], 
+              [
+                -80.519345, 
+                41.34074
+              ], 
+              [
+                -80.519297, 
+                41.350833
+              ], 
+              [
+                -80.519249, 
+                41.36103
+              ], 
+              [
+                -80.519217, 
+                41.372006
+              ], 
+              [
+                -80.519249, 
+                41.378918
+              ], 
+              [
+                -80.519025, 
+                41.416438
+              ], 
+              [
+                -80.518993, 
+                41.416437
+              ], 
+              [
+                -80.518993, 
+                41.435454
+              ], 
+              [
+                -80.519169, 
+                41.462581
+              ], 
+              [
+                -80.519209, 
+                41.489013
+              ], 
+              [
+                -80.519225, 
+                41.499924
+              ], 
+              [
+                -80.519157, 
+                41.528769
+              ], 
+              [
+                -80.519339, 
+                41.539297
+              ], 
+              [
+                -80.519357, 
+                41.669767
+              ], 
+              [
+                -80.519424, 
+                41.671228
+              ], 
+              [
+                -80.519373, 
+                41.701473
+              ], 
+              [
+                -80.519408, 
+                41.739359
+              ], 
+              [
+                -80.519369, 
+                41.752487
+              ], 
+              [
+                -80.519239, 
+                41.765138
+              ], 
+              [
+                -80.519294, 
+                41.849563
+              ], 
+              [
+                -80.519345, 
+                41.929168
+              ], 
+              [
+                -80.519304, 
+                41.943992
+              ], 
+              [
+                -80.519405, 
+                41.976158
+              ], 
+              [
+                -80.519425, 
+                41.977522
+              ], 
+              [
+                -80.519425, 
+                41.977523
+              ], 
+              [
+                -80.435451, 
+                42.005611
+              ], 
+              [
+                -80.409776, 
+                42.011578
+              ], 
+              [
+                -80.373066, 
+                42.024102
+              ], 
+              [
+                -80.371869, 
+                42.023966
+              ], 
+              [
+                -80.363251, 
+                42.027973
+              ], 
+              [
+                -80.349169, 
+                42.030243
+              ], 
+              [
+                -80.329976, 
+                42.036168
+              ], 
+              [
+                -80.296758, 
+                42.049076
+              ], 
+              [
+                -80.230486, 
+                42.077957
+              ], 
+              [
+                -80.188085, 
+                42.094257
+              ], 
+              [
+                -80.165884, 
+                42.105857
+              ], 
+              [
+                -80.154084, 
+                42.114757
+              ], 
+              [
+                -80.136213, 
+                42.149937
+              ], 
+              [
+                -80.13043, 
+                42.156331
+              ], 
+              [
+                -80.117368, 
+                42.166341
+              ], 
+              [
+                -80.088512, 
+                42.173184
+              ], 
+              [
+                -80.077388, 
+                42.171262
+              ], 
+              [
+                -80.073381, 
+                42.168658
+              ], 
+              [
+                -80.080028, 
+                42.163625
+              ], 
+              [
+                -80.071981, 
+                42.155357
+              ], 
+              [
+                -80.078781, 
+                42.151457
+              ], 
+              [
+                -80.076281, 
+                42.147857
+              ], 
+              [
+                -80.07198, 
+                42.146057
+              ], 
+              [
+                -80.06108, 
+                42.144857
+              ], 
+              [
+                -79.989186, 
+                42.177051
+              ], 
+              [
+                -79.931324, 
+                42.206737
+              ], 
+              [
+                -79.923924, 
+                42.207546
+              ], 
+              [
+                -79.90105, 
+                42.216701
+              ], 
+              [
+                -79.886187, 
+                42.224933
+              ], 
+              [
+                -79.867979, 
+                42.230999
+              ], 
+              [
+                -79.844661, 
+                42.235486
+              ], 
+              [
+                -79.798447, 
+                42.255939
+              ], 
+              [
+                -79.761951, 
+                42.26986
+              ], 
+              [
+                -79.761964, 
+                42.251354
+              ], 
+              [
+                -79.762152, 
+                42.243054
+              ], 
+              [
+                -79.761833, 
+                42.183627
+              ], 
+              [
+                -79.761929, 
+                42.179693
+              ], 
+              [
+                -79.761921, 
+                42.173319
+              ], 
+              [
+                -79.761759, 
+                42.162675
+              ], 
+              [
+                -79.761861, 
+                42.150712
+              ], 
+              [
+                -79.762122, 
+                42.131246
+              ], 
+              [
+                -79.761374, 
+                41.999067
+              ], 
+              [
+                -79.625287, 
+                41.999003
+              ], 
+              [
+                -79.625301, 
+                41.999068
+              ], 
+              [
+                -79.610839, 
+                41.998989
+              ], 
+              [
+                -79.551385, 
+                41.998666
+              ], 
+              [
+                -79.538445, 
+                41.998527
+              ], 
+              [
+                -79.061265, 
+                41.999259
+              ], 
+              [
+                -79.052473, 
+                41.999179
+              ], 
+              [
+                -78.918854, 
+                41.997961
+              ], 
+              [
+                -78.874759, 
+                41.997559
+              ], 
+              [
+                -78.59665, 
+                41.999877
+              ], 
+              [
+                -78.308128, 
+                41.999415
+              ], 
+              [
+                -78.206606, 
+                41.999989
+              ], 
+              [
+                -78.12473, 
+                42.000452
+              ], 
+              [
+                -78.031177, 
+                41.999415
+              ], 
+              [
+                -78.030963, 
+                41.999392
+              ], 
+              [
+                -77.83203, 
+                41.998524
+              ], 
+              [
+                -77.822799, 
+                41.998547
+              ], 
+              [
+                -77.749931, 
+                41.998782
+              ], 
+              [
+                -77.610028, 
+                41.999519
+              ], 
+              [
+                -77.505308, 
+                42.00007
+              ], 
+              [
+                -77.124693, 
+                41.999395
+              ], 
+              [
+                -77.007635, 
+                42.000848
+              ], 
+              [
+                -77.007536, 
+                42.000819
+              ], 
+              [
+                -76.965728, 
+                42.001274
+              ], 
+              [
+                -76.965686, 
+                42.001274
+              ], 
+              [
+                -76.942585, 
+                42.001574
+              ], 
+              [
+                -76.937084, 
+                42.001674
+              ], 
+              [
+                -76.927084, 
+                42.001674
+              ], 
+              [
+                -76.921884, 
+                42.001674
+              ], 
+              [
+                -76.920784, 
+                42.001774
+              ], 
+              [
+                -76.835079, 
+                42.001773
+              ], 
+              [
+                -76.815878, 
+                42.001673
+              ], 
+              [
+                -76.558118, 
+                42.000155
+              ], 
+              [
+                -76.557624, 
+                42.000149
+              ], 
+              [
+                -76.46654, 
+                41.999025
+              ], 
+              [
+                -76.462155, 
+                41.998934
+              ], 
+              [
+                -76.349898, 
+                41.99841
+              ], 
+              [
+                -76.343722, 
+                41.998346
+              ], 
+              [
+                -76.145519, 
+                41.998913
+              ], 
+              [
+                -76.131201, 
+                41.998954
+              ], 
+              [
+                -76.123696, 
+                41.998954
+              ], 
+              [
+                -76.10584, 
+                41.998858
+              ], 
+              [
+                -75.983082, 
+                41.999035
+              ], 
+              [
+                -75.98025, 
+                41.999035
+              ], 
+              [
+                -75.483738, 
+                41.999244
+              ], 
+              [
+                -75.48315, 
+                41.999259
+              ], 
+              [
+                -75.477144, 
+                41.999407
+              ], 
+              [
+                -75.436216, 
+                41.999353
+              ], 
+              [
+                -75.431961, 
+                41.999363
+              ], 
+              [
+                -75.359579, 
+                41.999445
+              ], 
+              [
+                -75.341868, 
+                41.993262
+              ], 
+              [
+                -75.292589, 
+                41.953897
+              ], 
+              [
+                -75.279094, 
+                41.938917
+              ], 
+              [
+                -75.263005, 
+                41.885109
+              ], 
+              [
+                -75.146446, 
+                41.850899
+              ], 
+              [
+                -75.140241, 
+                41.852078
+              ], 
+              [
+                -75.114399, 
+                41.843583
+              ], 
+              [
+                -75.090799, 
+                41.811991
+              ], 
+              [
+                -75.053431, 
+                41.752538
+              ], 
+              [
+                -75.048199, 
+                41.632011
+              ], 
+              [
+                -75.053077, 
+                41.618552
+              ], 
+              [
+                -75.050074, 
+                41.606893
+              ], 
+              [
+                -75.04049, 
+                41.569688
+              ], 
+              [
+                -74.984226, 
+                41.506299
+              ], 
+              [
+                -74.93976, 
+                41.483371
+              ], 
+              [
+                -74.912517, 
+                41.475605
+              ], 
+              [
+                -74.891948, 
+                41.448853
+              ], 
+              [
+                -74.876721, 
+                41.440338
+              ], 
+              [
+                -74.799165, 
+                41.430451
+              ], 
+              [
+                -74.75595, 
+                41.426804
+              ], 
+              [
+                -74.752562, 
+                41.426518
+              ], 
+              [
+                -74.691129, 
+                41.367324
+              ], 
+              [
+                -74.689767, 
+                41.361558
+              ], 
+              [
+                -74.694914, 
+                41.357423
+              ], 
+              [
+                -74.76173, 
+                41.336398
+              ], 
+              [
+                -74.795847, 
+                41.318951
+              ], 
+              [
+                -74.830057, 
+                41.2872
+              ], 
+              [
+                -74.838366, 
+                41.277286
+              ], 
+              [
+                -74.861678, 
+                41.241575
+              ], 
+              [
+                -74.867267, 
+                41.228861
+              ], 
+              [
+                -74.864356, 
+                41.224854
+              ], 
+              [
+                -74.867287, 
+                41.208754
+              ], 
+              [
+                -74.882139, 
+                41.180836
+              ], 
+              [
+                -74.923169, 
+                41.138146
+              ], 
+              [
+                -74.974338, 
+                41.103912
+              ], 
+              [
+                -74.969434, 
+                41.096074
+              ], 
+              [
+                -74.967389, 
+                41.094049
+              ], 
+              [
+                -74.966759, 
+                41.093425
+              ], 
+              [
+                -74.968389, 
+                41.087797
+              ], 
+              [
+                -74.980674, 
+                41.078178
+              ], 
+              [
+                -75.026003, 
+                41.042687
+              ], 
+              [
+                -75.036982, 
+                41.034702
+              ], 
+              [
+                -75.051794, 
+                41.027142
+              ], 
+              [
+                -75.069277, 
+                41.019348
+              ], 
+              [
+                -75.091377, 
+                41.012283
+              ], 
+              [
+                -75.109114, 
+                41.004102
+              ], 
+              [
+                -75.130575, 
+                40.991093
+              ], 
+              [
+                -75.135526, 
+                40.973807
+              ], 
+              [
+                -75.131364, 
+                40.969277
+              ], 
+              [
+                -75.120564, 
+                40.968313
+              ], 
+              [
+                -75.120435, 
+                40.968302
+              ], 
+              [
+                -75.120316, 
+                40.96263
+              ], 
+              [
+                -75.119893, 
+                40.961646
+              ], 
+              [
+                -75.117764, 
+                40.953023
+              ], 
+              [
+                -75.052538, 
+                40.872051
+              ], 
+              [
+                -75.051029, 
+                40.865662
+              ], 
+              [
+                -75.053294, 
+                40.8599
+              ], 
+              [
+                -75.108505, 
+                40.791094
+              ], 
+              [
+                -75.1344, 
+                40.773765
+              ], 
+              [
+                -75.149378, 
+                40.774786
+              ], 
+              [
+                -75.16365, 
+                40.778386
+              ], 
+              [
+                -75.171587, 
+                40.777745
+              ], 
+              [
+                -75.196533, 
+                40.751631
+              ], 
+              [
+                -75.20392, 
+                40.691498
+              ], 
+              [
+                -75.200708, 
+                40.618356
+              ], 
+              [
+                -75.196803, 
+                40.60858
+              ], 
+              [
+                -75.190858, 
+                40.591342
+              ], 
+              [
+                -75.190161, 
+                40.589321
+              ], 
+              [
+                -75.147368, 
+                40.573152
+              ], 
+              [
+                -75.135389, 
+                40.575624
+              ], 
+              [
+                -75.117292, 
+                40.573211
+              ], 
+              [
+                -75.100325, 
+                40.567811
+              ], 
+              [
+                -75.068615, 
+                40.542223
+              ], 
+              [
+                -75.067344, 
+                40.536428
+              ], 
+              [
+                -75.06509, 
+                40.526148
+              ], 
+              [
+                -75.065853, 
+                40.519495
+              ], 
+              [
+                -75.070568, 
+                40.455165
+              ], 
+              [
+                -75.061489, 
+                40.422848
+              ], 
+              [
+                -75.058848, 
+                40.418065
+              ], 
+              [
+                -75.035548, 
+                40.406309
+              ], 
+              [
+                -75.024775, 
+                40.403455
+              ], 
+              [
+                -74.937954, 
+                40.340634
+              ], 
+              [
+                -74.860492, 
+                40.284584
+              ], 
+              [
+                -74.770706, 
+                40.214908
+              ], 
+              [
+                -74.758613, 
+                40.201342
+              ], 
+              [
+                -74.722304, 
+                40.160609
+              ], 
+              [
+                -74.721604, 
+                40.15381
+              ], 
+              [
+                -74.724179, 
+                40.147324
+              ], 
+              [
+                -74.724304, 
+                40.14701
+              ], 
+              [
+                -74.740605, 
+                40.13521
+              ], 
+              [
+                -74.838008, 
+                40.10091
+              ], 
+              [
+                -74.900236, 
+                40.077149
+              ], 
+              [
+                -74.97429, 
+                40.048872
+              ], 
+              [
+                -74.974713, 
+                40.048711
+              ], 
+              [
+                -75.014343, 
+                40.020976
+              ], 
+              [
+                -75.056039, 
+                39.991795
+              ], 
+              [
+                -75.072017, 
+                39.980612
+              ], 
+              [
+                -75.085754, 
+                39.967572
+              ], 
+              [
+                -75.13322, 
+                39.922512
+              ], 
+              [
+                -75.153925, 
+                39.906144
+              ], 
+              [
+                -75.184952, 
+                39.881615
+              ], 
+              [
+                -75.210425, 
+                39.865913
+              ], 
+              [
+                -75.210972, 
+                39.865706
+              ], 
+              [
+                -75.235026, 
+                39.856613
+              ], 
+              [
+                -75.271159, 
+                39.84944
+              ], 
+              [
+                -75.3065, 
+                39.849812
+              ], 
+              [
+                -75.374635, 
+                39.82577
+              ], 
+              [
+                -75.390169, 
+                39.816549
+              ], 
+              [
+                -75.415041, 
+                39.801786
+              ], 
+              [
+                -75.428038, 
+                39.809212
+              ], 
+              [
+                -75.45374, 
+                39.820312
+              ], 
+              [
+                -75.498843, 
+                39.833312
+              ], 
+              [
+                -75.539346, 
+                39.838211
+              ], 
+              [
+                -75.579849, 
+                39.838526
+              ], 
+              [
+                -75.5799, 
+                39.838522
+              ], 
+              [
+                -75.593082, 
+                39.8375
+              ], 
+              [
+                -75.593666, 
+                39.837455
+              ], 
+              [
+                -75.594846, 
+                39.837286
+              ], 
+              [
+                -75.595756, 
+                39.837156
+              ], 
+              [
+                -75.634706, 
+                39.830164
+              ], 
+              [
+                -75.641518, 
+                39.828363
+              ], 
+              [
+                -75.662822, 
+                39.82115
+              ], 
+              [
+                -75.685991, 
+                39.811054
+              ], 
+              [
+                -75.716969, 
+                39.791998
+              ], 
+              [
+                -75.739705, 
+                39.772623
+              ], 
+              [
+                -75.788359, 
+                39.721811
+              ], 
+              [
+                -75.799563, 
+                39.721882
+              ], 
+              [
+                -75.810068, 
+                39.721906
+              ], 
+              [
+                -76.013067, 
+                39.72192
+              ], 
+              [
+                -76.027618, 
+                39.721833
+              ], 
+              [
+                -76.135584, 
+                39.721556
+              ], 
+              [
+                -76.224191, 
+                39.721328
+              ], 
+              [
+                -76.233259, 
+                39.721305
+              ], 
+              [
+                -76.233277, 
+                39.721305
+              ], 
+              [
+                -76.239805, 
+                39.721305
+              ], 
+              [
+                -76.380083, 
+                39.721304
+              ], 
+              [
+                -76.380583, 
+                39.721304
+              ], 
+              [
+                -76.395583, 
+                39.721204
+              ], 
+              [
+                -76.418684, 
+                39.721304
+              ], 
+              [
+                -76.418784, 
+                39.721204
+              ], 
+              [
+                -76.491887, 
+                39.721304
+              ], 
+              [
+                -76.517087, 
+                39.721304
+              ], 
+              [
+                -76.569389, 
+                39.721203
+              ], 
+              [
+                -76.569475, 
+                39.721203
+              ], 
+              [
+                -76.711894, 
+                39.721103
+              ], 
+              [
+                -76.715594, 
+                39.721103
+              ], 
+              [
+                -76.787096, 
+                39.720802
+              ], 
+              [
+                -76.787097, 
+                39.720802
+              ], 
+              [
+                -76.806397, 
+                39.720602
+              ], 
+              [
+                -76.809197, 
+                39.720702
+              ], 
+              [
+                -76.8901, 
+                39.720401
+              ], 
+              [
+                -76.897566, 
+                39.720401
+              ], 
+              [
+                -76.999465, 
+                39.720128
+              ], 
+              [
+                -77.047104, 
+                39.72
+              ], 
+              [
+                -77.058204, 
+                39.7202
+              ], 
+              [
+                -77.058904, 
+                39.7201
+              ], 
+              [
+                -77.216806, 
+                39.719998
+              ], 
+              [
+                -77.217024, 
+                39.719998
+              ], 
+              [
+                -77.239807, 
+                39.719998
+              ], 
+              [
+                -77.243307, 
+                39.719998
+              ], 
+              [
+                -77.459427, 
+                39.720017
+              ], 
+              [
+                -77.469145, 
+                39.720018
+              ], 
+              [
+                -77.533371, 
+                39.720165
+              ], 
+              [
+                -77.534758, 
+                39.720134
+              ], 
+              [
+                -77.672249, 
+                39.720778
+              ], 
+              [
+                -77.674522, 
+                39.720847
+              ], 
+              [
+                -77.724115, 
+                39.720894
+              ], 
+              [
+                -77.732615, 
+                39.721094
+              ], 
+              [
+                -77.743204, 
+                39.721205
+              ], 
+              [
+                -77.768534, 
+                39.721358
+              ], 
+              [
+                -78.073736, 
+                39.722314
+              ], 
+              [
+                -78.075771, 
+                39.722301
+              ], 
+              [
+                -78.09914, 
+                39.722322
+              ], 
+              [
+                -78.202895, 
+                39.722416
+              ], 
+              [
+                -78.20445, 
+                39.72252
+              ], 
+              [
+                -78.240334, 
+                39.722498
+              ], 
+              [
+                -78.243103, 
+                39.722481
+              ], 
+              [
+                -78.268948, 
+                39.72259
+              ], 
+              [
+                -78.26902, 
+                39.722613
+              ], 
+              [
+                -78.330715, 
+                39.722689
+              ], 
+              [
+                -78.337111, 
+                39.722461
+              ], 
+              [
+                -78.339539, 
+                39.722552
+              ], 
+              [
+                -78.340498, 
+                39.722514
+              ], 
+              [
+                -78.34252, 
+                39.722539
+              ], 
+              [
+                -78.342834, 
+                39.722539
+              ], 
+              [
+                -78.380599, 
+                39.722554
+              ], 
+              [
+                -78.808387, 
+                39.722726
+              ], 
+              [
+                -78.931175, 
+                39.722775
+              ], 
+              [
+                -78.931176, 
+                39.722775
+              ], 
+              [
+                -79.392458, 
+                39.72134
+              ], 
+              [
+                -79.476662, 
+                39.721078
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 16, 
+      "properties": {
+        "CENSUSAREA": 44742.703, 
+        "GEO_ID": "0400000US42", 
+        "ISO": "US-PA", 
+        "LSAD": "", 
+        "NAME": "Pennsylvania", 
+        "NAME_1": "Pennsylvania", 
+        "STATE": "PA"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -83.472108, 
+                36.597284
+              ], 
+              [
+                -83.2763, 
+                36.598187
+              ], 
+              [
+                -83.250304, 
+                36.593935
+              ], 
+              [
+                -83.249899, 
+                36.593898
+              ], 
+              [
+                -83.248933, 
+                36.593827
+              ], 
+              [
+                -83.028357, 
+                36.593893
+              ], 
+              [
+                -83.02725, 
+                36.593847
+              ], 
+              [
+                -82.985087, 
+                36.593829
+              ], 
+              [
+                -82.830433, 
+                36.593761
+              ], 
+              [
+                -82.69578, 
+                36.593698
+              ], 
+              [
+                -82.679879, 
+                36.593698
+              ], 
+              [
+                -82.609176, 
+                36.594099
+              ], 
+              [
+                -82.561074, 
+                36.5948
+              ], 
+              [
+                -82.559774, 
+                36.5948
+              ], 
+              [
+                -82.554294, 
+                36.594876
+              ], 
+              [
+                -82.293814, 
+                36.595565
+              ], 
+              [
+                -82.243274, 
+                36.595699
+              ], 
+              [
+                -82.226653, 
+                36.595743
+              ], 
+              [
+                -82.225716, 
+                36.595744
+              ], 
+              [
+                -82.223445, 
+                36.595721
+              ], 
+              [
+                -82.221713, 
+                36.595814
+              ], 
+              [
+                -82.211005, 
+                36.59586
+              ], 
+              [
+                -82.210497, 
+                36.595772
+              ], 
+              [
+                -82.188491, 
+                36.595179
+              ], 
+              [
+                -82.18074, 
+                36.594928
+              ], 
+              [
+                -82.177247, 
+                36.594768
+              ], 
+              [
+                -82.173982, 
+                36.594607
+              ], 
+              [
+                -82.150727, 
+                36.594673
+              ], 
+              [
+                -82.148569, 
+                36.594718
+              ], 
+              [
+                -82.14607, 
+                36.594712
+              ], 
+              [
+                -81.934144, 
+                36.594213
+              ], 
+              [
+                -81.922644, 
+                36.616213
+              ], 
+              [
+                -81.826742, 
+                36.614215
+              ], 
+              [
+                -81.6469, 
+                36.611918
+              ], 
+              [
+                -81.677535, 
+                36.588117
+              ], 
+              [
+                -81.699962, 
+                36.539714
+              ], 
+              [
+                -81.707963, 
+                36.536209
+              ], 
+              [
+                -81.700553, 
+                36.51519
+              ], 
+              [
+                -81.700093, 
+                36.514158
+              ], 
+              [
+                -81.699601, 
+                36.512883
+              ], 
+              [
+                -81.699446, 
+                36.511504
+              ], 
+              [
+                -81.697744, 
+                36.508448
+              ], 
+              [
+                -81.697829, 
+                36.507544
+              ], 
+              [
+                -81.69729, 
+                36.504887
+              ], 
+              [
+                -81.69797, 
+                36.504063
+              ], 
+              [
+                -81.699923, 
+                36.500865
+              ], 
+              [
+                -81.700238, 
+                36.500475
+              ], 
+              [
+                -81.699928, 
+                36.498018
+              ], 
+              [
+                -81.698265, 
+                36.497221
+              ], 
+              [
+                -81.697261, 
+                36.496141
+              ], 
+              [
+                -81.696835, 
+                36.493393
+              ], 
+              [
+                -81.695907, 
+                36.49158
+              ], 
+              [
+                -81.697287, 
+                36.484738
+              ], 
+              [
+                -81.715082, 
+                36.453365
+              ], 
+              [
+                -81.714277, 
+                36.450978
+              ], 
+              [
+                -81.720969, 
+                36.3875
+              ], 
+              [
+                -81.725938, 
+                36.340364
+              ], 
+              [
+                -81.730976, 
+                36.341187
+              ], 
+              [
+                -81.747842, 
+                36.337356
+              ], 
+              [
+                -81.764927, 
+                36.338672
+              ], 
+              [
+                -81.789712, 
+                36.348324
+              ], 
+              [
+                -81.793688, 
+                36.360428
+              ], 
+              [
+                -81.800812, 
+                36.358073
+              ], 
+              [
+                -81.855005, 
+                36.337259
+              ], 
+              [
+                -81.908137, 
+                36.302013
+              ], 
+              [
+                -81.918113, 
+                36.28711
+              ], 
+              [
+                -81.932994, 
+                36.264881
+              ], 
+              [
+                -81.960101, 
+                36.228131
+              ], 
+              [
+                -82.02664, 
+                36.130222
+              ], 
+              [
+                -82.080143, 
+                36.10572
+              ], 
+              [
+                -82.080518, 
+                36.10571
+              ], 
+              [
+                -82.127146, 
+                36.104417
+              ], 
+              [
+                -82.130646, 
+                36.106417
+              ], 
+              [
+                -82.137974, 
+                36.119576
+              ], 
+              [
+                -82.136547, 
+                36.128817
+              ], 
+              [
+                -82.147948, 
+                36.149516
+              ], 
+              [
+                -82.211251, 
+                36.159012
+              ], 
+              [
+                -82.222052, 
+                36.156911
+              ], 
+              [
+                -82.234807, 
+                36.14172
+              ], 
+              [
+                -82.235479, 
+                36.140748
+              ], 
+              [
+                -82.236415, 
+                36.139926
+              ], 
+              [
+                -82.237737, 
+                36.139189
+              ], 
+              [
+                -82.325169, 
+                36.119363
+              ], 
+              [
+                -82.329177, 
+                36.117427
+              ], 
+              [
+                -82.348422, 
+                36.115929
+              ], 
+              [
+                -82.360919, 
+                36.110614
+              ], 
+              [
+                -82.366566, 
+                36.10765
+              ], 
+              [
+                -82.371383, 
+                36.106388
+              ], 
+              [
+                -82.375558, 
+                36.105609
+              ], 
+              [
+                -82.409458, 
+                36.083409
+              ], 
+              [
+                -82.416857, 
+                36.072885
+              ], 
+              [
+                -82.462958, 
+                36.007309
+              ], 
+              [
+                -82.487411, 
+                35.991634
+              ], 
+              [
+                -82.487451, 
+                35.991557
+              ], 
+              [
+                -82.50586, 
+                35.978342
+              ], 
+              [
+                -82.507068, 
+                35.977475
+              ], 
+              [
+                -82.512598, 
+                35.975664
+              ], 
+              [
+                -82.557529, 
+                35.954671
+              ], 
+              [
+                -82.596774, 
+                35.964987
+              ], 
+              [
+                -82.611262, 
+                35.973155
+              ], 
+              [
+                -82.615062, 
+                36.000306
+              ], 
+              [
+                -82.602877, 
+                36.039833
+              ], 
+              [
+                -82.619205, 
+                36.056556
+              ], 
+              [
+                -82.632265, 
+                36.065705
+              ], 
+              [
+                -82.637165, 
+                36.065805
+              ], 
+              [
+                -82.683565, 
+                36.046104
+              ], 
+              [
+                -82.715365, 
+                36.024253
+              ], 
+              [
+                -82.754465, 
+                36.004304
+              ], 
+              [
+                -82.778625, 
+                35.974792
+              ], 
+              [
+                -82.830112, 
+                35.932972
+              ], 
+              [
+                -82.852554, 
+                35.949089
+              ], 
+              [
+                -82.874159, 
+                35.952698
+              ], 
+              [
+                -82.898505, 
+                35.945101
+              ], 
+              [
+                -82.898506, 
+                35.9451
+              ], 
+              [
+                -82.913338, 
+                35.924113
+              ], 
+              [
+                -82.89798, 
+                35.881278
+              ], 
+              [
+                -82.918356, 
+                35.845467
+              ], 
+              [
+                -82.962842, 
+                35.795126
+              ], 
+              [
+                -82.964108, 
+                35.7941
+              ], 
+              [
+                -82.98397, 
+                35.77801
+              ], 
+              [
+                -82.995803, 
+                35.773128
+              ], 
+              [
+                -83.100225, 
+                35.774765
+              ], 
+              [
+                -83.100329, 
+                35.774804
+              ], 
+              [
+                -83.100233, 
+                35.774745
+              ], 
+              [
+                -83.164909, 
+                35.759965
+              ], 
+              [
+                -83.240669, 
+                35.72676
+              ], 
+              [
+                -83.251247, 
+                35.719916
+              ], 
+              [
+                -83.255489, 
+                35.714974
+              ], 
+              [
+                -83.250695, 
+                35.709349
+              ], 
+              [
+                -83.254231, 
+                35.695807
+              ], 
+              [
+                -83.297154, 
+                35.65775
+              ], 
+              [
+                -83.366941, 
+                35.638728
+              ], 
+              [
+                -83.445802, 
+                35.611803
+              ], 
+              [
+                -83.479082, 
+                35.583316
+              ], 
+              [
+                -83.478523, 
+                35.579202
+              ], 
+              [
+                -83.480617, 
+                35.576633
+              ], 
+              [
+                -83.485527, 
+                35.568204
+              ], 
+              [
+                -83.498335, 
+                35.562981
+              ], 
+              [
+                -83.640498, 
+                35.566075
+              ], 
+              [
+                -83.662957, 
+                35.569138
+              ], 
+              [
+                -83.676268, 
+                35.570289
+              ], 
+              [
+                -83.756917, 
+                35.563604
+              ], 
+              [
+                -83.880074, 
+                35.518745
+              ], 
+              [
+                -83.933876, 
+                35.472438
+              ], 
+              [
+                -83.952676, 
+                35.460763
+              ], 
+              [
+                -83.952882, 
+                35.460635
+              ], 
+              [
+                -83.961053, 
+                35.464143
+              ], 
+              [
+                -83.961056, 
+                35.463738
+              ], 
+              [
+                -83.961054, 
+                35.462838
+              ], 
+              [
+                -83.9614, 
+                35.459496
+              ], 
+              [
+                -83.999906, 
+                35.425201
+              ], 
+              [
+                -84.00225, 
+                35.422548
+              ], 
+              [
+                -84.024756, 
+                35.353896
+              ], 
+              [
+                -84.035343, 
+                35.350833
+              ], 
+              [
+                -84.037494, 
+                35.34985
+              ], 
+              [
+                -84.038081, 
+                35.348363
+              ], 
+              [
+                -84.03245, 
+                35.32653
+              ], 
+              [
+                -84.032479, 
+                35.325318
+              ], 
+              [
+                -84.02141, 
+                35.301383
+              ], 
+              [
+                -84.02351, 
+                35.295783
+              ], 
+              [
+                -84.029033, 
+                35.291049
+              ], 
+              [
+                -84.055712, 
+                35.268182
+              ], 
+              [
+                -84.097508, 
+                35.247382
+              ], 
+              [
+                -84.115048, 
+                35.249765
+              ], 
+              [
+                -84.115279, 
+                35.250438
+              ], 
+              [
+                -84.12115, 
+                35.250644
+              ], 
+              [
+                -84.124915, 
+                35.24983
+              ], 
+              [
+                -84.202879, 
+                35.255772
+              ], 
+              [
+                -84.211818, 
+                35.266078
+              ], 
+              [
+                -84.223718, 
+                35.269078
+              ], 
+              [
+                -84.227818, 
+                35.267878
+              ], 
+              [
+                -84.29024, 
+                35.225572
+              ], 
+              [
+                -84.292321, 
+                35.206677
+              ], 
+              [
+                -84.308437, 
+                35.093173
+              ], 
+              [
+                -84.308576, 
+                35.092761
+              ], 
+              [
+                -84.321869, 
+                34.988408
+              ], 
+              [
+                -84.393935, 
+                34.988068
+              ], 
+              [
+                -84.394903, 
+                34.98803
+              ], 
+              [
+                -84.509052, 
+                34.988033
+              ], 
+              [
+                -84.509886, 
+                34.98801
+              ], 
+              [
+                -84.621483, 
+                34.988329
+              ], 
+              [
+                -84.727434, 
+                34.98802
+              ], 
+              [
+                -84.731022, 
+                34.988088
+              ], 
+              [
+                -84.775852, 
+                34.9878
+              ], 
+              [
+                -84.808127, 
+                34.987592
+              ], 
+              [
+                -84.809184, 
+                34.987569
+              ], 
+              [
+                -84.810477, 
+                34.987607
+              ], 
+              [
+                -84.810742, 
+                34.987615
+              ], 
+              [
+                -84.817279, 
+                34.987753
+              ], 
+              [
+                -84.820478, 
+                34.987913
+              ], 
+              [
+                -84.82401, 
+                34.987707
+              ], 
+              [
+                -84.831799, 
+                34.988004
+              ], 
+              [
+                -84.858032, 
+                34.987746
+              ], 
+              [
+                -84.861314, 
+                34.987791
+              ], 
+              [
+                -84.939306, 
+                34.987916
+              ], 
+              [
+                -84.94442, 
+                34.987864
+              ], 
+              [
+                -84.955623, 
+                34.98783
+              ], 
+              [
+                -84.976973, 
+                34.987669
+              ], 
+              [
+                -84.97986, 
+                34.987647
+              ], 
+              [
+                -85.045052, 
+                34.986859
+              ], 
+              [
+                -85.045183, 
+                34.986883
+              ], 
+              [
+                -85.180553, 
+                34.986075
+              ], 
+              [
+                -85.185905, 
+                34.985995
+              ], 
+              [
+                -85.216554, 
+                34.985675
+              ], 
+              [
+                -85.217854, 
+                34.985675
+              ], 
+              [
+                -85.220554, 
+                34.985575
+              ], 
+              [
+                -85.221854, 
+                34.985475
+              ], 
+              [
+                -85.230354, 
+                34.985475
+              ], 
+              [
+                -85.235555, 
+                34.985475
+              ], 
+              [
+                -85.254955, 
+                34.985175
+              ], 
+              [
+                -85.265055, 
+                34.985075
+              ], 
+              [
+                -85.275856, 
+                34.984975
+              ], 
+              [
+                -85.277556, 
+                34.984975
+              ], 
+              [
+                -85.2945, 
+                34.984651
+              ], 
+              [
+                -85.301488, 
+                34.984475
+              ], 
+              [
+                -85.305457, 
+                34.984475
+              ], 
+              [
+                -85.308257, 
+                34.984375
+              ], 
+              [
+                -85.363919, 
+                34.983375
+              ], 
+              [
+                -85.474472, 
+                34.983972
+              ], 
+              [
+                -85.605165, 
+                34.984678
+              ], 
+              [
+                -85.824411, 
+                34.988142
+              ], 
+              [
+                -85.828724, 
+                34.988165
+              ], 
+              [
+                -85.863935, 
+                34.988379
+              ], 
+              [
+                -86.311274, 
+                34.991098
+              ], 
+              [
+                -86.318761, 
+                34.991147
+              ], 
+              [
+                -86.397203, 
+                34.99166
+              ], 
+              [
+                -86.433927, 
+                34.991085
+              ], 
+              [
+                -86.467798, 
+                34.990692
+              ], 
+              [
+                -86.528485, 
+                34.990677
+              ], 
+              [
+                -86.555864, 
+                34.990971
+              ], 
+              [
+                -86.571217, 
+                34.991011
+              ], 
+              [
+                -86.588962, 
+                34.991197
+              ], 
+              [
+                -86.600039, 
+                34.99124
+              ], 
+              [
+                -86.641212, 
+                34.99174
+              ], 
+              [
+                -86.65961, 
+                34.991792
+              ], 
+              [
+                -86.670853, 
+                34.992
+              ], 
+              [
+                -86.67436, 
+                34.992001
+              ], 
+              [
+                -86.676726, 
+                34.99207
+              ], 
+              [
+                -86.677616, 
+                34.99207
+              ], 
+              [
+                -86.783628, 
+                34.991925
+              ], 
+              [
+                -86.783648, 
+                34.991925
+              ], 
+              [
+                -86.820657, 
+                34.991764
+              ], 
+              [
+                -86.836306, 
+                34.991764
+              ], 
+              [
+                -86.83637, 
+                34.991764
+              ], 
+              [
+                -86.846466, 
+                34.99186
+              ], 
+              [
+                -86.849794, 
+                34.991924
+              ], 
+              [
+                -86.862147, 
+                34.991956
+              ], 
+              [
+                -86.96712, 
+                34.9944
+              ], 
+              [
+                -86.970236, 
+                34.994546
+              ], 
+              [
+                -86.972613, 
+                34.99461
+              ], 
+              [
+                -86.974412, 
+                34.994513
+              ], 
+              [
+                -87.000007, 
+                34.995121
+              ], 
+              [
+                -87.011174, 
+                34.995162
+              ], 
+              [
+                -87.210759, 
+                34.999024
+              ], 
+              [
+                -87.216683, 
+                34.999148
+              ], 
+              [
+                -87.224053, 
+                34.999327
+              ], 
+              [
+                -87.230544, 
+                34.999484
+              ], 
+              [
+                -87.270014, 
+                35.00039
+              ], 
+              [
+                -87.299185, 
+                35.000915
+              ], 
+              [
+                -87.349251, 
+                35.001662
+              ], 
+              [
+                -87.359281, 
+                35.001823
+              ], 
+              [
+                -87.381071, 
+                35.002118
+              ], 
+              [
+                -87.391314, 
+                35.002374
+              ], 
+              [
+                -87.4174, 
+                35.002669
+              ], 
+              [
+                -87.421543, 
+                35.002679
+              ], 
+              [
+                -87.428613, 
+                35.002795
+              ], 
+              [
+                -87.606031, 
+                35.003343
+              ], 
+              [
+                -87.664123, 
+                35.003523
+              ], 
+              [
+                -87.671405, 
+                35.003537
+              ], 
+              [
+                -87.696834, 
+                35.003852
+              ], 
+              [
+                -87.700543, 
+                35.003988
+              ], 
+              [
+                -87.702321, 
+                35.003945
+              ], 
+              [
+                -87.709491, 
+                35.004089
+              ], 
+              [
+                -87.75889, 
+                35.004711
+              ], 
+              [
+                -87.767602, 
+                35.004783
+              ], 
+              [
+                -87.773586, 
+                35.004946
+              ], 
+              [
+                -87.851886, 
+                35.005656
+              ], 
+              [
+                -87.853411, 
+                35.005576
+              ], 
+              [
+                -87.853528, 
+                35.005541
+              ], 
+              [
+                -87.872626, 
+                35.005571
+              ], 
+              [
+                -87.877742, 
+                35.005512
+              ], 
+              [
+                -87.877969, 
+                35.005468
+              ], 
+              [
+                -87.984916, 
+                35.006256
+              ], 
+              [
+                -88.18245, 
+                35.007712
+              ], 
+              [
+                -88.200064, 
+                34.995634
+              ], 
+              [
+                -88.253825, 
+                34.995553
+              ], 
+              [
+                -88.258111, 
+                34.995463
+              ], 
+              [
+                -88.363531, 
+                34.99559
+              ], 
+              [
+                -88.380508, 
+                34.99561
+              ], 
+              [
+                -88.469801, 
+                34.996052
+              ], 
+              [
+                -88.469877, 
+                34.996033
+              ], 
+              [
+                -88.786612, 
+                34.995252
+              ], 
+              [
+                -88.823049, 
+                34.995157
+              ], 
+              [
+                -89.017128, 
+                34.994649
+              ], 
+              [
+                -89.138997, 
+                34.99433
+              ], 
+              [
+                -89.139136, 
+                34.994307
+              ], 
+              [
+                -89.198288, 
+                34.994484
+              ], 
+              [
+                -89.352679, 
+                34.99442
+              ], 
+              [
+                -89.493739, 
+                34.994361
+              ], 
+              [
+                -89.511153, 
+                34.994755
+              ], 
+              [
+                -89.644282, 
+                34.995293
+              ], 
+              [
+                -89.724324, 
+                34.994763
+              ], 
+              [
+                -89.795187, 
+                34.994293
+              ], 
+              [
+                -89.848488, 
+                34.994193
+              ], 
+              [
+                -89.883365, 
+                34.994261
+              ], 
+              [
+                -89.893402, 
+                34.994356
+              ], 
+              [
+                -90.309297, 
+                34.995694
+              ], 
+              [
+                -90.309877, 
+                35.00975
+              ], 
+              [
+                -90.295596, 
+                35.040093
+              ], 
+              [
+                -90.193859, 
+                35.061646
+              ], 
+              [
+                -90.174594, 
+                35.116682
+              ], 
+              [
+                -90.160058, 
+                35.12883
+              ], 
+              [
+                -90.142794, 
+                35.135091
+              ], 
+              [
+                -90.109393, 
+                35.118891
+              ], 
+              [
+                -90.100593, 
+                35.116691
+              ], 
+              [
+                -90.09061, 
+                35.118287
+              ], 
+              [
+                -90.08342, 
+                35.12167
+              ], 
+              [
+                -90.065392, 
+                35.137691
+              ], 
+              [
+                -90.064612, 
+                35.140621
+              ], 
+              [
+                -90.073354, 
+                35.211004
+              ], 
+              [
+                -90.074262, 
+                35.218316
+              ], 
+              [
+                -90.07741, 
+                35.225479
+              ], 
+              [
+                -90.097947, 
+                35.249983
+              ], 
+              [
+                -90.105093, 
+                35.254288
+              ], 
+              [
+                -90.116493, 
+                35.255788
+              ], 
+              [
+                -90.140394, 
+                35.252289
+              ], 
+              [
+                -90.152094, 
+                35.255989
+              ], 
+              [
+                -90.158865, 
+                35.262577
+              ], 
+              [
+                -90.166594, 
+                35.274588
+              ], 
+              [
+                -90.168871, 
+                35.281997
+              ], 
+              [
+                -90.163812, 
+                35.296115
+              ], 
+              [
+                -90.158913, 
+                35.300637
+              ], 
+              [
+                -90.153394, 
+                35.302588
+              ], 
+              [
+                -90.114893, 
+                35.303887
+              ], 
+              [
+                -90.086691, 
+                35.369935
+              ], 
+              [
+                -90.089612, 
+                35.379842
+              ], 
+              [
+                -90.093589, 
+                35.393333
+              ], 
+              [
+                -90.13551, 
+                35.376668
+              ], 
+              [
+                -90.143633, 
+                35.374745
+              ], 
+              [
+                -90.166246, 
+                35.374745
+              ], 
+              [
+                -90.178341, 
+                35.382092
+              ], 
+              [
+                -90.179265, 
+                35.385194
+              ], 
+              [
+                -90.169002, 
+                35.421853
+              ], 
+              [
+                -90.152386, 
+                35.436789
+              ], 
+              [
+                -90.107723, 
+                35.476935
+              ], 
+              [
+                -90.07442, 
+                35.472518
+              ], 
+              [
+                -90.072154, 
+                35.470752
+              ], 
+              [
+                -90.067798, 
+                35.466224
+              ], 
+              [
+                -90.059068, 
+                35.457889
+              ], 
+              [
+                -90.04768, 
+                35.459255
+              ], 
+              [
+                -90.034014, 
+                35.468821
+              ], 
+              [
+                -90.034976, 
+                35.480705
+              ], 
+              [
+                -90.039744, 
+                35.548041
+              ], 
+              [
+                -90.032938, 
+                35.55344
+              ], 
+              [
+                -90.02862, 
+                35.555249
+              ], 
+              [
+                -90.017312, 
+                35.555996
+              ], 
+              [
+                -89.957347, 
+                35.528683
+              ], 
+              [
+                -89.933572, 
+                35.533299
+              ], 
+              [
+                -89.909797, 
+                35.537914
+              ], 
+              [
+                -89.884932, 
+                35.655107
+              ], 
+              [
+                -89.89051, 
+                35.652408
+              ], 
+              [
+                -89.906147, 
+                35.651145
+              ], 
+              [
+                -89.922749, 
+                35.655293
+              ], 
+              [
+                -89.937383, 
+                35.665711
+              ], 
+              [
+                -89.955753, 
+                35.690621
+              ], 
+              [
+                -89.958882, 
+                35.723834
+              ], 
+              [
+                -89.956254, 
+                35.733386
+              ], 
+              [
+                -89.950278, 
+                35.738493
+              ], 
+              [
+                -89.909996, 
+                35.759396
+              ], 
+              [
+                -89.905538, 
+                35.759063
+              ], 
+              [
+                -89.889023, 
+                35.750558
+              ], 
+              [
+                -89.865631, 
+                35.746577
+              ], 
+              [
+                -89.821216, 
+                35.756716
+              ], 
+              [
+                -89.703875, 
+                35.820281
+              ], 
+              [
+                -89.701045, 
+                35.828227
+              ], 
+              [
+                -89.702883, 
+                35.834153
+              ], 
+              [
+                -89.709261, 
+                35.838911
+              ], 
+              [
+                -89.729517, 
+                35.847632
+              ], 
+              [
+                -89.749424, 
+                35.852955
+              ], 
+              [
+                -89.769413, 
+                35.861558
+              ], 
+              [
+                -89.772467, 
+                35.865098
+              ], 
+              [
+                -89.773564, 
+                35.871697
+              ], 
+              [
+                -89.771726, 
+                35.879724
+              ], 
+              [
+                -89.765689, 
+                35.891299
+              ], 
+              [
+                -89.756036, 
+                35.896817
+              ], 
+              [
+                -89.73361, 
+                35.904699
+              ], 
+              [
+                -89.714934, 
+                35.906247
+              ], 
+              [
+                -89.688141, 
+                35.896946
+              ], 
+              [
+                -89.687939, 
+                35.905384
+              ], 
+              [
+                -89.686924, 
+                35.947716
+              ], 
+              [
+                -89.71997, 
+                35.97462
+              ], 
+              [
+                -89.733095, 
+                36.000608
+              ], 
+              [
+                -89.706932, 
+                36.000981
+              ], 
+              [
+                -89.690306, 
+                36.024835
+              ], 
+              [
+                -89.687254, 
+                36.034048
+              ], 
+              [
+                -89.684439, 
+                36.051719
+              ], 
+              [
+                -89.624235, 
+                36.108626
+              ], 
+              [
+                -89.601936, 
+                36.11947
+              ], 
+              [
+                -89.594, 
+                36.12719
+              ], 
+              [
+                -89.591605, 
+                36.144096
+              ], 
+              [
+                -89.594397, 
+                36.155457
+              ], 
+              [
+                -89.607004, 
+                36.171179
+              ], 
+              [
+                -89.618228, 
+                36.179966
+              ], 
+              [
+                -89.629452, 
+                36.185382
+              ], 
+              [
+                -89.699817, 
+                36.248384
+              ], 
+              [
+                -89.691308, 
+                36.252079
+              ], 
+              [
+                -89.678046, 
+                36.248284
+              ], 
+              [
+                -89.602374, 
+                36.238106
+              ], 
+              [
+                -89.589561, 
+                36.239116
+              ], 
+              [
+                -89.541621, 
+                36.247891
+              ], 
+              [
+                -89.534745, 
+                36.252576
+              ], 
+              [
+                -89.535529, 
+                36.270541
+              ], 
+              [
+                -89.539487, 
+                36.277368
+              ], 
+              [
+                -89.544797, 
+                36.280458
+              ], 
+              [
+                -89.554289, 
+                36.277751
+              ], 
+              [
+                -89.578492, 
+                36.288317
+              ], 
+              [
+                -89.611819, 
+                36.309088
+              ], 
+              [
+                -89.620255, 
+                36.323006
+              ], 
+              [
+                -89.6198, 
+                36.329546
+              ], 
+              [
+                -89.615841, 
+                36.336085
+              ], 
+              [
+                -89.610689, 
+                36.340442
+              ], 
+              [
+                -89.605668, 
+                36.342234
+              ], 
+              [
+                -89.581636, 
+                36.342357
+              ], 
+              [
+                -89.560439, 
+                36.337746
+              ], 
+              [
+                -89.545006, 
+                36.336809
+              ], 
+              [
+                -89.531822, 
+                36.339246
+              ], 
+              [
+                -89.519, 
+                36.3486
+              ], 
+              [
+                -89.513178, 
+                36.359897
+              ], 
+              [
+                -89.509558, 
+                36.375065
+              ], 
+              [
+                -89.519501, 
+                36.475419
+              ], 
+              [
+                -89.522674, 
+                36.481305
+              ], 
+              [
+                -89.5391, 
+                36.498201
+              ], 
+              [
+                -89.498036, 
+                36.497887
+              ], 
+              [
+                -89.492537, 
+                36.497775
+              ], 
+              [
+                -89.485106, 
+                36.497692
+              ], 
+              [
+                -89.493495, 
+                36.4787
+              ], 
+              [
+                -89.493198, 
+                36.470124
+              ], 
+              [
+                -89.486215, 
+                36.46162
+              ], 
+              [
+                -89.471718, 
+                36.457001
+              ], 
+              [
+                -89.460436, 
+                36.45814
+              ], 
+              [
+                -89.448468, 
+                36.46442
+              ], 
+              [
+                -89.429311, 
+                36.481875
+              ], 
+              [
+                -89.417293, 
+                36.499033
+              ], 
+              [
+                -89.403913, 
+                36.499141
+              ], 
+              [
+                -89.381792, 
+                36.500062
+              ], 
+              [
+                -89.380085, 
+                36.500416
+              ], 
+              [
+                -89.356593, 
+                36.502195
+              ], 
+              [
+                -89.346056, 
+                36.50321
+              ], 
+              [
+                -89.346053, 
+                36.50321
+              ], 
+              [
+                -89.282298, 
+                36.506782
+              ], 
+              [
+                -89.279091, 
+                36.506511
+              ], 
+              [
+                -89.211409, 
+                36.50563
+              ], 
+              [
+                -89.163429, 
+                36.504526
+              ], 
+              [
+                -89.163224, 
+                36.504522
+              ], 
+              [
+                -89.119805, 
+                36.503647
+              ], 
+              [
+                -89.117537, 
+                36.503603
+              ], 
+              [
+                -89.090146, 
+                36.503392
+              ], 
+              [
+                -89.072118, 
+                36.503249
+              ], 
+              [
+                -89.058871, 
+                36.503157
+              ], 
+              [
+                -89.034649, 
+                36.502964
+              ], 
+              [
+                -89.010439, 
+                36.50271
+              ], 
+              [
+                -89.006825, 
+                36.502684
+              ], 
+              [
+                -89.000063, 
+                36.502633
+              ], 
+              [
+                -88.964471, 
+                36.502191
+              ], 
+              [
+                -88.874725, 
+                36.502446
+              ], 
+              [
+                -88.834866, 
+                36.502911
+              ], 
+              [
+                -88.834626, 
+                36.502914
+              ], 
+              [
+                -88.827301, 
+                36.502852
+              ], 
+              [
+                -88.827012, 
+                36.50285
+              ], 
+              [
+                -88.816765, 
+                36.502815
+              ], 
+              [
+                -88.799594, 
+                36.502757
+              ], 
+              [
+                -88.747523, 
+                36.502834
+              ], 
+              [
+                -88.715255, 
+                36.502662
+              ], 
+              [
+                -88.661133, 
+                36.502243
+              ], 
+              [
+                -88.577283, 
+                36.50194
+              ], 
+              [
+                -88.545192, 
+                36.501814
+              ], 
+              [
+                -88.516427, 
+                36.50143
+              ], 
+              [
+                -88.516346, 
+                36.501431
+              ], 
+              [
+                -88.51227, 
+                36.501506
+              ], 
+              [
+                -88.51192, 
+                36.501457
+              ], 
+              [
+                -88.48921, 
+                36.501068
+              ], 
+              [
+                -88.489075, 
+                36.501068
+              ], 
+              [
+                -88.472564, 
+                36.501028
+              ], 
+              [
+                -88.452543, 
+                36.500872
+              ], 
+              [
+                -88.450161, 
+                36.501101
+              ], 
+              [
+                -88.41636, 
+                36.500756
+              ], 
+              [
+                -88.330799, 
+                36.500531
+              ], 
+              [
+                -88.325895, 
+                36.500483
+              ], 
+              [
+                -88.320794, 
+                36.500432
+              ], 
+              [
+                -88.053292, 
+                36.49713
+              ], 
+              [
+                -88.053205, 
+                36.497129
+              ], 
+              [
+                -88.039481, 
+                36.510408
+              ], 
+              [
+                -88.037822, 
+                36.51385
+              ], 
+              [
+                -88.032489, 
+                36.540662
+              ], 
+              [
+                -88.035625, 
+                36.561736
+              ], 
+              [
+                -88.045127, 
+                36.602939
+              ], 
+              [
+                -88.055604, 
+                36.63571
+              ], 
+              [
+                -88.068208, 
+                36.659747
+              ], 
+              [
+                -88.070532, 
+                36.678118
+              ], 
+              [
+                -88.011792, 
+                36.677025
+              ], 
+              [
+                -87.849567, 
+                36.663701
+              ], 
+              [
+                -87.853204, 
+                36.633247
+              ], 
+              [
+                -87.694186, 
+                36.636838
+              ], 
+              [
+                -87.64115, 
+                36.638036
+              ], 
+              [
+                -87.641146, 
+                36.638036
+              ], 
+              [
+                -87.564928, 
+                36.639113
+              ], 
+              [
+                -87.563052, 
+                36.639113
+              ], 
+              [
+                -87.436509, 
+                36.640747
+              ], 
+              [
+                -87.425009, 
+                36.641047
+              ], 
+              [
+                -87.414309, 
+                36.641047
+              ], 
+              [
+                -87.347796, 
+                36.64144
+              ], 
+              [
+                -87.344131, 
+                36.64151
+              ], 
+              [
+                -87.33598, 
+                36.641543
+              ], 
+              [
+                -87.281506, 
+                36.641761
+              ], 
+              [
+                -87.278398, 
+                36.641718
+              ], 
+              [
+                -87.247655, 
+                36.641841
+              ], 
+              [
+                -87.231037, 
+                36.641888
+              ], 
+              [
+                -87.23053, 
+                36.641895
+              ], 
+              [
+                -87.114983, 
+                36.642414
+              ], 
+              [
+                -87.114976, 
+                36.642414
+              ], 
+              [
+                -87.060843, 
+                36.643412
+              ], 
+              [
+                -86.906583, 
+                36.646255
+              ], 
+              [
+                -86.906023, 
+                36.646302
+              ], 
+              [
+                -86.854268, 
+                36.646884
+              ], 
+              [
+                -86.833155, 
+                36.64721
+              ], 
+              [
+                -86.818405, 
+                36.647639
+              ], 
+              [
+                -86.816186, 
+                36.647722
+              ], 
+              [
+                -86.813037, 
+                36.647647
+              ], 
+              [
+                -86.763295, 
+                36.648907
+              ], 
+              [
+                -86.75892, 
+                36.649018
+              ], 
+              [
+                -86.606394, 
+                36.652107
+              ], 
+              [
+                -86.605042, 
+                36.652125
+              ], 
+              [
+                -86.564252, 
+                36.633522
+              ], 
+              [
+                -86.564143, 
+                36.633472
+              ], 
+              [
+                -86.473497, 
+                36.651671
+              ], 
+              [
+                -86.473413, 
+                36.651676
+              ], 
+              [
+                -86.47219, 
+                36.651763
+              ], 
+              [
+                -86.468497, 
+                36.651841
+              ], 
+              [
+                -86.411387, 
+                36.65055
+              ], 
+              [
+                -86.333051, 
+                36.648778
+              ], 
+              [
+                -86.222151, 
+                36.640891
+              ], 
+              [
+                -86.219081, 
+                36.640824
+              ], 
+              [
+                -86.21641, 
+                36.640595
+              ], 
+              [
+                -86.216183, 
+                36.640527
+              ], 
+              [
+                -86.205468, 
+                36.639783
+              ], 
+              [
+                -86.204859, 
+                36.639741
+              ], 
+              [
+                -86.197573, 
+                36.639363
+              ], 
+              [
+                -86.081944, 
+                36.633848
+              ], 
+              [
+                -86.080666, 
+                36.63394
+              ], 
+              [
+                -86.038366, 
+                36.630804
+              ], 
+              [
+                -86.033139, 
+                36.630413
+              ], 
+              [
+                -86.03277, 
+                36.630367
+              ], 
+              [
+                -85.976421, 
+                36.6284
+              ], 
+              [
+                -85.788645, 
+                36.621846
+              ], 
+              [
+                -85.788613, 
+                36.621845
+              ], 
+              [
+                -85.552017, 
+                36.615782
+              ], 
+              [
+                -85.551483, 
+                36.615727
+              ], 
+              [
+                -85.508605, 
+                36.61502
+              ], 
+              [
+                -85.471338, 
+                36.61638
+              ], 
+              [
+                -85.436418, 
+                36.618194
+              ], 
+              [
+                -85.29599, 
+                36.625488
+              ], 
+              [
+                -85.276289, 
+                36.626511
+              ], 
+              [
+                -85.276284, 
+                36.626511
+              ], 
+              [
+                -85.096128, 
+                36.622483
+              ], 
+              [
+                -85.086415, 
+                36.621913
+              ], 
+              [
+                -84.974888, 
+                36.614327
+              ], 
+              [
+                -84.859738, 
+                36.606495
+              ], 
+              [
+                -84.859759, 
+                36.606428
+              ], 
+              [
+                -84.785399, 
+                36.603374
+              ], 
+              [
+                -84.785341, 
+                36.603372
+              ], 
+              [
+                -84.778455, 
+                36.603222
+              ], 
+              [
+                -84.261333, 
+                36.591981
+              ], 
+              [
+                -84.227295, 
+                36.591685
+              ], 
+              [
+                -83.987842, 
+                36.5896
+              ], 
+              [
+                -83.987612, 
+                36.589595
+              ], 
+              [
+                -83.930669, 
+                36.588249
+              ], 
+              [
+                -83.690714, 
+                36.582581
+              ], 
+              [
+                -83.677114, 
+                36.596582
+              ], 
+              [
+                -83.675413, 
+                36.600814
+              ], 
+              [
+                -83.670141, 
+                36.600797
+              ], 
+              [
+                -83.670128, 
+                36.600764
+              ], 
+              [
+                -83.472108, 
+                36.597284
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 17, 
+      "properties": {
+        "CENSUSAREA": 41234.896, 
+        "GEO_ID": "0400000US47", 
+        "ISO": "US-TN", 
+        "LSAD": "", 
+        "NAME": "Tennessee", 
+        "NAME_1": "Tennessee", 
+        "STATE": "TN"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -75.242266, 
+                38.027209
+              ], 
+              [
+                -75.296871, 
+                37.959043
+              ], 
+              [
+                -75.319335, 
+                37.922484
+              ], 
+              [
+                -75.334296, 
+                37.893477
+              ], 
+              [
+                -75.349338, 
+                37.873143
+              ], 
+              [
+                -75.359036, 
+                37.864143
+              ], 
+              [
+                -75.36683, 
+                37.859446
+              ], 
+              [
+                -75.374642, 
+                37.859454
+              ], 
+              [
+                -75.392008, 
+                37.867738
+              ], 
+              [
+                -75.40054, 
+                37.874865
+              ], 
+              [
+                -75.428956, 
+                37.875305
+              ], 
+              [
+                -75.437868, 
+                37.872324
+              ], 
+              [
+                -75.452681, 
+                37.86351
+              ], 
+              [
+                -75.467951, 
+                37.851328
+              ], 
+              [
+                -75.487485, 
+                37.832136
+              ], 
+              [
+                -75.514921, 
+                37.799149
+              ], 
+              [
+                -75.548082, 
+                37.742383
+              ], 
+              [
+                -75.556868, 
+                37.72441
+              ], 
+              [
+                -75.572464, 
+                37.701565
+              ], 
+              [
+                -75.581333, 
+                37.683593
+              ], 
+              [
+                -75.586136, 
+                37.660653
+              ], 
+              [
+                -75.60322, 
+                37.620243
+              ], 
+              [
+                -75.610808, 
+                37.605909
+              ], 
+              [
+                -75.612237, 
+                37.585602
+              ], 
+              [
+                -75.608123, 
+                37.578018
+              ], 
+              [
+                -75.595716, 
+                37.576657
+              ], 
+              [
+                -75.594044, 
+                37.569698
+              ], 
+              [
+                -75.60672, 
+                37.55717
+              ], 
+              [
+                -75.63337, 
+                37.52214
+              ], 
+              [
+                -75.666178, 
+                37.472124
+              ], 
+              [
+                -75.6655, 
+                37.467319
+              ], 
+              [
+                -75.664311, 
+                37.458901
+              ], 
+              [
+                -75.66179, 
+                37.455028
+              ], 
+              [
+                -75.665957, 
+                37.439209
+              ], 
+              [
+                -75.672648, 
+                37.429915
+              ], 
+              [
+                -75.697914, 
+                37.405301
+              ], 
+              [
+                -75.720739, 
+                37.373129
+              ], 
+              [
+                -75.727335, 
+                37.360346
+              ], 
+              [
+                -75.725634, 
+                37.358416
+              ], 
+              [
+                -75.726691, 
+                37.350127
+              ], 
+              [
+                -75.735829, 
+                37.335426
+              ], 
+              [
+                -75.765401, 
+                37.305596
+              ], 
+              [
+                -75.778817, 
+                37.297176
+              ], 
+              [
+                -75.780766, 
+                37.297222
+              ], 
+              [
+                -75.784634, 
+                37.300976
+              ], 
+              [
+                -75.791913, 
+                37.300589
+              ], 
+              [
+                -75.798448, 
+                37.296285
+              ], 
+              [
+                -75.79083, 
+                37.276207
+              ], 
+              [
+                -75.799343, 
+                37.251779
+              ], 
+              [
+                -75.795881, 
+                37.236922
+              ], 
+              [
+                -75.790386, 
+                37.231225
+              ], 
+              [
+                -75.789929, 
+                37.228134
+              ], 
+              [
+                -75.790903, 
+                37.225066
+              ], 
+              [
+                -75.804446, 
+                37.208011
+              ], 
+              [
+                -75.800468, 
+                37.201029
+              ], 
+              [
+                -75.800755, 
+                37.197297
+              ], 
+              [
+                -75.830341, 
+                37.1706
+              ], 
+              [
+                -75.87767, 
+                37.135604
+              ], 
+              [
+                -75.886369, 
+                37.126085
+              ], 
+              [
+                -75.897298, 
+                37.118037
+              ], 
+              [
+                -75.906734, 
+                37.114193
+              ], 
+              [
+                -75.912308, 
+                37.115154
+              ], 
+              [
+                -75.913222, 
+                37.119849
+              ], 
+              [
+                -75.92552, 
+                37.133601
+              ], 
+              [
+                -75.942539, 
+                37.125142
+              ], 
+              [
+                -75.945872, 
+                37.120514
+              ], 
+              [
+                -75.962596, 
+                37.117535
+              ], 
+              [
+                -75.97043, 
+                37.118608
+              ], 
+              [
+                -75.970004, 
+                37.128861
+              ], 
+              [
+                -75.978083, 
+                37.157338
+              ], 
+              [
+                -75.998647, 
+                37.188739
+              ], 
+              [
+                -76.006094, 
+                37.19481
+              ], 
+              [
+                -76.013071, 
+                37.205366
+              ], 
+              [
+                -76.013778, 
+                37.219263
+              ], 
+              [
+                -76.010535, 
+                37.231579
+              ], 
+              [
+                -76.014026, 
+                37.235381
+              ], 
+              [
+                -76.025753, 
+                37.257407
+              ], 
+              [
+                -76.023664, 
+                37.268971
+              ], 
+              [
+                -76.015507, 
+                37.280874
+              ], 
+              [
+                -76.023475, 
+                37.289067
+              ], 
+              [
+                -76.018645, 
+                37.31782
+              ], 
+              [
+                -76.014251, 
+                37.331943
+              ], 
+              [
+                -75.997778, 
+                37.351739
+              ], 
+              [
+                -75.987122, 
+                37.368548
+              ], 
+              [
+                -75.97997, 
+                37.404608
+              ], 
+              [
+                -75.983105, 
+                37.415802
+              ], 
+              [
+                -75.981624, 
+                37.434116
+              ], 
+              [
+                -75.976491, 
+                37.444878
+              ], 
+              [
+                -75.960877, 
+                37.467562
+              ], 
+              [
+                -75.963496, 
+                37.475352
+              ], 
+              [
+                -75.963326, 
+                37.481785
+              ], 
+              [
+                -75.958966, 
+                37.500133
+              ], 
+              [
+                -75.949974, 
+                37.521876
+              ], 
+              [
+                -75.940318, 
+                37.534582
+              ], 
+              [
+                -75.937665, 
+                37.549652
+              ], 
+              [
+                -75.937299, 
+                37.551729
+              ], 
+              [
+                -75.941153, 
+                37.558436
+              ], 
+              [
+                -75.941182, 
+                37.563839
+              ], 
+              [
+                -75.924756, 
+                37.600215
+              ], 
+              [
+                -75.909586, 
+                37.622671
+              ], 
+              [
+                -75.877059, 
+                37.660641
+              ], 
+              [
+                -75.868481, 
+                37.668224
+              ], 
+              [
+                -75.869523, 
+                37.674356
+              ], 
+              [
+                -75.868355, 
+                37.687609
+              ], 
+              [
+                -75.859262, 
+                37.703111
+              ], 
+              [
+                -75.845579, 
+                37.707993
+              ], 
+              [
+                -75.837685, 
+                37.712985
+              ], 
+              [
+                -75.830773, 
+                37.725486
+              ], 
+              [
+                -75.831438, 
+                37.73169
+              ], 
+              [
+                -75.827922, 
+                37.737986
+              ], 
+              [
+                -75.82481, 
+                37.741671
+              ], 
+              [
+                -75.812155, 
+                37.749502
+              ], 
+              [
+                -75.803041, 
+                37.762464
+              ], 
+              [
+                -75.812125, 
+                37.776589
+              ], 
+              [
+                -75.818125, 
+                37.791698
+              ], 
+              [
+                -75.793399, 
+                37.804493
+              ], 
+              [
+                -75.784599, 
+                37.806826
+              ], 
+              [
+                -75.770607, 
+                37.804602
+              ], 
+              [
+                -75.743097, 
+                37.806656
+              ], 
+              [
+                -75.73588, 
+                37.816561
+              ], 
+              [
+                -75.723224, 
+                37.820124
+              ], 
+              [
+                -75.71659, 
+                37.826696
+              ], 
+              [
+                -75.714487, 
+                37.837777
+              ], 
+              [
+                -75.709114, 
+                37.8477
+              ], 
+              [
+                -75.702914, 
+                37.849659
+              ], 
+              [
+                -75.689837, 
+                37.861817
+              ], 
+              [
+                -75.685293, 
+                37.873341
+              ], 
+              [
+                -75.687584, 
+                37.88634
+              ], 
+              [
+                -75.709626, 
+                37.900622
+              ], 
+              [
+                -75.72049, 
+                37.901926
+              ], 
+              [
+                -75.724505, 
+                37.900184
+              ], 
+              [
+                -75.726699, 
+                37.897299
+              ], 
+              [
+                -75.753048, 
+                37.896605
+              ], 
+              [
+                -75.758796, 
+                37.897615
+              ], 
+              [
+                -75.759835, 
+                37.899333
+              ], 
+              [
+                -75.757694, 
+                37.903912
+              ], 
+              [
+                -75.712065, 
+                37.936082
+              ], 
+              [
+                -75.704318, 
+                37.92901
+              ], 
+              [
+                -75.693942, 
+                37.930362
+              ], 
+              [
+                -75.669711, 
+                37.950796
+              ], 
+              [
+                -75.660956, 
+                37.959174
+              ], 
+              [
+                -75.646507, 
+                37.973
+              ], 
+              [
+                -75.646289, 
+                37.973209
+              ], 
+              [
+                -75.645251, 
+                37.974202
+              ], 
+              [
+                -75.645096, 
+                37.97435
+              ], 
+              [
+                -75.644665, 
+                37.974763
+              ], 
+              [
+                -75.644591, 
+                37.974833
+              ], 
+              [
+                -75.644545, 
+                37.974877
+              ], 
+              [
+                -75.639786, 
+                37.979432
+              ], 
+              [
+                -75.635502, 
+                37.983531
+              ], 
+              [
+                -75.630222, 
+                37.988584
+              ], 
+              [
+                -75.626129, 
+                37.9925
+              ], 
+              [
+                -75.624341, 
+                37.994211
+              ], 
+              [
+                -75.435956, 
+                38.010282
+              ], 
+              [
+                -75.42881, 
+                38.010854
+              ], 
+              [
+                -75.398839, 
+                38.013277
+              ], 
+              [
+                -75.377851, 
+                38.015145
+              ], 
+              [
+                -75.263779, 
+                38.025295
+              ], 
+              [
+                -75.262088, 
+                38.025445
+              ], 
+              [
+                -75.260635, 
+                38.025574
+              ], 
+              [
+                -75.256076, 
+                38.02598
+              ], 
+              [
+                -75.250358, 
+                38.026489
+              ], 
+              [
+                -75.242296, 
+                38.027206
+              ], 
+              [
+                -75.242266, 
+                38.027209
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -75.973607, 
+                37.835817
+              ], 
+              [
+                -75.971705, 
+                37.830928
+              ], 
+              [
+                -75.977301, 
+                37.825821
+              ], 
+              [
+                -75.982158, 
+                37.806226
+              ], 
+              [
+                -75.987301, 
+                37.804917
+              ], 
+              [
+                -75.9983, 
+                37.812626
+              ], 
+              [
+                -76.001116, 
+                37.834947
+              ], 
+              [
+                -75.999658, 
+                37.848198
+              ], 
+              [
+                -75.996859, 
+                37.85042
+              ], 
+              [
+                -75.992556, 
+                37.848889
+              ], 
+              [
+                -75.988018, 
+                37.841085
+              ], 
+              [
+                -75.982098, 
+                37.837253
+              ], 
+              [
+                -75.973607, 
+                37.835817
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -75.994739, 
+                37.953501
+              ], 
+              [
+                -75.993905, 
+                37.953489
+              ], 
+              [
+                -76.00313, 
+                37.947997
+              ], 
+              [
+                -76.017592, 
+                37.935161
+              ], 
+              [
+                -76.032491, 
+                37.915008
+              ], 
+              [
+                -76.035802, 
+                37.929008
+              ], 
+              [
+                -76.04653, 
+                37.953586
+              ], 
+              [
+                -76.045561, 
+                37.953669
+              ], 
+              [
+                -76.041691, 
+                37.954
+              ], 
+              [
+                -76.041402, 
+                37.954006
+              ], 
+              [
+                -76.038026, 
+                37.953901
+              ], 
+              [
+                -76.030122, 
+                37.953655
+              ], 
+              [
+                -76.029463, 
+                37.953775
+              ], 
+              [
+                -76.029405, 
+                37.953776
+              ], 
+              [
+                -76.022325, 
+                37.953878
+              ], 
+              [
+                -76.021714, 
+                37.953887
+              ], 
+              [
+                -76.020932, 
+                37.953879
+              ], 
+              [
+                -76.020796, 
+                37.953877
+              ], 
+              [
+                -76.017686, 
+                37.953832
+              ], 
+              [
+                -76.005888, 
+                37.953662
+              ], 
+              [
+                -75.994739, 
+                37.953501
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -78.869276, 
+                38.762991
+              ], 
+              [
+                -78.835191, 
+                38.811499
+              ], 
+              [
+                -78.808181, 
+                38.856175
+              ], 
+              [
+                -78.788031, 
+                38.885123
+              ], 
+              [
+                -78.779198, 
+                38.892298
+              ], 
+              [
+                -78.757278, 
+                38.903203
+              ], 
+              [
+                -78.719806, 
+                38.922638
+              ], 
+              [
+                -78.719755, 
+                38.922135
+              ], 
+              [
+                -78.716956, 
+                38.916273
+              ], 
+              [
+                -78.714135, 
+                38.911176
+              ], 
+              [
+                -78.710949, 
+                38.910175
+              ], 
+              [
+                -78.601655, 
+                38.964603
+              ], 
+              [
+                -78.557647, 
+                39.013189
+              ], 
+              [
+                -78.554222, 
+                39.019672
+              ], 
+              [
+                -78.565837, 
+                39.026303
+              ], 
+              [
+                -78.571901, 
+                39.031995
+              ], 
+              [
+                -78.544111, 
+                39.056676
+              ], 
+              [
+                -78.508132, 
+                39.08863
+              ], 
+              [
+                -78.459869, 
+                39.113351
+              ], 
+              [
+                -78.439429, 
+                39.132146
+              ], 
+              [
+                -78.418377, 
+                39.156656
+              ], 
+              [
+                -78.41074, 
+                39.171983
+              ], 
+              [
+                -78.426722, 
+                39.188903
+              ], 
+              [
+                -78.438651, 
+                39.198049
+              ], 
+              [
+                -78.437053, 
+                39.199766
+              ], 
+              [
+                -78.43213, 
+                39.204717
+              ], 
+              [
+                -78.431167, 
+                39.205744
+              ], 
+              [
+                -78.429803, 
+                39.207014
+              ], 
+              [
+                -78.427911, 
+                39.208611
+              ], 
+              [
+                -78.423968, 
+                39.212049
+              ], 
+              [
+                -78.399669, 
+                39.243874
+              ], 
+              [
+                -78.399785, 
+                39.244129
+              ], 
+              [
+                -78.360035, 
+                39.317771
+              ], 
+              [
+                -78.35894, 
+                39.319484
+              ], 
+              [
+                -78.34048, 
+                39.353492
+              ], 
+              [
+                -78.362267, 
+                39.357784
+              ], 
+              [
+                -78.347087, 
+                39.466012
+              ], 
+              [
+                -78.228766, 
+                39.391233
+              ], 
+              [
+                -78.033185, 
+                39.264626
+              ], 
+              [
+                -78.033183, 
+                39.264624
+              ], 
+              [
+                -78.032841, 
+                39.264403
+              ], 
+              [
+                -77.828157, 
+                39.132329
+              ], 
+              [
+                -77.822182, 
+                39.139985
+              ], 
+              [
+                -77.771415, 
+                39.236776
+              ], 
+              [
+                -77.767277, 
+                39.24938
+              ], 
+              [
+                -77.768992, 
+                39.256417
+              ], 
+              [
+                -77.768, 
+                39.257657
+              ], 
+              [
+                -77.761768, 
+                39.263031
+              ], 
+              [
+                -77.761217, 
+                39.263721
+              ], 
+              [
+                -77.758733, 
+                39.268114
+              ], 
+              [
+                -77.758412, 
+                39.269197
+              ], 
+              [
+                -77.755698, 
+                39.274575
+              ], 
+              [
+                -77.755193, 
+                39.275191
+              ], 
+              [
+                -77.753105, 
+                39.27734
+              ], 
+              [
+                -77.75306, 
+                39.277971
+              ], 
+              [
+                -77.753357, 
+                39.280331
+              ], 
+              [
+                -77.750267, 
+                39.289284
+              ], 
+              [
+                -77.719029, 
+                39.321125
+              ], 
+              [
+                -77.677505, 
+                39.318699
+              ], 
+              [
+                -77.667749, 
+                39.318129
+              ], 
+              [
+                -77.592739, 
+                39.30129
+              ], 
+              [
+                -77.560854, 
+                39.286152
+              ], 
+              [
+                -77.545846, 
+                39.271535
+              ], 
+              [
+                -77.543228, 
+                39.266937
+              ], 
+              [
+                -77.534461, 
+                39.262361
+              ], 
+              [
+                -77.511222, 
+                39.2535
+              ], 
+              [
+                -77.484605, 
+                39.245941
+              ], 
+              [
+                -77.46021, 
+                39.228359
+              ], 
+              [
+                -77.45768, 
+                39.22502
+              ], 
+              [
+                -77.458779, 
+                39.22028
+              ], 
+              [
+                -77.458884, 
+                39.219826
+              ], 
+              [
+                -77.478596, 
+                39.189168
+              ], 
+              [
+                -77.485971, 
+                39.185665
+              ], 
+              [
+                -77.505162, 
+                39.18205
+              ], 
+              [
+                -77.510631, 
+                39.178484
+              ], 
+              [
+                -77.516426, 
+                39.170891
+              ], 
+              [
+                -77.527282, 
+                39.146236
+              ], 
+              [
+                -77.524559, 
+                39.127821
+              ], 
+              [
+                -77.519929, 
+                39.120925
+              ], 
+              [
+                -77.458202, 
+                39.073723
+              ], 
+              [
+                -77.42318, 
+                39.066878
+              ], 
+              [
+                -77.375079, 
+                39.061297
+              ], 
+              [
+                -77.340287, 
+                39.062991
+              ], 
+              [
+                -77.328002, 
+                39.058554
+              ], 
+              [
+                -77.291605, 
+                39.045408
+              ], 
+              [
+                -77.261403, 
+                39.031009
+              ], 
+              [
+                -77.251803, 
+                39.011409
+              ], 
+              [
+                -77.255703, 
+                39.002409
+              ], 
+              [
+                -77.249803, 
+                38.985909
+              ], 
+              [
+                -77.235403, 
+                38.97661
+              ], 
+              [
+                -77.221502, 
+                38.97131
+              ], 
+              [
+                -77.197502, 
+                38.96681
+              ], 
+              [
+                -77.166901, 
+                38.96811
+              ], 
+              [
+                -77.148179, 
+                38.965002
+              ], 
+              [
+                -77.137701, 
+                38.95531
+              ], 
+              [
+                -77.1199, 
+                38.934311
+              ], 
+              [
+                -77.119863, 
+                38.934265
+              ], 
+              [
+                -77.1012, 
+                38.911111
+              ], 
+              [
+                -77.0902, 
+                38.904211
+              ], 
+              [
+                -77.068199, 
+                38.899811
+              ], 
+              [
+                -77.040599, 
+                38.871212
+              ], 
+              [
+                -77.031698, 
+                38.850512
+              ], 
+              [
+                -77.032986, 
+                38.8395
+              ], 
+              [
+                -77.038598, 
+                38.791513
+              ], 
+              [
+                -77.039239, 
+                38.7852
+              ], 
+              [
+                -77.041398, 
+                38.763914
+              ], 
+              [
+                -77.05991, 
+                38.734419
+              ], 
+              [
+                -77.074599, 
+                38.711015
+              ], 
+              [
+                -77.086113, 
+                38.705792
+              ], 
+              [
+                -77.1059, 
+                38.696815
+              ], 
+              [
+                -77.121101, 
+                38.686616
+              ], 
+              [
+                -77.132501, 
+                38.673816
+              ], 
+              [
+                -77.135901, 
+                38.649817
+              ], 
+              [
+                -77.1302, 
+                38.635017
+              ], 
+              [
+                -77.157501, 
+                38.636417
+              ], 
+              [
+                -77.174902, 
+                38.624217
+              ], 
+              [
+                -77.202002, 
+                38.617217
+              ], 
+              [
+                -77.204302, 
+                38.617817
+              ], 
+              [
+                -77.205103, 
+                38.623917
+              ], 
+              [
+                -77.216303, 
+                38.637817
+              ], 
+              [
+                -77.22235, 
+                38.638091
+              ], 
+              [
+                -77.240604, 
+                38.638917
+              ], 
+              [
+                -77.246704, 
+                38.635217
+              ], 
+              [
+                -77.248904, 
+                38.628617
+              ], 
+              [
+                -77.245104, 
+                38.620717
+              ], 
+              [
+                -77.246441, 
+                38.599532
+              ], 
+              [
+                -77.247003, 
+                38.590618
+              ], 
+              [
+                -77.26443, 
+                38.582845
+              ], 
+              [
+                -77.265304, 
+                38.580319
+              ], 
+              [
+                -77.26083, 
+                38.56533
+              ], 
+              [
+                -77.276603, 
+                38.54712
+              ], 
+              [
+                -77.276303, 
+                38.53962
+              ], 
+              [
+                -77.283503, 
+                38.525221
+              ], 
+              [
+                -77.291103, 
+                38.515721
+              ], 
+              [
+                -77.29582, 
+                38.511457
+              ], 
+              [
+                -77.298844, 
+                38.508724
+              ], 
+              [
+                -77.300776, 
+                38.506978
+              ], 
+              [
+                -77.302457, 
+                38.504683
+              ], 
+              [
+                -77.310334, 
+                38.493926
+              ], 
+              [
+                -77.322622, 
+                38.467131
+              ], 
+              [
+                -77.32544, 
+                38.44885
+              ], 
+              [
+                -77.319036, 
+                38.417803
+              ], 
+              [
+                -77.310719, 
+                38.397669
+              ], 
+              [
+                -77.312201, 
+                38.390958
+              ], 
+              [
+                -77.314848, 
+                38.389579
+              ], 
+              [
+                -77.317288, 
+                38.383576
+              ], 
+              [
+                -77.296077, 
+                38.369797
+              ], 
+              [
+                -77.288145, 
+                38.359477
+              ], 
+              [
+                -77.28835, 
+                38.351286
+              ], 
+              [
+                -77.286202, 
+                38.347025
+              ], 
+              [
+                -77.286202, 
+                38.347024
+              ], 
+              [
+                -77.279633, 
+                38.339444
+              ], 
+              [
+                -77.265295, 
+                38.333165
+              ], 
+              [
+                -77.240072, 
+                38.331598
+              ], 
+              [
+                -77.199433, 
+                38.34089
+              ], 
+              [
+                -77.17934, 
+                38.341915
+              ], 
+              [
+                -77.162692, 
+                38.345994
+              ], 
+              [
+                -77.155191, 
+                38.351047
+              ], 
+              [
+                -77.138224, 
+                38.367917
+              ], 
+              [
+                -77.104717, 
+                38.369655
+              ], 
+              [
+                -77.094665, 
+                38.367715
+              ], 
+              [
+                -77.08481, 
+                38.368297
+              ], 
+              [
+                -77.069956, 
+                38.377895
+              ], 
+              [
+                -77.056032, 
+                38.3962
+              ], 
+              [
+                -77.051437, 
+                38.399083
+              ], 
+              [
+                -77.043526, 
+                38.400548
+              ], 
+              [
+                -77.024866, 
+                38.386791
+              ], 
+              [
+                -77.011827, 
+                38.374554
+              ], 
+              [
+                -77.016932, 
+                38.341697
+              ], 
+              [
+                -77.020947, 
+                38.329273
+              ], 
+              [
+                -77.030683, 
+                38.311623
+              ], 
+              [
+                -77.026304, 
+                38.302685
+              ], 
+              [
+                -76.99767, 
+                38.278047
+              ], 
+              [
+                -76.990255, 
+                38.273935
+              ], 
+              [
+                -76.981372, 
+                38.274214
+              ], 
+              [
+                -76.96215, 
+                38.256486
+              ], 
+              [
+                -76.957796, 
+                38.243183
+              ], 
+              [
+                -76.957417, 
+                38.236341
+              ], 
+              [
+                -76.962375, 
+                38.230093
+              ], 
+              [
+                -76.966553, 
+                38.229542
+              ], 
+              [
+                -76.967335, 
+                38.227185
+              ], 
+              [
+                -76.962311, 
+                38.214075
+              ], 
+              [
+                -76.937134, 
+                38.202384
+              ], 
+              [
+                -76.916922, 
+                38.199751
+              ], 
+              [
+                -76.910832, 
+                38.197073
+              ], 
+              [
+                -76.875272, 
+                38.172207
+              ], 
+              [
+                -76.838795, 
+                38.163476
+              ], 
+              [
+                -76.824274, 
+                38.163639
+              ], 
+              [
+                -76.802968, 
+                38.167988
+              ], 
+              [
+                -76.788445, 
+                38.169199
+              ], 
+              [
+                -76.760241, 
+                38.166581
+              ], 
+              [
+                -76.749685, 
+                38.162114
+              ], 
+              [
+                -76.743064, 
+                38.156988
+              ], 
+              [
+                -76.740278, 
+                38.152824
+              ], 
+              [
+                -76.738938, 
+                38.14651
+              ], 
+              [
+                -76.721722, 
+                38.137635
+              ], 
+              [
+                -76.704048, 
+                38.149264
+              ], 
+              [
+                -76.701297, 
+                38.155718
+              ], 
+              [
+                -76.684892, 
+                38.156497
+              ], 
+              [
+                -76.665127, 
+                38.147638
+              ], 
+              [
+                -76.643448, 
+                38.14825
+              ], 
+              [
+                -76.638983, 
+                38.151476
+              ], 
+              [
+                -76.629476, 
+                38.15305
+              ], 
+              [
+                -76.613939, 
+                38.148587
+              ], 
+              [
+                -76.604131, 
+                38.128771
+              ], 
+              [
+                -76.600937, 
+                38.110084
+              ], 
+              [
+                -76.579497, 
+                38.09487
+              ], 
+              [
+                -76.543155, 
+                38.076971
+              ], 
+              [
+                -76.535919, 
+                38.069532
+              ], 
+              [
+                -76.522354, 
+                38.04259
+              ], 
+              [
+                -76.519536, 
+                38.034814
+              ], 
+              [
+                -76.516547, 
+                38.026566
+              ], 
+              [
+                -76.491998, 
+                38.017222
+              ], 
+              [
+                -76.469343, 
+                38.013544
+              ], 
+              [
+                -76.465291, 
+                38.010226
+              ], 
+              [
+                -76.462542, 
+                37.998572
+              ], 
+              [
+                -76.427487, 
+                37.977038
+              ], 
+              [
+                -76.416299, 
+                37.966828
+              ], 
+              [
+                -76.391439, 
+                37.958742
+              ], 
+              [
+                -76.360211, 
+                37.952329
+              ], 
+              [
+                -76.343848, 
+                37.947345
+              ], 
+              [
+                -76.265998, 
+                37.91138
+              ], 
+              [
+                -76.236725, 
+                37.889174
+              ], 
+              [
+                -76.245072, 
+                37.861918
+              ], 
+              [
+                -76.251358, 
+                37.833072
+              ], 
+              [
+                -76.266057, 
+                37.8174
+              ], 
+              [
+                -76.275178, 
+                37.812664
+              ], 
+              [
+                -76.280544, 
+                37.812597
+              ], 
+              [
+                -76.282592, 
+                37.814109
+              ], 
+              [
+                -76.281985, 
+                37.818068
+              ], 
+              [
+                -76.284904, 
+                37.822308
+              ], 
+              [
+                -76.293525, 
+                37.822717
+              ], 
+              [
+                -76.307482, 
+                37.81235
+              ], 
+              [
+                -76.310307, 
+                37.794849
+              ], 
+              [
+                -76.306489, 
+                37.788646
+              ], 
+              [
+                -76.312108, 
+                37.750522
+              ], 
+              [
+                -76.304917, 
+                37.729913
+              ], 
+              [
+                -76.312858, 
+                37.720338
+              ], 
+              [
+                -76.302803, 
+                37.704474
+              ], 
+              [
+                -76.300067, 
+                37.695364
+              ], 
+              [
+                -76.302545, 
+                37.689
+              ], 
+              [
+                -76.312079, 
+                37.684651
+              ], 
+              [
+                -76.315161, 
+                37.68472
+              ], 
+              [
+                -76.320216, 
+                37.680666
+              ], 
+              [
+                -76.324808, 
+                37.676983
+              ], 
+              [
+                -76.339892, 
+                37.655966
+              ], 
+              [
+                -76.332562, 
+                37.645817
+              ], 
+              [
+                -76.306464, 
+                37.642005
+              ], 
+              [
+                -76.292534, 
+                37.636098
+              ], 
+              [
+                -76.287959, 
+                37.631771
+              ], 
+              [
+                -76.279447, 
+                37.618225
+              ], 
+              [
+                -76.28037, 
+                37.613715
+              ], 
+              [
+                -76.309174, 
+                37.621892
+              ], 
+              [
+                -76.36232, 
+                37.610368
+              ], 
+              [
+                -76.381106, 
+                37.627003
+              ], 
+              [
+                -76.390054, 
+                37.630326
+              ], 
+              [
+                -76.399236, 
+                37.628636
+              ], 
+              [
+                -76.443254, 
+                37.652347
+              ], 
+              [
+                -76.472392, 
+                37.665772
+              ], 
+              [
+                -76.489576, 
+                37.666201
+              ], 
+              [
+                -76.491799, 
+                37.663614
+              ], 
+              [
+                -76.497564, 
+                37.647056
+              ], 
+              [
+                -76.501522, 
+                37.643762
+              ], 
+              [
+                -76.510187, 
+                37.642324
+              ], 
+              [
+                -76.536548, 
+                37.663574
+              ], 
+              [
+                -76.537698, 
+                37.66893
+              ], 
+              [
+                -76.535302, 
+                37.687516
+              ], 
+              [
+                -76.537228, 
+                37.698892
+              ], 
+              [
+                -76.54005, 
+                37.704432
+              ], 
+              [
+                -76.560476, 
+                37.727827
+              ], 
+              [
+                -76.576387, 
+                37.757493
+              ], 
+              [
+                -76.584289, 
+                37.76889
+              ], 
+              [
+                -76.593835, 
+                37.772848
+              ], 
+              [
+                -76.595939, 
+                37.77168
+              ], 
+              [
+                -76.602024, 
+                37.772731
+              ], 
+              [
+                -76.615351, 
+                37.780759
+              ], 
+              [
+                -76.642276, 
+                37.792317
+              ], 
+              [
+                -76.651413, 
+                37.796239
+              ], 
+              [
+                -76.658302, 
+                37.806815
+              ], 
+              [
+                -76.680197, 
+                37.825654
+              ], 
+              [
+                -76.692747, 
+                37.82277
+              ], 
+              [
+                -76.701606, 
+                37.822677
+              ], 
+              [
+                -76.722156, 
+                37.83668
+              ], 
+              [
+                -76.72718, 
+                37.842263
+              ], 
+              [
+                -76.733046, 
+                37.852009
+              ], 
+              [
+                -76.738395, 
+                37.865373
+              ], 
+              [
+                -76.747552, 
+                37.875864
+              ], 
+              [
+                -76.765711, 
+                37.879274
+              ], 
+              [
+                -76.77539, 
+                37.874306
+              ], 
+              [
+                -76.784618, 
+                37.869569
+              ], 
+              [
+                -76.782826, 
+                37.863184
+              ], 
+              [
+                -76.766328, 
+                37.840437
+              ], 
+              [
+                -76.7512, 
+                37.824141
+              ], 
+              [
+                -76.734309, 
+                37.79866
+              ], 
+              [
+                -76.723863, 
+                37.788503
+              ], 
+              [
+                -76.715498, 
+                37.785873
+              ], 
+              [
+                -76.689773, 
+                37.78519
+              ], 
+              [
+                -76.683775, 
+                37.781391
+              ], 
+              [
+                -76.681901, 
+                37.778118
+              ], 
+              [
+                -76.683343, 
+                37.775783
+              ], 
+              [
+                -76.683359, 
+                37.770258
+              ], 
+              [
+                -76.683372, 
+                37.765507
+              ], 
+              [
+                -76.680922, 
+                37.759647
+              ], 
+              [
+                -76.677002, 
+                37.7561
+              ], 
+              [
+                -76.663887, 
+                37.751887
+              ], 
+              [
+                -76.639962, 
+                37.750941
+              ], 
+              [
+                -76.61971, 
+                37.744795
+              ], 
+              [
+                -76.617373, 
+                37.742347
+              ], 
+              [
+                -76.621433, 
+                37.737973
+              ], 
+              [
+                -76.61997, 
+                37.731271
+              ], 
+              [
+                -76.606466, 
+                37.724819
+              ], 
+              [
+                -76.597213, 
+                37.717269
+              ], 
+              [
+                -76.595943, 
+                37.712989
+              ], 
+              [
+                -76.598073, 
+                37.70912
+              ], 
+              [
+                -76.597868, 
+                37.702918
+              ], 
+              [
+                -76.579591, 
+                37.671508
+              ], 
+              [
+                -76.583143, 
+                37.661986
+              ], 
+              [
+                -76.574049, 
+                37.646781
+              ], 
+              [
+                -76.542666, 
+                37.616857
+              ], 
+              [
+                -76.533777, 
+                37.61253
+              ], 
+              [
+                -76.527188, 
+                37.611315
+              ], 
+              [
+                -76.435474, 
+                37.612807
+              ], 
+              [
+                -76.420252, 
+                37.598686
+              ], 
+              [
+                -76.410781, 
+                37.581815
+              ], 
+              [
+                -76.383188, 
+                37.573056
+              ], 
+              [
+                -76.357835, 
+                37.573699
+              ], 
+              [
+                -76.332641, 
+                37.570042
+              ], 
+              [
+                -76.300144, 
+                37.561734
+              ], 
+              [
+                -76.29796, 
+                37.557636
+              ], 
+              [
+                -76.302762, 
+                37.551295
+              ], 
+              [
+                -76.330598, 
+                37.536391
+              ], 
+              [
+                -76.339989, 
+                37.53833
+              ], 
+              [
+                -76.348992, 
+                37.536548
+              ], 
+              [
+                -76.355084, 
+                37.527364
+              ], 
+              [
+                -76.360474, 
+                37.51924
+              ], 
+              [
+                -76.359378, 
+                37.513426
+              ], 
+              [
+                -76.352678, 
+                37.504913
+              ], 
+              [
+                -76.32947, 
+                37.49492
+              ], 
+              [
+                -76.306952, 
+                37.497488
+              ], 
+              [
+                -76.297739, 
+                37.506863
+              ], 
+              [
+                -76.296445, 
+                37.511235
+              ], 
+              [
+                -76.298456, 
+                37.512677
+              ], 
+              [
+                -76.297651, 
+                37.515424
+              ], 
+              [
+                -76.293599, 
+                37.516499
+              ], 
+              [
+                -76.288167, 
+                37.514118
+              ], 
+              [
+                -76.281043, 
+                37.507821
+              ], 
+              [
+                -76.265056, 
+                37.481365
+              ], 
+              [
+                -76.252415, 
+                37.447274
+              ], 
+              [
+                -76.250454, 
+                37.421886
+              ], 
+              [
+                -76.246617, 
+                37.404122
+              ], 
+              [
+                -76.245283, 
+                37.386839
+              ], 
+              [
+                -76.24846, 
+                37.375135
+              ], 
+              [
+                -76.258277, 
+                37.36202
+              ], 
+              [
+                -76.262407, 
+                37.360786
+              ], 
+              [
+                -76.264847, 
+                37.357399
+              ], 
+              [
+                -76.272888, 
+                37.335174
+              ], 
+              [
+                -76.272005, 
+                37.322194
+              ], 
+              [
+                -76.275552, 
+                37.309964
+              ], 
+              [
+                -76.282555, 
+                37.319107
+              ], 
+              [
+                -76.291324, 
+                37.324145
+              ], 
+              [
+                -76.308581, 
+                37.329366
+              ], 
+              [
+                -76.31205, 
+                37.338088
+              ], 
+              [
+                -76.337476, 
+                37.364014
+              ], 
+              [
+                -76.366751, 
+                37.374495
+              ], 
+              [
+                -76.387112, 
+                37.385061
+              ], 
+              [
+                -76.391437, 
+                37.390284
+              ], 
+              [
+                -76.393958, 
+                37.39594
+              ], 
+              [
+                -76.393125, 
+                37.398068
+              ], 
+              [
+                -76.404756, 
+                37.400213
+              ], 
+              [
+                -76.415167, 
+                37.402133
+              ], 
+              [
+                -76.418719, 
+                37.3978
+              ], 
+              [
+                -76.418176, 
+                37.385064
+              ], 
+              [
+                -76.422503, 
+                37.381355
+              ], 
+              [
+                -76.437525, 
+                37.37975
+              ], 
+              [
+                -76.445333, 
+                37.36646
+              ], 
+              [
+                -76.434965, 
+                37.354524
+              ], 
+              [
+                -76.406388, 
+                37.332924
+              ], 
+              [
+                -76.38777, 
+                37.30767
+              ], 
+              [
+                -76.385603, 
+                37.294108
+              ], 
+              [
+                -76.381075, 
+                37.28534
+              ], 
+              [
+                -76.369029, 
+                37.279311
+              ], 
+              [
+                -76.352556, 
+                37.278334
+              ], 
+              [
+                -76.349489, 
+                37.273963
+              ], 
+              [
+                -76.36229, 
+                37.270226
+              ], 
+              [
+                -76.392788, 
+                37.264973
+              ], 
+              [
+                -76.417173, 
+                37.26395
+              ], 
+              [
+                -76.421765, 
+                37.255198
+              ], 
+              [
+                -76.429141, 
+                37.25331
+              ], 
+              [
+                -76.475927, 
+                37.250543
+              ], 
+              [
+                -76.48284, 
+                37.254831
+              ], 
+              [
+                -76.493302, 
+                37.24947
+              ], 
+              [
+                -76.4989, 
+                37.241015
+              ], 
+              [
+                -76.50364, 
+                37.233856
+              ], 
+              [
+                -76.494008, 
+                37.225408
+              ], 
+              [
+                -76.471799, 
+                37.216016
+              ], 
+              [
+                -76.394132, 
+                37.22515
+              ], 
+              [
+                -76.389793, 
+                37.222981
+              ], 
+              [
+                -76.3936, 
+                37.214049
+              ], 
+              [
+                -76.396052, 
+                37.201087
+              ], 
+              [
+                -76.389284, 
+                37.193503
+              ], 
+              [
+                -76.391252, 
+                37.179887
+              ], 
+              [
+                -76.397883, 
+                37.164415
+              ], 
+              [
+                -76.399659, 
+                37.160272
+              ], 
+              [
+                -76.394756, 
+                37.157568
+              ], 
+              [
+                -76.381379, 
+                37.155711
+              ], 
+              [
+                -76.375255, 
+                37.16084
+              ], 
+              [
+                -76.35969, 
+                37.16858
+              ], 
+              [
+                -76.348658, 
+                37.170655
+              ], 
+              [
+                -76.343234, 
+                37.166207
+              ], 
+              [
+                -76.344898, 
+                37.164479
+              ], 
+              [
+                -76.34405, 
+                37.160367
+              ], 
+              [
+                -76.340129, 
+                37.151823
+              ], 
+              [
+                -76.334017, 
+                37.144223
+              ], 
+              [
+                -76.330481, 
+                37.141727
+              ], 
+              [
+                -76.324353, 
+                37.142895
+              ], 
+              [
+                -76.311088, 
+                37.138495
+              ], 
+              [
+                -76.292344, 
+                37.126615
+              ], 
+              [
+                -76.287236, 
+                37.117453
+              ], 
+              [
+                -76.274463, 
+                37.094544
+              ], 
+              [
+                -76.271262, 
+                37.084544
+              ], 
+              [
+                -76.292863, 
+                37.035145
+              ], 
+              [
+                -76.300352, 
+                37.00885
+              ], 
+              [
+                -76.304272, 
+                37.001378
+              ], 
+              [
+                -76.312048, 
+                37.000371
+              ], 
+              [
+                -76.315008, 
+                37.001683
+              ], 
+              [
+                -76.314624, 
+                37.00933
+              ], 
+              [
+                -76.318065, 
+                37.013846
+              ], 
+              [
+                -76.329531, 
+                37.014556
+              ], 
+              [
+                -76.34011, 
+                37.015212
+              ], 
+              [
+                -76.340666, 
+                37.015246
+              ], 
+              [
+                -76.348066, 
+                37.006747
+              ], 
+              [
+                -76.356366, 
+                37.002947
+              ], 
+              [
+                -76.373567, 
+                36.998347
+              ], 
+              [
+                -76.383367, 
+                36.993347
+              ], 
+              [
+                -76.387711, 
+                36.989671
+              ], 
+              [
+                -76.396368, 
+                36.982347
+              ], 
+              [
+                -76.408568, 
+                36.969147
+              ], 
+              [
+                -76.411768, 
+                36.962847
+              ], 
+              [
+                -76.418969, 
+                36.964047
+              ], 
+              [
+                -76.428869, 
+                36.969947
+              ], 
+              [
+                -76.452118, 
+                36.998163
+              ], 
+              [
+                -76.452461, 
+                37.004603
+              ], 
+              [
+                -76.449891, 
+                37.004868
+              ], 
+              [
+                -76.448231, 
+                37.007705
+              ], 
+              [
+                -76.464471, 
+                37.027547
+              ], 
+              [
+                -76.46949, 
+                37.030414
+              ], 
+              [
+                -76.507614, 
+                37.052188
+              ], 
+              [
+                -76.509339, 
+                37.053173
+              ], 
+              [
+                -76.512289, 
+                37.054858
+              ], 
+              [
+                -76.518242, 
+                37.055351
+              ], 
+              [
+                -76.526273, 
+                37.062947
+              ], 
+              [
+                -76.527973, 
+                37.068247
+              ], 
+              [
+                -76.526573, 
+                37.070047
+              ], 
+              [
+                -76.526203, 
+                37.077773
+              ], 
+              [
+                -76.528997, 
+                37.079388
+              ], 
+              [
+                -76.536875, 
+                37.083942
+              ], 
+              [
+                -76.555066, 
+                37.075859
+              ], 
+              [
+                -76.564219, 
+                37.077507
+              ], 
+              [
+                -76.567931, 
+                37.080467
+              ], 
+              [
+                -76.579499, 
+                37.096627
+              ], 
+              [
+                -76.618252, 
+                37.119347
+              ], 
+              [
+                -76.62478, 
+                37.127091
+              ], 
+              [
+                -76.622252, 
+                37.142146
+              ], 
+              [
+                -76.617084, 
+                37.144498
+              ], 
+              [
+                -76.604476, 
+                37.160034
+              ], 
+              [
+                -76.606684, 
+                37.166674
+              ], 
+              [
+                -76.610972, 
+                37.166994
+              ], 
+              [
+                -76.611018, 
+                37.167097
+              ], 
+              [
+                -76.612517, 
+                37.170486
+              ], 
+              [
+                -76.613599, 
+                37.172931
+              ], 
+              [
+                -76.614221, 
+                37.174335
+              ], 
+              [
+                -76.616268, 
+                37.178962
+              ], 
+              [
+                -76.616804, 
+                37.18126
+              ], 
+              [
+                -76.617537, 
+                37.184409
+              ], 
+              [
+                -76.618008, 
+                37.186429
+              ], 
+              [
+                -76.61934, 
+                37.192146
+              ], 
+              [
+                -76.619962, 
+                37.193184
+              ], 
+              [
+                -76.621113, 
+                37.195103
+              ], 
+              [
+                -76.623292, 
+                37.198738
+              ], 
+              [
+                -76.629868, 
+                37.206738
+              ], 
+              [
+                -76.639608, 
+                37.214783
+              ], 
+              [
+                -76.641085, 
+                37.216002
+              ], 
+              [
+                -76.649869, 
+                37.220914
+              ], 
+              [
+                -76.689166, 
+                37.222866
+              ], 
+              [
+                -76.693373, 
+                37.221228
+              ], 
+              [
+                -76.698943, 
+                37.219059
+              ], 
+              [
+                -76.730951, 
+                37.213813
+              ], 
+              [
+                -76.73432, 
+                37.204211
+              ], 
+              [
+                -76.74, 
+                37.195379
+              ], 
+              [
+                -76.74304, 
+                37.192611
+              ], 
+              [
+                -76.75047, 
+                37.190098
+              ], 
+              [
+                -76.757765, 
+                37.191658
+              ], 
+              [
+                -76.773752, 
+                37.206061
+              ], 
+              [
+                -76.780532, 
+                37.209336
+              ], 
+              [
+                -76.791555, 
+                37.207564
+              ], 
+              [
+                -76.801023, 
+                37.206043
+              ], 
+              [
+                -76.803198, 
+                37.201513
+              ], 
+              [
+                -76.802511, 
+                37.198308
+              ], 
+              [
+                -76.796905, 
+                37.189404
+              ], 
+              [
+                -76.756899, 
+                37.161582
+              ], 
+              [
+                -76.747632, 
+                37.150548
+              ], 
+              [
+                -76.73728, 
+                37.146164
+              ], 
+              [
+                -76.73032, 
+                37.145395
+              ], 
+              [
+                -76.715295, 
+                37.148035
+              ], 
+              [
+                -76.696735, 
+                37.174403
+              ], 
+              [
+                -76.692926, 
+                37.186147
+              ], 
+              [
+                -76.691918, 
+                37.195731
+              ], 
+              [
+                -76.685614, 
+                37.198851
+              ], 
+              [
+                -76.669886, 
+                37.183571
+              ], 
+              [
+                -76.663774, 
+                37.173875
+              ], 
+              [
+                -76.66427, 
+                37.171027
+              ], 
+              [
+                -76.66867, 
+                37.166771
+              ], 
+              [
+                -76.67147, 
+                37.158739
+              ], 
+              [
+                -76.671588, 
+                37.14206
+              ], 
+              [
+                -76.669604, 
+                37.140534
+              ], 
+              [
+                -76.666542, 
+                37.138179
+              ], 
+              [
+                -76.665833, 
+                37.136098
+              ], 
+              [
+                -76.665641, 
+                37.135534
+              ], 
+              [
+                -76.66375, 
+                37.129979
+              ], 
+              [
+                -76.656894, 
+                37.109843
+              ], 
+              [
+                -76.657101, 
+                37.107617
+              ], 
+              [
+                -76.657703, 
+                37.101161
+              ], 
+              [
+                -76.65811, 
+                37.096787
+              ], 
+              [
+                -76.659394, 
+                37.094019
+              ], 
+              [
+                -76.66555, 
+                37.080746
+              ], 
+              [
+                -76.666526, 
+                37.078643
+              ], 
+              [
+                -76.667219, 
+                37.077149
+              ], 
+              [
+                -76.667646, 
+                37.076228
+              ], 
+              [
+                -76.668295, 
+                37.072656
+              ], 
+              [
+                -76.669118, 
+                37.068132
+              ], 
+              [
+                -76.669822, 
+                37.06426
+              ], 
+              [
+                -76.66835, 
+                37.05506
+              ], 
+              [
+                -76.662558, 
+                37.045748
+              ], 
+              [
+                -76.653998, 
+                37.039172
+              ], 
+              [
+                -76.646013, 
+                37.036228
+              ], 
+              [
+                -76.612124, 
+                37.035604
+              ], 
+              [
+                -76.586491, 
+                37.02874
+              ], 
+              [
+                -76.584478, 
+                37.027349
+              ], 
+              [
+                -76.579393, 
+                37.023835
+              ], 
+              [
+                -76.579236, 
+                37.023726
+              ], 
+              [
+                -76.57816, 
+                37.022982
+              ], 
+              [
+                -76.577531, 
+                37.022548
+              ], 
+              [
+                -76.576617, 
+                37.021374
+              ], 
+              [
+                -76.565803, 
+                37.007493
+              ], 
+              [
+                -76.562923, 
+                37.003796
+              ], 
+              [
+                -76.551246, 
+                36.998946
+              ], 
+              [
+                -76.524853, 
+                36.983833
+              ], 
+              [
+                -76.522971, 
+                36.981085
+              ], 
+              [
+                -76.524142, 
+                36.978316
+              ], 
+              [
+                -76.521006, 
+                36.973187
+              ], 
+              [
+                -76.513363, 
+                36.968057
+              ], 
+              [
+                -76.500355, 
+                36.965212
+              ], 
+              [
+                -76.487559, 
+                36.952372
+              ], 
+              [
+                -76.484107, 
+                36.928916
+              ], 
+              [
+                -76.482407, 
+                36.917364
+              ], 
+              [
+                -76.482135, 
+                36.901108
+              ], 
+              [
+                -76.483369, 
+                36.896239
+              ], 
+              [
+                -76.469914, 
+                36.882898
+              ], 
+              [
+                -76.454692, 
+                36.884077
+              ], 
+              [
+                -76.45329, 
+                36.887031
+              ], 
+              [
+                -76.453941, 
+                36.89274
+              ], 
+              [
+                -76.447413, 
+                36.90322
+              ], 
+              [
+                -76.441605, 
+                36.906116
+              ], 
+              [
+                -76.43122, 
+                36.904532
+              ], 
+              [
+                -76.407507, 
+                36.897444
+              ], 
+              [
+                -76.406908, 
+                36.897507
+              ], 
+              [
+                -76.387567, 
+                36.899547
+              ], 
+              [
+                -76.385867, 
+                36.923247
+              ], 
+              [
+                -76.353765, 
+                36.922747
+              ], 
+              [
+                -76.345569, 
+                36.924531
+              ], 
+              [
+                -76.344663, 
+                36.919313
+              ], 
+              [
+                -76.333158, 
+                36.917293
+              ], 
+              [
+                -76.328864, 
+                36.918447
+              ], 
+              [
+                -76.330765, 
+                36.938647
+              ], 
+              [
+                -76.327365, 
+                36.959447
+              ], 
+              [
+                -76.322764, 
+                36.959147
+              ], 
+              [
+                -76.315867, 
+                36.955351
+              ], 
+              [
+                -76.299364, 
+                36.965547
+              ], 
+              [
+                -76.297663, 
+                36.968147
+              ], 
+              [
+                -76.285063, 
+                36.968747
+              ], 
+              [
+                -76.267962, 
+                36.964547
+              ], 
+              [
+                -76.234961, 
+                36.945147
+              ], 
+              [
+                -76.22166, 
+                36.939547
+              ], 
+              [
+                -76.189959, 
+                36.931447
+              ], 
+              [
+                -76.177019, 
+                36.92929
+              ], 
+              [
+                -76.139557, 
+                36.923047
+              ], 
+              [
+                -76.095508, 
+                36.908817
+              ], 
+              [
+                -76.087955, 
+                36.908647
+              ], 
+              [
+                -76.058154, 
+                36.916947
+              ], 
+              [
+                -76.043054, 
+                36.927547
+              ], 
+              [
+                -76.033454, 
+                36.931946
+              ], 
+              [
+                -76.013753, 
+                36.930746
+              ], 
+              [
+                -76.007553, 
+                36.929047
+              ], 
+              [
+                -75.996252, 
+                36.922047
+              ], 
+              [
+                -75.991552, 
+                36.910847
+              ], 
+              [
+                -75.972151, 
+                36.842268
+              ], 
+              [
+                -75.965451, 
+                36.812449
+              ], 
+              [
+                -75.94955, 
+                36.76115
+              ], 
+              [
+                -75.921748, 
+                36.692051
+              ], 
+              [
+                -75.890946, 
+                36.630753
+              ], 
+              [
+                -75.874145, 
+                36.583853
+              ], 
+              [
+                -75.867044, 
+                36.550754
+              ], 
+              [
+                -75.879744, 
+                36.550754
+              ], 
+              [
+                -75.880644, 
+                36.550754
+              ], 
+              [
+                -75.885945, 
+                36.550754
+              ], 
+              [
+                -75.886545, 
+                36.550754
+              ], 
+              [
+                -75.891945, 
+                36.550754
+              ], 
+              [
+                -75.893245, 
+                36.550654
+              ], 
+              [
+                -75.894145, 
+                36.550754
+              ], 
+              [
+                -75.903445, 
+                36.550654
+              ], 
+              [
+                -75.904745, 
+                36.550654
+              ], 
+              [
+                -75.909046, 
+                36.550654
+              ], 
+              [
+                -75.911446, 
+                36.550654
+              ], 
+              [
+                -75.922046, 
+                36.550654
+              ], 
+              [
+                -75.952847, 
+                36.550553
+              ], 
+              [
+                -75.953447, 
+                36.550553
+              ], 
+              [
+                -75.955748, 
+                36.550553
+              ], 
+              [
+                -75.957648, 
+                36.550553
+              ], 
+              [
+                -76.02675, 
+                36.550553
+              ], 
+              [
+                -76.034751, 
+                36.550653
+              ], 
+              [
+                -76.12236, 
+                36.550621
+              ], 
+              [
+                -76.313196, 
+                36.550551
+              ], 
+              [
+                -76.313215, 
+                36.550551
+              ], 
+              [
+                -76.491497, 
+                36.550365
+              ], 
+              [
+                -76.541391, 
+                36.550312
+              ], 
+              [
+                -76.541687, 
+                36.550312
+              ], 
+              [
+                -76.781296, 
+                36.550659
+              ], 
+              [
+                -76.807078, 
+                36.550606
+              ], 
+              [
+                -76.915384, 
+                36.543856
+              ], 
+              [
+                -76.916001, 
+                36.543818
+              ], 
+              [
+                -76.916048, 
+                36.543815
+              ], 
+              [
+                -77.1645, 
+                36.54633
+              ], 
+              [
+                -77.24969, 
+                36.544745
+              ], 
+              [
+                -77.296875, 
+                36.544746
+              ], 
+              [
+                -77.767117, 
+                36.544752
+              ], 
+              [
+                -77.87528, 
+                36.544754
+              ], 
+              [
+                -77.882357, 
+                36.544737
+              ], 
+              [
+                -77.899771, 
+                36.544663
+              ], 
+              [
+                -78.038938, 
+                36.544173
+              ], 
+              [
+                -78.03942, 
+                36.544196
+              ], 
+              [
+                -78.046202, 
+                36.544168
+              ], 
+              [
+                -78.132911, 
+                36.543811
+              ], 
+              [
+                -78.133323, 
+                36.543847
+              ], 
+              [
+                -78.245462, 
+                36.544411
+              ], 
+              [
+                -78.246681, 
+                36.544341
+              ], 
+              [
+                -78.323912, 
+                36.543809
+              ], 
+              [
+                -78.436333, 
+                36.542666
+              ], 
+              [
+                -78.441199, 
+                36.542687
+              ], 
+              [
+                -78.45697, 
+                36.542474
+              ], 
+              [
+                -78.470792, 
+                36.542316
+              ], 
+              [
+                -78.471022, 
+                36.542307
+              ], 
+              [
+                -78.529722, 
+                36.540981
+              ], 
+              [
+                -78.533013, 
+                36.541004
+              ], 
+              [
+                -78.663317, 
+                36.542011
+              ], 
+              [
+                -78.670051, 
+                36.542035
+              ], 
+              [
+                -78.734122, 
+                36.541902
+              ], 
+              [
+                -78.758392, 
+                36.541852
+              ], 
+              [
+                -78.76543, 
+                36.541727
+              ], 
+              [
+                -78.7963, 
+                36.541713
+              ], 
+              [
+                -78.914543, 
+                36.541972
+              ], 
+              [
+                -78.91542, 
+                36.541974
+              ], 
+              [
+                -78.942009, 
+                36.542113
+              ], 
+              [
+                -78.942254, 
+                36.542079
+              ], 
+              [
+                -78.970577, 
+                36.542154
+              ], 
+              [
+                -78.971814, 
+                36.542123
+              ], 
+              [
+                -79.124736, 
+                36.541568
+              ], 
+              [
+                -79.126078, 
+                36.541533
+              ], 
+              [
+                -79.137936, 
+                36.541739
+              ], 
+              [
+                -79.208686, 
+                36.541571
+              ], 
+              [
+                -79.20948, 
+                36.541594
+              ], 
+              [
+                -79.218638, 
+                36.541579
+              ], 
+              [
+                -79.342696, 
+                36.541382
+              ], 
+              [
+                -79.445687, 
+                36.541218
+              ], 
+              [
+                -79.445961, 
+                36.541195
+              ], 
+              [
+                -79.470047, 
+                36.541025
+              ], 
+              [
+                -79.510647, 
+                36.540738
+              ], 
+              [
+                -79.510961, 
+                36.54074
+              ], 
+              [
+                -79.666827, 
+                36.541772
+              ], 
+              [
+                -79.667309, 
+                36.541772
+              ], 
+              [
+                -79.714855, 
+                36.541884
+              ], 
+              [
+                -79.920239, 
+                36.542365
+              ], 
+              [
+                -79.966979, 
+                36.542475
+              ], 
+              [
+                -79.967511, 
+                36.542502
+              ], 
+              [
+                -80.027269, 
+                36.542495
+              ], 
+              [
+                -80.053455, 
+                36.542623
+              ], 
+              [
+                -80.169535, 
+                36.54319
+              ], 
+              [
+                -80.171636, 
+                36.543219
+              ], 
+              [
+                -80.225408, 
+                36.543748
+              ], 
+              [
+                -80.228263, 
+                36.543867
+              ], 
+              [
+                -80.431605, 
+                36.550219
+              ], 
+              [
+                -80.432628, 
+                36.550302
+              ], 
+              [
+                -80.4401, 
+                36.55063
+              ], 
+              [
+                -80.612158, 
+                36.558127
+              ], 
+              [
+                -80.687539, 
+                36.561411
+              ], 
+              [
+                -80.744101, 
+                36.561686
+              ], 
+              [
+                -80.837089, 
+                36.559154
+              ], 
+              [
+                -80.837641, 
+                36.559118
+              ], 
+              [
+                -80.837954, 
+                36.559131
+              ], 
+              [
+                -80.901726, 
+                36.561751
+              ], 
+              [
+                -80.901836, 
+                36.561754
+              ], 
+              [
+                -80.944338, 
+                36.563058
+              ], 
+              [
+                -80.945988, 
+                36.563196
+              ], 
+              [
+                -81.058844, 
+                36.566976
+              ], 
+              [
+                -81.061866, 
+                36.56702
+              ], 
+              [
+                -81.307511, 
+                36.575024
+              ], 
+              [
+                -81.353169, 
+                36.574724
+              ], 
+              [
+                -81.353322, 
+                36.574723
+              ], 
+              [
+                -81.521032, 
+                36.58052
+              ], 
+              [
+                -81.60697, 
+                36.587094
+              ], 
+              [
+                -81.677535, 
+                36.588117
+              ], 
+              [
+                -81.6469, 
+                36.611918
+              ], 
+              [
+                -81.826742, 
+                36.614215
+              ], 
+              [
+                -81.922644, 
+                36.616213
+              ], 
+              [
+                -81.934144, 
+                36.594213
+              ], 
+              [
+                -82.14607, 
+                36.594712
+              ], 
+              [
+                -82.148569, 
+                36.594718
+              ], 
+              [
+                -82.150727, 
+                36.594673
+              ], 
+              [
+                -82.173982, 
+                36.594607
+              ], 
+              [
+                -82.177247, 
+                36.594768
+              ], 
+              [
+                -82.18074, 
+                36.594928
+              ], 
+              [
+                -82.188491, 
+                36.595179
+              ], 
+              [
+                -82.210497, 
+                36.595772
+              ], 
+              [
+                -82.211005, 
+                36.59586
+              ], 
+              [
+                -82.221713, 
+                36.595814
+              ], 
+              [
+                -82.223445, 
+                36.595721
+              ], 
+              [
+                -82.225716, 
+                36.595744
+              ], 
+              [
+                -82.226653, 
+                36.595743
+              ], 
+              [
+                -82.243274, 
+                36.595699
+              ], 
+              [
+                -82.293814, 
+                36.595565
+              ], 
+              [
+                -82.554294, 
+                36.594876
+              ], 
+              [
+                -82.559774, 
+                36.5948
+              ], 
+              [
+                -82.561074, 
+                36.5948
+              ], 
+              [
+                -82.609176, 
+                36.594099
+              ], 
+              [
+                -82.679879, 
+                36.593698
+              ], 
+              [
+                -82.69578, 
+                36.593698
+              ], 
+              [
+                -82.830433, 
+                36.593761
+              ], 
+              [
+                -82.985087, 
+                36.593829
+              ], 
+              [
+                -83.02725, 
+                36.593847
+              ], 
+              [
+                -83.028357, 
+                36.593893
+              ], 
+              [
+                -83.248933, 
+                36.593827
+              ], 
+              [
+                -83.249899, 
+                36.593898
+              ], 
+              [
+                -83.250304, 
+                36.593935
+              ], 
+              [
+                -83.2763, 
+                36.598187
+              ], 
+              [
+                -83.472108, 
+                36.597284
+              ], 
+              [
+                -83.670128, 
+                36.600764
+              ], 
+              [
+                -83.670141, 
+                36.600797
+              ], 
+              [
+                -83.675413, 
+                36.600814
+              ], 
+              [
+                -83.649513, 
+                36.616683
+              ], 
+              [
+                -83.527212, 
+                36.665984
+              ], 
+              [
+                -83.498011, 
+                36.670485
+              ], 
+              [
+                -83.461013, 
+                36.664916
+              ], 
+              [
+                -83.460808, 
+                36.664885
+              ], 
+              [
+                -83.354606, 
+                36.696153
+              ], 
+              [
+                -83.353613, 
+                36.696699
+              ], 
+              [
+                -83.342804, 
+                36.701286
+              ], 
+              [
+                -83.199698, 
+                36.737487
+              ], 
+              [
+                -83.167396, 
+                36.739187
+              ], 
+              [
+                -83.136395, 
+                36.743088
+              ], 
+              [
+                -83.127833, 
+                36.750828
+              ], 
+              [
+                -83.125728, 
+                36.761276
+              ], 
+              [
+                -83.125655, 
+                36.761407
+              ], 
+              [
+                -83.131245, 
+                36.767105
+              ], 
+              [
+                -83.131694, 
+                36.781488
+              ], 
+              [
+                -83.099792, 
+                36.824889
+              ], 
+              [
+                -83.07259, 
+                36.854589
+              ], 
+              [
+                -82.973395, 
+                36.859097
+              ], 
+              [
+                -82.911824, 
+                36.874243
+              ], 
+              [
+                -82.91169, 
+                36.874248
+              ], 
+              [
+                -82.885618, 
+                36.900415
+              ], 
+              [
+                -82.873777, 
+                36.912299
+              ], 
+              [
+                -82.872136, 
+                36.913456
+              ], 
+              [
+                -82.863468, 
+                36.922308
+              ], 
+              [
+                -82.861943, 
+                36.924236
+              ], 
+              [
+                -82.858461, 
+                36.932717
+              ], 
+              [
+                -82.858784, 
+                36.933065
+              ], 
+              [
+                -82.860537, 
+                36.937439
+              ], 
+              [
+                -82.861684, 
+                36.939316
+              ], 
+              [
+                -82.861282, 
+                36.944848
+              ], 
+              [
+                -82.860633, 
+                36.94584
+              ], 
+              [
+                -82.856099, 
+                36.952471
+              ], 
+              [
+                -82.855705, 
+                36.953808
+              ], 
+              [
+                -82.858443, 
+                36.954036
+              ], 
+              [
+                -82.860534, 
+                36.956015
+              ], 
+              [
+                -82.862866, 
+                36.957765
+              ], 
+              [
+                -82.864211, 
+                36.957983
+              ], 
+              [
+                -82.865404, 
+                36.958084
+              ], 
+              [
+                -82.867358, 
+                36.963182
+              ], 
+              [
+                -82.87023, 
+                36.965498
+              ], 
+              [
+                -82.870274, 
+                36.965993
+              ], 
+              [
+                -82.869183, 
+                36.974182
+              ], 
+              [
+                -82.869183, 
+                36.974183
+              ], 
+              [
+                -82.868455, 
+                36.976481
+              ], 
+              [
+                -82.867535, 
+                36.977518
+              ], 
+              [
+                -82.866689, 
+                36.978052
+              ], 
+              [
+                -82.866019, 
+                36.978272
+              ], 
+              [
+                -82.864909, 
+                36.97901
+              ], 
+              [
+                -82.862926, 
+                36.979975
+              ], 
+              [
+                -82.852614, 
+                36.984963
+              ], 
+              [
+                -82.851397, 
+                36.984497
+              ], 
+              [
+                -82.840051, 
+                36.987113
+              ], 
+              [
+                -82.838549, 
+                36.987027
+              ], 
+              [
+                -82.836008, 
+                36.988837
+              ], 
+              [
+                -82.833843, 
+                36.991973
+              ], 
+              [
+                -82.830802, 
+                36.993445
+              ], 
+              [
+                -82.829125, 
+                36.997541
+              ], 
+              [
+                -82.830588, 
+                37.000945
+              ], 
+              [
+                -82.818006, 
+                37.006161
+              ], 
+              [
+                -82.815748, 
+                37.007196
+              ], 
+              [
+                -82.800531, 
+                37.007944
+              ], 
+              [
+                -82.79089, 
+                37.00676
+              ], 
+              [
+                -82.790462, 
+                37.007263
+              ], 
+              [
+                -82.789092, 
+                37.007995
+              ], 
+              [
+                -82.788897, 
+                37.00816
+              ], 
+              [
+                -82.777368, 
+                37.015279
+              ], 
+              [
+                -82.771795, 
+                37.015716
+              ], 
+              [
+                -82.722472, 
+                37.045101
+              ], 
+              [
+                -82.720597, 
+                37.081833
+              ], 
+              [
+                -82.721941, 
+                37.105689
+              ], 
+              [
+                -82.624878, 
+                37.162932
+              ], 
+              [
+                -82.565375, 
+                37.196092
+              ], 
+              [
+                -82.565329, 
+                37.196118
+              ], 
+              [
+                -82.553549, 
+                37.200867
+              ], 
+              [
+                -82.510826, 
+                37.218091
+              ], 
+              [
+                -82.350948, 
+                37.267077
+              ], 
+              [
+                -82.310793, 
+                37.297387
+              ], 
+              [
+                -82.305874, 
+                37.3011
+              ], 
+              [
+                -82.291908, 
+                37.311642
+              ], 
+              [
+                -81.968297, 
+                37.537798
+              ], 
+              [
+                -81.92787, 
+                37.512118
+              ], 
+              [
+                -81.94264, 
+                37.508844
+              ], 
+              [
+                -81.992916, 
+                37.482969
+              ], 
+              [
+                -81.996578, 
+                37.476705
+              ], 
+              [
+                -81.99227, 
+                37.460916
+              ], 
+              [
+                -81.987006, 
+                37.454878
+              ], 
+              [
+                -81.968795, 
+                37.451496
+              ], 
+              [
+                -81.949367, 
+                37.445687
+              ], 
+              [
+                -81.935621, 
+                37.438397
+              ], 
+              [
+                -81.92749, 
+                37.413251
+              ], 
+              [
+                -81.933895, 
+                37.372747
+              ], 
+              [
+                -81.930194, 
+                37.366728
+              ], 
+              [
+                -81.929915, 
+                37.366589
+              ], 
+              [
+                -81.926589, 
+                37.358942
+              ], 
+              [
+                -81.925643, 
+                37.357316
+              ], 
+              [
+                -81.921571, 
+                37.356423
+              ], 
+              [
+                -81.920711, 
+                37.355416
+              ], 
+              [
+                -81.911487, 
+                37.348839
+              ], 
+              [
+                -81.910875, 
+                37.348729
+              ], 
+              [
+                -81.907895, 
+                37.343783
+              ], 
+              [
+                -81.907322, 
+                37.343119
+              ], 
+              [
+                -81.906368, 
+                37.34276
+              ], 
+              [
+                -81.905945, 
+                37.342775
+              ], 
+              [
+                -81.903795, 
+                37.34305
+              ], 
+              [
+                -81.902992, 
+                37.34234
+              ], 
+              [
+                -81.899495, 
+                37.341102
+              ], 
+              [
+                -81.899459, 
+                37.340277
+              ], 
+              [
+                -81.896001, 
+                37.331967
+              ], 
+              [
+                -81.895489, 
+                37.332022
+              ], 
+              [
+                -81.894797, 
+                37.332012
+              ], 
+              [
+                -81.894768, 
+                37.331381
+              ], 
+              [
+                -81.893773, 
+                37.330105
+              ], 
+              [
+                -81.892876, 
+                37.330134
+              ], 
+              [
+                -81.887722, 
+                37.331156
+              ], 
+              [
+                -81.886952, 
+                37.330725
+              ], 
+              [
+                -81.885075, 
+                37.330665
+              ], 
+              [
+                -81.880886, 
+                37.331146
+              ], 
+              [
+                -81.879601, 
+                37.332074
+              ], 
+              [
+                -81.878713, 
+                37.331753
+              ], 
+              [
+                -81.878343, 
+                37.328837
+              ], 
+              [
+                -81.873213, 
+                37.325065
+              ], 
+              [
+                -81.865219, 
+                37.308839
+              ], 
+              [
+                -81.86476, 
+                37.308404
+              ], 
+              [
+                -81.853978, 
+                37.300418
+              ], 
+              [
+                -81.854465, 
+                37.299937
+              ], 
+              [
+                -81.853488, 
+                37.294763
+              ], 
+              [
+                -81.854059, 
+                37.291352
+              ], 
+              [
+                -81.843167, 
+                37.285586
+              ], 
+              [
+                -81.84231, 
+                37.285556
+              ], 
+              [
+                -81.810559, 
+                37.28298
+              ], 
+              [
+                -81.809184, 
+                37.283003
+              ], 
+              [
+                -81.793639, 
+                37.282188
+              ], 
+              [
+                -81.793425, 
+                37.281674
+              ], 
+              [
+                -81.774747, 
+                37.274847
+              ], 
+              [
+                -81.774684, 
+                37.274807
+              ], 
+              [
+                -81.767837, 
+                37.274216
+              ], 
+              [
+                -81.765195, 
+                37.275099
+              ], 
+              [
+                -81.763836, 
+                37.275218
+              ], 
+              [
+                -81.762776, 
+                37.275391
+              ], 
+              [
+                -81.761752, 
+                37.275713
+              ], 
+              [
+                -81.76022, 
+                37.275254
+              ], 
+              [
+                -81.757631, 
+                37.274003
+              ], 
+              [
+                -81.75773, 
+                37.271934
+              ], 
+              [
+                -81.757714, 
+                37.271124
+              ], 
+              [
+                -81.757531, 
+                37.27001
+              ], 
+              [
+                -81.755012, 
+                37.26772
+              ], 
+              [
+                -81.752912, 
+                37.266614
+              ], 
+              [
+                -81.752123, 
+                37.265568
+              ], 
+              [
+                -81.75129, 
+                37.265131
+              ], 
+              [
+                -81.747656, 
+                37.264329
+              ], 
+              [
+                -81.743505, 
+                37.247601
+              ], 
+              [
+                -81.74342, 
+                37.245858
+              ], 
+              [
+                -81.744291, 
+                37.244178
+              ], 
+              [
+                -81.738378, 
+                37.240917
+              ], 
+              [
+                -81.73332, 
+                37.238127
+              ], 
+              [
+                -81.728194, 
+                37.239823
+              ], 
+              [
+                -81.683544, 
+                37.211452
+              ], 
+              [
+                -81.678603, 
+                37.202467
+              ], 
+              [
+                -81.560625, 
+                37.206663
+              ], 
+              [
+                -81.558353, 
+                37.208145
+              ], 
+              [
+                -81.557315, 
+                37.207697
+              ], 
+              [
+                -81.507325, 
+                37.2338
+              ], 
+              [
+                -81.50488, 
+                37.247697
+              ], 
+              [
+                -81.504168, 
+                37.250115
+              ], 
+              [
+                -81.409729, 
+                37.284837
+              ], 
+              [
+                -81.409196, 
+                37.286071
+              ], 
+              [
+                -81.388132, 
+                37.319903
+              ], 
+              [
+                -81.386727, 
+                37.320474
+              ], 
+              [
+                -81.38581, 
+                37.320085
+              ], 
+              [
+                -81.384914, 
+                37.318832
+              ], 
+              [
+                -81.384127, 
+                37.318596
+              ], 
+              [
+                -81.380159, 
+                37.317838
+              ], 
+              [
+                -81.377349, 
+                37.318447
+              ], 
+              [
+                -81.371315, 
+                37.324115
+              ], 
+              [
+                -81.367599, 
+                37.327569
+              ], 
+              [
+                -81.369379, 
+                37.331827
+              ], 
+              [
+                -81.36809, 
+                37.332423
+              ], 
+              [
+                -81.367052, 
+                37.334504
+              ], 
+              [
+                -81.366315, 
+                37.335927
+              ], 
+              [
+                -81.362156, 
+                37.337687
+              ], 
+              [
+                -81.320105, 
+                37.299323
+              ], 
+              [
+                -81.225104, 
+                37.234874
+              ], 
+              [
+                -81.204774, 
+                37.243013
+              ], 
+              [
+                -81.167029, 
+                37.262881
+              ], 
+              [
+                -81.112596, 
+                37.278497
+              ], 
+              [
+                -81.084012, 
+                37.284401
+              ], 
+              [
+                -81.034652, 
+                37.290751
+              ], 
+              [
+                -80.981322, 
+                37.293465
+              ], 
+              [
+                -80.980044, 
+                37.293118
+              ], 
+              [
+                -80.973889, 
+                37.291444
+              ], 
+              [
+                -80.966556, 
+                37.292158
+              ], 
+              [
+                -80.947896, 
+                37.295872
+              ], 
+              [
+                -80.919259, 
+                37.306163
+              ], 
+              [
+                -80.900535, 
+                37.315
+              ], 
+              [
+                -80.849451, 
+                37.346909
+              ], 
+              [
+                -80.872589, 
+                37.372347
+              ], 
+              [
+                -80.862761, 
+                37.411829
+              ], 
+              [
+                -80.859558, 
+                37.429555
+              ], 
+              [
+                -80.859556, 
+                37.429568
+              ], 
+              [
+                -80.858473, 
+                37.428301
+              ], 
+              [
+                -80.85836, 
+                37.428168
+              ], 
+              [
+                -80.811639, 
+                37.407507
+              ], 
+              [
+                -80.798869, 
+                37.395807
+              ], 
+              [
+                -80.776766, 
+                37.384131
+              ], 
+              [
+                -80.776649, 
+                37.383679
+              ], 
+              [
+                -80.770082, 
+                37.372363
+              ], 
+              [
+                -80.622664, 
+                37.433307
+              ], 
+              [
+                -80.511391, 
+                37.481672
+              ], 
+              [
+                -80.494867, 
+                37.43507
+              ], 
+              [
+                -80.475601, 
+                37.422949
+              ], 
+              [
+                -80.46482, 
+                37.426144
+              ], 
+              [
+                -80.443025, 
+                37.438126
+              ], 
+              [
+                -80.425656, 
+                37.449876
+              ], 
+              [
+                -80.320627, 
+                37.49888
+              ], 
+              [
+                -80.314806, 
+                37.500943
+              ], 
+              [
+                -80.330306, 
+                37.536244
+              ], 
+              [
+                -80.312393, 
+                37.546239
+              ], 
+              [
+                -80.288766, 
+                37.58196
+              ], 
+              [
+                -80.240272, 
+                37.606961
+              ], 
+              [
+                -80.223386, 
+                37.623185
+              ], 
+              [
+                -80.220984, 
+                37.627767
+              ], 
+              [
+                -80.239288, 
+                37.637672
+              ], 
+              [
+                -80.254431, 
+                37.642352
+              ], 
+              [
+                -80.254469, 
+                37.642333
+              ], 
+              [
+                -80.263281, 
+                37.645082
+              ], 
+              [
+                -80.263291, 
+                37.645101
+              ], 
+              [
+                -80.26483, 
+                37.645526
+              ], 
+              [
+                -80.264874, 
+                37.645511
+              ], 
+              [
+                -80.267228, 
+                37.646011
+              ], 
+              [
+                -80.267455, 
+                37.646108
+              ], 
+              [
+                -80.270352, 
+                37.648929
+              ], 
+              [
+                -80.270323, 
+                37.648982
+              ], 
+              [
+                -80.292258, 
+                37.683732
+              ], 
+              [
+                -80.292337, 
+                37.683976
+              ], 
+              [
+                -80.296138, 
+                37.691783
+              ], 
+              [
+                -80.287107, 
+                37.696403
+              ], 
+              [
+                -80.263936, 
+                37.719137
+              ], 
+              [
+                -80.259342, 
+                37.731205
+              ], 
+              [
+                -80.260313, 
+                37.733517
+              ], 
+              [
+                -80.262765, 
+                37.738336
+              ], 
+              [
+                -80.257411, 
+                37.756084
+              ], 
+              [
+                -80.231551, 
+                37.792591
+              ], 
+              [
+                -80.227092, 
+                37.798886
+              ], 
+              [
+                -80.162202, 
+                37.875122
+              ], 
+              [
+                -80.148964, 
+                37.886057
+              ], 
+              [
+                -80.147316, 
+                37.885936
+              ], 
+              [
+                -80.14613, 
+                37.884453
+              ], 
+              [
+                -80.130464, 
+                37.893194
+              ], 
+              [
+                -80.055278, 
+                37.951702
+              ], 
+              [
+                -80.002507, 
+                37.992767
+              ], 
+              [
+                -79.978427, 
+                38.029082
+              ], 
+              [
+                -79.959844, 
+                38.063697
+              ], 
+              [
+                -79.933911, 
+                38.099168
+              ], 
+              [
+                -79.931034, 
+                38.101402
+              ], 
+              [
+                -79.938394, 
+                38.130563
+              ], 
+              [
+                -79.933751, 
+                38.135508
+              ], 
+              [
+                -79.928747, 
+                38.144436
+              ], 
+              [
+                -79.928683, 
+                38.144928
+              ], 
+              [
+                -79.925512, 
+                38.150237
+              ], 
+              [
+                -79.925251, 
+                38.150465
+              ], 
+              [
+                -79.921026, 
+                38.179954
+              ], 
+              [
+                -79.921196, 
+                38.180378
+              ], 
+              [
+                -79.917061, 
+                38.183741
+              ], 
+              [
+                -79.916174, 
+                38.184386
+              ], 
+              [
+                -79.892345, 
+                38.202397
+              ], 
+              [
+                -79.891999, 
+                38.203378
+              ], 
+              [
+                -79.794568, 
+                38.264856
+              ], 
+              [
+                -79.790134, 
+                38.267654
+              ], 
+              [
+                -79.788945, 
+                38.268703
+              ], 
+              [
+                -79.810115, 
+                38.305037
+              ], 
+              [
+                -79.808711, 
+                38.309429
+              ], 
+              [
+                -79.731661, 
+                38.374143
+              ], 
+              [
+                -79.691377, 
+                38.439558
+              ], 
+              [
+                -79.689544, 
+                38.442511
+              ], 
+              [
+                -79.688962, 
+                38.449538
+              ], 
+              [
+                -79.688205, 
+                38.450476
+              ], 
+              [
+                -79.699006, 
+                38.475148
+              ], 
+              [
+                -79.695565, 
+                38.477842
+              ], 
+              [
+                -79.669128, 
+                38.510883
+              ], 
+              [
+                -79.669128, 
+                38.510975
+              ], 
+              [
+                -79.649075, 
+                38.591515
+              ], 
+              [
+                -79.597955, 
+                38.572767
+              ], 
+              [
+                -79.555471, 
+                38.560217
+              ], 
+              [
+                -79.53687, 
+                38.550917
+              ], 
+              [
+                -79.521469, 
+                38.533918
+              ], 
+              [
+                -79.476638, 
+                38.457228
+              ], 
+              [
+                -79.312276, 
+                38.411876
+              ], 
+              [
+                -79.297758, 
+                38.416438
+              ], 
+              [
+                -79.295712, 
+                38.418129
+              ], 
+              [
+                -79.291813, 
+                38.419627
+              ], 
+              [
+                -79.290529, 
+                38.420757
+              ], 
+              [
+                -79.280263, 
+                38.425475
+              ], 
+              [
+                -79.282663, 
+                38.431021
+              ], 
+              [
+                -79.267414, 
+                38.438322
+              ], 
+              [
+                -79.265327, 
+                38.441772
+              ], 
+              [
+                -79.263376, 
+                38.443762
+              ], 
+              [
+                -79.26291, 
+                38.444586
+              ], 
+              [
+                -79.242024, 
+                38.464332
+              ], 
+              [
+                -79.240059, 
+                38.469841
+              ], 
+              [
+                -79.234408, 
+                38.473011
+              ], 
+              [
+                -79.23162, 
+                38.474041
+              ], 
+              [
+                -79.225839, 
+                38.479446
+              ], 
+              [
+                -79.210026, 
+                38.494231
+              ], 
+              [
+                -79.210008, 
+                38.494283
+              ], 
+              [
+                -79.209703, 
+                38.495574
+              ], 
+              [
+                -79.207873, 
+                38.500122
+              ], 
+              [
+                -79.207884, 
+                38.500428
+              ], 
+              [
+                -79.174881, 
+                38.566314
+              ], 
+              [
+                -79.174512, 
+                38.566531
+              ], 
+              [
+                -79.146974, 
+                38.625641
+              ], 
+              [
+                -79.146741, 
+                38.625819
+              ], 
+              [
+                -79.137012, 
+                38.640655
+              ], 
+              [
+                -79.136374, 
+                38.6424
+              ], 
+              [
+                -79.135546, 
+                38.643715
+              ], 
+              [
+                -79.135472, 
+                38.644057
+              ], 
+              [
+                -79.092271, 
+                38.699208
+              ], 
+              [
+                -79.092555, 
+                38.700149
+              ], 
+              [
+                -79.057253, 
+                38.761413
+              ], 
+              [
+                -79.055354, 
+                38.782213
+              ], 
+              [
+                -78.999752, 
+                38.846162
+              ], 
+              [
+                -78.993997, 
+                38.850102
+              ], 
+              [
+                -78.869276, 
+                38.762991
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 18, 
+      "properties": {
+        "CENSUSAREA": 39490.086, 
+        "GEO_ID": "0400000US51", 
+        "ISO": "US-VA", 
+        "LSAD": "", 
+        "NAME": "Virginia", 
+        "NAME_1": "Virginia", 
+        "STATE": "VA"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -75.564927, 
+                39.583248
+              ], 
+              [
+                -75.576271, 
+                39.588144
+              ], 
+              [
+                -75.578719, 
+                39.591504
+              ], 
+              [
+                -75.579615, 
+                39.598656
+              ], 
+              [
+                -75.565823, 
+                39.590608
+              ], 
+              [
+                -75.564927, 
+                39.583248
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -75.55587, 
+                39.605824
+              ], 
+              [
+                -75.561934, 
+                39.605216
+              ], 
+              [
+                -75.567694, 
+                39.613744
+              ], 
+              [
+                -75.571759, 
+                39.623584
+              ], 
+              [
+                -75.570798, 
+                39.626768
+              ], 
+              [
+                -75.559446, 
+                39.629812
+              ], 
+              [
+                -75.55587, 
+                39.605824
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -75.594846, 
+                39.837286
+              ], 
+              [
+                -75.593666, 
+                39.837455
+              ], 
+              [
+                -75.593082, 
+                39.8375
+              ], 
+              [
+                -75.5799, 
+                39.838522
+              ], 
+              [
+                -75.579849, 
+                39.838526
+              ], 
+              [
+                -75.539346, 
+                39.838211
+              ], 
+              [
+                -75.498843, 
+                39.833312
+              ], 
+              [
+                -75.45374, 
+                39.820312
+              ], 
+              [
+                -75.428038, 
+                39.809212
+              ], 
+              [
+                -75.415041, 
+                39.801786
+              ], 
+              [
+                -75.416095, 
+                39.79583
+              ], 
+              [
+                -75.437938, 
+                39.783413
+              ], 
+              [
+                -75.440623, 
+                39.780926
+              ], 
+              [
+                -75.448135, 
+                39.773969
+              ], 
+              [
+                -75.466249, 
+                39.750769
+              ], 
+              [
+                -75.466263, 
+                39.750737
+              ], 
+              [
+                -75.469239, 
+                39.743613
+              ], 
+              [
+                -75.474168, 
+                39.735473
+              ], 
+              [
+                -75.475384, 
+                39.731057
+              ], 
+              [
+                -75.504042, 
+                39.698313
+              ], 
+              [
+                -75.509742, 
+                39.686113
+              ], 
+              [
+                -75.529744, 
+                39.692613
+              ], 
+              [
+                -75.562246, 
+                39.656712
+              ], 
+              [
+                -75.587147, 
+                39.651012
+              ], 
+              [
+                -75.611969, 
+                39.621968
+              ], 
+              [
+                -75.613153, 
+                39.62096
+              ], 
+              [
+                -75.613377, 
+                39.620288
+              ], 
+              [
+                -75.614065, 
+                39.61832
+              ], 
+              [
+                -75.614929, 
+                39.615952
+              ], 
+              [
+                -75.614273, 
+                39.61464
+              ], 
+              [
+                -75.613345, 
+                39.613056
+              ], 
+              [
+                -75.613665, 
+                39.61256
+              ], 
+              [
+                -75.613233, 
+                39.607408
+              ], 
+              [
+                -75.613477, 
+                39.606861
+              ], 
+              [
+                -75.613473, 
+                39.606832
+              ], 
+              [
+                -75.613793, 
+                39.606192
+              ], 
+              [
+                -75.611905, 
+                39.597568
+              ], 
+              [
+                -75.611873, 
+                39.597408
+              ], 
+              [
+                -75.60464, 
+                39.58992
+              ], 
+              [
+                -75.603584, 
+                39.58896
+              ], 
+              [
+                -75.592224, 
+                39.583568
+              ], 
+              [
+                -75.591984, 
+                39.583248
+              ], 
+              [
+                -75.587744, 
+                39.580672
+              ], 
+              [
+                -75.5872, 
+                39.580256
+              ], 
+              [
+                -75.586608, 
+                39.57888
+              ], 
+              [
+                -75.586016, 
+                39.578448
+              ], 
+              [
+                -75.571599, 
+                39.567728
+              ], 
+              [
+                -75.570783, 
+                39.56728
+              ], 
+              [
+                -75.563034, 
+                39.56224
+              ], 
+              [
+                -75.564649, 
+                39.559922
+              ], 
+              [
+                -75.565636, 
+                39.558509
+              ], 
+              [
+                -75.569359, 
+                39.540589
+              ], 
+              [
+                -75.569418, 
+                39.539124
+              ], 
+              [
+                -75.570362, 
+                39.527223
+              ], 
+              [
+                -75.560728, 
+                39.520472
+              ], 
+              [
+                -75.566933, 
+                39.508273
+              ], 
+              [
+                -75.576436, 
+                39.509195
+              ], 
+              [
+                -75.587729, 
+                39.496353
+              ], 
+              [
+                -75.587729, 
+                39.495369
+              ], 
+              [
+                -75.593068, 
+                39.479186
+              ], 
+              [
+                -75.593068, 
+                39.477996
+              ], 
+              [
+                -75.589901, 
+                39.462022
+              ], 
+              [
+                -75.589439, 
+                39.460812
+              ], 
+              [
+                -75.580185, 
+                39.450786
+              ], 
+              [
+                -75.578914, 
+                39.44788
+              ], 
+              [
+                -75.570985, 
+                39.442486
+              ], 
+              [
+                -75.57183, 
+                39.438897
+              ], 
+              [
+                -75.55589, 
+                39.430351
+              ], 
+              [
+                -75.538512, 
+                39.416502
+              ], 
+              [
+                -75.535977, 
+                39.409384
+              ], 
+              [
+                -75.523583, 
+                39.391583
+              ], 
+              [
+                -75.521682, 
+                39.387871
+              ], 
+              [
+                -75.512996, 
+                39.366153
+              ], 
+              [
+                -75.512372, 
+                39.365656
+              ], 
+              [
+                -75.511788, 
+                39.365191
+              ], 
+              [
+                -75.505276, 
+                39.359169
+              ], 
+              [
+                -75.494158, 
+                39.354613
+              ], 
+              [
+                -75.491797, 
+                39.351845
+              ], 
+              [
+                -75.494122, 
+                39.34658
+              ], 
+              [
+                -75.493148, 
+                39.345527
+              ], 
+              [
+                -75.491688, 
+                39.343963
+              ], 
+              [
+                -75.490377, 
+                39.342818
+              ], 
+              [
+                -75.479845, 
+                39.337472
+              ], 
+              [
+                -75.479963, 
+                39.336577
+              ], 
+              [
+                -75.469324, 
+                39.33082
+              ], 
+              [
+                -75.460423, 
+                39.328236
+              ], 
+              [
+                -75.439027, 
+                39.313384
+              ], 
+              [
+                -75.436936, 
+                39.309379
+              ], 
+              [
+                -75.435551, 
+                39.297546
+              ], 
+              [
+                -75.435374, 
+                39.296676
+              ], 
+              [
+                -75.427953, 
+                39.285049
+              ], 
+              [
+                -75.408376, 
+                39.264698
+              ], 
+              [
+                -75.402964, 
+                39.254626
+              ], 
+              [
+                -75.404823, 
+                39.245898
+              ], 
+              [
+                -75.405927, 
+                39.243631
+              ], 
+              [
+                -75.405716, 
+                39.223834
+              ], 
+              [
+                -75.404745, 
+                39.222666
+              ], 
+              [
+                -75.396892, 
+                39.216141
+              ], 
+              [
+                -75.393015, 
+                39.204512
+              ], 
+              [
+                -75.39479, 
+                39.188354
+              ], 
+              [
+                -75.398584, 
+                39.186616
+              ], 
+              [
+                -75.400144, 
+                39.186456
+              ], 
+              [
+                -75.408266, 
+                39.174625
+              ], 
+              [
+                -75.410625, 
+                39.156246
+              ], 
+              [
+                -75.401193, 
+                39.088762
+              ], 
+              [
+                -75.402035, 
+                39.066885
+              ], 
+              [
+                -75.400294, 
+                39.065645
+              ], 
+              [
+                -75.395806, 
+                39.059211
+              ], 
+              [
+                -75.396277, 
+                39.057884
+              ], 
+              [
+                -75.387914, 
+                39.051174
+              ], 
+              [
+                -75.379873, 
+                39.04879
+              ], 
+              [
+                -75.345763, 
+                39.024857
+              ], 
+              [
+                -75.34089, 
+                39.01996
+              ], 
+              [
+                -75.318354, 
+                38.988191
+              ], 
+              [
+                -75.314951, 
+                38.980775
+              ], 
+              [
+                -75.311607, 
+                38.967637
+              ], 
+              [
+                -75.312546, 
+                38.951065
+              ], 
+              [
+                -75.312546, 
+                38.94928
+              ], 
+              [
+                -75.311923, 
+                38.945917
+              ], 
+              [
+                -75.311882, 
+                38.945698
+              ], 
+              [
+                -75.311542, 
+                38.944633
+              ], 
+              [
+                -75.302552, 
+                38.939002
+              ], 
+              [
+                -75.312282, 
+                38.924594
+              ], 
+              [
+                -75.304078, 
+                38.91316
+              ], 
+              [
+                -75.263115, 
+                38.877351
+              ], 
+              [
+                -75.232029, 
+                38.844254
+              ], 
+              [
+                -75.205329, 
+                38.823386
+              ], 
+              [
+                -75.190552, 
+                38.806861
+              ], 
+              [
+                -75.160748, 
+                38.791224
+              ], 
+              [
+                -75.159022, 
+                38.790193
+              ], 
+              [
+                -75.134022, 
+                38.782242
+              ], 
+              [
+                -75.113331, 
+                38.782998
+              ], 
+              [
+                -75.097103, 
+                38.788703
+              ], 
+              [
+                -75.093654, 
+                38.793992
+              ], 
+              [
+                -75.097197, 
+                38.803101
+              ], 
+              [
+                -75.093805, 
+                38.803812
+              ], 
+              [
+                -75.089473, 
+                38.797198
+              ], 
+              [
+                -75.082153, 
+                38.772157
+              ], 
+              [
+                -75.080217, 
+                38.750112
+              ], 
+              [
+                -75.079221, 
+                38.738238
+              ], 
+              [
+                -75.06551, 
+                38.66103
+              ], 
+              [
+                -75.065217, 
+                38.632394
+              ], 
+              [
+                -75.06192, 
+                38.608869
+              ], 
+              [
+                -75.061259, 
+                38.608602
+              ], 
+              [
+                -75.060478, 
+                38.608012
+              ], 
+              [
+                -75.060032, 
+                38.607709
+              ], 
+              [
+                -75.049748, 
+                38.486387
+              ], 
+              [
+                -75.048939, 
+                38.451263
+              ], 
+              [
+                -75.049268, 
+                38.451264
+              ], 
+              [
+                -75.05251, 
+                38.451273
+              ], 
+              [
+                -75.053483, 
+                38.451274
+              ], 
+              [
+                -75.066327, 
+                38.451291
+              ], 
+              [
+                -75.069909, 
+                38.451276
+              ], 
+              [
+                -75.070356, 
+                38.451276
+              ], 
+              [
+                -75.085814, 
+                38.451258
+              ], 
+              [
+                -75.088281, 
+                38.451256
+              ], 
+              [
+                -75.089649, 
+                38.451254
+              ], 
+              [
+                -75.141894, 
+                38.451196
+              ], 
+              [
+                -75.185413, 
+                38.451013
+              ], 
+              [
+                -75.252723, 
+                38.451397
+              ], 
+              [
+                -75.26035, 
+                38.451492
+              ], 
+              [
+                -75.341247, 
+                38.45197
+              ], 
+              [
+                -75.34125, 
+                38.45197
+              ], 
+              [
+                -75.355797, 
+                38.452008
+              ], 
+              [
+                -75.371054, 
+                38.452107
+              ], 
+              [
+                -75.393563, 
+                38.452114
+              ], 
+              [
+                -75.394786, 
+                38.45216
+              ], 
+              [
+                -75.410884, 
+                38.4524
+              ], 
+              [
+                -75.424831, 
+                38.45261
+              ], 
+              [
+                -75.428728, 
+                38.452671
+              ], 
+              [
+                -75.47915, 
+                38.453699
+              ], 
+              [
+                -75.500142, 
+                38.454144
+              ], 
+              [
+                -75.502961, 
+                38.45422
+              ], 
+              [
+                -75.521304, 
+                38.454657
+              ], 
+              [
+                -75.52273, 
+                38.454657
+              ], 
+              [
+                -75.533763, 
+                38.454958
+              ], 
+              [
+                -75.559212, 
+                38.455563
+              ], 
+              [
+                -75.559934, 
+                38.455579
+              ], 
+              [
+                -75.57411, 
+                38.455991
+              ], 
+              [
+                -75.583601, 
+                38.456424
+              ], 
+              [
+                -75.589307, 
+                38.456286
+              ], 
+              [
+                -75.593082, 
+                38.456404
+              ], 
+              [
+                -75.598069, 
+                38.456855
+              ], 
+              [
+                -75.630457, 
+                38.457904
+              ], 
+              [
+                -75.662843, 
+                38.458759
+              ], 
+              [
+                -75.665585, 
+                38.4589
+              ], 
+              [
+                -75.693521, 
+                38.460128
+              ], 
+              [
+                -75.696369, 
+                38.492373
+              ], 
+              [
+                -75.696688, 
+                38.496467
+              ], 
+              [
+                -75.698777, 
+                38.522001
+              ], 
+              [
+                -75.700179, 
+                38.542717
+              ], 
+              [
+                -75.701465, 
+                38.559433
+              ], 
+              [
+                -75.701565, 
+                38.560736
+              ], 
+              [
+                -75.703445, 
+                38.58512
+              ], 
+              [
+                -75.703981, 
+                38.592066
+              ], 
+              [
+                -75.705774, 
+                38.61474
+              ], 
+              [
+                -75.70586, 
+                38.616268
+              ], 
+              [
+                -75.706235, 
+                38.621296
+              ], 
+              [
+                -75.706585, 
+                38.626125
+              ], 
+              [
+                -75.707346, 
+                38.63528
+              ], 
+              [
+                -75.707352, 
+                38.635359
+              ], 
+              [
+                -75.722028, 
+                38.822078
+              ], 
+              [
+                -75.722599, 
+                38.829859
+              ], 
+              [
+                -75.72261, 
+                38.830008
+              ], 
+              [
+                -75.722882, 
+                38.833156
+              ], 
+              [
+                -75.724002, 
+                38.846682
+              ], 
+              [
+                -75.724061, 
+                38.847781
+              ], 
+              [
+                -75.725565, 
+                38.868152
+              ], 
+              [
+                -75.725829, 
+                38.869296
+              ], 
+              [
+                -75.745793, 
+                39.114935
+              ], 
+              [
+                -75.746121, 
+                39.120318
+              ], 
+              [
+                -75.747668, 
+                39.143306
+              ], 
+              [
+                -75.747671, 
+                39.143345
+              ], 
+              [
+                -75.755953, 
+                39.245958
+              ], 
+              [
+                -75.755962, 
+                39.246069
+              ], 
+              [
+                -75.760104, 
+                39.296817
+              ], 
+              [
+                -75.766667, 
+                39.377216
+              ], 
+              [
+                -75.766693, 
+                39.377537
+              ], 
+              [
+                -75.77924, 
+                39.534737
+              ], 
+              [
+                -75.779383, 
+                39.536522
+              ], 
+              [
+                -75.78689, 
+                39.630575
+              ], 
+              [
+                -75.78745, 
+                39.637455
+              ], 
+              [
+                -75.788616, 
+                39.680742
+              ], 
+              [
+                -75.788658, 
+                39.681911
+              ], 
+              [
+                -75.788395, 
+                39.700031
+              ], 
+              [
+                -75.788395, 
+                39.700287
+              ], 
+              [
+                -75.788359, 
+                39.721811
+              ], 
+              [
+                -75.739705, 
+                39.772623
+              ], 
+              [
+                -75.716969, 
+                39.791998
+              ], 
+              [
+                -75.685991, 
+                39.811054
+              ], 
+              [
+                -75.662822, 
+                39.82115
+              ], 
+              [
+                -75.641518, 
+                39.828363
+              ], 
+              [
+                -75.634706, 
+                39.830164
+              ], 
+              [
+                -75.595756, 
+                39.837156
+              ], 
+              [
+                -75.594846, 
+                39.837286
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 19, 
+      "properties": {
+        "CENSUSAREA": 1948.543, 
+        "GEO_ID": "0400000US10", 
+        "ISO": "US-DE", 
+        "LSAD": "", 
+        "NAME": "Delaware", 
+        "NAME_1": "Delaware", 
+        "STATE": "DE"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -78.571901, 
+                39.031995
+              ], 
+              [
+                -78.565837, 
+                39.026303
+              ], 
+              [
+                -78.554222, 
+                39.019672
+              ], 
+              [
+                -78.557647, 
+                39.013189
+              ], 
+              [
+                -78.601655, 
+                38.964603
+              ], 
+              [
+                -78.710949, 
+                38.910175
+              ], 
+              [
+                -78.714135, 
+                38.911176
+              ], 
+              [
+                -78.716956, 
+                38.916273
+              ], 
+              [
+                -78.719755, 
+                38.922135
+              ], 
+              [
+                -78.719806, 
+                38.922638
+              ], 
+              [
+                -78.757278, 
+                38.903203
+              ], 
+              [
+                -78.779198, 
+                38.892298
+              ], 
+              [
+                -78.788031, 
+                38.885123
+              ], 
+              [
+                -78.808181, 
+                38.856175
+              ], 
+              [
+                -78.835191, 
+                38.811499
+              ], 
+              [
+                -78.869276, 
+                38.762991
+              ], 
+              [
+                -78.993997, 
+                38.850102
+              ], 
+              [
+                -78.999752, 
+                38.846162
+              ], 
+              [
+                -79.055354, 
+                38.782213
+              ], 
+              [
+                -79.057253, 
+                38.761413
+              ], 
+              [
+                -79.092555, 
+                38.700149
+              ], 
+              [
+                -79.092271, 
+                38.699208
+              ], 
+              [
+                -79.135472, 
+                38.644057
+              ], 
+              [
+                -79.135546, 
+                38.643715
+              ], 
+              [
+                -79.136374, 
+                38.6424
+              ], 
+              [
+                -79.137012, 
+                38.640655
+              ], 
+              [
+                -79.146741, 
+                38.625819
+              ], 
+              [
+                -79.146974, 
+                38.625641
+              ], 
+              [
+                -79.174512, 
+                38.566531
+              ], 
+              [
+                -79.174881, 
+                38.566314
+              ], 
+              [
+                -79.207884, 
+                38.500428
+              ], 
+              [
+                -79.207873, 
+                38.500122
+              ], 
+              [
+                -79.209703, 
+                38.495574
+              ], 
+              [
+                -79.210008, 
+                38.494283
+              ], 
+              [
+                -79.210026, 
+                38.494231
+              ], 
+              [
+                -79.225839, 
+                38.479446
+              ], 
+              [
+                -79.23162, 
+                38.474041
+              ], 
+              [
+                -79.234408, 
+                38.473011
+              ], 
+              [
+                -79.240059, 
+                38.469841
+              ], 
+              [
+                -79.242024, 
+                38.464332
+              ], 
+              [
+                -79.26291, 
+                38.444586
+              ], 
+              [
+                -79.263376, 
+                38.443762
+              ], 
+              [
+                -79.265327, 
+                38.441772
+              ], 
+              [
+                -79.267414, 
+                38.438322
+              ], 
+              [
+                -79.282663, 
+                38.431021
+              ], 
+              [
+                -79.280263, 
+                38.425475
+              ], 
+              [
+                -79.290529, 
+                38.420757
+              ], 
+              [
+                -79.291813, 
+                38.419627
+              ], 
+              [
+                -79.295712, 
+                38.418129
+              ], 
+              [
+                -79.297758, 
+                38.416438
+              ], 
+              [
+                -79.312276, 
+                38.411876
+              ], 
+              [
+                -79.476638, 
+                38.457228
+              ], 
+              [
+                -79.521469, 
+                38.533918
+              ], 
+              [
+                -79.53687, 
+                38.550917
+              ], 
+              [
+                -79.555471, 
+                38.560217
+              ], 
+              [
+                -79.597955, 
+                38.572767
+              ], 
+              [
+                -79.649075, 
+                38.591515
+              ], 
+              [
+                -79.669128, 
+                38.510975
+              ], 
+              [
+                -79.669128, 
+                38.510883
+              ], 
+              [
+                -79.695565, 
+                38.477842
+              ], 
+              [
+                -79.699006, 
+                38.475148
+              ], 
+              [
+                -79.688205, 
+                38.450476
+              ], 
+              [
+                -79.688962, 
+                38.449538
+              ], 
+              [
+                -79.689544, 
+                38.442511
+              ], 
+              [
+                -79.691377, 
+                38.439558
+              ], 
+              [
+                -79.731661, 
+                38.374143
+              ], 
+              [
+                -79.808711, 
+                38.309429
+              ], 
+              [
+                -79.810115, 
+                38.305037
+              ], 
+              [
+                -79.788945, 
+                38.268703
+              ], 
+              [
+                -79.790134, 
+                38.267654
+              ], 
+              [
+                -79.794568, 
+                38.264856
+              ], 
+              [
+                -79.891999, 
+                38.203378
+              ], 
+              [
+                -79.892345, 
+                38.202397
+              ], 
+              [
+                -79.916174, 
+                38.184386
+              ], 
+              [
+                -79.917061, 
+                38.183741
+              ], 
+              [
+                -79.921196, 
+                38.180378
+              ], 
+              [
+                -79.921026, 
+                38.179954
+              ], 
+              [
+                -79.925251, 
+                38.150465
+              ], 
+              [
+                -79.925512, 
+                38.150237
+              ], 
+              [
+                -79.928683, 
+                38.144928
+              ], 
+              [
+                -79.928747, 
+                38.144436
+              ], 
+              [
+                -79.933751, 
+                38.135508
+              ], 
+              [
+                -79.938394, 
+                38.130563
+              ], 
+              [
+                -79.931034, 
+                38.101402
+              ], 
+              [
+                -79.933911, 
+                38.099168
+              ], 
+              [
+                -79.959844, 
+                38.063697
+              ], 
+              [
+                -79.978427, 
+                38.029082
+              ], 
+              [
+                -80.002507, 
+                37.992767
+              ], 
+              [
+                -80.055278, 
+                37.951702
+              ], 
+              [
+                -80.130464, 
+                37.893194
+              ], 
+              [
+                -80.14613, 
+                37.884453
+              ], 
+              [
+                -80.147316, 
+                37.885936
+              ], 
+              [
+                -80.148964, 
+                37.886057
+              ], 
+              [
+                -80.162202, 
+                37.875122
+              ], 
+              [
+                -80.227092, 
+                37.798886
+              ], 
+              [
+                -80.231551, 
+                37.792591
+              ], 
+              [
+                -80.257411, 
+                37.756084
+              ], 
+              [
+                -80.262765, 
+                37.738336
+              ], 
+              [
+                -80.260313, 
+                37.733517
+              ], 
+              [
+                -80.259342, 
+                37.731205
+              ], 
+              [
+                -80.263936, 
+                37.719137
+              ], 
+              [
+                -80.287107, 
+                37.696403
+              ], 
+              [
+                -80.296138, 
+                37.691783
+              ], 
+              [
+                -80.292337, 
+                37.683976
+              ], 
+              [
+                -80.292258, 
+                37.683732
+              ], 
+              [
+                -80.270323, 
+                37.648982
+              ], 
+              [
+                -80.270352, 
+                37.648929
+              ], 
+              [
+                -80.267455, 
+                37.646108
+              ], 
+              [
+                -80.267228, 
+                37.646011
+              ], 
+              [
+                -80.264874, 
+                37.645511
+              ], 
+              [
+                -80.26483, 
+                37.645526
+              ], 
+              [
+                -80.263291, 
+                37.645101
+              ], 
+              [
+                -80.263281, 
+                37.645082
+              ], 
+              [
+                -80.254469, 
+                37.642333
+              ], 
+              [
+                -80.254431, 
+                37.642352
+              ], 
+              [
+                -80.239288, 
+                37.637672
+              ], 
+              [
+                -80.220984, 
+                37.627767
+              ], 
+              [
+                -80.223386, 
+                37.623185
+              ], 
+              [
+                -80.240272, 
+                37.606961
+              ], 
+              [
+                -80.288766, 
+                37.58196
+              ], 
+              [
+                -80.312393, 
+                37.546239
+              ], 
+              [
+                -80.330306, 
+                37.536244
+              ], 
+              [
+                -80.314806, 
+                37.500943
+              ], 
+              [
+                -80.320627, 
+                37.49888
+              ], 
+              [
+                -80.425656, 
+                37.449876
+              ], 
+              [
+                -80.443025, 
+                37.438126
+              ], 
+              [
+                -80.46482, 
+                37.426144
+              ], 
+              [
+                -80.475601, 
+                37.422949
+              ], 
+              [
+                -80.494867, 
+                37.43507
+              ], 
+              [
+                -80.511391, 
+                37.481672
+              ], 
+              [
+                -80.622664, 
+                37.433307
+              ], 
+              [
+                -80.770082, 
+                37.372363
+              ], 
+              [
+                -80.776649, 
+                37.383679
+              ], 
+              [
+                -80.776766, 
+                37.384131
+              ], 
+              [
+                -80.798869, 
+                37.395807
+              ], 
+              [
+                -80.811639, 
+                37.407507
+              ], 
+              [
+                -80.85836, 
+                37.428168
+              ], 
+              [
+                -80.858473, 
+                37.428301
+              ], 
+              [
+                -80.859556, 
+                37.429568
+              ], 
+              [
+                -80.859558, 
+                37.429555
+              ], 
+              [
+                -80.862761, 
+                37.411829
+              ], 
+              [
+                -80.872589, 
+                37.372347
+              ], 
+              [
+                -80.849451, 
+                37.346909
+              ], 
+              [
+                -80.900535, 
+                37.315
+              ], 
+              [
+                -80.919259, 
+                37.306163
+              ], 
+              [
+                -80.947896, 
+                37.295872
+              ], 
+              [
+                -80.966556, 
+                37.292158
+              ], 
+              [
+                -80.973889, 
+                37.291444
+              ], 
+              [
+                -80.980044, 
+                37.293118
+              ], 
+              [
+                -80.981322, 
+                37.293465
+              ], 
+              [
+                -81.034652, 
+                37.290751
+              ], 
+              [
+                -81.084012, 
+                37.284401
+              ], 
+              [
+                -81.112596, 
+                37.278497
+              ], 
+              [
+                -81.167029, 
+                37.262881
+              ], 
+              [
+                -81.204774, 
+                37.243013
+              ], 
+              [
+                -81.225104, 
+                37.234874
+              ], 
+              [
+                -81.320105, 
+                37.299323
+              ], 
+              [
+                -81.362156, 
+                37.337687
+              ], 
+              [
+                -81.366315, 
+                37.335927
+              ], 
+              [
+                -81.367052, 
+                37.334504
+              ], 
+              [
+                -81.36809, 
+                37.332423
+              ], 
+              [
+                -81.369379, 
+                37.331827
+              ], 
+              [
+                -81.367599, 
+                37.327569
+              ], 
+              [
+                -81.371315, 
+                37.324115
+              ], 
+              [
+                -81.377349, 
+                37.318447
+              ], 
+              [
+                -81.380159, 
+                37.317838
+              ], 
+              [
+                -81.384127, 
+                37.318596
+              ], 
+              [
+                -81.384914, 
+                37.318832
+              ], 
+              [
+                -81.38581, 
+                37.320085
+              ], 
+              [
+                -81.386727, 
+                37.320474
+              ], 
+              [
+                -81.388132, 
+                37.319903
+              ], 
+              [
+                -81.409196, 
+                37.286071
+              ], 
+              [
+                -81.409729, 
+                37.284837
+              ], 
+              [
+                -81.504168, 
+                37.250115
+              ], 
+              [
+                -81.50488, 
+                37.247697
+              ], 
+              [
+                -81.507325, 
+                37.2338
+              ], 
+              [
+                -81.557315, 
+                37.207697
+              ], 
+              [
+                -81.558353, 
+                37.208145
+              ], 
+              [
+                -81.560625, 
+                37.206663
+              ], 
+              [
+                -81.678603, 
+                37.202467
+              ], 
+              [
+                -81.683544, 
+                37.211452
+              ], 
+              [
+                -81.728194, 
+                37.239823
+              ], 
+              [
+                -81.73332, 
+                37.238127
+              ], 
+              [
+                -81.738378, 
+                37.240917
+              ], 
+              [
+                -81.744291, 
+                37.244178
+              ], 
+              [
+                -81.74342, 
+                37.245858
+              ], 
+              [
+                -81.743505, 
+                37.247601
+              ], 
+              [
+                -81.747656, 
+                37.264329
+              ], 
+              [
+                -81.75129, 
+                37.265131
+              ], 
+              [
+                -81.752123, 
+                37.265568
+              ], 
+              [
+                -81.752912, 
+                37.266614
+              ], 
+              [
+                -81.755012, 
+                37.26772
+              ], 
+              [
+                -81.757531, 
+                37.27001
+              ], 
+              [
+                -81.757714, 
+                37.271124
+              ], 
+              [
+                -81.75773, 
+                37.271934
+              ], 
+              [
+                -81.757631, 
+                37.274003
+              ], 
+              [
+                -81.76022, 
+                37.275254
+              ], 
+              [
+                -81.761752, 
+                37.275713
+              ], 
+              [
+                -81.762776, 
+                37.275391
+              ], 
+              [
+                -81.763836, 
+                37.275218
+              ], 
+              [
+                -81.765195, 
+                37.275099
+              ], 
+              [
+                -81.767837, 
+                37.274216
+              ], 
+              [
+                -81.774684, 
+                37.274807
+              ], 
+              [
+                -81.774747, 
+                37.274847
+              ], 
+              [
+                -81.793425, 
+                37.281674
+              ], 
+              [
+                -81.793639, 
+                37.282188
+              ], 
+              [
+                -81.809184, 
+                37.283003
+              ], 
+              [
+                -81.810559, 
+                37.28298
+              ], 
+              [
+                -81.84231, 
+                37.285556
+              ], 
+              [
+                -81.843167, 
+                37.285586
+              ], 
+              [
+                -81.854059, 
+                37.291352
+              ], 
+              [
+                -81.853488, 
+                37.294763
+              ], 
+              [
+                -81.854465, 
+                37.299937
+              ], 
+              [
+                -81.853978, 
+                37.300418
+              ], 
+              [
+                -81.86476, 
+                37.308404
+              ], 
+              [
+                -81.865219, 
+                37.308839
+              ], 
+              [
+                -81.873213, 
+                37.325065
+              ], 
+              [
+                -81.878343, 
+                37.328837
+              ], 
+              [
+                -81.878713, 
+                37.331753
+              ], 
+              [
+                -81.879601, 
+                37.332074
+              ], 
+              [
+                -81.880886, 
+                37.331146
+              ], 
+              [
+                -81.885075, 
+                37.330665
+              ], 
+              [
+                -81.886952, 
+                37.330725
+              ], 
+              [
+                -81.887722, 
+                37.331156
+              ], 
+              [
+                -81.892876, 
+                37.330134
+              ], 
+              [
+                -81.893773, 
+                37.330105
+              ], 
+              [
+                -81.894768, 
+                37.331381
+              ], 
+              [
+                -81.894797, 
+                37.332012
+              ], 
+              [
+                -81.895489, 
+                37.332022
+              ], 
+              [
+                -81.896001, 
+                37.331967
+              ], 
+              [
+                -81.899459, 
+                37.340277
+              ], 
+              [
+                -81.899495, 
+                37.341102
+              ], 
+              [
+                -81.902992, 
+                37.34234
+              ], 
+              [
+                -81.903795, 
+                37.34305
+              ], 
+              [
+                -81.905945, 
+                37.342775
+              ], 
+              [
+                -81.906368, 
+                37.34276
+              ], 
+              [
+                -81.907322, 
+                37.343119
+              ], 
+              [
+                -81.907895, 
+                37.343783
+              ], 
+              [
+                -81.910875, 
+                37.348729
+              ], 
+              [
+                -81.911487, 
+                37.348839
+              ], 
+              [
+                -81.920711, 
+                37.355416
+              ], 
+              [
+                -81.921571, 
+                37.356423
+              ], 
+              [
+                -81.925643, 
+                37.357316
+              ], 
+              [
+                -81.926589, 
+                37.358942
+              ], 
+              [
+                -81.929915, 
+                37.366589
+              ], 
+              [
+                -81.930194, 
+                37.366728
+              ], 
+              [
+                -81.933895, 
+                37.372747
+              ], 
+              [
+                -81.92749, 
+                37.413251
+              ], 
+              [
+                -81.935621, 
+                37.438397
+              ], 
+              [
+                -81.949367, 
+                37.445687
+              ], 
+              [
+                -81.968795, 
+                37.451496
+              ], 
+              [
+                -81.987006, 
+                37.454878
+              ], 
+              [
+                -81.99227, 
+                37.460916
+              ], 
+              [
+                -81.996578, 
+                37.476705
+              ], 
+              [
+                -81.992916, 
+                37.482969
+              ], 
+              [
+                -81.94264, 
+                37.508844
+              ], 
+              [
+                -81.92787, 
+                37.512118
+              ], 
+              [
+                -81.968297, 
+                37.537798
+              ], 
+              [
+                -81.998177, 
+                37.543082
+              ], 
+              [
+                -81.999844, 
+                37.542579
+              ], 
+              [
+                -82.008274, 
+                37.533357
+              ], 
+              [
+                -82.048521, 
+                37.531078
+              ], 
+              [
+                -82.116584, 
+                37.559588
+              ], 
+              [
+                -82.125892, 
+                37.574031
+              ], 
+              [
+                -82.125601, 
+                37.579021
+              ], 
+              [
+                -82.141814, 
+                37.595052
+              ], 
+              [
+                -82.21967, 
+                37.643046
+              ], 
+              [
+                -82.25028, 
+                37.657776
+              ], 
+              [
+                -82.297011, 
+                37.687273
+              ], 
+              [
+                -82.307235, 
+                37.707669
+              ], 
+              [
+                -82.325739, 
+                37.735799
+              ], 
+              [
+                -82.326404, 
+                37.740815
+              ], 
+              [
+                -82.319023, 
+                37.758892
+              ], 
+              [
+                -82.329867, 
+                37.775897
+              ], 
+              [
+                -82.400234, 
+                37.851833
+              ], 
+              [
+                -82.417679, 
+                37.870658
+              ], 
+              [
+                -82.474666, 
+                37.910388
+              ], 
+              [
+                -82.500386, 
+                37.936518
+              ], 
+              [
+                -82.497358, 
+                37.945338
+              ], 
+              [
+                -82.4973, 
+                37.945507
+              ], 
+              [
+                -82.464987, 
+                37.976859
+              ], 
+              [
+                -82.464096, 
+                37.982437
+              ], 
+              [
+                -82.465473, 
+                37.98478
+              ], 
+              [
+                -82.487732, 
+                37.99833
+              ], 
+              [
+                -82.509812, 
+                38.001249
+              ], 
+              [
+                -82.519665, 
+                38.008538
+              ], 
+              [
+                -82.539139, 
+                38.039093
+              ], 
+              [
+                -82.547284, 
+                38.061094
+              ], 
+              [
+                -82.600127, 
+                38.117389
+              ], 
+              [
+                -82.602618, 
+                38.11835
+              ], 
+              [
+                -82.621164, 
+                38.123239
+              ], 
+              [
+                -82.636466, 
+                38.13786
+              ], 
+              [
+                -82.644739, 
+                38.165487
+              ], 
+              [
+                -82.60423, 
+                38.247303
+              ], 
+              [
+                -82.59497, 
+                38.245453
+              ], 
+              [
+                -82.584001, 
+                38.246371
+              ], 
+              [
+                -82.578254, 
+                38.254809
+              ], 
+              [
+                -82.574656, 
+                38.263873
+              ], 
+              [
+                -82.571877, 
+                38.315781
+              ], 
+              [
+                -82.593008, 
+                38.375082
+              ], 
+              [
+                -82.595382, 
+                38.382712
+              ], 
+              [
+                -82.595369, 
+                38.382722
+              ], 
+              [
+                -82.597113, 
+                38.412881
+              ], 
+              [
+                -82.596281, 
+                38.417681
+              ], 
+              [
+                -82.593673, 
+                38.421809
+              ], 
+              [
+                -82.560664, 
+                38.404338
+              ], 
+              [
+                -82.520178, 
+                38.407582
+              ], 
+              [
+                -82.50667, 
+                38.410092
+              ], 
+              [
+                -82.34064, 
+                38.440948
+              ], 
+              [
+                -82.330335, 
+                38.4445
+              ], 
+              [
+                -82.323999, 
+                38.449268
+              ], 
+              [
+                -82.320223, 
+                38.454516
+              ], 
+              [
+                -82.313935, 
+                38.468084
+              ], 
+              [
+                -82.295571, 
+                38.539783
+              ], 
+              [
+                -82.293271, 
+                38.560283
+              ], 
+              [
+                -82.293871, 
+                38.572683
+              ], 
+              [
+                -82.291271, 
+                38.578983
+              ], 
+              [
+                -82.287102, 
+                38.582588
+              ], 
+              [
+                -82.27427, 
+                38.593683
+              ], 
+              [
+                -82.26207, 
+                38.598183
+              ], 
+              [
+                -82.245969, 
+                38.598483
+              ], 
+              [
+                -82.218967, 
+                38.591683
+              ], 
+              [
+                -82.193824, 
+                38.593096
+              ], 
+              [
+                -82.181967, 
+                38.599384
+              ], 
+              [
+                -82.177267, 
+                38.603784
+              ], 
+              [
+                -82.175167, 
+                38.608484
+              ], 
+              [
+                -82.172066, 
+                38.619284
+              ], 
+              [
+                -82.172066, 
+                38.625984
+              ], 
+              [
+                -82.182467, 
+                38.708782
+              ], 
+              [
+                -82.188268, 
+                38.734082
+              ], 
+              [
+                -82.198882, 
+                38.757725
+              ], 
+              [
+                -82.220449, 
+                38.773739
+              ], 
+              [
+                -82.221566, 
+                38.787187
+              ], 
+              [
+                -82.215759, 
+                38.797462
+              ], 
+              [
+                -82.191172, 
+                38.815137
+              ], 
+              [
+                -82.184428, 
+                38.816529
+              ], 
+              [
+                -82.139279, 
+                38.866407
+              ], 
+              [
+                -82.098762, 
+                38.958288
+              ], 
+              [
+                -82.093165, 
+                38.97098
+              ], 
+              [
+                -82.051563, 
+                38.994378
+              ], 
+              [
+                -82.045663, 
+                39.003778
+              ], 
+              [
+                -82.041563, 
+                39.017878
+              ], 
+              [
+                -82.035963, 
+                39.025478
+              ], 
+              [
+                -82.017562, 
+                39.030078
+              ], 
+              [
+                -82.002261, 
+                39.027878
+              ], 
+              [
+                -81.935619, 
+                38.9895
+              ], 
+              [
+                -81.919783, 
+                38.968494
+              ], 
+              [
+                -81.900595, 
+                38.937671
+              ], 
+              [
+                -81.89847, 
+                38.929603
+              ], 
+              [
+                -81.90091, 
+                38.924338
+              ], 
+              [
+                -81.926671, 
+                38.901311
+              ], 
+              [
+                -81.928352, 
+                38.895371
+              ], 
+              [
+                -81.926967, 
+                38.891602
+              ], 
+              [
+                -81.908645, 
+                38.87846
+              ], 
+              [
+                -81.874857, 
+                38.881174
+              ], 
+              [
+                -81.759995, 
+                38.925828
+              ], 
+              [
+                -81.756131, 
+                38.933545
+              ], 
+              [
+                -81.764253, 
+                39.015279
+              ], 
+              [
+                -81.772854, 
+                39.026179
+              ], 
+              [
+                -81.793304, 
+                39.040353
+              ], 
+              [
+                -81.803355, 
+                39.047678
+              ], 
+              [
+                -81.811655, 
+                39.059578
+              ], 
+              [
+                -81.814155, 
+                39.073478
+              ], 
+              [
+                -81.812355, 
+                39.082078
+              ], 
+              [
+                -81.747253, 
+                39.095378
+              ], 
+              [
+                -81.747253, 
+                39.095379
+              ], 
+              [
+                -81.749689, 
+                39.180742
+              ], 
+              [
+                -81.749853, 
+                39.186489
+              ], 
+              [
+                -81.740061, 
+                39.190652
+              ], 
+              [
+                -81.721551, 
+                39.212448
+              ], 
+              [
+                -81.695724, 
+                39.242859
+              ], 
+              [
+                -81.605816, 
+                39.275851
+              ], 
+              [
+                -81.542346, 
+                39.352874
+              ], 
+              [
+                -81.467744, 
+                39.403774
+              ], 
+              [
+                -81.456143, 
+                39.409274
+              ], 
+              [
+                -81.446543, 
+                39.410374
+              ], 
+              [
+                -81.435642, 
+                39.408474
+              ], 
+              [
+                -81.412706, 
+                39.394618
+              ], 
+              [
+                -81.406689, 
+                39.38809
+              ], 
+              [
+                -81.393794, 
+                39.351706
+              ], 
+              [
+                -81.384556, 
+                39.343449
+              ], 
+              [
+                -81.375961, 
+                39.341697
+              ], 
+              [
+                -81.371271, 
+                39.342062
+              ], 
+              [
+                -81.356911, 
+                39.343178
+              ], 
+              [
+                -81.347567, 
+                39.34577
+              ], 
+              [
+                -81.295373, 
+                39.37529
+              ], 
+              [
+                -81.270716, 
+                39.385914
+              ], 
+              [
+                -81.249088, 
+                39.389992
+              ], 
+              [
+                -81.223581, 
+                39.386062
+              ], 
+              [
+                -81.215617, 
+                39.388602
+              ], 
+              [
+                -81.127696, 
+                39.464879
+              ], 
+              [
+                -81.063587, 
+                39.520497
+              ], 
+              [
+                -81.038691, 
+                39.540464
+              ], 
+              [
+                -81.020055, 
+                39.55541
+              ], 
+              [
+                -80.943782, 
+                39.606926
+              ], 
+              [
+                -80.892208, 
+                39.616756
+              ], 
+              [
+                -80.88036, 
+                39.620706
+              ], 
+              [
+                -80.831871, 
+                39.705655
+              ], 
+              [
+                -80.829764, 
+                39.711839
+              ], 
+              [
+                -80.828618, 
+                39.720848
+              ], 
+              [
+                -80.812342, 
+                39.848845
+              ], 
+              [
+                -80.806179, 
+                39.897306
+              ], 
+              [
+                -80.809619, 
+                39.905626
+              ], 
+              [
+                -80.808722, 
+                39.91257
+              ], 
+              [
+                -80.806018, 
+                39.91713
+              ], 
+              [
+                -80.759455, 
+                39.958233
+              ], 
+              [
+                -80.743166, 
+                39.969113
+              ], 
+              [
+                -80.740126, 
+                39.970793
+              ], 
+              [
+                -80.732051, 
+                40.03324
+              ], 
+              [
+                -80.731504, 
+                40.037472
+              ], 
+              [
+                -80.730904, 
+                40.049172
+              ], 
+              [
+                -80.733104, 
+                40.058772
+              ], 
+              [
+                -80.726504, 
+                40.089072
+              ], 
+              [
+                -80.705482, 
+                40.153047
+              ], 
+              [
+                -80.703052, 
+                40.157231
+              ], 
+              [
+                -80.685391, 
+                40.187642
+              ], 
+              [
+                -80.652098, 
+                40.24497
+              ], 
+              [
+                -80.644598, 
+                40.25127
+              ], 
+              [
+                -80.637198, 
+                40.25507
+              ], 
+              [
+                -80.616696, 
+                40.28027
+              ], 
+              [
+                -80.602895, 
+                40.307069
+              ], 
+              [
+                -80.599895, 
+                40.317669
+              ], 
+              [
+                -80.609313, 
+                40.360468
+              ], 
+              [
+                -80.619196, 
+                40.381768
+              ], 
+              [
+                -80.617346, 
+                40.396004
+              ], 
+              [
+                -80.612295, 
+                40.434867
+              ], 
+              [
+                -80.599194, 
+                40.482566
+              ], 
+              [
+                -80.610259, 
+                40.490962
+              ], 
+              [
+                -80.666917, 
+                40.573664
+              ], 
+              [
+                -80.667957, 
+                40.582496
+              ], 
+              [
+                -80.665892, 
+                40.587728
+              ], 
+              [
+                -80.634355, 
+                40.616095
+              ], 
+              [
+                -80.627171, 
+                40.619936
+              ], 
+              [
+                -80.601494, 
+                40.625387
+              ], 
+              [
+                -80.594065, 
+                40.623664
+              ], 
+              [
+                -80.589041, 
+                40.620128
+              ], 
+              [
+                -80.56072, 
+                40.62368
+              ], 
+              [
+                -80.518991, 
+                40.638801
+              ], 
+              [
+                -80.519039, 
+                40.616391
+              ], 
+              [
+                -80.519086, 
+                40.616385
+              ], 
+              [
+                -80.519086, 
+                40.590161
+              ], 
+              [
+                -80.519055, 
+                40.590173
+              ], 
+              [
+                -80.519057, 
+                40.517922
+              ], 
+              [
+                -80.519054, 
+                40.517922
+              ], 
+              [
+                -80.518692, 
+                40.477365
+              ], 
+              [
+                -80.517998, 
+                40.399644
+              ], 
+              [
+                -80.517991, 
+                40.398868
+              ], 
+              [
+                -80.519056, 
+                40.172771
+              ], 
+              [
+                -80.519056, 
+                40.172744
+              ], 
+              [
+                -80.519104, 
+                40.159672
+              ], 
+              [
+                -80.51896, 
+                40.078089
+              ], 
+              [
+                -80.519008, 
+                40.077001
+              ], 
+              [
+                -80.51912, 
+                40.01641
+              ], 
+              [
+                -80.519207, 
+                39.963381
+              ], 
+              [
+                -80.519218, 
+                39.962424
+              ], 
+              [
+                -80.519217, 
+                39.962199
+              ], 
+              [
+                -80.519203, 
+                39.959394
+              ], 
+              [
+                -80.519175, 
+                39.956648
+              ], 
+              [
+                -80.519115, 
+                39.939188
+              ], 
+              [
+                -80.519248, 
+                39.936967
+              ], 
+              [
+                -80.519342, 
+                39.721403
+              ], 
+              [
+                -80.421388, 
+                39.721189
+              ], 
+              [
+                -80.309457, 
+                39.721264
+              ], 
+              [
+                -80.308651, 
+                39.721283
+              ], 
+              [
+                -79.916266, 
+                39.720792
+              ], 
+              [
+                -79.853131, 
+                39.720713
+              ], 
+              [
+                -79.852904, 
+                39.720713
+              ], 
+              [
+                -79.763774, 
+                39.720776
+              ], 
+              [
+                -79.610623, 
+                39.721245
+              ], 
+              [
+                -79.608223, 
+                39.721154
+              ], 
+              [
+                -79.476662, 
+                39.721078
+              ], 
+              [
+                -79.478866, 
+                39.531689
+              ], 
+              [
+                -79.482354, 
+                39.524682
+              ], 
+              [
+                -79.482648, 
+                39.521364
+              ], 
+              [
+                -79.487651, 
+                39.279933
+              ], 
+              [
+                -79.486737, 
+                39.278149
+              ], 
+              [
+                -79.486179, 
+                39.26497
+              ], 
+              [
+                -79.485874, 
+                39.264905
+              ], 
+              [
+                -79.486873, 
+                39.205961
+              ], 
+              [
+                -79.402911, 
+                39.250106
+              ], 
+              [
+                -79.378687, 
+                39.27192
+              ], 
+              [
+                -79.280039, 
+                39.340076
+              ], 
+              [
+                -79.25688, 
+                39.356077
+              ], 
+              [
+                -79.213192, 
+                39.367897
+              ], 
+              [
+                -79.201676, 
+                39.379726
+              ], 
+              [
+                -79.08445, 
+                39.471356
+              ], 
+              [
+                -79.067072, 
+                39.474658
+              ], 
+              [
+                -79.04244, 
+                39.479339
+              ], 
+              [
+                -79.025681, 
+                39.465539
+              ], 
+              [
+                -78.968996, 
+                39.441543
+              ], 
+              [
+                -78.874744, 
+                39.522611
+              ], 
+              [
+                -78.824788, 
+                39.590233
+              ], 
+              [
+                -78.787461, 
+                39.627492
+              ], 
+              [
+                -78.760497, 
+                39.609984
+              ], 
+              [
+                -78.769029, 
+                39.599871
+              ], 
+              [
+                -78.772048, 
+                39.593833
+              ], 
+              [
+                -78.76749, 
+                39.587487
+              ], 
+              [
+                -78.760196, 
+                39.582154
+              ], 
+              [
+                -78.689455, 
+                39.54577
+              ], 
+              [
+                -78.676219, 
+                39.540622
+              ], 
+              [
+                -78.657324, 
+                39.535087
+              ], 
+              [
+                -78.655984, 
+                39.534695
+              ], 
+              [
+                -78.565929, 
+                39.519444
+              ], 
+              [
+                -78.468639, 
+                39.516789
+              ], 
+              [
+                -78.436939, 
+                39.538959
+              ], 
+              [
+                -78.432033, 
+                39.561053
+              ], 
+              [
+                -78.450207, 
+                39.570889
+              ], 
+              [
+                -78.454376, 
+                39.574319
+              ], 
+              [
+                -78.458456, 
+                39.581158
+              ], 
+              [
+                -78.457187, 
+                39.587379
+              ], 
+              [
+                -78.43025, 
+                39.62329
+              ], 
+              [
+                -78.355218, 
+                39.640576
+              ], 
+              [
+                -78.334044, 
+                39.63577
+              ], 
+              [
+                -78.313033, 
+                39.631001
+              ], 
+              [
+                -78.283039, 
+                39.62047
+              ], 
+              [
+                -78.271122, 
+                39.619642
+              ], 
+              [
+                -78.224337, 
+                39.66327
+              ], 
+              [
+                -78.191107, 
+                39.690262
+              ], 
+              [
+                -78.182759, 
+                39.69511
+              ], 
+              [
+                -78.176625, 
+                39.695967
+              ], 
+              [
+                -78.143478, 
+                39.690412
+              ], 
+              [
+                -78.107834, 
+                39.682137
+              ], 
+              [
+                -78.074595, 
+                39.666686
+              ], 
+              [
+                -78.035992, 
+                39.63572
+              ], 
+              [
+                -78.023427, 
+                39.61986
+              ], 
+              [
+                -78.009985, 
+                39.602893
+              ], 
+              [
+                -77.946442, 
+                39.58491
+              ], 
+              [
+                -77.902649, 
+                39.587796
+              ], 
+              [
+                -77.884536, 
+                39.568174
+              ], 
+              [
+                -77.886135, 
+                39.560432
+              ], 
+              [
+                -77.888945, 
+                39.55595
+              ], 
+              [
+                -77.865423, 
+                39.516472
+              ], 
+              [
+                -77.845105, 
+                39.498285
+              ], 
+              [
+                -77.825411, 
+                39.494036
+              ], 
+              [
+                -77.807821, 
+                39.490241
+              ], 
+              [
+                -77.765442, 
+                39.428574
+              ], 
+              [
+                -77.739204, 
+                39.38573
+              ], 
+              [
+                -77.760435, 
+                39.344171
+              ], 
+              [
+                -77.760586, 
+                39.338864
+              ], 
+              [
+                -77.755789, 
+                39.333899
+              ], 
+              [
+                -77.727379, 
+                39.321666
+              ], 
+              [
+                -77.719029, 
+                39.321125
+              ], 
+              [
+                -77.750267, 
+                39.289284
+              ], 
+              [
+                -77.753357, 
+                39.280331
+              ], 
+              [
+                -77.75306, 
+                39.277971
+              ], 
+              [
+                -77.753105, 
+                39.27734
+              ], 
+              [
+                -77.755193, 
+                39.275191
+              ], 
+              [
+                -77.755698, 
+                39.274575
+              ], 
+              [
+                -77.758412, 
+                39.269197
+              ], 
+              [
+                -77.758733, 
+                39.268114
+              ], 
+              [
+                -77.761217, 
+                39.263721
+              ], 
+              [
+                -77.761768, 
+                39.263031
+              ], 
+              [
+                -77.768, 
+                39.257657
+              ], 
+              [
+                -77.768992, 
+                39.256417
+              ], 
+              [
+                -77.767277, 
+                39.24938
+              ], 
+              [
+                -77.771415, 
+                39.236776
+              ], 
+              [
+                -77.822182, 
+                39.139985
+              ], 
+              [
+                -77.828157, 
+                39.132329
+              ], 
+              [
+                -78.032841, 
+                39.264403
+              ], 
+              [
+                -78.033183, 
+                39.264624
+              ], 
+              [
+                -78.033185, 
+                39.264626
+              ], 
+              [
+                -78.228766, 
+                39.391233
+              ], 
+              [
+                -78.347087, 
+                39.466012
+              ], 
+              [
+                -78.362267, 
+                39.357784
+              ], 
+              [
+                -78.34048, 
+                39.353492
+              ], 
+              [
+                -78.35894, 
+                39.319484
+              ], 
+              [
+                -78.360035, 
+                39.317771
+              ], 
+              [
+                -78.399785, 
+                39.244129
+              ], 
+              [
+                -78.399669, 
+                39.243874
+              ], 
+              [
+                -78.423968, 
+                39.212049
+              ], 
+              [
+                -78.427911, 
+                39.208611
+              ], 
+              [
+                -78.429803, 
+                39.207014
+              ], 
+              [
+                -78.431167, 
+                39.205744
+              ], 
+              [
+                -78.43213, 
+                39.204717
+              ], 
+              [
+                -78.437053, 
+                39.199766
+              ], 
+              [
+                -78.438651, 
+                39.198049
+              ], 
+              [
+                -78.426722, 
+                39.188903
+              ], 
+              [
+                -78.41074, 
+                39.171983
+              ], 
+              [
+                -78.418377, 
+                39.156656
+              ], 
+              [
+                -78.439429, 
+                39.132146
+              ], 
+              [
+                -78.459869, 
+                39.113351
+              ], 
+              [
+                -78.508132, 
+                39.08863
+              ], 
+              [
+                -78.544111, 
+                39.056676
+              ], 
+              [
+                -78.571901, 
+                39.031995
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 20, 
+      "properties": {
+        "CENSUSAREA": 24038.21, 
+        "GEO_ID": "0400000US54", 
+        "ISO": "US-WV", 
+        "LSAD": "", 
+        "NAME": "West Virginia", 
+        "NAME_1": "West Virginia", 
+        "STATE": "WV"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -90.456677, 
+                47.016737
+              ], 
+              [
+                -90.4553, 
+                47.02375
+              ], 
+              [
+                -90.455251, 
+                47.024
+              ], 
+              [
+                -90.456008, 
+                47.032085
+              ], 
+              [
+                -90.45638, 
+                47.036062
+              ], 
+              [
+                -90.457076, 
+                47.043506
+              ], 
+              [
+                -90.457128, 
+                47.044058
+              ], 
+              [
+                -90.455502, 
+                47.051331
+              ], 
+              [
+                -90.455113, 
+                47.053071
+              ], 
+              [
+                -90.455024, 
+                47.05347
+              ], 
+              [
+                -90.449572, 
+                47.064965
+              ], 
+              [
+                -90.449083, 
+                47.065995
+              ], 
+              [
+                -90.449075, 
+                47.066013
+              ], 
+              [
+                -90.449024, 
+                47.066045
+              ], 
+              [
+                -90.448439, 
+                47.066415
+              ], 
+              [
+                -90.441968, 
+                47.070511
+              ], 
+              [
+                -90.438734, 
+                47.072557
+              ], 
+              [
+                -90.437271, 
+                47.073483
+              ], 
+              [
+                -90.435387, 
+                47.073868
+              ], 
+              [
+                -90.434762, 
+                47.073996
+              ], 
+              [
+                -90.434543, 
+                47.07404
+              ], 
+              [
+                -90.42837, 
+                47.075302
+              ], 
+              [
+                -90.427087, 
+                47.075564
+              ], 
+              [
+                -90.425277, 
+                47.075934
+              ], 
+              [
+                -90.417272, 
+                47.07757
+              ], 
+              [
+                -90.400234, 
+                47.077263
+              ], 
+              [
+                -90.398913, 
+                47.077239
+              ], 
+              [
+                -90.395367, 
+                47.077175
+              ], 
+              [
+                -90.39517, 
+                47.077017
+              ], 
+              [
+                -90.39495, 
+                47.076841
+              ], 
+              [
+                -90.393848, 
+                47.075956
+              ], 
+              [
+                -90.39383, 
+                47.075941
+              ], 
+              [
+                -90.393723, 
+                47.074859
+              ], 
+              [
+                -90.393115, 
+                47.068687
+              ], 
+              [
+                -90.393111, 
+                47.068644
+              ], 
+              [
+                -90.393077, 
+                47.068304
+              ], 
+              [
+                -90.393035, 
+                47.067877
+              ], 
+              [
+                -90.393241, 
+                47.066753
+              ], 
+              [
+                -90.393277, 
+                47.066557
+              ], 
+              [
+                -90.393342, 
+                47.066204
+              ], 
+              [
+                -90.393351, 
+                47.066153
+              ], 
+              [
+                -90.393507, 
+                47.065302
+              ], 
+              [
+                -90.394212, 
+                47.061452
+              ], 
+              [
+                -90.394312, 
+                47.060909
+              ], 
+              [
+                -90.395988, 
+                47.056972
+              ], 
+              [
+                -90.396177, 
+                47.056528
+              ], 
+              [
+                -90.396275, 
+                47.056299
+              ], 
+              [
+                -90.400067, 
+                47.047391
+              ], 
+              [
+                -90.400219, 
+                47.047034
+              ], 
+              [
+                -90.400365, 
+                47.046691
+              ], 
+              [
+                -90.400409, 
+                47.046588
+              ], 
+              [
+                -90.400427, 
+                47.046463
+              ], 
+              [
+                -90.403306, 
+                47.026693
+              ], 
+              [
+                -90.403321, 
+                47.02659
+              ], 
+              [
+                -90.403499, 
+                47.025366
+              ], 
+              [
+                -90.403908, 
+                47.024864
+              ], 
+              [
+                -90.405033, 
+                47.023482
+              ], 
+              [
+                -90.409437, 
+                47.018072
+              ], 
+              [
+                -90.411972, 
+                47.014958
+              ], 
+              [
+                -90.412886, 
+                47.013836
+              ], 
+              [
+                -90.413133, 
+                47.013533
+              ], 
+              [
+                -90.413428, 
+                47.01317
+              ], 
+              [
+                -90.425351, 
+                47.007526
+              ], 
+              [
+                -90.42732, 
+                47.006593
+              ], 
+              [
+                -90.428273, 
+                47.006142
+              ], 
+              [
+                -90.428438, 
+                47.006064
+              ], 
+              [
+                -90.429397, 
+                47.00561
+              ], 
+              [
+                -90.429539, 
+                47.005565
+              ], 
+              [
+                -90.448857, 
+                46.999452
+              ], 
+              [
+                -90.453619, 
+                46.997946
+              ], 
+              [
+                -90.457445, 
+                46.996735
+              ], 
+              [
+                -90.464079, 
+                46.994636
+              ], 
+              [
+                -90.464087, 
+                46.994681
+              ], 
+              [
+                -90.465465, 
+                47.002593
+              ], 
+              [
+                -90.465321, 
+                47.002777
+              ], 
+              [
+                -90.457688, 
+                47.012484
+              ], 
+              [
+                -90.457453, 
+                47.012783
+              ], 
+              [
+                -90.457315, 
+                47.013488
+              ], 
+              [
+                -90.457272, 
+                47.013707
+              ], 
+              [
+                -90.456677, 
+                47.016737
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -90.636718, 
+                46.861323
+              ], 
+              [
+                -90.636386, 
+                46.861705
+              ], 
+              [
+                -90.634048, 
+                46.864396
+              ], 
+              [
+                -90.622048, 
+                46.872872
+              ], 
+              [
+                -90.616452, 
+                46.874466
+              ], 
+              [
+                -90.602619, 
+                46.872715
+              ], 
+              [
+                -90.602552, 
+                46.872706
+              ], 
+              [
+                -90.601924, 
+                46.872099
+              ], 
+              [
+                -90.593899, 
+                46.864344
+              ], 
+              [
+                -90.58819, 
+                46.858827
+              ], 
+              [
+                -90.587392, 
+                46.858056
+              ], 
+              [
+                -90.587306, 
+                46.858015
+              ], 
+              [
+                -90.570006, 
+                46.849696
+              ], 
+              [
+                -90.569868, 
+                46.849398
+              ], 
+              [
+                -90.568938, 
+                46.847391
+              ], 
+              [
+                -90.568874, 
+                46.847252
+              ], 
+              [
+                -90.569108, 
+                46.847112
+              ], 
+              [
+                -90.570652, 
+                46.846192
+              ], 
+              [
+                -90.578263, 
+                46.841653
+              ], 
+              [
+                -90.57839, 
+                46.841616
+              ], 
+              [
+                -90.582347, 
+                46.840454
+              ], 
+              [
+                -90.584489, 
+                46.839825
+              ], 
+              [
+                -90.58505, 
+                46.839789
+              ], 
+              [
+                -90.589921, 
+                46.839476
+              ], 
+              [
+                -90.601288, 
+                46.838747
+              ], 
+              [
+                -90.60329, 
+                46.838618
+              ], 
+              [
+                -90.609501, 
+                46.838219
+              ], 
+              [
+                -90.610306, 
+                46.838168
+              ], 
+              [
+                -90.613569, 
+                46.837958
+              ], 
+              [
+                -90.613822, 
+                46.837942
+              ], 
+              [
+                -90.61424, 
+                46.837815
+              ], 
+              [
+                -90.62548, 
+                46.834395
+              ], 
+              [
+                -90.658031, 
+                46.824493
+              ], 
+              [
+                -90.673838, 
+                46.819684
+              ], 
+              [
+                -90.676133, 
+                46.818986
+              ], 
+              [
+                -90.683356, 
+                46.813275
+              ], 
+              [
+                -90.685753, 
+                46.805003
+              ], 
+              [
+                -90.670438, 
+                46.799633
+              ], 
+              [
+                -90.670049, 
+                46.799496
+              ], 
+              [
+                -90.665389, 
+                46.799394
+              ], 
+              [
+                -90.65531, 
+                46.799173
+              ], 
+              [
+                -90.654861, 
+                46.798907
+              ], 
+              [
+                -90.65455, 
+                46.798723
+              ], 
+              [
+                -90.652916, 
+                46.797755
+              ], 
+              [
+                -90.652906, 
+                46.797707
+              ], 
+              [
+                -90.652343, 
+                46.795088
+              ], 
+              [
+                -90.652236, 
+                46.794589
+              ], 
+              [
+                -90.652219, 
+                46.794511
+              ], 
+              [
+                -90.652591, 
+                46.794083
+              ], 
+              [
+                -90.653417, 
+                46.793131
+              ], 
+              [
+                -90.654103, 
+                46.792342
+              ], 
+              [
+                -90.655339, 
+                46.790919
+              ], 
+              [
+                -90.655375, 
+                46.790877
+              ], 
+              [
+                -90.655483, 
+                46.790753
+              ], 
+              [
+                -90.655611, 
+                46.790606
+              ], 
+              [
+                -90.655682, 
+                46.790524
+              ], 
+              [
+                -90.656358, 
+                46.789745
+              ], 
+              [
+                -90.657179, 
+                46.7888
+              ], 
+              [
+                -90.65892, 
+                46.7885
+              ], 
+              [
+                -90.660541, 
+                46.788221
+              ], 
+              [
+                -90.661154, 
+                46.788116
+              ], 
+              [
+                -90.661517, 
+                46.788054
+              ], 
+              [
+                -90.66326, 
+                46.787754
+              ], 
+              [
+                -90.679469, 
+                46.784964
+              ], 
+              [
+                -90.68763, 
+                46.78356
+              ], 
+              [
+                -90.688602, 
+                46.783393
+              ], 
+              [
+                -90.689259, 
+                46.78328
+              ], 
+              [
+                -90.691473, 
+                46.782899
+              ], 
+              [
+                -90.692974, 
+                46.782641
+              ], 
+              [
+                -90.696465, 
+                46.78204
+              ], 
+              [
+                -90.696934, 
+                46.782119
+              ], 
+              [
+                -90.706594, 
+                46.783752
+              ], 
+              [
+                -90.716456, 
+                46.785418
+              ], 
+              [
+                -90.723938, 
+                46.781737
+              ], 
+              [
+                -90.734915, 
+                46.772015
+              ], 
+              [
+                -90.73884, 
+                46.768539
+              ], 
+              [
+                -90.739425, 
+                46.768021
+              ], 
+              [
+                -90.758019, 
+                46.757969
+              ], 
+              [
+                -90.7625, 
+                46.755547
+              ], 
+              [
+                -90.763647, 
+                46.754927
+              ], 
+              [
+                -90.765221, 
+                46.754534
+              ], 
+              [
+                -90.766611, 
+                46.754187
+              ], 
+              [
+                -90.771228, 
+                46.753034
+              ], 
+              [
+                -90.774436, 
+                46.753086
+              ], 
+              [
+                -90.787751, 
+                46.753301
+              ], 
+              [
+                -90.78781, 
+                46.753302
+              ], 
+              [
+                -90.788304, 
+                46.75331
+              ], 
+              [
+                -90.788515, 
+                46.753313
+              ], 
+              [
+                -90.78843, 
+                46.753619
+              ], 
+              [
+                -90.788285, 
+                46.754145
+              ], 
+              [
+                -90.787554, 
+                46.756786
+              ], 
+              [
+                -90.785415, 
+                46.76452
+              ], 
+              [
+                -90.783086, 
+                46.772939
+              ], 
+              [
+                -90.788926, 
+                46.779191
+              ], 
+              [
+                -90.789243, 
+                46.779529
+              ], 
+              [
+                -90.790965, 
+                46.781373
+              ], 
+              [
+                -90.790992, 
+                46.781534
+              ], 
+              [
+                -90.791085, 
+                46.782097
+              ], 
+              [
+                -90.791358, 
+                46.783752
+              ], 
+              [
+                -90.791392, 
+                46.783955
+              ], 
+              [
+                -90.791517, 
+                46.784713
+              ], 
+              [
+                -90.791562, 
+                46.784983
+              ], 
+              [
+                -90.790231, 
+                46.786103
+              ], 
+              [
+                -90.781682, 
+                46.788835
+              ], 
+              [
+                -90.759119, 
+                46.796044
+              ], 
+              [
+                -90.758586, 
+                46.796214
+              ], 
+              [
+                -90.74572, 
+                46.798228
+              ], 
+              [
+                -90.740603, 
+                46.799029
+              ], 
+              [
+                -90.736609, 
+                46.799654
+              ], 
+              [
+                -90.733231, 
+                46.800183
+              ], 
+              [
+                -90.733001, 
+                46.800219
+              ], 
+              [
+                -90.732823, 
+                46.800385
+              ], 
+              [
+                -90.729581, 
+                46.803395
+              ], 
+              [
+                -90.728546, 
+                46.804356
+              ], 
+              [
+                -90.728384, 
+                46.805707
+              ], 
+              [
+                -90.727952, 
+                46.809319
+              ], 
+              [
+                -90.727818, 
+                46.810434
+              ], 
+              [
+                -90.720932, 
+                46.815897
+              ], 
+              [
+                -90.712381, 
+                46.820743
+              ], 
+              [
+                -90.704619, 
+                46.823508
+              ], 
+              [
+                -90.694496, 
+                46.827114
+              ], 
+              [
+                -90.682954, 
+                46.831225
+              ], 
+              [
+                -90.675364, 
+                46.833929
+              ], 
+              [
+                -90.672908, 
+                46.835202
+              ], 
+              [
+                -90.656946, 
+                46.843476
+              ], 
+              [
+                -90.656109, 
+                46.844108
+              ], 
+              [
+                -90.655873, 
+                46.844286
+              ], 
+              [
+                -90.655691, 
+                46.844424
+              ], 
+              [
+                -90.654497, 
+                46.845325
+              ], 
+              [
+                -90.654472, 
+                46.845344
+              ], 
+              [
+                -90.651804, 
+                46.847359
+              ], 
+              [
+                -90.651231, 
+                46.847792
+              ], 
+              [
+                -90.650914, 
+                46.848031
+              ], 
+              [
+                -90.647486, 
+                46.85062
+              ], 
+              [
+                -90.646982, 
+                46.851001
+              ], 
+              [
+                -90.643218, 
+                46.853844
+              ], 
+              [
+                -90.637885, 
+                46.859981
+              ], 
+              [
+                -90.637091, 
+                46.860895
+              ], 
+              [
+                -90.636718, 
+                46.861323
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -90.579568, 
+                46.91823
+              ], 
+              [
+                -90.592933, 
+                46.915558
+              ], 
+              [
+                -90.623547, 
+                46.909438
+              ], 
+              [
+                -90.624635, 
+                46.909221
+              ], 
+              [
+                -90.625685, 
+                46.909011
+              ], 
+              [
+                -90.637124, 
+                46.906724
+              ], 
+              [
+                -90.64412, 
+                46.908373
+              ], 
+              [
+                -90.644144, 
+                46.908379
+              ], 
+              [
+                -90.644218, 
+                46.908455
+              ], 
+              [
+                -90.654796, 
+                46.919249
+              ], 
+              [
+                -90.654805, 
+                46.919259
+              ], 
+              [
+                -90.654797, 
+                46.919276
+              ], 
+              [
+                -90.651834, 
+                46.925267
+              ], 
+              [
+                -90.651043, 
+                46.926074
+              ], 
+              [
+                -90.646351, 
+                46.93086
+              ], 
+              [
+                -90.64534, 
+                46.931893
+              ], 
+              [
+                -90.64479, 
+                46.932453
+              ], 
+              [
+                -90.643966, 
+                46.933294
+              ], 
+              [
+                -90.643328, 
+                46.933944
+              ], 
+              [
+                -90.634507, 
+                46.942944
+              ], 
+              [
+                -90.633915, 
+                46.943113
+              ], 
+              [
+                -90.601876, 
+                46.952251
+              ], 
+              [
+                -90.601153, 
+                46.952457
+              ], 
+              [
+                -90.572383, 
+                46.958835
+              ], 
+              [
+                -90.530597, 
+                46.968099
+              ], 
+              [
+                -90.528804, 
+                46.968497
+              ], 
+              [
+                -90.528182, 
+                46.968396
+              ], 
+              [
+                -90.524874, 
+                46.96786
+              ], 
+              [
+                -90.523298, 
+                46.967604
+              ], 
+              [
+                -90.521791, 
+                46.966804
+              ], 
+              [
+                -90.514782, 
+                46.963084
+              ], 
+              [
+                -90.514616, 
+                46.962996
+              ], 
+              [
+                -90.513328, 
+                46.962312
+              ], 
+              [
+                -90.512884, 
+                46.962076
+              ], 
+              [
+                -90.512211, 
+                46.961719
+              ], 
+              [
+                -90.511623, 
+                46.961407
+              ], 
+              [
+                -90.50988, 
+                46.959108
+              ], 
+              [
+                -90.509372, 
+                46.958438
+              ], 
+              [
+                -90.508157, 
+                46.956836
+              ], 
+              [
+                -90.511124, 
+                46.952885
+              ], 
+              [
+                -90.524018, 
+                46.935714
+              ], 
+              [
+                -90.524056, 
+                46.935664
+              ], 
+              [
+                -90.532652, 
+                46.932489
+              ], 
+              [
+                -90.535368, 
+                46.931486
+              ], 
+              [
+                -90.539947, 
+                46.92785
+              ], 
+              [
+                -90.543583, 
+                46.923002
+              ], 
+              [
+                -90.543852, 
+                46.918289
+              ], 
+              [
+                -90.545105, 
+                46.917287
+              ], 
+              [
+                -90.545872, 
+                46.916673
+              ], 
+              [
+                -90.549104, 
+                46.915461
+              ], 
+              [
+                -90.550371, 
+                46.915829
+              ], 
+              [
+                -90.55328, 
+                46.916674
+              ], 
+              [
+                -90.557319, 
+                46.918693
+              ], 
+              [
+                -90.569169, 
+                46.920309
+              ], 
+              [
+                -90.579568, 
+                46.91823
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -87.500105, 
+                45.061117
+              ], 
+              [
+                -87.498964, 
+                45.061231
+              ], 
+              [
+                -87.497254, 
+                45.061278
+              ], 
+              [
+                -87.496415, 
+                45.061072
+              ], 
+              [
+                -87.495479, 
+                45.060661
+              ], 
+              [
+                -87.494543, 
+                45.060044
+              ], 
+              [
+                -87.493381, 
+                45.059107
+              ], 
+              [
+                -87.492864, 
+                45.058376
+              ], 
+              [
+                -87.49285, 
+                45.058325
+              ], 
+              [
+                -87.492702, 
+                45.057805
+              ], 
+              [
+                -87.492691, 
+                45.057799
+              ], 
+              [
+                -87.492573, 
+                45.057736
+              ], 
+              [
+                -87.492563, 
+                45.057653
+              ], 
+              [
+                -87.49254, 
+                45.057462
+              ], 
+              [
+                -87.492516, 
+                45.057419
+              ], 
+              [
+                -87.492411, 
+                45.057233
+              ], 
+              [
+                -87.492314, 
+                45.056936
+              ], 
+              [
+                -87.492023, 
+                45.056502
+              ], 
+              [
+                -87.491765, 
+                45.056273
+              ], 
+              [
+                -87.491636, 
+                45.056227
+              ], 
+              [
+                -87.491507, 
+                45.05609
+              ], 
+              [
+                -87.491345, 
+                45.056022
+              ], 
+              [
+                -87.490216, 
+                45.055222
+              ], 
+              [
+                -87.490151, 
+                45.055039
+              ], 
+              [
+                -87.490189, 
+                45.055017
+              ], 
+              [
+                -87.490312, 
+                45.054948
+              ], 
+              [
+                -87.490925, 
+                45.055039
+              ], 
+              [
+                -87.492668, 
+                45.055792
+              ], 
+              [
+                -87.494475, 
+                45.056523
+              ], 
+              [
+                -87.498379, 
+                45.057733
+              ], 
+              [
+                -87.49867, 
+                45.057779
+              ], 
+              [
+                -87.498863, 
+                45.057847
+              ], 
+              [
+                -87.500105, 
+                45.058167
+              ], 
+              [
+                -87.501572, 
+                45.058602
+              ], 
+              [
+                -87.504281, 
+                45.059198
+              ], 
+              [
+                -87.504967, 
+                45.059287
+              ], 
+              [
+                -87.506055, 
+                45.059428
+              ], 
+              [
+                -87.506086, 
+                45.059461
+              ], 
+              [
+                -87.506184, 
+                45.059565
+              ], 
+              [
+                -87.506109, 
+                45.059644
+              ], 
+              [
+                -87.506054, 
+                45.059702
+              ], 
+              [
+                -87.504488, 
+                45.060024
+              ], 
+              [
+                -87.50428, 
+                45.060067
+              ], 
+              [
+                -87.503602, 
+                45.060272
+              ], 
+              [
+                -87.50244, 
+                45.060706
+              ], 
+              [
+                -87.501802, 
+                45.060841
+              ], 
+              [
+                -87.500603, 
+                45.061094
+              ], 
+              [
+                -87.500105, 
+                45.061117
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -86.945964, 
+                45.407673
+              ], 
+              [
+                -86.943041, 
+                45.41525
+              ], 
+              [
+                -86.942901, 
+                45.415392
+              ], 
+              [
+                -86.941237, 
+                45.417075
+              ], 
+              [
+                -86.937393, 
+                45.420966
+              ], 
+              [
+                -86.936224, 
+                45.421035
+              ], 
+              [
+                -86.934724, 
+                45.421123
+              ], 
+              [
+                -86.934276, 
+                45.421149
+              ], 
+              [
+                -86.934091, 
+                45.420972
+              ], 
+              [
+                -86.930511, 
+                45.417536
+              ], 
+              [
+                -86.929028, 
+                45.41377
+              ], 
+              [
+                -86.928246, 
+                45.411784
+              ], 
+              [
+                -86.928045, 
+                45.411273
+              ], 
+              [
+                -86.927768, 
+                45.411183
+              ], 
+              [
+                -86.917686, 
+                45.40789
+              ], 
+              [
+                -86.914004, 
+                45.408052
+              ], 
+              [
+                -86.909743, 
+                45.408239
+              ], 
+              [
+                -86.902739, 
+                45.408547
+              ], 
+              [
+                -86.898049, 
+                45.408753
+              ], 
+              [
+                -86.892893, 
+                45.40898
+              ], 
+              [
+                -86.883364, 
+                45.412076
+              ], 
+              [
+                -86.880629, 
+                45.412965
+              ], 
+              [
+                -86.877502, 
+                45.413981
+              ], 
+              [
+                -86.865002, 
+                45.412489
+              ], 
+              [
+                -86.862174, 
+                45.412151
+              ], 
+              [
+                -86.861472, 
+                45.412067
+              ], 
+              [
+                -86.861317, 
+                45.411946
+              ], 
+              [
+                -86.859922, 
+                45.410853
+              ], 
+              [
+                -86.855993, 
+                45.407777
+              ], 
+              [
+                -86.853145, 
+                45.405547
+              ], 
+              [
+                -86.853082, 
+                45.405562
+              ], 
+              [
+                -86.830353, 
+                45.410852
+              ], 
+              [
+                -86.830331, 
+                45.410955
+              ], 
+              [
+                -86.829741, 
+                45.413705
+              ], 
+              [
+                -86.829352, 
+                45.415516
+              ], 
+              [
+                -86.829143, 
+                45.41649
+              ], 
+              [
+                -86.829905, 
+                45.420623
+              ], 
+              [
+                -86.830123, 
+                45.421805
+              ], 
+              [
+                -86.830175, 
+                45.422092
+              ], 
+              [
+                -86.8309, 
+                45.426023
+              ], 
+              [
+                -86.830755, 
+                45.426186
+              ], 
+              [
+                -86.828731, 
+                45.428461
+              ], 
+              [
+                -86.828661, 
+                45.428539
+              ], 
+              [
+                -86.828071, 
+                45.428459
+              ], 
+              [
+                -86.82177, 
+                45.427602
+              ], 
+              [
+                -86.817069, 
+                45.426963
+              ], 
+              [
+                -86.816741, 
+                45.42676
+              ], 
+              [
+                -86.81551, 
+                45.425998
+              ], 
+              [
+                -86.810055, 
+                45.422619
+              ], 
+              [
+                -86.80991, 
+                45.422283
+              ], 
+              [
+                -86.805978, 
+                45.413159
+              ], 
+              [
+                -86.805868, 
+                45.412903
+              ], 
+              [
+                -86.805843, 
+                45.412592
+              ], 
+              [
+                -86.805767, 
+                45.411661
+              ], 
+              [
+                -86.805652, 
+                45.410247
+              ], 
+              [
+                -86.805415, 
+                45.407324
+              ], 
+              [
+                -86.808303, 
+                45.406067
+              ], 
+              [
+                -86.808658, 
+                45.406143
+              ], 
+              [
+                -86.814956, 
+                45.407483
+              ], 
+              [
+                -86.815881, 
+                45.40768
+              ], 
+              [
+                -86.817148, 
+                45.40795
+              ], 
+              [
+                -86.818073, 
+                45.408147
+              ], 
+              [
+                -86.81954, 
+                45.407679
+              ], 
+              [
+                -86.822083, 
+                45.406868
+              ], 
+              [
+                -86.824383, 
+                45.406135
+              ], 
+              [
+                -86.82473, 
+                45.405798
+              ], 
+              [
+                -86.837482, 
+                45.393432
+              ], 
+              [
+                -86.841432, 
+                45.389601
+              ], 
+              [
+                -86.853103, 
+                45.370861
+              ], 
+              [
+                -86.853182, 
+                45.370816
+              ], 
+              [
+                -86.857308, 
+                45.36846
+              ], 
+              [
+                -86.858384, 
+                45.367846
+              ], 
+              [
+                -86.863367, 
+                45.365
+              ], 
+              [
+                -86.863563, 
+                45.364888
+              ], 
+              [
+                -86.8636, 
+                45.364783
+              ], 
+              [
+                -86.863694, 
+                45.364518
+              ], 
+              [
+                -86.863719, 
+                45.364446
+              ], 
+              [
+                -86.864314, 
+                45.362764
+              ], 
+              [
+                -86.867743, 
+                45.353065
+              ], 
+              [
+                -86.86771, 
+                45.35289
+              ], 
+              [
+                -86.866244, 
+                45.344992
+              ], 
+              [
+                -86.866126, 
+                45.344356
+              ], 
+              [
+                -86.865528, 
+                45.341136
+              ], 
+              [
+                -86.865499, 
+                45.340981
+              ], 
+              [
+                -86.865634, 
+                45.340686
+              ], 
+              [
+                -86.866054, 
+                45.339765
+              ], 
+              [
+                -86.869031, 
+                45.333244
+              ], 
+              [
+                -86.869041, 
+                45.333223
+              ], 
+              [
+                -86.86951, 
+                45.333041
+              ], 
+              [
+                -86.872296, 
+                45.331962
+              ], 
+              [
+                -86.874685, 
+                45.331037
+              ], 
+              [
+                -86.874761, 
+                45.331008
+              ], 
+              [
+                -86.875117, 
+                45.33087
+              ], 
+              [
+                -86.879361, 
+                45.331335
+              ], 
+              [
+                -86.880572, 
+                45.331467
+              ], 
+              [
+                -86.887802, 
+                45.332259
+              ], 
+              [
+                -86.895055, 
+                45.329035
+              ], 
+              [
+                -86.899488, 
+                45.322588
+              ], 
+              [
+                -86.896667, 
+                45.307275
+              ], 
+              [
+                -86.896922, 
+                45.298521
+              ], 
+              [
+                -86.896928, 
+                45.2983
+              ], 
+              [
+                -86.899891, 
+                45.295185
+              ], 
+              [
+                -86.900636, 
+                45.295431
+              ], 
+              [
+                -86.901602, 
+                45.29575
+              ], 
+              [
+                -86.904362, 
+                45.296662
+              ], 
+              [
+                -86.904898, 
+                45.296839
+              ], 
+              [
+                -86.913995, 
+                45.31211
+              ], 
+              [
+                -86.925681, 
+                45.3242
+              ], 
+              [
+                -86.937368, 
+                45.333065
+              ], 
+              [
+                -86.940715, 
+                45.333762
+              ], 
+              [
+                -86.94107, 
+                45.333836
+              ], 
+              [
+                -86.946796, 
+                45.335027
+              ], 
+              [
+                -86.946943, 
+                45.335058
+              ], 
+              [
+                -86.948087, 
+                45.335296
+              ], 
+              [
+                -86.95155, 
+                45.338298
+              ], 
+              [
+                -86.95499, 
+                45.34128
+              ], 
+              [
+                -86.955456, 
+                45.341684
+              ], 
+              [
+                -86.955577, 
+                45.341788
+              ], 
+              [
+                -86.955691, 
+                45.341888
+              ], 
+              [
+                -86.956054, 
+                45.342202
+              ], 
+              [
+                -86.956129, 
+                45.342267
+              ], 
+              [
+                -86.95614, 
+                45.343785
+              ], 
+              [
+                -86.956192, 
+                45.351179
+              ], 
+              [
+                -86.956198, 
+                45.352006
+              ], 
+              [
+                -86.954435, 
+                45.353706
+              ], 
+              [
+                -86.953389, 
+                45.354715
+              ], 
+              [
+                -86.95336, 
+                45.35472
+              ], 
+              [
+                -86.948272, 
+                45.355682
+              ], 
+              [
+                -86.946297, 
+                45.35869
+              ], 
+              [
+                -86.946475, 
+                45.359826
+              ], 
+              [
+                -86.946503, 
+                45.360004
+              ], 
+              [
+                -86.946791, 
+                45.361845
+              ], 
+              [
+                -86.947142, 
+                45.364085
+              ], 
+              [
+                -86.94751, 
+                45.366434
+              ], 
+              [
+                -86.947604, 
+                45.366645
+              ], 
+              [
+                -86.947684, 
+                45.366825
+              ], 
+              [
+                -86.948731, 
+                45.369178
+              ], 
+              [
+                -86.948743, 
+                45.369205
+              ], 
+              [
+                -86.948803, 
+                45.369338
+              ], 
+              [
+                -86.95497, 
+                45.383194
+              ], 
+              [
+                -86.955204, 
+                45.383721
+              ], 
+              [
+                -86.954329, 
+                45.385989
+              ], 
+              [
+                -86.953773, 
+                45.38743
+              ], 
+              [
+                -86.951866, 
+                45.392373
+              ], 
+              [
+                -86.951176, 
+                45.394162
+              ], 
+              [
+                -86.947346, 
+                45.40409
+              ], 
+              [
+                -86.947074, 
+                45.404796
+              ], 
+              [
+                -86.946837, 
+                45.40541
+              ], 
+              [
+                -86.945964, 
+                45.407673
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -87.76262, 
+                44.965796
+              ], 
+              [
+                -87.7627, 
+                44.965786
+              ], 
+              [
+                -87.762846, 
+                44.965768
+              ], 
+              [
+                -87.766115, 
+                44.965351
+              ], 
+              [
+                -87.766872, 
+                44.965254
+              ], 
+              [
+                -87.781298, 
+                44.961738
+              ], 
+              [
+                -87.781464, 
+                44.961697
+              ], 
+              [
+                -87.788987, 
+                44.959863
+              ], 
+              [
+                -87.789934, 
+                44.959633
+              ], 
+              [
+                -87.791372, 
+                44.959282
+              ], 
+              [
+                -87.791987, 
+                44.959132
+              ], 
+              [
+                -87.792325, 
+                44.95905
+              ], 
+              [
+                -87.812594, 
+                44.954109
+              ], 
+              [
+                -87.812989, 
+                44.954013
+              ], 
+              [
+                -87.813276, 
+                44.953885
+              ], 
+              [
+                -87.813866, 
+                44.953623
+              ], 
+              [
+                -87.815134, 
+                44.95306
+              ], 
+              [
+                -87.816151, 
+                44.952608
+              ], 
+              [
+                -87.817285, 
+                44.952104
+              ], 
+              [
+                -87.817551, 
+                44.951986
+              ], 
+              [
+                -87.817713, 
+                44.951914
+              ], 
+              [
+                -87.817912, 
+                44.951826
+              ], 
+              [
+                -87.818113, 
+                44.951736
+              ], 
+              [
+                -87.819313, 
+                44.951203
+              ], 
+              [
+                -87.819369, 
+                44.951178
+              ], 
+              [
+                -87.819525, 
+                44.951109
+              ], 
+              [
+                -87.820281, 
+                44.950358
+              ], 
+              [
+                -87.820848, 
+                44.949793
+              ], 
+              [
+                -87.82105, 
+                44.949593
+              ], 
+              [
+                -87.821485, 
+                44.949161
+              ], 
+              [
+                -87.821983, 
+                44.948665
+              ], 
+              [
+                -87.822192, 
+                44.948457
+              ], 
+              [
+                -87.837647, 
+                44.933091
+              ], 
+              [
+                -87.839028, 
+                44.931718
+              ], 
+              [
+                -87.843433, 
+                44.924355
+              ], 
+              [
+                -87.844299, 
+                44.918524
+              ], 
+              [
+                -87.842844, 
+                44.912586
+              ], 
+              [
+                -87.842719, 
+                44.912077
+              ], 
+              [
+                -87.84264, 
+                44.911916
+              ], 
+              [
+                -87.842375, 
+                44.911371
+              ], 
+              [
+                -87.840382, 
+                44.907289
+              ], 
+              [
+                -87.839561, 
+                44.905607
+              ], 
+              [
+                -87.837017, 
+                44.902509
+              ], 
+              [
+                -87.836743, 
+                44.902177
+              ], 
+              [
+                -87.836082, 
+                44.901371
+              ], 
+              [
+                -87.834275, 
+                44.899172
+              ], 
+              [
+                -87.833731, 
+                44.89851
+              ], 
+              [
+                -87.833521, 
+                44.898254
+              ], 
+              [
+                -87.832137, 
+                44.896569
+              ], 
+              [
+                -87.827751, 
+                44.891229
+              ], 
+              [
+                -87.832764, 
+                44.880939
+              ], 
+              [
+                -87.835497, 
+                44.877544
+              ], 
+              [
+                -87.836916, 
+                44.87578
+              ], 
+              [
+                -87.838359, 
+                44.873987
+              ], 
+              [
+                -87.847616, 
+                44.870692
+              ], 
+              [
+                -87.848324, 
+                44.87044
+              ], 
+              [
+                -87.84914, 
+                44.86942
+              ], 
+              [
+                -87.852789, 
+                44.86486
+              ], 
+              [
+                -87.854184, 
+                44.859633
+              ], 
+              [
+                -87.854681, 
+                44.857771
+              ], 
+              [
+                -87.854938, 
+                44.857386
+              ], 
+              [
+                -87.855962, 
+                44.855854
+              ], 
+              [
+                -87.857121, 
+                44.85412
+              ], 
+              [
+                -87.857469, 
+                44.853599
+              ], 
+              [
+                -87.865898, 
+                44.840988
+              ], 
+              [
+                -87.866237, 
+                44.840481
+              ], 
+              [
+                -87.871679, 
+                44.839816
+              ], 
+              [
+                -87.878218, 
+                44.839016
+              ], 
+              [
+                -87.885709, 
+                44.835208
+              ], 
+              [
+                -87.89257, 
+                44.83172
+              ], 
+              [
+                -87.895812, 
+                44.830072
+              ], 
+              [
+                -87.897931, 
+                44.828995
+              ], 
+              [
+                -87.899787, 
+                44.828051
+              ], 
+              [
+                -87.901137, 
+                44.827365
+              ], 
+              [
+                -87.901814, 
+                44.825616
+              ], 
+              [
+                -87.902166, 
+                44.824708
+              ], 
+              [
+                -87.903395, 
+                44.821534
+              ], 
+              [
+                -87.903844, 
+                44.820376
+              ], 
+              [
+                -87.904281, 
+                44.819246
+              ], 
+              [
+                -87.904484, 
+                44.818723
+              ], 
+              [
+                -87.905444, 
+                44.816997
+              ], 
+              [
+                -87.906582, 
+                44.814949
+              ], 
+              [
+                -87.911366, 
+                44.806345
+              ], 
+              [
+                -87.918874, 
+                44.79284
+              ], 
+              [
+                -87.923588, 
+                44.784361
+              ], 
+              [
+                -87.925845, 
+                44.780301
+              ], 
+              [
+                -87.926816, 
+                44.778555
+              ], 
+              [
+                -87.941453, 
+                44.75608
+              ], 
+              [
+                -87.95156, 
+                44.753107
+              ], 
+              [
+                -87.956849, 
+                44.749272
+              ], 
+              [
+                -87.964714, 
+                44.74357
+              ], 
+              [
+                -87.972654, 
+                44.733687
+              ], 
+              [
+                -87.983065, 
+                44.72073
+              ], 
+              [
+                -87.983494, 
+                44.720196
+              ], 
+              [
+                -87.983941, 
+                44.717781
+              ], 
+              [
+                -87.98395, 
+                44.717735
+              ], 
+              [
+                -87.984094, 
+                44.716955
+              ], 
+              [
+                -87.984247, 
+                44.716129
+              ], 
+              [
+                -87.984401, 
+                44.715298
+              ], 
+              [
+                -87.986055, 
+                44.70636
+              ], 
+              [
+                -87.986134, 
+                44.705936
+              ], 
+              [
+                -87.987296, 
+                44.699657
+              ], 
+              [
+                -87.987417, 
+                44.699005
+              ], 
+              [
+                -87.988667, 
+                44.692255
+              ], 
+              [
+                -87.98925, 
+                44.689107
+              ], 
+              [
+                -87.989344, 
+                44.688598
+              ], 
+              [
+                -87.989376, 
+                44.688424
+              ], 
+              [
+                -87.98947, 
+                44.687918
+              ], 
+              [
+                -87.989717, 
+                44.686582
+              ], 
+              [
+                -87.989912, 
+                44.677587
+              ], 
+              [
+                -87.990081, 
+                44.669791
+              ], 
+              [
+                -87.99011, 
+                44.668455
+              ], 
+              [
+                -87.998964, 
+                44.665187
+              ], 
+              [
+                -88.000321, 
+                44.664686
+              ], 
+              [
+                -88.002085, 
+                44.664035
+              ], 
+              [
+                -88.002254, 
+                44.663442
+              ], 
+              [
+                -88.002677, 
+                44.661956
+              ], 
+              [
+                -88.00334, 
+                44.65963
+              ], 
+              [
+                -88.007287, 
+                44.645779
+              ], 
+              [
+                -88.009766, 
+                44.637081
+              ], 
+              [
+                -88.009523, 
+                44.631711
+              ], 
+              [
+                -88.009486, 
+                44.630897
+              ], 
+              [
+                -88.009472, 
+                44.630594
+              ], 
+              [
+                -88.009463, 
+                44.630398
+              ], 
+              [
+                -88.008717, 
+                44.628932
+              ], 
+              [
+                -88.007489, 
+                44.626521
+              ], 
+              [
+                -88.007158, 
+                44.625871
+              ], 
+              [
+                -88.007013, 
+                44.625586
+              ], 
+              [
+                -88.006871, 
+                44.625306
+              ], 
+              [
+                -88.006409, 
+                44.624399
+              ], 
+              [
+                -88.001172, 
+                44.614112
+              ], 
+              [
+                -87.998836, 
+                44.609523
+              ], 
+              [
+                -87.998716, 
+                44.609288
+              ], 
+              [
+                -88.001943, 
+                44.603909
+              ], 
+              [
+                -88.012395, 
+                44.602438
+              ], 
+              [
+                -88.014735, 
+                44.5964
+              ], 
+              [
+                -88.015092, 
+                44.595478
+              ], 
+              [
+                -88.016373, 
+                44.592172
+              ], 
+              [
+                -88.016404, 
+                44.592092
+              ], 
+              [
+                -88.019465, 
+                44.588344
+              ], 
+              [
+                -88.022853, 
+                44.584196
+              ], 
+              [
+                -88.027103, 
+                44.578992
+              ], 
+              [
+                -88.028148, 
+                44.578736
+              ], 
+              [
+                -88.034535, 
+                44.577175
+              ], 
+              [
+                -88.036103, 
+                44.576792
+              ], 
+              [
+                -88.036104, 
+                44.576791
+              ], 
+              [
+                -88.039092, 
+                44.574324
+              ], 
+              [
+                -88.039489, 
+                44.573995
+              ], 
+              [
+                -88.041162, 
+                44.572614
+              ], 
+              [
+                -88.041202, 
+                44.572581
+              ], 
+              [
+                -88.041358, 
+                44.571809
+              ], 
+              [
+                -88.041485, 
+                44.571183
+              ], 
+              [
+                -88.041561, 
+                44.570804
+              ], 
+              [
+                -88.041659, 
+                44.57032
+              ], 
+              [
+                -88.041775, 
+                44.569746
+              ], 
+              [
+                -88.042261, 
+                44.567344
+              ], 
+              [
+                -88.042414, 
+                44.566589
+              ], 
+              [
+                -88.037178, 
+                44.562705
+              ], 
+              [
+                -88.020707, 
+                44.550484
+              ], 
+              [
+                -88.016709, 
+                44.547518
+              ], 
+              [
+                -88.005518, 
+                44.539216
+              ], 
+              [
+                -88.000099, 
+                44.537827
+              ], 
+              [
+                -87.999002, 
+                44.537546
+              ], 
+              [
+                -87.998536, 
+                44.537426
+              ], 
+              [
+                -87.990985, 
+                44.535491
+              ], 
+              [
+                -87.990468, 
+                44.535358
+              ], 
+              [
+                -87.986059, 
+                44.534228
+              ], 
+              [
+                -87.982821, 
+                44.533398
+              ], 
+              [
+                -87.977901, 
+                44.532137
+              ], 
+              [
+                -87.970702, 
+                44.530292
+              ], 
+              [
+                -87.943801, 
+                44.529693
+              ], 
+              [
+                -87.939972, 
+                44.531323
+              ], 
+              [
+                -87.935707, 
+                44.533138
+              ], 
+              [
+                -87.929001, 
+                44.535993
+              ], 
+              [
+                -87.924044, 
+                44.540991
+              ], 
+              [
+                -87.917467, 
+                44.547622
+              ], 
+              [
+                -87.917, 
+                44.548093
+              ], 
+              [
+                -87.915846, 
+                44.549612
+              ], 
+              [
+                -87.901206, 
+                44.568887
+              ], 
+              [
+                -87.901178, 
+                44.568924
+              ], 
+              [
+                -87.901177, 
+                44.568925
+              ], 
+              [
+                -87.900668, 
+                44.570084
+              ], 
+              [
+                -87.899368, 
+                44.573043
+              ], 
+              [
+                -87.898907, 
+                44.574091
+              ], 
+              [
+                -87.898888, 
+                44.574135
+              ], 
+              [
+                -87.899183, 
+                44.574576
+              ], 
+              [
+                -87.900198, 
+                44.576095
+              ], 
+              [
+                -87.900634, 
+                44.576747
+              ], 
+              [
+                -87.901061, 
+                44.577386
+              ], 
+              [
+                -87.901236, 
+                44.577648
+              ], 
+              [
+                -87.903689, 
+                44.581317
+              ], 
+              [
+                -87.902319, 
+                44.583079
+              ], 
+              [
+                -87.901179, 
+                44.584545
+              ], 
+              [
+                -87.896412, 
+                44.58678
+              ], 
+              [
+                -87.894356, 
+                44.587745
+              ], 
+              [
+                -87.891727, 
+                44.588977
+              ], 
+              [
+                -87.891717, 
+                44.588982
+              ], 
+              [
+                -87.890868, 
+                44.589647
+              ], 
+              [
+                -87.88741, 
+                44.592356
+              ], 
+              [
+                -87.867941, 
+                44.607606
+              ], 
+              [
+                -87.866884, 
+                44.608434
+              ], 
+              [
+                -87.842164, 
+                44.618826
+              ], 
+              [
+                -87.837416, 
+                44.620822
+              ], 
+              [
+                -87.836101, 
+                44.621375
+              ], 
+              [
+                -87.830848, 
+                44.623583
+              ], 
+              [
+                -87.829229, 
+                44.624521
+              ], 
+              [
+                -87.823444, 
+                44.62787
+              ], 
+              [
+                -87.820083, 
+                44.629816
+              ], 
+              [
+                -87.809076, 
+                44.636189
+              ], 
+              [
+                -87.808819, 
+                44.636338
+              ], 
+              [
+                -87.808366, 
+                44.636378
+              ], 
+              [
+                -87.78824, 
+                44.638137
+              ], 
+              [
+                -87.77516, 
+                44.639281
+              ], 
+              [
+                -87.765774, 
+                44.642023
+              ], 
+              [
+                -87.762912, 
+                44.64411
+              ], 
+              [
+                -87.762376, 
+                44.644501
+              ], 
+              [
+                -87.756048, 
+                44.649117
+              ], 
+              [
+                -87.756031, 
+                44.649129
+              ], 
+              [
+                -87.750899, 
+                44.656192
+              ], 
+              [
+                -87.74909, 
+                44.664131
+              ], 
+              [
+                -87.748409, 
+                44.667122
+              ], 
+              [
+                -87.736058, 
+                44.677025
+              ], 
+              [
+                -87.733701, 
+                44.678916
+              ], 
+              [
+                -87.729836, 
+                44.682015
+              ], 
+              [
+                -87.71978, 
+                44.693246
+              ], 
+              [
+                -87.718413, 
+                44.707765
+              ], 
+              [
+                -87.718409, 
+                44.707811
+              ], 
+              [
+                -87.718427, 
+                44.70787
+              ], 
+              [
+                -87.720248, 
+                44.713833
+              ], 
+              [
+                -87.720599, 
+                44.714984
+              ], 
+              [
+                -87.721816, 
+                44.718969
+              ], 
+              [
+                -87.721252, 
+                44.722361
+              ], 
+              [
+                -87.721059, 
+                44.723522
+              ], 
+              [
+                -87.720889, 
+                44.724548
+              ], 
+              [
+                -87.720312, 
+                44.725073
+              ], 
+              [
+                -87.714401, 
+                44.730449
+              ], 
+              [
+                -87.705852, 
+                44.738225
+              ], 
+              [
+                -87.705733, 
+                44.738364
+              ], 
+              [
+                -87.704653, 
+                44.73963
+              ], 
+              [
+                -87.703557, 
+                44.740914
+              ], 
+              [
+                -87.701022, 
+                44.743882
+              ], 
+              [
+                -87.700778, 
+                44.744169
+              ], 
+              [
+                -87.700539, 
+                44.744448
+              ], 
+              [
+                -87.698653, 
+                44.746657
+              ], 
+              [
+                -87.698584, 
+                44.746738
+              ], 
+              [
+                -87.698246, 
+                44.747133
+              ], 
+              [
+                -87.698167, 
+                44.747226
+              ], 
+              [
+                -87.688207, 
+                44.758892
+              ], 
+              [
+                -87.687497, 
+                44.759567
+              ], 
+              [
+                -87.679709, 
+                44.766973
+              ], 
+              [
+                -87.678368, 
+                44.768247
+              ], 
+              [
+                -87.677995, 
+                44.768602
+              ], 
+              [
+                -87.662056, 
+                44.783758
+              ], 
+              [
+                -87.647764, 
+                44.797347
+              ], 
+              [
+                -87.6463, 
+                44.798739
+              ], 
+              [
+                -87.645229, 
+                44.800466
+              ], 
+              [
+                -87.644646, 
+                44.801407
+              ], 
+              [
+                -87.644637, 
+                44.801423
+              ], 
+              [
+                -87.644545, 
+                44.801571
+              ], 
+              [
+                -87.637104, 
+                44.813575
+              ], 
+              [
+                -87.635416, 
+                44.815124
+              ], 
+              [
+                -87.635265, 
+                44.815263
+              ], 
+              [
+                -87.634476, 
+                44.815986
+              ], 
+              [
+                -87.63439, 
+                44.816065
+              ], 
+              [
+                -87.634381, 
+                44.816073
+              ], 
+              [
+                -87.634059, 
+                44.816369
+              ], 
+              [
+                -87.633418, 
+                44.816956
+              ], 
+              [
+                -87.632977, 
+                44.817361
+              ], 
+              [
+                -87.632892, 
+                44.817439
+              ], 
+              [
+                -87.632699, 
+                44.817616
+              ], 
+              [
+                -87.622014, 
+                44.827419
+              ], 
+              [
+                -87.616384, 
+                44.832585
+              ], 
+              [
+                -87.616242, 
+                44.832715
+              ], 
+              [
+                -87.611852, 
+                44.836743
+              ], 
+              [
+                -87.611118, 
+                44.837416
+              ], 
+              [
+                -87.610245, 
+                44.838217
+              ], 
+              [
+                -87.610063, 
+                44.838384
+              ], 
+              [
+                -87.610018, 
+                44.838405
+              ], 
+              [
+                -87.609784, 
+                44.838514
+              ], 
+              [
+                -87.581635, 
+                44.851638
+              ], 
+              [
+                -87.581306, 
+                44.851791
+              ], 
+              [
+                -87.573175, 
+                44.853118
+              ], 
+              [
+                -87.570851, 
+                44.852932
+              ], 
+              [
+                -87.560183, 
+                44.85208
+              ], 
+              [
+                -87.550288, 
+                44.85129
+              ], 
+              [
+                -87.550003, 
+                44.851381
+              ], 
+              [
+                -87.534723, 
+                44.85625
+              ], 
+              [
+                -87.530999, 
+                44.857437
+              ], 
+              [
+                -87.530794, 
+                44.857594
+              ], 
+              [
+                -87.515142, 
+                44.869596
+              ], 
+              [
+                -87.51459, 
+                44.86938
+              ], 
+              [
+                -87.513775, 
+                44.869061
+              ], 
+              [
+                -87.513413, 
+                44.868919
+              ], 
+              [
+                -87.512129, 
+                44.868416
+              ], 
+              [
+                -87.504868, 
+                44.865573
+              ], 
+              [
+                -87.504405, 
+                44.865392
+              ], 
+              [
+                -87.504303, 
+                44.865352
+              ], 
+              [
+                -87.502431, 
+                44.864619
+              ], 
+              [
+                -87.501578, 
+                44.864285
+              ], 
+              [
+                -87.499063, 
+                44.864207
+              ], 
+              [
+                -87.478489, 
+                44.863572
+              ], 
+              [
+                -87.472639, 
+                44.86769
+              ], 
+              [
+                -87.456688, 
+                44.878918
+              ], 
+              [
+                -87.441339, 
+                44.889723
+              ], 
+              [
+                -87.437084, 
+                44.892718
+              ], 
+              [
+                -87.433128, 
+                44.892741
+              ], 
+              [
+                -87.433005, 
+                44.892691
+              ], 
+              [
+                -87.428144, 
+                44.890738
+              ], 
+              [
+                -87.421007, 
+                44.887869
+              ], 
+              [
+                -87.420327, 
+                44.887596
+              ], 
+              [
+                -87.419106, 
+                44.885378
+              ], 
+              [
+                -87.419114, 
+                44.885285
+              ], 
+              [
+                -87.419135, 
+                44.885052
+              ], 
+              [
+                -87.419951, 
+                44.87594
+              ], 
+              [
+                -87.419253, 
+                44.87496
+              ], 
+              [
+                -87.410919, 
+                44.863259
+              ], 
+              [
+                -87.410015, 
+                44.86199
+              ], 
+              [
+                -87.408779, 
+                44.861453
+              ], 
+              [
+                -87.405658, 
+                44.860098
+              ], 
+              [
+                -87.405541, 
+                44.860047
+              ], 
+              [
+                -87.384821, 
+                44.865532
+              ], 
+              [
+                -87.384593, 
+                44.869277
+              ], 
+              [
+                -87.383874, 
+                44.881116
+              ], 
+              [
+                -87.383839, 
+                44.881685
+              ], 
+              [
+                -87.383833, 
+                44.881788
+              ], 
+              [
+                -87.38367, 
+                44.884475
+              ], 
+              [
+                -87.383655, 
+                44.884723
+              ], 
+              [
+                -87.383631, 
+                44.885115
+              ], 
+              [
+                -87.385396, 
+                44.889964
+              ], 
+              [
+                -87.386111, 
+                44.890699
+              ], 
+              [
+                -87.386375, 
+                44.890972
+              ], 
+              [
+                -87.386396, 
+                44.890993
+              ], 
+              [
+                -87.38649, 
+                44.89109
+              ], 
+              [
+                -87.390604, 
+                44.895323
+              ], 
+              [
+                -87.390651, 
+                44.895372
+              ], 
+              [
+                -87.3908, 
+                44.895524
+              ], 
+              [
+                -87.39107, 
+                44.895803
+              ], 
+              [
+                -87.39198, 
+                44.896739
+              ], 
+              [
+                -87.39227, 
+                44.897037
+              ], 
+              [
+                -87.393399, 
+                44.898199
+              ], 
+              [
+                -87.396972, 
+                44.899955
+              ], 
+              [
+                -87.397184, 
+                44.900059
+              ], 
+              [
+                -87.397359, 
+                44.900145
+              ], 
+              [
+                -87.400488, 
+                44.901683
+              ], 
+              [
+                -87.401947, 
+                44.9024
+              ], 
+              [
+                -87.406199, 
+                44.90449
+              ], 
+              [
+                -87.405361, 
+                44.909626
+              ], 
+              [
+                -87.405005, 
+                44.911806
+              ], 
+              [
+                -87.398368, 
+                44.925226
+              ], 
+              [
+                -87.393752, 
+                44.933751
+              ], 
+              [
+                -87.393672, 
+                44.933899
+              ], 
+              [
+                -87.393405, 
+                44.934393
+              ], 
+              [
+                -87.393058, 
+                44.934677
+              ], 
+              [
+                -87.389006, 
+                44.937988
+              ], 
+              [
+                -87.387253, 
+                44.939421
+              ], 
+              [
+                -87.385066, 
+                44.942445
+              ], 
+              [
+                -87.384669, 
+                44.942993
+              ], 
+              [
+                -87.382436, 
+                44.94608
+              ], 
+              [
+                -87.374805, 
+                44.956631
+              ], 
+              [
+                -87.373046, 
+                44.960388
+              ], 
+              [
+                -87.372599, 
+                44.961343
+              ], 
+              [
+                -87.372568, 
+                44.96141
+              ], 
+              [
+                -87.371854, 
+                44.962935
+              ], 
+              [
+                -87.370075, 
+                44.966736
+              ], 
+              [
+                -87.363492, 
+                44.980798
+              ], 
+              [
+                -87.360288, 
+                44.987643
+              ], 
+              [
+                -87.351487, 
+                44.997203
+              ], 
+              [
+                -87.345091, 
+                45.004151
+              ], 
+              [
+                -87.336548, 
+                45.013431
+              ], 
+              [
+                -87.336457, 
+                45.01353
+              ], 
+              [
+                -87.322117, 
+                45.034201
+              ], 
+              [
+                -87.322022, 
+                45.03429
+              ], 
+              [
+                -87.315879, 
+                45.040103
+              ], 
+              [
+                -87.307394, 
+                45.04813
+              ], 
+              [
+                -87.303475, 
+                45.051838
+              ], 
+              [
+                -87.30342, 
+                45.05189
+              ], 
+              [
+                -87.303149, 
+                45.052146
+              ], 
+              [
+                -87.302831, 
+                45.052447
+              ], 
+              [
+                -87.30247, 
+                45.052666
+              ], 
+              [
+                -87.300887, 
+                45.053625
+              ], 
+              [
+                -87.300724, 
+                45.053724
+              ], 
+              [
+                -87.300146, 
+                45.054075
+              ], 
+              [
+                -87.28428, 
+                45.063694
+              ], 
+              [
+                -87.284208, 
+                45.06376
+              ], 
+              [
+                -87.269231, 
+                45.077396
+              ], 
+              [
+                -87.268737, 
+                45.077847
+              ], 
+              [
+                -87.268695, 
+                45.077884
+              ], 
+              [
+                -87.264877, 
+                45.081361
+              ], 
+              [
+                -87.260631, 
+                45.092355
+              ], 
+              [
+                -87.260542, 
+                45.092585
+              ], 
+              [
+                -87.260595, 
+                45.106007
+              ], 
+              [
+                -87.257449, 
+                45.121644
+              ], 
+              [
+                -87.254072, 
+                45.126323
+              ], 
+              [
+                -87.250487, 
+                45.131289
+              ], 
+              [
+                -87.240813, 
+                45.137559
+              ], 
+              [
+                -87.240308, 
+                45.137886
+              ], 
+              [
+                -87.242331, 
+                45.146773
+              ], 
+              [
+                -87.242924, 
+                45.149377
+              ], 
+              [
+                -87.238426, 
+                45.166492
+              ], 
+              [
+                -87.238229, 
+                45.167238
+              ], 
+              [
+                -87.238224, 
+                45.167259
+              ], 
+              [
+                -87.23822, 
+                45.167262
+              ], 
+              [
+                -87.231925, 
+                45.172316
+              ], 
+              [
+                -87.231214, 
+                45.172887
+              ], 
+              [
+                -87.224065, 
+                45.174551
+              ], 
+              [
+                -87.222316, 
+                45.174959
+              ], 
+              [
+                -87.221971, 
+                45.175039
+              ], 
+              [
+                -87.221707, 
+                45.174716
+              ], 
+              [
+                -87.220937, 
+                45.173773
+              ], 
+              [
+                -87.21437, 
+                45.165735
+              ], 
+              [
+                -87.213483, 
+                45.165614
+              ], 
+              [
+                -87.207963, 
+                45.164857
+              ], 
+              [
+                -87.200385, 
+                45.163819
+              ], 
+              [
+                -87.195876, 
+                45.163201
+              ], 
+              [
+                -87.195213, 
+                45.16311
+              ], 
+              [
+                -87.17517, 
+                45.173
+              ], 
+              [
+                -87.175068, 
+                45.17305
+              ], 
+              [
+                -87.173722, 
+                45.17485
+              ], 
+              [
+                -87.171272, 
+                45.178123
+              ], 
+              [
+                -87.171233, 
+                45.178175
+              ], 
+              [
+                -87.170266, 
+                45.179468
+              ], 
+              [
+                -87.170062, 
+                45.179741
+              ], 
+              [
+                -87.168298, 
+                45.182099
+              ], 
+              [
+                -87.168252, 
+                45.18216
+              ], 
+              [
+                -87.167179, 
+                45.183594
+              ], 
+              [
+                -87.163169, 
+                45.185331
+              ], 
+              [
+                -87.147709, 
+                45.190711
+              ], 
+              [
+                -87.147657, 
+                45.190719
+              ], 
+              [
+                -87.142708, 
+                45.191437
+              ], 
+              [
+                -87.13303, 
+                45.192843
+              ], 
+              [
+                -87.132874, 
+                45.192794
+              ], 
+              [
+                -87.12981, 
+                45.191825
+              ], 
+              [
+                -87.128597, 
+                45.191441
+              ], 
+              [
+                -87.124549, 
+                45.190162
+              ], 
+              [
+                -87.123689, 
+                45.18989
+              ], 
+              [
+                -87.119972, 
+                45.191103
+              ], 
+              [
+                -87.119971, 
+                45.191125
+              ], 
+              [
+                -87.119968, 
+                45.191198
+              ], 
+              [
+                -87.119925, 
+                45.19228
+              ], 
+              [
+                -87.119921, 
+                45.192386
+              ], 
+              [
+                -87.119894, 
+                45.193071
+              ], 
+              [
+                -87.119887, 
+                45.193242
+              ], 
+              [
+                -87.119876, 
+                45.193527
+              ], 
+              [
+                -87.119874, 
+                45.193581
+              ], 
+              [
+                -87.119868, 
+                45.193724
+              ], 
+              [
+                -87.119864, 
+                45.193843
+              ], 
+              [
+                -87.119825, 
+                45.194814
+              ], 
+              [
+                -87.119822, 
+                45.194908
+              ], 
+              [
+                -87.119784, 
+                45.195866
+              ], 
+              [
+                -87.11978, 
+                45.195965
+              ], 
+              [
+                -87.119768, 
+                45.196271
+              ], 
+              [
+                -87.119534, 
+                45.202184
+              ], 
+              [
+                -87.119522, 
+                45.202488
+              ], 
+              [
+                -87.119511, 
+                45.202754
+              ], 
+              [
+                -87.119413, 
+                45.205237
+              ], 
+              [
+                -87.119405, 
+                45.20544
+              ], 
+              [
+                -87.11945, 
+                45.205529
+              ], 
+              [
+                -87.119654, 
+                45.20593
+              ], 
+              [
+                -87.121541, 
+                45.209649
+              ], 
+              [
+                -87.121566, 
+                45.209698
+              ], 
+              [
+                -87.121609, 
+                45.209783
+              ], 
+              [
+                -87.122098, 
+                45.215121
+              ], 
+              [
+                -87.122194, 
+                45.216168
+              ], 
+              [
+                -87.122226, 
+                45.216519
+              ], 
+              [
+                -87.122248, 
+                45.216764
+              ], 
+              [
+                -87.122364, 
+                45.218023
+              ], 
+              [
+                -87.122708, 
+                45.221786
+              ], 
+              [
+                -87.122819, 
+                45.222997
+              ], 
+              [
+                -87.121667, 
+                45.226337
+              ], 
+              [
+                -87.121288, 
+                45.227438
+              ], 
+              [
+                -87.121266, 
+                45.2275
+              ], 
+              [
+                -87.117391, 
+                45.23874
+              ], 
+              [
+                -87.116456, 
+                45.24145
+              ], 
+              [
+                -87.116432, 
+                45.24152
+              ], 
+              [
+                -87.109541, 
+                45.255397
+              ], 
+              [
+                -87.109014, 
+                45.256458
+              ], 
+              [
+                -87.108743, 
+                45.257003
+              ], 
+              [
+                -87.10843, 
+                45.257093
+              ], 
+              [
+                -87.101681, 
+                45.259027
+              ], 
+              [
+                -87.078316, 
+                45.265723
+              ], 
+              [
+                -87.071035, 
+                45.280355
+              ], 
+              [
+                -87.070845, 
+                45.280532
+              ], 
+              [
+                -87.057627, 
+                45.292838
+              ], 
+              [
+                -87.053417, 
+                45.287901
+              ], 
+              [
+                -87.052927, 
+                45.287326
+              ], 
+              [
+                -87.052872, 
+                45.287262
+              ], 
+              [
+                -87.051979, 
+                45.286215
+              ], 
+              [
+                -87.0517, 
+                45.285888
+              ], 
+              [
+                -87.050796, 
+                45.285758
+              ], 
+              [
+                -87.048745, 
+                45.285464
+              ], 
+              [
+                -87.043895, 
+                45.284767
+              ], 
+              [
+                -87.043724, 
+                45.28482
+              ], 
+              [
+                -87.043497, 
+                45.28489
+              ], 
+              [
+                -87.04313, 
+                45.285003
+              ], 
+              [
+                -87.041463, 
+                45.285518
+              ], 
+              [
+                -87.034206, 
+                45.287758
+              ], 
+              [
+                -87.034077, 
+                45.287844
+              ], 
+              [
+                -87.021088, 
+                45.296541
+              ], 
+              [
+                -87.017036, 
+                45.299254
+              ], 
+              [
+                -87.015797, 
+                45.29919
+              ], 
+              [
+                -86.994112, 
+                45.298061
+              ], 
+              [
+                -86.993528, 
+                45.297915
+              ], 
+              [
+                -86.993201, 
+                45.297833
+              ], 
+              [
+                -86.984223, 
+                45.295585
+              ], 
+              [
+                -86.98388, 
+                45.295499
+              ], 
+              [
+                -86.983355, 
+                45.295368
+              ], 
+              [
+                -86.983227, 
+                45.29526
+              ], 
+              [
+                -86.980058, 
+                45.292598
+              ], 
+              [
+                -86.97778, 
+                45.290684
+              ], 
+              [
+                -86.977714, 
+                45.290575
+              ], 
+              [
+                -86.970355, 
+                45.278455
+              ], 
+              [
+                -86.972786, 
+                45.274591
+              ], 
+              [
+                -86.973227, 
+                45.27389
+              ], 
+              [
+                -86.974346, 
+                45.272113
+              ], 
+              [
+                -86.974528, 
+                45.271823
+              ], 
+              [
+                -86.974622, 
+                45.271752
+              ], 
+              [
+                -86.977355, 
+                45.269687
+              ], 
+              [
+                -86.983597, 
+                45.264971
+              ], 
+              [
+                -86.984398, 
+                45.264366
+              ], 
+              [
+                -86.984495, 
+                45.263409
+              ], 
+              [
+                -86.984938, 
+                45.259036
+              ], 
+              [
+                -86.984975, 
+                45.258674
+              ], 
+              [
+                -86.984172, 
+                45.255346
+              ], 
+              [
+                -86.983066, 
+                45.250764
+              ], 
+              [
+                -86.982669, 
+                45.249117
+              ], 
+              [
+                -86.982393, 
+                45.24898
+              ], 
+              [
+                -86.976711, 
+                45.246146
+              ], 
+              [
+                -86.973287, 
+                45.246381
+              ], 
+              [
+                -86.973022, 
+                45.246399
+              ], 
+              [
+                -86.973453, 
+                45.244966
+              ], 
+              [
+                -86.97346, 
+                45.244944
+              ], 
+              [
+                -86.973483, 
+                45.244867
+              ], 
+              [
+                -86.973651, 
+                45.244308
+              ], 
+              [
+                -86.974086, 
+                45.242864
+              ], 
+              [
+                -86.978697, 
+                45.227538
+              ], 
+              [
+                -86.978759, 
+                45.227333
+              ], 
+              [
+                -86.98108, 
+                45.223646
+              ], 
+              [
+                -86.981956, 
+                45.222254
+              ], 
+              [
+                -86.983001, 
+                45.220593
+              ], 
+              [
+                -86.983708, 
+                45.21947
+              ], 
+              [
+                -86.985973, 
+                45.215872
+              ], 
+              [
+                -86.988075, 
+                45.21536
+              ], 
+              [
+                -86.995804, 
+                45.213478
+              ], 
+              [
+                -86.997316, 
+                45.21311
+              ], 
+              [
+                -87.000112, 
+                45.212429
+              ], 
+              [
+                -87.002806, 
+                45.211773
+              ], 
+              [
+                -87.005243, 
+                45.213607
+              ], 
+              [
+                -87.005359, 
+                45.213694
+              ], 
+              [
+                -87.005468, 
+                45.214114
+              ], 
+              [
+                -87.00754, 
+                45.222127
+              ], 
+              [
+                -87.007583, 
+                45.222127
+              ], 
+              [
+                -87.032521, 
+                45.222274
+              ], 
+              [
+                -87.032546, 
+                45.222274
+              ], 
+              [
+                -87.032576, 
+                45.222235
+              ], 
+              [
+                -87.034524, 
+                45.219734
+              ], 
+              [
+                -87.040909, 
+                45.211535
+              ], 
+              [
+                -87.040924, 
+                45.211421
+              ], 
+              [
+                -87.041063, 
+                45.210375
+              ], 
+              [
+                -87.041075, 
+                45.210283
+              ], 
+              [
+                -87.041106, 
+                45.210052
+              ], 
+              [
+                -87.045899, 
+                45.173902
+              ], 
+              [
+                -87.045883, 
+                45.173543
+              ], 
+              [
+                -87.045701, 
+                45.169351
+              ], 
+              [
+                -87.045687, 
+                45.169016
+              ], 
+              [
+                -87.045681, 
+                45.168889
+              ], 
+              [
+                -87.04566, 
+                45.168403
+              ], 
+              [
+                -87.04548, 
+                45.164271
+              ], 
+              [
+                -87.045242, 
+                45.158798
+              ], 
+              [
+                -87.045225, 
+                45.158401
+              ], 
+              [
+                -87.044176, 
+                45.15763
+              ], 
+              [
+                -87.041145, 
+                45.155404
+              ], 
+              [
+                -87.038479, 
+                45.153445
+              ], 
+              [
+                -87.036716, 
+                45.15215
+              ], 
+              [
+                -87.034083, 
+                45.150216
+              ], 
+              [
+                -87.030225, 
+                45.147382
+              ], 
+              [
+                -87.029164, 
+                45.146603
+              ], 
+              [
+                -87.02898, 
+                45.146467
+              ], 
+              [
+                -87.028847, 
+                45.14637
+              ], 
+              [
+                -87.028957, 
+                45.14625
+              ], 
+              [
+                -87.030105, 
+                45.145009
+              ], 
+              [
+                -87.030126, 
+                45.144986
+              ], 
+              [
+                -87.031167, 
+                45.14386
+              ], 
+              [
+                -87.031307, 
+                45.143709
+              ], 
+              [
+                -87.032194, 
+                45.142748
+              ], 
+              [
+                -87.032344, 
+                45.142586
+              ], 
+              [
+                -87.032461, 
+                45.14246
+              ], 
+              [
+                -87.03292, 
+                45.141963
+              ], 
+              [
+                -87.033114, 
+                45.141753
+              ], 
+              [
+                -87.033117, 
+                45.141752
+              ], 
+              [
+                -87.033546, 
+                45.141522
+              ], 
+              [
+                -87.03355, 
+                45.141519
+              ], 
+              [
+                -87.034621, 
+                45.140946
+              ], 
+              [
+                -87.034667, 
+                45.140921
+              ], 
+              [
+                -87.035465, 
+                45.140494
+              ], 
+              [
+                -87.035838, 
+                45.140294
+              ], 
+              [
+                -87.040175, 
+                45.137972
+              ], 
+              [
+                -87.041564, 
+                45.137228
+              ], 
+              [
+                -87.042114, 
+                45.136933
+              ], 
+              [
+                -87.042286, 
+                45.136841
+              ], 
+              [
+                -87.045748, 
+                45.134987
+              ], 
+              [
+                -87.054282, 
+                45.120074
+              ], 
+              [
+                -87.054342, 
+                45.119968
+              ], 
+              [
+                -87.051049, 
+                45.116172
+              ], 
+              [
+                -87.05075, 
+                45.115111
+              ], 
+              [
+                -87.049346, 
+                45.110122
+              ], 
+              [
+                -87.049268, 
+                45.109845
+              ], 
+              [
+                -87.049231, 
+                45.109712
+              ], 
+              [
+                -87.048951, 
+                45.108718
+              ], 
+              [
+                -87.048911, 
+                45.107665
+              ], 
+              [
+                -87.048406, 
+                45.094259
+              ], 
+              [
+                -87.048346, 
+                45.092647
+              ], 
+              [
+                -87.048213, 
+                45.089124
+              ], 
+              [
+                -87.048359, 
+                45.089098
+              ], 
+              [
+                -87.05078, 
+                45.088663
+              ], 
+              [
+                -87.057415, 
+                45.087472
+              ], 
+              [
+                -87.057444, 
+                45.087467
+              ], 
+              [
+                -87.058259, 
+                45.086304
+              ], 
+              [
+                -87.061966, 
+                45.081015
+              ], 
+              [
+                -87.063129, 
+                45.079356
+              ], 
+              [
+                -87.063157, 
+                45.079316
+              ], 
+              [
+                -87.063376, 
+                45.079202
+              ], 
+              [
+                -87.064864, 
+                45.078427
+              ], 
+              [
+                -87.079552, 
+                45.070783
+              ], 
+              [
+                -87.079555, 
+                45.07077
+              ], 
+              [
+                -87.080271, 
+                45.067154
+              ], 
+              [
+                -87.080755, 
+                45.06471
+              ], 
+              [
+                -87.081866, 
+                45.059103
+              ], 
+              [
+                -87.082419, 
+                45.058879
+              ], 
+              [
+                -87.086351, 
+                45.057287
+              ], 
+              [
+                -87.090849, 
+                45.055465
+              ], 
+              [
+                -87.091639, 
+                45.055145
+              ], 
+              [
+                -87.091761, 
+                45.055158
+              ], 
+              [
+                -87.092177, 
+                45.055203
+              ], 
+              [
+                -87.096387, 
+                45.055654
+              ], 
+              [
+                -87.097479, 
+                45.055771
+              ], 
+              [
+                -87.121156, 
+                45.058311
+              ], 
+              [
+                -87.124701, 
+                45.052936
+              ], 
+              [
+                -87.124722, 
+                45.050833
+              ], 
+              [
+                -87.124727, 
+                45.050344
+              ], 
+              [
+                -87.124737, 
+                45.049268
+              ], 
+              [
+                -87.124744, 
+                45.048608
+              ], 
+              [
+                -87.124788, 
+                45.044141
+              ], 
+              [
+                -87.124797, 
+                45.043262
+              ], 
+              [
+                -87.124808, 
+                45.042167
+              ], 
+              [
+                -87.132344, 
+                45.026862
+              ], 
+              [
+                -87.134354, 
+                45.02278
+              ], 
+              [
+                -87.138024, 
+                45.015327
+              ], 
+              [
+                -87.139384, 
+                45.012565
+              ], 
+              [
+                -87.141048, 
+                45.012175
+              ], 
+              [
+                -87.154084, 
+                45.009117
+              ], 
+              [
+                -87.163477, 
+                45.004913
+              ], 
+              [
+                -87.163529, 
+                45.00489
+              ], 
+              [
+                -87.163561, 
+                45.004848
+              ], 
+              [
+                -87.167474, 
+                44.999736
+              ], 
+              [
+                -87.16797, 
+                44.999088
+              ], 
+              [
+                -87.169494, 
+                44.997096
+              ], 
+              [
+                -87.169676, 
+                44.99686
+              ], 
+              [
+                -87.169694, 
+                44.996836
+              ], 
+              [
+                -87.181428, 
+                44.981505
+              ], 
+              [
+                -87.181901, 
+                44.980887
+              ], 
+              [
+                -87.182922, 
+                44.979221
+              ], 
+              [
+                -87.187585, 
+                44.971606
+              ], 
+              [
+                -87.189134, 
+                44.969078
+              ], 
+              [
+                -87.189407, 
+                44.968632
+              ], 
+              [
+                -87.189402, 
+                44.968524
+              ], 
+              [
+                -87.189383, 
+                44.968164
+              ], 
+              [
+                -87.188582, 
+                44.952193
+              ], 
+              [
+                -87.188399, 
+                44.94856
+              ], 
+              [
+                -87.188375, 
+                44.948077
+              ], 
+              [
+                -87.188074, 
+                44.947886
+              ], 
+              [
+                -87.179974, 
+                44.942753
+              ], 
+              [
+                -87.17524, 
+                44.939753
+              ], 
+              [
+                -87.1717, 
+                44.931476
+              ], 
+              [
+                -87.17492, 
+                44.927749
+              ], 
+              [
+                -87.182421, 
+                44.926297
+              ], 
+              [
+                -87.185858, 
+                44.925632
+              ], 
+              [
+                -87.186732, 
+                44.925463
+              ], 
+              [
+                -87.187984, 
+                44.924845
+              ], 
+              [
+                -87.204238, 
+                44.916819
+              ], 
+              [
+                -87.215808, 
+                44.906744
+              ], 
+              [
+                -87.215977, 
+                44.906597
+              ], 
+              [
+                -87.216059, 
+                44.906009
+              ], 
+              [
+                -87.216074, 
+                44.9059
+              ], 
+              [
+                -87.216146, 
+                44.905379
+              ], 
+              [
+                -87.217171, 
+                44.898013
+              ], 
+              [
+                -87.217195, 
+                44.897839
+              ], 
+              [
+                -87.217149, 
+                44.897789
+              ], 
+              [
+                -87.21671, 
+                44.897309
+              ], 
+              [
+                -87.212587, 
+                44.892809
+              ], 
+              [
+                -87.209265, 
+                44.889182
+              ], 
+              [
+                -87.206285, 
+                44.885928
+              ], 
+              [
+                -87.206184, 
+                44.885329
+              ], 
+              [
+                -87.204815, 
+                44.877199
+              ], 
+              [
+                -87.204809, 
+                44.877159
+              ], 
+              [
+                -87.204545, 
+                44.875593
+              ], 
+              [
+                -87.204904, 
+                44.875429
+              ], 
+              [
+                -87.211398, 
+                44.872461
+              ], 
+              [
+                -87.224891, 
+                44.866295
+              ], 
+              [
+                -87.246171, 
+                44.856571
+              ], 
+              [
+                -87.267061, 
+                44.847025
+              ], 
+              [
+                -87.267441, 
+                44.846851
+              ], 
+              [
+                -87.267564, 
+                44.846655
+              ], 
+              [
+                -87.274769, 
+                44.835187
+              ], 
+              [
+                -87.27603, 
+                44.83318
+              ], 
+              [
+                -87.282561, 
+                44.814729
+              ], 
+              [
+                -87.294869, 
+                44.809131
+              ], 
+              [
+                -87.304824, 
+                44.804603
+              ], 
+              [
+                -87.307482, 
+                44.801377
+              ], 
+              [
+                -87.313363, 
+                44.794237
+              ], 
+              [
+                -87.313692, 
+                44.793838
+              ], 
+              [
+                -87.313751, 
+                44.793766
+              ], 
+              [
+                -87.31388, 
+                44.793595
+              ], 
+              [
+                -87.314247, 
+                44.793109
+              ], 
+              [
+                -87.315813, 
+                44.791034
+              ], 
+              [
+                -87.320397, 
+                44.784963
+              ], 
+              [
+                -87.319796, 
+                44.77917
+              ], 
+              [
+                -87.319169, 
+                44.773135
+              ], 
+              [
+                -87.31903, 
+                44.771794
+              ], 
+              [
+                -87.319013, 
+                44.771632
+              ], 
+              [
+                -87.318982, 
+                44.771335
+              ], 
+              [
+                -87.319903, 
+                44.769672
+              ], 
+              [
+                -87.320855, 
+                44.767953
+              ], 
+              [
+                -87.337584, 
+                44.737751
+              ], 
+              [
+                -87.339155, 
+                44.732839
+              ], 
+              [
+                -87.339904, 
+                44.730498
+              ], 
+              [
+                -87.341226, 
+                44.726364
+              ], 
+              [
+                -87.341491, 
+                44.725535
+              ], 
+              [
+                -87.343508, 
+                44.719228
+              ], 
+              [
+                -87.348082, 
+                44.711526
+              ], 
+              [
+                -87.349559, 
+                44.709039
+              ], 
+              [
+                -87.353789, 
+                44.701915
+              ], 
+              [
+                -87.354172, 
+                44.701445
+              ], 
+              [
+                -87.354249, 
+                44.70135
+              ], 
+              [
+                -87.36115, 
+                44.692876
+              ], 
+              [
+                -87.367992, 
+                44.684474
+              ], 
+              [
+                -87.368263, 
+                44.684141
+              ], 
+              [
+                -87.373228, 
+                44.675593
+              ], 
+              [
+                -87.37849, 
+                44.666534
+              ], 
+              [
+                -87.38684, 
+                44.652157
+              ], 
+              [
+                -87.393521, 
+                44.640655
+              ], 
+              [
+                -87.401629, 
+                44.631191
+              ], 
+              [
+                -87.403724, 
+                44.628974
+              ], 
+              [
+                -87.40541, 
+                44.627191
+              ], 
+              [
+                -87.418028, 
+                44.62087
+              ], 
+              [
+                -87.435766, 
+                44.606472
+              ], 
+              [
+                -87.437493, 
+                44.605071
+              ], 
+              [
+                -87.437751, 
+                44.604559
+              ], 
+              [
+                -87.446963, 
+                44.586274
+              ], 
+              [
+                -87.467089, 
+                44.553557
+              ], 
+              [
+                -87.467214, 
+                44.553355
+              ], 
+              [
+                -87.467398, 
+                44.553055
+              ], 
+              [
+                -87.468093, 
+                44.551925
+              ], 
+              [
+                -87.472934, 
+                44.539338
+              ], 
+              [
+                -87.481884, 
+                44.516065
+              ], 
+              [
+                -87.483696, 
+                44.511354
+              ], 
+              [
+                -87.483873, 
+                44.505742
+              ], 
+              [
+                -87.483914, 
+                44.504425
+              ], 
+              [
+                -87.484042, 
+                44.503856
+              ], 
+              [
+                -87.486822, 
+                44.491477
+              ], 
+              [
+                -87.490024, 
+                44.477224
+              ], 
+              [
+                -87.492333, 
+                44.472804
+              ], 
+              [
+                -87.494678, 
+                44.468314
+              ], 
+              [
+                -87.495176, 
+                44.46736
+              ], 
+              [
+                -87.495252, 
+                44.467215
+              ], 
+              [
+                -87.498662, 
+                44.460686
+              ], 
+              [
+                -87.49886, 
+                44.459737
+              ], 
+              [
+                -87.498872, 
+                44.45968
+              ], 
+              [
+                -87.498934, 
+                44.459384
+              ], 
+              [
+                -87.499349, 
+                44.457395
+              ], 
+              [
+                -87.499674, 
+                44.455837
+              ], 
+              [
+                -87.499719, 
+                44.455625
+              ], 
+              [
+                -87.502309, 
+                44.443219
+              ], 
+              [
+                -87.506362, 
+                44.423804
+              ], 
+              [
+                -87.507651, 
+                44.421418
+              ], 
+              [
+                -87.511387, 
+                44.414502
+              ], 
+              [
+                -87.511635, 
+                44.414043
+              ], 
+              [
+                -87.512311, 
+                44.411941
+              ], 
+              [
+                -87.512886, 
+                44.410153
+              ], 
+              [
+                -87.515482, 
+                44.402077
+              ], 
+              [
+                -87.517965, 
+                44.394356
+              ], 
+              [
+                -87.517881, 
+                44.390082
+              ], 
+              [
+                -87.517597, 
+                44.375696
+              ], 
+              [
+                -87.51774, 
+                44.375357
+              ], 
+              [
+                -87.518094, 
+                44.374519
+              ], 
+              [
+                -87.519106, 
+                44.372122
+              ], 
+              [
+                -87.521047, 
+                44.367526
+              ], 
+              [
+                -87.521663, 
+                44.366719
+              ], 
+              [
+                -87.533583, 
+                44.351111
+              ], 
+              [
+                -87.533606, 
+                44.351052
+              ], 
+              [
+                -87.541517, 
+                44.331123
+              ], 
+              [
+                -87.54295, 
+                44.327513
+              ], 
+              [
+                -87.545382, 
+                44.321385
+              ], 
+              [
+                -87.544725, 
+                44.307068
+              ], 
+              [
+                -87.544716, 
+                44.306864
+              ], 
+              [
+                -87.544675, 
+                44.306707
+              ], 
+              [
+                -87.541382, 
+                44.294018
+              ], 
+              [
+                -87.541265, 
+                44.293567
+              ], 
+              [
+                -87.541156, 
+                44.293147
+              ], 
+              [
+                -87.541155, 
+                44.293143
+              ], 
+              [
+                -87.541053, 
+                44.292968
+              ], 
+              [
+                -87.526466, 
+                44.268016
+              ], 
+              [
+                -87.526391, 
+                44.267888
+              ], 
+              [
+                -87.526226, 
+                44.267605
+              ], 
+              [
+                -87.525824, 
+                44.266918
+              ], 
+              [
+                -87.525797, 
+                44.266871
+              ], 
+              [
+                -87.525703, 
+                44.266711
+              ], 
+              [
+                -87.525643, 
+                44.266609
+              ], 
+              [
+                -87.525485, 
+                44.266338
+              ], 
+              [
+                -87.525455, 
+                44.266285
+              ], 
+              [
+                -87.525294, 
+                44.26601
+              ], 
+              [
+                -87.525211, 
+                44.265869
+              ], 
+              [
+                -87.524691, 
+                44.264979
+              ], 
+              [
+                -87.524459, 
+                44.264583
+              ], 
+              [
+                -87.524193, 
+                44.264128
+              ], 
+              [
+                -87.523179, 
+                44.262393
+              ], 
+              [
+                -87.52284, 
+                44.261813
+              ], 
+              [
+                -87.522557, 
+                44.261329
+              ], 
+              [
+                -87.521862, 
+                44.26014
+              ], 
+              [
+                -87.521755, 
+                44.259957
+              ], 
+              [
+                -87.52133, 
+                44.258993
+              ], 
+              [
+                -87.521318, 
+                44.258965
+              ], 
+              [
+                -87.515406, 
+                44.245537
+              ], 
+              [
+                -87.515399, 
+                44.245522
+              ], 
+              [
+                -87.515314, 
+                44.245328
+              ], 
+              [
+                -87.508457, 
+                44.229755
+              ], 
+              [
+                -87.508419, 
+                44.229669
+              ], 
+              [
+                -87.508412, 
+                44.229546
+              ], 
+              [
+                -87.507419, 
+                44.210803
+              ], 
+              [
+                -87.512903, 
+                44.192808
+              ], 
+              [
+                -87.51966, 
+                44.17987
+              ], 
+              [
+                -87.53994, 
+                44.15969
+              ], 
+              [
+                -87.550076, 
+                44.152933
+              ], 
+              [
+                -87.563181, 
+                44.144195
+              ], 
+              [
+                -87.563551, 
+                44.144072
+              ], 
+              [
+                -87.567045, 
+                44.142914
+              ], 
+              [
+                -87.567817, 
+                44.142658
+              ], 
+              [
+                -87.570533, 
+                44.141757
+              ], 
+              [
+                -87.59668, 
+                44.133088
+              ], 
+              [
+                -87.59791, 
+                44.13268
+              ], 
+              [
+                -87.599055, 
+                44.132301
+              ], 
+              [
+                -87.600882, 
+                44.131695
+              ], 
+              [
+                -87.603572, 
+                44.13039
+              ], 
+              [
+                -87.621082, 
+                44.121895
+              ], 
+              [
+                -87.6458, 
+                44.105222
+              ], 
+              [
+                -87.646583, 
+                44.104694
+              ], 
+              [
+                -87.646719, 
+                44.104335
+              ], 
+              [
+                -87.647551, 
+                44.102128
+              ], 
+              [
+                -87.647603, 
+                44.101991
+              ], 
+              [
+                -87.651507, 
+                44.091639
+              ], 
+              [
+                -87.654935, 
+                44.082552
+              ], 
+              [
+                -87.655183, 
+                44.081894
+              ], 
+              [
+                -87.653483, 
+                44.067194
+              ], 
+              [
+                -87.653691, 
+                44.065961
+              ], 
+              [
+                -87.656062, 
+                44.051919
+              ], 
+              [
+                -87.656083, 
+                44.051794
+              ], 
+              [
+                -87.671316, 
+                44.03735
+              ], 
+              [
+                -87.683361, 
+                44.020139
+              ], 
+              [
+                -87.686389, 
+                44.01252
+              ], 
+              [
+                -87.691479, 
+                43.99971
+              ], 
+              [
+                -87.695053, 
+                43.990715
+              ], 
+              [
+                -87.695503, 
+                43.989582
+              ], 
+              [
+                -87.695511, 
+                43.989524
+              ], 
+              [
+                -87.69892, 
+                43.965936
+              ], 
+              [
+                -87.699029, 
+                43.965734
+              ], 
+              [
+                -87.700125, 
+                43.963712
+              ], 
+              [
+                -87.700321, 
+                43.963351
+              ], 
+              [
+                -87.702707, 
+                43.958946
+              ], 
+              [
+                -87.702719, 
+                43.958926
+              ], 
+              [
+                -87.703951, 
+                43.956651
+              ], 
+              [
+                -87.704679, 
+                43.955872
+              ], 
+              [
+                -87.706656, 
+                43.953753
+              ], 
+              [
+                -87.709463, 
+                43.950747
+              ], 
+              [
+                -87.716037, 
+                43.943705
+              ], 
+              [
+                -87.71817, 
+                43.939498
+              ], 
+              [
+                -87.719041, 
+                43.937781
+              ], 
+              [
+                -87.719041, 
+                43.93778
+              ], 
+              [
+                -87.719194, 
+                43.9371
+              ], 
+              [
+                -87.720121, 
+                43.932958
+              ], 
+              [
+                -87.720382, 
+                43.931794
+              ], 
+              [
+                -87.720734, 
+                43.930224
+              ], 
+              [
+                -87.721268, 
+                43.92784
+              ], 
+              [
+                -87.7221, 
+                43.924128
+              ], 
+              [
+                -87.723716, 
+                43.916915
+              ], 
+              [
+                -87.724244, 
+                43.914557
+              ], 
+              [
+                -87.726766, 
+                43.903297
+              ], 
+              [
+                -87.726803, 
+                43.903133
+              ], 
+              [
+                -87.726841, 
+                43.90304
+              ], 
+              [
+                -87.728542, 
+                43.89892
+              ], 
+              [
+                -87.728885, 
+                43.89809
+              ], 
+              [
+                -87.73063, 
+                43.893862
+              ], 
+              [
+                -87.730645, 
+                43.893825
+              ], 
+              [
+                -87.731322, 
+                43.892184
+              ], 
+              [
+                -87.733735, 
+                43.88634
+              ], 
+              [
+                -87.734457, 
+                43.88459
+              ], 
+              [
+                -87.735436, 
+                43.882219
+              ], 
+              [
+                -87.736178, 
+                43.880421
+              ], 
+              [
+                -87.736017, 
+                43.873721
+              ], 
+              [
+                -87.734881, 
+                43.87043
+              ], 
+              [
+                -87.728698, 
+                43.852524
+              ], 
+              [
+                -87.728728, 
+                43.851833
+              ], 
+              [
+                -87.729217, 
+                43.840582
+              ], 
+              [
+                -87.7296, 
+                43.831782
+              ], 
+              [
+                -87.727686, 
+                43.818989
+              ], 
+              [
+                -87.726772, 
+                43.812885
+              ], 
+              [
+                -87.726408, 
+                43.810454
+              ], 
+              [
+                -87.726407, 
+                43.810445
+              ], 
+              [
+                -87.726405, 
+                43.810442
+              ], 
+              [
+                -87.700251, 
+                43.76735
+              ], 
+              [
+                -87.700245, 
+                43.767129
+              ], 
+              [
+                -87.70009, 
+                43.76159
+              ], 
+              [
+                -87.700085, 
+                43.761395
+              ], 
+              [
+                -87.702985, 
+                43.749695
+              ], 
+              [
+                -87.703047, 
+                43.749565
+              ], 
+              [
+                -87.70463, 
+                43.746256
+              ], 
+              [
+                -87.705185, 
+                43.745095
+              ], 
+              [
+                -87.708167, 
+                43.742979
+              ], 
+              [
+                -87.708285, 
+                43.742895
+              ], 
+              [
+                -87.708321, 
+                43.742737
+              ], 
+              [
+                -87.709885, 
+                43.735795
+              ], 
+              [
+                -87.708185, 
+                43.722895
+              ], 
+              [
+                -87.707923, 
+                43.722064
+              ], 
+              [
+                -87.703144, 
+                43.706901
+              ], 
+              [
+                -87.702985, 
+                43.706395
+              ], 
+              [
+                -87.702685, 
+                43.687596
+              ], 
+              [
+                -87.703671, 
+                43.685339
+              ], 
+              [
+                -87.706204, 
+                43.679542
+              ], 
+              [
+                -87.706242, 
+                43.679488
+              ], 
+              [
+                -87.72646, 
+                43.650462
+              ], 
+              [
+                -87.733622, 
+                43.640181
+              ], 
+              [
+                -87.734312, 
+                43.63919
+              ], 
+              [
+                -87.735065, 
+                43.638217
+              ], 
+              [
+                -87.735489, 
+                43.637668
+              ], 
+              [
+                -87.735972, 
+                43.637044
+              ], 
+              [
+                -87.736146, 
+                43.636819
+              ], 
+              [
+                -87.737859, 
+                43.634604
+              ], 
+              [
+                -87.738638, 
+                43.633597
+              ], 
+              [
+                -87.742485, 
+                43.628622
+              ], 
+              [
+                -87.742522, 
+                43.628574
+              ], 
+              [
+                -87.780175, 
+                43.579889
+              ], 
+              [
+                -87.781255, 
+                43.578493
+              ], 
+              [
+                -87.782271, 
+                43.576726
+              ], 
+              [
+                -87.789105, 
+                43.564844
+              ], 
+              [
+                -87.790135, 
+                43.563054
+              ], 
+              [
+                -87.790277, 
+                43.562376
+              ], 
+              [
+                -87.793075, 
+                43.54899
+              ], 
+              [
+                -87.794321, 
+                43.543034
+              ], 
+              [
+                -87.797608, 
+                43.52731
+              ], 
+              [
+                -87.797336, 
+                43.510623
+              ], 
+              [
+                -87.793239, 
+                43.492783
+              ], 
+              [
+                -87.807799, 
+                43.461136
+              ], 
+              [
+                -87.827319, 
+                43.434849
+              ], 
+              [
+                -87.855608, 
+                43.405441
+              ], 
+              [
+                -87.865048, 
+                43.39357
+              ], 
+              [
+                -87.867504, 
+                43.389158
+              ], 
+              [
+                -87.869099, 
+                43.386295
+              ], 
+              [
+                -87.872504, 
+                43.380178
+              ], 
+              [
+                -87.877448, 
+                43.369235
+              ], 
+              [
+                -87.882392, 
+                43.352099
+              ], 
+              [
+                -87.888122, 
+                43.314731
+              ], 
+              [
+                -87.888312, 
+                43.313489
+              ], 
+              [
+                -87.888314, 
+                43.313476
+              ], 
+              [
+                -87.888328, 
+                43.313388
+              ], 
+              [
+                -87.888335, 
+                43.313342
+              ], 
+              [
+                -87.888342, 
+                43.313294
+              ], 
+              [
+                -87.889207, 
+                43.307652
+              ], 
+              [
+                -87.897813, 
+                43.291628
+              ], 
+              [
+                -87.900255, 
+                43.287081
+              ], 
+              [
+                -87.901847, 
+                43.284117
+              ], 
+              [
+                -87.902967, 
+                43.280319
+              ], 
+              [
+                -87.903094, 
+                43.279887
+              ], 
+              [
+                -87.903141, 
+                43.279728
+              ], 
+              [
+                -87.903451, 
+                43.278676
+              ], 
+              [
+                -87.904251, 
+                43.275962
+              ], 
+              [
+                -87.906465, 
+                43.268454
+              ], 
+              [
+                -87.906483, 
+                43.268393
+              ], 
+              [
+                -87.906502, 
+                43.26833
+              ], 
+              [
+                -87.906565, 
+                43.268115
+              ], 
+              [
+                -87.906583, 
+                43.268055
+              ], 
+              [
+                -87.906599, 
+                43.268002
+              ], 
+              [
+                -87.906605, 
+                43.26798
+              ], 
+              [
+                -87.906611, 
+                43.26796
+              ], 
+              [
+                -87.907289, 
+                43.265661
+              ], 
+              [
+                -87.907291, 
+                43.265653
+              ], 
+              [
+                -87.907306, 
+                43.265604
+              ], 
+              [
+                -87.909053, 
+                43.259678
+              ], 
+              [
+                -87.910345, 
+                43.255296
+              ], 
+              [
+                -87.911787, 
+                43.250406
+              ], 
+              [
+                -87.911512, 
+                43.248064
+              ], 
+              [
+                -87.910172, 
+                43.236634
+              ], 
+              [
+                -87.910087, 
+                43.235907
+              ], 
+              [
+                -87.897331, 
+                43.200046
+              ], 
+              [
+                -87.897326, 
+                43.200031
+              ], 
+              [
+                -87.897316, 
+                43.200003
+              ], 
+              [
+                -87.897125, 
+                43.199468
+              ], 
+              [
+                -87.896286, 
+                43.197108
+              ], 
+              [
+                -87.895554, 
+                43.196225
+              ], 
+              [
+                -87.89209, 
+                43.192044
+              ], 
+              [
+                -87.88857, 
+                43.187795
+              ], 
+              [
+                -87.887586, 
+                43.186608
+              ], 
+              [
+                -87.886266, 
+                43.183359
+              ], 
+              [
+                -87.884878, 
+                43.179944
+              ], 
+              [
+                -87.884872, 
+                43.179929
+              ], 
+              [
+                -87.884769, 
+                43.179674
+              ], 
+              [
+                -87.881085, 
+                43.170609
+              ], 
+              [
+                -87.88638, 
+                43.160255
+              ], 
+              [
+                -87.888849, 
+                43.155429
+              ], 
+              [
+                -87.889327, 
+                43.154493
+              ], 
+              [
+                -87.889375, 
+                43.1544
+              ], 
+              [
+                -87.889634, 
+                43.153894
+              ], 
+              [
+                -87.891059, 
+                43.151108
+              ], 
+              [
+                -87.892285, 
+                43.14871
+              ], 
+              [
+                -87.896008, 
+                43.143405
+              ], 
+              [
+                -87.898105, 
+                43.140417
+              ], 
+              [
+                -87.89902, 
+                43.139112
+              ], 
+              [
+                -87.900285, 
+                43.13731
+              ], 
+              [
+                -87.901345, 
+                43.133357
+              ], 
+              [
+                -87.901385, 
+                43.13321
+              ], 
+              [
+                -87.901359, 
+                43.133002
+              ], 
+              [
+                -87.900496, 
+                43.126
+              ], 
+              [
+                -87.900485, 
+                43.12591
+              ], 
+              [
+                -87.900463, 
+                43.125874
+              ], 
+              [
+                -87.893185, 
+                43.114011
+              ], 
+              [
+                -87.879169, 
+                43.101717
+              ], 
+              [
+                -87.877915, 
+                43.100617
+              ], 
+              [
+                -87.876084, 
+                43.099011
+              ], 
+              [
+                -87.872493, 
+                43.08981
+              ], 
+              [
+                -87.872362, 
+                43.089474
+              ], 
+              [
+                -87.872352, 
+                43.089449
+              ], 
+              [
+                -87.872255, 
+                43.089199
+              ], 
+              [
+                -87.871928, 
+                43.088363
+              ], 
+              [
+                -87.870459, 
+                43.084598
+              ], 
+              [
+                -87.866487, 
+                43.074419
+              ], 
+              [
+                -87.866484, 
+                43.074412
+              ], 
+              [
+                -87.870184, 
+                43.064412
+              ], 
+              [
+                -87.870217, 
+                43.064376
+              ], 
+              [
+                -87.87546, 
+                43.058516
+              ], 
+              [
+                -87.876343, 
+                43.057529
+              ], 
+              [
+                -87.88193, 
+                43.051285
+              ], 
+              [
+                -87.882069, 
+                43.05113
+              ], 
+              [
+                -87.882084, 
+                43.051113
+              ], 
+              [
+                -87.889883, 
+                43.045834
+              ], 
+              [
+                -87.894813, 
+                43.042497
+              ], 
+              [
+                -87.895028, 
+                43.042351
+              ], 
+              [
+                -87.895084, 
+                43.042313
+              ], 
+              [
+                -87.895127, 
+                43.042152
+              ], 
+              [
+                -87.896227, 
+                43.038028
+              ], 
+              [
+                -87.896598, 
+                43.036637
+              ], 
+              [
+                -87.898184, 
+                43.030689
+              ], 
+              [
+                -87.898684, 
+                43.028813
+              ], 
+              [
+                -87.896836, 
+                43.02053
+              ], 
+              [
+                -87.896647, 
+                43.01968
+              ], 
+              [
+                -87.896398, 
+                43.018565
+              ], 
+              [
+                -87.896157, 
+                43.017486
+              ], 
+              [
+                -87.895784, 
+                43.015814
+              ], 
+              [
+                -87.893511, 
+                43.011521
+              ], 
+              [
+                -87.889342, 
+                43.003647
+              ], 
+              [
+                -87.889095, 
+                43.003181
+              ], 
+              [
+                -87.888804, 
+                43.002631
+              ], 
+              [
+                -87.887789, 
+                43.000715
+              ], 
+              [
+                -87.887703, 
+                43.000552
+              ], 
+              [
+                -87.887683, 
+                43.000514
+              ], 
+              [
+                -87.878683, 
+                42.992415
+              ], 
+              [
+                -87.857182, 
+                42.978015
+              ], 
+              [
+                -87.845181, 
+                42.962015
+              ], 
+              [
+                -87.844739, 
+                42.958848
+              ], 
+              [
+                -87.843835, 
+                42.952375
+              ], 
+              [
+                -87.843575, 
+                42.950519
+              ], 
+              [
+                -87.842786, 
+                42.944865
+              ], 
+              [
+                -87.84276, 
+                42.944679
+              ], 
+              [
+                -87.842681, 
+                42.944116
+              ], 
+              [
+                -87.844578, 
+                42.923688
+              ], 
+              [
+                -87.846708, 
+                42.900756
+              ], 
+              [
+                -87.847745, 
+                42.889595
+              ], 
+              [
+                -87.84778, 
+                42.889216
+              ], 
+              [
+                -87.845811, 
+                42.884256
+              ], 
+              [
+                -87.834879, 
+                42.856717
+              ], 
+              [
+                -87.831176, 
+                42.849886
+              ], 
+              [
+                -87.827021, 
+                42.842222
+              ], 
+              [
+                -87.825352, 
+                42.839144
+              ], 
+              [
+                -87.824, 
+                42.836649
+              ], 
+              [
+                -87.823278, 
+                42.835318
+              ], 
+              [
+                -87.822324, 
+                42.834371
+              ], 
+              [
+                -87.804033, 
+                42.816205
+              ], 
+              [
+                -87.803773, 
+                42.815948
+              ], 
+              [
+                -87.796201, 
+                42.808428
+              ], 
+              [
+                -87.793976, 
+                42.806218
+              ], 
+              [
+                -87.789953, 
+                42.803691
+              ], 
+              [
+                -87.786291, 
+                42.801391
+              ], 
+              [
+                -87.785936, 
+                42.801168
+              ], 
+              [
+                -87.773699, 
+                42.793481
+              ], 
+              [
+                -87.773623, 
+                42.793388
+              ], 
+              [
+                -87.766675, 
+                42.784896
+              ], 
+              [
+                -87.769774, 
+                42.773719
+              ], 
+              [
+                -87.77134, 
+                42.771687
+              ], 
+              [
+                -87.777432, 
+                42.763781
+              ], 
+              [
+                -87.778174, 
+                42.762819
+              ], 
+              [
+                -87.778774, 
+                42.760556
+              ], 
+              [
+                -87.780782, 
+                42.752973
+              ], 
+              [
+                -87.781016, 
+                42.75209
+              ], 
+              [
+                -87.781949, 
+                42.74857
+              ], 
+              [
+                -87.782174, 
+                42.747719
+              ], 
+              [
+                -87.781849, 
+                42.745847
+              ], 
+              [
+                -87.781655, 
+                42.744733
+              ], 
+              [
+                -87.781642, 
+                42.744656
+              ], 
+              [
+                -87.781333, 
+                42.742879
+              ], 
+              [
+                -87.779527, 
+                42.732482
+              ], 
+              [
+                -87.778824, 
+                42.728432
+              ], 
+              [
+                -87.778627, 
+                42.727299
+              ], 
+              [
+                -87.78032, 
+                42.718679
+              ], 
+              [
+                -87.782023, 
+                42.710008
+              ], 
+              [
+                -87.782374, 
+                42.708219
+              ], 
+              [
+                -87.783489, 
+                42.705164
+              ], 
+              [
+                -87.784015, 
+                42.70372
+              ], 
+              [
+                -87.785074, 
+                42.700819
+              ], 
+              [
+                -87.786774, 
+                42.700719
+              ], 
+              [
+                -87.794874, 
+                42.689919
+              ], 
+              [
+                -87.802377, 
+                42.676651
+              ], 
+              [
+                -87.802876, 
+                42.675768
+              ], 
+              [
+                -87.802989, 
+                42.675569
+              ], 
+              [
+                -87.803028, 
+                42.675501
+              ], 
+              [
+                -87.803074, 
+                42.675419
+              ], 
+              [
+                -87.803127, 
+                42.675276
+              ], 
+              [
+                -87.805421, 
+                42.669067
+              ], 
+              [
+                -87.805768, 
+                42.668128
+              ], 
+              [
+                -87.807082, 
+                42.664571
+              ], 
+              [
+                -87.80988, 
+                42.656997
+              ], 
+              [
+                -87.809885, 
+                42.656982
+              ], 
+              [
+                -87.811371, 
+                42.652959
+              ], 
+              [
+                -87.813445, 
+                42.647345
+              ], 
+              [
+                -87.814674, 
+                42.64402
+              ], 
+              [
+                -87.819407, 
+                42.617327
+              ], 
+              [
+                -87.819674, 
+                42.61582
+              ], 
+              [
+                -87.819374, 
+                42.60662
+              ], 
+              [
+                -87.815736, 
+                42.596045
+              ], 
+              [
+                -87.815074, 
+                42.59412
+              ], 
+              [
+                -87.810873, 
+                42.58732
+              ], 
+              [
+                -87.811617, 
+                42.584809
+              ], 
+              [
+                -87.812871, 
+                42.580576
+              ], 
+              [
+                -87.813273, 
+                42.57922
+              ], 
+              [
+                -87.813223, 
+                42.576759
+              ], 
+              [
+                -87.813142, 
+                42.572768
+              ], 
+              [
+                -87.813135, 
+                42.572424
+              ], 
+              [
+                -87.812851, 
+                42.558352
+              ], 
+              [
+                -87.812724, 
+                42.552104
+              ], 
+              [
+                -87.812632, 
+                42.547562
+              ], 
+              [
+                -87.812273, 
+                42.52982
+              ], 
+              [
+                -87.809672, 
+                42.51482
+              ], 
+              [
+                -87.800477, 
+                42.49192
+              ], 
+              [
+                -87.800561, 
+                42.49192
+              ], 
+              [
+                -87.815872, 
+                42.49192
+              ], 
+              [
+                -87.843594, 
+                42.492307
+              ], 
+              [
+                -87.900242, 
+                42.49302
+              ], 
+              [
+                -87.971279, 
+                42.494019
+              ], 
+              [
+                -87.99018, 
+                42.494519
+              ], 
+              [
+                -88.049782, 
+                42.495319
+              ], 
+              [
+                -88.199521, 
+                42.496013
+              ], 
+              [
+                -88.200172, 
+                42.496016
+              ], 
+              [
+                -88.2169, 
+                42.495923
+              ], 
+              [
+                -88.271691, 
+                42.494818
+              ], 
+              [
+                -88.304692, 
+                42.494773
+              ], 
+              [
+                -88.417396, 
+                42.494618
+              ], 
+              [
+                -88.461397, 
+                42.494618
+              ], 
+              [
+                -88.470597, 
+                42.494672
+              ], 
+              [
+                -88.506912, 
+                42.494883
+              ], 
+              [
+                -88.707378, 
+                42.493587
+              ], 
+              [
+                -88.70738, 
+                42.493587
+              ], 
+              [
+                -88.776496, 
+                42.49402
+              ], 
+              [
+                -88.940388, 
+                42.495046
+              ], 
+              [
+                -88.940391, 
+                42.495046
+              ], 
+              [
+                -88.943264, 
+                42.495114
+              ], 
+              [
+                -88.992659, 
+                42.496025
+              ], 
+              [
+                -88.992977, 
+                42.496026
+              ], 
+              [
+                -89.013667, 
+                42.496087
+              ], 
+              [
+                -89.013804, 
+                42.496097
+              ], 
+              [
+                -89.042898, 
+                42.496255
+              ], 
+              [
+                -89.071141, 
+                42.496208
+              ], 
+              [
+                -89.099012, 
+                42.496499
+              ], 
+              [
+                -89.116949, 
+                42.49691
+              ], 
+              [
+                -89.120365, 
+                42.496992
+              ], 
+              [
+                -89.125111, 
+                42.496957
+              ], 
+              [
+                -89.164905, 
+                42.497347
+              ], 
+              [
+                -89.166728, 
+                42.497256
+              ], 
+              [
+                -89.22627, 
+                42.497957
+              ], 
+              [
+                -89.228279, 
+                42.498047
+              ], 
+              [
+                -89.246972, 
+                42.49813
+              ], 
+              [
+                -89.250759, 
+                42.497994
+              ], 
+              [
+                -89.290896, 
+                42.498853
+              ], 
+              [
+                -89.361561, 
+                42.500012
+              ], 
+              [
+                -89.366031, 
+                42.500274
+              ], 
+              [
+                -89.401416, 
+                42.500433
+              ], 
+              [
+                -89.401432, 
+                42.500433
+              ], 
+              [
+                -89.420991, 
+                42.500589
+              ], 
+              [
+                -89.422567, 
+                42.50068
+              ], 
+              [
+                -89.423926, 
+                42.500818
+              ], 
+              [
+                -89.425162, 
+                42.500726
+              ], 
+              [
+                -89.4843, 
+                42.501426
+              ], 
+              [
+                -89.492612, 
+                42.501514
+              ], 
+              [
+                -89.493216, 
+                42.501514
+              ], 
+              [
+                -89.522542, 
+                42.501889
+              ], 
+              [
+                -89.564407, 
+                42.502628
+              ], 
+              [
+                -89.594779, 
+                42.503468
+              ], 
+              [
+                -89.600001, 
+                42.503672
+              ], 
+              [
+                -89.603523, 
+                42.503557
+              ], 
+              [
+                -89.61341, 
+                42.503942
+              ], 
+              [
+                -89.644176, 
+                42.50452
+              ], 
+              [
+                -89.650324, 
+                42.504613
+              ], 
+              [
+                -89.667596, 
+                42.50496
+              ], 
+              [
+                -89.690088, 
+                42.505191
+              ], 
+              [
+                -89.693487, 
+                42.505099
+              ], 
+              [
+                -89.742395, 
+                42.505382
+              ], 
+              [
+                -89.769643, 
+                42.505322
+              ], 
+              [
+                -89.780302, 
+                42.505349
+              ], 
+              [
+                -89.793957, 
+                42.505466
+              ], 
+              [
+                -89.799704, 
+                42.505421
+              ], 
+              [
+                -89.801897, 
+                42.505444
+              ], 
+              [
+                -89.837587, 
+                42.505543
+              ], 
+              [
+                -89.926224, 
+                42.505788
+              ], 
+              [
+                -89.926374, 
+                42.505788
+              ], 
+              [
+                -89.926484, 
+                42.505787
+              ], 
+              [
+                -89.985072, 
+                42.506464
+              ], 
+              [
+                -89.985645, 
+                42.506431
+              ], 
+              [
+                -89.997213, 
+                42.506755
+              ], 
+              [
+                -89.999314, 
+                42.506914
+              ], 
+              [
+                -90.017028, 
+                42.507127
+              ], 
+              [
+                -90.018665, 
+                42.507288
+              ], 
+              [
+                -90.093026, 
+                42.50816
+              ], 
+              [
+                -90.095004, 
+                42.507885
+              ], 
+              [
+                -90.142922, 
+                42.508151
+              ], 
+              [
+                -90.164363, 
+                42.508272
+              ], 
+              [
+                -90.181572, 
+                42.508068
+              ], 
+              [
+                -90.206073, 
+                42.507747
+              ], 
+              [
+                -90.22319, 
+                42.507765
+              ], 
+              [
+                -90.250622, 
+                42.507521
+              ], 
+              [
+                -90.253121, 
+                42.50734
+              ], 
+              [
+                -90.267143, 
+                42.507642
+              ], 
+              [
+                -90.269335, 
+                42.507726
+              ], 
+              [
+                -90.272864, 
+                42.507531
+              ], 
+              [
+                -90.303823, 
+                42.507469
+              ], 
+              [
+                -90.362652, 
+                42.507048
+              ], 
+              [
+                -90.367874, 
+                42.507114
+              ], 
+              [
+                -90.370673, 
+                42.507111
+              ], 
+              [
+                -90.405927, 
+                42.506891
+              ], 
+              [
+                -90.426378, 
+                42.507059
+              ], 
+              [
+                -90.437011, 
+                42.507147
+              ], 
+              [
+                -90.474955, 
+                42.507484
+              ], 
+              [
+                -90.479446, 
+                42.507416
+              ], 
+              [
+                -90.491716, 
+                42.507624
+              ], 
+              [
+                -90.532254, 
+                42.507573
+              ], 
+              [
+                -90.544347, 
+                42.507707
+              ], 
+              [
+                -90.544799, 
+                42.507713
+              ], 
+              [
+                -90.551165, 
+                42.507691
+              ], 
+              [
+                -90.555862, 
+                42.507509
+              ], 
+              [
+                -90.565441, 
+                42.5076
+              ], 
+              [
+                -90.614589, 
+                42.508053
+              ], 
+              [
+                -90.617731, 
+                42.508077
+              ], 
+              [
+                -90.640927, 
+                42.508302
+              ], 
+              [
+                -90.636927, 
+                42.513202
+              ], 
+              [
+                -90.636727, 
+                42.518702
+              ], 
+              [
+                -90.645627, 
+                42.5441
+              ], 
+              [
+                -90.702671, 
+                42.630756
+              ], 
+              [
+                -90.709204, 
+                42.636078
+              ], 
+              [
+                -90.720209, 
+                42.640758
+              ], 
+              [
+                -90.769495, 
+                42.651443
+              ], 
+              [
+                -90.84391, 
+                42.663071
+              ], 
+              [
+                -90.896961, 
+                42.674407
+              ], 
+              [
+                -90.949213, 
+                42.685573
+              ], 
+              [
+                -90.976314, 
+                42.695996
+              ], 
+              [
+                -91.053733, 
+                42.738238
+              ], 
+              [
+                -91.064896, 
+                42.757272
+              ], 
+              [
+                -91.069549, 
+                42.769628
+              ], 
+              [
+                -91.077643, 
+                42.803798
+              ], 
+              [
+                -91.100565, 
+                42.883078
+              ], 
+              [
+                -91.117411, 
+                42.895837
+              ], 
+              [
+                -91.143375, 
+                42.90467
+              ], 
+              [
+                -91.14556, 
+                42.90798
+              ], 
+              [
+                -91.163064, 
+                42.986781
+              ], 
+              [
+                -91.175167, 
+                43.041267
+              ], 
+              [
+                -91.178087, 
+                43.062044
+              ], 
+              [
+                -91.177222, 
+                43.080247
+              ], 
+              [
+                -91.178251, 
+                43.124982
+              ], 
+              [
+                -91.175253, 
+                43.134665
+              ], 
+              [
+                -91.1562, 
+                43.142945
+              ], 
+              [
+                -91.1462, 
+                43.152405
+              ], 
+              [
+                -91.062562, 
+                43.243165
+              ], 
+              [
+                -91.057918, 
+                43.255366
+              ], 
+              [
+                -91.085652, 
+                43.29187
+              ], 
+              [
+                -91.107237, 
+                43.313645
+              ], 
+              [
+                -91.210233, 
+                43.372064
+              ], 
+              [
+                -91.20555, 
+                43.422949
+              ], 
+              [
+                -91.217706, 
+                43.50055
+              ], 
+              [
+                -91.265091, 
+                43.609977
+              ], 
+              [
+                -91.268748, 
+                43.615348
+              ], 
+              [
+                -91.273316, 
+                43.668307
+              ], 
+              [
+                -91.268198, 
+                43.726571
+              ], 
+              [
+                -91.262436, 
+                43.792166
+              ], 
+              [
+                -91.284138, 
+                43.847065
+              ], 
+              [
+                -91.298815, 
+                43.856555
+              ], 
+              [
+                -91.310991, 
+                43.867381
+              ], 
+              [
+                -91.363242, 
+                43.926563
+              ], 
+              [
+                -91.420114, 
+                43.984243
+              ], 
+              [
+                -91.432522, 
+                43.996827
+              ], 
+              [
+                -91.43738, 
+                43.999962
+              ], 
+              [
+                -91.463515, 
+                44.009041
+              ], 
+              [
+                -91.505918, 
+                44.018651
+              ], 
+              [
+                -91.547028, 
+                44.022226
+              ], 
+              [
+                -91.559197, 
+                44.023959
+              ], 
+              [
+                -91.580019, 
+                44.026925
+              ], 
+              [
+                -91.59207, 
+                44.031372
+              ], 
+              [
+                -91.67252, 
+                44.091286
+              ], 
+              [
+                -91.721552, 
+                44.130342
+              ], 
+              [
+                -91.740871, 
+                44.133918
+              ], 
+              [
+                -91.808064, 
+                44.159262
+              ], 
+              [
+                -91.862858, 
+                44.193001
+              ], 
+              [
+                -91.875158, 
+                44.200575
+              ], 
+              [
+                -91.892698, 
+                44.231105
+              ], 
+              [
+                -91.892963, 
+                44.235149
+              ], 
+              [
+                -91.887905, 
+                44.246398
+              ], 
+              [
+                -91.887189, 
+                44.252513
+              ], 
+              [
+                -91.918625, 
+                44.322671
+              ], 
+              [
+                -91.92559, 
+                44.333548
+              ], 
+              [
+                -91.9636, 
+                44.362112
+              ], 
+              [
+                -91.972493, 
+                44.36676
+              ], 
+              [
+                -92.046285, 
+                44.394398
+              ], 
+              [
+                -92.083925, 
+                44.406211
+              ], 
+              [
+                -92.115296, 
+                44.416056
+              ], 
+              [
+                -92.221083, 
+                44.440386
+              ], 
+              [
+                -92.233897, 
+                44.446334
+              ], 
+              [
+                -92.24201, 
+                44.454254
+              ], 
+              [
+                -92.276784, 
+                44.473649
+              ], 
+              [
+                -92.291005, 
+                44.485464
+              ], 
+              [
+                -92.302215, 
+                44.500298
+              ], 
+              [
+                -92.303046, 
+                44.518646
+              ], 
+              [
+                -92.314071, 
+                44.538014
+              ], 
+              [
+                -92.316425, 
+                44.540792
+              ], 
+              [
+                -92.319938, 
+                44.54494
+              ], 
+              [
+                -92.329013, 
+                44.550895
+              ], 
+              [
+                -92.340058, 
+                44.555273
+              ], 
+              [
+                -92.357313, 
+                44.55848
+              ], 
+              [
+                -92.491773, 
+                44.566003
+              ], 
+              [
+                -92.534186, 
+                44.570375
+              ], 
+              [
+                -92.549685, 
+                44.576
+              ], 
+              [
+                -92.619774, 
+                44.629214
+              ], 
+              [
+                -92.621733, 
+                44.638983
+              ], 
+              [
+                -92.632105, 
+                44.649027
+              ], 
+              [
+                -92.732042, 
+                44.713775
+              ], 
+              [
+                -92.737259, 
+                44.717155
+              ], 
+              [
+                -92.802402, 
+                44.745167
+              ], 
+              [
+                -92.802201, 
+                44.745714
+              ], 
+              [
+                -92.784443, 
+                44.793958
+              ], 
+              [
+                -92.765461, 
+                44.836202
+              ], 
+              [
+                -92.761845, 
+                44.860879
+              ], 
+              [
+                -92.761677, 
+                44.862022
+              ], 
+              [
+                -92.750645, 
+                44.937299
+              ], 
+              [
+                -92.768606, 
+                45.008016
+              ], 
+              [
+                -92.791206, 
+                45.045698
+              ], 
+              [
+                -92.792875, 
+                45.078489
+              ], 
+              [
+                -92.76713, 
+                45.194165
+              ], 
+              [
+                -92.765898, 
+                45.210173
+              ], 
+              [
+                -92.760615, 
+                45.278827
+              ], 
+              [
+                -92.751735, 
+                45.292667
+              ], 
+              [
+                -92.746139, 
+                45.296046
+              ], 
+              [
+                -92.732594, 
+                45.304224
+              ], 
+              [
+                -92.704794, 
+                45.326526
+              ], 
+              [
+                -92.664102, 
+                45.393309
+              ], 
+              [
+                -92.680234, 
+                45.464344
+              ], 
+              [
+                -92.72623, 
+                45.531085
+              ], 
+              [
+                -92.803432, 
+                45.5625
+              ], 
+              [
+                -92.823309, 
+                45.560934
+              ], 
+              [
+                -92.871082, 
+                45.567581
+              ], 
+              [
+                -92.883749, 
+                45.575483
+              ], 
+              [
+                -92.886421, 
+                45.594881
+              ], 
+              [
+                -92.888114, 
+                45.628377
+              ], 
+              [
+                -92.885661, 
+                45.644126
+              ], 
+              [
+                -92.883987, 
+                45.65487
+              ], 
+              [
+                -92.869193, 
+                45.717568
+              ], 
+              [
+                -92.863703, 
+                45.72182
+              ], 
+              [
+                -92.841051, 
+                45.730024
+              ], 
+              [
+                -92.803971, 
+                45.749805
+              ], 
+              [
+                -92.784621, 
+                45.764196
+              ], 
+              [
+                -92.76843, 
+                45.79801
+              ], 
+              [
+                -92.76249, 
+                45.819239
+              ], 
+              [
+                -92.734039, 
+                45.868108
+              ], 
+              [
+                -92.721128, 
+                45.883805
+              ], 
+              [
+                -92.707702, 
+                45.894901
+              ], 
+              [
+                -92.656125, 
+                45.924442
+              ], 
+              [
+                -92.443285, 
+                46.014648
+              ], 
+              [
+                -92.326877, 
+                46.066618
+              ], 
+              [
+                -92.306756, 
+                46.07241
+              ], 
+              [
+                -92.294033, 
+                46.074377
+              ], 
+              [
+                -92.294069, 
+                46.078346
+              ], 
+              [
+                -92.29353, 
+                46.113824
+              ], 
+              [
+                -92.293706, 
+                46.157321
+              ], 
+              [
+                -92.293744, 
+                46.166838
+              ], 
+              [
+                -92.293857, 
+                46.180073
+              ], 
+              [
+                -92.293558, 
+                46.224578
+              ], 
+              [
+                -92.293619, 
+                46.244043
+              ], 
+              [
+                -92.293074, 
+                46.295129
+              ], 
+              [
+                -92.293007, 
+                46.297987
+              ], 
+              [
+                -92.29284, 
+                46.304319
+              ], 
+              [
+                -92.292839, 
+                46.307107
+              ], 
+              [
+                -92.29288, 
+                46.313752
+              ], 
+              [
+                -92.292803, 
+                46.314628
+              ], 
+              [
+                -92.292782, 
+                46.319312
+              ], 
+              [
+                -92.292999, 
+                46.321894
+              ], 
+              [
+                -92.29286, 
+                46.41722
+              ], 
+              [
+                -92.292847, 
+                46.420876
+              ], 
+              [
+                -92.292727, 
+                46.431993
+              ], 
+              [
+                -92.29251, 
+                46.478761
+              ], 
+              [
+                -92.292371, 
+                46.495585
+              ], 
+              [
+                -92.291647, 
+                46.604649
+              ], 
+              [
+                -92.291597, 
+                46.624941
+              ], 
+              [
+                -92.292192, 
+                46.663242
+              ], 
+              [
+                -92.277155, 
+                46.655596
+              ], 
+              [
+                -92.276373, 
+                46.655198
+              ], 
+              [
+                -92.274465, 
+                46.654227
+              ], 
+              [
+                -92.269948, 
+                46.65193
+              ], 
+              [
+                -92.264462, 
+                46.651393
+              ], 
+              [
+                -92.262503, 
+                46.651201
+              ], 
+              [
+                -92.256654, 
+                46.650628
+              ], 
+              [
+                -92.254379, 
+                46.650405
+              ], 
+              [
+                -92.250861, 
+                46.650061
+              ], 
+              [
+                -92.242493, 
+                46.649241
+              ], 
+              [
+                -92.234815, 
+                46.64942
+              ], 
+              [
+                -92.232647, 
+                46.64947
+              ], 
+              [
+                -92.231944, 
+                46.649486
+              ], 
+              [
+                -92.228155, 
+                46.649574
+              ], 
+              [
+                -92.222338, 
+                46.64971
+              ], 
+              [
+                -92.221731, 
+                46.649724
+              ], 
+              [
+                -92.212392, 
+                46.649941
+              ], 
+              [
+                -92.207092, 
+                46.651941
+              ], 
+              [
+                -92.202292, 
+                46.655041
+              ], 
+              [
+                -92.197145, 
+                46.663408
+              ], 
+              [
+                -92.191501, 
+                46.672586
+              ], 
+              [
+                -92.191075, 
+                46.673278
+              ], 
+              [
+                -92.187592, 
+                46.678941
+              ], 
+              [
+                -92.187795, 
+                46.690185
+              ], 
+              [
+                -92.193439, 
+                46.695202
+              ], 
+              [
+                -92.194087, 
+                46.696626
+              ], 
+              [
+                -92.194562, 
+                46.697672
+              ], 
+              [
+                -92.196575, 
+                46.7021
+              ], 
+              [
+                -92.196435, 
+                46.702938
+              ], 
+              [
+                -92.196264, 
+                46.703966
+              ], 
+              [
+                -92.195321, 
+                46.709626
+              ], 
+              [
+                -92.189091, 
+                46.717541
+              ], 
+              [
+                -92.172997, 
+                46.724444
+              ], 
+              [
+                -92.170413, 
+                46.725553
+              ], 
+              [
+                -92.11659, 
+                46.74864
+              ], 
+              [
+                -92.08949, 
+                46.74924
+              ], 
+              [
+                -92.03399, 
+                46.708939
+              ], 
+              [
+                -92.02472, 
+                46.705624
+              ], 
+              [
+                -92.020289, 
+                46.704039
+              ], 
+              [
+                -92.01529, 
+                46.706469
+              ], 
+              [
+                -92.007989, 
+                46.705039
+              ], 
+              [
+                -91.987889, 
+                46.692739
+              ], 
+              [
+                -91.973389, 
+                46.686439
+              ], 
+              [
+                -91.961889, 
+                46.682539
+              ], 
+              [
+                -91.942988, 
+                46.679939
+              ], 
+              [
+                -91.930261, 
+                46.682273
+              ], 
+              [
+                -91.886963, 
+                46.690211
+              ], 
+              [
+                -91.87873, 
+                46.690811
+              ], 
+              [
+                -91.877371, 
+                46.69091
+              ], 
+              [
+                -91.876183, 
+                46.690997
+              ], 
+              [
+                -91.87484, 
+                46.691095
+              ], 
+              [
+                -91.866583, 
+                46.691697
+              ], 
+              [
+                -91.864491, 
+                46.69185
+              ], 
+              [
+                -91.857462, 
+                46.692362
+              ], 
+              [
+                -91.840288, 
+                46.689693
+              ], 
+              [
+                -91.831355, 
+                46.689906
+              ], 
+              [
+                -91.820027, 
+                46.690176
+              ], 
+              [
+                -91.817185, 
+                46.690604
+              ], 
+              [
+                -91.817099, 
+                46.690617
+              ], 
+              [
+                -91.814669, 
+                46.690982
+              ], 
+              [
+                -91.799987, 
+                46.693192
+              ], 
+              [
+                -91.798455, 
+                46.693422
+              ], 
+              [
+                -91.790473, 
+                46.694624
+              ], 
+              [
+                -91.790132, 
+                46.694675
+              ], 
+              [
+                -91.781928, 
+                46.697604
+              ], 
+              [
+                -91.758619, 
+                46.705927
+              ], 
+              [
+                -91.74965, 
+                46.709129
+              ], 
+              [
+                -91.748787, 
+                46.709341
+              ], 
+              [
+                -91.735632, 
+                46.712575
+              ], 
+              [
+                -91.677021, 
+                46.726984
+              ], 
+              [
+                -91.675621, 
+                46.727329
+              ], 
+              [
+                -91.667534, 
+                46.729317
+              ], 
+              [
+                -91.662426, 
+                46.730572
+              ], 
+              [
+                -91.66067, 
+                46.731004
+              ], 
+              [
+                -91.658739, 
+                46.731479
+              ], 
+              [
+                -91.652915, 
+                46.732911
+              ], 
+              [
+                -91.646146, 
+                46.734575
+              ], 
+              [
+                -91.645502, 
+                46.734733
+              ], 
+              [
+                -91.636919, 
+                46.737802
+              ], 
+              [
+                -91.63604, 
+                46.738116
+              ], 
+              [
+                -91.636005, 
+                46.738128
+              ], 
+              [
+                -91.635161, 
+                46.73843
+              ], 
+              [
+                -91.635107, 
+                46.738449
+              ], 
+              [
+                -91.625387, 
+                46.741924
+              ], 
+              [
+                -91.593442, 
+                46.753345
+              ], 
+              [
+                -91.592742, 
+                46.753595
+              ], 
+              [
+                -91.592203, 
+                46.753788
+              ], 
+              [
+                -91.590684, 
+                46.754331
+              ], 
+              [
+                -91.576632, 
+                46.757037
+              ], 
+              [
+                -91.574291, 
+                46.757488
+              ], 
+              [
+                -91.574019, 
+                46.757466
+              ], 
+              [
+                -91.571423, 
+                46.75726
+              ], 
+              [
+                -91.569075, 
+                46.757074
+              ], 
+              [
+                -91.557503, 
+                46.756155
+              ], 
+              [
+                -91.551445, 
+                46.755674
+              ], 
+              [
+                -91.551408, 
+                46.755666
+              ], 
+              [
+                -91.543057, 
+                46.755153
+              ], 
+              [
+                -91.537583, 
+                46.754817
+              ], 
+              [
+                -91.537115, 
+                46.754788
+              ], 
+              [
+                -91.535764, 
+                46.754926
+              ], 
+              [
+                -91.524766, 
+                46.756052
+              ], 
+              [
+                -91.517712, 
+                46.756774
+              ], 
+              [
+                -91.511077, 
+                46.757453
+              ], 
+              [
+                -91.510595, 
+                46.757614
+              ], 
+              [
+                -91.507819, 
+                46.758538
+              ], 
+              [
+                -91.507586, 
+                46.758615
+              ], 
+              [
+                -91.50716, 
+                46.758757
+              ], 
+              [
+                -91.500042, 
+                46.761128
+              ], 
+              [
+                -91.499696, 
+                46.761243
+              ], 
+              [
+                -91.493643, 
+                46.765757
+              ], 
+              [
+                -91.493037, 
+                46.76621
+              ], 
+              [
+                -91.492493, 
+                46.766615
+              ], 
+              [
+                -91.492429, 
+                46.766663
+              ], 
+              [
+                -91.491744, 
+                46.766732
+              ], 
+              [
+                -91.489125, 
+                46.766997
+              ], 
+              [
+                -91.488247, 
+                46.767086
+              ], 
+              [
+                -91.472097, 
+                46.768717
+              ], 
+              [
+                -91.470181, 
+                46.768911
+              ], 
+              [
+                -91.470124, 
+                46.768923
+              ], 
+              [
+                -91.467168, 
+                46.769546
+              ], 
+              [
+                -91.462774, 
+                46.770471
+              ], 
+              [
+                -91.44957, 
+                46.773252
+              ], 
+              [
+                -91.449327, 
+                46.773303
+              ], 
+              [
+                -91.436955, 
+                46.777586
+              ], 
+              [
+                -91.428526, 
+                46.780504
+              ], 
+              [
+                -91.426491, 
+                46.781208
+              ], 
+              [
+                -91.423713, 
+                46.78217
+              ], 
+              [
+                -91.411799, 
+                46.78964
+              ], 
+              [
+                -91.398256, 
+                46.791213
+              ], 
+              [
+                -91.39714, 
+                46.791047
+              ], 
+              [
+                -91.396959, 
+                46.79102
+              ], 
+              [
+                -91.396261, 
+                46.790917
+              ], 
+              [
+                -91.394764, 
+                46.790694
+              ], 
+              [
+                -91.391469, 
+                46.790205
+              ], 
+              [
+                -91.390774, 
+                46.790316
+              ], 
+              [
+                -91.386155, 
+                46.791057
+              ], 
+              [
+                -91.380577, 
+                46.791951
+              ], 
+              [
+                -91.369387, 
+                46.793745
+              ], 
+              [
+                -91.368819, 
+                46.793836
+              ], 
+              [
+                -91.367498, 
+                46.794545
+              ], 
+              [
+                -91.366888, 
+                46.794872
+              ], 
+              [
+                -91.365974, 
+                46.795362
+              ], 
+              [
+                -91.365536, 
+                46.795597
+              ], 
+              [
+                -91.365277, 
+                46.795736
+              ], 
+              [
+                -91.363644, 
+                46.796612
+              ], 
+              [
+                -91.360804, 
+                46.798136
+              ], 
+              [
+                -91.359434, 
+                46.799612
+              ], 
+              [
+                -91.35533, 
+                46.804035
+              ], 
+              [
+                -91.352191, 
+                46.807417
+              ], 
+              [
+                -91.33825, 
+                46.817704
+              ], 
+              [
+                -91.33757, 
+                46.817969
+              ], 
+              [
+                -91.330463, 
+                46.820735
+              ], 
+              [
+                -91.330433, 
+                46.820746
+              ], 
+              [
+                -91.328848, 
+                46.821363
+              ], 
+              [
+                -91.326045, 
+                46.822454
+              ], 
+              [
+                -91.322202, 
+                46.82395
+              ], 
+              [
+                -91.32101, 
+                46.824414
+              ], 
+              [
+                -91.315061, 
+                46.826729
+              ], 
+              [
+                -91.314815, 
+                46.826825
+              ], 
+              [
+                -91.30705, 
+                46.829007
+              ], 
+              [
+                -91.305487, 
+                46.829446
+              ], 
+              [
+                -91.304512, 
+                46.82972
+              ], 
+              [
+                -91.303594, 
+                46.829978
+              ], 
+              [
+                -91.302295, 
+                46.830343
+              ], 
+              [
+                -91.301879, 
+                46.830384
+              ], 
+              [
+                -91.289541, 
+                46.831604
+              ], 
+              [
+                -91.278558, 
+                46.832689
+              ], 
+              [
+                -91.266404, 
+                46.833891
+              ], 
+              [
+                -91.265866, 
+                46.833944
+              ], 
+              [
+                -91.265816, 
+                46.83396
+              ], 
+              [
+                -91.263725, 
+                46.834632
+              ], 
+              [
+                -91.263445, 
+                46.834722
+              ], 
+              [
+                -91.256873, 
+                46.836833
+              ], 
+              [
+                -91.256705, 
+                46.836887
+              ], 
+              [
+                -91.256563, 
+                46.836989
+              ], 
+              [
+                -91.250806, 
+                46.841135
+              ], 
+              [
+                -91.249471, 
+                46.842531
+              ], 
+              [
+                -91.23773, 
+                46.854809
+              ], 
+              [
+                -91.235283, 
+                46.857368
+              ], 
+              [
+                -91.232733, 
+                46.860035
+              ], 
+              [
+                -91.226796, 
+                46.86361
+              ], 
+              [
+                -91.214886, 
+                46.866137
+              ], 
+              [
+                -91.211647, 
+                46.866824
+              ], 
+              [
+                -91.211113, 
+                46.866696
+              ], 
+              [
+                -91.207524, 
+                46.865835
+              ], 
+              [
+                -91.204839, 
+                46.859727
+              ], 
+              [
+                -91.204439, 
+                46.858816
+              ], 
+              [
+                -91.200107, 
+                46.854017
+              ], 
+              [
+                -91.178292, 
+                46.844259
+              ], 
+              [
+                -91.168297, 
+                46.844727
+              ], 
+              [
+                -91.167601, 
+                46.84476
+              ], 
+              [
+                -91.156108, 
+                46.855414
+              ], 
+              [
+                -91.148026, 
+                46.862906
+              ], 
+              [
+                -91.147837, 
+                46.863082
+              ], 
+              [
+                -91.144266, 
+                46.870301
+              ], 
+              [
+                -91.143877, 
+                46.870576
+              ], 
+              [
+                -91.14385, 
+                46.870595
+              ], 
+              [
+                -91.140301, 
+                46.873105
+              ], 
+              [
+                -91.140165, 
+                46.873201
+              ], 
+              [
+                -91.139758, 
+                46.873148
+              ], 
+              [
+                -91.134668, 
+                46.87249
+              ], 
+              [
+                -91.133772, 
+                46.871043
+              ], 
+              [
+                -91.133337, 
+                46.870341
+              ], 
+              [
+                -91.133674, 
+                46.869348
+              ], 
+              [
+                -91.134184, 
+                46.867843
+              ], 
+              [
+                -91.134724, 
+                46.86625
+              ], 
+              [
+                -91.134882, 
+                46.865784
+              ], 
+              [
+                -91.136512, 
+                46.860975
+              ], 
+              [
+                -91.134977, 
+                46.859023
+              ], 
+              [
+                -91.134948, 
+                46.858986
+              ], 
+              [
+                -91.134732, 
+                46.858935
+              ], 
+              [
+                -91.12353, 
+                46.856273
+              ], 
+              [
+                -91.123109, 
+                46.856173
+              ], 
+              [
+                -91.11854, 
+                46.856548
+              ], 
+              [
+                -91.107323, 
+                46.857469
+              ], 
+              [
+                -91.10549, 
+                46.85762
+              ], 
+              [
+                -91.09878, 
+                46.86056
+              ], 
+              [
+                -91.098346, 
+                46.86075
+              ], 
+              [
+                -91.098125, 
+                46.860847
+              ], 
+              [
+                -91.09755, 
+                46.861098
+              ], 
+              [
+                -91.096565, 
+                46.86153
+              ], 
+              [
+                -91.096342, 
+                46.862965
+              ], 
+              [
+                -91.096028, 
+                46.864987
+              ], 
+              [
+                -91.095058, 
+                46.871234
+              ], 
+              [
+                -91.094828, 
+                46.872714
+              ], 
+              [
+                -91.094724, 
+                46.873383
+              ], 
+              [
+                -91.09462, 
+                46.87405
+              ], 
+              [
+                -91.094498, 
+                46.874837
+              ], 
+              [
+                -91.094096, 
+                46.877423
+              ], 
+              [
+                -91.093714, 
+                46.879882
+              ], 
+              [
+                -91.090916, 
+                46.88267
+              ], 
+              [
+                -91.088721, 
+                46.882877
+              ], 
+              [
+                -91.085077, 
+                46.88322
+              ], 
+              [
+                -91.080951, 
+                46.883609
+              ], 
+              [
+                -91.072584, 
+                46.880126
+              ], 
+              [
+                -91.069331, 
+                46.878772
+              ], 
+              [
+                -91.06822, 
+                46.878309
+              ], 
+              [
+                -91.066193, 
+                46.87871
+              ], 
+              [
+                -91.056258, 
+                46.880678
+              ], 
+              [
+                -91.052991, 
+                46.881325
+              ], 
+              [
+                -91.050153, 
+                46.883037
+              ], 
+              [
+                -91.049232, 
+                46.883593
+              ], 
+              [
+                -91.04922, 
+                46.8836
+              ], 
+              [
+                -91.042992, 
+                46.887358
+              ], 
+              [
+                -91.03989, 
+                46.88923
+              ], 
+              [
+                -91.036622, 
+                46.893594
+              ], 
+              [
+                -91.036193, 
+                46.895523
+              ], 
+              [
+                -91.035936, 
+                46.896679
+              ], 
+              [
+                -91.034518, 
+                46.903053
+              ], 
+              [
+                -91.033447, 
+                46.903642
+              ], 
+              [
+                -91.032508, 
+                46.904158
+              ], 
+              [
+                -91.030583, 
+                46.905215
+              ], 
+              [
+                -91.024009, 
+                46.908827
+              ], 
+              [
+                -91.023976, 
+                46.908845
+              ], 
+              [
+                -91.021538, 
+                46.910185
+              ], 
+              [
+                -91.01967, 
+                46.911211
+              ], 
+              [
+                -91.019141, 
+                46.911502
+              ], 
+              [
+                -91.018045, 
+                46.911872
+              ], 
+              [
+                -91.018024, 
+                46.911879
+              ], 
+              [
+                -91.016237, 
+                46.912481
+              ], 
+              [
+                -91.016184, 
+                46.912499
+              ], 
+              [
+                -91.010689, 
+                46.914352
+              ], 
+              [
+                -91.007997, 
+                46.915259
+              ], 
+              [
+                -91.005872, 
+                46.915976
+              ], 
+              [
+                -91.005199, 
+                46.916203
+              ], 
+              [
+                -91.004892, 
+                46.916192
+              ], 
+              [
+                -91.004752, 
+                46.916187
+              ], 
+              [
+                -90.998848, 
+                46.915975
+              ], 
+              [
+                -90.997943, 
+                46.916367
+              ], 
+              [
+                -90.996825, 
+                46.916851
+              ], 
+              [
+                -90.995149, 
+                46.917577
+              ], 
+              [
+                -90.987013, 
+                46.923776
+              ], 
+              [
+                -90.985815, 
+                46.924689
+              ], 
+              [
+                -90.984617, 
+                46.925602
+              ], 
+              [
+                -90.983192, 
+                46.927662
+              ], 
+              [
+                -90.980235, 
+                46.931937
+              ], 
+              [
+                -90.973755, 
+                46.941304
+              ], 
+              [
+                -90.968419, 
+                46.94391
+              ], 
+              [
+                -90.964865, 
+                46.94378
+              ], 
+              [
+                -90.964072, 
+                46.943369
+              ], 
+              [
+                -90.954612, 
+                46.938468
+              ], 
+              [
+                -90.954537, 
+                46.938429
+              ], 
+              [
+                -90.953865, 
+                46.938283
+              ], 
+              [
+                -90.953685, 
+                46.938244
+              ], 
+              [
+                -90.94056, 
+                46.935394
+              ], 
+              [
+                -90.92204, 
+                46.931372
+              ], 
+              [
+                -90.921811, 
+                46.931322
+              ], 
+              [
+                -90.921382, 
+                46.931434
+              ], 
+              [
+                -90.914044, 
+                46.933346
+              ], 
+              [
+                -90.913838, 
+                46.9334
+              ], 
+              [
+                -90.908654, 
+                46.941221
+              ], 
+              [
+                -90.908598, 
+                46.941305
+              ], 
+              [
+                -90.880358, 
+                46.957661
+              ], 
+              [
+                -90.879621, 
+                46.958088
+              ], 
+              [
+                -90.877324, 
+                46.95891
+              ], 
+              [
+                -90.877165, 
+                46.958967
+              ], 
+              [
+                -90.877092, 
+                46.958993
+              ], 
+              [
+                -90.876778, 
+                46.959106
+              ], 
+              [
+                -90.876544, 
+                46.959189
+              ], 
+              [
+                -90.876213, 
+                46.959308
+              ], 
+              [
+                -90.876211, 
+                46.959309
+              ], 
+              [
+                -90.876006, 
+                46.959382
+              ], 
+              [
+                -90.875995, 
+                46.959386
+              ], 
+              [
+                -90.875635, 
+                46.959515
+              ], 
+              [
+                -90.871126, 
+                46.961129
+              ], 
+              [
+                -90.855874, 
+                46.962232
+              ], 
+              [
+                -90.855165, 
+                46.962045
+              ], 
+              [
+                -90.838814, 
+                46.957728
+              ], 
+              [
+                -90.837973, 
+                46.957506
+              ], 
+              [
+                -90.837716, 
+                46.957438
+              ], 
+              [
+                -90.837617, 
+                46.957379
+              ], 
+              [
+                -90.833091, 
+                46.954686
+              ], 
+              [
+                -90.805028, 
+                46.937987
+              ], 
+              [
+                -90.786595, 
+                46.927019
+              ], 
+              [
+                -90.786502, 
+                46.926964
+              ], 
+              [
+                -90.78601, 
+                46.926672
+              ], 
+              [
+                -90.785606, 
+                46.926431
+              ], 
+              [
+                -90.760095, 
+                46.903296
+              ], 
+              [
+                -90.759364, 
+                46.902634
+              ], 
+              [
+                -90.75563, 
+                46.899247
+              ], 
+              [
+                -90.754552, 
+                46.89827
+              ], 
+              [
+                -90.754388, 
+                46.898037
+              ], 
+              [
+                -90.752725, 
+                46.89568
+              ], 
+              [
+                -90.751329, 
+                46.893702
+              ], 
+              [
+                -90.751048, 
+                46.893305
+              ], 
+              [
+                -90.750858, 
+                46.893035
+              ], 
+              [
+                -90.750871, 
+                46.892643
+              ], 
+              [
+                -90.750889, 
+                46.892136
+              ], 
+              [
+                -90.750952, 
+                46.890293
+              ], 
+              [
+                -90.751031, 
+                46.887963
+              ], 
+              [
+                -90.751151, 
+                46.887863
+              ], 
+              [
+                -90.754692, 
+                46.884915
+              ], 
+              [
+                -90.754734, 
+                46.88488
+              ], 
+              [
+                -90.754753, 
+                46.884875
+              ], 
+              [
+                -90.761295, 
+                46.883238
+              ], 
+              [
+                -90.761567, 
+                46.88317
+              ], 
+              [
+                -90.77017, 
+                46.876296
+              ], 
+              [
+                -90.77024, 
+                46.876184
+              ], 
+              [
+                -90.780972, 
+                46.858989
+              ], 
+              [
+                -90.781011, 
+                46.858911
+              ], 
+              [
+                -90.78804, 
+                46.844886
+              ], 
+              [
+                -90.792034, 
+                46.836916
+              ], 
+              [
+                -90.793713, 
+                46.833566
+              ], 
+              [
+                -90.795693, 
+                46.829614
+              ], 
+              [
+                -90.795957, 
+                46.829087
+              ], 
+              [
+                -90.796437, 
+                46.828129
+              ], 
+              [
+                -90.797404, 
+                46.8262
+              ], 
+              [
+                -90.798545, 
+                46.823922
+              ], 
+              [
+                -90.798936, 
+                46.823143
+              ], 
+              [
+                -90.801041, 
+                46.821626
+              ], 
+              [
+                -90.80137, 
+                46.821389
+              ], 
+              [
+                -90.80927, 
+                46.815695
+              ], 
+              [
+                -90.821967, 
+                46.806545
+              ], 
+              [
+                -90.825696, 
+                46.803858
+              ], 
+              [
+                -90.826337, 
+                46.80211
+              ], 
+              [
+                -90.82735, 
+                46.799345
+              ], 
+              [
+                -90.828057, 
+                46.797415
+              ], 
+              [
+                -90.829048, 
+                46.79641
+              ], 
+              [
+                -90.829933, 
+                46.795513
+              ], 
+              [
+                -90.830094, 
+                46.795349
+              ], 
+              [
+                -90.831645, 
+                46.793777
+              ], 
+              [
+                -90.835008, 
+                46.790366
+              ], 
+              [
+                -90.835028, 
+                46.790346
+              ], 
+              [
+                -90.835319, 
+                46.790051
+              ], 
+              [
+                -90.835607, 
+                46.789759
+              ], 
+              [
+                -90.847214, 
+                46.789274
+              ], 
+              [
+                -90.854916, 
+                46.788952
+              ], 
+              [
+                -90.855472, 
+                46.788929
+              ], 
+              [
+                -90.855746, 
+                46.788918
+              ], 
+              [
+                -90.856317, 
+                46.788894
+              ], 
+              [
+                -90.856531, 
+                46.788885
+              ], 
+              [
+                -90.856677, 
+                46.788712
+              ], 
+              [
+                -90.859999, 
+                46.784769
+              ], 
+              [
+                -90.863542, 
+                46.780565
+              ], 
+              [
+                -90.859724, 
+                46.774433
+              ], 
+              [
+                -90.859445, 
+                46.773985
+              ], 
+              [
+                -90.86088, 
+                46.771079
+              ], 
+              [
+                -90.862333, 
+                46.768135
+              ], 
+              [
+                -90.866337, 
+                46.764626
+              ], 
+              [
+                -90.866586, 
+                46.764408
+              ], 
+              [
+                -90.866694, 
+                46.764361
+              ], 
+              [
+                -90.874598, 
+                46.760902
+              ], 
+              [
+                -90.875925, 
+                46.760321
+              ], 
+              [
+                -90.885021, 
+                46.756341
+              ], 
+              [
+                -90.883443, 
+                46.747255
+              ], 
+              [
+                -90.883396, 
+                46.746987
+              ], 
+              [
+                -90.882099, 
+                46.744622
+              ], 
+              [
+                -90.881622, 
+                46.743753
+              ], 
+              [
+                -90.87881, 
+                46.738629
+              ], 
+              [
+                -90.878343, 
+                46.737777
+              ], 
+              [
+                -90.876538, 
+                46.734487
+              ], 
+              [
+                -90.876426, 
+                46.734284
+              ], 
+              [
+                -90.876334, 
+                46.734115
+              ], 
+              [
+                -90.876039, 
+                46.733577
+              ], 
+              [
+                -90.875829, 
+                46.733195
+              ], 
+              [
+                -90.871612, 
+                46.725509
+              ], 
+              [
+                -90.870577, 
+                46.723623
+              ], 
+              [
+                -90.870396, 
+                46.723293
+              ], 
+              [
+                -90.869461, 
+                46.722039
+              ], 
+              [
+                -90.868607, 
+                46.720896
+              ], 
+              [
+                -90.868531, 
+                46.720794
+              ], 
+              [
+                -90.868273, 
+                46.720448
+              ], 
+              [
+                -90.868024, 
+                46.720115
+              ], 
+              [
+                -90.863864, 
+                46.714539
+              ], 
+              [
+                -90.861353, 
+                46.711173
+              ], 
+              [
+                -90.860897, 
+                46.710562
+              ], 
+              [
+                -90.859797, 
+                46.709088
+              ], 
+              [
+                -90.859601, 
+                46.708826
+              ], 
+              [
+                -90.853225, 
+                46.70028
+              ], 
+              [
+                -90.852916, 
+                46.699866
+              ], 
+              [
+                -90.852704, 
+                46.699582
+              ], 
+              [
+                -90.852731, 
+                46.699437
+              ], 
+              [
+                -90.853644, 
+                46.694464
+              ], 
+              [
+                -90.853807, 
+                46.693579
+              ], 
+              [
+                -90.853829, 
+                46.693457
+              ], 
+              [
+                -90.853927, 
+                46.693369
+              ], 
+              [
+                -90.854539, 
+                46.692822
+              ], 
+              [
+                -90.854692, 
+                46.692686
+              ], 
+              [
+                -90.865494, 
+                46.683033
+              ], 
+              [
+                -90.865745, 
+                46.682808
+              ], 
+              [
+                -90.867423, 
+                46.681309
+              ], 
+              [
+                -90.867823, 
+                46.680952
+              ], 
+              [
+                -90.867981, 
+                46.68081
+              ], 
+              [
+                -90.868376, 
+                46.680457
+              ], 
+              [
+                -90.868468, 
+                46.680375
+              ], 
+              [
+                -90.870079, 
+                46.679449
+              ], 
+              [
+                -90.870532, 
+                46.679189
+              ], 
+              [
+                -90.870739, 
+                46.67907
+              ], 
+              [
+                -90.870956, 
+                46.678945
+              ], 
+              [
+                -90.885869, 
+                46.670374
+              ], 
+              [
+                -90.885943, 
+                46.670353
+              ], 
+              [
+                -90.896529, 
+                46.667315
+              ], 
+              [
+                -90.905273, 
+                46.664807
+              ], 
+              [
+                -90.905567, 
+                46.664722
+              ], 
+              [
+                -90.909176, 
+                46.663687
+              ], 
+              [
+                -90.909688, 
+                46.66354
+              ], 
+              [
+                -90.911281, 
+                46.663083
+              ], 
+              [
+                -90.911353, 
+                46.662996
+              ], 
+              [
+                -90.914619, 
+                46.659054
+              ], 
+              [
+                -90.915152, 
+                46.65841
+              ], 
+              [
+                -90.915367, 
+                46.657615
+              ], 
+              [
+                -90.920813, 
+                46.637432
+              ], 
+              [
+                -90.920835, 
+                46.637351
+              ], 
+              [
+                -90.92085, 
+                46.636492
+              ], 
+              [
+                -90.920867, 
+                46.635515
+              ], 
+              [
+                -90.920936, 
+                46.631606
+              ], 
+              [
+                -90.920936, 
+                46.631584
+              ], 
+              [
+                -90.924487, 
+                46.625417
+              ], 
+              [
+                -90.924489, 
+                46.625415
+              ], 
+              [
+                -90.926745, 
+                46.622698
+              ], 
+              [
+                -90.931623, 
+                46.616822
+              ], 
+              [
+                -90.93212, 
+                46.616223
+              ], 
+              [
+                -90.933208, 
+                46.614913
+              ], 
+              [
+                -90.93831, 
+                46.608768
+              ], 
+              [
+                -90.938617, 
+                46.608398
+              ], 
+              [
+                -90.93868, 
+                46.608322
+              ], 
+              [
+                -90.949532, 
+                46.603019
+              ], 
+              [
+                -90.949621, 
+                46.602975
+              ], 
+              [
+                -90.950215, 
+                46.602248
+              ], 
+              [
+                -90.950544, 
+                46.601845
+              ], 
+              [
+                -90.951418, 
+                46.600774
+              ], 
+              [
+                -90.951543, 
+                46.600621
+              ], 
+              [
+                -90.951528, 
+                46.599827
+              ], 
+              [
+                -90.951476, 
+                46.597033
+              ], 
+              [
+                -90.947572, 
+                46.59351
+              ], 
+              [
+                -90.947287, 
+                46.593253
+              ], 
+              [
+                -90.947159, 
+                46.593138
+              ], 
+              [
+                -90.942101, 
+                46.588573
+              ], 
+              [
+                -90.94193, 
+                46.588419
+              ], 
+              [
+                -90.941374, 
+                46.588293
+              ], 
+              [
+                -90.941102, 
+                46.588232
+              ], 
+              [
+                -90.927387, 
+                46.585132
+              ], 
+              [
+                -90.92356, 
+                46.584267
+              ], 
+              [
+                -90.923438, 
+                46.584239
+              ], 
+              [
+                -90.921483, 
+                46.583797
+              ], 
+              [
+                -90.920411, 
+                46.583555
+              ], 
+              [
+                -90.920132, 
+                46.583492
+              ], 
+              [
+                -90.91992, 
+                46.583444
+              ], 
+              [
+                -90.918414, 
+                46.583103
+              ], 
+              [
+                -90.918352, 
+                46.583089
+              ], 
+              [
+                -90.918266, 
+                46.58307
+              ], 
+              [
+                -90.916982, 
+                46.583014
+              ], 
+              [
+                -90.909815, 
+                46.582703
+              ], 
+              [
+                -90.906058, 
+                46.58343
+              ], 
+              [
+                -90.905572, 
+                46.583524
+              ], 
+              [
+                -90.901918, 
+                46.585519
+              ], 
+              [
+                -90.901725, 
+                46.585624
+              ], 
+              [
+                -90.891944, 
+                46.590964
+              ], 
+              [
+                -90.886197, 
+                46.594102
+              ], 
+              [
+                -90.885103, 
+                46.5947
+              ], 
+              [
+                -90.885007, 
+                46.594752
+              ], 
+              [
+                -90.873154, 
+                46.601223
+              ], 
+              [
+                -90.86712, 
+                46.601911
+              ], 
+              [
+                -90.864284, 
+                46.602965
+              ], 
+              [
+                -90.858725, 
+                46.605031
+              ], 
+              [
+                -90.856811, 
+                46.605742
+              ], 
+              [
+                -90.856244, 
+                46.605953
+              ], 
+              [
+                -90.85609, 
+                46.60601
+              ], 
+              [
+                -90.854575, 
+                46.606573
+              ], 
+              [
+                -90.85338, 
+                46.607017
+              ], 
+              [
+                -90.852153, 
+                46.607473
+              ], 
+              [
+                -90.851889, 
+                46.607571
+              ], 
+              [
+                -90.849684, 
+                46.608391
+              ], 
+              [
+                -90.843225, 
+                46.610791
+              ], 
+              [
+                -90.843189, 
+                46.610805
+              ], 
+              [
+                -90.842058, 
+                46.611225
+              ], 
+              [
+                -90.841708, 
+                46.611355
+              ], 
+              [
+                -90.837306, 
+                46.612991
+              ], 
+              [
+                -90.834259, 
+                46.614123
+              ], 
+              [
+                -90.831868, 
+                46.615012
+              ], 
+              [
+                -90.831226, 
+                46.61525
+              ], 
+              [
+                -90.830011, 
+                46.615702
+              ], 
+              [
+                -90.82907, 
+                46.616051
+              ], 
+              [
+                -90.829031, 
+                46.616066
+              ], 
+              [
+                -90.794775, 
+                46.624941
+              ], 
+              [
+                -90.792583, 
+                46.625938
+              ], 
+              [
+                -90.772455, 
+                46.635097
+              ], 
+              [
+                -90.770192, 
+                46.636127
+              ], 
+              [
+                -90.768381, 
+                46.637362
+              ], 
+              [
+                -90.755381, 
+                46.646225
+              ], 
+              [
+                -90.755287, 
+                46.646289
+              ], 
+              [
+                -90.755289, 
+                46.646323
+              ], 
+              [
+                -90.756312, 
+                46.66182
+              ], 
+              [
+                -90.756495, 
+                46.664591
+              ], 
+              [
+                -90.74809, 
+                46.669817
+              ], 
+              [
+                -90.748026, 
+                46.669968
+              ], 
+              [
+                -90.739565, 
+                46.689943
+              ], 
+              [
+                -90.739549, 
+                46.689981
+              ], 
+              [
+                -90.73726, 
+                46.692267
+              ], 
+              [
+                -90.724924, 
+                46.684186
+              ], 
+              [
+                -90.705375, 
+                46.671381
+              ], 
+              [
+                -90.694721, 
+                46.664402
+              ], 
+              [
+                -90.654497, 
+                46.63999
+              ], 
+              [
+                -90.650949, 
+                46.637837
+              ], 
+              [
+                -90.627885, 
+                46.623839
+              ], 
+              [
+                -90.607649, 
+                46.612186
+              ], 
+              [
+                -90.60672, 
+                46.611651
+              ], 
+              [
+                -90.606177, 
+                46.611339
+              ], 
+              [
+                -90.599602, 
+                46.607552
+              ], 
+              [
+                -90.599375, 
+                46.607422
+              ], 
+              [
+                -90.59585, 
+                46.605392
+              ], 
+              [
+                -90.595583, 
+                46.605238
+              ], 
+              [
+                -90.591894, 
+                46.603114
+              ], 
+              [
+                -90.590811, 
+                46.60249
+              ], 
+              [
+                -90.590712, 
+                46.602433
+              ], 
+              [
+                -90.586249, 
+                46.599863
+              ], 
+              [
+                -90.581408, 
+                46.597541
+              ], 
+              [
+                -90.580191, 
+                46.596958
+              ], 
+              [
+                -90.579422, 
+                46.596589
+              ], 
+              [
+                -90.563668, 
+                46.589034
+              ], 
+              [
+                -90.561966, 
+                46.588218
+              ], 
+              [
+                -90.561126, 
+                46.587816
+              ], 
+              [
+                -90.558141, 
+                46.586384
+              ], 
+              [
+                -90.556224, 
+                46.58588
+              ], 
+              [
+                -90.549596, 
+                46.584138
+              ], 
+              [
+                -90.538346, 
+                46.581182
+              ], 
+              [
+                -90.537962, 
+                46.581081
+              ], 
+              [
+                -90.537829, 
+                46.581143
+              ], 
+              [
+                -90.527776, 
+                46.585858
+              ], 
+              [
+                -90.525788, 
+                46.58679
+              ], 
+              [
+                -90.525498, 
+                46.586926
+              ], 
+              [
+                -90.525334, 
+                46.586949
+              ], 
+              [
+                -90.522674, 
+                46.587313
+              ], 
+              [
+                -90.519105, 
+                46.587803
+              ], 
+              [
+                -90.519002, 
+                46.587817
+              ], 
+              [
+                -90.51851, 
+                46.587885
+              ], 
+              [
+                -90.505909, 
+                46.589614
+              ], 
+              [
+                -90.497359, 
+                46.585509
+              ], 
+              [
+                -90.478826, 
+                46.57661
+              ], 
+              [
+                -90.478469, 
+                46.576439
+              ], 
+              [
+                -90.47648, 
+                46.575484
+              ], 
+              [
+                -90.476315, 
+                46.575405
+              ], 
+              [
+                -90.476046, 
+                46.575276
+              ], 
+              [
+                -90.47376, 
+                46.574178
+              ], 
+              [
+                -90.472483, 
+                46.57373
+              ], 
+              [
+                -90.440085, 
+                46.562365
+              ], 
+              [
+                -90.438174, 
+                46.561695
+              ], 
+              [
+                -90.437596, 
+                46.561492
+              ], 
+              [
+                -90.437532, 
+                46.561507
+              ], 
+              [
+                -90.436512, 
+                46.561748
+              ], 
+              [
+                -90.436314, 
+                46.561795
+              ], 
+              [
+                -90.434812, 
+                46.56215
+              ], 
+              [
+                -90.433367, 
+                46.562492
+              ], 
+              [
+                -90.418136, 
+                46.566094
+              ], 
+              [
+                -90.414596, 
+                46.55732
+              ], 
+              [
+                -90.414464, 
+                46.55732
+              ], 
+              [
+                -90.400429, 
+                46.544384
+              ], 
+              [
+                -90.400041, 
+                46.544384
+              ], 
+              [
+                -90.374461, 
+                46.539212
+              ], 
+              [
+                -90.357676, 
+                46.540271
+              ], 
+              [
+                -90.313894, 
+                46.516199
+              ], 
+              [
+                -90.313839, 
+                46.516199
+              ], 
+              [
+                -90.307716, 
+                46.518392
+              ], 
+              [
+                -90.284545, 
+                46.518714
+              ], 
+              [
+                -90.204572, 
+                46.478998
+              ], 
+              [
+                -90.17786, 
+                46.440548
+              ], 
+              [
+                -90.166919, 
+                46.439851
+              ], 
+              [
+                -90.166909, 
+                46.439311
+              ], 
+              [
+                -90.134656, 
+                46.374979
+              ], 
+              [
+                -90.134663, 
+                46.374947
+              ], 
+              [
+                -90.119757, 
+                46.359748
+              ], 
+              [
+                -90.119691, 
+                46.359755
+              ], 
+              [
+                -90.120489, 
+                46.336852
+              ], 
+              [
+                -89.929093, 
+                46.300087
+              ], 
+              [
+                -89.90991, 
+                46.296402
+              ], 
+              [
+                -89.908196, 
+                46.296037
+              ], 
+              [
+                -89.276883, 
+                46.174116
+              ], 
+              [
+                -89.276489, 
+                46.174047
+              ], 
+              [
+                -89.219964, 
+                46.163319
+              ], 
+              [
+                -89.218156, 
+                46.162988
+              ], 
+              [
+                -89.205657, 
+                46.160408
+              ], 
+              [
+                -89.203289, 
+                46.16002
+              ], 
+              [
+                -89.201283, 
+                46.159426
+              ], 
+              [
+                -89.194508, 
+                46.157942
+              ], 
+              [
+                -89.166887, 
+                46.152868
+              ], 
+              [
+                -89.161757, 
+                46.151816
+              ], 
+              [
+                -89.125136, 
+                46.144531
+              ], 
+              [
+                -89.058745, 
+                46.124952
+              ], 
+              [
+                -88.990885, 
+                46.09733
+              ], 
+              [
+                -88.990807, 
+                46.097298
+              ], 
+              [
+                -88.948698, 
+                46.080205
+              ], 
+              [
+                -88.943279, 
+                46.077943
+              ], 
+              [
+                -88.932558, 
+                46.073601
+              ], 
+              [
+                -88.85027, 
+                46.040274
+              ], 
+              [
+                -88.848464, 
+                46.038858
+              ], 
+              [
+                -88.840584, 
+                46.031112
+              ], 
+              [
+                -88.815629, 
+                46.02232
+              ], 
+              [
+                -88.769712, 
+                46.018968
+              ], 
+              [
+                -88.739994, 
+                46.027308
+              ], 
+              [
+                -88.730675, 
+                46.026535
+              ], 
+              [
+                -88.683198, 
+                46.014563
+              ], 
+              [
+                -88.679132, 
+                46.013538
+              ], 
+              [
+                -88.674606, 
+                46.010567
+              ], 
+              [
+                -88.670115, 
+                45.999957
+              ], 
+              [
+                -88.670939, 
+                45.999957
+              ], 
+              [
+                -88.666056, 
+                45.988191
+              ], 
+              [
+                -88.6375, 
+                45.98496
+              ], 
+              [
+                -88.616405, 
+                45.9877
+              ], 
+              [
+                -88.613063, 
+                45.990627
+              ], 
+              [
+                -88.532414, 
+                46.021212
+              ], 
+              [
+                -88.507188, 
+                46.0183
+              ], 
+              [
+                -88.500133, 
+                46.000457
+              ], 
+              [
+                -88.497417, 
+                45.995149
+              ], 
+              [
+                -88.489608, 
+                45.991381
+              ], 
+              [
+                -88.423437, 
+                45.98193
+              ], 
+              [
+                -88.376447, 
+                45.989458
+              ], 
+              [
+                -88.295559, 
+                45.951459
+              ], 
+              [
+                -88.250133, 
+                45.963147
+              ], 
+              [
+                -88.244452, 
+                45.952142
+              ], 
+              [
+                -88.239672, 
+                45.948982
+              ], 
+              [
+                -88.211158, 
+                45.944531
+              ], 
+              [
+                -88.202247, 
+                45.949584
+              ], 
+              [
+                -88.175532, 
+                45.944897
+              ], 
+              [
+                -88.139372, 
+                45.929932
+              ], 
+              [
+                -88.118516, 
+                45.918562
+              ], 
+              [
+                -88.102603, 
+                45.909888
+              ], 
+              [
+                -88.073944, 
+                45.875593
+              ], 
+              [
+                -88.073134, 
+                45.871952
+              ], 
+              [
+                -88.088825, 
+                45.85586
+              ], 
+              [
+                -88.106622, 
+                45.841072
+              ], 
+              [
+                -88.114267, 
+                45.837891
+              ], 
+              [
+                -88.13364, 
+                45.823128
+              ], 
+              [
+                -88.13611, 
+                45.819029
+              ], 
+              [
+                -88.130434, 
+                45.81002
+              ], 
+              [
+                -88.094047, 
+                45.785658
+              ], 
+              [
+                -88.072091, 
+                45.780261
+              ], 
+              [
+                -88.058256, 
+                45.780719
+              ], 
+              [
+                -88.050634, 
+                45.780972
+              ], 
+              [
+                -88.039729, 
+                45.789626
+              ], 
+              [
+                -87.991447, 
+                45.795393
+              ], 
+              [
+                -87.868111, 
+                45.749477
+              ], 
+              [
+                -87.828827, 
+                45.72276
+              ], 
+              [
+                -87.807144, 
+                45.708014
+              ], 
+              [
+                -87.780808, 
+                45.680349
+              ], 
+              [
+                -87.781623, 
+                45.67328
+              ], 
+              [
+                -87.823672, 
+                45.659817
+              ], 
+              [
+                -87.824102, 
+                45.647138
+              ], 
+              [
+                -87.79588, 
+                45.618846
+              ], 
+              [
+                -87.792016, 
+                45.616756
+              ], 
+              [
+                -87.788798, 
+                45.565947
+              ], 
+              [
+                -87.792769, 
+                45.499967
+              ], 
+              [
+                -87.79896, 
+                45.485147
+              ], 
+              [
+                -87.806347, 
+                45.472262
+              ], 
+              [
+                -87.812976, 
+                45.464159
+              ], 
+              [
+                -87.820348, 
+                45.460284
+              ], 
+              [
+                -87.860432, 
+                45.423504
+              ], 
+              [
+                -87.888052, 
+                45.354697
+              ], 
+              [
+                -87.88517, 
+                45.351736
+              ], 
+              [
+                -87.850133, 
+                45.340435
+              ], 
+              [
+                -87.838141, 
+                45.345101
+              ], 
+              [
+                -87.835303, 
+                45.35098
+              ], 
+              [
+                -87.832612, 
+                45.352249
+              ], 
+              [
+                -87.790324, 
+                45.353444
+              ], 
+              [
+                -87.771384, 
+                45.35121
+              ], 
+              [
+                -87.751452, 
+                45.351755
+              ], 
+              [
+                -87.718891, 
+                45.377462
+              ], 
+              [
+                -87.693956, 
+                45.389893
+              ], 
+              [
+                -87.685934, 
+                45.388711
+              ], 
+              [
+                -87.675017, 
+                45.382454
+              ], 
+              [
+                -87.657349, 
+                45.368752
+              ], 
+              [
+                -87.647729, 
+                45.350721
+              ], 
+              [
+                -87.648126, 
+                45.339396
+              ], 
+              [
+                -87.709137, 
+                45.260341
+              ], 
+              [
+                -87.707779, 
+                45.258343
+              ], 
+              [
+                -87.711722, 
+                45.243481
+              ], 
+              [
+                -87.73171, 
+                45.206792
+              ], 
+              [
+                -87.739492, 
+                45.202126
+              ], 
+              [
+                -87.741732, 
+                45.198201
+              ], 
+              [
+                -87.735282, 
+                45.176565
+              ], 
+              [
+                -87.731389, 
+                45.170989
+              ], 
+              [
+                -87.659952, 
+                45.107512
+              ], 
+              [
+                -87.590208, 
+                45.095264
+              ], 
+              [
+                -87.587147, 
+                45.089495
+              ], 
+              [
+                -87.587992, 
+                45.085271
+              ], 
+              [
+                -87.591583, 
+                45.083792
+              ], 
+              [
+                -87.594718, 
+                45.085134
+              ], 
+              [
+                -87.601849, 
+                45.082297
+              ], 
+              [
+                -87.610395, 
+                45.075617
+              ], 
+              [
+                -87.625748, 
+                45.045157
+              ], 
+              [
+                -87.624693, 
+                45.014176
+              ], 
+              [
+                -87.630298, 
+                44.976865
+              ], 
+              [
+                -87.661964, 
+                44.973035
+              ], 
+              [
+                -87.696492, 
+                44.974233
+              ], 
+              [
+                -87.76262, 
+                44.965796
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 21, 
+      "properties": {
+        "CENSUSAREA": 54157.805, 
+        "GEO_ID": "0400000US55", 
+        "ISO": "US-WI", 
+        "LSAD": "", 
+        "NAME": "Wisconsin", 
+        "NAME_1": "Wisconsin", 
+        "STATE": "WI"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -104.055077, 
+                43.936535
+              ], 
+              [
+                -104.055104, 
+                43.853478
+              ], 
+              [
+                -104.055138, 
+                43.750421
+              ], 
+              [
+                -104.055133, 
+                43.747105
+              ], 
+              [
+                -104.054902, 
+                43.583852
+              ], 
+              [
+                -104.054885, 
+                43.583512
+              ], 
+              [
+                -104.05484, 
+                43.579368
+              ], 
+              [
+                -104.055032, 
+                43.558603
+              ], 
+              [
+                -104.054787, 
+                43.503328
+              ], 
+              [
+                -104.054786, 
+                43.503072
+              ], 
+              [
+                -104.054779, 
+                43.477815
+              ], 
+              [
+                -104.054766, 
+                43.428914
+              ], 
+              [
+                -104.054614, 
+                43.390949
+              ], 
+              [
+                -104.054403, 
+                43.325914
+              ], 
+              [
+                -104.054218, 
+                43.30437
+              ], 
+              [
+                -104.053884, 
+                43.297047
+              ], 
+              [
+                -104.053876, 
+                43.289801
+              ], 
+              [
+                -104.053127, 
+                43.000585
+              ], 
+              [
+                -104.052863, 
+                42.754569
+              ], 
+              [
+                -104.052809, 
+                42.749966
+              ], 
+              [
+                -104.052583, 
+                42.650062
+              ], 
+              [
+                -104.052741, 
+                42.633982
+              ], 
+              [
+                -104.052586, 
+                42.630917
+              ], 
+              [
+                -104.052773, 
+                42.611766
+              ], 
+              [
+                -104.052775, 
+                42.61159
+              ], 
+              [
+                -104.052775, 
+                42.610813
+              ], 
+              [
+                -104.052776, 
+                42.25822
+              ], 
+              [
+                -104.052793, 
+                42.249962
+              ], 
+              [
+                -104.052761, 
+                42.170278
+              ], 
+              [
+                -104.052547, 
+                42.166801
+              ], 
+              [
+                -104.053001, 
+                42.137254
+              ], 
+              [
+                -104.052738, 
+                42.133769
+              ], 
+              [
+                -104.0526, 
+                42.124963
+              ], 
+              [
+                -104.052954, 
+                42.089077
+              ], 
+              [
+                -104.052967, 
+                42.075004
+              ], 
+              [
+                -104.05288, 
+                42.021761
+              ], 
+              [
+                -104.052729, 
+                42.016318
+              ], 
+              [
+                -104.052704, 
+                42.001718
+              ], 
+              [
+                -104.052699, 
+                41.998673
+              ], 
+              [
+                -104.052761, 
+                41.994967
+              ], 
+              [
+                -104.05283, 
+                41.9946
+              ], 
+              [
+                -104.052856, 
+                41.975958
+              ], 
+              [
+                -104.052734, 
+                41.973007
+              ], 
+              [
+                -104.052991, 
+                41.914973
+              ], 
+              [
+                -104.052931, 
+                41.906143
+              ], 
+              [
+                -104.053026, 
+                41.885464
+              ], 
+              [
+                -104.052774, 
+                41.733401
+              ], 
+              [
+                -104.05283, 
+                41.697954
+              ], 
+              [
+                -104.052913, 
+                41.64519
+              ], 
+              [
+                -104.052945, 
+                41.638167
+              ], 
+              [
+                -104.052975, 
+                41.622931
+              ], 
+              [
+                -104.052735, 
+                41.613676
+              ], 
+              [
+                -104.052859, 
+                41.592254
+              ], 
+              [
+                -104.05254, 
+                41.564274
+              ], 
+              [
+                -104.052531, 
+                41.552723
+              ], 
+              [
+                -104.052584, 
+                41.55265
+              ], 
+              [
+                -104.052692, 
+                41.541154
+              ], 
+              [
+                -104.052686, 
+                41.539111
+              ], 
+              [
+                -104.052476, 
+                41.522343
+              ], 
+              [
+                -104.052478, 
+                41.515754
+              ], 
+              [
+                -104.05234, 
+                41.417865
+              ], 
+              [
+                -104.05216, 
+                41.407662
+              ], 
+              [
+                -104.052287, 
+                41.393307
+              ], 
+              [
+                -104.052287, 
+                41.393214
+              ], 
+              [
+                -104.052324, 
+                41.321144
+              ], 
+              [
+                -104.052476, 
+                41.320961
+              ], 
+              [
+                -104.052568, 
+                41.316202
+              ], 
+              [
+                -104.052453, 
+                41.278202
+              ], 
+              [
+                -104.052574, 
+                41.278019
+              ], 
+              [
+                -104.052666, 
+                41.275251
+              ], 
+              [
+                -104.053142, 
+                41.114457
+              ], 
+              [
+                -104.053083, 
+                41.104985
+              ], 
+              [
+                -104.053025, 
+                41.090274
+              ], 
+              [
+                -104.053177, 
+                41.089725
+              ], 
+              [
+                -104.053097, 
+                41.018045
+              ], 
+              [
+                -104.053158, 
+                41.016809
+              ], 
+              [
+                -104.053249, 
+                41.001406
+              ], 
+              [
+                -104.066961, 
+                41.001504
+              ], 
+              [
+                -104.086068, 
+                41.001563
+              ], 
+              [
+                -104.10459, 
+                41.001543
+              ], 
+              [
+                -104.123586, 
+                41.001626
+              ], 
+              [
+                -104.211473, 
+                41.001591
+              ], 
+              [
+                -104.214191, 
+                41.001568
+              ], 
+              [
+                -104.214692, 
+                41.001657
+              ], 
+              [
+                -104.497058, 
+                41.001805
+              ], 
+              [
+                -104.497149, 
+                41.001828
+              ], 
+              [
+                -104.882452, 
+                40.998186
+              ], 
+              [
+                -104.943371, 
+                40.99819
+              ], 
+              [
+                -105.254779, 
+                40.99821
+              ], 
+              [
+                -105.256527, 
+                40.998191
+              ], 
+              [
+                -105.27686, 
+                40.998173
+              ], 
+              [
+                -105.277138, 
+                40.998173
+              ], 
+              [
+                -105.724804, 
+                40.99691
+              ], 
+              [
+                -105.730421, 
+                40.996886
+              ], 
+              [
+                -106.061181, 
+                40.996999
+              ], 
+              [
+                -106.19055, 
+                40.998056
+              ], 
+              [
+                -106.321165, 
+                40.999123
+              ], 
+              [
+                -106.386356, 
+                41.001144
+              ], 
+              [
+                -106.391852, 
+                41.001176
+              ], 
+              [
+                -106.43095, 
+                41.001752
+              ], 
+              [
+                -106.437419, 
+                41.001795
+              ], 
+              [
+                -106.439563, 
+                41.001978
+              ], 
+              [
+                -106.453859, 
+                41.002057
+              ], 
+              [
+                -106.857772, 
+                41.003082
+              ], 
+              [
+                -107.000606, 
+                41.003444
+              ], 
+              [
+                -107.317794, 
+                41.002957
+              ], 
+              [
+                -107.918421, 
+                41.002036
+              ], 
+              [
+                -108.250649, 
+                41.000114
+              ], 
+              [
+                -109.050076, 
+                41.000659
+              ], 
+              [
+                -109.207383, 
+                41.001459
+              ], 
+              [
+                -109.676421, 
+                40.998395
+              ], 
+              [
+                -109.713877, 
+                40.998266
+              ], 
+              [
+                -109.715409, 
+                40.998191
+              ], 
+              [
+                -109.854302, 
+                40.997661
+              ], 
+              [
+                -109.855299, 
+                40.997614
+              ], 
+              [
+                -109.999838, 
+                40.99733
+              ], 
+              [
+                -110.000708, 
+                40.997352
+              ], 
+              [
+                -110.048474, 
+                40.997103
+              ], 
+              [
+                -110.500718, 
+                40.994746
+              ], 
+              [
+                -111.046723, 
+                40.997959
+              ], 
+              [
+                -111.046551, 
+                41.251716
+              ], 
+              [
+                -111.0466, 
+                41.360692
+              ], 
+              [
+                -111.046264, 
+                41.377731
+              ], 
+              [
+                -111.046402, 
+                41.579845
+              ], 
+              [
+                -111.046689, 
+                42.001567
+              ], 
+              [
+                -111.047109, 
+                42.142497
+              ], 
+              [
+                -111.047107, 
+                42.148971
+              ], 
+              [
+                -111.047058, 
+                42.182672
+              ], 
+              [
+                -111.047097, 
+                42.194773
+              ], 
+              [
+                -111.047074, 
+                42.280787
+              ], 
+              [
+                -111.04708, 
+                42.34942
+              ], 
+              [
+                -111.046249, 
+                42.513116
+              ], 
+              [
+                -111.043959, 
+                42.96445
+              ], 
+              [
+                -111.043957, 
+                42.969482
+              ], 
+              [
+                -111.043924, 
+                42.975063
+              ], 
+              [
+                -111.044129, 
+                43.018702
+              ], 
+              [
+                -111.044156, 
+                43.020052
+              ], 
+              [
+                -111.044206, 
+                43.022614
+              ], 
+              [
+                -111.044034, 
+                43.024581
+              ], 
+              [
+                -111.044034, 
+                43.024844
+              ], 
+              [
+                -111.044033, 
+                43.026411
+              ], 
+              [
+                -111.044094, 
+                43.02927
+              ], 
+              [
+                -111.043997, 
+                43.041415
+              ], 
+              [
+                -111.044058, 
+                43.04464
+              ], 
+              [
+                -111.044063, 
+                43.046302
+              ], 
+              [
+                -111.044086, 
+                43.054819
+              ], 
+              [
+                -111.044117, 
+                43.060309
+              ], 
+              [
+                -111.04415, 
+                43.066172
+              ], 
+              [
+                -111.044162, 
+                43.068222
+              ], 
+              [
+                -111.044143, 
+                43.072364
+              ], 
+              [
+                -111.044235, 
+                43.177121
+              ], 
+              [
+                -111.044266, 
+                43.177236
+              ], 
+              [
+                -111.044232, 
+                43.18444
+              ], 
+              [
+                -111.044168, 
+                43.189244
+              ], 
+              [
+                -111.044229, 
+                43.195579
+              ], 
+              [
+                -111.044617, 
+                43.31572
+              ], 
+              [
+                -111.045205, 
+                43.501136
+              ], 
+              [
+                -111.045706, 
+                43.659112
+              ], 
+              [
+                -111.04588, 
+                43.681033
+              ], 
+              [
+                -111.046118, 
+                43.684902
+              ], 
+              [
+                -111.046051, 
+                43.685812
+              ], 
+              [
+                -111.04611, 
+                43.687848
+              ], 
+              [
+                -111.046421, 
+                43.722059
+              ], 
+              [
+                -111.046435, 
+                43.726545
+              ], 
+              [
+                -111.04634, 
+                43.726957
+              ], 
+              [
+                -111.046715, 
+                43.815832
+              ], 
+              [
+                -111.048107, 
+                43.983096
+              ], 
+              [
+                -111.048751, 
+                44.060403
+              ], 
+              [
+                -111.048751, 
+                44.060838
+              ], 
+              [
+                -111.048633, 
+                44.062903
+              ], 
+              [
+                -111.049216, 
+                44.435811
+              ], 
+              [
+                -111.049194, 
+                44.438058
+              ], 
+              [
+                -111.048974, 
+                44.474072
+              ], 
+              [
+                -111.055208, 
+                44.624927
+              ], 
+              [
+                -111.055495, 
+                44.666262
+              ], 
+              [
+                -111.056888, 
+                44.866658
+              ], 
+              [
+                -111.055629, 
+                44.933578
+              ], 
+              [
+                -111.056207, 
+                44.935901
+              ], 
+              [
+                -111.044275, 
+                45.001345
+              ], 
+              [
+                -110.875772, 
+                45.002101
+              ], 
+              [
+                -110.750767, 
+                44.997948
+              ], 
+              [
+                -110.705272, 
+                44.992324
+              ], 
+              [
+                -110.552433, 
+                44.992237
+              ], 
+              [
+                -110.547165, 
+                44.992459
+              ], 
+              [
+                -110.221343, 
+                44.996176
+              ], 
+              [
+                -110.110103, 
+                45.003905
+              ], 
+              [
+                -110.026347, 
+                45.003665
+              ], 
+              [
+                -110.025544, 
+                45.003602
+              ], 
+              [
+                -109.798687, 
+                45.002188
+              ], 
+              [
+                -109.269294, 
+                45.005283
+              ], 
+              [
+                -109.263431, 
+                45.005345
+              ], 
+              [
+                -109.103445, 
+                45.005904
+              ], 
+              [
+                -109.08301, 
+                44.99961
+              ], 
+              [
+                -109.062262, 
+                44.999623
+              ], 
+              [
+                -108.621313, 
+                45.000408
+              ], 
+              [
+                -108.578484, 
+                45.000484
+              ], 
+              [
+                -108.565921, 
+                45.000578
+              ], 
+              [
+                -108.249345, 
+                44.999458
+              ], 
+              [
+                -108.125666, 
+                45.001011
+              ], 
+              [
+                -107.911495, 
+                45.000948
+              ], 
+              [
+                -107.608854, 
+                45.00086
+              ], 
+              [
+                -107.607824, 
+                45.000929
+              ], 
+              [
+                -107.13418, 
+                45.000109
+              ], 
+              [
+                -107.080624, 
+                44.996791
+              ], 
+              [
+                -106.892875, 
+                44.995947
+              ], 
+              [
+                -106.888773, 
+                44.995885
+              ], 
+              [
+                -106.263586, 
+                44.993788
+              ], 
+              [
+                -106.024814, 
+                44.993688
+              ], 
+              [
+                -105.928184, 
+                44.993647
+              ], 
+              [
+                -105.918995, 
+                44.997771
+              ], 
+              [
+                -105.848065, 
+                45.000396
+              ], 
+              [
+                -105.076607, 
+                45.000347
+              ], 
+              [
+                -105.038405, 
+                45.000345
+              ], 
+              [
+                -105.025266, 
+                45.00029
+              ], 
+              [
+                -105.019284, 
+                45.000329
+              ], 
+              [
+                -105.01824, 
+                45.000437
+              ], 
+              [
+                -104.765063, 
+                44.999183
+              ], 
+              [
+                -104.759855, 
+                44.999066
+              ], 
+              [
+                -104.665171, 
+                44.998618
+              ], 
+              [
+                -104.663882, 
+                44.998869
+              ], 
+              [
+                -104.470422, 
+                44.998453
+              ], 
+              [
+                -104.470117, 
+                44.998453
+              ], 
+              [
+                -104.057698, 
+                44.997431
+              ], 
+              [
+                -104.055963, 
+                44.768236
+              ], 
+              [
+                -104.055963, 
+                44.767962
+              ], 
+              [
+                -104.055934, 
+                44.72372
+              ], 
+              [
+                -104.05587, 
+                44.723422
+              ], 
+              [
+                -104.055777, 
+                44.700466
+              ], 
+              [
+                -104.055938, 
+                44.693881
+              ], 
+              [
+                -104.05581, 
+                44.691343
+              ], 
+              [
+                -104.055877, 
+                44.571016
+              ], 
+              [
+                -104.055892, 
+                44.543341
+              ], 
+              [
+                -104.055927, 
+                44.51773
+              ], 
+              [
+                -104.054487, 
+                44.180381
+              ], 
+              [
+                -104.054562, 
+                44.141081
+              ], 
+              [
+                -104.05495, 
+                43.93809
+              ], 
+              [
+                -104.055077, 
+                43.936535
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 22, 
+      "properties": {
+        "CENSUSAREA": 97093.141, 
+        "GEO_ID": "0400000US56", 
+        "ISO": "US-WY", 
+        "LSAD": "", 
+        "NAME": "Wyoming", 
+        "NAME_1": "Wyoming", 
+        "STATE": "WY"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -88.124658, 
+                30.28364
+              ], 
+              [
+                -88.086812, 
+                30.259864
+              ], 
+              [
+                -88.074854, 
+                30.249119
+              ], 
+              [
+                -88.075856, 
+                30.246139
+              ], 
+              [
+                -88.078786, 
+                30.245039
+              ], 
+              [
+                -88.109432, 
+                30.242097
+              ], 
+              [
+                -88.120151, 
+                30.246149
+              ], 
+              [
+                -88.137083, 
+                30.249179
+              ], 
+              [
+                -88.166569, 
+                30.249255
+              ], 
+              [
+                -88.20854, 
+                30.244807
+              ], 
+              [
+                -88.280571, 
+                30.230274
+              ], 
+              [
+                -88.304773, 
+                30.228031
+              ], 
+              [
+                -88.313323, 
+                30.230024
+              ], 
+              [
+                -88.310025, 
+                30.233233
+              ], 
+              [
+                -88.299705, 
+                30.231812
+              ], 
+              [
+                -88.280781, 
+                30.233781
+              ], 
+              [
+                -88.25837, 
+                30.239595
+              ], 
+              [
+                -88.224615, 
+                30.245559
+              ], 
+              [
+                -88.17335, 
+                30.252418
+              ], 
+              [
+                -88.158303, 
+                30.252393
+              ], 
+              [
+                -88.141143, 
+                30.255024
+              ], 
+              [
+                -88.130631, 
+                30.262125
+              ], 
+              [
+                -88.124722, 
+                30.273541
+              ], 
+              [
+                -88.124658, 
+                30.28364
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -86.783628, 
+                34.991925
+              ], 
+              [
+                -86.677616, 
+                34.99207
+              ], 
+              [
+                -86.676726, 
+                34.99207
+              ], 
+              [
+                -86.67436, 
+                34.992001
+              ], 
+              [
+                -86.670853, 
+                34.992
+              ], 
+              [
+                -86.65961, 
+                34.991792
+              ], 
+              [
+                -86.641212, 
+                34.99174
+              ], 
+              [
+                -86.600039, 
+                34.99124
+              ], 
+              [
+                -86.588962, 
+                34.991197
+              ], 
+              [
+                -86.571217, 
+                34.991011
+              ], 
+              [
+                -86.555864, 
+                34.990971
+              ], 
+              [
+                -86.528485, 
+                34.990677
+              ], 
+              [
+                -86.467798, 
+                34.990692
+              ], 
+              [
+                -86.433927, 
+                34.991085
+              ], 
+              [
+                -86.397203, 
+                34.99166
+              ], 
+              [
+                -86.318761, 
+                34.991147
+              ], 
+              [
+                -86.311274, 
+                34.991098
+              ], 
+              [
+                -85.863935, 
+                34.988379
+              ], 
+              [
+                -85.828724, 
+                34.988165
+              ], 
+              [
+                -85.824411, 
+                34.988142
+              ], 
+              [
+                -85.605165, 
+                34.984678
+              ], 
+              [
+                -85.595191, 
+                34.924331
+              ], 
+              [
+                -85.595163, 
+                34.924171
+              ], 
+              [
+                -85.583145, 
+                34.860371
+              ], 
+              [
+                -85.552482, 
+                34.708321
+              ], 
+              [
+                -85.552454, 
+                34.708138
+              ], 
+              [
+                -85.541267, 
+                34.656783
+              ], 
+              [
+                -85.541264, 
+                34.656701
+              ], 
+              [
+                -85.534423, 
+                34.623789
+              ], 
+              [
+                -85.527127, 
+                34.588684
+              ], 
+              [
+                -85.51393, 
+                34.525192
+              ], 
+              [
+                -85.513709, 
+                34.52417
+              ], 
+              [
+                -85.513699, 
+                34.524133
+              ], 
+              [
+                -85.512108, 
+                34.518252
+              ], 
+              [
+                -85.508384, 
+                34.501212
+              ], 
+              [
+                -85.502454, 
+                34.474527
+              ], 
+              [
+                -85.502316, 
+                34.473954
+              ], 
+              [
+                -85.462304, 
+                34.286365
+              ], 
+              [
+                -85.458693, 
+                34.269437
+              ], 
+              [
+                -85.458071, 
+                34.265736
+              ], 
+              [
+                -85.455371, 
+                34.252854
+              ], 
+              [
+                -85.455057, 
+                34.250689
+              ], 
+              [
+                -85.421731, 
+                34.080821
+              ], 
+              [
+                -85.398837, 
+                33.964129
+              ], 
+              [
+                -85.386693, 
+                33.901697
+              ], 
+              [
+                -85.361844, 
+                33.773951
+              ], 
+              [
+                -85.360491, 
+                33.767958
+              ], 
+              [
+                -85.337974, 
+                33.653111
+              ], 
+              [
+                -85.322497, 
+                33.574167
+              ], 
+              [
+                -85.314994, 
+                33.535898
+              ], 
+              [
+                -85.314091, 
+                33.530218
+              ], 
+              [
+                -85.313999, 
+                33.529807
+              ], 
+              [
+                -85.304439, 
+                33.482884
+              ], 
+              [
+                -85.293902, 
+                33.428079
+              ], 
+              [
+                -85.236509, 
+                33.129562
+              ], 
+              [
+                -85.232378, 
+                33.108077
+              ], 
+              [
+                -85.223261, 
+                33.06258
+              ], 
+              [
+                -85.221868, 
+                33.055538
+              ], 
+              [
+                -85.184131, 
+                32.870525
+              ], 
+              [
+                -85.123421, 
+                32.772248
+              ], 
+              [
+                -85.13204, 
+                32.764211
+              ], 
+              [
+                -85.136776, 
+                32.746512
+              ], 
+              [
+                -85.137136, 
+                32.745168
+              ], 
+              [
+                -85.114737, 
+                32.685634
+              ], 
+              [
+                -85.10479, 
+                32.642542
+              ], 
+              [
+                -85.082454, 
+                32.607022
+              ], 
+              [
+                -85.080288, 
+                32.603577
+              ], 
+              [
+                -85.079935, 
+                32.602889
+              ], 
+              [
+                -85.069583, 
+                32.58393
+              ], 
+              [
+                -85.044606, 
+                32.559499
+              ], 
+              [
+                -85.022509, 
+                32.542923
+              ], 
+              [
+                -85.0071, 
+                32.523868
+              ], 
+              [
+                -85.001324, 
+                32.512973
+              ], 
+              [
+                -85.001052, 
+                32.510477
+              ], 
+              [
+                -85.00103, 
+                32.510157
+              ], 
+              [
+                -85.000779, 
+                32.506548
+              ], 
+              [
+                -84.998231, 
+                32.469842
+              ], 
+              [
+                -84.983831, 
+                32.445643
+              ], 
+              [
+                -84.979431, 
+                32.412244
+              ], 
+              [
+                -84.987278, 
+                32.381623
+              ], 
+              [
+                -84.987386, 
+                32.381201
+              ], 
+              [
+                -85.008096, 
+                32.336677
+              ], 
+              [
+                -85.007103, 
+                32.328362
+              ], 
+              [
+                -85.001874, 
+                32.322015
+              ], 
+              [
+                -84.93868, 
+                32.300708
+              ], 
+              [
+                -84.916611, 
+                32.281177
+              ], 
+              [
+                -84.909052, 
+                32.26354
+              ], 
+              [
+                -84.92165, 
+                32.233306
+              ], 
+              [
+                -84.923638, 
+                32.231539
+              ], 
+              [
+                -84.964828, 
+                32.194952
+              ], 
+              [
+                -84.995929, 
+                32.184852
+              ], 
+              [
+                -85.047865, 
+                32.142033
+              ], 
+              [
+                -85.056029, 
+                32.063055
+              ], 
+              [
+                -85.050212, 
+                32.024196
+              ], 
+              [
+                -85.062246, 
+                31.991857
+              ], 
+              [
+                -85.07233, 
+                31.964758
+              ], 
+              [
+                -85.08213, 
+                31.944658
+              ], 
+              [
+                -85.10663, 
+                31.915159
+              ], 
+              [
+                -85.132931, 
+                31.88826
+              ], 
+              [
+                -85.141831, 
+                31.839861
+              ], 
+              [
+                -85.141331, 
+                31.783163
+              ], 
+              [
+                -85.138668, 
+                31.780425
+              ], 
+              [
+                -85.130731, 
+                31.772263
+              ], 
+              [
+                -85.12523, 
+                31.767063
+              ], 
+              [
+                -85.124501, 
+                31.763081
+              ], 
+              [
+                -85.11893, 
+                31.732664
+              ], 
+              [
+                -85.12223, 
+                31.722764
+              ], 
+              [
+                -85.12653, 
+                31.716764
+              ], 
+              [
+                -85.12553, 
+                31.694965
+              ], 
+              [
+                -85.087029, 
+                31.640966
+              ], 
+              [
+                -85.065236, 
+                31.624351
+              ], 
+              [
+                -85.059534, 
+                31.621717
+              ], 
+              [
+                -85.057473, 
+                31.618624
+              ], 
+              [
+                -85.041305, 
+                31.540987
+              ], 
+              [
+                -85.046859, 
+                31.517451
+              ], 
+              [
+                -85.068065, 
+                31.427586
+              ], 
+              [
+                -85.087651, 
+                31.308677
+              ], 
+              [
+                -85.101561, 
+                31.283362
+              ], 
+              [
+                -85.111871, 
+                31.258388
+              ], 
+              [
+                -85.107516, 
+                31.186451
+              ], 
+              [
+                -85.100207, 
+                31.16549
+              ], 
+              [
+                -85.092106, 
+                31.160293
+              ], 
+              [
+                -85.083582, 
+                31.15963
+              ], 
+              [
+                -85.076628, 
+                31.156927
+              ], 
+              [
+                -85.035615, 
+                31.108192
+              ], 
+              [
+                -85.029736, 
+                31.096163
+              ], 
+              [
+                -85.022121, 
+                31.07548
+              ], 
+              [
+                -84.999428, 
+                31.013843
+              ], 
+              [
+                -85.002368, 
+                31.000682
+              ], 
+              [
+                -85.024108, 
+                31.000681
+              ], 
+              [
+                -85.027512, 
+                31.00067
+              ], 
+              [
+                -85.030107, 
+                31.000653
+              ], 
+              [
+                -85.031155, 
+                31.000647
+              ], 
+              [
+                -85.052088, 
+                31.000585
+              ], 
+              [
+                -85.054802, 
+                31.000585
+              ], 
+              [
+                -85.057534, 
+                31.000585
+              ], 
+              [
+                -85.145835, 
+                31.000695
+              ], 
+              [
+                -85.152085, 
+                31.000888
+              ], 
+              [
+                -85.152218, 
+                31.000834
+              ], 
+              [
+                -85.154452, 
+                31.000835
+              ], 
+              [
+                -85.488298, 
+                30.997041
+              ], 
+              [
+                -85.497992, 
+                30.996931
+              ], 
+              [
+                -85.498272, 
+                30.996928
+              ], 
+              [
+                -86.035039, 
+                30.99332
+              ], 
+              [
+                -86.052462, 
+                30.993247
+              ], 
+              [
+                -86.056213, 
+                30.993133
+              ], 
+              [
+                -86.162886, 
+                30.993682
+              ], 
+              [
+                -86.168979, 
+                30.993706
+              ], 
+              [
+                -86.175204, 
+                30.993798
+              ], 
+              [
+                -86.180232, 
+                30.994005
+              ], 
+              [
+                -86.187246, 
+                30.993992
+              ], 
+              [
+                -86.289247, 
+                30.993798
+              ], 
+              [
+                -86.304596, 
+                30.994029
+              ], 
+              [
+                -86.364907, 
+                30.994455
+              ], 
+              [
+                -86.36927, 
+                30.994477
+              ], 
+              [
+                -86.374545, 
+                30.994474
+              ], 
+              [
+                -86.388646, 
+                30.994181
+              ], 
+              [
+                -86.388647, 
+                30.994181
+              ], 
+              [
+                -86.391937, 
+                30.994172
+              ], 
+              [
+                -86.404912, 
+                30.994049
+              ], 
+              [
+                -86.454704, 
+                30.993791
+              ], 
+              [
+                -86.458319, 
+                30.993998
+              ], 
+              [
+                -86.512834, 
+                30.9937
+              ], 
+              [
+                -86.519938, 
+                30.993245
+              ], 
+              [
+                -86.563436, 
+                30.995223
+              ], 
+              [
+                -86.567586, 
+                30.995109
+              ], 
+              [
+                -86.664681, 
+                30.994534
+              ], 
+              [
+                -86.678383, 
+                30.994537
+              ], 
+              [
+                -86.688294, 
+                30.995029
+              ], 
+              [
+                -86.725379, 
+                30.996872
+              ], 
+              [
+                -86.727293, 
+                30.996882
+              ], 
+              [
+                -86.728392, 
+                30.996739
+              ], 
+              [
+                -86.785692, 
+                30.996977
+              ], 
+              [
+                -86.785918, 
+                30.996978
+              ], 
+              [
+                -86.830497, 
+                30.997401
+              ], 
+              [
+                -86.831934, 
+                30.997378
+              ], 
+              [
+                -86.872989, 
+                30.997631
+              ], 
+              [
+                -86.888135, 
+                30.997577
+              ], 
+              [
+                -87.027107, 
+                30.999255
+              ], 
+              [
+                -87.036366, 
+                30.999348
+              ], 
+              [
+                -87.039989, 
+                30.999594
+              ], 
+              [
+                -87.053737, 
+                30.999131
+              ], 
+              [
+                -87.064063, 
+                30.999191
+              ], 
+              [
+                -87.068633, 
+                30.999143
+              ], 
+              [
+                -87.162614, 
+                30.999055
+              ], 
+              [
+                -87.163084, 
+                30.999051
+              ], 
+              [
+                -87.25498, 
+                30.998285
+              ], 
+              [
+                -87.255592, 
+                30.998216
+              ], 
+              [
+                -87.257002, 
+                30.998194
+              ], 
+              [
+                -87.25796, 
+                30.998263
+              ], 
+              [
+                -87.259689, 
+                30.998172
+              ], 
+              [
+                -87.26054, 
+                30.998195
+              ], 
+              [
+                -87.265564, 
+                30.998267
+              ], 
+              [
+                -87.288905, 
+                30.998345
+              ], 
+              [
+                -87.290995, 
+                30.998352
+              ], 
+              [
+                -87.301567, 
+                30.998434
+              ], 
+              [
+                -87.30403, 
+                30.998191
+              ], 
+              [
+                -87.312183, 
+                30.998435
+              ], 
+              [
+                -87.333973, 
+                30.998272
+              ], 
+              [
+                -87.355656, 
+                30.998244
+              ], 
+              [
+                -87.364011, 
+                30.998218
+              ], 
+              [
+                -87.367842, 
+                30.998292
+              ], 
+              [
+                -87.425774, 
+                30.99809
+              ], 
+              [
+                -87.432292, 
+                30.998205
+              ], 
+              [
+                -87.449811, 
+                30.998272
+              ], 
+              [
+                -87.455705, 
+                30.998318
+              ], 
+              [
+                -87.458658, 
+                30.998386
+              ], 
+              [
+                -87.461638, 
+                30.998202
+              ], 
+              [
+                -87.461783, 
+                30.998201
+              ], 
+              [
+                -87.466827, 
+                30.998178
+              ], 
+              [
+                -87.466879, 
+                30.998178
+              ], 
+              [
+                -87.478706, 
+                30.998213
+              ], 
+              [
+                -87.479703, 
+                30.998197
+              ], 
+              [
+                -87.480243, 
+                30.998202
+              ], 
+              [
+                -87.548543, 
+                30.997927
+              ], 
+              [
+                -87.571281, 
+                30.99787
+              ], 
+              [
+                -87.598928, 
+                30.997457
+              ], 
+              [
+                -87.598927, 
+                30.997454
+              ], 
+              [
+                -87.594111, 
+                30.976335
+              ], 
+              [
+                -87.601355, 
+                30.936294
+              ], 
+              [
+                -87.622203, 
+                30.897508
+              ], 
+              [
+                -87.634938, 
+                30.865886
+              ], 
+              [
+                -87.624137, 
+                30.845713
+              ], 
+              [
+                -87.532607, 
+                30.743489
+              ], 
+              [
+                -87.502926, 
+                30.722369
+              ], 
+              [
+                -87.497515, 
+                30.720123
+              ], 
+              [
+                -87.481225, 
+                30.716508
+              ], 
+              [
+                -87.449362, 
+                30.698913
+              ], 
+              [
+                -87.407118, 
+                30.671796
+              ], 
+              [
+                -87.396997, 
+                30.65364
+              ], 
+              [
+                -87.394219, 
+                30.641699
+              ], 
+              [
+                -87.394479, 
+                30.625192
+              ], 
+              [
+                -87.449921, 
+                30.51469
+              ], 
+              [
+                -87.449841, 
+                30.514369
+              ], 
+              [
+                -87.448332, 
+                30.513063
+              ], 
+              [
+                -87.430578, 
+                30.491096
+              ], 
+              [
+                -87.419177, 
+                30.410198
+              ], 
+              [
+                -87.427478, 
+                30.408398
+              ], 
+              [
+                -87.440678, 
+                30.391498
+              ], 
+              [
+                -87.451378, 
+                30.367199
+              ], 
+              [
+                -87.450962, 
+                30.346262
+              ], 
+              [
+                -87.450078, 
+                30.3111
+              ], 
+              [
+                -87.452378, 
+                30.300201
+              ], 
+              [
+                -87.518324, 
+                30.280435
+              ], 
+              [
+                -87.544533, 
+                30.275659
+              ], 
+              [
+                -87.558097, 
+                30.274437
+              ], 
+              [
+                -87.581362, 
+                30.269257
+              ], 
+              [
+                -87.656888, 
+                30.249709
+              ], 
+              [
+                -87.73553, 
+                30.240679
+              ], 
+              [
+                -87.80056, 
+                30.229365
+              ], 
+              [
+                -87.838462, 
+                30.227185
+              ], 
+              [
+                -87.926119, 
+                30.230373
+              ], 
+              [
+                -87.962253, 
+                30.229522
+              ], 
+              [
+                -87.999996, 
+                30.225753
+              ], 
+              [
+                -88.014572, 
+                30.222366
+              ], 
+              [
+                -88.028401, 
+                30.221132
+              ], 
+              [
+                -88.029272, 
+                30.222714
+              ], 
+              [
+                -88.023991, 
+                30.23039
+              ], 
+              [
+                -87.966847, 
+                30.235618
+              ], 
+              [
+                -87.948979, 
+                30.256564
+              ], 
+              [
+                -87.936041, 
+                30.261469
+              ], 
+              [
+                -87.918247, 
+                30.253308
+              ], 
+              [
+                -87.913762, 
+                30.247837
+              ], 
+              [
+                -87.90046, 
+                30.241531
+              ], 
+              [
+                -87.893201, 
+                30.239237
+              ], 
+              [
+                -87.879343, 
+                30.23859
+              ], 
+              [
+                -87.860085, 
+                30.240289
+              ], 
+              [
+                -87.817743, 
+                30.254292
+              ], 
+              [
+                -87.802087, 
+                30.253054
+              ], 
+              [
+                -87.78775, 
+                30.254244
+              ], 
+              [
+                -87.766626, 
+                30.262353
+              ], 
+              [
+                -87.755263, 
+                30.277292
+              ], 
+              [
+                -87.755516, 
+                30.291217
+              ], 
+              [
+                -87.772758, 
+                30.311701
+              ], 
+              [
+                -87.796717, 
+                30.324198
+              ], 
+              [
+                -87.809266, 
+                30.332702
+              ], 
+              [
+                -87.82988, 
+                30.353809
+              ], 
+              [
+                -87.837239, 
+                30.369324
+              ], 
+              [
+                -87.845132, 
+                30.377446
+              ], 
+              [
+                -87.853806, 
+                30.378481
+              ], 
+              [
+                -87.865017, 
+                30.38345
+              ], 
+              [
+                -87.906343, 
+                30.40938
+              ], 
+              [
+                -87.908908, 
+                30.41424
+              ], 
+              [
+                -87.914136, 
+                30.446144
+              ], 
+              [
+                -87.920031, 
+                30.470645
+              ], 
+              [
+                -87.924211, 
+                30.4761
+              ], 
+              [
+                -87.931902, 
+                30.4811
+              ], 
+              [
+                -87.933355, 
+                30.487357
+              ], 
+              [
+                -87.911141, 
+                30.525848
+              ], 
+              [
+                -87.905343, 
+                30.537566
+              ], 
+              [
+                -87.901711, 
+                30.550879
+              ], 
+              [
+                -87.904168, 
+                30.565985
+              ], 
+              [
+                -87.907891, 
+                30.573114
+              ], 
+              [
+                -87.911431, 
+                30.576261
+              ], 
+              [
+                -87.914956, 
+                30.585893
+              ], 
+              [
+                -87.91253, 
+                30.615795
+              ], 
+              [
+                -87.919346, 
+                30.63606
+              ], 
+              [
+                -87.93107, 
+                30.652694
+              ], 
+              [
+                -87.936717, 
+                30.657432
+              ], 
+              [
+                -87.955989, 
+                30.658862
+              ], 
+              [
+                -87.981196, 
+                30.67509
+              ], 
+              [
+                -88.008396, 
+                30.684956
+              ], 
+              [
+                -88.012444, 
+                30.68319
+              ], 
+              [
+                -88.022076, 
+                30.673873
+              ], 
+              [
+                -88.026706, 
+                30.66149
+              ], 
+              [
+                -88.034588, 
+                30.653715
+              ], 
+              [
+                -88.044339, 
+                30.652568
+              ], 
+              [
+                -88.061998, 
+                30.644891
+              ], 
+              [
+                -88.059598, 
+                30.619091
+              ], 
+              [
+                -88.053998, 
+                30.612491
+              ], 
+              [
+                -88.064898, 
+                30.588292
+              ], 
+              [
+                -88.074898, 
+                30.578892
+              ], 
+              [
+                -88.085493, 
+                30.563258
+              ], 
+              [
+                -88.081617, 
+                30.546317
+              ], 
+              [
+                -88.082792, 
+                30.528713
+              ], 
+              [
+                -88.090734, 
+                30.52357
+              ], 
+              [
+                -88.100874, 
+                30.50975
+              ], 
+              [
+                -88.103768, 
+                30.500903
+              ], 
+              [
+                -88.102988, 
+                30.493029
+              ], 
+              [
+                -88.096867, 
+                30.471053
+              ], 
+              [
+                -88.100646, 
+                30.46122
+              ], 
+              [
+                -88.106437, 
+                30.452738
+              ], 
+              [
+                -88.10407, 
+                30.4273
+              ], 
+              [
+                -88.107274, 
+                30.377246
+              ], 
+              [
+                -88.115432, 
+                30.35657
+              ], 
+              [
+                -88.124611, 
+                30.341623
+              ], 
+              [
+                -88.128052, 
+                30.338509
+              ], 
+              [
+                -88.136173, 
+                30.320729
+              ], 
+              [
+                -88.155775, 
+                30.327184
+              ], 
+              [
+                -88.171967, 
+                30.324679
+              ], 
+              [
+                -88.191542, 
+                30.317002
+              ], 
+              [
+                -88.195664, 
+                30.321242
+              ], 
+              [
+                -88.198361, 
+                30.338819
+              ], 
+              [
+                -88.196353, 
+                30.343586
+              ], 
+              [
+                -88.188532, 
+                30.345053
+              ], 
+              [
+                -88.188527, 
+                30.348124
+              ], 
+              [
+                -88.200065, 
+                30.362378
+              ], 
+              [
+                -88.204495, 
+                30.362102
+              ], 
+              [
+                -88.260695, 
+                30.382381
+              ], 
+              [
+                -88.282635, 
+                30.382876
+              ], 
+              [
+                -88.290649, 
+                30.370741
+              ], 
+              [
+                -88.311608, 
+                30.368908
+              ], 
+              [
+                -88.316525, 
+                30.369985
+              ], 
+              [
+                -88.319599, 
+                30.380334
+              ], 
+              [
+                -88.332277, 
+                30.38844
+              ], 
+              [
+                -88.341345, 
+                30.38947
+              ], 
+              [
+                -88.364022, 
+                30.388006
+              ], 
+              [
+                -88.374671, 
+                30.385608
+              ], 
+              [
+                -88.395023, 
+                30.369425
+              ], 
+              [
+                -88.402283, 
+                30.510852
+              ], 
+              [
+                -88.403547, 
+                30.5331
+              ], 
+              [
+                -88.403931, 
+                30.543359
+              ], 
+              [
+                -88.404013, 
+                30.54506
+              ], 
+              [
+                -88.407484, 
+                30.622736
+              ], 
+              [
+                -88.407462, 
+                30.631653
+              ], 
+              [
+                -88.40807, 
+                30.63697
+              ], 
+              [
+                -88.409571, 
+                30.668731
+              ], 
+              [
+                -88.411339, 
+                30.706334
+              ], 
+              [
+                -88.41155, 
+                30.712956
+              ], 
+              [
+                -88.412209, 
+                30.730395
+              ], 
+              [
+                -88.41227, 
+                30.731771
+              ], 
+              [
+                -88.412462, 
+                30.735598
+              ], 
+              [
+                -88.425635, 
+                30.998301
+              ], 
+              [
+                -88.425729, 
+                31.000183
+              ], 
+              [
+                -88.425807, 
+                31.001123
+              ], 
+              [
+                -88.432007, 
+                31.114298
+              ], 
+              [
+                -88.438104, 
+                31.23006
+              ], 
+              [
+                -88.438211, 
+                31.231252
+              ], 
+              [
+                -88.445182, 
+                31.355855
+              ], 
+              [
+                -88.445209, 
+                31.355969
+              ], 
+              [
+                -88.448686, 
+                31.420888
+              ], 
+              [
+                -88.44866, 
+                31.421277
+              ], 
+              [
+                -88.449446, 
+                31.435837
+              ], 
+              [
+                -88.459478, 
+                31.621652
+              ], 
+              [
+                -88.459722, 
+                31.624002
+              ], 
+              [
+                -88.464425, 
+                31.697881
+              ], 
+              [
+                -88.464428, 
+                31.697952
+              ], 
+              [
+                -88.471106, 
+                31.850949
+              ], 
+              [
+                -88.471214, 
+                31.851385
+              ], 
+              [
+                -88.46996, 
+                31.893759
+              ], 
+              [
+                -88.468879, 
+                31.930262
+              ], 
+              [
+                -88.46866, 
+                31.933173
+              ], 
+              [
+                -88.455039, 
+                32.039719
+              ], 
+              [
+                -88.454959, 
+                32.040576
+              ], 
+              [
+                -88.43871, 
+                32.172078
+              ], 
+              [
+                -88.43865, 
+                32.172806
+              ], 
+              [
+                -88.431707, 
+                32.227662
+              ], 
+              [
+                -88.421453, 
+                32.30868
+              ], 
+              [
+                -88.403789, 
+                32.44977
+              ], 
+              [
+                -88.403789, 
+                32.449885
+              ], 
+              [
+                -88.388739, 
+                32.578116
+              ], 
+              [
+                -88.383039, 
+                32.626679
+              ], 
+              [
+                -88.382985, 
+                32.626954
+              ], 
+              [
+                -88.347692, 
+                32.929059
+              ], 
+              [
+                -88.340432, 
+                32.991199
+              ], 
+              [
+                -88.304514, 
+                33.28832
+              ], 
+              [
+                -88.291127, 
+                33.399061
+              ], 
+              [
+                -88.277421, 
+                33.512436
+              ], 
+              [
+                -88.276805, 
+                33.516463
+              ], 
+              [
+                -88.274619, 
+                33.534008
+              ], 
+              [
+                -88.27005, 
+                33.570819
+              ], 
+              [
+                -88.269532, 
+                33.572894
+              ], 
+              [
+                -88.269076, 
+                33.576929
+              ], 
+              [
+                -88.26816, 
+                33.58504
+              ], 
+              [
+                -88.267148, 
+                33.591989
+              ], 
+              [
+                -88.267005, 
+                33.594229
+              ], 
+              [
+                -88.256343, 
+                33.682053
+              ], 
+              [
+                -88.256131, 
+                33.68286
+              ], 
+              [
+                -88.254622, 
+                33.69578
+              ], 
+              [
+                -88.254445, 
+                33.698779
+              ], 
+              [
+                -88.24839, 
+                33.744908
+              ], 
+              [
+                -88.226517, 
+                33.911551
+              ], 
+              [
+                -88.226517, 
+                33.911665
+              ], 
+              [
+                -88.226428, 
+                33.912875
+              ], 
+              [
+                -88.207229, 
+                34.058333
+              ], 
+              [
+                -88.203597, 
+                34.08653
+              ], 
+              [
+                -88.176889, 
+                34.293858
+              ], 
+              [
+                -88.175867, 
+                34.302171
+              ], 
+              [
+                -88.173632, 
+                34.321054
+              ], 
+              [
+                -88.16591, 
+                34.380926
+              ], 
+              [
+                -88.165634, 
+                34.383102
+              ], 
+              [
+                -88.155305, 
+                34.463087
+              ], 
+              [
+                -88.139988, 
+                34.581703
+              ], 
+              [
+                -88.139246, 
+                34.587795
+              ], 
+              [
+                -88.138719, 
+                34.589215
+              ], 
+              [
+                -88.118407, 
+                34.724292
+              ], 
+              [
+                -88.097888, 
+                34.892202
+              ], 
+              [
+                -88.125038, 
+                34.902227
+              ], 
+              [
+                -88.200064, 
+                34.995634
+              ], 
+              [
+                -88.18245, 
+                35.007712
+              ], 
+              [
+                -87.984916, 
+                35.006256
+              ], 
+              [
+                -87.877969, 
+                35.005468
+              ], 
+              [
+                -87.877742, 
+                35.005512
+              ], 
+              [
+                -87.872626, 
+                35.005571
+              ], 
+              [
+                -87.853528, 
+                35.005541
+              ], 
+              [
+                -87.853411, 
+                35.005576
+              ], 
+              [
+                -87.851886, 
+                35.005656
+              ], 
+              [
+                -87.773586, 
+                35.004946
+              ], 
+              [
+                -87.767602, 
+                35.004783
+              ], 
+              [
+                -87.75889, 
+                35.004711
+              ], 
+              [
+                -87.709491, 
+                35.004089
+              ], 
+              [
+                -87.702321, 
+                35.003945
+              ], 
+              [
+                -87.700543, 
+                35.003988
+              ], 
+              [
+                -87.696834, 
+                35.003852
+              ], 
+              [
+                -87.671405, 
+                35.003537
+              ], 
+              [
+                -87.664123, 
+                35.003523
+              ], 
+              [
+                -87.606031, 
+                35.003343
+              ], 
+              [
+                -87.428613, 
+                35.002795
+              ], 
+              [
+                -87.421543, 
+                35.002679
+              ], 
+              [
+                -87.4174, 
+                35.002669
+              ], 
+              [
+                -87.391314, 
+                35.002374
+              ], 
+              [
+                -87.381071, 
+                35.002118
+              ], 
+              [
+                -87.359281, 
+                35.001823
+              ], 
+              [
+                -87.349251, 
+                35.001662
+              ], 
+              [
+                -87.299185, 
+                35.000915
+              ], 
+              [
+                -87.270014, 
+                35.00039
+              ], 
+              [
+                -87.230544, 
+                34.999484
+              ], 
+              [
+                -87.224053, 
+                34.999327
+              ], 
+              [
+                -87.216683, 
+                34.999148
+              ], 
+              [
+                -87.210759, 
+                34.999024
+              ], 
+              [
+                -87.011174, 
+                34.995162
+              ], 
+              [
+                -87.000007, 
+                34.995121
+              ], 
+              [
+                -86.974412, 
+                34.994513
+              ], 
+              [
+                -86.972613, 
+                34.99461
+              ], 
+              [
+                -86.970236, 
+                34.994546
+              ], 
+              [
+                -86.96712, 
+                34.9944
+              ], 
+              [
+                -86.862147, 
+                34.991956
+              ], 
+              [
+                -86.849794, 
+                34.991924
+              ], 
+              [
+                -86.846466, 
+                34.99186
+              ], 
+              [
+                -86.83637, 
+                34.991764
+              ], 
+              [
+                -86.836306, 
+                34.991764
+              ], 
+              [
+                -86.820657, 
+                34.991764
+              ], 
+              [
+                -86.783648, 
+                34.991925
+              ], 
+              [
+                -86.783628, 
+                34.991925
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 23, 
+      "properties": {
+        "CENSUSAREA": 50645.326, 
+        "GEO_ID": "0400000US01", 
+        "ISO": "US-AL", 
+        "LSAD": "", 
+        "NAME": "Alabama", 
+        "NAME_1": "Alabama", 
+        "STATE": "AL"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -80.250581, 
+                25.34193
+              ], 
+              [
+                -80.254916, 
+                25.336336
+              ], 
+              [
+                -80.260137, 
+                25.324641
+              ], 
+              [
+                -80.268138, 
+                25.320675
+              ], 
+              [
+                -80.288184, 
+                25.282835
+              ], 
+              [
+                -80.307584, 
+                25.257561
+              ], 
+              [
+                -80.351399, 
+                25.190615
+              ], 
+              [
+                -80.354019, 
+                25.184306
+              ], 
+              [
+                -80.349855, 
+                25.168825
+              ], 
+              [
+                -80.35857, 
+                25.154073
+              ], 
+              [
+                -80.377084, 
+                25.130487
+              ], 
+              [
+                -80.399767, 
+                25.108536
+              ], 
+              [
+                -80.428318, 
+                25.095547
+              ], 
+              [
+                -80.431032, 
+                25.08925
+              ], 
+              [
+                -80.443375, 
+                25.076084
+              ], 
+              [
+                -80.462011, 
+                25.069935
+              ], 
+              [
+                -80.47387, 
+                25.060253
+              ], 
+              [
+                -80.493881, 
+                25.038502
+              ], 
+              [
+                -80.48912, 
+                25.031301
+              ], 
+              [
+                -80.494781, 
+                25.023019
+              ], 
+              [
+                -80.537995, 
+                24.990244
+              ], 
+              [
+                -80.565831, 
+                24.958155
+              ], 
+              [
+                -80.571668, 
+                24.953659
+              ], 
+              [
+                -80.588272, 
+                24.951153
+              ], 
+              [
+                -80.596073, 
+                24.948173
+              ], 
+              [
+                -80.611693, 
+                24.93842
+              ], 
+              [
+                -80.635571, 
+                24.913003
+              ], 
+              [
+                -80.659395, 
+                24.897433
+              ], 
+              [
+                -80.66128, 
+                24.899704
+              ], 
+              [
+                -80.660198, 
+                24.90498
+              ], 
+              [
+                -80.650765, 
+                24.908121
+              ], 
+              [
+                -80.641306, 
+                24.914311
+              ], 
+              [
+                -80.623866, 
+                24.931236
+              ], 
+              [
+                -80.622896, 
+                24.935587
+              ], 
+              [
+                -80.624172, 
+                24.939058
+              ], 
+              [
+                -80.621658, 
+                24.944265
+              ], 
+              [
+                -80.597074, 
+                24.958492
+              ], 
+              [
+                -80.581131, 
+                24.964738
+              ], 
+              [
+                -80.578185, 
+                24.962811
+              ], 
+              [
+                -80.570813, 
+                24.962215
+              ], 
+              [
+                -80.558785, 
+                24.971505
+              ], 
+              [
+                -80.54411, 
+                24.999916
+              ], 
+              [
+                -80.543254, 
+                25.007337
+              ], 
+              [
+                -80.545971, 
+                25.01477
+              ], 
+              [
+                -80.524498, 
+                25.016945
+              ], 
+              [
+                -80.509136, 
+                25.028317
+              ], 
+              [
+                -80.501326, 
+                25.041436
+              ], 
+              [
+                -80.495569, 
+                25.047497
+              ], 
+              [
+                -80.4889, 
+                25.05011
+              ], 
+              [
+                -80.481197, 
+                25.056604
+              ], 
+              [
+                -80.460652, 
+                25.078904
+              ], 
+              [
+                -80.465496, 
+                25.086609
+              ], 
+              [
+                -80.470211, 
+                25.089438
+              ], 
+              [
+                -80.481763, 
+                25.091905
+              ], 
+              [
+                -80.494715, 
+                25.102269
+              ], 
+              [
+                -80.484188, 
+                25.10943
+              ], 
+              [
+                -80.47748, 
+                25.107407
+              ], 
+              [
+                -80.476174, 
+                25.099454
+              ], 
+              [
+                -80.463987, 
+                25.09321
+              ], 
+              [
+                -80.450399, 
+                25.088751
+              ], 
+              [
+                -80.444887, 
+                25.092966
+              ], 
+              [
+                -80.433575, 
+                25.106317
+              ], 
+              [
+                -80.433499, 
+                25.114665
+              ], 
+              [
+                -80.447659, 
+                25.147729
+              ], 
+              [
+                -80.446473, 
+                25.151287
+              ], 
+              [
+                -80.41326, 
+                25.137053
+              ], 
+              [
+                -80.403177, 
+                25.141798
+              ], 
+              [
+                -80.395467, 
+                25.150694
+              ], 
+              [
+                -80.387164, 
+                25.170859
+              ], 
+              [
+                -80.38835, 
+                25.182721
+              ], 
+              [
+                -80.391909, 
+                25.19221
+              ], 
+              [
+                -80.387164, 
+                25.198141
+              ], 
+              [
+                -80.369965, 
+                25.206444
+              ], 
+              [
+                -80.358696, 
+                25.207037
+              ], 
+              [
+                -80.3498, 
+                25.210595
+              ], 
+              [
+                -80.337345, 
+                25.231353
+              ], 
+              [
+                -80.333787, 
+                25.253891
+              ], 
+              [
+                -80.336159, 
+                25.261601
+              ], 
+              [
+                -80.342683, 
+                25.268125
+              ], 
+              [
+                -80.368186, 
+                25.282359
+              ], 
+              [
+                -80.364034, 
+                25.28651
+              ], 
+              [
+                -80.339421, 
+                25.290069
+              ], 
+              [
+                -80.334676, 
+                25.285917
+              ], 
+              [
+                -80.328746, 
+                25.28651
+              ], 
+              [
+                -80.315698, 
+                25.29422
+              ], 
+              [
+                -80.292567, 
+                25.314385
+              ], 
+              [
+                -80.289602, 
+                25.325061
+              ], 
+              [
+                -80.275961, 
+                25.344039
+              ], 
+              [
+                -80.264614, 
+                25.354322
+              ], 
+              [
+                -80.256982, 
+                25.361239
+              ], 
+              [
+                -80.25461, 
+                25.38081
+              ], 
+              [
+                -80.251052, 
+                25.391486
+              ], 
+              [
+                -80.246307, 
+                25.398603
+              ], 
+              [
+                -80.226142, 
+                25.406313
+              ], 
+              [
+                -80.219025, 
+                25.411058
+              ], 
+              [
+                -80.21428, 
+                25.416988
+              ], 
+              [
+                -80.20657, 
+                25.434188
+              ], 
+              [
+                -80.199453, 
+                25.458504
+              ], 
+              [
+                -80.192336, 
+                25.473331
+              ], 
+              [
+                -80.189964, 
+                25.485786
+              ], 
+              [
+                -80.191743, 
+                25.495275
+              ], 
+              [
+                -80.188778, 
+                25.50773
+              ], 
+              [
+                -80.179288, 
+                25.518999
+              ], 
+              [
+                -80.174544, 
+                25.518406
+              ], 
+              [
+                -80.173951, 
+                25.482821
+              ], 
+              [
+                -80.184033, 
+                25.468587
+              ], 
+              [
+                -80.204198, 
+                25.412244
+              ], 
+              [
+                -80.221991, 
+                25.397417
+              ], 
+              [
+                -80.238004, 
+                25.361832
+              ], 
+              [
+                -80.240376, 
+                25.347005
+              ], 
+              [
+                -80.249865, 
+                25.342853
+              ], 
+              [
+                -80.250581, 
+                25.34193
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -81.582923, 
+                24.658732
+              ], 
+              [
+                -81.580534, 
+                24.66914
+              ], 
+              [
+                -81.562917, 
+                24.692912
+              ], 
+              [
+                -81.55761, 
+                24.692488
+              ], 
+              [
+                -81.542116, 
+                24.681026
+              ], 
+              [
+                -81.535323, 
+                24.67954
+              ], 
+              [
+                -81.51898, 
+                24.687818
+              ], 
+              [
+                -81.516433, 
+                24.700341
+              ], 
+              [
+                -81.5124, 
+                24.703737
+              ], 
+              [
+                -81.490962, 
+                24.710105
+              ], 
+              [
+                -81.476642, 
+                24.711244
+              ], 
+              [
+                -81.474186, 
+                24.706332
+              ], 
+              [
+                -81.469275, 
+                24.704286
+              ], 
+              [
+                -81.459043, 
+                24.707355
+              ], 
+              [
+                -81.454132, 
+                24.710834
+              ], 
+              [
+                -81.451881, 
+                24.714518
+              ], 
+              [
+                -81.4527, 
+                24.736209
+              ], 
+              [
+                -81.456588, 
+                24.740097
+              ], 
+              [
+                -81.451267, 
+                24.747464
+              ], 
+              [
+                -81.440831, 
+                24.73539
+              ], 
+              [
+                -81.43858, 
+                24.727
+              ], 
+              [
+                -81.435715, 
+                24.723931
+              ], 
+              [
+                -81.432032, 
+                24.722908
+              ], 
+              [
+                -81.423028, 
+                24.731911
+              ], 
+              [
+                -81.421595, 
+                24.737641
+              ], 
+              [
+                -81.427121, 
+                24.745827
+              ], 
+              [
+                -81.430599, 
+                24.747259
+              ], 
+              [
+                -81.431009, 
+                24.751761
+              ], 
+              [
+                -81.425483, 
+                24.752989
+              ], 
+              [
+                -81.402769, 
+                24.749101
+              ], 
+              [
+                -81.392947, 
+                24.743371
+              ], 
+              [
+                -81.390287, 
+                24.73846
+              ], 
+              [
+                -81.389468, 
+                24.731298
+              ], 
+              [
+                -81.38558, 
+                24.726182
+              ], 
+              [
+                -81.36041, 
+                24.708788
+              ], 
+              [
+                -81.345881, 
+                24.70756
+              ], 
+              [
+                -81.319282, 
+                24.701238
+              ], 
+              [
+                -81.314787, 
+                24.691764
+              ], 
+              [
+                -81.313933, 
+                24.680707
+              ], 
+              [
+                -81.309664, 
+                24.665017
+              ], 
+              [
+                -81.298028, 
+                24.656774
+              ], 
+              [
+                -81.298369, 
+                24.654326
+              ], 
+              [
+                -81.303113, 
+                24.651665
+              ], 
+              [
+                -81.332831, 
+                24.639528
+              ], 
+              [
+                -81.395096, 
+                24.621062
+              ], 
+              [
+                -81.401946, 
+                24.623564
+              ], 
+              [
+                -81.403319, 
+                24.640294
+              ], 
+              [
+                -81.414187, 
+                24.647167
+              ], 
+              [
+                -81.432315, 
+                24.645949
+              ], 
+              [
+                -81.448623, 
+                24.640172
+              ], 
+              [
+                -81.470411, 
+                24.641985
+              ], 
+              [
+                -81.480951, 
+                24.645121
+              ], 
+              [
+                -81.48183, 
+                24.647369
+              ], 
+              [
+                -81.477915, 
+                24.649893
+              ], 
+              [
+                -81.47641, 
+                24.653197
+              ], 
+              [
+                -81.480504, 
+                24.659757
+              ], 
+              [
+                -81.49858, 
+                24.66498
+              ], 
+              [
+                -81.502992, 
+                24.660877
+              ], 
+              [
+                -81.505585, 
+                24.654609
+              ], 
+              [
+                -81.50874, 
+                24.64421
+              ], 
+              [
+                -81.509028, 
+                24.631516
+              ], 
+              [
+                -81.511165, 
+                24.625135
+              ], 
+              [
+                -81.518595, 
+                24.620304
+              ], 
+              [
+                -81.54645, 
+                24.614895
+              ], 
+              [
+                -81.602998, 
+                24.586444
+              ], 
+              [
+                -81.664209, 
+                24.573143
+              ], 
+              [
+                -81.674694, 
+                24.564359
+              ], 
+              [
+                -81.685278, 
+                24.558739
+              ], 
+              [
+                -81.691575, 
+                24.559886
+              ], 
+              [
+                -81.732511, 
+                24.556423
+              ], 
+              [
+                -81.765993, 
+                24.552103
+              ], 
+              [
+                -81.786157, 
+                24.54658
+              ], 
+              [
+                -81.810333, 
+                24.544701
+              ], 
+              [
+                -81.81289, 
+                24.546468
+              ], 
+              [
+                -81.814446, 
+                24.56358
+              ], 
+              [
+                -81.811386, 
+                24.56975
+              ], 
+              [
+                -81.800676, 
+                24.570989
+              ], 
+              [
+                -81.794057, 
+                24.586
+              ], 
+              [
+                -81.773808, 
+                24.584977
+              ], 
+              [
+                -81.748071, 
+                24.590199
+              ], 
+              [
+                -81.739241, 
+                24.589973
+              ], 
+              [
+                -81.734573, 
+                24.584148
+              ], 
+              [
+                -81.730473, 
+                24.58196
+              ], 
+              [
+                -81.715944, 
+                24.587956
+              ], 
+              [
+                -81.71548, 
+                24.592498
+              ], 
+              [
+                -81.705364, 
+                24.597647
+              ], 
+              [
+                -81.699349, 
+                24.597647
+              ], 
+              [
+                -81.694235, 
+                24.591932
+              ], 
+              [
+                -81.687017, 
+                24.592534
+              ], 
+              [
+                -81.678595, 
+                24.597647
+              ], 
+              [
+                -81.66897, 
+                24.607873
+              ], 
+              [
+                -81.655735, 
+                24.616295
+              ], 
+              [
+                -81.637087, 
+                24.621408
+              ], 
+              [
+                -81.614829, 
+                24.642764
+              ], 
+              [
+                -81.614529, 
+                24.650584
+              ], 
+              [
+                -81.597685, 
+                24.655397
+              ], 
+              [
+                -81.587759, 
+                24.655998
+              ], 
+              [
+                -81.582923, 
+                24.658732
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -82.15068, 
+                24.576331
+              ], 
+              [
+                -82.143075, 
+                24.593395
+              ], 
+              [
+                -82.135423, 
+                24.596879
+              ], 
+              [
+                -82.125268, 
+                24.597426
+              ], 
+              [
+                -82.104187, 
+                24.588256
+              ], 
+              [
+                -82.101051, 
+                24.584679
+              ], 
+              [
+                -82.099417, 
+                24.572522
+              ], 
+              [
+                -82.104429, 
+                24.561167
+              ], 
+              [
+                -82.116787, 
+                24.549144
+              ], 
+              [
+                -82.159439, 
+                24.548212
+              ], 
+              [
+                -82.165206, 
+                24.552159
+              ], 
+              [
+                -82.164426, 
+                24.563375
+              ], 
+              [
+                -82.15068, 
+                24.576331
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -81.249799, 
+                24.673357
+              ], 
+              [
+                -81.246095, 
+                24.675832
+              ], 
+              [
+                -81.243232, 
+                24.673998
+              ], 
+              [
+                -81.244761, 
+                24.669202
+              ], 
+              [
+                -81.281778, 
+                24.65375
+              ], 
+              [
+                -81.278312, 
+                24.660448
+              ], 
+              [
+                -81.260006, 
+                24.674848
+              ], 
+              [
+                -81.249799, 
+                24.673357
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -80.909954, 
+                24.781154
+              ], 
+              [
+                -80.906288, 
+                24.769867
+              ], 
+              [
+                -80.912042, 
+                24.76505
+              ], 
+              [
+                -80.938543, 
+                24.767535
+              ], 
+              [
+                -81.015933, 
+                24.719881
+              ], 
+              [
+                -81.023794, 
+                24.716901
+              ], 
+              [
+                -81.028616, 
+                24.720618
+              ], 
+              [
+                -81.032447, 
+                24.727323
+              ], 
+              [
+                -81.03429, 
+                24.727341
+              ], 
+              [
+                -81.064554, 
+                24.715453
+              ], 
+              [
+                -81.071034, 
+                24.711722
+              ], 
+              [
+                -81.075855, 
+                24.704266
+              ], 
+              [
+                -81.078716, 
+                24.696557
+              ], 
+              [
+                -81.078439, 
+                24.692382
+              ], 
+              [
+                -81.108041, 
+                24.688592
+              ], 
+              [
+                -81.124094, 
+                24.704873
+              ], 
+              [
+                -81.125371, 
+                24.708291
+              ], 
+              [
+                -81.107355, 
+                24.71276
+              ], 
+              [
+                -81.105287, 
+                24.71128
+              ], 
+              [
+                -81.099135, 
+                24.711993
+              ], 
+              [
+                -81.066816, 
+                24.723926
+              ], 
+              [
+                -81.05057, 
+                24.737581
+              ], 
+              [
+                -81.041797, 
+                24.742965
+              ], 
+              [
+                -81.036698, 
+                24.742827
+              ], 
+              [
+                -81.035192, 
+                24.739982
+              ], 
+              [
+                -81.02217, 
+                24.733091
+              ], 
+              [
+                -81.016918, 
+                24.734676
+              ], 
+              [
+                -80.994426, 
+                24.743991
+              ], 
+              [
+                -80.986454, 
+                24.752749
+              ], 
+              [
+                -80.960129, 
+                24.764226
+              ], 
+              [
+                -80.910431, 
+                24.782324
+              ], 
+              [
+                -80.909954, 
+                24.781154
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -81.317673, 
+                24.75729
+              ], 
+              [
+                -81.305468, 
+                24.756612
+              ], 
+              [
+                -81.290801, 
+                24.736862
+              ], 
+              [
+                -81.288259, 
+                24.720881
+              ], 
+              [
+                -81.302984, 
+                24.714199
+              ], 
+              [
+                -81.310744, 
+                24.727068
+              ], 
+              [
+                -81.318505, 
+                24.729477
+              ], 
+              [
+                -81.326844, 
+                24.728375
+              ], 
+              [
+                -81.350162, 
+                24.746524
+              ], 
+              [
+                -81.357417, 
+                24.756834
+              ], 
+              [
+                -81.342695, 
+                24.75625
+              ], 
+              [
+                -81.327555, 
+                24.762315
+              ], 
+              [
+                -81.324637, 
+                24.76721
+              ], 
+              [
+                -81.317673, 
+                24.75729
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -80.89054, 
+                24.791678
+              ], 
+              [
+                -80.884572, 
+                24.791561
+              ], 
+              [
+                -80.88402, 
+                24.790414
+              ], 
+              [
+                -80.892649, 
+                24.785991
+              ], 
+              [
+                -80.906874, 
+                24.783744
+              ], 
+              [
+                -80.89054, 
+                24.791678
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -80.788263, 
+                24.824218
+              ], 
+              [
+                -80.790497, 
+                24.817789
+              ], 
+              [
+                -80.796053, 
+                24.81194
+              ], 
+              [
+                -80.822342, 
+                24.812629
+              ], 
+              [
+                -80.846191, 
+                24.802968
+              ], 
+              [
+                -80.850338, 
+                24.8026
+              ], 
+              [
+                -80.850866, 
+                24.803701
+              ], 
+              [
+                -80.846142, 
+                24.807488
+              ], 
+              [
+                -80.830158, 
+                24.81428
+              ], 
+              [
+                -80.814551, 
+                24.827953
+              ], 
+              [
+                -80.79278, 
+                24.843918
+              ], 
+              [
+                -80.780564, 
+                24.84052
+              ], 
+              [
+                -80.788263, 
+                24.824218
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -80.729275, 
+                24.865361
+              ], 
+              [
+                -80.719977, 
+                24.864644
+              ], 
+              [
+                -80.703028, 
+                24.880873
+              ], 
+              [
+                -80.691762, 
+                24.885759
+              ], 
+              [
+                -80.690354, 
+                24.881539
+              ], 
+              [
+                -80.703176, 
+                24.869495
+              ], 
+              [
+                -80.71185, 
+                24.863323
+              ], 
+              [
+                -80.761359, 
+                24.836225
+              ], 
+              [
+                -80.766966, 
+                24.836158
+              ], 
+              [
+                -80.745468, 
+                24.850652
+              ], 
+              [
+                -80.740611, 
+                24.857421
+              ], 
+              [
+                -80.732343, 
+                24.86481
+              ], 
+              [
+                -80.729275, 
+                24.865361
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -82.255777, 
+                26.703437
+              ], 
+              [
+                -82.255159, 
+                26.70816
+              ], 
+              [
+                -82.246535, 
+                26.706435
+              ], 
+              [
+                -82.24251, 
+                26.694361
+              ], 
+              [
+                -82.24596, 
+                26.688612
+              ], 
+              [
+                -82.246535, 
+                26.683437
+              ], 
+              [
+                -82.23744, 
+                26.661976
+              ], 
+              [
+                -82.218342, 
+                26.626407
+              ], 
+              [
+                -82.214337, 
+                26.602944
+              ], 
+              [
+                -82.196514, 
+                26.559823
+              ], 
+              [
+                -82.187315, 
+                26.527626
+              ], 
+              [
+                -82.177541, 
+                26.502328
+              ], 
+              [
+                -82.166042, 
+                26.489679
+              ], 
+              [
+                -82.149368, 
+                26.477605
+              ], 
+              [
+                -82.131545, 
+                26.47703
+              ], 
+              [
+                -82.120046, 
+                26.473581
+              ], 
+              [
+                -82.088423, 
+                26.455182
+              ], 
+              [
+                -82.076924, 
+                26.466106
+              ], 
+              [
+                -82.062551, 
+                26.470131
+              ], 
+              [
+                -82.038403, 
+                26.456907
+              ], 
+              [
+                -82.015607, 
+                26.454858
+              ], 
+              [
+                -82.013713, 
+                26.454258
+              ], 
+              [
+                -82.013913, 
+                26.452058
+              ], 
+              [
+                -82.063114, 
+                26.425459
+              ], 
+              [
+                -82.075015, 
+                26.422059
+              ], 
+              [
+                -82.082915, 
+                26.422059
+              ], 
+              [
+                -82.098115, 
+                26.424959
+              ], 
+              [
+                -82.126671, 
+                26.436279
+              ], 
+              [
+                -82.148716, 
+                26.455458
+              ], 
+              [
+                -82.172917, 
+                26.467658
+              ], 
+              [
+                -82.177017, 
+                26.471558
+              ], 
+              [
+                -82.180717, 
+                26.476257
+              ], 
+              [
+                -82.186441, 
+                26.489221
+              ], 
+              [
+                -82.201402, 
+                26.55631
+              ], 
+              [
+                -82.205523, 
+                26.566536
+              ], 
+              [
+                -82.222131, 
+                26.590402
+              ], 
+              [
+                -82.238872, 
+                26.636433
+              ], 
+              [
+                -82.248659, 
+                26.654337
+              ], 
+              [
+                -82.263008, 
+                26.673388
+              ], 
+              [
+                -82.268007, 
+                26.682791
+              ], 
+              [
+                -82.264351, 
+                26.698496
+              ], 
+              [
+                -82.255777, 
+                26.703437
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -84.777208, 
+                29.707398
+              ], 
+              [
+                -84.729836, 
+                29.738881
+              ], 
+              [
+                -84.716994, 
+                29.749066
+              ], 
+              [
+                -84.696726, 
+                29.76993
+              ], 
+              [
+                -84.694125, 
+                29.764593
+              ], 
+              [
+                -84.694939, 
+                29.761844
+              ], 
+              [
+                -84.713747, 
+                29.74139
+              ], 
+              [
+                -84.765117, 
+                29.699724
+              ], 
+              [
+                -84.776954, 
+                29.692191
+              ], 
+              [
+                -84.799129, 
+                29.681565
+              ], 
+              [
+                -84.853829, 
+                29.66472
+              ], 
+              [
+                -84.884632, 
+                29.652248
+              ], 
+              [
+                -84.957779, 
+                29.612635
+              ], 
+              [
+                -85.036219, 
+                29.588919
+              ], 
+              [
+                -85.051033, 
+                29.586928
+              ], 
+              [
+                -85.054624, 
+                29.592084
+              ], 
+              [
+                -85.069453, 
+                29.605282
+              ], 
+              [
+                -85.09519, 
+                29.62249
+              ], 
+              [
+                -85.097082, 
+                29.625215
+              ], 
+              [
+                -85.094882, 
+                29.627757
+              ], 
+              [
+                -85.06653, 
+                29.609952
+              ], 
+              [
+                -85.038497, 
+                29.599552
+              ], 
+              [
+                -85.023501, 
+                29.597073
+              ], 
+              [
+                -85.017205, 
+                29.604379
+              ], 
+              [
+                -84.987775, 
+                29.610307
+              ], 
+              [
+                -84.968314, 
+                29.617238
+              ], 
+              [
+                -84.932592, 
+                29.637232
+              ], 
+              [
+                -84.925842, 
+                29.644949
+              ], 
+              [
+                -84.920333, 
+                29.648638
+              ], 
+              [
+                -84.895885, 
+                29.657444
+              ], 
+              [
+                -84.862099, 
+                29.672572
+              ], 
+              [
+                -84.813352, 
+                29.687028
+              ], 
+              [
+                -84.79816, 
+                29.699321
+              ], 
+              [
+                -84.777208, 
+                29.707398
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -85.156415, 
+                29.679628
+              ], 
+              [
+                -85.137397, 
+                29.684348
+              ], 
+              [
+                -85.134639, 
+                29.686569
+              ], 
+              [
+                -85.114268, 
+                29.688658
+              ], 
+              [
+                -85.093902, 
+                29.684838
+              ], 
+              [
+                -85.083719, 
+                29.679019
+              ], 
+              [
+                -85.077237, 
+                29.670862
+              ], 
+              [
+                -85.091399, 
+                29.648634
+              ], 
+              [
+                -85.097218, 
+                29.633004
+              ], 
+              [
+                -85.124913, 
+                29.628433
+              ], 
+              [
+                -85.142746, 
+                29.635404
+              ], 
+              [
+                -85.16252, 
+                29.650282
+              ], 
+              [
+                -85.18453, 
+                29.663987
+              ], 
+              [
+                -85.204314, 
+                29.672695
+              ], 
+              [
+                -85.222546, 
+                29.678039
+              ], 
+              [
+                -85.220324, 
+                29.680138
+              ], 
+              [
+                -85.208981, 
+                29.681775
+              ], 
+              [
+                -85.184776, 
+                29.68271
+              ], 
+              [
+                -85.168625, 
+                29.682409
+              ], 
+              [
+                -85.156415, 
+                29.679628
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -82.821585, 
+                27.964443
+              ], 
+              [
+                -82.829801, 
+                27.968469
+              ], 
+              [
+                -82.828625, 
+                28.019795
+              ], 
+              [
+                -82.823025, 
+                28.030695
+              ], 
+              [
+                -82.823063, 
+                28.044758
+              ], 
+              [
+                -82.826282, 
+                28.05345
+              ], 
+              [
+                -82.831825, 
+                28.062893
+              ], 
+              [
+                -82.836326, 
+                28.073193
+              ], 
+              [
+                -82.833225, 
+                28.082193
+              ], 
+              [
+                -82.830525, 
+                28.085293
+              ], 
+              [
+                -82.826125, 
+                28.083793
+              ], 
+              [
+                -82.823063, 
+                28.068258
+              ], 
+              [
+                -82.818288, 
+                28.057613
+              ], 
+              [
+                -82.813435, 
+                28.03716
+              ], 
+              [
+                -82.815168, 
+                28.012547
+              ], 
+              [
+                -82.821408, 
+                28.008387
+              ], 
+              [
+                -82.821755, 
+                28.002494
+              ], 
+              [
+                -82.817248, 
+                27.992094
+              ], 
+              [
+                -82.815168, 
+                27.973721
+              ], 
+              [
+                -82.821585, 
+                27.964443
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -83.309455, 
+                30.634417
+              ], 
+              [
+                -83.30925, 
+                30.634405
+              ], 
+              [
+                -83.309249, 
+                30.634405
+              ], 
+              [
+                -83.256218, 
+                30.631279
+              ], 
+              [
+                -83.187391, 
+                30.627223
+              ], 
+              [
+                -83.174411, 
+                30.626444
+              ], 
+              [
+                -83.163309, 
+                30.625895
+              ], 
+              [
+                -83.15617, 
+                30.625504
+              ], 
+              [
+                -83.136616, 
+                30.624346
+              ], 
+              [
+                -82.878779, 
+                30.609082
+              ], 
+              [
+                -82.877259, 
+                30.609024
+              ], 
+              [
+                -82.698902, 
+                30.598271
+              ], 
+              [
+                -82.698618, 
+                30.598232
+              ], 
+              [
+                -82.689539, 
+                30.597734
+              ], 
+              [
+                -82.689271, 
+                30.597719
+              ], 
+              [
+                -82.584002, 
+                30.591796
+              ], 
+              [
+                -82.569237, 
+                30.590965
+              ], 
+              [
+                -82.565476, 
+                30.590622
+              ], 
+              [
+                -82.553159, 
+                30.589934
+              ], 
+              [
+                -82.545055, 
+                30.589361
+              ], 
+              [
+                -82.536233, 
+                30.588885
+              ], 
+              [
+                -82.524899, 
+                30.588189
+              ], 
+              [
+                -82.459792, 
+                30.584287
+              ], 
+              [
+                -82.459544, 
+                30.584272
+              ], 
+              [
+                -82.418915, 
+                30.581745
+              ], 
+              [
+                -82.374844, 
+                30.579004
+              ], 
+              [
+                -82.287343, 
+                30.573458
+              ], 
+              [
+                -82.2581, 
+                30.571559
+              ], 
+              [
+                -82.249841, 
+                30.570863
+              ], 
+              [
+                -82.214847, 
+                30.567009
+              ], 
+              [
+                -82.214385, 
+                30.566958
+              ], 
+              [
+                -82.21233, 
+                30.499558
+              ], 
+              [
+                -82.20604, 
+                30.455507
+              ], 
+              [
+                -82.210291, 
+                30.42459
+              ], 
+              [
+                -82.204151, 
+                30.40133
+              ], 
+              [
+                -82.189583, 
+                30.376213
+              ], 
+              [
+                -82.171508, 
+                30.359869
+              ], 
+              [
+                -82.165192, 
+                30.358035
+              ], 
+              [
+                -82.124835, 
+                30.366564
+              ], 
+              [
+                -82.050069, 
+                30.362338
+              ], 
+              [
+                -82.050031, 
+                30.36249
+              ], 
+              [
+                -82.016103, 
+                30.497355
+              ], 
+              [
+                -82.01699, 
+                30.519358
+              ], 
+              [
+                -82.005477, 
+                30.563495
+              ], 
+              [
+                -82.01329, 
+                30.595665
+              ], 
+              [
+                -82.037609, 
+                30.633271
+              ], 
+              [
+                -82.049401, 
+                30.655296
+              ], 
+              [
+                -82.050432, 
+                30.676266
+              ], 
+              [
+                -82.023213, 
+                30.781987
+              ], 
+              [
+                -81.999836, 
+                30.788348
+              ], 
+              [
+                -81.906014, 
+                30.822176
+              ], 
+              [
+                -81.868608, 
+                30.792754
+              ], 
+              [
+                -81.840375, 
+                30.786384
+              ], 
+              [
+                -81.827014, 
+                30.788933
+              ], 
+              [
+                -81.806652, 
+                30.789683
+              ], 
+              [
+                -81.759338, 
+                30.771377
+              ], 
+              [
+                -81.741278, 
+                30.762681
+              ], 
+              [
+                -81.732627, 
+                30.749934
+              ], 
+              [
+                -81.719927, 
+                30.744634
+              ], 
+              [
+                -81.637222, 
+                30.733835
+              ], 
+              [
+                -81.624298, 
+                30.736194
+              ], 
+              [
+                -81.606221, 
+                30.718135
+              ], 
+              [
+                -81.544618, 
+                30.712636
+              ], 
+              [
+                -81.444124, 
+                30.709714
+              ], 
+              [
+                -81.432725, 
+                30.703017
+              ], 
+              [
+                -81.42742, 
+                30.69802
+              ], 
+              [
+                -81.430843, 
+                30.669393
+              ], 
+              [
+                -81.443099, 
+                30.600938
+              ], 
+              [
+                -81.442564, 
+                30.555189
+              ], 
+              [
+                -81.434064, 
+                30.522569
+              ], 
+              [
+                -81.442784, 
+                30.50992
+              ], 
+              [
+                -81.447087, 
+                30.503679
+              ], 
+              [
+                -81.440108, 
+                30.497678
+              ], 
+              [
+                -81.42601, 
+                30.496739
+              ], 
+              [
+                -81.410809, 
+                30.482039
+              ], 
+              [
+                -81.407008, 
+                30.42204
+              ], 
+              [
+                -81.397422, 
+                30.400626
+              ], 
+              [
+                -81.396407, 
+                30.34004
+              ], 
+              [
+                -81.391606, 
+                30.303441
+              ], 
+              [
+                -81.385505, 
+                30.273841
+              ], 
+              [
+                -81.379879, 
+                30.252914
+              ], 
+              [
+                -81.355591, 
+                30.162563
+              ], 
+              [
+                -81.308978, 
+                29.96944
+              ], 
+              [
+                -81.295268, 
+                29.928614
+              ], 
+              [
+                -81.288955, 
+                29.91518
+              ], 
+              [
+                -81.27654, 
+                29.90046
+              ], 
+              [
+                -81.270442, 
+                29.883106
+              ], 
+              [
+                -81.264693, 
+                29.858212
+              ], 
+              [
+                -81.263396, 
+                29.820663
+              ], 
+              [
+                -81.256711, 
+                29.784693
+              ], 
+              [
+                -81.240924, 
+                29.739218
+              ], 
+              [
+                -81.229015, 
+                29.714693
+              ], 
+              [
+                -81.212878, 
+                29.670667
+              ], 
+              [
+                -81.211565, 
+                29.667085
+              ], 
+              [
+                -81.163581, 
+                29.55529
+              ], 
+              [
+                -81.123896, 
+                29.474465
+              ], 
+              [
+                -81.101923, 
+                29.427055
+              ], 
+              [
+                -81.046678, 
+                29.307856
+              ], 
+              [
+                -80.995423, 
+                29.206052
+              ], 
+              [
+                -80.966176, 
+                29.14796
+              ], 
+              [
+                -80.944376, 
+                29.110861
+              ], 
+              [
+                -80.907275, 
+                29.064262
+              ], 
+              [
+                -80.893675, 
+                29.036163
+              ], 
+              [
+                -80.878275, 
+                29.010563
+              ], 
+              [
+                -80.787021, 
+                28.875266
+              ], 
+              [
+                -80.732244, 
+                28.791237
+              ], 
+              [
+                -80.713183, 
+                28.761997
+              ], 
+              [
+                -80.713108, 
+                28.761882
+              ], 
+              [
+                -80.712714, 
+                28.761277
+              ], 
+              [
+                -80.709725, 
+                28.756692
+              ], 
+              [
+                -80.708545, 
+                28.755202
+              ], 
+              [
+                -80.672232, 
+                28.709363
+              ], 
+              [
+                -80.663183, 
+                28.69794
+              ], 
+              [
+                -80.647924, 
+                28.678677
+              ], 
+              [
+                -80.64776, 
+                28.67847
+              ], 
+              [
+                -80.647288, 
+                28.677875
+              ], 
+              [
+                -80.645839, 
+                28.675817
+              ], 
+              [
+                -80.641436, 
+                28.669564
+              ], 
+              [
+                -80.639019, 
+                28.666131
+              ], 
+              [
+                -80.631314, 
+                28.655188
+              ], 
+              [
+                -80.61679, 
+                28.634561
+              ], 
+              [
+                -80.583884, 
+                28.597705
+              ], 
+              [
+                -80.574868, 
+                28.585166
+              ], 
+              [
+                -80.567361, 
+                28.562353
+              ], 
+              [
+                -80.560973, 
+                28.530736
+              ], 
+              [
+                -80.536115, 
+                28.478647
+              ], 
+              [
+                -80.525094, 
+                28.459454
+              ], 
+              [
+                -80.526732, 
+                28.451705
+              ], 
+              [
+                -80.562877, 
+                28.437779
+              ], 
+              [
+                -80.574136, 
+                28.427764
+              ], 
+              [
+                -80.587813, 
+                28.410856
+              ], 
+              [
+                -80.596174, 
+                28.390682
+              ], 
+              [
+                -80.603374, 
+                28.363983
+              ], 
+              [
+                -80.606874, 
+                28.336484
+              ], 
+              [
+                -80.608074, 
+                28.311285
+              ], 
+              [
+                -80.604214, 
+                28.257733
+              ], 
+              [
+                -80.589975, 
+                28.17799
+              ], 
+              [
+                -80.566432, 
+                28.09563
+              ], 
+              [
+                -80.547675, 
+                28.048795
+              ], 
+              [
+                -80.508871, 
+                27.970477
+              ], 
+              [
+                -80.446973, 
+                27.861954
+              ], 
+              [
+                -80.447084, 
+                27.860755
+              ], 
+              [
+                -80.447179, 
+                27.859731
+              ], 
+              [
+                -80.383695, 
+                27.740045
+              ], 
+              [
+                -80.351717, 
+                27.642623
+              ], 
+              [
+                -80.350553, 
+                27.628361
+              ], 
+              [
+                -80.34437, 
+                27.616226
+              ], 
+              [
+                -80.330956, 
+                27.597541
+              ], 
+              [
+                -80.324699, 
+                27.569178
+              ], 
+              [
+                -80.321271, 
+                27.557378
+              ], 
+              [
+                -80.311757, 
+                27.524625
+              ], 
+              [
+                -80.30117, 
+                27.500314
+              ], 
+              [
+                -80.293171, 
+                27.500314
+              ], 
+              [
+                -80.265535, 
+                27.420542
+              ], 
+              [
+                -80.253665, 
+                27.37979
+              ], 
+              [
+                -80.233538, 
+                27.341307
+              ], 
+              [
+                -80.226753, 
+                27.322736
+              ], 
+              [
+                -80.199288, 
+                27.263022
+              ], 
+              [
+                -80.19309, 
+                27.249546
+              ], 
+              [
+                -80.16147, 
+                27.192814
+              ], 
+              [
+                -80.153375, 
+                27.169308
+              ], 
+              [
+                -80.159554, 
+                27.163325
+              ], 
+              [
+                -80.14982, 
+                27.143557
+              ], 
+              [
+                -80.138605, 
+                27.111517
+              ], 
+              [
+                -80.116772, 
+                27.072397
+              ], 
+              [
+                -80.093909, 
+                27.018587
+              ], 
+              [
+                -80.079531, 
+                26.9705
+              ], 
+              [
+                -80.066697, 
+                26.927579
+              ], 
+              [
+                -80.046263, 
+                26.859238
+              ], 
+              [
+                -80.031362, 
+                26.796339
+              ], 
+              [
+                -80.03212, 
+                26.77153
+              ], 
+              [
+                -80.036362, 
+                26.77124
+              ], 
+              [
+                -80.037462, 
+                26.76634
+              ], 
+              [
+                -80.032862, 
+                26.715242
+              ], 
+              [
+                -80.032862, 
+                26.700842
+              ], 
+              [
+                -80.035763, 
+                26.676043
+              ], 
+              [
+                -80.035363, 
+                26.612346
+              ], 
+              [
+                -80.038863, 
+                26.569347
+              ], 
+              [
+                -80.050363, 
+                26.509549
+              ], 
+              [
+                -80.060564, 
+                26.444652
+              ], 
+              [
+                -80.070564, 
+                26.336455
+              ], 
+              [
+                -80.072264, 
+                26.335356
+              ], 
+              [
+                -80.074837, 
+                26.321032
+              ], 
+              [
+                -80.075264, 
+                26.318656
+              ], 
+              [
+                -80.079865, 
+                26.264358
+              ], 
+              [
+                -80.085565, 
+                26.249259
+              ], 
+              [
+                -80.089365, 
+                26.231859
+              ], 
+              [
+                -80.101366, 
+                26.147762
+              ], 
+              [
+                -80.105266, 
+                26.096264
+              ], 
+              [
+                -80.106813, 
+                26.092991
+              ], 
+              [
+                -80.108995, 
+                26.088372
+              ], 
+              [
+                -80.109566, 
+                26.087165
+              ], 
+              [
+                -80.112334, 
+                26.053193
+              ], 
+              [
+                -80.117778, 
+                25.986369
+              ], 
+              [
+                -80.117798, 
+                25.975152
+              ], 
+              [
+                -80.117904, 
+                25.915772
+              ], 
+              [
+                -80.12087, 
+                25.883152
+              ], 
+              [
+                -80.119684, 
+                25.841043
+              ], 
+              [
+                -80.122056, 
+                25.817913
+              ], 
+              [
+                -80.127394, 
+                25.791224
+              ], 
+              [
+                -80.127987, 
+                25.772245
+              ], 
+              [
+                -80.137476, 
+                25.750301
+              ], 
+              [
+                -80.144, 
+                25.740812
+              ], 
+              [
+                -80.152896, 
+                25.702855
+              ], 
+              [
+                -80.154082, 
+                25.683283
+              ], 
+              [
+                -80.152303, 
+                25.676759
+              ], 
+              [
+                -80.154972, 
+                25.66549
+              ], 
+              [
+                -80.160903, 
+                25.664897
+              ], 
+              [
+                -80.176916, 
+                25.685062
+              ], 
+              [
+                -80.170392, 
+                25.710565
+              ], 
+              [
+                -80.164461, 
+                25.721833
+              ], 
+              [
+                -80.166241, 
+                25.72895
+              ], 
+              [
+                -80.172765, 
+                25.737847
+              ], 
+              [
+                -80.184626, 
+                25.745557
+              ], 
+              [
+                -80.197674, 
+                25.74437
+              ], 
+              [
+                -80.229107, 
+                25.732509
+              ], 
+              [
+                -80.240376, 
+                25.724206
+              ], 
+              [
+                -80.244528, 
+                25.717089
+              ], 
+              [
+                -80.250459, 
+                25.688028
+              ], 
+              [
+                -80.265879, 
+                25.658373
+              ], 
+              [
+                -80.267065, 
+                25.651849
+              ], 
+              [
+                -80.277147, 
+                25.637022
+              ], 
+              [
+                -80.288416, 
+                25.630498
+              ], 
+              [
+                -80.296719, 
+                25.622195
+              ], 
+              [
+                -80.301464, 
+                25.613299
+              ], 
+              [
+                -80.305615, 
+                25.593134
+              ], 
+              [
+                -80.305615, 
+                25.575342
+              ], 
+              [
+                -80.302057, 
+                25.567632
+              ], 
+              [
+                -80.313918, 
+                25.539164
+              ], 
+              [
+                -80.324594, 
+                25.535605
+              ], 
+              [
+                -80.328746, 
+                25.53264
+              ], 
+              [
+                -80.339421, 
+                25.499427
+              ], 
+              [
+                -80.339421, 
+                25.478669
+              ], 
+              [
+                -80.337049, 
+                25.465621
+              ], 
+              [
+                -80.328152, 
+                25.443084
+              ], 
+              [
+                -80.320442, 
+                25.437153
+              ], 
+              [
+                -80.326373, 
+                25.422919
+              ], 
+              [
+                -80.32578, 
+                25.39801
+              ], 
+              [
+                -80.320442, 
+                25.391486
+              ], 
+              [
+                -80.31036, 
+                25.389707
+              ], 
+              [
+                -80.306801, 
+                25.384369
+              ], 
+              [
+                -80.31036, 
+                25.3731
+              ], 
+              [
+                -80.335269, 
+                25.338701
+              ], 
+              [
+                -80.352469, 
+                25.329805
+              ], 
+              [
+                -80.361662, 
+                25.327433
+              ], 
+              [
+                -80.374116, 
+                25.31735
+              ], 
+              [
+                -80.383013, 
+                25.301337
+              ], 
+              [
+                -80.385978, 
+                25.288289
+              ], 
+              [
+                -80.419191, 
+                25.26338
+              ], 
+              [
+                -80.437815, 
+                25.253077
+              ], 
+              [
+                -80.447066, 
+                25.24796
+              ], 
+              [
+                -80.462832, 
+                25.236248
+              ], 
+              [
+                -80.467824, 
+                25.23254
+              ], 
+              [
+                -80.468366, 
+                25.231977
+              ], 
+              [
+                -80.469843, 
+                25.230442
+              ], 
+              [
+                -80.483244, 
+                25.216526
+              ], 
+              [
+                -80.487591, 
+                25.207829
+              ], 
+              [
+                -80.488035, 
+                25.206942
+              ], 
+              [
+                -80.488216, 
+                25.206757
+              ], 
+              [
+                -80.495341, 
+                25.199463
+              ], 
+              [
+                -80.496179, 
+                25.199637
+              ], 
+              [
+                -80.498361, 
+                25.200091
+              ], 
+              [
+                -80.498644, 
+                25.20015
+              ], 
+              [
+                -80.502983, 
+                25.20316
+              ], 
+              [
+                -80.503125, 
+                25.203259
+              ], 
+              [
+                -80.50778, 
+                25.206488
+              ], 
+              [
+                -80.508113, 
+                25.206719
+              ], 
+              [
+                -80.508116, 
+                25.206725
+              ], 
+              [
+                -80.512928, 
+                25.216719
+              ], 
+              [
+                -80.514724, 
+                25.217702
+              ], 
+              [
+                -80.515297, 
+                25.218016
+              ], 
+              [
+                -80.520359, 
+                25.220788
+              ], 
+              [
+                -80.52319, 
+                25.22008
+              ], 
+              [
+                -80.525784, 
+                25.218649
+              ], 
+              [
+                -80.530207, 
+                25.216207
+              ], 
+              [
+                -80.540947, 
+                25.21821
+              ], 
+              [
+                -80.54204, 
+                25.22185
+              ], 
+              [
+                -80.540947, 
+                25.224945
+              ], 
+              [
+                -80.540765, 
+                25.229678
+              ], 
+              [
+                -80.548491, 
+                25.236535
+              ], 
+              [
+                -80.558223, 
+                25.239012
+              ], 
+              [
+                -80.570785, 
+                25.239366
+              ], 
+              [
+                -80.589186, 
+                25.223796
+              ], 
+              [
+                -80.587593, 
+                25.207695
+              ], 
+              [
+                -80.584783, 
+                25.200695
+              ], 
+              [
+                -80.584771, 
+                25.200665
+              ], 
+              [
+                -80.594338, 
+                25.193437
+              ], 
+              [
+                -80.601627, 
+                25.187931
+              ], 
+              [
+                -80.609607, 
+                25.181902
+              ], 
+              [
+                -80.609609, 
+                25.181901
+              ], 
+              [
+                -80.618989, 
+                25.177345
+              ], 
+              [
+                -80.619024, 
+                25.177328
+              ], 
+              [
+                -80.633992, 
+                25.176829
+              ], 
+              [
+                -80.639873, 
+                25.176633
+              ], 
+              [
+                -80.640275, 
+                25.17662
+              ], 
+              [
+                -80.640823, 
+                25.176364
+              ], 
+              [
+                -80.642456, 
+                25.175601
+              ], 
+              [
+                -80.645737, 
+                25.174069
+              ], 
+              [
+                -80.645822, 
+                25.174029
+              ], 
+              [
+                -80.646099, 
+                25.173599
+              ], 
+              [
+                -80.648565, 
+                25.169773
+              ], 
+              [
+                -80.649251, 
+                25.168708
+              ], 
+              [
+                -80.656944, 
+                25.168216
+              ], 
+              [
+                -80.660692, 
+                25.167976
+              ], 
+              [
+                -80.66995, 
+                25.167384
+              ], 
+              [
+                -80.674324, 
+                25.167104
+              ], 
+              [
+                -80.679852, 
+                25.166751
+              ], 
+              [
+                -80.683909, 
+                25.166491
+              ], 
+              [
+                -80.688361, 
+                25.164711
+              ], 
+              [
+                -80.695038, 
+                25.157588
+              ], 
+              [
+                -80.70127, 
+                25.146683
+              ], 
+              [
+                -80.703718, 
+                25.139115
+              ], 
+              [
+                -80.715099, 
+                25.140872
+              ], 
+              [
+                -80.721886, 
+                25.145101
+              ], 
+              [
+                -80.728602, 
+                25.144316
+              ], 
+              [
+                -80.734741, 
+                25.143598
+              ], 
+              [
+                -80.73833, 
+                25.143178
+              ], 
+              [
+                -80.742877, 
+                25.142646
+              ], 
+              [
+                -80.746379, 
+                25.148559
+              ], 
+              [
+                -80.746264, 
+                25.155303
+              ], 
+              [
+                -80.751866, 
+                25.163762
+              ], 
+              [
+                -80.757581, 
+                25.166734
+              ], 
+              [
+                -80.795456, 
+                25.172337
+              ], 
+              [
+                -80.796219, 
+                25.17245
+              ], 
+              [
+                -80.815193, 
+                25.164956
+              ], 
+              [
+                -80.817116, 
+                25.164196
+              ], 
+              [
+                -80.823441, 
+                25.161698
+              ], 
+              [
+                -80.826465, 
+                25.160504
+              ], 
+              [
+                -80.82653, 
+                25.160478
+              ], 
+              [
+                -80.826544, 
+                25.160509
+              ], 
+              [
+                -80.827179, 
+                25.161888
+              ], 
+              [
+                -80.827489, 
+                25.162562
+              ], 
+              [
+                -80.828435, 
+                25.164619
+              ], 
+              [
+                -80.830034, 
+                25.168094
+              ], 
+              [
+                -80.838227, 
+                25.174791
+              ], 
+              [
+                -80.843703, 
+                25.176312
+              ], 
+              [
+                -80.846395, 
+                25.17706
+              ], 
+              [
+                -80.8464, 
+                25.17706
+              ], 
+              [
+                -80.858167, 
+                25.176576
+              ], 
+              [
+                -80.858801, 
+                25.176493
+              ], 
+              [
+                -80.874323, 
+                25.174469
+              ], 
+              [
+                -80.874815, 
+                25.174405
+              ], 
+              [
+                -80.87546, 
+                25.174321
+              ], 
+              [
+                -80.875731, 
+                25.174185
+              ], 
+              [
+                -80.878982, 
+                25.172562
+              ], 
+              [
+                -80.879235, 
+                25.172436
+              ], 
+              [
+                -80.891681, 
+                25.166221
+              ], 
+              [
+                -80.899459, 
+                25.162337
+              ], 
+              [
+                -80.900066, 
+                25.162034
+              ], 
+              [
+                -80.900124, 
+                25.161726
+              ], 
+              [
+                -80.90111, 
+                25.156496
+              ], 
+              [
+                -80.901592, 
+                25.153933
+              ], 
+              [
+                -80.901617, 
+                25.153803
+              ], 
+              [
+                -80.90022, 
+                25.150627
+              ], 
+              [
+                -80.898911, 
+                25.147652
+              ], 
+              [
+                -80.900559, 
+                25.139755
+              ], 
+              [
+                -80.900577, 
+                25.139669
+              ], 
+              [
+                -80.900668, 
+                25.139679
+              ], 
+              [
+                -80.902311, 
+                25.139853
+              ], 
+              [
+                -80.906578, 
+                25.140307
+              ], 
+              [
+                -80.915924, 
+                25.141301
+              ], 
+              [
+                -80.915965, 
+                25.141291
+              ], 
+              [
+                -80.931353, 
+                25.137424
+              ], 
+              [
+                -80.93675, 
+                25.136068
+              ], 
+              [
+                -80.939272, 
+                25.135434
+              ], 
+              [
+                -80.940988, 
+                25.135003
+              ], 
+              [
+                -80.943164, 
+                25.134456
+              ], 
+              [
+                -80.943216, 
+                25.134443
+              ], 
+              [
+                -80.954567, 
+                25.13545
+              ], 
+              [
+                -80.955577, 
+                25.13554
+              ], 
+              [
+                -80.95615, 
+                25.135591
+              ], 
+              [
+                -80.957427, 
+                25.135704
+              ], 
+              [
+                -80.958727, 
+                25.135546
+              ], 
+              [
+                -80.967465, 
+                25.134482
+              ], 
+              [
+                -80.967506, 
+                25.134477
+              ], 
+              [
+                -80.96774, 
+                25.134448
+              ], 
+              [
+                -80.967832, 
+                25.134437
+              ], 
+              [
+                -80.970185, 
+                25.13415
+              ], 
+              [
+                -80.970727, 
+                25.134084
+              ], 
+              [
+                -80.970797, 
+                25.134076
+              ], 
+              [
+                -80.971585, 
+                25.13398
+              ], 
+              [
+                -80.971664, 
+                25.13397
+              ], 
+              [
+                -80.971765, 
+                25.133958
+              ], 
+              [
+                -80.973129, 
+                25.133473
+              ], 
+              [
+                -80.977198, 
+                25.132028
+              ], 
+              [
+                -80.991949, 
+                25.126789
+              ], 
+              [
+                -80.994096, 
+                25.126026
+              ], 
+              [
+                -80.999176, 
+                25.124222
+              ], 
+              [
+                -80.999772, 
+                25.12429
+              ], 
+              [
+                -81.009598, 
+                25.125403
+              ], 
+              [
+                -81.022989, 
+                25.129393
+              ], 
+              [
+                -81.025154, 
+                25.129305
+              ], 
+              [
+                -81.033404, 
+                25.128969
+              ], 
+              [
+                -81.038021, 
+                25.128781
+              ], 
+              [
+                -81.049308, 
+                25.128322
+              ], 
+              [
+                -81.049344, 
+                25.12832
+              ], 
+              [
+                -81.049445, 
+                25.128316
+              ], 
+              [
+                -81.049896, 
+                25.128298
+              ], 
+              [
+                -81.050505, 
+                25.128273
+              ], 
+              [
+                -81.079859, 
+                25.118797
+              ], 
+              [
+                -81.094524, 
+                25.127054
+              ], 
+              [
+                -81.111943, 
+                25.14547
+              ], 
+              [
+                -81.120616, 
+                25.152302
+              ], 
+              [
+                -81.133567, 
+                25.156295
+              ], 
+              [
+                -81.141024, 
+                25.163868
+              ], 
+              [
+                -81.142278, 
+                25.183
+              ], 
+              [
+                -81.142471, 
+                25.18344
+              ], 
+              [
+                -81.142897, 
+                25.184406
+              ], 
+              [
+                -81.146737, 
+                25.193139
+              ], 
+              [
+                -81.155252, 
+                25.207706
+              ], 
+              [
+                -81.155481, 
+                25.208098
+              ], 
+              [
+                -81.15582, 
+                25.208389
+              ], 
+              [
+                -81.168046, 
+                25.218854
+              ], 
+              [
+                -81.171265, 
+                25.221609
+              ], 
+              [
+                -81.172044, 
+                25.222276
+              ], 
+              [
+                -81.171978, 
+                25.223648
+              ], 
+              [
+                -81.171455, 
+                25.234483
+              ], 
+              [
+                -81.171369, 
+                25.236268
+              ], 
+              [
+                -81.170953, 
+                25.244898
+              ], 
+              [
+                -81.170907, 
+                25.245857
+              ], 
+              [
+                -81.169709, 
+                25.249231
+              ], 
+              [
+                -81.169509, 
+                25.249795
+              ], 
+              [
+                -81.169294, 
+                25.250398
+              ], 
+              [
+                -81.168307, 
+                25.253178
+              ], 
+              [
+                -81.16207, 
+                25.289833
+              ], 
+              [
+                -81.159293, 
+                25.298595
+              ], 
+              [
+                -81.1523, 
+                25.305543
+              ], 
+              [
+                -81.148915, 
+                25.318067
+              ], 
+              [
+                -81.151916, 
+                25.324766
+              ], 
+              [
+                -81.148103, 
+                25.332793
+              ], 
+              [
+                -81.140099, 
+                25.341117
+              ], 
+              [
+                -81.133913, 
+                25.342996
+              ], 
+              [
+                -81.12141, 
+                25.33875
+              ], 
+              [
+                -81.118208, 
+                25.34522
+              ], 
+              [
+                -81.117265, 
+                25.354953
+              ], 
+              [
+                -81.128492, 
+                25.380511
+              ], 
+              [
+                -81.141395, 
+                25.381358
+              ], 
+              [
+                -81.150508, 
+                25.387255
+              ], 
+              [
+                -81.150656, 
+                25.399206
+              ], 
+              [
+                -81.147144, 
+                25.404297
+              ], 
+              [
+                -81.146765, 
+                25.407577
+              ], 
+              [
+                -81.168652, 
+                25.463848
+              ], 
+              [
+                -81.179406, 
+                25.475427
+              ], 
+              [
+                -81.191924, 
+                25.484745
+              ], 
+              [
+                -81.208201, 
+                25.504937
+              ], 
+              [
+                -81.210149, 
+                25.516888
+              ], 
+              [
+                -81.203175, 
+                25.53416
+              ], 
+              [
+                -81.204389, 
+                25.538908
+              ], 
+              [
+                -81.209321, 
+                25.548611
+              ], 
+              [
+                -81.225557, 
+                25.55847
+              ], 
+              [
+                -81.232705, 
+                25.573366
+              ], 
+              [
+                -81.233051, 
+                25.586587
+              ], 
+              [
+                -81.240519, 
+                25.599041
+              ], 
+              [
+                -81.240677, 
+                25.613629
+              ], 
+              [
+                -81.253951, 
+                25.638181
+              ], 
+              [
+                -81.268924, 
+                25.656927
+              ], 
+              [
+                -81.277374, 
+                25.66498
+              ], 
+              [
+                -81.290328, 
+                25.687506
+              ], 
+              [
+                -81.328935, 
+                25.717233
+              ], 
+              [
+                -81.335037, 
+                25.715649
+              ], 
+              [
+                -81.346078, 
+                25.721473
+              ], 
+              [
+                -81.345972, 
+                25.736536
+              ], 
+              [
+                -81.343984, 
+                25.747668
+              ], 
+              [
+                -81.346767, 
+                25.754029
+              ], 
+              [
+                -81.355116, 
+                25.76039
+              ], 
+              [
+                -81.359489, 
+                25.766354
+              ], 
+              [
+                -81.361875, 
+                25.772715
+              ], 
+              [
+                -81.344779, 
+                25.782257
+              ], 
+              [
+                -81.340406, 
+                25.786631
+              ], 
+              [
+                -81.341598, 
+                25.794582
+              ], 
+              [
+                -81.344564, 
+                25.803322
+              ], 
+              [
+                -81.349152, 
+                25.816847
+              ], 
+              [
+                -81.352731, 
+                25.822015
+              ], 
+              [
+                -81.362272, 
+                25.824401
+              ], 
+              [
+                -81.386127, 
+                25.839906
+              ], 
+              [
+                -81.394476, 
+                25.851834
+              ], 
+              [
+                -81.417536, 
+                25.864954
+              ], 
+              [
+                -81.424295, 
+                25.867737
+              ], 
+              [
+                -81.429066, 
+                25.865351
+              ], 
+              [
+                -81.441391, 
+                25.863761
+              ], 
+              [
+                -81.458487, 
+                25.868929
+              ], 
+              [
+                -81.471607, 
+                25.881652
+              ], 
+              [
+                -81.473992, 
+                25.888411
+              ], 
+              [
+                -81.48751, 
+                25.888411
+              ], 
+              [
+                -81.501027, 
+                25.884037
+              ], 
+              [
+                -81.508979, 
+                25.884037
+              ], 
+              [
+                -81.512955, 
+                25.886423
+              ], 
+              [
+                -81.511762, 
+                25.89676
+              ], 
+              [
+                -81.515738, 
+                25.899941
+              ], 
+              [
+                -81.527665, 
+                25.901531
+              ], 
+              [
+                -81.541183, 
+                25.900338
+              ], 
+              [
+                -81.577363, 
+                25.889206
+              ], 
+              [
+                -81.584519, 
+                25.888808
+              ], 
+              [
+                -81.614735, 
+                25.893977
+              ], 
+              [
+                -81.623482, 
+                25.897158
+              ], 
+              [
+                -81.640084, 
+                25.897784
+              ], 
+              [
+                -81.644553, 
+                25.897953
+              ], 
+              [
+                -81.654493, 
+                25.893579
+              ], 
+              [
+                -81.663821, 
+                25.885605
+              ], 
+              [
+                -81.672633, 
+                25.856654
+              ], 
+              [
+                -81.678287, 
+                25.845301
+              ], 
+              [
+                -81.6848, 
+                25.847205
+              ], 
+              [
+                -81.68954, 
+                25.85271
+              ], 
+              [
+                -81.713172, 
+                25.897568
+              ], 
+              [
+                -81.717687, 
+                25.902039
+              ], 
+              [
+                -81.727086, 
+                25.907207
+              ], 
+              [
+                -81.73195, 
+                25.931506
+              ], 
+              [
+                -81.738118, 
+                25.942009
+              ], 
+              [
+                -81.745579, 
+                25.949643
+              ], 
+              [
+                -81.749724, 
+                25.960463
+              ], 
+              [
+                -81.747834, 
+                25.994273
+              ], 
+              [
+                -81.750668, 
+                25.998425
+              ], 
+              [
+                -81.757463, 
+                26.000374
+              ], 
+              [
+                -81.762439, 
+                26.00607
+              ], 
+              [
+                -81.801663, 
+                26.088227
+              ], 
+              [
+                -81.808833, 
+                26.152246
+              ], 
+              [
+                -81.81461, 
+                26.173167
+              ], 
+              [
+                -81.81681, 
+                26.207166
+              ], 
+              [
+                -81.820675, 
+                26.236735
+              ], 
+              [
+                -81.833142, 
+                26.294518
+              ], 
+              [
+                -81.844555, 
+                26.327712
+              ], 
+              [
+                -81.845834, 
+                26.330378
+              ], 
+              [
+                -81.868983, 
+                26.378648
+              ], 
+              [
+                -81.90191, 
+                26.410859
+              ], 
+              [
+                -81.90271, 
+                26.416159
+              ], 
+              [
+                -81.91171, 
+                26.427158
+              ], 
+              [
+                -81.923611, 
+                26.436658
+              ], 
+              [
+                -81.938411, 
+                26.445058
+              ], 
+              [
+                -81.956611, 
+                26.452358
+              ], 
+              [
+                -81.964212, 
+                26.457957
+              ], 
+              [
+                -81.967112, 
+                26.462857
+              ], 
+              [
+                -81.966212, 
+                26.465057
+              ], 
+              [
+                -81.969509, 
+                26.476505
+              ], 
+              [
+                -81.980712, 
+                26.480957
+              ], 
+              [
+                -81.997012, 
+                26.484856
+              ], 
+              [
+                -82.008961, 
+                26.484052
+              ], 
+              [
+                -82.01368, 
+                26.490829
+              ], 
+              [
+                -82.00908, 
+                26.505203
+              ], 
+              [
+                -82.024604, 
+                26.512677
+              ], 
+              [
+                -82.043577, 
+                26.519577
+              ], 
+              [
+                -82.06715, 
+                26.513252
+              ], 
+              [
+                -82.07175, 
+                26.492554
+              ], 
+              [
+                -82.094748, 
+                26.48393
+              ], 
+              [
+                -82.105672, 
+                26.48393
+              ], 
+              [
+                -82.111996, 
+                26.54085
+              ], 
+              [
+                -82.118896, 
+                26.560973
+              ], 
+              [
+                -82.122345, 
+                26.579371
+              ], 
+              [
+                -82.137869, 
+                26.637441
+              ], 
+              [
+                -82.149943, 
+                26.654115
+              ], 
+              [
+                -82.181565, 
+                26.681712
+              ], 
+              [
+                -82.17984, 
+                26.696661
+              ], 
+              [
+                -82.173516, 
+                26.701836
+              ], 
+              [
+                -82.151668, 
+                26.704136
+              ], 
+              [
+                -82.139019, 
+                26.702986
+              ], 
+              [
+                -82.125795, 
+                26.699536
+              ], 
+              [
+                -82.118896, 
+                26.690912
+              ], 
+              [
+                -82.106247, 
+                26.667339
+              ], 
+              [
+                -82.099922, 
+                26.662739
+              ], 
+              [
+                -82.093023, 
+                26.665614
+              ], 
+              [
+                -82.086698, 
+                26.685162
+              ], 
+              [
+                -82.084974, 
+                26.702411
+              ], 
+              [
+                -82.079799, 
+                26.716784
+              ], 
+              [
+                -82.066575, 
+                26.742657
+              ], 
+              [
+                -82.062029, 
+                26.770439
+              ], 
+              [
+                -82.061401, 
+                26.774279
+              ], 
+              [
+                -82.061401, 
+                26.789228
+              ], 
+              [
+                -82.055076, 
+                26.802452
+              ], 
+              [
+                -82.057951, 
+                26.822
+              ], 
+              [
+                -82.058526, 
+                26.838674
+              ], 
+              [
+                -82.056801, 
+                26.858797
+              ], 
+              [
+                -82.059101, 
+                26.876621
+              ], 
+              [
+                -82.066575, 
+                26.88237
+              ], 
+              [
+                -82.090723, 
+                26.888694
+              ], 
+              [
+                -82.093023, 
+                26.906518
+              ], 
+              [
+                -82.090148, 
+                26.923191
+              ], 
+              [
+                -82.083249, 
+                26.927791
+              ], 
+              [
+                -82.067725, 
+                26.927791
+              ], 
+              [
+                -82.061976, 
+                26.931241
+              ], 
+              [
+                -82.061401, 
+                26.938715
+              ], 
+              [
+                -82.063126, 
+                26.950214
+              ], 
+              [
+                -82.076349, 
+                26.958263
+              ], 
+              [
+                -82.107972, 
+                26.957688
+              ], 
+              [
+                -82.113039, 
+                26.955788
+              ], 
+              [
+                -82.117171, 
+                26.954239
+              ], 
+              [
+                -82.124645, 
+                26.945615
+              ], 
+              [
+                -82.137294, 
+                26.926066
+              ], 
+              [
+                -82.162017, 
+                26.925491
+              ], 
+              [
+                -82.169491, 
+                26.923191
+              ], 
+              [
+                -82.175241, 
+                26.916867
+              ], 
+              [
+                -82.172941, 
+                26.897319
+              ], 
+              [
+                -82.156267, 
+                26.851898
+              ], 
+              [
+                -82.147068, 
+                26.789803
+              ], 
+              [
+                -82.151093, 
+                26.783479
+              ], 
+              [
+                -82.172941, 
+                26.778879
+              ], 
+              [
+                -82.17869, 
+                26.772555
+              ], 
+              [
+                -82.209329, 
+                26.772146
+              ], 
+              [
+                -82.221812, 
+                26.77198
+              ], 
+              [
+                -82.232193, 
+                26.78288
+              ], 
+              [
+                -82.233311, 
+                26.784054
+              ], 
+              [
+                -82.234019, 
+                26.783251
+              ], 
+              [
+                -82.241935, 
+                26.774279
+              ], 
+              [
+                -82.251134, 
+                26.755881
+              ], 
+              [
+                -82.259867, 
+                26.717398
+              ], 
+              [
+                -82.263804, 
+                26.725644
+              ], 
+              [
+                -82.264682, 
+                26.756836
+              ], 
+              [
+                -82.269499, 
+                26.784674
+              ], 
+              [
+                -82.271699, 
+                26.789516
+              ], 
+              [
+                -82.281552, 
+                26.811203
+              ], 
+              [
+                -82.289086, 
+                26.827784
+              ], 
+              [
+                -82.301736, 
+                26.841588
+              ], 
+              [
+                -82.351649, 
+                26.908384
+              ], 
+              [
+                -82.375737, 
+                26.946041
+              ], 
+              [
+                -82.400618, 
+                26.984937
+              ], 
+              [
+                -82.419218, 
+                27.020736
+              ], 
+              [
+                -82.445718, 
+                27.060634
+              ], 
+              [
+                -82.460319, 
+                27.099933
+              ], 
+              [
+                -82.465319, 
+                27.110732
+              ], 
+              [
+                -82.46889, 
+                27.113612
+              ], 
+              [
+                -82.477019, 
+                27.141231
+              ], 
+              [
+                -82.512319, 
+                27.207528
+              ], 
+              [
+                -82.539719, 
+                27.254326
+              ], 
+              [
+                -82.54512, 
+                27.261026
+              ], 
+              [
+                -82.55902, 
+                27.268826
+              ], 
+              [
+                -82.569754, 
+                27.279452
+              ], 
+              [
+                -82.569248, 
+                27.298588
+              ], 
+              [
+                -82.57602, 
+                27.309324
+              ], 
+              [
+                -82.597629, 
+                27.335754
+              ], 
+              [
+                -82.623863, 
+                27.362206
+              ], 
+              [
+                -82.642821, 
+                27.38972
+              ], 
+              [
+                -82.642837, 
+                27.389737
+              ], 
+              [
+                -82.675121, 
+                27.424318
+              ], 
+              [
+                -82.691821, 
+                27.437218
+              ], 
+              [
+                -82.691004, 
+                27.444331
+              ], 
+              [
+                -82.707821, 
+                27.487615
+              ], 
+              [
+                -82.714521, 
+                27.500415
+              ], 
+              [
+                -82.724522, 
+                27.513614
+              ], 
+              [
+                -82.743017, 
+                27.531086
+              ], 
+              [
+                -82.745748, 
+                27.538834
+              ], 
+              [
+                -82.742437, 
+                27.53936
+              ], 
+              [
+                -82.708121, 
+                27.523514
+              ], 
+              [
+                -82.710621, 
+                27.501715
+              ], 
+              [
+                -82.706821, 
+                27.498415
+              ], 
+              [
+                -82.690421, 
+                27.496415
+              ], 
+              [
+                -82.686421, 
+                27.497215
+              ], 
+              [
+                -82.686921, 
+                27.508015
+              ], 
+              [
+                -82.683621, 
+                27.513115
+              ], 
+              [
+                -82.674621, 
+                27.519614
+              ], 
+              [
+                -82.66202, 
+                27.522814
+              ], 
+              [
+                -82.65072, 
+                27.523115
+              ], 
+              [
+                -82.646014, 
+                27.53354
+              ], 
+              [
+                -82.632053, 
+                27.551908
+              ], 
+              [
+                -82.612019, 
+                27.571231
+              ], 
+              [
+                -82.613003, 
+                27.582837
+              ], 
+              [
+                -82.612749, 
+                27.583319
+              ], 
+              [
+                -82.611717, 
+                27.585283
+              ], 
+              [
+                -82.596488, 
+                27.594045
+              ], 
+              [
+                -82.584629, 
+                27.596021
+              ], 
+              [
+                -82.570607, 
+                27.608882
+              ], 
+              [
+                -82.565667, 
+                27.615713
+              ], 
+              [
+                -82.558538, 
+                27.638678
+              ], 
+              [
+                -82.554499, 
+                27.645145
+              ], 
+              [
+                -82.537146, 
+                27.672933
+              ], 
+              [
+                -82.514265, 
+                27.705588
+              ], 
+              [
+                -82.494891, 
+                27.718963
+              ], 
+              [
+                -82.482449, 
+                27.719886
+              ], 
+              [
+                -82.477638, 
+                27.723004
+              ], 
+              [
+                -82.476297, 
+                27.729929
+              ], 
+              [
+                -82.477129, 
+                27.735216
+              ], 
+              [
+                -82.482305, 
+                27.742649
+              ], 
+              [
+                -82.478339, 
+                27.74625
+              ], 
+              [
+                -82.457543, 
+                27.752571
+              ], 
+              [
+                -82.434635, 
+                27.764355
+              ], 
+              [
+                -82.43198, 
+                27.768092
+              ], 
+              [
+                -82.433981, 
+                27.774087
+              ], 
+              [
+                -82.419066, 
+                27.793767
+              ], 
+              [
+                -82.418401, 
+                27.803187
+              ], 
+              [
+                -82.410837, 
+                27.810868
+              ], 
+              [
+                -82.402857, 
+                27.812671
+              ], 
+              [
+                -82.393383, 
+                27.837519
+              ], 
+              [
+                -82.397463, 
+                27.851631
+              ], 
+              [
+                -82.402615, 
+                27.882602
+              ], 
+              [
+                -82.413915, 
+                27.901401
+              ], 
+              [
+                -82.432316, 
+                27.901301
+              ], 
+              [
+                -82.451591, 
+                27.907506
+              ], 
+              [
+                -82.460016, 
+                27.9116
+              ], 
+              [
+                -82.459616, 
+                27.9169
+              ], 
+              [
+                -82.462078, 
+                27.920066
+              ], 
+              [
+                -82.478063, 
+                27.92768
+              ], 
+              [
+                -82.489817, 
+                27.9196
+              ], 
+              [
+                -82.491117, 
+                27.9145
+              ], 
+              [
+                -82.487417, 
+                27.895001
+              ], 
+              [
+                -82.488057, 
+                27.863566
+              ], 
+              [
+                -82.480137, 
+                27.853246
+              ], 
+              [
+                -82.471624, 
+                27.847342
+              ], 
+              [
+                -82.46884, 
+                27.843295
+              ], 
+              [
+                -82.47244, 
+                27.822559
+              ], 
+              [
+                -82.475273, 
+                27.820991
+              ], 
+              [
+                -82.489849, 
+                27.822607
+              ], 
+              [
+                -82.511193, 
+                27.828015
+              ], 
+              [
+                -82.553946, 
+                27.848462
+              ], 
+              [
+                -82.552918, 
+                27.862702
+              ], 
+              [
+                -82.538618, 
+                27.864901
+              ], 
+              [
+                -82.533218, 
+                27.870701
+              ], 
+              [
+                -82.529918, 
+                27.877501
+              ], 
+              [
+                -82.539318, 
+                27.885001
+              ], 
+              [
+                -82.542818, 
+                27.890601
+              ], 
+              [
+                -82.541747, 
+                27.893706
+              ], 
+              [
+                -82.535818, 
+                27.898
+              ], 
+              [
+                -82.531318, 
+                27.9039
+              ], 
+              [
+                -82.533718, 
+                27.932999
+              ], 
+              [
+                -82.541218, 
+                27.948998
+              ], 
+              [
+                -82.553918, 
+                27.966998
+              ], 
+              [
+                -82.589419, 
+                27.970898
+              ], 
+              [
+                -82.61952, 
+                27.969698
+              ], 
+              [
+                -82.648616, 
+                27.966309
+              ], 
+              [
+                -82.716522, 
+                27.958398
+              ], 
+              [
+                -82.720522, 
+                27.955798
+              ], 
+              [
+                -82.724122, 
+                27.948098
+              ], 
+              [
+                -82.721975, 
+                27.941819
+              ], 
+              [
+                -82.721429, 
+                27.940222
+              ], 
+              [
+                -82.720395, 
+                27.937199
+              ], 
+              [
+                -82.720122, 
+                27.936399
+              ], 
+              [
+                -82.710022, 
+                27.928299
+              ], 
+              [
+                -82.691621, 
+                27.924899
+              ], 
+              [
+                -82.685121, 
+                27.916299
+              ], 
+              [
+                -82.671221, 
+                27.913
+              ], 
+              [
+                -82.628063, 
+                27.910397
+              ], 
+              [
+                -82.63422, 
+                27.9037
+              ], 
+              [
+                -82.63212, 
+                27.8911
+              ], 
+              [
+                -82.61002, 
+                27.873501
+              ], 
+              [
+                -82.567919, 
+                27.883701
+              ], 
+              [
+                -82.567826, 
+                27.881537
+              ], 
+              [
+                -82.566819, 
+                27.858002
+              ], 
+              [
+                -82.598443, 
+                27.857582
+              ], 
+              [
+                -82.594819, 
+                27.843402
+              ], 
+              [
+                -82.589319, 
+                27.835702
+              ], 
+              [
+                -82.586519, 
+                27.816703
+              ], 
+              [
+                -82.60742, 
+                27.798904
+              ], 
+              [
+                -82.622723, 
+                27.779868
+              ], 
+              [
+                -82.63052, 
+                27.753905
+              ], 
+              [
+                -82.62502, 
+                27.732706
+              ], 
+              [
+                -82.62572, 
+                27.727006
+              ], 
+              [
+                -82.63362, 
+                27.710607
+              ], 
+              [
+                -82.63982, 
+                27.703907
+              ], 
+              [
+                -82.652521, 
+                27.700307
+              ], 
+              [
+                -82.662921, 
+                27.702307
+              ], 
+              [
+                -82.663246, 
+                27.702442
+              ], 
+              [
+                -82.667445, 
+                27.704179
+              ], 
+              [
+                -82.668772, 
+                27.704728
+              ], 
+              [
+                -82.670449, 
+                27.705422
+              ], 
+              [
+                -82.670942, 
+                27.705626
+              ], 
+              [
+                -82.671549, 
+                27.705877
+              ], 
+              [
+                -82.671621, 
+                27.705907
+              ], 
+              [
+                -82.672093, 
+                27.705932
+              ], 
+              [
+                -82.673061, 
+                27.705983
+              ], 
+              [
+                -82.674123, 
+                27.706039
+              ], 
+              [
+                -82.677321, 
+                27.706207
+              ], 
+              [
+                -82.679019, 
+                27.696054
+              ], 
+              [
+                -82.679251, 
+                27.694665
+              ], 
+              [
+                -82.693748, 
+                27.700217
+              ], 
+              [
+                -82.713629, 
+                27.698661
+              ], 
+              [
+                -82.718822, 
+                27.692007
+              ], 
+              [
+                -82.723022, 
+                27.671208
+              ], 
+              [
+                -82.721622, 
+                27.663908
+              ], 
+              [
+                -82.716322, 
+                27.651409
+              ], 
+              [
+                -82.712555, 
+                27.646647
+              ], 
+              [
+                -82.698091, 
+                27.638858
+              ], 
+              [
+                -82.705017, 
+                27.62531
+              ], 
+              [
+                -82.733076, 
+                27.612972
+              ], 
+              [
+                -82.736552, 
+                27.617326
+              ], 
+              [
+                -82.737312, 
+                27.623115
+              ], 
+              [
+                -82.73779, 
+                27.626758
+              ], 
+              [
+                -82.739122, 
+                27.636909
+              ], 
+              [
+                -82.738022, 
+                27.706807
+              ], 
+              [
+                -82.740323, 
+                27.718206
+              ], 
+              [
+                -82.746223, 
+                27.731306
+              ], 
+              [
+                -82.753723, 
+                27.736306
+              ], 
+              [
+                -82.760923, 
+                27.745205
+              ], 
+              [
+                -82.770023, 
+                27.767904
+              ], 
+              [
+                -82.783124, 
+                27.783804
+              ], 
+              [
+                -82.790224, 
+                27.791603
+              ], 
+              [
+                -82.820433, 
+                27.813742
+              ], 
+              [
+                -82.828561, 
+                27.822254
+              ], 
+              [
+                -82.846526, 
+                27.854301
+              ], 
+              [
+                -82.849126, 
+                27.8632
+              ], 
+              [
+                -82.851126, 
+                27.8863
+              ], 
+              [
+                -82.847826, 
+                27.910199
+              ], 
+              [
+                -82.840882, 
+                27.937162
+              ], 
+              [
+                -82.831388, 
+                27.962117
+              ], 
+              [
+                -82.824875, 
+                27.960201
+              ], 
+              [
+                -82.821975, 
+                27.956868
+              ], 
+              [
+                -82.830819, 
+                27.930926
+              ], 
+              [
+                -82.838484, 
+                27.909111
+              ], 
+              [
+                -82.832155, 
+                27.909242
+              ], 
+              [
+                -82.820715, 
+                27.927268
+              ], 
+              [
+                -82.808745, 
+                27.953112
+              ], 
+              [
+                -82.805462, 
+                27.960201
+              ], 
+              [
+                -82.79782, 
+                27.990563
+              ], 
+              [
+                -82.792635, 
+                28.01116
+              ], 
+              [
+                -82.792635, 
+                28.032307
+              ], 
+              [
+                -82.782724, 
+                28.055894
+              ], 
+              [
+                -82.783824, 
+                28.106292
+              ], 
+              [
+                -82.782181, 
+                28.120287
+              ], 
+              [
+                -82.781324, 
+                28.127591
+              ], 
+              [
+                -82.786624, 
+                28.144991
+              ], 
+              [
+                -82.790724, 
+                28.15249
+              ], 
+              [
+                -82.799024, 
+                28.15179
+              ], 
+              [
+                -82.808474, 
+                28.154803
+              ], 
+              [
+                -82.805097, 
+                28.172181
+              ], 
+              [
+                -82.797762, 
+                28.187789
+              ], 
+              [
+                -82.762643, 
+                28.219013
+              ], 
+              [
+                -82.76446, 
+                28.220069
+              ], 
+              [
+                -82.764103, 
+                28.244345
+              ], 
+              [
+                -82.759072, 
+                28.25402
+              ], 
+              [
+                -82.746188, 
+                28.261192
+              ], 
+              [
+                -82.732792, 
+                28.291933
+              ], 
+              [
+                -82.735463, 
+                28.30039
+              ], 
+              [
+                -82.73146, 
+                28.325075
+              ], 
+              [
+                -82.715822, 
+                28.345501
+              ], 
+              [
+                -82.706112, 
+                28.368057
+              ], 
+              [
+                -82.706322, 
+                28.401325
+              ], 
+              [
+                -82.697433, 
+                28.420166
+              ], 
+              [
+                -82.684137, 
+                28.428019
+              ], 
+              [
+                -82.678743, 
+                28.433456
+              ], 
+              [
+                -82.677839, 
+                28.434367
+              ], 
+              [
+                -82.674787, 
+                28.441956
+              ], 
+              [
+                -82.680396, 
+                28.457194
+              ], 
+              [
+                -82.67241, 
+                28.464746
+              ], 
+              [
+                -82.665055, 
+                28.484434
+              ], 
+              [
+                -82.66447, 
+                28.488788
+              ], 
+              [
+                -82.66639, 
+                28.49733
+              ], 
+              [
+                -82.670146, 
+                28.500769
+              ], 
+              [
+                -82.669416, 
+                28.519879
+              ], 
+              [
+                -82.66804, 
+                28.528199
+              ], 
+              [
+                -82.663705, 
+                28.530193
+              ], 
+              [
+                -82.656694, 
+                28.544814
+              ], 
+              [
+                -82.661729, 
+                28.549743
+              ], 
+              [
+                -82.66165, 
+                28.554143
+              ], 
+              [
+                -82.65705, 
+                28.568028
+              ], 
+              [
+                -82.654138, 
+                28.590837
+              ], 
+              [
+                -82.664055, 
+                28.606584
+              ], 
+              [
+                -82.656649, 
+                28.623727
+              ], 
+              [
+                -82.65851, 
+                28.636756
+              ], 
+              [
+                -82.654167, 
+                28.668395
+              ], 
+              [
+                -82.646411, 
+                28.694434
+              ], 
+              [
+                -82.645482, 
+                28.697553
+              ], 
+              [
+                -82.652926, 
+                28.705618
+              ], 
+              [
+                -82.656028, 
+                28.712443
+              ], 
+              [
+                -82.652926, 
+                28.719267
+              ], 
+              [
+                -82.656028, 
+                28.727952
+              ], 
+              [
+                -82.662232, 
+                28.737258
+              ], 
+              [
+                -82.651065, 
+                28.747184
+              ], 
+              [
+                -82.645482, 
+                28.767037
+              ], 
+              [
+                -82.643, 
+                28.782546
+              ], 
+              [
+                -82.643, 
+                28.789991
+              ], 
+              [
+                -82.648584, 
+                28.796195
+              ], 
+              [
+                -82.650445, 
+                28.80488
+              ], 
+              [
+                -82.652926, 
+                28.830936
+              ], 
+              [
+                -82.638657, 
+                28.843344
+              ], 
+              [
+                -82.643, 
+                28.860094
+              ], 
+              [
+                -82.639898, 
+                28.876224
+              ], 
+              [
+                -82.644861, 
+                28.889252
+              ], 
+              [
+                -82.656028, 
+                28.899179
+              ], 
+              [
+                -82.673399, 
+                28.900419
+              ], 
+              [
+                -82.688864, 
+                28.905609
+              ], 
+              [
+                -82.702618, 
+                28.932955
+              ], 
+              [
+                -82.708793, 
+                28.935979
+              ], 
+              [
+                -82.723861, 
+                28.953506
+              ], 
+              [
+                -82.735754, 
+                28.973709
+              ], 
+              [
+                -82.737872, 
+                28.995703
+              ], 
+              [
+                -82.758906, 
+                28.993277
+              ], 
+              [
+                -82.760551, 
+                28.993087
+              ], 
+              [
+                -82.764055, 
+                28.999707
+              ], 
+              [
+                -82.759378, 
+                29.006619
+              ], 
+              [
+                -82.753513, 
+                29.026496
+              ], 
+              [
+                -82.759704, 
+                29.054192
+              ], 
+              [
+                -82.783328, 
+                29.064619
+              ], 
+              [
+                -82.780558, 
+                29.07358
+              ], 
+              [
+                -82.816925, 
+                29.076215
+              ], 
+              [
+                -82.823659, 
+                29.098902
+              ], 
+              [
+                -82.809483, 
+                29.10462
+              ], 
+              [
+                -82.801166, 
+                29.105103
+              ], 
+              [
+                -82.799117, 
+                29.110647
+              ], 
+              [
+                -82.798876, 
+                29.114504
+              ], 
+              [
+                -82.805703, 
+                29.129848
+              ], 
+              [
+                -82.804736, 
+                29.146624
+              ], 
+              [
+                -82.827073, 
+                29.158425
+              ], 
+              [
+                -82.858179, 
+                29.162275
+              ], 
+              [
+                -82.887211, 
+                29.161741
+              ], 
+              [
+                -82.922613, 
+                29.169769
+              ], 
+              [
+                -82.932405, 
+                29.167891
+              ], 
+              [
+                -82.945302, 
+                29.167821
+              ], 
+              [
+                -82.974676, 
+                29.17091
+              ], 
+              [
+                -82.979522, 
+                29.171817
+              ], 
+              [
+                -82.987162, 
+                29.180094
+              ], 
+              [
+                -82.991653, 
+                29.180664
+              ], 
+              [
+                -82.996144, 
+                29.178074
+              ], 
+              [
+                -83.018212, 
+                29.151417
+              ], 
+              [
+                -83.019071, 
+                29.141324
+              ], 
+              [
+                -83.030453, 
+                29.134023
+              ], 
+              [
+                -83.053207, 
+                29.130839
+              ], 
+              [
+                -83.056867, 
+                29.146263
+              ], 
+              [
+                -83.068249, 
+                29.153135
+              ], 
+              [
+                -83.060947, 
+                29.170959
+              ], 
+              [
+                -83.061162, 
+                29.176113
+              ], 
+              [
+                -83.065242, 
+                29.184489
+              ], 
+              [
+                -83.078986, 
+                29.196944
+              ], 
+              [
+                -83.087839, 
+                29.21642
+              ], 
+              [
+                -83.074734, 
+                29.247975
+              ], 
+              [
+                -83.077265, 
+                29.255331
+              ], 
+              [
+                -83.089013, 
+                29.266502
+              ], 
+              [
+                -83.107477, 
+                29.268889
+              ], 
+              [
+                -83.125567, 
+                29.278845
+              ], 
+              [
+                -83.128027, 
+                29.282733
+              ], 
+              [
+                -83.146445, 
+                29.289194
+              ], 
+              [
+                -83.149764, 
+                29.289768
+              ], 
+              [
+                -83.16073, 
+                29.286611
+              ], 
+              [
+                -83.166091, 
+                29.28888
+              ], 
+              [
+                -83.169576, 
+                29.290355
+              ], 
+              [
+                -83.176736, 
+                29.31422
+              ], 
+              [
+                -83.17826, 
+                29.327916
+              ], 
+              [
+                -83.176852, 
+                29.329269
+              ], 
+              [
+                -83.175518, 
+                29.34469
+              ], 
+              [
+                -83.189581, 
+                29.363417
+              ], 
+              [
+                -83.200702, 
+                29.373855
+              ], 
+              [
+                -83.202446, 
+                29.394422
+              ], 
+              [
+                -83.218075, 
+                29.420492
+              ], 
+              [
+                -83.240509, 
+                29.433178
+              ], 
+              [
+                -83.263965, 
+                29.435806
+              ], 
+              [
+                -83.272019, 
+                29.432256
+              ], 
+              [
+                -83.294747, 
+                29.437923
+              ], 
+              [
+                -83.307094, 
+                29.459651
+              ], 
+              [
+                -83.307828, 
+                29.468861
+              ], 
+              [
+                -83.311546, 
+                29.475666
+              ], 
+              [
+                -83.323214, 
+                29.476789
+              ], 
+              [
+                -83.33113, 
+                29.475594
+              ], 
+              [
+                -83.350067, 
+                29.489358
+              ], 
+              [
+                -83.356722, 
+                29.499901
+              ], 
+              [
+                -83.370288, 
+                29.499901
+              ], 
+              [
+                -83.379254, 
+                29.503558
+              ], 
+              [
+                -83.383973, 
+                29.512995
+              ], 
+              [
+                -83.400252, 
+                29.517242
+              ], 
+              [
+                -83.401552, 
+                29.523291
+              ], 
+              [
+                -83.39983, 
+                29.533042
+              ], 
+              [
+                -83.405256, 
+                29.578319
+              ], 
+              [
+                -83.405068, 
+                29.59557
+              ], 
+              [
+                -83.39948, 
+                29.612956
+              ], 
+              [
+                -83.404081, 
+                29.640798
+              ], 
+              [
+                -83.412278, 
+                29.666922
+              ], 
+              [
+                -83.412768, 
+                29.668485
+              ], 
+              [
+                -83.414701, 
+                29.670536
+              ], 
+              [
+                -83.436259, 
+                29.677389
+              ], 
+              [
+                -83.444635, 
+                29.677155
+              ], 
+              [
+                -83.448194, 
+                29.675254
+              ], 
+              [
+                -83.455356, 
+                29.676444
+              ], 
+              [
+                -83.483143, 
+                29.690478
+              ], 
+              [
+                -83.483567, 
+                29.698542
+              ], 
+              [
+                -83.493728, 
+                29.708388
+              ], 
+              [
+                -83.512716, 
+                29.71648
+              ], 
+              [
+                -83.537645, 
+                29.72306
+              ], 
+              [
+                -83.547172, 
+                29.732223
+              ], 
+              [
+                -83.554993, 
+                29.7426
+              ], 
+              [
+                -83.566018, 
+                29.761434
+              ], 
+              [
+                -83.578955, 
+                29.768378
+              ], 
+              [
+                -83.584716, 
+                29.77608
+              ], 
+              [
+                -83.586089, 
+                29.784644
+              ], 
+              [
+                -83.583045, 
+                29.787307
+              ], 
+              [
+                -83.581903, 
+                29.792063
+              ], 
+              [
+                -83.585899, 
+                29.811754
+              ], 
+              [
+                -83.595493, 
+                29.827984
+              ], 
+              [
+                -83.605244, 
+                29.836387
+              ], 
+              [
+                -83.618568, 
+                29.842336
+              ], 
+              [
+                -83.63798, 
+                29.886073
+              ], 
+              [
+                -83.659951, 
+                29.899524
+              ], 
+              [
+                -83.679219, 
+                29.918513
+              ], 
+              [
+                -83.686423, 
+                29.923735
+              ], 
+              [
+                -83.757249, 
+                29.957943
+              ], 
+              [
+                -83.788729, 
+                29.976982
+              ], 
+              [
+                -83.82869, 
+                29.983187
+              ], 
+              [
+                -83.845427, 
+                29.998068
+              ], 
+              [
+                -83.93151, 
+                30.039068
+              ], 
+              [
+                -83.933668, 
+                30.041152
+              ], 
+              [
+                -83.931879, 
+                30.044175
+              ], 
+              [
+                -83.933432, 
+                30.046305
+              ], 
+              [
+                -83.95968, 
+                30.064943
+              ], 
+              [
+                -83.991607, 
+                30.08392
+              ], 
+              [
+                -84.000716, 
+                30.096209
+              ], 
+              [
+                -84.024274, 
+                30.103271
+              ], 
+              [
+                -84.048715, 
+                30.103208
+              ], 
+              [
+                -84.06299, 
+                30.101378
+              ], 
+              [
+                -84.076043, 
+                30.095464
+              ], 
+              [
+                -84.083057, 
+                30.092286
+              ], 
+              [
+                -84.087034, 
+                30.092103
+              ], 
+              [
+                -84.094725, 
+                30.094964
+              ], 
+              [
+                -84.10273, 
+                30.093611
+              ], 
+              [
+                -84.11384, 
+                30.085478
+              ], 
+              [
+                -84.124889, 
+                30.090601
+              ], 
+              [
+                -84.135683, 
+                30.083018
+              ], 
+              [
+                -84.157278, 
+                30.072714
+              ], 
+              [
+                -84.167881, 
+                30.071422
+              ], 
+              [
+                -84.179149, 
+                30.073187
+              ], 
+              [
+                -84.19853, 
+                30.087937
+              ], 
+              [
+                -84.201585, 
+                30.087982
+              ], 
+              [
+                -84.203349, 
+                30.085875
+              ], 
+              [
+                -84.20801, 
+                30.084776
+              ], 
+              [
+                -84.237014, 
+                30.08556
+              ], 
+              [
+                -84.245668, 
+                30.093021
+              ], 
+              [
+                -84.247491, 
+                30.10114
+              ], 
+              [
+                -84.256439, 
+                30.103791
+              ], 
+              [
+                -84.269363, 
+                30.09766
+              ], 
+              [
+                -84.272511, 
+                30.092358
+              ], 
+              [
+                -84.274003, 
+                30.083079
+              ], 
+              [
+                -84.270368, 
+                30.075469
+              ], 
+              [
+                -84.270792, 
+                30.068094
+              ], 
+              [
+                -84.277168, 
+                30.060263
+              ], 
+              [
+                -84.289727, 
+                30.057197
+              ], 
+              [
+                -84.297836, 
+                30.057451
+              ], 
+              [
+                -84.315344, 
+                30.069492
+              ], 
+              [
+                -84.342022, 
+                30.063858
+              ], 
+              [
+                -84.358923, 
+                30.058224
+              ], 
+              [
+                -84.365882, 
+                30.024588
+              ], 
+              [
+                -84.361962, 
+                29.987739
+              ], 
+              [
+                -84.359986, 
+                29.984739
+              ], 
+              [
+                -84.3477, 
+                29.984123
+              ], 
+              [
+                -84.343041, 
+                29.9751
+              ], 
+              [
+                -84.341261, 
+                29.960775
+              ], 
+              [
+                -84.339426, 
+                29.946007
+              ], 
+              [
+                -84.336511, 
+                29.942508
+              ], 
+              [
+                -84.333746, 
+                29.923721
+              ], 
+              [
+                -84.335953, 
+                29.912962
+              ], 
+              [
+                -84.343389, 
+                29.899539
+              ], 
+              [
+                -84.349066, 
+                29.896812
+              ], 
+              [
+                -84.378937, 
+                29.893112
+              ], 
+              [
+                -84.404958, 
+                29.901229
+              ], 
+              [
+                -84.423834, 
+                29.902996
+              ], 
+              [
+                -84.434287, 
+                29.906328
+              ], 
+              [
+                -84.443652, 
+                29.913785
+              ], 
+              [
+                -84.451705, 
+                29.929085
+              ], 
+              [
+                -84.470323, 
+                29.924524
+              ], 
+              [
+                -84.494562, 
+                29.913957
+              ], 
+              [
+                -84.511996, 
+                29.916574
+              ], 
+              [
+                -84.535873, 
+                29.910092
+              ], 
+              [
+                -84.57744, 
+                29.887828
+              ], 
+              [
+                -84.603303, 
+                29.876117
+              ], 
+              [
+                -84.613154, 
+                29.867984
+              ], 
+              [
+                -84.647958, 
+                29.847104
+              ], 
+              [
+                -84.656318, 
+                29.837943
+              ], 
+              [
+                -84.65645, 
+                29.834277
+              ], 
+              [
+                -84.669728, 
+                29.82891
+              ], 
+              [
+                -84.683934, 
+                29.831327
+              ], 
+              [
+                -84.692053, 
+                29.829059
+              ], 
+              [
+                -84.730327, 
+                29.8069
+              ], 
+              [
+                -84.755595, 
+                29.78854
+              ], 
+              [
+                -84.762998, 
+                29.788846
+              ], 
+              [
+                -84.824197, 
+                29.758288
+              ], 
+              [
+                -84.837168, 
+                29.755926
+              ], 
+              [
+                -84.868271, 
+                29.742454
+              ], 
+              [
+                -84.881777, 
+                29.733882
+              ], 
+              [
+                -84.888031, 
+                29.722406
+              ], 
+              [
+                -84.892493, 
+                29.72266
+              ], 
+              [
+                -84.901781, 
+                29.735723
+              ], 
+              [
+                -84.890066, 
+                29.755802
+              ], 
+              [
+                -84.877111, 
+                29.772888
+              ], 
+              [
+                -84.893992, 
+                29.785176
+              ], 
+              [
+                -84.90413, 
+                29.786279
+              ], 
+              [
+                -84.91511, 
+                29.783303
+              ], 
+              [
+                -84.920917, 
+                29.772901
+              ], 
+              [
+                -84.93837, 
+                29.750211
+              ], 
+              [
+                -84.946595, 
+                29.745032
+              ], 
+              [
+                -84.964007, 
+                29.742422
+              ], 
+              [
+                -84.968841, 
+                29.72708
+              ], 
+              [
+                -84.977004, 
+                29.721209
+              ], 
+              [
+                -84.993264, 
+                29.714961
+              ], 
+              [
+                -85.037212, 
+                29.711074
+              ], 
+              [
+                -85.072123, 
+                29.719027
+              ], 
+              [
+                -85.101682, 
+                29.718748
+              ], 
+              [
+                -85.121473, 
+                29.715854
+              ], 
+              [
+                -85.153238, 
+                29.708231
+              ], 
+              [
+                -85.177284, 
+                29.700193
+              ], 
+              [
+                -85.217355, 
+                29.694953
+              ], 
+              [
+                -85.22745, 
+                29.693633
+              ], 
+              [
+                -85.259719, 
+                29.681296
+              ], 
+              [
+                -85.29074, 
+                29.684081
+              ], 
+              [
+                -85.319215, 
+                29.681494
+              ], 
+              [
+                -85.343619, 
+                29.672004
+              ], 
+              [
+                -85.347711, 
+                29.66719
+              ], 
+              [
+                -85.344768, 
+                29.654793
+              ], 
+              [
+                -85.352615, 
+                29.659787
+              ], 
+              [
+                -85.369419, 
+                29.681048
+              ], 
+              [
+                -85.380303, 
+                29.698485
+              ], 
+              [
+                -85.397871, 
+                29.740498
+              ], 
+              [
+                -85.413983, 
+                29.799865
+              ], 
+              [
+                -85.417971, 
+                29.828855
+              ], 
+              [
+                -85.416548, 
+                29.842628
+              ], 
+              [
+                -85.413575, 
+                29.85294
+              ], 
+              [
+                -85.405815, 
+                29.865817
+              ], 
+              [
+                -85.392469, 
+                29.870914
+              ], 
+              [
+                -85.39874, 
+                29.859267
+              ], 
+              [
+                -85.405011, 
+                29.830151
+              ], 
+              [
+                -85.405907, 
+                29.80193
+              ], 
+              [
+                -85.395528, 
+                29.762368
+              ], 
+              [
+                -85.37796, 
+                29.709621
+              ], 
+              [
+                -85.3638, 
+                29.693526
+              ], 
+              [
+                -85.353885, 
+                29.684765
+              ], 
+              [
+                -85.344986, 
+                29.685015
+              ], 
+              [
+                -85.317661, 
+                29.691286
+              ], 
+              [
+                -85.31139, 
+                29.697557
+              ], 
+              [
+                -85.301331, 
+                29.797117
+              ], 
+              [
+                -85.302591, 
+                29.808094
+              ], 
+              [
+                -85.304877, 
+                29.811096
+              ], 
+              [
+                -85.31142, 
+                29.814373
+              ], 
+              [
+                -85.314547, 
+                29.822279
+              ], 
+              [
+                -85.314783, 
+                29.830575
+              ], 
+              [
+                -85.312911, 
+                29.832273
+              ], 
+              [
+                -85.317464, 
+                29.838894
+              ], 
+              [
+                -85.325008, 
+                29.844966
+              ], 
+              [
+                -85.332289, 
+                29.845905
+              ], 
+              [
+                -85.336654, 
+                29.849295
+              ], 
+              [
+                -85.347044, 
+                29.871981
+              ], 
+              [
+                -85.363731, 
+                29.898915
+              ], 
+              [
+                -85.38473, 
+                29.920949
+              ], 
+              [
+                -85.388677, 
+                29.924355
+              ], 
+              [
+                -85.405052, 
+                29.938487
+              ], 
+              [
+                -85.425956, 
+                29.949888
+              ], 
+              [
+                -85.460488, 
+                29.959579
+              ], 
+              [
+                -85.469425, 
+                29.957788
+              ], 
+              [
+                -85.487764, 
+                29.961227
+              ], 
+              [
+                -85.509148, 
+                29.971466
+              ], 
+              [
+                -85.541176, 
+                29.995791
+              ], 
+              [
+                -85.571907, 
+                30.02644
+              ], 
+              [
+                -85.58139, 
+                30.037783
+              ], 
+              [
+                -85.588242, 
+                30.055543
+              ], 
+              [
+                -85.601178, 
+                30.056342
+              ], 
+              [
+                -85.618254, 
+                30.065481
+              ], 
+              [
+                -85.637285, 
+                30.073319
+              ], 
+              [
+                -85.653251, 
+                30.077839
+              ], 
+              [
+                -85.69681, 
+                30.09689
+              ], 
+              [
+                -85.730054, 
+                30.118153
+              ], 
+              [
+                -85.74993, 
+                30.136537
+              ], 
+              [
+                -85.775405, 
+                30.15629
+              ], 
+              [
+                -85.811219, 
+                30.17832
+              ], 
+              [
+                -85.878138, 
+                30.215619
+              ], 
+              [
+                -85.9226, 
+                30.238024
+              ], 
+              [
+                -85.996083, 
+                30.269148
+              ], 
+              [
+                -85.999937, 
+                30.27078
+              ], 
+              [
+                -86.089963, 
+                30.303569
+              ], 
+              [
+                -86.222561, 
+                30.343585
+              ], 
+              [
+                -86.2987, 
+                30.363049
+              ], 
+              [
+                -86.364175, 
+                30.374524
+              ], 
+              [
+                -86.397325, 
+                30.378553
+              ], 
+              [
+                -86.400403, 
+                30.378927
+              ], 
+              [
+                -86.412076, 
+                30.380346
+              ], 
+              [
+                -86.429322, 
+                30.381389
+              ], 
+              [
+                -86.454731, 
+                30.382925
+              ], 
+              [
+                -86.456197, 
+                30.383014
+              ], 
+              [
+                -86.457045, 
+                30.383065
+              ], 
+              [
+                -86.470849, 
+                30.3839
+              ], 
+              [
+                -86.47399, 
+                30.383758
+              ], 
+              [
+                -86.50615, 
+                30.3823
+              ], 
+              [
+                -86.529067, 
+                30.386896
+              ], 
+              [
+                -86.632953, 
+                30.396299
+              ], 
+              [
+                -86.750906, 
+                30.391881
+              ], 
+              [
+                -86.800283, 
+                30.386477
+              ], 
+              [
+                -86.850625, 
+                30.380967
+              ], 
+              [
+                -86.909679, 
+                30.372423
+              ], 
+              [
+                -86.919292, 
+                30.370675
+              ], 
+              [
+                -87.155392, 
+                30.327748
+              ], 
+              [
+                -87.206254, 
+                30.320943
+              ], 
+              [
+                -87.267827, 
+                30.31548
+              ], 
+              [
+                -87.282787, 
+                30.318744
+              ], 
+              [
+                -87.295422, 
+                30.323503
+              ], 
+              [
+                -87.319518, 
+                30.317814
+              ], 
+              [
+                -87.350486, 
+                30.313064
+              ], 
+              [
+                -87.419859, 
+                30.297128
+              ], 
+              [
+                -87.518324, 
+                30.280435
+              ], 
+              [
+                -87.452378, 
+                30.300201
+              ], 
+              [
+                -87.450078, 
+                30.3111
+              ], 
+              [
+                -87.450962, 
+                30.346262
+              ], 
+              [
+                -87.451378, 
+                30.367199
+              ], 
+              [
+                -87.440678, 
+                30.391498
+              ], 
+              [
+                -87.427478, 
+                30.408398
+              ], 
+              [
+                -87.419177, 
+                30.410198
+              ], 
+              [
+                -87.430578, 
+                30.491096
+              ], 
+              [
+                -87.448332, 
+                30.513063
+              ], 
+              [
+                -87.449841, 
+                30.514369
+              ], 
+              [
+                -87.449921, 
+                30.51469
+              ], 
+              [
+                -87.394479, 
+                30.625192
+              ], 
+              [
+                -87.394219, 
+                30.641699
+              ], 
+              [
+                -87.396997, 
+                30.65364
+              ], 
+              [
+                -87.407118, 
+                30.671796
+              ], 
+              [
+                -87.449362, 
+                30.698913
+              ], 
+              [
+                -87.481225, 
+                30.716508
+              ], 
+              [
+                -87.497515, 
+                30.720123
+              ], 
+              [
+                -87.502926, 
+                30.722369
+              ], 
+              [
+                -87.532607, 
+                30.743489
+              ], 
+              [
+                -87.624137, 
+                30.845713
+              ], 
+              [
+                -87.634938, 
+                30.865886
+              ], 
+              [
+                -87.622203, 
+                30.897508
+              ], 
+              [
+                -87.601355, 
+                30.936294
+              ], 
+              [
+                -87.594111, 
+                30.976335
+              ], 
+              [
+                -87.598927, 
+                30.997454
+              ], 
+              [
+                -87.598928, 
+                30.997457
+              ], 
+              [
+                -87.571281, 
+                30.99787
+              ], 
+              [
+                -87.548543, 
+                30.997927
+              ], 
+              [
+                -87.480243, 
+                30.998202
+              ], 
+              [
+                -87.479703, 
+                30.998197
+              ], 
+              [
+                -87.478706, 
+                30.998213
+              ], 
+              [
+                -87.466879, 
+                30.998178
+              ], 
+              [
+                -87.466827, 
+                30.998178
+              ], 
+              [
+                -87.461783, 
+                30.998201
+              ], 
+              [
+                -87.461638, 
+                30.998202
+              ], 
+              [
+                -87.458658, 
+                30.998386
+              ], 
+              [
+                -87.455705, 
+                30.998318
+              ], 
+              [
+                -87.449811, 
+                30.998272
+              ], 
+              [
+                -87.432292, 
+                30.998205
+              ], 
+              [
+                -87.425774, 
+                30.99809
+              ], 
+              [
+                -87.367842, 
+                30.998292
+              ], 
+              [
+                -87.364011, 
+                30.998218
+              ], 
+              [
+                -87.355656, 
+                30.998244
+              ], 
+              [
+                -87.333973, 
+                30.998272
+              ], 
+              [
+                -87.312183, 
+                30.998435
+              ], 
+              [
+                -87.30403, 
+                30.998191
+              ], 
+              [
+                -87.301567, 
+                30.998434
+              ], 
+              [
+                -87.290995, 
+                30.998352
+              ], 
+              [
+                -87.288905, 
+                30.998345
+              ], 
+              [
+                -87.265564, 
+                30.998267
+              ], 
+              [
+                -87.26054, 
+                30.998195
+              ], 
+              [
+                -87.259689, 
+                30.998172
+              ], 
+              [
+                -87.25796, 
+                30.998263
+              ], 
+              [
+                -87.257002, 
+                30.998194
+              ], 
+              [
+                -87.255592, 
+                30.998216
+              ], 
+              [
+                -87.25498, 
+                30.998285
+              ], 
+              [
+                -87.163084, 
+                30.999051
+              ], 
+              [
+                -87.162614, 
+                30.999055
+              ], 
+              [
+                -87.068633, 
+                30.999143
+              ], 
+              [
+                -87.064063, 
+                30.999191
+              ], 
+              [
+                -87.053737, 
+                30.999131
+              ], 
+              [
+                -87.039989, 
+                30.999594
+              ], 
+              [
+                -87.036366, 
+                30.999348
+              ], 
+              [
+                -87.027107, 
+                30.999255
+              ], 
+              [
+                -86.888135, 
+                30.997577
+              ], 
+              [
+                -86.872989, 
+                30.997631
+              ], 
+              [
+                -86.831934, 
+                30.997378
+              ], 
+              [
+                -86.830497, 
+                30.997401
+              ], 
+              [
+                -86.785918, 
+                30.996978
+              ], 
+              [
+                -86.785692, 
+                30.996977
+              ], 
+              [
+                -86.728392, 
+                30.996739
+              ], 
+              [
+                -86.727293, 
+                30.996882
+              ], 
+              [
+                -86.725379, 
+                30.996872
+              ], 
+              [
+                -86.688294, 
+                30.995029
+              ], 
+              [
+                -86.678383, 
+                30.994537
+              ], 
+              [
+                -86.664681, 
+                30.994534
+              ], 
+              [
+                -86.567586, 
+                30.995109
+              ], 
+              [
+                -86.563436, 
+                30.995223
+              ], 
+              [
+                -86.519938, 
+                30.993245
+              ], 
+              [
+                -86.512834, 
+                30.9937
+              ], 
+              [
+                -86.458319, 
+                30.993998
+              ], 
+              [
+                -86.454704, 
+                30.993791
+              ], 
+              [
+                -86.404912, 
+                30.994049
+              ], 
+              [
+                -86.391937, 
+                30.994172
+              ], 
+              [
+                -86.388647, 
+                30.994181
+              ], 
+              [
+                -86.388646, 
+                30.994181
+              ], 
+              [
+                -86.374545, 
+                30.994474
+              ], 
+              [
+                -86.36927, 
+                30.994477
+              ], 
+              [
+                -86.364907, 
+                30.994455
+              ], 
+              [
+                -86.304596, 
+                30.994029
+              ], 
+              [
+                -86.289247, 
+                30.993798
+              ], 
+              [
+                -86.187246, 
+                30.993992
+              ], 
+              [
+                -86.180232, 
+                30.994005
+              ], 
+              [
+                -86.175204, 
+                30.993798
+              ], 
+              [
+                -86.168979, 
+                30.993706
+              ], 
+              [
+                -86.162886, 
+                30.993682
+              ], 
+              [
+                -86.056213, 
+                30.993133
+              ], 
+              [
+                -86.052462, 
+                30.993247
+              ], 
+              [
+                -86.035039, 
+                30.99332
+              ], 
+              [
+                -85.498272, 
+                30.996928
+              ], 
+              [
+                -85.497992, 
+                30.996931
+              ], 
+              [
+                -85.488298, 
+                30.997041
+              ], 
+              [
+                -85.154452, 
+                31.000835
+              ], 
+              [
+                -85.152218, 
+                31.000834
+              ], 
+              [
+                -85.152085, 
+                31.000888
+              ], 
+              [
+                -85.145835, 
+                31.000695
+              ], 
+              [
+                -85.057534, 
+                31.000585
+              ], 
+              [
+                -85.054802, 
+                31.000585
+              ], 
+              [
+                -85.052088, 
+                31.000585
+              ], 
+              [
+                -85.031155, 
+                31.000647
+              ], 
+              [
+                -85.030107, 
+                31.000653
+              ], 
+              [
+                -85.027512, 
+                31.00067
+              ], 
+              [
+                -85.024108, 
+                31.000681
+              ], 
+              [
+                -85.002368, 
+                31.000682
+              ], 
+              [
+                -84.998628, 
+                30.971386
+              ], 
+              [
+                -84.983527, 
+                30.935486
+              ], 
+              [
+                -84.959626, 
+                30.910587
+              ], 
+              [
+                -84.941925, 
+                30.887988
+              ], 
+              [
+                -84.896122, 
+                30.750591
+              ], 
+              [
+                -84.864693, 
+                30.711542
+              ], 
+              [
+                -84.863465, 
+                30.711487
+              ], 
+              [
+                -84.606386, 
+                30.699865
+              ], 
+              [
+                -84.606249, 
+                30.699872
+              ], 
+              [
+                -84.53937, 
+                30.696775
+              ], 
+              [
+                -84.535042, 
+                30.696523
+              ], 
+              [
+                -84.380719, 
+                30.689673
+              ], 
+              [
+                -84.282562, 
+                30.685316
+              ], 
+              [
+                -84.28121, 
+                30.685256
+              ], 
+              [
+                -84.083753, 
+                30.675954
+              ], 
+              [
+                -84.057228, 
+                30.674705
+              ], 
+              [
+                -84.046605, 
+                30.6742
+              ], 
+              [
+                -84.04181, 
+                30.673878
+              ], 
+              [
+                -84.039707, 
+                30.673819
+              ], 
+              [
+                -84.007454, 
+                30.6721
+              ], 
+              [
+                -84.007391, 
+                30.672097
+              ], 
+              [
+                -83.880317, 
+                30.665807
+              ], 
+              [
+                -83.88022, 
+                30.665832
+              ], 
+              [
+                -83.855216, 
+                30.664412
+              ], 
+              [
+                -83.820886, 
+                30.662612
+              ], 
+              [
+                -83.810536, 
+                30.66188
+              ], 
+              [
+                -83.743729, 
+                30.658396
+              ], 
+              [
+                -83.676773, 
+                30.654905
+              ], 
+              [
+                -83.674058, 
+                30.654747
+              ], 
+              [
+                -83.61172, 
+                30.651258
+              ], 
+              [
+                -83.611667, 
+                30.651255
+              ], 
+              [
+                -83.448895, 
+                30.64241
+              ], 
+              [
+                -83.440021, 
+                30.642023
+              ], 
+              [
+                -83.429584, 
+                30.641496
+              ], 
+              [
+                -83.429477, 
+                30.641519
+              ], 
+              [
+                -83.390062, 
+                30.639333
+              ], 
+              [
+                -83.37946, 
+                30.63868
+              ], 
+              [
+                -83.357703, 
+                30.637359
+              ], 
+              [
+                -83.341011, 
+                30.636346
+              ], 
+              [
+                -83.340852, 
+                30.636336
+              ], 
+              [
+                -83.311647, 
+                30.634577
+              ], 
+              [
+                -83.309455, 
+                30.634417
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 24, 
+      "properties": {
+        "CENSUSAREA": 53624.759, 
+        "GEO_ID": "0400000US12", 
+        "ISO": "US-FL", 
+        "LSAD": "", 
+        "NAME": "Florida", 
+        "NAME_1": "Florida", 
+        "STATE": "FL"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -111.048974, 
+                44.474072
+              ], 
+              [
+                -111.049194, 
+                44.438058
+              ], 
+              [
+                -111.049216, 
+                44.435811
+              ], 
+              [
+                -111.048633, 
+                44.062903
+              ], 
+              [
+                -111.048751, 
+                44.060838
+              ], 
+              [
+                -111.048751, 
+                44.060403
+              ], 
+              [
+                -111.048107, 
+                43.983096
+              ], 
+              [
+                -111.046715, 
+                43.815832
+              ], 
+              [
+                -111.04634, 
+                43.726957
+              ], 
+              [
+                -111.046435, 
+                43.726545
+              ], 
+              [
+                -111.046421, 
+                43.722059
+              ], 
+              [
+                -111.04611, 
+                43.687848
+              ], 
+              [
+                -111.046051, 
+                43.685812
+              ], 
+              [
+                -111.046118, 
+                43.684902
+              ], 
+              [
+                -111.04588, 
+                43.681033
+              ], 
+              [
+                -111.045706, 
+                43.659112
+              ], 
+              [
+                -111.045205, 
+                43.501136
+              ], 
+              [
+                -111.044617, 
+                43.31572
+              ], 
+              [
+                -111.044229, 
+                43.195579
+              ], 
+              [
+                -111.044168, 
+                43.189244
+              ], 
+              [
+                -111.044232, 
+                43.18444
+              ], 
+              [
+                -111.044266, 
+                43.177236
+              ], 
+              [
+                -111.044235, 
+                43.177121
+              ], 
+              [
+                -111.044143, 
+                43.072364
+              ], 
+              [
+                -111.044162, 
+                43.068222
+              ], 
+              [
+                -111.04415, 
+                43.066172
+              ], 
+              [
+                -111.044117, 
+                43.060309
+              ], 
+              [
+                -111.044086, 
+                43.054819
+              ], 
+              [
+                -111.044063, 
+                43.046302
+              ], 
+              [
+                -111.044058, 
+                43.04464
+              ], 
+              [
+                -111.043997, 
+                43.041415
+              ], 
+              [
+                -111.044094, 
+                43.02927
+              ], 
+              [
+                -111.044033, 
+                43.026411
+              ], 
+              [
+                -111.044034, 
+                43.024844
+              ], 
+              [
+                -111.044034, 
+                43.024581
+              ], 
+              [
+                -111.044206, 
+                43.022614
+              ], 
+              [
+                -111.044156, 
+                43.020052
+              ], 
+              [
+                -111.044129, 
+                43.018702
+              ], 
+              [
+                -111.043924, 
+                42.975063
+              ], 
+              [
+                -111.043957, 
+                42.969482
+              ], 
+              [
+                -111.043959, 
+                42.96445
+              ], 
+              [
+                -111.046249, 
+                42.513116
+              ], 
+              [
+                -111.04708, 
+                42.34942
+              ], 
+              [
+                -111.047074, 
+                42.280787
+              ], 
+              [
+                -111.047097, 
+                42.194773
+              ], 
+              [
+                -111.047058, 
+                42.182672
+              ], 
+              [
+                -111.047107, 
+                42.148971
+              ], 
+              [
+                -111.047109, 
+                42.142497
+              ], 
+              [
+                -111.046689, 
+                42.001567
+              ], 
+              [
+                -111.415873, 
+                42.000748
+              ], 
+              [
+                -111.420898, 
+                42.000793
+              ], 
+              [
+                -111.425535, 
+                42.00084
+              ], 
+              [
+                -111.507264, 
+                41.999518
+              ], 
+              [
+                -111.876491, 
+                41.998528
+              ], 
+              [
+                -111.915622, 
+                41.998496
+              ], 
+              [
+                -111.915837, 
+                41.998519
+              ], 
+              [
+                -112.109528, 
+                41.997105
+              ], 
+              [
+                -112.163956, 
+                41.996708
+              ], 
+              [
+                -112.239107, 
+                42.001217
+              ], 
+              [
+                -112.264936, 
+                42.000991
+              ], 
+              [
+                -112.38617, 
+                42.001126
+              ], 
+              [
+                -112.450567, 
+                42.001092
+              ], 
+              [
+                -112.450814, 
+                42.000953
+              ], 
+              [
+                -112.648019, 
+                42.000307
+              ], 
+              [
+                -112.709375, 
+                42.000309
+              ], 
+              [
+                -112.788542, 
+                41.999681
+              ], 
+              [
+                -112.833084, 
+                41.999305
+              ], 
+              [
+                -112.833125, 
+                41.999345
+              ], 
+              [
+                -112.880619, 
+                41.998921
+              ], 
+              [
+                -112.882367, 
+                41.998922
+              ], 
+              [
+                -112.909587, 
+                41.998791
+              ], 
+              [
+                -112.979218, 
+                41.998263
+              ], 
+              [
+                -113.00082, 
+                41.998223
+              ], 
+              [
+                -113.000821, 
+                41.998223
+              ], 
+              [
+                -113.396497, 
+                41.99425
+              ], 
+              [
+                -113.40223, 
+                41.994161
+              ], 
+              [
+                -113.431563, 
+                41.993799
+              ], 
+              [
+                -113.76453, 
+                41.989459
+              ], 
+              [
+                -113.796082, 
+                41.989104
+              ], 
+              [
+                -113.893261, 
+                41.988057
+              ], 
+              [
+                -114.041723, 
+                41.99372
+              ], 
+              [
+                -114.048246, 
+                41.993721
+              ], 
+              [
+                -114.048257, 
+                41.993814
+              ], 
+              [
+                -114.061774, 
+                41.993797
+              ], 
+              [
+                -114.061763, 
+                41.993939
+              ], 
+              [
+                -114.107259, 
+                41.993831
+              ], 
+              [
+                -114.107428, 
+                41.993965
+              ], 
+              [
+                -114.281854, 
+                41.994264
+              ], 
+              [
+                -114.498243, 
+                41.994636
+              ], 
+              [
+                -114.498259, 
+                41.994599
+              ], 
+              [
+                -114.598267, 
+                41.994511
+              ], 
+              [
+                -114.763825, 
+                41.999909
+              ], 
+              [
+                -114.914187, 
+                41.999909
+              ], 
+              [
+                -115.031783, 
+                41.996008
+              ], 
+              [
+                -115.038256, 
+                41.996025
+              ], 
+              [
+                -115.98688, 
+                41.998534
+              ], 
+              [
+                -116.012212, 
+                41.998035
+              ], 
+              [
+                -116.012219, 
+                41.998048
+              ], 
+              [
+                -116.018945, 
+                41.997722
+              ], 
+              [
+                -116.01896, 
+                41.997762
+              ], 
+              [
+                -116.030758, 
+                41.997383
+              ], 
+              [
+                -116.030754, 
+                41.997399
+              ], 
+              [
+                -116.03857, 
+                41.997413
+              ], 
+              [
+                -116.038602, 
+                41.99746
+              ], 
+              [
+                -116.160833, 
+                41.997508
+              ], 
+              [
+                -116.163931, 
+                41.997555
+              ], 
+              [
+                -116.463528, 
+                41.996547
+              ], 
+              [
+                -116.483094, 
+                41.996885
+              ], 
+              [
+                -116.485823, 
+                41.996861
+              ], 
+              [
+                -116.510452, 
+                41.997096
+              ], 
+              [
+                -116.586937, 
+                41.99737
+              ], 
+              [
+                -116.62677, 
+                41.99775
+              ], 
+              [
+                -117.018294, 
+                41.999358
+              ], 
+              [
+                -117.026222, 
+                42.000252
+              ], 
+              [
+                -117.026331, 
+                42.807015
+              ], 
+              [
+                -117.026303, 
+                42.80717
+              ], 
+              [
+                -117.026253, 
+                42.807447
+              ], 
+              [
+                -117.026683, 
+                43.024876
+              ], 
+              [
+                -117.026652, 
+                43.025128
+              ], 
+              [
+                -117.026746, 
+                43.577526
+              ], 
+              [
+                -117.026774, 
+                43.578674
+              ], 
+              [
+                -117.026922, 
+                43.593632
+              ], 
+              [
+                -117.026889, 
+                43.596033
+              ], 
+              [
+                -117.026824, 
+                43.600357
+              ], 
+              [
+                -117.02676, 
+                43.601912
+              ], 
+              [
+                -117.026789, 
+                43.610669
+              ], 
+              [
+                -117.026937, 
+                43.617614
+              ], 
+              [
+                -117.027001, 
+                43.621032
+              ], 
+              [
+                -117.026905, 
+                43.62488
+              ], 
+              [
+                -117.026705, 
+                43.631659
+              ], 
+              [
+                -117.026661, 
+                43.664385
+              ], 
+              [
+                -117.026717, 
+                43.675523
+              ], 
+              [
+                -117.026623, 
+                43.680865
+              ], 
+              [
+                -117.026586, 
+                43.683001
+              ], 
+              [
+                -117.026825, 
+                43.706193
+              ], 
+              [
+                -117.026725, 
+                43.714815
+              ], 
+              [
+                -117.026841, 
+                43.732905
+              ], 
+              [
+                -117.026651, 
+                43.733935
+              ], 
+              [
+                -117.026634, 
+                43.808104
+              ], 
+              [
+                -116.996504, 
+                43.864714
+              ], 
+              [
+                -116.982482, 
+                43.872799
+              ], 
+              [
+                -116.979186, 
+                43.879973
+              ], 
+              [
+                -116.961535, 
+                43.918388
+              ], 
+              [
+                -116.935301, 
+                43.988616
+              ], 
+              [
+                -116.931719, 
+                44.102474
+              ], 
+              [
+                -116.897145, 
+                44.152537
+              ], 
+              [
+                -116.895931, 
+                44.154295
+              ], 
+              [
+                -116.894083, 
+                44.160191
+              ], 
+              [
+                -116.895757, 
+                44.171267
+              ], 
+              [
+                -116.902752, 
+                44.179467
+              ], 
+              [
+                -116.975905, 
+                44.242844
+              ], 
+              [
+                -116.98687, 
+                44.245477
+              ], 
+              [
+                -117.027558, 
+                44.248881
+              ], 
+              [
+                -117.03317, 
+                44.248192
+              ], 
+              [
+                -117.041144, 
+                44.243653
+              ], 
+              [
+                -117.170342, 
+                44.25889
+              ], 
+              [
+                -117.190107, 
+                44.273958
+              ], 
+              [
+                -117.196597, 
+                44.287529
+              ], 
+              [
+                -117.197777, 
+                44.295789
+              ], 
+              [
+                -117.197506, 
+                44.29728
+              ], 
+              [
+                -117.196597, 
+                44.30228
+              ], 
+              [
+                -117.194827, 
+                44.31054
+              ], 
+              [
+                -117.191546, 
+                44.329621
+              ], 
+              [
+                -117.189769, 
+                44.336585
+              ], 
+              [
+                -117.214889, 
+                44.466901
+              ], 
+              [
+                -117.208454, 
+                44.485928
+              ], 
+              [
+                -117.156489, 
+                44.528312
+              ], 
+              [
+                -117.149242, 
+                44.536151
+              ], 
+              [
+                -117.144161, 
+                44.545647
+              ], 
+              [
+                -117.1159, 
+                44.623339
+              ], 
+              [
+                -117.095868, 
+                44.664737
+              ], 
+              [
+                -117.062273, 
+                44.727143
+              ], 
+              [
+                -117.044217, 
+                44.74514
+              ], 
+              [
+                -117.03827, 
+                44.748179
+              ], 
+              [
+                -117.016216, 
+                44.755572
+              ], 
+              [
+                -116.931499, 
+                44.792281
+              ], 
+              [
+                -116.891463, 
+                44.840531
+              ], 
+              [
+                -116.852427, 
+                44.887577
+              ], 
+              [
+                -116.83199, 
+                44.933007
+              ], 
+              [
+                -116.835702, 
+                44.940633
+              ], 
+              [
+                -116.844653, 
+                44.949338
+              ], 
+              [
+                -116.850737, 
+                44.958113
+              ], 
+              [
+                -116.858277, 
+                44.978008
+              ], 
+              [
+                -116.845369, 
+                45.017059
+              ], 
+              [
+                -116.783902, 
+                45.079022
+              ], 
+              [
+                -116.729607, 
+                45.142091
+              ], 
+              [
+                -116.709536, 
+                45.203015
+              ], 
+              [
+                -116.696047, 
+                45.254679
+              ], 
+              [
+                -116.691197, 
+                45.269245
+              ], 
+              [
+                -116.673793, 
+                45.321511
+              ], 
+              [
+                -116.553473, 
+                45.499107
+              ], 
+              [
+                -116.481208, 
+                45.580597
+              ], 
+              [
+                -116.463635, 
+                45.602785
+              ], 
+              [
+                -116.463504, 
+                45.615785
+              ], 
+              [
+                -116.471504, 
+                45.628467
+              ], 
+              [
+                -116.48912, 
+                45.65114
+              ], 
+              [
+                -116.510938, 
+                45.668114
+              ], 
+              [
+                -116.528272, 
+                45.681473
+              ], 
+              [
+                -116.535396, 
+                45.691734
+              ], 
+              [
+                -116.538014, 
+                45.714929
+              ], 
+              [
+                -116.535698, 
+                45.734231
+              ], 
+              [
+                -116.54809, 
+                45.752364
+              ], 
+              [
+                -116.59421, 
+                45.77908
+              ], 
+              [
+                -116.633377, 
+                45.784681
+              ], 
+              [
+                -116.789099, 
+                45.847749
+              ], 
+              [
+                -116.796418, 
+                45.853807
+              ], 
+              [
+                -116.857254, 
+                45.904159
+              ], 
+              [
+                -116.866544, 
+                45.916958
+              ], 
+              [
+                -116.875125, 
+                45.9422
+              ], 
+              [
+                -116.915989, 
+                45.995413
+              ], 
+              [
+                -116.94353, 
+                46.062173
+              ], 
+              [
+                -116.925621, 
+                46.158888
+              ], 
+              [
+                -116.958801, 
+                46.24232
+              ], 
+              [
+                -116.985333, 
+                46.294617
+              ], 
+              [
+                -116.987939, 
+                46.298031
+              ], 
+              [
+                -117.047469, 
+                46.342884
+              ], 
+              [
+                -117.061045, 
+                46.367747
+              ], 
+              [
+                -117.046915, 
+                46.379577
+              ], 
+              [
+                -117.039813, 
+                46.425425
+              ], 
+              [
+                -117.039741, 
+                46.462704
+              ], 
+              [
+                -117.039763, 
+                46.46957
+              ], 
+              [
+                -117.039771, 
+                46.471779
+              ], 
+              [
+                -117.039783, 
+                46.541785
+              ], 
+              [
+                -117.039828, 
+                46.815443
+              ], 
+              [
+                -117.039657, 
+                46.825798
+              ], 
+              [
+                -117.039821, 
+                47.127265
+              ], 
+              [
+                -117.039836, 
+                47.154734
+              ], 
+              [
+                -117.039871, 
+                47.181858
+              ], 
+              [
+                -117.039888, 
+                47.203282
+              ], 
+              [
+                -117.039899, 
+                47.225515
+              ], 
+              [
+                -117.040019, 
+                47.259272
+              ], 
+              [
+                -117.039843, 
+                47.347201
+              ], 
+              [
+                -117.039857, 
+                47.366093
+              ], 
+              [
+                -117.039882, 
+                47.399085
+              ], 
+              [
+                -117.03995, 
+                47.412412
+              ], 
+              [
+                -117.039948, 
+                47.434885
+              ], 
+              [
+                -117.039971, 
+                47.463309
+              ], 
+              [
+                -117.039945, 
+                47.477823
+              ], 
+              [
+                -117.040514, 
+                47.522351
+              ], 
+              [
+                -117.040545, 
+                47.527562
+              ], 
+              [
+                -117.040745, 
+                47.532909
+              ], 
+              [
+                -117.041276, 
+                47.55821
+              ], 
+              [
+                -117.041174, 
+                47.55853
+              ], 
+              [
+                -117.041431, 
+                47.67814
+              ], 
+              [
+                -117.041431, 
+                47.678185
+              ], 
+              [
+                -117.041431, 
+                47.68
+              ], 
+              [
+                -117.041532, 
+                47.683194
+              ], 
+              [
+                -117.041633, 
+                47.7064
+              ], 
+              [
+                -117.041678, 
+                47.72271
+              ], 
+              [
+                -117.042135, 
+                47.7441
+              ], 
+              [
+                -117.042059, 
+                47.7451
+              ], 
+              [
+                -117.042657, 
+                47.760857
+              ], 
+              [
+                -117.042623, 
+                47.761223
+              ], 
+              [
+                -117.042521, 
+                47.764896
+              ], 
+              [
+                -117.042485, 
+                47.766525
+              ], 
+              [
+                -117.041874, 
+                47.977387
+              ], 
+              [
+                -117.041676, 
+                48.04556
+              ], 
+              [
+                -117.041401, 
+                48.0855
+              ], 
+              [
+                -117.039552, 
+                48.17396
+              ], 
+              [
+                -117.039413, 
+                48.17725
+              ], 
+              [
+                -117.039618, 
+                48.178142
+              ], 
+              [
+                -117.039583, 
+                48.180313
+              ], 
+              [
+                -117.039582, 
+                48.180853
+              ], 
+              [
+                -117.039582, 
+                48.181124
+              ], 
+              [
+                -117.039615, 
+                48.184015
+              ], 
+              [
+                -117.039599, 
+                48.184387
+              ], 
+              [
+                -117.035178, 
+                48.370878
+              ], 
+              [
+                -117.035178, 
+                48.371221
+              ], 
+              [
+                -117.035289, 
+                48.422732
+              ], 
+              [
+                -117.035254, 
+                48.423144
+              ], 
+              [
+                -117.035285, 
+                48.429816
+              ], 
+              [
+                -117.035285, 
+                48.430113
+              ], 
+              [
+                -117.034499, 
+                48.620769
+              ], 
+              [
+                -117.034358, 
+                48.628523
+              ], 
+              [
+                -117.033177, 
+                48.846563
+              ], 
+              [
+                -117.032351, 
+                48.999188
+              ], 
+              [
+                -116.757185, 
+                48.999791
+              ], 
+              [
+                -116.757234, 
+                48.999943
+              ], 
+              [
+                -116.049193, 
+                49.000912
+              ], 
+              [
+                -116.049025, 
+                48.958351
+              ], 
+              [
+                -116.049023, 
+                48.957947
+              ], 
+              [
+                -116.049226, 
+                48.502058
+              ], 
+              [
+                -116.049353, 
+                48.21546
+              ], 
+              [
+                -116.049415, 
+                48.07722
+              ], 
+              [
+                -116.049398, 
+                48.075395
+              ], 
+              [
+                -116.049368, 
+                48.072134
+              ], 
+              [
+                -116.04932, 
+                48.066644
+              ], 
+              [
+                -116.048424, 
+                47.977126
+              ], 
+              [
+                -116.048421, 
+                47.97682
+              ], 
+              [
+                -116.007254, 
+                47.944968
+              ], 
+              [
+                -115.919291, 
+                47.857406
+              ], 
+              [
+                -115.729123, 
+                47.703102
+              ], 
+              [
+                -115.72377, 
+                47.696671
+              ], 
+              [
+                -115.706284, 
+                47.637864
+              ], 
+              [
+                -115.718072, 
+                47.592675
+              ], 
+              [
+                -115.721207, 
+                47.576323
+              ], 
+              [
+                -115.735755, 
+                47.555346
+              ], 
+              [
+                -115.739684, 
+                47.537663
+              ], 
+              [
+                -115.729861, 
+                47.518016
+              ], 
+              [
+                -115.712178, 
+                47.488546
+              ], 
+              [
+                -115.725931, 
+                47.466934
+              ], 
+              [
+                -115.729861, 
+                47.447287
+              ], 
+              [
+                -115.721084, 
+                47.42235
+              ], 
+              [
+                -115.69057, 
+                47.415059
+              ], 
+              [
+                -115.661341, 
+                47.402663
+              ], 
+              [
+                -115.576836, 
+                47.366825
+              ], 
+              [
+                -115.561439, 
+                47.351887
+              ], 
+              [
+                -115.551309, 
+                47.333856
+              ], 
+              [
+                -115.52369, 
+                47.298919
+              ], 
+              [
+                -115.479255, 
+                47.282089
+              ], 
+              [
+                -115.421645, 
+                47.271736
+              ], 
+              [
+                -115.339201, 
+                47.261623
+              ], 
+              [
+                -115.320184, 
+                47.255717
+              ], 
+              [
+                -115.294785, 
+                47.220914
+              ], 
+              [
+                -115.29211, 
+                47.209861
+              ], 
+              [
+                -115.266723, 
+                47.181101
+              ], 
+              [
+                -115.200547, 
+                47.139154
+              ], 
+              [
+                -115.193221, 
+                47.133026
+              ], 
+              [
+                -115.099178, 
+                47.048129
+              ], 
+              [
+                -115.072985, 
+                47.01376
+              ], 
+              [
+                -114.975789, 
+                46.932865
+              ], 
+              [
+                -114.936015, 
+                46.899761
+              ], 
+              [
+                -114.938713, 
+                46.869021
+              ], 
+              [
+                -114.927837, 
+                46.83599
+              ], 
+              [
+                -114.920459, 
+                46.827697
+              ], 
+              [
+                -114.888146, 
+                46.808573
+              ], 
+              [
+                -114.853279, 
+                46.799794
+              ], 
+              [
+                -114.825923, 
+                46.781949
+              ], 
+              [
+                -114.76718, 
+                46.738828
+              ], 
+              [
+                -114.739253, 
+                46.715167
+              ], 
+              [
+                -114.717645, 
+                46.713994
+              ], 
+              [
+                -114.69063, 
+                46.719961
+              ], 
+              [
+                -114.675505, 
+                46.719516
+              ], 
+              [
+                -114.667346, 
+                46.719276
+              ], 
+              [
+                -114.655704, 
+                46.711743
+              ], 
+              [
+                -114.644747, 
+                46.702155
+              ], 
+              [
+                -114.642692, 
+                46.694622
+              ], 
+              [
+                -114.641322, 
+                46.686404
+              ], 
+              [
+                -114.641745, 
+                46.679286
+              ], 
+              [
+                -114.642713, 
+                46.673145
+              ], 
+              [
+                -114.635868, 
+                46.65951
+              ], 
+              [
+                -114.614423, 
+                46.639188
+              ], 
+              [
+                -114.594707, 
+                46.633558
+              ], 
+              [
+                -114.592264, 
+                46.632861
+              ], 
+              [
+                -114.481943, 
+                46.631993
+              ], 
+              [
+                -114.461211, 
+                46.639151
+              ], 
+              [
+                -114.44683, 
+                46.645314
+              ], 
+              [
+                -114.422176, 
+                46.652163
+              ], 
+              [
+                -114.370129, 
+                46.654217
+              ], 
+              [
+                -114.349584, 
+                46.646684
+              ], 
+              [
+                -114.341336, 
+                46.642803
+              ], 
+              [
+                -114.337942, 
+                46.641205
+              ], 
+              [
+                -114.331093, 
+                46.630248
+              ], 
+              [
+                -114.331093, 
+                46.607649
+              ], 
+              [
+                -114.346528, 
+                46.535789
+              ], 
+              [
+                -114.385297, 
+                46.467162
+              ], 
+              [
+                -114.378, 
+                46.435371
+              ], 
+              [
+                -114.426885, 
+                46.289671
+              ], 
+              [
+                -114.472643, 
+                46.162202
+              ], 
+              [
+                -114.48312, 
+                46.129147
+              ], 
+              [
+                -114.476284, 
+                46.112988
+              ], 
+              [
+                -114.468205, 
+                46.099937
+              ], 
+              [
+                -114.467583, 
+                46.081914
+              ], 
+              [
+                -114.476284, 
+                46.062026
+              ], 
+              [
+                -114.4912, 
+                46.044003
+              ], 
+              [
+                -114.4912, 
+                46.034059
+              ], 
+              [
+                -114.490578, 
+                46.022872
+              ], 
+              [
+                -114.483379, 
+                46.008047
+              ], 
+              [
+                -114.465376, 
+                45.996077
+              ], 
+              [
+                -114.429638, 
+                45.986638
+              ], 
+              [
+                -114.412007, 
+                45.978057
+              ], 
+              [
+                -114.401552, 
+                45.963195
+              ], 
+              [
+                -114.39376, 
+                45.89402
+              ], 
+              [
+                -114.44868, 
+                45.858891
+              ], 
+              [
+                -114.498809, 
+                45.850676
+              ], 
+              [
+                -114.509303, 
+                45.845531
+              ], 
+              [
+                -114.514596, 
+                45.840785
+              ], 
+              [
+                -114.566172, 
+                45.773864
+              ], 
+              [
+                -114.547763, 
+                45.743309
+              ], 
+              [
+                -114.528667, 
+                45.731636
+              ], 
+              [
+                -114.504869, 
+                45.722176
+              ], 
+              [
+                -114.497553, 
+                45.710677
+              ], 
+              [
+                -114.495421, 
+                45.703321
+              ], 
+              [
+                -114.500925, 
+                45.666715
+              ], 
+              [
+                -114.515411, 
+                45.652842
+              ], 
+              [
+                -114.54182, 
+                45.641305
+              ], 
+              [
+                -114.545574, 
+                45.642928
+              ], 
+              [
+                -114.550834, 
+                45.6426
+              ], 
+              [
+                -114.561046, 
+                45.639906
+              ], 
+              [
+                -114.563652, 
+                45.637412
+              ], 
+              [
+                -114.561773, 
+                45.565109
+              ], 
+              [
+                -114.560855, 
+                45.564575
+              ], 
+              [
+                -114.551286, 
+                45.559007
+              ], 
+              [
+                -114.514196, 
+                45.564734
+              ], 
+              [
+                -114.473759, 
+                45.563278
+              ], 
+              [
+                -114.460542, 
+                45.561283
+              ], 
+              [
+                -114.36662, 
+                45.491616
+              ], 
+              [
+                -114.350819, 
+                45.468542
+              ], 
+              [
+                -114.309613, 
+                45.469432
+              ], 
+              [
+                -114.247828, 
+                45.545489
+              ], 
+              [
+                -114.187852, 
+                45.542151
+              ], 
+              [
+                -114.135249, 
+                45.557465
+              ], 
+              [
+                -114.03493, 
+                45.647967
+              ], 
+              [
+                -114.022534, 
+                45.67962
+              ], 
+              [
+                -114.019315, 
+                45.692937
+              ], 
+              [
+                -114.015633, 
+                45.696127
+              ], 
+              [
+                -113.987759, 
+                45.705247
+              ], 
+              [
+                -113.971565, 
+                45.700636
+              ], 
+              [
+                -113.9426, 
+                45.686362
+              ], 
+              [
+                -113.93422, 
+                45.682232
+              ], 
+              [
+                -113.896681, 
+                45.641451
+              ], 
+              [
+                -113.835396, 
+                45.61296
+              ], 
+              [
+                -113.813933, 
+                45.600559
+              ], 
+              [
+                -113.804871, 
+                45.589112
+              ], 
+              [
+                -113.802009, 
+                45.579096
+              ], 
+              [
+                -113.813456, 
+                45.550002
+              ], 
+              [
+                -113.810117, 
+                45.530924
+              ], 
+              [
+                -113.786269, 
+                45.521385
+              ], 
+              [
+                -113.772915, 
+                45.512322
+              ], 
+              [
+                -113.76576, 
+                45.483228
+              ], 
+              [
+                -113.774156, 
+                45.465372
+              ], 
+              [
+                -113.760924, 
+                45.406501
+              ], 
+              [
+                -113.738729, 
+                45.329741
+              ], 
+              [
+                -113.674409, 
+                45.249411
+              ], 
+              [
+                -113.650064, 
+                45.23471
+              ], 
+              [
+                -113.599506, 
+                45.191114
+              ], 
+              [
+                -113.565979, 
+                45.149335
+              ], 
+              [
+                -113.566179, 
+                45.14312
+              ], 
+              [
+                -113.57636, 
+                45.133771
+              ], 
+              [
+                -113.576453, 
+                45.130311
+              ], 
+              [
+                -113.485278, 
+                45.063519
+              ], 
+              [
+                -113.47377, 
+                45.0617
+              ], 
+              [
+                -113.463961, 
+                45.063194
+              ], 
+              [
+                -113.449349, 
+                45.045745
+              ], 
+              [
+                -113.445751, 
+                45.018351
+              ], 
+              [
+                -113.445915, 
+                44.979918
+              ], 
+              [
+                -113.447199, 
+                44.971924
+              ], 
+              [
+                -113.472715, 
+                44.948123
+              ], 
+              [
+                -113.480836, 
+                44.95031
+              ], 
+              [
+                -113.494446, 
+                44.948597
+              ], 
+              [
+                -113.498745, 
+                44.942314
+              ], 
+              [
+                -113.475838, 
+                44.894648
+              ], 
+              [
+                -113.455071, 
+                44.865424
+              ], 
+              [
+                -113.353631, 
+                44.791395
+              ], 
+              [
+                -113.341704, 
+                44.784853
+              ], 
+              [
+                -113.329491, 
+                44.788645
+              ], 
+              [
+                -113.278382, 
+                44.812706
+              ], 
+              [
+                -113.247166, 
+                44.82295
+              ], 
+              [
+                -113.207878, 
+                44.80804
+              ], 
+              [
+                -113.158206, 
+                44.780847
+              ], 
+              [
+                -113.134617, 
+                44.763149
+              ], 
+              [
+                -113.101082, 
+                44.718832
+              ], 
+              [
+                -113.051504, 
+                44.63695
+              ], 
+              [
+                -113.049349, 
+                44.62938
+              ], 
+              [
+                -113.053529, 
+                44.621187
+              ], 
+              [
+                -113.05677, 
+                44.618657
+              ], 
+              [
+                -113.027147, 
+                44.495915
+              ], 
+              [
+                -113.003544, 
+                44.450814
+              ], 
+              [
+                -112.9703, 
+                44.426933
+              ], 
+              [
+                -112.875822, 
+                44.374357
+              ], 
+              [
+                -112.849266, 
+                44.371038
+              ], 
+              [
+                -112.83134, 
+                44.38166
+              ], 
+              [
+                -112.829247, 
+                44.385427
+              ], 
+              [
+                -112.824701, 
+                44.393611
+              ], 
+              [
+                -112.823373, 
+                44.406225
+              ], 
+              [
+                -112.822046, 
+                44.420831
+              ], 
+              [
+                -112.822046, 
+                44.434109
+              ], 
+              [
+                -112.812087, 
+                44.45137
+              ], 
+              [
+                -112.781294, 
+                44.484888
+              ], 
+              [
+                -112.71911, 
+                44.504344
+              ], 
+              [
+                -112.68816, 
+                44.49885
+              ], 
+              [
+                -112.544224, 
+                44.483763
+              ], 
+              [
+                -112.473207, 
+                44.480027
+              ], 
+              [
+                -112.410345, 
+                44.462968
+              ], 
+              [
+                -112.38708, 
+                44.460476
+              ], 
+              [
+                -112.371294, 
+                44.472108
+              ], 
+              [
+                -112.358926, 
+                44.48628
+              ], 
+              [
+                -112.3566, 
+                44.493127
+              ], 
+              [
+                -112.347199, 
+                44.520298
+              ], 
+              [
+                -112.339721, 
+                44.538577
+              ], 
+              [
+                -112.299009, 
+                44.559348
+              ], 
+              [
+                -112.274083, 
+                44.564334
+              ], 
+              [
+                -112.258297, 
+                44.564334
+              ], 
+              [
+                -112.246665, 
+                44.56101
+              ], 
+              [
+                -112.235864, 
+                44.555194
+              ], 
+              [
+                -112.229477, 
+                44.549494
+              ], 
+              [
+                -112.221698, 
+                44.543519
+              ], 
+              [
+                -112.187115, 
+                44.534452
+              ], 
+              [
+                -112.078471, 
+                44.533551
+              ], 
+              [
+                -111.947941, 
+                44.556776
+              ], 
+              [
+                -111.870504, 
+                44.564033
+              ], 
+              [
+                -111.849293, 
+                44.539837
+              ], 
+              [
+                -111.843295, 
+                44.528225
+              ], 
+              [
+                -111.806528, 
+                44.515459
+              ], 
+              [
+                -111.737191, 
+                44.54306
+              ], 
+              [
+                -111.704218, 
+                44.560205
+              ], 
+              [
+                -111.631505, 
+                44.552022
+              ], 
+              [
+                -111.617502, 
+                44.553035
+              ], 
+              [
+                -111.601249, 
+                44.55421
+              ], 
+              [
+                -111.525764, 
+                44.604883
+              ], 
+              [
+                -111.516588, 
+                44.643707
+              ], 
+              [
+                -111.489008, 
+                44.705553
+              ], 
+              [
+                -111.481536, 
+                44.709186
+              ], 
+              [
+                -111.394815, 
+                44.751351
+              ], 
+              [
+                -111.377682, 
+                44.751744
+              ], 
+              [
+                -111.323669, 
+                44.724474
+              ], 
+              [
+                -111.219236, 
+                44.622616
+              ], 
+              [
+                -111.139455, 
+                44.517112
+              ], 
+              [
+                -111.131379, 
+                44.499925
+              ], 
+              [
+                -111.122654, 
+                44.493659
+              ], 
+              [
+                -111.106574, 
+                44.48633
+              ], 
+              [
+                -111.048974, 
+                44.474072
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 25, 
+      "properties": {
+        "CENSUSAREA": 82643.117, 
+        "GEO_ID": "0400000US16", 
+        "ISO": "US-ID", 
+        "LSAD": "", 
+        "NAME": "Idaho", 
+        "NAME_1": "Idaho", 
+        "STATE": "ID"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -99.541116, 
+                36.999573
+              ], 
+              [
+                -99.558068, 
+                36.999528
+              ], 
+              [
+                -99.625399, 
+                36.999671
+              ], 
+              [
+                -99.657658, 
+                37.000197
+              ], 
+              [
+                -99.774255, 
+                37.000837
+              ], 
+              [
+                -99.774816, 
+                37.000841
+              ], 
+              [
+                -99.786016, 
+                37.000931
+              ], 
+              [
+                -99.995201, 
+                37.001631
+              ], 
+              [
+                -100.001286, 
+                37.001699
+              ], 
+              [
+                -100.002563, 
+                37.001706
+              ], 
+              [
+                -100.005706, 
+                37.001726
+              ], 
+              [
+                -100.089484, 
+                37.002092
+              ], 
+              [
+                -100.115722, 
+                37.002206
+              ], 
+              [
+                -100.187547, 
+                37.002082
+              ], 
+              [
+                -100.192371, 
+                37.002036
+              ], 
+              [
+                -100.193754, 
+                37.002133
+              ], 
+              [
+                -100.201676, 
+                37.002081
+              ], 
+              [
+                -100.551598, 
+                37.00062
+              ], 
+              [
+                -100.552683, 
+                37.000735
+              ], 
+              [
+                -100.591328, 
+                37.000376
+              ], 
+              [
+                -100.591413, 
+                37.000399
+              ], 
+              [
+                -100.62977, 
+                37.000025
+              ], 
+              [
+                -100.633323, 
+                36.999936
+              ], 
+              [
+                -100.633327, 
+                36.999936
+              ], 
+              [
+                -100.675552, 
+                36.999688
+              ], 
+              [
+                -100.756894, 
+                36.999357
+              ], 
+              [
+                -100.765484, 
+                36.999177
+              ], 
+              [
+                -100.806116, 
+                36.999091
+              ], 
+              [
+                -100.814277, 
+                36.999085
+              ], 
+              [
+                -100.855634, 
+                36.998626
+              ], 
+              [
+                -100.89166, 
+                36.998604
+              ], 
+              [
+                -100.904274, 
+                36.998745
+              ], 
+              [
+                -100.904588, 
+                36.998561
+              ], 
+              [
+                -100.945469, 
+                36.998153
+              ], 
+              [
+                -100.945566, 
+                36.998152
+              ], 
+              [
+                -100.996502, 
+                36.998044
+              ], 
+              [
+                -101.012641, 
+                36.998176
+              ], 
+              [
+                -101.053589, 
+                36.997967
+              ], 
+              [
+                -101.066742, 
+                36.997921
+              ], 
+              [
+                -101.211486, 
+                36.997124
+              ], 
+              [
+                -101.212909, 
+                36.997044
+              ], 
+              [
+                -101.357797, 
+                36.996271
+              ], 
+              [
+                -101.359674, 
+                36.996232
+              ], 
+              [
+                -101.37818, 
+                36.996164
+              ], 
+              [
+                -101.413868, 
+                36.996008
+              ], 
+              [
+                -101.415005, 
+                36.995966
+              ], 
+              [
+                -101.485326, 
+                36.995611
+              ], 
+              [
+                -101.519066, 
+                36.995546
+              ], 
+              [
+                -101.555239, 
+                36.995414
+              ], 
+              [
+                -101.55526, 
+                36.995414
+              ], 
+              [
+                -101.600396, 
+                36.995153
+              ], 
+              [
+                -101.601593, 
+                36.995095
+              ], 
+              [
+                -101.90244, 
+                36.993702
+              ], 
+              [
+                -102.000447, 
+                36.993249
+              ], 
+              [
+                -102.000447, 
+                36.993272
+              ], 
+              [
+                -102.028204, 
+                36.993125
+              ], 
+              [
+                -102.028207, 
+                36.993125
+              ], 
+              [
+                -102.04224, 
+                36.993083
+              ], 
+              [
+                -102.041952, 
+                37.024742
+              ], 
+              [
+                -102.04195, 
+                37.030805
+              ], 
+              [
+                -102.041921, 
+                37.032178
+              ], 
+              [
+                -102.041749, 
+                37.034397
+              ], 
+              [
+                -102.04192, 
+                37.035083
+              ], 
+              [
+                -102.041983, 
+                37.106551
+              ], 
+              [
+                -102.041809, 
+                37.111973
+              ], 
+              [
+                -102.042092, 
+                37.125021
+              ], 
+              [
+                -102.042135, 
+                37.125021
+              ], 
+              [
+                -102.042002, 
+                37.141744
+              ], 
+              [
+                -102.041963, 
+                37.258164
+              ], 
+              [
+                -102.041664, 
+                37.29765
+              ], 
+              [
+                -102.041817, 
+                37.30949
+              ], 
+              [
+                -102.041974, 
+                37.352613
+              ], 
+              [
+                -102.042089, 
+                37.352819
+              ], 
+              [
+                -102.041826, 
+                37.389191
+              ], 
+              [
+                -102.041676, 
+                37.409898
+              ], 
+              [
+                -102.041669, 
+                37.43474
+              ], 
+              [
+                -102.041755, 
+                37.434855
+              ], 
+              [
+                -102.041801, 
+                37.469488
+              ], 
+              [
+                -102.041786, 
+                37.506066
+              ], 
+              [
+                -102.042016, 
+                37.535261
+              ], 
+              [
+                -102.041899, 
+                37.541186
+              ], 
+              [
+                -102.041894, 
+                37.557977
+              ], 
+              [
+                -102.041618, 
+                37.607868
+              ], 
+              [
+                -102.041585, 
+                37.644282
+              ], 
+              [
+                -102.041582, 
+                37.654495
+              ], 
+              [
+                -102.041694, 
+                37.665681
+              ], 
+              [
+                -102.041574, 
+                37.680436
+              ], 
+              [
+                -102.041876, 
+                37.723875
+              ], 
+              [
+                -102.04199, 
+                37.738541
+              ], 
+              [
+                -102.042158, 
+                37.760164
+              ], 
+              [
+                -102.042668, 
+                37.788758
+              ], 
+              [
+                -102.042953, 
+                37.803535
+              ], 
+              [
+                -102.043033, 
+                37.824146
+              ], 
+              [
+                -102.043219, 
+                37.867929
+              ], 
+              [
+                -102.043845, 
+                37.926135
+              ], 
+              [
+                -102.043844, 
+                37.928102
+              ], 
+              [
+                -102.044398, 
+                38.250015
+              ], 
+              [
+                -102.04451, 
+                38.262412
+              ], 
+              [
+                -102.044567, 
+                38.268749
+              ], 
+              [
+                -102.044568, 
+                38.268819
+              ], 
+              [
+                -102.044613, 
+                38.312324
+              ], 
+              [
+                -102.044944, 
+                38.384419
+              ], 
+              [
+                -102.045263, 
+                38.505395
+              ], 
+              [
+                -102.045262, 
+                38.505532
+              ], 
+              [
+                -102.045112, 
+                38.523784
+              ], 
+              [
+                -102.045223, 
+                38.543797
+              ], 
+              [
+                -102.045189, 
+                38.558732
+              ], 
+              [
+                -102.045211, 
+                38.581609
+              ], 
+              [
+                -102.045288, 
+                38.615168
+              ], 
+              [
+                -102.045288, 
+                38.615249
+              ], 
+              [
+                -102.045074, 
+                38.669617
+              ], 
+              [
+                -102.045102, 
+                38.674946
+              ], 
+              [
+                -102.04516, 
+                38.675221
+              ], 
+              [
+                -102.045127, 
+                38.686725
+              ], 
+              [
+                -102.045156, 
+                38.688555
+              ], 
+              [
+                -102.045212, 
+                38.697567
+              ], 
+              [
+                -102.045375, 
+                38.754339
+              ], 
+              [
+                -102.045287, 
+                38.755528
+              ], 
+              [
+                -102.045371, 
+                38.770064
+              ], 
+              [
+                -102.045448, 
+                38.783453
+              ], 
+              [
+                -102.045334, 
+                38.799463
+              ], 
+              [
+                -102.045388, 
+                38.813392
+              ], 
+              [
+                -102.046571, 
+                39.047038
+              ], 
+              [
+                -102.047134, 
+                39.129701
+              ], 
+              [
+                -102.047189, 
+                39.133147
+              ], 
+              [
+                -102.04725, 
+                39.13702
+              ], 
+              [
+                -102.048449, 
+                39.303138
+              ], 
+              [
+                -102.04896, 
+                39.373712
+              ], 
+              [
+                -102.049167, 
+                39.403597
+              ], 
+              [
+                -102.04937, 
+                39.41821
+              ], 
+              [
+                -102.049369, 
+                39.423333
+              ], 
+              [
+                -102.049679, 
+                39.506183
+              ], 
+              [
+                -102.049673, 
+                39.536691
+              ], 
+              [
+                -102.049554, 
+                39.538932
+              ], 
+              [
+                -102.049764, 
+                39.56818
+              ], 
+              [
+                -102.049806, 
+                39.574058
+              ], 
+              [
+                -102.049954, 
+                39.592331
+              ], 
+              [
+                -102.050594, 
+                39.675594
+              ], 
+              [
+                -102.051254, 
+                39.818992
+              ], 
+              [
+                -102.051318, 
+                39.833311
+              ], 
+              [
+                -102.051363, 
+                39.843471
+              ], 
+              [
+                -102.051569, 
+                39.849805
+              ], 
+              [
+                -102.051744, 
+                40.003078
+              ], 
+              [
+                -101.916696, 
+                40.003142
+              ], 
+              [
+                -101.904176, 
+                40.003162
+              ], 
+              [
+                -101.841025, 
+                40.002784
+              ], 
+              [
+                -101.832161, 
+                40.002933
+              ], 
+              [
+                -101.807687, 
+                40.002798
+              ], 
+              [
+                -101.804862, 
+                40.002752
+              ], 
+              [
+                -101.627071, 
+                40.00262
+              ], 
+              [
+                -101.625809, 
+                40.002711
+              ], 
+              [
+                -101.542273, 
+                40.002609
+              ], 
+              [
+                -101.417209, 
+                40.002424
+              ], 
+              [
+                -101.411043, 
+                40.002365
+              ], 
+              [
+                -101.409953, 
+                40.002354
+              ], 
+              [
+                -101.374326, 
+                40.002521
+              ], 
+              [
+                -101.342859, 
+                40.00258
+              ], 
+              [
+                -101.325514, 
+                40.002687
+              ], 
+              [
+                -101.324036, 
+                40.002696
+              ], 
+              [
+                -101.293991, 
+                40.002559
+              ], 
+              [
+                -101.286555, 
+                40.002559
+              ], 
+              [
+                -101.248673, 
+                40.002543
+              ], 
+              [
+                -101.215033, 
+                40.002555
+              ], 
+              [
+                -101.192219, 
+                40.002491
+              ], 
+              [
+                -101.178805, 
+                40.002468
+              ], 
+              [
+                -101.168704, 
+                40.002547
+              ], 
+              [
+                -101.130907, 
+                40.002427
+              ], 
+              [
+                -101.060317, 
+                40.002307
+              ], 
+              [
+                -101.027686, 
+                40.002256
+              ], 
+              [
+                -100.937427, 
+                40.002145
+              ], 
+              [
+                -100.75883, 
+                40.002302
+              ], 
+              [
+                -100.752183, 
+                40.002128
+              ], 
+              [
+                -100.738826, 
+                40.002228
+              ], 
+              [
+                -100.733296, 
+                40.00227
+              ], 
+              [
+                -100.729904, 
+                40.002111
+              ], 
+              [
+                -100.721128, 
+                40.002069
+              ], 
+              [
+                -100.683435, 
+                40.002234
+              ], 
+              [
+                -100.66023, 
+                40.002162
+              ], 
+              [
+                -100.645445, 
+                40.001883
+              ], 
+              [
+                -100.600945, 
+                40.001906
+              ], 
+              [
+                -100.594757, 
+                40.001977
+              ], 
+              [
+                -100.567238, 
+                40.001889
+              ], 
+              [
+                -100.551886, 
+                40.001889
+              ], 
+              [
+                -100.511065, 
+                40.00184
+              ], 
+              [
+                -100.487159, 
+                40.001767
+              ], 
+              [
+                -100.477018, 
+                40.001752
+              ], 
+              [
+                -100.475854, 
+                40.001768
+              ], 
+              [
+                -100.468773, 
+                40.001724
+              ], 
+              [
+                -100.447072, 
+                40.001795
+              ], 
+              [
+                -100.439081, 
+                40.001774
+              ], 
+              [
+                -100.39008, 
+                40.001809
+              ], 
+              [
+                -100.231652, 
+                40.001623
+              ], 
+              [
+                -100.229479, 
+                40.001693
+              ], 
+              [
+                -100.215406, 
+                40.001629
+              ], 
+              [
+                -100.196959, 
+                40.001494
+              ], 
+              [
+                -100.193597, 
+                40.001573
+              ], 
+              [
+                -100.19359, 
+                40.001573
+              ], 
+              [
+                -100.190323, 
+                40.001586
+              ], 
+              [
+                -100.188181, 
+                40.001541
+              ], 
+              [
+                -100.177823, 
+                40.001593
+              ], 
+              [
+                -100.177795, 
+                40.001593
+              ], 
+              [
+                -99.990926, 
+                40.001503
+              ], 
+              [
+                -99.986611, 
+                40.00155
+              ], 
+              [
+                -99.948167, 
+                40.001813
+              ], 
+              [
+                -99.944417, 
+                40.001584
+              ], 
+              [
+                -99.930433, 
+                40.001516
+              ], 
+              [
+                -99.906658, 
+                40.001512
+              ], 
+              [
+                -99.813401, 
+                40.0014
+              ], 
+              [
+                -99.77564, 
+                40.001647
+              ], 
+              [
+                -99.772121, 
+                40.001804
+              ], 
+              [
+                -99.764214, 
+                40.001551
+              ], 
+              [
+                -99.756835, 
+                40.001342
+              ], 
+              [
+                -99.746628, 
+                40.00182
+              ], 
+              [
+                -99.731959, 
+                40.001827
+              ], 
+              [
+                -99.719639, 
+                40.001808
+              ], 
+              [
+                -99.628346, 
+                40.001866
+              ], 
+              [
+                -99.628255, 
+                40.001866
+              ], 
+              [
+                -99.62598, 
+                40.001865
+              ], 
+              [
+                -99.625324, 
+                40.001866
+              ], 
+              [
+                -99.501792, 
+                40.002026
+              ], 
+              [
+                -99.498999, 
+                40.001957
+              ], 
+              [
+                -99.49766, 
+                40.001912
+              ], 
+              [
+                -99.493465, 
+                40.001937
+              ], 
+              [
+                -99.480728, 
+                40.001942
+              ], 
+              [
+                -99.412645, 
+                40.001868
+              ], 
+              [
+                -99.403389, 
+                40.001969
+              ], 
+              [
+                -99.290703, 
+                40.001949
+              ], 
+              [
+                -99.286656, 
+                40.002017
+              ], 
+              [
+                -99.282967, 
+                40.001879
+              ], 
+              [
+                -99.254012, 
+                40.002074
+              ], 
+              [
+                -99.25037, 
+                40.001957
+              ], 
+              [
+                -99.216376, 
+                40.002016
+              ], 
+              [
+                -99.197592, 
+                40.002033
+              ], 
+              [
+                -99.188905, 
+                40.002023
+              ], 
+              [
+                -99.186962, 
+                40.001977
+              ], 
+              [
+                -99.179133, 
+                40.001977
+              ], 
+              [
+                -99.178965, 
+                40.001977
+              ], 
+              [
+                -99.169816, 
+                40.001925
+              ], 
+              [
+                -99.123033, 
+                40.002165
+              ], 
+              [
+                -99.11351, 
+                40.002193
+              ], 
+              [
+                -99.085597, 
+                40.002133
+              ], 
+              [
+                -99.067022, 
+                40.00217
+              ], 
+              [
+                -99.020338, 
+                40.002264
+              ], 
+              [
+                -99.018701, 
+                40.002333
+              ], 
+              [
+                -98.992135, 
+                40.002192
+              ], 
+              [
+                -98.972287, 
+                40.002245
+              ], 
+              [
+                -98.971721, 
+                40.002268
+              ], 
+              [
+                -98.961009, 
+                40.002317
+              ], 
+              [
+                -98.960919, 
+                40.002271
+              ], 
+              [
+                -98.934792, 
+                40.002205
+              ], 
+              [
+                -98.834456, 
+                40.002363
+              ], 
+              [
+                -98.82059, 
+                40.002319
+              ], 
+              [
+                -98.777203, 
+                40.002359
+              ], 
+              [
+                -98.774941, 
+                40.002336
+              ], 
+              [
+                -98.726373, 
+                40.002222
+              ], 
+              [
+                -98.726295, 
+                40.002222
+              ], 
+              [
+                -98.710404, 
+                40.00218
+              ], 
+              [
+                -98.693096, 
+                40.002373
+              ], 
+              [
+                -98.691443, 
+                40.002505
+              ], 
+              [
+                -98.690287, 
+                40.002548
+              ], 
+              [
+                -98.672819, 
+                40.002364
+              ], 
+              [
+                -98.669724, 
+                40.00241
+              ], 
+              [
+                -98.653833, 
+                40.002269
+              ], 
+              [
+                -98.652494, 
+                40.002245
+              ], 
+              [
+                -98.64071, 
+                40.002493
+              ], 
+              [
+                -98.613755, 
+                40.0024
+              ], 
+              [
+                -98.593342, 
+                40.002476
+              ], 
+              [
+                -98.575219, 
+                40.00248
+              ], 
+              [
+                -98.560578, 
+                40.002274
+              ], 
+              [
+                -98.543186, 
+                40.002285
+              ], 
+              [
+                -98.523053, 
+                40.002336
+              ], 
+              [
+                -98.504455, 
+                40.002329
+              ], 
+              [
+                -98.490533, 
+                40.002323
+              ], 
+              [
+                -98.274017, 
+                40.002516
+              ], 
+              [
+                -98.274015, 
+                40.002516
+              ], 
+              [
+                -98.268218, 
+                40.00249
+              ], 
+              [
+                -98.250008, 
+                40.002307
+              ], 
+              [
+                -98.193483, 
+                40.002614
+              ], 
+              [
+                -98.179315, 
+                40.002483
+              ], 
+              [
+                -98.172269, 
+                40.002438
+              ], 
+              [
+                -98.142031, 
+                40.002452
+              ], 
+              [
+                -98.099659, 
+                40.002227
+              ], 
+              [
+                -98.076034, 
+                40.002301
+              ], 
+              [
+                -98.068701, 
+                40.002355
+              ], 
+              [
+                -98.050057, 
+                40.002278
+              ], 
+              [
+                -98.047469, 
+                40.002186
+              ], 
+              [
+                -98.014412, 
+                40.002223
+              ], 
+              [
+                -98.010157, 
+                40.002153
+              ], 
+              [
+                -97.972186, 
+                40.002114
+              ], 
+              [
+                -97.931826, 
+                40.00205
+              ], 
+              [
+                -97.931811, 
+                40.00205
+              ], 
+              [
+                -97.876261, 
+                40.002102
+              ], 
+              [
+                -97.85745, 
+                40.002065
+              ], 
+              [
+                -97.838379, 
+                40.00191
+              ], 
+              [
+                -97.821598, 
+                40.002004
+              ], 
+              [
+                -97.821496, 
+                40.002002
+              ], 
+              [
+                -97.819426, 
+                40.001958
+              ], 
+              [
+                -97.777155, 
+                40.002167
+              ], 
+              [
+                -97.770776, 
+                40.001977
+              ], 
+              [
+                -97.769204, 
+                40.001995
+              ], 
+              [
+                -97.767746, 
+                40.001994
+              ], 
+              [
+                -97.515308, 
+                40.001901
+              ], 
+              [
+                -97.511381, 
+                40.001899
+              ], 
+              [
+                -97.510264, 
+                40.001835
+              ], 
+              [
+                -97.463285, 
+                40.002047
+              ], 
+              [
+                -97.444662, 
+                40.001958
+              ], 
+              [
+                -97.425443, 
+                40.002048
+              ], 
+              [
+                -97.417826, 
+                40.002024
+              ], 
+              [
+                -97.415833, 
+                40.002001
+              ], 
+              [
+                -97.369199, 
+                40.00206
+              ], 
+              [
+                -97.369199, 
+                40.00206
+              ], 
+              [
+                -97.369103, 
+                40.00206
+              ], 
+              [
+                -97.350896, 
+                40.00193
+              ], 
+              [
+                -97.350272, 
+                40.001976
+              ], 
+              [
+                -97.245169, 
+                40.001513
+              ], 
+              [
+                -97.24508, 
+                40.001467
+              ], 
+              [
+                -97.20231, 
+                40.001442
+              ], 
+              [
+                -97.20019, 
+                40.001549
+              ], 
+              [
+                -97.181775, 
+                40.00155
+              ], 
+              [
+                -97.142448, 
+                40.001495
+              ], 
+              [
+                -97.137866, 
+                40.001814
+              ], 
+              [
+                -97.049663, 
+                40.001323
+              ], 
+              [
+                -97.030803, 
+                40.001342
+              ], 
+              [
+                -97.009165, 
+                40.001463
+              ], 
+              [
+                -96.916407, 
+                40.001506
+              ], 
+              [
+                -96.916093, 
+                40.001506
+              ], 
+              [
+                -96.880459, 
+                40.001448
+              ], 
+              [
+                -96.878253, 
+                40.001466
+              ], 
+              [
+                -96.875057, 
+                40.001448
+              ], 
+              [
+                -96.873812, 
+                40.00145
+              ], 
+              [
+                -96.805768, 
+                40.001371
+              ], 
+              [
+                -96.622401, 
+                40.001158
+              ], 
+              [
+                -96.610349, 
+                40.000881
+              ], 
+              [
+                -96.604884, 
+                40.000891
+              ], 
+              [
+                -96.580852, 
+                40.000966
+              ], 
+              [
+                -96.570854, 
+                40.001091
+              ], 
+              [
+                -96.557863, 
+                40.000968
+              ], 
+              [
+                -96.538977, 
+                40.000851
+              ], 
+              [
+                -96.527111, 
+                40.001031
+              ], 
+              [
+                -96.469945, 
+                40.000966
+              ], 
+              [
+                -96.467536, 
+                40.001035
+              ], 
+              [
+                -96.463713, 
+                40.000968
+              ], 
+              [
+                -96.46364, 
+                40.000967
+              ], 
+              [
+                -96.304555, 
+                40.000629
+              ], 
+              [
+                -96.301066, 
+                40.000632
+              ], 
+              [
+                -96.239208, 
+                40.000691
+              ], 
+              [
+                -96.239172, 
+                40.000691
+              ], 
+              [
+                -96.223839, 
+                40.000729
+              ], 
+              [
+                -96.220171, 
+                40.00072
+              ], 
+              [
+                -96.154365, 
+                40.000495
+              ], 
+              [
+                -96.154246, 
+                40.00045
+              ], 
+              [
+                -96.147167, 
+                40.000479
+              ], 
+              [
+                -96.125937, 
+                40.000432
+              ], 
+              [
+                -96.125788, 
+                40.000467
+              ], 
+              [
+                -96.089781, 
+                40.000519
+              ], 
+              [
+                -96.081395, 
+                40.000603
+              ], 
+              [
+                -96.051691, 
+                40.000727
+              ], 
+              [
+                -96.02409, 
+                40.000719
+              ], 
+              [
+                -96.01068, 
+                40.000638
+              ], 
+              [
+                -96.010678, 
+                40.000638
+              ], 
+              [
+                -95.958139, 
+                40.000521
+              ], 
+              [
+                -95.882524, 
+                40.00047
+              ], 
+              [
+                -95.788111, 
+                40.000452
+              ], 
+              [
+                -95.788024, 
+                40.000452
+              ], 
+              [
+                -95.784575, 
+                40.000463
+              ], 
+              [
+                -95.375257, 
+                40.0
+              ], 
+              [
+                -95.339896, 
+                39.999999
+              ], 
+              [
+                -95.30829, 
+                39.999998
+              ], 
+              [
+                -95.30778, 
+                39.990618
+              ], 
+              [
+                -95.301549, 
+                39.983603
+              ], 
+              [
+                -95.181222, 
+                39.899996
+              ], 
+              [
+                -95.132695, 
+                39.875925
+              ], 
+              [
+                -95.107745, 
+                39.868579
+              ], 
+              [
+                -95.085003, 
+                39.861883
+              ], 
+              [
+                -95.042142, 
+                39.864805
+              ], 
+              [
+                -95.035047, 
+                39.866807
+              ], 
+              [
+                -95.027931, 
+                39.871522
+              ], 
+              [
+                -95.02525, 
+                39.877688
+              ], 
+              [
+                -95.02524, 
+                39.8897
+              ], 
+              [
+                -95.01632, 
+                39.898766
+              ], 
+              [
+                -95.00844, 
+                39.900596
+              ], 
+              [
+                -94.993348, 
+                39.900747
+              ], 
+              [
+                -94.954155, 
+                39.901138
+              ], 
+              [
+                -94.935963, 
+                39.894355
+              ], 
+              [
+                -94.927897, 
+                39.886112
+              ], 
+              [
+                -94.908267, 
+                39.812172
+              ], 
+              [
+                -94.895268, 
+                39.76321
+              ], 
+              [
+                -94.916932, 
+                39.728186
+              ], 
+              [
+                -94.937924, 
+                39.725471
+              ], 
+              [
+                -95.011103, 
+                39.677572
+              ], 
+              [
+                -95.01531, 
+                39.674262
+              ], 
+              [
+                -95.069592, 
+                39.615106
+              ], 
+              [
+                -95.107454, 
+                39.573843
+              ], 
+              [
+                -95.113077, 
+                39.559133
+              ], 
+              [
+                -95.113557, 
+                39.553941
+              ], 
+              [
+                -95.109304, 
+                39.542285
+              ], 
+              [
+                -95.102888, 
+                39.533347
+              ], 
+              [
+                -94.969061, 
+                39.418876
+              ], 
+              [
+                -94.946662, 
+                39.399717
+              ], 
+              [
+                -94.909954, 
+                39.367459
+              ], 
+              [
+                -94.908337, 
+                39.355647
+              ], 
+              [
+                -94.910641, 
+                39.348335
+              ], 
+              [
+                -94.907569, 
+                39.320623
+              ], 
+              [
+                -94.901009, 
+                39.30168
+              ], 
+              [
+                -94.832399, 
+                39.227218
+              ], 
+              [
+                -94.793948, 
+                39.201276
+              ], 
+              [
+                -94.752338, 
+                39.173203
+              ], 
+              [
+                -94.736537, 
+                39.169203
+              ], 
+              [
+                -94.723637, 
+                39.169003
+              ], 
+              [
+                -94.714137, 
+                39.170403
+              ], 
+              [
+                -94.706723, 
+                39.173801
+              ], 
+              [
+                -94.601733, 
+                39.159603
+              ], 
+              [
+                -94.596033, 
+                39.157703
+              ], 
+              [
+                -94.591933, 
+                39.155003
+              ], 
+              [
+                -94.589933, 
+                39.140403
+              ], 
+              [
+                -94.607354, 
+                39.113444
+              ], 
+              [
+                -94.607234, 
+                39.089604
+              ], 
+              [
+                -94.607334, 
+                39.081704
+              ], 
+              [
+                -94.607234, 
+                39.065704
+              ], 
+              [
+                -94.607391, 
+                39.044086
+              ], 
+              [
+                -94.608134, 
+                38.942006
+              ], 
+              [
+                -94.608134, 
+                38.940006
+              ], 
+              [
+                -94.607866, 
+                38.937398
+              ], 
+              [
+                -94.607978, 
+                38.93687
+              ], 
+              [
+                -94.608033, 
+                38.883807
+              ], 
+              [
+                -94.608033, 
+                38.869207
+              ], 
+              [
+                -94.608033, 
+                38.868107
+              ], 
+              [
+                -94.607993, 
+                38.867271
+              ], 
+              [
+                -94.608033, 
+                38.861207
+              ], 
+              [
+                -94.608033, 
+                38.855007
+              ], 
+              [
+                -94.608033, 
+                38.847207
+              ], 
+              [
+                -94.608041, 
+                38.811064
+              ], 
+              [
+                -94.609039, 
+                38.760611
+              ], 
+              [
+                -94.609399, 
+                38.74244
+              ], 
+              [
+                -94.609456, 
+                38.7407
+              ], 
+              [
+                -94.609509, 
+                38.738102
+              ], 
+              [
+                -94.611602, 
+                38.635384
+              ], 
+              [
+                -94.611858, 
+                38.620485
+              ], 
+              [
+                -94.611908, 
+                38.609272
+              ], 
+              [
+                -94.611887, 
+                38.580139
+              ], 
+              [
+                -94.611902, 
+                38.58011
+              ], 
+              [
+                -94.612176, 
+                38.576546
+              ], 
+              [
+                -94.612157, 
+                38.549817
+              ], 
+              [
+                -94.612272, 
+                38.547917
+              ], 
+              [
+                -94.612644, 
+                38.491644
+              ], 
+              [
+                -94.612726, 
+                38.484367
+              ], 
+              [
+                -94.612696, 
+                38.483154
+              ], 
+              [
+                -94.612865, 
+                38.477602
+              ], 
+              [
+                -94.612866, 
+                38.477571
+              ], 
+              [
+                -94.613365, 
+                38.403422
+              ], 
+              [
+                -94.613265, 
+                38.392426
+              ], 
+              [
+                -94.613275, 
+                38.388718
+              ], 
+              [
+                -94.613329, 
+                38.369618
+              ], 
+              [
+                -94.613312, 
+                38.364407
+              ], 
+              [
+                -94.613, 
+                38.335801
+              ], 
+              [
+                -94.612825, 
+                38.324387
+              ], 
+              [
+                -94.612788, 
+                38.320142
+              ], 
+              [
+                -94.612673, 
+                38.314832
+              ], 
+              [
+                -94.612673, 
+                38.302527
+              ], 
+              [
+                -94.612844, 
+                38.291423
+              ], 
+              [
+                -94.612849, 
+                38.289914
+              ], 
+              [
+                -94.612692, 
+                38.270394
+              ], 
+              [
+                -94.612614, 
+                38.237766
+              ], 
+              [
+                -94.612635, 
+                38.226987
+              ], 
+              [
+                -94.612659, 
+                38.219251
+              ], 
+              [
+                -94.612658, 
+                38.217649
+              ], 
+              [
+                -94.612822, 
+                38.203918
+              ], 
+              [
+                -94.612848, 
+                38.200714
+              ], 
+              [
+                -94.613073, 
+                38.190552
+              ], 
+              [
+                -94.613422, 
+                38.167908
+              ], 
+              [
+                -94.613748, 
+                38.160633
+              ], 
+              [
+                -94.613856, 
+                38.149769
+              ], 
+              [
+                -94.614061, 
+                38.067343
+              ], 
+              [
+                -94.614089, 
+                38.065901
+              ], 
+              [
+                -94.614055, 
+                38.060088
+              ], 
+              [
+                -94.614055, 
+                38.060056
+              ], 
+              [
+                -94.613981, 
+                38.037057
+              ], 
+              [
+                -94.613981, 
+                38.036949
+              ], 
+              [
+                -94.614212, 
+                37.992462
+              ], 
+              [
+                -94.614465, 
+                37.987799
+              ], 
+              [
+                -94.614557, 
+                37.971037
+              ], 
+              [
+                -94.614562, 
+                37.951517
+              ], 
+              [
+                -94.614594, 
+                37.949978
+              ], 
+              [
+                -94.614612, 
+                37.944362
+              ], 
+              [
+                -94.614754, 
+                37.940769
+              ], 
+              [
+                -94.614835, 
+                37.9367
+              ], 
+              [
+                -94.614778, 
+                37.9342
+              ], 
+              [
+                -94.615181, 
+                37.915944
+              ], 
+              [
+                -94.615393, 
+                37.906392
+              ], 
+              [
+                -94.615469, 
+                37.901775
+              ], 
+              [
+                -94.615706, 
+                37.886843
+              ], 
+              [
+                -94.615921, 
+                37.878331
+              ], 
+              [
+                -94.615834, 
+                37.87251
+              ], 
+              [
+                -94.616, 
+                37.863126
+              ], 
+              [
+                -94.616426, 
+                37.845282
+              ], 
+              [
+                -94.61645, 
+                37.83756
+              ], 
+              [
+                -94.616862, 
+                37.819456
+              ], 
+              [
+                -94.617808, 
+                37.729707
+              ], 
+              [
+                -94.617975, 
+                37.722176
+              ], 
+              [
+                -94.617805, 
+                37.690178
+              ], 
+              [
+                -94.617651, 
+                37.687671
+              ], 
+              [
+                -94.617687, 
+                37.686653
+              ], 
+              [
+                -94.617885, 
+                37.682214
+              ], 
+              [
+                -94.617734, 
+                37.673127
+              ], 
+              [
+                -94.617734, 
+                37.673105
+              ], 
+              [
+                -94.617576, 
+                37.653671
+              ], 
+              [
+                -94.617575, 
+                37.653577
+              ], 
+              [
+                -94.617477, 
+                37.63717
+              ], 
+              [
+                -94.6173, 
+                37.610495
+              ], 
+              [
+                -94.617428, 
+                37.609522
+              ], 
+              [
+                -94.617283, 
+                37.571896
+              ], 
+              [
+                -94.617315, 
+                37.571499
+              ], 
+              [
+                -94.617081, 
+                37.567013
+              ], 
+              [
+                -94.61716, 
+                37.557308
+              ], 
+              [
+                -94.617186, 
+                37.553485
+              ], 
+              [
+                -94.616908, 
+                37.527804
+              ], 
+              [
+                -94.616789, 
+                37.52151
+              ], 
+              [
+                -94.617023, 
+                37.483765
+              ], 
+              [
+                -94.617183, 
+                37.469665
+              ], 
+              [
+                -94.61718, 
+                37.465203
+              ], 
+              [
+                -94.617222, 
+                37.460476
+              ], 
+              [
+                -94.617205, 
+                37.460373
+              ], 
+              [
+                -94.617201, 
+                37.454788
+              ], 
+              [
+                -94.617132, 
+                37.439818
+              ], 
+              [
+                -94.617265, 
+                37.425536
+              ], 
+              [
+                -94.617511, 
+                37.410909
+              ], 
+              [
+                -94.617557, 
+                37.396375
+              ], 
+              [
+                -94.617625, 
+                37.367576
+              ], 
+              [
+                -94.617626, 
+                37.367445
+              ], 
+              [
+                -94.617537, 
+                37.364355
+              ], 
+              [
+                -94.617538, 
+                37.364167
+              ], 
+              [
+                -94.617636, 
+                37.338417
+              ], 
+              [
+                -94.617636, 
+                37.338415
+              ], 
+              [
+                -94.617695, 
+                37.336842
+              ], 
+              [
+                -94.617648, 
+                37.323589
+              ], 
+              [
+                -94.618075, 
+                37.240436
+              ], 
+              [
+                -94.618158, 
+                37.237597
+              ], 
+              [
+                -94.618123, 
+                37.229334
+              ], 
+              [
+                -94.61815, 
+                37.228121
+              ], 
+              [
+                -94.618219, 
+                37.207772
+              ], 
+              [
+                -94.618305, 
+                37.207337
+              ], 
+              [
+                -94.618319, 
+                37.188774
+              ], 
+              [
+                -94.618505, 
+                37.181184
+              ], 
+              [
+                -94.618473, 
+                37.174782
+              ], 
+              [
+                -94.618351, 
+                37.160211
+              ], 
+              [
+                -94.618072, 
+                37.132345
+              ], 
+              [
+                -94.618075, 
+                37.129755
+              ], 
+              [
+                -94.618212, 
+                37.113169
+              ], 
+              [
+                -94.618151, 
+                37.103968
+              ], 
+              [
+                -94.618059, 
+                37.096676
+              ], 
+              [
+                -94.618088, 
+                37.093671
+              ], 
+              [
+                -94.61809, 
+                37.093494
+              ], 
+              [
+                -94.618082, 
+                37.086432
+              ], 
+              [
+                -94.61812, 
+                37.085934
+              ], 
+              [
+                -94.617982, 
+                37.075077
+              ], 
+              [
+                -94.617875, 
+                37.056798
+              ], 
+              [
+                -94.617875, 
+                37.056797
+              ], 
+              [
+                -94.617965, 
+                37.040537
+              ], 
+              [
+                -94.617995, 
+                37.009016
+              ], 
+              [
+                -94.61808, 
+                36.998135
+              ], 
+              [
+                -94.699735, 
+                36.998805
+              ], 
+              [
+                -94.701797, 
+                36.998814
+              ], 
+              [
+                -94.71277, 
+                36.998794
+              ], 
+              [
+                -94.737183, 
+                36.998665
+              ], 
+              [
+                -94.739324, 
+                36.998687
+              ], 
+              [
+                -94.777257, 
+                36.998764
+              ], 
+              [
+                -94.83128, 
+                36.998812
+              ], 
+              [
+                -94.840926, 
+                36.998833
+              ], 
+              [
+                -94.849801, 
+                36.998876
+              ], 
+              [
+                -94.853197, 
+                36.998874
+              ], 
+              [
+                -94.995293, 
+                36.999529
+              ], 
+              [
+                -95.00762, 
+                36.999514
+              ], 
+              [
+                -95.011433, 
+                36.999535
+              ], 
+              [
+                -95.030324, 
+                36.999517
+              ], 
+              [
+                -95.037857, 
+                36.999497
+              ], 
+              [
+                -95.049499, 
+                36.99958
+              ], 
+              [
+                -95.073504, 
+                36.999509
+              ], 
+              [
+                -95.073509, 
+                36.999509
+              ], 
+              [
+                -95.155187, 
+                36.999539
+              ], 
+              [
+                -95.155372, 
+                36.99954
+              ], 
+              [
+                -95.177301, 
+                36.99952
+              ], 
+              [
+                -95.195307, 
+                36.999565
+              ], 
+              [
+                -95.322565, 
+                36.999358
+              ], 
+              [
+                -95.328058, 
+                36.999365
+              ], 
+              [
+                -95.328327, 
+                36.999366
+              ], 
+              [
+                -95.33121, 
+                36.99938
+              ], 
+              [
+                -95.407572, 
+                36.999241
+              ], 
+              [
+                -95.407683, 
+                36.999241
+              ], 
+              [
+                -95.511578, 
+                36.999235
+              ], 
+              [
+                -95.522415, 
+                36.999281
+              ], 
+              [
+                -95.534401, 
+                36.999332
+              ], 
+              [
+                -95.573598, 
+                36.99931
+              ], 
+              [
+                -95.61214, 
+                36.999321
+              ], 
+              [
+                -95.615934, 
+                36.999365
+              ], 
+              [
+                -95.62435, 
+                36.99936
+              ], 
+              [
+                -95.630079, 
+                36.99932
+              ], 
+              [
+                -95.664301, 
+                36.999322
+              ], 
+              [
+                -95.686452, 
+                36.999349
+              ], 
+              [
+                -95.696659, 
+                36.999215
+              ], 
+              [
+                -95.71038, 
+                36.999371
+              ], 
+              [
+                -95.714887, 
+                36.999279
+              ], 
+              [
+                -95.718054, 
+                36.999255
+              ], 
+              [
+                -95.741908, 
+                36.999244
+              ], 
+              [
+                -95.759905, 
+                36.999271
+              ], 
+              [
+                -95.768719, 
+                36.999205
+              ], 
+              [
+                -95.786762, 
+                36.99931
+              ], 
+              [
+                -95.80798, 
+                36.999124
+              ], 
+              [
+                -95.866899, 
+                36.999261
+              ], 
+              [
+                -95.873944, 
+                36.9993
+              ], 
+              [
+                -95.875257, 
+                36.999302
+              ], 
+              [
+                -95.877151, 
+                36.999304
+              ], 
+              [
+                -95.91018, 
+                36.999336
+              ], 
+              [
+                -95.928122, 
+                36.999245
+              ], 
+              [
+                -95.936992, 
+                36.999268
+              ], 
+              [
+                -95.96427, 
+                36.999094
+              ], 
+              [
+                -96.00081, 
+                36.99886
+              ], 
+              [
+                -96.14121, 
+                36.998973
+              ], 
+              [
+                -96.143207, 
+                36.999134
+              ], 
+              [
+                -96.147143, 
+                36.999022
+              ], 
+              [
+                -96.149709, 
+                36.99904
+              ], 
+              [
+                -96.152384, 
+                36.999051
+              ], 
+              [
+                -96.154017, 
+                36.999161
+              ], 
+              [
+                -96.184768, 
+                36.999211
+              ], 
+              [
+                -96.200028, 
+                36.999028
+              ], 
+              [
+                -96.217571, 
+                36.99907
+              ], 
+              [
+                -96.276368, 
+                36.999271
+              ], 
+              [
+                -96.279079, 
+                36.999272
+              ], 
+              [
+                -96.394272, 
+                36.999221
+              ], 
+              [
+                -96.415412, 
+                36.999113
+              ], 
+              [
+                -96.525493, 
+                36.999147
+              ], 
+              [
+                -96.705431, 
+                36.999203
+              ], 
+              [
+                -96.710482, 
+                36.999271
+              ], 
+              [
+                -96.73659, 
+                36.999286
+              ], 
+              [
+                -96.74127, 
+                36.999239
+              ], 
+              [
+                -96.749838, 
+                36.998988
+              ], 
+              [
+                -96.79206, 
+                36.99918
+              ], 
+              [
+                -96.795199, 
+                36.99886
+              ], 
+              [
+                -96.822791, 
+                36.999182
+              ], 
+              [
+                -96.867517, 
+                36.999217
+              ], 
+              [
+                -96.87629, 
+                36.999233
+              ], 
+              [
+                -96.902083, 
+                36.999155
+              ], 
+              [
+                -96.90351, 
+                36.999132
+              ], 
+              [
+                -96.917093, 
+                36.999182
+              ], 
+              [
+                -96.921915, 
+                36.999151
+              ], 
+              [
+                -96.934642, 
+                36.99907
+              ], 
+              [
+                -96.967371, 
+                36.999067
+              ], 
+              [
+                -96.975562, 
+                36.999019
+              ], 
+              [
+                -97.030082, 
+                36.998929
+              ], 
+              [
+                -97.039784, 
+                36.999
+              ], 
+              [
+                -97.100652, 
+                36.998998
+              ], 
+              [
+                -97.104276, 
+                36.99902
+              ], 
+              [
+                -97.120285, 
+                36.999014
+              ], 
+              [
+                -97.122597, 
+                36.999036
+              ], 
+              [
+                -97.147721, 
+                36.999111
+              ], 
+              [
+                -97.372421, 
+                36.998861
+              ], 
+              [
+                -97.384925, 
+                36.998843
+              ], 
+              [
+                -97.46228, 
+                36.998685
+              ], 
+              [
+                -97.462346, 
+                36.998685
+              ], 
+              [
+                -97.472861, 
+                36.998721
+              ], 
+              [
+                -97.527292, 
+                36.99875
+              ], 
+              [
+                -97.5459, 
+                36.998709
+              ], 
+              [
+                -97.546498, 
+                36.998747
+              ], 
+              [
+                -97.564536, 
+                36.998711
+              ], 
+              [
+                -97.606549, 
+                36.998682
+              ], 
+              [
+                -97.637137, 
+                36.99909
+              ], 
+              [
+                -97.650466, 
+                36.999004
+              ], 
+              [
+                -97.697104, 
+                36.998826
+              ], 
+              [
+                -97.768704, 
+                36.99875
+              ], 
+              [
+                -97.783432, 
+                36.998961
+              ], 
+              [
+                -97.783489, 
+                36.998847
+              ], 
+              [
+                -97.802298, 
+                36.998713
+              ], 
+              [
+                -97.802313, 
+                36.998713
+              ], 
+              [
+                -98.033955, 
+                36.998366
+              ], 
+              [
+                -98.03989, 
+                36.998349
+              ], 
+              [
+                -98.045342, 
+                36.998327
+              ], 
+              [
+                -98.111985, 
+                36.998133
+              ], 
+              [
+                -98.147452, 
+                36.998162
+              ], 
+              [
+                -98.177596, 
+                36.998009
+              ], 
+              [
+                -98.208218, 
+                36.997997
+              ], 
+              [
+                -98.219499, 
+                36.997824
+              ], 
+              [
+                -98.237712, 
+                36.997972
+              ], 
+              [
+                -98.346188, 
+                36.997962
+              ], 
+              [
+                -98.347149, 
+                36.997962
+              ], 
+              [
+                -98.354073, 
+                36.997961
+              ], 
+              [
+                -98.408991, 
+                36.998513
+              ], 
+              [
+                -98.418268, 
+                36.998538
+              ], 
+              [
+                -98.420209, 
+                36.998516
+              ], 
+              [
+                -98.54466, 
+                36.998996
+              ], 
+              [
+                -98.544872, 
+                36.998997
+              ], 
+              [
+                -98.714512, 
+                36.99906
+              ], 
+              [
+                -98.718465, 
+                36.99918
+              ], 
+              [
+                -98.761597, 
+                36.999425
+              ], 
+              [
+                -98.791936, 
+                36.999255
+              ], 
+              [
+                -98.793711, 
+                36.999227
+              ], 
+              [
+                -98.797452, 
+                36.999229
+              ], 
+              [
+                -98.869449, 
+                36.999286
+              ], 
+              [
+                -98.880009, 
+                36.999263
+              ], 
+              [
+                -98.88058, 
+                36.999309
+              ], 
+              [
+                -98.994371, 
+                36.999493
+              ], 
+              [
+                -99.000303, 
+                36.99951
+              ], 
+              [
+                -99.029337, 
+                36.999595
+              ], 
+              [
+                -99.124883, 
+                36.99942
+              ], 
+              [
+                -99.129449, 
+                36.999422
+              ], 
+              [
+                -99.24812, 
+                36.999565
+              ], 
+              [
+                -99.277506, 
+                36.999579
+              ], 
+              [
+                -99.456203, 
+                36.999471
+              ], 
+              [
+                -99.484333, 
+                36.999626
+              ], 
+              [
+                -99.500395, 
+                36.999576
+              ], 
+              [
+                -99.500395, 
+                36.999637
+              ], 
+              [
+                -99.502665, 
+                36.999645
+              ], 
+              [
+                -99.504093, 
+                36.999648
+              ], 
+              [
+                -99.508574, 
+                36.999658
+              ], 
+              [
+                -99.541116, 
+                36.999573
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 26, 
+      "properties": {
+        "CENSUSAREA": 81758.717, 
+        "GEO_ID": "0400000US20", 
+        "ISO": "US-KS", 
+        "LSAD": "", 
+        "NAME": "Kansas", 
+        "NAME_1": "Kansas", 
+        "STATE": "KS"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -76.048373, 
+                38.12055
+              ], 
+              [
+                -76.056811, 
+                38.125123
+              ], 
+              [
+                -76.061, 
+                38.127002
+              ], 
+              [
+                -76.061111, 
+                38.126963
+              ], 
+              [
+                -76.06147, 
+                38.126839
+              ], 
+              [
+                -76.063661, 
+                38.126078
+              ], 
+              [
+                -76.064683, 
+                38.125723
+              ], 
+              [
+                -76.081127, 
+                38.120014
+              ], 
+              [
+                -76.081587, 
+                38.119854
+              ], 
+              [
+                -76.08523, 
+                38.118589
+              ], 
+              [
+                -76.085311, 
+                38.118561
+              ], 
+              [
+                -76.085542, 
+                38.117869
+              ], 
+              [
+                -76.085885, 
+                38.116844
+              ], 
+              [
+                -76.085947, 
+                38.116658
+              ], 
+              [
+                -76.086224, 
+                38.116534
+              ], 
+              [
+                -76.089018, 
+                38.115287
+              ], 
+              [
+                -76.089166, 
+                38.115221
+              ], 
+              [
+                -76.090872, 
+                38.11446
+              ], 
+              [
+                -76.095548, 
+                38.125123
+              ], 
+              [
+                -76.090649, 
+                38.131185
+              ], 
+              [
+                -76.09064, 
+                38.13124
+              ], 
+              [
+                -76.090527, 
+                38.131919
+              ], 
+              [
+                -76.089017, 
+                38.141033
+              ], 
+              [
+                -76.089918, 
+                38.143837
+              ], 
+              [
+                -76.090216, 
+                38.144765
+              ], 
+              [
+                -76.092334, 
+                38.151355
+              ], 
+              [
+                -76.088639, 
+                38.192649
+              ], 
+              [
+                -76.07147, 
+                38.203502
+              ], 
+              [
+                -76.067797, 
+                38.203539
+              ], 
+              [
+                -76.0671, 
+                38.203546
+              ], 
+              [
+                -76.066994, 
+                38.203547
+              ], 
+              [
+                -76.061906, 
+                38.203599
+              ], 
+              [
+                -76.059731, 
+                38.203621
+              ], 
+              [
+                -76.059562, 
+                38.203622
+              ], 
+              [
+                -76.059218, 
+                38.203626
+              ], 
+              [
+                -76.059158, 
+                38.203626
+              ], 
+              [
+                -76.05902, 
+                38.203628
+              ], 
+              [
+                -76.058925, 
+                38.203629
+              ], 
+              [
+                -76.053753, 
+                38.203681
+              ], 
+              [
+                -76.052165, 
+                38.203697
+              ], 
+              [
+                -76.050511, 
+                38.203714
+              ], 
+              [
+                -76.048945, 
+                38.203729
+              ], 
+              [
+                -76.048786, 
+                38.203731
+              ], 
+              [
+                -76.046539, 
+                38.201549
+              ], 
+              [
+                -76.046273, 
+                38.20129
+              ], 
+              [
+                -76.042691, 
+                38.197811
+              ], 
+              [
+                -76.042615, 
+                38.197737
+              ], 
+              [
+                -76.042385, 
+                38.197515
+              ], 
+              [
+                -76.04228, 
+                38.197412
+              ], 
+              [
+                -76.041952, 
+                38.197094
+              ], 
+              [
+                -76.040718, 
+                38.195896
+              ], 
+              [
+                -76.038929, 
+                38.194158
+              ], 
+              [
+                -76.036757, 
+                38.192049
+              ], 
+              [
+                -76.02858, 
+                38.184107
+              ], 
+              [
+                -76.028411, 
+                38.183943
+              ], 
+              [
+                -76.0269, 
+                38.182476
+              ], 
+              [
+                -76.025899, 
+                38.181504
+              ], 
+              [
+                -76.02217, 
+                38.177882
+              ], 
+              [
+                -76.021941, 
+                38.171976
+              ], 
+              [
+                -76.025892, 
+                38.170946
+              ], 
+              [
+                -76.032767, 
+                38.169154
+              ], 
+              [
+                -76.032816, 
+                38.169141
+              ], 
+              [
+                -76.034038, 
+                38.157902
+              ], 
+              [
+                -76.033978, 
+                38.157636
+              ], 
+              [
+                -76.031945, 
+                38.148631
+              ], 
+              [
+                -76.031868, 
+                38.148288
+              ], 
+              [
+                -76.031442, 
+                38.147612
+              ], 
+              [
+                -76.022515, 
+                38.133453
+              ], 
+              [
+                -76.020982, 
+                38.132776
+              ], 
+              [
+                -76.020476, 
+                38.132553
+              ], 
+              [
+                -76.019637, 
+                38.132183
+              ], 
+              [
+                -76.018574, 
+                38.131713
+              ], 
+              [
+                -76.01779, 
+                38.131367
+              ], 
+              [
+                -76.015155, 
+                38.131548
+              ], 
+              [
+                -76.013903, 
+                38.131634
+              ], 
+              [
+                -76.012487, 
+                38.131731
+              ], 
+              [
+                -76.011916, 
+                38.122214
+              ], 
+              [
+                -76.013363, 
+                38.121342
+              ], 
+              [
+                -76.014698, 
+                38.120537
+              ], 
+              [
+                -76.015702, 
+                38.119933
+              ], 
+              [
+                -76.020496, 
+                38.117044
+              ], 
+              [
+                -76.021305, 
+                38.108608
+              ], 
+              [
+                -76.021353, 
+                38.108108
+              ], 
+              [
+                -76.02137, 
+                38.107934
+              ], 
+              [
+                -76.020996, 
+                38.107578
+              ], 
+              [
+                -76.017394, 
+                38.104154
+              ], 
+              [
+                -76.015477, 
+                38.102332
+              ], 
+              [
+                -76.008168, 
+                38.095385
+              ], 
+              [
+                -76.005904, 
+                38.07717
+              ], 
+              [
+                -76.011544, 
+                38.072312
+              ], 
+              [
+                -76.012701, 
+                38.072159
+              ], 
+              [
+                -76.015235, 
+                38.071825
+              ], 
+              [
+                -76.0233, 
+                38.07076
+              ], 
+              [
+                -76.036676, 
+                38.076509
+              ], 
+              [
+                -76.052207, 
+                38.089716
+              ], 
+              [
+                -76.05831, 
+                38.094906
+              ], 
+              [
+                -76.059304, 
+                38.095751
+              ], 
+              [
+                -76.050156, 
+                38.107758
+              ], 
+              [
+                -76.047291, 
+                38.108505
+              ], 
+              [
+                -76.046494, 
+                38.108712
+              ], 
+              [
+                -76.045279, 
+                38.109029
+              ], 
+              [
+                -76.044482, 
+                38.109237
+              ], 
+              [
+                -76.042083, 
+                38.109862
+              ], 
+              [
+                -76.041083, 
+                38.110726
+              ], 
+              [
+                -76.040874, 
+                38.110906
+              ], 
+              [
+                -76.03962, 
+                38.11199
+              ], 
+              [
+                -76.039696, 
+                38.112108
+              ], 
+              [
+                -76.040665, 
+                38.113606
+              ], 
+              [
+                -76.043423, 
+                38.117868
+              ], 
+              [
+                -76.048373, 
+                38.12055
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -75.993905, 
+                37.953489
+              ], 
+              [
+                -75.994739, 
+                37.953501
+              ], 
+              [
+                -76.005888, 
+                37.953662
+              ], 
+              [
+                -76.017686, 
+                37.953832
+              ], 
+              [
+                -76.020796, 
+                37.953877
+              ], 
+              [
+                -76.020932, 
+                37.953879
+              ], 
+              [
+                -76.021714, 
+                37.953887
+              ], 
+              [
+                -76.022325, 
+                37.953878
+              ], 
+              [
+                -76.029405, 
+                37.953776
+              ], 
+              [
+                -76.029463, 
+                37.953775
+              ], 
+              [
+                -76.030122, 
+                37.953655
+              ], 
+              [
+                -76.038026, 
+                37.953901
+              ], 
+              [
+                -76.041402, 
+                37.954006
+              ], 
+              [
+                -76.041691, 
+                37.954
+              ], 
+              [
+                -76.045561, 
+                37.953669
+              ], 
+              [
+                -76.04653, 
+                37.953586
+              ], 
+              [
+                -76.049608, 
+                37.983628
+              ], 
+              [
+                -76.049562, 
+                37.985065
+              ], 
+              [
+                -76.049549, 
+                37.985495
+              ], 
+              [
+                -76.049527, 
+                37.986184
+              ], 
+              [
+                -76.049396, 
+                37.990315
+              ], 
+              [
+                -76.048617, 
+                38.014843
+              ], 
+              [
+                -76.046213, 
+                38.025533
+              ], 
+              [
+                -76.041668, 
+                38.032148
+              ], 
+              [
+                -76.020827, 
+                38.039124
+              ], 
+              [
+                -76.013128, 
+                38.039762
+              ], 
+              [
+                -76.008835, 
+                38.038275
+              ], 
+              [
+                -76.008695, 
+                38.038226
+              ], 
+              [
+                -76.004592, 
+                38.036805
+              ], 
+              [
+                -75.991846, 
+                38.025497
+              ], 
+              [
+                -75.981195, 
+                38.02246
+              ], 
+              [
+                -75.977246, 
+                38.021334
+              ], 
+              [
+                -75.975494, 
+                38.020834
+              ], 
+              [
+                -75.975487, 
+                38.020827
+              ], 
+              [
+                -75.973432, 
+                38.018841
+              ], 
+              [
+                -75.972304, 
+                38.01775
+              ], 
+              [
+                -75.970172, 
+                38.015688
+              ], 
+              [
+                -75.970168, 
+                38.015685
+              ], 
+              [
+                -75.970168, 
+                38.015683
+              ], 
+              [
+                -75.970178, 
+                38.01526
+              ], 
+              [
+                -75.970345, 
+                38.008222
+              ], 
+              [
+                -75.97039, 
+                38.006327
+              ], 
+              [
+                -75.970917, 
+                38.006239
+              ], 
+              [
+                -75.979879, 
+                38.004738
+              ], 
+              [
+                -75.980683, 
+                38.004603
+              ], 
+              [
+                -75.98288, 
+                38.004236
+              ], 
+              [
+                -75.984251, 
+                38.004006
+              ], 
+              [
+                -75.984479, 
+                38.003369
+              ], 
+              [
+                -75.984675, 
+                38.002821
+              ], 
+              [
+                -75.98502, 
+                38.001855
+              ], 
+              [
+                -75.985723, 
+                37.999889
+              ], 
+              [
+                -75.986249, 
+                37.998416
+              ], 
+              [
+                -75.986571, 
+                37.997516
+              ], 
+              [
+                -75.988541, 
+                37.992006
+              ], 
+              [
+                -75.988719, 
+                37.991509
+              ], 
+              [
+                -75.989101, 
+                37.99044
+              ], 
+              [
+                -75.992468, 
+                37.981021
+              ], 
+              [
+                -75.99473, 
+                37.974694
+              ], 
+              [
+                -75.99473, 
+                37.974693
+              ], 
+              [
+                -75.992789, 
+                37.969932
+              ], 
+              [
+                -75.991543, 
+                37.966874
+              ], 
+              [
+                -75.988879, 
+                37.960337
+              ], 
+              [
+                -75.993905, 
+                37.953489
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -76.438845, 
+                39.0529
+              ], 
+              [
+                -76.438928, 
+                39.052788
+              ], 
+              [
+                -76.437044, 
+                39.051698
+              ], 
+              [
+                -76.422933, 
+                39.043536
+              ], 
+              [
+                -76.407398, 
+                39.034551
+              ], 
+              [
+                -76.407213, 
+                39.034444
+              ], 
+              [
+                -76.407205, 
+                39.034439
+              ], 
+              [
+                -76.405338, 
+                39.03336
+              ], 
+              [
+                -76.405081, 
+                39.033211
+              ], 
+              [
+                -76.405021, 
+                39.033124
+              ], 
+              [
+                -76.4026, 
+                39.029609
+              ], 
+              [
+                -76.39778, 
+                39.022611
+              ], 
+              [
+                -76.397738, 
+                39.022482
+              ], 
+              [
+                -76.396417, 
+                39.018449
+              ], 
+              [
+                -76.396395, 
+                39.01838
+              ], 
+              [
+                -76.395639, 
+                39.016074
+              ], 
+              [
+                -76.395338, 
+                39.015154
+              ], 
+              [
+                -76.394699, 
+                39.0132
+              ], 
+              [
+                -76.394358, 
+                39.01216
+              ], 
+              [
+                -76.39408, 
+                39.011311
+              ], 
+              [
+                -76.412326, 
+                38.996832
+              ], 
+              [
+                -76.414631, 
+                38.995002
+              ], 
+              [
+                -76.421535, 
+                38.989524
+              ], 
+              [
+                -76.422181, 
+                38.989011
+              ], 
+              [
+                -76.427301, 
+                38.987827
+              ], 
+              [
+                -76.448928, 
+                38.982823
+              ], 
+              [
+                -76.448981, 
+                38.982811
+              ], 
+              [
+                -76.449188, 
+                38.982092
+              ], 
+              [
+                -76.450152, 
+                38.978751
+              ], 
+              [
+                -76.450481, 
+                38.977612
+              ], 
+              [
+                -76.451599, 
+                38.976767
+              ], 
+              [
+                -76.454581, 
+                38.974512
+              ], 
+              [
+                -76.474198, 
+                38.972647
+              ], 
+              [
+                -76.474198, 
+                38.972646
+              ], 
+              [
+                -76.47445, 
+                38.970683
+              ], 
+              [
+                -76.474882, 
+                38.967312
+              ], 
+              [
+                -76.474743, 
+                38.966895
+              ], 
+              [
+                -76.473243, 
+                38.962397
+              ], 
+              [
+                -76.471281, 
+                38.956512
+              ], 
+              [
+                -76.463081, 
+                38.948612
+              ], 
+              [
+                -76.460234, 
+                38.948505
+              ], 
+              [
+                -76.457781, 
+                38.948412
+              ], 
+              [
+                -76.457229, 
+                38.947875
+              ], 
+              [
+                -76.451695, 
+                38.94249
+              ], 
+              [
+                -76.45028, 
+                38.941113
+              ], 
+              [
+                -76.450756, 
+                38.940412
+              ], 
+              [
+                -76.46188, 
+                38.924013
+              ], 
+              [
+                -76.461747, 
+                38.923674
+              ], 
+              [
+                -76.460272, 
+                38.919909
+              ], 
+              [
+                -76.458991, 
+                38.916639
+              ], 
+              [
+                -76.458759, 
+                38.916045
+              ], 
+              [
+                -76.45808, 
+                38.914313
+              ], 
+              [
+                -76.459479, 
+                38.907113
+              ], 
+              [
+                -76.460253, 
+                38.907152
+              ], 
+              [
+                -76.460716, 
+                38.907175
+              ], 
+              [
+                -76.462312, 
+                38.907256
+              ], 
+              [
+                -76.46528, 
+                38.907406
+              ], 
+              [
+                -76.46938, 
+                38.907613
+              ], 
+              [
+                -76.46948, 
+                38.911513
+              ], 
+              [
+                -76.475761, 
+                38.914469
+              ], 
+              [
+                -76.49368, 
+                38.910013
+              ], 
+              [
+                -76.493791, 
+                38.904225
+              ], 
+              [
+                -76.493798, 
+                38.903865
+              ], 
+              [
+                -76.493806, 
+                38.903443
+              ], 
+              [
+                -76.493856, 
+                38.900846
+              ], 
+              [
+                -76.49388, 
+                38.899614
+              ], 
+              [
+                -76.49278, 
+                38.895614
+              ], 
+              [
+                -76.49088, 
+                38.894514
+              ], 
+              [
+                -76.490403, 
+                38.892254
+              ], 
+              [
+                -76.490339, 
+                38.891955
+              ], 
+              [
+                -76.489933, 
+                38.890031
+              ], 
+              [
+                -76.489713, 
+                38.888991
+              ], 
+              [
+                -76.489675, 
+                38.888811
+              ], 
+              [
+                -76.489667, 
+                38.888772
+              ], 
+              [
+                -76.48938, 
+                38.887414
+              ], 
+              [
+                -76.49068, 
+                38.884814
+              ], 
+              [
+                -76.491107, 
+                38.884492
+              ], 
+              [
+                -76.491442, 
+                38.884239
+              ], 
+              [
+                -76.4944, 
+                38.88201
+              ], 
+              [
+                -76.494588, 
+                38.881868
+              ], 
+              [
+                -76.494858, 
+                38.881665
+              ], 
+              [
+                -76.498467, 
+                38.878944
+              ], 
+              [
+                -76.507858, 
+                38.871866
+              ], 
+              [
+                -76.511135, 
+                38.869396
+              ], 
+              [
+                -76.519442, 
+                38.863135
+              ], 
+              [
+                -76.516944, 
+                38.851157
+              ], 
+              [
+                -76.516582, 
+                38.851026
+              ], 
+              [
+                -76.509285, 
+                38.848388
+              ], 
+              [
+                -76.509211, 
+                38.848416
+              ], 
+              [
+                -76.499158, 
+                38.852156
+              ], 
+              [
+                -76.497562, 
+                38.852749
+              ], 
+              [
+                -76.496579, 
+                38.853115
+              ], 
+              [
+                -76.496474, 
+                38.852953
+              ], 
+              [
+                -76.493639, 
+                38.848595
+              ], 
+              [
+                -76.492761, 
+                38.847246
+              ], 
+              [
+                -76.492017, 
+                38.846102
+              ], 
+              [
+                -76.491581, 
+                38.845433
+              ], 
+              [
+                -76.491494, 
+                38.845299
+              ], 
+              [
+                -76.489919, 
+                38.842878
+              ], 
+              [
+                -76.489878, 
+                38.842815
+              ], 
+              [
+                -76.489878, 
+                38.838715
+              ], 
+              [
+                -76.490107, 
+                38.838176
+              ], 
+              [
+                -76.491387, 
+                38.835161
+              ], 
+              [
+                -76.491606, 
+                38.834644
+              ], 
+              [
+                -76.491684, 
+                38.834462
+              ], 
+              [
+                -76.491831, 
+                38.834116
+              ], 
+              [
+                -76.496965, 
+                38.822022
+              ], 
+              [
+                -76.497692, 
+                38.820309
+              ], 
+              [
+                -76.498878, 
+                38.817516
+              ], 
+              [
+                -76.499056, 
+                38.817258
+              ], 
+              [
+                -76.50291, 
+                38.811648
+              ], 
+              [
+                -76.50653, 
+                38.80638
+              ], 
+              [
+                -76.506876, 
+                38.805875
+              ], 
+              [
+                -76.509314, 
+                38.802328
+              ], 
+              [
+                -76.510078, 
+                38.801216
+              ], 
+              [
+                -76.51113, 
+                38.800769
+              ], 
+              [
+                -76.514296, 
+                38.799425
+              ], 
+              [
+                -76.51583, 
+                38.798774
+              ], 
+              [
+                -76.523405, 
+                38.795557
+              ], 
+              [
+                -76.524679, 
+                38.795016
+              ], 
+              [
+                -76.524806, 
+                38.794871
+              ], 
+              [
+                -76.524999, 
+                38.79465
+              ], 
+              [
+                -76.525039, 
+                38.794605
+              ], 
+              [
+                -76.52521, 
+                38.794409
+              ], 
+              [
+                -76.525531, 
+                38.794043
+              ], 
+              [
+                -76.527455, 
+                38.791844
+              ], 
+              [
+                -76.527479, 
+                38.791816
+              ], 
+              [
+                -76.527463, 
+                38.791667
+              ], 
+              [
+                -76.527372, 
+                38.790788
+              ], 
+              [
+                -76.52737, 
+                38.790774
+              ], 
+              [
+                -76.527105, 
+                38.788223
+              ], 
+              [
+                -76.527045, 
+                38.787645
+              ], 
+              [
+                -76.526979, 
+                38.787016
+              ], 
+              [
+                -76.527315, 
+                38.78666
+              ], 
+              [
+                -76.528136, 
+                38.78579
+              ], 
+              [
+                -76.532487, 
+                38.781181
+              ], 
+              [
+                -76.533975, 
+                38.779604
+              ], 
+              [
+                -76.535207, 
+                38.778298
+              ], 
+              [
+                -76.535352, 
+                38.778145
+              ], 
+              [
+                -76.535379, 
+                38.778116
+              ], 
+              [
+                -76.535426, 
+                38.778095
+              ], 
+              [
+                -76.535642, 
+                38.778
+              ], 
+              [
+                -76.536284, 
+                38.777719
+              ], 
+              [
+                -76.536819, 
+                38.777484
+              ], 
+              [
+                -76.536849, 
+                38.777471
+              ], 
+              [
+                -76.53723, 
+                38.777304
+              ], 
+              [
+                -76.539088, 
+                38.776488
+              ], 
+              [
+                -76.542973, 
+                38.774783
+              ], 
+              [
+                -76.544372, 
+                38.774169
+              ], 
+              [
+                -76.544413, 
+                38.774151
+              ], 
+              [
+                -76.554443, 
+                38.769749
+              ], 
+              [
+                -76.554693, 
+                38.769639
+              ], 
+              [
+                -76.559697, 
+                38.767443
+              ], 
+              [
+                -76.559884, 
+                38.767361
+              ], 
+              [
+                -76.559778, 
+                38.766342
+              ], 
+              [
+                -76.558933, 
+                38.758177
+              ], 
+              [
+                -76.557535, 
+                38.744687
+              ], 
+              [
+                -76.5573, 
+                38.744229
+              ], 
+              [
+                -76.557091, 
+                38.743823
+              ], 
+              [
+                -76.556954, 
+                38.743554
+              ], 
+              [
+                -76.553978, 
+                38.737756
+              ], 
+              [
+                -76.552743, 
+                38.73535
+              ], 
+              [
+                -76.551971, 
+                38.734636
+              ], 
+              [
+                -76.544561, 
+                38.727784
+              ], 
+              [
+                -76.544475, 
+                38.727705
+              ], 
+              [
+                -76.543853, 
+                38.727736
+              ], 
+              [
+                -76.54357, 
+                38.72775
+              ], 
+              [
+                -76.543435, 
+                38.727757
+              ], 
+              [
+                -76.542053, 
+                38.727826
+              ], 
+              [
+                -76.539769, 
+                38.72794
+              ], 
+              [
+                -76.529868, 
+                38.728435
+              ], 
+              [
+                -76.529284, 
+                38.728137
+              ], 
+              [
+                -76.52718, 
+                38.727062
+              ], 
+              [
+                -76.526655, 
+                38.72443
+              ], 
+              [
+                -76.529237, 
+                38.713561
+              ], 
+              [
+                -76.529532, 
+                38.712317
+              ], 
+              [
+                -76.529721, 
+                38.711523
+              ], 
+              [
+                -76.530575, 
+                38.707929
+              ], 
+              [
+                -76.530799, 
+                38.706983
+              ], 
+              [
+                -76.530824, 
+                38.706881
+              ], 
+              [
+                -76.532465, 
+                38.699974
+              ], 
+              [
+                -76.532537, 
+                38.699669
+              ], 
+              [
+                -76.532527, 
+                38.698207
+              ], 
+              [
+                -76.532432, 
+                38.6836
+              ], 
+              [
+                -76.532409, 
+                38.680064
+              ], 
+              [
+                -76.532398, 
+                38.678363
+              ], 
+              [
+                -76.532056, 
+                38.676936
+              ], 
+              [
+                -76.530454, 
+                38.670263
+              ], 
+              [
+                -76.52785, 
+                38.659416
+              ], 
+              [
+                -76.527428, 
+                38.657655
+              ], 
+              [
+                -76.525007, 
+                38.647568
+              ], 
+              [
+                -76.52462, 
+                38.645956
+              ], 
+              [
+                -76.524122, 
+                38.645044
+              ], 
+              [
+                -76.517862, 
+                38.633586
+              ], 
+              [
+                -76.516988, 
+                38.631985
+              ], 
+              [
+                -76.515554, 
+                38.629361
+              ], 
+              [
+                -76.511278, 
+                38.615745
+              ], 
+              [
+                -76.512452, 
+                38.609827
+              ], 
+              [
+                -76.512583, 
+                38.609168
+              ], 
+              [
+                -76.514812, 
+                38.59793
+              ], 
+              [
+                -76.515741, 
+                38.593248
+              ], 
+              [
+                -76.51576, 
+                38.593154
+              ], 
+              [
+                -76.515764, 
+                38.593131
+              ], 
+              [
+                -76.51634, 
+                38.590229
+              ], 
+              [
+                -76.515106, 
+                38.555763
+              ], 
+              [
+                -76.515376, 
+                38.553895
+              ], 
+              [
+                -76.515409, 
+                38.553667
+              ], 
+              [
+                -76.515415, 
+                38.553623
+              ], 
+              [
+                -76.51552, 
+                38.5529
+              ], 
+              [
+                -76.517506, 
+                38.539149
+              ], 
+              [
+                -76.515754, 
+                38.52926
+              ], 
+              [
+                -76.515706, 
+                38.528988
+              ], 
+              [
+                -76.51535, 
+                38.528093
+              ], 
+              [
+                -76.507489, 
+                38.5083
+              ], 
+              [
+                -76.50686, 
+                38.506716
+              ], 
+              [
+                -76.506023, 
+                38.50461
+              ], 
+              [
+                -76.499256, 
+                38.493559
+              ], 
+              [
+                -76.498792, 
+                38.4928
+              ], 
+              [
+                -76.498222, 
+                38.491869
+              ], 
+              [
+                -76.492699, 
+                38.482849
+              ], 
+              [
+                -76.491642, 
+                38.481944
+              ], 
+              [
+                -76.473372, 
+                38.46629
+              ], 
+              [
+                -76.471253, 
+                38.464474
+              ], 
+              [
+                -76.467342, 
+                38.461123
+              ], 
+              [
+                -76.467194, 
+                38.460996
+              ], 
+              [
+                -76.467186, 
+                38.46099
+              ], 
+              [
+                -76.46401, 
+                38.458268
+              ], 
+              [
+                -76.461078, 
+                38.455756
+              ], 
+              [
+                -76.455799, 
+                38.451233
+              ], 
+              [
+                -76.456002, 
+                38.447891
+              ], 
+              [
+                -76.45414, 
+                38.44588
+              ], 
+              [
+                -76.450937, 
+                38.442422
+              ], 
+              [
+                -76.445376, 
+                38.439012
+              ], 
+              [
+                -76.442441, 
+                38.437212
+              ], 
+              [
+                -76.442431, 
+                38.437206
+              ], 
+              [
+                -76.44118, 
+                38.436439
+              ], 
+              [
+                -76.438919, 
+                38.435053
+              ], 
+              [
+                -76.436271, 
+                38.433429
+              ], 
+              [
+                -76.435674, 
+                38.432893
+              ], 
+              [
+                -76.415384, 
+                38.414682
+              ], 
+              [
+                -76.40271, 
+                38.396003
+              ], 
+              [
+                -76.393378, 
+                38.389477
+              ], 
+              [
+                -76.388348, 
+                38.387781
+              ], 
+              [
+                -76.388328, 
+                38.387727
+              ], 
+              [
+                -76.386229, 
+                38.382013
+              ], 
+              [
+                -76.386243, 
+                38.381631
+              ], 
+              [
+                -76.386931, 
+                38.363184
+              ], 
+              [
+                -76.386957, 
+                38.362462
+              ], 
+              [
+                -76.387002, 
+                38.361267
+              ], 
+              [
+                -76.387408, 
+                38.360811
+              ], 
+              [
+                -76.388806, 
+                38.359238
+              ], 
+              [
+                -76.388915, 
+                38.359115
+              ], 
+              [
+                -76.398261, 
+                38.348602
+              ], 
+              [
+                -76.400871, 
+                38.345666
+              ], 
+              [
+                -76.401532, 
+                38.344923
+              ], 
+              [
+                -76.402043, 
+                38.344348
+              ], 
+              [
+                -76.403101, 
+                38.343157
+              ], 
+              [
+                -76.40494, 
+                38.341089
+              ], 
+              [
+                -76.409291, 
+                38.325891
+              ], 
+              [
+                -76.405716, 
+                38.317794
+              ], 
+              [
+                -76.402894, 
+                38.311402
+              ], 
+              [
+                -76.382163, 
+                38.303389
+              ], 
+              [
+                -76.381493, 
+                38.30313
+              ], 
+              [
+                -76.38012, 
+                38.302343
+              ], 
+              [
+                -76.37531, 
+                38.299583
+              ], 
+              [
+                -76.375023, 
+                38.299419
+              ], 
+              [
+                -76.374517, 
+                38.296556
+              ], 
+              [
+                -76.374481, 
+                38.296348
+              ], 
+              [
+                -76.376607, 
+                38.294393
+              ], 
+              [
+                -76.382051, 
+                38.289384
+              ], 
+              [
+                -76.394171, 
+                38.278233
+              ], 
+              [
+                -76.396913, 
+                38.27165
+              ], 
+              [
+                -76.398852, 
+                38.266997
+              ], 
+              [
+                -76.399013, 
+                38.264338
+              ], 
+              [
+                -76.399049, 
+                38.263753
+              ], 
+              [
+                -76.399078, 
+                38.263275
+              ], 
+              [
+                -76.399313, 
+                38.259398
+              ], 
+              [
+                -76.39932, 
+                38.259284
+              ], 
+              [
+                -76.399078, 
+                38.258569
+              ], 
+              [
+                -76.392464, 
+                38.239055
+              ], 
+              [
+                -76.39228, 
+                38.238511
+              ], 
+              [
+                -76.391659, 
+                38.23668
+              ], 
+              [
+                -76.391623, 
+                38.236573
+              ], 
+              [
+                -76.385244, 
+                38.217751
+              ], 
+              [
+                -76.378104, 
+                38.209897
+              ], 
+              [
+                -76.377693, 
+                38.209445
+              ], 
+              [
+                -76.372535, 
+                38.203771
+              ], 
+              [
+                -76.364135, 
+                38.194532
+              ], 
+              [
+                -76.361877, 
+                38.192048
+              ], 
+              [
+                -76.359887, 
+                38.188737
+              ], 
+              [
+                -76.353799, 
+                38.178606
+              ], 
+              [
+                -76.353516, 
+                38.178135
+              ], 
+              [
+                -76.352561, 
+                38.177214
+              ], 
+              [
+                -76.352395, 
+                38.177054
+              ], 
+              [
+                -76.347983, 
+                38.172802
+              ], 
+              [
+                -76.343517, 
+                38.168497
+              ], 
+              [
+                -76.337611, 
+                38.162805
+              ], 
+              [
+                -76.336106, 
+                38.161353
+              ], 
+              [
+                -76.329711, 
+                38.15519
+              ], 
+              [
+                -76.329705, 
+                38.155184
+              ], 
+              [
+                -76.329688, 
+                38.155155
+              ], 
+              [
+                -76.328864, 
+                38.153703
+              ], 
+              [
+                -76.328805, 
+                38.1536
+              ], 
+              [
+                -76.328778, 
+                38.153552
+              ], 
+              [
+                -76.328419, 
+                38.152921
+              ], 
+              [
+                -76.327124, 
+                38.150641
+              ], 
+              [
+                -76.320492, 
+                38.138966
+              ], 
+              [
+                -76.320136, 
+                38.138339
+              ], 
+              [
+                -76.324108, 
+                38.134266
+              ], 
+              [
+                -76.330982, 
+                38.127217
+              ], 
+              [
+                -76.331812, 
+                38.126366
+              ], 
+              [
+                -76.335243, 
+                38.122848
+              ], 
+              [
+                -76.335637, 
+                38.122444
+              ], 
+              [
+                -76.337342, 
+                38.120696
+              ], 
+              [
+                -76.338161, 
+                38.119856
+              ], 
+              [
+                -76.338535, 
+                38.119472
+              ], 
+              [
+                -76.337411, 
+                38.110888
+              ], 
+              [
+                -76.337402, 
+                38.11082
+              ], 
+              [
+                -76.331807, 
+                38.101092
+              ], 
+              [
+                -76.331484, 
+                38.100531
+              ], 
+              [
+                -76.33124, 
+                38.100106
+              ], 
+              [
+                -76.330807, 
+                38.099354
+              ], 
+              [
+                -76.330794, 
+                38.099331
+              ], 
+              [
+                -76.330787, 
+                38.099201
+              ], 
+              [
+                -76.329433, 
+                38.073986
+              ], 
+              [
+                -76.329308, 
+                38.07166
+              ], 
+              [
+                -76.329165, 
+                38.071247
+              ], 
+              [
+                -76.325044, 
+                38.059368
+              ], 
+              [
+                -76.320592, 
+                38.046531
+              ], 
+              [
+                -76.319476, 
+                38.043315
+              ], 
+              [
+                -76.321499, 
+                38.03805
+              ], 
+              [
+                -76.32195, 
+                38.036874
+              ], 
+              [
+                -76.322093, 
+                38.036503
+              ], 
+              [
+                -76.326994, 
+                38.045105
+              ], 
+              [
+                -76.332812, 
+                38.049938
+              ], 
+              [
+                -76.341172, 
+                38.053596
+              ], 
+              [
+                -76.341404, 
+                38.053697
+              ], 
+              [
+                -76.344327, 
+                38.053565
+              ], 
+              [
+                -76.345697, 
+                38.053502
+              ], 
+              [
+                -76.350656, 
+                38.053277
+              ], 
+              [
+                -76.35275, 
+                38.053182
+              ], 
+              [
+                -76.361237, 
+                38.059542
+              ], 
+              [
+                -76.361538, 
+                38.060114
+              ], 
+              [
+                -76.361668, 
+                38.06036
+              ], 
+              [
+                -76.361779, 
+                38.06057
+              ], 
+              [
+                -76.369306, 
+                38.074853
+              ], 
+              [
+                -76.370204, 
+                38.076556
+              ], 
+              [
+                -76.370845, 
+                38.077771
+              ], 
+              [
+                -76.37179, 
+                38.079565
+              ], 
+              [
+                -76.378292, 
+                38.086949
+              ], 
+              [
+                -76.380991, 
+                38.090014
+              ], 
+              [
+                -76.381298, 
+                38.090362
+              ], 
+              [
+                -76.381752, 
+                38.090878
+              ], 
+              [
+                -76.381842, 
+                38.090981
+              ], 
+              [
+                -76.383896, 
+                38.093312
+              ], 
+              [
+                -76.384886, 
+                38.094437
+              ], 
+              [
+                -76.390917, 
+                38.101286
+              ], 
+              [
+                -76.391823, 
+                38.102315
+              ], 
+              [
+                -76.392058, 
+                38.102581
+              ], 
+              [
+                -76.392335, 
+                38.102896
+              ], 
+              [
+                -76.393121, 
+                38.103142
+              ], 
+              [
+                -76.394006, 
+                38.103419
+              ], 
+              [
+                -76.396478, 
+                38.104192
+              ], 
+              [
+                -76.397656, 
+                38.104561
+              ], 
+              [
+                -76.398067, 
+                38.10469
+              ], 
+              [
+                -76.405368, 
+                38.106974
+              ], 
+              [
+                -76.405972, 
+                38.106967
+              ], 
+              [
+                -76.41316, 
+                38.106884
+              ], 
+              [
+                -76.414475, 
+                38.105943
+              ], 
+              [
+                -76.414994, 
+                38.105572
+              ], 
+              [
+                -76.41655, 
+                38.104459
+              ], 
+              [
+                -76.421066, 
+                38.105989
+              ], 
+              [
+                -76.421214, 
+                38.106039
+              ], 
+              [
+                -76.421896, 
+                38.107026
+              ], 
+              [
+                -76.429384, 
+                38.117875
+              ], 
+              [
+                -76.429471, 
+                38.118001
+              ], 
+              [
+                -76.430425, 
+                38.119383
+              ], 
+              [
+                -76.430412, 
+                38.119488
+              ], 
+              [
+                -76.43013, 
+                38.121753
+              ], 
+              [
+                -76.429744, 
+                38.124856
+              ], 
+              [
+                -76.429581, 
+                38.126165
+              ], 
+              [
+                -76.437242, 
+                38.135699
+              ], 
+              [
+                -76.439841, 
+                38.138933
+              ], 
+              [
+                -76.459236, 
+                38.139471
+              ], 
+              [
+                -76.459689, 
+                38.139484
+              ], 
+              [
+                -76.460072, 
+                38.138717
+              ], 
+              [
+                -76.460673, 
+                38.137515
+              ], 
+              [
+                -76.465727, 
+                38.127408
+              ], 
+              [
+                -76.469798, 
+                38.119264
+              ], 
+              [
+                -76.469795, 
+                38.119061
+              ], 
+              [
+                -76.469787, 
+                38.118606
+              ], 
+              [
+                -76.469784, 
+                38.118381
+              ], 
+              [
+                -76.46976, 
+                38.116874
+              ], 
+              [
+                -76.46974, 
+                38.115653
+              ], 
+              [
+                -76.469738, 
+                38.115534
+              ], 
+              [
+                -76.467333, 
+                38.112546
+              ], 
+              [
+                -76.466973, 
+                38.112099
+              ], 
+              [
+                -76.466568, 
+                38.111596
+              ], 
+              [
+                -76.466404, 
+                38.111392
+              ], 
+              [
+                -76.466387, 
+                38.111302
+              ], 
+              [
+                -76.466364, 
+                38.111183
+              ], 
+              [
+                -76.465892, 
+                38.108738
+              ], 
+              [
+                -76.465479, 
+                38.106603
+              ], 
+              [
+                -76.46533, 
+                38.10583
+              ], 
+              [
+                -76.467879, 
+                38.104932
+              ], 
+              [
+                -76.473266, 
+                38.103035
+              ], 
+              [
+                -76.475448, 
+                38.104271
+              ], 
+              [
+                -76.476222, 
+                38.104709
+              ], 
+              [
+                -76.478168, 
+                38.109221
+              ], 
+              [
+                -76.47861, 
+                38.110247
+              ], 
+              [
+                -76.478797, 
+                38.11068
+              ], 
+              [
+                -76.478817, 
+                38.110726
+              ], 
+              [
+                -76.479056, 
+                38.111281
+              ], 
+              [
+                -76.479799, 
+                38.113005
+              ], 
+              [
+                -76.481, 
+                38.115789
+              ], 
+              [
+                -76.481036, 
+                38.115873
+              ], 
+              [
+                -76.48105, 
+                38.115889
+              ], 
+              [
+                -76.481073, 
+                38.115915
+              ], 
+              [
+                -76.482007, 
+                38.116974
+              ], 
+              [
+                -76.48403, 
+                38.119266
+              ], 
+              [
+                -76.485149, 
+                38.120535
+              ], 
+              [
+                -76.485961, 
+                38.121456
+              ], 
+              [
+                -76.486274, 
+                38.12181
+              ], 
+              [
+                -76.48632, 
+                38.121862
+              ], 
+              [
+                -76.492029, 
+                38.128333
+              ], 
+              [
+                -76.49504, 
+                38.131746
+              ], 
+              [
+                -76.497081, 
+                38.134059
+              ], 
+              [
+                -76.497866, 
+                38.13495
+              ], 
+              [
+                -76.499018, 
+                38.136255
+              ], 
+              [
+                -76.499842, 
+                38.137189
+              ], 
+              [
+                -76.499923, 
+                38.137221
+              ], 
+              [
+                -76.500332, 
+                38.137381
+              ], 
+              [
+                -76.501258, 
+                38.137744
+              ], 
+              [
+                -76.502306, 
+                38.138156
+              ], 
+              [
+                -76.508825, 
+                38.140713
+              ], 
+              [
+                -76.514824, 
+                38.141219
+              ], 
+              [
+                -76.522418, 
+                38.139391
+              ], 
+              [
+                -76.52899, 
+                38.134708
+              ], 
+              [
+                -76.529439, 
+                38.134388
+              ], 
+              [
+                -76.529868, 
+                38.134083
+              ], 
+              [
+                -76.54038, 
+                38.152991
+              ], 
+              [
+                -76.545335, 
+                38.165373
+              ], 
+              [
+                -76.547333, 
+                38.175673
+              ], 
+              [
+                -76.547455, 
+                38.175923
+              ], 
+              [
+                -76.547902, 
+                38.176839
+              ], 
+              [
+                -76.548256, 
+                38.177566
+              ], 
+              [
+                -76.548946, 
+                38.178982
+              ], 
+              [
+                -76.552957, 
+                38.187209
+              ], 
+              [
+                -76.566297, 
+                38.198492
+              ], 
+              [
+                -76.57444, 
+                38.203751
+              ], 
+              [
+                -76.588683, 
+                38.21295
+              ], 
+              [
+                -76.590637, 
+                38.214212
+              ], 
+              [
+                -76.624387, 
+                38.223429
+              ], 
+              [
+                -76.625659, 
+                38.223777
+              ], 
+              [
+                -76.628078, 
+                38.224437
+              ], 
+              [
+                -76.629703, 
+                38.224881
+              ], 
+              [
+                -76.629893, 
+                38.224933
+              ], 
+              [
+                -76.631958, 
+                38.225497
+              ], 
+              [
+                -76.631997, 
+                38.225508
+              ], 
+              [
+                -76.632464, 
+                38.225635
+              ], 
+              [
+                -76.632544, 
+                38.225657
+              ], 
+              [
+                -76.643929, 
+                38.22508
+              ], 
+              [
+                -76.643999, 
+                38.225102
+              ], 
+              [
+                -76.645034, 
+                38.225429
+              ], 
+              [
+                -76.645166, 
+                38.22547
+              ], 
+              [
+                -76.659182, 
+                38.229894
+              ], 
+              [
+                -76.673462, 
+                38.234401
+              ], 
+              [
+                -76.678687, 
+                38.234259
+              ], 
+              [
+                -76.687075, 
+                38.23403
+              ], 
+              [
+                -76.712594, 
+                38.233334
+              ], 
+              [
+                -76.716139, 
+                38.233237
+              ], 
+              [
+                -76.716376, 
+                38.233231
+              ], 
+              [
+                -76.717537, 
+                38.233329
+              ], 
+              [
+                -76.719602, 
+                38.233503
+              ], 
+              [
+                -76.740055, 
+                38.235227
+              ], 
+              [
+                -76.744265, 
+                38.230716
+              ], 
+              [
+                -76.749384, 
+                38.225231
+              ], 
+              [
+                -76.752017, 
+                38.222409
+              ], 
+              [
+                -76.752085, 
+                38.222336
+              ], 
+              [
+                -76.752286, 
+                38.222121
+              ], 
+              [
+                -76.769988, 
+                38.226388
+              ], 
+              [
+                -76.778625, 
+                38.22847
+              ], 
+              [
+                -76.779865, 
+                38.229026
+              ], 
+              [
+                -76.791932, 
+                38.234441
+              ], 
+              [
+                -76.79659, 
+                38.236531
+              ], 
+              [
+                -76.797452, 
+                38.236918
+              ], 
+              [
+                -76.811647, 
+                38.250129
+              ], 
+              [
+                -76.811815, 
+                38.251318
+              ], 
+              [
+                -76.811927, 
+                38.252115
+              ], 
+              [
+                -76.809009, 
+                38.252193
+              ], 
+              [
+                -76.80888, 
+                38.252197
+              ], 
+              [
+                -76.808411, 
+                38.252209
+              ], 
+              [
+                -76.805949, 
+                38.252275
+              ], 
+              [
+                -76.80577, 
+                38.252615
+              ], 
+              [
+                -76.805224, 
+                38.253648
+              ], 
+              [
+                -76.802947, 
+                38.275094
+              ], 
+              [
+                -76.802347, 
+                38.280743
+              ], 
+              [
+                -76.804922, 
+                38.2833
+              ], 
+              [
+                -76.805037, 
+                38.283414
+              ], 
+              [
+                -76.805363, 
+                38.283738
+              ], 
+              [
+                -76.80547, 
+                38.283844
+              ], 
+              [
+                -76.806596, 
+                38.284962
+              ], 
+              [
+                -76.810596, 
+                38.288934
+              ], 
+              [
+                -76.811182, 
+                38.289516
+              ], 
+              [
+                -76.815098, 
+                38.293404
+              ], 
+              [
+                -76.816323, 
+                38.29462
+              ], 
+              [
+                -76.820799, 
+                38.299064
+              ], 
+              [
+                -76.821569, 
+                38.299829
+              ], 
+              [
+                -76.82167, 
+                38.299869
+              ], 
+              [
+                -76.824834, 
+                38.30113
+              ], 
+              [
+                -76.824889, 
+                38.301152
+              ], 
+              [
+                -76.834046, 
+                38.29968
+              ], 
+              [
+                -76.845846, 
+                38.297783
+              ], 
+              [
+                -76.846118, 
+                38.297739
+              ], 
+              [
+                -76.846252, 
+                38.297718
+              ], 
+              [
+                -76.846221, 
+                38.29196
+              ], 
+              [
+                -76.84622, 
+                38.291768
+              ], 
+              [
+                -76.841703, 
+                38.289768
+              ], 
+              [
+                -76.841241, 
+                38.289564
+              ], 
+              [
+                -76.840383, 
+                38.289184
+              ], 
+              [
+                -76.838539, 
+                38.28417
+              ], 
+              [
+                -76.834908, 
+                38.274299
+              ], 
+              [
+                -76.834803, 
+                38.274012
+              ], 
+              [
+                -76.835136, 
+                38.272628
+              ], 
+              [
+                -76.837697, 
+                38.26199
+              ], 
+              [
+                -76.837789, 
+                38.261609
+              ], 
+              [
+                -76.842038, 
+                38.254657
+              ], 
+              [
+                -76.842139, 
+                38.254491
+              ], 
+              [
+                -76.843422, 
+                38.254925
+              ], 
+              [
+                -76.844221, 
+                38.255195
+              ], 
+              [
+                -76.844885, 
+                38.25542
+              ], 
+              [
+                -76.846036, 
+                38.255809
+              ], 
+              [
+                -76.847074, 
+                38.25616
+              ], 
+              [
+                -76.864292, 
+                38.268945
+              ], 
+              [
+                -76.866302, 
+                38.269673
+              ], 
+              [
+                -76.866416, 
+                38.269715
+              ], 
+              [
+                -76.886535, 
+                38.277004
+              ], 
+              [
+                -76.908506, 
+                38.28843
+              ], 
+              [
+                -76.920778, 
+                38.291529
+              ], 
+              [
+                -76.920932, 
+                38.291568
+              ], 
+              [
+                -76.922161, 
+                38.311086
+              ], 
+              [
+                -76.922177, 
+                38.311339
+              ], 
+              [
+                -76.923629, 
+                38.314932
+              ], 
+              [
+                -76.924668, 
+                38.316011
+              ], 
+              [
+                -76.927019, 
+                38.318454
+              ], 
+              [
+                -76.929554, 
+                38.321088
+              ], 
+              [
+                -76.942132, 
+                38.329601
+              ], 
+              [
+                -76.953928, 
+                38.333282
+              ], 
+              [
+                -76.966349, 
+                38.341372
+              ], 
+              [
+                -76.975092, 
+                38.347067
+              ], 
+              [
+                -76.975492, 
+                38.347327
+              ], 
+              [
+                -76.983582, 
+                38.362999
+              ], 
+              [
+                -76.986464, 
+                38.382618
+              ], 
+              [
+                -76.986699, 
+                38.384213
+              ], 
+              [
+                -76.986996, 
+                38.386237
+              ], 
+              [
+                -76.987838, 
+                38.391965
+              ], 
+              [
+                -76.98828, 
+                38.394975
+              ], 
+              [
+                -76.989271, 
+                38.396352
+              ], 
+              [
+                -76.989306, 
+                38.396401
+              ], 
+              [
+                -76.990305, 
+                38.397788
+              ], 
+              [
+                -76.993839, 
+                38.402699
+              ], 
+              [
+                -76.996663, 
+                38.406623
+              ], 
+              [
+                -76.996724, 
+                38.406708
+              ], 
+              [
+                -76.998585, 
+                38.409294
+              ], 
+              [
+                -76.998843, 
+                38.410362
+              ], 
+              [
+                -77.000997, 
+                38.419293
+              ], 
+              [
+                -77.001541, 
+                38.421548
+              ], 
+              [
+                -77.001638, 
+                38.421952
+              ], 
+              [
+                -77.001902, 
+                38.422376
+              ], 
+              [
+                -77.00257, 
+                38.423447
+              ], 
+              [
+                -77.006495, 
+                38.429738
+              ], 
+              [
+                -77.006767, 
+                38.430176
+              ], 
+              [
+                -77.016371, 
+                38.445572
+              ], 
+              [
+                -77.016674, 
+                38.44556
+              ], 
+              [
+                -77.040638, 
+                38.444618
+              ], 
+              [
+                -77.042046, 
+                38.443983
+              ], 
+              [
+                -77.042879, 
+                38.443607
+              ], 
+              [
+                -77.044188, 
+                38.443016
+              ], 
+              [
+                -77.053187, 
+                38.437753
+              ], 
+              [
+                -77.05329, 
+                38.437693
+              ], 
+              [
+                -77.053445, 
+                38.437602
+              ], 
+              [
+                -77.053663, 
+                38.437475
+              ], 
+              [
+                -77.053979, 
+                38.43729
+              ], 
+              [
+                -77.054972, 
+                38.436709
+              ], 
+              [
+                -77.055162, 
+                38.436598
+              ], 
+              [
+                -77.05532, 
+                38.436505
+              ], 
+              [
+                -77.056892, 
+                38.435586
+              ], 
+              [
+                -77.057277, 
+                38.435361
+              ], 
+              [
+                -77.05746, 
+                38.435254
+              ], 
+              [
+                -77.057684, 
+                38.435123
+              ], 
+              [
+                -77.062607, 
+                38.432244
+              ], 
+              [
+                -77.074174, 
+                38.425479
+              ], 
+              [
+                -77.074339, 
+                38.425382
+              ], 
+              [
+                -77.074703, 
+                38.42517
+              ], 
+              [
+                -77.075489, 
+                38.42471
+              ], 
+              [
+                -77.081252, 
+                38.419449
+              ], 
+              [
+                -77.081418, 
+                38.419297
+              ], 
+              [
+                -77.086393, 
+                38.414755
+              ], 
+              [
+                -77.091073, 
+                38.407546
+              ], 
+              [
+                -77.106571, 
+                38.406237
+              ], 
+              [
+                -77.106968, 
+                38.406531
+              ], 
+              [
+                -77.107631, 
+                38.407022
+              ], 
+              [
+                -77.107881, 
+                38.407207
+              ], 
+              [
+                -77.109055, 
+                38.408076
+              ], 
+              [
+                -77.109171, 
+                38.408162
+              ], 
+              [
+                -77.110586, 
+                38.40921
+              ], 
+              [
+                -77.110623, 
+                38.409214
+              ], 
+              [
+                -77.123325, 
+                38.410646
+              ], 
+              [
+                -77.125933, 
+                38.404845
+              ], 
+              [
+                -77.127392, 
+                38.4016
+              ], 
+              [
+                -77.127737, 
+                38.400833
+              ], 
+              [
+                -77.128377, 
+                38.40019
+              ], 
+              [
+                -77.128649, 
+                38.399917
+              ], 
+              [
+                -77.128823, 
+                38.399742
+              ], 
+              [
+                -77.128872, 
+                38.399692
+              ], 
+              [
+                -77.12909, 
+                38.399474
+              ], 
+              [
+                -77.130287, 
+                38.398271
+              ], 
+              [
+                -77.135224, 
+                38.393311
+              ], 
+              [
+                -77.136434, 
+                38.392094
+              ], 
+              [
+                -77.136728, 
+                38.391799
+              ], 
+              [
+                -77.136947, 
+                38.391684
+              ], 
+              [
+                -77.139968, 
+                38.390102
+              ], 
+              [
+                -77.143152, 
+                38.388435
+              ], 
+              [
+                -77.147541, 
+                38.386136
+              ], 
+              [
+                -77.163531, 
+                38.377761
+              ], 
+              [
+                -77.168697, 
+                38.375055
+              ], 
+              [
+                -77.177, 
+                38.370706
+              ], 
+              [
+                -77.1798, 
+                38.369239
+              ], 
+              [
+                -77.182638, 
+                38.367753
+              ], 
+              [
+                -77.183268, 
+                38.367423
+              ], 
+              [
+                -77.184917, 
+                38.366559
+              ], 
+              [
+                -77.18668, 
+                38.365636
+              ], 
+              [
+                -77.189412, 
+                38.364872
+              ], 
+              [
+                -77.205009, 
+                38.360511
+              ], 
+              [
+                -77.207214, 
+                38.359894
+              ], 
+              [
+                -77.207312, 
+                38.359867
+              ], 
+              [
+                -77.207371, 
+                38.359888
+              ], 
+              [
+                -77.208334, 
+                38.360224
+              ], 
+              [
+                -77.212189, 
+                38.361572
+              ], 
+              [
+                -77.216729, 
+                38.363159
+              ], 
+              [
+                -77.216834, 
+                38.363221
+              ], 
+              [
+                -77.236231, 
+                38.374601
+              ], 
+              [
+                -77.250172, 
+                38.382781
+              ], 
+              [
+                -77.250862, 
+                38.384325
+              ], 
+              [
+                -77.25122, 
+                38.385127
+              ], 
+              [
+                -77.253202, 
+                38.389567
+              ], 
+              [
+                -77.256412, 
+                38.396755
+              ], 
+              [
+                -77.257177, 
+                38.39847
+              ], 
+              [
+                -77.261937, 
+                38.409131
+              ], 
+              [
+                -77.264238, 
+                38.414282
+              ], 
+              [
+                -77.26129, 
+                38.42367
+              ], 
+              [
+                -77.259962, 
+                38.427902
+              ], 
+              [
+                -77.259962, 
+                38.435821
+              ], 
+              [
+                -77.26076, 
+                38.438394
+              ], 
+              [
+                -77.263682, 
+                38.44781
+              ], 
+              [
+                -77.266845, 
+                38.458004
+              ], 
+              [
+                -77.269474, 
+                38.466476
+              ], 
+              [
+                -77.274021, 
+                38.481127
+              ], 
+              [
+                -77.27417, 
+                38.481608
+              ], 
+              [
+                -77.27422, 
+                38.48177
+              ], 
+              [
+                -77.274125, 
+                38.482044
+              ], 
+              [
+                -77.271099, 
+                38.490753
+              ], 
+              [
+                -77.263599, 
+                38.512344
+              ], 
+              [
+                -77.257378, 
+                38.521847
+              ], 
+              [
+                -77.254882, 
+                38.52566
+              ], 
+              [
+                -77.246089, 
+                38.539093
+              ], 
+              [
+                -77.242736, 
+                38.544214
+              ], 
+              [
+                -77.237724, 
+                38.55187
+              ], 
+              [
+                -77.236728, 
+                38.552071
+              ], 
+              [
+                -77.226465, 
+                38.554139
+              ], 
+              [
+                -77.221117, 
+                38.555217
+              ], 
+              [
+                -77.209905, 
+                38.56887
+              ], 
+              [
+                -77.205261, 
+                38.574525
+              ], 
+              [
+                -77.183767, 
+                38.600699
+              ], 
+              [
+                -77.175969, 
+                38.604113
+              ], 
+              [
+                -77.169968, 
+                38.60674
+              ], 
+              [
+                -77.169671, 
+                38.60687
+              ], 
+              [
+                -77.167523, 
+                38.60674
+              ], 
+              [
+                -77.163945, 
+                38.606524
+              ], 
+              [
+                -77.163409, 
+                38.606492
+              ], 
+              [
+                -77.16316, 
+                38.606477
+              ], 
+              [
+                -77.162649, 
+                38.606446
+              ], 
+              [
+                -77.161585, 
+                38.606381
+              ], 
+              [
+                -77.148651, 
+                38.6056
+              ], 
+              [
+                -77.146087, 
+                38.606748
+              ], 
+              [
+                -77.135539, 
+                38.611473
+              ], 
+              [
+                -77.129213, 
+                38.614306
+              ], 
+              [
+                -77.129084, 
+                38.614364
+              ], 
+              [
+                -77.128841, 
+                38.61466
+              ], 
+              [
+                -77.12634, 
+                38.6177
+              ], 
+              [
+                -77.125191, 
+                38.619096
+              ], 
+              [
+                -77.12463, 
+                38.619778
+              ], 
+              [
+                -77.1302, 
+                38.635017
+              ], 
+              [
+                -77.135901, 
+                38.649817
+              ], 
+              [
+                -77.132501, 
+                38.673816
+              ], 
+              [
+                -77.121101, 
+                38.686616
+              ], 
+              [
+                -77.1059, 
+                38.696815
+              ], 
+              [
+                -77.086113, 
+                38.705792
+              ], 
+              [
+                -77.074599, 
+                38.711015
+              ], 
+              [
+                -77.05991, 
+                38.734419
+              ], 
+              [
+                -77.041398, 
+                38.763914
+              ], 
+              [
+                -77.039239, 
+                38.7852
+              ], 
+              [
+                -77.038598, 
+                38.791513
+              ], 
+              [
+                -77.024392, 
+                38.80297
+              ], 
+              [
+                -77.001397, 
+                38.821513
+              ], 
+              [
+                -76.953696, 
+                38.858512
+              ], 
+              [
+                -76.949696, 
+                38.861312
+              ], 
+              [
+                -76.920195, 
+                38.884412
+              ], 
+              [
+                -76.919295, 
+                38.885112
+              ], 
+              [
+                -76.910795, 
+                38.891712
+              ], 
+              [
+                -76.909395, 
+                38.892812
+              ], 
+              [
+                -76.941722, 
+                38.918019
+              ], 
+              [
+                -77.002498, 
+                38.96541
+              ], 
+              [
+                -77.002636, 
+                38.965521
+              ], 
+              [
+                -77.008298, 
+                38.97011
+              ], 
+              [
+                -77.013798, 
+                38.97441
+              ], 
+              [
+                -77.015598, 
+                38.97591
+              ], 
+              [
+                -77.036299, 
+                38.99171
+              ], 
+              [
+                -77.040999, 
+                38.99511
+              ], 
+              [
+                -77.054299, 
+                38.98511
+              ], 
+              [
+                -77.1007, 
+                38.94891
+              ], 
+              [
+                -77.1199, 
+                38.934311
+              ], 
+              [
+                -77.137701, 
+                38.95531
+              ], 
+              [
+                -77.148179, 
+                38.965002
+              ], 
+              [
+                -77.166901, 
+                38.96811
+              ], 
+              [
+                -77.197502, 
+                38.96681
+              ], 
+              [
+                -77.221502, 
+                38.97131
+              ], 
+              [
+                -77.235403, 
+                38.97661
+              ], 
+              [
+                -77.249803, 
+                38.985909
+              ], 
+              [
+                -77.255703, 
+                39.002409
+              ], 
+              [
+                -77.251803, 
+                39.011409
+              ], 
+              [
+                -77.261403, 
+                39.031009
+              ], 
+              [
+                -77.291605, 
+                39.045408
+              ], 
+              [
+                -77.328002, 
+                39.058554
+              ], 
+              [
+                -77.340287, 
+                39.062991
+              ], 
+              [
+                -77.375079, 
+                39.061297
+              ], 
+              [
+                -77.42318, 
+                39.066878
+              ], 
+              [
+                -77.458202, 
+                39.073723
+              ], 
+              [
+                -77.519929, 
+                39.120925
+              ], 
+              [
+                -77.524559, 
+                39.127821
+              ], 
+              [
+                -77.527282, 
+                39.146236
+              ], 
+              [
+                -77.516426, 
+                39.170891
+              ], 
+              [
+                -77.510631, 
+                39.178484
+              ], 
+              [
+                -77.505162, 
+                39.18205
+              ], 
+              [
+                -77.485971, 
+                39.185665
+              ], 
+              [
+                -77.478596, 
+                39.189168
+              ], 
+              [
+                -77.458884, 
+                39.219826
+              ], 
+              [
+                -77.458779, 
+                39.22028
+              ], 
+              [
+                -77.45768, 
+                39.22502
+              ], 
+              [
+                -77.46021, 
+                39.228359
+              ], 
+              [
+                -77.484605, 
+                39.245941
+              ], 
+              [
+                -77.511222, 
+                39.2535
+              ], 
+              [
+                -77.534461, 
+                39.262361
+              ], 
+              [
+                -77.543228, 
+                39.266937
+              ], 
+              [
+                -77.545846, 
+                39.271535
+              ], 
+              [
+                -77.560854, 
+                39.286152
+              ], 
+              [
+                -77.592739, 
+                39.30129
+              ], 
+              [
+                -77.667749, 
+                39.318129
+              ], 
+              [
+                -77.677505, 
+                39.318699
+              ], 
+              [
+                -77.719029, 
+                39.321125
+              ], 
+              [
+                -77.727379, 
+                39.321666
+              ], 
+              [
+                -77.755789, 
+                39.333899
+              ], 
+              [
+                -77.760586, 
+                39.338864
+              ], 
+              [
+                -77.760435, 
+                39.344171
+              ], 
+              [
+                -77.739204, 
+                39.38573
+              ], 
+              [
+                -77.765442, 
+                39.428574
+              ], 
+              [
+                -77.807821, 
+                39.490241
+              ], 
+              [
+                -77.825411, 
+                39.494036
+              ], 
+              [
+                -77.845105, 
+                39.498285
+              ], 
+              [
+                -77.865423, 
+                39.516472
+              ], 
+              [
+                -77.888945, 
+                39.55595
+              ], 
+              [
+                -77.886135, 
+                39.560432
+              ], 
+              [
+                -77.884536, 
+                39.568174
+              ], 
+              [
+                -77.902649, 
+                39.587796
+              ], 
+              [
+                -77.946442, 
+                39.58491
+              ], 
+              [
+                -78.009985, 
+                39.602893
+              ], 
+              [
+                -78.023427, 
+                39.61986
+              ], 
+              [
+                -78.035992, 
+                39.63572
+              ], 
+              [
+                -78.074595, 
+                39.666686
+              ], 
+              [
+                -78.107834, 
+                39.682137
+              ], 
+              [
+                -78.143478, 
+                39.690412
+              ], 
+              [
+                -78.176625, 
+                39.695967
+              ], 
+              [
+                -78.182759, 
+                39.69511
+              ], 
+              [
+                -78.191107, 
+                39.690262
+              ], 
+              [
+                -78.224337, 
+                39.66327
+              ], 
+              [
+                -78.271122, 
+                39.619642
+              ], 
+              [
+                -78.283039, 
+                39.62047
+              ], 
+              [
+                -78.313033, 
+                39.631001
+              ], 
+              [
+                -78.334044, 
+                39.63577
+              ], 
+              [
+                -78.355218, 
+                39.640576
+              ], 
+              [
+                -78.43025, 
+                39.62329
+              ], 
+              [
+                -78.457187, 
+                39.587379
+              ], 
+              [
+                -78.458456, 
+                39.581158
+              ], 
+              [
+                -78.454376, 
+                39.574319
+              ], 
+              [
+                -78.450207, 
+                39.570889
+              ], 
+              [
+                -78.432033, 
+                39.561053
+              ], 
+              [
+                -78.436939, 
+                39.538959
+              ], 
+              [
+                -78.468639, 
+                39.516789
+              ], 
+              [
+                -78.565929, 
+                39.519444
+              ], 
+              [
+                -78.655984, 
+                39.534695
+              ], 
+              [
+                -78.657324, 
+                39.535087
+              ], 
+              [
+                -78.676219, 
+                39.540622
+              ], 
+              [
+                -78.689455, 
+                39.54577
+              ], 
+              [
+                -78.760196, 
+                39.582154
+              ], 
+              [
+                -78.76749, 
+                39.587487
+              ], 
+              [
+                -78.772048, 
+                39.593833
+              ], 
+              [
+                -78.769029, 
+                39.599871
+              ], 
+              [
+                -78.760497, 
+                39.609984
+              ], 
+              [
+                -78.787461, 
+                39.627492
+              ], 
+              [
+                -78.824788, 
+                39.590233
+              ], 
+              [
+                -78.874744, 
+                39.522611
+              ], 
+              [
+                -78.968996, 
+                39.441543
+              ], 
+              [
+                -79.025681, 
+                39.465539
+              ], 
+              [
+                -79.04244, 
+                39.479339
+              ], 
+              [
+                -79.067072, 
+                39.474658
+              ], 
+              [
+                -79.08445, 
+                39.471356
+              ], 
+              [
+                -79.201676, 
+                39.379726
+              ], 
+              [
+                -79.213192, 
+                39.367897
+              ], 
+              [
+                -79.25688, 
+                39.356077
+              ], 
+              [
+                -79.280039, 
+                39.340076
+              ], 
+              [
+                -79.378687, 
+                39.27192
+              ], 
+              [
+                -79.402911, 
+                39.250106
+              ], 
+              [
+                -79.486873, 
+                39.205961
+              ], 
+              [
+                -79.485874, 
+                39.264905
+              ], 
+              [
+                -79.486179, 
+                39.26497
+              ], 
+              [
+                -79.486737, 
+                39.278149
+              ], 
+              [
+                -79.487651, 
+                39.279933
+              ], 
+              [
+                -79.482648, 
+                39.521364
+              ], 
+              [
+                -79.482354, 
+                39.524682
+              ], 
+              [
+                -79.478866, 
+                39.531689
+              ], 
+              [
+                -79.476662, 
+                39.721078
+              ], 
+              [
+                -79.392458, 
+                39.72134
+              ], 
+              [
+                -78.931176, 
+                39.722775
+              ], 
+              [
+                -78.931175, 
+                39.722775
+              ], 
+              [
+                -78.808387, 
+                39.722726
+              ], 
+              [
+                -78.380599, 
+                39.722554
+              ], 
+              [
+                -78.342834, 
+                39.722539
+              ], 
+              [
+                -78.34252, 
+                39.722539
+              ], 
+              [
+                -78.340498, 
+                39.722514
+              ], 
+              [
+                -78.339539, 
+                39.722552
+              ], 
+              [
+                -78.337111, 
+                39.722461
+              ], 
+              [
+                -78.330715, 
+                39.722689
+              ], 
+              [
+                -78.26902, 
+                39.722613
+              ], 
+              [
+                -78.268948, 
+                39.72259
+              ], 
+              [
+                -78.243103, 
+                39.722481
+              ], 
+              [
+                -78.240334, 
+                39.722498
+              ], 
+              [
+                -78.20445, 
+                39.72252
+              ], 
+              [
+                -78.202895, 
+                39.722416
+              ], 
+              [
+                -78.09914, 
+                39.722322
+              ], 
+              [
+                -78.075771, 
+                39.722301
+              ], 
+              [
+                -78.073736, 
+                39.722314
+              ], 
+              [
+                -77.768534, 
+                39.721358
+              ], 
+              [
+                -77.743204, 
+                39.721205
+              ], 
+              [
+                -77.732615, 
+                39.721094
+              ], 
+              [
+                -77.724115, 
+                39.720894
+              ], 
+              [
+                -77.674522, 
+                39.720847
+              ], 
+              [
+                -77.672249, 
+                39.720778
+              ], 
+              [
+                -77.534758, 
+                39.720134
+              ], 
+              [
+                -77.533371, 
+                39.720165
+              ], 
+              [
+                -77.469145, 
+                39.720018
+              ], 
+              [
+                -77.459427, 
+                39.720017
+              ], 
+              [
+                -77.243307, 
+                39.719998
+              ], 
+              [
+                -77.239807, 
+                39.719998
+              ], 
+              [
+                -77.217024, 
+                39.719998
+              ], 
+              [
+                -77.216806, 
+                39.719998
+              ], 
+              [
+                -77.058904, 
+                39.7201
+              ], 
+              [
+                -77.058204, 
+                39.7202
+              ], 
+              [
+                -77.047104, 
+                39.72
+              ], 
+              [
+                -76.999465, 
+                39.720128
+              ], 
+              [
+                -76.897566, 
+                39.720401
+              ], 
+              [
+                -76.8901, 
+                39.720401
+              ], 
+              [
+                -76.809197, 
+                39.720702
+              ], 
+              [
+                -76.806397, 
+                39.720602
+              ], 
+              [
+                -76.787097, 
+                39.720802
+              ], 
+              [
+                -76.787096, 
+                39.720802
+              ], 
+              [
+                -76.715594, 
+                39.721103
+              ], 
+              [
+                -76.711894, 
+                39.721103
+              ], 
+              [
+                -76.569475, 
+                39.721203
+              ], 
+              [
+                -76.569389, 
+                39.721203
+              ], 
+              [
+                -76.517087, 
+                39.721304
+              ], 
+              [
+                -76.491887, 
+                39.721304
+              ], 
+              [
+                -76.418784, 
+                39.721204
+              ], 
+              [
+                -76.418684, 
+                39.721304
+              ], 
+              [
+                -76.395583, 
+                39.721204
+              ], 
+              [
+                -76.380583, 
+                39.721304
+              ], 
+              [
+                -76.380083, 
+                39.721304
+              ], 
+              [
+                -76.239805, 
+                39.721305
+              ], 
+              [
+                -76.233277, 
+                39.721305
+              ], 
+              [
+                -76.233259, 
+                39.721305
+              ], 
+              [
+                -76.224191, 
+                39.721328
+              ], 
+              [
+                -76.135584, 
+                39.721556
+              ], 
+              [
+                -76.027618, 
+                39.721833
+              ], 
+              [
+                -76.013067, 
+                39.72192
+              ], 
+              [
+                -75.810068, 
+                39.721906
+              ], 
+              [
+                -75.799563, 
+                39.721882
+              ], 
+              [
+                -75.788359, 
+                39.721811
+              ], 
+              [
+                -75.788395, 
+                39.700287
+              ], 
+              [
+                -75.788395, 
+                39.700031
+              ], 
+              [
+                -75.788658, 
+                39.681911
+              ], 
+              [
+                -75.788616, 
+                39.680742
+              ], 
+              [
+                -75.78745, 
+                39.637455
+              ], 
+              [
+                -75.78689, 
+                39.630575
+              ], 
+              [
+                -75.779383, 
+                39.536522
+              ], 
+              [
+                -75.77924, 
+                39.534737
+              ], 
+              [
+                -75.766693, 
+                39.377537
+              ], 
+              [
+                -75.766667, 
+                39.377216
+              ], 
+              [
+                -75.760104, 
+                39.296817
+              ], 
+              [
+                -75.755962, 
+                39.246069
+              ], 
+              [
+                -75.755953, 
+                39.245958
+              ], 
+              [
+                -75.747671, 
+                39.143345
+              ], 
+              [
+                -75.747668, 
+                39.143306
+              ], 
+              [
+                -75.746121, 
+                39.120318
+              ], 
+              [
+                -75.745793, 
+                39.114935
+              ], 
+              [
+                -75.725829, 
+                38.869296
+              ], 
+              [
+                -75.725565, 
+                38.868152
+              ], 
+              [
+                -75.724061, 
+                38.847781
+              ], 
+              [
+                -75.724002, 
+                38.846682
+              ], 
+              [
+                -75.722882, 
+                38.833156
+              ], 
+              [
+                -75.72261, 
+                38.830008
+              ], 
+              [
+                -75.722599, 
+                38.829859
+              ], 
+              [
+                -75.722028, 
+                38.822078
+              ], 
+              [
+                -75.707352, 
+                38.635359
+              ], 
+              [
+                -75.707346, 
+                38.63528
+              ], 
+              [
+                -75.706585, 
+                38.626125
+              ], 
+              [
+                -75.706235, 
+                38.621296
+              ], 
+              [
+                -75.70586, 
+                38.616268
+              ], 
+              [
+                -75.705774, 
+                38.61474
+              ], 
+              [
+                -75.703981, 
+                38.592066
+              ], 
+              [
+                -75.703445, 
+                38.58512
+              ], 
+              [
+                -75.701565, 
+                38.560736
+              ], 
+              [
+                -75.701465, 
+                38.559433
+              ], 
+              [
+                -75.700179, 
+                38.542717
+              ], 
+              [
+                -75.698777, 
+                38.522001
+              ], 
+              [
+                -75.696688, 
+                38.496467
+              ], 
+              [
+                -75.696369, 
+                38.492373
+              ], 
+              [
+                -75.693521, 
+                38.460128
+              ], 
+              [
+                -75.665585, 
+                38.4589
+              ], 
+              [
+                -75.662843, 
+                38.458759
+              ], 
+              [
+                -75.630457, 
+                38.457904
+              ], 
+              [
+                -75.598069, 
+                38.456855
+              ], 
+              [
+                -75.593082, 
+                38.456404
+              ], 
+              [
+                -75.589307, 
+                38.456286
+              ], 
+              [
+                -75.583601, 
+                38.456424
+              ], 
+              [
+                -75.57411, 
+                38.455991
+              ], 
+              [
+                -75.559934, 
+                38.455579
+              ], 
+              [
+                -75.559212, 
+                38.455563
+              ], 
+              [
+                -75.533763, 
+                38.454958
+              ], 
+              [
+                -75.52273, 
+                38.454657
+              ], 
+              [
+                -75.521304, 
+                38.454657
+              ], 
+              [
+                -75.502961, 
+                38.45422
+              ], 
+              [
+                -75.500142, 
+                38.454144
+              ], 
+              [
+                -75.47915, 
+                38.453699
+              ], 
+              [
+                -75.428728, 
+                38.452671
+              ], 
+              [
+                -75.424831, 
+                38.45261
+              ], 
+              [
+                -75.410884, 
+                38.4524
+              ], 
+              [
+                -75.394786, 
+                38.45216
+              ], 
+              [
+                -75.393563, 
+                38.452114
+              ], 
+              [
+                -75.371054, 
+                38.452107
+              ], 
+              [
+                -75.355797, 
+                38.452008
+              ], 
+              [
+                -75.34125, 
+                38.45197
+              ], 
+              [
+                -75.341247, 
+                38.45197
+              ], 
+              [
+                -75.26035, 
+                38.451492
+              ], 
+              [
+                -75.252723, 
+                38.451397
+              ], 
+              [
+                -75.185413, 
+                38.451013
+              ], 
+              [
+                -75.141894, 
+                38.451196
+              ], 
+              [
+                -75.089649, 
+                38.451254
+              ], 
+              [
+                -75.088281, 
+                38.451256
+              ], 
+              [
+                -75.085814, 
+                38.451258
+              ], 
+              [
+                -75.070356, 
+                38.451276
+              ], 
+              [
+                -75.069909, 
+                38.451276
+              ], 
+              [
+                -75.066327, 
+                38.451291
+              ], 
+              [
+                -75.053483, 
+                38.451274
+              ], 
+              [
+                -75.05251, 
+                38.451273
+              ], 
+              [
+                -75.049268, 
+                38.451264
+              ], 
+              [
+                -75.048939, 
+                38.451263
+              ], 
+              [
+                -75.049365, 
+                38.448518
+              ], 
+              [
+                -75.049442, 
+                38.448023
+              ], 
+              [
+                -75.049582, 
+                38.447117
+              ], 
+              [
+                -75.051997, 
+                38.431549
+              ], 
+              [
+                -75.052008, 
+                38.431479
+              ], 
+              [
+                -75.052167, 
+                38.430457
+              ], 
+              [
+                -75.052206, 
+                38.430206
+              ], 
+              [
+                -75.052226, 
+                38.430077
+              ], 
+              [
+                -75.052368, 
+                38.429159
+              ], 
+              [
+                -75.052426, 
+                38.428784
+              ], 
+              [
+                -75.052467, 
+                38.428521
+              ], 
+              [
+                -75.052471, 
+                38.428493
+              ], 
+              [
+                -75.052505, 
+                38.428275
+              ], 
+              [
+                -75.052746, 
+                38.42672
+              ], 
+              [
+                -75.052804, 
+                38.426349
+              ], 
+              [
+                -75.05282, 
+                38.426243
+              ], 
+              [
+                -75.0531, 
+                38.424441
+              ], 
+              [
+                -75.053137, 
+                38.424201
+              ], 
+              [
+                -75.053277, 
+                38.423297
+              ], 
+              [
+                -75.053309, 
+                38.423095
+              ], 
+              [
+                -75.054591, 
+                38.41483
+              ], 
+              [
+                -75.055838, 
+                38.410164
+              ], 
+              [
+                -75.056, 
+                38.40956
+              ], 
+              [
+                -75.056182, 
+                38.408876
+              ], 
+              [
+                -75.057288, 
+                38.404738
+              ], 
+              [
+                -75.06137, 
+                38.389466
+              ], 
+              [
+                -75.068111, 
+                38.368716
+              ], 
+              [
+                -75.068162, 
+                38.368559
+              ], 
+              [
+                -75.068404, 
+                38.367812
+              ], 
+              [
+                -75.068548, 
+                38.36737
+              ], 
+              [
+                -75.068559, 
+                38.367335
+              ], 
+              [
+                -75.069817, 
+                38.363463
+              ], 
+              [
+                -75.069845, 
+                38.363376
+              ], 
+              [
+                -75.071329, 
+                38.358809
+              ], 
+              [
+                -75.071632, 
+                38.357876
+              ], 
+              [
+                -75.071687, 
+                38.357707
+              ], 
+              [
+                -75.071694, 
+                38.357686
+              ], 
+              [
+                -75.072111, 
+                38.356402
+              ], 
+              [
+                -75.072476, 
+                38.355278
+              ], 
+              [
+                -75.073852, 
+                38.352006
+              ], 
+              [
+                -75.074532, 
+                38.35039
+              ], 
+              [
+                -75.084149, 
+                38.327526
+              ], 
+              [
+                -75.085171, 
+                38.325096
+              ], 
+              [
+                -75.085327, 
+                38.324724
+              ], 
+              [
+                -75.085468, 
+                38.324389
+              ], 
+              [
+                -75.085518, 
+                38.32427
+              ], 
+              [
+                -75.087466, 
+                38.322769
+              ], 
+              [
+                -75.092142, 
+                38.323252
+              ], 
+              [
+                -75.093888, 
+                38.323432
+              ], 
+              [
+                -75.102947, 
+                38.311525
+              ], 
+              [
+                -75.103757, 
+                38.309349
+              ], 
+              [
+                -75.116837, 
+                38.274229
+              ], 
+              [
+                -75.143229, 
+                38.220475
+              ], 
+              [
+                -75.155351, 
+                38.192572
+              ], 
+              [
+                -75.15897, 
+                38.184242
+              ], 
+              [
+                -75.16164, 
+                38.176383
+              ], 
+              [
+                -75.177394, 
+                38.130014
+              ], 
+              [
+                -75.178945, 
+                38.126798
+              ], 
+              [
+                -75.192925, 
+                38.097819
+              ], 
+              [
+                -75.193796, 
+                38.096013
+              ], 
+              [
+                -75.195382, 
+                38.093582
+              ], 
+              [
+                -75.204684, 
+                38.079317
+              ], 
+              [
+                -75.204911, 
+                38.07897
+              ], 
+              [
+                -75.206515, 
+                38.07651
+              ], 
+              [
+                -75.216117, 
+                38.061786
+              ], 
+              [
+                -75.22434, 
+                38.050912
+              ], 
+              [
+                -75.227592, 
+                38.046612
+              ], 
+              [
+                -75.23586, 
+                38.035679
+              ], 
+              [
+                -75.236065, 
+                38.035409
+              ], 
+              [
+                -75.237538, 
+                38.033461
+              ], 
+              [
+                -75.241817, 
+                38.027802
+              ], 
+              [
+                -75.242266, 
+                38.027209
+              ], 
+              [
+                -75.242296, 
+                38.027206
+              ], 
+              [
+                -75.250358, 
+                38.026489
+              ], 
+              [
+                -75.256076, 
+                38.02598
+              ], 
+              [
+                -75.260635, 
+                38.025574
+              ], 
+              [
+                -75.262088, 
+                38.025445
+              ], 
+              [
+                -75.263779, 
+                38.025295
+              ], 
+              [
+                -75.377851, 
+                38.015145
+              ], 
+              [
+                -75.398839, 
+                38.013277
+              ], 
+              [
+                -75.42881, 
+                38.010854
+              ], 
+              [
+                -75.435956, 
+                38.010282
+              ], 
+              [
+                -75.624341, 
+                37.994211
+              ], 
+              [
+                -75.626129, 
+                37.9925
+              ], 
+              [
+                -75.630222, 
+                37.988584
+              ], 
+              [
+                -75.635502, 
+                37.983531
+              ], 
+              [
+                -75.639786, 
+                37.979432
+              ], 
+              [
+                -75.644545, 
+                37.974877
+              ], 
+              [
+                -75.644591, 
+                37.974833
+              ], 
+              [
+                -75.644665, 
+                37.974763
+              ], 
+              [
+                -75.645096, 
+                37.97435
+              ], 
+              [
+                -75.645251, 
+                37.974202
+              ], 
+              [
+                -75.646289, 
+                37.973209
+              ], 
+              [
+                -75.646507, 
+                37.973
+              ], 
+              [
+                -75.660956, 
+                37.959174
+              ], 
+              [
+                -75.669711, 
+                37.950796
+              ], 
+              [
+                -75.665057, 
+                37.956282
+              ], 
+              [
+                -75.663095, 
+                37.961195
+              ], 
+              [
+                -75.66502, 
+                37.962401
+              ], 
+              [
+                -75.669374, 
+                37.96513
+              ], 
+              [
+                -75.671681, 
+                37.966576
+              ], 
+              [
+                -75.685995, 
+                37.967607
+              ], 
+              [
+                -75.686525, 
+                37.967783
+              ], 
+              [
+                -75.708179, 
+                37.974972
+              ], 
+              [
+                -75.71315, 
+                37.976623
+              ], 
+              [
+                -75.722085, 
+                37.973416
+              ], 
+              [
+                -75.722662, 
+                37.97131
+              ], 
+              [
+                -75.724692, 
+                37.969754
+              ], 
+              [
+                -75.72533, 
+                37.969266
+              ], 
+              [
+                -75.727952, 
+                37.967256
+              ], 
+              [
+                -75.735125, 
+                37.964592
+              ], 
+              [
+                -75.737514, 
+                37.963705
+              ], 
+              [
+                -75.737997, 
+                37.963526
+              ], 
+              [
+                -75.750244, 
+                37.968873
+              ], 
+              [
+                -75.759091, 
+                37.970663
+              ], 
+              [
+                -75.776773, 
+                37.972044
+              ], 
+              [
+                -75.778975, 
+                37.972216
+              ], 
+              [
+                -75.783444, 
+                37.972565
+              ], 
+              [
+                -75.783815, 
+                37.972594
+              ], 
+              [
+                -75.785007, 
+                37.971714
+              ], 
+              [
+                -75.785209, 
+                37.971564
+              ], 
+              [
+                -75.785273, 
+                37.971517
+              ], 
+              [
+                -75.785487, 
+                37.971359
+              ], 
+              [
+                -75.788351, 
+                37.969244
+              ], 
+              [
+                -75.789943, 
+                37.968068
+              ], 
+              [
+                -75.806147, 
+                37.9561
+              ], 
+              [
+                -75.80693, 
+                37.955522
+              ], 
+              [
+                -75.807755, 
+                37.954912
+              ], 
+              [
+                -75.819088, 
+                37.946542
+              ], 
+              [
+                -75.820774, 
+                37.945297
+              ], 
+              [
+                -75.822901, 
+                37.943726
+              ], 
+              [
+                -75.824242, 
+                37.942736
+              ], 
+              [
+                -75.824448, 
+                37.942584
+              ], 
+              [
+                -75.829901, 
+                37.938556
+              ], 
+              [
+                -75.830154, 
+                37.938028
+              ], 
+              [
+                -75.831707, 
+                37.934789
+              ], 
+              [
+                -75.831836, 
+                37.934519
+              ], 
+              [
+                -75.832414, 
+                37.933313
+              ], 
+              [
+                -75.832793, 
+                37.933112
+              ], 
+              [
+                -75.843768, 
+                37.927297
+              ], 
+              [
+                -75.845992, 
+                37.926118
+              ], 
+              [
+                -75.846621, 
+                37.925785
+              ], 
+              [
+                -75.847207, 
+                37.925474
+              ], 
+              [
+                -75.847473, 
+                37.925333
+              ], 
+              [
+                -75.847817, 
+                37.925151
+              ], 
+              [
+                -75.847933, 
+                37.925089
+              ], 
+              [
+                -75.848133, 
+                37.924983
+              ], 
+              [
+                -75.849103, 
+                37.92447
+              ], 
+              [
+                -75.860727, 
+                37.91831
+              ], 
+              [
+                -75.881913, 
+                37.912563
+              ], 
+              [
+                -75.883708, 
+                37.912076
+              ], 
+              [
+                -75.885032, 
+                37.911717
+              ], 
+              [
+                -75.892686, 
+                37.916848
+              ], 
+              [
+                -75.895791, 
+                37.921406
+              ], 
+              [
+                -75.89594, 
+                37.921625
+              ], 
+              [
+                -75.898316, 
+                37.925114
+              ], 
+              [
+                -75.894065, 
+                37.93079
+              ], 
+              [
+                -75.893655, 
+                37.933879
+              ], 
+              [
+                -75.89281, 
+                37.940239
+              ], 
+              [
+                -75.890871, 
+                37.954847
+              ], 
+              [
+                -75.898956, 
+                37.974514
+              ], 
+              [
+                -75.882768, 
+                38.002995
+              ], 
+              [
+                -75.875297, 
+                38.011965
+              ], 
+              [
+                -75.875399, 
+                38.028241
+              ], 
+              [
+                -75.87319, 
+                38.034375
+              ], 
+              [
+                -75.869513, 
+                38.035407
+              ], 
+              [
+                -75.865912, 
+                38.036418
+              ], 
+              [
+                -75.864648, 
+                38.036773
+              ], 
+              [
+                -75.858891, 
+                38.03839
+              ], 
+              [
+                -75.857507, 
+                38.038778
+              ], 
+              [
+                -75.856854, 
+                38.038583
+              ], 
+              [
+                -75.855468, 
+                38.03817
+              ], 
+              [
+                -75.854711, 
+                38.037944
+              ], 
+              [
+                -75.852655, 
+                38.037331
+              ], 
+              [
+                -75.850531, 
+                38.036697
+              ], 
+              [
+                -75.850343, 
+                38.035877
+              ], 
+              [
+                -75.84998, 
+                38.034294
+              ], 
+              [
+                -75.847922, 
+                38.03437
+              ], 
+              [
+                -75.847716, 
+                38.034468
+              ], 
+              [
+                -75.836018, 
+                38.040007
+              ], 
+              [
+                -75.834643, 
+                38.040657
+              ], 
+              [
+                -75.833657, 
+                38.041125
+              ], 
+              [
+                -75.833418, 
+                38.041238
+              ], 
+              [
+                -75.830023, 
+                38.042845
+              ], 
+              [
+                -75.829375, 
+                38.043152
+              ], 
+              [
+                -75.829276, 
+                38.043247
+              ], 
+              [
+                -75.826492, 
+                38.045915
+              ], 
+              [
+                -75.825987, 
+                38.0464
+              ], 
+              [
+                -75.812913, 
+                38.058932
+              ], 
+              [
+                -75.813378, 
+                38.059481
+              ], 
+              [
+                -75.813468, 
+                38.059587
+              ], 
+              [
+                -75.819415, 
+                38.066606
+              ], 
+              [
+                -75.819479, 
+                38.066682
+              ], 
+              [
+                -75.819591, 
+                38.066814
+              ], 
+              [
+                -75.830017, 
+                38.06912
+              ], 
+              [
+                -75.831103, 
+                38.069361
+              ], 
+              [
+                -75.832742, 
+                38.069723
+              ], 
+              [
+                -75.839935, 
+                38.071314
+              ], 
+              [
+                -75.841057, 
+                38.071562
+              ], 
+              [
+                -75.841206, 
+                38.071595
+              ], 
+              [
+                -75.844265, 
+                38.072272
+              ], 
+              [
+                -75.84718, 
+                38.071289
+              ], 
+              [
+                -75.852305, 
+                38.069561
+              ], 
+              [
+                -75.858944, 
+                38.067323
+              ], 
+              [
+                -75.859026, 
+                38.067208
+              ], 
+              [
+                -75.859568, 
+                38.066448
+              ], 
+              [
+                -75.860072, 
+                38.065743
+              ], 
+              [
+                -75.859717, 
+                38.064073
+              ], 
+              [
+                -75.85944, 
+                38.062769
+              ], 
+              [
+                -75.859281, 
+                38.062018
+              ], 
+              [
+                -75.859005, 
+                38.060717
+              ], 
+              [
+                -75.858881, 
+                38.060135
+              ], 
+              [
+                -75.860629, 
+                38.05996
+              ], 
+              [
+                -75.860946, 
+                38.059928
+              ], 
+              [
+                -75.861033, 
+                38.059919
+              ], 
+              [
+                -75.86153, 
+                38.05987
+              ], 
+              [
+                -75.866194, 
+                38.059402
+              ], 
+              [
+                -75.867267, 
+                38.059295
+              ], 
+              [
+                -75.867511, 
+                38.05927
+              ], 
+              [
+                -75.868899, 
+                38.059131
+              ], 
+              [
+                -75.871503, 
+                38.05887
+              ], 
+              [
+                -75.874189, 
+                38.060288
+              ], 
+              [
+                -75.880515, 
+                38.075011
+              ], 
+              [
+                -75.871394, 
+                38.089183
+              ], 
+              [
+                -75.870282, 
+                38.090911
+              ], 
+              [
+                -75.865697, 
+                38.098036
+              ], 
+              [
+                -75.865146, 
+                38.098893
+              ], 
+              [
+                -75.86381, 
+                38.100968
+              ], 
+              [
+                -75.842604, 
+                38.113111
+              ], 
+              [
+                -75.837563, 
+                38.113753
+              ], 
+              [
+                -75.837204, 
+                38.114468
+              ], 
+              [
+                -75.837165, 
+                38.114546
+              ], 
+              [
+                -75.837048, 
+                38.114777
+              ], 
+              [
+                -75.827993, 
+                38.132803
+              ], 
+              [
+                -75.827892, 
+                38.133004
+              ], 
+              [
+                -75.827674, 
+                38.133438
+              ], 
+              [
+                -75.827712, 
+                38.133464
+              ], 
+              [
+                -75.843862, 
+                38.144599
+              ], 
+              [
+                -75.849919, 
+                38.144414
+              ], 
+              [
+                -75.854507, 
+                38.142567
+              ], 
+              [
+                -75.858667, 
+                38.140893
+              ], 
+              [
+                -75.85954, 
+                38.140542
+              ], 
+              [
+                -75.866, 
+                38.134886
+              ], 
+              [
+                -75.868636, 
+                38.134381
+              ], 
+              [
+                -75.870056, 
+                38.134684
+              ], 
+              [
+                -75.871037, 
+                38.134893
+              ], 
+              [
+                -75.880707, 
+                38.136957
+              ], 
+              [
+                -75.880978, 
+                38.137015
+              ], 
+              [
+                -75.900355, 
+                38.14115
+              ], 
+              [
+                -75.901058, 
+                38.140826
+              ], 
+              [
+                -75.902004, 
+                38.14039
+              ], 
+              [
+                -75.903442, 
+                38.139726
+              ], 
+              [
+                -75.905599, 
+                38.138732
+              ], 
+              [
+                -75.906497, 
+                38.138317
+              ], 
+              [
+                -75.907264, 
+                38.137964
+              ], 
+              [
+                -75.923797, 
+                38.130339
+              ], 
+              [
+                -75.932738, 
+                38.126216
+              ], 
+              [
+                -75.936773, 
+                38.124355
+              ], 
+              [
+                -75.937089, 
+                38.124209
+              ], 
+              [
+                -75.937055, 
+                38.123077
+              ], 
+              [
+                -75.937015, 
+                38.121749
+              ], 
+              [
+                -75.936866, 
+                38.116745
+              ], 
+              [
+                -75.936663, 
+                38.109956
+              ], 
+              [
+                -75.938484, 
+                38.109976
+              ], 
+              [
+                -75.945297, 
+                38.113091
+              ], 
+              [
+                -75.949557, 
+                38.118127
+              ], 
+              [
+                -75.956428, 
+                38.131115
+              ], 
+              [
+                -75.956434, 
+                38.131126
+              ], 
+              [
+                -75.958786, 
+                38.135572
+              ], 
+              [
+                -75.959496, 
+                38.136915
+              ], 
+              [
+                -75.959616, 
+                38.137141
+              ], 
+              [
+                -75.952411, 
+                38.158513
+              ], 
+              [
+                -75.951425, 
+                38.161436
+              ], 
+              [
+                -75.951273, 
+                38.161887
+              ], 
+              [
+                -75.949752, 
+                38.164486
+              ], 
+              [
+                -75.947534, 
+                38.168274
+              ], 
+              [
+                -75.947487, 
+                38.168736
+              ], 
+              [
+                -75.947417, 
+                38.169439
+              ], 
+              [
+                -75.94728, 
+                38.170792
+              ], 
+              [
+                -75.948129, 
+                38.171778
+              ], 
+              [
+                -75.94822, 
+                38.171884
+              ], 
+              [
+                -75.948566, 
+                38.172285
+              ], 
+              [
+                -75.948709, 
+                38.172451
+              ], 
+              [
+                -75.951812, 
+                38.176053
+              ], 
+              [
+                -75.951972, 
+                38.176239
+              ], 
+              [
+                -75.95185, 
+                38.176794
+              ], 
+              [
+                -75.951583, 
+                38.178014
+              ], 
+              [
+                -75.951566, 
+                38.178093
+              ], 
+              [
+                -75.949575, 
+                38.180037
+              ], 
+              [
+                -75.94942, 
+                38.180188
+              ], 
+              [
+                -75.948891, 
+                38.180704
+              ], 
+              [
+                -75.948738, 
+                38.180854
+              ], 
+              [
+                -75.946586, 
+                38.182955
+              ], 
+              [
+                -75.945419, 
+                38.184094
+              ], 
+              [
+                -75.942375, 
+                38.187066
+              ], 
+              [
+                -75.941448, 
+                38.187352
+              ], 
+              [
+                -75.933932, 
+                38.18967
+              ], 
+              [
+                -75.888073, 
+                38.203813
+              ], 
+              [
+                -75.886217, 
+                38.203309
+              ], 
+              [
+                -75.88494, 
+                38.200493
+              ], 
+              [
+                -75.884603, 
+                38.199751
+              ], 
+              [
+                -75.884544, 
+                38.199739
+              ], 
+              [
+                -75.878293, 
+                38.198407
+              ], 
+              [
+                -75.877751, 
+                38.198292
+              ], 
+              [
+                -75.87725, 
+                38.198386
+              ], 
+              [
+                -75.870975, 
+                38.199566
+              ], 
+              [
+                -75.86847, 
+                38.200037
+              ], 
+              [
+                -75.864104, 
+                38.200858
+              ], 
+              [
+                -75.862444, 
+                38.201759
+              ], 
+              [
+                -75.85696, 
+                38.204734
+              ], 
+              [
+                -75.854406, 
+                38.20612
+              ], 
+              [
+                -75.852258, 
+                38.207286
+              ], 
+              [
+                -75.848473, 
+                38.20934
+              ], 
+              [
+                -75.847299, 
+                38.209977
+              ], 
+              [
+                -75.847032, 
+                38.210122
+              ], 
+              [
+                -75.846713, 
+                38.210295
+              ], 
+              [
+                -75.846377, 
+                38.210477
+              ], 
+              [
+                -75.851396, 
+                38.226432
+              ], 
+              [
+                -75.851528, 
+                38.22655
+              ], 
+              [
+                -75.85916, 
+                38.233407
+              ], 
+              [
+                -75.864628, 
+                38.23832
+              ], 
+              [
+                -75.87031, 
+                38.243425
+              ], 
+              [
+                -75.870318, 
+                38.243432
+              ], 
+              [
+                -75.872464, 
+                38.243968
+              ], 
+              [
+                -75.874653, 
+                38.244514
+              ], 
+              [
+                -75.882873, 
+                38.244449
+              ], 
+              [
+                -75.883435, 
+                38.244445
+              ], 
+              [
+                -75.8852, 
+                38.243395
+              ], 
+              [
+                -75.886841, 
+                38.242418
+              ], 
+              [
+                -75.887409, 
+                38.24208
+              ], 
+              [
+                -75.888513, 
+                38.241423
+              ], 
+              [
+                -75.889356, 
+                38.2395
+              ], 
+              [
+                -75.885676, 
+                38.231006
+              ], 
+              [
+                -75.885909, 
+                38.230866
+              ], 
+              [
+                -75.890669, 
+                38.228009
+              ], 
+              [
+                -75.894583, 
+                38.228439
+              ], 
+              [
+                -75.895689, 
+                38.228561
+              ], 
+              [
+                -75.895879, 
+                38.228717
+              ], 
+              [
+                -75.899781, 
+                38.231921
+              ], 
+              [
+                -75.90004, 
+                38.232133
+              ], 
+              [
+                -75.900661, 
+                38.233206
+              ], 
+              [
+                -75.901381, 
+                38.234448
+              ], 
+              [
+                -75.905852, 
+                38.242165
+              ], 
+              [
+                -75.906016, 
+                38.242447
+              ], 
+              [
+                -75.90845, 
+                38.246648
+              ], 
+              [
+                -75.908272, 
+                38.252045
+              ], 
+              [
+                -75.911143, 
+                38.257951
+              ], 
+              [
+                -75.917297, 
+                38.263126
+              ], 
+              [
+                -75.919446, 
+                38.264056
+              ], 
+              [
+                -75.920279, 
+                38.264415
+              ], 
+              [
+                -75.925492, 
+                38.26667
+              ], 
+              [
+                -75.938577, 
+                38.272329
+              ], 
+              [
+                -75.940302, 
+                38.271611
+              ], 
+              [
+                -75.942462, 
+                38.270711
+              ], 
+              [
+                -75.942703, 
+                38.270611
+              ], 
+              [
+                -75.948346, 
+                38.268261
+              ], 
+              [
+                -75.95136, 
+                38.267006
+              ], 
+              [
+                -75.951497, 
+                38.266949
+              ], 
+              [
+                -75.951512, 
+                38.266936
+              ], 
+              [
+                -75.951563, 
+                38.266892
+              ], 
+              [
+                -75.951647, 
+                38.266819
+              ], 
+              [
+                -75.954483, 
+                38.264366
+              ], 
+              [
+                -75.954568, 
+                38.264293
+              ], 
+              [
+                -75.954701, 
+                38.264177
+              ], 
+              [
+                -75.954737, 
+                38.264146
+              ], 
+              [
+                -75.954824, 
+                38.264071
+              ], 
+              [
+                -75.954908, 
+                38.263998
+              ], 
+              [
+                -75.954908, 
+                38.263997
+              ], 
+              [
+                -75.95481, 
+                38.261016
+              ], 
+              [
+                -75.954582, 
+                38.254108
+              ], 
+              [
+                -75.954561, 
+                38.253476
+              ], 
+              [
+                -75.954542, 
+                38.252894
+              ], 
+              [
+                -75.950056, 
+                38.249699
+              ], 
+              [
+                -75.949458, 
+                38.249273
+              ], 
+              [
+                -75.948796, 
+                38.248802
+              ], 
+              [
+                -75.947876, 
+                38.248875
+              ], 
+              [
+                -75.945678, 
+                38.249051
+              ], 
+              [
+                -75.9445, 
+                38.249145
+              ], 
+              [
+                -75.943032, 
+                38.248279
+              ], 
+              [
+                -75.942465, 
+                38.247945
+              ], 
+              [
+                -75.942263, 
+                38.247826
+              ], 
+              [
+                -75.940697, 
+                38.246902
+              ], 
+              [
+                -75.94119, 
+                38.246211
+              ], 
+              [
+                -75.942804, 
+                38.243949
+              ], 
+              [
+                -75.946414, 
+                38.23889
+              ], 
+              [
+                -75.948197, 
+                38.238504
+              ], 
+              [
+                -75.951156, 
+                38.237862
+              ], 
+              [
+                -75.955164, 
+                38.236994
+              ], 
+              [
+                -75.955833, 
+                38.236849
+              ], 
+              [
+                -75.958338, 
+                38.236306
+              ], 
+              [
+                -75.958794, 
+                38.236208
+              ], 
+              [
+                -75.961972, 
+                38.235519
+              ], 
+              [
+                -75.962111, 
+                38.235489
+              ], 
+              [
+                -75.962729, 
+                38.235355
+              ], 
+              [
+                -75.962931, 
+                38.235311
+              ], 
+              [
+                -75.970514, 
+                38.233668
+              ], 
+              [
+                -75.971487, 
+                38.233457
+              ], 
+              [
+                -75.972212, 
+                38.2333
+              ], 
+              [
+                -75.9704, 
+                38.235043
+              ], 
+              [
+                -75.970115, 
+                38.235317
+              ], 
+              [
+                -75.969383, 
+                38.236021
+              ], 
+              [
+                -75.969326, 
+                38.236076
+              ], 
+              [
+                -75.964528, 
+                38.240692
+              ], 
+              [
+                -75.964119, 
+                38.241085
+              ], 
+              [
+                -75.963969, 
+                38.241598
+              ], 
+              [
+                -75.962235, 
+                38.24754
+              ], 
+              [
+                -75.963453, 
+                38.251793
+              ], 
+              [
+                -75.984274, 
+                38.265155
+              ], 
+              [
+                -75.985815, 
+                38.276466
+              ], 
+              [
+                -75.987814, 
+                38.279287
+              ], 
+              [
+                -75.988731, 
+                38.280581
+              ], 
+              [
+                -75.990385, 
+                38.282915
+              ], 
+              [
+                -75.991162, 
+                38.283894
+              ], 
+              [
+                -75.991687, 
+                38.284555
+              ], 
+              [
+                -75.992669, 
+                38.285792
+              ], 
+              [
+                -75.992829, 
+                38.285994
+              ], 
+              [
+                -75.993391, 
+                38.286702
+              ], 
+              [
+                -76.000241, 
+                38.295331
+              ], 
+              [
+                -76.00401, 
+                38.300079
+              ], 
+              [
+                -76.007118, 
+                38.303994
+              ], 
+              [
+                -76.007254, 
+                38.304165
+              ], 
+              [
+                -76.007375, 
+                38.304318
+              ], 
+              [
+                -76.007478, 
+                38.304351
+              ], 
+              [
+                -76.011245, 
+                38.305572
+              ], 
+              [
+                -76.011458, 
+                38.30564
+              ], 
+              [
+                -76.016291, 
+                38.307206
+              ], 
+              [
+                -76.016314, 
+                38.307247
+              ], 
+              [
+                -76.016514, 
+                38.3076
+              ], 
+              [
+                -76.017308, 
+                38.309007
+              ], 
+              [
+                -76.017364, 
+                38.309106
+              ], 
+              [
+                -76.009377, 
+                38.311997
+              ], 
+              [
+                -76.008647, 
+                38.312261
+              ], 
+              [
+                -75.991151, 
+                38.31411
+              ], 
+              [
+                -75.990485, 
+                38.314181
+              ], 
+              [
+                -75.986025, 
+                38.314652
+              ], 
+              [
+                -75.984784, 
+                38.314783
+              ], 
+              [
+                -75.984433, 
+                38.314821
+              ], 
+              [
+                -75.983186, 
+                38.314952
+              ], 
+              [
+                -75.983171, 
+                38.314954
+              ], 
+              [
+                -75.982523, 
+                38.315022
+              ], 
+              [
+                -75.981345, 
+                38.315147
+              ], 
+              [
+                -75.969577, 
+                38.320044
+              ], 
+              [
+                -75.96929, 
+                38.320164
+              ], 
+              [
+                -75.96888, 
+                38.320498
+              ], 
+              [
+                -75.964237, 
+                38.324285
+              ], 
+              [
+                -75.961944, 
+                38.332572
+              ], 
+              [
+                -75.961945, 
+                38.33583
+              ], 
+              [
+                -75.961946, 
+                38.336018
+              ], 
+              [
+                -75.961948, 
+                38.341431
+              ], 
+              [
+                -75.965366, 
+                38.348429
+              ], 
+              [
+                -75.966397, 
+                38.35054
+              ], 
+              [
+                -75.968881, 
+                38.355623
+              ], 
+              [
+                -75.969161, 
+                38.356197
+              ], 
+              [
+                -75.97084, 
+                38.359635
+              ], 
+              [
+                -75.971019, 
+                38.360002
+              ], 
+              [
+                -75.971541, 
+                38.361069
+              ], 
+              [
+                -75.97191, 
+                38.361826
+              ], 
+              [
+                -75.972174, 
+                38.362365
+              ], 
+              [
+                -75.972281, 
+                38.362584
+              ], 
+              [
+                -75.973876, 
+                38.36585
+              ], 
+              [
+                -75.979727, 
+                38.367627
+              ], 
+              [
+                -75.98018, 
+                38.367765
+              ], 
+              [
+                -75.980829, 
+                38.367962
+              ], 
+              [
+                -75.995706, 
+                38.37248
+              ], 
+              [
+                -76.001839, 
+                38.374343
+              ], 
+              [
+                -76.002156, 
+                38.374439
+              ], 
+              [
+                -76.002282, 
+                38.374477
+              ], 
+              [
+                -76.004946, 
+                38.372045
+              ], 
+              [
+                -76.006949, 
+                38.370216
+              ], 
+              [
+                -76.011869, 
+                38.360582
+              ], 
+              [
+                -76.012149, 
+                38.357077
+              ], 
+              [
+                -76.011033, 
+                38.354844
+              ], 
+              [
+                -76.010737, 
+                38.354251
+              ], 
+              [
+                -76.010255, 
+                38.353287
+              ], 
+              [
+                -76.010217, 
+                38.353211
+              ], 
+              [
+                -76.010366, 
+                38.352732
+              ], 
+              [
+                -76.010437, 
+                38.352504
+              ], 
+              [
+                -76.016682, 
+                38.332429
+              ], 
+              [
+                -76.033947, 
+                38.323211
+              ], 
+              [
+                -76.041431, 
+                38.322163
+              ], 
+              [
+                -76.041618, 
+                38.322137
+              ], 
+              [
+                -76.041659, 
+                38.322097
+              ], 
+              [
+                -76.04318, 
+                38.32061
+              ], 
+              [
+                -76.043923, 
+                38.319884
+              ], 
+              [
+                -76.044649, 
+                38.319175
+              ], 
+              [
+                -76.045057, 
+                38.318776
+              ], 
+              [
+                -76.045599, 
+                38.318246
+              ], 
+              [
+                -76.045964, 
+                38.317452
+              ], 
+              [
+                -76.046367, 
+                38.316576
+              ], 
+              [
+                -76.047401, 
+                38.314329
+              ], 
+              [
+                -76.047992, 
+                38.313044
+              ], 
+              [
+                -76.048637, 
+                38.311643
+              ], 
+              [
+                -76.048965, 
+                38.31093
+              ], 
+              [
+                -76.049207, 
+                38.310404
+              ], 
+              [
+                -76.049523, 
+                38.309718
+              ], 
+              [
+                -76.04958, 
+                38.309594
+              ], 
+              [
+                -76.049609, 
+                38.309348
+              ], 
+              [
+                -76.049647, 
+                38.309017
+              ], 
+              [
+                -76.05022, 
+                38.304101
+              ], 
+              [
+                -76.047147, 
+                38.301582
+              ], 
+              [
+                -76.040019, 
+                38.295738
+              ], 
+              [
+                -76.030532, 
+                38.28796
+              ], 
+              [
+                -76.028234, 
+                38.282035
+              ], 
+              [
+                -76.027557, 
+                38.280288
+              ], 
+              [
+                -76.027487, 
+                38.280108
+              ], 
+              [
+                -76.032595, 
+                38.268875
+              ], 
+              [
+                -76.032664, 
+                38.268722
+              ], 
+              [
+                -76.032771, 
+                38.268487
+              ], 
+              [
+                -76.032998, 
+                38.267989
+              ], 
+              [
+                -76.03361, 
+                38.266644
+              ], 
+              [
+                -76.033737, 
+                38.266363
+              ], 
+              [
+                -76.038935, 
+                38.254932
+              ], 
+              [
+                -76.039738, 
+                38.254093
+              ], 
+              [
+                -76.043927, 
+                38.249712
+              ], 
+              [
+                -76.044251, 
+                38.249373
+              ], 
+              [
+                -76.044141, 
+                38.243447
+              ], 
+              [
+                -76.044108, 
+                38.241682
+              ], 
+              [
+                -76.043814, 
+                38.241294
+              ], 
+              [
+                -76.03796, 
+                38.233551
+              ], 
+              [
+                -76.037109, 
+                38.232426
+              ], 
+              [
+                -76.037103, 
+                38.232418
+              ], 
+              [
+                -76.036102, 
+                38.231094
+              ], 
+              [
+                -76.035695, 
+                38.230556
+              ], 
+              [
+                -76.033455, 
+                38.222046
+              ], 
+              [
+                -76.033338, 
+                38.221599
+              ], 
+              [
+                -76.032044, 
+                38.216684
+              ], 
+              [
+                -76.05801, 
+                38.227079
+              ], 
+              [
+                -76.069502, 
+                38.238455
+              ], 
+              [
+                -76.070831, 
+                38.241836
+              ], 
+              [
+                -76.071154, 
+                38.242657
+              ], 
+              [
+                -76.073493, 
+                38.248609
+              ], 
+              [
+                -76.073725, 
+                38.2492
+              ], 
+              [
+                -76.074491, 
+                38.251148
+              ], 
+              [
+                -76.074515, 
+                38.251208
+              ], 
+              [
+                -76.074568, 
+                38.251344
+              ], 
+              [
+                -76.074607, 
+                38.251443
+              ], 
+              [
+                -76.074726, 
+                38.251745
+              ], 
+              [
+                -76.07476, 
+                38.251832
+              ], 
+              [
+                -76.074897, 
+                38.252181
+              ], 
+              [
+                -76.082268, 
+                38.252616
+              ], 
+              [
+                -76.082549, 
+                38.252633
+              ], 
+              [
+                -76.089797, 
+                38.253061
+              ], 
+              [
+                -76.092417, 
+                38.253216
+              ], 
+              [
+                -76.092723, 
+                38.253234
+              ], 
+              [
+                -76.094689, 
+                38.25335
+              ], 
+              [
+                -76.09972, 
+                38.253647
+              ], 
+              [
+                -76.107592, 
+                38.262525
+              ], 
+              [
+                -76.102549, 
+                38.277153
+              ], 
+              [
+                -76.111296, 
+                38.286946
+              ], 
+              [
+                -76.12694, 
+                38.283751
+              ], 
+              [
+                -76.131085, 
+                38.282904
+              ], 
+              [
+                -76.137238, 
+                38.281648
+              ], 
+              [
+                -76.137442, 
+                38.281606
+              ], 
+              [
+                -76.138479, 
+                38.281394
+              ], 
+              [
+                -76.138524, 
+                38.281385
+              ], 
+              [
+                -76.138596, 
+                38.281406
+              ], 
+              [
+                -76.140674, 
+                38.282006
+              ], 
+              [
+                -76.140947, 
+                38.282085
+              ], 
+              [
+                -76.143127, 
+                38.282714
+              ], 
+              [
+                -76.149398, 
+                38.284525
+              ], 
+              [
+                -76.149876, 
+                38.284663
+              ], 
+              [
+                -76.160474, 
+                38.290983
+              ], 
+              [
+                -76.160838, 
+                38.290948
+              ], 
+              [
+                -76.161348, 
+                38.290898
+              ], 
+              [
+                -76.166154, 
+                38.290431
+              ], 
+              [
+                -76.173418, 
+                38.285326
+              ], 
+              [
+                -76.173555, 
+                38.28523
+              ], 
+              [
+                -76.173844, 
+                38.284869
+              ], 
+              [
+                -76.174011, 
+                38.284659
+              ], 
+              [
+                -76.174104, 
+                38.284543
+              ], 
+              [
+                -76.174152, 
+                38.284483
+              ], 
+              [
+                -76.174484, 
+                38.284068
+              ], 
+              [
+                -76.174598, 
+                38.283924
+              ], 
+              [
+                -76.174683, 
+                38.283818
+              ], 
+              [
+                -76.180115, 
+                38.277019
+              ], 
+              [
+                -76.180165, 
+                38.276956
+              ], 
+              [
+                -76.180103, 
+                38.276739
+              ], 
+              [
+                -76.179123, 
+                38.273291
+              ], 
+              [
+                -76.178282, 
+                38.270336
+              ], 
+              [
+                -76.175783, 
+                38.261551
+              ], 
+              [
+                -76.171254, 
+                38.256984
+              ], 
+              [
+                -76.164388, 
+                38.250061
+              ], 
+              [
+                -76.163249, 
+                38.248913
+              ], 
+              [
+                -76.146297, 
+                38.249678
+              ], 
+              [
+                -76.135169, 
+                38.245872
+              ], 
+              [
+                -76.13498, 
+                38.245807
+              ], 
+              [
+                -76.132544, 
+                38.244974
+              ], 
+              [
+                -76.130952, 
+                38.24443
+              ], 
+              [
+                -76.126623, 
+                38.242949
+              ], 
+              [
+                -76.126453, 
+                38.242046
+              ], 
+              [
+                -76.125856, 
+                38.23888
+              ], 
+              [
+                -76.125756, 
+                38.238348
+              ], 
+              [
+                -76.128452, 
+                38.235704
+              ], 
+              [
+                -76.128898, 
+                38.235267
+              ], 
+              [
+                -76.131332, 
+                38.23288
+              ], 
+              [
+                -76.140068, 
+                38.231305
+              ], 
+              [
+                -76.151035, 
+                38.234215
+              ], 
+              [
+                -76.17335, 
+                38.247037
+              ], 
+              [
+                -76.188644, 
+                38.267434
+              ], 
+              [
+                -76.189627, 
+                38.272487
+              ], 
+              [
+                -76.189655, 
+                38.272633
+              ], 
+              [
+                -76.190531, 
+                38.277139
+              ], 
+              [
+                -76.197155, 
+                38.28522
+              ], 
+              [
+                -76.197693, 
+                38.285877
+              ], 
+              [
+                -76.197871, 
+                38.286094
+              ], 
+              [
+                -76.201591, 
+                38.290633
+              ], 
+              [
+                -76.201603, 
+                38.290647
+              ], 
+              [
+                -76.202334, 
+                38.291539
+              ], 
+              [
+                -76.202628, 
+                38.291898
+              ], 
+              [
+                -76.202897, 
+                38.292226
+              ], 
+              [
+                -76.20343, 
+                38.292876
+              ], 
+              [
+                -76.203909, 
+                38.293461
+              ], 
+              [
+                -76.211446, 
+                38.302656
+              ], 
+              [
+                -76.216266, 
+                38.305023
+              ], 
+              [
+                -76.217616, 
+                38.305686
+              ], 
+              [
+                -76.218051, 
+                38.305899
+              ], 
+              [
+                -76.226376, 
+                38.309988
+              ], 
+              [
+                -76.226408, 
+                38.309989
+              ], 
+              [
+                -76.243897, 
+                38.310313
+              ], 
+              [
+                -76.254473, 
+                38.31512
+              ], 
+              [
+                -76.258189, 
+                38.318373
+              ], 
+              [
+                -76.266602, 
+                38.339502
+              ], 
+              [
+                -76.264186, 
+                38.346436
+              ], 
+              [
+                -76.259286, 
+                38.341619
+              ], 
+              [
+                -76.259261, 
+                38.341595
+              ], 
+              [
+                -76.259235, 
+                38.341603
+              ], 
+              [
+                -76.258383, 
+                38.341865
+              ], 
+              [
+                -76.257898, 
+                38.342014
+              ], 
+              [
+                -76.238452, 
+                38.347986
+              ], 
+              [
+                -76.238478, 
+                38.348355
+              ], 
+              [
+                -76.238541, 
+                38.349238
+              ], 
+              [
+                -76.238611, 
+                38.350233
+              ], 
+              [
+                -76.23901, 
+                38.350738
+              ], 
+              [
+                -76.239056, 
+                38.350795
+              ], 
+              [
+                -76.239601, 
+                38.351486
+              ], 
+              [
+                -76.239902, 
+                38.351866
+              ], 
+              [
+                -76.240196, 
+                38.352238
+              ], 
+              [
+                -76.24041, 
+                38.352508
+              ], 
+              [
+                -76.24735, 
+                38.361285
+              ], 
+              [
+                -76.248766, 
+                38.363076
+              ], 
+              [
+                -76.249666, 
+                38.364214
+              ], 
+              [
+                -76.256788, 
+                38.366712
+              ], 
+              [
+                -76.257479, 
+                38.366702
+              ], 
+              [
+                -76.258022, 
+                38.366695
+              ], 
+              [
+                -76.273003, 
+                38.366483
+              ], 
+              [
+                -76.278722, 
+                38.382919
+              ], 
+              [
+                -76.278813, 
+                38.383179
+              ], 
+              [
+                -76.280749, 
+                38.388743
+              ], 
+              [
+                -76.281214, 
+                38.390079
+              ], 
+              [
+                -76.28132, 
+                38.390384
+              ], 
+              [
+                -76.281396, 
+                38.390604
+              ], 
+              [
+                -76.281697, 
+                38.39147
+              ], 
+              [
+                -76.282144, 
+                38.392754
+              ], 
+              [
+                -76.282271, 
+                38.393118
+              ], 
+              [
+                -76.280551, 
+                38.403143
+              ], 
+              [
+                -76.28302, 
+                38.413512
+              ], 
+              [
+                -76.290681, 
+                38.424404
+              ], 
+              [
+                -76.300186, 
+                38.437916
+              ], 
+              [
+                -76.301488, 
+                38.439767
+              ], 
+              [
+                -76.3116, 
+                38.450266
+              ], 
+              [
+                -76.311767, 
+                38.450439
+              ], 
+              [
+                -76.320843, 
+                38.459862
+              ], 
+              [
+                -76.331383, 
+                38.473323
+              ], 
+              [
+                -76.331469, 
+                38.473432
+              ], 
+              [
+                -76.331559, 
+                38.473548
+              ], 
+              [
+                -76.331758, 
+                38.474324
+              ], 
+              [
+                -76.33199, 
+                38.475225
+              ], 
+              [
+                -76.33636, 
+                38.492235
+              ], 
+              [
+                -76.327257, 
+                38.500121
+              ], 
+              [
+                -76.318054, 
+                38.498199
+              ], 
+              [
+                -76.289507, 
+                38.503906
+              ], 
+              [
+                -76.283595, 
+                38.504157
+              ], 
+              [
+                -76.281761, 
+                38.502165
+              ], 
+              [
+                -76.263968, 
+                38.503452
+              ], 
+              [
+                -76.262133, 
+                38.504874
+              ], 
+              [
+                -76.26035, 
+                38.506255
+              ], 
+              [
+                -76.247894, 
+                38.523019
+              ], 
+              [
+                -76.2473, 
+                38.523818
+              ], 
+              [
+                -76.244396, 
+                38.536966
+              ], 
+              [
+                -76.248885, 
+                38.539023
+              ], 
+              [
+                -76.250265, 
+                38.539131
+              ], 
+              [
+                -76.251033, 
+                38.539191
+              ], 
+              [
+                -76.253624, 
+                38.539393
+              ], 
+              [
+                -76.274057, 
+                38.531207
+              ], 
+              [
+                -76.278106, 
+                38.532468
+              ], 
+              [
+                -76.281047, 
+                38.53613
+              ], 
+              [
+                -76.277461, 
+                38.541851
+              ], 
+              [
+                -76.275913, 
+                38.548809
+              ], 
+              [
+                -76.27964, 
+                38.557231
+              ], 
+              [
+                -76.283189, 
+                38.5613
+              ], 
+              [
+                -76.283632, 
+                38.561807
+              ], 
+              [
+                -76.289017, 
+                38.567982
+              ], 
+              [
+                -76.290043, 
+                38.569158
+              ], 
+              [
+                -76.290667, 
+                38.569247
+              ], 
+              [
+                -76.296469, 
+                38.570076
+              ], 
+              [
+                -76.299301, 
+                38.57048
+              ], 
+              [
+                -76.308321, 
+                38.571769
+              ], 
+              [
+                -76.305172, 
+                38.575293
+              ], 
+              [
+                -76.291998, 
+                38.581988
+              ], 
+              [
+                -76.290895, 
+                38.582548
+              ], 
+              [
+                -76.273496, 
+                38.59139
+              ], 
+              [
+                -76.268633, 
+                38.597753
+              ], 
+              [
+                -76.272584, 
+                38.601997
+              ], 
+              [
+                -76.274611, 
+                38.604174
+              ], 
+              [
+                -76.274888, 
+                38.604471
+              ], 
+              [
+                -76.275246, 
+                38.604856
+              ], 
+              [
+                -76.275282, 
+                38.604895
+              ], 
+              [
+                -76.275658, 
+                38.605298
+              ], 
+              [
+                -76.279589, 
+                38.60952
+              ], 
+              [
+                -76.278146, 
+                38.610662
+              ], 
+              [
+                -76.276734, 
+                38.611779
+              ], 
+              [
+                -76.271827, 
+                38.615661
+              ], 
+              [
+                -76.264155, 
+                38.615109
+              ], 
+              [
+                -76.263577, 
+                38.615475
+              ], 
+              [
+                -76.262791, 
+                38.615973
+              ], 
+              [
+                -76.261135, 
+                38.617021
+              ], 
+              [
+                -76.260317, 
+                38.617539
+              ], 
+              [
+                -76.253926, 
+                38.621586
+              ], 
+              [
+                -76.247896, 
+                38.625404
+              ], 
+              [
+                -76.24651, 
+                38.626282
+              ], 
+              [
+                -76.23665, 
+                38.628598
+              ], 
+              [
+                -76.235987, 
+                38.626827
+              ], 
+              [
+                -76.234929, 
+                38.624002
+              ], 
+              [
+                -76.231187, 
+                38.61401
+              ], 
+              [
+                -76.229358, 
+                38.613301
+              ], 
+              [
+                -76.229159, 
+                38.613224
+              ], 
+              [
+                -76.22882, 
+                38.613093
+              ], 
+              [
+                -76.222982, 
+                38.61083
+              ], 
+              [
+                -76.220701, 
+                38.609945
+              ], 
+              [
+                -76.212427, 
+                38.606738
+              ], 
+              [
+                -76.212414, 
+                38.606744
+              ], 
+              [
+                -76.203065, 
+                38.610741
+              ], 
+              [
+                -76.202598, 
+                38.613011
+              ], 
+              [
+                -76.190902, 
+                38.621092
+              ], 
+              [
+                -76.174969, 
+                38.628791
+              ], 
+              [
+                -76.170066, 
+                38.629225
+              ], 
+              [
+                -76.160148, 
+                38.625452
+              ], 
+              [
+                -76.152885, 
+                38.631819
+              ], 
+              [
+                -76.147158, 
+                38.63684
+              ], 
+              [
+                -76.147577, 
+                38.637893
+              ], 
+              [
+                -76.148202, 
+                38.639463
+              ], 
+              [
+                -76.148559, 
+                38.640362
+              ], 
+              [
+                -76.148955, 
+                38.641356
+              ], 
+              [
+                -76.149353, 
+                38.642356
+              ], 
+              [
+                -76.152554, 
+                38.6504
+              ], 
+              [
+                -76.152603, 
+                38.650523
+              ], 
+              [
+                -76.152622, 
+                38.650572
+              ], 
+              [
+                -76.15299, 
+                38.651495
+              ], 
+              [
+                -76.153414, 
+                38.652562
+              ], 
+              [
+                -76.153769, 
+                38.653455
+              ], 
+              [
+                -76.154093, 
+                38.654269
+              ], 
+              [
+                -76.154581, 
+                38.655495
+              ], 
+              [
+                -76.154604, 
+                38.655553
+              ], 
+              [
+                -76.154889, 
+                38.656268
+              ], 
+              [
+                -76.154924, 
+                38.656358
+              ], 
+              [
+                -76.155611, 
+                38.658083
+              ], 
+              [
+                -76.160539, 
+                38.661903
+              ], 
+              [
+                -76.164465, 
+                38.664946
+              ], 
+              [
+                -76.168824, 
+                38.668325
+              ], 
+              [
+                -76.174611, 
+                38.672811
+              ], 
+              [
+                -76.175159, 
+                38.673236
+              ], 
+              [
+                -76.196716, 
+                38.67286
+              ], 
+              [
+                -76.199722, 
+                38.671127
+              ], 
+              [
+                -76.199948, 
+                38.670997
+              ], 
+              [
+                -76.200334, 
+                38.670774
+              ], 
+              [
+                -76.212808, 
+                38.681892
+              ], 
+              [
+                -76.226343, 
+                38.698057
+              ], 
+              [
+                -76.229242, 
+                38.701519
+              ], 
+              [
+                -76.231392, 
+                38.704088
+              ], 
+              [
+                -76.231758, 
+                38.704524
+              ], 
+              [
+                -76.232127, 
+                38.704964
+              ], 
+              [
+                -76.232365, 
+                38.705249
+              ], 
+              [
+                -76.232535, 
+                38.705452
+              ], 
+              [
+                -76.232814, 
+                38.705785
+              ], 
+              [
+                -76.232845, 
+                38.705823
+              ], 
+              [
+                -76.232875, 
+                38.705859
+              ], 
+              [
+                -76.232893, 
+                38.70588
+              ], 
+              [
+                -76.234249, 
+                38.707499
+              ], 
+              [
+                -76.234379, 
+                38.707655
+              ], 
+              [
+                -76.234392, 
+                38.70767
+              ], 
+              [
+                -76.234828, 
+                38.708191
+              ], 
+              [
+                -76.237818, 
+                38.711762
+              ], 
+              [
+                -76.237916, 
+                38.711879
+              ], 
+              [
+                -76.238077, 
+                38.712071
+              ], 
+              [
+                -76.238172, 
+                38.712185
+              ], 
+              [
+                -76.238306, 
+                38.712344
+              ], 
+              [
+                -76.238725, 
+                38.712845
+              ], 
+              [
+                -76.239377, 
+                38.71688
+              ], 
+              [
+                -76.239427, 
+                38.717191
+              ], 
+              [
+                -76.239841, 
+                38.719756
+              ], 
+              [
+                -76.23704, 
+                38.724518
+              ], 
+              [
+                -76.238685, 
+                38.735434
+              ], 
+              [
+                -76.255093, 
+                38.736476
+              ], 
+              [
+                -76.255348, 
+                38.736273
+              ], 
+              [
+                -76.257335, 
+                38.734691
+              ], 
+              [
+                -76.257423, 
+                38.734621
+              ], 
+              [
+                -76.257437, 
+                38.734609
+              ], 
+              [
+                -76.257851, 
+                38.73428
+              ], 
+              [
+                -76.258738, 
+                38.733573
+              ], 
+              [
+                -76.259238, 
+                38.733176
+              ], 
+              [
+                -76.259665, 
+                38.732836
+              ], 
+              [
+                -76.259741, 
+                38.732775
+              ], 
+              [
+                -76.259867, 
+                38.732675
+              ], 
+              [
+                -76.259876, 
+                38.732667
+              ], 
+              [
+                -76.260001, 
+                38.732568
+              ], 
+              [
+                -76.260976, 
+                38.731791
+              ], 
+              [
+                -76.261863, 
+                38.731085
+              ], 
+              [
+                -76.268288, 
+                38.725969
+              ], 
+              [
+                -76.268739, 
+                38.725609
+              ], 
+              [
+                -76.26937, 
+                38.725107
+              ], 
+              [
+                -76.26952, 
+                38.724988
+              ], 
+              [
+                -76.270277, 
+                38.724385
+              ], 
+              [
+                -76.271243, 
+                38.716209
+              ], 
+              [
+                -76.271447, 
+                38.71448
+              ], 
+              [
+                -76.271553, 
+                38.713576
+              ], 
+              [
+                -76.271596, 
+                38.713216
+              ], 
+              [
+                -76.275015, 
+                38.712714
+              ], 
+              [
+                -76.275019, 
+                38.712715
+              ], 
+              [
+                -76.298499, 
+                38.718005
+              ], 
+              [
+                -76.299171, 
+                38.719287
+              ], 
+              [
+                -76.296603, 
+                38.723183
+              ], 
+              [
+                -76.296537, 
+                38.723283
+              ], 
+              [
+                -76.295957, 
+                38.724162
+              ], 
+              [
+                -76.298186, 
+                38.726255
+              ], 
+              [
+                -76.29935, 
+                38.727347
+              ], 
+              [
+                -76.299401, 
+                38.727395
+              ], 
+              [
+                -76.312756, 
+                38.730708
+              ], 
+              [
+                -76.316146, 
+                38.729586
+              ], 
+              [
+                -76.321803, 
+                38.723565
+              ], 
+              [
+                -76.321885, 
+                38.723478
+              ], 
+              [
+                -76.322019, 
+                38.723335
+              ], 
+              [
+                -76.322028, 
+                38.723326
+              ], 
+              [
+                -76.322663, 
+                38.72265
+              ], 
+              [
+                -76.322705, 
+                38.722605
+              ], 
+              [
+                -76.322706, 
+                38.722604
+              ], 
+              [
+                -76.32273, 
+                38.722578
+              ], 
+              [
+                -76.322807, 
+                38.722496
+              ], 
+              [
+                -76.32286, 
+                38.722439
+              ], 
+              [
+                -76.322975, 
+                38.722317
+              ], 
+              [
+                -76.323214, 
+                38.722063
+              ], 
+              [
+                -76.32353, 
+                38.721727
+              ], 
+              [
+                -76.326135, 
+                38.718954
+              ], 
+              [
+                -76.327162, 
+                38.717861
+              ], 
+              [
+                -76.328035, 
+                38.716932
+              ], 
+              [
+                -76.328338, 
+                38.716609
+              ], 
+              [
+                -76.330149, 
+                38.714682
+              ], 
+              [
+                -76.331479, 
+                38.713266
+              ], 
+              [
+                -76.332517, 
+                38.709118
+              ], 
+              [
+                -76.333066, 
+                38.706927
+              ], 
+              [
+                -76.333532, 
+                38.705063
+              ], 
+              [
+                -76.333777, 
+                38.704086
+              ], 
+              [
+                -76.334017, 
+                38.703127
+              ], 
+              [
+                -76.333862, 
+                38.702953
+              ], 
+              [
+                -76.332079, 
+                38.700956
+              ], 
+              [
+                -76.321865, 
+                38.689512
+              ], 
+              [
+                -76.321881, 
+                38.689217
+              ], 
+              [
+                -76.321898, 
+                38.688902
+              ], 
+              [
+                -76.321905, 
+                38.688768
+              ], 
+              [
+                -76.321915, 
+                38.688584
+              ], 
+              [
+                -76.322418, 
+                38.679304
+              ], 
+              [
+                -76.33861, 
+                38.672023
+              ], 
+              [
+                -76.340065, 
+                38.671369
+              ], 
+              [
+                -76.340341, 
+                38.671245
+              ], 
+              [
+                -76.34322, 
+                38.67688
+              ], 
+              [
+                -76.343277, 
+                38.676992
+              ], 
+              [
+                -76.343784, 
+                38.677985
+              ], 
+              [
+                -76.344199, 
+                38.678798
+              ], 
+              [
+                -76.347998, 
+                38.686234
+              ], 
+              [
+                -76.345072, 
+                38.703546
+              ], 
+              [
+                -76.344597, 
+                38.706352
+              ], 
+              [
+                -76.340543, 
+                38.730338
+              ], 
+              [
+                -76.340567, 
+                38.731008
+              ], 
+              [
+                -76.340608, 
+                38.732179
+              ], 
+              [
+                -76.340618, 
+                38.732464
+              ], 
+              [
+                -76.340628, 
+                38.732756
+              ], 
+              [
+                -76.340632, 
+                38.732857
+              ], 
+              [
+                -76.340635, 
+                38.73296
+              ], 
+              [
+                -76.340637, 
+                38.733003
+              ], 
+              [
+                -76.340641, 
+                38.733123
+              ], 
+              [
+                -76.340645, 
+                38.733225
+              ], 
+              [
+                -76.340677, 
+                38.734136
+              ], 
+              [
+                -76.340715, 
+                38.735215
+              ], 
+              [
+                -76.340732, 
+                38.735712
+              ], 
+              [
+                -76.340739, 
+                38.735894
+              ], 
+              [
+                -76.34074, 
+                38.735932
+              ], 
+              [
+                -76.341093, 
+                38.745959
+              ], 
+              [
+                -76.341096, 
+                38.746058
+              ], 
+              [
+                -76.3411, 
+                38.746148
+              ], 
+              [
+                -76.341288, 
+                38.751505
+              ], 
+              [
+                -76.341293, 
+                38.751654
+              ], 
+              [
+                -76.341297, 
+                38.751756
+              ], 
+              [
+                -76.341302, 
+                38.751901
+              ], 
+              [
+                -76.334619, 
+                38.772911
+              ], 
+              [
+                -76.333752, 
+                38.77342
+              ], 
+              [
+                -76.329721, 
+                38.775789
+              ], 
+              [
+                -76.323768, 
+                38.779287
+              ], 
+              [
+                -76.3227, 
+                38.780657
+              ], 
+              [
+                -76.312886, 
+                38.793247
+              ], 
+              [
+                -76.310743, 
+                38.795996
+              ], 
+              [
+                -76.310664, 
+                38.796098
+              ], 
+              [
+                -76.310626, 
+                38.796147
+              ], 
+              [
+                -76.310556, 
+                38.796237
+              ], 
+              [
+                -76.310081, 
+                38.796846
+              ], 
+              [
+                -76.308922, 
+                38.813346
+              ], 
+              [
+                -76.308306, 
+                38.814331
+              ], 
+              [
+                -76.308294, 
+                38.814349
+              ], 
+              [
+                -76.308127, 
+                38.814618
+              ], 
+              [
+                -76.307267, 
+                38.815993
+              ], 
+              [
+                -76.301886, 
+                38.824595
+              ], 
+              [
+                -76.300889, 
+                38.82619
+              ], 
+              [
+                -76.300886, 
+                38.826192
+              ], 
+              [
+                -76.298956, 
+                38.827519
+              ], 
+              [
+                -76.2978, 
+                38.828314
+              ], 
+              [
+                -76.296564, 
+                38.828186
+              ], 
+              [
+                -76.296471, 
+                38.828176
+              ], 
+              [
+                -76.296394, 
+                38.828168
+              ], 
+              [
+                -76.296364, 
+                38.828165
+              ], 
+              [
+                -76.296329, 
+                38.828162
+              ], 
+              [
+                -76.29632, 
+                38.828161
+              ], 
+              [
+                -76.296259, 
+                38.828155
+              ], 
+              [
+                -76.295992, 
+                38.828127
+              ], 
+              [
+                -76.29555, 
+                38.828081
+              ], 
+              [
+                -76.295454, 
+                38.828071
+              ], 
+              [
+                -76.295436, 
+                38.828069
+              ], 
+              [
+                -76.293648, 
+                38.827884
+              ], 
+              [
+                -76.292144, 
+                38.827729
+              ], 
+              [
+                -76.288455, 
+                38.827347
+              ], 
+              [
+                -76.284768, 
+                38.828706
+              ], 
+              [
+                -76.277854, 
+                38.831256
+              ], 
+              [
+                -76.277748, 
+                38.831295
+              ], 
+              [
+                -76.277411, 
+                38.831419
+              ], 
+              [
+                -76.27742, 
+                38.831468
+              ], 
+              [
+                -76.278151, 
+                38.835494
+              ], 
+              [
+                -76.27804, 
+                38.835768
+              ], 
+              [
+                -76.274405, 
+                38.844766
+              ], 
+              [
+                -76.271575, 
+                38.851771
+              ], 
+              [
+                -76.267175, 
+                38.851652
+              ], 
+              [
+                -76.265999, 
+                38.85162
+              ], 
+              [
+                -76.264221, 
+                38.851572
+              ], 
+              [
+                -76.265759, 
+                38.847638
+              ], 
+              [
+                -76.265808, 
+                38.847512
+              ], 
+              [
+                -76.265678, 
+                38.847326
+              ], 
+              [
+                -76.262179, 
+                38.842325
+              ], 
+              [
+                -76.261907, 
+                38.841936
+              ], 
+              [
+                -76.261627, 
+                38.841536
+              ], 
+              [
+                -76.257353, 
+                38.835428
+              ], 
+              [
+                -76.255787, 
+                38.833189
+              ], 
+              [
+                -76.255343, 
+                38.832554
+              ], 
+              [
+                -76.255322, 
+                38.832525
+              ], 
+              [
+                -76.250364, 
+                38.825438
+              ], 
+              [
+                -76.250296, 
+                38.825389
+              ], 
+              [
+                -76.245886, 
+                38.822232
+              ], 
+              [
+                -76.23877, 
+                38.81959
+              ], 
+              [
+                -76.229199, 
+                38.816036
+              ], 
+              [
+                -76.228071, 
+                38.815617
+              ], 
+              [
+                -76.221162, 
+                38.813052
+              ], 
+              [
+                -76.219328, 
+                38.812371
+              ], 
+              [
+                -76.198138, 
+                38.81444
+              ], 
+              [
+                -76.197432, 
+                38.815541
+              ], 
+              [
+                -76.196488, 
+                38.817015
+              ], 
+              [
+                -76.196426, 
+                38.817111
+              ], 
+              [
+                -76.19537, 
+                38.818759
+              ], 
+              [
+                -76.19343, 
+                38.821787
+              ], 
+              [
+                -76.193272, 
+                38.822319
+              ], 
+              [
+                -76.193073, 
+                38.822989
+              ], 
+              [
+                -76.19302, 
+                38.823165
+              ], 
+              [
+                -76.192924, 
+                38.823489
+              ], 
+              [
+                -76.192865, 
+                38.823687
+              ], 
+              [
+                -76.192765, 
+                38.824024
+              ], 
+              [
+                -76.192537, 
+                38.82479
+              ], 
+              [
+                -76.19109, 
+                38.82966
+              ], 
+              [
+                -76.191172, 
+                38.829834
+              ], 
+              [
+                -76.192874, 
+                38.83345
+              ], 
+              [
+                -76.192946, 
+                38.833603
+              ], 
+              [
+                -76.192973, 
+                38.833661
+              ], 
+              [
+                -76.197705, 
+                38.843712
+              ], 
+              [
+                -76.197736, 
+                38.84383
+              ], 
+              [
+                -76.199544, 
+                38.850817
+              ], 
+              [
+                -76.200728, 
+                38.855389
+              ], 
+              [
+                -76.202598, 
+                38.862616
+              ], 
+              [
+                -76.202314, 
+                38.864906
+              ], 
+              [
+                -76.200082, 
+                38.882885
+              ], 
+              [
+                -76.205063, 
+                38.892726
+              ], 
+              [
+                -76.204544, 
+                38.905715
+              ], 
+              [
+                -76.204129, 
+                38.916096
+              ], 
+              [
+                -76.204122, 
+                38.916269
+              ], 
+              [
+                -76.204091, 
+                38.917058
+              ], 
+              [
+                -76.203638, 
+                38.928382
+              ], 
+              [
+                -76.207695, 
+                38.931954
+              ], 
+              [
+                -76.213731, 
+                38.937269
+              ], 
+              [
+                -76.213842, 
+                38.937366
+              ], 
+              [
+                -76.22813, 
+                38.941412
+              ], 
+              [
+                -76.228405, 
+                38.941489
+              ], 
+              [
+                -76.232038, 
+                38.942518
+              ], 
+              [
+                -76.233895, 
+                38.942123
+              ], 
+              [
+                -76.234681, 
+                38.941956
+              ], 
+              [
+                -76.250157, 
+                38.938667
+              ], 
+              [
+                -76.250868, 
+                38.92825
+              ], 
+              [
+                -76.250838, 
+                38.928204
+              ], 
+              [
+                -76.249622, 
+                38.926297
+              ], 
+              [
+                -76.249246, 
+                38.925707
+              ], 
+              [
+                -76.248896, 
+                38.925159
+              ], 
+              [
+                -76.248844, 
+                38.925076
+              ], 
+              [
+                -76.248702, 
+                38.924855
+              ], 
+              [
+                -76.248574, 
+                38.924655
+              ], 
+              [
+                -76.248472, 
+                38.924494
+              ], 
+              [
+                -76.248023, 
+                38.92379
+              ], 
+              [
+                -76.249163, 
+                38.9218
+              ], 
+              [
+                -76.249285, 
+                38.921587
+              ], 
+              [
+                -76.249355, 
+                38.921465
+              ], 
+              [
+                -76.249674, 
+                38.920907
+              ], 
+              [
+                -76.249889, 
+                38.920841
+              ], 
+              [
+                -76.255819, 
+                38.919008
+              ], 
+              [
+                -76.25619, 
+                38.918893
+              ], 
+              [
+                -76.256397, 
+                38.918829
+              ], 
+              [
+                -76.25808, 
+                38.91916
+              ], 
+              [
+                -76.258206, 
+                38.919185
+              ], 
+              [
+                -76.262226, 
+                38.919976
+              ], 
+              [
+                -76.264683, 
+                38.924576
+              ], 
+              [
+                -76.264692, 
+                38.924764
+              ], 
+              [
+                -76.264943, 
+                38.930297
+              ], 
+              [
+                -76.265772, 
+                38.931482
+              ], 
+              [
+                -76.26626, 
+                38.932179
+              ], 
+              [
+                -76.269179, 
+                38.936349
+              ], 
+              [
+                -76.270954, 
+                38.938886
+              ], 
+              [
+                -76.271625, 
+                38.939844
+              ], 
+              [
+                -76.273022, 
+                38.94184
+              ], 
+              [
+                -76.273083, 
+                38.941927
+              ], 
+              [
+                -76.273258, 
+                38.941826
+              ], 
+              [
+                -76.276033, 
+                38.940213
+              ], 
+              [
+                -76.284227, 
+                38.935452
+              ], 
+              [
+                -76.288813, 
+                38.932787
+              ], 
+              [
+                -76.291211, 
+                38.931394
+              ], 
+              [
+                -76.29558, 
+                38.928855
+              ], 
+              [
+                -76.295911, 
+                38.928663
+              ], 
+              [
+                -76.298208, 
+                38.92206
+              ], 
+              [
+                -76.299431, 
+                38.918542
+              ], 
+              [
+                -76.299406, 
+                38.918505
+              ], 
+              [
+                -76.298492, 
+                38.917121
+              ], 
+              [
+                -76.293963, 
+                38.910266
+              ], 
+              [
+                -76.293867, 
+                38.910121
+              ], 
+              [
+                -76.293843, 
+                38.909826
+              ], 
+              [
+                -76.293829, 
+                38.909649
+              ], 
+              [
+                -76.293794, 
+                38.909222
+              ], 
+              [
+                -76.293492, 
+                38.905499
+              ], 
+              [
+                -76.293358, 
+                38.903854
+              ], 
+              [
+                -76.293341, 
+                38.903635
+              ], 
+              [
+                -76.293328, 
+                38.903479
+              ], 
+              [
+                -76.293309, 
+                38.903244
+              ], 
+              [
+                -76.293255, 
+                38.902582
+              ], 
+              [
+                -76.293254, 
+                38.902568
+              ], 
+              [
+                -76.308425, 
+                38.898404
+              ], 
+              [
+                -76.317947, 
+                38.911312
+              ], 
+              [
+                -76.317977, 
+                38.911311
+              ], 
+              [
+                -76.31853, 
+                38.911299
+              ], 
+              [
+                -76.319272, 
+                38.911282
+              ], 
+              [
+                -76.322715, 
+                38.911205
+              ], 
+              [
+                -76.323252, 
+                38.911193
+              ], 
+              [
+                -76.324097, 
+                38.911174
+              ], 
+              [
+                -76.324102, 
+                38.911172
+              ], 
+              [
+                -76.336104, 
+                38.905977
+              ], 
+              [
+                -76.336116, 
+                38.905907
+              ], 
+              [
+                -76.336827, 
+                38.901905
+              ], 
+              [
+                -76.336966, 
+                38.901118
+              ], 
+              [
+                -76.337097, 
+                38.90038
+              ], 
+              [
+                -76.337227, 
+                38.899653
+              ], 
+              [
+                -76.337358, 
+                38.898915
+              ], 
+              [
+                -76.338047, 
+                38.895034
+              ], 
+              [
+                -76.338123, 
+                38.894601
+              ], 
+              [
+                -76.338416, 
+                38.892954
+              ], 
+              [
+                -76.338501, 
+                38.892474
+              ], 
+              [
+                -76.337946, 
+                38.891332
+              ], 
+              [
+                -76.336986, 
+                38.889357
+              ], 
+              [
+                -76.33656, 
+                38.888481
+              ], 
+              [
+                -76.336326, 
+                38.888001
+              ], 
+              [
+                -76.335681, 
+                38.886673
+              ], 
+              [
+                -76.335364, 
+                38.886021
+              ], 
+              [
+                -76.335341, 
+                38.885907
+              ], 
+              [
+                -76.333801, 
+                38.878194
+              ], 
+              [
+                -76.333258, 
+                38.875478
+              ], 
+              [
+                -76.333211, 
+                38.875241
+              ], 
+              [
+                -76.332651, 
+                38.872438
+              ], 
+              [
+                -76.331103, 
+                38.864686
+              ], 
+              [
+                -76.33103, 
+                38.86432
+              ], 
+              [
+                -76.334019, 
+                38.860238
+              ], 
+              [
+                -76.337901, 
+                38.857579
+              ], 
+              [
+                -76.338136, 
+                38.857418
+              ], 
+              [
+                -76.339667, 
+                38.85637
+              ], 
+              [
+                -76.340587, 
+                38.85574
+              ], 
+              [
+                -76.348826, 
+                38.857134
+              ], 
+              [
+                -76.35039, 
+                38.857399
+              ], 
+              [
+                -76.356361, 
+                38.854396
+              ], 
+              [
+                -76.35996, 
+                38.852586
+              ], 
+              [
+                -76.360095, 
+                38.852518
+              ], 
+              [
+                -76.361141, 
+                38.851992
+              ], 
+              [
+                -76.36132, 
+                38.851589
+              ], 
+              [
+                -76.366501, 
+                38.839936
+              ], 
+              [
+                -76.368164, 
+                38.836194
+              ], 
+              [
+                -76.368195, 
+                38.836125
+              ], 
+              [
+                -76.368359, 
+                38.836205
+              ], 
+              [
+                -76.372719, 
+                38.838324
+              ], 
+              [
+                -76.373122, 
+                38.838519
+              ], 
+              [
+                -76.375086, 
+                38.839474
+              ], 
+              [
+                -76.375138, 
+                38.839981
+              ], 
+              [
+                -76.375303, 
+                38.841611
+              ], 
+              [
+                -76.375443, 
+                38.842988
+              ], 
+              [
+                -76.376031, 
+                38.848777
+              ], 
+              [
+                -76.376202, 
+                38.850461
+              ], 
+              [
+                -76.376183, 
+                38.8505
+              ], 
+              [
+                -76.375874, 
+                38.851126
+              ], 
+              [
+                -76.372553, 
+                38.85786
+              ], 
+              [
+                -76.367549, 
+                38.868009
+              ], 
+              [
+                -76.367344, 
+                38.868424
+              ], 
+              [
+                -76.364678, 
+                38.873831
+              ], 
+              [
+                -76.365225, 
+                38.892614
+              ], 
+              [
+                -76.365388, 
+                38.898219
+              ], 
+              [
+                -76.365658, 
+                38.907477
+              ], 
+              [
+                -76.36513, 
+                38.911736
+              ], 
+              [
+                -76.36478, 
+                38.914553
+              ], 
+              [
+                -76.364523, 
+                38.916632
+              ], 
+              [
+                -76.36205, 
+                38.936568
+              ], 
+              [
+                -76.361727, 
+                38.939175
+              ], 
+              [
+                -76.359669, 
+                38.94388
+              ], 
+              [
+                -76.357933, 
+                38.947848
+              ], 
+              [
+                -76.357752, 
+                38.948262
+              ], 
+              [
+                -76.354949, 
+                38.954672
+              ], 
+              [
+                -76.353828, 
+                38.957234
+              ], 
+              [
+                -76.351637, 
+                38.960214
+              ], 
+              [
+                -76.343672, 
+                38.971048
+              ], 
+              [
+                -76.333703, 
+                38.984607
+              ], 
+              [
+                -76.33129, 
+                38.98789
+              ], 
+              [
+                -76.323293, 
+                38.998767
+              ], 
+              [
+                -76.322679, 
+                38.999602
+              ], 
+              [
+                -76.322346, 
+                39.005488
+              ], 
+              [
+                -76.322296, 
+                39.006375
+              ], 
+              [
+                -76.323557, 
+                39.008961
+              ], 
+              [
+                -76.32259, 
+                39.0131
+              ], 
+              [
+                -76.320277, 
+                39.022998
+              ], 
+              [
+                -76.320274, 
+                39.023013
+              ], 
+              [
+                -76.320269, 
+                39.02302
+              ], 
+              [
+                -76.311766, 
+                39.035257
+              ], 
+              [
+                -76.302029, 
+                39.039571
+              ], 
+              [
+                -76.301847, 
+                39.039651
+              ], 
+              [
+                -76.301645, 
+                39.037663
+              ], 
+              [
+                -76.301506, 
+                39.036298
+              ], 
+              [
+                -76.301054, 
+                39.031862
+              ], 
+              [
+                -76.30104, 
+                39.031721
+              ], 
+              [
+                -76.301027, 
+                39.031595
+              ], 
+              [
+                -76.302846, 
+                39.025828
+              ], 
+              [
+                -76.30265, 
+                39.025346
+              ], 
+              [
+                -76.29409, 
+                39.004263
+              ], 
+              [
+                -76.293962, 
+                39.003948
+              ], 
+              [
+                -76.2919, 
+                39.001264
+              ], 
+              [
+                -76.289326, 
+                38.997914
+              ], 
+              [
+                -76.286484, 
+                38.994215
+              ], 
+              [
+                -76.284893, 
+                38.992143
+              ], 
+              [
+                -76.28328, 
+                38.990044
+              ], 
+              [
+                -76.280355, 
+                38.986236
+              ], 
+              [
+                -76.278058, 
+                38.983246
+              ], 
+              [
+                -76.277478, 
+                38.982492
+              ], 
+              [
+                -76.277457, 
+                38.982493
+              ], 
+              [
+                -76.275964, 
+                38.982587
+              ], 
+              [
+                -76.258813, 
+                38.983664
+              ], 
+              [
+                -76.258724, 
+                38.983646
+              ], 
+              [
+                -76.246049, 
+                38.981035
+              ], 
+              [
+                -76.243619, 
+                38.980534
+              ], 
+              [
+                -76.229993, 
+                38.977728
+              ], 
+              [
+                -76.229277, 
+                38.97758
+              ], 
+              [
+                -76.228748, 
+                38.97722
+              ], 
+              [
+                -76.218929, 
+                38.970538
+              ], 
+              [
+                -76.218773, 
+                38.970562
+              ], 
+              [
+                -76.20236, 
+                38.973079
+              ], 
+              [
+                -76.202081, 
+                38.973272
+              ], 
+              [
+                -76.187165, 
+                38.983558
+              ], 
+              [
+                -76.182461, 
+                38.986802
+              ], 
+              [
+                -76.180663, 
+                38.988042
+              ], 
+              [
+                -76.168332, 
+                38.996546
+              ], 
+              [
+                -76.164004, 
+                38.99953
+              ], 
+              [
+                -76.163988, 
+                38.999541
+              ], 
+              [
+                -76.163988, 
+                38.999542
+              ], 
+              [
+                -76.163956, 
+                39.000437
+              ], 
+              [
+                -76.163898, 
+                39.002096
+              ], 
+              [
+                -76.163616, 
+                39.010057
+              ], 
+              [
+                -76.167574, 
+                39.018273
+              ], 
+              [
+                -76.173393, 
+                39.02555
+              ], 
+              [
+                -76.174633, 
+                39.0271
+              ], 
+              [
+                -76.177832, 
+                39.031102
+              ], 
+              [
+                -76.178115, 
+                39.031456
+              ], 
+              [
+                -76.178281, 
+                39.031663
+              ], 
+              [
+                -76.184207, 
+                39.046264
+              ], 
+              [
+                -76.179456, 
+                39.052941
+              ], 
+              [
+                -76.177046, 
+                39.056329
+              ], 
+              [
+                -76.175284, 
+                39.058805
+              ], 
+              [
+                -76.16906, 
+                39.062787
+              ], 
+              [
+                -76.15896, 
+                39.065486
+              ], 
+              [
+                -76.156572, 
+                39.069433
+              ], 
+              [
+                -76.153465, 
+                39.074568
+              ], 
+              [
+                -76.150528, 
+                39.079421
+              ], 
+              [
+                -76.145174, 
+                39.092824
+              ], 
+              [
+                -76.15809, 
+                39.093998
+              ], 
+              [
+                -76.167347, 
+                39.094839
+              ], 
+              [
+                -76.169087, 
+                39.094997
+              ], 
+              [
+                -76.169414, 
+                39.095027
+              ], 
+              [
+                -76.169891, 
+                39.09507
+              ], 
+              [
+                -76.183908, 
+                39.096344
+              ], 
+              [
+                -76.189907, 
+                39.093042
+              ], 
+              [
+                -76.194703, 
+                39.090403
+              ], 
+              [
+                -76.203333, 
+                39.085654
+              ], 
+              [
+                -76.203383, 
+                39.085626
+              ], 
+              [
+                -76.203548, 
+                39.085101
+              ], 
+              [
+                -76.205108, 
+                39.080129
+              ], 
+              [
+                -76.207604, 
+                39.072176
+              ], 
+              [
+                -76.210041, 
+                39.06441
+              ], 
+              [
+                -76.210251, 
+                39.062511
+              ], 
+              [
+                -76.210876, 
+                39.056874
+              ], 
+              [
+                -76.211838, 
+                39.048184
+              ], 
+              [
+                -76.212563, 
+                39.041641
+              ], 
+              [
+                -76.212602, 
+                39.041288
+              ], 
+              [
+                -76.212616, 
+                39.041158
+              ], 
+              [
+                -76.21204, 
+                39.03887
+              ], 
+              [
+                -76.211589, 
+                39.03708
+              ], 
+              [
+                -76.210477, 
+                39.032664
+              ], 
+              [
+                -76.209827, 
+                39.030081
+              ], 
+              [
+                -76.209517, 
+                39.028848
+              ], 
+              [
+                -76.208502, 
+                39.024818
+              ], 
+              [
+                -76.208346, 
+                39.024614
+              ], 
+              [
+                -76.206852, 
+                39.022649
+              ], 
+              [
+                -76.206796, 
+                39.022575
+              ], 
+              [
+                -76.205958, 
+                39.021475
+              ], 
+              [
+                -76.200666, 
+                39.01452
+              ], 
+              [
+                -76.201005, 
+                39.014339
+              ], 
+              [
+                -76.202176, 
+                39.013714
+              ], 
+              [
+                -76.209114, 
+                39.01001
+              ], 
+              [
+                -76.209285, 
+                39.010074
+              ], 
+              [
+                -76.21685, 
+                39.012916
+              ], 
+              [
+                -76.221148, 
+                39.01453
+              ], 
+              [
+                -76.223671, 
+                39.015478
+              ], 
+              [
+                -76.231765, 
+                39.018518
+              ], 
+              [
+                -76.240226, 
+                39.026581
+              ], 
+              [
+                -76.241932, 
+                39.028206
+              ], 
+              [
+                -76.242687, 
+                39.028926
+              ], 
+              [
+                -76.240905, 
+                39.039798
+              ], 
+              [
+                -76.239443, 
+                39.041977
+              ], 
+              [
+                -76.2375, 
+                39.044872
+              ], 
+              [
+                -76.237065, 
+                39.045521
+              ], 
+              [
+                -76.231212, 
+                39.060769
+              ], 
+              [
+                -76.231117, 
+                39.061017
+              ], 
+              [
+                -76.231427, 
+                39.071714
+              ], 
+              [
+                -76.231748, 
+                39.082826
+              ], 
+              [
+                -76.233457, 
+                39.091385
+              ], 
+              [
+                -76.240603, 
+                39.106856
+              ], 
+              [
+                -76.24505, 
+                39.116484
+              ], 
+              [
+                -76.252946, 
+                39.133577
+              ], 
+              [
+                -76.252968, 
+                39.133626
+              ], 
+              [
+                -76.260343, 
+                39.142722
+              ], 
+              [
+                -76.260894, 
+                39.143402
+              ], 
+              [
+                -76.264417, 
+                39.143874
+              ], 
+              [
+                -76.26654, 
+                39.144158
+              ], 
+              [
+                -76.268096, 
+                39.144367
+              ], 
+              [
+                -76.274907, 
+                39.145279
+              ], 
+              [
+                -76.276721, 
+                39.145522
+              ], 
+              [
+                -76.278527, 
+                39.145764
+              ], 
+              [
+                -76.276807, 
+                39.154484
+              ], 
+              [
+                -76.27566, 
+                39.160304
+              ], 
+              [
+                -76.274741, 
+                39.164961
+              ], 
+              [
+                -76.274637, 
+                39.16549
+              ], 
+              [
+                -76.274303, 
+                39.166115
+              ], 
+              [
+                -76.269467, 
+                39.175163
+              ], 
+              [
+                -76.268631, 
+                39.176727
+              ], 
+              [
+                -76.266963, 
+                39.179848
+              ], 
+              [
+                -76.266602, 
+                39.180523
+              ], 
+              [
+                -76.255831, 
+                39.191595
+              ], 
+              [
+                -76.251032, 
+                39.199214
+              ], 
+              [
+                -76.248741, 
+                39.203333
+              ], 
+              [
+                -76.232612, 
+                39.232333
+              ], 
+              [
+                -76.232051, 
+                39.233341
+              ], 
+              [
+                -76.22622, 
+                39.246485
+              ], 
+              [
+                -76.220475, 
+                39.259433
+              ], 
+              [
+                -76.219338, 
+                39.261997
+              ], 
+              [
+                -76.219312, 
+                39.262022
+              ], 
+              [
+                -76.218339, 
+                39.262963
+              ], 
+              [
+                -76.21752, 
+                39.263754
+              ], 
+              [
+                -76.211306, 
+                39.269761
+              ], 
+              [
+                -76.211253, 
+                39.269812
+              ], 
+              [
+                -76.211179, 
+                39.269813
+              ], 
+              [
+                -76.210748, 
+                39.269816
+              ], 
+              [
+                -76.203031, 
+                39.269871
+              ], 
+              [
+                -76.20259, 
+                39.270265
+              ], 
+              [
+                -76.193029, 
+                39.278801
+              ], 
+              [
+                -76.191285, 
+                39.280358
+              ], 
+              [
+                -76.189868, 
+                39.281623
+              ], 
+              [
+                -76.185909, 
+                39.285157
+              ], 
+              [
+                -76.185674, 
+                39.285367
+              ], 
+              [
+                -76.181496, 
+                39.291797
+              ], 
+              [
+                -76.181478, 
+                39.291829
+              ], 
+              [
+                -76.177712, 
+                39.298686
+              ], 
+              [
+                -76.177704, 
+                39.298701
+              ], 
+              [
+                -76.177178, 
+                39.303099
+              ], 
+              [
+                -76.176804, 
+                39.306229
+              ], 
+              [
+                -76.176778, 
+                39.306447
+              ], 
+              [
+                -76.176865, 
+                39.306584
+              ], 
+              [
+                -76.178983, 
+                39.309926
+              ], 
+              [
+                -76.179092, 
+                39.310098
+              ], 
+              [
+                -76.186024, 
+                39.312462
+              ], 
+              [
+                -76.186637, 
+                39.315426
+              ], 
+              [
+                -76.186647, 
+                39.315475
+              ], 
+              [
+                -76.186001, 
+                39.317814
+              ], 
+              [
+                -76.185581, 
+                39.319334
+              ], 
+              [
+                -76.185507, 
+                39.319396
+              ], 
+              [
+                -76.170588, 
+                39.331954
+              ], 
+              [
+                -76.170541, 
+                39.331994
+              ], 
+              [
+                -76.170422, 
+                39.332094
+              ], 
+              [
+                -76.169411, 
+                39.332453
+              ], 
+              [
+                -76.168365, 
+                39.332824
+              ], 
+              [
+                -76.159673, 
+                39.335909
+              ], 
+              [
+                -76.157163, 
+                39.335641
+              ], 
+              [
+                -76.152722, 
+                39.335167
+              ], 
+              [
+                -76.145524, 
+                39.334399
+              ], 
+              [
+                -76.133225, 
+                39.340491
+              ], 
+              [
+                -76.135105, 
+                39.34246
+              ], 
+              [
+                -76.136971, 
+                39.344414
+              ], 
+              [
+                -76.13495, 
+                39.35107
+              ], 
+              [
+                -76.129983, 
+                39.353702
+              ], 
+              [
+                -76.116698, 
+                39.360744
+              ], 
+              [
+                -76.116356, 
+                39.360925
+              ], 
+              [
+                -76.115935, 
+                39.361744
+              ], 
+              [
+                -76.113215, 
+                39.367032
+              ], 
+              [
+                -76.110598, 
+                39.372119
+              ], 
+              [
+                -76.110527, 
+                39.372257
+              ], 
+              [
+                -76.108942, 
+                39.372215
+              ], 
+              [
+                -76.108373, 
+                39.3722
+              ], 
+              [
+                -76.074992, 
+                39.371312
+              ], 
+              [
+                -76.065887, 
+                39.37107
+              ], 
+              [
+                -76.065716, 
+                39.371066
+              ], 
+              [
+                -76.061504, 
+                39.370954
+              ], 
+              [
+                -76.059335, 
+                39.370896
+              ], 
+              [
+                -76.05872, 
+                39.37088
+              ], 
+              [
+                -76.057876, 
+                39.370857
+              ], 
+              [
+                -76.054157, 
+                39.370759
+              ], 
+              [
+                -76.049846, 
+                39.370644
+              ], 
+              [
+                -76.032923, 
+                39.367414
+              ], 
+              [
+                -76.031767, 
+                39.366772
+              ], 
+              [
+                -76.030064, 
+                39.365826
+              ], 
+              [
+                -76.02299, 
+                39.361896
+              ], 
+              [
+                -76.019091, 
+                39.362958
+              ], 
+              [
+                -76.006546, 
+                39.366374
+              ], 
+              [
+                -76.002408, 
+                39.367501
+              ], 
+              [
+                -76.002463, 
+                39.37644
+              ], 
+              [
+                -76.002514, 
+                39.384805
+              ], 
+              [
+                -76.002515, 
+                39.385024
+              ], 
+              [
+                -76.006805, 
+                39.385174
+              ], 
+              [
+                -76.022304, 
+                39.385716
+              ], 
+              [
+                -76.035464, 
+                39.386176
+              ], 
+              [
+                -76.035568, 
+                39.38618
+              ], 
+              [
+                -76.035644, 
+                39.386213
+              ], 
+              [
+                -76.039279, 
+                39.387796
+              ], 
+              [
+                -76.039932, 
+                39.38808
+              ], 
+              [
+                -76.039973, 
+                39.388327
+              ], 
+              [
+                -76.040854, 
+                39.393594
+              ], 
+              [
+                -76.040962, 
+                39.394237
+              ], 
+              [
+                -76.040612, 
+                39.394692
+              ], 
+              [
+                -76.035298, 
+                39.401609
+              ], 
+              [
+                -76.035002, 
+                39.401994
+              ], 
+              [
+                -76.03472, 
+                39.402093
+              ], 
+              [
+                -76.018726, 
+                39.407696
+              ], 
+              [
+                -76.018061, 
+                39.407929
+              ], 
+              [
+                -76.016531, 
+                39.408465
+              ], 
+              [
+                -76.015763, 
+                39.408947
+              ], 
+              [
+                -76.012567, 
+                39.410955
+              ], 
+              [
+                -76.009693, 
+                39.41276
+              ], 
+              [
+                -76.00688, 
+                39.414527
+              ], 
+              [
+                -76.002856, 
+                39.421225
+              ], 
+              [
+                -75.998586, 
+                39.428333
+              ], 
+              [
+                -75.997396, 
+                39.430314
+              ], 
+              [
+                -75.996697, 
+                39.430549
+              ], 
+              [
+                -75.992742, 
+                39.431877
+              ], 
+              [
+                -75.992425, 
+                39.431983
+              ], 
+              [
+                -75.98884, 
+                39.433187
+              ], 
+              [
+                -75.982585, 
+                39.435287
+              ], 
+              [
+                -75.977751, 
+                39.44302
+              ], 
+              [
+                -75.976747, 
+                39.444627
+              ], 
+              [
+                -75.976698, 
+                39.44569
+              ], 
+              [
+                -75.976601, 
+                39.447808
+              ], 
+              [
+                -75.990005, 
+                39.458646
+              ], 
+              [
+                -75.990128, 
+                39.458624
+              ], 
+              [
+                -75.991779, 
+                39.458332
+              ], 
+              [
+                -75.994432, 
+                39.457862
+              ], 
+              [
+                -75.998276, 
+                39.457182
+              ], 
+              [
+                -76.002497, 
+                39.450231
+              ], 
+              [
+                -76.002513, 
+                39.450204
+              ], 
+              [
+                -76.002579, 
+                39.450194
+              ], 
+              [
+                -76.009071, 
+                39.449256
+              ], 
+              [
+                -76.009452, 
+                39.449201
+              ], 
+              [
+                -76.009536, 
+                39.449316
+              ], 
+              [
+                -76.01188, 
+                39.452524
+              ], 
+              [
+                -76.012312, 
+                39.453115
+              ], 
+              [
+                -76.011716, 
+                39.454165
+              ], 
+              [
+                -76.010009, 
+                39.45717
+              ], 
+              [
+                -76.002926, 
+                39.469642
+              ], 
+              [
+                -75.99657, 
+                39.476658
+              ], 
+              [
+                -75.995289, 
+                39.483014
+              ], 
+              [
+                -75.994135, 
+                39.488743
+              ], 
+              [
+                -75.993469, 
+                39.490583
+              ], 
+              [
+                -75.986298, 
+                39.510398
+              ], 
+              [
+                -75.985403, 
+                39.512108
+              ], 
+              [
+                -75.985238, 
+                39.512424
+              ], 
+              [
+                -75.980279, 
+                39.5219
+              ], 
+              [
+                -75.976105, 
+                39.529876
+              ], 
+              [
+                -75.976057, 
+                39.529968
+              ], 
+              [
+                -75.975313, 
+                39.530678
+              ], 
+              [
+                -75.973678, 
+                39.532237
+              ], 
+              [
+                -75.966955, 
+                39.53865
+              ], 
+              [
+                -75.966959, 
+                39.538839
+              ], 
+              [
+                -75.967093, 
+                39.544623
+              ], 
+              [
+                -75.967173, 
+                39.548047
+              ], 
+              [
+                -75.967186, 
+                39.548627
+              ], 
+              [
+                -75.967221, 
+                39.55014
+              ], 
+              [
+                -75.970337, 
+                39.557637
+              ], 
+              [
+                -75.992633, 
+                39.563098
+              ], 
+              [
+                -75.999669, 
+                39.560488
+              ], 
+              [
+                -76.00019, 
+                39.559696
+              ], 
+              [
+                -76.001244, 
+                39.558096
+              ], 
+              [
+                -76.002793, 
+                39.555741
+              ], 
+              [
+                -76.003434, 
+                39.554768
+              ], 
+              [
+                -76.004207, 
+                39.553594
+              ], 
+              [
+                -76.006213, 
+                39.550546
+              ], 
+              [
+                -76.006272, 
+                39.550457
+              ], 
+              [
+                -76.006341, 
+                39.550352
+              ], 
+              [
+                -76.03042, 
+                39.548784
+              ], 
+              [
+                -76.046876, 
+                39.547713
+              ], 
+              [
+                -76.063379, 
+                39.546638
+              ], 
+              [
+                -76.063811, 
+                39.54661
+              ], 
+              [
+                -76.075714, 
+                39.543032
+              ], 
+              [
+                -76.096072, 
+                39.536912
+              ], 
+              [
+                -76.102955, 
+                39.523639
+              ], 
+              [
+                -76.105571, 
+                39.518595
+              ], 
+              [
+                -76.105678, 
+                39.518388
+              ], 
+              [
+                -76.106215, 
+                39.517353
+              ], 
+              [
+                -76.107126, 
+                39.515597
+              ], 
+              [
+                -76.111583, 
+                39.507001
+              ], 
+              [
+                -76.116831, 
+                39.496882
+              ], 
+              [
+                -76.117253, 
+                39.496068
+              ], 
+              [
+                -76.11461, 
+                39.488619
+              ], 
+              [
+                -76.113929, 
+                39.486701
+              ], 
+              [
+                -76.108813, 
+                39.482333
+              ], 
+              [
+                -76.104665, 
+                39.478792
+              ], 
+              [
+                -76.100218, 
+                39.476918
+              ], 
+              [
+                -76.099506, 
+                39.476618
+              ], 
+              [
+                -76.098315, 
+                39.476116
+              ], 
+              [
+                -76.083286, 
+                39.47786
+              ], 
+              [
+                -76.083082, 
+                39.477809
+              ], 
+              [
+                -76.08159, 
+                39.477438
+              ], 
+              [
+                -76.073119, 
+                39.475331
+              ], 
+              [
+                -76.072309, 
+                39.47513
+              ], 
+              [
+                -76.071975, 
+                39.475047
+              ], 
+              [
+                -76.071836, 
+                39.47476
+              ], 
+              [
+                -76.069814, 
+                39.470577
+              ], 
+              [
+                -76.063874, 
+                39.458295
+              ], 
+              [
+                -76.062259, 
+                39.454955
+              ], 
+              [
+                -76.060931, 
+                39.452208
+              ], 
+              [
+                -76.060944, 
+                39.451174
+              ], 
+              [
+                -76.060988, 
+                39.447775
+              ], 
+              [
+                -76.060989, 
+                39.447722
+              ], 
+              [
+                -76.081176, 
+                39.436712
+              ], 
+              [
+                -76.081409, 
+                39.436891
+              ], 
+              [
+                -76.083269, 
+                39.438321
+              ], 
+              [
+                -76.083405, 
+                39.438302
+              ], 
+              [
+                -76.093595, 
+                39.436871
+              ], 
+              [
+                -76.102232, 
+                39.435659
+              ], 
+              [
+                -76.112761, 
+                39.429852
+              ], 
+              [
+                -76.115096, 
+                39.428565
+              ], 
+              [
+                -76.11682, 
+                39.427614
+              ], 
+              [
+                -76.117172, 
+                39.42717
+              ], 
+              [
+                -76.120991, 
+                39.422358
+              ], 
+              [
+                -76.121754, 
+                39.421396
+              ], 
+              [
+                -76.121889, 
+                39.421226
+              ], 
+              [
+                -76.132114, 
+                39.414579
+              ], 
+              [
+                -76.142224, 
+                39.408007
+              ], 
+              [
+                -76.146373, 
+                39.40531
+              ], 
+              [
+                -76.147048, 
+                39.405364
+              ], 
+              [
+                -76.150249, 
+                39.405623
+              ], 
+              [
+                -76.150516, 
+                39.405644
+              ], 
+              [
+                -76.150934, 
+                39.405678
+              ], 
+              [
+                -76.151948, 
+                39.40576
+              ], 
+              [
+                -76.152059, 
+                39.405769
+              ], 
+              [
+                -76.152357, 
+                39.405793
+              ], 
+              [
+                -76.157108, 
+                39.406176
+              ], 
+              [
+                -76.158592, 
+                39.406295
+              ], 
+              [
+                -76.158774, 
+                39.40631
+              ], 
+              [
+                -76.159358, 
+                39.405661
+              ], 
+              [
+                -76.171134, 
+                39.392588
+              ], 
+              [
+                -76.171474, 
+                39.39221
+              ], 
+              [
+                -76.171747, 
+                39.391747
+              ], 
+              [
+                -76.175121, 
+                39.386019
+              ], 
+              [
+                -76.175597, 
+                39.38521
+              ], 
+              [
+                -76.175928, 
+                39.384648
+              ], 
+              [
+                -76.180057, 
+                39.377638
+              ], 
+              [
+                -76.180074, 
+                39.377609
+              ], 
+              [
+                -76.199356, 
+                39.366221
+              ], 
+              [
+                -76.202346, 
+                39.364455
+              ], 
+              [
+                -76.226976, 
+                39.349908
+              ], 
+              [
+                -76.227625, 
+                39.350109
+              ], 
+              [
+                -76.229614, 
+                39.350723
+              ], 
+              [
+                -76.233776, 
+                39.352008
+              ], 
+              [
+                -76.234743, 
+                39.353498
+              ], 
+              [
+                -76.234765, 
+                39.353532
+              ], 
+              [
+                -76.235795, 
+                39.355119
+              ], 
+              [
+                -76.23652, 
+                39.356236
+              ], 
+              [
+                -76.237943, 
+                39.358429
+              ], 
+              [
+                -76.239877, 
+                39.361408
+              ], 
+              [
+                -76.241268, 
+                39.361567
+              ], 
+              [
+                -76.243377, 
+                39.361808
+              ], 
+              [
+                -76.244443, 
+                39.361731
+              ], 
+              [
+                -76.244988, 
+                39.361691
+              ], 
+              [
+                -76.245273, 
+                39.361671
+              ], 
+              [
+                -76.250107, 
+                39.36132
+              ], 
+              [
+                -76.250483, 
+                39.361136
+              ], 
+              [
+                -76.266365, 
+                39.353352
+              ], 
+              [
+                -76.265277, 
+                39.350008
+              ], 
+              [
+                -76.263019, 
+                39.348634
+              ], 
+              [
+                -76.258377, 
+                39.345808
+              ], 
+              [
+                -76.258342, 
+                39.345737
+              ], 
+              [
+                -76.253928, 
+                39.336768
+              ], 
+              [
+                -76.262008, 
+                39.334708
+              ], 
+              [
+                -76.262471, 
+                39.33459
+              ], 
+              [
+                -76.263073, 
+                39.334436
+              ], 
+              [
+                -76.263577, 
+                39.334308
+              ], 
+              [
+                -76.263624, 
+                39.334265
+              ], 
+              [
+                -76.265615, 
+                39.33245
+              ], 
+              [
+                -76.265777, 
+                39.332302
+              ], 
+              [
+                -76.266094, 
+                39.332013
+              ], 
+              [
+                -76.266257, 
+                39.331864
+              ], 
+              [
+                -76.266407, 
+                39.331727
+              ], 
+              [
+                -76.272671, 
+                39.326015
+              ], 
+              [
+                -76.276078, 
+                39.322908
+              ], 
+              [
+                -76.277813, 
+                39.318738
+              ], 
+              [
+                -76.277866, 
+                39.31861
+              ], 
+              [
+                -76.278239, 
+                39.317712
+              ], 
+              [
+                -76.278351, 
+                39.317444
+              ], 
+              [
+                -76.278499, 
+                39.317088
+              ], 
+              [
+                -76.280599, 
+                39.312037
+              ], 
+              [
+                -76.280778, 
+                39.311608
+              ], 
+              [
+                -76.281088, 
+                39.30793
+              ], 
+              [
+                -76.281374, 
+                39.304531
+              ], 
+              [
+                -76.281429, 
+                39.303872
+              ], 
+              [
+                -76.281556, 
+                39.302369
+              ], 
+              [
+                -76.281578, 
+                39.302108
+              ], 
+              [
+                -76.2817, 
+                39.30211
+              ], 
+              [
+                -76.296546, 
+                39.302383
+              ], 
+              [
+                -76.297878, 
+                39.302408
+              ], 
+              [
+                -76.291078, 
+                39.318108
+              ], 
+              [
+                -76.298778, 
+                39.329208
+              ], 
+              [
+                -76.298778, 
+                39.333958
+              ], 
+              [
+                -76.298778, 
+                39.339278
+              ], 
+              [
+                -76.298778, 
+                39.340208
+              ], 
+              [
+                -76.297569, 
+                39.342244
+              ], 
+              [
+                -76.295558, 
+                39.345631
+              ], 
+              [
+                -76.294978, 
+                39.346608
+              ], 
+              [
+                -76.295678, 
+                39.350008
+              ], 
+              [
+                -76.30177, 
+                39.352216
+              ], 
+              [
+                -76.310618, 
+                39.355423
+              ], 
+              [
+                -76.310829, 
+                39.3555
+              ], 
+              [
+                -76.31136, 
+                39.355693
+              ], 
+              [
+                -76.311679, 
+                39.355808
+              ], 
+              [
+                -76.31261, 
+                39.355917
+              ], 
+              [
+                -76.312864, 
+                39.355946
+              ], 
+              [
+                -76.314356, 
+                39.35612
+              ], 
+              [
+                -76.322687, 
+                39.357092
+              ], 
+              [
+                -76.323679, 
+                39.357208
+              ], 
+              [
+                -76.330027, 
+                39.356139
+              ], 
+              [
+                -76.341443, 
+                39.354217
+              ], 
+              [
+                -76.339942, 
+                39.350169
+              ], 
+              [
+                -76.335412, 
+                39.337949
+              ], 
+              [
+                -76.334401, 
+                39.335222
+              ], 
+              [
+                -76.334021, 
+                39.334197
+              ], 
+              [
+                -76.333924, 
+                39.333935
+              ], 
+              [
+                -76.338898, 
+                39.325783
+              ], 
+              [
+                -76.33957, 
+                39.324681
+              ], 
+              [
+                -76.33382, 
+                39.319611
+              ], 
+              [
+                -76.327579, 
+                39.314108
+              ], 
+              [
+                -76.337858, 
+                39.305799
+              ], 
+              [
+                -76.339817, 
+                39.304216
+              ], 
+              [
+                -76.341432, 
+                39.30291
+              ], 
+              [
+                -76.353205, 
+                39.31065
+              ], 
+              [
+                -76.354817, 
+                39.311709
+              ], 
+              [
+                -76.355495, 
+                39.312155
+              ], 
+              [
+                -76.36439, 
+                39.31184
+              ], 
+              [
+                -76.365532, 
+                39.31095
+              ], 
+              [
+                -76.380662, 
+                39.299161
+              ], 
+              [
+                -76.380734, 
+                39.298765
+              ], 
+              [
+                -76.383021, 
+                39.286231
+              ], 
+              [
+                -76.383345, 
+                39.284455
+              ], 
+              [
+                -76.383891, 
+                39.281465
+              ], 
+              [
+                -76.384901, 
+                39.275928
+              ], 
+              [
+                -76.385151, 
+                39.275766
+              ], 
+              [
+                -76.395136, 
+                39.269293
+              ], 
+              [
+                -76.395301, 
+                39.269042
+              ], 
+              [
+                -76.400094, 
+                39.261753
+              ], 
+              [
+                -76.400187, 
+                39.261612
+              ], 
+              [
+                -76.401103, 
+                39.260219
+              ], 
+              [
+                -76.402047, 
+                39.258783
+              ], 
+              [
+                -76.402355, 
+                39.258315
+              ], 
+              [
+                -76.401911, 
+                39.258053
+              ], 
+              [
+                -76.386937, 
+                39.249216
+              ], 
+              [
+                -76.38138, 
+                39.249508
+              ], 
+              [
+                -76.382358, 
+                39.247292
+              ], 
+              [
+                -76.38438, 
+                39.242708
+              ], 
+              [
+                -76.384699, 
+                39.242242
+              ], 
+              [
+                -76.38938, 
+                39.235408
+              ], 
+              [
+                -76.389563, 
+                39.235261
+              ], 
+              [
+                -76.393626, 
+                39.232012
+              ], 
+              [
+                -76.394381, 
+                39.231408
+              ], 
+              [
+                -76.398314, 
+                39.22945
+              ], 
+              [
+                -76.399122, 
+                39.229048
+              ], 
+              [
+                -76.41762, 
+                39.219838
+              ], 
+              [
+                -76.417681, 
+                39.219808
+              ], 
+              [
+                -76.41829, 
+                39.218677
+              ], 
+              [
+                -76.419201, 
+                39.216988
+              ], 
+              [
+                -76.425281, 
+                39.205708
+              ], 
+              [
+                -76.425413, 
+                39.205629
+              ], 
+              [
+                -76.441411, 
+                39.196049
+              ], 
+              [
+                -76.442482, 
+                39.195408
+              ], 
+              [
+                -76.447621, 
+                39.197977
+              ], 
+              [
+                -76.46156, 
+                39.204947
+              ], 
+              [
+                -76.462679, 
+                39.205506
+              ], 
+              [
+                -76.463483, 
+                39.205908
+              ], 
+              [
+                -76.471126, 
+                39.20554
+              ], 
+              [
+                -76.480083, 
+                39.205108
+              ], 
+              [
+                -76.482153, 
+                39.204426
+              ], 
+              [
+                -76.485527, 
+                39.203314
+              ], 
+              [
+                -76.486371, 
+                39.203036
+              ], 
+              [
+                -76.488883, 
+                39.202208
+              ], 
+              [
+                -76.489505, 
+                39.202378
+              ], 
+              [
+                -76.489777, 
+                39.202453
+              ], 
+              [
+                -76.49077, 
+                39.202724
+              ], 
+              [
+                -76.497977, 
+                39.204697
+              ], 
+              [
+                -76.498384, 
+                39.204808
+              ], 
+              [
+                -76.500086, 
+                39.207798
+              ], 
+              [
+                -76.500834, 
+                39.209113
+              ], 
+              [
+                -76.500984, 
+                39.209376
+              ], 
+              [
+                -76.519804, 
+                39.222946
+              ], 
+              [
+                -76.520584, 
+                39.223508
+              ], 
+              [
+                -76.520941, 
+                39.22324
+              ], 
+              [
+                -76.528587, 
+                39.217492
+              ], 
+              [
+                -76.529649, 
+                39.216693
+              ], 
+              [
+                -76.534285, 
+                39.213208
+              ], 
+              [
+                -76.53496, 
+                39.21228
+              ], 
+              [
+                -76.535885, 
+                39.211008
+              ], 
+              [
+                -76.533103, 
+                39.20763
+              ], 
+              [
+                -76.533085, 
+                39.207608
+              ], 
+              [
+                -76.533349, 
+                39.207172
+              ], 
+              [
+                -76.53476, 
+                39.204841
+              ], 
+              [
+                -76.535385, 
+                39.203808
+              ], 
+              [
+                -76.534185, 
+                39.190608
+              ], 
+              [
+                -76.525785, 
+                39.177908
+              ], 
+              [
+                -76.525454, 
+                39.177746
+              ], 
+              [
+                -76.525031, 
+                39.17754
+              ], 
+              [
+                -76.524221, 
+                39.177144
+              ], 
+              [
+                -76.52027, 
+                39.175214
+              ], 
+              [
+                -76.519292, 
+                39.174736
+              ], 
+              [
+                -76.511834, 
+                39.171093
+              ], 
+              [
+                -76.508384, 
+                39.169408
+              ], 
+              [
+                -76.500926, 
+                39.161286
+              ], 
+              [
+                -76.500512, 
+                39.161362
+              ], 
+              [
+                -76.484023, 
+                39.164407
+              ], 
+              [
+                -76.483845, 
+                39.164334
+              ], 
+              [
+                -76.475983, 
+                39.161109
+              ], 
+              [
+                -76.474807, 
+                39.159436
+              ], 
+              [
+                -76.473802, 
+                39.158007
+              ], 
+              [
+                -76.471483, 
+                39.154709
+              ], 
+              [
+                -76.468898, 
+                39.153161
+              ], 
+              [
+                -76.459119, 
+                39.147304
+              ], 
+              [
+                -76.458873, 
+                39.147157
+              ], 
+              [
+                -76.458649, 
+                39.147023
+              ], 
+              [
+                -76.45835, 
+                39.146844
+              ], 
+              [
+                -76.458192, 
+                39.146749
+              ], 
+              [
+                -76.452782, 
+                39.143509
+              ], 
+              [
+                -76.44011, 
+                39.137305
+              ], 
+              [
+                -76.430946, 
+                39.132818
+              ], 
+              [
+                -76.43013, 
+                39.132419
+              ], 
+              [
+                -76.428681, 
+                39.131709
+              ], 
+              [
+                -76.432481, 
+                39.126709
+              ], 
+              [
+                -76.432702, 
+                39.120752
+              ], 
+              [
+                -76.432981, 
+                39.113209
+              ], 
+              [
+                -76.432942, 
+                39.113098
+              ], 
+              [
+                -76.427196, 
+                39.096685
+              ], 
+              [
+                -76.427065, 
+                39.096309
+              ], 
+              [
+                -76.426456, 
+                39.094571
+              ], 
+              [
+                -76.426283, 
+                39.094076
+              ], 
+              [
+                -76.426276, 
+                39.094057
+              ], 
+              [
+                -76.423609, 
+                39.086438
+              ], 
+              [
+                -76.423321, 
+                39.085615
+              ], 
+              [
+                -76.423271, 
+                39.085473
+              ], 
+              [
+                -76.422714, 
+                39.083881
+              ], 
+              [
+                -76.422212, 
+                39.082448
+              ], 
+              [
+                -76.42208, 
+                39.08207
+              ], 
+              [
+                -76.42186, 
+                39.081442
+              ], 
+              [
+                -76.423081, 
+                39.07421
+              ], 
+              [
+                -76.432374, 
+                39.061648
+              ], 
+              [
+                -76.438845, 
+                39.0529
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 27, 
+      "properties": {
+        "CENSUSAREA": 9707.241, 
+        "GEO_ID": "0400000US24", 
+        "ISO": "US-MD", 
+        "LSAD": "", 
+        "NAME": "Maryland", 
+        "NAME_1": "Maryland", 
+        "STATE": "MD"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -74.900236, 
+                40.077149
+              ], 
+              [
+                -74.838008, 
+                40.10091
+              ], 
+              [
+                -74.740605, 
+                40.13521
+              ], 
+              [
+                -74.724304, 
+                40.14701
+              ], 
+              [
+                -74.724179, 
+                40.147324
+              ], 
+              [
+                -74.721604, 
+                40.15381
+              ], 
+              [
+                -74.722304, 
+                40.160609
+              ], 
+              [
+                -74.758613, 
+                40.201342
+              ], 
+              [
+                -74.770706, 
+                40.214908
+              ], 
+              [
+                -74.860492, 
+                40.284584
+              ], 
+              [
+                -74.937954, 
+                40.340634
+              ], 
+              [
+                -75.024775, 
+                40.403455
+              ], 
+              [
+                -75.035548, 
+                40.406309
+              ], 
+              [
+                -75.058848, 
+                40.418065
+              ], 
+              [
+                -75.061489, 
+                40.422848
+              ], 
+              [
+                -75.070568, 
+                40.455165
+              ], 
+              [
+                -75.065853, 
+                40.519495
+              ], 
+              [
+                -75.06509, 
+                40.526148
+              ], 
+              [
+                -75.067344, 
+                40.536428
+              ], 
+              [
+                -75.068615, 
+                40.542223
+              ], 
+              [
+                -75.100325, 
+                40.567811
+              ], 
+              [
+                -75.117292, 
+                40.573211
+              ], 
+              [
+                -75.135389, 
+                40.575624
+              ], 
+              [
+                -75.147368, 
+                40.573152
+              ], 
+              [
+                -75.190161, 
+                40.589321
+              ], 
+              [
+                -75.190858, 
+                40.591342
+              ], 
+              [
+                -75.196803, 
+                40.60858
+              ], 
+              [
+                -75.200708, 
+                40.618356
+              ], 
+              [
+                -75.20392, 
+                40.691498
+              ], 
+              [
+                -75.196533, 
+                40.751631
+              ], 
+              [
+                -75.171587, 
+                40.777745
+              ], 
+              [
+                -75.16365, 
+                40.778386
+              ], 
+              [
+                -75.149378, 
+                40.774786
+              ], 
+              [
+                -75.1344, 
+                40.773765
+              ], 
+              [
+                -75.108505, 
+                40.791094
+              ], 
+              [
+                -75.053294, 
+                40.8599
+              ], 
+              [
+                -75.051029, 
+                40.865662
+              ], 
+              [
+                -75.052538, 
+                40.872051
+              ], 
+              [
+                -75.117764, 
+                40.953023
+              ], 
+              [
+                -75.119893, 
+                40.961646
+              ], 
+              [
+                -75.120316, 
+                40.96263
+              ], 
+              [
+                -75.120435, 
+                40.968302
+              ], 
+              [
+                -75.120564, 
+                40.968313
+              ], 
+              [
+                -75.131364, 
+                40.969277
+              ], 
+              [
+                -75.135526, 
+                40.973807
+              ], 
+              [
+                -75.130575, 
+                40.991093
+              ], 
+              [
+                -75.109114, 
+                41.004102
+              ], 
+              [
+                -75.091377, 
+                41.012283
+              ], 
+              [
+                -75.069277, 
+                41.019348
+              ], 
+              [
+                -75.051794, 
+                41.027142
+              ], 
+              [
+                -75.036982, 
+                41.034702
+              ], 
+              [
+                -75.026003, 
+                41.042687
+              ], 
+              [
+                -74.980674, 
+                41.078178
+              ], 
+              [
+                -74.968389, 
+                41.087797
+              ], 
+              [
+                -74.966759, 
+                41.093425
+              ], 
+              [
+                -74.967389, 
+                41.094049
+              ], 
+              [
+                -74.969434, 
+                41.096074
+              ], 
+              [
+                -74.974338, 
+                41.103912
+              ], 
+              [
+                -74.923169, 
+                41.138146
+              ], 
+              [
+                -74.882139, 
+                41.180836
+              ], 
+              [
+                -74.867287, 
+                41.208754
+              ], 
+              [
+                -74.864356, 
+                41.224854
+              ], 
+              [
+                -74.867267, 
+                41.228861
+              ], 
+              [
+                -74.861678, 
+                41.241575
+              ], 
+              [
+                -74.838366, 
+                41.277286
+              ], 
+              [
+                -74.830057, 
+                41.2872
+              ], 
+              [
+                -74.795847, 
+                41.318951
+              ], 
+              [
+                -74.76173, 
+                41.336398
+              ], 
+              [
+                -74.694914, 
+                41.357423
+              ], 
+              [
+                -74.457584, 
+                41.248225
+              ], 
+              [
+                -74.392098, 
+                41.215594
+              ], 
+              [
+                -74.365664, 
+                41.2034
+              ], 
+              [
+                -74.234473, 
+                41.142883
+              ], 
+              [
+                -74.213373, 
+                41.133828
+              ], 
+              [
+                -74.096786, 
+                41.083796
+              ], 
+              [
+                -74.092486, 
+                41.081896
+              ], 
+              [
+                -74.041054, 
+                41.059088
+              ], 
+              [
+                -74.041049, 
+                41.059086
+              ], 
+              [
+                -73.91188, 
+                41.001297
+              ], 
+              [
+                -73.90268, 
+                40.997297
+              ], 
+              [
+                -73.893979, 
+                40.997197
+              ], 
+              [
+                -73.917905, 
+                40.917577
+              ], 
+              [
+                -73.919705, 
+                40.913478
+              ], 
+              [
+                -73.92747, 
+                40.895682
+              ], 
+              [
+                -73.933406, 
+                40.882078
+              ], 
+              [
+                -73.933408, 
+                40.882075
+              ], 
+              [
+                -73.938081, 
+                40.874699
+              ], 
+              [
+                -73.948281, 
+                40.858399
+              ], 
+              [
+                -73.986864, 
+                40.798344
+              ], 
+              [
+                -73.993029, 
+                40.788746
+              ], 
+              [
+                -74.000905, 
+                40.776488
+              ], 
+              [
+                -74.009184, 
+                40.763601
+              ], 
+              [
+                -74.013784, 
+                40.756601
+              ], 
+              [
+                -74.024543, 
+                40.709436
+              ], 
+              [
+                -74.038538, 
+                40.710741
+              ], 
+              [
+                -74.051185, 
+                40.695802
+              ], 
+              [
+                -74.069885, 
+                40.684502
+              ], 
+              [
+                -74.082786, 
+                40.673702
+              ], 
+              [
+                -74.089986, 
+                40.659903
+              ], 
+              [
+                -74.087397, 
+                40.653607
+              ], 
+              [
+                -74.094086, 
+                40.649703
+              ], 
+              [
+                -74.143387, 
+                40.641903
+              ], 
+              [
+                -74.161397, 
+                40.644092
+              ], 
+              [
+                -74.181083, 
+                40.646484
+              ], 
+              [
+                -74.186027, 
+                40.646076
+              ], 
+              [
+                -74.189106, 
+                40.643832
+              ], 
+              [
+                -74.202223, 
+                40.631053
+              ], 
+              [
+                -74.206731, 
+                40.594569
+              ], 
+              [
+                -74.208988, 
+                40.576304
+              ], 
+              [
+                -74.214788, 
+                40.560604
+              ], 
+              [
+                -74.218189, 
+                40.557204
+              ], 
+              [
+                -74.231589, 
+                40.559204
+              ], 
+              [
+                -74.248641, 
+                40.549601
+              ], 
+              [
+                -74.251441, 
+                40.542301
+              ], 
+              [
+                -74.246237, 
+                40.520963
+              ], 
+              [
+                -74.26829, 
+                40.499205
+              ], 
+              [
+                -74.269998, 
+                40.495014
+              ], 
+              [
+                -74.27269, 
+                40.488405
+              ], 
+              [
+                -74.26759, 
+                40.471806
+              ], 
+              [
+                -74.261889, 
+                40.464706
+              ], 
+              [
+                -74.236689, 
+                40.457806
+              ], 
+              [
+                -74.225035, 
+                40.453301
+              ], 
+              [
+                -74.224047, 
+                40.452919
+              ], 
+              [
+                -74.222959, 
+                40.452499
+              ], 
+              [
+                -74.209788, 
+                40.447407
+              ], 
+              [
+                -74.206188, 
+                40.440707
+              ], 
+              [
+                -74.206419, 
+                40.438789
+              ], 
+              [
+                -74.208655, 
+                40.43752
+              ], 
+              [
+                -74.207205, 
+                40.435434
+              ], 
+              [
+                -74.202128, 
+                40.43894
+              ], 
+              [
+                -74.193908, 
+                40.440995
+              ], 
+              [
+                -74.191309, 
+                40.44299
+              ], 
+              [
+                -74.187787, 
+                40.447407
+              ], 
+              [
+                -74.174787, 
+                40.455607
+              ], 
+              [
+                -74.174893, 
+                40.454491
+              ], 
+              [
+                -74.175074, 
+                40.449144
+              ], 
+              [
+                -74.176842, 
+                40.44774
+              ], 
+              [
+                -74.175346, 
+                40.446607
+              ], 
+              [
+                -74.169977, 
+                40.45064
+              ], 
+              [
+                -74.167009, 
+                40.448737
+              ], 
+              [
+                -74.166193, 
+                40.447128
+              ], 
+              [
+                -74.164029, 
+                40.448312
+              ], 
+              [
+                -74.163314, 
+                40.448424
+              ], 
+              [
+                -74.157787, 
+                40.446607
+              ], 
+              [
+                -74.153611, 
+                40.447647
+              ], 
+              [
+                -74.152686, 
+                40.447344
+              ], 
+              [
+                -74.151952, 
+                40.448062
+              ], 
+              [
+                -74.142886, 
+                40.450407
+              ], 
+              [
+                -74.139886, 
+                40.453407
+              ], 
+              [
+                -74.138415, 
+                40.454468
+              ], 
+              [
+                -74.135823, 
+                40.455196
+              ], 
+              [
+                -74.133727, 
+                40.454672
+              ], 
+              [
+                -74.131135, 
+                40.453245
+              ], 
+              [
+                -74.127466, 
+                40.451061
+              ], 
+              [
+                -74.124692, 
+                40.44958
+              ], 
+              [
+                -74.122327, 
+                40.448258
+              ], 
+              [
+                -74.116863, 
+                40.446069
+              ], 
+              [
+                -74.088085, 
+                40.438407
+              ], 
+              [
+                -74.076185, 
+                40.433707
+              ], 
+              [
+                -74.058984, 
+                40.422708
+              ], 
+              [
+                -74.047884, 
+                40.418908
+              ], 
+              [
+                -74.006383, 
+                40.411108
+              ], 
+              [
+                -73.998505, 
+                40.410911
+              ], 
+              [
+                -73.995486, 
+                40.419472
+              ], 
+              [
+                -73.991682, 
+                40.442908
+              ], 
+              [
+                -74.006077, 
+                40.464625
+              ], 
+              [
+                -74.017783, 
+                40.472207
+              ], 
+              [
+                -74.017917, 
+                40.474338
+              ], 
+              [
+                -74.014031, 
+                40.476471
+              ], 
+              [
+                -74.0071, 
+                40.475298
+              ], 
+              [
+                -73.995683, 
+                40.468707
+              ], 
+              [
+                -73.978282, 
+                40.440208
+              ], 
+              [
+                -73.976982, 
+                40.408508
+              ], 
+              [
+                -73.971381, 
+                40.371709
+              ], 
+              [
+                -73.971381, 
+                40.34801
+              ], 
+              [
+                -73.977442, 
+                40.299373
+              ], 
+              [
+                -73.981681, 
+                40.279411
+              ], 
+              [
+                -73.993292, 
+                40.237669
+              ], 
+              [
+                -74.016017, 
+                40.166914
+              ], 
+              [
+                -74.030181, 
+                40.122814
+              ], 
+              [
+                -74.03408, 
+                40.103115
+              ], 
+              [
+                -74.031861, 
+                40.101047
+              ], 
+              [
+                -74.031318, 
+                40.100541
+              ], 
+              [
+                -74.033546, 
+                40.099518
+              ], 
+              [
+                -74.039421, 
+                40.081437
+              ], 
+              [
+                -74.058798, 
+                40.001244
+              ], 
+              [
+                -74.064135, 
+                39.979157
+              ], 
+              [
+                -74.077247, 
+                39.910991
+              ], 
+              [
+                -74.090945, 
+                39.799978
+              ], 
+              [
+                -74.097071, 
+                39.767847
+              ], 
+              [
+                -74.096906, 
+                39.76303
+              ], 
+              [
+                -74.09892, 
+                39.759538
+              ], 
+              [
+                -74.101443, 
+                39.756173
+              ], 
+              [
+                -74.113655, 
+                39.740719
+              ], 
+              [
+                -74.141733, 
+                39.689435
+              ], 
+              [
+                -74.190974, 
+                39.625118
+              ], 
+              [
+                -74.240506, 
+                39.554911
+              ], 
+              [
+                -74.249043, 
+                39.547994
+              ], 
+              [
+                -74.27737, 
+                39.514064
+              ], 
+              [
+                -74.291585, 
+                39.507705
+              ], 
+              [
+                -74.311037, 
+                39.506715
+              ], 
+              [
+                -74.312451, 
+                39.499869
+              ], 
+              [
+                -74.313689, 
+                39.493874
+              ], 
+              [
+                -74.308344, 
+                39.483945
+              ], 
+              [
+                -74.304778, 
+                39.482945
+              ], 
+              [
+                -74.302184, 
+                39.478935
+              ], 
+              [
+                -74.304343, 
+                39.471445
+              ], 
+              [
+                -74.334804, 
+                39.432001
+              ], 
+              [
+                -74.36699, 
+                39.402017
+              ], 
+              [
+                -74.406692, 
+                39.377516
+              ], 
+              [
+                -74.406792, 
+                39.373916
+              ], 
+              [
+                -74.408237, 
+                39.365071
+              ], 
+              [
+                -74.412692, 
+                39.360816
+              ], 
+              [
+                -74.459894, 
+                39.345016
+              ], 
+              [
+                -74.521797, 
+                39.313816
+              ], 
+              [
+                -74.541443, 
+                39.300245
+              ], 
+              [
+                -74.551151, 
+                39.293539
+              ], 
+              [
+                -74.553439, 
+                39.286915
+              ], 
+              [
+                -74.560957, 
+                39.278677
+              ], 
+              [
+                -74.581008, 
+                39.270819
+              ], 
+              [
+                -74.597921, 
+                39.258851
+              ], 
+              [
+                -74.614481, 
+                39.244659
+              ], 
+              [
+                -74.636306, 
+                39.220834
+              ], 
+              [
+                -74.646595, 
+                39.212002
+              ], 
+              [
+                -74.651443, 
+                39.198578
+              ], 
+              [
+                -74.67143, 
+                39.179802
+              ], 
+              [
+                -74.714341, 
+                39.119804
+              ], 
+              [
+                -74.71532, 
+                39.116893
+              ], 
+              [
+                -74.714135, 
+                39.114631
+              ], 
+              [
+                -74.704409, 
+                39.107858
+              ], 
+              [
+                -74.705876, 
+                39.102937
+              ], 
+              [
+                -74.738316, 
+                39.074727
+              ], 
+              [
+                -74.778777, 
+                39.023073
+              ], 
+              [
+                -74.786356, 
+                39.000113
+              ], 
+              [
+                -74.792723, 
+                38.991991
+              ], 
+              [
+                -74.807917, 
+                38.985948
+              ], 
+              [
+                -74.819354, 
+                38.979402
+              ], 
+              [
+                -74.850748, 
+                38.954538
+              ], 
+              [
+                -74.864458, 
+                38.94041
+              ], 
+              [
+                -74.865198, 
+                38.941439
+              ], 
+              [
+                -74.870497, 
+                38.943543
+              ], 
+              [
+                -74.882309, 
+                38.941759
+              ], 
+              [
+                -74.90705, 
+                38.931994
+              ], 
+              [
+                -74.920414, 
+                38.929136
+              ], 
+              [
+                -74.933571, 
+                38.928519
+              ], 
+              [
+                -74.963463, 
+                38.931194
+              ], 
+              [
+                -74.967274, 
+                38.933413
+              ], 
+              [
+                -74.971995, 
+                38.94037
+              ], 
+              [
+                -74.955363, 
+                39.001262
+              ], 
+              [
+                -74.94947, 
+                39.015637
+              ], 
+              [
+                -74.93832, 
+                39.035185
+              ], 
+              [
+                -74.903664, 
+                39.087437
+              ], 
+              [
+                -74.897784, 
+                39.098811
+              ], 
+              [
+                -74.892547, 
+                39.113183
+              ], 
+              [
+                -74.885914, 
+                39.143627
+              ], 
+              [
+                -74.887167, 
+                39.158825
+              ], 
+              [
+                -74.905181, 
+                39.174945
+              ], 
+              [
+                -74.914936, 
+                39.177553
+              ], 
+              [
+                -74.962382, 
+                39.190238
+              ], 
+              [
+                -74.976266, 
+                39.192271
+              ], 
+              [
+                -74.998002, 
+                39.191253
+              ], 
+              [
+                -75.026179, 
+                39.193621
+              ], 
+              [
+                -75.028885, 
+                39.19456
+              ], 
+              [
+                -75.027824, 
+                39.199482
+              ], 
+              [
+                -75.023586, 
+                39.202594
+              ], 
+              [
+                -75.023437, 
+                39.204791
+              ], 
+              [
+                -75.026376, 
+                39.20985
+              ], 
+              [
+                -75.035672, 
+                39.215415
+              ], 
+              [
+                -75.041663, 
+                39.215511
+              ], 
+              [
+                -75.047797, 
+                39.211702
+              ], 
+              [
+                -75.052326, 
+                39.213609
+              ], 
+              [
+                -75.062506, 
+                39.213564
+              ], 
+              [
+                -75.086395, 
+                39.208159
+              ], 
+              [
+                -75.101019, 
+                39.211657
+              ], 
+              [
+                -75.107286, 
+                39.211403
+              ], 
+              [
+                -75.114748, 
+                39.207554
+              ], 
+              [
+                -75.12707, 
+                39.189766
+              ], 
+              [
+                -75.136548, 
+                39.179425
+              ], 
+              [
+                -75.139136, 
+                39.180021
+              ], 
+              [
+                -75.165979, 
+                39.201842
+              ], 
+              [
+                -75.164798, 
+                39.216606
+              ], 
+              [
+                -75.170444, 
+                39.234643
+              ], 
+              [
+                -75.177506, 
+                39.242746
+              ], 
+              [
+                -75.205857, 
+                39.262619
+              ], 
+              [
+                -75.21251, 
+                39.262755
+              ], 
+              [
+                -75.241639, 
+                39.274097
+              ], 
+              [
+                -75.244056, 
+                39.27769
+              ], 
+              [
+                -75.242881, 
+                39.280574
+              ], 
+              [
+                -75.244357, 
+                39.2857
+              ], 
+              [
+                -75.251806, 
+                39.299913
+              ], 
+              [
+                -75.271629, 
+                39.304041
+              ], 
+              [
+                -75.28262, 
+                39.299055
+              ], 
+              [
+                -75.285333, 
+                39.292212
+              ], 
+              [
+                -75.288898, 
+                39.289557
+              ], 
+              [
+                -75.30601, 
+                39.301712
+              ], 
+              [
+                -75.315201, 
+                39.310593
+              ], 
+              [
+                -75.326754, 
+                39.332473
+              ], 
+              [
+                -75.327463, 
+                39.33927
+              ], 
+              [
+                -75.333743, 
+                39.345335
+              ], 
+              [
+                -75.341969, 
+                39.348697
+              ], 
+              [
+                -75.355558, 
+                39.347823
+              ], 
+              [
+                -75.365016, 
+                39.341388
+              ], 
+              [
+                -75.39003, 
+                39.358259
+              ], 
+              [
+                -75.394331, 
+                39.363753
+              ], 
+              [
+                -75.395181, 
+                39.371398
+              ], 
+              [
+                -75.399304, 
+                39.37949
+              ], 
+              [
+                -75.407294, 
+                39.381954
+              ], 
+              [
+                -75.422099, 
+                39.386521
+              ], 
+              [
+                -75.431803, 
+                39.391625
+              ], 
+              [
+                -75.442393, 
+                39.402291
+              ], 
+              [
+                -75.465212, 
+                39.43893
+              ], 
+              [
+                -75.476279, 
+                39.438126
+              ], 
+              [
+                -75.483572, 
+                39.440824
+              ], 
+              [
+                -75.505672, 
+                39.452927
+              ], 
+              [
+                -75.508383, 
+                39.459131
+              ], 
+              [
+                -75.536431, 
+                39.460559
+              ], 
+              [
+                -75.542894, 
+                39.470447
+              ], 
+              [
+                -75.544368, 
+                39.479602
+              ], 
+              [
+                -75.542693, 
+                39.496568
+              ], 
+              [
+                -75.528088, 
+                39.498114
+              ], 
+              [
+                -75.527141, 
+                39.500112
+              ], 
+              [
+                -75.514756, 
+                39.562612
+              ], 
+              [
+                -75.511932, 
+                39.567616
+              ], 
+              [
+                -75.512732, 
+                39.578
+              ], 
+              [
+                -75.525677, 
+                39.584048
+              ], 
+              [
+                -75.531133, 
+                39.587984
+              ], 
+              [
+                -75.534477, 
+                39.590384
+              ], 
+              [
+                -75.537213, 
+                39.592944
+              ], 
+              [
+                -75.53954, 
+                39.594251
+              ], 
+              [
+                -75.539949, 
+                39.594384
+              ], 
+              [
+                -75.543965, 
+                39.596
+              ], 
+              [
+                -75.545405, 
+                39.596784
+              ], 
+              [
+                -75.55587, 
+                39.605824
+              ], 
+              [
+                -75.559446, 
+                39.629812
+              ], 
+              [
+                -75.526844, 
+                39.655713
+              ], 
+              [
+                -75.526344, 
+                39.656413
+              ], 
+              [
+                -75.509342, 
+                39.685313
+              ], 
+              [
+                -75.509742, 
+                39.686113
+              ], 
+              [
+                -75.504042, 
+                39.698313
+              ], 
+              [
+                -75.475384, 
+                39.731057
+              ], 
+              [
+                -75.474168, 
+                39.735473
+              ], 
+              [
+                -75.469239, 
+                39.743613
+              ], 
+              [
+                -75.466263, 
+                39.750737
+              ], 
+              [
+                -75.466249, 
+                39.750769
+              ], 
+              [
+                -75.448135, 
+                39.773969
+              ], 
+              [
+                -75.440623, 
+                39.780926
+              ], 
+              [
+                -75.437938, 
+                39.783413
+              ], 
+              [
+                -75.416095, 
+                39.79583
+              ], 
+              [
+                -75.415041, 
+                39.801786
+              ], 
+              [
+                -75.390169, 
+                39.816549
+              ], 
+              [
+                -75.374635, 
+                39.82577
+              ], 
+              [
+                -75.3065, 
+                39.849812
+              ], 
+              [
+                -75.271159, 
+                39.84944
+              ], 
+              [
+                -75.235026, 
+                39.856613
+              ], 
+              [
+                -75.210972, 
+                39.865706
+              ], 
+              [
+                -75.210425, 
+                39.865913
+              ], 
+              [
+                -75.184952, 
+                39.881615
+              ], 
+              [
+                -75.153925, 
+                39.906144
+              ], 
+              [
+                -75.13322, 
+                39.922512
+              ], 
+              [
+                -75.085754, 
+                39.967572
+              ], 
+              [
+                -75.072017, 
+                39.980612
+              ], 
+              [
+                -75.056039, 
+                39.991795
+              ], 
+              [
+                -75.014343, 
+                40.020976
+              ], 
+              [
+                -74.974713, 
+                40.048711
+              ], 
+              [
+                -74.97429, 
+                40.048872
+              ], 
+              [
+                -74.900236, 
+                40.077149
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 28, 
+      "properties": {
+        "CENSUSAREA": 7354.22, 
+        "GEO_ID": "0400000US34", 
+        "ISO": "US-NJ", 
+        "LSAD": "", 
+        "NAME": "New Jersey", 
+        "NAME_1": "New Jersey", 
+        "STATE": "NJ"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -75.753765, 
+                35.199612
+              ], 
+              [
+                -75.74522, 
+                35.20303
+              ], 
+              [
+                -75.734171, 
+                35.204347
+              ], 
+              [
+                -75.718015, 
+                35.209377
+              ], 
+              [
+                -75.708947, 
+                35.213912
+              ], 
+              [
+                -75.698972, 
+                35.221166
+              ], 
+              [
+                -75.694437, 
+                35.22298
+              ], 
+              [
+                -75.68749, 
+                35.231171
+              ], 
+              [
+                -75.684006, 
+                35.232913
+              ], 
+              [
+                -75.681916, 
+                35.232913
+              ], 
+              [
+                -75.675394, 
+                35.228421
+              ], 
+              [
+                -75.664512, 
+                35.227514
+              ], 
+              [
+                -75.640934, 
+                35.233862
+              ], 
+              [
+                -75.630358, 
+                35.238487
+              ], 
+              [
+                -75.615378, 
+                35.248938
+              ], 
+              [
+                -75.599005, 
+                35.256253
+              ], 
+              [
+                -75.598312, 
+                35.261067
+              ], 
+              [
+                -75.59796, 
+                35.266704
+              ], 
+              [
+                -75.596915, 
+                35.269491
+              ], 
+              [
+                -75.585419, 
+                35.266356
+              ], 
+              [
+                -75.581935, 
+                35.263917
+              ], 
+              [
+                -75.561033, 
+                35.266008
+              ], 
+              [
+                -75.535741, 
+                35.272856
+              ], 
+              [
+                -75.529393, 
+                35.288272
+              ], 
+              [
+                -75.523952, 
+                35.318198
+              ], 
+              [
+                -75.518511, 
+                35.336335
+              ], 
+              [
+                -75.51261, 
+                35.362853
+              ], 
+              [
+                -75.506722, 
+                35.387118
+              ], 
+              [
+                -75.500374, 
+                35.424298
+              ], 
+              [
+                -75.494933, 
+                35.454224
+              ], 
+              [
+                -75.487678, 
+                35.485056
+              ], 
+              [
+                -75.488585, 
+                35.497752
+              ], 
+              [
+                -75.489618, 
+                35.508471
+              ], 
+              [
+                -75.487528, 
+                35.525889
+              ], 
+              [
+                -75.482237, 
+                35.53856
+              ], 
+              [
+                -75.47861, 
+                35.553069
+              ], 
+              [
+                -75.47861, 
+                35.599318
+              ], 
+              [
+                -75.48133, 
+                35.622896
+              ], 
+              [
+                -75.487678, 
+                35.648287
+              ], 
+              [
+                -75.498675, 
+                35.666281
+              ], 
+              [
+                -75.507385, 
+                35.680564
+              ], 
+              [
+                -75.515745, 
+                35.721671
+              ], 
+              [
+                -75.515397, 
+                35.73038
+              ], 
+              [
+                -75.533512, 
+                35.773577
+              ], 
+              [
+                -75.528992, 
+                35.776289
+              ], 
+              [
+                -75.522232, 
+                35.774178
+              ], 
+              [
+                -75.502427, 
+                35.742913
+              ], 
+              [
+                -75.496086, 
+                35.728515
+              ], 
+              [
+                -75.479128, 
+                35.678634
+              ], 
+              [
+                -75.458659, 
+                35.596597
+              ], 
+              [
+                -75.460061, 
+                35.581314
+              ], 
+              [
+                -75.462491, 
+                35.553556
+              ], 
+              [
+                -75.471355, 
+                35.479615
+              ], 
+              [
+                -75.486771, 
+                35.391652
+              ], 
+              [
+                -75.502188, 
+                35.320012
+              ], 
+              [
+                -75.52592, 
+                35.233839
+              ], 
+              [
+                -75.533627, 
+                35.225825
+              ], 
+              [
+                -75.544809, 
+                35.228421
+              ], 
+              [
+                -75.560225, 
+                35.232048
+              ], 
+              [
+                -75.580176, 
+                35.231142
+              ], 
+              [
+                -75.610101, 
+                35.227514
+              ], 
+              [
+                -75.635493, 
+                35.22026
+              ], 
+              [
+                -75.672673, 
+                35.208471
+              ], 
+              [
+                -75.728897, 
+                35.190334
+              ], 
+              [
+                -75.749406, 
+                35.185207
+              ], 
+              [
+                -75.757916, 
+                35.183079
+              ], 
+              [
+                -75.769705, 
+                35.180359
+              ], 
+              [
+                -75.789655, 
+                35.172197
+              ], 
+              [
+                -75.840438, 
+                35.15134
+              ], 
+              [
+                -75.912985, 
+                35.1196
+              ], 
+              [
+                -75.944725, 
+                35.105091
+              ], 
+              [
+                -75.963768, 
+                35.092395
+              ], 
+              [
+                -75.982812, 
+                35.081513
+              ], 
+              [
+                -76.00151, 
+                35.06723
+              ], 
+              [
+                -76.013145, 
+                35.061855
+              ], 
+              [
+                -76.014954, 
+                35.065349
+              ], 
+              [
+                -76.013561, 
+                35.068832
+              ], 
+              [
+                -76.000949, 
+                35.084234
+              ], 
+              [
+                -75.99188, 
+                35.092395
+              ], 
+              [
+                -75.989175, 
+                35.100882
+              ], 
+              [
+                -75.990569, 
+                35.108546
+              ], 
+              [
+                -75.989175, 
+                35.115165
+              ], 
+              [
+                -75.98395, 
+                35.120042
+              ], 
+              [
+                -75.973499, 
+                35.121087
+              ], 
+              [
+                -75.966489, 
+                35.117787
+              ], 
+              [
+                -75.9547, 
+                35.1196
+              ], 
+              [
+                -75.923867, 
+                35.135017
+              ], 
+              [
+                -75.910265, 
+                35.142271
+              ], 
+              [
+                -75.893942, 
+                35.150433
+              ], 
+              [
+                -75.839531, 
+                35.172197
+              ], 
+              [
+                -75.819172, 
+                35.176826
+              ], 
+              [
+                -75.812902, 
+                35.178568
+              ], 
+              [
+                -75.801444, 
+                35.183079
+              ], 
+              [
+                -75.793283, 
+                35.18852
+              ], 
+              [
+                -75.785729, 
+                35.194244
+              ], 
+              [
+                -75.754289, 
+                35.199402
+              ], 
+              [
+                -75.753765, 
+                35.199612
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -75.675245, 
+                35.929024
+              ], 
+              [
+                -75.65954, 
+                35.919564
+              ], 
+              [
+                -75.662938, 
+                35.916166
+              ], 
+              [
+                -75.662019, 
+                35.906522
+              ], 
+              [
+                -75.653478, 
+                35.904686
+              ], 
+              [
+                -75.648519, 
+                35.906982
+              ], 
+              [
+                -75.64512, 
+                35.905788
+              ], 
+              [
+                -75.62767, 
+                35.883149
+              ], 
+              [
+                -75.616833, 
+                35.856331
+              ], 
+              [
+                -75.619772, 
+                35.847606
+              ], 
+              [
+                -75.614361, 
+                35.815659
+              ], 
+              [
+                -75.620454, 
+                35.809253
+              ], 
+              [
+                -75.624235, 
+                35.809387
+              ], 
+              [
+                -75.63898, 
+                35.818639
+              ], 
+              [
+                -75.667891, 
+                35.82354
+              ], 
+              [
+                -75.675054, 
+                35.830204
+              ], 
+              [
+                -75.660086, 
+                35.83861
+              ], 
+              [
+                -75.660598, 
+                35.862541
+              ], 
+              [
+                -75.663356, 
+                35.869835
+              ], 
+              [
+                -75.67283, 
+                35.882423
+              ], 
+              [
+                -75.681415, 
+                35.88398
+              ], 
+              [
+                -75.697672, 
+                35.901639
+              ], 
+              [
+                -75.696871, 
+                35.909556
+              ], 
+              [
+                -75.702165, 
+                35.915428
+              ], 
+              [
+                -75.723782, 
+                35.925569
+              ], 
+              [
+                -75.727251, 
+                35.93362
+              ], 
+              [
+                -75.726807, 
+                35.935844
+              ], 
+              [
+                -75.718266, 
+                35.939714
+              ], 
+              [
+                -75.705323, 
+                35.939403
+              ], 
+              [
+                -75.69115, 
+                35.936932
+              ], 
+              [
+                -75.686358, 
+                35.932973
+              ], 
+              [
+                -75.675245, 
+                35.929024
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -76.491497, 
+                36.550365
+              ], 
+              [
+                -76.313215, 
+                36.550551
+              ], 
+              [
+                -76.313196, 
+                36.550551
+              ], 
+              [
+                -76.12236, 
+                36.550621
+              ], 
+              [
+                -76.034751, 
+                36.550653
+              ], 
+              [
+                -76.02675, 
+                36.550553
+              ], 
+              [
+                -75.957648, 
+                36.550553
+              ], 
+              [
+                -75.955748, 
+                36.550553
+              ], 
+              [
+                -75.953447, 
+                36.550553
+              ], 
+              [
+                -75.952847, 
+                36.550553
+              ], 
+              [
+                -75.922046, 
+                36.550654
+              ], 
+              [
+                -75.911446, 
+                36.550654
+              ], 
+              [
+                -75.909046, 
+                36.550654
+              ], 
+              [
+                -75.904745, 
+                36.550654
+              ], 
+              [
+                -75.903445, 
+                36.550654
+              ], 
+              [
+                -75.894145, 
+                36.550754
+              ], 
+              [
+                -75.893245, 
+                36.550654
+              ], 
+              [
+                -75.891945, 
+                36.550754
+              ], 
+              [
+                -75.886545, 
+                36.550754
+              ], 
+              [
+                -75.885945, 
+                36.550754
+              ], 
+              [
+                -75.880644, 
+                36.550754
+              ], 
+              [
+                -75.879744, 
+                36.550754
+              ], 
+              [
+                -75.867044, 
+                36.550754
+              ], 
+              [
+                -75.856901, 
+                36.500155
+              ], 
+              [
+                -75.834975, 
+                36.42265
+              ], 
+              [
+                -75.818735, 
+                36.357579
+              ], 
+              [
+                -75.79641, 
+                36.290351
+              ], 
+              [
+                -75.773329, 
+                36.231529
+              ], 
+              [
+                -75.77251, 
+                36.22944
+              ], 
+              [
+                -75.759637, 
+                36.204705
+              ], 
+              [
+                -75.738431, 
+                36.154282
+              ], 
+              [
+                -75.71831, 
+                36.113674
+              ], 
+              [
+                -75.696742, 
+                36.077497
+              ], 
+              [
+                -75.658537, 
+                36.02043
+              ], 
+              [
+                -75.569794, 
+                35.863301
+              ], 
+              [
+                -75.552299, 
+                35.822173
+              ], 
+              [
+                -75.538739, 
+                35.797396
+              ], 
+              [
+                -75.533012, 
+                35.787377
+              ], 
+              [
+                -75.536428, 
+                35.780118
+              ], 
+              [
+                -75.543259, 
+                35.779691
+              ], 
+              [
+                -75.546675, 
+                35.787377
+              ], 
+              [
+                -75.553934, 
+                35.799332
+              ], 
+              [
+                -75.566238, 
+                35.813072
+              ], 
+              [
+                -75.573083, 
+                35.828867
+              ], 
+              [
+                -75.588878, 
+                35.844926
+              ], 
+              [
+                -75.60125, 
+                35.867302
+              ], 
+              [
+                -75.619151, 
+                35.889415
+              ], 
+              [
+                -75.617045, 
+                35.906
+              ], 
+              [
+                -75.617552, 
+                35.914186
+              ], 
+              [
+                -75.620114, 
+                35.925288
+              ], 
+              [
+                -75.631215, 
+                35.941512
+              ], 
+              [
+                -75.648899, 
+                35.965758
+              ], 
+              [
+                -75.668379, 
+                35.978394
+              ], 
+              [
+                -75.671801, 
+                35.985238
+              ], 
+              [
+                -75.678909, 
+                35.993925
+              ], 
+              [
+                -75.723662, 
+                36.003139
+              ], 
+              [
+                -75.727084, 
+                36.01051
+              ], 
+              [
+                -75.726558, 
+                36.02104
+              ], 
+              [
+                -75.722082, 
+                36.03236
+              ], 
+              [
+                -75.722609, 
+                36.037362
+              ], 
+              [
+                -75.726821, 
+                36.040521
+              ], 
+              [
+                -75.737088, 
+                36.040784
+              ], 
+              [
+                -75.74051, 
+                36.046839
+              ], 
+              [
+                -75.741563, 
+                36.055526
+              ], 
+              [
+                -75.739457, 
+                36.066846
+              ], 
+              [
+                -75.73972, 
+                36.07527
+              ], 
+              [
+                -75.75025, 
+                36.121076
+              ], 
+              [
+                -75.750479, 
+                36.131208
+              ], 
+              [
+                -75.752226, 
+                36.140817
+              ], 
+              [
+                -75.75572, 
+                36.153922
+              ], 
+              [
+                -75.775814, 
+                36.201097
+              ], 
+              [
+                -75.783676, 
+                36.215949
+              ], 
+              [
+                -75.793286, 
+                36.226432
+              ], 
+              [
+                -75.794371, 
+                36.227336
+              ], 
+              [
+                -75.798528, 
+                36.2308
+              ], 
+              [
+                -75.80369, 
+                36.235853
+              ], 
+              [
+                -75.811588, 
+                36.244014
+              ], 
+              [
+                -75.811851, 
+                36.247699
+              ], 
+              [
+                -75.808165, 
+                36.259545
+              ], 
+              [
+                -75.814483, 
+                36.285344
+              ], 
+              [
+                -75.822907, 
+                36.291662
+              ], 
+              [
+                -75.833964, 
+                36.292188
+              ], 
+              [
+                -75.837913, 
+                36.294558
+              ], 
+              [
+                -75.845284, 
+                36.305614
+              ], 
+              [
+                -75.841335, 
+                36.328517
+              ], 
+              [
+                -75.831858, 
+                36.339047
+              ], 
+              [
+                -75.831595, 
+                36.346418
+              ], 
+              [
+                -75.836201, 
+                36.363135
+              ], 
+              [
+                -75.843046, 
+                36.371032
+              ], 
+              [
+                -75.847258, 
+                36.372085
+              ], 
+              [
+                -75.85147, 
+                36.379456
+              ], 
+              [
+                -75.852523, 
+                36.384721
+              ], 
+              [
+                -75.85147, 
+                36.415785
+              ], 
+              [
+                -75.864106, 
+                36.430527
+              ], 
+              [
+                -75.880428, 
+                36.435792
+              ], 
+              [
+                -75.888325, 
+                36.441583
+              ], 
+              [
+                -75.891484, 
+                36.460537
+              ], 
+              [
+                -75.899908, 
+                36.482124
+              ], 
+              [
+                -75.907279, 
+                36.485809
+              ], 
+              [
+                -75.913071, 
+                36.486336
+              ], 
+              [
+                -75.917283, 
+                36.485809
+              ], 
+              [
+                -75.924127, 
+                36.482124
+              ], 
+              [
+                -75.927333, 
+                36.482815
+              ], 
+              [
+                -75.935473, 
+                36.490601
+              ], 
+              [
+                -75.960069, 
+                36.495025
+              ], 
+              [
+                -75.972545, 
+                36.494671
+              ], 
+              [
+                -76.003708, 
+                36.506235
+              ], 
+              [
+                -76.019261, 
+                36.503506
+              ], 
+              [
+                -76.023627, 
+                36.500778
+              ], 
+              [
+                -76.029221, 
+                36.494365
+              ], 
+              [
+                -76.031949, 
+                36.482496
+              ], 
+              [
+                -76.020216, 
+                36.45862
+              ], 
+              [
+                -76.012337, 
+                36.447462
+              ], 
+              [
+                -76.003912, 
+                36.441864
+              ], 
+              [
+                -75.989869, 
+                36.436808
+              ], 
+              [
+                -75.98005, 
+                36.435464
+              ], 
+              [
+                -75.962285, 
+                36.41724
+              ], 
+              [
+                -75.940676, 
+                36.41885
+              ], 
+              [
+                -75.936446, 
+                36.423079
+              ], 
+              [
+                -75.932694, 
+                36.427627
+              ], 
+              [
+                -75.928369, 
+                36.428588
+              ], 
+              [
+                -75.923601, 
+                36.425788
+              ], 
+              [
+                -75.916409, 
+                36.38901
+              ], 
+              [
+                -75.916949, 
+                36.383167
+              ], 
+              [
+                -75.923511, 
+                36.367796
+              ], 
+              [
+                -75.923331, 
+                36.361863
+              ], 
+              [
+                -75.917758, 
+                36.353593
+              ], 
+              [
+                -75.915331, 
+                36.352335
+              ], 
+              [
+                -75.895285, 
+                36.319615
+              ], 
+              [
+                -75.888211, 
+                36.293414
+              ], 
+              [
+                -75.882154, 
+                36.284674
+              ], 
+              [
+                -75.872721, 
+                36.28277
+              ], 
+              [
+                -75.864933, 
+                36.284674
+              ], 
+              [
+                -75.86052, 
+                36.280607
+              ], 
+              [
+                -75.861818, 
+                36.266415
+              ], 
+              [
+                -75.867356, 
+                36.252483
+              ], 
+              [
+                -75.864154, 
+                36.235522
+              ], 
+              [
+                -75.858703, 
+                36.222628
+              ], 
+              [
+                -75.848838, 
+                36.21657
+              ], 
+              [
+                -75.838367, 
+                36.200129
+              ], 
+              [
+                -75.841222, 
+                36.193812
+              ], 
+              [
+                -75.839924, 
+                36.17711
+              ], 
+              [
+                -75.823915, 
+                36.158332
+              ], 
+              [
+                -75.822531, 
+                36.145957
+              ], 
+              [
+                -75.813444, 
+                36.136871
+              ], 
+              [
+                -75.800378, 
+                36.112728
+              ], 
+              [
+                -75.791637, 
+                36.082267
+              ], 
+              [
+                -75.793974, 
+                36.07171
+              ], 
+              [
+                -75.799779, 
+                36.07264
+              ], 
+              [
+                -75.836084, 
+                36.092616
+              ], 
+              [
+                -75.847785, 
+                36.10199
+              ], 
+              [
+                -75.867792, 
+                36.127262
+              ], 
+              [
+                -75.866323, 
+                36.14141
+              ], 
+              [
+                -75.867385, 
+                36.151182
+              ], 
+              [
+                -75.869828, 
+                36.15458
+              ], 
+              [
+                -75.875033, 
+                36.157448
+              ], 
+              [
+                -75.887415, 
+                36.160233
+              ], 
+              [
+                -75.904999, 
+                36.164188
+              ], 
+              [
+                -75.920028, 
+                36.164853
+              ], 
+              [
+                -75.924654, 
+                36.163591
+              ], 
+              [
+                -75.939047, 
+                36.165518
+              ], 
+              [
+                -75.995191, 
+                36.178072
+              ], 
+              [
+                -76.016984, 
+                36.186367
+              ], 
+              [
+                -76.018936, 
+                36.188318
+              ], 
+              [
+                -76.031784, 
+                36.189131
+              ], 
+              [
+                -76.0471, 
+                36.183106
+              ], 
+              [
+                -76.051626, 
+                36.181325
+              ], 
+              [
+                -76.063498, 
+                36.173518
+              ], 
+              [
+                -76.065287, 
+                36.170591
+              ], 
+              [
+                -76.06545, 
+                36.165224
+              ], 
+              [
+                -76.05992, 
+                36.15514
+              ], 
+              [
+                -76.05927, 
+                36.149285
+              ], 
+              [
+                -76.064224, 
+                36.143775
+              ], 
+              [
+                -76.071672, 
+                36.140183
+              ], 
+              [
+                -76.092555, 
+                36.135794
+              ], 
+              [
+                -76.178946, 
+                36.123424
+              ], 
+              [
+                -76.184133, 
+                36.121562
+              ], 
+              [
+                -76.19051, 
+                36.116333
+              ], 
+              [
+                -76.190784, 
+                36.116108
+              ], 
+              [
+                -76.19238, 
+                36.113448
+              ], 
+              [
+                -76.191715, 
+                36.107197
+              ], 
+              [
+                -76.216599, 
+                36.095409
+              ], 
+              [
+                -76.238712, 
+                36.098568
+              ], 
+              [
+                -76.265037, 
+                36.104886
+              ], 
+              [
+                -76.28715, 
+                36.104886
+              ], 
+              [
+                -76.298733, 
+                36.1012
+              ], 
+              [
+                -76.303998, 
+                36.092776
+              ], 
+              [
+                -76.323478, 
+                36.084879
+              ], 
+              [
+                -76.331902, 
+                36.083826
+              ], 
+              [
+                -76.337168, 
+                36.086458
+              ], 
+              [
+                -76.355069, 
+                36.086458
+              ], 
+              [
+                -76.410878, 
+                36.078034
+              ], 
+              [
+                -76.411844, 
+                36.075376
+              ], 
+              [
+                -76.412984, 
+                36.072243
+              ], 
+              [
+                -76.420881, 
+                36.06066
+              ], 
+              [
+                -76.442994, 
+                36.042758
+              ], 
+              [
+                -76.451418, 
+                36.039073
+              ], 
+              [
+                -76.458789, 
+                36.028016
+              ], 
+              [
+                -76.459316, 
+                36.024331
+              ], 
+              [
+                -76.491959, 
+                36.018013
+              ], 
+              [
+                -76.514335, 
+                36.00564
+              ], 
+              [
+                -76.547505, 
+                36.009852
+              ], 
+              [
+                -76.5633, 
+                36.009852
+              ], 
+              [
+                -76.575936, 
+                36.006167
+              ], 
+              [
+                -76.580674, 
+                36.00722
+              ], 
+              [
+                -76.589625, 
+                36.015644
+              ], 
+              [
+                -76.60384, 
+                36.033018
+              ], 
+              [
+                -76.615423, 
+                36.037757
+              ], 
+              [
+                -76.631745, 
+                36.038283
+              ], 
+              [
+                -76.653332, 
+                36.035124
+              ], 
+              [
+                -76.668814, 
+                36.020968
+              ], 
+              [
+                -76.671759, 
+                36.018276
+              ], 
+              [
+                -76.684922, 
+                36.009852
+              ], 
+              [
+                -76.683869, 
+                36.000375
+              ], 
+              [
+                -76.679657, 
+                35.991951
+              ], 
+              [
+                -76.684922, 
+                35.983001
+              ], 
+              [
+                -76.695452, 
+                35.973524
+              ], 
+              [
+                -76.70019, 
+                35.964573
+              ], 
+              [
+                -76.697558, 
+                35.951937
+              ], 
+              [
+                -76.692376, 
+                35.945342
+              ], 
+              [
+                -76.691766, 
+                35.944566
+              ], 
+              [
+                -76.673865, 
+                35.935089
+              ], 
+              [
+                -76.667547, 
+                35.933509
+              ], 
+              [
+                -76.657017, 
+                35.935089
+              ], 
+              [
+                -76.608052, 
+                35.936668
+              ], 
+              [
+                -76.60384, 
+                35.939827
+              ], 
+              [
+                -76.586992, 
+                35.941933
+              ], 
+              [
+                -76.528551, 
+                35.944039
+              ], 
+              [
+                -76.507491, 
+                35.949831
+              ], 
+              [
+                -76.496961, 
+                35.955096
+              ], 
+              [
+                -76.473795, 
+                35.960888
+              ], 
+              [
+                -76.460632, 
+                35.970365
+              ], 
+              [
+                -76.398242, 
+                35.984317
+              ], 
+              [
+                -76.389818, 
+                35.980105
+              ], 
+              [
+                -76.38192, 
+                35.971681
+              ], 
+              [
+                -76.381394, 
+                35.96273
+              ], 
+              [
+                -76.36521, 
+                35.944697
+              ], 
+              [
+                -76.362966, 
+                35.942197
+              ], 
+              [
+                -76.340327, 
+                35.94325
+              ], 
+              [
+                -76.317687, 
+                35.946935
+              ], 
+              [
+                -76.272408, 
+                35.972734
+              ], 
+              [
+                -76.213966, 
+                35.988002
+              ], 
+              [
+                -76.176585, 
+                35.993267
+              ], 
+              [
+                -76.093697, 
+                35.993001
+              ], 
+              [
+                -76.083131, 
+                35.989845
+              ], 
+              [
+                -76.062071, 
+                35.993004
+              ], 
+              [
+                -76.024162, 
+                35.970891
+              ], 
+              [
+                -76.014685, 
+                35.960361
+              ], 
+              [
+                -76.014159, 
+                35.957202
+              ], 
+              [
+                -76.01995, 
+                35.934036
+              ], 
+              [
+                -76.011526, 
+                35.914029
+              ], 
+              [
+                -76.004682, 
+                35.905078
+              ], 
+              [
+                -75.999386, 
+                35.903521
+              ], 
+              [
+                -75.97783, 
+                35.897181
+              ], 
+              [
+                -75.966247, 
+                35.899287
+              ], 
+              [
+                -75.962562, 
+                35.901393
+              ], 
+              [
+                -75.94782, 
+                35.920347
+              ], 
+              [
+                -75.934131, 
+                35.928244
+              ], 
+              [
+                -75.929919, 
+                35.928771
+              ], 
+              [
+                -75.927286, 
+                35.93193
+              ], 
+              [
+                -75.92676, 
+                35.940354
+              ], 
+              [
+                -75.937816, 
+                35.950884
+              ], 
+              [
+                -75.943608, 
+                35.952464
+              ], 
+              [
+                -75.946767, 
+                35.955623
+              ], 
+              [
+                -75.947293, 
+                35.959835
+              ], 
+              [
+                -75.938343, 
+                35.9651
+              ], 
+              [
+                -75.899382, 
+                35.977209
+              ], 
+              [
+                -75.879374, 
+                35.978789
+              ], 
+              [
+                -75.86042, 
+                35.978262
+              ], 
+              [
+                -75.84989, 
+                35.976156
+              ], 
+              [
+                -75.80935, 
+                35.959308
+              ], 
+              [
+                -75.805138, 
+                35.954043
+              ], 
+              [
+                -75.800926, 
+                35.944566
+              ], 
+              [
+                -75.782498, 
+                35.935615
+              ], 
+              [
+                -75.782498, 
+                35.928244
+              ], 
+              [
+                -75.778813, 
+                35.918241
+              ], 
+              [
+                -75.768809, 
+                35.901393
+              ], 
+              [
+                -75.751961, 
+                35.878227
+              ], 
+              [
+                -75.753014, 
+                35.871382
+              ], 
+              [
+                -75.748276, 
+                35.852428
+              ], 
+              [
+                -75.734587, 
+                35.839266
+              ], 
+              [
+                -75.727216, 
+                35.822703
+              ], 
+              [
+                -75.726689, 
+                35.811361
+              ], 
+              [
+                -75.732612, 
+                35.790666
+              ], 
+              [
+                -75.738233, 
+                35.778301
+              ], 
+              [
+                -75.739357, 
+                35.770994
+              ], 
+              [
+                -75.735422, 
+                35.767622
+              ], 
+              [
+                -75.724743, 
+                35.742892
+              ], 
+              [
+                -75.719123, 
+                35.714227
+              ], 
+              [
+                -75.715188, 
+                35.708045
+              ], 
+              [
+                -75.71294, 
+                35.69849
+              ], 
+              [
+                -75.713502, 
+                35.693993
+              ], 
+              [
+                -75.741605, 
+                35.672073
+              ], 
+              [
+                -75.742167, 
+                35.655212
+              ], 
+              [
+                -75.737109, 
+                35.63835
+              ], 
+              [
+                -75.729802, 
+                35.628795
+              ], 
+              [
+                -75.729802, 
+                35.625985
+              ], 
+              [
+                -75.747225, 
+                35.610248
+              ], 
+              [
+                -75.762963, 
+                35.603503
+              ], 
+              [
+                -75.778138, 
+                35.592262
+              ], 
+              [
+                -75.775328, 
+                35.579335
+              ], 
+              [
+                -75.797248, 
+                35.574276
+              ], 
+              [
+                -75.837154, 
+                35.570904
+              ], 
+              [
+                -75.851767, 
+                35.578773
+              ], 
+              [
+                -75.859636, 
+                35.586641
+              ], 
+              [
+                -75.869869, 
+                35.582743
+              ], 
+              [
+                -75.895045, 
+                35.573152
+              ], 
+              [
+                -75.906848, 
+                35.559101
+              ], 
+              [
+                -75.908534, 
+                35.555166
+              ], 
+              [
+                -75.908534, 
+                35.546174
+              ], 
+              [
+                -75.916403, 
+                35.538305
+              ], 
+              [
+                -75.94563, 
+                35.53437
+              ], 
+              [
+                -75.950126, 
+                35.530998
+              ], 
+              [
+                -75.954623, 
+                35.526502
+              ], 
+              [
+                -75.964178, 
+                35.511326
+              ], 
+              [
+                -75.96474, 
+                35.504582
+              ], 
+              [
+                -75.961929, 
+                35.496713
+              ], 
+              [
+                -75.963053, 
+                35.493903
+              ], 
+              [
+                -75.987222, 
+                35.484348
+              ], 
+              [
+                -75.995652, 
+                35.475355
+              ], 
+              [
+                -75.994528, 
+                35.463552
+              ], 
+              [
+                -75.997901, 
+                35.453435
+              ], 
+              [
+                -76.009704, 
+                35.442194
+              ], 
+              [
+                -76.012514, 
+                35.432639
+              ], 
+              [
+                -76.01139, 
+                35.423084
+              ], 
+              [
+                -76.014762, 
+                35.416902
+              ], 
+              [
+                -76.020945, 
+                35.410719
+              ], 
+              [
+                -76.025441, 
+                35.408471
+              ], 
+              [
+                -76.037244, 
+                35.414091
+              ], 
+              [
+                -76.050171, 
+                35.415778
+              ], 
+              [
+                -76.059726, 
+                35.410157
+              ], 
+              [
+                -76.063661, 
+                35.405099
+              ], 
+              [
+                -76.063661, 
+                35.398354
+              ], 
+              [
+                -76.06085, 
+                35.392733
+              ], 
+              [
+                -76.059726, 
+                35.383741
+              ], 
+              [
+                -76.069281, 
+                35.370813
+              ], 
+              [
+                -76.092887, 
+                35.361259
+              ], 
+              [
+                -76.123238, 
+                35.351142
+              ], 
+              [
+                -76.132793, 
+                35.349455
+              ], 
+              [
+                -76.14291, 
+                35.338776
+              ], 
+              [
+                -76.14291, 
+                35.32866
+              ], 
+              [
+                -76.149655, 
+                35.326411
+              ], 
+              [
+                -76.165392, 
+                35.328659
+              ], 
+              [
+                -76.168764, 
+                35.332032
+              ], 
+              [
+                -76.182254, 
+                35.336528
+              ], 
+              [
+                -76.20586, 
+                35.336528
+              ], 
+              [
+                -76.235087, 
+                35.350017
+              ], 
+              [
+                -76.253072, 
+                35.350017
+              ], 
+              [
+                -76.257569, 
+                35.344397
+              ], 
+              [
+                -76.265437, 
+                35.343273
+              ], 
+              [
+                -76.282299, 
+                35.345521
+              ], 
+              [
+                -76.304781, 
+                35.355638
+              ], 
+              [
+                -76.327263, 
+                35.356762
+              ], 
+              [
+                -76.335132, 
+                35.355638
+              ], 
+              [
+                -76.340752, 
+                35.346645
+              ], 
+              [
+                -76.349745, 
+                35.345521
+              ], 
+              [
+                -76.365483, 
+                35.348893
+              ], 
+              [
+                -76.374475, 
+                35.355638
+              ], 
+              [
+                -76.382344, 
+                35.356762
+              ], 
+              [
+                -76.387965, 
+                35.356762
+              ], 
+              [
+                -76.399206, 
+                35.348893
+              ], 
+              [
+                -76.408199, 
+                35.350017
+              ], 
+              [
+                -76.409323, 
+                35.35339
+              ], 
+              [
+                -76.420564, 
+                35.35901
+              ], 
+              [
+                -76.431805, 
+                35.362383
+              ], 
+              [
+                -76.436301, 
+                35.37812
+              ], 
+              [
+                -76.448666, 
+                35.383741
+              ], 
+              [
+                -76.455411, 
+                35.383741
+              ], 
+              [
+                -76.462156, 
+                35.380368
+              ], 
+              [
+                -76.472273, 
+                35.371375
+              ], 
+              [
+                -76.485762, 
+                35.371375
+              ], 
+              [
+                -76.499251, 
+                35.381492
+              ], 
+              [
+                -76.521733, 
+                35.391609
+              ], 
+              [
+                -76.546901, 
+                35.389673
+              ], 
+              [
+                -76.580187, 
+                35.387113
+              ], 
+              [
+                -76.606041, 
+                35.387113
+              ], 
+              [
+                -76.620654, 
+                35.37812
+              ], 
+              [
+                -76.628125, 
+                35.368515
+              ], 
+              [
+                -76.628523, 
+                35.368003
+              ], 
+              [
+                -76.61953, 
+                35.345521
+              ], 
+              [
+                -76.604962, 
+                35.337751
+              ], 
+              [
+                -76.602669, 
+                35.336528
+              ], 
+              [
+                -76.588055, 
+                35.333156
+              ], 
+              [
+                -76.554332, 
+                35.332032
+              ], 
+              [
+                -76.548712, 
+                35.328659
+              ], 
+              [
+                -76.500375, 
+                35.321915
+              ], 
+              [
+                -76.482389, 
+                35.314046
+              ], 
+              [
+                -76.472273, 
+                35.294936
+              ], 
+              [
+                -76.467776, 
+                35.276951
+              ], 
+              [
+                -76.467776, 
+                35.261213
+              ], 
+              [
+                -76.477893, 
+                35.243228
+              ], 
+              [
+                -76.483514, 
+                35.240979
+              ], 
+              [
+                -76.490258, 
+                35.233111
+              ], 
+              [
+                -76.491382, 
+                35.220745
+              ], 
+              [
+                -76.494755, 
+                35.212877
+              ], 
+              [
+                -76.504872, 
+                35.207256
+              ], 
+              [
+                -76.521733, 
+                35.192643
+              ], 
+              [
+                -76.536346, 
+                35.174657
+              ], 
+              [
+                -76.539719, 
+                35.166788
+              ], 
+              [
+                -76.536346, 
+                35.149927
+              ], 
+              [
+                -76.536346, 
+                35.142058
+              ], 
+              [
+                -76.546463, 
+                35.122948
+              ], 
+              [
+                -76.557704, 
+                35.116204
+              ], 
+              [
+                -76.561077, 
+                35.108335
+              ], 
+              [
+                -76.568945, 
+                35.097094
+              ], 
+              [
+                -76.57569, 
+                35.092598
+              ], 
+              [
+                -76.586931, 
+                35.092598
+              ], 
+              [
+                -76.592552, 
+                35.083605
+              ], 
+              [
+                -76.593676, 
+                35.075736
+              ], 
+              [
+                -76.60042, 
+                35.067867
+              ], 
+              [
+                -76.61391, 
+                35.061123
+              ], 
+              [
+                -76.622902, 
+                35.061123
+              ], 
+              [
+                -76.631895, 
+                35.056626
+              ], 
+              [
+                -76.639764, 
+                35.051006
+              ], 
+              [
+                -76.646509, 
+                35.042013
+              ], 
+              [
+                -76.646509, 
+                35.025151
+              ], 
+              [
+                -76.644562, 
+                35.019799
+              ], 
+              [
+                -76.642012, 
+                35.012786
+              ], 
+              [
+                -76.628523, 
+                34.994801
+              ], 
+              [
+                -76.588055, 
+                34.991428
+              ], 
+              [
+                -76.566697, 
+                34.998173
+              ], 
+              [
+                -76.539719, 
+                35.000421
+              ], 
+              [
+                -76.502623, 
+                35.007166
+              ], 
+              [
+                -76.495879, 
+                35.011662
+              ], 
+              [
+                -76.491382, 
+                35.017283
+              ], 
+              [
+                -76.490258, 
+                35.034144
+              ], 
+              [
+                -76.480141, 
+                35.05213
+              ], 
+              [
+                -76.474521, 
+                35.070116
+              ], 
+              [
+                -76.468796, 
+                35.075345
+              ], 
+              [
+                -76.463468, 
+                35.076411
+              ], 
+              [
+                -76.435762, 
+                35.057941
+              ], 
+              [
+                -76.432565, 
+                35.049061
+              ], 
+              [
+                -76.431855, 
+                35.030945
+              ], 
+              [
+                -76.425461, 
+                35.001464
+              ], 
+              [
+                -76.406281, 
+                34.987256
+              ], 
+              [
+                -76.398466, 
+                34.9766
+              ], 
+              [
+                -76.395625, 
+                34.975179
+              ], 
+              [
+                -76.332044, 
+                34.970917
+              ], 
+              [
+                -76.326361, 
+                34.976245
+              ], 
+              [
+                -76.329557, 
+                34.986901
+              ], 
+              [
+                -76.350159, 
+                35.016737
+              ], 
+              [
+                -76.360815, 
+                35.025973
+              ], 
+              [
+                -76.364367, 
+                35.031301
+              ], 
+              [
+                -76.364367, 
+                35.034853
+              ], 
+              [
+                -76.35229, 
+                35.033077
+              ], 
+              [
+                -76.318546, 
+                35.020645
+              ], 
+              [
+                -76.293682, 
+                35.009633
+              ], 
+              [
+                -76.288354, 
+                35.005726
+              ], 
+              [
+                -76.288709, 
+                34.997201
+              ], 
+              [
+                -76.29093, 
+                34.994285
+              ], 
+              [
+                -76.293851, 
+                34.991948
+              ], 
+              [
+                -76.296188, 
+                34.98669
+              ], 
+              [
+                -76.296524, 
+                34.976245
+              ], 
+              [
+                -76.290691, 
+                34.969059
+              ], 
+              [
+                -76.275567, 
+                34.960971
+              ], 
+              [
+                -76.274856, 
+                34.953867
+              ], 
+              [
+                -76.277698, 
+                34.940014
+              ], 
+              [
+                -76.284092, 
+                34.936817
+              ], 
+              [
+                -76.311442, 
+                34.910177
+              ], 
+              [
+                -76.319967, 
+                34.897745
+              ], 
+              [
+                -76.33382, 
+                34.882116
+              ], 
+              [
+                -76.347673, 
+                34.872171
+              ], 
+              [
+                -76.368274, 
+                34.872881
+              ], 
+              [
+                -76.377154, 
+                34.867553
+              ], 
+              [
+                -76.379641, 
+                34.86258
+              ], 
+              [
+                -76.395269, 
+                34.855476
+              ], 
+              [
+                -76.400242, 
+                34.855476
+              ], 
+              [
+                -76.411609, 
+                34.841268
+              ], 
+              [
+                -76.415871, 
+                34.82564
+              ], 
+              [
+                -76.415871, 
+                34.813563
+              ], 
+              [
+                -76.403108, 
+                34.806153
+              ], 
+              [
+                -76.390254, 
+                34.805568
+              ], 
+              [
+                -76.383827, 
+                34.807906
+              ], 
+              [
+                -76.373247, 
+                34.817115
+              ], 
+              [
+                -76.362591, 
+                34.824219
+              ], 
+              [
+                -76.341279, 
+                34.842689
+              ], 
+              [
+                -76.322808, 
+                34.86116
+              ], 
+              [
+                -76.273986, 
+                34.897298
+              ], 
+              [
+                -76.233672, 
+                34.925926
+              ], 
+              [
+                -76.194936, 
+                34.962747
+              ], 
+              [
+                -76.160127, 
+                34.991163
+              ], 
+              [
+                -76.11182, 
+                35.034497
+              ], 
+              [
+                -76.093349, 
+                35.048705
+              ], 
+              [
+                -76.069906, 
+                35.075701
+              ], 
+              [
+                -76.064933, 
+                35.077121
+              ], 
+              [
+                -76.043621, 
+                35.070017
+              ], 
+              [
+                -76.038648, 
+                35.065045
+              ], 
+              [
+                -76.035933, 
+                35.058987
+              ], 
+              [
+                -76.073, 
+                35.030509
+              ], 
+              [
+                -76.137269, 
+                34.987858
+              ], 
+              [
+                -76.233088, 
+                34.905477
+              ], 
+              [
+                -76.31021, 
+                34.852309
+              ], 
+              [
+                -76.386804, 
+                34.784579
+              ], 
+              [
+                -76.450454, 
+                34.71445
+              ], 
+              [
+                -76.494068, 
+                34.66197
+              ], 
+              [
+                -76.524199, 
+                34.615416
+              ], 
+              [
+                -76.535946, 
+                34.588577
+              ], 
+              [
+                -76.555196, 
+                34.615993
+              ], 
+              [
+                -76.553806, 
+                34.628252
+              ], 
+              [
+                -76.550423, 
+                34.630789
+              ], 
+              [
+                -76.549343, 
+                34.645585
+              ], 
+              [
+                -76.579467, 
+                34.660174
+              ], 
+              [
+                -76.618719, 
+                34.67255
+              ], 
+              [
+                -76.642939, 
+                34.677618
+              ], 
+              [
+                -76.662645, 
+                34.685524
+              ], 
+              [
+                -76.676312, 
+                34.693151
+              ], 
+              [
+                -76.693751, 
+                34.692509
+              ], 
+              [
+                -76.726969, 
+                34.69669
+              ], 
+              [
+                -76.770044, 
+                34.696899
+              ], 
+              [
+                -76.817453, 
+                34.693722
+              ], 
+              [
+                -76.906257, 
+                34.68282
+              ], 
+              [
+                -76.990262, 
+                34.669623
+              ], 
+              [
+                -77.031105, 
+                34.661184
+              ], 
+              [
+                -77.1128, 
+                34.639352
+              ], 
+              [
+                -77.136843, 
+                34.632926
+              ], 
+              [
+                -77.169701, 
+                34.622023
+              ], 
+              [
+                -77.209161, 
+                34.605032
+              ], 
+              [
+                -77.240991, 
+                34.587507
+              ], 
+              [
+                -77.322524, 
+                34.535574
+              ], 
+              [
+                -77.462922, 
+                34.471354
+              ], 
+              [
+                -77.491796, 
+                34.456098
+              ], 
+              [
+                -77.51796, 
+                34.440483
+              ], 
+              [
+                -77.556943, 
+                34.417218
+              ], 
+              [
+                -77.582323, 
+                34.400506
+              ], 
+              [
+                -77.635034, 
+                34.359555
+              ], 
+              [
+                -77.661673, 
+                34.341868
+              ], 
+              [
+                -77.687226, 
+                34.320444
+              ], 
+              [
+                -77.713322, 
+                34.294879
+              ], 
+              [
+                -77.715916, 
+                34.292719
+              ], 
+              [
+                -77.740136, 
+                34.272546
+              ], 
+              [
+                -77.764022, 
+                34.245641
+              ], 
+              [
+                -77.829209, 
+                34.162618
+              ], 
+              [
+                -77.841785, 
+                34.140747
+              ], 
+              [
+                -77.870327, 
+                34.079221
+              ], 
+              [
+                -77.874384, 
+                34.075671
+              ], 
+              [
+                -77.878161, 
+                34.067963
+              ], 
+              [
+                -77.915536, 
+                33.971723
+              ], 
+              [
+                -77.927926, 
+                33.945265
+              ], 
+              [
+                -77.937313, 
+                33.928645
+              ], 
+              [
+                -77.946568, 
+                33.912261
+              ], 
+              [
+                -77.956881, 
+                33.87779
+              ], 
+              [
+                -77.960172, 
+                33.853315
+              ], 
+              [
+                -77.970606, 
+                33.844517
+              ], 
+              [
+                -78.006765, 
+                33.858704
+              ], 
+              [
+                -78.009973, 
+                33.861406
+              ], 
+              [
+                -78.009426, 
+                33.867823
+              ], 
+              [
+                -78.018689, 
+                33.888289
+              ], 
+              [
+                -78.095429, 
+                33.906031
+              ], 
+              [
+                -78.136952, 
+                33.912178
+              ], 
+              [
+                -78.17772, 
+                33.914272
+              ], 
+              [
+                -78.276147, 
+                33.912364
+              ], 
+              [
+                -78.383964, 
+                33.901946
+              ], 
+              [
+                -78.509042, 
+                33.865515
+              ], 
+              [
+                -78.541087, 
+                33.851112
+              ], 
+              [
+                -78.6505, 
+                33.944035
+              ], 
+              [
+                -78.710141, 
+                33.994688
+              ], 
+              [
+                -78.712206, 
+                33.996732
+              ], 
+              [
+                -79.071169, 
+                34.29924
+              ], 
+              [
+                -79.143242, 
+                34.359817
+              ], 
+              [
+                -79.151485, 
+                34.366753
+              ], 
+              [
+                -79.190739, 
+                34.399751
+              ], 
+              [
+                -79.192041, 
+                34.40104
+              ], 
+              [
+                -79.198982, 
+                34.406699
+              ], 
+              [
+                -79.323249, 
+                34.514634
+              ], 
+              [
+                -79.324854, 
+                34.516282
+              ], 
+              [
+                -79.331328, 
+                34.521869
+              ], 
+              [
+                -79.358317, 
+                34.545358
+              ], 
+              [
+                -79.450034, 
+                34.621036
+              ], 
+              [
+                -79.459766, 
+                34.629027
+              ], 
+              [
+                -79.461318, 
+                34.630126
+              ], 
+              [
+                -79.461754, 
+                34.630432
+              ], 
+              [
+                -79.468717, 
+                34.635323
+              ], 
+              [
+                -79.471599, 
+                34.6372
+              ], 
+              [
+                -79.479305, 
+                34.64464
+              ], 
+              [
+                -79.490201, 
+                34.653819
+              ], 
+              [
+                -79.519043, 
+                34.677321
+              ], 
+              [
+                -79.520269, 
+                34.678327
+              ], 
+              [
+                -79.554454, 
+                34.706363
+              ], 
+              [
+                -79.561691, 
+                34.711996
+              ], 
+              [
+                -79.631577, 
+                34.768835
+              ], 
+              [
+                -79.634216, 
+                34.771012
+              ], 
+              [
+                -79.688088, 
+                34.804897
+              ], 
+              [
+                -79.690201, 
+                34.804937
+              ], 
+              [
+                -79.692948, 
+                34.804973
+              ], 
+              [
+                -79.744116, 
+                34.805651
+              ], 
+              [
+                -79.744925, 
+                34.805686
+              ], 
+              [
+                -79.772829, 
+                34.805954
+              ], 
+              [
+                -79.773607, 
+                34.805931
+              ], 
+              [
+                -79.927618, 
+                34.806555
+              ], 
+              [
+                -80.027464, 
+                34.808726
+              ], 
+              [
+                -80.042764, 
+                34.809097
+              ], 
+              [
+                -80.072912, 
+                34.809736
+              ], 
+              [
+                -80.077223, 
+                34.809716
+              ], 
+              [
+                -80.098022, 
+                34.810147
+              ], 
+              [
+                -80.098994, 
+                34.810147
+              ], 
+              [
+                -80.320413, 
+                34.813813
+              ], 
+              [
+                -80.399871, 
+                34.815128
+              ], 
+              [
+                -80.417014, 
+                34.815508
+              ], 
+              [
+                -80.418433, 
+                34.815622
+              ], 
+              [
+                -80.419586, 
+                34.815581
+              ], 
+              [
+                -80.425902, 
+                34.81581
+              ], 
+              [
+                -80.434843, 
+                34.815968
+              ], 
+              [
+                -80.448766, 
+                34.816332
+              ], 
+              [
+                -80.45166, 
+                34.816396
+              ], 
+              [
+                -80.485683, 
+                34.816732
+              ], 
+              [
+                -80.561657, 
+                34.817481
+              ], 
+              [
+                -80.561674, 
+                34.817481
+              ], 
+              [
+                -80.621222, 
+                34.818174
+              ], 
+              [
+                -80.625993, 
+                34.818239
+              ], 
+              [
+                -80.626077, 
+                34.818217
+              ], 
+              [
+                -80.644656, 
+                34.818568
+              ], 
+              [
+                -80.646601, 
+                34.818592
+              ], 
+              [
+                -80.771792, 
+                34.819646
+              ], 
+              [
+                -80.777712, 
+                34.819697
+              ], 
+              [
+                -80.79675, 
+                34.825281
+              ], 
+              [
+                -80.782042, 
+                34.935782
+              ], 
+              [
+                -80.806461, 
+                34.962894
+              ], 
+              [
+                -80.806784, 
+                34.963249
+              ], 
+              [
+                -80.840461, 
+                35.001566
+              ], 
+              [
+                -80.906417, 
+                35.076608
+              ], 
+              [
+                -80.906553, 
+                35.076763
+              ], 
+              [
+                -80.93495, 
+                35.107409
+              ], 
+              [
+                -80.95787, 
+                35.092639
+              ], 
+              [
+                -81.041489, 
+                35.044703
+              ], 
+              [
+                -81.057465, 
+                35.061983
+              ], 
+              [
+                -81.058029, 
+                35.07319
+              ], 
+              [
+                -81.057236, 
+                35.086129
+              ], 
+              [
+                -81.052078, 
+                35.096276
+              ], 
+              [
+                -81.046524, 
+                35.100617
+              ], 
+              [
+                -81.036163, 
+                35.103205
+              ], 
+              [
+                -81.032547, 
+                35.109102
+              ], 
+              [
+                -81.042758, 
+                35.146042
+              ], 
+              [
+                -81.043407, 
+                35.14839
+              ], 
+              [
+                -81.090215, 
+                35.152627
+              ], 
+              [
+                -81.239358, 
+                35.159974
+              ], 
+              [
+                -81.241686, 
+                35.160081
+              ], 
+              [
+                -81.269199, 
+                35.16114
+              ], 
+              [
+                -81.32802, 
+                35.163404
+              ], 
+              [
+                -81.366599, 
+                35.164889
+              ], 
+              [
+                -81.366691, 
+                35.164893
+              ], 
+              [
+                -81.452398, 
+                35.168293
+              ], 
+              [
+                -81.461408, 
+                35.168657
+              ], 
+              [
+                -81.493401, 
+                35.169951
+              ], 
+              [
+                -81.494265, 
+                35.169882
+              ], 
+              [
+                -81.768073, 
+                35.180132
+              ], 
+              [
+                -81.857832, 
+                35.183492
+              ], 
+              [
+                -81.874433, 
+                35.184113
+              ], 
+              [
+                -81.969325, 
+                35.187215
+              ], 
+              [
+                -82.167676, 
+                35.193699
+              ], 
+              [
+                -82.176874, 
+                35.19379
+              ], 
+              [
+                -82.185513, 
+                35.194355
+              ], 
+              [
+                -82.195483, 
+                35.194951
+              ], 
+              [
+                -82.216217, 
+                35.196044
+              ], 
+              [
+                -82.230517, 
+                35.196764
+              ], 
+              [
+                -82.230915, 
+                35.196784
+              ], 
+              [
+                -82.257515, 
+                35.198636
+              ], 
+              [
+                -82.288453, 
+                35.198605
+              ], 
+              [
+                -82.35243, 
+                35.206595
+              ], 
+              [
+                -82.384029, 
+                35.210542
+              ], 
+              [
+                -82.476136, 
+                35.175486
+              ], 
+              [
+                -82.51691, 
+                35.163029
+              ], 
+              [
+                -82.517284, 
+                35.162643
+              ], 
+              [
+                -82.535804, 
+                35.158699
+              ], 
+              [
+                -82.536527, 
+                35.159137
+              ], 
+              [
+                -82.574406, 
+                35.144216
+              ], 
+              [
+                -82.580127, 
+                35.141963
+              ], 
+              [
+                -82.582264, 
+                35.142268
+              ], 
+              [
+                -82.686496, 
+                35.121822
+              ], 
+              [
+                -82.686738, 
+                35.11979
+              ], 
+              [
+                -82.764464, 
+                35.068177
+              ], 
+              [
+                -82.781973, 
+                35.066817
+              ], 
+              [
+                -82.780546, 
+                35.069043
+              ], 
+              [
+                -82.779116, 
+                35.073674
+              ], 
+              [
+                -82.777407, 
+                35.076885
+              ], 
+              [
+                -82.781062, 
+                35.084492
+              ], 
+              [
+                -82.78113, 
+                35.084585
+              ], 
+              [
+                -82.897499, 
+                35.056021
+              ], 
+              [
+                -83.008447, 
+                35.026974
+              ], 
+              [
+                -83.108535, 
+                35.000771
+              ], 
+              [
+                -83.108714, 
+                35.000768
+              ], 
+              [
+                -83.483064, 
+                34.993737
+              ], 
+              [
+                -83.549381, 
+                34.992492
+              ], 
+              [
+                -83.620185, 
+                34.992091
+              ], 
+              [
+                -83.673621, 
+                34.987111
+              ], 
+              [
+                -83.936413, 
+                34.987485
+              ], 
+              [
+                -83.936646, 
+                34.987485
+              ], 
+              [
+                -84.005457, 
+                34.98744
+              ], 
+              [
+                -84.021357, 
+                34.98743
+              ], 
+              [
+                -84.029954, 
+                34.987321
+              ], 
+              [
+                -84.129455, 
+                34.987504
+              ], 
+              [
+                -84.129555, 
+                34.987504
+              ], 
+              [
+                -84.321869, 
+                34.988408
+              ], 
+              [
+                -84.308576, 
+                35.092761
+              ], 
+              [
+                -84.308437, 
+                35.093173
+              ], 
+              [
+                -84.292321, 
+                35.206677
+              ], 
+              [
+                -84.29024, 
+                35.225572
+              ], 
+              [
+                -84.227818, 
+                35.267878
+              ], 
+              [
+                -84.223718, 
+                35.269078
+              ], 
+              [
+                -84.211818, 
+                35.266078
+              ], 
+              [
+                -84.202879, 
+                35.255772
+              ], 
+              [
+                -84.124915, 
+                35.24983
+              ], 
+              [
+                -84.12115, 
+                35.250644
+              ], 
+              [
+                -84.115279, 
+                35.250438
+              ], 
+              [
+                -84.115048, 
+                35.249765
+              ], 
+              [
+                -84.097508, 
+                35.247382
+              ], 
+              [
+                -84.055712, 
+                35.268182
+              ], 
+              [
+                -84.029033, 
+                35.291049
+              ], 
+              [
+                -84.02351, 
+                35.295783
+              ], 
+              [
+                -84.02141, 
+                35.301383
+              ], 
+              [
+                -84.032479, 
+                35.325318
+              ], 
+              [
+                -84.03245, 
+                35.32653
+              ], 
+              [
+                -84.038081, 
+                35.348363
+              ], 
+              [
+                -84.037494, 
+                35.34985
+              ], 
+              [
+                -84.035343, 
+                35.350833
+              ], 
+              [
+                -84.024756, 
+                35.353896
+              ], 
+              [
+                -84.00225, 
+                35.422548
+              ], 
+              [
+                -83.999906, 
+                35.425201
+              ], 
+              [
+                -83.9614, 
+                35.459496
+              ], 
+              [
+                -83.961054, 
+                35.462838
+              ], 
+              [
+                -83.961056, 
+                35.463738
+              ], 
+              [
+                -83.961053, 
+                35.464143
+              ], 
+              [
+                -83.952882, 
+                35.460635
+              ], 
+              [
+                -83.952676, 
+                35.460763
+              ], 
+              [
+                -83.933876, 
+                35.472438
+              ], 
+              [
+                -83.880074, 
+                35.518745
+              ], 
+              [
+                -83.756917, 
+                35.563604
+              ], 
+              [
+                -83.676268, 
+                35.570289
+              ], 
+              [
+                -83.662957, 
+                35.569138
+              ], 
+              [
+                -83.640498, 
+                35.566075
+              ], 
+              [
+                -83.498335, 
+                35.562981
+              ], 
+              [
+                -83.485527, 
+                35.568204
+              ], 
+              [
+                -83.480617, 
+                35.576633
+              ], 
+              [
+                -83.478523, 
+                35.579202
+              ], 
+              [
+                -83.479082, 
+                35.583316
+              ], 
+              [
+                -83.445802, 
+                35.611803
+              ], 
+              [
+                -83.366941, 
+                35.638728
+              ], 
+              [
+                -83.297154, 
+                35.65775
+              ], 
+              [
+                -83.254231, 
+                35.695807
+              ], 
+              [
+                -83.250695, 
+                35.709349
+              ], 
+              [
+                -83.255489, 
+                35.714974
+              ], 
+              [
+                -83.251247, 
+                35.719916
+              ], 
+              [
+                -83.240669, 
+                35.72676
+              ], 
+              [
+                -83.164909, 
+                35.759965
+              ], 
+              [
+                -83.100233, 
+                35.774745
+              ], 
+              [
+                -83.100329, 
+                35.774804
+              ], 
+              [
+                -83.100225, 
+                35.774765
+              ], 
+              [
+                -82.995803, 
+                35.773128
+              ], 
+              [
+                -82.98397, 
+                35.77801
+              ], 
+              [
+                -82.964108, 
+                35.7941
+              ], 
+              [
+                -82.962842, 
+                35.795126
+              ], 
+              [
+                -82.918356, 
+                35.845467
+              ], 
+              [
+                -82.89798, 
+                35.881278
+              ], 
+              [
+                -82.913338, 
+                35.924113
+              ], 
+              [
+                -82.898506, 
+                35.9451
+              ], 
+              [
+                -82.898505, 
+                35.945101
+              ], 
+              [
+                -82.874159, 
+                35.952698
+              ], 
+              [
+                -82.852554, 
+                35.949089
+              ], 
+              [
+                -82.830112, 
+                35.932972
+              ], 
+              [
+                -82.778625, 
+                35.974792
+              ], 
+              [
+                -82.754465, 
+                36.004304
+              ], 
+              [
+                -82.715365, 
+                36.024253
+              ], 
+              [
+                -82.683565, 
+                36.046104
+              ], 
+              [
+                -82.637165, 
+                36.065805
+              ], 
+              [
+                -82.632265, 
+                36.065705
+              ], 
+              [
+                -82.619205, 
+                36.056556
+              ], 
+              [
+                -82.602877, 
+                36.039833
+              ], 
+              [
+                -82.615062, 
+                36.000306
+              ], 
+              [
+                -82.611262, 
+                35.973155
+              ], 
+              [
+                -82.596774, 
+                35.964987
+              ], 
+              [
+                -82.557529, 
+                35.954671
+              ], 
+              [
+                -82.512598, 
+                35.975664
+              ], 
+              [
+                -82.507068, 
+                35.977475
+              ], 
+              [
+                -82.50586, 
+                35.978342
+              ], 
+              [
+                -82.487451, 
+                35.991557
+              ], 
+              [
+                -82.487411, 
+                35.991634
+              ], 
+              [
+                -82.462958, 
+                36.007309
+              ], 
+              [
+                -82.416857, 
+                36.072885
+              ], 
+              [
+                -82.409458, 
+                36.083409
+              ], 
+              [
+                -82.375558, 
+                36.105609
+              ], 
+              [
+                -82.371383, 
+                36.106388
+              ], 
+              [
+                -82.366566, 
+                36.10765
+              ], 
+              [
+                -82.360919, 
+                36.110614
+              ], 
+              [
+                -82.348422, 
+                36.115929
+              ], 
+              [
+                -82.329177, 
+                36.117427
+              ], 
+              [
+                -82.325169, 
+                36.119363
+              ], 
+              [
+                -82.237737, 
+                36.139189
+              ], 
+              [
+                -82.236415, 
+                36.139926
+              ], 
+              [
+                -82.235479, 
+                36.140748
+              ], 
+              [
+                -82.234807, 
+                36.14172
+              ], 
+              [
+                -82.222052, 
+                36.156911
+              ], 
+              [
+                -82.211251, 
+                36.159012
+              ], 
+              [
+                -82.147948, 
+                36.149516
+              ], 
+              [
+                -82.136547, 
+                36.128817
+              ], 
+              [
+                -82.137974, 
+                36.119576
+              ], 
+              [
+                -82.130646, 
+                36.106417
+              ], 
+              [
+                -82.127146, 
+                36.104417
+              ], 
+              [
+                -82.080518, 
+                36.10571
+              ], 
+              [
+                -82.080143, 
+                36.10572
+              ], 
+              [
+                -82.02664, 
+                36.130222
+              ], 
+              [
+                -81.960101, 
+                36.228131
+              ], 
+              [
+                -81.932994, 
+                36.264881
+              ], 
+              [
+                -81.918113, 
+                36.28711
+              ], 
+              [
+                -81.908137, 
+                36.302013
+              ], 
+              [
+                -81.855005, 
+                36.337259
+              ], 
+              [
+                -81.800812, 
+                36.358073
+              ], 
+              [
+                -81.793688, 
+                36.360428
+              ], 
+              [
+                -81.789712, 
+                36.348324
+              ], 
+              [
+                -81.764927, 
+                36.338672
+              ], 
+              [
+                -81.747842, 
+                36.337356
+              ], 
+              [
+                -81.730976, 
+                36.341187
+              ], 
+              [
+                -81.725938, 
+                36.340364
+              ], 
+              [
+                -81.720969, 
+                36.3875
+              ], 
+              [
+                -81.714277, 
+                36.450978
+              ], 
+              [
+                -81.715082, 
+                36.453365
+              ], 
+              [
+                -81.697287, 
+                36.484738
+              ], 
+              [
+                -81.695907, 
+                36.49158
+              ], 
+              [
+                -81.696835, 
+                36.493393
+              ], 
+              [
+                -81.697261, 
+                36.496141
+              ], 
+              [
+                -81.698265, 
+                36.497221
+              ], 
+              [
+                -81.699928, 
+                36.498018
+              ], 
+              [
+                -81.700238, 
+                36.500475
+              ], 
+              [
+                -81.699923, 
+                36.500865
+              ], 
+              [
+                -81.69797, 
+                36.504063
+              ], 
+              [
+                -81.69729, 
+                36.504887
+              ], 
+              [
+                -81.697829, 
+                36.507544
+              ], 
+              [
+                -81.697744, 
+                36.508448
+              ], 
+              [
+                -81.699446, 
+                36.511504
+              ], 
+              [
+                -81.699601, 
+                36.512883
+              ], 
+              [
+                -81.700093, 
+                36.514158
+              ], 
+              [
+                -81.700553, 
+                36.51519
+              ], 
+              [
+                -81.707963, 
+                36.536209
+              ], 
+              [
+                -81.699962, 
+                36.539714
+              ], 
+              [
+                -81.677535, 
+                36.588117
+              ], 
+              [
+                -81.60697, 
+                36.587094
+              ], 
+              [
+                -81.521032, 
+                36.58052
+              ], 
+              [
+                -81.353322, 
+                36.574723
+              ], 
+              [
+                -81.353169, 
+                36.574724
+              ], 
+              [
+                -81.307511, 
+                36.575024
+              ], 
+              [
+                -81.061866, 
+                36.56702
+              ], 
+              [
+                -81.058844, 
+                36.566976
+              ], 
+              [
+                -80.945988, 
+                36.563196
+              ], 
+              [
+                -80.944338, 
+                36.563058
+              ], 
+              [
+                -80.901836, 
+                36.561754
+              ], 
+              [
+                -80.901726, 
+                36.561751
+              ], 
+              [
+                -80.837954, 
+                36.559131
+              ], 
+              [
+                -80.837641, 
+                36.559118
+              ], 
+              [
+                -80.837089, 
+                36.559154
+              ], 
+              [
+                -80.744101, 
+                36.561686
+              ], 
+              [
+                -80.687539, 
+                36.561411
+              ], 
+              [
+                -80.612158, 
+                36.558127
+              ], 
+              [
+                -80.4401, 
+                36.55063
+              ], 
+              [
+                -80.432628, 
+                36.550302
+              ], 
+              [
+                -80.431605, 
+                36.550219
+              ], 
+              [
+                -80.228263, 
+                36.543867
+              ], 
+              [
+                -80.225408, 
+                36.543748
+              ], 
+              [
+                -80.171636, 
+                36.543219
+              ], 
+              [
+                -80.169535, 
+                36.54319
+              ], 
+              [
+                -80.053455, 
+                36.542623
+              ], 
+              [
+                -80.027269, 
+                36.542495
+              ], 
+              [
+                -79.967511, 
+                36.542502
+              ], 
+              [
+                -79.966979, 
+                36.542475
+              ], 
+              [
+                -79.920239, 
+                36.542365
+              ], 
+              [
+                -79.714855, 
+                36.541884
+              ], 
+              [
+                -79.667309, 
+                36.541772
+              ], 
+              [
+                -79.666827, 
+                36.541772
+              ], 
+              [
+                -79.510961, 
+                36.54074
+              ], 
+              [
+                -79.510647, 
+                36.540738
+              ], 
+              [
+                -79.470047, 
+                36.541025
+              ], 
+              [
+                -79.445961, 
+                36.541195
+              ], 
+              [
+                -79.445687, 
+                36.541218
+              ], 
+              [
+                -79.342696, 
+                36.541382
+              ], 
+              [
+                -79.218638, 
+                36.541579
+              ], 
+              [
+                -79.20948, 
+                36.541594
+              ], 
+              [
+                -79.208686, 
+                36.541571
+              ], 
+              [
+                -79.137936, 
+                36.541739
+              ], 
+              [
+                -79.126078, 
+                36.541533
+              ], 
+              [
+                -79.124736, 
+                36.541568
+              ], 
+              [
+                -78.971814, 
+                36.542123
+              ], 
+              [
+                -78.970577, 
+                36.542154
+              ], 
+              [
+                -78.942254, 
+                36.542079
+              ], 
+              [
+                -78.942009, 
+                36.542113
+              ], 
+              [
+                -78.91542, 
+                36.541974
+              ], 
+              [
+                -78.914543, 
+                36.541972
+              ], 
+              [
+                -78.7963, 
+                36.541713
+              ], 
+              [
+                -78.76543, 
+                36.541727
+              ], 
+              [
+                -78.758392, 
+                36.541852
+              ], 
+              [
+                -78.734122, 
+                36.541902
+              ], 
+              [
+                -78.670051, 
+                36.542035
+              ], 
+              [
+                -78.663317, 
+                36.542011
+              ], 
+              [
+                -78.533013, 
+                36.541004
+              ], 
+              [
+                -78.529722, 
+                36.540981
+              ], 
+              [
+                -78.471022, 
+                36.542307
+              ], 
+              [
+                -78.470792, 
+                36.542316
+              ], 
+              [
+                -78.45697, 
+                36.542474
+              ], 
+              [
+                -78.441199, 
+                36.542687
+              ], 
+              [
+                -78.436333, 
+                36.542666
+              ], 
+              [
+                -78.323912, 
+                36.543809
+              ], 
+              [
+                -78.246681, 
+                36.544341
+              ], 
+              [
+                -78.245462, 
+                36.544411
+              ], 
+              [
+                -78.133323, 
+                36.543847
+              ], 
+              [
+                -78.132911, 
+                36.543811
+              ], 
+              [
+                -78.046202, 
+                36.544168
+              ], 
+              [
+                -78.03942, 
+                36.544196
+              ], 
+              [
+                -78.038938, 
+                36.544173
+              ], 
+              [
+                -77.899771, 
+                36.544663
+              ], 
+              [
+                -77.882357, 
+                36.544737
+              ], 
+              [
+                -77.87528, 
+                36.544754
+              ], 
+              [
+                -77.767117, 
+                36.544752
+              ], 
+              [
+                -77.296875, 
+                36.544746
+              ], 
+              [
+                -77.24969, 
+                36.544745
+              ], 
+              [
+                -77.1645, 
+                36.54633
+              ], 
+              [
+                -76.916048, 
+                36.543815
+              ], 
+              [
+                -76.916001, 
+                36.543818
+              ], 
+              [
+                -76.915384, 
+                36.543856
+              ], 
+              [
+                -76.807078, 
+                36.550606
+              ], 
+              [
+                -76.781296, 
+                36.550659
+              ], 
+              [
+                -76.541687, 
+                36.550312
+              ], 
+              [
+                -76.541391, 
+                36.550312
+              ], 
+              [
+                -76.491497, 
+                36.550365
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 29, 
+      "properties": {
+        "CENSUSAREA": 48617.905, 
+        "GEO_ID": "0400000US37", 
+        "ISO": "US-NC", 
+        "LSAD": "", 
+        "NAME": "North Carolina", 
+        "NAME_1": "North Carolina", 
+        "STATE": "NC"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -82.216217, 
+                35.196044
+              ], 
+              [
+                -82.195483, 
+                35.194951
+              ], 
+              [
+                -82.185513, 
+                35.194355
+              ], 
+              [
+                -82.176874, 
+                35.19379
+              ], 
+              [
+                -82.167676, 
+                35.193699
+              ], 
+              [
+                -81.969325, 
+                35.187215
+              ], 
+              [
+                -81.874433, 
+                35.184113
+              ], 
+              [
+                -81.857832, 
+                35.183492
+              ], 
+              [
+                -81.768073, 
+                35.180132
+              ], 
+              [
+                -81.494265, 
+                35.169882
+              ], 
+              [
+                -81.493401, 
+                35.169951
+              ], 
+              [
+                -81.461408, 
+                35.168657
+              ], 
+              [
+                -81.452398, 
+                35.168293
+              ], 
+              [
+                -81.366691, 
+                35.164893
+              ], 
+              [
+                -81.366599, 
+                35.164889
+              ], 
+              [
+                -81.32802, 
+                35.163404
+              ], 
+              [
+                -81.269199, 
+                35.16114
+              ], 
+              [
+                -81.241686, 
+                35.160081
+              ], 
+              [
+                -81.239358, 
+                35.159974
+              ], 
+              [
+                -81.090215, 
+                35.152627
+              ], 
+              [
+                -81.043407, 
+                35.14839
+              ], 
+              [
+                -81.042758, 
+                35.146042
+              ], 
+              [
+                -81.032547, 
+                35.109102
+              ], 
+              [
+                -81.036163, 
+                35.103205
+              ], 
+              [
+                -81.046524, 
+                35.100617
+              ], 
+              [
+                -81.052078, 
+                35.096276
+              ], 
+              [
+                -81.057236, 
+                35.086129
+              ], 
+              [
+                -81.058029, 
+                35.07319
+              ], 
+              [
+                -81.057465, 
+                35.061983
+              ], 
+              [
+                -81.041489, 
+                35.044703
+              ], 
+              [
+                -80.95787, 
+                35.092639
+              ], 
+              [
+                -80.93495, 
+                35.107409
+              ], 
+              [
+                -80.906553, 
+                35.076763
+              ], 
+              [
+                -80.906417, 
+                35.076608
+              ], 
+              [
+                -80.840461, 
+                35.001566
+              ], 
+              [
+                -80.806784, 
+                34.963249
+              ], 
+              [
+                -80.806461, 
+                34.962894
+              ], 
+              [
+                -80.782042, 
+                34.935782
+              ], 
+              [
+                -80.79675, 
+                34.825281
+              ], 
+              [
+                -80.777712, 
+                34.819697
+              ], 
+              [
+                -80.771792, 
+                34.819646
+              ], 
+              [
+                -80.646601, 
+                34.818592
+              ], 
+              [
+                -80.644656, 
+                34.818568
+              ], 
+              [
+                -80.626077, 
+                34.818217
+              ], 
+              [
+                -80.625993, 
+                34.818239
+              ], 
+              [
+                -80.621222, 
+                34.818174
+              ], 
+              [
+                -80.561674, 
+                34.817481
+              ], 
+              [
+                -80.561657, 
+                34.817481
+              ], 
+              [
+                -80.485683, 
+                34.816732
+              ], 
+              [
+                -80.45166, 
+                34.816396
+              ], 
+              [
+                -80.448766, 
+                34.816332
+              ], 
+              [
+                -80.434843, 
+                34.815968
+              ], 
+              [
+                -80.425902, 
+                34.81581
+              ], 
+              [
+                -80.419586, 
+                34.815581
+              ], 
+              [
+                -80.418433, 
+                34.815622
+              ], 
+              [
+                -80.417014, 
+                34.815508
+              ], 
+              [
+                -80.399871, 
+                34.815128
+              ], 
+              [
+                -80.320413, 
+                34.813813
+              ], 
+              [
+                -80.098994, 
+                34.810147
+              ], 
+              [
+                -80.098022, 
+                34.810147
+              ], 
+              [
+                -80.077223, 
+                34.809716
+              ], 
+              [
+                -80.072912, 
+                34.809736
+              ], 
+              [
+                -80.042764, 
+                34.809097
+              ], 
+              [
+                -80.027464, 
+                34.808726
+              ], 
+              [
+                -79.927618, 
+                34.806555
+              ], 
+              [
+                -79.773607, 
+                34.805931
+              ], 
+              [
+                -79.772829, 
+                34.805954
+              ], 
+              [
+                -79.744925, 
+                34.805686
+              ], 
+              [
+                -79.744116, 
+                34.805651
+              ], 
+              [
+                -79.692948, 
+                34.804973
+              ], 
+              [
+                -79.690201, 
+                34.804937
+              ], 
+              [
+                -79.688088, 
+                34.804897
+              ], 
+              [
+                -79.634216, 
+                34.771012
+              ], 
+              [
+                -79.631577, 
+                34.768835
+              ], 
+              [
+                -79.561691, 
+                34.711996
+              ], 
+              [
+                -79.554454, 
+                34.706363
+              ], 
+              [
+                -79.520269, 
+                34.678327
+              ], 
+              [
+                -79.519043, 
+                34.677321
+              ], 
+              [
+                -79.490201, 
+                34.653819
+              ], 
+              [
+                -79.479305, 
+                34.64464
+              ], 
+              [
+                -79.471599, 
+                34.6372
+              ], 
+              [
+                -79.468717, 
+                34.635323
+              ], 
+              [
+                -79.461754, 
+                34.630432
+              ], 
+              [
+                -79.461318, 
+                34.630126
+              ], 
+              [
+                -79.459766, 
+                34.629027
+              ], 
+              [
+                -79.450034, 
+                34.621036
+              ], 
+              [
+                -79.358317, 
+                34.545358
+              ], 
+              [
+                -79.331328, 
+                34.521869
+              ], 
+              [
+                -79.324854, 
+                34.516282
+              ], 
+              [
+                -79.323249, 
+                34.514634
+              ], 
+              [
+                -79.198982, 
+                34.406699
+              ], 
+              [
+                -79.192041, 
+                34.40104
+              ], 
+              [
+                -79.190739, 
+                34.399751
+              ], 
+              [
+                -79.151485, 
+                34.366753
+              ], 
+              [
+                -79.143242, 
+                34.359817
+              ], 
+              [
+                -79.071169, 
+                34.29924
+              ], 
+              [
+                -78.712206, 
+                33.996732
+              ], 
+              [
+                -78.710141, 
+                33.994688
+              ], 
+              [
+                -78.6505, 
+                33.944035
+              ], 
+              [
+                -78.541087, 
+                33.851112
+              ], 
+              [
+                -78.553944, 
+                33.847831
+              ], 
+              [
+                -78.584841, 
+                33.844282
+              ], 
+              [
+                -78.67226, 
+                33.817587
+              ], 
+              [
+                -78.714116, 
+                33.800138
+              ], 
+              [
+                -78.772737, 
+                33.768511
+              ], 
+              [
+                -78.812931, 
+                33.743472
+              ], 
+              [
+                -78.862931, 
+                33.705654
+              ], 
+              [
+                -78.938076, 
+                33.639826
+              ], 
+              [
+                -79.002109, 
+                33.572114
+              ], 
+              [
+                -79.007356, 
+                33.566565
+              ], 
+              [
+                -79.028516, 
+                33.533365
+              ], 
+              [
+                -79.041125, 
+                33.523773
+              ], 
+              [
+                -79.084588, 
+                33.483669
+              ], 
+              [
+                -79.10136, 
+                33.461016
+              ], 
+              [
+                -79.135441, 
+                33.403867
+              ], 
+              [
+                -79.147496, 
+                33.378243
+              ], 
+              [
+                -79.152035, 
+                33.350925
+              ], 
+              [
+                -79.158429, 
+                33.332811
+              ], 
+              [
+                -79.162332, 
+                33.327246
+              ], 
+              [
+                -79.180318, 
+                33.254141
+              ], 
+              [
+                -79.180563, 
+                33.237955
+              ], 
+              [
+                -79.172394, 
+                33.206577
+              ], 
+              [
+                -79.18787, 
+                33.173712
+              ], 
+              [
+                -79.195631, 
+                33.166016
+              ], 
+              [
+                -79.215453, 
+                33.155569
+              ], 
+              [
+                -79.238262, 
+                33.137055
+              ], 
+              [
+                -79.24609, 
+                33.124865
+              ], 
+              [
+                -79.290754, 
+                33.110051
+              ], 
+              [
+                -79.291591, 
+                33.109773
+              ], 
+              [
+                -79.329909, 
+                33.089986
+              ], 
+              [
+                -79.337169, 
+                33.072302
+              ], 
+              [
+                -79.335346, 
+                33.065362
+              ], 
+              [
+                -79.339313, 
+                33.050336
+              ], 
+              [
+                -79.359961, 
+                33.006672
+              ], 
+              [
+                -79.403712, 
+                33.003903
+              ], 
+              [
+                -79.416515, 
+                33.006815
+              ], 
+              [
+                -79.423447, 
+                33.015085
+              ], 
+              [
+                -79.461047, 
+                33.007639
+              ], 
+              [
+                -79.483499, 
+                33.001265
+              ], 
+              [
+                -79.488727, 
+                33.015832
+              ], 
+              [
+                -79.506923, 
+                33.032813
+              ], 
+              [
+                -79.522449, 
+                33.03535
+              ], 
+              [
+                -79.55756, 
+                33.021269
+              ], 
+              [
+                -79.580725, 
+                33.006447
+              ], 
+              [
+                -79.58659, 
+                32.991334
+              ], 
+              [
+                -79.60102, 
+                32.979282
+              ], 
+              [
+                -79.606615, 
+                32.972248
+              ], 
+              [
+                -79.617611, 
+                32.952726
+              ], 
+              [
+                -79.617715, 
+                32.94487
+              ], 
+              [
+                -79.612928, 
+                32.934815
+              ], 
+              [
+                -79.606194, 
+                32.925953
+              ], 
+              [
+                -79.585897, 
+                32.926461
+              ], 
+              [
+                -79.581687, 
+                32.931341
+              ], 
+              [
+                -79.574951, 
+                32.934526
+              ], 
+              [
+                -79.572614, 
+                32.933885
+              ], 
+              [
+                -79.569762, 
+                32.926692
+              ], 
+              [
+                -79.576006, 
+                32.906235
+              ], 
+              [
+                -79.631149, 
+                32.888606
+              ], 
+              [
+                -79.655426, 
+                32.872705
+              ], 
+              [
+                -79.695141, 
+                32.850398
+              ], 
+              [
+                -79.699482, 
+                32.839997
+              ], 
+              [
+                -79.702956, 
+                32.835781
+              ], 
+              [
+                -79.719879, 
+                32.825796
+              ], 
+              [
+                -79.716761, 
+                32.813627
+              ], 
+              [
+                -79.726389, 
+                32.805996
+              ], 
+              [
+                -79.811021, 
+                32.77696
+              ], 
+              [
+                -79.818237, 
+                32.766352
+              ], 
+              [
+                -79.84035, 
+                32.756816
+              ], 
+              [
+                -79.848527, 
+                32.755248
+              ], 
+              [
+                -79.866742, 
+                32.757422
+              ], 
+              [
+                -79.872232, 
+                32.752128
+              ], 
+              [
+                -79.873605, 
+                32.745657
+              ], 
+              [
+                -79.868352, 
+                32.734849
+              ], 
+              [
+                -79.870336, 
+                32.727777
+              ], 
+              [
+                -79.888028, 
+                32.695177
+              ], 
+              [
+                -79.884961, 
+                32.684402
+              ], 
+              [
+                -79.915682, 
+                32.664915
+              ], 
+              [
+                -79.968468, 
+                32.639732
+              ], 
+              [
+                -79.975248, 
+                32.639537
+              ], 
+              [
+                -79.986917, 
+                32.626388
+              ], 
+              [
+                -79.99175, 
+                32.616389
+              ], 
+              [
+                -79.999374, 
+                32.611851
+              ], 
+              [
+                -80.010505, 
+                32.608852
+              ], 
+              [
+                -80.037276, 
+                32.610236
+              ], 
+              [
+                -80.077039, 
+                32.603319
+              ], 
+              [
+                -80.121368, 
+                32.590523
+              ], 
+              [
+                -80.148406, 
+                32.578479
+              ], 
+              [
+                -80.167286, 
+                32.559885
+              ], 
+              [
+                -80.171764, 
+                32.546118
+              ], 
+              [
+                -80.188401, 
+                32.553604
+              ], 
+              [
+                -80.193676, 
+                32.554213
+              ], 
+              [
+                -80.20523, 
+                32.555547
+              ], 
+              [
+                -80.246361, 
+                32.531114
+              ], 
+              [
+                -80.249566, 
+                32.529584
+              ], 
+              [
+                -80.277681, 
+                32.516161
+              ], 
+              [
+                -80.332438, 
+                32.478104
+              ], 
+              [
+                -80.338354, 
+                32.47873
+              ], 
+              [
+                -80.343883, 
+                32.490795
+              ], 
+              [
+                -80.363956, 
+                32.496098
+              ], 
+              [
+                -80.380716, 
+                32.486359
+              ], 
+              [
+                -80.386827, 
+                32.47881
+              ], 
+              [
+                -80.392561, 
+                32.475332
+              ], 
+              [
+                -80.413487, 
+                32.470672
+              ], 
+              [
+                -80.415943, 
+                32.472074
+              ], 
+              [
+                -80.417896, 
+                32.476076
+              ], 
+              [
+                -80.418502, 
+                32.490894
+              ], 
+              [
+                -80.423454, 
+                32.497989
+              ], 
+              [
+                -80.439407, 
+                32.503472
+              ], 
+              [
+                -80.452078, 
+                32.497286
+              ], 
+              [
+                -80.46571, 
+                32.4953
+              ], 
+              [
+                -80.472068, 
+                32.496964
+              ], 
+              [
+                -80.47691, 
+                32.48539
+              ], 
+              [
+                -80.48025, 
+                32.477407
+              ], 
+              [
+                -80.484617, 
+                32.460976
+              ], 
+              [
+                -80.480156, 
+                32.447048
+              ], 
+              [
+                -80.467588, 
+                32.425259
+              ], 
+              [
+                -80.446075, 
+                32.423721
+              ], 
+              [
+                -80.43296, 
+                32.410659
+              ], 
+              [
+                -80.429941, 
+                32.401782
+              ], 
+              [
+                -80.429291, 
+                32.389667
+              ], 
+              [
+                -80.434303, 
+                32.375193
+              ], 
+              [
+                -80.445451, 
+                32.350335
+              ], 
+              [
+                -80.456814, 
+                32.336884
+              ], 
+              [
+                -80.455192, 
+                32.326458
+              ], 
+              [
+                -80.466342, 
+                32.31917
+              ], 
+              [
+                -80.517871, 
+                32.298796
+              ], 
+              [
+                -80.539429, 
+                32.287024
+              ], 
+              [
+                -80.545688, 
+                32.282076
+              ], 
+              [
+                -80.571096, 
+                32.273278
+              ], 
+              [
+                -80.596394, 
+                32.273549
+              ], 
+              [
+                -80.618286, 
+                32.260183
+              ], 
+              [
+                -80.638857, 
+                32.255618
+              ], 
+              [
+                -80.658634, 
+                32.248638
+              ], 
+              [
+                -80.669166, 
+                32.216783
+              ], 
+              [
+                -80.688857, 
+                32.200971
+              ], 
+              [
+                -80.721463, 
+                32.160427
+              ], 
+              [
+                -80.749091, 
+                32.140137
+              ], 
+              [
+                -80.789996, 
+                32.122494
+              ], 
+              [
+                -80.812503, 
+                32.109746
+              ], 
+              [
+                -80.82153, 
+                32.108589
+              ], 
+              [
+                -80.828394, 
+                32.113222
+              ], 
+              [
+                -80.831531, 
+                32.112709
+              ], 
+              [
+                -80.844431, 
+                32.109709
+              ], 
+              [
+                -80.858735, 
+                32.099581
+              ], 
+              [
+                -80.878111, 
+                32.079792
+              ], 
+              [
+                -80.905378, 
+                32.051943
+              ], 
+              [
+                -80.892344, 
+                32.043764
+              ], 
+              [
+                -80.885517, 
+                32.0346
+              ], 
+              [
+                -81.004115, 
+                32.072225
+              ], 
+              [
+                -81.042833, 
+                32.084508
+              ], 
+              [
+                -81.06185, 
+                32.087935
+              ], 
+              [
+                -81.113334, 
+                32.113205
+              ], 
+              [
+                -81.117234, 
+                32.117605
+              ], 
+              [
+                -81.122034, 
+                32.161803
+              ], 
+              [
+                -81.125457, 
+                32.22713
+              ], 
+              [
+                -81.128034, 
+                32.276297
+              ], 
+              [
+                -81.120333, 
+                32.285796
+              ], 
+              [
+                -81.122333, 
+                32.305395
+              ], 
+              [
+                -81.134332, 
+                32.341693
+              ], 
+              [
+                -81.140932, 
+                32.349393
+              ], 
+              [
+                -81.168032, 
+                32.368391
+              ], 
+              [
+                -81.199029, 
+                32.467286
+              ], 
+              [
+                -81.275415, 
+                32.539457
+              ], 
+              [
+                -81.286776, 
+                32.544831
+              ], 
+              [
+                -81.318255, 
+                32.559722
+              ], 
+              [
+                -81.328753, 
+                32.561228
+              ], 
+              [
+                -81.348155, 
+                32.569294
+              ], 
+              [
+                -81.389258, 
+                32.595385
+              ], 
+              [
+                -81.389338, 
+                32.595436
+              ], 
+              [
+                -81.411906, 
+                32.61841
+              ], 
+              [
+                -81.41866, 
+                32.629392
+              ], 
+              [
+                -81.418431, 
+                32.634704
+              ], 
+              [
+                -81.414761, 
+                32.63744
+              ], 
+              [
+                -81.405134, 
+                32.744964
+              ], 
+              [
+                -81.404949, 
+                32.747027
+              ], 
+              [
+                -81.423772, 
+                32.810514
+              ], 
+              [
+                -81.49983, 
+                32.963816
+              ], 
+              [
+                -81.494736, 
+                32.978998
+              ], 
+              [
+                -81.491495, 
+                32.998572
+              ], 
+              [
+                -81.496637, 
+                33.010224
+              ], 
+              [
+                -81.51169, 
+                33.024506
+              ], 
+              [
+                -81.541831, 
+                33.045654
+              ], 
+              [
+                -81.615756, 
+                33.092534
+              ], 
+              [
+                -81.620287, 
+                33.095408
+              ], 
+              [
+                -81.696934, 
+                33.116551
+              ], 
+              [
+                -81.772251, 
+                33.18012
+              ], 
+              [
+                -81.851975, 
+                33.247408
+              ], 
+              [
+                -81.852136, 
+                33.247544
+              ], 
+              [
+                -81.902737, 
+                33.331242
+              ], 
+              [
+                -81.912572, 
+                33.408811
+              ], 
+              [
+                -81.957934, 
+                33.468632
+              ], 
+              [
+                -81.967037, 
+                33.480636
+              ], 
+              [
+                -82.007138, 
+                33.522835
+              ], 
+              [
+                -82.007638, 
+                33.523335
+              ], 
+              [
+                -82.014293, 
+                33.530313
+              ], 
+              [
+                -82.028238, 
+                33.544934
+              ], 
+              [
+                -82.046335, 
+                33.56383
+              ], 
+              [
+                -82.069039, 
+                33.575382
+              ], 
+              [
+                -82.098816, 
+                33.586358
+              ], 
+              [
+                -82.11663, 
+                33.589723
+              ], 
+              [
+                -82.124841, 
+                33.591274
+              ], 
+              [
+                -82.12908, 
+                33.589925
+              ], 
+              [
+                -82.135046, 
+                33.591044
+              ], 
+              [
+                -82.179854, 
+                33.615945
+              ], 
+              [
+                -82.196583, 
+                33.630582
+              ], 
+              [
+                -82.218649, 
+                33.686299
+              ], 
+              [
+                -82.247472, 
+                33.752591
+              ], 
+              [
+                -82.301457, 
+                33.801864
+              ], 
+              [
+                -82.32448, 
+                33.820033
+              ], 
+              [
+                -82.403881, 
+                33.865477
+              ], 
+              [
+                -82.408354, 
+                33.86632
+              ], 
+              [
+                -82.422803, 
+                33.863754
+              ], 
+              [
+                -82.429164, 
+                33.865844
+              ], 
+              [
+                -82.564483, 
+                33.955744
+              ], 
+              [
+                -82.564582, 
+                33.95581
+              ], 
+              [
+                -82.597079, 
+                34.01239
+              ], 
+              [
+                -82.640701, 
+                34.088341
+              ], 
+              [
+                -82.641252, 
+                34.088914
+              ], 
+              [
+                -82.652175, 
+                34.099704
+              ], 
+              [
+                -82.654019, 
+                34.100346
+              ], 
+              [
+                -82.658561, 
+                34.103118
+              ], 
+              [
+                -82.659077, 
+                34.103544
+              ], 
+              [
+                -82.668113, 
+                34.12016
+              ], 
+              [
+                -82.67732, 
+                34.131657
+              ], 
+              [
+                -82.70414, 
+                34.141007
+              ], 
+              [
+                -82.717507, 
+                34.150504
+              ], 
+              [
+                -82.731881, 
+                34.178363
+              ], 
+              [
+                -82.741491, 
+                34.208709
+              ], 
+              [
+                -82.74192, 
+                34.210063
+              ], 
+              [
+                -82.744415, 
+                34.224913
+              ], 
+              [
+                -82.743461, 
+                34.227343
+              ], 
+              [
+                -82.74198, 
+                34.230196
+              ], 
+              [
+                -82.755028, 
+                34.276067
+              ], 
+              [
+                -82.766078, 
+                34.293509
+              ], 
+              [
+                -82.848651, 
+                34.423844
+              ], 
+              [
+                -82.874864, 
+                34.468891
+              ], 
+              [
+                -82.873831, 
+                34.471508
+              ], 
+              [
+                -82.882864, 
+                34.479003
+              ], 
+              [
+                -82.902665, 
+                34.485902
+              ], 
+              [
+                -82.939067, 
+                34.486202
+              ], 
+              [
+                -82.979568, 
+                34.482702
+              ], 
+              [
+                -82.992215, 
+                34.479198
+              ], 
+              [
+                -82.992671, 
+                34.479072
+              ], 
+              [
+                -82.995284, 
+                34.474549
+              ], 
+              [
+                -83.006848, 
+                34.474376
+              ], 
+              [
+                -83.034712, 
+                34.483495
+              ], 
+              [
+                -83.052161, 
+                34.493062
+              ], 
+              [
+                -83.072746, 
+                34.504349
+              ], 
+              [
+                -83.087189, 
+                34.515939
+              ], 
+              [
+                -83.106874, 
+                34.534053
+              ], 
+              [
+                -83.170278, 
+                34.592398
+              ], 
+              [
+                -83.170978, 
+                34.598798
+              ], 
+              [
+                -83.167523, 
+                34.600424
+              ], 
+              [
+                -83.240676, 
+                34.624307
+              ], 
+              [
+                -83.240669, 
+                34.624507
+              ], 
+              [
+                -83.291683, 
+                34.653396
+              ], 
+              [
+                -83.337867, 
+                34.687681
+              ], 
+              [
+                -83.338194, 
+                34.687924
+              ], 
+              [
+                -83.351293, 
+                34.701703
+              ], 
+              [
+                -83.350976, 
+                34.713243
+              ], 
+              [
+                -83.351392, 
+                34.714456
+              ], 
+              [
+                -83.352485, 
+                34.715993
+              ], 
+              [
+                -83.352422, 
+                34.716111
+              ], 
+              [
+                -83.339129, 
+                34.741266
+              ], 
+              [
+                -83.32406, 
+                34.788691
+              ], 
+              [
+                -83.283151, 
+                34.821328
+              ], 
+              [
+                -83.267293, 
+                34.832748
+              ], 
+              [
+                -83.242962, 
+                34.877749
+              ], 
+              [
+                -83.143261, 
+                34.924756
+              ], 
+              [
+                -83.108535, 
+                35.000771
+              ], 
+              [
+                -83.008447, 
+                35.026974
+              ], 
+              [
+                -82.897499, 
+                35.056021
+              ], 
+              [
+                -82.78113, 
+                35.084585
+              ], 
+              [
+                -82.781062, 
+                35.084492
+              ], 
+              [
+                -82.777407, 
+                35.076885
+              ], 
+              [
+                -82.779116, 
+                35.073674
+              ], 
+              [
+                -82.780546, 
+                35.069043
+              ], 
+              [
+                -82.781973, 
+                35.066817
+              ], 
+              [
+                -82.764464, 
+                35.068177
+              ], 
+              [
+                -82.686738, 
+                35.11979
+              ], 
+              [
+                -82.686496, 
+                35.121822
+              ], 
+              [
+                -82.582264, 
+                35.142268
+              ], 
+              [
+                -82.580127, 
+                35.141963
+              ], 
+              [
+                -82.574406, 
+                35.144216
+              ], 
+              [
+                -82.536527, 
+                35.159137
+              ], 
+              [
+                -82.535804, 
+                35.158699
+              ], 
+              [
+                -82.517284, 
+                35.162643
+              ], 
+              [
+                -82.51691, 
+                35.163029
+              ], 
+              [
+                -82.476136, 
+                35.175486
+              ], 
+              [
+                -82.384029, 
+                35.210542
+              ], 
+              [
+                -82.35243, 
+                35.206595
+              ], 
+              [
+                -82.288453, 
+                35.198605
+              ], 
+              [
+                -82.257515, 
+                35.198636
+              ], 
+              [
+                -82.230915, 
+                35.196784
+              ], 
+              [
+                -82.230517, 
+                35.196764
+              ], 
+              [
+                -82.216217, 
+                35.196044
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 30, 
+      "properties": {
+        "CENSUSAREA": 30060.696, 
+        "GEO_ID": "0400000US45", 
+        "ISO": "US-SC", 
+        "LSAD": "", 
+        "NAME": "South Carolina", 
+        "NAME_1": "South Carolina", 
+        "STATE": "SC"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -122.397349, 
+                47.912401
+              ], 
+              [
+                -122.419274, 
+                47.912125
+              ], 
+              [
+                -122.431035, 
+                47.914732
+              ], 
+              [
+                -122.445519, 
+                47.930226
+              ], 
+              [
+                -122.445759, 
+                47.93619
+              ], 
+              [
+                -122.44079, 
+                47.946594
+              ], 
+              [
+                -122.44076, 
+                47.951845
+              ], 
+              [
+                -122.446682, 
+                47.963155
+              ], 
+              [
+                -122.47266, 
+                47.988449
+              ], 
+              [
+                -122.487505, 
+                47.990729
+              ], 
+              [
+                -122.501257, 
+                47.987089
+              ], 
+              [
+                -122.514813, 
+                47.981152
+              ], 
+              [
+                -122.51778, 
+                47.974916
+              ], 
+              [
+                -122.521219, 
+                47.972997
+              ], 
+              [
+                -122.546824, 
+                47.967215
+              ], 
+              [
+                -122.552053, 
+                47.973644
+              ], 
+              [
+                -122.551032, 
+                47.977346
+              ], 
+              [
+                -122.543063, 
+                47.985983
+              ], 
+              [
+                -122.541564, 
+                47.992998
+              ], 
+              [
+                -122.542924, 
+                47.996404
+              ], 
+              [
+                -122.560018, 
+                48.006502
+              ], 
+              [
+                -122.58178, 
+                48.010386
+              ], 
+              [
+                -122.607342, 
+                48.030992
+              ], 
+              [
+                -122.596786, 
+                48.038834
+              ], 
+              [
+                -122.593621, 
+                48.0472
+              ], 
+              [
+                -122.594922, 
+                48.056318
+              ], 
+              [
+                -122.614028, 
+                48.072788
+              ], 
+              [
+                -122.613217, 
+                48.079485
+              ], 
+              [
+                -122.607291, 
+                48.088034
+              ], 
+              [
+                -122.598301, 
+                48.110616
+              ], 
+              [
+                -122.602109, 
+                48.135249
+              ], 
+              [
+                -122.609568, 
+                48.15186
+              ], 
+              [
+                -122.617464, 
+                48.159055
+              ], 
+              [
+                -122.633167, 
+                48.163281
+              ], 
+              [
+                -122.65602, 
+                48.162513
+              ], 
+              [
+                -122.671235, 
+                48.157312
+              ], 
+              [
+                -122.677337, 
+                48.154587
+              ], 
+              [
+                -122.679556, 
+                48.155113
+              ], 
+              [
+                -122.686626, 
+                48.174653
+              ], 
+              [
+                -122.693084, 
+                48.181509
+              ], 
+              [
+                -122.711508, 
+                48.193573
+              ], 
+              [
+                -122.73503, 
+                48.199964
+              ], 
+              [
+                -122.744612, 
+                48.20965
+              ], 
+              [
+                -122.763042, 
+                48.215342
+              ], 
+              [
+                -122.770045, 
+                48.224395
+              ], 
+              [
+                -122.769939, 
+                48.227548
+              ], 
+              [
+                -122.752563, 
+                48.260061
+              ], 
+              [
+                -122.732022, 
+                48.279425
+              ], 
+              [
+                -122.72259, 
+                48.304268
+              ], 
+              [
+                -122.707077, 
+                48.315286
+              ], 
+              [
+                -122.673731, 
+                48.354683
+              ], 
+              [
+                -122.664928, 
+                48.374823
+              ], 
+              [
+                -122.664659, 
+                48.401508
+              ], 
+              [
+                -122.644798, 
+                48.405488
+              ], 
+              [
+                -122.634991, 
+                48.404244
+              ], 
+              [
+                -122.632643, 
+                48.401068
+              ], 
+              [
+                -122.634024, 
+                48.398858
+              ], 
+              [
+                -122.637339, 
+                48.398029
+              ], 
+              [
+                -122.637892, 
+                48.395681
+              ], 
+              [
+                -122.63582, 
+                48.395128
+              ], 
+              [
+                -122.627809, 
+                48.3972
+              ], 
+              [
+                -122.617174, 
+                48.407145
+              ], 
+              [
+                -122.609715, 
+                48.411565
+              ], 
+              [
+                -122.60198, 
+                48.409907
+              ], 
+              [
+                -122.596732, 
+                48.405626
+              ], 
+              [
+                -122.595351, 
+                48.3972
+              ], 
+              [
+                -122.585038, 
+                48.395166
+              ], 
+              [
+                -122.588891, 
+                48.363005
+              ], 
+              [
+                -122.585162, 
+                48.353304
+              ], 
+              [
+                -122.565525, 
+                48.348217
+              ], 
+              [
+                -122.551334, 
+                48.342138
+              ], 
+              [
+                -122.515979, 
+                48.320419
+              ], 
+              [
+                -122.506568, 
+                48.310041
+              ], 
+              [
+                -122.504729, 
+                48.300373
+              ], 
+              [
+                -122.505828, 
+                48.297677
+              ], 
+              [
+                -122.519535, 
+                48.288314
+              ], 
+              [
+                -122.522756, 
+                48.285504
+              ], 
+              [
+                -122.530976, 
+                48.282445
+              ], 
+              [
+                -122.551793, 
+                48.281512
+              ], 
+              [
+                -122.558332, 
+                48.282061
+              ], 
+              [
+                -122.574872, 
+                48.294903
+              ], 
+              [
+                -122.584086, 
+                48.297987
+              ], 
+              [
+                -122.599532, 
+                48.298303
+              ], 
+              [
+                -122.618466, 
+                48.294159
+              ], 
+              [
+                -122.626757, 
+                48.288991
+              ], 
+              [
+                -122.620748, 
+                48.282961
+              ], 
+              [
+                -122.623779, 
+                48.269431
+              ], 
+              [
+                -122.652639, 
+                48.265081
+              ], 
+              [
+                -122.65343, 
+                48.25934
+              ], 
+              [
+                -122.66921, 
+                48.240614
+              ], 
+              [
+                -122.668385, 
+                48.223967
+              ], 
+              [
+                -122.63126, 
+                48.220686
+              ], 
+              [
+                -122.628352, 
+                48.222467
+              ], 
+              [
+                -122.606406, 
+                48.208262
+              ], 
+              [
+                -122.588138, 
+                48.18594
+              ], 
+              [
+                -122.585778, 
+                48.182352
+              ], 
+              [
+                -122.582595, 
+                48.170424
+              ], 
+              [
+                -122.574905, 
+                48.155593
+              ], 
+              [
+                -122.567936, 
+                48.148624
+              ], 
+              [
+                -122.558205, 
+                48.119579
+              ], 
+              [
+                -122.559911, 
+                48.114186
+              ], 
+              [
+                -122.571615, 
+                48.105113
+              ], 
+              [
+                -122.571853, 
+                48.102143
+              ], 
+              [
+                -122.554559, 
+                48.077392
+              ], 
+              [
+                -122.54512, 
+                48.05255
+              ], 
+              [
+                -122.538953, 
+                48.050232
+              ], 
+              [
+                -122.516314, 
+                48.057181
+              ], 
+              [
+                -122.513994, 
+                48.059077
+              ], 
+              [
+                -122.511081, 
+                48.075301
+              ], 
+              [
+                -122.516906, 
+                48.081085
+              ], 
+              [
+                -122.525422, 
+                48.096537
+              ], 
+              [
+                -122.513276, 
+                48.097538
+              ], 
+              [
+                -122.491104, 
+                48.094242
+              ], 
+              [
+                -122.461606, 
+                48.068501
+              ], 
+              [
+                -122.448419, 
+                48.054323
+              ], 
+              [
+                -122.431266, 
+                48.045001
+              ], 
+              [
+                -122.400628, 
+                48.036563
+              ], 
+              [
+                -122.387382, 
+                48.03403
+              ], 
+              [
+                -122.376259, 
+                48.034457
+              ], 
+              [
+                -122.373263, 
+                48.000791
+              ], 
+              [
+                -122.369161, 
+                47.995295
+              ], 
+              [
+                -122.353611, 
+                47.981433
+              ], 
+              [
+                -122.350254, 
+                47.969355
+              ], 
+              [
+                -122.349597, 
+                47.958796
+              ], 
+              [
+                -122.350741, 
+                47.953235
+              ], 
+              [
+                -122.358812, 
+                47.93742
+              ], 
+              [
+                -122.367876, 
+                47.932415
+              ], 
+              [
+                -122.376837, 
+                47.923703
+              ], 
+              [
+                -122.37578, 
+                47.910252
+              ], 
+              [
+                -122.3773, 
+                47.905941
+              ], 
+              [
+                -122.380497, 
+                47.904023
+              ], 
+              [
+                -122.39042, 
+                47.905696
+              ], 
+              [
+                -122.397349, 
+                47.912401
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -122.649405, 
+                48.588457
+              ], 
+              [
+                -122.642597, 
+                48.588339
+              ], 
+              [
+                -122.629321, 
+                48.5722
+              ], 
+              [
+                -122.610841, 
+                48.561146
+              ], 
+              [
+                -122.592901, 
+                48.553635
+              ], 
+              [
+                -122.583985, 
+                48.551534
+              ], 
+              [
+                -122.578856, 
+                48.54813
+              ], 
+              [
+                -122.572967, 
+                48.529028
+              ], 
+              [
+                -122.583565, 
+                48.53234
+              ], 
+              [
+                -122.590194, 
+                48.536259
+              ], 
+              [
+                -122.599948, 
+                48.536904
+              ], 
+              [
+                -122.619858, 
+                48.529246
+              ], 
+              [
+                -122.635738, 
+                48.526021
+              ], 
+              [
+                -122.640414, 
+                48.52586
+              ], 
+              [
+                -122.649256, 
+                48.528769
+              ], 
+              [
+                -122.652041, 
+                48.531329
+              ], 
+              [
+                -122.654342, 
+                48.537956
+              ], 
+              [
+                -122.653612, 
+                48.548975
+              ], 
+              [
+                -122.650786, 
+                48.554019
+              ], 
+              [
+                -122.652385, 
+                48.583432
+              ], 
+              [
+                -122.649405, 
+                48.588457
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -122.714512, 
+                48.60878
+              ], 
+              [
+                -122.694672, 
+                48.596602
+              ], 
+              [
+                -122.691745, 
+                48.590612
+              ], 
+              [
+                -122.670638, 
+                48.568812
+              ], 
+              [
+                -122.68944, 
+                48.543903
+              ], 
+              [
+                -122.717278, 
+                48.539739
+              ], 
+              [
+                -122.722407, 
+                48.540606
+              ], 
+              [
+                -122.724031, 
+                48.549906
+              ], 
+              [
+                -122.73048, 
+                48.565602
+              ], 
+              [
+                -122.736199, 
+                48.569005
+              ], 
+              [
+                -122.73944, 
+                48.573893
+              ], 
+              [
+                -122.739898, 
+                48.583949
+              ], 
+              [
+                -122.72493, 
+                48.603263
+              ], 
+              [
+                -122.714512, 
+                48.60878
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -122.699266, 
+                48.621115
+              ], 
+              [
+                -122.69806, 
+                48.62308
+              ], 
+              [
+                -122.674173, 
+                48.629944
+              ], 
+              [
+                -122.657016, 
+                48.609891
+              ], 
+              [
+                -122.666149, 
+                48.608088
+              ], 
+              [
+                -122.676796, 
+                48.610055
+              ], 
+              [
+                -122.686136, 
+                48.613267
+              ], 
+              [
+                -122.699266, 
+                48.621115
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -122.800217, 
+                48.60169
+              ], 
+              [
+                -122.804869, 
+                48.595932
+              ], 
+              [
+                -122.801096, 
+                48.585425
+              ], 
+              [
+                -122.786586, 
+                48.576666
+              ], 
+              [
+                -122.771206, 
+                48.562426
+              ], 
+              [
+                -122.770349, 
+                48.558106
+              ], 
+              [
+                -122.772384, 
+                48.552143
+              ], 
+              [
+                -122.782618, 
+                48.545191
+              ], 
+              [
+                -122.788503, 
+                48.530393
+              ], 
+              [
+                -122.787347, 
+                48.523012
+              ], 
+              [
+                -122.777467, 
+                48.517799
+              ], 
+              [
+                -122.779124, 
+                48.508911
+              ], 
+              [
+                -122.800414, 
+                48.494467
+              ], 
+              [
+                -122.816332, 
+                48.487841
+              ], 
+              [
+                -122.817912, 
+                48.483888
+              ], 
+              [
+                -122.81973, 
+                48.458843
+              ], 
+              [
+                -122.8131, 
+                48.452856
+              ], 
+              [
+                -122.807708, 
+                48.444058
+              ], 
+              [
+                -122.802509, 
+                48.433098
+              ], 
+              [
+                -122.803521, 
+                48.428748
+              ], 
+              [
+                -122.812208, 
+                48.422326
+              ], 
+              [
+                -122.825803, 
+                48.424131
+              ], 
+              [
+                -122.874135, 
+                48.418196
+              ], 
+              [
+                -122.883759, 
+                48.418793
+              ], 
+              [
+                -122.893646, 
+                48.422655
+              ], 
+              [
+                -122.889016, 
+                48.435947
+              ], 
+              [
+                -122.903214, 
+                48.436979
+              ], 
+              [
+                -122.913888, 
+                48.443231
+              ], 
+              [
+                -122.917771, 
+                48.439781
+              ], 
+              [
+                -122.928004, 
+                48.439966
+              ], 
+              [
+                -122.91646, 
+                48.453263
+              ], 
+              [
+                -122.920099, 
+                48.458428
+              ], 
+              [
+                -122.926901, 
+                48.460874
+              ], 
+              [
+                -122.937881, 
+                48.456221
+              ], 
+              [
+                -122.962009, 
+                48.451161
+              ], 
+              [
+                -123.039156, 
+                48.460003
+              ], 
+              [
+                -123.058154, 
+                48.471522
+              ], 
+              [
+                -123.067675, 
+                48.479497
+              ], 
+              [
+                -123.119451, 
+                48.492576
+              ], 
+              [
+                -123.141478, 
+                48.505291
+              ], 
+              [
+                -123.151065, 
+                48.513955
+              ], 
+              [
+                -123.163234, 
+                48.529544
+              ], 
+              [
+                -123.164057, 
+                48.535622
+              ], 
+              [
+                -123.161853, 
+                48.539255
+              ], 
+              [
+                -123.16147, 
+                48.547618
+              ], 
+              [
+                -123.172412, 
+                48.556486
+              ], 
+              [
+                -123.176266, 
+                48.562131
+              ], 
+              [
+                -123.175852, 
+                48.568483
+              ], 
+              [
+                -123.171958, 
+                48.572255
+              ], 
+              [
+                -123.173061, 
+                48.579086
+              ], 
+              [
+                -123.184941, 
+                48.58697
+              ], 
+              [
+                -123.197754, 
+                48.586216
+              ], 
+              [
+                -123.20268, 
+                48.590214
+              ], 
+              [
+                -123.203026, 
+                48.596178
+              ], 
+              [
+                -123.195725, 
+                48.607055
+              ], 
+              [
+                -123.178425, 
+                48.622115
+              ], 
+              [
+                -123.151643, 
+                48.623686
+              ], 
+              [
+                -123.139705, 
+                48.622786
+              ], 
+              [
+                -123.135645, 
+                48.620171
+              ], 
+              [
+                -123.107362, 
+                48.622451
+              ], 
+              [
+                -123.098462, 
+                48.612834
+              ], 
+              [
+                -123.098254, 
+                48.610092
+              ], 
+              [
+                -123.102074, 
+                48.604035
+              ], 
+              [
+                -123.101552, 
+                48.59782
+              ], 
+              [
+                -123.074611, 
+                48.591816
+              ], 
+              [
+                -123.06004, 
+                48.582105
+              ], 
+              [
+                -123.048403, 
+                48.569216
+              ], 
+              [
+                -123.033669, 
+                48.563409
+              ], 
+              [
+                -123.015046, 
+                48.560821
+              ], 
+              [
+                -122.987296, 
+                48.561895
+              ], 
+              [
+                -122.98611, 
+                48.569984
+              ], 
+              [
+                -122.989649, 
+                48.574668
+              ], 
+              [
+                -122.995026, 
+                48.578162
+              ], 
+              [
+                -123.0048, 
+                48.580788
+              ], 
+              [
+                -123.016647, 
+                48.580244
+              ], 
+              [
+                -123.034101, 
+                48.591767
+              ], 
+              [
+                -123.024902, 
+                48.594484
+              ], 
+              [
+                -123.023433, 
+                48.599477
+              ], 
+              [
+                -123.041189, 
+                48.611947
+              ], 
+              [
+                -123.04653, 
+                48.61149
+              ], 
+              [
+                -123.048652, 
+                48.621002
+              ], 
+              [
+                -123.023495, 
+                48.634001
+              ], 
+              [
+                -123.015592, 
+                48.642567
+              ], 
+              [
+                -123.014829, 
+                48.647503
+              ], 
+              [
+                -123.009924, 
+                48.655064
+              ], 
+              [
+                -122.988884, 
+                48.667246
+              ], 
+              [
+                -122.984853, 
+                48.672686
+              ], 
+              [
+                -122.949116, 
+                48.693398
+              ], 
+              [
+                -122.941316, 
+                48.702904
+              ], 
+              [
+                -122.942367, 
+                48.706723
+              ], 
+              [
+                -122.918252, 
+                48.713505
+              ], 
+              [
+                -122.894599, 
+                48.71503
+              ], 
+              [
+                -122.875938, 
+                48.71212
+              ], 
+              [
+                -122.833124, 
+                48.698173
+              ], 
+              [
+                -122.802545, 
+                48.682682
+              ], 
+              [
+                -122.800267, 
+                48.67962
+              ], 
+              [
+                -122.743049, 
+                48.661991
+              ], 
+              [
+                -122.742082, 
+                48.660689
+              ], 
+              [
+                -122.755031, 
+                48.649512
+              ], 
+              [
+                -122.783875, 
+                48.635419
+              ], 
+              [
+                -122.792147, 
+                48.633502
+              ], 
+              [
+                -122.809622, 
+                48.619035
+              ], 
+              [
+                -122.808864, 
+                48.61531
+              ], 
+              [
+                -122.79901, 
+                48.604683
+              ], 
+              [
+                -122.79877, 
+                48.602352
+              ], 
+              [
+                -122.800217, 
+                48.60169
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -123.197953, 
+                48.68466
+              ], 
+              [
+                -123.186076, 
+                48.684917
+              ], 
+              [
+                -123.172066, 
+                48.679866
+              ], 
+              [
+                -123.14799, 
+                48.668001
+              ], 
+              [
+                -123.130962, 
+                48.656789
+              ], 
+              [
+                -123.122016, 
+                48.647065
+              ], 
+              [
+                -123.106165, 
+                48.633473
+              ], 
+              [
+                -123.119677, 
+                48.632972
+              ], 
+              [
+                -123.134956, 
+                48.63724
+              ], 
+              [
+                -123.215917, 
+                48.669352
+              ], 
+              [
+                -123.237148, 
+                48.683466
+              ], 
+              [
+                -123.236567, 
+                48.68895
+              ], 
+              [
+                -123.212892, 
+                48.689713
+              ], 
+              [
+                -123.197953, 
+                48.68466
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -123.025486, 
+                48.717966
+              ], 
+              [
+                -123.019699, 
+                48.721312
+              ], 
+              [
+                -123.009787, 
+                48.722291
+              ], 
+              [
+                -123.007511, 
+                48.718863
+              ], 
+              [
+                -123.005086, 
+                48.694342
+              ], 
+              [
+                -123.014449, 
+                48.684978
+              ], 
+              [
+                -123.021215, 
+                48.681416
+              ], 
+              [
+                -123.042337, 
+                48.675663
+              ], 
+              [
+                -123.041645, 
+                48.678633
+              ], 
+              [
+                -123.035672, 
+                48.68535
+              ], 
+              [
+                -123.03636, 
+                48.69008
+              ], 
+              [
+                -123.047058, 
+                48.695772
+              ], 
+              [
+                -123.070427, 
+                48.699971
+              ], 
+              [
+                -123.040179, 
+                48.717296
+              ], 
+              [
+                -123.025486, 
+                48.717966
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -122.321721, 
+                48.019977
+              ], 
+              [
+                -122.303455, 
+                48.005603
+              ], 
+              [
+                -122.306629, 
+                48.004397
+              ], 
+              [
+                -122.326115, 
+                48.010295
+              ], 
+              [
+                -122.334524, 
+                48.018916
+              ], 
+              [
+                -122.328343, 
+                48.021335
+              ], 
+              [
+                -122.321721, 
+                48.019977
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -123.035393, 
+                49.002154
+              ], 
+              [
+                -123.021459, 
+                48.977299
+              ], 
+              [
+                -123.028091, 
+                48.973943
+              ], 
+              [
+                -123.040967, 
+                48.977305
+              ], 
+              [
+                -123.060717, 
+                48.975388
+              ], 
+              [
+                -123.083834, 
+                48.976139
+              ], 
+              [
+                -123.084498, 
+                48.986535
+              ], 
+              [
+                -123.090546, 
+                49.001976
+              ], 
+              [
+                -123.035393, 
+                49.002154
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -122.695907, 
+                48.737273
+              ], 
+              [
+                -122.668947, 
+                48.706644
+              ], 
+              [
+                -122.663259, 
+                48.697077
+              ], 
+              [
+                -122.644901, 
+                48.691389
+              ], 
+              [
+                -122.618225, 
+                48.670721
+              ], 
+              [
+                -122.609576, 
+                48.645018
+              ], 
+              [
+                -122.616956, 
+                48.645563
+              ], 
+              [
+                -122.635299, 
+                48.651846
+              ], 
+              [
+                -122.673538, 
+                48.680809
+              ], 
+              [
+                -122.691795, 
+                48.711498
+              ], 
+              [
+                -122.702223, 
+                48.717004
+              ], 
+              [
+                -122.718833, 
+                48.716818
+              ], 
+              [
+                -122.721981, 
+                48.723375
+              ], 
+              [
+                -122.722262, 
+                48.731624
+              ], 
+              [
+                -122.715709, 
+                48.748672
+              ], 
+              [
+                -122.70306, 
+                48.743602
+              ], 
+              [
+                -122.695907, 
+                48.737273
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -122.418268, 
+                47.320614
+              ], 
+              [
+                -122.364168, 
+                47.335953
+              ], 
+              [
+                -122.336934, 
+                47.341421
+              ], 
+              [
+                -122.324833, 
+                47.348521
+              ], 
+              [
+                -122.325734, 
+                47.391521
+              ], 
+              [
+                -122.328434, 
+                47.400621
+              ], 
+              [
+                -122.335234, 
+                47.408421
+              ], 
+              [
+                -122.348035, 
+                47.415921
+              ], 
+              [
+                -122.355135, 
+                47.441921
+              ], 
+              [
+                -122.367036, 
+                47.447621
+              ], 
+              [
+                -122.383136, 
+                47.450521
+              ], 
+              [
+                -122.368036, 
+                47.459221
+              ], 
+              [
+                -122.363062, 
+                47.475702
+              ], 
+              [
+                -122.361336, 
+                47.481421
+              ], 
+              [
+                -122.365236, 
+                47.48842
+              ], 
+              [
+                -122.386637, 
+                47.50222
+              ], 
+              [
+                -122.396538, 
+                47.51522
+              ], 
+              [
+                -122.393938, 
+                47.52482
+              ], 
+              [
+                -122.398338, 
+                47.55012
+              ], 
+              [
+                -122.409839, 
+                47.56892
+              ], 
+              [
+                -122.421139, 
+                47.57602
+              ], 
+              [
+                -122.401839, 
+                47.58392
+              ], 
+              [
+                -122.387139, 
+                47.59572
+              ], 
+              [
+                -122.375421, 
+                47.585181
+              ], 
+              [
+                -122.370167, 
+                47.583087
+              ], 
+              [
+                -122.358238, 
+                47.58482
+              ], 
+              [
+                -122.342937, 
+                47.59122
+              ], 
+              [
+                -122.339513, 
+                47.599113
+              ], 
+              [
+                -122.344937, 
+                47.60912
+              ], 
+              [
+                -122.367819, 
+                47.624213
+              ], 
+              [
+                -122.386039, 
+                47.63172
+              ], 
+              [
+                -122.393739, 
+                47.63102
+              ], 
+              [
+                -122.40424, 
+                47.63392
+              ], 
+              [
+                -122.414645, 
+                47.639766
+              ], 
+              [
+                -122.429841, 
+                47.658919
+              ], 
+              [
+                -122.407841, 
+                47.680119
+              ], 
+              [
+                -122.403841, 
+                47.689419
+              ], 
+              [
+                -122.393248, 
+                47.701602
+              ], 
+              [
+                -122.38044, 
+                47.709119
+              ], 
+              [
+                -122.37644, 
+                47.716519
+              ], 
+              [
+                -122.375607, 
+                47.719724
+              ], 
+              [
+                -122.37314, 
+                47.729219
+              ], 
+              [
+                -122.382641, 
+                47.749119
+              ], 
+              [
+                -122.380241, 
+                47.758519
+              ], 
+              [
+                -122.394442, 
+                47.772219
+              ], 
+              [
+                -122.396422, 
+                47.777927
+              ], 
+              [
+                -122.397043, 
+                47.779719
+              ], 
+              [
+                -122.394944, 
+                47.803318
+              ], 
+              [
+                -122.392044, 
+                47.807718
+              ], 
+              [
+                -122.353244, 
+                47.840618
+              ], 
+              [
+                -122.346544, 
+                47.842418
+              ], 
+              [
+                -122.339944, 
+                47.846718
+              ], 
+              [
+                -122.33595, 
+                47.852306
+              ], 
+              [
+                -122.329545, 
+                47.869418
+              ], 
+              [
+                -122.330145, 
+                47.875318
+              ], 
+              [
+                -122.333543, 
+                47.880246
+              ], 
+              [
+                -122.328546, 
+                47.897917
+              ], 
+              [
+                -122.321847, 
+                47.911817
+              ], 
+              [
+                -122.311927, 
+                47.923703
+              ], 
+              [
+                -122.310747, 
+                47.925117
+              ], 
+              [
+                -122.309747, 
+                47.929117
+              ], 
+              [
+                -122.311148, 
+                47.936717
+              ], 
+              [
+                -122.307048, 
+                47.949117
+              ], 
+              [
+                -122.278047, 
+                47.956517
+              ], 
+              [
+                -122.249007, 
+                47.959507
+              ], 
+              [
+                -122.230046, 
+                47.970917
+              ], 
+              [
+                -122.226346, 
+                47.976417
+              ], 
+              [
+                -122.232391, 
+                47.987713
+              ], 
+              [
+                -122.23022, 
+                48.007154
+              ], 
+              [
+                -122.228767, 
+                48.012468
+              ], 
+              [
+                -122.224979, 
+                48.016626
+              ], 
+              [
+                -122.231761, 
+                48.029876
+              ], 
+              [
+                -122.281087, 
+                48.049793
+              ], 
+              [
+                -122.305838, 
+                48.073415
+              ], 
+              [
+                -122.321709, 
+                48.085507
+              ], 
+              [
+                -122.326119, 
+                48.092877
+              ], 
+              [
+                -122.343241, 
+                48.097631
+              ], 
+              [
+                -122.363842, 
+                48.12393
+              ], 
+              [
+                -122.365078, 
+                48.125822
+              ], 
+              [
+                -122.363797, 
+                48.142759
+              ], 
+              [
+                -122.364744, 
+                48.151304
+              ], 
+              [
+                -122.370253, 
+                48.164809
+              ], 
+              [
+                -122.363479, 
+                48.174438
+              ], 
+              [
+                -122.362044, 
+                48.187568
+              ], 
+              [
+                -122.372492, 
+                48.193022
+              ], 
+              [
+                -122.382102, 
+                48.207106
+              ], 
+              [
+                -122.385703, 
+                48.217811
+              ], 
+              [
+                -122.395499, 
+                48.228551
+              ], 
+              [
+                -122.396121, 
+                48.229233
+              ], 
+              [
+                -122.425572, 
+                48.232887
+              ], 
+              [
+                -122.430578, 
+                48.236237
+              ], 
+              [
+                -122.433767, 
+                48.23655
+              ], 
+              [
+                -122.449605, 
+                48.232598
+              ], 
+              [
+                -122.45371, 
+                48.228859
+              ], 
+              [
+                -122.453618, 
+                48.22683
+              ], 
+              [
+                -122.449513, 
+                48.214736
+              ], 
+              [
+                -122.444508, 
+                48.214522
+              ], 
+              [
+                -122.441731, 
+                48.211776
+              ], 
+              [
+                -122.442051, 
+                48.20935
+              ], 
+              [
+                -122.45493, 
+                48.196639
+              ], 
+              [
+                -122.461888, 
+                48.193137
+              ], 
+              [
+                -122.464801, 
+                48.194767
+              ], 
+              [
+                -122.47025, 
+                48.194007
+              ], 
+              [
+                -122.478535, 
+                48.188087
+              ], 
+              [
+                -122.479008, 
+                48.175703
+              ], 
+              [
+                -122.475803, 
+                48.166792
+              ], 
+              [
+                -122.442383, 
+                48.130841
+              ], 
+              [
+                -122.411649, 
+                48.11321
+              ], 
+              [
+                -122.379481, 
+                48.087384
+              ], 
+              [
+                -122.360345, 
+                48.061527
+              ], 
+              [
+                -122.358375, 
+                48.056133
+              ], 
+              [
+                -122.363107, 
+                48.054546
+              ], 
+              [
+                -122.377114, 
+                48.057568
+              ], 
+              [
+                -122.38769, 
+                48.065189
+              ], 
+              [
+                -122.390787, 
+                48.069477
+              ], 
+              [
+                -122.393413, 
+                48.078472
+              ], 
+              [
+                -122.400692, 
+                48.085255
+              ], 
+              [
+                -122.423703, 
+                48.102941
+              ], 
+              [
+                -122.44966, 
+                48.114041
+              ], 
+              [
+                -122.4675, 
+                48.130353
+              ], 
+              [
+                -122.477983, 
+                48.129048
+              ], 
+              [
+                -122.486736, 
+                48.12095
+              ], 
+              [
+                -122.489986, 
+                48.120617
+              ], 
+              [
+                -122.512031, 
+                48.133931
+              ], 
+              [
+                -122.522576, 
+                48.161712
+              ], 
+              [
+                -122.53722, 
+                48.183745
+              ], 
+              [
+                -122.538916, 
+                48.209683
+              ], 
+              [
+                -122.534431, 
+                48.223005
+              ], 
+              [
+                -122.535209, 
+                48.240213
+              ], 
+              [
+                -122.530996, 
+                48.249821
+              ], 
+              [
+                -122.503786, 
+                48.257045
+              ], 
+              [
+                -122.499648, 
+                48.256611
+              ], 
+              [
+                -122.497727, 
+                48.253389
+              ], 
+              [
+                -122.493448, 
+                48.252043
+              ], 
+              [
+                -122.480925, 
+                48.251706
+              ], 
+              [
+                -122.474494, 
+                48.255227
+              ], 
+              [
+                -122.466803, 
+                48.269604
+              ], 
+              [
+                -122.463962, 
+                48.270541
+              ], 
+              [
+                -122.406516, 
+                48.25183
+              ], 
+              [
+                -122.405757, 
+                48.252193
+              ], 
+              [
+                -122.395328, 
+                48.257187
+              ], 
+              [
+                -122.392058, 
+                48.269628
+              ], 
+              [
+                -122.371693, 
+                48.287839
+              ], 
+              [
+                -122.376818, 
+                48.296099
+              ], 
+              [
+                -122.37821, 
+                48.29759
+              ], 
+              [
+                -122.38431, 
+                48.304123
+              ], 
+              [
+                -122.408718, 
+                48.326413
+              ], 
+              [
+                -122.424102, 
+                48.334346
+              ], 
+              [
+                -122.442678, 
+                48.337934
+              ], 
+              [
+                -122.475529, 
+                48.359912
+              ], 
+              [
+                -122.482423, 
+                48.361737
+              ], 
+              [
+                -122.497686, 
+                48.361837
+              ], 
+              [
+                -122.507437, 
+                48.364666
+              ], 
+              [
+                -122.533452, 
+                48.383409
+              ], 
+              [
+                -122.539449, 
+                48.39719
+              ], 
+              [
+                -122.547492, 
+                48.399889
+              ], 
+              [
+                -122.554536, 
+                48.40604
+              ], 
+              [
+                -122.558403, 
+                48.426758
+              ], 
+              [
+                -122.551221, 
+                48.439465
+              ], 
+              [
+                -122.557298, 
+                48.444438
+              ], 
+              [
+                -122.568348, 
+                48.44499
+              ], 
+              [
+                -122.575254, 
+                48.443333
+              ], 
+              [
+                -122.581607, 
+                48.429244
+              ], 
+              [
+                -122.61448, 
+                48.41488
+              ], 
+              [
+                -122.649839, 
+                48.408526
+              ], 
+              [
+                -122.665338, 
+                48.416453
+              ], 
+              [
+                -122.674158, 
+                48.424726
+              ], 
+              [
+                -122.678928, 
+                48.439466
+              ], 
+              [
+                -122.677072, 
+                48.444059
+              ], 
+              [
+                -122.674188, 
+                48.443327
+              ], 
+              [
+                -122.674085, 
+                48.441979
+              ], 
+              [
+                -122.667249, 
+                48.442503
+              ], 
+              [
+                -122.654844, 
+                48.454087
+              ], 
+              [
+                -122.657753, 
+                48.47294
+              ], 
+              [
+                -122.664623, 
+                48.478128
+              ], 
+              [
+                -122.689121, 
+                48.476849
+              ], 
+              [
+                -122.695725, 
+                48.464785
+              ], 
+              [
+                -122.695587, 
+                48.460558
+              ], 
+              [
+                -122.700603, 
+                48.457632
+              ], 
+              [
+                -122.710362, 
+                48.461584
+              ], 
+              [
+                -122.712322, 
+                48.464143
+              ], 
+              [
+                -122.712981, 
+                48.47879
+              ], 
+              [
+                -122.701644, 
+                48.497622
+              ], 
+              [
+                -122.684521, 
+                48.509123
+              ], 
+              [
+                -122.679122, 
+                48.507797
+              ], 
+              [
+                -122.676922, 
+                48.504484
+              ], 
+              [
+                -122.671386, 
+                48.50398
+              ], 
+              [
+                -122.615183, 
+                48.521427
+              ], 
+              [
+                -122.606961, 
+                48.522152
+              ], 
+              [
+                -122.599951, 
+                48.520946
+              ], 
+              [
+                -122.598469, 
+                48.512169
+              ], 
+              [
+                -122.568071, 
+                48.50821
+              ], 
+              [
+                -122.556834, 
+                48.498812
+              ], 
+              [
+                -122.537355, 
+                48.466749
+              ], 
+              [
+                -122.532845, 
+                48.466057
+              ], 
+              [
+                -122.526943, 
+                48.468004
+              ], 
+              [
+                -122.515056, 
+                48.465554
+              ], 
+              [
+                -122.511348, 
+                48.461825
+              ], 
+              [
+                -122.500721, 
+                48.460887
+              ], 
+              [
+                -122.471832, 
+                48.470724
+              ], 
+              [
+                -122.469634, 
+                48.472187
+              ], 
+              [
+                -122.46967, 
+                48.474975
+              ], 
+              [
+                -122.473763, 
+                48.47975
+              ], 
+              [
+                -122.478851, 
+                48.481736
+              ], 
+              [
+                -122.483501, 
+                48.49243
+              ], 
+              [
+                -122.484996, 
+                48.50962
+              ], 
+              [
+                -122.483872, 
+                48.521891
+              ], 
+              [
+                -122.485288, 
+                48.528106
+              ], 
+              [
+                -122.498463, 
+                48.556206
+              ], 
+              [
+                -122.504428, 
+                48.564775
+              ], 
+              [
+                -122.52537, 
+                48.567344
+              ], 
+              [
+                -122.531978, 
+                48.568644
+              ], 
+              [
+                -122.534719, 
+                48.574246
+              ], 
+              [
+                -122.534787, 
+                48.57596
+              ], 
+              [
+                -122.512372, 
+                48.578067
+              ], 
+              [
+                -122.495904, 
+                48.575927
+              ], 
+              [
+                -122.488421, 
+                48.564665
+              ], 
+              [
+                -122.482406, 
+                48.559653
+              ], 
+              [
+                -122.478431, 
+                48.559303
+              ], 
+              [
+                -122.44456, 
+                48.570115
+              ], 
+              [
+                -122.433059, 
+                48.581609
+              ], 
+              [
+                -122.425271, 
+                48.599522
+              ], 
+              [
+                -122.448702, 
+                48.622624
+              ], 
+              [
+                -122.46425, 
+                48.625717
+              ], 
+              [
+                -122.486878, 
+                48.643122
+              ], 
+              [
+                -122.488754, 
+                48.645358
+              ], 
+              [
+                -122.49399, 
+                48.651596
+              ], 
+              [
+                -122.500308, 
+                48.656163
+              ], 
+              [
+                -122.506718, 
+                48.669692
+              ], 
+              [
+                -122.519172, 
+                48.713095
+              ], 
+              [
+                -122.515511, 
+                48.720992
+              ], 
+              [
+                -122.505684, 
+                48.724524
+              ], 
+              [
+                -122.495301, 
+                48.737328
+              ], 
+              [
+                -122.490401, 
+                48.751128
+              ], 
+              [
+                -122.510902, 
+                48.757728
+              ], 
+              [
+                -122.528203, 
+                48.768428
+              ], 
+              [
+                -122.535803, 
+                48.776128
+              ], 
+              [
+                -122.567498, 
+                48.779185
+              ], 
+              [
+                -122.596844, 
+                48.771492
+              ], 
+              [
+                -122.598033, 
+                48.769489
+              ], 
+              [
+                -122.606787, 
+                48.759143
+              ], 
+              [
+                -122.627808, 
+                48.74466
+              ], 
+              [
+                -122.637146, 
+                48.735708
+              ], 
+              [
+                -122.638082, 
+                48.732486
+              ], 
+              [
+                -122.626287, 
+                48.72093
+              ], 
+              [
+                -122.612562, 
+                48.714932
+              ], 
+              [
+                -122.605733, 
+                48.701066
+              ], 
+              [
+                -122.606105, 
+                48.698556
+              ], 
+              [
+                -122.615169, 
+                48.693839
+              ], 
+              [
+                -122.620338, 
+                48.693651
+              ], 
+              [
+                -122.630422, 
+                48.696625
+              ], 
+              [
+                -122.646323, 
+                48.708001
+              ], 
+              [
+                -122.673472, 
+                48.733082
+              ], 
+              [
+                -122.666953, 
+                48.748445
+              ], 
+              [
+                -122.661111, 
+                48.753962
+              ], 
+              [
+                -122.647443, 
+                48.773998
+              ], 
+              [
+                -122.645743, 
+                48.781538
+              ], 
+              [
+                -122.646777, 
+                48.785011
+              ], 
+              [
+                -122.656528, 
+                48.784969
+              ], 
+              [
+                -122.659708, 
+                48.786523
+              ], 
+              [
+                -122.680246, 
+                48.80275
+              ], 
+              [
+                -122.693683, 
+                48.804475
+              ], 
+              [
+                -122.697219, 
+                48.80281
+              ], 
+              [
+                -122.698675, 
+                48.800522
+              ], 
+              [
+                -122.699507, 
+                48.794906
+              ], 
+              [
+                -122.699303, 
+                48.789063
+              ], 
+              [
+                -122.703106, 
+                48.786321
+              ], 
+              [
+                -122.709815, 
+                48.786205
+              ], 
+              [
+                -122.7112, 
+                48.79146
+              ], 
+              [
+                -122.709169, 
+                48.817829
+              ], 
+              [
+                -122.711805, 
+                48.832408
+              ], 
+              [
+                -122.717073, 
+                48.84719
+              ], 
+              [
+                -122.722685, 
+                48.852855
+              ], 
+              [
+                -122.785659, 
+                48.885066
+              ], 
+              [
+                -122.793175, 
+                48.892927
+              ], 
+              [
+                -122.792584, 
+                48.894732
+              ], 
+              [
+                -122.783747, 
+                48.894639
+              ], 
+              [
+                -122.751289, 
+                48.911239
+              ], 
+              [
+                -122.747514, 
+                48.915582
+              ], 
+              [
+                -122.745371, 
+                48.921227
+              ], 
+              [
+                -122.746596, 
+                48.930731
+              ], 
+              [
+                -122.755624, 
+                48.93866
+              ], 
+              [
+                -122.766096, 
+                48.941955
+              ], 
+              [
+                -122.770432, 
+                48.942528
+              ], 
+              [
+                -122.787539, 
+                48.931702
+              ], 
+              [
+                -122.818232, 
+                48.939062
+              ], 
+              [
+                -122.821631, 
+                48.941369
+              ], 
+              [
+                -122.822464, 
+                48.944911
+              ], 
+              [
+                -122.817226, 
+                48.95597
+              ], 
+              [
+                -122.796887, 
+                48.975026
+              ], 
+              [
+                -122.774276, 
+                48.991038
+              ], 
+              [
+                -122.766307, 
+                48.991672
+              ], 
+              [
+                -122.756318, 
+                48.996881
+              ], 
+              [
+                -122.756037, 
+                48.999512
+              ], 
+              [
+                -122.75802, 
+                49.002357
+              ], 
+              [
+                -122.407829, 
+                49.002193
+              ], 
+              [
+                -122.405989, 
+                49.002239
+              ], 
+              [
+                -122.098357, 
+                49.002146
+              ], 
+              [
+                -121.751252, 
+                48.997399
+              ], 
+              [
+                -121.12624, 
+                49.001412
+              ], 
+              [
+                -120.851202, 
+                49.001191
+              ], 
+              [
+                -119.702016, 
+                49.000269
+              ], 
+              [
+                -119.701218, 
+                49.000258
+              ], 
+              [
+                -119.4577, 
+                49.000261
+              ], 
+              [
+                -119.428678, 
+                49.000253
+              ], 
+              [
+                -119.137274, 
+                49.000297
+              ], 
+              [
+                -119.132102, 
+                49.000262
+              ], 
+              [
+                -118.836794, 
+                49.000209
+              ], 
+              [
+                -118.196891, 
+                49.000094
+              ], 
+              [
+                -117.429539, 
+                48.999957
+              ], 
+              [
+                -117.268192, 
+                48.999928
+              ], 
+              [
+                -117.268247, 
+                48.999818
+              ], 
+              [
+                -117.032351, 
+                48.999188
+              ], 
+              [
+                -117.033177, 
+                48.846563
+              ], 
+              [
+                -117.034358, 
+                48.628523
+              ], 
+              [
+                -117.034499, 
+                48.620769
+              ], 
+              [
+                -117.035285, 
+                48.430113
+              ], 
+              [
+                -117.035285, 
+                48.429816
+              ], 
+              [
+                -117.035254, 
+                48.423144
+              ], 
+              [
+                -117.035289, 
+                48.422732
+              ], 
+              [
+                -117.035178, 
+                48.371221
+              ], 
+              [
+                -117.035178, 
+                48.370878
+              ], 
+              [
+                -117.039599, 
+                48.184387
+              ], 
+              [
+                -117.039615, 
+                48.184015
+              ], 
+              [
+                -117.039582, 
+                48.181124
+              ], 
+              [
+                -117.039582, 
+                48.180853
+              ], 
+              [
+                -117.039583, 
+                48.180313
+              ], 
+              [
+                -117.039618, 
+                48.178142
+              ], 
+              [
+                -117.039413, 
+                48.17725
+              ], 
+              [
+                -117.039552, 
+                48.17396
+              ], 
+              [
+                -117.041401, 
+                48.0855
+              ], 
+              [
+                -117.041676, 
+                48.04556
+              ], 
+              [
+                -117.041874, 
+                47.977387
+              ], 
+              [
+                -117.042485, 
+                47.766525
+              ], 
+              [
+                -117.042521, 
+                47.764896
+              ], 
+              [
+                -117.042623, 
+                47.761223
+              ], 
+              [
+                -117.042657, 
+                47.760857
+              ], 
+              [
+                -117.042059, 
+                47.7451
+              ], 
+              [
+                -117.042135, 
+                47.7441
+              ], 
+              [
+                -117.041678, 
+                47.72271
+              ], 
+              [
+                -117.041633, 
+                47.7064
+              ], 
+              [
+                -117.041532, 
+                47.683194
+              ], 
+              [
+                -117.041431, 
+                47.68
+              ], 
+              [
+                -117.041431, 
+                47.678185
+              ], 
+              [
+                -117.041431, 
+                47.67814
+              ], 
+              [
+                -117.041174, 
+                47.55853
+              ], 
+              [
+                -117.041276, 
+                47.55821
+              ], 
+              [
+                -117.040745, 
+                47.532909
+              ], 
+              [
+                -117.040545, 
+                47.527562
+              ], 
+              [
+                -117.040514, 
+                47.522351
+              ], 
+              [
+                -117.039945, 
+                47.477823
+              ], 
+              [
+                -117.039971, 
+                47.463309
+              ], 
+              [
+                -117.039948, 
+                47.434885
+              ], 
+              [
+                -117.03995, 
+                47.412412
+              ], 
+              [
+                -117.039882, 
+                47.399085
+              ], 
+              [
+                -117.039857, 
+                47.366093
+              ], 
+              [
+                -117.039843, 
+                47.347201
+              ], 
+              [
+                -117.040019, 
+                47.259272
+              ], 
+              [
+                -117.039899, 
+                47.225515
+              ], 
+              [
+                -117.039888, 
+                47.203282
+              ], 
+              [
+                -117.039871, 
+                47.181858
+              ], 
+              [
+                -117.039836, 
+                47.154734
+              ], 
+              [
+                -117.039821, 
+                47.127265
+              ], 
+              [
+                -117.039657, 
+                46.825798
+              ], 
+              [
+                -117.039828, 
+                46.815443
+              ], 
+              [
+                -117.039783, 
+                46.541785
+              ], 
+              [
+                -117.039771, 
+                46.471779
+              ], 
+              [
+                -117.039763, 
+                46.46957
+              ], 
+              [
+                -117.039741, 
+                46.462704
+              ], 
+              [
+                -117.039813, 
+                46.425425
+              ], 
+              [
+                -117.046915, 
+                46.379577
+              ], 
+              [
+                -117.061045, 
+                46.367747
+              ], 
+              [
+                -117.047469, 
+                46.342884
+              ], 
+              [
+                -116.987939, 
+                46.298031
+              ], 
+              [
+                -116.985333, 
+                46.294617
+              ], 
+              [
+                -116.958801, 
+                46.24232
+              ], 
+              [
+                -116.925621, 
+                46.158888
+              ], 
+              [
+                -116.94353, 
+                46.062173
+              ], 
+              [
+                -116.915989, 
+                45.995413
+              ], 
+              [
+                -117.212616, 
+                45.998321
+              ], 
+              [
+                -117.214534, 
+                45.99832
+              ], 
+              [
+                -117.216731, 
+                45.998356
+              ], 
+              [
+                -117.475148, 
+                45.997893
+              ], 
+              [
+                -117.47536, 
+                45.997855
+              ], 
+              [
+                -117.480103, 
+                45.99787
+              ], 
+              [
+                -117.48013, 
+                45.99787
+              ], 
+              [
+                -117.504833, 
+                45.998317
+              ], 
+              [
+                -117.603163, 
+                45.998887
+              ], 
+              [
+                -117.977766, 
+                46.000695
+              ], 
+              [
+                -117.996911, 
+                46.000787
+              ], 
+              [
+                -118.126197, 
+                46.000282
+              ], 
+              [
+                -118.131019, 
+                46.00028
+              ], 
+              [
+                -118.228941, 
+                46.000421
+              ], 
+              [
+                -118.236584, 
+                46.000418
+              ], 
+              [
+                -118.25253, 
+                46.000459
+              ], 
+              [
+                -118.256368, 
+                46.000439
+              ], 
+              [
+                -118.314982, 
+                46.000453
+              ], 
+              [
+                -118.36779, 
+                46.000622
+              ], 
+              [
+                -118.37836, 
+                46.000574
+              ], 
+              [
+                -118.470756, 
+                46.000632
+              ], 
+              [
+                -118.497027, 
+                46.00062
+              ], 
+              [
+                -118.537119, 
+                46.00084
+              ], 
+              [
+                -118.569392, 
+                46.000773
+              ], 
+              [
+                -118.57571, 
+                46.000718
+              ], 
+              [
+                -118.579906, 
+                46.000818
+              ], 
+              [
+                -118.637725, 
+                46.00097
+              ], 
+              [
+                -118.639332, 
+                46.000994
+              ], 
+              [
+                -118.658717, 
+                46.000955
+              ], 
+              [
+                -118.67787, 
+                46.000935
+              ], 
+              [
+                -118.987129, 
+                45.999855
+              ], 
+              [
+                -119.008558, 
+                45.97927
+              ], 
+              [
+                -119.027056, 
+                45.969134
+              ], 
+              [
+                -119.093221, 
+                45.942745
+              ], 
+              [
+                -119.12612, 
+                45.932859
+              ], 
+              [
+                -119.169496, 
+                45.927603
+              ], 
+              [
+                -119.19553, 
+                45.92787
+              ], 
+              [
+                -119.225745, 
+                45.932725
+              ], 
+              [
+                -119.25715, 
+                45.939926
+              ], 
+              [
+                -119.322509, 
+                45.933183
+              ], 
+              [
+                -119.37613, 
+                45.920974
+              ], 
+              [
+                -119.432067, 
+                45.913629
+              ], 
+              [
+                -119.487829, 
+                45.906307
+              ], 
+              [
+                -119.524632, 
+                45.908605
+              ], 
+              [
+                -119.571584, 
+                45.925456
+              ], 
+              [
+                -119.600549, 
+                45.919581
+              ], 
+              [
+                -119.623393, 
+                45.905639
+              ], 
+              [
+                -119.669877, 
+                45.856867
+              ], 
+              [
+                -119.772927, 
+                45.845578
+              ], 
+              [
+                -119.802655, 
+                45.84753
+              ], 
+              [
+                -119.868135, 
+                45.835962
+              ], 
+              [
+                -119.999506, 
+                45.812199
+              ], 
+              [
+                -120.001148, 
+                45.811902
+              ], 
+              [
+                -120.141352, 
+                45.773152
+              ], 
+              [
+                -120.170453, 
+                45.761951
+              ], 
+              [
+                -120.210754, 
+                45.725951
+              ], 
+              [
+                -120.40396, 
+                45.699249
+              ], 
+              [
+                -120.482362, 
+                45.694449
+              ], 
+              [
+                -120.505863, 
+                45.700048
+              ], 
+              [
+                -120.521964, 
+                45.709848
+              ], 
+              [
+                -120.559465, 
+                45.738348
+              ], 
+              [
+                -120.591166, 
+                45.746547
+              ], 
+              [
+                -120.634968, 
+                45.745847
+              ], 
+              [
+                -120.653559, 
+                45.737237
+              ], 
+              [
+                -120.668869, 
+                45.730147
+              ], 
+              [
+                -120.68937, 
+                45.715847
+              ], 
+              [
+                -120.788872, 
+                45.686246
+              ], 
+              [
+                -120.855674, 
+                45.671545
+              ], 
+              [
+                -120.870042, 
+                45.661242
+              ], 
+              [
+                -120.915876, 
+                45.641345
+              ], 
+              [
+                -120.943977, 
+                45.656445
+              ], 
+              [
+                -121.06437, 
+                45.652549
+              ], 
+              [
+                -121.086675, 
+                45.646667
+              ], 
+              [
+                -121.195233, 
+                45.629513
+              ], 
+              [
+                -121.200367, 
+                45.649829
+              ], 
+              [
+                -121.215779, 
+                45.671238
+              ], 
+              [
+                -121.312198, 
+                45.699925
+              ], 
+              [
+                -121.33777, 
+                45.704949
+              ], 
+              [
+                -121.372574, 
+                45.703111
+              ], 
+              [
+                -121.401739, 
+                45.692887
+              ], 
+              [
+                -121.423592, 
+                45.69399
+              ], 
+              [
+                -121.441045, 
+                45.69727
+              ], 
+              [
+                -121.462849, 
+                45.701367
+              ], 
+              [
+                -121.522392, 
+                45.724677
+              ], 
+              [
+                -121.533106, 
+                45.726541
+              ], 
+              [
+                -121.626185, 
+                45.705915
+              ], 
+              [
+                -121.707358, 
+                45.694809
+              ], 
+              [
+                -121.735104, 
+                45.694039
+              ], 
+              [
+                -121.811304, 
+                45.706761
+              ], 
+              [
+                -121.820055, 
+                45.704649
+              ], 
+              [
+                -121.867167, 
+                45.693277
+              ], 
+              [
+                -121.901855, 
+                45.670716
+              ], 
+              [
+                -121.900858, 
+                45.662009
+              ], 
+              [
+                -121.908267, 
+                45.654399
+              ], 
+              [
+                -121.922242, 
+                45.648495
+              ], 
+              [
+                -121.983038, 
+                45.622812
+              ], 
+              [
+                -122.101675, 
+                45.583516
+              ], 
+              [
+                -122.112356, 
+                45.581409
+              ], 
+              [
+                -122.126197, 
+                45.582617
+              ], 
+              [
+                -122.126197, 
+                45.582573
+              ], 
+              [
+                -122.12949, 
+                45.582967
+              ], 
+              [
+                -122.129548, 
+                45.582945
+              ], 
+              [
+                -122.14075, 
+                45.584508
+              ], 
+              [
+                -122.183695, 
+                45.577696
+              ], 
+              [
+                -122.2017, 
+                45.564141
+              ], 
+              [
+                -122.248993, 
+                45.547745
+              ], 
+              [
+                -122.266701, 
+                45.543841
+              ], 
+              [
+                -122.294901, 
+                45.543541
+              ], 
+              [
+                -122.331502, 
+                45.548241
+              ], 
+              [
+                -122.352802, 
+                45.569441
+              ], 
+              [
+                -122.380302, 
+                45.575941
+              ], 
+              [
+                -122.492259, 
+                45.583281
+              ], 
+              [
+                -122.643907, 
+                45.609739
+              ], 
+              [
+                -122.675008, 
+                45.618039
+              ], 
+              [
+                -122.738109, 
+                45.644138
+              ], 
+              [
+                -122.76381, 
+                45.657138
+              ], 
+              [
+                -122.774511, 
+                45.680437
+              ], 
+              [
+                -122.772511, 
+                45.699637
+              ], 
+              [
+                -122.762182, 
+                45.728598
+              ], 
+              [
+                -122.760108, 
+                45.734413
+              ], 
+              [
+                -122.761451, 
+                45.759163
+              ], 
+              [
+                -122.769532, 
+                45.780583
+              ], 
+              [
+                -122.795605, 
+                45.81
+              ], 
+              [
+                -122.795963, 
+                45.825024
+              ], 
+              [
+                -122.785515, 
+                45.850536
+              ], 
+              [
+                -122.785026, 
+                45.867699
+              ], 
+              [
+                -122.813998, 
+                45.960984
+              ], 
+              [
+                -122.884478, 
+                46.06028
+              ], 
+              [
+                -122.904119, 
+                46.083734
+              ], 
+              [
+                -123.115904, 
+                46.185268
+              ], 
+              [
+                -123.166414, 
+                46.188973
+              ], 
+              [
+                -123.213054, 
+                46.172541
+              ], 
+              [
+                -123.280166, 
+                46.144843
+              ], 
+              [
+                -123.363638, 
+                46.146241
+              ], 
+              [
+                -123.371433, 
+                46.146372
+              ], 
+              [
+                -123.430847, 
+                46.181827
+              ], 
+              [
+                -123.427629, 
+                46.229348
+              ], 
+              [
+                -123.447592, 
+                46.249832
+              ], 
+              [
+                -123.468743, 
+                46.264531
+              ], 
+              [
+                -123.474844, 
+                46.267831
+              ], 
+              [
+                -123.484244, 
+                46.269531
+              ], 
+              [
+                -123.547659, 
+                46.259109
+              ], 
+              [
+                -123.547636, 
+                46.265595
+              ], 
+              [
+                -123.559923, 
+                46.265098
+              ], 
+              [
+                -123.564405, 
+                46.262172
+              ], 
+              [
+                -123.581642, 
+                46.260502
+              ], 
+              [
+                -123.613544, 
+                46.259988
+              ], 
+              [
+                -123.669501, 
+                46.266832
+              ], 
+              [
+                -123.679125, 
+                46.272502
+              ], 
+              [
+                -123.68008, 
+                46.277943
+              ], 
+              [
+                -123.678069, 
+                46.286469
+              ], 
+              [
+                -123.67876, 
+                46.290721
+              ], 
+              [
+                -123.680574, 
+                46.296025
+              ], 
+              [
+                -123.687763, 
+                46.299235
+              ], 
+              [
+                -123.700764, 
+                46.305278
+              ], 
+              [
+                -123.724273, 
+                46.301161
+              ], 
+              [
+                -123.724038, 
+                46.295058
+              ], 
+              [
+                -123.727913, 
+                46.289661
+              ], 
+              [
+                -123.728585, 
+                46.288725
+              ], 
+              [
+                -123.741478, 
+                46.290274
+              ], 
+              [
+                -123.75956, 
+                46.275073
+              ], 
+              [
+                -123.766682, 
+                46.273499
+              ], 
+              [
+                -123.775054, 
+                46.274599
+              ], 
+              [
+                -123.782654, 
+                46.280227
+              ], 
+              [
+                -123.795556, 
+                46.284501
+              ], 
+              [
+                -123.806139, 
+                46.283588
+              ], 
+              [
+                -123.875525, 
+                46.239787
+              ], 
+              [
+                -123.909306, 
+                46.245491
+              ], 
+              [
+                -123.919581, 
+                46.251217
+              ], 
+              [
+                -123.954353, 
+                46.277001
+              ], 
+              [
+                -123.969427, 
+                46.291398
+              ], 
+              [
+                -123.970912, 
+                46.293866
+              ], 
+              [
+                -123.970355, 
+                46.299352
+              ], 
+              [
+                -123.974509, 
+                46.303063
+              ], 
+              [
+                -123.985204, 
+                46.309039
+              ], 
+              [
+                -124.001264, 
+                46.31326
+              ], 
+              [
+                -124.020551, 
+                46.315737
+              ], 
+              [
+                -124.029924, 
+                46.308312
+              ], 
+              [
+                -124.035599, 
+                46.296843
+              ], 
+              [
+                -124.038797, 
+                46.283675
+              ], 
+              [
+                -124.044018, 
+                46.275925
+              ], 
+              [
+                -124.060961, 
+                46.278761
+              ], 
+              [
+                -124.080671, 
+                46.267239
+              ], 
+              [
+                -124.082187, 
+                46.269159
+              ], 
+              [
+                -124.081729, 
+                46.274714
+              ], 
+              [
+                -124.076262, 
+                46.296498
+              ], 
+              [
+                -124.071384, 
+                46.305504
+              ], 
+              [
+                -124.064624, 
+                46.326899
+              ], 
+              [
+                -124.058351, 
+                46.386503
+              ], 
+              [
+                -124.057425, 
+                46.409315
+              ], 
+              [
+                -124.057024, 
+                46.493338
+              ], 
+              [
+                -124.061953, 
+                46.556165
+              ], 
+              [
+                -124.06842, 
+                46.601397
+              ], 
+              [
+                -124.069583, 
+                46.630651
+              ], 
+              [
+                -124.068655, 
+                46.634879
+              ], 
+              [
+                -124.062715, 
+                46.642582
+              ], 
+              [
+                -124.056476, 
+                46.645645
+              ], 
+              [
+                -124.048444, 
+                46.645827
+              ], 
+              [
+                -124.035874, 
+                46.630822
+              ], 
+              [
+                -124.052708, 
+                46.622796
+              ], 
+              [
+                -124.050842, 
+                46.617421
+              ], 
+              [
+                -124.028799, 
+                46.59104
+              ], 
+              [
+                -124.023566, 
+                46.582559
+              ], 
+              [
+                -124.023148, 
+                46.564113
+              ], 
+              [
+                -124.026019, 
+                46.531589
+              ], 
+              [
+                -124.031737, 
+                46.496375
+              ], 
+              [
+                -124.026032, 
+                46.462978
+              ], 
+              [
+                -124.001271, 
+                46.459992
+              ], 
+              [
+                -123.990615, 
+                46.463019
+              ], 
+              [
+                -123.99087, 
+                46.465738
+              ], 
+              [
+                -123.994181, 
+                46.468868
+              ], 
+              [
+                -123.99268, 
+                46.488617
+              ], 
+              [
+                -123.988386, 
+                46.497008
+              ], 
+              [
+                -123.983688, 
+                46.498542
+              ], 
+              [
+                -123.979053, 
+                46.497378
+              ], 
+              [
+                -123.979213, 
+                46.489949
+              ], 
+              [
+                -123.97083, 
+                46.47537
+              ], 
+              [
+                -123.968044, 
+                46.473497
+              ], 
+              [
+                -123.943667, 
+                46.477197
+              ], 
+              [
+                -123.921192, 
+                46.507731
+              ], 
+              [
+                -123.896703, 
+                46.522665
+              ], 
+              [
+                -123.897242, 
+                46.52848
+              ], 
+              [
+                -123.894254, 
+                46.537028
+              ], 
+              [
+                -123.903321, 
+                46.55191
+              ], 
+              [
+                -123.916902, 
+                46.562633
+              ], 
+              [
+                -123.920247, 
+                46.567343
+              ], 
+              [
+                -123.922332, 
+                46.577057
+              ], 
+              [
+                -123.928861, 
+                46.588875
+              ], 
+              [
+                -123.939139, 
+                46.596326
+              ], 
+              [
+                -123.955556, 
+                46.60357
+              ], 
+              [
+                -123.959175, 
+                46.613581
+              ], 
+              [
+                -123.960642, 
+                46.636364
+              ], 
+              [
+                -123.940616, 
+                46.640862
+              ], 
+              [
+                -123.921913, 
+                46.650262
+              ], 
+              [
+                -123.920916, 
+                46.653576
+              ], 
+              [
+                -123.923269, 
+                46.672708
+              ], 
+              [
+                -123.915596, 
+                46.678649
+              ], 
+              [
+                -123.895601, 
+                46.683672
+              ], 
+              [
+                -123.864902, 
+                46.698685
+              ], 
+              [
+                -123.851356, 
+                46.70256
+              ], 
+              [
+                -123.84621, 
+                46.716795
+              ], 
+              [
+                -123.848725, 
+                46.719898
+              ], 
+              [
+                -123.862149, 
+                46.727749
+              ], 
+              [
+                -123.870782, 
+                46.728327
+              ], 
+              [
+                -123.87668, 
+                46.730657
+              ], 
+              [
+                -123.893054, 
+                46.750204
+              ], 
+              [
+                -123.898641, 
+                46.750205
+              ], 
+              [
+                -123.910716, 
+                46.746715
+              ], 
+              [
+                -123.916371, 
+                46.741322
+              ], 
+              [
+                -123.91584, 
+                46.737322
+              ], 
+              [
+                -123.91285, 
+                46.730647
+              ], 
+              [
+                -123.916874, 
+                46.726739
+              ], 
+              [
+                -123.929073, 
+                46.725278
+              ], 
+              [
+                -123.948683, 
+                46.725369
+              ], 
+              [
+                -123.968564, 
+                46.736106
+              ], 
+              [
+                -123.974994, 
+                46.733391
+              ], 
+              [
+                -123.979655, 
+                46.724658
+              ], 
+              [
+                -123.975157, 
+                46.713971
+              ], 
+              [
+                -123.966886, 
+                46.705184
+              ], 
+              [
+                -123.973663, 
+                46.703353
+              ], 
+              [
+                -123.987521, 
+                46.707507
+              ], 
+              [
+                -123.994242, 
+                46.707929
+              ], 
+              [
+                -124.003458, 
+                46.702337
+              ], 
+              [
+                -124.022413, 
+                46.708973
+              ], 
+              [
+                -124.042478, 
+                46.72004
+              ], 
+              [
+                -124.042111, 
+                46.722783
+              ], 
+              [
+                -124.046399, 
+                46.725686
+              ], 
+              [
+                -124.063117, 
+                46.733664
+              ], 
+              [
+                -124.080983, 
+                46.735003
+              ], 
+              [
+                -124.092176, 
+                46.741624
+              ], 
+              [
+                -124.096515, 
+                46.746202
+              ], 
+              [
+                -124.095041, 
+                46.756812
+              ], 
+              [
+                -124.096655, 
+                46.784374
+              ], 
+              [
+                -124.098359, 
+                46.794157
+              ], 
+              [
+                -124.101232, 
+                46.810656
+              ], 
+              [
+                -124.108078, 
+                46.836388
+              ], 
+              [
+                -124.122979, 
+                46.879809
+              ], 
+              [
+                -124.138225, 
+                46.905534
+              ], 
+              [
+                -124.117712, 
+                46.91238
+              ], 
+              [
+                -124.110641, 
+                46.91252
+              ], 
+              [
+                -124.093392, 
+                46.901168
+              ], 
+              [
+                -124.090422, 
+                46.8955
+              ], 
+              [
+                -124.089286, 
+                46.867716
+              ], 
+              [
+                -124.073113, 
+                46.861493
+              ], 
+              [
+                -124.066349, 
+                46.863504
+              ], 
+              [
+                -124.061051, 
+                46.865127
+              ], 
+              [
+                -124.055085, 
+                46.870429
+              ], 
+              [
+                -124.049279, 
+                46.891253
+              ], 
+              [
+                -124.046344, 
+                46.893972
+              ], 
+              [
+                -124.03624, 
+                46.898473
+              ], 
+              [
+                -124.01366, 
+                46.90363
+              ], 
+              [
+                -124.009519, 
+                46.910325
+              ], 
+              [
+                -123.985082, 
+                46.921916
+              ], 
+              [
+                -123.979378, 
+                46.923038
+              ], 
+              [
+                -123.957493, 
+                46.921261
+              ], 
+              [
+                -123.915256, 
+                46.932964
+              ], 
+              [
+                -123.882884, 
+                46.939946
+              ], 
+              [
+                -123.86018, 
+                46.948556
+              ], 
+              [
+                -123.876136, 
+                46.961054
+              ], 
+              [
+                -123.889402, 
+                46.968904
+              ], 
+              [
+                -123.898245, 
+                46.971927
+              ], 
+              [
+                -123.921617, 
+                46.971864
+              ], 
+              [
+                -123.939214, 
+                46.969739
+              ], 
+              [
+                -123.947996, 
+                46.971818
+              ], 
+              [
+                -123.959185, 
+                46.981759
+              ], 
+              [
+                -123.991612, 
+                46.980215
+              ], 
+              [
+                -124.012218, 
+                46.985176
+              ], 
+              [
+                -124.019727, 
+                46.991189
+              ], 
+              [
+                -124.010068, 
+                46.997882
+              ], 
+              [
+                -124.005248, 
+                47.003915
+              ], 
+              [
+                -124.017035, 
+                47.011717
+              ], 
+              [
+                -124.016999, 
+                47.014848
+              ], 
+              [
+                -124.026345, 
+                47.030187
+              ], 
+              [
+                -124.065856, 
+                47.04114
+              ], 
+              [
+                -124.106378, 
+                47.04264
+              ], 
+              [
+                -124.122057, 
+                47.04165
+              ], 
+              [
+                -124.141517, 
+                47.035142
+              ], 
+              [
+                -124.149043, 
+                47.029294
+              ], 
+              [
+                -124.151288, 
+                47.021112
+              ], 
+              [
+                -124.139733, 
+                46.98837
+              ], 
+              [
+                -124.138035, 
+                46.970959
+              ], 
+              [
+                -124.124386, 
+                46.94387
+              ], 
+              [
+                -124.141267, 
+                46.940266
+              ], 
+              [
+                -124.158624, 
+                46.929439
+              ], 
+              [
+                -124.180111, 
+                46.926357
+              ], 
+              [
+                -124.174503, 
+                46.941623
+              ], 
+              [
+                -124.171161, 
+                46.958443
+              ], 
+              [
+                -124.169113, 
+                46.994508
+              ], 
+              [
+                -124.173501, 
+                47.06637
+              ], 
+              [
+                -124.176745, 
+                47.092999
+              ], 
+              [
+                -124.183833, 
+                47.124807
+              ], 
+              [
+                -124.182802, 
+                47.134041
+              ], 
+              [
+                -124.185806, 
+                47.136017
+              ], 
+              [
+                -124.189725, 
+                47.146827
+              ], 
+              [
+                -124.195893, 
+                47.174
+              ], 
+              [
+                -124.209017, 
+                47.218151
+              ], 
+              [
+                -124.236349, 
+                47.287287
+              ], 
+              [
+                -124.242234, 
+                47.295101
+              ], 
+              [
+                -124.25359, 
+                47.30248
+              ], 
+              [
+                -124.257452, 
+                47.304059
+              ], 
+              [
+                -124.271193, 
+                47.305025
+              ], 
+              [
+                -124.286369, 
+                47.325162
+              ], 
+              [
+                -124.293288, 
+                47.339309
+              ], 
+              [
+                -124.299943, 
+                47.34836
+              ], 
+              [
+                -124.307509, 
+                47.352268
+              ], 
+              [
+                -124.319379, 
+                47.355559
+              ], 
+              [
+                -124.324091, 
+                47.367602
+              ], 
+              [
+                -124.32665, 
+                47.388759
+              ], 
+              [
+                -124.336724, 
+                47.415996
+              ], 
+              [
+                -124.345155, 
+                47.48903
+              ], 
+              [
+                -124.353651, 
+                47.53361
+              ], 
+              [
+                -124.355955, 
+                47.545698
+              ], 
+              [
+                -124.359028, 
+                47.547616
+              ], 
+              [
+                -124.366221, 
+                47.582439
+              ], 
+              [
+                -124.371746, 
+                47.599575
+              ], 
+              [
+                -124.374927, 
+                47.603891
+              ], 
+              [
+                -124.382215, 
+                47.632302
+              ], 
+              [
+                -124.395983, 
+                47.665534
+              ], 
+              [
+                -124.412106, 
+                47.691199
+              ], 
+              [
+                -124.420219, 
+                47.725294
+              ], 
+              [
+                -124.425195, 
+                47.738434
+              ], 
+              [
+                -124.430546, 
+                47.746249
+              ], 
+              [
+                -124.453927, 
+                47.765334
+              ], 
+              [
+                -124.471687, 
+                47.766907
+              ], 
+              [
+                -124.47657, 
+                47.769671
+              ], 
+              [
+                -124.482154, 
+                47.797454
+              ], 
+              [
+                -124.489737, 
+                47.816988
+              ], 
+              [
+                -124.497987, 
+                47.822605
+              ], 
+              [
+                -124.50668, 
+                47.82391
+              ], 
+              [
+                -124.51278, 
+                47.822518
+              ], 
+              [
+                -124.539927, 
+                47.836967
+              ], 
+              [
+                -124.558254, 
+                47.855979
+              ], 
+              [
+                -124.559034, 
+                47.863085
+              ], 
+              [
+                -124.562363, 
+                47.866216
+              ], 
+              [
+                -124.588172, 
+                47.877878
+              ], 
+              [
+                -124.609538, 
+                47.879996
+              ], 
+              [
+                -124.610763, 
+                47.880607
+              ], 
+              [
+                -124.625512, 
+                47.887963
+              ], 
+              [
+                -124.630153, 
+                47.892467
+              ], 
+              [
+                -124.629706, 
+                47.896968
+              ], 
+              [
+                -124.645442, 
+                47.935338
+              ], 
+              [
+                -124.651966, 
+                47.943177
+              ], 
+              [
+                -124.662334, 
+                47.951451
+              ], 
+              [
+                -124.672427, 
+                47.964414
+              ], 
+              [
+                -124.67083, 
+                47.982366
+              ], 
+              [
+                -124.679024, 
+                48.015697
+              ], 
+              [
+                -124.682157, 
+                48.035987
+              ], 
+              [
+                -124.685393, 
+                48.049238
+              ], 
+              [
+                -124.688359, 
+                48.054927
+              ], 
+              [
+                -124.693676, 
+                48.058697
+              ], 
+              [
+                -124.696542, 
+                48.069274
+              ], 
+              [
+                -124.695114, 
+                48.087096
+              ], 
+              [
+                -124.688602, 
+                48.092466
+              ], 
+              [
+                -124.687101, 
+                48.098657
+              ], 
+              [
+                -124.695088, 
+                48.114878
+              ], 
+              [
+                -124.721725, 
+                48.153185
+              ], 
+              [
+                -124.731703, 
+                48.160402
+              ], 
+              [
+                -124.733174, 
+                48.163393
+              ], 
+              [
+                -124.731746, 
+                48.169997
+              ], 
+              [
+                -124.704153, 
+                48.184422
+              ], 
+              [
+                -124.696111, 
+                48.198599
+              ], 
+              [
+                -124.6909, 
+                48.212617
+              ], 
+              [
+                -124.690389, 
+                48.219745
+              ], 
+              [
+                -124.705031, 
+                48.238774
+              ], 
+              [
+                -124.70592, 
+                48.239894
+              ], 
+              [
+                -124.699663, 
+                48.245812
+              ], 
+              [
+                -124.684677, 
+                48.255228
+              ], 
+              [
+                -124.680877, 
+                48.26535
+              ], 
+              [
+                -124.676319, 
+                48.295143
+              ], 
+              [
+                -124.669265, 
+                48.296353
+              ], 
+              [
+                -124.665908, 
+                48.299324
+              ], 
+              [
+                -124.662068, 
+                48.31045
+              ], 
+              [
+                -124.65894, 
+                48.331057
+              ], 
+              [
+                -124.670072, 
+                48.341341
+              ], 
+              [
+                -124.696703, 
+                48.349748
+              ], 
+              [
+                -124.713817, 
+                48.366309
+              ], 
+              [
+                -124.727022, 
+                48.371101
+              ], 
+              [
+                -124.730863, 
+                48.3762
+              ], 
+              [
+                -124.731828, 
+                48.381157
+              ], 
+              [
+                -124.725839, 
+                48.386012
+              ], 
+              [
+                -124.716947, 
+                48.389776
+              ], 
+              [
+                -124.694511, 
+                48.389004
+              ], 
+              [
+                -124.653243, 
+                48.390691
+              ], 
+              [
+                -124.639389, 
+                48.385524
+              ], 
+              [
+                -124.631108, 
+                48.376522
+              ], 
+              [
+                -124.611782, 
+                48.378182
+              ], 
+              [
+                -124.599278, 
+                48.381035
+              ], 
+              [
+                -124.597331, 
+                48.381882
+              ], 
+              [
+                -124.590733, 
+                48.373604
+              ], 
+              [
+                -124.572864, 
+                48.366228
+              ], 
+              [
+                -124.564841, 
+                48.367921
+              ], 
+              [
+                -124.546259, 
+                48.353594
+              ], 
+              [
+                -124.538821, 
+                48.349893
+              ], 
+              [
+                -124.525453, 
+                48.349022
+              ], 
+              [
+                -124.510582, 
+                48.343236
+              ], 
+              [
+                -124.414007, 
+                48.300887
+              ], 
+              [
+                -124.395593, 
+                48.288772
+              ], 
+              [
+                -124.380874, 
+                48.284699
+              ], 
+              [
+                -124.361351, 
+                48.287582
+              ], 
+              [
+                -124.342412, 
+                48.277695
+              ], 
+              [
+                -124.299146, 
+                48.268239
+              ], 
+              [
+                -124.295589, 
+                48.262983
+              ], 
+              [
+                -124.296924, 
+                48.261796
+              ], 
+              [
+                -124.297643, 
+                48.260676
+              ], 
+              [
+                -124.295693, 
+                48.259282
+              ], 
+              [
+                -124.272017, 
+                48.25441
+              ], 
+              [
+                -124.265824, 
+                48.254842
+              ], 
+              [
+                -124.255109, 
+                48.258972
+              ], 
+              [
+                -124.252267, 
+                48.261004
+              ], 
+              [
+                -124.250882, 
+                48.264773
+              ], 
+              [
+                -124.238582, 
+                48.262471
+              ], 
+              [
+                -124.217873, 
+                48.253294
+              ], 
+              [
+                -124.192692, 
+                48.246316
+              ], 
+              [
+                -124.14129, 
+                48.227413
+              ], 
+              [
+                -124.110974, 
+                48.220557
+              ], 
+              [
+                -124.101773, 
+                48.216883
+              ], 
+              [
+                -124.107215, 
+                48.200082
+              ], 
+              [
+                -124.090717, 
+                48.196458
+              ], 
+              [
+                -124.072124, 
+                48.189903
+              ], 
+              [
+                -124.050734, 
+                48.177747
+              ], 
+              [
+                -123.981032, 
+                48.164761
+              ], 
+              [
+                -123.955347, 
+                48.165455
+              ], 
+              [
+                -123.934921, 
+                48.16084
+              ], 
+              [
+                -123.915589, 
+                48.159352
+              ], 
+              [
+                -123.880068, 
+                48.160621
+              ], 
+              [
+                -123.866677, 
+                48.154796
+              ], 
+              [
+                -123.858821, 
+                48.154273
+              ], 
+              [
+                -123.831571, 
+                48.157937
+              ], 
+              [
+                -123.778122, 
+                48.155466
+              ], 
+              [
+                -123.756395, 
+                48.161057
+              ], 
+              [
+                -123.728736, 
+                48.1628
+              ], 
+              [
+                -123.72829, 
+                48.160858
+              ], 
+              [
+                -123.725352, 
+                48.159191
+              ], 
+              [
+                -123.71835, 
+                48.158713
+              ], 
+              [
+                -123.706226, 
+                48.1634
+              ], 
+              [
+                -123.706432, 
+                48.165822
+              ], 
+              [
+                -123.702743, 
+                48.166783
+              ], 
+              [
+                -123.672445, 
+                48.162715
+              ], 
+              [
+                -123.651408, 
+                48.156952
+              ], 
+              [
+                -123.636967, 
+                48.150319
+              ], 
+              [
+                -123.641108, 
+                48.146127
+              ], 
+              [
+                -123.628819, 
+                48.139279
+              ], 
+              [
+                -123.590839, 
+                48.134949
+              ], 
+              [
+                -123.574214, 
+                48.140756
+              ], 
+              [
+                -123.560591, 
+                48.150697
+              ], 
+              [
+                -123.551131, 
+                48.151382
+              ], 
+              [
+                -123.534879, 
+                48.14578
+              ], 
+              [
+                -123.52232, 
+                48.135539
+              ], 
+              [
+                -123.507235, 
+                48.131807
+              ], 
+              [
+                -123.473379, 
+                48.134079
+              ], 
+              [
+                -123.455458, 
+                48.140047
+              ], 
+              [
+                -123.440128, 
+                48.142014
+              ], 
+              [
+                -123.439127, 
+                48.141278
+              ], 
+              [
+                -123.441972, 
+                48.124259
+              ], 
+              [
+                -123.424668, 
+                48.118065
+              ], 
+              [
+                -123.395048, 
+                48.114243
+              ], 
+              [
+                -123.360923, 
+                48.115864
+              ], 
+              [
+                -123.332699, 
+                48.11297
+              ], 
+              [
+                -123.314578, 
+                48.113725
+              ], 
+              [
+                -123.288265, 
+                48.121036
+              ], 
+              [
+                -123.280178, 
+                48.117309
+              ], 
+              [
+                -123.268917, 
+                48.116094
+              ], 
+              [
+                -123.248615, 
+                48.115745
+              ], 
+              [
+                -123.239129, 
+                48.118217
+              ], 
+              [
+                -123.21719, 
+                48.127203
+              ], 
+              [
+                -123.191521, 
+                48.143821
+              ], 
+              [
+                -123.1644, 
+                48.165894
+              ], 
+              [
+                -123.144783, 
+                48.175943
+              ], 
+              [
+                -123.133445, 
+                48.177276
+              ], 
+              [
+                -123.132417, 
+                48.174704
+              ], 
+              [
+                -123.139258, 
+                48.16648
+              ], 
+              [
+                -123.143229, 
+                48.156633
+              ], 
+              [
+                -123.131422, 
+                48.152736
+              ], 
+              [
+                -123.124816, 
+                48.153472
+              ], 
+              [
+                -123.116479, 
+                48.150208
+              ], 
+              [
+                -123.085154, 
+                48.127137
+              ], 
+              [
+                -123.06621, 
+                48.120469
+              ], 
+              [
+                -123.050446, 
+                48.102825
+              ], 
+              [
+                -123.038727, 
+                48.081138
+              ], 
+              [
+                -123.016651, 
+                48.08538
+              ], 
+              [
+                -123.004128, 
+                48.090516
+              ], 
+              [
+                -122.979413, 
+                48.09594
+              ], 
+              [
+                -122.946119, 
+                48.098552
+              ], 
+              [
+                -122.929095, 
+                48.096244
+              ], 
+              [
+                -122.917942, 
+                48.091535
+              ], 
+              [
+                -122.920911, 
+                48.088199
+              ], 
+              [
+                -122.926644, 
+                48.0741
+              ], 
+              [
+                -122.927975, 
+                48.06665
+              ], 
+              [
+                -122.927146, 
+                48.065133
+              ], 
+              [
+                -122.926851, 
+                48.064593
+              ], 
+              [
+                -122.918602, 
+                48.058238
+              ], 
+              [
+                -122.877641, 
+                48.047025
+              ], 
+              [
+                -122.849273, 
+                48.053808
+              ], 
+              [
+                -122.857727, 
+                48.065774
+              ], 
+              [
+                -122.878255, 
+                48.076072
+              ], 
+              [
+                -122.882013, 
+                48.100779
+              ], 
+              [
+                -122.876282, 
+                48.110877
+              ], 
+              [
+                -122.833173, 
+                48.134406
+              ], 
+              [
+                -122.784076, 
+                48.142974
+              ], 
+              [
+                -122.760448, 
+                48.14324
+              ], 
+              [
+                -122.748911, 
+                48.117026
+              ], 
+              [
+                -122.773177, 
+                48.106864
+              ], 
+              [
+                -122.778466, 
+                48.106135
+              ], 
+              [
+                -122.792902, 
+                48.09718
+              ], 
+              [
+                -122.798464, 
+                48.092451
+              ], 
+              [
+                -122.801399, 
+                48.087561
+              ], 
+              [
+                -122.770559, 
+                48.053432
+              ], 
+              [
+                -122.770496, 
+                48.047897
+              ], 
+              [
+                -122.766648, 
+                48.04429
+              ], 
+              [
+                -122.74229, 
+                48.049324
+              ], 
+              [
+                -122.740007, 
+                48.054116
+              ], 
+              [
+                -122.739271, 
+                48.069153
+              ], 
+              [
+                -122.741184, 
+                48.070958
+              ], 
+              [
+                -122.747389, 
+                48.070795
+              ], 
+              [
+                -122.748345, 
+                48.072097
+              ], 
+              [
+                -122.733257, 
+                48.091232
+              ], 
+              [
+                -122.718558, 
+                48.097567
+              ], 
+              [
+                -122.698465, 
+                48.103102
+              ], 
+              [
+                -122.68724, 
+                48.101662
+              ], 
+              [
+                -122.69164, 
+                48.096726
+              ], 
+              [
+                -122.69222, 
+                48.087081
+              ], 
+              [
+                -122.682264, 
+                48.042723
+              ], 
+              [
+                -122.677153, 
+                48.036346
+              ], 
+              [
+                -122.668942, 
+                48.032026
+              ], 
+              [
+                -122.669868, 
+                48.017217
+              ], 
+              [
+                -122.686898, 
+                48.008305
+              ], 
+              [
+                -122.690066, 
+                48.00842
+              ], 
+              [
+                -122.697185, 
+                48.014978
+              ], 
+              [
+                -122.70184, 
+                48.016106
+              ], 
+              [
+                -122.723374, 
+                48.008095
+              ], 
+              [
+                -122.718082, 
+                47.987739
+              ], 
+              [
+                -122.701294, 
+                47.972979
+              ], 
+              [
+                -122.683223, 
+                47.972226
+              ], 
+              [
+                -122.6788, 
+                47.96793
+              ], 
+              [
+                -122.676215, 
+                47.958743
+              ], 
+              [
+                -122.684688, 
+                47.944049
+              ], 
+              [
+                -122.68445, 
+                47.939593
+              ], 
+              [
+                -122.681924, 
+                47.936415
+              ], 
+              [
+                -122.66238, 
+                47.9307
+              ], 
+              [
+                -122.657722, 
+                47.931156
+              ], 
+              [
+                -122.651063, 
+                47.920985
+              ], 
+              [
+                -122.65399, 
+                47.91589
+              ], 
+              [
+                -122.655085, 
+                47.905058
+              ], 
+              [
+                -122.646494, 
+                47.894771
+              ], 
+              [
+                -122.637425, 
+                47.889945
+              ], 
+              [
+                -122.618873, 
+                47.890242
+              ], 
+              [
+                -122.610341, 
+                47.887343
+              ], 
+              [
+                -122.631857, 
+                47.874815
+              ], 
+              [
+                -122.633879, 
+                47.868401
+              ], 
+              [
+                -122.63636, 
+                47.866186
+              ], 
+              [
+                -122.650083, 
+                47.86386
+              ], 
+              [
+                -122.666417, 
+                47.867497
+              ], 
+              [
+                -122.69376, 
+                47.868002
+              ], 
+              [
+                -122.690974, 
+                47.860118
+              ], 
+              [
+                -122.681602, 
+                47.850405
+              ], 
+              [
+                -122.683742, 
+                47.838773
+              ], 
+              [
+                -122.688596, 
+                47.831438
+              ], 
+              [
+                -122.719609, 
+                47.813036
+              ], 
+              [
+                -122.731956, 
+                47.809741
+              ], 
+              [
+                -122.748061, 
+                47.800546
+              ], 
+              [
+                -122.75054, 
+                47.773966
+              ], 
+              [
+                -122.757885, 
+                47.757744
+              ], 
+              [
+                -122.758498, 
+                47.746036
+              ], 
+              [
+                -122.749199, 
+                47.741063
+              ], 
+              [
+                -122.740159, 
+                47.736228
+              ], 
+              [
+                -122.733012, 
+                47.737625
+              ], 
+              [
+                -122.722686, 
+                47.748827
+              ], 
+              [
+                -122.719712, 
+                47.760976
+              ], 
+              [
+                -122.714801, 
+                47.768176
+              ], 
+              [
+                -122.690562, 
+                47.778372
+              ], 
+              [
+                -122.684085, 
+                47.798574
+              ], 
+              [
+                -122.682015, 
+                47.800882
+              ], 
+              [
+                -122.648108, 
+                47.825123
+              ], 
+              [
+                -122.623192, 
+                47.836199
+              ], 
+              [
+                -122.614585, 
+                47.850806
+              ], 
+              [
+                -122.608105, 
+                47.856728
+              ], 
+              [
+                -122.573672, 
+                47.857582
+              ], 
+              [
+                -122.573098, 
+                47.874081
+              ], 
+              [
+                -122.586339, 
+                47.902023
+              ], 
+              [
+                -122.588235, 
+                47.912923
+              ], 
+              [
+                -122.596228, 
+                47.92021
+              ], 
+              [
+                -122.616701, 
+                47.925139
+              ], 
+              [
+                -122.620316, 
+                47.931553
+              ], 
+              [
+                -122.617022, 
+                47.938987
+              ], 
+              [
+                -122.611956, 
+                47.940772
+              ], 
+              [
+                -122.603861, 
+                47.940478
+              ], 
+              [
+                -122.601507, 
+                47.931726
+              ], 
+              [
+                -122.592184, 
+                47.922519
+              ], 
+              [
+                -122.581846, 
+                47.920282
+              ], 
+              [
+                -122.549072, 
+                47.919072
+              ], 
+              [
+                -122.527593, 
+                47.905882
+              ], 
+              [
+                -122.513986, 
+                47.880807
+              ], 
+              [
+                -122.512778, 
+                47.863879
+              ], 
+              [
+                -122.506122, 
+                47.831745
+              ], 
+              [
+                -122.502224, 
+                47.826395
+              ], 
+              [
+                -122.482529, 
+                47.815511
+              ], 
+              [
+                -122.482437, 
+                47.809255
+              ], 
+              [
+                -122.485214, 
+                47.804128
+              ], 
+              [
+                -122.495346, 
+                47.79704
+              ], 
+              [
+                -122.495458, 
+                47.786692
+              ], 
+              [
+                -122.471402, 
+                47.765965
+              ], 
+              [
+                -122.470333, 
+                47.757109
+              ], 
+              [
+                -122.471844, 
+                47.749819
+              ], 
+              [
+                -122.477344, 
+                47.746019
+              ], 
+              [
+                -122.488491, 
+                47.743605
+              ], 
+              [
+                -122.507638, 
+                47.74304
+              ], 
+              [
+                -122.515193, 
+                47.743911
+              ], 
+              [
+                -122.519325, 
+                47.74622
+              ], 
+              [
+                -122.537318, 
+                47.74714
+              ], 
+              [
+                -122.554454, 
+                47.745704
+              ], 
+              [
+                -122.543161, 
+                47.710941
+              ], 
+              [
+                -122.53094, 
+                47.704814
+              ], 
+              [
+                -122.525851, 
+                47.705095
+              ], 
+              [
+                -122.523962, 
+                47.708034
+              ], 
+              [
+                -122.511196, 
+                47.708715
+              ], 
+              [
+                -122.504604, 
+                47.699136
+              ], 
+              [
+                -122.504452, 
+                47.685888
+              ], 
+              [
+                -122.508709, 
+                47.670843
+              ], 
+              [
+                -122.518277, 
+                47.65132
+              ], 
+              [
+                -122.502116, 
+                47.639074
+              ], 
+              [
+                -122.493205, 
+                47.635122
+              ], 
+              [
+                -122.492809, 
+                47.629591
+              ], 
+              [
+                -122.494518, 
+                47.623625
+              ], 
+              [
+                -122.500357, 
+                47.617816
+              ], 
+              [
+                -122.49824, 
+                47.598242
+              ], 
+              [
+                -122.493933, 
+                47.588963
+              ], 
+              [
+                -122.483805, 
+                47.586721
+              ], 
+              [
+                -122.479089, 
+                47.583654
+              ], 
+              [
+                -122.503672, 
+                47.575178
+              ], 
+              [
+                -122.518367, 
+                47.57408
+              ], 
+              [
+                -122.529915, 
+                47.568441
+              ], 
+              [
+                -122.534664, 
+                47.566122
+              ], 
+              [
+                -122.543118, 
+                47.556326
+              ], 
+              [
+                -122.542355, 
+                47.53784
+              ], 
+              [
+                -122.547207, 
+                47.528257
+              ], 
+              [
+                -122.546611, 
+                47.52355
+              ], 
+              [
+                -122.532909, 
+                47.522184
+              ], 
+              [
+                -122.52305, 
+                47.524
+              ], 
+              [
+                -122.500543, 
+                47.51528
+              ], 
+              [
+                -122.494882, 
+                47.510265
+              ], 
+              [
+                -122.484993, 
+                47.512731
+              ], 
+              [
+                -122.467796, 
+                47.509956
+              ], 
+              [
+                -122.452399, 
+                47.503471
+              ], 
+              [
+                -122.460503, 
+                47.494773
+              ], 
+              [
+                -122.460029, 
+                47.486861
+              ], 
+              [
+                -122.433386, 
+                47.46643
+              ], 
+              [
+                -122.43984, 
+                47.458083
+              ], 
+              [
+                -122.440083, 
+                47.417647
+              ], 
+              [
+                -122.437657, 
+                47.407424
+              ], 
+              [
+                -122.427327, 
+                47.402129
+              ], 
+              [
+                -122.395054, 
+                47.399277
+              ], 
+              [
+                -122.373629, 
+                47.388718
+              ], 
+              [
+                -122.378482, 
+                47.38533
+              ], 
+              [
+                -122.401768, 
+                47.381325
+              ], 
+              [
+                -122.437809, 
+                47.365607
+              ], 
+              [
+                -122.448399, 
+                47.354987
+              ], 
+              [
+                -122.453998, 
+                47.343337
+              ], 
+              [
+                -122.457494, 
+                47.342567
+              ], 
+              [
+                -122.469703, 
+                47.344623
+              ], 
+              [
+                -122.491237, 
+                47.335172
+              ], 
+              [
+                -122.491063, 
+                47.332427
+              ], 
+              [
+                -122.493123, 
+                47.330253
+              ], 
+              [
+                -122.504918, 
+                47.33068
+              ], 
+              [
+                -122.51885, 
+                47.33332
+              ], 
+              [
+                -122.52416, 
+                47.33837
+              ], 
+              [
+                -122.528129, 
+                47.345542
+              ], 
+              [
+                -122.52603, 
+                47.358908
+              ], 
+              [
+                -122.537935, 
+                47.359203
+              ], 
+              [
+                -122.551536, 
+                47.35954
+              ], 
+              [
+                -122.55584, 
+                47.347519
+              ], 
+              [
+                -122.57134, 
+                47.327219
+              ], 
+              [
+                -122.575985, 
+                47.32642
+              ], 
+              [
+                -122.573739, 
+                47.318419
+              ], 
+              [
+                -122.571239, 
+                47.315619
+              ], 
+              [
+                -122.547747, 
+                47.316403
+              ], 
+              [
+                -122.547408, 
+                47.317734
+              ], 
+              [
+                -122.540238, 
+                47.31852
+              ], 
+              [
+                -122.533338, 
+                47.31662
+              ], 
+              [
+                -122.471652, 
+                47.277321
+              ], 
+              [
+                -122.4442, 
+                47.266723
+              ], 
+              [
+                -122.437727, 
+                47.268046
+              ], 
+              [
+                -122.429605, 
+                47.269707
+              ], 
+              [
+                -122.418074, 
+                47.281765
+              ], 
+              [
+                -122.409199, 
+                47.288556
+              ], 
+              [
+                -122.413735, 
+                47.293921
+              ], 
+              [
+                -122.424235, 
+                47.297521
+              ], 
+              [
+                -122.432335, 
+                47.296021
+              ], 
+              [
+                -122.444635, 
+                47.300421
+              ], 
+              [
+                -122.443008, 
+                47.306333
+              ], 
+              [
+                -122.423535, 
+                47.319121
+              ], 
+              [
+                -122.418268, 
+                47.320614
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 31, 
+      "properties": {
+        "CENSUSAREA": 66455.521, 
+        "GEO_ID": "0400000US53", 
+        "ISO": "US-WA", 
+        "LSAD": "", 
+        "NAME": "Washington", 
+        "NAME_1": "Washington", 
+        "STATE": "WA"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -72.458519, 
+                42.726853
+              ], 
+              [
+                -72.86418, 
+                42.737117
+              ], 
+              [
+                -72.927291, 
+                42.738714
+              ], 
+              [
+                -72.930271, 
+                42.738789
+              ], 
+              [
+                -73.018646, 
+                42.741025
+              ], 
+              [
+                -73.022903, 
+                42.741133
+              ], 
+              [
+                -73.142487, 
+                42.743508
+              ], 
+              [
+                -73.264957, 
+                42.74594
+              ], 
+              [
+                -73.276421, 
+                42.746019
+              ], 
+              [
+                -73.290944, 
+                42.80192
+              ], 
+              [
+                -73.285388, 
+                42.834093
+              ], 
+              [
+                -73.278673, 
+                42.83341
+              ], 
+              [
+                -73.274466, 
+                42.940361
+              ], 
+              [
+                -73.274393, 
+                42.942482
+              ], 
+              [
+                -73.274294, 
+                42.943652
+              ], 
+              [
+                -73.269472, 
+                43.030686
+              ], 
+              [
+                -73.259159, 
+                43.216848
+              ], 
+              [
+                -73.254848, 
+                43.314684
+              ], 
+              [
+                -73.253084, 
+                43.354714
+              ], 
+              [
+                -73.252832, 
+                43.363493
+              ], 
+              [
+                -73.252674, 
+                43.370285
+              ], 
+              [
+                -73.252582, 
+                43.370997
+              ], 
+              [
+                -73.247061, 
+                43.514919
+              ], 
+              [
+                -73.242042, 
+                43.534925
+              ], 
+              [
+                -73.245594, 
+                43.540253
+              ], 
+              [
+                -73.302552, 
+                43.625708
+              ], 
+              [
+                -73.306234, 
+                43.628018
+              ], 
+              [
+                -73.366537, 
+                43.623462
+              ], 
+              [
+                -73.375594, 
+                43.61335
+              ], 
+              [
+                -73.400295, 
+                43.568889
+              ], 
+              [
+                -73.428636, 
+                43.583994
+              ], 
+              [
+                -73.431229, 
+                43.588285
+              ], 
+              [
+                -73.421606, 
+                43.646577
+              ], 
+              [
+                -73.408697, 
+                43.67402
+              ], 
+              [
+                -73.403517, 
+                43.685032
+              ], 
+              [
+                -73.370724, 
+                43.735571
+              ], 
+              [
+                -73.360711, 
+                43.753268
+              ], 
+              [
+                -73.350431, 
+                43.771438
+              ], 
+              [
+                -73.357547, 
+                43.785933
+              ], 
+              [
+                -73.379279, 
+                43.808391
+              ], 
+              [
+                -73.379312, 
+                43.808478
+              ], 
+              [
+                -73.388389, 
+                43.832404
+              ], 
+              [
+                -73.397256, 
+                43.905668
+              ], 
+              [
+                -73.407742, 
+                43.929887
+              ], 
+              [
+                -73.405525, 
+                43.948813
+              ], 
+              [
+                -73.405999, 
+                44.016229
+              ], 
+              [
+                -73.410776, 
+                44.026944
+              ], 
+              [
+                -73.43688, 
+                44.042578
+              ], 
+              [
+                -73.437429, 
+                44.046861
+              ], 
+              [
+                -73.429239, 
+                44.079414
+              ], 
+              [
+                -73.403686, 
+                44.153102
+              ], 
+              [
+                -73.390583, 
+                44.190886
+              ], 
+              [
+                -73.350806, 
+                44.225943
+              ], 
+              [
+                -73.324681, 
+                44.243614
+              ], 
+              [
+                -73.323268, 
+                44.264796
+              ], 
+              [
+                -73.315016, 
+                44.388513
+              ], 
+              [
+                -73.296031, 
+                44.428339
+              ], 
+              [
+                -73.293613, 
+                44.438903
+              ], 
+              [
+                -73.299885, 
+                44.476652
+              ], 
+              [
+                -73.306707, 
+                44.500334
+              ], 
+              [
+                -73.33863, 
+                44.546844
+              ], 
+              [
+                -73.338634, 
+                44.546847
+              ], 
+              [
+                -73.356788, 
+                44.557918
+              ], 
+              [
+                -73.361952, 
+                44.563064
+              ], 
+              [
+                -73.374389, 
+                44.575455
+              ], 
+              [
+                -73.390231, 
+                44.618353
+              ], 
+              [
+                -73.365326, 
+                44.703294
+              ], 
+              [
+                -73.339958, 
+                44.778893
+              ], 
+              [
+                -73.369647, 
+                44.829136
+              ], 
+              [
+                -73.35945, 
+                44.915684
+              ], 
+              [
+                -73.350188, 
+                44.994304
+              ], 
+              [
+                -73.343124, 
+                45.01084
+              ], 
+              [
+                -73.191948, 
+                45.013576
+              ], 
+              [
+                -73.085972, 
+                45.015494
+              ], 
+              [
+                -73.015539, 
+                45.015072
+              ], 
+              [
+                -73.014766, 
+                45.01498
+              ], 
+              [
+                -72.845633, 
+                45.016659
+              ], 
+              [
+                -72.67477, 
+                45.015459
+              ], 
+              [
+                -72.554253, 
+                45.011794
+              ], 
+              [
+                -72.342453, 
+                45.005354
+              ], 
+              [
+                -72.103058, 
+                45.005598
+              ], 
+              [
+                -71.897622, 
+                45.009172
+              ], 
+              [
+                -71.767452, 
+                45.011437
+              ], 
+              [
+                -71.502487, 
+                45.013367
+              ], 
+              [
+                -71.464555, 
+                45.013637
+              ], 
+              [
+                -71.468567, 
+                45.010222
+              ], 
+              [
+                -71.486457, 
+                45.007011
+              ], 
+              [
+                -71.505, 
+                45.008151
+              ], 
+              [
+                -71.530091, 
+                44.999656
+              ], 
+              [
+                -71.53698, 
+                44.994177
+              ], 
+              [
+                -71.538592, 
+                44.988182
+              ], 
+              [
+                -71.537784, 
+                44.984298
+              ], 
+              [
+                -71.516814, 
+                44.947588
+              ], 
+              [
+                -71.493985, 
+                44.911312
+              ], 
+              [
+                -71.495844, 
+                44.90498
+              ], 
+              [
+                -71.57252, 
+                44.810074
+              ], 
+              [
+                -71.623924, 
+                44.755135
+              ], 
+              [
+                -71.627358, 
+                44.747544
+              ], 
+              [
+                -71.625323, 
+                44.729718
+              ], 
+              [
+                -71.598656, 
+                44.698005
+              ], 
+              [
+                -71.553156, 
+                44.626645
+              ], 
+              [
+                -71.536251, 
+                44.587939
+              ], 
+              [
+                -71.580263, 
+                44.506509
+              ], 
+              [
+                -71.59948, 
+                44.486455
+              ], 
+              [
+                -71.67995, 
+                44.427908
+              ], 
+              [
+                -71.708934, 
+                44.411611
+              ], 
+              [
+                -71.745011, 
+                44.401359
+              ], 
+              [
+                -71.756091, 
+                44.406401
+              ], 
+              [
+                -71.761966, 
+                44.407027
+              ], 
+              [
+                -71.764537, 
+                44.406403
+              ], 
+              [
+                -71.793924, 
+                44.399271
+              ], 
+              [
+                -71.814388, 
+                44.381932
+              ], 
+              [
+                -71.816065, 
+                44.366817
+              ], 
+              [
+                -71.849465, 
+                44.359295
+              ], 
+              [
+                -72.002314, 
+                44.324871
+              ], 
+              [
+                -72.012173, 
+                44.321408
+              ], 
+              [
+                -72.05888, 
+                44.28624
+              ], 
+              [
+                -72.065434, 
+                44.277235
+              ], 
+              [
+                -72.067774, 
+                44.270976
+              ], 
+              [
+                -72.064285, 
+                44.187888
+              ], 
+              [
+                -72.053021, 
+                44.167903
+              ], 
+              [
+                -72.042087, 
+                44.157633
+              ], 
+              [
+                -72.040082, 
+                44.155749
+              ], 
+              [
+                -72.040082, 
+                44.155748
+              ], 
+              [
+                -72.054675, 
+                44.112147
+              ], 
+              [
+                -72.09071, 
+                44.035211
+              ], 
+              [
+                -72.112813, 
+                43.98802
+              ], 
+              [
+                -72.113078, 
+                43.97279
+              ], 
+              [
+                -72.107042, 
+                43.969513
+              ], 
+              [
+                -72.105594, 
+                43.959029
+              ], 
+              [
+                -72.104421, 
+                43.950536
+              ], 
+              [
+                -72.121002, 
+                43.918956
+              ], 
+              [
+                -72.167224, 
+                43.886113
+              ], 
+              [
+                -72.182203, 
+                43.834032
+              ], 
+              [
+                -72.183743, 
+                43.806644
+              ], 
+              [
+                -72.204792, 
+                43.771926
+              ], 
+              [
+                -72.205717, 
+                43.771143
+              ], 
+              [
+                -72.232713, 
+                43.748286
+              ], 
+              [
+                -72.264245, 
+                43.734158
+              ], 
+              [
+                -72.27118, 
+                43.734138
+              ], 
+              [
+                -72.302867, 
+                43.702718
+              ], 
+              [
+                -72.32966, 
+                43.634648
+              ], 
+              [
+                -72.334401, 
+                43.61925
+              ], 
+              [
+                -72.334745, 
+                43.614519
+              ], 
+              [
+                -72.32962, 
+                43.600201
+              ], 
+              [
+                -72.395825, 
+                43.52056
+              ], 
+              [
+                -72.387642, 
+                43.502481
+              ], 
+              [
+                -72.387852, 
+                43.471567
+              ], 
+              [
+                -72.396934, 
+                43.42899
+              ], 
+              [
+                -72.396948, 
+                43.428925
+              ], 
+              [
+                -72.405253, 
+                43.389992
+              ], 
+              [
+                -72.403949, 
+                43.358098
+              ], 
+              [
+                -72.400511, 
+                43.337073
+              ], 
+              [
+                -72.39715, 
+                43.316515
+              ], 
+              [
+                -72.431187, 
+                43.231786
+              ], 
+              [
+                -72.439407, 
+                43.211322
+              ], 
+              [
+                -72.4521, 
+                43.161414
+              ], 
+              [
+                -72.441904, 
+                43.136615
+              ], 
+              [
+                -72.433097, 
+                43.120021
+              ], 
+              [
+                -72.432661, 
+                43.114077
+              ], 
+              [
+                -72.443762, 
+                43.006245
+              ], 
+              [
+                -72.556214, 
+                42.86695
+              ], 
+              [
+                -72.556112, 
+                42.866252
+              ], 
+              [
+                -72.555768, 
+                42.858153
+              ], 
+              [
+                -72.555693, 
+                42.85638
+              ], 
+              [
+                -72.542784, 
+                42.808482
+              ], 
+              [
+                -72.509506, 
+                42.781183
+              ], 
+              [
+                -72.491122, 
+                42.772465
+              ], 
+              [
+                -72.478453, 
+                42.762296
+              ], 
+              [
+                -72.460195, 
+                42.732066
+              ], 
+              [
+                -72.458519, 
+                42.726853
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 32, 
+      "properties": {
+        "CENSUSAREA": 9216.657, 
+        "GEO_ID": "0400000US50", 
+        "ISO": "US-VT", 
+        "LSAD": "", 
+        "NAME": "Vermont", 
+        "NAME_1": "Vermont", 
+        "STATE": "VT"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -111.046689, 
+                42.001567
+              ], 
+              [
+                -111.046402, 
+                41.579845
+              ], 
+              [
+                -111.046264, 
+                41.377731
+              ], 
+              [
+                -111.0466, 
+                41.360692
+              ], 
+              [
+                -111.046551, 
+                41.251716
+              ], 
+              [
+                -111.046723, 
+                40.997959
+              ], 
+              [
+                -110.500718, 
+                40.994746
+              ], 
+              [
+                -110.048474, 
+                40.997103
+              ], 
+              [
+                -110.000708, 
+                40.997352
+              ], 
+              [
+                -109.999838, 
+                40.99733
+              ], 
+              [
+                -109.855299, 
+                40.997614
+              ], 
+              [
+                -109.854302, 
+                40.997661
+              ], 
+              [
+                -109.715409, 
+                40.998191
+              ], 
+              [
+                -109.713877, 
+                40.998266
+              ], 
+              [
+                -109.676421, 
+                40.998395
+              ], 
+              [
+                -109.207383, 
+                41.001459
+              ], 
+              [
+                -109.050076, 
+                41.000659
+              ], 
+              [
+                -109.048296, 
+                40.662602
+              ], 
+              [
+                -109.048249, 
+                40.653601
+              ], 
+              [
+                -109.050074, 
+                40.540358
+              ], 
+              [
+                -109.049955, 
+                40.539901
+              ], 
+              [
+                -109.050854, 
+                40.222662
+              ], 
+              [
+                -109.050973, 
+                40.180849
+              ], 
+              [
+                -109.050944, 
+                40.180712
+              ], 
+              [
+                -109.050813, 
+                40.059579
+              ], 
+              [
+                -109.050873, 
+                40.058915
+              ], 
+              [
+                -109.051221, 
+                39.660472
+              ], 
+              [
+                -109.051363, 
+                39.497674
+              ], 
+              [
+                -109.051417, 
+                39.366677
+              ], 
+              [
+                -109.051516, 
+                39.124982
+              ], 
+              [
+                -109.053292, 
+                38.942878
+              ], 
+              [
+                -109.053233, 
+                38.942467
+              ], 
+              [
+                -109.053797, 
+                38.905284
+              ], 
+              [
+                -109.053943, 
+                38.904414
+              ], 
+              [
+                -109.059541, 
+                38.719888
+              ], 
+              [
+                -109.059962, 
+                38.499987
+              ], 
+              [
+                -109.060062, 
+                38.275489
+              ], 
+              [
+                -109.042062, 
+                38.15549
+              ], 
+              [
+                -109.042074, 
+                38.153023
+              ], 
+              [
+                -109.04282, 
+                37.999301
+              ], 
+              [
+                -109.042819, 
+                37.997068
+              ], 
+              [
+                -109.043121, 
+                37.97426
+              ], 
+              [
+                -109.042137, 
+                37.88116
+              ], 
+              [
+                -109.041723, 
+                37.842051
+              ], 
+              [
+                -109.041754, 
+                37.835826
+              ], 
+              [
+                -109.04176, 
+                37.713182
+              ], 
+              [
+                -109.041732, 
+                37.711214
+              ], 
+              [
+                -109.042089, 
+                37.623795
+              ], 
+              [
+                -109.042131, 
+                37.617662
+              ], 
+              [
+                -109.041806, 
+                37.604171
+              ], 
+              [
+                -109.041865, 
+                37.530726
+              ], 
+              [
+                -109.041915, 
+                37.530653
+              ], 
+              [
+                -109.043053, 
+                37.485161
+              ], 
+              [
+                -109.04581, 
+                37.374993
+              ], 
+              [
+                -109.045156, 
+                37.112064
+              ], 
+              [
+                -109.045203, 
+                37.111958
+              ], 
+              [
+                -109.045173, 
+                37.109464
+              ], 
+              [
+                -109.045189, 
+                37.096271
+              ], 
+              [
+                -109.044995, 
+                37.086429
+              ], 
+              [
+                -109.045058, 
+                37.074661
+              ], 
+              [
+                -109.045166, 
+                37.072742
+              ], 
+              [
+                -109.045223, 
+                36.999084
+              ], 
+              [
+                -109.181196, 
+                36.999271
+              ], 
+              [
+                -109.233848, 
+                36.999266
+              ], 
+              [
+                -109.246917, 
+                36.999346
+              ], 
+              [
+                -109.26339, 
+                36.999263
+              ], 
+              [
+                -109.268213, 
+                36.999242
+              ], 
+              [
+                -109.270097, 
+                36.999266
+              ], 
+              [
+                -109.378039, 
+                36.999135
+              ], 
+              [
+                -109.381226, 
+                36.999148
+              ], 
+              [
+                -110.000677, 
+                36.997968
+              ], 
+              [
+                -110.33105, 
+                36.998216
+              ], 
+              [
+                -110.495259, 
+                37.003875
+              ], 
+              [
+                -110.75069, 
+                37.003197
+              ], 
+              [
+                -111.189888, 
+                37.000959
+              ], 
+              [
+                -111.405517, 
+                37.001497
+              ], 
+              [
+                -111.405869, 
+                37.001481
+              ], 
+              [
+                -111.412784, 
+                37.001478
+              ], 
+              [
+                -112.35769, 
+                37.001025
+              ], 
+              [
+                -112.368946, 
+                37.001125
+              ], 
+              [
+                -112.534545, 
+                37.000684
+              ], 
+              [
+                -112.538593, 
+                37.000674
+              ], 
+              [
+                -112.540368, 
+                37.000669
+              ], 
+              [
+                -112.545094, 
+                37.000734
+              ], 
+              [
+                -112.558974, 
+                37.000692
+              ], 
+              [
+                -112.609787, 
+                37.000753
+              ], 
+              [
+                -112.899366, 
+                37.000319
+              ], 
+              [
+                -112.966471, 
+                37.000219
+              ], 
+              [
+                -113.965907, 
+                36.999976
+              ], 
+              [
+                -113.965907, 
+                37.000025
+              ], 
+              [
+                -114.0506, 
+                37.000396
+              ], 
+              [
+                -114.051749, 
+                37.088434
+              ], 
+              [
+                -114.051822, 
+                37.090976
+              ], 
+              [
+                -114.051974, 
+                37.283848
+              ], 
+              [
+                -114.051974, 
+                37.284511
+              ], 
+              [
+                -114.0518, 
+                37.293044
+              ], 
+              [
+                -114.0518, 
+                37.293548
+              ], 
+              [
+                -114.051927, 
+                37.370459
+              ], 
+              [
+                -114.051927, 
+                37.370734
+              ], 
+              [
+                -114.052701, 
+                37.492014
+              ], 
+              [
+                -114.052685, 
+                37.502513
+              ], 
+              [
+                -114.052718, 
+                37.517264
+              ], 
+              [
+                -114.052689, 
+                37.517859
+              ], 
+              [
+                -114.052472, 
+                37.604776
+              ], 
+              [
+                -114.051728, 
+                37.745997
+              ], 
+              [
+                -114.051785, 
+                37.746249
+              ], 
+              [
+                -114.05167, 
+                37.746958
+              ], 
+              [
+                -114.051109, 
+                37.756276
+              ], 
+              [
+                -114.048473, 
+                37.809861
+              ], 
+              [
+                -114.050423, 
+                37.999961
+              ], 
+              [
+                -114.049903, 
+                38.148601
+              ], 
+              [
+                -114.05012, 
+                38.404536
+              ], 
+              [
+                -114.050091, 
+                38.404673
+              ], 
+              [
+                -114.049834, 
+                38.543784
+              ], 
+              [
+                -114.049862, 
+                38.547764
+              ], 
+              [
+                -114.050154, 
+                38.57292
+              ], 
+              [
+                -114.049893, 
+                38.677365
+              ], 
+              [
+                -114.047728, 
+                39.542742
+              ], 
+              [
+                -114.047134, 
+                39.906037
+              ], 
+              [
+                -114.046555, 
+                40.116931
+              ], 
+              [
+                -114.045518, 
+                40.494474
+              ], 
+              [
+                -114.045577, 
+                40.495801
+              ], 
+              [
+                -114.045281, 
+                40.506586
+              ], 
+              [
+                -114.043505, 
+                40.726292
+              ], 
+              [
+                -114.043831, 
+                40.758666
+              ], 
+              [
+                -114.043803, 
+                40.759205
+              ], 
+              [
+                -114.042145, 
+                40.999926
+              ], 
+              [
+                -114.039882, 
+                41.741991
+              ], 
+              [
+                -114.041152, 
+                41.850595
+              ], 
+              [
+                -114.041107, 
+                41.850573
+              ], 
+              [
+                -114.041723, 
+                41.99372
+              ], 
+              [
+                -113.893261, 
+                41.988057
+              ], 
+              [
+                -113.796082, 
+                41.989104
+              ], 
+              [
+                -113.76453, 
+                41.989459
+              ], 
+              [
+                -113.431563, 
+                41.993799
+              ], 
+              [
+                -113.40223, 
+                41.994161
+              ], 
+              [
+                -113.396497, 
+                41.99425
+              ], 
+              [
+                -113.000821, 
+                41.998223
+              ], 
+              [
+                -113.00082, 
+                41.998223
+              ], 
+              [
+                -112.979218, 
+                41.998263
+              ], 
+              [
+                -112.909587, 
+                41.998791
+              ], 
+              [
+                -112.882367, 
+                41.998922
+              ], 
+              [
+                -112.880619, 
+                41.998921
+              ], 
+              [
+                -112.833125, 
+                41.999345
+              ], 
+              [
+                -112.833084, 
+                41.999305
+              ], 
+              [
+                -112.788542, 
+                41.999681
+              ], 
+              [
+                -112.709375, 
+                42.000309
+              ], 
+              [
+                -112.648019, 
+                42.000307
+              ], 
+              [
+                -112.450814, 
+                42.000953
+              ], 
+              [
+                -112.450567, 
+                42.001092
+              ], 
+              [
+                -112.38617, 
+                42.001126
+              ], 
+              [
+                -112.264936, 
+                42.000991
+              ], 
+              [
+                -112.239107, 
+                42.001217
+              ], 
+              [
+                -112.163956, 
+                41.996708
+              ], 
+              [
+                -112.109528, 
+                41.997105
+              ], 
+              [
+                -111.915837, 
+                41.998519
+              ], 
+              [
+                -111.915622, 
+                41.998496
+              ], 
+              [
+                -111.876491, 
+                41.998528
+              ], 
+              [
+                -111.507264, 
+                41.999518
+              ], 
+              [
+                -111.425535, 
+                42.00084
+              ], 
+              [
+                -111.420898, 
+                42.000793
+              ], 
+              [
+                -111.415873, 
+                42.000748
+              ], 
+              [
+                -111.046689, 
+                42.001567
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 33, 
+      "properties": {
+        "CENSUSAREA": 82169.62, 
+        "GEO_ID": "0400000US49", 
+        "ISO": "US-UT", 
+        "LSAD": "", 
+        "NAME": "Utah", 
+        "NAME_1": "Utah", 
+        "STATE": "UT"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -91.163064, 
+                42.986781
+              ], 
+              [
+                -91.14556, 
+                42.90798
+              ], 
+              [
+                -91.143375, 
+                42.90467
+              ], 
+              [
+                -91.117411, 
+                42.895837
+              ], 
+              [
+                -91.100565, 
+                42.883078
+              ], 
+              [
+                -91.077643, 
+                42.803798
+              ], 
+              [
+                -91.069549, 
+                42.769628
+              ], 
+              [
+                -91.064896, 
+                42.757272
+              ], 
+              [
+                -91.053733, 
+                42.738238
+              ], 
+              [
+                -90.976314, 
+                42.695996
+              ], 
+              [
+                -90.949213, 
+                42.685573
+              ], 
+              [
+                -90.896961, 
+                42.674407
+              ], 
+              [
+                -90.84391, 
+                42.663071
+              ], 
+              [
+                -90.769495, 
+                42.651443
+              ], 
+              [
+                -90.720209, 
+                42.640758
+              ], 
+              [
+                -90.709204, 
+                42.636078
+              ], 
+              [
+                -90.702671, 
+                42.630756
+              ], 
+              [
+                -90.645627, 
+                42.5441
+              ], 
+              [
+                -90.636727, 
+                42.518702
+              ], 
+              [
+                -90.636927, 
+                42.513202
+              ], 
+              [
+                -90.640927, 
+                42.508302
+              ], 
+              [
+                -90.655927, 
+                42.491703
+              ], 
+              [
+                -90.656527, 
+                42.489203
+              ], 
+              [
+                -90.656327, 
+                42.483603
+              ], 
+              [
+                -90.654027, 
+                42.478503
+              ], 
+              [
+                -90.646727, 
+                42.471904
+              ], 
+              [
+                -90.624328, 
+                42.458904
+              ], 
+              [
+                -90.559451, 
+                42.430695
+              ], 
+              [
+                -90.477279, 
+                42.383794
+              ], 
+              [
+                -90.474834, 
+                42.381473
+              ], 
+              [
+                -90.419027, 
+                42.328505
+              ], 
+              [
+                -90.416535, 
+                42.325109
+              ], 
+              [
+                -90.4162, 
+                42.321314
+              ], 
+              [
+                -90.424326, 
+                42.293326
+              ], 
+              [
+                -90.430735, 
+                42.284211
+              ], 
+              [
+                -90.430884, 
+                42.27823
+              ], 
+              [
+                -90.419326, 
+                42.254467
+              ], 
+              [
+                -90.391108, 
+                42.225473
+              ], 
+              [
+                -90.375129, 
+                42.214811
+              ], 
+              [
+                -90.356964, 
+                42.205445
+              ], 
+              [
+                -90.349162, 
+                42.204277
+              ], 
+              [
+                -90.316269, 
+                42.1936
+              ], 
+              [
+                -90.306531, 
+                42.190439
+              ], 
+              [
+                -90.234919, 
+                42.165431
+              ], 
+              [
+                -90.211328, 
+                42.15401
+              ], 
+              [
+                -90.167533, 
+                42.122475
+              ], 
+              [
+                -90.162225, 
+                42.11488
+              ], 
+              [
+                -90.161119, 
+                42.104404
+              ], 
+              [
+                -90.163405, 
+                42.087613
+              ], 
+              [
+                -90.168358, 
+                42.075779
+              ], 
+              [
+                -90.166495, 
+                42.054543
+              ], 
+              [
+                -90.164537, 
+                42.045007
+              ], 
+              [
+                -90.154221, 
+                42.033073
+              ], 
+              [
+                -90.150916, 
+                42.02944
+              ], 
+              [
+                -90.141167, 
+                42.008931
+              ], 
+              [
+                -90.140613, 
+                41.995999
+              ], 
+              [
+                -90.1516, 
+                41.931002
+              ], 
+              [
+                -90.152104, 
+                41.928947
+              ], 
+              [
+                -90.181973, 
+                41.80707
+              ], 
+              [
+                -90.187969, 
+                41.803163
+              ], 
+              [
+                -90.20844, 
+                41.797176
+              ], 
+              [
+                -90.222263, 
+                41.793133
+              ], 
+              [
+                -90.242747, 
+                41.783767
+              ], 
+              [
+                -90.278633, 
+                41.767358
+              ], 
+              [
+                -90.302782, 
+                41.750031
+              ], 
+              [
+                -90.309826, 
+                41.743321
+              ], 
+              [
+                -90.31522, 
+                41.734264
+              ], 
+              [
+                -90.317041, 
+                41.729104
+              ], 
+              [
+                -90.334525, 
+                41.679559
+              ], 
+              [
+                -90.343162, 
+                41.648141
+              ], 
+              [
+                -90.34165, 
+                41.621484
+              ], 
+              [
+                -90.39793, 
+                41.572233
+              ], 
+              [
+                -90.461432, 
+                41.523533
+              ], 
+              [
+                -90.474332, 
+                41.519733
+              ], 
+              [
+                -90.499475, 
+                41.518055
+              ], 
+              [
+                -90.605937, 
+                41.494232
+              ], 
+              [
+                -90.655839, 
+                41.462132
+              ], 
+              [
+                -90.737537, 
+                41.450127
+              ], 
+              [
+                -90.771672, 
+                41.450761
+              ], 
+              [
+                -90.786282, 
+                41.452888
+              ], 
+              [
+                -90.847458, 
+                41.455019
+              ], 
+              [
+                -90.989976, 
+                41.431962
+              ], 
+              [
+                -91.027787, 
+                41.423603
+              ], 
+              [
+                -91.039872, 
+                41.418523
+              ], 
+              [
+                -91.047819, 
+                41.4109
+              ], 
+              [
+                -91.078682, 
+                41.336089
+              ], 
+              [
+                -91.079657, 
+                41.333727
+              ], 
+              [
+                -91.114186, 
+                41.250029
+              ], 
+              [
+                -91.113648, 
+                41.241401
+              ], 
+              [
+                -91.049808, 
+                41.178033
+              ], 
+              [
+                -91.019036, 
+                41.16491
+              ], 
+              [
+                -91.005503, 
+                41.165622
+              ], 
+              [
+                -90.997906, 
+                41.162564
+              ], 
+              [
+                -90.989663, 
+                41.155716
+              ], 
+              [
+                -90.946627, 
+                41.096632
+              ], 
+              [
+                -90.949383, 
+                41.072711
+              ], 
+              [
+                -90.949383, 
+                41.07271
+              ], 
+              [
+                -90.948523, 
+                41.070248
+              ], 
+              [
+                -90.945549, 
+                41.06173
+              ], 
+              [
+                -90.942253, 
+                41.034702
+              ], 
+              [
+                -90.952233, 
+                40.954047
+              ], 
+              [
+                -90.962916, 
+                40.924957
+              ], 
+              [
+                -90.968995, 
+                40.919127
+              ], 
+              [
+                -90.9985, 
+                40.90812
+              ], 
+              [
+                -91.009536, 
+                40.900565
+              ], 
+              [
+                -91.092993, 
+                40.821079
+              ], 
+              [
+                -91.097553, 
+                40.808433
+              ], 
+              [
+                -91.097031, 
+                40.802471
+              ], 
+              [
+                -91.094728, 
+                40.797833
+              ], 
+              [
+                -91.11194, 
+                40.697018
+              ], 
+              [
+                -91.112258, 
+                40.696218
+              ], 
+              [
+                -91.122421, 
+                40.670675
+              ], 
+              [
+                -91.138055, 
+                40.660893
+              ], 
+              [
+                -91.185415, 
+                40.638052
+              ], 
+              [
+                -91.18698, 
+                40.637297
+              ], 
+              [
+                -91.197906, 
+                40.636107
+              ], 
+              [
+                -91.218437, 
+                40.638437
+              ], 
+              [
+                -91.253074, 
+                40.637962
+              ], 
+              [
+                -91.306524, 
+                40.626231
+              ], 
+              [
+                -91.339719, 
+                40.613488
+              ], 
+              [
+                -91.348733, 
+                40.609695
+              ], 
+              [
+                -91.359873, 
+                40.601805
+              ], 
+              [
+                -91.405241, 
+                40.554641
+              ], 
+              [
+                -91.406851, 
+                40.547557
+              ], 
+              [
+                -91.404125, 
+                40.539127
+              ], 
+              [
+                -91.384531, 
+                40.530948
+              ], 
+              [
+                -91.369059, 
+                40.512532
+              ], 
+              [
+                -91.364211, 
+                40.500043
+              ], 
+              [
+                -91.36391, 
+                40.490122
+              ], 
+              [
+                -91.372554, 
+                40.4012
+              ], 
+              [
+                -91.375746, 
+                40.391879
+              ], 
+              [
+                -91.38836, 
+                40.384929
+              ], 
+              [
+                -91.419422, 
+                40.378264
+              ], 
+              [
+                -91.484507, 
+                40.3839
+              ], 
+              [
+                -91.490977, 
+                40.393484
+              ], 
+              [
+                -91.524612, 
+                40.410765
+              ], 
+              [
+                -91.619486, 
+                40.507134
+              ], 
+              [
+                -91.622362, 
+                40.514362
+              ], 
+              [
+                -91.618028, 
+                40.53403
+              ], 
+              [
+                -91.620071, 
+                40.540817
+              ], 
+              [
+                -91.696359, 
+                40.588148
+              ], 
+              [
+                -91.716769, 
+                40.59853
+              ], 
+              [
+                -91.729115, 
+                40.61364
+              ], 
+              [
+                -91.785916, 
+                40.611488
+              ], 
+              [
+                -91.795374, 
+                40.611101
+              ], 
+              [
+                -91.800133, 
+                40.610953
+              ], 
+              [
+                -91.813968, 
+                40.610526
+              ], 
+              [
+                -91.824826, 
+                40.610191
+              ], 
+              [
+                -91.832481, 
+                40.609797
+              ], 
+              [
+                -91.868401, 
+                40.608059
+              ], 
+              [
+                -91.943114, 
+                40.605913
+              ], 
+              [
+                -91.970988, 
+                40.605112
+              ], 
+              [
+                -91.998683, 
+                40.604433
+              ], 
+              [
+                -92.029649, 
+                40.603713
+              ], 
+              [
+                -92.067904, 
+                40.602648
+              ], 
+              [
+                -92.069521, 
+                40.602772
+              ], 
+              [
+                -92.082339, 
+                40.602176
+              ], 
+              [
+                -92.0832, 
+                40.602244
+              ], 
+              [
+                -92.092875, 
+                40.602082
+              ], 
+              [
+                -92.096387, 
+                40.60183
+              ], 
+              [
+                -92.17978, 
+                40.600529
+              ], 
+              [
+                -92.196162, 
+                40.600069
+              ], 
+              [
+                -92.201669, 
+                40.59998
+              ], 
+              [
+                -92.217603, 
+                40.599832
+              ], 
+              [
+                -92.236484, 
+                40.599531
+              ], 
+              [
+                -92.298754, 
+                40.598469
+              ], 
+              [
+                -92.331205, 
+                40.597805
+              ], 
+              [
+                -92.331445, 
+                40.597714
+              ], 
+              [
+                -92.350776, 
+                40.597274
+              ], 
+              [
+                -92.350807, 
+                40.597273
+              ], 
+              [
+                -92.379691, 
+                40.596509
+              ], 
+              [
+                -92.453745, 
+                40.595288
+              ], 
+              [
+                -92.461609, 
+                40.595355
+              ], 
+              [
+                -92.481692, 
+                40.594941
+              ], 
+              [
+                -92.482394, 
+                40.594894
+              ], 
+              [
+                -92.484588, 
+                40.594924
+              ], 
+              [
+                -92.580278, 
+                40.592151
+              ], 
+              [
+                -92.637898, 
+                40.590853
+              ], 
+              [
+                -92.639223, 
+                40.590825
+              ], 
+              [
+                -92.686693, 
+                40.589809
+              ], 
+              [
+                -92.689854, 
+                40.589884
+              ], 
+              [
+                -92.714598, 
+                40.589564
+              ], 
+              [
+                -92.742232, 
+                40.589207
+              ], 
+              [
+                -92.757407, 
+                40.588908
+              ], 
+              [
+                -92.828061, 
+                40.588593
+              ], 
+              [
+                -92.827992, 
+                40.588515
+              ], 
+              [
+                -92.835074, 
+                40.588484
+              ], 
+              [
+                -92.857391, 
+                40.58836
+              ], 
+              [
+                -92.863034, 
+                40.588175
+              ], 
+              [
+                -92.879178, 
+                40.588341
+              ], 
+              [
+                -92.889796, 
+                40.588039
+              ], 
+              [
+                -92.903544, 
+                40.58786
+              ], 
+              [
+                -92.941595, 
+                40.587743
+              ], 
+              [
+                -92.957747, 
+                40.58743
+              ], 
+              [
+                -93.085517, 
+                40.584403
+              ], 
+              [
+                -93.097296, 
+                40.584014
+              ], 
+              [
+                -93.098507, 
+                40.583973
+              ], 
+              [
+                -93.260612, 
+                40.580797
+              ], 
+              [
+                -93.317605, 
+                40.580671
+              ], 
+              [
+                -93.345442, 
+                40.580514
+              ], 
+              [
+                -93.374386, 
+                40.580334
+              ], 
+              [
+                -93.441767, 
+                40.579916
+              ], 
+              [
+                -93.465297, 
+                40.580164
+              ], 
+              [
+                -93.466887, 
+                40.580072
+              ], 
+              [
+                -93.524124, 
+                40.580481
+              ], 
+              [
+                -93.527607, 
+                40.580436
+              ], 
+              [
+                -93.528177, 
+                40.580367
+              ], 
+              [
+                -93.548284, 
+                40.580417
+              ], 
+              [
+                -93.553986, 
+                40.580303
+              ], 
+              [
+                -93.556899, 
+                40.580235
+              ], 
+              [
+                -93.558938, 
+                40.580189
+              ], 
+              [
+                -93.560798, 
+                40.580304
+              ], 
+              [
+                -93.56524, 
+                40.580143
+              ], 
+              [
+                -93.56581, 
+                40.580075
+              ], 
+              [
+                -93.566189, 
+                40.580117
+              ], 
+              [
+                -93.597352, 
+                40.579496
+              ], 
+              [
+                -93.656211, 
+                40.578352
+              ], 
+              [
+                -93.659272, 
+                40.57833
+              ], 
+              [
+                -93.661913, 
+                40.578354
+              ], 
+              [
+                -93.668845, 
+                40.578241
+              ], 
+              [
+                -93.677099, 
+                40.578127
+              ], 
+              [
+                -93.690333, 
+                40.577875
+              ], 
+              [
+                -93.722443, 
+                40.577641
+              ], 
+              [
+                -93.728355, 
+                40.577547
+              ], 
+              [
+                -93.737259, 
+                40.577542
+              ], 
+              [
+                -93.742759, 
+                40.577518
+              ], 
+              [
+                -93.750223, 
+                40.57772
+              ], 
+              [
+                -93.770231, 
+                40.577615
+              ], 
+              [
+                -93.774344, 
+                40.577584
+              ], 
+              [
+                -93.815485, 
+                40.577278
+              ], 
+              [
+                -93.818725, 
+                40.577086
+              ], 
+              [
+                -93.84093, 
+                40.576791
+              ], 
+              [
+                -93.853656, 
+                40.576606
+              ], 
+              [
+                -93.898327, 
+                40.576011
+              ], 
+              [
+                -93.899317, 
+                40.575942
+              ], 
+              [
+                -93.900877, 
+                40.575874
+              ], 
+              [
+                -93.913961, 
+                40.575672
+              ], 
+              [
+                -93.935687, 
+                40.57533
+              ], 
+              [
+                -93.936317, 
+                40.575284
+              ], 
+              [
+                -93.937097, 
+                40.575421
+              ], 
+              [
+                -93.938627, 
+                40.575284
+              ], 
+              [
+                -93.939857, 
+                40.575192
+              ], 
+              [
+                -93.963863, 
+                40.574754
+              ], 
+              [
+                -93.976766, 
+                40.574635
+              ], 
+              [
+                -94.015492, 
+                40.573914
+              ], 
+              [
+                -94.034134, 
+                40.573585
+              ], 
+              [
+                -94.080223, 
+                40.572899
+              ], 
+              [
+                -94.080463, 
+                40.572899
+              ], 
+              [
+                -94.089194, 
+                40.572806
+              ], 
+              [
+                -94.091085, 
+                40.572897
+              ], 
+              [
+                -94.23224, 
+                40.571907
+              ], 
+              [
+                -94.28735, 
+                40.571521
+              ], 
+              [
+                -94.294813, 
+                40.571341
+              ], 
+              [
+                -94.310724, 
+                40.571524
+              ], 
+              [
+                -94.324765, 
+                40.571477
+              ], 
+              [
+                -94.336556, 
+                40.571475
+              ], 
+              [
+                -94.336706, 
+                40.571452
+              ], 
+              [
+                -94.358307, 
+                40.571363
+              ], 
+              [
+                -94.429725, 
+                40.571041
+              ], 
+              [
+                -94.460088, 
+                40.570947
+              ], 
+              [
+                -94.470648, 
+                40.57083
+              ], 
+              [
+                -94.471213, 
+                40.570825
+              ], 
+              [
+                -94.48928, 
+                40.570707
+              ], 
+              [
+                -94.533878, 
+                40.570739
+              ], 
+              [
+                -94.537058, 
+                40.570763
+              ], 
+              [
+                -94.538318, 
+                40.570763
+              ], 
+              [
+                -94.541828, 
+                40.570809
+              ], 
+              [
+                -94.542154, 
+                40.570809
+              ], 
+              [
+                -94.594001, 
+                40.570966
+              ], 
+              [
+                -94.632032, 
+                40.571186
+              ], 
+              [
+                -94.632035, 
+                40.571186
+              ], 
+              [
+                -94.682601, 
+                40.571787
+              ], 
+              [
+                -94.714925, 
+                40.572201
+              ], 
+              [
+                -94.716665, 
+                40.572201
+              ], 
+              [
+                -94.773988, 
+                40.572977
+              ], 
+              [
+                -94.811188, 
+                40.573532
+              ], 
+              [
+                -94.819978, 
+                40.573714
+              ], 
+              [
+                -94.823758, 
+                40.573942
+              ], 
+              [
+                -94.896801, 
+                40.574738
+              ], 
+              [
+                -94.901451, 
+                40.574877
+              ], 
+              [
+                -94.914896, 
+                40.575068
+              ], 
+              [
+                -94.955134, 
+                40.575669
+              ], 
+              [
+                -94.966491, 
+                40.575839
+              ], 
+              [
+                -95.068921, 
+                40.57688
+              ], 
+              [
+                -95.079742, 
+                40.577007
+              ], 
+              [
+                -95.097607, 
+                40.577168
+              ], 
+              [
+                -95.107213, 
+                40.577116
+              ], 
+              [
+                -95.110303, 
+                40.57716
+              ], 
+              [
+                -95.110663, 
+                40.577206
+              ], 
+              [
+                -95.112222, 
+                40.577228
+              ], 
+              [
+                -95.120829, 
+                40.577413
+              ], 
+              [
+                -95.154499, 
+                40.57786
+              ], 
+              [
+                -95.164058, 
+                40.578017
+              ], 
+              [
+                -95.202264, 
+                40.578528
+              ], 
+              [
+                -95.211408, 
+                40.57865
+              ], 
+              [
+                -95.21159, 
+                40.578654
+              ], 
+              [
+                -95.212715, 
+                40.578679
+              ], 
+              [
+                -95.213327, 
+                40.578689
+              ], 
+              [
+                -95.217455, 
+                40.578759
+              ], 
+              [
+                -95.218783, 
+                40.578781
+              ], 
+              [
+                -95.221525, 
+                40.578827
+              ], 
+              [
+                -95.335588, 
+                40.579871
+              ], 
+              [
+                -95.357802, 
+                40.5801
+              ], 
+              [
+                -95.373893, 
+                40.580501
+              ], 
+              [
+                -95.373923, 
+                40.580501
+              ], 
+              [
+                -95.415406, 
+                40.581014
+              ], 
+              [
+                -95.469319, 
+                40.58154
+              ], 
+              [
+                -95.525392, 
+                40.58209
+              ], 
+              [
+                -95.526682, 
+                40.582136
+              ], 
+              [
+                -95.533182, 
+                40.582249
+              ], 
+              [
+                -95.554959, 
+                40.582629
+              ], 
+              [
+                -95.574046, 
+                40.582963
+              ], 
+              [
+                -95.611069, 
+                40.583495
+              ], 
+              [
+                -95.64184, 
+                40.584234
+              ], 
+              [
+                -95.687442, 
+                40.58438
+              ], 
+              [
+                -95.6875, 
+                40.584381
+              ], 
+              [
+                -95.746443, 
+                40.584935
+              ], 
+              [
+                -95.765645, 
+                40.585208
+              ], 
+              [
+                -95.753148, 
+                40.59284
+              ], 
+              [
+                -95.750053, 
+                40.597052
+              ], 
+              [
+                -95.748626, 
+                40.603355
+              ], 
+              [
+                -95.776251, 
+                40.647463
+              ], 
+              [
+                -95.786568, 
+                40.657253
+              ], 
+              [
+                -95.795489, 
+                40.662384
+              ], 
+              [
+                -95.822913, 
+                40.66724
+              ], 
+              [
+                -95.842801, 
+                40.677496
+              ], 
+              [
+                -95.883178, 
+                40.717579
+              ], 
+              [
+                -95.888907, 
+                40.731855
+              ], 
+              [
+                -95.88669, 
+                40.742101
+              ], 
+              [
+                -95.881529, 
+                40.750611
+              ], 
+              [
+                -95.872281, 
+                40.758349
+              ], 
+              [
+                -95.861695, 
+                40.762871
+              ], 
+              [
+                -95.854172, 
+                40.784012
+              ], 
+              [
+                -95.821193, 
+                40.876682
+              ], 
+              [
+                -95.823123, 
+                40.900924
+              ], 
+              [
+                -95.829074, 
+                40.975688
+              ], 
+              [
+                -95.835434, 
+                40.984184
+              ], 
+              [
+                -95.867286, 
+                41.001599
+              ], 
+              [
+                -95.867246, 
+                41.043671
+              ], 
+              [
+                -95.866289, 
+                41.051731
+              ], 
+              [
+                -95.853396, 
+                41.16028
+              ], 
+              [
+                -95.852788, 
+                41.165398
+              ], 
+              [
+                -95.91459, 
+                41.185098
+              ], 
+              [
+                -95.92319, 
+                41.190998
+              ], 
+              [
+                -95.923219, 
+                41.191046
+              ], 
+              [
+                -95.92599, 
+                41.195698
+              ], 
+              [
+                -95.927491, 
+                41.202198
+              ], 
+              [
+                -95.924891, 
+                41.211198
+              ], 
+              [
+                -95.90249, 
+                41.273398
+              ], 
+              [
+                -95.91379, 
+                41.320197
+              ], 
+              [
+                -95.92569, 
+                41.322197
+              ], 
+              [
+                -95.939291, 
+                41.328897
+              ], 
+              [
+                -95.953091, 
+                41.339896
+              ], 
+              [
+                -95.956691, 
+                41.345496
+              ], 
+              [
+                -95.956791, 
+                41.349196
+              ], 
+              [
+                -95.93831, 
+                41.392162
+              ], 
+              [
+                -95.937346, 
+                41.394403
+              ], 
+              [
+                -95.930705, 
+                41.433894
+              ], 
+              [
+                -95.981319, 
+                41.506837
+              ], 
+              [
+                -95.994784, 
+                41.526242
+              ], 
+              [
+                -96.030593, 
+                41.527292
+              ], 
+              [
+                -96.036603, 
+                41.509047
+              ], 
+              [
+                -96.040701, 
+                41.507076
+              ], 
+              [
+                -96.046707, 
+                41.507085
+              ], 
+              [
+                -96.055096, 
+                41.509577
+              ], 
+              [
+                -96.089714, 
+                41.531778
+              ], 
+              [
+                -96.09409, 
+                41.539265
+              ], 
+              [
+                -96.118105, 
+                41.613495
+              ], 
+              [
+                -96.116233, 
+                41.621574
+              ], 
+              [
+                -96.097728, 
+                41.639633
+              ], 
+              [
+                -96.095046, 
+                41.647365
+              ], 
+              [
+                -96.095415, 
+                41.652736
+              ], 
+              [
+                -96.099837, 
+                41.66103
+              ], 
+              [
+                -96.121726, 
+                41.68274
+              ], 
+              [
+                -96.096795, 
+                41.698681
+              ], 
+              [
+                -96.077088, 
+                41.715403
+              ], 
+              [
+                -96.064537, 
+                41.793002
+              ], 
+              [
+                -96.06577, 
+                41.798174
+              ], 
+              [
+                -96.071007, 
+                41.804639
+              ], 
+              [
+                -96.077646, 
+                41.808804
+              ], 
+              [
+                -96.086407, 
+                41.81138
+              ], 
+              [
+                -96.110907, 
+                41.830818
+              ], 
+              [
+                -96.139554, 
+                41.86583
+              ], 
+              [
+                -96.144483, 
+                41.871854
+              ], 
+              [
+                -96.161756, 
+                41.90182
+              ], 
+              [
+                -96.161988, 
+                41.905553
+              ], 
+              [
+                -96.159098, 
+                41.910057
+              ], 
+              [
+                -96.142265, 
+                41.915379
+              ], 
+              [
+                -96.136743, 
+                41.920826
+              ], 
+              [
+                -96.129186, 
+                41.965136
+              ], 
+              [
+                -96.129505, 
+                41.971673
+              ], 
+              [
+                -96.22173, 
+                42.026205
+              ], 
+              [
+                -96.251714, 
+                42.040472
+              ], 
+              [
+                -96.272877, 
+                42.047238
+              ], 
+              [
+                -96.279079, 
+                42.074026
+              ], 
+              [
+                -96.307421, 
+                42.130707
+              ], 
+              [
+                -96.344121, 
+                42.162091
+              ], 
+              [
+                -96.349688, 
+                42.172043
+              ], 
+              [
+                -96.35987, 
+                42.210545
+              ], 
+              [
+                -96.356666, 
+                42.215077
+              ], 
+              [
+                -96.356591, 
+                42.215182
+              ], 
+              [
+                -96.336323, 
+                42.218922
+              ], 
+              [
+                -96.323723, 
+                42.229887
+              ], 
+              [
+                -96.322868, 
+                42.233637
+              ], 
+              [
+                -96.328905, 
+                42.254734
+              ], 
+              [
+                -96.348814, 
+                42.282024
+              ], 
+              [
+                -96.375307, 
+                42.318339
+              ], 
+              [
+                -96.384169, 
+                42.325874
+              ], 
+              [
+                -96.407998, 
+                42.337408
+              ], 
+              [
+                -96.413895, 
+                42.343393
+              ], 
+              [
+                -96.417786, 
+                42.351449
+              ], 
+              [
+                -96.415509, 
+                42.400294
+              ], 
+              [
+                -96.413609, 
+                42.407894
+              ], 
+              [
+                -96.387608, 
+                42.432494
+              ], 
+              [
+                -96.380707, 
+                42.446394
+              ], 
+              [
+                -96.381307, 
+                42.461694
+              ], 
+              [
+                -96.385407, 
+                42.473094
+              ], 
+              [
+                -96.396107, 
+                42.484095
+              ], 
+              [
+                -96.409408, 
+                42.487595
+              ], 
+              [
+                -96.443408, 
+                42.489495
+              ], 
+              [
+                -96.466253, 
+                42.497702
+              ], 
+              [
+                -96.476947, 
+                42.508677
+              ], 
+              [
+                -96.481308, 
+                42.516556
+              ], 
+              [
+                -96.479909, 
+                42.524195
+              ], 
+              [
+                -96.477709, 
+                42.535595
+              ], 
+              [
+                -96.476952, 
+                42.556079
+              ], 
+              [
+                -96.479685, 
+                42.561238
+              ], 
+              [
+                -96.516338, 
+                42.630435
+              ], 
+              [
+                -96.542366, 
+                42.660736
+              ], 
+              [
+                -96.575299, 
+                42.682665
+              ], 
+              [
+                -96.601989, 
+                42.697429
+              ], 
+              [
+                -96.60614, 
+                42.694661
+              ], 
+              [
+                -96.610975, 
+                42.694751
+              ], 
+              [
+                -96.630617, 
+                42.70588
+              ], 
+              [
+                -96.639704, 
+                42.737071
+              ], 
+              [
+                -96.633168, 
+                42.768325
+              ], 
+              [
+                -96.632142, 
+                42.770863
+              ], 
+              [
+                -96.577813, 
+                42.828102
+              ], 
+              [
+                -96.563058, 
+                42.831051
+              ], 
+              [
+                -96.552092, 
+                42.836057
+              ], 
+              [
+                -96.549513, 
+                42.839143
+              ], 
+              [
+                -96.54146, 
+                42.857682
+              ], 
+              [
+                -96.523264, 
+                42.909059
+              ], 
+              [
+                -96.510749, 
+                42.944397
+              ], 
+              [
+                -96.509479, 
+                42.971122
+              ], 
+              [
+                -96.513111, 
+                43.02788
+              ], 
+              [
+                -96.466017, 
+                43.062235
+              ], 
+              [
+                -96.455107, 
+                43.083366
+              ], 
+              [
+                -96.439335, 
+                43.113916
+              ], 
+              [
+                -96.436589, 
+                43.120842
+              ], 
+              [
+                -96.475571, 
+                43.221054
+              ], 
+              [
+                -96.485264, 
+                43.224183
+              ], 
+              [
+                -96.557126, 
+                43.224192
+              ], 
+              [
+                -96.572489, 
+                43.249178
+              ], 
+              [
+                -96.584124, 
+                43.268101
+              ], 
+              [
+                -96.586317, 
+                43.274319
+              ], 
+              [
+                -96.56911, 
+                43.295535
+              ], 
+              [
+                -96.551929, 
+                43.292974
+              ], 
+              [
+                -96.530392, 
+                43.300034
+              ], 
+              [
+                -96.525564, 
+                43.312467
+              ], 
+              [
+                -96.521264, 
+                43.374978
+              ], 
+              [
+                -96.521697, 
+                43.386897
+              ], 
+              [
+                -96.524044, 
+                43.394762
+              ], 
+              [
+                -96.529152, 
+                43.397735
+              ], 
+              [
+                -96.531159, 
+                43.39561
+              ], 
+              [
+                -96.53746, 
+                43.395246
+              ], 
+              [
+                -96.557586, 
+                43.406792
+              ], 
+              [
+                -96.594254, 
+                43.434153
+              ], 
+              [
+                -96.60286, 
+                43.450907
+              ], 
+              [
+                -96.600039, 
+                43.45708
+              ], 
+              [
+                -96.58407, 
+                43.468856
+              ], 
+              [
+                -96.587151, 
+                43.484697
+              ], 
+              [
+                -96.598928, 
+                43.500457
+              ], 
+              [
+                -96.591213, 
+                43.500514
+              ], 
+              [
+                -96.453049, 
+                43.500415
+              ], 
+              [
+                -96.351059, 
+                43.500333
+              ], 
+              [
+                -96.332062, 
+                43.500415
+              ], 
+              [
+                -96.208814, 
+                43.500391
+              ], 
+              [
+                -96.198766, 
+                43.500312
+              ], 
+              [
+                -96.198484, 
+                43.500335
+              ], 
+              [
+                -96.053163, 
+                43.500176
+              ], 
+              [
+                -95.861152, 
+                43.499966
+              ], 
+              [
+                -95.860946, 
+                43.499966
+              ], 
+              [
+                -95.834421, 
+                43.499966
+              ], 
+              [
+                -95.821277, 
+                43.499965
+              ], 
+              [
+                -95.741569, 
+                43.499891
+              ], 
+              [
+                -95.740813, 
+                43.499894
+              ], 
+              [
+                -95.514774, 
+                43.499865
+              ], 
+              [
+                -95.486803, 
+                43.500246
+              ], 
+              [
+                -95.486737, 
+                43.500274
+              ], 
+              [
+                -95.475065, 
+                43.500335
+              ], 
+              [
+                -95.454706, 
+                43.500563
+              ], 
+              [
+                -95.454706, 
+                43.500648
+              ], 
+              [
+                -95.454433, 
+                43.500644
+              ], 
+              [
+                -95.434293, 
+                43.50036
+              ], 
+              [
+                -95.434199, 
+                43.500314
+              ], 
+              [
+                -95.387851, 
+                43.50024
+              ], 
+              [
+                -95.387812, 
+                43.50024
+              ], 
+              [
+                -95.387787, 
+                43.50024
+              ], 
+              [
+                -95.375269, 
+                43.500322
+              ], 
+              [
+                -95.374737, 
+                43.500314
+              ], 
+              [
+                -95.250969, 
+                43.500464
+              ], 
+              [
+                -95.250762, 
+                43.500406
+              ], 
+              [
+                -95.214938, 
+                43.500885
+              ], 
+              [
+                -95.180423, 
+                43.500774
+              ], 
+              [
+                -95.167891, 
+                43.500885
+              ], 
+              [
+                -95.167294, 
+                43.500771
+              ], 
+              [
+                -95.122633, 
+                43.500755
+              ], 
+              [
+                -95.114874, 
+                43.500667
+              ], 
+              [
+                -95.054289, 
+                43.50086
+              ], 
+              [
+                -95.053504, 
+                43.500769
+              ], 
+              [
+                -95.034, 
+                43.500811
+              ], 
+              [
+                -95.014245, 
+                43.500872
+              ], 
+              [
+                -94.99446, 
+                43.500523
+              ], 
+              [
+                -94.974359, 
+                43.500508
+              ], 
+              [
+                -94.954477, 
+                43.500467
+              ], 
+              [
+                -94.934625, 
+                43.50049
+              ], 
+              [
+                -94.914955, 
+                43.50045
+              ], 
+              [
+                -94.914905, 
+                43.50045
+              ], 
+              [
+                -94.914634, 
+                43.50045
+              ], 
+              [
+                -94.914523, 
+                43.50045
+              ], 
+              [
+                -94.887291, 
+                43.500502
+              ], 
+              [
+                -94.874235, 
+                43.500557
+              ], 
+              [
+                -94.872725, 
+                43.500564
+              ], 
+              [
+                -94.860192, 
+                43.500546
+              ], 
+              [
+                -94.857867, 
+                43.500615
+              ], 
+              [
+                -94.854555, 
+                43.500614
+              ], 
+              [
+                -94.615916, 
+                43.500544
+              ], 
+              [
+                -94.565665, 
+                43.50033
+              ], 
+              [
+                -94.560838, 
+                43.500377
+              ], 
+              [
+                -94.47042, 
+                43.50034
+              ], 
+              [
+                -94.447048, 
+                43.500639
+              ], 
+              [
+                -94.442848, 
+                43.500583
+              ], 
+              [
+                -94.442835, 
+                43.500583
+              ], 
+              [
+                -94.390597, 
+                43.500469
+              ], 
+              [
+                -94.377466, 
+                43.500379
+              ], 
+              [
+                -94.247965, 
+                43.500333
+              ], 
+              [
+                -94.10988, 
+                43.500283
+              ], 
+              [
+                -94.108068, 
+                43.5003
+              ], 
+              [
+                -94.094339, 
+                43.500302
+              ], 
+              [
+                -94.092894, 
+                43.500302
+              ], 
+              [
+                -93.970762, 
+                43.499605
+              ], 
+              [
+                -93.97076, 
+                43.499605
+              ], 
+              [
+                -93.795793, 
+                43.49952
+              ], 
+              [
+                -93.794285, 
+                43.499542
+              ], 
+              [
+                -93.716217, 
+                43.499563
+              ], 
+              [
+                -93.708771, 
+                43.499564
+              ], 
+              [
+                -93.704916, 
+                43.499568
+              ], 
+              [
+                -93.699345, 
+                43.499576
+              ], 
+              [
+                -93.648533, 
+                43.499559
+              ], 
+              [
+                -93.617131, 
+                43.499548
+              ], 
+              [
+                -93.576728, 
+                43.49952
+              ], 
+              [
+                -93.558631, 
+                43.499521
+              ], 
+              [
+                -93.532178, 
+                43.499472
+              ], 
+              [
+                -93.528482, 
+                43.499471
+              ], 
+              [
+                -93.497405, 
+                43.499456
+              ], 
+              [
+                -93.49735, 
+                43.499456
+              ], 
+              [
+                -93.488261, 
+                43.499417
+              ], 
+              [
+                -93.482009, 
+                43.499482
+              ], 
+              [
+                -93.472804, 
+                43.4994
+              ], 
+              [
+                -93.468563, 
+                43.499473
+              ], 
+              [
+                -93.428509, 
+                43.499478
+              ], 
+              [
+                -93.399035, 
+                43.499485
+              ], 
+              [
+                -93.2718, 
+                43.499356
+              ], 
+              [
+                -93.228861, 
+                43.499567
+              ], 
+              [
+                -93.049192, 
+                43.499571
+              ], 
+              [
+                -93.024429, 
+                43.499572
+              ], 
+              [
+                -93.024348, 
+                43.499572
+              ], 
+              [
+                -93.007871, 
+                43.499604
+              ], 
+              [
+                -92.870277, 
+                43.499548
+              ], 
+              [
+                -92.790317, 
+                43.499567
+              ], 
+              [
+                -92.752088, 
+                43.500084
+              ], 
+              [
+                -92.707312, 
+                43.500069
+              ], 
+              [
+                -92.692786, 
+                43.500063
+              ], 
+              [
+                -92.689033, 
+                43.500062
+              ], 
+              [
+                -92.67258, 
+                43.500055
+              ], 
+              [
+                -92.653318, 
+                43.50005
+              ], 
+              [
+                -92.649194, 
+                43.500049
+              ], 
+              [
+                -92.553161, 
+                43.5003
+              ], 
+              [
+                -92.553128, 
+                43.5003
+              ], 
+              [
+                -92.464505, 
+                43.500345
+              ], 
+              [
+                -92.448948, 
+                43.50042
+              ], 
+              [
+                -92.408832, 
+                43.500614
+              ], 
+              [
+                -92.40613, 
+                43.500476
+              ], 
+              [
+                -92.388298, 
+                43.500483
+              ], 
+              [
+                -92.368908, 
+                43.500454
+              ], 
+              [
+                -92.279084, 
+                43.500436
+              ], 
+              [
+                -92.277425, 
+                43.500466
+              ], 
+              [
+                -92.198788, 
+                43.500527
+              ], 
+              [
+                -92.178863, 
+                43.500713
+              ], 
+              [
+                -92.103886, 
+                43.500735
+              ], 
+              [
+                -92.08997, 
+                43.500684
+              ], 
+              [
+                -92.079954, 
+                43.500647
+              ], 
+              [
+                -92.079802, 
+                43.500647
+              ], 
+              [
+                -91.949879, 
+                43.500485
+              ], 
+              [
+                -91.941837, 
+                43.500554
+              ], 
+              [
+                -91.824848, 
+                43.500684
+              ], 
+              [
+                -91.807156, 
+                43.500648
+              ], 
+              [
+                -91.804925, 
+                43.500716
+              ], 
+              [
+                -91.77929, 
+                43.500803
+              ], 
+              [
+                -91.777688, 
+                43.500711
+              ], 
+              [
+                -91.761414, 
+                43.500637
+              ], 
+              [
+                -91.738446, 
+                43.500525
+              ], 
+              [
+                -91.736558, 
+                43.500561
+              ], 
+              [
+                -91.73333, 
+                43.500623
+              ], 
+              [
+                -91.730359, 
+                43.50068
+              ], 
+              [
+                -91.730217, 
+                43.50068
+              ], 
+              [
+                -91.700749, 
+                43.500581
+              ], 
+              [
+                -91.670872, 
+                43.500513
+              ], 
+              [
+                -91.658401, 
+                43.500533
+              ], 
+              [
+                -91.651396, 
+                43.500454
+              ], 
+              [
+                -91.644924, 
+                43.500529
+              ], 
+              [
+                -91.639772, 
+                43.500573
+              ], 
+              [
+                -91.635626, 
+                43.500463
+              ], 
+              [
+                -91.634495, 
+                43.500439
+              ], 
+              [
+                -91.634244, 
+                43.500479
+              ], 
+              [
+                -91.625611, 
+                43.500727
+              ], 
+              [
+                -91.620785, 
+                43.500677
+              ], 
+              [
+                -91.617407, 
+                43.500687
+              ], 
+              [
+                -91.616895, 
+                43.500663
+              ], 
+              [
+                -91.615293, 
+                43.50055
+              ], 
+              [
+                -91.610895, 
+                43.50053
+              ], 
+              [
+                -91.610832, 
+                43.50053
+              ], 
+              [
+                -91.591073, 
+                43.500536
+              ], 
+              [
+                -91.551021, 
+                43.500539
+              ], 
+              [
+                -91.54122, 
+                43.500515
+              ], 
+              [
+                -91.533806, 
+                43.50056
+              ], 
+              [
+                -91.491042, 
+                43.50069
+              ], 
+              [
+                -91.465063, 
+                43.500608
+              ], 
+              [
+                -91.461403, 
+                43.500642
+              ], 
+              [
+                -91.445932, 
+                43.500588
+              ], 
+              [
+                -91.441786, 
+                43.500438
+              ], 
+              [
+                -91.37695, 
+                43.500482
+              ], 
+              [
+                -91.371608, 
+                43.500945
+              ], 
+              [
+                -91.369325, 
+                43.500827
+              ], 
+              [
+                -91.217706, 
+                43.50055
+              ], 
+              [
+                -91.20555, 
+                43.422949
+              ], 
+              [
+                -91.210233, 
+                43.372064
+              ], 
+              [
+                -91.107237, 
+                43.313645
+              ], 
+              [
+                -91.085652, 
+                43.29187
+              ], 
+              [
+                -91.057918, 
+                43.255366
+              ], 
+              [
+                -91.062562, 
+                43.243165
+              ], 
+              [
+                -91.1462, 
+                43.152405
+              ], 
+              [
+                -91.1562, 
+                43.142945
+              ], 
+              [
+                -91.175253, 
+                43.134665
+              ], 
+              [
+                -91.178251, 
+                43.124982
+              ], 
+              [
+                -91.177222, 
+                43.080247
+              ], 
+              [
+                -91.178087, 
+                43.062044
+              ], 
+              [
+                -91.175167, 
+                43.041267
+              ], 
+              [
+                -91.163064, 
+                42.986781
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 34, 
+      "properties": {
+        "CENSUSAREA": 55857.13, 
+        "GEO_ID": "0400000US19", 
+        "ISO": "US-IA", 
+        "LSAD": "", 
+        "NAME": "Iowa", 
+        "NAME_1": "Iowa", 
+        "STATE": "IA"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -89.5391, 
+                36.498201
+              ], 
+              [
+                -89.560344, 
+                36.525436
+              ], 
+              [
+                -89.570071, 
+                36.544387
+              ], 
+              [
+                -89.571509, 
+                36.552569
+              ], 
+              [
+                -89.566817, 
+                36.564216
+              ], 
+              [
+                -89.55264, 
+                36.577178
+              ], 
+              [
+                -89.546113, 
+                36.579989
+              ], 
+              [
+                -89.527583, 
+                36.581147
+              ], 
+              [
+                -89.500076, 
+                36.576305
+              ], 
+              [
+                -89.484836, 
+                36.571821
+              ], 
+              [
+                -89.479093, 
+                36.568206
+              ], 
+              [
+                -89.473341, 
+                36.559918
+              ], 
+              [
+                -89.467761, 
+                36.546847
+              ], 
+              [
+                -89.465445, 
+                36.536163
+              ], 
+              [
+                -89.465888, 
+                36.529946
+              ], 
+              [
+                -89.47246, 
+                36.513741
+              ], 
+              [
+                -89.485106, 
+                36.497692
+              ], 
+              [
+                -89.492537, 
+                36.497775
+              ], 
+              [
+                -89.498036, 
+                36.497887
+              ], 
+              [
+                -89.5391, 
+                36.498201
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -82.60423, 
+                38.247303
+              ], 
+              [
+                -82.644739, 
+                38.165487
+              ], 
+              [
+                -82.636466, 
+                38.13786
+              ], 
+              [
+                -82.621164, 
+                38.123239
+              ], 
+              [
+                -82.602618, 
+                38.11835
+              ], 
+              [
+                -82.600127, 
+                38.117389
+              ], 
+              [
+                -82.547284, 
+                38.061094
+              ], 
+              [
+                -82.539139, 
+                38.039093
+              ], 
+              [
+                -82.519665, 
+                38.008538
+              ], 
+              [
+                -82.509812, 
+                38.001249
+              ], 
+              [
+                -82.487732, 
+                37.99833
+              ], 
+              [
+                -82.465473, 
+                37.98478
+              ], 
+              [
+                -82.464096, 
+                37.982437
+              ], 
+              [
+                -82.464987, 
+                37.976859
+              ], 
+              [
+                -82.4973, 
+                37.945507
+              ], 
+              [
+                -82.497358, 
+                37.945338
+              ], 
+              [
+                -82.500386, 
+                37.936518
+              ], 
+              [
+                -82.474666, 
+                37.910388
+              ], 
+              [
+                -82.417679, 
+                37.870658
+              ], 
+              [
+                -82.400234, 
+                37.851833
+              ], 
+              [
+                -82.329867, 
+                37.775897
+              ], 
+              [
+                -82.319023, 
+                37.758892
+              ], 
+              [
+                -82.326404, 
+                37.740815
+              ], 
+              [
+                -82.325739, 
+                37.735799
+              ], 
+              [
+                -82.307235, 
+                37.707669
+              ], 
+              [
+                -82.297011, 
+                37.687273
+              ], 
+              [
+                -82.25028, 
+                37.657776
+              ], 
+              [
+                -82.21967, 
+                37.643046
+              ], 
+              [
+                -82.141814, 
+                37.595052
+              ], 
+              [
+                -82.125601, 
+                37.579021
+              ], 
+              [
+                -82.125892, 
+                37.574031
+              ], 
+              [
+                -82.116584, 
+                37.559588
+              ], 
+              [
+                -82.048521, 
+                37.531078
+              ], 
+              [
+                -82.008274, 
+                37.533357
+              ], 
+              [
+                -81.999844, 
+                37.542579
+              ], 
+              [
+                -81.998177, 
+                37.543082
+              ], 
+              [
+                -81.968297, 
+                37.537798
+              ], 
+              [
+                -82.291908, 
+                37.311642
+              ], 
+              [
+                -82.305874, 
+                37.3011
+              ], 
+              [
+                -82.310793, 
+                37.297387
+              ], 
+              [
+                -82.350948, 
+                37.267077
+              ], 
+              [
+                -82.510826, 
+                37.218091
+              ], 
+              [
+                -82.553549, 
+                37.200867
+              ], 
+              [
+                -82.565329, 
+                37.196118
+              ], 
+              [
+                -82.565375, 
+                37.196092
+              ], 
+              [
+                -82.624878, 
+                37.162932
+              ], 
+              [
+                -82.721941, 
+                37.105689
+              ], 
+              [
+                -82.720597, 
+                37.081833
+              ], 
+              [
+                -82.722472, 
+                37.045101
+              ], 
+              [
+                -82.771795, 
+                37.015716
+              ], 
+              [
+                -82.777368, 
+                37.015279
+              ], 
+              [
+                -82.788897, 
+                37.00816
+              ], 
+              [
+                -82.789092, 
+                37.007995
+              ], 
+              [
+                -82.790462, 
+                37.007263
+              ], 
+              [
+                -82.79089, 
+                37.00676
+              ], 
+              [
+                -82.800531, 
+                37.007944
+              ], 
+              [
+                -82.815748, 
+                37.007196
+              ], 
+              [
+                -82.818006, 
+                37.006161
+              ], 
+              [
+                -82.830588, 
+                37.000945
+              ], 
+              [
+                -82.829125, 
+                36.997541
+              ], 
+              [
+                -82.830802, 
+                36.993445
+              ], 
+              [
+                -82.833843, 
+                36.991973
+              ], 
+              [
+                -82.836008, 
+                36.988837
+              ], 
+              [
+                -82.838549, 
+                36.987027
+              ], 
+              [
+                -82.840051, 
+                36.987113
+              ], 
+              [
+                -82.851397, 
+                36.984497
+              ], 
+              [
+                -82.852614, 
+                36.984963
+              ], 
+              [
+                -82.862926, 
+                36.979975
+              ], 
+              [
+                -82.864909, 
+                36.97901
+              ], 
+              [
+                -82.866019, 
+                36.978272
+              ], 
+              [
+                -82.866689, 
+                36.978052
+              ], 
+              [
+                -82.867535, 
+                36.977518
+              ], 
+              [
+                -82.868455, 
+                36.976481
+              ], 
+              [
+                -82.869183, 
+                36.974183
+              ], 
+              [
+                -82.869183, 
+                36.974182
+              ], 
+              [
+                -82.870274, 
+                36.965993
+              ], 
+              [
+                -82.87023, 
+                36.965498
+              ], 
+              [
+                -82.867358, 
+                36.963182
+              ], 
+              [
+                -82.865404, 
+                36.958084
+              ], 
+              [
+                -82.864211, 
+                36.957983
+              ], 
+              [
+                -82.862866, 
+                36.957765
+              ], 
+              [
+                -82.860534, 
+                36.956015
+              ], 
+              [
+                -82.858443, 
+                36.954036
+              ], 
+              [
+                -82.855705, 
+                36.953808
+              ], 
+              [
+                -82.856099, 
+                36.952471
+              ], 
+              [
+                -82.860633, 
+                36.94584
+              ], 
+              [
+                -82.861282, 
+                36.944848
+              ], 
+              [
+                -82.861684, 
+                36.939316
+              ], 
+              [
+                -82.860537, 
+                36.937439
+              ], 
+              [
+                -82.858784, 
+                36.933065
+              ], 
+              [
+                -82.858461, 
+                36.932717
+              ], 
+              [
+                -82.861943, 
+                36.924236
+              ], 
+              [
+                -82.863468, 
+                36.922308
+              ], 
+              [
+                -82.872136, 
+                36.913456
+              ], 
+              [
+                -82.873777, 
+                36.912299
+              ], 
+              [
+                -82.885618, 
+                36.900415
+              ], 
+              [
+                -82.91169, 
+                36.874248
+              ], 
+              [
+                -82.911824, 
+                36.874243
+              ], 
+              [
+                -82.973395, 
+                36.859097
+              ], 
+              [
+                -83.07259, 
+                36.854589
+              ], 
+              [
+                -83.099792, 
+                36.824889
+              ], 
+              [
+                -83.131694, 
+                36.781488
+              ], 
+              [
+                -83.131245, 
+                36.767105
+              ], 
+              [
+                -83.125655, 
+                36.761407
+              ], 
+              [
+                -83.125728, 
+                36.761276
+              ], 
+              [
+                -83.127833, 
+                36.750828
+              ], 
+              [
+                -83.136395, 
+                36.743088
+              ], 
+              [
+                -83.167396, 
+                36.739187
+              ], 
+              [
+                -83.199698, 
+                36.737487
+              ], 
+              [
+                -83.342804, 
+                36.701286
+              ], 
+              [
+                -83.353613, 
+                36.696699
+              ], 
+              [
+                -83.354606, 
+                36.696153
+              ], 
+              [
+                -83.460808, 
+                36.664885
+              ], 
+              [
+                -83.461013, 
+                36.664916
+              ], 
+              [
+                -83.498011, 
+                36.670485
+              ], 
+              [
+                -83.527212, 
+                36.665984
+              ], 
+              [
+                -83.649513, 
+                36.616683
+              ], 
+              [
+                -83.675413, 
+                36.600814
+              ], 
+              [
+                -83.677114, 
+                36.596582
+              ], 
+              [
+                -83.690714, 
+                36.582581
+              ], 
+              [
+                -83.930669, 
+                36.588249
+              ], 
+              [
+                -83.987612, 
+                36.589595
+              ], 
+              [
+                -83.987842, 
+                36.5896
+              ], 
+              [
+                -84.227295, 
+                36.591685
+              ], 
+              [
+                -84.261333, 
+                36.591981
+              ], 
+              [
+                -84.778455, 
+                36.603222
+              ], 
+              [
+                -84.785341, 
+                36.603372
+              ], 
+              [
+                -84.785399, 
+                36.603374
+              ], 
+              [
+                -84.859759, 
+                36.606428
+              ], 
+              [
+                -84.859738, 
+                36.606495
+              ], 
+              [
+                -84.974888, 
+                36.614327
+              ], 
+              [
+                -85.086415, 
+                36.621913
+              ], 
+              [
+                -85.096128, 
+                36.622483
+              ], 
+              [
+                -85.276284, 
+                36.626511
+              ], 
+              [
+                -85.276289, 
+                36.626511
+              ], 
+              [
+                -85.29599, 
+                36.625488
+              ], 
+              [
+                -85.436418, 
+                36.618194
+              ], 
+              [
+                -85.471338, 
+                36.61638
+              ], 
+              [
+                -85.508605, 
+                36.61502
+              ], 
+              [
+                -85.551483, 
+                36.615727
+              ], 
+              [
+                -85.552017, 
+                36.615782
+              ], 
+              [
+                -85.788613, 
+                36.621845
+              ], 
+              [
+                -85.788645, 
+                36.621846
+              ], 
+              [
+                -85.976421, 
+                36.6284
+              ], 
+              [
+                -86.03277, 
+                36.630367
+              ], 
+              [
+                -86.033139, 
+                36.630413
+              ], 
+              [
+                -86.038366, 
+                36.630804
+              ], 
+              [
+                -86.080666, 
+                36.63394
+              ], 
+              [
+                -86.081944, 
+                36.633848
+              ], 
+              [
+                -86.197573, 
+                36.639363
+              ], 
+              [
+                -86.204859, 
+                36.639741
+              ], 
+              [
+                -86.205468, 
+                36.639783
+              ], 
+              [
+                -86.216183, 
+                36.640527
+              ], 
+              [
+                -86.21641, 
+                36.640595
+              ], 
+              [
+                -86.219081, 
+                36.640824
+              ], 
+              [
+                -86.222151, 
+                36.640891
+              ], 
+              [
+                -86.333051, 
+                36.648778
+              ], 
+              [
+                -86.411387, 
+                36.65055
+              ], 
+              [
+                -86.468497, 
+                36.651841
+              ], 
+              [
+                -86.47219, 
+                36.651763
+              ], 
+              [
+                -86.473413, 
+                36.651676
+              ], 
+              [
+                -86.473497, 
+                36.651671
+              ], 
+              [
+                -86.564143, 
+                36.633472
+              ], 
+              [
+                -86.564252, 
+                36.633522
+              ], 
+              [
+                -86.605042, 
+                36.652125
+              ], 
+              [
+                -86.606394, 
+                36.652107
+              ], 
+              [
+                -86.75892, 
+                36.649018
+              ], 
+              [
+                -86.763295, 
+                36.648907
+              ], 
+              [
+                -86.813037, 
+                36.647647
+              ], 
+              [
+                -86.816186, 
+                36.647722
+              ], 
+              [
+                -86.818405, 
+                36.647639
+              ], 
+              [
+                -86.833155, 
+                36.64721
+              ], 
+              [
+                -86.854268, 
+                36.646884
+              ], 
+              [
+                -86.906023, 
+                36.646302
+              ], 
+              [
+                -86.906583, 
+                36.646255
+              ], 
+              [
+                -87.060843, 
+                36.643412
+              ], 
+              [
+                -87.114976, 
+                36.642414
+              ], 
+              [
+                -87.114983, 
+                36.642414
+              ], 
+              [
+                -87.23053, 
+                36.641895
+              ], 
+              [
+                -87.231037, 
+                36.641888
+              ], 
+              [
+                -87.247655, 
+                36.641841
+              ], 
+              [
+                -87.278398, 
+                36.641718
+              ], 
+              [
+                -87.281506, 
+                36.641761
+              ], 
+              [
+                -87.33598, 
+                36.641543
+              ], 
+              [
+                -87.344131, 
+                36.64151
+              ], 
+              [
+                -87.347796, 
+                36.64144
+              ], 
+              [
+                -87.414309, 
+                36.641047
+              ], 
+              [
+                -87.425009, 
+                36.641047
+              ], 
+              [
+                -87.436509, 
+                36.640747
+              ], 
+              [
+                -87.563052, 
+                36.639113
+              ], 
+              [
+                -87.564928, 
+                36.639113
+              ], 
+              [
+                -87.641146, 
+                36.638036
+              ], 
+              [
+                -87.64115, 
+                36.638036
+              ], 
+              [
+                -87.694186, 
+                36.636838
+              ], 
+              [
+                -87.853204, 
+                36.633247
+              ], 
+              [
+                -87.849567, 
+                36.663701
+              ], 
+              [
+                -88.011792, 
+                36.677025
+              ], 
+              [
+                -88.070532, 
+                36.678118
+              ], 
+              [
+                -88.068208, 
+                36.659747
+              ], 
+              [
+                -88.055604, 
+                36.63571
+              ], 
+              [
+                -88.045127, 
+                36.602939
+              ], 
+              [
+                -88.035625, 
+                36.561736
+              ], 
+              [
+                -88.032489, 
+                36.540662
+              ], 
+              [
+                -88.037822, 
+                36.51385
+              ], 
+              [
+                -88.039481, 
+                36.510408
+              ], 
+              [
+                -88.053205, 
+                36.497129
+              ], 
+              [
+                -88.053292, 
+                36.49713
+              ], 
+              [
+                -88.320794, 
+                36.500432
+              ], 
+              [
+                -88.325895, 
+                36.500483
+              ], 
+              [
+                -88.330799, 
+                36.500531
+              ], 
+              [
+                -88.41636, 
+                36.500756
+              ], 
+              [
+                -88.450161, 
+                36.501101
+              ], 
+              [
+                -88.452543, 
+                36.500872
+              ], 
+              [
+                -88.472564, 
+                36.501028
+              ], 
+              [
+                -88.489075, 
+                36.501068
+              ], 
+              [
+                -88.48921, 
+                36.501068
+              ], 
+              [
+                -88.51192, 
+                36.501457
+              ], 
+              [
+                -88.51227, 
+                36.501506
+              ], 
+              [
+                -88.516346, 
+                36.501431
+              ], 
+              [
+                -88.516427, 
+                36.50143
+              ], 
+              [
+                -88.545192, 
+                36.501814
+              ], 
+              [
+                -88.577283, 
+                36.50194
+              ], 
+              [
+                -88.661133, 
+                36.502243
+              ], 
+              [
+                -88.715255, 
+                36.502662
+              ], 
+              [
+                -88.747523, 
+                36.502834
+              ], 
+              [
+                -88.799594, 
+                36.502757
+              ], 
+              [
+                -88.816765, 
+                36.502815
+              ], 
+              [
+                -88.827012, 
+                36.50285
+              ], 
+              [
+                -88.827301, 
+                36.502852
+              ], 
+              [
+                -88.834626, 
+                36.502914
+              ], 
+              [
+                -88.834866, 
+                36.502911
+              ], 
+              [
+                -88.874725, 
+                36.502446
+              ], 
+              [
+                -88.964471, 
+                36.502191
+              ], 
+              [
+                -89.000063, 
+                36.502633
+              ], 
+              [
+                -89.006825, 
+                36.502684
+              ], 
+              [
+                -89.010439, 
+                36.50271
+              ], 
+              [
+                -89.034649, 
+                36.502964
+              ], 
+              [
+                -89.058871, 
+                36.503157
+              ], 
+              [
+                -89.072118, 
+                36.503249
+              ], 
+              [
+                -89.090146, 
+                36.503392
+              ], 
+              [
+                -89.117537, 
+                36.503603
+              ], 
+              [
+                -89.119805, 
+                36.503647
+              ], 
+              [
+                -89.163224, 
+                36.504522
+              ], 
+              [
+                -89.163429, 
+                36.504526
+              ], 
+              [
+                -89.211409, 
+                36.50563
+              ], 
+              [
+                -89.279091, 
+                36.506511
+              ], 
+              [
+                -89.282298, 
+                36.506782
+              ], 
+              [
+                -89.346053, 
+                36.50321
+              ], 
+              [
+                -89.346056, 
+                36.50321
+              ], 
+              [
+                -89.356593, 
+                36.502195
+              ], 
+              [
+                -89.380085, 
+                36.500416
+              ], 
+              [
+                -89.381792, 
+                36.500062
+              ], 
+              [
+                -89.403913, 
+                36.499141
+              ], 
+              [
+                -89.417293, 
+                36.499033
+              ], 
+              [
+                -89.400581, 
+                36.538337
+              ], 
+              [
+                -89.38814, 
+                36.573416
+              ], 
+              [
+                -89.376367, 
+                36.613868
+              ], 
+              [
+                -89.365548, 
+                36.625059
+              ], 
+              [
+                -89.343753, 
+                36.630991
+              ], 
+              [
+                -89.327578, 
+                36.632127
+              ], 
+              [
+                -89.326731, 
+                36.632186
+              ], 
+              [
+                -89.313405, 
+                36.62012
+              ], 
+              [
+                -89.294637, 
+                36.593729
+              ], 
+              [
+                -89.27171, 
+                36.571387
+              ], 
+              [
+                -89.259994, 
+                36.565149
+              ], 
+              [
+                -89.236542, 
+                36.566824
+              ], 
+              [
+                -89.227319, 
+                36.569375
+              ], 
+              [
+                -89.213563, 
+                36.580119
+              ], 
+              [
+                -89.202607, 
+                36.601576
+              ], 
+              [
+                -89.200902, 
+                36.618177
+              ], 
+              [
+                -89.197654, 
+                36.628936
+              ], 
+              [
+                -89.187749, 
+                36.641115
+              ], 
+              [
+                -89.174741, 
+                36.650416
+              ], 
+              [
+                -89.174733, 
+                36.650476
+              ], 
+              [
+                -89.171882, 
+                36.672526
+              ], 
+              [
+                -89.19948, 
+                36.716045
+              ], 
+              [
+                -89.201047, 
+                36.725772
+              ], 
+              [
+                -89.197808, 
+                36.739412
+              ], 
+              [
+                -89.184523, 
+                36.753638
+              ], 
+              [
+                -89.169106, 
+                36.759473
+              ], 
+              [
+                -89.142313, 
+                36.755369
+              ], 
+              [
+                -89.130399, 
+                36.751702
+              ], 
+              [
+                -89.123548, 
+                36.78522
+              ], 
+              [
+                -89.12353, 
+                36.785309
+              ], 
+              [
+                -89.179229, 
+                36.812915
+              ], 
+              [
+                -89.178574, 
+                36.816554
+              ], 
+              [
+                -89.177177, 
+                36.835779
+              ], 
+              [
+                -89.147674, 
+                36.847148
+              ], 
+              [
+                -89.100766, 
+                36.943973
+              ], 
+              [
+                -89.100794, 
+                36.944006
+              ], 
+              [
+                -89.132685, 
+                36.9822
+              ], 
+              [
+                -89.166447, 
+                37.003337
+              ], 
+              [
+                -89.173595, 
+                37.011409
+              ], 
+              [
+                -89.178975, 
+                37.020928
+              ], 
+              [
+                -89.182509, 
+                37.037275
+              ], 
+              [
+                -89.181369, 
+                37.046305
+              ], 
+              [
+                -89.175725, 
+                37.062069
+              ], 
+              [
+                -89.171881, 
+                37.068184
+              ], 
+              [
+                -89.168087, 
+                37.074218
+              ], 
+              [
+                -89.086526, 
+                37.165602
+              ], 
+              [
+                -89.041263, 
+                37.202881
+              ], 
+              [
+                -89.000968, 
+                37.224401
+              ], 
+              [
+                -88.98326, 
+                37.228685
+              ], 
+              [
+                -88.966831, 
+                37.229891
+              ], 
+              [
+                -88.933399, 
+                37.225007
+              ], 
+              [
+                -88.933385, 
+                37.225005
+              ], 
+              [
+                -88.942111, 
+                37.228811
+              ], 
+              [
+                -88.928021, 
+                37.226281
+              ], 
+              [
+                -88.916934, 
+                37.224291
+              ], 
+              [
+                -88.809206, 
+                37.189235
+              ], 
+              [
+                -88.625889, 
+                37.119458
+              ], 
+              [
+                -88.589207, 
+                37.099655
+              ], 
+              [
+                -88.576718, 
+                37.085852
+              ], 
+              [
+                -88.564152, 
+                37.07844
+              ], 
+              [
+                -88.560032, 
+                37.07601
+              ], 
+              [
+                -88.545403, 
+                37.070003
+              ], 
+              [
+                -88.531576, 
+                37.067192
+              ], 
+              [
+                -88.514356, 
+                37.065231
+              ], 
+              [
+                -88.490297, 
+                37.066669
+              ], 
+              [
+                -88.482856, 
+                37.067114
+              ], 
+              [
+                -88.458948, 
+                37.073796
+              ], 
+              [
+                -88.444605, 
+                37.098601
+              ], 
+              [
+                -88.424403, 
+                37.152428
+              ], 
+              [
+                -88.447764, 
+                37.203527
+              ], 
+              [
+                -88.458763, 
+                37.213536
+              ], 
+              [
+                -88.471753, 
+                37.220155
+              ], 
+              [
+                -88.509328, 
+                37.26213
+              ], 
+              [
+                -88.515939, 
+                37.284043
+              ], 
+              [
+                -88.514661, 
+                37.290948
+              ], 
+              [
+                -88.476592, 
+                37.386875
+              ], 
+              [
+                -88.470224, 
+                37.396255
+              ], 
+              [
+                -88.456, 
+                37.408482
+              ], 
+              [
+                -88.439333, 
+                37.416416
+              ], 
+              [
+                -88.414895, 
+                37.423461
+              ], 
+              [
+                -88.408808, 
+                37.425216
+              ], 
+              [
+                -88.358436, 
+                37.40486
+              ], 
+              [
+                -88.330622, 
+                37.429316
+              ], 
+              [
+                -88.312585, 
+                37.440591
+              ], 
+              [
+                -88.281667, 
+                37.452596
+              ], 
+              [
+                -88.255193, 
+                37.456748
+              ], 
+              [
+                -88.083395, 
+                37.473683
+              ], 
+              [
+                -88.062562, 
+                37.489385
+              ], 
+              [
+                -88.061292, 
+                37.505232
+              ], 
+              [
+                -88.061311, 
+                37.505332
+              ], 
+              [
+                -88.063311, 
+                37.515755
+              ], 
+              [
+                -88.072242, 
+                37.528826
+              ], 
+              [
+                -88.121517, 
+                37.568166
+              ], 
+              [
+                -88.133235, 
+                37.574154
+              ], 
+              [
+                -88.133306, 
+                37.574191
+              ], 
+              [
+                -88.133393, 
+                37.574235
+              ], 
+              [
+                -88.133416, 
+                37.574277
+              ], 
+              [
+                -88.139973, 
+                37.586451
+              ], 
+              [
+                -88.156827, 
+                37.632801
+              ], 
+              [
+                -88.160187, 
+                37.657592
+              ], 
+              [
+                -88.158207, 
+                37.664542
+              ], 
+              [
+                -88.151646, 
+                37.675098
+              ], 
+              [
+                -88.122412, 
+                37.709685
+              ], 
+              [
+                -88.072538, 
+                37.733286
+              ], 
+              [
+                -88.059588, 
+                37.742608
+              ], 
+              [
+                -88.050969, 
+                37.752599
+              ], 
+              [
+                -88.045008, 
+                37.762436
+              ], 
+              [
+                -88.039, 
+                37.775454
+              ], 
+              [
+                -88.02803, 
+                37.799224
+              ], 
+              [
+                -88.017314, 
+                37.801911
+              ], 
+              [
+                -88.004706, 
+                37.800145
+              ], 
+              [
+                -87.976389, 
+                37.788004
+              ], 
+              [
+                -87.970869, 
+                37.783456
+              ], 
+              [
+                -87.943756, 
+                37.776843
+              ], 
+              [
+                -87.90681, 
+                37.807624
+              ], 
+              [
+                -87.903804, 
+                37.817762
+              ], 
+              [
+                -87.907773, 
+                37.837611
+              ], 
+              [
+                -87.910276, 
+                37.843416
+              ], 
+              [
+                -87.914892, 
+                37.849618
+              ], 
+              [
+                -87.927303, 
+                37.858709
+              ], 
+              [
+                -87.936228, 
+                37.867937
+              ], 
+              [
+                -87.940005, 
+                37.875044
+              ], 
+              [
+                -87.940839, 
+                37.883338
+              ], 
+              [
+                -87.940069, 
+                37.88767
+              ], 
+              [
+                -87.936784, 
+                37.892587
+              ], 
+              [
+                -87.927424, 
+                37.902038
+              ], 
+              [
+                -87.904789, 
+                37.924892
+              ], 
+              [
+                -87.898062, 
+                37.927514
+              ], 
+              [
+                -87.883321, 
+                37.926238
+              ], 
+              [
+                -87.87254, 
+                37.920999
+              ], 
+              [
+                -87.865558, 
+                37.915056
+              ], 
+              [
+                -87.857243, 
+                37.900649
+              ], 
+              [
+                -87.841193, 
+                37.882325
+              ], 
+              [
+                -87.830578, 
+                37.876516
+              ], 
+              [
+                -87.7909, 
+                37.875714
+              ], 
+              [
+                -87.783643, 
+                37.877759
+              ], 
+              [
+                -87.76226, 
+                37.890906
+              ], 
+              [
+                -87.700421, 
+                37.900858
+              ], 
+              [
+                -87.684018, 
+                37.903498
+              ], 
+              [
+                -87.67573, 
+                37.90193
+              ], 
+              [
+                -87.666481, 
+                37.895786
+              ], 
+              [
+                -87.662865, 
+                37.885578
+              ], 
+              [
+                -87.681633, 
+                37.855917
+              ], 
+              [
+                -87.6819, 
+                37.84641
+              ], 
+              [
+                -87.679188, 
+                37.836321
+              ], 
+              [
+                -87.670889, 
+                37.828429
+              ], 
+              [
+                -87.645858, 
+                37.825899
+              ], 
+              [
+                -87.615399, 
+                37.831974
+              ], 
+              [
+                -87.606599, 
+                37.838669
+              ], 
+              [
+                -87.591504, 
+                37.856642
+              ], 
+              [
+                -87.588729, 
+                37.860984
+              ], 
+              [
+                -87.588426, 
+                37.868791
+              ], 
+              [
+                -87.591582, 
+                37.887194
+              ], 
+              [
+                -87.597118, 
+                37.892394
+              ], 
+              [
+                -87.620272, 
+                37.906922
+              ], 
+              [
+                -87.626256, 
+                37.916138
+              ], 
+              [
+                -87.62896, 
+                37.926714
+              ], 
+              [
+                -87.601416, 
+                37.972542
+              ], 
+              [
+                -87.592916, 
+                37.975842
+              ], 
+              [
+                -87.585916, 
+                37.975442
+              ], 
+              [
+                -87.581115, 
+                37.973442
+              ], 
+              [
+                -87.574715, 
+                37.967742
+              ], 
+              [
+                -87.573415, 
+                37.962642
+              ], 
+              [
+                -87.574287, 
+                37.954842
+              ], 
+              [
+                -87.57203, 
+                37.947466
+              ], 
+              [
+                -87.559342, 
+                37.931146
+              ], 
+              [
+                -87.550333, 
+                37.92489
+              ], 
+              [
+                -87.511499, 
+                37.906426
+              ], 
+              [
+                -87.451185, 
+                37.941034
+              ], 
+              [
+                -87.450458, 
+                37.941451
+              ], 
+              [
+                -87.436859, 
+                37.944192
+              ], 
+              [
+                -87.418585, 
+                37.944763
+              ], 
+              [
+                -87.402632, 
+                37.942267
+              ], 
+              [
+                -87.380247, 
+                37.935596
+              ], 
+              [
+                -87.302324, 
+                37.898445
+              ], 
+              [
+                -87.269561, 
+                37.877155
+              ], 
+              [
+                -87.26293, 
+                37.872846
+              ], 
+              [
+                -87.20224, 
+                37.843791
+              ], 
+              [
+                -87.132621, 
+                37.791008
+              ], 
+              [
+                -87.128749, 
+                37.785728
+              ], 
+              [
+                -87.119229, 
+                37.782848
+              ], 
+              [
+                -87.111133, 
+                37.782512
+              ], 
+              [
+                -87.090636, 
+                37.787808
+              ], 
+              [
+                -87.077404, 
+                37.796209
+              ], 
+              [
+                -87.067836, 
+                37.806065
+              ], 
+              [
+                -87.057836, 
+                37.827457
+              ], 
+              [
+                -87.043854, 
+                37.870796
+              ], 
+              [
+                -87.043407, 
+                37.87994
+              ], 
+              [
+                -87.046237, 
+                37.889866
+              ], 
+              [
+                -87.042249, 
+                37.898291
+              ], 
+              [
+                -87.033444, 
+                37.906593
+              ], 
+              [
+                -87.010315, 
+                37.919668
+              ], 
+              [
+                -86.978957, 
+                37.9302
+              ], 
+              [
+                -86.97883, 
+                37.930214
+              ], 
+              [
+                -86.919329, 
+                37.936664
+              ], 
+              [
+                -86.902413, 
+                37.946161
+              ], 
+              [
+                -86.884961, 
+                37.964373
+              ], 
+              [
+                -86.85595, 
+                37.987292
+              ], 
+              [
+                -86.823491, 
+                37.998939
+              ], 
+              [
+                -86.815267, 
+                37.998877
+              ], 
+              [
+                -86.814776, 
+                37.998638
+              ], 
+              [
+                -86.794985, 
+                37.988982
+              ], 
+              [
+                -86.787695, 
+                37.971449
+              ], 
+              [
+                -86.770179, 
+                37.940264
+              ], 
+              [
+                -86.75099, 
+                37.912893
+              ], 
+              [
+                -86.740877, 
+                37.902568
+              ], 
+              [
+                -86.73146, 
+                37.89434
+              ], 
+              [
+                -86.72351, 
+                37.892831
+              ], 
+              [
+                -86.718462, 
+                37.893123
+              ], 
+              [
+                -86.709164, 
+                37.89764
+              ], 
+              [
+                -86.660293, 
+                37.865057
+              ], 
+              [
+                -86.655296, 
+                37.842508
+              ], 
+              [
+                -86.655285, 
+                37.842506
+              ], 
+              [
+                -86.648028, 
+                37.841425
+              ], 
+              [
+                -86.634271, 
+                37.843845
+              ], 
+              [
+                -86.604624, 
+                37.858272
+              ], 
+              [
+                -86.525174, 
+                37.968228
+              ], 
+              [
+                -86.524969, 
+                38.027879
+              ], 
+              [
+                -86.521825, 
+                38.038327
+              ], 
+              [
+                -86.517289, 
+                38.042634
+              ], 
+              [
+                -86.51176, 
+                38.044448
+              ], 
+              [
+                -86.490858, 
+                38.045796
+              ], 
+              [
+                -86.490853, 
+                38.045796
+              ], 
+              [
+                -86.466876, 
+                38.046597
+              ], 
+              [
+                -86.452192, 
+                38.05049
+              ], 
+              [
+                -86.438236, 
+                38.060426
+              ], 
+              [
+                -86.432789, 
+                38.067171
+              ], 
+              [
+                -86.430091, 
+                38.078638
+              ], 
+              [
+                -86.426508, 
+                38.081784
+              ], 
+              [
+                -86.398661, 
+                38.106238
+              ], 
+              [
+                -86.332567, 
+                38.130131
+              ], 
+              [
+                -86.326788, 
+                38.134604
+              ], 
+              [
+                -86.323453, 
+                38.139032
+              ], 
+              [
+                -86.314292, 
+                38.14261
+              ], 
+              [
+                -86.309727, 
+                38.144393
+              ], 
+              [
+                -86.283964, 
+                38.143185
+              ], 
+              [
+                -86.271223, 
+                38.130112
+              ], 
+              [
+                -86.278034, 
+                38.102426
+              ], 
+              [
+                -86.27872, 
+                38.089303
+              ], 
+              [
+                -86.273584, 
+                38.067443
+              ], 
+              [
+                -86.266891, 
+                38.057125
+              ], 
+              [
+                -86.220371, 
+                38.027922
+              ], 
+              [
+                -86.178983, 
+                38.011308
+              ], 
+              [
+                -86.172186, 
+                38.00992
+              ], 
+              [
+                -86.029509, 
+                37.99264
+              ], 
+              [
+                -85.998609, 
+                37.997775
+              ], 
+              [
+                -85.951467, 
+                38.005608
+              ], 
+              [
+                -85.947952, 
+                38.007083
+              ], 
+              [
+                -85.941403, 
+                38.009831
+              ], 
+              [
+                -85.930235, 
+                38.018311
+              ], 
+              [
+                -85.922395, 
+                38.028679
+              ], 
+              [
+                -85.911607, 
+                38.06689
+              ], 
+              [
+                -85.906163, 
+                38.08617
+              ], 
+              [
+                -85.904564, 
+                38.10027
+              ], 
+              [
+                -85.905164, 
+                38.11107
+              ], 
+              [
+                -85.909464, 
+                38.14007
+              ], 
+              [
+                -85.908764, 
+                38.161169
+              ], 
+              [
+                -85.89955, 
+                38.180343
+              ], 
+              [
+                -85.897664, 
+                38.184269
+              ], 
+              [
+                -85.829364, 
+                38.276769
+              ], 
+              [
+                -85.823764, 
+                38.280569
+              ], 
+              [
+                -85.816164, 
+                38.282969
+              ], 
+              [
+                -85.791575, 
+                38.288566
+              ], 
+              [
+                -85.791563, 
+                38.288569
+              ], 
+              [
+                -85.780963, 
+                38.288469
+              ], 
+              [
+                -85.773363, 
+                38.286169
+              ], 
+              [
+                -85.765963, 
+                38.280469
+              ], 
+              [
+                -85.766563, 
+                38.27767
+              ], 
+              [
+                -85.761062, 
+                38.27257
+              ], 
+              [
+                -85.750962, 
+                38.26787
+              ], 
+              [
+                -85.744862, 
+                38.26717
+              ], 
+              [
+                -85.683561, 
+                38.295469
+              ], 
+              [
+                -85.675017, 
+                38.301317
+              ], 
+              [
+                -85.653641, 
+                38.327108
+              ], 
+              [
+                -85.638777, 
+                38.361443
+              ], 
+              [
+                -85.638044, 
+                38.38027
+              ], 
+              [
+                -85.638041, 
+                38.380338
+              ], 
+              [
+                -85.632937, 
+                38.395666
+              ], 
+              [
+                -85.620521, 
+                38.423105
+              ], 
+              [
+                -85.607629, 
+                38.439295
+              ], 
+              [
+                -85.462518, 
+                38.512602
+              ], 
+              [
+                -85.433136, 
+                38.523914
+              ], 
+              [
+                -85.432928, 
+                38.524072
+              ], 
+              [
+                -85.423077, 
+                38.531581
+              ], 
+              [
+                -85.417322, 
+                38.540763
+              ], 
+              [
+                -85.4156, 
+                38.546341
+              ], 
+              [
+                -85.415821, 
+                38.563558
+              ], 
+              [
+                -85.427467, 
+                38.586735
+              ], 
+              [
+                -85.439351, 
+                38.610388
+              ], 
+              [
+                -85.456978, 
+                38.689135
+              ], 
+              [
+                -85.452114, 
+                38.709348
+              ], 
+              [
+                -85.434065, 
+                38.729455
+              ], 
+              [
+                -85.422021, 
+                38.734834
+              ], 
+              [
+                -85.410925, 
+                38.73708
+              ], 
+              [
+                -85.333285, 
+                38.74048
+              ], 
+              [
+                -85.289226, 
+                38.74241
+              ], 
+              [
+                -85.275454, 
+                38.741172
+              ], 
+              [
+                -85.258846, 
+                38.737754
+              ], 
+              [
+                -85.246505, 
+                38.731821
+              ], 
+              [
+                -85.226062, 
+                38.705456
+              ], 
+              [
+                -85.213257, 
+                38.695446
+              ], 
+              [
+                -85.201498, 
+                38.691575
+              ], 
+              [
+                -85.189362, 
+                38.687579
+              ], 
+              [
+                -85.172528, 
+                38.688082
+              ], 
+              [
+                -85.156158, 
+                38.692251
+              ], 
+              [
+                -85.13868, 
+                38.699168
+              ], 
+              [
+                -85.106902, 
+                38.720789
+              ], 
+              [
+                -85.100963, 
+                38.7268
+              ], 
+              [
+                -85.024205, 
+                38.763311
+              ], 
+              [
+                -84.995939, 
+                38.776756
+              ], 
+              [
+                -84.984627, 
+                38.779072
+              ], 
+              [
+                -84.973432, 
+                38.778847
+              ], 
+              [
+                -84.944296, 
+                38.775184
+              ], 
+              [
+                -84.844412, 
+                38.787078
+              ], 
+              [
+                -84.81335, 
+                38.79833
+              ], 
+              [
+                -84.791078, 
+                38.855859
+              ], 
+              [
+                -84.785799, 
+                38.869496
+              ], 
+              [
+                -84.785111, 
+                38.879988
+              ], 
+              [
+                -84.789521, 
+                38.884687
+              ], 
+              [
+                -84.813182, 
+                38.930583
+              ], 
+              [
+                -84.849445, 
+                39.000923
+              ], 
+              [
+                -84.878614, 
+                39.030296
+              ], 
+              [
+                -84.889065, 
+                39.04082
+              ], 
+              [
+                -84.897171, 
+                39.052407
+              ], 
+              [
+                -84.897364, 
+                39.057378
+              ], 
+              [
+                -84.888873, 
+                39.066376
+              ], 
+              [
+                -84.831197, 
+                39.10192
+              ], 
+              [
+                -84.820157, 
+                39.10548
+              ], 
+              [
+                -84.78768, 
+                39.115297
+              ], 
+              [
+                -84.766749, 
+                39.138558
+              ], 
+              [
+                -84.754449, 
+                39.146658
+              ], 
+              [
+                -84.744149, 
+                39.147458
+              ], 
+              [
+                -84.732048, 
+                39.144458
+              ], 
+              [
+                -84.718548, 
+                39.137059
+              ], 
+              [
+                -84.689747, 
+                39.104159
+              ], 
+              [
+                -84.684847, 
+                39.100459
+              ], 
+              [
+                -84.632446, 
+                39.07676
+              ], 
+              [
+                -84.623732, 
+                39.074427
+              ], 
+              [
+                -84.620112, 
+                39.073457
+              ], 
+              [
+                -84.603444, 
+                39.073699
+              ], 
+              [
+                -84.510057, 
+                39.093593
+              ], 
+              [
+                -84.509743, 
+                39.09366
+              ], 
+              [
+                -84.506082, 
+                39.095081
+              ], 
+              [
+                -84.502062, 
+                39.096641
+              ], 
+              [
+                -84.493743, 
+                39.10246
+              ], 
+              [
+                -84.432841, 
+                39.094261
+              ], 
+              [
+                -84.326539, 
+                39.027463
+              ], 
+              [
+                -84.319936, 
+                39.022081
+              ], 
+              [
+                -84.31368, 
+                39.016981
+              ], 
+              [
+                -84.304698, 
+                39.006455
+              ], 
+              [
+                -84.234453, 
+                38.893226
+              ], 
+              [
+                -84.232132, 
+                38.880483
+              ], 
+              [
+                -84.232478, 
+                38.874638
+              ], 
+              [
+                -84.233727, 
+                38.853576
+              ], 
+              [
+                -84.231306, 
+                38.830552
+              ], 
+              [
+                -84.229954, 
+                38.82765
+              ], 
+              [
+                -84.2253, 
+                38.817665
+              ], 
+              [
+                -84.212904, 
+                38.805707
+              ], 
+              [
+                -84.205592, 
+                38.802588
+              ], 
+              [
+                -84.071491, 
+                38.770475
+              ], 
+              [
+                -84.052707, 
+                38.770542
+              ], 
+              [
+                -84.044486, 
+                38.770572
+              ], 
+              [
+                -83.978814, 
+                38.787104
+              ], 
+              [
+                -83.962123, 
+                38.787384
+              ], 
+              [
+                -83.943978, 
+                38.783616
+              ], 
+              [
+                -83.903971, 
+                38.76816
+              ], 
+              [
+                -83.903918, 
+                38.76815
+              ], 
+              [
+                -83.870443, 
+                38.761608
+              ], 
+              [
+                -83.859028, 
+                38.756793
+              ], 
+              [
+                -83.85333, 
+                38.752572
+              ], 
+              [
+                -83.777823, 
+                38.674453
+              ], 
+              [
+                -83.773682, 
+                38.661309
+              ], 
+              [
+                -83.769347, 
+                38.65522
+              ], 
+              [
+                -83.762445, 
+                38.652103
+              ], 
+              [
+                -83.706043, 
+                38.637101
+              ], 
+              [
+                -83.679484, 
+                38.630036
+              ], 
+              [
+                -83.663911, 
+                38.62793
+              ], 
+              [
+                -83.655425, 
+                38.629735
+              ], 
+              [
+                -83.649737, 
+                38.632753
+              ], 
+              [
+                -83.646701, 
+                38.637489
+              ], 
+              [
+                -83.642994, 
+                38.643273
+              ], 
+              [
+                -83.636208, 
+                38.670584
+              ], 
+              [
+                -83.626922, 
+                38.679387
+              ], 
+              [
+                -83.615736, 
+                38.684145
+              ], 
+              [
+                -83.574754, 
+                38.692671
+              ], 
+              [
+                -83.533339, 
+                38.702105
+              ], 
+              [
+                -83.520953, 
+                38.703045
+              ], 
+              [
+                -83.512571, 
+                38.701716
+              ], 
+              [
+                -83.369077, 
+                38.659334
+              ], 
+              [
+                -83.333347, 
+                38.641562
+              ], 
+              [
+                -83.324157, 
+                38.633326
+              ], 
+              [
+                -83.320531, 
+                38.622713
+              ], 
+              [
+                -83.2821, 
+                38.602987
+              ], 
+              [
+                -83.265769, 
+                38.605278
+              ], 
+              [
+                -83.156926, 
+                38.620547
+              ], 
+              [
+                -83.142836, 
+                38.625076
+              ], 
+              [
+                -83.135046, 
+                38.631719
+              ], 
+              [
+                -83.127652, 
+                38.642451
+              ], 
+              [
+                -83.030889, 
+                38.72556
+              ], 
+              [
+                -83.030702, 
+                38.72572
+              ], 
+              [
+                -83.011816, 
+                38.730057
+              ], 
+              [
+                -82.979395, 
+                38.725976
+              ], 
+              [
+                -82.968695, 
+                38.728776
+              ], 
+              [
+                -82.943147, 
+                38.74328
+              ], 
+              [
+                -82.923694, 
+                38.750076
+              ], 
+              [
+                -82.894193, 
+                38.756576
+              ], 
+              [
+                -82.889193, 
+                38.756076
+              ], 
+              [
+                -82.879492, 
+                38.751476
+              ], 
+              [
+                -82.875492, 
+                38.747276
+              ], 
+              [
+                -82.874466, 
+                38.745346
+              ], 
+              [
+                -82.871292, 
+                38.739376
+              ], 
+              [
+                -82.869992, 
+                38.730477
+              ], 
+              [
+                -82.870392, 
+                38.722077
+              ], 
+              [
+                -82.873492, 
+                38.710077
+              ], 
+              [
+                -82.869592, 
+                38.678177
+              ], 
+              [
+                -82.853554, 
+                38.610926
+              ], 
+              [
+                -82.847186, 
+                38.595166
+              ], 
+              [
+                -82.839538, 
+                38.586159
+              ], 
+              [
+                -82.820161, 
+                38.572703
+              ], 
+              [
+                -82.816012, 
+                38.570733
+              ], 
+              [
+                -82.800112, 
+                38.563183
+              ], 
+              [
+                -82.789776, 
+                38.559951
+              ], 
+              [
+                -82.730958, 
+                38.559264
+              ], 
+              [
+                -82.724846, 
+                38.5576
+              ], 
+              [
+                -82.696621, 
+                38.542112
+              ], 
+              [
+                -82.690509, 
+                38.536576
+              ], 
+              [
+                -82.665548, 
+                38.505808
+              ], 
+              [
+                -82.665485, 
+                38.505734
+              ], 
+              [
+                -82.593673, 
+                38.421809
+              ], 
+              [
+                -82.596281, 
+                38.417681
+              ], 
+              [
+                -82.597113, 
+                38.412881
+              ], 
+              [
+                -82.595369, 
+                38.382722
+              ], 
+              [
+                -82.595382, 
+                38.382712
+              ], 
+              [
+                -82.593008, 
+                38.375082
+              ], 
+              [
+                -82.571877, 
+                38.315781
+              ], 
+              [
+                -82.574656, 
+                38.263873
+              ], 
+              [
+                -82.578254, 
+                38.254809
+              ], 
+              [
+                -82.584001, 
+                38.246371
+              ], 
+              [
+                -82.59497, 
+                38.245453
+              ], 
+              [
+                -82.60423, 
+                38.247303
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 35, 
+      "properties": {
+        "CENSUSAREA": 39486.338, 
+        "GEO_ID": "0400000US21", 
+        "ISO": "US-KY", 
+        "LSAD": "", 
+        "NAME": "Kentucky", 
+        "NAME_1": "Kentucky", 
+        "STATE": "KY"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -69.307908, 
+                43.773767
+              ], 
+              [
+                -69.306751, 
+                43.775095
+              ], 
+              [
+                -69.302995, 
+                43.774591
+              ], 
+              [
+                -69.300376, 
+                43.772144
+              ], 
+              [
+                -69.300818, 
+                43.768599
+              ], 
+              [
+                -69.314325, 
+                43.756707
+              ], 
+              [
+                -69.322559, 
+                43.755883
+              ], 
+              [
+                -69.323569, 
+                43.758994
+              ], 
+              [
+                -69.321141, 
+                43.765763
+              ], 
+              [
+                -69.313631, 
+                43.772762
+              ], 
+              [
+                -69.307908, 
+                43.773767
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -69.42792, 
+                43.928798
+              ], 
+              [
+                -69.423323, 
+                43.922871
+              ], 
+              [
+                -69.422153, 
+                43.917702
+              ], 
+              [
+                -69.423324, 
+                43.915507
+              ], 
+              [
+                -69.438066, 
+                43.909539
+              ], 
+              [
+                -69.440913, 
+                43.909767
+              ], 
+              [
+                -69.441894, 
+                43.916331
+              ], 
+              [
+                -69.433762, 
+                43.949353
+              ], 
+              [
+                -69.429806, 
+                43.948438
+              ], 
+              [
+                -69.421072, 
+                43.938261
+              ], 
+              [
+                -69.42792, 
+                43.928798
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -67.619761, 
+                44.519754
+              ], 
+              [
+                -67.61541, 
+                44.521973
+              ], 
+              [
+                -67.587738, 
+                44.516196
+              ], 
+              [
+                -67.582113, 
+                44.513459
+              ], 
+              [
+                -67.589259, 
+                44.50084
+              ], 
+              [
+                -67.590627, 
+                44.49415
+              ], 
+              [
+                -67.580288, 
+                44.488068
+              ], 
+              [
+                -67.562651, 
+                44.472104
+              ], 
+              [
+                -67.569189, 
+                44.455531
+              ], 
+              [
+                -67.571774, 
+                44.453403
+              ], 
+              [
+                -67.574206, 
+                44.45173
+              ], 
+              [
+                -67.588346, 
+                44.449754
+              ], 
+              [
+                -67.592755, 
+                44.458572
+              ], 
+              [
+                -67.604919, 
+                44.502056
+              ], 
+              [
+                -67.607199, 
+                44.503576
+              ], 
+              [
+                -67.614954, 
+                44.503576
+              ], 
+              [
+                -67.619211, 
+                44.506009
+              ], 
+              [
+                -67.619761, 
+                44.519754
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -70.119671, 
+                43.748621
+              ], 
+              [
+                -70.113059, 
+                43.74913
+              ], 
+              [
+                -70.097318, 
+                43.757292
+              ], 
+              [
+                -70.094986, 
+                43.753211
+              ], 
+              [
+                -70.100233, 
+                43.742134
+              ], 
+              [
+                -70.107812, 
+                43.734555
+              ], 
+              [
+                -70.109561, 
+                43.730474
+              ], 
+              [
+                -70.108978, 
+                43.722312
+              ], 
+              [
+                -70.124136, 
+                43.70832
+              ], 
+              [
+                -70.129383, 
+                43.70832
+              ], 
+              [
+                -70.138128, 
+                43.718231
+              ], 
+              [
+                -70.138711, 
+                43.727559
+              ], 
+              [
+                -70.127051, 
+                43.742717
+              ], 
+              [
+                -70.119671, 
+                43.748621
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -70.171245, 
+                43.663498
+              ], 
+              [
+                -70.171136, 
+                43.6633
+              ], 
+              [
+                -70.190323, 
+                43.642986
+              ], 
+              [
+                -70.205934, 
+                43.633633
+              ], 
+              [
+                -70.207165, 
+                43.63369
+              ], 
+              [
+                -70.211062, 
+                43.641842
+              ], 
+              [
+                -70.200116, 
+                43.662978
+              ], 
+              [
+                -70.188047, 
+                43.673762
+              ], 
+              [
+                -70.184659, 
+                43.674699
+              ], 
+              [
+                -70.171245, 
+                43.663498
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -70.186213, 
+                43.682655
+              ], 
+              [
+                -70.187536, 
+                43.678669
+              ], 
+              [
+                -70.192574, 
+                43.673139
+              ], 
+              [
+                -70.207341, 
+                43.662562
+              ], 
+              [
+                -70.210825, 
+                43.661695
+              ], 
+              [
+                -70.21313, 
+                43.662973
+              ], 
+              [
+                -70.213948, 
+                43.666161
+              ], 
+              [
+                -70.209627, 
+                43.676308
+              ], 
+              [
+                -70.201893, 
+                43.685483
+              ], 
+              [
+                -70.196535, 
+                43.688784
+              ], 
+              [
+                -70.191041, 
+                43.689071
+              ], 
+              [
+                -70.186213, 
+                43.682655
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -70.163884, 
+                43.692404
+              ], 
+              [
+                -70.156787, 
+                43.694706
+              ], 
+              [
+                -70.146115, 
+                43.701635
+              ], 
+              [
+                -70.135563, 
+                43.700658
+              ], 
+              [
+                -70.154503, 
+                43.680933
+              ], 
+              [
+                -70.168227, 
+                43.675136
+              ], 
+              [
+                -70.170284, 
+                43.675441
+              ], 
+              [
+                -70.173571, 
+                43.683734
+              ], 
+              [
+                -70.171339, 
+                43.687546
+              ], 
+              [
+                -70.163884, 
+                43.692404
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -70.087621, 
+                43.699913
+              ], 
+              [
+                -70.093704, 
+                43.6918
+              ], 
+              [
+                -70.099594, 
+                43.695366
+              ], 
+              [
+                -70.115908, 
+                43.682978
+              ], 
+              [
+                -70.118291, 
+                43.683343
+              ], 
+              [
+                -70.118174, 
+                43.686375
+              ], 
+              [
+                -70.115961, 
+                43.689202
+              ], 
+              [
+                -70.100683, 
+                43.705962
+              ], 
+              [
+                -70.095727, 
+                43.709278
+              ], 
+              [
+                -70.093113, 
+                43.710524
+              ], 
+              [
+                -70.092137, 
+                43.709468
+              ], 
+              [
+                -70.097184, 
+                43.700929
+              ], 
+              [
+                -70.091929, 
+                43.698111
+              ], 
+              [
+                -70.087621, 
+                43.699913
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.880242, 
+                43.863398
+              ], 
+              [
+                -68.882554, 
+                43.848525
+              ], 
+              [
+                -68.876224, 
+                43.836597
+              ], 
+              [
+                -68.886725, 
+                43.822195
+              ], 
+              [
+                -68.898319, 
+                43.820987
+              ], 
+              [
+                -68.899108, 
+                43.821925
+              ], 
+              [
+                -68.893537, 
+                43.831498
+              ], 
+              [
+                -68.8947, 
+                43.84397
+              ], 
+              [
+                -68.898045, 
+                43.849545
+              ], 
+              [
+                -68.903957, 
+                43.848684
+              ], 
+              [
+                -68.908222, 
+                43.849852
+              ], 
+              [
+                -68.902618, 
+                43.868855
+              ], 
+              [
+                -68.889367, 
+                43.87553
+              ], 
+              [
+                -68.880242, 
+                43.863398
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -69.043981, 
+                44.005684
+              ], 
+              [
+                -69.0782, 
+                43.974132
+              ], 
+              [
+                -69.092994, 
+                43.979063
+              ], 
+              [
+                -69.061966, 
+                44.015023
+              ], 
+              [
+                -69.047583, 
+                44.013995
+              ], 
+              [
+                -69.043981, 
+                44.005684
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.618212, 
+                44.012367
+              ], 
+              [
+                -68.635315, 
+                44.018886
+              ], 
+              [
+                -68.64736, 
+                44.0145
+              ], 
+              [
+                -68.651863, 
+                44.009859
+              ], 
+              [
+                -68.652881, 
+                44.003845
+              ], 
+              [
+                -68.657031, 
+                44.003823
+              ], 
+              [
+                -68.659972, 
+                44.016013
+              ], 
+              [
+                -68.659874, 
+                44.022758
+              ], 
+              [
+                -68.657369, 
+                44.024404
+              ], 
+              [
+                -68.650767, 
+                44.039908
+              ], 
+              [
+                -68.654783, 
+                44.059599
+              ], 
+              [
+                -68.661594, 
+                44.075837
+              ], 
+              [
+                -68.627893, 
+                44.088128
+              ], 
+              [
+                -68.62535, 
+                44.092906
+              ], 
+              [
+                -68.6181, 
+                44.096706
+              ], 
+              [
+                -68.609722, 
+                44.094674
+              ], 
+              [
+                -68.602863, 
+                44.08665
+              ], 
+              [
+                -68.589563, 
+                44.075585
+              ], 
+              [
+                -68.585916, 
+                44.075335
+              ], 
+              [
+                -68.584074, 
+                44.070578
+              ], 
+              [
+                -68.588098, 
+                44.06127
+              ], 
+              [
+                -68.590792, 
+                44.058662
+              ], 
+              [
+                -68.601099, 
+                44.058362
+              ], 
+              [
+                -68.611473, 
+                44.025176
+              ], 
+              [
+                -68.610703, 
+                44.013422
+              ], 
+              [
+                -68.615896, 
+                44.009761
+              ], 
+              [
+                -68.618212, 
+                44.012367
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.785601, 
+                44.053503
+              ], 
+              [
+                -68.790595, 
+                44.053832
+              ], 
+              [
+                -68.807315, 
+                44.035796
+              ], 
+              [
+                -68.818441, 
+                44.032046
+              ], 
+              [
+                -68.828465, 
+                44.032118
+              ], 
+              [
+                -68.862845, 
+                44.025037
+              ], 
+              [
+                -68.874139, 
+                44.025359
+              ], 
+              [
+                -68.889717, 
+                44.032516
+              ], 
+              [
+                -68.899997, 
+                44.06696
+              ], 
+              [
+                -68.905098, 
+                44.077344
+              ], 
+              [
+                -68.913406, 
+                44.08519
+              ], 
+              [
+                -68.907812, 
+                44.105518
+              ], 
+              [
+                -68.908984, 
+                44.110001
+              ], 
+              [
+                -68.943105, 
+                44.10973
+              ], 
+              [
+                -68.944597, 
+                44.11284
+              ], 
+              [
+                -68.935327, 
+                44.13038
+              ], 
+              [
+                -68.917286, 
+                44.148239
+              ], 
+              [
+                -68.888597, 
+                44.15955
+              ], 
+              [
+                -68.87868, 
+                44.166612
+              ], 
+              [
+                -68.847249, 
+                44.183017
+              ], 
+              [
+                -68.825067, 
+                44.186338
+              ], 
+              [
+                -68.819156, 
+                44.180462
+              ], 
+              [
+                -68.822206, 
+                44.178815
+              ], 
+              [
+                -68.82284, 
+                44.173693
+              ], 
+              [
+                -68.818423, 
+                44.160978
+              ], 
+              [
+                -68.792221, 
+                44.145998
+              ], 
+              [
+                -68.786886, 
+                44.143961
+              ], 
+              [
+                -68.782375, 
+                44.14531
+              ], 
+              [
+                -68.780693, 
+                44.143274
+              ], 
+              [
+                -68.792065, 
+                44.136759
+              ], 
+              [
+                -68.802162, 
+                44.137857
+              ], 
+              [
+                -68.818039, 
+                44.136852
+              ], 
+              [
+                -68.819659, 
+                44.135434
+              ], 
+              [
+                -68.820515, 
+                44.130198
+              ], 
+              [
+                -68.81953, 
+                44.122056
+              ], 
+              [
+                -68.815562, 
+                44.115836
+              ], 
+              [
+                -68.806832, 
+                44.116339
+              ], 
+              [
+                -68.790525, 
+                44.09292
+              ], 
+              [
+                -68.781772, 
+                44.084274
+              ], 
+              [
+                -68.772639, 
+                44.078439
+              ], 
+              [
+                -68.77029, 
+                44.069566
+              ], 
+              [
+                -68.77965, 
+                44.057754
+              ], 
+              [
+                -68.785601, 
+                44.053503
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.942826, 
+                44.281073
+              ], 
+              [
+                -68.919301, 
+                44.309872
+              ], 
+              [
+                -68.919325, 
+                44.335392
+              ], 
+              [
+                -68.911634, 
+                44.365027
+              ], 
+              [
+                -68.90353, 
+                44.378613
+              ], 
+              [
+                -68.87894, 
+                44.386584
+              ], 
+              [
+                -68.868444, 
+                44.38144
+              ], 
+              [
+                -68.860649, 
+                44.364425
+              ], 
+              [
+                -68.864338, 
+                44.355002
+              ], 
+              [
+                -68.87169, 
+                44.344662
+              ], 
+              [
+                -68.883065, 
+                44.338193
+              ], 
+              [
+                -68.888706, 
+                44.338196
+              ], 
+              [
+                -68.89285, 
+                44.334653
+              ], 
+              [
+                -68.896587, 
+                44.321986
+              ], 
+              [
+                -68.88746, 
+                44.303094
+              ], 
+              [
+                -68.899445, 
+                44.283775
+              ], 
+              [
+                -68.904255, 
+                44.279889
+              ], 
+              [
+                -68.916872, 
+                44.242866
+              ], 
+              [
+                -68.92648, 
+                44.233035
+              ], 
+              [
+                -68.945976, 
+                44.220824
+              ], 
+              [
+                -68.95189, 
+                44.218719
+              ], 
+              [
+                -68.94709, 
+                44.226792
+              ], 
+              [
+                -68.955332, 
+                44.243873
+              ], 
+              [
+                -68.959468, 
+                44.247439
+              ], 
+              [
+                -68.965896, 
+                44.249754
+              ], 
+              [
+                -68.967074, 
+                44.251968
+              ], 
+              [
+                -68.965264, 
+                44.259332
+              ], 
+              [
+                -68.953686, 
+                44.272346
+              ], 
+              [
+                -68.942826, 
+                44.281073
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.499465, 
+                44.12419
+              ], 
+              [
+                -68.492892, 
+                44.116921
+              ], 
+              [
+                -68.491521, 
+                44.109833
+              ], 
+              [
+                -68.502942, 
+                44.099722
+              ], 
+              [
+                -68.51706, 
+                44.10341
+              ], 
+              [
+                -68.518703, 
+                44.113222
+              ], 
+              [
+                -68.511266, 
+                44.125082
+              ], 
+              [
+                -68.506979, 
+                44.127237
+              ], 
+              [
+                -68.499465, 
+                44.12419
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.358388, 
+                44.125082
+              ], 
+              [
+                -68.35301, 
+                44.127884
+              ], 
+              [
+                -68.346724, 
+                44.127749
+              ], 
+              [
+                -68.330716, 
+                44.110598
+              ], 
+              [
+                -68.331032, 
+                44.10758
+              ], 
+              [
+                -68.338012, 
+                44.101473
+              ], 
+              [
+                -68.365176, 
+                44.101464
+              ], 
+              [
+                -68.376593, 
+                44.112207
+              ], 
+              [
+                -68.376591, 
+                44.113762
+              ], 
+              [
+                -68.375382, 
+                44.11646
+              ], 
+              [
+                -68.365514, 
+                44.124079
+              ], 
+              [
+                -68.358388, 
+                44.125082
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.453236, 
+                44.189998
+              ], 
+              [
+                -68.437789, 
+                44.188216
+              ], 
+              [
+                -68.424441, 
+                44.190753
+              ], 
+              [
+                -68.416434, 
+                44.187047
+              ], 
+              [
+                -68.408207, 
+                44.176298
+              ], 
+              [
+                -68.384903, 
+                44.154955
+              ], 
+              [
+                -68.396634, 
+                44.14069
+              ], 
+              [
+                -68.427534, 
+                44.119266
+              ], 
+              [
+                -68.438518, 
+                44.11618
+              ], 
+              [
+                -68.448646, 
+                44.125581
+              ], 
+              [
+                -68.447505, 
+                44.133493
+              ], 
+              [
+                -68.456813, 
+                44.145268
+              ], 
+              [
+                -68.479934, 
+                44.1478
+              ], 
+              [
+                -68.484696, 
+                44.146495
+              ], 
+              [
+                -68.496639, 
+                44.146855
+              ], 
+              [
+                -68.502096, 
+                44.152388
+              ], 
+              [
+                -68.500817, 
+                44.160026
+              ], 
+              [
+                -68.495511, 
+                44.162429
+              ], 
+              [
+                -68.474365, 
+                44.181875
+              ], 
+              [
+                -68.453236, 
+                44.189998
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.680773, 
+                44.279242
+              ], 
+              [
+                -68.675416, 
+                44.279753
+              ], 
+              [
+                -68.668213, 
+                44.276511
+              ], 
+              [
+                -68.658849, 
+                44.268588
+              ], 
+              [
+                -68.623554, 
+                44.255622
+              ], 
+              [
+                -68.611669, 
+                44.244818
+              ], 
+              [
+                -68.605906, 
+                44.230772
+              ], 
+              [
+                -68.612749, 
+                44.207722
+              ], 
+              [
+                -68.624994, 
+                44.197637
+              ], 
+              [
+                -68.625715, 
+                44.194756
+              ], 
+              [
+                -68.619592, 
+                44.189354
+              ], 
+              [
+                -68.618511, 
+                44.186472
+              ], 
+              [
+                -68.618872, 
+                44.18107
+              ], 
+              [
+                -68.643002, 
+                44.15766
+              ], 
+              [
+                -68.652366, 
+                44.153698
+              ], 
+              [
+                -68.670014, 
+                44.151537
+              ], 
+              [
+                -68.671454, 
+                44.138572
+              ], 
+              [
+                -68.675056, 
+                44.137131
+              ], 
+              [
+                -68.681899, 
+                44.138212
+              ], 
+              [
+                -68.686581, 
+                44.147216
+              ], 
+              [
+                -68.692343, 
+                44.153698
+              ], 
+              [
+                -68.700987, 
+                44.15838
+              ], 
+              [
+                -68.709631, 
+                44.158741
+              ], 
+              [
+                -68.713232, 
+                44.160541
+              ], 
+              [
+                -68.716474, 
+                44.162702
+              ], 
+              [
+                -68.720435, 
+                44.169185
+              ], 
+              [
+                -68.718995, 
+                44.183231
+              ], 
+              [
+                -68.715033, 
+                44.191154
+              ], 
+              [
+                -68.714313, 
+                44.20376
+              ], 
+              [
+                -68.721156, 
+                44.212404
+              ], 
+              [
+                -68.722956, 
+                44.219607
+              ], 
+              [
+                -68.722956, 
+                44.223568
+              ], 
+              [
+                -68.718635, 
+                44.228611
+              ], 
+              [
+                -68.711792, 
+                44.228971
+              ], 
+              [
+                -68.700627, 
+                44.234013
+              ], 
+              [
+                -68.694144, 
+                44.248779
+              ], 
+              [
+                -68.680458, 
+                44.262105
+              ], 
+              [
+                -68.677577, 
+                44.268948
+              ], 
+              [
+                -68.677577, 
+                44.275431
+              ], 
+              [
+                -68.680773, 
+                44.279242
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.355279, 
+                44.199096
+              ], 
+              [
+                -68.333227, 
+                44.207308
+              ], 
+              [
+                -68.32423, 
+                44.205732
+              ], 
+              [
+                -68.31606, 
+                44.200244
+              ], 
+              [
+                -68.314789, 
+                44.197157
+              ], 
+              [
+                -68.318476, 
+                44.196608
+              ], 
+              [
+                -68.321178, 
+                44.199032
+              ], 
+              [
+                -68.332639, 
+                44.192131
+              ], 
+              [
+                -68.339029, 
+                44.171839
+              ], 
+              [
+                -68.347416, 
+                44.169459
+              ], 
+              [
+                -68.378872, 
+                44.184222
+              ], 
+              [
+                -68.371235, 
+                44.193003
+              ], 
+              [
+                -68.364469, 
+                44.197534
+              ], 
+              [
+                -68.355279, 
+                44.199096
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.472831, 
+                44.219767
+              ], 
+              [
+                -68.460205, 
+                44.212498
+              ], 
+              [
+                -68.453843, 
+                44.201683
+              ], 
+              [
+                -68.454224, 
+                44.199534
+              ], 
+              [
+                -68.459182, 
+                44.197681
+              ], 
+              [
+                -68.48452, 
+                44.202886
+              ], 
+              [
+                -68.487227, 
+                44.209517
+              ], 
+              [
+                -68.482726, 
+                44.227058
+              ], 
+              [
+                -68.480565, 
+                44.228591
+              ], 
+              [
+                -68.470323, 
+                44.22832
+              ], 
+              [
+                -68.468572, 
+                44.223999
+              ], 
+              [
+                -68.472831, 
+                44.219767
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.792139, 
+                44.237819
+              ], 
+              [
+                -68.769833, 
+                44.222787
+              ], 
+              [
+                -68.769047, 
+                44.213351
+              ], 
+              [
+                -68.780055, 
+                44.203129
+              ], 
+              [
+                -68.789884, 
+                44.203915
+              ], 
+              [
+                -68.801285, 
+                44.208633
+              ], 
+              [
+                -68.809149, 
+                44.212565
+              ], 
+              [
+                -68.815439, 
+                44.214137
+              ], 
+              [
+                -68.822909, 
+                44.216496
+              ], 
+              [
+                -68.829593, 
+                44.21689
+              ], 
+              [
+                -68.837849, 
+                44.227112
+              ], 
+              [
+                -68.839422, 
+                44.236547
+              ], 
+              [
+                -68.833524, 
+                44.240872
+              ], 
+              [
+                -68.827627, 
+                44.242838
+              ], 
+              [
+                -68.825631, 
+                44.242556
+              ], 
+              [
+                -68.792139, 
+                44.237819
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.23638, 
+                44.266254
+              ], 
+              [
+                -68.214641, 
+                44.263156
+              ], 
+              [
+                -68.211329, 
+                44.257074
+              ], 
+              [
+                -68.212474, 
+                44.255405
+              ], 
+              [
+                -68.221383, 
+                44.257254
+              ], 
+              [
+                -68.231469, 
+                44.256016
+              ], 
+              [
+                -68.23713, 
+                44.25343
+              ], 
+              [
+                -68.24031, 
+                44.251622
+              ], 
+              [
+                -68.241545, 
+                44.247543
+              ], 
+              [
+                -68.240806, 
+                44.239723
+              ], 
+              [
+                -68.248913, 
+                44.235443
+              ], 
+              [
+                -68.266669, 
+                44.234033
+              ], 
+              [
+                -68.274427, 
+                44.237099
+              ], 
+              [
+                -68.276857, 
+                44.240794
+              ], 
+              [
+                -68.274719, 
+                44.258675
+              ], 
+              [
+                -68.262128, 
+                44.260774
+              ], 
+              [
+                -68.254153, 
+                44.257836
+              ], 
+              [
+                -68.246598, 
+                44.257836
+              ], 
+              [
+                -68.241142, 
+                44.260354
+              ], 
+              [
+                -68.23638, 
+                44.266254
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -68.498637, 
+                44.369686
+              ], 
+              [
+                -68.478785, 
+                44.319563
+              ], 
+              [
+                -68.489641, 
+                44.313705
+              ], 
+              [
+                -68.515173, 
+                44.324797
+              ], 
+              [
+                -68.530394, 
+                44.333583
+              ], 
+              [
+                -68.528635, 
+                44.344605
+              ], 
+              [
+                -68.520671, 
+                44.358357
+              ], 
+              [
+                -68.52193, 
+                44.367591
+              ], 
+              [
+                -68.518573, 
+                44.381022
+              ], 
+              [
+                -68.512697, 
+                44.384799
+              ], 
+              [
+                -68.50766, 
+                44.385219
+              ], 
+              [
+                -68.501364, 
+                44.382281
+              ], 
+              [
+                -68.498637, 
+                44.369686
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -69.02859, 
+                44.249139
+              ], 
+              [
+                -69.029434, 
+                44.248558
+              ], 
+              [
+                -69.040193, 
+                44.233673
+              ], 
+              [
+                -69.043599, 
+                44.225029
+              ], 
+              [
+                -69.042807, 
+                44.215173
+              ], 
+              [
+                -69.05181, 
+                44.19592
+              ], 
+              [
+                -69.05269, 
+                44.188082
+              ], 
+              [
+                -69.054546, 
+                44.171542
+              ], 
+              [
+                -69.06124, 
+                44.165498
+              ], 
+              [
+                -69.077776, 
+                44.165043
+              ], 
+              [
+                -69.079835, 
+                44.160953
+              ], 
+              [
+                -69.080978, 
+                44.156768
+              ], 
+              [
+                -69.079608, 
+                44.143962
+              ], 
+              [
+                -69.075667, 
+                44.129991
+              ], 
+              [
+                -69.080331, 
+                44.117824
+              ], 
+              [
+                -69.100863, 
+                44.104529
+              ], 
+              [
+                -69.101107, 
+                44.093601
+              ], 
+              [
+                -69.092, 
+                44.085734
+              ], 
+              [
+                -69.089078, 
+                44.085326
+              ], 
+              [
+                -69.076452, 
+                44.090634
+              ], 
+              [
+                -69.056303, 
+                44.095162
+              ], 
+              [
+                -69.050814, 
+                44.094888
+              ], 
+              [
+                -69.043403, 
+                44.092164
+              ], 
+              [
+                -69.031878, 
+                44.079036
+              ], 
+              [
+                -69.048917, 
+                44.062506
+              ], 
+              [
+                -69.050566, 
+                44.063152
+              ], 
+              [
+                -69.050622, 
+                44.068017
+              ], 
+              [
+                -69.056093, 
+                44.06949
+              ], 
+              [
+                -69.064299, 
+                44.069911
+              ], 
+              [
+                -69.067876, 
+                44.067596
+              ], 
+              [
+                -69.079805, 
+                44.055256
+              ], 
+              [
+                -69.073767, 
+                44.046135
+              ], 
+              [
+                -69.081131, 
+                44.041295
+              ], 
+              [
+                -69.094177, 
+                44.038981
+              ], 
+              [
+                -69.113113, 
+                44.028881
+              ], 
+              [
+                -69.125738, 
+                44.019623
+              ], 
+              [
+                -69.128052, 
+                44.017309
+              ], 
+              [
+                -69.124475, 
+                44.007419
+              ], 
+              [
+                -69.128611, 
+                44.005922
+              ], 
+              [
+                -69.148883, 
+                43.998582
+              ], 
+              [
+                -69.162559, 
+                43.999003
+              ], 
+              [
+                -69.170345, 
+                43.995637
+              ], 
+              [
+                -69.193805, 
+                43.975543
+              ], 
+              [
+                -69.197803, 
+                43.967547
+              ], 
+              [
+                -69.193805, 
+                43.959762
+              ], 
+              [
+                -69.19633, 
+                43.950504
+              ], 
+              [
+                -69.203668, 
+                43.941806
+              ], 
+              [
+                -69.214205, 
+                43.935583
+              ], 
+              [
+                -69.237368, 
+                43.931596
+              ], 
+              [
+                -69.24271, 
+                43.925465
+              ], 
+              [
+                -69.259838, 
+                43.921427
+              ], 
+              [
+                -69.265257, 
+                43.933393
+              ], 
+              [
+                -69.267515, 
+                43.943667
+              ], 
+              [
+                -69.280498, 
+                43.95744
+              ], 
+              [
+                -69.282559, 
+                43.958105
+              ], 
+              [
+                -69.283998, 
+                43.958569
+              ], 
+              [
+                -69.288513, 
+                43.957665
+              ], 
+              [
+                -69.307776, 
+                43.943451
+              ], 
+              [
+                -69.31427, 
+                43.942951
+              ], 
+              [
+                -69.319751, 
+                43.94487
+              ], 
+              [
+                -69.305176, 
+                43.956676
+              ], 
+              [
+                -69.304301, 
+                43.962068
+              ], 
+              [
+                -69.321808, 
+                43.969975
+              ], 
+              [
+                -69.331411, 
+                43.974311
+              ], 
+              [
+                -69.351961, 
+                43.974748
+              ], 
+              [
+                -69.366702, 
+                43.964755
+              ], 
+              [
+                -69.375478, 
+                43.964584
+              ], 
+              [
+                -69.388059, 
+                43.96434
+              ], 
+              [
+                -69.398455, 
+                43.971804
+              ], 
+              [
+                -69.416165, 
+                43.977267
+              ], 
+              [
+                -69.42876, 
+                43.957929
+              ], 
+              [
+                -69.431686, 
+                43.964546
+              ], 
+              [
+                -69.436495, 
+                43.966878
+              ], 
+              [
+                -69.441596, 
+                43.964254
+              ], 
+              [
+                -69.45107, 
+                43.941955
+              ], 
+              [
+                -69.459637, 
+                43.903316
+              ], 
+              [
+                -69.483498, 
+                43.88028
+              ], 
+              [
+                -69.486243, 
+                43.869118
+              ], 
+              [
+                -69.50329, 
+                43.837673
+              ], 
+              [
+                -69.514889, 
+                43.831298
+              ], 
+              [
+                -69.516212, 
+                43.837222
+              ], 
+              [
+                -69.513267, 
+                43.84479
+              ], 
+              [
+                -69.520301, 
+                43.868498
+              ], 
+              [
+                -69.524673, 
+                43.875639
+              ], 
+              [
+                -69.543912, 
+                43.881615
+              ], 
+              [
+                -69.54945, 
+                43.880012
+              ], 
+              [
+                -69.550908, 
+                43.877971
+              ], 
+              [
+                -69.550616, 
+                43.872579
+              ], 
+              [
+                -69.545028, 
+                43.861241
+              ], 
+              [
+                -69.552606, 
+                43.841347
+              ], 
+              [
+                -69.558122, 
+                43.84066
+              ], 
+              [
+                -69.568325, 
+                43.844449
+              ], 
+              [
+                -69.572697, 
+                43.844012
+              ], 
+              [
+                -69.575466, 
+                43.841972
+              ], 
+              [
+                -69.578527, 
+                43.823316
+              ], 
+              [
+                -69.588551, 
+                43.81836
+              ], 
+              [
+                -69.604179, 
+                43.813551
+              ], 
+              [
+                -69.605928, 
+                43.814862
+              ], 
+              [
+                -69.604616, 
+                43.825793
+              ], 
+              [
+                -69.598495, 
+                43.825502
+              ], 
+              [
+                -69.592373, 
+                43.830895
+              ], 
+              [
+                -69.589167, 
+                43.851299
+              ], 
+              [
+                -69.594705, 
+                43.858878
+              ], 
+              [
+                -69.604616, 
+                43.858004
+              ], 
+              [
+                -69.613215, 
+                43.845032
+              ], 
+              [
+                -69.613069, 
+                43.837453
+              ], 
+              [
+                -69.61511, 
+                43.831623
+              ], 
+              [
+                -69.621086, 
+                43.826814
+              ], 
+              [
+                -69.630268, 
+                43.837016
+              ], 
+              [
+                -69.629685, 
+                43.843429
+              ], 
+              [
+                -69.634932, 
+                43.845907
+              ], 
+              [
+                -69.649798, 
+                43.836287
+              ], 
+              [
+                -69.65315, 
+                43.817194
+              ], 
+              [
+                -69.650818, 
+                43.803785
+              ], 
+              [
+                -69.653337, 
+                43.79103
+              ], 
+              [
+                -69.664922, 
+                43.791033
+              ], 
+              [
+                -69.685473, 
+                43.816328
+              ], 
+              [
+                -69.685579, 
+                43.820546
+              ], 
+              [
+                -69.692429, 
+                43.824336
+              ], 
+              [
+                -69.697239, 
+                43.825065
+              ], 
+              [
+                -69.697858, 
+                43.824918
+              ], 
+              [
+                -69.705838, 
+                43.823024
+              ], 
+              [
+                -69.714873, 
+                43.810264
+              ], 
+              [
+                -69.717804, 
+                43.801047
+              ], 
+              [
+                -69.717074, 
+                43.792403
+              ], 
+              [
+                -69.719723, 
+                43.786685
+              ], 
+              [
+                -69.752801, 
+                43.75594
+              ], 
+              [
+                -69.761587, 
+                43.757
+              ], 
+              [
+                -69.780097, 
+                43.755397
+              ], 
+              [
+                -69.782429, 
+                43.753794
+              ], 
+              [
+                -69.782283, 
+                43.75117
+              ], 
+              [
+                -69.778494, 
+                43.747089
+              ], 
+              [
+                -69.778348, 
+                43.744612
+              ], 
+              [
+                -69.835323, 
+                43.721125
+              ], 
+              [
+                -69.838689, 
+                43.70514
+              ], 
+              [
+                -69.851297, 
+                43.703581
+              ], 
+              [
+                -69.855081, 
+                43.704746
+              ], 
+              [
+                -69.857927, 
+                43.723915
+              ], 
+              [
+                -69.855595, 
+                43.73266
+              ], 
+              [
+                -69.858947, 
+                43.740531
+              ], 
+              [
+                -69.868673, 
+                43.742701
+              ], 
+              [
+                -69.862155, 
+                43.758962
+              ], 
+              [
+                -69.869732, 
+                43.775656
+              ], 
+              [
+                -69.884066, 
+                43.778035
+              ], 
+              [
+                -69.88739, 
+                43.777052
+              ], 
+              [
+                -69.903164, 
+                43.77239
+              ], 
+              [
+                -69.915593, 
+                43.775112
+              ], 
+              [
+                -69.927011, 
+                43.780174
+              ], 
+              [
+                -69.948539, 
+                43.765948
+              ], 
+              [
+                -69.953246, 
+                43.768806
+              ], 
+              [
+                -69.958056, 
+                43.767786
+              ], 
+              [
+                -69.982574, 
+                43.750801
+              ], 
+              [
+                -69.989131, 
+                43.743227
+              ], 
+              [
+                -69.994479, 
+                43.728451
+              ], 
+              [
+                -69.992396, 
+                43.726852
+              ], 
+              [
+                -69.992615, 
+                43.724793
+              ], 
+              [
+                -70.001645, 
+                43.717666
+              ], 
+              [
+                -70.006954, 
+                43.717065
+              ], 
+              [
+                -70.005205, 
+                43.727559
+              ], 
+              [
+                -70.001125, 
+                43.733389
+              ], 
+              [
+                -69.998793, 
+                43.740385
+              ], 
+              [
+                -70.001708, 
+                43.744466
+              ], 
+              [
+                -70.041351, 
+                43.738053
+              ], 
+              [
+                -70.040768, 
+                43.745049
+              ], 
+              [
+                -70.034355, 
+                43.759041
+              ], 
+              [
+                -70.02561, 
+                43.769534
+              ], 
+              [
+                -70.005205, 
+                43.787607
+              ], 
+              [
+                -69.99821, 
+                43.798684
+              ], 
+              [
+                -69.999376, 
+                43.805097
+              ], 
+              [
+                -70.002874, 
+                43.812093
+              ], 
+              [
+                -70.011035, 
+                43.810927
+              ], 
+              [
+                -70.026193, 
+                43.822587
+              ], 
+              [
+                -70.026193, 
+                43.829
+              ], 
+              [
+                -70.023278, 
+                43.834247
+              ], 
+              [
+                -70.006954, 
+                43.844158
+              ], 
+              [
+                -70.002874, 
+                43.848239
+              ], 
+              [
+                -70.002874, 
+                43.852903
+              ], 
+              [
+                -70.009869, 
+                43.859315
+              ], 
+              [
+                -70.019197, 
+                43.858733
+              ], 
+              [
+                -70.022845, 
+                43.856245
+              ], 
+              [
+                -70.032023, 
+                43.849988
+              ], 
+              [
+                -70.053594, 
+                43.828417
+              ], 
+              [
+                -70.053011, 
+                43.821421
+              ], 
+              [
+                -70.064671, 
+                43.813259
+              ], 
+              [
+                -70.06642, 
+                43.819672
+              ], 
+              [
+                -70.080995, 
+                43.819672
+              ], 
+              [
+                -70.107229, 
+                43.809178
+              ], 
+              [
+                -70.142792, 
+                43.791688
+              ], 
+              [
+                -70.153869, 
+                43.781194
+              ], 
+              [
+                -70.153869, 
+                43.774781
+              ], 
+              [
+                -70.176023, 
+                43.76079
+              ], 
+              [
+                -70.177772, 
+                43.764871
+              ], 
+              [
+                -70.172525, 
+                43.773615
+              ], 
+              [
+                -70.17544, 
+                43.777113
+              ], 
+              [
+                -70.190014, 
+                43.771866
+              ], 
+              [
+                -70.194678, 
+                43.766037
+              ], 
+              [
+                -70.197593, 
+                43.753211
+              ], 
+              [
+                -70.194095, 
+                43.745632
+              ], 
+              [
+                -70.194678, 
+                43.742134
+              ], 
+              [
+                -70.217998, 
+                43.71998
+              ], 
+              [
+                -70.219164, 
+                43.715899
+              ], 
+              [
+                -70.215666, 
+                43.707737
+              ], 
+              [
+                -70.216832, 
+                43.704822
+              ], 
+              [
+                -70.227909, 
+                43.701907
+              ], 
+              [
+                -70.23199, 
+                43.704822
+              ], 
+              [
+                -70.251812, 
+                43.683251
+              ], 
+              [
+                -70.254144, 
+                43.676839
+              ], 
+              [
+                -70.252961, 
+                43.67501
+              ], 
+              [
+                -70.247321, 
+                43.671973
+              ], 
+              [
+                -70.242289, 
+                43.669544
+              ], 
+              [
+                -70.239512, 
+                43.665986
+              ], 
+              [
+                -70.240119, 
+                43.664685
+              ], 
+              [
+                -70.241942, 
+                43.663296
+              ], 
+              [
+                -70.240987, 
+                43.659132
+              ], 
+              [
+                -70.22299, 
+                43.639023
+              ], 
+              [
+                -70.211204, 
+                43.625765
+              ], 
+              [
+                -70.217087, 
+                43.596717
+              ], 
+              [
+                -70.214369, 
+                43.590445
+              ], 
+              [
+                -70.20112, 
+                43.586515
+              ], 
+              [
+                -70.196911, 
+                43.565146
+              ], 
+              [
+                -70.206123, 
+                43.557627
+              ], 
+              [
+                -70.216782, 
+                43.556874
+              ], 
+              [
+                -70.219784, 
+                43.562149
+              ], 
+              [
+                -70.231963, 
+                43.561118
+              ], 
+              [
+                -70.244331, 
+                43.551849
+              ], 
+              [
+                -70.261917, 
+                43.553687
+              ], 
+              [
+                -70.272497, 
+                43.562616
+              ], 
+              [
+                -70.299184, 
+                43.550589
+              ], 
+              [
+                -70.307764, 
+                43.544315
+              ], 
+              [
+                -70.341793, 
+                43.540484
+              ], 
+              [
+                -70.352826, 
+                43.535855
+              ], 
+              [
+                -70.353392, 
+                43.535405
+              ], 
+              [
+                -70.361214, 
+                43.52919
+              ], 
+              [
+                -70.379123, 
+                43.507202
+              ], 
+              [
+                -70.384885, 
+                43.49604
+              ], 
+              [
+                -70.385615, 
+                43.487031
+              ], 
+              [
+                -70.382928, 
+                43.469674
+              ], 
+              [
+                -70.380233, 
+                43.46423
+              ], 
+              [
+                -70.37223, 
+                43.45508
+              ], 
+              [
+                -70.349684, 
+                43.442032
+              ], 
+              [
+                -70.362015, 
+                43.439077
+              ], 
+              [
+                -70.370514, 
+                43.434133
+              ], 
+              [
+                -70.384949, 
+                43.418839
+              ], 
+              [
+                -70.383981, 
+                43.41294
+              ], 
+              [
+                -70.39089, 
+                43.402607
+              ], 
+              [
+                -70.400035, 
+                43.399927
+              ], 
+              [
+                -70.401666, 
+                43.401262
+              ], 
+              [
+                -70.406416, 
+                43.400942
+              ], 
+              [
+                -70.421282, 
+                43.395777
+              ], 
+              [
+                -70.427672, 
+                43.389254
+              ], 
+              [
+                -70.424421, 
+                43.379656
+              ], 
+              [
+                -70.424986, 
+                43.375928
+              ], 
+              [
+                -70.442438, 
+                43.356487
+              ], 
+              [
+                -70.460717, 
+                43.34325
+              ], 
+              [
+                -70.465975, 
+                43.340246
+              ], 
+              [
+                -70.472933, 
+                43.343972
+              ], 
+              [
+                -70.485312, 
+                43.346391
+              ], 
+              [
+                -70.517695, 
+                43.344037
+              ], 
+              [
+                -70.535244, 
+                43.336771
+              ], 
+              [
+                -70.536702, 
+                43.335605
+              ], 
+              [
+                -70.553854, 
+                43.321886
+              ], 
+              [
+                -70.562779, 
+                43.310614
+              ], 
+              [
+                -70.585184, 
+                43.270113
+              ], 
+              [
+                -70.593907, 
+                43.249295
+              ], 
+              [
+                -70.591022, 
+                43.237851
+              ], 
+              [
+                -70.575787, 
+                43.221859
+              ], 
+              [
+                -70.576692, 
+                43.217651
+              ], 
+              [
+                -70.587814, 
+                43.199858
+              ], 
+              [
+                -70.618973, 
+                43.163625
+              ], 
+              [
+                -70.634455, 
+                43.127603
+              ], 
+              [
+                -70.634311, 
+                43.122162
+              ], 
+              [
+                -70.638355, 
+                43.114182
+              ], 
+              [
+                -70.654213, 
+                43.099065
+              ], 
+              [
+                -70.655322, 
+                43.098008
+              ], 
+              [
+                -70.656223, 
+                43.093164
+              ], 
+              [
+                -70.665958, 
+                43.076234
+              ], 
+              [
+                -70.673114, 
+                43.070314
+              ], 
+              [
+                -70.703936, 
+                43.059621
+              ], 
+              [
+                -70.756397, 
+                43.079988
+              ], 
+              [
+                -70.784108, 
+                43.098963
+              ], 
+              [
+                -70.819549, 
+                43.123231
+              ], 
+              [
+                -70.8281, 
+                43.129086
+              ], 
+              [
+                -70.8338, 
+                43.146886
+              ], 
+              [
+                -70.829174, 
+                43.180365
+              ], 
+              [
+                -70.828301, 
+                43.186685
+              ], 
+              [
+                -70.816232, 
+                43.234997
+              ], 
+              [
+                -70.817773, 
+                43.237408
+              ], 
+              [
+                -70.817865, 
+                43.237911
+              ], 
+              [
+                -70.822959, 
+                43.240187
+              ], 
+              [
+                -70.823309, 
+                43.240343
+              ], 
+              [
+                -70.825071, 
+                43.24093
+              ], 
+              [
+                -70.826711, 
+                43.241301
+              ], 
+              [
+                -70.828022, 
+                43.241597
+              ], 
+              [
+                -70.83365, 
+                43.242868
+              ], 
+              [
+                -70.839717, 
+                43.250393
+              ], 
+              [
+                -70.839213, 
+                43.251224
+              ], 
+              [
+                -70.863231, 
+                43.265098
+              ], 
+              [
+                -70.86323, 
+                43.265109
+              ], 
+              [
+                -70.909805, 
+                43.306682
+              ], 
+              [
+                -70.91246, 
+                43.308289
+              ], 
+              [
+                -70.916751, 
+                43.317731
+              ], 
+              [
+                -70.930783, 
+                43.329569
+              ], 
+              [
+                -70.952356, 
+                43.333983
+              ], 
+              [
+                -70.967229, 
+                43.343777
+              ], 
+              [
+                -70.984335, 
+                43.376128
+              ], 
+              [
+                -70.984305, 
+                43.376814
+              ], 
+              [
+                -70.987733, 
+                43.391513
+              ], 
+              [
+                -70.986812, 
+                43.414264
+              ], 
+              [
+                -70.964433, 
+                43.473276
+              ], 
+              [
+                -70.964542, 
+                43.473262
+              ], 
+              [
+                -70.963742, 
+                43.476248
+              ], 
+              [
+                -70.954755, 
+                43.509802
+              ], 
+              [
+                -70.962556, 
+                43.53431
+              ], 
+              [
+                -70.958958, 
+                43.537634
+              ], 
+              [
+                -70.955337, 
+                43.54098
+              ], 
+              [
+                -70.955346, 
+                43.540697
+              ], 
+              [
+                -70.953322, 
+                43.552718
+              ], 
+              [
+                -70.972716, 
+                43.570255
+              ], 
+              [
+                -70.979985, 
+                43.673195
+              ], 
+              [
+                -70.980758, 
+                43.684141
+              ], 
+              [
+                -70.981946, 
+                43.70096
+              ], 
+              [
+                -70.981978, 
+                43.701965
+              ], 
+              [
+                -70.982238, 
+                43.711865
+              ], 
+              [
+                -70.982083, 
+                43.715043
+              ], 
+              [
+                -70.989041, 
+                43.792152
+              ], 
+              [
+                -70.989067, 
+                43.79244
+              ], 
+              [
+                -70.992086, 
+                43.886261
+              ], 
+              [
+                -70.992986, 
+                43.914232
+              ], 
+              [
+                -71.001367, 
+                44.092931
+              ], 
+              [
+                -71.001335, 
+                44.093205
+              ], 
+              [
+                -71.008764, 
+                44.258443
+              ], 
+              [
+                -71.008736, 
+                44.258825
+              ], 
+              [
+                -71.010239, 
+                44.284774
+              ], 
+              [
+                -71.01349, 
+                44.340882
+              ], 
+              [
+                -71.029101, 
+                44.610331
+              ], 
+              [
+                -71.037518, 
+                44.755607
+              ], 
+              [
+                -71.060101, 
+                45.019661
+              ], 
+              [
+                -71.07564, 
+                45.224093
+              ], 
+              [
+                -71.084334, 
+                45.305293
+              ], 
+              [
+                -71.030565, 
+                45.312652
+              ], 
+              [
+                -71.014268, 
+                45.316761
+              ], 
+              [
+                -71.00905, 
+                45.319022
+              ], 
+              [
+                -71.002401, 
+                45.327956
+              ], 
+              [
+                -71.005087, 
+                45.331545
+              ], 
+              [
+                -70.990233, 
+                45.336277
+              ], 
+              [
+                -70.950824, 
+                45.33453
+              ], 
+              [
+                -70.917904, 
+                45.311924
+              ], 
+              [
+                -70.912176, 
+                45.296768
+              ], 
+              [
+                -70.913732, 
+                45.292746
+              ], 
+              [
+                -70.907978, 
+                45.269316
+              ], 
+              [
+                -70.896898, 
+                45.242031
+              ], 
+              [
+                -70.885029, 
+                45.234873
+              ], 
+              [
+                -70.857042, 
+                45.22916
+              ], 
+              [
+                -70.842845, 
+                45.234422
+              ], 
+              [
+                -70.839482, 
+                45.237829
+              ], 
+              [
+                -70.831612, 
+                45.260055
+              ], 
+              [
+                -70.808322, 
+                45.325824
+              ], 
+              [
+                -70.807664, 
+                45.378118
+              ], 
+              [
+                -70.824053, 
+                45.391094
+              ], 
+              [
+                -70.825612, 
+                45.400305
+              ], 
+              [
+                -70.798483, 
+                45.42474
+              ], 
+              [
+                -70.781471, 
+                45.431159
+              ], 
+              [
+                -70.753977, 
+                45.427789
+              ], 
+              [
+                -70.744077, 
+                45.421091
+              ], 
+              [
+                -70.743775, 
+                45.411925
+              ], 
+              [
+                -70.729972, 
+                45.399359
+              ], 
+              [
+                -70.712286, 
+                45.390611
+              ], 
+              [
+                -70.660029, 
+                45.377901
+              ], 
+              [
+                -70.651986, 
+                45.377146
+              ], 
+              [
+                -70.634661, 
+                45.383608
+              ], 
+              [
+                -70.626527, 
+                45.407011
+              ], 
+              [
+                -70.635498, 
+                45.427817
+              ], 
+              [
+                -70.650161, 
+                45.443685
+              ], 
+              [
+                -70.663701, 
+                45.447049
+              ], 
+              [
+                -70.67591, 
+                45.452582
+              ], 
+              [
+                -70.716332, 
+                45.486909
+              ], 
+              [
+                -70.723167, 
+                45.507606
+              ], 
+              [
+                -70.721611, 
+                45.515058
+              ], 
+              [
+                -70.700776, 
+                45.532777
+              ], 
+              [
+                -70.686531, 
+                45.54999
+              ], 
+              [
+                -70.688214, 
+                45.563981
+              ], 
+              [
+                -70.659286, 
+                45.58688
+              ], 
+              [
+                -70.564789, 
+                45.65515
+              ], 
+              [
+                -70.551038, 
+                45.661885
+              ], 
+              [
+                -70.469869, 
+                45.701639
+              ], 
+              [
+                -70.451503, 
+                45.704432
+              ], 
+              [
+                -70.39721, 
+                45.756872
+              ], 
+              [
+                -70.40775, 
+                45.773654
+              ], 
+              [
+                -70.417674, 
+                45.79457
+              ], 
+              [
+                -70.396362, 
+                45.802703
+              ], 
+              [
+                -70.398159, 
+                45.80412
+              ], 
+              [
+                -70.397208, 
+                45.807572
+              ], 
+              [
+                -70.387916, 
+                45.819043
+              ], 
+              [
+                -70.36702, 
+                45.834993
+              ], 
+              [
+                -70.34244, 
+                45.852192
+              ], 
+              [
+                -70.307798, 
+                45.85894
+              ], 
+              [
+                -70.284204, 
+                45.872034
+              ], 
+              [
+                -70.262655, 
+                45.887853
+              ], 
+              [
+                -70.253704, 
+                45.902981
+              ], 
+              [
+                -70.240177, 
+                45.943729
+              ], 
+              [
+                -70.252242, 
+                45.954777
+              ], 
+              [
+                -70.26541, 
+                45.962692
+              ], 
+              [
+                -70.312055, 
+                45.971544
+              ], 
+              [
+                -70.313364, 
+                46.016383
+              ], 
+              [
+                -70.310609, 
+                46.064544
+              ], 
+              [
+                -70.28978, 
+                46.094325
+              ], 
+              [
+                -70.284554, 
+                46.098713
+              ], 
+              [
+                -70.252411, 
+                46.106221
+              ], 
+              [
+                -70.237947, 
+                46.147378
+              ], 
+              [
+                -70.278034, 
+                46.175001
+              ], 
+              [
+                -70.290896, 
+                46.185838
+              ], 
+              [
+                -70.292736, 
+                46.191599
+              ], 
+              [
+                -70.207415, 
+                46.331316
+              ], 
+              [
+                -70.188046, 
+                46.350015
+              ], 
+              [
+                -70.174709, 
+                46.358472
+              ], 
+              [
+                -70.133367, 
+                46.368906
+              ], 
+              [
+                -70.056433, 
+                46.41659
+              ], 
+              [
+                -70.023016, 
+                46.573486
+              ], 
+              [
+                -69.997086, 
+                46.69523
+              ], 
+              [
+                -69.818552, 
+                46.87503
+              ], 
+              [
+                -69.566383, 
+                47.125032
+              ], 
+              [
+                -69.22442, 
+                47.459686
+              ], 
+              [
+                -69.146439, 
+                47.44886
+              ], 
+              [
+                -69.055465, 
+                47.432274
+              ], 
+              [
+                -69.042702, 
+                47.426651
+              ], 
+              [
+                -69.032909, 
+                47.407907
+              ], 
+              [
+                -69.031127, 
+                47.403106
+              ], 
+              [
+                -69.04079, 
+                47.39808
+              ], 
+              [
+                -69.041733, 
+                47.397326
+              ], 
+              [
+                -69.03928, 
+                47.385052
+              ], 
+              [
+                -69.043958, 
+                47.383682
+              ], 
+              [
+                -69.046448, 
+                47.383934
+              ], 
+              [
+                -69.053819, 
+                47.375036
+              ], 
+              [
+                -69.050334, 
+                47.256621
+              ], 
+              [
+                -69.0402, 
+                47.2451
+              ], 
+              [
+                -69.033456, 
+                47.240984
+              ], 
+              [
+                -68.982002, 
+                47.220295
+              ], 
+              [
+                -68.941948, 
+                47.206248
+              ], 
+              [
+                -68.926421, 
+                47.19786
+              ], 
+              [
+                -68.900985, 
+                47.178519
+              ], 
+              [
+                -68.85343, 
+                47.193443
+              ], 
+              [
+                -68.723168, 
+                47.239569
+              ], 
+              [
+                -68.580398, 
+                47.286957
+              ], 
+              [
+                -68.474851, 
+                47.297534
+              ], 
+              [
+                -68.361559, 
+                47.355605
+              ], 
+              [
+                -68.33368, 
+                47.36007
+              ], 
+              [
+                -68.284101, 
+                47.360389
+              ], 
+              [
+                -68.240168, 
+                47.354217
+              ], 
+              [
+                -68.224005, 
+                47.348456
+              ], 
+              [
+                -68.153509, 
+                47.314038
+              ], 
+              [
+                -67.955669, 
+                47.199542
+              ], 
+              [
+                -67.952269, 
+                47.196142
+              ], 
+              [
+                -67.949369, 
+                47.182542
+              ], 
+              [
+                -67.935868, 
+                47.164843
+              ], 
+              [
+                -67.889155, 
+                47.118772
+              ], 
+              [
+                -67.846865, 
+                47.092404
+              ], 
+              [
+                -67.816345, 
+                47.081188
+              ], 
+              [
+                -67.790515, 
+                47.067921
+              ], 
+              [
+                -67.789461, 
+                47.062544
+              ], 
+              [
+                -67.78938, 
+                46.765528
+              ], 
+              [
+                -67.789284, 
+                46.758219
+              ], 
+              [
+                -67.782114, 
+                46.279381
+              ], 
+              [
+                -67.781095, 
+                45.943032
+              ], 
+              [
+                -67.768709, 
+                45.901997
+              ], 
+              [
+                -67.763955, 
+                45.829983
+              ], 
+              [
+                -67.763767, 
+                45.820315
+              ], 
+              [
+                -67.780443, 
+                45.816206
+              ], 
+              [
+                -67.801989, 
+                45.803546
+              ], 
+              [
+                -67.806598, 
+                45.794723
+              ], 
+              [
+                -67.817892, 
+                45.693705
+              ], 
+              [
+                -67.805483, 
+                45.680241
+              ], 
+              [
+                -67.803313, 
+                45.677886
+              ], 
+              [
+                -67.754245, 
+                45.667791
+              ], 
+              [
+                -67.64581, 
+                45.613597
+              ], 
+              [
+                -67.561359, 
+                45.594906
+              ], 
+              [
+                -67.51858, 
+                45.587925
+              ], 
+              [
+                -67.499444, 
+                45.587014
+              ], 
+              [
+                -67.490923, 
+                45.591488
+              ], 
+              [
+                -67.488452, 
+                45.594643
+              ], 
+              [
+                -67.491061, 
+                45.598917
+              ], 
+              [
+                -67.489793, 
+                45.60118
+              ], 
+              [
+                -67.476704, 
+                45.604157
+              ], 
+              [
+                -67.455406, 
+                45.604665
+              ], 
+              [
+                -67.449674, 
+                45.60286
+              ], 
+              [
+                -67.425452, 
+                45.579086
+              ], 
+              [
+                -67.423646, 
+                45.572153
+              ], 
+              [
+                -67.420875, 
+                45.55056
+              ], 
+              [
+                -67.425674, 
+                45.502917
+              ], 
+              [
+                -67.448729, 
+                45.510576
+              ], 
+              [
+                -67.463481, 
+                45.508516
+              ], 
+              [
+                -67.503771, 
+                45.488522
+              ], 
+              [
+                -67.473366, 
+                45.425328
+              ], 
+              [
+                -67.460281, 
+                45.419594
+              ], 
+              [
+                -67.430001, 
+                45.392965
+              ], 
+              [
+                -67.422153, 
+                45.379661
+              ], 
+              [
+                -67.429161, 
+                45.344247
+              ], 
+              [
+                -67.460101, 
+                45.301179
+              ], 
+              [
+                -67.465833, 
+                45.297223
+              ], 
+              [
+                -67.485683, 
+                45.291433
+              ], 
+              [
+                -67.489333, 
+                45.281282
+              ], 
+              [
+                -67.46357, 
+                45.244097
+              ], 
+              [
+                -67.405208, 
+                45.165686
+              ], 
+              [
+                -67.354306, 
+                45.129886
+              ], 
+              [
+                -67.345004, 
+                45.12621
+              ], 
+              [
+                -67.339869, 
+                45.125594
+              ], 
+              [
+                -67.305472, 
+                45.144826
+              ], 
+              [
+                -67.302568, 
+                45.161348
+              ], 
+              [
+                -67.290603, 
+                45.187589
+              ], 
+              [
+                -67.283619, 
+                45.192022
+              ], 
+              [
+                -67.271076, 
+                45.191081
+              ], 
+              [
+                -67.161247, 
+                45.162879
+              ], 
+              [
+                -67.128935, 
+                45.132168
+              ], 
+              [
+                -67.112414, 
+                45.112323
+              ], 
+              [
+                -67.090786, 
+                45.068721
+              ], 
+              [
+                -67.105899, 
+                45.065786
+              ], 
+              [
+                -67.117688, 
+                45.05673
+              ], 
+              [
+                -67.099749, 
+                45.04501
+              ], 
+              [
+                -67.082074, 
+                45.029608
+              ], 
+              [
+                -67.074914, 
+                45.019254
+              ], 
+              [
+                -67.072753, 
+                45.008329
+              ], 
+              [
+                -67.068274, 
+                45.001014
+              ], 
+              [
+                -67.05461, 
+                44.986764
+              ], 
+              [
+                -67.038299, 
+                44.945433
+              ], 
+              [
+                -67.033474, 
+                44.939923
+              ], 
+              [
+                -67.002118, 
+                44.918836
+              ], 
+              [
+                -66.990937, 
+                44.917835
+              ], 
+              [
+                -66.984466, 
+                44.912557
+              ], 
+              [
+                -66.983558, 
+                44.903277
+              ], 
+              [
+                -66.985901, 
+                44.89715
+              ], 
+              [
+                -66.989235, 
+                44.89648
+              ], 
+              [
+                -66.990351, 
+                44.882551
+              ], 
+              [
+                -66.981008, 
+                44.862813
+              ], 
+              [
+                -66.978142, 
+                44.856963
+              ], 
+              [
+                -66.99296, 
+                44.849181
+              ], 
+              [
+                -66.996523, 
+                44.844654
+              ], 
+              [
+                -66.986318, 
+                44.820657
+              ], 
+              [
+                -66.975009, 
+                44.815495
+              ], 
+              [
+                -66.966468, 
+                44.819063
+              ], 
+              [
+                -66.952112, 
+                44.82007
+              ], 
+              [
+                -66.949895, 
+                44.817419
+              ], 
+              [
+                -66.950569, 
+                44.814539
+              ], 
+              [
+                -66.961068, 
+                44.807269
+              ], 
+              [
+                -66.970026, 
+                44.805713
+              ], 
+              [
+                -66.97626, 
+                44.808315
+              ], 
+              [
+                -66.979708, 
+                44.80736
+              ], 
+              [
+                -66.989351, 
+                44.79878
+              ], 
+              [
+                -66.995154, 
+                44.791073
+              ], 
+              [
+                -67.01995, 
+                44.771427
+              ], 
+              [
+                -67.02615, 
+                44.768199
+              ], 
+              [
+                -67.04335, 
+                44.765071
+              ], 
+              [
+                -67.05516, 
+                44.771442
+              ], 
+              [
+                -67.062239, 
+                44.769543
+              ], 
+              [
+                -67.063308, 
+                44.758238
+              ], 
+              [
+                -67.073439, 
+                44.741957
+              ], 
+              [
+                -67.083477, 
+                44.739899
+              ], 
+              [
+                -67.092542, 
+                44.742693
+              ], 
+              [
+                -67.098931, 
+                44.741311
+              ], 
+              [
+                -67.103957, 
+                44.717444
+              ], 
+              [
+                -67.128792, 
+                44.695421
+              ], 
+              [
+                -67.139209, 
+                44.693849
+              ], 
+              [
+                -67.148061, 
+                44.684114
+              ], 
+              [
+                -67.155119, 
+                44.66944
+              ], 
+              [
+                -67.154479, 
+                44.668114
+              ], 
+              [
+                -67.169857, 
+                44.662105
+              ], 
+              [
+                -67.181785, 
+                44.663699
+              ], 
+              [
+                -67.186612, 
+                44.66265
+              ], 
+              [
+                -67.192068, 
+                44.655515
+              ], 
+              [
+                -67.191438, 
+                44.64775
+              ], 
+              [
+                -67.189427, 
+                44.645533
+              ], 
+              [
+                -67.213025, 
+                44.63922
+              ], 
+              [
+                -67.234275, 
+                44.637201
+              ], 
+              [
+                -67.24726, 
+                44.641664
+              ], 
+              [
+                -67.251247, 
+                44.640825
+              ], 
+              [
+                -67.274122, 
+                44.626345
+              ], 
+              [
+                -67.27706, 
+                44.61795
+              ], 
+              [
+                -67.273076, 
+                44.610873
+              ], 
+              [
+                -67.27916, 
+                44.606782
+              ], 
+              [
+                -67.293403, 
+                44.599265
+              ], 
+              [
+                -67.302427, 
+                44.597323
+              ], 
+              [
+                -67.314938, 
+                44.598215
+              ], 
+              [
+                -67.32297, 
+                44.609394
+              ], 
+              [
+                -67.322491, 
+                44.612458
+              ], 
+              [
+                -67.310745, 
+                44.613212
+              ], 
+              [
+                -67.293665, 
+                44.634316
+              ], 
+              [
+                -67.292462, 
+                44.648455
+              ], 
+              [
+                -67.298449, 
+                44.654377
+              ], 
+              [
+                -67.309627, 
+                44.659316
+              ], 
+              [
+                -67.307909, 
+                44.691295
+              ], 
+              [
+                -67.300144, 
+                44.696752
+              ], 
+              [
+                -67.299176, 
+                44.705705
+              ], 
+              [
+                -67.308538, 
+                44.707454
+              ], 
+              [
+                -67.347782, 
+                44.69948
+              ], 
+              [
+                -67.355966, 
+                44.69906
+              ], 
+              [
+                -67.376742, 
+                44.681852
+              ], 
+              [
+                -67.381149, 
+                44.66947
+              ], 
+              [
+                -67.37905, 
+                44.665483
+              ], 
+              [
+                -67.374014, 
+                44.662965
+              ], 
+              [
+                -67.367298, 
+                44.652472
+              ], 
+              [
+                -67.363158, 
+                44.631825
+              ], 
+              [
+                -67.368269, 
+                44.624672
+              ], 
+              [
+                -67.377554, 
+                44.619757
+              ], 
+              [
+                -67.386605, 
+                44.626974
+              ], 
+              [
+                -67.388704, 
+                44.626554
+              ], 
+              [
+                -67.395839, 
+                44.612914
+              ], 
+              [
+                -67.398987, 
+                44.602631
+              ], 
+              [
+                -67.405492, 
+                44.594236
+              ], 
+              [
+                -67.411815, 
+                44.596954
+              ], 
+              [
+                -67.418923, 
+                44.60347
+              ], 
+              [
+                -67.420602, 
+                44.607877
+              ], 
+              [
+                -67.428367, 
+                44.609136
+              ], 
+              [
+                -67.443686, 
+                44.605779
+              ], 
+              [
+                -67.447464, 
+                44.60326
+              ], 
+              [
+                -67.448513, 
+                44.600322
+              ], 
+              [
+                -67.457747, 
+                44.598014
+              ], 
+              [
+                -67.492373, 
+                44.61795
+              ], 
+              [
+                -67.493632, 
+                44.628863
+              ], 
+              [
+                -67.505804, 
+                44.636837
+              ], 
+              [
+                -67.522802, 
+                44.63306
+              ], 
+              [
+                -67.524061, 
+                44.626554
+              ], 
+              [
+                -67.530777, 
+                44.621938
+              ], 
+              [
+                -67.533925, 
+                44.621518
+              ], 
+              [
+                -67.54022, 
+                44.626345
+              ], 
+              [
+                -67.543368, 
+                44.626554
+              ], 
+              [
+                -67.551133, 
+                44.621938
+              ], 
+              [
+                -67.552392, 
+                44.619629
+              ], 
+              [
+                -67.575056, 
+                44.560659
+              ], 
+              [
+                -67.569836, 
+                44.556788
+              ], 
+              [
+                -67.562321, 
+                44.539435
+              ], 
+              [
+                -67.568159, 
+                44.531117
+              ], 
+              [
+                -67.648506, 
+                44.525403
+              ], 
+              [
+                -67.653123, 
+                44.525823
+              ], 
+              [
+                -67.656901, 
+                44.535896
+              ], 
+              [
+                -67.660678, 
+                44.537575
+              ], 
+              [
+                -67.685861, 
+                44.537155
+              ], 
+              [
+                -67.696354, 
+                44.533798
+              ], 
+              [
+                -67.702649, 
+                44.527922
+              ], 
+              [
+                -67.698872, 
+                44.51575
+              ], 
+              [
+                -67.703489, 
+                44.504837
+              ], 
+              [
+                -67.71419, 
+                44.495238
+              ], 
+              [
+                -67.722876, 
+                44.498524
+              ], 
+              [
+                -67.733986, 
+                44.496252
+              ], 
+              [
+                -67.743353, 
+                44.497418
+              ], 
+              [
+                -67.742789, 
+                44.506176
+              ], 
+              [
+                -67.740076, 
+                44.508944
+              ], 
+              [
+                -67.742942, 
+                44.526453
+              ], 
+              [
+                -67.753854, 
+                44.543661
+              ], 
+              [
+                -67.758891, 
+                44.546599
+              ], 
+              [
+                -67.767285, 
+                44.548278
+              ], 
+              [
+                -67.774001, 
+                44.547438
+              ], 
+              [
+                -67.779457, 
+                44.543661
+              ], 
+              [
+                -67.781975, 
+                44.534008
+              ], 
+              [
+                -67.781556, 
+                44.520577
+              ], 
+              [
+                -67.79726, 
+                44.520685
+              ], 
+              [
+                -67.802541, 
+                44.523934
+              ], 
+              [
+                -67.805479, 
+                44.52981
+              ], 
+              [
+                -67.805479, 
+                44.536946
+              ], 
+              [
+                -67.808837, 
+                44.544081
+              ], 
+              [
+                -67.829823, 
+                44.557512
+              ], 
+              [
+                -67.839896, 
+                44.558771
+              ], 
+              [
+                -67.844513, 
+                44.556252
+              ], 
+              [
+                -67.845772, 
+                44.551636
+              ], 
+              [
+                -67.843254, 
+                44.542822
+              ], 
+              [
+                -67.856684, 
+                44.523934
+              ], 
+              [
+                -67.853746, 
+                44.497492
+              ], 
+              [
+                -67.851228, 
+                44.492456
+              ], 
+              [
+                -67.851648, 
+                44.484901
+              ], 
+              [
+                -67.855579, 
+                44.478676
+              ], 
+              [
+                -67.860994, 
+                44.477576
+              ], 
+              [
+                -67.866801, 
+                44.471812
+              ], 
+              [
+                -67.868774, 
+                44.465272
+              ], 
+              [
+                -67.868875, 
+                44.456881
+              ], 
+              [
+                -67.851764, 
+                44.428695
+              ], 
+              [
+                -67.851697, 
+                44.424282
+              ], 
+              [
+                -67.855108, 
+                44.419434
+              ], 
+              [
+                -67.868856, 
+                44.424672
+              ], 
+              [
+                -67.878509, 
+                44.435585
+              ], 
+              [
+                -67.887323, 
+                44.433066
+              ], 
+              [
+                -67.887323, 
+                44.426351
+              ], 
+              [
+                -67.892033, 
+                44.409668
+              ], 
+              [
+                -67.899571, 
+                44.394078
+              ], 
+              [
+                -67.911667, 
+                44.419216
+              ], 
+              [
+                -67.913346, 
+                44.430128
+              ], 
+              [
+                -67.92132, 
+                44.433066
+              ], 
+              [
+                -67.926357, 
+                44.431807
+              ], 
+              [
+                -67.930554, 
+                44.428869
+              ], 
+              [
+                -67.927616, 
+                44.421314
+              ], 
+              [
+                -67.931453, 
+                44.411848
+              ], 
+              [
+                -67.936531, 
+                44.411187
+              ], 
+              [
+                -67.947342, 
+                44.415858
+              ], 
+              [
+                -67.955737, 
+                44.416278
+              ], 
+              [
+                -67.957089, 
+                44.415408
+              ], 
+              [
+                -67.961613, 
+                44.4125
+              ], 
+              [
+                -67.961613, 
+                44.39907
+              ], 
+              [
+                -67.978876, 
+                44.387034
+              ], 
+              [
+                -67.985668, 
+                44.386917
+              ], 
+              [
+                -67.997288, 
+                44.399909
+              ], 
+              [
+                -68.000646, 
+                44.406624
+              ], 
+              [
+                -68.006102, 
+                44.409562
+              ], 
+              [
+                -68.010719, 
+                44.407464
+              ], 
+              [
+                -68.019533, 
+                44.396971
+              ], 
+              [
+                -68.01399, 
+                44.390255
+              ], 
+              [
+                -68.034223, 
+                44.360456
+              ], 
+              [
+                -68.039679, 
+                44.360876
+              ], 
+              [
+                -68.044296, 
+                44.357938
+              ], 
+              [
+                -68.044716, 
+                44.351222
+              ], 
+              [
+                -68.043037, 
+                44.343667
+              ], 
+              [
+                -68.049334, 
+                44.33073
+              ], 
+              [
+                -68.060356, 
+                44.331988
+              ], 
+              [
+                -68.067047, 
+                44.335692
+              ], 
+              [
+                -68.076066, 
+                44.347925
+              ], 
+              [
+                -68.077873, 
+                44.373047
+              ], 
+              [
+                -68.086268, 
+                44.376405
+              ], 
+              [
+                -68.090045, 
+                44.371369
+              ], 
+              [
+                -68.092983, 
+                44.370949
+              ], 
+              [
+                -68.103818, 
+                44.385111
+              ], 
+              [
+                -68.11229, 
+                44.401588
+              ], 
+              [
+                -68.11271, 
+                44.421314
+              ], 
+              [
+                -68.116487, 
+                44.429289
+              ], 
+              [
+                -68.119845, 
+                44.445658
+              ], 
+              [
+                -68.119425, 
+                44.459508
+              ], 
+              [
+                -68.115228, 
+                44.467903
+              ], 
+              [
+                -68.117746, 
+                44.475038
+              ], 
+              [
+                -68.123203, 
+                44.478815
+              ], 
+              [
+                -68.150904, 
+                44.482383
+              ], 
+              [
+                -68.159298, 
+                44.479445
+              ], 
+              [
+                -68.162656, 
+                44.477346
+              ], 
+              [
+                -68.163075, 
+                44.473149
+              ], 
+              [
+                -68.17105, 
+                44.470211
+              ], 
+              [
+                -68.194554, 
+                44.47189
+              ], 
+              [
+                -68.189517, 
+                44.478605
+              ], 
+              [
+                -68.189937, 
+                44.484901
+              ], 
+              [
+                -68.192036, 
+                44.487419
+              ], 
+              [
+                -68.213861, 
+                44.492456
+              ], 
+              [
+                -68.223934, 
+                44.487
+              ], 
+              [
+                -68.227292, 
+                44.479865
+              ], 
+              [
+                -68.224354, 
+                44.464335
+              ], 
+              [
+                -68.22939, 
+                44.463496
+              ], 
+              [
+                -68.2445, 
+                44.471051
+              ], 
+              [
+                -68.252474, 
+                44.483222
+              ], 
+              [
+                -68.261708, 
+                44.484062
+              ], 
+              [
+                -68.268004, 
+                44.47147
+              ], 
+              [
+                -68.270522, 
+                44.459718
+              ], 
+              [
+                -68.281015, 
+                44.451324
+              ], 
+              [
+                -68.298223, 
+                44.449225
+              ], 
+              [
+                -68.299063, 
+                44.437893
+              ], 
+              [
+                -68.294865, 
+                44.432857
+              ], 
+              [
+                -68.268423, 
+                44.440411
+              ], 
+              [
+                -68.247438, 
+                44.433276
+              ], 
+              [
+                -68.2445, 
+                44.429919
+              ], 
+              [
+                -68.24366, 
+                44.420685
+              ], 
+              [
+                -68.249956, 
+                44.417747
+              ], 
+              [
+                -68.249956, 
+                44.414809
+              ], 
+              [
+                -68.21554, 
+                44.390466
+              ], 
+              [
+                -68.209664, 
+                44.392984
+              ], 
+              [
+                -68.20354, 
+                44.392365
+              ], 
+              [
+                -68.196937, 
+                44.386352
+              ], 
+              [
+                -68.184532, 
+                44.369145
+              ], 
+              [
+                -68.174687, 
+                44.343604
+              ], 
+              [
+                -68.173608, 
+                44.328397
+              ], 
+              [
+                -68.191924, 
+                44.306675
+              ], 
+              [
+                -68.233435, 
+                44.288578
+              ], 
+              [
+                -68.275139, 
+                44.288895
+              ], 
+              [
+                -68.289409, 
+                44.283858
+              ], 
+              [
+                -68.298223, 
+                44.276303
+              ], 
+              [
+                -68.298643, 
+                44.26665
+              ], 
+              [
+                -68.297641, 
+                44.263035
+              ], 
+              [
+                -68.295265, 
+                44.261722
+              ], 
+              [
+                -68.290818, 
+                44.247673
+              ], 
+              [
+                -68.317588, 
+                44.225101
+              ], 
+              [
+                -68.339498, 
+                44.222893
+              ], 
+              [
+                -68.343132, 
+                44.229505
+              ], 
+              [
+                -68.365364, 
+                44.237871
+              ], 
+              [
+                -68.369759, 
+                44.243311
+              ], 
+              [
+                -68.377982, 
+                44.247563
+              ], 
+              [
+                -68.389848, 
+                44.247066
+              ], 
+              [
+                -68.401268, 
+                44.252244
+              ], 
+              [
+                -68.41965, 
+                44.274612
+              ], 
+              [
+                -68.421302, 
+                44.284468
+              ], 
+              [
+                -68.426107, 
+                44.295102
+              ], 
+              [
+                -68.430946, 
+                44.298624
+              ], 
+              [
+                -68.430853, 
+                44.312609
+              ], 
+              [
+                -68.411965, 
+                44.322262
+              ], 
+              [
+                -68.409027, 
+                44.32562
+              ], 
+              [
+                -68.409867, 
+                44.329397
+              ], 
+              [
+                -68.421619, 
+                44.336113
+              ], 
+              [
+                -68.421471, 
+                44.337754
+              ], 
+              [
+                -68.409867, 
+                44.356259
+              ], 
+              [
+                -68.406089, 
+                44.356679
+              ], 
+              [
+                -68.396552, 
+                44.363941
+              ], 
+              [
+                -68.395516, 
+                44.369561
+              ], 
+              [
+                -68.398035, 
+                44.376191
+              ], 
+              [
+                -68.367565, 
+                44.39071
+              ], 
+              [
+                -68.36372, 
+                44.388935
+              ], 
+              [
+                -68.360318, 
+                44.389674
+              ], 
+              [
+                -68.3581, 
+                44.392337
+              ], 
+              [
+                -68.359082, 
+                44.402847
+              ], 
+              [
+                -68.372445, 
+                44.42369
+              ], 
+              [
+                -68.3791, 
+                44.430049
+              ], 
+              [
+                -68.387678, 
+                44.430936
+              ], 
+              [
+                -68.390932, 
+                44.427387
+              ], 
+              [
+                -68.392559, 
+                44.41807
+              ], 
+              [
+                -68.416412, 
+                44.397973
+              ], 
+              [
+                -68.421783, 
+                44.396411
+              ], 
+              [
+                -68.427874, 
+                44.3968
+              ], 
+              [
+                -68.433901, 
+                44.401534
+              ], 
+              [
+                -68.432556, 
+                44.426594
+              ], 
+              [
+                -68.429648, 
+                44.439136
+              ], 
+              [
+                -68.439281, 
+                44.448043
+              ], 
+              [
+                -68.448006, 
+                44.449497
+              ], 
+              [
+                -68.455095, 
+                44.447498
+              ], 
+              [
+                -68.460003, 
+                44.443317
+              ], 
+              [
+                -68.46382, 
+                44.436592
+              ], 
+              [
+                -68.458849, 
+                44.412141
+              ], 
+              [
+                -68.464106, 
+                44.398078
+              ], 
+              [
+                -68.464262, 
+                44.391081
+              ], 
+              [
+                -68.461072, 
+                44.385639
+              ], 
+              [
+                -68.461072, 
+                44.378504
+              ], 
+              [
+                -68.466109, 
+                44.377245
+              ], 
+              [
+                -68.47828, 
+                44.378084
+              ], 
+              [
+                -68.483317, 
+                44.388157
+              ], 
+              [
+                -68.480798, 
+                44.397391
+              ], 
+              [
+                -68.472824, 
+                44.404106
+              ], 
+              [
+                -68.480379, 
+                44.432647
+              ], 
+              [
+                -68.485415, 
+                44.434326
+              ], 
+              [
+                -68.494649, 
+                44.429709
+              ], 
+              [
+                -68.499686, 
+                44.414179
+              ], 
+              [
+                -68.505562, 
+                44.411661
+              ], 
+              [
+                -68.51452, 
+                44.41334
+              ], 
+              [
+                -68.529905, 
+                44.39907
+              ], 
+              [
+                -68.534522, 
+                44.397811
+              ], 
+              [
+                -68.555088, 
+                44.403687
+              ], 
+              [
+                -68.560964, 
+                44.402847
+              ], 
+              [
+                -68.565161, 
+                44.39907
+              ], 
+              [
+                -68.56642, 
+                44.394453
+              ], 
+              [
+                -68.564741, 
+                44.385219
+              ], 
+              [
+                -68.559285, 
+                44.374307
+              ], 
+              [
+                -68.550051, 
+                44.371788
+              ], 
+              [
+                -68.545434, 
+                44.355
+              ], 
+              [
+                -68.553873, 
+                44.346256
+              ], 
+              [
+                -68.563209, 
+                44.333039
+              ], 
+              [
+                -68.566936, 
+                44.317603
+              ], 
+              [
+                -68.566203, 
+                44.313007
+              ], 
+              [
+                -68.564005, 
+                44.308022
+              ], 
+              [
+                -68.556236, 
+                44.300819
+              ], 
+              [
+                -68.538595, 
+                44.299902
+              ], 
+              [
+                -68.531532, 
+                44.290388
+              ], 
+              [
+                -68.532266, 
+                44.28634
+              ], 
+              [
+                -68.528611, 
+                44.276117
+              ], 
+              [
+                -68.519516, 
+                44.265046
+              ], 
+              [
+                -68.519819, 
+                44.260209
+              ], 
+              [
+                -68.529802, 
+                44.249594
+              ], 
+              [
+                -68.528153, 
+                44.241263
+              ], 
+              [
+                -68.52348, 
+                44.235819
+              ], 
+              [
+                -68.525302, 
+                44.227554
+              ], 
+              [
+                -68.534595, 
+                44.229331
+              ], 
+              [
+                -68.550802, 
+                44.236534
+              ], 
+              [
+                -68.551162, 
+                44.238335
+              ], 
+              [
+                -68.562687, 
+                44.248059
+              ], 
+              [
+                -68.572772, 
+                44.252741
+              ], 
+              [
+                -68.603385, 
+                44.27471
+              ], 
+              [
+                -68.61563, 
+                44.275431
+              ], 
+              [
+                -68.626075, 
+                44.280473
+              ], 
+              [
+                -68.627515, 
+                44.284435
+              ], 
+              [
+                -68.630036, 
+                44.286235
+              ], 
+              [
+                -68.682979, 
+                44.299201
+              ], 
+              [
+                -68.725657, 
+                44.321591
+              ], 
+              [
+                -68.733004, 
+                44.328388
+              ], 
+              [
+                -68.746164, 
+                44.331148
+              ], 
+              [
+                -68.762021, 
+                44.329597
+              ], 
+              [
+                -68.766197, 
+                44.327015
+              ], 
+              [
+                -68.771489, 
+                44.320523
+              ], 
+              [
+                -68.795063, 
+                44.30786
+              ], 
+              [
+                -68.827197, 
+                44.31216
+              ], 
+              [
+                -68.828377, 
+                44.316549
+              ], 
+              [
+                -68.825419, 
+                44.334547
+              ], 
+              [
+                -68.821311, 
+                44.349594
+              ], 
+              [
+                -68.817647, 
+                44.353093
+              ], 
+              [
+                -68.814811, 
+                44.362194
+              ], 
+              [
+                -68.818703, 
+                44.375077
+              ], 
+              [
+                -68.821767, 
+                44.40894
+              ], 
+              [
+                -68.815325, 
+                44.42808
+              ], 
+              [
+                -68.801634, 
+                44.434803
+              ], 
+              [
+                -68.785898, 
+                44.462611
+              ], 
+              [
+                -68.783679, 
+                44.473879
+              ], 
+              [
+                -68.796206, 
+                44.471437
+              ], 
+              [
+                -68.810059, 
+                44.468737
+              ], 
+              [
+                -68.829153, 
+                44.462242
+              ], 
+              [
+                -68.858993, 
+                44.444923
+              ], 
+              [
+                -68.880271, 
+                44.428112
+              ], 
+              [
+                -68.886491, 
+                44.430676
+              ], 
+              [
+                -68.890826, 
+                44.437995
+              ], 
+              [
+                -68.8928, 
+                44.443415
+              ], 
+              [
+                -68.892073, 
+                44.445075
+              ], 
+              [
+                -68.897104, 
+                44.450643
+              ], 
+              [
+                -68.900934, 
+                44.452062
+              ], 
+              [
+                -68.927452, 
+                44.448039
+              ], 
+              [
+                -68.931934, 
+                44.43869
+              ], 
+              [
+                -68.946582, 
+                44.429108
+              ], 
+              [
+                -68.982449, 
+                44.426195
+              ], 
+              [
+                -68.990767, 
+                44.415033
+              ], 
+              [
+                -68.984404, 
+                44.396879
+              ], 
+              [
+                -68.978815, 
+                44.38634
+              ], 
+              [
+                -68.9673, 
+                44.381106
+              ], 
+              [
+                -68.961111, 
+                44.375076
+              ], 
+              [
+                -68.948164, 
+                44.355882
+              ], 
+              [
+                -68.954465, 
+                44.32405
+              ], 
+              [
+                -68.958889, 
+                44.314353
+              ], 
+              [
+                -68.979005, 
+                44.296327
+              ], 
+              [
+                -69.003682, 
+                44.294582
+              ], 
+              [
+                -69.005071, 
+                44.274071
+              ], 
+              [
+                -69.017051, 
+                44.257086
+              ], 
+              [
+                -69.02859, 
+                44.249139
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 36, 
+      "properties": {
+        "CENSUSAREA": 30842.923, 
+        "GEO_ID": "0400000US23", 
+        "ISO": "US-ME", 
+        "LSAD": "", 
+        "NAME": "Maine", 
+        "NAME_1": "Maine", 
+        "STATE": "ME"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -70.821001, 
+                41.587268
+              ], 
+              [
+                -70.821743, 
+                41.583656
+              ], 
+              [
+                -70.82191, 
+                41.582841
+              ], 
+              [
+                -70.830087, 
+                41.585385
+              ], 
+              [
+                -70.837632, 
+                41.595374
+              ], 
+              [
+                -70.838147, 
+                41.596056
+              ], 
+              [
+                -70.838452, 
+                41.59646
+              ], 
+              [
+                -70.834529, 
+                41.60261
+              ], 
+              [
+                -70.832044, 
+                41.606504
+              ], 
+              [
+                -70.831802, 
+                41.606272
+              ], 
+              [
+                -70.828025, 
+                41.602666
+              ], 
+              [
+                -70.827398, 
+                41.602067
+              ], 
+              [
+                -70.823735, 
+                41.598569
+              ], 
+              [
+                -70.820918, 
+                41.587673
+              ], 
+              [
+                -70.821001, 
+                41.587268
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -70.59628, 
+                41.471905
+              ], 
+              [
+                -70.57485, 
+                41.468259
+              ], 
+              [
+                -70.567356, 
+                41.471208
+              ], 
+              [
+                -70.56328, 
+                41.469127
+              ], 
+              [
+                -70.553277, 
+                41.452955
+              ], 
+              [
+                -70.552943, 
+                41.443394
+              ], 
+              [
+                -70.555588, 
+                41.430882
+              ], 
+              [
+                -70.553096, 
+                41.423952
+              ], 
+              [
+                -70.547567, 
+                41.415831
+              ], 
+              [
+                -70.538301, 
+                41.409241
+              ], 
+              [
+                -70.528581, 
+                41.4051
+              ], 
+              [
+                -70.517584, 
+                41.403769
+              ], 
+              [
+                -70.506984, 
+                41.400242
+              ], 
+              [
+                -70.502372, 
+                41.392005
+              ], 
+              [
+                -70.501306, 
+                41.385391
+              ], 
+              [
+                -70.498959, 
+                41.384339
+              ], 
+              [
+                -70.490758, 
+                41.383634
+              ], 
+              [
+                -70.484503, 
+                41.38629
+              ], 
+              [
+                -70.472604, 
+                41.399128
+              ], 
+              [
+                -70.473035, 
+                41.408757
+              ], 
+              [
+                -70.470788, 
+                41.412875
+              ], 
+              [
+                -70.463833, 
+                41.419145
+              ], 
+              [
+                -70.450431, 
+                41.420703
+              ], 
+              [
+                -70.446233, 
+                41.39648
+              ], 
+              [
+                -70.449268, 
+                41.380422
+              ], 
+              [
+                -70.448262, 
+                41.353651
+              ], 
+              [
+                -70.451084, 
+                41.348161
+              ], 
+              [
+                -70.496162, 
+                41.346452
+              ], 
+              [
+                -70.538294, 
+                41.348958
+              ], 
+              [
+                -70.599157, 
+                41.349272
+              ], 
+              [
+                -70.709826, 
+                41.341723
+              ], 
+              [
+                -70.733253, 
+                41.336226
+              ], 
+              [
+                -70.747541, 
+                41.329952
+              ], 
+              [
+                -70.764188, 
+                41.318706
+              ], 
+              [
+                -70.768015, 
+                41.311959
+              ], 
+              [
+                -70.766166, 
+                41.308962
+              ], 
+              [
+                -70.768687, 
+                41.303702
+              ], 
+              [
+                -70.775665, 
+                41.300982
+              ], 
+              [
+                -70.802083, 
+                41.314207
+              ], 
+              [
+                -70.819415, 
+                41.327212
+              ], 
+              [
+                -70.838777, 
+                41.347209
+              ], 
+              [
+                -70.833802, 
+                41.353386
+              ], 
+              [
+                -70.812309, 
+                41.355745
+              ], 
+              [
+                -70.800289, 
+                41.3538
+              ], 
+              [
+                -70.783291, 
+                41.347829
+              ], 
+              [
+                -70.774974, 
+                41.349176
+              ], 
+              [
+                -70.768901, 
+                41.353246
+              ], 
+              [
+                -70.729225, 
+                41.397728
+              ], 
+              [
+                -70.724366, 
+                41.398942
+              ], 
+              [
+                -70.712432, 
+                41.40885
+              ], 
+              [
+                -70.711493, 
+                41.41546
+              ], 
+              [
+                -70.701378, 
+                41.430925
+              ], 
+              [
+                -70.686881, 
+                41.441334
+              ], 
+              [
+                -70.64933, 
+                41.461068
+              ], 
+              [
+                -70.603555, 
+                41.482384
+              ], 
+              [
+                -70.598444, 
+                41.481151
+              ], 
+              [
+                -70.59628, 
+                41.471905
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -70.092142, 
+                41.297741
+              ], 
+              [
+                -70.082072, 
+                41.299093
+              ], 
+              [
+                -70.062565, 
+                41.308726
+              ], 
+              [
+                -70.046088, 
+                41.321651
+              ], 
+              [
+                -70.031332, 
+                41.339332
+              ], 
+              [
+                -70.028805, 
+                41.359919
+              ], 
+              [
+                -70.030924, 
+                41.367453
+              ], 
+              [
+                -70.035162, 
+                41.372161
+              ], 
+              [
+                -70.038458, 
+                41.376399
+              ], 
+              [
+                -70.045586, 
+                41.383598
+              ], 
+              [
+                -70.049564, 
+                41.3879
+              ], 
+              [
+                -70.049053, 
+                41.391702
+              ], 
+              [
+                -70.033514, 
+                41.385816
+              ], 
+              [
+                -70.018446, 
+                41.36863
+              ], 
+              [
+                -69.960277, 
+                41.278731
+              ], 
+              [
+                -69.960181, 
+                41.264546
+              ], 
+              [
+                -69.964422, 
+                41.25457
+              ], 
+              [
+                -69.965725, 
+                41.252466
+              ], 
+              [
+                -69.975, 
+                41.247392
+              ], 
+              [
+                -70.001586, 
+                41.239353
+              ], 
+              [
+                -70.015225, 
+                41.237964
+              ], 
+              [
+                -70.052807, 
+                41.242685
+              ], 
+              [
+                -70.083239, 
+                41.2444
+              ], 
+              [
+                -70.096967, 
+                41.24085
+              ], 
+              [
+                -70.118669, 
+                41.242351
+              ], 
+              [
+                -70.170681, 
+                41.255881
+              ], 
+              [
+                -70.237175, 
+                41.282724
+              ], 
+              [
+                -70.256164, 
+                41.288123
+              ], 
+              [
+                -70.266776, 
+                41.294453
+              ], 
+              [
+                -70.273478, 
+                41.301528
+              ], 
+              [
+                -70.275526, 
+                41.310464
+              ], 
+              [
+                -70.260632, 
+                41.310092
+              ], 
+              [
+                -70.249276, 
+                41.305623
+              ], 
+              [
+                -70.244435, 
+                41.303203
+              ], 
+              [
+                -70.240153, 
+                41.295384
+              ], 
+              [
+                -70.229541, 
+                41.290171
+              ], 
+              [
+                -70.20869, 
+                41.290171
+              ], 
+              [
+                -70.196304, 
+                41.294612
+              ], 
+              [
+                -70.12446, 
+                41.293851
+              ], 
+              [
+                -70.092142, 
+                41.297741
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -72.198828, 
+                42.030982
+              ], 
+              [
+                -72.397428, 
+                42.033302
+              ], 
+              [
+                -72.509187, 
+                42.034607
+              ], 
+              [
+                -72.695927, 
+                42.036788
+              ], 
+              [
+                -72.714134, 
+                42.036608
+              ], 
+              [
+                -72.755838, 
+                42.036195
+              ], 
+              [
+                -72.757467, 
+                42.020947
+              ], 
+              [
+                -72.758151, 
+                42.020865
+              ], 
+              [
+                -72.766139, 
+                42.007695
+              ], 
+              [
+                -72.766739, 
+                42.002995
+              ], 
+              [
+                -72.774757, 
+                42.002129
+              ], 
+              [
+                -72.816741, 
+                41.997595
+              ], 
+              [
+                -72.813541, 
+                42.036494
+              ], 
+              [
+                -72.863619, 
+                42.037709
+              ], 
+              [
+                -72.863733, 
+                42.03771
+              ], 
+              [
+                -73.008739, 
+                42.039356
+              ], 
+              [
+                -73.053254, 
+                42.039861
+              ], 
+              [
+                -73.127276, 
+                42.041964
+              ], 
+              [
+                -73.229798, 
+                42.044877
+              ], 
+              [
+                -73.231056, 
+                42.044945
+              ], 
+              [
+                -73.293097, 
+                42.04694
+              ], 
+              [
+                -73.29442, 
+                42.046984
+              ], 
+              [
+                -73.487314, 
+                42.049638
+              ], 
+              [
+                -73.496879, 
+                42.049675
+              ], 
+              [
+                -73.508142, 
+                42.086257
+              ], 
+              [
+                -73.410647, 
+                42.351738
+              ], 
+              [
+                -73.352527, 
+                42.510002
+              ], 
+              [
+                -73.307004, 
+                42.632653
+              ], 
+              [
+                -73.264957, 
+                42.74594
+              ], 
+              [
+                -73.142487, 
+                42.743508
+              ], 
+              [
+                -73.022903, 
+                42.741133
+              ], 
+              [
+                -73.018646, 
+                42.741025
+              ], 
+              [
+                -72.930271, 
+                42.738789
+              ], 
+              [
+                -72.927291, 
+                42.738714
+              ], 
+              [
+                -72.86418, 
+                42.737117
+              ], 
+              [
+                -72.458519, 
+                42.726853
+              ], 
+              [
+                -72.451257, 
+                42.726653
+              ], 
+              [
+                -72.412011, 
+                42.725569
+              ], 
+              [
+                -72.282968, 
+                42.722008
+              ], 
+              [
+                -72.111068, 
+                42.717264
+              ], 
+              [
+                -72.078463, 
+                42.716364
+              ], 
+              [
+                -71.928811, 
+                42.712234
+              ], 
+              [
+                -71.898714, 
+                42.711478
+              ], 
+              [
+                -71.80545, 
+                42.709137
+              ], 
+              [
+                -71.77251, 
+                42.70831
+              ], 
+              [
+                -71.636214, 
+                42.704888
+              ], 
+              [
+                -71.631814, 
+                42.704788
+              ], 
+              [
+                -71.54252, 
+                42.702726
+              ], 
+              [
+                -71.294205, 
+                42.69699
+              ], 
+              [
+                -71.254532, 
+                42.734136
+              ], 
+              [
+                -71.245504, 
+                42.742589
+              ], 
+              [
+                -71.208302, 
+                42.743314
+              ], 
+              [
+                -71.208227, 
+                42.743294
+              ], 
+              [
+                -71.208137, 
+                42.743273
+              ], 
+              [
+                -71.181803, 
+                42.73759
+              ], 
+              [
+                -71.186104, 
+                42.790689
+              ], 
+              [
+                -71.165603, 
+                42.808689
+              ], 
+              [
+                -71.149703, 
+                42.815489
+              ], 
+              [
+                -71.113858, 
+                42.827865
+              ], 
+              [
+                -71.058407, 
+                42.847009
+              ], 
+              [
+                -71.037901, 
+                42.854089
+              ], 
+              [
+                -70.996901, 
+                42.864589
+              ], 
+              [
+                -70.931699, 
+                42.884189
+              ], 
+              [
+                -70.930799, 
+                42.884589
+              ], 
+              [
+                -70.914899, 
+                42.886589
+              ], 
+              [
+                -70.914886, 
+                42.886564
+              ], 
+              [
+                -70.902768, 
+                42.88653
+              ], 
+              [
+                -70.886136, 
+                42.88261
+              ], 
+              [
+                -70.848625, 
+                42.860939
+              ], 
+              [
+                -70.817296, 
+                42.87229
+              ], 
+              [
+                -70.817731, 
+                42.850613
+              ], 
+              [
+                -70.80522, 
+                42.781798
+              ], 
+              [
+                -70.792867, 
+                42.747118
+              ], 
+              [
+                -70.772267, 
+                42.711064
+              ], 
+              [
+                -70.770453, 
+                42.704824
+              ], 
+              [
+                -70.778552, 
+                42.69852
+              ], 
+              [
+                -70.778671, 
+                42.693622
+              ], 
+              [
+                -70.764421, 
+                42.68565
+              ], 
+              [
+                -70.748752, 
+                42.683878
+              ], 
+              [
+                -70.744427, 
+                42.682092
+              ], 
+              [
+                -70.72982, 
+                42.669602
+              ], 
+              [
+                -70.728845, 
+                42.663877
+              ], 
+              [
+                -70.689402, 
+                42.653319
+              ], 
+              [
+                -70.682594, 
+                42.654525
+              ], 
+              [
+                -70.681594, 
+                42.662342
+              ], 
+              [
+                -70.663548, 
+                42.677603
+              ], 
+              [
+                -70.645101, 
+                42.689423
+              ], 
+              [
+                -70.630077, 
+                42.692699
+              ], 
+              [
+                -70.620031, 
+                42.688006
+              ], 
+              [
+                -70.622864, 
+                42.67599
+              ], 
+              [
+                -70.623815, 
+                42.665481
+              ], 
+              [
+                -70.622791, 
+                42.660873
+              ], 
+              [
+                -70.61482, 
+                42.65765
+              ], 
+              [
+                -70.595474, 
+                42.660336
+              ], 
+              [
+                -70.591742, 
+                42.648508
+              ], 
+              [
+                -70.591469, 
+                42.639821
+              ], 
+              [
+                -70.594014, 
+                42.63503
+              ], 
+              [
+                -70.605611, 
+                42.634898
+              ], 
+              [
+                -70.61842, 
+                42.62864
+              ], 
+              [
+                -70.635635, 
+                42.600243
+              ], 
+              [
+                -70.654727, 
+                42.582234
+              ], 
+              [
+                -70.664887, 
+                42.580436
+              ], 
+              [
+                -70.668022, 
+                42.581732
+              ], 
+              [
+                -70.668115, 
+                42.585361
+              ], 
+              [
+                -70.668488, 
+                42.589643
+              ], 
+              [
+                -70.670442, 
+                42.592249
+              ], 
+              [
+                -70.672583, 
+                42.594296
+              ], 
+              [
+                -70.675747, 
+                42.594669
+              ], 
+              [
+                -70.678819, 
+                42.594389
+              ], 
+              [
+                -70.681428, 
+                42.593173
+              ], 
+              [
+                -70.684502, 
+                42.588858
+              ], 
+              [
+                -70.698574, 
+                42.577393
+              ], 
+              [
+                -70.729688, 
+                42.57151
+              ], 
+              [
+                -70.737044, 
+                42.576863
+              ], 
+              [
+                -70.757283, 
+                42.570455
+              ], 
+              [
+                -70.804091, 
+                42.561595
+              ], 
+              [
+                -70.815391, 
+                42.554195
+              ], 
+              [
+                -70.823291, 
+                42.551495
+              ], 
+              [
+                -70.848492, 
+                42.550195
+              ], 
+              [
+                -70.871382, 
+                42.546404
+              ], 
+              [
+                -70.872357, 
+                42.542952
+              ], 
+              [
+                -70.866279, 
+                42.522617
+              ], 
+              [
+                -70.859751, 
+                42.520441
+              ], 
+              [
+                -70.857125, 
+                42.521492
+              ], 
+              [
+                -70.842091, 
+                42.519495
+              ], 
+              [
+                -70.831091, 
+                42.503596
+              ], 
+              [
+                -70.835991, 
+                42.490496
+              ], 
+              [
+                -70.841591, 
+                42.487596
+              ], 
+              [
+                -70.847391, 
+                42.491496
+              ], 
+              [
+                -70.857791, 
+                42.490296
+              ], 
+              [
+                -70.879692, 
+                42.478796
+              ], 
+              [
+                -70.886493, 
+                42.470197
+              ], 
+              [
+                -70.887992, 
+                42.467096
+              ], 
+              [
+                -70.887292, 
+                42.464896
+              ], 
+              [
+                -70.894292, 
+                42.460896
+              ], 
+              [
+                -70.908092, 
+                42.466896
+              ], 
+              [
+                -70.917693, 
+                42.467996
+              ], 
+              [
+                -70.921993, 
+                42.466696
+              ], 
+              [
+                -70.934993, 
+                42.457896
+              ], 
+              [
+                -70.934264, 
+                42.444646
+              ], 
+              [
+                -70.933155, 
+                42.437833
+              ], 
+              [
+                -70.928226, 
+                42.430986
+              ], 
+              [
+                -70.913192, 
+                42.427697
+              ], 
+              [
+                -70.908392, 
+                42.425197
+              ], 
+              [
+                -70.901992, 
+                42.420297
+              ], 
+              [
+                -70.905692, 
+                42.416197
+              ], 
+              [
+                -70.936393, 
+                42.418097
+              ], 
+              [
+                -70.943295, 
+                42.436248
+              ], 
+              [
+                -70.943612, 
+                42.452092
+              ], 
+              [
+                -70.94702, 
+                42.456236
+              ], 
+              [
+                -70.96047, 
+                42.446166
+              ], 
+              [
+                -70.960647, 
+                42.443787
+              ], 
+              [
+                -70.960835, 
+                42.441272
+              ], 
+              [
+                -70.982994, 
+                42.423996
+              ], 
+              [
+                -70.987694, 
+                42.416696
+              ], 
+              [
+                -70.990595, 
+                42.407098
+              ], 
+              [
+                -70.989195, 
+                42.402598
+              ], 
+              [
+                -70.985068, 
+                42.402041
+              ], 
+              [
+                -70.983426, 
+                42.396246
+              ], 
+              [
+                -70.980336, 
+                42.391513
+              ], 
+              [
+                -70.972706, 
+                42.389968
+              ], 
+              [
+                -70.970195, 
+                42.388036
+              ], 
+              [
+                -70.97174, 
+                42.387071
+              ], 
+              [
+                -70.972513, 
+                42.385042
+              ], 
+              [
+                -70.972706, 
+                42.381759
+              ], 
+              [
+                -70.972223, 
+                42.377316
+              ], 
+              [
+                -70.960798, 
+                42.360648
+              ], 
+              [
+                -70.953292, 
+                42.349698
+              ], 
+              [
+                -70.953022, 
+                42.343973
+              ], 
+              [
+                -70.963578, 
+                42.34686
+              ], 
+              [
+                -70.972418, 
+                42.353875
+              ], 
+              [
+                -70.974897, 
+                42.355843
+              ], 
+              [
+                -70.979927, 
+                42.356382
+              ], 
+              [
+                -70.982282, 
+                42.35592
+              ], 
+              [
+                -70.998253, 
+                42.352788
+              ], 
+              [
+                -71.006877, 
+                42.347039
+              ], 
+              [
+                -71.010146, 
+                42.339234
+              ], 
+              [
+                -71.011804, 
+                42.335274
+              ], 
+              [
+                -71.01568, 
+                42.326019
+              ], 
+              [
+                -71.013165, 
+                42.315419
+              ], 
+              [
+                -71.005399, 
+                42.307196
+              ], 
+              [
+                -71.000948, 
+                42.302483
+              ], 
+              [
+                -71.006158, 
+                42.28811
+              ], 
+              [
+                -71.0049, 
+                42.28272
+              ], 
+              [
+                -70.996097, 
+                42.271222
+              ], 
+              [
+                -70.98909, 
+                42.267449
+              ], 
+              [
+                -70.967351, 
+                42.268168
+              ], 
+              [
+                -70.948971, 
+                42.272505
+              ], 
+              [
+                -70.945547, 
+                42.269081
+              ], 
+              [
+                -70.935886, 
+                42.264189
+              ], 
+              [
+                -70.923169, 
+                42.263211
+              ], 
+              [
+                -70.910941, 
+                42.265412
+              ], 
+              [
+                -70.906302, 
+                42.271636
+              ], 
+              [
+                -70.896267, 
+                42.2851
+              ], 
+              [
+                -70.895778, 
+                42.292436
+              ], 
+              [
+                -70.897123, 
+                42.29586
+              ], 
+              [
+                -70.915588, 
+                42.302463
+              ], 
+              [
+                -70.91749, 
+                42.305686
+              ], 
+              [
+                -70.907556, 
+                42.307889
+              ], 
+              [
+                -70.882764, 
+                42.30886
+              ], 
+              [
+                -70.881242, 
+                42.300663
+              ], 
+              [
+                -70.870873, 
+                42.285668
+              ], 
+              [
+                -70.861807, 
+                42.275965
+              ], 
+              [
+                -70.851093, 
+                42.26827
+              ], 
+              [
+                -70.831075, 
+                42.267424
+              ], 
+              [
+                -70.824661, 
+                42.265935
+              ], 
+              [
+                -70.811742, 
+                42.262935
+              ], 
+              [
+                -70.788724, 
+                42.25392
+              ], 
+              [
+                -70.780722, 
+                42.251792
+              ], 
+              [
+                -70.770964, 
+                42.249197
+              ], 
+              [
+                -70.764757, 
+                42.244062
+              ], 
+              [
+                -70.754488, 
+                42.228673
+              ], 
+              [
+                -70.74723, 
+                42.221816
+              ], 
+              [
+                -70.73056, 
+                42.21094
+              ], 
+              [
+                -70.722269, 
+                42.207959
+              ], 
+              [
+                -70.718707, 
+                42.184853
+              ], 
+              [
+                -70.714301, 
+                42.168783
+              ], 
+              [
+                -70.706264, 
+                42.163137
+              ], 
+              [
+                -70.685315, 
+                42.133025
+              ], 
+              [
+                -70.663931, 
+                42.108336
+              ], 
+              [
+                -70.640169, 
+                42.088633
+              ], 
+              [
+                -70.63848, 
+                42.081579
+              ], 
+              [
+                -70.647349, 
+                42.076331
+              ], 
+              [
+                -70.64819, 
+                42.068441
+              ], 
+              [
+                -70.643208, 
+                42.050821
+              ], 
+              [
+                -70.644337, 
+                42.045895
+              ], 
+              [
+                -70.650874, 
+                42.046247
+              ], 
+              [
+                -70.66936, 
+                42.037116
+              ], 
+              [
+                -70.671666, 
+                42.02139
+              ], 
+              [
+                -70.667512, 
+                42.01232
+              ], 
+              [
+                -70.670934, 
+                42.007786
+              ], 
+              [
+                -70.678798, 
+                42.00551
+              ], 
+              [
+                -70.686798, 
+                42.012764
+              ], 
+              [
+                -70.695809, 
+                42.013346
+              ], 
+              [
+                -70.712204, 
+                42.007586
+              ], 
+              [
+                -70.710034, 
+                41.999544
+              ], 
+              [
+                -70.698981, 
+                41.987103
+              ], 
+              [
+                -70.662476, 
+                41.960592
+              ], 
+              [
+                -70.651673, 
+                41.958701
+              ], 
+              [
+                -70.648365, 
+                41.961672
+              ], 
+              [
+                -70.631251, 
+                41.950475
+              ], 
+              [
+                -70.623513, 
+                41.943273
+              ], 
+              [
+                -70.616491, 
+                41.940204
+              ], 
+              [
+                -70.608166, 
+                41.940701
+              ], 
+              [
+                -70.598078, 
+                41.947772
+              ], 
+              [
+                -70.583572, 
+                41.950007
+              ], 
+              [
+                -70.552941, 
+                41.929641
+              ], 
+              [
+                -70.546386, 
+                41.916751
+              ], 
+              [
+                -70.54741, 
+                41.911934
+              ], 
+              [
+                -70.545949, 
+                41.907158
+              ], 
+              [
+                -70.532084, 
+                41.889568
+              ], 
+              [
+                -70.525567, 
+                41.85873
+              ], 
+              [
+                -70.535487, 
+                41.839381
+              ], 
+              [
+                -70.542065, 
+                41.831263
+              ], 
+              [
+                -70.543168, 
+                41.824446
+              ], 
+              [
+                -70.54103, 
+                41.815754
+              ], 
+              [
+                -70.537289, 
+                41.810859
+              ], 
+              [
+                -70.533823, 
+                41.806323
+              ], 
+              [
+                -70.533303, 
+                41.805643
+              ], 
+              [
+                -70.532656, 
+                41.804796
+              ], 
+              [
+                -70.52507, 
+                41.797907
+              ], 
+              [
+                -70.518468, 
+                41.791912
+              ], 
+              [
+                -70.517615, 
+                41.791139
+              ], 
+              [
+                -70.517411, 
+                41.790953
+              ], 
+              [
+                -70.516921, 
+                41.790595
+              ], 
+              [
+                -70.516651, 
+                41.790398
+              ], 
+              [
+                -70.516101, 
+                41.789996
+              ], 
+              [
+                -70.514603, 
+                41.788901
+              ], 
+              [
+                -70.514483, 
+                41.788814
+              ], 
+              [
+                -70.514424, 
+                41.788771
+              ], 
+              [
+                -70.494048, 
+                41.773883
+              ], 
+              [
+                -70.493016, 
+                41.773318
+              ], 
+              [
+                -70.492884, 
+                41.773245
+              ], 
+              [
+                -70.483477, 
+                41.768094
+              ], 
+              [
+                -70.482152, 
+                41.767368
+              ], 
+              [
+                -70.474051, 
+                41.762931
+              ], 
+              [
+                -70.473707, 
+                41.762743
+              ], 
+              [
+                -70.473335, 
+                41.762539
+              ], 
+              [
+                -70.471999, 
+                41.761808
+              ], 
+              [
+                -70.471969, 
+                41.761791
+              ], 
+              [
+                -70.471807, 
+                41.761702
+              ], 
+              [
+                -70.471552, 
+                41.761563
+              ], 
+              [
+                -70.458968, 
+                41.757906
+              ], 
+              [
+                -70.413713, 
+                41.744756
+              ], 
+              [
+                -70.412476, 
+                41.744397
+              ], 
+              [
+                -70.412071, 
+                41.744336
+              ], 
+              [
+                -70.376992, 
+                41.739029
+              ], 
+              [
+                -70.375341, 
+                41.738779
+              ], 
+              [
+                -70.375253, 
+                41.738774
+              ], 
+              [
+                -70.318091, 
+                41.735748
+              ], 
+              [
+                -70.31529, 
+                41.7356
+              ], 
+              [
+                -70.314667, 
+                41.735567
+              ], 
+              [
+                -70.291301, 
+                41.73433
+              ], 
+              [
+                -70.290957, 
+                41.734312
+              ], 
+              [
+                -70.290788, 
+                41.734224
+              ], 
+              [
+                -70.288323, 
+                41.732946
+              ], 
+              [
+                -70.277064, 
+                41.727108
+              ], 
+              [
+                -70.275393, 
+                41.726242
+              ], 
+              [
+                -70.275203, 
+                41.726143
+              ], 
+              [
+                -70.275164, 
+                41.726079
+              ], 
+              [
+                -70.274188, 
+                41.724471
+              ], 
+              [
+                -70.272289, 
+                41.721346
+              ], 
+              [
+                -70.263831, 
+                41.714263
+              ], 
+              [
+                -70.263654, 
+                41.714115
+              ], 
+              [
+                -70.263097, 
+                41.714095
+              ], 
+              [
+                -70.26144, 
+                41.714035
+              ], 
+              [
+                -70.259205, 
+                41.713954
+              ], 
+              [
+                -70.256395, 
+                41.716236
+              ], 
+              [
+                -70.252686, 
+                41.719248
+              ], 
+              [
+                -70.251794, 
+                41.719973
+              ], 
+              [
+                -70.250704, 
+                41.720858
+              ], 
+              [
+                -70.247935, 
+                41.723106
+              ], 
+              [
+                -70.247379, 
+                41.723558
+              ], 
+              [
+                -70.24705, 
+                41.723825
+              ], 
+              [
+                -70.237418, 
+                41.731648
+              ], 
+              [
+                -70.235048, 
+                41.733572
+              ], 
+              [
+                -70.23485, 
+                41.733733
+              ], 
+              [
+                -70.225881, 
+                41.73815
+              ], 
+              [
+                -70.225312, 
+                41.738431
+              ], 
+              [
+                -70.224462, 
+                41.738849
+              ], 
+              [
+                -70.224006, 
+                41.739074
+              ], 
+              [
+                -70.220842, 
+                41.740632
+              ], 
+              [
+                -70.216697, 
+                41.742674
+              ], 
+              [
+                -70.216073, 
+                41.742981
+              ], 
+              [
+                -70.198037, 
+                41.749034
+              ], 
+              [
+                -70.197525, 
+                41.749206
+              ], 
+              [
+                -70.193202, 
+                41.750657
+              ], 
+              [
+                -70.189254, 
+                41.751982
+              ], 
+              [
+                -70.189117, 
+                41.751961
+              ], 
+              [
+                -70.182076, 
+                41.750885
+              ], 
+              [
+                -70.176566, 
+                41.752134
+              ], 
+              [
+                -70.159127, 
+                41.756085
+              ], 
+              [
+                -70.143848, 
+                41.759547
+              ], 
+              [
+                -70.143444, 
+                41.759639
+              ], 
+              [
+                -70.141533, 
+                41.760072
+              ], 
+              [
+                -70.141519, 
+                41.760071
+              ], 
+              [
+                -70.14038, 
+                41.759999
+              ], 
+              [
+                -70.136007, 
+                41.759724
+              ], 
+              [
+                -70.129065, 
+                41.759287
+              ], 
+              [
+                -70.124364, 
+                41.758991
+              ], 
+              [
+                -70.12407, 
+                41.758973
+              ], 
+              [
+                -70.122132, 
+                41.758851
+              ], 
+              [
+                -70.121978, 
+                41.758841
+              ], 
+              [
+                -70.115895, 
+                41.76065
+              ], 
+              [
+                -70.115067, 
+                41.760896
+              ], 
+              [
+                -70.109319, 
+                41.762606
+              ], 
+              [
+                -70.097666, 
+                41.766072
+              ], 
+              [
+                -70.097658, 
+                41.766074
+              ], 
+              [
+                -70.096768, 
+                41.766339
+              ], 
+              [
+                -70.096061, 
+                41.766549
+              ], 
+              [
+                -70.086376, 
+                41.76847
+              ], 
+              [
+                -70.081833, 
+                41.769371
+              ], 
+              [
+                -70.067603, 
+                41.772193
+              ], 
+              [
+                -70.065142, 
+                41.772681
+              ], 
+              [
+                -70.064314, 
+                41.772845
+              ], 
+              [
+                -70.060674, 
+                41.77418
+              ], 
+              [
+                -70.03439, 
+                41.783822
+              ], 
+              [
+                -70.033874, 
+                41.784011
+              ], 
+              [
+                -70.033223, 
+                41.78425
+              ], 
+              [
+                -70.024734, 
+                41.787364
+              ], 
+              [
+                -70.024658, 
+                41.787427
+              ], 
+              [
+                -70.023082, 
+                41.788726
+              ], 
+              [
+                -70.022809, 
+                41.788952
+              ], 
+              [
+                -70.022381, 
+                41.789305
+              ], 
+              [
+                -70.009936, 
+                41.79957
+              ], 
+              [
+                -70.008882, 
+                41.80044
+              ], 
+              [
+                -70.008462, 
+                41.800786
+              ], 
+              [
+                -70.003842, 
+                41.80852
+              ], 
+              [
+                -70.004486, 
+                41.838826
+              ], 
+              [
+                -70.009013, 
+                41.876625
+              ], 
+              [
+                -70.000188, 
+                41.886938
+              ], 
+              [
+                -70.002922, 
+                41.890315
+              ], 
+              [
+                -70.012154, 
+                41.891656
+              ], 
+              [
+                -70.024335, 
+                41.89882
+              ], 
+              [
+                -70.025553, 
+                41.911699
+              ], 
+              [
+                -70.030537, 
+                41.929154
+              ], 
+              [
+                -70.044995, 
+                41.930049
+              ], 
+              [
+                -70.054464, 
+                41.927366
+              ], 
+              [
+                -70.065671, 
+                41.911658
+              ], 
+              [
+                -70.065723, 
+                41.899641
+              ], 
+              [
+                -70.065372, 
+                41.887702
+              ], 
+              [
+                -70.064084, 
+                41.878924
+              ], 
+              [
+                -70.066002, 
+                41.877011
+              ], 
+              [
+                -70.067566, 
+                41.877793
+              ], 
+              [
+                -70.070889, 
+                41.882973
+              ], 
+              [
+                -70.073039, 
+                41.899783
+              ], 
+              [
+                -70.074006, 
+                41.93865
+              ], 
+              [
+                -70.077421, 
+                41.985497
+              ], 
+              [
+                -70.083775, 
+                42.012041
+              ], 
+              [
+                -70.089578, 
+                42.024896
+              ], 
+              [
+                -70.095595, 
+                42.032832
+              ], 
+              [
+                -70.10806, 
+                42.043601
+              ], 
+              [
+                -70.123043, 
+                42.051668
+              ], 
+              [
+                -70.147411, 
+                42.06159
+              ], 
+              [
+                -70.148294, 
+                42.06195
+              ], 
+              [
+                -70.155415, 
+                42.062409
+              ], 
+              [
+                -70.169781, 
+                42.059736
+              ], 
+              [
+                -70.178468, 
+                42.05642
+              ], 
+              [
+                -70.186816, 
+                42.05045
+              ], 
+              [
+                -70.194456, 
+                42.03947
+              ], 
+              [
+                -70.195345, 
+                42.034163
+              ], 
+              [
+                -70.193074, 
+                42.027576
+              ], 
+              [
+                -70.186295, 
+                42.021308
+              ], 
+              [
+                -70.186708, 
+                42.019904
+              ], 
+              [
+                -70.190834, 
+                42.020028
+              ], 
+              [
+                -70.196693, 
+                42.022429
+              ], 
+              [
+                -70.208016, 
+                42.03073
+              ], 
+              [
+                -70.218701, 
+                42.045848
+              ], 
+              [
+                -70.233256, 
+                42.057714
+              ], 
+              [
+                -70.238875, 
+                42.060479
+              ], 
+              [
+                -70.24354, 
+                42.060569
+              ], 
+              [
+                -70.245385, 
+                42.063733
+              ], 
+              [
+                -70.238087, 
+                42.072878
+              ], 
+              [
+                -70.225626, 
+                42.078601
+              ], 
+              [
+                -70.206899, 
+                42.0819
+              ], 
+              [
+                -70.189305, 
+                42.082337
+              ], 
+              [
+                -70.160166, 
+                42.078628
+              ], 
+              [
+                -70.154177, 
+                42.077139
+              ], 
+              [
+                -70.115968, 
+                42.067638
+              ], 
+              [
+                -70.082624, 
+                42.054657
+              ], 
+              [
+                -70.058531, 
+                42.040363
+              ], 
+              [
+                -70.034806, 
+                42.018916
+              ], 
+              [
+                -70.033501, 
+                42.017736
+              ], 
+              [
+                -70.031054, 
+                42.014562
+              ], 
+              [
+                -70.029953, 
+                42.013135
+              ], 
+              [
+                -70.029449, 
+                42.012482
+              ], 
+              [
+                -70.01628, 
+                41.995403
+              ], 
+              [
+                -70.014109, 
+                41.992587
+              ], 
+              [
+                -70.013876, 
+                41.992285
+              ], 
+              [
+                -70.011957, 
+                41.989796
+              ], 
+              [
+                -70.011898, 
+                41.98972
+              ], 
+              [
+                -70.01051, 
+                41.987563
+              ], 
+              [
+                -70.005717, 
+                41.980113
+              ], 
+              [
+                -70.005458, 
+                41.97971
+              ], 
+              [
+                -70.005332, 
+                41.979515
+              ], 
+              [
+                -70.004608, 
+                41.978389
+              ], 
+              [
+                -70.004271, 
+                41.977865
+              ], 
+              [
+                -69.986196, 
+                41.949769
+              ], 
+              [
+                -69.986085, 
+                41.949597
+              ], 
+              [
+                -69.986024, 
+                41.949465
+              ], 
+              [
+                -69.968598, 
+                41.9117
+              ], 
+              [
+                -69.945314, 
+                41.845222
+              ], 
+              [
+                -69.935952, 
+                41.809422
+              ], 
+              [
+                -69.928652, 
+                41.74125
+              ], 
+              [
+                -69.928311, 
+                41.697981
+              ], 
+              [
+                -69.928308, 
+                41.697681
+              ], 
+              [
+                -69.928275, 
+                41.693504
+              ], 
+              [
+                -69.928265, 
+                41.692247
+              ], 
+              [
+                -69.928265, 
+                41.692242
+              ], 
+              [
+                -69.928261, 
+                41.6917
+              ], 
+              [
+                -69.928723, 
+                41.689634
+              ], 
+              [
+                -69.929377, 
+                41.686713
+              ], 
+              [
+                -69.929457, 
+                41.686357
+              ], 
+              [
+                -69.9309, 
+                41.67991
+              ], 
+              [
+                -69.933114, 
+                41.670014
+              ], 
+              [
+                -69.933149, 
+                41.669955
+              ], 
+              [
+                -69.93412, 
+                41.668304
+              ], 
+              [
+                -69.942742, 
+                41.653649
+              ], 
+              [
+                -69.943474, 
+                41.652406
+              ], 
+              [
+                -69.947599, 
+                41.645394
+              ], 
+              [
+                -69.951169, 
+                41.640799
+              ], 
+              [
+                -69.951911, 
+                41.640656
+              ], 
+              [
+                -69.952844, 
+                41.640476
+              ], 
+              [
+                -69.953924, 
+                41.640268
+              ], 
+              [
+                -69.956862, 
+                41.639701
+              ], 
+              [
+                -69.958272, 
+                41.639429
+              ], 
+              [
+                -69.963234, 
+                41.633794
+              ], 
+              [
+                -69.967869, 
+                41.627503
+              ], 
+              [
+                -69.976478, 
+                41.603664
+              ], 
+              [
+                -69.982768, 
+                41.581812
+              ], 
+              [
+                -69.988215, 
+                41.554704
+              ], 
+              [
+                -69.988495, 
+                41.55439
+              ], 
+              [
+                -69.996546, 
+                41.54536
+              ], 
+              [
+                -69.998071, 
+                41.54365
+              ], 
+              [
+                -69.999063, 
+                41.5434
+              ], 
+              [
+                -70.003768, 
+                41.542213
+              ], 
+              [
+                -70.004136, 
+                41.54212
+              ], 
+              [
+                -70.004554, 
+                41.542166
+              ], 
+              [
+                -70.011211, 
+                41.542892
+              ], 
+              [
+                -70.011504, 
+                41.542924
+              ], 
+              [
+                -70.011725, 
+                41.54312
+              ], 
+              [
+                -70.014456, 
+                41.545534
+              ], 
+              [
+                -70.016584, 
+                41.550772
+              ], 
+              [
+                -70.015059, 
+                41.553037
+              ], 
+              [
+                -70.011596, 
+                41.552766
+              ], 
+              [
+                -70.010644, 
+                41.552692
+              ], 
+              [
+                -70.008854, 
+                41.55451
+              ], 
+              [
+                -70.00153, 
+                41.561953
+              ], 
+              [
+                -70.001281, 
+                41.56247
+              ], 
+              [
+                -70.000937, 
+                41.563184
+              ], 
+              [
+                -70.000627, 
+                41.563827
+              ], 
+              [
+                -69.994357, 
+                41.576846
+              ], 
+              [
+                -69.991723, 
+                41.58851
+              ], 
+              [
+                -69.987192, 
+                41.608579
+              ], 
+              [
+                -69.987111, 
+                41.608765
+              ], 
+              [
+                -69.982946, 
+                41.618316
+              ], 
+              [
+                -69.980418, 
+                41.624113
+              ], 
+              [
+                -69.977489, 
+                41.630832
+              ], 
+              [
+                -69.976886, 
+                41.632213
+              ], 
+              [
+                -69.976641, 
+                41.632777
+              ], 
+              [
+                -69.975579, 
+                41.635212
+              ], 
+              [
+                -69.975245, 
+                41.635978
+              ], 
+              [
+                -69.973035, 
+                41.641046
+              ], 
+              [
+                -69.973037, 
+                41.641126
+              ], 
+              [
+                -69.973153, 
+                41.646963
+              ], 
+              [
+                -69.975719, 
+                41.653738
+              ], 
+              [
+                -69.975811, 
+                41.653798
+              ], 
+              [
+                -69.990659, 
+                41.663471
+              ], 
+              [
+                -69.990668, 
+                41.663476
+              ], 
+              [
+                -69.990734, 
+                41.663519
+              ], 
+              [
+                -69.990748, 
+                41.663528
+              ], 
+              [
+                -69.99079, 
+                41.663556
+              ], 
+              [
+                -69.996194, 
+                41.667076
+              ], 
+              [
+                -69.996359, 
+                41.667184
+              ], 
+              [
+                -69.996509, 
+                41.667246
+              ], 
+              [
+                -70.002697, 
+                41.669799
+              ], 
+              [
+                -70.003016, 
+                41.669931
+              ], 
+              [
+                -70.006833, 
+                41.671506
+              ], 
+              [
+                -70.007011, 
+                41.671579
+              ], 
+              [
+                -70.007153, 
+                41.671587
+              ], 
+              [
+                -70.014211, 
+                41.671971
+              ], 
+              [
+                -70.015789, 
+                41.67153
+              ], 
+              [
+                -70.020964, 
+                41.670085
+              ], 
+              [
+                -70.029119, 
+                41.667807
+              ], 
+              [
+                -70.029319, 
+                41.667751
+              ], 
+              [
+                -70.029346, 
+                41.667744
+              ], 
+              [
+                -70.037145, 
+                41.66688
+              ], 
+              [
+                -70.037255, 
+                41.666868
+              ], 
+              [
+                -70.037757, 
+                41.666812
+              ], 
+              [
+                -70.055523, 
+                41.664843
+              ], 
+              [
+                -70.089238, 
+                41.662813
+              ], 
+              [
+                -70.119904, 
+                41.655455
+              ], 
+              [
+                -70.120935, 
+                41.655208
+              ], 
+              [
+                -70.121351, 
+                41.655108
+              ], 
+              [
+                -70.122597, 
+                41.654809
+              ], 
+              [
+                -70.122689, 
+                41.654787
+              ], 
+              [
+                -70.134702, 
+                41.651905
+              ], 
+              [
+                -70.140163, 
+                41.650594
+              ], 
+              [
+                -70.140207, 
+                41.650584
+              ], 
+              [
+                -70.140437, 
+                41.650529
+              ], 
+              [
+                -70.140877, 
+                41.650423
+              ], 
+              [
+                -70.141049, 
+                41.650423
+              ], 
+              [
+                -70.141141, 
+                41.650423
+              ], 
+              [
+                -70.142592, 
+                41.650424
+              ], 
+              [
+                -70.145882, 
+                41.650427
+              ], 
+              [
+                -70.147011, 
+                41.650428
+              ], 
+              [
+                -70.148435, 
+                41.650429
+              ], 
+              [
+                -70.158621, 
+                41.650438
+              ], 
+              [
+                -70.191061, 
+                41.645259
+              ], 
+              [
+                -70.245867, 
+                41.628479
+              ], 
+              [
+                -70.25621, 
+                41.620698
+              ], 
+              [
+                -70.25542, 
+                41.617541
+              ], 
+              [
+                -70.259601, 
+                41.610863
+              ], 
+              [
+                -70.265424, 
+                41.609333
+              ], 
+              [
+                -70.267587, 
+                41.610912
+              ], 
+              [
+                -70.269687, 
+                41.617775
+              ], 
+              [
+                -70.26913, 
+                41.625742
+              ], 
+              [
+                -70.274522, 
+                41.632927
+              ], 
+              [
+                -70.28132, 
+                41.635125
+              ], 
+              [
+                -70.29062, 
+                41.635196
+              ], 
+              [
+                -70.321588, 
+                41.630508
+              ], 
+              [
+                -70.329924, 
+                41.634578
+              ], 
+              [
+                -70.338067, 
+                41.636338
+              ], 
+              [
+                -70.351634, 
+                41.634687
+              ], 
+              [
+                -70.360352, 
+                41.631069
+              ], 
+              [
+                -70.364892, 
+                41.626721
+              ], 
+              [
+                -70.364744, 
+                41.623671
+              ], 
+              [
+                -70.369854, 
+                41.615888
+              ], 
+              [
+                -70.379151, 
+                41.611361
+              ], 
+              [
+                -70.400581, 
+                41.606382
+              ], 
+              [
+                -70.401148, 
+                41.606451
+              ], 
+              [
+                -70.408535, 
+                41.607345
+              ], 
+              [
+                -70.413944, 
+                41.606965
+              ], 
+              [
+                -70.437246, 
+                41.605329
+              ], 
+              [
+                -70.437889, 
+                41.604249
+              ], 
+              [
+                -70.440556, 
+                41.599767
+              ], 
+              [
+                -70.442225, 
+                41.596963
+              ], 
+              [
+                -70.44435, 
+                41.593393
+              ], 
+              [
+                -70.445289, 
+                41.591815
+              ], 
+              [
+                -70.446543, 
+                41.590247
+              ], 
+              [
+                -70.450382, 
+                41.585445
+              ], 
+              [
+                -70.456052, 
+                41.578355
+              ], 
+              [
+                -70.457356, 
+                41.576724
+              ], 
+              [
+                -70.461093, 
+                41.572051
+              ], 
+              [
+                -70.461278, 
+                41.57182
+              ], 
+              [
+                -70.46196, 
+                41.571213
+              ], 
+              [
+                -70.462206, 
+                41.570995
+              ], 
+              [
+                -70.462239, 
+                41.570965
+              ], 
+              [
+                -70.472778, 
+                41.561595
+              ], 
+              [
+                -70.473328, 
+                41.561106
+              ], 
+              [
+                -70.476231, 
+                41.558524
+              ], 
+              [
+                -70.476256, 
+                41.558502
+              ], 
+              [
+                -70.476275, 
+                41.558493
+              ], 
+              [
+                -70.48335, 
+                41.555259
+              ], 
+              [
+                -70.485155, 
+                41.554434
+              ], 
+              [
+                -70.485571, 
+                41.554244
+              ], 
+              [
+                -70.486815, 
+                41.553887
+              ], 
+              [
+                -70.493244, 
+                41.552044
+              ], 
+              [
+                -70.522009, 
+                41.548999
+              ], 
+              [
+                -70.522327, 
+                41.548965
+              ], 
+              [
+                -70.53164, 
+                41.548807
+              ], 
+              [
+                -70.559482, 
+                41.548334
+              ], 
+              [
+                -70.559689, 
+                41.54833
+              ], 
+              [
+                -70.559728, 
+                41.548326
+              ], 
+              [
+                -70.560909, 
+                41.548203
+              ], 
+              [
+                -70.561261, 
+                41.548167
+              ], 
+              [
+                -70.574023, 
+                41.54684
+              ], 
+              [
+                -70.588412, 
+                41.545345
+              ], 
+              [
+                -70.588494, 
+                41.545336
+              ], 
+              [
+                -70.58881, 
+                41.545304
+              ], 
+              [
+                -70.588894, 
+                41.545295
+              ], 
+              [
+                -70.58957, 
+                41.545225
+              ], 
+              [
+                -70.59657, 
+                41.544497
+              ], 
+              [
+                -70.611081, 
+                41.542989
+              ], 
+              [
+                -70.611147, 
+                41.542975
+              ], 
+              [
+                -70.613006, 
+                41.542584
+              ], 
+              [
+                -70.614398, 
+                41.542292
+              ], 
+              [
+                -70.616715, 
+                41.541805
+              ], 
+              [
+                -70.617223, 
+                41.541698
+              ], 
+              [
+                -70.617638, 
+                41.541611
+              ], 
+              [
+                -70.617911, 
+                41.541553
+              ], 
+              [
+                -70.633607, 
+                41.538254
+              ], 
+              [
+                -70.633713, 
+                41.538192
+              ], 
+              [
+                -70.6338, 
+                41.538141
+              ], 
+              [
+                -70.643627, 
+                41.532357
+              ], 
+              [
+                -70.650059, 
+                41.524172
+              ], 
+              [
+                -70.650128, 
+                41.524084
+              ], 
+              [
+                -70.651566, 
+                41.522254
+              ], 
+              [
+                -70.65205, 
+                41.521639
+              ], 
+              [
+                -70.654104, 
+                41.519025
+              ], 
+              [
+                -70.654168, 
+                41.518992
+              ], 
+              [
+                -70.663856, 
+                41.514031
+              ], 
+              [
+                -70.669518, 
+                41.513339
+              ], 
+              [
+                -70.675379, 
+                41.512623
+              ], 
+              [
+                -70.705181, 
+                41.496677
+              ], 
+              [
+                -70.734306, 
+                41.486335
+              ], 
+              [
+                -70.757171, 
+                41.469917
+              ], 
+              [
+                -70.756481, 
+                41.465977
+              ], 
+              [
+                -70.760863, 
+                41.460947
+              ], 
+              [
+                -70.79027, 
+                41.446339
+              ], 
+              [
+                -70.817478, 
+                41.445562
+              ], 
+              [
+                -70.835867, 
+                41.441877
+              ], 
+              [
+                -70.857528, 
+                41.425767
+              ], 
+              [
+                -70.866946, 
+                41.422378
+              ], 
+              [
+                -70.902763, 
+                41.421061
+              ], 
+              [
+                -70.928197, 
+                41.415781
+              ], 
+              [
+                -70.937282, 
+                41.411618
+              ], 
+              [
+                -70.948431, 
+                41.409193
+              ], 
+              [
+                -70.951045, 
+                41.411777
+              ], 
+              [
+                -70.949861, 
+                41.415323
+              ], 
+              [
+                -70.928165, 
+                41.431265
+              ], 
+              [
+                -70.923698, 
+                41.430716
+              ], 
+              [
+                -70.918983, 
+                41.4253
+              ], 
+              [
+                -70.91164, 
+                41.424484
+              ], 
+              [
+                -70.906011, 
+                41.425708
+              ], 
+              [
+                -70.883247, 
+                41.432239
+              ], 
+              [
+                -70.855265, 
+                41.448892
+              ], 
+              [
+                -70.828546, 
+                41.456448
+              ], 
+              [
+                -70.802186, 
+                41.460864
+              ], 
+              [
+                -70.787769, 
+                41.474609
+              ], 
+              [
+                -70.775268, 
+                41.477465
+              ], 
+              [
+                -70.753905, 
+                41.492256
+              ], 
+              [
+                -70.745053, 
+                41.500966
+              ], 
+              [
+                -70.6948, 
+                41.52564
+              ], 
+              [
+                -70.658659, 
+                41.543385
+              ], 
+              [
+                -70.654302, 
+                41.549926
+              ], 
+              [
+                -70.655365, 
+                41.557498
+              ], 
+              [
+                -70.653899, 
+                41.56516
+              ], 
+              [
+                -70.64878, 
+                41.56987
+              ], 
+              [
+                -70.642748, 
+                41.572385
+              ], 
+              [
+                -70.640948, 
+                41.577325
+              ], 
+              [
+                -70.64204, 
+                41.583066
+              ], 
+              [
+                -70.652449, 
+                41.60521
+              ], 
+              [
+                -70.651986, 
+                41.610184
+              ], 
+              [
+                -70.640003, 
+                41.624616
+              ], 
+              [
+                -70.645251, 
+                41.633547
+              ], 
+              [
+                -70.652614, 
+                41.637829
+              ], 
+              [
+                -70.650419, 
+                41.644202
+              ], 
+              [
+                -70.638695, 
+                41.649427
+              ], 
+              [
+                -70.637632, 
+                41.654573
+              ], 
+              [
+                -70.646308, 
+                41.678433
+              ], 
+              [
+                -70.649285, 
+                41.680943
+              ], 
+              [
+                -70.661475, 
+                41.681756
+              ], 
+              [
+                -70.645962, 
+                41.693794
+              ], 
+              [
+                -70.62544, 
+                41.698691
+              ], 
+              [
+                -70.623652, 
+                41.707398
+              ], 
+              [
+                -70.626529, 
+                41.712995
+              ], 
+              [
+                -70.642914, 
+                41.71841
+              ], 
+              [
+                -70.644641, 
+                41.71898
+              ], 
+              [
+                -70.651093, 
+                41.715715
+              ], 
+              [
+                -70.656596, 
+                41.715401
+              ], 
+              [
+                -70.670453, 
+                41.721912
+              ], 
+              [
+                -70.708193, 
+                41.730959
+              ], 
+              [
+                -70.718739, 
+                41.73574
+              ], 
+              [
+                -70.726331, 
+                41.732731
+              ], 
+              [
+                -70.728933, 
+                41.723433
+              ], 
+              [
+                -70.721302, 
+                41.712968
+              ], 
+              [
+                -70.717451, 
+                41.69398
+              ], 
+              [
+                -70.719575, 
+                41.685002
+              ], 
+              [
+                -70.729395, 
+                41.68814
+              ], 
+              [
+                -70.744396, 
+                41.696967
+              ], 
+              [
+                -70.755347, 
+                41.694326
+              ], 
+              [
+                -70.761481, 
+                41.676808
+              ], 
+              [
+                -70.761497, 
+                41.676641
+              ], 
+              [
+                -70.76236, 
+                41.667735
+              ], 
+              [
+                -70.758198, 
+                41.661225
+              ], 
+              [
+                -70.757622, 
+                41.654265
+              ], 
+              [
+                -70.765463, 
+                41.641575
+              ], 
+              [
+                -70.769318, 
+                41.641145
+              ], 
+              [
+                -70.773654, 
+                41.645033
+              ], 
+              [
+                -70.775798, 
+                41.649145
+              ], 
+              [
+                -70.776709, 
+                41.650756
+              ], 
+              [
+                -70.809118, 
+                41.656437
+              ], 
+              [
+                -70.813286, 
+                41.65567
+              ], 
+              [
+                -70.815729, 
+                41.652796
+              ], 
+              [
+                -70.816351, 
+                41.645995
+              ], 
+              [
+                -70.804664, 
+                41.641157
+              ], 
+              [
+                -70.800215, 
+                41.631753
+              ], 
+              [
+                -70.801063, 
+                41.629513
+              ], 
+              [
+                -70.810279, 
+                41.624873
+              ], 
+              [
+                -70.835296, 
+                41.624532
+              ], 
+              [
+                -70.843177, 
+                41.628487
+              ], 
+              [
+                -70.843522, 
+                41.62866
+              ], 
+              [
+                -70.843528, 
+                41.628663
+              ], 
+              [
+                -70.844165, 
+                41.628983
+              ], 
+              [
+                -70.852518, 
+                41.626919
+              ], 
+              [
+                -70.855031, 
+                41.624283
+              ], 
+              [
+                -70.855162, 
+                41.624145
+              ], 
+              [
+                -70.854232, 
+                41.618429
+              ], 
+              [
+                -70.854211, 
+                41.618302
+              ], 
+              [
+                -70.853445, 
+                41.613592
+              ], 
+              [
+                -70.850181, 
+                41.593529
+              ], 
+              [
+                -70.85222, 
+                41.589223
+              ], 
+              [
+                -70.852488, 
+                41.588658
+              ], 
+              [
+                -70.852551, 
+                41.588526
+              ], 
+              [
+                -70.853121, 
+                41.587321
+              ], 
+              [
+                -70.85324, 
+                41.587332
+              ], 
+              [
+                -70.857239, 
+                41.587705
+              ], 
+              [
+                -70.862852, 
+                41.600678
+              ], 
+              [
+                -70.862998, 
+                41.601014
+              ], 
+              [
+                -70.863486, 
+                41.602143
+              ], 
+              [
+                -70.868501, 
+                41.613733
+              ], 
+              [
+                -70.868904, 
+                41.614664
+              ], 
+              [
+                -70.86836, 
+                41.622664
+              ], 
+              [
+                -70.869624, 
+                41.625608
+              ], 
+              [
+                -70.872665, 
+                41.627816
+              ], 
+              [
+                -70.87904, 
+                41.629777
+              ], 
+              [
+                -70.887643, 
+                41.632422
+              ], 
+              [
+                -70.889209, 
+                41.632904
+              ], 
+              [
+                -70.88926, 
+                41.632875
+              ], 
+              [
+                -70.889594, 
+                41.632685
+              ], 
+              [
+                -70.904513, 
+                41.624205
+              ], 
+              [
+                -70.905765, 
+                41.623494
+              ], 
+              [
+                -70.913202, 
+                41.619266
+              ], 
+              [
+                -70.904522, 
+                41.610361
+              ], 
+              [
+                -70.899981, 
+                41.593504
+              ], 
+              [
+                -70.901381, 
+                41.592504
+              ], 
+              [
+                -70.910814, 
+                41.595506
+              ], 
+              [
+                -70.916581, 
+                41.607483
+              ], 
+              [
+                -70.920074, 
+                41.61081
+              ], 
+              [
+                -70.927172, 
+                41.611253
+              ], 
+              [
+                -70.929722, 
+                41.609479
+              ], 
+              [
+                -70.93, 
+                41.600441
+              ], 
+              [
+                -70.927393, 
+                41.594064
+              ], 
+              [
+                -70.931338, 
+                41.5842
+              ], 
+              [
+                -70.937978, 
+                41.577416
+              ], 
+              [
+                -70.941588, 
+                41.581034
+              ], 
+              [
+                -70.946911, 
+                41.581089
+              ], 
+              [
+                -70.948797, 
+                41.579038
+              ], 
+              [
+                -70.9473, 
+                41.573659
+              ], 
+              [
+                -70.93783, 
+                41.565239
+              ], 
+              [
+                -70.931545, 
+                41.540169
+              ], 
+              [
+                -70.941785, 
+                41.540121
+              ], 
+              [
+                -70.979225, 
+                41.530427
+              ], 
+              [
+                -70.983354, 
+                41.520616
+              ], 
+              [
+                -71.003275, 
+                41.511912
+              ], 
+              [
+                -71.019354, 
+                41.508857
+              ], 
+              [
+                -71.023523, 
+                41.506326
+              ], 
+              [
+                -71.035514, 
+                41.499047
+              ], 
+              [
+                -71.058418, 
+                41.505967
+              ], 
+              [
+                -71.085663, 
+                41.509292
+              ], 
+              [
+                -71.12057, 
+                41.497448
+              ], 
+              [
+                -71.133353, 
+                41.629509
+              ], 
+              [
+                -71.133608, 
+                41.632152
+              ], 
+              [
+                -71.133796, 
+                41.63409
+              ], 
+              [
+                -71.134484, 
+                41.641198
+              ], 
+              [
+                -71.134478, 
+                41.641262
+              ], 
+              [
+                -71.134688, 
+                41.660502
+              ], 
+              [
+                -71.135188, 
+                41.660502
+              ], 
+              [
+                -71.14587, 
+                41.662795
+              ], 
+              [
+                -71.153989, 
+                41.664102
+              ], 
+              [
+                -71.17609, 
+                41.668102
+              ], 
+              [
+                -71.17609, 
+                41.668502
+              ], 
+              [
+                -71.17599, 
+                41.671402
+              ], 
+              [
+                -71.18129, 
+                41.672502
+              ], 
+              [
+                -71.191175, 
+                41.674292
+              ], 
+              [
+                -71.191178, 
+                41.674216
+              ], 
+              [
+                -71.19439, 
+                41.674802
+              ], 
+              [
+                -71.19564, 
+                41.67509
+              ], 
+              [
+                -71.224798, 
+                41.710498
+              ], 
+              [
+                -71.261392, 
+                41.752301
+              ], 
+              [
+                -71.31779, 
+                41.776099
+              ], 
+              [
+                -71.317795, 
+                41.776101
+              ], 
+              [
+                -71.327896, 
+                41.780501
+              ], 
+              [
+                -71.339297, 
+                41.8065
+              ], 
+              [
+                -71.339597, 
+                41.832
+              ], 
+              [
+                -71.337597, 
+                41.8337
+              ], 
+              [
+                -71.339298, 
+                41.893399
+              ], 
+              [
+                -71.339298, 
+                41.893599
+              ], 
+              [
+                -71.352699, 
+                41.896699
+              ], 
+              [
+                -71.354699, 
+                41.896499
+              ], 
+              [
+                -71.362499, 
+                41.895599
+              ], 
+              [
+                -71.364699, 
+                41.895399
+              ], 
+              [
+                -71.365399, 
+                41.895299
+              ], 
+              [
+                -71.370999, 
+                41.894599
+              ], 
+              [
+                -71.373799, 
+                41.894399
+              ], 
+              [
+                -71.3766, 
+                41.893999
+              ], 
+              [
+                -71.3817, 
+                41.922699
+              ], 
+              [
+                -71.3816, 
+                41.922899
+              ], 
+              [
+                -71.381401, 
+                41.964799
+              ], 
+              [
+                -71.381501, 
+                41.966699
+              ], 
+              [
+                -71.381466, 
+                41.984998
+              ], 
+              [
+                -71.381401, 
+                42.018798
+              ], 
+              [
+                -71.458104, 
+                42.017762
+              ], 
+              [
+                -71.498258, 
+                42.01722
+              ], 
+              [
+                -71.499905, 
+                42.017198
+              ], 
+              [
+                -71.500905, 
+                42.017098
+              ], 
+              [
+                -71.527306, 
+                42.015098
+              ], 
+              [
+                -71.527606, 
+                42.014998
+              ], 
+              [
+                -71.559439, 
+                42.014342
+              ], 
+              [
+                -71.576908, 
+                42.014098
+              ], 
+              [
+                -71.591104, 
+                42.013713
+              ], 
+              [
+                -71.799242, 
+                42.008065
+              ], 
+              [
+                -71.80065, 
+                42.023569
+              ], 
+              [
+                -72.059752, 
+                42.027339
+              ], 
+              [
+                -72.10216, 
+                42.028962
+              ], 
+              [
+                -72.135687, 
+                42.030245
+              ], 
+              [
+                -72.135715, 
+                42.030245
+              ], 
+              [
+                -72.198828, 
+                42.030982
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 37, 
+      "properties": {
+        "CENSUSAREA": 7800.058, 
+        "GEO_ID": "0400000US25", 
+        "ISO": "US-MA", 
+        "LSAD": "", 
+        "NAME": "Massachusetts", 
+        "NAME_1": "Massachusetts", 
+        "STATE": "MA"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -85.566441, 
+                45.760222
+              ], 
+              [
+                -85.54956, 
+                45.757266
+              ], 
+              [
+                -85.54375, 
+                45.751413
+              ], 
+              [
+                -85.53562, 
+                45.750394
+              ], 
+              [
+                -85.525237, 
+                45.750462
+              ], 
+              [
+                -85.506133, 
+                45.754715
+              ], 
+              [
+                -85.501267, 
+                45.754415
+              ], 
+              [
+                -85.497656, 
+                45.746246
+              ], 
+              [
+                -85.503758, 
+                45.742771
+              ], 
+              [
+                -85.508818, 
+                45.742358
+              ], 
+              [
+                -85.510091, 
+                45.742888
+              ], 
+              [
+                -85.508522, 
+                45.744991
+              ], 
+              [
+                -85.50904, 
+                45.748488
+              ], 
+              [
+                -85.515145, 
+                45.749451
+              ], 
+              [
+                -85.520569, 
+                45.744745
+              ], 
+              [
+                -85.521911, 
+                45.739419
+              ], 
+              [
+                -85.520803, 
+                45.737247
+              ], 
+              [
+                -85.510895, 
+                45.734414
+              ], 
+              [
+                -85.498777, 
+                45.726291
+              ], 
+              [
+                -85.494154, 
+                45.705378
+              ], 
+              [
+                -85.494016, 
+                45.698476
+              ], 
+              [
+                -85.5028, 
+                45.690998
+              ], 
+              [
+                -85.506104, 
+                45.681148
+              ], 
+              [
+                -85.503767, 
+                45.670472
+              ], 
+              [
+                -85.500451, 
+                45.664298
+              ], 
+              [
+                -85.490252, 
+                45.652122
+              ], 
+              [
+                -85.487026, 
+                45.621211
+              ], 
+              [
+                -85.491347, 
+                45.609665
+              ], 
+              [
+                -85.509276, 
+                45.596475
+              ], 
+              [
+                -85.518038, 
+                45.592912
+              ], 
+              [
+                -85.526895, 
+                45.59159
+              ], 
+              [
+                -85.530273, 
+                45.589253
+              ], 
+              [
+                -85.534064, 
+                45.578198
+              ], 
+              [
+                -85.541129, 
+                45.575045
+              ], 
+              [
+                -85.561634, 
+                45.572213
+              ], 
+              [
+                -85.618049, 
+                45.582647
+              ], 
+              [
+                -85.622741, 
+                45.586028
+              ], 
+              [
+                -85.630016, 
+                45.598166
+              ], 
+              [
+                -85.61985, 
+                45.624547
+              ], 
+              [
+                -85.608653, 
+                45.632008
+              ], 
+              [
+                -85.604521, 
+                45.639256
+              ], 
+              [
+                -85.604951, 
+                45.647599
+              ], 
+              [
+                -85.609295, 
+                45.658067
+              ], 
+              [
+                -85.604881, 
+                45.681932
+              ], 
+              [
+                -85.600842, 
+                45.68886
+              ], 
+              [
+                -85.590769, 
+                45.698051
+              ], 
+              [
+                -85.583724, 
+                45.700796
+              ], 
+              [
+                -85.572309, 
+                45.711449
+              ], 
+              [
+                -85.565132, 
+                45.730719
+              ], 
+              [
+                -85.564774, 
+                45.745462
+              ], 
+              [
+                -85.567128, 
+                45.750419
+              ], 
+              [
+                -85.567781, 
+                45.757655
+              ], 
+              [
+                -85.566441, 
+                45.760222
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -88.684434, 
+                48.115785
+              ], 
+              [
+                -88.675628, 
+                48.120444
+              ], 
+              [
+                -88.676395, 
+                48.124876
+              ], 
+              [
+                -88.674192, 
+                48.127165
+              ], 
+              [
+                -88.656915, 
+                48.139225
+              ], 
+              [
+                -88.614026, 
+                48.154797
+              ], 
+              [
+                -88.578413, 
+                48.16237
+              ], 
+              [
+                -88.547033, 
+                48.174891
+              ], 
+              [
+                -88.524753, 
+                48.165291
+              ], 
+              [
+                -88.501088, 
+                48.168181
+              ], 
+              [
+                -88.491961, 
+                48.175466
+              ], 
+              [
+                -88.482039, 
+                48.179915
+              ], 
+              [
+                -88.459735, 
+                48.183807
+              ], 
+              [
+                -88.447236, 
+                48.182916
+              ], 
+              [
+                -88.422601, 
+                48.190975
+              ], 
+              [
+                -88.418244, 
+                48.18037
+              ], 
+              [
+                -88.419875, 
+                48.170731
+              ], 
+              [
+                -88.427373, 
+                48.166764
+              ], 
+              [
+                -88.449502, 
+                48.163312
+              ], 
+              [
+                -88.459697, 
+                48.158551
+              ], 
+              [
+                -88.469573, 
+                48.152879
+              ], 
+              [
+                -88.4857, 
+                48.137683
+              ], 
+              [
+                -88.511902, 
+                48.121699
+              ], 
+              [
+                -88.566938, 
+                48.093719
+              ], 
+              [
+                -88.578053, 
+                48.084373
+              ], 
+              [
+                -88.578395, 
+                48.078003
+              ], 
+              [
+                -88.575869, 
+                48.075166
+              ], 
+              [
+                -88.573924, 
+                48.068861
+              ], 
+              [
+                -88.575048, 
+                48.064154
+              ], 
+              [
+                -88.579784, 
+                48.058669
+              ], 
+              [
+                -88.670073, 
+                48.011446
+              ], 
+              [
+                -88.718555, 
+                47.995134
+              ], 
+              [
+                -88.772357, 
+                47.981126
+              ], 
+              [
+                -88.791959, 
+                47.978938
+              ], 
+              [
+                -88.832063, 
+                47.965213
+              ], 
+              [
+                -88.852923, 
+                47.965322
+              ], 
+              [
+                -88.899184, 
+                47.9533
+              ], 
+              [
+                -88.918029, 
+                47.945605
+              ], 
+              [
+                -88.923573, 
+                47.937976
+              ], 
+              [
+                -88.962664, 
+                47.923512
+              ], 
+              [
+                -88.968903, 
+                47.909474
+              ], 
+              [
+                -88.968903, 
+                47.901675
+              ], 
+              [
+                -88.957985, 
+                47.895436
+              ], 
+              [
+                -88.942387, 
+                47.895436
+              ], 
+              [
+                -88.899698, 
+                47.902445
+              ], 
+              [
+                -88.898986, 
+                47.900685
+              ], 
+              [
+                -88.911665, 
+                47.891344
+              ], 
+              [
+                -88.998939, 
+                47.86749
+              ], 
+              [
+                -89.022736, 
+                47.858532
+              ], 
+              [
+                -89.044463, 
+                47.85575
+              ], 
+              [
+                -89.056412, 
+                47.852598
+              ], 
+              [
+                -89.107991, 
+                47.835705
+              ], 
+              [
+                -89.124134, 
+                47.828616
+              ], 
+              [
+                -89.157738, 
+                47.824015
+              ], 
+              [
+                -89.19017, 
+                47.831603
+              ], 
+              [
+                -89.192681, 
+                47.83343
+              ], 
+              [
+                -89.192207, 
+                47.84106
+              ], 
+              [
+                -89.201812, 
+                47.850243
+              ], 
+              [
+                -89.234533, 
+                47.851718
+              ], 
+              [
+                -89.235552, 
+                47.853774
+              ], 
+              [
+                -89.234535, 
+                47.855373
+              ], 
+              [
+                -89.228507, 
+                47.858039
+              ], 
+              [
+                -89.246774, 
+                47.871016
+              ], 
+              [
+                -89.250936, 
+                47.870377
+              ], 
+              [
+                -89.255202, 
+                47.876102
+              ], 
+              [
+                -89.247127, 
+                47.888503
+              ], 
+              [
+                -89.226327, 
+                47.895438
+              ], 
+              [
+                -89.22071, 
+                47.90085
+              ], 
+              [
+                -89.221332, 
+                47.908069
+              ], 
+              [
+                -89.214499, 
+                47.913895
+              ], 
+              [
+                -89.179154, 
+                47.93503
+              ], 
+              [
+                -89.095207, 
+                47.967922
+              ], 
+              [
+                -89.018303, 
+                47.992525
+              ], 
+              [
+                -88.994163, 
+                48.00229
+              ], 
+              [
+                -88.940886, 
+                48.01959
+              ], 
+              [
+                -88.931487, 
+                48.021637
+              ], 
+              [
+                -88.927529, 
+                48.019615
+              ], 
+              [
+                -88.915032, 
+                48.020681
+              ], 
+              [
+                -88.895069, 
+                48.029059
+              ], 
+              [
+                -88.896327, 
+                48.031801
+              ], 
+              [
+                -88.893701, 
+                48.03477
+              ], 
+              [
+                -88.835714, 
+                48.056752
+              ], 
+              [
+                -88.816084, 
+                48.057006
+              ], 
+              [
+                -88.810461, 
+                48.055247
+              ], 
+              [
+                -88.787556, 
+                48.063035
+              ], 
+              [
+                -88.772077, 
+                48.070502
+              ], 
+              [
+                -88.77183, 
+                48.079457
+              ], 
+              [
+                -88.764256, 
+                48.085189
+              ], 
+              [
+                -88.744458, 
+                48.092769
+              ], 
+              [
+                -88.728198, 
+                48.101914
+              ], 
+              [
+                -88.705586, 
+                48.111013
+              ], 
+              [
+                -88.695353, 
+                48.110549
+              ], 
+              [
+                -88.684434, 
+                48.115785
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -84.593232, 
+                45.817389
+              ], 
+              [
+                -84.594241, 
+                45.818776
+              ], 
+              [
+                -84.597043, 
+                45.822629
+              ], 
+              [
+                -84.61184, 
+                45.833429
+              ], 
+              [
+                -84.611893, 
+                45.833487
+              ], 
+              [
+                -84.612845, 
+                45.834528
+              ], 
+              [
+                -84.623863, 
+                45.846579
+              ], 
+              [
+                -84.629239, 
+                45.850014
+              ], 
+              [
+                -84.6397, 
+                45.852624
+              ], 
+              [
+                -84.650783, 
+                45.85921
+              ], 
+              [
+                -84.651336, 
+                45.862844
+              ], 
+              [
+                -84.646876, 
+                45.884642
+              ], 
+              [
+                -84.641804, 
+                45.885486
+              ], 
+              [
+                -84.629437, 
+                45.882578
+              ], 
+              [
+                -84.622515, 
+                45.87753
+              ], 
+              [
+                -84.6082, 
+                45.861631
+              ], 
+              [
+                -84.602922, 
+                45.85164
+              ], 
+              [
+                -84.589272, 
+                45.825795
+              ], 
+              [
+                -84.578328, 
+                45.820092
+              ], 
+              [
+                -84.538395, 
+                45.807843
+              ], 
+              [
+                -84.514441, 
+                45.81012
+              ], 
+              [
+                -84.492951, 
+                45.805343
+              ], 
+              [
+                -84.432472, 
+                45.786732
+              ], 
+              [
+                -84.426724, 
+                45.788194
+              ], 
+              [
+                -84.421267, 
+                45.792694
+              ], 
+              [
+                -84.419696, 
+                45.799823
+              ], 
+              [
+                -84.42159, 
+                45.805651
+              ], 
+              [
+                -84.419335, 
+                45.806747
+              ], 
+              [
+                -84.41091, 
+                45.797217
+              ], 
+              [
+                -84.403208, 
+                45.784394
+              ], 
+              [
+                -84.35602, 
+                45.771895
+              ], 
+              [
+                -84.356312, 
+                45.769495
+              ], 
+              [
+                -84.370241, 
+                45.75619
+              ], 
+              [
+                -84.372248, 
+                45.745784
+              ], 
+              [
+                -84.394292, 
+                45.735301
+              ], 
+              [
+                -84.3956, 
+                45.732925
+              ], 
+              [
+                -84.394038, 
+                45.727623
+              ], 
+              [
+                -84.405852, 
+                45.722417
+              ], 
+              [
+                -84.418902, 
+                45.721712
+              ], 
+              [
+                -84.430026, 
+                45.726307
+              ], 
+              [
+                -84.45104, 
+                45.727952
+              ], 
+              [
+                -84.469183, 
+                45.732246
+              ], 
+              [
+                -84.484128, 
+                45.73071
+              ], 
+              [
+                -84.500892, 
+                45.737259
+              ], 
+              [
+                -84.507476, 
+                45.744644
+              ], 
+              [
+                -84.509301, 
+                45.754336
+              ], 
+              [
+                -84.52506, 
+                45.764168
+              ], 
+              [
+                -84.549902, 
+                45.789859
+              ], 
+              [
+                -84.561562, 
+                45.796213
+              ], 
+              [
+                -84.58195, 
+                45.802633
+              ], 
+              [
+                -84.587572, 
+                45.8067
+              ], 
+              [
+                -84.590198, 
+                45.813217
+              ], 
+              [
+                -84.593232, 
+                45.817389
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -86.093536, 
+                45.007838
+              ], 
+              [
+                -86.115699, 
+                44.999093
+              ], 
+              [
+                -86.133655, 
+                44.996874
+              ], 
+              [
+                -86.154824, 
+                45.002394
+              ], 
+              [
+                -86.156689, 
+                45.010535
+              ], 
+              [
+                -86.154557, 
+                45.018102
+              ], 
+              [
+                -86.141644, 
+                45.040251
+              ], 
+              [
+                -86.138095, 
+                45.043038
+              ], 
+              [
+                -86.117908, 
+                45.048478
+              ], 
+              [
+                -86.093166, 
+                45.041492
+              ], 
+              [
+                -86.079103, 
+                45.030795
+              ], 
+              [
+                -86.093451, 
+                45.03166
+              ], 
+              [
+                -86.097094, 
+                45.030128
+              ], 
+              [
+                -86.100315, 
+                45.02624
+              ], 
+              [
+                -86.101894, 
+                45.022811
+              ], 
+              [
+                -86.101214, 
+                45.018101
+              ], 
+              [
+                -86.093536, 
+                45.007838
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -86.033174, 
+                45.15842
+              ], 
+              [
+                -86.005946, 
+                45.155751
+              ], 
+              [
+                -85.993194, 
+                45.152805
+              ], 
+              [
+                -85.989412, 
+                45.151069
+              ], 
+              [
+                -85.976803, 
+                45.138363
+              ], 
+              [
+                -85.976434, 
+                45.120706
+              ], 
+              [
+                -85.980433, 
+                45.113046
+              ], 
+              [
+                -85.984095, 
+                45.087073
+              ], 
+              [
+                -85.982799, 
+                45.080787
+              ], 
+              [
+                -85.977082, 
+                45.072993
+              ], 
+              [
+                -85.976883, 
+                45.06266
+              ], 
+              [
+                -85.99736, 
+                45.055929
+              ], 
+              [
+                -86.013073, 
+                45.063774
+              ], 
+              [
+                -86.019874, 
+                45.071665
+              ], 
+              [
+                -86.037129, 
+                45.086576
+              ], 
+              [
+                -86.052424, 
+                45.095311
+              ], 
+              [
+                -86.058653, 
+                45.100776
+              ], 
+              [
+                -86.060396, 
+                45.104617
+              ], 
+              [
+                -86.065016, 
+                45.140266
+              ], 
+              [
+                -86.059393, 
+                45.152291
+              ], 
+              [
+                -86.050473, 
+                45.158418
+              ], 
+              [
+                -86.04443, 
+                45.159582
+              ], 
+              [
+                -86.033174, 
+                45.15842
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -83.372198, 
+                41.874122
+              ], 
+              [
+                -83.372445, 
+                41.874477
+              ], 
+              [
+                -83.379705, 
+                41.871729
+              ], 
+              [
+                -83.381955, 
+                41.870877
+              ], 
+              [
+                -83.389289, 
+                41.861668
+              ], 
+              [
+                -83.393822, 
+                41.855976
+              ], 
+              [
+                -83.39622, 
+                41.852965
+              ], 
+              [
+                -83.40822, 
+                41.832654
+              ], 
+              [
+                -83.409596, 
+                41.830325
+              ], 
+              [
+                -83.422316, 
+                41.822278
+              ], 
+              [
+                -83.422391, 
+                41.822255
+              ], 
+              [
+                -83.425393, 
+                41.821316
+              ], 
+              [
+                -83.426321, 
+                41.821026
+              ], 
+              [
+                -83.431183, 
+                41.819506
+              ], 
+              [
+                -83.434204, 
+                41.818562
+              ], 
+              [
+                -83.435946, 
+                41.816823
+              ], 
+              [
+                -83.436298, 
+                41.816471
+              ], 
+              [
+                -83.439612, 
+                41.813162
+              ], 
+              [
+                -83.441668, 
+                41.808646
+              ], 
+              [
+                -83.442316, 
+                41.80119
+              ], 
+              [
+                -83.442521, 
+                41.79883
+              ], 
+              [
+                -83.442843, 
+                41.795121
+              ], 
+              [
+                -83.443364, 
+                41.789118
+              ], 
+              [
+                -83.437935, 
+                41.771086
+              ], 
+              [
+                -83.437516, 
+                41.769694
+              ], 
+              [
+                -83.437231, 
+                41.76915
+              ], 
+              [
+                -83.437197, 
+                41.769085
+              ], 
+              [
+                -83.435571, 
+                41.765983
+              ], 
+              [
+                -83.434238, 
+                41.763439
+              ], 
+              [
+                -83.432973, 
+                41.761025
+              ], 
+              [
+                -83.432832, 
+                41.760756
+              ], 
+              [
+                -83.432078, 
+                41.759316
+              ], 
+              [
+                -83.431951, 
+                41.759074
+              ], 
+              [
+                -83.431103, 
+                41.757457
+              ], 
+              [
+                -83.427377, 
+                41.750346
+              ], 
+              [
+                -83.427336, 
+                41.750267
+              ], 
+              [
+                -83.427308, 
+                41.750214
+              ], 
+              [
+                -83.42643, 
+                41.747639
+              ], 
+              [
+                -83.42418, 
+                41.741042
+              ], 
+              [
+                -83.424076, 
+                41.740738
+              ], 
+              [
+                -83.424155, 
+                41.74071
+              ], 
+              [
+                -83.43436, 
+                41.737058
+              ], 
+              [
+                -83.451897, 
+                41.734486
+              ], 
+              [
+                -83.453832, 
+                41.732647
+              ], 
+              [
+                -83.497733, 
+                41.731847
+              ], 
+              [
+                -83.499733, 
+                41.731647
+              ], 
+              [
+                -83.503433, 
+                41.731547
+              ], 
+              [
+                -83.504334, 
+                41.731547
+              ], 
+              [
+                -83.585235, 
+                41.729348
+              ], 
+              [
+                -83.593835, 
+                41.729148
+              ], 
+              [
+                -83.595235, 
+                41.729148
+              ], 
+              [
+                -83.636636, 
+                41.727849
+              ], 
+              [
+                -83.639636, 
+                41.727749
+              ], 
+              [
+                -83.665937, 
+                41.726949
+              ], 
+              [
+                -83.685337, 
+                41.726449
+              ], 
+              [
+                -83.763155, 
+                41.72391
+              ], 
+              [
+                -83.880387, 
+                41.720086
+              ], 
+              [
+                -83.880539, 
+                41.720081
+              ], 
+              [
+                -84.360419, 
+                41.706925
+              ], 
+              [
+                -84.396547, 
+                41.705935
+              ], 
+              [
+                -84.39943, 
+                41.705761
+              ], 
+              [
+                -84.399546, 
+                41.705758
+              ], 
+              [
+                -84.438067, 
+                41.704903
+              ], 
+              [
+                -84.806082, 
+                41.696089
+              ], 
+              [
+                -84.806018, 
+                41.707485
+              ], 
+              [
+                -84.806042, 
+                41.720544
+              ], 
+              [
+                -84.806065, 
+                41.732909
+              ], 
+              [
+                -84.806074, 
+                41.737603
+              ], 
+              [
+                -84.806134, 
+                41.743115
+              ], 
+              [
+                -84.818873, 
+                41.760059
+              ], 
+              [
+                -84.82513, 
+                41.759991
+              ], 
+              [
+                -84.825196, 
+                41.75999
+              ], 
+              [
+                -84.932484, 
+                41.759691
+              ], 
+              [
+                -84.96086, 
+                41.759438
+              ], 
+              [
+                -84.961562, 
+                41.759552
+              ], 
+              [
+                -84.971551, 
+                41.759527
+              ], 
+              [
+                -84.972803, 
+                41.759366
+              ], 
+              [
+                -85.037817, 
+                41.759801
+              ], 
+              [
+                -85.039436, 
+                41.759985
+              ], 
+              [
+                -85.117267, 
+                41.7597
+              ], 
+              [
+                -85.123102, 
+                41.759743
+              ], 
+              [
+                -85.17223, 
+                41.759618
+              ], 
+              [
+                -85.196637, 
+                41.759735
+              ], 
+              [
+                -85.196774, 
+                41.759735
+              ], 
+              [
+                -85.232835, 
+                41.759839
+              ], 
+              [
+                -85.272216, 
+                41.759999
+              ], 
+              [
+                -85.272951, 
+                41.759911
+              ], 
+              [
+                -85.273713, 
+                41.75977
+              ], 
+              [
+                -85.292099, 
+                41.759962
+              ], 
+              [
+                -85.292178, 
+                41.759963
+              ], 
+              [
+                -85.298365, 
+                41.760028
+              ], 
+              [
+                -85.30814, 
+                41.760097
+              ], 
+              [
+                -85.318129, 
+                41.759983
+              ], 
+              [
+                -85.330623, 
+                41.759982
+              ], 
+              [
+                -85.350174, 
+                41.759908
+              ], 
+              [
+                -85.379133, 
+                41.759875
+              ], 
+              [
+                -85.427553, 
+                41.759706
+              ], 
+              [
+                -85.432471, 
+                41.759684
+              ], 
+              [
+                -85.515959, 
+                41.759352
+              ], 
+              [
+                -85.518251, 
+                41.759513
+              ], 
+              [
+                -85.607548, 
+                41.759079
+              ], 
+              [
+                -85.608312, 
+                41.759193
+              ], 
+              [
+                -85.622608, 
+                41.759049
+              ], 
+              [
+                -85.624987, 
+                41.759093
+              ], 
+              [
+                -85.632714, 
+                41.759164
+              ], 
+              [
+                -85.647683, 
+                41.759125
+              ], 
+              [
+                -85.650738, 
+                41.759103
+              ], 
+              [
+                -85.65975, 
+                41.759101
+              ], 
+              [
+                -85.724534, 
+                41.759085
+              ], 
+              [
+                -85.749992, 
+                41.759091
+              ], 
+              [
+                -85.750469, 
+                41.75909
+              ], 
+              [
+                -85.775039, 
+                41.759147
+              ], 
+              [
+                -85.791335, 
+                41.759051
+              ], 
+              [
+                -85.791363, 
+                41.759051
+              ], 
+              [
+                -85.872041, 
+                41.759365
+              ], 
+              [
+                -85.874997, 
+                41.759341
+              ], 
+              [
+                -85.888825, 
+                41.759422
+              ], 
+              [
+                -85.974901, 
+                41.759849
+              ], 
+              [
+                -85.97498, 
+                41.759849
+              ], 
+              [
+                -85.991302, 
+                41.759949
+              ], 
+              [
+                -86.003683, 
+                41.760007
+              ], 
+              [
+                -86.062572, 
+                41.760283
+              ], 
+              [
+                -86.12506, 
+                41.760576
+              ], 
+              [
+                -86.12546, 
+                41.76056
+              ], 
+              [
+                -86.127844, 
+                41.760592
+              ], 
+              [
+                -86.21759, 
+                41.760016
+              ], 
+              [
+                -86.22607, 
+                41.760016
+              ], 
+              [
+                -86.226097, 
+                41.760016
+              ], 
+              [
+                -86.265496, 
+                41.760207
+              ], 
+              [
+                -86.501773, 
+                41.759553
+              ], 
+              [
+                -86.519318, 
+                41.759447
+              ], 
+              [
+                -86.524223, 
+                41.759456
+              ], 
+              [
+                -86.640044, 
+                41.759671
+              ], 
+              [
+                -86.641186, 
+                41.759633
+              ], 
+              [
+                -86.746521, 
+                41.759982
+              ], 
+              [
+                -86.748096, 
+                41.759967
+              ], 
+              [
+                -86.800611, 
+                41.760251
+              ], 
+              [
+                -86.800707, 
+                41.76024
+              ], 
+              [
+                -86.801578, 
+                41.76024
+              ], 
+              [
+                -86.804427, 
+                41.76024
+              ], 
+              [
+                -86.823628, 
+                41.76024
+              ], 
+              [
+                -86.824828, 
+                41.76024
+              ], 
+              [
+                -86.82355, 
+                41.760898
+              ], 
+              [
+                -86.802065, 
+                41.771956
+              ], 
+              [
+                -86.801772, 
+                41.772107
+              ], 
+              [
+                -86.794712, 
+                41.77574
+              ], 
+              [
+                -86.794632, 
+                41.775782
+              ], 
+              [
+                -86.79351, 
+                41.776359
+              ], 
+              [
+                -86.777943, 
+                41.784371
+              ], 
+              [
+                -86.777227, 
+                41.78474
+              ], 
+              [
+                -86.77608, 
+                41.785399
+              ], 
+              [
+                -86.774798, 
+                41.786137
+              ], 
+              [
+                -86.751292, 
+                41.799652
+              ], 
+              [
+                -86.735207, 
+                41.808901
+              ], 
+              [
+                -86.717037, 
+                41.819349
+              ], 
+              [
+                -86.715578, 
+                41.820334
+              ], 
+              [
+                -86.697541, 
+                41.832513
+              ], 
+              [
+                -86.679672, 
+                41.844579
+              ], 
+              [
+                -86.679355, 
+                41.844793
+              ], 
+              [
+                -86.648971, 
+                41.869659
+              ], 
+              [
+                -86.6476, 
+                41.870782
+              ], 
+              [
+                -86.645296, 
+                41.872668
+              ], 
+              [
+                -86.644048, 
+                41.873689
+              ], 
+              [
+                -86.643965, 
+                41.873757
+              ], 
+              [
+                -86.629867, 
+                41.885295
+              ], 
+              [
+                -86.629344, 
+                41.885723
+              ], 
+              [
+                -86.623837, 
+                41.89023
+              ], 
+              [
+                -86.623774, 
+                41.890282
+              ], 
+              [
+                -86.621259, 
+                41.89234
+              ], 
+              [
+                -86.619442, 
+                41.893827
+              ], 
+              [
+                -86.616978, 
+                41.896625
+              ], 
+              [
+                -86.616886, 
+                41.89673
+              ], 
+              [
+                -86.616029, 
+                41.897703
+              ], 
+              [
+                -86.612251, 
+                41.901993
+              ], 
+              [
+                -86.61208, 
+                41.902188
+              ], 
+              [
+                -86.611511, 
+                41.902833
+              ], 
+              [
+                -86.610896, 
+                41.903532
+              ], 
+              [
+                -86.600524, 
+                41.91531
+              ], 
+              [
+                -86.597899, 
+                41.918291
+              ], 
+              [
+                -86.596802, 
+                41.919964
+              ], 
+              [
+                -86.588662, 
+                41.93238
+              ], 
+              [
+                -86.587827, 
+                41.933653
+              ], 
+              [
+                -86.587763, 
+                41.933752
+              ], 
+              [
+                -86.586721, 
+                41.935341
+              ], 
+              [
+                -86.585696, 
+                41.936904
+              ], 
+              [
+                -86.585264, 
+                41.937562
+              ], 
+              [
+                -86.582894, 
+                41.941179
+              ], 
+              [
+                -86.582197, 
+                41.942241
+              ], 
+              [
+                -86.581518, 
+                41.943765
+              ], 
+              [
+                -86.564722, 
+                41.981427
+              ], 
+              [
+                -86.564276, 
+                41.982427
+              ], 
+              [
+                -86.564077, 
+                41.982874
+              ], 
+              [
+                -86.563904, 
+                41.983262
+              ], 
+              [
+                -86.563598, 
+                41.983948
+              ], 
+              [
+                -86.561542, 
+                41.988559
+              ], 
+              [
+                -86.556537, 
+                41.999782
+              ], 
+              [
+                -86.556421, 
+                42.000042
+              ], 
+              [
+                -86.549328, 
+                42.01092
+              ], 
+              [
+                -86.549237, 
+                42.011059
+              ], 
+              [
+                -86.545288, 
+                42.017115
+              ], 
+              [
+                -86.544867, 
+                42.017761
+              ], 
+              [
+                -86.541718, 
+                42.02259
+              ], 
+              [
+                -86.541089, 
+                42.023555
+              ], 
+              [
+                -86.536063, 
+                42.031262
+              ], 
+              [
+                -86.533855, 
+                42.034648
+              ], 
+              [
+                -86.532934, 
+                42.036061
+              ], 
+              [
+                -86.53264, 
+                42.036512
+              ], 
+              [
+                -86.532161, 
+                42.037246
+              ], 
+              [
+                -86.508856, 
+                42.072986
+              ], 
+              [
+                -86.501322, 
+                42.08454
+              ], 
+              [
+                -86.490122, 
+                42.105139
+              ], 
+              [
+                -86.485223, 
+                42.118239
+              ], 
+              [
+                -86.479031, 
+                42.123519
+              ], 
+              [
+                -86.466576, 
+                42.134138
+              ], 
+              [
+                -86.466262, 
+                42.134406
+              ], 
+              [
+                -86.464913, 
+                42.135752
+              ], 
+              [
+                -86.464897, 
+                42.135767
+              ], 
+              [
+                -86.464356, 
+                42.136308
+              ], 
+              [
+                -86.463967, 
+                42.136696
+              ], 
+              [
+                -86.463685, 
+                42.136977
+              ], 
+              [
+                -86.440762, 
+                42.159847
+              ], 
+              [
+                -86.439416, 
+                42.16119
+              ], 
+              [
+                -86.437909, 
+                42.162694
+              ], 
+              [
+                -86.437148, 
+                42.163453
+              ], 
+              [
+                -86.404146, 
+                42.196379
+              ], 
+              [
+                -86.402183, 
+                42.198542
+              ], 
+              [
+                -86.398915, 
+                42.202143
+              ], 
+              [
+                -86.398536, 
+                42.202561
+              ], 
+              [
+                -86.397692, 
+                42.203491
+              ], 
+              [
+                -86.394997, 
+                42.20646
+              ], 
+              [
+                -86.394183, 
+                42.207357
+              ], 
+              [
+                -86.393565, 
+                42.208039
+              ], 
+              [
+                -86.393518, 
+                42.20809
+              ], 
+              [
+                -86.386591, 
+                42.215723
+              ], 
+              [
+                -86.385179, 
+                42.217279
+              ], 
+              [
+                -86.383665, 
+                42.219207
+              ], 
+              [
+                -86.383585, 
+                42.21931
+              ], 
+              [
+                -86.381434, 
+                42.222048
+              ], 
+              [
+                -86.380407, 
+                42.223357
+              ], 
+              [
+                -86.380035, 
+                42.22383
+              ], 
+              [
+                -86.36488, 
+                42.243133
+              ], 
+              [
+                -86.356218, 
+                42.254166
+              ], 
+              [
+                -86.321803, 
+                42.310743
+              ], 
+              [
+                -86.297168, 
+                42.358207
+              ], 
+              [
+                -86.284448, 
+                42.394563
+              ], 
+              [
+                -86.284969, 
+                42.401814
+              ], 
+              [
+                -86.276878, 
+                42.413317
+              ], 
+              [
+                -86.273893, 
+                42.41928
+              ], 
+              [
+                -86.261573, 
+                42.443894
+              ], 
+              [
+                -86.24971, 
+                42.480212
+              ], 
+              [
+                -86.241446, 
+                42.534697
+              ], 
+              [
+                -86.240642, 
+                42.54
+              ], 
+              [
+                -86.23528, 
+                42.564958
+              ], 
+              [
+                -86.235254, 
+                42.565023
+              ], 
+              [
+                -86.234755, 
+                42.566302
+              ], 
+              [
+                -86.234594, 
+                42.566715
+              ], 
+              [
+                -86.23119, 
+                42.575435
+              ], 
+              [
+                -86.228082, 
+                42.583397
+              ], 
+              [
+                -86.226037, 
+                42.592811
+              ], 
+              [
+                -86.225978, 
+                42.593084
+              ], 
+              [
+                -86.225613, 
+                42.594765
+              ], 
+              [
+                -86.22905, 
+                42.637693
+              ], 
+              [
+                -86.226638, 
+                42.644922
+              ], 
+              [
+                -86.21602, 
+                42.664413
+              ], 
+              [
+                -86.208654, 
+                42.69209
+              ], 
+              [
+                -86.206834, 
+                42.719424
+              ], 
+              [
+                -86.208309, 
+                42.762789
+              ], 
+              [
+                -86.208886, 
+                42.76754
+              ], 
+              [
+                -86.210863, 
+                42.783832
+              ], 
+              [
+                -86.211815, 
+                42.833236
+              ], 
+              [
+                -86.210737, 
+                42.859128
+              ], 
+              [
+                -86.214138, 
+                42.883555
+              ], 
+              [
+                -86.216209, 
+                42.919007
+              ], 
+              [
+                -86.226305, 
+                42.988284
+              ], 
+              [
+                -86.232707, 
+                43.015762
+              ], 
+              [
+                -86.244277, 
+                43.049681
+              ], 
+              [
+                -86.250069, 
+                43.057489
+              ], 
+              [
+                -86.250517, 
+                43.066993
+              ], 
+              [
+                -86.254646, 
+                43.083409
+              ], 
+              [
+                -86.271996, 
+                43.118365
+              ], 
+              [
+                -86.280756, 
+                43.136015
+              ], 
+              [
+                -86.299048, 
+                43.166465
+              ], 
+              [
+                -86.311336, 
+                43.18692
+              ], 
+              [
+                -86.311887, 
+                43.187837
+              ], 
+              [
+                -86.316259, 
+                43.195114
+              ], 
+              [
+                -86.329836, 
+                43.2158
+              ], 
+              [
+                -86.344643, 
+                43.23836
+              ], 
+              [
+                -86.348647, 
+                43.244459
+              ], 
+              [
+                -86.34891, 
+                43.24486
+              ], 
+              [
+                -86.349801, 
+                43.246217
+              ], 
+              [
+                -86.350027, 
+                43.246562
+              ], 
+              [
+                -86.352192, 
+                43.24986
+              ], 
+              [
+                -86.352314, 
+                43.250047
+              ], 
+              [
+                -86.354505, 
+                43.253385
+              ], 
+              [
+                -86.357996, 
+                43.258703
+              ], 
+              [
+                -86.382882, 
+                43.29662
+              ], 
+              [
+                -86.383821, 
+                43.298051
+              ], 
+              [
+                -86.386096, 
+                43.301516
+              ], 
+              [
+                -86.386374, 
+                43.301941
+              ], 
+              [
+                -86.388493, 
+                43.305168
+              ], 
+              [
+                -86.38941, 
+                43.306565
+              ], 
+              [
+                -86.392124, 
+                43.310701
+              ], 
+              [
+                -86.393385, 
+                43.312622
+              ], 
+              [
+                -86.39575, 
+                43.316225
+              ], 
+              [
+                -86.401684, 
+                43.327135
+              ], 
+              [
+                -86.40301, 
+                43.329572
+              ], 
+              [
+                -86.403541, 
+                43.330548
+              ], 
+              [
+                -86.404831, 
+                43.33292
+              ], 
+              [
+                -86.407832, 
+                43.338436
+              ], 
+              [
+                -86.411941, 
+                43.347209
+              ], 
+              [
+                -86.427585, 
+                43.380607
+              ], 
+              [
+                -86.434757, 
+                43.395919
+              ], 
+              [
+                -86.434842, 
+                43.3961
+              ], 
+              [
+                -86.435124, 
+                43.396702
+              ], 
+              [
+                -86.435271, 
+                43.397083
+              ], 
+              [
+                -86.437896, 
+                43.40389
+              ], 
+              [
+                -86.438028, 
+                43.404231
+              ], 
+              [
+                -86.438267, 
+                43.404851
+              ], 
+              [
+                -86.438875, 
+                43.406427
+              ], 
+              [
+                -86.448479, 
+                43.431329
+              ], 
+              [
+                -86.448743, 
+                43.432013
+              ], 
+              [
+                -86.45457, 
+                43.449475
+              ], 
+              [
+                -86.456083, 
+                43.45401
+              ], 
+              [
+                -86.456845, 
+                43.456294
+              ], 
+              [
+                -86.457561, 
+                43.458441
+              ], 
+              [
+                -86.462195, 
+                43.472328
+              ], 
+              [
+                -86.468747, 
+                43.491963
+              ], 
+              [
+                -86.468754, 
+                43.491979
+              ], 
+              [
+                -86.468919, 
+                43.492344
+              ], 
+              [
+                -86.476956, 
+                43.510184
+              ], 
+              [
+                -86.477424, 
+                43.511223
+              ], 
+              [
+                -86.478716, 
+                43.514091
+              ], 
+              [
+                -86.479276, 
+                43.515335
+              ], 
+              [
+                -86.479552, 
+                43.51575
+              ], 
+              [
+                -86.481158, 
+                43.518158
+              ], 
+              [
+                -86.48165, 
+                43.518896
+              ], 
+              [
+                -86.48187, 
+                43.519225
+              ], 
+              [
+                -86.482255, 
+                43.519803
+              ], 
+              [
+                -86.483043, 
+                43.520984
+              ], 
+              [
+                -86.483083, 
+                43.521045
+              ], 
+              [
+                -86.505799, 
+                43.555112
+              ], 
+              [
+                -86.509205, 
+                43.560221
+              ], 
+              [
+                -86.509339, 
+                43.560421
+              ], 
+              [
+                -86.512317, 
+                43.564887
+              ], 
+              [
+                -86.514168, 
+                43.567664
+              ], 
+              [
+                -86.515108, 
+                43.569074
+              ], 
+              [
+                -86.515838, 
+                43.570169
+              ], 
+              [
+                -86.516295, 
+                43.570854
+              ], 
+              [
+                -86.516725, 
+                43.571499
+              ], 
+              [
+                -86.517493, 
+                43.572651
+              ], 
+              [
+                -86.518698, 
+                43.574458
+              ], 
+              [
+                -86.519912, 
+                43.576278
+              ], 
+              [
+                -86.520205, 
+                43.576718
+              ], 
+              [
+                -86.520248, 
+                43.576796
+              ], 
+              [
+                -86.529507, 
+                43.593462
+              ], 
+              [
+                -86.537923, 
+                43.615965
+              ], 
+              [
+                -86.538497, 
+                43.617501
+              ], 
+              [
+                -86.538876, 
+                43.619957
+              ], 
+              [
+                -86.538921, 
+                43.620244
+              ], 
+              [
+                -86.539103, 
+                43.621424
+              ], 
+              [
+                -86.539291, 
+                43.622642
+              ], 
+              [
+                -86.539303, 
+                43.62272
+              ], 
+              [
+                -86.540916, 
+                43.633158
+              ], 
+              [
+                -86.540906, 
+                43.634047
+              ], 
+              [
+                -86.540896, 
+                43.634969
+              ], 
+              [
+                -86.54081, 
+                43.642516
+              ], 
+              [
+                -86.540787, 
+                43.644593
+              ], 
+              [
+                -86.54064, 
+                43.645499
+              ], 
+              [
+                -86.538763, 
+                43.657061
+              ], 
+              [
+                -86.538482, 
+                43.658795
+              ], 
+              [
+                -86.538186, 
+                43.659403
+              ], 
+              [
+                -86.529686, 
+                43.676849
+              ], 
+              [
+                -86.529179, 
+                43.677889
+              ], 
+              [
+                -86.527667, 
+                43.679552
+              ], 
+              [
+                -86.526863, 
+                43.680435
+              ], 
+              [
+                -86.517867, 
+                43.690326
+              ], 
+              [
+                -86.516152, 
+                43.692212
+              ], 
+              [
+                -86.514371, 
+                43.69417
+              ], 
+              [
+                -86.511008, 
+                43.697867
+              ], 
+              [
+                -86.510319, 
+                43.698625
+              ], 
+              [
+                -86.50762, 
+                43.701138
+              ], 
+              [
+                -86.50669, 
+                43.702004
+              ], 
+              [
+                -86.504679, 
+                43.703878
+              ], 
+              [
+                -86.503192, 
+                43.705263
+              ], 
+              [
+                -86.502989, 
+                43.705452
+              ], 
+              [
+                -86.501899, 
+                43.706467
+              ], 
+              [
+                -86.496187, 
+                43.711787
+              ], 
+              [
+                -86.488381, 
+                43.719056
+              ], 
+              [
+                -86.486983, 
+                43.720358
+              ], 
+              [
+                -86.481854, 
+                43.725135
+              ], 
+              [
+                -86.480655, 
+                43.726407
+              ], 
+              [
+                -86.480628, 
+                43.726436
+              ], 
+              [
+                -86.480267, 
+                43.726819
+              ], 
+              [
+                -86.463436, 
+                43.744687
+              ], 
+              [
+                -86.461554, 
+                43.746685
+              ], 
+              [
+                -86.460444, 
+                43.748366
+              ], 
+              [
+                -86.445532, 
+                43.770945
+              ], 
+              [
+                -86.445123, 
+                43.771564
+              ], 
+              [
+                -86.444903, 
+                43.772069
+              ], 
+              [
+                -86.442786, 
+                43.776934
+              ], 
+              [
+                -86.437722, 
+                43.788573
+              ], 
+              [
+                -86.437391, 
+                43.789334
+              ], 
+              [
+                -86.43114, 
+                43.815569
+              ], 
+              [
+                -86.431043, 
+                43.815975
+              ], 
+              [
+                -86.431063, 
+                43.819178
+              ], 
+              [
+                -86.431064, 
+                43.819406
+              ], 
+              [
+                -86.431172, 
+                43.836638
+              ], 
+              [
+                -86.431176, 
+                43.837177
+              ], 
+              [
+                -86.431182, 
+                43.838119
+              ], 
+              [
+                -86.431198, 
+                43.84072
+              ], 
+              [
+                -86.431238, 
+                43.840941
+              ], 
+              [
+                -86.432894, 
+                43.850013
+              ], 
+              [
+                -86.433471, 
+                43.853176
+              ], 
+              [
+                -86.433915, 
+                43.855608
+              ], 
+              [
+                -86.434078, 
+                43.85609
+              ], 
+              [
+                -86.434258, 
+                43.856623
+              ], 
+              [
+                -86.434985, 
+                43.858771
+              ], 
+              [
+                -86.445455, 
+                43.889726
+              ], 
+              [
+                -86.44573, 
+                43.892897
+              ], 
+              [
+                -86.445938, 
+                43.89529
+              ], 
+              [
+                -86.446463, 
+                43.901349
+              ], 
+              [
+                -86.447915, 
+                43.918089
+              ], 
+              [
+                -86.448009, 
+                43.918416
+              ], 
+              [
+                -86.448147, 
+                43.918897
+              ], 
+              [
+                -86.44955, 
+                43.92377
+              ], 
+              [
+                -86.451275, 
+                43.929763
+              ], 
+              [
+                -86.454401, 
+                43.940624
+              ], 
+              [
+                -86.462756, 
+                43.969655
+              ], 
+              [
+                -86.463087, 
+                43.970807
+              ], 
+              [
+                -86.463136, 
+                43.970976
+              ], 
+              [
+                -86.46322, 
+                43.971101
+              ], 
+              [
+                -86.481606, 
+                43.998599
+              ], 
+              [
+                -86.483331, 
+                44.001179
+              ], 
+              [
+                -86.484399, 
+                44.002382
+              ], 
+              [
+                -86.501738, 
+                44.021912
+              ], 
+              [
+                -86.502998, 
+                44.023839
+              ], 
+              [
+                -86.504133, 
+                44.025575
+              ], 
+              [
+                -86.50444, 
+                44.026044
+              ], 
+              [
+                -86.508827, 
+                44.032755
+              ], 
+              [
+                -86.514742, 
+                44.04792
+              ], 
+              [
+                -86.514704, 
+                44.057672
+              ], 
+              [
+                -86.514702, 
+                44.058119
+              ], 
+              [
+                -86.514573, 
+                44.05833
+              ], 
+              [
+                -86.509052, 
+                44.067408
+              ], 
+              [
+                -86.508764, 
+                44.067881
+              ], 
+              [
+                -86.508415, 
+                44.068206
+              ], 
+              [
+                -86.501243, 
+                44.074873
+              ], 
+              [
+                -86.500453, 
+                44.075607
+              ], 
+              [
+                -86.497937, 
+                44.077033
+              ], 
+              [
+                -86.469295, 
+                44.093267
+              ], 
+              [
+                -86.454895, 
+                44.101429
+              ], 
+              [
+                -86.447678, 
+                44.105519
+              ], 
+              [
+                -86.447126, 
+                44.105832
+              ], 
+              [
+                -86.446883, 
+                44.10597
+              ], 
+              [
+                -86.446609, 
+                44.106193
+              ], 
+              [
+                -86.429871, 
+                44.119782
+              ], 
+              [
+                -86.426873, 
+                44.123099
+              ], 
+              [
+                -86.425876, 
+                44.124203
+              ], 
+              [
+                -86.425162, 
+                44.124993
+              ], 
+              [
+                -86.421576, 
+                44.128962
+              ], 
+              [
+                -86.421108, 
+                44.12948
+              ], 
+              [
+                -86.400645, 
+                44.156848
+              ], 
+              [
+                -86.397874, 
+                44.161239
+              ], 
+              [
+                -86.397023, 
+                44.162589
+              ], 
+              [
+                -86.3965, 
+                44.163418
+              ], 
+              [
+                -86.386867, 
+                44.178685
+              ], 
+              [
+                -86.380188, 
+                44.189272
+              ], 
+              [
+                -86.380062, 
+                44.189472
+              ], 
+              [
+                -86.362847, 
+                44.208113
+              ], 
+              [
+                -86.354592, 
+                44.223811
+              ], 
+              [
+                -86.354313, 
+                44.224342
+              ], 
+              [
+                -86.351638, 
+                44.229429
+              ], 
+              [
+                -86.349294, 
+                44.235459
+              ], 
+              [
+                -86.343793, 
+                44.249608
+              ], 
+              [
+                -86.327287, 
+                44.263057
+              ], 
+              [
+                -86.326902, 
+                44.263781
+              ], 
+              [
+                -86.319063, 
+                44.278503
+              ], 
+              [
+                -86.318328, 
+                44.279884
+              ], 
+              [
+                -86.316651, 
+                44.283034
+              ], 
+              [
+                -86.316513, 
+                44.283293
+              ], 
+              [
+                -86.316025, 
+                44.28421
+              ], 
+              [
+                -86.313612, 
+                44.287882
+              ], 
+              [
+                -86.312774, 
+                44.289158
+              ], 
+              [
+                -86.311943, 
+                44.290422
+              ], 
+              [
+                -86.304691, 
+                44.301459
+              ], 
+              [
+                -86.304433, 
+                44.301852
+              ], 
+              [
+                -86.300264, 
+                44.308197
+              ], 
+              [
+                -86.26871, 
+                44.345324
+              ], 
+              [
+                -86.251926, 
+                44.400984
+              ], 
+              [
+                -86.248083, 
+                44.420946
+              ], 
+              [
+                -86.24832, 
+                44.434758
+              ], 
+              [
+                -86.251843, 
+                44.451632
+              ], 
+              [
+                -86.251605, 
+                44.465443
+              ], 
+              [
+                -86.248914, 
+                44.483004
+              ], 
+              [
+                -86.248897, 
+                44.483024
+              ], 
+              [
+                -86.248816, 
+                44.483116
+              ], 
+              [
+                -86.243745, 
+                44.488929
+              ], 
+              [
+                -86.238743, 
+                44.501682
+              ], 
+              [
+                -86.233503, 
+                44.518278
+              ], 
+              [
+                -86.223788, 
+                44.549043
+              ], 
+              [
+                -86.220697, 
+                44.566742
+              ], 
+              [
+                -86.22545, 
+                44.59459
+              ], 
+              [
+                -86.231828, 
+                44.609107
+              ], 
+              [
+                -86.25395, 
+                44.64808
+              ], 
+              [
+                -86.259029, 
+                44.663654
+              ], 
+              [
+                -86.256796, 
+                44.686769
+              ], 
+              [
+                -86.254996, 
+                44.691935
+              ], 
+              [
+                -86.248474, 
+                44.699046
+              ], 
+              [
+                -86.232482, 
+                44.70605
+              ], 
+              [
+                -86.172201, 
+                44.720623
+              ], 
+              [
+                -86.169323, 
+                44.722448
+              ], 
+              [
+                -86.160585, 
+                44.727988
+              ], 
+              [
+                -86.160268, 
+                44.728189
+              ], 
+              [
+                -86.122946, 
+                44.727982
+              ], 
+              [
+                -86.122466, 
+                44.727979
+              ], 
+              [
+                -86.121125, 
+                44.727972
+              ], 
+              [
+                -86.120759, 
+                44.728048
+              ], 
+              [
+                -86.108303, 
+                44.730646
+              ], 
+              [
+                -86.106182, 
+                44.731088
+              ], 
+              [
+                -86.105473, 
+                44.731522
+              ], 
+              [
+                -86.09074, 
+                44.740544
+              ], 
+              [
+                -86.089186, 
+                44.741496
+              ], 
+              [
+                -86.077933, 
+                44.758234
+              ], 
+              [
+                -86.077068, 
+                44.760494
+              ], 
+              [
+                -86.076811, 
+                44.761167
+              ], 
+              [
+                -86.076719, 
+                44.761407
+              ], 
+              [
+                -86.074658, 
+                44.766792
+              ], 
+              [
+                -86.073506, 
+                44.769803
+              ], 
+              [
+                -86.073073, 
+                44.778393
+              ], 
+              [
+                -86.071746, 
+                44.804717
+              ], 
+              [
+                -86.065966, 
+                44.821522
+              ], 
+              [
+                -86.066031, 
+                44.834852
+              ], 
+              [
+                -86.071112, 
+                44.86542
+              ], 
+              [
+                -86.072468, 
+                44.884788
+              ], 
+              [
+                -86.07099, 
+                44.895876
+              ], 
+              [
+                -86.066745, 
+                44.905685
+              ], 
+              [
+                -86.058862, 
+                44.911012
+              ], 
+              [
+                -86.038332, 
+                44.915696
+              ], 
+              [
+                -86.031194, 
+                44.907349
+              ], 
+              [
+                -86.021513, 
+                44.902774
+              ], 
+              [
+                -86.009355, 
+                44.899454
+              ], 
+              [
+                -85.992535, 
+                44.900026
+              ], 
+              [
+                -85.980219, 
+                44.906136
+              ], 
+              [
+                -85.972824, 
+                44.914781
+              ], 
+              [
+                -85.967169, 
+                44.929484
+              ], 
+              [
+                -85.961603, 
+                44.935567
+              ], 
+              [
+                -85.952721, 
+                44.940758
+              ], 
+              [
+                -85.942099, 
+                44.954317
+              ], 
+              [
+                -85.938589, 
+                44.964559
+              ], 
+              [
+                -85.9316, 
+                44.968788
+              ], 
+              [
+                -85.915851, 
+                44.968307
+              ], 
+              [
+                -85.897626, 
+                44.962014
+              ], 
+              [
+                -85.891543, 
+                44.957783
+              ], 
+              [
+                -85.879934, 
+                44.943305
+              ], 
+              [
+                -85.869852, 
+                44.939031
+              ], 
+              [
+                -85.854304, 
+                44.938147
+              ], 
+              [
+                -85.83615, 
+                44.940256
+              ], 
+              [
+                -85.815451, 
+                44.945631
+              ], 
+              [
+                -85.807403, 
+                44.949814
+              ], 
+              [
+                -85.780439, 
+                44.977932
+              ], 
+              [
+                -85.778278, 
+                44.983075
+              ], 
+              [
+                -85.776207, 
+                45.000574
+              ], 
+              [
+                -85.771395, 
+                45.015181
+              ], 
+              [
+                -85.761943, 
+                45.023454
+              ], 
+              [
+                -85.746444, 
+                45.051229
+              ], 
+              [
+                -85.740836, 
+                45.055575
+              ], 
+              [
+                -85.712262, 
+                45.065622
+              ], 
+              [
+                -85.695715, 
+                45.076461
+              ], 
+              [
+                -85.681096, 
+                45.092693
+              ], 
+              [
+                -85.675671, 
+                45.10554
+              ], 
+              [
+                -85.674861, 
+                45.116216
+              ], 
+              [
+                -85.656024, 
+                45.145788
+              ], 
+              [
+                -85.618639, 
+                45.186771
+              ], 
+              [
+                -85.613174, 
+                45.184624
+              ], 
+              [
+                -85.611684, 
+                45.181104
+              ], 
+              [
+                -85.606963, 
+                45.178477
+              ], 
+              [
+                -85.593064, 
+                45.178527
+              ], 
+              [
+                -85.585986, 
+                45.180381
+              ], 
+              [
+                -85.564654, 
+                45.192546
+              ], 
+              [
+                -85.561809, 
+                45.200524
+              ], 
+              [
+                -85.551072, 
+                45.210742
+              ], 
+              [
+                -85.540497, 
+                45.210169
+              ], 
+              [
+                -85.526734, 
+                45.189316
+              ], 
+              [
+                -85.531461, 
+                45.177247
+              ], 
+              [
+                -85.536892, 
+                45.173385
+              ], 
+              [
+                -85.552179, 
+                45.167352
+              ], 
+              [
+                -85.56168, 
+                45.15894
+              ], 
+              [
+                -85.562104, 
+                45.156954
+              ], 
+              [
+                -85.563102, 
+                45.155358
+              ], 
+              [
+                -85.5639, 
+                45.154361
+              ], 
+              [
+                -85.564897, 
+                45.153962
+              ], 
+              [
+                -85.566493, 
+                45.153762
+              ], 
+              [
+                -85.568489, 
+                45.153762
+              ], 
+              [
+                -85.570178, 
+                45.155145
+              ], 
+              [
+                -85.573893, 
+                45.155488
+              ], 
+              [
+                -85.590434, 
+                45.153175
+              ], 
+              [
+                -85.599801, 
+                45.149286
+              ], 
+              [
+                -85.614319, 
+                45.127562
+              ], 
+              [
+                -85.609266, 
+                45.11351
+              ], 
+              [
+                -85.583198, 
+                45.071304
+              ], 
+              [
+                -85.573353, 
+                45.068382
+              ], 
+              [
+                -85.566066, 
+                45.059201
+              ], 
+              [
+                -85.56613, 
+                45.043633
+              ], 
+              [
+                -85.57016, 
+                45.041278
+              ], 
+              [
+                -85.573976, 
+                45.043361
+              ], 
+              [
+                -85.597181, 
+                45.040547
+              ], 
+              [
+                -85.599652, 
+                45.021749
+              ], 
+              [
+                -85.609123, 
+                45.013103
+              ], 
+              [
+                -85.621878, 
+                45.004529
+              ], 
+              [
+                -85.606588, 
+                44.990662
+              ], 
+              [
+                -85.604301, 
+                44.990983
+              ], 
+              [
+                -85.602356, 
+                44.974272
+              ], 
+              [
+                -85.602034, 
+                44.926743
+              ], 
+              [
+                -85.621403, 
+                44.923123
+              ], 
+              [
+                -85.625497, 
+                44.921107
+              ], 
+              [
+                -85.639842, 
+                44.890255
+              ], 
+              [
+                -85.645456, 
+                44.883645
+              ], 
+              [
+                -85.648932, 
+                44.87401
+              ], 
+              [
+                -85.652355, 
+                44.849092
+              ], 
+              [
+                -85.651435, 
+                44.831624
+              ], 
+              [
+                -85.641652, 
+                44.810816
+              ], 
+              [
+                -85.637, 
+                44.790078
+              ], 
+              [
+                -85.640781, 
+                44.775561
+              ], 
+              [
+                -85.640216, 
+                44.775051
+              ], 
+              [
+                -85.636097, 
+                44.771329
+              ], 
+              [
+                -85.627982, 
+                44.767508
+              ], 
+              [
+                -85.624541, 
+                44.767038
+              ], 
+              [
+                -85.623607, 
+                44.766911
+              ], 
+              [
+                -85.620551, 
+                44.766494
+              ], 
+              [
+                -85.619648, 
+                44.766371
+              ], 
+              [
+                -85.610776, 
+                44.76516
+              ], 
+              [
+                -85.607701, 
+                44.765363
+              ], 
+              [
+                -85.605586, 
+                44.765502
+              ], 
+              [
+                -85.599874, 
+                44.765878
+              ], 
+              [
+                -85.599256, 
+                44.765919
+              ], 
+              [
+                -85.599103, 
+                44.765996
+              ], 
+              [
+                -85.593833, 
+                44.768651
+              ], 
+              [
+                -85.593571, 
+                44.768783
+              ], 
+              [
+                -85.593474, 
+                44.769348
+              ], 
+              [
+                -85.593449, 
+                44.769499
+              ], 
+              [
+                -85.591852, 
+                44.778839
+              ], 
+              [
+                -85.591145, 
+                44.782981
+              ], 
+              [
+                -85.591124, 
+                44.7831
+              ], 
+              [
+                -85.590985, 
+                44.783914
+              ], 
+              [
+                -85.581717, 
+                44.807784
+              ], 
+              [
+                -85.581392, 
+                44.808294
+              ], 
+              [
+                -85.545891, 
+                44.864024
+              ], 
+              [
+                -85.539042, 
+                44.868868
+              ], 
+              [
+                -85.532931, 
+                44.87319
+              ], 
+              [
+                -85.530729, 
+                44.889182
+              ], 
+              [
+                -85.530711, 
+                44.889314
+              ], 
+              [
+                -85.530649, 
+                44.889763
+              ], 
+              [
+                -85.553348, 
+                44.890916
+              ], 
+              [
+                -85.553509, 
+                44.890924
+              ], 
+              [
+                -85.559524, 
+                44.888113
+              ], 
+              [
+                -85.564509, 
+                44.895246
+              ], 
+              [
+                -85.562936, 
+                44.896612
+              ], 
+              [
+                -85.562503, 
+                44.896987
+              ], 
+              [
+                -85.557257, 
+                44.901541
+              ], 
+              [
+                -85.556647, 
+                44.90207
+              ], 
+              [
+                -85.556471, 
+                44.902223
+              ], 
+              [
+                -85.551567, 
+                44.906481
+              ], 
+              [
+                -85.539703, 
+                44.916779
+              ], 
+              [
+                -85.538945, 
+                44.917885
+              ], 
+              [
+                -85.538288, 
+                44.918845
+              ], 
+              [
+                -85.533553, 
+                44.925762
+              ], 
+              [
+                -85.530477, 
+                44.933732
+              ], 
+              [
+                -85.529233, 
+                44.936955
+              ], 
+              [
+                -85.520205, 
+                44.960347
+              ], 
+              [
+                -85.520443, 
+                44.961149
+              ], 
+              [
+                -85.520698, 
+                44.962008
+              ], 
+              [
+                -85.5221, 
+                44.966727
+              ], 
+              [
+                -85.521896, 
+                44.967446
+              ], 
+              [
+                -85.520789, 
+                44.971338
+              ], 
+              [
+                -85.520034, 
+                44.973996
+              ], 
+              [
+                -85.518875, 
+                44.974665
+              ], 
+              [
+                -85.4926, 
+                44.989834
+              ], 
+              [
+                -85.492386, 
+                44.989849
+              ], 
+              [
+                -85.475204, 
+                44.991053
+              ], 
+              [
+                -85.472676, 
+                44.985558
+              ], 
+              [
+                -85.471708, 
+                44.983453
+              ], 
+              [
+                -85.470462, 
+                44.980745
+              ], 
+              [
+                -85.470215, 
+                44.979864
+              ], 
+              [
+                -85.468293, 
+                44.973008
+              ], 
+              [
+                -85.46802, 
+                44.972035
+              ], 
+              [
+                -85.466848, 
+                44.967853
+              ], 
+              [
+                -85.464944, 
+                44.961062
+              ], 
+              [
+                -85.46665, 
+                44.958844
+              ], 
+              [
+                -85.470688, 
+                44.959238
+              ], 
+              [
+                -85.471261, 
+                44.959294
+              ], 
+              [
+                -85.471646, 
+                44.959331
+              ], 
+              [
+                -85.472258, 
+                44.959391
+              ], 
+              [
+                -85.474274, 
+                44.958529
+              ], 
+              [
+                -85.48574, 
+                44.953626
+              ], 
+              [
+                -85.489049, 
+                44.938087
+              ], 
+              [
+                -85.489895, 
+                44.934118
+              ], 
+              [
+                -85.490713, 
+                44.930274
+              ], 
+              [
+                -85.491215, 
+                44.927918
+              ], 
+              [
+                -85.491239, 
+                44.927804
+              ], 
+              [
+                -85.491286, 
+                44.927585
+              ], 
+              [
+                -85.491393, 
+                44.925868
+              ], 
+              [
+                -85.491403, 
+                44.925695
+              ], 
+              [
+                -85.491414, 
+                44.925531
+              ], 
+              [
+                -85.491471, 
+                44.92461
+              ], 
+              [
+                -85.491496, 
+                44.924205
+              ], 
+              [
+                -85.492397, 
+                44.909719
+              ], 
+              [
+                -85.49249, 
+                44.90822
+              ], 
+              [
+                -85.489477, 
+                44.903145
+              ], 
+              [
+                -85.488927, 
+                44.902217
+              ], 
+              [
+                -85.488624, 
+                44.901707
+              ], 
+              [
+                -85.489704, 
+                44.897533
+              ], 
+              [
+                -85.489921, 
+                44.896694
+              ], 
+              [
+                -85.498007, 
+                44.865451
+              ], 
+              [
+                -85.500872, 
+                44.85883
+              ], 
+              [
+                -85.502182, 
+                44.855802
+              ], 
+              [
+                -85.502386, 
+                44.855551
+              ], 
+              [
+                -85.508227, 
+                44.848352
+              ], 
+              [
+                -85.508617, 
+                44.847872
+              ], 
+              [
+                -85.511751, 
+                44.847114
+              ], 
+              [
+                -85.513575, 
+                44.846674
+              ], 
+              [
+                -85.516997, 
+                44.845846
+              ], 
+              [
+                -85.518845, 
+                44.8454
+              ], 
+              [
+                -85.519096, 
+                44.845339
+              ], 
+              [
+                -85.527181, 
+                44.841002
+              ], 
+              [
+                -85.533434, 
+                44.837648
+              ], 
+              [
+                -85.538522, 
+                44.834918
+              ], 
+              [
+                -85.539924, 
+                44.834166
+              ], 
+              [
+                -85.542706, 
+                44.831395
+              ], 
+              [
+                -85.546021, 
+                44.828092
+              ], 
+              [
+                -85.547119, 
+                44.826998
+              ], 
+              [
+                -85.551797, 
+                44.822338
+              ], 
+              [
+                -85.55285, 
+                44.821288
+              ], 
+              [
+                -85.553844, 
+                44.820298
+              ], 
+              [
+                -85.555894, 
+                44.818256
+              ], 
+              [
+                -85.557952, 
+                44.814372
+              ], 
+              [
+                -85.560231, 
+                44.810072
+              ], 
+              [
+                -85.560232, 
+                44.809974
+              ], 
+              [
+                -85.560253, 
+                44.808359
+              ], 
+              [
+                -85.560348, 
+                44.800772
+              ], 
+              [
+                -85.560352, 
+                44.800454
+              ], 
+              [
+                -85.5604, 
+                44.796655
+              ], 
+              [
+                -85.560409, 
+                44.79595
+              ], 
+              [
+                -85.560424, 
+                44.794772
+              ], 
+              [
+                -85.560488, 
+                44.78969
+              ], 
+              [
+                -85.560488, 
+                44.789679
+              ], 
+              [
+                -85.568781, 
+                44.774477
+              ], 
+              [
+                -85.571018, 
+                44.770377
+              ], 
+              [
+                -85.57517, 
+                44.762766
+              ], 
+              [
+                -85.576239, 
+                44.760807
+              ], 
+              [
+                -85.576566, 
+                44.760208
+              ], 
+              [
+                -85.575916, 
+                44.759602
+              ], 
+              [
+                -85.571301, 
+                44.755293
+              ], 
+              [
+                -85.554774, 
+                44.748917
+              ], 
+              [
+                -85.554326, 
+                44.748744
+              ], 
+              [
+                -85.554083, 
+                44.748715
+              ], 
+              [
+                -85.538285, 
+                44.746821
+              ], 
+              [
+                -85.527216, 
+                44.748235
+              ], 
+              [
+                -85.523296, 
+                44.751702
+              ], 
+              [
+                -85.509432, 
+                44.763964
+              ], 
+              [
+                -85.504775, 
+                44.768082
+              ], 
+              [
+                -85.504772, 
+                44.768102
+              ], 
+              [
+                -85.5047, 
+                44.768518
+              ], 
+              [
+                -85.503935, 
+                44.772951
+              ], 
+              [
+                -85.504079, 
+                44.773901
+              ], 
+              [
+                -85.504787, 
+                44.778577
+              ], 
+              [
+                -85.505244, 
+                44.781594
+              ], 
+              [
+                -85.507113, 
+                44.784271
+              ], 
+              [
+                -85.509251, 
+                44.787334
+              ], 
+              [
+                -85.508462, 
+                44.788682
+              ], 
+              [
+                -85.507473, 
+                44.790372
+              ], 
+              [
+                -85.499591, 
+                44.803838
+              ], 
+              [
+                -85.496314, 
+                44.805308
+              ], 
+              [
+                -85.484668, 
+                44.810531
+              ], 
+              [
+                -85.481972, 
+                44.81174
+              ], 
+              [
+                -85.477423, 
+                44.813781
+              ], 
+              [
+                -85.475748, 
+                44.814532
+              ], 
+              [
+                -85.475114, 
+                44.814816
+              ], 
+              [
+                -85.474796, 
+                44.814959
+              ], 
+              [
+                -85.474622, 
+                44.815107
+              ], 
+              [
+                -85.462943, 
+                44.825044
+              ], 
+              [
+                -85.462916, 
+                44.825067
+              ], 
+              [
+                -85.462906, 
+                44.82511
+              ], 
+              [
+                -85.462622, 
+                44.826327
+              ], 
+              [
+                -85.460445, 
+                44.835667
+              ], 
+              [
+                -85.457475, 
+                44.839609
+              ], 
+              [
+                -85.457472, 
+                44.839613
+              ], 
+              [
+                -85.457328, 
+                44.839804
+              ], 
+              [
+                -85.456007, 
+                44.841558
+              ], 
+              [
+                -85.455336, 
+                44.842448
+              ], 
+              [
+                -85.452683, 
+                44.845969
+              ], 
+              [
+                -85.44225, 
+                44.859817
+              ], 
+              [
+                -85.425804, 
+                44.881646
+              ], 
+              [
+                -85.423003, 
+                44.895019
+              ], 
+              [
+                -85.406173, 
+                44.911773
+              ], 
+              [
+                -85.3958, 
+                44.931018
+              ], 
+              [
+                -85.378286, 
+                44.998587
+              ], 
+              [
+                -85.381654, 
+                45.018407
+              ], 
+              [
+                -85.380659, 
+                45.046319
+              ], 
+              [
+                -85.377586, 
+                45.055713
+              ], 
+              [
+                -85.366412, 
+                45.069023
+              ], 
+              [
+                -85.366908, 
+                45.116938
+              ], 
+              [
+                -85.372571, 
+                45.126241
+              ], 
+              [
+                -85.376948, 
+                45.142881
+              ], 
+              [
+                -85.380464, 
+                45.180876
+              ], 
+              [
+                -85.386726, 
+                45.189497
+              ], 
+              [
+                -85.387463, 
+                45.207565
+              ], 
+              [
+                -85.388593, 
+                45.23524
+              ], 
+              [
+                -85.371593, 
+                45.270834
+              ], 
+              [
+                -85.355478, 
+                45.282774
+              ], 
+              [
+                -85.335016, 
+                45.294027
+              ], 
+              [
+                -85.323941, 
+                45.303355
+              ], 
+              [
+                -85.307646, 
+                45.31314
+              ], 
+              [
+                -85.294848, 
+                45.316408
+              ], 
+              [
+                -85.289568, 
+                45.314052
+              ], 
+              [
+                -85.273789, 
+                45.315443
+              ], 
+              [
+                -85.262996, 
+                45.319507
+              ], 
+              [
+                -85.25505, 
+                45.325675
+              ], 
+              [
+                -85.252193, 
+                45.330863
+              ], 
+              [
+                -85.235629, 
+                45.339374
+              ], 
+              [
+                -85.209673, 
+                45.356937
+              ], 
+              [
+                -85.196704, 
+                45.360641
+              ], 
+              [
+                -85.182471, 
+                45.360824
+              ], 
+              [
+                -85.143651, 
+                45.370369
+              ], 
+              [
+                -85.095985, 
+                45.367001
+              ], 
+              [
+                -85.073617, 
+                45.36542
+              ], 
+              [
+                -85.066969, 
+                45.364951
+              ], 
+              [
+                -85.06425, 
+                45.364758
+              ], 
+              [
+                -85.063459, 
+                45.364703
+              ], 
+              [
+                -85.060905, 
+                45.364522
+              ], 
+              [
+                -85.054805, 
+                45.364091
+              ], 
+              [
+                -85.046635, 
+                45.362287
+              ], 
+              [
+                -85.045526, 
+                45.362041
+              ], 
+              [
+                -85.043721, 
+                45.361643
+              ], 
+              [
+                -85.043446, 
+                45.361582
+              ], 
+              [
+                -85.043101, 
+                45.361506
+              ], 
+              [
+                -85.032813, 
+                45.361251
+              ], 
+              [
+                -85.022234, 
+                45.366701
+              ], 
+              [
+                -84.998603, 
+                45.370173
+              ], 
+              [
+                -84.975357, 
+                45.373587
+              ], 
+              [
+                -84.959119, 
+                45.375973
+              ], 
+              [
+                -84.91585, 
+                45.393115
+              ], 
+              [
+                -84.912537, 
+                45.402828
+              ], 
+              [
+                -84.912956, 
+                45.409776
+              ], 
+              [
+                -84.916165, 
+                45.417639
+              ], 
+              [
+                -84.922006, 
+                45.421914
+              ], 
+              [
+                -84.97637, 
+                45.428801
+              ], 
+              [
+                -84.976623, 
+                45.428833
+              ], 
+              [
+                -84.978969, 
+                45.429131
+              ], 
+              [
+                -84.980467, 
+                45.42932
+              ], 
+              [
+                -84.980953, 
+                45.429382
+              ], 
+              [
+                -84.981192, 
+                45.429336
+              ], 
+              [
+                -84.990041, 
+                45.427618
+              ], 
+              [
+                -84.990785, 
+                45.425264
+              ], 
+              [
+                -84.989224, 
+                45.424253
+              ], 
+              [
+                -84.987416, 
+                45.423082
+              ], 
+              [
+                -84.987143, 
+                45.422906
+              ], 
+              [
+                -84.984928, 
+                45.421471
+              ], 
+              [
+                -84.983836, 
+                45.420764
+              ], 
+              [
+                -84.978373, 
+                45.420171
+              ], 
+              [
+                -84.977116, 
+                45.420035
+              ], 
+              [
+                -84.978608, 
+                45.418663
+              ], 
+              [
+                -84.994191, 
+                45.423173
+              ], 
+              [
+                -85.034856, 
+                45.434941
+              ], 
+              [
+                -85.037741, 
+                45.435776
+              ], 
+              [
+                -85.040272, 
+                45.436509
+              ], 
+              [
+                -85.040936, 
+                45.436701
+              ], 
+              [
+                -85.046943, 
+                45.441429
+              ], 
+              [
+                -85.050234, 
+                45.444019
+              ], 
+              [
+                -85.050747, 
+                45.444423
+              ], 
+              [
+                -85.052994, 
+                45.446191
+              ], 
+              [
+                -85.069573, 
+                45.459239
+              ], 
+              [
+                -85.070485, 
+                45.460096
+              ], 
+              [
+                -85.087756, 
+                45.476335
+              ], 
+              [
+                -85.088386, 
+                45.476928
+              ], 
+              [
+                -85.097142, 
+                45.495684
+              ], 
+              [
+                -85.103943, 
+                45.510252
+              ], 
+              [
+                -85.109252, 
+                45.521626
+              ], 
+              [
+                -85.109353, 
+                45.521915
+              ], 
+              [
+                -85.110884, 
+                45.526285
+              ], 
+              [
+                -85.110955, 
+                45.526488
+              ], 
+              [
+                -85.115479, 
+                45.539406
+              ], 
+              [
+                -85.115785, 
+                45.541533
+              ], 
+              [
+                -85.11587, 
+                45.542125
+              ], 
+              [
+                -85.117406, 
+                45.552811
+              ], 
+              [
+                -85.117656, 
+                45.55455
+              ], 
+              [
+                -85.119494, 
+                45.567338
+              ], 
+              [
+                -85.119675, 
+                45.568597
+              ], 
+              [
+                -85.119721, 
+                45.568915
+              ], 
+              [
+                -85.119737, 
+                45.569026
+              ], 
+              [
+                -85.119026, 
+                45.573002
+              ], 
+              [
+                -85.118825, 
+                45.574123
+              ], 
+              [
+                -85.118637, 
+                45.575175
+              ], 
+              [
+                -85.118353, 
+                45.575625
+              ], 
+              [
+                -85.117812, 
+                45.576482
+              ], 
+              [
+                -85.11243, 
+                45.585004
+              ], 
+              [
+                -85.112406, 
+                45.585042
+              ], 
+              [
+                -85.111909, 
+                45.585829
+              ], 
+              [
+                -85.111737, 
+                45.585962
+              ], 
+              [
+                -85.107744, 
+                45.589067
+              ], 
+              [
+                -85.106909, 
+                45.589716
+              ], 
+              [
+                -85.106246, 
+                45.590231
+              ], 
+              [
+                -85.105458, 
+                45.590844
+              ], 
+              [
+                -85.103521, 
+                45.59235
+              ], 
+              [
+                -85.103077, 
+                45.592695
+              ], 
+              [
+                -85.102917, 
+                45.59282
+              ], 
+              [
+                -85.102221, 
+                45.59336
+              ], 
+              [
+                -85.101977, 
+                45.59355
+              ], 
+              [
+                -85.096798, 
+                45.597576
+              ], 
+              [
+                -85.095531, 
+                45.598562
+              ], 
+              [
+                -85.093525, 
+                45.600121
+              ], 
+              [
+                -85.079528, 
+                45.617083
+              ], 
+              [
+                -85.07937, 
+                45.617355
+              ], 
+              [
+                -85.076284, 
+                45.62266
+              ], 
+              [
+                -85.075686, 
+                45.623688
+              ], 
+              [
+                -85.075678, 
+                45.623742
+              ], 
+              [
+                -85.075461, 
+                45.625295
+              ], 
+              [
+                -85.07491, 
+                45.629242
+              ], 
+              [
+                -85.074243, 
+                45.629752
+              ], 
+              [
+                -85.071381, 
+                45.63194
+              ], 
+              [
+                -85.065716, 
+                45.636272
+              ], 
+              [
+                -85.063974, 
+                45.637604
+              ], 
+              [
+                -85.061488, 
+                45.639505
+              ], 
+              [
+                -85.061006, 
+                45.639631
+              ], 
+              [
+                -85.044872, 
+                45.643847
+              ], 
+              [
+                -85.041037, 
+                45.644849
+              ], 
+              [
+                -85.03559, 
+                45.646273
+              ], 
+              [
+                -85.020107, 
+                45.650319
+              ], 
+              [
+                -85.019374, 
+                45.65051
+              ], 
+              [
+                -85.015341, 
+                45.651564
+              ], 
+              [
+                -85.014352, 
+                45.652134
+              ], 
+              [
+                -85.013218, 
+                45.652789
+              ], 
+              [
+                -85.007026, 
+                45.65636
+              ], 
+              [
+                -85.005645, 
+                45.657504
+              ], 
+              [
+                -85.002344, 
+                45.660239
+              ], 
+              [
+                -85.001154, 
+                45.661225
+              ], 
+              [
+                -84.997431, 
+                45.667762
+              ], 
+              [
+                -84.996336, 
+                45.669685
+              ], 
+              [
+                -84.996067, 
+                45.669861
+              ], 
+              [
+                -84.974237, 
+                45.684178
+              ], 
+              [
+                -84.97095, 
+                45.686334
+              ], 
+              [
+                -84.970213, 
+                45.686984
+              ], 
+              [
+                -84.94565, 
+                45.708621
+              ], 
+              [
+                -84.943756, 
+                45.71029
+              ], 
+              [
+                -84.942636, 
+                45.714292
+              ], 
+              [
+                -84.941073, 
+                45.719879
+              ], 
+              [
+                -84.940526, 
+                45.721832
+              ], 
+              [
+                -84.942098, 
+                45.728349
+              ], 
+              [
+                -84.942125, 
+                45.72846
+              ], 
+              [
+                -84.942543, 
+                45.728865
+              ], 
+              [
+                -84.943982, 
+                45.730257
+              ], 
+              [
+                -84.945958, 
+                45.732169
+              ], 
+              [
+                -84.947266, 
+                45.733435
+              ], 
+              [
+                -84.950226, 
+                45.736299
+              ], 
+              [
+                -84.95084, 
+                45.736893
+              ], 
+              [
+                -84.951745, 
+                45.737326
+              ], 
+              [
+                -84.954275, 
+                45.738537
+              ], 
+              [
+                -84.955394, 
+                45.739072
+              ], 
+              [
+                -84.95813, 
+                45.740381
+              ], 
+              [
+                -84.968309, 
+                45.745252
+              ], 
+              [
+                -84.982328, 
+                45.75196
+              ], 
+              [
+                -84.982973, 
+                45.752022
+              ], 
+              [
+                -84.983316, 
+                45.752055
+              ], 
+              [
+                -84.983829, 
+                45.752104
+              ], 
+              [
+                -84.983933, 
+                45.752114
+              ], 
+              [
+                -84.984568, 
+                45.752175
+              ], 
+              [
+                -84.985318, 
+                45.752247
+              ], 
+              [
+                -84.996755, 
+                45.753347
+              ], 
+              [
+                -85.001656, 
+                45.753819
+              ], 
+              [
+                -85.002914, 
+                45.75394
+              ], 
+              [
+                -85.011433, 
+                45.757962
+              ], 
+              [
+                -85.014509, 
+                45.760329
+              ], 
+              [
+                -85.009173, 
+                45.762463
+              ], 
+              [
+                -85.00741, 
+                45.763168
+              ], 
+              [
+                -84.995105, 
+                45.759855
+              ], 
+              [
+                -84.938312, 
+                45.759892
+              ], 
+              [
+                -84.93779, 
+                45.759777
+              ], 
+              [
+                -84.931463, 
+                45.758389
+              ], 
+              [
+                -84.926802, 
+                45.757366
+              ], 
+              [
+                -84.92523, 
+                45.757021
+              ], 
+              [
+                -84.924664, 
+                45.756897
+              ], 
+              [
+                -84.922478, 
+                45.755842
+              ], 
+              [
+                -84.920691, 
+                45.754979
+              ], 
+              [
+                -84.919996, 
+                45.754643
+              ], 
+              [
+                -84.910398, 
+                45.75001
+              ], 
+              [
+                -84.866976, 
+                45.752066
+              ], 
+              [
+                -84.840981, 
+                45.744751
+              ], 
+              [
+                -84.810953, 
+                45.745993
+              ], 
+              [
+                -84.810411, 
+                45.746015
+              ], 
+              [
+                -84.808285, 
+                45.746103
+              ], 
+              [
+                -84.806642, 
+                45.746171
+              ], 
+              [
+                -84.805114, 
+                45.746378
+              ], 
+              [
+                -84.800664, 
+                45.74698
+              ], 
+              [
+                -84.799558, 
+                45.74713
+              ], 
+              [
+                -84.792474, 
+                45.75053
+              ], 
+              [
+                -84.78958, 
+                45.751919
+              ], 
+              [
+                -84.788893, 
+                45.752248
+              ], 
+              [
+                -84.788821, 
+                45.752283
+              ], 
+              [
+                -84.788808, 
+                45.752298
+              ], 
+              [
+                -84.781995, 
+                45.760345
+              ], 
+              [
+                -84.781373, 
+                45.76108
+              ], 
+              [
+                -84.7798, 
+                45.76965
+              ], 
+              [
+                -84.787228, 
+                45.774892
+              ], 
+              [
+                -84.79229, 
+                45.778464
+              ], 
+              [
+                -84.792337, 
+                45.778497
+              ], 
+              [
+                -84.793153, 
+                45.780463
+              ], 
+              [
+                -84.780313, 
+                45.787224
+              ], 
+              [
+                -84.774156, 
+                45.788918
+              ], 
+              [
+                -84.774014, 
+                45.788957
+              ], 
+              [
+                -84.772765, 
+                45.789301
+              ], 
+              [
+                -84.751571, 
+                45.782733
+              ], 
+              [
+                -84.742, 
+                45.784134
+              ], 
+              [
+                -84.734065, 
+                45.788205
+              ], 
+              [
+                -84.732388, 
+                45.787928
+              ], 
+              [
+                -84.726192, 
+                45.786905
+              ], 
+              [
+                -84.718904, 
+                45.777599
+              ], 
+              [
+                -84.715996, 
+                45.766174
+              ], 
+              [
+                -84.681967, 
+                45.756197
+              ], 
+              [
+                -84.679546, 
+                45.749095
+              ], 
+              [
+                -84.644822, 
+                45.73999
+              ], 
+              [
+                -84.604712, 
+                45.721668
+              ], 
+              [
+                -84.573631, 
+                45.710381
+              ], 
+              [
+                -84.555496, 
+                45.702268
+              ], 
+              [
+                -84.553311, 
+                45.698566
+              ], 
+              [
+                -84.539167, 
+                45.69048
+              ], 
+              [
+                -84.539165, 
+                45.690478
+              ], 
+              [
+                -84.538998, 
+                45.690383
+              ], 
+              [
+                -84.46168, 
+                45.652404
+              ], 
+              [
+                -84.442348, 
+                45.654771
+              ], 
+              [
+                -84.435415, 
+                45.664106
+              ], 
+              [
+                -84.427495, 
+                45.669201
+              ], 
+              [
+                -84.413642, 
+                45.669427
+              ], 
+              [
+                -84.400283, 
+                45.663345
+              ], 
+              [
+                -84.376403, 
+                45.655565
+              ], 
+              [
+                -84.329537, 
+                45.66438
+              ], 
+              [
+                -84.289685, 
+                45.653296
+              ], 
+              [
+                -84.270238, 
+                45.64479
+              ], 
+              [
+                -84.215268, 
+                45.634767
+              ], 
+              [
+                -84.204218, 
+                45.627116
+              ], 
+              [
+                -84.196043, 
+                45.621456
+              ], 
+              [
+                -84.180514, 
+                45.604639
+              ], 
+              [
+                -84.157121, 
+                45.585305
+              ], 
+              [
+                -84.139462, 
+                45.573714
+              ], 
+              [
+                -84.128867, 
+                45.562284
+              ], 
+              [
+                -84.126532, 
+                45.556616
+              ], 
+              [
+                -84.126971, 
+                45.542428
+              ], 
+              [
+                -84.122309, 
+                45.523788
+              ], 
+              [
+                -84.116687, 
+                45.51305
+              ], 
+              [
+                -84.109238, 
+                45.505171
+              ], 
+              [
+                -84.095905, 
+                45.497298
+              ], 
+              [
+                -84.075792, 
+                45.490537
+              ], 
+              [
+                -84.056138, 
+                45.489349
+              ], 
+              [
+                -84.039958, 
+                45.493733
+              ], 
+              [
+                -84.036286, 
+                45.496245
+              ], 
+              [
+                -84.028813, 
+                45.497225
+              ], 
+              [
+                -84.009582, 
+                45.495069
+              ], 
+              [
+                -83.99835, 
+                45.491158
+              ], 
+              [
+                -83.978017, 
+                45.494138
+              ], 
+              [
+                -83.939261, 
+                45.493189
+              ], 
+              [
+                -83.909472, 
+                45.485784
+              ], 
+              [
+                -83.881813, 
+                45.467907
+              ], 
+              [
+                -83.85856, 
+                45.446865
+              ], 
+              [
+                -83.841543, 
+                45.435287
+              ], 
+              [
+                -83.806622, 
+                45.419159
+              ], 
+              [
+                -83.788777, 
+                45.416415
+              ], 
+              [
+                -83.773171, 
+                45.417302
+              ], 
+              [
+                -83.755569, 
+                45.411034
+              ], 
+              [
+                -83.737321, 
+                45.410943
+              ], 
+              [
+                -83.721815, 
+                45.413304
+              ], 
+              [
+                -83.697316, 
+                45.396239
+              ], 
+              [
+                -83.667934, 
+                45.384675
+              ], 
+              [
+                -83.64379, 
+                45.37171
+              ], 
+              [
+                -83.599273, 
+                45.352561
+              ], 
+              [
+                -83.570361, 
+                45.347198
+              ], 
+              [
+                -83.550268, 
+                45.350832
+              ], 
+              [
+                -83.546799, 
+                45.352637
+              ], 
+              [
+                -83.545729, 
+                45.358397
+              ], 
+              [
+                -83.538306, 
+                45.358167
+              ], 
+              [
+                -83.520258, 
+                45.347239
+              ], 
+              [
+                -83.514717, 
+                45.34646
+              ], 
+              [
+                -83.496704, 
+                45.357536
+              ], 
+              [
+                -83.488826, 
+                45.355872
+              ], 
+              [
+                -83.477794, 
+                45.341891
+              ], 
+              [
+                -83.477728, 
+                45.341827
+              ], 
+              [
+                -83.468099, 
+                45.33245
+              ], 
+              [
+                -83.445672, 
+                45.310612
+              ], 
+              [
+                -83.43304, 
+                45.303688
+              ], 
+              [
+                -83.42514, 
+                45.296808
+              ], 
+              [
+                -83.423178, 
+                45.292506
+              ], 
+              [
+                -83.422486, 
+                45.290989
+              ], 
+              [
+                -83.422389, 
+                45.290775
+              ], 
+              [
+                -83.422272, 
+                45.290713
+              ], 
+              [
+                -83.42051, 
+                45.289787
+              ], 
+              [
+                -83.401091, 
+                45.279572
+              ], 
+              [
+                -83.40088, 
+                45.279528
+              ], 
+              [
+                -83.400753, 
+                45.279502
+              ], 
+              [
+                -83.400261, 
+                45.2794
+              ], 
+              [
+                -83.398845, 
+                45.279107
+              ], 
+              [
+                -83.388274, 
+                45.276916
+              ], 
+              [
+                -83.385104, 
+                45.274195
+              ], 
+              [
+                -83.381743, 
+                45.268983
+              ], 
+              [
+                -83.388034, 
+                45.254976
+              ], 
+              [
+                -83.412569, 
+                45.245807
+              ], 
+              [
+                -83.41241, 
+                45.238905
+              ], 
+              [
+                -83.405914, 
+                45.227157
+              ], 
+              [
+                -83.387587, 
+                45.207107
+              ], 
+              [
+                -83.384265, 
+                45.203472
+              ], 
+              [
+                -83.381647, 
+                45.203357
+              ], 
+              [
+                -83.368896, 
+                45.182168
+              ], 
+              [
+                -83.368046, 
+                45.172478
+              ], 
+              [
+                -83.363678, 
+                45.166469
+              ], 
+              [
+                -83.359895, 
+                45.16302
+              ], 
+              [
+                -83.348684, 
+                45.161516
+              ], 
+              [
+                -83.337822, 
+                45.14712
+              ], 
+              [
+                -83.316118, 
+                45.141958
+              ], 
+              [
+                -83.315924, 
+                45.139992
+              ], 
+              [
+                -83.319315, 
+                45.137684
+              ], 
+              [
+                -83.318442, 
+                45.12893
+              ], 
+              [
+                -83.30788, 
+                45.099093
+              ], 
+              [
+                -83.298275, 
+                45.090483
+              ], 
+              [
+                -83.290827, 
+                45.069157
+              ], 
+              [
+                -83.291346, 
+                45.062597
+              ], 
+              [
+                -83.280272, 
+                45.045962
+              ], 
+              [
+                -83.277037, 
+                45.044767
+              ], 
+              [
+                -83.271464, 
+                45.038114
+              ], 
+              [
+                -83.265896, 
+                45.026844
+              ], 
+              [
+                -83.271506, 
+                45.023417
+              ], 
+              [
+                -83.287974, 
+                45.026462
+              ], 
+              [
+                -83.302153, 
+                45.032315
+              ], 
+              [
+                -83.340257, 
+                45.041545
+              ], 
+              [
+                -83.357609, 
+                45.050613
+              ], 
+              [
+                -83.36747, 
+                45.062268
+              ], 
+              [
+                -83.399255, 
+                45.070364
+              ], 
+              [
+                -83.433798, 
+                45.057616
+              ], 
+              [
+                -83.442052, 
+                45.051056
+              ], 
+              [
+                -83.453363, 
+                45.035331
+              ], 
+              [
+                -83.454168, 
+                45.03188
+              ], 
+              [
+                -83.446342, 
+                45.016655
+              ], 
+              [
+                -83.435249, 
+                45.011883
+              ], 
+              [
+                -83.431254, 
+                45.007998
+              ], 
+              [
+                -83.435822, 
+                45.000012
+              ], 
+              [
+                -83.438948, 
+                45.000011
+              ], 
+              [
+                -83.450013, 
+                44.990219
+              ], 
+              [
+                -83.443718, 
+                44.952247
+              ], 
+              [
+                -83.438856, 
+                44.940843
+              ], 
+              [
+                -83.433032, 
+                44.93289
+              ], 
+              [
+                -83.425311, 
+                44.926741
+              ], 
+              [
+                -83.404596, 
+                44.918761
+              ], 
+              [
+                -83.398879, 
+                44.906417
+              ], 
+              [
+                -83.39396, 
+                44.903056
+              ], 
+              [
+                -83.352815, 
+                44.886164
+              ], 
+              [
+                -83.320503, 
+                44.880571
+              ], 
+              [
+                -83.321093, 
+                44.858494
+              ], 
+              [
+                -83.321237, 
+                44.853102
+              ], 
+              [
+                -83.321241, 
+                44.852962
+              ], 
+              [
+                -83.321089, 
+                44.852723
+              ], 
+              [
+                -83.318373, 
+                44.84844
+              ], 
+              [
+                -83.314429, 
+                44.84222
+              ], 
+              [
+                -83.31433, 
+                44.842131
+              ], 
+              [
+                -83.31294, 
+                44.840882
+              ], 
+              [
+                -83.312831, 
+                44.840783
+              ], 
+              [
+                -83.312478, 
+                44.840466
+              ], 
+              [
+                -83.308578, 
+                44.83696
+              ], 
+              [
+                -83.306854, 
+                44.83541
+              ], 
+              [
+                -83.300648, 
+                44.829831
+              ], 
+              [
+                -83.299737, 
+                44.823362
+              ], 
+              [
+                -83.298618, 
+                44.815416
+              ], 
+              [
+                -83.29553, 
+                44.793486
+              ], 
+              [
+                -83.295518, 
+                44.793397
+              ], 
+              [
+                -83.29565, 
+                44.790237
+              ], 
+              [
+                -83.295696, 
+                44.789112
+              ], 
+              [
+                -83.296125, 
+                44.778828
+              ], 
+              [
+                -83.296969, 
+                44.758543
+              ], 
+              [
+                -83.296971, 
+                44.758495
+              ], 
+              [
+                -83.298021, 
+                44.755632
+              ], 
+              [
+                -83.298287, 
+                44.754907
+              ], 
+              [
+                -83.298237, 
+                44.754465
+              ], 
+              [
+                -83.297797, 
+                44.750547
+              ], 
+              [
+                -83.297526, 
+                44.74814
+              ], 
+              [
+                -83.29742, 
+                44.747203
+              ], 
+              [
+                -83.2973, 
+                44.746134
+              ], 
+              [
+                -83.296265, 
+                44.743502
+              ], 
+              [
+                -83.290944, 
+                44.729974
+              ], 
+              [
+                -83.290665, 
+                44.729265
+              ], 
+              [
+                -83.288214, 
+                44.726453
+              ], 
+              [
+                -83.284724, 
+                44.72245
+              ], 
+              [
+                -83.284128, 
+                44.721766
+              ], 
+              [
+                -83.283098, 
+                44.721011
+              ], 
+              [
+                -83.277213, 
+                44.7167
+              ], 
+              [
+                -83.274747, 
+                44.714893
+              ], 
+              [
+                -83.274103, 
+                44.714421
+              ], 
+              [
+                -83.273393, 
+                44.713901
+              ], 
+              [
+                -83.274674, 
+                44.70477
+              ], 
+              [
+                -83.275078, 
+                44.701891
+              ], 
+              [
+                -83.275281, 
+                44.700441
+              ], 
+              [
+                -83.275318, 
+                44.700177
+              ], 
+              [
+                -83.2755, 
+                44.698882
+              ], 
+              [
+                -83.275543, 
+                44.698574
+              ], 
+              [
+                -83.275601, 
+                44.698161
+              ], 
+              [
+                -83.276137, 
+                44.69434
+              ], 
+              [
+                -83.276836, 
+                44.689354
+              ], 
+              [
+                -83.277476, 
+                44.687507
+              ], 
+              [
+                -83.279129, 
+                44.682735
+              ], 
+              [
+                -83.279288, 
+                44.682278
+              ], 
+              [
+                -83.285992, 
+                44.662927
+              ], 
+              [
+                -83.286874, 
+                44.66038
+              ], 
+              [
+                -83.287211, 
+                44.659409
+              ], 
+              [
+                -83.287585, 
+                44.658328
+              ], 
+              [
+                -83.287802, 
+                44.657703
+              ], 
+              [
+                -83.289442, 
+                44.652968
+              ], 
+              [
+                -83.295377, 
+                44.64536
+              ], 
+              [
+                -83.307116, 
+                44.630313
+              ], 
+              [
+                -83.307504, 
+                44.629816
+              ], 
+              [
+                -83.309222, 
+                44.62465
+              ], 
+              [
+                -83.309802, 
+                44.622906
+              ], 
+              [
+                -83.309869, 
+                44.622703
+              ], 
+              [
+                -83.31445, 
+                44.608926
+              ], 
+              [
+                -83.314517, 
+                44.608725
+              ], 
+              [
+                -83.314534, 
+                44.608512
+              ], 
+              [
+                -83.315037, 
+                44.60219
+              ], 
+              [
+                -83.31504, 
+                44.602152
+              ], 
+              [
+                -83.315277, 
+                44.599178
+              ], 
+              [
+                -83.315435, 
+                44.597193
+              ], 
+              [
+                -83.315603, 
+                44.595079
+              ], 
+              [
+                -83.315503, 
+                44.593514
+              ], 
+              [
+                -83.314127, 
+                44.572043
+              ], 
+              [
+                -83.314098, 
+                44.571592
+              ], 
+              [
+                -83.314013, 
+                44.570266
+              ], 
+              [
+                -83.313925, 
+                44.568888
+              ], 
+              [
+                -83.313893, 
+                44.568395
+              ], 
+              [
+                -83.313813, 
+                44.567148
+              ], 
+              [
+                -83.313792, 
+                44.566822
+              ], 
+              [
+                -83.313744, 
+                44.566076
+              ], 
+              [
+                -83.313649, 
+                44.564588
+              ], 
+              [
+                -83.313623, 
+                44.564498
+              ], 
+              [
+                -83.309234, 
+                44.549444
+              ], 
+              [
+                -83.309117, 
+                44.549043
+              ], 
+              [
+                -83.308918, 
+                44.54836
+              ], 
+              [
+                -83.308906, 
+                44.54814
+              ], 
+              [
+                -83.308471, 
+                44.539902
+              ], 
+              [
+                -83.309385, 
+                44.537528
+              ], 
+              [
+                -83.310185, 
+                44.535448
+              ], 
+              [
+                -83.310376, 
+                44.534952
+              ], 
+              [
+                -83.311245, 
+                44.532693
+              ], 
+              [
+                -83.311529, 
+                44.531956
+              ], 
+              [
+                -83.318104, 
+                44.514871
+              ], 
+              [
+                -83.318279, 
+                44.514416
+              ], 
+              [
+                -83.318276, 
+                44.514294
+              ], 
+              [
+                -83.318216, 
+                44.511734
+              ], 
+              [
+                -83.31761, 
+                44.486058
+              ], 
+              [
+                -83.326824, 
+                44.444411
+              ], 
+              [
+                -83.327171, 
+                44.429234
+              ], 
+              [
+                -83.324616, 
+                44.415039
+              ], 
+              [
+                -83.321553, 
+                44.409119
+              ], 
+              [
+                -83.321648, 
+                44.404502
+              ], 
+              [
+                -83.333757, 
+                44.372486
+              ], 
+              [
+                -83.335248, 
+                44.357995
+              ], 
+              [
+                -83.332533, 
+                44.340464
+              ], 
+              [
+                -83.336988, 
+                44.332919
+              ], 
+              [
+                -83.343738, 
+                44.329763
+              ], 
+              [
+                -83.352115, 
+                44.332366
+              ], 
+              [
+                -83.364312, 
+                44.33259
+              ], 
+              [
+                -83.373607, 
+                44.327784
+              ], 
+              [
+                -83.401822, 
+                44.301831
+              ], 
+              [
+                -83.414301, 
+                44.294543
+              ], 
+              [
+                -83.419236, 
+                44.2878
+              ], 
+              [
+                -83.425762, 
+                44.272487
+              ], 
+              [
+                -83.429689, 
+                44.269708
+              ], 
+              [
+                -83.442731, 
+                44.265361
+              ], 
+              [
+                -83.445805, 
+                44.273378
+              ], 
+              [
+                -83.447742, 
+                44.273991
+              ], 
+              [
+                -83.460958, 
+                44.278176
+              ], 
+              [
+                -83.463049, 
+                44.278838
+              ], 
+              [
+                -83.479531, 
+                44.28009
+              ], 
+              [
+                -83.500392, 
+                44.27661
+              ], 
+              [
+                -83.508839, 
+                44.273711
+              ], 
+              [
+                -83.524817, 
+                44.261558
+              ], 
+              [
+                -83.53771, 
+                44.248171
+              ], 
+              [
+                -83.549096, 
+                44.227282
+              ], 
+              [
+                -83.552872, 
+                44.210718
+              ], 
+              [
+                -83.553834, 
+                44.197956
+              ], 
+              [
+                -83.565225, 
+                44.163517
+              ], 
+              [
+                -83.565257, 
+                44.163418
+              ], 
+              [
+                -83.565984, 
+                44.161219
+              ], 
+              [
+                -83.566366, 
+                44.160066
+              ], 
+              [
+                -83.567744, 
+                44.155899
+              ], 
+              [
+                -83.567941, 
+                44.150983
+              ], 
+              [
+                -83.5682, 
+                44.144542
+              ], 
+              [
+                -83.568238, 
+                44.143587
+              ], 
+              [
+                -83.568243, 
+                44.143475
+              ], 
+              [
+                -83.568803, 
+                44.129513
+              ], 
+              [
+                -83.568831, 
+                44.128819
+              ], 
+              [
+                -83.568915, 
+                44.126734
+              ], 
+              [
+                -83.568509, 
+                44.124343
+              ], 
+              [
+                -83.567978, 
+                44.121207
+              ], 
+              [
+                -83.567714, 
+                44.119652
+              ], 
+              [
+                -83.573071, 
+                44.101298
+              ], 
+              [
+                -83.588004, 
+                44.086758
+              ], 
+              [
+                -83.591361, 
+                44.079237
+              ], 
+              [
+                -83.590437, 
+                44.069569
+              ], 
+              [
+                -83.58409, 
+                44.056748
+              ], 
+              [
+                -83.601173, 
+                44.054686
+              ], 
+              [
+                -83.621078, 
+                44.056186
+              ], 
+              [
+                -83.650116, 
+                44.052404
+              ], 
+              [
+                -83.679654, 
+                44.036365
+              ], 
+              [
+                -83.687892, 
+                44.020709
+              ], 
+              [
+                -83.680108, 
+                43.994196
+              ], 
+              [
+                -83.708741, 
+                43.992997
+              ], 
+              [
+                -83.743806, 
+                43.991529
+              ], 
+              [
+                -83.746779, 
+                43.988807
+              ], 
+              [
+                -83.757063, 
+                43.986599
+              ], 
+              [
+                -83.76283, 
+                43.985361
+              ], 
+              [
+                -83.763015, 
+                43.985321
+              ], 
+              [
+                -83.763345, 
+                43.98525
+              ], 
+              [
+                -83.763774, 
+                43.985158
+              ], 
+              [
+                -83.779086, 
+                43.985235
+              ], 
+              [
+                -83.787863, 
+                43.985279
+              ], 
+              [
+                -83.82808, 
+                43.989003
+              ], 
+              [
+                -83.828398, 
+                43.989032
+              ], 
+              [
+                -83.829077, 
+                43.989095
+              ], 
+              [
+                -83.829102, 
+                43.989085
+              ], 
+              [
+                -83.829123, 
+                43.989077
+              ], 
+              [
+                -83.848276, 
+                43.981594
+              ], 
+              [
+                -83.851496, 
+                43.979403
+              ], 
+              [
+                -83.85175, 
+                43.979231
+              ], 
+              [
+                -83.851884, 
+                43.97914
+              ], 
+              [
+                -83.853582, 
+                43.977984
+              ], 
+              [
+                -83.85493, 
+                43.977067
+              ], 
+              [
+                -83.855219, 
+                43.975997
+              ], 
+              [
+                -83.855516, 
+                43.974899
+              ], 
+              [
+                -83.855572, 
+                43.974691
+              ], 
+              [
+                -83.855602, 
+                43.974581
+              ], 
+              [
+                -83.855653, 
+                43.974391
+              ], 
+              [
+                -83.856077, 
+                43.972822
+              ], 
+              [
+                -83.856128, 
+                43.972632
+              ], 
+              [
+                -83.856371, 
+                43.972414
+              ], 
+              [
+                -83.858373, 
+                43.970618
+              ], 
+              [
+                -83.858528, 
+                43.970479
+              ], 
+              [
+                -83.859114, 
+                43.969953
+              ], 
+              [
+                -83.859305, 
+                43.969782
+              ], 
+              [
+                -83.859459, 
+                43.969643
+              ], 
+              [
+                -83.859615, 
+                43.969504
+              ], 
+              [
+                -83.859743, 
+                43.969389
+              ], 
+              [
+                -83.869406, 
+                43.960719
+              ], 
+              [
+                -83.869614, 
+                43.960682
+              ], 
+              [
+                -83.877047, 
+                43.959351
+              ], 
+              [
+                -83.877694, 
+                43.959235
+              ], 
+              [
+                -83.880011, 
+                43.955428
+              ], 
+              [
+                -83.880113, 
+                43.955261
+              ], 
+              [
+                -83.885328, 
+                43.946691
+              ], 
+              [
+                -83.885526, 
+                43.946197
+              ], 
+              [
+                -83.885543, 
+                43.946154
+              ], 
+              [
+                -83.890145, 
+                43.934672
+              ], 
+              [
+                -83.890912, 
+                43.923314
+              ], 
+              [
+                -83.907388, 
+                43.918062
+              ], 
+              [
+                -83.911128, 
+                43.91052
+              ], 
+              [
+                -83.916815, 
+                43.89905
+              ], 
+              [
+                -83.917875, 
+                43.856509
+              ], 
+              [
+                -83.926345, 
+                43.787398
+              ], 
+              [
+                -83.929375, 
+                43.777091
+              ], 
+              [
+                -83.945426, 
+                43.759946
+              ], 
+              [
+                -83.954792, 
+                43.760932
+              ], 
+              [
+                -83.956021, 
+                43.759286
+              ], 
+              [
+                -83.954347, 
+                43.750647
+              ], 
+              [
+                -83.939297, 
+                43.715369
+              ], 
+              [
+                -83.929462, 
+                43.701269
+              ], 
+              [
+                -83.909479, 
+                43.672622
+              ], 
+              [
+                -83.897078, 
+                43.664022
+              ], 
+              [
+                -83.852076, 
+                43.644922
+              ], 
+              [
+                -83.814674, 
+                43.643022
+              ], 
+              [
+                -83.806774, 
+                43.641221
+              ], 
+              [
+                -83.778919, 
+                43.630056
+              ], 
+              [
+                -83.770693, 
+                43.628691
+              ], 
+              [
+                -83.769886, 
+                43.634924
+              ], 
+              [
+                -83.725793, 
+                43.618691
+              ], 
+              [
+                -83.703446, 
+                43.597646
+              ], 
+              [
+                -83.699253, 
+                43.596792
+              ], 
+              [
+                -83.669795, 
+                43.59079
+              ], 
+              [
+                -83.666052, 
+                43.591292
+              ], 
+              [
+                -83.654192, 
+                43.59929
+              ], 
+              [
+                -83.618602, 
+                43.628891
+              ], 
+              [
+                -83.595579, 
+                43.650249
+              ], 
+              [
+                -83.563157, 
+                43.684564
+              ], 
+              [
+                -83.553707, 
+                43.685432
+              ], 
+              [
+                -83.549044, 
+                43.693798
+              ], 
+              [
+                -83.55147, 
+                43.699901
+              ], 
+              [
+                -83.540187, 
+                43.708746
+              ], 
+              [
+                -83.524837, 
+                43.716948
+              ], 
+              [
+                -83.515853, 
+                43.718157
+              ], 
+              [
+                -83.513461, 
+                43.714607
+              ], 
+              [
+                -83.506657, 
+                43.710907
+              ], 
+              [
+                -83.48007, 
+                43.714636
+              ], 
+              [
+                -83.470053, 
+                43.723418
+              ], 
+              [
+                -83.467429, 
+                43.72892
+              ], 
+              [
+                -83.46508, 
+                43.733843
+              ], 
+              [
+                -83.459628, 
+                43.740931
+              ], 
+              [
+                -83.440171, 
+                43.761694
+              ], 
+              [
+                -83.438878, 
+                43.767135
+              ], 
+              [
+                -83.441591, 
+                43.770175
+              ], 
+              [
+                -83.446752, 
+                43.77186
+              ], 
+              [
+                -83.438311, 
+                43.786846
+              ], 
+              [
+                -83.426068, 
+                43.799915
+              ], 
+              [
+                -83.416378, 
+                43.801034
+              ], 
+              [
+                -83.411453, 
+                43.805033
+              ], 
+              [
+                -83.410663, 
+                43.80773
+              ], 
+              [
+                -83.412456, 
+                43.817569
+              ], 
+              [
+                -83.410853, 
+                43.825585
+              ], 
+              [
+                -83.407647, 
+                43.831998
+              ], 
+              [
+                -83.390344, 
+                43.839132
+              ], 
+              [
+                -83.389017, 
+                43.840457
+              ], 
+              [
+                -83.389424, 
+                43.844229
+              ], 
+              [
+                -83.358869, 
+                43.857395
+              ], 
+              [
+                -83.33227, 
+                43.880522
+              ], 
+              [
+                -83.331788, 
+                43.893901
+              ], 
+              [
+                -83.333532, 
+                43.89852
+              ], 
+              [
+                -83.340976, 
+                43.904541
+              ], 
+              [
+                -83.348007, 
+                43.906388
+              ], 
+              [
+                -83.348648, 
+                43.909915
+              ], 
+              [
+                -83.347365, 
+                43.91216
+              ], 
+              [
+                -83.338067, 
+                43.915687
+              ], 
+              [
+                -83.318656, 
+                43.91762
+              ], 
+              [
+                -83.30569, 
+                43.922489
+              ], 
+              [
+                -83.28231, 
+                43.938031
+              ], 
+              [
+                -83.26898, 
+                43.956132
+              ], 
+              [
+                -83.26185, 
+                43.969021
+              ], 
+              [
+                -83.26153, 
+                43.973525
+              ], 
+              [
+                -83.227093, 
+                43.981003
+              ], 
+              [
+                -83.195688, 
+                43.983137
+              ], 
+              [
+                -83.180618, 
+                43.982109
+              ], 
+              [
+                -83.145407, 
+                43.989441
+              ], 
+              [
+                -83.134881, 
+                43.993147
+              ], 
+              [
+                -83.120659, 
+                44.00095
+              ], 
+              [
+                -83.10782, 
+                44.003245
+              ], 
+              [
+                -83.079297, 
+                44.001079
+              ], 
+              [
+                -83.066026, 
+                44.003366
+              ], 
+              [
+                -83.058741, 
+                44.006224
+              ], 
+              [
+                -83.046577, 
+                44.01571
+              ], 
+              [
+                -83.029868, 
+                44.041175
+              ], 
+              [
+                -83.024604, 
+                44.045174
+              ], 
+              [
+                -82.999283, 
+                44.04651
+              ], 
+              [
+                -82.990728, 
+                44.048846
+              ], 
+              [
+                -82.967439, 
+                44.066138
+              ], 
+              [
+                -82.958688, 
+                44.065774
+              ], 
+              [
+                -82.956658, 
+                44.063306
+              ], 
+              [
+                -82.947368, 
+                44.062187
+              ], 
+              [
+                -82.928884, 
+                44.069389
+              ], 
+              [
+                -82.915976, 
+                44.070503
+              ], 
+              [
+                -82.889831, 
+                44.050952
+              ], 
+              [
+                -82.875889, 
+                44.045046
+              ], 
+              [
+                -82.833103, 
+                44.036851
+              ], 
+              [
+                -82.793205, 
+                44.023247
+              ], 
+              [
+                -82.788298, 
+                44.013712
+              ], 
+              [
+                -82.783198, 
+                44.009366
+              ], 
+              [
+                -82.765018, 
+                44.006845
+              ], 
+              [
+                -82.746255, 
+                43.996037
+              ], 
+              [
+                -82.738992, 
+                43.989506
+              ], 
+              [
+                -82.728528, 
+                43.972615
+              ], 
+              [
+                -82.712235, 
+                43.94961
+              ], 
+              [
+                -82.709839, 
+                43.948226
+              ], 
+              [
+                -82.693505, 
+                43.91798
+              ], 
+              [
+                -82.678642, 
+                43.88373
+              ], 
+              [
+                -82.65545, 
+                43.867883
+              ], 
+              [
+                -82.643166, 
+                43.852468
+              ], 
+              [
+                -82.642899, 
+                43.846419
+              ], 
+              [
+                -82.647467, 
+                43.84449
+              ], 
+              [
+                -82.647784, 
+                43.842684
+              ], 
+              [
+                -82.644345, 
+                43.837539
+              ], 
+              [
+                -82.633641, 
+                43.831224
+              ], 
+              [
+                -82.617955, 
+                43.768596
+              ], 
+              [
+                -82.619079, 
+                43.756088
+              ], 
+              [
+                -82.617213, 
+                43.746788
+              ], 
+              [
+                -82.612224, 
+                43.739771
+              ], 
+              [
+                -82.606233, 
+                43.690437
+              ], 
+              [
+                -82.60483, 
+                43.678884
+              ], 
+              [
+                -82.605783, 
+                43.669489
+              ], 
+              [
+                -82.6005, 
+                43.602935
+              ], 
+              [
+                -82.597911, 
+                43.590016
+              ], 
+              [
+                -82.593785, 
+                43.581467
+              ], 
+              [
+                -82.585654, 
+                43.543969
+              ], 
+              [
+                -82.565691, 
+                43.502904
+              ], 
+              [
+                -82.565505, 
+                43.497063
+              ], 
+              [
+                -82.55354, 
+                43.464111
+              ], 
+              [
+                -82.539517, 
+                43.437539
+              ], 
+              [
+                -82.538578, 
+                43.431594
+              ], 
+              [
+                -82.53993, 
+                43.422378
+              ], 
+              [
+                -82.535627, 
+                43.368062
+              ], 
+              [
+                -82.536794, 
+                43.34851
+              ], 
+              [
+                -82.530128, 
+                43.333805
+              ], 
+              [
+                -82.529416, 
+                43.316243
+              ], 
+              [
+                -82.532396, 
+                43.30577
+              ], 
+              [
+                -82.523086, 
+                43.225361
+              ], 
+              [
+                -82.519123, 
+                43.212737
+              ], 
+              [
+                -82.508881, 
+                43.196748
+              ], 
+              [
+                -82.503157, 
+                43.168946
+              ], 
+              [
+                -82.50299, 
+                43.168137
+              ], 
+              [
+                -82.501656, 
+                43.161656
+              ], 
+              [
+                -82.501529, 
+                43.161351
+              ], 
+              [
+                -82.500061, 
+                43.157827
+              ], 
+              [
+                -82.495685, 
+                43.147316
+              ], 
+              [
+                -82.494194, 
+                43.143736
+              ], 
+              [
+                -82.494072, 
+                43.142864
+              ], 
+              [
+                -82.494052, 
+                43.142722
+              ], 
+              [
+                -82.494014, 
+                43.142453
+              ], 
+              [
+                -82.493977, 
+                43.142186
+              ], 
+              [
+                -82.493347, 
+                43.137685
+              ], 
+              [
+                -82.493021, 
+                43.135363
+              ], 
+              [
+                -82.490979, 
+                43.120782
+              ], 
+              [
+                -82.490634, 
+                43.118314
+              ], 
+              [
+                -82.490614, 
+                43.118172
+              ], 
+              [
+                -82.490494, 
+                43.117759
+              ], 
+              [
+                -82.486684, 
+                43.104688
+              ], 
+              [
+                -82.486042, 
+                43.102486
+              ], 
+              [
+                -82.471053, 
+                43.087581
+              ], 
+              [
+                -82.457319, 
+                43.06147
+              ], 
+              [
+                -82.457221, 
+                43.061285
+              ], 
+              [
+                -82.450724, 
+                43.051229
+              ], 
+              [
+                -82.443433, 
+                43.039942
+              ], 
+              [
+                -82.422768, 
+                43.007956
+              ], 
+              [
+                -82.415937, 
+                43.005555
+              ], 
+              [
+                -82.447778, 
+                42.937066
+              ], 
+              [
+                -82.455027, 
+                42.926866
+              ], 
+              [
+                -82.469912, 
+                42.887459
+              ], 
+              [
+                -82.483697, 
+                42.733212
+              ], 
+              [
+                -82.509935, 
+                42.637294
+              ], 
+              [
+                -82.518782, 
+                42.613888
+              ], 
+              [
+                -82.523337, 
+                42.607486
+              ], 
+              [
+                -82.583996, 
+                42.554041
+              ], 
+              [
+                -82.589779, 
+                42.550678
+              ], 
+              [
+                -82.607068, 
+                42.548843
+              ], 
+              [
+                -82.624907, 
+                42.557229
+              ], 
+              [
+                -82.679059, 
+                42.52221
+              ], 
+              [
+                -82.686417, 
+                42.518597
+              ], 
+              [
+                -82.685397, 
+                42.528659
+              ], 
+              [
+                -82.679522, 
+                42.53552
+              ], 
+              [
+                -82.670956, 
+                42.537989
+              ], 
+              [
+                -82.664335, 
+                42.546244
+              ], 
+              [
+                -82.680758, 
+                42.557909
+              ], 
+              [
+                -82.681036, 
+                42.574695
+              ], 
+              [
+                -82.688061, 
+                42.588417
+              ], 
+              [
+                -82.701152, 
+                42.585991
+              ], 
+              [
+                -82.711151, 
+                42.590884
+              ], 
+              [
+                -82.713042, 
+                42.597904
+              ], 
+              [
+                -82.700818, 
+                42.606687
+              ], 
+              [
+                -82.683482, 
+                42.609433
+              ], 
+              [
+                -82.681593, 
+                42.618672
+              ], 
+              [
+                -82.690124, 
+                42.625033
+              ], 
+              [
+                -82.689836, 
+                42.627148
+              ], 
+              [
+                -82.669103, 
+                42.637225
+              ], 
+              [
+                -82.645715, 
+                42.631145
+              ], 
+              [
+                -82.630922, 
+                42.64211
+              ], 
+              [
+                -82.626396, 
+                42.647385
+              ], 
+              [
+                -82.623043, 
+                42.655951
+              ], 
+              [
+                -82.623797, 
+                42.665395
+              ], 
+              [
+                -82.630851, 
+                42.673341
+              ], 
+              [
+                -82.635262, 
+                42.675552
+              ], 
+              [
+                -82.659781, 
+                42.678618
+              ], 
+              [
+                -82.674287, 
+                42.687049
+              ], 
+              [
+                -82.6855, 
+                42.690036
+              ], 
+              [
+                -82.700964, 
+                42.689548
+              ], 
+              [
+                -82.706135, 
+                42.683578
+              ], 
+              [
+                -82.707841, 
+                42.68351
+              ], 
+              [
+                -82.726366, 
+                42.682768
+              ], 
+              [
+                -82.753317, 
+                42.669732
+              ], 
+              [
+                -82.765583, 
+                42.655725
+              ], 
+              [
+                -82.780817, 
+                42.652232
+              ], 
+              [
+                -82.792418, 
+                42.655132
+              ], 
+              [
+                -82.797318, 
+                42.654032
+              ], 
+              [
+                -82.813518, 
+                42.640833
+              ], 
+              [
+                -82.820118, 
+                42.626333
+              ], 
+              [
+                -82.819017, 
+                42.616333
+              ], 
+              [
+                -82.811017, 
+                42.610933
+              ], 
+              [
+                -82.789017, 
+                42.603434
+              ], 
+              [
+                -82.787573, 
+                42.5983
+              ], 
+              [
+                -82.788977, 
+                42.592661
+              ], 
+              [
+                -82.788116, 
+                42.582835
+              ], 
+              [
+                -82.781514, 
+                42.571634
+              ], 
+              [
+                -82.782414, 
+                42.564834
+              ], 
+              [
+                -82.784514, 
+                42.563634
+              ], 
+              [
+                -82.789114, 
+                42.568434
+              ], 
+              [
+                -82.796715, 
+                42.571034
+              ], 
+              [
+                -82.821016, 
+                42.570734
+              ], 
+              [
+                -82.834216, 
+                42.567849
+              ], 
+              [
+                -82.845916, 
+                42.560634
+              ], 
+              [
+                -82.849316, 
+                42.555734
+              ], 
+              [
+                -82.851016, 
+                42.548935
+              ], 
+              [
+                -82.859316, 
+                42.541935
+              ], 
+              [
+                -82.860213, 
+                42.540842
+              ], 
+              [
+                -82.874416, 
+                42.523535
+              ], 
+              [
+                -82.882316, 
+                42.501035
+              ], 
+              [
+                -82.883915, 
+                42.471836
+              ], 
+              [
+                -82.870572, 
+                42.451235
+              ], 
+              [
+                -82.870347, 
+                42.450888
+              ], 
+              [
+                -82.886113, 
+                42.408137
+              ], 
+              [
+                -82.888413, 
+                42.398237
+              ], 
+              [
+                -82.894013, 
+                42.389437
+              ], 
+              [
+                -82.898413, 
+                42.385437
+              ], 
+              [
+                -82.915114, 
+                42.378137
+              ], 
+              [
+                -82.919114, 
+                42.374437
+              ], 
+              [
+                -82.928815, 
+                42.359437
+              ], 
+              [
+                -82.92397, 
+                42.352068
+              ], 
+              [
+                -82.959416, 
+                42.339638
+              ], 
+              [
+                -82.988619, 
+                42.332439
+              ], 
+              [
+                -83.01832, 
+                42.329739
+              ], 
+              [
+                -83.064121, 
+                42.317738
+              ], 
+              [
+                -83.079721, 
+                42.308638
+              ], 
+              [
+                -83.096521, 
+                42.290138
+              ], 
+              [
+                -83.128022, 
+                42.238839
+              ], 
+              [
+                -83.131343, 
+                42.20276
+              ], 
+              [
+                -83.133923, 
+                42.17474
+              ], 
+              [
+                -83.124522, 
+                42.137641
+              ], 
+              [
+                -83.133511, 
+                42.088143
+              ], 
+              [
+                -83.157624, 
+                42.085542
+              ], 
+              [
+                -83.168759, 
+                42.073601
+              ], 
+              [
+                -83.170589, 
+                42.07294
+              ], 
+              [
+                -83.188598, 
+                42.066431
+              ], 
+              [
+                -83.189115, 
+                42.061853
+              ], 
+              [
+                -83.186877, 
+                42.061206
+              ], 
+              [
+                -83.185526, 
+                42.052243
+              ], 
+              [
+                -83.18824, 
+                42.031329
+              ], 
+              [
+                -83.185858, 
+                42.029451
+              ], 
+              [
+                -83.185822, 
+                42.029367
+              ], 
+              [
+                -83.181475, 
+                42.019301
+              ], 
+              [
+                -83.187246, 
+                42.007573
+              ], 
+              [
+                -83.190535, 
+                42.006172
+              ], 
+              [
+                -83.208647, 
+                42.00504
+              ], 
+              [
+                -83.209379, 
+                41.995736
+              ], 
+              [
+                -83.216835, 
+                41.98862
+              ], 
+              [
+                -83.216897, 
+                41.988561
+              ], 
+              [
+                -83.223354, 
+                41.989191
+              ], 
+              [
+                -83.223369, 
+                41.989185
+              ], 
+              [
+                -83.224947, 
+                41.988603
+              ], 
+              [
+                -83.227744, 
+                41.987571
+              ], 
+              [
+                -83.22841, 
+                41.987325
+              ], 
+              [
+                -83.228502, 
+                41.987291
+              ], 
+              [
+                -83.228607, 
+                41.987216
+              ], 
+              [
+                -83.22929, 
+                41.986725
+              ], 
+              [
+                -83.248741, 
+                41.972735
+              ], 
+              [
+                -83.249204, 
+                41.972402
+              ], 
+              [
+                -83.249828, 
+                41.971386
+              ], 
+              [
+                -83.255123, 
+                41.962759
+              ], 
+              [
+                -83.256803, 
+                41.960021
+              ], 
+              [
+                -83.257009, 
+                41.959686
+              ], 
+              [
+                -83.257043, 
+                41.958615
+              ], 
+              [
+                -83.257143, 
+                41.955438
+              ], 
+              [
+                -83.257199, 
+                41.95367
+              ], 
+              [
+                -83.257292, 
+                41.950745
+              ], 
+              [
+                -83.269521, 
+                41.939042
+              ], 
+              [
+                -83.270491, 
+                41.939337
+              ], 
+              [
+                -83.28713, 
+                41.944397
+              ], 
+              [
+                -83.292761, 
+                41.944616
+              ], 
+              [
+                -83.293015, 
+                41.944626
+              ], 
+              [
+                -83.295982, 
+                41.944742
+              ], 
+              [
+                -83.29823, 
+                41.9442
+              ], 
+              [
+                -83.299467, 
+                41.943902
+              ], 
+              [
+                -83.302904, 
+                41.943073
+              ], 
+              [
+                -83.303465, 
+                41.942762
+              ], 
+              [
+                -83.305639, 
+                41.941557
+              ], 
+              [
+                -83.315859, 
+                41.935893
+              ], 
+              [
+                -83.326007, 
+                41.924979
+              ], 
+              [
+                -83.326024, 
+                41.924961
+              ], 
+              [
+                -83.326029, 
+                41.924948
+              ], 
+              [
+                -83.32706, 
+                41.922554
+              ], 
+              [
+                -83.330498, 
+                41.914565
+              ], 
+              [
+                -83.332998, 
+                41.908757
+              ], 
+              [
+                -83.333642, 
+                41.907261
+              ], 
+              [
+                -83.334173, 
+                41.903247
+              ], 
+              [
+                -83.334346, 
+                41.901939
+              ], 
+              [
+                -83.335103, 
+                41.896209
+              ], 
+              [
+                -83.335132, 
+                41.895992
+              ], 
+              [
+                -83.335658, 
+                41.892009
+              ], 
+              [
+                -83.335961, 
+                41.889721
+              ], 
+              [
+                -83.341557, 
+                41.879956
+              ], 
+              [
+                -83.359467, 
+                41.867849
+              ], 
+              [
+                -83.366187, 
+                41.865505
+              ], 
+              [
+                -83.372198, 
+                41.874122
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -88.932558, 
+                46.073601
+              ], 
+              [
+                -88.943279, 
+                46.077943
+              ], 
+              [
+                -88.948698, 
+                46.080205
+              ], 
+              [
+                -88.990807, 
+                46.097298
+              ], 
+              [
+                -88.990885, 
+                46.09733
+              ], 
+              [
+                -89.058745, 
+                46.124952
+              ], 
+              [
+                -89.125136, 
+                46.144531
+              ], 
+              [
+                -89.161757, 
+                46.151816
+              ], 
+              [
+                -89.166887, 
+                46.152868
+              ], 
+              [
+                -89.194508, 
+                46.157942
+              ], 
+              [
+                -89.201283, 
+                46.159426
+              ], 
+              [
+                -89.203289, 
+                46.16002
+              ], 
+              [
+                -89.205657, 
+                46.160408
+              ], 
+              [
+                -89.218156, 
+                46.162988
+              ], 
+              [
+                -89.219964, 
+                46.163319
+              ], 
+              [
+                -89.276489, 
+                46.174047
+              ], 
+              [
+                -89.276883, 
+                46.174116
+              ], 
+              [
+                -89.908196, 
+                46.296037
+              ], 
+              [
+                -89.90991, 
+                46.296402
+              ], 
+              [
+                -89.929093, 
+                46.300087
+              ], 
+              [
+                -90.120489, 
+                46.336852
+              ], 
+              [
+                -90.119691, 
+                46.359755
+              ], 
+              [
+                -90.119757, 
+                46.359748
+              ], 
+              [
+                -90.134663, 
+                46.374947
+              ], 
+              [
+                -90.134656, 
+                46.374979
+              ], 
+              [
+                -90.166909, 
+                46.439311
+              ], 
+              [
+                -90.166919, 
+                46.439851
+              ], 
+              [
+                -90.17786, 
+                46.440548
+              ], 
+              [
+                -90.204572, 
+                46.478998
+              ], 
+              [
+                -90.284545, 
+                46.518714
+              ], 
+              [
+                -90.307716, 
+                46.518392
+              ], 
+              [
+                -90.313839, 
+                46.516199
+              ], 
+              [
+                -90.313894, 
+                46.516199
+              ], 
+              [
+                -90.357676, 
+                46.540271
+              ], 
+              [
+                -90.374461, 
+                46.539212
+              ], 
+              [
+                -90.400041, 
+                46.544384
+              ], 
+              [
+                -90.400429, 
+                46.544384
+              ], 
+              [
+                -90.414464, 
+                46.55732
+              ], 
+              [
+                -90.414596, 
+                46.55732
+              ], 
+              [
+                -90.418136, 
+                46.566094
+              ], 
+              [
+                -90.417943, 
+                46.56619
+              ], 
+              [
+                -90.398478, 
+                46.575832
+              ], 
+              [
+                -90.39735, 
+                46.576391
+              ], 
+              [
+                -90.39731, 
+                46.57641
+              ], 
+              [
+                -90.396772, 
+                46.576677
+              ], 
+              [
+                -90.394936, 
+                46.577586
+              ], 
+              [
+                -90.371717, 
+                46.589088
+              ], 
+              [
+                -90.355341, 
+                46.5972
+              ], 
+              [
+                -90.353284, 
+                46.598219
+              ], 
+              [
+                -90.348407, 
+                46.600635
+              ], 
+              [
+                -90.347801, 
+                46.600842
+              ], 
+              [
+                -90.327626, 
+                46.607744
+              ], 
+              [
+                -90.327604, 
+                46.607739
+              ], 
+              [
+                -90.306609, 
+                46.602741
+              ], 
+              [
+                -90.29546, 
+                46.606998
+              ], 
+              [
+                -90.28455, 
+                46.611164
+              ], 
+              [
+                -90.284189, 
+                46.611302
+              ], 
+              [
+                -90.28315, 
+                46.611698
+              ], 
+              [
+                -90.279723, 
+                46.613007
+              ], 
+              [
+                -90.278287, 
+                46.613555
+              ], 
+              [
+                -90.265294, 
+                46.618516
+              ], 
+              [
+                -90.265291, 
+                46.618517
+              ], 
+              [
+                -90.251669, 
+                46.621454
+              ], 
+              [
+                -90.250176, 
+                46.621776
+              ], 
+              [
+                -90.237609, 
+                46.624485
+              ], 
+              [
+                -90.164026, 
+                46.645515
+              ], 
+              [
+                -90.100695, 
+                46.655132
+              ], 
+              [
+                -90.04542, 
+                46.668272
+              ], 
+              [
+                -90.028392, 
+                46.67439
+              ], 
+              [
+                -89.996034, 
+                46.693225
+              ], 
+              [
+                -89.985817, 
+                46.70319
+              ], 
+              [
+                -89.973803, 
+                46.710322
+              ], 
+              [
+                -89.957101, 
+                46.716929
+              ], 
+              [
+                -89.918466, 
+                46.740324
+              ], 
+              [
+                -89.907516, 
+                46.74987
+              ], 
+              [
+                -89.892355, 
+                46.763088
+              ], 
+              [
+                -89.888687, 
+                46.765826
+              ], 
+              [
+                -89.875069, 
+                46.775991
+              ], 
+              [
+                -89.862544, 
+                46.785341
+              ], 
+              [
+                -89.851966, 
+                46.793237
+              ], 
+              [
+                -89.850979, 
+                46.793974
+              ], 
+              [
+                -89.848652, 
+                46.795711
+              ], 
+              [
+                -89.846962, 
+                46.796556
+              ], 
+              [
+                -89.844691, 
+                46.79769
+              ], 
+              [
+                -89.841453, 
+                46.799308
+              ], 
+              [
+                -89.831956, 
+                46.804053
+              ], 
+              [
+                -89.830863, 
+                46.804434
+              ], 
+              [
+                -89.830093, 
+                46.804703
+              ], 
+              [
+                -89.828129, 
+                46.805389
+              ], 
+              [
+                -89.790663, 
+                46.818469
+              ], 
+              [
+                -89.788353, 
+                46.818861
+              ], 
+              [
+                -89.78708, 
+                46.819077
+              ], 
+              [
+                -89.757585, 
+                46.824082
+              ], 
+              [
+                -89.724471, 
+                46.829701
+              ], 
+              [
+                -89.720277, 
+                46.830413
+              ], 
+              [
+                -89.717848, 
+                46.830559
+              ], 
+              [
+                -89.713354, 
+                46.830829
+              ], 
+              [
+                -89.710062, 
+                46.831026
+              ], 
+              [
+                -89.708873, 
+                46.831098
+              ], 
+              [
+                -89.708303, 
+                46.831132
+              ], 
+              [
+                -89.708084, 
+                46.831145
+              ], 
+              [
+                -89.678469, 
+                46.832923
+              ], 
+              [
+                -89.677771, 
+                46.832965
+              ], 
+              [
+                -89.676878, 
+                46.833019
+              ], 
+              [
+                -89.673375, 
+                46.833229
+              ], 
+              [
+                -89.660625, 
+                46.831056
+              ], 
+              [
+                -89.659681, 
+                46.830762
+              ], 
+              [
+                -89.651795, 
+                46.828309
+              ], 
+              [
+                -89.646854, 
+                46.826771
+              ], 
+              [
+                -89.64344, 
+                46.825709
+              ], 
+              [
+                -89.642255, 
+                46.82534
+              ], 
+              [
+                -89.637309, 
+                46.821384
+              ], 
+              [
+                -89.634938, 
+                46.819488
+              ], 
+              [
+                -89.619329, 
+                46.81889
+              ], 
+              [
+                -89.598527, 
+                46.824338
+              ], 
+              [
+                -89.578217, 
+                46.829657
+              ], 
+              [
+                -89.572423, 
+                46.831174
+              ], 
+              [
+                -89.570326, 
+                46.831723
+              ], 
+              [
+                -89.569808, 
+                46.831859
+              ], 
+              [
+                -89.564509, 
+                46.832483
+              ], 
+              [
+                -89.542408, 
+                46.835086
+              ], 
+              [
+                -89.540709, 
+                46.835286
+              ], 
+              [
+                -89.538927, 
+                46.835496
+              ], 
+              [
+                -89.535683, 
+                46.835878
+              ], 
+              [
+                -89.534331, 
+                46.836248
+              ], 
+              [
+                -89.525656, 
+                46.838625
+              ], 
+              [
+                -89.516895, 
+                46.841025
+              ], 
+              [
+                -89.515665, 
+                46.841362
+              ], 
+              [
+                -89.513938, 
+                46.841835
+              ], 
+              [
+                -89.500227, 
+                46.841638
+              ], 
+              [
+                -89.499248, 
+                46.841623
+              ], 
+              [
+                -89.49908, 
+                46.841621
+              ], 
+              [
+                -89.49776, 
+                46.841086
+              ], 
+              [
+                -89.494019, 
+                46.83957
+              ], 
+              [
+                -89.491307, 
+                46.83847
+              ], 
+              [
+                -89.491252, 
+                46.838448
+              ], 
+              [
+                -89.491079, 
+                46.838438
+              ], 
+              [
+                -89.485166, 
+                46.838112
+              ], 
+              [
+                -89.475333, 
+                46.837569
+              ], 
+              [
+                -89.471849, 
+                46.837376
+              ], 
+              [
+                -89.47154, 
+                46.837359
+              ], 
+              [
+                -89.470915, 
+                46.837398
+              ], 
+              [
+                -89.470619, 
+                46.837416
+              ], 
+              [
+                -89.470547, 
+                46.837421
+              ], 
+              [
+                -89.469651, 
+                46.837477
+              ], 
+              [
+                -89.469446, 
+                46.83749
+              ], 
+              [
+                -89.453185, 
+                46.838505
+              ], 
+              [
+                -89.448454, 
+                46.8388
+              ], 
+              [
+                -89.448445, 
+                46.838801
+              ], 
+              [
+                -89.446583, 
+                46.838917
+              ], 
+              [
+                -89.445969, 
+                46.838955
+              ], 
+              [
+                -89.445313, 
+                46.838996
+              ], 
+              [
+                -89.440145, 
+                46.839319
+              ], 
+              [
+                -89.437047, 
+                46.839512
+              ], 
+              [
+                -89.434016, 
+                46.840131
+              ], 
+              [
+                -89.415154, 
+                46.843983
+              ], 
+              [
+                -89.413413, 
+                46.844524
+              ], 
+              [
+                -89.401123, 
+                46.848344
+              ], 
+              [
+                -89.395386, 
+                46.850127
+              ], 
+              [
+                -89.372032, 
+                46.857386
+              ], 
+              [
+                -89.370788, 
+                46.857851
+              ], 
+              [
+                -89.33613, 
+                46.870807
+              ], 
+              [
+                -89.317396, 
+                46.877811
+              ], 
+              [
+                -89.304623, 
+                46.882586
+              ], 
+              [
+                -89.28578, 
+                46.88963
+              ], 
+              [
+                -89.278612, 
+                46.89231
+              ], 
+              [
+                -89.249938, 
+                46.903029
+              ], 
+              [
+                -89.249143, 
+                46.903326
+              ], 
+              [
+                -89.228362, 
+                46.912751
+              ], 
+              [
+                -89.227914, 
+                46.912954
+              ], 
+              [
+                -89.226244, 
+                46.914105
+              ], 
+              [
+                -89.202811, 
+                46.930253
+              ], 
+              [
+                -89.201511, 
+                46.931149
+              ], 
+              [
+                -89.199648, 
+                46.933075
+              ], 
+              [
+                -89.18373, 
+                46.949529
+              ], 
+              [
+                -89.168493, 
+                46.965279
+              ], 
+              [
+                -89.168244, 
+                46.965536
+              ], 
+              [
+                -89.142595, 
+                46.984859
+              ], 
+              [
+                -89.142425, 
+                46.984954
+              ], 
+              [
+                -89.142282, 
+                46.985033
+              ], 
+              [
+                -89.128698, 
+                46.992599
+              ], 
+              [
+                -89.128101, 
+                46.992692
+              ], 
+              [
+                -89.124799, 
+                46.993209
+              ], 
+              [
+                -89.118339, 
+                46.99422
+              ], 
+              [
+                -89.118106, 
+                46.994002
+              ], 
+              [
+                -89.115903, 
+                46.991933
+              ], 
+              [
+                -89.113158, 
+                46.989356
+              ], 
+              [
+                -89.106277, 
+                46.98648
+              ], 
+              [
+                -89.086742, 
+                46.985298
+              ], 
+              [
+                -89.063103, 
+                46.988522
+              ], 
+              [
+                -89.058591, 
+                46.990604
+              ], 
+              [
+                -89.048164, 
+                46.995416
+              ], 
+              [
+                -89.03949, 
+                46.999419
+              ], 
+              [
+                -89.038116, 
+                46.999643
+              ], 
+              [
+                -89.02893, 
+                47.00114
+              ], 
+              [
+                -89.027648, 
+                46.999839
+              ], 
+              [
+                -89.022994, 
+                46.99512
+              ], 
+              [
+                -88.998907, 
+                46.99531
+              ], 
+              [
+                -88.998417, 
+                46.995314
+              ], 
+              [
+                -88.992399, 
+                46.996347
+              ], 
+              [
+                -88.99172, 
+                46.996463
+              ], 
+              [
+                -88.987197, 
+                46.997239
+              ], 
+              [
+                -88.982483, 
+                46.99883
+              ], 
+              [
+                -88.978813, 
+                47.000068
+              ], 
+              [
+                -88.978433, 
+                47.000196
+              ], 
+              [
+                -88.972802, 
+                47.002096
+              ], 
+              [
+                -88.960337, 
+                47.008053
+              ], 
+              [
+                -88.959409, 
+                47.008496
+              ], 
+              [
+                -88.957276, 
+                47.010111
+              ], 
+              [
+                -88.944045, 
+                47.020129
+              ], 
+              [
+                -88.933329, 
+                47.0322
+              ], 
+              [
+                -88.925586, 
+                47.040923
+              ], 
+              [
+                -88.924492, 
+                47.042156
+              ], 
+              [
+                -88.923458, 
+                47.043872
+              ], 
+              [
+                -88.914976, 
+                47.05794
+              ], 
+              [
+                -88.914189, 
+                47.059246
+              ], 
+              [
+                -88.908288, 
+                47.074396
+              ], 
+              [
+                -88.903933, 
+                47.085579
+              ], 
+              [
+                -88.903706, 
+                47.086161
+              ], 
+              [
+                -88.899857, 
+                47.089969
+              ], 
+              [
+                -88.890708, 
+                47.099024
+              ], 
+              [
+                -88.890422, 
+                47.099306
+              ], 
+              [
+                -88.890122, 
+                47.099603
+              ], 
+              [
+                -88.88914, 
+                47.100575
+              ], 
+              [
+                -88.885418, 
+                47.102084
+              ], 
+              [
+                -88.885361, 
+                47.102107
+              ], 
+              [
+                -88.872087, 
+                47.107487
+              ], 
+              [
+                -88.855372, 
+                47.114263
+              ], 
+              [
+                -88.855126, 
+                47.11429
+              ], 
+              [
+                -88.854656, 
+                47.114343
+              ], 
+              [
+                -88.848176, 
+                47.115065
+              ], 
+              [
+                -88.826028, 
+                47.132558
+              ], 
+              [
+                -88.825619, 
+                47.132881
+              ], 
+              [
+                -88.825475, 
+                47.132994
+              ], 
+              [
+                -88.816684, 
+                47.139938
+              ], 
+              [
+                -88.816553, 
+                47.140042
+              ], 
+              [
+                -88.815403, 
+                47.14095
+              ], 
+              [
+                -88.815355, 
+                47.140987
+              ], 
+              [
+                -88.814834, 
+                47.141399
+              ], 
+              [
+                -88.813748, 
+                47.141813
+              ], 
+              [
+                -88.798779, 
+                47.147511
+              ], 
+              [
+                -88.789813, 
+                47.150925
+              ], 
+              [
+                -88.784612, 
+                47.150722
+              ], 
+              [
+                -88.783821, 
+                47.150691
+              ], 
+              [
+                -88.779188, 
+                47.15051
+              ], 
+              [
+                -88.778022, 
+                47.150465
+              ], 
+              [
+                -88.764351, 
+                47.155762
+              ], 
+              [
+                -88.750496, 
+                47.167782
+              ], 
+              [
+                -88.746724, 
+                47.171055
+              ], 
+              [
+                -88.74665, 
+                47.171118
+              ], 
+              [
+                -88.729688, 
+                47.185834
+              ], 
+              [
+                -88.728541, 
+                47.18656
+              ], 
+              [
+                -88.728327, 
+                47.186695
+              ], 
+              [
+                -88.712138, 
+                47.196937
+              ], 
+              [
+                -88.702086, 
+                47.203296
+              ], 
+              [
+                -88.702029, 
+                47.203333
+              ], 
+              [
+                -88.700047, 
+                47.204586
+              ], 
+              [
+                -88.69966, 
+                47.204831
+              ], 
+              [
+                -88.698919, 
+                47.20522
+              ], 
+              [
+                -88.698282, 
+                47.205554
+              ], 
+              [
+                -88.676624, 
+                47.216918
+              ], 
+              [
+                -88.674917, 
+                47.217814
+              ], 
+              [
+                -88.673771, 
+                47.218415
+              ], 
+              [
+                -88.673172, 
+                47.218729
+              ], 
+              [
+                -88.672395, 
+                47.219137
+              ], 
+              [
+                -88.666614, 
+                47.221475
+              ], 
+              [
+                -88.657496, 
+                47.225164
+              ], 
+              [
+                -88.656359, 
+                47.225624
+              ], 
+              [
+                -88.648001, 
+                47.226229
+              ], 
+              [
+                -88.642047, 
+                47.226659
+              ], 
+              [
+                -88.640323, 
+                47.226784
+              ], 
+              [
+                -88.633915, 
+                47.228915
+              ], 
+              [
+                -88.625119, 
+                47.23184
+              ], 
+              [
+                -88.623579, 
+                47.232352
+              ], 
+              [
+                -88.623302, 
+                47.232484
+              ], 
+              [
+                -88.618613, 
+                47.234715
+              ], 
+              [
+                -88.609867, 
+                47.238877
+              ], 
+              [
+                -88.60983, 
+                47.238894
+              ], 
+              [
+                -88.608087, 
+                47.239137
+              ], 
+              [
+                -88.598622, 
+                47.240454
+              ], 
+              [
+                -88.585196, 
+                47.242321
+              ], 
+              [
+                -88.584912, 
+                47.242361
+              ], 
+              [
+                -88.584652, 
+                47.242447
+              ], 
+              [
+                -88.573997, 
+                47.245989
+              ], 
+              [
+                -88.573326, 
+                47.246424
+              ], 
+              [
+                -88.573301, 
+                47.246441
+              ], 
+              [
+                -88.57172, 
+                47.247466
+              ], 
+              [
+                -88.526764, 
+                47.276641
+              ], 
+              [
+                -88.518091, 
+                47.282269
+              ], 
+              [
+                -88.515276, 
+                47.284096
+              ], 
+              [
+                -88.514786, 
+                47.284414
+              ], 
+              [
+                -88.512421, 
+                47.285948
+              ], 
+              [
+                -88.504898, 
+                47.290831
+              ], 
+              [
+                -88.50116, 
+                47.293256
+              ], 
+              [
+                -88.50078, 
+                47.293503
+              ], 
+              [
+                -88.498756, 
+                47.295256
+              ], 
+              [
+                -88.487116, 
+                47.305335
+              ], 
+              [
+                -88.478951, 
+                47.312405
+              ], 
+              [
+                -88.477733, 
+                47.31346
+              ], 
+              [
+                -88.471103, 
+                47.326442
+              ], 
+              [
+                -88.470484, 
+                47.327653
+              ], 
+              [
+                -88.465888, 
+                47.33267
+              ], 
+              [
+                -88.465089, 
+                47.333542
+              ], 
+              [
+                -88.459262, 
+                47.339903
+              ], 
+              [
+                -88.458952, 
+                47.340142
+              ], 
+              [
+                -88.432162, 
+                47.360791
+              ], 
+              [
+                -88.431753, 
+                47.361106
+              ], 
+              [
+                -88.431446, 
+                47.361343
+              ], 
+              [
+                -88.418841, 
+                47.371058
+              ], 
+              [
+                -88.418673, 
+                47.371188
+              ], 
+              [
+                -88.400224, 
+                47.379551
+              ], 
+              [
+                -88.399726, 
+                47.379777
+              ], 
+              [
+                -88.394239, 
+                47.382264
+              ], 
+              [
+                -88.39144, 
+                47.383533
+              ], 
+              [
+                -88.389459, 
+                47.384431
+              ], 
+              [
+                -88.378917, 
+                47.387513
+              ], 
+              [
+                -88.360313, 
+                47.392951
+              ], 
+              [
+                -88.324083, 
+                47.403542
+              ], 
+              [
+                -88.303447, 
+                47.412204
+              ], 
+              [
+                -88.301214, 
+                47.413451
+              ], 
+              [
+                -88.285635, 
+                47.422146
+              ], 
+              [
+                -88.285195, 
+                47.422392
+              ], 
+              [
+                -88.28406, 
+                47.422579
+              ], 
+              [
+                -88.274709, 
+                47.424118
+              ], 
+              [
+                -88.23944, 
+                47.429923
+              ], 
+              [
+                -88.239161, 
+                47.429969
+              ], 
+              [
+                -88.238091, 
+                47.430437
+              ], 
+              [
+                -88.228645, 
+                47.434568
+              ], 
+              [
+                -88.227446, 
+                47.435093
+              ], 
+              [
+                -88.225797, 
+                47.436279
+              ], 
+              [
+                -88.218424, 
+                47.441585
+              ], 
+              [
+                -88.216977, 
+                47.445493
+              ], 
+              [
+                -88.217822, 
+                47.448738
+              ], 
+              [
+                -88.217662, 
+                47.448778
+              ], 
+              [
+                -88.213141, 
+                47.449898
+              ], 
+              [
+                -88.213059, 
+                47.449918
+              ], 
+              [
+                -88.207853, 
+                47.451208
+              ], 
+              [
+                -88.207239, 
+                47.45136
+              ], 
+              [
+                -88.206036, 
+                47.451658
+              ], 
+              [
+                -88.18182, 
+                47.457657
+              ], 
+              [
+                -88.181763, 
+                47.457661
+              ], 
+              [
+                -88.179998, 
+                47.457799
+              ], 
+              [
+                -88.169383, 
+                47.458627
+              ], 
+              [
+                -88.167703, 
+                47.458758
+              ], 
+              [
+                -88.167009, 
+                47.458812
+              ], 
+              [
+                -88.15076, 
+                47.460078
+              ], 
+              [
+                -88.150571, 
+                47.460093
+              ], 
+              [
+                -88.150437, 
+                47.460125
+              ], 
+              [
+                -88.143573, 
+                47.461759
+              ], 
+              [
+                -88.140537, 
+                47.462482
+              ], 
+              [
+                -88.139651, 
+                47.462693
+              ], 
+              [
+                -88.137698, 
+                47.462918
+              ], 
+              [
+                -88.129274, 
+                47.463889
+              ], 
+              [
+                -88.12848, 
+                47.46398
+              ], 
+              [
+                -88.090299, 
+                47.46838
+              ], 
+              [
+                -88.089966, 
+                47.468418
+              ], 
+              [
+                -88.085252, 
+                47.468961
+              ], 
+              [
+                -88.08485, 
+                47.468906
+              ], 
+              [
+                -88.08358, 
+                47.468733
+              ], 
+              [
+                -88.081892, 
+                47.468503
+              ], 
+              [
+                -88.081277, 
+                47.468419
+              ], 
+              [
+                -88.080916, 
+                47.46837
+              ], 
+              [
+                -88.080796, 
+                47.468353
+              ], 
+              [
+                -88.080271, 
+                47.468282
+              ], 
+              [
+                -88.079183, 
+                47.468133
+              ], 
+              [
+                -88.076388, 
+                47.467752
+              ], 
+              [
+                -88.074681, 
+                47.46788
+              ], 
+              [
+                -88.073982, 
+                47.467933
+              ], 
+              [
+                -88.07358, 
+                47.467963
+              ], 
+              [
+                -88.067043, 
+                47.468454
+              ], 
+              [
+                -88.049326, 
+                47.469785
+              ], 
+              [
+                -88.048226, 
+                47.470008
+              ], 
+              [
+                -88.048077, 
+                47.474973
+              ], 
+              [
+                -88.047857, 
+                47.475002
+              ], 
+              [
+                -88.046665, 
+                47.475159
+              ], 
+              [
+                -88.040291, 
+                47.475999
+              ], 
+              [
+                -88.040242, 
+                47.476002
+              ], 
+              [
+                -88.03659, 
+                47.476205
+              ], 
+              [
+                -88.03113, 
+                47.47651
+              ], 
+              [
+                -88.031089, 
+                47.476512
+              ], 
+              [
+                -88.027085, 
+                47.476735
+              ], 
+              [
+                -88.021555, 
+                47.477044
+              ], 
+              [
+                -88.017268, 
+                47.477283
+              ], 
+              [
+                -88.015502, 
+                47.477381
+              ], 
+              [
+                -88.014516, 
+                47.477436
+              ], 
+              [
+                -88.01083, 
+                47.477642
+              ], 
+              [
+                -88.010415, 
+                47.477665
+              ], 
+              [
+                -88.009704, 
+                47.477704
+              ], 
+              [
+                -87.982227, 
+                47.479236
+              ], 
+              [
+                -87.98174, 
+                47.479264
+              ], 
+              [
+                -87.978934, 
+                47.47942
+              ], 
+              [
+                -87.978121, 
+                47.479409
+              ], 
+              [
+                -87.962546, 
+                47.479195
+              ], 
+              [
+                -87.959166, 
+                47.479148
+              ], 
+              [
+                -87.958042, 
+                47.479133
+              ], 
+              [
+                -87.957582, 
+                47.479126
+              ], 
+              [
+                -87.95669, 
+                47.479114
+              ], 
+              [
+                -87.955374, 
+                47.479096
+              ], 
+              [
+                -87.954672, 
+                47.479086
+              ], 
+              [
+                -87.954458, 
+                47.479083
+              ], 
+              [
+                -87.951912, 
+                47.479048
+              ], 
+              [
+                -87.948287, 
+                47.478999
+              ], 
+              [
+                -87.929672, 
+                47.478743
+              ], 
+              [
+                -87.929269, 
+                47.478737
+              ], 
+              [
+                -87.928726, 
+                47.478703
+              ], 
+              [
+                -87.928137, 
+                47.478666
+              ], 
+              [
+                -87.927548, 
+                47.478629
+              ], 
+              [
+                -87.922224, 
+                47.478293
+              ], 
+              [
+                -87.921103, 
+                47.478222
+              ], 
+              [
+                -87.920321, 
+                47.478173
+              ], 
+              [
+                -87.920259, 
+                47.478169
+              ], 
+              [
+                -87.902416, 
+                47.477045
+              ], 
+              [
+                -87.898036, 
+                47.474872
+              ], 
+              [
+                -87.816958, 
+                47.471998
+              ], 
+              [
+                -87.801184, 
+                47.473301
+              ], 
+              [
+                -87.756739, 
+                47.460717
+              ], 
+              [
+                -87.730804, 
+                47.449112
+              ], 
+              [
+                -87.715942, 
+                47.439816
+              ], 
+              [
+                -87.710471, 
+                47.4062
+              ], 
+              [
+                -87.712421, 
+                47.4014
+              ], 
+              [
+                -87.721274, 
+                47.401032
+              ], 
+              [
+                -87.742417, 
+                47.405823
+              ], 
+              [
+                -87.75138, 
+                47.405066
+              ], 
+              [
+                -87.759057, 
+                47.403013
+              ], 
+              [
+                -87.765019, 
+                47.398652
+              ], 
+              [
+                -87.800294, 
+                47.392148
+              ], 
+              [
+                -87.815371, 
+                47.38479
+              ], 
+              [
+                -87.827115, 
+                47.38616
+              ], 
+              [
+                -87.834822, 
+                47.390478
+              ], 
+              [
+                -87.848252, 
+                47.394864
+              ], 
+              [
+                -87.8567, 
+                47.395387
+              ], 
+              [
+                -87.882245, 
+                47.395588
+              ], 
+              [
+                -87.941613, 
+                47.390073
+              ], 
+              [
+                -87.957058, 
+                47.38726
+              ], 
+              [
+                -87.965063, 
+                47.37443
+              ], 
+              [
+                -87.965598, 
+                47.368645
+              ], 
+              [
+                -87.962567, 
+                47.362543
+              ], 
+              [
+                -87.954796, 
+                47.356809
+              ], 
+              [
+                -87.947397, 
+                47.355461
+              ], 
+              [
+                -87.938787, 
+                47.346777
+              ], 
+              [
+                -87.93825, 
+                47.342299
+              ], 
+              [
+                -87.94336, 
+                47.335899
+              ], 
+              [
+                -87.946352, 
+                47.334254
+              ], 
+              [
+                -87.958386, 
+                47.334435
+              ], 
+              [
+                -87.968604, 
+                47.332582
+              ], 
+              [
+                -87.989133, 
+                47.322633
+              ], 
+              [
+                -88.016478, 
+                47.306275
+              ], 
+              [
+                -88.054849, 
+                47.29824
+              ], 
+              [
+                -88.06009, 
+                47.295796
+              ], 
+              [
+                -88.071476, 
+                47.286768
+              ], 
+              [
+                -88.096851, 
+                47.261351
+              ], 
+              [
+                -88.108833, 
+                47.259131
+              ], 
+              [
+                -88.117456, 
+                47.255174
+              ], 
+              [
+                -88.131943, 
+                47.239554
+              ], 
+              [
+                -88.163059, 
+                47.216278
+              ], 
+              [
+                -88.194218, 
+                47.209242
+              ], 
+              [
+                -88.204849, 
+                47.210498
+              ], 
+              [
+                -88.212361, 
+                47.209423
+              ], 
+              [
+                -88.227552, 
+                47.199938
+              ], 
+              [
+                -88.228987, 
+                47.199042
+              ], 
+              [
+                -88.229132, 
+                47.198862
+              ], 
+              [
+                -88.235041, 
+                47.191532
+              ], 
+              [
+                -88.236892, 
+                47.189236
+              ], 
+              [
+                -88.237024, 
+                47.188862
+              ], 
+              [
+                -88.240295, 
+                47.179609
+              ], 
+              [
+                -88.242006, 
+                47.174767
+              ], 
+              [
+                -88.242109, 
+                47.172184
+              ], 
+              [
+                -88.242142, 
+                47.171358
+              ], 
+              [
+                -88.242157, 
+                47.170988
+              ], 
+              [
+                -88.242561, 
+                47.160902
+              ], 
+              [
+                -88.24266, 
+                47.158426
+              ], 
+              [
+                -88.242062, 
+                47.157059
+              ], 
+              [
+                -88.239487, 
+                47.151176
+              ], 
+              [
+                -88.23947, 
+                47.151137
+              ], 
+              [
+                -88.238408, 
+                47.150423
+              ], 
+              [
+                -88.236961, 
+                47.149449
+              ], 
+              [
+                -88.236721, 
+                47.149287
+              ], 
+              [
+                -88.236566, 
+                47.149297
+              ], 
+              [
+                -88.234295, 
+                47.149446
+              ], 
+              [
+                -88.231797, 
+                47.149609
+              ], 
+              [
+                -88.232164, 
+                47.145975
+              ], 
+              [
+                -88.239895, 
+                47.139436
+              ], 
+              [
+                -88.247628, 
+                47.135981
+              ], 
+              [
+                -88.249571, 
+                47.136231
+              ], 
+              [
+                -88.249838, 
+                47.137106
+              ], 
+              [
+                -88.250645, 
+                47.139752
+              ], 
+              [
+                -88.250785, 
+                47.140209
+              ], 
+              [
+                -88.250814, 
+                47.140231
+              ], 
+              [
+                -88.253834, 
+                47.142524
+              ], 
+              [
+                -88.254205, 
+                47.142807
+              ], 
+              [
+                -88.254267, 
+                47.142853
+              ], 
+              [
+                -88.255303, 
+                47.14364
+              ], 
+              [
+                -88.255676, 
+                47.143715
+              ], 
+              [
+                -88.262537, 
+                47.145087
+              ], 
+              [
+                -88.262972, 
+                47.145174
+              ], 
+              [
+                -88.263292, 
+                47.145115
+              ], 
+              [
+                -88.272017, 
+                47.143511
+              ], 
+              [
+                -88.281652, 
+                47.138239
+              ], 
+              [
+                -88.281701, 
+                47.138212
+              ], 
+              [
+                -88.281743, 
+                47.138163
+              ], 
+              [
+                -88.288994, 
+                47.129743
+              ], 
+              [
+                -88.28904, 
+                47.129689
+              ], 
+              [
+                -88.289058, 
+                47.129581
+              ], 
+              [
+                -88.289543, 
+                47.126604
+              ], 
+              [
+                -88.28865, 
+                47.125947
+              ], 
+              [
+                -88.288481, 
+                47.125823
+              ], 
+              [
+                -88.28787, 
+                47.125374
+              ], 
+              [
+                -88.287792, 
+                47.124822
+              ], 
+              [
+                -88.28726, 
+                47.121041
+              ], 
+              [
+                -88.287173, 
+                47.12042
+              ], 
+              [
+                -88.287313, 
+                47.119721
+              ], 
+              [
+                -88.287822, 
+                47.117174
+              ], 
+              [
+                -88.287901, 
+                47.116779
+              ], 
+              [
+                -88.287981, 
+                47.116376
+              ], 
+              [
+                -88.288309, 
+                47.114738
+              ], 
+              [
+                -88.288347, 
+                47.114547
+              ], 
+              [
+                -88.28869, 
+                47.113954
+              ], 
+              [
+                -88.28893, 
+                47.113539
+              ], 
+              [
+                -88.289005, 
+                47.11341
+              ], 
+              [
+                -88.289534, 
+                47.112494
+              ], 
+              [
+                -88.290598, 
+                47.110655
+              ], 
+              [
+                -88.290708, 
+                47.110465
+              ], 
+              [
+                -88.291217, 
+                47.109585
+              ], 
+              [
+                -88.291688, 
+                47.10877
+              ], 
+              [
+                -88.294082, 
+                47.10463
+              ], 
+              [
+                -88.296645, 
+                47.100199
+              ], 
+              [
+                -88.297547, 
+                47.098639
+              ], 
+              [
+                -88.297625, 
+                47.098505
+              ], 
+              [
+                -88.297772, 
+                47.098443
+              ], 
+              [
+                -88.313033, 
+                47.091964
+              ], 
+              [
+                -88.315051, 
+                47.091108
+              ], 
+              [
+                -88.333076, 
+                47.083455
+              ], 
+              [
+                -88.337406, 
+                47.081617
+              ], 
+              [
+                -88.340052, 
+                47.080494
+              ], 
+              [
+                -88.344658, 
+                47.079718
+              ], 
+              [
+                -88.346501, 
+                47.079407
+              ], 
+              [
+                -88.346709, 
+                47.079372
+              ], 
+              [
+                -88.347197, 
+                47.078921
+              ], 
+              [
+                -88.349952, 
+                47.076377
+              ], 
+              [
+                -88.353191, 
+                47.069063
+              ], 
+              [
+                -88.353952, 
+                47.058047
+              ], 
+              [
+                -88.354011, 
+                47.057835
+              ], 
+              [
+                -88.356884, 
+                47.047524
+              ], 
+              [
+                -88.357556, 
+                47.045113
+              ], 
+              [
+                -88.357661, 
+                47.044739
+              ], 
+              [
+                -88.358201, 
+                47.042798
+              ], 
+              [
+                -88.35855, 
+                47.041546
+              ], 
+              [
+                -88.358873, 
+                47.040389
+              ], 
+              [
+                -88.359054, 
+                47.039739
+              ], 
+              [
+                -88.359139, 
+                47.039536
+              ], 
+              [
+                -88.367624, 
+                47.019213
+              ], 
+              [
+                -88.368062, 
+                47.018733
+              ], 
+              [
+                -88.368358, 
+                47.018408
+              ], 
+              [
+                -88.373966, 
+                47.012262
+              ], 
+              [
+                -88.374238, 
+                47.012081
+              ], 
+              [
+                -88.379268, 
+                47.008736
+              ], 
+              [
+                -88.384442, 
+                47.005296
+              ], 
+              [
+                -88.385338, 
+                47.0047
+              ], 
+              [
+                -88.385507, 
+                47.004588
+              ], 
+              [
+                -88.385606, 
+                47.004522
+              ], 
+              [
+                -88.386153, 
+                47.003909
+              ], 
+              [
+                -88.386538, 
+                47.003477
+              ], 
+              [
+                -88.387612, 
+                47.002275
+              ], 
+              [
+                -88.388564, 
+                47.001208
+              ], 
+              [
+                -88.389698, 
+                46.999937
+              ], 
+              [
+                -88.404498, 
+                46.983353
+              ], 
+              [
+                -88.405352, 
+                46.982663
+              ], 
+              [
+                -88.406229, 
+                46.981955
+              ], 
+              [
+                -88.410157, 
+                46.978782
+              ], 
+              [
+                -88.41089, 
+                46.97819
+              ], 
+              [
+                -88.411145, 
+                46.977984
+              ], 
+              [
+                -88.41616, 
+                46.977106
+              ], 
+              [
+                -88.416364, 
+                46.977071
+              ], 
+              [
+                -88.443901, 
+                46.972251
+              ], 
+              [
+                -88.44857, 
+                46.946769
+              ], 
+              [
+                -88.450823, 
+                46.939038
+              ], 
+              [
+                -88.452129, 
+                46.934557
+              ], 
+              [
+                -88.452354, 
+                46.933787
+              ], 
+              [
+                -88.454333, 
+                46.926996
+              ], 
+              [
+                -88.454353, 
+                46.926928
+              ], 
+              [
+                -88.454781, 
+                46.925458
+              ], 
+              [
+                -88.455117, 
+                46.924305
+              ], 
+              [
+                -88.455404, 
+                46.923321
+              ], 
+              [
+                -88.457776, 
+                46.918999
+              ], 
+              [
+                -88.474217, 
+                46.889034
+              ], 
+              [
+                -88.475859, 
+                46.886042
+              ], 
+              [
+                -88.476098, 
+                46.881957
+              ], 
+              [
+                -88.476918, 
+                46.867946
+              ], 
+              [
+                -88.47762, 
+                46.855937
+              ], 
+              [
+                -88.477681, 
+                46.854902
+              ], 
+              [
+                -88.477845, 
+                46.852091
+              ], 
+              [
+                -88.477935, 
+                46.85056
+              ], 
+              [
+                -88.483748, 
+                46.831727
+              ], 
+              [
+                -88.482579, 
+                46.826197
+              ], 
+              [
+                -88.473342, 
+                46.806226
+              ], 
+              [
+                -88.462349, 
+                46.786711
+              ], 
+              [
+                -88.438427, 
+                46.786714
+              ], 
+              [
+                -88.433835, 
+                46.793502
+              ], 
+              [
+                -88.415225, 
+                46.811715
+              ], 
+              [
+                -88.38141, 
+                46.838466
+              ], 
+              [
+                -88.382204, 
+                46.844477
+              ], 
+              [
+                -88.381947, 
+                46.84611
+              ], 
+              [
+                -88.381727, 
+                46.847868
+              ], 
+              [
+                -88.380849, 
+                46.850064
+              ], 
+              [
+                -88.38019, 
+                46.852481
+              ], 
+              [
+                -88.378432, 
+                46.854897
+              ], 
+              [
+                -88.375577, 
+                46.857313
+              ], 
+              [
+                -88.372501, 
+                46.858192
+              ], 
+              [
+                -88.368767, 
+                46.857313
+              ], 
+              [
+                -88.362502, 
+                46.856432
+              ], 
+              [
+                -88.361936, 
+                46.856352
+              ], 
+              [
+                -88.360868, 
+                46.856202
+              ], 
+              [
+                -88.36026, 
+                46.856258
+              ], 
+              [
+                -88.352145, 
+                46.857009
+              ], 
+              [
+                -88.35194, 
+                46.857028
+              ], 
+              [
+                -88.35173, 
+                46.857193
+              ], 
+              [
+                -88.34743, 
+                46.860571
+              ], 
+              [
+                -88.334647, 
+                46.870613
+              ], 
+              [
+                -88.333168, 
+                46.871775
+              ], 
+              [
+                -88.333092, 
+                46.871835
+              ], 
+              [
+                -88.310714, 
+                46.889415
+              ], 
+              [
+                -88.31029, 
+                46.889748
+              ], 
+              [
+                -88.308786, 
+                46.890622
+              ], 
+              [
+                -88.307978, 
+                46.891092
+              ], 
+              [
+                -88.307261, 
+                46.891509
+              ], 
+              [
+                -88.305045, 
+                46.892797
+              ], 
+              [
+                -88.299515, 
+                46.896012
+              ], 
+              [
+                -88.296476, 
+                46.897778
+              ], 
+              [
+                -88.289298, 
+                46.90195
+              ], 
+              [
+                -88.288767, 
+                46.902259
+              ], 
+              [
+                -88.286473, 
+                46.903592
+              ], 
+              [
+                -88.282087, 
+                46.906142
+              ], 
+              [
+                -88.282066, 
+                46.906154
+              ], 
+              [
+                -88.281244, 
+                46.906632
+              ], 
+              [
+                -88.276915, 
+                46.908589
+              ], 
+              [
+                -88.27473, 
+                46.909577
+              ], 
+              [
+                -88.273929, 
+                46.909939
+              ], 
+              [
+                -88.272478, 
+                46.910595
+              ], 
+              [
+                -88.261593, 
+                46.915516
+              ], 
+              [
+                -88.258072, 
+                46.918409
+              ], 
+              [
+                -88.250141, 
+                46.924926
+              ], 
+              [
+                -88.246953, 
+                46.927545
+              ], 
+              [
+                -88.246872, 
+                46.927611
+              ], 
+              [
+                -88.244437, 
+                46.929612
+              ], 
+              [
+                -88.243175, 
+                46.93009
+              ], 
+              [
+                -88.241858, 
+                46.930589
+              ], 
+              [
+                -88.24134, 
+                46.930785
+              ], 
+              [
+                -88.240926, 
+                46.930942
+              ], 
+              [
+                -88.240846, 
+                46.930972
+              ], 
+              [
+                -88.238324, 
+                46.931927
+              ], 
+              [
+                -88.2358, 
+                46.932883
+              ], 
+              [
+                -88.235702, 
+                46.93292
+              ], 
+              [
+                -88.233334, 
+                46.933817
+              ], 
+              [
+                -88.232969, 
+                46.933955
+              ], 
+              [
+                -88.194361, 
+                46.948578
+              ], 
+              [
+                -88.176758, 
+                46.955245
+              ], 
+              [
+                -88.167373, 
+                46.9588
+              ], 
+              [
+                -88.167227, 
+                46.958855
+              ], 
+              [
+                -88.164704, 
+                46.960178
+              ], 
+              [
+                -88.164059, 
+                46.960516
+              ], 
+              [
+                -88.162856, 
+                46.961146
+              ], 
+              [
+                -88.162833, 
+                46.961158
+              ], 
+              [
+                -88.162437, 
+                46.961366
+              ], 
+              [
+                -88.160571, 
+                46.962345
+              ], 
+              [
+                -88.160086, 
+                46.962599
+              ], 
+              [
+                -88.156273, 
+                46.964598
+              ], 
+              [
+                -88.15543, 
+                46.96504
+              ], 
+              [
+                -88.155374, 
+                46.965069
+              ], 
+              [
+                -88.145561, 
+                46.966409
+              ], 
+              [
+                -88.143688, 
+                46.966665
+              ], 
+              [
+                -88.143614, 
+                46.966635
+              ], 
+              [
+                -88.142893, 
+                46.966337
+              ], 
+              [
+                -88.142807, 
+                46.966302
+              ], 
+              [
+                -88.142528, 
+                46.966186
+              ], 
+              [
+                -88.142339, 
+                46.966108
+              ], 
+              [
+                -88.142057, 
+                46.965992
+              ], 
+              [
+                -88.14175, 
+                46.965865
+              ], 
+              [
+                -88.132957, 
+                46.962237
+              ], 
+              [
+                -88.132876, 
+                46.962204
+              ], 
+              [
+                -88.13521, 
+                46.959689
+              ], 
+              [
+                -88.150114, 
+                46.94363
+              ], 
+              [
+                -88.156359, 
+                46.939518
+              ], 
+              [
+                -88.167989, 
+                46.931861
+              ], 
+              [
+                -88.170905, 
+                46.92994
+              ], 
+              [
+                -88.171317, 
+                46.929669
+              ], 
+              [
+                -88.175568, 
+                46.92687
+              ], 
+              [
+                -88.176156, 
+                46.926483
+              ], 
+              [
+                -88.177921, 
+                46.92532
+              ], 
+              [
+                -88.185964, 
+                46.920025
+              ], 
+              [
+                -88.187522, 
+                46.918999
+              ], 
+              [
+                -88.18295, 
+                46.91365
+              ], 
+              [
+                -88.181908, 
+                46.912431
+              ], 
+              [
+                -88.175197, 
+                46.90458
+              ], 
+              [
+                -88.161913, 
+                46.904941
+              ], 
+              [
+                -88.160704, 
+                46.90511
+              ], 
+              [
+                -88.130288, 
+                46.909369
+              ], 
+              [
+                -88.126927, 
+                46.90984
+              ], 
+              [
+                -88.126378, 
+                46.909998
+              ], 
+              [
+                -88.124935, 
+                46.910413
+              ], 
+              [
+                -88.124573, 
+                46.910517
+              ], 
+              [
+                -88.122862, 
+                46.911009
+              ], 
+              [
+                -88.106377, 
+                46.915751
+              ], 
+              [
+                -88.105195, 
+                46.916091
+              ], 
+              [
+                -88.102816, 
+                46.916775
+              ], 
+              [
+                -88.102362, 
+                46.916906
+              ], 
+              [
+                -88.101457, 
+                46.917166
+              ], 
+              [
+                -88.101315, 
+                46.917207
+              ], 
+              [
+                -88.100133, 
+                46.917405
+              ], 
+              [
+                -88.099227, 
+                46.917556
+              ], 
+              [
+                -88.0989, 
+                46.917611
+              ], 
+              [
+                -88.098858, 
+                46.917618
+              ], 
+              [
+                -88.097609, 
+                46.917827
+              ], 
+              [
+                -88.083937, 
+                46.920112
+              ], 
+              [
+                -88.08377, 
+                46.92014
+              ], 
+              [
+                -88.082263, 
+                46.920392
+              ], 
+              [
+                -88.08187, 
+                46.920458
+              ], 
+              [
+                -88.080087, 
+                46.920255
+              ], 
+              [
+                -88.074736, 
+                46.919647
+              ], 
+              [
+                -88.065192, 
+                46.918563
+              ], 
+              [
+                -88.063614, 
+                46.918097
+              ], 
+              [
+                -88.044551, 
+                46.912473
+              ], 
+              [
+                -88.032911, 
+                46.909038
+              ], 
+              [
+                -88.032408, 
+                46.90889
+              ], 
+              [
+                -88.030053, 
+                46.90873
+              ], 
+              [
+                -88.029373, 
+                46.908684
+              ], 
+              [
+                -88.004298, 
+                46.906982
+              ], 
+              [
+                -88.003693, 
+                46.906948
+              ], 
+              [
+                -87.98629, 
+                46.905967
+              ], 
+              [
+                -87.986113, 
+                46.905957
+              ], 
+              [
+                -87.98334, 
+                46.906242
+              ], 
+              [
+                -87.982258, 
+                46.906353
+              ], 
+              [
+                -87.97549, 
+                46.907048
+              ], 
+              [
+                -87.958255, 
+                46.908819
+              ], 
+              [
+                -87.957115, 
+                46.908936
+              ], 
+              [
+                -87.956, 
+                46.909051
+              ], 
+              [
+                -87.955745, 
+                46.909054
+              ], 
+              [
+                -87.954687, 
+                46.909066
+              ], 
+              [
+                -87.915943, 
+                46.909508
+              ], 
+              [
+                -87.914489, 
+                46.909525
+              ], 
+              [
+                -87.911474, 
+                46.909559
+              ], 
+              [
+                -87.910624, 
+                46.909569
+              ], 
+              [
+                -87.908791, 
+                46.90959
+              ], 
+              [
+                -87.900695, 
+                46.909682
+              ], 
+              [
+                -87.900339, 
+                46.909686
+              ], 
+              [
+                -87.90007, 
+                46.909508
+              ], 
+              [
+                -87.88792, 
+                46.901451
+              ], 
+              [
+                -87.875051, 
+                46.892918
+              ], 
+              [
+                -87.874538, 
+                46.892578
+              ], 
+              [
+                -87.873893, 
+                46.892381
+              ], 
+              [
+                -87.847037, 
+                46.884163
+              ], 
+              [
+                -87.846195, 
+                46.883905
+              ], 
+              [
+                -87.844637, 
+                46.884049
+              ], 
+              [
+                -87.841228, 
+                46.884363
+              ], 
+              [
+                -87.838889, 
+                46.885252
+              ], 
+              [
+                -87.830204, 
+                46.888556
+              ], 
+              [
+                -87.827162, 
+                46.889713
+              ], 
+              [
+                -87.816794, 
+                46.891154
+              ], 
+              [
+                -87.81412, 
+                46.888808
+              ], 
+              [
+                -87.813228, 
+                46.888025
+              ], 
+              [
+                -87.813226, 
+                46.888023
+              ], 
+              [
+                -87.793194, 
+                46.880822
+              ], 
+              [
+                -87.788186, 
+                46.880373
+              ], 
+              [
+                -87.783216, 
+                46.879927
+              ], 
+              [
+                -87.782461, 
+                46.879859
+              ], 
+              [
+                -87.781969, 
+                46.87958
+              ], 
+              [
+                -87.777749, 
+                46.87719
+              ], 
+              [
+                -87.777527, 
+                46.877064
+              ], 
+              [
+                -87.777156, 
+                46.876854
+              ], 
+              [
+                -87.77693, 
+                46.876726
+              ], 
+              [
+                -87.776672, 
+                46.874999
+              ], 
+              [
+                -87.776567, 
+                46.874293
+              ], 
+              [
+                -87.776313, 
+                46.872591
+              ], 
+              [
+                -87.776346, 
+                46.872562
+              ], 
+              [
+                -87.778289, 
+                46.870834
+              ], 
+              [
+                -87.778752, 
+                46.870422
+              ], 
+              [
+                -87.776804, 
+                46.866823
+              ], 
+              [
+                -87.766243, 
+                46.861446
+              ], 
+              [
+                -87.765989, 
+                46.861316
+              ], 
+              [
+                -87.765835, 
+                46.861303
+              ], 
+              [
+                -87.755937, 
+                46.860459
+              ], 
+              [
+                -87.755868, 
+                46.860453
+              ], 
+              [
+                -87.755748, 
+                46.860518
+              ], 
+              [
+                -87.754448, 
+                46.861219
+              ], 
+              [
+                -87.748498, 
+                46.864428
+              ], 
+              [
+                -87.746646, 
+                46.865427
+              ], 
+              [
+                -87.745665, 
+                46.865396
+              ], 
+              [
+                -87.744893, 
+                46.865371
+              ], 
+              [
+                -87.744403, 
+                46.865355
+              ], 
+              [
+                -87.741857, 
+                46.865274
+              ], 
+              [
+                -87.741014, 
+                46.865247
+              ], 
+              [
+                -87.740917, 
+                46.865007
+              ], 
+              [
+                -87.740846, 
+                46.864834
+              ], 
+              [
+                -87.73487, 
+                46.85012
+              ], 
+              [
+                -87.735039, 
+                46.849856
+              ], 
+              [
+                -87.735106, 
+                46.849751
+              ], 
+              [
+                -87.736732, 
+                46.847216
+              ], 
+              [
+                -87.736539, 
+                46.846393
+              ], 
+              [
+                -87.736469, 
+                46.846096
+              ], 
+              [
+                -87.734325, 
+                46.836955
+              ], 
+              [
+                -87.731522, 
+                46.831196
+              ], 
+              [
+                -87.727358, 
+                46.827656
+              ], 
+              [
+                -87.72588, 
+                46.827426
+              ], 
+              [
+                -87.725649, 
+                46.82739
+              ], 
+              [
+                -87.713737, 
+                46.825534
+              ], 
+              [
+                -87.69459, 
+                46.827182
+              ], 
+              [
+                -87.685787, 
+                46.832477
+              ], 
+              [
+                -87.685698, 
+                46.83253
+              ], 
+              [
+                -87.685735, 
+                46.832639
+              ], 
+              [
+                -87.68793, 
+                46.839159
+              ], 
+              [
+                -87.687875, 
+                46.839343
+              ], 
+              [
+                -87.68728, 
+                46.841351
+              ], 
+              [
+                -87.687164, 
+                46.841742
+              ], 
+              [
+                -87.68672, 
+                46.841794
+              ], 
+              [
+                -87.681561, 
+                46.842392
+              ], 
+              [
+                -87.680668, 
+                46.842496
+              ], 
+              [
+                -87.679573, 
+                46.841507
+              ], 
+              [
+                -87.675046, 
+                46.83742
+              ], 
+              [
+                -87.674541, 
+                46.836964
+              ], 
+              [
+                -87.673469, 
+                46.829598
+              ], 
+              [
+                -87.673433, 
+                46.82935
+              ], 
+              [
+                -87.673177, 
+                46.827593
+              ], 
+              [
+                -87.673274, 
+                46.8273
+              ], 
+              [
+                -87.673973, 
+                46.825179
+              ], 
+              [
+                -87.674345, 
+                46.82405
+              ], 
+              [
+                -87.672015, 
+                46.820415
+              ], 
+              [
+                -87.662261, 
+                46.815157
+              ], 
+              [
+                -87.65151, 
+                46.812411
+              ], 
+              [
+                -87.646539, 
+                46.813094
+              ], 
+              [
+                -87.642789, 
+                46.813609
+              ], 
+              [
+                -87.641887, 
+                46.813733
+              ], 
+              [
+                -87.640839, 
+                46.813534
+              ], 
+              [
+                -87.6333, 
+                46.812107
+              ], 
+              [
+                -87.628786, 
+                46.806096
+              ], 
+              [
+                -87.628284, 
+                46.805428
+              ], 
+              [
+                -87.628081, 
+                46.805157
+              ], 
+              [
+                -87.627356, 
+                46.804553
+              ], 
+              [
+                -87.627124, 
+                46.80436
+              ], 
+              [
+                -87.619747, 
+                46.79821
+              ], 
+              [
+                -87.617852, 
+                46.796631
+              ], 
+              [
+                -87.6168, 
+                46.795753
+              ], 
+              [
+                -87.613654, 
+                46.793131
+              ], 
+              [
+                -87.613586, 
+                46.793074
+              ], 
+              [
+                -87.610582, 
+                46.790571
+              ], 
+              [
+                -87.609008, 
+                46.789258
+              ], 
+              [
+                -87.607988, 
+                46.788408
+              ], 
+              [
+                -87.595307, 
+                46.78295
+              ], 
+              [
+                -87.595276, 
+                46.782745
+              ], 
+              [
+                -87.594384, 
+                46.776863
+              ], 
+              [
+                -87.593148, 
+                46.768713
+              ], 
+              [
+                -87.592227, 
+                46.762635
+              ], 
+              [
+                -87.59222, 
+                46.762594
+              ], 
+              [
+                -87.591973, 
+                46.760965
+              ], 
+              [
+                -87.591907, 
+                46.760525
+              ], 
+              [
+                -87.591455, 
+                46.757544
+              ], 
+              [
+                -87.591362, 
+                46.756932
+              ], 
+              [
+                -87.591082, 
+                46.755087
+              ], 
+              [
+                -87.590865, 
+                46.753653
+              ], 
+              [
+                -87.590767, 
+                46.753009
+              ], 
+              [
+                -87.590502, 
+                46.752267
+              ], 
+              [
+                -87.589671, 
+                46.749937
+              ], 
+              [
+                -87.587755, 
+                46.744568
+              ], 
+              [
+                -87.587626, 
+                46.744206
+              ], 
+              [
+                -87.584568, 
+                46.735637
+              ], 
+              [
+                -87.58357, 
+                46.732839
+              ], 
+              [
+                -87.582745, 
+                46.730527
+              ], 
+              [
+                -87.581674, 
+                46.729399
+              ], 
+              [
+                -87.573203, 
+                46.720471
+              ], 
+              [
+                -87.567343, 
+                46.716714
+              ], 
+              [
+                -87.557436, 
+                46.710364
+              ], 
+              [
+                -87.553048, 
+                46.707551
+              ], 
+              [
+                -87.551989, 
+                46.706872
+              ], 
+              [
+                -87.549097, 
+                46.705019
+              ], 
+              [
+                -87.54392, 
+                46.7017
+              ], 
+              [
+                -87.534504, 
+                46.695664
+              ], 
+              [
+                -87.533529, 
+                46.69504
+              ], 
+              [
+                -87.532638, 
+                46.694469
+              ], 
+              [
+                -87.523308, 
+                46.688488
+              ], 
+              [
+                -87.523361, 
+                46.687977
+              ], 
+              [
+                -87.523744, 
+                46.6843
+              ], 
+              [
+                -87.524419, 
+                46.67783
+              ], 
+              [
+                -87.524444, 
+                46.677586
+              ], 
+              [
+                -87.519176, 
+                46.670186
+              ], 
+              [
+                -87.506657, 
+                46.652599
+              ], 
+              [
+                -87.503238, 
+                46.647796
+              ], 
+              [
+                -87.503025, 
+                46.647497
+              ], 
+              [
+                -87.501511, 
+                46.646762
+              ], 
+              [
+                -87.493405, 
+                46.642826
+              ], 
+              [
+                -87.49286, 
+                46.642561
+              ], 
+              [
+                -87.492409, 
+                46.642435
+              ], 
+              [
+                -87.469023, 
+                46.635918
+              ], 
+              [
+                -87.467965, 
+                46.635623
+              ], 
+              [
+                -87.466537, 
+                46.631555
+              ], 
+              [
+                -87.467563, 
+                46.626228
+              ], 
+              [
+                -87.464108, 
+                46.614811
+              ], 
+              [
+                -87.451368, 
+                46.605923
+              ], 
+              [
+                -87.442612, 
+                46.602776
+              ], 
+              [
+                -87.411167, 
+                46.601669
+              ], 
+              [
+                -87.403275, 
+                46.595215
+              ], 
+              [
+                -87.383961, 
+                46.59307
+              ], 
+              [
+                -87.381649, 
+                46.580059
+              ], 
+              [
+                -87.392974, 
+                46.572523
+              ], 
+              [
+                -87.392828, 
+                46.570852
+              ], 
+              [
+                -87.382206, 
+                46.553681
+              ], 
+              [
+                -87.375613, 
+                46.54714
+              ], 
+              [
+                -87.3903, 
+                46.542577
+              ], 
+              [
+                -87.393985, 
+                46.533183
+              ], 
+              [
+                -87.38929, 
+                46.524472
+              ], 
+              [
+                -87.381349, 
+                46.517292
+              ], 
+              [
+                -87.366767, 
+                46.507303
+              ], 
+              [
+                -87.352448, 
+                46.501324
+              ], 
+              [
+                -87.351071, 
+                46.500749
+              ], 
+              [
+                -87.312109, 
+                46.49231
+              ], 
+              [
+                -87.310755, 
+                46.492017
+              ], 
+              [
+                -87.309402, 
+                46.491919
+              ], 
+              [
+                -87.259116, 
+                46.488283
+              ], 
+              [
+                -87.258732, 
+                46.488255
+              ], 
+              [
+                -87.258145, 
+                46.488282
+              ], 
+              [
+                -87.205147, 
+                46.490702
+              ], 
+              [
+                -87.202404, 
+                46.490827
+              ], 
+              [
+                -87.200147, 
+                46.491382
+              ], 
+              [
+                -87.175105, 
+                46.497538
+              ], 
+              [
+                -87.175065, 
+                46.497548
+              ], 
+              [
+                -87.145946, 
+                46.495387
+              ], 
+              [
+                -87.12744, 
+                46.494014
+              ], 
+              [
+                -87.116618, 
+                46.495163
+              ], 
+              [
+                -87.107559, 
+                46.496124
+              ], 
+              [
+                -87.09876, 
+                46.503609
+              ], 
+              [
+                -87.077279, 
+                46.515339
+              ], 
+              [
+                -87.046022, 
+                46.519956
+              ], 
+              [
+                -87.029892, 
+                46.525599
+              ], 
+              [
+                -87.017136, 
+                46.53355
+              ], 
+              [
+                -87.008724, 
+                46.532723
+              ], 
+              [
+                -86.976958, 
+                46.526581
+              ], 
+              [
+                -86.964534, 
+                46.516549
+              ], 
+              [
+                -86.962842, 
+                46.509646
+              ], 
+              [
+                -86.94698, 
+                46.484567
+              ], 
+              [
+                -86.946218, 
+                46.479059
+              ], 
+              [
+                -86.949526, 
+                46.476315
+              ], 
+              [
+                -86.947077, 
+                46.472064
+              ], 
+              [
+                -86.927725, 
+                46.464566
+              ], 
+              [
+                -86.903742, 
+                46.466138
+              ], 
+              [
+                -86.889094, 
+                46.458499
+              ], 
+              [
+                -86.883976, 
+                46.450976
+              ], 
+              [
+                -86.883919, 
+                46.441514
+              ], 
+              [
+                -86.875151, 
+                46.43728
+              ], 
+              [
+                -86.850111, 
+                46.434114
+              ], 
+              [
+                -86.837448, 
+                46.434186
+              ], 
+              [
+                -86.816026, 
+                46.437892
+              ], 
+              [
+                -86.810967, 
+                46.449663
+              ], 
+              [
+                -86.808817, 
+                46.460611
+              ], 
+              [
+                -86.803557, 
+                46.466669
+              ], 
+              [
+                -86.787905, 
+                46.477729
+              ], 
+              [
+                -86.768516, 
+                46.479072
+              ], 
+              [
+                -86.750157, 
+                46.479109
+              ], 
+              [
+                -86.735929, 
+                46.475231
+              ], 
+              [
+                -86.731096, 
+                46.47176
+              ], 
+              [
+                -86.730829, 
+                46.468057
+              ], 
+              [
+                -86.710573, 
+                46.444908
+              ], 
+              [
+                -86.70323, 
+                46.439378
+              ], 
+              [
+                -86.698139, 
+                46.438624
+              ], 
+              [
+                -86.686412, 
+                46.454965
+              ], 
+              [
+                -86.688816, 
+                46.463152
+              ], 
+              [
+                -86.686468, 
+                46.471655
+              ], 
+              [
+                -86.683819, 
+                46.498079
+              ], 
+              [
+                -86.696001, 
+                46.50316
+              ], 
+              [
+                -86.701929, 
+                46.511571
+              ], 
+              [
+                -86.709325, 
+                46.543914
+              ], 
+              [
+                -86.695645, 
+                46.555026
+              ], 
+              [
+                -86.678182, 
+                46.561039
+              ], 
+              [
+                -86.675764, 
+                46.557061
+              ], 
+              [
+                -86.670927, 
+                46.556489
+              ], 
+              [
+                -86.656479, 
+                46.558453
+              ], 
+              [
+                -86.652865, 
+                46.560555
+              ], 
+              [
+                -86.62738, 
+                46.53371
+              ], 
+              [
+                -86.629086, 
+                46.518144
+              ], 
+              [
+                -86.632109, 
+                46.508865
+              ], 
+              [
+                -86.63453, 
+                46.504523
+              ], 
+              [
+                -86.641088, 
+                46.500438
+              ], 
+              [
+                -86.645528, 
+                46.492039
+              ], 
+              [
+                -86.646393, 
+                46.485776
+              ], 
+              [
+                -86.636671, 
+                46.478298
+              ], 
+              [
+                -86.627441, 
+                46.47754
+              ], 
+              [
+                -86.620603, 
+                46.483873
+              ], 
+              [
+                -86.618061, 
+                46.489452
+              ], 
+              [
+                -86.612173, 
+                46.493295
+              ], 
+              [
+                -86.609393, 
+                46.492976
+              ], 
+              [
+                -86.606932, 
+                46.478531
+              ], 
+              [
+                -86.609039, 
+                46.470239
+              ], 
+              [
+                -86.586168, 
+                46.463324
+              ], 
+              [
+                -86.557731, 
+                46.487434
+              ], 
+              [
+                -86.524959, 
+                46.505381
+              ], 
+              [
+                -86.495054, 
+                46.524874
+              ], 
+              [
+                -86.484003, 
+                46.535965
+              ], 
+              [
+                -86.481956, 
+                46.542709
+              ], 
+              [
+                -86.469306, 
+                46.551422
+              ], 
+              [
+                -86.45993, 
+                46.551928
+              ], 
+              [
+                -86.44439, 
+                46.548137
+              ], 
+              [
+                -86.437167, 
+                46.54896
+              ], 
+              [
+                -86.390409, 
+                46.563194
+              ], 
+              [
+                -86.34989, 
+                46.578035
+              ], 
+              [
+                -86.188024, 
+                46.654008
+              ], 
+              [
+                -86.161681, 
+                46.669475
+              ], 
+              [
+                -86.138295, 
+                46.672935
+              ], 
+              [
+                -86.119862, 
+                46.657256
+              ], 
+              [
+                -86.112126, 
+                46.655044
+              ], 
+              [
+                -86.099843, 
+                46.654615
+              ], 
+              [
+                -86.074219, 
+                46.657799
+              ], 
+              [
+                -86.036969, 
+                46.667627
+              ], 
+              [
+                -85.995044, 
+                46.673676
+              ], 
+              [
+                -85.95367, 
+                46.676869
+              ], 
+              [
+                -85.924047, 
+                46.684733
+              ], 
+              [
+                -85.877908, 
+                46.690914
+              ], 
+              [
+                -85.864549, 
+                46.690182
+              ], 
+              [
+                -85.857755, 
+                46.68981
+              ], 
+              [
+                -85.85662, 
+                46.689748
+              ], 
+              [
+                -85.841057, 
+                46.688896
+              ], 
+              [
+                -85.840211, 
+                46.688753
+              ], 
+              [
+                -85.815747, 
+                46.68461
+              ], 
+              [
+                -85.796641, 
+                46.681374
+              ], 
+              [
+                -85.794923, 
+                46.681083
+              ], 
+              [
+                -85.792506, 
+                46.68088
+              ], 
+              [
+                -85.751345, 
+                46.67743
+              ], 
+              [
+                -85.750606, 
+                46.677368
+              ], 
+              [
+                -85.742834, 
+                46.677322
+              ], 
+              [
+                -85.739929, 
+                46.677305
+              ], 
+              [
+                -85.738624, 
+                46.677298
+              ], 
+              [
+                -85.714415, 
+                46.677156
+              ], 
+              [
+                -85.700945, 
+                46.678114
+              ], 
+              [
+                -85.674011, 
+                46.68003
+              ], 
+              [
+                -85.668753, 
+                46.680404
+              ], 
+              [
+                -85.663673, 
+                46.680227
+              ], 
+              [
+                -85.647387, 
+                46.679658
+              ], 
+              [
+                -85.624573, 
+                46.678862
+              ], 
+              [
+                -85.61747, 
+                46.678054
+              ], 
+              [
+                -85.595806, 
+                46.67559
+              ], 
+              [
+                -85.594158, 
+                46.675402
+              ], 
+              [
+                -85.593558, 
+                46.675334
+              ], 
+              [
+                -85.587741, 
+                46.674672
+              ], 
+              [
+                -85.587345, 
+                46.674627
+              ], 
+              [
+                -85.584989, 
+                46.674608
+              ], 
+              [
+                -85.558762, 
+                46.674395
+              ], 
+              [
+                -85.547593, 
+                46.674304
+              ], 
+              [
+                -85.542517, 
+                46.674263
+              ], 
+              [
+                -85.50951, 
+                46.675786
+              ], 
+              [
+                -85.482978, 
+                46.680283
+              ], 
+              [
+                -85.482096, 
+                46.680432
+              ], 
+              [
+                -85.369805, 
+                46.713754
+              ], 
+              [
+                -85.362572, 
+                46.716548
+              ], 
+              [
+                -85.347047, 
+                46.722546
+              ], 
+              [
+                -85.296395, 
+                46.742114
+              ], 
+              [
+                -85.289846, 
+                46.744644
+              ], 
+              [
+                -85.257999, 
+                46.753078
+              ], 
+              [
+                -85.25686, 
+                46.75338
+              ], 
+              [
+                -85.256031, 
+                46.753481
+              ], 
+              [
+                -85.237873, 
+                46.755703
+              ], 
+              [
+                -85.173042, 
+                46.763634
+              ], 
+              [
+                -85.063556, 
+                46.757856
+              ], 
+              [
+                -85.036286, 
+                46.760435
+              ], 
+              [
+                -85.00924, 
+                46.769224
+              ], 
+              [
+                -84.989497, 
+                46.772403
+              ], 
+              [
+                -84.964652, 
+                46.772845
+              ], 
+              [
+                -84.954009, 
+                46.771362
+              ], 
+              [
+                -84.95158, 
+                46.769488
+              ], 
+              [
+                -84.987539, 
+                46.745483
+              ], 
+              [
+                -85.007616, 
+                46.728339
+              ], 
+              [
+                -85.020159, 
+                46.712463
+              ], 
+              [
+                -85.027513, 
+                46.697451
+              ], 
+              [
+                -85.030078, 
+                46.684769
+              ], 
+              [
+                -85.028291, 
+                46.675125
+              ], 
+              [
+                -85.035504, 
+                46.625021
+              ], 
+              [
+                -85.037056, 
+                46.600995
+              ], 
+              [
+                -85.035476, 
+                46.581547
+              ], 
+              [
+                -85.031507, 
+                46.568703
+              ], 
+              [
+                -85.029594, 
+                46.554419
+              ], 
+              [
+                -85.027374, 
+                46.553756
+              ], 
+              [
+                -85.025491, 
+                46.546397
+              ], 
+              [
+                -85.027083, 
+                46.543038
+              ], 
+              [
+                -85.045534, 
+                46.537694
+              ], 
+              [
+                -85.052954, 
+                46.532827
+              ], 
+              [
+                -85.056133, 
+                46.52652
+              ], 
+              [
+                -85.054943, 
+                46.51475
+              ], 
+              [
+                -85.049847, 
+                46.503963
+              ], 
+              [
+                -85.033766, 
+                46.48767
+              ], 
+              [
+                -85.025598, 
+                46.483028
+              ], 
+              [
+                -85.015211, 
+                46.479712
+              ], 
+              [
+                -84.969464, 
+                46.47629
+              ], 
+              [
+                -84.955307, 
+                46.480269
+              ], 
+              [
+                -84.947269, 
+                46.487399
+              ], 
+              [
+                -84.937145, 
+                46.489252
+              ], 
+              [
+                -84.934432, 
+                46.480315
+              ], 
+              [
+                -84.921931, 
+                46.469962
+              ], 
+              [
+                -84.915184, 
+                46.467515
+              ], 
+              [
+                -84.893423, 
+                46.465406
+              ], 
+              [
+                -84.87507, 
+                46.466781
+              ], 
+              [
+                -84.861448, 
+                46.46993
+              ], 
+              [
+                -84.849767, 
+                46.460245
+              ], 
+              [
+                -84.843907, 
+                46.448661
+              ], 
+              [
+                -84.829491, 
+                46.444071
+              ], 
+              [
+                -84.800101, 
+                46.446219
+              ], 
+              [
+                -84.769151, 
+                46.453523
+              ], 
+              [
+                -84.723338, 
+                46.468266
+              ], 
+              [
+                -84.689672, 
+                46.483923
+              ], 
+              [
+                -84.678423, 
+                46.487694
+              ], 
+              [
+                -84.65388, 
+                46.48225
+              ], 
+              [
+                -84.63102, 
+                46.484868
+              ], 
+              [
+                -84.616489, 
+                46.47187
+              ], 
+              [
+                -84.607945, 
+                46.456747
+              ], 
+              [
+                -84.584167, 
+                46.43941
+              ], 
+              [
+                -84.573522, 
+                46.427895
+              ], 
+              [
+                -84.551496, 
+                46.418522
+              ], 
+              [
+                -84.503719, 
+                46.43919
+              ], 
+              [
+                -84.493401, 
+                46.440313
+              ], 
+              [
+                -84.479513, 
+                46.432573
+              ], 
+              [
+                -84.471848, 
+                46.434289
+              ], 
+              [
+                -84.462597, 
+                46.44094
+              ], 
+              [
+                -84.455527, 
+                46.453897
+              ], 
+              [
+                -84.455256, 
+                46.462785
+              ], 
+              [
+                -84.463322, 
+                46.467435
+              ], 
+              [
+                -84.445149, 
+                46.489016
+              ], 
+              [
+                -84.420274, 
+                46.501077
+              ], 
+              [
+                -84.394725, 
+                46.499242
+              ], 
+              [
+                -84.37504, 
+                46.508669
+              ], 
+              [
+                -84.325371, 
+                46.500021
+              ], 
+              [
+                -84.264266, 
+                46.495055
+              ], 
+              [
+                -84.226131, 
+                46.53392
+              ], 
+              [
+                -84.193729, 
+                46.53992
+              ], 
+              [
+                -84.139426, 
+                46.532219
+              ], 
+              [
+                -84.128925, 
+                46.530119
+              ], 
+              [
+                -84.117925, 
+                46.517619
+              ], 
+              [
+                -84.111225, 
+                46.504119
+              ], 
+              [
+                -84.125026, 
+                46.470143
+              ], 
+              [
+                -84.146172, 
+                46.41852
+              ], 
+              [
+                -84.138906, 
+                46.372221
+              ], 
+              [
+                -84.115563, 
+                46.268225
+              ], 
+              [
+                -84.108089, 
+                46.241238
+              ], 
+              [
+                -84.118175, 
+                46.233968
+              ], 
+              [
+                -84.125024, 
+                46.232885
+              ], 
+              [
+                -84.134652, 
+                46.23214
+              ], 
+              [
+                -84.14595, 
+                46.224995
+              ], 
+              [
+                -84.14715, 
+                46.224184
+              ], 
+              [
+                -84.14922, 
+                46.223808
+              ], 
+              [
+                -84.150725, 
+                46.223808
+              ], 
+              [
+                -84.151666, 
+                46.224184
+              ], 
+              [
+                -84.152042, 
+                46.224937
+              ], 
+              [
+                -84.15223, 
+                46.226254
+              ], 
+              [
+                -84.152499, 
+                46.227875
+              ], 
+              [
+                -84.159485, 
+                46.233233
+              ], 
+              [
+                -84.182732, 
+                46.23545
+              ], 
+              [
+                -84.219494, 
+                46.231992
+              ], 
+              [
+                -84.233117, 
+                46.224037
+              ], 
+              [
+                -84.249164, 
+                46.206461
+              ], 
+              [
+                -84.245233, 
+                46.192571
+              ], 
+              [
+                -84.247687, 
+                46.17989
+              ], 
+              [
+                -84.251424, 
+                46.175888
+              ], 
+              [
+                -84.221001, 
+                46.163062
+              ], 
+              [
+                -84.196669, 
+                46.16615
+              ], 
+              [
+                -84.177298, 
+                46.183993
+              ], 
+              [
+                -84.17164, 
+                46.181731
+              ], 
+              [
+                -84.125022, 
+                46.180209
+              ], 
+              [
+                -84.114941, 
+                46.174114
+              ], 
+              [
+                -84.113259, 
+                46.16886
+              ], 
+              [
+                -84.100126, 
+                46.15077
+              ], 
+              [
+                -84.095818, 
+                46.147733
+              ], 
+              [
+                -84.089309, 
+                46.146432
+              ], 
+              [
+                -84.060383, 
+                46.146138
+              ], 
+              [
+                -84.026536, 
+                46.131648
+              ], 
+              [
+                -84.031036, 
+                46.123186
+              ], 
+              [
+                -84.038696, 
+                46.12562
+              ], 
+              [
+                -84.0519, 
+                46.11981
+              ], 
+              [
+                -84.061329, 
+                46.113482
+              ], 
+              [
+                -84.069147, 
+                46.103978
+              ], 
+              [
+                -84.072398, 
+                46.09669
+              ], 
+              [
+                -84.071741, 
+                46.092441
+              ], 
+              [
+                -84.066257, 
+                46.087438
+              ], 
+              [
+                -84.051712, 
+                46.079189
+              ], 
+              [
+                -84.027861, 
+                46.054784
+              ], 
+              [
+                -84.006082, 
+                46.044586
+              ], 
+              [
+                -83.989526, 
+                46.032823
+              ], 
+              [
+                -83.963808, 
+                46.027833
+              ], 
+              [
+                -83.95141, 
+                46.029042
+              ], 
+              [
+                -83.943933, 
+                46.031465
+              ], 
+              [
+                -83.939012, 
+                46.029226
+              ], 
+              [
+                -83.93547, 
+                46.020385
+              ], 
+              [
+                -83.931175, 
+                46.017871
+              ], 
+              [
+                -83.908583, 
+                46.011471
+              ], 
+              [
+                -83.900535, 
+                45.998918
+              ], 
+              [
+                -83.873147, 
+                45.993426
+              ], 
+              [
+                -83.868233, 
+                45.995075
+              ], 
+              [
+                -83.845399, 
+                46.025679
+              ], 
+              [
+                -83.830146, 
+                46.022324
+              ], 
+              [
+                -83.818202, 
+                46.002425
+              ], 
+              [
+                -83.794055, 
+                45.995801
+              ], 
+              [
+                -83.776436, 
+                46.004202
+              ], 
+              [
+                -83.765277, 
+                46.018363
+              ], 
+              [
+                -83.765233, 
+                46.031935
+              ], 
+              [
+                -83.773785, 
+                46.051471
+              ], 
+              [
+                -83.796555, 
+                46.056688
+              ], 
+              [
+                -83.81252, 
+                46.073469
+              ], 
+              [
+                -83.824036, 
+                46.103638
+              ], 
+              [
+                -83.815826, 
+                46.108529
+              ], 
+              [
+                -83.81241, 
+                46.108598
+              ], 
+              [
+                -83.792867, 
+                46.101971
+              ], 
+              [
+                -83.779996, 
+                46.093515
+              ], 
+              [
+                -83.771821, 
+                46.090999
+              ], 
+              [
+                -83.755991, 
+                46.092159
+              ], 
+              [
+                -83.728165, 
+                46.090957
+              ], 
+              [
+                -83.7233, 
+                46.09381
+              ], 
+              [
+                -83.719791, 
+                46.101031
+              ], 
+              [
+                -83.703861, 
+                46.103366
+              ], 
+              [
+                -83.661161, 
+                46.100258
+              ], 
+              [
+                -83.63498, 
+                46.103953
+              ], 
+              [
+                -83.625554, 
+                46.102212
+              ], 
+              [
+                -83.615343, 
+                46.095976
+              ], 
+              [
+                -83.598612, 
+                46.090085
+              ], 
+              [
+                -83.581315, 
+                46.089613
+              ], 
+              [
+                -83.57609, 
+                46.083513
+              ], 
+              [
+                -83.57264, 
+                46.074922
+              ], 
+              [
+                -83.572574, 
+                46.069895
+              ], 
+              [
+                -83.565351, 
+                46.061898
+              ], 
+              [
+                -83.554059, 
+                46.058882
+              ], 
+              [
+                -83.547202, 
+                46.047868
+              ], 
+              [
+                -83.543366, 
+                46.037196
+              ], 
+              [
+                -83.540845, 
+                46.021247
+              ], 
+              [
+                -83.532913, 
+                46.011328
+              ], 
+              [
+                -83.49484, 
+                45.999541
+              ], 
+              [
+                -83.488348, 
+                45.999543
+              ], 
+              [
+                -83.480639, 
+                45.996164
+              ], 
+              [
+                -83.473946, 
+                45.988558
+              ], 
+              [
+                -83.473221, 
+                45.984422
+              ], 
+              [
+                -83.481765, 
+                45.971873
+              ], 
+              [
+                -83.488809, 
+                45.96874
+              ], 
+              [
+                -83.510623, 
+                45.929324
+              ], 
+              [
+                -83.517242, 
+                45.923614
+              ], 
+              [
+                -83.526347, 
+                45.918636
+              ], 
+              [
+                -83.561838, 
+                45.912562
+              ], 
+              [
+                -83.583052, 
+                45.915919
+              ], 
+              [
+                -83.632214, 
+                45.932287
+              ], 
+              [
+                -83.65766, 
+                45.945463
+              ], 
+              [
+                -83.687695, 
+                45.935389
+              ], 
+              [
+                -83.719433, 
+                45.934078
+              ], 
+              [
+                -83.732986, 
+                45.937641
+              ], 
+              [
+                -83.742778, 
+                45.938002
+              ], 
+              [
+                -83.766233, 
+                45.935221
+              ], 
+              [
+                -83.768854, 
+                45.932069
+              ], 
+              [
+                -83.78611, 
+                45.933375
+              ], 
+              [
+                -83.80104, 
+                45.937582
+              ], 
+              [
+                -83.803332, 
+                45.943362
+              ], 
+              [
+                -83.808147, 
+                45.945693
+              ], 
+              [
+                -83.82281, 
+                45.943985
+              ], 
+              [
+                -83.827566, 
+                45.941236
+              ], 
+              [
+                -83.835505, 
+                45.941843
+              ], 
+              [
+                -83.840869, 
+                45.952726
+              ], 
+              [
+                -83.846437, 
+                45.953181
+              ], 
+              [
+                -83.864859, 
+                45.959465
+              ], 
+              [
+                -83.879616, 
+                45.966196
+              ], 
+              [
+                -83.881055, 
+                45.968185
+              ], 
+              [
+                -83.910838, 
+                45.965613
+              ], 
+              [
+                -83.921257, 
+                45.958075
+              ], 
+              [
+                -83.952183, 
+                45.965498
+              ], 
+              [
+                -83.985141, 
+                45.967133
+              ], 
+              [
+                -83.996471, 
+                45.961461
+              ], 
+              [
+                -84.017565, 
+                45.959046
+              ], 
+              [
+                -84.080071, 
+                45.970822
+              ], 
+              [
+                -84.090391, 
+                45.967256
+              ], 
+              [
+                -84.10537, 
+                45.972948
+              ], 
+              [
+                -84.107204, 
+                45.977161
+              ], 
+              [
+                -84.111174, 
+                45.978675
+              ], 
+              [
+                -84.114284, 
+                45.978322
+              ], 
+              [
+                -84.140461, 
+                45.975348
+              ], 
+              [
+                -84.140816, 
+                45.975308
+              ], 
+              [
+                -84.169368, 
+                45.966919
+              ], 
+              [
+                -84.17225, 
+                45.966072
+              ], 
+              [
+                -84.174763, 
+                45.967414
+              ], 
+              [
+                -84.175244, 
+                45.967671
+              ], 
+              [
+                -84.17806, 
+                45.969175
+              ], 
+              [
+                -84.203135, 
+                45.968516
+              ], 
+              [
+                -84.213885, 
+                45.968233
+              ], 
+              [
+                -84.218951, 
+                45.9681
+              ], 
+              [
+                -84.238174, 
+                45.967595
+              ], 
+              [
+                -84.253993, 
+                45.956727
+              ], 
+              [
+                -84.254952, 
+                45.956068
+              ], 
+              [
+                -84.2613, 
+                45.956083
+              ], 
+              [
+                -84.261858, 
+                45.956084
+              ], 
+              [
+                -84.266673, 
+                45.956096
+              ], 
+              [
+                -84.281663, 
+                45.956132
+              ], 
+              [
+                -84.317422, 
+                45.956217
+              ], 
+              [
+                -84.319565, 
+                45.956222
+              ], 
+              [
+                -84.320017, 
+                45.956223
+              ], 
+              [
+                -84.320494, 
+                45.956224
+              ], 
+              [
+                -84.324647, 
+                45.956234
+              ], 
+              [
+                -84.325115, 
+                45.956235
+              ], 
+              [
+                -84.325787, 
+                45.956237
+              ], 
+              [
+                -84.326413, 
+                45.956238
+              ], 
+              [
+                -84.327177, 
+                45.95624
+              ], 
+              [
+                -84.330021, 
+                45.956247
+              ], 
+              [
+                -84.330346, 
+                45.956043
+              ], 
+              [
+                -84.331572, 
+                45.955274
+              ], 
+              [
+                -84.345451, 
+                45.946569
+              ], 
+              [
+                -84.353259, 
+                45.941671
+              ], 
+              [
+                -84.353272, 
+                45.941663
+              ], 
+              [
+                -84.353714, 
+                45.941478
+              ], 
+              [
+                -84.357525, 
+                45.939881
+              ], 
+              [
+                -84.376429, 
+                45.931962
+              ], 
+              [
+                -84.376431, 
+                45.931963
+              ], 
+              [
+                -84.387383, 
+                45.937497
+              ], 
+              [
+                -84.391464, 
+                45.93956
+              ], 
+              [
+                -84.398007, 
+                45.942866
+              ], 
+              [
+                -84.398323, 
+                45.943026
+              ], 
+              [
+                -84.39854, 
+                45.943136
+              ], 
+              [
+                -84.399134, 
+                45.943436
+              ], 
+              [
+                -84.39946, 
+                45.9436
+              ], 
+              [
+                -84.399582, 
+                45.943662
+              ], 
+              [
+                -84.411212, 
+                45.949539
+              ], 
+              [
+                -84.428239, 
+                45.958144
+              ], 
+              [
+                -84.428689, 
+                45.958371
+              ], 
+              [
+                -84.436454, 
+                45.971722
+              ], 
+              [
+                -84.436574, 
+                45.97193
+              ], 
+              [
+                -84.437633, 
+                45.97375
+              ], 
+              [
+                -84.443086, 
+                45.977825
+              ], 
+              [
+                -84.443138, 
+                45.977863
+              ], 
+              [
+                -84.44314, 
+                45.977862
+              ], 
+              [
+                -84.443336, 
+                45.977775
+              ], 
+              [
+                -84.459956, 
+                45.970343
+              ], 
+              [
+                -84.463128, 
+                45.968925
+              ], 
+              [
+                -84.473694, 
+                45.974321
+              ], 
+              [
+                -84.478576, 
+                45.976814
+              ], 
+              [
+                -84.480436, 
+                45.977764
+              ], 
+              [
+                -84.4808, 
+                45.978385
+              ], 
+              [
+                -84.482563, 
+                45.981391
+              ], 
+              [
+                -84.483062, 
+                45.982242
+              ], 
+              [
+                -84.482506, 
+                45.985109
+              ], 
+              [
+                -84.482442, 
+                45.985441
+              ], 
+              [
+                -84.482773, 
+                45.986035
+              ], 
+              [
+                -84.484009, 
+                45.98825
+              ], 
+              [
+                -84.485625, 
+                45.988453
+              ], 
+              [
+                -84.488536, 
+                45.98882
+              ], 
+              [
+                -84.507201, 
+                45.991169
+              ], 
+              [
+                -84.514123, 
+                45.987242
+              ], 
+              [
+                -84.514071, 
+                45.971292
+              ], 
+              [
+                -84.525052, 
+                45.968578
+              ], 
+              [
+                -84.532392, 
+                45.969448
+              ], 
+              [
+                -84.534422, 
+                45.972762
+              ], 
+              [
+                -84.534648, 
+                45.978132
+              ], 
+              [
+                -84.530444, 
+                45.991385
+              ], 
+              [
+                -84.533426, 
+                46.00572
+              ], 
+              [
+                -84.540995, 
+                46.019501
+              ], 
+              [
+                -84.544405, 
+                46.02286
+              ], 
+              [
+                -84.563891, 
+                46.032459
+              ], 
+              [
+                -84.581081, 
+                46.031041
+              ], 
+              [
+                -84.586592, 
+                46.026584
+              ], 
+              [
+                -84.609063, 
+                46.026418
+              ], 
+              [
+                -84.647609, 
+                46.049704
+              ], 
+              [
+                -84.656567, 
+                46.052654
+              ], 
+              [
+                -84.66671, 
+                46.050486
+              ], 
+              [
+                -84.675835, 
+                46.046009
+              ], 
+              [
+                -84.687322, 
+                46.03488
+              ], 
+              [
+                -84.692735, 
+                46.027019
+              ], 
+              [
+                -84.6927, 
+                46.016963
+              ], 
+              [
+                -84.686269, 
+                45.979144
+              ], 
+              [
+                -84.684368, 
+                45.977499
+              ], 
+              [
+                -84.685254, 
+                45.973454
+              ], 
+              [
+                -84.687712, 
+                45.97126
+              ], 
+              [
+                -84.703948, 
+                45.970901
+              ], 
+              [
+                -84.723039, 
+                45.967279
+              ], 
+              [
+                -84.730179, 
+                45.961198
+              ], 
+              [
+                -84.738849, 
+                45.945792
+              ], 
+              [
+                -84.73937, 
+                45.941816
+              ], 
+              [
+                -84.733041, 
+                45.932837
+              ], 
+              [
+                -84.718955, 
+                45.927449
+              ], 
+              [
+                -84.713614, 
+                45.920366
+              ], 
+              [
+                -84.713251, 
+                45.916047
+              ], 
+              [
+                -84.734002, 
+                45.907026
+              ], 
+              [
+                -84.730252, 
+                45.897267
+              ], 
+              [
+                -84.729482, 
+                45.895263
+              ], 
+              [
+                -84.721277, 
+                45.873911
+              ], 
+              [
+                -84.721276, 
+                45.873908
+              ], 
+              [
+                -84.715501, 
+                45.865962
+              ], 
+              [
+                -84.715481, 
+                45.865934
+              ], 
+              [
+                -84.715365, 
+                45.86583
+              ], 
+              [
+                -84.709727, 
+                45.860766
+              ], 
+              [
+                -84.702122, 
+                45.853935
+              ], 
+              [
+                -84.701594, 
+                45.853461
+              ], 
+              [
+                -84.701183, 
+                45.853092
+              ], 
+              [
+                -84.702256, 
+                45.850557
+              ], 
+              [
+                -84.702295, 
+                45.850464
+              ], 
+              [
+                -84.704647, 
+                45.849425
+              ], 
+              [
+                -84.705036, 
+                45.849253
+              ], 
+              [
+                -84.705923, 
+                45.848861
+              ], 
+              [
+                -84.705978, 
+                45.848837
+              ], 
+              [
+                -84.706383, 
+                45.848658
+              ], 
+              [
+                -84.707676, 
+                45.848609
+              ], 
+              [
+                -84.709261, 
+                45.848548
+              ], 
+              [
+                -84.720609, 
+                45.848116
+              ], 
+              [
+                -84.720836, 
+                45.848107
+              ], 
+              [
+                -84.721011, 
+                45.847972
+              ], 
+              [
+                -84.721468, 
+                45.84762
+              ], 
+              [
+                -84.722764, 
+                45.846621
+              ], 
+              [
+                -84.723005, 
+                45.845845
+              ], 
+              [
+                -84.723552, 
+                45.84408
+              ], 
+              [
+                -84.725734, 
+                45.837045
+              ], 
+              [
+                -84.726921, 
+                45.836964
+              ], 
+              [
+                -84.746985, 
+                45.835597
+              ], 
+              [
+                -84.747033, 
+                45.835621
+              ], 
+              [
+                -84.751507, 
+                45.837878
+              ], 
+              [
+                -84.754672, 
+                45.839475
+              ], 
+              [
+                -84.758333, 
+                45.841322
+              ], 
+              [
+                -84.773761, 
+                45.849105
+              ], 
+              [
+                -84.7754, 
+                45.849932
+              ], 
+              [
+                -84.792763, 
+                45.858691
+              ], 
+              [
+                -84.820557, 
+                45.868293
+              ], 
+              [
+                -84.828996, 
+                45.871209
+              ], 
+              [
+                -84.831396, 
+                45.872038
+              ], 
+              [
+                -84.831947, 
+                45.872776
+              ], 
+              [
+                -84.834213, 
+                45.87581
+              ], 
+              [
+                -84.834236, 
+                45.875841
+              ], 
+              [
+                -84.835147, 
+                45.87706
+              ], 
+              [
+                -84.838282, 
+                45.881258
+              ], 
+              [
+                -84.838427, 
+                45.881452
+              ], 
+              [
+                -84.838472, 
+                45.881512
+              ], 
+              [
+                -84.838228, 
+                45.883685
+              ], 
+              [
+                -84.837841, 
+                45.887123
+              ], 
+              [
+                -84.837717, 
+                45.888226
+              ], 
+              [
+                -84.837624, 
+                45.889054
+              ], 
+              [
+                -84.837635, 
+                45.889075
+              ], 
+              [
+                -84.839639, 
+                45.893042
+              ], 
+              [
+                -84.840666, 
+                45.895074
+              ], 
+              [
+                -84.842147, 
+                45.898005
+              ], 
+              [
+                -84.842243, 
+                45.898194
+              ], 
+              [
+                -84.843087, 
+                45.898346
+              ], 
+              [
+                -84.844615, 
+                45.89862
+              ], 
+              [
+                -84.846035, 
+                45.898875
+              ], 
+              [
+                -84.850592, 
+                45.899694
+              ], 
+              [
+                -84.852916, 
+                45.900111
+              ], 
+              [
+                -84.853303, 
+                45.900296
+              ], 
+              [
+                -84.855982, 
+                45.901574
+              ], 
+              [
+                -84.859025, 
+                45.903026
+              ], 
+              [
+                -84.860544, 
+                45.903751
+              ], 
+              [
+                -84.861494, 
+                45.904204
+              ], 
+              [
+                -84.867851, 
+                45.907237
+              ], 
+              [
+                -84.870355, 
+                45.908432
+              ], 
+              [
+                -84.873254, 
+                45.909815
+              ], 
+              [
+                -84.873273, 
+                45.909832
+              ], 
+              [
+                -84.877253, 
+                45.91348
+              ], 
+              [
+                -84.878969, 
+                45.915053
+              ], 
+              [
+                -84.879507, 
+                45.915546
+              ], 
+              [
+                -84.879835, 
+                45.915847
+              ], 
+              [
+                -84.902572, 
+                45.923557
+              ], 
+              [
+                -84.902913, 
+                45.923673
+              ], 
+              [
+                -84.917288, 
+                45.930576
+              ], 
+              [
+                -84.917484, 
+                45.93067
+              ], 
+              [
+                -84.936565, 
+                45.955217
+              ], 
+              [
+                -84.936953, 
+                45.955716
+              ], 
+              [
+                -84.937134, 
+                45.955949
+              ], 
+              [
+                -84.971232, 
+                45.984208
+              ], 
+              [
+                -84.973556, 
+                45.986134
+              ], 
+              [
+                -84.974668, 
+                45.986874
+              ], 
+              [
+                -84.974714, 
+                45.986905
+              ], 
+              [
+                -84.992511, 
+                45.998751
+              ], 
+              [
+                -85.003597, 
+                46.00613
+              ], 
+              [
+                -85.010208, 
+                46.009084
+              ], 
+              [
+                -85.010941, 
+                46.009412
+              ], 
+              [
+                -85.01399, 
+                46.010774
+              ], 
+              [
+                -85.020951, 
+                46.012845
+              ], 
+              [
+                -85.047028, 
+                46.020603
+              ], 
+              [
+                -85.047974, 
+                46.020885
+              ], 
+              [
+                -85.048972, 
+                46.021182
+              ], 
+              [
+                -85.054297, 
+                46.022766
+              ], 
+              [
+                -85.055581, 
+                46.023148
+              ], 
+              [
+                -85.081934, 
+                46.027295
+              ], 
+              [
+                -85.088345, 
+                46.028304
+              ], 
+              [
+                -85.088818, 
+                46.028378
+              ], 
+              [
+                -85.102862, 
+                46.032477
+              ], 
+              [
+                -85.102899, 
+                46.032488
+              ], 
+              [
+                -85.105148, 
+                46.033598
+              ], 
+              [
+                -85.106684, 
+                46.034356
+              ], 
+              [
+                -85.113601, 
+                46.037769
+              ], 
+              [
+                -85.124796, 
+                46.043294
+              ], 
+              [
+                -85.125243, 
+                46.043515
+              ], 
+              [
+                -85.127046, 
+                46.044404
+              ], 
+              [
+                -85.127202, 
+                46.044481
+              ], 
+              [
+                -85.130433, 
+                46.046076
+              ], 
+              [
+                -85.133704, 
+                46.047184
+              ], 
+              [
+                -85.13765, 
+                46.048522
+              ], 
+              [
+                -85.139572, 
+                46.049173
+              ], 
+              [
+                -85.140835, 
+                46.049601
+              ], 
+              [
+                -85.142456, 
+                46.049764
+              ], 
+              [
+                -85.14516, 
+                46.050035
+              ], 
+              [
+                -85.147103, 
+                46.05023
+              ], 
+              [
+                -85.151738, 
+                46.050696
+              ], 
+              [
+                -85.151825, 
+                46.050705
+              ], 
+              [
+                -85.152027, 
+                46.050725
+              ], 
+              [
+                -85.19063, 
+                46.047622
+              ], 
+              [
+                -85.194724, 
+                46.045992
+              ], 
+              [
+                -85.195201, 
+                46.045802
+              ], 
+              [
+                -85.197523, 
+                46.044878
+              ], 
+              [
+                -85.210834, 
+                46.053301
+              ], 
+              [
+                -85.214657, 
+                46.055719
+              ], 
+              [
+                -85.217705, 
+                46.057648
+              ], 
+              [
+                -85.220289, 
+                46.059283
+              ], 
+              [
+                -85.221206, 
+                46.059864
+              ], 
+              [
+                -85.222416, 
+                46.060629
+              ], 
+              [
+                -85.222511, 
+                46.060689
+              ], 
+              [
+                -85.222959, 
+                46.060741
+              ], 
+              [
+                -85.225052, 
+                46.060984
+              ], 
+              [
+                -85.248414, 
+                46.063694
+              ], 
+              [
+                -85.255375, 
+                46.064502
+              ], 
+              [
+                -85.266385, 
+                46.065779
+              ], 
+              [
+                -85.268308, 
+                46.066365
+              ], 
+              [
+                -85.278345, 
+                46.069426
+              ], 
+              [
+                -85.287693, 
+                46.072276
+              ], 
+              [
+                -85.287936, 
+                46.072398
+              ], 
+              [
+                -85.290046, 
+                46.073456
+              ], 
+              [
+                -85.295321, 
+                46.076103
+              ], 
+              [
+                -85.304238, 
+                46.080576
+              ], 
+              [
+                -85.310613, 
+                46.083773
+              ], 
+              [
+                -85.316264, 
+                46.086608
+              ], 
+              [
+                -85.335466, 
+                46.092459
+              ], 
+              [
+                -85.335911, 
+                46.092595
+              ], 
+              [
+                -85.33628, 
+                46.092586
+              ], 
+              [
+                -85.3561, 
+                46.092089
+              ], 
+              [
+                -85.356214, 
+                46.092086
+              ], 
+              [
+                -85.356339, 
+                46.092022
+              ], 
+              [
+                -85.366622, 
+                46.086778
+              ], 
+              [
+                -85.367158, 
+                46.086606
+              ], 
+              [
+                -85.381263, 
+                46.082086
+              ], 
+              [
+                -85.381394, 
+                46.082044
+              ], 
+              [
+                -85.382312, 
+                46.083035
+              ], 
+              [
+                -85.382781, 
+                46.08354
+              ], 
+              [
+                -85.382927, 
+                46.083698
+              ], 
+              [
+                -85.390047, 
+                46.091381
+              ], 
+              [
+                -85.393832, 
+                46.095465
+              ], 
+              [
+                -85.404194, 
+                46.098859
+              ], 
+              [
+                -85.409463, 
+                46.100585
+              ], 
+              [
+                -85.412064, 
+                46.101437
+              ], 
+              [
+                -85.426916, 
+                46.101964
+              ], 
+              [
+                -85.42921, 
+                46.101021
+              ], 
+              [
+                -85.429533, 
+                46.100888
+              ], 
+              [
+                -85.432064, 
+                46.099848
+              ], 
+              [
+                -85.437352, 
+                46.097675
+              ], 
+              [
+                -85.437768, 
+                46.097504
+              ], 
+              [
+                -85.44157, 
+                46.095942
+              ], 
+              [
+                -85.441879, 
+                46.095815
+              ], 
+              [
+                -85.441932, 
+                46.095793
+              ], 
+              [
+                -85.441934, 
+                46.095783
+              ], 
+              [
+                -85.442112, 
+                46.094867
+              ], 
+              [
+                -85.442293, 
+                46.093941
+              ], 
+              [
+                -85.442255, 
+                46.093916
+              ], 
+              [
+                -85.440908, 
+                46.093053
+              ], 
+              [
+                -85.440191, 
+                46.092593
+              ], 
+              [
+                -85.445835, 
+                46.086426
+              ], 
+              [
+                -85.445976, 
+                46.086272
+              ], 
+              [
+                -85.44699, 
+                46.085164
+              ], 
+              [
+                -85.45315, 
+                46.087219
+              ], 
+              [
+                -85.466828, 
+                46.091783
+              ], 
+              [
+                -85.468899, 
+                46.092474
+              ], 
+              [
+                -85.476097, 
+                46.094876
+              ], 
+              [
+                -85.480315, 
+                46.096283
+              ], 
+              [
+                -85.480603, 
+                46.096379
+              ], 
+              [
+                -85.48072, 
+                46.096382
+              ], 
+              [
+                -85.486316, 
+                46.096543
+              ], 
+              [
+                -85.499422, 
+                46.09692
+              ], 
+              [
+                -85.5001, 
+                46.09694
+              ], 
+              [
+                -85.50024, 
+                46.096915
+              ], 
+              [
+                -85.512696, 
+                46.094727
+              ], 
+              [
+                -85.521424, 
+                46.091314
+              ], 
+              [
+                -85.52157, 
+                46.091257
+              ], 
+              [
+                -85.521636, 
+                46.091217
+              ], 
+              [
+                -85.528403, 
+                46.087121
+              ], 
+              [
+                -85.528947, 
+                46.086791
+              ], 
+              [
+                -85.529058, 
+                46.086724
+              ], 
+              [
+                -85.533341, 
+                46.084131
+              ], 
+              [
+                -85.539479, 
+                46.080416
+              ], 
+              [
+                -85.540858, 
+                46.079581
+              ], 
+              [
+                -85.542974, 
+                46.077926
+              ], 
+              [
+                -85.54595, 
+                46.075598
+              ], 
+              [
+                -85.561097, 
+                46.063751
+              ], 
+              [
+                -85.563567, 
+                46.06182
+              ], 
+              [
+                -85.603785, 
+                46.030363
+              ], 
+              [
+                -85.615661, 
+                46.01168
+              ], 
+              [
+                -85.617577, 
+                46.008665
+              ], 
+              [
+                -85.617709, 
+                46.008458
+              ], 
+              [
+                -85.625118, 
+                46.002515
+              ], 
+              [
+                -85.628293, 
+                45.999968
+              ], 
+              [
+                -85.628998, 
+                45.999403
+              ], 
+              [
+                -85.62933, 
+                45.999136
+              ], 
+              [
+                -85.646279, 
+                45.985541
+              ], 
+              [
+                -85.646359, 
+                45.985477
+              ], 
+              [
+                -85.64743, 
+                45.984619
+              ], 
+              [
+                -85.647554, 
+                45.984519
+              ], 
+              [
+                -85.648581, 
+                45.983695
+              ], 
+              [
+                -85.648942, 
+                45.983103
+              ], 
+              [
+                -85.650434, 
+                45.980656
+              ], 
+              [
+                -85.650942, 
+                45.979824
+              ], 
+              [
+                -85.654686, 
+                45.973686
+              ], 
+              [
+                -85.654738, 
+                45.973648
+              ], 
+              [
+                -85.663966, 
+                45.967013
+              ], 
+              [
+                -85.664609, 
+                45.96688
+              ], 
+              [
+                -85.688149, 
+                45.962025
+              ], 
+              [
+                -85.697203, 
+                45.960158
+              ], 
+              [
+                -85.697609, 
+                45.960237
+              ], 
+              [
+                -85.701627, 
+                45.961017
+              ], 
+              [
+                -85.704237, 
+                45.961524
+              ], 
+              [
+                -85.704951, 
+                45.961662
+              ], 
+              [
+                -85.706548, 
+                45.961973
+              ], 
+              [
+                -85.716228, 
+                45.963852
+              ], 
+              [
+                -85.724246, 
+                45.965409
+              ], 
+              [
+                -85.725153, 
+                45.965398
+              ], 
+              [
+                -85.731776, 
+                45.965317
+              ], 
+              [
+                -85.74353, 
+                45.965174
+              ], 
+              [
+                -85.743618, 
+                45.965173
+              ], 
+              [
+                -85.760165, 
+                45.968914
+              ], 
+              [
+                -85.770938, 
+                45.971349
+              ], 
+              [
+                -85.774055, 
+                45.972337
+              ], 
+              [
+                -85.790279, 
+                45.97748
+              ], 
+              [
+                -85.790639, 
+                45.977594
+              ], 
+              [
+                -85.791841, 
+                45.977745
+              ], 
+              [
+                -85.8092, 
+                45.979931
+              ], 
+              [
+                -85.810442, 
+                45.980087
+              ], 
+              [
+                -85.811054, 
+                45.980032
+              ], 
+              [
+                -85.817066, 
+                45.979491
+              ], 
+              [
+                -85.817558, 
+                45.979447
+              ], 
+              [
+                -85.818006, 
+                45.979276
+              ], 
+              [
+                -85.820721, 
+                45.978239
+              ], 
+              [
+                -85.825819, 
+                45.976292
+              ], 
+              [
+                -85.826034, 
+                45.976021
+              ], 
+              [
+                -85.826278, 
+                45.975714
+              ], 
+              [
+                -85.82978, 
+                45.9713
+              ], 
+              [
+                -85.832261, 
+                45.968172
+              ], 
+              [
+                -85.832603, 
+                45.967742
+              ], 
+              [
+                -85.834504, 
+                45.967258
+              ], 
+              [
+                -85.835217, 
+                45.967077
+              ], 
+              [
+                -85.835456, 
+                45.967016
+              ], 
+              [
+                -85.838133, 
+                45.966334
+              ], 
+              [
+                -85.838366, 
+                45.966275
+              ], 
+              [
+                -85.839025, 
+                45.966107
+              ], 
+              [
+                -85.842404, 
+                45.965247
+              ], 
+              [
+                -85.843016, 
+                45.965342
+              ], 
+              [
+                -85.86019, 
+                45.968016
+              ], 
+              [
+                -85.861157, 
+                45.968167
+              ], 
+              [
+                -85.865402, 
+                45.968257
+              ], 
+              [
+                -85.882442, 
+                45.96862
+              ], 
+              [
+                -85.893196, 
+                45.967253
+              ], 
+              [
+                -85.9091, 
+                45.959074
+              ], 
+              [
+                -85.91237, 
+                45.956487
+              ], 
+              [
+                -85.912604, 
+                45.956302
+              ], 
+              [
+                -85.922737, 
+                45.948287
+              ], 
+              [
+                -85.926213, 
+                45.938093
+              ], 
+              [
+                -85.926017, 
+                45.932104
+              ], 
+              [
+                -85.917238, 
+                45.927782
+              ], 
+              [
+                -85.910264, 
+                45.922112
+              ], 
+              [
+                -85.913769, 
+                45.919439
+              ], 
+              [
+                -85.920581, 
+                45.920994
+              ], 
+              [
+                -85.954063, 
+                45.936629
+              ], 
+              [
+                -85.998868, 
+                45.950968
+              ], 
+              [
+                -86.050956, 
+                45.962205
+              ], 
+              [
+                -86.072067, 
+                45.965313
+              ], 
+              [
+                -86.094753, 
+                45.966704
+              ], 
+              [
+                -86.123567, 
+                45.964748
+              ], 
+              [
+                -86.145714, 
+                45.957372
+              ], 
+              [
+                -86.150173, 
+                45.954494
+              ], 
+              [
+                -86.159415, 
+                45.953765
+              ], 
+              [
+                -86.196618, 
+                45.963185
+              ], 
+              [
+                -86.208255, 
+                45.962978
+              ], 
+              [
+                -86.220546, 
+                45.958883
+              ], 
+              [
+                -86.22906, 
+                45.94857
+              ], 
+              [
+                -86.233613, 
+                45.945802
+              ], 
+              [
+                -86.248008, 
+                45.944849
+              ], 
+              [
+                -86.254768, 
+                45.94864
+              ], 
+              [
+                -86.278007, 
+                45.942057
+              ], 
+              [
+                -86.315981, 
+                45.915247
+              ], 
+              [
+                -86.324232, 
+                45.90608
+              ], 
+              [
+                -86.332625, 
+                45.851813
+              ], 
+              [
+                -86.349134, 
+                45.83416
+              ], 
+              [
+                -86.355062, 
+                45.805355
+              ], 
+              [
+                -86.351658, 
+                45.798132
+              ], 
+              [
+                -86.363808, 
+                45.790057
+              ], 
+              [
+                -86.369918, 
+                45.789254
+              ], 
+              [
+                -86.395809, 
+                45.78974
+              ], 
+              [
+                -86.401656, 
+                45.795412
+              ], 
+              [
+                -86.415971, 
+                45.793793
+              ], 
+              [
+                -86.424828, 
+                45.789747
+              ], 
+              [
+                -86.428423, 
+                45.785587
+              ], 
+              [
+                -86.428946, 
+                45.782524
+              ], 
+              [
+                -86.427183, 
+                45.77905
+              ], 
+              [
+                -86.428294, 
+                45.77562
+              ], 
+              [
+                -86.431921, 
+                45.767756
+              ], 
+              [
+                -86.435493, 
+                45.764485
+              ], 
+              [
+                -86.43553, 
+                45.764452
+              ], 
+              [
+                -86.439661, 
+                45.760669
+              ], 
+              [
+                -86.440329, 
+                45.760508
+              ], 
+              [
+                -86.442335, 
+                45.760026
+              ], 
+              [
+                -86.455534, 
+                45.75685
+              ], 
+              [
+                -86.459866, 
+                45.758042
+              ], 
+              [
+                -86.466039, 
+                45.759741
+              ], 
+              [
+                -86.47905, 
+                45.757416
+              ], 
+              [
+                -86.486028, 
+                45.746608
+              ], 
+              [
+                -86.496251, 
+                45.749255
+              ], 
+              [
+                -86.504216, 
+                45.75423
+              ], 
+              [
+                -86.51457, 
+                45.752337
+              ], 
+              [
+                -86.518281, 
+                45.747688
+              ], 
+              [
+                -86.523197, 
+                45.736498
+              ], 
+              [
+                -86.525166, 
+                45.720797
+              ], 
+              [
+                -86.53328, 
+                45.710849
+              ], 
+              [
+                -86.537258, 
+                45.708361
+              ], 
+              [
+                -86.54143, 
+                45.70811
+              ], 
+              [
+                -86.570627, 
+                45.716412
+              ], 
+              [
+                -86.580936, 
+                45.71192
+              ], 
+              [
+                -86.585847, 
+                45.704922
+              ], 
+              [
+                -86.584771, 
+                45.682007
+              ], 
+              [
+                -86.587528, 
+                45.666456
+              ], 
+              [
+                -86.593613, 
+                45.665625
+              ], 
+              [
+                -86.611306, 
+                45.669733
+              ], 
+              [
+                -86.62043, 
+                45.667098
+              ], 
+              [
+                -86.625132, 
+                45.663819
+              ], 
+              [
+                -86.627938, 
+                45.659293
+              ], 
+              [
+                -86.616972, 
+                45.620581
+              ], 
+              [
+                -86.616893, 
+                45.606796
+              ], 
+              [
+                -86.62387, 
+                45.613262
+              ], 
+              [
+                -86.633224, 
+                45.618249
+              ], 
+              [
+                -86.648439, 
+                45.615992
+              ], 
+              [
+                -86.666127, 
+                45.621689
+              ], 
+              [
+                -86.687208, 
+                45.634253
+              ], 
+              [
+                -86.688772, 
+                45.639969
+              ], 
+              [
+                -86.695275, 
+                45.648175
+              ], 
+              [
+                -86.708038, 
+                45.649202
+              ], 
+              [
+                -86.717828, 
+                45.668106
+              ], 
+              [
+                -86.718191, 
+                45.67732
+              ], 
+              [
+                -86.715781, 
+                45.683949
+              ], 
+              [
+                -86.705184, 
+                45.690901
+              ], 
+              [
+                -86.689102, 
+                45.687862
+              ], 
+              [
+                -86.676184, 
+                45.691862
+              ], 
+              [
+                -86.665677, 
+                45.702217
+              ], 
+              [
+                -86.665511, 
+                45.70903
+              ], 
+              [
+                -86.669263, 
+                45.71086
+              ], 
+              [
+                -86.67148, 
+                45.72053
+              ], 
+              [
+                -86.662762, 
+                45.728964
+              ], 
+              [
+                -86.647319, 
+                45.732618
+              ], 
+              [
+                -86.633138, 
+                45.747654
+              ], 
+              [
+                -86.634902, 
+                45.763536
+              ], 
+              [
+                -86.631018, 
+                45.782019
+              ], 
+              [
+                -86.617336, 
+                45.783538
+              ], 
+              [
+                -86.612137, 
+                45.779356
+              ], 
+              [
+                -86.597661, 
+                45.775385
+              ], 
+              [
+                -86.583391, 
+                45.778242
+              ], 
+              [
+                -86.576869, 
+                45.788502
+              ], 
+              [
+                -86.581071, 
+                45.791802
+              ], 
+              [
+                -86.581759, 
+                45.794797
+              ], 
+              [
+                -86.576858, 
+                45.801473
+              ], 
+              [
+                -86.571172, 
+                45.805452
+              ], 
+              [
+                -86.563392, 
+                45.804469
+              ], 
+              [
+                -86.557215, 
+                45.808172
+              ], 
+              [
+                -86.555547, 
+                45.813499
+              ], 
+              [
+                -86.559044, 
+                45.822323
+              ], 
+              [
+                -86.555186, 
+                45.831696
+              ], 
+              [
+                -86.549723, 
+                45.836039
+              ], 
+              [
+                -86.545602, 
+                45.836495
+              ], 
+              [
+                -86.538831, 
+                45.840083
+              ], 
+              [
+                -86.529208, 
+                45.853043
+              ], 
+              [
+                -86.528224, 
+                45.856974
+              ], 
+              [
+                -86.529573, 
+                45.874974
+              ], 
+              [
+                -86.532989, 
+                45.882665
+              ], 
+              [
+                -86.541464, 
+                45.890234
+              ], 
+              [
+                -86.553608, 
+                45.896476
+              ], 
+              [
+                -86.567719, 
+                45.9005
+              ], 
+              [
+                -86.583304, 
+                45.898784
+              ], 
+              [
+                -86.593184, 
+                45.88511
+              ], 
+              [
+                -86.603293, 
+                45.876626
+              ], 
+              [
+                -86.613536, 
+                45.875982
+              ], 
+              [
+                -86.625736, 
+                45.868295
+              ], 
+              [
+                -86.633168, 
+                45.860068
+              ], 
+              [
+                -86.632478, 
+                45.843309
+              ], 
+              [
+                -86.645998, 
+                45.833888
+              ], 
+              [
+                -86.721113, 
+                45.845431
+              ], 
+              [
+                -86.72852, 
+                45.848759
+              ], 
+              [
+                -86.742466, 
+                45.864719
+              ], 
+              [
+                -86.749638, 
+                45.867796
+              ], 
+              [
+                -86.758449, 
+                45.867274
+              ], 
+              [
+                -86.78208, 
+                45.860195
+              ], 
+              [
+                -86.784177, 
+                45.854641
+              ], 
+              [
+                -86.782259, 
+                45.82995
+              ], 
+              [
+                -86.777225, 
+                45.827183
+              ], 
+              [
+                -86.774612, 
+                45.821696
+              ], 
+              [
+                -86.773279, 
+                45.811385
+              ], 
+              [
+                -86.785722, 
+                45.794517
+              ], 
+              [
+                -86.801476, 
+                45.780027
+              ], 
+              [
+                -86.821523, 
+                45.770356
+              ], 
+              [
+                -86.823743, 
+                45.765486
+              ], 
+              [
+                -86.820868, 
+                45.760776
+              ], 
+              [
+                -86.821814, 
+                45.757164
+              ], 
+              [
+                -86.838658, 
+                45.741831
+              ], 
+              [
+                -86.841818, 
+                45.729051
+              ], 
+              [
+                -86.838746, 
+                45.722307
+              ], 
+              [
+                -86.870392, 
+                45.710087
+              ], 
+              [
+                -86.876904, 
+                45.711891
+              ], 
+              [
+                -86.895342, 
+                45.711464
+              ], 
+              [
+                -86.904089, 
+                45.709546
+              ], 
+              [
+                -86.92106, 
+                45.697868
+              ], 
+              [
+                -86.944158, 
+                45.695833
+              ], 
+              [
+                -86.964275, 
+                45.672761
+              ], 
+              [
+                -86.966885, 
+                45.675001
+              ], 
+              [
+                -86.967315, 
+                45.684923
+              ], 
+              [
+                -86.969765, 
+                45.691895
+              ], 
+              [
+                -86.981349, 
+                45.696463
+              ], 
+              [
+                -86.984588, 
+                45.705812
+              ], 
+              [
+                -86.982413, 
+                45.719873
+              ], 
+              [
+                -86.977655, 
+                45.728768
+              ], 
+              [
+                -86.975224, 
+                45.75313
+              ], 
+              [
+                -86.981341, 
+                45.76616
+              ], 
+              [
+                -86.981624, 
+                45.792221
+              ], 
+              [
+                -86.988438, 
+                45.810621
+              ], 
+              [
+                -87.00508, 
+                45.831718
+              ], 
+              [
+                -87.006095, 
+                45.832244
+              ], 
+              [
+                -87.006225, 
+                45.832312
+              ], 
+              [
+                -87.018902, 
+                45.838886
+              ], 
+              [
+                -87.031435, 
+                45.837238
+              ], 
+              [
+                -87.039842, 
+                45.834245
+              ], 
+              [
+                -87.050104, 
+                45.823844
+              ], 
+              [
+                -87.052043, 
+                45.821879
+              ], 
+              [
+                -87.057439, 
+                45.812483
+              ], 
+              [
+                -87.057863, 
+                45.80917
+              ], 
+              [
+                -87.057882, 
+                45.809021
+              ], 
+              [
+                -87.058207, 
+                45.806483
+              ], 
+              [
+                -87.058277, 
+                45.80594
+              ], 
+              [
+                -87.058489, 
+                45.804285
+              ], 
+              [
+                -87.058844, 
+                45.80151
+              ], 
+              [
+                -87.058682, 
+                45.796447
+              ], 
+              [
+                -87.058628, 
+                45.794772
+              ], 
+              [
+                -87.058413, 
+                45.788071
+              ], 
+              [
+                -87.058127, 
+                45.779152
+              ], 
+              [
+                -87.058601, 
+                45.778126
+              ], 
+              [
+                -87.063975, 
+                45.76651
+              ], 
+              [
+                -87.064302, 
+                45.758828
+              ], 
+              [
+                -87.062406, 
+                45.753296
+              ], 
+              [
+                -87.05555, 
+                45.751535
+              ], 
+              [
+                -87.052908, 
+                45.747983
+              ], 
+              [
+                -87.057444, 
+                45.736822
+              ], 
+              [
+                -87.061721, 
+                45.732821
+              ], 
+              [
+                -87.070442, 
+                45.718779
+              ], 
+              [
+                -87.059953, 
+                45.708893
+              ], 
+              [
+                -87.059533, 
+                45.708497
+              ], 
+              [
+                -87.061339, 
+                45.708122
+              ], 
+              [
+                -87.073932, 
+                45.705508
+              ], 
+              [
+                -87.074813, 
+                45.705325
+              ], 
+              [
+                -87.074873, 
+                45.705312
+              ], 
+              [
+                -87.093365, 
+                45.701473
+              ], 
+              [
+                -87.095455, 
+                45.701039
+              ], 
+              [
+                -87.099401, 
+                45.698614
+              ], 
+              [
+                -87.099411, 
+                45.698514
+              ], 
+              [
+                -87.099725, 
+                45.695231
+              ], 
+              [
+                -87.100265, 
+                45.694808
+              ], 
+              [
+                -87.111638, 
+                45.685905
+              ], 
+              [
+                -87.112524, 
+                45.685696
+              ], 
+              [
+                -87.12857, 
+                45.681909
+              ], 
+              [
+                -87.129412, 
+                45.68171
+              ], 
+              [
+                -87.146713, 
+                45.673662
+              ], 
+              [
+                -87.15033, 
+                45.67198
+              ], 
+              [
+                -87.161593, 
+                45.666741
+              ], 
+              [
+                -87.172241, 
+                45.661788
+              ], 
+              [
+                -87.173493, 
+                45.66049
+              ], 
+              [
+                -87.191496, 
+                45.641827
+              ], 
+              [
+                -87.196852, 
+                45.636275
+              ], 
+              [
+                -87.21122, 
+                45.616468
+              ], 
+              [
+                -87.215616, 
+                45.610408
+              ], 
+              [
+                -87.218989, 
+                45.60576
+              ], 
+              [
+                -87.223647, 
+                45.599338
+              ], 
+              [
+                -87.232472, 
+                45.59087
+              ], 
+              [
+                -87.234612, 
+                45.588817
+              ], 
+              [
+                -87.250122, 
+                45.569059
+              ], 
+              [
+                -87.260709, 
+                45.555573
+              ], 
+              [
+                -87.261979, 
+                45.553954
+              ], 
+              [
+                -87.263488, 
+                45.552032
+              ], 
+              [
+                -87.263763, 
+                45.551482
+              ], 
+              [
+                -87.264446, 
+                45.550118
+              ], 
+              [
+                -87.280709, 
+                45.517624
+              ], 
+              [
+                -87.288726, 
+                45.501606
+              ], 
+              [
+                -87.289443, 
+                45.50053
+              ], 
+              [
+                -87.306122, 
+                45.475513
+              ], 
+              [
+                -87.317416, 
+                45.466712
+              ], 
+              [
+                -87.319703, 
+                45.464929
+              ], 
+              [
+                -87.330262, 
+                45.451011
+              ], 
+              [
+                -87.333147, 
+                45.447208
+              ], 
+              [
+                -87.333407, 
+                45.446056
+              ], 
+              [
+                -87.334033, 
+                45.443273
+              ], 
+              [
+                -87.334249, 
+                45.442315
+              ], 
+              [
+                -87.333309, 
+                45.437269
+              ], 
+              [
+                -87.33324, 
+                45.436897
+              ], 
+              [
+                -87.331107, 
+                45.433673
+              ], 
+              [
+                -87.329958, 
+                45.431937
+              ], 
+              [
+                -87.32864, 
+                45.431331
+              ], 
+              [
+                -87.327367, 
+                45.430745
+              ], 
+              [
+                -87.326855, 
+                45.43051
+              ], 
+              [
+                -87.325834, 
+                45.43004
+              ], 
+              [
+                -87.326069, 
+                45.429459
+              ], 
+              [
+                -87.327749, 
+                45.425307
+              ], 
+              [
+                -87.328248, 
+                45.424716
+              ], 
+              [
+                -87.329505, 
+                45.423229
+              ], 
+              [
+                -87.330882, 
+                45.421598
+              ], 
+              [
+                -87.336152, 
+                45.41536
+              ], 
+              [
+                -87.338083, 
+                45.41436
+              ], 
+              [
+                -87.350852, 
+                45.407743
+              ], 
+              [
+                -87.351306, 
+                45.407328
+              ], 
+              [
+                -87.359512, 
+                45.399829
+              ], 
+              [
+                -87.360078, 
+                45.398512
+              ], 
+              [
+                -87.360529, 
+                45.397464
+              ], 
+              [
+                -87.364368, 
+                45.388532
+              ], 
+              [
+                -87.371282, 
+                45.383738
+              ], 
+              [
+                -87.387851, 
+                45.372251
+              ], 
+              [
+                -87.389181, 
+                45.371329
+              ], 
+              [
+                -87.389478, 
+                45.371123
+              ], 
+              [
+                -87.389849, 
+                45.370866
+              ], 
+              [
+                -87.391446, 
+                45.369759
+              ], 
+              [
+                -87.3925, 
+                45.369028
+              ], 
+              [
+                -87.39452, 
+                45.363702
+              ], 
+              [
+                -87.399973, 
+                45.349322
+              ], 
+              [
+                -87.409987, 
+                45.33892
+              ], 
+              [
+                -87.427379, 
+                45.320854
+              ], 
+              [
+                -87.431684, 
+                45.316383
+              ], 
+              [
+                -87.436128, 
+                45.307705
+              ], 
+              [
+                -87.437257, 
+                45.3055
+              ], 
+              [
+                -87.437507, 
+                45.30367
+              ], 
+              [
+                -87.438908, 
+                45.293405
+              ], 
+              [
+                -87.455519, 
+                45.280736
+              ], 
+              [
+                -87.456414, 
+                45.280053
+              ], 
+              [
+                -87.464794, 
+                45.273662
+              ], 
+              [
+                -87.465201, 
+                45.273351
+              ], 
+              [
+                -87.496869, 
+                45.240364
+              ], 
+              [
+                -87.503302, 
+                45.233662
+              ], 
+              [
+                -87.504186, 
+                45.232742
+              ], 
+              [
+                -87.512336, 
+                45.224252
+              ], 
+              [
+                -87.530499, 
+                45.208056
+              ], 
+              [
+                -87.535346, 
+                45.203734
+              ], 
+              [
+                -87.548964, 
+                45.191591
+              ], 
+              [
+                -87.552468, 
+                45.189767
+              ], 
+              [
+                -87.556327, 
+                45.187759
+              ], 
+              [
+                -87.563417, 
+                45.18407
+              ], 
+              [
+                -87.582324, 
+                45.169039
+              ], 
+              [
+                -87.585651, 
+                45.166394
+              ], 
+              [
+                -87.587822, 
+                45.163591
+              ], 
+              [
+                -87.596556, 
+                45.152316
+              ], 
+              [
+                -87.600796, 
+                45.146842
+              ], 
+              [
+                -87.607812, 
+                45.134833
+              ], 
+              [
+                -87.607958, 
+                45.134583
+              ], 
+              [
+                -87.60928, 
+                45.13232
+              ], 
+              [
+                -87.612019, 
+                45.123377
+              ], 
+              [
+                -87.611814, 
+                45.122406
+              ], 
+              [
+                -87.6115, 
+                45.120915
+              ], 
+              [
+                -87.611497, 
+                45.120901
+              ], 
+              [
+                -87.611216, 
+                45.119568
+              ], 
+              [
+                -87.610073, 
+                45.114141
+              ], 
+              [
+                -87.608951, 
+                45.112886
+              ], 
+              [
+                -87.606757, 
+                45.110433
+              ], 
+              [
+                -87.605193, 
+                45.108684
+              ], 
+              [
+                -87.604464, 
+                45.107868
+              ], 
+              [
+                -87.602542, 
+                45.105719
+              ], 
+              [
+                -87.602217, 
+                45.105356
+              ], 
+              [
+                -87.602179, 
+                45.105314
+              ], 
+              [
+                -87.601981, 
+                45.105092
+              ], 
+              [
+                -87.601649, 
+                45.104721
+              ], 
+              [
+                -87.601086, 
+                45.104092
+              ], 
+              [
+                -87.60012, 
+                45.103011
+              ], 
+              [
+                -87.598689, 
+                45.102052
+              ], 
+              [
+                -87.597665, 
+                45.101365
+              ], 
+              [
+                -87.592318, 
+                45.097779
+              ], 
+              [
+                -87.59027, 
+                45.096406
+              ], 
+              [
+                -87.589396, 
+                45.09649
+              ], 
+              [
+                -87.581969, 
+                45.097206
+              ], 
+              [
+                -87.590208, 
+                45.095264
+              ], 
+              [
+                -87.659952, 
+                45.107512
+              ], 
+              [
+                -87.731389, 
+                45.170989
+              ], 
+              [
+                -87.735282, 
+                45.176565
+              ], 
+              [
+                -87.741732, 
+                45.198201
+              ], 
+              [
+                -87.739492, 
+                45.202126
+              ], 
+              [
+                -87.73171, 
+                45.206792
+              ], 
+              [
+                -87.711722, 
+                45.243481
+              ], 
+              [
+                -87.707779, 
+                45.258343
+              ], 
+              [
+                -87.709137, 
+                45.260341
+              ], 
+              [
+                -87.648126, 
+                45.339396
+              ], 
+              [
+                -87.647729, 
+                45.350721
+              ], 
+              [
+                -87.657349, 
+                45.368752
+              ], 
+              [
+                -87.675017, 
+                45.382454
+              ], 
+              [
+                -87.685934, 
+                45.388711
+              ], 
+              [
+                -87.693956, 
+                45.389893
+              ], 
+              [
+                -87.718891, 
+                45.377462
+              ], 
+              [
+                -87.751452, 
+                45.351755
+              ], 
+              [
+                -87.771384, 
+                45.35121
+              ], 
+              [
+                -87.790324, 
+                45.353444
+              ], 
+              [
+                -87.832612, 
+                45.352249
+              ], 
+              [
+                -87.835303, 
+                45.35098
+              ], 
+              [
+                -87.838141, 
+                45.345101
+              ], 
+              [
+                -87.850133, 
+                45.340435
+              ], 
+              [
+                -87.88517, 
+                45.351736
+              ], 
+              [
+                -87.888052, 
+                45.354697
+              ], 
+              [
+                -87.860432, 
+                45.423504
+              ], 
+              [
+                -87.820348, 
+                45.460284
+              ], 
+              [
+                -87.812976, 
+                45.464159
+              ], 
+              [
+                -87.806347, 
+                45.472262
+              ], 
+              [
+                -87.79896, 
+                45.485147
+              ], 
+              [
+                -87.792769, 
+                45.499967
+              ], 
+              [
+                -87.788798, 
+                45.565947
+              ], 
+              [
+                -87.792016, 
+                45.616756
+              ], 
+              [
+                -87.79588, 
+                45.618846
+              ], 
+              [
+                -87.824102, 
+                45.647138
+              ], 
+              [
+                -87.823672, 
+                45.659817
+              ], 
+              [
+                -87.781623, 
+                45.67328
+              ], 
+              [
+                -87.780808, 
+                45.680349
+              ], 
+              [
+                -87.807144, 
+                45.708014
+              ], 
+              [
+                -87.828827, 
+                45.72276
+              ], 
+              [
+                -87.868111, 
+                45.749477
+              ], 
+              [
+                -87.991447, 
+                45.795393
+              ], 
+              [
+                -88.039729, 
+                45.789626
+              ], 
+              [
+                -88.050634, 
+                45.780972
+              ], 
+              [
+                -88.058256, 
+                45.780719
+              ], 
+              [
+                -88.072091, 
+                45.780261
+              ], 
+              [
+                -88.094047, 
+                45.785658
+              ], 
+              [
+                -88.130434, 
+                45.81002
+              ], 
+              [
+                -88.13611, 
+                45.819029
+              ], 
+              [
+                -88.13364, 
+                45.823128
+              ], 
+              [
+                -88.114267, 
+                45.837891
+              ], 
+              [
+                -88.106622, 
+                45.841072
+              ], 
+              [
+                -88.088825, 
+                45.85586
+              ], 
+              [
+                -88.073134, 
+                45.871952
+              ], 
+              [
+                -88.073944, 
+                45.875593
+              ], 
+              [
+                -88.102603, 
+                45.909888
+              ], 
+              [
+                -88.118516, 
+                45.918562
+              ], 
+              [
+                -88.139372, 
+                45.929932
+              ], 
+              [
+                -88.175532, 
+                45.944897
+              ], 
+              [
+                -88.202247, 
+                45.949584
+              ], 
+              [
+                -88.211158, 
+                45.944531
+              ], 
+              [
+                -88.239672, 
+                45.948982
+              ], 
+              [
+                -88.244452, 
+                45.952142
+              ], 
+              [
+                -88.250133, 
+                45.963147
+              ], 
+              [
+                -88.295559, 
+                45.951459
+              ], 
+              [
+                -88.376447, 
+                45.989458
+              ], 
+              [
+                -88.423437, 
+                45.98193
+              ], 
+              [
+                -88.489608, 
+                45.991381
+              ], 
+              [
+                -88.497417, 
+                45.995149
+              ], 
+              [
+                -88.500133, 
+                46.000457
+              ], 
+              [
+                -88.507188, 
+                46.0183
+              ], 
+              [
+                -88.532414, 
+                46.021212
+              ], 
+              [
+                -88.613063, 
+                45.990627
+              ], 
+              [
+                -88.616405, 
+                45.9877
+              ], 
+              [
+                -88.6375, 
+                45.98496
+              ], 
+              [
+                -88.666056, 
+                45.988191
+              ], 
+              [
+                -88.670939, 
+                45.999957
+              ], 
+              [
+                -88.670115, 
+                45.999957
+              ], 
+              [
+                -88.674606, 
+                46.010567
+              ], 
+              [
+                -88.679132, 
+                46.013538
+              ], 
+              [
+                -88.683198, 
+                46.014563
+              ], 
+              [
+                -88.730675, 
+                46.026535
+              ], 
+              [
+                -88.739994, 
+                46.027308
+              ], 
+              [
+                -88.769712, 
+                46.018968
+              ], 
+              [
+                -88.815629, 
+                46.02232
+              ], 
+              [
+                -88.840584, 
+                46.031112
+              ], 
+              [
+                -88.848464, 
+                46.038858
+              ], 
+              [
+                -88.85027, 
+                46.040274
+              ], 
+              [
+                -88.932558, 
+                46.073601
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 38, 
+      "properties": {
+        "CENSUSAREA": 56538.901, 
+        "GEO_ID": "0400000US26", 
+        "ISO": "US-MI", 
+        "LSAD": "", 
+        "NAME": "Michigan", 
+        "NAME_1": "Michigan", 
+        "STATE": "MI"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -89.545006, 
+                36.336809
+              ], 
+              [
+                -89.560439, 
+                36.337746
+              ], 
+              [
+                -89.581636, 
+                36.342357
+              ], 
+              [
+                -89.605668, 
+                36.342234
+              ], 
+              [
+                -89.610689, 
+                36.340442
+              ], 
+              [
+                -89.615841, 
+                36.336085
+              ], 
+              [
+                -89.6198, 
+                36.329546
+              ], 
+              [
+                -89.620255, 
+                36.323006
+              ], 
+              [
+                -89.611819, 
+                36.309088
+              ], 
+              [
+                -89.578492, 
+                36.288317
+              ], 
+              [
+                -89.554289, 
+                36.277751
+              ], 
+              [
+                -89.544797, 
+                36.280458
+              ], 
+              [
+                -89.539487, 
+                36.277368
+              ], 
+              [
+                -89.535529, 
+                36.270541
+              ], 
+              [
+                -89.534745, 
+                36.252576
+              ], 
+              [
+                -89.541621, 
+                36.247891
+              ], 
+              [
+                -89.589561, 
+                36.239116
+              ], 
+              [
+                -89.602374, 
+                36.238106
+              ], 
+              [
+                -89.678046, 
+                36.248284
+              ], 
+              [
+                -89.691308, 
+                36.252079
+              ], 
+              [
+                -89.699817, 
+                36.248384
+              ], 
+              [
+                -89.629452, 
+                36.185382
+              ], 
+              [
+                -89.618228, 
+                36.179966
+              ], 
+              [
+                -89.607004, 
+                36.171179
+              ], 
+              [
+                -89.594397, 
+                36.155457
+              ], 
+              [
+                -89.591605, 
+                36.144096
+              ], 
+              [
+                -89.594, 
+                36.12719
+              ], 
+              [
+                -89.601936, 
+                36.11947
+              ], 
+              [
+                -89.624235, 
+                36.108626
+              ], 
+              [
+                -89.684439, 
+                36.051719
+              ], 
+              [
+                -89.687254, 
+                36.034048
+              ], 
+              [
+                -89.690306, 
+                36.024835
+              ], 
+              [
+                -89.706932, 
+                36.000981
+              ], 
+              [
+                -89.733095, 
+                36.000608
+              ], 
+              [
+                -89.737564, 
+                36.000522
+              ], 
+              [
+                -89.737648, 
+                36.000567
+              ], 
+              [
+                -89.769973, 
+                36.000536
+              ], 
+              [
+                -89.770255, 
+                36.000524
+              ], 
+              [
+                -89.86901, 
+                35.99964
+              ], 
+              [
+                -89.87459, 
+                35.999575
+              ], 
+              [
+                -89.875085, 
+                35.999578
+              ], 
+              [
+                -89.875586, 
+                35.999562
+              ], 
+              [
+                -89.896508, 
+                35.999432
+              ], 
+              [
+                -89.901183, 
+                35.999365
+              ], 
+              [
+                -89.959375, 
+                35.99902
+              ], 
+              [
+                -89.959377, 
+                35.99902
+              ], 
+              [
+                -89.959893, 
+                35.99902
+              ], 
+              [
+                -89.961075, 
+                35.999135
+              ], 
+              [
+                -89.965327, 
+                35.998813
+              ], 
+              [
+                -89.972563, 
+                35.998994
+              ], 
+              [
+                -90.12635, 
+                35.997596
+              ], 
+              [
+                -90.127331, 
+                35.997635
+              ], 
+              [
+                -90.158812, 
+                35.997375
+              ], 
+              [
+                -90.2888, 
+                35.996419
+              ], 
+              [
+                -90.288947, 
+                35.996418
+              ], 
+              [
+                -90.292376, 
+                35.996397
+              ], 
+              [
+                -90.339434, 
+                35.996033
+              ], 
+              [
+                -90.342616, 
+                35.995895
+              ], 
+              [
+                -90.368718, 
+                35.995812
+              ], 
+              [
+                -90.36443, 
+                36.013625
+              ], 
+              [
+                -90.319168, 
+                36.089976
+              ], 
+              [
+                -90.220425, 
+                36.184764
+              ], 
+              [
+                -90.198735, 
+                36.201382
+              ], 
+              [
+                -90.114922, 
+                36.265595
+              ], 
+              [
+                -90.083731, 
+                36.272332
+              ], 
+              [
+                -90.076301, 
+                36.280708
+              ], 
+              [
+                -90.06398, 
+                36.303038
+              ], 
+              [
+                -90.064514, 
+                36.382085
+              ], 
+              [
+                -90.072897, 
+                36.393007
+              ], 
+              [
+                -90.133993, 
+                36.437906
+              ], 
+              [
+                -90.156369, 
+                36.487748
+              ], 
+              [
+                -90.154409, 
+                36.496832
+              ], 
+              [
+                -90.152481, 
+                36.497952
+              ], 
+              [
+                -90.193943, 
+                36.497823
+              ], 
+              [
+                -90.217323, 
+                36.497797
+              ], 
+              [
+                -90.220702, 
+                36.497858
+              ], 
+              [
+                -90.220732, 
+                36.497858
+              ], 
+              [
+                -90.228943, 
+                36.497771
+              ], 
+              [
+                -90.339892, 
+                36.498213
+              ], 
+              [
+                -90.494575, 
+                36.498368
+              ], 
+              [
+                -90.495027, 
+                36.498371
+              ], 
+              [
+                -90.50016, 
+                36.498399
+              ], 
+              [
+                -90.576112, 
+                36.498446
+              ], 
+              [
+                -90.57618, 
+                36.498446
+              ], 
+              [
+                -90.585342, 
+                36.498497
+              ], 
+              [
+                -90.5943, 
+                36.498459
+              ], 
+              [
+                -90.60545, 
+                36.498459
+              ], 
+              [
+                -90.612554, 
+                36.498559
+              ], 
+              [
+                -90.648494, 
+                36.498447
+              ], 
+              [
+                -90.653246, 
+                36.498488
+              ], 
+              [
+                -90.693005, 
+                36.49851
+              ], 
+              [
+                -90.711226, 
+                36.498318
+              ], 
+              [
+                -90.765672, 
+                36.498494
+              ], 
+              [
+                -90.782454, 
+                36.498523
+              ], 
+              [
+                -90.784398, 
+                36.498524
+              ], 
+              [
+                -90.850434, 
+                36.498548
+              ], 
+              [
+                -90.873775, 
+                36.498074
+              ], 
+              [
+                -90.876567, 
+                36.498313
+              ], 
+              [
+                -90.876867, 
+                36.498423
+              ], 
+              [
+                -90.87922, 
+                36.498378
+              ], 
+              [
+                -90.960648, 
+                36.498426
+              ], 
+              [
+                -90.963063, 
+                36.498418
+              ], 
+              [
+                -91.008558, 
+                36.49827
+              ], 
+              [
+                -91.017974, 
+                36.498062
+              ], 
+              [
+                -91.09588, 
+                36.49787
+              ], 
+              [
+                -91.096277, 
+                36.497893
+              ], 
+              [
+                -91.126529, 
+                36.497712
+              ], 
+              [
+                -91.21736, 
+                36.497511
+              ], 
+              [
+                -91.218645, 
+                36.497564
+              ], 
+              [
+                -91.227398, 
+                36.497617
+              ], 
+              [
+                -91.404915, 
+                36.49712
+              ], 
+              [
+                -91.405141, 
+                36.497165
+              ], 
+              [
+                -91.407137, 
+                36.497112
+              ], 
+              [
+                -91.407261, 
+                36.497123
+              ], 
+              [
+                -91.433298, 
+                36.497262
+              ], 
+              [
+                -91.436502, 
+                36.497377
+              ], 
+              [
+                -91.446284, 
+                36.497469
+              ], 
+              [
+                -91.450005, 
+                36.497538
+              ], 
+              [
+                -91.529774, 
+                36.499022
+              ], 
+              [
+                -91.53687, 
+                36.499156
+              ], 
+              [
+                -91.539359, 
+                36.499116
+              ], 
+              [
+                -91.549163, 
+                36.499161
+              ], 
+              [
+                -91.596213, 
+                36.499162
+              ], 
+              [
+                -91.601317, 
+                36.499343
+              ], 
+              [
+                -91.631439, 
+                36.499198
+              ], 
+              [
+                -91.64259, 
+                36.499335
+              ], 
+              [
+                -91.672343, 
+                36.499463
+              ], 
+              [
+                -91.686026, 
+                36.499374
+              ], 
+              [
+                -91.687615, 
+                36.499397
+              ], 
+              [
+                -91.726663, 
+                36.499209
+              ], 
+              [
+                -91.766111, 
+                36.499114
+              ], 
+              [
+                -91.784713, 
+                36.499074
+              ], 
+              [
+                -91.7995, 
+                36.498952
+              ], 
+              [
+                -91.80204, 
+                36.498963
+              ], 
+              [
+                -91.805981, 
+                36.498987
+              ], 
+              [
+                -91.864385, 
+                36.498789
+              ], 
+              [
+                -91.865995, 
+                36.498783
+              ], 
+              [
+                -91.985802, 
+                36.498431
+              ], 
+              [
+                -91.988751, 
+                36.498498
+              ], 
+              [
+                -92.019375, 
+                36.498524
+              ], 
+              [
+                -92.028847, 
+                36.498642
+              ], 
+              [
+                -92.055789, 
+                36.49867
+              ], 
+              [
+                -92.057178, 
+                36.49867
+              ], 
+              [
+                -92.074934, 
+                36.498761
+              ], 
+              [
+                -92.098356, 
+                36.498803
+              ], 
+              [
+                -92.120306, 
+                36.498864
+              ], 
+              [
+                -92.120415, 
+                36.498863
+              ], 
+              [
+                -92.137741, 
+                36.498706
+              ], 
+              [
+                -92.150295, 
+                36.498634
+              ], 
+              [
+                -92.199396, 
+                36.498351
+              ], 
+              [
+                -92.211449, 
+                36.498395
+              ], 
+              [
+                -92.214143, 
+                36.498372
+              ], 
+              [
+                -92.216412, 
+                36.498417
+              ], 
+              [
+                -92.309424, 
+                36.497894
+              ], 
+              [
+                -92.318415, 
+                36.497711
+              ], 
+              [
+                -92.529145, 
+                36.497739
+              ], 
+              [
+                -92.772333, 
+                36.497772
+              ], 
+              [
+                -92.772341, 
+                36.497772
+              ], 
+              [
+                -92.838621, 
+                36.498079
+              ], 
+              [
+                -92.838876, 
+                36.498033
+              ], 
+              [
+                -92.854049, 
+                36.497983
+              ], 
+              [
+                -92.894001, 
+                36.49785
+              ], 
+              [
+                -92.894336, 
+                36.497867
+              ], 
+              [
+                -93.013742, 
+                36.49813
+              ], 
+              [
+                -93.068455, 
+                36.49825
+              ], 
+              [
+                -93.069512, 
+                36.498242
+              ], 
+              [
+                -93.087635, 
+                36.498239
+              ], 
+              [
+                -93.088988, 
+                36.498184
+              ], 
+              [
+                -93.296117, 
+                36.498389
+              ], 
+              [
+                -93.315324, 
+                36.498408
+              ], 
+              [
+                -93.315337, 
+                36.498408
+              ], 
+              [
+                -93.394718, 
+                36.498519
+              ], 
+              [
+                -93.396079, 
+                36.498669
+              ], 
+              [
+                -93.426989, 
+                36.498585
+              ], 
+              [
+                -93.507408, 
+                36.498911
+              ], 
+              [
+                -93.514512, 
+                36.498881
+              ], 
+              [
+                -93.584281, 
+                36.498896
+              ], 
+              [
+                -93.584282, 
+                36.498896
+              ], 
+              [
+                -93.700171, 
+                36.499135
+              ], 
+              [
+                -93.709956, 
+                36.499179
+              ], 
+              [
+                -93.718893, 
+                36.499178
+              ], 
+              [
+                -93.727552, 
+                36.499055
+              ], 
+              [
+                -93.728022, 
+                36.499037
+              ], 
+              [
+                -93.866758, 
+                36.498789
+              ], 
+              [
+                -93.906128, 
+                36.498718
+              ], 
+              [
+                -93.92184, 
+                36.498718
+              ], 
+              [
+                -93.95919, 
+                36.498717
+              ], 
+              [
+                -93.96392, 
+                36.498717
+              ], 
+              [
+                -94.077089, 
+                36.49873
+              ], 
+              [
+                -94.098588, 
+                36.498676
+              ], 
+              [
+                -94.100252, 
+                36.49867
+              ], 
+              [
+                -94.110673, 
+                36.498587
+              ], 
+              [
+                -94.111473, 
+                36.498597
+              ], 
+              [
+                -94.519478, 
+                36.499214
+              ], 
+              [
+                -94.55929, 
+                36.499496
+              ], 
+              [
+                -94.617919, 
+                36.499414
+              ], 
+              [
+                -94.617877, 
+                36.514999
+              ], 
+              [
+                -94.617883, 
+                36.517799
+              ], 
+              [
+                -94.617997, 
+                36.53428
+              ], 
+              [
+                -94.617868, 
+                36.53609
+              ], 
+              [
+                -94.617897, 
+                36.536983
+              ], 
+              [
+                -94.617814, 
+                36.577732
+              ], 
+              [
+                -94.617853, 
+                36.59912
+              ], 
+              [
+                -94.617865, 
+                36.606851
+              ], 
+              [
+                -94.617815, 
+                36.612604
+              ], 
+              [
+                -94.618019, 
+                36.667921
+              ], 
+              [
+                -94.618025, 
+                36.66943
+              ], 
+              [
+                -94.61813, 
+                36.701423
+              ], 
+              [
+                -94.618307, 
+                36.76656
+              ], 
+              [
+                -94.61838, 
+                36.84732
+              ], 
+              [
+                -94.618658, 
+                36.880064
+              ], 
+              [
+                -94.618243, 
+                36.897027
+              ], 
+              [
+                -94.618282, 
+                36.911472
+              ], 
+              [
+                -94.618207, 
+                36.926236
+              ], 
+              [
+                -94.618295, 
+                36.929647
+              ], 
+              [
+                -94.618166, 
+                36.937584
+              ], 
+              [
+                -94.618109, 
+                36.946564
+              ], 
+              [
+                -94.618026, 
+                36.950158
+              ], 
+              [
+                -94.618031, 
+                36.994704
+              ], 
+              [
+                -94.618049, 
+                36.996208
+              ], 
+              [
+                -94.61808, 
+                36.998135
+              ], 
+              [
+                -94.617995, 
+                37.009016
+              ], 
+              [
+                -94.617965, 
+                37.040537
+              ], 
+              [
+                -94.617875, 
+                37.056797
+              ], 
+              [
+                -94.617875, 
+                37.056798
+              ], 
+              [
+                -94.617982, 
+                37.075077
+              ], 
+              [
+                -94.61812, 
+                37.085934
+              ], 
+              [
+                -94.618082, 
+                37.086432
+              ], 
+              [
+                -94.61809, 
+                37.093494
+              ], 
+              [
+                -94.618088, 
+                37.093671
+              ], 
+              [
+                -94.618059, 
+                37.096676
+              ], 
+              [
+                -94.618151, 
+                37.103968
+              ], 
+              [
+                -94.618212, 
+                37.113169
+              ], 
+              [
+                -94.618075, 
+                37.129755
+              ], 
+              [
+                -94.618072, 
+                37.132345
+              ], 
+              [
+                -94.618351, 
+                37.160211
+              ], 
+              [
+                -94.618473, 
+                37.174782
+              ], 
+              [
+                -94.618505, 
+                37.181184
+              ], 
+              [
+                -94.618319, 
+                37.188774
+              ], 
+              [
+                -94.618305, 
+                37.207337
+              ], 
+              [
+                -94.618219, 
+                37.207772
+              ], 
+              [
+                -94.61815, 
+                37.228121
+              ], 
+              [
+                -94.618123, 
+                37.229334
+              ], 
+              [
+                -94.618158, 
+                37.237597
+              ], 
+              [
+                -94.618075, 
+                37.240436
+              ], 
+              [
+                -94.617648, 
+                37.323589
+              ], 
+              [
+                -94.617695, 
+                37.336842
+              ], 
+              [
+                -94.617636, 
+                37.338415
+              ], 
+              [
+                -94.617636, 
+                37.338417
+              ], 
+              [
+                -94.617538, 
+                37.364167
+              ], 
+              [
+                -94.617537, 
+                37.364355
+              ], 
+              [
+                -94.617626, 
+                37.367445
+              ], 
+              [
+                -94.617625, 
+                37.367576
+              ], 
+              [
+                -94.617557, 
+                37.396375
+              ], 
+              [
+                -94.617511, 
+                37.410909
+              ], 
+              [
+                -94.617265, 
+                37.425536
+              ], 
+              [
+                -94.617132, 
+                37.439818
+              ], 
+              [
+                -94.617201, 
+                37.454788
+              ], 
+              [
+                -94.617205, 
+                37.460373
+              ], 
+              [
+                -94.617222, 
+                37.460476
+              ], 
+              [
+                -94.61718, 
+                37.465203
+              ], 
+              [
+                -94.617183, 
+                37.469665
+              ], 
+              [
+                -94.617023, 
+                37.483765
+              ], 
+              [
+                -94.616789, 
+                37.52151
+              ], 
+              [
+                -94.616908, 
+                37.527804
+              ], 
+              [
+                -94.617186, 
+                37.553485
+              ], 
+              [
+                -94.61716, 
+                37.557308
+              ], 
+              [
+                -94.617081, 
+                37.567013
+              ], 
+              [
+                -94.617315, 
+                37.571499
+              ], 
+              [
+                -94.617283, 
+                37.571896
+              ], 
+              [
+                -94.617428, 
+                37.609522
+              ], 
+              [
+                -94.6173, 
+                37.610495
+              ], 
+              [
+                -94.617477, 
+                37.63717
+              ], 
+              [
+                -94.617575, 
+                37.653577
+              ], 
+              [
+                -94.617576, 
+                37.653671
+              ], 
+              [
+                -94.617734, 
+                37.673105
+              ], 
+              [
+                -94.617734, 
+                37.673127
+              ], 
+              [
+                -94.617885, 
+                37.682214
+              ], 
+              [
+                -94.617687, 
+                37.686653
+              ], 
+              [
+                -94.617651, 
+                37.687671
+              ], 
+              [
+                -94.617805, 
+                37.690178
+              ], 
+              [
+                -94.617975, 
+                37.722176
+              ], 
+              [
+                -94.617808, 
+                37.729707
+              ], 
+              [
+                -94.616862, 
+                37.819456
+              ], 
+              [
+                -94.61645, 
+                37.83756
+              ], 
+              [
+                -94.616426, 
+                37.845282
+              ], 
+              [
+                -94.616, 
+                37.863126
+              ], 
+              [
+                -94.615834, 
+                37.87251
+              ], 
+              [
+                -94.615921, 
+                37.878331
+              ], 
+              [
+                -94.615706, 
+                37.886843
+              ], 
+              [
+                -94.615469, 
+                37.901775
+              ], 
+              [
+                -94.615393, 
+                37.906392
+              ], 
+              [
+                -94.615181, 
+                37.915944
+              ], 
+              [
+                -94.614778, 
+                37.9342
+              ], 
+              [
+                -94.614835, 
+                37.9367
+              ], 
+              [
+                -94.614754, 
+                37.940769
+              ], 
+              [
+                -94.614612, 
+                37.944362
+              ], 
+              [
+                -94.614594, 
+                37.949978
+              ], 
+              [
+                -94.614562, 
+                37.951517
+              ], 
+              [
+                -94.614557, 
+                37.971037
+              ], 
+              [
+                -94.614465, 
+                37.987799
+              ], 
+              [
+                -94.614212, 
+                37.992462
+              ], 
+              [
+                -94.613981, 
+                38.036949
+              ], 
+              [
+                -94.613981, 
+                38.037057
+              ], 
+              [
+                -94.614055, 
+                38.060056
+              ], 
+              [
+                -94.614055, 
+                38.060088
+              ], 
+              [
+                -94.614089, 
+                38.065901
+              ], 
+              [
+                -94.614061, 
+                38.067343
+              ], 
+              [
+                -94.613856, 
+                38.149769
+              ], 
+              [
+                -94.613748, 
+                38.160633
+              ], 
+              [
+                -94.613422, 
+                38.167908
+              ], 
+              [
+                -94.613073, 
+                38.190552
+              ], 
+              [
+                -94.612848, 
+                38.200714
+              ], 
+              [
+                -94.612822, 
+                38.203918
+              ], 
+              [
+                -94.612658, 
+                38.217649
+              ], 
+              [
+                -94.612659, 
+                38.219251
+              ], 
+              [
+                -94.612635, 
+                38.226987
+              ], 
+              [
+                -94.612614, 
+                38.237766
+              ], 
+              [
+                -94.612692, 
+                38.270394
+              ], 
+              [
+                -94.612849, 
+                38.289914
+              ], 
+              [
+                -94.612844, 
+                38.291423
+              ], 
+              [
+                -94.612673, 
+                38.302527
+              ], 
+              [
+                -94.612673, 
+                38.314832
+              ], 
+              [
+                -94.612788, 
+                38.320142
+              ], 
+              [
+                -94.612825, 
+                38.324387
+              ], 
+              [
+                -94.613, 
+                38.335801
+              ], 
+              [
+                -94.613312, 
+                38.364407
+              ], 
+              [
+                -94.613329, 
+                38.369618
+              ], 
+              [
+                -94.613275, 
+                38.388718
+              ], 
+              [
+                -94.613265, 
+                38.392426
+              ], 
+              [
+                -94.613365, 
+                38.403422
+              ], 
+              [
+                -94.612866, 
+                38.477571
+              ], 
+              [
+                -94.612865, 
+                38.477602
+              ], 
+              [
+                -94.612696, 
+                38.483154
+              ], 
+              [
+                -94.612726, 
+                38.484367
+              ], 
+              [
+                -94.612644, 
+                38.491644
+              ], 
+              [
+                -94.612272, 
+                38.547917
+              ], 
+              [
+                -94.612157, 
+                38.549817
+              ], 
+              [
+                -94.612176, 
+                38.576546
+              ], 
+              [
+                -94.611902, 
+                38.58011
+              ], 
+              [
+                -94.611887, 
+                38.580139
+              ], 
+              [
+                -94.611908, 
+                38.609272
+              ], 
+              [
+                -94.611858, 
+                38.620485
+              ], 
+              [
+                -94.611602, 
+                38.635384
+              ], 
+              [
+                -94.609509, 
+                38.738102
+              ], 
+              [
+                -94.609456, 
+                38.7407
+              ], 
+              [
+                -94.609399, 
+                38.74244
+              ], 
+              [
+                -94.609039, 
+                38.760611
+              ], 
+              [
+                -94.608041, 
+                38.811064
+              ], 
+              [
+                -94.608033, 
+                38.847207
+              ], 
+              [
+                -94.608033, 
+                38.855007
+              ], 
+              [
+                -94.608033, 
+                38.861207
+              ], 
+              [
+                -94.607993, 
+                38.867271
+              ], 
+              [
+                -94.608033, 
+                38.868107
+              ], 
+              [
+                -94.608033, 
+                38.869207
+              ], 
+              [
+                -94.608033, 
+                38.883807
+              ], 
+              [
+                -94.607978, 
+                38.93687
+              ], 
+              [
+                -94.607866, 
+                38.937398
+              ], 
+              [
+                -94.608134, 
+                38.940006
+              ], 
+              [
+                -94.608134, 
+                38.942006
+              ], 
+              [
+                -94.607391, 
+                39.044086
+              ], 
+              [
+                -94.607234, 
+                39.065704
+              ], 
+              [
+                -94.607334, 
+                39.081704
+              ], 
+              [
+                -94.607234, 
+                39.089604
+              ], 
+              [
+                -94.607354, 
+                39.113444
+              ], 
+              [
+                -94.589933, 
+                39.140403
+              ], 
+              [
+                -94.591933, 
+                39.155003
+              ], 
+              [
+                -94.596033, 
+                39.157703
+              ], 
+              [
+                -94.601733, 
+                39.159603
+              ], 
+              [
+                -94.706723, 
+                39.173801
+              ], 
+              [
+                -94.714137, 
+                39.170403
+              ], 
+              [
+                -94.723637, 
+                39.169003
+              ], 
+              [
+                -94.736537, 
+                39.169203
+              ], 
+              [
+                -94.752338, 
+                39.173203
+              ], 
+              [
+                -94.793948, 
+                39.201276
+              ], 
+              [
+                -94.832399, 
+                39.227218
+              ], 
+              [
+                -94.901009, 
+                39.30168
+              ], 
+              [
+                -94.907569, 
+                39.320623
+              ], 
+              [
+                -94.910641, 
+                39.348335
+              ], 
+              [
+                -94.908337, 
+                39.355647
+              ], 
+              [
+                -94.909954, 
+                39.367459
+              ], 
+              [
+                -94.946662, 
+                39.399717
+              ], 
+              [
+                -94.969061, 
+                39.418876
+              ], 
+              [
+                -95.102888, 
+                39.533347
+              ], 
+              [
+                -95.109304, 
+                39.542285
+              ], 
+              [
+                -95.113557, 
+                39.553941
+              ], 
+              [
+                -95.113077, 
+                39.559133
+              ], 
+              [
+                -95.107454, 
+                39.573843
+              ], 
+              [
+                -95.069592, 
+                39.615106
+              ], 
+              [
+                -95.01531, 
+                39.674262
+              ], 
+              [
+                -95.011103, 
+                39.677572
+              ], 
+              [
+                -94.937924, 
+                39.725471
+              ], 
+              [
+                -94.916932, 
+                39.728186
+              ], 
+              [
+                -94.895268, 
+                39.76321
+              ], 
+              [
+                -94.908267, 
+                39.812172
+              ], 
+              [
+                -94.927897, 
+                39.886112
+              ], 
+              [
+                -94.935963, 
+                39.894355
+              ], 
+              [
+                -94.954155, 
+                39.901138
+              ], 
+              [
+                -94.993348, 
+                39.900747
+              ], 
+              [
+                -95.00844, 
+                39.900596
+              ], 
+              [
+                -95.01632, 
+                39.898766
+              ], 
+              [
+                -95.02524, 
+                39.8897
+              ], 
+              [
+                -95.02525, 
+                39.877688
+              ], 
+              [
+                -95.027931, 
+                39.871522
+              ], 
+              [
+                -95.035047, 
+                39.866807
+              ], 
+              [
+                -95.042142, 
+                39.864805
+              ], 
+              [
+                -95.085003, 
+                39.861883
+              ], 
+              [
+                -95.107745, 
+                39.868579
+              ], 
+              [
+                -95.132695, 
+                39.875925
+              ], 
+              [
+                -95.181222, 
+                39.899996
+              ], 
+              [
+                -95.301549, 
+                39.983603
+              ], 
+              [
+                -95.30778, 
+                39.990618
+              ], 
+              [
+                -95.30829, 
+                39.999998
+              ], 
+              [
+                -95.312211, 
+                40.009395
+              ], 
+              [
+                -95.521925, 
+                40.24947
+              ], 
+              [
+                -95.552473, 
+                40.261904
+              ], 
+              [
+                -95.552314, 
+                40.264443
+              ], 
+              [
+                -95.550966, 
+                40.285947
+              ], 
+              [
+                -95.553292, 
+                40.291158
+              ], 
+              [
+                -95.622684, 
+                40.342323
+              ], 
+              [
+                -95.68728, 
+                40.465059
+              ], 
+              [
+                -95.692665, 
+                40.483022
+              ], 
+              [
+                -95.681409, 
+                40.49082
+              ], 
+              [
+                -95.659281, 
+                40.519808
+              ], 
+              [
+                -95.696673, 
+                40.545137
+              ], 
+              [
+                -95.697281, 
+                40.536985
+              ], 
+              [
+                -95.709974, 
+                40.523798
+              ], 
+              [
+                -95.74868, 
+                40.524275
+              ], 
+              [
+                -95.75711, 
+                40.52599
+              ], 
+              [
+                -95.76692, 
+                40.531563
+              ], 
+              [
+                -95.769281, 
+                40.536656
+              ], 
+              [
+                -95.774704, 
+                40.573574
+              ], 
+              [
+                -95.773549, 
+                40.578205
+              ], 
+              [
+                -95.765645, 
+                40.585208
+              ], 
+              [
+                -95.746443, 
+                40.584935
+              ], 
+              [
+                -95.6875, 
+                40.584381
+              ], 
+              [
+                -95.687442, 
+                40.58438
+              ], 
+              [
+                -95.64184, 
+                40.584234
+              ], 
+              [
+                -95.611069, 
+                40.583495
+              ], 
+              [
+                -95.574046, 
+                40.582963
+              ], 
+              [
+                -95.554959, 
+                40.582629
+              ], 
+              [
+                -95.533182, 
+                40.582249
+              ], 
+              [
+                -95.526682, 
+                40.582136
+              ], 
+              [
+                -95.525392, 
+                40.58209
+              ], 
+              [
+                -95.469319, 
+                40.58154
+              ], 
+              [
+                -95.415406, 
+                40.581014
+              ], 
+              [
+                -95.373923, 
+                40.580501
+              ], 
+              [
+                -95.373893, 
+                40.580501
+              ], 
+              [
+                -95.357802, 
+                40.5801
+              ], 
+              [
+                -95.335588, 
+                40.579871
+              ], 
+              [
+                -95.221525, 
+                40.578827
+              ], 
+              [
+                -95.218783, 
+                40.578781
+              ], 
+              [
+                -95.217455, 
+                40.578759
+              ], 
+              [
+                -95.213327, 
+                40.578689
+              ], 
+              [
+                -95.212715, 
+                40.578679
+              ], 
+              [
+                -95.21159, 
+                40.578654
+              ], 
+              [
+                -95.211408, 
+                40.57865
+              ], 
+              [
+                -95.202264, 
+                40.578528
+              ], 
+              [
+                -95.164058, 
+                40.578017
+              ], 
+              [
+                -95.154499, 
+                40.57786
+              ], 
+              [
+                -95.120829, 
+                40.577413
+              ], 
+              [
+                -95.112222, 
+                40.577228
+              ], 
+              [
+                -95.110663, 
+                40.577206
+              ], 
+              [
+                -95.110303, 
+                40.57716
+              ], 
+              [
+                -95.107213, 
+                40.577116
+              ], 
+              [
+                -95.097607, 
+                40.577168
+              ], 
+              [
+                -95.079742, 
+                40.577007
+              ], 
+              [
+                -95.068921, 
+                40.57688
+              ], 
+              [
+                -94.966491, 
+                40.575839
+              ], 
+              [
+                -94.955134, 
+                40.575669
+              ], 
+              [
+                -94.914896, 
+                40.575068
+              ], 
+              [
+                -94.901451, 
+                40.574877
+              ], 
+              [
+                -94.896801, 
+                40.574738
+              ], 
+              [
+                -94.823758, 
+                40.573942
+              ], 
+              [
+                -94.819978, 
+                40.573714
+              ], 
+              [
+                -94.811188, 
+                40.573532
+              ], 
+              [
+                -94.773988, 
+                40.572977
+              ], 
+              [
+                -94.716665, 
+                40.572201
+              ], 
+              [
+                -94.714925, 
+                40.572201
+              ], 
+              [
+                -94.682601, 
+                40.571787
+              ], 
+              [
+                -94.632035, 
+                40.571186
+              ], 
+              [
+                -94.632032, 
+                40.571186
+              ], 
+              [
+                -94.594001, 
+                40.570966
+              ], 
+              [
+                -94.542154, 
+                40.570809
+              ], 
+              [
+                -94.541828, 
+                40.570809
+              ], 
+              [
+                -94.538318, 
+                40.570763
+              ], 
+              [
+                -94.537058, 
+                40.570763
+              ], 
+              [
+                -94.533878, 
+                40.570739
+              ], 
+              [
+                -94.48928, 
+                40.570707
+              ], 
+              [
+                -94.471213, 
+                40.570825
+              ], 
+              [
+                -94.470648, 
+                40.57083
+              ], 
+              [
+                -94.460088, 
+                40.570947
+              ], 
+              [
+                -94.429725, 
+                40.571041
+              ], 
+              [
+                -94.358307, 
+                40.571363
+              ], 
+              [
+                -94.336706, 
+                40.571452
+              ], 
+              [
+                -94.336556, 
+                40.571475
+              ], 
+              [
+                -94.324765, 
+                40.571477
+              ], 
+              [
+                -94.310724, 
+                40.571524
+              ], 
+              [
+                -94.294813, 
+                40.571341
+              ], 
+              [
+                -94.28735, 
+                40.571521
+              ], 
+              [
+                -94.23224, 
+                40.571907
+              ], 
+              [
+                -94.091085, 
+                40.572897
+              ], 
+              [
+                -94.089194, 
+                40.572806
+              ], 
+              [
+                -94.080463, 
+                40.572899
+              ], 
+              [
+                -94.080223, 
+                40.572899
+              ], 
+              [
+                -94.034134, 
+                40.573585
+              ], 
+              [
+                -94.015492, 
+                40.573914
+              ], 
+              [
+                -93.976766, 
+                40.574635
+              ], 
+              [
+                -93.963863, 
+                40.574754
+              ], 
+              [
+                -93.939857, 
+                40.575192
+              ], 
+              [
+                -93.938627, 
+                40.575284
+              ], 
+              [
+                -93.937097, 
+                40.575421
+              ], 
+              [
+                -93.936317, 
+                40.575284
+              ], 
+              [
+                -93.935687, 
+                40.57533
+              ], 
+              [
+                -93.913961, 
+                40.575672
+              ], 
+              [
+                -93.900877, 
+                40.575874
+              ], 
+              [
+                -93.899317, 
+                40.575942
+              ], 
+              [
+                -93.898327, 
+                40.576011
+              ], 
+              [
+                -93.853656, 
+                40.576606
+              ], 
+              [
+                -93.84093, 
+                40.576791
+              ], 
+              [
+                -93.818725, 
+                40.577086
+              ], 
+              [
+                -93.815485, 
+                40.577278
+              ], 
+              [
+                -93.774344, 
+                40.577584
+              ], 
+              [
+                -93.770231, 
+                40.577615
+              ], 
+              [
+                -93.750223, 
+                40.57772
+              ], 
+              [
+                -93.742759, 
+                40.577518
+              ], 
+              [
+                -93.737259, 
+                40.577542
+              ], 
+              [
+                -93.728355, 
+                40.577547
+              ], 
+              [
+                -93.722443, 
+                40.577641
+              ], 
+              [
+                -93.690333, 
+                40.577875
+              ], 
+              [
+                -93.677099, 
+                40.578127
+              ], 
+              [
+                -93.668845, 
+                40.578241
+              ], 
+              [
+                -93.661913, 
+                40.578354
+              ], 
+              [
+                -93.659272, 
+                40.57833
+              ], 
+              [
+                -93.656211, 
+                40.578352
+              ], 
+              [
+                -93.597352, 
+                40.579496
+              ], 
+              [
+                -93.566189, 
+                40.580117
+              ], 
+              [
+                -93.56581, 
+                40.580075
+              ], 
+              [
+                -93.56524, 
+                40.580143
+              ], 
+              [
+                -93.560798, 
+                40.580304
+              ], 
+              [
+                -93.558938, 
+                40.580189
+              ], 
+              [
+                -93.556899, 
+                40.580235
+              ], 
+              [
+                -93.553986, 
+                40.580303
+              ], 
+              [
+                -93.548284, 
+                40.580417
+              ], 
+              [
+                -93.528177, 
+                40.580367
+              ], 
+              [
+                -93.527607, 
+                40.580436
+              ], 
+              [
+                -93.524124, 
+                40.580481
+              ], 
+              [
+                -93.466887, 
+                40.580072
+              ], 
+              [
+                -93.465297, 
+                40.580164
+              ], 
+              [
+                -93.441767, 
+                40.579916
+              ], 
+              [
+                -93.374386, 
+                40.580334
+              ], 
+              [
+                -93.345442, 
+                40.580514
+              ], 
+              [
+                -93.317605, 
+                40.580671
+              ], 
+              [
+                -93.260612, 
+                40.580797
+              ], 
+              [
+                -93.098507, 
+                40.583973
+              ], 
+              [
+                -93.097296, 
+                40.584014
+              ], 
+              [
+                -93.085517, 
+                40.584403
+              ], 
+              [
+                -92.957747, 
+                40.58743
+              ], 
+              [
+                -92.941595, 
+                40.587743
+              ], 
+              [
+                -92.903544, 
+                40.58786
+              ], 
+              [
+                -92.889796, 
+                40.588039
+              ], 
+              [
+                -92.879178, 
+                40.588341
+              ], 
+              [
+                -92.863034, 
+                40.588175
+              ], 
+              [
+                -92.857391, 
+                40.58836
+              ], 
+              [
+                -92.835074, 
+                40.588484
+              ], 
+              [
+                -92.827992, 
+                40.588515
+              ], 
+              [
+                -92.828061, 
+                40.588593
+              ], 
+              [
+                -92.757407, 
+                40.588908
+              ], 
+              [
+                -92.742232, 
+                40.589207
+              ], 
+              [
+                -92.714598, 
+                40.589564
+              ], 
+              [
+                -92.689854, 
+                40.589884
+              ], 
+              [
+                -92.686693, 
+                40.589809
+              ], 
+              [
+                -92.639223, 
+                40.590825
+              ], 
+              [
+                -92.637898, 
+                40.590853
+              ], 
+              [
+                -92.580278, 
+                40.592151
+              ], 
+              [
+                -92.484588, 
+                40.594924
+              ], 
+              [
+                -92.482394, 
+                40.594894
+              ], 
+              [
+                -92.481692, 
+                40.594941
+              ], 
+              [
+                -92.461609, 
+                40.595355
+              ], 
+              [
+                -92.453745, 
+                40.595288
+              ], 
+              [
+                -92.379691, 
+                40.596509
+              ], 
+              [
+                -92.350807, 
+                40.597273
+              ], 
+              [
+                -92.350776, 
+                40.597274
+              ], 
+              [
+                -92.331445, 
+                40.597714
+              ], 
+              [
+                -92.331205, 
+                40.597805
+              ], 
+              [
+                -92.298754, 
+                40.598469
+              ], 
+              [
+                -92.236484, 
+                40.599531
+              ], 
+              [
+                -92.217603, 
+                40.599832
+              ], 
+              [
+                -92.201669, 
+                40.59998
+              ], 
+              [
+                -92.196162, 
+                40.600069
+              ], 
+              [
+                -92.17978, 
+                40.600529
+              ], 
+              [
+                -92.096387, 
+                40.60183
+              ], 
+              [
+                -92.092875, 
+                40.602082
+              ], 
+              [
+                -92.0832, 
+                40.602244
+              ], 
+              [
+                -92.082339, 
+                40.602176
+              ], 
+              [
+                -92.069521, 
+                40.602772
+              ], 
+              [
+                -92.067904, 
+                40.602648
+              ], 
+              [
+                -92.029649, 
+                40.603713
+              ], 
+              [
+                -91.998683, 
+                40.604433
+              ], 
+              [
+                -91.970988, 
+                40.605112
+              ], 
+              [
+                -91.943114, 
+                40.605913
+              ], 
+              [
+                -91.868401, 
+                40.608059
+              ], 
+              [
+                -91.832481, 
+                40.609797
+              ], 
+              [
+                -91.824826, 
+                40.610191
+              ], 
+              [
+                -91.813968, 
+                40.610526
+              ], 
+              [
+                -91.800133, 
+                40.610953
+              ], 
+              [
+                -91.795374, 
+                40.611101
+              ], 
+              [
+                -91.785916, 
+                40.611488
+              ], 
+              [
+                -91.729115, 
+                40.61364
+              ], 
+              [
+                -91.716769, 
+                40.59853
+              ], 
+              [
+                -91.696359, 
+                40.588148
+              ], 
+              [
+                -91.620071, 
+                40.540817
+              ], 
+              [
+                -91.618028, 
+                40.53403
+              ], 
+              [
+                -91.622362, 
+                40.514362
+              ], 
+              [
+                -91.619486, 
+                40.507134
+              ], 
+              [
+                -91.524612, 
+                40.410765
+              ], 
+              [
+                -91.490977, 
+                40.393484
+              ], 
+              [
+                -91.484507, 
+                40.3839
+              ], 
+              [
+                -91.419422, 
+                40.378264
+              ], 
+              [
+                -91.444833, 
+                40.36317
+              ], 
+              [
+                -91.46214, 
+                40.342414
+              ], 
+              [
+                -91.489868, 
+                40.286048
+              ], 
+              [
+                -91.501435, 
+                40.248874
+              ], 
+              [
+                -91.505968, 
+                40.234305
+              ], 
+              [
+                -91.510332, 
+                40.201142
+              ], 
+              [
+                -91.512974, 
+                40.181062
+              ], 
+              [
+                -91.510322, 
+                40.127994
+              ], 
+              [
+                -91.494865, 
+                40.037421
+              ], 
+              [
+                -91.460287, 
+                39.980333
+              ], 
+              [
+                -91.455887, 
+                39.945538
+              ], 
+              [
+                -91.446385, 
+                39.870394
+              ], 
+              [
+                -91.432919, 
+                39.840554
+              ], 
+              [
+                -91.365396, 
+                39.777266
+              ], 
+              [
+                -91.367962, 
+                39.759124
+              ], 
+              [
+                -91.369953, 
+                39.745042
+              ], 
+              [
+                -91.370009, 
+                39.732524
+              ], 
+              [
+                -91.367753, 
+                39.729029
+              ], 
+              [
+                -91.349039, 
+                39.712316
+              ], 
+              [
+                -91.313162, 
+                39.684907
+              ], 
+              [
+                -91.229317, 
+                39.620853
+              ], 
+              [
+                -91.178012, 
+                39.598196
+              ], 
+              [
+                -91.168419, 
+                39.564928
+              ], 
+              [
+                -91.158606, 
+                39.553048
+              ], 
+              [
+                -91.042351, 
+                39.452062
+              ], 
+              [
+                -90.993789, 
+                39.422959
+              ], 
+              [
+                -90.939983, 
+                39.393555
+              ], 
+              [
+                -90.882706, 
+                39.362254
+              ], 
+              [
+                -90.842175, 
+                39.341932
+              ], 
+              [
+                -90.799346, 
+                39.313087
+              ], 
+              [
+                -90.72996, 
+                39.255894
+              ], 
+              [
+                -90.726981, 
+                39.251173
+              ], 
+              [
+                -90.718996, 
+                39.224973
+              ], 
+              [
+                -90.681086, 
+                39.10059
+              ], 
+              [
+                -90.682744, 
+                39.088348
+              ], 
+              [
+                -90.712541, 
+                39.057064
+              ], 
+              [
+                -90.713629, 
+                39.053977
+              ], 
+              [
+                -90.71158, 
+                39.046798
+              ], 
+              [
+                -90.66587, 
+                38.934195
+              ], 
+              [
+                -90.663372, 
+                38.928042
+              ], 
+              [
+                -90.657254, 
+                38.92027
+              ], 
+              [
+                -90.625122, 
+                38.888654
+              ], 
+              [
+                -90.583388, 
+                38.86903
+              ], 
+              [
+                -90.566557, 
+                38.868847
+              ], 
+              [
+                -90.555693, 
+                38.870785
+              ], 
+              [
+                -90.54403, 
+                38.87505
+              ], 
+              [
+                -90.507451, 
+                38.902767
+              ], 
+              [
+                -90.486974, 
+                38.925982
+              ], 
+              [
+                -90.482725, 
+                38.934712
+              ], 
+              [
+                -90.482419, 
+                38.94446
+              ], 
+              [
+                -90.472122, 
+                38.958838
+              ], 
+              [
+                -90.467784, 
+                38.961809
+              ], 
+              [
+                -90.450809, 
+                38.967758
+              ], 
+              [
+                -90.450792, 
+                38.967764
+              ], 
+              [
+                -90.406367, 
+                38.962554
+              ], 
+              [
+                -90.385751, 
+                38.956848
+              ], 
+              [
+                -90.275932, 
+                38.926453
+              ], 
+              [
+                -90.250248, 
+                38.919344
+              ], 
+              [
+                -90.22585, 
+                38.908923
+              ], 
+              [
+                -90.207035, 
+                38.898954
+              ], 
+              [
+                -90.113327, 
+                38.849306
+              ], 
+              [
+                -90.109407, 
+                38.843548
+              ], 
+              [
+                -90.109107, 
+                38.837448
+              ], 
+              [
+                -90.114707, 
+                38.815048
+              ], 
+              [
+                -90.117707, 
+                38.805748
+              ], 
+              [
+                -90.123107, 
+                38.798048
+              ], 
+              [
+                -90.165082, 
+                38.770618
+              ], 
+              [
+                -90.171309, 
+                38.766549
+              ], 
+              [
+                -90.20991, 
+                38.72605
+              ], 
+              [
+                -90.21201, 
+                38.71175
+              ], 
+              [
+                -90.20921, 
+                38.70275
+              ], 
+              [
+                -90.20221, 
+                38.69345
+              ], 
+              [
+                -90.19521, 
+                38.68755
+              ], 
+              [
+                -90.18641, 
+                38.67475
+              ], 
+              [
+                -90.181399, 
+                38.660378
+              ], 
+              [
+                -90.18111, 
+                38.65955
+              ], 
+              [
+                -90.17771, 
+                38.64275
+              ], 
+              [
+                -90.17801, 
+                38.63375
+              ], 
+              [
+                -90.182625, 
+                38.617989
+              ], 
+              [
+                -90.18451, 
+                38.611551
+              ], 
+              [
+                -90.196011, 
+                38.594451
+              ], 
+              [
+                -90.202511, 
+                38.588651
+              ], 
+              [
+                -90.224512, 
+                38.574651
+              ], 
+              [
+                -90.248913, 
+                38.544752
+              ], 
+              [
+                -90.257773, 
+                38.532008
+              ], 
+              [
+                -90.260314, 
+                38.528352
+              ], 
+              [
+                -90.263064, 
+                38.52022
+              ], 
+              [
+                -90.279215, 
+                38.472453
+              ], 
+              [
+                -90.285215, 
+                38.443453
+              ], 
+              [
+                -90.295316, 
+                38.426753
+              ], 
+              [
+                -90.340297, 
+                38.386998
+              ], 
+              [
+                -90.346118, 
+                38.381853
+              ], 
+              [
+                -90.350918, 
+                38.375053
+              ], 
+              [
+                -90.370819, 
+                38.333554
+              ], 
+              [
+                -90.372519, 
+                38.323354
+              ], 
+              [
+                -90.373929, 
+                38.281853
+              ], 
+              [
+                -90.363926, 
+                38.236355
+              ], 
+              [
+                -90.353902, 
+                38.213855
+              ], 
+              [
+                -90.334258, 
+                38.189932
+              ], 
+              [
+                -90.254112, 
+                38.12199
+              ], 
+              [
+                -90.243116, 
+                38.112669
+              ], 
+              [
+                -90.203847, 
+                38.088753
+              ], 
+              [
+                -90.126532, 
+                38.041666
+              ], 
+              [
+                -90.072283, 
+                38.017001
+              ], 
+              [
+                -89.997103, 
+                37.963225
+              ], 
+              [
+                -89.974918, 
+                37.926719
+              ], 
+              [
+                -89.973642, 
+                37.917661
+              ], 
+              [
+                -89.950594, 
+                37.881526
+              ], 
+              [
+                -89.938191, 
+                37.875111
+              ], 
+              [
+                -89.937383, 
+                37.874693
+              ], 
+              [
+                -89.923185, 
+                37.870672
+              ], 
+              [
+                -89.901832, 
+                37.869822
+              ], 
+              [
+                -89.881475, 
+                37.879591
+              ], 
+              [
+                -89.862949, 
+                37.896906
+              ], 
+              [
+                -89.851048, 
+                37.90398
+              ], 
+              [
+                -89.844786, 
+                37.905572
+              ], 
+              [
+                -89.739873, 
+                37.84693
+              ], 
+              [
+                -89.674304, 
+                37.803179
+              ], 
+              [
+                -89.671255, 
+                37.801144
+              ], 
+              [
+                -89.515436, 
+                37.67137
+              ], 
+              [
+                -89.506563, 
+                37.62505
+              ], 
+              [
+                -89.511936, 
+                37.584564
+              ], 
+              [
+                -89.518007, 
+                37.583962
+              ], 
+              [
+                -89.521274, 
+                37.578971
+              ], 
+              [
+                -89.521407, 
+                37.572143
+              ], 
+              [
+                -89.521523, 
+                37.566208
+              ], 
+              [
+                -89.521697, 
+                37.557325
+              ], 
+              [
+                -89.517051, 
+                37.537278
+              ], 
+              [
+                -89.492051, 
+                37.494008
+              ], 
+              [
+                -89.475525, 
+                37.471388
+              ], 
+              [
+                -89.450969, 
+                37.450069
+              ], 
+              [
+                -89.439769, 
+                37.4372
+              ], 
+              [
+                -89.42594, 
+                37.407471
+              ], 
+              [
+                -89.421054, 
+                37.387668
+              ], 
+              [
+                -89.428185, 
+                37.356158
+              ], 
+              [
+                -89.432836, 
+                37.347056
+              ], 
+              [
+                -89.43604, 
+                37.344441
+              ], 
+              [
+                -89.447556, 
+                37.340475
+              ], 
+              [
+                -89.474569, 
+                37.338165
+              ], 
+              [
+                -89.484598, 
+                37.334832
+              ], 
+              [
+                -89.489005, 
+                37.333368
+              ], 
+              [
+                -89.511842, 
+                37.310825
+              ], 
+              [
+                -89.518393, 
+                37.289354
+              ], 
+              [
+                -89.517032, 
+                37.28192
+              ], 
+              [
+                -89.491222, 
+                37.248629
+              ], 
+              [
+                -89.467631, 
+                37.2182
+              ], 
+              [
+                -89.414471, 
+                37.12505
+              ], 
+              [
+                -89.385434, 
+                37.05513
+              ], 
+              [
+                -89.383937, 
+                37.046441
+              ], 
+              [
+                -89.378277, 
+                37.039605
+              ], 
+              [
+                -89.322733, 
+                37.009033
+              ], 
+              [
+                -89.29213, 
+                36.992189
+              ], 
+              [
+                -89.278628, 
+                36.98867
+              ], 
+              [
+                -89.271127, 
+                36.985287
+              ], 
+              [
+                -89.261154, 
+                36.982437
+              ], 
+              [
+                -89.245481, 
+                36.98315
+              ], 
+              [
+                -89.226247, 
+                36.985287
+              ], 
+              [
+                -89.207013, 
+                36.982437
+              ], 
+              [
+                -89.185491, 
+                36.973518
+              ], 
+              [
+                -89.170008, 
+                36.970298
+              ], 
+              [
+                -89.132685, 
+                36.9822
+              ], 
+              [
+                -89.100794, 
+                36.944006
+              ], 
+              [
+                -89.100766, 
+                36.943973
+              ], 
+              [
+                -89.147674, 
+                36.847148
+              ], 
+              [
+                -89.177177, 
+                36.835779
+              ], 
+              [
+                -89.178574, 
+                36.816554
+              ], 
+              [
+                -89.179229, 
+                36.812915
+              ], 
+              [
+                -89.12353, 
+                36.785309
+              ], 
+              [
+                -89.123548, 
+                36.78522
+              ], 
+              [
+                -89.130399, 
+                36.751702
+              ], 
+              [
+                -89.142313, 
+                36.755369
+              ], 
+              [
+                -89.169106, 
+                36.759473
+              ], 
+              [
+                -89.184523, 
+                36.753638
+              ], 
+              [
+                -89.197808, 
+                36.739412
+              ], 
+              [
+                -89.201047, 
+                36.725772
+              ], 
+              [
+                -89.19948, 
+                36.716045
+              ], 
+              [
+                -89.171882, 
+                36.672526
+              ], 
+              [
+                -89.174733, 
+                36.650476
+              ], 
+              [
+                -89.174741, 
+                36.650416
+              ], 
+              [
+                -89.187749, 
+                36.641115
+              ], 
+              [
+                -89.197654, 
+                36.628936
+              ], 
+              [
+                -89.200902, 
+                36.618177
+              ], 
+              [
+                -89.202607, 
+                36.601576
+              ], 
+              [
+                -89.213563, 
+                36.580119
+              ], 
+              [
+                -89.227319, 
+                36.569375
+              ], 
+              [
+                -89.236542, 
+                36.566824
+              ], 
+              [
+                -89.259994, 
+                36.565149
+              ], 
+              [
+                -89.27171, 
+                36.571387
+              ], 
+              [
+                -89.294637, 
+                36.593729
+              ], 
+              [
+                -89.313405, 
+                36.62012
+              ], 
+              [
+                -89.326731, 
+                36.632186
+              ], 
+              [
+                -89.327578, 
+                36.632127
+              ], 
+              [
+                -89.343753, 
+                36.630991
+              ], 
+              [
+                -89.365548, 
+                36.625059
+              ], 
+              [
+                -89.376367, 
+                36.613868
+              ], 
+              [
+                -89.38814, 
+                36.573416
+              ], 
+              [
+                -89.400581, 
+                36.538337
+              ], 
+              [
+                -89.417293, 
+                36.499033
+              ], 
+              [
+                -89.429311, 
+                36.481875
+              ], 
+              [
+                -89.448468, 
+                36.46442
+              ], 
+              [
+                -89.460436, 
+                36.45814
+              ], 
+              [
+                -89.471718, 
+                36.457001
+              ], 
+              [
+                -89.486215, 
+                36.46162
+              ], 
+              [
+                -89.493198, 
+                36.470124
+              ], 
+              [
+                -89.493495, 
+                36.4787
+              ], 
+              [
+                -89.485106, 
+                36.497692
+              ], 
+              [
+                -89.47246, 
+                36.513741
+              ], 
+              [
+                -89.465888, 
+                36.529946
+              ], 
+              [
+                -89.465445, 
+                36.536163
+              ], 
+              [
+                -89.467761, 
+                36.546847
+              ], 
+              [
+                -89.473341, 
+                36.559918
+              ], 
+              [
+                -89.479093, 
+                36.568206
+              ], 
+              [
+                -89.484836, 
+                36.571821
+              ], 
+              [
+                -89.500076, 
+                36.576305
+              ], 
+              [
+                -89.527583, 
+                36.581147
+              ], 
+              [
+                -89.546113, 
+                36.579989
+              ], 
+              [
+                -89.55264, 
+                36.577178
+              ], 
+              [
+                -89.566817, 
+                36.564216
+              ], 
+              [
+                -89.571509, 
+                36.552569
+              ], 
+              [
+                -89.570071, 
+                36.544387
+              ], 
+              [
+                -89.560344, 
+                36.525436
+              ], 
+              [
+                -89.5391, 
+                36.498201
+              ], 
+              [
+                -89.522674, 
+                36.481305
+              ], 
+              [
+                -89.519501, 
+                36.475419
+              ], 
+              [
+                -89.509558, 
+                36.375065
+              ], 
+              [
+                -89.513178, 
+                36.359897
+              ], 
+              [
+                -89.519, 
+                36.3486
+              ], 
+              [
+                -89.531822, 
+                36.339246
+              ], 
+              [
+                -89.545006, 
+                36.336809
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 39, 
+      "properties": {
+        "CENSUSAREA": 68741.522, 
+        "GEO_ID": "0400000US29", 
+        "ISO": "US-MO", 
+        "LSAD": "", 
+        "NAME": "Missouri", 
+        "NAME_1": "Missouri", 
+        "STATE": "MO"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -104.05283, 
+                41.697954
+              ], 
+              [
+                -104.052774, 
+                41.733401
+              ], 
+              [
+                -104.053026, 
+                41.885464
+              ], 
+              [
+                -104.052931, 
+                41.906143
+              ], 
+              [
+                -104.052991, 
+                41.914973
+              ], 
+              [
+                -104.052734, 
+                41.973007
+              ], 
+              [
+                -104.052856, 
+                41.975958
+              ], 
+              [
+                -104.05283, 
+                41.9946
+              ], 
+              [
+                -104.052761, 
+                41.994967
+              ], 
+              [
+                -104.052699, 
+                41.998673
+              ], 
+              [
+                -104.052704, 
+                42.001718
+              ], 
+              [
+                -104.052729, 
+                42.016318
+              ], 
+              [
+                -104.05288, 
+                42.021761
+              ], 
+              [
+                -104.052967, 
+                42.075004
+              ], 
+              [
+                -104.052954, 
+                42.089077
+              ], 
+              [
+                -104.0526, 
+                42.124963
+              ], 
+              [
+                -104.052738, 
+                42.133769
+              ], 
+              [
+                -104.053001, 
+                42.137254
+              ], 
+              [
+                -104.052547, 
+                42.166801
+              ], 
+              [
+                -104.052761, 
+                42.170278
+              ], 
+              [
+                -104.052793, 
+                42.249962
+              ], 
+              [
+                -104.052776, 
+                42.25822
+              ], 
+              [
+                -104.052775, 
+                42.610813
+              ], 
+              [
+                -104.052775, 
+                42.61159
+              ], 
+              [
+                -104.052773, 
+                42.611766
+              ], 
+              [
+                -104.052586, 
+                42.630917
+              ], 
+              [
+                -104.052741, 
+                42.633982
+              ], 
+              [
+                -104.052583, 
+                42.650062
+              ], 
+              [
+                -104.052809, 
+                42.749966
+              ], 
+              [
+                -104.052863, 
+                42.754569
+              ], 
+              [
+                -104.053127, 
+                43.000585
+              ], 
+              [
+                -103.815573, 
+                43.001279
+              ], 
+              [
+                -103.813939, 
+                43.001378
+              ], 
+              [
+                -103.576966, 
+                43.000746
+              ], 
+              [
+                -103.576329, 
+                43.000807
+              ], 
+              [
+                -103.506556, 
+                43.000771
+              ], 
+              [
+                -103.506151, 
+                43.000771
+              ], 
+              [
+                -103.505219, 
+                43.00077
+              ], 
+              [
+                -103.5051, 
+                43.00077
+              ], 
+              [
+                -103.404579, 
+                43.000737
+              ], 
+              [
+                -103.340829, 
+                43.000879
+              ], 
+              [
+                -103.132955, 
+                43.000784
+              ], 
+              [
+                -103.13174, 
+                43.000783
+              ], 
+              [
+                -103.000897, 
+                43.000474
+              ], 
+              [
+                -102.792111, 
+                42.99998
+              ], 
+              [
+                -102.487329, 
+                42.999559
+              ], 
+              [
+                -102.440547, 
+                42.999609
+              ], 
+              [
+                -102.082546, 
+                42.999356
+              ], 
+              [
+                -102.082486, 
+                42.999356
+              ], 
+              [
+                -101.875424, 
+                42.999298
+              ], 
+              [
+                -101.625424, 
+                42.996238
+              ], 
+              [
+                -101.230325, 
+                42.997899
+              ], 
+              [
+                -101.229203, 
+                42.997854
+              ], 
+              [
+                -101.228104, 
+                42.997874
+              ], 
+              [
+                -101.226853, 
+                42.997896
+              ], 
+              [
+                -101.226494, 
+                42.997901
+              ], 
+              [
+                -100.96419, 
+                42.997886
+              ], 
+              [
+                -100.958365, 
+                42.997796
+              ], 
+              [
+                -100.906714, 
+                42.99791
+              ], 
+              [
+                -100.887898, 
+                42.997881
+              ], 
+              [
+                -100.553131, 
+                42.998721
+              ], 
+              [
+                -100.544018, 
+                42.998795
+              ], 
+              [
+                -100.534335, 
+                42.999017
+              ], 
+              [
+                -100.472742, 
+                42.999288
+              ], 
+              [
+                -100.355406, 
+                42.99876
+              ], 
+              [
+                -100.349548, 
+                42.99874
+              ], 
+              [
+                -100.283713, 
+                42.998767
+              ], 
+              [
+                -100.277793, 
+                42.998674
+              ], 
+              [
+                -100.198434, 
+                42.998542
+              ], 
+              [
+                -100.198413, 
+                42.998542
+              ], 
+              [
+                -100.198412, 
+                42.998542
+              ], 
+              [
+                -100.126896, 
+                42.998711
+              ], 
+              [
+                -100.126427, 
+                42.99871
+              ], 
+              [
+                -100.119297, 
+                42.998689
+              ], 
+              [
+                -100.034389, 
+                42.998425
+              ], 
+              [
+                -100.027815, 
+                42.998424
+              ], 
+              [
+                -100.004757, 
+                42.998392
+              ], 
+              [
+                -99.961204, 
+                42.998335
+              ], 
+              [
+                -99.950921, 
+                42.998291
+              ], 
+              [
+                -99.950411, 
+                42.998286
+              ], 
+              [
+                -99.927645, 
+                42.998113
+              ], 
+              [
+                -99.918401, 
+                42.998057
+              ], 
+              [
+                -99.877697, 
+                42.998094
+              ], 
+              [
+                -99.869885, 
+                42.998094
+              ], 
+              [
+                -99.859945, 
+                42.997962
+              ], 
+              [
+                -99.850037, 
+                42.998171
+              ], 
+              [
+                -99.821868, 
+                42.997995
+              ], 
+              [
+                -99.809373, 
+                42.998178
+              ], 
+              [
+                -99.803328, 
+                42.998064
+              ], 
+              [
+                -99.800306, 
+                42.997972
+              ], 
+              [
+                -99.788247, 
+                42.998016
+              ], 
+              [
+                -99.768524, 
+                42.998125
+              ], 
+              [
+                -99.743138, 
+                42.997912
+              ], 
+              [
+                -99.726788, 
+                42.997892
+              ], 
+              [
+                -99.719177, 
+                42.997899
+              ], 
+              [
+                -99.701446, 
+                42.997994
+              ], 
+              [
+                -99.699234, 
+                42.99788
+              ], 
+              [
+                -99.569277, 
+                42.997995
+              ], 
+              [
+                -99.535375, 
+                42.998038
+              ], 
+              [
+                -99.534049, 
+                42.998041
+              ], 
+              [
+                -99.494287, 
+                42.998118
+              ], 
+              [
+                -99.490798, 
+                42.998143
+              ], 
+              [
+                -99.474531, 
+                42.998081
+              ], 
+              [
+                -99.471353, 
+                42.997967
+              ], 
+              [
+                -99.395568, 
+                42.99817
+              ], 
+              [
+                -99.374268, 
+                42.998047
+              ], 
+              [
+                -99.371121, 
+                42.998093
+              ], 
+              [
+                -99.368628, 
+                42.99814
+              ], 
+              [
+                -99.347283, 
+                42.998217
+              ], 
+              [
+                -99.288045, 
+                42.998152
+              ], 
+              [
+                -99.26271, 
+                42.998234
+              ], 
+              [
+                -99.254454, 
+                42.99814
+              ], 
+              [
+                -99.254297, 
+                42.998138
+              ], 
+              [
+                -99.234462, 
+                42.998281
+              ], 
+              [
+                -99.195199, 
+                42.998107
+              ], 
+              [
+                -99.161388, 
+                42.998465
+              ], 
+              [
+                -99.151143, 
+                42.998344
+              ], 
+              [
+                -99.139045, 
+                42.998508
+              ], 
+              [
+                -99.135961, 
+                42.998301
+              ], 
+              [
+                -99.08188, 
+                42.998288
+              ], 
+              [
+                -99.080011, 
+                42.998357
+              ], 
+              [
+                -99.0223, 
+                42.998237
+              ], 
+              [
+                -99.021909, 
+                42.998365
+              ], 
+              [
+                -99.00037, 
+                42.998273
+              ], 
+              [
+                -98.962081, 
+                42.998286
+              ], 
+              [
+                -98.919234, 
+                42.998241
+              ], 
+              [
+                -98.919136, 
+                42.998242
+              ], 
+              [
+                -98.903154, 
+                42.998306
+              ], 
+              [
+                -98.899944, 
+                42.998122
+              ], 
+              [
+                -98.823989, 
+                42.99831
+              ], 
+              [
+                -98.801304, 
+                42.998241
+              ], 
+              [
+                -98.764378, 
+                42.998323
+              ], 
+              [
+                -98.742394, 
+                42.998343
+              ], 
+              [
+                -98.665613, 
+                42.998536
+              ], 
+              [
+                -98.663712, 
+                42.998444
+              ], 
+              [
+                -98.568936, 
+                42.998537
+              ], 
+              [
+                -98.565072, 
+                42.9984
+              ], 
+              [
+                -98.49855, 
+                42.99856
+              ], 
+              [
+                -98.495747, 
+                42.988032
+              ], 
+              [
+                -98.490483, 
+                42.977948
+              ], 
+              [
+                -98.467356, 
+                42.947556
+              ], 
+              [
+                -98.447047, 
+                42.935117
+              ], 
+              [
+                -98.325864, 
+                42.8865
+              ], 
+              [
+                -98.309741, 
+                42.881232
+              ], 
+              [
+                -98.204506, 
+                42.846845
+              ], 
+              [
+                -98.165835, 
+                42.837011
+              ], 
+              [
+                -98.157405, 
+                42.831899
+              ], 
+              [
+                -98.056625, 
+                42.770781
+              ], 
+              [
+                -98.035034, 
+                42.764205
+              ], 
+              [
+                -98.017228, 
+                42.762411
+              ], 
+              [
+                -98.000348, 
+                42.763256
+              ], 
+              [
+                -97.950147, 
+                42.769619
+              ], 
+              [
+                -97.936716, 
+                42.775754
+              ], 
+              [
+                -97.908983, 
+                42.794909
+              ], 
+              [
+                -97.888562, 
+                42.817251
+              ], 
+              [
+                -97.879878, 
+                42.835395
+              ], 
+              [
+                -97.875345, 
+                42.858724
+              ], 
+              [
+                -97.865695, 
+                42.86286
+              ], 
+              [
+                -97.84527, 
+                42.867734
+              ], 
+              [
+                -97.828496, 
+                42.868797
+              ], 
+              [
+                -97.814382, 
+                42.861119
+              ], 
+              [
+                -97.774456, 
+                42.849774
+              ], 
+              [
+                -97.686506, 
+                42.842435
+              ], 
+              [
+                -97.635115, 
+                42.844984
+              ], 
+              [
+                -97.531867, 
+                42.850105
+              ], 
+              [
+                -97.485376, 
+                42.854838
+              ], 
+              [
+                -97.42319, 
+                42.861168
+              ], 
+              [
+                -97.328511, 
+                42.859501
+              ], 
+              [
+                -97.257089, 
+                42.853854
+              ], 
+              [
+                -97.218269, 
+                42.829561
+              ], 
+              [
+                -97.190135, 
+                42.805076
+              ], 
+              [
+                -97.163082, 
+                42.793385
+              ], 
+              [
+                -97.13746, 
+                42.782313
+              ], 
+              [
+                -97.05218, 
+                42.770187
+              ], 
+              [
+                -97.026103, 
+                42.762625
+              ], 
+              [
+                -97.015691, 
+                42.758697
+              ], 
+              [
+                -96.961021, 
+                42.738075
+              ], 
+              [
+                -96.920494, 
+                42.731432
+              ], 
+              [
+                -96.906797, 
+                42.7338
+              ], 
+              [
+                -96.813148, 
+                42.706397
+              ], 
+              [
+                -96.806553, 
+                42.703405
+              ], 
+              [
+                -96.724033, 
+                42.665971
+              ], 
+              [
+                -96.712871, 
+                42.648136
+              ], 
+              [
+                -96.707245, 
+                42.631258
+              ], 
+              [
+                -96.710604, 
+                42.619625
+              ], 
+              [
+                -96.711332, 
+                42.610399
+              ], 
+              [
+                -96.708049, 
+                42.601594
+              ], 
+              [
+                -96.635982, 
+                42.524324
+              ], 
+              [
+                -96.625958, 
+                42.513576
+              ], 
+              [
+                -96.611489, 
+                42.506088
+              ], 
+              [
+                -96.48749, 
+                42.479846
+              ], 
+              [
+                -96.475565, 
+                42.480036
+              ], 
+              [
+                -96.443408, 
+                42.489495
+              ], 
+              [
+                -96.409408, 
+                42.487595
+              ], 
+              [
+                -96.396107, 
+                42.484095
+              ], 
+              [
+                -96.385407, 
+                42.473094
+              ], 
+              [
+                -96.381307, 
+                42.461694
+              ], 
+              [
+                -96.380707, 
+                42.446394
+              ], 
+              [
+                -96.387608, 
+                42.432494
+              ], 
+              [
+                -96.413609, 
+                42.407894
+              ], 
+              [
+                -96.415509, 
+                42.400294
+              ], 
+              [
+                -96.417786, 
+                42.351449
+              ], 
+              [
+                -96.413895, 
+                42.343393
+              ], 
+              [
+                -96.407998, 
+                42.337408
+              ], 
+              [
+                -96.384169, 
+                42.325874
+              ], 
+              [
+                -96.375307, 
+                42.318339
+              ], 
+              [
+                -96.348814, 
+                42.282024
+              ], 
+              [
+                -96.328905, 
+                42.254734
+              ], 
+              [
+                -96.322868, 
+                42.233637
+              ], 
+              [
+                -96.323723, 
+                42.229887
+              ], 
+              [
+                -96.336323, 
+                42.218922
+              ], 
+              [
+                -96.356591, 
+                42.215182
+              ], 
+              [
+                -96.356666, 
+                42.215077
+              ], 
+              [
+                -96.35987, 
+                42.210545
+              ], 
+              [
+                -96.349688, 
+                42.172043
+              ], 
+              [
+                -96.344121, 
+                42.162091
+              ], 
+              [
+                -96.307421, 
+                42.130707
+              ], 
+              [
+                -96.279079, 
+                42.074026
+              ], 
+              [
+                -96.272877, 
+                42.047238
+              ], 
+              [
+                -96.251714, 
+                42.040472
+              ], 
+              [
+                -96.22173, 
+                42.026205
+              ], 
+              [
+                -96.129505, 
+                41.971673
+              ], 
+              [
+                -96.129186, 
+                41.965136
+              ], 
+              [
+                -96.136743, 
+                41.920826
+              ], 
+              [
+                -96.142265, 
+                41.915379
+              ], 
+              [
+                -96.159098, 
+                41.910057
+              ], 
+              [
+                -96.161988, 
+                41.905553
+              ], 
+              [
+                -96.161756, 
+                41.90182
+              ], 
+              [
+                -96.144483, 
+                41.871854
+              ], 
+              [
+                -96.139554, 
+                41.86583
+              ], 
+              [
+                -96.110907, 
+                41.830818
+              ], 
+              [
+                -96.086407, 
+                41.81138
+              ], 
+              [
+                -96.077646, 
+                41.808804
+              ], 
+              [
+                -96.071007, 
+                41.804639
+              ], 
+              [
+                -96.06577, 
+                41.798174
+              ], 
+              [
+                -96.064537, 
+                41.793002
+              ], 
+              [
+                -96.077088, 
+                41.715403
+              ], 
+              [
+                -96.096795, 
+                41.698681
+              ], 
+              [
+                -96.121726, 
+                41.68274
+              ], 
+              [
+                -96.099837, 
+                41.66103
+              ], 
+              [
+                -96.095415, 
+                41.652736
+              ], 
+              [
+                -96.095046, 
+                41.647365
+              ], 
+              [
+                -96.097728, 
+                41.639633
+              ], 
+              [
+                -96.116233, 
+                41.621574
+              ], 
+              [
+                -96.118105, 
+                41.613495
+              ], 
+              [
+                -96.09409, 
+                41.539265
+              ], 
+              [
+                -96.089714, 
+                41.531778
+              ], 
+              [
+                -96.055096, 
+                41.509577
+              ], 
+              [
+                -96.046707, 
+                41.507085
+              ], 
+              [
+                -96.040701, 
+                41.507076
+              ], 
+              [
+                -96.036603, 
+                41.509047
+              ], 
+              [
+                -96.030593, 
+                41.527292
+              ], 
+              [
+                -95.994784, 
+                41.526242
+              ], 
+              [
+                -95.981319, 
+                41.506837
+              ], 
+              [
+                -95.930705, 
+                41.433894
+              ], 
+              [
+                -95.937346, 
+                41.394403
+              ], 
+              [
+                -95.93831, 
+                41.392162
+              ], 
+              [
+                -95.956791, 
+                41.349196
+              ], 
+              [
+                -95.956691, 
+                41.345496
+              ], 
+              [
+                -95.953091, 
+                41.339896
+              ], 
+              [
+                -95.939291, 
+                41.328897
+              ], 
+              [
+                -95.92569, 
+                41.322197
+              ], 
+              [
+                -95.91379, 
+                41.320197
+              ], 
+              [
+                -95.90249, 
+                41.273398
+              ], 
+              [
+                -95.924891, 
+                41.211198
+              ], 
+              [
+                -95.927491, 
+                41.202198
+              ], 
+              [
+                -95.92599, 
+                41.195698
+              ], 
+              [
+                -95.923219, 
+                41.191046
+              ], 
+              [
+                -95.92319, 
+                41.190998
+              ], 
+              [
+                -95.91459, 
+                41.185098
+              ], 
+              [
+                -95.852788, 
+                41.165398
+              ], 
+              [
+                -95.853396, 
+                41.16028
+              ], 
+              [
+                -95.866289, 
+                41.051731
+              ], 
+              [
+                -95.867246, 
+                41.043671
+              ], 
+              [
+                -95.867286, 
+                41.001599
+              ], 
+              [
+                -95.835434, 
+                40.984184
+              ], 
+              [
+                -95.829074, 
+                40.975688
+              ], 
+              [
+                -95.823123, 
+                40.900924
+              ], 
+              [
+                -95.821193, 
+                40.876682
+              ], 
+              [
+                -95.854172, 
+                40.784012
+              ], 
+              [
+                -95.861695, 
+                40.762871
+              ], 
+              [
+                -95.872281, 
+                40.758349
+              ], 
+              [
+                -95.881529, 
+                40.750611
+              ], 
+              [
+                -95.88669, 
+                40.742101
+              ], 
+              [
+                -95.888907, 
+                40.731855
+              ], 
+              [
+                -95.883178, 
+                40.717579
+              ], 
+              [
+                -95.842801, 
+                40.677496
+              ], 
+              [
+                -95.822913, 
+                40.66724
+              ], 
+              [
+                -95.795489, 
+                40.662384
+              ], 
+              [
+                -95.786568, 
+                40.657253
+              ], 
+              [
+                -95.776251, 
+                40.647463
+              ], 
+              [
+                -95.748626, 
+                40.603355
+              ], 
+              [
+                -95.750053, 
+                40.597052
+              ], 
+              [
+                -95.753148, 
+                40.59284
+              ], 
+              [
+                -95.765645, 
+                40.585208
+              ], 
+              [
+                -95.773549, 
+                40.578205
+              ], 
+              [
+                -95.774704, 
+                40.573574
+              ], 
+              [
+                -95.769281, 
+                40.536656
+              ], 
+              [
+                -95.76692, 
+                40.531563
+              ], 
+              [
+                -95.75711, 
+                40.52599
+              ], 
+              [
+                -95.74868, 
+                40.524275
+              ], 
+              [
+                -95.709974, 
+                40.523798
+              ], 
+              [
+                -95.697281, 
+                40.536985
+              ], 
+              [
+                -95.696673, 
+                40.545137
+              ], 
+              [
+                -95.659281, 
+                40.519808
+              ], 
+              [
+                -95.681409, 
+                40.49082
+              ], 
+              [
+                -95.692665, 
+                40.483022
+              ], 
+              [
+                -95.68728, 
+                40.465059
+              ], 
+              [
+                -95.622684, 
+                40.342323
+              ], 
+              [
+                -95.553292, 
+                40.291158
+              ], 
+              [
+                -95.550966, 
+                40.285947
+              ], 
+              [
+                -95.552314, 
+                40.264443
+              ], 
+              [
+                -95.552473, 
+                40.261904
+              ], 
+              [
+                -95.521925, 
+                40.24947
+              ], 
+              [
+                -95.312211, 
+                40.009395
+              ], 
+              [
+                -95.30829, 
+                39.999998
+              ], 
+              [
+                -95.339896, 
+                39.999999
+              ], 
+              [
+                -95.375257, 
+                40.0
+              ], 
+              [
+                -95.784575, 
+                40.000463
+              ], 
+              [
+                -95.788024, 
+                40.000452
+              ], 
+              [
+                -95.788111, 
+                40.000452
+              ], 
+              [
+                -95.882524, 
+                40.00047
+              ], 
+              [
+                -95.958139, 
+                40.000521
+              ], 
+              [
+                -96.010678, 
+                40.000638
+              ], 
+              [
+                -96.01068, 
+                40.000638
+              ], 
+              [
+                -96.02409, 
+                40.000719
+              ], 
+              [
+                -96.051691, 
+                40.000727
+              ], 
+              [
+                -96.081395, 
+                40.000603
+              ], 
+              [
+                -96.089781, 
+                40.000519
+              ], 
+              [
+                -96.125788, 
+                40.000467
+              ], 
+              [
+                -96.125937, 
+                40.000432
+              ], 
+              [
+                -96.147167, 
+                40.000479
+              ], 
+              [
+                -96.154246, 
+                40.00045
+              ], 
+              [
+                -96.154365, 
+                40.000495
+              ], 
+              [
+                -96.220171, 
+                40.00072
+              ], 
+              [
+                -96.223839, 
+                40.000729
+              ], 
+              [
+                -96.239172, 
+                40.000691
+              ], 
+              [
+                -96.239208, 
+                40.000691
+              ], 
+              [
+                -96.301066, 
+                40.000632
+              ], 
+              [
+                -96.304555, 
+                40.000629
+              ], 
+              [
+                -96.46364, 
+                40.000967
+              ], 
+              [
+                -96.463713, 
+                40.000968
+              ], 
+              [
+                -96.467536, 
+                40.001035
+              ], 
+              [
+                -96.469945, 
+                40.000966
+              ], 
+              [
+                -96.527111, 
+                40.001031
+              ], 
+              [
+                -96.538977, 
+                40.000851
+              ], 
+              [
+                -96.557863, 
+                40.000968
+              ], 
+              [
+                -96.570854, 
+                40.001091
+              ], 
+              [
+                -96.580852, 
+                40.000966
+              ], 
+              [
+                -96.604884, 
+                40.000891
+              ], 
+              [
+                -96.610349, 
+                40.000881
+              ], 
+              [
+                -96.622401, 
+                40.001158
+              ], 
+              [
+                -96.805768, 
+                40.001371
+              ], 
+              [
+                -96.873812, 
+                40.00145
+              ], 
+              [
+                -96.875057, 
+                40.001448
+              ], 
+              [
+                -96.878253, 
+                40.001466
+              ], 
+              [
+                -96.880459, 
+                40.001448
+              ], 
+              [
+                -96.916093, 
+                40.001506
+              ], 
+              [
+                -96.916407, 
+                40.001506
+              ], 
+              [
+                -97.009165, 
+                40.001463
+              ], 
+              [
+                -97.030803, 
+                40.001342
+              ], 
+              [
+                -97.049663, 
+                40.001323
+              ], 
+              [
+                -97.137866, 
+                40.001814
+              ], 
+              [
+                -97.142448, 
+                40.001495
+              ], 
+              [
+                -97.181775, 
+                40.00155
+              ], 
+              [
+                -97.20019, 
+                40.001549
+              ], 
+              [
+                -97.20231, 
+                40.001442
+              ], 
+              [
+                -97.24508, 
+                40.001467
+              ], 
+              [
+                -97.245169, 
+                40.001513
+              ], 
+              [
+                -97.350272, 
+                40.001976
+              ], 
+              [
+                -97.350896, 
+                40.00193
+              ], 
+              [
+                -97.369103, 
+                40.00206
+              ], 
+              [
+                -97.369199, 
+                40.00206
+              ], 
+              [
+                -97.369199, 
+                40.00206
+              ], 
+              [
+                -97.415833, 
+                40.002001
+              ], 
+              [
+                -97.417826, 
+                40.002024
+              ], 
+              [
+                -97.425443, 
+                40.002048
+              ], 
+              [
+                -97.444662, 
+                40.001958
+              ], 
+              [
+                -97.463285, 
+                40.002047
+              ], 
+              [
+                -97.510264, 
+                40.001835
+              ], 
+              [
+                -97.511381, 
+                40.001899
+              ], 
+              [
+                -97.515308, 
+                40.001901
+              ], 
+              [
+                -97.767746, 
+                40.001994
+              ], 
+              [
+                -97.769204, 
+                40.001995
+              ], 
+              [
+                -97.770776, 
+                40.001977
+              ], 
+              [
+                -97.777155, 
+                40.002167
+              ], 
+              [
+                -97.819426, 
+                40.001958
+              ], 
+              [
+                -97.821496, 
+                40.002002
+              ], 
+              [
+                -97.821598, 
+                40.002004
+              ], 
+              [
+                -97.838379, 
+                40.00191
+              ], 
+              [
+                -97.85745, 
+                40.002065
+              ], 
+              [
+                -97.876261, 
+                40.002102
+              ], 
+              [
+                -97.931811, 
+                40.00205
+              ], 
+              [
+                -97.931826, 
+                40.00205
+              ], 
+              [
+                -97.972186, 
+                40.002114
+              ], 
+              [
+                -98.010157, 
+                40.002153
+              ], 
+              [
+                -98.014412, 
+                40.002223
+              ], 
+              [
+                -98.047469, 
+                40.002186
+              ], 
+              [
+                -98.050057, 
+                40.002278
+              ], 
+              [
+                -98.068701, 
+                40.002355
+              ], 
+              [
+                -98.076034, 
+                40.002301
+              ], 
+              [
+                -98.099659, 
+                40.002227
+              ], 
+              [
+                -98.142031, 
+                40.002452
+              ], 
+              [
+                -98.172269, 
+                40.002438
+              ], 
+              [
+                -98.179315, 
+                40.002483
+              ], 
+              [
+                -98.193483, 
+                40.002614
+              ], 
+              [
+                -98.250008, 
+                40.002307
+              ], 
+              [
+                -98.268218, 
+                40.00249
+              ], 
+              [
+                -98.274015, 
+                40.002516
+              ], 
+              [
+                -98.274017, 
+                40.002516
+              ], 
+              [
+                -98.490533, 
+                40.002323
+              ], 
+              [
+                -98.504455, 
+                40.002329
+              ], 
+              [
+                -98.523053, 
+                40.002336
+              ], 
+              [
+                -98.543186, 
+                40.002285
+              ], 
+              [
+                -98.560578, 
+                40.002274
+              ], 
+              [
+                -98.575219, 
+                40.00248
+              ], 
+              [
+                -98.593342, 
+                40.002476
+              ], 
+              [
+                -98.613755, 
+                40.0024
+              ], 
+              [
+                -98.64071, 
+                40.002493
+              ], 
+              [
+                -98.652494, 
+                40.002245
+              ], 
+              [
+                -98.653833, 
+                40.002269
+              ], 
+              [
+                -98.669724, 
+                40.00241
+              ], 
+              [
+                -98.672819, 
+                40.002364
+              ], 
+              [
+                -98.690287, 
+                40.002548
+              ], 
+              [
+                -98.691443, 
+                40.002505
+              ], 
+              [
+                -98.693096, 
+                40.002373
+              ], 
+              [
+                -98.710404, 
+                40.00218
+              ], 
+              [
+                -98.726295, 
+                40.002222
+              ], 
+              [
+                -98.726373, 
+                40.002222
+              ], 
+              [
+                -98.774941, 
+                40.002336
+              ], 
+              [
+                -98.777203, 
+                40.002359
+              ], 
+              [
+                -98.82059, 
+                40.002319
+              ], 
+              [
+                -98.834456, 
+                40.002363
+              ], 
+              [
+                -98.934792, 
+                40.002205
+              ], 
+              [
+                -98.960919, 
+                40.002271
+              ], 
+              [
+                -98.961009, 
+                40.002317
+              ], 
+              [
+                -98.971721, 
+                40.002268
+              ], 
+              [
+                -98.972287, 
+                40.002245
+              ], 
+              [
+                -98.992135, 
+                40.002192
+              ], 
+              [
+                -99.018701, 
+                40.002333
+              ], 
+              [
+                -99.020338, 
+                40.002264
+              ], 
+              [
+                -99.067022, 
+                40.00217
+              ], 
+              [
+                -99.085597, 
+                40.002133
+              ], 
+              [
+                -99.11351, 
+                40.002193
+              ], 
+              [
+                -99.123033, 
+                40.002165
+              ], 
+              [
+                -99.169816, 
+                40.001925
+              ], 
+              [
+                -99.178965, 
+                40.001977
+              ], 
+              [
+                -99.179133, 
+                40.001977
+              ], 
+              [
+                -99.186962, 
+                40.001977
+              ], 
+              [
+                -99.188905, 
+                40.002023
+              ], 
+              [
+                -99.197592, 
+                40.002033
+              ], 
+              [
+                -99.216376, 
+                40.002016
+              ], 
+              [
+                -99.25037, 
+                40.001957
+              ], 
+              [
+                -99.254012, 
+                40.002074
+              ], 
+              [
+                -99.282967, 
+                40.001879
+              ], 
+              [
+                -99.286656, 
+                40.002017
+              ], 
+              [
+                -99.290703, 
+                40.001949
+              ], 
+              [
+                -99.403389, 
+                40.001969
+              ], 
+              [
+                -99.412645, 
+                40.001868
+              ], 
+              [
+                -99.480728, 
+                40.001942
+              ], 
+              [
+                -99.493465, 
+                40.001937
+              ], 
+              [
+                -99.49766, 
+                40.001912
+              ], 
+              [
+                -99.498999, 
+                40.001957
+              ], 
+              [
+                -99.501792, 
+                40.002026
+              ], 
+              [
+                -99.625324, 
+                40.001866
+              ], 
+              [
+                -99.62598, 
+                40.001865
+              ], 
+              [
+                -99.628255, 
+                40.001866
+              ], 
+              [
+                -99.628346, 
+                40.001866
+              ], 
+              [
+                -99.719639, 
+                40.001808
+              ], 
+              [
+                -99.731959, 
+                40.001827
+              ], 
+              [
+                -99.746628, 
+                40.00182
+              ], 
+              [
+                -99.756835, 
+                40.001342
+              ], 
+              [
+                -99.764214, 
+                40.001551
+              ], 
+              [
+                -99.772121, 
+                40.001804
+              ], 
+              [
+                -99.77564, 
+                40.001647
+              ], 
+              [
+                -99.813401, 
+                40.0014
+              ], 
+              [
+                -99.906658, 
+                40.001512
+              ], 
+              [
+                -99.930433, 
+                40.001516
+              ], 
+              [
+                -99.944417, 
+                40.001584
+              ], 
+              [
+                -99.948167, 
+                40.001813
+              ], 
+              [
+                -99.986611, 
+                40.00155
+              ], 
+              [
+                -99.990926, 
+                40.001503
+              ], 
+              [
+                -100.177795, 
+                40.001593
+              ], 
+              [
+                -100.177823, 
+                40.001593
+              ], 
+              [
+                -100.188181, 
+                40.001541
+              ], 
+              [
+                -100.190323, 
+                40.001586
+              ], 
+              [
+                -100.19359, 
+                40.001573
+              ], 
+              [
+                -100.193597, 
+                40.001573
+              ], 
+              [
+                -100.196959, 
+                40.001494
+              ], 
+              [
+                -100.215406, 
+                40.001629
+              ], 
+              [
+                -100.229479, 
+                40.001693
+              ], 
+              [
+                -100.231652, 
+                40.001623
+              ], 
+              [
+                -100.39008, 
+                40.001809
+              ], 
+              [
+                -100.439081, 
+                40.001774
+              ], 
+              [
+                -100.447072, 
+                40.001795
+              ], 
+              [
+                -100.468773, 
+                40.001724
+              ], 
+              [
+                -100.475854, 
+                40.001768
+              ], 
+              [
+                -100.477018, 
+                40.001752
+              ], 
+              [
+                -100.487159, 
+                40.001767
+              ], 
+              [
+                -100.511065, 
+                40.00184
+              ], 
+              [
+                -100.551886, 
+                40.001889
+              ], 
+              [
+                -100.567238, 
+                40.001889
+              ], 
+              [
+                -100.594757, 
+                40.001977
+              ], 
+              [
+                -100.600945, 
+                40.001906
+              ], 
+              [
+                -100.645445, 
+                40.001883
+              ], 
+              [
+                -100.66023, 
+                40.002162
+              ], 
+              [
+                -100.683435, 
+                40.002234
+              ], 
+              [
+                -100.721128, 
+                40.002069
+              ], 
+              [
+                -100.729904, 
+                40.002111
+              ], 
+              [
+                -100.733296, 
+                40.00227
+              ], 
+              [
+                -100.738826, 
+                40.002228
+              ], 
+              [
+                -100.752183, 
+                40.002128
+              ], 
+              [
+                -100.75883, 
+                40.002302
+              ], 
+              [
+                -100.937427, 
+                40.002145
+              ], 
+              [
+                -101.027686, 
+                40.002256
+              ], 
+              [
+                -101.060317, 
+                40.002307
+              ], 
+              [
+                -101.130907, 
+                40.002427
+              ], 
+              [
+                -101.168704, 
+                40.002547
+              ], 
+              [
+                -101.178805, 
+                40.002468
+              ], 
+              [
+                -101.192219, 
+                40.002491
+              ], 
+              [
+                -101.215033, 
+                40.002555
+              ], 
+              [
+                -101.248673, 
+                40.002543
+              ], 
+              [
+                -101.286555, 
+                40.002559
+              ], 
+              [
+                -101.293991, 
+                40.002559
+              ], 
+              [
+                -101.324036, 
+                40.002696
+              ], 
+              [
+                -101.325514, 
+                40.002687
+              ], 
+              [
+                -101.342859, 
+                40.00258
+              ], 
+              [
+                -101.374326, 
+                40.002521
+              ], 
+              [
+                -101.409953, 
+                40.002354
+              ], 
+              [
+                -101.411043, 
+                40.002365
+              ], 
+              [
+                -101.417209, 
+                40.002424
+              ], 
+              [
+                -101.542273, 
+                40.002609
+              ], 
+              [
+                -101.625809, 
+                40.002711
+              ], 
+              [
+                -101.627071, 
+                40.00262
+              ], 
+              [
+                -101.804862, 
+                40.002752
+              ], 
+              [
+                -101.807687, 
+                40.002798
+              ], 
+              [
+                -101.832161, 
+                40.002933
+              ], 
+              [
+                -101.841025, 
+                40.002784
+              ], 
+              [
+                -101.904176, 
+                40.003162
+              ], 
+              [
+                -101.916696, 
+                40.003142
+              ], 
+              [
+                -102.051744, 
+                40.003078
+              ], 
+              [
+                -102.052001, 
+                40.148359
+              ], 
+              [
+                -102.051909, 
+                40.162674
+              ], 
+              [
+                -102.051894, 
+                40.229193
+              ], 
+              [
+                -102.051922, 
+                40.235344
+              ], 
+              [
+                -102.051669, 
+                40.349213
+              ], 
+              [
+                -102.051572, 
+                40.39308
+              ], 
+              [
+                -102.05184, 
+                40.396396
+              ], 
+              [
+                -102.051465, 
+                40.440008
+              ], 
+              [
+                -102.051519, 
+                40.520094
+              ], 
+              [
+                -102.051725, 
+                40.537839
+              ], 
+              [
+                -102.051398, 
+                40.697542
+              ], 
+              [
+                -102.051292, 
+                40.749586
+              ], 
+              [
+                -102.051292, 
+                40.749591
+              ], 
+              [
+                -102.051614, 
+                41.002377
+              ], 
+              [
+                -102.051718, 
+                41.002377
+              ], 
+              [
+                -102.070598, 
+                41.002423
+              ], 
+              [
+                -102.124972, 
+                41.002338
+              ], 
+              [
+                -102.19121, 
+                41.002326
+              ], 
+              [
+                -102.209361, 
+                41.002442
+              ], 
+              [
+                -102.2122, 
+                41.002462
+              ], 
+              [
+                -102.231931, 
+                41.002327
+              ], 
+              [
+                -102.267812, 
+                41.002383
+              ], 
+              [
+                -102.2721, 
+                41.002245
+              ], 
+              [
+                -102.291354, 
+                41.002207
+              ], 
+              [
+                -102.292553, 
+                41.002207
+              ], 
+              [
+                -102.292622, 
+                41.00223
+              ], 
+              [
+                -102.292833, 
+                41.002207
+              ], 
+              [
+                -102.364066, 
+                41.002174
+              ], 
+              [
+                -102.379593, 
+                41.002301
+              ], 
+              [
+                -102.469223, 
+                41.002424
+              ], 
+              [
+                -102.470537, 
+                41.002382
+              ], 
+              [
+                -102.487955, 
+                41.002445
+              ], 
+              [
+                -102.556789, 
+                41.002219
+              ], 
+              [
+                -102.566048, 
+                41.0022
+              ], 
+              [
+                -102.575496, 
+                41.0022
+              ], 
+              [
+                -102.575738, 
+                41.002268
+              ], 
+              [
+                -102.578696, 
+                41.002291
+              ], 
+              [
+                -102.621033, 
+                41.002597
+              ], 
+              [
+                -102.653463, 
+                41.002332
+              ], 
+              [
+                -102.739624, 
+                41.00223
+              ], 
+              [
+                -102.754617, 
+                41.002361
+              ], 
+              [
+                -102.766723, 
+                41.002275
+              ], 
+              [
+                -102.773546, 
+                41.002414
+              ], 
+              [
+                -102.82728, 
+                41.002143
+              ], 
+              [
+                -102.830303, 
+                41.002351
+              ], 
+              [
+                -102.846455, 
+                41.002256
+              ], 
+              [
+                -102.849263, 
+                41.002301
+              ], 
+              [
+                -102.865784, 
+                41.001988
+              ], 
+              [
+                -102.867822, 
+                41.002183
+              ], 
+              [
+                -102.885746, 
+                41.002131
+              ], 
+              [
+                -102.887407, 
+                41.002178
+              ], 
+              [
+                -102.904796, 
+                41.002207
+              ], 
+              [
+                -102.906547, 
+                41.002276
+              ], 
+              [
+                -102.924029, 
+                41.002142
+              ], 
+              [
+                -102.925568, 
+                41.00228
+              ], 
+              [
+                -102.943109, 
+                41.002051
+              ], 
+              [
+                -102.94483, 
+                41.002303
+              ], 
+              [
+                -102.959624, 
+                41.002095
+              ], 
+              [
+                -102.960706, 
+                41.002059
+              ], 
+              [
+                -102.962522, 
+                41.002072
+              ], 
+              [
+                -102.963669, 
+                41.002186
+              ], 
+              [
+                -102.981483, 
+                41.002112
+              ], 
+              [
+                -102.98269, 
+                41.002157
+              ], 
+              [
+                -103.000102, 
+                41.0024
+              ], 
+              [
+                -103.002026, 
+                41.002486
+              ], 
+              [
+                -103.038704, 
+                41.002251
+              ], 
+              [
+                -103.043444, 
+                41.002344
+              ], 
+              [
+                -103.057998, 
+                41.002368
+              ], 
+              [
+                -103.059538, 
+                41.002368
+              ], 
+              [
+                -103.076536, 
+                41.002253
+              ], 
+              [
+                -103.077804, 
+                41.002298
+              ], 
+              [
+                -103.362979, 
+                41.001844
+              ], 
+              [
+                -103.365314, 
+                41.001846
+              ], 
+              [
+                -103.382493, 
+                41.001883
+              ], 
+              [
+                -103.421925, 
+                41.001969
+              ], 
+              [
+                -103.421975, 
+                41.002007
+              ], 
+              [
+                -103.486697, 
+                41.001914
+              ], 
+              [
+                -103.497447, 
+                41.001635
+              ], 
+              [
+                -103.574522, 
+                41.001721
+              ], 
+              [
+                -103.858449, 
+                41.001681
+              ], 
+              [
+                -103.877967, 
+                41.001673
+              ], 
+              [
+                -103.896207, 
+                41.00175
+              ], 
+              [
+                -103.953525, 
+                41.001596
+              ], 
+              [
+                -103.971373, 
+                41.001524
+              ], 
+              [
+                -103.972642, 
+                41.001615
+              ], 
+              [
+                -104.018223, 
+                41.001617
+              ], 
+              [
+                -104.023383, 
+                41.001887
+              ], 
+              [
+                -104.039238, 
+                41.001502
+              ], 
+              [
+                -104.053249, 
+                41.001406
+              ], 
+              [
+                -104.053158, 
+                41.016809
+              ], 
+              [
+                -104.053097, 
+                41.018045
+              ], 
+              [
+                -104.053177, 
+                41.089725
+              ], 
+              [
+                -104.053025, 
+                41.090274
+              ], 
+              [
+                -104.053083, 
+                41.104985
+              ], 
+              [
+                -104.053142, 
+                41.114457
+              ], 
+              [
+                -104.052666, 
+                41.275251
+              ], 
+              [
+                -104.052574, 
+                41.278019
+              ], 
+              [
+                -104.052453, 
+                41.278202
+              ], 
+              [
+                -104.052568, 
+                41.316202
+              ], 
+              [
+                -104.052476, 
+                41.320961
+              ], 
+              [
+                -104.052324, 
+                41.321144
+              ], 
+              [
+                -104.052287, 
+                41.393214
+              ], 
+              [
+                -104.052287, 
+                41.393307
+              ], 
+              [
+                -104.05216, 
+                41.407662
+              ], 
+              [
+                -104.05234, 
+                41.417865
+              ], 
+              [
+                -104.052478, 
+                41.515754
+              ], 
+              [
+                -104.052476, 
+                41.522343
+              ], 
+              [
+                -104.052686, 
+                41.539111
+              ], 
+              [
+                -104.052692, 
+                41.541154
+              ], 
+              [
+                -104.052584, 
+                41.55265
+              ], 
+              [
+                -104.052531, 
+                41.552723
+              ], 
+              [
+                -104.05254, 
+                41.564274
+              ], 
+              [
+                -104.052859, 
+                41.592254
+              ], 
+              [
+                -104.052735, 
+                41.613676
+              ], 
+              [
+                -104.052975, 
+                41.622931
+              ], 
+              [
+                -104.052945, 
+                41.638167
+              ], 
+              [
+                -104.052913, 
+                41.64519
+              ], 
+              [
+                -104.05283, 
+                41.697954
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 40, 
+      "properties": {
+        "CENSUSAREA": 76824.171, 
+        "GEO_ID": "0400000US31", 
+        "ISO": "US-NE", 
+        "LSAD": "", 
+        "NAME": "Nebraska", 
+        "NAME_1": "Nebraska", 
+        "STATE": "NE"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -114.046555, 
+                40.116931
+              ], 
+              [
+                -114.047134, 
+                39.906037
+              ], 
+              [
+                -114.047728, 
+                39.542742
+              ], 
+              [
+                -114.049893, 
+                38.677365
+              ], 
+              [
+                -114.050154, 
+                38.57292
+              ], 
+              [
+                -114.049862, 
+                38.547764
+              ], 
+              [
+                -114.049834, 
+                38.543784
+              ], 
+              [
+                -114.050091, 
+                38.404673
+              ], 
+              [
+                -114.05012, 
+                38.404536
+              ], 
+              [
+                -114.049903, 
+                38.148601
+              ], 
+              [
+                -114.050423, 
+                37.999961
+              ], 
+              [
+                -114.048473, 
+                37.809861
+              ], 
+              [
+                -114.051109, 
+                37.756276
+              ], 
+              [
+                -114.05167, 
+                37.746958
+              ], 
+              [
+                -114.051785, 
+                37.746249
+              ], 
+              [
+                -114.051728, 
+                37.745997
+              ], 
+              [
+                -114.052472, 
+                37.604776
+              ], 
+              [
+                -114.052689, 
+                37.517859
+              ], 
+              [
+                -114.052718, 
+                37.517264
+              ], 
+              [
+                -114.052685, 
+                37.502513
+              ], 
+              [
+                -114.052701, 
+                37.492014
+              ], 
+              [
+                -114.051927, 
+                37.370734
+              ], 
+              [
+                -114.051927, 
+                37.370459
+              ], 
+              [
+                -114.0518, 
+                37.293548
+              ], 
+              [
+                -114.0518, 
+                37.293044
+              ], 
+              [
+                -114.051974, 
+                37.284511
+              ], 
+              [
+                -114.051974, 
+                37.283848
+              ], 
+              [
+                -114.051822, 
+                37.090976
+              ], 
+              [
+                -114.051749, 
+                37.088434
+              ], 
+              [
+                -114.0506, 
+                37.000396
+              ], 
+              [
+                -114.050583, 
+                36.843141
+              ], 
+              [
+                -114.050578, 
+                36.800173
+              ], 
+              [
+                -114.050562, 
+                36.656259
+              ], 
+              [
+                -114.046488, 
+                36.473449
+              ], 
+              [
+                -114.046403, 
+                36.371873
+              ], 
+              [
+                -114.048515, 
+                36.289598
+              ], 
+              [
+                -114.047106, 
+                36.250591
+              ], 
+              [
+                -114.046838, 
+                36.194069
+              ], 
+              [
+                -114.060302, 
+                36.189363
+              ], 
+              [
+                -114.063021, 
+                36.186942
+              ], 
+              [
+                -114.120193, 
+                36.102228
+              ], 
+              [
+                -114.125796, 
+                36.077531
+              ], 
+              [
+                -114.138202, 
+                36.041284
+              ], 
+              [
+                -114.148774, 
+                36.02731
+              ], 
+              [
+                -114.15413, 
+                36.023862
+              ], 
+              [
+                -114.21369, 
+                36.015613
+              ], 
+              [
+                -114.233289, 
+                36.014289
+              ], 
+              [
+                -114.238799, 
+                36.014561
+              ], 
+              [
+                -114.252651, 
+                36.020193
+              ], 
+              [
+                -114.263146, 
+                36.025937
+              ], 
+              [
+                -114.292663, 
+                36.051118
+              ], 
+              [
+                -114.303614, 
+                36.066456
+              ], 
+              [
+                -114.307235, 
+                36.076544
+              ], 
+              [
+                -114.310857, 
+                36.083787
+              ], 
+              [
+                -114.328777, 
+                36.105501
+              ], 
+              [
+                -114.365835, 
+                36.133722
+              ], 
+              [
+                -114.381446, 
+                36.141665
+              ], 
+              [
+                -114.513256, 
+                36.151217
+              ], 
+              [
+                -114.572031, 
+                36.15161
+              ], 
+              [
+                -114.631716, 
+                36.142306
+              ], 
+              [
+                -114.736165, 
+                36.104367
+              ], 
+              [
+                -114.744857, 
+                36.098693
+              ], 
+              [
+                -114.755618, 
+                36.087166
+              ], 
+              [
+                -114.743576, 
+                35.983721
+              ], 
+              [
+                -114.731296, 
+                35.945157
+              ], 
+              [
+                -114.70613, 
+                35.878712
+              ], 
+              [
+                -114.704211, 
+                35.851984
+              ], 
+              [
+                -114.705611, 
+                35.848884
+              ], 
+              [
+                -114.70771, 
+                35.811885
+              ], 
+              [
+                -114.700308, 
+                35.700387
+              ], 
+              [
+                -114.689407, 
+                35.651412
+              ], 
+              [
+                -114.676707, 
+                35.640989
+              ], 
+              [
+                -114.657506, 
+                35.618289
+              ], 
+              [
+                -114.653406, 
+                35.610789
+              ], 
+              [
+                -114.653806, 
+                35.59949
+              ], 
+              [
+                -114.671147, 
+                35.520641
+              ], 
+              [
+                -114.674981, 
+                35.510564
+              ], 
+              [
+                -114.676733, 
+                35.499063
+              ], 
+              [
+                -114.677643, 
+                35.489742
+              ], 
+              [
+                -114.662125, 
+                35.444241
+              ], 
+              [
+                -114.652005, 
+                35.429165
+              ], 
+              [
+                -114.627137, 
+                35.409504
+              ], 
+              [
+                -114.604314, 
+                35.353584
+              ], 
+              [
+                -114.595931, 
+                35.325234
+              ], 
+              [
+                -114.569238, 
+                35.18348
+              ], 
+              [
+                -114.569569, 
+                35.163053
+              ], 
+              [
+                -114.572747, 
+                35.138725
+              ], 
+              [
+                -114.578524, 
+                35.12875
+              ], 
+              [
+                -114.5843, 
+                35.124999
+              ], 
+              [
+                -114.59912, 
+                35.12105
+              ], 
+              [
+                -114.621956, 
+                35.094678
+              ], 
+              [
+                -114.635469, 
+                35.028266
+              ], 
+              [
+                -114.633544, 
+                35.015644
+              ], 
+              [
+                -114.633013, 
+                35.002085
+              ], 
+              [
+                -114.804249, 
+                35.139689
+              ], 
+              [
+                -114.80503, 
+                35.140284
+              ], 
+              [
+                -114.925381, 
+                35.237039
+              ], 
+              [
+                -114.92548, 
+                35.237054
+              ], 
+              [
+                -115.145813, 
+                35.413182
+              ], 
+              [
+                -115.146788, 
+                35.413662
+              ], 
+              [
+                -115.160068, 
+                35.424129
+              ], 
+              [
+                -115.160599, 
+                35.424313
+              ], 
+              [
+                -115.225273, 
+                35.475907
+              ], 
+              [
+                -115.271342, 
+                35.51266
+              ], 
+              [
+                -115.303743, 
+                35.538207
+              ], 
+              [
+                -115.388866, 
+                35.605171
+              ], 
+              [
+                -115.391535, 
+                35.607271
+              ], 
+              [
+                -115.393996, 
+                35.609344
+              ], 
+              [
+                -115.404537, 
+                35.617605
+              ], 
+              [
+                -115.406079, 
+                35.618613
+              ], 
+              [
+                -115.647202, 
+                35.808995
+              ], 
+              [
+                -115.647683, 
+                35.809358
+              ], 
+              [
+                -115.648029, 
+                35.809629
+              ], 
+              [
+                -115.689302, 
+                35.842003
+              ], 
+              [
+                -115.84608, 
+                35.963596
+              ], 
+              [
+                -115.892975, 
+                35.999967
+              ], 
+              [
+                -115.912858, 
+                36.015359
+              ], 
+              [
+                -116.093601, 
+                36.155805
+              ], 
+              [
+                -116.097216, 
+                36.158346
+              ], 
+              [
+                -116.488233, 
+                36.459097
+              ], 
+              [
+                -117.000895, 
+                36.847694
+              ], 
+              [
+                -117.166187, 
+                36.970862
+              ], 
+              [
+                -117.500909, 
+                37.220282
+              ], 
+              [
+                -117.832726, 
+                37.464929
+              ], 
+              [
+                -118.039849, 
+                37.615245
+              ], 
+              [
+                -118.039798, 
+                37.615273
+              ], 
+              [
+                -118.428581, 
+                37.895613
+              ], 
+              [
+                -118.746598, 
+                38.124926
+              ], 
+              [
+                -119.125982, 
+                38.39317
+              ], 
+              [
+                -119.156863, 
+                38.414743
+              ], 
+              [
+                -119.328498, 
+                38.534648
+              ], 
+              [
+                -119.450623, 
+                38.619965
+              ], 
+              [
+                -119.450612, 
+                38.619964
+              ], 
+              [
+                -119.494022, 
+                38.649734
+              ], 
+              [
+                -119.494183, 
+                38.649852
+              ], 
+              [
+                -119.585437, 
+                38.713212
+              ], 
+              [
+                -119.587066, 
+                38.714345
+              ], 
+              [
+                -119.587679, 
+                38.714734
+              ], 
+              [
+                -119.904315, 
+                38.933324
+              ], 
+              [
+                -120.001014, 
+                38.999574
+              ], 
+              [
+                -120.002461, 
+                39.067489
+              ], 
+              [
+                -120.003402, 
+                39.112687
+              ], 
+              [
+                -120.004504, 
+                39.165599
+              ], 
+              [
+                -120.005746, 
+                39.22521
+              ], 
+              [
+                -120.005743, 
+                39.228664
+              ], 
+              [
+                -120.005414, 
+                39.313345
+              ], 
+              [
+                -120.005413, 
+                39.313848
+              ], 
+              [
+                -120.00532, 
+                39.31635
+              ], 
+              [
+                -120.005318, 
+                39.316479
+              ], 
+              [
+                -120.003117, 
+                39.445045
+              ], 
+              [
+                -120.003116, 
+                39.445113
+              ], 
+              [
+                -120.001319, 
+                39.722416
+              ], 
+              [
+                -120.001319, 
+                39.72242
+              ], 
+              [
+                -120.000502, 
+                39.779956
+              ], 
+              [
+                -120.000607, 
+                39.780779
+              ], 
+              [
+                -119.997291, 
+                40.071803
+              ], 
+              [
+                -119.997175, 
+                40.077245
+              ], 
+              [
+                -119.997234, 
+                40.091591
+              ], 
+              [
+                -119.997124, 
+                40.126363
+              ], 
+              [
+                -119.996183, 
+                40.262461
+              ], 
+              [
+                -119.996182, 
+                40.263532
+              ], 
+              [
+                -119.996155, 
+                40.32125
+              ], 
+              [
+                -119.996155, 
+                40.321838
+              ], 
+              [
+                -119.995926, 
+                40.499901
+              ], 
+              [
+                -119.999231, 
+                40.865899
+              ], 
+              [
+                -119.999232, 
+                40.867454
+              ], 
+              [
+                -119.999358, 
+                40.873101
+              ], 
+              [
+                -119.999866, 
+                41.183974
+              ], 
+              [
+                -119.999168, 
+                41.99454
+              ], 
+              [
+                -119.986678, 
+                41.995842
+              ], 
+              [
+                -119.790087, 
+                41.997544
+              ], 
+              [
+                -119.360177, 
+                41.994384
+              ], 
+              [
+                -119.324182, 
+                41.994278
+              ], 
+              [
+                -118.777228, 
+                41.992671
+              ], 
+              [
+                -118.775869, 
+                41.992692
+              ], 
+              [
+                -118.197189, 
+                41.996995
+              ], 
+              [
+                -117.026222, 
+                42.000252
+              ], 
+              [
+                -117.018294, 
+                41.999358
+              ], 
+              [
+                -116.62677, 
+                41.99775
+              ], 
+              [
+                -116.586937, 
+                41.99737
+              ], 
+              [
+                -116.510452, 
+                41.997096
+              ], 
+              [
+                -116.485823, 
+                41.996861
+              ], 
+              [
+                -116.483094, 
+                41.996885
+              ], 
+              [
+                -116.463528, 
+                41.996547
+              ], 
+              [
+                -116.163931, 
+                41.997555
+              ], 
+              [
+                -116.160833, 
+                41.997508
+              ], 
+              [
+                -116.038602, 
+                41.99746
+              ], 
+              [
+                -116.03857, 
+                41.997413
+              ], 
+              [
+                -116.030754, 
+                41.997399
+              ], 
+              [
+                -116.030758, 
+                41.997383
+              ], 
+              [
+                -116.01896, 
+                41.997762
+              ], 
+              [
+                -116.018945, 
+                41.997722
+              ], 
+              [
+                -116.012219, 
+                41.998048
+              ], 
+              [
+                -116.012212, 
+                41.998035
+              ], 
+              [
+                -115.98688, 
+                41.998534
+              ], 
+              [
+                -115.038256, 
+                41.996025
+              ], 
+              [
+                -115.031783, 
+                41.996008
+              ], 
+              [
+                -114.914187, 
+                41.999909
+              ], 
+              [
+                -114.763825, 
+                41.999909
+              ], 
+              [
+                -114.598267, 
+                41.994511
+              ], 
+              [
+                -114.498259, 
+                41.994599
+              ], 
+              [
+                -114.498243, 
+                41.994636
+              ], 
+              [
+                -114.281854, 
+                41.994264
+              ], 
+              [
+                -114.107428, 
+                41.993965
+              ], 
+              [
+                -114.107259, 
+                41.993831
+              ], 
+              [
+                -114.061763, 
+                41.993939
+              ], 
+              [
+                -114.061774, 
+                41.993797
+              ], 
+              [
+                -114.048257, 
+                41.993814
+              ], 
+              [
+                -114.048246, 
+                41.993721
+              ], 
+              [
+                -114.041723, 
+                41.99372
+              ], 
+              [
+                -114.041107, 
+                41.850573
+              ], 
+              [
+                -114.041152, 
+                41.850595
+              ], 
+              [
+                -114.039882, 
+                41.741991
+              ], 
+              [
+                -114.042145, 
+                40.999926
+              ], 
+              [
+                -114.043803, 
+                40.759205
+              ], 
+              [
+                -114.043831, 
+                40.758666
+              ], 
+              [
+                -114.043505, 
+                40.726292
+              ], 
+              [
+                -114.045281, 
+                40.506586
+              ], 
+              [
+                -114.045577, 
+                40.495801
+              ], 
+              [
+                -114.045518, 
+                40.494474
+              ], 
+              [
+                -114.046555, 
+                40.116931
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 41, 
+      "properties": {
+        "CENSUSAREA": 109781.18, 
+        "GEO_ID": "0400000US32", 
+        "ISO": "US-NV", 
+        "LSAD": "", 
+        "NAME": "Nevada", 
+        "NAME_1": "Nevada", 
+        "STATE": "NV"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -70.819549, 
+                43.123231
+              ], 
+              [
+                -70.784108, 
+                43.098963
+              ], 
+              [
+                -70.756397, 
+                43.079988
+              ], 
+              [
+                -70.703936, 
+                43.059621
+              ], 
+              [
+                -70.718936, 
+                43.03235
+              ], 
+              [
+                -70.74457, 
+                43.00009
+              ], 
+              [
+                -70.749024, 
+                42.995467
+              ], 
+              [
+                -70.759975, 
+                42.988592
+              ], 
+              [
+                -70.795596, 
+                42.93629
+              ], 
+              [
+                -70.810069, 
+                42.909549
+              ], 
+              [
+                -70.81461, 
+                42.891346
+              ], 
+              [
+                -70.816321, 
+                42.884487
+              ], 
+              [
+                -70.817296, 
+                42.87229
+              ], 
+              [
+                -70.848625, 
+                42.860939
+              ], 
+              [
+                -70.886136, 
+                42.88261
+              ], 
+              [
+                -70.902768, 
+                42.88653
+              ], 
+              [
+                -70.914886, 
+                42.886564
+              ], 
+              [
+                -70.914899, 
+                42.886589
+              ], 
+              [
+                -70.930799, 
+                42.884589
+              ], 
+              [
+                -70.931699, 
+                42.884189
+              ], 
+              [
+                -70.996901, 
+                42.864589
+              ], 
+              [
+                -71.037901, 
+                42.854089
+              ], 
+              [
+                -71.058407, 
+                42.847009
+              ], 
+              [
+                -71.113858, 
+                42.827865
+              ], 
+              [
+                -71.149703, 
+                42.815489
+              ], 
+              [
+                -71.165603, 
+                42.808689
+              ], 
+              [
+                -71.186104, 
+                42.790689
+              ], 
+              [
+                -71.181803, 
+                42.73759
+              ], 
+              [
+                -71.208137, 
+                42.743273
+              ], 
+              [
+                -71.208227, 
+                42.743294
+              ], 
+              [
+                -71.208302, 
+                42.743314
+              ], 
+              [
+                -71.245504, 
+                42.742589
+              ], 
+              [
+                -71.254532, 
+                42.734136
+              ], 
+              [
+                -71.294205, 
+                42.69699
+              ], 
+              [
+                -71.54252, 
+                42.702726
+              ], 
+              [
+                -71.631814, 
+                42.704788
+              ], 
+              [
+                -71.636214, 
+                42.704888
+              ], 
+              [
+                -71.77251, 
+                42.70831
+              ], 
+              [
+                -71.80545, 
+                42.709137
+              ], 
+              [
+                -71.898714, 
+                42.711478
+              ], 
+              [
+                -71.928811, 
+                42.712234
+              ], 
+              [
+                -72.078463, 
+                42.716364
+              ], 
+              [
+                -72.111068, 
+                42.717264
+              ], 
+              [
+                -72.282968, 
+                42.722008
+              ], 
+              [
+                -72.412011, 
+                42.725569
+              ], 
+              [
+                -72.451257, 
+                42.726653
+              ], 
+              [
+                -72.458519, 
+                42.726853
+              ], 
+              [
+                -72.460195, 
+                42.732066
+              ], 
+              [
+                -72.478453, 
+                42.762296
+              ], 
+              [
+                -72.491122, 
+                42.772465
+              ], 
+              [
+                -72.509506, 
+                42.781183
+              ], 
+              [
+                -72.542784, 
+                42.808482
+              ], 
+              [
+                -72.555693, 
+                42.85638
+              ], 
+              [
+                -72.555768, 
+                42.858153
+              ], 
+              [
+                -72.556112, 
+                42.866252
+              ], 
+              [
+                -72.556214, 
+                42.86695
+              ], 
+              [
+                -72.443762, 
+                43.006245
+              ], 
+              [
+                -72.432661, 
+                43.114077
+              ], 
+              [
+                -72.433097, 
+                43.120021
+              ], 
+              [
+                -72.441904, 
+                43.136615
+              ], 
+              [
+                -72.4521, 
+                43.161414
+              ], 
+              [
+                -72.439407, 
+                43.211322
+              ], 
+              [
+                -72.431187, 
+                43.231786
+              ], 
+              [
+                -72.39715, 
+                43.316515
+              ], 
+              [
+                -72.400511, 
+                43.337073
+              ], 
+              [
+                -72.403949, 
+                43.358098
+              ], 
+              [
+                -72.405253, 
+                43.389992
+              ], 
+              [
+                -72.396948, 
+                43.428925
+              ], 
+              [
+                -72.396934, 
+                43.42899
+              ], 
+              [
+                -72.387852, 
+                43.471567
+              ], 
+              [
+                -72.387642, 
+                43.502481
+              ], 
+              [
+                -72.395825, 
+                43.52056
+              ], 
+              [
+                -72.32962, 
+                43.600201
+              ], 
+              [
+                -72.334745, 
+                43.614519
+              ], 
+              [
+                -72.334401, 
+                43.61925
+              ], 
+              [
+                -72.32966, 
+                43.634648
+              ], 
+              [
+                -72.302867, 
+                43.702718
+              ], 
+              [
+                -72.27118, 
+                43.734138
+              ], 
+              [
+                -72.264245, 
+                43.734158
+              ], 
+              [
+                -72.232713, 
+                43.748286
+              ], 
+              [
+                -72.205717, 
+                43.771143
+              ], 
+              [
+                -72.204792, 
+                43.771926
+              ], 
+              [
+                -72.183743, 
+                43.806644
+              ], 
+              [
+                -72.182203, 
+                43.834032
+              ], 
+              [
+                -72.167224, 
+                43.886113
+              ], 
+              [
+                -72.121002, 
+                43.918956
+              ], 
+              [
+                -72.104421, 
+                43.950536
+              ], 
+              [
+                -72.105594, 
+                43.959029
+              ], 
+              [
+                -72.107042, 
+                43.969513
+              ], 
+              [
+                -72.113078, 
+                43.97279
+              ], 
+              [
+                -72.112813, 
+                43.98802
+              ], 
+              [
+                -72.09071, 
+                44.035211
+              ], 
+              [
+                -72.054675, 
+                44.112147
+              ], 
+              [
+                -72.040082, 
+                44.155748
+              ], 
+              [
+                -72.040082, 
+                44.155749
+              ], 
+              [
+                -72.042087, 
+                44.157633
+              ], 
+              [
+                -72.053021, 
+                44.167903
+              ], 
+              [
+                -72.064285, 
+                44.187888
+              ], 
+              [
+                -72.067774, 
+                44.270976
+              ], 
+              [
+                -72.065434, 
+                44.277235
+              ], 
+              [
+                -72.05888, 
+                44.28624
+              ], 
+              [
+                -72.012173, 
+                44.321408
+              ], 
+              [
+                -72.002314, 
+                44.324871
+              ], 
+              [
+                -71.849465, 
+                44.359295
+              ], 
+              [
+                -71.816065, 
+                44.366817
+              ], 
+              [
+                -71.814388, 
+                44.381932
+              ], 
+              [
+                -71.793924, 
+                44.399271
+              ], 
+              [
+                -71.764537, 
+                44.406403
+              ], 
+              [
+                -71.761966, 
+                44.407027
+              ], 
+              [
+                -71.756091, 
+                44.406401
+              ], 
+              [
+                -71.745011, 
+                44.401359
+              ], 
+              [
+                -71.708934, 
+                44.411611
+              ], 
+              [
+                -71.67995, 
+                44.427908
+              ], 
+              [
+                -71.59948, 
+                44.486455
+              ], 
+              [
+                -71.580263, 
+                44.506509
+              ], 
+              [
+                -71.536251, 
+                44.587939
+              ], 
+              [
+                -71.553156, 
+                44.626645
+              ], 
+              [
+                -71.598656, 
+                44.698005
+              ], 
+              [
+                -71.625323, 
+                44.729718
+              ], 
+              [
+                -71.627358, 
+                44.747544
+              ], 
+              [
+                -71.623924, 
+                44.755135
+              ], 
+              [
+                -71.57252, 
+                44.810074
+              ], 
+              [
+                -71.495844, 
+                44.90498
+              ], 
+              [
+                -71.493985, 
+                44.911312
+              ], 
+              [
+                -71.516814, 
+                44.947588
+              ], 
+              [
+                -71.537784, 
+                44.984298
+              ], 
+              [
+                -71.538592, 
+                44.988182
+              ], 
+              [
+                -71.53698, 
+                44.994177
+              ], 
+              [
+                -71.530091, 
+                44.999656
+              ], 
+              [
+                -71.505, 
+                45.008151
+              ], 
+              [
+                -71.486457, 
+                45.007011
+              ], 
+              [
+                -71.468567, 
+                45.010222
+              ], 
+              [
+                -71.464555, 
+                45.013637
+              ], 
+              [
+                -71.502487, 
+                45.013367
+              ], 
+              [
+                -71.496098, 
+                45.069235
+              ], 
+              [
+                -71.489145, 
+                45.072308
+              ], 
+              [
+                -71.428828, 
+                45.123881
+              ], 
+              [
+                -71.39781, 
+                45.203553
+              ], 
+              [
+                -71.403267, 
+                45.215348
+              ], 
+              [
+                -71.44288, 
+                45.234799
+              ], 
+              [
+                -71.401182, 
+                45.242544
+              ], 
+              [
+                -71.342961, 
+                45.271281
+              ], 
+              [
+                -71.297092, 
+                45.298985
+              ], 
+              [
+                -71.284396, 
+                45.302434
+              ], 
+              [
+                -71.266754, 
+                45.29123
+              ], 
+              [
+                -71.263042, 
+                45.277401
+              ], 
+              [
+                -71.259614, 
+                45.27324
+              ], 
+              [
+                -71.232998, 
+                45.256625
+              ], 
+              [
+                -71.183785, 
+                45.244932
+              ], 
+              [
+                -71.13943, 
+                45.242958
+              ], 
+              [
+                -71.131953, 
+                45.245423
+              ], 
+              [
+                -71.124517, 
+                45.25527
+              ], 
+              [
+                -71.119914, 
+                45.262287
+              ], 
+              [
+                -71.120112, 
+                45.265738
+              ], 
+              [
+                -71.105151, 
+                45.294635
+              ], 
+              [
+                -71.097772, 
+                45.301906
+              ], 
+              [
+                -71.084334, 
+                45.305293
+              ], 
+              [
+                -71.07564, 
+                45.224093
+              ], 
+              [
+                -71.060101, 
+                45.019661
+              ], 
+              [
+                -71.037518, 
+                44.755607
+              ], 
+              [
+                -71.029101, 
+                44.610331
+              ], 
+              [
+                -71.01349, 
+                44.340882
+              ], 
+              [
+                -71.010239, 
+                44.284774
+              ], 
+              [
+                -71.008736, 
+                44.258825
+              ], 
+              [
+                -71.008764, 
+                44.258443
+              ], 
+              [
+                -71.001335, 
+                44.093205
+              ], 
+              [
+                -71.001367, 
+                44.092931
+              ], 
+              [
+                -70.992986, 
+                43.914232
+              ], 
+              [
+                -70.992086, 
+                43.886261
+              ], 
+              [
+                -70.989067, 
+                43.79244
+              ], 
+              [
+                -70.989041, 
+                43.792152
+              ], 
+              [
+                -70.982083, 
+                43.715043
+              ], 
+              [
+                -70.982238, 
+                43.711865
+              ], 
+              [
+                -70.981978, 
+                43.701965
+              ], 
+              [
+                -70.981946, 
+                43.70096
+              ], 
+              [
+                -70.980758, 
+                43.684141
+              ], 
+              [
+                -70.979985, 
+                43.673195
+              ], 
+              [
+                -70.972716, 
+                43.570255
+              ], 
+              [
+                -70.953322, 
+                43.552718
+              ], 
+              [
+                -70.955346, 
+                43.540697
+              ], 
+              [
+                -70.955337, 
+                43.54098
+              ], 
+              [
+                -70.958958, 
+                43.537634
+              ], 
+              [
+                -70.962556, 
+                43.53431
+              ], 
+              [
+                -70.954755, 
+                43.509802
+              ], 
+              [
+                -70.963742, 
+                43.476248
+              ], 
+              [
+                -70.964542, 
+                43.473262
+              ], 
+              [
+                -70.964433, 
+                43.473276
+              ], 
+              [
+                -70.986812, 
+                43.414264
+              ], 
+              [
+                -70.987733, 
+                43.391513
+              ], 
+              [
+                -70.984305, 
+                43.376814
+              ], 
+              [
+                -70.984335, 
+                43.376128
+              ], 
+              [
+                -70.967229, 
+                43.343777
+              ], 
+              [
+                -70.952356, 
+                43.333983
+              ], 
+              [
+                -70.930783, 
+                43.329569
+              ], 
+              [
+                -70.916751, 
+                43.317731
+              ], 
+              [
+                -70.91246, 
+                43.308289
+              ], 
+              [
+                -70.909805, 
+                43.306682
+              ], 
+              [
+                -70.86323, 
+                43.265109
+              ], 
+              [
+                -70.863231, 
+                43.265098
+              ], 
+              [
+                -70.839213, 
+                43.251224
+              ], 
+              [
+                -70.839717, 
+                43.250393
+              ], 
+              [
+                -70.83365, 
+                43.242868
+              ], 
+              [
+                -70.828022, 
+                43.241597
+              ], 
+              [
+                -70.826711, 
+                43.241301
+              ], 
+              [
+                -70.825071, 
+                43.24093
+              ], 
+              [
+                -70.823309, 
+                43.240343
+              ], 
+              [
+                -70.822959, 
+                43.240187
+              ], 
+              [
+                -70.817865, 
+                43.237911
+              ], 
+              [
+                -70.817773, 
+                43.237408
+              ], 
+              [
+                -70.816232, 
+                43.234997
+              ], 
+              [
+                -70.828301, 
+                43.186685
+              ], 
+              [
+                -70.829174, 
+                43.180365
+              ], 
+              [
+                -70.8338, 
+                43.146886
+              ], 
+              [
+                -70.8281, 
+                43.129086
+              ], 
+              [
+                -70.819549, 
+                43.123231
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 42, 
+      "properties": {
+        "CENSUSAREA": 8952.651, 
+        "GEO_ID": "0400000US33", 
+        "ISO": "US-NH", 
+        "LSAD": "", 
+        "NAME": "New Hampshire", 
+        "NAME_1": "New Hampshire", 
+        "STATE": "NH"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -73.773361, 
+                40.859449
+              ], 
+              [
+                -73.770552, 
+                40.86033
+              ], 
+              [
+                -73.766333, 
+                40.857317
+              ], 
+              [
+                -73.765128, 
+                40.854228
+              ], 
+              [
+                -73.766032, 
+                40.844961
+              ], 
+              [
+                -73.769648, 
+                40.84466
+              ], 
+              [
+                -73.773038, 
+                40.848125
+              ], 
+              [
+                -73.773717, 
+                40.854831
+              ], 
+              [
+                -73.773361, 
+                40.859449
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -74.04086, 
+                40.700117
+              ], 
+              [
+                -74.040018, 
+                40.700678
+              ], 
+              [
+                -74.039401, 
+                40.700454
+              ], 
+              [
+                -74.037998, 
+                40.698995
+              ], 
+              [
+                -74.043441, 
+                40.68968
+              ], 
+              [
+                -74.044451, 
+                40.688445
+              ], 
+              [
+                -74.046359, 
+                40.689175
+              ], 
+              [
+                -74.047313, 
+                40.690466
+              ], 
+              [
+                -74.04692, 
+                40.691139
+              ], 
+              [
+                -74.04086, 
+                40.700117
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -74.144428, 
+                40.53516
+              ], 
+              [
+                -74.148697, 
+                40.534489
+              ], 
+              [
+                -74.160859, 
+                40.52679
+              ], 
+              [
+                -74.177986, 
+                40.519603
+              ], 
+              [
+                -74.182157, 
+                40.520634
+              ], 
+              [
+                -74.199923, 
+                40.511729
+              ], 
+              [
+                -74.210474, 
+                40.509448
+              ], 
+              [
+                -74.219787, 
+                40.502603
+              ], 
+              [
+                -74.23324, 
+                40.501299
+              ], 
+              [
+                -74.246688, 
+                40.496103
+              ], 
+              [
+                -74.250188, 
+                40.496703
+              ], 
+              [
+                -74.254588, 
+                40.502303
+              ], 
+              [
+                -74.256088, 
+                40.507903
+              ], 
+              [
+                -74.252702, 
+                40.513895
+              ], 
+              [
+                -74.242888, 
+                40.520903
+              ], 
+              [
+                -74.241732, 
+                40.531273
+              ], 
+              [
+                -74.247808, 
+                40.543396
+              ], 
+              [
+                -74.229002, 
+                40.555041
+              ], 
+              [
+                -74.216997, 
+                40.554991
+              ], 
+              [
+                -74.210887, 
+                40.560902
+              ], 
+              [
+                -74.204054, 
+                40.589336
+              ], 
+              [
+                -74.19682, 
+                40.597037
+              ], 
+              [
+                -74.195407, 
+                40.601806
+              ], 
+              [
+                -74.196096, 
+                40.616169
+              ], 
+              [
+                -74.200994, 
+                40.616906
+              ], 
+              [
+                -74.201812, 
+                40.619507
+              ], 
+              [
+                -74.20058, 
+                40.631448
+              ], 
+              [
+                -74.1894, 
+                40.642121
+              ], 
+              [
+                -74.180191, 
+                40.645521
+              ], 
+              [
+                -74.174085, 
+                40.645109
+              ], 
+              [
+                -74.170187, 
+                40.642201
+              ], 
+              [
+                -74.152973, 
+                40.638886
+              ], 
+              [
+                -74.120186, 
+                40.642201
+              ], 
+              [
+                -74.086485, 
+                40.648601
+              ], 
+              [
+                -74.075884, 
+                40.648101
+              ], 
+              [
+                -74.0697, 
+                40.641216
+              ], 
+              [
+                -74.067598, 
+                40.623865
+              ], 
+              [
+                -74.060345, 
+                40.611999
+              ], 
+              [
+                -74.053125, 
+                40.603678
+              ], 
+              [
+                -74.059184, 
+                40.593502
+              ], 
+              [
+                -74.068184, 
+                40.584102
+              ], 
+              [
+                -74.090797, 
+                40.566463
+              ], 
+              [
+                -74.111471, 
+                40.546908
+              ], 
+              [
+                -74.112585, 
+                40.547603
+              ], 
+              [
+                -74.121672, 
+                40.542691
+              ], 
+              [
+                -74.137241, 
+                40.530076
+              ], 
+              [
+                -74.14023, 
+                40.533738
+              ], 
+              [
+                -74.144428, 
+                40.53516
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -72.132225, 
+                41.104387
+              ], 
+              [
+                -72.128352, 
+                41.108131
+              ], 
+              [
+                -72.126704, 
+                41.115139
+              ], 
+              [
+                -72.084207, 
+                41.101524
+              ], 
+              [
+                -72.081167, 
+                41.09394
+              ], 
+              [
+                -72.086975, 
+                41.058292
+              ], 
+              [
+                -72.095711, 
+                41.05402
+              ], 
+              [
+                -72.0972, 
+                41.054884
+              ], 
+              [
+                -72.097136, 
+                41.075844
+              ], 
+              [
+                -72.103152, 
+                41.086484
+              ], 
+              [
+                -72.1064, 
+                41.088883
+              ], 
+              [
+                -72.12056, 
+                41.093171
+              ], 
+              [
+                -72.139233, 
+                41.092451
+              ], 
+              [
+                -72.141921, 
+                41.094371
+              ], 
+              [
+                -72.142929, 
+                41.097811
+              ], 
+              [
+                -72.140737, 
+                41.100835
+              ], 
+              [
+                -72.132225, 
+                41.104387
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -71.943563, 
+                41.286675
+              ], 
+              [
+                -71.926802, 
+                41.290122
+              ], 
+              [
+                -71.935259, 
+                41.280579
+              ], 
+              [
+                -71.94627, 
+                41.276306
+              ], 
+              [
+                -71.962598, 
+                41.270968
+              ], 
+              [
+                -71.978926, 
+                41.265002
+              ], 
+              [
+                -71.994717, 
+                41.256451
+              ], 
+              [
+                -72.002461, 
+                41.252867
+              ], 
+              [
+                -72.036846, 
+                41.249794
+              ], 
+              [
+                -72.034958, 
+                41.255458
+              ], 
+              [
+                -72.029438, 
+                41.26309
+              ], 
+              [
+                -72.023422, 
+                41.270994
+              ], 
+              [
+                -72.018926, 
+                41.274114
+              ], 
+              [
+                -72.006872, 
+                41.27348
+              ], 
+              [
+                -71.991117, 
+                41.281331
+              ], 
+              [
+                -71.980061, 
+                41.280291
+              ], 
+              [
+                -71.952864, 
+                41.285098
+              ], 
+              [
+                -71.943563, 
+                41.286675
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -73.767176, 
+                40.886299
+              ], 
+              [
+                -73.767076, 
+                40.885399
+              ], 
+              [
+                -73.767076, 
+                40.884799
+              ], 
+              [
+                -73.767076, 
+                40.883499
+              ], 
+              [
+                -73.766276, 
+                40.881099
+              ], 
+              [
+                -73.766976, 
+                40.880099
+              ], 
+              [
+                -73.770876, 
+                40.879299
+              ], 
+              [
+                -73.775276, 
+                40.882199
+              ], 
+              [
+                -73.775176, 
+                40.884199
+              ], 
+              [
+                -73.772776, 
+                40.884599
+              ], 
+              [
+                -73.772276, 
+                40.887499
+              ], 
+              [
+                -73.770576, 
+                40.888399
+              ], 
+              [
+                -73.768276, 
+                40.887599
+              ], 
+              [
+                -73.767276, 
+                40.886899
+              ], 
+              [
+                -73.767176, 
+                40.886299
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -73.403686, 
+                44.153102
+              ], 
+              [
+                -73.429239, 
+                44.079414
+              ], 
+              [
+                -73.437429, 
+                44.046861
+              ], 
+              [
+                -73.43688, 
+                44.042578
+              ], 
+              [
+                -73.410776, 
+                44.026944
+              ], 
+              [
+                -73.405999, 
+                44.016229
+              ], 
+              [
+                -73.405525, 
+                43.948813
+              ], 
+              [
+                -73.407742, 
+                43.929887
+              ], 
+              [
+                -73.397256, 
+                43.905668
+              ], 
+              [
+                -73.388389, 
+                43.832404
+              ], 
+              [
+                -73.379312, 
+                43.808478
+              ], 
+              [
+                -73.379279, 
+                43.808391
+              ], 
+              [
+                -73.357547, 
+                43.785933
+              ], 
+              [
+                -73.350431, 
+                43.771438
+              ], 
+              [
+                -73.360711, 
+                43.753268
+              ], 
+              [
+                -73.370724, 
+                43.735571
+              ], 
+              [
+                -73.403517, 
+                43.685032
+              ], 
+              [
+                -73.408697, 
+                43.67402
+              ], 
+              [
+                -73.421606, 
+                43.646577
+              ], 
+              [
+                -73.431229, 
+                43.588285
+              ], 
+              [
+                -73.428636, 
+                43.583994
+              ], 
+              [
+                -73.400295, 
+                43.568889
+              ], 
+              [
+                -73.375594, 
+                43.61335
+              ], 
+              [
+                -73.366537, 
+                43.623462
+              ], 
+              [
+                -73.306234, 
+                43.628018
+              ], 
+              [
+                -73.302552, 
+                43.625708
+              ], 
+              [
+                -73.245594, 
+                43.540253
+              ], 
+              [
+                -73.242042, 
+                43.534925
+              ], 
+              [
+                -73.247061, 
+                43.514919
+              ], 
+              [
+                -73.252582, 
+                43.370997
+              ], 
+              [
+                -73.252674, 
+                43.370285
+              ], 
+              [
+                -73.252832, 
+                43.363493
+              ], 
+              [
+                -73.253084, 
+                43.354714
+              ], 
+              [
+                -73.254848, 
+                43.314684
+              ], 
+              [
+                -73.259159, 
+                43.216848
+              ], 
+              [
+                -73.269472, 
+                43.030686
+              ], 
+              [
+                -73.274294, 
+                42.943652
+              ], 
+              [
+                -73.274393, 
+                42.942482
+              ], 
+              [
+                -73.274466, 
+                42.940361
+              ], 
+              [
+                -73.278673, 
+                42.83341
+              ], 
+              [
+                -73.285388, 
+                42.834093
+              ], 
+              [
+                -73.290944, 
+                42.80192
+              ], 
+              [
+                -73.276421, 
+                42.746019
+              ], 
+              [
+                -73.264957, 
+                42.74594
+              ], 
+              [
+                -73.307004, 
+                42.632653
+              ], 
+              [
+                -73.352527, 
+                42.510002
+              ], 
+              [
+                -73.410647, 
+                42.351738
+              ], 
+              [
+                -73.508142, 
+                42.086257
+              ], 
+              [
+                -73.496879, 
+                42.049675
+              ], 
+              [
+                -73.487314, 
+                42.049638
+              ], 
+              [
+                -73.504944, 
+                41.824285
+              ], 
+              [
+                -73.505008, 
+                41.823773
+              ], 
+              [
+                -73.510171, 
+                41.758686
+              ], 
+              [
+                -73.517473, 
+                41.666646
+              ], 
+              [
+                -73.521457, 
+                41.616429
+              ], 
+              [
+                -73.530067, 
+                41.527194
+              ], 
+              [
+                -73.533969, 
+                41.479693
+              ], 
+              [
+                -73.534055, 
+                41.478968
+              ], 
+              [
+                -73.53415, 
+                41.47806
+              ], 
+              [
+                -73.534269, 
+                41.476911
+              ], 
+              [
+                -73.534269, 
+                41.476394
+              ], 
+              [
+                -73.534369, 
+                41.475894
+              ], 
+              [
+                -73.535769, 
+                41.457159
+              ], 
+              [
+                -73.535857, 
+                41.455709
+              ], 
+              [
+                -73.535885, 
+                41.455236
+              ], 
+              [
+                -73.535986, 
+                41.45306
+              ], 
+              [
+                -73.536067, 
+                41.451331
+              ], 
+              [
+                -73.536969, 
+                41.441094
+              ], 
+              [
+                -73.537469, 
+                41.43589
+              ], 
+              [
+                -73.537673, 
+                41.433905
+              ], 
+              [
+                -73.543641, 
+                41.376778
+              ], 
+              [
+                -73.544728, 
+                41.366375
+              ], 
+              [
+                -73.550961, 
+                41.295422
+              ], 
+              [
+                -73.482709, 
+                41.21276
+              ], 
+              [
+                -73.509487, 
+                41.200814
+              ], 
+              [
+                -73.514617, 
+                41.198434
+              ], 
+              [
+                -73.614407, 
+                41.153001
+              ], 
+              [
+                -73.632153, 
+                41.144921
+              ], 
+              [
+                -73.639672, 
+                41.141495
+              ], 
+              [
+                -73.727775, 
+                41.100696
+              ], 
+              [
+                -73.694273, 
+                41.059296
+              ], 
+              [
+                -73.687173, 
+                41.050697
+              ], 
+              [
+                -73.679973, 
+                41.041797
+              ], 
+              [
+                -73.670472, 
+                41.030097
+              ], 
+              [
+                -73.655371, 
+                41.012797
+              ], 
+              [
+                -73.654671, 
+                41.011697
+              ], 
+              [
+                -73.657336, 
+                40.985171
+              ], 
+              [
+                -73.655972, 
+                40.979597
+              ], 
+              [
+                -73.659972, 
+                40.968398
+              ], 
+              [
+                -73.662072, 
+                40.966198
+              ], 
+              [
+                -73.664472, 
+                40.967198
+              ], 
+              [
+                -73.678073, 
+                40.962798
+              ], 
+              [
+                -73.683273, 
+                40.948998
+              ], 
+              [
+                -73.686473, 
+                40.945198
+              ], 
+              [
+                -73.697974, 
+                40.939598
+              ], 
+              [
+                -73.721739, 
+                40.932037
+              ], 
+              [
+                -73.731775, 
+                40.924999
+              ], 
+              [
+                -73.756776, 
+                40.912599
+              ], 
+              [
+                -73.781338, 
+                40.885447
+              ], 
+              [
+                -73.783545, 
+                40.88104
+              ], 
+              [
+                -73.784803, 
+                40.878528
+              ], 
+              [
+                -73.785502, 
+                40.869079
+              ], 
+              [
+                -73.788786, 
+                40.858485
+              ], 
+              [
+                -73.78806, 
+                40.854131
+              ], 
+              [
+                -73.784754, 
+                40.851793
+              ], 
+              [
+                -73.782174, 
+                40.847358
+              ], 
+              [
+                -73.782093, 
+                40.844616
+              ], 
+              [
+                -73.782254, 
+                40.842359
+              ], 
+              [
+                -73.781206, 
+                40.838891
+              ], 
+              [
+                -73.782577, 
+                40.837601
+              ], 
+              [
+                -73.783867, 
+                40.836795
+              ], 
+              [
+                -73.785399, 
+                40.838004
+              ], 
+              [
+                -73.788221, 
+                40.842036
+              ], 
+              [
+                -73.791044, 
+                40.846552
+              ], 
+              [
+                -73.789512, 
+                40.85139
+              ], 
+              [
+                -73.792253, 
+                40.855825
+              ], 
+              [
+                -73.793785, 
+                40.855583
+              ], 
+              [
+                -73.797252, 
+                40.852196
+              ], 
+              [
+                -73.799543, 
+                40.848027
+              ], 
+              [
+                -73.806914, 
+                40.849501
+              ], 
+              [
+                -73.81281, 
+                40.846737
+              ], 
+              [
+                -73.815574, 
+                40.835129
+              ], 
+              [
+                -73.815205, 
+                40.831075
+              ], 
+              [
+                -73.811889, 
+                40.825363
+              ], 
+              [
+                -73.804518, 
+                40.818546
+              ], 
+              [
+                -73.797332, 
+                40.815597
+              ], 
+              [
+                -73.785964, 
+                40.800862
+              ], 
+              [
+                -73.781369, 
+                40.794907
+              ], 
+              [
+                -73.776032, 
+                40.795275
+              ], 
+              [
+                -73.768431, 
+                40.800704
+              ], 
+              [
+                -73.768301, 
+                40.800797
+              ], 
+              [
+                -73.754032, 
+                40.820941
+              ], 
+              [
+                -73.7544, 
+                40.826837
+              ], 
+              [
+                -73.728275, 
+                40.8529
+              ], 
+              [
+                -73.726675, 
+                40.8568
+              ], 
+              [
+                -73.730675, 
+                40.8654
+              ], 
+              [
+                -73.729575, 
+                40.8665
+              ], 
+              [
+                -73.713674, 
+                40.870099
+              ], 
+              [
+                -73.675573, 
+                40.856999
+              ], 
+              [
+                -73.670692, 
+                40.858708
+              ], 
+              [
+                -73.655872, 
+                40.863899
+              ], 
+              [
+                -73.654372, 
+                40.878199
+              ], 
+              [
+                -73.641072, 
+                40.892599
+              ], 
+              [
+                -73.633771, 
+                40.898198
+              ], 
+              [
+                -73.626972, 
+                40.899397
+              ], 
+              [
+                -73.617571, 
+                40.897898
+              ], 
+              [
+                -73.60187, 
+                40.902798
+              ], 
+              [
+                -73.59517, 
+                40.907298
+              ], 
+              [
+                -73.569969, 
+                40.915398
+              ], 
+              [
+                -73.566169, 
+                40.915798
+              ], 
+              [
+                -73.548068, 
+                40.908698
+              ], 
+              [
+                -73.519267, 
+                40.914298
+              ], 
+              [
+                -73.514999, 
+                40.912821
+              ], 
+              [
+                -73.499941, 
+                40.918166
+              ], 
+              [
+                -73.497061, 
+                40.922801
+              ], 
+              [
+                -73.496642, 
+                40.923476
+              ], 
+              [
+                -73.491765, 
+                40.942097
+              ], 
+              [
+                -73.485365, 
+                40.946397
+              ], 
+              [
+                -73.484798, 
+                40.946065
+              ], 
+              [
+                -73.48011, 
+                40.943319
+              ], 
+              [
+                -73.478365, 
+                40.942297
+              ], 
+              [
+                -73.47441, 
+                40.941056
+              ], 
+              [
+                -73.463708, 
+                40.937697
+              ], 
+              [
+                -73.460603, 
+                40.937375
+              ], 
+              [
+                -73.456523, 
+                40.936953
+              ], 
+              [
+                -73.445026, 
+                40.935763
+              ], 
+              [
+                -73.437509, 
+                40.934985
+              ], 
+              [
+                -73.436664, 
+                40.934897
+              ], 
+              [
+                -73.429863, 
+                40.929797
+              ], 
+              [
+                -73.429665, 
+                40.928203
+              ], 
+              [
+                -73.428836, 
+                40.921506
+              ], 
+              [
+                -73.406074, 
+                40.920235
+              ], 
+              [
+                -73.402963, 
+                40.925097
+              ], 
+              [
+                -73.403462, 
+                40.942197
+              ], 
+              [
+                -73.400862, 
+                40.953997
+              ], 
+              [
+                -73.399762, 
+                40.955197
+              ], 
+              [
+                -73.392862, 
+                40.955297
+              ], 
+              [
+                -73.374462, 
+                40.937597
+              ], 
+              [
+                -73.365961, 
+                40.931697
+              ], 
+              [
+                -73.352761, 
+                40.926697
+              ], 
+              [
+                -73.345561, 
+                40.925297
+              ], 
+              [
+                -73.344161, 
+                40.927297
+              ], 
+              [
+                -73.33136, 
+                40.929597
+              ], 
+              [
+                -73.295061, 
+                40.924497
+              ], 
+              [
+                -73.295059, 
+                40.924497
+              ], 
+              [
+                -73.229285, 
+                40.905121
+              ], 
+              [
+                -73.148994, 
+                40.928898
+              ], 
+              [
+                -73.146242, 
+                40.935074
+              ], 
+              [
+                -73.144673, 
+                40.955842
+              ], 
+              [
+                -73.140785, 
+                40.966178
+              ], 
+              [
+                -73.110368, 
+                40.971938
+              ], 
+              [
+                -73.081582, 
+                40.973058
+              ], 
+              [
+                -73.043701, 
+                40.962185
+              ], 
+              [
+                -73.040445, 
+                40.964498
+              ], 
+              [
+                -72.995931, 
+                40.966498
+              ], 
+              [
+                -72.955163, 
+                40.966146
+              ], 
+              [
+                -72.913834, 
+                40.962466
+              ], 
+              [
+                -72.88825, 
+                40.962962
+              ], 
+              [
+                -72.826057, 
+                40.969794
+              ], 
+              [
+                -72.774104, 
+                40.965314
+              ], 
+              [
+                -72.760031, 
+                40.975334
+              ], 
+              [
+                -72.714425, 
+                40.985596
+              ], 
+              [
+                -72.689341, 
+                40.989776
+              ], 
+              [
+                -72.665018, 
+                40.987496
+              ], 
+              [
+                -72.635374, 
+                40.990536
+              ], 
+              [
+                -72.585327, 
+                40.997587
+              ], 
+              [
+                -72.565406, 
+                41.009508
+              ], 
+              [
+                -72.560974, 
+                41.015444
+              ], 
+              [
+                -72.549853, 
+                41.019844
+              ], 
+              [
+                -72.521548, 
+                41.037652
+              ], 
+              [
+                -72.477306, 
+                41.052212
+              ], 
+              [
+                -72.460778, 
+                41.067012
+              ], 
+              [
+                -72.445242, 
+                41.086116
+              ], 
+              [
+                -72.417945, 
+                41.087955
+              ], 
+              [
+                -72.397, 
+                41.096307
+              ], 
+              [
+                -72.356087, 
+                41.133635
+              ], 
+              [
+                -72.333351, 
+                41.138018
+              ], 
+              [
+                -72.322381, 
+                41.140664
+              ], 
+              [
+                -72.291109, 
+                41.155874
+              ], 
+              [
+                -72.278789, 
+                41.158722
+              ], 
+              [
+                -72.272997, 
+                41.15501
+              ], 
+              [
+                -72.2681, 
+                41.154146
+              ], 
+              [
+                -72.245348, 
+                41.161217
+              ], 
+              [
+                -72.238211, 
+                41.15949
+              ], 
+              [
+                -72.237731, 
+                41.156434
+              ], 
+              [
+                -72.253572, 
+                41.137138
+              ], 
+              [
+                -72.265124, 
+                41.128482
+              ], 
+              [
+                -72.300374, 
+                41.112274
+              ], 
+              [
+                -72.300044, 
+                41.132059
+              ], 
+              [
+                -72.306381, 
+                41.13784
+              ], 
+              [
+                -72.312734, 
+                41.138546
+              ], 
+              [
+                -72.318146, 
+                41.137134
+              ], 
+              [
+                -72.32663, 
+                41.132162
+              ], 
+              [
+                -72.335271, 
+                41.120274
+              ], 
+              [
+                -72.335177, 
+                41.106917
+              ], 
+              [
+                -72.317238, 
+                41.088659
+              ], 
+              [
+                -72.297718, 
+                41.081042
+              ], 
+              [
+                -72.280373, 
+                41.080402
+              ], 
+              [
+                -72.276709, 
+                41.076722
+              ], 
+              [
+                -72.283093, 
+                41.067874
+              ], 
+              [
+                -72.273657, 
+                41.051533
+              ], 
+              [
+                -72.260515, 
+                41.042065
+              ], 
+              [
+                -72.241252, 
+                41.04477
+              ], 
+              [
+                -72.229364, 
+                41.044355
+              ], 
+              [
+                -72.217476, 
+                41.040611
+              ], 
+              [
+                -72.201859, 
+                41.032275
+              ], 
+              [
+                -72.190563, 
+                41.032579
+              ], 
+              [
+                -72.183266, 
+                41.035619
+              ], 
+              [
+                -72.17949, 
+                41.038435
+              ], 
+              [
+                -72.174882, 
+                41.046147
+              ], 
+              [
+                -72.162898, 
+                41.053187
+              ], 
+              [
+                -72.16037, 
+                41.053827
+              ], 
+              [
+                -72.153857, 
+                41.051859
+              ], 
+              [
+                -72.137297, 
+                41.039684
+              ], 
+              [
+                -72.135137, 
+                41.031284
+              ], 
+              [
+                -72.137409, 
+                41.023908
+              ], 
+              [
+                -72.116368, 
+                40.999796
+              ], 
+              [
+                -72.109008, 
+                40.994084
+              ], 
+              [
+                -72.10216, 
+                40.991509
+              ], 
+              [
+                -72.095456, 
+                40.991349
+              ], 
+              [
+                -72.083039, 
+                40.996453
+              ], 
+              [
+                -72.079951, 
+                41.003429
+              ], 
+              [
+                -72.079208, 
+                41.006437
+              ], 
+              [
+                -72.076175, 
+                41.009093
+              ], 
+              [
+                -72.061448, 
+                41.009442
+              ], 
+              [
+                -72.057934, 
+                41.004789
+              ], 
+              [
+                -72.057075, 
+                41.004893
+              ], 
+              [
+                -72.055188, 
+                41.005236
+              ], 
+              [
+                -72.051585, 
+                41.006437
+              ], 
+              [
+                -72.049526, 
+                41.009697
+              ], 
+              [
+                -72.051549, 
+                41.015741
+              ], 
+              [
+                -72.051928, 
+                41.020506
+              ], 
+              [
+                -72.047468, 
+                41.022565
+              ], 
+              [
+                -72.035792, 
+                41.020759
+              ], 
+              [
+                -72.015013, 
+                41.028348
+              ], 
+              [
+                -71.99926, 
+                41.039669
+              ], 
+              [
+                -71.96704, 
+                41.047772
+              ], 
+              [
+                -71.961078, 
+                41.054277
+              ], 
+              [
+                -71.960355, 
+                41.059878
+              ], 
+              [
+                -71.961563, 
+                41.064021
+              ], 
+              [
+                -71.959595, 
+                41.071237
+              ], 
+              [
+                -71.93825, 
+                41.077413
+              ], 
+              [
+                -71.919385, 
+                41.080517
+              ], 
+              [
+                -71.899256, 
+                41.080837
+              ], 
+              [
+                -71.895496, 
+                41.077381
+              ], 
+              [
+                -71.889543, 
+                41.075701
+              ], 
+              [
+                -71.869558, 
+                41.075046
+              ], 
+              [
+                -71.86447, 
+                41.076918
+              ], 
+              [
+                -71.857494, 
+                41.073558
+              ], 
+              [
+                -71.856214, 
+                41.070598
+              ], 
+              [
+                -71.87391, 
+                41.052278
+              ], 
+              [
+                -71.903736, 
+                41.040166
+              ], 
+              [
+                -71.935689, 
+                41.034182
+              ], 
+              [
+                -72.029357, 
+                40.999909
+              ], 
+              [
+                -72.114448, 
+                40.972085
+              ], 
+              [
+                -72.39585, 
+                40.86666
+              ], 
+              [
+                -72.469996, 
+                40.84274
+              ], 
+              [
+                -72.573441, 
+                40.813251
+              ], 
+              [
+                -72.745208, 
+                40.767091
+              ], 
+              [
+                -72.753112, 
+                40.763571
+              ], 
+              [
+                -72.757176, 
+                40.764371
+              ], 
+              [
+                -72.768152, 
+                40.761587
+              ], 
+              [
+                -72.863164, 
+                40.732962
+              ], 
+              [
+                -72.923214, 
+                40.713282
+              ], 
+              [
+                -73.012545, 
+                40.679651
+              ], 
+              [
+                -73.054963, 
+                40.666371
+              ], 
+              [
+                -73.145266, 
+                40.645491
+              ], 
+              [
+                -73.20844, 
+                40.630884
+              ], 
+              [
+                -73.23914, 
+                40.6251
+              ], 
+              [
+                -73.262106, 
+                40.621476
+              ], 
+              [
+                -73.264493, 
+                40.621437
+              ], 
+              [
+                -73.306396, 
+                40.620756
+              ], 
+              [
+                -73.30974, 
+                40.622532
+              ], 
+              [
+                -73.319257, 
+                40.635795
+              ], 
+              [
+                -73.351465, 
+                40.6305
+              ], 
+              [
+                -73.391967, 
+                40.617501
+              ], 
+              [
+                -73.423806, 
+                40.609869
+              ], 
+              [
+                -73.450369, 
+                40.603501
+              ], 
+              [
+                -73.562372, 
+                40.583703
+              ], 
+              [
+                -73.583773, 
+                40.586703
+              ], 
+              [
+                -73.610873, 
+                40.587703
+              ], 
+              [
+                -73.646674, 
+                40.582804
+              ], 
+              [
+                -73.701138, 
+                40.58361
+              ], 
+              [
+                -73.754776, 
+                40.584404
+              ], 
+              [
+                -73.754323, 
+                40.586357
+              ], 
+              [
+                -73.753349, 
+                40.59056
+              ], 
+              [
+                -73.774928, 
+                40.590759
+              ], 
+              [
+                -73.80143, 
+                40.585659
+              ], 
+              [
+                -73.806834, 
+                40.584619
+              ], 
+              [
+                -73.834408, 
+                40.577201
+              ], 
+              [
+                -73.878906, 
+                40.560888
+              ], 
+              [
+                -73.934512, 
+                40.545175
+              ], 
+              [
+                -73.934466, 
+                40.555281
+              ], 
+              [
+                -73.932729, 
+                40.560266
+              ], 
+              [
+                -73.935686, 
+                40.564914
+              ], 
+              [
+                -73.938598, 
+                40.566161
+              ], 
+              [
+                -73.944558, 
+                40.568716
+              ], 
+              [
+                -73.95005, 
+                40.573363
+              ], 
+              [
+                -73.95938, 
+                40.572682
+              ], 
+              [
+                -73.991346, 
+                40.57035
+              ], 
+              [
+                -74.002056, 
+                40.570623
+              ], 
+              [
+                -74.00903, 
+                40.572846
+              ], 
+              [
+                -74.012022, 
+                40.574528
+              ], 
+              [
+                -74.012996, 
+                40.578169
+              ], 
+              [
+                -74.007276, 
+                40.583616
+              ], 
+              [
+                -74.00635, 
+                40.584767
+              ], 
+              [
+                -74.001591, 
+                40.590684
+              ], 
+              [
+                -74.003281, 
+                40.595754
+              ], 
+              [
+                -74.010926, 
+                40.600789
+              ], 
+              [
+                -74.032856, 
+                40.604421
+              ], 
+              [
+                -74.03959, 
+                40.612934
+              ], 
+              [
+                -74.042412, 
+                40.624847
+              ], 
+              [
+                -74.038336, 
+                40.637074
+              ], 
+              [
+                -74.035868, 
+                40.640776
+              ], 
+              [
+                -74.032066, 
+                40.646479
+              ], 
+              [
+                -74.018272, 
+                40.659019
+              ], 
+              [
+                -74.020467, 
+                40.67877
+              ], 
+              [
+                -74.022911, 
+                40.681267
+              ], 
+              [
+                -74.023982, 
+                40.68236
+              ], 
+              [
+                -74.024827, 
+                40.687007
+              ], 
+              [
+                -74.021721, 
+                40.693504
+              ], 
+              [
+                -74.01849, 
+                40.695457
+              ], 
+              [
+                -74.0168, 
+                40.701794
+              ], 
+              [
+                -74.019526, 
+                40.706985
+              ], 
+              [
+                -74.024543, 
+                40.709436
+              ], 
+              [
+                -74.013784, 
+                40.756601
+              ], 
+              [
+                -74.009184, 
+                40.763601
+              ], 
+              [
+                -74.000905, 
+                40.776488
+              ], 
+              [
+                -73.993029, 
+                40.788746
+              ], 
+              [
+                -73.986864, 
+                40.798344
+              ], 
+              [
+                -73.948281, 
+                40.858399
+              ], 
+              [
+                -73.938081, 
+                40.874699
+              ], 
+              [
+                -73.933408, 
+                40.882075
+              ], 
+              [
+                -73.933406, 
+                40.882078
+              ], 
+              [
+                -73.92747, 
+                40.895682
+              ], 
+              [
+                -73.919705, 
+                40.913478
+              ], 
+              [
+                -73.917905, 
+                40.917577
+              ], 
+              [
+                -73.893979, 
+                40.997197
+              ], 
+              [
+                -73.90268, 
+                40.997297
+              ], 
+              [
+                -73.91188, 
+                41.001297
+              ], 
+              [
+                -74.041049, 
+                41.059086
+              ], 
+              [
+                -74.041054, 
+                41.059088
+              ], 
+              [
+                -74.092486, 
+                41.081896
+              ], 
+              [
+                -74.096786, 
+                41.083796
+              ], 
+              [
+                -74.213373, 
+                41.133828
+              ], 
+              [
+                -74.234473, 
+                41.142883
+              ], 
+              [
+                -74.365664, 
+                41.2034
+              ], 
+              [
+                -74.392098, 
+                41.215594
+              ], 
+              [
+                -74.457584, 
+                41.248225
+              ], 
+              [
+                -74.694914, 
+                41.357423
+              ], 
+              [
+                -74.689767, 
+                41.361558
+              ], 
+              [
+                -74.691129, 
+                41.367324
+              ], 
+              [
+                -74.752562, 
+                41.426518
+              ], 
+              [
+                -74.75595, 
+                41.426804
+              ], 
+              [
+                -74.799165, 
+                41.430451
+              ], 
+              [
+                -74.876721, 
+                41.440338
+              ], 
+              [
+                -74.891948, 
+                41.448853
+              ], 
+              [
+                -74.912517, 
+                41.475605
+              ], 
+              [
+                -74.93976, 
+                41.483371
+              ], 
+              [
+                -74.984226, 
+                41.506299
+              ], 
+              [
+                -75.04049, 
+                41.569688
+              ], 
+              [
+                -75.050074, 
+                41.606893
+              ], 
+              [
+                -75.053077, 
+                41.618552
+              ], 
+              [
+                -75.048199, 
+                41.632011
+              ], 
+              [
+                -75.053431, 
+                41.752538
+              ], 
+              [
+                -75.090799, 
+                41.811991
+              ], 
+              [
+                -75.114399, 
+                41.843583
+              ], 
+              [
+                -75.140241, 
+                41.852078
+              ], 
+              [
+                -75.146446, 
+                41.850899
+              ], 
+              [
+                -75.263005, 
+                41.885109
+              ], 
+              [
+                -75.279094, 
+                41.938917
+              ], 
+              [
+                -75.292589, 
+                41.953897
+              ], 
+              [
+                -75.341868, 
+                41.993262
+              ], 
+              [
+                -75.359579, 
+                41.999445
+              ], 
+              [
+                -75.431961, 
+                41.999363
+              ], 
+              [
+                -75.436216, 
+                41.999353
+              ], 
+              [
+                -75.477144, 
+                41.999407
+              ], 
+              [
+                -75.48315, 
+                41.999259
+              ], 
+              [
+                -75.483738, 
+                41.999244
+              ], 
+              [
+                -75.98025, 
+                41.999035
+              ], 
+              [
+                -75.983082, 
+                41.999035
+              ], 
+              [
+                -76.10584, 
+                41.998858
+              ], 
+              [
+                -76.123696, 
+                41.998954
+              ], 
+              [
+                -76.131201, 
+                41.998954
+              ], 
+              [
+                -76.145519, 
+                41.998913
+              ], 
+              [
+                -76.343722, 
+                41.998346
+              ], 
+              [
+                -76.349898, 
+                41.99841
+              ], 
+              [
+                -76.462155, 
+                41.998934
+              ], 
+              [
+                -76.46654, 
+                41.999025
+              ], 
+              [
+                -76.557624, 
+                42.000149
+              ], 
+              [
+                -76.558118, 
+                42.000155
+              ], 
+              [
+                -76.815878, 
+                42.001673
+              ], 
+              [
+                -76.835079, 
+                42.001773
+              ], 
+              [
+                -76.920784, 
+                42.001774
+              ], 
+              [
+                -76.921884, 
+                42.001674
+              ], 
+              [
+                -76.927084, 
+                42.001674
+              ], 
+              [
+                -76.937084, 
+                42.001674
+              ], 
+              [
+                -76.942585, 
+                42.001574
+              ], 
+              [
+                -76.965686, 
+                42.001274
+              ], 
+              [
+                -76.965728, 
+                42.001274
+              ], 
+              [
+                -77.007536, 
+                42.000819
+              ], 
+              [
+                -77.007635, 
+                42.000848
+              ], 
+              [
+                -77.124693, 
+                41.999395
+              ], 
+              [
+                -77.505308, 
+                42.00007
+              ], 
+              [
+                -77.610028, 
+                41.999519
+              ], 
+              [
+                -77.749931, 
+                41.998782
+              ], 
+              [
+                -77.822799, 
+                41.998547
+              ], 
+              [
+                -77.83203, 
+                41.998524
+              ], 
+              [
+                -78.030963, 
+                41.999392
+              ], 
+              [
+                -78.031177, 
+                41.999415
+              ], 
+              [
+                -78.12473, 
+                42.000452
+              ], 
+              [
+                -78.206606, 
+                41.999989
+              ], 
+              [
+                -78.308128, 
+                41.999415
+              ], 
+              [
+                -78.59665, 
+                41.999877
+              ], 
+              [
+                -78.874759, 
+                41.997559
+              ], 
+              [
+                -78.918854, 
+                41.997961
+              ], 
+              [
+                -79.052473, 
+                41.999179
+              ], 
+              [
+                -79.061265, 
+                41.999259
+              ], 
+              [
+                -79.538445, 
+                41.998527
+              ], 
+              [
+                -79.551385, 
+                41.998666
+              ], 
+              [
+                -79.610839, 
+                41.998989
+              ], 
+              [
+                -79.625301, 
+                41.999068
+              ], 
+              [
+                -79.625287, 
+                41.999003
+              ], 
+              [
+                -79.761374, 
+                41.999067
+              ], 
+              [
+                -79.762122, 
+                42.131246
+              ], 
+              [
+                -79.761861, 
+                42.150712
+              ], 
+              [
+                -79.761759, 
+                42.162675
+              ], 
+              [
+                -79.761921, 
+                42.173319
+              ], 
+              [
+                -79.761929, 
+                42.179693
+              ], 
+              [
+                -79.761833, 
+                42.183627
+              ], 
+              [
+                -79.762152, 
+                42.243054
+              ], 
+              [
+                -79.761964, 
+                42.251354
+              ], 
+              [
+                -79.761951, 
+                42.26986
+              ], 
+              [
+                -79.717825, 
+                42.284711
+              ], 
+              [
+                -79.645358, 
+                42.315631
+              ], 
+              [
+                -79.593992, 
+                42.341641
+              ], 
+              [
+                -79.546262, 
+                42.363417
+              ], 
+              [
+                -79.510999, 
+                42.382373
+              ], 
+              [
+                -79.474794, 
+                42.404291
+              ], 
+              [
+                -79.453533, 
+                42.411157
+              ], 
+              [
+                -79.429119, 
+                42.42838
+              ], 
+              [
+                -79.405458, 
+                42.453281
+              ], 
+              [
+                -79.381943, 
+                42.466491
+              ], 
+              [
+                -79.36213, 
+                42.480195
+              ], 
+              [
+                -79.351989, 
+                42.48892
+              ], 
+              [
+                -79.342316, 
+                42.489664
+              ], 
+              [
+                -79.335129, 
+                42.488321
+              ], 
+              [
+                -79.331483, 
+                42.489076
+              ], 
+              [
+                -79.323079, 
+                42.494795
+              ], 
+              [
+                -79.31774, 
+                42.499884
+              ], 
+              [
+                -79.283364, 
+                42.511228
+              ], 
+              [
+                -79.264624, 
+                42.523159
+              ], 
+              [
+                -79.242889, 
+                42.531757
+              ], 
+              [
+                -79.223195, 
+                42.536087
+              ], 
+              [
+                -79.193232, 
+                42.545881
+              ], 
+              [
+                -79.148723, 
+                42.553672
+              ], 
+              [
+                -79.138569, 
+                42.564462
+              ], 
+              [
+                -79.136725, 
+                42.569693
+              ], 
+              [
+                -79.12963, 
+                42.589824
+              ], 
+              [
+                -79.126261, 
+                42.590937
+              ], 
+              [
+                -79.121921, 
+                42.594234
+              ], 
+              [
+                -79.113713, 
+                42.605994
+              ], 
+              [
+                -79.111361, 
+                42.613358
+              ], 
+              [
+                -79.078761, 
+                42.640058
+              ], 
+              [
+                -79.073261, 
+                42.639958
+              ], 
+              [
+                -79.06376, 
+                42.644758
+              ], 
+              [
+                -79.062261, 
+                42.668358
+              ], 
+              [
+                -79.04886, 
+                42.689158
+              ], 
+              [
+                -79.01886, 
+                42.701558
+              ], 
+              [
+                -79.00616, 
+                42.704558
+              ], 
+              [
+                -78.991159, 
+                42.705358
+              ], 
+              [
+                -78.944158, 
+                42.731958
+              ], 
+              [
+                -78.918157, 
+                42.737258
+              ], 
+              [
+                -78.868556, 
+                42.770258
+              ], 
+              [
+                -78.853455, 
+                42.783958
+              ], 
+              [
+                -78.851355, 
+                42.791758
+              ], 
+              [
+                -78.856456, 
+                42.800258
+              ], 
+              [
+                -78.859356, 
+                42.800658
+              ], 
+              [
+                -78.863656, 
+                42.813058
+              ], 
+              [
+                -78.865656, 
+                42.826758
+              ], 
+              [
+                -78.860445, 
+                42.83511
+              ], 
+              [
+                -78.859456, 
+                42.841358
+              ], 
+              [
+                -78.865592, 
+                42.852358
+              ], 
+              [
+                -78.872227, 
+                42.853306
+              ], 
+              [
+                -78.882557, 
+                42.867258
+              ], 
+              [
+                -78.891655, 
+                42.884845
+              ], 
+              [
+                -78.912458, 
+                42.886557
+              ], 
+              [
+                -78.905758, 
+                42.899957
+              ], 
+              [
+                -78.905659, 
+                42.923357
+              ], 
+              [
+                -78.909159, 
+                42.933257
+              ], 
+              [
+                -78.918859, 
+                42.946857
+              ], 
+              [
+                -78.921206, 
+                42.948422
+              ], 
+              [
+                -78.93236, 
+                42.955857
+              ], 
+              [
+                -78.972524, 
+                42.966804
+              ], 
+              [
+                -79.011563, 
+                42.985256
+              ], 
+              [
+                -79.019964, 
+                42.994756
+              ], 
+              [
+                -79.028353, 
+                43.066897
+              ], 
+              [
+                -79.028653, 
+                43.069474
+              ], 
+              [
+                -79.058399, 
+                43.075231
+              ], 
+              [
+                -79.066269, 
+                43.09097
+              ], 
+              [
+                -79.056767, 
+                43.126855
+              ], 
+              [
+                -79.044066, 
+                43.138055
+              ], 
+              [
+                -79.042366, 
+                43.143655
+              ], 
+              [
+                -79.058399, 
+                43.238924
+              ], 
+              [
+                -79.070469, 
+                43.262454
+              ], 
+              [
+                -79.019848, 
+                43.273686
+              ], 
+              [
+                -78.971866, 
+                43.281254
+              ], 
+              [
+                -78.930764, 
+                43.293254
+              ], 
+              [
+                -78.859362, 
+                43.310955
+              ], 
+              [
+                -78.836261, 
+                43.318455
+              ], 
+              [
+                -78.834061, 
+                43.317555
+              ], 
+              [
+                -78.777759, 
+                43.327055
+              ], 
+              [
+                -78.747158, 
+                43.334555
+              ], 
+              [
+                -78.696856, 
+                43.341255
+              ], 
+              [
+                -78.634346, 
+                43.357624
+              ], 
+              [
+                -78.547395, 
+                43.369541
+              ], 
+              [
+                -78.488857, 
+                43.374763
+              ], 
+              [
+                -78.482526, 
+                43.374425
+              ], 
+              [
+                -78.473099, 
+                43.370812
+              ], 
+              [
+                -78.465502, 
+                43.371232
+              ], 
+              [
+                -78.370221, 
+                43.376505
+              ], 
+              [
+                -78.358711, 
+                43.373988
+              ], 
+              [
+                -78.250641, 
+                43.370866
+              ], 
+              [
+                -78.233609, 
+                43.36907
+              ], 
+              [
+                -78.145195, 
+                43.37551
+              ], 
+              [
+                -78.104509, 
+                43.375628
+              ], 
+              [
+                -78.023609, 
+                43.366575
+              ], 
+              [
+                -77.995591, 
+                43.365293
+              ], 
+              [
+                -77.994838, 
+                43.365259
+              ], 
+              [
+                -77.976438, 
+                43.369159
+              ], 
+              [
+                -77.965238, 
+                43.368059
+              ], 
+              [
+                -77.952937, 
+                43.36346
+              ], 
+              [
+                -77.922736, 
+                43.35696
+              ], 
+              [
+                -77.904836, 
+                43.35696
+              ], 
+              [
+                -77.875335, 
+                43.34966
+              ], 
+              [
+                -77.816533, 
+                43.34356
+              ], 
+              [
+                -77.797381, 
+                43.339857
+              ], 
+              [
+                -77.785132, 
+                43.339261
+              ], 
+              [
+                -77.760231, 
+                43.341161
+              ], 
+              [
+                -77.756931, 
+                43.337361
+              ], 
+              [
+                -77.73063, 
+                43.330161
+              ], 
+              [
+                -77.714129, 
+                43.323561
+              ], 
+              [
+                -77.701429, 
+                43.308261
+              ], 
+              [
+                -77.660359, 
+                43.282998
+              ], 
+              [
+                -77.653759, 
+                43.279484
+              ], 
+              [
+                -77.628315, 
+                43.271303
+              ], 
+              [
+                -77.602161, 
+                43.256949
+              ], 
+              [
+                -77.577223, 
+                43.243263
+              ], 
+              [
+                -77.551022, 
+                43.235763
+              ], 
+              [
+                -77.534184, 
+                43.234569
+              ], 
+              [
+                -77.50092, 
+                43.250363
+              ], 
+              [
+                -77.476642, 
+                43.254522
+              ], 
+              [
+                -77.436831, 
+                43.265701
+              ], 
+              [
+                -77.414516, 
+                43.269263
+              ], 
+              [
+                -77.391015, 
+                43.276363
+              ], 
+              [
+                -77.385388, 
+                43.276847
+              ], 
+              [
+                -77.376038, 
+                43.277652
+              ], 
+              [
+                -77.341092, 
+                43.280661
+              ], 
+              [
+                -77.314619, 
+                43.28103
+              ], 
+              [
+                -77.303979, 
+                43.27815
+              ], 
+              [
+                -77.264177, 
+                43.277363
+              ], 
+              [
+                -77.214058, 
+                43.284114
+              ], 
+              [
+                -77.173088, 
+                43.281509
+              ], 
+              [
+                -77.143416, 
+                43.287561
+              ], 
+              [
+                -77.130429, 
+                43.285635
+              ], 
+              [
+                -77.111866, 
+                43.287945
+              ], 
+              [
+                -77.067295, 
+                43.280937
+              ], 
+              [
+                -77.033875, 
+                43.271218
+              ], 
+              [
+                -76.999691, 
+                43.271456
+              ], 
+              [
+                -76.988445, 
+                43.2745
+              ], 
+              [
+                -76.958402, 
+                43.270005
+              ], 
+              [
+                -76.952174, 
+                43.270692
+              ], 
+              [
+                -76.922351, 
+                43.285006
+              ], 
+              [
+                -76.904288, 
+                43.291816
+              ], 
+              [
+                -76.886913, 
+                43.293891
+              ], 
+              [
+                -76.877397, 
+                43.292926
+              ], 
+              [
+                -76.854976, 
+                43.298443
+              ], 
+              [
+                -76.841675, 
+                43.305399
+              ], 
+              [
+                -76.794708, 
+                43.309632
+              ], 
+              [
+                -76.769025, 
+                43.318452
+              ], 
+              [
+                -76.747067, 
+                43.331477
+              ], 
+              [
+                -76.731039, 
+                43.343421
+              ], 
+              [
+                -76.722501, 
+                43.343686
+              ], 
+              [
+                -76.69836, 
+                43.344436
+              ], 
+              [
+                -76.684856, 
+                43.352691
+              ], 
+              [
+                -76.669624, 
+                43.366526
+              ], 
+              [
+                -76.642672, 
+                43.401241
+              ], 
+              [
+                -76.630774, 
+                43.413356
+              ], 
+              [
+                -76.617109, 
+                43.419137
+              ], 
+              [
+                -76.607093, 
+                43.423374
+              ], 
+              [
+                -76.562826, 
+                43.448537
+              ], 
+              [
+                -76.53181, 
+                43.460299
+              ], 
+              [
+                -76.521999, 
+                43.468617
+              ], 
+              [
+                -76.515882, 
+                43.471136
+              ], 
+              [
+                -76.506858, 
+                43.469127
+              ], 
+              [
+                -76.486962, 
+                43.47535
+              ], 
+              [
+                -76.472498, 
+                43.492781
+              ], 
+              [
+                -76.437473, 
+                43.509213
+              ], 
+              [
+                -76.417581, 
+                43.521285
+              ], 
+              [
+                -76.410636, 
+                43.523159
+              ], 
+              [
+                -76.368849, 
+                43.525822
+              ], 
+              [
+                -76.345492, 
+                43.513437
+              ], 
+              [
+                -76.330911, 
+                43.511978
+              ], 
+              [
+                -76.297103, 
+                43.51287
+              ], 
+              [
+                -76.259858, 
+                43.524728
+              ], 
+              [
+                -76.235834, 
+                43.529256
+              ], 
+              [
+                -76.228701, 
+                43.532987
+              ], 
+              [
+                -76.217958, 
+                43.545156
+              ], 
+              [
+                -76.209853, 
+                43.560136
+              ], 
+              [
+                -76.203473, 
+                43.574978
+              ], 
+              [
+                -76.199138, 
+                43.600454
+              ], 
+              [
+                -76.196596, 
+                43.649761
+              ], 
+              [
+                -76.2005, 
+                43.680231
+              ], 
+              [
+                -76.205436, 
+                43.718751
+              ], 
+              [
+                -76.213205, 
+                43.753513
+              ], 
+              [
+                -76.229268, 
+                43.804135
+              ], 
+              [
+                -76.250135, 
+                43.825713
+              ], 
+              [
+                -76.266977, 
+                43.838046
+              ], 
+              [
+                -76.277812, 
+                43.841205
+              ], 
+              [
+                -76.283307, 
+                43.843923
+              ], 
+              [
+                -76.284481, 
+                43.850968
+              ], 
+              [
+                -76.28272, 
+                43.858601
+              ], 
+              [
+                -76.276262, 
+                43.863297
+              ], 
+              [
+                -76.269217, 
+                43.868581
+              ], 
+              [
+                -76.261584, 
+                43.873278
+              ], 
+              [
+                -76.249842, 
+                43.875626
+              ], 
+              [
+                -76.243384, 
+                43.877975
+              ], 
+              [
+                -76.234578, 
+                43.877388
+              ], 
+              [
+                -76.227485, 
+                43.875061
+              ], 
+              [
+                -76.219313, 
+                43.86682
+              ], 
+              [
+                -76.202257, 
+                43.864898
+              ], 
+              [
+                -76.192777, 
+                43.869175
+              ], 
+              [
+                -76.180604, 
+                43.877529
+              ], 
+              [
+                -76.158249, 
+                43.887542
+              ], 
+              [
+                -76.145506, 
+                43.888681
+              ], 
+              [
+                -76.133267, 
+                43.892975
+              ], 
+              [
+                -76.127285, 
+                43.897889
+              ], 
+              [
+                -76.125023, 
+                43.912773
+              ], 
+              [
+                -76.130446, 
+                43.933082
+              ], 
+              [
+                -76.133697, 
+                43.940356
+              ], 
+              [
+                -76.134359, 
+                43.945614
+              ], 
+              [
+                -76.134296, 
+                43.954726
+              ], 
+              [
+                -76.139086, 
+                43.962111
+              ], 
+              [
+                -76.146072, 
+                43.964705
+              ], 
+              [
+                -76.169802, 
+                43.962202
+              ], 
+              [
+                -76.184874, 
+                43.971128
+              ], 
+              [
+                -76.22805, 
+                43.982737
+              ], 
+              [
+                -76.236864, 
+                43.9779
+              ], 
+              [
+                -76.244439, 
+                43.975803
+              ], 
+              [
+                -76.252318, 
+                43.975803
+              ], 
+              [
+                -76.258306, 
+                43.976118
+              ], 
+              [
+                -76.264294, 
+                43.978009
+              ], 
+              [
+                -76.268706, 
+                43.980846
+              ], 
+              [
+                -76.268702, 
+                43.987278
+              ], 
+              [
+                -76.266733, 
+                43.995578
+              ], 
+              [
+                -76.269672, 
+                44.001148
+              ], 
+              [
+                -76.281928, 
+                44.009177
+              ], 
+              [
+                -76.287821, 
+                44.01142
+              ], 
+              [
+                -76.296755, 
+                44.013307
+              ], 
+              [
+                -76.298962, 
+                44.017719
+              ], 
+              [
+                -76.300222, 
+                44.022762
+              ], 
+              [
+                -76.299592, 
+                44.030956
+              ], 
+              [
+                -76.296986, 
+                44.045455
+              ], 
+              [
+                -76.300532, 
+                44.057188
+              ], 
+              [
+                -76.304207, 
+                44.059445
+              ], 
+              [
+                -76.360306, 
+                44.070907
+              ], 
+              [
+                -76.360798, 
+                44.087644
+              ], 
+              [
+                -76.366972, 
+                44.100409
+              ], 
+              [
+                -76.363835, 
+                44.111696
+              ], 
+              [
+                -76.358163, 
+                44.123337
+              ], 
+              [
+                -76.355679, 
+                44.133258
+              ], 
+              [
+                -76.312647, 
+                44.199044
+              ], 
+              [
+                -76.286547, 
+                44.203773
+              ], 
+              [
+                -76.245487, 
+                44.203669
+              ], 
+              [
+                -76.206777, 
+                44.214543
+              ], 
+              [
+                -76.191328, 
+                44.221244
+              ], 
+              [
+                -76.164265, 
+                44.239603
+              ], 
+              [
+                -76.118136, 
+                44.29485
+              ], 
+              [
+                -76.045228, 
+                44.331724
+              ], 
+              [
+                -76.000998, 
+                44.347534
+              ], 
+              [
+                -75.978281, 
+                44.34688
+              ], 
+              [
+                -75.970185, 
+                44.342835
+              ], 
+              [
+                -75.94954, 
+                44.349129
+              ], 
+              [
+                -75.912985, 
+                44.368084
+              ], 
+              [
+                -75.871496, 
+                44.394839
+              ], 
+              [
+                -75.86006, 
+                44.403282
+              ], 
+              [
+                -75.82083, 
+                44.432244
+              ], 
+              [
+                -75.807778, 
+                44.471644
+              ], 
+              [
+                -75.765495, 
+                44.516285
+              ], 
+              [
+                -75.696586, 
+                44.567583
+              ], 
+              [
+                -75.491201, 
+                44.712947
+              ], 
+              [
+                -75.433124, 
+                44.750062
+              ], 
+              [
+                -75.333744, 
+                44.806378
+              ], 
+              [
+                -75.301975, 
+                44.826637
+              ], 
+              [
+                -75.30763, 
+                44.836813
+              ], 
+              [
+                -75.283136, 
+                44.849156
+              ], 
+              [
+                -75.216486, 
+                44.877478
+              ], 
+              [
+                -75.189313, 
+                44.883037
+              ], 
+              [
+                -75.139868, 
+                44.896676
+              ], 
+              [
+                -75.064826, 
+                44.929449
+              ], 
+              [
+                -75.027125, 
+                44.946568
+              ], 
+              [
+                -75.005155, 
+                44.958402
+              ], 
+              [
+                -74.999655, 
+                44.965921
+              ], 
+              [
+                -74.99927, 
+                44.971638
+              ], 
+              [
+                -74.992756, 
+                44.977449
+              ], 
+              [
+                -74.972463, 
+                44.983402
+              ], 
+              [
+                -74.826578, 
+                45.01585
+              ], 
+              [
+                -74.801625, 
+                45.014571
+              ], 
+              [
+                -74.72498, 
+                45.005915
+              ], 
+              [
+                -74.702018, 
+                45.003322
+              ], 
+              [
+                -74.291307, 
+                44.992058
+              ], 
+              [
+                -74.146814, 
+                44.9915
+              ], 
+              [
+                -74.027392, 
+                44.995765
+              ], 
+              [
+                -73.874597, 
+                45.001223
+              ], 
+              [
+                -73.624588, 
+                45.003954
+              ], 
+              [
+                -73.343124, 
+                45.01084
+              ], 
+              [
+                -73.350188, 
+                44.994304
+              ], 
+              [
+                -73.35945, 
+                44.915684
+              ], 
+              [
+                -73.369647, 
+                44.829136
+              ], 
+              [
+                -73.339958, 
+                44.778893
+              ], 
+              [
+                -73.365326, 
+                44.703294
+              ], 
+              [
+                -73.390231, 
+                44.618353
+              ], 
+              [
+                -73.374389, 
+                44.575455
+              ], 
+              [
+                -73.361952, 
+                44.563064
+              ], 
+              [
+                -73.356788, 
+                44.557918
+              ], 
+              [
+                -73.338634, 
+                44.546847
+              ], 
+              [
+                -73.33863, 
+                44.546844
+              ], 
+              [
+                -73.306707, 
+                44.500334
+              ], 
+              [
+                -73.299885, 
+                44.476652
+              ], 
+              [
+                -73.293613, 
+                44.438903
+              ], 
+              [
+                -73.296031, 
+                44.428339
+              ], 
+              [
+                -73.315016, 
+                44.388513
+              ], 
+              [
+                -73.323268, 
+                44.264796
+              ], 
+              [
+                -73.324681, 
+                44.243614
+              ], 
+              [
+                -73.350806, 
+                44.225943
+              ], 
+              [
+                -73.390583, 
+                44.190886
+              ], 
+              [
+                -73.403686, 
+                44.153102
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 43, 
+      "properties": {
+        "CENSUSAREA": 47126.399, 
+        "GEO_ID": "0400000US36", 
+        "ISO": "US-NY", 
+        "LSAD": "", 
+        "NAME": "New York", 
+        "NAME_1": "New York", 
+        "STATE": "NY"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -82.700208, 
+                41.61219
+              ], 
+              [
+                -82.691123, 
+                41.611331
+              ], 
+              [
+                -82.68015, 
+                41.61897
+              ], 
+              [
+                -82.677772, 
+                41.617986
+              ], 
+              [
+                -82.680669, 
+                41.594611
+              ], 
+              [
+                -82.686033, 
+                41.587246
+              ], 
+              [
+                -82.688744, 
+                41.585896
+              ], 
+              [
+                -82.702027, 
+                41.585437
+              ], 
+              [
+                -82.725827, 
+                41.595199
+              ], 
+              [
+                -82.735766, 
+                41.600982
+              ], 
+              [
+                -82.735707, 
+                41.603361
+              ], 
+              [
+                -82.718802, 
+                41.619629
+              ], 
+              [
+                -82.70731, 
+                41.619609
+              ], 
+              [
+                -82.703438, 
+                41.617734
+              ], 
+              [
+                -82.700208, 
+                41.61219
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -82.824731, 
+                41.659428
+              ], 
+              [
+                -82.808587, 
+                41.661682
+              ], 
+              [
+                -82.805179, 
+                41.664281
+              ], 
+              [
+                -82.796333, 
+                41.665973
+              ], 
+              [
+                -82.793069, 
+                41.664692
+              ], 
+              [
+                -82.794198, 
+                41.662496
+              ], 
+              [
+                -82.797493, 
+                41.658197
+              ], 
+              [
+                -82.827011, 
+                41.633701
+              ], 
+              [
+                -82.834662, 
+                41.629331
+              ], 
+              [
+                -82.842099, 
+                41.628323
+              ], 
+              [
+                -82.843602, 
+                41.647009
+              ], 
+              [
+                -82.834092, 
+                41.657121
+              ], 
+              [
+                -82.824731, 
+                41.659428
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -82.803341, 
+                41.693837
+              ], 
+              [
+                -82.786304, 
+                41.69714
+              ], 
+              [
+                -82.782719, 
+                41.694003
+              ], 
+              [
+                -82.790561, 
+                41.68997
+              ], 
+              [
+                -82.801539, 
+                41.682577
+              ], 
+              [
+                -82.805137, 
+                41.674931
+              ], 
+              [
+                -82.805423, 
+                41.67192
+              ], 
+              [
+                -82.813781, 
+                41.670594
+              ], 
+              [
+                -82.826443, 
+                41.684774
+              ], 
+              [
+                -82.812805, 
+                41.692002
+              ], 
+              [
+                -82.803341, 
+                41.693837
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -82.813489, 
+                41.723468
+              ], 
+              [
+                -82.810487, 
+                41.720524
+              ], 
+              [
+                -82.808869, 
+                41.708333
+              ], 
+              [
+                -82.816133, 
+                41.706732
+              ], 
+              [
+                -82.835118, 
+                41.708971
+              ], 
+              [
+                -82.835577, 
+                41.710823
+              ], 
+              [
+                -82.832709, 
+                41.71565
+              ], 
+              [
+                -82.82572, 
+                41.72281
+              ], 
+              [
+                -82.820409, 
+                41.724549
+              ], 
+              [
+                -82.813489, 
+                41.723468
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -81.749689, 
+                39.180742
+              ], 
+              [
+                -81.747253, 
+                39.095379
+              ], 
+              [
+                -81.747253, 
+                39.095378
+              ], 
+              [
+                -81.812355, 
+                39.082078
+              ], 
+              [
+                -81.814155, 
+                39.073478
+              ], 
+              [
+                -81.811655, 
+                39.059578
+              ], 
+              [
+                -81.803355, 
+                39.047678
+              ], 
+              [
+                -81.793304, 
+                39.040353
+              ], 
+              [
+                -81.772854, 
+                39.026179
+              ], 
+              [
+                -81.764253, 
+                39.015279
+              ], 
+              [
+                -81.756131, 
+                38.933545
+              ], 
+              [
+                -81.759995, 
+                38.925828
+              ], 
+              [
+                -81.874857, 
+                38.881174
+              ], 
+              [
+                -81.908645, 
+                38.87846
+              ], 
+              [
+                -81.926967, 
+                38.891602
+              ], 
+              [
+                -81.928352, 
+                38.895371
+              ], 
+              [
+                -81.926671, 
+                38.901311
+              ], 
+              [
+                -81.90091, 
+                38.924338
+              ], 
+              [
+                -81.89847, 
+                38.929603
+              ], 
+              [
+                -81.900595, 
+                38.937671
+              ], 
+              [
+                -81.919783, 
+                38.968494
+              ], 
+              [
+                -81.935619, 
+                38.9895
+              ], 
+              [
+                -82.002261, 
+                39.027878
+              ], 
+              [
+                -82.017562, 
+                39.030078
+              ], 
+              [
+                -82.035963, 
+                39.025478
+              ], 
+              [
+                -82.041563, 
+                39.017878
+              ], 
+              [
+                -82.045663, 
+                39.003778
+              ], 
+              [
+                -82.051563, 
+                38.994378
+              ], 
+              [
+                -82.093165, 
+                38.97098
+              ], 
+              [
+                -82.098762, 
+                38.958288
+              ], 
+              [
+                -82.139279, 
+                38.866407
+              ], 
+              [
+                -82.184428, 
+                38.816529
+              ], 
+              [
+                -82.191172, 
+                38.815137
+              ], 
+              [
+                -82.215759, 
+                38.797462
+              ], 
+              [
+                -82.221566, 
+                38.787187
+              ], 
+              [
+                -82.220449, 
+                38.773739
+              ], 
+              [
+                -82.198882, 
+                38.757725
+              ], 
+              [
+                -82.188268, 
+                38.734082
+              ], 
+              [
+                -82.182467, 
+                38.708782
+              ], 
+              [
+                -82.172066, 
+                38.625984
+              ], 
+              [
+                -82.172066, 
+                38.619284
+              ], 
+              [
+                -82.175167, 
+                38.608484
+              ], 
+              [
+                -82.177267, 
+                38.603784
+              ], 
+              [
+                -82.181967, 
+                38.599384
+              ], 
+              [
+                -82.193824, 
+                38.593096
+              ], 
+              [
+                -82.218967, 
+                38.591683
+              ], 
+              [
+                -82.245969, 
+                38.598483
+              ], 
+              [
+                -82.26207, 
+                38.598183
+              ], 
+              [
+                -82.27427, 
+                38.593683
+              ], 
+              [
+                -82.287102, 
+                38.582588
+              ], 
+              [
+                -82.291271, 
+                38.578983
+              ], 
+              [
+                -82.293871, 
+                38.572683
+              ], 
+              [
+                -82.293271, 
+                38.560283
+              ], 
+              [
+                -82.295571, 
+                38.539783
+              ], 
+              [
+                -82.313935, 
+                38.468084
+              ], 
+              [
+                -82.320223, 
+                38.454516
+              ], 
+              [
+                -82.323999, 
+                38.449268
+              ], 
+              [
+                -82.330335, 
+                38.4445
+              ], 
+              [
+                -82.34064, 
+                38.440948
+              ], 
+              [
+                -82.50667, 
+                38.410092
+              ], 
+              [
+                -82.520178, 
+                38.407582
+              ], 
+              [
+                -82.560664, 
+                38.404338
+              ], 
+              [
+                -82.593673, 
+                38.421809
+              ], 
+              [
+                -82.665485, 
+                38.505734
+              ], 
+              [
+                -82.665548, 
+                38.505808
+              ], 
+              [
+                -82.690509, 
+                38.536576
+              ], 
+              [
+                -82.696621, 
+                38.542112
+              ], 
+              [
+                -82.724846, 
+                38.5576
+              ], 
+              [
+                -82.730958, 
+                38.559264
+              ], 
+              [
+                -82.789776, 
+                38.559951
+              ], 
+              [
+                -82.800112, 
+                38.563183
+              ], 
+              [
+                -82.816012, 
+                38.570733
+              ], 
+              [
+                -82.820161, 
+                38.572703
+              ], 
+              [
+                -82.839538, 
+                38.586159
+              ], 
+              [
+                -82.847186, 
+                38.595166
+              ], 
+              [
+                -82.853554, 
+                38.610926
+              ], 
+              [
+                -82.869592, 
+                38.678177
+              ], 
+              [
+                -82.873492, 
+                38.710077
+              ], 
+              [
+                -82.870392, 
+                38.722077
+              ], 
+              [
+                -82.869992, 
+                38.730477
+              ], 
+              [
+                -82.871292, 
+                38.739376
+              ], 
+              [
+                -82.874466, 
+                38.745346
+              ], 
+              [
+                -82.875492, 
+                38.747276
+              ], 
+              [
+                -82.879492, 
+                38.751476
+              ], 
+              [
+                -82.889193, 
+                38.756076
+              ], 
+              [
+                -82.894193, 
+                38.756576
+              ], 
+              [
+                -82.923694, 
+                38.750076
+              ], 
+              [
+                -82.943147, 
+                38.74328
+              ], 
+              [
+                -82.968695, 
+                38.728776
+              ], 
+              [
+                -82.979395, 
+                38.725976
+              ], 
+              [
+                -83.011816, 
+                38.730057
+              ], 
+              [
+                -83.030702, 
+                38.72572
+              ], 
+              [
+                -83.030889, 
+                38.72556
+              ], 
+              [
+                -83.127652, 
+                38.642451
+              ], 
+              [
+                -83.135046, 
+                38.631719
+              ], 
+              [
+                -83.142836, 
+                38.625076
+              ], 
+              [
+                -83.156926, 
+                38.620547
+              ], 
+              [
+                -83.265769, 
+                38.605278
+              ], 
+              [
+                -83.2821, 
+                38.602987
+              ], 
+              [
+                -83.320531, 
+                38.622713
+              ], 
+              [
+                -83.324157, 
+                38.633326
+              ], 
+              [
+                -83.333347, 
+                38.641562
+              ], 
+              [
+                -83.369077, 
+                38.659334
+              ], 
+              [
+                -83.512571, 
+                38.701716
+              ], 
+              [
+                -83.520953, 
+                38.703045
+              ], 
+              [
+                -83.533339, 
+                38.702105
+              ], 
+              [
+                -83.574754, 
+                38.692671
+              ], 
+              [
+                -83.615736, 
+                38.684145
+              ], 
+              [
+                -83.626922, 
+                38.679387
+              ], 
+              [
+                -83.636208, 
+                38.670584
+              ], 
+              [
+                -83.642994, 
+                38.643273
+              ], 
+              [
+                -83.646701, 
+                38.637489
+              ], 
+              [
+                -83.649737, 
+                38.632753
+              ], 
+              [
+                -83.655425, 
+                38.629735
+              ], 
+              [
+                -83.663911, 
+                38.62793
+              ], 
+              [
+                -83.679484, 
+                38.630036
+              ], 
+              [
+                -83.706043, 
+                38.637101
+              ], 
+              [
+                -83.762445, 
+                38.652103
+              ], 
+              [
+                -83.769347, 
+                38.65522
+              ], 
+              [
+                -83.773682, 
+                38.661309
+              ], 
+              [
+                -83.777823, 
+                38.674453
+              ], 
+              [
+                -83.85333, 
+                38.752572
+              ], 
+              [
+                -83.859028, 
+                38.756793
+              ], 
+              [
+                -83.870443, 
+                38.761608
+              ], 
+              [
+                -83.903918, 
+                38.76815
+              ], 
+              [
+                -83.903971, 
+                38.76816
+              ], 
+              [
+                -83.943978, 
+                38.783616
+              ], 
+              [
+                -83.962123, 
+                38.787384
+              ], 
+              [
+                -83.978814, 
+                38.787104
+              ], 
+              [
+                -84.044486, 
+                38.770572
+              ], 
+              [
+                -84.052707, 
+                38.770542
+              ], 
+              [
+                -84.071491, 
+                38.770475
+              ], 
+              [
+                -84.205592, 
+                38.802588
+              ], 
+              [
+                -84.212904, 
+                38.805707
+              ], 
+              [
+                -84.2253, 
+                38.817665
+              ], 
+              [
+                -84.229954, 
+                38.82765
+              ], 
+              [
+                -84.231306, 
+                38.830552
+              ], 
+              [
+                -84.233727, 
+                38.853576
+              ], 
+              [
+                -84.232478, 
+                38.874638
+              ], 
+              [
+                -84.232132, 
+                38.880483
+              ], 
+              [
+                -84.234453, 
+                38.893226
+              ], 
+              [
+                -84.304698, 
+                39.006455
+              ], 
+              [
+                -84.31368, 
+                39.016981
+              ], 
+              [
+                -84.319936, 
+                39.022081
+              ], 
+              [
+                -84.326539, 
+                39.027463
+              ], 
+              [
+                -84.432841, 
+                39.094261
+              ], 
+              [
+                -84.493743, 
+                39.10246
+              ], 
+              [
+                -84.502062, 
+                39.096641
+              ], 
+              [
+                -84.506082, 
+                39.095081
+              ], 
+              [
+                -84.509743, 
+                39.09366
+              ], 
+              [
+                -84.510057, 
+                39.093593
+              ], 
+              [
+                -84.603444, 
+                39.073699
+              ], 
+              [
+                -84.620112, 
+                39.073457
+              ], 
+              [
+                -84.623732, 
+                39.074427
+              ], 
+              [
+                -84.632446, 
+                39.07676
+              ], 
+              [
+                -84.684847, 
+                39.100459
+              ], 
+              [
+                -84.689747, 
+                39.104159
+              ], 
+              [
+                -84.718548, 
+                39.137059
+              ], 
+              [
+                -84.732048, 
+                39.144458
+              ], 
+              [
+                -84.744149, 
+                39.147458
+              ], 
+              [
+                -84.754449, 
+                39.146658
+              ], 
+              [
+                -84.766749, 
+                39.138558
+              ], 
+              [
+                -84.78768, 
+                39.115297
+              ], 
+              [
+                -84.820157, 
+                39.10548
+              ], 
+              [
+                -84.819985, 
+                39.149081
+              ], 
+              [
+                -84.819826, 
+                39.156504
+              ], 
+              [
+                -84.819802, 
+                39.157613
+              ], 
+              [
+                -84.819813, 
+                39.244334
+              ], 
+              [
+                -84.819801, 
+                39.247806
+              ], 
+              [
+                -84.819859, 
+                39.251018
+              ], 
+              [
+                -84.819633, 
+                39.261855
+              ], 
+              [
+                -84.819622, 
+                39.27159
+              ], 
+              [
+                -84.819451, 
+                39.305152
+              ], 
+              [
+                -84.819451, 
+                39.305153
+              ], 
+              [
+                -84.819352, 
+                39.309454
+              ], 
+              [
+                -84.817453, 
+                39.391753
+              ], 
+              [
+                -84.815754, 
+                39.477352
+              ], 
+              [
+                -84.815754, 
+                39.477358
+              ], 
+              [
+                -84.815555, 
+                39.510952
+              ], 
+              [
+                -84.815555, 
+                39.511052
+              ], 
+              [
+                -84.815355, 
+                39.52195
+              ], 
+              [
+                -84.815355, 
+                39.521951
+              ], 
+              [
+                -84.815155, 
+                39.548051
+              ], 
+              [
+                -84.814955, 
+                39.566251
+              ], 
+              [
+                -84.814955, 
+                39.567251
+              ], 
+              [
+                -84.815036, 
+                39.567695
+              ], 
+              [
+                -84.815156, 
+                39.568351
+              ], 
+              [
+                -84.814705, 
+                39.628854
+              ], 
+              [
+                -84.814619, 
+                39.669174
+              ], 
+              [
+                -84.81453, 
+                39.680429
+              ], 
+              [
+                -84.814129, 
+                39.726556
+              ], 
+              [
+                -84.814129, 
+                39.72662
+              ], 
+              [
+                -84.814189, 
+                39.785569
+              ], 
+              [
+                -84.814179, 
+                39.786853
+              ], 
+              [
+                -84.814209, 
+                39.799755
+              ], 
+              [
+                -84.81412, 
+                39.811398
+              ], 
+              [
+                -84.814179, 
+                39.814212
+              ], 
+              [
+                -84.813852, 
+                39.824621
+              ], 
+              [
+                -84.813793, 
+                39.826771
+              ], 
+              [
+                -84.813703, 
+                39.843059
+              ], 
+              [
+                -84.813674, 
+                39.843173
+              ], 
+              [
+                -84.813549, 
+                39.850773
+              ], 
+              [
+                -84.813464, 
+                39.853261
+              ], 
+              [
+                -84.81305, 
+                39.872958
+              ], 
+              [
+                -84.812787, 
+                39.89083
+              ], 
+              [
+                -84.812698, 
+                39.891585
+              ], 
+              [
+                -84.812411, 
+                39.916915
+              ], 
+              [
+                -84.812411, 
+                39.916916
+              ], 
+              [
+                -84.812357, 
+                39.921764
+              ], 
+              [
+                -84.812193, 
+                39.92734
+              ], 
+              [
+                -84.81067, 
+                40.005074
+              ], 
+              [
+                -84.810099, 
+                40.034214
+              ], 
+              [
+                -84.809737, 
+                40.048929
+              ], 
+              [
+                -84.808706, 
+                40.107216
+              ], 
+              [
+                -84.808305, 
+                40.127018
+              ], 
+              [
+                -84.808291, 
+                40.129027
+              ], 
+              [
+                -84.806766, 
+                40.180128
+              ], 
+              [
+                -84.806347, 
+                40.192252
+              ], 
+              [
+                -84.80634, 
+                40.192327
+              ], 
+              [
+                -84.806175, 
+                40.197995
+              ], 
+              [
+                -84.805627, 
+                40.223659
+              ], 
+              [
+                -84.804098, 
+                40.302498
+              ], 
+              [
+                -84.803918, 
+                40.310094
+              ], 
+              [
+                -84.803917, 
+                40.310115
+              ], 
+              [
+                -84.804119, 
+                40.352757
+              ], 
+              [
+                -84.804119, 
+                40.352844
+              ], 
+              [
+                -84.803068, 
+                40.465388
+              ], 
+              [
+                -84.802483, 
+                40.528046
+              ], 
+              [
+                -84.802265, 
+                40.572212
+              ], 
+              [
+                -84.802265, 
+                40.572215
+              ], 
+              [
+                -84.802135, 
+                40.644859
+              ], 
+              [
+                -84.802193, 
+                40.660298
+              ], 
+              [
+                -84.80222, 
+                40.674776
+              ], 
+              [
+                -84.802157, 
+                40.689324
+              ], 
+              [
+                -84.802127, 
+                40.691405
+              ], 
+              [
+                -84.802094, 
+                40.702476
+              ], 
+              [
+                -84.802181, 
+                40.718602
+              ], 
+              [
+                -84.802119, 
+                40.728146
+              ], 
+              [
+                -84.802119, 
+                40.728163
+              ], 
+              [
+                -84.802266, 
+                40.742298
+              ], 
+              [
+                -84.802538, 
+                40.765515
+              ], 
+              [
+                -84.802935, 
+                40.922377
+              ], 
+              [
+                -84.802936, 
+                40.922568
+              ], 
+              [
+                -84.803313, 
+                40.989209
+              ], 
+              [
+                -84.803313, 
+                40.989394
+              ], 
+              [
+                -84.803374, 
+                41.089302
+              ], 
+              [
+                -84.803378, 
+                41.096867
+              ], 
+              [
+                -84.803413, 
+                41.164649
+              ], 
+              [
+                -84.803594, 
+                41.173203
+              ], 
+              [
+                -84.803472, 
+                41.173889
+              ], 
+              [
+                -84.803492, 
+                41.252531
+              ], 
+              [
+                -84.803492, 
+                41.252562
+              ], 
+              [
+                -84.80358, 
+                41.270942
+              ], 
+              [
+                -84.803581, 
+                41.271079
+              ], 
+              [
+                -84.803582, 
+                41.271273
+              ], 
+              [
+                -84.803926, 
+                41.367959
+              ], 
+              [
+                -84.804133, 
+                41.408292
+              ], 
+              [
+                -84.804046, 
+                41.408361
+              ], 
+              [
+                -84.804015, 
+                41.411655
+              ], 
+              [
+                -84.803956, 
+                41.426044
+              ], 
+              [
+                -84.803956, 
+                41.426128
+              ], 
+              [
+                -84.803919, 
+                41.435531
+              ], 
+              [
+                -84.804457, 
+                41.488224
+              ], 
+              [
+                -84.804551, 
+                41.500364
+              ], 
+              [
+                -84.804729, 
+                41.530092
+              ], 
+              [
+                -84.804729, 
+                41.530135
+              ], 
+              [
+                -84.804729, 
+                41.530231
+              ], 
+              [
+                -84.805812, 
+                41.61304
+              ], 
+              [
+                -84.805696, 
+                41.631398
+              ], 
+              [
+                -84.805673, 
+                41.632342
+              ], 
+              [
+                -84.80621, 
+                41.67455
+              ], 
+              [
+                -84.806082, 
+                41.696089
+              ], 
+              [
+                -84.438067, 
+                41.704903
+              ], 
+              [
+                -84.399546, 
+                41.705758
+              ], 
+              [
+                -84.39943, 
+                41.705761
+              ], 
+              [
+                -84.396547, 
+                41.705935
+              ], 
+              [
+                -84.360419, 
+                41.706925
+              ], 
+              [
+                -83.880539, 
+                41.720081
+              ], 
+              [
+                -83.880387, 
+                41.720086
+              ], 
+              [
+                -83.763155, 
+                41.72391
+              ], 
+              [
+                -83.685337, 
+                41.726449
+              ], 
+              [
+                -83.665937, 
+                41.726949
+              ], 
+              [
+                -83.639636, 
+                41.727749
+              ], 
+              [
+                -83.636636, 
+                41.727849
+              ], 
+              [
+                -83.595235, 
+                41.729148
+              ], 
+              [
+                -83.593835, 
+                41.729148
+              ], 
+              [
+                -83.585235, 
+                41.729348
+              ], 
+              [
+                -83.504334, 
+                41.731547
+              ], 
+              [
+                -83.503433, 
+                41.731547
+              ], 
+              [
+                -83.499733, 
+                41.731647
+              ], 
+              [
+                -83.497733, 
+                41.731847
+              ], 
+              [
+                -83.453832, 
+                41.732647
+              ], 
+              [
+                -83.455626, 
+                41.727445
+              ], 
+              [
+                -83.449001, 
+                41.710719
+              ], 
+              [
+                -83.446032, 
+                41.706847
+              ], 
+              [
+                -83.409531, 
+                41.691247
+              ], 
+              [
+                -83.39263, 
+                41.691947
+              ], 
+              [
+                -83.37573, 
+                41.686647
+              ], 
+              [
+                -83.357073, 
+                41.687763
+              ], 
+              [
+                -83.341817, 
+                41.693518
+              ], 
+              [
+                -83.337985, 
+                41.698682
+              ], 
+              [
+                -83.337977, 
+                41.70341
+              ], 
+              [
+                -83.326825, 
+                41.701562
+              ], 
+              [
+                -83.298731, 
+                41.683871
+              ], 
+              [
+                -83.29561, 
+                41.681905
+              ], 
+              [
+                -83.293928, 
+                41.680846
+              ], 
+              [
+                -83.29068, 
+                41.676794
+              ], 
+              [
+                -83.289682, 
+                41.676409
+              ], 
+              [
+                -83.288469, 
+                41.675941
+              ], 
+              [
+                -83.287125, 
+                41.675423
+              ], 
+              [
+                -83.285181, 
+                41.674673
+              ], 
+              [
+                -83.278455, 
+                41.672078
+              ], 
+              [
+                -83.238191, 
+                41.651167
+              ], 
+              [
+                -83.23166, 
+                41.644218
+              ], 
+              [
+                -83.194524, 
+                41.631008
+              ], 
+              [
+                -83.165713, 
+                41.623246
+              ], 
+              [
+                -83.145887, 
+                41.617904
+              ], 
+              [
+                -83.103928, 
+                41.613558
+              ], 
+              [
+                -83.086036, 
+                41.60668
+              ], 
+              [
+                -83.066593, 
+                41.59534
+              ], 
+              [
+                -83.048222, 
+                41.573951
+              ], 
+              [
+                -83.043287, 
+                41.568205
+              ], 
+              [
+                -83.043079, 
+                41.567963
+              ], 
+              [
+                -83.042909, 
+                41.567823
+              ], 
+              [
+                -83.031653, 
+                41.558592
+              ], 
+              [
+                -83.030764, 
+                41.557864
+              ], 
+              [
+                -83.028072, 
+                41.555656
+              ], 
+              [
+                -83.019057, 
+                41.550174
+              ], 
+              [
+                -83.017473, 
+                41.549211
+              ], 
+              [
+                -83.016753, 
+                41.548773
+              ], 
+              [
+                -82.999916, 
+                41.538534
+              ], 
+              [
+                -82.999897, 
+                41.538525
+              ], 
+              [
+                -82.96985, 
+                41.524327
+              ], 
+              [
+                -82.969642, 
+                41.524229
+              ], 
+              [
+                -82.969574, 
+                41.52421
+              ], 
+              [
+                -82.958481, 
+                41.521104
+              ], 
+              [
+                -82.934369, 
+                41.514353
+              ], 
+              [
+                -82.897728, 
+                41.519241
+              ], 
+              [
+                -82.896854, 
+                41.519541
+              ], 
+              [
+                -82.8882, 
+                41.522508
+              ], 
+              [
+                -82.882305, 
+                41.52577
+              ], 
+              [
+                -82.875229, 
+                41.529684
+              ], 
+              [
+                -82.869422, 
+                41.533962
+              ], 
+              [
+                -82.866262, 
+                41.537534
+              ], 
+              [
+                -82.861323, 
+                41.543116
+              ], 
+              [
+                -82.857841, 
+                41.547051
+              ], 
+              [
+                -82.85677, 
+                41.548262
+              ], 
+              [
+                -82.856533, 
+                41.55065
+              ], 
+              [
+                -82.855197, 
+                41.564114
+              ], 
+              [
+                -82.856088, 
+                41.566633
+              ], 
+              [
+                -82.856647, 
+                41.568216
+              ], 
+              [
+                -82.858702, 
+                41.574025
+              ], 
+              [
+                -82.859531, 
+                41.576371
+              ], 
+              [
+                -82.857945, 
+                41.578049
+              ], 
+              [
+                -82.857316, 
+                41.578714
+              ], 
+              [
+                -82.856919, 
+                41.579135
+              ], 
+              [
+                -82.854263, 
+                41.581945
+              ], 
+              [
+                -82.852957, 
+                41.583327
+              ], 
+              [
+                -82.847657, 
+                41.585639
+              ], 
+              [
+                -82.834101, 
+                41.587587
+              ], 
+              [
+                -82.820207, 
+                41.570664
+              ], 
+              [
+                -82.794324, 
+                41.546486
+              ], 
+              [
+                -82.785496, 
+                41.540675
+              ], 
+              [
+                -82.77201, 
+                41.54058
+              ], 
+              [
+                -82.749907, 
+                41.54647
+              ], 
+              [
+                -82.739868, 
+                41.545047
+              ], 
+              [
+                -82.732886, 
+                41.544057
+              ], 
+              [
+                -82.7319, 
+                41.543918
+              ], 
+              [
+                -82.731628, 
+                41.543879
+              ], 
+              [
+                -82.730516, 
+                41.543721
+              ], 
+              [
+                -82.728489, 
+                41.543434
+              ], 
+              [
+                -82.727656, 
+                41.543316
+              ], 
+              [
+                -82.722069, 
+                41.542524
+              ], 
+              [
+                -82.720539, 
+                41.542307
+              ], 
+              [
+                -82.717878, 
+                41.54193
+              ], 
+              [
+                -82.717595, 
+                41.541715
+              ], 
+              [
+                -82.715227, 
+                41.539913
+              ], 
+              [
+                -82.711332, 
+                41.53695
+              ], 
+              [
+                -82.710935, 
+                41.536648
+              ], 
+              [
+                -82.710967, 
+                41.536221
+              ], 
+              [
+                -82.711632, 
+                41.527201
+              ], 
+              [
+                -82.716492, 
+                41.522227
+              ], 
+              [
+                -82.721914, 
+                41.516677
+              ], 
+              [
+                -82.719956, 
+                41.510735
+              ], 
+              [
+                -82.719811, 
+                41.510296
+              ], 
+              [
+                -82.713904, 
+                41.501697
+              ], 
+              [
+                -82.710013, 
+                41.49759
+              ], 
+              [
+                -82.694722, 
+                41.493945
+              ], 
+              [
+                -82.687921, 
+                41.492324
+              ], 
+              [
+                -82.658302, 
+                41.461878
+              ], 
+              [
+                -82.617745, 
+                41.431833
+              ], 
+              [
+                -82.616952, 
+                41.428425
+              ], 
+              [
+                -82.55808, 
+                41.400005
+              ], 
+              [
+                -82.513827, 
+                41.384257
+              ], 
+              [
+                -82.499099, 
+                41.381541
+              ], 
+              [
+                -82.481214, 
+                41.381342
+              ], 
+              [
+                -82.460599, 
+                41.386316
+              ], 
+              [
+                -82.431315, 
+                41.396866
+              ], 
+              [
+                -82.398086, 
+                41.413945
+              ], 
+              [
+                -82.361784, 
+                41.426644
+              ], 
+              [
+                -82.348076, 
+                41.428431
+              ], 
+              [
+                -82.334182, 
+                41.430243
+              ], 
+              [
+                -82.29158, 
+                41.428442
+              ], 
+              [
+                -82.283488, 
+                41.429283
+              ], 
+              [
+                -82.268479, 
+                41.430842
+              ], 
+              [
+                -82.254678, 
+                41.434441
+              ], 
+              [
+                -82.193375, 
+                41.46454
+              ], 
+              [
+                -82.18885, 
+                41.468097
+              ], 
+              [
+                -82.186174, 
+                41.47344
+              ], 
+              [
+                -82.184774, 
+                41.47404
+              ], 
+              [
+                -82.181598, 
+                41.471634
+              ], 
+              [
+                -82.165373, 
+                41.47444
+              ], 
+              [
+                -82.094169, 
+                41.495039
+              ], 
+              [
+                -82.011966, 
+                41.515639
+              ], 
+              [
+                -81.994565, 
+                41.51444
+              ], 
+              [
+                -81.96813, 
+                41.506422
+              ], 
+              [
+                -81.964912, 
+                41.505446
+              ], 
+              [
+                -81.962664, 
+                41.501341
+              ], 
+              [
+                -81.958463, 
+                41.498642
+              ], 
+              [
+                -81.937862, 
+                41.491443
+              ], 
+              [
+                -81.930404, 
+                41.490457
+              ], 
+              [
+                -81.928652, 
+                41.490226
+              ], 
+              [
+                -81.87736, 
+                41.483445
+              ], 
+              [
+                -81.860262, 
+                41.483841
+              ], 
+              [
+                -81.850141, 
+                41.486255
+              ], 
+              [
+                -81.837092, 
+                41.489367
+              ], 
+              [
+                -81.836059, 
+                41.489614
+              ], 
+              [
+                -81.810992, 
+                41.495592
+              ], 
+              [
+                -81.810758, 
+                41.495648
+              ], 
+              [
+                -81.801207, 
+                41.496223
+              ], 
+              [
+                -81.800253, 
+                41.496281
+              ], 
+              [
+                -81.799746, 
+                41.496311
+              ], 
+              [
+                -81.794449, 
+                41.49663
+              ], 
+              [
+                -81.794157, 
+                41.496648
+              ], 
+              [
+                -81.782258, 
+                41.49605
+              ], 
+              [
+                -81.768898, 
+                41.491663
+              ], 
+              [
+                -81.768856, 
+                41.491649
+              ], 
+              [
+                -81.762489, 
+                41.49046
+              ], 
+              [
+                -81.75861, 
+                41.489736
+              ], 
+              [
+                -81.746095, 
+                41.4874
+              ], 
+              [
+                -81.745818, 
+                41.487348
+              ], 
+              [
+                -81.744755, 
+                41.48715
+              ], 
+              [
+                -81.744272, 
+                41.487263
+              ], 
+              [
+                -81.741852, 
+                41.487827
+              ], 
+              [
+                -81.738755, 
+                41.48855
+              ], 
+              [
+                -81.732674, 
+                41.491437
+              ], 
+              [
+                -81.727806, 
+                41.493749
+              ], 
+              [
+                -81.726429, 
+                41.494402
+              ], 
+              [
+                -81.725763, 
+                41.494718
+              ], 
+              [
+                -81.71931, 
+                41.497782
+              ], 
+              [
+                -81.716836, 
+                41.498957
+              ], 
+              [
+                -81.71559, 
+                41.499549
+              ], 
+              [
+                -81.710986, 
+                41.501734
+              ], 
+              [
+                -81.710953, 
+                41.50175
+              ], 
+              [
+                -81.707622, 
+                41.505108
+              ], 
+              [
+                -81.706864, 
+                41.505872
+              ], 
+              [
+                -81.69325, 
+                41.514161
+              ], 
+              [
+                -81.691248, 
+                41.515379
+              ], 
+              [
+                -81.688058, 
+                41.517321
+              ], 
+              [
+                -81.664884, 
+                41.53143
+              ], 
+              [
+                -81.664851, 
+                41.53145
+              ], 
+              [
+                -81.649872, 
+                41.535775
+              ], 
+              [
+                -81.648453, 
+                41.536185
+              ], 
+              [
+                -81.641055, 
+                41.538321
+              ], 
+              [
+                -81.633652, 
+                41.540458
+              ], 
+              [
+                -81.627431, 
+                41.544163
+              ], 
+              [
+                -81.61691, 
+                41.550428
+              ], 
+              [
+                -81.616567, 
+                41.550633
+              ], 
+              [
+                -81.615816, 
+                41.551079
+              ], 
+              [
+                -81.610163, 
+                41.554446
+              ], 
+              [
+                -81.60967, 
+                41.55474
+              ], 
+              [
+                -81.599747, 
+                41.560649
+              ], 
+              [
+                -81.593144, 
+                41.565462
+              ], 
+              [
+                -81.593092, 
+                41.5655
+              ], 
+              [
+                -81.591981, 
+                41.56631
+              ], 
+              [
+                -81.591471, 
+                41.566682
+              ], 
+              [
+                -81.579815, 
+                41.575178
+              ], 
+              [
+                -81.579746, 
+                41.575228
+              ], 
+              [
+                -81.579727, 
+                41.575243
+              ], 
+              [
+                -81.579285, 
+                41.575565
+              ], 
+              [
+                -81.578666, 
+                41.576016
+              ], 
+              [
+                -81.577459, 
+                41.576896
+              ], 
+              [
+                -81.575715, 
+                41.578167
+              ], 
+              [
+                -81.575577, 
+                41.578267
+              ], 
+              [
+                -81.562844, 
+                41.587549
+              ], 
+              [
+                -81.531674, 
+                41.612972
+              ], 
+              [
+                -81.531612, 
+                41.613023
+              ], 
+              [
+                -81.529955, 
+                41.614374
+              ], 
+              [
+                -81.529742, 
+                41.614548
+              ], 
+              [
+                -81.527026, 
+                41.615373
+              ], 
+              [
+                -81.520707, 
+                41.617292
+              ], 
+              [
+                -81.509359, 
+                41.620739
+              ], 
+              [
+                -81.50044, 
+                41.623448
+              ], 
+              [
+                -81.48864, 
+                41.631348
+              ], 
+              [
+                -81.486919, 
+                41.632704
+              ], 
+              [
+                -81.477544, 
+                41.640086
+              ], 
+              [
+                -81.466038, 
+                41.649148
+              ], 
+              [
+                -81.452461, 
+                41.663139
+              ], 
+              [
+                -81.447734, 
+                41.668011
+              ], 
+              [
+                -81.443647, 
+                41.672222
+              ], 
+              [
+                -81.442843, 
+                41.673051
+              ], 
+              [
+                -81.44272, 
+                41.673178
+              ], 
+              [
+                -81.442645, 
+                41.673255
+              ], 
+              [
+                -81.442552, 
+                41.673314
+              ], 
+              [
+                -81.441803, 
+                41.673783
+              ], 
+              [
+                -81.441339, 
+                41.674074
+              ], 
+              [
+                -81.438971, 
+                41.67556
+              ], 
+              [
+                -81.437809, 
+                41.676289
+              ], 
+              [
+                -81.437014, 
+                41.676788
+              ], 
+              [
+                -81.435582, 
+                41.677686
+              ], 
+              [
+                -81.431441, 
+                41.680285
+              ], 
+              [
+                -81.413062, 
+                41.691816
+              ], 
+              [
+                -81.407984, 
+                41.695002
+              ], 
+              [
+                -81.406098, 
+                41.696185
+              ], 
+              [
+                -81.404476, 
+                41.697203
+              ], 
+              [
+                -81.402417, 
+                41.698495
+              ], 
+              [
+                -81.400686, 
+                41.699581
+              ], 
+              [
+                -81.400617, 
+                41.699624
+              ], 
+              [
+                -81.388632, 
+                41.707144
+              ], 
+              [
+                -81.388269, 
+                41.707355
+              ], 
+              [
+                -81.380935, 
+                41.711622
+              ], 
+              [
+                -81.374509, 
+                41.715361
+              ], 
+              [
+                -81.374454, 
+                41.715393
+              ], 
+              [
+                -81.373666, 
+                41.715852
+              ], 
+              [
+                -81.372587, 
+                41.71648
+              ], 
+              [
+                -81.368913, 
+                41.718618
+              ], 
+              [
+                -81.36867, 
+                41.718759
+              ], 
+              [
+                -81.367498, 
+                41.719441
+              ], 
+              [
+                -81.353229, 
+                41.727743
+              ], 
+              [
+                -81.330154, 
+                41.737938
+              ], 
+              [
+                -81.309499, 
+                41.747064
+              ], 
+              [
+                -81.30701, 
+                41.748164
+              ], 
+              [
+                -81.306495, 
+                41.748392
+              ], 
+              [
+                -81.301626, 
+                41.750543
+              ], 
+              [
+                -81.288892, 
+                41.758945
+              ], 
+              [
+                -81.286925, 
+                41.760243
+              ], 
+              [
+                -81.279925, 
+                41.759944
+              ], 
+              [
+                -81.279187, 
+                41.759859
+              ], 
+              [
+                -81.265576, 
+                41.758298
+              ], 
+              [
+                -81.264224, 
+                41.758143
+              ], 
+              [
+                -81.263751, 
+                41.758239
+              ], 
+              [
+                -81.26311, 
+                41.758369
+              ], 
+              [
+                -81.259349, 
+                41.75913
+              ], 
+              [
+                -81.25552, 
+                41.759905
+              ], 
+              [
+                -81.252977, 
+                41.76042
+              ], 
+              [
+                -81.251918, 
+                41.760634
+              ], 
+              [
+                -81.248672, 
+                41.761291
+              ], 
+              [
+                -81.248609, 
+                41.761316
+              ], 
+              [
+                -81.247832, 
+                41.761623
+              ], 
+              [
+                -81.247607, 
+                41.761712
+              ], 
+              [
+                -81.202359, 
+                41.77957
+              ], 
+              [
+                -81.201721, 
+                41.779822
+              ], 
+              [
+                -81.192684, 
+                41.783389
+              ], 
+              [
+                -81.184368, 
+                41.786671
+              ], 
+              [
+                -81.183328, 
+                41.78712
+              ], 
+              [
+                -81.167638, 
+                41.793903
+              ], 
+              [
+                -81.122295, 
+                41.813503
+              ], 
+              [
+                -81.112885, 
+                41.817571
+              ], 
+              [
+                -81.098931, 
+                41.821319
+              ], 
+              [
+                -81.095592, 
+                41.822216
+              ], 
+              [
+                -81.092716, 
+                41.822988
+              ], 
+              [
+                -81.05192, 
+                41.839557
+              ], 
+              [
+                -81.024525, 
+                41.846469
+              ], 
+              [
+                -81.01049, 
+                41.853962
+              ], 
+              [
+                -81.002663, 
+                41.854846
+              ], 
+              [
+                -81.002117, 
+                41.854908
+              ], 
+              [
+                -80.991799, 
+                41.856074
+              ], 
+              [
+                -80.973674, 
+                41.858122
+              ], 
+              [
+                -80.971141, 
+                41.858409
+              ], 
+              [
+                -80.958494, 
+                41.859838
+              ], 
+              [
+                -80.936244, 
+                41.862352
+              ], 
+              [
+                -80.916528, 
+                41.865954
+              ], 
+              [
+                -80.900342, 
+                41.868912
+              ], 
+              [
+                -80.853542, 
+                41.884685
+              ], 
+              [
+                -80.852064, 
+                41.885183
+              ], 
+              [
+                -80.826889, 
+                41.893668
+              ], 
+              [
+                -80.819165, 
+                41.896271
+              ], 
+              [
+                -80.816444, 
+                41.897188
+              ], 
+              [
+                -80.814943, 
+                41.897694
+              ], 
+              [
+                -80.81324, 
+                41.89876
+              ], 
+              [
+                -80.812659, 
+                41.899125
+              ], 
+              [
+                -80.808697, 
+                41.901606
+              ], 
+              [
+                -80.80801, 
+                41.902304
+              ], 
+              [
+                -80.806133, 
+                41.904211
+              ], 
+              [
+                -80.801436, 
+                41.908982
+              ], 
+              [
+                -80.800794, 
+                41.909635
+              ], 
+              [
+                -80.799822, 
+                41.909749
+              ], 
+              [
+                -80.798311, 
+                41.909926
+              ], 
+              [
+                -80.794388, 
+                41.910386
+              ], 
+              [
+                -80.78641, 
+                41.911322
+              ], 
+              [
+                -80.785497, 
+                41.911429
+              ], 
+              [
+                -80.784682, 
+                41.911525
+              ], 
+              [
+                -80.782944, 
+                41.908294
+              ], 
+              [
+                -80.782052, 
+                41.906635
+              ], 
+              [
+                -80.781112, 
+                41.906897
+              ], 
+              [
+                -80.77709, 
+                41.908018
+              ], 
+              [
+                -80.771784, 
+                41.909496
+              ], 
+              [
+                -80.770756, 
+                41.909782
+              ], 
+              [
+                -80.76802, 
+                41.910545
+              ], 
+              [
+                -80.766046, 
+                41.911095
+              ], 
+              [
+                -80.762176, 
+                41.912173
+              ], 
+              [
+                -80.757945, 
+                41.913352
+              ], 
+              [
+                -80.727504, 
+                41.918593
+              ], 
+              [
+                -80.720816, 
+                41.919744
+              ], 
+              [
+                -80.717469, 
+                41.920656
+              ], 
+              [
+                -80.712218, 
+                41.922087
+              ], 
+              [
+                -80.708293, 
+                41.923157
+              ], 
+              [
+                -80.699363, 
+                41.925591
+              ], 
+              [
+                -80.693429, 
+                41.927208
+              ], 
+              [
+                -80.635576, 
+                41.942976
+              ], 
+              [
+                -80.619443, 
+                41.947373
+              ], 
+              [
+                -80.619242, 
+                41.947428
+              ], 
+              [
+                -80.60861, 
+                41.950325
+              ], 
+              [
+                -80.581882, 
+                41.95761
+              ], 
+              [
+                -80.579439, 
+                41.958499
+              ], 
+              [
+                -80.576735, 
+                41.959483
+              ], 
+              [
+                -80.576591, 
+                41.959535
+              ], 
+              [
+                -80.5755, 
+                41.959932
+              ], 
+              [
+                -80.572028, 
+                41.961196
+              ], 
+              [
+                -80.563327, 
+                41.964362
+              ], 
+              [
+                -80.560671, 
+                41.965328
+              ], 
+              [
+                -80.555898, 
+                41.967065
+              ], 
+              [
+                -80.553836, 
+                41.967815
+              ], 
+              [
+                -80.533774, 
+                41.973475
+              ], 
+              [
+                -80.53139, 
+                41.974147
+              ], 
+              [
+                -80.530164, 
+                41.974493
+              ], 
+              [
+                -80.529274, 
+                41.974744
+              ], 
+              [
+                -80.525521, 
+                41.975803
+              ], 
+              [
+                -80.522057, 
+                41.97678
+              ], 
+              [
+                -80.519461, 
+                41.977513
+              ], 
+              [
+                -80.519425, 
+                41.977523
+              ], 
+              [
+                -80.519425, 
+                41.977522
+              ], 
+              [
+                -80.519405, 
+                41.976158
+              ], 
+              [
+                -80.519304, 
+                41.943992
+              ], 
+              [
+                -80.519345, 
+                41.929168
+              ], 
+              [
+                -80.519294, 
+                41.849563
+              ], 
+              [
+                -80.519239, 
+                41.765138
+              ], 
+              [
+                -80.519369, 
+                41.752487
+              ], 
+              [
+                -80.519408, 
+                41.739359
+              ], 
+              [
+                -80.519373, 
+                41.701473
+              ], 
+              [
+                -80.519424, 
+                41.671228
+              ], 
+              [
+                -80.519357, 
+                41.669767
+              ], 
+              [
+                -80.519339, 
+                41.539297
+              ], 
+              [
+                -80.519157, 
+                41.528769
+              ], 
+              [
+                -80.519225, 
+                41.499924
+              ], 
+              [
+                -80.519209, 
+                41.489013
+              ], 
+              [
+                -80.519169, 
+                41.462581
+              ], 
+              [
+                -80.518993, 
+                41.435454
+              ], 
+              [
+                -80.518993, 
+                41.416437
+              ], 
+              [
+                -80.519025, 
+                41.416438
+              ], 
+              [
+                -80.519249, 
+                41.378918
+              ], 
+              [
+                -80.519217, 
+                41.372006
+              ], 
+              [
+                -80.519249, 
+                41.36103
+              ], 
+              [
+                -80.519297, 
+                41.350833
+              ], 
+              [
+                -80.519345, 
+                41.34074
+              ], 
+              [
+                -80.519345, 
+                41.340145
+              ], 
+              [
+                -80.519293, 
+                41.339654
+              ], 
+              [
+                -80.519293, 
+                41.339054
+              ], 
+              [
+                -80.519311, 
+                41.339052
+              ], 
+              [
+                -80.519281, 
+                41.337174
+              ], 
+              [
+                -80.519281, 
+                41.337145
+              ], 
+              [
+                -80.519281, 
+                41.335958
+              ], 
+              [
+                -80.519265, 
+                41.333495
+              ], 
+              [
+                -80.519129, 
+                41.312408
+              ], 
+              [
+                -80.518794, 
+                41.305509
+              ], 
+              [
+                -80.518996, 
+                41.2683
+              ], 
+              [
+                -80.518993, 
+                41.268155
+              ], 
+              [
+                -80.518893, 
+                41.265155
+              ], 
+              [
+                -80.518693, 
+                41.248855
+              ], 
+              [
+                -80.518893, 
+                41.232556
+              ], 
+              [
+                -80.518893, 
+                41.219357
+              ], 
+              [
+                -80.518893, 
+                41.219356
+              ], 
+              [
+                -80.51883, 
+                41.209213
+              ], 
+              [
+                -80.519144, 
+                41.171203
+              ], 
+              [
+                -80.519115, 
+                41.14552
+              ], 
+              [
+                -80.519167, 
+                41.133388
+              ], 
+              [
+                -80.519167, 
+                41.133343
+              ], 
+              [
+                -80.519012, 
+                41.125116
+              ], 
+              [
+                -80.519012, 
+                41.125093
+              ], 
+              [
+                -80.519012, 
+                41.125057
+              ], 
+              [
+                -80.519056, 
+                41.125057
+              ], 
+              [
+                -80.518992, 
+                41.115958
+              ], 
+              [
+                -80.519192, 
+                41.105358
+              ], 
+              [
+                -80.519125, 
+                41.100819
+              ], 
+              [
+                -80.519092, 
+                41.090658
+              ], 
+              [
+                -80.519088, 
+                41.082074
+              ], 
+              [
+                -80.518999, 
+                41.075014
+              ], 
+              [
+                -80.51896, 
+                41.071866
+              ], 
+              [
+                -80.518928, 
+                41.070954
+              ], 
+              [
+                -80.51896, 
+                41.061546
+              ], 
+              [
+                -80.518927, 
+                41.015387
+              ], 
+              [
+                -80.518989, 
+                40.995445
+              ], 
+              [
+                -80.519, 
+                40.98738
+              ], 
+              [
+                -80.519091, 
+                40.921061
+              ], 
+              [
+                -80.51979, 
+                40.900761
+              ], 
+              [
+                -80.519764, 
+                40.899858
+              ], 
+              [
+                -80.519039, 
+                40.851339
+              ], 
+              [
+                -80.51902, 
+                40.850073
+              ], 
+              [
+                -80.519081, 
+                40.849157
+              ], 
+              [
+                -80.518992, 
+                40.801221
+              ], 
+              [
+                -80.519058, 
+                40.792298
+              ], 
+              [
+                -80.518991, 
+                40.638801
+              ], 
+              [
+                -80.56072, 
+                40.62368
+              ], 
+              [
+                -80.589041, 
+                40.620128
+              ], 
+              [
+                -80.594065, 
+                40.623664
+              ], 
+              [
+                -80.601494, 
+                40.625387
+              ], 
+              [
+                -80.627171, 
+                40.619936
+              ], 
+              [
+                -80.634355, 
+                40.616095
+              ], 
+              [
+                -80.665892, 
+                40.587728
+              ], 
+              [
+                -80.667957, 
+                40.582496
+              ], 
+              [
+                -80.666917, 
+                40.573664
+              ], 
+              [
+                -80.610259, 
+                40.490962
+              ], 
+              [
+                -80.599194, 
+                40.482566
+              ], 
+              [
+                -80.612295, 
+                40.434867
+              ], 
+              [
+                -80.617346, 
+                40.396004
+              ], 
+              [
+                -80.619196, 
+                40.381768
+              ], 
+              [
+                -80.609313, 
+                40.360468
+              ], 
+              [
+                -80.599895, 
+                40.317669
+              ], 
+              [
+                -80.602895, 
+                40.307069
+              ], 
+              [
+                -80.616696, 
+                40.28027
+              ], 
+              [
+                -80.637198, 
+                40.25507
+              ], 
+              [
+                -80.644598, 
+                40.25127
+              ], 
+              [
+                -80.652098, 
+                40.24497
+              ], 
+              [
+                -80.685391, 
+                40.187642
+              ], 
+              [
+                -80.703052, 
+                40.157231
+              ], 
+              [
+                -80.705482, 
+                40.153047
+              ], 
+              [
+                -80.726504, 
+                40.089072
+              ], 
+              [
+                -80.733104, 
+                40.058772
+              ], 
+              [
+                -80.730904, 
+                40.049172
+              ], 
+              [
+                -80.731504, 
+                40.037472
+              ], 
+              [
+                -80.732051, 
+                40.03324
+              ], 
+              [
+                -80.740126, 
+                39.970793
+              ], 
+              [
+                -80.743166, 
+                39.969113
+              ], 
+              [
+                -80.759455, 
+                39.958233
+              ], 
+              [
+                -80.806018, 
+                39.91713
+              ], 
+              [
+                -80.808722, 
+                39.91257
+              ], 
+              [
+                -80.809619, 
+                39.905626
+              ], 
+              [
+                -80.806179, 
+                39.897306
+              ], 
+              [
+                -80.812342, 
+                39.848845
+              ], 
+              [
+                -80.828618, 
+                39.720848
+              ], 
+              [
+                -80.829764, 
+                39.711839
+              ], 
+              [
+                -80.831871, 
+                39.705655
+              ], 
+              [
+                -80.88036, 
+                39.620706
+              ], 
+              [
+                -80.892208, 
+                39.616756
+              ], 
+              [
+                -80.943782, 
+                39.606926
+              ], 
+              [
+                -81.020055, 
+                39.55541
+              ], 
+              [
+                -81.038691, 
+                39.540464
+              ], 
+              [
+                -81.063587, 
+                39.520497
+              ], 
+              [
+                -81.127696, 
+                39.464879
+              ], 
+              [
+                -81.215617, 
+                39.388602
+              ], 
+              [
+                -81.223581, 
+                39.386062
+              ], 
+              [
+                -81.249088, 
+                39.389992
+              ], 
+              [
+                -81.270716, 
+                39.385914
+              ], 
+              [
+                -81.295373, 
+                39.37529
+              ], 
+              [
+                -81.347567, 
+                39.34577
+              ], 
+              [
+                -81.356911, 
+                39.343178
+              ], 
+              [
+                -81.371271, 
+                39.342062
+              ], 
+              [
+                -81.375961, 
+                39.341697
+              ], 
+              [
+                -81.384556, 
+                39.343449
+              ], 
+              [
+                -81.393794, 
+                39.351706
+              ], 
+              [
+                -81.406689, 
+                39.38809
+              ], 
+              [
+                -81.412706, 
+                39.394618
+              ], 
+              [
+                -81.435642, 
+                39.408474
+              ], 
+              [
+                -81.446543, 
+                39.410374
+              ], 
+              [
+                -81.456143, 
+                39.409274
+              ], 
+              [
+                -81.467744, 
+                39.403774
+              ], 
+              [
+                -81.542346, 
+                39.352874
+              ], 
+              [
+                -81.605816, 
+                39.275851
+              ], 
+              [
+                -81.695724, 
+                39.242859
+              ], 
+              [
+                -81.721551, 
+                39.212448
+              ], 
+              [
+                -81.740061, 
+                39.190652
+              ], 
+              [
+                -81.749853, 
+                39.186489
+              ], 
+              [
+                -81.749689, 
+                39.180742
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 44, 
+      "properties": {
+        "CENSUSAREA": 40860.694, 
+        "GEO_ID": "0400000US39", 
+        "ISO": "US-OH", 
+        "LSAD": "", 
+        "NAME": "Ohio", 
+        "NAME_1": "Ohio", 
+        "STATE": "OH"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -121.908267, 
+                45.654399
+              ], 
+              [
+                -121.900858, 
+                45.662009
+              ], 
+              [
+                -121.901855, 
+                45.670716
+              ], 
+              [
+                -121.867167, 
+                45.693277
+              ], 
+              [
+                -121.820055, 
+                45.704649
+              ], 
+              [
+                -121.811304, 
+                45.706761
+              ], 
+              [
+                -121.735104, 
+                45.694039
+              ], 
+              [
+                -121.707358, 
+                45.694809
+              ], 
+              [
+                -121.626185, 
+                45.705915
+              ], 
+              [
+                -121.533106, 
+                45.726541
+              ], 
+              [
+                -121.522392, 
+                45.724677
+              ], 
+              [
+                -121.462849, 
+                45.701367
+              ], 
+              [
+                -121.441045, 
+                45.69727
+              ], 
+              [
+                -121.423592, 
+                45.69399
+              ], 
+              [
+                -121.401739, 
+                45.692887
+              ], 
+              [
+                -121.372574, 
+                45.703111
+              ], 
+              [
+                -121.33777, 
+                45.704949
+              ], 
+              [
+                -121.312198, 
+                45.699925
+              ], 
+              [
+                -121.215779, 
+                45.671238
+              ], 
+              [
+                -121.200367, 
+                45.649829
+              ], 
+              [
+                -121.195233, 
+                45.629513
+              ], 
+              [
+                -121.086675, 
+                45.646667
+              ], 
+              [
+                -121.06437, 
+                45.652549
+              ], 
+              [
+                -120.943977, 
+                45.656445
+              ], 
+              [
+                -120.915876, 
+                45.641345
+              ], 
+              [
+                -120.870042, 
+                45.661242
+              ], 
+              [
+                -120.855674, 
+                45.671545
+              ], 
+              [
+                -120.788872, 
+                45.686246
+              ], 
+              [
+                -120.68937, 
+                45.715847
+              ], 
+              [
+                -120.668869, 
+                45.730147
+              ], 
+              [
+                -120.653559, 
+                45.737237
+              ], 
+              [
+                -120.634968, 
+                45.745847
+              ], 
+              [
+                -120.591166, 
+                45.746547
+              ], 
+              [
+                -120.559465, 
+                45.738348
+              ], 
+              [
+                -120.521964, 
+                45.709848
+              ], 
+              [
+                -120.505863, 
+                45.700048
+              ], 
+              [
+                -120.482362, 
+                45.694449
+              ], 
+              [
+                -120.40396, 
+                45.699249
+              ], 
+              [
+                -120.210754, 
+                45.725951
+              ], 
+              [
+                -120.170453, 
+                45.761951
+              ], 
+              [
+                -120.141352, 
+                45.773152
+              ], 
+              [
+                -120.001148, 
+                45.811902
+              ], 
+              [
+                -119.999506, 
+                45.812199
+              ], 
+              [
+                -119.868135, 
+                45.835962
+              ], 
+              [
+                -119.802655, 
+                45.84753
+              ], 
+              [
+                -119.772927, 
+                45.845578
+              ], 
+              [
+                -119.669877, 
+                45.856867
+              ], 
+              [
+                -119.623393, 
+                45.905639
+              ], 
+              [
+                -119.600549, 
+                45.919581
+              ], 
+              [
+                -119.571584, 
+                45.925456
+              ], 
+              [
+                -119.524632, 
+                45.908605
+              ], 
+              [
+                -119.487829, 
+                45.906307
+              ], 
+              [
+                -119.432067, 
+                45.913629
+              ], 
+              [
+                -119.37613, 
+                45.920974
+              ], 
+              [
+                -119.322509, 
+                45.933183
+              ], 
+              [
+                -119.25715, 
+                45.939926
+              ], 
+              [
+                -119.225745, 
+                45.932725
+              ], 
+              [
+                -119.19553, 
+                45.92787
+              ], 
+              [
+                -119.169496, 
+                45.927603
+              ], 
+              [
+                -119.12612, 
+                45.932859
+              ], 
+              [
+                -119.093221, 
+                45.942745
+              ], 
+              [
+                -119.027056, 
+                45.969134
+              ], 
+              [
+                -119.008558, 
+                45.97927
+              ], 
+              [
+                -118.987129, 
+                45.999855
+              ], 
+              [
+                -118.67787, 
+                46.000935
+              ], 
+              [
+                -118.658717, 
+                46.000955
+              ], 
+              [
+                -118.639332, 
+                46.000994
+              ], 
+              [
+                -118.637725, 
+                46.00097
+              ], 
+              [
+                -118.579906, 
+                46.000818
+              ], 
+              [
+                -118.57571, 
+                46.000718
+              ], 
+              [
+                -118.569392, 
+                46.000773
+              ], 
+              [
+                -118.537119, 
+                46.00084
+              ], 
+              [
+                -118.497027, 
+                46.00062
+              ], 
+              [
+                -118.470756, 
+                46.000632
+              ], 
+              [
+                -118.37836, 
+                46.000574
+              ], 
+              [
+                -118.36779, 
+                46.000622
+              ], 
+              [
+                -118.314982, 
+                46.000453
+              ], 
+              [
+                -118.256368, 
+                46.000439
+              ], 
+              [
+                -118.25253, 
+                46.000459
+              ], 
+              [
+                -118.236584, 
+                46.000418
+              ], 
+              [
+                -118.228941, 
+                46.000421
+              ], 
+              [
+                -118.131019, 
+                46.00028
+              ], 
+              [
+                -118.126197, 
+                46.000282
+              ], 
+              [
+                -117.996911, 
+                46.000787
+              ], 
+              [
+                -117.977766, 
+                46.000695
+              ], 
+              [
+                -117.603163, 
+                45.998887
+              ], 
+              [
+                -117.504833, 
+                45.998317
+              ], 
+              [
+                -117.48013, 
+                45.99787
+              ], 
+              [
+                -117.480103, 
+                45.99787
+              ], 
+              [
+                -117.47536, 
+                45.997855
+              ], 
+              [
+                -117.475148, 
+                45.997893
+              ], 
+              [
+                -117.216731, 
+                45.998356
+              ], 
+              [
+                -117.214534, 
+                45.99832
+              ], 
+              [
+                -117.212616, 
+                45.998321
+              ], 
+              [
+                -116.915989, 
+                45.995413
+              ], 
+              [
+                -116.875125, 
+                45.9422
+              ], 
+              [
+                -116.866544, 
+                45.916958
+              ], 
+              [
+                -116.857254, 
+                45.904159
+              ], 
+              [
+                -116.796418, 
+                45.853807
+              ], 
+              [
+                -116.789099, 
+                45.847749
+              ], 
+              [
+                -116.633377, 
+                45.784681
+              ], 
+              [
+                -116.59421, 
+                45.77908
+              ], 
+              [
+                -116.54809, 
+                45.752364
+              ], 
+              [
+                -116.535698, 
+                45.734231
+              ], 
+              [
+                -116.538014, 
+                45.714929
+              ], 
+              [
+                -116.535396, 
+                45.691734
+              ], 
+              [
+                -116.528272, 
+                45.681473
+              ], 
+              [
+                -116.510938, 
+                45.668114
+              ], 
+              [
+                -116.48912, 
+                45.65114
+              ], 
+              [
+                -116.471504, 
+                45.628467
+              ], 
+              [
+                -116.463504, 
+                45.615785
+              ], 
+              [
+                -116.463635, 
+                45.602785
+              ], 
+              [
+                -116.481208, 
+                45.580597
+              ], 
+              [
+                -116.553473, 
+                45.499107
+              ], 
+              [
+                -116.673793, 
+                45.321511
+              ], 
+              [
+                -116.691197, 
+                45.269245
+              ], 
+              [
+                -116.696047, 
+                45.254679
+              ], 
+              [
+                -116.709536, 
+                45.203015
+              ], 
+              [
+                -116.729607, 
+                45.142091
+              ], 
+              [
+                -116.783902, 
+                45.079022
+              ], 
+              [
+                -116.845369, 
+                45.017059
+              ], 
+              [
+                -116.858277, 
+                44.978008
+              ], 
+              [
+                -116.850737, 
+                44.958113
+              ], 
+              [
+                -116.844653, 
+                44.949338
+              ], 
+              [
+                -116.835702, 
+                44.940633
+              ], 
+              [
+                -116.83199, 
+                44.933007
+              ], 
+              [
+                -116.852427, 
+                44.887577
+              ], 
+              [
+                -116.891463, 
+                44.840531
+              ], 
+              [
+                -116.931499, 
+                44.792281
+              ], 
+              [
+                -117.016216, 
+                44.755572
+              ], 
+              [
+                -117.03827, 
+                44.748179
+              ], 
+              [
+                -117.044217, 
+                44.74514
+              ], 
+              [
+                -117.062273, 
+                44.727143
+              ], 
+              [
+                -117.095868, 
+                44.664737
+              ], 
+              [
+                -117.1159, 
+                44.623339
+              ], 
+              [
+                -117.144161, 
+                44.545647
+              ], 
+              [
+                -117.149242, 
+                44.536151
+              ], 
+              [
+                -117.156489, 
+                44.528312
+              ], 
+              [
+                -117.208454, 
+                44.485928
+              ], 
+              [
+                -117.214889, 
+                44.466901
+              ], 
+              [
+                -117.189769, 
+                44.336585
+              ], 
+              [
+                -117.191546, 
+                44.329621
+              ], 
+              [
+                -117.194827, 
+                44.31054
+              ], 
+              [
+                -117.196597, 
+                44.30228
+              ], 
+              [
+                -117.197506, 
+                44.29728
+              ], 
+              [
+                -117.197777, 
+                44.295789
+              ], 
+              [
+                -117.196597, 
+                44.287529
+              ], 
+              [
+                -117.190107, 
+                44.273958
+              ], 
+              [
+                -117.170342, 
+                44.25889
+              ], 
+              [
+                -117.041144, 
+                44.243653
+              ], 
+              [
+                -117.03317, 
+                44.248192
+              ], 
+              [
+                -117.027558, 
+                44.248881
+              ], 
+              [
+                -116.98687, 
+                44.245477
+              ], 
+              [
+                -116.975905, 
+                44.242844
+              ], 
+              [
+                -116.902752, 
+                44.179467
+              ], 
+              [
+                -116.895757, 
+                44.171267
+              ], 
+              [
+                -116.894083, 
+                44.160191
+              ], 
+              [
+                -116.895931, 
+                44.154295
+              ], 
+              [
+                -116.897145, 
+                44.152537
+              ], 
+              [
+                -116.931719, 
+                44.102474
+              ], 
+              [
+                -116.935301, 
+                43.988616
+              ], 
+              [
+                -116.961535, 
+                43.918388
+              ], 
+              [
+                -116.979186, 
+                43.879973
+              ], 
+              [
+                -116.982482, 
+                43.872799
+              ], 
+              [
+                -116.996504, 
+                43.864714
+              ], 
+              [
+                -117.026634, 
+                43.808104
+              ], 
+              [
+                -117.026651, 
+                43.733935
+              ], 
+              [
+                -117.026841, 
+                43.732905
+              ], 
+              [
+                -117.026725, 
+                43.714815
+              ], 
+              [
+                -117.026825, 
+                43.706193
+              ], 
+              [
+                -117.026586, 
+                43.683001
+              ], 
+              [
+                -117.026623, 
+                43.680865
+              ], 
+              [
+                -117.026717, 
+                43.675523
+              ], 
+              [
+                -117.026661, 
+                43.664385
+              ], 
+              [
+                -117.026705, 
+                43.631659
+              ], 
+              [
+                -117.026905, 
+                43.62488
+              ], 
+              [
+                -117.027001, 
+                43.621032
+              ], 
+              [
+                -117.026937, 
+                43.617614
+              ], 
+              [
+                -117.026789, 
+                43.610669
+              ], 
+              [
+                -117.02676, 
+                43.601912
+              ], 
+              [
+                -117.026824, 
+                43.600357
+              ], 
+              [
+                -117.026889, 
+                43.596033
+              ], 
+              [
+                -117.026922, 
+                43.593632
+              ], 
+              [
+                -117.026774, 
+                43.578674
+              ], 
+              [
+                -117.026746, 
+                43.577526
+              ], 
+              [
+                -117.026652, 
+                43.025128
+              ], 
+              [
+                -117.026683, 
+                43.024876
+              ], 
+              [
+                -117.026253, 
+                42.807447
+              ], 
+              [
+                -117.026303, 
+                42.80717
+              ], 
+              [
+                -117.026331, 
+                42.807015
+              ], 
+              [
+                -117.026222, 
+                42.000252
+              ], 
+              [
+                -118.197189, 
+                41.996995
+              ], 
+              [
+                -118.775869, 
+                41.992692
+              ], 
+              [
+                -118.777228, 
+                41.992671
+              ], 
+              [
+                -119.324182, 
+                41.994278
+              ], 
+              [
+                -119.360177, 
+                41.994384
+              ], 
+              [
+                -119.790087, 
+                41.997544
+              ], 
+              [
+                -119.986678, 
+                41.995842
+              ], 
+              [
+                -119.999168, 
+                41.99454
+              ], 
+              [
+                -120.286424, 
+                41.993058
+              ], 
+              [
+                -120.326005, 
+                41.993122
+              ], 
+              [
+                -120.692219, 
+                41.993677
+              ], 
+              [
+                -120.693941, 
+                41.993676
+              ], 
+              [
+                -120.879481, 
+                41.993781
+              ], 
+              [
+                -121.035195, 
+                41.993323
+              ], 
+              [
+                -121.154347, 
+                41.996352
+              ], 
+              [
+                -121.334385, 
+                41.996655
+              ], 
+              [
+                -121.335734, 
+                41.996518
+              ], 
+              [
+                -121.340517, 
+                41.99622
+              ], 
+              [
+                -121.360253, 
+                41.99668
+              ], 
+              [
+                -121.376101, 
+                41.997026
+              ], 
+              [
+                -121.434977, 
+                41.997022
+              ], 
+              [
+                -121.43961, 
+                41.99708
+              ], 
+              [
+                -121.44754, 
+                41.997169
+              ], 
+              [
+                -121.52025, 
+                41.997983
+              ], 
+              [
+                -121.580865, 
+                41.998668
+              ], 
+              [
+                -121.675348, 
+                42.000351
+              ], 
+              [
+                -121.689159, 
+                42.000584
+              ], 
+              [
+                -121.705045, 
+                42.000766
+              ], 
+              [
+                -121.708199, 
+                42.000815
+              ], 
+              [
+                -122.001119, 
+                42.004017
+              ], 
+              [
+                -122.155408, 
+                42.007429
+              ], 
+              [
+                -122.156666, 
+                42.007384
+              ], 
+              [
+                -122.160438, 
+                42.007637
+              ], 
+              [
+                -122.161328, 
+                42.007637
+              ], 
+              [
+                -122.289527, 
+                42.007764
+              ], 
+              [
+                -122.289533, 
+                42.007764
+              ], 
+              [
+                -122.378193, 
+                42.009518
+              ], 
+              [
+                -122.501135, 
+                42.00846
+              ], 
+              [
+                -122.634739, 
+                42.004858
+              ], 
+              [
+                -123.001152, 
+                42.003
+              ], 
+              [
+                -123.045254, 
+                42.003049
+              ], 
+              [
+                -123.154908, 
+                42.008036
+              ], 
+              [
+                -123.230762, 
+                42.003845
+              ], 
+              [
+                -123.230764, 
+                42.003845
+              ], 
+              [
+                -123.347562, 
+                41.999108
+              ], 
+              [
+                -123.49883, 
+                42.000525
+              ], 
+              [
+                -123.498896, 
+                42.000474
+              ], 
+              [
+                -123.501997, 
+                42.000527
+              ], 
+              [
+                -123.518075, 
+                42.000436
+              ], 
+              [
+                -123.624554, 
+                41.999837
+              ], 
+              [
+                -123.821472, 
+                41.995473
+              ], 
+              [
+                -124.086661, 
+                41.996869
+              ], 
+              [
+                -124.087827, 
+                41.996891
+              ], 
+              [
+                -124.100216, 
+                41.996842
+              ], 
+              [
+                -124.100921, 
+                41.996956
+              ], 
+              [
+                -124.211605, 
+                41.99846
+              ], 
+              [
+                -124.214213, 
+                42.005939
+              ], 
+              [
+                -124.270464, 
+                42.045553
+              ], 
+              [
+                -124.287374, 
+                42.046016
+              ], 
+              [
+                -124.299649, 
+                42.051736
+              ], 
+              [
+                -124.314289, 
+                42.067864
+              ], 
+              [
+                -124.34101, 
+                42.092929
+              ], 
+              [
+                -124.356229, 
+                42.114952
+              ], 
+              [
+                -124.357122, 
+                42.118016
+              ], 
+              [
+                -124.351535, 
+                42.129796
+              ], 
+              [
+                -124.351784, 
+                42.134965
+              ], 
+              [
+                -124.355696, 
+                42.141964
+              ], 
+              [
+                -124.361563, 
+                42.143767
+              ], 
+              [
+                -124.366028, 
+                42.152343
+              ], 
+              [
+                -124.366832, 
+                42.15845
+              ], 
+              [
+                -124.363389, 
+                42.158588
+              ], 
+              [
+                -124.360318, 
+                42.162272
+              ], 
+              [
+                -124.361009, 
+                42.180752
+              ], 
+              [
+                -124.367751, 
+                42.188321
+              ], 
+              [
+                -124.373175, 
+                42.190218
+              ], 
+              [
+                -124.374949, 
+                42.193129
+              ], 
+              [
+                -124.376215, 
+                42.196381
+              ], 
+              [
+                -124.375553, 
+                42.20882
+              ], 
+              [
+                -124.377762, 
+                42.218809
+              ], 
+              [
+                -124.383633, 
+                42.22716
+              ], 
+              [
+                -124.410982, 
+                42.250547
+              ], 
+              [
+                -124.411534, 
+                42.254115
+              ], 
+              [
+                -124.408514, 
+                42.260588
+              ], 
+              [
+                -124.405148, 
+                42.278107
+              ], 
+              [
+                -124.410556, 
+                42.307431
+              ], 
+              [
+                -124.429288, 
+                42.331746
+              ], 
+              [
+                -124.427222, 
+                42.33488
+              ], 
+              [
+                -124.425554, 
+                42.351874
+              ], 
+              [
+                -124.424066, 
+                42.377242
+              ], 
+              [
+                -124.424863, 
+                42.395426
+              ], 
+              [
+                -124.428068, 
+                42.420333
+              ], 
+              [
+                -124.434882, 
+                42.434916
+              ], 
+              [
+                -124.435105, 
+                42.440163
+              ], 
+              [
+                -124.422038, 
+                42.461226
+              ], 
+              [
+                -124.423084, 
+                42.478952
+              ], 
+              [
+                -124.421381, 
+                42.491737
+              ], 
+              [
+                -124.399065, 
+                42.539928
+              ], 
+              [
+                -124.390664, 
+                42.566593
+              ], 
+              [
+                -124.389977, 
+                42.574758
+              ], 
+              [
+                -124.400918, 
+                42.597518
+              ], 
+              [
+                -124.399421, 
+                42.618079
+              ], 
+              [
+                -124.401177, 
+                42.627192
+              ], 
+              [
+                -124.413119, 
+                42.657934
+              ], 
+              [
+                -124.416774, 
+                42.661594
+              ], 
+              [
+                -124.45074, 
+                42.675798
+              ], 
+              [
+                -124.451484, 
+                42.677787
+              ], 
+              [
+                -124.447487, 
+                42.68474
+              ], 
+              [
+                -124.448418, 
+                42.689909
+              ], 
+              [
+                -124.473864, 
+                42.732671
+              ], 
+              [
+                -124.491679, 
+                42.741789
+              ], 
+              [
+                -124.498473, 
+                42.741077
+              ], 
+              [
+                -124.499122, 
+                42.738606
+              ], 
+              [
+                -124.510017, 
+                42.734746
+              ], 
+              [
+                -124.513368, 
+                42.735068
+              ], 
+              [
+                -124.514669, 
+                42.736806
+              ], 
+              [
+                -124.516236, 
+                42.753632
+              ], 
+              [
+                -124.524439, 
+                42.789793
+              ], 
+              [
+                -124.536073, 
+                42.814175
+              ], 
+              [
+                -124.544179, 
+                42.822958
+              ], 
+              [
+                -124.552441, 
+                42.840568
+              ], 
+              [
+                -124.500141, 
+                42.917502
+              ], 
+              [
+                -124.480938, 
+                42.951495
+              ], 
+              [
+                -124.479344, 
+                42.95497
+              ], 
+              [
+                -124.462619, 
+                42.99143
+              ], 
+              [
+                -124.456918, 
+                43.000315
+              ], 
+              [
+                -124.436198, 
+                43.071312
+              ], 
+              [
+                -124.432236, 
+                43.097383
+              ], 
+              [
+                -124.434451, 
+                43.115986
+              ], 
+              [
+                -124.424113, 
+                43.126859
+              ], 
+              [
+                -124.401726, 
+                43.184896
+              ], 
+              [
+                -124.395302, 
+                43.211101
+              ], 
+              [
+                -124.395607, 
+                43.223908
+              ], 
+              [
+                -124.38246, 
+                43.270167
+              ], 
+              [
+                -124.388891, 
+                43.290523
+              ], 
+              [
+                -124.393988, 
+                43.29926
+              ], 
+              [
+                -124.400404, 
+                43.302121
+              ], 
+              [
+                -124.402814, 
+                43.305872
+              ], 
+              [
+                -124.387642, 
+                43.325968
+              ], 
+              [
+                -124.373037, 
+                43.338953
+              ], 
+              [
+                -124.353332, 
+                43.342667
+              ], 
+              [
+                -124.341587, 
+                43.351337
+              ], 
+              [
+                -124.315012, 
+                43.388389
+              ], 
+              [
+                -124.286896, 
+                43.436296
+              ], 
+              [
+                -124.255609, 
+                43.502172
+              ], 
+              [
+                -124.233534, 
+                43.55713
+              ], 
+              [
+                -124.218876, 
+                43.610319
+              ], 
+              [
+                -124.203028, 
+                43.667825
+              ], 
+              [
+                -124.204888, 
+                43.673976
+              ], 
+              [
+                -124.198275, 
+                43.689481
+              ], 
+              [
+                -124.193455, 
+                43.706085
+              ], 
+              [
+                -124.168392, 
+                43.808903
+              ], 
+              [
+                -124.158684, 
+                43.863504
+              ], 
+              [
+                -124.150267, 
+                43.91085
+              ], 
+              [
+                -124.142704, 
+                43.958182
+              ], 
+              [
+                -124.133547, 
+                44.035845
+              ], 
+              [
+                -124.122406, 
+                44.104442
+              ], 
+              [
+                -124.125824, 
+                44.12613
+              ], 
+              [
+                -124.117006, 
+                44.171913
+              ], 
+              [
+                -124.114424, 
+                44.198164
+              ], 
+              [
+                -124.115671, 
+                44.206554
+              ], 
+              [
+                -124.111054, 
+                44.235071
+              ], 
+              [
+                -124.108945, 
+                44.265475
+              ], 
+              [
+                -124.109744, 
+                44.270597
+              ], 
+              [
+                -124.114869, 
+                44.272721
+              ], 
+              [
+                -124.115953, 
+                44.274641
+              ], 
+              [
+                -124.115849, 
+                44.276277
+              ], 
+              [
+                -124.1152, 
+                44.286486
+              ], 
+              [
+                -124.10907, 
+                44.303707
+              ], 
+              [
+                -124.108088, 
+                44.309926
+              ], 
+              [
+                -124.109556, 
+                44.314545
+              ], 
+              [
+                -124.100587, 
+                44.331926
+              ], 
+              [
+                -124.092101, 
+                44.370388
+              ], 
+              [
+                -124.084401, 
+                44.415611
+              ], 
+              [
+                -124.080989, 
+                44.419728
+              ], 
+              [
+                -124.071706, 
+                44.423662
+              ], 
+              [
+                -124.067569, 
+                44.428582
+              ], 
+              [
+                -124.073941, 
+                44.434481
+              ], 
+              [
+                -124.079301, 
+                44.430863
+              ], 
+              [
+                -124.082113, 
+                44.441518
+              ], 
+              [
+                -124.082061, 
+                44.478171
+              ], 
+              [
+                -124.084429, 
+                44.486927
+              ], 
+              [
+                -124.083601, 
+                44.501123
+              ], 
+              [
+                -124.076387, 
+                44.531214
+              ], 
+              [
+                -124.067251, 
+                44.60804
+              ], 
+              [
+                -124.06914, 
+                44.612979
+              ], 
+              [
+                -124.082326, 
+                44.608861
+              ], 
+              [
+                -124.084476, 
+                44.611056
+              ], 
+              [
+                -124.065202, 
+                44.622445
+              ], 
+              [
+                -124.065008, 
+                44.632504
+              ], 
+              [
+                -124.058281, 
+                44.658866
+              ], 
+              [
+                -124.060043, 
+                44.669361
+              ], 
+              [
+                -124.070394, 
+                44.683514
+              ], 
+              [
+                -124.063406, 
+                44.703177
+              ], 
+              [
+                -124.059077, 
+                44.737656
+              ], 
+              [
+                -124.066325, 
+                44.762671
+              ], 
+              [
+                -124.075473, 
+                44.771403
+              ], 
+              [
+                -124.074066, 
+                44.798107
+              ], 
+              [
+                -124.066746, 
+                44.831191
+              ], 
+              [
+                -124.063155, 
+                44.835333
+              ], 
+              [
+                -124.054151, 
+                44.838233
+              ], 
+              [
+                -124.048814, 
+                44.850007
+              ], 
+              [
+                -124.032296, 
+                44.900809
+              ], 
+              [
+                -124.025136, 
+                44.928175
+              ], 
+              [
+                -124.025678, 
+                44.936542
+              ], 
+              [
+                -124.023834, 
+                44.949825
+              ], 
+              [
+                -124.015243, 
+                44.982904
+              ], 
+              [
+                -124.004598, 
+                45.044959
+              ], 
+              [
+                -124.004386, 
+                45.046197
+              ], 
+              [
+                -124.004668, 
+                45.048167
+              ], 
+              [
+                -124.00977, 
+                45.047266
+              ], 
+              [
+                -124.017991, 
+                45.049808
+              ], 
+              [
+                -124.015851, 
+                45.064759
+              ], 
+              [
+                -124.012163, 
+                45.076921
+              ], 
+              [
+                -124.006057, 
+                45.084736
+              ], 
+              [
+                -124.004863, 
+                45.084232
+              ], 
+              [
+                -123.989529, 
+                45.094045
+              ], 
+              [
+                -123.975425, 
+                45.145476
+              ], 
+              [
+                -123.968187, 
+                45.201217
+              ], 
+              [
+                -123.972919, 
+                45.216784
+              ], 
+              [
+                -123.962887, 
+                45.280218
+              ], 
+              [
+                -123.964169, 
+                45.317026
+              ], 
+              [
+                -123.972899, 
+                45.33689
+              ], 
+              [
+                -123.978671, 
+                45.338854
+              ], 
+              [
+                -124.007756, 
+                45.336813
+              ], 
+              [
+                -124.007494, 
+                45.33974
+              ], 
+              [
+                -123.979715, 
+                45.347724
+              ], 
+              [
+                -123.973398, 
+                45.354791
+              ], 
+              [
+                -123.965728, 
+                45.386242
+              ], 
+              [
+                -123.960557, 
+                45.430778
+              ], 
+              [
+                -123.964074, 
+                45.449112
+              ], 
+              [
+                -123.972953, 
+                45.467513
+              ], 
+              [
+                -123.976544, 
+                45.489733
+              ], 
+              [
+                -123.970794, 
+                45.493507
+              ], 
+              [
+                -123.96634, 
+                45.493417
+              ], 
+              [
+                -123.957568, 
+                45.510399
+              ], 
+              [
+                -123.947556, 
+                45.564878
+              ], 
+              [
+                -123.956711, 
+                45.571303
+              ], 
+              [
+                -123.951246, 
+                45.585775
+              ], 
+              [
+                -123.939005, 
+                45.661923
+              ], 
+              [
+                -123.939448, 
+                45.708795
+              ], 
+              [
+                -123.943121, 
+                45.727031
+              ], 
+              [
+                -123.946027, 
+                45.733249
+              ], 
+              [
+                -123.968563, 
+                45.757019
+              ], 
+              [
+                -123.982578, 
+                45.761815
+              ], 
+              [
+                -123.981864, 
+                45.768285
+              ], 
+              [
+                -123.969459, 
+                45.782371
+              ], 
+              [
+                -123.96934, 
+                45.783197
+              ], 
+              [
+                -123.961544, 
+                45.837101
+              ], 
+              [
+                -123.962736, 
+                45.869974
+              ], 
+              [
+                -123.96763, 
+                45.907807
+              ], 
+              [
+                -123.979501, 
+                45.930389
+              ], 
+              [
+                -123.99304, 
+                45.938842
+              ], 
+              [
+                -123.993703, 
+                45.946431
+              ], 
+              [
+                -123.969991, 
+                45.969139
+              ], 
+              [
+                -123.957438, 
+                45.974469
+              ], 
+              [
+                -123.941831, 
+                45.97566
+              ], 
+              [
+                -123.937471, 
+                45.977306
+              ], 
+              [
+                -123.927891, 
+                46.009564
+              ], 
+              [
+                -123.92933, 
+                46.041978
+              ], 
+              [
+                -123.933366, 
+                46.071672
+              ], 
+              [
+                -123.947531, 
+                46.116131
+              ], 
+              [
+                -123.95919, 
+                46.141675
+              ], 
+              [
+                -123.974124, 
+                46.168798
+              ], 
+              [
+                -123.996766, 
+                46.20399
+              ], 
+              [
+                -124.010344, 
+                46.223514
+              ], 
+              [
+                -124.024305, 
+                46.229256
+              ], 
+              [
+                -124.011355, 
+                46.236223
+              ], 
+              [
+                -124.001998, 
+                46.237316
+              ], 
+              [
+                -123.998052, 
+                46.235327
+              ], 
+              [
+                -123.988429, 
+                46.224132
+              ], 
+              [
+                -123.990117, 
+                46.21763
+              ], 
+              [
+                -123.987196, 
+                46.211521
+              ], 
+              [
+                -123.982149, 
+                46.209662
+              ], 
+              [
+                -123.961739, 
+                46.207916
+              ], 
+              [
+                -123.950148, 
+                46.204097
+              ], 
+              [
+                -123.927038, 
+                46.191617
+              ], 
+              [
+                -123.912405, 
+                46.17945
+              ], 
+              [
+                -123.9042, 
+                46.169293
+              ], 
+              [
+                -123.891186, 
+                46.164778
+              ], 
+              [
+                -123.854801, 
+                46.157342
+              ], 
+              [
+                -123.842849, 
+                46.160529
+              ], 
+              [
+                -123.841521, 
+                46.169824
+              ], 
+              [
+                -123.863347, 
+                46.18235
+              ], 
+              [
+                -123.866643, 
+                46.187674
+              ], 
+              [
+                -123.864209, 
+                46.189527
+              ], 
+              [
+                -123.838801, 
+                46.192211
+              ], 
+              [
+                -123.821834, 
+                46.190293
+              ], 
+              [
+                -123.793936, 
+                46.196283
+              ], 
+              [
+                -123.759976, 
+                46.2073
+              ], 
+              [
+                -123.736747, 
+                46.200687
+              ], 
+              [
+                -123.71278, 
+                46.198751
+              ], 
+              [
+                -123.706667, 
+                46.199665
+              ], 
+              [
+                -123.67538, 
+                46.212401
+              ], 
+              [
+                -123.673831, 
+                46.215418
+              ], 
+              [
+                -123.666751, 
+                46.218228
+              ], 
+              [
+                -123.65539, 
+                46.217974
+              ], 
+              [
+                -123.636474, 
+                46.214359
+              ], 
+              [
+                -123.6325, 
+                46.216681
+              ], 
+              [
+                -123.626247, 
+                46.226434
+              ], 
+              [
+                -123.625219, 
+                46.233868
+              ], 
+              [
+                -123.622812, 
+                46.23664
+              ], 
+              [
+                -123.613459, 
+                46.239228
+              ], 
+              [
+                -123.605487, 
+                46.2393
+              ], 
+              [
+                -123.60019, 
+                46.234814
+              ], 
+              [
+                -123.586205, 
+                46.228654
+              ], 
+              [
+                -123.548194, 
+                46.248245
+              ], 
+              [
+                -123.547659, 
+                46.259109
+              ], 
+              [
+                -123.484244, 
+                46.269531
+              ], 
+              [
+                -123.474844, 
+                46.267831
+              ], 
+              [
+                -123.468743, 
+                46.264531
+              ], 
+              [
+                -123.447592, 
+                46.249832
+              ], 
+              [
+                -123.427629, 
+                46.229348
+              ], 
+              [
+                -123.430847, 
+                46.181827
+              ], 
+              [
+                -123.371433, 
+                46.146372
+              ], 
+              [
+                -123.363638, 
+                46.146241
+              ], 
+              [
+                -123.280166, 
+                46.144843
+              ], 
+              [
+                -123.213054, 
+                46.172541
+              ], 
+              [
+                -123.166414, 
+                46.188973
+              ], 
+              [
+                -123.115904, 
+                46.185268
+              ], 
+              [
+                -122.904119, 
+                46.083734
+              ], 
+              [
+                -122.884478, 
+                46.06028
+              ], 
+              [
+                -122.813998, 
+                45.960984
+              ], 
+              [
+                -122.785026, 
+                45.867699
+              ], 
+              [
+                -122.785515, 
+                45.850536
+              ], 
+              [
+                -122.795963, 
+                45.825024
+              ], 
+              [
+                -122.795605, 
+                45.81
+              ], 
+              [
+                -122.769532, 
+                45.780583
+              ], 
+              [
+                -122.761451, 
+                45.759163
+              ], 
+              [
+                -122.760108, 
+                45.734413
+              ], 
+              [
+                -122.762182, 
+                45.728598
+              ], 
+              [
+                -122.772511, 
+                45.699637
+              ], 
+              [
+                -122.774511, 
+                45.680437
+              ], 
+              [
+                -122.76381, 
+                45.657138
+              ], 
+              [
+                -122.738109, 
+                45.644138
+              ], 
+              [
+                -122.675008, 
+                45.618039
+              ], 
+              [
+                -122.643907, 
+                45.609739
+              ], 
+              [
+                -122.492259, 
+                45.583281
+              ], 
+              [
+                -122.380302, 
+                45.575941
+              ], 
+              [
+                -122.352802, 
+                45.569441
+              ], 
+              [
+                -122.331502, 
+                45.548241
+              ], 
+              [
+                -122.294901, 
+                45.543541
+              ], 
+              [
+                -122.266701, 
+                45.543841
+              ], 
+              [
+                -122.248993, 
+                45.547745
+              ], 
+              [
+                -122.2017, 
+                45.564141
+              ], 
+              [
+                -122.183695, 
+                45.577696
+              ], 
+              [
+                -122.14075, 
+                45.584508
+              ], 
+              [
+                -122.129548, 
+                45.582945
+              ], 
+              [
+                -122.12949, 
+                45.582967
+              ], 
+              [
+                -122.126197, 
+                45.582573
+              ], 
+              [
+                -122.126197, 
+                45.582617
+              ], 
+              [
+                -122.112356, 
+                45.581409
+              ], 
+              [
+                -122.101675, 
+                45.583516
+              ], 
+              [
+                -121.983038, 
+                45.622812
+              ], 
+              [
+                -121.922242, 
+                45.648495
+              ], 
+              [
+                -121.908267, 
+                45.654399
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 45, 
+      "properties": {
+        "CENSUSAREA": 95988.013, 
+        "GEO_ID": "0400000US41", 
+        "ISO": "US-OR", 
+        "LSAD": "", 
+        "NAME": "Oregon", 
+        "NAME_1": "Oregon", 
+        "STATE": "OR"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -71.383586, 
+                41.464782
+              ], 
+              [
+                -71.389284, 
+                41.460605
+              ], 
+              [
+                -71.390275, 
+                41.455043
+              ], 
+              [
+                -71.399568, 
+                41.448596
+              ], 
+              [
+                -71.40056, 
+                41.46094
+              ], 
+              [
+                -71.395927, 
+                41.492215
+              ], 
+              [
+                -71.386511, 
+                41.493071
+              ], 
+              [
+                -71.378914, 
+                41.504948
+              ], 
+              [
+                -71.391005, 
+                41.514578
+              ], 
+              [
+                -71.392137, 
+                41.524468
+              ], 
+              [
+                -71.384478, 
+                41.556736
+              ], 
+              [
+                -71.379021, 
+                41.567772
+              ], 
+              [
+                -71.373618, 
+                41.573214
+              ], 
+              [
+                -71.370194, 
+                41.573963
+              ], 
+              [
+                -71.36356, 
+                41.57086
+              ], 
+              [
+                -71.359868, 
+                41.556308
+              ], 
+              [
+                -71.363292, 
+                41.501952
+              ], 
+              [
+                -71.360403, 
+                41.483121
+              ], 
+              [
+                -71.380947, 
+                41.474561
+              ], 
+              [
+                -71.383586, 
+                41.464782
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -71.326769, 
+                41.491286
+              ], 
+              [
+                -71.325365, 
+                41.487601
+              ], 
+              [
+                -71.327822, 
+                41.482985
+              ], 
+              [
+                -71.343013, 
+                41.495615
+              ], 
+              [
+                -71.341122, 
+                41.498598
+              ], 
+              [
+                -71.326769, 
+                41.491286
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -71.3312, 
+                41.580318
+              ], 
+              [
+                -71.335949, 
+                41.585898
+              ], 
+              [
+                -71.337048, 
+                41.594688
+              ], 
+              [
+                -71.333751, 
+                41.605859
+              ], 
+              [
+                -71.329559, 
+                41.609097
+              ], 
+              [
+                -71.326609, 
+                41.616114
+              ], 
+              [
+                -71.325877, 
+                41.623988
+              ], 
+              [
+                -71.333305, 
+                41.629536
+              ], 
+              [
+                -71.34657, 
+                41.632229
+              ], 
+              [
+                -71.362869, 
+                41.651457
+              ], 
+              [
+                -71.366165, 
+                41.66098
+              ], 
+              [
+                -71.348402, 
+                41.663727
+              ], 
+              [
+                -71.338696, 
+                41.658782
+              ], 
+              [
+                -71.336182, 
+                41.647961
+              ], 
+              [
+                -71.337048, 
+                41.646146
+              ], 
+              [
+                -71.342514, 
+                41.644791
+              ], 
+              [
+                -71.343666, 
+                41.6399
+              ], 
+              [
+                -71.330711, 
+                41.632992
+              ], 
+              [
+                -71.314889, 
+                41.630398
+              ], 
+              [
+                -71.30555, 
+                41.622523
+              ], 
+              [
+                -71.303352, 
+                41.606591
+              ], 
+              [
+                -71.307381, 
+                41.597984
+              ], 
+              [
+                -71.317474, 
+                41.583187
+              ], 
+              [
+                -71.326103, 
+                41.578583
+              ], 
+              [
+                -71.3312, 
+                41.580318
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -71.281571, 
+                41.648207
+              ], 
+              [
+                -71.278171, 
+                41.647309
+              ], 
+              [
+                -71.274315, 
+                41.638125
+              ], 
+              [
+                -71.283791, 
+                41.637797
+              ], 
+              [
+                -71.286755, 
+                41.642725
+              ], 
+              [
+                -71.283005, 
+                41.644434
+              ], 
+              [
+                -71.281571, 
+                41.648207
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -71.58955, 
+                41.196557
+              ], 
+              [
+                -71.580228, 
+                41.204837
+              ], 
+              [
+                -71.577301, 
+                41.21471
+              ], 
+              [
+                -71.576661, 
+                41.224434
+              ], 
+              [
+                -71.573785, 
+                41.228436
+              ], 
+              [
+                -71.561093, 
+                41.224207
+              ], 
+              [
+                -71.555006, 
+                41.216822
+              ], 
+              [
+                -71.554067, 
+                41.212957
+              ], 
+              [
+                -71.557459, 
+                41.204542
+              ], 
+              [
+                -71.564119, 
+                41.195372
+              ], 
+              [
+                -71.565752, 
+                41.184373
+              ], 
+              [
+                -71.560969, 
+                41.176186
+              ], 
+              [
+                -71.550226, 
+                41.166787
+              ], 
+              [
+                -71.544446, 
+                41.164912
+              ], 
+              [
+                -71.543872, 
+                41.161321
+              ], 
+              [
+                -71.547051, 
+                41.153684
+              ], 
+              [
+                -71.551953, 
+                41.151718
+              ], 
+              [
+                -71.5937, 
+                41.146339
+              ], 
+              [
+                -71.599993, 
+                41.146932
+              ], 
+              [
+                -71.611706, 
+                41.153239
+              ], 
+              [
+                -71.613133, 
+                41.160281
+              ], 
+              [
+                -71.605565, 
+                41.182139
+              ], 
+              [
+                -71.594994, 
+                41.188392
+              ], 
+              [
+                -71.58955, 
+                41.196557
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -71.408636, 
+                41.653819
+              ], 
+              [
+                -71.40377, 
+                41.589321
+              ], 
+              [
+                -71.447712, 
+                41.5804
+              ], 
+              [
+                -71.442567, 
+                41.565075
+              ], 
+              [
+                -71.421649, 
+                41.537892
+              ], 
+              [
+                -71.417398, 
+                41.534536
+              ], 
+              [
+                -71.414825, 
+                41.523126
+              ], 
+              [
+                -71.414937, 
+                41.516303
+              ], 
+              [
+                -71.421425, 
+                41.498629
+              ], 
+              [
+                -71.419971, 
+                41.484758
+              ], 
+              [
+                -71.417957, 
+                41.482073
+              ], 
+              [
+                -71.417621, 
+                41.477934
+              ], 
+              [
+                -71.418404, 
+                41.472652
+              ], 
+              [
+                -71.421157, 
+                41.469888
+              ], 
+              [
+                -71.422991, 
+                41.472682
+              ], 
+              [
+                -71.430744, 
+                41.470636
+              ], 
+              [
+                -71.430926, 
+                41.465655
+              ], 
+              [
+                -71.427935, 
+                41.459529
+              ], 
+              [
+                -71.428652, 
+                41.454158
+              ], 
+              [
+                -71.433612, 
+                41.444995
+              ], 
+              [
+                -71.43767, 
+                41.441302
+              ], 
+              [
+                -71.441199, 
+                41.441602
+              ], 
+              [
+                -71.448948, 
+                41.438479
+              ], 
+              [
+                -71.455845, 
+                41.432986
+              ], 
+              [
+                -71.455371, 
+                41.407962
+              ], 
+              [
+                -71.474918, 
+                41.386104
+              ], 
+              [
+                -71.483295, 
+                41.371722
+              ], 
+              [
+                -71.513401, 
+                41.374702
+              ], 
+              [
+                -71.526724, 
+                41.376636
+              ], 
+              [
+                -71.555381, 
+                41.373316
+              ], 
+              [
+                -71.624505, 
+                41.36087
+              ], 
+              [
+                -71.68807, 
+                41.342823
+              ], 
+              [
+                -71.701631, 
+                41.336968
+              ], 
+              [
+                -71.72074, 
+                41.331567
+              ], 
+              [
+                -71.729247, 
+                41.33099
+              ], 
+              [
+                -71.773702, 
+                41.327977
+              ], 
+              [
+                -71.785957, 
+                41.325739
+              ], 
+              [
+                -71.833755, 
+                41.315631
+              ], 
+              [
+                -71.857432, 
+                41.306318
+              ], 
+              [
+                -71.862772, 
+                41.309791
+              ], 
+              [
+                -71.862109, 
+                41.316612
+              ], 
+              [
+                -71.85957, 
+                41.322399
+              ], 
+              [
+                -71.839782, 
+                41.33469
+              ], 
+              [
+                -71.83253, 
+                41.341204
+              ], 
+              [
+                -71.83124, 
+                41.344645
+              ], 
+              [
+                -71.831613, 
+                41.370899
+              ], 
+              [
+                -71.833443, 
+                41.384524
+              ], 
+              [
+                -71.842131, 
+                41.395359
+              ], 
+              [
+                -71.843472, 
+                41.40583
+              ], 
+              [
+                -71.842563, 
+                41.409855
+              ], 
+              [
+                -71.839649, 
+                41.412119
+              ], 
+              [
+                -71.81839, 
+                41.419599
+              ], 
+              [
+                -71.797683, 
+                41.416709
+              ], 
+              [
+                -71.797674, 
+                41.41691
+              ], 
+              [
+                -71.789359, 
+                41.596852
+              ], 
+              [
+                -71.789356, 
+                41.59691
+              ], 
+              [
+                -71.789465, 
+                41.640017
+              ], 
+              [
+                -71.789678, 
+                41.724568
+              ], 
+              [
+                -71.789678, 
+                41.724734
+              ], 
+              [
+                -71.792767, 
+                41.807001
+              ], 
+              [
+                -71.792786, 
+                41.80867
+              ], 
+              [
+                -71.794161, 
+                41.840141
+              ], 
+              [
+                -71.794161, 
+                41.841101
+              ], 
+              [
+                -71.796089, 
+                41.904468
+              ], 
+              [
+                -71.796822, 
+                41.928552
+              ], 
+              [
+                -71.799242, 
+                42.008065
+              ], 
+              [
+                -71.591104, 
+                42.013713
+              ], 
+              [
+                -71.576908, 
+                42.014098
+              ], 
+              [
+                -71.559439, 
+                42.014342
+              ], 
+              [
+                -71.527606, 
+                42.014998
+              ], 
+              [
+                -71.527306, 
+                42.015098
+              ], 
+              [
+                -71.500905, 
+                42.017098
+              ], 
+              [
+                -71.499905, 
+                42.017198
+              ], 
+              [
+                -71.498258, 
+                42.01722
+              ], 
+              [
+                -71.458104, 
+                42.017762
+              ], 
+              [
+                -71.381401, 
+                42.018798
+              ], 
+              [
+                -71.381466, 
+                41.984998
+              ], 
+              [
+                -71.381501, 
+                41.966699
+              ], 
+              [
+                -71.381401, 
+                41.964799
+              ], 
+              [
+                -71.3816, 
+                41.922899
+              ], 
+              [
+                -71.3817, 
+                41.922699
+              ], 
+              [
+                -71.3766, 
+                41.893999
+              ], 
+              [
+                -71.373799, 
+                41.894399
+              ], 
+              [
+                -71.370999, 
+                41.894599
+              ], 
+              [
+                -71.365399, 
+                41.895299
+              ], 
+              [
+                -71.364699, 
+                41.895399
+              ], 
+              [
+                -71.362499, 
+                41.895599
+              ], 
+              [
+                -71.354699, 
+                41.896499
+              ], 
+              [
+                -71.352699, 
+                41.896699
+              ], 
+              [
+                -71.339298, 
+                41.893599
+              ], 
+              [
+                -71.339298, 
+                41.893399
+              ], 
+              [
+                -71.337597, 
+                41.8337
+              ], 
+              [
+                -71.339597, 
+                41.832
+              ], 
+              [
+                -71.339297, 
+                41.8065
+              ], 
+              [
+                -71.327896, 
+                41.780501
+              ], 
+              [
+                -71.317795, 
+                41.776101
+              ], 
+              [
+                -71.31779, 
+                41.776099
+              ], 
+              [
+                -71.261392, 
+                41.752301
+              ], 
+              [
+                -71.224798, 
+                41.710498
+              ], 
+              [
+                -71.227875, 
+                41.705498
+              ], 
+              [
+                -71.240991, 
+                41.697744
+              ], 
+              [
+                -71.237635, 
+                41.681635
+              ], 
+              [
+                -71.24155, 
+                41.667205
+              ], 
+              [
+                -71.25956, 
+                41.642595
+              ], 
+              [
+                -71.267055, 
+                41.644945
+              ], 
+              [
+                -71.270075, 
+                41.652439
+              ], 
+              [
+                -71.26918, 
+                41.6549
+              ], 
+              [
+                -71.280366, 
+                41.672575
+              ], 
+              [
+                -71.287637, 
+                41.672463
+              ], 
+              [
+                -71.290546, 
+                41.662395
+              ], 
+              [
+                -71.299159, 
+                41.649531
+              ], 
+              [
+                -71.301396, 
+                41.649978
+              ], 
+              [
+                -71.303746, 
+                41.654788
+              ], 
+              [
+                -71.306095, 
+                41.672575
+              ], 
+              [
+                -71.302627, 
+                41.681747
+              ], 
+              [
+                -71.298935, 
+                41.681524
+              ], 
+              [
+                -71.293119, 
+                41.688347
+              ], 
+              [
+                -71.291217, 
+                41.702666
+              ], 
+              [
+                -71.305759, 
+                41.718662
+              ], 
+              [
+                -71.31482, 
+                41.723808
+              ], 
+              [
+                -71.342786, 
+                41.728506
+              ], 
+              [
+                -71.350057, 
+                41.727835
+              ], 
+              [
+                -71.353172, 
+                41.725191
+              ], 
+              [
+                -71.353748, 
+                41.724702
+              ], 
+              [
+                -71.365717, 
+                41.711615
+              ], 
+              [
+                -71.365717, 
+                41.694947
+              ], 
+              [
+                -71.372988, 
+                41.672575
+              ], 
+              [
+                -71.37791, 
+                41.666646
+              ], 
+              [
+                -71.382049, 
+                41.667317
+              ], 
+              [
+                -71.38988, 
+                41.671903
+              ], 
+              [
+                -71.390775, 
+                41.680629
+              ], 
+              [
+                -71.389432, 
+                41.683425
+              ], 
+              [
+                -71.390551, 
+                41.684096
+              ], 
+              [
+                -71.418069, 
+                41.684208
+              ], 
+              [
+                -71.441336, 
+                41.686446
+              ], 
+              [
+                -71.443082, 
+                41.688303
+              ], 
+              [
+                -71.441896, 
+                41.690025
+              ], 
+              [
+                -71.445923, 
+                41.691144
+              ], 
+              [
+                -71.449318, 
+                41.687401
+              ], 
+              [
+                -71.444468, 
+                41.664409
+              ], 
+              [
+                -71.430038, 
+                41.667541
+              ], 
+              [
+                -71.425452, 
+                41.670785
+              ], 
+              [
+                -71.409302, 
+                41.662643
+              ], 
+              [
+                -71.408636, 
+                41.653819
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -71.12057, 
+                41.497448
+              ], 
+              [
+                -71.136867, 
+                41.493942
+              ], 
+              [
+                -71.141093, 
+                41.489937
+              ], 
+              [
+                -71.140224, 
+                41.485855
+              ], 
+              [
+                -71.167345, 
+                41.471405
+              ], 
+              [
+                -71.170131, 
+                41.463974
+              ], 
+              [
+                -71.19302, 
+                41.457931
+              ], 
+              [
+                -71.194967, 
+                41.459037
+              ], 
+              [
+                -71.196857, 
+                41.461116
+              ], 
+              [
+                -71.196607, 
+                41.464756
+              ], 
+              [
+                -71.190016, 
+                41.478275
+              ], 
+              [
+                -71.190167, 
+                41.484285
+              ], 
+              [
+                -71.19939, 
+                41.491769
+              ], 
+              [
+                -71.199692, 
+                41.495511
+              ], 
+              [
+                -71.206382, 
+                41.499215
+              ], 
+              [
+                -71.200788, 
+                41.514371
+              ], 
+              [
+                -71.213563, 
+                41.545818
+              ], 
+              [
+                -71.20865, 
+                41.571028
+              ], 
+              [
+                -71.20778, 
+                41.60066
+              ], 
+              [
+                -71.212656, 
+                41.610072
+              ], 
+              [
+                -71.212417, 
+                41.61829
+              ], 
+              [
+                -71.212004, 
+                41.62299
+              ], 
+              [
+                -71.21616, 
+                41.62549
+              ], 
+              [
+                -71.240709, 
+                41.619225
+              ], 
+              [
+                -71.2436, 
+                41.587508
+              ], 
+              [
+                -71.23613, 
+                41.574767
+              ], 
+              [
+                -71.236642, 
+                41.535852
+              ], 
+              [
+                -71.234775, 
+                41.532538
+              ], 
+              [
+                -71.227989, 
+                41.528297
+              ], 
+              [
+                -71.229444, 
+                41.521544
+              ], 
+              [
+                -71.233056, 
+                41.514757
+              ], 
+              [
+                -71.233141, 
+                41.514598
+              ], 
+              [
+                -71.233435, 
+                41.514045
+              ], 
+              [
+                -71.240614, 
+                41.500557
+              ], 
+              [
+                -71.238586, 
+                41.486845
+              ], 
+              [
+                -71.237175, 
+                41.486546
+              ], 
+              [
+                -71.236751, 
+                41.483369
+              ], 
+              [
+                -71.237783, 
+                41.481155
+              ], 
+              [
+                -71.237902, 
+                41.480899
+              ], 
+              [
+                -71.239804, 
+                41.476817
+              ], 
+              [
+                -71.240047, 
+                41.476296
+              ], 
+              [
+                -71.24071, 
+                41.474872
+              ], 
+              [
+                -71.246703, 
+                41.47196
+              ], 
+              [
+                -71.246676, 
+                41.472323
+              ], 
+              [
+                -71.246174, 
+                41.478917
+              ], 
+              [
+                -71.245992, 
+                41.481302
+              ], 
+              [
+                -71.252692, 
+                41.485902
+              ], 
+              [
+                -71.264793, 
+                41.488902
+              ], 
+              [
+                -71.267579, 
+                41.488755
+              ], 
+              [
+                -71.282262, 
+                41.487982
+              ], 
+              [
+                -71.285639, 
+                41.487805
+              ], 
+              [
+                -71.295111, 
+                41.48435
+              ], 
+              [
+                -71.296517, 
+                41.479829
+              ], 
+              [
+                -71.300438, 
+                41.46722
+              ], 
+              [
+                -71.302583, 
+                41.460325
+              ], 
+              [
+                -71.302741, 
+                41.459817
+              ], 
+              [
+                -71.302895, 
+                41.459323
+              ], 
+              [
+                -71.302929, 
+                41.459213
+              ], 
+              [
+                -71.304247, 
+                41.454976
+              ], 
+              [
+                -71.304394, 
+                41.454502
+              ], 
+              [
+                -71.304604, 
+                41.454391
+              ], 
+              [
+                -71.305896, 
+                41.453708
+              ], 
+              [
+                -71.310357, 
+                41.45135
+              ], 
+              [
+                -71.310473, 
+                41.451289
+              ], 
+              [
+                -71.311344, 
+                41.450829
+              ], 
+              [
+                -71.311394, 
+                41.450802
+              ], 
+              [
+                -71.311404, 
+                41.450807
+              ], 
+              [
+                -71.312694, 
+                41.451402
+              ], 
+              [
+                -71.312718, 
+                41.454597
+              ], 
+              [
+                -71.32141, 
+                41.4556
+              ], 
+              [
+                -71.337377, 
+                41.449033
+              ], 
+              [
+                -71.337695, 
+                41.448902
+              ], 
+              [
+                -71.351096, 
+                41.450802
+              ], 
+              [
+                -71.351457, 
+                41.451099
+              ], 
+              [
+                -71.358166, 
+                41.456616
+              ], 
+              [
+                -71.358262, 
+                41.456695
+              ], 
+              [
+                -71.358356, 
+                41.456772
+              ], 
+              [
+                -71.358657, 
+                41.457019
+              ], 
+              [
+                -71.359015, 
+                41.457314
+              ], 
+              [
+                -71.359136, 
+                41.457414
+              ], 
+              [
+                -71.359292, 
+                41.457542
+              ], 
+              [
+                -71.361852, 
+                41.459647
+              ], 
+              [
+                -71.362201, 
+                41.459934
+              ], 
+              [
+                -71.362288, 
+                41.460006
+              ], 
+              [
+                -71.362699, 
+                41.460343
+              ], 
+              [
+                -71.362743, 
+                41.460379
+              ], 
+              [
+                -71.362736, 
+                41.460405
+              ], 
+              [
+                -71.362012, 
+                41.463041
+              ], 
+              [
+                -71.36176, 
+                41.463955
+              ], 
+              [
+                -71.36152, 
+                41.464831
+              ], 
+              [
+                -71.34707, 
+                41.47123
+              ], 
+              [
+                -71.335992, 
+                41.469647
+              ], 
+              [
+                -71.316519, 
+                41.47756
+              ], 
+              [
+                -71.317414, 
+                41.488776
+              ], 
+              [
+                -71.323125, 
+                41.503088
+              ], 
+              [
+                -71.327804, 
+                41.504258
+              ], 
+              [
+                -71.330694, 
+                41.507699
+              ], 
+              [
+                -71.330831, 
+                41.518364
+              ], 
+              [
+                -71.313079, 
+                41.534672
+              ], 
+              [
+                -71.310533, 
+                41.54692
+              ], 
+              [
+                -71.303652, 
+                41.559925
+              ], 
+              [
+                -71.294363, 
+                41.571416
+              ], 
+              [
+                -71.288376, 
+                41.573274
+              ], 
+              [
+                -71.285142, 
+                41.577127
+              ], 
+              [
+                -71.273445, 
+                41.60699
+              ], 
+              [
+                -71.272412, 
+                41.615041
+              ], 
+              [
+                -71.275234, 
+                41.619444
+              ], 
+              [
+                -71.271862, 
+                41.623986
+              ], 
+              [
+                -71.251082, 
+                41.63878
+              ], 
+              [
+                -71.212136, 
+                41.641945
+              ], 
+              [
+                -71.19564, 
+                41.67509
+              ], 
+              [
+                -71.19439, 
+                41.674802
+              ], 
+              [
+                -71.191178, 
+                41.674216
+              ], 
+              [
+                -71.191175, 
+                41.674292
+              ], 
+              [
+                -71.18129, 
+                41.672502
+              ], 
+              [
+                -71.17599, 
+                41.671402
+              ], 
+              [
+                -71.17609, 
+                41.668502
+              ], 
+              [
+                -71.17609, 
+                41.668102
+              ], 
+              [
+                -71.153989, 
+                41.664102
+              ], 
+              [
+                -71.14587, 
+                41.662795
+              ], 
+              [
+                -71.135188, 
+                41.660502
+              ], 
+              [
+                -71.134688, 
+                41.660502
+              ], 
+              [
+                -71.134478, 
+                41.641262
+              ], 
+              [
+                -71.134484, 
+                41.641198
+              ], 
+              [
+                -71.133796, 
+                41.63409
+              ], 
+              [
+                -71.133608, 
+                41.632152
+              ], 
+              [
+                -71.133353, 
+                41.629509
+              ], 
+              [
+                -71.12057, 
+                41.497448
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 46, 
+      "properties": {
+        "CENSUSAREA": 1033.814, 
+        "GEO_ID": "0400000US44", 
+        "ISO": "US-RI", 
+        "LSAD": "", 
+        "NAME": "Rhode Island", 
+        "NAME_1": "Rhode Island", 
+        "STATE": "RI"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -104.055104, 
+                43.853478
+              ], 
+              [
+                -104.055077, 
+                43.936535
+              ], 
+              [
+                -104.05495, 
+                43.93809
+              ], 
+              [
+                -104.054562, 
+                44.141081
+              ], 
+              [
+                -104.054487, 
+                44.180381
+              ], 
+              [
+                -104.055927, 
+                44.51773
+              ], 
+              [
+                -104.055892, 
+                44.543341
+              ], 
+              [
+                -104.055877, 
+                44.571016
+              ], 
+              [
+                -104.05581, 
+                44.691343
+              ], 
+              [
+                -104.055938, 
+                44.693881
+              ], 
+              [
+                -104.055777, 
+                44.700466
+              ], 
+              [
+                -104.05587, 
+                44.723422
+              ], 
+              [
+                -104.055934, 
+                44.72372
+              ], 
+              [
+                -104.055963, 
+                44.767962
+              ], 
+              [
+                -104.055963, 
+                44.768236
+              ], 
+              [
+                -104.057698, 
+                44.997431
+              ], 
+              [
+                -104.040128, 
+                44.999987
+              ], 
+              [
+                -104.040274, 
+                45.212891
+              ], 
+              [
+                -104.040358, 
+                45.335946
+              ], 
+              [
+                -104.040265, 
+                45.345356
+              ], 
+              [
+                -104.040114, 
+                45.374214
+              ], 
+              [
+                -104.04041, 
+                45.393474
+              ], 
+              [
+                -104.041764, 
+                45.490789
+              ], 
+              [
+                -104.041274, 
+                45.499994
+              ], 
+              [
+                -104.041145, 
+                45.503367
+              ], 
+              [
+                -104.041717, 
+                45.539122
+              ], 
+              [
+                -104.041647, 
+                45.550691
+              ], 
+              [
+                -104.041937, 
+                45.557915
+              ], 
+              [
+                -104.043814, 
+                45.868385
+              ], 
+              [
+                -104.044009, 
+                45.871974
+              ], 
+              [
+                -104.04403, 
+                45.881971
+              ], 
+              [
+                -104.04403, 
+                45.881975
+              ], 
+              [
+                -104.045443, 
+                45.94531
+              ], 
+              [
+                -103.668479, 
+                45.945242
+              ], 
+              [
+                -103.660779, 
+                45.945241
+              ], 
+              [
+                -103.660779, 
+                45.945231
+              ], 
+              [
+                -103.577083, 
+                45.945283
+              ], 
+              [
+                -103.55871, 
+                45.945131
+              ], 
+              [
+                -103.434851, 
+                45.945291
+              ], 
+              [
+                -103.432393, 
+                45.945313
+              ], 
+              [
+                -103.41804, 
+                45.945186
+              ], 
+              [
+                -103.411325, 
+                45.945264
+              ], 
+              [
+                -103.284109, 
+                45.945152
+              ], 
+              [
+                -103.284092, 
+                45.945149
+              ], 
+              [
+                -103.218396, 
+                45.945208
+              ], 
+              [
+                -103.210634, 
+                45.945222
+              ], 
+              [
+                -103.161251, 
+                45.945309
+              ], 
+              [
+                -103.140939, 
+                45.945257
+              ], 
+              [
+                -103.097872, 
+                45.945262
+              ], 
+              [
+                -103.078477, 
+                45.945289
+              ], 
+              [
+                -103.047779, 
+                45.945335
+              ], 
+              [
+                -103.026058, 
+                45.945307
+              ], 
+              [
+                -102.995668, 
+                45.945167
+              ], 
+              [
+                -102.995345, 
+                45.945166
+              ], 
+              [
+                -102.989902, 
+                45.945211
+              ], 
+              [
+                -102.94207, 
+                45.945092
+              ], 
+              [
+                -102.920482, 
+                45.945038
+              ], 
+              [
+                -102.880252, 
+                45.945069
+              ], 
+              [
+                -102.704871, 
+                45.945072
+              ], 
+              [
+                -102.674077, 
+                45.945274
+              ], 
+              [
+                -102.672474, 
+                45.945244
+              ], 
+              [
+                -102.666684, 
+                45.945307
+              ], 
+              [
+                -102.65162, 
+                45.94545
+              ], 
+              [
+                -102.642555, 
+                45.945404
+              ], 
+              [
+                -102.558579, 
+                45.945129
+              ], 
+              [
+                -102.550947, 
+                45.945015
+              ], 
+              [
+                -102.476024, 
+                45.945183
+              ], 
+              [
+                -102.467563, 
+                45.945159
+              ], 
+              [
+                -102.459586, 
+                45.945081
+              ], 
+              [
+                -102.446419, 
+                45.945083
+              ], 
+              [
+                -102.425397, 
+                45.945041
+              ], 
+              [
+                -102.425358, 
+                45.94499
+              ], 
+              [
+                -102.420173, 
+                45.94507
+              ], 
+              [
+                -102.410346, 
+                45.945079
+              ], 
+              [
+                -102.406176, 
+                45.944997
+              ], 
+              [
+                -102.398575, 
+                45.944868
+              ], 
+              [
+                -102.396359, 
+                45.944916
+              ], 
+              [
+                -102.392767, 
+                45.944979
+              ], 
+              [
+                -102.392696, 
+                45.944951
+              ], 
+              [
+                -102.354283, 
+                45.944901
+              ], 
+              [
+                -102.353384, 
+                45.944984
+              ], 
+              [
+                -102.32823, 
+                45.944806
+              ], 
+              [
+                -102.217867, 
+                45.944711
+              ], 
+              [
+                -102.176993, 
+                45.944622
+              ], 
+              [
+                -102.176698, 
+                45.944622
+              ], 
+              [
+                -102.159439, 
+                45.944641
+              ], 
+              [
+                -102.157965, 
+                45.944641
+              ], 
+              [
+                -102.156393, 
+                45.944663
+              ], 
+              [
+                -102.145356, 
+                45.944659
+              ], 
+              [
+                -102.135269, 
+                45.944586
+              ], 
+              [
+                -102.125429, 
+                45.944652
+              ], 
+              [
+                -102.124628, 
+                45.944813
+              ], 
+              [
+                -102.087555, 
+                45.944598
+              ], 
+              [
+                -102.085122, 
+                45.944642
+              ], 
+              [
+                -102.06093, 
+                45.944622
+              ], 
+              [
+                -102.000679, 
+                45.944515
+              ], 
+              [
+                -102.000656, 
+                45.944515
+              ], 
+              [
+                -102.000425, 
+                45.944581
+              ], 
+              [
+                -101.998703, 
+                45.944557
+              ], 
+              [
+                -101.998618, 
+                45.944556
+              ], 
+              [
+                -101.992187, 
+                45.944471
+              ], 
+              [
+                -101.989501, 
+                45.944472
+              ], 
+              [
+                -101.973749, 
+                45.944456
+              ], 
+              [
+                -101.957439, 
+                45.944484
+              ], 
+              [
+                -101.886838, 
+                45.944559
+              ], 
+              [
+                -101.852642, 
+                45.944457
+              ], 
+              [
+                -101.832991, 
+                45.944464
+              ], 
+              [
+                -101.794606, 
+                45.944397
+              ], 
+              [
+                -101.790054, 
+                45.944442
+              ], 
+              [
+                -101.766177, 
+                45.944322
+              ], 
+              [
+                -101.765293, 
+                45.944367
+              ], 
+              [
+                -101.764277, 
+                45.944412
+              ], 
+              [
+                -101.758611, 
+                45.944478
+              ], 
+              [
+                -101.730069, 
+                45.944356
+              ], 
+              [
+                -101.72338, 
+                45.944187
+              ], 
+              [
+                -101.708785, 
+                45.944348
+              ], 
+              [
+                -101.681819, 
+                45.944444
+              ], 
+              [
+                -101.680574, 
+                45.944329
+              ], 
+              [
+                -101.657631, 
+                45.944387
+              ], 
+              [
+                -101.628597, 
+                45.944293
+              ], 
+              [
+                -101.562156, 
+                45.944237
+              ], 
+              [
+                -101.557276, 
+                45.9441
+              ], 
+              [
+                -101.373769, 
+                45.944265
+              ], 
+              [
+                -101.37069, 
+                45.944198
+              ], 
+              [
+                -101.365283, 
+                45.944092
+              ], 
+              [
+                -101.333871, 
+                45.944166
+              ], 
+              [
+                -101.313272, 
+                45.944164
+              ], 
+              [
+                -101.287223, 
+                45.944107
+              ], 
+              [
+                -101.271524, 
+                45.944209
+              ], 
+              [
+                -101.224006, 
+                45.944025
+              ], 
+              [
+                -101.203787, 
+                45.943895
+              ], 
+              [
+                -101.179103, 
+                45.943896
+              ], 
+              [
+                -101.175693, 
+                45.943983
+              ], 
+              [
+                -101.171074, 
+                45.943959
+              ], 
+              [
+                -101.163241, 
+                45.943915
+              ], 
+              [
+                -101.146076, 
+                45.943842
+              ], 
+              [
+                -101.142571, 
+                45.943841
+              ], 
+              [
+                -101.106826, 
+                45.943984
+              ], 
+              [
+                -101.101334, 
+                45.943841
+              ], 
+              [
+                -100.980693, 
+                45.944068
+              ], 
+              [
+                -100.976565, 
+                45.943864
+              ], 
+              [
+                -100.964411, 
+                45.943822
+              ], 
+              [
+                -100.938989, 
+                45.943848
+              ], 
+              [
+                -100.935582, 
+                45.943757
+              ], 
+              [
+                -100.890176, 
+                45.943861
+              ], 
+              [
+                -100.769751, 
+                45.943766
+              ], 
+              [
+                -100.76211, 
+                45.943767
+              ], 
+              [
+                -100.762072, 
+                45.943803
+              ], 
+              [
+                -100.750407, 
+                45.943649
+              ], 
+              [
+                -100.720865, 
+                45.944024
+              ], 
+              [
+                -100.65082, 
+                45.94368
+              ], 
+              [
+                -100.627681, 
+                45.943642
+              ], 
+              [
+                -100.511949, 
+                45.943654
+              ], 
+              [
+                -100.511793, 
+                45.943654
+              ], 
+              [
+                -100.499354, 
+                45.943632
+              ], 
+              [
+                -100.462838, 
+                45.943566
+              ], 
+              [
+                -100.430597, 
+                45.943638
+              ], 
+              [
+                -100.424438, 
+                45.943569
+              ], 
+              [
+                -100.420162, 
+                45.943533
+              ], 
+              [
+                -100.410386, 
+                45.943453
+              ], 
+              [
+                -100.294126, 
+                45.943269
+              ], 
+              [
+                -100.285345, 
+                45.94313
+              ], 
+              [
+                -100.284134, 
+                45.942951
+              ], 
+              [
+                -100.275614, 
+                45.942922
+              ], 
+              [
+                -100.274762, 
+                45.942945
+              ], 
+              [
+                -100.170826, 
+                45.942514
+              ], 
+              [
+                -100.152084, 
+                45.942486
+              ], 
+              [
+                -100.14173, 
+                45.942506
+              ], 
+              [
+                -100.110339, 
+                45.942367
+              ], 
+              [
+                -100.108471, 
+                45.942391
+              ], 
+              [
+                -100.084163, 
+                45.942301
+              ], 
+              [
+                -100.06902, 
+                45.94217
+              ], 
+              [
+                -100.005486, 
+                45.94195
+              ], 
+              [
+                -99.965775, 
+                45.941822
+              ], 
+              [
+                -99.880292, 
+                45.941672
+              ], 
+              [
+                -99.880062, 
+                45.94167
+              ], 
+              [
+                -99.83868, 
+                45.941293
+              ], 
+              [
+                -99.750396, 
+                45.940935
+              ], 
+              [
+                -99.749494, 
+                45.940956
+              ], 
+              [
+                -99.749325, 
+                45.940935
+              ], 
+              [
+                -99.74787, 
+                45.940933
+              ], 
+              [
+                -99.718073, 
+                45.940907
+              ], 
+              [
+                -99.718071, 
+                45.940907
+              ], 
+              [
+                -99.692975, 
+                45.940949
+              ], 
+              [
+                -99.671938, 
+                45.941062
+              ], 
+              [
+                -99.61116, 
+                45.941098
+              ], 
+              [
+                -99.58878, 
+                45.941104
+              ], 
+              [
+                -99.49314, 
+                45.940383
+              ], 
+              [
+                -99.490254, 
+                45.940362
+              ], 
+              [
+                -99.40126, 
+                45.940367
+              ], 
+              [
+                -99.385565, 
+                45.940407
+              ], 
+              [
+                -99.378486, 
+                45.940403
+              ], 
+              [
+                -99.34496, 
+                45.940299
+              ], 
+              [
+                -99.344774, 
+                45.940299
+              ], 
+              [
+                -99.317875, 
+                45.940263
+              ], 
+              [
+                -99.297272, 
+                45.940165
+              ], 
+              [
+                -99.283968, 
+                45.940195
+              ], 
+              [
+                -99.276266, 
+                45.940188
+              ], 
+              [
+                -99.257745, 
+                45.94006
+              ], 
+              [
+                -99.222269, 
+                45.940071
+              ], 
+              [
+                -99.221672, 
+                45.940069
+              ], 
+              [
+                -99.213644, 
+                45.940116
+              ], 
+              [
+                -99.212571, 
+                45.940108
+              ], 
+              [
+                -99.102372, 
+                45.940158
+              ], 
+              [
+                -99.092868, 
+                45.940184
+              ], 
+              [
+                -99.005754, 
+                45.939944
+              ], 
+              [
+                -99.005642, 
+                45.939944
+              ], 
+              [
+                -98.905477, 
+                45.93952
+              ], 
+              [
+                -98.904429, 
+                45.93952
+              ], 
+              [
+                -98.724375, 
+                45.938685
+              ], 
+              [
+                -98.18563, 
+                45.936185
+              ], 
+              [
+                -98.184637, 
+                45.936183
+              ], 
+              [
+                -98.070515, 
+                45.93618
+              ], 
+              [
+                -98.008202, 
+                45.936096
+              ], 
+              [
+                -98.008102, 
+                45.936095
+              ], 
+              [
+                -97.986893, 
+                45.935961
+              ], 
+              [
+                -97.978778, 
+                45.935937
+              ], 
+              [
+                -97.958718, 
+                45.935878
+              ], 
+              [
+                -97.784575, 
+                45.935327
+              ], 
+              [
+                -97.77704, 
+                45.935393
+              ], 
+              [
+                -97.696691, 
+                45.935352
+              ], 
+              [
+                -97.542598, 
+                45.935258
+              ], 
+              [
+                -97.519035, 
+                45.935304
+              ], 
+              [
+                -97.518944, 
+                45.935304
+              ], 
+              [
+                -97.491892, 
+                45.935111
+              ], 
+              [
+                -97.481967, 
+                45.935138
+              ], 
+              [
+                -97.318899, 
+                45.935054
+              ], 
+              [
+                -97.312184, 
+                45.935077
+              ], 
+              [
+                -97.228323, 
+                45.935141
+              ], 
+              [
+                -97.228304, 
+                45.935141
+              ], 
+              [
+                -97.228291, 
+                45.935141
+              ], 
+              [
+                -97.144987, 
+                45.935278
+              ], 
+              [
+                -97.118053, 
+                45.935485
+              ], 
+              [
+                -97.019596, 
+                45.935382
+              ], 
+              [
+                -96.998652, 
+                45.9357
+              ], 
+              [
+                -96.791505, 
+                45.935857
+              ], 
+              [
+                -96.701313, 
+                45.935807
+              ], 
+              [
+                -96.680646, 
+                45.935716
+              ], 
+              [
+                -96.659895, 
+                45.93556
+              ], 
+              [
+                -96.639066, 
+                45.935318
+              ], 
+              [
+                -96.618295, 
+                45.935407
+              ], 
+              [
+                -96.607142, 
+                45.935301
+              ], 
+              [
+                -96.597432, 
+                45.935209
+              ], 
+              [
+                -96.576897, 
+                45.935259
+              ], 
+              [
+                -96.56328, 
+                45.935238
+              ], 
+              [
+                -96.564518, 
+                45.926256
+              ], 
+              [
+                -96.564317, 
+                45.921074
+              ], 
+              [
+                -96.569069, 
+                45.914785
+              ], 
+              [
+                -96.569401, 
+                45.913946
+              ], 
+              [
+                -96.569265, 
+                45.911471
+              ], 
+              [
+                -96.568918, 
+                45.911426
+              ], 
+              [
+                -96.568315, 
+                45.902902
+              ], 
+              [
+                -96.568053, 
+                45.898697
+              ], 
+              [
+                -96.568281, 
+                45.891203
+              ], 
+              [
+                -96.568772, 
+                45.888072
+              ], 
+              [
+                -96.572984, 
+                45.861602
+              ], 
+              [
+                -96.576544, 
+                45.839945
+              ], 
+              [
+                -96.57974, 
+                45.82582
+              ], 
+              [
+                -96.583085, 
+                45.820024
+              ], 
+              [
+                -96.652226, 
+                45.746809
+              ], 
+              [
+                -96.672665, 
+                45.732336
+              ], 
+              [
+                -96.711157, 
+                45.717561
+              ], 
+              [
+                -96.745086, 
+                45.701576
+              ], 
+              [
+                -96.835769, 
+                45.649648
+              ], 
+              [
+                -96.840746, 
+                45.645294
+              ], 
+              [
+                -96.844211, 
+                45.639583
+              ], 
+              [
+                -96.857751, 
+                45.605962
+              ], 
+              [
+                -96.853646, 
+                45.602307
+              ], 
+              [
+                -96.849444, 
+                45.598944
+              ], 
+              [
+                -96.844334, 
+                45.594375
+              ], 
+              [
+                -96.843957, 
+                45.594003
+              ], 
+              [
+                -96.835451, 
+                45.586129
+              ], 
+              [
+                -96.784863, 
+                45.5413
+              ], 
+              [
+                -96.76528, 
+                45.521414
+              ], 
+              [
+                -96.745487, 
+                45.488712
+              ], 
+              [
+                -96.742509, 
+                45.478723
+              ], 
+              [
+                -96.732739, 
+                45.458737
+              ], 
+              [
+                -96.692541, 
+                45.417338
+              ], 
+              [
+                -96.680454, 
+                45.410499
+              ], 
+              [
+                -96.617726, 
+                45.408092
+              ], 
+              [
+                -96.521787, 
+                45.375645
+              ], 
+              [
+                -96.489065, 
+                45.357071
+              ], 
+              [
+                -96.47002, 
+                45.326832
+              ], 
+              [
+                -96.454094, 
+                45.301546
+              ], 
+              [
+                -96.453067, 
+                45.298115
+              ], 
+              [
+                -96.452791, 
+                45.28428
+              ], 
+              [
+                -96.452949, 
+                45.269059
+              ], 
+              [
+                -96.452948, 
+                45.268925
+              ], 
+              [
+                -96.452315, 
+                45.208986
+              ], 
+              [
+                -96.452152, 
+                45.204849
+              ], 
+              [
+                -96.452162, 
+                45.203109
+              ], 
+              [
+                -96.452304, 
+                45.178563
+              ], 
+              [
+                -96.452353, 
+                45.124071
+              ], 
+              [
+                -96.452418, 
+                45.122677
+              ], 
+              [
+                -96.452026, 
+                45.095138
+              ], 
+              [
+                -96.452219, 
+                45.093836
+              ], 
+              [
+                -96.45221, 
+                45.051602
+              ], 
+              [
+                -96.452177, 
+                45.050185
+              ], 
+              [
+                -96.45224, 
+                45.042347
+              ], 
+              [
+                -96.452092, 
+                44.977494
+              ], 
+              [
+                -96.452092, 
+                44.977475
+              ], 
+              [
+                -96.452347, 
+                44.962734
+              ], 
+              [
+                -96.452047, 
+                44.910695
+              ], 
+              [
+                -96.451853, 
+                44.906672
+              ], 
+              [
+                -96.452009, 
+                44.89008
+              ], 
+              [
+                -96.45156, 
+                44.805569
+              ], 
+              [
+                -96.451559, 
+                44.805468
+              ], 
+              [
+                -96.451829, 
+                44.797691
+              ], 
+              [
+                -96.451888, 
+                44.792299
+              ], 
+              [
+                -96.451823, 
+                44.790471
+              ], 
+              [
+                -96.45162, 
+                44.776191
+              ], 
+              [
+                -96.45138, 
+                44.761788
+              ], 
+              [
+                -96.451573, 
+                44.76051
+              ], 
+              [
+                -96.451543, 
+                44.703135
+              ], 
+              [
+                -96.451761, 
+                44.63135
+              ], 
+              [
+                -96.451761, 
+                44.631194
+              ], 
+              [
+                -96.45172, 
+                44.630708
+              ], 
+              [
+                -96.451888, 
+                44.544058
+              ], 
+              [
+                -96.45199, 
+                44.543639
+              ], 
+              [
+                -96.452016, 
+                44.543533
+              ], 
+              [
+                -96.452236, 
+                44.526871
+              ], 
+              [
+                -96.45201, 
+                44.516929
+              ], 
+              [
+                -96.451974, 
+                44.506849
+              ], 
+              [
+                -96.452122, 
+                44.473043
+              ], 
+              [
+                -96.452218, 
+                44.470873
+              ], 
+              [
+                -96.451816, 
+                44.460402
+              ], 
+              [
+                -96.451924, 
+                44.441549
+              ], 
+              [
+                -96.452073, 
+                44.38969
+              ], 
+              [
+                -96.452134, 
+                44.383679
+              ], 
+              [
+                -96.452213, 
+                44.360149
+              ], 
+              [
+                -96.452282, 
+                44.354857
+              ], 
+              [
+                -96.452305, 
+                44.345332
+              ], 
+              [
+                -96.452152, 
+                44.342219
+              ], 
+              [
+                -96.452248, 
+                44.340642
+              ], 
+              [
+                -96.452309, 
+                44.328094
+              ], 
+              [
+                -96.452372, 
+                44.325991
+              ], 
+              [
+                -96.452248, 
+                44.313362
+              ], 
+              [
+                -96.452369, 
+                44.312071
+              ], 
+              [
+                -96.452239, 
+                44.298655
+              ], 
+              [
+                -96.452334, 
+                44.297009
+              ], 
+              [
+                -96.4525, 
+                44.285687
+              ], 
+              [
+                -96.452617, 
+                44.282702
+              ], 
+              [
+                -96.452365, 
+                44.271972
+              ], 
+              [
+                -96.452369, 
+                44.268967
+              ], 
+              [
+                -96.452419, 
+                44.255274
+              ], 
+              [
+                -96.452673, 
+                44.254588
+              ], 
+              [
+                -96.452774, 
+                44.196895
+              ], 
+              [
+                -96.452774, 
+                44.19678
+              ], 
+              [
+                -96.453187, 
+                44.03835
+              ], 
+              [
+                -96.453313, 
+                44.03643
+              ], 
+              [
+                -96.453405, 
+                44.025413
+              ], 
+              [
+                -96.453373, 
+                44.023744
+              ], 
+              [
+                -96.453053, 
+                44.008887
+              ], 
+              [
+                -96.453116, 
+                44.006876
+              ], 
+              [
+                -96.453297, 
+                43.994723
+              ], 
+              [
+                -96.453328, 
+                43.992871
+              ], 
+              [
+                -96.453263, 
+                43.980277
+              ], 
+              [
+                -96.453389, 
+                43.97806
+              ], 
+              [
+                -96.453292, 
+                43.96718
+              ], 
+              [
+                -96.453165, 
+                43.96654
+              ], 
+              [
+                -96.453289, 
+                43.950814
+              ], 
+              [
+                -96.453352, 
+                43.949122
+              ], 
+              [
+                -96.453183, 
+                43.87865
+              ], 
+              [
+                -96.453304, 
+                43.878583
+              ], 
+              [
+                -96.453335, 
+                43.877029
+              ], 
+              [
+                -96.453264, 
+                43.849604
+              ], 
+              [
+                -96.453264, 
+                43.849506
+              ], 
+              [
+                -96.453264, 
+                43.849501
+              ], 
+              [
+                -96.453088, 
+                43.805123
+              ], 
+              [
+                -96.453281, 
+                43.791435
+              ], 
+              [
+                -96.45338, 
+                43.689637
+              ], 
+              [
+                -96.453408, 
+                43.675008
+              ], 
+              [
+                -96.453387, 
+                43.609944
+              ], 
+              [
+                -96.453356, 
+                43.607544
+              ], 
+              [
+                -96.453383, 
+                43.588183
+              ], 
+              [
+                -96.453352, 
+                43.58704
+              ], 
+              [
+                -96.453049, 
+                43.500415
+              ], 
+              [
+                -96.591213, 
+                43.500514
+              ], 
+              [
+                -96.598928, 
+                43.500457
+              ], 
+              [
+                -96.587151, 
+                43.484697
+              ], 
+              [
+                -96.58407, 
+                43.468856
+              ], 
+              [
+                -96.600039, 
+                43.45708
+              ], 
+              [
+                -96.60286, 
+                43.450907
+              ], 
+              [
+                -96.594254, 
+                43.434153
+              ], 
+              [
+                -96.557586, 
+                43.406792
+              ], 
+              [
+                -96.53746, 
+                43.395246
+              ], 
+              [
+                -96.531159, 
+                43.39561
+              ], 
+              [
+                -96.529152, 
+                43.397735
+              ], 
+              [
+                -96.524044, 
+                43.394762
+              ], 
+              [
+                -96.521697, 
+                43.386897
+              ], 
+              [
+                -96.521264, 
+                43.374978
+              ], 
+              [
+                -96.525564, 
+                43.312467
+              ], 
+              [
+                -96.530392, 
+                43.300034
+              ], 
+              [
+                -96.551929, 
+                43.292974
+              ], 
+              [
+                -96.56911, 
+                43.295535
+              ], 
+              [
+                -96.586317, 
+                43.274319
+              ], 
+              [
+                -96.584124, 
+                43.268101
+              ], 
+              [
+                -96.572489, 
+                43.249178
+              ], 
+              [
+                -96.557126, 
+                43.224192
+              ], 
+              [
+                -96.485264, 
+                43.224183
+              ], 
+              [
+                -96.475571, 
+                43.221054
+              ], 
+              [
+                -96.436589, 
+                43.120842
+              ], 
+              [
+                -96.439335, 
+                43.113916
+              ], 
+              [
+                -96.455107, 
+                43.083366
+              ], 
+              [
+                -96.466017, 
+                43.062235
+              ], 
+              [
+                -96.513111, 
+                43.02788
+              ], 
+              [
+                -96.509479, 
+                42.971122
+              ], 
+              [
+                -96.510749, 
+                42.944397
+              ], 
+              [
+                -96.523264, 
+                42.909059
+              ], 
+              [
+                -96.54146, 
+                42.857682
+              ], 
+              [
+                -96.549513, 
+                42.839143
+              ], 
+              [
+                -96.552092, 
+                42.836057
+              ], 
+              [
+                -96.563058, 
+                42.831051
+              ], 
+              [
+                -96.577813, 
+                42.828102
+              ], 
+              [
+                -96.632142, 
+                42.770863
+              ], 
+              [
+                -96.633168, 
+                42.768325
+              ], 
+              [
+                -96.639704, 
+                42.737071
+              ], 
+              [
+                -96.630617, 
+                42.70588
+              ], 
+              [
+                -96.610975, 
+                42.694751
+              ], 
+              [
+                -96.60614, 
+                42.694661
+              ], 
+              [
+                -96.601989, 
+                42.697429
+              ], 
+              [
+                -96.575299, 
+                42.682665
+              ], 
+              [
+                -96.542366, 
+                42.660736
+              ], 
+              [
+                -96.516338, 
+                42.630435
+              ], 
+              [
+                -96.479685, 
+                42.561238
+              ], 
+              [
+                -96.476952, 
+                42.556079
+              ], 
+              [
+                -96.477709, 
+                42.535595
+              ], 
+              [
+                -96.479909, 
+                42.524195
+              ], 
+              [
+                -96.481308, 
+                42.516556
+              ], 
+              [
+                -96.476947, 
+                42.508677
+              ], 
+              [
+                -96.466253, 
+                42.497702
+              ], 
+              [
+                -96.443408, 
+                42.489495
+              ], 
+              [
+                -96.475565, 
+                42.480036
+              ], 
+              [
+                -96.48749, 
+                42.479846
+              ], 
+              [
+                -96.611489, 
+                42.506088
+              ], 
+              [
+                -96.625958, 
+                42.513576
+              ], 
+              [
+                -96.635982, 
+                42.524324
+              ], 
+              [
+                -96.708049, 
+                42.601594
+              ], 
+              [
+                -96.711332, 
+                42.610399
+              ], 
+              [
+                -96.710604, 
+                42.619625
+              ], 
+              [
+                -96.707245, 
+                42.631258
+              ], 
+              [
+                -96.712871, 
+                42.648136
+              ], 
+              [
+                -96.724033, 
+                42.665971
+              ], 
+              [
+                -96.806553, 
+                42.703405
+              ], 
+              [
+                -96.813148, 
+                42.706397
+              ], 
+              [
+                -96.906797, 
+                42.7338
+              ], 
+              [
+                -96.920494, 
+                42.731432
+              ], 
+              [
+                -96.961021, 
+                42.738075
+              ], 
+              [
+                -97.015691, 
+                42.758697
+              ], 
+              [
+                -97.026103, 
+                42.762625
+              ], 
+              [
+                -97.05218, 
+                42.770187
+              ], 
+              [
+                -97.13746, 
+                42.782313
+              ], 
+              [
+                -97.163082, 
+                42.793385
+              ], 
+              [
+                -97.190135, 
+                42.805076
+              ], 
+              [
+                -97.218269, 
+                42.829561
+              ], 
+              [
+                -97.257089, 
+                42.853854
+              ], 
+              [
+                -97.328511, 
+                42.859501
+              ], 
+              [
+                -97.42319, 
+                42.861168
+              ], 
+              [
+                -97.485376, 
+                42.854838
+              ], 
+              [
+                -97.531867, 
+                42.850105
+              ], 
+              [
+                -97.635115, 
+                42.844984
+              ], 
+              [
+                -97.686506, 
+                42.842435
+              ], 
+              [
+                -97.774456, 
+                42.849774
+              ], 
+              [
+                -97.814382, 
+                42.861119
+              ], 
+              [
+                -97.828496, 
+                42.868797
+              ], 
+              [
+                -97.84527, 
+                42.867734
+              ], 
+              [
+                -97.865695, 
+                42.86286
+              ], 
+              [
+                -97.875345, 
+                42.858724
+              ], 
+              [
+                -97.879878, 
+                42.835395
+              ], 
+              [
+                -97.888562, 
+                42.817251
+              ], 
+              [
+                -97.908983, 
+                42.794909
+              ], 
+              [
+                -97.936716, 
+                42.775754
+              ], 
+              [
+                -97.950147, 
+                42.769619
+              ], 
+              [
+                -98.000348, 
+                42.763256
+              ], 
+              [
+                -98.017228, 
+                42.762411
+              ], 
+              [
+                -98.035034, 
+                42.764205
+              ], 
+              [
+                -98.056625, 
+                42.770781
+              ], 
+              [
+                -98.157405, 
+                42.831899
+              ], 
+              [
+                -98.165835, 
+                42.837011
+              ], 
+              [
+                -98.204506, 
+                42.846845
+              ], 
+              [
+                -98.309741, 
+                42.881232
+              ], 
+              [
+                -98.325864, 
+                42.8865
+              ], 
+              [
+                -98.447047, 
+                42.935117
+              ], 
+              [
+                -98.467356, 
+                42.947556
+              ], 
+              [
+                -98.490483, 
+                42.977948
+              ], 
+              [
+                -98.495747, 
+                42.988032
+              ], 
+              [
+                -98.49855, 
+                42.99856
+              ], 
+              [
+                -98.565072, 
+                42.9984
+              ], 
+              [
+                -98.568936, 
+                42.998537
+              ], 
+              [
+                -98.663712, 
+                42.998444
+              ], 
+              [
+                -98.665613, 
+                42.998536
+              ], 
+              [
+                -98.742394, 
+                42.998343
+              ], 
+              [
+                -98.764378, 
+                42.998323
+              ], 
+              [
+                -98.801304, 
+                42.998241
+              ], 
+              [
+                -98.823989, 
+                42.99831
+              ], 
+              [
+                -98.899944, 
+                42.998122
+              ], 
+              [
+                -98.903154, 
+                42.998306
+              ], 
+              [
+                -98.919136, 
+                42.998242
+              ], 
+              [
+                -98.919234, 
+                42.998241
+              ], 
+              [
+                -98.962081, 
+                42.998286
+              ], 
+              [
+                -99.00037, 
+                42.998273
+              ], 
+              [
+                -99.021909, 
+                42.998365
+              ], 
+              [
+                -99.0223, 
+                42.998237
+              ], 
+              [
+                -99.080011, 
+                42.998357
+              ], 
+              [
+                -99.08188, 
+                42.998288
+              ], 
+              [
+                -99.135961, 
+                42.998301
+              ], 
+              [
+                -99.139045, 
+                42.998508
+              ], 
+              [
+                -99.151143, 
+                42.998344
+              ], 
+              [
+                -99.161388, 
+                42.998465
+              ], 
+              [
+                -99.195199, 
+                42.998107
+              ], 
+              [
+                -99.234462, 
+                42.998281
+              ], 
+              [
+                -99.254297, 
+                42.998138
+              ], 
+              [
+                -99.254454, 
+                42.99814
+              ], 
+              [
+                -99.26271, 
+                42.998234
+              ], 
+              [
+                -99.288045, 
+                42.998152
+              ], 
+              [
+                -99.347283, 
+                42.998217
+              ], 
+              [
+                -99.368628, 
+                42.99814
+              ], 
+              [
+                -99.371121, 
+                42.998093
+              ], 
+              [
+                -99.374268, 
+                42.998047
+              ], 
+              [
+                -99.395568, 
+                42.99817
+              ], 
+              [
+                -99.471353, 
+                42.997967
+              ], 
+              [
+                -99.474531, 
+                42.998081
+              ], 
+              [
+                -99.490798, 
+                42.998143
+              ], 
+              [
+                -99.494287, 
+                42.998118
+              ], 
+              [
+                -99.534049, 
+                42.998041
+              ], 
+              [
+                -99.535375, 
+                42.998038
+              ], 
+              [
+                -99.569277, 
+                42.997995
+              ], 
+              [
+                -99.699234, 
+                42.99788
+              ], 
+              [
+                -99.701446, 
+                42.997994
+              ], 
+              [
+                -99.719177, 
+                42.997899
+              ], 
+              [
+                -99.726788, 
+                42.997892
+              ], 
+              [
+                -99.743138, 
+                42.997912
+              ], 
+              [
+                -99.768524, 
+                42.998125
+              ], 
+              [
+                -99.788247, 
+                42.998016
+              ], 
+              [
+                -99.800306, 
+                42.997972
+              ], 
+              [
+                -99.803328, 
+                42.998064
+              ], 
+              [
+                -99.809373, 
+                42.998178
+              ], 
+              [
+                -99.821868, 
+                42.997995
+              ], 
+              [
+                -99.850037, 
+                42.998171
+              ], 
+              [
+                -99.859945, 
+                42.997962
+              ], 
+              [
+                -99.869885, 
+                42.998094
+              ], 
+              [
+                -99.877697, 
+                42.998094
+              ], 
+              [
+                -99.918401, 
+                42.998057
+              ], 
+              [
+                -99.927645, 
+                42.998113
+              ], 
+              [
+                -99.950411, 
+                42.998286
+              ], 
+              [
+                -99.950921, 
+                42.998291
+              ], 
+              [
+                -99.961204, 
+                42.998335
+              ], 
+              [
+                -100.004757, 
+                42.998392
+              ], 
+              [
+                -100.027815, 
+                42.998424
+              ], 
+              [
+                -100.034389, 
+                42.998425
+              ], 
+              [
+                -100.119297, 
+                42.998689
+              ], 
+              [
+                -100.126427, 
+                42.99871
+              ], 
+              [
+                -100.126896, 
+                42.998711
+              ], 
+              [
+                -100.198412, 
+                42.998542
+              ], 
+              [
+                -100.198413, 
+                42.998542
+              ], 
+              [
+                -100.198434, 
+                42.998542
+              ], 
+              [
+                -100.277793, 
+                42.998674
+              ], 
+              [
+                -100.283713, 
+                42.998767
+              ], 
+              [
+                -100.349548, 
+                42.99874
+              ], 
+              [
+                -100.355406, 
+                42.99876
+              ], 
+              [
+                -100.472742, 
+                42.999288
+              ], 
+              [
+                -100.534335, 
+                42.999017
+              ], 
+              [
+                -100.544018, 
+                42.998795
+              ], 
+              [
+                -100.553131, 
+                42.998721
+              ], 
+              [
+                -100.887898, 
+                42.997881
+              ], 
+              [
+                -100.906714, 
+                42.99791
+              ], 
+              [
+                -100.958365, 
+                42.997796
+              ], 
+              [
+                -100.96419, 
+                42.997886
+              ], 
+              [
+                -101.226494, 
+                42.997901
+              ], 
+              [
+                -101.226853, 
+                42.997896
+              ], 
+              [
+                -101.228104, 
+                42.997874
+              ], 
+              [
+                -101.229203, 
+                42.997854
+              ], 
+              [
+                -101.230325, 
+                42.997899
+              ], 
+              [
+                -101.625424, 
+                42.996238
+              ], 
+              [
+                -101.875424, 
+                42.999298
+              ], 
+              [
+                -102.082486, 
+                42.999356
+              ], 
+              [
+                -102.082546, 
+                42.999356
+              ], 
+              [
+                -102.440547, 
+                42.999609
+              ], 
+              [
+                -102.487329, 
+                42.999559
+              ], 
+              [
+                -102.792111, 
+                42.99998
+              ], 
+              [
+                -103.000897, 
+                43.000474
+              ], 
+              [
+                -103.13174, 
+                43.000783
+              ], 
+              [
+                -103.132955, 
+                43.000784
+              ], 
+              [
+                -103.340829, 
+                43.000879
+              ], 
+              [
+                -103.404579, 
+                43.000737
+              ], 
+              [
+                -103.5051, 
+                43.00077
+              ], 
+              [
+                -103.505219, 
+                43.00077
+              ], 
+              [
+                -103.506151, 
+                43.000771
+              ], 
+              [
+                -103.506556, 
+                43.000771
+              ], 
+              [
+                -103.576329, 
+                43.000807
+              ], 
+              [
+                -103.576966, 
+                43.000746
+              ], 
+              [
+                -103.813939, 
+                43.001378
+              ], 
+              [
+                -103.815573, 
+                43.001279
+              ], 
+              [
+                -104.053127, 
+                43.000585
+              ], 
+              [
+                -104.053876, 
+                43.289801
+              ], 
+              [
+                -104.053884, 
+                43.297047
+              ], 
+              [
+                -104.054218, 
+                43.30437
+              ], 
+              [
+                -104.054403, 
+                43.325914
+              ], 
+              [
+                -104.054614, 
+                43.390949
+              ], 
+              [
+                -104.054766, 
+                43.428914
+              ], 
+              [
+                -104.054779, 
+                43.477815
+              ], 
+              [
+                -104.054786, 
+                43.503072
+              ], 
+              [
+                -104.054787, 
+                43.503328
+              ], 
+              [
+                -104.055032, 
+                43.558603
+              ], 
+              [
+                -104.05484, 
+                43.579368
+              ], 
+              [
+                -104.054885, 
+                43.583512
+              ], 
+              [
+                -104.054902, 
+                43.583852
+              ], 
+              [
+                -104.055133, 
+                43.747105
+              ], 
+              [
+                -104.055138, 
+                43.750421
+              ], 
+              [
+                -104.055104, 
+                43.853478
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 47, 
+      "properties": {
+        "CENSUSAREA": 75811, 
+        "GEO_ID": "0400000US46", 
+        "ISO": "US-SD", 
+        "LSAD": "", 
+        "NAME": "South Dakota", 
+        "NAME_1": "South Dakota", 
+        "STATE": "SD"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -96.83003, 
+                28.111842
+              ], 
+              [
+                -96.827049, 
+                28.112417
+              ], 
+              [
+                -96.816574, 
+                28.119618
+              ], 
+              [
+                -96.81042, 
+                28.126034
+              ], 
+              [
+                -96.810944, 
+                28.136378
+              ], 
+              [
+                -96.816836, 
+                28.158048
+              ], 
+              [
+                -96.820315, 
+                28.163494
+              ], 
+              [
+                -96.822859, 
+                28.167476
+              ], 
+              [
+                -96.818656, 
+                28.17228
+              ], 
+              [
+                -96.816443, 
+                28.174808
+              ], 
+              [
+                -96.791958, 
+                28.188687
+              ], 
+              [
+                -96.733037, 
+                28.190913
+              ], 
+              [
+                -96.703838, 
+                28.198246
+              ], 
+              [
+                -96.697422, 
+                28.202959
+              ], 
+              [
+                -96.702659, 
+                28.211208
+              ], 
+              [
+                -96.703314, 
+                28.216446
+              ], 
+              [
+                -96.686816, 
+                28.21841
+              ], 
+              [
+                -96.662462, 
+                28.227314
+              ], 
+              [
+                -96.660628, 
+                28.228885
+              ], 
+              [
+                -96.663116, 
+                28.233206
+              ], 
+              [
+                -96.651856, 
+                28.251275
+              ], 
+              [
+                -96.607992, 
+                28.27707
+              ], 
+              [
+                -96.608123, 
+                28.280081
+              ], 
+              [
+                -96.611527, 
+                28.281391
+              ], 
+              [
+                -96.61048, 
+                28.283093
+              ], 
+              [
+                -96.592934, 
+                28.296972
+              ], 
+              [
+                -96.581019, 
+                28.30221
+              ], 
+              [
+                -96.55326, 
+                28.302341
+              ], 
+              [
+                -96.546975, 
+                28.305614
+              ], 
+              [
+                -96.542131, 
+                28.315958
+              ], 
+              [
+                -96.528906, 
+                28.322505
+              ], 
+              [
+                -96.476269, 
+                28.330754
+              ], 
+              [
+                -96.450998, 
+                28.337039
+              ], 
+              [
+                -96.434108, 
+                28.344764
+              ], 
+              [
+                -96.418919, 
+                28.354846
+              ], 
+              [
+                -96.415253, 
+                28.362833
+              ], 
+              [
+                -96.417217, 
+                28.367154
+              ], 
+              [
+                -96.412896, 
+                28.369511
+              ], 
+              [
+                -96.403206, 
+                28.371475
+              ], 
+              [
+                -96.401242, 
+                28.366892
+              ], 
+              [
+                -96.397846, 
+                28.343513
+              ], 
+              [
+                -96.4137, 
+                28.327343
+              ], 
+              [
+                -96.439099, 
+                28.319052
+              ], 
+              [
+                -96.547774, 
+                28.270798
+              ], 
+              [
+                -96.621534, 
+                28.2297
+              ], 
+              [
+                -96.694666, 
+                28.18212
+              ], 
+              [
+                -96.758141, 
+                28.136873
+              ], 
+              [
+                -96.849624, 
+                28.064939
+              ], 
+              [
+                -96.853455, 
+                28.061345
+              ], 
+              [
+                -96.929053, 
+                27.99044
+              ], 
+              [
+                -96.966996, 
+                27.950531
+              ], 
+              [
+                -97.001441, 
+                27.911442
+              ], 
+              [
+                -97.03166, 
+                27.869975
+              ], 
+              [
+                -97.041799, 
+                27.852926
+              ], 
+              [
+                -97.045409, 
+                27.837452
+              ], 
+              [
+                -97.04598, 
+                27.835004
+              ], 
+              [
+                -97.085395, 
+                27.793245
+              ], 
+              [
+                -97.116277, 
+                27.752599
+              ], 
+              [
+                -97.166682, 
+                27.676583
+              ], 
+              [
+                -97.201866, 
+                27.614858
+              ], 
+              [
+                -97.221912, 
+                27.576315
+              ], 
+              [
+                -97.276091, 
+                27.472145
+              ], 
+              [
+                -97.30447, 
+                27.407734
+              ], 
+              [
+                -97.326523, 
+                27.347612
+              ], 
+              [
+                -97.347438, 
+                27.277963
+              ], 
+              [
+                -97.350398, 
+                27.268105
+              ], 
+              [
+                -97.363401, 
+                27.210366
+              ], 
+              [
+                -97.370941, 
+                27.161166
+              ], 
+              [
+                -97.377001, 
+                27.101021
+              ], 
+              [
+                -97.37913, 
+                27.047996
+              ], 
+              [
+                -97.378362, 
+                26.992877
+              ], 
+              [
+                -97.370731, 
+                26.909706
+              ], 
+              [
+                -97.364726, 
+                26.871693
+              ], 
+              [
+                -97.351413, 
+                26.808604
+              ], 
+              [
+                -97.333028, 
+                26.736479
+              ], 
+              [
+                -97.30069, 
+                26.635375
+              ], 
+              [
+                -97.287885, 
+                26.600341
+              ], 
+              [
+                -97.275119, 
+                26.565415
+              ], 
+              [
+                -97.269392, 
+                26.554046
+              ], 
+              [
+                -97.229844, 
+                26.433569
+              ], 
+              [
+                -97.223728, 
+                26.411492
+              ], 
+              [
+                -97.194644, 
+                26.306513
+              ], 
+              [
+                -97.185844, 
+                26.267103
+              ], 
+              [
+                -97.173265, 
+                26.192314
+              ], 
+              [
+                -97.161471, 
+                26.088705
+              ], 
+              [
+                -97.154271, 
+                26.066841
+              ], 
+              [
+                -97.161462, 
+                26.06764
+              ], 
+              [
+                -97.169842, 
+                26.077853
+              ], 
+              [
+                -97.171781, 
+                26.102522
+              ], 
+              [
+                -97.179532, 
+                26.146202
+              ], 
+              [
+                -97.178746, 
+                26.177103
+              ], 
+              [
+                -97.183983, 
+                26.214289
+              ], 
+              [
+                -97.194458, 
+                26.27164
+              ], 
+              [
+                -97.214885, 
+                26.353606
+              ], 
+              [
+                -97.226931, 
+                26.385555
+              ], 
+              [
+                -97.240286, 
+                26.405981
+              ], 
+              [
+                -97.240849, 
+                26.411504
+              ], 
+              [
+                -97.243167, 
+                26.434263
+              ], 
+              [
+                -97.247619, 
+                26.456261
+              ], 
+              [
+                -97.254166, 
+                26.471188
+              ], 
+              [
+                -97.262546, 
+                26.482972
+              ], 
+              [
+                -97.276425, 
+                26.521729
+              ], 
+              [
+                -97.292399, 
+                26.528014
+              ], 
+              [
+                -97.31073, 
+                26.556558
+              ], 
+              [
+                -97.308112, 
+                26.571223
+              ], 
+              [
+                -97.308635, 
+                26.576723
+              ], 
+              [
+                -97.317015, 
+                26.597673
+              ], 
+              [
+                -97.318458, 
+                26.60027
+              ], 
+              [
+                -97.324872, 
+                26.611814
+              ], 
+              [
+                -97.338489, 
+                26.647429
+              ], 
+              [
+                -97.336394, 
+                26.666022
+              ], 
+              [
+                -97.345822, 
+                26.700589
+              ], 
+              [
+                -97.363105, 
+                26.71054
+              ], 
+              [
+                -97.370438, 
+                26.723896
+              ], 
+              [
+                -97.370961, 
+                26.736204
+              ], 
+              [
+                -97.367557, 
+                26.740394
+              ], 
+              [
+                -97.364153, 
+                26.758987
+              ], 
+              [
+                -97.364646, 
+                26.767122
+              ], 
+              [
+                -97.368866, 
+                26.774699
+              ], 
+              [
+                -97.370438, 
+                26.781508
+              ], 
+              [
+                -97.368343, 
+                26.795649
+              ], 
+              [
+                -97.373056, 
+                26.808481
+              ], 
+              [
+                -97.387459, 
+                26.820789
+              ], 
+              [
+                -97.383531, 
+                26.875521
+              ], 
+              [
+                -97.385626, 
+                26.888876
+              ], 
+              [
+                -97.391649, 
+                26.90197
+              ], 
+              [
+                -97.389554, 
+                26.945965
+              ], 
+              [
+                -97.39034, 
+                27.052286
+              ], 
+              [
+                -97.389816, 
+                27.067213
+              ], 
+              [
+                -97.386412, 
+                27.083187
+              ], 
+              [
+                -97.387459, 
+                27.090519
+              ], 
+              [
+                -97.390602, 
+                27.094186
+              ], 
+              [
+                -97.390078, 
+                27.156512
+              ], 
+              [
+                -97.377508, 
+                27.199459
+              ], 
+              [
+                -97.379865, 
+                27.202863
+              ], 
+              [
+                -97.386674, 
+                27.204696
+              ], 
+              [
+                -97.382222, 
+                27.229051
+              ], 
+              [
+                -97.37489, 
+                27.250262
+              ], 
+              [
+                -97.373318, 
+                27.27645
+              ], 
+              [
+                -97.372861, 
+                27.278069
+              ], 
+              [
+                -97.367033, 
+                27.298709
+              ], 
+              [
+                -97.364676, 
+                27.302637
+              ], 
+              [
+                -97.359963, 
+                27.304732
+              ], 
+              [
+                -97.357606, 
+                27.307875
+              ], 
+              [
+                -97.36232, 
+                27.32673
+              ], 
+              [
+                -97.366771, 
+                27.333276
+              ], 
+              [
+                -97.361796, 
+                27.359988
+              ], 
+              [
+                -97.346607, 
+                27.390365
+              ], 
+              [
+                -97.336132, 
+                27.402411
+              ], 
+              [
+                -97.331157, 
+                27.412362
+              ], 
+              [
+                -97.329585, 
+                27.418124
+              ], 
+              [
+                -97.330895, 
+                27.425456
+              ], 
+              [
+                -97.329847, 
+                27.43436
+              ], 
+              [
+                -97.317277, 
+                27.46369
+              ], 
+              [
+                -97.293709, 
+                27.497209
+              ], 
+              [
+                -97.282972, 
+                27.521564
+              ], 
+              [
+                -97.266474, 
+                27.542514
+              ], 
+              [
+                -97.257832, 
+                27.556393
+              ], 
+              [
+                -97.26176, 
+                27.563464
+              ], 
+              [
+                -97.260451, 
+                27.567392
+              ], 
+              [
+                -97.252071, 
+                27.578652
+              ], 
+              [
+                -97.247877, 
+                27.581366
+              ], 
+              [
+                -97.247619, 
+                27.581533
+              ], 
+              [
+                -97.236882, 
+                27.598293
+              ], 
+              [
+                -97.241072, 
+                27.602483
+              ], 
+              [
+                -97.242643, 
+                27.607458
+              ], 
+              [
+                -97.231383, 
+                27.632336
+              ], 
+              [
+                -97.221955, 
+                27.63286
+              ], 
+              [
+                -97.219075, 
+                27.630241
+              ], 
+              [
+                -97.214099, 
+                27.631551
+              ], 
+              [
+                -97.200743, 
+                27.650144
+              ], 
+              [
+                -97.197339, 
+                27.664547
+              ], 
+              [
+                -97.197601, 
+                27.678426
+              ], 
+              [
+                -97.203474, 
+                27.684533
+              ], 
+              [
+                -97.203089, 
+                27.688001
+              ], 
+              [
+                -97.190007, 
+                27.692829
+              ], 
+              [
+                -97.170628, 
+                27.720326
+              ], 
+              [
+                -97.166176, 
+                27.732372
+              ], 
+              [
+                -97.1612, 
+                27.734074
+              ], 
+              [
+                -97.153606, 
+                27.733289
+              ], 
+              [
+                -97.147321, 
+                27.735384
+              ], 
+              [
+                -97.130823, 
+                27.75162
+              ], 
+              [
+                -97.127942, 
+                27.75581
+              ], 
+              [
+                -97.127681, 
+                27.76
+              ], 
+              [
+                -97.103326, 
+                27.789068
+              ], 
+              [
+                -97.102279, 
+                27.798233
+              ], 
+              [
+                -97.098874, 
+                27.808447
+              ], 
+              [
+                -97.092851, 
+                27.81447
+              ], 
+              [
+                -97.092589, 
+                27.819183
+              ], 
+              [
+                -97.098874, 
+                27.82285
+              ], 
+              [
+                -97.126109, 
+                27.819707
+              ], 
+              [
+                -97.130299, 
+                27.820493
+              ], 
+              [
+                -97.134489, 
+                27.825206
+              ], 
+              [
+                -97.132394, 
+                27.827301
+              ], 
+              [
+                -97.056713, 
+                27.842294
+              ], 
+              [
+                -97.055823, 
+                27.843404
+              ], 
+              [
+                -97.043226, 
+                27.859119
+              ], 
+              [
+                -97.013634, 
+                27.90678
+              ], 
+              [
+                -97.017955, 
+                27.911494
+              ], 
+              [
+                -97.016384, 
+                27.917255
+              ], 
+              [
+                -96.985745, 
+                27.954048
+              ], 
+              [
+                -96.977889, 
+                27.976439
+              ], 
+              [
+                -96.978805, 
+                27.978272
+              ], 
+              [
+                -96.9809, 
+                27.978272
+              ], 
+              [
+                -96.986007, 
+                27.976177
+              ], 
+              [
+                -96.986661, 
+                27.980759
+              ], 
+              [
+                -96.978282, 
+                28.001709
+              ], 
+              [
+                -96.967807, 
+                28.020041
+              ], 
+              [
+                -96.966759, 
+                28.020368
+              ], 
+              [
+                -96.965188, 
+                28.013297
+              ], 
+              [
+                -96.962569, 
+                28.012381
+              ], 
+              [
+                -96.952618, 
+                28.01644
+              ], 
+              [
+                -96.946988, 
+                28.026522
+              ], 
+              [
+                -96.932454, 
+                28.035426
+              ], 
+              [
+                -96.92643, 
+                28.043413
+              ], 
+              [
+                -96.929573, 
+                28.0514
+              ], 
+              [
+                -96.927085, 
+                28.057292
+              ], 
+              [
+                -96.906004, 
+                28.076147
+              ], 
+              [
+                -96.890947, 
+                28.076802
+              ], 
+              [
+                -96.886233, 
+                28.084396
+              ], 
+              [
+                -96.888328, 
+                28.086622
+              ], 
+              [
+                -96.889113, 
+                28.099454
+              ], 
+              [
+                -96.886887, 
+                28.11713
+              ], 
+              [
+                -96.879424, 
+                28.131402
+              ], 
+              [
+                -96.874972, 
+                28.133236
+              ], 
+              [
+                -96.870782, 
+                28.131271
+              ], 
+              [
+                -96.864628, 
+                28.126296
+              ], 
+              [
+                -96.857165, 
+                28.115559
+              ], 
+              [
+                -96.84538, 
+                28.108881
+              ], 
+              [
+                -96.83003, 
+                28.111842
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -100.000381, 
+                34.746461
+              ], 
+              [
+                -100.000381, 
+                34.746358
+              ], 
+              [
+                -100.000381, 
+                34.560509
+              ], 
+              [
+                -99.997853, 
+                34.561485
+              ], 
+              [
+                -99.954567, 
+                34.578195
+              ], 
+              [
+                -99.94572, 
+                34.579273
+              ], 
+              [
+                -99.923211, 
+                34.574552
+              ], 
+              [
+                -99.884842, 
+                34.546953
+              ], 
+              [
+                -99.874403, 
+                34.537095
+              ], 
+              [
+                -99.872357, 
+                34.532096
+              ], 
+              [
+                -99.864922, 
+                34.523018
+              ], 
+              [
+                -99.846399, 
+                34.505045
+              ], 
+              [
+                -99.793684, 
+                34.453894
+              ], 
+              [
+                -99.767234, 
+                34.430502
+              ], 
+              [
+                -99.69497, 
+                34.378333
+              ], 
+              [
+                -99.663948, 
+                34.37368
+              ], 
+              [
+                -99.616793, 
+                34.375391
+              ], 
+              [
+                -99.58006, 
+                34.416653
+              ], 
+              [
+                -99.574367, 
+                34.418281
+              ], 
+              [
+                -99.515385, 
+                34.414333
+              ], 
+              [
+                -99.499875, 
+                34.409608
+              ], 
+              [
+                -99.474161, 
+                34.398052
+              ], 
+              [
+                -99.453477, 
+                34.388756
+              ], 
+              [
+                -99.44076, 
+                34.374123
+              ], 
+              [
+                -99.407168, 
+                34.372605
+              ], 
+              [
+                -99.398635, 
+                34.375832
+              ], 
+              [
+                -99.356713, 
+                34.442144
+              ], 
+              [
+                -99.261321, 
+                34.403499
+              ], 
+              [
+                -99.211423, 
+                34.337897
+              ], 
+              [
+                -99.211396, 
+                34.337688
+              ], 
+              [
+                -99.209724, 
+                34.324935
+              ], 
+              [
+                -99.2116, 
+                34.31397
+              ], 
+              [
+                -99.211648, 
+                34.292232
+              ], 
+              [
+                -99.19089, 
+                34.215251
+              ], 
+              [
+                -99.157114, 
+                34.207414
+              ], 
+              [
+                -99.119204, 
+                34.201747
+              ], 
+              [
+                -99.060344, 
+                34.204761
+              ], 
+              [
+                -98.966743, 
+                34.201185
+              ], 
+              [
+                -98.952527, 
+                34.195621
+              ], 
+              [
+                -98.920042, 
+                34.182908
+              ], 
+              [
+                -98.858419, 
+                34.152732
+              ], 
+              [
+                -98.76557, 
+                34.136376
+              ], 
+              [
+                -98.700182, 
+                34.135995
+              ], 
+              [
+                -98.665824, 
+                34.151617
+              ], 
+              [
+                -98.652347, 
+                34.161029
+              ], 
+              [
+                -98.637575, 
+                34.162284
+              ], 
+              [
+                -98.610112, 
+                34.161039
+              ], 
+              [
+                -98.599789, 
+                34.160571
+              ], 
+              [
+                -98.577356, 
+                34.1491
+              ], 
+              [
+                -98.553717, 
+                34.13366
+              ], 
+              [
+                -98.504182, 
+                34.072371
+              ], 
+              [
+                -98.475066, 
+                34.064269
+              ], 
+              [
+                -98.433769, 
+                34.096116
+              ], 
+              [
+                -98.400494, 
+                34.121778
+              ], 
+              [
+                -98.398441, 
+                34.128456
+              ], 
+              [
+                -98.383222, 
+                34.147806
+              ], 
+              [
+                -98.364023, 
+                34.157109
+              ], 
+              [
+                -98.325445, 
+                34.151025
+              ], 
+              [
+                -98.300209, 
+                34.134579
+              ], 
+              [
+                -98.293901, 
+                34.13302
+              ], 
+              [
+                -98.200075, 
+                34.116783
+              ], 
+              [
+                -98.16912, 
+                34.114171
+              ], 
+              [
+                -98.106261, 
+                34.033696
+              ], 
+              [
+                -98.088203, 
+                34.005481
+              ], 
+              [
+                -98.08526, 
+                34.003259
+              ], 
+              [
+                -98.041117, 
+                33.993456
+              ], 
+              [
+                -98.019485, 
+                33.993804
+              ], 
+              [
+                -97.983521, 
+                34.001559
+              ], 
+              [
+                -97.94573, 
+                33.989839
+              ], 
+              [
+                -97.953395, 
+                33.936445
+              ], 
+              [
+                -97.977859, 
+                33.889929
+              ], 
+              [
+                -97.97781, 
+                33.889894
+              ], 
+              [
+                -97.966706, 
+                33.881949
+              ], 
+              [
+                -97.877387, 
+                33.850236
+              ], 
+              [
+                -97.865765, 
+                33.849393
+              ], 
+              [
+                -97.834333, 
+                33.857671
+              ], 
+              [
+                -97.785317, 
+                33.890701
+              ], 
+              [
+                -97.733723, 
+                33.936392
+              ], 
+              [
+                -97.700477, 
+                33.972246
+              ], 
+              [
+                -97.69311, 
+                33.983699
+              ], 
+              [
+                -97.688023, 
+                33.986607
+              ], 
+              [
+                -97.671772, 
+                33.99137
+              ], 
+              [
+                -97.65621, 
+                33.989488
+              ], 
+              [
+                -97.609091, 
+                33.968093
+              ], 
+              [
+                -97.589598, 
+                33.953554
+              ], 
+              [
+                -97.588828, 
+                33.951882
+              ], 
+              [
+                -97.597115, 
+                33.917868
+              ], 
+              [
+                -97.596289, 
+                33.913769
+              ], 
+              [
+                -97.587441, 
+                33.902479
+              ], 
+              [
+                -97.581041, 
+                33.900396
+              ], 
+              [
+                -97.561054, 
+                33.898006
+              ], 
+              [
+                -97.555002, 
+                33.897282
+              ], 
+              [
+                -97.545526, 
+                33.900396
+              ], 
+              [
+                -97.519171, 
+                33.913638
+              ], 
+              [
+                -97.50096, 
+                33.919643
+              ], 
+              [
+                -97.486505, 
+                33.916994
+              ], 
+              [
+                -97.484071, 
+                33.91568
+              ], 
+              [
+                -97.458069, 
+                33.901635
+              ], 
+              [
+                -97.450954, 
+                33.891398
+              ], 
+              [
+                -97.451469, 
+                33.87093
+              ], 
+              [
+                -97.457617, 
+                33.855126
+              ], 
+              [
+                -97.461486, 
+                33.84956
+              ], 
+              [
+                -97.462857, 
+                33.841772
+              ], 
+              [
+                -97.459068, 
+                33.834581
+              ], 
+              [
+                -97.453057, 
+                33.828536
+              ], 
+              [
+                -97.444193, 
+                33.823773
+              ], 
+              [
+                -97.426493, 
+                33.819398
+              ], 
+              [
+                -97.372941, 
+                33.819454
+              ], 
+              [
+                -97.310843, 
+                33.872461
+              ], 
+              [
+                -97.226522, 
+                33.914642
+              ], 
+              [
+                -97.210921, 
+                33.916064
+              ], 
+              [
+                -97.185458, 
+                33.9007
+              ], 
+              [
+                -97.180845, 
+                33.895204
+              ], 
+              [
+                -97.166629, 
+                33.847311
+              ], 
+              [
+                -97.166824, 
+                33.840395
+              ], 
+              [
+                -97.171627, 
+                33.835335
+              ], 
+              [
+                -97.18137, 
+                33.831375
+              ], 
+              [
+                -97.194678, 
+                33.831192
+              ], 
+              [
+                -97.1997, 
+                33.827322
+              ], 
+              [
+                -97.204995, 
+                33.81887
+              ], 
+              [
+                -97.204827, 
+                33.799908
+              ], 
+              [
+                -97.172192, 
+                33.737545
+              ], 
+              [
+                -97.163149, 
+                33.729322
+              ], 
+              [
+                -97.162803, 
+                33.729127
+              ], 
+              [
+                -97.151257, 
+                33.722608
+              ], 
+              [
+                -97.13753, 
+                33.718664
+              ], 
+              [
+                -97.121102, 
+                33.717174
+              ], 
+              [
+                -97.107183, 
+                33.721119
+              ], 
+              [
+                -97.097154, 
+                33.727809
+              ], 
+              [
+                -97.092414, 
+                33.733214
+              ], 
+              [
+                -97.047972, 
+                33.817931
+              ], 
+              [
+                -97.00613, 
+                33.861884
+              ], 
+              [
+                -96.985567, 
+                33.886522
+              ], 
+              [
+                -96.97287, 
+                33.935698
+              ], 
+              [
+                -96.944611, 
+                33.948994
+              ], 
+              [
+                -96.934508, 
+                33.953748
+              ], 
+              [
+                -96.922114, 
+                33.959579
+              ], 
+              [
+                -96.9163, 
+                33.957798
+              ], 
+              [
+                -96.907387, 
+                33.950025
+              ], 
+              [
+                -96.899442, 
+                33.933728
+              ], 
+              [
+                -96.895728, 
+                33.896414
+              ], 
+              [
+                -96.88301, 
+                33.868019
+              ], 
+              [
+                -96.866438, 
+                33.853149
+              ], 
+              [
+                -96.85609, 
+                33.84749
+              ], 
+              [
+                -96.761588, 
+                33.824406
+              ], 
+              [
+                -96.712422, 
+                33.831633
+              ], 
+              [
+                -96.707274, 
+                33.835398
+              ], 
+              [
+                -96.700952, 
+                33.840748
+              ], 
+              [
+                -96.694629, 
+                33.849988
+              ], 
+              [
+                -96.68928, 
+                33.86166
+              ], 
+              [
+                -96.685389, 
+                33.872846
+              ], 
+              [
+                -96.682471, 
+                33.883059
+              ], 
+              [
+                -96.67858, 
+                33.892786
+              ], 
+              [
+                -96.672258, 
+                33.899595
+              ], 
+              [
+                -96.65864, 
+                33.900081
+              ], 
+              [
+                -96.646968, 
+                33.895218
+              ], 
+              [
+                -96.633351, 
+                33.889382
+              ], 
+              [
+                -96.622165, 
+                33.885977
+              ], 
+              [
+                -96.615356, 
+                33.881114
+              ], 
+              [
+                -96.613494, 
+                33.878321
+              ], 
+              [
+                -96.611466, 
+                33.875278
+              ], 
+              [
+                -96.612963, 
+                33.867651
+              ], 
+              [
+                -96.615843, 
+                33.853393
+              ], 
+              [
+                -96.61487, 
+                33.841234
+              ], 
+              [
+                -96.612925, 
+                33.833939
+              ], 
+              [
+                -96.500268, 
+                33.772583
+              ], 
+              [
+                -96.448045, 
+                33.781031
+              ], 
+              [
+                -96.436455, 
+                33.78005
+              ], 
+              [
+                -96.423362, 
+                33.776365
+              ], 
+              [
+                -96.378473, 
+                33.726648
+              ], 
+              [
+                -96.36959, 
+                33.716809
+              ], 
+              [
+                -96.304675, 
+                33.745901
+              ], 
+              [
+                -96.229859, 
+                33.74832
+              ], 
+              [
+                -96.220521, 
+                33.74739
+              ], 
+              [
+                -96.1999, 
+                33.752117
+              ], 
+              [
+                -96.181704, 
+                33.758504
+              ], 
+              [
+                -96.170055, 
+                33.76917
+              ], 
+              [
+                -96.1641, 
+                33.784261
+              ], 
+              [
+                -96.156717, 
+                33.813324
+              ], 
+              [
+                -96.14807, 
+                33.837799
+              ], 
+              [
+                -96.097526, 
+                33.847544
+              ], 
+              [
+                -95.949935, 
+                33.857452
+              ], 
+              [
+                -95.846334, 
+                33.841136
+              ], 
+              [
+                -95.82468, 
+                33.837726
+              ], 
+              [
+                -95.763622, 
+                33.847954
+              ], 
+              [
+                -95.757156, 
+                33.867293
+              ], 
+              [
+                -95.599678, 
+                33.934247
+              ], 
+              [
+                -95.567022, 
+                33.932697
+              ], 
+              [
+                -95.559414, 
+                33.930179
+              ], 
+              [
+                -95.549145, 
+                33.90795
+              ], 
+              [
+                -95.549475, 
+                33.901311
+              ], 
+              [
+                -95.552331, 
+                33.89442
+              ], 
+              [
+                -95.552085, 
+                33.888422
+              ], 
+              [
+                -95.548325, 
+                33.882744
+              ], 
+              [
+                -95.544346, 
+                33.880111
+              ], 
+              [
+                -95.445751, 
+                33.86885
+              ], 
+              [
+                -95.407795, 
+                33.866308
+              ], 
+              [
+                -95.339758, 
+                33.868752
+              ], 
+              [
+                -95.310475, 
+                33.871481
+              ], 
+              [
+                -95.287565, 
+                33.873617
+              ], 
+              [
+                -95.260815, 
+                33.887653
+              ], 
+              [
+                -95.255541, 
+                33.892047
+              ], 
+              [
+                -95.249922, 
+                33.902024
+              ], 
+              [
+                -95.2482, 
+                33.912327
+              ], 
+              [
+                -95.249807, 
+                33.922241
+              ], 
+              [
+                -95.253623, 
+                33.92971
+              ], 
+              [
+                -95.252906, 
+                33.933648
+              ], 
+              [
+                -95.231113, 
+                33.960361
+              ], 
+              [
+                -95.226393, 
+                33.961954
+              ], 
+              [
+                -95.219358, 
+                33.961567
+              ], 
+              [
+                -95.155981, 
+                33.944027
+              ], 
+              [
+                -95.129572, 
+                33.936718
+              ], 
+              [
+                -95.067253, 
+                33.917351
+              ], 
+              [
+                -95.063459, 
+                33.91404
+              ], 
+              [
+                -95.062284, 
+                33.903618
+              ], 
+              [
+                -95.039452, 
+                33.860621
+              ], 
+              [
+                -94.8693, 
+                33.745871
+              ], 
+              [
+                -94.822473, 
+                33.732716
+              ], 
+              [
+                -94.760604, 
+                33.727054
+              ], 
+              [
+                -94.746096, 
+                33.703016
+              ], 
+              [
+                -94.735128, 
+                33.691267
+              ], 
+              [
+                -94.660964, 
+                33.660322
+              ], 
+              [
+                -94.52838, 
+                33.615995
+              ], 
+              [
+                -94.524055, 
+                33.615765
+              ], 
+              [
+                -94.490684, 
+                33.625586
+              ], 
+              [
+                -94.487611, 
+                33.628544
+              ], 
+              [
+                -94.485875, 
+                33.637867
+              ], 
+              [
+                -94.478366, 
+                33.620847
+              ], 
+              [
+                -94.470963, 
+                33.60594
+              ], 
+              [
+                -94.464336, 
+                33.598819
+              ], 
+              [
+                -94.409329, 
+                33.568265
+              ], 
+              [
+                -94.355945, 
+                33.54318
+              ], 
+              [
+                -94.257801, 
+                33.582508
+              ], 
+              [
+                -94.252656, 
+                33.586144
+              ], 
+              [
+                -94.181805, 
+                33.593217
+              ], 
+              [
+                -94.085243, 
+                33.575546
+              ], 
+              [
+                -94.066846, 
+                33.568909
+              ], 
+              [
+                -94.04345, 
+                33.552253
+              ], 
+              [
+                -94.043428, 
+                33.551425
+              ], 
+              [
+                -94.043375, 
+                33.542315
+              ], 
+              [
+                -94.043009, 
+                33.493039
+              ], 
+              [
+                -94.043279, 
+                33.49103
+              ], 
+              [
+                -94.043188, 
+                33.470324
+              ], 
+              [
+                -94.042988, 
+                33.435824
+              ], 
+              [
+                -94.042988, 
+                33.431024
+              ], 
+              [
+                -94.042887, 
+                33.420225
+              ], 
+              [
+                -94.043053, 
+                33.377716
+              ], 
+              [
+                -94.042869, 
+                33.37117
+              ], 
+              [
+                -94.043128, 
+                33.358757
+              ], 
+              [
+                -94.043067, 
+                33.352097
+              ], 
+              [
+                -94.043067, 
+                33.347351
+              ], 
+              [
+                -94.043067, 
+                33.330498
+              ], 
+              [
+                -94.04299, 
+                33.271243
+              ], 
+              [
+                -94.04299, 
+                33.271227
+              ], 
+              [
+                -94.04305, 
+                33.260904
+              ], 
+              [
+                -94.043004, 
+                33.250128
+              ], 
+              [
+                -94.04273, 
+                33.241823
+              ], 
+              [
+                -94.042876, 
+                33.215219
+              ], 
+              [
+                -94.042892, 
+                33.202666
+              ], 
+              [
+                -94.042875, 
+                33.199785
+              ], 
+              [
+                -94.043185, 
+                33.143476
+              ], 
+              [
+                -94.043077, 
+                33.138162
+              ], 
+              [
+                -94.043007, 
+                33.13389
+              ], 
+              [
+                -94.04287, 
+                33.092727
+              ], 
+              [
+                -94.043036, 
+                33.079485
+              ], 
+              [
+                -94.042964, 
+                33.019219
+              ], 
+              [
+                -94.043088, 
+                32.955592
+              ], 
+              [
+                -94.043067, 
+                32.937903
+              ], 
+              [
+                -94.043092, 
+                32.910021
+              ], 
+              [
+                -94.042885, 
+                32.898911
+              ], 
+              [
+                -94.042859, 
+                32.892771
+              ], 
+              [
+                -94.042886, 
+                32.881089
+              ], 
+              [
+                -94.042886, 
+                32.880965
+              ], 
+              [
+                -94.043025, 
+                32.880446
+              ], 
+              [
+                -94.042785, 
+                32.871486
+              ], 
+              [
+                -94.043026, 
+                32.797476
+              ], 
+              [
+                -94.042747, 
+                32.786973
+              ], 
+              [
+                -94.042829, 
+                32.785277
+              ], 
+              [
+                -94.042938, 
+                32.780558
+              ], 
+              [
+                -94.043027, 
+                32.776863
+              ], 
+              [
+                -94.042947, 
+                32.767991
+              ], 
+              [
+                -94.043147, 
+                32.693031
+              ], 
+              [
+                -94.043147, 
+                32.69303
+              ], 
+              [
+                -94.042913, 
+                32.655127
+              ], 
+              [
+                -94.04278, 
+                32.643466
+              ], 
+              [
+                -94.042824, 
+                32.640305
+              ], 
+              [
+                -94.042926, 
+                32.622015
+              ], 
+              [
+                -94.042929, 
+                32.61826
+              ], 
+              [
+                -94.042919, 
+                32.610142
+              ], 
+              [
+                -94.043083, 
+                32.564261
+              ], 
+              [
+                -94.043142, 
+                32.559502
+              ], 
+              [
+                -94.043081, 
+                32.513613
+              ], 
+              [
+                -94.042885, 
+                32.505145
+              ], 
+              [
+                -94.042911, 
+                32.492852
+              ], 
+              [
+                -94.043089, 
+                32.486561
+              ], 
+              [
+                -94.043072, 
+                32.4843
+              ], 
+              [
+                -94.042955, 
+                32.480261
+              ], 
+              [
+                -94.042995, 
+                32.478004
+              ], 
+              [
+                -94.042902, 
+                32.472906
+              ], 
+              [
+                -94.042875, 
+                32.471348
+              ], 
+              [
+                -94.042903, 
+                32.470386
+              ], 
+              [
+                -94.042908, 
+                32.439891
+              ], 
+              [
+                -94.042986, 
+                32.435507
+              ], 
+              [
+                -94.042899, 
+                32.400659
+              ], 
+              [
+                -94.042923, 
+                32.399918
+              ], 
+              [
+                -94.042901, 
+                32.392283
+              ], 
+              [
+                -94.042763, 
+                32.373332
+              ], 
+              [
+                -94.042739, 
+                32.363559
+              ], 
+              [
+                -94.042733, 
+                32.269696
+              ], 
+              [
+                -94.042732, 
+                32.26962
+              ], 
+              [
+                -94.042662, 
+                32.218146
+              ], 
+              [
+                -94.042621, 
+                32.196005
+              ], 
+              [
+                -94.042566, 
+                32.166894
+              ], 
+              [
+                -94.042539, 
+                32.166826
+              ], 
+              [
+                -94.042591, 
+                32.158097
+              ], 
+              [
+                -94.042681, 
+                32.137956
+              ], 
+              [
+                -94.042337, 
+                32.119914
+              ], 
+              [
+                -94.0427, 
+                32.056012
+              ], 
+              [
+                -94.04272, 
+                31.999265
+              ], 
+              [
+                -94.01563, 
+                31.979856
+              ], 
+              [
+                -93.975377, 
+                31.92366
+              ], 
+              [
+                -93.932135, 
+                31.893672
+              ], 
+              [
+                -93.92029, 
+                31.888651
+              ], 
+              [
+                -93.889193, 
+                31.856819
+              ], 
+              [
+                -93.878225, 
+                31.844276
+              ], 
+              [
+                -93.840029, 
+                31.800596
+              ], 
+              [
+                -93.812477, 
+                31.715246
+              ], 
+              [
+                -93.817059, 
+                31.671694
+              ], 
+              [
+                -93.82629, 
+                31.614903
+              ], 
+              [
+                -93.834924, 
+                31.586211
+              ], 
+              [
+                -93.834923, 
+                31.58621
+              ], 
+              [
+                -93.818582, 
+                31.554826
+              ], 
+              [
+                -93.798087, 
+                31.534044
+              ], 
+              [
+                -93.729613, 
+                31.487922
+              ], 
+              [
+                -93.695866, 
+                31.409392
+              ], 
+              [
+                -93.670182, 
+                31.387184
+              ], 
+              [
+                -93.640805, 
+                31.372546
+              ], 
+              [
+                -93.671676, 
+                31.299586
+              ], 
+              [
+                -93.644407, 
+                31.27711
+              ], 
+              [
+                -93.620829, 
+                31.271299
+              ], 
+              [
+                -93.614402, 
+                31.260869
+              ], 
+              [
+                -93.608158, 
+                31.227835
+              ], 
+              [
+                -93.607243, 
+                31.204806
+              ], 
+              [
+                -93.602315, 
+                31.181742
+              ], 
+              [
+                -93.599705, 
+                31.176456
+              ], 
+              [
+                -93.598828, 
+                31.174679
+              ], 
+              [
+                -93.588503, 
+                31.165581
+              ], 
+              [
+                -93.579215, 
+                31.167422
+              ], 
+              [
+                -93.552649, 
+                31.185575
+              ], 
+              [
+                -93.55254, 
+                31.185605
+              ], 
+              [
+                -93.548931, 
+                31.186601
+              ], 
+              [
+                -93.535097, 
+                31.185614
+              ], 
+              [
+                -93.531744, 
+                31.180817
+              ], 
+              [
+                -93.527644, 
+                31.074509
+              ], 
+              [
+                -93.540354, 
+                31.008135
+              ], 
+              [
+                -93.530936, 
+                30.924534
+              ], 
+              [
+                -93.554576, 
+                30.87747
+              ], 
+              [
+                -93.55497, 
+                30.876685
+              ], 
+              [
+                -93.558617, 
+                30.869424
+              ], 
+              [
+                -93.558672, 
+                30.868829
+              ], 
+              [
+                -93.563292, 
+                30.818503
+              ], 
+              [
+                -93.578395, 
+                30.802047
+              ], 
+              [
+                -93.727844, 
+                30.57407
+              ], 
+              [
+                -93.740045, 
+                30.538765
+              ], 
+              [
+                -93.710117, 
+                30.5064
+              ], 
+              [
+                -93.697828, 
+                30.443838
+              ], 
+              [
+                -93.698302, 
+                30.438657
+              ], 
+              [
+                -93.702665, 
+                30.429947
+              ], 
+              [
+                -93.741701, 
+                30.403007
+              ], 
+              [
+                -93.751437, 
+                30.396288
+              ], 
+              [
+                -93.757654, 
+                30.390423
+              ], 
+              [
+                -93.765822, 
+                30.333318
+              ], 
+              [
+                -93.735896, 
+                30.29944
+              ], 
+              [
+                -93.723586, 
+                30.294951
+              ], 
+              [
+                -93.720575, 
+                30.295961
+              ], 
+              [
+                -93.716223, 
+                30.244318
+              ], 
+              [
+                -93.712008, 
+                30.194304
+              ], 
+              [
+                -93.695252, 
+                30.1476
+              ], 
+              [
+                -93.695684, 
+                30.135729
+              ], 
+              [
+                -93.712101, 
+                30.067346
+              ], 
+              [
+                -93.721589, 
+                30.051939
+              ], 
+              [
+                -93.722481, 
+                30.050898
+              ], 
+              [
+                -93.752038, 
+                30.016403
+              ], 
+              [
+                -93.75663, 
+                30.014163
+              ], 
+              [
+                -93.789431, 
+                29.987812
+              ], 
+              [
+                -93.840799, 
+                29.914423
+              ], 
+              [
+                -93.890679, 
+                29.843159
+              ], 
+              [
+                -93.89847, 
+                29.771577
+              ], 
+              [
+                -93.892246, 
+                29.765241
+              ], 
+              [
+                -93.837971, 
+                29.690619
+              ], 
+              [
+                -93.852868, 
+                29.675885
+              ], 
+              [
+                -93.866981, 
+                29.673085
+              ], 
+              [
+                -93.88999, 
+                29.674013
+              ], 
+              [
+                -93.931, 
+                29.679612
+              ], 
+              [
+                -94.001406, 
+                29.681486
+              ], 
+              [
+                -94.056506, 
+                29.671163
+              ], 
+              [
+                -94.132577, 
+                29.646217
+              ], 
+              [
+                -94.354163, 
+                29.561459
+              ], 
+              [
+                -94.370866, 
+                29.55507
+              ], 
+              [
+                -94.500807, 
+                29.505367
+              ], 
+              [
+                -94.594853, 
+                29.467903
+              ], 
+              [
+                -94.631084, 
+                29.451464
+              ], 
+              [
+                -94.670389, 
+                29.43078
+              ], 
+              [
+                -94.694158, 
+                29.415632
+              ], 
+              [
+                -94.708473, 
+                29.403049
+              ], 
+              [
+                -94.723959, 
+                29.383268
+              ], 
+              [
+                -94.731047, 
+                29.369141
+              ], 
+              [
+                -94.744834, 
+                29.369158
+              ], 
+              [
+                -94.761491, 
+                29.361883
+              ], 
+              [
+                -94.778691, 
+                29.361483
+              ], 
+              [
+                -94.782356, 
+                29.364266
+              ], 
+              [
+                -94.783131, 
+                29.375642
+              ], 
+              [
+                -94.766848, 
+                29.393489
+              ], 
+              [
+                -94.7541, 
+                29.401
+              ], 
+              [
+                -94.723818, 
+                29.426536
+              ], 
+              [
+                -94.706365, 
+                29.436805
+              ], 
+              [
+                -94.686386, 
+                29.466509
+              ], 
+              [
+                -94.681541, 
+                29.471389
+              ], 
+              [
+                -94.6724, 
+                29.476843
+              ], 
+              [
+                -94.665853, 
+                29.478401
+              ], 
+              [
+                -94.656737, 
+                29.478033
+              ], 
+              [
+                -94.645948, 
+                29.473769
+              ], 
+              [
+                -94.628217, 
+                29.475986
+              ], 
+              [
+                -94.608557, 
+                29.483345
+              ], 
+              [
+                -94.594211, 
+                29.492127
+              ], 
+              [
+                -94.59544, 
+                29.507669
+              ], 
+              [
+                -94.591407, 
+                29.513858
+              ], 
+              [
+                -94.580274, 
+                29.525295
+              ], 
+              [
+                -94.566674, 
+                29.531988
+              ], 
+              [
+                -94.55399, 
+                29.529559
+              ], 
+              [
+                -94.546994, 
+                29.524379
+              ], 
+              [
+                -94.532348, 
+                29.5178
+              ], 
+              [
+                -94.511045, 
+                29.51965
+              ], 
+              [
+                -94.495025, 
+                29.525031
+              ], 
+              [
+                -94.503429, 
+                29.54325
+              ], 
+              [
+                -94.509487, 
+                29.54259
+              ], 
+              [
+                -94.511086, 
+                29.542971
+              ], 
+              [
+                -94.522421, 
+                29.545672
+              ], 
+              [
+                -94.523743, 
+                29.545987
+              ], 
+              [
+                -94.526336, 
+                29.552634
+              ], 
+              [
+                -94.532021, 
+                29.558379
+              ], 
+              [
+                -94.541108, 
+                29.567561
+              ], 
+              [
+                -94.542532, 
+                29.569
+              ], 
+              [
+                -94.546385, 
+                29.572048
+              ], 
+              [
+                -94.553988, 
+                29.573882
+              ], 
+              [
+                -94.570006, 
+                29.572232
+              ], 
+              [
+                -94.570593, 
+                29.571878
+              ], 
+              [
+                -94.570867, 
+                29.571713
+              ], 
+              [
+                -94.578211, 
+                29.567281
+              ], 
+              [
+                -94.593518, 
+                29.561319
+              ], 
+              [
+                -94.610147, 
+                29.556947
+              ], 
+              [
+                -94.618028, 
+                29.554875
+              ], 
+              [
+                -94.621819, 
+                29.553878
+              ], 
+              [
+                -94.621953, 
+                29.553843
+              ], 
+              [
+                -94.62589, 
+                29.552808
+              ], 
+              [
+                -94.682706, 
+                29.539825
+              ], 
+              [
+                -94.689353, 
+                29.538306
+              ], 
+              [
+                -94.691625, 
+                29.537787
+              ], 
+              [
+                -94.718276, 
+                29.533547
+              ], 
+              [
+                -94.740699, 
+                29.525858
+              ], 
+              [
+                -94.755514, 
+                29.524776
+              ], 
+              [
+                -94.757689, 
+                29.524617
+              ], 
+              [
+                -94.757788, 
+                29.524626
+              ], 
+              [
+                -94.757883, 
+                29.524635
+              ], 
+              [
+                -94.767246, 
+                29.525523
+              ], 
+              [
+                -94.768676, 
+                29.525659
+              ], 
+              [
+                -94.769418, 
+                29.525988
+              ], 
+              [
+                -94.769573, 
+                29.526057
+              ], 
+              [
+                -94.77084, 
+                29.526618
+              ], 
+              [
+                -94.774571, 
+                29.528271
+              ], 
+              [
+                -94.774798, 
+                29.528372
+              ], 
+              [
+                -94.779674, 
+                29.530533
+              ], 
+              [
+                -94.779708, 
+                29.530548
+              ], 
+              [
+                -94.779831, 
+                29.530602
+              ], 
+              [
+                -94.780938, 
+                29.531093
+              ], 
+              [
+                -94.783296, 
+                29.535314
+              ], 
+              [
+                -94.784034, 
+                29.536635
+              ], 
+              [
+                -94.786512, 
+                29.541073
+              ], 
+              [
+                -94.786649, 
+                29.541319
+              ], 
+              [
+                -94.78954, 
+                29.546494
+              ], 
+              [
+                -94.790605, 
+                29.548401
+              ], 
+              [
+                -94.779439, 
+                29.549472
+              ], 
+              [
+                -94.771053, 
+                29.548439
+              ], 
+              [
+                -94.755237, 
+                29.562782
+              ], 
+              [
+                -94.734626, 
+                29.584046
+              ], 
+              [
+                -94.708741, 
+                29.625226
+              ], 
+              [
+                -94.693154, 
+                29.694453
+              ], 
+              [
+                -94.692434, 
+                29.70361
+              ], 
+              [
+                -94.695317, 
+                29.723052
+              ], 
+              [
+                -94.724616, 
+                29.774766
+              ], 
+              [
+                -94.735271, 
+                29.785433
+              ], 
+              [
+                -94.740919, 
+                29.787081
+              ], 
+              [
+                -94.771512, 
+                29.773889
+              ], 
+              [
+                -94.792238, 
+                29.767433
+              ], 
+              [
+                -94.816085, 
+                29.75671
+              ], 
+              [
+                -94.851108, 
+                29.721373
+              ], 
+              [
+                -94.865007, 
+                29.695337
+              ], 
+              [
+                -94.867438, 
+                29.678768
+              ], 
+              [
+                -94.872551, 
+                29.67125
+              ], 
+              [
+                -94.893107, 
+                29.661336
+              ], 
+              [
+                -94.915413, 
+                29.656614
+              ], 
+              [
+                -94.921318, 
+                29.658178
+              ], 
+              [
+                -94.931154, 
+                29.673874
+              ], 
+              [
+                -94.934167, 
+                29.678682
+              ], 
+              [
+                -94.936089, 
+                29.692704
+              ], 
+              [
+                -94.942681, 
+                29.697778
+              ], 
+              [
+                -94.965963, 
+                29.70033
+              ], 
+              [
+                -94.972666, 
+                29.68487
+              ], 
+              [
+                -94.988924, 
+                29.672202
+              ], 
+              [
+                -95.005398, 
+                29.659366
+              ], 
+              [
+                -95.005648, 
+                29.658985
+              ], 
+              [
+                -95.006381, 
+                29.657871
+              ], 
+              [
+                -95.007623, 
+                29.65598
+              ], 
+              [
+                -95.011025, 
+                29.650803
+              ], 
+              [
+                -95.011683, 
+                29.649802
+              ], 
+              [
+                -95.01272, 
+                29.647088
+              ], 
+              [
+                -95.013777, 
+                29.644322
+              ], 
+              [
+                -95.015636, 
+                29.639457
+              ], 
+              [
+                -95.0156, 
+                29.639285
+              ], 
+              [
+                -95.013623, 
+                29.62979
+              ], 
+              [
+                -95.013499, 
+                29.629194
+              ], 
+              [
+                -95.01166, 
+                29.627768
+              ], 
+              [
+                -95.000781, 
+                29.619331
+              ], 
+              [
+                -95.00046, 
+                29.619082
+              ], 
+              [
+                -94.999481, 
+                29.618323
+              ], 
+              [
+                -94.999082, 
+                29.618014
+              ], 
+              [
+                -94.988871, 
+                29.610095
+              ], 
+              [
+                -94.984831, 
+                29.604361
+              ], 
+              [
+                -94.982936, 
+                29.60167
+              ], 
+              [
+                -94.982706, 
+                29.601344
+              ], 
+              [
+                -94.982855, 
+                29.601103
+              ], 
+              [
+                -94.982923, 
+                29.600992
+              ], 
+              [
+                -94.988993, 
+                29.591155
+              ], 
+              [
+                -95.00767, 
+                29.574257
+              ], 
+              [
+                -95.016145, 
+                29.559336
+              ], 
+              [
+                -95.016353, 
+                29.55897
+              ], 
+              [
+                -95.016627, 
+                29.558487
+              ], 
+              [
+                -95.016672, 
+                29.558388
+              ], 
+              [
+                -95.018253, 
+                29.554885
+              ], 
+              [
+                -95.018198, 
+                29.554618
+              ], 
+              [
+                -95.018191, 
+                29.554584
+              ], 
+              [
+                -95.016889, 
+                29.548303
+              ], 
+              [
+                -95.015165, 
+                29.539989
+              ], 
+              [
+                -95.013378, 
+                29.537822
+              ], 
+              [
+                -94.999581, 
+                29.521093
+              ], 
+              [
+                -94.981916, 
+                29.511141
+              ], 
+              [
+                -94.958443, 
+                29.505013
+              ], 
+              [
+                -94.934876, 
+                29.501079
+              ], 
+              [
+                -94.933483, 
+                29.500847
+              ], 
+              [
+                -94.933039, 
+                29.500773
+              ], 
+              [
+                -94.909898, 
+                29.49691
+              ], 
+              [
+                -94.909465, 
+                29.496838
+              ], 
+              [
+                -94.913385, 
+                29.487254
+              ], 
+              [
+                -94.925914, 
+                29.469047
+              ], 
+              [
+                -94.930861, 
+                29.450504
+              ], 
+              [
+                -94.919401, 
+                29.448031
+              ], 
+              [
+                -94.8908, 
+                29.433432
+              ], 
+              [
+                -94.8873, 
+                29.415132
+              ], 
+              [
+                -94.886536, 
+                29.366386
+              ], 
+              [
+                -94.894234, 
+                29.338
+              ], 
+              [
+                -94.893994, 
+                29.30817
+              ], 
+              [
+                -94.886536, 
+                29.297826
+              ], 
+              [
+                -94.875952, 
+                29.293015
+              ], 
+              [
+                -94.865126, 
+                29.293977
+              ], 
+              [
+                -94.84973, 
+                29.297345
+              ], 
+              [
+                -94.824953, 
+                29.306005
+              ], 
+              [
+                -94.822547, 
+                29.321882
+              ], 
+              [
+                -94.822307, 
+                29.344254
+              ], 
+              [
+                -94.810696, 
+                29.353435
+              ], 
+              [
+                -94.784895, 
+                29.335535
+              ], 
+              [
+                -94.779995, 
+                29.334935
+              ], 
+              [
+                -94.777064, 
+                29.336811
+              ], 
+              [
+                -94.745529, 
+                29.334235
+              ], 
+              [
+                -94.744945, 
+                29.33641
+              ], 
+              [
+                -94.73132, 
+                29.338066
+              ], 
+              [
+                -94.72253, 
+                29.331446
+              ], 
+              [
+                -94.731082, 
+                29.331833
+              ], 
+              [
+                -94.769695, 
+                29.304936
+              ], 
+              [
+                -94.786095, 
+                29.290737
+              ], 
+              [
+                -94.803695, 
+                29.279237
+              ], 
+              [
+                -95.026219, 
+                29.148064
+              ], 
+              [
+                -95.081773, 
+                29.111222
+              ], 
+              [
+                -95.110484, 
+                29.088224
+              ], 
+              [
+                -95.119271, 
+                29.077844
+              ], 
+              [
+                -95.122525, 
+                29.074
+              ], 
+              [
+                -95.125134, 
+                29.067321
+              ], 
+              [
+                -95.191391, 
+                29.02309
+              ], 
+              [
+                -95.238924, 
+                28.988644
+              ], 
+              [
+                -95.272266, 
+                28.961546
+              ], 
+              [
+                -95.297147, 
+                28.934073
+              ], 
+              [
+                -95.309704, 
+                28.928262
+              ], 
+              [
+                -95.353451, 
+                28.898145
+              ], 
+              [
+                -95.376979, 
+                28.87616
+              ], 
+              [
+                -95.38239, 
+                28.866348
+              ], 
+              [
+                -95.416174, 
+                28.859482
+              ], 
+              [
+                -95.439594, 
+                28.859022
+              ], 
+              [
+                -95.486769, 
+                28.836287
+              ], 
+              [
+                -95.507041, 
+                28.824755
+              ], 
+              [
+                -95.568136, 
+                28.789998
+              ], 
+              [
+                -95.812504, 
+                28.664942
+              ], 
+              [
+                -95.884026, 
+                28.633098
+              ], 
+              [
+                -96.000682, 
+                28.588238
+              ], 
+              [
+                -96.077868, 
+                28.556626
+              ], 
+              [
+                -96.194412, 
+                28.502224
+              ], 
+              [
+                -96.220376, 
+                28.491966
+              ], 
+              [
+                -96.244751, 
+                28.475055
+              ], 
+              [
+                -96.270391, 
+                28.46193
+              ], 
+              [
+                -96.303212, 
+                28.441871
+              ], 
+              [
+                -96.32156, 
+                28.425148
+              ], 
+              [
+                -96.328817, 
+                28.423659
+              ], 
+              [
+                -96.341617, 
+                28.417334
+              ], 
+              [
+                -96.371117, 
+                28.397661
+              ], 
+              [
+                -96.372101, 
+                28.393875
+              ], 
+              [
+                -96.370717, 
+                28.387667
+              ], 
+              [
+                -96.378616, 
+                28.383909
+              ], 
+              [
+                -96.379372, 
+                28.386089
+              ], 
+              [
+                -96.381864, 
+                28.393276
+              ], 
+              [
+                -96.37596, 
+                28.401682
+              ], 
+              [
+                -96.374138, 
+                28.404275
+              ], 
+              [
+                -96.335119, 
+                28.437795
+              ], 
+              [
+                -96.268341, 
+                28.477992
+              ], 
+              [
+                -96.223825, 
+                28.495067
+              ], 
+              [
+                -96.218978, 
+                28.500383
+              ], 
+              [
+                -96.21505, 
+                28.509679
+              ], 
+              [
+                -96.145448, 
+                28.544741
+              ], 
+              [
+                -96.104735, 
+                28.559499
+              ], 
+              [
+                -96.046211, 
+                28.58698
+              ], 
+              [
+                -96.032979, 
+                28.589016
+              ], 
+              [
+                -96.007534, 
+                28.599703
+              ], 
+              [
+                -95.98616, 
+                28.606319
+              ], 
+              [
+                -95.982088, 
+                28.614461
+              ], 
+              [
+                -95.985651, 
+                28.621077
+              ], 
+              [
+                -95.983106, 
+                28.641942
+              ], 
+              [
+                -95.978526, 
+                28.650594
+              ], 
+              [
+                -95.986066, 
+                28.655468
+              ], 
+              [
+                -95.996338, 
+                28.658736
+              ], 
+              [
+                -96.002954, 
+                28.656192
+              ], 
+              [
+                -96.006516, 
+                28.648049
+              ], 
+              [
+                -96.033488, 
+                28.652629
+              ], 
+              [
+                -96.047737, 
+                28.649067
+              ], 
+              [
+                -96.072165, 
+                28.635326
+              ], 
+              [
+                -96.099137, 
+                28.624639
+              ], 
+              [
+                -96.148501, 
+                28.611408
+              ], 
+              [
+                -96.187178, 
+                28.593596
+              ], 
+              [
+                -96.198374, 
+                28.58698
+              ], 
+              [
+                -96.221784, 
+                28.580364
+              ], 
+              [
+                -96.228909, 
+                28.580873
+              ], 
+              [
+                -96.233998, 
+                28.596649
+              ], 
+              [
+                -96.233998, 
+                28.601738
+              ], 
+              [
+                -96.222293, 
+                28.607336
+              ], 
+              [
+                -96.21415, 
+                28.613443
+              ], 
+              [
+                -96.212624, 
+                28.622604
+              ], 
+              [
+                -96.230944, 
+                28.641433
+              ], 
+              [
+                -96.208552, 
+                28.662298
+              ], 
+              [
+                -96.214659, 
+                28.665352
+              ], 
+              [
+                -96.192267, 
+                28.687744
+              ], 
+              [
+                -96.19125, 
+                28.69436
+              ], 
+              [
+                -96.19583, 
+                28.69894
+              ], 
+              [
+                -96.202446, 
+                28.700976
+              ], 
+              [
+                -96.222802, 
+                28.698431
+              ], 
+              [
+                -96.231453, 
+                28.696395
+              ], 
+              [
+                -96.256899, 
+                28.68469
+              ], 
+              [
+                -96.263515, 
+                28.683673
+              ], 
+              [
+                -96.268604, 
+                28.688762
+              ], 
+              [
+                -96.287942, 
+                28.683164
+              ], 
+              [
+                -96.304227, 
+                28.671459
+              ], 
+              [
+                -96.305245, 
+                28.660263
+              ], 
+              [
+                -96.303718, 
+                28.644996
+              ], 
+              [
+                -96.322921, 
+                28.64186
+              ], 
+              [
+                -96.328655, 
+                28.640924
+              ], 
+              [
+                -96.373439, 
+                28.626675
+              ], 
+              [
+                -96.376492, 
+                28.620059
+              ], 
+              [
+                -96.384635, 
+                28.615988
+              ], 
+              [
+                -96.473694, 
+                28.57324
+              ], 
+              [
+                -96.487943, 
+                28.569677
+              ], 
+              [
+                -96.482854, 
+                28.580364
+              ], 
+              [
+                -96.480309, 
+                28.596649
+              ], 
+              [
+                -96.485907, 
+                28.607845
+              ], 
+              [
+                -96.490488, 
+                28.610899
+              ], 
+              [
+                -96.510844, 
+                28.61497
+              ], 
+              [
+                -96.510335, 
+                28.617515
+              ], 
+              [
+                -96.497612, 
+                28.625148
+              ], 
+              [
+                -96.496595, 
+                28.630746
+              ], 
+              [
+                -96.499648, 
+                28.635835
+              ], 
+              [
+                -96.506264, 
+                28.63838
+              ], 
+              [
+                -96.54545, 
+                28.645505
+              ], 
+              [
+                -96.555119, 
+                28.646013
+              ], 
+              [
+                -96.563262, 
+                28.644487
+              ], 
+              [
+                -96.572931, 
+                28.667897
+              ], 
+              [
+                -96.570386, 
+                28.674003
+              ], 
+              [
+                -96.55919, 
+                28.687235
+              ], 
+              [
+                -96.559699, 
+                28.691306
+              ], 
+              [
+                -96.561226, 
+                28.696395
+              ], 
+              [
+                -96.566824, 
+                28.697922
+              ], 
+              [
+                -96.575141, 
+                28.702837
+              ], 
+              [
+                -96.577727, 
+                28.704365
+              ], 
+              [
+                -96.57802, 
+                28.704538
+              ], 
+              [
+                -96.579639, 
+                28.712312
+              ], 
+              [
+                -96.579669, 
+                28.712455
+              ], 
+              [
+                -96.580564, 
+                28.716752
+              ], 
+              [
+                -96.584091, 
+                28.722798
+              ], 
+              [
+                -96.584127, 
+                28.722859
+              ], 
+              [
+                -96.584196, 
+                28.722877
+              ], 
+              [
+                -96.591647, 
+                28.724838
+              ], 
+              [
+                -96.593796, 
+                28.725403
+              ], 
+              [
+                -96.604921, 
+                28.72221
+              ], 
+              [
+                -96.634419, 
+                28.713743
+              ], 
+              [
+                -96.634912, 
+                28.713601
+              ], 
+              [
+                -96.645867, 
+                28.710457
+              ], 
+              [
+                -96.648758, 
+                28.709627
+              ], 
+              [
+                -96.655528, 
+                28.704167
+              ], 
+              [
+                -96.664534, 
+                28.696904
+              ], 
+              [
+                -96.657918, 
+                28.687744
+              ], 
+              [
+                -96.635018, 
+                28.668914
+              ], 
+              [
+                -96.634, 
+                28.654665
+              ], 
+              [
+                -96.627893, 
+                28.650085
+              ], 
+              [
+                -96.623313, 
+                28.649576
+              ], 
+              [
+                -96.615679, 
+                28.644487
+              ], 
+              [
+                -96.61059, 
+                28.638889
+              ], 
+              [
+                -96.61059, 
+                28.636344
+              ], 
+              [
+                -96.61975, 
+                28.627693
+              ], 
+              [
+                -96.622804, 
+                28.622095
+              ], 
+              [
+                -96.611099, 
+                28.585962
+              ], 
+              [
+                -96.608045, 
+                28.583418
+              ], 
+              [
+                -96.573949, 
+                28.584436
+              ], 
+              [
+                -96.565297, 
+                28.5824
+              ], 
+              [
+                -96.564279, 
+                28.576293
+              ], 
+              [
+                -96.561226, 
+                28.570695
+              ], 
+              [
+                -96.536289, 
+                28.559499
+              ], 
+              [
+                -96.526111, 
+                28.557972
+              ], 
+              [
+                -96.52204, 
+                28.55441
+              ], 
+              [
+                -96.514406, 
+                28.535071
+              ], 
+              [
+                -96.505755, 
+                28.525911
+              ], 
+              [
+                -96.450284, 
+                28.490796
+              ], 
+              [
+                -96.419749, 
+                28.467387
+              ], 
+              [
+                -96.410589, 
+                28.459244
+              ], 
+              [
+                -96.402446, 
+                28.449066
+              ], 
+              [
+                -96.403973, 
+                28.44245
+              ], 
+              [
+                -96.46148, 
+                28.421585
+              ], 
+              [
+                -96.481836, 
+                28.407844
+              ], 
+              [
+                -96.504737, 
+                28.397666
+              ], 
+              [
+                -96.520513, 
+                28.394104
+              ], 
+              [
+                -96.542905, 
+                28.385452
+              ], 
+              [
+                -96.559699, 
+                28.377819
+              ], 
+              [
+                -96.570386, 
+                28.368658
+              ], 
+              [
+                -96.59176, 
+                28.357462
+              ], 
+              [
+                -96.600412, 
+                28.354409
+              ], 
+              [
+                -96.650794, 
+                28.346775
+              ], 
+              [
+                -96.672677, 
+                28.335579
+              ], 
+              [
+                -96.688453, 
+                28.347284
+              ], 
+              [
+                -96.69456, 
+                28.347284
+              ], 
+              [
+                -96.698122, 
+                28.342704
+              ], 
+              [
+                -96.705247, 
+                28.348811
+              ], 
+              [
+                -96.700158, 
+                28.369676
+              ], 
+              [
+                -96.705756, 
+                28.400211
+              ], 
+              [
+                -96.710336, 
+                28.406827
+              ], 
+              [
+                -96.72255, 
+                28.408862
+              ], 
+              [
+                -96.749013, 
+                28.408862
+              ], 
+              [
+                -96.762245, 
+                28.411916
+              ], 
+              [
+                -96.76696, 
+                28.410737
+              ], 
+              [
+                -96.768352, 
+                28.410389
+              ], 
+              [
+                -96.772209, 
+                28.408074
+              ], 
+              [
+                -96.775985, 
+                28.405809
+              ], 
+              [
+                -96.780796, 
+                28.398421
+              ], 
+              [
+                -96.790235, 
+                28.383926
+              ], 
+              [
+                -96.794554, 
+                28.365688
+              ], 
+              [
+                -96.794796, 
+                28.364668
+              ], 
+              [
+                -96.794815, 
+                28.364587
+              ], 
+              [
+                -96.794812, 
+                28.364515
+              ], 
+              [
+                -96.794812, 
+                28.364503
+              ], 
+              [
+                -96.794357, 
+                28.350865
+              ], 
+              [
+                -96.794306, 
+                28.34932
+              ], 
+              [
+                -96.794016, 
+                28.347249
+              ], 
+              [
+                -96.793926, 
+                28.346606
+              ], 
+              [
+                -96.793835, 
+                28.345959
+              ], 
+              [
+                -96.793765, 
+                28.345453
+              ], 
+              [
+                -96.79254, 
+                28.336705
+              ], 
+              [
+                -96.790744, 
+                28.323874
+              ], 
+              [
+                -96.791159, 
+                28.319095
+              ], 
+              [
+                -96.791761, 
+                28.31217
+              ], 
+              [
+                -96.806011, 
+                28.296902
+              ], 
+              [
+                -96.809573, 
+                28.290287
+              ], 
+              [
+                -96.806011, 
+                28.282144
+              ], 
+              [
+                -96.799302, 
+                28.272716
+              ], 
+              [
+                -96.787181, 
+                28.255681
+              ], 
+              [
+                -96.787181, 
+                28.250083
+              ], 
+              [
+                -96.800413, 
+                28.224128
+              ], 
+              [
+                -96.810037, 
+                28.217086
+              ], 
+              [
+                -96.842143, 
+                28.193594
+              ], 
+              [
+                -96.872678, 
+                28.176291
+              ], 
+              [
+                -96.898123, 
+                28.152881
+              ], 
+              [
+                -96.910337, 
+                28.147283
+              ], 
+              [
+                -96.934765, 
+                28.123873
+              ], 
+              [
+                -96.962755, 
+                28.123365
+              ], 
+              [
+                -97.000414, 
+                28.137614
+              ], 
+              [
+                -97.007539, 
+                28.136087
+              ], 
+              [
+                -97.027386, 
+                28.124382
+              ], 
+              [
+                -97.028913, 
+                28.117258
+              ], 
+              [
+                -97.022806, 
+                28.107588
+              ], 
+              [
+                -97.023824, 
+                28.103517
+              ], 
+              [
+                -97.031966, 
+                28.093848
+              ], 
+              [
+                -97.035528, 
+                28.084688
+              ], 
+              [
+                -97.035528, 
+                28.074
+              ], 
+              [
+                -97.031457, 
+                28.053644
+              ], 
+              [
+                -97.025859, 
+                28.041939
+              ], 
+              [
+                -97.030948, 
+                28.033288
+              ], 
+              [
+                -97.040618, 
+                28.028708
+              ], 
+              [
+                -97.04876, 
+                28.022092
+              ], 
+              [
+                -97.061992, 
+                27.996138
+              ], 
+              [
+                -97.075732, 
+                27.986977
+              ], 
+              [
+                -97.121534, 
+                27.923364
+              ], 
+              [
+                -97.129168, 
+                27.919801
+              ], 
+              [
+                -97.134801, 
+                27.902467
+              ], 
+              [
+                -97.135783, 
+                27.899445
+              ], 
+              [
+                -97.136615, 
+                27.898956
+              ], 
+              [
+                -97.144435, 
+                27.894356
+              ], 
+              [
+                -97.155122, 
+                27.880615
+              ], 
+              [
+                -97.183455, 
+                27.833231
+              ], 
+              [
+                -97.184639, 
+                27.831251
+              ], 
+              [
+                -97.186709, 
+                27.825453
+              ], 
+              [
+                -97.186871, 
+                27.825001
+              ], 
+              [
+                -97.187183, 
+                27.824126
+              ], 
+              [
+                -97.188866, 
+                27.823772
+              ], 
+              [
+                -97.192874, 
+                27.822928
+              ], 
+              [
+                -97.193701, 
+                27.822754
+              ], 
+              [
+                -97.196852, 
+                27.822091
+              ], 
+              [
+                -97.209127, 
+                27.822091
+              ], 
+              [
+                -97.209575, 
+                27.822091
+              ], 
+              [
+                -97.211226, 
+                27.822391
+              ], 
+              [
+                -97.219738, 
+                27.823939
+              ], 
+              [
+                -97.220771, 
+                27.824126
+              ], 
+              [
+                -97.222212, 
+                27.824649
+              ], 
+              [
+                -97.222957, 
+                27.824919
+              ], 
+              [
+                -97.225176, 
+                27.825723
+              ], 
+              [
+                -97.225435, 
+                27.826145
+              ], 
+              [
+                -97.225811, 
+                27.826755
+              ], 
+              [
+                -97.226012, 
+                27.827083
+              ], 
+              [
+                -97.227317, 
+                27.829204
+              ], 
+              [
+                -97.227317, 
+                27.830939
+              ], 
+              [
+                -97.227317, 
+                27.831258
+              ], 
+              [
+                -97.227317, 
+                27.832895
+              ], 
+              [
+                -97.227317, 
+                27.832952
+              ], 
+              [
+                -97.226514, 
+                27.838307
+              ], 
+              [
+                -97.228388, 
+                27.843661
+              ], 
+              [
+                -97.234512, 
+                27.849063
+              ], 
+              [
+                -97.241127, 
+                27.857714
+              ], 
+              [
+                -97.241393, 
+                27.858953
+              ], 
+              [
+                -97.242654, 
+                27.864839
+              ], 
+              [
+                -97.242922, 
+                27.865208
+              ], 
+              [
+                -97.250797, 
+                27.876035
+              ], 
+              [
+                -97.256394, 
+                27.877901
+              ], 
+              [
+                -97.258305, 
+                27.878538
+              ], 
+              [
+                -97.26301, 
+                27.880106
+              ], 
+              [
+                -97.272253, 
+                27.881427
+              ], 
+              [
+                -97.273698, 
+                27.881633
+              ], 
+              [
+                -97.276632, 
+                27.881144
+              ], 
+              [
+                -97.285466, 
+                27.879672
+              ], 
+              [
+                -97.295072, 
+                27.878071
+              ], 
+              [
+                -97.301455, 
+                27.875907
+              ], 
+              [
+                -97.317892, 
+                27.870335
+              ], 
+              [
+                -97.325097, 
+                27.867893
+              ], 
+              [
+                -97.327494, 
+                27.866405
+              ], 
+              [
+                -97.354614, 
+                27.849572
+              ], 
+              [
+                -97.360212, 
+                27.85059
+              ], 
+              [
+                -97.360547, 
+                27.850363
+              ], 
+              [
+                -97.361246, 
+                27.849891
+              ], 
+              [
+                -97.379042, 
+                27.837867
+              ], 
+              [
+                -97.391764, 
+                27.813948
+              ], 
+              [
+                -97.393291, 
+                27.782905
+              ], 
+              [
+                -97.386166, 
+                27.76662
+              ], 
+              [
+                -97.368355, 
+                27.741683
+              ], 
+              [
+                -97.34698, 
+                27.725398
+              ], 
+              [
+                -97.316446, 
+                27.712676
+              ], 
+              [
+                -97.253955, 
+                27.696696
+              ], 
+              [
+                -97.259957, 
+                27.679597
+              ], 
+              [
+                -97.266064, 
+                27.678579
+              ], 
+              [
+                -97.296598, 
+                27.613947
+              ], 
+              [
+                -97.298634, 
+                27.604787
+              ], 
+              [
+                -97.297616, 
+                27.59868
+              ], 
+              [
+                -97.294054, 
+                27.5941
+              ], 
+              [
+                -97.302196, 
+                27.585957
+              ], 
+              [
+                -97.321535, 
+                27.571199
+              ], 
+              [
+                -97.325118, 
+                27.560927
+              ], 
+              [
+                -97.336802, 
+                27.527433
+              ], 
+              [
+                -97.343418, 
+                27.517764
+              ], 
+              [
+                -97.347489, 
+                27.503005
+              ], 
+              [
+                -97.350543, 
+                27.478578
+              ], 
+              [
+                -97.359194, 
+                27.458221
+              ], 
+              [
+                -97.36581, 
+                27.450588
+              ], 
+              [
+                -97.371917, 
+                27.425142
+              ], 
+              [
+                -97.369881, 
+                27.41242
+              ], 
+              [
+                -97.372935, 
+                27.401224
+              ], 
+              [
+                -97.37955, 
+                27.390028
+              ], 
+              [
+                -97.399398, 
+                27.344735
+              ], 
+              [
+                -97.401942, 
+                27.335574
+              ], 
+              [
+                -97.404996, 
+                27.329977
+              ], 
+              [
+                -97.413138, 
+                27.321325
+              ], 
+              [
+                -97.420263, 
+                27.317254
+              ], 
+              [
+                -97.430441, 
+                27.313691
+              ], 
+              [
+                -97.450798, 
+                27.313691
+              ], 
+              [
+                -97.482859, 
+                27.297915
+              ], 
+              [
+                -97.508304, 
+                27.275014
+              ], 
+              [
+                -97.532223, 
+                27.278577
+              ], 
+              [
+                -97.544437, 
+                27.284175
+              ], 
+              [
+                -97.546981, 
+                27.290791
+              ], 
+              [
+                -97.536803, 
+                27.289264
+              ], 
+              [
+                -97.526625, 
+                27.291808
+              ], 
+              [
+                -97.524589, 
+                27.297915
+              ], 
+              [
+                -97.517465, 
+                27.30504
+              ], 
+              [
+                -97.504742, 
+                27.30504
+              ], 
+              [
+                -97.498126, 
+                27.308602
+              ], 
+              [
+                -97.502706, 
+                27.322343
+              ], 
+              [
+                -97.499144, 
+                27.327941
+              ], 
+              [
+                -97.483877, 
+                27.338628
+              ], 
+              [
+                -97.483877, 
+                27.351351
+              ], 
+              [
+                -97.48693, 
+                27.358984
+              ], 
+              [
+                -97.501688, 
+                27.366618
+              ], 
+              [
+                -97.514411, 
+                27.361529
+              ], 
+              [
+                -97.520518, 
+                27.352877
+              ], 
+              [
+                -97.53833, 
+                27.335574
+              ], 
+              [
+                -97.5709, 
+                27.315727
+              ], 
+              [
+                -97.584132, 
+                27.30962
+              ], 
+              [
+                -97.609068, 
+                27.285193
+              ], 
+              [
+                -97.621791, 
+                27.287228
+              ], 
+              [
+                -97.63146, 
+                27.28621
+              ], 
+              [
+                -97.636549, 
+                27.282139
+              ], 
+              [
+                -97.63668, 
+                27.281727
+              ], 
+              [
+                -97.640111, 
+                27.270943
+              ], 
+              [
+                -97.639094, 
+                27.253131
+              ], 
+              [
+                -97.635022, 
+                27.247024
+              ], 
+              [
+                -97.628916, 
+                27.242953
+              ], 
+              [
+                -97.597363, 
+                27.242444
+              ], 
+              [
+                -97.582605, 
+                27.240409
+              ], 
+              [
+                -97.573953, 
+                27.238882
+              ], 
+              [
+                -97.561231, 
+                27.232775
+              ], 
+              [
+                -97.54291, 
+                27.229213
+              ], 
+              [
+                -97.520009, 
+                27.231248
+              ], 
+              [
+                -97.509831, 
+                27.23532
+              ], 
+              [
+                -97.503215, 
+                27.2399
+              ], 
+              [
+                -97.500162, 
+                27.24448
+              ], 
+              [
+                -97.485149, 
+                27.250841
+              ], 
+              [
+                -97.467083, 
+                27.25364
+              ], 
+              [
+                -97.458431, 
+                27.259493
+              ], 
+              [
+                -97.450289, 
+                27.262546
+              ], 
+              [
+                -97.42408, 
+                27.264073
+              ], 
+              [
+                -97.422299, 
+                27.257712
+              ], 
+              [
+                -97.434767, 
+                27.202241
+              ], 
+              [
+                -97.444945, 
+                27.144734
+              ], 
+              [
+                -97.443673, 
+                27.116235
+              ], 
+              [
+                -97.452324, 
+                27.115217
+              ], 
+              [
+                -97.455887, 
+                27.110383
+              ], 
+              [
+                -97.45665, 
+                27.099695
+              ], 
+              [
+                -97.461739, 
+                27.095624
+              ], 
+              [
+                -97.47548, 
+                27.098423
+              ], 
+              [
+                -97.480569, 
+                27.102494
+              ], 
+              [
+                -97.49151, 
+                27.101222
+              ], 
+              [
+                -97.495836, 
+                27.094098
+              ], 
+              [
+                -97.493291, 
+                27.078067
+              ], 
+              [
+                -97.477515, 
+                27.066108
+              ], 
+              [
+                -97.479042, 
+                27.0628
+              ], 
+              [
+                -97.482257, 
+                27.061942
+              ], 
+              [
+                -97.48693, 
+                27.057711
+              ], 
+              [
+                -97.487693, 
+                27.053639
+              ], 
+              [
+                -97.486676, 
+                27.03481
+              ], 
+              [
+                -97.477515, 
+                27.03252
+              ], 
+              [
+                -97.473953, 
+                27.029212
+              ], 
+              [
+                -97.473444, 
+                27.02285
+              ], 
+              [
+                -97.478533, 
+                26.999186
+              ], 
+              [
+                -97.480569, 
+                26.997659
+              ], 
+              [
+                -97.484131, 
+                27.000458
+              ], 
+              [
+                -97.536803, 
+                26.999695
+              ], 
+              [
+                -97.549271, 
+                26.995878
+              ], 
+              [
+                -97.555378, 
+                26.99028
+              ], 
+              [
+                -97.551053, 
+                26.980865
+              ], 
+              [
+                -97.549526, 
+                26.965344
+              ], 
+              [
+                -97.552325, 
+                26.952112
+              ], 
+              [
+                -97.555378, 
+                26.947277
+              ], 
+              [
+                -97.555378, 
+                26.93888
+              ], 
+              [
+                -97.540874, 
+                26.90631
+              ], 
+              [
+                -97.540111, 
+                26.900967
+              ], 
+              [
+                -97.547999, 
+                26.895114
+              ], 
+              [
+                -97.552325, 
+                26.888499
+              ], 
+              [
+                -97.552325, 
+                26.867633
+              ], 
+              [
+                -97.558432, 
+                26.864325
+              ], 
+              [
+                -97.563266, 
+                26.842188
+              ], 
+              [
+                -97.552579, 
+                26.827938
+              ], 
+              [
+                -97.547745, 
+                26.824631
+              ], 
+              [
+                -97.537566, 
+                26.824885
+              ], 
+              [
+                -97.509831, 
+                26.803511
+              ], 
+              [
+                -97.484385, 
+                26.763562
+              ], 
+              [
+                -97.478024, 
+                26.7572
+              ], 
+              [
+                -97.471663, 
+                26.758727
+              ], 
+              [
+                -97.468609, 
+                26.740915
+              ], 
+              [
+                -97.467337, 
+                26.710126
+              ], 
+              [
+                -97.444945, 
+                26.633535
+              ], 
+              [
+                -97.445708, 
+                26.609362
+              ], 
+              [
+                -97.441206, 
+                26.599901
+              ], 
+              [
+                -97.428151, 
+                26.572466
+              ], 
+              [
+                -97.416955, 
+                26.553637
+              ], 
+              [
+                -97.422299, 
+                26.520303
+              ], 
+              [
+                -97.425861, 
+                26.516741
+              ], 
+              [
+                -97.430696, 
+                26.506563
+              ], 
+              [
+                -97.430696, 
+                26.494603
+              ], 
+              [
+                -97.42637, 
+                26.484425
+              ], 
+              [
+                -97.429169, 
+                26.478064
+              ], 
+              [
+                -97.43553, 
+                26.470176
+              ], 
+              [
+                -97.441383, 
+                26.466614
+              ], 
+              [
+                -97.441383, 
+                26.455418
+              ], 
+              [
+                -97.437566, 
+                26.44982
+              ], 
+              [
+                -97.425861, 
+                26.446003
+              ], 
+              [
+                -97.421026, 
+                26.446766
+              ], 
+              [
+                -97.41721, 
+                26.44982
+              ], 
+              [
+                -97.411612, 
+                26.447275
+              ], 
+              [
+                -97.412884, 
+                26.433026
+              ], 
+              [
+                -97.42179, 
+                26.417249
+              ], 
+              [
+                -97.4195, 
+                26.413178
+              ], 
+              [
+                -97.406014, 
+                26.409107
+              ], 
+              [
+                -97.398126, 
+                26.410888
+              ], 
+              [
+                -97.394309, 
+                26.41445
+              ], 
+              [
+                -97.395072, 
+                26.417249
+              ], 
+              [
+                -97.382485, 
+                26.411326
+              ], 
+              [
+                -97.377769, 
+                26.409107
+              ], 
+              [
+                -97.369627, 
+                26.394603
+              ], 
+              [
+                -97.374461, 
+                26.380862
+              ], 
+              [
+                -97.388965, 
+                26.36585
+              ], 
+              [
+                -97.392019, 
+                26.339386
+              ], 
+              [
+                -97.391001, 
+                26.332262
+              ], 
+              [
+                -97.387947, 
+                26.330481
+              ], 
+              [
+                -97.376242, 
+                26.336333
+              ], 
+              [
+                -97.372171, 
+                26.339895
+              ], 
+              [
+                -97.369372, 
+                26.348547
+              ], 
+              [
+                -97.358176, 
+                26.356435
+              ], 
+              [
+                -97.343418, 
+                26.359234
+              ], 
+              [
+                -97.335275, 
+                26.355672
+              ], 
+              [
+                -97.330441, 
+                26.350582
+              ], 
+              [
+                -97.336802, 
+                26.331753
+              ], 
+              [
+                -97.352833, 
+                26.318521
+              ], 
+              [
+                -97.354359, 
+                26.313941
+              ], 
+              [
+                -97.34698, 
+                26.311396
+              ], 
+              [
+                -97.347489, 
+                26.292821
+              ], 
+              [
+                -97.343927, 
+                26.267376
+              ], 
+              [
+                -97.341128, 
+                26.265595
+              ], 
+              [
+                -97.331967, 
+                26.265595
+              ], 
+              [
+                -97.322807, 
+                26.271956
+              ], 
+              [
+                -97.311866, 
+                26.273737
+              ], 
+              [
+                -97.307031, 
+                26.253126
+              ], 
+              [
+                -97.308049, 
+                26.249055
+              ], 
+              [
+                -97.32128, 
+                26.236078
+              ], 
+              [
+                -97.32128, 
+                26.228699
+              ], 
+              [
+                -97.304486, 
+                26.20249
+              ], 
+              [
+                -97.296598, 
+                26.200709
+              ], 
+              [
+                -97.294817, 
+                26.192312
+              ], 
+              [
+                -97.296089, 
+                26.182388
+              ], 
+              [
+                -97.306776, 
+                26.159487
+              ], 
+              [
+                -97.296598, 
+                26.142439
+              ], 
+              [
+                -97.28536, 
+                26.128378
+              ], 
+              [
+                -97.282094, 
+                26.120301
+              ], 
+              [
+                -97.283112, 
+                26.117757
+              ], 
+              [
+                -97.294054, 
+                26.11394
+              ], 
+              [
+                -97.295072, 
+                26.108342
+              ], 
+              [
+                -97.279804, 
+                26.092057
+              ], 
+              [
+                -97.270898, 
+                26.086459
+              ], 
+              [
+                -97.24698, 
+                26.080352
+              ], 
+              [
+                -97.208048, 
+                26.079589
+              ], 
+              [
+                -97.199651, 
+                26.077044
+              ], 
+              [
+                -97.195071, 
+                26.04193
+              ], 
+              [
+                -97.204995, 
+                26.030225
+              ], 
+              [
+                -97.214918, 
+                26.030734
+              ], 
+              [
+                -97.224842, 
+                26.027426
+              ], 
+              [
+                -97.226114, 
+                26.024372
+              ], 
+              [
+                -97.219244, 
+                25.996128
+              ], 
+              [
+                -97.216954, 
+                25.993838
+              ], 
+              [
+                -97.208557, 
+                25.991802
+              ], 
+              [
+                -97.195834, 
+                25.993074
+              ], 
+              [
+                -97.17446, 
+                26.000072
+              ], 
+              [
+                -97.167208, 
+                26.007069
+              ], 
+              [
+                -97.162755, 
+                26.014576
+              ], 
+              [
+                -97.162628, 
+                26.023482
+              ], 
+              [
+                -97.172043, 
+                26.044729
+              ], 
+              [
+                -97.178659, 
+                26.045492
+              ], 
+              [
+                -97.18273, 
+                26.053126
+              ], 
+              [
+                -97.164982, 
+                26.063876
+              ], 
+              [
+                -97.152009, 
+                26.062108
+              ], 
+              [
+                -97.15321, 
+                26.038906
+              ], 
+              [
+                -97.151922, 
+                26.017653
+              ], 
+              [
+                -97.145567, 
+                25.971132
+              ], 
+              [
+                -97.172633, 
+                25.962883
+              ], 
+              [
+                -97.228025, 
+                25.958936
+              ], 
+              [
+                -97.271382, 
+                25.951832
+              ], 
+              [
+                -97.348275, 
+                25.931143
+              ], 
+              [
+                -97.362345, 
+                25.915724
+              ], 
+              [
+                -97.367045, 
+                25.903021
+              ], 
+              [
+                -97.366723, 
+                25.885066
+              ], 
+              [
+                -97.408357, 
+                25.856459
+              ], 
+              [
+                -97.496861, 
+                25.880058
+              ], 
+              [
+                -97.511161, 
+                25.887458
+              ], 
+              [
+                -97.582565, 
+                25.937857
+              ], 
+              [
+                -97.668099, 
+                26.022522
+              ], 
+              [
+                -97.671568, 
+                26.033955
+              ], 
+              [
+                -97.863056, 
+                26.061273
+              ], 
+              [
+                -97.888699, 
+                26.064931
+              ], 
+              [
+                -98.008307, 
+                26.061147
+              ], 
+              [
+                -98.011883, 
+                26.056608
+              ], 
+              [
+                -98.044517, 
+                26.043746
+              ], 
+              [
+                -98.132605, 
+                26.057507
+              ], 
+              [
+                -98.241664, 
+                26.074544
+              ], 
+              [
+                -98.264514, 
+                26.085507
+              ], 
+              [
+                -98.386694, 
+                26.157872
+              ], 
+              [
+                -98.438822, 
+                26.212022
+              ], 
+              [
+                -98.466167, 
+                26.223245
+              ], 
+              [
+                -98.58581, 
+                26.257403
+              ], 
+              [
+                -98.58672, 
+                26.257456
+              ], 
+              [
+                -98.623335, 
+                26.259592
+              ], 
+              [
+                -98.6329, 
+                26.250348
+              ], 
+              [
+                -98.705676, 
+                26.27748
+              ], 
+              [
+                -98.751164, 
+                26.331307
+              ], 
+              [
+                -98.807348, 
+                26.369421
+              ], 
+              [
+                -98.822373, 
+                26.370902
+              ], 
+              [
+                -98.861354, 
+                26.36599
+              ], 
+              [
+                -99.047575, 
+                26.406922
+              ], 
+              [
+                -99.105719, 
+                26.43872
+              ], 
+              [
+                -99.167996, 
+                26.557799
+              ], 
+              [
+                -99.172058, 
+                26.57086
+              ], 
+              [
+                -99.208951, 
+                26.689489
+              ], 
+              [
+                -99.242444, 
+                26.788262
+              ], 
+              [
+                -99.268613, 
+                26.843213
+              ], 
+              [
+                -99.321819, 
+                26.906846
+              ], 
+              [
+                -99.379149, 
+                26.93449
+              ], 
+              [
+                -99.446524, 
+                27.023008
+              ], 
+              [
+                -99.452316, 
+                27.062669
+              ], 
+              [
+                -99.451035, 
+                27.066765
+              ], 
+              [
+                -99.446593, 
+                27.070593
+              ], 
+              [
+                -99.429879, 
+                27.094323
+              ], 
+              [
+                -99.426348, 
+                27.176262
+              ], 
+              [
+                -99.441549, 
+                27.24992
+              ], 
+              [
+                -99.452391, 
+                27.264046
+              ], 
+              [
+                -99.453949, 
+                27.264673
+              ], 
+              [
+                -99.463309, 
+                27.268437
+              ], 
+              [
+                -99.47088, 
+                27.265444
+              ], 
+              [
+                -99.494678, 
+                27.277595
+              ], 
+              [
+                -99.529654, 
+                27.306051
+              ], 
+              [
+                -99.536443, 
+                27.312538
+              ], 
+              [
+                -99.537771, 
+                27.316073
+              ], 
+              [
+                -99.50696, 
+                27.35642
+              ], 
+              [
+                -99.492831, 
+                27.390491
+              ], 
+              [
+                -99.487704, 
+                27.409924
+              ], 
+              [
+                -99.480219, 
+                27.485796
+              ], 
+              [
+                -99.519381, 
+                27.573569
+              ], 
+              [
+                -99.541644, 
+                27.605772
+              ], 
+              [
+                -99.600619, 
+                27.641314
+              ], 
+              [
+                -99.623478, 
+                27.644136
+              ], 
+              [
+                -99.626294, 
+                27.64245
+              ], 
+              [
+                -99.627123, 
+                27.638412
+              ], 
+              [
+                -99.666175, 
+                27.638324
+              ], 
+              [
+                -99.843463, 
+                27.77456
+              ], 
+              [
+                -99.876174, 
+                27.806276
+              ], 
+              [
+                -99.901486, 
+                27.864162
+              ], 
+              [
+                -99.904385, 
+                27.875284
+              ], 
+              [
+                -99.895828, 
+                27.904178
+              ], 
+              [
+                -99.922046, 
+                27.922119
+              ], 
+              [
+                -99.991447, 
+                27.99456
+              ], 
+              [
+                -100.057049, 
+                28.095656
+              ], 
+              [
+                -100.080868, 
+                28.137192
+              ], 
+              [
+                -100.083393, 
+                28.144035
+              ], 
+              [
+                -100.088143, 
+                28.147503
+              ], 
+              [
+                -100.14414, 
+                28.168238
+              ], 
+              [
+                -100.171323, 
+                28.17623
+              ], 
+              [
+                -100.202448, 
+                28.190554
+              ], 
+              [
+                -100.209464, 
+                28.196866
+              ], 
+              [
+                -100.257788, 
+                28.240341
+              ], 
+              [
+                -100.291391, 
+                28.275398
+              ], 
+              [
+                -100.346986, 
+                28.407232
+              ], 
+              [
+                -100.333814, 
+                28.499252
+              ], 
+              [
+                -100.338518, 
+                28.501833
+              ], 
+              [
+                -100.386963, 
+                28.514023
+              ], 
+              [
+                -100.405058, 
+                28.53578
+              ], 
+              [
+                -100.429856, 
+                28.596441
+              ], 
+              [
+                -100.446659, 
+                28.608659
+              ], 
+              [
+                -100.500354, 
+                28.66196
+              ], 
+              [
+                -100.510055, 
+                28.690723
+              ], 
+              [
+                -100.511998, 
+                28.705352
+              ], 
+              [
+                -100.506701, 
+                28.716745
+              ], 
+              [
+                -100.507613, 
+                28.740599
+              ], 
+              [
+                -100.535438, 
+                28.805195
+              ], 
+              [
+                -100.546804, 
+                28.825374
+              ], 
+              [
+                -100.589854, 
+                28.861618
+              ], 
+              [
+                -100.640092, 
+                28.915833
+              ], 
+              [
+                -100.651512, 
+                28.943432
+              ], 
+              [
+                -100.648104, 
+                28.98386
+              ], 
+              [
+                -100.645894, 
+                28.986421
+              ], 
+              [
+                -100.664065, 
+                29.073206
+              ], 
+              [
+                -100.668356, 
+                29.08397
+              ], 
+              [
+                -100.674656, 
+                29.099777
+              ], 
+              [
+                -100.793662, 
+                29.242146
+              ], 
+              [
+                -100.797671, 
+                29.246943
+              ], 
+              [
+                -100.954042, 
+                29.347598
+              ], 
+              [
+                -100.995607, 
+                29.363403
+              ], 
+              [
+                -101.037642, 
+                29.414681
+              ], 
+              [
+                -101.043364, 
+                29.42988
+              ], 
+              [
+                -101.060151, 
+                29.458661
+              ], 
+              [
+                -101.087149, 
+                29.469414
+              ], 
+              [
+                -101.137503, 
+                29.473542
+              ], 
+              [
+                -101.235275, 
+                29.524854
+              ], 
+              [
+                -101.247319, 
+                29.618482
+              ], 
+              [
+                -101.250383, 
+                29.624171
+              ], 
+              [
+                -101.314135, 
+                29.659054
+              ], 
+              [
+                -101.343743, 
+                29.662047
+              ], 
+              [
+                -101.403926, 
+                29.757587
+              ], 
+              [
+                -101.455007, 
+                29.770188
+              ], 
+              [
+                -101.625958, 
+                29.771063
+              ], 
+              [
+                -101.635128, 
+                29.758675
+              ], 
+              [
+                -101.646418, 
+                29.754304
+              ], 
+              [
+                -101.761839, 
+                29.777187
+              ], 
+              [
+                -101.786353, 
+                29.782047
+              ], 
+              [
+                -101.883655, 
+                29.796193
+              ], 
+              [
+                -101.944913, 
+                29.801468
+              ], 
+              [
+                -102.040539, 
+                29.790061
+              ], 
+              [
+                -102.050044, 
+                29.78507
+              ], 
+              [
+                -102.116076, 
+                29.792527
+              ], 
+              [
+                -102.262466, 
+                29.853765
+              ], 
+              [
+                -102.282247, 
+                29.863598
+              ], 
+              [
+                -102.297331, 
+                29.875194
+              ], 
+              [
+                -102.320819, 
+                29.875193
+              ], 
+              [
+                -102.323389, 
+                29.875193
+              ], 
+              [
+                -102.364647, 
+                29.843624
+              ], 
+              [
+                -102.386677, 
+                29.76148
+              ], 
+              [
+                -102.404422, 
+                29.765105
+              ], 
+              [
+                -102.434063, 
+                29.7767
+              ], 
+              [
+                -102.486819, 
+                29.786725
+              ], 
+              [
+                -102.500741, 
+                29.781446
+              ], 
+              [
+                -102.554915, 
+                29.748966
+              ], 
+              [
+                -102.612879, 
+                29.748182
+              ], 
+              [
+                -102.665194, 
+                29.737421
+              ], 
+              [
+                -102.689738, 
+                29.722349
+              ], 
+              [
+                -102.698347, 
+                29.695591
+              ], 
+              [
+                -102.745494, 
+                29.592967
+              ], 
+              [
+                -102.781807, 
+                29.542454
+              ], 
+              [
+                -102.808692, 
+                29.522319
+              ], 
+              [
+                -102.831938, 
+                29.437943
+              ], 
+              [
+                -102.83332, 
+                29.408981
+              ], 
+              [
+                -102.875813, 
+                29.353715
+              ], 
+              [
+                -102.895886, 
+                29.284778
+              ], 
+              [
+                -102.886308, 
+                29.24568
+              ], 
+              [
+                -102.881135, 
+                29.246022
+              ], 
+              [
+                -102.871347, 
+                29.241625
+              ], 
+              [
+                -102.866846, 
+                29.225015
+              ], 
+              [
+                -102.87802, 
+                29.214698
+              ], 
+              [
+                -102.95089, 
+                29.176835
+              ], 
+              [
+                -102.995688, 
+                29.161219
+              ], 
+              [
+                -103.10443, 
+                29.03359
+              ], 
+              [
+                -103.115328, 
+                28.98527
+              ], 
+              [
+                -103.156646, 
+                28.972831
+              ], 
+              [
+                -103.163865, 
+                28.972099
+              ], 
+              [
+                -103.281903, 
+                28.990089
+              ], 
+              [
+                -103.383508, 
+                29.024112
+              ], 
+              [
+                -103.471037, 
+                29.075368
+              ], 
+              [
+                -103.470518, 
+                29.085108
+              ], 
+              [
+                -103.503236, 
+                29.11911
+              ], 
+              [
+                -103.525471, 
+                29.137744
+              ], 
+              [
+                -103.558679, 
+                29.154962
+              ], 
+              [
+                -103.61007, 
+                29.165727
+              ], 
+              [
+                -103.627067, 
+                29.163336
+              ], 
+              [
+                -103.714867, 
+                29.184137
+              ], 
+              [
+                -103.767814, 
+                29.224954
+              ], 
+              [
+                -103.792005, 
+                29.262695
+              ], 
+              [
+                -103.792705, 
+                29.262931
+              ], 
+              [
+                -103.838303, 
+                29.278304
+              ], 
+              [
+                -103.924976, 
+                29.293913
+              ], 
+              [
+                -103.963076, 
+                29.298404
+              ], 
+              [
+                -104.025488, 
+                29.314404
+              ], 
+              [
+                -104.143692, 
+                29.383278
+              ], 
+              [
+                -104.167506, 
+                29.402928
+              ], 
+              [
+                -104.21341, 
+                29.462069
+              ], 
+              [
+                -104.235847, 
+                29.496744
+              ], 
+              [
+                -104.264155, 
+                29.514001
+              ], 
+              [
+                -104.290728, 
+                29.519326
+              ], 
+              [
+                -104.321603, 
+                29.527923
+              ], 
+              [
+                -104.394351, 
+                29.560535
+              ], 
+              [
+                -104.515512, 
+                29.641493
+              ], 
+              [
+                -104.538569, 
+                29.677396
+              ], 
+              [
+                -104.549773, 
+                29.716091
+              ], 
+              [
+                -104.549117, 
+                29.728814
+              ], 
+              [
+                -104.566055, 
+                29.771379
+              ], 
+              [
+                -104.633275, 
+                29.870485
+              ], 
+              [
+                -104.667301, 
+                29.910401
+              ], 
+              [
+                -104.674932, 
+                29.911112
+              ], 
+              [
+                -104.679877, 
+                29.920946
+              ], 
+              [
+                -104.693592, 
+                30.019077
+              ], 
+              [
+                -104.685793, 
+                30.092656
+              ], 
+              [
+                -104.687296, 
+                30.179464
+              ], 
+              [
+                -104.708916, 
+                30.235826
+              ], 
+              [
+                -104.761634, 
+                30.301148
+              ], 
+              [
+                -104.78102, 
+                30.314564
+              ], 
+              [
+                -104.859521, 
+                30.390413
+              ], 
+              [
+                -104.872808, 
+                30.500145
+              ], 
+              [
+                -104.929778, 
+                30.59924
+              ], 
+              [
+                -104.972071, 
+                30.61026
+              ], 
+              [
+                -104.985365, 
+                30.623792
+              ], 
+              [
+                -105.044407, 
+                30.683895
+              ], 
+              [
+                -105.129328, 
+                30.750139
+              ], 
+              [
+                -105.211234, 
+                30.799609
+              ], 
+              [
+                -105.250028, 
+                30.799068
+              ], 
+              [
+                -105.265479, 
+                30.802536
+              ], 
+              [
+                -105.394627, 
+                30.85892
+              ], 
+              [
+                -105.411833, 
+                30.893367
+              ], 
+              [
+                -105.55679, 
+                30.989469
+              ], 
+              [
+                -105.57765, 
+                31.019811
+              ], 
+              [
+                -105.579756, 
+                31.036588
+              ], 
+              [
+                -105.585323, 
+                31.057488
+              ], 
+              [
+                -105.60333, 
+                31.082625
+              ], 
+              [
+                -105.648834, 
+                31.115902
+              ], 
+              [
+                -105.709491, 
+                31.136375
+              ], 
+              [
+                -105.750519, 
+                31.16494
+              ], 
+              [
+                -105.793719, 
+                31.201713
+              ], 
+              [
+                -105.869353, 
+                31.288634
+              ], 
+              [
+                -105.900315, 
+                31.300008
+              ], 
+              [
+                -105.923131, 
+                31.312089
+              ], 
+              [
+                -105.981027, 
+                31.375122
+              ], 
+              [
+                -105.997658, 
+                31.386489
+              ], 
+              [
+                -106.00693, 
+                31.392826
+              ], 
+              [
+                -106.099393, 
+                31.41476
+              ], 
+              [
+                -106.132782, 
+                31.425367
+              ], 
+              [
+                -106.202851, 
+                31.464073
+              ], 
+              [
+                -106.206018, 
+                31.466648
+              ], 
+              [
+                -106.207524, 
+                31.467872
+              ], 
+              [
+                -106.2092, 
+                31.469234
+              ], 
+              [
+                -106.212918, 
+                31.473409
+              ], 
+              [
+                -106.218538, 
+                31.47972
+              ], 
+              [
+                -106.254062, 
+                31.547512
+              ], 
+              [
+                -106.356938, 
+                31.70221
+              ], 
+              [
+                -106.381039, 
+                31.73211
+              ], 
+              [
+                -106.41794, 
+                31.752009
+              ], 
+              [
+                -106.436743, 
+                31.756872
+              ], 
+              [
+                -106.472514, 
+                31.751802
+              ], 
+              [
+                -106.528543, 
+                31.783907
+              ], 
+              [
+                -106.528543, 
+                31.784407
+              ], 
+              [
+                -106.527997, 
+                31.786945
+              ], 
+              [
+                -106.527623, 
+                31.789119
+              ], 
+              [
+                -106.527738, 
+                31.789761
+              ], 
+              [
+                -106.527943, 
+                31.790507
+              ], 
+              [
+                -106.530515, 
+                31.792103
+              ], 
+              [
+                -106.53248, 
+                31.791914
+              ], 
+              [
+                -106.533, 
+                31.791829
+              ], 
+              [
+                -106.533043, 
+                31.791907
+              ], 
+              [
+                -106.534743, 
+                31.796107
+              ], 
+              [
+                -106.535154, 
+                31.797089
+              ], 
+              [
+                -106.535343, 
+                31.797507
+              ], 
+              [
+                -106.535843, 
+                31.798607
+              ], 
+              [
+                -106.542097, 
+                31.802146
+              ], 
+              [
+                -106.542144, 
+                31.802107
+              ], 
+              [
+                -106.544714, 
+                31.804287
+              ], 
+              [
+                -106.545344, 
+                31.805007
+              ], 
+              [
+                -106.563444, 
+                31.812606
+              ], 
+              [
+                -106.566844, 
+                31.813306
+              ], 
+              [
+                -106.605245, 
+                31.845905
+              ], 
+              [
+                -106.605845, 
+                31.846305
+              ], 
+              [
+                -106.614637, 
+                31.84649
+              ], 
+              [
+                -106.621857, 
+                31.852854
+              ], 
+              [
+                -106.625763, 
+                31.856276
+              ], 
+              [
+                -106.627808, 
+                31.860593
+              ], 
+              [
+                -106.616136, 
+                31.948439
+              ], 
+              [
+                -106.614702, 
+                31.956
+              ], 
+              [
+                -106.599096, 
+                32.000731
+              ], 
+              [
+                -106.598639, 
+                32.000754
+              ], 
+              [
+                -106.595333, 
+                32.000778
+              ], 
+              [
+                -106.587972, 
+                32.000749
+              ], 
+              [
+                -106.566056, 
+                32.000759
+              ], 
+              [
+                -106.565142, 
+                32.000736
+              ], 
+              [
+                -106.411075, 
+                32.001334
+              ], 
+              [
+                -106.394298, 
+                32.001484
+              ], 
+              [
+                -106.377174, 
+                32.00149
+              ], 
+              [
+                -106.313307, 
+                32.001512
+              ], 
+              [
+                -106.205915, 
+                32.001762
+              ], 
+              [
+                -106.200699, 
+                32.001785
+              ], 
+              [
+                -106.18184, 
+                32.00205
+              ], 
+              [
+                -106.09976, 
+                32.002174
+              ], 
+              [
+                -105.998003, 
+                32.002328
+              ], 
+              [
+                -105.9006, 
+                32.0021
+              ], 
+              [
+                -105.886159, 
+                32.00197
+              ], 
+              [
+                -105.429281, 
+                32.000577
+              ], 
+              [
+                -105.428582, 
+                32.0006
+              ], 
+              [
+                -105.427049, 
+                32.000638
+              ], 
+              [
+                -105.390396, 
+                32.000607
+              ], 
+              [
+                -105.153994, 
+                32.000497
+              ], 
+              [
+                -105.15031, 
+                32.000497
+              ], 
+              [
+                -105.14824, 
+                32.000485
+              ], 
+              [
+                -105.132916, 
+                32.000518
+              ], 
+              [
+                -105.131377, 
+                32.000524
+              ], 
+              [
+                -105.11804, 
+                32.000485
+              ], 
+              [
+                -105.078605, 
+                32.000533
+              ], 
+              [
+                -105.077046, 
+                32.000579
+              ], 
+              [
+                -104.918272, 
+                32.000496
+              ], 
+              [
+                -104.847757, 
+                32.000482
+              ], 
+              [
+                -104.643526, 
+                32.000443
+              ], 
+              [
+                -104.640918, 
+                32.000396
+              ], 
+              [
+                -104.531937, 
+                32.000311
+              ], 
+              [
+                -104.531756, 
+                32.000117
+              ], 
+              [
+                -104.024521, 
+                32.00001
+              ], 
+              [
+                -103.980179, 
+                32.000125
+              ], 
+              [
+                -103.722853, 
+                32.000221
+              ], 
+              [
+                -103.326501, 
+                32.00037
+              ], 
+              [
+                -103.278521, 
+                32.000419
+              ], 
+              [
+                -103.270383, 
+                32.000326
+              ], 
+              [
+                -103.267708, 
+                32.000324
+              ], 
+              [
+                -103.267633, 
+                32.000475
+              ], 
+              [
+                -103.215641, 
+                32.000513
+              ], 
+              [
+                -103.088698, 
+                32.000453
+              ], 
+              [
+                -103.085876, 
+                32.000465
+              ], 
+              [
+                -103.064423, 
+                32.000518
+              ], 
+              [
+                -103.064344, 
+                32.087051
+              ], 
+              [
+                -103.064348, 
+                32.123041
+              ], 
+              [
+                -103.064422, 
+                32.145006
+              ], 
+              [
+                -103.064696, 
+                32.522193
+              ], 
+              [
+                -103.064761, 
+                32.587983
+              ], 
+              [
+                -103.064788, 
+                32.600397
+              ], 
+              [
+                -103.064761, 
+                32.601863
+              ], 
+              [
+                -103.064815, 
+                32.624537
+              ], 
+              [
+                -103.064633, 
+                32.64642
+              ], 
+              [
+                -103.064864, 
+                32.682647
+              ], 
+              [
+                -103.064798, 
+                32.690761
+              ], 
+              [
+                -103.064799, 
+                32.708694
+              ], 
+              [
+                -103.064827, 
+                32.726628
+              ], 
+              [
+                -103.064807, 
+                32.777303
+              ], 
+              [
+                -103.064698, 
+                32.783602
+              ], 
+              [
+                -103.064711, 
+                32.784593
+              ], 
+              [
+                -103.064699, 
+                32.827531
+              ], 
+              [
+                -103.064672, 
+                32.82847
+              ], 
+              [
+                -103.064889, 
+                32.849359
+              ], 
+              [
+                -103.064916, 
+                32.85726
+              ], 
+              [
+                -103.064807, 
+                32.857696
+              ], 
+              [
+                -103.064862, 
+                32.868346
+              ], 
+              [
+                -103.064701, 
+                32.879355
+              ], 
+              [
+                -103.064569, 
+                32.900014
+              ], 
+              [
+                -103.064657, 
+                32.959097
+              ], 
+              [
+                -103.064679, 
+                32.964373
+              ], 
+              [
+                -103.064625, 
+                32.999899
+              ], 
+              [
+                -103.064452, 
+                33.01029
+              ], 
+              [
+                -103.06398, 
+                33.038693
+              ], 
+              [
+                -103.063905, 
+                33.042055
+              ], 
+              [
+                -103.060103, 
+                33.219225
+              ], 
+              [
+                -103.057856, 
+                33.315234
+              ], 
+              [
+                -103.057487, 
+                33.329477
+              ], 
+              [
+                -103.056655, 
+                33.388416
+              ], 
+              [
+                -103.056655, 
+                33.388438
+              ], 
+              [
+                -103.05261, 
+                33.570599
+              ], 
+              [
+                -103.051664, 
+                33.629489
+              ], 
+              [
+                -103.051363, 
+                33.64195
+              ], 
+              [
+                -103.051535, 
+                33.650487
+              ], 
+              [
+                -103.051087, 
+                33.658186
+              ], 
+              [
+                -103.050532, 
+                33.672408
+              ], 
+              [
+                -103.050148, 
+                33.701971
+              ], 
+              [
+                -103.049096, 
+                33.74627
+              ], 
+              [
+                -103.047346, 
+                33.824675
+              ], 
+              [
+                -103.046907, 
+                33.8503
+              ], 
+              [
+                -103.045644, 
+                33.901537
+              ], 
+              [
+                -103.045698, 
+                33.906299
+              ], 
+              [
+                -103.044893, 
+                33.945617
+              ], 
+              [
+                -103.04395, 
+                33.974629
+              ], 
+              [
+                -103.043617, 
+                34.003633
+              ], 
+              [
+                -103.043531, 
+                34.018014
+              ], 
+              [
+                -103.043555, 
+                34.032714
+              ], 
+              [
+                -103.043746, 
+                34.037294
+              ], 
+              [
+                -103.043771, 
+                34.041538
+              ], 
+              [
+                -103.043721, 
+                34.04232
+              ], 
+              [
+                -103.043767, 
+                34.043545
+              ], 
+              [
+                -103.043744, 
+                34.049986
+              ], 
+              [
+                -103.043686, 
+                34.063078
+              ], 
+              [
+                -103.043516, 
+                34.079382
+              ], 
+              [
+                -103.043569, 
+                34.087947
+              ], 
+              [
+                -103.043644, 
+                34.256903
+              ], 
+              [
+                -103.043719, 
+                34.289441
+              ], 
+              [
+                -103.043936, 
+                34.302585
+              ], 
+              [
+                -103.043979, 
+                34.312749
+              ], 
+              [
+                -103.043979, 
+                34.312764
+              ], 
+              [
+                -103.043946, 
+                34.379555
+              ], 
+              [
+                -103.043944, 
+                34.37966
+              ], 
+              [
+                -103.043919, 
+                34.380916
+              ], 
+              [
+                -103.043693, 
+                34.383578
+              ], 
+              [
+                -103.04363, 
+                34.38469
+              ], 
+              [
+                -103.043614, 
+                34.384969
+              ], 
+              [
+                -103.043613, 
+                34.388679
+              ], 
+              [
+                -103.043613, 
+                34.390442
+              ], 
+              [
+                -103.043585, 
+                34.393716
+              ], 
+              [
+                -103.043611, 
+                34.397105
+              ], 
+              [
+                -103.043583, 
+                34.400678
+              ], 
+              [
+                -103.043538, 
+                34.405463
+              ], 
+              [
+                -103.043582, 
+                34.455657
+              ], 
+              [
+                -103.043588, 
+                34.459662
+              ], 
+              [
+                -103.043589, 
+                34.459774
+              ], 
+              [
+                -103.043594, 
+                34.46266
+              ], 
+              [
+                -103.043072, 
+                34.619782
+              ], 
+              [
+                -103.042827, 
+                34.671188
+              ], 
+              [
+                -103.042769, 
+                34.747361
+              ], 
+              [
+                -103.04277, 
+                34.792224
+              ], 
+              [
+                -103.042781, 
+                34.850243
+              ], 
+              [
+                -103.042521, 
+                34.899546
+              ], 
+              [
+                -103.042521, 
+                34.954101
+              ], 
+              [
+                -103.04252, 
+                35.135596
+              ], 
+              [
+                -103.0426, 
+                35.142766
+              ], 
+              [
+                -103.042711, 
+                35.144735
+              ], 
+              [
+                -103.042568, 
+                35.159318
+              ], 
+              [
+                -103.042395, 
+                35.178573
+              ], 
+              [
+                -103.042339, 
+                35.181922
+              ], 
+              [
+                -103.042366, 
+                35.182786
+              ], 
+              [
+                -103.042377, 
+                35.183149
+              ], 
+              [
+                -103.042377, 
+                35.183156
+              ], 
+              [
+                -103.042497, 
+                35.211862
+              ], 
+              [
+                -103.041554, 
+                35.622487
+              ], 
+              [
+                -103.041357, 
+                35.739274
+              ], 
+              [
+                -103.040824, 
+                36.055231
+              ], 
+              [
+                -103.041674, 
+                36.317534
+              ], 
+              [
+                -103.041745, 
+                36.318267
+              ], 
+              [
+                -103.041669, 
+                36.478514
+              ], 
+              [
+                -103.002434, 
+                36.500397
+              ], 
+              [
+                -102.162463, 
+                36.500326
+              ], 
+              [
+                -102.032339, 
+                36.500066
+              ], 
+              [
+                -101.826565, 
+                36.499654
+              ], 
+              [
+                -101.826498, 
+                36.499535
+              ], 
+              [
+                -101.78811, 
+                36.499678
+              ], 
+              [
+                -101.783359, 
+                36.499709
+              ], 
+              [
+                -101.781987, 
+                36.499718
+              ], 
+              [
+                -101.78061, 
+                36.499727
+              ], 
+              [
+                -101.779435, 
+                36.499734
+              ], 
+              [
+                -101.709314, 
+                36.499722
+              ], 
+              [
+                -101.698685, 
+                36.499508
+              ], 
+              [
+                -101.653708, 
+                36.499573
+              ], 
+              [
+                -101.649966, 
+                36.499573
+              ], 
+              [
+                -101.623915, 
+                36.499528
+              ], 
+              [
+                -101.085156, 
+                36.499244
+              ], 
+              [
+                -101.052418, 
+                36.499563
+              ], 
+              [
+                -101.045331, 
+                36.49954
+              ], 
+              [
+                -100.977088, 
+                36.499595
+              ], 
+              [
+                -100.954153, 
+                36.499599
+              ], 
+              [
+                -100.936058, 
+                36.499602
+              ], 
+              [
+                -100.918513, 
+                36.499621
+              ], 
+              [
+                -100.884174, 
+                36.499682
+              ], 
+              [
+                -100.88408, 
+                36.499682
+              ], 
+              [
+                -100.859657, 
+                36.499687
+              ], 
+              [
+                -100.85084, 
+                36.4997
+              ], 
+              [
+                -100.824236, 
+                36.499618
+              ], 
+              [
+                -100.824218, 
+                36.499618
+              ], 
+              [
+                -100.80619, 
+                36.499674
+              ], 
+              [
+                -100.806172, 
+                36.499634
+              ], 
+              [
+                -100.802909, 
+                36.499621
+              ], 
+              [
+                -100.802886, 
+                36.499621
+              ], 
+              [
+                -100.761811, 
+                36.499618
+              ], 
+              [
+                -100.761811, 
+                36.49958
+              ], 
+              [
+                -100.724362, 
+                36.49958
+              ], 
+              [
+                -100.724361, 
+                36.499558
+              ], 
+              [
+                -100.708626, 
+                36.499553
+              ], 
+              [
+                -100.708628, 
+                36.499521
+              ], 
+              [
+                -100.657763, 
+                36.499483
+              ], 
+              [
+                -100.657763, 
+                36.4995
+              ], 
+              [
+                -100.648343, 
+                36.499495
+              ], 
+              [
+                -100.648344, 
+                36.499463
+              ], 
+              [
+                -100.592614, 
+                36.499469
+              ], 
+              [
+                -100.592556, 
+                36.499469
+              ], 
+              [
+                -100.592551, 
+                36.499429
+              ], 
+              [
+                -100.583539, 
+                36.499483
+              ], 
+              [
+                -100.583379, 
+                36.499443
+              ], 
+              [
+                -100.578114, 
+                36.499463
+              ], 
+              [
+                -100.578114, 
+                36.499439
+              ], 
+              [
+                -100.546145, 
+                36.499343
+              ], 
+              [
+                -100.531215, 
+                36.499341
+              ], 
+              [
+                -100.531215, 
+                36.49929
+              ], 
+              [
+                -100.530478, 
+                36.49924
+              ], 
+              [
+                -100.530314, 
+                36.499357
+              ], 
+              [
+                -100.522227, 
+                36.499291
+              ], 
+              [
+                -100.441065, 
+                36.49949
+              ], 
+              [
+                -100.441064, 
+                36.499462
+              ], 
+              [
+                -100.433959, 
+                36.499456
+              ], 
+              [
+                -100.421328, 
+                36.499447
+              ], 
+              [
+                -100.421301, 
+                36.499488
+              ], 
+              [
+                -100.413634, 
+                36.499444
+              ], 
+              [
+                -100.41355, 
+                36.499469
+              ], 
+              [
+                -100.378634, 
+                36.499517
+              ], 
+              [
+                -100.378592, 
+                36.499445
+              ], 
+              [
+                -100.351852, 
+                36.499487
+              ], 
+              [
+                -100.351842, 
+                36.499473
+              ], 
+              [
+                -100.334464, 
+                36.49942
+              ], 
+              [
+                -100.334441, 
+                36.49944
+              ], 
+              [
+                -100.32415, 
+                36.499679
+              ], 
+              [
+                -100.311245, 
+                36.499631
+              ], 
+              [
+                -100.311018, 
+                36.499688
+              ], 
+              [
+                -100.310643, 
+                36.499642
+              ], 
+              [
+                -100.181221, 
+                36.499633
+              ], 
+              [
+                -100.090021, 
+                36.499634
+              ], 
+              [
+                -100.003762, 
+                36.499699
+              ], 
+              [
+                -100.000406, 
+                36.499702
+              ], 
+              [
+                -100.000399, 
+                36.055677
+              ], 
+              [
+                -100.000396, 
+                35.880948
+              ], 
+              [
+                -100.000392, 
+                35.619115
+              ], 
+              [
+                -100.000389, 
+                35.422364
+              ], 
+              [
+                -100.000385, 
+                35.182702
+              ], 
+              [
+                -100.000384, 
+                35.030385
+              ], 
+              [
+                -100.000381, 
+                34.746461
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 48, 
+      "properties": {
+        "CENSUSAREA": 261231.711, 
+        "GEO_ID": "0400000US48", 
+        "ISO": "US-TX", 
+        "LSAD": "", 
+        "NAME": "Texas", 
+        "NAME_1": "Texas", 
+        "STATE": "TX"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -113.7517728757476, 
+                22.422046582028443
+              ], 
+              [
+                -113.75026060635257, 
+                22.42108361706701
+              ], 
+              [
+                -113.7458097237552, 
+                22.415397161320133
+              ], 
+              [
+                -113.74001660209579, 
+                22.382510939711132
+              ], 
+              [
+                -113.74031072556032, 
+                22.378084356126152
+              ], 
+              [
+                -113.74738671260621, 
+                22.360276696616566
+              ], 
+              [
+                -113.74898918109403, 
+                22.35803631815989
+              ], 
+              [
+                -113.752797475481, 
+                22.353516766783745
+              ], 
+              [
+                -113.75761115839136, 
+                22.350729998785482
+              ], 
+              [
+                -113.76526864941626, 
+                22.35359388949126
+              ], 
+              [
+                -113.78526786102806, 
+                22.37058227967444
+              ], 
+              [
+                -113.78777244732073, 
+                22.373809294616777
+              ], 
+              [
+                -113.79384312416438, 
+                22.393060372473414
+              ], 
+              [
+                -113.79344946790607, 
+                22.393869502311386
+              ], 
+              [
+                -113.77261197824828, 
+                22.42100704209281
+              ], 
+              [
+                -113.77021755841963, 
+                22.42303570662908
+              ], 
+              [
+                -113.75497048801445, 
+                22.423422965887266
+              ], 
+              [
+                -113.7517728757476, 
+                22.422046582028443
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -113.01507566102353, 
+                22.505193878035517
+              ], 
+              [
+                -113.0138720301891, 
+                22.50792257353719
+              ], 
+              [
+                -113.00541730889732, 
+                22.516286516331956
+              ], 
+              [
+                -112.98533449765523, 
+                22.509707239995013
+              ], 
+              [
+                -112.98446216757392, 
+                22.508940821885727
+              ], 
+              [
+                -112.98362343296277, 
+                22.504066072856066
+              ], 
+              [
+                -112.98433217854593, 
+                22.49511380519688
+              ], 
+              [
+                -112.98848353252409, 
+                22.485207350529123
+              ], 
+              [
+                -112.99649212235596, 
+                22.47810098410687
+              ], 
+              [
+                -113.0048341494941, 
+                22.476480695825867
+              ], 
+              [
+                -113.0059733800424, 
+                22.477287250333113
+              ], 
+              [
+                -113.01217084661434, 
+                22.485171568775637
+              ], 
+              [
+                -113.01147196635586, 
+                22.491176960691888
+              ], 
+              [
+                -113.01020190005184, 
+                22.494265453191645
+              ], 
+              [
+                -113.01037449096039, 
+                22.497159821959837
+              ], 
+              [
+                -113.0113316687772, 
+                22.501275658978933
+              ], 
+              [
+                -113.01507566102353, 
+                22.505193878035517
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -113.20730785747716, 
+                22.581564510155342
+              ], 
+              [
+                -113.21667438594012, 
+                22.591749118253006
+              ], 
+              [
+                -113.22178543910256, 
+                22.600125616316134
+              ], 
+              [
+                -113.21988341032964, 
+                22.601667759986434
+              ], 
+              [
+                -113.2130733098827, 
+                22.603132724706196
+              ], 
+              [
+                -113.20655274943927, 
+                22.59970781856095
+              ], 
+              [
+                -113.2037702298993, 
+                22.595799287912758
+              ], 
+              [
+                -113.2007501210988, 
+                22.59397977826053
+              ], 
+              [
+                -113.19423739434708, 
+                22.59918149578874
+              ], 
+              [
+                -113.19103752121677, 
+                22.61414353097836
+              ], 
+              [
+                -113.18614197688984, 
+                22.646439152110187
+              ], 
+              [
+                -113.18404079434995, 
+                22.648199032937377
+              ], 
+              [
+                -113.18134452474365, 
+                22.64613232655196
+              ], 
+              [
+                -113.17445293375667, 
+                22.63906054664858
+              ], 
+              [
+                -113.17176087750008, 
+                22.630936181943966
+              ], 
+              [
+                -113.17149001316032, 
+                22.628374805337227
+              ], 
+              [
+                -113.17302507665494, 
+                22.621810967424622
+              ], 
+              [
+                -113.17423122450772, 
+                22.620449325881463
+              ], 
+              [
+                -113.17590624865493, 
+                22.621746489055685
+              ], 
+              [
+                -113.18067950450634, 
+                22.620033836682182
+              ], 
+              [
+                -113.18193162506485, 
+                22.61453677371497
+              ], 
+              [
+                -113.1800151646798, 
+                22.589835557430497
+              ], 
+              [
+                -113.17842040775115, 
+                22.58640368698755
+              ], 
+              [
+                -113.17336043436127, 
+                22.581902690230404
+              ], 
+              [
+                -113.16767235423961, 
+                22.584552866469984
+              ], 
+              [
+                -113.16864022774807, 
+                22.59172298512995
+              ], 
+              [
+                -113.16964213755178, 
+                22.59477939700467
+              ], 
+              [
+                -113.16995655864461, 
+                22.597239511938632
+              ], 
+              [
+                -113.16665693050223, 
+                22.599519788120958
+              ], 
+              [
+                -113.15900258071535, 
+                22.599416030308827
+              ], 
+              [
+                -113.15798481934542, 
+                22.583628893330918
+              ], 
+              [
+                -113.1582970252248, 
+                22.57527561610241
+              ], 
+              [
+                -113.16226562064479, 
+                22.562564186386027
+              ], 
+              [
+                -113.16504844907251, 
+                22.55936709639101
+              ], 
+              [
+                -113.1700547608568, 
+                22.56218714752402
+              ], 
+              [
+                -113.1705233927589, 
+                22.564242832332255
+              ], 
+              [
+                -113.17599214496164, 
+                22.56595145525424
+              ], 
+              [
+                -113.18558739299324, 
+                22.56100679218559
+              ], 
+              [
+                -113.18613141823917, 
+                22.5587731497936
+              ], 
+              [
+                -113.18361417108478, 
+                22.553193278314385
+              ], 
+              [
+                -113.18327067641172, 
+                22.543235161375964
+              ], 
+              [
+                -113.20341557742172, 
+                22.511492259295963
+              ], 
+              [
+                -113.20960990261499, 
+                22.505198189829336
+              ], 
+              [
+                -113.21760871682393, 
+                22.49957094689531
+              ], 
+              [
+                -113.22881446786162, 
+                22.465229451484173
+              ], 
+              [
+                -113.22731265959543, 
+                22.459495828077443
+              ], 
+              [
+                -113.2298365650155, 
+                22.446084330196864
+              ], 
+              [
+                -113.23545926859647, 
+                22.439956570981224
+              ], 
+              [
+                -113.24503583078726, 
+                22.453488635162802
+              ], 
+              [
+                -113.24681911553104, 
+                22.469122962635065
+              ], 
+              [
+                -113.24548264780645, 
+                22.471073083853913
+              ], 
+              [
+                -113.24072939632686, 
+                22.474426281709363
+              ], 
+              [
+                -113.23275455223029, 
+                22.49553770779696
+              ], 
+              [
+                -113.22406205697736, 
+                22.512051850924074
+              ], 
+              [
+                -113.21883104650726, 
+                22.519088872233315
+              ], 
+              [
+                -113.21321733559574, 
+                22.52304534358097
+              ], 
+              [
+                -113.21247716273731, 
+                22.525050137334418
+              ], 
+              [
+                -113.21591671878157, 
+                22.530332530891453
+              ], 
+              [
+                -113.21784075867645, 
+                22.53145968643043
+              ], 
+              [
+                -113.22685636720662, 
+                22.525819307878184
+              ], 
+              [
+                -113.23777900316828, 
+                22.52820112104439
+              ], 
+              [
+                -113.24660333147347, 
+                22.553171005695955
+              ], 
+              [
+                -113.24637476549611, 
+                22.55781267776296
+              ], 
+              [
+                -113.23057471211253, 
+                22.580160230124154
+              ], 
+              [
+                -113.22130036484127, 
+                22.574874194179415
+              ], 
+              [
+                -113.21583667530494, 
+                22.56968537490701
+              ], 
+              [
+                -113.21309660581298, 
+                22.56449295400748
+              ], 
+              [
+                -113.21297210900156, 
+                22.563410878454707
+              ], 
+              [
+                -113.21394848225272, 
+                22.562844075602086
+              ], 
+              [
+                -113.21388059536028, 
+                22.56138098069263
+              ], 
+              [
+                -113.21303306014153, 
+                22.559738417628562
+              ], 
+              [
+                -113.20710175184237, 
+                22.562784507546315
+              ], 
+              [
+                -113.20315584771407, 
+                22.566609612031726
+              ], 
+              [
+                -113.20193151598272, 
+                22.569822913008203
+              ], 
+              [
+                -113.20209385789438, 
+                22.572196920901376
+              ], 
+              [
+                -113.20730785747716, 
+                22.581564510155342
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -113.05923487214115, 
+                22.560572998367252
+              ], 
+              [
+                -113.05777829193646, 
+                22.562170038870878
+              ], 
+              [
+                -113.0411449579694, 
+                22.564741872765723
+              ], 
+              [
+                -113.03163241926998, 
+                22.564122938070103
+              ], 
+              [
+                -113.02883864413911, 
+                22.558601784993108
+              ], 
+              [
+                -113.02071073574534, 
+                22.528853268648586
+              ], 
+              [
+                -113.02068819280132, 
+                22.526871811752578
+              ], 
+              [
+                -113.02093508022894, 
+                22.525993773612083
+              ], 
+              [
+                -113.04183291543066, 
+                22.50735338615791
+              ], 
+              [
+                -113.04709521695327, 
+                22.50607370244529
+              ], 
+              [
+                -113.0499718674119, 
+                22.50765307829148
+              ], 
+              [
+                -113.0506118674399, 
+                22.508923074383265
+              ], 
+              [
+                -113.05082799645973, 
+                22.52141496487247
+              ], 
+              [
+                -113.04916923930843, 
+                22.527902478962687
+              ], 
+              [
+                -113.04437520342094, 
+                22.534233444837454
+              ], 
+              [
+                -113.04654293435149, 
+                22.54409393395138
+              ], 
+              [
+                -113.05706754635999, 
+                22.54886515641082
+              ], 
+              [
+                -113.05923487214115, 
+                22.560572998367252
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -113.08920659178543, 
+                22.613704971814247
+              ], 
+              [
+                -113.08128847458725, 
+                22.611251571532453
+              ], 
+              [
+                -113.07984822431355, 
+                22.610153398770038
+              ], 
+              [
+                -113.07671716250945, 
+                22.601755309130336
+              ], 
+              [
+                -113.07543901439297, 
+                22.593024550763996
+              ], 
+              [
+                -113.07723541770781, 
+                22.590533839142136
+              ], 
+              [
+                -113.07857184491849, 
+                22.589768538455875
+              ], 
+              [
+                -113.08174000212165, 
+                22.577963250634742
+              ], 
+              [
+                -113.08067731453505, 
+                22.567691387287965
+              ], 
+              [
+                -113.07782345632889, 
+                22.56503556854379
+              ], 
+              [
+                -113.06611420974451, 
+                22.557686862504145
+              ], 
+              [
+                -113.06599685476556, 
+                22.555991603126895
+              ], 
+              [
+                -113.066733534576, 
+                22.553604497034648
+              ], 
+              [
+                -113.07107297928056, 
+                22.549221818499277
+              ], 
+              [
+                -113.0733894536109, 
+                22.55041100477252
+              ], 
+              [
+                -113.07898226206518, 
+                22.556089685524434
+              ], 
+              [
+                -113.08829880693764, 
+                22.555237154991918
+              ], 
+              [
+                -113.09353053278922, 
+                22.548223325674236
+              ], 
+              [
+                -113.10203402242782, 
+                22.542292366135673
+              ], 
+              [
+                -113.10307462045012, 
+                22.542807753666132
+              ], 
+              [
+                -113.10467900425272, 
+                22.544361867266822
+              ], 
+              [
+                -113.10652157382891, 
+                22.547327698158796
+              ], 
+              [
+                -113.10834607363695, 
+                22.55468061406111
+              ], 
+              [
+                -113.1088007876689, 
+                22.578525933210592
+              ], 
+              [
+                -113.10513941592714, 
+                22.58429130936037
+              ], 
+              [
+                -113.0999927609498, 
+                22.599218791032254
+              ], 
+              [
+                -113.09931081582565, 
+                22.613393561174426
+              ], 
+              [
+                -113.09195995030205, 
+                22.645535291950715
+              ], 
+              [
+                -113.09151371617091, 
+                22.64574841220355
+              ], 
+              [
+                -113.0859537754773, 
+                22.637853016437255
+              ], 
+              [
+                -113.08538792125722, 
+                22.63196084703322
+              ], 
+              [
+                -113.08596450562175, 
+                22.625323340569267
+              ], 
+              [
+                -113.08920659178543, 
+                22.613704971814247
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -113.63059995014171, 
+                22.520056697800605
+              ], 
+              [
+                -113.62398666002362, 
+                22.51293112540949
+              ], 
+              [
+                -113.61892786993971, 
+                22.51106980122811
+              ], 
+              [
+                -113.61513704588495, 
+                22.5108724700308
+              ], 
+              [
+                -113.61218122554494, 
+                22.51157137799594
+              ], 
+              [
+                -113.60044441809602, 
+                22.506551693622974
+              ], 
+              [
+                -113.59149777989359, 
+                22.50160555851669
+              ], 
+              [
+                -113.58972345475459, 
+                22.50027540288575
+              ], 
+              [
+                -113.58324476593526, 
+                22.492724746072096
+              ], 
+              [
+                -113.58281842309762, 
+                22.49163210058272
+              ], 
+              [
+                -113.58210325233827, 
+                22.484976381186687
+              ], 
+              [
+                -113.58350091910664, 
+                22.482657351396607
+              ], 
+              [
+                -113.585254968454, 
+                22.48133394010145
+              ], 
+              [
+                -113.58958626186734, 
+                22.480449969453698
+              ], 
+              [
+                -113.59189704757983, 
+                22.481359380150053
+              ], 
+              [
+                -113.5964150376825, 
+                22.485191777287113
+              ], 
+              [
+                -113.59673874310049, 
+                22.487000209164236
+              ], 
+              [
+                -113.5952281631488, 
+                22.490550020747293
+              ], 
+              [
+                -113.59528048601148, 
+                22.493004405464355
+              ], 
+              [
+                -113.5975356353669, 
+                22.49818868480791
+              ], 
+              [
+                -113.60131951067474, 
+                22.50055883081895
+              ], 
+              [
+                -113.60547736459445, 
+                22.500245114641125
+              ], 
+              [
+                -113.61097227029103, 
+                22.49874132351128
+              ], 
+              [
+                -113.61532346140162, 
+                22.494723980212846
+              ], 
+              [
+                -113.61609289174537, 
+                22.493175085997553
+              ], 
+              [
+                -113.61562580534286, 
+                22.490848335509625
+              ], 
+              [
+                -113.61798063420231, 
+                22.48619943895085
+              ], 
+              [
+                -113.62805103498869, 
+                22.473398031477654
+              ], 
+              [
+                -113.63500401541889, 
+                22.47504658365933
+              ], 
+              [
+                -113.64315740393741, 
+                22.482334732776582
+              ], 
+              [
+                -113.6505507521461, 
+                22.491383901468037
+              ], 
+              [
+                -113.6518510493538, 
+                22.497166433701658
+              ], 
+              [
+                -113.65288880998871, 
+                22.49827341005879
+              ], 
+              [
+                -113.6615926452156, 
+                22.502969738782582
+              ], 
+              [
+                -113.66451099523908, 
+                22.503164404762952
+              ], 
+              [
+                -113.6703884132415, 
+                22.502092530387685
+              ], 
+              [
+                -113.67391300877348, 
+                22.505784557615403
+              ], 
+              [
+                -113.67508264108882, 
+                22.50862402918936
+              ], 
+              [
+                -113.67350358050687, 
+                22.517550419121932
+              ], 
+              [
+                -113.66487675431608, 
+                22.525487668251294
+              ], 
+              [
+                -113.65957874465164, 
+                22.52768244034852
+              ], 
+              [
+                -113.6359513891962, 
+                22.523001283924962
+              ], 
+              [
+                -113.63059995014171, 
+                22.520056697800605
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -113.34268431141312, 
+                22.641725107639765
+              ], 
+              [
+                -113.34937472564143, 
+                22.648147521166454
+              ], 
+              [
+                -113.35088479931261, 
+                22.64794205771898
+              ], 
+              [
+                -113.35732309646312, 
+                22.64181235471399
+              ], 
+              [
+                -113.35966965441617, 
+                22.632912448826314
+              ], 
+              [
+                -113.3593515021429, 
+                22.62962560465838
+              ], 
+              [
+                -113.35883660056977, 
+                22.62749648733715
+              ], 
+              [
+                -113.35299783998565, 
+                22.61455828975871
+              ], 
+              [
+                -113.34853018414492, 
+                22.611064889180305
+              ], 
+              [
+                -113.34215270405163, 
+                22.60828029466104
+              ], 
+              [
+                -113.32685178557469, 
+                22.58105914916036
+              ], 
+              [
+                -113.32600369703233, 
+                22.575703775263516
+              ], 
+              [
+                -113.32719844912943, 
+                22.568219612951108
+              ], 
+              [
+                -113.3314812518877, 
+                22.550422992418106
+              ], 
+              [
+                -113.36635314166651, 
+                22.559574054875018
+              ], 
+              [
+                -113.37245964290281, 
+                22.564959728982256
+              ], 
+              [
+                -113.37730209676992, 
+                22.574573342560665
+              ], 
+              [
+                -113.37895236330785, 
+                22.58132605288095
+              ], 
+              [
+                -113.39423570762393, 
+                22.571908214598423
+              ], 
+              [
+                -113.39615996699895, 
+                22.567053082303893
+              ], 
+              [
+                -113.39494055643816, 
+                22.563150582076734
+              ], 
+              [
+                -113.39883428419472, 
+                22.542710822304322
+              ], 
+              [
+                -113.40109222829797, 
+                22.53828506038267
+              ], 
+              [
+                -113.40430965854509, 
+                22.53414899683824
+              ], 
+              [
+                -113.40525909714653, 
+                22.535093707812372
+              ], 
+              [
+                -113.40479076146384, 
+                22.545214552683188
+              ], 
+              [
+                -113.40379821869381, 
+                22.551944322138386
+              ], 
+              [
+                -113.40480528093899, 
+                22.55770935971437
+              ], 
+              [
+                -113.40928248377763, 
+                22.56612898768595
+              ], 
+              [
+                -113.41618756493311, 
+                22.573114765802938
+              ], 
+              [
+                -113.4229812949575, 
+                22.61418650732369
+              ], 
+              [
+                -113.42870739733299, 
+                22.624889245650365
+              ], 
+              [
+                -113.42629774603253, 
+                22.63523234462768
+              ], 
+              [
+                -113.4188530128609, 
+                22.65590464872763
+              ], 
+              [
+                -113.41461289063432, 
+                22.6598567300394
+              ], 
+              [
+                -113.39901801393565, 
+                22.66888567767592
+              ], 
+              [
+                -113.3932892152801, 
+                22.669303213741696
+              ], 
+              [
+                -113.38771255538286, 
+                22.668621993064956
+              ], 
+              [
+                -113.38277485144228, 
+                22.66452754708912
+              ], 
+              [
+                -113.38158436636786, 
+                22.662052483659032
+              ], 
+              [
+                -113.37957168380677, 
+                22.650389432296105
+              ], 
+              [
+                -113.37967250399126, 
+                22.643780115264196
+              ], 
+              [
+                -113.37090304825597, 
+                22.647111570111853
+              ], 
+              [
+                -113.36383615219198, 
+                22.667386408211097
+              ], 
+              [
+                -113.36260215684032, 
+                22.668084053595248
+              ], 
+              [
+                -113.35694278649697, 
+                22.66789685599628
+              ], 
+              [
+                -113.34940250254955, 
+                22.66499786802238
+              ], 
+              [
+                -113.35013329079831, 
+                22.662537061014973
+              ], 
+              [
+                -113.3499000569718, 
+                22.660693232606285
+              ], 
+              [
+                -113.34940188725795, 
+                22.657946050125506
+              ], 
+              [
+                -113.34834820490968, 
+                22.656778880110696
+              ], 
+              [
+                -113.3234183778736, 
+                22.64982007590448
+              ], 
+              [
+                -113.31941549187812, 
+                22.651728637651193
+              ], 
+              [
+                -113.31847956479527, 
+                22.65403967118171
+              ], 
+              [
+                -113.309524370533, 
+                22.663331520952305
+              ], 
+              [
+                -113.30519376009396, 
+                22.66385378859458
+              ], 
+              [
+                -113.30232153539652, 
+                22.662957847612752
+              ], 
+              [
+                -113.2999723314994, 
+                22.66004469839123
+              ], 
+              [
+                -113.29661447452823, 
+                22.653662469161244
+              ], 
+              [
+                -113.29102207634982, 
+                22.637936286198002
+              ], 
+              [
+                -113.29362282516794, 
+                22.617701848410917
+              ], 
+              [
+                -113.29548534464024, 
+                22.613077510087713
+              ], 
+              [
+                -113.30393282769349, 
+                22.615622228721723
+              ], 
+              [
+                -113.30603767093871, 
+                22.61849390429785
+              ], 
+              [
+                -113.30692141732408, 
+                22.621233068723306
+              ], 
+              [
+                -113.3104952679862, 
+                22.627170300218626
+              ], 
+              [
+                -113.32420550536003, 
+                22.63061898607552
+              ], 
+              [
+                -113.3260724073896, 
+                22.629785796014996
+              ], 
+              [
+                -113.32763573186236, 
+                22.627116208049024
+              ], 
+              [
+                -113.33000461377752, 
+                22.625370315650546
+              ], 
+              [
+                -113.33182378423417, 
+                22.6252439333796
+              ], 
+              [
+                -113.3335267074006, 
+                22.62618922042416
+              ], 
+              [
+                -113.34398941674739, 
+                22.632781064011667
+              ], 
+              [
+                -113.34696058161151, 
+                22.637013607291536
+              ], 
+              [
+                -113.34268431141312, 
+                22.641725107639765
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -113.27983575780385, 
+                22.71132339670044
+              ], 
+              [
+                -113.26093413149934, 
+                22.711772931550584
+              ], 
+              [
+                -113.25697079446046, 
+                22.68251086833313
+              ], 
+              [
+                -113.25683975478495, 
+                22.680809477667825
+              ], 
+              [
+                -113.25771911404011, 
+                22.677895707323604
+              ], 
+              [
+                -113.2592117612122, 
+                22.677640937893557
+              ], 
+              [
+                -113.27264031186493, 
+                22.68228228116897
+              ], 
+              [
+                -113.2918849766545, 
+                22.6813314897883
+              ], 
+              [
+                -113.29883488474744, 
+                22.67900302944981
+              ], 
+              [
+                -113.30189918415324, 
+                22.67877936830155
+              ], 
+              [
+                -113.3078184772907, 
+                22.685416877051605
+              ], 
+              [
+                -113.31107421258821, 
+                22.68999692955493
+              ], 
+              [
+                -113.3110562178533, 
+                22.69268240652355
+              ], 
+              [
+                -113.30650120614041, 
+                22.702031083385418
+              ], 
+              [
+                -113.29400658239774, 
+                22.712438755131693
+              ], 
+              [
+                -113.29252752763148, 
+                22.71307737589264
+              ], 
+              [
+                -113.2840846329547, 
+                22.71278489012615
+              ], 
+              [
+                -113.27983575780385, 
+                22.71132339670044
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -114.5929773068025, 
+                21.959109894498855
+              ], 
+              [
+                -114.58155065885012, 
+                21.95508881474206
+              ], 
+              [
+                -114.58004382414583, 
+                21.95382513582073
+              ], 
+              [
+                -114.57692890834811, 
+                21.949270832739423
+              ], 
+              [
+                -114.57072660180418, 
+                21.936952931412385
+              ], 
+              [
+                -114.5594161212942, 
+                21.943142844682544
+              ], 
+              [
+                -114.55783589822816, 
+                21.9427105432299
+              ], 
+              [
+                -114.55569580493002, 
+                21.93733091148612
+              ], 
+              [
+                -114.55847054106846, 
+                21.926391746549456
+              ], 
+              [
+                -114.58118216809602, 
+                21.910408381826343
+              ], 
+              [
+                -114.59278306553934, 
+                21.91365090342582
+              ], 
+              [
+                -114.60709311892255, 
+                21.89457792795278
+              ], 
+              [
+                -114.61355656284809, 
+                21.903132393895316
+              ], 
+              [
+                -114.61406940358702, 
+                21.905400179526627
+              ], 
+              [
+                -114.61531115029297, 
+                21.9063544144985
+              ], 
+              [
+                -114.61918664517165, 
+                21.907391898950344
+              ], 
+              [
+                -114.62280521118669, 
+                21.907515651041923
+              ], 
+              [
+                -114.63635865219115, 
+                21.904234666022116
+              ], 
+              [
+                -114.64484244758455, 
+                21.898784120728976
+              ], 
+              [
+                -114.64655147601657, 
+                21.896067772523175
+              ], 
+              [
+                -114.65123030153534, 
+                21.89491067841381
+              ], 
+              [
+                -114.66763940896992, 
+                21.92153437249202
+              ], 
+              [
+                -114.67221993145947, 
+                21.93010444880277
+              ], 
+              [
+                -114.67061519618817, 
+                21.940356937412083
+              ], 
+              [
+                -114.66734291425936, 
+                21.955145342346405
+              ], 
+              [
+                -114.6491662271361, 
+                21.974502257643792
+              ], 
+              [
+                -114.64467421964385, 
+                21.978372278704644
+              ], 
+              [
+                -114.63485168967603, 
+                21.978952832052343
+              ], 
+              [
+                -114.61642163199343, 
+                21.978275365216962
+              ], 
+              [
+                -114.61509434573924, 
+                21.977639346559485
+              ], 
+              [
+                -114.61416996387143, 
+                21.97643232391386
+              ], 
+              [
+                -114.6136941513187, 
+                21.97077406331766
+              ], 
+              [
+                -114.61468821355054, 
+                21.965902160738228
+              ], 
+              [
+                -114.61651190804436, 
+                21.96288781666509
+              ], 
+              [
+                -114.61254793403572, 
+                21.956194745707567
+              ], 
+              [
+                -114.61124756238577, 
+                21.955089067210103
+              ], 
+              [
+                -114.60428685036499, 
+                21.953212240228858
+              ], 
+              [
+                -114.60306829140083, 
+                21.953448317624506
+              ], 
+              [
+                -114.60139351277616, 
+                21.95506069942496
+              ], 
+              [
+                -114.59529434280002, 
+                21.964317560880616
+              ], 
+              [
+                -114.59444823173247, 
+                21.964470284158157
+              ], 
+              [
+                -114.59403939863661, 
+                21.963644713204562
+              ], 
+              [
+                -114.5929773068025, 
+                21.959109894498855
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -114.45637428112772, 
+                21.934470086524907
+              ], 
+              [
+                -114.45533406567412, 
+                21.934465263933934
+              ], 
+              [
+                -114.44526265432154, 
+                21.92123379774427
+              ], 
+              [
+                -114.44530804648791, 
+                21.919984610063967
+              ], 
+              [
+                -114.4476445840913, 
+                21.916664452021568
+              ], 
+              [
+                -114.46814224012843, 
+                21.918588445323874
+              ], 
+              [
+                -114.47166940280549, 
+                21.92120865493167
+              ], 
+              [
+                -114.47923144523591, 
+                21.922073252723866
+              ], 
+              [
+                -114.50239685578293, 
+                21.916874526822138
+              ], 
+              [
+                -114.50899915013734, 
+                21.91910282488505
+              ], 
+              [
+                -114.5093192812503, 
+                21.920397914576704
+              ], 
+              [
+                -114.50571815525333, 
+                21.92285131057673
+              ], 
+              [
+                -114.49851740375397, 
+                21.925549516758007
+              ], 
+              [
+                -114.46937012213671, 
+                21.932892179453994
+              ], 
+              [
+                -114.45637428112772, 
+                21.934470086524907
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -114.38353694684673, 
+                21.95903189209185
+              ], 
+              [
+                -114.3738732489875, 
+                21.960869646233718
+              ], 
+              [
+                -114.3691971565826, 
+                21.957483123921225
+              ], 
+              [
+                -114.36803868636636, 
+                21.951730746745643
+              ], 
+              [
+                -114.36819219857144, 
+                21.949373941621992
+              ], 
+              [
+                -114.37429887068777, 
+                21.93334238091418
+              ], 
+              [
+                -114.37606861019046, 
+                21.932232875054236
+              ], 
+              [
+                -114.3968646769045, 
+                21.92598723770355
+              ], 
+              [
+                -114.43867308792454, 
+                21.93226580361313
+              ], 
+              [
+                -114.44106980793741, 
+                21.933188996885352
+              ], 
+              [
+                -114.44392899309418, 
+                21.938297571275314
+              ], 
+              [
+                -114.43915948975761, 
+                21.945691073480948
+              ], 
+              [
+                -114.42529720858802, 
+                21.953730137276185
+              ], 
+              [
+                -114.41174656483383, 
+                21.95346359191062
+              ], 
+              [
+                -114.40609785026516, 
+                21.951691160791373
+              ], 
+              [
+                -114.40161109571346, 
+                21.95139640554701
+              ], 
+              [
+                -114.39472243680522, 
+                21.95210032086202
+              ], 
+              [
+                -114.39163321723481, 
+                21.95847501205648
+              ], 
+              [
+                -114.38353694684673, 
+                21.95903189209185
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -114.53221752872234, 
+                22.023965830747336
+              ], 
+              [
+                -114.52694203865964, 
+                22.024191066113936
+              ], 
+              [
+                -114.52053593192382, 
+                22.022770097309753
+              ], 
+              [
+                -114.51970351629164, 
+                22.017386931584035
+              ], 
+              [
+                -114.52016476566843, 
+                22.01647327871054
+              ], 
+              [
+                -114.52829116861595, 
+                22.012181880917367
+              ], 
+              [
+                -114.53831881125114, 
+                22.00202401106892
+              ], 
+              [
+                -114.53844850547252, 
+                22.000431319240626
+              ], 
+              [
+                -114.5380032485096, 
+                21.998621171636763
+              ], 
+              [
+                -114.53640448812139, 
+                21.995361935754765
+              ], 
+              [
+                -114.52461863540866, 
+                21.983805732464756
+              ], 
+              [
+                -114.52031007219526, 
+                21.983220973899098
+              ], 
+              [
+                -114.51600364664877, 
+                21.984682623779364
+              ], 
+              [
+                -114.49730355009217, 
+                21.98599079141928
+              ], 
+              [
+                -114.49327079613352, 
+                21.9822987085429
+              ], 
+              [
+                -114.49087775234996, 
+                21.97896976378016
+              ], 
+              [
+                -114.4939323035151, 
+                21.969814029531
+              ], 
+              [
+                -114.49730928924384, 
+                21.970229591189185
+              ], 
+              [
+                -114.49991265228911, 
+                21.971692986629808
+              ], 
+              [
+                -114.51360402230664, 
+                21.970527073083137
+              ], 
+              [
+                -114.51475342652431, 
+                21.96914936541546
+              ], 
+              [
+                -114.5258276524637, 
+                21.94464281641175
+              ], 
+              [
+                -114.52821030989813, 
+                21.936288051268903
+              ], 
+              [
+                -114.53210957265027, 
+                21.934064162861528
+              ], 
+              [
+                -114.53474256618878, 
+                21.93408528460912
+              ], 
+              [
+                -114.54500574331398, 
+                21.939026913851112
+              ], 
+              [
+                -114.54986447056369, 
+                21.944102525893346
+              ], 
+              [
+                -114.55547237729857, 
+                21.97501299396585
+              ], 
+              [
+                -114.55208322813986, 
+                21.979345669634117
+              ], 
+              [
+                -114.54548685651913, 
+                21.984684755642423
+              ], 
+              [
+                -114.54374738754855, 
+                21.987023153678688
+              ], 
+              [
+                -114.54259099482721, 
+                21.990166577994046
+              ], 
+              [
+                -114.54494080004118, 
+                21.994006930448457
+              ], 
+              [
+                -114.54737378667447, 
+                21.995945007080664
+              ], 
+              [
+                -114.55174154883126, 
+                21.997390904083748
+              ], 
+              [
+                -114.55254797238041, 
+                21.996528551683575
+              ], 
+              [
+                -114.55446732137798, 
+                21.991182826422055
+              ], 
+              [
+                -114.55790118034332, 
+                21.98899713375334
+              ], 
+              [
+                -114.56533111382778, 
+                21.988113388121
+              ], 
+              [
+                -114.56883668096093, 
+                21.991531828968114
+              ], 
+              [
+                -114.57030525067793, 
+                21.99446046024908
+              ], 
+              [
+                -114.5702306422806, 
+                21.9975141450303
+              ], 
+              [
+                -114.56884378249637, 
+                22.004529503224163
+              ], 
+              [
+                -114.56074797253763, 
+                22.020603159011486
+              ], 
+              [
+                -114.55807580659904, 
+                22.02146889962769
+              ], 
+              [
+                -114.55545841350053, 
+                22.020963612130604
+              ], 
+              [
+                -114.55265332727944, 
+                22.019673295386056
+              ], 
+              [
+                -114.54735339089127, 
+                22.015472457100042
+              ], 
+              [
+                -114.53221752872234, 
+                22.023965830747336
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -113.85480695651277, 
+                22.180130569058257
+              ], 
+              [
+                -113.8535944290705, 
+                22.181594268010837
+              ], 
+              [
+                -113.83525750026968, 
+                22.175841312096082
+              ], 
+              [
+                -113.79819357639998, 
+                22.16842994976319
+              ], 
+              [
+                -113.78823493448212, 
+                22.157699811815384
+              ], 
+              [
+                -113.78662941431875, 
+                22.15390258622683
+              ], 
+              [
+                -113.78464680925558, 
+                22.142929820812164
+              ], 
+              [
+                -113.78679066654608, 
+                22.138267920519503
+              ], 
+              [
+                -113.79819227021841, 
+                22.129954688962286
+              ], 
+              [
+                -113.82856265212686, 
+                22.141440246814156
+              ], 
+              [
+                -113.8361782275021, 
+                22.127821580873533
+              ], 
+              [
+                -113.83579380845825, 
+                22.126864097759647
+              ], 
+              [
+                -113.84158667267745, 
+                22.12803760341142
+              ], 
+              [
+                -113.86506158330593, 
+                22.148897787021358
+              ], 
+              [
+                -113.86141454643383, 
+                22.180016852715035
+              ], 
+              [
+                -113.85480695651277, 
+                22.180130569058257
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -116.4746272880492, 
+                24.90431718492627
+              ], 
+              [
+                -116.47036438396674, 
+                24.912293547366446
+              ], 
+              [
+                -116.46995940308081, 
+                24.931433733290948
+              ], 
+              [
+                -116.45737653412222, 
+                24.948499335289306
+              ], 
+              [
+                -116.44822335806622, 
+                24.94805395986021
+              ], 
+              [
+                -116.44217919716401, 
+                24.94481618845075
+              ], 
+              [
+                -116.43066910126485, 
+                24.90743378763896
+              ], 
+              [
+                -116.43077833776921, 
+                24.90154502239491
+              ], 
+              [
+                -116.42657090010653, 
+                24.894337703440126
+              ], 
+              [
+                -116.38787794914401, 
+                24.859654601332167
+              ], 
+              [
+                -116.385994019623, 
+                24.857364741966993
+              ], 
+              [
+                -116.33683387289899, 
+                24.8435414853975
+              ], 
+              [
+                -116.30898554941481, 
+                24.833627120797388
+              ], 
+              [
+                -116.30657206890369, 
+                24.829631254989216
+              ], 
+              [
+                -116.30478812787595, 
+                24.8254259270714
+              ], 
+              [
+                -116.29107498642712, 
+                24.810566984162705
+              ], 
+              [
+                -116.28780580548523, 
+                24.810539957712475
+              ], 
+              [
+                -116.28783664491999, 
+                24.806954387919095
+              ], 
+              [
+                -116.29584221932099, 
+                24.804763161144923
+              ], 
+              [
+                -116.32734792043375, 
+                24.811353941197183
+              ], 
+              [
+                -116.33960117868617, 
+                24.812882978481063
+              ], 
+              [
+                -116.34269164842019, 
+                24.81091173313131
+              ], 
+              [
+                -116.34579536081236, 
+                24.80789376915659
+              ], 
+              [
+                -116.35196703201447, 
+                24.805000610156004
+              ], 
+              [
+                -116.36118144529168, 
+                24.804329380730575
+              ], 
+              [
+                -116.36626637343923, 
+                24.806635006092527
+              ], 
+              [
+                -116.36824205235588, 
+                24.81195496200359
+              ], 
+              [
+                -116.39755886490498, 
+                24.834163632101525
+              ], 
+              [
+                -116.40905618419644, 
+                24.849635296208596
+              ], 
+              [
+                -116.43897419351342, 
+                24.884970156103474
+              ], 
+              [
+                -116.44061545404534, 
+                24.88554097756408
+              ], 
+              [
+                -116.44225333542586, 
+                24.884898172237833
+              ], 
+              [
+                -116.44742725595673, 
+                24.885396967239302
+              ], 
+              [
+                -116.47524197893877, 
+                24.896830863469688
+              ], 
+              [
+                -116.47549747587573, 
+                24.902948042717043
+              ], 
+              [
+                -116.4746272880492, 
+                24.90431718492627
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -114.84674108035301, 
+                24.751468787867314
+              ], 
+              [
+                -114.84668031997984, 
+                24.745379817954845
+              ], 
+              [
+                -114.84567675863602, 
+                24.74399785295321
+              ], 
+              [
+                -114.84190030328718, 
+                24.743179829993217
+              ], 
+              [
+                -114.8408440356773, 
+                24.744323711208484
+              ], 
+              [
+                -114.83781942321068, 
+                24.744802027695403
+              ], 
+              [
+                -114.83584821936589, 
+                24.742647030419917
+              ], 
+              [
+                -114.83296015195826, 
+                24.726589756645666
+              ], 
+              [
+                -114.83315061099228, 
+                24.718247188856104
+              ], 
+              [
+                -114.83491071162612, 
+                24.714902869285584
+              ], 
+              [
+                -114.83456064264163, 
+                24.698670811517015
+              ], 
+              [
+                -114.8244638004188, 
+                24.669616479884716
+              ], 
+              [
+                -114.81009023211068, 
+                24.658421431796413
+              ], 
+              [
+                -114.79904847645035, 
+                24.658730492313822
+              ], 
+              [
+                -114.79745154284922, 
+                24.652326429548395
+              ], 
+              [
+                -114.79868074826743, 
+                24.64246565721629
+              ], 
+              [
+                -114.79984683582907, 
+                24.63753814460867
+              ], 
+              [
+                -114.80494352833294, 
+                24.630037365604363
+              ], 
+              [
+                -114.83131165980467, 
+                24.62317016680686
+              ], 
+              [
+                -114.83514264301196, 
+                24.623801500803978
+              ], 
+              [
+                -114.8363194482767, 
+                24.62549560479024
+              ], 
+              [
+                -114.83743738613703, 
+                24.6257436962354
+              ], 
+              [
+                -114.84399068914833, 
+                24.625407418388424
+              ], 
+              [
+                -114.87723913187641, 
+                24.610313424795226
+              ], 
+              [
+                -114.89973330857359, 
+                24.597366970202962
+              ], 
+              [
+                -114.91014859811023, 
+                24.584344418298905
+              ], 
+              [
+                -114.91220523348342, 
+                24.5771843561045
+              ], 
+              [
+                -114.90836787064329, 
+                24.56880922260423
+              ], 
+              [
+                -114.90441678108498, 
+                24.563931289487357
+              ], 
+              [
+                -114.90213839446452, 
+                24.562898569124002
+              ], 
+              [
+                -114.9017032496929, 
+                24.56145848838675
+              ], 
+              [
+                -114.90263479512137, 
+                24.555440412177965
+              ], 
+              [
+                -114.9081083407532, 
+                24.550787985774544
+              ], 
+              [
+                -114.9291882956295, 
+                24.549748467158498
+              ], 
+              [
+                -114.9350214647445, 
+                24.55637597916608
+              ], 
+              [
+                -114.9341644102313, 
+                24.55771855879305
+              ], 
+              [
+                -114.93389210383651, 
+                24.559693387311494
+              ], 
+              [
+                -114.93629013922454, 
+                24.563658904047927
+              ], 
+              [
+                -114.94095835557776, 
+                24.569136307879813
+              ], 
+              [
+                -114.95233305313145, 
+                24.577009480637923
+              ], 
+              [
+                -114.98272554583805, 
+                24.593797301470296
+              ], 
+              [
+                -114.98854551130945, 
+                24.59608034764014
+              ], 
+              [
+                -114.99588485118787, 
+                24.597208953955768
+              ], 
+              [
+                -115.01179660892994, 
+                24.592718823309553
+              ], 
+              [
+                -115.0276074028089, 
+                24.59136042880903
+              ], 
+              [
+                -115.03515116512148, 
+                24.591933043813484
+              ], 
+              [
+                -115.0363585464513, 
+                24.59455647480814
+              ], 
+              [
+                -115.04273816935215, 
+                24.601115599882696
+              ], 
+              [
+                -115.04975977566305, 
+                24.605533269272716
+              ], 
+              [
+                -115.05854064811804, 
+                24.60875494547193
+              ], 
+              [
+                -115.06923864991897, 
+                24.609686150491473
+              ], 
+              [
+                -115.07829683091776, 
+                24.62063214531848
+              ], 
+              [
+                -115.09370693162275, 
+                24.635497525263332
+              ], 
+              [
+                -115.09976041663018, 
+                24.640363730916917
+              ], 
+              [
+                -115.12367946420581, 
+                24.654778182957088
+              ], 
+              [
+                -115.13960478395897, 
+                24.653548167882466
+              ], 
+              [
+                -115.1493367975629, 
+                24.651768268715504
+              ], 
+              [
+                -115.15230675995993, 
+                24.652748542473592
+              ], 
+              [
+                -115.15425213030903, 
+                24.65407247217704
+              ], 
+              [
+                -115.17477522519171, 
+                24.67453872643659
+              ], 
+              [
+                -115.18135130501207, 
+                24.683055878008513
+              ], 
+              [
+                -115.18896041596551, 
+                24.685120016708137
+              ], 
+              [
+                -115.19548181425355, 
+                24.685332837522743
+              ], 
+              [
+                -115.20192285955538, 
+                24.68756708328508
+              ], 
+              [
+                -115.20277677685931, 
+                24.68858269097267
+              ], 
+              [
+                -115.20288397072088, 
+                24.689789113529493
+              ], 
+              [
+                -115.20127815304737, 
+                24.696233498808677
+              ], 
+              [
+                -115.20137671394367, 
+                24.698785525134756
+              ], 
+              [
+                -115.20421512093964, 
+                24.712318574671176
+              ], 
+              [
+                -115.20542836031916, 
+                24.716001841420567
+              ], 
+              [
+                -115.20914621053335, 
+                24.72355456098464
+              ], 
+              [
+                -115.22366080649024, 
+                24.74528733821534
+              ], 
+              [
+                -115.22357295565199, 
+                24.750142968400915
+              ], 
+              [
+                -115.21269153145633, 
+                24.75993360572404
+              ], 
+              [
+                -115.20037201548303, 
+                24.766455821978898
+              ], 
+              [
+                -115.17593652292324, 
+                24.76708691494881
+              ], 
+              [
+                -115.15463044653232, 
+                24.76561983466932
+              ], 
+              [
+                -115.14913433511664, 
+                24.762502298034658
+              ], 
+              [
+                -115.14098224185061, 
+                24.759707819002426
+              ], 
+              [
+                -115.11680491590242, 
+                24.75452988704148
+              ], 
+              [
+                -115.11060122991505, 
+                24.75509694212225
+              ], 
+              [
+                -115.09702598118665, 
+                24.75900258804595
+              ], 
+              [
+                -115.08970886296909, 
+                24.765969659431796
+              ], 
+              [
+                -115.0881445175374, 
+                24.77307339785758
+              ], 
+              [
+                -115.08996179424386, 
+                24.780885583908553
+              ], 
+              [
+                -115.09388099454502, 
+                24.78492000094788
+              ], 
+              [
+                -115.09589834866661, 
+                24.78612451411777
+              ], 
+              [
+                -115.09555106686341, 
+                24.78803296025049
+              ], 
+              [
+                -115.09190947346096, 
+                24.793266618277766
+              ], 
+              [
+                -115.0810146853343, 
+                24.804781027100226
+              ], 
+              [
+                -115.07581086975854, 
+                24.80710571742904
+              ], 
+              [
+                -115.05927473058853, 
+                24.811932321075457
+              ], 
+              [
+                -115.04750419833864, 
+                24.811665845596607
+              ], 
+              [
+                -115.04078431340808, 
+                24.81226461591076
+              ], 
+              [
+                -115.03903795742548, 
+                24.814269618874317
+              ], 
+              [
+                -115.03830302981383, 
+                24.82978610408407
+              ], 
+              [
+                -115.02421177640315, 
+                24.846085206366325
+              ], 
+              [
+                -115.00623250714986, 
+                24.837362579233233
+              ], 
+              [
+                -115.0047272517713, 
+                24.834642222557186
+              ], 
+              [
+                -114.99983862625126, 
+                24.831971070123984
+              ], 
+              [
+                -114.99526432928185, 
+                24.831525243236086
+              ], 
+              [
+                -114.98354994193365, 
+                24.841195074063442
+              ], 
+              [
+                -114.9597096248623, 
+                24.849827424535498
+              ], 
+              [
+                -114.9544268487779, 
+                24.853664115443358
+              ], 
+              [
+                -114.95448362691681, 
+                24.866697829342268
+              ], 
+              [
+                -114.95284865145875, 
+                24.86855732704524
+              ], 
+              [
+                -114.94655203251502, 
+                24.86508752980356
+              ], 
+              [
+                -114.9437393253953, 
+                24.86043747504933
+              ], 
+              [
+                -114.94357058766958, 
+                24.858433812982152
+              ], 
+              [
+                -114.9456105410367, 
+                24.853725743433532
+              ], 
+              [
+                -114.94246630276017, 
+                24.843590957263043
+              ], 
+              [
+                -114.93218730580163, 
+                24.819420761323318
+              ], 
+              [
+                -114.91594163284014, 
+                24.816760891213836
+              ], 
+              [
+                -114.91047470554795, 
+                24.81713281485675
+              ], 
+              [
+                -114.8975156013021, 
+                24.819624114903288
+              ], 
+              [
+                -114.89690628498577, 
+                24.821370479415382
+              ], 
+              [
+                -114.89684517740683, 
+                24.82383312610454
+              ], 
+              [
+                -114.8963955327398, 
+                24.826149860431016
+              ], 
+              [
+                -114.89560840291128, 
+                24.827413524738247
+              ], 
+              [
+                -114.88845611082017, 
+                24.83058440003373
+              ], 
+              [
+                -114.86654262447978, 
+                24.82386498022297
+              ], 
+              [
+                -114.85010495213865, 
+                24.817201702401665
+              ], 
+              [
+                -114.84585933357904, 
+                24.811251964737878
+              ], 
+              [
+                -114.84262488880854, 
+                24.802239383541952
+              ], 
+              [
+                -114.8423726345578, 
+                24.79768998436179
+              ], 
+              [
+                -114.84307673920651, 
+                24.770906255030756
+              ], 
+              [
+                -114.8446512591465, 
+                24.7607242403085
+              ], 
+              [
+                -114.84674108035301, 
+                24.751468787867314
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.69486550465365, 
+                25.803005663217967
+              ], 
+              [
+                -107.69347550412117, 
+                25.800969692722358
+              ], 
+              [
+                -107.68818081029897, 
+                25.792042132986122
+              ], 
+              [
+                -107.68127838813834, 
+                25.78241052214237
+              ], 
+              [
+                -107.67933708295877, 
+                25.780683858350315
+              ], 
+              [
+                -107.67648523659278, 
+                25.780730380051317
+              ], 
+              [
+                -107.67501839532406, 
+                25.781456531338513
+              ], 
+              [
+                -107.66445393002117, 
+                25.78831899452741
+              ], 
+              [
+                -107.66150271302392, 
+                25.79453071006408
+              ], 
+              [
+                -107.66176804813931, 
+                25.79532738994217
+              ], 
+              [
+                -107.66091203206244, 
+                25.800816607116044
+              ], 
+              [
+                -107.65556646852176, 
+                25.809301335979416
+              ], 
+              [
+                -107.64942586161905, 
+                25.806861851748746
+              ], 
+              [
+                -107.6428063344383, 
+                25.80578926861626
+              ], 
+              [
+                -107.63798227710471, 
+                25.806529591028518
+              ], 
+              [
+                -107.63311079727927, 
+                25.80824333228033
+              ], 
+              [
+                -107.62990737070011, 
+                25.81115884900238
+              ], 
+              [
+                -107.62635017869742, 
+                25.812773520724534
+              ], 
+              [
+                -107.61790709894238, 
+                25.813878915529
+              ], 
+              [
+                -107.61430903758031, 
+                25.813569300255917
+              ], 
+              [
+                -107.60465670492657, 
+                25.811016430597796
+              ], 
+              [
+                -107.59391670378132, 
+                25.81374454026181
+              ], 
+              [
+                -107.59198550483062, 
+                25.815487217181527
+              ], 
+              [
+                -107.59116927341182, 
+                25.819456055442096
+              ], 
+              [
+                -107.58203152107143, 
+                25.82661495882086
+              ], 
+              [
+                -107.57339551502717, 
+                25.83312390476656
+              ], 
+              [
+                -107.56443363621736, 
+                25.836305856673015
+              ], 
+              [
+                -107.55622755009847, 
+                25.8266684484326
+              ], 
+              [
+                -107.55558223846805, 
+                25.824973561373092
+              ], 
+              [
+                -107.5564353781666, 
+                25.82288373898544
+              ], 
+              [
+                -107.55671465127494, 
+                25.81383828560648
+              ], 
+              [
+                -107.55081850756311, 
+                25.804492822126065
+              ], 
+              [
+                -107.5483276002647, 
+                25.8026157222878
+              ], 
+              [
+                -107.54297792040262, 
+                25.799979697796967
+              ], 
+              [
+                -107.53185569051583, 
+                25.79550593023267
+              ], 
+              [
+                -107.51711850505247, 
+                25.788471040747478
+              ], 
+              [
+                -107.51393115947093, 
+                25.786019289908364
+              ], 
+              [
+                -107.51101863469762, 
+                25.782863351771695
+              ], 
+              [
+                -107.50993080973014, 
+                25.780765927634906
+              ], 
+              [
+                -107.5113458186682, 
+                25.776133283719016
+              ], 
+              [
+                -107.51026113520459, 
+                25.774319867412892
+              ], 
+              [
+                -107.50564930077954, 
+                25.77169429002382
+              ], 
+              [
+                -107.49828040925543, 
+                25.768637403783096
+              ], 
+              [
+                -107.4801855156863, 
+                25.76190632317463
+              ], 
+              [
+                -107.47321104588006, 
+                25.75768399989155
+              ], 
+              [
+                -107.47013962033309, 
+                25.753822971360457
+              ], 
+              [
+                -107.46823325053778, 
+                25.750449070636037
+              ], 
+              [
+                -107.45236623056549, 
+                25.737587473212507
+              ], 
+              [
+                -107.44232072094658, 
+                25.733987131411364
+              ], 
+              [
+                -107.42925788022904, 
+                25.725197458273293
+              ], 
+              [
+                -107.42671599677897, 
+                25.721597169760678
+              ], 
+              [
+                -107.42633256012611, 
+                25.720278654172986
+              ], 
+              [
+                -107.42659057168918, 
+                25.71855368750056
+              ], 
+              [
+                -107.42462027312003, 
+                25.71394103980388
+              ], 
+              [
+                -107.40133386446026, 
+                25.67737121297228
+              ], 
+              [
+                -107.38953276192753, 
+                25.670405380671177
+              ], 
+              [
+                -107.37808536837562, 
+                25.6651601071411
+              ], 
+              [
+                -107.37649120950988, 
+                25.66456285864212
+              ], 
+              [
+                -107.37361052940103, 
+                25.66507085612099
+              ], 
+              [
+                -107.37183614445345, 
+                25.66386927391089
+              ], 
+              [
+                -107.36542421067965, 
+                25.656858712806304
+              ], 
+              [
+                -107.35929413421005, 
+                25.646669689251084
+              ], 
+              [
+                -107.35853624713909, 
+                25.64467216158585
+              ], 
+              [
+                -107.35815730975186, 
+                25.641612937318925
+              ], 
+              [
+                -107.35861544091516, 
+                25.639347808224016
+              ], 
+              [
+                -107.36559646430551, 
+                25.640164903795814
+              ], 
+              [
+                -107.37587739510823, 
+                25.649447569025032
+              ], 
+              [
+                -107.37801285464681, 
+                25.654268482836393
+              ], 
+              [
+                -107.38059508611649, 
+                25.656403798032905
+              ], 
+              [
+                -107.39982493705209, 
+                25.666990821870954
+              ], 
+              [
+                -107.41680732550121, 
+                25.67184759425486
+              ], 
+              [
+                -107.41963588124139, 
+                25.673199884934125
+              ], 
+              [
+                -107.4303785695752, 
+                25.6802436407027
+              ], 
+              [
+                -107.44233135091308, 
+                25.694333359933008
+              ], 
+              [
+                -107.44928418686379, 
+                25.706067810193076
+              ], 
+              [
+                -107.45944163740111, 
+                25.71582593999613
+              ], 
+              [
+                -107.46866786883497, 
+                25.71688477469711
+              ], 
+              [
+                -107.4812115962299, 
+                25.721148411001128
+              ], 
+              [
+                -107.49063211931556, 
+                25.726940230336833
+              ], 
+              [
+                -107.49052204751167, 
+                25.727846162621663
+              ], 
+              [
+                -107.49316457472781, 
+                25.731395501696866
+              ], 
+              [
+                -107.49574132570923, 
+                25.734034211939605
+              ], 
+              [
+                -107.49833671704424, 
+                25.73574674778161
+              ], 
+              [
+                -107.50401428180948, 
+                25.73648102277179
+              ], 
+              [
+                -107.51101442335401, 
+                25.73630500390179
+              ], 
+              [
+                -107.5159621782982, 
+                25.73213227030669
+              ], 
+              [
+                -107.5147376885023, 
+                25.727460789626612
+              ], 
+              [
+                -107.49503098104917, 
+                25.71332880119352
+              ], 
+              [
+                -107.47555715868748, 
+                25.703051154605294
+              ], 
+              [
+                -107.47105626155228, 
+                25.69855934823305
+              ], 
+              [
+                -107.46645938326037, 
+                25.692887815144974
+              ], 
+              [
+                -107.46596261069706, 
+                25.691371399934336
+              ], 
+              [
+                -107.47247617015165, 
+                25.679766734949915
+              ], 
+              [
+                -107.46386676340722, 
+                25.673390075501057
+              ], 
+              [
+                -107.45881841244302, 
+                25.670008351658932
+              ], 
+              [
+                -107.42245162688724, 
+                25.652228640116622
+              ], 
+              [
+                -107.4207667677669, 
+                25.652645369751205
+              ], 
+              [
+                -107.4150167016308, 
+                25.652066820943414
+              ], 
+              [
+                -107.40296110801368, 
+                25.648173806067447
+              ], 
+              [
+                -107.39473992251986, 
+                25.64461617780447
+              ], 
+              [
+                -107.39166953727128, 
+                25.639738555187513
+              ], 
+              [
+                -107.38721710464739, 
+                25.62577994763619
+              ], 
+              [
+                -107.3850547131299, 
+                25.62266019930061
+              ], 
+              [
+                -107.37912324902041, 
+                25.616953910907217
+              ], 
+              [
+                -107.37323286518259, 
+                25.612618287685414
+              ], 
+              [
+                -107.36614609031993, 
+                25.60963915504947
+              ], 
+              [
+                -107.36023517366867, 
+                25.6064015726529
+              ], 
+              [
+                -107.34499922486813, 
+                25.593222439508835
+              ], 
+              [
+                -107.36179931355143, 
+                25.58765270197205
+              ], 
+              [
+                -107.35857993005243, 
+                25.58271217597926
+              ], 
+              [
+                -107.33011723503571, 
+                25.55875024511657
+              ], 
+              [
+                -107.32647505546377, 
+                25.553763990900233
+              ], 
+              [
+                -107.32530417269771, 
+                25.551404270828872
+              ], 
+              [
+                -107.32524592911841, 
+                25.549519609352682
+              ], 
+              [
+                -107.33446567281493, 
+                25.518095615189907
+              ], 
+              [
+                -107.33539587325781, 
+                25.516876063629518
+              ], 
+              [
+                -107.33850931292974, 
+                25.51476258058336
+              ], 
+              [
+                -107.34721088327528, 
+                25.517859379078814
+              ], 
+              [
+                -107.35521598879747, 
+                25.518990624180287
+              ], 
+              [
+                -107.36046064482089, 
+                25.51766955801439
+              ], 
+              [
+                -107.36841304191694, 
+                25.511783489830748
+              ], 
+              [
+                -107.36868763968798, 
+                25.50928407580805
+              ], 
+              [
+                -107.36126842817836, 
+                25.503974329530404
+              ], 
+              [
+                -107.35905835051199, 
+                25.501891114567666
+              ], 
+              [
+                -107.35551785502022, 
+                25.479470453148892
+              ], 
+              [
+                -107.35664181231942, 
+                25.45766060099286
+              ], 
+              [
+                -107.36026922482662, 
+                25.44414362762603
+              ], 
+              [
+                -107.37229915398287, 
+                25.413951916793568
+              ], 
+              [
+                -107.37443010910376, 
+                25.412648997746487
+              ], 
+              [
+                -107.38241406048748, 
+                25.402658553389085
+              ], 
+              [
+                -107.38682508412396, 
+                25.395606254915577
+              ], 
+              [
+                -107.38192108718837, 
+                25.390395013688142
+              ], 
+              [
+                -107.38268587178278, 
+                25.383674831707363
+              ], 
+              [
+                -107.39528978635911, 
+                25.356510493970262
+              ], 
+              [
+                -107.39397361393898, 
+                25.352342008304902
+              ], 
+              [
+                -107.39587577090792, 
+                25.348729630530457
+              ], 
+              [
+                -107.40959792460498, 
+                25.33819755775162
+              ], 
+              [
+                -107.41977010286689, 
+                25.338286257674717
+              ], 
+              [
+                -107.4432909604307, 
+                25.365166657654555
+              ], 
+              [
+                -107.47060874903485, 
+                25.410608946587992
+              ], 
+              [
+                -107.47198192332672, 
+                25.41676935348187
+              ], 
+              [
+                -107.4711073235673, 
+                25.433950686620356
+              ], 
+              [
+                -107.46804694543192, 
+                25.44638464568765
+              ], 
+              [
+                -107.46025695040807, 
+                25.460300258313467
+              ], 
+              [
+                -107.47092610085318, 
+                25.466598808322146
+              ], 
+              [
+                -107.47432442291239, 
+                25.464281916463236
+              ], 
+              [
+                -107.47858936126784, 
+                25.46472914102363
+              ], 
+              [
+                -107.47943022963581, 
+                25.465590472550282
+              ], 
+              [
+                -107.49206077448676, 
+                25.487987480221932
+              ], 
+              [
+                -107.48844139793611, 
+                25.493374285308192
+              ], 
+              [
+                -107.4817612876577, 
+                25.495600830168108
+              ], 
+              [
+                -107.47982161765177, 
+                25.49277104748514
+              ], 
+              [
+                -107.47938902393564, 
+                25.49100982010921
+              ], 
+              [
+                -107.47855453828079, 
+                25.489365013135323
+              ], 
+              [
+                -107.46553252007092, 
+                25.486990058855827
+              ], 
+              [
+                -107.46397560380905, 
+                25.488722729604
+              ], 
+              [
+                -107.4647935453144, 
+                25.497312237269753
+              ], 
+              [
+                -107.4967194496487, 
+                25.514800782164983
+              ], 
+              [
+                -107.52234135131731, 
+                25.530092052749822
+              ], 
+              [
+                -107.52228795870425, 
+                25.53484433645498
+              ], 
+              [
+                -107.52420993193006, 
+                25.539818743010564
+              ], 
+              [
+                -107.53371694156105, 
+                25.54981988443928
+              ], 
+              [
+                -107.55473247134498, 
+                25.56101637638827
+              ], 
+              [
+                -107.55858937113024, 
+                25.56352508975982
+              ], 
+              [
+                -107.57818347105162, 
+                25.589750674904543
+              ], 
+              [
+                -107.58155006155378, 
+                25.593471475886638
+              ], 
+              [
+                -107.58366840638901, 
+                25.595207656392468
+              ], 
+              [
+                -107.58828140530086, 
+                25.595776117975703
+              ], 
+              [
+                -107.59394671899082, 
+                25.600513167309167
+              ], 
+              [
+                -107.60058076417329, 
+                25.61479870713252
+              ], 
+              [
+                -107.60122051710829, 
+                25.626531678762706
+              ], 
+              [
+                -107.61070991949954, 
+                25.646343542532644
+              ], 
+              [
+                -107.62552618247207, 
+                25.663418489944192
+              ], 
+              [
+                -107.63070059647283, 
+                25.667801884287233
+              ], 
+              [
+                -107.63423313718066, 
+                25.669982735181343
+              ], 
+              [
+                -107.65419740994484, 
+                25.701462726431707
+              ], 
+              [
+                -107.65846538474558, 
+                25.70621815129342
+              ], 
+              [
+                -107.66334168554005, 
+                25.709348203375143
+              ], 
+              [
+                -107.67906373758464, 
+                25.729018582423482
+              ], 
+              [
+                -107.68111387253856, 
+                25.73984487288418
+              ], 
+              [
+                -107.6844100865211, 
+                25.745554605815506
+              ], 
+              [
+                -107.70162877350634, 
+                25.759701881092276
+              ], 
+              [
+                -107.71694913182884, 
+                25.769809884278054
+              ], 
+              [
+                -107.71938190494765, 
+                25.770745298422256
+              ], 
+              [
+                -107.72258949757438, 
+                25.769713014688197
+              ], 
+              [
+                -107.72485396166614, 
+                25.769870907054635
+              ], 
+              [
+                -107.7300360186378, 
+                25.772540967981723
+              ], 
+              [
+                -107.73767833729826, 
+                25.779221773258715
+              ], 
+              [
+                -107.75888377761585, 
+                25.802396781017983
+              ], 
+              [
+                -107.78144825465223, 
+                25.834917630779085
+              ], 
+              [
+                -107.78710849257031, 
+                25.85042701730644
+              ], 
+              [
+                -107.78746890955988, 
+                25.853547997394422
+              ], 
+              [
+                -107.76769106589761, 
+                25.846303889654752
+              ], 
+              [
+                -107.73612580401164, 
+                25.833611586262865
+              ], 
+              [
+                -107.73463762019693, 
+                25.83195689184048
+              ], 
+              [
+                -107.73107410805098, 
+                25.82587506586975
+              ], 
+              [
+                -107.72188496383718, 
+                25.820367961722727
+              ], 
+              [
+                -107.71639623068845, 
+                25.820002469420352
+              ], 
+              [
+                -107.7094240041044, 
+                25.82252646504947
+              ], 
+              [
+                -107.70714330360302, 
+                25.82099786609114
+              ], 
+              [
+                -107.69486550465365, 
+                25.803005663217967
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -106.20227931370036, 
+                24.923614635881936
+              ], 
+              [
+                -106.2025133937322, 
+                24.91805512620859
+              ], 
+              [
+                -106.18781203764134, 
+                24.900559773169004
+              ], 
+              [
+                -106.1848947958098, 
+                24.900680751394997
+              ], 
+              [
+                -106.18150277425218, 
+                24.90282841259248
+              ], 
+              [
+                -106.17552340510831, 
+                24.903004295049048
+              ], 
+              [
+                -106.17449512359772, 
+                24.90267310610735
+              ], 
+              [
+                -106.17419705075135, 
+                24.902051992544653
+              ], 
+              [
+                -106.17344987362422, 
+                24.898291797605218
+              ], 
+              [
+                -106.17596034879017, 
+                24.874574487714213
+              ], 
+              [
+                -106.17714571205897, 
+                24.87011616746249
+              ], 
+              [
+                -106.1973611108445, 
+                24.859023095262753
+              ], 
+              [
+                -106.23668153797502, 
+                24.86573635230589
+              ], 
+              [
+                -106.24582104079174, 
+                24.86969812905269
+              ], 
+              [
+                -106.24923809192872, 
+                24.878155567547793
+              ], 
+              [
+                -106.24883760677258, 
+                24.879536185296587
+              ], 
+              [
+                -106.23609724525444, 
+                24.895903275472026
+              ], 
+              [
+                -106.209053286889, 
+                24.92472202830568
+              ], 
+              [
+                -106.20469756744164, 
+                24.926242001944093
+              ], 
+              [
+                -106.20227931370036, 
+                24.923614635881936
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -106.41046136318768, 
+                25.013734928701357
+              ], 
+              [
+                -106.39305871688693, 
+                25.00643115759435
+              ], 
+              [
+                -106.38227429403744, 
+                25.003928969170193
+              ], 
+              [
+                -106.3766517288875, 
+                25.003843142349268
+              ], 
+              [
+                -106.36730649777473, 
+                24.997861362054703
+              ], 
+              [
+                -106.36673241293414, 
+                24.991163330667206
+              ], 
+              [
+                -106.37142640293388, 
+                24.983311875927978
+              ], 
+              [
+                -106.35954983504831, 
+                24.959653630986672
+              ], 
+              [
+                -106.35974572473938, 
+                24.9474009892391
+              ], 
+              [
+                -106.35047554408973, 
+                24.91560210624733
+              ], 
+              [
+                -106.36984921770157, 
+                24.922622529726386
+              ], 
+              [
+                -106.38363344913222, 
+                24.930469506199934
+              ], 
+              [
+                -106.38459073245944, 
+                24.931539312366105
+              ], 
+              [
+                -106.38484127297156, 
+                24.933198784033245
+              ], 
+              [
+                -106.407177387122, 
+                24.96028420874659
+              ], 
+              [
+                -106.41316507893441, 
+                24.964761738420428
+              ], 
+              [
+                -106.43209758826974, 
+                24.993343979777404
+              ], 
+              [
+                -106.44110120727397, 
+                25.017576875551853
+              ], 
+              [
+                -106.44125898355868, 
+                25.01888331561638
+              ], 
+              [
+                -106.43645277006392, 
+                25.02053050325982
+              ], 
+              [
+                -106.42969058673762, 
+                25.020036676649354
+              ], 
+              [
+                -106.42889753560313, 
+                25.01969192187007
+              ], 
+              [
+                -106.42655378337857, 
+                25.0171491257466
+              ], 
+              [
+                -106.42334597471408, 
+                25.015883270769503
+              ], 
+              [
+                -106.41046136318768, 
+                25.013734928701357
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -112.59895205360795, 
+                23.347530266047336
+              ], 
+              [
+                -112.58938105469744, 
+                23.3438010941552
+              ], 
+              [
+                -112.5849567028057, 
+                23.341122080662043
+              ], 
+              [
+                -112.58394369029358, 
+                23.33946001145835
+              ], 
+              [
+                -112.58676565063654, 
+                23.337146009654393
+              ], 
+              [
+                -112.59121171812545, 
+                23.337652089673664
+              ], 
+              [
+                -112.59227170545356, 
+                23.33898971563232
+              ], 
+              [
+                -112.5953614429893, 
+                23.340361343935562
+              ], 
+              [
+                -112.60464727590961, 
+                23.342040047061126
+              ], 
+              [
+                -112.61926135835299, 
+                23.34029722572039
+              ], 
+              [
+                -112.62117077044651, 
+                23.33960544619606
+              ], 
+              [
+                -112.62528681134494, 
+                23.334310225192535
+              ], 
+              [
+                -112.62640976761942, 
+                23.329954693793674
+              ], 
+              [
+                -112.63054124046336, 
+                23.327571315339707
+              ], 
+              [
+                -112.66797400995554, 
+                23.318118503552988
+              ], 
+              [
+                -112.66893605210339, 
+                23.319344265961377
+              ], 
+              [
+                -112.66940081277447, 
+                23.325013367038384
+              ], 
+              [
+                -112.66461329975444, 
+                23.33518290074617
+              ], 
+              [
+                -112.66277888110756, 
+                23.338349253332293
+              ], 
+              [
+                -112.65498610476071, 
+                23.347405406862794
+              ], 
+              [
+                -112.63022553502438, 
+                23.35281102517933
+              ], 
+              [
+                -112.61663420003902, 
+                23.354216768295473
+              ], 
+              [
+                -112.61312409578758, 
+                23.353898722878657
+              ], 
+              [
+                -112.59895205360795, 
+                23.347530266047336
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.65569110646604, 
+                26.213085787483426
+              ], 
+              [
+                -115.62228052020299, 
+                26.210295542975274
+              ], 
+              [
+                -115.61945581702314, 
+                26.211666777684982
+              ], 
+              [
+                -115.61220993827456, 
+                26.21270796514758
+              ], 
+              [
+                -115.6015745339242, 
+                26.21185586515691
+              ], 
+              [
+                -115.58907137668317, 
+                26.208403013638296
+              ], 
+              [
+                -115.58884722546215, 
+                26.206919451665804
+              ], 
+              [
+                -115.58809308231662, 
+                26.206227846902053
+              ], 
+              [
+                -115.56044705131194, 
+                26.19682705584745
+              ], 
+              [
+                -115.53958307388308, 
+                26.193925771270397
+              ], 
+              [
+                -115.53797691647925, 
+                26.19119460191464
+              ], 
+              [
+                -115.53826745975924, 
+                26.189596771459584
+              ], 
+              [
+                -115.54417241123193, 
+                26.17235107021829
+              ], 
+              [
+                -115.55098130362143, 
+                26.154327844448208
+              ], 
+              [
+                -115.55722374071533, 
+                26.138429958822663
+              ], 
+              [
+                -115.55842174369745, 
+                26.13632001718276
+              ], 
+              [
+                -115.5642320582425, 
+                26.12858601919192
+              ], 
+              [
+                -115.57234624759226, 
+                26.120913685533704
+              ], 
+              [
+                -115.57492148396453, 
+                26.120454399644185
+              ], 
+              [
+                -115.57862611451152, 
+                26.121230761440664
+              ], 
+              [
+                -115.59093978154893, 
+                26.127352976448623
+              ], 
+              [
+                -115.59370115637017, 
+                26.130251834582715
+              ], 
+              [
+                -115.59765467062043, 
+                26.13143949338707
+              ], 
+              [
+                -115.6097729114645, 
+                26.134605240025547
+              ], 
+              [
+                -115.62257588129202, 
+                26.13564851010099
+              ], 
+              [
+                -115.64133018660446, 
+                26.13431520219765
+              ], 
+              [
+                -115.65421139850156, 
+                26.131464625472997
+              ], 
+              [
+                -115.66259719588183, 
+                26.12889195447264
+              ], 
+              [
+                -115.67720521207114, 
+                26.12273629121127
+              ], 
+              [
+                -115.68136529590373, 
+                26.115873024752204
+              ], 
+              [
+                -115.68953264638822, 
+                26.10508772472565
+              ], 
+              [
+                -115.69665630194756, 
+                26.098066520818136
+              ], 
+              [
+                -115.70510696730692, 
+                26.091600259755356
+              ], 
+              [
+                -115.70942889448412, 
+                26.08675644339101
+              ], 
+              [
+                -115.714722166895, 
+                26.077782700418492
+              ], 
+              [
+                -115.71770058661939, 
+                26.069010281603397
+              ], 
+              [
+                -115.71791294284898, 
+                26.06458971162685
+              ], 
+              [
+                -115.71705550933508, 
+                26.062283845273665
+              ], 
+              [
+                -115.71603150075913, 
+                26.04105654764139
+              ], 
+              [
+                -115.73031653955005, 
+                26.022661827611625
+              ], 
+              [
+                -115.75243929721375, 
+                26.031458030289663
+              ], 
+              [
+                -115.75458327662395, 
+                26.033394879709984
+              ], 
+              [
+                -115.75463805531719, 
+                26.03510096849612
+              ], 
+              [
+                -115.75004047463645, 
+                26.04011181646208
+              ], 
+              [
+                -115.75004110633914, 
+                26.041120195711866
+              ], 
+              [
+                -115.76093426250549, 
+                26.072355753017835
+              ], 
+              [
+                -115.76933765443975, 
+                26.08909922722784
+              ], 
+              [
+                -115.77107942572717, 
+                26.091830759380347
+              ], 
+              [
+                -115.77972931144912, 
+                26.102002305224488
+              ], 
+              [
+                -115.79243407839202, 
+                26.11456978549847
+              ], 
+              [
+                -115.80130851712664, 
+                26.11964663819761
+              ], 
+              [
+                -115.80500538397118, 
+                26.12042238330008
+              ], 
+              [
+                -115.80803638980237, 
+                26.122785116271665
+              ], 
+              [
+                -115.81375964710121, 
+                26.129366333511506
+              ], 
+              [
+                -115.81404129576003, 
+                26.131299966783725
+              ], 
+              [
+                -115.81451172392592, 
+                26.131948263045807
+              ], 
+              [
+                -115.82418011194734, 
+                26.136970216650276
+              ], 
+              [
+                -115.82883271058378, 
+                26.139079764041053
+              ], 
+              [
+                -115.83483737050733, 
+                26.140445040409265
+              ], 
+              [
+                -115.83895741900552, 
+                26.14006130904402
+              ], 
+              [
+                -115.84141099544102, 
+                26.138289902695174
+              ], 
+              [
+                -115.84050969121712, 
+                26.136956059093002
+              ], 
+              [
+                -115.8428839005875, 
+                26.136346253815397
+              ], 
+              [
+                -115.85690818732667, 
+                26.137356488237668
+              ], 
+              [
+                -115.86059223468949, 
+                26.141016506831967
+              ], 
+              [
+                -115.86142324316437, 
+                26.144668163607143
+              ], 
+              [
+                -115.86024693163208, 
+                26.14584165514981
+              ], 
+              [
+                -115.85983700275101, 
+                26.14730553142332
+              ], 
+              [
+                -115.85976369895239, 
+                26.151333313645356
+              ], 
+              [
+                -115.86487530310862, 
+                26.16544155903056
+              ], 
+              [
+                -115.8715447408985, 
+                26.1785185861127
+              ], 
+              [
+                -115.87700715286262, 
+                26.18766842118715
+              ], 
+              [
+                -115.8901329827492, 
+                26.201372534480058
+              ], 
+              [
+                -115.90637615622576, 
+                26.214639747509796
+              ], 
+              [
+                -115.91572190911887, 
+                26.220982137588752
+              ], 
+              [
+                -115.946394395275, 
+                26.23619499289516
+              ], 
+              [
+                -115.97686309481313, 
+                26.250195774437227
+              ], 
+              [
+                -115.98845254900117, 
+                26.253606028819114
+              ], 
+              [
+                -115.9972595078503, 
+                26.255185894863825
+              ], 
+              [
+                -116.01734885979515, 
+                26.256132340914466
+              ], 
+              [
+                -116.02401781318872, 
+                26.255775802489648
+              ], 
+              [
+                -116.05820404185755, 
+                26.238906388756245
+              ], 
+              [
+                -116.06044135885223, 
+                26.237168341001734
+              ], 
+              [
+                -116.06189468364904, 
+                26.23490856914817
+              ], 
+              [
+                -116.06213691741696, 
+                26.234065324820254
+              ], 
+              [
+                -116.06165480552461, 
+                26.230114303413284
+              ], 
+              [
+                -116.06276205048253, 
+                26.224937243239598
+              ], 
+              [
+                -116.07157583973171, 
+                26.21581228393752
+              ], 
+              [
+                -116.09204689302851, 
+                26.20339217040125
+              ], 
+              [
+                -116.09831850236817, 
+                26.203289512633837
+              ], 
+              [
+                -116.11765103880832, 
+                26.216975372029886
+              ], 
+              [
+                -116.13843833117217, 
+                26.22787590552602
+              ], 
+              [
+                -116.15280098370043, 
+                26.233094544587292
+              ], 
+              [
+                -116.16344747756152, 
+                26.253150034219857
+              ], 
+              [
+                -116.16773946527458, 
+                26.263485252682575
+              ], 
+              [
+                -116.16895272891414, 
+                26.267152593730042
+              ], 
+              [
+                -116.17327478674692, 
+                26.289872658587186
+              ], 
+              [
+                -116.17041926218765, 
+                26.319268535750698
+              ], 
+              [
+                -116.16859392963039, 
+                26.33442463225342
+              ], 
+              [
+                -116.15965274906375, 
+                26.35315812719148
+              ], 
+              [
+                -116.15243067600228, 
+                26.362113053061023
+              ], 
+              [
+                -116.1496050128634, 
+                26.368899943370465
+              ], 
+              [
+                -116.14912045819797, 
+                26.37386516226132
+              ], 
+              [
+                -116.15120897945506, 
+                26.390740449080145
+              ], 
+              [
+                -116.15069673015691, 
+                26.3990925902653
+              ], 
+              [
+                -116.14786261654042, 
+                26.39810429503453
+              ], 
+              [
+                -116.1464811242302, 
+                26.399571201099747
+              ], 
+              [
+                -116.14534712924667, 
+                26.402569512935973
+              ], 
+              [
+                -116.14478257084306, 
+                26.406291279959888
+              ], 
+              [
+                -116.14507191405433, 
+                26.41110008428858
+              ], 
+              [
+                -116.14670998690494, 
+                26.418418079954826
+              ], 
+              [
+                -116.14754419055045, 
+                26.429098101575814
+              ], 
+              [
+                -116.14648308376519, 
+                26.429875439661394
+              ], 
+              [
+                -116.13889428723328, 
+                26.428176092859918
+              ], 
+              [
+                -116.13750175118803, 
+                26.428531839817804
+              ], 
+              [
+                -116.13540713164544, 
+                26.430791308054545
+              ], 
+              [
+                -116.13357729481413, 
+                26.430955101025415
+              ], 
+              [
+                -116.13243258688078, 
+                26.4297414064951
+              ], 
+              [
+                -116.13110167040567, 
+                26.425069734716036
+              ], 
+              [
+                -116.1280217708994, 
+                26.422613685089186
+              ], 
+              [
+                -116.12720647060029, 
+                26.41714283026418
+              ], 
+              [
+                -116.12720111737951, 
+                26.41258019700893
+              ], 
+              [
+                -116.12790044155663, 
+                26.410734936434476
+              ], 
+              [
+                -116.13026246876063, 
+                26.40784085213745
+              ], 
+              [
+                -116.13025164095048, 
+                26.406612155746483
+              ], 
+              [
+                -116.12953714787672, 
+                26.405766333153576
+              ], 
+              [
+                -116.12917173541875, 
+                26.403190123431536
+              ], 
+              [
+                -116.13065611153279, 
+                26.393409451925137
+              ], 
+              [
+                -116.13020549237498, 
+                26.390576843959153
+              ], 
+              [
+                -116.1283712117697, 
+                26.386220812177193
+              ], 
+              [
+                -116.1268840384932, 
+                26.383892721365847
+              ], 
+              [
+                -116.12248585418737, 
+                26.379602892617317
+              ], 
+              [
+                -116.10535816181975, 
+                26.36908428840013
+              ], 
+              [
+                -116.07781714247852, 
+                26.354891884261882
+              ], 
+              [
+                -116.04240205393972, 
+                26.342590069122096
+              ], 
+              [
+                -116.0228482066054, 
+                26.33371779342066
+              ], 
+              [
+                -116.01115087269754, 
+                26.329228720655667
+              ], 
+              [
+                -115.99255075704663, 
+                26.323875073188507
+              ], 
+              [
+                -115.98382033857987, 
+                26.32457548463414
+              ], 
+              [
+                -115.98187589277322, 
+                26.325732418343563
+              ], 
+              [
+                -115.9740603117726, 
+                26.33156056062978
+              ], 
+              [
+                -115.96541729120437, 
+                26.340191191641036
+              ], 
+              [
+                -115.94144920430415, 
+                26.358623497758714
+              ], 
+              [
+                -115.92293114271529, 
+                26.370400477238196
+              ], 
+              [
+                -115.89923315494285, 
+                26.38117215331065
+              ], 
+              [
+                -115.89603167827545, 
+                26.38202575179282
+              ], 
+              [
+                -115.89419818236858, 
+                26.381681697973296
+              ], 
+              [
+                -115.8898845286676, 
+                26.378759798750053
+              ], 
+              [
+                -115.87653483620666, 
+                26.37631897819077
+              ], 
+              [
+                -115.87364532500473, 
+                26.37626557985165
+              ], 
+              [
+                -115.87265246791893, 
+                26.37840911028089
+              ], 
+              [
+                -115.87071162329143, 
+                26.37945455804834
+              ], 
+              [
+                -115.86494783796849, 
+                26.378271016871892
+              ], 
+              [
+                -115.85824747808473, 
+                26.37491364754037
+              ], 
+              [
+                -115.85541137265538, 
+                26.370543956127577
+              ], 
+              [
+                -115.85353715788061, 
+                26.36619054003538
+              ], 
+              [
+                -115.83752420949487, 
+                26.346627950399274
+              ], 
+              [
+                -115.83323251438813, 
+                26.343550469359172
+              ], 
+              [
+                -115.8303062598567, 
+                26.342391628611978
+              ], 
+              [
+                -115.82492233005873, 
+                26.34210174581456
+              ], 
+              [
+                -115.82149724436974, 
+                26.34038950890796
+              ], 
+              [
+                -115.81778164707329, 
+                26.32873723515131
+              ], 
+              [
+                -115.81088745814237, 
+                26.29833277086522
+              ], 
+              [
+                -115.81225427468296, 
+                26.282730854662027
+              ], 
+              [
+                -115.80824608743725, 
+                26.27825185022456
+              ], 
+              [
+                -115.80445178512834, 
+                26.27572904174266
+              ], 
+              [
+                -115.79783079358431, 
+                26.273391540130905
+              ], 
+              [
+                -115.78411272609232, 
+                26.267089068232817
+              ], 
+              [
+                -115.77426873818906, 
+                26.259692425972982
+              ], 
+              [
+                -115.75230266542121, 
+                26.25516568909406
+              ], 
+              [
+                -115.7339889261922, 
+                26.253699531518617
+              ], 
+              [
+                -115.73131681337826, 
+                26.252683358087335
+              ], 
+              [
+                -115.7186127896221, 
+                26.24090796539172
+              ], 
+              [
+                -115.71593673336514, 
+                26.234257553692945
+              ], 
+              [
+                -115.71571178558231, 
+                26.232773045114186
+              ], 
+              [
+                -115.71348705717806, 
+                26.228818387778237
+              ], 
+              [
+                -115.71198981180486, 
+                26.226762553434884
+              ], 
+              [
+                -115.70667217035867, 
+                26.22352261808472
+              ], 
+              [
+                -115.68547845607965, 
+                26.218749607411578
+              ], 
+              [
+                -115.67918301971234, 
+                26.21910173514766
+              ], 
+              [
+                -115.66485032999303, 
+                26.217477274903384
+              ], 
+              [
+                -115.65848482925105, 
+                26.215145363461385
+              ], 
+              [
+                -115.65569110646604, 
+                26.213085787483426
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -114.32222502339742, 
+                26.405717196812972
+              ], 
+              [
+                -114.3169204546893, 
+                26.40775244416297
+              ], 
+              [
+                -114.3114223878191, 
+                26.412567579809778
+              ], 
+              [
+                -114.30810010579373, 
+                26.413547063980083
+              ], 
+              [
+                -114.30201014183119, 
+                26.41135517174392
+              ], 
+              [
+                -114.29884904187757, 
+                26.408056541341075
+              ], 
+              [
+                -114.28952742652841, 
+                26.408582962395514
+              ], 
+              [
+                -114.2872295790092, 
+                26.40937574484626
+              ], 
+              [
+                -114.2853749650307, 
+                26.411075094286716
+              ], 
+              [
+                -114.28457322026242, 
+                26.413116371821605
+              ], 
+              [
+                -114.28461490786978, 
+                26.413907947959324
+              ], 
+              [
+                -114.28516602474383, 
+                26.41454544238772
+              ], 
+              [
+                -114.28459641525589, 
+                26.416039349800418
+              ], 
+              [
+                -114.27989984288908, 
+                26.415633649570527
+              ], 
+              [
+                -114.27414647882051, 
+                26.412487530976374
+              ], 
+              [
+                -114.26625239143418, 
+                26.39815149453546
+              ], 
+              [
+                -114.26508273050027, 
+                26.378525911721745
+              ], 
+              [
+                -114.27134178769555, 
+                26.374188031535162
+              ], 
+              [
+                -114.27930910046291, 
+                26.375078500111005
+              ], 
+              [
+                -114.29002784804673, 
+                26.374088907619573
+              ], 
+              [
+                -114.30639275404852, 
+                26.36945649247832
+              ], 
+              [
+                -114.3081044319248, 
+                26.367497033964316
+              ], 
+              [
+                -114.31891019762853, 
+                26.36810155252652
+              ], 
+              [
+                -114.33194050551144, 
+                26.373899038377225
+              ], 
+              [
+                -114.3328743297661, 
+                26.374376913727154
+              ], 
+              [
+                -114.33907680798222, 
+                26.38348470121255
+              ], 
+              [
+                -114.33432960371087, 
+                26.38694444260672
+              ], 
+              [
+                -114.32743325112295, 
+                26.396245603028273
+              ], 
+              [
+                -114.32222502339742, 
+                26.405717196812972
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.45051773197332, 
+                26.989343360001584
+              ], 
+              [
+                -115.45010074203596, 
+                26.991374704736533
+              ], 
+              [
+                -115.44270491065842, 
+                27.001172771637066
+              ], 
+              [
+                -115.44024012241594, 
+                27.00358841321876
+              ], 
+              [
+                -115.43507405132819, 
+                27.00616599932104
+              ], 
+              [
+                -115.42495321958306, 
+                27.010361230292247
+              ], 
+              [
+                -115.41131401353293, 
+                27.008469249567295
+              ], 
+              [
+                -115.40504962525446, 
+                27.004635593697472
+              ], 
+              [
+                -115.40135542447432, 
+                27.00138281012719
+              ], 
+              [
+                -115.39577568797677, 
+                26.991748132552605
+              ], 
+              [
+                -115.39422271576437, 
+                26.985167060384356
+              ], 
+              [
+                -115.3936541848638, 
+                26.9764362390112
+              ], 
+              [
+                -115.39462458167853, 
+                26.97215029088921
+              ], 
+              [
+                -115.40105749953433, 
+                26.959043374249394
+              ], 
+              [
+                -115.40544996727422, 
+                26.95424746875126
+              ], 
+              [
+                -115.41710184300234, 
+                26.947738390324194
+              ], 
+              [
+                -115.4274527165597, 
+                26.9484698062521
+              ], 
+              [
+                -115.43633718931014, 
+                26.95179522254553
+              ], 
+              [
+                -115.4459742717612, 
+                26.959402915764088
+              ], 
+              [
+                -115.4504345983126, 
+                26.96706811859035
+              ], 
+              [
+                -115.45120178823912, 
+                26.974771774961617
+              ], 
+              [
+                -115.45122989952226, 
+                26.98248258473196
+              ], 
+              [
+                -115.45051773197332, 
+                26.989343360001584
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.58918799830604, 
+                27.344775735330312
+              ], 
+              [
+                -115.5881341498311, 
+                27.347070052718273
+              ], 
+              [
+                -115.58624192777181, 
+                27.34860870840836
+              ], 
+              [
+                -115.58217100773413, 
+                27.350172846210537
+              ], 
+              [
+                -115.57969901009339, 
+                27.349781648189182
+              ], 
+              [
+                -115.5781622379462, 
+                27.33808588413284
+              ], 
+              [
+                -115.57922404509492, 
+                27.33574868923272
+              ], 
+              [
+                -115.58010582179527, 
+                27.33516335052163
+              ], 
+              [
+                -115.5852887626368, 
+                27.3354070237582
+              ], 
+              [
+                -115.58704676597854, 
+                27.337180817585676
+              ], 
+              [
+                -115.58898992634198, 
+                27.340281727735118
+              ], 
+              [
+                -115.5895251621754, 
+                27.343949243225687
+              ], 
+              [
+                -115.58918799830604, 
+                27.344775735330312
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.04917505748406, 
+                27.59037854957214
+              ], 
+              [
+                -115.0490778614216, 
+                27.590378473449743
+              ], 
+              [
+                -115.0468513745932, 
+                27.58491855492255
+              ], 
+              [
+                -115.05533857748027, 
+                27.581695335168867
+              ], 
+              [
+                -115.06087636050137, 
+                27.577430278891413
+              ], 
+              [
+                -115.06518912916775, 
+                27.566507405226133
+              ], 
+              [
+                -115.06822451239799, 
+                27.564210375144246
+              ], 
+              [
+                -115.07094052489617, 
+                27.56513927205427
+              ], 
+              [
+                -115.07429806154202, 
+                27.567888945463324
+              ], 
+              [
+                -115.07452648746506, 
+                27.568567984702977
+              ], 
+              [
+                -115.0757845999994, 
+                27.572307862674503
+              ], 
+              [
+                -115.07568986813362, 
+                27.575446597392887
+              ], 
+              [
+                -115.07348747942616, 
+                27.577556903358577
+              ], 
+              [
+                -115.07115913144469, 
+                27.58104316661474
+              ], 
+              [
+                -115.06704171464357, 
+                27.58419815208277
+              ], 
+              [
+                -115.06197364800042, 
+                27.587151063341278
+              ], 
+              [
+                -115.05546069643898, 
+                27.589715047020107
+              ], 
+              [
+                -115.05309263976586, 
+                27.59037409753456
+              ], 
+              [
+                -115.04917505748406, 
+                27.59037854957214
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.11184225786559, 
+                24.929511607253538
+              ], 
+              [
+                -107.10615647295509, 
+                24.92838751125436
+              ], 
+              [
+                -107.09552052111731, 
+                24.927735443389686
+              ], 
+              [
+                -107.08502412379242, 
+                24.939507048116564
+              ], 
+              [
+                -107.08072505731772, 
+                24.942869526442156
+              ], 
+              [
+                -107.0734733394404, 
+                24.945346427908234
+              ], 
+              [
+                -107.07151320849711, 
+                24.94429162714371
+              ], 
+              [
+                -107.07054314231966, 
+                24.93841294422446
+              ], 
+              [
+                -107.07071874768445, 
+                24.936000768233058
+              ], 
+              [
+                -107.07167135505512, 
+                24.93444993717503
+              ], 
+              [
+                -107.07406435924345, 
+                24.933923492442858
+              ], 
+              [
+                -107.07832367648533, 
+                24.929567637132383
+              ], 
+              [
+                -107.08418118772089, 
+                24.91872932487431
+              ], 
+              [
+                -107.08690755433386, 
+                24.91130545694607
+              ], 
+              [
+                -107.08675833455683, 
+                24.90589246010106
+              ], 
+              [
+                -107.08983116467242, 
+                24.893786058673882
+              ], 
+              [
+                -107.09104051941003, 
+                24.89095835397369
+              ], 
+              [
+                -107.10304247094908, 
+                24.88892490633667
+              ], 
+              [
+                -107.10845119547459, 
+                24.8896598167407
+              ], 
+              [
+                -107.11989091701152, 
+                24.909112874588082
+              ], 
+              [
+                -107.1243077313269, 
+                24.924040239082952
+              ], 
+              [
+                -107.11886272751278, 
+                24.924917918400208
+              ], 
+              [
+                -107.11184225786559, 
+                24.929511607253538
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.10556042902634, 
+                25.005985931326617
+              ], 
+              [
+                -107.09763024932371, 
+                24.998949317286808
+              ], 
+              [
+                -107.09344538449305, 
+                24.985200668240758
+              ], 
+              [
+                -107.09260602337163, 
+                24.97885992709786
+              ], 
+              [
+                -107.0927795473297, 
+                24.97700432587117
+              ], 
+              [
+                -107.09371809330246, 
+                24.976975014031225
+              ], 
+              [
+                -107.1032058546763, 
+                24.98243284329031
+              ], 
+              [
+                -107.11075324117577, 
+                24.988373161570177
+              ], 
+              [
+                -107.11863852035722, 
+                24.992709074322168
+              ], 
+              [
+                -107.12812358864451, 
+                24.992381390632573
+              ], 
+              [
+                -107.13025442574185, 
+                24.992899942781836
+              ], 
+              [
+                -107.14832412548083, 
+                25.010727677868115
+              ], 
+              [
+                -107.1514031743739, 
+                25.015249145002915
+              ], 
+              [
+                -107.14754063148995, 
+                25.02104453946898
+              ], 
+              [
+                -107.14986741068418, 
+                25.031021160661126
+              ], 
+              [
+                -107.16914207610247, 
+                25.051108451988306
+              ], 
+              [
+                -107.1764816157584, 
+                25.07094567960837
+              ], 
+              [
+                -107.18844074261374, 
+                25.07434425233834
+              ], 
+              [
+                -107.19234019567688, 
+                25.073930541358767
+              ], 
+              [
+                -107.19353747302611, 
+                25.07473617997774
+              ], 
+              [
+                -107.20511209361396, 
+                25.099708250491954
+              ], 
+              [
+                -107.19917418445088, 
+                25.11794273076015
+              ], 
+              [
+                -107.19487935483654, 
+                25.13381446299754
+              ], 
+              [
+                -107.19833834803455, 
+                25.1421475427791
+              ], 
+              [
+                -107.20183008709216, 
+                25.145501711193077
+              ], 
+              [
+                -107.20743489923535, 
+                25.14813155062624
+              ], 
+              [
+                -107.21375709166095, 
+                25.14592952430207
+              ], 
+              [
+                -107.21697316749747, 
+                25.146747233929524
+              ], 
+              [
+                -107.21823173880314, 
+                25.14935155226119
+              ], 
+              [
+                -107.21822652347565, 
+                25.150159216524735
+              ], 
+              [
+                -107.21545019549143, 
+                25.15676057172372
+              ], 
+              [
+                -107.20787819302154, 
+                25.154396748688118
+              ], 
+              [
+                -107.20187270527555, 
+                25.150939191636677
+              ], 
+              [
+                -107.19802470878473, 
+                25.147653812883068
+              ], 
+              [
+                -107.18423685606126, 
+                25.139709988764647
+              ], 
+              [
+                -107.1620075469663, 
+                25.140630050088017
+              ], 
+              [
+                -107.15958758013656, 
+                25.147565178961685
+              ], 
+              [
+                -107.15994765576134, 
+                25.150135022594515
+              ], 
+              [
+                -107.16251190417944, 
+                25.155868116092172
+              ], 
+              [
+                -107.18453114240367, 
+                25.170749348586394
+              ], 
+              [
+                -107.19787000479444, 
+                25.171817839914382
+              ], 
+              [
+                -107.24041366463138, 
+                25.187639258813398
+              ], 
+              [
+                -107.25220098678159, 
+                25.194289640864707
+              ], 
+              [
+                -107.25861564062275, 
+                25.208696453444844
+              ], 
+              [
+                -107.2725721841925, 
+                25.21707095025147
+              ], 
+              [
+                -107.2918455600966, 
+                25.221444221817347
+              ], 
+              [
+                -107.30925748902077, 
+                25.23681400904086
+              ], 
+              [
+                -107.33741109346118, 
+                25.280057514388126
+              ], 
+              [
+                -107.33894693704904, 
+                25.283416767378537
+              ], 
+              [
+                -107.33923722009162, 
+                25.287986143973413
+              ], 
+              [
+                -107.33659300127489, 
+                25.30155147968837
+              ], 
+              [
+                -107.3326916407801, 
+                25.314506038983193
+              ], 
+              [
+                -107.3292068329834, 
+                25.31990931407998
+              ], 
+              [
+                -107.32405130617155, 
+                25.322275430791716
+              ], 
+              [
+                -107.32188589724309, 
+                25.322246007961656
+              ], 
+              [
+                -107.29069556742306, 
+                25.315024122165013
+              ], 
+              [
+                -107.28875931052222, 
+                25.313474257515708
+              ], 
+              [
+                -107.28411304376748, 
+                25.313002432760868
+              ], 
+              [
+                -107.28032022104412, 
+                25.31901553829218
+              ], 
+              [
+                -107.28231079247337, 
+                25.325539312475797
+              ], 
+              [
+                -107.28664239302333, 
+                25.328838920536842
+              ], 
+              [
+                -107.29513415535101, 
+                25.328468742496
+              ], 
+              [
+                -107.30651150898291, 
+                25.32914790839896
+              ], 
+              [
+                -107.32460899870222, 
+                25.334713015022796
+              ], 
+              [
+                -107.32473090739904, 
+                25.335718450546356
+              ], 
+              [
+                -107.32000597714774, 
+                25.33879686427164
+              ], 
+              [
+                -107.31325788892907, 
+                25.339708047060807
+              ], 
+              [
+                -107.29906498311954, 
+                25.337377784548366
+              ], 
+              [
+                -107.29468396528814, 
+                25.340071026961613
+              ], 
+              [
+                -107.29270877248779, 
+                25.348054138125633
+              ], 
+              [
+                -107.29666332071119, 
+                25.35279258893546
+              ], 
+              [
+                -107.29857867747842, 
+                25.35630062947394
+              ], 
+              [
+                -107.29449204465723, 
+                25.35656015353344
+              ], 
+              [
+                -107.2813691268827, 
+                25.355095256203853
+              ], 
+              [
+                -107.26258515296462, 
+                25.345682484572464
+              ], 
+              [
+                -107.23391590012078, 
+                25.32575303304996
+              ], 
+              [
+                -107.22215011883596, 
+                25.3174377465199
+              ], 
+              [
+                -107.20878553829857, 
+                25.3038371994602
+              ], 
+              [
+                -107.20825324393826, 
+                25.292699683986154
+              ], 
+              [
+                -107.20697474806757, 
+                25.291848906593316
+              ], 
+              [
+                -107.19678257499167, 
+                25.291047155989958
+              ], 
+              [
+                -107.19057982396437, 
+                25.293934688852
+              ], 
+              [
+                -107.19072170483024, 
+                25.300301039592746
+              ], 
+              [
+                -107.19392782156753, 
+                25.309637472098455
+              ], 
+              [
+                -107.198181680519, 
+                25.316428298717156
+              ], 
+              [
+                -107.20064996459575, 
+                25.31964723638737
+              ], 
+              [
+                -107.20259128875225, 
+                25.32078417536405
+              ], 
+              [
+                -107.20439931071249, 
+                25.321401984119674
+              ], 
+              [
+                -107.20594533930282, 
+                25.320353993465933
+              ], 
+              [
+                -107.2079501922532, 
+                25.32128223570283
+              ], 
+              [
+                -107.21098329112286, 
+                25.32486399809311
+              ], 
+              [
+                -107.21146648470159, 
+                25.327389023721967
+              ], 
+              [
+                -107.20503275504511, 
+                25.33105342888735
+              ], 
+              [
+                -107.19820303393615, 
+                25.330906622517823
+              ], 
+              [
+                -107.1915252836638, 
+                25.32901716840104
+              ], 
+              [
+                -107.17778156212121, 
+                25.330355642840033
+              ], 
+              [
+                -107.17193397240032, 
+                25.329974651205593
+              ], 
+              [
+                -107.16835196192646, 
+                25.325874390348407
+              ], 
+              [
+                -107.16579156545154, 
+                25.3208069655065
+              ], 
+              [
+                -107.16628590527448, 
+                25.309951986116122
+              ], 
+              [
+                -107.1639898902131, 
+                25.305703417875307
+              ], 
+              [
+                -107.15829544497808, 
+                25.29734560608524
+              ], 
+              [
+                -107.15652875200323, 
+                25.293688089381526
+              ], 
+              [
+                -107.15338999196776, 
+                25.28954764133467
+              ], 
+              [
+                -107.14982187461943, 
+                25.290388147926013
+              ], 
+              [
+                -107.13921486739905, 
+                25.279933192356545
+              ], 
+              [
+                -107.13643868649687, 
+                25.27520302030703
+              ], 
+              [
+                -107.1261483666612, 
+                25.263860626342233
+              ], 
+              [
+                -107.12493123186978, 
+                25.261612767104328
+              ], 
+              [
+                -107.12527455445543, 
+                25.25701931664292
+              ], 
+              [
+                -107.1246776230356, 
+                25.251398804857082
+              ], 
+              [
+                -107.15127511982959, 
+                25.238389604895485
+              ], 
+              [
+                -107.14875371386762, 
+                25.208267711697797
+              ], 
+              [
+                -107.14480848004357, 
+                25.19941806133812
+              ], 
+              [
+                -107.13887654737533, 
+                25.197791881020212
+              ], 
+              [
+                -107.13391773523934, 
+                25.19526647844327
+              ], 
+              [
+                -107.11944636505918, 
+                25.184249573693293
+              ], 
+              [
+                -107.11885614577324, 
+                25.183090872162293
+              ], 
+              [
+                -107.12301608010503, 
+                25.180151034311926
+              ], 
+              [
+                -107.12574532975862, 
+                25.17951414186652
+              ], 
+              [
+                -107.13009566432164, 
+                25.17507859241817
+              ], 
+              [
+                -107.1281401349428, 
+                25.149701381702318
+              ], 
+              [
+                -107.11611130695003, 
+                25.14841278813889
+              ], 
+              [
+                -107.10315029045357, 
+                25.14803834796342
+              ], 
+              [
+                -107.09801875195791, 
+                25.14455259393052
+              ], 
+              [
+                -107.09418895625576, 
+                25.139835822793415
+              ], 
+              [
+                -107.08809637914403, 
+                25.098264848487357
+              ], 
+              [
+                -107.08751651426574, 
+                25.085298971371653
+              ], 
+              [
+                -107.09062727634183, 
+                25.085449091912718
+              ], 
+              [
+                -107.0944362438161, 
+                25.08238704375878
+              ], 
+              [
+                -107.09649223150996, 
+                25.0799346347426
+              ], 
+              [
+                -107.09644978304114, 
+                25.07788686573825
+              ], 
+              [
+                -107.0958937897081, 
+                25.07679713236278
+              ], 
+              [
+                -107.08400589056576, 
+                25.065630919868212
+              ], 
+              [
+                -107.07318040774688, 
+                25.035209649126795
+              ], 
+              [
+                -107.07395756917767, 
+                25.028632426311894
+              ], 
+              [
+                -107.07769845653289, 
+                25.02576829956969
+              ], 
+              [
+                -107.08419794848976, 
+                25.024553218392036
+              ], 
+              [
+                -107.086552385085, 
+                25.02508374645948
+              ], 
+              [
+                -107.09426704276103, 
+                25.02987554756488
+              ], 
+              [
+                -107.09723073452787, 
+                25.033733441548154
+              ], 
+              [
+                -107.09842822229915, 
+                25.042532898891082
+              ], 
+              [
+                -107.1001034791828, 
+                25.04844135387162
+              ], 
+              [
+                -107.10269433823846, 
+                25.053342207575234
+              ], 
+              [
+                -107.11125411367172, 
+                25.06571147810904
+              ], 
+              [
+                -107.12340718349779, 
+                25.07567774487189
+              ], 
+              [
+                -107.124848409209, 
+                25.076153635695366
+              ], 
+              [
+                -107.13105691014152, 
+                25.072140490583813
+              ], 
+              [
+                -107.1305306406737, 
+                25.066990838550435
+              ], 
+              [
+                -107.12559529022894, 
+                25.052311655625815
+              ], 
+              [
+                -107.13431288689473, 
+                25.042257507139237
+              ], 
+              [
+                -107.13631333608015, 
+                25.041488750799314
+              ], 
+              [
+                -107.13863563848344, 
+                25.0360117911032
+              ], 
+              [
+                -107.13906138523909, 
+                25.03120464679593
+              ], 
+              [
+                -107.13179418167311, 
+                25.03077078313785
+              ], 
+              [
+                -107.12155061752891, 
+                25.033471927190067
+              ], 
+              [
+                -107.11834599735454, 
+                25.035706585821412
+              ], 
+              [
+                -107.10464539592209, 
+                25.010949221220933
+              ], 
+              [
+                -107.10556042902634, 
+                25.005985931326617
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -106.86430141030493, 
+                25.402249705054004
+              ], 
+              [
+                -106.85981031984163, 
+                25.39775695423304
+              ], 
+              [
+                -106.85825265137801, 
+                25.394159008010092
+              ], 
+              [
+                -106.86765940082675, 
+                25.3747949366742
+              ], 
+              [
+                -106.87055979964866, 
+                25.371334597490687
+              ], 
+              [
+                -106.87105191109819, 
+                25.371653748158195
+              ], 
+              [
+                -106.87579216672212, 
+                25.368464182132854
+              ], 
+              [
+                -106.88217600937891, 
+                25.353637019269595
+              ], 
+              [
+                -106.88421149049499, 
+                25.34532628050367
+              ], 
+              [
+                -106.89641366863479, 
+                25.329361272960245
+              ], 
+              [
+                -106.90091841510475, 
+                25.326247892896916
+              ], 
+              [
+                -106.91676378764753, 
+                25.325297633615797
+              ], 
+              [
+                -106.94253165942762, 
+                25.313821140181428
+              ], 
+              [
+                -106.9426116466042, 
+                25.312833567789387
+              ], 
+              [
+                -106.95667935172325, 
+                25.309461432821813
+              ], 
+              [
+                -106.97119534470741, 
+                25.319912183536907
+              ], 
+              [
+                -106.97755088210123, 
+                25.32949431647825
+              ], 
+              [
+                -106.971946993206, 
+                25.345810346121286
+              ], 
+              [
+                -107.00537016368129, 
+                25.361620529531518
+              ], 
+              [
+                -107.01568651291242, 
+                25.363086406970712
+              ], 
+              [
+                -107.03012164323076, 
+                25.367692247124406
+              ], 
+              [
+                -107.04301573453445, 
+                25.376528099160627
+              ], 
+              [
+                -107.0500709291676, 
+                25.38248015980579
+              ], 
+              [
+                -107.0552666470427, 
+                25.387720205809835
+              ], 
+              [
+                -107.05669138431303, 
+                25.389306117362974
+              ], 
+              [
+                -107.0571616238433, 
+                25.391004806942185
+              ], 
+              [
+                -107.06253053787297, 
+                25.39498468759819
+              ], 
+              [
+                -107.07166632997485, 
+                25.401467950709137
+              ], 
+              [
+                -107.07507200629051, 
+                25.400691431188875
+              ], 
+              [
+                -107.0805287713068, 
+                25.385405222128362
+              ], 
+              [
+                -107.07851400310729, 
+                25.37703630260347
+              ], 
+              [
+                -107.07562655396313, 
+                25.37253327248466
+              ], 
+              [
+                -107.0674758996083, 
+                25.364487472023907
+              ], 
+              [
+                -107.06214057914252, 
+                25.363230142749956
+              ], 
+              [
+                -107.05602129596727, 
+                25.36827258774025
+              ], 
+              [
+                -107.05491127885475, 
+                25.369464725730868
+              ], 
+              [
+                -107.05536489082601, 
+                25.370941201538066
+              ], 
+              [
+                -107.05643515180306, 
+                25.372281641509733
+              ], 
+              [
+                -107.05642501218496, 
+                25.375094960583187
+              ], 
+              [
+                -107.05488216638985, 
+                25.377904770574737
+              ], 
+              [
+                -107.03816457988898, 
+                25.363763743515914
+              ], 
+              [
+                -107.03661203079996, 
+                25.359973663901897
+              ], 
+              [
+                -107.0354779108101, 
+                25.35212574316672
+              ], 
+              [
+                -107.02874052630114, 
+                25.339248118529163
+              ], 
+              [
+                -107.02441409274785, 
+                25.341615110036226
+              ], 
+              [
+                -107.00763072918205, 
+                25.344130942800188
+              ], 
+              [
+                -106.99321796846634, 
+                25.341693615719706
+              ], 
+              [
+                -106.99172978191864, 
+                25.340546842527512
+              ], 
+              [
+                -106.9712187592558, 
+                25.310721754464065
+              ], 
+              [
+                -106.96864584515761, 
+                25.306151477244114
+              ], 
+              [
+                -106.97518647074087, 
+                25.3055377555929
+              ], 
+              [
+                -106.98172944567013, 
+                25.304032490585385
+              ], 
+              [
+                -106.98163912630996, 
+                25.301871600228427
+              ], 
+              [
+                -106.97977842918368, 
+                25.298293478008826
+              ], 
+              [
+                -106.97823091642641, 
+                25.297199726338494
+              ], 
+              [
+                -106.9739499850061, 
+                25.29707291875575
+              ], 
+              [
+                -106.96913422464893, 
+                25.289646653393508
+              ], 
+              [
+                -106.96973384224572, 
+                25.276772645299882
+              ], 
+              [
+                -106.9709599982275, 
+                25.27252711381741
+              ], 
+              [
+                -106.97786045362837, 
+                25.262575843690964
+              ], 
+              [
+                -107.01551491003663, 
+                25.254504127832824
+              ], 
+              [
+                -107.01776839469886, 
+                25.25448872839535
+              ], 
+              [
+                -107.02208490921913, 
+                25.25955672467542
+              ], 
+              [
+                -107.02607358034962, 
+                25.26140095511069
+              ], 
+              [
+                -107.02747570102498, 
+                25.261655342922534
+              ], 
+              [
+                -107.0334355443911, 
+                25.25900970952297
+              ], 
+              [
+                -107.03658285654872, 
+                25.256284999854845
+              ], 
+              [
+                -107.03578878085584, 
+                25.249108166332853
+              ], 
+              [
+                -107.03759825838142, 
+                25.235405635826645
+              ], 
+              [
+                -107.04570236019063, 
+                25.222590399692642
+              ], 
+              [
+                -107.04981915569753, 
+                25.21935054316307
+              ], 
+              [
+                -107.06602729200648, 
+                25.21147436484004
+              ], 
+              [
+                -107.07465979092525, 
+                25.20886913418668
+              ], 
+              [
+                -107.07928586186995, 
+                25.20825693798389
+              ], 
+              [
+                -107.08227258963485, 
+                25.209691623203604
+              ], 
+              [
+                -107.09277943414101, 
+                25.224496115174066
+              ], 
+              [
+                -107.10131095496624, 
+                25.23799953115994
+              ], 
+              [
+                -107.10473015107058, 
+                25.244380634746733
+              ], 
+              [
+                -107.10513646066144, 
+                25.246959755925406
+              ], 
+              [
+                -107.10480053738432, 
+                25.250470253096072
+              ], 
+              [
+                -107.10545801993682, 
+                25.252682714271472
+              ], 
+              [
+                -107.10692647066088, 
+                25.255159710372357
+              ], 
+              [
+                -107.11106057743432, 
+                25.260347271338468
+              ], 
+              [
+                -107.11479974925533, 
+                25.26990786105748
+              ], 
+              [
+                -107.11782908890336, 
+                25.27283002688439
+              ], 
+              [
+                -107.12007325007771, 
+                25.27378681858918
+              ], 
+              [
+                -107.12597326978552, 
+                25.281623022166254
+              ], 
+              [
+                -107.13049796711641, 
+                25.284746781621397
+              ], 
+              [
+                -107.13383692484763, 
+                25.286053769975254
+              ], 
+              [
+                -107.13742959567718, 
+                25.2886924262536
+              ], 
+              [
+                -107.14368778723575, 
+                25.29825304676615
+              ], 
+              [
+                -107.14588623647137, 
+                25.304016584655308
+              ], 
+              [
+                -107.14723611744095, 
+                25.309989782513828
+              ], 
+              [
+                -107.15392628404831, 
+                25.324082635962494
+              ], 
+              [
+                -107.15616260407882, 
+                25.331688166153494
+              ], 
+              [
+                -107.15928327399168, 
+                25.339348332506244
+              ], 
+              [
+                -107.16138527332548, 
+                25.346105278471704
+              ], 
+              [
+                -107.16437803159941, 
+                25.35249753399908
+              ], 
+              [
+                -107.17296890208023, 
+                25.362719399987544
+              ], 
+              [
+                -107.17518260194433, 
+                25.361602837878984
+              ], 
+              [
+                -107.17565880818844, 
+                25.35554075458498
+              ], 
+              [
+                -107.17893714684995, 
+                25.346403972849345
+              ], 
+              [
+                -107.18305510272465, 
+                25.341419956568128
+              ], 
+              [
+                -107.18506137489494, 
+                25.34142847056364
+              ], 
+              [
+                -107.19104418332158, 
+                25.34444452579718
+              ], 
+              [
+                -107.1935148776185, 
+                25.34483623814356
+              ], 
+              [
+                -107.21472205552129, 
+                25.34501662366337
+              ], 
+              [
+                -107.22369494110495, 
+                25.35190689368567
+              ], 
+              [
+                -107.24011045558416, 
+                25.36704162307295
+              ], 
+              [
+                -107.24000187819632, 
+                25.373601000332407
+              ], 
+              [
+                -107.25136740741704, 
+                25.38527516187744
+              ], 
+              [
+                -107.26731823209121, 
+                25.390745115040424
+              ], 
+              [
+                -107.29460319412208, 
+                25.397975344211677
+              ], 
+              [
+                -107.29847923996084, 
+                25.41331513981862
+              ], 
+              [
+                -107.2952614158429, 
+                25.420650078032175
+              ], 
+              [
+                -107.27311941687279, 
+                25.44348244532801
+              ], 
+              [
+                -107.24335228148531, 
+                25.44875421129086
+              ], 
+              [
+                -107.22463591981098, 
+                25.45133815104248
+              ], 
+              [
+                -107.2031232297958, 
+                25.458521246131124
+              ], 
+              [
+                -107.18154651210978, 
+                25.459636804220658
+              ], 
+              [
+                -107.15733228476846, 
+                25.462467049720207
+              ], 
+              [
+                -107.13581120571952, 
+                25.46694241966457
+              ], 
+              [
+                -107.13146506864285, 
+                25.467471764150876
+              ], 
+              [
+                -107.13049620159742, 
+                25.466802801090505
+              ], 
+              [
+                -107.12839970768341, 
+                25.4681792603668
+              ], 
+              [
+                -107.12835388522751, 
+                25.47291876705882
+              ], 
+              [
+                -107.12526790935048, 
+                25.47604291301386
+              ], 
+              [
+                -107.0776678289222, 
+                25.495743851296144
+              ], 
+              [
+                -107.03973805731943, 
+                25.482843503507034
+              ], 
+              [
+                -107.03288416556641, 
+                25.478810585441853
+              ], 
+              [
+                -107.01279768701731, 
+                25.46037743197709
+              ], 
+              [
+                -107.00347972342801, 
+                25.4493657220834
+              ], 
+              [
+                -106.99958515391764, 
+                25.44269040273413
+              ], 
+              [
+                -106.9881323930151, 
+                25.43873016544851
+              ], 
+              [
+                -106.98003061934776, 
+                25.440118202777843
+              ], 
+              [
+                -106.97560633685154, 
+                25.442229865774422
+              ], 
+              [
+                -106.9673961210224, 
+                25.444415058839837
+              ], 
+              [
+                -106.9455025966481, 
+                25.43503025972947
+              ], 
+              [
+                -106.9343289212346, 
+                25.426034055035725
+              ], 
+              [
+                -106.93233357844186, 
+                25.42167692382179
+              ], 
+              [
+                -106.90752628545313, 
+                25.41743507170508
+              ], 
+              [
+                -106.89650263236248, 
+                25.4173270786351
+              ], 
+              [
+                -106.89527364171146, 
+                25.417903903727208
+              ], 
+              [
+                -106.89272159034495, 
+                25.415177121929773
+              ], 
+              [
+                -106.89243931339753, 
+                25.411457612987295
+              ], 
+              [
+                -106.89138244616754, 
+                25.408140354369472
+              ], 
+              [
+                -106.89000073232411, 
+                25.40710050978575
+              ], 
+              [
+                -106.8873762474895, 
+                25.40705759721924
+              ], 
+              [
+                -106.88138963692914, 
+                25.4020837236417
+              ], 
+              [
+                -106.8767768054865, 
+                25.39920853590709
+              ], 
+              [
+                -106.87197281773432, 
+                25.4013543899807
+              ], 
+              [
+                -106.8678034079303, 
+                25.40106185161861
+              ], 
+              [
+                -106.86625070864469, 
+                25.402221236772192
+              ], 
+              [
+                -106.86430141030493, 
+                25.402249705054004
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -106.34436491589184, 
+                24.998809792522238
+              ], 
+              [
+                -106.34274559398473, 
+                24.99962454726655
+              ], 
+              [
+                -106.33933133347873, 
+                24.999860749252523
+              ], 
+              [
+                -106.32703380602358, 
+                24.99654080192806
+              ], 
+              [
+                -106.32059967357569, 
+                24.997987904672193
+              ], 
+              [
+                -106.31737125931674, 
+                24.997848240044743
+              ], 
+              [
+                -106.31500310949276, 
+                24.994148257730185
+              ], 
+              [
+                -106.305868977766, 
+                24.988242018255264
+              ], 
+              [
+                -106.300372694829, 
+                24.987869618099847
+              ], 
+              [
+                -106.29722595966126, 
+                24.990177101087692
+              ], 
+              [
+                -106.29389368614865, 
+                24.99151704244527
+              ], 
+              [
+                -106.28798587147053, 
+                24.99140930038953
+              ], 
+              [
+                -106.27188112386344, 
+                24.9856777107701
+              ], 
+              [
+                -106.26464180685305, 
+                24.980676674529448
+              ], 
+              [
+                -106.26705270495144, 
+                24.978947015150528
+              ], 
+              [
+                -106.26725147840173, 
+                24.97424422014843
+              ], 
+              [
+                -106.24424682137882, 
+                24.94088475975546
+              ], 
+              [
+                -106.23968005673737, 
+                24.930044172398773
+              ], 
+              [
+                -106.23938885854636, 
+                24.917893685862953
+              ], 
+              [
+                -106.24054893124679, 
+                24.914650637937974
+              ], 
+              [
+                -106.26253608522993, 
+                24.90191930643528
+              ], 
+              [
+                -106.26705083111591, 
+                24.902420015928286
+              ], 
+              [
+                -106.27119150933042, 
+                24.904976843553758
+              ], 
+              [
+                -106.27224182741071, 
+                24.90633686786191
+              ], 
+              [
+                -106.2797395722725, 
+                24.906830859869146
+              ], 
+              [
+                -106.28619681439734, 
+                24.892892788555844
+              ], 
+              [
+                -106.28632882366591, 
+                24.887766174402806
+              ], 
+              [
+                -106.28919460213176, 
+                24.88451303575032
+              ], 
+              [
+                -106.29210138770013, 
+                24.884291956284358
+              ], 
+              [
+                -106.30244983338451, 
+                24.888825498639218
+              ], 
+              [
+                -106.30570811197765, 
+                24.891706868955616
+              ], 
+              [
+                -106.30288314847104, 
+                24.90025142872751
+              ], 
+              [
+                -106.30461595571079, 
+                24.919728158812656
+              ], 
+              [
+                -106.31250784761407, 
+                24.925014226507518
+              ], 
+              [
+                -106.31421682513178, 
+                24.933389073882342
+              ], 
+              [
+                -106.31149931942447, 
+                24.937719830207524
+              ], 
+              [
+                -106.3057870884069, 
+                24.93790709779286
+              ], 
+              [
+                -106.30735934004534, 
+                24.946132176161196
+              ], 
+              [
+                -106.31420923139474, 
+                24.948744638717965
+              ], 
+              [
+                -106.32278307430545, 
+                24.951664686843017
+              ], 
+              [
+                -106.32729994402371, 
+                24.954185722935083
+              ], 
+              [
+                -106.34318703428728, 
+                24.97698194337688
+              ], 
+              [
+                -106.34656373502513, 
+                24.99240669522806
+              ], 
+              [
+                -106.34436491589184, 
+                24.998809792522238
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -106.81831354060364, 
+                24.896779535936812
+              ], 
+              [
+                -106.80373559469665, 
+                24.890439735111933
+              ], 
+              [
+                -106.79970078700529, 
+                24.89122386045506
+              ], 
+              [
+                -106.79710745142607, 
+                24.89029868828995
+              ], 
+              [
+                -106.79395282695357, 
+                24.88639607246425
+              ], 
+              [
+                -106.7908463336049, 
+                24.876463282178374
+              ], 
+              [
+                -106.79064766631107, 
+                24.867519143228265
+              ], 
+              [
+                -106.79637782659383, 
+                24.849163180157305
+              ], 
+              [
+                -106.80125378174652, 
+                24.850147768684238
+              ], 
+              [
+                -106.80781663028245, 
+                24.85256298026572
+              ], 
+              [
+                -106.80929771514452, 
+                24.852412918660384
+              ], 
+              [
+                -106.81484620607988, 
+                24.846288944776678
+              ], 
+              [
+                -106.8194403572543, 
+                24.82890489225233
+              ], 
+              [
+                -106.81440635602026, 
+                24.82445246151725
+              ], 
+              [
+                -106.80570752186775, 
+                24.829977512630823
+              ], 
+              [
+                -106.80284426236904, 
+                24.82972487091016
+              ], 
+              [
+                -106.80088673474418, 
+                24.828388540708236
+              ], 
+              [
+                -106.79829637190555, 
+                24.824171761196347
+              ], 
+              [
+                -106.79562197350337, 
+                24.81505802420937
+              ], 
+              [
+                -106.79654507126685, 
+                24.812411288066627
+              ], 
+              [
+                -106.80101510161165, 
+                24.810306117166423
+              ], 
+              [
+                -106.80975848895912, 
+                24.798715737238126
+              ], 
+              [
+                -106.81888931908247, 
+                24.772002390461726
+              ], 
+              [
+                -106.816573155165, 
+                24.757391881498172
+              ], 
+              [
+                -106.81358066680406, 
+                24.74770530514045
+              ], 
+              [
+                -106.80831293183455, 
+                24.734989299994528
+              ], 
+              [
+                -106.80879779581237, 
+                24.733853236343446
+              ], 
+              [
+                -106.81190336973462, 
+                24.73371805580947
+              ], 
+              [
+                -106.81610269048475, 
+                24.73538743892959
+              ], 
+              [
+                -106.84086820605407, 
+                24.750479191680956
+              ], 
+              [
+                -106.84197813315036, 
+                24.752100394413485
+              ], 
+              [
+                -106.84407216961851, 
+                24.756929067657374
+              ], 
+              [
+                -106.84153701629528, 
+                24.76150928085825
+              ], 
+              [
+                -106.83988711108451, 
+                24.771864225934188
+              ], 
+              [
+                -106.83989352829123, 
+                24.779907108891425
+              ], 
+              [
+                -106.84506443864608, 
+                24.795175297618414
+              ], 
+              [
+                -106.85521938706674, 
+                24.806273604028863
+              ], 
+              [
+                -106.88860496929401, 
+                24.811684986496928
+              ], 
+              [
+                -106.89088616764938, 
+                24.810274598971457
+              ], 
+              [
+                -106.89366662093838, 
+                24.807229646466983
+              ], 
+              [
+                -106.89709249954669, 
+                24.80005979181085
+              ], 
+              [
+                -106.90733014268392, 
+                24.835281036204258
+              ], 
+              [
+                -106.90737321512096, 
+                24.83877190910356
+              ], 
+              [
+                -106.90590511294589, 
+                24.84687185300241
+              ], 
+              [
+                -106.87696807965158, 
+                24.857472025090022
+              ], 
+              [
+                -106.86731349888761, 
+                24.856741999872213
+              ], 
+              [
+                -106.86626667204825, 
+                24.856081161510005
+              ], 
+              [
+                -106.8616163331608, 
+                24.843116526046963
+              ], 
+              [
+                -106.86163566299744, 
+                24.840180134077897
+              ], 
+              [
+                -106.86407576550802, 
+                24.835941358382314
+              ], 
+              [
+                -106.86694978712802, 
+                24.834019696203693
+              ], 
+              [
+                -106.86816816727891, 
+                24.831870725693815
+              ], 
+              [
+                -106.86625106372459, 
+                24.822239293292522
+              ], 
+              [
+                -106.86500487124366, 
+                24.819751059177438
+              ], 
+              [
+                -106.86238378156986, 
+                24.818141654521153
+              ], 
+              [
+                -106.85726630485178, 
+                24.819793326891684
+              ], 
+              [
+                -106.85016284344223, 
+                24.831050104282127
+              ], 
+              [
+                -106.84757425993625, 
+                24.842389583898733
+              ], 
+              [
+                -106.8504902555774, 
+                24.8486922393582
+              ], 
+              [
+                -106.85191170167977, 
+                24.858459869597308
+              ], 
+              [
+                -106.85141040686463, 
+                24.859425706096836
+              ], 
+              [
+                -106.83749704846407, 
+                24.85818089605787
+              ], 
+              [
+                -106.83013959012207, 
+                24.86493324284046
+              ], 
+              [
+                -106.83566847821642, 
+                24.869132496130078
+              ], 
+              [
+                -106.83739335180341, 
+                24.878734610767992
+              ], 
+              [
+                -106.83758742750341, 
+                24.882637091019607
+              ], 
+              [
+                -106.83442886784816, 
+                24.8890904455229
+              ], 
+              [
+                -106.81831354060364, 
+                24.896779535936812
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.05103876951779, 
+                25.17254688688422
+              ], 
+              [
+                -107.04573207829881, 
+                25.179445629681325
+              ], 
+              [
+                -107.0431565723204, 
+                25.180909913346255
+              ], 
+              [
+                -107.00145818241317, 
+                25.19172020041987
+              ], 
+              [
+                -106.98117033170503, 
+                25.202395407301122
+              ], 
+              [
+                -106.96997772231052, 
+                25.205216888374107
+              ], 
+              [
+                -106.95810287604391, 
+                25.209837763937482
+              ], 
+              [
+                -106.95129368802756, 
+                25.21777417354305
+              ], 
+              [
+                -106.94020054238095, 
+                25.215522410687875
+              ], 
+              [
+                -106.9100224249123, 
+                25.196925964551582
+              ], 
+              [
+                -106.90537981953649, 
+                25.197382686746078
+              ], 
+              [
+                -106.90200748097588, 
+                25.19487462441782
+              ], 
+              [
+                -106.88322583906361, 
+                25.177022897485358
+              ], 
+              [
+                -106.87938330082119, 
+                25.16423680735763
+              ], 
+              [
+                -106.88014719847725, 
+                25.16138447831964
+              ], 
+              [
+                -106.87853804094946, 
+                25.1573179664686
+              ], 
+              [
+                -106.87709012158041, 
+                25.155075453231056
+              ], 
+              [
+                -106.87352748194715, 
+                25.15178421996426
+              ], 
+              [
+                -106.82427098349274, 
+                25.130840343106062
+              ], 
+              [
+                -106.81434761431757, 
+                25.128669127831593
+              ], 
+              [
+                -106.80152885080177, 
+                25.13741808827841
+              ], 
+              [
+                -106.73256798113815, 
+                25.120799143791633
+              ], 
+              [
+                -106.72643404700857, 
+                25.118730990486387
+              ], 
+              [
+                -106.7249117270472, 
+                25.117788389041877
+              ], 
+              [
+                -106.72295870361042, 
+                25.114487134290705
+              ], 
+              [
+                -106.71277724022158, 
+                25.108294722255497
+              ], 
+              [
+                -106.69468702817153, 
+                25.101757030318723
+              ], 
+              [
+                -106.67900025442138, 
+                25.094210076466165
+              ], 
+              [
+                -106.66383476968655, 
+                25.085248548673576
+              ], 
+              [
+                -106.63968481564918, 
+                25.04734361328526
+              ], 
+              [
+                -106.63784665749286, 
+                25.043420494249343
+              ], 
+              [
+                -106.63325020453223, 
+                25.04248955043787
+              ], 
+              [
+                -106.62550272047397, 
+                25.046505502658803
+              ], 
+              [
+                -106.6210934567558, 
+                25.04976159863052
+              ], 
+              [
+                -106.61754670093916, 
+                25.049685762945106
+              ], 
+              [
+                -106.6083411453846, 
+                25.046024583176855
+              ], 
+              [
+                -106.59033566338705, 
+                25.02798096044774
+              ], 
+              [
+                -106.58601329053668, 
+                25.02198739547722
+              ], 
+              [
+                -106.57327542936468, 
+                25.014348389981347
+              ], 
+              [
+                -106.553939820417, 
+                25.01199953061739
+              ], 
+              [
+                -106.54109347298292, 
+                25.011850280525767
+              ], 
+              [
+                -106.53786843295265, 
+                25.01119068703969
+              ], 
+              [
+                -106.51947947477277, 
+                25.001358004154984
+              ], 
+              [
+                -106.51658836597157, 
+                24.99807533198596
+              ], 
+              [
+                -106.5159778660906, 
+                24.996846246360942
+              ], 
+              [
+                -106.51950199327338, 
+                24.99153940660099
+              ], 
+              [
+                -106.52306118501583, 
+                24.99049166644032
+              ], 
+              [
+                -106.53681881244054, 
+                24.99317768911683
+              ], 
+              [
+                -106.54116628923713, 
+                24.994851613930905
+              ], 
+              [
+                -106.5423384979651, 
+                24.996292328419106
+              ], 
+              [
+                -106.54790107974424, 
+                24.99797206807112
+              ], 
+              [
+                -106.56851591896216, 
+                24.99820009999247
+              ], 
+              [
+                -106.5710011201544, 
+                24.99732970700608
+              ], 
+              [
+                -106.57238204735748, 
+                24.99111326329191
+              ], 
+              [
+                -106.55903047713238, 
+                24.979962148189323
+              ], 
+              [
+                -106.54811966010163, 
+                24.976554982775625
+              ], 
+              [
+                -106.54482564337556, 
+                24.97461053648271
+              ], 
+              [
+                -106.54510754574505, 
+                24.973429753558584
+              ], 
+              [
+                -106.54859653849785, 
+                24.96959645211918
+              ], 
+              [
+                -106.57401342435548, 
+                24.95308318761655
+              ], 
+              [
+                -106.58461231408843, 
+                24.944963571747653
+              ], 
+              [
+                -106.58548341580621, 
+                24.941381514589413
+              ], 
+              [
+                -106.58388642238171, 
+                24.94075528987623
+              ], 
+              [
+                -106.57813859126004, 
+                24.941478860140137
+              ], 
+              [
+                -106.560650084357, 
+                24.94456699109963
+              ], 
+              [
+                -106.5374403275055, 
+                24.965686944340945
+              ], 
+              [
+                -106.53318978379536, 
+                24.96636117927649
+              ], 
+              [
+                -106.51654396640811, 
+                24.953999897761747
+              ], 
+              [
+                -106.50021665735132, 
+                24.956513754921243
+              ], 
+              [
+                -106.48857088301394, 
+                24.945021712576843
+              ], 
+              [
+                -106.47411507007881, 
+                24.932031920549175
+              ], 
+              [
+                -106.46999378093248, 
+                24.93052614370965
+              ], 
+              [
+                -106.46589836411647, 
+                24.932342142484316
+              ], 
+              [
+                -106.46408609322367, 
+                24.926948878948608
+              ], 
+              [
+                -106.4638828413947, 
+                24.92298750772108
+              ], 
+              [
+                -106.46663441465452, 
+                24.910240839352415
+              ], 
+              [
+                -106.47143604428184, 
+                24.907402426605387
+              ], 
+              [
+                -106.48504374796622, 
+                24.904372424427073
+              ], 
+              [
+                -106.48682674430296, 
+                24.899528529330517
+              ], 
+              [
+                -106.47973050484643, 
+                24.895313802807692
+              ], 
+              [
+                -106.47716392114272, 
+                24.89446796503225
+              ], 
+              [
+                -106.45439747049798, 
+                24.896889031852368
+              ], 
+              [
+                -106.44936211145342, 
+                24.900230010924908
+              ], 
+              [
+                -106.44685525451784, 
+                24.904435143488666
+              ], 
+              [
+                -106.44740044536137, 
+                24.912287796099076
+              ], 
+              [
+                -106.44940284640971, 
+                24.917038777639977
+              ], 
+              [
+                -106.45230757437386, 
+                24.91889667530075
+              ], 
+              [
+                -106.45296015576463, 
+                24.921598500868903
+              ], 
+              [
+                -106.4527438142516, 
+                24.928778102457095
+              ], 
+              [
+                -106.45046304597155, 
+                24.93772546603648
+              ], 
+              [
+                -106.44879519368658, 
+                24.939534492079126
+              ], 
+              [
+                -106.44045379606982, 
+                24.93795063906344
+              ], 
+              [
+                -106.43730042849299, 
+                24.936439958736816
+              ], 
+              [
+                -106.42293090261052, 
+                24.91980150818534
+              ], 
+              [
+                -106.41542472427541, 
+                24.90795615863079
+              ], 
+              [
+                -106.41458620359009, 
+                24.90045482362888
+              ], 
+              [
+                -106.42136822397028, 
+                24.889786047356267
+              ], 
+              [
+                -106.42142085817107, 
+                24.88585893811392
+              ], 
+              [
+                -106.41808785530253, 
+                24.879033677095713
+              ], 
+              [
+                -106.41712681029698, 
+                24.878354797081542
+              ], 
+              [
+                -106.4110975913438, 
+                24.87947447436999
+              ], 
+              [
+                -106.4085739002074, 
+                24.863363248790424
+              ], 
+              [
+                -106.41069063392433, 
+                24.837873958964476
+              ], 
+              [
+                -106.41989563040114, 
+                24.82211175396905
+              ], 
+              [
+                -106.42257139080787, 
+                24.819354692033688
+              ], 
+              [
+                -106.42542284707085, 
+                24.817841472618007
+              ], 
+              [
+                -106.42743860659382, 
+                24.812928516674674
+              ], 
+              [
+                -106.42711689981977, 
+                24.811617271908048
+              ], 
+              [
+                -106.4224682784861, 
+                24.806121900170815
+              ], 
+              [
+                -106.40984740460678, 
+                24.810207876843887
+              ], 
+              [
+                -106.40835000150068, 
+                24.8116873510415
+              ], 
+              [
+                -106.40063488705852, 
+                24.83165368054386
+              ], 
+              [
+                -106.39733233003179, 
+                24.8435629720655
+              ], 
+              [
+                -106.39521840184098, 
+                24.845660654314557
+              ], 
+              [
+                -106.38807507424892, 
+                24.847926213518107
+              ], 
+              [
+                -106.38264410645668, 
+                24.846836323074154
+              ], 
+              [
+                -106.34284867822329, 
+                24.778176133986804
+              ], 
+              [
+                -106.34049700229934, 
+                24.77728138219058
+              ], 
+              [
+                -106.33493157354665, 
+                24.77337974866461
+              ], 
+              [
+                -106.325894408821, 
+                24.76213058007566
+              ], 
+              [
+                -106.32307932259192, 
+                24.75693128246688
+              ], 
+              [
+                -106.31947716870583, 
+                24.728423978829404
+              ], 
+              [
+                -106.31901861285762, 
+                24.717445419377526
+              ], 
+              [
+                -106.31960892311675, 
+                24.712555059210935
+              ], 
+              [
+                -106.34384748728726, 
+                24.694845646457313
+              ], 
+              [
+                -106.34975191749834, 
+                24.692944578677082
+              ], 
+              [
+                -106.35579944578234, 
+                24.695826272729402
+              ], 
+              [
+                -106.36261334830785, 
+                24.697124083461365
+              ], 
+              [
+                -106.38016060325667, 
+                24.697699776220674
+              ], 
+              [
+                -106.38173494150476, 
+                24.696714022547237
+              ], 
+              [
+                -106.38424044655974, 
+                24.692277455271118
+              ], 
+              [
+                -106.38404126236429, 
+                24.6913338426691
+              ], 
+              [
+                -106.38161855066146, 
+                24.687384519866647
+              ], 
+              [
+                -106.38186096214483, 
+                24.68689916970144
+              ], 
+              [
+                -106.38875749512012, 
+                24.68502342482775
+              ], 
+              [
+                -106.42108840486223, 
+                24.718981003568047
+              ], 
+              [
+                -106.4217005881617, 
+                24.72026363991052
+              ], 
+              [
+                -106.42065692909587, 
+                24.723580358700005
+              ], 
+              [
+                -106.41861477913677, 
+                24.72445101080092
+              ], 
+              [
+                -106.41624986309455, 
+                24.73020192543948
+              ], 
+              [
+                -106.41787257087664, 
+                24.73570856501901
+              ], 
+              [
+                -106.45095097263079, 
+                24.752201115088734
+              ], 
+              [
+                -106.47043913526785, 
+                24.734631314114452
+              ], 
+              [
+                -106.49510953392526, 
+                24.73877409307966
+              ], 
+              [
+                -106.50345757383539, 
+                24.74126530467885
+              ], 
+              [
+                -106.51448086660473, 
+                24.745600139802672
+              ], 
+              [
+                -106.51605429739747, 
+                24.746925372639534
+              ], 
+              [
+                -106.51885212854062, 
+                24.75066792067109
+              ], 
+              [
+                -106.52023687688306, 
+                24.755787569731563
+              ], 
+              [
+                -106.5173182924654, 
+                24.756688605962182
+              ], 
+              [
+                -106.51335351943575, 
+                24.76077031091836
+              ], 
+              [
+                -106.51360089011987, 
+                24.76272988258695
+              ], 
+              [
+                -106.527976746008, 
+                24.806097651756687
+              ], 
+              [
+                -106.53316423608322, 
+                24.81146679890761
+              ], 
+              [
+                -106.53366902315909, 
+                24.811556614466127
+              ], 
+              [
+                -106.5364484737252, 
+                24.810437394558036
+              ], 
+              [
+                -106.54195890811911, 
+                24.80269157994762
+              ], 
+              [
+                -106.53980422458088, 
+                24.785257846775043
+              ], 
+              [
+                -106.53917203952098, 
+                24.781628068132623
+              ], 
+              [
+                -106.53795468767137, 
+                24.779609110371048
+              ], 
+              [
+                -106.53787959318268, 
+                24.778191232445415
+              ], 
+              [
+                -106.53877219767287, 
+                24.777537613596476
+              ], 
+              [
+                -106.53978704336416, 
+                24.778035399480792
+              ], 
+              [
+                -106.54499047516289, 
+                24.78485920166909
+              ], 
+              [
+                -106.55094255744145, 
+                24.802629682399
+              ], 
+              [
+                -106.55290317262846, 
+                24.81557057648222
+              ], 
+              [
+                -106.552936204868, 
+                24.820033645973595
+              ], 
+              [
+                -106.5523281877892, 
+                24.8230171579378
+              ], 
+              [
+                -106.55164129286305, 
+                24.823516754142723
+              ], 
+              [
+                -106.55232017311717, 
+                24.828331113472533
+              ], 
+              [
+                -106.5641394987711, 
+                24.836479535795025
+              ], 
+              [
+                -106.56883753658661, 
+                24.836869640441275
+              ], 
+              [
+                -106.56997111827677, 
+                24.829354937803146
+              ], 
+              [
+                -106.56626143960627, 
+                24.826962767139435
+              ], 
+              [
+                -106.56541531436093, 
+                24.82567230786484
+              ], 
+              [
+                -106.56201687259708, 
+                24.816337824621034
+              ], 
+              [
+                -106.56662047158153, 
+                24.809551166807175
+              ], 
+              [
+                -106.57257655845488, 
+                24.803269911174628
+              ], 
+              [
+                -106.58121507682284, 
+                24.796991313381696
+              ], 
+              [
+                -106.56789035604598, 
+                24.78578462279368
+              ], 
+              [
+                -106.54953783410602, 
+                24.76817411333638
+              ], 
+              [
+                -106.5469330903405, 
+                24.760479410392243
+              ], 
+              [
+                -106.54706164125581, 
+                24.75896001399323
+              ], 
+              [
+                -106.55368475923183, 
+                24.74066315969809
+              ], 
+              [
+                -106.57215793600054, 
+                24.73872287817132
+              ], 
+              [
+                -106.58698477946663, 
+                24.738106741926995
+              ], 
+              [
+                -106.6035329115539, 
+                24.739562834562367
+              ], 
+              [
+                -106.6082807427114, 
+                24.74249726793997
+              ], 
+              [
+                -106.61291687449705, 
+                24.74784779127658
+              ], 
+              [
+                -106.61352748672164, 
+                24.749551336994507
+              ], 
+              [
+                -106.61000740456866, 
+                24.75500995003218
+              ], 
+              [
+                -106.60983526373575, 
+                24.769959004050115
+              ], 
+              [
+                -106.61024262178087, 
+                24.77675981697487
+              ], 
+              [
+                -106.61331571931947, 
+                24.78034521235599
+              ], 
+              [
+                -106.62593447810363, 
+                24.791752642086873
+              ], 
+              [
+                -106.6444577410673, 
+                24.80286161205337
+              ], 
+              [
+                -106.64582982501709, 
+                24.802960393475562
+              ], 
+              [
+                -106.65664932938793, 
+                24.79961656219209
+              ], 
+              [
+                -106.66045754808677, 
+                24.792453925247074
+              ], 
+              [
+                -106.67404424229915, 
+                24.799360835263276
+              ], 
+              [
+                -106.67821755744528, 
+                24.805169054662723
+              ], 
+              [
+                -106.69570248710889, 
+                24.8039326533088
+              ], 
+              [
+                -106.69637441334469, 
+                24.797264767112175
+              ], 
+              [
+                -106.67098404805189, 
+                24.776204307440853
+              ], 
+              [
+                -106.64432595080656, 
+                24.761153367921686
+              ], 
+              [
+                -106.62855232047315, 
+                24.744316300318168
+              ], 
+              [
+                -106.62571654655294, 
+                24.73946068908114
+              ], 
+              [
+                -106.62843445733627, 
+                24.733013803823948
+              ], 
+              [
+                -106.62852656544075, 
+                24.728636691561736
+              ], 
+              [
+                -106.62439519800364, 
+                24.724203681726436
+              ], 
+              [
+                -106.60843521975468, 
+                24.72506893715251
+              ], 
+              [
+                -106.57529174764842, 
+                24.692456318261666
+              ], 
+              [
+                -106.57433396105841, 
+                24.688057151827348
+              ], 
+              [
+                -106.56459884613572, 
+                24.684217570403156
+              ], 
+              [
+                -106.54411811415778, 
+                24.68059909864181
+              ], 
+              [
+                -106.53902312801094, 
+                24.684363619003072
+              ], 
+              [
+                -106.53928577036451, 
+                24.685651403575676
+              ], 
+              [
+                -106.54465131420777, 
+                24.694864002277885
+              ], 
+              [
+                -106.54722363043, 
+                24.697193198534517
+              ], 
+              [
+                -106.54980662819892, 
+                24.698395859554417
+              ], 
+              [
+                -106.55369214552614, 
+                24.703677519229768
+              ], 
+              [
+                -106.55205127383289, 
+                24.70971217673126
+              ], 
+              [
+                -106.53697391661449, 
+                24.720461426229157
+              ], 
+              [
+                -106.51025987452273, 
+                24.7164288289345
+              ], 
+              [
+                -106.50057618265186, 
+                24.710702298127767
+              ], 
+              [
+                -106.48302218370793, 
+                24.681083261858205
+              ], 
+              [
+                -106.47377125713432, 
+                24.67039518724513
+              ], 
+              [
+                -106.47239371487876, 
+                24.665689335799694
+              ], 
+              [
+                -106.4741308265107, 
+                24.657972616583024
+              ], 
+              [
+                -106.48299930756669, 
+                24.65852258116712
+              ], 
+              [
+                -106.48855636575303, 
+                24.660907879537028
+              ], 
+              [
+                -106.49874685208339, 
+                24.668254291305512
+              ], 
+              [
+                -106.50152193950574, 
+                24.67323411527178
+              ], 
+              [
+                -106.5048676575044, 
+                24.674819937065486
+              ], 
+              [
+                -106.5098996062032, 
+                24.676089676130708
+              ], 
+              [
+                -106.5116771841389, 
+                24.676111913300257
+              ], 
+              [
+                -106.51638391405558, 
+                24.670726696965147
+              ], 
+              [
+                -106.5165951122023, 
+                24.668450626234577
+              ], 
+              [
+                -106.51456621858271, 
+                24.665047919716812
+              ], 
+              [
+                -106.51010313800218, 
+                24.663517950398614
+              ], 
+              [
+                -106.49582681344447, 
+                24.65178414406045
+              ], 
+              [
+                -106.46679604511561, 
+                24.624775860718984
+              ], 
+              [
+                -106.46496996561875, 
+                24.62255038334343
+              ], 
+              [
+                -106.46492459433287, 
+                24.62163302824967
+              ], 
+              [
+                -106.46834930048006, 
+                24.617931423847164
+              ], 
+              [
+                -106.48885933459052, 
+                24.61021081880001
+              ], 
+              [
+                -106.51582306519173, 
+                24.60926044545471
+              ], 
+              [
+                -106.51703573623705, 
+                24.609668581916257
+              ], 
+              [
+                -106.51894250157076, 
+                24.616088069115367
+              ], 
+              [
+                -106.52194839650572, 
+                24.620655102779985
+              ], 
+              [
+                -106.53017091204036, 
+                24.629093460535923
+              ], 
+              [
+                -106.53672498252251, 
+                24.633061705473665
+              ], 
+              [
+                -106.54366512198285, 
+                24.635761204322872
+              ], 
+              [
+                -106.54643758992215, 
+                24.635723148191296
+              ], 
+              [
+                -106.5516688203074, 
+                24.6333099927571
+              ], 
+              [
+                -106.55495498354964, 
+                24.633908364317197
+              ], 
+              [
+                -106.58901991675786, 
+                24.650365655960524
+              ], 
+              [
+                -106.61862941798147, 
+                24.667729970627136
+              ], 
+              [
+                -106.6290885199602, 
+                24.67308605032063
+              ], 
+              [
+                -106.6415817252772, 
+                24.676192747095122
+              ], 
+              [
+                -106.64674276416676, 
+                24.68279473154348
+              ], 
+              [
+                -106.65014369504826, 
+                24.69300863076912
+              ], 
+              [
+                -106.65955608481924, 
+                24.703735758005045
+              ], 
+              [
+                -106.66076510708292, 
+                24.704060697295624
+              ], 
+              [
+                -106.6668398370608, 
+                24.701274796240458
+              ], 
+              [
+                -106.67131489818908, 
+                24.702476523132784
+              ], 
+              [
+                -106.68958254940095, 
+                24.719684383497263
+              ], 
+              [
+                -106.68755694345982, 
+                24.724583597665223
+              ], 
+              [
+                -106.68642857956574, 
+                24.72570120794101
+              ], 
+              [
+                -106.66893374904335, 
+                24.73372915671526
+              ], 
+              [
+                -106.66667646538458, 
+                24.735052583146732
+              ], 
+              [
+                -106.66563927310939, 
+                24.736583940260743
+              ], 
+              [
+                -106.67758165953927, 
+                24.744048875621363
+              ], 
+              [
+                -106.68686776163442, 
+                24.743489200541983
+              ], 
+              [
+                -106.68787252816325, 
+                24.74181864465007
+              ], 
+              [
+                -106.68969335814745, 
+                24.740878846689114
+              ], 
+              [
+                -106.69127155841566, 
+                24.740130103041864
+              ], 
+              [
+                -106.69357681099916, 
+                24.74030065873935
+              ], 
+              [
+                -106.70884251927444, 
+                24.7561461335843
+              ], 
+              [
+                -106.69964191159839, 
+                24.766126836092536
+              ], 
+              [
+                -106.70024954415932, 
+                24.770059474896332
+              ], 
+              [
+                -106.71585881595664, 
+                24.775990718615283
+              ], 
+              [
+                -106.72340788001945, 
+                24.773052535091626
+              ], 
+              [
+                -106.72674468664353, 
+                24.76419085326357
+              ], 
+              [
+                -106.73410514492095, 
+                24.755281670802844
+              ], 
+              [
+                -106.73806670917325, 
+                24.752577462444396
+              ], 
+              [
+                -106.74436025079757, 
+                24.757262115061607
+              ], 
+              [
+                -106.74713717853437, 
+                24.758055648459813
+              ], 
+              [
+                -106.7512412204184, 
+                24.757347438028184
+              ], 
+              [
+                -106.7548395490216, 
+                24.748737004824424
+              ], 
+              [
+                -106.75673057883346, 
+                24.746328577100545
+              ], 
+              [
+                -106.75817854990106, 
+                24.744825478834574
+              ], 
+              [
+                -106.76264110222343, 
+                24.743054770852897
+              ], 
+              [
+                -106.76709493745639, 
+                24.744267165145214
+              ], 
+              [
+                -106.77765341266782, 
+                24.75366396763219
+              ], 
+              [
+                -106.77978591305563, 
+                24.756660043458204
+              ], 
+              [
+                -106.7823011121077, 
+                24.761653269174815
+              ], 
+              [
+                -106.78772234801399, 
+                24.778697836988904
+              ], 
+              [
+                -106.78898414776339, 
+                24.784775022109443
+              ], 
+              [
+                -106.7873706439863, 
+                24.79078010535899
+              ], 
+              [
+                -106.78036815054573, 
+                24.800258473967776
+              ], 
+              [
+                -106.77153228551609, 
+                24.80763950549144
+              ], 
+              [
+                -106.76650550584723, 
+                24.809178899858534
+              ], 
+              [
+                -106.75910345155299, 
+                24.805935284695185
+              ], 
+              [
+                -106.75594484587226, 
+                24.80179444165351
+              ], 
+              [
+                -106.75543477038146, 
+                24.800549398415622
+              ], 
+              [
+                -106.74541412128828, 
+                24.792470305302285
+              ], 
+              [
+                -106.73900497270388, 
+                24.793508202126343
+              ], 
+              [
+                -106.73433976089197, 
+                24.798393828550804
+              ], 
+              [
+                -106.73488894590707, 
+                24.804380019452932
+              ], 
+              [
+                -106.73554724179631, 
+                24.806417667990097
+              ], 
+              [
+                -106.74263138341935, 
+                24.807874150934943
+              ], 
+              [
+                -106.75152122977694, 
+                24.810687107917328
+              ], 
+              [
+                -106.75366291804498, 
+                24.813805391634002
+              ], 
+              [
+                -106.75481096848078, 
+                24.817114636079697
+              ], 
+              [
+                -106.75485453965265, 
+                24.82226825379974
+              ], 
+              [
+                -106.75390317139819, 
+                24.826672136408085
+              ], 
+              [
+                -106.74997488790434, 
+                24.836241348453246
+              ], 
+              [
+                -106.7463073352657, 
+                24.83933946160728
+              ], 
+              [
+                -106.73932293487395, 
+                24.840454483205963
+              ], 
+              [
+                -106.7327001316266, 
+                24.86177741539926
+              ], 
+              [
+                -106.73142571605442, 
+                24.868742028764665
+              ], 
+              [
+                -106.74617099758147, 
+                24.877206427594842
+              ], 
+              [
+                -106.75934825375451, 
+                24.89052988897553
+              ], 
+              [
+                -106.75473365697562, 
+                24.895310522837445
+              ], 
+              [
+                -106.75695792522498, 
+                24.899812546024126
+              ], 
+              [
+                -106.773513866949, 
+                24.916805301968715
+              ], 
+              [
+                -106.78325234035523, 
+                24.923598641785453
+              ], 
+              [
+                -106.79927439361543, 
+                24.906246962810418
+              ], 
+              [
+                -106.80475638863668, 
+                24.90924615957827
+              ], 
+              [
+                -106.81081768212627, 
+                24.91047058881807
+              ], 
+              [
+                -106.83895214573565, 
+                24.911712768784284
+              ], 
+              [
+                -106.85614649944758, 
+                24.91542560521026
+              ], 
+              [
+                -106.85660474110374, 
+                24.915856393110086
+              ], 
+              [
+                -106.85451786642147, 
+                24.928506128927474
+              ], 
+              [
+                -106.8519355709113, 
+                24.928401725056048
+              ], 
+              [
+                -106.8510699241571, 
+                24.92973333443747
+              ], 
+              [
+                -106.85498530441332, 
+                24.941220416987736
+              ], 
+              [
+                -106.87202056015454, 
+                24.95609547009419
+              ], 
+              [
+                -106.87900826052531, 
+                24.95697275321829
+              ], 
+              [
+                -106.89460340786022, 
+                24.957031859216947
+              ], 
+              [
+                -106.89771193837126, 
+                24.951286500482777
+              ], 
+              [
+                -106.89448976036516, 
+                24.946964030570445
+              ], 
+              [
+                -106.88907053009974, 
+                24.944161096949923
+              ], 
+              [
+                -106.888490076904, 
+                24.94440549819281
+              ], 
+              [
+                -106.88631904888317, 
+                24.942160580020808
+              ], 
+              [
+                -106.88300764149534, 
+                24.93697796795083
+              ], 
+              [
+                -106.88231660059246, 
+                24.933993275049875
+              ], 
+              [
+                -106.88790226232294, 
+                24.925343069769752
+              ], 
+              [
+                -106.894869004494, 
+                24.923454340088586
+              ], 
+              [
+                -106.90303399674067, 
+                24.922861115479694
+              ], 
+              [
+                -106.91585558421568, 
+                24.923776953645113
+              ], 
+              [
+                -106.92203318236403, 
+                24.925278391029195
+              ], 
+              [
+                -106.94502134481334, 
+                24.939853400170644
+              ], 
+              [
+                -106.94584409457408, 
+                24.940717630555664
+              ], 
+              [
+                -106.94319139132644, 
+                24.962546064881234
+              ], 
+              [
+                -106.94063205135446, 
+                24.96802087523013
+              ], 
+              [
+                -106.92638410402618, 
+                24.97723787635897
+              ], 
+              [
+                -106.92290389894386, 
+                24.977294785826377
+              ], 
+              [
+                -106.89058509789663, 
+                24.973151967665988
+              ], 
+              [
+                -106.8840046656393, 
+                24.975019622976582
+              ], 
+              [
+                -106.87022828066101, 
+                24.98974646406594
+              ], 
+              [
+                -106.86927751610645, 
+                24.991159300835115
+              ], 
+              [
+                -106.86785332181064, 
+                24.998440059333664
+              ], 
+              [
+                -106.88085752887334, 
+                25.015980392637353
+              ], 
+              [
+                -106.88559930270215, 
+                25.01849407932909
+              ], 
+              [
+                -106.89423147200594, 
+                25.016587525839974
+              ], 
+              [
+                -106.89645870091604, 
+                25.01445124726088
+              ], 
+              [
+                -106.90382831257237, 
+                25.012999212413582
+              ], 
+              [
+                -106.92978394571183, 
+                25.03240849993472
+              ], 
+              [
+                -106.95045019168658, 
+                25.05736736916563
+              ], 
+              [
+                -106.95235882801317, 
+                25.036167729031483
+              ], 
+              [
+                -106.96243518214685, 
+                25.00240630208088
+              ], 
+              [
+                -106.97473923841254, 
+                24.99171793991206
+              ], 
+              [
+                -107.00058658213023, 
+                24.985343519876437
+              ], 
+              [
+                -107.01168613208436, 
+                24.991635050657028
+              ], 
+              [
+                -107.01675475820768, 
+                24.996612604809066
+              ], 
+              [
+                -107.01406848117409, 
+                25.00332851988292
+              ], 
+              [
+                -107.01090337920795, 
+                25.005412419204845
+              ], 
+              [
+                -107.00793219655539, 
+                25.01086345620514
+              ], 
+              [
+                -107.00702306500433, 
+                25.02486759949954
+              ], 
+              [
+                -107.00759554444986, 
+                25.055589820690987
+              ], 
+              [
+                -107.00647568223793, 
+                25.0586692618609
+              ], 
+              [
+                -107.00255425711545, 
+                25.06487713144607
+              ], 
+              [
+                -106.99007267660728, 
+                25.10121083301781
+              ], 
+              [
+                -106.99260455823477, 
+                25.109057158083093
+              ], 
+              [
+                -106.99681722020773, 
+                25.111100714073107
+              ], 
+              [
+                -107.0127655852548, 
+                25.114665077209118
+              ], 
+              [
+                -107.02289052173583, 
+                25.11303997326904
+              ], 
+              [
+                -107.05276142656903, 
+                25.154698784624767
+              ], 
+              [
+                -107.05453353454882, 
+                25.16214006710606
+              ], 
+              [
+                -107.05302741482261, 
+                25.162842265196275
+              ], 
+              [
+                -107.05098801012254, 
+                25.1626880531073
+              ], 
+              [
+                -107.04949893469332, 
+                25.169851412615788
+              ], 
+              [
+                -107.0502058647647, 
+                25.17090520530443
+              ], 
+              [
+                -107.05103876951779, 
+                25.17254688688422
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.00674329061933, 
+                24.971712103657836
+              ], 
+              [
+                -107.00295869657951, 
+                24.967576585668123
+              ], 
+              [
+                -107.00155080551355, 
+                24.965260746648216
+              ], 
+              [
+                -106.99952069005525, 
+                24.957562114479398
+              ], 
+              [
+                -106.99814925163643, 
+                24.94771153736294
+              ], 
+              [
+                -106.99888250934156, 
+                24.945840007998903
+              ], 
+              [
+                -107.00521828867898, 
+                24.942526566715543
+              ], 
+              [
+                -107.00770239303587, 
+                24.942525988981473
+              ], 
+              [
+                -107.01426174422237, 
+                24.9454187356196
+              ], 
+              [
+                -107.01834283796569, 
+                24.948059884753434
+              ], 
+              [
+                -107.02783782774259, 
+                24.95683215771903
+              ], 
+              [
+                -107.03084196884943, 
+                24.963561983502643
+              ], 
+              [
+                -107.03119393498169, 
+                24.965953846568695
+              ], 
+              [
+                -107.03066315734632, 
+                24.96783640926441
+              ], 
+              [
+                -107.02417404266608, 
+                24.979217814001508
+              ], 
+              [
+                -107.02085758056108, 
+                24.981395817216647
+              ], 
+              [
+                -107.017705412122, 
+                24.98227301035013
+              ], 
+              [
+                -107.01443500571939, 
+                24.981530207063482
+              ], 
+              [
+                -107.00840943050464, 
+                24.974452499918154
+              ], 
+              [
+                -107.00674329061933, 
+                24.971712103657836
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.82019060996869, 
+                25.5796124112676
+              ], 
+              [
+                -107.82057599156805, 
+                25.575600747193864
+              ], 
+              [
+                -107.81821393935498, 
+                25.57507042997353
+              ], 
+              [
+                -107.81464397986147, 
+                25.57533529991582
+              ], 
+              [
+                -107.79665660792978, 
+                25.570769833813504
+              ], 
+              [
+                -107.78983907016404, 
+                25.565719944324133
+              ], 
+              [
+                -107.78097469173953, 
+                25.566745166281752
+              ], 
+              [
+                -107.75396415554684, 
+                25.56346456071144
+              ], 
+              [
+                -107.75156804152334, 
+                25.55949518268897
+              ], 
+              [
+                -107.74540109137068, 
+                25.554055477492724
+              ], 
+              [
+                -107.73197956976288, 
+                25.546950829919776
+              ], 
+              [
+                -107.72141851976804, 
+                25.546517072064635
+              ], 
+              [
+                -107.6994758097491, 
+                25.552408948660304
+              ], 
+              [
+                -107.69048171201268, 
+                25.56185227928926
+              ], 
+              [
+                -107.6821639290204, 
+                25.574239649797455
+              ], 
+              [
+                -107.67367620313821, 
+                25.57630687725334
+              ], 
+              [
+                -107.66335426471547, 
+                25.577348368552297
+              ], 
+              [
+                -107.66128463133899, 
+                25.579922514769287
+              ], 
+              [
+                -107.65719787862173, 
+                25.59048732984037
+              ], 
+              [
+                -107.64883149877362, 
+                25.594796881125937
+              ], 
+              [
+                -107.64564834976728, 
+                25.594120438907744
+              ], 
+              [
+                -107.64032639481582, 
+                25.588220807128295
+              ], 
+              [
+                -107.6311636114787, 
+                25.574238364384954
+              ], 
+              [
+                -107.62698399185513, 
+                25.564392585588855
+              ], 
+              [
+                -107.60338624848643, 
+                25.546198677003186
+              ], 
+              [
+                -107.5957987105619, 
+                25.537547437047948
+              ], 
+              [
+                -107.56803575558341, 
+                25.50117381551175
+              ], 
+              [
+                -107.56713064474434, 
+                25.492880455727224
+              ], 
+              [
+                -107.57158605297126, 
+                25.48144447958498
+              ], 
+              [
+                -107.57685031189884, 
+                25.47632801353376
+              ], 
+              [
+                -107.60314370146055, 
+                25.46100576068844
+              ], 
+              [
+                -107.61852629095618, 
+                25.458767731161114
+              ], 
+              [
+                -107.62041317353845, 
+                25.458701000364016
+              ], 
+              [
+                -107.62240760939486, 
+                25.459531517979894
+              ], 
+              [
+                -107.63651069070123, 
+                25.466699164381268
+              ], 
+              [
+                -107.67090252818615, 
+                25.47458446611958
+              ], 
+              [
+                -107.69582009755916, 
+                25.478131625796493
+              ], 
+              [
+                -107.71538828435855, 
+                25.48016991332382
+              ], 
+              [
+                -107.74021593049153, 
+                25.484100751417078
+              ], 
+              [
+                -107.75306461188038, 
+                25.487492103895175
+              ], 
+              [
+                -107.77067392051813, 
+                25.491169273882978
+              ], 
+              [
+                -107.7733561763259, 
+                25.48455801797301
+              ], 
+              [
+                -107.78379552771231, 
+                25.473911461146017
+              ], 
+              [
+                -107.79656156323964, 
+                25.48039032552436
+              ], 
+              [
+                -107.80166157834256, 
+                25.475521355472175
+              ], 
+              [
+                -107.79697470642287, 
+                25.47057177608625
+              ], 
+              [
+                -107.79363363175925, 
+                25.46781476270572
+              ], 
+              [
+                -107.781276364345, 
+                25.46338826933895
+              ], 
+              [
+                -107.76058404934207, 
+                25.459822837504888
+              ], 
+              [
+                -107.75636293074578, 
+                25.463293244409265
+              ], 
+              [
+                -107.7525203754981, 
+                25.46938328142717
+              ], 
+              [
+                -107.74656237903399, 
+                25.46849117289675
+              ], 
+              [
+                -107.74098983451022, 
+                25.465884730361516
+              ], 
+              [
+                -107.74137294553987, 
+                25.462034052723624
+              ], 
+              [
+                -107.7432688770517, 
+                25.46132229295397
+              ], 
+              [
+                -107.74886332586638, 
+                25.455854320705953
+              ], 
+              [
+                -107.75092128565299, 
+                25.452941939434663
+              ], 
+              [
+                -107.75247314380404, 
+                25.446777973853326
+              ], 
+              [
+                -107.74924813151081, 
+                25.439896456804004
+              ], 
+              [
+                -107.7403830806045, 
+                25.429443635313685
+              ], 
+              [
+                -107.74037113847538, 
+                25.428270584176584
+              ], 
+              [
+                -107.73961546761804, 
+                25.426577317822463
+              ], 
+              [
+                -107.73543706019568, 
+                25.42543775825526
+              ], 
+              [
+                -107.72612760931918, 
+                25.41570862738708
+              ], 
+              [
+                -107.72383214746651, 
+                25.410833509153726
+              ], 
+              [
+                -107.7214878604261, 
+                25.404273627867386
+              ], 
+              [
+                -107.72175366966873, 
+                25.402685928530047
+              ], 
+              [
+                -107.73154540226888, 
+                25.393112645936608
+              ], 
+              [
+                -107.73140897706921, 
+                25.39113677279491
+              ], 
+              [
+                -107.72956303362939, 
+                25.388488613127304
+              ], 
+              [
+                -107.72852245502374, 
+                25.385844160810716
+              ], 
+              [
+                -107.72933825573966, 
+                25.38260772344346
+              ], 
+              [
+                -107.72851048181836, 
+                25.37833465293368
+              ], 
+              [
+                -107.73234477541558, 
+                25.374580117423832
+              ], 
+              [
+                -107.73644183433582, 
+                25.373177941236964
+              ], 
+              [
+                -107.73680173610327, 
+                25.371948152317213
+              ], 
+              [
+                -107.73628230689222, 
+                25.36991042304226
+              ], 
+              [
+                -107.73548170971844, 
+                25.36809871377895
+              ], 
+              [
+                -107.73431209937343, 
+                25.366955567700664
+              ], 
+              [
+                -107.73386831849223, 
+                25.365389507408796
+              ], 
+              [
+                -107.73753153913242, 
+                25.360739234045315
+              ], 
+              [
+                -107.73614043017334, 
+                25.35725445861271
+              ], 
+              [
+                -107.73886184356996, 
+                25.352184927429498
+              ], 
+              [
+                -107.74211115158512, 
+                25.353604876104992
+              ], 
+              [
+                -107.75478434393159, 
+                25.35248710418288
+              ], 
+              [
+                -107.77332118326144, 
+                25.347433259529428
+              ], 
+              [
+                -107.78767301800784, 
+                25.349245008005347
+              ], 
+              [
+                -107.79169284618801, 
+                25.35242968908332
+              ], 
+              [
+                -107.79543894882798, 
+                25.361973210799373
+              ], 
+              [
+                -107.80961702348449, 
+                25.36433241550125
+              ], 
+              [
+                -107.81767410083783, 
+                25.367541279849334
+              ], 
+              [
+                -107.83514892313863, 
+                25.376087692886752
+              ], 
+              [
+                -107.84183528136504, 
+                25.38061796766263
+              ], 
+              [
+                -107.84182020051568, 
+                25.385648577337545
+              ], 
+              [
+                -107.8400792964496, 
+                25.39296760755392
+              ], 
+              [
+                -107.8631916714847, 
+                25.405938889480552
+              ], 
+              [
+                -107.87824228800933, 
+                25.411143616809255
+              ], 
+              [
+                -107.8851973525357, 
+                25.411905537584794
+              ], 
+              [
+                -107.8982274711791, 
+                25.406348898279504
+              ], 
+              [
+                -107.90520129906785, 
+                25.409282370145206
+              ], 
+              [
+                -107.9375335716973, 
+                25.43386906911032
+              ], 
+              [
+                -107.95342876166501, 
+                25.447142114353113
+              ], 
+              [
+                -107.95370656014785, 
+                25.453198786545574
+              ], 
+              [
+                -107.95646390299227, 
+                25.45612552578212
+              ], 
+              [
+                -107.97876234169183, 
+                25.470306970486348
+              ], 
+              [
+                -107.98064731914435, 
+                25.470983777345094
+              ], 
+              [
+                -107.98120481910995, 
+                25.471184007879263
+              ], 
+              [
+                -107.98539838737632, 
+                25.469261619829783
+              ], 
+              [
+                -108.00473938470736, 
+                25.470893657705844
+              ], 
+              [
+                -108.0117792928895, 
+                25.476503545088836
+              ], 
+              [
+                -108.01895573742917, 
+                25.485587158178504
+              ], 
+              [
+                -108.03357030640757, 
+                25.487546859690486
+              ], 
+              [
+                -108.03842163168912, 
+                25.484393973093336
+              ], 
+              [
+                -108.04289228666431, 
+                25.485490223157328
+              ], 
+              [
+                -108.04484828359986, 
+                25.488773698081964
+              ], 
+              [
+                -108.06431448848498, 
+                25.533887647583388
+              ], 
+              [
+                -108.06927622071491, 
+                25.54574904981615
+              ], 
+              [
+                -108.0711846482623, 
+                25.551698881132136
+              ], 
+              [
+                -108.07060344695782, 
+                25.560204810818373
+              ], 
+              [
+                -108.06433222719758, 
+                25.568771084162577
+              ], 
+              [
+                -108.05825198211697, 
+                25.56984670655616
+              ], 
+              [
+                -108.05591560341995, 
+                25.568717127454388
+              ], 
+              [
+                -108.05215351319872, 
+                25.587979375286476
+              ], 
+              [
+                -108.05766294875453, 
+                25.623890354981786
+              ], 
+              [
+                -108.0690586860821, 
+                25.6404614439036
+              ], 
+              [
+                -108.07010643232233, 
+                25.647940315594212
+              ], 
+              [
+                -108.05604237112948, 
+                25.655526469286443
+              ], 
+              [
+                -108.05018561503428, 
+                25.656749745176924
+              ], 
+              [
+                -108.04831447649131, 
+                25.653800948531842
+              ], 
+              [
+                -108.04695250488726, 
+                25.649100414483893
+              ], 
+              [
+                -108.0405128174394, 
+                25.639385159895717
+              ], 
+              [
+                -108.03610584437459, 
+                25.634015917329023
+              ], 
+              [
+                -108.01578819587621, 
+                25.61624121635878
+              ], 
+              [
+                -108.00722728935406, 
+                25.623697863264645
+              ], 
+              [
+                -108.00791939718991, 
+                25.62496324058897
+              ], 
+              [
+                -108.01032580406945, 
+                25.627513402871006
+              ], 
+              [
+                -108.01147172441341, 
+                25.627114646638706
+              ], 
+              [
+                -108.01285755473855, 
+                25.627633356279794
+              ], 
+              [
+                -108.01332783144596, 
+                25.63064763011959
+              ], 
+              [
+                -108.01266721737073, 
+                25.64992571736907
+              ], 
+              [
+                -108.00872508497471, 
+                25.65461487445435
+              ], 
+              [
+                -107.9850159926114, 
+                25.66315114183515
+              ], 
+              [
+                -107.98153307623123, 
+                25.657895373995913
+              ], 
+              [
+                -107.96835484313094, 
+                25.66237783909003
+              ], 
+              [
+                -107.96799753550523, 
+                25.667239802202
+              ], 
+              [
+                -107.96322031515743, 
+                25.685891205773107
+              ], 
+              [
+                -107.95123107399534, 
+                25.711078896447948
+              ], 
+              [
+                -107.94727131361711, 
+                25.71533274259681
+              ], 
+              [
+                -107.94316506618509, 
+                25.716771726294045
+              ], 
+              [
+                -107.93480941039095, 
+                25.710472270773884
+              ], 
+              [
+                -107.92304026644182, 
+                25.702966119470144
+              ], 
+              [
+                -107.91634367078501, 
+                25.70196531902592
+              ], 
+              [
+                -107.89650056495735, 
+                25.706896239155956
+              ], 
+              [
+                -107.88551210882817, 
+                25.70747738392972
+              ], 
+              [
+                -107.86516165934377, 
+                25.70322595103313
+              ], 
+              [
+                -107.85894253868543, 
+                25.70066813945514
+              ], 
+              [
+                -107.85621235466145, 
+                25.698939654273527
+              ], 
+              [
+                -107.8521907755636, 
+                25.67666172246638
+              ], 
+              [
+                -107.85181523617764, 
+                25.667289318835493
+              ], 
+              [
+                -107.85785245081685, 
+                25.654316408389075
+              ], 
+              [
+                -107.86281761098564, 
+                25.629244131104233
+              ], 
+              [
+                -107.8513519298375, 
+                25.61360926600862
+              ], 
+              [
+                -107.84558242753168, 
+                25.61138937468713
+              ], 
+              [
+                -107.84035647692714, 
+                25.616399351812824
+              ], 
+              [
+                -107.83943803638792, 
+                25.62082422563642
+              ], 
+              [
+                -107.83917044840122, 
+                25.62971792516736
+              ], 
+              [
+                -107.84167687707969, 
+                25.632751241519127
+              ], 
+              [
+                -107.844794302077, 
+                25.640161427898498
+              ], 
+              [
+                -107.84483857503403, 
+                25.64133214796682
+              ], 
+              [
+                -107.84424437942504, 
+                25.65035705238981
+              ], 
+              [
+                -107.8389199631008, 
+                25.66563607391159
+              ], 
+              [
+                -107.8388638590868, 
+                25.689868746758727
+              ], 
+              [
+                -107.83399797676029, 
+                25.697153803149384
+              ], 
+              [
+                -107.83242678210011, 
+                25.698545563435644
+              ], 
+              [
+                -107.8290160071169, 
+                25.699516562348432
+              ], 
+              [
+                -107.79246446998897, 
+                25.693346215787702
+              ], 
+              [
+                -107.78925675002387, 
+                25.695039632886523
+              ], 
+              [
+                -107.75389548546868, 
+                25.707529880863195
+              ], 
+              [
+                -107.74705703277354, 
+                25.70710662455083
+              ], 
+              [
+                -107.74537255010681, 
+                25.704831586710647
+              ], 
+              [
+                -107.73985720847548, 
+                25.700699471770093
+              ], 
+              [
+                -107.71690438693324, 
+                25.706123079858155
+              ], 
+              [
+                -107.71433692228335, 
+                25.706200007339806
+              ], 
+              [
+                -107.70839814394652, 
+                25.703721780722876
+              ], 
+              [
+                -107.70169968665496, 
+                25.699232453861075
+              ], 
+              [
+                -107.68796015693154, 
+                25.68455068102134
+              ], 
+              [
+                -107.68057902397857, 
+                25.665953748964593
+              ], 
+              [
+                -107.6789490061605, 
+                25.659998720609675
+              ], 
+              [
+                -107.68845604463098, 
+                25.63643469038572
+              ], 
+              [
+                -107.7271657808474, 
+                25.638753203766214
+              ], 
+              [
+                -107.73307253692646, 
+                25.63251890193922
+              ], 
+              [
+                -107.72747870088878, 
+                25.626214998832427
+              ], 
+              [
+                -107.72133384832665, 
+                25.624211092407425
+              ], 
+              [
+                -107.71673402004235, 
+                25.623201415755137
+              ], 
+              [
+                -107.69879130438333, 
+                25.623923101054423
+              ], 
+              [
+                -107.67533938171687, 
+                25.618142880013597
+              ], 
+              [
+                -107.66298137620876, 
+                25.61423348024731
+              ], 
+              [
+                -107.65960027896594, 
+                25.610450735240608
+              ], 
+              [
+                -107.67086608773101, 
+                25.59263489458196
+              ], 
+              [
+                -107.70867177876555, 
+                25.571606261184716
+              ], 
+              [
+                -107.71504316494297, 
+                25.569888812882862
+              ], 
+              [
+                -107.74050073503516, 
+                25.571707826173494
+              ], 
+              [
+                -107.75045435457594, 
+                25.5748290195533
+              ], 
+              [
+                -107.7667439445484, 
+                25.581878372352218
+              ], 
+              [
+                -107.7750541197985, 
+                25.582680821263637
+              ], 
+              [
+                -107.80137650069503, 
+                25.582588127969984
+              ], 
+              [
+                -107.81351112827598, 
+                25.58551008414236
+              ], 
+              [
+                -107.81990072203459, 
+                25.582634124296405
+              ], 
+              [
+                -107.82019060996869, 
+                25.5796124112676
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.25200703642881, 
+                24.984043456377652
+              ], 
+              [
+                -107.25174860027981, 
+                24.98269349137118
+              ], 
+              [
+                -107.25307667844677, 
+                24.981988789129048
+              ], 
+              [
+                -107.26204845974888, 
+                24.982023738465244
+              ], 
+              [
+                -107.29788015176963, 
+                24.994664630764557
+              ], 
+              [
+                -107.31147736789762, 
+                25.010314662839797
+              ], 
+              [
+                -107.32105614672095, 
+                25.02063443812027
+              ], 
+              [
+                -107.3493263072727, 
+                25.032644956459094
+              ], 
+              [
+                -107.36226456836856, 
+                25.041049173662458
+              ], 
+              [
+                -107.38688806130524, 
+                25.06351467178967
+              ], 
+              [
+                -107.40322287841313, 
+                25.07674574819608
+              ], 
+              [
+                -107.41592496023658, 
+                25.084533316762844
+              ], 
+              [
+                -107.41725621849643, 
+                25.084791552393906
+              ], 
+              [
+                -107.42047627107364, 
+                25.089538853151396
+              ], 
+              [
+                -107.42552980910361, 
+                25.10153528977663
+              ], 
+              [
+                -107.42553753540645, 
+                25.107980620592464
+              ], 
+              [
+                -107.42371672975213, 
+                25.114534912927688
+              ], 
+              [
+                -107.42041952354028, 
+                25.119989108247676
+              ], 
+              [
+                -107.41765013375407, 
+                25.118824449760204
+              ], 
+              [
+                -107.41466642896116, 
+                25.119557218471613
+              ], 
+              [
+                -107.41190999665093, 
+                25.124525747587743
+              ], 
+              [
+                -107.41511217165906, 
+                25.129206903454936
+              ], 
+              [
+                -107.419859152583, 
+                25.13309389491094
+              ], 
+              [
+                -107.42466950925305, 
+                25.131932125437842
+              ], 
+              [
+                -107.43158046717902, 
+                25.128013282280847
+              ], 
+              [
+                -107.43115762489961, 
+                25.1235312053904
+              ], 
+              [
+                -107.43535638308578, 
+                25.11554746893387
+              ], 
+              [
+                -107.43963218087639, 
+                25.109542530868186
+              ], 
+              [
+                -107.44184101919802, 
+                25.107389613594464
+              ], 
+              [
+                -107.44531671220221, 
+                25.10560166277209
+              ], 
+              [
+                -107.44744719237403, 
+                25.10713746265308
+              ], 
+              [
+                -107.46286526696244, 
+                25.122904026291067
+              ], 
+              [
+                -107.46325028549158, 
+                25.124238824592936
+              ], 
+              [
+                -107.47504894675039, 
+                25.13160240190002
+              ], 
+              [
+                -107.48812040628017, 
+                25.13030590547148
+              ], 
+              [
+                -107.50253584917982, 
+                25.130279173616326
+              ], 
+              [
+                -107.51454254532437, 
+                25.136952761961023
+              ], 
+              [
+                -107.52086875649022, 
+                25.14242981958072
+              ], 
+              [
+                -107.52213446913153, 
+                25.144528346122286
+              ], 
+              [
+                -107.51879553908513, 
+                25.14997232510526
+              ], 
+              [
+                -107.51589280826259, 
+                25.152499731105493
+              ], 
+              [
+                -107.51777045554734, 
+                25.15654609571377
+              ], 
+              [
+                -107.52644502634845, 
+                25.1572643354949
+              ], 
+              [
+                -107.53455575764909, 
+                25.149877962823187
+              ], 
+              [
+                -107.54678035125028, 
+                25.14802183823634
+              ], 
+              [
+                -107.5564318046921, 
+                25.158928036908023
+              ], 
+              [
+                -107.55872538894695, 
+                25.165849363430365
+              ], 
+              [
+                -107.56354176605826, 
+                25.1970603734601
+              ], 
+              [
+                -107.56016985814638, 
+                25.202407458888608
+              ], 
+              [
+                -107.55969852398985, 
+                25.209672263761828
+              ], 
+              [
+                -107.56929872678742, 
+                25.216404531415993
+              ], 
+              [
+                -107.57853034852978, 
+                25.220289224394186
+              ], 
+              [
+                -107.58526636563326, 
+                25.23140254581224
+              ], 
+              [
+                -107.58432452177374, 
+                25.242274257693616
+              ], 
+              [
+                -107.58031132480754, 
+                25.2440273348442
+              ], 
+              [
+                -107.57785044448516, 
+                25.246539323250335
+              ], 
+              [
+                -107.5782044385109, 
+                25.24957186665968
+              ], 
+              [
+                -107.58247984323403, 
+                25.264697280630504
+              ], 
+              [
+                -107.5883942048767, 
+                25.264576526752514
+              ], 
+              [
+                -107.58999251129329, 
+                25.25934010464103
+              ], 
+              [
+                -107.59640762624353, 
+                25.25819364625739
+              ], 
+              [
+                -107.59879343986722, 
+                25.26083196717416
+              ], 
+              [
+                -107.59804837286327, 
+                25.263714996584543
+              ], 
+              [
+                -107.59879986220554, 
+                25.267452066065736
+              ], 
+              [
+                -107.60487493003058, 
+                25.27236422953881
+              ], 
+              [
+                -107.60755658907325, 
+                25.27414728694626
+              ], 
+              [
+                -107.60878308943322, 
+                25.27421242471755
+              ], 
+              [
+                -107.61367900938306, 
+                25.276705866545907
+              ], 
+              [
+                -107.61643354908355, 
+                25.280750804705423
+              ], 
+              [
+                -107.61776854566797, 
+                25.28272211032791
+              ], 
+              [
+                -107.61903833535472, 
+                25.284724263024724
+              ], 
+              [
+                -107.62266516072738, 
+                25.292270984205803
+              ], 
+              [
+                -107.62587724962512, 
+                25.2961202116434
+              ], 
+              [
+                -107.63272061251386, 
+                25.302328264489397
+              ], 
+              [
+                -107.63102250728646, 
+                25.3118432298551
+              ], 
+              [
+                -107.62768125536212, 
+                25.320025557995653
+              ], 
+              [
+                -107.63054482219881, 
+                25.322796686543885
+              ], 
+              [
+                -107.6337916444221, 
+                25.332161759637135
+              ], 
+              [
+                -107.63264538210748, 
+                25.335526870249204
+              ], 
+              [
+                -107.63406971196842, 
+                25.33997010661491
+              ], 
+              [
+                -107.63679883438616, 
+                25.341213062833337
+              ], 
+              [
+                -107.64635336727852, 
+                25.338042401500303
+              ], 
+              [
+                -107.64823836943303, 
+                25.33695858118216
+              ], 
+              [
+                -107.65063106127873, 
+                25.33374002308817
+              ], 
+              [
+                -107.65527632386066, 
+                25.331958550884632
+              ], 
+              [
+                -107.66160450125291, 
+                25.332771674590216
+              ], 
+              [
+                -107.66351062803982, 
+                25.332397054115845
+              ], 
+              [
+                -107.66860632291751, 
+                25.328437297486342
+              ], 
+              [
+                -107.66904174245036, 
+                25.324841316620045
+              ], 
+              [
+                -107.67547290023951, 
+                25.31477728149959
+              ], 
+              [
+                -107.67935626386908, 
+                25.317282753055327
+              ], 
+              [
+                -107.67980305668132, 
+                25.318175203894405
+              ], 
+              [
+                -107.68369311869488, 
+                25.321907672419798
+              ], 
+              [
+                -107.69747972318358, 
+                25.330668591749678
+              ], 
+              [
+                -107.69887305259275, 
+                25.33238174425215
+              ], 
+              [
+                -107.69884187420271, 
+                25.334225771356532
+              ], 
+              [
+                -107.70046755597785, 
+                25.336817653578166
+              ], 
+              [
+                -107.70934798829953, 
+                25.33800595331883
+              ], 
+              [
+                -107.71146081603035, 
+                25.338862031321984
+              ], 
+              [
+                -107.71266683338979, 
+                25.340801606648455
+              ], 
+              [
+                -107.72424673542677, 
+                25.343558560225386
+              ], 
+              [
+                -107.72926369981168, 
+                25.34799466664267
+              ], 
+              [
+                -107.73319105522879, 
+                25.349708526998743
+              ], 
+              [
+                -107.73424585546933, 
+                25.352029513791823
+              ], 
+              [
+                -107.73348400986269, 
+                25.354604253202105
+              ], 
+              [
+                -107.72850512846132, 
+                25.360209983141026
+              ], 
+              [
+                -107.72358893015897, 
+                25.361537349866556
+              ], 
+              [
+                -107.72317309232298, 
+                25.365613423826197
+              ], 
+              [
+                -107.72336919295083, 
+                25.367429536946783
+              ], 
+              [
+                -107.7241371173955, 
+                25.369483607920483
+              ], 
+              [
+                -107.72684169961674, 
+                25.371211800278964
+              ], 
+              [
+                -107.727866355647, 
+                25.373182065277614
+              ], 
+              [
+                -107.72624996229348, 
+                25.374192769249266
+              ], 
+              [
+                -107.72349007043007, 
+                25.380716783725745
+              ], 
+              [
+                -107.72069667710358, 
+                25.38551045901871
+              ], 
+              [
+                -107.71757633911302, 
+                25.387327524968867
+              ], 
+              [
+                -107.71581131118013, 
+                25.39278704200047
+              ], 
+              [
+                -107.71806716207826, 
+                25.396789407038085
+              ], 
+              [
+                -107.71893244081727, 
+                25.397129125060346
+              ], 
+              [
+                -107.7194844211495, 
+                25.396472405319965
+              ], 
+              [
+                -107.7199082168637, 
+                25.39679790245149
+              ], 
+              [
+                -107.7203727172949, 
+                25.39753547779581
+              ], 
+              [
+                -107.72084825195174, 
+                25.39846845672486
+              ], 
+              [
+                -107.72043761721626, 
+                25.399704890990954
+              ], 
+              [
+                -107.72024747792307, 
+                25.400635751000447
+              ], 
+              [
+                -107.71663175869408, 
+                25.40225580916226
+              ], 
+              [
+                -107.71613002726605, 
+                25.404513413980297
+              ], 
+              [
+                -107.72201479864759, 
+                25.417223550714674
+              ], 
+              [
+                -107.73149965966168, 
+                25.426700309250883
+              ], 
+              [
+                -107.72656089737038, 
+                25.429424617032055
+              ], 
+              [
+                -107.72338978627057, 
+                25.442004536370224
+              ], 
+              [
+                -107.71784493411242, 
+                25.457335094421193
+              ], 
+              [
+                -107.71394990610371, 
+                25.46286828613646
+              ], 
+              [
+                -107.69759797168447, 
+                25.465390492587307
+              ], 
+              [
+                -107.69508778914593, 
+                25.464917842091896
+              ], 
+              [
+                -107.6861087434805, 
+                25.460800574007415
+              ], 
+              [
+                -107.67506505612624, 
+                25.45471664187736
+              ], 
+              [
+                -107.67470331730175, 
+                25.453825279675954
+              ], 
+              [
+                -107.67494140961918, 
+                25.44690295322576
+              ], 
+              [
+                -107.67017511578736, 
+                25.443417004874746
+              ], 
+              [
+                -107.6623802164067, 
+                25.44573178131326
+              ], 
+              [
+                -107.65860478751476, 
+                25.44893122780911
+              ], 
+              [
+                -107.65569700900919, 
+                25.453477253631494
+              ], 
+              [
+                -107.65141308242467, 
+                25.4549983309241
+              ], 
+              [
+                -107.63483220068956, 
+                25.44888075292085
+              ], 
+              [
+                -107.63505189128784, 
+                25.445498548468628
+              ], 
+              [
+                -107.63127429493049, 
+                25.442968927106246
+              ], 
+              [
+                -107.62695328473662, 
+                25.441773374186596
+              ], 
+              [
+                -107.60468103901724, 
+                25.44243910043405
+              ], 
+              [
+                -107.5988231336496, 
+                25.44485629092994
+              ], 
+              [
+                -107.59639595614424, 
+                25.44722725784586
+              ], 
+              [
+                -107.57440601183517, 
+                25.45880831659587
+              ], 
+              [
+                -107.56655007277644, 
+                25.461512168411414
+              ], 
+              [
+                -107.55455194862036, 
+                25.46212571429512
+              ], 
+              [
+                -107.53067839479549, 
+                25.439563426923087
+              ], 
+              [
+                -107.52326570598682, 
+                25.42191793350509
+              ], 
+              [
+                -107.52579279919556, 
+                25.417822825696703
+              ], 
+              [
+                -107.52840771617542, 
+                25.41968465753861
+              ], 
+              [
+                -107.54573703201481, 
+                25.42621611049581
+              ], 
+              [
+                -107.55414100356509, 
+                25.422480037585903
+              ], 
+              [
+                -107.56034287219659, 
+                25.418425495160495
+              ], 
+              [
+                -107.55991046835955, 
+                25.41614512609775
+              ], 
+              [
+                -107.55715718907123, 
+                25.410275263083175
+              ], 
+              [
+                -107.55601715699808, 
+                25.40916403881542
+              ], 
+              [
+                -107.55396529627485, 
+                25.408665557285058
+              ], 
+              [
+                -107.54863524813847, 
+                25.411534763441963
+              ], 
+              [
+                -107.53579082510531, 
+                25.409955887549003
+              ], 
+              [
+                -107.52536816676952, 
+                25.40322323555309
+              ], 
+              [
+                -107.51901826401549, 
+                25.398155740433392
+              ], 
+              [
+                -107.45965963797526, 
+                25.330953002635194
+              ], 
+              [
+                -107.44547571099206, 
+                25.31360249775621
+              ], 
+              [
+                -107.43675037825683, 
+                25.296722425467483
+              ], 
+              [
+                -107.4330406762348, 
+                25.28864943025975
+              ], 
+              [
+                -107.42423366212563, 
+                25.283139591190988
+              ], 
+              [
+                -107.4129637141444, 
+                25.274397978512834
+              ], 
+              [
+                -107.40319498623819, 
+                25.2539614964682
+              ], 
+              [
+                -107.39215185434524, 
+                25.246400916922408
+              ], 
+              [
+                -107.38538188528396, 
+                25.23936984449428
+              ], 
+              [
+                -107.36266946251166, 
+                25.21213293910179
+              ], 
+              [
+                -107.34616866532158, 
+                25.188482011580124
+              ], 
+              [
+                -107.3392494856398, 
+                25.177426569440055
+              ], 
+              [
+                -107.32411100031915, 
+                25.142695712436044
+              ], 
+              [
+                -107.32303756427257, 
+                25.136701169867937
+              ], 
+              [
+                -107.32384470982393, 
+                25.135225509552857
+              ], 
+              [
+                -107.33147510373755, 
+                25.13266863789613
+              ], 
+              [
+                -107.32758056552225, 
+                25.125952961766842
+              ], 
+              [
+                -107.32180281617002, 
+                25.118204168647168
+              ], 
+              [
+                -107.31881645917512, 
+                25.115371768915338
+              ], 
+              [
+                -107.31747204125588, 
+                25.114696714722022
+              ], 
+              [
+                -107.31103436553853, 
+                25.107843350648352
+              ], 
+              [
+                -107.29494821368574, 
+                25.08208803978991
+              ], 
+              [
+                -107.2753904400697, 
+                25.0463121446166
+              ], 
+              [
+                -107.2690313784376, 
+                25.034019234492582
+              ], 
+              [
+                -107.2649636661711, 
+                25.026155939809975
+              ], 
+              [
+                -107.2550913295237, 
+                24.99690673539091
+              ], 
+              [
+                -107.25311788245781, 
+                24.989841833062354
+              ], 
+              [
+                -107.25200703642881, 
+                24.984043456377652
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.72768717735035, 
+                25.33452594243839
+              ], 
+              [
+                -107.72623778444661, 
+                25.331970139007826
+              ], 
+              [
+                -107.72537047727941, 
+                25.328852039265723
+              ], 
+              [
+                -107.71483089621307, 
+                25.317579616778307
+              ], 
+              [
+                -107.70496474927826, 
+                25.3151872456283
+              ], 
+              [
+                -107.70367632706224, 
+                25.313897802435317
+              ], 
+              [
+                -107.70293183179672, 
+                25.312494171440704
+              ], 
+              [
+                -107.70242835420427, 
+                25.30932633371699
+              ], 
+              [
+                -107.70187155366344, 
+                25.308373666717983
+              ], 
+              [
+                -107.70085278682228, 
+                25.307600171963
+              ], 
+              [
+                -107.69513806087302, 
+                25.306851876373667
+              ], 
+              [
+                -107.68899026731755, 
+                25.30353606721079
+              ], 
+              [
+                -107.68765653123872, 
+                25.3012521936556
+              ], 
+              [
+                -107.67716383909134, 
+                25.28932580607679
+              ], 
+              [
+                -107.67061227132129, 
+                25.28088473966355
+              ], 
+              [
+                -107.66928951067364, 
+                25.27546355297066
+              ], 
+              [
+                -107.66772667633863, 
+                25.274298753573216
+              ], 
+              [
+                -107.66577218742002, 
+                25.273886642234178
+              ], 
+              [
+                -107.66494551828315, 
+                25.278263911963545
+              ], 
+              [
+                -107.66362405638502, 
+                25.278861277640207
+              ], 
+              [
+                -107.66071349777458, 
+                25.278634902189616
+              ], 
+              [
+                -107.65866825139945, 
+                25.2745988691611
+              ], 
+              [
+                -107.65408584014905, 
+                25.260133055288897
+              ], 
+              [
+                -107.65181322004659, 
+                25.25624396201503
+              ], 
+              [
+                -107.65068911632022, 
+                25.220600142895957
+              ], 
+              [
+                -107.65262733848549, 
+                25.21601690973942
+              ], 
+              [
+                -107.65986204277512, 
+                25.21367124576575
+              ], 
+              [
+                -107.67454768236274, 
+                25.202103960311575
+              ], 
+              [
+                -107.67665319973534, 
+                25.200013738846085
+              ], 
+              [
+                -107.67610198801326, 
+                25.197428078183677
+              ], 
+              [
+                -107.67654153735513, 
+                25.19564708399273
+              ], 
+              [
+                -107.68588149979338, 
+                25.186638370638423
+              ], 
+              [
+                -107.6945770797493, 
+                25.185938406664857
+              ], 
+              [
+                -107.69569291439218, 
+                25.18653607202984
+              ], 
+              [
+                -107.70122848399151, 
+                25.20019280920267
+              ], 
+              [
+                -107.70733465953792, 
+                25.217993873400907
+              ], 
+              [
+                -107.70996714615997, 
+                25.227037822750475
+              ], 
+              [
+                -107.7065836554054, 
+                25.23637911604102
+              ], 
+              [
+                -107.70122672313269, 
+                25.241829552447374
+              ], 
+              [
+                -107.69827037486235, 
+                25.247593840649788
+              ], 
+              [
+                -107.6999285132174, 
+                25.262150219903948
+              ], 
+              [
+                -107.70064311237633, 
+                25.263643652965705
+              ], 
+              [
+                -107.70727693394542, 
+                25.267236522853295
+              ], 
+              [
+                -107.7103780038477, 
+                25.26802607797552
+              ], 
+              [
+                -107.71658231551308, 
+                25.267380877440342
+              ], 
+              [
+                -107.71914232236135, 
+                25.264016189208927
+              ], 
+              [
+                -107.72839243590417, 
+                25.269272359440418
+              ], 
+              [
+                -107.74310820074126, 
+                25.293118460580043
+              ], 
+              [
+                -107.75174921998587, 
+                25.313004195507613
+              ], 
+              [
+                -107.75687271042702, 
+                25.3167822573979
+              ], 
+              [
+                -107.76150506845244, 
+                25.317406735580665
+              ], 
+              [
+                -107.76298627342538, 
+                25.31828548932405
+              ], 
+              [
+                -107.76479317745793, 
+                25.32131933622089
+              ], 
+              [
+                -107.76392242107666, 
+                25.324777196514884
+              ], 
+              [
+                -107.7614693335626, 
+                25.32686520613053
+              ], 
+              [
+                -107.74494452290742, 
+                25.336661441819352
+              ], 
+              [
+                -107.73685180688204, 
+                25.337825303248533
+              ], 
+              [
+                -107.73211449663006, 
+                25.33678140245924
+              ], 
+              [
+                -107.72768717735035, 
+                25.33452594243839
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -110.90366944620884, 
+                25.676280544635976
+              ], 
+              [
+                -110.90128110980275, 
+                25.67426226152757
+              ], 
+              [
+                -110.89849769040843, 
+                25.66820893178662
+              ], 
+              [
+                -110.89809699030224, 
+                25.656413434027
+              ], 
+              [
+                -110.90332060616527, 
+                25.641491725691036
+              ], 
+              [
+                -110.90114391717492, 
+                25.62251904071619
+              ], 
+              [
+                -110.89631133869614, 
+                25.610104439164807
+              ], 
+              [
+                -110.90498576506154, 
+                25.59670601942679
+              ], 
+              [
+                -110.90724925645739, 
+                25.591519916624332
+              ], 
+              [
+                -110.90300806156561, 
+                25.58474586769317
+              ], 
+              [
+                -110.89198996596197, 
+                25.58881227454926
+              ], 
+              [
+                -110.88945345367462, 
+                25.586841536226522
+              ], 
+              [
+                -110.88672088809045, 
+                25.58053209221576
+              ], 
+              [
+                -110.88728083326477, 
+                25.566825510654223
+              ], 
+              [
+                -110.88978566788462, 
+                25.550899823498927
+              ], 
+              [
+                -110.89361684196398, 
+                25.53854428558943
+              ], 
+              [
+                -110.88702885433428, 
+                25.52141260564627
+              ], 
+              [
+                -110.88592750929973, 
+                25.51329013378627
+              ], 
+              [
+                -110.8857153188502, 
+                25.50097071732425
+              ], 
+              [
+                -110.88827157184716, 
+                25.478351773157282
+              ], 
+              [
+                -110.88923057801028, 
+                25.476995598539098
+              ], 
+              [
+                -110.89389919842277, 
+                25.478857324738065
+              ], 
+              [
+                -110.9043934358314, 
+                25.48447555964825
+              ], 
+              [
+                -110.91211970208101, 
+                25.489701977326106
+              ], 
+              [
+                -110.90953721631558, 
+                25.49165327078892
+              ], 
+              [
+                -110.9089831646311, 
+                25.493151389623655
+              ], 
+              [
+                -110.9101268001897, 
+                25.49606007105485
+              ], 
+              [
+                -110.9171146898204, 
+                25.498211298473432
+              ], 
+              [
+                -110.92983677740968, 
+                25.498113185224817
+              ], 
+              [
+                -110.93742357233386, 
+                25.494820197197104
+              ], 
+              [
+                -110.9406939276068, 
+                25.496855792123203
+              ], 
+              [
+                -110.94151477417654, 
+                25.50383999062901
+              ], 
+              [
+                -110.94182799504772, 
+                25.51801936962113
+              ], 
+              [
+                -110.94026053687823, 
+                25.585866986644568
+              ], 
+              [
+                -110.93904410934744, 
+                25.615779112502974
+              ], 
+              [
+                -110.93779689445292, 
+                25.61956235315547
+              ], 
+              [
+                -110.93696977743292, 
+                25.620154613105605
+              ], 
+              [
+                -110.93325767270242, 
+                25.617705462707423
+              ], 
+              [
+                -110.9335178868988, 
+                25.608330096594713
+              ], 
+              [
+                -110.92516559041148, 
+                25.603194908027707
+              ], 
+              [
+                -110.92245888461879, 
+                25.604169306972857
+              ], 
+              [
+                -110.91843365861794, 
+                25.60858528827655
+              ], 
+              [
+                -110.91764862699605, 
+                25.610726102706813
+              ], 
+              [
+                -110.92147363969525, 
+                25.61691722456253
+              ], 
+              [
+                -110.92421063393483, 
+                25.61843564590439
+              ], 
+              [
+                -110.92832321253105, 
+                25.63167739044185
+              ], 
+              [
+                -110.92815865201896, 
+                25.63464798419425
+              ], 
+              [
+                -110.91274352570909, 
+                25.666811841414905
+              ], 
+              [
+                -110.90457957164, 
+                25.676490721364534
+              ], 
+              [
+                -110.90366944620884, 
+                25.676280544635976
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -110.89477236239573, 
+                25.736411890638685
+              ], 
+              [
+                -110.88340515964416, 
+                25.74491477063211
+              ], 
+              [
+                -110.8610539488673, 
+                25.731197101099937
+              ], 
+              [
+                -110.8589966089241, 
+                25.72890969137884
+              ], 
+              [
+                -110.86251908577982, 
+                25.714401528674795
+              ], 
+              [
+                -110.86346188126417, 
+                25.712123336521447
+              ], 
+              [
+                -110.88641756272769, 
+                25.70043675316178
+              ], 
+              [
+                -110.89260934006731, 
+                25.69863511749342
+              ], 
+              [
+                -110.90084046233864, 
+                25.71303822396658
+              ], 
+              [
+                -110.90198211221764, 
+                25.7279124447486
+              ], 
+              [
+                -110.9015181242757, 
+                25.731413029031057
+              ], 
+              [
+                -110.89591852289033, 
+                25.73624304386806
+              ], 
+              [
+                -110.89477236239573, 
+                25.736411890638685
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -111.0094186480309, 
+                25.721346120699458
+              ], 
+              [
+                -110.99868591517686, 
+                25.721571065669426
+              ], 
+              [
+                -110.98119731312718, 
+                25.709024607205684
+              ], 
+              [
+                -110.98026205427009, 
+                25.707585430469983
+              ], 
+              [
+                -110.98091156388945, 
+                25.699124676956636
+              ], 
+              [
+                -110.98176202126155, 
+                25.69580028933569
+              ], 
+              [
+                -110.9936529088522, 
+                25.684947157993907
+              ], 
+              [
+                -111.00421545279258, 
+                25.690379670393554
+              ], 
+              [
+                -111.02177032170914, 
+                25.70950200457051
+              ], 
+              [
+                -111.01365588603537, 
+                25.724894532887408
+              ], 
+              [
+                -111.01132178373001, 
+                25.72355316796219
+              ], 
+              [
+                -111.0094186480309, 
+                25.721346120699458
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -110.85742841782753, 
+                25.850247176910035
+              ], 
+              [
+                -110.8538830486629, 
+                25.85088750890703
+              ], 
+              [
+                -110.84413788589045, 
+                25.848002058416323
+              ], 
+              [
+                -110.84206887220732, 
+                25.845938115003296
+              ], 
+              [
+                -110.8432000425426, 
+                25.836409537419666
+              ], 
+              [
+                -110.84879699684235, 
+                25.826651799565536
+              ], 
+              [
+                -110.85143829038182, 
+                25.823893908833476
+              ], 
+              [
+                -110.86329550442692, 
+                25.823827211781474
+              ], 
+              [
+                -110.86984437433752, 
+                25.825654209434177
+              ], 
+              [
+                -110.87784400654317, 
+                25.824692319663313
+              ], 
+              [
+                -110.88992008561652, 
+                25.82137112132585
+              ], 
+              [
+                -110.89390084638974, 
+                25.8216737776027
+              ], 
+              [
+                -110.89335026079391, 
+                25.823303843189514
+              ], 
+              [
+                -110.87732657636249, 
+                25.84279254696809
+              ], 
+              [
+                -110.87369105507562, 
+                25.843144940533477
+              ], 
+              [
+                -110.86927149466561, 
+                25.84174103636014
+              ], 
+              [
+                -110.86629983116408, 
+                25.84303612831466
+              ], 
+              [
+                -110.85742841782753, 
+                25.850247176910035
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -110.78936990641687, 
+                25.574845163190425
+              ], 
+              [
+                -110.78598901768116, 
+                25.581212055191266
+              ], 
+              [
+                -110.7857241842918, 
+                25.589021397466485
+              ], 
+              [
+                -110.78648689433273, 
+                25.58993265762182
+              ], 
+              [
+                -110.78917117144887, 
+                25.59059163017605
+              ], 
+              [
+                -110.79245797014632, 
+                25.58893813987289
+              ], 
+              [
+                -110.79356059165382, 
+                25.589632256365885
+              ], 
+              [
+                -110.79538236455684, 
+                25.59270921427194
+              ], 
+              [
+                -110.79576075755564, 
+                25.596935860702448
+              ], 
+              [
+                -110.79543621898581, 
+                25.598220557549684
+              ], 
+              [
+                -110.7852554856929, 
+                25.613995987293755
+              ], 
+              [
+                -110.77891895257092, 
+                25.62007968493952
+              ], 
+              [
+                -110.77557966192037, 
+                25.620040821843364
+              ], 
+              [
+                -110.77358417041229, 
+                25.61888515117416
+              ], 
+              [
+                -110.77221421165052, 
+                25.61651746075768
+              ], 
+              [
+                -110.77213297820202, 
+                25.613795860175987
+              ], 
+              [
+                -110.77363660521772, 
+                25.610122356680627
+              ], 
+              [
+                -110.76971505047243, 
+                25.604285568034758
+              ], 
+              [
+                -110.76463293216656, 
+                25.604465774396676
+              ], 
+              [
+                -110.75217663822673, 
+                25.610759514220522
+              ], 
+              [
+                -110.75055198512061, 
+                25.610919029510125
+              ], 
+              [
+                -110.74965797402903, 
+                25.609856026918997
+              ], 
+              [
+                -110.74887028638139, 
+                25.607247053641835
+              ], 
+              [
+                -110.74963034873574, 
+                25.60134622015812
+              ], 
+              [
+                -110.76147912017254, 
+                25.58298798207554
+              ], 
+              [
+                -110.76267193821809, 
+                25.57689640567466
+              ], 
+              [
+                -110.76245889985894, 
+                25.575508607926672
+              ], 
+              [
+                -110.75567222926534, 
+                25.572000791395425
+              ], 
+              [
+                -110.7529520084484, 
+                25.575181110231707
+              ], 
+              [
+                -110.73672695816832, 
+                25.600349575512794
+              ], 
+              [
+                -110.73328142540959, 
+                25.603418477935403
+              ], 
+              [
+                -110.72709361119539, 
+                25.60485382709806
+              ], 
+              [
+                -110.72542121717801, 
+                25.60294524903111
+              ], 
+              [
+                -110.72360334342041, 
+                25.597665905382716
+              ], 
+              [
+                -110.72763870183287, 
+                25.583128726376216
+              ], 
+              [
+                -110.73402809194444, 
+                25.563095342628973
+              ], 
+              [
+                -110.7563579238519, 
+                25.530402737891357
+              ], 
+              [
+                -110.76607487625265, 
+                25.513940251443007
+              ], 
+              [
+                -110.77203697223301, 
+                25.494189829539735
+              ], 
+              [
+                -110.78640796949098, 
+                25.455647206796407
+              ], 
+              [
+                -110.78700934137622, 
+                25.440241743004854
+              ], 
+              [
+                -110.78609622255966, 
+                25.437261899762543
+              ], 
+              [
+                -110.79281525917712, 
+                25.42096233420001
+              ], 
+              [
+                -110.80212197968689, 
+                25.40880938550281
+              ], 
+              [
+                -110.8029528884401, 
+                25.406480626193822
+              ], 
+              [
+                -110.80227295696452, 
+                25.40018863819166
+              ], 
+              [
+                -110.79947008856321, 
+                25.395698129014306
+              ], 
+              [
+                -110.79781549310891, 
+                25.394518549417604
+              ], 
+              [
+                -110.79508851406729, 
+                25.39446804336384
+              ], 
+              [
+                -110.79370859678865, 
+                25.395229851666887
+              ], 
+              [
+                -110.78687012017939, 
+                25.394650733604113
+              ], 
+              [
+                -110.78544725426877, 
+                25.393970300011805
+              ], 
+              [
+                -110.78273975079206, 
+                25.378991025620557
+              ], 
+              [
+                -110.78447646704714, 
+                25.373455120588275
+              ], 
+              [
+                -110.79650508028499, 
+                25.36121717205102
+              ], 
+              [
+                -110.7985138904758, 
+                25.361012837963994
+              ], 
+              [
+                -110.79880339449481, 
+                25.362830454800985
+              ], 
+              [
+                -110.7998580710056, 
+                25.364452620958627
+              ], 
+              [
+                -110.80715572840109, 
+                25.365711379209337
+              ], 
+              [
+                -110.81267205169188, 
+                25.364072853401645
+              ], 
+              [
+                -110.81796212446511, 
+                25.36128452080911
+              ], 
+              [
+                -110.82237312295068, 
+                25.352604971502487
+              ], 
+              [
+                -110.82253520836618, 
+                25.349111785375836
+              ], 
+              [
+                -110.82191397644203, 
+                25.34713093234799
+              ], 
+              [
+                -110.82164295170412, 
+                25.343742905016374
+              ], 
+              [
+                -110.82381322810237, 
+                25.33785861744624
+              ], 
+              [
+                -110.8271680306582, 
+                25.33571822402327
+              ], 
+              [
+                -110.83464962100233, 
+                25.33374198642127
+              ], 
+              [
+                -110.83751088525453, 
+                25.334374616300334
+              ], 
+              [
+                -110.83886860789224, 
+                25.333425697146456
+              ], 
+              [
+                -110.85052180191836, 
+                25.32043793516579
+              ], 
+              [
+                -110.85328668236319, 
+                25.31374952911826
+              ], 
+              [
+                -110.86182498111422, 
+                25.307874425584878
+              ], 
+              [
+                -110.87158343953092, 
+                25.309175184373565
+              ], 
+              [
+                -110.87525042622781, 
+                25.311626473340144
+              ], 
+              [
+                -110.87646307076885, 
+                25.313065689537133
+              ], 
+              [
+                -110.87887348262109, 
+                25.335940224332994
+              ], 
+              [
+                -110.87829357592561, 
+                25.343926268300454
+              ], 
+              [
+                -110.87590546035203, 
+                25.349701297817088
+              ], 
+              [
+                -110.87220587653997, 
+                25.354180887855836
+              ], 
+              [
+                -110.86179483764569, 
+                25.358097193706197
+              ], 
+              [
+                -110.86230565660316, 
+                25.36815106429929
+              ], 
+              [
+                -110.8668213859019, 
+                25.37346349119205
+              ], 
+              [
+                -110.86756385922558, 
+                25.379466397952985
+              ], 
+              [
+                -110.85776064220772, 
+                25.397576566029485
+              ], 
+              [
+                -110.85561267421208, 
+                25.398958811070962
+              ], 
+              [
+                -110.8501874983104, 
+                25.398070422589477
+              ], 
+              [
+                -110.84638566913738, 
+                25.398808596467326
+              ], 
+              [
+                -110.84560278555885, 
+                25.399644737629064
+              ], 
+              [
+                -110.84191538245766, 
+                25.408251743389467
+              ], 
+              [
+                -110.84350172489162, 
+                25.410926628940093
+              ], 
+              [
+                -110.84271445664956, 
+                25.420256727932493
+              ], 
+              [
+                -110.82903192092766, 
+                25.44628981990188
+              ], 
+              [
+                -110.81600407134444, 
+                25.462575729817424
+              ], 
+              [
+                -110.81145702989565, 
+                25.469393746303076
+              ], 
+              [
+                -110.80863060277534, 
+                25.474224755575698
+              ], 
+              [
+                -110.80498943689149, 
+                25.483256522828974
+              ], 
+              [
+                -110.80315319666309, 
+                25.490464242698646
+              ], 
+              [
+                -110.79710020963209, 
+                25.52308397577191
+              ], 
+              [
+                -110.79794633482132, 
+                25.528717788935747
+              ], 
+              [
+                -110.80116095670259, 
+                25.533408104299262
+              ], 
+              [
+                -110.79995450152339, 
+                25.53766242378268
+              ], 
+              [
+                -110.79383920877544, 
+                25.541472702212488
+              ], 
+              [
+                -110.78723181930356, 
+                25.544403296371026
+              ], 
+              [
+                -110.78642284128283, 
+                25.545956508684412
+              ], 
+              [
+                -110.78406859289562, 
+                25.557346695244295
+              ], 
+              [
+                -110.78350169170079, 
+                25.565192669477153
+              ], 
+              [
+                -110.78936990641687, 
+                25.574845163190425
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -117.98572899153736, 
+                20.650147875378927
+              ], 
+              [
+                -117.98661094671952, 
+                20.64460010135107
+              ], 
+              [
+                -117.99345010829808, 
+                20.63360029907278
+              ], 
+              [
+                -118.00127439591198, 
+                20.631511675711202
+              ], 
+              [
+                -118.0037303912828, 
+                20.636225625207167
+              ], 
+              [
+                -118.00651089708367, 
+                20.6590960011418
+              ], 
+              [
+                -118.00378083457612, 
+                20.66315955899777
+              ], 
+              [
+                -117.99739377172102, 
+                20.66944929632324
+              ], 
+              [
+                -117.99237555066945, 
+                20.669083608242723
+              ], 
+              [
+                -117.98732437336582, 
+                20.660637427356345
+              ], 
+              [
+                -117.98572899153736, 
+                20.650147875378927
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -117.9548596486428, 
+                20.682901818515663
+              ], 
+              [
+                -117.95491422585046, 
+                20.67981903402533
+              ], 
+              [
+                -117.95780096181207, 
+                20.675376144990974
+              ], 
+              [
+                -117.96156070766978, 
+                20.671858973098146
+              ], 
+              [
+                -117.96371863609357, 
+                20.670515144971382
+              ], 
+              [
+                -117.96463510416321, 
+                20.67090652619934
+              ], 
+              [
+                -117.9647576296398, 
+                20.703946018746144
+              ], 
+              [
+                -117.96088399469234, 
+                20.711865883856387
+              ], 
+              [
+                -117.95729120321293, 
+                20.71315435570878
+              ], 
+              [
+                -117.94739741616246, 
+                20.703118173408665
+              ], 
+              [
+                -117.94409287090294, 
+                20.69343887044464
+              ], 
+              [
+                -117.94275119164676, 
+                20.6821941755875
+              ], 
+              [
+                -117.9548596486428, 
+                20.682901818515663
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -118.5506297538442, 
+                20.89990270189732
+              ], 
+              [
+                -118.54577936332738, 
+                20.899946460405538
+              ], 
+              [
+                -118.52994459709195, 
+                20.891939881616235
+              ], 
+              [
+                -118.51979990982393, 
+                20.88653619726076
+              ], 
+              [
+                -118.51593275282076, 
+                20.881507977400187
+              ], 
+              [
+                -118.51650315642995, 
+                20.876543108990692
+              ], 
+              [
+                -118.51628566601107, 
+                20.873361569628894
+              ], 
+              [
+                -118.51579276982454, 
+                20.872241601200336
+              ], 
+              [
+                -118.49464570141939, 
+                20.8531417479076
+              ], 
+              [
+                -118.47591356060343, 
+                20.824748051991474
+              ], 
+              [
+                -118.46958465722297, 
+                20.817643920334294
+              ], 
+              [
+                -118.45864338885153, 
+                20.80844320695641
+              ], 
+              [
+                -118.4531860039662, 
+                20.80538111240995
+              ], 
+              [
+                -118.44959736003054, 
+                20.80495756387342
+              ], 
+              [
+                -118.44618215211327, 
+                20.80358159662673
+              ], 
+              [
+                -118.43937366644737, 
+                20.791201277358237
+              ], 
+              [
+                -118.43723035569832, 
+                20.78376141228106
+              ], 
+              [
+                -118.43647328311184, 
+                20.778647432881815
+              ], 
+              [
+                -118.43493852896879, 
+                20.77661741024407
+              ], 
+              [
+                -118.42765244836625, 
+                20.77380391456438
+              ], 
+              [
+                -118.40883353914657, 
+                20.770753083245147
+              ], 
+              [
+                -118.39525702374512, 
+                20.768623130074484
+              ], 
+              [
+                -118.3914371572955, 
+                20.766268399503794
+              ], 
+              [
+                -118.37530140999196, 
+                20.75245950806171
+              ], 
+              [
+                -118.37407773368153, 
+                20.750129796762163
+              ], 
+              [
+                -118.3787689418253, 
+                20.747684803690827
+              ], 
+              [
+                -118.39229643436411, 
+                20.746823290862302
+              ], 
+              [
+                -118.39482823774674, 
+                20.747918863653716
+              ], 
+              [
+                -118.39616229026068, 
+                20.749627677051873
+              ], 
+              [
+                -118.40081450598524, 
+                20.753897525676372
+              ], 
+              [
+                -118.42889182307697, 
+                20.751064228582432
+              ], 
+              [
+                -118.43955733723395, 
+                20.761589650923565
+              ], 
+              [
+                -118.44002186531098, 
+                20.76675191591764
+              ], 
+              [
+                -118.44304081413475, 
+                20.769987640683468
+              ], 
+              [
+                -118.47127234092991, 
+                20.796500035965547
+              ], 
+              [
+                -118.48089515088776, 
+                20.80468148452051
+              ], 
+              [
+                -118.48738414517295, 
+                20.816876151920816
+              ], 
+              [
+                -118.49266595102729, 
+                20.826565146854026
+              ], 
+              [
+                -118.50391668963812, 
+                20.844363663063902
+              ], 
+              [
+                -118.50834743304871, 
+                20.850115552318332
+              ], 
+              [
+                -118.53628208755008, 
+                20.871674310739227
+              ], 
+              [
+                -118.53936681715477, 
+                20.873030140018134
+              ], 
+              [
+                -118.54911533834974, 
+                20.872037399702144
+              ], 
+              [
+                -118.55184742174806, 
+                20.87074408676558
+              ], 
+              [
+                -118.5563354880871, 
+                20.873438119965623
+              ], 
+              [
+                -118.57233698193973, 
+                20.88395151593996
+              ], 
+              [
+                -118.5907963820496, 
+                20.90140360015812
+              ], 
+              [
+                -118.5914006046689, 
+                20.90235328316516
+              ], 
+              [
+                -118.5927994192566, 
+                20.908056748254378
+              ], 
+              [
+                -118.58718227394372, 
+                20.916902057088546
+              ], 
+              [
+                -118.58223490251613, 
+                20.918207632295882
+              ], 
+              [
+                -118.57925240481858, 
+                20.91639075367964
+              ], 
+              [
+                -118.57770612858877, 
+                20.911812175269908
+              ], 
+              [
+                -118.57571897076902, 
+                20.908880970230896
+              ], 
+              [
+                -118.56324036451947, 
+                20.901444403293834
+              ], 
+              [
+                -118.5506297538442, 
+                20.89990270189732
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -117.37384318876742, 
+                20.878020680421482
+              ], 
+              [
+                -117.38341097981437, 
+                20.897971408584
+              ], 
+              [
+                -117.38684960012694, 
+                20.907020938599835
+              ], 
+              [
+                -117.38149953893965, 
+                20.92082907633815
+              ], 
+              [
+                -117.37744596463618, 
+                20.924611756479653
+              ], 
+              [
+                -117.36757741715722, 
+                20.925684615324336
+              ], 
+              [
+                -117.36341405306558, 
+                20.925221983940126
+              ], 
+              [
+                -117.35757593451096, 
+                20.922374799101462
+              ], 
+              [
+                -117.3395933233099, 
+                20.92377245637205
+              ], 
+              [
+                -117.33875655185221, 
+                20.927459787375252
+              ], 
+              [
+                -117.33265601332769, 
+                20.935855359112217
+              ], 
+              [
+                -117.32909208058966, 
+                20.938268847325773
+              ], 
+              [
+                -117.32646247506959, 
+                20.938303508303388
+              ], 
+              [
+                -117.32130050180783, 
+                20.934838990568398
+              ], 
+              [
+                -117.31963424594474, 
+                20.931845064656702
+              ], 
+              [
+                -117.31669812056712, 
+                20.901672999484546
+              ], 
+              [
+                -117.31916815917212, 
+                20.89363603776895
+              ], 
+              [
+                -117.32014251850609, 
+                20.89318569387595
+              ], 
+              [
+                -117.32227043971993, 
+                20.89616910913959
+              ], 
+              [
+                -117.32301247746373, 
+                20.899341370179307
+              ], 
+              [
+                -117.32215590672594, 
+                20.901431262333674
+              ], 
+              [
+                -117.3234134228788, 
+                20.913552111640854
+              ], 
+              [
+                -117.32499376963996, 
+                20.914293836457368
+              ], 
+              [
+                -117.32585561146999, 
+                20.913739022944476
+              ], 
+              [
+                -117.32688904851342, 
+                20.91222854530602
+              ], 
+              [
+                -117.3353602441041, 
+                20.891641619497662
+              ], 
+              [
+                -117.33634841105936, 
+                20.888229809263066
+              ], 
+              [
+                -117.33717602074937, 
+                20.88242432035119
+              ], 
+              [
+                -117.33755391875296, 
+                20.871409834269738
+              ], 
+              [
+                -117.32444800581831, 
+                20.862127440829767
+              ], 
+              [
+                -117.31566931539165, 
+                20.859743231235903
+              ], 
+              [
+                -117.30887108608187, 
+                20.859675856914357
+              ], 
+              [
+                -117.30637437509341, 
+                20.86251834025306
+              ], 
+              [
+                -117.27745086563755, 
+                20.87071781520249
+              ], 
+              [
+                -117.25460423709357, 
+                20.87125212799336
+              ], 
+              [
+                -117.24908608910948, 
+                20.870704407097023
+              ], 
+              [
+                -117.24813417429962, 
+                20.869776143989945
+              ], 
+              [
+                -117.24662667519144, 
+                20.86665069002704
+              ], 
+              [
+                -117.24220600289698, 
+                20.844527637523278
+              ], 
+              [
+                -117.24238862825258, 
+                20.82933254580159
+              ], 
+              [
+                -117.24374069983769, 
+                20.823065426827423
+              ], 
+              [
+                -117.24774945654815, 
+                20.809026708601607
+              ], 
+              [
+                -117.26194286955882, 
+                20.805240681359088
+              ], 
+              [
+                -117.29665478885228, 
+                20.81516456014281
+              ], 
+              [
+                -117.30284330079252, 
+                20.822334363702588
+              ], 
+              [
+                -117.30619833385241, 
+                20.823479983551195
+              ], 
+              [
+                -117.30872623995431, 
+                20.821380287564775
+              ], 
+              [
+                -117.32509323438768, 
+                20.791124892668638
+              ], 
+              [
+                -117.331886006829, 
+                20.792357219546496
+              ], 
+              [
+                -117.35682565296864, 
+                20.790504834038874
+              ], 
+              [
+                -117.3595722504426, 
+                20.789736668619003
+              ], 
+              [
+                -117.36549267209564, 
+                20.780191824493336
+              ], 
+              [
+                -117.36953021892788, 
+                20.767686890955076
+              ], 
+              [
+                -117.38263152774974, 
+                20.758537750547074
+              ], 
+              [
+                -117.38459657509877, 
+                20.759989103676734
+              ], 
+              [
+                -117.3886148535656, 
+                20.768701257705754
+              ], 
+              [
+                -117.38934253575901, 
+                20.77202783784935
+              ], 
+              [
+                -117.38633003232687, 
+                20.78091654307769
+              ], 
+              [
+                -117.392598797003, 
+                20.792036832613494
+              ], 
+              [
+                -117.39939200463164, 
+                20.79360269665068
+              ], 
+              [
+                -117.40974293158253, 
+                20.77114847133308
+              ], 
+              [
+                -117.41685700871489, 
+                20.751318389443718
+              ], 
+              [
+                -117.41896518548407, 
+                20.75078445550603
+              ], 
+              [
+                -117.4230232097081, 
+                20.751859943478472
+              ], 
+              [
+                -117.43110212435244, 
+                20.75703247811781
+              ], 
+              [
+                -117.43194062286328, 
+                20.759338614745012
+              ], 
+              [
+                -117.43311405109546, 
+                20.76991385689197
+              ], 
+              [
+                -117.43145924186835, 
+                20.783179380943988
+              ], 
+              [
+                -117.42932227199472, 
+                20.78725340431586
+              ], 
+              [
+                -117.42250475209727, 
+                20.796302585368807
+              ], 
+              [
+                -117.41745564428574, 
+                20.800845413604982
+              ], 
+              [
+                -117.41108894999257, 
+                20.800071558636553
+              ], 
+              [
+                -117.40848007292765, 
+                20.801651051960157
+              ], 
+              [
+                -117.40250805396595, 
+                20.812346574733972
+              ], 
+              [
+                -117.40176340693591, 
+                20.814809679263217
+              ], 
+              [
+                -117.40169970412803, 
+                20.81601361223095
+              ], 
+              [
+                -117.40489917639849, 
+                20.832644050215766
+              ], 
+              [
+                -117.41102271350901, 
+                20.83545176484608
+              ], 
+              [
+                -117.41456487848745, 
+                20.84351929001571
+              ], 
+              [
+                -117.41435462031384, 
+                20.84776110364089
+              ], 
+              [
+                -117.41280381845785, 
+                20.852635850986537
+              ], 
+              [
+                -117.41104904005782, 
+                20.854467369925764
+              ], 
+              [
+                -117.39835518343517, 
+                20.856566625272347
+              ], 
+              [
+                -117.38086851927166, 
+                20.85463901493559
+              ], 
+              [
+                -117.37384318876742, 
+                20.878020680421482
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -117.64810721216122, 
+                20.859346048762475
+              ], 
+              [
+                -117.64695343711129, 
+                20.855705674614327
+              ], 
+              [
+                -117.6515902977595, 
+                20.848310837936626
+              ], 
+              [
+                -117.65908439283636, 
+                20.838703587393173
+              ], 
+              [
+                -117.65911694128994, 
+                20.83405241943823
+              ], 
+              [
+                -117.65795668660338, 
+                20.831364821169505
+              ], 
+              [
+                -117.65516370832975, 
+                20.828681488959834
+              ], 
+              [
+                -117.6550183891301, 
+                20.82577453222912
+              ], 
+              [
+                -117.65882100982614, 
+                20.818367769766766
+              ], 
+              [
+                -117.66276651086795, 
+                20.814697981664352
+              ], 
+              [
+                -117.66584623373211, 
+                20.814213843319763
+              ], 
+              [
+                -117.66819318526827, 
+                20.815401061660054
+              ], 
+              [
+                -117.67110221078848, 
+                20.81949832308244
+              ], 
+              [
+                -117.67418990570853, 
+                20.821247949314344
+              ], 
+              [
+                -117.67505737041866, 
+                20.820868971720277
+              ], 
+              [
+                -117.67931587997676, 
+                20.813140592117527
+              ], 
+              [
+                -117.68198119044351, 
+                20.80439346964347
+              ], 
+              [
+                -117.68200882381657, 
+                20.802101683169337
+              ], 
+              [
+                -117.68110643995601, 
+                20.798210550765486
+              ], 
+              [
+                -117.67839397769222, 
+                20.792367835456783
+              ], 
+              [
+                -117.67509297606694, 
+                20.780606279437137
+              ], 
+              [
+                -117.67587745435279, 
+                20.776503872423447
+              ], 
+              [
+                -117.67670263830898, 
+                20.776109833772203
+              ], 
+              [
+                -117.68226360763653, 
+                20.778926240763056
+              ], 
+              [
+                -117.68620754185974, 
+                20.784056003778193
+              ], 
+              [
+                -117.68772769911004, 
+                20.78820692452382
+              ], 
+              [
+                -117.68836466657007, 
+                20.796869661349042
+              ], 
+              [
+                -117.68954122219627, 
+                20.801230284856057
+              ], 
+              [
+                -117.69124178026452, 
+                20.802852924727496
+              ], 
+              [
+                -117.71932871987133, 
+                20.81526399197508
+              ], 
+              [
+                -117.72369683586307, 
+                20.81235206239214
+              ], 
+              [
+                -117.72980808127967, 
+                20.816194360924943
+              ], 
+              [
+                -117.73205293809221, 
+                20.819905615692317
+              ], 
+              [
+                -117.72844576133011, 
+                20.830773389462152
+              ], 
+              [
+                -117.70660993493131, 
+                20.831170216055824
+              ], 
+              [
+                -117.69088675438162, 
+                20.83573366051762
+              ], 
+              [
+                -117.68930353068924, 
+                20.837043290800967
+              ], 
+              [
+                -117.68701318561048, 
+                20.845114449022912
+              ], 
+              [
+                -117.68671656012837, 
+                20.850907799009853
+              ], 
+              [
+                -117.68767899680134, 
+                20.857154603480954
+              ], 
+              [
+                -117.68945504622283, 
+                20.86057299474745
+              ], 
+              [
+                -117.69157898593843, 
+                20.863439356289383
+              ], 
+              [
+                -117.69957420879635, 
+                20.865812622543
+              ], 
+              [
+                -117.71122708222477, 
+                20.865715689339826
+              ], 
+              [
+                -117.71650752033193, 
+                20.869976403045705
+              ], 
+              [
+                -117.72213003648532, 
+                20.876169572300263
+              ], 
+              [
+                -117.72355832959954, 
+                20.880717825079664
+              ], 
+              [
+                -117.74639111422881, 
+                20.898115795272343
+              ], 
+              [
+                -117.75756932269164, 
+                20.90767911770297
+              ], 
+              [
+                -117.75993285160995, 
+                20.91127144332654
+              ], 
+              [
+                -117.76089119649667, 
+                20.915463033930322
+              ], 
+              [
+                -117.76003260543176, 
+                20.91876204579449
+              ], 
+              [
+                -117.75900244896087, 
+                20.920630864530548
+              ], 
+              [
+                -117.7527271191964, 
+                20.929763992334134
+              ], 
+              [
+                -117.74689852439136, 
+                20.9320750513693
+              ], 
+              [
+                -117.73906050555105, 
+                20.933955394663837
+              ], 
+              [
+                -117.73364160455044, 
+                20.93477587778461
+              ], 
+              [
+                -117.72463935043604, 
+                20.933550703250354
+              ], 
+              [
+                -117.71934723574431, 
+                20.932083159387368
+              ], 
+              [
+                -117.71687446609857, 
+                20.929533052190624
+              ], 
+              [
+                -117.70137177005464, 
+                20.926790777267342
+              ], 
+              [
+                -117.69118142748894, 
+                20.929560370034444
+              ], 
+              [
+                -117.68811659957663, 
+                20.928045242156426
+              ], 
+              [
+                -117.67788933335684, 
+                20.910203089895965
+              ], 
+              [
+                -117.68080994082001, 
+                20.899963897481644
+              ], 
+              [
+                -117.6800856044441, 
+                20.898171465079972
+              ], 
+              [
+                -117.66376000978079, 
+                20.883854617390625
+              ], 
+              [
+                -117.66178398633373, 
+                20.883240750721125
+              ], 
+              [
+                -117.63730835456775, 
+                20.883363671147865
+              ], 
+              [
+                -117.61937341227399, 
+                20.887737141130128
+              ], 
+              [
+                -117.59920361464908, 
+                20.891130855167372
+              ], 
+              [
+                -117.59898932394856, 
+                20.890142788356993
+              ], 
+              [
+                -117.60174018640083, 
+                20.88306013205931
+              ], 
+              [
+                -117.60811192732115, 
+                20.875696671529575
+              ], 
+              [
+                -117.6177093955775, 
+                20.87280647573837
+              ], 
+              [
+                -117.61944574600012, 
+                20.873512442282237
+              ], 
+              [
+                -117.63101550487876, 
+                20.87179459933989
+              ], 
+              [
+                -117.64734434186977, 
+                20.86637385488231
+              ], 
+              [
+                -117.64810721216122, 
+                20.859346048762475
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -117.53146527831235, 
+                20.824746093713234
+              ], 
+              [
+                -117.53952539551571, 
+                20.828284707715607
+              ], 
+              [
+                -117.54664777419326, 
+                20.827658063307123
+              ], 
+              [
+                -117.55379455317366, 
+                20.825709490624497
+              ], 
+              [
+                -117.5587585723047, 
+                20.8207226904486
+              ], 
+              [
+                -117.56573705644543, 
+                20.817164684219595
+              ], 
+              [
+                -117.57907382177588, 
+                20.815355858294335
+              ], 
+              [
+                -117.5871765912074, 
+                20.81583380210046
+              ], 
+              [
+                -117.59701808029814, 
+                20.82002100938297
+              ], 
+              [
+                -117.59932014751006, 
+                20.81966030127245
+              ], 
+              [
+                -117.60321920685999, 
+                20.816641589243677
+              ], 
+              [
+                -117.60555417475122, 
+                20.805142532306107
+              ], 
+              [
+                -117.6042970573963, 
+                20.79909433595674
+              ], 
+              [
+                -117.60839574519139, 
+                20.79666075817499
+              ], 
+              [
+                -117.61360494521338, 
+                20.802047022347192
+              ], 
+              [
+                -117.62344136823327, 
+                20.821541131613852
+              ], 
+              [
+                -117.62277454626542, 
+                20.82335857862813
+              ], 
+              [
+                -117.62077105205357, 
+                20.82595648151209
+              ], 
+              [
+                -117.60553527971507, 
+                20.835405397514
+              ], 
+              [
+                -117.59426605168817, 
+                20.829836595610594
+              ], 
+              [
+                -117.58305004927973, 
+                20.82629480388698
+              ], 
+              [
+                -117.57822446381473, 
+                20.82602301164338
+              ], 
+              [
+                -117.57256808374436, 
+                20.827174042038877
+              ], 
+              [
+                -117.56793662354113, 
+                20.833213213689174
+              ], 
+              [
+                -117.55823051852369, 
+                20.838067396200223
+              ], 
+              [
+                -117.51075689552495, 
+                20.849683872642867
+              ], 
+              [
+                -117.4993483698687, 
+                20.855533236578793
+              ], 
+              [
+                -117.49245545415245, 
+                20.861473848605584
+              ], 
+              [
+                -117.49083187782645, 
+                20.865263154790476
+              ], 
+              [
+                -117.48963803339602, 
+                20.876491474692962
+              ], 
+              [
+                -117.48932573186265, 
+                20.894683689419093
+              ], 
+              [
+                -117.4896384652152, 
+                20.914412896145627
+              ], 
+              [
+                -117.48906416362331, 
+                20.917447844932042
+              ], 
+              [
+                -117.48747454323129, 
+                20.920461883418447
+              ], 
+              [
+                -117.4848191178702, 
+                20.9226779418777
+              ], 
+              [
+                -117.47784918250976, 
+                20.922659725101145
+              ], 
+              [
+                -117.46315164322023, 
+                20.91751486496899
+              ], 
+              [
+                -117.45129443987517, 
+                20.903679833113397
+              ], 
+              [
+                -117.44869456025577, 
+                20.898577249116265
+              ], 
+              [
+                -117.45800387476343, 
+                20.878975566949247
+              ], 
+              [
+                -117.46834697628522, 
+                20.872367225642073
+              ], 
+              [
+                -117.47050214501174, 
+                20.869781930950364
+              ], 
+              [
+                -117.4726340895174, 
+                20.860818241908596
+              ], 
+              [
+                -117.4708214137875, 
+                20.836218650542847
+              ], 
+              [
+                -117.46796971884004, 
+                20.82512920759968
+              ], 
+              [
+                -117.4685123559062, 
+                20.820230648068907
+              ], 
+              [
+                -117.47447367778447, 
+                20.810302463071526
+              ], 
+              [
+                -117.50510959322386, 
+                20.80039565200478
+              ], 
+              [
+                -117.50868611826293, 
+                20.80054321877476
+              ], 
+              [
+                -117.51433581902253, 
+                20.802794549565494
+              ], 
+              [
+                -117.51969732221285, 
+                20.80614489115335
+              ], 
+              [
+                -117.5200765096027, 
+                20.80764047991921
+              ], 
+              [
+                -117.52010260355704, 
+                20.809259199450246
+              ], 
+              [
+                -117.51969660303466, 
+                20.811089236647728
+              ], 
+              [
+                -117.52149083286423, 
+                20.81625851464448
+              ], 
+              [
+                -117.52677490002121, 
+                20.821435295484598
+              ], 
+              [
+                -117.53146527831235, 
+                20.824746093713234
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -117.91033970074018, 
+                20.87084590930572
+              ], 
+              [
+                -117.91449603782584, 
+                20.871780338760995
+              ], 
+              [
+                -117.91649462788384, 
+                20.87299515296115
+              ], 
+              [
+                -117.9314617518273, 
+                20.89051105432125
+              ], 
+              [
+                -117.93063264568474, 
+                20.89641156000754
+              ], 
+              [
+                -117.92737335878236, 
+                20.908238152103966
+              ], 
+              [
+                -117.91949057416349, 
+                20.91456376209365
+              ], 
+              [
+                -117.91705142600564, 
+                20.915917918272513
+              ], 
+              [
+                -117.91488906713951, 
+                20.91541487671687
+              ], 
+              [
+                -117.90893056131168, 
+                20.911715928504712
+              ], 
+              [
+                -117.9034748733232, 
+                20.90664893081092
+              ], 
+              [
+                -117.89841154215432, 
+                20.899818894654526
+              ], 
+              [
+                -117.89458163456536, 
+                20.887077449642838
+              ], 
+              [
+                -117.8991956593621, 
+                20.875163078805503
+              ], 
+              [
+                -117.90616807483248, 
+                20.87159288350835
+              ], 
+              [
+                -117.91033970074018, 
+                20.87084590930572
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -118.65485298157755, 
+                20.977940397752928
+              ], 
+              [
+                -118.65816713313441, 
+                20.982678668157497
+              ], 
+              [
+                -118.65913772514772, 
+                20.983397518915762
+              ], 
+              [
+                -118.66564356038958, 
+                20.983257377194843
+              ], 
+              [
+                -118.66657249878556, 
+                20.982637486800524
+              ], 
+              [
+                -118.67096429745162, 
+                20.98446707030615
+              ], 
+              [
+                -118.67357366824523, 
+                20.986487856791655
+              ], 
+              [
+                -118.67450297372461, 
+                20.987460394203474
+              ], 
+              [
+                -118.6891036571843, 
+                21.00867582217738
+              ], 
+              [
+                -118.69130958248671, 
+                21.014336955756455
+              ], 
+              [
+                -118.67344143245157, 
+                21.008441564194474
+              ], 
+              [
+                -118.67223601810666, 
+                21.007415083165704
+              ], 
+              [
+                -118.6699365177744, 
+                21.005023884181394
+              ], 
+              [
+                -118.66671171724421, 
+                21.001322186236205
+              ], 
+              [
+                -118.66584872437565, 
+                21.0002300760977
+              ], 
+              [
+                -118.6568579656915, 
+                20.983137249359274
+              ], 
+              [
+                -118.65485298157755, 
+                20.977940397752928
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -117.1647814386862, 
+                20.872698880438666
+              ], 
+              [
+                -117.1611206609075, 
+                20.874732918981657
+              ], 
+              [
+                -117.15986284649293, 
+                20.868950497822574
+              ], 
+              [
+                -117.160005924464, 
+                20.862828388715695
+              ], 
+              [
+                -117.16209958961781, 
+                20.852525688910177
+              ], 
+              [
+                -117.16764346367424, 
+                20.855770223726317
+              ], 
+              [
+                -117.18457185223967, 
+                20.85404967221252
+              ], 
+              [
+                -117.19831450535263, 
+                20.83813224726179
+              ], 
+              [
+                -117.2043068017938, 
+                20.834829474936083
+              ], 
+              [
+                -117.20845284004963, 
+                20.8349438315001
+              ], 
+              [
+                -117.22002938023829, 
+                20.83796591209183
+              ], 
+              [
+                -117.22903983823932, 
+                20.841242557987613
+              ], 
+              [
+                -117.23405656068579, 
+                20.84652269005878
+              ], 
+              [
+                -117.23426726320537, 
+                20.847862894778846
+              ], 
+              [
+                -117.22974249226216, 
+                20.870515386734212
+              ], 
+              [
+                -117.2267801136954, 
+                20.87430248561795
+              ], 
+              [
+                -117.21825555523597, 
+                20.873407087471243
+              ], 
+              [
+                -117.21714481118573, 
+                20.87223931840825
+              ], 
+              [
+                -117.21686143305406, 
+                20.870894339056886
+              ], 
+              [
+                -117.21474891064274, 
+                20.867139853150263
+              ], 
+              [
+                -117.20932490469683, 
+                20.861988134241553
+              ], 
+              [
+                -117.19822914549661, 
+                20.8593272465967
+              ], 
+              [
+                -117.19330831536904, 
+                20.860424587148387
+              ], 
+              [
+                -117.19122209062192, 
+                20.86470553165657
+              ], 
+              [
+                -117.19156384430113, 
+                20.86584902265802
+              ], 
+              [
+                -117.19304433318578, 
+                20.86805702718205
+              ], 
+              [
+                -117.20284986757191, 
+                20.874500547211763
+              ], 
+              [
+                -117.2018069106378, 
+                20.875719020741197
+              ], 
+              [
+                -117.18971756620053, 
+                20.88114354701269
+              ], 
+              [
+                -117.17786645611294, 
+                20.88430259720596
+              ], 
+              [
+                -117.1705968511799, 
+                20.88442147438987
+              ], 
+              [
+                -117.16853042752034, 
+                20.882297278043268
+              ], 
+              [
+                -117.1647814386862, 
+                20.872698880438666
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -118.85318991925283, 
+                21.130698865525137
+              ], 
+              [
+                -118.85984129514748, 
+                21.126368790326158
+              ], 
+              [
+                -118.86126507956953, 
+                21.125099628159422
+              ], 
+              [
+                -118.87066480481965, 
+                21.115734796645466
+              ], 
+              [
+                -118.8723181781971, 
+                21.11179387177222
+              ], 
+              [
+                -118.87078192504242, 
+                21.10643810033605
+              ], 
+              [
+                -118.86984218560038, 
+                21.104727476411053
+              ], 
+              [
+                -118.86257574691656, 
+                21.101302858260116
+              ], 
+              [
+                -118.8604981206563, 
+                21.100590711014277
+              ], 
+              [
+                -118.8531664679782, 
+                21.10120957763203
+              ], 
+              [
+                -118.85221200702178, 
+                21.099187970563296
+              ], 
+              [
+                -118.85279956227163, 
+                21.092537061379193
+              ], 
+              [
+                -118.85415055052242, 
+                21.087196990634826
+              ], 
+              [
+                -118.85566229151316, 
+                21.086105897057617
+              ], 
+              [
+                -118.86638678285934, 
+                21.0851019856415
+              ], 
+              [
+                -118.8861215140197, 
+                21.09182804863751
+              ], 
+              [
+                -118.90546590585443, 
+                21.098684819520322
+              ], 
+              [
+                -118.91504475454408, 
+                21.09504184136338
+              ], 
+              [
+                -118.92199595955091, 
+                21.08892533711891
+              ], 
+              [
+                -118.92854139709576, 
+                21.075303815898533
+              ], 
+              [
+                -118.92850336580955, 
+                21.07405935828021
+              ], 
+              [
+                -118.9267693916735, 
+                21.071711462361545
+              ], 
+              [
+                -118.92739186146459, 
+                21.061137061398654
+              ], 
+              [
+                -118.93102030821348, 
+                21.05415630770308
+              ], 
+              [
+                -118.93368070333145, 
+                21.05338610485825
+              ], 
+              [
+                -118.93580389010818, 
+                21.05542240939742
+              ], 
+              [
+                -118.9380313119752, 
+                21.05956157858702
+              ], 
+              [
+                -118.9374471520833, 
+                21.060687638843703
+              ], 
+              [
+                -118.93797882237867, 
+                21.063528501056666
+              ], 
+              [
+                -118.9429273348396, 
+                21.069897549257355
+              ], 
+              [
+                -118.95240281560645, 
+                21.079271504280285
+              ], 
+              [
+                -118.95835692048392, 
+                21.081829876949044
+              ], 
+              [
+                -118.96045123502267, 
+                21.08415898219086
+              ], 
+              [
+                -118.96101144530081, 
+                21.091061459261912
+              ], 
+              [
+                -118.96020622838363, 
+                21.0917896586538
+              ], 
+              [
+                -118.95187676162297, 
+                21.096584639462566
+              ], 
+              [
+                -118.94147512300745, 
+                21.099762409292914
+              ], 
+              [
+                -118.93663008971848, 
+                21.098620906128087
+              ], 
+              [
+                -118.9226033274794, 
+                21.11321784700809
+              ], 
+              [
+                -118.92133781465357, 
+                21.116821842783168
+              ], 
+              [
+                -118.90319110351554, 
+                21.121691088225784
+              ], 
+              [
+                -118.88473866987407, 
+                21.120993248427116
+              ], 
+              [
+                -118.88094429199418, 
+                21.12438802654518
+              ], 
+              [
+                -118.87898905803436, 
+                21.131469478630713
+              ], 
+              [
+                -118.87819752841057, 
+                21.134943694748664
+              ], 
+              [
+                -118.87774310163711, 
+                21.145578815487056
+              ], 
+              [
+                -118.86566947730088, 
+                21.173334656524666
+              ], 
+              [
+                -118.86050886362615, 
+                21.182439319886466
+              ], 
+              [
+                -118.84990057844753, 
+                21.18798690421212
+              ], 
+              [
+                -118.8351791400111, 
+                21.173747781330484
+              ], 
+              [
+                -118.8319531575347, 
+                21.16336409407507
+              ], 
+              [
+                -118.83460998734073, 
+                21.15621070302347
+              ], 
+              [
+                -118.83681187679163, 
+                21.153312531888414
+              ], 
+              [
+                -118.83831090570027, 
+                21.153987525911088
+              ], 
+              [
+                -118.84142191537433, 
+                21.15355172082058
+              ], 
+              [
+                -118.84393334902852, 
+                21.152314717298545
+              ], 
+              [
+                -118.85094918306405, 
+                21.136126558594164
+              ], 
+              [
+                -118.85318991925283, 
+                21.130698865525137
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -118.29007336454274, 
+                21.01226668295702
+              ], 
+              [
+                -118.29232448192747, 
+                21.001788467916462
+              ], 
+              [
+                -118.29471572091502, 
+                20.996312964444268
+              ], 
+              [
+                -118.29693269557484, 
+                20.99463902962202
+              ], 
+              [
+                -118.3197769396902, 
+                20.98156885731426
+              ], 
+              [
+                -118.32253429925107, 
+                20.981114416830298
+              ], 
+              [
+                -118.32902976407195, 
+                20.981918915317138
+              ], 
+              [
+                -118.35298408807397, 
+                20.997080516945058
+              ], 
+              [
+                -118.36241296987521, 
+                21.01003915845247
+              ], 
+              [
+                -118.36456023021904, 
+                21.018040137631672
+              ], 
+              [
+                -118.36209809281122, 
+                21.039298027955464
+              ], 
+              [
+                -118.36100699858537, 
+                21.039682738983732
+              ], 
+              [
+                -118.35355101536481, 
+                21.038555529567656
+              ], 
+              [
+                -118.35051665110244, 
+                21.03690685471297
+              ], 
+              [
+                -118.3471884164577, 
+                21.038359929496895
+              ], 
+              [
+                -118.33848095849348, 
+                21.049507802645028
+              ], 
+              [
+                -118.33530664896347, 
+                21.051800440740745
+              ], 
+              [
+                -118.32486511485965, 
+                21.054246998956508
+              ], 
+              [
+                -118.31820510796463, 
+                21.053953006047916
+              ], 
+              [
+                -118.3141417852484, 
+                21.05182353322916
+              ], 
+              [
+                -118.30361603321394, 
+                21.041807789794962
+              ], 
+              [
+                -118.28584613789978, 
+                21.02316428876344
+              ], 
+              [
+                -118.28476210452885, 
+                21.01898815248357
+              ], 
+              [
+                -118.28515143809656, 
+                21.01736726925059
+              ], 
+              [
+                -118.28789371994478, 
+                21.01244028608289
+              ], 
+              [
+                -118.29007336454274, 
+                21.01226668295702
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -118.63327631255503, 
+                21.076849131707174
+              ], 
+              [
+                -118.62878984392094, 
+                21.080747827802686
+              ], 
+              [
+                -118.62482101447814, 
+                21.079990950788282
+              ], 
+              [
+                -118.60572666732844, 
+                21.07057334463779
+              ], 
+              [
+                -118.60112988941864, 
+                21.067053238234365
+              ], 
+              [
+                -118.59593613072806, 
+                21.058908526013646
+              ], 
+              [
+                -118.59642749484595, 
+                21.05555167693947
+              ], 
+              [
+                -118.60276954253003, 
+                21.04721049054669
+              ], 
+              [
+                -118.61055154377034, 
+                21.03757707498108
+              ], 
+              [
+                -118.61599801505784, 
+                21.036749214648978
+              ], 
+              [
+                -118.62028826825251, 
+                21.03735374911178
+              ], 
+              [
+                -118.62471546813062, 
+                21.042927265868464
+              ], 
+              [
+                -118.62868498018717, 
+                21.053910373167565
+              ], 
+              [
+                -118.63161569701583, 
+                21.068136292452945
+              ], 
+              [
+                -118.63327631255503, 
+                21.076849131707174
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -117.08855772098673, 
+                20.9057112008777
+              ], 
+              [
+                -117.08661346870538, 
+                20.907242056554953
+              ], 
+              [
+                -117.0858348854559, 
+                20.907049997529242
+              ], 
+              [
+                -117.08190048324188, 
+                20.904205741542512
+              ], 
+              [
+                -117.08120223258278, 
+                20.903295798475312
+              ], 
+              [
+                -117.08135198003461, 
+                20.901822112033724
+              ], 
+              [
+                -117.09802533118854, 
+                20.889661781754278
+              ], 
+              [
+                -117.10135249160365, 
+                20.889927567436967
+              ], 
+              [
+                -117.1060965392805, 
+                20.896066901431894
+              ], 
+              [
+                -117.10625020923281, 
+                20.89817810603008
+              ], 
+              [
+                -117.10504414571537, 
+                20.905638863814847
+              ], 
+              [
+                -117.10322945818307, 
+                20.9086847274047
+              ], 
+              [
+                -117.10081843565658, 
+                20.90977764556743
+              ], 
+              [
+                -117.08855772098673, 
+                20.9057112008777
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -117.17833299442928, 
+                20.93564340744896
+              ], 
+              [
+                -117.18507416935617, 
+                20.931017075391072
+              ], 
+              [
+                -117.18180394477862, 
+                20.923403401638094
+              ], 
+              [
+                -117.18056786712812, 
+                20.92235866101755
+              ], 
+              [
+                -117.17899796396149, 
+                20.91905225748446
+              ], 
+              [
+                -117.17917632242246, 
+                20.91706944814416
+              ], 
+              [
+                -117.18044686716836, 
+                20.914555211041847
+              ], 
+              [
+                -117.18815085718327, 
+                20.911637092495702
+              ], 
+              [
+                -117.1939976880803, 
+                20.912534449377908
+              ], 
+              [
+                -117.22098950558345, 
+                20.929284651943792
+              ], 
+              [
+                -117.2222821371341, 
+                20.9318668931706
+              ], 
+              [
+                -117.22701140030074, 
+                20.9484877611389
+              ], 
+              [
+                -117.2298304405913, 
+                20.960639745426025
+              ], 
+              [
+                -117.2281941233648, 
+                20.96558186102332
+              ], 
+              [
+                -117.21992566642668, 
+                20.977307145088226
+              ], 
+              [
+                -117.21233459513392, 
+                20.983283431622244
+              ], 
+              [
+                -117.18965074371597, 
+                20.97717356852235
+              ], 
+              [
+                -117.17070713100034, 
+                20.942403405934634
+              ], 
+              [
+                -117.17335546096366, 
+                20.93780326401658
+              ], 
+              [
+                -117.17833299442928, 
+                20.93564340744896
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -118.71783569858549, 
+                21.123796498065367
+              ], 
+              [
+                -118.71736549124064, 
+                21.12517624669513
+              ], 
+              [
+                -118.71149480978264, 
+                21.123935936271803
+              ], 
+              [
+                -118.7029099694576, 
+                21.115754403875325
+              ], 
+              [
+                -118.70189511493027, 
+                21.113906775062407
+              ], 
+              [
+                -118.69966342240885, 
+                21.099368626974425
+              ], 
+              [
+                -118.70422671860273, 
+                21.094431913133924
+              ], 
+              [
+                -118.71528307355638, 
+                21.09395382720458
+              ], 
+              [
+                -118.72200304828766, 
+                21.10046416525563
+              ], 
+              [
+                -118.72270200747298, 
+                21.10323667996253
+              ], 
+              [
+                -118.7241744313386, 
+                21.117499554917078
+              ], 
+              [
+                -118.72059578406383, 
+                21.122870267782318
+              ], 
+              [
+                -118.71783569858549, 
+                21.123796498065367
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -116.7294428210983, 
+                21.033126317834316
+              ], 
+              [
+                -116.73522596159579, 
+                21.035744067626453
+              ], 
+              [
+                -116.74119418510699, 
+                21.036490344170733
+              ], 
+              [
+                -116.74200389888968, 
+                21.03478241260159
+              ], 
+              [
+                -116.74707920479608, 
+                21.034561488664718
+              ], 
+              [
+                -116.75763407167649, 
+                21.0394774185256
+              ], 
+              [
+                -116.76927243155367, 
+                21.04737698617398
+              ], 
+              [
+                -116.77056769148417, 
+                21.05126524860363
+              ], 
+              [
+                -116.77004990686471, 
+                21.053916213118512
+              ], 
+              [
+                -116.76738435895679, 
+                21.05675927692615
+              ], 
+              [
+                -116.76471898020176, 
+                21.05774833295588
+              ], 
+              [
+                -116.75181938567037, 
+                21.05395062020148
+              ], 
+              [
+                -116.74719341620526, 
+                21.050437831413376
+              ], 
+              [
+                -116.74498023142549, 
+                21.050382645451016
+              ], 
+              [
+                -116.74039775038051, 
+                21.053998278676165
+              ], 
+              [
+                -116.73797413667296, 
+                21.056805862420756
+              ], 
+              [
+                -116.73473690410414, 
+                21.064393669426146
+              ], 
+              [
+                -116.73573674963929, 
+                21.06954922381674
+              ], 
+              [
+                -116.73845851182493, 
+                21.0747105281422
+              ], 
+              [
+                -116.73839911862494, 
+                21.078056044167795
+              ], 
+              [
+                -116.73719232761856, 
+                21.08014599208543
+              ], 
+              [
+                -116.70121933673863, 
+                21.097339943839824
+              ], 
+              [
+                -116.69342801433528, 
+                21.09620229364249
+              ], 
+              [
+                -116.66999643643737, 
+                21.083171277352914
+              ], 
+              [
+                -116.65572751817461, 
+                21.062947633631158
+              ], 
+              [
+                -116.6480923048229, 
+                21.05170919996812
+              ], 
+              [
+                -116.64684170478834, 
+                21.04804943408343
+              ], 
+              [
+                -116.64680664568704, 
+                21.0390873836295
+              ], 
+              [
+                -116.6471400278934, 
+                21.03758400079387
+              ], 
+              [
+                -116.65891609220317, 
+                21.014331434972515
+              ], 
+              [
+                -116.66493191963629, 
+                21.005293056408757
+              ], 
+              [
+                -116.6711170740048, 
+                21.004753874958073
+              ], 
+              [
+                -116.67712953600551, 
+                21.00720628470443
+              ], 
+              [
+                -116.69596644491507, 
+                21.010418671897185
+              ], 
+              [
+                -116.69731461799992, 
+                21.010060144923177
+              ], 
+              [
+                -116.70122592780994, 
+                21.003852275616868
+              ], 
+              [
+                -116.70155868304124, 
+                21.000389413972904
+              ], 
+              [
+                -116.7003346588119, 
+                20.992804403078342
+              ], 
+              [
+                -116.69845911493029, 
+                20.990122693247763
+              ], 
+              [
+                -116.69433582023025, 
+                20.985963248750416
+              ], 
+              [
+                -116.6835889360031, 
+                20.979267755830648
+              ], 
+              [
+                -116.67115622376761, 
+                20.964947645252007
+              ], 
+              [
+                -116.66908219111282, 
+                20.96154938882585
+              ], 
+              [
+                -116.6684417687799, 
+                20.95962165843631
+              ], 
+              [
+                -116.67027291966876, 
+                20.94991162305739
+              ], 
+              [
+                -116.67163479210461, 
+                20.948562283691686
+              ], 
+              [
+                -116.67367090563651, 
+                20.948762776669223
+              ], 
+              [
+                -116.675662082008, 
+                20.952879979946847
+              ], 
+              [
+                -116.67713140763233, 
+                20.95481505937308
+              ], 
+              [
+                -116.68465078480142, 
+                20.959035949526186
+              ], 
+              [
+                -116.7014063485931, 
+                20.955509516020257
+              ], 
+              [
+                -116.704392133446, 
+                20.950132838087306
+              ], 
+              [
+                -116.72681341406124, 
+                20.954082827716295
+              ], 
+              [
+                -116.73519159598244, 
+                20.956256104627546
+              ], 
+              [
+                -116.73879304567959, 
+                20.95360433272571
+              ], 
+              [
+                -116.74312483515601, 
+                20.94813329019445
+              ], 
+              [
+                -116.74734018798328, 
+                20.940975600644904
+              ], 
+              [
+                -116.75432005745262, 
+                20.925780393979803
+              ], 
+              [
+                -116.76550136802729, 
+                20.93205181540105
+              ], 
+              [
+                -116.77994486763018, 
+                20.92981818429687
+              ], 
+              [
+                -116.7801033615165, 
+                20.926842995930585
+              ], 
+              [
+                -116.79244528454566, 
+                20.921795148919195
+              ], 
+              [
+                -116.79895591671408, 
+                20.923842068375443
+              ], 
+              [
+                -116.80246016297352, 
+                20.92625983575953
+              ], 
+              [
+                -116.80814842289908, 
+                20.920594024821874
+              ], 
+              [
+                -116.83386213792261, 
+                20.91105353041591
+              ], 
+              [
+                -116.839633657403, 
+                20.910124435123812
+              ], 
+              [
+                -116.85234521544741, 
+                20.92250701663759
+              ], 
+              [
+                -116.87955682741884, 
+                20.928894239519636
+              ], 
+              [
+                -116.90122751726841, 
+                20.92726148201821
+              ], 
+              [
+                -116.90978732209645, 
+                20.923532916136324
+              ], 
+              [
+                -116.91336284463885, 
+                20.9200568010984
+              ], 
+              [
+                -116.91318212011099, 
+                20.91364569198251
+              ], 
+              [
+                -116.93442616052664, 
+                20.91183919450756
+              ], 
+              [
+                -116.93694396059688, 
+                20.913269882918968
+              ], 
+              [
+                -116.9504762145593, 
+                20.917750765298468
+              ], 
+              [
+                -116.9820608465782, 
+                20.92283989787046
+              ], 
+              [
+                -116.98681069232605, 
+                20.92318705751268
+              ], 
+              [
+                -116.98882659871846, 
+                20.92149964062898
+              ], 
+              [
+                -116.98932168408669, 
+                20.919891149426146
+              ], 
+              [
+                -116.99472317324168, 
+                20.91830550546397
+              ], 
+              [
+                -116.99973858167587, 
+                20.925238334376395
+              ], 
+              [
+                -116.99596366897346, 
+                20.92759021838351
+              ], 
+              [
+                -116.96164226306007, 
+                20.937164857823635
+              ], 
+              [
+                -116.95138771106657, 
+                20.93954416394726
+              ], 
+              [
+                -116.94504394535024, 
+                20.93994609219956
+              ], 
+              [
+                -116.94088140558353, 
+                20.9374954563274
+              ], 
+              [
+                -116.94101319849912, 
+                20.936906280702487
+              ], 
+              [
+                -116.93987230112391, 
+                20.93358056053723
+              ], 
+              [
+                -116.93420437786754, 
+                20.927850829403198
+              ], 
+              [
+                -116.9217080641097, 
+                20.937900145924306
+              ], 
+              [
+                -116.90879662979431, 
+                20.939063081905953
+              ], 
+              [
+                -116.90798300596896, 
+                20.9376947704579
+              ], 
+              [
+                -116.9049052376343, 
+                20.938887222981442
+              ], 
+              [
+                -116.89379721328721, 
+                20.946263883863644
+              ], 
+              [
+                -116.88997923248155, 
+                20.952311474327544
+              ], 
+              [
+                -116.89150815883083, 
+                20.95702389261584
+              ], 
+              [
+                -116.8896419061779, 
+                20.960632383891777
+              ], 
+              [
+                -116.88588713498248, 
+                20.963851218789248
+              ], 
+              [
+                -116.87548439709774, 
+                20.95704298935057
+              ], 
+              [
+                -116.86817910526548, 
+                20.95110313054188
+              ], 
+              [
+                -116.85421415010427, 
+                20.95040994619204
+              ], 
+              [
+                -116.82002644173112, 
+                20.956614346135854
+              ], 
+              [
+                -116.80668404385256, 
+                20.962665684854567
+              ], 
+              [
+                -116.79732735629419, 
+                20.969915729639645
+              ], 
+              [
+                -116.7945890505913, 
+                20.97695596747071
+              ], 
+              [
+                -116.79406376860096, 
+                20.980120044024957
+              ], 
+              [
+                -116.7870238683718, 
+                20.986544156086687
+              ], 
+              [
+                -116.77913575628402, 
+                20.988277403757966
+              ], 
+              [
+                -116.77080813256669, 
+                20.988642466291928
+              ], 
+              [
+                -116.76824336338586, 
+                20.986688342654418
+              ], 
+              [
+                -116.75976791886553, 
+                20.98266802153063
+              ], 
+              [
+                -116.75746261714944, 
+                20.982720025927463
+              ], 
+              [
+                -116.7548441011754, 
+                20.98823642689303
+              ], 
+              [
+                -116.75511286787219, 
+                20.989298275449144
+              ], 
+              [
+                -116.76923000408114, 
+                20.998991071654526
+              ], 
+              [
+                -116.77075802012651, 
+                21.003862677087316
+              ], 
+              [
+                -116.76842635108771, 
+                21.006487694164946
+              ], 
+              [
+                -116.75430990753881, 
+                21.00597919493681
+              ], 
+              [
+                -116.74379937386769, 
+                21.00267398233374
+              ], 
+              [
+                -116.73533698670161, 
+                21.001680623332803
+              ], 
+              [
+                -116.72760257479452, 
+                21.00277963565962
+              ], 
+              [
+                -116.71515168757949, 
+                21.015931120993628
+              ], 
+              [
+                -116.71725899290534, 
+                21.030360163063825
+              ], 
+              [
+                -116.7294428210983, 
+                21.033126317834316
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -116.54271436394423, 
+                20.967389929035328
+              ], 
+              [
+                -116.53939759276133, 
+                20.963344507912886
+              ], 
+              [
+                -116.51841826220564, 
+                20.945282256064214
+              ], 
+              [
+                -116.51378251687738, 
+                20.942931463860013
+              ], 
+              [
+                -116.50636405238494, 
+                20.948728906010086
+              ], 
+              [
+                -116.48169864611312, 
+                20.94417896651978
+              ], 
+              [
+                -116.48175266312442, 
+                20.943293767451227
+              ], 
+              [
+                -116.48087274112389, 
+                20.941579524395237
+              ], 
+              [
+                -116.47673715015051, 
+                20.938352292253114
+              ], 
+              [
+                -116.44532532183905, 
+                20.93955614258668
+              ], 
+              [
+                -116.42832438600298, 
+                20.943221051702654
+              ], 
+              [
+                -116.41545766118762, 
+                20.943044923189166
+              ], 
+              [
+                -116.41402715988013, 
+                20.942168353915516
+              ], 
+              [
+                -116.41068520373335, 
+                20.938164001547165
+              ], 
+              [
+                -116.3997881824952, 
+                20.936524998197093
+              ], 
+              [
+                -116.38744002909547, 
+                20.93697717967554
+              ], 
+              [
+                -116.37118723322615, 
+                20.934635227749034
+              ], 
+              [
+                -116.37161144491377, 
+                20.931526850575853
+              ], 
+              [
+                -116.39045962999093, 
+                20.926102090945232
+              ], 
+              [
+                -116.39423071819306, 
+                20.925583481482665
+              ], 
+              [
+                -116.41033985615911, 
+                20.928538219056076
+              ], 
+              [
+                -116.43613665209581, 
+                20.92196600103974
+              ], 
+              [
+                -116.46429587669037, 
+                20.920414475464103
+              ], 
+              [
+                -116.49323983614204, 
+                20.915367585902416
+              ], 
+              [
+                -116.51611951594579, 
+                20.9089572348097
+              ], 
+              [
+                -116.5257275027511, 
+                20.908314371325147
+              ], 
+              [
+                -116.54303971399003, 
+                20.919114684924757
+              ], 
+              [
+                -116.57132419232185, 
+                20.925619384911354
+              ], 
+              [
+                -116.59269904630624, 
+                20.921894221862562
+              ], 
+              [
+                -116.59720189653646, 
+                20.919640773493406
+              ], 
+              [
+                -116.59807107903534, 
+                20.91721094004742
+              ], 
+              [
+                -116.60089198064702, 
+                20.916107422672585
+              ], 
+              [
+                -116.61945478695333, 
+                20.920832094637486
+              ], 
+              [
+                -116.62917900603192, 
+                20.92497910198363
+              ], 
+              [
+                -116.62887908494386, 
+                20.928365617201084
+              ], 
+              [
+                -116.63901617212403, 
+                20.94506259405761
+              ], 
+              [
+                -116.6445713652045, 
+                20.94581275013125
+              ], 
+              [
+                -116.64704783483846, 
+                20.944515794720377
+              ], 
+              [
+                -116.64957363556113, 
+                20.945183856494634
+              ], 
+              [
+                -116.65611639880181, 
+                20.952059854926325
+              ], 
+              [
+                -116.65937818997843, 
+                20.956631163024706
+              ], 
+              [
+                -116.6609947481457, 
+                20.96045659169379
+              ], 
+              [
+                -116.66002756823882, 
+                20.96160214615582
+              ], 
+              [
+                -116.65702298292582, 
+                20.962885831265247
+              ], 
+              [
+                -116.64298075097507, 
+                20.958588076999945
+              ], 
+              [
+                -116.61824387721188, 
+                20.95657513036991
+              ], 
+              [
+                -116.60214211527195, 
+                20.948945682314115
+              ], 
+              [
+                -116.60024832850984, 
+                20.946735700273432
+              ], 
+              [
+                -116.59870272522258, 
+                20.946433929927583
+              ], 
+              [
+                -116.59451324864234, 
+                20.946774766048506
+              ], 
+              [
+                -116.5735905222714, 
+                20.95728563668108
+              ], 
+              [
+                -116.55627047931804, 
+                20.964248611033753
+              ], 
+              [
+                -116.54857464137874, 
+                20.966838709789126
+              ], 
+              [
+                -116.54271436394423, 
+                20.967389929035328
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -118.91600120905498, 
+                21.167770162246942
+              ], 
+              [
+                -118.9217806274531, 
+                21.17059761534911
+              ], 
+              [
+                -118.92457425265653, 
+                21.17358104450399
+              ], 
+              [
+                -118.92852107471639, 
+                21.17900467571458
+              ], 
+              [
+                -118.93200128598981, 
+                21.18527227739637
+              ], 
+              [
+                -118.93352910504962, 
+                21.191287786493387
+              ], 
+              [
+                -118.93403341675017, 
+                21.19780041485128
+              ], 
+              [
+                -118.93340175568368, 
+                21.201303099590493
+              ], 
+              [
+                -118.93133246920159, 
+                21.205280968649532
+              ], 
+              [
+                -118.9265457158161, 
+                21.210151220565823
+              ], 
+              [
+                -118.92021061428396, 
+                21.21410334581922
+              ], 
+              [
+                -118.91719427036192, 
+                21.215327849648233
+              ], 
+              [
+                -118.91009104581369, 
+                21.21647637131904
+              ], 
+              [
+                -118.90588368948531, 
+                21.215257666734672
+              ], 
+              [
+                -118.89951708027546, 
+                21.21097682268954
+              ], 
+              [
+                -118.89538937081832, 
+                21.205273498134474
+              ], 
+              [
+                -118.89250214667587, 
+                21.199832661760347
+              ], 
+              [
+                -118.8907135050685, 
+                21.193905494406884
+              ], 
+              [
+                -118.89110110033745, 
+                21.184077876858016
+              ], 
+              [
+                -118.89226108130592, 
+                21.17987790038145
+              ], 
+              [
+                -118.89441306647896, 
+                21.17630125307751
+              ], 
+              [
+                -118.89631367903932, 
+                21.174105093197007
+              ], 
+              [
+                -118.90359561791628, 
+                21.169584059887846
+              ], 
+              [
+                -118.90767712147513, 
+                21.168148601807136
+              ], 
+              [
+                -118.91600120905498, 
+                21.167770162246942
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -116.28965704934075, 
+                21.01421558868349
+              ], 
+              [
+                -116.28710170070212, 
+                21.029467240443314
+              ], 
+              [
+                -116.27616511403127, 
+                21.051179430939893
+              ], 
+              [
+                -116.27466487711618, 
+                21.05308105462404
+              ], 
+              [
+                -116.25097386945106, 
+                21.068857255453146
+              ], 
+              [
+                -116.24422443440731, 
+                21.072366306512137
+              ], 
+              [
+                -116.23287693787142, 
+                21.071267173372462
+              ], 
+              [
+                -116.21152604403167, 
+                21.060189727585122
+              ], 
+              [
+                -116.20730097662113, 
+                21.055429948537036
+              ], 
+              [
+                -116.20453753674761, 
+                21.048770191408888
+              ], 
+              [
+                -116.20394817610892, 
+                21.042932792055343
+              ], 
+              [
+                -116.20677332209338, 
+                21.03861819218029
+              ], 
+              [
+                -116.23226951301676, 
+                21.01828904964556
+              ], 
+              [
+                -116.26164378436138, 
+                21.008182529979667
+              ], 
+              [
+                -116.2829280200627, 
+                21.00789817515844
+              ], 
+              [
+                -116.2850723941353, 
+                21.009016127647868
+              ], 
+              [
+                -116.28965704934075, 
+                21.01421558868349
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -119.28210850139406, 
+                21.362122355167312
+              ], 
+              [
+                -119.28423485964034, 
+                21.363501916232362
+              ], 
+              [
+                -119.28707975011136, 
+                21.36776486394847
+              ], 
+              [
+                -119.29096679168681, 
+                21.376531678756045
+              ], 
+              [
+                -119.2903479740911, 
+                21.38115297738835
+              ], 
+              [
+                -119.28183667986266, 
+                21.38169586058306
+              ], 
+              [
+                -119.27079759903349, 
+                21.376001805257907
+              ], 
+              [
+                -119.26698587493891, 
+                21.37110017166241
+              ], 
+              [
+                -119.27356627830066, 
+                21.361203089679723
+              ], 
+              [
+                -119.28210850139406, 
+                21.362122355167312
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -119.87269701863563, 
+                21.559542892824823
+              ], 
+              [
+                -119.86195412274768, 
+                21.571601847792437
+              ], 
+              [
+                -119.84719051658458, 
+                21.570968798564998
+              ], 
+              [
+                -119.83299451562927, 
+                21.567389726891626
+              ], 
+              [
+                -119.824524540463, 
+                21.565223102797386
+              ], 
+              [
+                -119.82378632187283, 
+                21.56399961872402
+              ], 
+              [
+                -119.82403235540346, 
+                21.562590840022228
+              ], 
+              [
+                -119.82899650191749, 
+                21.55855300571983
+              ], 
+              [
+                -119.83311747140462, 
+                21.55813455488071
+              ], 
+              [
+                -119.84196331013912, 
+                21.552530956011047
+              ], 
+              [
+                -119.84592017150304, 
+                21.544532304363653
+              ], 
+              [
+                -119.84759592632892, 
+                21.53863074420213
+              ], 
+              [
+                -119.84736497329229, 
+                21.53506815011922
+              ], 
+              [
+                -119.84540483972778, 
+                21.53272015646232
+              ], 
+              [
+                -119.84500609103935, 
+                21.531360571769383
+              ], 
+              [
+                -119.8434859927623, 
+                21.52559584246013
+              ], 
+              [
+                -119.84284641749984, 
+                21.514144102910926
+              ], 
+              [
+                -119.84312201628053, 
+                21.494290838377125
+              ], 
+              [
+                -119.86219164228207, 
+                21.49869676111015
+              ], 
+              [
+                -119.86379792940956, 
+                21.49967245374099
+              ], 
+              [
+                -119.8647268550776, 
+                21.500779324676888
+              ], 
+              [
+                -119.87254598592021, 
+                21.511755458664233
+              ], 
+              [
+                -119.87479982484263, 
+                21.51890318715765
+              ], 
+              [
+                -119.87605168896033, 
+                21.523601410720012
+              ], 
+              [
+                -119.8834367590785, 
+                21.52545572982212
+              ], 
+              [
+                -119.88797061645296, 
+                21.522419595443623
+              ], 
+              [
+                -119.8964301612985, 
+                21.52074487211241
+              ], 
+              [
+                -119.90375135618163, 
+                21.52174883990758
+              ], 
+              [
+                -119.9084037452653, 
+                21.523416888887045
+              ], 
+              [
+                -119.91067899999484, 
+                21.526404926364595
+              ], 
+              [
+                -119.92540736857764, 
+                21.53625443365497
+              ], 
+              [
+                -119.9278416209305, 
+                21.537533830042833
+              ], 
+              [
+                -119.93520835403373, 
+                21.539220307459946
+              ], 
+              [
+                -119.93533529761808, 
+                21.540070730957133
+              ], 
+              [
+                -119.927911427811, 
+                21.551018966451313
+              ], 
+              [
+                -119.91149112952553, 
+                21.557635670997925
+              ], 
+              [
+                -119.9099971287146, 
+                21.557938534736266
+              ], 
+              [
+                -119.90489571217351, 
+                21.55159127284753
+              ], 
+              [
+                -119.9028381498454, 
+                21.549853460827038
+              ], 
+              [
+                -119.89655419270228, 
+                21.547867971688436
+              ], 
+              [
+                -119.89003316692282, 
+                21.549800517052965
+              ], 
+              [
+                -119.88868043515394, 
+                21.55036415471771
+              ], 
+              [
+                -119.88276264452132, 
+                21.55723662084857
+              ], 
+              [
+                -119.88272150226973, 
+                21.55864316174906
+              ], 
+              [
+                -119.88352710544264, 
+                21.56174963072689
+              ], 
+              [
+                -119.88069201124462, 
+                21.562754555894067
+              ], 
+              [
+                -119.87269701863563, 
+                21.559542892824823
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.94257473861659, 
+                21.09859124009017
+              ], 
+              [
+                -115.94375845179778, 
+                21.09746648126084
+              ], 
+              [
+                -115.94506623030493, 
+                21.0980438135296
+              ], 
+              [
+                -115.94814698630472, 
+                21.10882848850097
+              ], 
+              [
+                -115.948693363661, 
+                21.118487223268545
+              ], 
+              [
+                -115.94759430664335, 
+                21.12225205202436
+              ], 
+              [
+                -115.9437872632134, 
+                21.12850583673504
+              ], 
+              [
+                -115.94030283651446, 
+                21.132187025461104
+              ], 
+              [
+                -115.93394405623492, 
+                21.135641532956107
+              ], 
+              [
+                -115.91826081985228, 
+                21.12167731642596
+              ], 
+              [
+                -115.91783256587118, 
+                21.120708329312514
+              ], 
+              [
+                -115.92064035314337, 
+                21.10707269028706
+              ], 
+              [
+                -115.92193817266524, 
+                21.104380586425133
+              ], 
+              [
+                -115.92738021630272, 
+                21.098363804760716
+              ], 
+              [
+                -115.93141470704154, 
+                21.09785262934897
+              ], 
+              [
+                -115.94257473861659, 
+                21.09859124009017
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.82721742523488, 
+                21.14951296535918
+              ], 
+              [
+                -115.8263948869735, 
+                21.1691506828485
+              ], 
+              [
+                -115.82418589182674, 
+                21.184712594926125
+              ], 
+              [
+                -115.82358706586288, 
+                21.186212730891647
+              ], 
+              [
+                -115.80144368192325, 
+                21.206940455353333
+              ], 
+              [
+                -115.78736009333988, 
+                21.215587195565075
+              ], 
+              [
+                -115.77744561619046, 
+                21.21541016855586
+              ], 
+              [
+                -115.7628095959426, 
+                21.2083360680802
+              ], 
+              [
+                -115.75805593376955, 
+                21.20499475615273
+              ], 
+              [
+                -115.75697262792526, 
+                21.201779860365207
+              ], 
+              [
+                -115.75583909494345, 
+                21.194376779422004
+              ], 
+              [
+                -115.75708389254979, 
+                21.18901032740057
+              ], 
+              [
+                -115.76626246925008, 
+                21.170601904915163
+              ], 
+              [
+                -115.7743281789939, 
+                21.167679150453925
+              ], 
+              [
+                -115.7804581106567, 
+                21.166716374774207
+              ], 
+              [
+                -115.78214172359718, 
+                21.16737746583845
+              ], 
+              [
+                -115.78306778364083, 
+                21.169909895246995
+              ], 
+              [
+                -115.7848351010513, 
+                21.17116132463124
+              ], 
+              [
+                -115.78726935374878, 
+                21.1707118946263
+              ], 
+              [
+                -115.79043960767368, 
+                21.168742769798772
+              ], 
+              [
+                -115.80014998732456, 
+                21.160405784318524
+              ], 
+              [
+                -115.80764996282238, 
+                21.149735094371383
+              ], 
+              [
+                -115.80981297898991, 
+                21.144272869209335
+              ], 
+              [
+                -115.81257177808737, 
+                21.14123028319601
+              ], 
+              [
+                -115.82721742523488, 
+                21.14951296535918
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -119.73754608505568, 
+                21.65282619008509
+              ], 
+              [
+                -119.73138511700634, 
+                21.654875256429644
+              ], 
+              [
+                -119.73015360381287, 
+                21.655280922231707
+              ], 
+              [
+                -119.72132327524201, 
+                21.648552846655555
+              ], 
+              [
+                -119.71847002865722, 
+                21.645362999294846
+              ], 
+              [
+                -119.71642902946559, 
+                21.63851858682563
+              ], 
+              [
+                -119.7159136744275, 
+                21.634534895441
+              ], 
+              [
+                -119.71625722055836, 
+                21.633971104802267
+              ], 
+              [
+                -119.72854911903254, 
+                21.63800709503603
+              ], 
+              [
+                -119.73765358947738, 
+                21.64481893011775
+              ], 
+              [
+                -119.73848878745365, 
+                21.651182301975922
+              ], 
+              [
+                -119.73754608505568, 
+                21.65282619008509
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.65943881545712, 
+                21.258191585799814
+              ], 
+              [
+                -115.6485607737873, 
+                21.25956693926383
+              ], 
+              [
+                -115.63056693079501, 
+                21.253387355115052
+              ], 
+              [
+                -115.62819711158531, 
+                21.25134615297235
+              ], 
+              [
+                -115.62767310297673, 
+                21.24650842177734
+              ], 
+              [
+                -115.62782857000822, 
+                21.240471414097545
+              ], 
+              [
+                -115.63092250717249, 
+                21.230280677794703
+              ], 
+              [
+                -115.63272573366139, 
+                21.228422232596454
+              ], 
+              [
+                -115.64208251552297, 
+                21.22625029008522
+              ], 
+              [
+                -115.6569317692156, 
+                21.22653121484365
+              ], 
+              [
+                -115.66074429255467, 
+                21.22861078718242
+              ], 
+              [
+                -115.66107701101535, 
+                21.22910697032177
+              ], 
+              [
+                -115.65943881545712, 
+                21.258191585799814
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -119.75463285967867, 
+                21.64950697838903
+              ], 
+              [
+                -119.76237558755255, 
+                21.655938631082243
+              ], 
+              [
+                -119.76493977008231, 
+                21.66075498525163
+              ], 
+              [
+                -119.76652899182032, 
+                21.66584656531638
+              ], 
+              [
+                -119.76603399733054, 
+                21.667438270933527
+              ], 
+              [
+                -119.7586830418128, 
+                21.664584976826497
+              ], 
+              [
+                -119.75376937179854, 
+                21.661133142396768
+              ], 
+              [
+                -119.74984406147867, 
+                21.65344519338131
+              ], 
+              [
+                -119.75463285967867, 
+                21.64950697838903
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -119.77163928723645, 
+                21.666440289223868
+              ], 
+              [
+                -119.7719792845359, 
+                21.668252588256014
+              ], 
+              [
+                -119.77330712347137, 
+                21.669631190354472
+              ], 
+              [
+                -119.78114413899408, 
+                21.670663625227455
+              ], 
+              [
+                -119.78547778417726, 
+                21.67706487872886
+              ], 
+              [
+                -119.78845073968395, 
+                21.683421405953776
+              ], 
+              [
+                -119.78690646338937, 
+                21.683809291255713
+              ], 
+              [
+                -119.78336097098271, 
+                21.682929075986877
+              ], 
+              [
+                -119.77944326323384, 
+                21.680437634076956
+              ], 
+              [
+                -119.77141479969976, 
+                21.67216345095266
+              ], 
+              [
+                -119.7695811064086, 
+                21.668483605426687
+              ], 
+              [
+                -119.77163928723645, 
+                21.666440289223868
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -120.06421294388237, 
+                21.775142409517144
+              ], 
+              [
+                -120.06183871734113, 
+                21.786563173760577
+              ], 
+              [
+                -120.06122858379723, 
+                21.79336372016091
+              ], 
+              [
+                -120.0635583861427, 
+                21.801167318987247
+              ], 
+              [
+                -120.0896267495119, 
+                21.83116725638319
+              ], 
+              [
+                -120.10380197086337, 
+                21.83280956824102
+              ], 
+              [
+                -120.11336935391623, 
+                21.831866373825758
+              ], 
+              [
+                -120.12288994033034, 
+                21.82987621459737
+              ], 
+              [
+                -120.13362825517636, 
+                21.835658610961147
+              ], 
+              [
+                -120.13458069250821, 
+                21.84361404575477
+              ], 
+              [
+                -120.08820341781667, 
+                21.867746353699197
+              ], 
+              [
+                -120.08442502945579, 
+                21.86855482337218
+              ], 
+              [
+                -120.0580928530543, 
+                21.86462278134694
+              ], 
+              [
+                -119.9681606527362, 
+                21.833445660785205
+              ], 
+              [
+                -119.96459783064898, 
+                21.831162247312538
+              ], 
+              [
+                -119.96234793470714, 
+                21.829227652934488
+              ], 
+              [
+                -119.95596374449403, 
+                21.821153225251397
+              ], 
+              [
+                -119.95347030190125, 
+                21.81391908540179
+              ], 
+              [
+                -119.94465359966503, 
+                21.80151119310582
+              ], 
+              [
+                -119.93849555228533, 
+                21.802003727815805
+              ], 
+              [
+                -119.93439996111886, 
+                21.801352035726396
+              ], 
+              [
+                -119.92417860423639, 
+                21.790403205157872
+              ], 
+              [
+                -119.89645892104662, 
+                21.74407120126179
+              ], 
+              [
+                -119.89569680108893, 
+                21.73674566441634
+              ], 
+              [
+                -119.89677316883088, 
+                21.73605367528702
+              ], 
+              [
+                -119.89955687495616, 
+                21.73628865109598
+              ], 
+              [
+                -119.92783474000427, 
+                21.740946275498075
+              ], 
+              [
+                -119.93213057418299, 
+                21.744254432370074
+              ], 
+              [
+                -119.94466793279985, 
+                21.761038374031624
+              ], 
+              [
+                -119.94592506238212, 
+                21.76146777964538
+              ], 
+              [
+                -119.9511528763653, 
+                21.759116894415
+              ], 
+              [
+                -119.95636999232363, 
+                21.751946906349023
+              ], 
+              [
+                -119.96144359518915, 
+                21.740025620407664
+              ], 
+              [
+                -119.96360698923658, 
+                21.73611602782096
+              ], 
+              [
+                -119.97021509311759, 
+                21.733389913982688
+              ], 
+              [
+                -119.97238164222442, 
+                21.73300451755602
+              ], 
+              [
+                -119.97642126993229, 
+                21.734045239195293
+              ], 
+              [
+                -120.00617121590612, 
+                21.747541631290883
+              ], 
+              [
+                -120.03208307917325, 
+                21.73687276135316
+              ], 
+              [
+                -120.05444936758023, 
+                21.755948963822537
+              ], 
+              [
+                -120.06421294388237, 
+                21.775142409517144
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.6029407786275, 
+                21.295044702231138
+              ], 
+              [
+                -115.59275157973248, 
+                21.29157442860752
+              ], 
+              [
+                -115.58109002716796, 
+                21.294241088361062
+              ], 
+              [
+                -115.57087590725095, 
+                21.303888623250682
+              ], 
+              [
+                -115.55984453708251, 
+                21.31165341201654
+              ], 
+              [
+                -115.55345223736728, 
+                21.311250295587186
+              ], 
+              [
+                -115.54158540900879, 
+                21.308253719358913
+              ], 
+              [
+                -115.53075288219499, 
+                21.298236002368927
+              ], 
+              [
+                -115.53370519238474, 
+                21.28045894970002
+              ], 
+              [
+                -115.53781236391096, 
+                21.265023520819707
+              ], 
+              [
+                -115.54971458776366, 
+                21.263155243753307
+              ], 
+              [
+                -115.57377368033272, 
+                21.275121753511616
+              ], 
+              [
+                -115.58460618272407, 
+                21.274319409596433
+              ], 
+              [
+                -115.58609655034519, 
+                21.27075546211319
+              ], 
+              [
+                -115.58857042030914, 
+                21.26768291244379
+              ], 
+              [
+                -115.59614714863324, 
+                21.263081208837676
+              ], 
+              [
+                -115.60228010516047, 
+                21.261045187370108
+              ], 
+              [
+                -115.6053043483374, 
+                21.26157597092562
+              ], 
+              [
+                -115.61436813664719, 
+                21.268330240833848
+              ], 
+              [
+                -115.61982211638494, 
+                21.280648017581623
+              ], 
+              [
+                -115.61824694427233, 
+                21.287991988860806
+              ], 
+              [
+                -115.61493098035389, 
+                21.292528184056017
+              ], 
+              [
+                -115.61116471725494, 
+                21.293833939016316
+              ], 
+              [
+                -115.6029407786275, 
+                21.295044702231138
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.16889786831713, 
+                21.49471858488454
+              ], 
+              [
+                -115.17277811692195, 
+                21.493905558516644
+              ], 
+              [
+                -115.18359554992813, 
+                21.487791280283517
+              ], 
+              [
+                -115.18950066626073, 
+                21.4802264464751
+              ], 
+              [
+                -115.19314763728978, 
+                21.474437174122475
+              ], 
+              [
+                -115.19943082180049, 
+                21.460413310213333
+              ], 
+              [
+                -115.19877327977179, 
+                21.446046117787738
+              ], 
+              [
+                -115.2050380802268, 
+                21.43342980726625
+              ], 
+              [
+                -115.2097969539763, 
+                21.43074827315112
+              ], 
+              [
+                -115.21445144317526, 
+                21.424487495914093
+              ], 
+              [
+                -115.2192146567192, 
+                21.416430325001148
+              ], 
+              [
+                -115.22121225943577, 
+                21.41241955556862
+              ], 
+              [
+                -115.22290414648072, 
+                21.407456213801897
+              ], 
+              [
+                -115.22358554769494, 
+                21.398379790678366
+              ], 
+              [
+                -115.2331815861642, 
+                21.388394154103093
+              ], 
+              [
+                -115.24066459974074, 
+                21.384888490800243
+              ], 
+              [
+                -115.24556518012221, 
+                21.38515275604623
+              ], 
+              [
+                -115.24758787945763, 
+                21.386813001227022
+              ], 
+              [
+                -115.25412800465047, 
+                21.384961900382077
+              ], 
+              [
+                -115.25632702600697, 
+                21.38358811793292
+              ], 
+              [
+                -115.26232418725593, 
+                21.37471825148772
+              ], 
+              [
+                -115.26479908360332, 
+                21.36966584315001
+              ], 
+              [
+                -115.27986833401383, 
+                21.35415066345752
+              ], 
+              [
+                -115.29312864578084, 
+                21.34662263909021
+              ], 
+              [
+                -115.30949724909603, 
+                21.334118184106856
+              ], 
+              [
+                -115.3332873720728, 
+                21.313499468518632
+              ], 
+              [
+                -115.36645807545379, 
+                21.291385309452235
+              ], 
+              [
+                -115.38179461552724, 
+                21.283830510218852
+              ], 
+              [
+                -115.37084458067568, 
+                21.302454793372608
+              ], 
+              [
+                -115.36707471921828, 
+                21.305583585406705
+              ], 
+              [
+                -115.35512980329837, 
+                21.307768396650197
+              ], 
+              [
+                -115.34992320773175, 
+                21.310102796886113
+              ], 
+              [
+                -115.34694393466134, 
+                21.313969655668078
+              ], 
+              [
+                -115.32492690433756, 
+                21.353221644814752
+              ], 
+              [
+                -115.30849358710151, 
+                21.389940979983518
+              ], 
+              [
+                -115.30400684067698, 
+                21.402267962852836
+              ], 
+              [
+                -115.30342030594007, 
+                21.407214882262274
+              ], 
+              [
+                -115.30624899366235, 
+                21.4128416945144
+              ], 
+              [
+                -115.30840865611458, 
+                21.41467552943528
+              ], 
+              [
+                -115.31198996789709, 
+                21.416044967122563
+              ], 
+              [
+                -115.31557751971316, 
+                21.419315460533618
+              ], 
+              [
+                -115.3168282302256, 
+                21.424798854432886
+              ], 
+              [
+                -115.31643377433507, 
+                21.4359667574964
+              ], 
+              [
+                -115.31508868972426, 
+                21.441610184071397
+              ], 
+              [
+                -115.31437639238061, 
+                21.443995313056234
+              ], 
+              [
+                -115.30872024301736, 
+                21.454553683344244
+              ], 
+              [
+                -115.27417589637717, 
+                21.492538940840117
+              ], 
+              [
+                -115.25362431667008, 
+                21.488986575628857
+              ], 
+              [
+                -115.24991858852673, 
+                21.48943694924214
+              ], 
+              [
+                -115.24401632559085, 
+                21.49203563415001
+              ], 
+              [
+                -115.2416121525445, 
+                21.495261733082557
+              ], 
+              [
+                -115.22978422075957, 
+                21.49636975106038
+              ], 
+              [
+                -115.22110159194668, 
+                21.493229485085298
+              ], 
+              [
+                -115.20883459343871, 
+                21.4910138161052
+              ], 
+              [
+                -115.20761086188786, 
+                21.49117363476767
+              ], 
+              [
+                -115.20344928262102, 
+                21.495994017823527
+              ], 
+              [
+                -115.21108237905524, 
+                21.51768775648255
+              ], 
+              [
+                -115.212923094214, 
+                21.52111265532656
+              ], 
+              [
+                -115.21415255747148, 
+                21.52186517067168
+              ], 
+              [
+                -115.22337902109373, 
+                21.534655210551747
+              ], 
+              [
+                -115.22204349749315, 
+                21.574623584639795
+              ], 
+              [
+                -115.2124440833829, 
+                21.59589691757257
+              ], 
+              [
+                -115.20591651984698, 
+                21.59886596496539
+              ], 
+              [
+                -115.20106682364454, 
+                21.602513424212898
+              ], 
+              [
+                -115.18787130477106, 
+                21.61688852852599
+              ], 
+              [
+                -115.18770004971876, 
+                21.618495691011212
+              ], 
+              [
+                -115.17847801632871, 
+                21.624613011332627
+              ], 
+              [
+                -115.1645956824041, 
+                21.630516062923512
+              ], 
+              [
+                -115.12946466835017, 
+                21.641848307402913
+              ], 
+              [
+                -115.12319216185094, 
+                21.64011004412432
+              ], 
+              [
+                -115.11812537500565, 
+                21.63676611988357
+              ], 
+              [
+                -115.11757627601418, 
+                21.636080022214045
+              ], 
+              [
+                -115.11841048402334, 
+                21.631768193080468
+              ], 
+              [
+                -115.11802939015834, 
+                21.629663508004025
+              ], 
+              [
+                -115.11076353047551, 
+                21.624381841782043
+              ], 
+              [
+                -115.10090249644202, 
+                21.621858699887603
+              ], 
+              [
+                -115.09752095366207, 
+                21.621640602659667
+              ], 
+              [
+                -115.07890177701202, 
+                21.621742857328574
+              ], 
+              [
+                -115.07385883514995, 
+                21.62347998246148
+              ], 
+              [
+                -115.07235146003408, 
+                21.623538389289788
+              ], 
+              [
+                -115.07178981974899, 
+                21.622747449022494
+              ], 
+              [
+                -115.07081996716128, 
+                21.62024866088114
+              ], 
+              [
+                -115.06962908143619, 
+                21.61428405819305
+              ], 
+              [
+                -115.07024815631142, 
+                21.61020278911789
+              ], 
+              [
+                -115.0745538183195, 
+                21.60128772416051
+              ], 
+              [
+                -115.08278276316868, 
+                21.591513110847185
+              ], 
+              [
+                -115.0848721290347, 
+                21.587459084640063
+              ], 
+              [
+                -115.08583976841766, 
+                21.583866485820387
+              ], 
+              [
+                -115.08501853308518, 
+                21.5795457537616
+              ], 
+              [
+                -115.08334680367537, 
+                21.57617141964338
+              ], 
+              [
+                -115.08138997026107, 
+                21.574515523528273
+              ], 
+              [
+                -115.07969016338215, 
+                21.571237198754638
+              ], 
+              [
+                -115.07904051754858, 
+                21.563817059325174
+              ], 
+              [
+                -115.07929915964381, 
+                21.560079479989678
+              ], 
+              [
+                -115.08147173210675, 
+                21.556128231793174
+              ], 
+              [
+                -115.08630269298702, 
+                21.550760847087037
+              ], 
+              [
+                -115.08763875340826, 
+                21.550479886787855
+              ], 
+              [
+                -115.10741342936284, 
+                21.537734997610123
+              ], 
+              [
+                -115.11445286506986, 
+                21.531669839952972
+              ], 
+              [
+                -115.11927030793265, 
+                21.52566412443634
+              ], 
+              [
+                -115.12655625749039, 
+                21.519227433937605
+              ], 
+              [
+                -115.15574963956469, 
+                21.50072061503291
+              ], 
+              [
+                -115.16889786831713, 
+                21.49471858488454
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.6179620858709, 
+                21.308989193243256
+              ], 
+              [
+                -115.61830544968481, 
+                21.30549040579761
+              ], 
+              [
+                -115.61901785617437, 
+                21.303695151177887
+              ], 
+              [
+                -115.62207556049489, 
+                21.298950912121974
+              ], 
+              [
+                -115.63067016291555, 
+                21.292761730609076
+              ], 
+              [
+                -115.64292752201187, 
+                21.298823739581056
+              ], 
+              [
+                -115.64833200687285, 
+                21.30821542725078
+              ], 
+              [
+                -115.64864718392522, 
+                21.313355500233964
+              ], 
+              [
+                -115.64390450087429, 
+                21.321583206154877
+              ], 
+              [
+                -115.64191377866044, 
+                21.323616488415286
+              ], 
+              [
+                -115.63216522613695, 
+                21.323902583417198
+              ], 
+              [
+                -115.62512152483725, 
+                21.32090465949632
+              ], 
+              [
+                -115.62005271479431, 
+                21.31766058979209
+              ], 
+              [
+                -115.61817885162434, 
+                21.31410129844523
+              ], 
+              [
+                -115.6179620858709, 
+                21.308989193243256
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.54837880708014, 
+                21.336637837448148
+              ], 
+              [
+                -115.55359145505226, 
+                21.33857547574516
+              ], 
+              [
+                -115.55860225232229, 
+                21.345839909407378
+              ], 
+              [
+                -115.55947519626177, 
+                21.347841805425194
+              ], 
+              [
+                -115.56024870345145, 
+                21.35087085671671
+              ], 
+              [
+                -115.55748409788696, 
+                21.371309226747137
+              ], 
+              [
+                -115.55674951393785, 
+                21.372547395545894
+              ], 
+              [
+                -115.54556632324325, 
+                21.377368417361442
+              ], 
+              [
+                -115.54090844821566, 
+                21.378089489775196
+              ], 
+              [
+                -115.53655063136442, 
+                21.37298718098736
+              ], 
+              [
+                -115.53609340074972, 
+                21.371724564588014
+              ], 
+              [
+                -115.5358091468412, 
+                21.360381559838473
+              ], 
+              [
+                -115.54269357740273, 
+                21.342007087753533
+              ], 
+              [
+                -115.54837880708014, 
+                21.336637837448148
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -114.8232823635754, 
+                21.863796088509762
+              ], 
+              [
+                -114.8106613309633, 
+                21.871317744031355
+              ], 
+              [
+                -114.80234010856907, 
+                21.87048812349255
+              ], 
+              [
+                -114.80024925357736, 
+                21.869454990339587
+              ], 
+              [
+                -114.79531309828664, 
+                21.864745066128528
+              ], 
+              [
+                -114.7893531926007, 
+                21.85690050376439
+              ], 
+              [
+                -114.78491779787682, 
+                21.846005531084554
+              ], 
+              [
+                -114.7892994625284, 
+                21.843616768343484
+              ], 
+              [
+                -114.79344468778669, 
+                21.8425887828479
+              ], 
+              [
+                -114.79824942556003, 
+                21.828227436429227
+              ], 
+              [
+                -114.79605415296881, 
+                21.823089451329217
+              ], 
+              [
+                -114.78958378318137, 
+                21.814605032218562
+              ], 
+              [
+                -114.78350674563538, 
+                21.81054192672719
+              ], 
+              [
+                -114.77760519321049, 
+                21.80870555181488
+              ], 
+              [
+                -114.77385792777127, 
+                21.80873964276025
+              ], 
+              [
+                -114.75611815998191, 
+                21.817751802612875
+              ], 
+              [
+                -114.74556886413386, 
+                21.825165403940723
+              ], 
+              [
+                -114.74407073072193, 
+                21.82827983147788
+              ], 
+              [
+                -114.74394318314413, 
+                21.83028769282258
+              ], 
+              [
+                -114.74628224741008, 
+                21.846644112777593
+              ], 
+              [
+                -114.7329370921664, 
+                21.87306003412617
+              ], 
+              [
+                -114.73128751164505, 
+                21.87264582240937
+              ], 
+              [
+                -114.7283017464338, 
+                21.86977730901236
+              ], 
+              [
+                -114.72748876076199, 
+                21.868284744757574
+              ], 
+              [
+                -114.72723361168538, 
+                21.866650307379224
+              ], 
+              [
+                -114.72769253712065, 
+                21.858001757758316
+              ], 
+              [
+                -114.71656522697783, 
+                21.850803185532676
+              ], 
+              [
+                -114.7074067821866, 
+                21.86195197528374
+              ], 
+              [
+                -114.70333854391237, 
+                21.859903870213294
+              ], 
+              [
+                -114.68730110732744, 
+                21.840421242694593
+              ], 
+              [
+                -114.6865008777653, 
+                21.838393726113555
+              ], 
+              [
+                -114.68622522347616, 
+                21.830548298018886
+              ], 
+              [
+                -114.69103915334426, 
+                21.81567371363892
+              ], 
+              [
+                -114.69449064831237, 
+                21.813321256354264
+              ], 
+              [
+                -114.711784367021, 
+                21.808662718649053
+              ], 
+              [
+                -114.7193935069635, 
+                21.80297421826501
+              ], 
+              [
+                -114.72753380262654, 
+                21.790128469098295
+              ], 
+              [
+                -114.7303393829368, 
+                21.77915138587766
+              ], 
+              [
+                -114.73741896816212, 
+                21.773348726301528
+              ], 
+              [
+                -114.76374650709738, 
+                21.748764106467917
+              ], 
+              [
+                -114.7638410514035, 
+                21.738956026042707
+              ], 
+              [
+                -114.76021495916187, 
+                21.733306606239942
+              ], 
+              [
+                -114.74292895986379, 
+                21.74386540101269
+              ], 
+              [
+                -114.74119664536826, 
+                21.74862731352539
+              ], 
+              [
+                -114.73182867769466, 
+                21.756892093703545
+              ], 
+              [
+                -114.71168485055561, 
+                21.770019842990695
+              ], 
+              [
+                -114.70331336634185, 
+                21.772696087313403
+              ], 
+              [
+                -114.68145931708167, 
+                21.786254062714303
+              ], 
+              [
+                -114.68207561717458, 
+                21.787758273018593
+              ], 
+              [
+                -114.6819634987337, 
+                21.791207181494528
+              ], 
+              [
+                -114.67893319437718, 
+                21.795331536043022
+              ], 
+              [
+                -114.65976378313441, 
+                21.805608762961572
+              ], 
+              [
+                -114.65792780578, 
+                21.80511881199795
+              ], 
+              [
+                -114.65343486589595, 
+                21.800888891458463
+              ], 
+              [
+                -114.6522980610709, 
+                21.798726815603153
+              ], 
+              [
+                -114.65329781571987, 
+                21.769423500034765
+              ], 
+              [
+                -114.66514275408818, 
+                21.74818247222873
+              ], 
+              [
+                -114.67312146004194, 
+                21.74475460798842
+              ], 
+              [
+                -114.68825899088458, 
+                21.73259050836686
+              ], 
+              [
+                -114.68853091355953, 
+                21.7300101758738
+              ], 
+              [
+                -114.69043270069835, 
+                21.724719060262704
+              ], 
+              [
+                -114.69242028205645, 
+                21.723154529069568
+              ], 
+              [
+                -114.731646971354, 
+                21.69996685824379
+              ], 
+              [
+                -114.73779555755208, 
+                21.70232156635235
+              ], 
+              [
+                -114.75368145017588, 
+                21.69371330921628
+              ], 
+              [
+                -114.75879930777835, 
+                21.690044148588996
+              ], 
+              [
+                -114.76084060940356, 
+                21.64630305724642
+              ], 
+              [
+                -114.77795303449827, 
+                21.624838485496664
+              ], 
+              [
+                -114.77941890390522, 
+                21.623910935018735
+              ], 
+              [
+                -114.78091142182913, 
+                21.624129496709358
+              ], 
+              [
+                -114.79306035796283, 
+                21.62914788232996
+              ], 
+              [
+                -114.79931028829911, 
+                21.632579804871167
+              ], 
+              [
+                -114.8018049219254, 
+                21.636251874158784
+              ], 
+              [
+                -114.8084784861995, 
+                21.627167015124247
+              ], 
+              [
+                -114.81045723269148, 
+                21.6067504745205
+              ], 
+              [
+                -114.82910326638155, 
+                21.60122660573784
+              ], 
+              [
+                -114.83224480468178, 
+                21.594465034509323
+              ], 
+              [
+                -114.84434361589668, 
+                21.598974431341965
+              ], 
+              [
+                -114.85449716935474, 
+                21.60519104022079
+              ], 
+              [
+                -114.862240573447, 
+                21.592259888897193
+              ], 
+              [
+                -114.87405600356345, 
+                21.60094973392501
+              ], 
+              [
+                -114.87715963931255, 
+                21.600550942843284
+              ], 
+              [
+                -114.87682612834442, 
+                21.593174001650038
+              ], 
+              [
+                -114.88296697370173, 
+                21.5890070036972
+              ], 
+              [
+                -114.89201375565798, 
+                21.584612051560388
+              ], 
+              [
+                -114.89562670509414, 
+                21.58850118978279
+              ], 
+              [
+                -114.89821947913907, 
+                21.588773947848274
+              ], 
+              [
+                -114.91417436072268, 
+                21.574437996970687
+              ], 
+              [
+                -114.93585965863078, 
+                21.557321414235705
+              ], 
+              [
+                -114.93738910598123, 
+                21.544483476124174
+              ], 
+              [
+                -114.93859176470194, 
+                21.543203741993434
+              ], 
+              [
+                -114.94902819022543, 
+                21.542102822846953
+              ], 
+              [
+                -114.95931568910558, 
+                21.544991133192834
+              ], 
+              [
+                -114.9727947683195, 
+                21.535016132666
+              ], 
+              [
+                -114.97764432682644, 
+                21.52296381386546
+              ], 
+              [
+                -114.98200547608688, 
+                21.510170788566093
+              ], 
+              [
+                -114.98900778427932, 
+                21.509200414215837
+              ], 
+              [
+                -114.9933831869392, 
+                21.512609657549273
+              ], 
+              [
+                -114.9956579280108, 
+                21.51351913001005
+              ], 
+              [
+                -115.00912210298054, 
+                21.517868487008727
+              ], 
+              [
+                -115.01148625788746, 
+                21.51743643805296
+              ], 
+              [
+                -115.01432573757299, 
+                21.515995451891442
+              ], 
+              [
+                -115.01581177882125, 
+                21.499533276292958
+              ], 
+              [
+                -115.02153998178221, 
+                21.499452598087867
+              ], 
+              [
+                -115.06328305155155, 
+                21.513182845791047
+              ], 
+              [
+                -115.073338722776, 
+                21.519643514069802
+              ], 
+              [
+                -115.07801770148323, 
+                21.52365147167285
+              ], 
+              [
+                -115.07855692653465, 
+                21.52687459726512
+              ], 
+              [
+                -115.06360325171649, 
+                21.536970274588654
+              ], 
+              [
+                -115.04495882904935, 
+                21.5594070546887
+              ], 
+              [
+                -115.04115149858774, 
+                21.562750413480742
+              ], 
+              [
+                -115.03065917403883, 
+                21.565289074878073
+              ], 
+              [
+                -115.02230568740796, 
+                21.562473502751462
+              ], 
+              [
+                -114.98939072607031, 
+                21.58051002174251
+              ], 
+              [
+                -114.986399990852, 
+                21.58619864547006
+              ], 
+              [
+                -114.98641092672116, 
+                21.589114082821517
+              ], 
+              [
+                -114.98252178347066, 
+                21.59157577984587
+              ], 
+              [
+                -114.96600431508666, 
+                21.591071394791957
+              ], 
+              [
+                -114.96037759175847, 
+                21.588117828508057
+              ], 
+              [
+                -114.95534506485157, 
+                21.58452176429575
+              ], 
+              [
+                -114.9498716955679, 
+                21.588870345429267
+              ], 
+              [
+                -114.94724622575735, 
+                21.59755891929016
+              ], 
+              [
+                -114.94336299629592, 
+                21.604669194051414
+              ], 
+              [
+                -114.93818661506623, 
+                21.610856241533384
+              ], 
+              [
+                -114.93534484053693, 
+                21.610809685681218
+              ], 
+              [
+                -114.924108410167, 
+                21.607046057215086
+              ], 
+              [
+                -114.92172993746009, 
+                21.60563682479764
+              ], 
+              [
+                -114.91705876106073, 
+                21.604809786424948
+              ], 
+              [
+                -114.91566565406937, 
+                21.606752477501466
+              ], 
+              [
+                -114.90839989996577, 
+                21.624409298246317
+              ], 
+              [
+                -114.89446957300895, 
+                21.63055494464761
+              ], 
+              [
+                -114.89665312770676, 
+                21.642346956195823
+              ], 
+              [
+                -114.90354460006995, 
+                21.64510378228483
+              ], 
+              [
+                -114.90489112654343, 
+                21.646880173255315
+              ], 
+              [
+                -114.91429995703247, 
+                21.671960453138087
+              ], 
+              [
+                -114.91509314647173, 
+                21.67561955010445
+              ], 
+              [
+                -114.91439479058468, 
+                21.677299495358575
+              ], 
+              [
+                -114.90988842810377, 
+                21.682095568348746
+              ], 
+              [
+                -114.90180563620818, 
+                21.68543139691824
+              ], 
+              [
+                -114.8975902567631, 
+                21.68586298838792
+              ], 
+              [
+                -114.89549436587681, 
+                21.68273684181465
+              ], 
+              [
+                -114.89143109505656, 
+                21.67986602398527
+              ], 
+              [
+                -114.88940944202729, 
+                21.68008240401339
+              ], 
+              [
+                -114.87665619515195, 
+                21.688025163872428
+              ], 
+              [
+                -114.87674560697025, 
+                21.691159193175555
+              ], 
+              [
+                -114.87944052695207, 
+                21.694073557422026
+              ], 
+              [
+                -114.88281371702546, 
+                21.696189843894974
+              ], 
+              [
+                -114.89416636284624, 
+                21.70112965738753
+              ], 
+              [
+                -114.89418394975519, 
+                21.71130621636277
+              ], 
+              [
+                -114.89219868175155, 
+                21.716863223161567
+              ], 
+              [
+                -114.88842541168295, 
+                21.721341383074797
+              ], 
+              [
+                -114.88395800452253, 
+                21.725146533296957
+              ], 
+              [
+                -114.87817728032292, 
+                21.72693011929946
+              ], 
+              [
+                -114.85872945978609, 
+                21.72869069791213
+              ], 
+              [
+                -114.85134882890512, 
+                21.72822597575493
+              ], 
+              [
+                -114.83990654601426, 
+                21.70864095564151
+              ], 
+              [
+                -114.83983625041265, 
+                21.701516450293163
+              ], 
+              [
+                -114.83227240017307, 
+                21.701125125807586
+              ], 
+              [
+                -114.82579676278624, 
+                21.705456648684347
+              ], 
+              [
+                -114.82188667006803, 
+                21.73074077950731
+              ], 
+              [
+                -114.82456043667695, 
+                21.737813500022384
+              ], 
+              [
+                -114.84296782125989, 
+                21.742609334631332
+              ], 
+              [
+                -114.86623359467568, 
+                21.751594963633867
+              ], 
+              [
+                -114.87119523610848, 
+                21.75470212659166
+              ], 
+              [
+                -114.87495180843435, 
+                21.75372756647322
+              ], 
+              [
+                -114.87672103756125, 
+                21.75178793420478
+              ], 
+              [
+                -114.87873410962493, 
+                21.74756525707238
+              ], 
+              [
+                -114.88169456888417, 
+                21.74402870555981
+              ], 
+              [
+                -114.8845138967544, 
+                21.743618175081092
+              ], 
+              [
+                -114.88671231069767, 
+                21.744565540716508
+              ], 
+              [
+                -114.90120827984117, 
+                21.757304489283083
+              ], 
+              [
+                -114.92015967276214, 
+                21.775245554446034
+              ], 
+              [
+                -114.9218616945868, 
+                21.7938261122258
+              ], 
+              [
+                -114.9037576745747, 
+                21.824436173343106
+              ], 
+              [
+                -114.89763461011479, 
+                21.832034749330212
+              ], 
+              [
+                -114.87340160718195, 
+                21.847985267301453
+              ], 
+              [
+                -114.86101139134871, 
+                21.854668279845036
+              ], 
+              [
+                -114.84569360439467, 
+                21.857725825996017
+              ], 
+              [
+                -114.82974794371144, 
+                21.869449069794506
+              ], 
+              [
+                -114.82836670843747, 
+                21.869952557212116
+              ], 
+              [
+                -114.827398740373, 
+                21.869341577410694
+              ], 
+              [
+                -114.8232823635754, 
+                21.863796088509762
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.6247648368123, 
+                23.053420923286065
+              ], 
+              [
+                -115.61876656489348, 
+                23.055156435605902
+              ], 
+              [
+                -115.61360993962516, 
+                23.054544347667196
+              ], 
+              [
+                -115.60511450886396, 
+                23.05047768430542
+              ], 
+              [
+                -115.60465548749832, 
+                23.04913515595657
+              ], 
+              [
+                -115.60872645126192, 
+                23.04184924690569
+              ], 
+              [
+                -115.62662182457134, 
+                23.02159719252593
+              ], 
+              [
+                -115.6298084512419, 
+                23.01967307687452
+              ], 
+              [
+                -115.64396565901384, 
+                23.021915615201696
+              ], 
+              [
+                -115.64628684830379, 
+                23.022853171219566
+              ], 
+              [
+                -115.64820004691386, 
+                23.024276009294397
+              ], 
+              [
+                -115.65080054357239, 
+                23.027626574187288
+              ], 
+              [
+                -115.65218513680361, 
+                23.030578938789525
+              ], 
+              [
+                -115.65199008230269, 
+                23.03361463983511
+              ], 
+              [
+                -115.65323815494791, 
+                23.038800830017603
+              ], 
+              [
+                -115.6553671517708, 
+                23.04108390042853
+              ], 
+              [
+                -115.67296231000175, 
+                23.044883047318955
+              ], 
+              [
+                -115.68070596713935, 
+                23.05479735886304
+              ], 
+              [
+                -115.68178430890447, 
+                23.05711836709711
+              ], 
+              [
+                -115.67554882898584, 
+                23.05837755546263
+              ], 
+              [
+                -115.65504018017319, 
+                23.05434930229938
+              ], 
+              [
+                -115.63859862415308, 
+                23.05238878600138
+              ], 
+              [
+                -115.6247648368123, 
+                23.053420923286065
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -115.81206352562481, 
+                23.29556967879374
+              ], 
+              [
+                -115.81346486454237, 
+                23.303494104418082
+              ], 
+              [
+                -115.81679180741462, 
+                23.308114350223676
+              ], 
+              [
+                -115.8217911705268, 
+                23.30897475933395
+              ], 
+              [
+                -115.8300924336878, 
+                23.308651480390832
+              ], 
+              [
+                -115.84493840735192, 
+                23.31101862867266
+              ], 
+              [
+                -115.84549308894745, 
+                23.314834274574913
+              ], 
+              [
+                -115.8451750120165, 
+                23.32537087028148
+              ], 
+              [
+                -115.84484154290435, 
+                23.325880289258183
+              ], 
+              [
+                -115.8411804887979, 
+                23.330152738332632
+              ], 
+              [
+                -115.83825931452243, 
+                23.332182771446107
+              ], 
+              [
+                -115.82465041966978, 
+                23.337484373990858
+              ], 
+              [
+                -115.81989402357728, 
+                23.33826235399962
+              ], 
+              [
+                -115.81505767806077, 
+                23.334956202920992
+              ], 
+              [
+                -115.80927236173906, 
+                23.334312047447263
+              ], 
+              [
+                -115.80267931399513, 
+                23.336216137930105
+              ], 
+              [
+                -115.7844883704297, 
+                23.34333181370009
+              ], 
+              [
+                -115.78178481364334, 
+                23.340297834634733
+              ], 
+              [
+                -115.78568326329709, 
+                23.32052595961372
+              ], 
+              [
+                -115.81206352562481, 
+                23.29556967879374
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -112.19369471683174, 
+                23.121832584804658
+              ], 
+              [
+                -112.18092827814131, 
+                23.12455443283997
+              ], 
+              [
+                -112.17798275351664, 
+                23.120237446599713
+              ], 
+              [
+                -112.17634086117631, 
+                23.1139055442782
+              ], 
+              [
+                -112.17874154844203, 
+                23.097138657678347
+              ], 
+              [
+                -112.16979553319877, 
+                23.08061035976545
+              ], 
+              [
+                -112.16817849804755, 
+                23.071512413337192
+              ], 
+              [
+                -112.17088703533263, 
+                23.05788977584212
+              ], 
+              [
+                -112.17604143237077, 
+                23.055889545112176
+              ], 
+              [
+                -112.1870362351713, 
+                23.06119277402158
+              ], 
+              [
+                -112.20363710688113, 
+                23.05586901003649
+              ], 
+              [
+                -112.20665152288768, 
+                23.058376941993323
+              ], 
+              [
+                -112.21643001454807, 
+                23.076542879971743
+              ], 
+              [
+                -112.21574515478831, 
+                23.081240594404704
+              ], 
+              [
+                -112.19926789249632, 
+                23.098432260196773
+              ], 
+              [
+                -112.19649261403232, 
+                23.11494180569811
+              ], 
+              [
+                -112.19369471683174, 
+                23.121832584804658
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -111.96993928654153, 
+                23.48541478917573
+              ], 
+              [
+                -111.96642928425888, 
+                23.481529643711813
+              ], 
+              [
+                -111.96532726797973, 
+                23.47967155425492
+              ], 
+              [
+                -111.96519057926847, 
+                23.47786759749185
+              ], 
+              [
+                -111.97371393498854, 
+                23.466702860856998
+              ], 
+              [
+                -111.99253598835068, 
+                23.447343536716232
+              ], 
+              [
+                -112.00176268544863, 
+                23.44124386470724
+              ], 
+              [
+                -112.01423854343813, 
+                23.427863590282254
+              ], 
+              [
+                -112.02057179508282, 
+                23.417325117074448
+              ], 
+              [
+                -112.02440045557576, 
+                23.408977739705247
+              ], 
+              [
+                -112.02610565036244, 
+                23.402692345766607
+              ], 
+              [
+                -112.03172994481841, 
+                23.391793795126105
+              ], 
+              [
+                -112.03302437714147, 
+                23.390478180729577
+              ], 
+              [
+                -112.0383241579754, 
+                23.38914494958075
+              ], 
+              [
+                -112.04120382555993, 
+                23.389786232185752
+              ], 
+              [
+                -112.04513538565784, 
+                23.392192186907053
+              ], 
+              [
+                -112.04865683508073, 
+                23.395367331265934
+              ], 
+              [
+                -112.05086451044839, 
+                23.398707091211662
+              ], 
+              [
+                -112.05173153418652, 
+                23.40167984736607
+              ], 
+              [
+                -112.0478359585909, 
+                23.415796835085615
+              ], 
+              [
+                -112.0423763281849, 
+                23.433156922468708
+              ], 
+              [
+                -112.03699098301202, 
+                23.44615588930839
+              ], 
+              [
+                -112.0043528082734, 
+                23.490982712735498
+              ], 
+              [
+                -112.00229615732191, 
+                23.493048412071673
+              ], 
+              [
+                -111.99978026275775, 
+                23.49368018406142
+              ], 
+              [
+                -111.98400517038087, 
+                23.495502485313903
+              ], 
+              [
+                -111.973770643869, 
+                23.491395399858476
+              ], 
+              [
+                -111.9704213446336, 
+                23.489211730261854
+              ], 
+              [
+                -111.96927702805027, 
+                23.48751694145905
+              ], 
+              [
+                -111.96993928654153, 
+                23.48541478917573
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -111.8572034844048, 
+                23.504810066730784
+              ], 
+              [
+                -111.85188899603769, 
+                23.509181379500653
+              ], 
+              [
+                -111.84324156935304, 
+                23.51168400367865
+              ], 
+              [
+                -111.84045138154575, 
+                23.508592371662917
+              ], 
+              [
+                -111.83916256140539, 
+                23.505805819535823
+              ], 
+              [
+                -111.84178379391054, 
+                23.496732976879347
+              ], 
+              [
+                -111.85451131956039, 
+                23.481218406545985
+              ], 
+              [
+                -111.8637495076667, 
+                23.476513944154895
+              ], 
+              [
+                -111.89410131192062, 
+                23.469479386590837
+              ], 
+              [
+                -111.9002161257018, 
+                23.470116299646964
+              ], 
+              [
+                -111.90527074806418, 
+                23.46973972902396
+              ], 
+              [
+                -111.91262691738595, 
+                23.465276680349106
+              ], 
+              [
+                -111.91987975683936, 
+                23.45842280144768
+              ], 
+              [
+                -111.93839327159853, 
+                23.459506857746852
+              ], 
+              [
+                -111.94855463187315, 
+                23.460896604962354
+              ], 
+              [
+                -111.94979310021542, 
+                23.4615009698919
+              ], 
+              [
+                -111.95463188287161, 
+                23.466829336112063
+              ], 
+              [
+                -111.95670476278272, 
+                23.474340741487136
+              ], 
+              [
+                -111.9539810005341, 
+                23.484991979560046
+              ], 
+              [
+                -111.94903556749827, 
+                23.496411988692845
+              ], 
+              [
+                -111.94510786231959, 
+                23.502010157114075
+              ], 
+              [
+                -111.93563989912143, 
+                23.51072137227543
+              ], 
+              [
+                -111.93114359512386, 
+                23.51353455091775
+              ], 
+              [
+                -111.9275682967886, 
+                23.5128085285139
+              ], 
+              [
+                -111.92622520714716, 
+                23.511803590001723
+              ], 
+              [
+                -111.92080417092029, 
+                23.511568025050078
+              ], 
+              [
+                -111.90989210643845, 
+                23.516726051322376
+              ], 
+              [
+                -111.9051114145183, 
+                23.521332294374286
+              ], 
+              [
+                -111.90278289041437, 
+                23.5223209409516
+              ], 
+              [
+                -111.90101740435125, 
+                23.52277281988134
+              ], 
+              [
+                -111.89929408215808, 
+                23.521757385777462
+              ], 
+              [
+                -111.8961117279505, 
+                23.517248190863782
+              ], 
+              [
+                -111.89392309014129, 
+                23.51125085276841
+              ], 
+              [
+                -111.89231787603354, 
+                23.508672538986115
+              ], 
+              [
+                -111.8812153466161, 
+                23.49821298466881
+              ], 
+              [
+                -111.8768278290851, 
+                23.49712831035897
+              ], 
+              [
+                -111.87293930764275, 
+                23.49788309374758
+              ], 
+              [
+                -111.8572034844048, 
+                23.504810066730784
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -111.64034064929113, 
+                24.153291954077336
+              ], 
+              [
+                -111.62955726133214, 
+                24.16260324640263
+              ], 
+              [
+                -111.62718190080811, 
+                24.165762177525735
+              ], 
+              [
+                -111.61973001013196, 
+                24.162742327039634
+              ], 
+              [
+                -111.61182821647695, 
+                24.145284007876626
+              ], 
+              [
+                -111.61196182416171, 
+                24.13980907555983
+              ], 
+              [
+                -111.61267387567352, 
+                24.137886531300722
+              ], 
+              [
+                -111.6167441312239, 
+                24.134007335842785
+              ], 
+              [
+                -111.61837811962204, 
+                24.134585568400748
+              ], 
+              [
+                -111.61897805788553, 
+                24.136373791199954
+              ], 
+              [
+                -111.62149072239248, 
+                24.138320886359505
+              ], 
+              [
+                -111.62737071595109, 
+                24.138180696601292
+              ], 
+              [
+                -111.6418984924478, 
+                24.134243867092888
+              ], 
+              [
+                -111.64592215274325, 
+                24.12897757949956
+              ], 
+              [
+                -111.64676082863491, 
+                24.127010538859903
+              ], 
+              [
+                -111.65000108105956, 
+                24.114399895877312
+              ], 
+              [
+                -111.64945209085757, 
+                24.112540426116013
+              ], 
+              [
+                -111.63643882373842, 
+                24.090656212062232
+              ], 
+              [
+                -111.62913259059783, 
+                24.086159838444605
+              ], 
+              [
+                -111.62159518568157, 
+                24.096816772621573
+              ], 
+              [
+                -111.62099475039214, 
+                24.09729867246444
+              ], 
+              [
+                -111.61974225081335, 
+                24.096406282675254
+              ], 
+              [
+                -111.62282476123086, 
+                24.075461059822853
+              ], 
+              [
+                -111.62613444161522, 
+                24.057617049709204
+              ], 
+              [
+                -111.62718679324992, 
+                24.054830771503227
+              ], 
+              [
+                -111.62676596480621, 
+                24.053619621357576
+              ], 
+              [
+                -111.62448736807953, 
+                24.0523657850406
+              ], 
+              [
+                -111.61928638880387, 
+                24.05178691311443
+              ], 
+              [
+                -111.61645120548812, 
+                24.053903750841325
+              ], 
+              [
+                -111.6126463727907, 
+                24.061801724360897
+              ], 
+              [
+                -111.60958430791355, 
+                24.064683798410023
+              ], 
+              [
+                -111.60443394133192, 
+                24.069007117012525
+              ], 
+              [
+                -111.5958234233788, 
+                24.073366939860975
+              ], 
+              [
+                -111.58277590646816, 
+                24.078109256876644
+              ], 
+              [
+                -111.56254458612148, 
+                24.08248383917512
+              ], 
+              [
+                -111.55818152239564, 
+                24.082873637372366
+              ], 
+              [
+                -111.55557793461186, 
+                24.081732713365458
+              ], 
+              [
+                -111.55421961605695, 
+                24.069795200447842
+              ], 
+              [
+                -111.55416361141958, 
+                24.065532735091054
+              ], 
+              [
+                -111.56975098207032, 
+                24.034287206010664
+              ], 
+              [
+                -111.57601799150248, 
+                24.02792396853321
+              ], 
+              [
+                -111.57784991172808, 
+                24.01272510500269
+              ], 
+              [
+                -111.57776875430478, 
+                24.00410388231133
+              ], 
+              [
+                -111.57524258818061, 
+                23.99223628005762
+              ], 
+              [
+                -111.58194333694837, 
+                23.984011481548944
+              ], 
+              [
+                -111.59570477018683, 
+                23.984111716665865
+              ], 
+              [
+                -111.61617670563338, 
+                23.987070284157625
+              ], 
+              [
+                -111.61893125379996, 
+                23.976795586337996
+              ], 
+              [
+                -111.63343955806756, 
+                23.98109883024125
+              ], 
+              [
+                -111.64275764876072, 
+                23.988224424512953
+              ], 
+              [
+                -111.65314892825552, 
+                23.984353708269012
+              ], 
+              [
+                -111.65680825578951, 
+                23.982278416657433
+              ], 
+              [
+                -111.6622084925627, 
+                23.9823201686064
+              ], 
+              [
+                -111.67116867212845, 
+                23.985726641711018
+              ], 
+              [
+                -111.67239641122904, 
+                23.986895010372642
+              ], 
+              [
+                -111.67290197553437, 
+                23.98983191291785
+              ], 
+              [
+                -111.67439853220921, 
+                23.992334843304864
+              ], 
+              [
+                -111.68048353018663, 
+                23.99634039568002
+              ], 
+              [
+                -111.68667435497147, 
+                23.994135450265407
+              ], 
+              [
+                -111.69225121698857, 
+                23.98799871081156
+              ], 
+              [
+                -111.69465311516859, 
+                23.987524564628007
+              ], 
+              [
+                -111.69880895505456, 
+                23.987705765897434
+              ], 
+              [
+                -111.70254785421383, 
+                23.989260940100237
+              ], 
+              [
+                -111.71460186903793, 
+                23.99029222733061
+              ], 
+              [
+                -111.72819763004303, 
+                23.991410497637514
+              ], 
+              [
+                -111.73182699920142, 
+                23.990693294208086
+              ], 
+              [
+                -111.73354503855636, 
+                23.98634813106231
+              ], 
+              [
+                -111.73351275962546, 
+                23.985323952712537
+              ], 
+              [
+                -111.72789776447848, 
+                23.981112468906357
+              ], 
+              [
+                -111.72563362389502, 
+                23.98145400348667
+              ], 
+              [
+                -111.721869640311, 
+                23.98409929415454
+              ], 
+              [
+                -111.71278365458983, 
+                23.979362792403236
+              ], 
+              [
+                -111.67952482740266, 
+                23.973740355303683
+              ], 
+              [
+                -111.67371185184903, 
+                23.970574856063593
+              ], 
+              [
+                -111.66733598938593, 
+                23.965277386271552
+              ], 
+              [
+                -111.65340937198712, 
+                23.95919867974928
+              ], 
+              [
+                -111.64236575624305, 
+                23.958308678698987
+              ], 
+              [
+                -111.6396397991667, 
+                23.957104027359044
+              ], 
+              [
+                -111.63286196262374, 
+                23.94957416735181
+              ], 
+              [
+                -111.6319715704576, 
+                23.94101620179431
+              ], 
+              [
+                -111.63282753453032, 
+                23.921352436335113
+              ], 
+              [
+                -111.63698960525473, 
+                23.91124398442815
+              ], 
+              [
+                -111.64338622534535, 
+                23.899102790169362
+              ], 
+              [
+                -111.64561781177963, 
+                23.89604660186809
+              ], 
+              [
+                -111.64685732083318, 
+                23.896722432236764
+              ], 
+              [
+                -111.66292280032934, 
+                23.89857691306803
+              ], 
+              [
+                -111.66496582559031, 
+                23.893077525607968
+              ], 
+              [
+                -111.67040138249838, 
+                23.884837627247784
+              ], 
+              [
+                -111.68946376710174, 
+                23.892452365568662
+              ], 
+              [
+                -111.69417132691478, 
+                23.896813702306158
+              ], 
+              [
+                -111.69858134129704, 
+                23.90580476854456
+              ], 
+              [
+                -111.71819018637439, 
+                23.908438271792363
+              ], 
+              [
+                -111.72377287675016, 
+                23.906985232366722
+              ], 
+              [
+                -111.7337510062897, 
+                23.899569710084368
+              ], 
+              [
+                -111.73840419298243, 
+                23.894990013800808
+              ], 
+              [
+                -111.74175246411326, 
+                23.888748681894914
+              ], 
+              [
+                -111.74431156609349, 
+                23.881868648682687
+              ], 
+              [
+                -111.73960152038106, 
+                23.87807876776461
+              ], 
+              [
+                -111.73837459929484, 
+                23.87836071437841
+              ], 
+              [
+                -111.72567825863918, 
+                23.884512117337927
+              ], 
+              [
+                -111.721117696442, 
+                23.88771261089486
+              ], 
+              [
+                -111.72101683395385, 
+                23.88893015755407
+              ], 
+              [
+                -111.72022068318847, 
+                23.888755887267386
+              ], 
+              [
+                -111.70837908264201, 
+                23.883674658908458
+              ], 
+              [
+                -111.69938335345978, 
+                23.874718066475918
+              ], 
+              [
+                -111.6989651736096, 
+                23.873812078064688
+              ], 
+              [
+                -111.69982388461936, 
+                23.8698242287777
+              ], 
+              [
+                -111.70881023600835, 
+                23.859173818709465
+              ], 
+              [
+                -111.72090985525516, 
+                23.848430589363165
+              ], 
+              [
+                -111.72547586329974, 
+                23.845746520998745
+              ], 
+              [
+                -111.73674952424716, 
+                23.84318986442596
+              ], 
+              [
+                -111.74624128052423, 
+                23.843193905591892
+              ], 
+              [
+                -111.74815053641345, 
+                23.84440071777276
+              ], 
+              [
+                -111.75586800544619, 
+                23.843214606976534
+              ], 
+              [
+                -111.75742920558073, 
+                23.841459324932345
+              ], 
+              [
+                -111.75808368827632, 
+                23.838733423045493
+              ], 
+              [
+                -111.75782629218449, 
+                23.8368718274395
+              ], 
+              [
+                -111.75683420571953, 
+                23.835103151919792
+              ], 
+              [
+                -111.74276886444926, 
+                23.826938300300846
+              ], 
+              [
+                -111.73222070674078, 
+                23.82703714255758
+              ], 
+              [
+                -111.7267729007426, 
+                23.83208210427719
+              ], 
+              [
+                -111.72176528851588, 
+                23.835105330774518
+              ], 
+              [
+                -111.69235460624884, 
+                23.84242457301674
+              ], 
+              [
+                -111.67345739021248, 
+                23.83638099936623
+              ], 
+              [
+                -111.67171826263461, 
+                23.83498474512387
+              ], 
+              [
+                -111.66936108863771, 
+                23.830775158549034
+              ], 
+              [
+                -111.67446228292063, 
+                23.820613012104484
+              ], 
+              [
+                -111.67641655442877, 
+                23.81763538159357
+              ], 
+              [
+                -111.68491717085405, 
+                23.812212399861096
+              ], 
+              [
+                -111.69588410331791, 
+                23.80937990778774
+              ], 
+              [
+                -111.72135925157654, 
+                23.78966149048231
+              ], 
+              [
+                -111.72395148719136, 
+                23.789759502797175
+              ], 
+              [
+                -111.72512743461434, 
+                23.790594551408617
+              ], 
+              [
+                -111.72593435470016, 
+                23.792491348940235
+              ], 
+              [
+                -111.72903779432579, 
+                23.79246276889753
+              ], 
+              [
+                -111.73627818896367, 
+                23.787688687389664
+              ], 
+              [
+                -111.74255307498083, 
+                23.777359212384113
+              ], 
+              [
+                -111.74298269379156, 
+                23.773603182874627
+              ], 
+              [
+                -111.74255500274299, 
+                23.770653541073678
+              ], 
+              [
+                -111.74214676481363, 
+                23.77007409158002
+              ], 
+              [
+                -111.7397689119679, 
+                23.768528473306187
+              ], 
+              [
+                -111.7379181448967, 
+                23.769098974178103
+              ], 
+              [
+                -111.73508692291203, 
+                23.763097165102433
+              ], 
+              [
+                -111.73510262636022, 
+                23.75911170996453
+              ], 
+              [
+                -111.73945790032964, 
+                23.74561600610214
+              ], 
+              [
+                -111.7532436940038, 
+                23.734601006472662
+              ], 
+              [
+                -111.75599244053691, 
+                23.734077151775864
+              ], 
+              [
+                -111.76647804787159, 
+                23.739554572386687
+              ], 
+              [
+                -111.76687585643948, 
+                23.74079676345095
+              ], 
+              [
+                -111.76311268856215, 
+                23.753855889040132
+              ], 
+              [
+                -111.76463635750288, 
+                23.75655523489958
+              ], 
+              [
+                -111.7776010657979, 
+                23.767071688767587
+              ], 
+              [
+                -111.78378997349519, 
+                23.760050381734597
+              ], 
+              [
+                -111.78623087142111, 
+                23.764058184299586
+              ], 
+              [
+                -111.78779763508813, 
+                23.76861970176685
+              ], 
+              [
+                -111.78709305588544, 
+                23.785299380518826
+              ], 
+              [
+                -111.78664957502271, 
+                23.787829118187652
+              ], 
+              [
+                -111.78055692456422, 
+                23.798341945869744
+              ], 
+              [
+                -111.77673249829338, 
+                23.80041228810499
+              ], 
+              [
+                -111.76988725230639, 
+                23.817166608300827
+              ], 
+              [
+                -111.76980587522397, 
+                23.818109444552395
+              ], 
+              [
+                -111.77161906217069, 
+                23.82168787599226
+              ], 
+              [
+                -111.77838656560746, 
+                23.82486219361934
+              ], 
+              [
+                -111.7876306034254, 
+                23.82165055467579
+              ], 
+              [
+                -111.79107436772199, 
+                23.81750591076315
+              ], 
+              [
+                -111.79074184595768, 
+                23.8154510145782
+              ], 
+              [
+                -111.78971076960902, 
+                23.813744285849314
+              ], 
+              [
+                -111.80789187344831, 
+                23.766374249582224
+              ], 
+              [
+                -111.80736264948298, 
+                23.761188001430853
+              ], 
+              [
+                -111.80850628392915, 
+                23.756490548271067
+              ], 
+              [
+                -111.81871218420244, 
+                23.760040408454632
+              ], 
+              [
+                -111.82657487203734, 
+                23.763751916029733
+              ], 
+              [
+                -111.83014072922319, 
+                23.764519529608307
+              ], 
+              [
+                -111.84754348646858, 
+                23.756335863175906
+              ], 
+              [
+                -111.85099066863685, 
+                23.74852518053905
+              ], 
+              [
+                -111.84925714500747, 
+                23.74180554314708
+              ], 
+              [
+                -111.8463084332449, 
+                23.74198867070235
+              ], 
+              [
+                -111.8318156516131, 
+                23.746822379826668
+              ], 
+              [
+                -111.83047879963004, 
+                23.746975075592744
+              ], 
+              [
+                -111.826113220229, 
+                23.744571562847508
+              ], 
+              [
+                -111.8112125225379, 
+                23.722625646523824
+              ], 
+              [
+                -111.81141944496163, 
+                23.71007699279677
+              ], 
+              [
+                -111.81891160977081, 
+                23.695868144238908
+              ], 
+              [
+                -111.82467129231877, 
+                23.691895120709724
+              ], 
+              [
+                -111.83462385235691, 
+                23.687548331799306
+              ], 
+              [
+                -111.84100067629636, 
+                23.682947377908484
+              ], 
+              [
+                -111.84441245454026, 
+                23.666797045772025
+              ], 
+              [
+                -111.83900095684639, 
+                23.66070662598181
+              ], 
+              [
+                -111.83641879414391, 
+                23.66112878498703
+              ], 
+              [
+                -111.83467654030774, 
+                23.66294390741826
+              ], 
+              [
+                -111.83195772411517, 
+                23.6593073110152
+              ], 
+              [
+                -111.83269048756773, 
+                23.65418121995866
+              ], 
+              [
+                -111.83600708193704, 
+                23.649326896000687
+              ], 
+              [
+                -111.84908527749172, 
+                23.637463016282517
+              ], 
+              [
+                -111.85427388390274, 
+                23.640159012085324
+              ], 
+              [
+                -111.85589459336008, 
+                23.641785706302578
+              ], 
+              [
+                -111.85761166510424, 
+                23.64218267478757
+              ], 
+              [
+                -111.86015082140221, 
+                23.641618154245645
+              ], 
+              [
+                -111.86653223466037, 
+                23.63551069021095
+              ], 
+              [
+                -111.86742427931331, 
+                23.634116347778544
+              ], 
+              [
+                -111.87443808806628, 
+                23.61211548575269
+              ], 
+              [
+                -111.87642152511961, 
+                23.59924474212274
+              ], 
+              [
+                -111.8836216957424, 
+                23.588276640968935
+              ], 
+              [
+                -111.8853510038413, 
+                23.586576817714583
+              ], 
+              [
+                -111.88956498162285, 
+                23.584839086279644
+              ], 
+              [
+                -111.89581207392237, 
+                23.5834826013766
+              ], 
+              [
+                -111.89871536706637, 
+                23.588716816974056
+              ], 
+              [
+                -111.90301096498654, 
+                23.591255320980018
+              ], 
+              [
+                -111.90621468819619, 
+                23.59056390653761
+              ], 
+              [
+                -111.90912689292136, 
+                23.588264280061043
+              ], 
+              [
+                -111.91311658918458, 
+                23.58312827525605
+              ], 
+              [
+                -111.91763056227099, 
+                23.57942349628435
+              ], 
+              [
+                -111.92262193964486, 
+                23.576659278953578
+              ], 
+              [
+                -111.92454209363133, 
+                23.57630656673994
+              ], 
+              [
+                -111.9277203918958, 
+                23.577144085268205
+              ], 
+              [
+                -111.92627268881621, 
+                23.595285513640082
+              ], 
+              [
+                -111.92007124892896, 
+                23.624078621262296
+              ], 
+              [
+                -111.9192324730864, 
+                23.626262709240898
+              ], 
+              [
+                -111.91689158573823, 
+                23.62924809122919
+              ], 
+              [
+                -111.9138910713176, 
+                23.63168042346972
+              ], 
+              [
+                -111.91150229601948, 
+                23.63266823165258
+              ], 
+              [
+                -111.90435710890627, 
+                23.65069445105808
+              ], 
+              [
+                -111.89567915876194, 
+                23.665092196959268
+              ], 
+              [
+                -111.88705989825755, 
+                23.672412105199083
+              ], 
+              [
+                -111.88146352649136, 
+                23.681953125404466
+              ], 
+              [
+                -111.87992120759348, 
+                23.688424112309846
+              ], 
+              [
+                -111.886052756422, 
+                23.6898903177997
+              ], 
+              [
+                -111.89359491609748, 
+                23.69051647289188
+              ], 
+              [
+                -111.89583097600337, 
+                23.688549030023264
+              ], 
+              [
+                -111.89644460259865, 
+                23.686880514883054
+              ], 
+              [
+                -111.90014719315816, 
+                23.684483384387665
+              ], 
+              [
+                -111.90973753648653, 
+                23.680461165119798
+              ], 
+              [
+                -111.91119477822218, 
+                23.68345773536459
+              ], 
+              [
+                -111.914318231953, 
+                23.699131485367566
+              ], 
+              [
+                -111.91098872663503, 
+                23.731214912444283
+              ], 
+              [
+                -111.90301544883967, 
+                23.744428250431998
+              ], 
+              [
+                -111.90045960969562, 
+                23.7463708948567
+              ], 
+              [
+                -111.89645168947972, 
+                23.746853044850436
+              ], 
+              [
+                -111.88631653747119, 
+                23.76073565890652
+              ], 
+              [
+                -111.88333044149661, 
+                23.77027274759509
+              ], 
+              [
+                -111.88295102239746, 
+                23.775587253455498
+              ], 
+              [
+                -111.88527908425137, 
+                23.78259969294483
+              ], 
+              [
+                -111.88779405255684, 
+                23.783222291241948
+              ], 
+              [
+                -111.89156134262679, 
+                23.780466363504402
+              ], 
+              [
+                -111.89382523138322, 
+                23.772810014311112
+              ], 
+              [
+                -111.89380143983912, 
+                23.771593109619197
+              ], 
+              [
+                -111.90046841272171, 
+                23.760298219210537
+              ], 
+              [
+                -111.92334576099974, 
+                23.729909720802162
+              ], 
+              [
+                -111.92422907611494, 
+                23.72223779488821
+              ], 
+              [
+                -111.92774949798246, 
+                23.70537871979594
+              ], 
+              [
+                -111.9319571808584, 
+                23.690489893846767
+              ], 
+              [
+                -111.93514620031411, 
+                23.681886548198026
+              ], 
+              [
+                -111.9447136536706, 
+                23.672855477860686
+              ], 
+              [
+                -111.94865453291213, 
+                23.66667792702966
+              ], 
+              [
+                -111.95197991185758, 
+                23.66604989551283
+              ], 
+              [
+                -111.95327462341767, 
+                23.66476842197324
+              ], 
+              [
+                -111.960742187638, 
+                23.64720345558462
+              ], 
+              [
+                -111.96198015010624, 
+                23.64044375553438
+              ], 
+              [
+                -111.96142745911514, 
+                23.63440063958944
+              ], 
+              [
+                -111.9605245934053, 
+                23.631404328355796
+              ], 
+              [
+                -111.96135091051994, 
+                23.62933963400256
+              ], 
+              [
+                -111.97004275104575, 
+                23.61852745675282
+              ], 
+              [
+                -111.97456410926264, 
+                23.614102564130004
+              ], 
+              [
+                -111.97621570477939, 
+                23.613911125375353
+              ], 
+              [
+                -111.9754582200511, 
+                23.61652172495443
+              ], 
+              [
+                -111.97624548902724, 
+                23.621619245604553
+              ], 
+              [
+                -111.97977370990976, 
+                23.634571670435683
+              ], 
+              [
+                -111.98354061805547, 
+                23.64295355340901
+              ], 
+              [
+                -111.98570356811551, 
+                23.64572042121655
+              ], 
+              [
+                -112.00736956543749, 
+                23.66023594854251
+              ], 
+              [
+                -112.01357355142753, 
+                23.662882418716546
+              ], 
+              [
+                -112.03164480163964, 
+                23.666304937628976
+              ], 
+              [
+                -112.0405167143383, 
+                23.666360941596192
+              ], 
+              [
+                -112.04394187267309, 
+                23.66704479770227
+              ], 
+              [
+                -112.04595314222571, 
+                23.671449082101564
+              ], 
+              [
+                -112.04621125655802, 
+                23.68483127998179
+              ], 
+              [
+                -112.05091676669765, 
+                23.706318325083853
+              ], 
+              [
+                -112.06407601429595, 
+                23.74634644543429
+              ], 
+              [
+                -112.06654605952662, 
+                23.752710688988845
+              ], 
+              [
+                -112.06929711580942, 
+                23.75816426558005
+              ], 
+              [
+                -112.08215372305578, 
+                23.77588608811981
+              ], 
+              [
+                -112.08885863766899, 
+                23.782540059731055
+              ], 
+              [
+                -112.09441466710543, 
+                23.78633038506624
+              ], 
+              [
+                -112.11459540192874, 
+                23.789552915763338
+              ], 
+              [
+                -112.11612874428783, 
+                23.78929985262653
+              ], 
+              [
+                -112.12520903895961, 
+                23.783613303822772
+              ], 
+              [
+                -112.13436664922592, 
+                23.783240180547605
+              ], 
+              [
+                -112.13853736432186, 
+                23.785481050826697
+              ], 
+              [
+                -112.13918620405094, 
+                23.786361652113243
+              ], 
+              [
+                -112.13117904767687, 
+                23.79706968280714
+              ], 
+              [
+                -112.12991829080183, 
+                23.800651379673216
+              ], 
+              [
+                -112.12896676888307, 
+                23.84169200214776
+              ], 
+              [
+                -112.12996794582936, 
+                23.847005137710312
+              ], 
+              [
+                -112.1314682350391, 
+                23.85029089079877
+              ], 
+              [
+                -112.1319657089088, 
+                23.86225911646125
+              ], 
+              [
+                -112.1237346950899, 
+                23.89438426372686
+              ], 
+              [
+                -112.121658203747, 
+                23.897102309677035
+              ], 
+              [
+                -112.11825960308155, 
+                23.89964390554133
+              ], 
+              [
+                -112.1156902137784, 
+                23.900142735519534
+              ], 
+              [
+                -112.10598611576839, 
+                23.912242852494934
+              ], 
+              [
+                -112.10558681517196, 
+                23.93037211196807
+              ], 
+              [
+                -112.10313782224581, 
+                23.931325747875352
+              ], 
+              [
+                -112.10012281964421, 
+                23.930003560966494
+              ], 
+              [
+                -112.09219450686881, 
+                23.929847803448325
+              ], 
+              [
+                -112.08516610797717, 
+                23.938252689904015
+              ], 
+              [
+                -112.08181926140797, 
+                23.94546679769212
+              ], 
+              [
+                -112.06953277584888, 
+                23.963575189442814
+              ], 
+              [
+                -112.04501732305637, 
+                23.983530189328977
+              ], 
+              [
+                -112.0386509354257, 
+                23.986525228908846
+              ], 
+              [
+                -112.03557665823128, 
+                23.984358493928397
+              ], 
+              [
+                -112.01103918389067, 
+                23.985457214933803
+              ], 
+              [
+                -112.00440430989134, 
+                23.988575209205354
+              ], 
+              [
+                -111.99954921717531, 
+                23.993674950112492
+              ], 
+              [
+                -111.99046032717719, 
+                23.993897332253216
+              ], 
+              [
+                -111.98699060933708, 
+                23.991351776284684
+              ], 
+              [
+                -111.98671750287943, 
+                23.99066530939553
+              ], 
+              [
+                -111.98251824740471, 
+                23.970978808833905
+              ], 
+              [
+                -111.97631870774939, 
+                23.94807083855764
+              ], 
+              [
+                -111.97222883471079, 
+                23.94252306303216
+              ], 
+              [
+                -111.96678832916848, 
+                23.944162417343787
+              ], 
+              [
+                -111.96459107530636, 
+                23.943736970805126
+              ], 
+              [
+                -111.96173772383789, 
+                23.9420227310327
+              ], 
+              [
+                -111.96049184582962, 
+                23.94032274422545
+              ], 
+              [
+                -111.95883686841508, 
+                23.93649534103026
+              ], 
+              [
+                -111.95634866365063, 
+                23.927078707793157
+              ], 
+              [
+                -111.9543039374554, 
+                23.921005823021186
+              ], 
+              [
+                -111.94717249088214, 
+                23.902409579974123
+              ], 
+              [
+                -111.94175261462603, 
+                23.894057793783794
+              ], 
+              [
+                -111.91208450926374, 
+                23.86726146462135
+              ], 
+              [
+                -111.91008295393502, 
+                23.866853940401107
+              ], 
+              [
+                -111.90636284633075, 
+                23.873024263217093
+              ], 
+              [
+                -111.90745048833328, 
+                23.878544856592082
+              ], 
+              [
+                -111.92085747731802, 
+                23.894315318099903
+              ], 
+              [
+                -111.93895670082748, 
+                23.905893453494127
+              ], 
+              [
+                -111.93947853955206, 
+                23.90675375016302
+              ], 
+              [
+                -111.94914755628855, 
+                23.93142036805815
+              ], 
+              [
+                -111.95026717174484, 
+                23.94918505821599
+              ], 
+              [
+                -111.94964999347174, 
+                23.95362308142949
+              ], 
+              [
+                -111.94567731130405, 
+                23.958684826015062
+              ], 
+              [
+                -111.9420859103257, 
+                23.96757913169541
+              ], 
+              [
+                -111.94054608987561, 
+                23.97312667562908
+              ], 
+              [
+                -111.94402487430828, 
+                23.97660935225062
+              ], 
+              [
+                -111.95106699493778, 
+                23.98206904742116
+              ], 
+              [
+                -111.95249051671018, 
+                23.982149546434535
+              ], 
+              [
+                -111.96014863393391, 
+                23.987949229611818
+              ], 
+              [
+                -111.96115530521449, 
+                23.989865554741513
+              ], 
+              [
+                -111.96114216227642, 
+                23.9955650246831
+              ], 
+              [
+                -111.96012527887349, 
+                23.9974940292052
+              ], 
+              [
+                -111.95800663736826, 
+                23.998671837480323
+              ], 
+              [
+                -111.93188137465955, 
+                24.002430011312434
+              ], 
+              [
+                -111.92103890992345, 
+                24.002457134824095
+              ], 
+              [
+                -111.91192305984451, 
+                24.003688134252837
+              ], 
+              [
+                -111.91102127987564, 
+                24.00430222506838
+              ], 
+              [
+                -111.90924325905836, 
+                24.011473747544994
+              ], 
+              [
+                -111.91223124260397, 
+                24.014253720389032
+              ], 
+              [
+                -111.91750677857696, 
+                24.01688933553987
+              ], 
+              [
+                -111.94879084370822, 
+                24.022284787568715
+              ], 
+              [
+                -111.96509814342647, 
+                24.023433434794875
+              ], 
+              [
+                -111.97082721269722, 
+                24.021397838493534
+              ], 
+              [
+                -111.97683342676274, 
+                24.015378699904097
+              ], 
+              [
+                -111.97974561457522, 
+                24.01523934268846
+              ], 
+              [
+                -111.98113094294798, 
+                24.01822508602375
+              ], 
+              [
+                -111.99349183612259, 
+                24.067067512908768
+              ], 
+              [
+                -111.97307280372341, 
+                24.096377564300745
+              ], 
+              [
+                -111.95918853652044, 
+                24.1083838522113
+              ], 
+              [
+                -111.95207575937893, 
+                24.11337832606485
+              ], 
+              [
+                -111.9340879492803, 
+                24.11261005998485
+              ], 
+              [
+                -111.91079016548031, 
+                24.0953624624459
+              ], 
+              [
+                -111.90102145540425, 
+                24.076262048624166
+              ], 
+              [
+                -111.89845918621262, 
+                24.06560843699979
+              ], 
+              [
+                -111.898566633516, 
+                24.063879656284474
+              ], 
+              [
+                -111.89685803720516, 
+                24.052555260512847
+              ], 
+              [
+                -111.89470214004116, 
+                24.047244941890515
+              ], 
+              [
+                -111.89312792942982, 
+                24.0454941014762
+              ], 
+              [
+                -111.88493370001663, 
+                24.046738688203302
+              ], 
+              [
+                -111.88115091814383, 
+                24.053226642154826
+              ], 
+              [
+                -111.87990000301528, 
+                24.071620453660802
+              ], 
+              [
+                -111.88135403845561, 
+                24.084891821105188
+              ], 
+              [
+                -111.88767293724958, 
+                24.092567416566755
+              ], 
+              [
+                -111.89146571672555, 
+                24.100953789172326
+              ], 
+              [
+                -111.89048445151347, 
+                24.104853524739028
+              ], 
+              [
+                -111.88368693540642, 
+                24.10516873775862
+              ], 
+              [
+                -111.87206806098429, 
+                24.10289850611376
+              ], 
+              [
+                -111.85758798117325, 
+                24.097381482844774
+              ], 
+              [
+                -111.85534495064141, 
+                24.098454219232917
+              ], 
+              [
+                -111.85327708396277, 
+                24.108506296459893
+              ], 
+              [
+                -111.85334147643498, 
+                24.11092621874655
+              ], 
+              [
+                -111.85521501254668, 
+                24.116271391066302
+              ], 
+              [
+                -111.85613204082497, 
+                24.116729650811827
+              ], 
+              [
+                -111.87287233820096, 
+                24.116964938599047
+              ], 
+              [
+                -111.88644562430852, 
+                24.121442221250426
+              ], 
+              [
+                -111.8906898069396, 
+                24.123065531842514
+              ], 
+              [
+                -111.90547350460646, 
+                24.1330940892767
+              ], 
+              [
+                -111.9107328094077, 
+                24.13779918355262
+              ], 
+              [
+                -111.91354828970418, 
+                24.141420773925677
+              ], 
+              [
+                -111.91391584050527, 
+                24.1462321463541
+              ], 
+              [
+                -111.91339186217746, 
+                24.15689781462013
+              ], 
+              [
+                -111.9123469330477, 
+                24.15968355119382
+              ], 
+              [
+                -111.90652907130537, 
+                24.164725781313656
+              ], 
+              [
+                -111.90309196735976, 
+                24.165908656872446
+              ], 
+              [
+                -111.90066581628504, 
+                24.164346141590034
+              ], 
+              [
+                -111.89767781743262, 
+                24.160669524384694
+              ], 
+              [
+                -111.84798632856759, 
+                24.13788566472144
+              ], 
+              [
+                -111.84651536705044, 
+                24.137448339879725
+              ], 
+              [
+                -111.83960675471917, 
+                24.140561735836965
+              ], 
+              [
+                -111.81017188061807, 
+                24.131032990453456
+              ], 
+              [
+                -111.80905124823586, 
+                24.13125198953908
+              ], 
+              [
+                -111.8028394982575, 
+                24.13508937302682
+              ], 
+              [
+                -111.80232175291762, 
+                24.1369506770064
+              ], 
+              [
+                -111.8349620218604, 
+                24.15972630906518
+              ], 
+              [
+                -111.84423670957752, 
+                24.16274314246892
+              ], 
+              [
+                -111.85480905765316, 
+                24.168533502283402
+              ], 
+              [
+                -111.86447773049974, 
+                24.17903740089935
+              ], 
+              [
+                -111.86589363769956, 
+                24.181578556912164
+              ], 
+              [
+                -111.86538825440823, 
+                24.18393397481925
+              ], 
+              [
+                -111.86069238549817, 
+                24.186013631814042
+              ], 
+              [
+                -111.85083381442803, 
+                24.18767500345719
+              ], 
+              [
+                -111.84692928350131, 
+                24.184986490416676
+              ], 
+              [
+                -111.84530688900857, 
+                24.18269490484964
+              ], 
+              [
+                -111.82077663808334, 
+                24.17101856283214
+              ], 
+              [
+                -111.80556943926929, 
+                24.168949629677815
+              ], 
+              [
+                -111.801836773495, 
+                24.17093524729945
+              ], 
+              [
+                -111.80180558404602, 
+                24.172500229015647
+              ], 
+              [
+                -111.79756348800095, 
+                24.181562851425465
+              ], 
+              [
+                -111.76038969184609, 
+                24.179005379716884
+              ], 
+              [
+                -111.7594320168439, 
+                24.179634550238717
+              ], 
+              [
+                -111.75746710128307, 
+                24.18680166598952
+              ], 
+              [
+                -111.75974824380681, 
+                24.199134550826518
+              ], 
+              [
+                -111.76254788399709, 
+                24.207889779634698
+              ], 
+              [
+                -111.75951364793913, 
+                24.209703076522622
+              ], 
+              [
+                -111.73171660179231, 
+                24.214146401254887
+              ], 
+              [
+                -111.7310096365863, 
+                24.212255557292252
+              ], 
+              [
+                -111.73013926877317, 
+                24.192289513099585
+              ], 
+              [
+                -111.7316769255877, 
+                24.186538112794423
+              ], 
+              [
+                -111.74002481862449, 
+                24.168227606264907
+              ], 
+              [
+                -111.743379489242, 
+                24.163494148493275
+              ], 
+              [
+                -111.75395648524626, 
+                24.13795758223179
+              ], 
+              [
+                -111.75490165428704, 
+                24.131858691510622
+              ], 
+              [
+                -111.75432207078502, 
+                24.122643170123553
+              ], 
+              [
+                -111.75138717410381, 
+                24.10478496372786
+              ], 
+              [
+                -111.74626381253466, 
+                24.09637257730053
+              ], 
+              [
+                -111.7425933008029, 
+                24.09309356106559
+              ], 
+              [
+                -111.73963628709329, 
+                24.09206785582141
+              ], 
+              [
+                -111.73784661106468, 
+                24.092336389694765
+              ], 
+              [
+                -111.7324506437869, 
+                24.094646385452915
+              ], 
+              [
+                -111.73261407697069, 
+                24.097727661406694
+              ], 
+              [
+                -111.73430338527548, 
+                24.10001191731893
+              ], 
+              [
+                -111.7369236424545, 
+                24.10787996900857
+              ], 
+              [
+                -111.74166489028022, 
+                24.130984487934832
+              ], 
+              [
+                -111.74065456801688, 
+                24.135384631689142
+              ], 
+              [
+                -111.7377586797808, 
+                24.142249909637997
+              ], 
+              [
+                -111.7319373505611, 
+                24.150723413193287
+              ], 
+              [
+                -111.72245193887666, 
+                24.14462672120907
+              ], 
+              [
+                -111.72068507378043, 
+                24.142302851589097
+              ], 
+              [
+                -111.7142498720567, 
+                24.144340343233004
+              ], 
+              [
+                -111.70010203405532, 
+                24.161270540762974
+              ], 
+              [
+                -111.69634368581535, 
+                24.17050704322143
+              ], 
+              [
+                -111.69759857763202, 
+                24.17456715045693
+              ], 
+              [
+                -111.70178397881537, 
+                24.177909890322173
+              ], 
+              [
+                -111.70255260650421, 
+                24.17905235147338
+              ], 
+              [
+                -111.70333628664586, 
+                24.184416333181293
+              ], 
+              [
+                -111.70291335945159, 
+                24.18660298984815
+              ], 
+              [
+                -111.69281149995615, 
+                24.19307128981005
+              ], 
+              [
+                -111.69023845751802, 
+                24.184766405431812
+              ], 
+              [
+                -111.68502960984677, 
+                24.182389954474477
+              ], 
+              [
+                -111.6808868391059, 
+                24.183316848353183
+              ], 
+              [
+                -111.67697731292354, 
+                24.190518760011066
+              ], 
+              [
+                -111.67133826908601, 
+                24.205540978045285
+              ], 
+              [
+                -111.66965081123116, 
+                24.215511960292577
+              ], 
+              [
+                -111.66252147037946, 
+                24.223904460233232
+              ], 
+              [
+                -111.65988620307812, 
+                24.224400773352382
+              ], 
+              [
+                -111.65814042929647, 
+                24.22360412419267
+              ], 
+              [
+                -111.65687469306867, 
+                24.222119323453967
+              ], 
+              [
+                -111.65702016605408, 
+                24.212300552450387
+              ], 
+              [
+                -111.65948103049178, 
+                24.207495695583482
+              ], 
+              [
+                -111.65910605428195, 
+                24.206234776965832
+              ], 
+              [
+                -111.65585333042004, 
+                24.204143431034595
+              ], 
+              [
+                -111.64633801552408, 
+                24.20351207489115
+              ], 
+              [
+                -111.64039860623888, 
+                24.20581874040033
+              ], 
+              [
+                -111.63045151011256, 
+                24.20377104055374
+              ], 
+              [
+                -111.63092453554064, 
+                24.196982927431296
+              ], 
+              [
+                -111.63608005946222, 
+                24.18684480655012
+              ], 
+              [
+                -111.63925964102636, 
+                24.18737668362568
+              ], 
+              [
+                -111.64182787661804, 
+                24.188618346896988
+              ], 
+              [
+                -111.64428241026299, 
+                24.189849970730855
+              ], 
+              [
+                -111.64712112590742, 
+                24.192241721823407
+              ], 
+              [
+                -111.64986471056723, 
+                24.192067720218073
+              ], 
+              [
+                -111.65762877720891, 
+                24.190298348751586
+              ], 
+              [
+                -111.66071253494403, 
+                24.18289221681716
+              ], 
+              [
+                -111.64514449511344, 
+                24.156284998169433
+              ], 
+              [
+                -111.64364975207134, 
+                24.15466739418399
+              ], 
+              [
+                -111.64034064929113, 
+                24.153291954077336
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -111.6495169150448, 
+                24.352972836790425
+              ], 
+              [
+                -111.65833837169137, 
+                24.351294847299506
+              ], 
+              [
+                -111.66296148516906, 
+                24.3400599573181
+              ], 
+              [
+                -111.6423546947119, 
+                24.30474377310695
+              ], 
+              [
+                -111.64313806997482, 
+                24.299752943336287
+              ], 
+              [
+                -111.6585285748833, 
+                24.29281393538171
+              ], 
+              [
+                -111.67218979442143, 
+                24.290135149377544
+              ], 
+              [
+                -111.678409542798, 
+                24.291831052109906
+              ], 
+              [
+                -111.6918894169994, 
+                24.28950585335957
+              ], 
+              [
+                -111.6975210883368, 
+                24.280754833307586
+              ], 
+              [
+                -111.69844511761414, 
+                24.270782890019735
+              ], 
+              [
+                -111.6980649505159, 
+                24.268025931064706
+              ], 
+              [
+                -111.70016893310935, 
+                24.265557946506654
+              ], 
+              [
+                -111.70326722380338, 
+                24.265239772474956
+              ], 
+              [
+                -111.70412086050207, 
+                24.265901061793603
+              ], 
+              [
+                -111.71023499093731, 
+                24.277819865802506
+              ], 
+              [
+                -111.7127139129821, 
+                24.29896122009353
+              ], 
+              [
+                -111.71444295031728, 
+                24.303395904549433
+              ], 
+              [
+                -111.71593048618186, 
+                24.306363758941608
+              ], 
+              [
+                -111.72195434426465, 
+                24.309372665279835
+              ], 
+              [
+                -111.72412487034188, 
+                24.3051406246311
+              ], 
+              [
+                -111.72091119653567, 
+                24.275847017559038
+              ], 
+              [
+                -111.72070165003312, 
+                24.259635727920436
+              ], 
+              [
+                -111.72422658210336, 
+                24.248865858417634
+              ], 
+              [
+                -111.734603422659, 
+                24.24133812878643
+              ], 
+              [
+                -111.74910223834529, 
+                24.236016997603024
+              ], 
+              [
+                -111.75102709011125, 
+                24.23719405208197
+              ], 
+              [
+                -111.75308747157057, 
+                24.243753093027358
+              ], 
+              [
+                -111.75683684359677, 
+                24.246338198620382
+              ], 
+              [
+                -111.761484956851, 
+                24.248161267405536
+              ], 
+              [
+                -111.78039676753589, 
+                24.25166520814226
+              ], 
+              [
+                -111.80032759695447, 
+                24.25646065134151
+              ], 
+              [
+                -111.80468469341936, 
+                24.259659655870344
+              ], 
+              [
+                -111.80816510488381, 
+                24.263046146097217
+              ], 
+              [
+                -111.81127841076423, 
+                24.262282777585263
+              ], 
+              [
+                -111.82549559267905, 
+                24.24236952866114
+              ], 
+              [
+                -111.82527449287727, 
+                24.24076775550754
+              ], 
+              [
+                -111.81828691250318, 
+                24.231797187274378
+              ], 
+              [
+                -111.81139136094427, 
+                24.22495876788116
+              ], 
+              [
+                -111.80662051570462, 
+                24.221179385213915
+              ], 
+              [
+                -111.79248858082836, 
+                24.21961116230187
+              ], 
+              [
+                -111.76846138531148, 
+                24.210142830899738
+              ], 
+              [
+                -111.76696965842837, 
+                24.209070569763668
+              ], 
+              [
+                -111.76663185757087, 
+                24.20814934717819
+              ], 
+              [
+                -111.78273353129973, 
+                24.19775599662111
+              ], 
+              [
+                -111.79094904713816, 
+                24.196315056161982
+              ], 
+              [
+                -111.81985428921142, 
+                24.198701526152718
+              ], 
+              [
+                -111.84706902424945, 
+                24.20427868152578
+              ], 
+              [
+                -111.84931035930038, 
+                24.20601570260721
+              ], 
+              [
+                -111.85123129116853, 
+                24.209103796804843
+              ], 
+              [
+                -111.85221919013203, 
+                24.20957306753298
+              ], 
+              [
+                -111.86951452096028, 
+                24.20847558985483
+              ], 
+              [
+                -111.88120167937777, 
+                24.201090718088537
+              ], 
+              [
+                -111.88583954397096, 
+                24.199245294855896
+              ], 
+              [
+                -111.90067347302062, 
+                24.205470345221542
+              ], 
+              [
+                -111.90082742851699, 
+                24.207524027838314
+              ], 
+              [
+                -111.90021044053928, 
+                24.210396262050246
+              ], 
+              [
+                -111.88562210320033, 
+                24.2472788426994
+              ], 
+              [
+                -111.87850058213645, 
+                24.252369327248335
+              ], 
+              [
+                -111.87679149409885, 
+                24.25303627974854
+              ], 
+              [
+                -111.87378402876794, 
+                24.252332539119827
+              ], 
+              [
+                -111.86325993508919, 
+                24.24455697650202
+              ], 
+              [
+                -111.8543013723573, 
+                24.236588564764887
+              ], 
+              [
+                -111.84572565589565, 
+                24.232196831831562
+              ], 
+              [
+                -111.84308985566595, 
+                24.23363662591418
+              ], 
+              [
+                -111.84310987393485, 
+                24.241226316434997
+              ], 
+              [
+                -111.84989514800557, 
+                24.249871705239908
+              ], 
+              [
+                -111.8621285073476, 
+                24.257607807333606
+              ], 
+              [
+                -111.86668110742872, 
+                24.26209134365427
+              ], 
+              [
+                -111.86696755545526, 
+                24.28378738584848
+              ], 
+              [
+                -111.86038414848798, 
+                24.289449882699955
+              ], 
+              [
+                -111.83578413493453, 
+                24.285140854598563
+              ], 
+              [
+                -111.83269799010912, 
+                24.285599318317338
+              ], 
+              [
+                -111.8276487638697, 
+                24.289061553658136
+              ], 
+              [
+                -111.82073256800224, 
+                24.296672799344588
+              ], 
+              [
+                -111.82042395746383, 
+                24.297862755980862
+              ], 
+              [
+                -111.8233405191044, 
+                24.300815871240363
+              ], 
+              [
+                -111.83749883564072, 
+                24.30393075802524
+              ], 
+              [
+                -111.84328972823312, 
+                24.306723791140243
+              ], 
+              [
+                -111.84924755191824, 
+                24.311655445441232
+              ], 
+              [
+                -111.84964737535145, 
+                24.312698716402092
+              ], 
+              [
+                -111.849342777578, 
+                24.31453441667544
+              ], 
+              [
+                -111.84141201306956, 
+                24.33646797536152
+              ], 
+              [
+                -111.83152897852152, 
+                24.335919620254664
+              ], 
+              [
+                -111.82852213823188, 
+                24.33480906819708
+              ], 
+              [
+                -111.8250389746285, 
+                24.3315035647899
+              ], 
+              [
+                -111.81469421867278, 
+                24.33027978139922
+              ], 
+              [
+                -111.80287021393733, 
+                24.334807666082877
+              ], 
+              [
+                -111.80133190187415, 
+                24.337756737040728
+              ], 
+              [
+                -111.80109770560095, 
+                24.345571656306994
+              ], 
+              [
+                -111.80461350962172, 
+                24.345748225082893
+              ], 
+              [
+                -111.81116546320662, 
+                24.34420266964145
+              ], 
+              [
+                -111.81384474467147, 
+                24.346430308476503
+              ], 
+              [
+                -111.8193807850213, 
+                24.35325519840618
+              ], 
+              [
+                -111.81980370186652, 
+                24.355241714213268
+              ], 
+              [
+                -111.81784377022134, 
+                24.357974225681417
+              ], 
+              [
+                -111.81153857915297, 
+                24.362169454122363
+              ], 
+              [
+                -111.80474784586947, 
+                24.359292837966095
+              ], 
+              [
+                -111.79275819277933, 
+                24.358787458217925
+              ], 
+              [
+                -111.79005487973083, 
+                24.364665104026077
+              ], 
+              [
+                -111.78608304267595, 
+                24.378581574964347
+              ], 
+              [
+                -111.7894023515424, 
+                24.3788061699857
+              ], 
+              [
+                -111.8016949326993, 
+                24.377442340341812
+              ], 
+              [
+                -111.8149215593374, 
+                24.38746889208508
+              ], 
+              [
+                -111.81724830070559, 
+                24.39113860810233
+              ], 
+              [
+                -111.81680922140603, 
+                24.391814412429213
+              ], 
+              [
+                -111.81119011792559, 
+                24.39022376750149
+              ], 
+              [
+                -111.80625489736178, 
+                24.390717020414147
+              ], 
+              [
+                -111.79898824162049, 
+                24.392785618748608
+              ], 
+              [
+                -111.7942686397864, 
+                24.397658637388982
+              ], 
+              [
+                -111.79217560329131, 
+                24.40215498723991
+              ], 
+              [
+                -111.79250290221088, 
+                24.406715805064053
+              ], 
+              [
+                -111.78748566889547, 
+                24.422704660673382
+              ], 
+              [
+                -111.78519972151273, 
+                24.4239373916332
+              ], 
+              [
+                -111.77733330596135, 
+                24.42481786427893
+              ], 
+              [
+                -111.76104692197134, 
+                24.436372468603974
+              ], 
+              [
+                -111.76058814277302, 
+                24.44342870018289
+              ], 
+              [
+                -111.76084418328915, 
+                24.445509314384328
+              ], 
+              [
+                -111.76292826214066, 
+                24.44557349752226
+              ], 
+              [
+                -111.76497212464675, 
+                24.443887515232106
+              ], 
+              [
+                -111.76585426084297, 
+                24.443914002845503
+              ], 
+              [
+                -111.77433088431145, 
+                24.447694001466154
+              ], 
+              [
+                -111.78145997482535, 
+                24.463718685463686
+              ], 
+              [
+                -111.78372378895101, 
+                24.47283231951607
+              ], 
+              [
+                -111.78005983017611, 
+                24.48461220642532
+              ], 
+              [
+                -111.77657019513495, 
+                24.49229810709599
+              ], 
+              [
+                -111.76772785119122, 
+                24.503699255738884
+              ], 
+              [
+                -111.76582233927802, 
+                24.50340044366267
+              ], 
+              [
+                -111.76260712851457, 
+                24.500079436703434
+              ], 
+              [
+                -111.76129217898374, 
+                24.495678128134955
+              ], 
+              [
+                -111.75946411900945, 
+                24.492921022723102
+              ], 
+              [
+                -111.74973807828279, 
+                24.494950360452126
+              ], 
+              [
+                -111.74141714645847, 
+                24.508898278683308
+              ], 
+              [
+                -111.7210741909727, 
+                24.52333991662063
+              ], 
+              [
+                -111.71715460035523, 
+                24.523904537455266
+              ], 
+              [
+                -111.71469054265944, 
+                24.52200694719252
+              ], 
+              [
+                -111.71142316741707, 
+                24.50243115361073
+              ], 
+              [
+                -111.71277703276142, 
+                24.474627270813862
+              ], 
+              [
+                -111.71531878728064, 
+                24.470054110112304
+              ], 
+              [
+                -111.72145453307606, 
+                24.46490687656062
+              ], 
+              [
+                -111.72821917954926, 
+                24.44490360634807
+              ], 
+              [
+                -111.73230302169269, 
+                24.431053518269795
+              ], 
+              [
+                -111.73301688141261, 
+                24.42724360568341
+              ], 
+              [
+                -111.73294998937332, 
+                24.420372936898946
+              ], 
+              [
+                -111.7203740261908, 
+                24.389046004115414
+              ], 
+              [
+                -111.71600063295317, 
+                24.38836626841165
+              ], 
+              [
+                -111.69643817067715, 
+                24.39730045685882
+              ], 
+              [
+                -111.69182590254303, 
+                24.40088041129401
+              ], 
+              [
+                -111.69039780090986, 
+                24.414051805900424
+              ], 
+              [
+                -111.6923476739524, 
+                24.418245162465062
+              ], 
+              [
+                -111.69521411425556, 
+                24.423004793746788
+              ], 
+              [
+                -111.69634361428784, 
+                24.42392320738552
+              ], 
+              [
+                -111.69664972212112, 
+                24.427586055541127
+              ], 
+              [
+                -111.69148465751061, 
+                24.434050940747277
+              ], 
+              [
+                -111.68970107430644, 
+                24.434240799723103
+              ], 
+              [
+                -111.68478964766454, 
+                24.43303960565284
+              ], 
+              [
+                -111.67821506303456, 
+                24.428608811103853
+              ], 
+              [
+                -111.66178678014104, 
+                24.414034057751966
+              ], 
+              [
+                -111.66169297385703, 
+                24.40722632458197
+              ], 
+              [
+                -111.65891351773136, 
+                24.40572064490905
+              ], 
+              [
+                -111.65316413718031, 
+                24.406204765382896
+              ], 
+              [
+                -111.64150326979804, 
+                24.42864851817487
+              ], 
+              [
+                -111.64060275915352, 
+                24.428868341797713
+              ], 
+              [
+                -111.62982033173068, 
+                24.420327520630117
+              ], 
+              [
+                -111.62896497079372, 
+                24.418179806181815
+              ], 
+              [
+                -111.63148668625723, 
+                24.399566588841623
+              ], 
+              [
+                -111.63181686816881, 
+                24.383321252977613
+              ], 
+              [
+                -111.63049446590043, 
+                24.37002819540818
+              ], 
+              [
+                -111.6282616888125, 
+                24.362113678626997
+              ], 
+              [
+                -111.62130164038471, 
+                24.363604248973775
+              ], 
+              [
+                -111.62072529490398, 
+                24.36943991705272
+              ], 
+              [
+                -111.62295867571868, 
+                24.378228400429563
+              ], 
+              [
+                -111.62062408745591, 
+                24.392919213680347
+              ], 
+              [
+                -111.60329003797364, 
+                24.416546467019955
+              ], 
+              [
+                -111.60199531344792, 
+                24.41571834542233
+              ], 
+              [
+                -111.59663010732083, 
+                24.409859634736137
+              ], 
+              [
+                -111.59563870052453, 
+                24.408339010467603
+              ], 
+              [
+                -111.58864103898628, 
+                24.381672377406765
+              ], 
+              [
+                -111.58594858863682, 
+                24.364157862664808
+              ], 
+              [
+                -111.58719251520216, 
+                24.355803286019675
+              ], 
+              [
+                -111.60207055508462, 
+                24.323760237668807
+              ], 
+              [
+                -111.60857703761543, 
+                24.31939047564197
+              ], 
+              [
+                -111.6306231423919, 
+                24.325928766599418
+              ], 
+              [
+                -111.63956951188906, 
+                24.333471279194427
+              ], 
+              [
+                -111.64074370291647, 
+                24.336766802225846
+              ], 
+              [
+                -111.64013853244721, 
+                24.33878167999671
+              ], 
+              [
+                -111.63729559442103, 
+                24.339498320969
+              ], 
+              [
+                -111.63709624004012, 
+                24.342287109280157
+              ], 
+              [
+                -111.64768026741021, 
+                24.354450475794117
+              ], 
+              [
+                -111.6495169150448, 
+                24.352972836790425
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -106.92477596505871, 
+                25.28574949843263
+              ], 
+              [
+                -106.9223321754071, 
+                25.291745630758335
+              ], 
+              [
+                -106.91734109143326, 
+                25.298344484622884
+              ], 
+              [
+                -106.9104939539136, 
+                25.30244578639834
+              ], 
+              [
+                -106.90475631598741, 
+                25.304926747543192
+              ], 
+              [
+                -106.8955575101406, 
+                25.303445506441236
+              ], 
+              [
+                -106.88896592475383, 
+                25.30413850163624
+              ], 
+              [
+                -106.88673427194799, 
+                25.30595064267436
+              ], 
+              [
+                -106.88489651234565, 
+                25.311172473015947
+              ], 
+              [
+                -106.88337843633961, 
+                25.313163046139305
+              ], 
+              [
+                -106.87396719044472, 
+                25.32160152449086
+              ], 
+              [
+                -106.86899318145171, 
+                25.322312956073368
+              ], 
+              [
+                -106.85491988094722, 
+                25.32216413501876
+              ], 
+              [
+                -106.84326118752749, 
+                25.318968364686636
+              ], 
+              [
+                -106.84065592432884, 
+                25.317312501361354
+              ], 
+              [
+                -106.83328883865634, 
+                25.308324143698293
+              ], 
+              [
+                -106.83709321313981, 
+                25.298520189484105
+              ], 
+              [
+                -106.83782024455927, 
+                25.29469696010649
+              ], 
+              [
+                -106.83844070879067, 
+                25.286796789374357
+              ], 
+              [
+                -106.83759937584203, 
+                25.282826154809662
+              ], 
+              [
+                -106.83310309824168, 
+                25.278740590544874
+              ], 
+              [
+                -106.82710772451037, 
+                25.275388568625374
+              ], 
+              [
+                -106.82181901548535, 
+                25.269605695712574
+              ], 
+              [
+                -106.82001741797232, 
+                25.266361708137488
+              ], 
+              [
+                -106.8169065998021, 
+                25.2573609006363
+              ], 
+              [
+                -106.82673766736588, 
+                25.24391775091111
+              ], 
+              [
+                -106.83833590047044, 
+                25.23592764571056
+              ], 
+              [
+                -106.850271995447, 
+                25.221762844832813
+              ], 
+              [
+                -106.85828359694754, 
+                25.218332810189473
+              ], 
+              [
+                -106.90375352941908, 
+                25.2301815620344
+              ], 
+              [
+                -106.91414255635149, 
+                25.23059632150354
+              ], 
+              [
+                -106.92198885353825, 
+                25.23308509727814
+              ], 
+              [
+                -106.92726432268324, 
+                25.240887323139873
+              ], 
+              [
+                -106.9274309871984, 
+                25.241939503757752
+              ], 
+              [
+                -106.92579693398082, 
+                25.24377393771668
+              ], 
+              [
+                -106.92533997529597, 
+                25.250673343864623
+              ], 
+              [
+                -106.92621543619961, 
+                25.27287633139341
+              ], 
+              [
+                -106.92657298674325, 
+                25.273659702837886
+              ], 
+              [
+                -106.9284028668258, 
+                25.274567397832033
+              ], 
+              [
+                -106.92901884563284, 
+                25.27570887867336
+              ], 
+              [
+                -106.92850475803739, 
+                25.279232075708865
+              ], 
+              [
+                -106.92477596505871, 
+                25.28574949843263
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.8927317458008, 
+                25.797634807775207
+              ], 
+              [
+                -107.89577515117392, 
+                25.796176630027674
+              ], 
+              [
+                -107.89567784233792, 
+                25.793429821147086
+              ], 
+              [
+                -107.90405241319083, 
+                25.785123277614666
+              ], 
+              [
+                -107.90718411522819, 
+                25.786488988609882
+              ], 
+              [
+                -107.91813201380444, 
+                25.789456183818444
+              ], 
+              [
+                -107.93678348523646, 
+                25.79084902619325
+              ], 
+              [
+                -107.93868489638601, 
+                25.79014268000139
+              ], 
+              [
+                -107.95360265870544, 
+                25.76723204196547
+              ], 
+              [
+                -107.97368869797188, 
+                25.75429563695108
+              ], 
+              [
+                -107.98958016620792, 
+                25.742068742567298
+              ], 
+              [
+                -107.99198752211203, 
+                25.74113273196239
+              ], 
+              [
+                -107.99361671001992, 
+                25.742639313598044
+              ], 
+              [
+                -107.9941081515607, 
+                25.744068992132743
+              ], 
+              [
+                -107.99456718236488, 
+                25.757421589538158
+              ], 
+              [
+                -108.0014495677168, 
+                25.77116545354239
+              ], 
+              [
+                -108.00841902521304, 
+                25.774829254020734
+              ], 
+              [
+                -108.00979418367977, 
+                25.773709825465964
+              ], 
+              [
+                -108.01003100922975, 
+                25.768097697964603
+              ], 
+              [
+                -108.0111369681312, 
+                25.767399403948975
+              ], 
+              [
+                -108.02417503952921, 
+                25.767688785273577
+              ], 
+              [
+                -108.02754265347184, 
+                25.76909031257445
+              ], 
+              [
+                -108.03001786914106, 
+                25.77289296247801
+              ], 
+              [
+                -108.029569138994, 
+                25.776631074893398
+              ], 
+              [
+                -108.02606229524889, 
+                25.78196930918894
+              ], 
+              [
+                -108.02294881329135, 
+                25.78248057534495
+              ], 
+              [
+                -108.02107235142607, 
+                25.78440314176806
+              ], 
+              [
+                -108.01495638128746, 
+                25.79279038195428
+              ], 
+              [
+                -108.01359557198526, 
+                25.797505096649434
+              ], 
+              [
+                -108.01812323332034, 
+                25.805476275784184
+              ], 
+              [
+                -108.02358086870373, 
+                25.80616595151036
+              ], 
+              [
+                -108.03334609950669, 
+                25.817784822046747
+              ], 
+              [
+                -108.03910825373846, 
+                25.83807773471585
+              ], 
+              [
+                -108.07989742832599, 
+                25.865737926265503
+              ], 
+              [
+                -108.08276800526384, 
+                25.869578895937114
+              ], 
+              [
+                -108.08317113623286, 
+                25.874056263997257
+              ], 
+              [
+                -108.08607407117037, 
+                25.878389753809746
+              ], 
+              [
+                -108.10138897775155, 
+                25.890505436342227
+              ], 
+              [
+                -108.1147641863445, 
+                25.89755550167762
+              ], 
+              [
+                -108.11769964887655, 
+                25.89986043230894
+              ], 
+              [
+                -108.11689712589153, 
+                25.90487325892691
+              ], 
+              [
+                -108.11219903315201, 
+                25.912634193178288
+              ], 
+              [
+                -108.12897784320334, 
+                25.94352862661628
+              ], 
+              [
+                -108.13409165811724, 
+                25.948219326543022
+              ], 
+              [
+                -108.15525449845164, 
+                25.958765664387297
+              ], 
+              [
+                -108.1623389860552, 
+                25.95960241821402
+              ], 
+              [
+                -108.16622026572797, 
+                25.95806651709345
+              ], 
+              [
+                -108.16560047675442, 
+                25.956324502836406
+              ], 
+              [
+                -108.16261082769901, 
+                25.952110451678713
+              ], 
+              [
+                -108.15743923841035, 
+                25.94707202299538
+              ], 
+              [
+                -108.14728704840383, 
+                25.940516841647824
+              ], 
+              [
+                -108.13133599466323, 
+                25.917877274614096
+              ], 
+              [
+                -108.11916464791518, 
+                25.86988589991472
+              ], 
+              [
+                -108.12056479077849, 
+                25.86667879732583
+              ], 
+              [
+                -108.13161246390679, 
+                25.861005489797925
+              ], 
+              [
+                -108.13930244302855, 
+                25.85830812987877
+              ], 
+              [
+                -108.18402321679525, 
+                25.86756271102861
+              ], 
+              [
+                -108.19244191662835, 
+                25.86635479340551
+              ], 
+              [
+                -108.20442070585288, 
+                25.866988977918194
+              ], 
+              [
+                -108.21018542989607, 
+                25.868406983334648
+              ], 
+              [
+                -108.23558905823283, 
+                25.901411923770347
+              ], 
+              [
+                -108.24044320797837, 
+                25.912184967986693
+              ], 
+              [
+                -108.24698590402583, 
+                25.915554670981503
+              ], 
+              [
+                -108.24944400334705, 
+                25.912469460607657
+              ], 
+              [
+                -108.25089297474923, 
+                25.908740258478733
+              ], 
+              [
+                -108.24948349929294, 
+                25.90404707046319
+              ], 
+              [
+                -108.2459600854321, 
+                25.896847767768406
+              ], 
+              [
+                -108.24438098532269, 
+                25.88779197274331
+              ], 
+              [
+                -108.25016574555286, 
+                25.875573466934053
+              ], 
+              [
+                -108.25942892564197, 
+                25.872787691734054
+              ], 
+              [
+                -108.26118664129145, 
+                25.87285206081532
+              ], 
+              [
+                -108.26684700475089, 
+                25.874796554753797
+              ], 
+              [
+                -108.27112721992391, 
+                25.877979379956837
+              ], 
+              [
+                -108.2773175480828, 
+                25.87968736307052
+              ], 
+              [
+                -108.28421654420026, 
+                25.879975355101696
+              ], 
+              [
+                -108.29250639474452, 
+                25.87927494698
+              ], 
+              [
+                -108.293698336665, 
+                25.87855767881957
+              ], 
+              [
+                -108.29414267462461, 
+                25.8717629428319
+              ], 
+              [
+                -108.301760448689, 
+                25.866585122766626
+              ], 
+              [
+                -108.30832493294628, 
+                25.869695757234624
+              ], 
+              [
+                -108.31000509390574, 
+                25.874352735256892
+              ], 
+              [
+                -108.31821863237927, 
+                25.880337858430654
+              ], 
+              [
+                -108.324049713116, 
+                25.87009780355769
+              ], 
+              [
+                -108.3217501158319, 
+                25.866741130272334
+              ], 
+              [
+                -108.32092235783428, 
+                25.85607532169675
+              ], 
+              [
+                -108.32148173882683, 
+                25.85586612764759
+              ], 
+              [
+                -108.31963974590667, 
+                25.852822113361878
+              ], 
+              [
+                -108.31692468429158, 
+                25.84985773442625
+              ], 
+              [
+                -108.30082835884198, 
+                25.84979064234406
+              ], 
+              [
+                -108.2761214609431, 
+                25.853813596189834
+              ], 
+              [
+                -108.2722257923189, 
+                25.8586089266638
+              ], 
+              [
+                -108.2533763388724, 
+                25.85715114471268
+              ], 
+              [
+                -108.23753119048743, 
+                25.85939801879826
+              ], 
+              [
+                -108.22966434352652, 
+                25.859330476445354
+              ], 
+              [
+                -108.21598018273876, 
+                25.856132032314065
+              ], 
+              [
+                -108.19206363987082, 
+                25.84811867749128
+              ], 
+              [
+                -108.15098670703655, 
+                25.822653180598824
+              ], 
+              [
+                -108.14876245986186, 
+                25.819545568736963
+              ], 
+              [
+                -108.14941164782658, 
+                25.810789014163063
+              ], 
+              [
+                -108.1518855986744, 
+                25.80313918810925
+              ], 
+              [
+                -108.15385911469166, 
+                25.799634853852538
+              ], 
+              [
+                -108.15620445585992, 
+                25.797625951127348
+              ], 
+              [
+                -108.16028722468755, 
+                25.790929975455047
+              ], 
+              [
+                -108.1631742798754, 
+                25.77904758378392
+              ], 
+              [
+                -108.1563788394464, 
+                25.777767512107886
+              ], 
+              [
+                -108.14419009450214, 
+                25.794489272974175
+              ], 
+              [
+                -108.13837319664606, 
+                25.80472377401416
+              ], 
+              [
+                -108.13959894730294, 
+                25.81342036801579
+              ], 
+              [
+                -108.13805461499345, 
+                25.81798671329349
+              ], 
+              [
+                -108.12098427145438, 
+                25.821917397885144
+              ], 
+              [
+                -108.12077286514388, 
+                25.829006025599462
+              ], 
+              [
+                -108.11834575859795, 
+                25.829079754909408
+              ], 
+              [
+                -108.11422790793654, 
+                25.82600824244562
+              ], 
+              [
+                -108.09314893768011, 
+                25.79412729386445
+              ], 
+              [
+                -108.08094924769898, 
+                25.77643393364811
+              ], 
+              [
+                -108.07696520829269, 
+                25.774442674987803
+              ], 
+              [
+                -108.05621070499164, 
+                25.77081248225768
+              ], 
+              [
+                -108.05240919925515, 
+                25.761232972299798
+              ], 
+              [
+                -108.04168560892514, 
+                25.750783979677188
+              ], 
+              [
+                -108.03470313087948, 
+                25.748387808950774
+              ], 
+              [
+                -108.02896247729794, 
+                25.741850251558308
+              ], 
+              [
+                -108.01894949377474, 
+                25.727898427678618
+              ], 
+              [
+                -108.0237830564154, 
+                25.710001998175976
+              ], 
+              [
+                -108.02670935974551, 
+                25.7053909369993
+              ], 
+              [
+                -108.05488719550092, 
+                25.678157054925844
+              ], 
+              [
+                -108.05715464814584, 
+                25.676795187381888
+              ], 
+              [
+                -108.06013541503931, 
+                25.676530522423
+              ], 
+              [
+                -108.06236559653236, 
+                25.67664304331499
+              ], 
+              [
+                -108.06510743274356, 
+                25.677869131002435
+              ], 
+              [
+                -108.06637628509226, 
+                25.679901681674952
+              ], 
+              [
+                -108.06746009234203, 
+                25.683194828289782
+              ], 
+              [
+                -108.0678425195847, 
+                25.68635348881847
+              ], 
+              [
+                -108.06765411208127, 
+                25.69070098210065
+              ], 
+              [
+                -108.06613413587962, 
+                25.692233184380356
+              ], 
+              [
+                -108.06652409108065, 
+                25.697218980576594
+              ], 
+              [
+                -108.0692074252004, 
+                25.697895493563564
+              ], 
+              [
+                -108.07106521688185, 
+                25.698224346738744
+              ], 
+              [
+                -108.08317713360704, 
+                25.696542543428368
+              ], 
+              [
+                -108.09013800140744, 
+                25.685853894661108
+              ], 
+              [
+                -108.0831982753184, 
+                25.681059649756918
+              ], 
+              [
+                -108.08163702113366, 
+                25.68049211748767
+              ], 
+              [
+                -108.07784194116469, 
+                25.674630648069382
+              ], 
+              [
+                -108.07541606743663, 
+                25.662145953607364
+              ], 
+              [
+                -108.07601585987109, 
+                25.660355847000684
+              ], 
+              [
+                -108.07867495213608, 
+                25.65833966120045
+              ], 
+              [
+                -108.09860859157548, 
+                25.653721274450557
+              ], 
+              [
+                -108.11755521668472, 
+                25.65879947098926
+              ], 
+              [
+                -108.12259855949955, 
+                25.659613774767678
+              ], 
+              [
+                -108.13395411010016, 
+                25.65907003252702
+              ], 
+              [
+                -108.13807825008523, 
+                25.656210907950875
+              ], 
+              [
+                -108.14034723387488, 
+                25.6515212451345
+              ], 
+              [
+                -108.13972550423406, 
+                25.64573425140102
+              ], 
+              [
+                -108.135445820429, 
+                25.643777788572134
+              ], 
+              [
+                -108.11599520419672, 
+                25.631451431889136
+              ], 
+              [
+                -108.11260605189669, 
+                25.62839352362788
+              ], 
+              [
+                -108.10747500026245, 
+                25.61899187750623
+              ], 
+              [
+                -108.10730229791372, 
+                25.6054340731238
+              ], 
+              [
+                -108.10788990993589, 
+                25.60372178181067
+              ], 
+              [
+                -108.11186336635471, 
+                25.59932977259197
+              ], 
+              [
+                -108.11991989088261, 
+                25.59431828927075
+              ], 
+              [
+                -108.13174690300964, 
+                25.594904605307633
+              ], 
+              [
+                -108.14172723741184, 
+                25.603053473252608
+              ], 
+              [
+                -108.14568955678426, 
+                25.607009979414308
+              ], 
+              [
+                -108.14604113535782, 
+                25.615350586062654
+              ], 
+              [
+                -108.15145858787253, 
+                25.61917365664549
+              ], 
+              [
+                -108.15863292636824, 
+                25.61617518099237
+              ], 
+              [
+                -108.16425649564692, 
+                25.615451990604654
+              ], 
+              [
+                -108.18556062072795, 
+                25.6185822019607
+              ], 
+              [
+                -108.18617380798995, 
+                25.624611079391357
+              ], 
+              [
+                -108.22043096971275, 
+                25.64096201942549
+              ], 
+              [
+                -108.2313257055481, 
+                25.64139894206591
+              ], 
+              [
+                -108.23735186992735, 
+                25.641057939703913
+              ], 
+              [
+                -108.2393836954342, 
+                25.640261701669644
+              ], 
+              [
+                -108.25022042716975, 
+                25.6294955512578
+              ], 
+              [
+                -108.2566773323119, 
+                25.624118905631626
+              ], 
+              [
+                -108.26442892356353, 
+                25.6275743185168
+              ], 
+              [
+                -108.2790649871604, 
+                25.63256014738363
+              ], 
+              [
+                -108.29669499413457, 
+                25.636133308414962
+              ], 
+              [
+                -108.30025644469225, 
+                25.63610295668863
+              ], 
+              [
+                -108.3065744531874, 
+                25.634807635898525
+              ], 
+              [
+                -108.31166884799677, 
+                25.635837113488737
+              ], 
+              [
+                -108.34624833531626, 
+                25.6449419818586
+              ], 
+              [
+                -108.37383336279666, 
+                25.653379241533134
+              ], 
+              [
+                -108.39537923235511, 
+                25.6587639093137
+              ], 
+              [
+                -108.40687090248218, 
+                25.66020025112908
+              ], 
+              [
+                -108.41191603957117, 
+                25.65731627882491
+              ], 
+              [
+                -108.4234562401006, 
+                25.65988140774841
+              ], 
+              [
+                -108.42668456188724, 
+                25.661577078945975
+              ], 
+              [
+                -108.43065922136361, 
+                25.672202839584315
+              ], 
+              [
+                -108.43474069594419, 
+                25.677091153674926
+              ], 
+              [
+                -108.43655900590161, 
+                25.678626840863107
+              ], 
+              [
+                -108.47170443567124, 
+                25.692709187127846
+              ], 
+              [
+                -108.49555181889274, 
+                25.698189799821577
+              ], 
+              [
+                -108.50287565871156, 
+                25.698953303229477
+              ], 
+              [
+                -108.51160682808937, 
+                25.702638392754295
+              ], 
+              [
+                -108.51725619268576, 
+                25.706982834443618
+              ], 
+              [
+                -108.51933456911371, 
+                25.71004877960429
+              ], 
+              [
+                -108.51993093771632, 
+                25.710928393602053
+              ], 
+              [
+                -108.52045235360711, 
+                25.715202340399884
+              ], 
+              [
+                -108.51991803850422, 
+                25.71845274425282
+              ], 
+              [
+                -108.52048241236213, 
+                25.72187861421226
+              ], 
+              [
+                -108.52304950091353, 
+                25.72905657830014
+              ], 
+              [
+                -108.52952762759823, 
+                25.738387066630676
+              ], 
+              [
+                -108.5371417078743, 
+                25.743721933024357
+              ], 
+              [
+                -108.54891098757332, 
+                25.750178848405845
+              ], 
+              [
+                -108.57575397522494, 
+                25.761947283290908
+              ], 
+              [
+                -108.59710857443496, 
+                25.768363589089294
+              ], 
+              [
+                -108.59856712922273, 
+                25.774463609470413
+              ], 
+              [
+                -108.59753004678835, 
+                25.779824079559404
+              ], 
+              [
+                -108.59950164070936, 
+                25.783328906334066
+              ], 
+              [
+                -108.60640160525685, 
+                25.783646812204726
+              ], 
+              [
+                -108.63308906748051, 
+                25.781321911697802
+              ], 
+              [
+                -108.73298718482978, 
+                25.77915844400557
+              ], 
+              [
+                -108.75406209196197, 
+                25.785857017046446
+              ], 
+              [
+                -108.77198829364394, 
+                25.792350218392674
+              ], 
+              [
+                -108.796536628268, 
+                25.798349618117857
+              ], 
+              [
+                -108.81666516627622, 
+                25.801414699861045
+              ], 
+              [
+                -108.84970831816511, 
+                25.802979364071692
+              ], 
+              [
+                -108.90944549922142, 
+                25.80572129930704
+              ], 
+              [
+                -108.92861371013338, 
+                25.807065257383012
+              ], 
+              [
+                -108.94960704641088, 
+                25.80961061743084
+              ], 
+              [
+                -108.98379409028918, 
+                25.81656120075361
+              ], 
+              [
+                -108.99959544251948, 
+                25.820934927544183
+              ], 
+              [
+                -109.04294972626136, 
+                25.831359557344218
+              ], 
+              [
+                -109.0726007767623, 
+                25.835369209265508
+              ], 
+              [
+                -109.07549120351003, 
+                25.83790710575796
+              ], 
+              [
+                -109.07566245939468, 
+                25.839027205393258
+              ], 
+              [
+                -109.0745511335022, 
+                25.84472084567897
+              ], 
+              [
+                -109.07336575479071, 
+                25.84751832897491
+              ], 
+              [
+                -109.0653480539163, 
+                25.847090800843052
+              ], 
+              [
+                -109.06234046507574, 
+                25.853125977696752
+              ], 
+              [
+                -109.06491111017215, 
+                25.868583695751635
+              ], 
+              [
+                -109.06449719285288, 
+                25.88600246938938
+              ], 
+              [
+                -109.06420766931573, 
+                25.88820714339714
+              ], 
+              [
+                -109.06212003574551, 
+                25.89119496575959
+              ], 
+              [
+                -109.06005046153973, 
+                25.892799016256223
+              ], 
+              [
+                -109.05053862190147, 
+                25.894878302851946
+              ], 
+              [
+                -109.04697848057198, 
+                25.893754406716194
+              ], 
+              [
+                -109.044995506192, 
+                25.888531148056217
+              ], 
+              [
+                -109.04722221631361, 
+                25.884875739387592
+              ], 
+              [
+                -109.04746421992351, 
+                25.882590607165458
+              ], 
+              [
+                -109.04509651530373, 
+                25.879465314609845
+              ], 
+              [
+                -109.04035765770662, 
+                25.87904525130591
+              ], 
+              [
+                -109.03318473886378, 
+                25.88101257615139
+              ], 
+              [
+                -109.03155060813693, 
+                25.882301743930988
+              ], 
+              [
+                -109.02725873217369, 
+                25.8884503764607
+              ], 
+              [
+                -109.02661992059781, 
+                25.890301418712784
+              ], 
+              [
+                -109.02765345607085, 
+                25.892021825774673
+              ], 
+              [
+                -109.03006838950361, 
+                25.8935376292039
+              ], 
+              [
+                -109.03198954780765, 
+                25.895512541796087
+              ], 
+              [
+                -109.03370674828295, 
+                25.90388333660205
+              ], 
+              [
+                -109.02739974939976, 
+                25.928735143115638
+              ], 
+              [
+                -109.03318243725039, 
+                25.93847733924881
+              ], 
+              [
+                -109.03830283399789, 
+                25.93352933378216
+              ], 
+              [
+                -109.04495932824133, 
+                25.933378485888593
+              ], 
+              [
+                -109.04734478223146, 
+                25.934078918265655
+              ], 
+              [
+                -109.04974587614029, 
+                25.93595608967419
+              ], 
+              [
+                -109.05009528490305, 
+                25.937545524884236
+              ], 
+              [
+                -109.04969312520889, 
+                25.942659974182796
+              ], 
+              [
+                -109.04914771763559, 
+                25.944424226751764
+              ], 
+              [
+                -109.04631781064275, 
+                25.94783912323136
+              ], 
+              [
+                -109.04529213547411, 
+                25.953182110326267
+              ], 
+              [
+                -109.05278514339894, 
+                25.96098694624985
+              ], 
+              [
+                -109.05872743791892, 
+                25.965612016132937
+              ], 
+              [
+                -109.06534522814648, 
+                25.97313517316163
+              ], 
+              [
+                -109.0808392932954, 
+                25.99292455111906
+              ], 
+              [
+                -109.08623698787704, 
+                26.000916971452487
+              ], 
+              [
+                -109.08959793495359, 
+                26.010513162447715
+              ], 
+              [
+                -109.08961881491574, 
+                26.013102346836895
+              ], 
+              [
+                -109.0886237363752, 
+                26.01438592659202
+              ], 
+              [
+                -109.08570800280862, 
+                26.01555431478177
+              ], 
+              [
+                -109.08227052361003, 
+                26.019267295241136
+              ], 
+              [
+                -109.07653474243128, 
+                26.030040675209708
+              ], 
+              [
+                -109.07560666557077, 
+                26.032794956590823
+              ], 
+              [
+                -109.07739683552846, 
+                26.059140076497194
+              ], 
+              [
+                -109.08001021521031, 
+                26.066603540278233
+              ], 
+              [
+                -109.08908972920992, 
+                26.076105161439212
+              ], 
+              [
+                -109.09967223522882, 
+                26.071574069532783
+              ], 
+              [
+                -109.09994154658666, 
+                26.059727600819283
+              ], 
+              [
+                -109.09513924574676, 
+                26.034370166830605
+              ], 
+              [
+                -109.09520208249452, 
+                26.032242441793837
+              ], 
+              [
+                -109.10426688189914, 
+                26.023094760075864
+              ], 
+              [
+                -109.10948094835281, 
+                26.020550204173503
+              ], 
+              [
+                -109.11123457789961, 
+                26.018215516261737
+              ], 
+              [
+                -109.11270680218969, 
+                26.014693741107287
+              ], 
+              [
+                -109.11613899789802, 
+                25.985337475654003
+              ], 
+              [
+                -109.11104041364838, 
+                25.974195117782845
+              ], 
+              [
+                -109.11143983949034, 
+                25.9710994565765
+              ], 
+              [
+                -109.11465619508104, 
+                25.96354547758736
+              ], 
+              [
+                -109.11620901292667, 
+                25.961297395425607
+              ], 
+              [
+                -109.13317974823396, 
+                25.942797736539227
+              ], 
+              [
+                -109.16539213885356, 
+                25.90431070013153
+              ], 
+              [
+                -109.17243381136257, 
+                25.89800126815473
+              ], 
+              [
+                -109.17641214731084, 
+                25.89336425517787
+              ], 
+              [
+                -109.17819133825762, 
+                25.889559977880893
+              ], 
+              [
+                -109.17858357018056, 
+                25.884296475990585
+              ], 
+              [
+                -109.1816446321681, 
+                25.87826403610258
+              ], 
+              [
+                -109.1892032423039, 
+                25.86902526786355
+              ], 
+              [
+                -109.19219788285625, 
+                25.866596225113657
+              ], 
+              [
+                -109.19472579685592, 
+                25.864629959461183
+              ], 
+              [
+                -109.20087385872186, 
+                25.86190670790238
+              ], 
+              [
+                -109.21632243509839, 
+                25.856165267872246
+              ], 
+              [
+                -109.26548089482992, 
+                25.842764924084733
+              ], 
+              [
+                -109.2727559246807, 
+                25.839057782435894
+              ], 
+              [
+                -109.29244872493265, 
+                25.83459931917298
+              ], 
+              [
+                -109.3307029708206, 
+                25.82852656991642
+              ], 
+              [
+                -109.34154845811679, 
+                25.82814000917178
+              ], 
+              [
+                -109.36498536952385, 
+                25.83228889812546
+              ], 
+              [
+                -109.40290683973548, 
+                25.836868185997794
+              ], 
+              [
+                -109.41815949969184, 
+                25.837512533288432
+              ], 
+              [
+                -109.46991221764517, 
+                25.836642326792568
+              ], 
+              [
+                -109.47484445120837, 
+                25.837614559492504
+              ], 
+              [
+                -109.47962448869492, 
+                25.84409100112803
+              ], 
+              [
+                -109.4972388629961, 
+                25.87668971860981
+              ], 
+              [
+                -109.51183722154542, 
+                25.874072860283693
+              ], 
+              [
+                -109.53102169213389, 
+                25.85927647659097
+              ], 
+              [
+                -109.54537868836327, 
+                25.846913515962836
+              ], 
+              [
+                -109.58848951003704, 
+                25.854504333936625
+              ], 
+              [
+                -109.5994850438884, 
+                25.855584229328223
+              ], 
+              [
+                -109.61268150976557, 
+                25.855040457816074
+              ], 
+              [
+                -109.62029293281111, 
+                25.853796156352757
+              ], 
+              [
+                -109.63418314148392, 
+                25.849011798713008
+              ], 
+              [
+                -109.64278018986379, 
+                25.8471605692573
+              ], 
+              [
+                -109.64983153962275, 
+                25.84618258173646
+              ], 
+              [
+                -109.67788078859034, 
+                25.844907118335414
+              ], 
+              [
+                -109.74649539524876, 
+                25.835430737351587
+              ], 
+              [
+                -109.75841703443986, 
+                25.832978673494654
+              ], 
+              [
+                -109.78267029391981, 
+                25.8263353596655
+              ], 
+              [
+                -109.80696515748245, 
+                25.818122334287242
+              ], 
+              [
+                -109.82058467405457, 
+                25.811664296280263
+              ], 
+              [
+                -109.82747684770486, 
+                25.80806606140364
+              ], 
+              [
+                -109.85835441086509, 
+                25.785999928226396
+              ], 
+              [
+                -109.87171695148757, 
+                25.777872111191513
+              ], 
+              [
+                -109.88435374788803, 
+                25.773150415725404
+              ], 
+              [
+                -109.92999764380852, 
+                25.751443657601165
+              ], 
+              [
+                -109.97315885835559, 
+                25.72854945198808
+              ], 
+              [
+                -109.98781188226812, 
+                25.71861572970746
+              ], 
+              [
+                -110.02320990146738, 
+                25.69078967579435
+              ], 
+              [
+                -110.02434165797034, 
+                25.68990222720659
+              ], 
+              [
+                -110.03335838902322, 
+                25.687885984993617
+              ], 
+              [
+                -110.04488068365602, 
+                25.687618180469
+              ], 
+              [
+                -110.0475834534969, 
+                25.687849669137044
+              ], 
+              [
+                -110.04827289301547, 
+                25.69010290233415
+              ], 
+              [
+                -110.0494524817349, 
+                25.691486866965935
+              ], 
+              [
+                -110.0520964558742, 
+                25.69207802547312
+              ], 
+              [
+                -110.05537169928928, 
+                25.692593536801976
+              ], 
+              [
+                -110.06192446261508, 
+                25.69061870381937
+              ], 
+              [
+                -110.06635487385785, 
+                25.69475930787627
+              ], 
+              [
+                -110.06729954438542, 
+                25.69926254119565
+              ], 
+              [
+                -110.0651512239303, 
+                25.70610171501519
+              ], 
+              [
+                -110.09697379556735, 
+                25.721281552987634
+              ], 
+              [
+                -110.1144291481979, 
+                25.72614231518635
+              ], 
+              [
+                -110.12072010625144, 
+                25.726558578783347
+              ], 
+              [
+                -110.12954153059563, 
+                25.7346029295938
+              ], 
+              [
+                -110.13223555778798, 
+                25.74189068849352
+              ], 
+              [
+                -110.14722340432579, 
+                25.73964904138961
+              ], 
+              [
+                -110.15565107967836, 
+                25.736101517441877
+              ], 
+              [
+                -110.1575376890324, 
+                25.734237799875302
+              ], 
+              [
+                -110.15708950148517, 
+                25.726382412987014
+              ], 
+              [
+                -110.16968640598554, 
+                25.71902048448436
+              ], 
+              [
+                -110.17273862817966, 
+                25.71936300381638
+              ], 
+              [
+                -110.18038922359912, 
+                25.724204759527442
+              ], 
+              [
+                -110.18660867806298, 
+                25.72598872022078
+              ], 
+              [
+                -110.19384778401665, 
+                25.723251293718153
+              ], 
+              [
+                -110.19567510755026, 
+                25.721438741244025
+              ], 
+              [
+                -110.19676052171718, 
+                25.718599381110383
+              ], 
+              [
+                -110.19651063801128, 
+                25.717029667161967
+              ], 
+              [
+                -110.19706660944152, 
+                25.71650180980654
+              ], 
+              [
+                -110.20588947886648, 
+                25.715275120869062
+              ], 
+              [
+                -110.22213822770918, 
+                25.720802309413003
+              ], 
+              [
+                -110.2273862415683, 
+                25.727514189016603
+              ], 
+              [
+                -110.22759006012457, 
+                25.730691768441776
+              ], 
+              [
+                -110.22909395176788, 
+                25.735086453559255
+              ], 
+              [
+                -110.23058701404341, 
+                25.7366927051659
+              ], 
+              [
+                -110.24543630463961, 
+                25.744709581970664
+              ], 
+              [
+                -110.25551127405785, 
+                25.74713824034906
+              ], 
+              [
+                -110.26307328481802, 
+                25.748589842589368
+              ], 
+              [
+                -110.28696016882348, 
+                25.740705692344967
+              ], 
+              [
+                -110.28970885767154, 
+                25.734015137183036
+              ], 
+              [
+                -110.2971126057453, 
+                25.735698333829184
+              ], 
+              [
+                -110.3020056817153, 
+                25.7694598068125
+              ], 
+              [
+                -110.29987885944581, 
+                25.7914799162609
+              ], 
+              [
+                -110.29792141049361, 
+                25.796800995945404
+              ], 
+              [
+                -110.29744339734998, 
+                25.809936390711908
+              ], 
+              [
+                -110.30232824955137, 
+                25.813765520823875
+              ], 
+              [
+                -110.30818306864113, 
+                25.8127561463472
+              ], 
+              [
+                -110.31075617578047, 
+                25.81125888220497
+              ], 
+              [
+                -110.31212073448845, 
+                25.80428638007166
+              ], 
+              [
+                -110.32546497440265, 
+                25.80058450015301
+              ], 
+              [
+                -110.33001058758065, 
+                25.800191580689244
+              ], 
+              [
+                -110.33635188070436, 
+                25.798496861276753
+              ], 
+              [
+                -110.35782969167535, 
+                25.78217378269379
+              ], 
+              [
+                -110.36240357996225, 
+                25.776828616545664
+              ], 
+              [
+                -110.36644251287413, 
+                25.768680407060423
+              ], 
+              [
+                -110.36676307598047, 
+                25.762642871016624
+              ], 
+              [
+                -110.36620690193156, 
+                25.753032087358466
+              ], 
+              [
+                -110.35231161156992, 
+                25.736121860719468
+              ], 
+              [
+                -110.33474740452546, 
+                25.725850023963595
+              ], 
+              [
+                -110.33599474187653, 
+                25.722370811439706
+              ], 
+              [
+                -110.35886803977365, 
+                25.718407641878965
+              ], 
+              [
+                -110.39508115396133, 
+                25.72440340301426
+              ], 
+              [
+                -110.43281594557101, 
+                25.73666526131768
+              ], 
+              [
+                -110.43749773901139, 
+                25.745216295391725
+              ], 
+              [
+                -110.43633571485255, 
+                25.74638892563449
+              ], 
+              [
+                -110.43674939688263, 
+                25.74923213404351
+              ], 
+              [
+                -110.43752172947829, 
+                25.75090389637426
+              ], 
+              [
+                -110.44641250351516, 
+                25.752584593220348
+              ], 
+              [
+                -110.45357599287976, 
+                25.756233084141456
+              ], 
+              [
+                -110.46188830751771, 
+                25.75762576993688
+              ], 
+              [
+                -110.47996142562359, 
+                25.758100061147495
+              ], 
+              [
+                -110.49574847585288, 
+                25.757251986980894
+              ], 
+              [
+                -110.50750235808141, 
+                25.747244322057742
+              ], 
+              [
+                -110.51672567401357, 
+                25.736275344160816
+              ], 
+              [
+                -110.52277917929405, 
+                25.73377992259515
+              ], 
+              [
+                -110.53826076232387, 
+                25.733812561056645
+              ], 
+              [
+                -110.54135846946293, 
+                25.735529587592808
+              ], 
+              [
+                -110.5427199678522, 
+                25.736961717664716
+              ], 
+              [
+                -110.54296742443204, 
+                25.73807885935507
+              ], 
+              [
+                -110.53670785542438, 
+                25.752106324317058
+              ], 
+              [
+                -110.52707878593961, 
+                25.75986545043896
+              ], 
+              [
+                -110.5167509728517, 
+                25.77213869234705
+              ], 
+              [
+                -110.50688496367437, 
+                25.80579391802366
+              ], 
+              [
+                -110.51371170110266, 
+                25.809266863895456
+              ], 
+              [
+                -110.51907824938048, 
+                25.80573004302386
+              ], 
+              [
+                -110.52079881343138, 
+                25.79918510632899
+              ], 
+              [
+                -110.52214917803452, 
+                25.790426470365144
+              ], 
+              [
+                -110.5250817989681, 
+                25.783737916449788
+              ], 
+              [
+                -110.52674492663033, 
+                25.783036798218824
+              ], 
+              [
+                -110.55059554917881, 
+                25.757698807271403
+              ], 
+              [
+                -110.56362041474502, 
+                25.743484800185335
+              ], 
+              [
+                -110.56930304010238, 
+                25.7354124698114
+              ], 
+              [
+                -110.5754725011489, 
+                25.7286939459979
+              ], 
+              [
+                -110.59558127976257, 
+                25.71240803145045
+              ], 
+              [
+                -110.60225628426544, 
+                25.710679701305953
+              ], 
+              [
+                -110.61724452475448, 
+                25.708776155263347
+              ], 
+              [
+                -110.61873763871776, 
+                25.709811273603265
+              ], 
+              [
+                -110.62512989419439, 
+                25.70468892521007
+              ], 
+              [
+                -110.62528486050704, 
+                25.70226292655792
+              ], 
+              [
+                -110.62203520214757, 
+                25.691877922851706
+              ], 
+              [
+                -110.6181409666672, 
+                25.684622214266554
+              ], 
+              [
+                -110.61373364179364, 
+                25.685734347564598
+              ], 
+              [
+                -110.6101713214568, 
+                25.69033397490108
+              ], 
+              [
+                -110.60536824128778, 
+                25.69354457211202
+              ], 
+              [
+                -110.57502221606963, 
+                25.710176567197244
+              ], 
+              [
+                -110.57342702280002, 
+                25.7103617211384
+              ], 
+              [
+                -110.57228102944062, 
+                25.70940079434175
+              ], 
+              [
+                -110.5722955464698, 
+                25.707597287730852
+              ], 
+              [
+                -110.56336866398456, 
+                25.70381224460135
+              ], 
+              [
+                -110.56785682330941, 
+                25.689579170689584
+              ], 
+              [
+                -110.57853168739761, 
+                25.674601036845722
+              ], 
+              [
+                -110.59176147472803, 
+                25.664504363139393
+              ], 
+              [
+                -110.59931147915505, 
+                25.66264447729288
+              ], 
+              [
+                -110.6157446852614, 
+                25.646819369480983
+              ], 
+              [
+                -110.62696973946979, 
+                25.633445549575733
+              ], 
+              [
+                -110.63213162287089, 
+                25.62585339628491
+              ], 
+              [
+                -110.63938567576868, 
+                25.611984714853342
+              ], 
+              [
+                -110.64969706110821, 
+                25.59434001214446
+              ], 
+              [
+                -110.65395616055315, 
+                25.59221905621143
+              ], 
+              [
+                -110.65696500429239, 
+                25.59185381395291
+              ], 
+              [
+                -110.65930607401563, 
+                25.592098890100612
+              ], 
+              [
+                -110.67173572541681, 
+                25.601675040251163
+              ], 
+              [
+                -110.67390433274188, 
+                25.60497474134554
+              ], 
+              [
+                -110.67451200409107, 
+                25.607172087801874
+              ], 
+              [
+                -110.67307978685405, 
+                25.611308166336865
+              ], 
+              [
+                -110.66807519312442, 
+                25.619075382622444
+              ], 
+              [
+                -110.65852318558657, 
+                25.629911353629858
+              ], 
+              [
+                -110.65355196292148, 
+                25.63178517151188
+              ], 
+              [
+                -110.64923722811332, 
+                25.641373941470917
+              ], 
+              [
+                -110.64746246968187, 
+                25.647643430841743
+              ], 
+              [
+                -110.65251137299809, 
+                25.649515788746363
+              ], 
+              [
+                -110.65948006248713, 
+                25.646921834941907
+              ], 
+              [
+                -110.66550214020705, 
+                25.642285625580666
+              ], 
+              [
+                -110.66774156004834, 
+                25.636632861258605
+              ], 
+              [
+                -110.67445173062087, 
+                25.63401310696354
+              ], 
+              [
+                -110.68899643104942, 
+                25.633713011275066
+              ], 
+              [
+                -110.69219381776438, 
+                25.63764806820395
+              ], 
+              [
+                -110.69583196499971, 
+                25.649757546789893
+              ], 
+              [
+                -110.69653065299235, 
+                25.65376138034844
+              ], 
+              [
+                -110.6885973098018, 
+                25.69028260163626
+              ], 
+              [
+                -110.68543438059334, 
+                25.70015319890315
+              ], 
+              [
+                -110.68194739559014, 
+                25.703884414692904
+              ], 
+              [
+                -110.66880827022526, 
+                25.708661601995896
+              ], 
+              [
+                -110.66704493057675, 
+                25.706926538483962
+              ], 
+              [
+                -110.66158894114666, 
+                25.70371487732577
+              ], 
+              [
+                -110.64906235806768, 
+                25.702189904369074
+              ], 
+              [
+                -110.63254239114934, 
+                25.714943514811356
+              ], 
+              [
+                -110.6238688073912, 
+                25.72586040037974
+              ], 
+              [
+                -110.6207690318332, 
+                25.735615771053073
+              ], 
+              [
+                -110.59356048192261, 
+                25.74963698091037
+              ], 
+              [
+                -110.57969965986666, 
+                25.76226026587986
+              ], 
+              [
+                -110.55704083862909, 
+                25.785971330490373
+              ], 
+              [
+                -110.5444578713079, 
+                25.794446103770376
+              ], 
+              [
+                -110.54133860054883, 
+                25.795061343670138
+              ], 
+              [
+                -110.53551035956343, 
+                25.797805796107827
+              ], 
+              [
+                -110.52722502283736, 
+                25.80416948655169
+              ], 
+              [
+                -110.52706249472743, 
+                25.80765227369693
+              ], 
+              [
+                -110.52747839977809, 
+                25.808490371842563
+              ], 
+              [
+                -110.53318940447993, 
+                25.810948480171756
+              ], 
+              [
+                -110.53713512358067, 
+                25.810901191186282
+              ], 
+              [
+                -110.5416397431722, 
+                25.807517943764076
+              ], 
+              [
+                -110.54846601670998, 
+                25.804943891534407
+              ], 
+              [
+                -110.55037996018329, 
+                25.80502231515459
+              ], 
+              [
+                -110.55097931999339, 
+                25.805719876688638
+              ], 
+              [
+                -110.55284061917419, 
+                25.812332111046402
+              ], 
+              [
+                -110.5527220381337, 
+                25.812625970517693
+              ], 
+              [
+                -110.55636230910602, 
+                25.822000025040214
+              ], 
+              [
+                -110.5545538158553, 
+                25.82595405877404
+              ], 
+              [
+                -110.55236703885113, 
+                25.83081741888365
+              ], 
+              [
+                -110.54952851022077, 
+                25.84095440649222
+              ], 
+              [
+                -110.55011725470118, 
+                25.842631832602073
+              ], 
+              [
+                -110.55084074508166, 
+                25.84257486286628
+              ], 
+              [
+                -110.5523430601975, 
+                25.841925455199018
+              ], 
+              [
+                -110.55350397126344, 
+                25.840878362468043
+              ], 
+              [
+                -110.55653931269015, 
+                25.837449147204826
+              ], 
+              [
+                -110.55911638439962, 
+                25.832124771877453
+              ], 
+              [
+                -110.55972773679912, 
+                25.830456600985425
+              ], 
+              [
+                -110.56179080987269, 
+                25.820554026292953
+              ], 
+              [
+                -110.5619664597071, 
+                25.819025864861583
+              ], 
+              [
+                -110.56206252857834, 
+                25.810891909116837
+              ], 
+              [
+                -110.56186443209175, 
+                25.810205837063307
+              ], 
+              [
+                -110.56683034068554, 
+                25.804836396566433
+              ], 
+              [
+                -110.57362732627146, 
+                25.798899849441394
+              ], 
+              [
+                -110.57424285365589, 
+                25.79924879817325
+              ], 
+              [
+                -110.57457698733808, 
+                25.799437879627686
+              ], 
+              [
+                -110.575411013374, 
+                25.80055084089689
+              ], 
+              [
+                -110.57624370540209, 
+                25.80296069068119
+              ], 
+              [
+                -110.57668259934009, 
+                25.810271995208296
+              ], 
+              [
+                -110.57417602371883, 
+                25.824279381236305
+              ], 
+              [
+                -110.56953382107771, 
+                25.8328326202867
+              ], 
+              [
+                -110.568727093986, 
+                25.834377478029015
+              ], 
+              [
+                -110.56611238603823, 
+                25.8406166380559
+              ], 
+              [
+                -110.56478811858723, 
+                25.845382578967495
+              ], 
+              [
+                -110.56666910393133, 
+                25.84943868242492
+              ], 
+              [
+                -110.56751774257853, 
+                25.848999276833833
+              ], 
+              [
+                -110.57859354580857, 
+                25.830740796473986
+              ], 
+              [
+                -110.58422567236951, 
+                25.820468003780572
+              ], 
+              [
+                -110.58579015969876, 
+                25.81903221927933
+              ], 
+              [
+                -110.59138093933049, 
+                25.81400060830844
+              ], 
+              [
+                -110.59696441383913, 
+                25.808959966726015
+              ], 
+              [
+                -110.60225132589645, 
+                25.803034963285096
+              ], 
+              [
+                -110.60465172496995, 
+                25.80025211164968
+              ], 
+              [
+                -110.60651446773089, 
+                25.797086098709933
+              ], 
+              [
+                -110.60701014274984, 
+                25.7957397195246
+              ], 
+              [
+                -110.61467290011318, 
+                25.789912742281697
+              ], 
+              [
+                -110.62836782054312, 
+                25.78436330445232
+              ], 
+              [
+                -110.63008094689302, 
+                25.785711608952237
+              ], 
+              [
+                -110.63191940107721, 
+                25.787821908694813
+              ], 
+              [
+                -110.63445542508285, 
+                25.791464586383082
+              ], 
+              [
+                -110.63532662908314, 
+                25.79295161815054
+              ], 
+              [
+                -110.63577517061621, 
+                25.794297744058944
+              ], 
+              [
+                -110.63473044034389, 
+                25.796337511013306
+              ], 
+              [
+                -110.62390250602745, 
+                25.817070671221508
+              ], 
+              [
+                -110.62247678674026, 
+                25.81953292658737
+              ], 
+              [
+                -110.61669358530352, 
+                25.829203368245203
+              ], 
+              [
+                -110.61384539209801, 
+                25.832430101898318
+              ], 
+              [
+                -110.60992597651688, 
+                25.837017166048156
+              ], 
+              [
+                -110.60123212679973, 
+                25.85159208306666
+              ], 
+              [
+                -110.60309002797113, 
+                25.855980877520782
+              ], 
+              [
+                -110.605230832171, 
+                25.85995234900477
+              ], 
+              [
+                -110.6105351027394, 
+                25.864536609604425
+              ], 
+              [
+                -110.6106623844696, 
+                25.863040061717424
+              ], 
+              [
+                -110.61102997143539, 
+                25.86149510971731
+              ], 
+              [
+                -110.61260616837583, 
+                25.856220450469724
+              ], 
+              [
+                -110.6131802051346, 
+                25.85463409266131
+              ], 
+              [
+                -110.61736133467492, 
+                25.845483546043447
+              ], 
+              [
+                -110.62360223347567, 
+                25.835935930880964
+              ], 
+              [
+                -110.62512732804595, 
+                25.83493874918821
+              ], 
+              [
+                -110.63102726602877, 
+                25.83619380608752
+              ], 
+              [
+                -110.63305270075446, 
+                25.836668060908096
+              ], 
+              [
+                -110.63389467510068, 
+                25.837138302777582
+              ], 
+              [
+                -110.63454764696768, 
+                25.840369128260107
+              ], 
+              [
+                -110.63658321703109, 
+                25.84033097243708
+              ], 
+              [
+                -110.6379173472974, 
+                25.838601308584714
+              ], 
+              [
+                -110.639483361936, 
+                25.835178076211356
+              ], 
+              [
+                -110.63803199960897, 
+                25.82910186473418
+              ], 
+              [
+                -110.63917263122914, 
+                25.826268833848417
+              ], 
+              [
+                -110.64249993981296, 
+                25.82334421692925
+              ], 
+              [
+                -110.65230073924451, 
+                25.820211562375768
+              ], 
+              [
+                -110.655218413848, 
+                25.821522770235088
+              ], 
+              [
+                -110.6564163884733, 
+                25.822668084364608
+              ], 
+              [
+                -110.656944162729, 
+                25.823789505778517
+              ], 
+              [
+                -110.6572619335023, 
+                25.828769978488275
+              ], 
+              [
+                -110.66478525397201, 
+                25.826963324226554
+              ], 
+              [
+                -110.67035674538741, 
+                25.814991616032614
+              ], 
+              [
+                -110.67067666920887, 
+                25.80455521946594
+              ], 
+              [
+                -110.67236202233279, 
+                25.802742298341613
+              ], 
+              [
+                -110.68427200536681, 
+                25.794596608781173
+              ], 
+              [
+                -110.68957473017635, 
+                25.792203525722034
+              ], 
+              [
+                -110.69457156062242, 
+                25.79441118458391
+              ], 
+              [
+                -110.69792218579559, 
+                25.79411733039409
+              ], 
+              [
+                -110.70792679802182, 
+                25.79110729721697
+              ], 
+              [
+                -110.71344711769272, 
+                25.787485551607276
+              ], 
+              [
+                -110.71604715635856, 
+                25.78378836437984
+              ], 
+              [
+                -110.72200260874888, 
+                25.783318776092806
+              ], 
+              [
+                -110.72733595356162, 
+                25.786076829193572
+              ], 
+              [
+                -110.73968420424401, 
+                25.801021691704342
+              ], 
+              [
+                -110.74200461893713, 
+                25.804943759424535
+              ], 
+              [
+                -110.72330521484214, 
+                25.818974593587143
+              ], 
+              [
+                -110.71406440452185, 
+                25.818398904054366
+              ], 
+              [
+                -110.70294389030505, 
+                25.832033467597775
+              ], 
+              [
+                -110.69508554961297, 
+                25.833911148731882
+              ], 
+              [
+                -110.67463212381153, 
+                25.84798484680135
+              ], 
+              [
+                -110.664779501274, 
+                25.856885171635323
+              ], 
+              [
+                -110.65604369801203, 
+                25.86546611418648
+              ], 
+              [
+                -110.6460017049644, 
+                25.886533203534466
+              ], 
+              [
+                -110.64590251247812, 
+                25.894183436763726
+              ], 
+              [
+                -110.64663633959549, 
+                25.8955034584373
+              ], 
+              [
+                -110.65032039723727, 
+                25.89588291847614
+              ], 
+              [
+                -110.66592995675013, 
+                25.890013450639906
+              ], 
+              [
+                -110.66665619733841, 
+                25.887881227642414
+              ], 
+              [
+                -110.6681909432686, 
+                25.877221862445044
+              ], 
+              [
+                -110.67106661346818, 
+                25.869145722704275
+              ], 
+              [
+                -110.67440734981264, 
+                25.865217307768333
+              ], 
+              [
+                -110.68601649715417, 
+                25.856805105793246
+              ], 
+              [
+                -110.71893723782807, 
+                25.844762411706874
+              ], 
+              [
+                -110.72018193504942, 
+                25.844679224518423
+              ], 
+              [
+                -110.74234372519153, 
+                25.86582744847841
+              ], 
+              [
+                -110.75197219552857, 
+                25.863611999243087
+              ], 
+              [
+                -110.75652742009612, 
+                25.851350798393213
+              ], 
+              [
+                -110.75843654257578, 
+                25.844656524805195
+              ], 
+              [
+                -110.75795407851898, 
+                25.842172243655767
+              ], 
+              [
+                -110.75554380666836, 
+                25.83825281695291
+              ], 
+              [
+                -110.75578063832215, 
+                25.835341651479425
+              ], 
+              [
+                -110.75652518795052, 
+                25.833973195938547
+              ], 
+              [
+                -110.76233008431653, 
+                25.830080549592857
+              ], 
+              [
+                -110.77171807935187, 
+                25.825772127641102
+              ], 
+              [
+                -110.77723203089153, 
+                25.829375781360334
+              ], 
+              [
+                -110.78079763475182, 
+                25.840333522621307
+              ], 
+              [
+                -110.7822094256746, 
+                25.846625660962374
+              ], 
+              [
+                -110.77746199258681, 
+                25.85292302941078
+              ], 
+              [
+                -110.77613640390375, 
+                25.8584440997452
+              ], 
+              [
+                -110.77279630167, 
+                25.86058154263545
+              ], 
+              [
+                -110.76472052839547, 
+                25.857323003902685
+              ], 
+              [
+                -110.75931353369998, 
+                25.862061343878214
+              ], 
+              [
+                -110.7656091855381, 
+                25.87152258498968
+              ], 
+              [
+                -110.77284097747341, 
+                25.87584259913826
+              ], 
+              [
+                -110.77869086573442, 
+                25.886034561954055
+              ], 
+              [
+                -110.78156708305856, 
+                25.89572730748386
+              ], 
+              [
+                -110.77634405040388, 
+                25.91151398435443
+              ], 
+              [
+                -110.77478951638406, 
+                25.941149493286886
+              ], 
+              [
+                -110.77835416915184, 
+                25.946252978660443
+              ], 
+              [
+                -110.78497949423071, 
+                25.945711539701577
+              ], 
+              [
+                -110.80175518868103, 
+                25.930208121989004
+              ], 
+              [
+                -110.80945078272453, 
+                25.90744912563433
+              ], 
+              [
+                -110.81000705800484, 
+                25.898611442735376
+              ], 
+              [
+                -110.80895353921433, 
+                25.895904285091795
+              ], 
+              [
+                -110.80974696431224, 
+                25.893384507271605
+              ], 
+              [
+                -110.81120656174535, 
+                25.889905958195687
+              ], 
+              [
+                -110.81889110636469, 
+                25.8774455802793
+              ], 
+              [
+                -110.82678133003103, 
+                25.870423670799806
+              ], 
+              [
+                -110.84182513905077, 
+                25.86913463398549
+              ], 
+              [
+                -110.84587705354593, 
+                25.86947867537641
+              ], 
+              [
+                -110.8515227834588, 
+                25.87624689334235
+              ], 
+              [
+                -110.85146699005628, 
+                25.88141303240365
+              ], 
+              [
+                -110.85043221906245, 
+                25.88995833061649
+              ], 
+              [
+                -110.85558107693679, 
+                25.89462291932726
+              ], 
+              [
+                -110.86324204458123, 
+                25.89501157036965
+              ], 
+              [
+                -110.86600761703606, 
+                25.89068388490543
+              ], 
+              [
+                -110.86810249860264, 
+                25.8794823113744
+              ], 
+              [
+                -110.86731688976214, 
+                25.871357524673932
+              ], 
+              [
+                -110.86298203175848, 
+                25.86446035964701
+              ], 
+              [
+                -110.86373626445489, 
+                25.861148848971336
+              ], 
+              [
+                -110.86879781833962, 
+                25.856226092721215
+              ], 
+              [
+                -110.87088104380135, 
+                25.8556779483181
+              ], 
+              [
+                -110.87725455757803, 
+                25.858256797302147
+              ], 
+              [
+                -110.88021078085748, 
+                25.859924058901758
+              ], 
+              [
+                -110.88209085132512, 
+                25.861750393318953
+              ], 
+              [
+                -110.88455581807062, 
+                25.8653068808156
+              ], 
+              [
+                -110.88410481576878, 
+                25.868966081971593
+              ], 
+              [
+                -110.88595902637456, 
+                25.87422645931329
+              ], 
+              [
+                -110.88648920768951, 
+                25.87494103506995
+              ], 
+              [
+                -110.89262028189057, 
+                25.871143239939208
+              ], 
+              [
+                -110.89632100854163, 
+                25.867578460862198
+              ], 
+              [
+                -110.89537286041788, 
+                25.861394943169927
+              ], 
+              [
+                -110.88977616494651, 
+                25.842026792051396
+              ], 
+              [
+                -110.90519117011301, 
+                25.81848332068442
+              ], 
+              [
+                -110.92313427015284, 
+                25.820740595795073
+              ], 
+              [
+                -110.92385269182557, 
+                25.82202387466403
+              ], 
+              [
+                -110.927523010194, 
+                25.834532773414015
+              ], 
+              [
+                -110.93003327607042, 
+                25.841214642542433
+              ], 
+              [
+                -110.93644110617092, 
+                25.846924763219505
+              ], 
+              [
+                -110.94043464294465, 
+                25.845900311199053
+              ], 
+              [
+                -110.93955861585944, 
+                25.831449182520593
+              ], 
+              [
+                -110.93845697550978, 
+                25.82888780927231
+              ], 
+              [
+                -110.93757774252711, 
+                25.828805537522985
+              ], 
+              [
+                -110.93464677351898, 
+                25.825861043293425
+              ], 
+              [
+                -110.93727145626339, 
+                25.81664386320847
+              ], 
+              [
+                -110.9390704259358, 
+                25.816679380981427
+              ], 
+              [
+                -110.9438990009278, 
+                25.81866635964345
+              ], 
+              [
+                -110.94598208374602, 
+                25.820260789312332
+              ], 
+              [
+                -110.9584885831299, 
+                25.869670096493007
+              ], 
+              [
+                -110.95951031586993, 
+                25.874973580913704
+              ], 
+              [
+                -110.95978640654747, 
+                25.889394920156207
+              ], 
+              [
+                -110.95838719965639, 
+                25.89492278414711
+              ], 
+              [
+                -110.96411970356303, 
+                25.90466719020122
+              ], 
+              [
+                -110.96721472732222, 
+                25.906126149361707
+              ], 
+              [
+                -110.974053245224, 
+                25.903354414849723
+              ], 
+              [
+                -110.97214932429064, 
+                25.900077426699102
+              ], 
+              [
+                -110.97132945648858, 
+                25.895394640063667
+              ], 
+              [
+                -110.96969860185948, 
+                25.864891111725207
+              ], 
+              [
+                -110.9691977038234, 
+                25.842775169129567
+              ], 
+              [
+                -110.96560666680494, 
+                25.835010129988223
+              ], 
+              [
+                -110.9570302960998, 
+                25.819669738025603
+              ], 
+              [
+                -110.94939917641918, 
+                25.803152770561592
+              ], 
+              [
+                -110.94926963693132, 
+                25.791476798260184
+              ], 
+              [
+                -110.95376527175307, 
+                25.78773935023979
+              ], 
+              [
+                -110.96226707914707, 
+                25.783445184911383
+              ], 
+              [
+                -110.96348833243603, 
+                25.78484906125386
+              ], 
+              [
+                -110.96800496191537, 
+                25.79526493080636
+              ], 
+              [
+                -110.96562482429808, 
+                25.798384796843184
+              ], 
+              [
+                -110.96744832711306, 
+                25.802044557635426
+              ], 
+              [
+                -110.98497470839764, 
+                25.80980605922375
+              ], 
+              [
+                -110.99174267823294, 
+                25.808674162461678
+              ], 
+              [
+                -110.9919540987784, 
+                25.789615710735106
+              ], 
+              [
+                -110.98900335345446, 
+                25.78570024498905
+              ], 
+              [
+                -110.9849313056282, 
+                25.78221696952122
+              ], 
+              [
+                -110.98115965933651, 
+                25.782701920503204
+              ], 
+              [
+                -110.97355452173281, 
+                25.771914759289942
+              ], 
+              [
+                -110.97209571189632, 
+                25.76927295498211
+              ], 
+              [
+                -110.97274134674359, 
+                25.768463943330577
+              ], 
+              [
+                -110.97446120342414, 
+                25.76645911161442
+              ], 
+              [
+                -110.98132581412972, 
+                25.762982401087733
+              ], 
+              [
+                -110.99304139410302, 
+                25.7617548625336
+              ], 
+              [
+                -110.9995227587372, 
+                25.76213504700236
+              ], 
+              [
+                -111.01240240893509, 
+                25.76025018481315
+              ], 
+              [
+                -111.01193154394967, 
+                25.757430801705876
+              ], 
+              [
+                -111.0121912700209, 
+                25.754237919378234
+              ], 
+              [
+                -111.03255745378347, 
+                25.734074003107754
+              ], 
+              [
+                -111.04676698916656, 
+                25.731380466304746
+              ], 
+              [
+                -111.0550801912697, 
+                25.731123046500443
+              ], 
+              [
+                -111.05808240207944, 
+                25.732999273888165
+              ], 
+              [
+                -111.06245203268234, 
+                25.74173202209065
+              ], 
+              [
+                -111.06316265737468, 
+                25.74657241261645
+              ], 
+              [
+                -111.062693450991, 
+                25.780468116747354
+              ], 
+              [
+                -111.06172657550012, 
+                25.78996542967365
+              ], 
+              [
+                -111.06003401696928, 
+                25.79972250465071
+              ], 
+              [
+                -111.05437040970807, 
+                25.817607754570627
+              ], 
+              [
+                -111.04789326701612, 
+                25.847004349013023
+              ], 
+              [
+                -111.04882750644093, 
+                25.85217588399932
+              ], 
+              [
+                -111.05439157538511, 
+                25.859526180445464
+              ], 
+              [
+                -111.05787782498207, 
+                25.862222604023923
+              ], 
+              [
+                -111.06023548947806, 
+                25.862872529697107
+              ], 
+              [
+                -111.06196174868015, 
+                25.862008958506987
+              ], 
+              [
+                -111.06290578791452, 
+                25.857217025064415
+              ], 
+              [
+                -111.06239446605166, 
+                25.85435851709854
+              ], 
+              [
+                -111.06897006426456, 
+                25.828566451440047
+              ], 
+              [
+                -111.07436012952476, 
+                25.82748002156874
+              ], 
+              [
+                -111.07624741809613, 
+                25.829908239570333
+              ], 
+              [
+                -111.0816367760559, 
+                25.83962451812559
+              ], 
+              [
+                -111.09059500545094, 
+                25.853920562674073
+              ], 
+              [
+                -111.09647584835972, 
+                25.85500487771364
+              ], 
+              [
+                -111.09909364405107, 
+                25.85068594073234
+              ], 
+              [
+                -111.09521986417889, 
+                25.839139254735578
+              ], 
+              [
+                -111.09228457433478, 
+                25.81945535033519
+              ], 
+              [
+                -111.09309164154253, 
+                25.805827452069824
+              ], 
+              [
+                -111.09495381240876, 
+                25.796665946551517
+              ], 
+              [
+                -111.09769165094949, 
+                25.788281903919806
+              ], 
+              [
+                -111.10261219093249, 
+                25.786135754893397
+              ], 
+              [
+                -111.10349133329812, 
+                25.777018965988482
+              ], 
+              [
+                -111.09899657276135, 
+                25.75207813343987
+              ], 
+              [
+                -111.09892983066027, 
+                25.740152081489523
+              ], 
+              [
+                -111.10175948868621, 
+                25.725617066264093
+              ], 
+              [
+                -111.10317376838131, 
+                25.722768273451035
+              ], 
+              [
+                -111.1084537861154, 
+                25.720943709092552
+              ], 
+              [
+                -111.11176183475241, 
+                25.720984901699804
+              ], 
+              [
+                -111.11435325657642, 
+                25.72406682219458
+              ], 
+              [
+                -111.12254650304627, 
+                25.72803423764329
+              ], 
+              [
+                -111.12433699437786, 
+                25.718713376949168
+              ], 
+              [
+                -111.12353379329987, 
+                25.71307997706584
+              ], 
+              [
+                -111.12278318562612, 
+                25.710000357718876
+              ], 
+              [
+                -111.11927855957957, 
+                25.705537300882895
+              ], 
+              [
+                -111.11619736889591, 
+                25.703534919659138
+              ], 
+              [
+                -111.11184749917393, 
+                25.708869020620977
+              ], 
+              [
+                -111.10970576089065, 
+                25.709220739457955
+              ], 
+              [
+                -111.10618879594135, 
+                25.70839131172694
+              ], 
+              [
+                -111.10152457231413, 
+                25.70503875421247
+              ], 
+              [
+                -111.09798655410252, 
+                25.69422123650109
+              ], 
+              [
+                -111.09495018351632, 
+                25.669714431400944
+              ], 
+              [
+                -111.09077435332301, 
+                25.66374301753936
+              ], 
+              [
+                -111.08617586243746, 
+                25.668788203379393
+              ], 
+              [
+                -111.08543835185503, 
+                25.682960851361482
+              ], 
+              [
+                -111.08134977014424, 
+                25.705104663087575
+              ], 
+              [
+                -111.07961287117978, 
+                25.707560780390676
+              ], 
+              [
+                -111.07198270232956, 
+                25.71307530297021
+              ], 
+              [
+                -111.05362311234298, 
+                25.715922253594453
+              ], 
+              [
+                -111.04648165309543, 
+                25.713496855871302
+              ], 
+              [
+                -111.04237783419723, 
+                25.71034815956058
+              ], 
+              [
+                -111.03047167844994, 
+                25.683588986296485
+              ], 
+              [
+                -111.02901111690673, 
+                25.67699724112691
+              ], 
+              [
+                -111.03429314777588, 
+                25.65680949435608
+              ], 
+              [
+                -111.0494100894056, 
+                25.63908027458966
+              ], 
+              [
+                -111.05179377414676, 
+                25.640821359033172
+              ], 
+              [
+                -111.05478157629007, 
+                25.63749537766633
+              ], 
+              [
+                -111.05900851469184, 
+                25.622071445420804
+              ], 
+              [
+                -111.05989788271187, 
+                25.61473705516207
+              ], 
+              [
+                -111.06214619010356, 
+                25.605087260407963
+              ], 
+              [
+                -111.06304896538172, 
+                25.604124641163157
+              ], 
+              [
+                -111.062054228881, 
+                25.591289761092227
+              ], 
+              [
+                -111.06031574801538, 
+                25.585006200211133
+              ], 
+              [
+                -111.05488131806982, 
+                25.580639534775425
+              ], 
+              [
+                -111.04812973568487, 
+                25.58592236793538
+              ], 
+              [
+                -111.04128844655068, 
+                25.592950991177496
+              ], 
+              [
+                -111.04060619639925, 
+                25.59654589312965
+              ], 
+              [
+                -111.04204251563674, 
+                25.599491800300562
+              ], 
+              [
+                -111.04140100239259, 
+                25.60631229480878
+              ], 
+              [
+                -111.03618143657269, 
+                25.62505225513998
+              ], 
+              [
+                -111.02472324217365, 
+                25.646985897068554
+              ], 
+              [
+                -111.0224032213787, 
+                25.6486419035305
+              ], 
+              [
+                -111.01853975034548, 
+                25.648612073463752
+              ], 
+              [
+                -110.9850772648496, 
+                25.622255408392075
+              ], 
+              [
+                -110.97953115370875, 
+                25.61610339975329
+              ], 
+              [
+                -110.97896185601167, 
+                25.608495870571396
+              ], 
+              [
+                -110.97951759692545, 
+                25.605676465774092
+              ], 
+              [
+                -110.96683003391523, 
+                25.591891817619736
+              ], 
+              [
+                -110.96550566739486, 
+                25.54856670064968
+              ], 
+              [
+                -110.96260896405093, 
+                25.51426499056525
+              ], 
+              [
+                -110.97067674007194, 
+                25.510475290955522
+              ], 
+              [
+                -110.98227808726288, 
+                25.50852826617405
+              ], 
+              [
+                -110.99197248664913, 
+                25.513571531303484
+              ], 
+              [
+                -110.99354593955901, 
+                25.51637130847022
+              ], 
+              [
+                -110.9948065120879, 
+                25.52007176294344
+              ], 
+              [
+                -110.99527639657856, 
+                25.52429866473667
+              ], 
+              [
+                -110.99576722799543, 
+                25.525796171368622
+              ], 
+              [
+                -111.00174074418129, 
+                25.529288943492567
+              ], 
+              [
+                -111.00698301662257, 
+                25.5295398621143
+              ], 
+              [
+                -111.0112332208264, 
+                25.524668373619434
+              ], 
+              [
+                -111.00920825116988, 
+                25.518910027949733
+              ], 
+              [
+                -111.00667682672791, 
+                25.514268545355627
+              ], 
+              [
+                -111.0067358803027, 
+                25.511408118852692
+              ], 
+              [
+                -111.01782825960176, 
+                25.493707810060528
+              ], 
+              [
+                -111.02281613539151, 
+                25.488439250207648
+              ], 
+              [
+                -111.0254615530014, 
+                25.487042610366288
+              ], 
+              [
+                -111.02805225060678, 
+                25.467162954967
+              ], 
+              [
+                -111.02192019612859, 
+                25.464941345402625
+              ], 
+              [
+                -111.02059192618398, 
+                25.465650750873067
+              ], 
+              [
+                -111.0187005214045, 
+                25.46835451858647
+              ], 
+              [
+                -111.01294648878489, 
+                25.484805046376298
+              ], 
+              [
+                -111.00158869560465, 
+                25.49335911240884
+              ], 
+              [
+                -110.9996443278369, 
+                25.493628481066725
+              ], 
+              [
+                -110.99517369475333, 
+                25.491707709127514
+              ], 
+              [
+                -110.99383981851035, 
+                25.49023385484311
+              ], 
+              [
+                -110.99385881525129, 
+                25.487002216486932
+              ], 
+              [
+                -110.99495470771693, 
+                25.48422599461837
+              ], 
+              [
+                -111.00096914761897, 
+                25.482028382795857
+              ], 
+              [
+                -111.00047618424217, 
+                25.47633484758674
+              ], 
+              [
+                -110.98871424258405, 
+                25.47188707746201
+              ], 
+              [
+                -110.98307422689592, 
+                25.47321766308326
+              ], 
+              [
+                -110.98247841621813, 
+                25.476028503658615
+              ], 
+              [
+                -110.98331943643134, 
+                25.482735758551886
+              ], 
+              [
+                -110.98441356408054, 
+                25.4868472083952
+              ], 
+              [
+                -110.98230042539686, 
+                25.49014186983441
+              ], 
+              [
+                -110.9680969099832, 
+                25.482389725235436
+              ], 
+              [
+                -110.97066572953656, 
+                25.469881390800555
+              ], 
+              [
+                -110.97382091796034, 
+                25.467516778525855
+              ], 
+              [
+                -110.9736053227581, 
+                25.465767975929904
+              ], 
+              [
+                -110.97065585538297, 
+                25.45958163786647
+              ], 
+              [
+                -110.96933963205163, 
+                25.458677123619772
+              ], 
+              [
+                -110.96184092889442, 
+                25.46171068033065
+              ], 
+              [
+                -110.95990888241862, 
+                25.46369341367263
+              ], 
+              [
+                -110.96155930101887, 
+                25.46924937815861
+              ], 
+              [
+                -110.96363197095882, 
+                25.47139694952152
+              ], 
+              [
+                -110.96331083221226, 
+                25.472602029443063
+              ], 
+              [
+                -110.95978740050217, 
+                25.477372621811387
+              ], 
+              [
+                -110.95788991626948, 
+                25.47889069412955
+              ], 
+              [
+                -110.94382088552798, 
+                25.47078845256441
+              ], 
+              [
+                -110.94347492570857, 
+                25.467207850962968
+              ], 
+              [
+                -110.94453246232447, 
+                25.4616038901836
+              ], 
+              [
+                -110.94587459714904, 
+                25.457894212477058
+              ], 
+              [
+                -110.94637974489206, 
+                25.456738329571415
+              ], 
+              [
+                -110.95334299210273, 
+                25.45466034372547
+              ], 
+              [
+                -110.95664937454026, 
+                25.440078941299316
+              ], 
+              [
+                -110.95569876900477, 
+                25.41809496097271
+              ], 
+              [
+                -110.94897259608119, 
+                25.416496311589878
+              ], 
+              [
+                -110.94641658581294, 
+                25.42077225160343
+              ], 
+              [
+                -110.94311181311018, 
+                25.43015305621044
+              ], 
+              [
+                -110.94315508265798, 
+                25.44047108536864
+              ], 
+              [
+                -110.93875205353372, 
+                25.44773084053106
+              ], 
+              [
+                -110.92993179221394, 
+                25.458155626937096
+              ], 
+              [
+                -110.91814642293268, 
+                25.457776887171566
+              ], 
+              [
+                -110.91189353902557, 
+                25.453442404125695
+              ], 
+              [
+                -110.90954973390373, 
+                25.449455940098392
+              ], 
+              [
+                -110.90944037310075, 
+                25.4454114884326
+              ], 
+              [
+                -110.92202612094532, 
+                25.424084127260137
+              ], 
+              [
+                -110.92728605016495, 
+                25.42136303901943
+              ], 
+              [
+                -110.92725053293498, 
+                25.409822431284454
+              ], 
+              [
+                -110.92526663491519, 
+                25.39557269831698
+              ], 
+              [
+                -110.9225075649844, 
+                25.392699838114343
+              ], 
+              [
+                -110.91597507287622, 
+                25.394693913106916
+              ], 
+              [
+                -110.90751136595088, 
+                25.414931731775674
+              ], 
+              [
+                -110.90418237464642, 
+                25.428888719559655
+              ], 
+              [
+                -110.9023089663266, 
+                25.432491456559845
+              ], 
+              [
+                -110.89907293394911, 
+                25.43672096425711
+              ], 
+              [
+                -110.89669495789, 
+                25.438698307188908
+              ], 
+              [
+                -110.88936943540462, 
+                25.435202857558746
+              ], 
+              [
+                -110.88744511418956, 
+                25.433338787040345
+              ], 
+              [
+                -110.88673276126636, 
+                25.431996568416384
+              ], 
+              [
+                -110.8867323346182, 
+                25.4255220579345
+              ], 
+              [
+                -110.89024501929323, 
+                25.406055611639975
+              ], 
+              [
+                -110.8991433755577, 
+                25.3934567371745
+              ], 
+              [
+                -110.91512262148593, 
+                25.376867816392643
+              ], 
+              [
+                -110.92002817913935, 
+                25.372653566619515
+              ], 
+              [
+                -110.92123344535958, 
+                25.3726697561989
+              ], 
+              [
+                -110.9259496152866, 
+                25.377089926027995
+              ], 
+              [
+                -110.92689575431507, 
+                25.380561299437442
+              ], 
+              [
+                -110.93011655711399, 
+                25.38611295482785
+              ], 
+              [
+                -110.93289990408752, 
+                25.38463176456997
+              ], 
+              [
+                -110.93480480977514, 
+                25.378510109542887
+              ], 
+              [
+                -110.93783920486274, 
+                25.37362937463226
+              ], 
+              [
+                -110.94308648128423, 
+                25.367165558570697
+              ], 
+              [
+                -110.94657193662512, 
+                25.363997860589215
+              ], 
+              [
+                -110.96154294554853, 
+                25.357337090615317
+              ], 
+              [
+                -110.96759593501653, 
+                25.356569989961773
+              ], 
+              [
+                -110.9684153405732, 
+                25.357851608544493
+              ], 
+              [
+                -110.96506610500637, 
+                25.377525186392553
+              ], 
+              [
+                -110.96135167235464, 
+                25.38072226328533
+              ], 
+              [
+                -110.957909049159, 
+                25.38065226539408
+              ], 
+              [
+                -110.95069263826504, 
+                25.382025907654207
+              ], 
+              [
+                -110.94771436331122, 
+                25.384242294512546
+              ], 
+              [
+                -110.9477042066249, 
+                25.386993003614162
+              ], 
+              [
+                -110.95115680334088, 
+                25.390237194903502
+              ], 
+              [
+                -110.96110764140371, 
+                25.393878373552738
+              ], 
+              [
+                -110.96805394409773, 
+                25.38783824414491
+              ], 
+              [
+                -110.9807887100837, 
+                25.381706168390984
+              ], 
+              [
+                -110.99250791140626, 
+                25.385544010012474
+              ], 
+              [
+                -110.99329870217036, 
+                25.39760846577503
+              ], 
+              [
+                -110.99068641183761, 
+                25.40103705427001
+              ], 
+              [
+                -111.00349804567685, 
+                25.440818019588054
+              ], 
+              [
+                -111.00772893873061, 
+                25.44447671826358
+              ], 
+              [
+                -111.0106361536664, 
+                25.44543309554819
+              ], 
+              [
+                -111.01665901967597, 
+                25.44203282798031
+              ], 
+              [
+                -111.01844859163043, 
+                25.438820483067108
+              ], 
+              [
+                -111.01606093520587, 
+                25.422529807240398
+              ], 
+              [
+                -111.01122316725929, 
+                25.396443187619308
+              ], 
+              [
+                -111.00654446631832, 
+                25.366448191810395
+              ], 
+              [
+                -111.00884262431033, 
+                25.35216682328731
+              ], 
+              [
+                -111.01172991045561, 
+                25.348720198502548
+              ], 
+              [
+                -111.01845469244915, 
+                25.35146446978088
+              ], 
+              [
+                -111.02143246383542, 
+                25.353415072783733
+              ], 
+              [
+                -111.02243214307734, 
+                25.35486278379555
+              ], 
+              [
+                -111.02205048639613, 
+                25.357942671806242
+              ], 
+              [
+                -111.02412871136566, 
+                25.36204200608578
+              ], 
+              [
+                -111.03080829784568, 
+                25.3617107027945
+              ], 
+              [
+                -111.03852929652014, 
+                25.359377050781344
+              ], 
+              [
+                -111.03880996010894, 
+                25.350752637740595
+              ], 
+              [
+                -111.03801249582968, 
+                25.348948333128074
+              ], 
+              [
+                -111.04366263730422, 
+                25.333046599596273
+              ], 
+              [
+                -111.05022201615043, 
+                25.32573470815402
+              ], 
+              [
+                -111.0592375924258, 
+                25.32552875542213
+              ], 
+              [
+                -111.0600696957309, 
+                25.32642270310551
+              ], 
+              [
+                -111.06056281435923, 
+                25.328594837292787
+              ], 
+              [
+                -111.0598390248478, 
+                25.335045761510532
+              ], 
+              [
+                -111.05961763761235, 
+                25.33621368296695
+              ], 
+              [
+                -111.0596933946547, 
+                25.33728923036603
+              ], 
+              [
+                -111.06038312322056, 
+                25.338082965161007
+              ], 
+              [
+                -111.0617957666283, 
+                25.338462846365026
+              ], 
+              [
+                -111.06315716700789, 
+                25.337678377653017
+              ], 
+              [
+                -111.06558530397685, 
+                25.33471803635114
+              ], 
+              [
+                -111.0706702399093, 
+                25.330402608016538
+              ], 
+              [
+                -111.07315437988595, 
+                25.33043558351465
+              ], 
+              [
+                -111.07372754525362, 
+                25.33089794121531
+              ], 
+              [
+                -111.07514457099181, 
+                25.333977464826425
+              ], 
+              [
+                -111.07796147631905, 
+                25.337205484917206
+              ], 
+              [
+                -111.07982339168679, 
+                25.338809106708773
+              ], 
+              [
+                -111.08166120593792, 
+                25.339750539147555
+              ], 
+              [
+                -111.08299120097438, 
+                25.339711324577415
+              ], 
+              [
+                -111.08392513216376, 
+                25.339294409185204
+              ], 
+              [
+                -111.08466385780031, 
+                25.338581814125448
+              ], 
+              [
+                -111.08520805745725, 
+                25.337926637815258
+              ], 
+              [
+                -111.08540707252772, 
+                25.336242197145637
+              ], 
+              [
+                -111.09075565035032, 
+                25.33177052416664
+              ], 
+              [
+                -111.0912728895745, 
+                25.330875304196038
+              ], 
+              [
+                -111.09166067638793, 
+                25.324679271135988
+              ], 
+              [
+                -111.0959845042476, 
+                25.317102851598403
+              ], 
+              [
+                -111.10347130835144, 
+                25.31510376916617
+              ], 
+              [
+                -111.10678830932034, 
+                25.316548764021885
+              ], 
+              [
+                -111.10916755382532, 
+                25.321088813604554
+              ], 
+              [
+                -111.1130293456947, 
+                25.323276894413716
+              ], 
+              [
+                -111.11676264997314, 
+                25.326902144668352
+              ], 
+              [
+                -111.11757051592504, 
+                25.328423740269447
+              ], 
+              [
+                -111.11794336402677, 
+                25.331179581973092
+              ], 
+              [
+                -111.11942481325782, 
+                25.332034709872595
+              ], 
+              [
+                -111.12437499645738, 
+                25.332245850562124
+              ], 
+              [
+                -111.12849619370111, 
+                25.33070495317076
+              ], 
+              [
+                -111.13177578597637, 
+                25.325695067063137
+              ], 
+              [
+                -111.13340229072504, 
+                25.320988351634938
+              ], 
+              [
+                -111.13857269510792, 
+                25.317151579601394
+              ], 
+              [
+                -111.14147358837458, 
+                25.317587962773764
+              ], 
+              [
+                -111.14237674788299, 
+                25.31984259544233
+              ], 
+              [
+                -111.14290443703423, 
+                25.323315026156372
+              ], 
+              [
+                -111.14466806071947, 
+                25.326042716292786
+              ], 
+              [
+                -111.14737771063818, 
+                25.325550681623625
+              ], 
+              [
+                -111.15055449059678, 
+                25.316544956667308
+              ], 
+              [
+                -111.15663685829875, 
+                25.31517833807768
+              ], 
+              [
+                -111.158221161173, 
+                25.316009947511475
+              ], 
+              [
+                -111.15914092295951, 
+                25.318231067535777
+              ], 
+              [
+                -111.15954558484995, 
+                25.31916589555158
+              ], 
+              [
+                -111.1595441138957, 
+                25.31964622527549
+              ], 
+              [
+                -111.15914440433097, 
+                25.320722126436717
+              ], 
+              [
+                -111.15855161359357, 
+                25.32147011546064
+              ], 
+              [
+                -111.15768011076433, 
+                25.32271128880774
+              ], 
+              [
+                -111.15812079819355, 
+                25.32499663912871
+              ], 
+              [
+                -111.15650888959652, 
+                25.33269208752214
+              ], 
+              [
+                -111.15113656432605, 
+                25.33953786378019
+              ], 
+              [
+                -111.15150441398724, 
+                25.344108192434163
+              ], 
+              [
+                -111.15321470015452, 
+                25.34752906101999
+              ], 
+              [
+                -111.15646760291196, 
+                25.35133209781724
+              ], 
+              [
+                -111.15888118218858, 
+                25.35192709997724
+              ], 
+              [
+                -111.1649961216888, 
+                25.34214153362502
+              ], 
+              [
+                -111.17302386950988, 
+                25.33994937724935
+              ], 
+              [
+                -111.18410789864095, 
+                25.319711587082256
+              ], 
+              [
+                -111.1848322182704, 
+                25.306888740832697
+              ], 
+              [
+                -111.18168515791446, 
+                25.286827675788988
+              ], 
+              [
+                -111.18897486168296, 
+                25.269328315627515
+              ], 
+              [
+                -111.20803170778673, 
+                25.302239017768184
+              ], 
+              [
+                -111.20957223042096, 
+                25.308472936891786
+              ], 
+              [
+                -111.22277791704671, 
+                25.340783117717695
+              ], 
+              [
+                -111.23010027222574, 
+                25.35055379470748
+              ], 
+              [
+                -111.23703228776493, 
+                25.34770058737582
+              ], 
+              [
+                -111.24080808475168, 
+                25.341416159149052
+              ], 
+              [
+                -111.22913307817915, 
+                25.301386039299615
+              ], 
+              [
+                -111.23129458154257, 
+                25.2999001414552
+              ], 
+              [
+                -111.23219091779232, 
+                25.29704181690343
+              ], 
+              [
+                -111.23310408123217, 
+                25.277475270093582
+              ], 
+              [
+                -111.23624273563333, 
+                25.277792909373552
+              ], 
+              [
+                -111.24473316669385, 
+                25.28100474584857
+              ], 
+              [
+                -111.24828140826247, 
+                25.258626509687907
+              ], 
+              [
+                -111.24914540226531, 
+                25.233231235903162
+              ], 
+              [
+                -111.23434079260406, 
+                25.216629681781445
+              ], 
+              [
+                -111.22542309921101, 
+                25.211366233946652
+              ], 
+              [
+                -111.22180099542682, 
+                25.1855094356456
+              ], 
+              [
+                -111.23816946634545, 
+                25.183449715228353
+              ], 
+              [
+                -111.25298285829848, 
+                25.200056227288083
+              ], 
+              [
+                -111.26509118073028, 
+                25.220903661977058
+              ], 
+              [
+                -111.2815384889933, 
+                25.24486226850057
+              ], 
+              [
+                -111.28571929786703, 
+                25.22027664319315
+              ], 
+              [
+                -111.26610382683532, 
+                25.16426064577774
+              ], 
+              [
+                -111.26706883680554, 
+                25.15705203885242
+              ], 
+              [
+                -111.26618879984068, 
+                25.147842325559186
+              ], 
+              [
+                -111.26886159175304, 
+                25.14142133850226
+              ], 
+              [
+                -111.27228451371037, 
+                25.13646182619656
+              ], 
+              [
+                -111.28511162456442, 
+                25.14416682800997
+              ], 
+              [
+                -111.29075618026131, 
+                25.166849944035928
+              ], 
+              [
+                -111.30614728331113, 
+                25.178130871148934
+              ], 
+              [
+                -111.32748921951182, 
+                25.179960180698448
+              ], 
+              [
+                -111.33713773722695, 
+                25.17120585879082
+              ], 
+              [
+                -111.3382991693362, 
+                25.16308587873663
+              ], 
+              [
+                -111.32998576162313, 
+                25.15673710688996
+              ], 
+              [
+                -111.3207993689115, 
+                25.154967477462097
+              ], 
+              [
+                -111.31052405716197, 
+                25.14484073699091
+              ], 
+              [
+                -111.3112226912681, 
+                25.13511328434951
+              ], 
+              [
+                -111.31825091249013, 
+                25.126218084175818
+              ], 
+              [
+                -111.31925175697066, 
+                25.11294198078201
+              ], 
+              [
+                -111.31600652141603, 
+                25.093917368020097
+              ], 
+              [
+                -111.3270470361463, 
+                25.10210601679655
+              ], 
+              [
+                -111.3344657297848, 
+                25.105241308258957
+              ], 
+              [
+                -111.33158887710835, 
+                25.08438218441167
+              ], 
+              [
+                -111.33967918378868, 
+                25.062212719819602
+              ], 
+              [
+                -111.34908029006641, 
+                25.04921637449318
+              ], 
+              [
+                -111.35368755496971, 
+                25.039282464970896
+              ], 
+              [
+                -111.36464825956877, 
+                25.03019829249962
+              ], 
+              [
+                -111.37238745510601, 
+                25.029800961422172
+              ], 
+              [
+                -111.37398058522865, 
+                25.043218353928236
+              ], 
+              [
+                -111.37264943717669, 
+                25.05397574045306
+              ], 
+              [
+                -111.37757444469145, 
+                25.069939922975205
+              ], 
+              [
+                -111.38443404259513, 
+                25.068787260345974
+              ], 
+              [
+                -111.3858527771032, 
+                25.067200705409846
+              ], 
+              [
+                -111.39308045806898, 
+                25.044388662755257
+              ], 
+              [
+                -111.39232981889991, 
+                25.025402470666176
+              ], 
+              [
+                -111.3959462482284, 
+                24.997873530406544
+              ], 
+              [
+                -111.40016599186221, 
+                24.995674856264095
+              ], 
+              [
+                -111.40479051178575, 
+                24.99728079426872
+              ], 
+              [
+                -111.40664379764438, 
+                24.99943833777134
+              ], 
+              [
+                -111.40749562250278, 
+                25.00241590345078
+              ], 
+              [
+                -111.40707690937037, 
+                25.00370204935409
+              ], 
+              [
+                -111.40713715685007, 
+                25.00607866236738
+              ], 
+              [
+                -111.40779899058721, 
+                25.0080915013046
+              ], 
+              [
+                -111.41027440247699, 
+                25.011205890956766
+              ], 
+              [
+                -111.4136536204035, 
+                25.012051472994514
+              ], 
+              [
+                -111.416757436664, 
+                25.01681837080387
+              ], 
+              [
+                -111.42031362603805, 
+                25.023826641243502
+              ], 
+              [
+                -111.42166411797345, 
+                25.02904181023524
+              ], 
+              [
+                -111.42092753261875, 
+                25.040806795565206
+              ], 
+              [
+                -111.424076661362, 
+                25.048523801391937
+              ], 
+              [
+                -111.42582280228974, 
+                25.050839971507358
+              ], 
+              [
+                -111.42753863625393, 
+                25.051968415745538
+              ], 
+              [
+                -111.42940094107833, 
+                25.051462145346225
+              ], 
+              [
+                -111.43243920703824, 
+                25.045453222160287
+              ], 
+              [
+                -111.43368591347628, 
+                25.038325498090536
+              ], 
+              [
+                -111.43337694419552, 
+                25.03270911130977
+              ], 
+              [
+                -111.43419328804167, 
+                25.029027639815013
+              ], 
+              [
+                -111.4369388756858, 
+                25.028083795625687
+              ], 
+              [
+                -111.44103706377103, 
+                25.028767276526857
+              ], 
+              [
+                -111.44264484687315, 
+                25.027335207463096
+              ], 
+              [
+                -111.44060931313003, 
+                25.020709816561077
+              ], 
+              [
+                -111.43773919650525, 
+                25.016503536563185
+              ], 
+              [
+                -111.43268879535273, 
+                25.012463019755163
+              ], 
+              [
+                -111.4269360773884, 
+                25.009067836675985
+              ], 
+              [
+                -111.42576907756893, 
+                25.00953023591181
+              ], 
+              [
+                -111.42396911690066, 
+                25.007368758086113
+              ], 
+              [
+                -111.42100633341929, 
+                25.001054280267084
+              ], 
+              [
+                -111.42059630422126, 
+                24.99934372368284
+              ], 
+              [
+                -111.42060982745993, 
+                24.995538180537892
+              ], 
+              [
+                -111.41871141782386, 
+                24.987656009154268
+              ], 
+              [
+                -111.41714061919724, 
+                24.98578862477622
+              ], 
+              [
+                -111.41918817212455, 
+                24.97592197172263
+              ], 
+              [
+                -111.42950605739232, 
+                24.97085360384341
+              ], 
+              [
+                -111.42995584099691, 
+                24.971143558179378
+              ], 
+              [
+                -111.43340395979237, 
+                24.981482958733586
+              ], 
+              [
+                -111.43502172203776, 
+                24.985314557242415
+              ], 
+              [
+                -111.43787159679711, 
+                24.986189779962018
+              ], 
+              [
+                -111.44152159486086, 
+                24.98550718795089
+              ], 
+              [
+                -111.44801004843798, 
+                24.980096749817175
+              ], 
+              [
+                -111.44973917875932, 
+                24.975516473224925
+              ], 
+              [
+                -111.45009393482395, 
+                24.967344910336237
+              ], 
+              [
+                -111.44822856965372, 
+                24.956208225608293
+              ], 
+              [
+                -111.45038614291907, 
+                24.942426919880102
+              ], 
+              [
+                -111.45487435089765, 
+                24.936406531118845
+              ], 
+              [
+                -111.4595800834871, 
+                24.932493303414464
+              ], 
+              [
+                -111.46230147707286, 
+                24.9292443792542
+              ], 
+              [
+                -111.46775628618232, 
+                24.911684732354683
+              ], 
+              [
+                -111.47460737848604, 
+                24.90675674276403
+              ], 
+              [
+                -111.4741028267113, 
+                24.903849811180343
+              ], 
+              [
+                -111.46792997150689, 
+                24.89647806779875
+              ], 
+              [
+                -111.46465450055557, 
+                24.89131862691617
+              ], 
+              [
+                -111.46397147366629, 
+                24.88883690516588
+              ], 
+              [
+                -111.46471604329125, 
+                24.882803737889684
+              ], 
+              [
+                -111.47193356664681, 
+                24.87017051919626
+              ], 
+              [
+                -111.47574453804268, 
+                24.868866911348018
+              ], 
+              [
+                -111.47968734539832, 
+                24.869526599625107
+              ], 
+              [
+                -111.48197694890564, 
+                24.866257676650207
+              ], 
+              [
+                -111.4827733742051, 
+                24.863003469678436
+              ], 
+              [
+                -111.48407213937966, 
+                24.862657035775552
+              ], 
+              [
+                -111.48641001748794, 
+                24.86637886927746
+              ], 
+              [
+                -111.48840119015135, 
+                24.871786238588427
+              ], 
+              [
+                -111.48876069462213, 
+                24.874442044404898
+              ], 
+              [
+                -111.48715685755398, 
+                24.87779809097523
+              ], 
+              [
+                -111.48927777383209, 
+                24.883573706901377
+              ], 
+              [
+                -111.49441642238077, 
+                24.881236462925514
+              ], 
+              [
+                -111.49731962431358, 
+                24.88365552102733
+              ], 
+              [
+                -111.50215970749103, 
+                24.890849458758815
+              ], 
+              [
+                -111.50323201063247, 
+                24.893295610641914
+              ], 
+              [
+                -111.50612701419493, 
+                24.89364838511855
+              ], 
+              [
+                -111.5072639958063, 
+                24.88675638096343
+              ], 
+              [
+                -111.50633245892996, 
+                24.88522199454362
+              ], 
+              [
+                -111.50680214331675, 
+                24.883650860995406
+              ], 
+              [
+                -111.50877690790608, 
+                24.877297401210125
+              ], 
+              [
+                -111.50976890382705, 
+                24.87722275776723
+              ], 
+              [
+                -111.5122012247632, 
+                24.8737058016834
+              ], 
+              [
+                -111.50846855369225, 
+                24.863987311692465
+              ], 
+              [
+                -111.5073247569446, 
+                24.858640353878517
+              ], 
+              [
+                -111.50716631939817, 
+                24.853493301508863
+              ], 
+              [
+                -111.51041198255592, 
+                24.848893788503194
+              ], 
+              [
+                -111.51787618008944, 
+                24.84345505430655
+              ], 
+              [
+                -111.52302639282175, 
+                24.84217736456475
+              ], 
+              [
+                -111.5245390280991, 
+                24.843591978411684
+              ], 
+              [
+                -111.52546717992666, 
+                24.845520676543003
+              ], 
+              [
+                -111.52945283024734, 
+                24.84832140744773
+              ], 
+              [
+                -111.53400027077836, 
+                24.84951014196254
+              ], 
+              [
+                -111.5420453225356, 
+                24.84547025657669
+              ], 
+              [
+                -111.54589036880856, 
+                24.848903900886203
+              ], 
+              [
+                -111.54750559978118, 
+                24.848865300271225
+              ], 
+              [
+                -111.54813300131993, 
+                24.84732773781637
+              ], 
+              [
+                -111.54828846838411, 
+                24.845958424529872
+              ], 
+              [
+                -111.54780505385835, 
+                24.843534027731053
+              ], 
+              [
+                -111.54832156297691, 
+                24.840955112386343
+              ], 
+              [
+                -111.55065505545373, 
+                24.83809605382957
+              ], 
+              [
+                -111.56022349044888, 
+                24.84161089590331
+              ], 
+              [
+                -111.57111168029046, 
+                24.84815921036546
+              ], 
+              [
+                -111.57383021988402, 
+                24.851449374741275
+              ], 
+              [
+                -111.5762870800117, 
+                24.85767657878309
+              ], 
+              [
+                -111.5796241064024, 
+                24.862069509270427
+              ], 
+              [
+                -111.58173722165512, 
+                24.86310544767455
+              ], 
+              [
+                -111.5854352095202, 
+                24.857014133882384
+              ], 
+              [
+                -111.58556396531196, 
+                24.850066288003468
+              ], 
+              [
+                -111.58749019908359, 
+                24.846937717042426
+              ], 
+              [
+                -111.59505908829729, 
+                24.839866931061938
+              ], 
+              [
+                -111.59936581151473, 
+                24.837171774650482
+              ], 
+              [
+                -111.6008885452947, 
+                24.834836549678304
+              ], 
+              [
+                -111.60174488577749, 
+                24.83206880071948
+              ], 
+              [
+                -111.59970057001414, 
+                24.82879388968159
+              ], 
+              [
+                -111.59570775142693, 
+                24.82781848437596
+              ], 
+              [
+                -111.59398642144318, 
+                24.825963034377697
+              ], 
+              [
+                -111.59316165718558, 
+                24.824480292515922
+              ], 
+              [
+                -111.59290705168145, 
+                24.822606692357446
+              ], 
+              [
+                -111.59316284322156, 
+                24.820115657198944
+              ], 
+              [
+                -111.59743500402094, 
+                24.81920100709886
+              ], 
+              [
+                -111.60622350757717, 
+                24.819105008132247
+              ], 
+              [
+                -111.60937184545449, 
+                24.816030639870828
+              ], 
+              [
+                -111.60950065710786, 
+                24.812360832803808
+              ], 
+              [
+                -111.60709085428796, 
+                24.805834071469416
+              ], 
+              [
+                -111.60709758697706, 
+                24.80233489171548
+              ], 
+              [
+                -111.60901726578297, 
+                24.80017260262198
+              ], 
+              [
+                -111.63349944489738, 
+                24.7944956629314
+              ], 
+              [
+                -111.63555740375028, 
+                24.791600843358403
+              ], 
+              [
+                -111.63763895632498, 
+                24.790107315252833
+              ], 
+              [
+                -111.64171071811394, 
+                24.789026096274295
+              ], 
+              [
+                -111.64412581001388, 
+                24.789637637612607
+              ], 
+              [
+                -111.64980713707828, 
+                24.79620284397506
+              ], 
+              [
+                -111.65250781878065, 
+                24.809614051069804
+              ], 
+              [
+                -111.6530806777972, 
+                24.81445288830267
+              ], 
+              [
+                -111.65435623079385, 
+                24.816775185967195
+              ], 
+              [
+                -111.67024016736647, 
+                24.806925586425553
+              ], 
+              [
+                -111.67866027817436, 
+                24.80610323217002
+              ], 
+              [
+                -111.68975762812444, 
+                24.81067271275264
+              ], 
+              [
+                -111.69054210939571, 
+                24.812243312220826
+              ], 
+              [
+                -111.6897622355292, 
+                24.81502806962962
+              ], 
+              [
+                -111.68883743386111, 
+                24.815859087145697
+              ], 
+              [
+                -111.68965165221776, 
+                24.819973845147928
+              ], 
+              [
+                -111.69498276050584, 
+                24.82210570163883
+              ], 
+              [
+                -111.70073419699396, 
+                24.818756949068472
+              ], 
+              [
+                -111.70187949241868, 
+                24.817127981186236
+              ], 
+              [
+                -111.70696316692077, 
+                24.818757450069715
+              ], 
+              [
+                -111.71676580022334, 
+                24.844650755074884
+              ], 
+              [
+                -111.71400169746504, 
+                24.86021260649509
+              ], 
+              [
+                -111.71218143383099, 
+                24.862786584647004
+              ], 
+              [
+                -111.70633545798343, 
+                24.86664285391909
+              ], 
+              [
+                -111.70233284491853, 
+                24.870522721361255
+              ], 
+              [
+                -111.70105494354058, 
+                24.87687166880489
+              ], 
+              [
+                -111.70132782671271, 
+                24.88124895311868
+              ], 
+              [
+                -111.70748274090379, 
+                24.88572738128113
+              ], 
+              [
+                -111.70750937266715, 
+                24.88845268317896
+              ], 
+              [
+                -111.70565656050407, 
+                24.89840740468504
+              ], 
+              [
+                -111.69423171426003, 
+                24.90986097577795
+              ], 
+              [
+                -111.68293714926655, 
+                24.916951657424196
+              ], 
+              [
+                -111.67843282106764, 
+                24.917457653568675
+              ], 
+              [
+                -111.67505530815906, 
+                24.914469739299037
+              ], 
+              [
+                -111.6725082871292, 
+                24.91571398932763
+              ], 
+              [
+                -111.67110779666412, 
+                24.9177040307146
+              ], 
+              [
+                -111.67028894519565, 
+                24.92725694459579
+              ], 
+              [
+                -111.6683179977102, 
+                24.930400021301818
+              ], 
+              [
+                -111.6565164398929, 
+                24.9401111079276
+              ], 
+              [
+                -111.64055371141446, 
+                24.937823857918524
+              ], 
+              [
+                -111.6341541084572, 
+                24.938584690291435
+              ], 
+              [
+                -111.63168294652894, 
+                24.94172873278873
+              ], 
+              [
+                -111.62719432617378, 
+                24.945127075727004
+              ], 
+              [
+                -111.62248557321803, 
+                24.94559431555179
+              ], 
+              [
+                -111.61884242307566, 
+                24.945017096496542
+              ], 
+              [
+                -111.61918205064667, 
+                24.950529627946217
+              ], 
+              [
+                -111.62214443672823, 
+                24.958664820874723
+              ], 
+              [
+                -111.6179771932864, 
+                24.972808800778836
+              ], 
+              [
+                -111.61542223527385, 
+                24.97698543376357
+              ], 
+              [
+                -111.60354787927224, 
+                24.98175427226928
+              ], 
+              [
+                -111.59532121283219, 
+                24.988502751362383
+              ], 
+              [
+                -111.58450138296371, 
+                24.99365302615954
+              ], 
+              [
+                -111.58403696187843, 
+                24.99700777064892
+              ], 
+              [
+                -111.5843189892874, 
+                24.999766502112347
+              ], 
+              [
+                -111.58679588662038, 
+                25.00285369214485
+              ], 
+              [
+                -111.5898833735861, 
+                25.008008280986502
+              ], 
+              [
+                -111.59033553421764, 
+                25.009765659335894
+              ], 
+              [
+                -111.58991503070276, 
+                25.011777823991906
+              ], 
+              [
+                -111.5730047158872, 
+                25.013614555258634
+              ], 
+              [
+                -111.57186925641675, 
+                25.007482662462504
+              ], 
+              [
+                -111.57252969361178, 
+                25.005248974707747
+              ], 
+              [
+                -111.57098024353725, 
+                25.00016613812398
+              ], 
+              [
+                -111.56756198047316, 
+                25.001241872744295
+              ], 
+              [
+                -111.56414839266745, 
+                25.013814483475734
+              ], 
+              [
+                -111.5636649543017, 
+                25.017327047764216
+              ], 
+              [
+                -111.5661182716266, 
+                25.020093947108776
+              ], 
+              [
+                -111.57202093540333, 
+                25.022033499296736
+              ], 
+              [
+                -111.5784681000851, 
+                25.0305928384128
+              ], 
+              [
+                -111.58018969571795, 
+                25.035071864731748
+              ], 
+              [
+                -111.57983450471292, 
+                25.037690870234012
+              ], 
+              [
+                -111.57404281688858, 
+                25.04197070487972
+              ], 
+              [
+                -111.56539521814977, 
+                25.05210616018875
+              ], 
+              [
+                -111.56510394902617, 
+                25.055221940124937
+              ], 
+              [
+                -111.56578516560243, 
+                25.056489171341724
+              ], 
+              [
+                -111.56658082965302, 
+                25.06499357579642
+              ], 
+              [
+                -111.56412904523883, 
+                25.07196199757885
+              ], 
+              [
+                -111.55219609678437, 
+                25.097514028164625
+              ], 
+              [
+                -111.53636212575009, 
+                25.119219591821413
+              ], 
+              [
+                -111.54081711184305, 
+                25.117446340365763
+              ], 
+              [
+                -111.54748818621644, 
+                25.111564028522995
+              ], 
+              [
+                -111.55219888556164, 
+                25.112616470219354
+              ], 
+              [
+                -111.55386778079254, 
+                25.114356296181654
+              ], 
+              [
+                -111.55890522120659, 
+                25.114545696358523
+              ], 
+              [
+                -111.5665021946856, 
+                25.111086488541346
+              ], 
+              [
+                -111.57568118226074, 
+                25.1011044493144
+              ], 
+              [
+                -111.58556570148933, 
+                25.086209444318357
+              ], 
+              [
+                -111.59233331875294, 
+                25.074223239435675
+              ], 
+              [
+                -111.61241261835606, 
+                25.047031948990703
+              ], 
+              [
+                -111.6226201227486, 
+                25.0432634796727
+              ], 
+              [
+                -111.63195339730338, 
+                25.035713267723263
+              ], 
+              [
+                -111.63407620020725, 
+                25.033187055091656
+              ], 
+              [
+                -111.63428170536483, 
+                25.031656323637026
+              ], 
+              [
+                -111.63356949868381, 
+                25.027235952344693
+              ], 
+              [
+                -111.63461196973913, 
+                25.024415855255228
+              ], 
+              [
+                -111.6368032486573, 
+                25.02141169403473
+              ], 
+              [
+                -111.64515926552028, 
+                25.01479634603968
+              ], 
+              [
+                -111.67765866218014, 
+                25.012726064599118
+              ], 
+              [
+                -111.68892648284186, 
+                25.016426668414713
+              ], 
+              [
+                -111.7052731041285, 
+                25.0242762445084
+              ], 
+              [
+                -111.71833453235561, 
+                25.02944323984262
+              ], 
+              [
+                -111.72747017053803, 
+                25.034702582919998
+              ], 
+              [
+                -111.73433756528439, 
+                25.041911233009003
+              ], 
+              [
+                -111.73755962406211, 
+                25.046086688205676
+              ], 
+              [
+                -111.74206445633507, 
+                25.054232418885984
+              ], 
+              [
+                -111.74274088061823, 
+                25.058447139368287
+              ], 
+              [
+                -111.74190919838752, 
+                25.06469512858292
+              ], 
+              [
+                -111.73924350300078, 
+                25.07626839833488
+              ], 
+              [
+                -111.73835771878154, 
+                25.090796233426
+              ], 
+              [
+                -111.73997025930733, 
+                25.106617764514645
+              ], 
+              [
+                -111.73884304360756, 
+                25.111776740292004
+              ], 
+              [
+                -111.73658902447458, 
+                25.116466907748443
+              ], 
+              [
+                -111.73446227418981, 
+                25.126559112072872
+              ], 
+              [
+                -111.73427946105302, 
+                25.139401903787203
+              ], 
+              [
+                -111.73631689779646, 
+                25.169627965923553
+              ], 
+              [
+                -111.73562104851037, 
+                25.180605971662843
+              ], 
+              [
+                -111.72937664392343, 
+                25.19400036812018
+              ], 
+              [
+                -111.72467924261842, 
+                25.20985121656605
+              ], 
+              [
+                -111.72229784115899, 
+                25.215926283812397
+              ], 
+              [
+                -111.71218427866822, 
+                25.232196624049294
+              ], 
+              [
+                -111.70803936700462, 
+                25.241141912488455
+              ], 
+              [
+                -111.70427399214593, 
+                25.252833879463083
+              ], 
+              [
+                -111.69487267768919, 
+                25.27675331588366
+              ], 
+              [
+                -111.69334862274378, 
+                25.284381798193174
+              ], 
+              [
+                -111.69380082004001, 
+                25.302707936898393
+              ], 
+              [
+                -111.69598762691953, 
+                25.316316910285856
+              ], 
+              [
+                -111.69969628990209, 
+                25.329300261304045
+              ], 
+              [
+                -111.70311817545297, 
+                25.343772437780157
+              ], 
+              [
+                -111.7029676603669, 
+                25.347033662777488
+              ], 
+              [
+                -111.70153042877591, 
+                25.350788721220827
+              ], 
+              [
+                -111.68998679758795, 
+                25.360707537746148
+              ], 
+              [
+                -111.68876894968369, 
+                25.359816577712238
+              ], 
+              [
+                -111.68840432230824, 
+                25.360276060163635
+              ], 
+              [
+                -111.69053293983023, 
+                25.374277131826958
+              ], 
+              [
+                -111.69133373156289, 
+                25.382837337769143
+              ], 
+              [
+                -111.69276581422862, 
+                25.39078898460944
+              ], 
+              [
+                -111.69918395694015, 
+                25.417785679916406
+              ], 
+              [
+                -111.69958409494069, 
+                25.421229580990687
+              ], 
+              [
+                -111.69917510426347, 
+                25.4323188652636
+              ], 
+              [
+                -111.70069179343771, 
+                25.43463502013609
+              ], 
+              [
+                -111.70967331355651, 
+                25.438161146243726
+              ], 
+              [
+                -111.71568343205809, 
+                25.44267853996477
+              ], 
+              [
+                -111.71782962819525, 
+                25.445159855649862
+              ], 
+              [
+                -111.72130218619108, 
+                25.450760378099186
+              ], 
+              [
+                -111.72470893511228, 
+                25.458990528269805
+              ], 
+              [
+                -111.72603629281207, 
+                25.463150217598237
+              ], 
+              [
+                -111.72840297247387, 
+                25.468089203467276
+              ], 
+              [
+                -111.73324453580246, 
+                25.475784023574153
+              ], 
+              [
+                -111.74118260159271, 
+                25.483680749591585
+              ], 
+              [
+                -111.7471500784513, 
+                25.491863485657994
+              ], 
+              [
+                -111.75026239434267, 
+                25.498656365490667
+              ], 
+              [
+                -111.75114867236736, 
+                25.50294846346049
+              ], 
+              [
+                -111.74694866462474, 
+                25.508480873486533
+              ], 
+              [
+                -111.7442831522943, 
+                25.51088713691409
+              ], 
+              [
+                -111.73187839803697, 
+                25.517482395319433
+              ], 
+              [
+                -111.72629733129615, 
+                25.522223829881185
+              ], 
+              [
+                -111.72474666125193, 
+                25.524337521863057
+              ], 
+              [
+                -111.72353250601233, 
+                25.527726052057634
+              ], 
+              [
+                -111.72368937329445, 
+                25.530117060656124
+              ], 
+              [
+                -111.72491960671816, 
+                25.533072359137034
+              ], 
+              [
+                -111.72359192902529, 
+                25.535404514787167
+              ], 
+              [
+                -111.71555012892007, 
+                25.54050350517622
+              ], 
+              [
+                -111.69306879548336, 
+                25.547979146537887
+              ], 
+              [
+                -111.68411843206952, 
+                25.552066719936615
+              ], 
+              [
+                -111.67934243153435, 
+                25.556269334908627
+              ], 
+              [
+                -111.67734426023532, 
+                25.558619112014643
+              ], 
+              [
+                -111.67766922104894, 
+                25.56056910925255
+              ], 
+              [
+                -111.67580431221054, 
+                25.564641987659535
+              ], 
+              [
+                -111.65589603748009, 
+                25.590678623088827
+              ], 
+              [
+                -111.65465228579764, 
+                25.593389729532284
+              ], 
+              [
+                -111.65440148742728, 
+                25.595201333732064
+              ], 
+              [
+                -111.64812008769162, 
+                25.604468419530413
+              ], 
+              [
+                -111.6416955823105, 
+                25.612550097468517
+              ], 
+              [
+                -111.63594996440419, 
+                25.623579461672637
+              ], 
+              [
+                -111.62519064026611, 
+                25.638986695070628
+              ], 
+              [
+                -111.62176080010677, 
+                25.64962040480394
+              ], 
+              [
+                -111.6075353111605, 
+                25.66109681309226
+              ], 
+              [
+                -111.6040388171022, 
+                25.6656706508207
+              ], 
+              [
+                -111.59168012432234, 
+                25.677225059142316
+              ], 
+              [
+                -111.59151764991039, 
+                25.679976411054113
+              ], 
+              [
+                -111.58989107226037, 
+                25.681749177764587
+              ], 
+              [
+                -111.58081038396831, 
+                25.6882829808386
+              ], 
+              [
+                -111.57682250768666, 
+                25.69286038603959
+              ], 
+              [
+                -111.5718843195029, 
+                25.700030359537134
+              ], 
+              [
+                -111.56695648169521, 
+                25.702748555589245
+              ], 
+              [
+                -111.56105127087602, 
+                25.700869510755233
+              ], 
+              [
+                -111.55756308902072, 
+                25.698194700165367
+              ], 
+              [
+                -111.54664658179468, 
+                25.68469422436121
+              ], 
+              [
+                -111.53873836230103, 
+                25.675987054397723
+              ], 
+              [
+                -111.53124320701843, 
+                25.669067324596664
+              ], 
+              [
+                -111.52625253836547, 
+                25.6660300613226
+              ], 
+              [
+                -111.51943989587375, 
+                25.663809668337617
+              ], 
+              [
+                -111.51247384672706, 
+                25.663239472484992
+              ], 
+              [
+                -111.48917441020214, 
+                25.66450520822282
+              ], 
+              [
+                -111.48594199765681, 
+                25.66523192102092
+              ], 
+              [
+                -111.48018880146874, 
+                25.665068295200665
+              ], 
+              [
+                -111.48167108494454, 
+                25.667423296582633
+              ], 
+              [
+                -111.48161165553559, 
+                25.668917288386652
+              ], 
+              [
+                -111.48029113463916, 
+                25.670161960826164
+              ], 
+              [
+                -111.4627820235481, 
+                25.679567509929182
+              ], 
+              [
+                -111.45502682583391, 
+                25.685257687046175
+              ], 
+              [
+                -111.44988031710238, 
+                25.69733880546278
+              ], 
+              [
+                -111.4461648657616, 
+                25.701771816749396
+              ], 
+              [
+                -111.44246878645201, 
+                25.703493726388512
+              ], 
+              [
+                -111.43821566169461, 
+                25.703769587860155
+              ], 
+              [
+                -111.42833351957944, 
+                25.706837577591255
+              ], 
+              [
+                -111.42667725579149, 
+                25.7053040940703
+              ], 
+              [
+                -111.4239649406201, 
+                25.705417614627947
+              ], 
+              [
+                -111.42338561812777, 
+                25.71783174350455
+              ], 
+              [
+                -111.42446089127935, 
+                25.720803947679762
+              ], 
+              [
+                -111.427940242045, 
+                25.73042612861781
+              ], 
+              [
+                -111.43144391800675, 
+                25.73283071523793
+              ], 
+              [
+                -111.44012784237346, 
+                25.737104264641246
+              ], 
+              [
+                -111.44061382903722, 
+                25.738229833103045
+              ], 
+              [
+                -111.44724824317765, 
+                25.744869331579743
+              ], 
+              [
+                -111.45499837266539, 
+                25.751063791871687
+              ], 
+              [
+                -111.46073628658608, 
+                25.750812773250583
+              ], 
+              [
+                -111.47598748111226, 
+                25.757241649147538
+              ], 
+              [
+                -111.48718032469256, 
+                25.760765414339776
+              ], 
+              [
+                -111.50762222041313, 
+                25.768893279254637
+              ], 
+              [
+                -111.51406773578817, 
+                25.770348792622396
+              ], 
+              [
+                -111.51679230213608, 
+                25.77206763506794
+              ], 
+              [
+                -111.51641267595849, 
+                25.776859374165465
+              ], 
+              [
+                -111.50864581973983, 
+                25.796819661681013
+              ], 
+              [
+                -111.50611141789207, 
+                25.806603621196647
+              ], 
+              [
+                -111.50670440638316, 
+                25.809087867688127
+              ], 
+              [
+                -111.50768313397722, 
+                25.81318748452788
+              ], 
+              [
+                -111.52853990088269, 
+                25.815053399748138
+              ], 
+              [
+                -111.54137087542557, 
+                25.813638582328085
+              ], 
+              [
+                -111.55692678946906, 
+                25.810169527868872
+              ], 
+              [
+                -111.56681574565306, 
+                25.80508163226333
+              ], 
+              [
+                -111.56893507473313, 
+                25.8029554898554
+              ], 
+              [
+                -111.57055821442928, 
+                25.80266771086984
+              ], 
+              [
+                -111.57411953057799, 
+                25.80449603934742
+              ], 
+              [
+                -111.5776747417686, 
+                25.803543382384245
+              ], 
+              [
+                -111.57747145219867, 
+                25.80284045744514
+              ], 
+              [
+                -111.5790745301423, 
+                25.80153115971012
+              ], 
+              [
+                -111.58349729711014, 
+                25.79903785860669
+              ], 
+              [
+                -111.59595707256271, 
+                25.7946287275524
+              ], 
+              [
+                -111.60203547998614, 
+                25.79130167148637
+              ], 
+              [
+                -111.61124393934696, 
+                25.788384091970418
+              ], 
+              [
+                -111.61487382501345, 
+                25.788659625524083
+              ], 
+              [
+                -111.61776202373589, 
+                25.78977495386719
+              ], 
+              [
+                -111.6353984840345, 
+                25.799404687515985
+              ], 
+              [
+                -111.64145551178105, 
+                25.79778563702365
+              ], 
+              [
+                -111.64157323521107, 
+                25.79680399010895
+              ], 
+              [
+                -111.64457847651643, 
+                25.795169614525577
+              ], 
+              [
+                -111.64994273246518, 
+                25.7969067182602
+              ], 
+              [
+                -111.65517756535577, 
+                25.80134060776807
+              ], 
+              [
+                -111.65739015715835, 
+                25.801455758650444
+              ], 
+              [
+                -111.65850411438946, 
+                25.79982250677577
+              ], 
+              [
+                -111.65776219646584, 
+                25.789720425033163
+              ], 
+              [
+                -111.65868064643762, 
+                25.785791797029674
+              ], 
+              [
+                -111.66015226060836, 
+                25.782272884416187
+              ], 
+              [
+                -111.66360303524762, 
+                25.77746123319959
+              ], 
+              [
+                -111.68561343004369, 
+                25.760863562979523
+              ], 
+              [
+                -111.6883401613497, 
+                25.758162358725276
+              ], 
+              [
+                -111.68928308567514, 
+                25.756193977067074
+              ], 
+              [
+                -111.69793629735699, 
+                25.74837709890261
+              ], 
+              [
+                -111.7042133048903, 
+                25.745510482296922
+              ], 
+              [
+                -111.70733578737423, 
+                25.74656293229596
+              ], 
+              [
+                -111.70786838818229, 
+                25.74625615661147
+              ], 
+              [
+                -111.70863173439153, 
+                25.74543779025739
+              ], 
+              [
+                -111.70855110810858, 
+                25.744346748987443
+              ], 
+              [
+                -111.70823819817096, 
+                25.74293059965476
+              ], 
+              [
+                -111.70852133980065, 
+                25.740787450855745
+              ], 
+              [
+                -111.70987588400077, 
+                25.738183491793844
+              ], 
+              [
+                -111.71212823467242, 
+                25.736646202926064
+              ], 
+              [
+                -111.71566570421687, 
+                25.734232932784927
+              ], 
+              [
+                -111.71981047042415, 
+                25.730468976972148
+              ], 
+              [
+                -111.72186186334514, 
+                25.72762438942909
+              ], 
+              [
+                -111.7277902673063, 
+                25.70866219270987
+              ], 
+              [
+                -111.7280459196357, 
+                25.704665417532986
+              ], 
+              [
+                -111.73192808613032, 
+                25.683612944029147
+              ], 
+              [
+                -111.73147044013012, 
+                25.68015545638006
+              ], 
+              [
+                -111.73190413777915, 
+                25.67687603627662
+              ], 
+              [
+                -111.7335185077297, 
+                25.669761654653858
+              ], 
+              [
+                -111.73675431976461, 
+                25.66115651785183
+              ], 
+              [
+                -111.74140556396097, 
+                25.658209840764112
+              ], 
+              [
+                -111.7543771328533, 
+                25.653535517172752
+              ], 
+              [
+                -111.76271849698115, 
+                25.649363549011678
+              ], 
+              [
+                -111.76521105245108, 
+                25.64648906483411
+              ], 
+              [
+                -111.76571508963771, 
+                25.64415775770933
+              ], 
+              [
+                -111.7683317504527, 
+                25.63815535451401
+              ], 
+              [
+                -111.77161759500964, 
+                25.63488208790221
+              ], 
+              [
+                -111.77438779774222, 
+                25.633888428810188
+              ], 
+              [
+                -111.7882945894407, 
+                25.632067126726792
+              ], 
+              [
+                -111.7973783938373, 
+                25.629416034115557
+              ], 
+              [
+                -111.7998734842564, 
+                25.62805708284962
+              ], 
+              [
+                -111.81011618094095, 
+                25.616407418592637
+              ], 
+              [
+                -111.81590554858175, 
+                25.607371517417402
+              ], 
+              [
+                -111.82396266410947, 
+                25.59659528085925
+              ], 
+              [
+                -111.82625136040805, 
+                25.590933170555008
+              ], 
+              [
+                -111.8265325754931, 
+                25.588706409898247
+              ], 
+              [
+                -111.8325581295496, 
+                25.57785383038651
+              ], 
+              [
+                -111.83484100445772, 
+                25.575026877703685
+              ], 
+              [
+                -111.83927911297783, 
+                25.573337396791274
+              ], 
+              [
+                -111.83936888892468, 
+                25.567493941262075
+              ], 
+              [
+                -111.84119284365016, 
+                25.56099408901033
+              ], 
+              [
+                -111.84878329051266, 
+                25.548283446290377
+              ], 
+              [
+                -111.84995836409561, 
+                25.545310112857397
+              ], 
+              [
+                -111.85074125947905, 
+                25.540666755680206
+              ], 
+              [
+                -111.84828747120503, 
+                25.534209864772112
+              ], 
+              [
+                -111.84441588038374, 
+                25.527405042293484
+              ], 
+              [
+                -111.84089853600224, 
+                25.52268103372429
+              ], 
+              [
+                -111.83293231623846, 
+                25.514397890655157
+              ], 
+              [
+                -111.81615154319, 
+                25.49194745271727
+              ], 
+              [
+                -111.81541803719628, 
+                25.48995495224935
+              ], 
+              [
+                -111.81489732723563, 
+                25.48547903913222
+              ], 
+              [
+                -111.81533985129879, 
+                25.48281093814834
+              ], 
+              [
+                -111.81636768670914, 
+                25.481488397803037
+              ], 
+              [
+                -111.82263622271468, 
+                25.480843766145515
+              ], 
+              [
+                -111.82395618816273, 
+                25.481349461841656
+              ], 
+              [
+                -111.82711925110992, 
+                25.483992107254252
+              ], 
+              [
+                -111.8328613620753, 
+                25.485087524944017
+              ], 
+              [
+                -111.83738458661558, 
+                25.484984229601885
+              ], 
+              [
+                -111.83936459220327, 
+                25.48600954216549
+              ], 
+              [
+                -111.84295685072044, 
+                25.48990292895814
+              ], 
+              [
+                -111.84537346479418, 
+                25.491639668941065
+              ], 
+              [
+                -111.85062964930849, 
+                25.49352475485615
+              ], 
+              [
+                -111.85231425488276, 
+                25.49272637828271
+              ], 
+              [
+                -111.85302760190879, 
+                25.491209763230735
+              ], 
+              [
+                -111.84833982000556, 
+                25.486622958395913
+              ], 
+              [
+                -111.84768583841445, 
+                25.485559758653874
+              ], 
+              [
+                -111.84763173604364, 
+                25.48475968405954
+              ], 
+              [
+                -111.85159989436286, 
+                25.480593176538893
+              ], 
+              [
+                -111.86058465826292, 
+                25.473902982810344
+              ], 
+              [
+                -111.86135448992952, 
+                25.476027247031666
+              ], 
+              [
+                -111.86175824669367, 
+                25.479447462350375
+              ], 
+              [
+                -111.86260208430726, 
+                25.48019503244457
+              ], 
+              [
+                -111.86376730639545, 
+                25.48059696637317
+              ], 
+              [
+                -111.86824193309387, 
+                25.47915276842489
+              ], 
+              [
+                -111.86772768486527, 
+                25.476973425754824
+              ], 
+              [
+                -111.86788330680936, 
+                25.47423539625123
+              ], 
+              [
+                -111.87067867983232, 
+                25.473041712507705
+              ], 
+              [
+                -111.87288836293702, 
+                25.47576107820401
+              ], 
+              [
+                -111.89292708786357, 
+                25.453944611768634
+              ], 
+              [
+                -111.89387426711237, 
+                25.425903550369103
+              ], 
+              [
+                -111.89243361324552, 
+                25.39994175434172
+              ], 
+              [
+                -111.89481954117971, 
+                25.398167856844257
+              ], 
+              [
+                -111.89820184494769, 
+                25.397783279735805
+              ], 
+              [
+                -111.90424736831585, 
+                25.3928517127961
+              ], 
+              [
+                -111.91517773508714, 
+                25.375273956285
+              ], 
+              [
+                -111.92201816942811, 
+                25.358514810752016
+              ], 
+              [
+                -111.92257994237302, 
+                25.355271995577677
+              ], 
+              [
+                -111.9231914136895, 
+                25.342674831737245
+              ], 
+              [
+                -111.9221992722166, 
+                25.336820586664025
+              ], 
+              [
+                -111.91957734027633, 
+                25.329178476002376
+              ], 
+              [
+                -111.91768394933776, 
+                25.325701916383007
+              ], 
+              [
+                -111.91311784298333, 
+                25.32000425664996
+              ], 
+              [
+                -111.91020139012434, 
+                25.317849032114704
+              ], 
+              [
+                -111.89314100409587, 
+                25.31237966765162
+              ], 
+              [
+                -111.90493219986271, 
+                25.297975660325733
+              ], 
+              [
+                -111.90611246943449, 
+                25.296210577746578
+              ], 
+              [
+                -111.90708633295507, 
+                25.292459536420488
+              ], 
+              [
+                -111.91471640619258, 
+                25.289178297868624
+              ], 
+              [
+                -111.91744675951769, 
+                25.287184235622583
+              ], 
+              [
+                -111.91824918386237, 
+                25.28550685180774
+              ], 
+              [
+                -111.91889379355399, 
+                25.283189035952258
+              ], 
+              [
+                -111.91902287116518, 
+                25.27476847806805
+              ], 
+              [
+                -111.91760821142931, 
+                25.26941476306899
+              ], 
+              [
+                -111.91740213947882, 
+                25.262963361469293
+              ], 
+              [
+                -111.92003867992139, 
+                25.255575489715856
+              ], 
+              [
+                -111.92191354902245, 
+                25.253917540140407
+              ], 
+              [
+                -111.92699869526007, 
+                25.252856201348205
+              ], 
+              [
+                -111.92946771783802, 
+                25.25146004051425
+              ], 
+              [
+                -111.9340158428333, 
+                25.245919432289813
+              ], 
+              [
+                -111.94160461242865, 
+                25.23302714346365
+              ], 
+              [
+                -111.9430843493157, 
+                25.228075948105662
+              ], 
+              [
+                -111.94359772241309, 
+                25.221320035763757
+              ], 
+              [
+                -111.94486930274952, 
+                25.219395326629748
+              ], 
+              [
+                -111.95915121920152, 
+                25.213313065564012
+              ], 
+              [
+                -111.95974599032115, 
+                25.214193360836013
+              ], 
+              [
+                -111.96008941968839, 
+                25.214997795240755
+              ], 
+              [
+                -111.96058745156516, 
+                25.216283348744206
+              ], 
+              [
+                -111.9641430094037, 
+                25.21687335547863
+              ], 
+              [
+                -111.96947486126757, 
+                25.22184708703918
+              ], 
+              [
+                -111.97199718741383, 
+                25.222333390449617
+              ], 
+              [
+                -111.97778554440087, 
+                25.21920550893327
+              ], 
+              [
+                -111.9816338995851, 
+                25.21856793488793
+              ], 
+              [
+                -111.98759320489337, 
+                25.2133667369757
+              ], 
+              [
+                -111.98581388782482, 
+                25.2095432065275
+              ], 
+              [
+                -111.98687137101106, 
+                25.202944177996475
+              ], 
+              [
+                -111.98599689596841, 
+                25.199366002986594
+              ], 
+              [
+                -111.98336686193174, 
+                25.193684093535666
+              ], 
+              [
+                -111.97839595286277, 
+                25.18790268009663
+              ], 
+              [
+                -111.96980291349263, 
+                25.18546629527466
+              ], 
+              [
+                -111.96733968012335, 
+                25.186320176576547
+              ], 
+              [
+                -111.96482152773837, 
+                25.185832706831274
+              ], 
+              [
+                -111.962670683467, 
+                25.180782423404843
+              ], 
+              [
+                -111.96434169830113, 
+                25.174972749379293
+              ], 
+              [
+                -111.96381329590865, 
+                25.173875955379657
+              ], 
+              [
+                -111.95589595931837, 
+                25.168160417168462
+              ], 
+              [
+                -111.95010271638724, 
+                25.16682273748867
+              ], 
+              [
+                -111.94007981395433, 
+                25.1622850544884
+              ], 
+              [
+                -111.93328053597375, 
+                25.155084321839002
+              ], 
+              [
+                -111.93075366552543, 
+                25.150675425979543
+              ], 
+              [
+                -111.92948538244154, 
+                25.13986794237102
+              ], 
+              [
+                -111.93143621629673, 
+                25.133580791816016
+              ], 
+              [
+                -111.93433280767678, 
+                25.12788445205576
+              ], 
+              [
+                -111.93410260895456, 
+                25.123059263245743
+              ], 
+              [
+                -111.9331384529202, 
+                25.12017283153026
+              ], 
+              [
+                -111.93924602603249, 
+                25.10909888906423
+              ], 
+              [
+                -111.9436241426897, 
+                25.09847954393629
+              ], 
+              [
+                -111.9428900681475, 
+                25.081961755011474
+              ], 
+              [
+                -111.94309696796246, 
+                25.076013524865473
+              ], 
+              [
+                -111.94378350346516, 
+                25.073469543252916
+              ], 
+              [
+                -111.95111416225714, 
+                25.066468461381742
+              ], 
+              [
+                -111.96101704343954, 
+                25.060526863035104
+              ], 
+              [
+                -111.96301766219005, 
+                25.05593334686783
+              ], 
+              [
+                -111.96264487704128, 
+                25.05143030939813
+              ], 
+              [
+                -111.97353092207017, 
+                25.047259133566552
+              ], 
+              [
+                -111.97696278003397, 
+                25.047589604066808
+              ], 
+              [
+                -111.97911712499929, 
+                25.04920928354234
+              ], 
+              [
+                -111.98302498267292, 
+                25.04819123030043
+              ], 
+              [
+                -111.98700865158831, 
+                25.045312574697668
+              ], 
+              [
+                -111.99359706968609, 
+                25.043274317802116
+              ], 
+              [
+                -111.99778799840577, 
+                25.044514253984914
+              ], 
+              [
+                -112.00615978473303, 
+                25.044994874491337
+              ], 
+              [
+                -112.00996976785316, 
+                25.043854222102084
+              ], 
+              [
+                -112.0155362886478, 
+                25.04073257206448
+              ], 
+              [
+                -112.02144099370283, 
+                25.03397809833358
+              ], 
+              [
+                -112.03474511725076, 
+                25.02550052660488
+              ], 
+              [
+                -112.0501539245218, 
+                25.023267293333983
+              ], 
+              [
+                -112.05257332056152, 
+                25.020599002810506
+              ], 
+              [
+                -112.05263136486673, 
+                25.01822718177474
+              ], 
+              [
+                -112.05710148538837, 
+                25.009204548249556
+              ], 
+              [
+                -112.06104674630008, 
+                25.004297081647913
+              ], 
+              [
+                -112.06179136001269, 
+                25.00056243312274
+              ], 
+              [
+                -112.06130005684174, 
+                24.998890579965845
+              ], 
+              [
+                -112.059149842411, 
+                24.99663786800577
+              ], 
+              [
+                -112.05452298779369, 
+                24.997667657966026
+              ], 
+              [
+                -112.05101179741285, 
+                25.003720928211884
+              ], 
+              [
+                -112.04708808448375, 
+                25.005992526612847
+              ], 
+              [
+                -112.0426357761072, 
+                25.00709032160278
+              ], 
+              [
+                -112.03903709209652, 
+                25.006785267532614
+              ], 
+              [
+                -112.02903096870496, 
+                25.00216068570659
+              ], 
+              [
+                -112.02306802905504, 
+                25.007360515783116
+              ], 
+              [
+                -112.01942769840545, 
+                25.016613968247185
+              ], 
+              [
+                -112.00475413027807, 
+                25.020454809414318
+              ], 
+              [
+                -112.00152456096181, 
+                25.01957244274268
+              ], 
+              [
+                -111.99996638101193, 
+                25.01810059841117
+              ], 
+              [
+                -111.99552405908018, 
+                25.0112501678352
+              ], 
+              [
+                -111.99400187609682, 
+                25.002736429477537
+              ], 
+              [
+                -111.9948295486789, 
+                24.97054684466472
+              ], 
+              [
+                -111.99584430282022, 
+                24.955139409405465
+              ], 
+              [
+                -112.00717364666643, 
+                24.94618468475492
+              ], 
+              [
+                -112.00998899786312, 
+                24.94537241612791
+              ], 
+              [
+                -112.01483549369215, 
+                24.93303330096705
+              ], 
+              [
+                -112.0258398064024, 
+                24.92094258232457
+              ], 
+              [
+                -112.03140381279621, 
+                24.91875957597302
+              ], 
+              [
+                -112.03503272672904, 
+                24.92073776158513
+              ], 
+              [
+                -112.03765139445503, 
+                24.922491547520814
+              ], 
+              [
+                -112.04298924184297, 
+                24.9325273746318
+              ], 
+              [
+                -112.04583317536066, 
+                24.933253704249065
+              ], 
+              [
+                -112.04904433653948, 
+                24.931775291538486
+              ], 
+              [
+                -112.05153100372553, 
+                24.930066814347576
+              ], 
+              [
+                -112.0516261454451, 
+                24.92936371494736
+              ], 
+              [
+                -112.05135911366145, 
+                24.92828874947189
+              ], 
+              [
+                -112.04868709124015, 
+                24.924879147445523
+              ], 
+              [
+                -112.0447921423889, 
+                24.91746681905152
+              ], 
+              [
+                -112.04434401402314, 
+                24.91575491212129
+              ], 
+              [
+                -112.04487534348283, 
+                24.913349902734005
+              ], 
+              [
+                -112.04601884719726, 
+                24.91214890682718
+              ], 
+              [
+                -112.05314919316892, 
+                24.908401342308213
+              ], 
+              [
+                -112.05975700032522, 
+                24.91272665068717
+              ], 
+              [
+                -112.06355651813563, 
+                24.9138735497442
+              ], 
+              [
+                -112.06596838338545, 
+                24.913700253227457
+              ], 
+              [
+                -112.06957613076017, 
+                24.911663983499192
+              ], 
+              [
+                -112.07103922863698, 
+                24.912397060808434
+              ], 
+              [
+                -112.07213130440752, 
+                24.91381935611932
+              ], 
+              [
+                -112.07249007823408, 
+                24.91788188023959
+              ], 
+              [
+                -112.068512109905, 
+                24.922557167590185
+              ], 
+              [
+                -112.06740724593102, 
+                24.92675785329267
+              ], 
+              [
+                -112.06825086679909, 
+                24.936841740587692
+              ], 
+              [
+                -112.07203827342983, 
+                24.956119634268685
+              ], 
+              [
+                -112.09217887514474, 
+                24.97651323901221
+              ], 
+              [
+                -112.09629953911609, 
+                24.97907617959058
+              ], 
+              [
+                -112.09415888869383, 
+                24.966513812985536
+              ], 
+              [
+                -112.0899789178603, 
+                24.957721229466863
+              ], 
+              [
+                -112.08743675042103, 
+                24.951248186499452
+              ], 
+              [
+                -112.08552551959657, 
+                24.946282867128307
+              ], 
+              [
+                -112.0835873952378, 
+                24.939121733287358
+              ], 
+              [
+                -112.0829984430533, 
+                24.933889701921576
+              ], 
+              [
+                -112.0835030052264, 
+                24.915695553925957
+              ], 
+              [
+                -112.0851188319186, 
+                24.91107494222383
+              ], 
+              [
+                -112.09858522394049, 
+                24.902049738911934
+              ], 
+              [
+                -112.10427482615565, 
+                24.904830775088822
+              ], 
+              [
+                -112.11066145392901, 
+                24.909329171848427
+              ], 
+              [
+                -112.11338479048902, 
+                24.902649469189644
+              ], 
+              [
+                -112.11360735914356, 
+                24.897687024734935
+              ], 
+              [
+                -112.11256754669873, 
+                24.89476001340376
+              ], 
+              [
+                -112.10761996093267, 
+                24.890797783251948
+              ], 
+              [
+                -112.09952181288817, 
+                24.890279965422874
+              ], 
+              [
+                -112.09744987390727, 
+                24.886626452270203
+              ], 
+              [
+                -112.09691793213109, 
+                24.88240708725925
+              ], 
+              [
+                -112.09860138840885, 
+                24.86695737984146
+              ], 
+              [
+                -112.09981536917006, 
+                24.864542742639884
+              ], 
+              [
+                -112.10724706013997, 
+                24.863346475021732
+              ], 
+              [
+                -112.11140016231238, 
+                24.863865758608767
+              ], 
+              [
+                -112.11487513538445, 
+                24.86294001743626
+              ], 
+              [
+                -112.12960575362936, 
+                24.857119289294808
+              ], 
+              [
+                -112.13830949351986, 
+                24.851890056134955
+              ], 
+              [
+                -112.1371603115309, 
+                24.84219838986515
+              ], 
+              [
+                -112.12817088673073, 
+                24.83641720146761
+              ], 
+              [
+                -112.11910523428813, 
+                24.82537811263405
+              ], 
+              [
+                -112.11593057824112, 
+                24.81930637298918
+              ], 
+              [
+                -112.11933718305686, 
+                24.805172221478667
+              ], 
+              [
+                -112.1231423374987, 
+                24.801612111505207
+              ], 
+              [
+                -112.1355020040235, 
+                24.793971274316327
+              ], 
+              [
+                -112.13899865139416, 
+                24.79249754256847
+              ], 
+              [
+                -112.14834040051991, 
+                24.793246851137845
+              ], 
+              [
+                -112.1554584373503, 
+                24.788965915805345
+              ], 
+              [
+                -112.15825622175615, 
+                24.786085284281764
+              ], 
+              [
+                -112.16051928206302, 
+                24.781567261971997
+              ], 
+              [
+                -112.16305460395414, 
+                24.771926522796708
+              ], 
+              [
+                -112.16446739410131, 
+                24.772058275370025
+              ], 
+              [
+                -112.16578980448485, 
+                24.774364102873584
+              ], 
+              [
+                -112.16740175399879, 
+                24.776039067584815
+              ], 
+              [
+                -112.1741506537686, 
+                24.774479338240944
+              ], 
+              [
+                -112.17476221293512, 
+                24.77305274099372
+              ], 
+              [
+                -112.17493480169082, 
+                24.771488621819998
+              ], 
+              [
+                -112.17480392515655, 
+                24.76863835410538
+              ], 
+              [
+                -112.17652861349653, 
+                24.767212406792805
+              ], 
+              [
+                -112.18057445030588, 
+                24.765824549931086
+              ], 
+              [
+                -112.18338281037745, 
+                24.7674783346583
+              ], 
+              [
+                -112.18551356331622, 
+                24.767911574000227
+              ], 
+              [
+                -112.18709646765572, 
+                24.767008940350806
+              ], 
+              [
+                -112.18895424895318, 
+                24.764520139185027
+              ], 
+              [
+                -112.19311303744847, 
+                24.756602645504575
+              ], 
+              [
+                -112.19587241028495, 
+                24.755061910421844
+              ], 
+              [
+                -112.19956695052663, 
+                24.753993490818445
+              ], 
+              [
+                -112.19998229726811, 
+                24.751556190493346
+              ], 
+              [
+                -112.19911879457442, 
+                24.748233854215517
+              ], 
+              [
+                -112.19391364016982, 
+                24.744499157871697
+              ], 
+              [
+                -112.17847088623935, 
+                24.748576303991772
+              ], 
+              [
+                -112.17666684838153, 
+                24.745857049652443
+              ], 
+              [
+                -112.17605555768807, 
+                24.741110476833153
+              ], 
+              [
+                -112.18523200559446, 
+                24.732585277935524
+              ], 
+              [
+                -112.19182227673691, 
+                24.72461732136428
+              ], 
+              [
+                -112.19262634102637, 
+                24.71876728234483
+              ], 
+              [
+                -112.19322735157347, 
+                24.706846446563983
+              ], 
+              [
+                -112.18943186993774, 
+                24.685940191800228
+              ], 
+              [
+                -112.18640796819966, 
+                24.683739776771482
+              ], 
+              [
+                -112.19202185825964, 
+                24.66453102601029
+              ], 
+              [
+                -112.19930796738079, 
+                24.653015003674806
+              ], 
+              [
+                -112.20518352030575, 
+                24.64820850348736
+              ], 
+              [
+                -112.2086575732338, 
+                24.646895335348635
+              ], 
+              [
+                -112.2089031945332, 
+                24.644688204534148
+              ], 
+              [
+                -112.20530956702635, 
+                24.63604428127774
+              ], 
+              [
+                -112.20336624797676, 
+                24.633066509713732
+              ], 
+              [
+                -112.20205769864508, 
+                24.63507216704107
+              ], 
+              [
+                -112.2016271708511, 
+                24.637272585054248
+              ], 
+              [
+                -112.19940778025064, 
+                24.640640710871192
+              ], 
+              [
+                -112.18866392205625, 
+                24.64201724851407
+              ], 
+              [
+                -112.18676215563134, 
+                24.64100974457048
+              ], 
+              [
+                -112.18315690151482, 
+                24.632535719567716
+              ], 
+              [
+                -112.18204511700257, 
+                24.628077769957905
+              ], 
+              [
+                -112.18245410887091, 
+                24.624604694197753
+              ], 
+              [
+                -112.18638531190936, 
+                24.617143718801564
+              ], 
+              [
+                -112.1860070576134, 
+                24.613291180635244
+              ], 
+              [
+                -112.18247227536065, 
+                24.60607780471654
+              ], 
+              [
+                -112.17605684446391, 
+                24.597009103311027
+              ], 
+              [
+                -112.1722395175908, 
+                24.59249592099197
+              ], 
+              [
+                -112.1726262143676, 
+                24.595837554240628
+              ], 
+              [
+                -112.1675088954567, 
+                24.600242862758456
+              ], 
+              [
+                -112.163294552161, 
+                24.60689845514994
+              ], 
+              [
+                -112.15684427970118, 
+                24.62503448491048
+              ], 
+              [
+                -112.14984164553208, 
+                24.627344110237445
+              ], 
+              [
+                -112.14449517884601, 
+                24.628186546762375
+              ], 
+              [
+                -112.13059862139508, 
+                24.628445629543574
+              ], 
+              [
+                -112.12629048733389, 
+                24.6274852492876
+              ], 
+              [
+                -112.1065751414498, 
+                24.627368411629465
+              ], 
+              [
+                -112.10409843878887, 
+                24.629059103570597
+              ], 
+              [
+                -112.10002959702017, 
+                24.634506338950633
+              ], 
+              [
+                -112.09933432049114, 
+                24.637475873182915
+              ], 
+              [
+                -112.09788338811619, 
+                24.638482790211167
+              ], 
+              [
+                -112.09580536616947, 
+                24.638577272308094
+              ], 
+              [
+                -112.08409912372194, 
+                24.632484983683042
+              ], 
+              [
+                -112.08421462810911, 
+                24.635242105318802
+              ], 
+              [
+                -112.08434150962715, 
+                24.63827123755195
+              ], 
+              [
+                -112.07596057196878, 
+                24.645202588167223
+              ], 
+              [
+                -112.07384891359885, 
+                24.644845193479174
+              ], 
+              [
+                -112.05826275823428, 
+                24.627138527769294
+              ], 
+              [
+                -112.04865188628999, 
+                24.618874582411536
+              ], 
+              [
+                -112.03060056240082, 
+                24.612183637106877
+              ], 
+              [
+                -112.02473317827359, 
+                24.611425287073935
+              ], 
+              [
+                -112.0209474879277, 
+                24.61349708468814
+              ], 
+              [
+                -112.01659249326833, 
+                24.620923788249186
+              ], 
+              [
+                -112.01191098161291, 
+                24.618053899176374
+              ], 
+              [
+                -112.00789237907186, 
+                24.613894093566635
+              ], 
+              [
+                -112.00438219395006, 
+                24.61178019614251
+              ], 
+              [
+                -112.00080717435769, 
+                24.612967162677894
+              ], 
+              [
+                -111.99497624310675, 
+                24.61216400531495
+              ], 
+              [
+                -111.99213472042871, 
+                24.605755506837777
+              ], 
+              [
+                -111.99052664098016, 
+                24.60340877245486
+              ], 
+              [
+                -111.98331159482062, 
+                24.596788087111356
+              ], 
+              [
+                -111.97968514679232, 
+                24.5947811787875
+              ], 
+              [
+                -111.9755858540774, 
+                24.59518765491027
+              ], 
+              [
+                -111.97149711607703, 
+                24.590157273521186
+              ], 
+              [
+                -111.96424338284383, 
+                24.578183069547364
+              ], 
+              [
+                -111.96387314477657, 
+                24.576244532062965
+              ], 
+              [
+                -111.96286720871856, 
+                24.574861816035867
+              ], 
+              [
+                -111.96048553082477, 
+                24.5726902752721
+              ], 
+              [
+                -111.95828320469056, 
+                24.5720971638932
+              ], 
+              [
+                -111.95447594659717, 
+                24.574958417092976
+              ], 
+              [
+                -111.95101436742073, 
+                24.573194395351887
+              ], 
+              [
+                -111.94978894120875, 
+                24.57069023712545
+              ], 
+              [
+                -111.94987673320155, 
+                24.570644331616297
+              ], 
+              [
+                -111.96376826392618, 
+                24.563401188893952
+              ], 
+              [
+                -111.96586280468009, 
+                24.563795345869863
+              ], 
+              [
+                -111.96824329963862, 
+                24.563024048033135
+              ], 
+              [
+                -111.96985229956081, 
+                24.561733474000146
+              ], 
+              [
+                -111.97087552946194, 
+                24.559882436349856
+              ], 
+              [
+                -111.97194395404891, 
+                24.556420698305423
+              ], 
+              [
+                -111.9726349205551, 
+                24.548918590608995
+              ], 
+              [
+                -111.97054796898553, 
+                24.53902337067129
+              ], 
+              [
+                -111.97021467161777, 
+                24.52342776294181
+              ], 
+              [
+                -111.97159819364386, 
+                24.511951889471053
+              ], 
+              [
+                -111.97476765406611, 
+                24.501043176570267
+              ], 
+              [
+                -111.97766834863577, 
+                24.494770413107283
+              ], 
+              [
+                -111.98073720026588, 
+                24.493695224809187
+              ], 
+              [
+                -111.98345032378869, 
+                24.494796082814307
+              ], 
+              [
+                -111.98551312505197, 
+                24.494564333150436
+              ], 
+              [
+                -111.99982399100887, 
+                24.479108876624032
+              ], 
+              [
+                -112.00370557174574, 
+                24.470329824195872
+              ], 
+              [
+                -112.0040156960542, 
+                24.46136955305884
+              ], 
+              [
+                -112.00363151786101, 
+                24.455944728305084
+              ], 
+              [
+                -112.00524079710269, 
+                24.45299119006346
+              ], 
+              [
+                -112.02020604367306, 
+                24.43861797905579
+              ], 
+              [
+                -112.04107115912451, 
+                24.430968258235097
+              ], 
+              [
+                -112.04908660682746, 
+                24.42957206197963
+              ], 
+              [
+                -112.05571454001789, 
+                24.4304466539151
+              ], 
+              [
+                -112.05998892494252, 
+                24.429559220948754
+              ], 
+              [
+                -112.06984660526186, 
+                24.424633508688764
+              ], 
+              [
+                -112.07013901465514, 
+                24.420377796971817
+              ], 
+              [
+                -112.06533423684755, 
+                24.38331666932528
+              ], 
+              [
+                -112.06292204705875, 
+                24.382877905569693
+              ], 
+              [
+                -112.06589017640766, 
+                24.37412269374548
+              ], 
+              [
+                -112.0665676329152, 
+                24.372517097766636
+              ], 
+              [
+                -112.07172057307419, 
+                24.368226157489616
+              ], 
+              [
+                -112.0749073606926, 
+                24.367742467717733
+              ], 
+              [
+                -112.07611368917065, 
+                24.3691608701698
+              ], 
+              [
+                -112.08173289859488, 
+                24.368074977066403
+              ], 
+              [
+                -112.09393073484262, 
+                24.363821659950762
+              ], 
+              [
+                -112.09560732007361, 
+                24.362120997385542
+              ], 
+              [
+                -112.09655785701452, 
+                24.358042870363157
+              ], 
+              [
+                -112.09637865596822, 
+                24.35521393950624
+              ], 
+              [
+                -112.09493001702911, 
+                24.348886603277776
+              ], 
+              [
+                -112.09336230100665, 
+                24.343929661729167
+              ], 
+              [
+                -112.09196330962455, 
+                24.34101047492995
+              ], 
+              [
+                -112.08628777391499, 
+                24.332262302550273
+              ], 
+              [
+                -112.08113051831613, 
+                24.32658856026598
+              ], 
+              [
+                -112.07960556903241, 
+                24.326151593304424
+              ], 
+              [
+                -112.07734622725464, 
+                24.32728759726535
+              ], 
+              [
+                -112.07338605072944, 
+                24.32735627276962
+              ], 
+              [
+                -112.06714860483946, 
+                24.32343330570017
+              ], 
+              [
+                -112.06880237959987, 
+                24.31619781825722
+              ], 
+              [
+                -112.08804254087123, 
+                24.297137827216734
+              ], 
+              [
+                -112.09703495873508, 
+                24.297608093892155
+              ], 
+              [
+                -112.09863608303273, 
+                24.298888412491536
+              ], 
+              [
+                -112.10157026135238, 
+                24.299865655854965
+              ], 
+              [
+                -112.10571168825957, 
+                24.299305518219636
+              ], 
+              [
+                -112.10590597996935, 
+                24.29271493107996
+              ], 
+              [
+                -112.10392358994466, 
+                24.282265075403263
+              ], 
+              [
+                -112.10328141100224, 
+                24.281766025981018
+              ], 
+              [
+                -112.1014060021129, 
+                24.28240852693651
+              ], 
+              [
+                -112.09671840199212, 
+                24.28061927008489
+              ], 
+              [
+                -112.08254841756121, 
+                24.267582438206887
+              ], 
+              [
+                -112.0848647759028, 
+                24.234329268792244
+              ], 
+              [
+                -112.09010882666166, 
+                24.223167019821762
+              ], 
+              [
+                -112.09929077238115, 
+                24.218632269013824
+              ], 
+              [
+                -112.10141396850833, 
+                24.204774789196385
+              ], 
+              [
+                -112.0940594973653, 
+                24.20006413453554
+              ], 
+              [
+                -112.09191249797985, 
+                24.197341212346338
+              ], 
+              [
+                -112.09440936130987, 
+                24.195124284352758
+              ], 
+              [
+                -112.10478634060335, 
+                24.19098858933616
+              ], 
+              [
+                -112.11063975550935, 
+                24.192936650389054
+              ], 
+              [
+                -112.11733743708623, 
+                24.17027694131002
+              ], 
+              [
+                -112.13064614283337, 
+                24.18142583764397
+              ], 
+              [
+                -112.14295079567192, 
+                24.190054283723814
+              ], 
+              [
+                -112.14560844545016, 
+                24.1910647076859
+              ], 
+              [
+                -112.1508385828428, 
+                24.188846928586987
+              ], 
+              [
+                -112.15190961239733, 
+                24.18684179352596
+              ], 
+              [
+                -112.14889424654142, 
+                24.181257780056374
+              ], 
+              [
+                -112.14642019282624, 
+                24.178261845395856
+              ], 
+              [
+                -112.1427834273633, 
+                24.165669853622212
+              ], 
+              [
+                -112.14231275111324, 
+                24.149298483390588
+              ], 
+              [
+                -112.145178786912, 
+                24.145838499119467
+              ], 
+              [
+                -112.1503394765078, 
+                24.14361887290711
+              ], 
+              [
+                -112.15978623823057, 
+                24.14424925466594
+              ], 
+              [
+                -112.16343849790111, 
+                24.129218276779852
+              ], 
+              [
+                -112.16576080482625, 
+                24.125632068672722
+              ], 
+              [
+                -112.18169342834476, 
+                24.128660873736187
+              ], 
+              [
+                -112.18450751544455, 
+                24.13382268513014
+              ], 
+              [
+                -112.18427207754448, 
+                24.139092589136563
+              ], 
+              [
+                -112.18501787189946, 
+                24.140679830260456
+              ], 
+              [
+                -112.18708279974683, 
+                24.142065263732157
+              ], 
+              [
+                -112.1908090979358, 
+                24.141828216897093
+              ], 
+              [
+                -112.19246594889981, 
+                24.141389048572066
+              ], 
+              [
+                -112.20073909840305, 
+                24.134914964668184
+              ], 
+              [
+                -112.2015800447536, 
+                24.132504817856102
+              ], 
+              [
+                -112.2019781334365, 
+                24.12670749350728
+              ], 
+              [
+                -112.2014275939213, 
+                24.122104451211733
+              ], 
+              [
+                -112.2006665636816, 
+                24.119145932345564
+              ], 
+              [
+                -112.2031232201814, 
+                24.11406488988775
+              ], 
+              [
+                -112.2068225995865, 
+                24.109235112624148
+              ], 
+              [
+                -112.20885496172617, 
+                24.108062010003362
+              ], 
+              [
+                -112.21640718297174, 
+                24.105830850800732
+              ], 
+              [
+                -112.21940060513249, 
+                24.10638415809577
+              ], 
+              [
+                -112.22093218538738, 
+                24.10881471742992
+              ], 
+              [
+                -112.22203269009555, 
+                24.111992962575172
+              ], 
+              [
+                -112.22300377990952, 
+                24.112849945475205
+              ], 
+              [
+                -112.23513934245504, 
+                24.114398393782714
+              ], 
+              [
+                -112.23867697557526, 
+                24.113608150155635
+              ], 
+              [
+                -112.26012932574112, 
+                24.102234600691013
+              ], 
+              [
+                -112.26702082569449, 
+                24.09408136019146
+              ], 
+              [
+                -112.28389516950855, 
+                24.069034481274404
+              ], 
+              [
+                -112.27581660906598, 
+                24.05913258522977
+              ], 
+              [
+                -112.2689054628189, 
+                24.052444168385357
+              ], 
+              [
+                -112.26668440959061, 
+                24.051659359364606
+              ], 
+              [
+                -112.26562163275759, 
+                24.049544373366857
+              ], 
+              [
+                -112.26500639558058, 
+                24.039971206096904
+              ], 
+              [
+                -112.26709462126355, 
+                24.03408089019747
+              ], 
+              [
+                -112.26988065120855, 
+                24.030228408503888
+              ], 
+              [
+                -112.28176995342196, 
+                24.022967166092304
+              ], 
+              [
+                -112.29886495723044, 
+                24.00598464207516
+              ], 
+              [
+                -112.30671403240059, 
+                24.002828053012824
+              ], 
+              [
+                -112.31286535477317, 
+                24.002484365747943
+              ], 
+              [
+                -112.31419811014787, 
+                24.003350460103533
+              ], 
+              [
+                -112.31985362547029, 
+                24.003138838733836
+              ], 
+              [
+                -112.32208592885189, 
+                24.00023055611214
+              ], 
+              [
+                -112.32222871933429, 
+                23.997491357992615
+              ], 
+              [
+                -112.31684216357768, 
+                23.98024783274634
+              ], 
+              [
+                -112.3096412808184, 
+                23.974278564382175
+              ], 
+              [
+                -112.30740806380206, 
+                23.97326424340676
+              ], 
+              [
+                -112.30303210066953, 
+                23.972809686828764
+              ], 
+              [
+                -112.30274550859687, 
+                23.972239033686424
+              ], 
+              [
+                -112.30219474456734, 
+                23.96217040067975
+              ], 
+              [
+                -112.30432166357821, 
+                23.956168208293537
+              ], 
+              [
+                -112.32002248613888, 
+                23.946572253299333
+              ], 
+              [
+                -112.344406052318, 
+                23.957418965492536
+              ], 
+              [
+                -112.35498329517048, 
+                23.962907149243428
+              ], 
+              [
+                -112.36290408636789, 
+                23.96875635638096
+              ], 
+              [
+                -112.36504206037068, 
+                23.971641446591804
+              ], 
+              [
+                -112.36670474717558, 
+                23.97262787025538
+              ], 
+              [
+                -112.37229742035254, 
+                23.972754181634645
+              ], 
+              [
+                -112.37601380960349, 
+                23.97078583764546
+              ], 
+              [
+                -112.37834798742392, 
+                23.96867582568377
+              ], 
+              [
+                -112.38069037775342, 
+                23.965433172915148
+              ], 
+              [
+                -112.38173108532588, 
+                23.961450118608372
+              ], 
+              [
+                -112.38059476746794, 
+                23.936081576888327
+              ], 
+              [
+                -112.37935336054761, 
+                23.931302492157734
+              ], 
+              [
+                -112.37633425374896, 
+                23.926674238477453
+              ], 
+              [
+                -112.3731663225654, 
+                23.924715576690193
+              ], 
+              [
+                -112.37346562296631, 
+                23.909698176075157
+              ], 
+              [
+                -112.38848288950706, 
+                23.89983791692692
+              ], 
+              [
+                -112.39330111600161, 
+                23.894764530440664
+              ], 
+              [
+                -112.392077747485, 
+                23.876479897607883
+              ], 
+              [
+                -112.39045457776173, 
+                23.8741799908619
+              ], 
+              [
+                -112.38729492847241, 
+                23.859258211620133
+              ], 
+              [
+                -112.38704053920404, 
+                23.85656801128206
+              ], 
+              [
+                -112.39950416844674, 
+                23.852707380056835
+              ], 
+              [
+                -112.42089763778219, 
+                23.848386603907525
+              ], 
+              [
+                -112.42853203082437, 
+                23.84123798868434
+              ], 
+              [
+                -112.43610175149499, 
+                23.841539209904816
+              ], 
+              [
+                -112.44180102168902, 
+                23.842819801055334
+              ], 
+              [
+                -112.44696470807457, 
+                23.846150241127496
+              ], 
+              [
+                -112.44791411508925, 
+                23.848129625968102
+              ], 
+              [
+                -112.45452448659807, 
+                23.852940182371643
+              ], 
+              [
+                -112.45978210707491, 
+                23.851167547054455
+              ], 
+              [
+                -112.46165748737593, 
+                23.84822775109475
+              ], 
+              [
+                -112.45653162380873, 
+                23.819254197094168
+              ], 
+              [
+                -112.45442186008808, 
+                23.81318822530352
+              ], 
+              [
+                -112.4508257884359, 
+                23.806327633679455
+              ], 
+              [
+                -112.44403611110867, 
+                23.800324192503204
+              ], 
+              [
+                -112.4432892995725, 
+                23.79864108773231
+              ], 
+              [
+                -112.44427196319887, 
+                23.792907417229017
+              ], 
+              [
+                -112.46074362190046, 
+                23.78964567535011
+              ], 
+              [
+                -112.46286396880747, 
+                23.79103780174512
+              ], 
+              [
+                -112.47464226881553, 
+                23.801882002963602
+              ], 
+              [
+                -112.48659164169823, 
+                23.80436920871703
+              ], 
+              [
+                -112.48917482573071, 
+                23.802882217763425
+              ], 
+              [
+                -112.49219651677014, 
+                23.79961179746143
+              ], 
+              [
+                -112.49089524014516, 
+                23.792832122124082
+              ], 
+              [
+                -112.49155689876721, 
+                23.78601398078953
+              ], 
+              [
+                -112.49270863871737, 
+                23.783601031843098
+              ], 
+              [
+                -112.49904686612142, 
+                23.78152683386295
+              ], 
+              [
+                -112.51703684066628, 
+                23.767885033617123
+              ], 
+              [
+                -112.520725616948, 
+                23.75905885351053
+              ], 
+              [
+                -112.52343939575053, 
+                23.753990079076257
+              ], 
+              [
+                -112.54306534674669, 
+                23.725518711772082
+              ], 
+              [
+                -112.54975500016575, 
+                23.72246306979916
+              ], 
+              [
+                -112.55436999595085, 
+                23.718494644827658
+              ], 
+              [
+                -112.55502386087312, 
+                23.714375136929142
+              ], 
+              [
+                -112.55496364999335, 
+                23.70059728218078
+              ], 
+              [
+                -112.5512522660103, 
+                23.697670158978237
+              ], 
+              [
+                -112.54364335876437, 
+                23.6982839224203
+              ], 
+              [
+                -112.52605636692948, 
+                23.71589109062243
+              ], 
+              [
+                -112.50848468588482, 
+                23.73114041624367
+              ], 
+              [
+                -112.50093447053504, 
+                23.712510459172915
+              ], 
+              [
+                -112.50077428702306, 
+                23.699258282008824
+              ], 
+              [
+                -112.50154262817149, 
+                23.691026128400587
+              ], 
+              [
+                -112.5055406516962, 
+                23.692177081927223
+              ], 
+              [
+                -112.50990071344029, 
+                23.691354110075878
+              ], 
+              [
+                -112.51430400283472, 
+                23.685454476787587
+              ], 
+              [
+                -112.51397972742828, 
+                23.6815316497618
+              ], 
+              [
+                -112.511559121401, 
+                23.673332427221155
+              ], 
+              [
+                -112.5083669376421, 
+                23.6701317160079
+              ], 
+              [
+                -112.49925113905157, 
+                23.665452913091432
+              ], 
+              [
+                -112.49572700417619, 
+                23.665690807115713
+              ], 
+              [
+                -112.49489820869093, 
+                23.665133988551347
+              ], 
+              [
+                -112.4931673952926, 
+                23.661696040112606
+              ], 
+              [
+                -112.4959634559941, 
+                23.650472399384665
+              ], 
+              [
+                -112.49622419920148, 
+                23.649426024221594
+              ], 
+              [
+                -112.49814234224657, 
+                23.645467765760458
+              ], 
+              [
+                -112.51178081311929, 
+                23.63212002465384
+              ], 
+              [
+                -112.5148040586284, 
+                23.62143664192915
+              ], 
+              [
+                -112.51140538455878, 
+                23.619304006793485
+              ], 
+              [
+                -112.51016268081369, 
+                23.617010098864682
+              ], 
+              [
+                -112.50925138420145, 
+                23.612693445127203
+              ], 
+              [
+                -112.52243160076338, 
+                23.595822449694644
+              ], 
+              [
+                -112.52802967788789, 
+                23.591413836331203
+              ], 
+              [
+                -112.53186922913495, 
+                23.57765028750273
+              ], 
+              [
+                -112.52675323698769, 
+                23.571265358296404
+              ], 
+              [
+                -112.52490012904867, 
+                23.563079261221922
+              ], 
+              [
+                -112.52551112651305, 
+                23.562073354218597
+              ], 
+              [
+                -112.52649558753484, 
+                23.561379401485368
+              ], 
+              [
+                -112.54721406572911, 
+                23.562184853848997
+              ], 
+              [
+                -112.57456107611823, 
+                23.55557939229828
+              ], 
+              [
+                -112.57626135692792, 
+                23.552947441562072
+              ], 
+              [
+                -112.57934931626724, 
+                23.545531363467788
+              ], 
+              [
+                -112.58000724686708, 
+                23.542178261166498
+              ], 
+              [
+                -112.57993934888373, 
+                23.54014522326653
+              ], 
+              [
+                -112.57774659074451, 
+                23.53149919926295
+              ], 
+              [
+                -112.57743505426015, 
+                23.517550652788483
+              ], 
+              [
+                -112.5785823703611, 
+                23.514577554916855
+              ], 
+              [
+                -112.5829513741732, 
+                23.50985911869675
+              ], 
+              [
+                -112.58653479320353, 
+                23.51113802581861
+              ], 
+              [
+                -112.59924128890357, 
+                23.52798967809823
+              ], 
+              [
+                -112.60238883380912, 
+                23.532309305062306
+              ], 
+              [
+                -112.60290514030926, 
+                23.534415422946346
+              ], 
+              [
+                -112.6023350948381, 
+                23.535518193007782
+              ], 
+              [
+                -112.60267411878903, 
+                23.536635515009547
+              ], 
+              [
+                -112.60370417065269, 
+                23.537514495989825
+              ], 
+              [
+                -112.605567015039, 
+                23.537671809787508
+              ], 
+              [
+                -112.60935770307104, 
+                23.536760719304638
+              ], 
+              [
+                -112.61133365429623, 
+                23.535439029796127
+              ], 
+              [
+                -112.61454568452672, 
+                23.53071747418285
+              ], 
+              [
+                -112.611258351455, 
+                23.514959070430706
+              ], 
+              [
+                -112.62248789060855, 
+                23.508583833079726
+              ], 
+              [
+                -112.62656447184857, 
+                23.504547115501662
+              ], 
+              [
+                -112.62834803391085, 
+                23.501504392611228
+              ], 
+              [
+                -112.6315671215971, 
+                23.494293692640454
+              ], 
+              [
+                -112.63653295773074, 
+                23.471607342459883
+              ], 
+              [
+                -112.65666847589462, 
+                23.465487532607202
+              ], 
+              [
+                -112.65701155192754, 
+                23.461931434952536
+              ], 
+              [
+                -112.65664746026751, 
+                23.460811418981727
+              ], 
+              [
+                -112.64932969523352, 
+                23.452180449613657
+              ], 
+              [
+                -112.64809485497369, 
+                23.447043879674883
+              ], 
+              [
+                -112.65158717586806, 
+                23.43849522647113
+              ], 
+              [
+                -112.65645181174828, 
+                23.435192306445902
+              ], 
+              [
+                -112.66064124762336, 
+                23.433661105617723
+              ], 
+              [
+                -112.68338559449775, 
+                23.445039144780086
+              ], 
+              [
+                -112.68536685227409, 
+                23.446526115100593
+              ], 
+              [
+                -112.68612790225151, 
+                23.449380673877414
+              ], 
+              [
+                -112.68850903710818, 
+                23.452461568616766
+              ], 
+              [
+                -112.69858701381294, 
+                23.459913477884683
+              ], 
+              [
+                -112.71174680094627, 
+                23.468428166675302
+              ], 
+              [
+                -112.71579918747544, 
+                23.46895892340723
+              ], 
+              [
+                -112.71841513249313, 
+                23.468373237469706
+              ], 
+              [
+                -112.72537019041799, 
+                23.464399635277665
+              ], 
+              [
+                -112.72936899451874, 
+                23.45879934643669
+              ], 
+              [
+                -112.73155749931077, 
+                23.451402251127078
+              ], 
+              [
+                -112.73018883864343, 
+                23.44766879260732
+              ], 
+              [
+                -112.7269783776759, 
+                23.441065734912698
+              ], 
+              [
+                -112.7253567170646, 
+                23.438865034738964
+              ], 
+              [
+                -112.72271706474088, 
+                23.437920891634207
+              ], 
+              [
+                -112.72021611972029, 
+                23.43957902453889
+              ], 
+              [
+                -112.71637398945099, 
+                23.43930892331124
+              ], 
+              [
+                -112.71558901200133, 
+                23.438574297823234
+              ], 
+              [
+                -112.71192190463422, 
+                23.429145860727207
+              ], 
+              [
+                -112.71154722849998, 
+                23.42489901622213
+              ], 
+              [
+                -112.73572713463214, 
+                23.41648432339074
+              ], 
+              [
+                -112.7382682372442, 
+                23.41268877027993
+              ], 
+              [
+                -112.74029390199868, 
+                23.405331988699338
+              ], 
+              [
+                -112.74102743093083, 
+                23.40113265705269
+              ], 
+              [
+                -112.74159875965259, 
+                23.388366651765757
+              ], 
+              [
+                -112.73642781840705, 
+                23.378773996868276
+              ], 
+              [
+                -112.73386426548504, 
+                23.37655891222153
+              ], 
+              [
+                -112.72477835076322, 
+                23.37440062210719
+              ], 
+              [
+                -112.7226502963208, 
+                23.37484939458183
+              ], 
+              [
+                -112.71877686989751, 
+                23.377514290787868
+              ], 
+              [
+                -112.71821251424863, 
+                23.37698841517377
+              ], 
+              [
+                -112.7092550069587, 
+                23.366002784380644
+              ], 
+              [
+                -112.70886255176684, 
+                23.364023815936797
+              ], 
+              [
+                -112.70912427602222, 
+                23.362037153130608
+              ], 
+              [
+                -112.71003233563239, 
+                23.35760004472089
+              ], 
+              [
+                -112.71086607223617, 
+                23.35630584625745
+              ], 
+              [
+                -112.71750318262094, 
+                23.35207429592434
+              ], 
+              [
+                -112.72697249532108, 
+                23.349576798535544
+              ], 
+              [
+                -112.72962164806837, 
+                23.350833296348924
+              ], 
+              [
+                -112.74031756268859, 
+                23.35038462821236
+              ], 
+              [
+                -112.74405995776101, 
+                23.349249916501606
+              ], 
+              [
+                -112.74630183215471, 
+                23.348227909358517
+              ], 
+              [
+                -112.75069401798824, 
+                23.34403943240048
+              ], 
+              [
+                -112.75967192182632, 
+                23.340825515984317
+              ], 
+              [
+                -112.76883205571015, 
+                23.348225272048406
+              ], 
+              [
+                -112.77204194832761, 
+                23.353192682512333
+              ], 
+              [
+                -112.7731726527109, 
+                23.356713778619575
+              ], 
+              [
+                -112.77432206150014, 
+                23.358666099299754
+              ], 
+              [
+                -112.78062833253696, 
+                23.368125129408423
+              ], 
+              [
+                -112.78514379977877, 
+                23.3691172889664
+              ], 
+              [
+                -112.78742033349896, 
+                23.368599638493905
+              ], 
+              [
+                -112.82314848225742, 
+                23.352445958803234
+              ], 
+              [
+                -112.82613744835061, 
+                23.349996315221304
+              ], 
+              [
+                -112.84697231198497, 
+                23.319057060680304
+              ], 
+              [
+                -112.8458455764514, 
+                23.31224813319611
+              ], 
+              [
+                -112.84438613781599, 
+                23.30922962811041
+              ], 
+              [
+                -112.83490671942486, 
+                23.309609047519334
+              ], 
+              [
+                -112.82990462861352, 
+                23.316916312441332
+              ], 
+              [
+                -112.8261672921711, 
+                23.318800906142286
+              ], 
+              [
+                -112.81385619259228, 
+                23.322245066698397
+              ], 
+              [
+                -112.79470789800142, 
+                23.311500094530984
+              ], 
+              [
+                -112.7909282664826, 
+                23.30539212396311
+              ], 
+              [
+                -112.78553910770437, 
+                23.291246533954727
+              ], 
+              [
+                -112.78569876603811, 
+                23.28546086318954
+              ], 
+              [
+                -112.79289870342991, 
+                23.275535444651453
+              ], 
+              [
+                -112.79428242110498, 
+                23.275104968023143
+              ], 
+              [
+                -112.79963417096145, 
+                23.27626620027984
+              ], 
+              [
+                -112.81868309165283, 
+                23.286037338770512
+              ], 
+              [
+                -112.8359283679011, 
+                23.281037354595842
+              ], 
+              [
+                -112.85720028434196, 
+                23.281744956585026
+              ], 
+              [
+                -112.85869549577254, 
+                23.280079419261668
+              ], 
+              [
+                -112.86017294761062, 
+                23.272098816284878
+              ], 
+              [
+                -112.85766393461566, 
+                23.269961003034147
+              ], 
+              [
+                -112.8550293283456, 
+                23.268801580119003
+              ], 
+              [
+                -112.85426394722313, 
+                23.267576759998366
+              ], 
+              [
+                -112.85387868973697, 
+                23.256560959172436
+              ], 
+              [
+                -112.85548242856534, 
+                23.25356913381518
+              ], 
+              [
+                -112.8846261691774, 
+                23.250930737258727
+              ], 
+              [
+                -112.89525647622018, 
+                23.256108772118584
+              ], 
+              [
+                -112.90617910710307, 
+                23.255667893423198
+              ], 
+              [
+                -112.92154956637839, 
+                23.239343026700396
+              ], 
+              [
+                -112.93818444878315, 
+                23.201142975662272
+              ], 
+              [
+                -112.93850838427015, 
+                23.199087751379103
+              ], 
+              [
+                -112.93765860058092, 
+                23.194208903228848
+              ], 
+              [
+                -112.93259908844976, 
+                23.184113864644882
+              ], 
+              [
+                -112.91899450372428, 
+                23.187238877156464
+              ], 
+              [
+                -112.90912477669742, 
+                23.18209080488135
+              ], 
+              [
+                -112.8943397178979, 
+                23.182316310067495
+              ], 
+              [
+                -112.89248934190462, 
+                23.18363022937678
+              ], 
+              [
+                -112.89068212429957, 
+                23.183576427728582
+              ], 
+              [
+                -112.86002881332828, 
+                23.174428531175423
+              ], 
+              [
+                -112.85804923461353, 
+                23.169826668829973
+              ], 
+              [
+                -112.86003376542794, 
+                23.162707505429218
+              ], 
+              [
+                -112.86750983053982, 
+                23.153705965864567
+              ], 
+              [
+                -112.87282316829221, 
+                23.150687815102017
+              ], 
+              [
+                -112.88542662407681, 
+                23.141061601219764
+              ], 
+              [
+                -112.88536569000743, 
+                23.133950967216872
+              ], 
+              [
+                -112.88287474426279, 
+                23.132411513662746
+              ], 
+              [
+                -112.86642626926665, 
+                23.133411511587934
+              ], 
+              [
+                -112.84999115049565, 
+                23.144224224283374
+              ], 
+              [
+                -112.84697547731803, 
+                23.14938023181842
+              ], 
+              [
+                -112.83403429723663, 
+                23.154393101290736
+              ], 
+              [
+                -112.83302178842114, 
+                23.154623663184182
+              ], 
+              [
+                -112.83223677865742, 
+                23.153908619526756
+              ], 
+              [
+                -112.83261474383602, 
+                23.149348965477625
+              ], 
+              [
+                -112.85770369260496, 
+                23.124496133995702
+              ], 
+              [
+                -112.87434234325441, 
+                23.110418717924976
+              ], 
+              [
+                -112.88640120387984, 
+                23.094577209184
+              ], 
+              [
+                -112.88949297838289, 
+                23.082419448794827
+              ], 
+              [
+                -112.88751945709978, 
+                23.074347476765652
+              ], 
+              [
+                -112.88523951973224, 
+                23.061932252910495
+              ], 
+              [
+                -112.8859125016288, 
+                23.060984591912923
+              ], 
+              [
+                -112.89280584818727, 
+                23.06257844857545
+              ], 
+              [
+                -112.8984515600545, 
+                23.073253001357955
+              ], 
+              [
+                -112.89855054159443, 
+                23.07419102936463
+              ], 
+              [
+                -112.89719708442739, 
+                23.07657328361012
+              ], 
+              [
+                -112.89770177675015, 
+                23.07771691585895
+              ], 
+              [
+                -112.9000126943357, 
+                23.079620152481038
+              ], 
+              [
+                -112.9038360034342, 
+                23.07940827992816
+              ], 
+              [
+                -112.9052371576306, 
+                23.07817773030127
+              ], 
+              [
+                -112.90734661366011, 
+                23.07158204900007
+              ], 
+              [
+                -112.90621226948154, 
+                23.06903933083215
+              ], 
+              [
+                -112.89744332941258, 
+                23.055361361703703
+              ], 
+              [
+                -112.88836684864677, 
+                23.048245007056774
+              ], 
+              [
+                -112.88391432148073, 
+                23.038539416759125
+              ], 
+              [
+                -112.88451138559044, 
+                23.033931467363022
+              ], 
+              [
+                -112.88793234202241, 
+                23.028393799033058
+              ], 
+              [
+                -112.88977715619706, 
+                23.02768072035608
+              ], 
+              [
+                -112.89168151146694, 
+                23.029212546865438
+              ], 
+              [
+                -112.89958076168266, 
+                23.041785984790092
+              ], 
+              [
+                -112.90168421742541, 
+                23.041960338226794
+              ], 
+              [
+                -112.90784854391502, 
+                23.039387079017555
+              ], 
+              [
+                -112.90770399362843, 
+                23.034882582209338
+              ], 
+              [
+                -112.90519810438724, 
+                23.03299101304186
+              ], 
+              [
+                -112.90433508878267, 
+                23.031596778683397
+              ], 
+              [
+                -112.90300583469502, 
+                23.02330402808586
+              ], 
+              [
+                -112.90330330277551, 
+                23.019712818145372
+              ], 
+              [
+                -112.90575579843777, 
+                23.018314463191984
+              ], 
+              [
+                -112.9324551879462, 
+                23.044588339951613
+              ], 
+              [
+                -112.93343751283311, 
+                23.046099110840967
+              ], 
+              [
+                -112.93780703456991, 
+                23.074340917642274
+              ], 
+              [
+                -112.935869761729, 
+                23.077125996337575
+              ], 
+              [
+                -112.93376802538306, 
+                23.07889091112151
+              ], 
+              [
+                -112.9340789060834, 
+                23.08000846404278
+              ], 
+              [
+                -112.9410669172219, 
+                23.083190080805775
+              ], 
+              [
+                -112.94702992275316, 
+                23.07769767101382
+              ], 
+              [
+                -112.94938885043196, 
+                23.07406455515849
+              ], 
+              [
+                -112.95273537048456, 
+                23.06618795567253
+              ], 
+              [
+                -112.95270739945717, 
+                23.05671886341806
+              ], 
+              [
+                -112.94747864793837, 
+                23.037154185231266
+              ], 
+              [
+                -112.94491313630068, 
+                23.03591372990934
+              ], 
+              [
+                -112.94215614808643, 
+                23.032649018946987
+              ], 
+              [
+                -112.94040145026679, 
+                23.02942918601467
+              ], 
+              [
+                -112.93895481074301, 
+                23.02453720934721
+              ], 
+              [
+                -112.93798453180045, 
+                23.015793979018884
+              ], 
+              [
+                -112.9389340038022, 
+                23.00271383897443
+              ], 
+              [
+                -112.94320584612286, 
+                22.998627582670345
+              ], 
+              [
+                -112.95894810731143, 
+                22.996800193184665
+              ], 
+              [
+                -112.96229731635113, 
+                22.99907734200387
+              ], 
+              [
+                -112.963328052658, 
+                23.00096915475844
+              ], 
+              [
+                -112.96227305489224, 
+                23.016413870453675
+              ], 
+              [
+                -112.96143937604155, 
+                23.019682300340214
+              ], 
+              [
+                -112.96638213203715, 
+                23.022159931515365
+              ], 
+              [
+                -112.9918922274674, 
+                23.01475409614507
+              ], 
+              [
+                -112.998127570206, 
+                22.989103389382326
+              ], 
+              [
+                -112.99949334004873, 
+                22.981275625926866
+              ], 
+              [
+                -113.02087545811784, 
+                22.973992885116452
+              ], 
+              [
+                -113.05340710298519, 
+                22.960278866933045
+              ], 
+              [
+                -113.08432676460417, 
+                22.946454464415382
+              ], 
+              [
+                -113.10189147899735, 
+                22.93753212378308
+              ], 
+              [
+                -113.1080168994891, 
+                22.933587704182564
+              ], 
+              [
+                -113.11206162097471, 
+                22.925996949204045
+              ], 
+              [
+                -113.11259784460457, 
+                22.92383701639716
+              ], 
+              [
+                -113.11236660104383, 
+                22.91428283942966
+              ], 
+              [
+                -113.11136066394715, 
+                22.90432660160854
+              ], 
+              [
+                -113.10899349281242, 
+                22.898389007741933
+              ], 
+              [
+                -113.11007705105966, 
+                22.89441464489985
+              ], 
+              [
+                -113.11302222995843, 
+                22.893992944794476
+              ], 
+              [
+                -113.11612514494489, 
+                22.895318770644177
+              ], 
+              [
+                -113.12782516980053, 
+                22.910362714407718
+              ], 
+              [
+                -113.12930490717035, 
+                22.914891730007533
+              ], 
+              [
+                -113.12947364159038, 
+                22.916959489745185
+              ], 
+              [
+                -113.12861279495638, 
+                22.921488083848796
+              ], 
+              [
+                -113.12950292266194, 
+                22.942018380860503
+              ], 
+              [
+                -113.13684332124654, 
+                22.943194452682807
+              ], 
+              [
+                -113.13955423853403, 
+                22.94195328170511
+              ], 
+              [
+                -113.14702538136467, 
+                22.935282429119876
+              ], 
+              [
+                -113.14791690718415, 
+                22.93177490712821
+              ], 
+              [
+                -113.1368404089566, 
+                22.921322684244178
+              ], 
+              [
+                -113.12849092243276, 
+                22.88058495238324
+              ], 
+              [
+                -113.12929402830943, 
+                22.87203149549462
+              ], 
+              [
+                -113.13268211247778, 
+                22.865914444214958
+              ], 
+              [
+                -113.13587535395594, 
+                22.861848480361278
+              ], 
+              [
+                -113.1379747990161, 
+                22.853560443941863
+              ], 
+              [
+                -113.13755574300917, 
+                22.850454579117457
+              ], 
+              [
+                -113.13235932952293, 
+                22.84425101695341
+              ], 
+              [
+                -113.12887996784048, 
+                22.83331942157551
+              ], 
+              [
+                -113.13099342773634, 
+                22.824106288973184
+              ], 
+              [
+                -113.13461932563618, 
+                22.817192850893104
+              ], 
+              [
+                -113.14465677867652, 
+                22.798081436314362
+              ], 
+              [
+                -113.16224765163638, 
+                22.784717160790315
+              ], 
+              [
+                -113.16998868993531, 
+                22.781776107711675
+              ], 
+              [
+                -113.17114245671492, 
+                22.781751671091293
+              ], 
+              [
+                -113.17623886404564, 
+                22.795066282002818
+              ], 
+              [
+                -113.17623793349439, 
+                22.79676145109776
+              ], 
+              [
+                -113.17484952555401, 
+                22.800415712009627
+              ], 
+              [
+                -113.17242696866253, 
+                22.802497180457525
+              ], 
+              [
+                -113.1601640644489, 
+                22.805751275509024
+              ], 
+              [
+                -113.15849583881915, 
+                22.80482852161891
+              ], 
+              [
+                -113.1518813313976, 
+                22.80733024858217
+              ], 
+              [
+                -113.14967319071586, 
+                22.813085811997468
+              ], 
+              [
+                -113.15315843846437, 
+                22.819577036933897
+              ], 
+              [
+                -113.15599273611846, 
+                22.822921322641047
+              ], 
+              [
+                -113.16478015967145, 
+                22.823139959114
+              ], 
+              [
+                -113.16723972261006, 
+                22.834711957515715
+              ], 
+              [
+                -113.1709190576184, 
+                22.860461773086797
+              ], 
+              [
+                -113.17116579007211, 
+                22.86681734806724
+              ], 
+              [
+                -113.16426576914786, 
+                22.892486590820923
+              ], 
+              [
+                -113.16374793878721, 
+                22.893248350852694
+              ], 
+              [
+                -113.15819552565135, 
+                22.894274910576712
+              ], 
+              [
+                -113.1602782716678, 
+                22.897655904850755
+              ], 
+              [
+                -113.17049837893981, 
+                22.904273952828945
+              ], 
+              [
+                -113.18874873094828, 
+                22.908901974212124
+              ], 
+              [
+                -113.21366541510459, 
+                22.909786768028564
+              ], 
+              [
+                -113.22016785181955, 
+                22.906820988923318
+              ], 
+              [
+                -113.22323964459358, 
+                22.903876694155
+              ], 
+              [
+                -113.22407795369496, 
+                22.901223481173925
+              ], 
+              [
+                -113.2207460649164, 
+                22.893414726330565
+              ], 
+              [
+                -113.2181584830927, 
+                22.88369117742445
+              ], 
+              [
+                -113.22065616321417, 
+                22.876300385126726
+              ], 
+              [
+                -113.22372657016602, 
+                22.874404225045808
+              ], 
+              [
+                -113.22777394401233, 
+                22.874006339360626
+              ], 
+              [
+                -113.24024104891934, 
+                22.880637291771183
+              ], 
+              [
+                -113.25771139342268, 
+                22.8750299185379
+              ], 
+              [
+                -113.26124255694715, 
+                22.872237641490965
+              ], 
+              [
+                -113.26511938246576, 
+                22.8621374963652
+              ], 
+              [
+                -113.2656026238528, 
+                22.859417823047192
+              ], 
+              [
+                -113.26499011802346, 
+                22.85676915649282
+              ], 
+              [
+                -113.26412692950498, 
+                22.855488548067182
+              ], 
+              [
+                -113.26345532140017, 
+                22.83874396392572
+              ], 
+              [
+                -113.27792055576744, 
+                22.817597861572605
+              ], 
+              [
+                -113.28969683936107, 
+                22.80511263500149
+              ], 
+              [
+                -113.31149499592014, 
+                22.793721941437106
+              ], 
+              [
+                -113.32294954326159, 
+                22.793334680763092
+              ], 
+              [
+                -113.33030264696417, 
+                22.794833640107107
+              ], 
+              [
+                -113.34565738656048, 
+                22.799905564801904
+              ], 
+              [
+                -113.34703715302149, 
+                22.799664723183753
+              ], 
+              [
+                -113.34816184010664, 
+                22.798276533430776
+              ], 
+              [
+                -113.34973370359491, 
+                22.795857464135572
+              ], 
+              [
+                -113.3499729286131, 
+                22.791561025523148
+              ], 
+              [
+                -113.34912072133665, 
+                22.78746109823872
+              ], 
+              [
+                -113.3362153106279, 
+                22.771893814782278
+              ], 
+              [
+                -113.34458656090234, 
+                22.756992674121715
+              ], 
+              [
+                -113.34649338382852, 
+                22.74983191071048
+              ], 
+              [
+                -113.34840996608436, 
+                22.737425992994293
+              ], 
+              [
+                -113.34816375596884, 
+                22.734699187972833
+              ], 
+              [
+                -113.34585894765785, 
+                22.72922627303218
+              ], 
+              [
+                -113.34592382543, 
+                22.72530254556629
+              ], 
+              [
+                -113.34920080082885, 
+                22.71655729231559
+              ], 
+              [
+                -113.35324013610638, 
+                22.711005743453285
+              ], 
+              [
+                -113.3578586109541, 
+                22.708400944348234
+              ], 
+              [
+                -113.36168695190537, 
+                22.708081757987397
+              ], 
+              [
+                -113.36571624669871, 
+                22.72036764886661
+              ], 
+              [
+                -113.36979462660511, 
+                22.72945310859539
+              ], 
+              [
+                -113.3794398296911, 
+                22.747498700600598
+              ], 
+              [
+                -113.38418353709208, 
+                22.752046390122374
+              ], 
+              [
+                -113.38900102607558, 
+                22.751333711208737
+              ], 
+              [
+                -113.39328114248924, 
+                22.742214955165007
+              ], 
+              [
+                -113.39615367049701, 
+                22.737684602628114
+              ], 
+              [
+                -113.39932585836617, 
+                22.735228241146295
+              ], 
+              [
+                -113.41008584191275, 
+                22.73914420566735
+              ], 
+              [
+                -113.41749537730786, 
+                22.73778668093474
+              ], 
+              [
+                -113.42074087772971, 
+                22.73612679093014
+              ], 
+              [
+                -113.42407871697108, 
+                22.73313597930927
+              ], 
+              [
+                -113.42507402000747, 
+                22.728972617073907
+              ], 
+              [
+                -113.42395915790586, 
+                22.72463893452507
+              ], 
+              [
+                -113.41380423046114, 
+                22.72335834024234
+              ], 
+              [
+                -113.39561222716637, 
+                22.723581788497434
+              ], 
+              [
+                -113.39367122112658, 
+                22.721102004677554
+              ], 
+              [
+                -113.39111102188164, 
+                22.715962213037592
+              ], 
+              [
+                -113.39019835905819, 
+                22.71233198956306
+              ], 
+              [
+                -113.39002862102082, 
+                22.70358397495423
+              ], 
+              [
+                -113.39271022514082, 
+                22.696431916176483
+              ], 
+              [
+                -113.42040770545616, 
+                22.688679853490488
+              ], 
+              [
+                -113.42426181707104, 
+                22.689614092568696
+              ], 
+              [
+                -113.43574429300581, 
+                22.696514560052172
+              ], 
+              [
+                -113.43868084645113, 
+                22.70391372443616
+              ], 
+              [
+                -113.43743228340988, 
+                22.707603169564653
+              ], 
+              [
+                -113.43460163367591, 
+                22.71221362708456
+              ], 
+              [
+                -113.43449935235604, 
+                22.713053847640136
+              ], 
+              [
+                -113.43697111888737, 
+                22.716522399022193
+              ], 
+              [
+                -113.44272881447769, 
+                22.719367185912095
+              ], 
+              [
+                -113.44697395997093, 
+                22.72019656130966
+              ], 
+              [
+                -113.45768628881932, 
+                22.717349136646018
+              ], 
+              [
+                -113.46060330792686, 
+                22.71466369649919
+              ], 
+              [
+                -113.46499541933385, 
+                22.708654855683886
+              ], 
+              [
+                -113.47029313152288, 
+                22.691431000677888
+              ], 
+              [
+                -113.47047847716529, 
+                22.688370464928926
+              ], 
+              [
+                -113.46961387608341, 
+                22.68610244063734
+              ], 
+              [
+                -113.47041062220228, 
+                22.682769414803225
+              ], 
+              [
+                -113.47295277293586, 
+                22.675809070437715
+              ], 
+              [
+                -113.47628615894726, 
+                22.67099114909321
+              ], 
+              [
+                -113.52468107177394, 
+                22.62973146942131
+              ], 
+              [
+                -113.53660926071596, 
+                22.626491942910608
+              ], 
+              [
+                -113.5481177700971, 
+                22.627651482058205
+              ], 
+              [
+                -113.5464063002134, 
+                22.62924765004819
+              ], 
+              [
+                -113.54578439142091, 
+                22.634063954201423
+              ], 
+              [
+                -113.54699738074966, 
+                22.636900927007726
+              ], 
+              [
+                -113.55520308855752, 
+                22.638859702197163
+              ], 
+              [
+                -113.55966853449591, 
+                22.637508010624188
+              ], 
+              [
+                -113.5784542485901, 
+                22.627416336649514
+              ], 
+              [
+                -113.58155149401969, 
+                22.622759420471194
+              ], 
+              [
+                -113.5879486830851, 
+                22.62201932042722
+              ], 
+              [
+                -113.59354712437255, 
+                22.62289606793982
+              ], 
+              [
+                -113.5968323549842, 
+                22.633004054939466
+              ], 
+              [
+                -113.59601351378053, 
+                22.635635138684002
+              ], 
+              [
+                -113.59321532361484, 
+                22.638985781744793
+              ], 
+              [
+                -113.59191201751415, 
+                22.64903068285062
+              ], 
+              [
+                -113.59202631327494, 
+                22.659627059086
+              ], 
+              [
+                -113.593140115522, 
+                22.677310045600215
+              ], 
+              [
+                -113.59502396720146, 
+                22.680159329354055
+              ], 
+              [
+                -113.5939427388691, 
+                22.685765568592842
+              ], 
+              [
+                -113.57631785897118, 
+                22.722384624013408
+              ], 
+              [
+                -113.57488881553869, 
+                22.727126224161054
+              ], 
+              [
+                -113.57398900110256, 
+                22.739872384866715
+              ], 
+              [
+                -113.5749391348177, 
+                22.74266615989355
+              ], 
+              [
+                -113.57678140607064, 
+                22.745175227910316
+              ], 
+              [
+                -113.58470931290832, 
+                22.748680304574066
+              ], 
+              [
+                -113.5908351761166, 
+                22.749783085237056
+              ], 
+              [
+                -113.60718461446653, 
+                22.748373247100492
+              ], 
+              [
+                -113.6178012193924, 
+                22.745327535831144
+              ], 
+              [
+                -113.63205252800036, 
+                22.73854335658692
+              ], 
+              [
+                -113.63548916243802, 
+                22.73515761543181
+              ], 
+              [
+                -113.63742439098955, 
+                22.731311084177943
+              ], 
+              [
+                -113.65234678603798, 
+                22.688636751757453
+              ], 
+              [
+                -113.65228251694981, 
+                22.686293801965704
+              ], 
+              [
+                -113.64483899616444, 
+                22.644518056212586
+              ], 
+              [
+                -113.64226361021196, 
+                22.641604136353475
+              ], 
+              [
+                -113.64119485734575, 
+                22.637830242953665
+              ], 
+              [
+                -113.64723896535091, 
+                22.622324327701545
+              ], 
+              [
+                -113.66745162154047, 
+                22.578008540335265
+              ], 
+              [
+                -113.66877690387889, 
+                22.576207471768946
+              ], 
+              [
+                -113.67142593802016, 
+                22.574386047901307
+              ], 
+              [
+                -113.67313814777859, 
+                22.572468215218464
+              ], 
+              [
+                -113.67483307420109, 
+                22.567253380550728
+              ], 
+              [
+                -113.67664738955932, 
+                22.55900882208272
+              ], 
+              [
+                -113.67696647895706, 
+                22.55468878231311
+              ], 
+              [
+                -113.67543149400896, 
+                22.551032477833544
+              ], 
+              [
+                -113.67491329596889, 
+                22.548579902097075
+              ], 
+              [
+                -113.67535674035467, 
+                22.54682136708077
+              ], 
+              [
+                -113.6803088188971, 
+                22.537426706776802
+              ], 
+              [
+                -113.68455427604387, 
+                22.538414829685916
+              ], 
+              [
+                -113.69541873098851, 
+                22.546310761881166
+              ], 
+              [
+                -113.70130907238888, 
+                22.54937518961504
+              ], 
+              [
+                -113.71419491613025, 
+                22.549314100154742
+              ], 
+              [
+                -113.7168875179891, 
+                22.547712408392744
+              ], 
+              [
+                -113.71770805409452, 
+                22.545716826977305
+              ], 
+              [
+                -113.71733176070603, 
+                22.542399674884386
+              ], 
+              [
+                -113.70220621321114, 
+                22.517866456731653
+              ], 
+              [
+                -113.6925164158701, 
+                22.512342710661922
+              ], 
+              [
+                -113.6862245174258, 
+                22.499939131809125
+              ], 
+              [
+                -113.68684866195329, 
+                22.493048108002064
+              ], 
+              [
+                -113.68752027008915, 
+                22.490408852170873
+              ], 
+              [
+                -113.70822901409538, 
+                22.472504539988098
+              ], 
+              [
+                -113.72661759982483, 
+                22.483648185538613
+              ], 
+              [
+                -113.73131243058906, 
+                22.492379897932626
+              ], 
+              [
+                -113.72941955984173, 
+                22.501224606442147
+              ], 
+              [
+                -113.73212430117032, 
+                22.506652879737114
+              ], 
+              [
+                -113.73607034062404, 
+                22.508002070645457
+              ], 
+              [
+                -113.74491571306882, 
+                22.505516670072584
+              ], 
+              [
+                -113.75255657504168, 
+                22.487904753236904
+              ], 
+              [
+                -113.75329009939253, 
+                22.483005874654367
+              ], 
+              [
+                -113.75270342688106, 
+                22.48005356897227
+              ], 
+              [
+                -113.74712287539928, 
+                22.471448179216317
+              ], 
+              [
+                -113.74192063052529, 
+                22.464866443977815
+              ], 
+              [
+                -113.74116706895794, 
+                22.461806659191495
+              ], 
+              [
+                -113.74645077577547, 
+                22.446465295646163
+              ], 
+              [
+                -113.7529939832164, 
+                22.441644567186284
+              ], 
+              [
+                -113.75438275833082, 
+                22.44147893783267
+              ], 
+              [
+                -113.7580222099814, 
+                22.441542672210414
+              ], 
+              [
+                -113.76153966623413, 
+                22.443290473081916
+              ], 
+              [
+                -113.76504860029817, 
+                22.446245029178574
+              ], 
+              [
+                -113.76729962980663, 
+                22.449121479155902
+              ], 
+              [
+                -113.76768541342065, 
+                22.45037597743285
+              ], 
+              [
+                -113.78305005740451, 
+                22.448367496183984
+              ], 
+              [
+                -113.79549350396698, 
+                22.443973611528055
+              ], 
+              [
+                -113.81101769492363, 
+                22.449298746750358
+              ], 
+              [
+                -113.81650485040348, 
+                22.454695356828793
+              ], 
+              [
+                -113.82357453568996, 
+                22.463872527312798
+              ], 
+              [
+                -113.82719975547153, 
+                22.471779994093993
+              ], 
+              [
+                -113.8278154354174, 
+                22.477057396126998
+              ], 
+              [
+                -113.82454300360669, 
+                22.47909817809299
+              ], 
+              [
+                -113.81357156164182, 
+                22.483666919035766
+              ], 
+              [
+                -113.81156817565777, 
+                22.48302192638599
+              ], 
+              [
+                -113.80845287281747, 
+                22.480715051543353
+              ], 
+              [
+                -113.8067334113918, 
+                22.47805983625174
+              ], 
+              [
+                -113.80308761287718, 
+                22.47507363324082
+              ], 
+              [
+                -113.80104308922867, 
+                22.47498607516765
+              ], 
+              [
+                -113.79959630346755, 
+                22.47587458272424
+              ], 
+              [
+                -113.79954393563548, 
+                22.482864675213698
+              ], 
+              [
+                -113.81142689692714, 
+                22.495976131836674
+              ], 
+              [
+                -113.82102372938968, 
+                22.49938963225012
+              ], 
+              [
+                -113.82595327192969, 
+                22.50941920139957
+              ], 
+              [
+                -113.8278598930629, 
+                22.516291446615142
+              ], 
+              [
+                -113.82915124642537, 
+                22.52304124648117
+              ], 
+              [
+                -113.83450471279525, 
+                22.539478579277947
+              ], 
+              [
+                -113.83532407426836, 
+                22.540410962711597
+              ], 
+              [
+                -113.85631613109331, 
+                22.559489683175517
+              ], 
+              [
+                -113.86694643874493, 
+                22.56090262833655
+              ], 
+              [
+                -113.8723390685273, 
+                22.557935481140234
+              ], 
+              [
+                -113.87518749463737, 
+                22.555337133737975
+              ], 
+              [
+                -113.87905452992497, 
+                22.546510730549
+              ], 
+              [
+                -113.8825288060628, 
+                22.53499645568523
+              ], 
+              [
+                -113.88401515024853, 
+                22.524893869879378
+              ], 
+              [
+                -113.88408365711376, 
+                22.519397247941917
+              ], 
+              [
+                -113.88176674073296, 
+                22.515614023398964
+              ], 
+              [
+                -113.87613234567011, 
+                22.509730089084858
+              ], 
+              [
+                -113.86990251882905, 
+                22.50864964264542
+              ], 
+              [
+                -113.86427482481574, 
+                22.511036394026817
+              ], 
+              [
+                -113.86263480582124, 
+                22.51013041693058
+              ], 
+              [
+                -113.85521199295368, 
+                22.50161170370868
+              ], 
+              [
+                -113.84395806745923, 
+                22.48522013358673
+              ], 
+              [
+                -113.84427976411695, 
+                22.482038816464307
+              ], 
+              [
+                -113.84482114584796, 
+                22.48120476780337
+              ], 
+              [
+                -113.84707314527883, 
+                22.479174901973867
+              ], 
+              [
+                -113.84936136680358, 
+                22.479456778074027
+              ], 
+              [
+                -113.85097699516452, 
+                22.465690803326922
+              ], 
+              [
+                -113.84329173495598, 
+                22.446765714382067
+              ], 
+              [
+                -113.83297270392332, 
+                22.429734181574155
+              ], 
+              [
+                -113.82987304714192, 
+                22.409164218155762
+              ], 
+              [
+                -113.83459873446955, 
+                22.40895889264304
+              ], 
+              [
+                -113.84249662558196, 
+                22.41544231501411
+              ], 
+              [
+                -113.85097030079535, 
+                22.418806653389552
+              ], 
+              [
+                -113.86131442618358, 
+                22.417093425656372
+              ], 
+              [
+                -113.86571167435199, 
+                22.414243476257422
+              ], 
+              [
+                -113.86767803342693, 
+                22.41190964670921
+              ], 
+              [
+                -113.8682918453695, 
+                22.40880840915264
+              ], 
+              [
+                -113.86442637428249, 
+                22.405417444625698
+              ], 
+              [
+                -113.86348570037255, 
+                22.402707504203715
+              ], 
+              [
+                -113.86380760363443, 
+                22.399136693826176
+              ], 
+              [
+                -113.87769070654872, 
+                22.385424375464357
+              ], 
+              [
+                -113.89312808130354, 
+                22.380858987542254
+              ], 
+              [
+                -113.8959495156989, 
+                22.380595375085786
+              ], 
+              [
+                -113.9055349918464, 
+                22.38314044620315
+              ], 
+              [
+                -113.91460741391825, 
+                22.389358058699106
+              ], 
+              [
+                -113.9322800925082, 
+                22.411143538431023
+              ], 
+              [
+                -113.93218897365965, 
+                22.418816554828293
+              ], 
+              [
+                -113.93065204282006, 
+                22.420295046876372
+              ], 
+              [
+                -113.93115024113996, 
+                22.425714660165376
+              ], 
+              [
+                -113.93361412583522, 
+                22.430299660519243
+              ], 
+              [
+                -113.94530273774178, 
+                22.446718135113084
+              ], 
+              [
+                -113.95934903604244, 
+                22.456020274280277
+              ], 
+              [
+                -113.96477684643394, 
+                22.4587900906831
+              ], 
+              [
+                -113.96673513105577, 
+                22.45912080040737
+              ], 
+              [
+                -113.97471329094844, 
+                22.457311780117234
+              ], 
+              [
+                -113.98737463097001, 
+                22.45097689471288
+              ], 
+              [
+                -113.99266408775634, 
+                22.446490677758614
+              ], 
+              [
+                -113.99720990197218, 
+                22.434654374748444
+              ], 
+              [
+                -113.99910526821542, 
+                22.42644341169284
+              ], 
+              [
+                -113.9989505195292, 
+                22.423182490093115
+              ], 
+              [
+                -113.99631076104882, 
+                22.41765265049978
+              ], 
+              [
+                -113.99460416260067, 
+                22.415898574449564
+              ], 
+              [
+                -113.98802318176845, 
+                22.4121922930004
+              ], 
+              [
+                -113.98413298311867, 
+                22.41094718367358
+              ], 
+              [
+                -113.97764127420544, 
+                22.412104769715402
+              ], 
+              [
+                -113.95492422624434, 
+                22.39837256639635
+              ], 
+              [
+                -113.95010182863416, 
+                22.39411925265805
+              ], 
+              [
+                -113.9447186295766, 
+                22.382286612873433
+              ], 
+              [
+                -113.95101693199935, 
+                22.373892479474065
+              ], 
+              [
+                -113.96936455732958, 
+                22.35293694495024
+              ], 
+              [
+                -113.98305973707664, 
+                22.333385178472707
+              ], 
+              [
+                -114.00327977216297, 
+                22.322582283084003
+              ], 
+              [
+                -114.01537320331116, 
+                22.312314421990216
+              ], 
+              [
+                -114.01983340409552, 
+                22.307448905541467
+              ], 
+              [
+                -114.01908113918543, 
+                22.302885279999423
+              ], 
+              [
+                -114.00980363580283, 
+                22.29178530304256
+              ], 
+              [
+                -114.00384568640202, 
+                22.28548721148844
+              ], 
+              [
+                -113.9803175624001, 
+                22.289610215094488
+              ], 
+              [
+                -113.97825345731654, 
+                22.290571650085866
+              ], 
+              [
+                -113.9717305856707, 
+                22.30004655322338
+              ], 
+              [
+                -113.9706653240488, 
+                22.300726379129493
+              ], 
+              [
+                -113.9596646225741, 
+                22.295669833395348
+              ], 
+              [
+                -113.948548674134, 
+                22.283439526478404
+              ], 
+              [
+                -113.93286966683735, 
+                22.264274257512962
+              ], 
+              [
+                -113.93022013507641, 
+                22.25714649658488
+              ], 
+              [
+                -113.93150398770564, 
+                22.251749962022426
+              ], 
+              [
+                -113.94102303624715, 
+                22.250912897378047
+              ], 
+              [
+                -113.94876880172804, 
+                22.253123245468547
+              ], 
+              [
+                -113.95438796882956, 
+                22.264989710464267
+              ], 
+              [
+                -113.96595409116317, 
+                22.2663007938801
+              ], 
+              [
+                -113.96826535149272, 
+                22.26539756947267
+              ], 
+              [
+                -113.97134936057569, 
+                22.262289753425673
+              ], 
+              [
+                -113.98958228520556, 
+                22.261305477868422
+              ], 
+              [
+                -114.00061527030024, 
+                22.271610978261887
+              ], 
+              [
+                -114.0045496455327, 
+                22.282189152923802
+              ], 
+              [
+                -114.00584162111392, 
+                22.28397198541957
+              ], 
+              [
+                -114.00942279240792, 
+                22.285310583118772
+              ], 
+              [
+                -114.01429342813141, 
+                22.283956942883474
+              ], 
+              [
+                -114.01809681853786, 
+                22.28199848750118
+              ], 
+              [
+                -114.02067439523704, 
+                22.27974875947972
+              ], 
+              [
+                -114.02707630952534, 
+                22.268941225319548
+              ], 
+              [
+                -114.02804339821856, 
+                22.266206108961303
+              ], 
+              [
+                -114.0270022714577, 
+                22.2640970349302
+              ], 
+              [
+                -114.02693302802389, 
+                22.238704315476767
+              ], 
+              [
+                -114.03519356740215, 
+                22.238061047837018
+              ], 
+              [
+                -114.03934732942693, 
+                22.236974700892624
+              ], 
+              [
+                -114.05830502493284, 
+                22.219974429657025
+              ], 
+              [
+                -114.06018417218462, 
+                22.21679609008358
+              ], 
+              [
+                -114.06097465519757, 
+                22.214263766731403
+              ], 
+              [
+                -114.08342026523785, 
+                22.219468840957465
+              ], 
+              [
+                -114.10315793589064, 
+                22.22076562138231
+              ], 
+              [
+                -114.11743443716902, 
+                22.21997673030938
+              ], 
+              [
+                -114.13172514694129, 
+                22.2168181327144
+              ], 
+              [
+                -114.15455084957773, 
+                22.213334712249004
+              ], 
+              [
+                -114.15813525146062, 
+                22.213542896078746
+              ], 
+              [
+                -114.18730068472087, 
+                22.20519193598317
+              ], 
+              [
+                -114.20987965838775, 
+                22.193131979454485
+              ], 
+              [
+                -114.22236249285005, 
+                22.185484976063965
+              ], 
+              [
+                -114.227909539083, 
+                22.17895413781985
+              ], 
+              [
+                -114.24393799125795, 
+                22.15756752675997
+              ], 
+              [
+                -114.24510757276524, 
+                22.15456044119485
+              ], 
+              [
+                -114.24431699782637, 
+                22.141041405935407
+              ], 
+              [
+                -114.24228076618758, 
+                22.13619392959267
+              ], 
+              [
+                -114.24218631011284, 
+                22.134546825794356
+              ], 
+              [
+                -114.24529267442344, 
+                22.12676565327525
+              ], 
+              [
+                -114.2594653913447, 
+                22.10978426363776
+              ], 
+              [
+                -114.2687962944958, 
+                22.103334066576643
+              ], 
+              [
+                -114.27920720377824, 
+                22.099706091264125
+              ], 
+              [
+                -114.28453416982323, 
+                22.099403364095586
+              ], 
+              [
+                -114.29989451800776, 
+                22.093765297130435
+              ], 
+              [
+                -114.30446609321282, 
+                22.091814470700278
+              ], 
+              [
+                -114.31362435420762, 
+                22.085672226103526
+              ], 
+              [
+                -114.3400308447085, 
+                22.084675554364157
+              ], 
+              [
+                -114.35199028801726, 
+                22.087244620612125
+              ], 
+              [
+                -114.3669875915414, 
+                22.093194390322655
+              ], 
+              [
+                -114.37640141876976, 
+                22.104501942940356
+              ], 
+              [
+                -114.37710780729273, 
+                22.107445798993712
+              ], 
+              [
+                -114.38675750669678, 
+                22.129696998233605
+              ], 
+              [
+                -114.38875841537653, 
+                22.133433357961174
+              ], 
+              [
+                -114.39614557555132, 
+                22.13920960835998
+              ], 
+              [
+                -114.39897591169269, 
+                22.144422616306986
+              ], 
+              [
+                -114.4027659832585, 
+                22.164153499890695
+              ], 
+              [
+                -114.4027586246105, 
+                22.166113906291123
+              ], 
+              [
+                -114.39966716889575, 
+                22.17523150703768
+              ], 
+              [
+                -114.39666239887961, 
+                22.178571985341524
+              ], 
+              [
+                -114.37615653111294, 
+                22.19151198123058
+              ], 
+              [
+                -114.3590474093099, 
+                22.198488520328468
+              ], 
+              [
+                -114.35440893191131, 
+                22.201161316030483
+              ], 
+              [
+                -114.35116649746858, 
+                22.20404114629245
+              ], 
+              [
+                -114.34720838764768, 
+                22.209351977146394
+              ], 
+              [
+                -114.332719980124, 
+                22.254987599498545
+              ], 
+              [
+                -114.32352708534646, 
+                22.287965126883286
+              ], 
+              [
+                -114.3212327880874, 
+                22.3004941183882
+              ], 
+              [
+                -114.32332459483275, 
+                22.311883290136315
+              ], 
+              [
+                -114.32065061628131, 
+                22.31834064219245
+              ], 
+              [
+                -114.30674146126546, 
+                22.335411767117808
+              ], 
+              [
+                -114.2944787104466, 
+                22.341569349127468
+              ], 
+              [
+                -114.29246436006353, 
+                22.34162885754202
+              ], 
+              [
+                -114.2779237402176, 
+                22.334797628244402
+              ], 
+              [
+                -114.27448607515878, 
+                22.3313929228153
+              ], 
+              [
+                -114.27186000680378, 
+                22.32739298775008
+              ], 
+              [
+                -114.2691522648635, 
+                22.32568739695901
+              ], 
+              [
+                -114.25747896584335, 
+                22.33054747921862
+              ], 
+              [
+                -114.23698717778586, 
+                22.344462906235055
+              ], 
+              [
+                -114.23666608102839, 
+                22.346211158335677
+              ], 
+              [
+                -114.22787154019157, 
+                22.357520636926033
+              ], 
+              [
+                -114.21754380710192, 
+                22.365980670147838
+              ], 
+              [
+                -114.21474341498147, 
+                22.36371622587698
+              ], 
+              [
+                -114.20906646854614, 
+                22.363993365255485
+              ], 
+              [
+                -114.202731742242, 
+                22.365235448712752
+              ], 
+              [
+                -114.19542515286608, 
+                22.368357403638765
+              ], 
+              [
+                -114.18711983843669, 
+                22.375514962351254
+              ], 
+              [
+                -114.1806224493864, 
+                22.38274107695478
+              ], 
+              [
+                -114.17329141693992, 
+                22.393001709010086
+              ], 
+              [
+                -114.16890360657244, 
+                22.40021712038285
+              ], 
+              [
+                -114.16571067081671, 
+                22.403834722714723
+              ], 
+              [
+                -114.16330495727459, 
+                22.404450822185733
+              ], 
+              [
+                -114.15996894258404, 
+                22.403612447285916
+              ], 
+              [
+                -114.15552500499228, 
+                22.404250621751018
+              ], 
+              [
+                -114.14633764044811, 
+                22.408390905395905
+              ], 
+              [
+                -114.14057983988056, 
+                22.41271291667323
+              ], 
+              [
+                -114.1366242402409, 
+                22.414618718105128
+              ], 
+              [
+                -114.12781931098489, 
+                22.412003503589403
+              ], 
+              [
+                -114.10412013911663, 
+                22.412688392684842
+              ], 
+              [
+                -114.08476435752364, 
+                22.41691997647206
+              ], 
+              [
+                -114.07595530703314, 
+                22.417730586127306
+              ], 
+              [
+                -114.0739791360144, 
+                22.41418434994341
+              ], 
+              [
+                -114.07486116092836, 
+                22.406790489663695
+              ], 
+              [
+                -114.07316838678621, 
+                22.40291634287685
+              ], 
+              [
+                -114.0538153170827, 
+                22.388971514821637
+              ], 
+              [
+                -114.04833168165091, 
+                22.38363567826657
+              ], 
+              [
+                -114.04402040276558, 
+                22.37701156942254
+              ], 
+              [
+                -114.0400824836808, 
+                22.36981141000057
+              ], 
+              [
+                -114.03278038731077, 
+                22.353658756649136
+              ], 
+              [
+                -114.03248442935673, 
+                22.349770382747163
+              ], 
+              [
+                -114.0340576006546, 
+                22.345175757942535
+              ], 
+              [
+                -114.0343958771778, 
+                22.333447311475645
+              ], 
+              [
+                -114.03386685094884, 
+                22.33183406670794
+              ], 
+              [
+                -114.03274024966558, 
+                22.331246276861815
+              ], 
+              [
+                -114.02797465218319, 
+                22.33211855563842
+              ], 
+              [
+                -114.01479594034782, 
+                22.341821107673027
+              ], 
+              [
+                -114.01141965211042, 
+                22.34555545512498
+              ], 
+              [
+                -114.01273236294091, 
+                22.35427893750016
+              ], 
+              [
+                -114.01319839001779, 
+                22.35613160438365
+              ], 
+              [
+                -114.01834876396984, 
+                22.362323561595094
+              ], 
+              [
+                -114.02038904568886, 
+                22.3629647811075
+              ], 
+              [
+                -114.02160002902032, 
+                22.36553399632903
+              ], 
+              [
+                -114.0222579804798, 
+                22.377339162995153
+              ], 
+              [
+                -114.0212994251946, 
+                22.380152517799655
+              ], 
+              [
+                -114.01771788223289, 
+                22.382297611718297
+              ], 
+              [
+                -114.01551720028962, 
+                22.382038317643428
+              ], 
+              [
+                -114.00874304411084, 
+                22.376738870481862
+              ], 
+              [
+                -114.0058345583181, 
+                22.37653000434472
+              ], 
+              [
+                -113.9965444838444, 
+                22.38213754334984
+              ], 
+              [
+                -113.99623081982567, 
+                22.38436503732707
+              ], 
+              [
+                -113.9971170227354, 
+                22.38595219712549
+              ], 
+              [
+                -114.01331478689058, 
+                22.40479451288161
+              ], 
+              [
+                -114.01780400091465, 
+                22.428106538166336
+              ], 
+              [
+                -114.02413522411096, 
+                22.449922733445078
+              ], 
+              [
+                -114.02494688485967, 
+                22.449615501850882
+              ], 
+              [
+                -114.02647875133515, 
+                22.452105123933514
+              ], 
+              [
+                -114.02733692161779, 
+                22.456143818625563
+              ], 
+              [
+                -114.02647006206128, 
+                22.459376016842413
+              ], 
+              [
+                -114.01627774934656, 
+                22.469474390228278
+              ], 
+              [
+                -114.00070273109654, 
+                22.480848518884514
+              ], 
+              [
+                -113.99052719918136, 
+                22.486410934187255
+              ], 
+              [
+                -113.97800315540775, 
+                22.49178051961774
+              ], 
+              [
+                -113.97194494850268, 
+                22.490785211387962
+              ], 
+              [
+                -113.97148237862923, 
+                22.489173009224487
+              ], 
+              [
+                -113.96875355702292, 
+                22.48819119866536
+              ], 
+              [
+                -113.95909767343286, 
+                22.488356959415956
+              ], 
+              [
+                -113.94033738633108, 
+                22.490075597135284
+              ], 
+              [
+                -113.92248657553836, 
+                22.497739814389536
+              ], 
+              [
+                -113.91832842388538, 
+                22.5052962174236
+              ], 
+              [
+                -113.9147360554445, 
+                22.51776808991483
+              ], 
+              [
+                -113.91673578859698, 
+                22.52622498594915
+              ], 
+              [
+                -113.91921068352235, 
+                22.528168993686368
+              ], 
+              [
+                -113.92048898575271, 
+                22.52868023636281
+              ], 
+              [
+                -113.92364909222758, 
+                22.52801853522752
+              ], 
+              [
+                -113.92591673083191, 
+                22.52376039134357
+              ], 
+              [
+                -113.92941534047787, 
+                22.52499199415247
+              ], 
+              [
+                -113.93124108973414, 
+                22.52636338787047
+              ], 
+              [
+                -113.93161972098802, 
+                22.526899756231543
+              ], 
+              [
+                -113.93153954073982, 
+                22.529167014236283
+              ], 
+              [
+                -113.92977963493627, 
+                22.537792235511613
+              ], 
+              [
+                -113.92842817361439, 
+                22.539519628689106
+              ], 
+              [
+                -113.89805227397821, 
+                22.55891001986191
+              ], 
+              [
+                -113.89345766587195, 
+                22.559542709747983
+              ], 
+              [
+                -113.88757891048289, 
+                22.566078543606526
+              ], 
+              [
+                -113.88268811902344, 
+                22.574489844579233
+              ], 
+              [
+                -113.87694207125854, 
+                22.587900264153387
+              ], 
+              [
+                -113.87251885123845, 
+                22.609305736073217
+              ], 
+              [
+                -113.86533973006395, 
+                22.627907628072958
+              ], 
+              [
+                -113.86419811423085, 
+                22.628192611132484
+              ], 
+              [
+                -113.85506530515906, 
+                22.63903169534407
+              ], 
+              [
+                -113.84886430026266, 
+                22.646775777183255
+              ], 
+              [
+                -113.84469532454703, 
+                22.65322325688222
+              ], 
+              [
+                -113.82915532605253, 
+                22.684283560605373
+              ], 
+              [
+                -113.8139903026653, 
+                22.712604164350132
+              ], 
+              [
+                -113.80645538752164, 
+                22.73011531667279
+              ], 
+              [
+                -113.79895722839936, 
+                22.745446428606115
+              ], 
+              [
+                -113.78721717690844, 
+                22.757287307123704
+              ], 
+              [
+                -113.77701491829912, 
+                22.766164880319746
+              ], 
+              [
+                -113.76557571056303, 
+                22.784011185354235
+              ], 
+              [
+                -113.76356909576913, 
+                22.788940084538847
+              ], 
+              [
+                -113.73985383153268, 
+                22.809330230284257
+              ], 
+              [
+                -113.72407813840803, 
+                22.82677952487806
+              ], 
+              [
+                -113.71638509111845, 
+                22.842743213532582
+              ], 
+              [
+                -113.70770115801547, 
+                22.854920915144955
+              ], 
+              [
+                -113.70585314110545, 
+                22.85654675428806
+              ], 
+              [
+                -113.69779358027148, 
+                22.86009360691795
+              ], 
+              [
+                -113.68330292894896, 
+                22.865209575217094
+              ], 
+              [
+                -113.66668254062711, 
+                22.87453286681156
+              ], 
+              [
+                -113.65463432457173, 
+                22.884469585912665
+              ], 
+              [
+                -113.62277866897918, 
+                22.89672502519869
+              ], 
+              [
+                -113.60648263612676, 
+                22.90412206831524
+              ], 
+              [
+                -113.58579511211713, 
+                22.915120739462143
+              ], 
+              [
+                -113.5829547422969, 
+                22.913717453825196
+              ], 
+              [
+                -113.58214751368864, 
+                22.911756194968977
+              ], 
+              [
+                -113.57715022738589, 
+                22.90483887498745
+              ], 
+              [
+                -113.56840999877335, 
+                22.90073608499185
+              ], 
+              [
+                -113.56403009021847, 
+                22.903324394360286
+              ], 
+              [
+                -113.53619127828446, 
+                22.908563680705555
+              ], 
+              [
+                -113.5302945235231, 
+                22.90342768998025
+              ], 
+              [
+                -113.52387892236366, 
+                22.90587683442534
+              ], 
+              [
+                -113.51931868717791, 
+                22.910802700728688
+              ], 
+              [
+                -113.51861835306669, 
+                22.913206722555703
+              ], 
+              [
+                -113.49108566077062, 
+                22.935614282733766
+              ], 
+              [
+                -113.48504634892628, 
+                22.937605694119828
+              ], 
+              [
+                -113.48221320364277, 
+                22.935557987975148
+              ], 
+              [
+                -113.46700536144137, 
+                22.91779737984173
+              ], 
+              [
+                -113.46645832647937, 
+                22.91647756224616
+              ], 
+              [
+                -113.46522072969198, 
+                22.907156684735885
+              ], 
+              [
+                -113.46471065772522, 
+                22.897892759975193
+              ], 
+              [
+                -113.46922398502417, 
+                22.89960043366298
+              ], 
+              [
+                -113.47283343378976, 
+                22.89931555481954
+              ], 
+              [
+                -113.48982411631236, 
+                22.88957448941134
+              ], 
+              [
+                -113.49300772711675, 
+                22.86668522168236
+              ], 
+              [
+                -113.49039077609397, 
+                22.858651925940826
+              ], 
+              [
+                -113.48809385295, 
+                22.8531745820825
+              ], 
+              [
+                -113.4849586416378, 
+                22.849778184846578
+              ], 
+              [
+                -113.44855655865769, 
+                22.81918462239576
+              ], 
+              [
+                -113.43998204783418, 
+                22.829298247756196
+              ], 
+              [
+                -113.43077079403845, 
+                22.826150758527312
+              ], 
+              [
+                -113.41351273548803, 
+                22.81731165173386
+              ], 
+              [
+                -113.41180653339882, 
+                22.8174973832533
+              ], 
+              [
+                -113.41093032941298, 
+                22.820730149286653
+              ], 
+              [
+                -113.41166834962533, 
+                22.825238688083353
+              ], 
+              [
+                -113.41396405560472, 
+                22.82754798832741
+              ], 
+              [
+                -113.41755732061358, 
+                22.82980995367276
+              ], 
+              [
+                -113.42261638036612, 
+                22.830802188431157
+              ], 
+              [
+                -113.43824733105632, 
+                22.83996648202672
+              ], 
+              [
+                -113.44033334098667, 
+                22.8427098132715
+              ], 
+              [
+                -113.44868935067763, 
+                22.87552733062132
+              ], 
+              [
+                -113.44108798683062, 
+                22.882588777429653
+              ], 
+              [
+                -113.43145720069067, 
+                22.879930477362997
+              ], 
+              [
+                -113.41679672817303, 
+                22.880117068804964
+              ], 
+              [
+                -113.39880820973082, 
+                22.885267672289373
+              ], 
+              [
+                -113.39575362577486, 
+                22.88751071243881
+              ], 
+              [
+                -113.39158144659734, 
+                22.889218361881653
+              ], 
+              [
+                -113.3856218883291, 
+                22.889847689973834
+              ], 
+              [
+                -113.38184618850569, 
+                22.88796407993091
+              ], 
+              [
+                -113.3759293533821, 
+                22.877984020349853
+              ], 
+              [
+                -113.37482543600967, 
+                22.869344947105176
+              ], 
+              [
+                -113.36229176142214, 
+                22.855803066854225
+              ], 
+              [
+                -113.34985076907722, 
+                22.860851567357305
+              ], 
+              [
+                -113.33785100181001, 
+                22.854045175476067
+              ], 
+              [
+                -113.32482958540568, 
+                22.850061839447097
+              ], 
+              [
+                -113.32079011841918, 
+                22.850808958914477
+              ], 
+              [
+                -113.31842523108276, 
+                22.85579592341885
+              ], 
+              [
+                -113.32017527188768, 
+                22.859552925348073
+              ], 
+              [
+                -113.32759435643418, 
+                22.866669734312218
+              ], 
+              [
+                -113.33404097416151, 
+                22.87170077381849
+              ], 
+              [
+                -113.3349242889949, 
+                22.8736544704145
+              ], 
+              [
+                -113.32481548917185, 
+                22.881123815556226
+              ], 
+              [
+                -113.32696793292065, 
+                22.892643954053977
+              ], 
+              [
+                -113.34069483329391, 
+                22.895754729880373
+              ], 
+              [
+                -113.35585528642123, 
+                22.903652439751056
+              ], 
+              [
+                -113.3671937517467, 
+                22.910981037471682
+              ], 
+              [
+                -113.38453305002317, 
+                22.915739089813737
+              ], 
+              [
+                -113.39776754702976, 
+                22.921063681753296
+              ], 
+              [
+                -113.39883432182752, 
+                22.9304574701842
+              ], 
+              [
+                -113.3982329773153, 
+                22.936678825378376
+              ], 
+              [
+                -113.39878310765323, 
+                22.941023585674994
+              ], 
+              [
+                -113.39978347727245, 
+                22.942601532436008
+              ], 
+              [
+                -113.40132941218424, 
+                22.943971031449696
+              ], 
+              [
+                -113.4080219124791, 
+                22.946446020677307
+              ], 
+              [
+                -113.40958073855452, 
+                22.94379303944061
+              ], 
+              [
+                -113.41017397718832, 
+                22.94241985922797
+              ], 
+              [
+                -113.41084695235602, 
+                22.941206088096774
+              ], 
+              [
+                -113.41131148837464, 
+                22.940605319966462
+              ], 
+              [
+                -113.41223176281606, 
+                22.939844180149674
+              ], 
+              [
+                -113.41306411146536, 
+                22.94084556489926
+              ], 
+              [
+                -113.41072008911702, 
+                22.94944728199061
+              ], 
+              [
+                -113.396915503401, 
+                22.98580693415627
+              ], 
+              [
+                -113.39594954906262, 
+                22.989714144639414
+              ], 
+              [
+                -113.39155983648226, 
+                23.009294903331966
+              ], 
+              [
+                -113.38711411209691, 
+                23.042149218335837
+              ], 
+              [
+                -113.38636632253585, 
+                23.059933742634858
+              ], 
+              [
+                -113.38466089482664, 
+                23.069377571852183
+              ], 
+              [
+                -113.38054311844161, 
+                23.08323977573963
+              ], 
+              [
+                -113.37734212009924, 
+                23.089200201546003
+              ], 
+              [
+                -113.3722782899817, 
+                23.095091878284236
+              ], 
+              [
+                -113.3634142173338, 
+                23.103411080164467
+              ], 
+              [
+                -113.35317847037028, 
+                23.11888664146043
+              ], 
+              [
+                -113.35053320324754, 
+                23.124518798623257
+              ], 
+              [
+                -113.34874432735822, 
+                23.13160840866815
+              ], 
+              [
+                -113.33876828566385, 
+                23.146073017217837
+              ], 
+              [
+                -113.32420564402058, 
+                23.15338632217069
+              ], 
+              [
+                -113.30701796793912, 
+                23.170592817791743
+              ], 
+              [
+                -113.3019645593144, 
+                23.176878502145016
+              ], 
+              [
+                -113.29427211155549, 
+                23.18755603799469
+              ], 
+              [
+                -113.2731580825334, 
+                23.223547350133096
+              ], 
+              [
+                -113.27052148975423, 
+                23.226304259005612
+              ], 
+              [
+                -113.23113846246595, 
+                23.255168304277955
+              ], 
+              [
+                -113.20909986423663, 
+                23.272314573617514
+              ], 
+              [
+                -113.18727806929564, 
+                23.282719966653648
+              ], 
+              [
+                -113.17172009215543, 
+                23.292593492734046
+              ], 
+              [
+                -113.16197247561351, 
+                23.300394669155967
+              ], 
+              [
+                -113.15033559809865, 
+                23.31766859254445
+              ], 
+              [
+                -113.15497573128027, 
+                23.322811350326045
+              ], 
+              [
+                -113.15156996079324, 
+                23.3269561117474
+              ], 
+              [
+                -113.12923969921006, 
+                23.34936529152318
+              ], 
+              [
+                -113.11875516021185, 
+                23.359437134234685
+              ], 
+              [
+                -113.11580441959164, 
+                23.361129828868187
+              ], 
+              [
+                -113.10443070544504, 
+                23.37347138719444
+              ], 
+              [
+                -113.10037717145833, 
+                23.378407581590082
+              ], 
+              [
+                -113.08879966136725, 
+                23.39727536743212
+              ], 
+              [
+                -113.08817002617504, 
+                23.396710693329272
+              ], 
+              [
+                -113.08721084570202, 
+                23.39388668202535
+              ], 
+              [
+                -113.08113311697409, 
+                23.387597270169024
+              ], 
+              [
+                -113.07455615682055, 
+                23.382522773027702
+              ], 
+              [
+                -113.06960033081674, 
+                23.379108542701854
+              ], 
+              [
+                -113.06960009097989, 
+                23.379108582463527
+              ], 
+              [
+                -113.06297715711683, 
+                23.375910884923577
+              ], 
+              [
+                -113.05891959144448, 
+                23.374691806735107
+              ], 
+              [
+                -113.04119513986359, 
+                23.37206869582047
+              ], 
+              [
+                -113.01231614432143, 
+                23.380812294258075
+              ], 
+              [
+                -113.01002803434622, 
+                23.392407297496508
+              ], 
+              [
+                -113.01218317818007, 
+                23.40321444350165
+              ], 
+              [
+                -113.01401717078508, 
+                23.407787126046895
+              ], 
+              [
+                -113.01890810252374, 
+                23.411692687687587
+              ], 
+              [
+                -113.03351305700804, 
+                23.442290039489045
+              ], 
+              [
+                -113.03379331224417, 
+                23.471046625046295
+              ], 
+              [
+                -113.03305810904726, 
+                23.492778813591386
+              ], 
+              [
+                -113.02993571818811, 
+                23.505895210446425
+              ], 
+              [
+                -113.010016205844, 
+                23.555901726752225
+              ], 
+              [
+                -112.99898828361839, 
+                23.581872976667263
+              ], 
+              [
+                -112.98518091512372, 
+                23.609511339879557
+              ], 
+              [
+                -112.9809510866232, 
+                23.614614752124478
+              ], 
+              [
+                -112.95527946157696, 
+                23.641001480598376
+              ], 
+              [
+                -112.93830714650753, 
+                23.654951268538905
+              ], 
+              [
+                -112.92203008909682, 
+                23.675672576818563
+              ], 
+              [
+                -112.92077094583492, 
+                23.678029541713087
+              ], 
+              [
+                -112.91861311768534, 
+                23.67967157322632
+              ], 
+              [
+                -112.91491112019108, 
+                23.68036450857413
+              ], 
+              [
+                -112.91028116777154, 
+                23.686460351483092
+              ], 
+              [
+                -112.9076421166551, 
+                23.69293627844045
+              ], 
+              [
+                -112.90162439089039, 
+                23.71053299608962
+              ], 
+              [
+                -112.89911525288207, 
+                23.721638486301043
+              ], 
+              [
+                -112.89815237765463, 
+                23.723765863744177
+              ], 
+              [
+                -112.86959931332474, 
+                23.759888942424336
+              ], 
+              [
+                -112.86683452433734, 
+                23.762673219765123
+              ], 
+              [
+                -112.85211084789306, 
+                23.773033181464232
+              ], 
+              [
+                -112.84627126335678, 
+                23.774289231326627
+              ], 
+              [
+                -112.8471278025042, 
+                23.771244921220074
+              ], 
+              [
+                -112.84431762112729, 
+                23.762332675582243
+              ], 
+              [
+                -112.83369165260486, 
+                23.746656776625418
+              ], 
+              [
+                -112.82457961753921, 
+                23.742830631045084
+              ], 
+              [
+                -112.81778494386754, 
+                23.743342540289163
+              ], 
+              [
+                -112.81697359282191, 
+                23.756369543933722
+              ], 
+              [
+                -112.81778548337967, 
+                23.76008388921181
+              ], 
+              [
+                -112.82657197927631, 
+                23.78644795094894
+              ], 
+              [
+                -112.83152170040348, 
+                23.79768886844316
+              ], 
+              [
+                -112.83374961827194, 
+                23.79944331681484
+              ], 
+              [
+                -112.84448960707779, 
+                23.798562268346533
+              ], 
+              [
+                -112.85160947746878, 
+                23.795010135594726
+              ], 
+              [
+                -112.85336020740002, 
+                23.795239131736412
+              ], 
+              [
+                -112.86044952741472, 
+                23.80752034380201
+              ], 
+              [
+                -112.86603063954112, 
+                23.845010574395463
+              ], 
+              [
+                -112.862846780057, 
+                23.86962121780171
+              ], 
+              [
+                -112.86451943849575, 
+                23.914439271864037
+              ], 
+              [
+                -112.86827932654258, 
+                23.956910343836743
+              ], 
+              [
+                -112.87192035910456, 
+                23.990950929198423
+              ], 
+              [
+                -112.87314058400158, 
+                24.016322643314574
+              ], 
+              [
+                -112.87324144747865, 
+                24.033066745219767
+              ], 
+              [
+                -112.87294241694494, 
+                24.034902810301997
+              ], 
+              [
+                -112.86906109660761, 
+                24.045174093212843
+              ], 
+              [
+                -112.8647084014911, 
+                24.051552903928613
+              ], 
+              [
+                -112.86056262494006, 
+                24.053545975935936
+              ], 
+              [
+                -112.85568661449082, 
+                24.054038802836743
+              ], 
+              [
+                -112.83429249233524, 
+                24.06321623183937
+              ], 
+              [
+                -112.83197700832736, 
+                24.068919497318635
+              ], 
+              [
+                -112.82788648481022, 
+                24.085893628379186
+              ], 
+              [
+                -112.83247234022052, 
+                24.091439586417177
+              ], 
+              [
+                -112.83418087070122, 
+                24.09086761659606
+              ], 
+              [
+                -112.8372384535871, 
+                24.088415225642805
+              ], 
+              [
+                -112.84013895869242, 
+                24.080255716134555
+              ], 
+              [
+                -112.84366623089291, 
+                24.07937258417836
+              ], 
+              [
+                -112.84882221298949, 
+                24.081969470115585
+              ], 
+              [
+                -112.86890675355674, 
+                24.095620955042513
+              ], 
+              [
+                -112.87636745412556, 
+                24.101914709214146
+              ], 
+              [
+                -112.87816738688042, 
+                24.104248489041964
+              ], 
+              [
+                -112.88256532908085, 
+                24.11578509561893
+              ], 
+              [
+                -112.88503279463627, 
+                24.128023139884647
+              ], 
+              [
+                -112.88554685453354, 
+                24.15656294561651
+              ], 
+              [
+                -112.88483813506885, 
+                24.167464389850664
+              ], 
+              [
+                -112.88142583935621, 
+                24.194979610434018
+              ], 
+              [
+                -112.88068899566431, 
+                24.199376249816087
+              ], 
+              [
+                -112.87758944232155, 
+                24.20883511687802
+              ], 
+              [
+                -112.87604183649418, 
+                24.21190150692177
+              ], 
+              [
+                -112.86534049761465, 
+                24.22405398628827
+              ], 
+              [
+                -112.86118631075607, 
+                24.223428561507365
+              ], 
+              [
+                -112.8570060069739, 
+                24.22864713875113
+              ], 
+              [
+                -112.85215593670918, 
+                24.237828076850185
+              ], 
+              [
+                -112.84940778899326, 
+                24.24469216176875
+              ], 
+              [
+                -112.8450867249123, 
+                24.262035283875857
+              ], 
+              [
+                -112.84273624303947, 
+                24.266961299121004
+              ], 
+              [
+                -112.84003444383997, 
+                24.272626657969322
+              ], 
+              [
+                -112.82686227766102, 
+                24.293700105125367
+              ], 
+              [
+                -112.80794781481829, 
+                24.31961814677489
+              ], 
+              [
+                -112.80588301858388, 
+                24.328468679934964
+              ], 
+              [
+                -112.80167841453952, 
+                24.37207720318911
+              ], 
+              [
+                -112.80232291902418, 
+                24.381216670164587
+              ], 
+              [
+                -112.80259029469536, 
+                24.382335431119916
+              ], 
+              [
+                -112.80508056627612, 
+                24.386149999545584
+              ], 
+              [
+                -112.8075823087315, 
+                24.392783248777327
+              ], 
+              [
+                -112.80783725580226, 
+                24.398568423872728
+              ], 
+              [
+                -112.80291166873508, 
+                24.40548992500776
+              ], 
+              [
+                -112.80199499038456, 
+                24.406778890034573
+              ], 
+              [
+                -112.79990620251212, 
+                24.413303967090112
+              ], 
+              [
+                -112.80528893575816, 
+                24.429622236152316
+              ], 
+              [
+                -112.81883932010899, 
+                24.434303634998468
+              ], 
+              [
+                -112.82013801261357, 
+                24.429226528987662
+              ], 
+              [
+                -112.81759017003051, 
+                24.414397869274737
+              ], 
+              [
+                -112.82216259031325, 
+                24.401520936772698
+              ], 
+              [
+                -112.8221657612708, 
+                24.40151658684653
+              ], 
+              [
+                -112.8309323597864, 
+                24.390359807795306
+              ], 
+              [
+                -112.84578149671397, 
+                24.37830984580972
+              ], 
+              [
+                -112.84815643815908, 
+                24.37659852089236
+              ], 
+              [
+                -112.85121013790867, 
+                24.37439915604677
+              ], 
+              [
+                -112.85672816169003, 
+                24.371522791619366
+              ], 
+              [
+                -112.86073421855352, 
+                24.369900294254673
+              ], 
+              [
+                -112.8643807070464, 
+                24.36945610694913
+              ], 
+              [
+                -112.88052338337656, 
+                24.357863268179127
+              ], 
+              [
+                -112.89567601781248, 
+                24.342586562858443
+              ], 
+              [
+                -112.90770444297999, 
+                24.338018231894637
+              ], 
+              [
+                -112.91767228628, 
+                24.329965579470695
+              ], 
+              [
+                -112.91843886616373, 
+                24.32790259840754
+              ], 
+              [
+                -112.91888209150336, 
+                24.324259556573654
+              ], 
+              [
+                -112.92022249336961, 
+                24.32098821535634
+              ], 
+              [
+                -112.95152200662338, 
+                24.303883311406512
+              ], 
+              [
+                -112.95674512426443, 
+                24.29978084927667
+              ], 
+              [
+                -112.96307159831674, 
+                24.293358734921362
+              ], 
+              [
+                -112.97223365568257, 
+                24.284069272546713
+              ], 
+              [
+                -112.98356536048294, 
+                24.27394571331802
+              ], 
+              [
+                -113.0140075454512, 
+                24.25202040812047
+              ], 
+              [
+                -113.02145378448984, 
+                24.246671294863297
+              ], 
+              [
+                -113.03529862495782, 
+                24.23810530183549
+              ], 
+              [
+                -113.04367645685615, 
+                24.233816890075403
+              ], 
+              [
+                -113.05505097116911, 
+                24.231258286935944
+              ], 
+              [
+                -113.06064361258021, 
+                24.231300888209287
+              ], 
+              [
+                -113.06521078266954, 
+                24.232438483109302
+              ], 
+              [
+                -113.07569088159711, 
+                24.237035657767127
+              ], 
+              [
+                -113.082032292523, 
+                24.24050948890871
+              ], 
+              [
+                -113.09025225409795, 
+                24.246962442756757
+              ], 
+              [
+                -113.09186054243848, 
+                24.249264941520895
+              ], 
+              [
+                -113.09236040128204, 
+                24.251041513285518
+              ], 
+              [
+                -113.0922252551987, 
+                24.253774334806437
+              ], 
+              [
+                -113.09368691104598, 
+                24.259057801892308
+              ], 
+              [
+                -113.09843345270284, 
+                24.270858066168266
+              ], 
+              [
+                -113.1013985758942, 
+                24.27696389496193
+              ], 
+              [
+                -113.10887239574772, 
+                24.28526904115834
+              ], 
+              [
+                -113.11534473696454, 
+                24.290357252800856
+              ], 
+              [
+                -113.12139404151212, 
+                24.293416808096215
+              ], 
+              [
+                -113.12915445966179, 
+                24.295470242399055
+              ], 
+              [
+                -113.14277360927726, 
+                24.296092389639966
+              ], 
+              [
+                -113.14914181612498, 
+                24.2975206397619
+              ], 
+              [
+                -113.15227589826564, 
+                24.29912628622405
+              ], 
+              [
+                -113.15631193050875, 
+                24.303062841620886
+              ], 
+              [
+                -113.15702379026179, 
+                24.30502211788866
+              ], 
+              [
+                -113.15756698850791, 
+                24.308826542654252
+              ], 
+              [
+                -113.1582219613541, 
+                24.32111125440832
+              ], 
+              [
+                -113.15965413010768, 
+                24.32977730752907
+              ], 
+              [
+                -113.16236125993375, 
+                24.33639969713273
+              ], 
+              [
+                -113.17190433303247, 
+                24.346759372307588
+              ], 
+              [
+                -113.17748665065491, 
+                24.350454381200564
+              ], 
+              [
+                -113.19674608736169, 
+                24.329195563275988
+              ], 
+              [
+                -113.19942203909672, 
+                24.32817685315588
+              ], 
+              [
+                -113.20324102661898, 
+                24.32890944729491
+              ], 
+              [
+                -113.20759293358219, 
+                24.323587557480952
+              ], 
+              [
+                -113.20865656576403, 
+                24.299937643895543
+              ], 
+              [
+                -113.20846098118739, 
+                24.297230693465707
+              ], 
+              [
+                -113.20807511441372, 
+                24.295550305476198
+              ], 
+              [
+                -113.20517252700806, 
+                24.28965572915439
+              ], 
+              [
+                -113.20240921135303, 
+                24.284204198171075
+              ], 
+              [
+                -113.20095254730741, 
+                24.28234991604021
+              ], 
+              [
+                -113.200569984838, 
+                24.2781712110805
+              ], 
+              [
+                -113.2023221528401, 
+                24.269731792780036
+              ], 
+              [
+                -113.20482912280849, 
+                24.26233164661531
+              ], 
+              [
+                -113.20699223702769, 
+                24.259635754806542
+              ], 
+              [
+                -113.21016434309027, 
+                24.25755058297309
+              ], 
+              [
+                -113.21486801922272, 
+                24.25596620441697
+              ], 
+              [
+                -113.21570782073448, 
+                24.24308112639211
+              ], 
+              [
+                -113.20259209076416, 
+                24.212730559507953
+              ], 
+              [
+                -113.18291060706346, 
+                24.1793983149135
+              ], 
+              [
+                -113.16781523550702, 
+                24.15806047953801
+              ], 
+              [
+                -113.16264898446651, 
+                24.151761606323074
+              ], 
+              [
+                -113.17773191070232, 
+                24.1142044551925
+              ], 
+              [
+                -113.18501119468213, 
+                24.10788533307906
+              ], 
+              [
+                -113.1961315149874, 
+                24.10306745195575
+              ], 
+              [
+                -113.1995829105602, 
+                24.102226011829455
+              ], 
+              [
+                -113.21123758542807, 
+                24.103551737602075
+              ], 
+              [
+                -113.23641623246813, 
+                24.109187757969615
+              ], 
+              [
+                -113.2408437653803, 
+                24.1111468634762
+              ], 
+              [
+                -113.24645736268505, 
+                24.120169694173132
+              ], 
+              [
+                -113.2797517723589, 
+                24.167190900480232
+              ], 
+              [
+                -113.29728328140176, 
+                24.19423476759293
+              ], 
+              [
+                -113.33257596814447, 
+                24.24294865864366
+              ], 
+              [
+                -113.34225652569143, 
+                24.254525279083314
+              ], 
+              [
+                -113.35870256997069, 
+                24.268607019295096
+              ], 
+              [
+                -113.37235193461055, 
+                24.27899549195954
+              ], 
+              [
+                -113.38004254569941, 
+                24.282195500444526
+              ], 
+              [
+                -113.38581773276759, 
+                24.283107587727784
+              ], 
+              [
+                -113.39153532648423, 
+                24.283782581134243
+              ], 
+              [
+                -113.40632813761512, 
+                24.283611418350837
+              ], 
+              [
+                -113.39973703575649, 
+                24.3031813622746
+              ], 
+              [
+                -113.39739661705384, 
+                24.30620159130952
+              ], 
+              [
+                -113.3974841661511, 
+                24.310858616892524
+              ], 
+              [
+                -113.40016518605658, 
+                24.31612634827281
+              ], 
+              [
+                -113.40258196515984, 
+                24.319766339182095
+              ], 
+              [
+                -113.40645339198429, 
+                24.32418906862244
+              ], 
+              [
+                -113.41298153224095, 
+                24.326547413502997
+              ], 
+              [
+                -113.41638871269028, 
+                24.32603827639867
+              ], 
+              [
+                -113.42365503726793, 
+                24.321619207147904
+              ], 
+              [
+                -113.42820499576051, 
+                24.319941936198436
+              ], 
+              [
+                -113.43100989205776, 
+                24.320859409438732
+              ], 
+              [
+                -113.43304949673345, 
+                24.319818964115623
+              ], 
+              [
+                -113.43231454422755, 
+                24.28474051156412
+              ], 
+              [
+                -113.4453206129564, 
+                24.28554682402958
+              ], 
+              [
+                -113.43895032030571, 
+                24.26886380872993
+              ], 
+              [
+                -113.44066972392551, 
+                24.259990100956333
+              ], 
+              [
+                -113.46217692035903, 
+                24.244778204677672
+              ], 
+              [
+                -113.48709989129985, 
+                24.273229742765924
+              ], 
+              [
+                -113.48633509935856, 
+                24.283734854389216
+              ], 
+              [
+                -113.50322175511252, 
+                24.289050690817366
+              ], 
+              [
+                -113.51028002151288, 
+                24.27574806429761
+              ], 
+              [
+                -113.52378400122178, 
+                24.27628423830279
+              ], 
+              [
+                -113.52829021194421, 
+                24.29946870786729
+              ], 
+              [
+                -113.5450643706021, 
+                24.289703438679975
+              ], 
+              [
+                -113.5603747409049, 
+                24.30811884652395
+              ], 
+              [
+                -113.56934633254261, 
+                24.311054388575187
+              ], 
+              [
+                -113.55705214659274, 
+                24.33178228407056
+              ], 
+              [
+                -113.57628573094321, 
+                24.36471337179838
+              ], 
+              [
+                -113.609366837967, 
+                24.33929491581437
+              ], 
+              [
+                -113.64282246249206, 
+                24.305867535396093
+              ], 
+              [
+                -113.66456810328712, 
+                24.277595551926336
+              ], 
+              [
+                -113.67753139405472, 
+                24.23511211989936
+              ], 
+              [
+                -113.6860320488875, 
+                24.261648936858744
+              ], 
+              [
+                -113.71736710986782, 
+                24.245392784487695
+              ], 
+              [
+                -113.72448083353048, 
+                24.23848251768421
+              ], 
+              [
+                -113.73670862757564, 
+                24.22662140717801
+              ], 
+              [
+                -113.75498084381957, 
+                24.20893617079709
+              ], 
+              [
+                -113.78741678856251, 
+                24.18307263667338
+              ], 
+              [
+                -113.78863544463897, 
+                24.17942171066357
+              ], 
+              [
+                -113.79312919751366, 
+                24.16597108126527
+              ], 
+              [
+                -113.79033593032193, 
+                24.1467416128206
+              ], 
+              [
+                -113.82248458194523, 
+                24.12723635500778
+              ], 
+              [
+                -113.82779681119897, 
+                24.116276892782032
+              ], 
+              [
+                -113.84472778333995, 
+                24.110167792628083
+              ], 
+              [
+                -113.85533011980363, 
+                24.091104685899786
+              ], 
+              [
+                -113.87044678640694, 
+                24.083253303167087
+              ], 
+              [
+                -113.87671826342165, 
+                24.10469536122428
+              ], 
+              [
+                -113.90325442055635, 
+                24.11943098768875
+              ], 
+              [
+                -113.94711578287647, 
+                24.106441616595912
+              ], 
+              [
+                -113.97305662309375, 
+                24.11638465020319
+              ], 
+              [
+                -113.93479699295483, 
+                24.139753746923088
+              ], 
+              [
+                -113.92000455737563, 
+                24.125936848852557
+              ], 
+              [
+                -113.90640919404781, 
+                24.13248245682419
+              ], 
+              [
+                -113.90486618599522, 
+                24.152577614381627
+              ], 
+              [
+                -113.88842611407864, 
+                24.18560975458784
+              ], 
+              [
+                -113.88867624515518, 
+                24.20972615065366
+              ], 
+              [
+                -113.9037602467904, 
+                24.274881097235408
+              ], 
+              [
+                -113.91954150046655, 
+                24.316696093513773
+              ], 
+              [
+                -113.95984697576739, 
+                24.353315119973384
+              ], 
+              [
+                -113.9810941309658, 
+                24.399179733387083
+              ], 
+              [
+                -113.97664156031952, 
+                24.41753617273607
+              ], 
+              [
+                -113.95774381061138, 
+                24.406404055485755
+              ], 
+              [
+                -113.9666294948191, 
+                24.45123916140607
+              ], 
+              [
+                -113.95629330943733, 
+                24.46441699839967
+              ], 
+              [
+                -113.94354461499853, 
+                24.48300148168567
+              ], 
+              [
+                -113.94159128249981, 
+                24.48526933413836
+              ], 
+              [
+                -113.93547322463556, 
+                24.504727186793243
+              ], 
+              [
+                -113.92366870182741, 
+                24.505569814357848
+              ], 
+              [
+                -113.91704655547073, 
+                24.517549120573115
+              ], 
+              [
+                -113.9335029115012, 
+                24.54661740057116
+              ], 
+              [
+                -113.9605254890412, 
+                24.58514677966703
+              ], 
+              [
+                -113.97876747574307, 
+                24.627755703941432
+              ], 
+              [
+                -114.00751674701115, 
+                24.665508943906705
+              ], 
+              [
+                -114.02727416061349, 
+                24.68746352302861
+              ], 
+              [
+                -114.03273985055478, 
+                24.716607520167937
+              ], 
+              [
+                -114.03500740724985, 
+                24.72065290606187
+              ], 
+              [
+                -114.03843468925943, 
+                24.725595609589853
+              ], 
+              [
+                -114.04345270707874, 
+                24.726094422195615
+              ], 
+              [
+                -114.05077541993175, 
+                24.73307500677624
+              ], 
+              [
+                -114.05596881258182, 
+                24.740861251300018
+              ], 
+              [
+                -114.06076573639298, 
+                24.74959953249344
+              ], 
+              [
+                -114.06738011562064, 
+                24.765007389556914
+              ], 
+              [
+                -114.06993754418254, 
+                24.77456416808159
+              ], 
+              [
+                -114.0705806346473, 
+                24.781051727059726
+              ], 
+              [
+                -114.07021898085915, 
+                24.78294128591828
+              ], 
+              [
+                -114.06801723344853, 
+                24.78588969782775
+              ], 
+              [
+                -114.06489798564354, 
+                24.793428818440585
+              ], 
+              [
+                -114.06319313678188, 
+                24.809135308503635
+              ], 
+              [
+                -114.06408361555242, 
+                24.812268198323757
+              ], 
+              [
+                -114.0712434403972, 
+                24.819753615918877
+              ], 
+              [
+                -114.07663743385702, 
+                24.821926679685077
+              ], 
+              [
+                -114.07949878838222, 
+                24.820921594984657
+              ], 
+              [
+                -114.08040027270769, 
+                24.818056811956094
+              ], 
+              [
+                -114.07971147829754, 
+                24.813751535028718
+              ], 
+              [
+                -114.07963733091731, 
+                24.81122575230198
+              ], 
+              [
+                -114.0840422310494, 
+                24.794004174155994
+              ], 
+              [
+                -114.08523347800994, 
+                24.79125634419212
+              ], 
+              [
+                -114.0865948910396, 
+                24.789032494976677
+              ], 
+              [
+                -114.08985488440328, 
+                24.78654483449541
+              ], 
+              [
+                -114.0908865038398, 
+                24.786610399340027
+              ], 
+              [
+                -114.10161498144522, 
+                24.80388208860836
+              ], 
+              [
+                -114.1052165945466, 
+                24.813629673152363
+              ], 
+              [
+                -114.1056208679514, 
+                24.815660262288944
+              ], 
+              [
+                -114.10571582961654, 
+                24.818067280700724
+              ], 
+              [
+                -114.11305139104363, 
+                24.820932020968645
+              ], 
+              [
+                -114.1183190034423, 
+                24.819854900566444
+              ], 
+              [
+                -114.12212948669863, 
+                24.815289970991493
+              ], 
+              [
+                -114.1222898591664, 
+                24.812479807911508
+              ], 
+              [
+                -114.12469763038989, 
+                24.8040513989797
+              ], 
+              [
+                -114.12721572240743, 
+                24.800280401939844
+              ], 
+              [
+                -114.12858512030766, 
+                24.7965908509332
+              ], 
+              [
+                -114.12951376250581, 
+                24.788929039979376
+              ], 
+              [
+                -114.1293543413495, 
+                24.783737506430633
+              ], 
+              [
+                -114.12519161020899, 
+                24.77335514905716
+              ], 
+              [
+                -114.12205849590276, 
+                24.755036782054244
+              ], 
+              [
+                -114.12541141809827, 
+                24.731998013280634
+              ], 
+              [
+                -114.13080491485472, 
+                24.727155665365615
+              ], 
+              [
+                -114.1424342634077, 
+                24.71989641888413
+              ], 
+              [
+                -114.15038702893375, 
+                24.71652241072534
+              ], 
+              [
+                -114.15526798795116, 
+                24.716546731197624
+              ], 
+              [
+                -114.16417522357396, 
+                24.7186489250983
+              ], 
+              [
+                -114.17644081753527, 
+                24.715920883392354
+              ], 
+              [
+                -114.17636974617511, 
+                24.712406822847015
+              ], 
+              [
+                -114.17793625596008, 
+                24.709374662702366
+              ], 
+              [
+                -114.18023985818425, 
+                24.706960283453824
+              ], 
+              [
+                -114.1945154891491, 
+                24.696663372438014
+              ], 
+              [
+                -114.2112319805409, 
+                24.687729007387862
+              ], 
+              [
+                -114.2254275668466, 
+                24.678232247402782
+              ], 
+              [
+                -114.23724198612658, 
+                24.66661255951037
+              ], 
+              [
+                -114.25314680584779, 
+                24.654507918600114
+              ], 
+              [
+                -114.26637233591258, 
+                24.64545454748813
+              ], 
+              [
+                -114.30449668260862, 
+                24.63000196513524
+              ], 
+              [
+                -114.31292976301599, 
+                24.627325109284797
+              ], 
+              [
+                -114.35053301190644, 
+                24.617031257029932
+              ], 
+              [
+                -114.37338090762786, 
+                24.612281891979347
+              ], 
+              [
+                -114.38276710586732, 
+                24.61100909024952
+              ], 
+              [
+                -114.39787851371807, 
+                24.610036853119823
+              ], 
+              [
+                -114.43370282527445, 
+                24.61073237577966
+              ], 
+              [
+                -114.4681095290434, 
+                24.61909490730909
+              ], 
+              [
+                -114.47638055546325, 
+                24.62244600174797
+              ], 
+              [
+                -114.48086447614114, 
+                24.62624526768096
+              ], 
+              [
+                -114.48773305201405, 
+                24.634593242962428
+              ], 
+              [
+                -114.49928732381363, 
+                24.657705411460512
+              ], 
+              [
+                -114.5015884077827, 
+                24.666098642342437
+              ], 
+              [
+                -114.50226704126025, 
+                24.66997960214027
+              ], 
+              [
+                -114.50219910433867, 
+                24.672873501873102
+              ], 
+              [
+                -114.50029584664976, 
+                24.675868067189747
+              ], 
+              [
+                -114.49617857965407, 
+                24.679344947686424
+              ], 
+              [
+                -114.49234507000675, 
+                24.68072387484017
+              ], 
+              [
+                -114.48444914995535, 
+                24.681640280975174
+              ], 
+              [
+                -114.48252946841785, 
+                24.68579748562104
+              ], 
+              [
+                -114.4870575923747, 
+                24.693846884631437
+              ], 
+              [
+                -114.50182987861099, 
+                24.708211363125283
+              ], 
+              [
+                -114.52786850519256, 
+                24.71999761892119
+              ], 
+              [
+                -114.53528221209098, 
+                24.7200049131567
+              ], 
+              [
+                -114.54717110922711, 
+                24.729190017093444
+              ], 
+              [
+                -114.56654333534523, 
+                24.756031324459286
+              ], 
+              [
+                -114.57619511454534, 
+                24.770588921369225
+              ], 
+              [
+                -114.57544385097135, 
+                24.773853147982944
+              ], 
+              [
+                -114.5758569292649, 
+                24.77730047711104
+              ], 
+              [
+                -114.5787668185386, 
+                24.781505990201236
+              ], 
+              [
+                -114.58163114136453, 
+                24.783711934284227
+              ], 
+              [
+                -114.58719098190069, 
+                24.785989732343882
+              ], 
+              [
+                -114.59094432537395, 
+                24.786525797769293
+              ], 
+              [
+                -114.59993912272421, 
+                24.793245346180655
+              ], 
+              [
+                -114.60561317538536, 
+                24.79845867202263
+              ], 
+              [
+                -114.60922593023038, 
+                24.80194792453582
+              ], 
+              [
+                -114.61229181086644, 
+                24.806546595473105
+              ], 
+              [
+                -114.61392781355605, 
+                24.810841303586578
+              ], 
+              [
+                -114.61438135613683, 
+                24.813220173814592
+              ], 
+              [
+                -114.62563767369282, 
+                24.825663396060133
+              ], 
+              [
+                -114.63154916867212, 
+                24.822966910792744
+              ], 
+              [
+                -114.64281941391766, 
+                24.823238149120062
+              ], 
+              [
+                -114.65933496981438, 
+                24.826610845551773
+              ], 
+              [
+                -114.67064340304131, 
+                24.831959822379062
+              ], 
+              [
+                -114.68550145677047, 
+                24.841605187343333
+              ], 
+              [
+                -114.69572623360305, 
+                24.85031550722192
+              ], 
+              [
+                -114.70818467013153, 
+                24.86183668429348
+              ], 
+              [
+                -114.725764041257, 
+                24.882819536928412
+              ], 
+              [
+                -114.72672383149578, 
+                24.88516875617117
+              ], 
+              [
+                -114.7253301238514, 
+                24.89009432736553
+              ], 
+              [
+                -114.72451246707088, 
+                24.89108815804035
+              ], 
+              [
+                -114.71366855326875, 
+                24.89636772143868
+              ], 
+              [
+                -114.70916356609315, 
+                24.896969811960183
+              ], 
+              [
+                -114.70209213647233, 
+                24.90209129826473
+              ], 
+              [
+                -114.69864159647277, 
+                24.906563799212176
+              ], 
+              [
+                -114.69171230190152, 
+                24.92011793565902
+              ], 
+              [
+                -114.69143368439995, 
+                24.929236010241908
+              ], 
+              [
+                -114.69255121278461, 
+                24.931968630394827
+              ], 
+              [
+                -114.6936778215859, 
+                24.93322592823422
+              ], 
+              [
+                -114.69505562942702, 
+                24.93446619900648
+              ], 
+              [
+                -114.69859773754057, 
+                24.935551295070674
+              ], 
+              [
+                -114.71412589661588, 
+                24.935517302308398
+              ], 
+              [
+                -114.7415534137609, 
+                24.911838274202772
+              ], 
+              [
+                -114.7533349565119, 
+                24.910257068497344
+              ], 
+              [
+                -114.77971475000359, 
+                24.913478889877744
+              ], 
+              [
+                -114.78313771854327, 
+                24.91620569797747
+              ], 
+              [
+                -114.78993227650409, 
+                24.92582490441462
+              ], 
+              [
+                -114.79384685977514, 
+                24.933082399492715
+              ], 
+              [
+                -114.79378491643531, 
+                24.933893989009007
+              ], 
+              [
+                -114.79298130290228, 
+                24.936631922191502
+              ], 
+              [
+                -114.78620808131689, 
+                24.946341502785007
+              ], 
+              [
+                -114.7833930029978, 
+                24.948005681378973
+              ], 
+              [
+                -114.77878704996554, 
+                24.948042258423158
+              ], 
+              [
+                -114.77123921604931, 
+                24.946523415452315
+              ], 
+              [
+                -114.76612202643206, 
+                24.946595650998773
+              ], 
+              [
+                -114.76167438272428, 
+                24.948633467338755
+              ], 
+              [
+                -114.74357704852954, 
+                24.97062402416695
+              ], 
+              [
+                -114.74198178056307, 
+                24.973146769855788
+              ], 
+              [
+                -114.73770166861644, 
+                24.98375920698703
+              ], 
+              [
+                -114.72072838422685, 
+                25.002445936836708
+              ], 
+              [
+                -114.71848801407066, 
+                25.00326470055168
+              ], 
+              [
+                -114.71635288419256, 
+                25.002194383359978
+              ], 
+              [
+                -114.71285776563641, 
+                25.001751147491884
+              ], 
+              [
+                -114.70550714415839, 
+                25.008261655521327
+              ], 
+              [
+                -114.70152349671085, 
+                25.014429964471482
+              ], 
+              [
+                -114.7007317111432, 
+                25.017293930486222
+              ], 
+              [
+                -114.70073081052456, 
+                25.020507144302968
+              ], 
+              [
+                -114.70233504987208, 
+                25.022933296454905
+              ], 
+              [
+                -114.71131134179443, 
+                25.02935823353583
+              ], 
+              [
+                -114.7145508760779, 
+                25.033037028858672
+              ], 
+              [
+                -114.71658502836716, 
+                25.036122956028223
+              ], 
+              [
+                -114.71895994865137, 
+                25.041873166126422
+              ], 
+              [
+                -114.71977123919433, 
+                25.047324263790014
+              ], 
+              [
+                -114.7189173282325, 
+                25.049525247758382
+              ], 
+              [
+                -114.71768461989359, 
+                25.04853064015594
+              ], 
+              [
+                -114.71496293244273, 
+                25.048171926796208
+              ], 
+              [
+                -114.705857991158, 
+                25.05105417051784
+              ], 
+              [
+                -114.69910269786868, 
+                25.056209889739996
+              ], 
+              [
+                -114.69492489640099, 
+                25.060689095774304
+              ], 
+              [
+                -114.6987427668969, 
+                25.067034131325485
+              ], 
+              [
+                -114.71374151166583, 
+                25.062066566261272
+              ], 
+              [
+                -114.71629327676659, 
+                25.061903865511365
+              ], 
+              [
+                -114.71847472624187, 
+                25.066861079125573
+              ], 
+              [
+                -114.71903818616362, 
+                25.072459460944554
+              ], 
+              [
+                -114.71465304309486, 
+                25.090316635476317
+              ], 
+              [
+                -114.7037948379592, 
+                25.112340226177263
+              ], 
+              [
+                -114.70252998284904, 
+                25.114165219695916
+              ], 
+              [
+                -114.6996123594083, 
+                25.114502862002062
+              ], 
+              [
+                -114.69789311224221, 
+                25.11606369415063
+              ], 
+              [
+                -114.69545571165581, 
+                25.122814873074905
+              ], 
+              [
+                -114.69937575468404, 
+                25.124551585124962
+              ], 
+              [
+                -114.7034107308092, 
+                25.12373845198033
+              ], 
+              [
+                -114.71709179416528, 
+                25.11189263678259
+              ], 
+              [
+                -114.72184563914183, 
+                25.10311427753241
+              ], 
+              [
+                -114.71809848333342, 
+                25.097327869897537
+              ], 
+              [
+                -114.73086816779372, 
+                25.082030333953075
+              ], 
+              [
+                -114.74171174189355, 
+                25.076587414190563
+              ], 
+              [
+                -114.75122811249014, 
+                25.074553533450363
+              ], 
+              [
+                -114.75181046198117, 
+                25.07999626417415
+              ], 
+              [
+                -114.76311960851658, 
+                25.09683704756503
+              ], 
+              [
+                -114.7623306901901, 
+                25.10524974770872
+              ], 
+              [
+                -114.74946039913601, 
+                25.10751894875267
+              ], 
+              [
+                -114.74947313104434, 
+                25.113049182971952
+              ], 
+              [
+                -114.75360475077893, 
+                25.117988760939614
+              ], 
+              [
+                -114.75965881238056, 
+                25.13329666195911
+              ], 
+              [
+                -114.7598742125725, 
+                25.136096478863063
+              ], 
+              [
+                -114.75896899464647, 
+                25.137633134062334
+              ], 
+              [
+                -114.74776967178231, 
+                25.151552516071323
+              ], 
+              [
+                -114.74399182526183, 
+                25.154070705754712
+              ], 
+              [
+                -114.74006252681274, 
+                25.154594951308063
+              ], 
+              [
+                -114.73987241835509, 
+                25.153805841706365
+              ], 
+              [
+                -114.73687025368083, 
+                25.153065871593245
+              ], 
+              [
+                -114.72317243024077, 
+                25.153156818798298
+              ], 
+              [
+                -114.71848897202062, 
+                25.15472585388426
+              ], 
+              [
+                -114.71093672348913, 
+                25.160079563483528
+              ], 
+              [
+                -114.70893148927219, 
+                25.163423559614824
+              ], 
+              [
+                -114.70943690893436, 
+                25.171368531513167
+              ], 
+              [
+                -114.70584122119257, 
+                25.188602182320967
+              ], 
+              [
+                -114.70008069921113, 
+                25.185964944208713
+              ], 
+              [
+                -114.6932745833438, 
+                25.187216056954423
+              ], 
+              [
+                -114.69336444893223, 
+                25.195082066367565
+              ], 
+              [
+                -114.69704388146346, 
+                25.199283329682125
+              ], 
+              [
+                -114.69882160665382, 
+                25.200245892989365
+              ], 
+              [
+                -114.70969903657938, 
+                25.200718587715006
+              ], 
+              [
+                -114.71838846168403, 
+                25.19957574811113
+              ], 
+              [
+                -114.72036208874357, 
+                25.198291159591175
+              ], 
+              [
+                -114.7216347977819, 
+                25.19689397679077
+              ], 
+              [
+                -114.7209366258563, 
+                25.185276246038146
+              ], 
+              [
+                -114.71975114571357, 
+                25.18383617544251
+              ], 
+              [
+                -114.71909313329424, 
+                25.181986980087437
+              ], 
+              [
+                -114.71954871897726, 
+                25.175333695978246
+              ], 
+              [
+                -114.72269705911292, 
+                25.172289119501766
+              ], 
+              [
+                -114.72672036591004, 
+                25.17296423445359
+              ], 
+              [
+                -114.73303878479896, 
+                25.175221490157497
+              ], 
+              [
+                -114.74708788548718, 
+                25.183122312251097
+              ], 
+              [
+                -114.75863795036413, 
+                25.19866951378372
+              ], 
+              [
+                -114.76055393158069, 
+                25.20201703499049
+              ], 
+              [
+                -114.76109840855976, 
+                25.204118307698835
+              ], 
+              [
+                -114.75921124916144, 
+                25.207980628438712
+              ], 
+              [
+                -114.75905626474675, 
+                25.209431529932463
+              ], 
+              [
+                -114.75999338023082, 
+                25.213274331792288
+              ], 
+              [
+                -114.76095403832285, 
+                25.214149939089946
+              ], 
+              [
+                -114.7677028749067, 
+                25.215311551346936
+              ], 
+              [
+                -114.78728903242418, 
+                25.22873032860445
+              ], 
+              [
+                -114.79122810947447, 
+                25.228531636738893
+              ], 
+              [
+                -114.79459147257543, 
+                25.222463883173123
+              ], 
+              [
+                -114.79711418900906, 
+                25.200966231013314
+              ], 
+              [
+                -114.79771178083581, 
+                25.19197194384658
+              ], 
+              [
+                -114.79746185421261, 
+                25.188648405797313
+              ], 
+              [
+                -114.7963828243624, 
+                25.182840554424033
+              ], 
+              [
+                -114.79519048053598, 
+                25.180645382034818
+              ], 
+              [
+                -114.7939631323527, 
+                25.179653871289457
+              ], 
+              [
+                -114.794064167979, 
+                25.177646637177688
+              ], 
+              [
+                -114.79511281802537, 
+                25.176238755368985
+              ], 
+              [
+                -114.80083998041799, 
+                25.174127543601507
+              ], 
+              [
+                -114.8078600681204, 
+                25.17380085631572
+              ], 
+              [
+                -114.82893368536926, 
+                25.178159962580608
+              ], 
+              [
+                -114.84021531855845, 
+                25.18169477786638
+              ], 
+              [
+                -114.8467661784858, 
+                25.187010080308823
+              ], 
+              [
+                -114.84982484248081, 
+                25.191884594680584
+              ], 
+              [
+                -114.86222889246154, 
+                25.24240059791883
+              ], 
+              [
+                -114.86320332258829, 
+                25.250226203706127
+              ], 
+              [
+                -114.86245644522124, 
+                25.259892189623695
+              ], 
+              [
+                -114.86129165699204, 
+                25.264854235022256
+              ], 
+              [
+                -114.86218815821823, 
+                25.2694075448382
+              ], 
+              [
+                -114.86508753046822, 
+                25.272524862213128
+              ], 
+              [
+                -114.87119047354706, 
+                25.276434471525988
+              ], 
+              [
+                -114.89839349728989, 
+                25.282134737382822
+              ], 
+              [
+                -114.90300003180978, 
+                25.280363581931507
+              ], 
+              [
+                -114.90440996451017, 
+                25.278664494731185
+              ], 
+              [
+                -114.90771486802309, 
+                25.280051285237132
+              ], 
+              [
+                -114.91400651730149, 
+                25.285386957463906
+              ], 
+              [
+                -114.91890838553672, 
+                25.292688092262413
+              ], 
+              [
+                -114.92814523703505, 
+                25.316816174472567
+              ], 
+              [
+                -114.92982747935025, 
+                25.323927815804243
+              ], 
+              [
+                -114.93018136516379, 
+                25.326976999501575
+              ], 
+              [
+                -114.92974406719877, 
+                25.33142127976128
+              ], 
+              [
+                -114.91453792745443, 
+                25.34231177496472
+              ], 
+              [
+                -114.9054038299079, 
+                25.34705152723605
+              ], 
+              [
+                -114.90339241007497, 
+                25.347254284347915
+              ], 
+              [
+                -114.89850718994516, 
+                25.350846862401877
+              ], 
+              [
+                -114.8950940105164, 
+                25.36015827449196
+              ], 
+              [
+                -114.89502127671628, 
+                25.366177408389778
+              ], 
+              [
+                -114.8970032980846, 
+                25.370463836548016
+              ], 
+              [
+                -114.90928129405468, 
+                25.384035431349616
+              ], 
+              [
+                -114.93242074437389, 
+                25.395424821831654
+              ], 
+              [
+                -114.94339269817374, 
+                25.39471095857405
+              ], 
+              [
+                -114.94706149719849, 
+                25.39233320714413
+              ], 
+              [
+                -114.94779783842787, 
+                25.390142976086533
+              ], 
+              [
+                -114.95049670681082, 
+                25.386759553655523
+              ], 
+              [
+                -114.95787500296916, 
+                25.38427101523795
+              ], 
+              [
+                -114.96649532965854, 
+                25.382634816414292
+              ], 
+              [
+                -114.969026976602, 
+                25.377926424645327
+              ], 
+              [
+                -114.9669092246559, 
+                25.37362678640764
+              ], 
+              [
+                -114.96190541661898, 
+                25.36778030287782
+              ], 
+              [
+                -114.9653570534977, 
+                25.36412236994444
+              ], 
+              [
+                -114.97235762092987, 
+                25.363528677259247
+              ], 
+              [
+                -114.97609557843136, 
+                25.36903336296347
+              ], 
+              [
+                -114.98439251564876, 
+                25.38587765013087
+              ], 
+              [
+                -114.98610847087687, 
+                25.39004091746511
+              ], 
+              [
+                -114.9896202939575, 
+                25.401184085173423
+              ], 
+              [
+                -114.99048377025683, 
+                25.40419894513888
+              ], 
+              [
+                -114.99085561858097, 
+                25.407520767943463
+              ], 
+              [
+                -114.98883484248046, 
+                25.460001525557193
+              ], 
+              [
+                -114.98799363743218, 
+                25.466824231646008
+              ], 
+              [
+                -114.98624861405452, 
+                25.471318332428442
+              ], 
+              [
+                -114.98422877432535, 
+                25.471216109979117
+              ], 
+              [
+                -114.98390675609393, 
+                25.470295976227607
+              ], 
+              [
+                -114.98385394481585, 
+                25.464286769870093
+              ], 
+              [
+                -114.98362959820557, 
+                25.444663561165637
+              ], 
+              [
+                -114.98319084994634, 
+                25.431801046311595
+              ], 
+              [
+                -114.9828400637799, 
+                25.42842795562686
+              ], 
+              [
+                -114.98127987120249, 
+                25.428166773781413
+              ], 
+              [
+                -114.96484410917444, 
+                25.4320916230487
+              ], 
+              [
+                -114.96021989503154, 
+                25.43373153691828
+              ], 
+              [
+                -114.95680087126986, 
+                25.436091316003548
+              ], 
+              [
+                -114.9470033949521, 
+                25.44060851047797
+              ], 
+              [
+                -114.93364471274285, 
+                25.445617847189173
+              ], 
+              [
+                -114.91650487797743, 
+                25.449804854886285
+              ], 
+              [
+                -114.91398258768187, 
+                25.451073882291045
+              ], 
+              [
+                -114.91446997677866, 
+                25.45868660472787
+              ], 
+              [
+                -114.92444126020948, 
+                25.45878895594713
+              ], 
+              [
+                -114.9414723507552, 
+                25.46516296890585
+              ], 
+              [
+                -114.9544304842743, 
+                25.47234810724093
+              ], 
+              [
+                -114.95734069824131, 
+                25.47536667507036
+              ], 
+              [
+                -114.9773543167055, 
+                25.507495587488695
+              ], 
+              [
+                -114.97789228032394, 
+                25.50960329349551
+              ], 
+              [
+                -114.97817833796482, 
+                25.513594907099247
+              ], 
+              [
+                -114.97635045849944, 
+                25.514921097231117
+              ], 
+              [
+                -114.9492825290577, 
+                25.523746927290183
+              ], 
+              [
+                -114.93128581051776, 
+                25.521702703860285
+              ], 
+              [
+                -114.90746704179317, 
+                25.522724195058437
+              ], 
+              [
+                -114.90513830720835, 
+                25.523916730816744
+              ], 
+              [
+                -114.9031341063435, 
+                25.526450485302714
+              ], 
+              [
+                -114.90321508832659, 
+                25.52938665506039
+              ], 
+              [
+                -114.90203229030416, 
+                25.530802269283395
+              ], 
+              [
+                -114.89490592735973, 
+                25.533526812417595
+              ], 
+              [
+                -114.88313756034752, 
+                25.53464825807693
+              ], 
+              [
+                -114.87665143497108, 
+                25.53868813518834
+              ], 
+              [
+                -114.87499154134287, 
+                25.540546441445805
+              ], 
+              [
+                -114.87794995559668, 
+                25.546104492588913
+              ], 
+              [
+                -114.89051774588367, 
+                25.55866351267963
+              ], 
+              [
+                -114.89863091471588, 
+                25.568172640336737
+              ], 
+              [
+                -114.90407284032541, 
+                25.579851295214617
+              ], 
+              [
+                -114.908060527024, 
+                25.590954891062815
+              ], 
+              [
+                -114.91227249461735, 
+                25.607069169637033
+              ], 
+              [
+                -114.91240040830532, 
+                25.610661177862518
+              ], 
+              [
+                -114.91170115624357, 
+                25.626185997206438
+              ], 
+              [
+                -114.91104959808298, 
+                25.633299902173597
+              ], 
+              [
+                -114.90948311299431, 
+                25.640210088034976
+              ], 
+              [
+                -114.90449751104349, 
+                25.655210495097656
+              ], 
+              [
+                -114.89822953400441, 
+                25.670298181816698
+              ], 
+              [
+                -114.8884087612237, 
+                25.68614744822867
+              ], 
+              [
+                -114.86558644994456, 
+                25.7261733548025
+              ], 
+              [
+                -114.84156602965683, 
+                25.76625812128085
+              ], 
+              [
+                -114.8346770932774, 
+                25.776406632320086
+              ], 
+              [
+                -114.82989539848974, 
+                25.78593940803352
+              ], 
+              [
+                -114.82707925871416, 
+                25.797581149899933
+              ], 
+              [
+                -114.82244396123676, 
+                25.809079025336843
+              ], 
+              [
+                -114.80926496536122, 
+                25.8296452784019
+              ], 
+              [
+                -114.78934330257043, 
+                25.855563141071645
+              ], 
+              [
+                -114.77950127669871, 
+                25.864578968184848
+              ], 
+              [
+                -114.74358130993006, 
+                25.881246143697595
+              ], 
+              [
+                -114.72399347476903, 
+                25.892328683999974
+              ], 
+              [
+                -114.72598664859768, 
+                25.9001416469261
+              ], 
+              [
+                -114.72995418107749, 
+                25.901000882647065
+              ], 
+              [
+                -114.73941226885708, 
+                25.897112912237084
+              ], 
+              [
+                -114.74979009988328, 
+                25.894175653197962
+              ], 
+              [
+                -114.75408384603887, 
+                25.895233481868893
+              ], 
+              [
+                -114.7573350629362, 
+                25.898043849235567
+              ], 
+              [
+                -114.7589578156961, 
+                25.900025810259006
+              ], 
+              [
+                -114.76003609960819, 
+                25.90228179233889
+              ], 
+              [
+                -114.7605688088909, 
+                25.905297368641932
+              ], 
+              [
+                -114.75932196914282, 
+                25.917583621419453
+              ], 
+              [
+                -114.75554666238332, 
+                25.920829864724436
+              ], 
+              [
+                -114.74547203056599, 
+                25.916025236064627
+              ], 
+              [
+                -114.74333438450971, 
+                25.911348984609273
+              ], 
+              [
+                -114.73912009182578, 
+                25.90972447411627
+              ], 
+              [
+                -114.73510444623642, 
+                25.912443158094792
+              ], 
+              [
+                -114.74748713884291, 
+                25.973386399789057
+              ], 
+              [
+                -114.74893324943767, 
+                25.975063701270333
+              ], 
+              [
+                -114.75036063249023, 
+                25.975679138642352
+              ], 
+              [
+                -114.75210372686881, 
+                25.980326244371607
+              ], 
+              [
+                -114.75261268319072, 
+                25.986581063884035
+              ], 
+              [
+                -114.75243314472134, 
+                25.990555779927742
+              ], 
+              [
+                -114.74835170931289, 
+                26.006362053924388
+              ], 
+              [
+                -114.7457565371821, 
+                26.01244621044304
+              ], 
+              [
+                -114.73751282164007, 
+                26.01593764200889
+              ], 
+              [
+                -114.73237165853067, 
+                26.022278749007064
+              ], 
+              [
+                -114.72970946042268, 
+                26.0326597579252
+              ], 
+              [
+                -114.72852565764946, 
+                26.04534353542161
+              ], 
+              [
+                -114.72998215418146, 
+                26.056799092131058
+              ], 
+              [
+                -114.73443914793802, 
+                26.061197672321963
+              ], 
+              [
+                -114.73461229737946, 
+                26.06273815151127
+              ], 
+              [
+                -114.72600732770313, 
+                26.085752808849318
+              ], 
+              [
+                -114.72003414055021, 
+                26.093592409663948
+              ], 
+              [
+                -114.70043803359718, 
+                26.11185877888228
+              ], 
+              [
+                -114.70008335042239, 
+                26.117335536963388
+              ], 
+              [
+                -114.70672977736497, 
+                26.12041014435075
+              ], 
+              [
+                -114.71260791471518, 
+                26.117680845591405
+              ], 
+              [
+                -114.71318635604342, 
+                26.118714283796944
+              ], 
+              [
+                -114.71356709630722, 
+                26.1206945647234
+              ], 
+              [
+                -114.71300790016585, 
+                26.126333823843375
+              ], 
+              [
+                -114.7119099634931, 
+                26.12947408104873
+              ], 
+              [
+                -114.68572567190887, 
+                26.168565262180376
+              ], 
+              [
+                -114.6726478905118, 
+                26.185501540239446
+              ], 
+              [
+                -114.66094382201709, 
+                26.193006699482908
+              ], 
+              [
+                -114.63046807763959, 
+                26.206963677688577
+              ], 
+              [
+                -114.61664670867218, 
+                26.21165119031918
+              ], 
+              [
+                -114.60190867401928, 
+                26.214120585285567
+              ], 
+              [
+                -114.59569726674758, 
+                26.214086371385257
+              ], 
+              [
+                -114.5817961911891, 
+                26.209108621604344
+              ], 
+              [
+                -114.56888836922764, 
+                26.2027300812575
+              ], 
+              [
+                -114.56358461656991, 
+                26.198373437540617
+              ], 
+              [
+                -114.54386845767772, 
+                26.197662965397015
+              ], 
+              [
+                -114.53703900296085, 
+                26.19819426357734
+              ], 
+              [
+                -114.53228742528414, 
+                26.19660902029646
+              ], 
+              [
+                -114.53080082571529, 
+                26.195496018836153
+              ], 
+              [
+                -114.53030299610141, 
+                26.193654364080608
+              ], 
+              [
+                -114.52554720505287, 
+                26.185401151606946
+              ], 
+              [
+                -114.51350502575708, 
+                26.17210655550787
+              ], 
+              [
+                -114.50597279454541, 
+                26.165082162572308
+              ], 
+              [
+                -114.50082694868128, 
+                26.167781904249225
+              ], 
+              [
+                -114.48816674194528, 
+                26.163832342653006
+              ], 
+              [
+                -114.48584982767409, 
+                26.15836339207019
+              ], 
+              [
+                -114.48271765906911, 
+                26.15414212556987
+              ], 
+              [
+                -114.47555092794776, 
+                26.147906300475118
+              ], 
+              [
+                -114.46684962828812, 
+                26.144080684170607
+              ], 
+              [
+                -114.46331853060856, 
+                26.14184657113845
+              ], 
+              [
+                -114.45147403805015, 
+                26.129743034575526
+              ], 
+              [
+                -114.44080493168511, 
+                26.122231555477853
+              ], 
+              [
+                -114.40339463279604, 
+                26.13093665249569
+              ], 
+              [
+                -114.38805729887412, 
+                26.136486804484043
+              ], 
+              [
+                -114.38545650498546, 
+                26.138503837388477
+              ], 
+              [
+                -114.37795113750848, 
+                26.15185675153051
+              ], 
+              [
+                -114.36319414455669, 
+                26.167619233567425
+              ], 
+              [
+                -114.35973276158545, 
+                26.170479670185653
+              ], 
+              [
+                -114.34928925550864, 
+                26.18479868821699
+              ], 
+              [
+                -114.34813268241354, 
+                26.187256620849855
+              ], 
+              [
+                -114.34776227519635, 
+                26.18981173686846
+              ], 
+              [
+                -114.34978891416849, 
+                26.200346857705913
+              ], 
+              [
+                -114.34980692287974, 
+                26.202878995310385
+              ], 
+              [
+                -114.349038712765, 
+                26.205319058206932
+              ], 
+              [
+                -114.34666042457205, 
+                26.20905182661744
+              ], 
+              [
+                -114.33665086384453, 
+                26.215342684844998
+              ], 
+              [
+                -114.33446127366649, 
+                26.215602680255337
+              ], 
+              [
+                -114.33204866493395, 
+                26.21414042341266
+              ], 
+              [
+                -114.32730644274551, 
+                26.215073241727474
+              ], 
+              [
+                -114.32024203067849, 
+                26.21853912173315
+              ], 
+              [
+                -114.31546029846257, 
+                26.22333509644039
+              ], 
+              [
+                -114.30221272685586, 
+                26.24599973634467
+              ], 
+              [
+                -114.2993753220646, 
+                26.25086260144712
+              ], 
+              [
+                -114.27607815523498, 
+                26.296216963801808
+              ], 
+              [
+                -114.27529586389892, 
+                26.29852105147463
+              ], 
+              [
+                -114.27454671622947, 
+                26.303752354596295
+              ], 
+              [
+                -114.27540355907011, 
+                26.30712618443808
+              ], 
+              [
+                -114.27429037722918, 
+                26.31095189928673
+              ], 
+              [
+                -114.26799725716478, 
+                26.32407659002329
+              ], 
+              [
+                -114.26226140429681, 
+                26.333174386671374
+              ], 
+              [
+                -114.25293667282418, 
+                26.34313541968365
+              ], 
+              [
+                -114.24735651587127, 
+                26.3503636508756
+              ], 
+              [
+                -114.2469184079829, 
+                26.351849375307708
+              ], 
+              [
+                -114.24702462708002, 
+                26.353839739513443
+              ], 
+              [
+                -114.25257149274995, 
+                26.36791625749652
+              ], 
+              [
+                -114.25565565436385, 
+                26.37271753509784
+              ], 
+              [
+                -114.25482177696774, 
+                26.3740881350756
+              ], 
+              [
+                -114.2459708362621, 
+                26.37573755793991
+              ], 
+              [
+                -114.23290844835476, 
+                26.371506851235367
+              ], 
+              [
+                -114.22460745159057, 
+                26.36677323842114
+              ], 
+              [
+                -114.21866996703814, 
+                26.364973850057343
+              ], 
+              [
+                -114.21567794596083, 
+                26.364867797151362
+              ], 
+              [
+                -114.2086192853519, 
+                26.36644924395628
+              ], 
+              [
+                -114.20118364923191, 
+                26.355950757654277
+              ], 
+              [
+                -114.20134893269201, 
+                26.349295083974347
+              ], 
+              [
+                -114.20212382942974, 
+                26.34800859820193
+              ], 
+              [
+                -114.20210403078761, 
+                26.34695477710927
+              ], 
+              [
+                -114.19933391193928, 
+                26.341795564852408
+              ], 
+              [
+                -114.19601007480577, 
+                26.336819203703996
+              ], 
+              [
+                -114.1767370537151, 
+                26.33756529143397
+              ], 
+              [
+                -114.15851461837153, 
+                26.34063853382254
+              ], 
+              [
+                -114.1438668480699, 
+                26.345229456328934
+              ], 
+              [
+                -114.13220196366547, 
+                26.351273203033678
+              ], 
+              [
+                -114.12637355996408, 
+                26.35234283199467
+              ], 
+              [
+                -114.10872262647722, 
+                26.349239569886368
+              ], 
+              [
+                -114.10682720206708, 
+                26.346464257235382
+              ], 
+              [
+                -114.1006957541242, 
+                26.34777275911956
+              ], 
+              [
+                -114.08036967570423, 
+                26.353741839945183
+              ], 
+              [
+                -114.05276048639954, 
+                26.36344704198422
+              ], 
+              [
+                -114.02969752065555, 
+                26.3748429375296
+              ], 
+              [
+                -114.01946298524359, 
+                26.382774248153755
+              ], 
+              [
+                -114.01906594746211, 
+                26.38385242096845
+              ], 
+              [
+                -114.01750554805768, 
+                26.396087544377817
+              ], 
+              [
+                -114.01481086885214, 
+                26.40352551019045
+              ], 
+              [
+                -114.00302046373697, 
+                26.419735684225873
+              ], 
+              [
+                -113.98404644028746, 
+                26.452441446579787
+              ], 
+              [
+                -113.98061208349613, 
+                26.459017840859307
+              ], 
+              [
+                -113.9653330463625, 
+                26.495075375805115
+              ], 
+              [
+                -113.96129902777108, 
+                26.505628363349135
+              ], 
+              [
+                -113.95883055568596, 
+                26.5155729711875
+              ], 
+              [
+                -113.95915406222906, 
+                26.524828119305095
+              ], 
+              [
+                -113.96219313060038, 
+                26.5439538952048
+              ], 
+              [
+                -113.96821461670665, 
+                26.559113208117303
+              ], 
+              [
+                -113.97466453014918, 
+                26.574897097388764
+              ], 
+              [
+                -113.98541453793085, 
+                26.596856366174883
+              ], 
+              [
+                -113.99169034322243, 
+                26.60678633556698
+              ], 
+              [
+                -113.99506555665239, 
+                26.61044024966628
+              ], 
+              [
+                -114.00648437625433, 
+                26.638881031798984
+              ], 
+              [
+                -114.01205729297061, 
+                26.657062552408792
+              ], 
+              [
+                -114.01514785633672, 
+                26.679093982517852
+              ], 
+              [
+                -114.01808072708312, 
+                26.70382249213462
+              ], 
+              [
+                -114.0178232290699, 
+                26.70667344456506
+              ], 
+              [
+                -114.01681142532345, 
+                26.709770892890674
+              ], 
+              [
+                -114.02413398260076, 
+                26.723672960853918
+              ], 
+              [
+                -114.08041699492502, 
+                26.780266740798393
+              ], 
+              [
+                -114.08849810470164, 
+                26.792161125651706
+              ], 
+              [
+                -114.09845801861961, 
+                26.79231916071635
+              ], 
+              [
+                -114.1184015596324, 
+                26.800035524653758
+              ], 
+              [
+                -114.12862263990672, 
+                26.797973984981223
+              ], 
+              [
+                -114.1299670094613, 
+                26.79724016953772
+              ], 
+              [
+                -114.1339222819447, 
+                26.79169577263912
+              ], 
+              [
+                -114.13696488207138, 
+                26.798471361997017
+              ], 
+              [
+                -114.13480091745339, 
+                26.828257349666202
+              ], 
+              [
+                -114.13375644331268, 
+                26.83778442178391
+              ], 
+              [
+                -114.11924727770885, 
+                26.851591277071222
+              ], 
+              [
+                -114.11641251059804, 
+                26.852948811456304
+              ], 
+              [
+                -114.11395475011038, 
+                26.849431184339043
+              ], 
+              [
+                -114.11140329238665, 
+                26.847130056940394
+              ], 
+              [
+                -114.10523343515946, 
+                26.844300997809697
+              ], 
+              [
+                -114.08755335531886, 
+                26.839961234373135
+              ], 
+              [
+                -114.0803283586521, 
+                26.839023840447407
+              ], 
+              [
+                -114.07192674172028, 
+                26.839062669465747
+              ], 
+              [
+                -114.05675134851312, 
+                26.84050340122014
+              ], 
+              [
+                -114.04649753954436, 
+                26.84429841787539
+              ], 
+              [
+                -114.044837345671, 
+                26.845610943460542
+              ], 
+              [
+                -114.0447336790077, 
+                26.848141546422866
+              ], 
+              [
+                -114.04596236215724, 
+                26.852482383436215
+              ], 
+              [
+                -114.05019293932371, 
+                26.854388906070575
+              ], 
+              [
+                -114.05196610185436, 
+                26.855447467415182
+              ], 
+              [
+                -114.05352616188468, 
+                26.856929074945615
+              ], 
+              [
+                -114.05420015949568, 
+                26.85867790229012
+              ], 
+              [
+                -114.05381446309934, 
+                26.861045413965844
+              ], 
+              [
+                -114.05336074450828, 
+                26.86275707779959
+              ], 
+              [
+                -114.04239715523254, 
+                26.864171278793968
+              ], 
+              [
+                -114.0381625391966, 
+                26.86586623712475
+              ], 
+              [
+                -114.03259323177514, 
+                26.869362575456705
+              ], 
+              [
+                -114.00856321270177, 
+                26.900324277099372
+              ], 
+              [
+                -114.00731326409502, 
+                26.90465464758632
+              ], 
+              [
+                -114.00715871732493, 
+                26.90641720331274
+              ], 
+              [
+                -114.00843111922731, 
+                26.933112880496996
+              ], 
+              [
+                -114.01019698490121, 
+                26.949974991181495
+              ], 
+              [
+                -114.03015367279305, 
+                26.978743104494757
+              ], 
+              [
+                -114.04486243879848, 
+                26.995044576481977
+              ], 
+              [
+                -114.05517200097688, 
+                26.999283758615157
+              ], 
+              [
+                -114.07487985900917, 
+                27.013643069006402
+              ], 
+              [
+                -114.0798475849507, 
+                27.01826859902488
+              ], 
+              [
+                -114.08651383869072, 
+                27.025713043492445
+              ], 
+              [
+                -114.09035231487526, 
+                27.031706528662113
+              ], 
+              [
+                -114.09050788144341, 
+                27.03382252988562
+              ], 
+              [
+                -114.08998944547113, 
+                27.03573518016784
+              ], 
+              [
+                -114.09613410755246, 
+                27.038142711211663
+              ], 
+              [
+                -114.09897413028536, 
+                27.035124127924263
+              ], 
+              [
+                -114.09942208151526, 
+                27.03358725477066
+              ], 
+              [
+                -114.09995130743967, 
+                27.027752329485125
+              ], 
+              [
+                -114.09963722687309, 
+                27.024457655531247
+              ], 
+              [
+                -114.09898273938127, 
+                27.022544727535585
+              ], 
+              [
+                -114.10140205692244, 
+                27.01710821174272
+              ], 
+              [
+                -114.11018265517775, 
+                27.00617716713237
+              ], 
+              [
+                -114.11534309577966, 
+                27.001539005029365
+              ], 
+              [
+                -114.12100686327615, 
+                26.98999922739629
+              ], 
+              [
+                -114.12573086493637, 
+                26.97832744808467
+              ], 
+              [
+                -114.12691200904838, 
+                26.972532819479518
+              ], 
+              [
+                -114.12592426151798, 
+                26.967192035108166
+              ], 
+              [
+                -114.1263694866081, 
+                26.965654371620698
+              ], 
+              [
+                -114.127944505083, 
+                26.96274398980915
+              ], 
+              [
+                -114.13455337396691, 
+                26.95721572666807
+              ], 
+              [
+                -114.13755933218224, 
+                26.955166417169696
+              ], 
+              [
+                -114.15442836368196, 
+                26.95065985966358
+              ], 
+              [
+                -114.16990719920501, 
+                26.95425434975421
+              ], 
+              [
+                -114.17694552930708, 
+                26.956690675776997
+              ], 
+              [
+                -114.18012206091608, 
+                26.958765334038436
+              ], 
+              [
+                -114.18487790710988, 
+                26.96411237417811
+              ], 
+              [
+                -114.22240068934617, 
+                26.92314966101945
+              ], 
+              [
+                -114.22683542375596, 
+                26.920074664533285
+              ], 
+              [
+                -114.23379201344468, 
+                26.91716288946635
+              ], 
+              [
+                -114.26399614689717, 
+                26.910351032173025
+              ], 
+              [
+                -114.27200768479099, 
+                26.90720662972402
+              ], 
+              [
+                -114.27754534911668, 
+                26.904030945921136
+              ], 
+              [
+                -114.28103969738274, 
+                26.90000638136454
+              ], 
+              [
+                -114.28592020224697, 
+                26.891981627629228
+              ], 
+              [
+                -114.28603597622697, 
+                26.88635444168854
+              ], 
+              [
+                -114.28790356873367, 
+                26.874583719120444
+              ], 
+              [
+                -114.29439686017157, 
+                26.86899760100307
+              ], 
+              [
+                -114.29826933204464, 
+                26.867124765355207
+              ], 
+              [
+                -114.30781826499246, 
+                26.86002408093359
+              ], 
+              [
+                -114.343963162088, 
+                26.828011665544444
+              ], 
+              [
+                -114.34645737406245, 
+                26.822838782493214
+              ], 
+              [
+                -114.35613557051653, 
+                26.798782257546847
+              ], 
+              [
+                -114.35623665170783, 
+                26.79708143886929
+              ], 
+              [
+                -114.35324489631167, 
+                26.79259380214329
+              ], 
+              [
+                -114.35309200135964, 
+                26.788780141786997
+              ], 
+              [
+                -114.3563785262893, 
+                26.759110488973747
+              ], 
+              [
+                -114.35868098365547, 
+                26.756121694032704
+              ], 
+              [
+                -114.36292855961958, 
+                26.75366620994848
+              ], 
+              [
+                -114.37245055077517, 
+                26.745617985398116
+              ], 
+              [
+                -114.38110182078498, 
+                26.73248867534192
+              ], 
+              [
+                -114.38505650683983, 
+                26.728243004316404
+              ], 
+              [
+                -114.38622734485577, 
+                26.72932027679956
+              ], 
+              [
+                -114.38845754629688, 
+                26.73299668475603
+              ], 
+              [
+                -114.38999348501233, 
+                26.74061694710947
+              ], 
+              [
+                -114.38989722070794, 
+                26.746223734128687
+              ], 
+              [
+                -114.38893176611789, 
+                26.75100120230542
+              ], 
+              [
+                -114.39008596787191, 
+                26.76052586012552
+              ], 
+              [
+                -114.39132505522711, 
+                26.765212573128405
+              ], 
+              [
+                -114.39835331503296, 
+                26.779095278019515
+              ], 
+              [
+                -114.40408106560699, 
+                26.7963945929082
+              ], 
+              [
+                -114.40480925913157, 
+                26.80795658738899
+              ], 
+              [
+                -114.42262171059839, 
+                26.826286900742314
+              ], 
+              [
+                -114.42833905814952, 
+                26.827867392234033
+              ], 
+              [
+                -114.44015870696676, 
+                26.824739113278905
+              ], 
+              [
+                -114.44241039389823, 
+                26.823469355519713
+              ], 
+              [
+                -114.4398327130972, 
+                26.81695358073836
+              ], 
+              [
+                -114.43872257932063, 
+                26.810656279303345
+              ], 
+              [
+                -114.43716392877532, 
+                26.794942219551473
+              ], 
+              [
+                -114.4483077341359, 
+                26.77522316461419
+              ], 
+              [
+                -114.45041598717303, 
+                26.761722981111195
+              ], 
+              [
+                -114.4525736108963, 
+                26.75902675239049
+              ], 
+              [
+                -114.45848286401007, 
+                26.75546449378072
+              ], 
+              [
+                -114.46336854979319, 
+                26.756024904551275
+              ], 
+              [
+                -114.4750010500307, 
+                26.769369388975928
+              ], 
+              [
+                -114.47980580412428, 
+                26.781197942831866
+              ], 
+              [
+                -114.48103591562639, 
+                26.78729213282157
+              ], 
+              [
+                -114.5014172093984, 
+                26.802583232103878
+              ], 
+              [
+                -114.51416376324323, 
+                26.81047658245009
+              ], 
+              [
+                -114.52202214944155, 
+                26.8144351833157
+              ], 
+              [
+                -114.55150237138187, 
+                26.825427106762678
+              ], 
+              [
+                -114.56217735374679, 
+                26.826441204266587
+              ], 
+              [
+                -114.59707120772299, 
+                26.82737732241725
+              ], 
+              [
+                -114.6059807022161, 
+                26.825769844171838
+              ], 
+              [
+                -114.60970158858758, 
+                26.821551373157426
+              ], 
+              [
+                -114.62454884891558, 
+                26.81434827028468
+              ], 
+              [
+                -114.62849528379535, 
+                26.814236674389665
+              ], 
+              [
+                -114.63852392442234, 
+                26.816982451470693
+              ], 
+              [
+                -114.64388035668101, 
+                26.817587331682045
+              ], 
+              [
+                -114.65860705790281, 
+                26.81807703009126
+              ], 
+              [
+                -114.68062374488566, 
+                26.81640083870249
+              ], 
+              [
+                -114.68974925857509, 
+                26.814505567994203
+              ], 
+              [
+                -114.71164676052908, 
+                26.805465697111533
+              ], 
+              [
+                -114.72477922595935, 
+                26.79740129843203
+              ], 
+              [
+                -114.73554872338481, 
+                26.79059599221729
+              ], 
+              [
+                -114.78450570155567, 
+                26.756112565364205
+              ], 
+              [
+                -114.78985587267859, 
+                26.75368047051873
+              ], 
+              [
+                -114.79734160468144, 
+                26.751492750375146
+              ], 
+              [
+                -114.8221148930224, 
+                26.746634821042402
+              ], 
+              [
+                -114.82497431048054, 
+                26.74669104215117
+              ], 
+              [
+                -114.86443696252766, 
+                26.760968149598966
+              ], 
+              [
+                -114.90396479704225, 
+                26.77203436337721
+              ], 
+              [
+                -114.93101878449838, 
+                26.77733489205976
+              ], 
+              [
+                -114.97059088009499, 
+                26.786725029479022
+              ], 
+              [
+                -114.98401046216796, 
+                26.78784673107398
+              ], 
+              [
+                -115.00366861997547, 
+                26.790924790226676
+              ], 
+              [
+                -115.05666295257176, 
+                26.801355996651626
+              ], 
+              [
+                -115.06600637932087, 
+                26.80460761266191
+              ], 
+              [
+                -115.09704227313398, 
+                26.82892843925263
+              ], 
+              [
+                -115.10140808706869, 
+                26.834873362250114
+              ], 
+              [
+                -115.10932193514974, 
+                26.853525387759568
+              ], 
+              [
+                -115.11414178679847, 
+                26.86620599422042
+              ], 
+              [
+                -115.11609313640632, 
+                26.8727498960367
+              ], 
+              [
+                -115.1162742555814, 
+                26.89738882803466
+              ], 
+              [
+                -115.11601386972079, 
+                26.902482507823123
+              ], 
+              [
+                -115.10679805568559, 
+                26.907803633407518
+              ], 
+              [
+                -115.1043438429761, 
+                26.913044632204887
+              ], 
+              [
+                -115.10315128197585, 
+                26.91740018167039
+              ], 
+              [
+                -115.10267859865023, 
+                26.920365969677018
+              ], 
+              [
+                -115.1029253762755, 
+                26.928769385923268
+              ], 
+              [
+                -115.10341513562352, 
+                26.932243976478187
+              ], 
+              [
+                -115.10479187494605, 
+                26.93788212235965
+              ], 
+              [
+                -115.10814415248602, 
+                26.943009517543494
+              ], 
+              [
+                -115.12774992284811, 
+                26.96753206473663
+              ], 
+              [
+                -115.13865404522475, 
+                26.97585296966792
+              ], 
+              [
+                -115.14433642823363, 
+                26.979691213755697
+              ], 
+              [
+                -115.14855502614257, 
+                26.981320333150023
+              ], 
+              [
+                -115.1591148791942, 
+                26.989045007060444
+              ], 
+              [
+                -115.16193514818342, 
+                26.994413680576823
+              ], 
+              [
+                -115.16205311372138, 
+                26.995716225327048
+              ], 
+              [
+                -115.16017947407222, 
+                26.99827041537678
+              ], 
+              [
+                -115.15908683966899, 
+                27.004308338727974
+              ], 
+              [
+                -115.1599180201441, 
+                27.009703189068606
+              ], 
+              [
+                -115.16075853685562, 
+                27.01258719909886
+              ], 
+              [
+                -115.16791175530611, 
+                27.020607383255292
+              ], 
+              [
+                -115.185023640554, 
+                27.031096124204726
+              ], 
+              [
+                -115.19271507370188, 
+                27.03732604557211
+              ], 
+              [
+                -115.19764911601605, 
+                27.04418992986867
+              ], 
+              [
+                -115.20289682290736, 
+                27.053439835457883
+              ], 
+              [
+                -115.20262975361439, 
+                27.057214343250983
+              ], 
+              [
+                -115.20199347067279, 
+                27.058305534811375
+              ], 
+              [
+                -115.2003066049476, 
+                27.059619144704453
+              ], 
+              [
+                -115.19819566479929, 
+                27.059555452094603
+              ], 
+              [
+                -115.19550302288026, 
+                27.058775013103794
+              ], 
+              [
+                -115.18870159695703, 
+                27.05486801179563
+              ], 
+              [
+                -115.18656707235026, 
+                27.051019705958048
+              ], 
+              [
+                -115.18463675440309, 
+                27.049820029431658
+              ], 
+              [
+                -115.17286795875427, 
+                27.047134796865684
+              ], 
+              [
+                -115.15656664863876, 
+                27.047239231111902
+              ], 
+              [
+                -115.15050984361937, 
+                27.049240021682547
+              ], 
+              [
+                -115.1498887964369, 
+                27.05500188240919
+              ], 
+              [
+                -115.1445801828576, 
+                27.059902962851346
+              ], 
+              [
+                -115.12858282384657, 
+                27.066626702158715
+              ], 
+              [
+                -115.12634393645642, 
+                27.068327357798886
+              ], 
+              [
+                -115.12085570947181, 
+                27.07530423197148
+              ], 
+              [
+                -115.11797334051134, 
+                27.079999872046063
+              ], 
+              [
+                -115.11724468823711, 
+                27.08292096214665
+              ], 
+              [
+                -115.11733617382443, 
+                27.086007518729563
+              ], 
+              [
+                -115.11840372952531, 
+                27.08826977004047
+              ], 
+              [
+                -115.12048307806637, 
+                27.098871768296995
+              ], 
+              [
+                -115.12064840746964, 
+                27.101983372357793
+              ], 
+              [
+                -115.11629591012755, 
+                27.10766660835625
+              ], 
+              [
+                -115.10405459283582, 
+                27.116489069351722
+              ], 
+              [
+                -115.09689128607347, 
+                27.12711546956078
+              ], 
+              [
+                -115.09959476626493, 
+                27.13275972525506
+              ], 
+              [
+                -115.10295830981713, 
+                27.137008663262
+              ], 
+              [
+                -115.11492326240035, 
+                27.14643506688898
+              ], 
+              [
+                -115.12389747764652, 
+                27.15166059462641
+              ], 
+              [
+                -115.13015242722966, 
+                27.153750944205566
+              ], 
+              [
+                -115.13633905506568, 
+                27.154752434315107
+              ], 
+              [
+                -115.1404417986351, 
+                27.15450093396309
+              ], 
+              [
+                -115.1450187290689, 
+                27.153460752654578
+              ], 
+              [
+                -115.15041056691393, 
+                27.148089970293388
+              ], 
+              [
+                -115.15594938963214, 
+                27.14782937639314
+              ], 
+              [
+                -115.1606258338593, 
+                27.148579626461846
+              ], 
+              [
+                -115.18278882832033, 
+                27.152737236910028
+              ], 
+              [
+                -115.19344421752429, 
+                27.157710841565613
+              ], 
+              [
+                -115.2026554747269, 
+                27.163133744685943
+              ], 
+              [
+                -115.22690588120194, 
+                27.172451878227903
+              ], 
+              [
+                -115.24116372307635, 
+                27.174789027606785
+              ], 
+              [
+                -115.25416155606372, 
+                27.175190826055008
+              ], 
+              [
+                -115.2973709160408, 
+                27.179378579940302
+              ], 
+              [
+                -115.31172387208997, 
+                27.184933413059557
+              ], 
+              [
+                -115.33087408246759, 
+                27.199656250673247
+              ], 
+              [
+                -115.33957930955941, 
+                27.20815098645887
+              ], 
+              [
+                -115.33977574552726, 
+                27.20960969873649
+              ], 
+              [
+                -115.35675870425924, 
+                27.22427220004722
+              ], 
+              [
+                -115.38149892778054, 
+                27.238755401266307
+              ], 
+              [
+                -115.38328207747078, 
+                27.242442263741108
+              ], 
+              [
+                -115.39428326938526, 
+                27.24824042586268
+              ], 
+              [
+                -115.40510006205761, 
+                27.25172471543243
+              ], 
+              [
+                -115.41076318732586, 
+                27.252010434130124
+              ], 
+              [
+                -115.42025160331107, 
+                27.256496146074905
+              ], 
+              [
+                -115.42543678571572, 
+                27.25981583569683
+              ], 
+              [
+                -115.42991727778934, 
+                27.267205267672505
+              ], 
+              [
+                -115.42997502534709, 
+                27.270389500647678
+              ], 
+              [
+                -115.42937106649654, 
+                27.27125479686806
+              ], 
+              [
+                -115.43009518027645, 
+                27.275969437617825
+              ], 
+              [
+                -115.43516496466135, 
+                27.28322855991145
+              ], 
+              [
+                -115.43658773452454, 
+                27.289887047493227
+              ], 
+              [
+                -115.4355058714621, 
+                27.29687082954433
+              ], 
+              [
+                -115.4307674865408, 
+                27.31086139278707
+              ], 
+              [
+                -115.40759614188595, 
+                27.330939225285032
+              ], 
+              [
+                -115.38468209861237, 
+                27.343541621710507
+              ], 
+              [
+                -115.3620102999229, 
+                27.35403327676596
+              ], 
+              [
+                -115.32552121232648, 
+                27.37551151058974
+              ], 
+              [
+                -115.28386442429779, 
+                27.40629893731741
+              ], 
+              [
+                -115.27117129481037, 
+                27.4188852975062
+              ], 
+              [
+                -115.25151613922499, 
+                27.43645905163968
+              ], 
+              [
+                -115.22175644370924, 
+                27.45966171177854
+              ], 
+              [
+                -115.2177805826808, 
+                27.465116957541916
+              ], 
+              [
+                -115.19424794161289, 
+                27.486079129217792
+              ], 
+              [
+                -115.15208989222198, 
+                27.518867528419314
+              ], 
+              [
+                -115.13913674403545, 
+                27.529969573658885
+              ], 
+              [
+                -115.1035237060791, 
+                27.553373100053523
+              ], 
+              [
+                -115.0992584096829, 
+                27.549208509090654
+              ], 
+              [
+                -115.09440375562926, 
+                27.547880683759256
+              ], 
+              [
+                -115.08761644572775, 
+                27.544767863888985
+              ], 
+              [
+                -115.08347471043614, 
+                27.545432352165125
+              ], 
+              [
+                -115.07744407296538, 
+                27.54395418893541
+              ], 
+              [
+                -115.07573491468419, 
+                27.542715418897707
+              ], 
+              [
+                -115.06872253211415, 
+                27.540465302887338
+              ], 
+              [
+                -115.06560777366165, 
+                27.538682951155675
+              ], 
+              [
+                -115.06466170008451, 
+                27.53751219249278
+              ], 
+              [
+                -115.06467244691535, 
+                27.536015552401896
+              ], 
+              [
+                -115.067701038615, 
+                27.534772286365225
+              ], 
+              [
+                -115.0696459696661, 
+                27.532046079993638
+              ], 
+              [
+                -115.06942414925916, 
+                27.530393973266154
+              ], 
+              [
+                -115.06741368944135, 
+                27.527768234932072
+              ], 
+              [
+                -115.06056383472561, 
+                27.52486039623938
+              ], 
+              [
+                -115.05787502103699, 
+                27.52235156662884
+              ], 
+              [
+                -115.05742047423935, 
+                27.52038863942727
+              ], 
+              [
+                -115.05643598912907, 
+                27.519133660452866
+              ], 
+              [
+                -115.05018147391743, 
+                27.517142761805722
+              ], 
+              [
+                -115.04345083308661, 
+                27.518761281166594
+              ], 
+              [
+                -115.03416041252703, 
+                27.51849606602196
+              ], 
+              [
+                -115.02777381358997, 
+                27.519520679596006
+              ], 
+              [
+                -115.0218935105175, 
+                27.521949440529152
+              ], 
+              [
+                -115.01887553553226, 
+                27.521620389900505
+              ], 
+              [
+                -115.01293765297356, 
+                27.518672927677564
+              ], 
+              [
+                -115.00434185494744, 
+                27.515690469547586
+              ], 
+              [
+                -114.99773301015354, 
+                27.515061981175144
+              ], 
+              [
+                -114.99678156415011, 
+                27.512315679351353
+              ], 
+              [
+                -114.99216701104703, 
+                27.514058470910363
+              ], 
+              [
+                -114.98565105838512, 
+                27.517981772794766
+              ], 
+              [
+                -114.98475376939548, 
+                27.517675935247727
+              ], 
+              [
+                -114.97918815650593, 
+                27.52474936310913
+              ], 
+              [
+                -114.97688790750784, 
+                27.52560458262301
+              ], 
+              [
+                -114.97638750021811, 
+                27.524968410473427
+              ], 
+              [
+                -114.97698483181951, 
+                27.52335284508965
+              ], 
+              [
+                -114.97650486679917, 
+                27.52278624696454
+              ], 
+              [
+                -114.97343135310933, 
+                27.524860293256097
+              ], 
+              [
+                -114.96909924261368, 
+                27.525869711642233
+              ], 
+              [
+                -114.96770085951083, 
+                27.52513319076724
+              ], 
+              [
+                -114.96564066366722, 
+                27.526162222396948
+              ], 
+              [
+                -114.96499644556349, 
+                27.530761280520718
+              ], 
+              [
+                -114.9579008879241, 
+                27.537337731681713
+              ], 
+              [
+                -114.95798620219794, 
+                27.54154848858342
+              ], 
+              [
+                -114.95941834440882, 
+                27.54598750789175
+              ], 
+              [
+                -114.96446878512273, 
+                27.546548443609385
+              ], 
+              [
+                -114.96739295463426, 
+                27.5486645718787
+              ], 
+              [
+                -114.97245221812952, 
+                27.554269578679367
+              ], 
+              [
+                -114.97868671267845, 
+                27.559542083291408
+              ], 
+              [
+                -114.98557891913325, 
+                27.56371407642098
+              ], 
+              [
+                -114.99858078266587, 
+                27.566679673249194
+              ], 
+              [
+                -115.00831241891876, 
+                27.565163177249104
+              ], 
+              [
+                -115.01478437360554, 
+                27.56685659650584
+              ], 
+              [
+                -115.01571721613377, 
+                27.567433565891328
+              ], 
+              [
+                -115.01836697540922, 
+                27.571147950372985
+              ], 
+              [
+                -115.01979757923652, 
+                27.574417433920125
+              ], 
+              [
+                -115.02050258067567, 
+                27.580134662651716
+              ], 
+              [
+                -115.01854766719433, 
+                27.583369814505513
+              ], 
+              [
+                -115.01636304314165, 
+                27.590977273454097
+              ], 
+              [
+                -115.01766015889291, 
+                27.596075334037405
+              ], 
+              [
+                -115.02008578946062, 
+                27.60066924325417
+              ], 
+              [
+                -115.0216723224463, 
+                27.60568811553591
+              ], 
+              [
+                -115.02203230783371, 
+                27.607823496102426
+              ], 
+              [
+                -115.0222334757078, 
+                27.613339972396016
+              ], 
+              [
+                -115.01984892461986, 
+                27.615539138662307
+              ], 
+              [
+                -115.00826115314199, 
+                27.62403200334693
+              ], 
+              [
+                -114.98358037853774, 
+                27.638434851600483
+              ], 
+              [
+                -114.93646552087108, 
+                27.667807323384032
+              ], 
+              [
+                -114.89685569164455, 
+                27.690555535069215
+              ], 
+              [
+                -114.88545545524235, 
+                27.694865259239005
+              ], 
+              [
+                -114.81122677211512, 
+                27.731147242766244
+              ], 
+              [
+                -114.7554104432904, 
+                27.752370828374175
+              ], 
+              [
+                -114.75540989690897, 
+                27.752370861308226
+              ], 
+              [
+                -114.74525803432596, 
+                27.75285820183664
+              ], 
+              [
+                -114.69988528754386, 
+                27.76104597881994
+              ], 
+              [
+                -114.67898662890157, 
+                27.763193487890245
+              ], 
+              [
+                -114.67868602521038, 
+                27.76259031857514
+              ], 
+              [
+                -114.67872230550655, 
+                27.761840376445402
+              ], 
+              [
+                -114.67970241841884, 
+                27.754818698121763
+              ], 
+              [
+                -114.66514184956591, 
+                27.746417465738872
+              ], 
+              [
+                -114.65915807924057, 
+                27.747883991074474
+              ], 
+              [
+                -114.65475721711908, 
+                27.75044567039097
+              ], 
+              [
+                -114.6369161319296, 
+                27.74616836031152
+              ], 
+              [
+                -114.63114579535262, 
+                27.730309620837925
+              ], 
+              [
+                -114.63091733581112, 
+                27.72201366651799
+              ], 
+              [
+                -114.63109644731733, 
+                27.7186550182695
+              ], 
+              [
+                -114.63600797697214, 
+                27.70130171886787
+              ], 
+              [
+                -114.64229341495214, 
+                27.69247577279559
+              ], 
+              [
+                -114.65020344991812, 
+                27.683588291840724
+              ], 
+              [
+                -114.65219620235618, 
+                27.67893883934995
+              ], 
+              [
+                -114.6547823572097, 
+                27.66930891030259
+              ], 
+              [
+                -114.65333044603379, 
+                27.641225470235486
+              ], 
+              [
+                -114.64842359870305, 
+                27.631816202411777
+              ], 
+              [
+                -114.6466191232534, 
+                27.63028149912048
+              ], 
+              [
+                -114.64422722304873, 
+                27.61940902492772
+              ], 
+              [
+                -114.6440393924263, 
+                27.615507555470586
+              ], 
+              [
+                -114.64614196490022, 
+                27.60970720686162
+              ], 
+              [
+                -114.65679548673445, 
+                27.595191790613423
+              ], 
+              [
+                -114.66590309396231, 
+                27.588449471722118
+              ], 
+              [
+                -114.68251796796851, 
+                27.58371408510621
+              ], 
+              [
+                -114.68821432559594, 
+                27.579774965546335
+              ], 
+              [
+                -114.69039005468183, 
+                27.571600167294147
+              ], 
+              [
+                -114.68969654697979, 
+                27.57062068792392
+              ], 
+              [
+                -114.68771516097371, 
+                27.570136571556613
+              ], 
+              [
+                -114.67452823242692, 
+                27.57025366301036
+              ], 
+              [
+                -114.65799514506284, 
+                27.57655228590281
+              ], 
+              [
+                -114.65018801167615, 
+                27.56300341096236
+              ], 
+              [
+                -114.6464773345325, 
+                27.552251910900257
+              ], 
+              [
+                -114.64352221991727, 
+                27.54567011370072
+              ], 
+              [
+                -114.63485124047824, 
+                27.535998701065484
+              ], 
+              [
+                -114.62862251460041, 
+                27.527982958482983
+              ], 
+              [
+                -114.6276484938728, 
+                27.52420129678654
+              ], 
+              [
+                -114.62716072678174, 
+                27.51824122460051
+              ], 
+              [
+                -114.60045301098154, 
+                27.518987181854076
+              ], 
+              [
+                -114.58521838756616, 
+                27.525533947616644
+              ], 
+              [
+                -114.57858681400127, 
+                27.531268601021413
+              ], 
+              [
+                -114.57743068582644, 
+                27.533323434759062
+              ], 
+              [
+                -114.54940652673919, 
+                27.535237964713176
+              ], 
+              [
+                -114.5433987532461, 
+                27.531203427573182
+              ], 
+              [
+                -114.5383883076029, 
+                27.52876838774584
+              ], 
+              [
+                -114.51598086975059, 
+                27.525897658977268
+              ], 
+              [
+                -114.51193312750051, 
+                27.52631188084426
+              ], 
+              [
+                -114.50206706541323, 
+                27.52872170545898
+              ], 
+              [
+                -114.49371895049154, 
+                27.531898373888367
+              ], 
+              [
+                -114.48476445502472, 
+                27.536598564087843
+              ], 
+              [
+                -114.46242302360469, 
+                27.541237946420903
+              ], 
+              [
+                -114.44689996412517, 
+                27.54548337216291
+              ], 
+              [
+                -114.43941813570216, 
+                27.546596216591983
+              ], 
+              [
+                -114.42561774315462, 
+                27.534459449914912
+              ], 
+              [
+                -114.42530103598641, 
+                27.53288130511855
+              ], 
+              [
+                -114.42392676264609, 
+                27.530929097268643
+              ], 
+              [
+                -114.41650683001016, 
+                27.525366306014725
+              ], 
+              [
+                -114.41393416799492, 
+                27.52519928181038
+              ], 
+              [
+                -114.39711907914858, 
+                27.529258850890248
+              ], 
+              [
+                -114.3840068587093, 
+                27.536726983850272
+              ], 
+              [
+                -114.37737630496129, 
+                27.532851434214198
+              ], 
+              [
+                -114.37498992983421, 
+                27.526589366010988
+              ], 
+              [
+                -114.37076425720377, 
+                27.52400730354697
+              ], 
+              [
+                -114.3670693895539, 
+                27.523998392386595
+              ], 
+              [
+                -114.35959520753744, 
+                27.526273144841397
+              ], 
+              [
+                -114.348524730724, 
+                27.53227789779879
+              ], 
+              [
+                -114.33720064728752, 
+                27.54015542185572
+              ], 
+              [
+                -114.32567395141858, 
+                27.551518075235705
+              ], 
+              [
+                -114.3252760331599, 
+                27.551428771215722
+              ], 
+              [
+                -114.32351746348269, 
+                27.547372375947543
+              ], 
+              [
+                -114.32197161751637, 
+                27.546541428499307
+              ], 
+              [
+                -114.30397023556692, 
+                27.546126959058846
+              ], 
+              [
+                -114.28908474191098, 
+                27.537063003977792
+              ], 
+              [
+                -114.26759773541214, 
+                27.530904899743376
+              ], 
+              [
+                -114.26410967958665, 
+                27.536145613599942
+              ], 
+              [
+                -114.26354954773659, 
+                27.54020828209724
+              ], 
+              [
+                -114.26152277948196, 
+                27.546760124821446
+              ], 
+              [
+                -114.25795037886766, 
+                27.555695878329388
+              ], 
+              [
+                -114.24180190983185, 
+                27.574949962444872
+              ], 
+              [
+                -114.23938283927326, 
+                27.580127707383838
+              ], 
+              [
+                -114.23350153339817, 
+                27.595174638581653
+              ], 
+              [
+                -114.23328879599417, 
+                27.59933772471424
+              ], 
+              [
+                -114.23200222769603, 
+                27.606276213770673
+              ], 
+              [
+                -114.2223758342458, 
+                27.636711750517186
+              ], 
+              [
+                -114.21147912156992, 
+                27.648318090301593
+              ], 
+              [
+                -114.18981707452453, 
+                27.648806318006372
+              ], 
+              [
+                -114.18475222833185, 
+                27.64768122443023
+              ], 
+              [
+                -114.18354505724389, 
+                27.642245978041736
+              ], 
+              [
+                -114.18232154993356, 
+                27.639237757753207
+              ], 
+              [
+                -114.17970543146808, 
+                27.63353015394428
+              ], 
+              [
+                -114.17817038273745, 
+                27.63250835066184
+              ], 
+              [
+                -114.16877092915685, 
+                27.630288823086246
+              ], 
+              [
+                -114.15669151578882, 
+                27.63008298282349
+              ], 
+              [
+                -114.14718279688024, 
+                27.63540525859659
+              ], 
+              [
+                -114.1370555009255, 
+                27.643037774824986
+              ], 
+              [
+                -114.13350241340544, 
+                27.643869464369015
+              ], 
+              [
+                -114.13053253830427, 
+                27.642261154891912
+              ], 
+              [
+                -114.12735214428155, 
+                27.641871720246304
+              ], 
+              [
+                -114.12089422259264, 
+                27.644298178616015
+              ], 
+              [
+                -114.11983197778099, 
+                27.645029006172326
+              ], 
+              [
+                -114.11939850128243, 
+                27.646181919925624
+              ], 
+              [
+                -114.11937663878365, 
+                27.647535157859075
+              ], 
+              [
+                -114.12093908043258, 
+                27.65307013938685
+              ], 
+              [
+                -114.1215520699473, 
+                27.654388137385187
+              ], 
+              [
+                -114.1342976163643, 
+                27.666446817271922
+              ], 
+              [
+                -114.13864892549876, 
+                27.67684067730513
+              ], 
+              [
+                -114.14079521778771, 
+                27.680341992927147
+              ], 
+              [
+                -114.14481414341616, 
+                27.686070087565092
+              ], 
+              [
+                -114.14910031246508, 
+                27.689279766593856
+              ], 
+              [
+                -114.15552743939102, 
+                27.691404822666254
+              ], 
+              [
+                -114.16623071478234, 
+                27.69334959903026
+              ], 
+              [
+                -114.19321527106605, 
+                27.70309834885426
+              ], 
+              [
+                -114.22430371376127, 
+                27.709725013453358
+              ], 
+              [
+                -114.2552566488028, 
+                27.706202067074088
+              ], 
+              [
+                -114.27654284566465, 
+                27.687628635846156
+              ], 
+              [
+                -114.29347411138822, 
+                27.678352121956838
+              ], 
+              [
+                -114.29427669495189, 
+                27.680625102533945
+              ], 
+              [
+                -114.28957554165036, 
+                27.704039191451027
+              ], 
+              [
+                -114.28858720275645, 
+                27.71129489436235
+              ], 
+              [
+                -114.28790106254316, 
+                27.72377707455445
+              ], 
+              [
+                -114.28977092415123, 
+                27.74568258171546
+              ], 
+              [
+                -114.29257602013446, 
+                27.75624235330358
+              ], 
+              [
+                -114.3233880687889, 
+                27.78826608940562
+              ], 
+              [
+                -114.33543673778104, 
+                27.796200897099236
+              ], 
+              [
+                -114.3367473652477, 
+                27.79789535419791
+              ], 
+              [
+                -114.33859294741035, 
+                27.80364891692307
+              ], 
+              [
+                -114.34057265766859, 
+                27.811388910268214
+              ], 
+              [
+                -114.34298036892704, 
+                27.816612916325372
+              ], 
+              [
+                -114.34635297227356, 
+                27.82256373345918
+              ], 
+              [
+                -114.35349666699288, 
+                27.832642761248295
+              ], 
+              [
+                -114.3638982264404, 
+                27.841929995602353
+              ], 
+              [
+                -114.37144998947502, 
+                27.84503407836209
+              ], 
+              [
+                -114.38643273065236, 
+                27.84779100330179
+              ], 
+              [
+                -114.3997627908777, 
+                27.84887611784891
+              ], 
+              [
+                -114.4144313686196, 
+                27.85267845889961
+              ], 
+              [
+                -114.41449674367864, 
+                27.856048628060737
+              ], 
+              [
+                -114.41514203655025, 
+                27.86024210820851
+              ], 
+              [
+                -114.41756362876234, 
+                27.868815033090822
+              ], 
+              [
+                -114.424154091652, 
+                27.880885062414112
+              ], 
+              [
+                -114.42981862836396, 
+                27.88994199801522
+              ], 
+              [
+                -114.43417140751542, 
+                27.89529015286044
+              ], 
+              [
+                -114.43814245617077, 
+                27.899063626392984
+              ], 
+              [
+                -114.43950776581265, 
+                27.9009893142227
+              ], 
+              [
+                -114.44024427532179, 
+                27.902869324626472
+              ], 
+              [
+                -114.44069749687813, 
+                27.90494573532842
+              ], 
+              [
+                -114.44048545125325, 
+                27.911834611581988
+              ], 
+              [
+                -114.43930925038012, 
+                27.91734432541365
+              ], 
+              [
+                -114.4372463634181, 
+                27.923347737491586
+              ], 
+              [
+                -114.43414355730998, 
+                27.92633059615477
+              ], 
+              [
+                -114.41923009253487, 
+                27.93486251695944
+              ], 
+              [
+                -114.39249057558733, 
+                27.944158388984025
+              ], 
+              [
+                -114.38013097498306, 
+                27.936359675844617
+              ], 
+              [
+                -114.37807449865609, 
+                27.93117255346034
+              ], 
+              [
+                -114.36908208460864, 
+                27.914510234535932
+              ], 
+              [
+                -114.34669503334588, 
+                27.88482318504599
+              ], 
+              [
+                -114.3426618635871, 
+                27.880547336327094
+              ], 
+              [
+                -114.33829351627044, 
+                27.878542165245698
+              ], 
+              [
+                -114.3337503105177, 
+                27.877714925307206
+              ], 
+              [
+                -114.32728104863357, 
+                27.87774613565396
+              ], 
+              [
+                -114.32618739112017, 
+                27.868374589178632
+              ], 
+              [
+                -114.3286346677699, 
+                27.8567423799159
+              ], 
+              [
+                -114.33038386664984, 
+                27.851541056539123
+              ], 
+              [
+                -114.33330252421624, 
+                27.847769951438657
+              ], 
+              [
+                -114.33479387104298, 
+                27.844651836438878
+              ], 
+              [
+                -114.33574026330662, 
+                27.841687115813777
+              ], 
+              [
+                -114.33662519176337, 
+                27.836654152477514
+              ], 
+              [
+                -114.3349922767998, 
+                27.823297307830508
+              ], 
+              [
+                -114.3337521457713, 
+                27.817436700247907
+              ], 
+              [
+                -114.33273385883336, 
+                27.814962125118225
+              ], 
+              [
+                -114.32571040514628, 
+                27.809045891194796
+              ], 
+              [
+                -114.31298745621748, 
+                27.796752464057903
+              ], 
+              [
+                -114.30980964638667, 
+                27.792282220029435
+              ], 
+              [
+                -114.30531819877078, 
+                27.783479597373752
+              ], 
+              [
+                -114.30359992735596, 
+                27.778365475077184
+              ], 
+              [
+                -114.30149757349088, 
+                27.77396658301881
+              ], 
+              [
+                -114.29390145002765, 
+                27.767960694780598
+              ], 
+              [
+                -114.27202376865252, 
+                27.7514839512812
+              ], 
+              [
+                -114.24445621055257, 
+                27.732423269091225
+              ], 
+              [
+                -114.23481559669065, 
+                27.728000947334994
+              ], 
+              [
+                -114.22437277127945, 
+                27.73058545541448
+              ], 
+              [
+                -114.20999002443641, 
+                27.737799590150207
+              ], 
+              [
+                -114.19099918091071, 
+                27.751047370974902
+              ], 
+              [
+                -114.18355661871652, 
+                27.7643153192211
+              ], 
+              [
+                -114.1866235525034, 
+                27.771172866090108
+              ], 
+              [
+                -114.20607072583788, 
+                27.770517636409444
+              ], 
+              [
+                -114.21608384816537, 
+                27.768870282772184
+              ], 
+              [
+                -114.21887398969275, 
+                27.768881686781885
+              ], 
+              [
+                -114.22160851170784, 
+                27.76989855904871
+              ], 
+              [
+                -114.22362473293681, 
+                27.772185441112686
+              ], 
+              [
+                -114.2240286544581, 
+                27.773758788848824
+              ], 
+              [
+                -114.22258224170885, 
+                27.77558043243984
+              ], 
+              [
+                -114.2221740078964, 
+                27.778271176070284
+              ], 
+              [
+                -114.22420909777773, 
+                27.78603827060934
+              ], 
+              [
+                -114.23436353786398, 
+                27.79457264915958
+              ], 
+              [
+                -114.2452378890234, 
+                27.798974906133925
+              ], 
+              [
+                -114.25798534055272, 
+                27.805738724158093
+              ], 
+              [
+                -114.26341630508558, 
+                27.809918567396753
+              ], 
+              [
+                -114.29794484668886, 
+                27.845869507259113
+              ], 
+              [
+                -114.30117650654493, 
+                27.851063338317108
+              ], 
+              [
+                -114.30037140827565, 
+                27.8885289417295
+              ], 
+              [
+                -114.29819296630284, 
+                27.89645533183534
+              ], 
+              [
+                -114.29434935241547, 
+                27.898800859047107
+              ], 
+              [
+                -114.28985480445087, 
+                27.90633081004016
+              ], 
+              [
+                -114.28837976629546, 
+                27.912723637614825
+              ], 
+              [
+                -114.28826588957446, 
+                27.918979003231932
+              ], 
+              [
+                -114.27900458843348, 
+                27.9463957203603
+              ], 
+              [
+                -114.27507221807191, 
+                27.9598811994278
+              ], 
+              [
+                -114.27431218140627, 
+                27.96496639330169
+              ], 
+              [
+                -114.27494729878383, 
+                27.966769049086
+              ], 
+              [
+                -114.27460313284823, 
+                27.967532875194138
+              ], 
+              [
+                -114.2724802025725, 
+                27.968019469759742
+              ], 
+              [
+                -114.25211178649306, 
+                27.957373874966155
+              ], 
+              [
+                -114.23823623309514, 
+                27.959778161923136
+              ], 
+              [
+                -114.23783143222659, 
+                27.96386867350119
+              ], 
+              [
+                -114.23844320798257, 
+                27.970871158174887
+              ], 
+              [
+                -114.24260647502004, 
+                27.976736267745153
+              ], 
+              [
+                -114.24745360800864, 
+                27.98120297440055
+              ], 
+              [
+                -114.26476332387702, 
+                27.990282040175583
+              ], 
+              [
+                -114.27837036123047, 
+                27.990204404808804
+              ], 
+              [
+                -114.28059348852236, 
+                27.985422125713853
+              ], 
+              [
+                -114.29024275831907, 
+                27.99823376040586
+              ], 
+              [
+                -114.29792743586366, 
+                28.0053755258
+              ], 
+              [
+                -114.30001124343308, 
+                28.006469332246542
+              ], 
+              [
+                -114.30473741982945, 
+                28.00671332005351
+              ], 
+              [
+                -114.30723714744963, 
+                28.00666510852088
+              ], 
+              [
+                -114.3149324150127, 
+                28.00448508604654
+              ], 
+              [
+                -114.35531589779086, 
+                27.989881169093472
+              ], 
+              [
+                -114.3705721586515, 
+                27.979609236434317
+              ], 
+              [
+                -114.37435208670375, 
+                27.97594265537664
+              ], 
+              [
+                -114.37425204779923, 
+                27.973629507346683
+              ], 
+              [
+                -114.37511265032987, 
+                27.973194872394433
+              ], 
+              [
+                -114.39576422201792, 
+                27.97196493863228
+              ], 
+              [
+                -114.40123280401433, 
+                27.96967009775486
+              ], 
+              [
+                -114.406562048056, 
+                27.96616417768593
+              ], 
+              [
+                -114.40958362404574, 
+                27.966076597868476
+              ], 
+              [
+                -114.41266931254468, 
+                27.96734529701076
+              ], 
+              [
+                -114.41525902097429, 
+                27.96988249899386
+              ], 
+              [
+                -114.41617466038177, 
+                27.972138792118194
+              ], 
+              [
+                -114.41542712040096, 
+                27.974572462092972
+              ], 
+              [
+                -114.41677262174616, 
+                27.984794643081152
+              ], 
+              [
+                -114.41843106522293, 
+                27.990117224749216
+              ], 
+              [
+                -114.42009877221136, 
+                27.992182487192345
+              ], 
+              [
+                -114.42177219125962, 
+                27.992139509873518
+              ], 
+              [
+                -114.42416516825341, 
+                27.990209458414284
+              ], 
+              [
+                -114.42576300533769, 
+                27.986086044965923
+              ], 
+              [
+                -114.42607086437629, 
+                27.979299675867196
+              ], 
+              [
+                -114.44105987235677, 
+                27.97519744557297
+              ], 
+              [
+                -114.44765921736513, 
+                27.974816300792998
+              ], 
+              [
+                -114.45020840070076, 
+                27.975640277350102
+              ], 
+              [
+                -114.45173699900569, 
+                27.97820862813257
+              ], 
+              [
+                -114.45180206125754, 
+                27.981873111493275
+              ], 
+              [
+                -114.45154309913198, 
+                27.983554477851754
+              ], 
+              [
+                -114.45201216389958, 
+                27.985167773169117
+              ], 
+              [
+                -114.45524411793004, 
+                27.990906505803856
+              ], 
+              [
+                -114.4595146777926, 
+                27.994595378842657
+              ], 
+              [
+                -114.47413598992625, 
+                27.988259856563023
+              ], 
+              [
+                -114.48251122890343, 
+                27.983712608321444
+              ], 
+              [
+                -114.48403139157743, 
+                27.982090777256673
+              ], 
+              [
+                -114.48568198718013, 
+                27.97495545172587
+              ], 
+              [
+                -114.48821918880051, 
+                27.972244687489237
+              ], 
+              [
+                -114.49441471596691, 
+                27.969085158167285
+              ], 
+              [
+                -114.5306038847777, 
+                27.982224784588137
+              ], 
+              [
+                -114.56720530717234, 
+                27.988546302882447
+              ], 
+              [
+                -114.58540854788744, 
+                27.9934503761777
+              ], 
+              [
+                -114.59313147764128, 
+                27.9962837976703
+              ], 
+              [
+                -114.60294149011062, 
+                27.998390825400097
+              ], 
+              [
+                -114.61769711893331, 
+                27.99966370637952
+              ], 
+              [
+                -114.62643370572187, 
+                28.002263986573208
+              ], 
+              [
+                -114.63999021353328, 
+                28.008335232820652
+              ], 
+              [
+                -114.64588128040981, 
+                28.012277871240514
+              ], 
+              [
+                -114.64790646134969, 
+                28.014631316150794
+              ], 
+              [
+                -114.64742860202152, 
+                28.018240772131115
+              ], 
+              [
+                -114.64786197008867, 
+                28.03052129221643
+              ], 
+              [
+                -114.64843312675475, 
+                28.040508017014115
+              ], 
+              [
+                -114.64958000031929, 
+                28.052170498390314
+              ], 
+              [
+                -114.65374502855511, 
+                28.073536967568383
+              ], 
+              [
+                -114.66700052465467, 
+                28.116138729930785
+              ], 
+              [
+                -114.67334584215295, 
+                28.133552435908822
+              ], 
+              [
+                -114.67836831470326, 
+                28.146275065607185
+              ], 
+              [
+                -114.70331131980869, 
+                28.200362344589674
+              ], 
+              [
+                -114.71698014267493, 
+                28.22286713219923
+              ], 
+              [
+                -114.72239819266795, 
+                28.230048341779096
+              ], 
+              [
+                -114.72892680880672, 
+                28.2367443814667
+              ], 
+              [
+                -114.74078027851137, 
+                28.246205440599667
+              ], 
+              [
+                -114.79886688460826, 
+                28.283172387680796
+              ], 
+              [
+                -114.84277585924714, 
+                28.32521830729518
+              ], 
+              [
+                -114.86576778303642, 
+                28.345951331763285
+              ], 
+              [
+                -114.8924254831271, 
+                28.369761692981857
+              ], 
+              [
+                -114.90511253846357, 
+                28.37855848888377
+              ], 
+              [
+                -114.9159646361192, 
+                28.389361585901977
+              ], 
+              [
+                -114.92242211473821, 
+                28.39804484972951
+              ], 
+              [
+                -114.92326423775519, 
+                28.402289886049736
+              ], 
+              [
+                -114.92489647135591, 
+                28.404176088337483
+              ], 
+              [
+                -114.94571648637503, 
+                28.416953034407403
+              ], 
+              [
+                -114.95800639787345, 
+                28.42452970143563
+              ], 
+              [
+                -114.96898655609303, 
+                28.43055099944206
+              ], 
+              [
+                -114.99806034287347, 
+                28.437214078298283
+              ], 
+              [
+                -115.01319303825821, 
+                28.43744570858736
+              ], 
+              [
+                -115.02054829627744, 
+                28.43866041931358
+              ], 
+              [
+                -115.03287496367584, 
+                28.44405506518089
+              ], 
+              [
+                -115.05054801077729, 
+                28.456770032135612
+              ], 
+              [
+                -115.05195237195908, 
+                28.45861951229522
+              ], 
+              [
+                -115.0544687501412, 
+                28.466347565540914
+              ], 
+              [
+                -115.0555913353821, 
+                28.468440347571395
+              ], 
+              [
+                -115.09880795831376, 
+                28.512803725004513
+              ], 
+              [
+                -115.1095443986768, 
+                28.521677071519576
+              ], 
+              [
+                -115.11989812579047, 
+                28.529241930732812
+              ], 
+              [
+                -115.13799419154483, 
+                28.53973691829798
+              ], 
+              [
+                -115.15376762450741, 
+                28.54775693715007
+              ], 
+              [
+                -115.17309383508787, 
+                28.555538891840357
+              ], 
+              [
+                -115.1907561760191, 
+                28.554942045081468
+              ], 
+              [
+                -115.19845223069198, 
+                28.5528715519805
+              ], 
+              [
+                -115.20131406813096, 
+                28.551034858504245
+              ], 
+              [
+                -115.20202475749909, 
+                28.55129215524142
+              ], 
+              [
+                -115.19988302209475, 
+                28.554425298454674
+              ], 
+              [
+                -115.19537473156393, 
+                28.55844416164387
+              ], 
+              [
+                -115.17733348312913, 
+                28.569850095177028
+              ], 
+              [
+                -115.12143950999838, 
+                28.594789415025048
+              ], 
+              [
+                -115.11881925827775, 
+                28.596645945923257
+              ], 
+              [
+                -115.11546528185454, 
+                28.600337412663116
+              ], 
+              [
+                -115.1131024800588, 
+                28.604268483946868
+              ], 
+              [
+                -115.10928728129937, 
+                28.613360927662896
+              ], 
+              [
+                -115.10886396406454, 
+                28.614837940816795
+              ], 
+              [
+                -115.108621165591, 
+                28.61751639103862
+              ], 
+              [
+                -115.10748792374092, 
+                28.63642567193875
+              ], 
+              [
+                -115.09889021740145, 
+                28.656704081164524
+              ], 
+              [
+                -115.09708232854375, 
+                28.661591332782063
+              ], 
+              [
+                -115.09578896935183, 
+                28.667186123424003
+              ], 
+              [
+                -115.0956974746971, 
+                28.668507624471395
+              ], 
+              [
+                -115.09668775976469, 
+                28.672360554519763
+              ], 
+              [
+                -115.09640571206705, 
+                28.68469203253439
+              ], 
+              [
+                -115.09368518929935, 
+                28.708335506443763
+              ], 
+              [
+                -115.09136113709143, 
+                28.715034926188707
+              ], 
+              [
+                -115.09094596521152, 
+                28.720390346322148
+              ], 
+              [
+                -115.08931442758107, 
+                28.76177844170097
+              ], 
+              [
+                -115.08971298517518, 
+                28.76723577577967
+              ], 
+              [
+                -115.09056974456648, 
+                28.77352978973136
+              ], 
+              [
+                -115.09196117608704, 
+                28.780125272027195
+              ], 
+              [
+                -115.09505630869054, 
+                28.799721708081176
+              ], 
+              [
+                -115.09532526808735, 
+                28.80565029979424
+              ], 
+              [
+                -115.0936917569865, 
+                28.808653887080535
+              ], 
+              [
+                -115.02702752273953, 
+                28.803492138969997
+              ], 
+              [
+                -115.00223154383686, 
+                28.800249282243975
+              ], 
+              [
+                -114.98650770229739, 
+                28.799675102878847
+              ], 
+              [
+                -114.97814406281671, 
+                28.80133091385369
+              ], 
+              [
+                -114.94552400574875, 
+                28.803649157965154
+              ], 
+              [
+                -114.8856338278473, 
+                28.817804547915372
+              ], 
+              [
+                -114.87170975822166, 
+                28.822454479004655
+              ], 
+              [
+                -114.85986149063373, 
+                28.82389120697143
+              ], 
+              [
+                -114.83374175963736, 
+                28.832521031516855
+              ], 
+              [
+                -114.81240048135533, 
+                28.837578465748198
+              ], 
+              [
+                -114.77451369771522, 
+                28.844085147137303
+              ], 
+              [
+                -114.76689333856349, 
+                28.846072213049045
+              ], 
+              [
+                -114.75173983712392, 
+                28.853358029855027
+              ], 
+              [
+                -114.74673392026196, 
+                28.85654024704459
+              ], 
+              [
+                -114.7367482194672, 
+                28.86579077778317
+              ], 
+              [
+                -114.72102387873366, 
+                28.87387258486892
+              ], 
+              [
+                -114.70812078544319, 
+                28.887165000116163
+              ], 
+              [
+                -114.70240634618173, 
+                28.895370761967307
+              ], 
+              [
+                -114.69748723770489, 
+                28.901146077656573
+              ], 
+              [
+                -114.68072757264648, 
+                28.914313325910886
+              ], 
+              [
+                -114.66975760789839, 
+                28.926098402782973
+              ], 
+              [
+                -114.6567209931632, 
+                28.942516237144808
+              ], 
+              [
+                -114.65059076793814, 
+                28.95108785970934
+              ], 
+              [
+                -114.63778602389934, 
+                28.97655895700526
+              ], 
+              [
+                -114.61361227094123, 
+                29.015418061672655
+              ], 
+              [
+                -114.60357426968083, 
+                29.019795217333574
+              ], 
+              [
+                -114.6027469991949, 
+                29.020690432587397
+              ], 
+              [
+                -114.5886104958308, 
+                29.053149654305493
+              ], 
+              [
+                -114.58454659775008, 
+                29.064202418930797
+              ], 
+              [
+                -114.5836764179361, 
+                29.072126927519896
+              ], 
+              [
+                -114.58403816841138, 
+                29.076325733620962
+              ], 
+              [
+                -114.5836419395976, 
+                29.082336170564755
+              ], 
+              [
+                -114.57951130624477, 
+                29.103844031340238
+              ], 
+              [
+                -114.5769215336583, 
+                29.114297818432878
+              ], 
+              [
+                -114.57610455855335, 
+                29.11478388237841
+              ], 
+              [
+                -114.57447657638258, 
+                29.117751258674634
+              ], 
+              [
+                -114.57314262900964, 
+                29.126147046034422
+              ], 
+              [
+                -114.57211895590468, 
+                29.14074290405397
+              ], 
+              [
+                -114.5728209598304, 
+                29.143947065928945
+              ], 
+              [
+                -114.57469851611373, 
+                29.149132211071624
+              ], 
+              [
+                -114.58206827700137, 
+                29.15496802041778
+              ], 
+              [
+                -114.58955160341483, 
+                29.163218726500865
+              ], 
+              [
+                -114.58937149333366, 
+                29.165210886969344
+              ], 
+              [
+                -114.58861078183736, 
+                29.16674588220436
+              ], 
+              [
+                -114.57468868899122, 
+                29.173304446884632
+              ], 
+              [
+                -114.5587342862885, 
+                29.213432380332904
+              ], 
+              [
+                -114.55969219962752, 
+                29.217014913096666
+              ], 
+              [
+                -114.56630766524984, 
+                29.22434110456708
+              ], 
+              [
+                -114.57448928165994, 
+                29.22884276112336
+              ], 
+              [
+                -114.5757383492538, 
+                29.22920263977874
+              ], 
+              [
+                -114.57849069959363, 
+                29.22823320484775
+              ], 
+              [
+                -114.57532291980804, 
+                29.24242123676042
+              ], 
+              [
+                -114.56732591164469, 
+                29.25500685615032
+              ], 
+              [
+                -114.55981342227311, 
+                29.263045479590705
+              ], 
+              [
+                -114.55431173053512, 
+                29.265738308371223
+              ], 
+              [
+                -114.54855632069743, 
+                29.269572746478808
+              ], 
+              [
+                -114.53748612294365, 
+                29.289160834806257
+              ], 
+              [
+                -114.5287227846182, 
+                29.30232925762546
+              ], 
+              [
+                -114.51448647240112, 
+                29.320991733736218
+              ], 
+              [
+                -114.51291404127423, 
+                29.32203601385398
+              ], 
+              [
+                -114.51202544499174, 
+                29.32005087151489
+              ], 
+              [
+                -114.51081219516283, 
+                29.319924175720857
+              ], 
+              [
+                -114.50990141148776, 
+                29.32070941244827
+              ], 
+              [
+                -114.49395495617603, 
+                29.34961964638168
+              ], 
+              [
+                -114.49259801543066, 
+                29.35338921968994
+              ], 
+              [
+                -114.4915044362103, 
+                29.36243967492717
+              ], 
+              [
+                -114.49273276815848, 
+                29.36854150210055
+              ], 
+              [
+                -114.49236760606715, 
+                29.380844360403614
+              ], 
+              [
+                -114.49108853390199, 
+                29.3817523934626
+              ], 
+              [
+                -114.481532102497, 
+                29.382787178049316
+              ], 
+              [
+                -114.47481129915263, 
+                29.389924211046218
+              ], 
+              [
+                -114.47561386578056, 
+                29.392961769384296
+              ], 
+              [
+                -114.47611123326695, 
+                29.397989019646282
+              ], 
+              [
+                -114.46978411520548, 
+                29.413763059021125
+              ], 
+              [
+                -114.44636120647213, 
+                29.439913002679447
+              ], 
+              [
+                -114.43742933506647, 
+                29.452492182892296
+              ], 
+              [
+                -114.42570793115966, 
+                29.47064154482807
+              ], 
+              [
+                -114.42079324962987, 
+                29.48202547573772
+              ], 
+              [
+                -114.41726901246165, 
+                29.49215886360455
+              ], 
+              [
+                -114.41199058019207, 
+                29.503153623143213
+              ], 
+              [
+                -114.40239234965848, 
+                29.51160621548721
+              ], 
+              [
+                -114.40088686590508, 
+                29.512376687692722
+              ], 
+              [
+                -114.39995395561016, 
+                29.512039042726407
+              ], 
+              [
+                -114.39953633368383, 
+                29.510171523540926
+              ], 
+              [
+                -114.3998342946184, 
+                29.508115359135562
+              ], 
+              [
+                -114.4001667050901, 
+                29.506148131407492
+              ], 
+              [
+                -114.40008961052827, 
+                29.499798857425585
+              ], 
+              [
+                -114.39761475207274, 
+                29.495519260285477
+              ], 
+              [
+                -114.39211729479221, 
+                29.49048467568389
+              ], 
+              [
+                -114.38854772412603, 
+                29.48837023506134
+              ], 
+              [
+                -114.3870874348801, 
+                29.491786669478063
+              ], 
+              [
+                -114.38696335827672, 
+                29.494507574567553
+              ], 
+              [
+                -114.38569208967957, 
+                29.496524086202587
+              ], 
+              [
+                -114.37498308924292, 
+                29.49497948025447
+              ], 
+              [
+                -114.37223913738134, 
+                29.4910116412686
+              ], 
+              [
+                -114.36995487699394, 
+                29.48572132517475
+              ], 
+              [
+                -114.36512217968462, 
+                29.48360078858785
+              ], 
+              [
+                -114.34747606963293, 
+                29.483420702421007
+              ], 
+              [
+                -114.32760978957057, 
+                29.486965354737283
+              ], 
+              [
+                -114.3139466521965, 
+                29.491710849167895
+              ], 
+              [
+                -114.3055757257663, 
+                29.496452779287708
+              ], 
+              [
+                -114.27941154101475, 
+                29.52218881687595
+              ], 
+              [
+                -114.2699374366298, 
+                29.532884779756166
+              ], 
+              [
+                -114.26587904598937, 
+                29.527936934849194
+              ], 
+              [
+                -114.26376971265239, 
+                29.528809736939998
+              ], 
+              [
+                -114.24255591072108, 
+                29.543382698738473
+              ], 
+              [
+                -114.22663360896897, 
+                29.55883755842845
+              ], 
+              [
+                -114.1968953212507, 
+                29.59269048643456
+              ], 
+              [
+                -114.19096330510935, 
+                29.59967201596654
+              ], 
+              [
+                -114.19038150539093, 
+                29.600966156404024
+              ], 
+              [
+                -114.189804775031, 
+                29.60513255974316
+              ], 
+              [
+                -114.1513450838525, 
+                29.65243069872523
+              ], 
+              [
+                -114.12918539236041, 
+                29.6890637395957
+              ], 
+              [
+                -114.10896697633768, 
+                29.71814257182765
+              ], 
+              [
+                -114.09251504992004, 
+                29.738811001979617
+              ], 
+              [
+                -114.07155293352605, 
+                29.77050127850308
+              ], 
+              [
+                -114.06242567593272, 
+                29.77856754624599
+              ], 
+              [
+                -114.05404229645775, 
+                29.78482286649885
+              ], 
+              [
+                -114.00665378768802, 
+                29.81331243614814
+              ], 
+              [
+                -114.00111322959866, 
+                29.816323741258376
+              ], 
+              [
+                -113.99745320940505, 
+                29.817490515246806
+              ], 
+              [
+                -113.9981339823149, 
+                29.809322301415182
+              ], 
+              [
+                -113.99706191079878, 
+                29.80496500198182
+              ], 
+              [
+                -113.99321203450219, 
+                29.795612171620338
+              ], 
+              [
+                -113.99717486078985, 
+                29.7903026286825
+              ], 
+              [
+                -114.0169361587282, 
+                29.784792595049343
+              ], 
+              [
+                -114.02303051384264, 
+                29.78226462306109
+              ], 
+              [
+                -114.0234937544397, 
+                29.778816206310808
+              ], 
+              [
+                -114.02396173633917, 
+                29.770891835622106
+              ], 
+              [
+                -114.01630377690078, 
+                29.761097973384956
+              ], 
+              [
+                -114.01262328139275, 
+                29.761319864663704
+              ], 
+              [
+                -113.99126143010761, 
+                29.763499455353326
+              ], 
+              [
+                -113.97028188053677, 
+                29.76875725186389
+              ], 
+              [
+                -113.96667316188653, 
+                29.770431991231984
+              ], 
+              [
+                -113.96349456450803, 
+                29.773492840338
+              ], 
+              [
+                -113.96577845528589, 
+                29.779765314322272
+              ], 
+              [
+                -113.96757883199727, 
+                29.78093686867079
+              ], 
+              [
+                -113.96786915450997, 
+                29.783921609342077
+              ], 
+              [
+                -113.91800425440034, 
+                29.786371439777305
+              ], 
+              [
+                -113.9105170811256, 
+                29.78787620333081
+              ], 
+              [
+                -113.8773422856084, 
+                29.797185543731693
+              ], 
+              [
+                -113.87729564199496, 
+                29.802637978961535
+              ], 
+              [
+                -113.87830562344708, 
+                29.80741161493894
+              ], 
+              [
+                -113.87793652892313, 
+                29.80915699763054
+              ], 
+              [
+                -113.8566742575259, 
+                29.808317605345465
+              ], 
+              [
+                -113.84253044779024, 
+                29.811667102191436
+              ], 
+              [
+                -113.82373743745393, 
+                29.8195681748768
+              ], 
+              [
+                -113.80189145659567, 
+                29.832453710630908
+              ], 
+              [
+                -113.79561998397755, 
+                29.83684302916463
+              ], 
+              [
+                -113.78517328778946, 
+                29.84519708466457
+              ], 
+              [
+                -113.77675649407193, 
+                29.85361062916719
+              ], 
+              [
+                -113.74792337924133, 
+                29.884343525548267
+              ], 
+              [
+                -113.73686357569729, 
+                29.899020683403375
+              ], 
+              [
+                -113.73311105508836, 
+                29.904724063526032
+              ], 
+              [
+                -113.71446364642925, 
+                29.93747407587696
+              ], 
+              [
+                -113.69870502128926, 
+                29.975167727576004
+              ], 
+              [
+                -113.69289775009813, 
+                29.988033685893686
+              ], 
+              [
+                -113.67925614619223, 
+                30.01672305014655
+              ], 
+              [
+                -113.66015180494477, 
+                30.05445727390649
+              ], 
+              [
+                -113.65544387932862, 
+                30.061041333030165
+              ], 
+              [
+                -113.63820081191979, 
+                30.081594497396424
+              ], 
+              [
+                -113.63470547509438, 
+                30.085017991276075
+              ], 
+              [
+                -113.62741552620204, 
+                30.090039944339285
+              ], 
+              [
+                -113.62604418343383, 
+                30.081649395831086
+              ], 
+              [
+                -113.62435303511371, 
+                30.073930151740555
+              ], 
+              [
+                -113.62331746733274, 
+                30.071766466286647
+              ], 
+              [
+                -113.61862705882415, 
+                30.065333641860967
+              ], 
+              [
+                -113.61752265567766, 
+                30.06464096715016
+              ], 
+              [
+                -113.59762672994759, 
+                30.055497118414475
+              ], 
+              [
+                -113.590306302455, 
+                30.053574424083845
+              ], 
+              [
+                -113.58472690345232, 
+                30.053395425719575
+              ], 
+              [
+                -113.58198377741013, 
+                30.054587518520503
+              ], 
+              [
+                -113.56865542987212, 
+                30.05620392680532
+              ], 
+              [
+                -113.54652831795458, 
+                30.05197987126383
+              ], 
+              [
+                -113.53735007204587, 
+                30.03525535872125
+              ], 
+              [
+                -113.53830051145798, 
+                30.03198524002624
+              ], 
+              [
+                -113.53872626768407, 
+                30.027393459718162
+              ], 
+              [
+                -113.53858184600176, 
+                30.026456503027987
+              ], 
+              [
+                -113.53387592217933, 
+                30.021356294626234
+              ], 
+              [
+                -113.52553355178365, 
+                30.0293235942651
+              ], 
+              [
+                -113.52107472355776, 
+                30.039795496155964
+              ], 
+              [
+                -113.51647000987137, 
+                30.03440804580405
+              ], 
+              [
+                -113.51458107794825, 
+                30.032940053866763
+              ], 
+              [
+                -113.50634623191829, 
+                30.035266846855688
+              ], 
+              [
+                -113.50279510572386, 
+                30.037877566409275
+              ], 
+              [
+                -113.49616356900057, 
+                30.038181890051103
+              ], 
+              [
+                -113.4797022850653, 
+                30.035318374885115
+              ], 
+              [
+                -113.46854722285556, 
+                30.03262497235746
+              ], 
+              [
+                -113.46492892818453, 
+                30.02979935913218
+              ], 
+              [
+                -113.46354423078931, 
+                30.018882530003513
+              ], 
+              [
+                -113.46183467254995, 
+                30.013289080453816
+              ], 
+              [
+                -113.45395103418582, 
+                30.002577163406876
+              ], 
+              [
+                -113.45256321194135, 
+                30.000176930644976
+              ], 
+              [
+                -113.451718040082, 
+                29.997327822781102
+              ], 
+              [
+                -113.45105911689411, 
+                29.993168546690985
+              ], 
+              [
+                -113.45366290949151, 
+                29.986458987387834
+              ], 
+              [
+                -113.45549533443074, 
+                29.982890410686867
+              ], 
+              [
+                -113.4681720941539, 
+                29.972193684018677
+              ], 
+              [
+                -113.47693101135334, 
+                29.960376875597007
+              ], 
+              [
+                -113.47742380791728, 
+                29.956724271431785
+              ], 
+              [
+                -113.48342927708516, 
+                29.943235834405343
+              ], 
+              [
+                -113.4927175240453, 
+                29.93234120156625
+              ], 
+              [
+                -113.50020587437545, 
+                29.93205396075754
+              ], 
+              [
+                -113.51122464284958, 
+                29.928879436884518
+              ], 
+              [
+                -113.51510035470754, 
+                29.9270080379235
+              ], 
+              [
+                -113.51687266178536, 
+                29.920022005504382
+              ], 
+              [
+                -113.51709063111159, 
+                29.899235819648148
+              ], 
+              [
+                -113.51676536005559, 
+                29.89720442309818
+              ], 
+              [
+                -113.51646358827243, 
+                29.89601839815865
+              ], 
+              [
+                -113.50754023304202, 
+                29.882151793968582
+              ], 
+              [
+                -113.50550010841012, 
+                29.866254070153676
+              ], 
+              [
+                -113.50677339389651, 
+                29.864914595366837
+              ], 
+              [
+                -113.50666520584645, 
+                29.861121037185093
+              ], 
+              [
+                -113.50583076132631, 
+                29.85726216635663
+              ], 
+              [
+                -113.50462701651551, 
+                29.85657057870396
+              ], 
+              [
+                -113.49779516787271, 
+                29.857336671243107
+              ], 
+              [
+                -113.49474939556355, 
+                29.859697639126704
+              ], 
+              [
+                -113.49172308193471, 
+                29.86581573164348
+              ], 
+              [
+                -113.49106000685134, 
+                29.869105738457225
+              ], 
+              [
+                -113.46913551042098, 
+                29.87388029344014
+              ], 
+              [
+                -113.45509127016894, 
+                29.87305658533204
+              ], 
+              [
+                -113.44108383728732, 
+                29.886150775735924
+              ], 
+              [
+                -113.43595294696048, 
+                29.893144107717447
+              ], 
+              [
+                -113.43447596890182, 
+                29.898717552352778
+              ], 
+              [
+                -113.43442359154697, 
+                29.900381074196137
+              ], 
+              [
+                -113.43478879466889, 
+                29.905247681094725
+              ], 
+              [
+                -113.43612229477445, 
+                29.91281282565473
+              ], 
+              [
+                -113.43790548419462, 
+                29.91933191024801
+              ], 
+              [
+                -113.43696419752074, 
+                29.931662645913587
+              ], 
+              [
+                -113.43400819671017, 
+                29.934010262993088
+              ], 
+              [
+                -113.4275242079643, 
+                29.94443305187874
+              ], 
+              [
+                -113.42496632475981, 
+                29.950224627411448
+              ], 
+              [
+                -113.42312602308142, 
+                29.957622961523935
+              ], 
+              [
+                -113.4206908210975, 
+                29.962816916291008
+              ], 
+              [
+                -113.40858898736013, 
+                29.969960405463453
+              ], 
+              [
+                -113.40833692579885, 
+                29.96817062081352
+              ], 
+              [
+                -113.40731290181434, 
+                29.965321276926897
+              ], 
+              [
+                -113.398715138488, 
+                29.9544147547765
+              ], 
+              [
+                -113.39694510923268, 
+                29.953001213944415
+              ], 
+              [
+                -113.39551811701747, 
+                29.95313878053932
+              ], 
+              [
+                -113.39434513040644, 
+                29.955282578901215
+              ], 
+              [
+                -113.39287173286364, 
+                29.960068320295438
+              ], 
+              [
+                -113.39228566501937, 
+                29.96378434772033
+              ], 
+              [
+                -113.39247615698932, 
+                29.96703275863607
+              ], 
+              [
+                -113.39381936159532, 
+                29.971919528066195
+              ], 
+              [
+                -113.3967155149548, 
+                29.977749241506398
+              ], 
+              [
+                -113.41391838138972, 
+                29.99202906177996
+              ], 
+              [
+                -113.41438170767645, 
+                29.993022883847377
+              ], 
+              [
+                -113.41463158681023, 
+                29.994569402971347
+              ], 
+              [
+                -113.4131594824351, 
+                29.99886628143624
+              ], 
+              [
+                -113.4124138349357, 
+                29.999913719157906
+              ], 
+              [
+                -113.3982656662771, 
+                30.01680173480654
+              ], 
+              [
+                -113.39765000617204, 
+                30.01640425478346
+              ], 
+              [
+                -113.3971524349342, 
+                30.01300647290059
+              ], 
+              [
+                -113.39612314993425, 
+                30.010305438588198
+              ], 
+              [
+                -113.39224954549213, 
+                30.001811004575778
+              ], 
+              [
+                -113.39111480003368, 
+                30.000117378791998
+              ], 
+              [
+                -113.38912134681009, 
+                29.999106412583078
+              ], 
+              [
+                -113.38417707285855, 
+                30.000720213790753
+              ], 
+              [
+                -113.38323843603891, 
+                30.006407125464094
+              ], 
+              [
+                -113.3833852436452, 
+                30.010140547467728
+              ], 
+              [
+                -113.3849272897167, 
+                30.01730568671787
+              ], 
+              [
+                -113.38945332348636, 
+                30.025590802424382
+              ], 
+              [
+                -113.38683969120287, 
+                30.03435701638461
+              ], 
+              [
+                -113.38250414630947, 
+                30.035623767848218
+              ], 
+              [
+                -113.36765453745129, 
+                30.02890612934705
+              ], 
+              [
+                -113.33956164655487, 
+                30.014014140333874
+              ], 
+              [
+                -113.31103783490569, 
+                29.992745364968407
+              ], 
+              [
+                -113.30893526625611, 
+                29.990959159719804
+              ], 
+              [
+                -113.30438806627612, 
+                29.98520862518495
+              ], 
+              [
+                -113.30109933985348, 
+                29.977730583461152
+              ], 
+              [
+                -113.30423422018733, 
+                29.97112769981549
+              ], 
+              [
+                -113.30534162965957, 
+                29.963814001029018
+              ], 
+              [
+                -113.30831139934932, 
+                29.93609228291016
+              ], 
+              [
+                -113.30460230614761, 
+                29.920891757309963
+              ], 
+              [
+                -113.2917042758797, 
+                29.907553164533297
+              ], 
+              [
+                -113.28183713020388, 
+                29.90356777556171
+              ], 
+              [
+                -113.2791200551033, 
+                29.90359704802693
+              ], 
+              [
+                -113.27688414325104, 
+                29.905664710212505
+              ], 
+              [
+                -113.26877425713192, 
+                29.909965340664083
+              ], 
+              [
+                -113.25708977238519, 
+                29.91384141779082
+              ], 
+              [
+                -113.2415367259575, 
+                29.907653950727823
+              ], 
+              [
+                -113.23565233112156, 
+                29.902847132782505
+              ], 
+              [
+                -113.23430698747329, 
+                29.899759239957564
+              ], 
+              [
+                -113.23540769042872, 
+                29.890998084328782
+              ], 
+              [
+                -113.22594414889674, 
+                29.88884037009453
+              ], 
+              [
+                -113.22407802010376, 
+                29.889329900448928
+              ], 
+              [
+                -113.21828220945706, 
+                29.89488601747718
+              ], 
+              [
+                -113.21057335870006, 
+                29.903629862651787
+              ], 
+              [
+                -113.20121651952866, 
+                29.918570482886775
+              ], 
+              [
+                -113.19910753339136, 
+                29.9245933964224
+              ], 
+              [
+                -113.1968240066064, 
+                29.934401795116578
+              ], 
+              [
+                -113.19555523590353, 
+                29.941961647397
+              ], 
+              [
+                -113.19550654986875, 
+                29.94405426916154
+              ], 
+              [
+                -113.19590216864228, 
+                29.945098215998218
+              ], 
+              [
+                -113.1958376751298, 
+                29.946073909283182
+              ], 
+              [
+                -113.1898547395084, 
+                29.95052659741619
+              ], 
+              [
+                -113.17268743297946, 
+                29.95804040608369
+              ], 
+              [
+                -113.16859371560794, 
+                29.959053302151545
+              ], 
+              [
+                -113.13393419127206, 
+                29.961548119877328
+              ], 
+              [
+                -113.12783180513024, 
+                29.962953029017573
+              ], 
+              [
+                -113.11900821524131, 
+                29.96672342833367
+              ], 
+              [
+                -113.10935763087163, 
+                29.97248873410647
+              ], 
+              [
+                -113.10477477716461, 
+                29.976135590587283
+              ], 
+              [
+                -113.09494543604649, 
+                29.985914548303207
+              ], 
+              [
+                -113.09279862198396, 
+                29.98714390683297
+              ], 
+              [
+                -113.07755510800443, 
+                29.99167020209453
+              ], 
+              [
+                -113.06307885697302, 
+                29.988921342434267
+              ], 
+              [
+                -113.0574173307235, 
+                29.985858318623293
+              ], 
+              [
+                -113.01872196234038, 
+                29.985260325862683
+              ], 
+              [
+                -113.0127592429512, 
+                29.986183339168626
+              ], 
+              [
+                -112.99063364868407, 
+                29.992021431757035
+              ], 
+              [
+                -112.96894856628563, 
+                29.989626076337615
+              ], 
+              [
+                -112.93626676881615, 
+                29.98322235574857
+              ], 
+              [
+                -112.93010787849299, 
+                29.97907521171457
+              ], 
+              [
+                -112.92151751922883, 
+                29.96719138431739
+              ], 
+              [
+                -112.92144439050927, 
+                29.96561691021263
+              ], 
+              [
+                -112.92178257757983, 
+                29.96421332391997
+              ], 
+              [
+                -112.92882603401195, 
+                29.961786861119425
+              ], 
+              [
+                -112.93228743397454, 
+                29.95979479789226
+              ], 
+              [
+                -112.93497935150943, 
+                29.9567873946425
+              ], 
+              [
+                -112.94359858167282, 
+                29.928974981698122
+              ], 
+              [
+                -112.94327381719226, 
+                29.92186195576985
+              ], 
+              [
+                -112.95561200819998, 
+                29.907115313734547
+              ], 
+              [
+                -112.95545136459958, 
+                29.90473601296772
+              ], 
+              [
+                -112.95025586849953, 
+                29.888325804344625
+              ], 
+              [
+                -112.94361762494793, 
+                29.876142600331608
+              ], 
+              [
+                -112.94092007442853, 
+                29.87302046345872
+              ], 
+              [
+                -112.9317212013113, 
+                29.871411201795443
+              ], 
+              [
+                -112.93038231889354, 
+                29.872895525739146
+              ], 
+              [
+                -112.92892451360085, 
+                29.877136675438702
+              ], 
+              [
+                -112.92759095007513, 
+                29.877745081952703
+              ], 
+              [
+                -112.9152092551632, 
+                29.87101914515011
+              ], 
+              [
+                -112.90480096203505, 
+                29.870236265766835
+              ], 
+              [
+                -112.8999645210076, 
+                29.870907462873653
+              ], 
+              [
+                -112.89641098389455, 
+                29.872411178382958
+              ], 
+              [
+                -112.88210914473007, 
+                29.870065936372768
+              ], 
+              [
+                -112.88214320473357, 
+                29.867071126136647
+              ], 
+              [
+                -112.88184633107635, 
+                29.864582224735997
+              ], 
+              [
+                -112.87535623551875, 
+                29.864286913321113
+              ], 
+              [
+                -112.86789406195057, 
+                29.8677640863197
+              ], 
+              [
+                -112.85230097509495, 
+                29.867366042706433
+              ], 
+              [
+                -112.84162562651171, 
+                29.865489125433182
+              ], 
+              [
+                -112.83530487985094, 
+                29.86796196918158
+              ], 
+              [
+                -112.83125427218734, 
+                29.871740869448523
+              ], 
+              [
+                -112.82720229260718, 
+                29.87324431693968
+              ], 
+              [
+                -112.82441502075407, 
+                29.872912937548858
+              ], 
+              [
+                -112.82311394775107, 
+                29.87155181020959
+              ], 
+              [
+                -112.82326347515374, 
+                29.870613421200538
+              ], 
+              [
+                -112.82504461904564, 
+                29.86962273975235
+              ], 
+              [
+                -112.826658655147, 
+                29.86697264898774
+              ], 
+              [
+                -112.82955293454661, 
+                29.85813082612478
+              ], 
+              [
+                -112.83023386674597, 
+                29.854519044781185
+              ], 
+              [
+                -112.82499737808399, 
+                29.849528374127875
+              ], 
+              [
+                -112.82337198587662, 
+                29.846102747574342
+              ], 
+              [
+                -112.82977224266627, 
+                29.83996205461507
+              ], 
+              [
+                -112.83721423857254, 
+                29.837648109081258
+              ], 
+              [
+                -112.85100884469163, 
+                29.829241222479325
+              ], 
+              [
+                -112.85293032708563, 
+                29.82454503007952
+              ], 
+              [
+                -112.85343887999761, 
+                29.819269660700638
+              ], 
+              [
+                -112.84455842499484, 
+                29.812671961002135
+              ], 
+              [
+                -112.84052295583739, 
+                29.812004698904712
+              ], 
+              [
+                -112.83594660611034, 
+                29.815001278676863
+              ], 
+              [
+                -112.82696303760547, 
+                29.817960316525987
+              ], 
+              [
+                -112.80610054118861, 
+                29.821715809507324
+              ], 
+              [
+                -112.79890682934168, 
+                29.824548337622783
+              ], 
+              [
+                -112.79082992829662, 
+                29.825732283654578
+              ], 
+              [
+                -112.77273781920921, 
+                29.825002831014753
+              ], 
+              [
+                -112.7553244450674, 
+                29.82131635079014
+              ], 
+              [
+                -112.74744145272498, 
+                29.819352551116157
+              ], 
+              [
+                -112.73489843019841, 
+                29.812505159770048
+              ], 
+              [
+                -112.7287206595552, 
+                29.816267956326502
+              ], 
+              [
+                -112.73051655189771, 
+                29.823794391557506
+              ], 
+              [
+                -112.73175078982545, 
+                29.83120616509363
+              ], 
+              [
+                -112.73195717894964, 
+                29.83686548738297
+              ], 
+              [
+                -112.72387129524044, 
+                29.84297264922539
+              ], 
+              [
+                -112.72304704036937, 
+                29.84256526135101
+              ], 
+              [
+                -112.72188989509583, 
+                29.840403173919764
+              ], 
+              [
+                -112.72116484904403, 
+                29.835666484064017
+              ], 
+              [
+                -112.71213232372426, 
+                29.836086566796645
+              ], 
+              [
+                -112.70899010860454, 
+                29.847471367744994
+              ], 
+              [
+                -112.69938630540412, 
+                29.854980489942502
+              ], 
+              [
+                -112.69021147105052, 
+                29.85977030424484
+              ], 
+              [
+                -112.68710151529835, 
+                29.859120972890654
+              ], 
+              [
+                -112.68099234962055, 
+                29.86292301026828
+              ], 
+              [
+                -112.67518484258441, 
+                29.872257480266185
+              ], 
+              [
+                -112.67495268867182, 
+                29.876468110151592
+              ], 
+              [
+                -112.67324918462634, 
+                29.882140736840725
+              ], 
+              [
+                -112.66647734361467, 
+                29.882734498070544
+              ], 
+              [
+                -112.65580128400791, 
+                29.885286452547216
+              ], 
+              [
+                -112.65047077492464, 
+                29.888157212485233
+              ], 
+              [
+                -112.62175559243339, 
+                29.89511811173577
+              ], 
+              [
+                -112.6100498917454, 
+                29.895920932246884
+              ], 
+              [
+                -112.6094315837792, 
+                29.89559804750313
+              ], 
+              [
+                -112.60490051008699, 
+                29.886565880428982
+              ], 
+              [
+                -112.60746308204338, 
+                29.87504729346417
+              ], 
+              [
+                -112.60320234206657, 
+                29.870537650883925
+              ], 
+              [
+                -112.59527360277838, 
+                29.874907774200075
+              ], 
+              [
+                -112.58739554073024, 
+                29.87710650932285
+              ], 
+              [
+                -112.57738360776237, 
+                29.876648180905036
+              ], 
+              [
+                -112.56574342057209, 
+                29.87767967214122
+              ], 
+              [
+                -112.56449202701096, 
+                29.878330221217716
+              ], 
+              [
+                -112.5605738851417, 
+                29.88270967518352
+              ], 
+              [
+                -112.53564320320739, 
+                29.922517029539044
+              ], 
+              [
+                -112.52635807719282, 
+                29.91579564636319
+              ], 
+              [
+                -112.52489154057704, 
+                29.91572208000127
+              ], 
+              [
+                -112.52178528196204, 
+                29.91684712419034
+              ], 
+              [
+                -112.51471631492966, 
+                29.921917028886288
+              ], 
+              [
+                -112.5133484309001, 
+                29.924445650666748
+              ], 
+              [
+                -112.51168805252965, 
+                29.925891022386494
+              ], 
+              [
+                -112.50361871240922, 
+                29.929944855439892
+              ], 
+              [
+                -112.50289176979419, 
+                29.929901132488084
+              ], 
+              [
+                -112.50135350093768, 
+                29.92843801721471
+              ], 
+              [
+                -112.48984719647984, 
+                29.92723146145587
+              ], 
+              [
+                -112.48741429899981, 
+                29.928120685797037
+              ], 
+              [
+                -112.48332401465413, 
+                29.93055969067243
+              ], 
+              [
+                -112.4816505457579, 
+                29.932274484482654
+              ], 
+              [
+                -112.48012117800938, 
+                29.935778142554216
+              ], 
+              [
+                -112.47367829010818, 
+                29.94191957360445
+              ], 
+              [
+                -112.46754025715182, 
+                29.936689514430206
+              ], 
+              [
+                -112.4642482269982, 
+                29.93214467621095
+              ], 
+              [
+                -112.46119375564776, 
+                29.931845628200097
+              ], 
+              [
+                -112.44841489373594, 
+                29.937710420543613
+              ], 
+              [
+                -112.42640469056752, 
+                29.938956471538653
+              ], 
+              [
+                -112.40909855517647, 
+                29.933739884383765
+              ], 
+              [
+                -112.38559143467602, 
+                29.920720185232074
+              ], 
+              [
+                -112.38117617749354, 
+                29.923256918394117
+              ], 
+              [
+                -112.36973055889325, 
+                29.924472351657087
+              ], 
+              [
+                -112.35685824690113, 
+                29.91843376585345
+              ], 
+              [
+                -112.34844352084744, 
+                29.92554092460404
+              ], 
+              [
+                -112.34531977148384, 
+                29.93242840141
+              ], 
+              [
+                -112.34537434942105, 
+                29.933958445868868
+              ], 
+              [
+                -112.34085897241721, 
+                29.935613300859806
+              ], 
+              [
+                -112.3312579170719, 
+                29.934684333730956
+              ], 
+              [
+                -112.32743487329616, 
+                29.933070104950776
+              ], 
+              [
+                -112.3254416426325, 
+                29.931535054504597
+              ], 
+              [
+                -112.30335999669686, 
+                29.912367123692732
+              ], 
+              [
+                -112.299276581162, 
+                29.904576917563315
+              ], 
+              [
+                -112.29904154851987, 
+                29.89555656900932
+              ], 
+              [
+                -112.29652419694939, 
+                29.89282368265924
+              ], 
+              [
+                -112.29351983945399, 
+                29.891209358334006
+              ], 
+              [
+                -112.28671768049496, 
+                29.89033601598255
+              ], 
+              [
+                -112.27922148456653, 
+                29.892394470136686
+              ], 
+              [
+                -112.27759536501804, 
+                29.89370204504232
+              ], 
+              [
+                -112.26774359214046, 
+                29.90827532120605
+              ], 
+              [
+                -112.26678136563108, 
+                29.91201859048287
+              ], 
+              [
+                -112.25954567163633, 
+                29.919295297545332
+              ], 
+              [
+                -112.25152060700879, 
+                29.921031223142503
+              ], 
+              [
+                -112.24394731191418, 
+                29.9210879163733
+              ], 
+              [
+                -112.24073554292183, 
+                29.919451194643365
+              ], 
+              [
+                -112.24034705741202, 
+                29.91861225848066
+              ], 
+              [
+                -112.24006082509099, 
+                29.917461000030368
+              ], 
+              [
+                -112.23977378923902, 
+                29.916689030237404
+              ], 
+              [
+                -112.23745301084244, 
+                29.91568814426601
+              ], 
+              [
+                -112.21794080856189, 
+                29.914869161514865
+              ], 
+              [
+                -112.20026467503554, 
+                29.909988508075596
+              ], 
+              [
+                -112.19115755644145, 
+                29.904831121242406
+              ], 
+              [
+                -112.18333664573673, 
+                29.893374550298674
+              ], 
+              [
+                -112.17622732218229, 
+                29.88209578686214
+              ], 
+              [
+                -112.16083996428695, 
+                29.87709638490589
+              ], 
+              [
+                -112.1559623896813, 
+                29.880065270575336
+              ], 
+              [
+                -112.14622790554205, 
+                29.88289198864189
+              ], 
+              [
+                -112.13329436893002, 
+                29.885175075238543
+              ], 
+              [
+                -112.12037534487217, 
+                29.883431957180907
+              ], 
+              [
+                -112.11537246848333, 
+                29.88319626819111
+              ], 
+              [
+                -112.1127092832078, 
+                29.883957185502908
+              ], 
+              [
+                -112.10750814904304, 
+                29.886607543763954
+              ], 
+              [
+                -112.09472792722804, 
+                29.90509634240946
+              ], 
+              [
+                -112.0916561540642, 
+                29.900596845684365
+              ], 
+              [
+                -112.08981624125099, 
+                29.895386982366382
+              ], 
+              [
+                -112.08595585270655, 
+                29.888677406326213
+              ], 
+              [
+                -112.07790220362988, 
+                29.88229066631901
+              ], 
+              [
+                -112.07411168140258, 
+                29.88115709761263
+              ], 
+              [
+                -112.04644184363788, 
+                29.88548683079062
+              ], 
+              [
+                -112.04416445225029, 
+                29.888166610075714
+              ], 
+              [
+                -112.03684602031517, 
+                29.900450962707666
+              ], 
+              [
+                -112.0347023355697, 
+                29.90707350566854
+              ], 
+              [
+                -112.00969323149144, 
+                29.90955673937077
+              ], 
+              [
+                -112.00640741302166, 
+                29.910499791707455
+              ], 
+              [
+                -111.99349319437921, 
+                29.91767323883315
+              ], 
+              [
+                -111.97574346687821, 
+                29.924729539949016
+              ], 
+              [
+                -111.96615641203215, 
+                29.9263666120482
+              ], 
+              [
+                -111.95993608055302, 
+                29.925807301205772
+              ], 
+              [
+                -111.9474957753485, 
+                29.92862153853208
+              ], 
+              [
+                -111.94384285467098, 
+                29.930997176476207
+              ], 
+              [
+                -111.93788098256763, 
+                29.93187995530965
+              ], 
+              [
+                -111.92080926939002, 
+                29.93185016313015
+              ], 
+              [
+                -111.91318726036425, 
+                29.9308898698609
+              ], 
+              [
+                -111.91025918858008, 
+                29.929894405638322
+              ], 
+              [
+                -111.90629179990766, 
+                29.926461662403426
+              ], 
+              [
+                -111.89155345103526, 
+                29.92874196277014
+              ], 
+              [
+                -111.88352263225977, 
+                29.931123552590343
+              ], 
+              [
+                -111.87797082661962, 
+                29.93394362763118
+              ], 
+              [
+                -111.871806877043, 
+                29.938844278427407
+              ], 
+              [
+                -111.87176820474971, 
+                29.94700326721806
+              ], 
+              [
+                -111.86908601872254, 
+                29.946936698356392
+              ], 
+              [
+                -111.8588905927697, 
+                29.9427328053156
+              ], 
+              [
+                -111.85659257443247, 
+                29.93912118561402
+              ], 
+              [
+                -111.85264739524628, 
+                29.935252750056545
+              ], 
+              [
+                -111.85126667531382, 
+                29.934446760790255
+              ], 
+              [
+                -111.82432450426965, 
+                29.92305069980075
+              ], 
+              [
+                -111.81654188211081, 
+                29.92189797317895
+              ], 
+              [
+                -111.80762084829242, 
+                29.92501946734927
+              ], 
+              [
+                -111.80461709359696, 
+                29.924570794263886
+              ], 
+              [
+                -111.79690418135668, 
+                29.91969082855401
+              ], 
+              [
+                -111.79536040861595, 
+                29.915045950210356
+              ], 
+              [
+                -111.78851558089855, 
+                29.91181955753803
+              ], 
+              [
+                -111.78361507495748, 
+                29.91079392837095
+              ], 
+              [
+                -111.77040343758476, 
+                29.91071944596978
+              ], 
+              [
+                -111.75654596083753, 
+                29.91289560424092
+              ], 
+              [
+                -111.7506338067452, 
+                29.909736522820292
+              ], 
+              [
+                -111.745632278588, 
+                29.90547228182551
+              ], 
+              [
+                -111.74170156200847, 
+                29.905185484570612
+              ], 
+              [
+                -111.71464192810829, 
+                29.908853668104705
+              ], 
+              [
+                -111.71078356968515, 
+                29.908449588328754
+              ], 
+              [
+                -111.70529415089811, 
+                29.903882466300132
+              ], 
+              [
+                -111.70253565764887, 
+                29.90234609535088
+              ], 
+              [
+                -111.69519987389329, 
+                29.90721931685337
+              ], 
+              [
+                -111.69082570467535, 
+                29.91233108033595
+              ], 
+              [
+                -111.69029117449873, 
+                29.913103637213638
+              ], 
+              [
+                -111.69104109493954, 
+                29.918795368391958
+              ], 
+              [
+                -111.69071445248828, 
+                29.919080944964257
+              ], 
+              [
+                -111.68010225883195, 
+                29.91940273692652
+              ], 
+              [
+                -111.67035413940197, 
+                29.917966678623046
+              ], 
+              [
+                -111.65945180344947, 
+                29.919987471193185
+              ], 
+              [
+                -111.65138272810177, 
+                29.923793417516166
+              ], 
+              [
+                -111.64791552994525, 
+                29.92888541948622
+              ], 
+              [
+                -111.6396241545977, 
+                29.944419828159795
+              ], 
+              [
+                -111.63494152169571, 
+                29.956098647940326
+              ], 
+              [
+                -111.6175277136304, 
+                29.965980107107292
+              ], 
+              [
+                -111.61482166882132, 
+                29.966010287057927
+              ], 
+              [
+                -111.60009409715559, 
+                29.97251006943067
+              ], 
+              [
+                -111.59266940148241, 
+                29.977769299387745
+              ], 
+              [
+                -111.58749850816645, 
+                29.987234303662067
+              ], 
+              [
+                -111.58647568721827, 
+                29.988143201172797
+              ], 
+              [
+                -111.57974430411322, 
+                29.990313913839408
+              ], 
+              [
+                -111.57773258000333, 
+                29.997778179684904
+              ], 
+              [
+                -111.56371613927978, 
+                30.0295502108792
+              ], 
+              [
+                -111.56014650536325, 
+                30.031185030292086
+              ], 
+              [
+                -111.55201192770325, 
+                30.031591067710156
+              ], 
+              [
+                -111.5428854112104, 
+                30.03413066158256
+              ], 
+              [
+                -111.54233800230575, 
+                30.039285107843792
+              ], 
+              [
+                -111.54017604508662, 
+                30.04105918046694
+              ], 
+              [
+                -111.52684406616716, 
+                30.048118014837634
+              ], 
+              [
+                -111.51950699306316, 
+                30.049378283453656
+              ], 
+              [
+                -111.51643767926103, 
+                30.051673286297152
+              ], 
+              [
+                -111.51753831867651, 
+                30.053536071957378
+              ], 
+              [
+                -111.51769415341111, 
+                30.056064698348592
+              ], 
+              [
+                -111.51506511674921, 
+                30.057917401194228
+              ], 
+              [
+                -111.50943222474133, 
+                30.057524087477685
+              ], 
+              [
+                -111.50101679358893, 
+                30.055798933989458
+              ], 
+              [
+                -111.50053316472814, 
+                30.05442243024235
+              ], 
+              [
+                -111.50094005995562, 
+                30.048694316328746
+              ], 
+              [
+                -111.50034469666711, 
+                30.044675750505444
+              ], 
+              [
+                -111.49875848555804, 
+                30.039447428961413
+              ], 
+              [
+                -111.49649559565246, 
+                30.03646591002534
+              ], 
+              [
+                -111.49503499658141, 
+                30.035542851950026
+              ], 
+              [
+                -111.4874772899047, 
+                30.037889534388533
+              ], 
+              [
+                -111.47264329888894, 
+                30.043976865591752
+              ], 
+              [
+                -111.46905440633806, 
+                30.04912106475587
+              ], 
+              [
+                -111.46880658243191, 
+                30.0530444279399
+              ], 
+              [
+                -111.46193786716644, 
+                30.059319634105748
+              ], 
+              [
+                -111.46034386668104, 
+                30.05989330627385
+              ], 
+              [
+                -111.45040931706622, 
+                30.0590296760078
+              ], 
+              [
+                -111.4425165666844, 
+                30.05645003115717
+              ], 
+              [
+                -111.43850303039471, 
+                30.054875624425332
+              ], 
+              [
+                -111.43210762820667, 
+                30.050051798596524
+              ], 
+              [
+                -111.4225174671942, 
+                30.053361724682013
+              ], 
+              [
+                -111.42281435803959, 
+                30.06078017774227
+              ], 
+              [
+                -111.40459444942465, 
+                30.0578189911289
+              ], 
+              [
+                -111.3698514243255, 
+                30.05480074236633
+              ], 
+              [
+                -111.32065828538104, 
+                30.039231752569226
+              ], 
+              [
+                -111.31125820347218, 
+                30.035160725849355
+              ], 
+              [
+                -111.30080138330194, 
+                30.027153941796577
+              ], 
+              [
+                -111.29729356063903, 
+                30.02018217850712
+              ], 
+              [
+                -111.27520144055545, 
+                30.02358891663031
+              ], 
+              [
+                -111.2685458624085, 
+                30.020972361484052
+              ], 
+              [
+                -111.24333643429652, 
+                30.013551650753993
+              ], 
+              [
+                -111.23745021949486, 
+                30.012486627759593
+              ], 
+              [
+                -111.23615936383655, 
+                30.01190817215264
+              ], 
+              [
+                -111.23471632672418, 
+                30.00921318180775
+              ], 
+              [
+                -111.23071229659769, 
+                30.00523727206299
+              ], 
+              [
+                -111.21756821043192, 
+                29.993379716586478
+              ], 
+              [
+                -111.20982925788292, 
+                29.995798037262695
+              ], 
+              [
+                -111.20691134581857, 
+                29.99923804129678
+              ], 
+              [
+                -111.20521734406093, 
+                30.002988580103068
+              ], 
+              [
+                -111.19717694177311, 
+                30.00675327849931
+              ], 
+              [
+                -111.19326866324603, 
+                30.00766916412635
+              ], 
+              [
+                -111.16946236930185, 
+                30.005632623312348
+              ], 
+              [
+                -111.14826895766757, 
+                30.00007617086268
+              ], 
+              [
+                -111.13194616755334, 
+                29.9937622729004
+              ], 
+              [
+                -111.11012737068413, 
+                29.982176830189072
+              ], 
+              [
+                -111.10756805045841, 
+                29.973533122002813
+              ], 
+              [
+                -111.10460275630825, 
+                29.968568282301586
+              ], 
+              [
+                -111.09563058724014, 
+                29.961398083632087
+              ], 
+              [
+                -111.092056457244, 
+                29.959736421842564
+              ], 
+              [
+                -111.07623372022132, 
+                29.963928903745025
+              ], 
+              [
+                -111.0729243953434, 
+                29.96576249116335
+              ], 
+              [
+                -111.07307038324524, 
+                29.968027854854217
+              ], 
+              [
+                -111.07389827094444, 
+                29.975165462227405
+              ], 
+              [
+                -111.07376857715578, 
+                29.99052329566266
+              ], 
+              [
+                -111.05772129793219, 
+                29.991426592855152
+              ], 
+              [
+                -111.0348711611055, 
+                29.986591304156786
+              ], 
+              [
+                -110.84671065784697, 
+                29.503307999336673
+              ], 
+              [
+                -110.40425094896668, 
+                28.38390625365537
+              ], 
+              [
+                -110.40414102477114, 
+                28.383630950996533
+              ], 
+              [
+                -109.73291603295897, 
+                26.72737236146942
+              ], 
+              [
+                -109.47063392222154, 
+                26.092907008102443
+              ], 
+              [
+                -109.45569224050777, 
+                26.056968556102582
+              ], 
+              [
+                -109.34188500453403, 
+                26.06262504887387
+              ], 
+              [
+                -109.34384457113181, 
+                26.104200988690437
+              ], 
+              [
+                -109.21866088544992, 
+                26.09391393906806
+              ], 
+              [
+                -109.18501344099897, 
+                26.18421157667244
+              ], 
+              [
+                -109.05878963377741, 
+                26.245823056961697
+              ], 
+              [
+                -109.05159269040556, 
+                26.23218842488732
+              ], 
+              [
+                -109.03353137339556, 
+                26.12482670206864
+              ], 
+              [
+                -108.983625196567, 
+                26.100403863153364
+              ], 
+              [
+                -108.91727424143073, 
+                26.094449206510134
+              ], 
+              [
+                -108.89375195663605, 
+                26.095448361136835
+              ], 
+              [
+                -108.86723570210545, 
+                26.059146968943086
+              ], 
+              [
+                -108.86662257663886, 
+                26.05768335574243
+              ], 
+              [
+                -108.85016672712537, 
+                26.045170508896486
+              ], 
+              [
+                -108.83163690917438, 
+                26.038663737903267
+              ], 
+              [
+                -108.65659066120479, 
+                25.97197718078312
+              ], 
+              [
+                -108.53062462479913, 
+                25.924065311349878
+              ], 
+              [
+                -108.45784517784415, 
+                25.82914744043408
+              ], 
+              [
+                -108.44835089433124, 
+                25.793667648730374
+              ], 
+              [
+                -108.44811231024546, 
+                25.793793658600887
+              ], 
+              [
+                -108.43165491540213, 
+                25.802504625377047
+              ], 
+              [
+                -108.41010127875684, 
+                25.858462153979218
+              ], 
+              [
+                -108.35009681496152, 
+                25.95362869588582
+              ], 
+              [
+                -108.34599512270265, 
+                25.965446430035183
+              ], 
+              [
+                -108.29438590464898, 
+                25.99242405991689
+              ], 
+              [
+                -108.29316519853376, 
+                26.041066227099876
+              ], 
+              [
+                -108.29353989592866, 
+                26.052462265540306
+              ], 
+              [
+                -108.32235526030708, 
+                26.10783141953117
+              ], 
+              [
+                -108.30469005568322, 
+                26.129172305565515
+              ], 
+              [
+                -108.3034048013876, 
+                26.130664051925116
+              ], 
+              [
+                -108.29423729031186, 
+                26.14208650657457
+              ], 
+              [
+                -108.29197410916782, 
+                26.1734567809206
+              ], 
+              [
+                -108.29948049257618, 
+                26.186975882812852
+              ], 
+              [
+                -108.3062330616301, 
+                26.206767219724906
+              ], 
+              [
+                -108.30579794551531, 
+                26.22462260681231
+              ], 
+              [
+                -108.27009821633476, 
+                26.250461788572284
+              ], 
+              [
+                -108.244851830012, 
+                26.2791878165682
+              ], 
+              [
+                -108.22458147396424, 
+                26.30762966906896
+              ], 
+              [
+                -108.18705009477743, 
+                26.360582523223208
+              ], 
+              [
+                -108.12889810150979, 
+                26.34574574949385
+              ], 
+              [
+                -108.08678678576786, 
+                26.324366540569596
+              ], 
+              [
+                -108.08243282124371, 
+                26.32289535879849
+              ], 
+              [
+                -108.07390302144509, 
+                26.326115675785314
+              ], 
+              [
+                -108.04302891289574, 
+                26.31092523558421
+              ], 
+              [
+                -108.02664377240474, 
+                26.277930929876884
+              ], 
+              [
+                -108.02100792182209, 
+                26.2616968119254
+              ], 
+              [
+                -108.01099895709987, 
+                26.247570432365098
+              ], 
+              [
+                -107.99537904751605, 
+                26.229974107785388
+              ], 
+              [
+                -107.9870751777779, 
+                26.2206295579651
+              ], 
+              [
+                -107.97016396448254, 
+                26.203461252092637
+              ], 
+              [
+                -107.91809784061446, 
+                26.204035574477725
+              ], 
+              [
+                -107.89156825238678, 
+                26.196482175315353
+              ], 
+              [
+                -107.8537569105011, 
+                26.183375136452153
+              ], 
+              [
+                -107.83541504245923, 
+                26.19225003827585
+              ], 
+              [
+                -107.79567687110863, 
+                26.163577820734986
+              ], 
+              [
+                -107.78784202394237, 
+                26.151867224982194
+              ], 
+              [
+                -107.77853141413942, 
+                26.141228189758422
+              ], 
+              [
+                -107.7755439122216, 
+                26.13872973510111
+              ], 
+              [
+                -107.75868478288794, 
+                26.12464500877677
+              ], 
+              [
+                -107.72875762816415, 
+                26.108292659613834
+              ], 
+              [
+                -107.65530945383793, 
+                26.102462702089426
+              ], 
+              [
+                -107.61263568584768, 
+                26.10013690270362
+              ], 
+              [
+                -107.5655298673514, 
+                26.07201384089876
+              ], 
+              [
+                -107.55635997313662, 
+                26.067122523816902
+              ], 
+              [
+                -107.50777935030328, 
+                26.048433997186518
+              ], 
+              [
+                -107.46524371695534, 
+                26.029328496422906
+              ], 
+              [
+                -107.45259078014452, 
+                26.009774827957287
+              ], 
+              [
+                -107.4457373274363, 
+                25.996350923992978
+              ], 
+              [
+                -107.41288441119596, 
+                25.975748683467263
+              ], 
+              [
+                -107.40639776010916, 
+                25.971986172751215
+              ], 
+              [
+                -107.36169432194794, 
+                25.951709019613332
+              ], 
+              [
+                -107.34367222538785, 
+                25.942463595029754
+              ], 
+              [
+                -107.28897659679352, 
+                25.893843592538246
+              ], 
+              [
+                -107.20922150292226, 
+                25.854850768133115
+              ], 
+              [
+                -107.15415824232544, 
+                25.81292749449173
+              ], 
+              [
+                -107.11353512873849, 
+                25.790239798716303
+              ], 
+              [
+                -107.0661385412613, 
+                25.75580515570994
+              ], 
+              [
+                -106.98938569798196, 
+                25.7164214115694
+              ], 
+              [
+                -106.93405786687515, 
+                25.677301923970905
+              ], 
+              [
+                -106.90166129283756, 
+                25.639271521586117
+              ], 
+              [
+                -106.86554426167173, 
+                25.626202620787208
+              ], 
+              [
+                -106.83053036905353, 
+                25.582419114774144
+              ], 
+              [
+                -106.79553988347038, 
+                25.55923614780219
+              ], 
+              [
+                -106.77448233335019, 
+                25.5572859358752
+              ], 
+              [
+                -106.75396919479186, 
+                25.54693577183206
+              ], 
+              [
+                -106.71369115252838, 
+                25.51113634601208
+              ], 
+              [
+                -106.68347106769315, 
+                25.500738324414836
+              ], 
+              [
+                -106.64875333435825, 
+                25.519281147463097
+              ], 
+              [
+                -106.59715006343565, 
+                25.50773976027345
+              ], 
+              [
+                -106.51835584179452, 
+                25.50442146655518
+              ], 
+              [
+                -106.4908762330313, 
+                25.49817385184717
+              ], 
+              [
+                -106.49028553470825, 
+                25.49803982544307
+              ], 
+              [
+                -106.41306807918863, 
+                25.51982704017712
+              ], 
+              [
+                -106.39803948566613, 
+                25.515344321173387
+              ], 
+              [
+                -106.3540999149785, 
+                25.500611874750597
+              ], 
+              [
+                -106.33117440092889, 
+                25.50287604651114
+              ], 
+              [
+                -106.31253667932603, 
+                25.508852508825264
+              ], 
+              [
+                -106.28017647648268, 
+                25.475385259217997
+              ], 
+              [
+                -106.22935310052029, 
+                25.480740525960396
+              ], 
+              [
+                -106.20179954777457, 
+                25.506260844147068
+              ], 
+              [
+                -106.1670080138128, 
+                25.484157951679812
+              ], 
+              [
+                -106.15912066580248, 
+                25.47844806050695
+              ], 
+              [
+                -106.15065036706335, 
+                25.470742194811127
+              ], 
+              [
+                -106.1345904114094, 
+                25.4397473138155
+              ], 
+              [
+                -106.1290668963849, 
+                25.394920521298896
+              ], 
+              [
+                -106.13398711129881, 
+                25.383401639712762
+              ], 
+              [
+                -106.13393442427046, 
+                25.380895696413123
+              ], 
+              [
+                -106.13071802207686, 
+                25.36448166731647
+              ], 
+              [
+                -106.12600839655924, 
+                25.35620979940411
+              ], 
+              [
+                -106.12124708659752, 
+                25.349040222536523
+              ], 
+              [
+                -106.11796425847983, 
+                25.3446119523748
+              ], 
+              [
+                -106.11018414914868, 
+                25.341031394140515
+              ], 
+              [
+                -106.10196597422113, 
+                25.336389025460033
+              ], 
+              [
+                -106.08178672966258, 
+                25.29535821706891
+              ], 
+              [
+                -106.07621102123274, 
+                25.28945297963294
+              ], 
+              [
+                -106.05131512559285, 
+                25.265744950039743
+              ], 
+              [
+                -106.03264422925315, 
+                25.25561762819616
+              ], 
+              [
+                -106.00963168052549, 
+                25.224714212537148
+              ], 
+              [
+                -106.00120293350295, 
+                25.214137171060464
+              ], 
+              [
+                -105.98325937063319, 
+                25.20536152353184
+              ], 
+              [
+                -105.98148252393437, 
+                25.203371022635874
+              ], 
+              [
+                -105.97853937456182, 
+                25.198731288986174
+              ], 
+              [
+                -105.97823917764282, 
+                25.195541871405418
+              ], 
+              [
+                -105.97888914227302, 
+                25.1883303751663
+              ], 
+              [
+                -105.9811942007084, 
+                25.177728255408372
+              ], 
+              [
+                -105.98503213398062, 
+                25.15037026974859
+              ], 
+              [
+                -105.98504795050947, 
+                25.139017978678805
+              ], 
+              [
+                -105.98394801414616, 
+                25.124058036315404
+              ], 
+              [
+                -105.98025567188105, 
+                25.111109452740166
+              ], 
+              [
+                -105.97476125384608, 
+                25.08697855772618
+              ], 
+              [
+                -105.97355159498346, 
+                25.06760698971779
+              ], 
+              [
+                -105.97326324115045, 
+                25.047897551276662
+              ], 
+              [
+                -105.9736349157549, 
+                25.04007012560237
+              ], 
+              [
+                -105.97639128774179, 
+                25.0118431610381
+              ], 
+              [
+                -105.98830170376718, 
+                24.962161275666357
+              ], 
+              [
+                -105.99932746218735, 
+                24.931656529250358
+              ], 
+              [
+                -106.01210866717821, 
+                24.9182167545379
+              ], 
+              [
+                -106.01313960966002, 
+                24.909054146038688
+              ], 
+              [
+                -106.0010200082681, 
+                24.904078649404465
+              ], 
+              [
+                -106.00427167777876, 
+                24.90103015849617
+              ], 
+              [
+                -106.00985890462654, 
+                24.8892771900154
+              ], 
+              [
+                -106.00934998689291, 
+                24.887911876548586
+              ], 
+              [
+                -106.0121554707132, 
+                24.887633182681565
+              ], 
+              [
+                -106.02975805070757, 
+                24.89566548380257
+              ], 
+              [
+                -106.03644803997148, 
+                24.90184985101553
+              ], 
+              [
+                -106.03480902151036, 
+                24.906369482603672
+              ], 
+              [
+                -106.03527111097965, 
+                24.907671944481145
+              ], 
+              [
+                -106.03904120656979, 
+                24.91190094379538
+              ], 
+              [
+                -106.04208765051702, 
+                24.913910422027776
+              ], 
+              [
+                -106.0537401006897, 
+                24.917316241069955
+              ], 
+              [
+                -106.0574328814456, 
+                24.916361181334587
+              ], 
+              [
+                -106.05116235380451, 
+                24.905189370940196
+              ], 
+              [
+                -106.04970991121344, 
+                24.90089031765543
+              ], 
+              [
+                -106.05129781400171, 
+                24.895930044455643
+              ], 
+              [
+                -106.0556498299975, 
+                24.887651283754575
+              ], 
+              [
+                -106.06007499688685, 
+                24.885702017190837
+              ], 
+              [
+                -106.06347459759039, 
+                24.885254773615237
+              ], 
+              [
+                -106.07433062752168, 
+                24.88543006967195
+              ], 
+              [
+                -106.07963589708132, 
+                24.887050709993236
+              ], 
+              [
+                -106.08747181633883, 
+                24.891722301004958
+              ], 
+              [
+                -106.09528113538421, 
+                24.897332252674957
+              ], 
+              [
+                -106.09744966129418, 
+                24.90417222174558
+              ], 
+              [
+                -106.10931585000749, 
+                24.921012090758637
+              ], 
+              [
+                -106.11955133721295, 
+                24.931926993376504
+              ], 
+              [
+                -106.12316209478638, 
+                24.93770654033799
+              ], 
+              [
+                -106.1284085288271, 
+                24.952480753446288
+              ], 
+              [
+                -106.13040976829978, 
+                24.9535879060867
+              ], 
+              [
+                -106.13603425438167, 
+                24.951947092116704
+              ], 
+              [
+                -106.14741443245036, 
+                24.954245209650445
+              ], 
+              [
+                -106.1495411483921, 
+                24.955636933342532
+              ], 
+              [
+                -106.15539817828501, 
+                24.96966803485987
+              ], 
+              [
+                -106.15956030577425, 
+                24.98578144392055
+              ], 
+              [
+                -106.15970624133574, 
+                24.987623516300655
+              ], 
+              [
+                -106.16336373718612, 
+                24.993613571338607
+              ], 
+              [
+                -106.17138885171059, 
+                24.992171302172096
+              ], 
+              [
+                -106.17736076918925, 
+                24.993780934553605
+              ], 
+              [
+                -106.18688737870384, 
+                24.998244666607327
+              ], 
+              [
+                -106.19573158174303, 
+                25.003751323399893
+              ], 
+              [
+                -106.19895346295692, 
+                25.006147177998518
+              ], 
+              [
+                -106.20378648403626, 
+                25.009742398906862
+              ], 
+              [
+                -106.20533254178731, 
+                25.011380691437203
+              ], 
+              [
+                -106.21328705985306, 
+                25.02165969848712
+              ], 
+              [
+                -106.21332556583816, 
+                25.022348303613175
+              ], 
+              [
+                -106.20110743695383, 
+                25.057127740216906
+              ], 
+              [
+                -106.19959112379762, 
+                25.071266581224524
+              ], 
+              [
+                -106.20354470649315, 
+                25.07869076686144
+              ], 
+              [
+                -106.19952929006976, 
+                25.085553213955183
+              ], 
+              [
+                -106.19585542850912, 
+                25.08712221386548
+              ], 
+              [
+                -106.18555832704841, 
+                25.089583912242194
+              ], 
+              [
+                -106.18514047127721, 
+                25.092179565666832
+              ], 
+              [
+                -106.18770137520795, 
+                25.096514821415447
+              ], 
+              [
+                -106.1903412762047, 
+                25.097410337387664
+              ], 
+              [
+                -106.20304828636752, 
+                25.113632217558894
+              ], 
+              [
+                -106.22803735510708, 
+                25.136096230285826
+              ], 
+              [
+                -106.23001152152595, 
+                25.138320421531912
+              ], 
+              [
+                -106.23192159794179, 
+                25.14294286567957
+              ], 
+              [
+                -106.23293157059567, 
+                25.149564571717935
+              ], 
+              [
+                -106.2323869173645, 
+                25.155122311043396
+              ], 
+              [
+                -106.23438342025412, 
+                25.167146683028857
+              ], 
+              [
+                -106.24071977201912, 
+                25.18340436414248
+              ], 
+              [
+                -106.25792170943208, 
+                25.207679352780833
+              ], 
+              [
+                -106.2856015275809, 
+                25.243405278621136
+              ], 
+              [
+                -106.3073077302645, 
+                25.26124231677764
+              ], 
+              [
+                -106.32798071934991, 
+                25.27297565823349
+              ], 
+              [
+                -106.37496323713786, 
+                25.297171269739707
+              ], 
+              [
+                -106.40341208581906, 
+                25.306150376108675
+              ], 
+              [
+                -106.41004410185847, 
+                25.30929567855751
+              ], 
+              [
+                -106.42312805512857, 
+                25.316827388269783
+              ], 
+              [
+                -106.42619385896465, 
+                25.315173910853424
+              ], 
+              [
+                -106.42730753832365, 
+                25.31351828715467
+              ], 
+              [
+                -106.42682938324974, 
+                25.3093455573794
+              ], 
+              [
+                -106.42560812488665, 
+                25.305995700548394
+              ], 
+              [
+                -106.42216543059165, 
+                25.302271783966596
+              ], 
+              [
+                -106.39052201268439, 
+                25.29157709136201
+              ], 
+              [
+                -106.35413735546668, 
+                25.27384934330154
+              ], 
+              [
+                -106.3436906217715, 
+                25.264709965467112
+              ], 
+              [
+                -106.33393763054272, 
+                25.253062180285173
+              ], 
+              [
+                -106.33239796342464, 
+                25.25175203222984
+              ], 
+              [
+                -106.313708829975, 
+                25.241625119021244
+              ], 
+              [
+                -106.29830595895007, 
+                25.23216173073728
+              ], 
+              [
+                -106.28512276134038, 
+                25.219589861408107
+              ], 
+              [
+                -106.26366714636164, 
+                25.193009715536338
+              ], 
+              [
+                -106.26333808524981, 
+                25.183461144099905
+              ], 
+              [
+                -106.2694785543454, 
+                25.17656671268699
+              ], 
+              [
+                -106.26883199535304, 
+                25.1712630546157
+              ], 
+              [
+                -106.25497942106738, 
+                25.143982240363115
+              ], 
+              [
+                -106.23108485868921, 
+                25.116153106578402
+              ], 
+              [
+                -106.22313960418889, 
+                25.114045437043377
+              ], 
+              [
+                -106.20916151175717, 
+                25.10028885072072
+              ], 
+              [
+                -106.20863198338705, 
+                25.096696455984585
+              ], 
+              [
+                -106.20947914412586, 
+                25.091328375489994
+              ], 
+              [
+                -106.21101439626321, 
+                25.08713755618105
+              ], 
+              [
+                -106.21315256741116, 
+                25.086353710153993
+              ], 
+              [
+                -106.21586852562204, 
+                25.093151615456676
+              ], 
+              [
+                -106.23929971159083, 
+                25.11413028118974
+              ], 
+              [
+                -106.242733836712, 
+                25.115775888573136
+              ], 
+              [
+                -106.24822590300906, 
+                25.114639377711153
+              ], 
+              [
+                -106.24563626826495, 
+                25.108166077854783
+              ], 
+              [
+                -106.24273534379546, 
+                25.102644048235526
+              ], 
+              [
+                -106.24133031472428, 
+                25.1021476745088
+              ], 
+              [
+                -106.23931982686864, 
+                25.100389432589548
+              ], 
+              [
+                -106.23221365991529, 
+                25.092133420288416
+              ], 
+              [
+                -106.22034651265523, 
+                25.066020751262602
+              ], 
+              [
+                -106.22268236502646, 
+                25.048785669590355
+              ], 
+              [
+                -106.23010008880145, 
+                25.015721516450643
+              ], 
+              [
+                -106.23554239230428, 
+                25.01033647474386
+              ], 
+              [
+                -106.24065358948289, 
+                25.007384535735394
+              ], 
+              [
+                -106.24745479640364, 
+                25.006386365045223
+              ], 
+              [
+                -106.25628413292121, 
+                25.00715381104564
+              ], 
+              [
+                -106.27026625535802, 
+                25.01337706249417
+              ], 
+              [
+                -106.27501157003114, 
+                25.018631489963017
+              ], 
+              [
+                -106.27168914208285, 
+                25.025626215242553
+              ], 
+              [
+                -106.26903421193151, 
+                25.040883256386817
+              ], 
+              [
+                -106.26922023284364, 
+                25.046267348255064
+              ], 
+              [
+                -106.27463352516332, 
+                25.075660341996524
+              ], 
+              [
+                -106.27649950209067, 
+                25.07867445904609
+              ], 
+              [
+                -106.28298098844363, 
+                25.08687654296559
+              ], 
+              [
+                -106.28453694261653, 
+                25.086954393859546
+              ], 
+              [
+                -106.29948121735534, 
+                25.076279631041285
+              ], 
+              [
+                -106.30313066864898, 
+                25.07234009913345
+              ], 
+              [
+                -106.30214471020959, 
+                25.070161825477566
+              ], 
+              [
+                -106.2960886306425, 
+                25.062908959703485
+              ], 
+              [
+                -106.28804119067406, 
+                25.060749486460093
+              ], 
+              [
+                -106.28205722171087, 
+                25.055767652672134
+              ], 
+              [
+                -106.2804690225006, 
+                25.052713112422765
+              ], 
+              [
+                -106.27920264225571, 
+                25.03502528986066
+              ], 
+              [
+                -106.2795657691002, 
+                25.032416024205858
+              ], 
+              [
+                -106.28420512274027, 
+                25.021758007471284
+              ], 
+              [
+                -106.29538842773488, 
+                25.001402096796845
+              ], 
+              [
+                -106.30053196740035, 
+                24.998996325510042
+              ], 
+              [
+                -106.30154291889306, 
+                24.99878849377037
+              ], 
+              [
+                -106.30581522730056, 
+                25.001119608809912
+              ], 
+              [
+                -106.31108338381836, 
+                25.006566081416956
+              ], 
+              [
+                -106.31971374615213, 
+                25.011655144631874
+              ], 
+              [
+                -106.32702519239405, 
+                25.01795551071205
+              ], 
+              [
+                -106.3262464621939, 
+                25.02320222957041
+              ], 
+              [
+                -106.33076980371642, 
+                25.026298755685684
+              ], 
+              [
+                -106.33791544024339, 
+                25.027055398985272
+              ], 
+              [
+                -106.34152915028666, 
+                25.025117188041456
+              ], 
+              [
+                -106.34179108770144, 
+                25.02272785960762
+              ], 
+              [
+                -106.33736698141635, 
+                25.00833712034695
+              ], 
+              [
+                -106.33860413299361, 
+                25.00613255573452
+              ], 
+              [
+                -106.34196519538544, 
+                25.004864910023123
+              ], 
+              [
+                -106.3486871685681, 
+                25.00778480724248
+              ], 
+              [
+                -106.35368078026828, 
+                25.00692137483797
+              ], 
+              [
+                -106.37297479609865, 
+                25.011969897163123
+              ], 
+              [
+                -106.39024465681433, 
+                25.01065736572204
+              ], 
+              [
+                -106.40315613761544, 
+                25.015423476672822
+              ], 
+              [
+                -106.4049482235214, 
+                25.016703894342516
+              ], 
+              [
+                -106.4074447834979, 
+                25.02066502430417
+              ], 
+              [
+                -106.40996751855653, 
+                25.022334865604904
+              ], 
+              [
+                -106.44059293269974, 
+                25.030241281705248
+              ], 
+              [
+                -106.44681687114631, 
+                25.03285130184088
+              ], 
+              [
+                -106.46189705548335, 
+                25.05840124701248
+              ], 
+              [
+                -106.4620543121742, 
+                25.06069417144537
+              ], 
+              [
+                -106.45439539467357, 
+                25.072435106381594
+              ], 
+              [
+                -106.44773896492708, 
+                25.075140114761634
+              ], 
+              [
+                -106.44200388431547, 
+                25.082565807787503
+              ], 
+              [
+                -106.43375114741607, 
+                25.103904870972126
+              ], 
+              [
+                -106.4338225388008, 
+                25.10947118651409
+              ], 
+              [
+                -106.44099859761553, 
+                25.112907693059046
+              ], 
+              [
+                -106.44449692211313, 
+                25.11305261093385
+              ], 
+              [
+                -106.44940732247574, 
+                25.11207547618829
+              ], 
+              [
+                -106.45901989070184, 
+                25.116647558361862
+              ], 
+              [
+                -106.46023324079972, 
+                25.11773258025831
+              ], 
+              [
+                -106.46144797536674, 
+                25.119689617252046
+              ], 
+              [
+                -106.46192760752636, 
+                25.124202053644154
+              ], 
+              [
+                -106.46373309488179, 
+                25.131209815962414
+              ], 
+              [
+                -106.46827859641547, 
+                25.144795669790078
+              ], 
+              [
+                -106.47170609713376, 
+                25.147835924146527
+              ], 
+              [
+                -106.47948060967882, 
+                25.151085065776723
+              ], 
+              [
+                -106.4833342013066, 
+                25.154171630266152
+              ], 
+              [
+                -106.48424078264684, 
+                25.163071412256212
+              ], 
+              [
+                -106.48240388055946, 
+                25.167359507308692
+              ], 
+              [
+                -106.4727466705293, 
+                25.17928584660115
+              ], 
+              [
+                -106.47436418477187, 
+                25.18692472162205
+              ], 
+              [
+                -106.4752544854058, 
+                25.188546518123907
+              ], 
+              [
+                -106.47966808939948, 
+                25.18946898780874
+              ], 
+              [
+                -106.48633157998792, 
+                25.188021509558858
+              ], 
+              [
+                -106.48875192049604, 
+                25.18556157457249
+              ], 
+              [
+                -106.48929945755025, 
+                25.18332113824614
+              ], 
+              [
+                -106.48906962631483, 
+                25.180982494455996
+              ], 
+              [
+                -106.49027235385819, 
+                25.180835597457023
+              ], 
+              [
+                -106.49523485423514, 
+                25.18675955322179
+              ], 
+              [
+                -106.50654533350867, 
+                25.20469130861004
+              ], 
+              [
+                -106.50548615287639, 
+                25.20920060365236
+              ], 
+              [
+                -106.50593980749063, 
+                25.216430403410413
+              ], 
+              [
+                -106.50810121067238, 
+                25.22107480241825
+              ], 
+              [
+                -106.50938479912344, 
+                25.222167945740452
+              ], 
+              [
+                -106.51742999201521, 
+                25.22015497166322
+              ], 
+              [
+                -106.52669867761199, 
+                25.207069216606502
+              ], 
+              [
+                -106.53810256377461, 
+                25.20023749951942
+              ], 
+              [
+                -106.53969956112529, 
+                25.19845917724348
+              ], 
+              [
+                -106.5339779335871, 
+                25.19181925399293
+              ], 
+              [
+                -106.52639745879561, 
+                25.186007563727134
+              ], 
+              [
+                -106.51421643160617, 
+                25.185199619302193
+              ], 
+              [
+                -106.50990284970192, 
+                25.180699514580496
+              ], 
+              [
+                -106.50778596810524, 
+                25.17251926051042
+              ], 
+              [
+                -106.50207969810904, 
+                25.144462751942378
+              ], 
+              [
+                -106.50180722138633, 
+                25.138051593146148
+              ], 
+              [
+                -106.49460107589864, 
+                25.122764011092606
+              ], 
+              [
+                -106.49081801030277, 
+                25.117487539775382
+              ], 
+              [
+                -106.49096347604306, 
+                25.09868974099883
+              ], 
+              [
+                -106.4922791511867, 
+                25.08425353771743
+              ], 
+              [
+                -106.50639741894149, 
+                25.086993698881322
+              ], 
+              [
+                -106.5099328304274, 
+                25.080717858706805
+              ], 
+              [
+                -106.50834679203714, 
+                25.078195056897986
+              ], 
+              [
+                -106.49619311175286, 
+                25.06602739491044
+              ], 
+              [
+                -106.48581039479623, 
+                25.0523970489055
+              ], 
+              [
+                -106.4855873729864, 
+                25.03359659432334
+              ], 
+              [
+                -106.4895004612813, 
+                25.032724581462176
+              ], 
+              [
+                -106.49926662975075, 
+                25.035054099300137
+              ], 
+              [
+                -106.5105915816833, 
+                25.03958024411614
+              ], 
+              [
+                -106.51608158792287, 
+                25.040415683299937
+              ], 
+              [
+                -106.52640249243122, 
+                25.038545600772007
+              ], 
+              [
+                -106.53025313848352, 
+                25.036824813382545
+              ], 
+              [
+                -106.5382274534697, 
+                25.0369172593066
+              ], 
+              [
+                -106.5406783922864, 
+                25.037403950754108
+              ], 
+              [
+                -106.55444270179079, 
+                25.04329406050754
+              ], 
+              [
+                -106.56417771890312, 
+                25.052306389746356
+              ], 
+              [
+                -106.56721924205134, 
+                25.056164525843716
+              ], 
+              [
+                -106.56808468953093, 
+                25.059598348410177
+              ], 
+              [
+                -106.56950707589407, 
+                25.06121976984103
+              ], 
+              [
+                -106.58293229671581, 
+                25.076531591419762
+              ], 
+              [
+                -106.58930793940897, 
+                25.08316515309672
+              ], 
+              [
+                -106.59452045195026, 
+                25.085331741851967
+              ], 
+              [
+                -106.60439036300995, 
+                25.090872222981936
+              ], 
+              [
+                -106.61636747121783, 
+                25.09967877549435
+              ], 
+              [
+                -106.61649710775347, 
+                25.101569491030364
+              ], 
+              [
+                -106.6122088861693, 
+                25.102067967925674
+              ], 
+              [
+                -106.60782417702858, 
+                25.101336424565613
+              ], 
+              [
+                -106.59923247573441, 
+                25.09778130359311
+              ], 
+              [
+                -106.59324234039738, 
+                25.09913893240351
+              ], 
+              [
+                -106.59069902617713, 
+                25.103302572538816
+              ], 
+              [
+                -106.59194013517342, 
+                25.10811100742817
+              ], 
+              [
+                -106.5975646646085, 
+                25.118274157321192
+              ], 
+              [
+                -106.59966779897971, 
+                25.12066077221648
+              ], 
+              [
+                -106.60208838595663, 
+                25.12719226692679
+              ], 
+              [
+                -106.59238215568097, 
+                25.13773167151042
+              ], 
+              [
+                -106.58876974635191, 
+                25.140302158664745
+              ], 
+              [
+                -106.58694460871497, 
+                25.151372129060732
+              ], 
+              [
+                -106.59225699725673, 
+                25.170427865839834
+              ], 
+              [
+                -106.60521251841449, 
+                25.206506231037828
+              ], 
+              [
+                -106.6314687731829, 
+                25.237725674040977
+              ], 
+              [
+                -106.63419992410915, 
+                25.25912845717214
+              ], 
+              [
+                -106.63402408316423, 
+                25.261412946745562
+              ], 
+              [
+                -106.6249105450102, 
+                25.256889430427034
+              ], 
+              [
+                -106.62383684724118, 
+                25.27626763093781
+              ], 
+              [
+                -106.6302035445693, 
+                25.305294486523056
+              ], 
+              [
+                -106.63540037925819, 
+                25.310416966577712
+              ], 
+              [
+                -106.6393983882561, 
+                25.309432508232337
+              ], 
+              [
+                -106.64703445282765, 
+                25.304671410498756
+              ], 
+              [
+                -106.65024252174938, 
+                25.297748820915928
+              ], 
+              [
+                -106.64286686806084, 
+                25.276152703979516
+              ], 
+              [
+                -106.64789278441452, 
+                25.271409824998074
+              ], 
+              [
+                -106.6529073034834, 
+                25.257876078179034
+              ], 
+              [
+                -106.65776160977464, 
+                25.228469383275876
+              ], 
+              [
+                -106.62505801843761, 
+                25.195554569893513
+              ], 
+              [
+                -106.62273768894359, 
+                25.188460740425896
+              ], 
+              [
+                -106.62385092548152, 
+                25.178104662750457
+              ], 
+              [
+                -106.62564837175582, 
+                25.175452555387015
+              ], 
+              [
+                -106.63116151370856, 
+                25.173824525593425
+              ], 
+              [
+                -106.64049993914814, 
+                25.173371659113755
+              ], 
+              [
+                -106.65198320930182, 
+                25.164480348198875
+              ], 
+              [
+                -106.65294042588819, 
+                25.14493619364096
+              ], 
+              [
+                -106.64981276543669, 
+                25.139767032211495
+              ], 
+              [
+                -106.64533714640801, 
+                25.137359556909974
+              ], 
+              [
+                -106.64486825682759, 
+                25.136193481903078
+              ], 
+              [
+                -106.64558326544598, 
+                25.130482099063933
+              ], 
+              [
+                -106.6564764064554, 
+                25.123995004056344
+              ], 
+              [
+                -106.65811589969195, 
+                25.12468094814781
+              ], 
+              [
+                -106.66855824336682, 
+                25.13225876116
+              ], 
+              [
+                -106.66995325925168, 
+                25.13418198501293
+              ], 
+              [
+                -106.67445433142213, 
+                25.142825477115807
+              ], 
+              [
+                -106.68540741564523, 
+                25.160080531281938
+              ], 
+              [
+                -106.71087037467215, 
+                25.181658511888696
+              ], 
+              [
+                -106.73213725812273, 
+                25.19498647921745
+              ], 
+              [
+                -106.74117023214389, 
+                25.195694407417655
+              ], 
+              [
+                -106.75153077934203, 
+                25.18705655547881
+              ], 
+              [
+                -106.75927819600788, 
+                25.175582316764206
+              ], 
+              [
+                -106.75766480980496, 
+                25.172861340708295
+              ], 
+              [
+                -106.75680899215777, 
+                25.167301898929374
+              ], 
+              [
+                -106.75836529614168, 
+                25.164330412448447
+              ], 
+              [
+                -106.77941559335635, 
+                25.178496403681102
+              ], 
+              [
+                -106.79150368457267, 
+                25.187446116804594
+              ], 
+              [
+                -106.80230799230759, 
+                25.199050070251914
+              ], 
+              [
+                -106.81705974229665, 
+                25.228118297659947
+              ], 
+              [
+                -106.81524407503224, 
+                25.23980717439665
+              ], 
+              [
+                -106.81143815350484, 
+                25.2421377258866
+              ], 
+              [
+                -106.80887246478078, 
+                25.241882627782307
+              ], 
+              [
+                -106.80355327956958, 
+                25.242844615828563
+              ], 
+              [
+                -106.79738761528493, 
+                25.246746829506456
+              ], 
+              [
+                -106.795443684952, 
+                25.25076935341733
+              ], 
+              [
+                -106.79962712575121, 
+                25.268397757971034
+              ], 
+              [
+                -106.80109193741369, 
+                25.271029224919225
+              ], 
+              [
+                -106.80194412655673, 
+                25.276214031631376
+              ], 
+              [
+                -106.80264532076255, 
+                25.294152170095604
+              ], 
+              [
+                -106.80093002565839, 
+                25.298255520384256
+              ], 
+              [
+                -106.7845262048497, 
+                25.3147003763369
+              ], 
+              [
+                -106.78180862080222, 
+                25.315188741475374
+              ], 
+              [
+                -106.77900785268565, 
+                25.315208367784066
+              ], 
+              [
+                -106.7716115113946, 
+                25.311640945755354
+              ], 
+              [
+                -106.76128556670278, 
+                25.304733718226455
+              ], 
+              [
+                -106.76035318585166, 
+                25.303701342156543
+              ], 
+              [
+                -106.75894362907752, 
+                25.300047769189547
+              ], 
+              [
+                -106.75198196099912, 
+                25.297510690476432
+              ], 
+              [
+                -106.75160919654276, 
+                25.299585753567225
+              ], 
+              [
+                -106.75248684216393, 
+                25.306114314538263
+              ], 
+              [
+                -106.75888664000017, 
+                25.321850256401582
+              ], 
+              [
+                -106.77218663415215, 
+                25.334780261178025
+              ], 
+              [
+                -106.80306642831312, 
+                25.37232532062255
+              ], 
+              [
+                -106.80325201127341, 
+                25.37518911166609
+              ], 
+              [
+                -106.80180605690977, 
+                25.376254469993455
+              ], 
+              [
+                -106.79642375971643, 
+                25.376987892622978
+              ], 
+              [
+                -106.76320911048667, 
+                25.37475286072624
+              ], 
+              [
+                -106.75956108668346, 
+                25.372405451164703
+              ], 
+              [
+                -106.75147858906166, 
+                25.3641146658107
+              ], 
+              [
+                -106.75261563739262, 
+                25.361942982132224
+              ], 
+              [
+                -106.7484752833909, 
+                25.356459830276425
+              ], 
+              [
+                -106.74172245820111, 
+                25.352484067080496
+              ], 
+              [
+                -106.7348082041691, 
+                25.35000631638163
+              ], 
+              [
+                -106.73342406349896, 
+                25.350205089204284
+              ], 
+              [
+                -106.73292559178925, 
+                25.35869910669146
+              ], 
+              [
+                -106.73334395706796, 
+                25.36037159403598
+              ], 
+              [
+                -106.73576892725268, 
+                25.36345679012977
+              ], 
+              [
+                -106.75478246872468, 
+                25.38306013604755
+              ], 
+              [
+                -106.76603307768825, 
+                25.387161319518363
+              ], 
+              [
+                -106.77312444154632, 
+                25.38905126733877
+              ], 
+              [
+                -106.77727976063964, 
+                25.385977187187304
+              ], 
+              [
+                -106.77995354411006, 
+                25.385157213980882
+              ], 
+              [
+                -106.80445989420745, 
+                25.393813958698107
+              ], 
+              [
+                -106.80646549759774, 
+                25.39543758091814
+              ], 
+              [
+                -106.81676430579833, 
+                25.41069236621773
+              ], 
+              [
+                -106.81915950085536, 
+                25.41661989058567
+              ], 
+              [
+                -106.81942010392694, 
+                25.419887181963396
+              ], 
+              [
+                -106.8132561452913, 
+                25.42917537646306
+              ], 
+              [
+                -106.81336723216285, 
+                25.440734782828756
+              ], 
+              [
+                -106.81196211783396, 
+                25.44499178558101
+              ], 
+              [
+                -106.81441304902287, 
+                25.451453422030465
+              ], 
+              [
+                -106.81779417485026, 
+                25.456723443682968
+              ], 
+              [
+                -106.8244247805509, 
+                25.45958776254228
+              ], 
+              [
+                -106.82751965253507, 
+                25.457263234918393
+              ], 
+              [
+                -106.82938029876489, 
+                25.45488124806614
+              ], 
+              [
+                -106.83264651894318, 
+                25.448244494630988
+              ], 
+              [
+                -106.83959169989156, 
+                25.448836590553302
+              ], 
+              [
+                -106.84361392340531, 
+                25.44673468627663
+              ], 
+              [
+                -106.84625011718745, 
+                25.443950130827968
+              ], 
+              [
+                -106.85769430050472, 
+                25.439384421816744
+              ], 
+              [
+                -106.8630890797631, 
+                25.440792300186747
+              ], 
+              [
+                -106.8814422499269, 
+                25.44213322947918
+              ], 
+              [
+                -106.8832351143275, 
+                25.44845746682343
+              ], 
+              [
+                -106.88479839901544, 
+                25.453969015266985
+              ], 
+              [
+                -106.87771735510428, 
+                25.48513860198827
+              ], 
+              [
+                -106.87153428321095, 
+                25.505768591529968
+              ], 
+              [
+                -106.87299084639675, 
+                25.507022744155137
+              ], 
+              [
+                -106.87791305394376, 
+                25.50725637692175
+              ], 
+              [
+                -106.88107436489263, 
+                25.50543648034886
+              ], 
+              [
+                -106.88766622826817, 
+                25.499752571791763
+              ], 
+              [
+                -106.89481563316635, 
+                25.477811591483256
+              ], 
+              [
+                -106.89571814326045, 
+                25.472215403275225
+              ], 
+              [
+                -106.89259431645948, 
+                25.466001946719558
+              ], 
+              [
+                -106.89446933900918, 
+                25.46350564321118
+              ], 
+              [
+                -106.90005195191493, 
+                25.460653104776867
+              ], 
+              [
+                -106.9234220462359, 
+                25.460604248623813
+              ], 
+              [
+                -106.9657748996386, 
+                25.467553084615435
+              ], 
+              [
+                -106.97475950361459, 
+                25.472435478812034
+              ], 
+              [
+                -106.97781976764347, 
+                25.47532975318806
+              ], 
+              [
+                -106.977351484291, 
+                25.476307531480174
+              ], 
+              [
+                -106.97832663681086, 
+                25.478512911294015
+              ], 
+              [
+                -106.98063397046047, 
+                25.48044236929356
+              ], 
+              [
+                -106.98953202345444, 
+                25.485598639856022
+              ], 
+              [
+                -106.99357057434507, 
+                25.486918074396016
+              ], 
+              [
+                -106.9990260669113, 
+                25.48770590934224
+              ], 
+              [
+                -107.007627759363, 
+                25.490945675133247
+              ], 
+              [
+                -107.02596814752444, 
+                25.50239113047655
+              ], 
+              [
+                -107.03347743379524, 
+                25.512304469861554
+              ], 
+              [
+                -107.02738583593727, 
+                25.515106237183925
+              ], 
+              [
+                -107.02143118857488, 
+                25.524462345793413
+              ], 
+              [
+                -107.01798066706063, 
+                25.538932040795288
+              ], 
+              [
+                -107.03097850314772, 
+                25.552728232984084
+              ], 
+              [
+                -107.03781133975143, 
+                25.554136676379503
+              ], 
+              [
+                -107.04120546420192, 
+                25.551544188726886
+              ], 
+              [
+                -107.04039266309378, 
+                25.54745097231515
+              ], 
+              [
+                -107.04312963312223, 
+                25.531002463052594
+              ], 
+              [
+                -107.04964127066968, 
+                25.531850533321506
+              ], 
+              [
+                -107.06153167999592, 
+                25.52906345383315
+              ], 
+              [
+                -107.0587483979723, 
+                25.5190289967037
+              ], 
+              [
+                -107.07118239378126, 
+                25.525370276425644
+              ], 
+              [
+                -107.08802856396235, 
+                25.52916891849156
+              ], 
+              [
+                -107.10050671788487, 
+                25.526424591152047
+              ], 
+              [
+                -107.10800978661062, 
+                25.521248502356467
+              ], 
+              [
+                -107.11455357222638, 
+                25.51928321212946
+              ], 
+              [
+                -107.12369668341505, 
+                25.525165147746982
+              ], 
+              [
+                -107.12595139775331, 
+                25.528470421347013
+              ], 
+              [
+                -107.12632100695892, 
+                25.531021095442206
+              ], 
+              [
+                -107.13311193734893, 
+                25.534013316010682
+              ], 
+              [
+                -107.13570409399624, 
+                25.533410805957395
+              ], 
+              [
+                -107.13825573254584, 
+                25.531531391360335
+              ], 
+              [
+                -107.14975346038904, 
+                25.51342118727513
+              ], 
+              [
+                -107.19220274384364, 
+                25.515569801062956
+              ], 
+              [
+                -107.20742753541161, 
+                25.517218540466125
+              ], 
+              [
+                -107.20742842237757, 
+                25.517218599630215
+              ], 
+              [
+                -107.22763528136959, 
+                25.53992049948356
+              ], 
+              [
+                -107.22889016910672, 
+                25.54340781733123
+              ], 
+              [
+                -107.23053622060688, 
+                25.55675189401993
+              ], 
+              [
+                -107.22893116002108, 
+                25.57108951077647
+              ], 
+              [
+                -107.22645238229977, 
+                25.573763360357635
+              ], 
+              [
+                -107.22113829257556, 
+                25.574417265132148
+              ], 
+              [
+                -107.21733872461492, 
+                25.573171067323152
+              ], 
+              [
+                -107.21509414779975, 
+                25.570368845082882
+              ], 
+              [
+                -107.21055648062152, 
+                25.570645703871577
+              ], 
+              [
+                -107.19860590753125, 
+                25.577079002705876
+              ], 
+              [
+                -107.1850767614517, 
+                25.585658112441358
+              ], 
+              [
+                -107.18331454560665, 
+                25.593102322359428
+              ], 
+              [
+                -107.18663351071605, 
+                25.605508566479813
+              ], 
+              [
+                -107.1891075175674, 
+                25.60551742821861
+              ], 
+              [
+                -107.20293203793523, 
+                25.600354009837034
+              ], 
+              [
+                -107.20497438931828, 
+                25.597512606422338
+              ], 
+              [
+                -107.21795768994343, 
+                25.595714147516702
+              ], 
+              [
+                -107.22879790403933, 
+                25.595379975105377
+              ], 
+              [
+                -107.23200394181491, 
+                25.595480390988957
+              ], 
+              [
+                -107.23695623775755, 
+                25.597025365301388
+              ], 
+              [
+                -107.23875700927454, 
+                25.598366722213893
+              ], 
+              [
+                -107.2421846221535, 
+                25.602598968635476
+              ], 
+              [
+                -107.243143461793, 
+                25.606205852760493
+              ], 
+              [
+                -107.24196776170815, 
+                25.609917903511143
+              ], 
+              [
+                -107.26406587979352, 
+                25.62868783056706
+              ], 
+              [
+                -107.27693002253997, 
+                25.640886985995003
+              ], 
+              [
+                -107.27955954462504, 
+                25.6453661790916
+              ], 
+              [
+                -107.28667406426936, 
+                25.66317599499859
+              ], 
+              [
+                -107.28627369831968, 
+                25.665526768291958
+              ], 
+              [
+                -107.28321254324423, 
+                25.667397223573317
+              ], 
+              [
+                -107.28197051128764, 
+                25.669354660171493
+              ], 
+              [
+                -107.28197418513098, 
+                25.674608903177482
+              ], 
+              [
+                -107.28477994330521, 
+                25.67813818765392
+              ], 
+              [
+                -107.29177508466447, 
+                25.67814969090789
+              ], 
+              [
+                -107.29573990572527, 
+                25.673850575511416
+              ], 
+              [
+                -107.29556537341071, 
+                25.671663767183382
+              ], 
+              [
+                -107.29641308444214, 
+                25.670130776056745
+              ], 
+              [
+                -107.30162023681743, 
+                25.66536768698904
+              ], 
+              [
+                -107.30503576050978, 
+                25.664658245016312
+              ], 
+              [
+                -107.31728369434201, 
+                25.665499134044353
+              ], 
+              [
+                -107.33402286031456, 
+                25.67371073904145
+              ], 
+              [
+                -107.33960137298159, 
+                25.67774737103859
+              ], 
+              [
+                -107.3455780235466, 
+                25.68645111751006
+              ], 
+              [
+                -107.3534992928424, 
+                25.71274793089343
+              ], 
+              [
+                -107.35385608436715, 
+                25.71549488760838
+              ], 
+              [
+                -107.33819733544347, 
+                25.72410298640086
+              ], 
+              [
+                -107.32571475796671, 
+                25.72093769244652
+              ], 
+              [
+                -107.3207860898202, 
+                25.71858193559948
+              ], 
+              [
+                -107.3181581965942, 
+                25.718258634439728
+              ], 
+              [
+                -107.3095548506996, 
+                25.719295987019187
+              ], 
+              [
+                -107.29774301569795, 
+                25.722670310023105
+              ], 
+              [
+                -107.28795648128448, 
+                25.723447700838424
+              ], 
+              [
+                -107.23835173212089, 
+                25.720674900856725
+              ], 
+              [
+                -107.22395386177561, 
+                25.718002300120713
+              ], 
+              [
+                -107.22136786037196, 
+                25.718342636574487
+              ], 
+              [
+                -107.22046343020293, 
+                25.72524258878021
+              ], 
+              [
+                -107.22526058396774, 
+                25.72801915653722
+              ], 
+              [
+                -107.25098714695163, 
+                25.73520899179592
+              ], 
+              [
+                -107.25955559399823, 
+                25.736897213682653
+              ], 
+              [
+                -107.26315394448352, 
+                25.736846223621058
+              ], 
+              [
+                -107.27020163758795, 
+                25.73350266232285
+              ], 
+              [
+                -107.32194777190622, 
+                25.744292603163032
+              ], 
+              [
+                -107.3414350165409, 
+                25.749323079052218
+              ], 
+              [
+                -107.34676172136678, 
+                25.751451821792827
+              ], 
+              [
+                -107.3483865129235, 
+                25.756407711055846
+              ], 
+              [
+                -107.36665496351725, 
+                25.78300854821781
+              ], 
+              [
+                -107.3739694250433, 
+                25.779841862777186
+              ], 
+              [
+                -107.37581737461431, 
+                25.779042335807592
+              ], 
+              [
+                -107.37746568973216, 
+                25.771160941348786
+              ], 
+              [
+                -107.37615765157275, 
+                25.767384410369534
+              ], 
+              [
+                -107.3721444990889, 
+                25.755793534283747
+              ], 
+              [
+                -107.36975857798214, 
+                25.752988880425733
+              ], 
+              [
+                -107.36828794994781, 
+                25.75199195971594
+              ], 
+              [
+                -107.36695128257442, 
+                25.74875776786052
+              ], 
+              [
+                -107.36713112195976, 
+                25.747732043695166
+              ], 
+              [
+                -107.37033246275027, 
+                25.744092786469935
+              ], 
+              [
+                -107.37463912829854, 
+                25.742039209773157
+              ], 
+              [
+                -107.38073313341485, 
+                25.74327838849151
+              ], 
+              [
+                -107.38149432804373, 
+                25.74141213437299
+              ], 
+              [
+                -107.38295298155651, 
+                25.740976589654732
+              ], 
+              [
+                -107.41487606760462, 
+                25.745365585980434
+              ], 
+              [
+                -107.49109152628668, 
+                25.79143294648361
+              ], 
+              [
+                -107.51251398786226, 
+                25.801255719046654
+              ], 
+              [
+                -107.51886828771072, 
+                25.80577453296585
+              ], 
+              [
+                -107.52865915223539, 
+                25.815033173265185
+              ], 
+              [
+                -107.55975750223435, 
+                25.8444976205367
+              ], 
+              [
+                -107.66392201605528, 
+                25.810599032004188
+              ], 
+              [
+                -107.70425855585812, 
+                25.82657513911932
+              ], 
+              [
+                -107.7513351696352, 
+                25.845363933496625
+              ], 
+              [
+                -107.83238660214994, 
+                25.878078689304004
+              ], 
+              [
+                -107.94314467007365, 
+                26.028975748567902
+              ], 
+              [
+                -107.96195693325592, 
+                26.053695585929027
+              ], 
+              [
+                -107.95237907910365, 
+                26.057742784065972
+              ], 
+              [
+                -107.95829266941202, 
+                26.06697740408507
+              ], 
+              [
+                -107.98077185194894, 
+                26.09589886473557
+              ], 
+              [
+                -107.99818118159249, 
+                26.11435817732497
+              ], 
+              [
+                -108.02088533995136, 
+                26.13485367144976
+              ], 
+              [
+                -108.05356119891309, 
+                26.15478453705496
+              ], 
+              [
+                -108.07999092014268, 
+                26.174291764943387
+              ], 
+              [
+                -108.07895081287397, 
+                26.169055930567428
+              ], 
+              [
+                -108.07284651612875, 
+                26.15282416220494
+              ], 
+              [
+                -108.06245662536307, 
+                26.140210464542893
+              ], 
+              [
+                -108.05279432236038, 
+                26.13479383184341
+              ], 
+              [
+                -108.04195616056397, 
+                26.134259091801873
+              ], 
+              [
+                -108.0303553611919, 
+                26.122927143123515
+              ], 
+              [
+                -108.02242564089535, 
+                26.114089882573627
+              ], 
+              [
+                -108.0217998183813, 
+                26.087527032211277
+              ], 
+              [
+                -108.01483656212636, 
+                26.07149664924222
+              ], 
+              [
+                -108.00925457078651, 
+                26.06040035506078
+              ], 
+              [
+                -107.99669614537632, 
+                26.058514130903845
+              ], 
+              [
+                -107.99268832523461, 
+                26.057316142503222
+              ], 
+              [
+                -107.99104840588322, 
+                26.056262495697112
+              ], 
+              [
+                -107.97568773380954, 
+                26.039507288654498
+              ], 
+              [
+                -107.96758736524373, 
+                26.02297226257225
+              ], 
+              [
+                -107.96545686080596, 
+                26.01498010043244
+              ], 
+              [
+                -107.96892788093834, 
+                26.012975777204325
+              ], 
+              [
+                -107.97025507141473, 
+                26.006453951603003
+              ], 
+              [
+                -107.94366041880961, 
+                25.98357066700238
+              ], 
+              [
+                -107.9403651345827, 
+                25.98264033671568
+              ], 
+              [
+                -107.93030263977087, 
+                25.976279741389153
+              ], 
+              [
+                -107.92744222117994, 
+                25.973746147531138
+              ], 
+              [
+                -107.91556163320296, 
+                25.95549080314033
+              ], 
+              [
+                -107.87098286040323, 
+                25.916988275404997
+              ], 
+              [
+                -107.86372942410536, 
+                25.906314152734666
+              ], 
+              [
+                -107.86193565682322, 
+                25.90194765367584
+              ], 
+              [
+                -107.86279525905752, 
+                25.901166814773866
+              ], 
+              [
+                -107.8637807863798, 
+                25.90130860393996
+              ], 
+              [
+                -107.86730998962543, 
+                25.903783667668847
+              ], 
+              [
+                -107.87029601446837, 
+                25.906825171217946
+              ], 
+              [
+                -107.87669940601914, 
+                25.90487202551204
+              ], 
+              [
+                -107.87650011477072, 
+                25.902273551830085
+              ], 
+              [
+                -107.87288998526535, 
+                25.895870477492462
+              ], 
+              [
+                -107.86162261405619, 
+                25.886375778891537
+              ], 
+              [
+                -107.84390679414275, 
+                25.869705348544564
+              ], 
+              [
+                -107.81917847465256, 
+                25.844616876156373
+              ], 
+              [
+                -107.7971100188827, 
+                25.81821857942002
+              ], 
+              [
+                -107.7867765603807, 
+                25.802986735564275
+              ], 
+              [
+                -107.78383063081976, 
+                25.79494115870783
+              ], 
+              [
+                -107.78412709918614, 
+                25.793891419310924
+              ], 
+              [
+                -107.7853227144112, 
+                25.7941390166686
+              ], 
+              [
+                -107.78993732608103, 
+                25.79813288353887
+              ], 
+              [
+                -107.79450369321003, 
+                25.793175449603712
+              ], 
+              [
+                -107.79472331173905, 
+                25.790739229530583
+              ], 
+              [
+                -107.79040982936442, 
+                25.778933911003392
+              ], 
+              [
+                -107.78437756195099, 
+                25.771804453514644
+              ], 
+              [
+                -107.76347325764125, 
+                25.754094284691174
+              ], 
+              [
+                -107.76735914434609, 
+                25.75256311602182
+              ], 
+              [
+                -107.77254279684068, 
+                25.75484238397165
+              ], 
+              [
+                -107.77833862290585, 
+                25.752787823380757
+              ], 
+              [
+                -107.79027229987739, 
+                25.75137228821878
+              ], 
+              [
+                -107.80898663521315, 
+                25.75514666467317
+              ], 
+              [
+                -107.81089577298022, 
+                25.754890147723128
+              ], 
+              [
+                -107.814949720201, 
+                25.752671591829838
+              ], 
+              [
+                -107.82107593537843, 
+                25.748349618953444
+              ], 
+              [
+                -107.82365053737537, 
+                25.747766061610093
+              ], 
+              [
+                -107.82943187468331, 
+                25.749006197219565
+              ], 
+              [
+                -107.84361781257326, 
+                25.75622514704725
+              ], 
+              [
+                -107.86707997997631, 
+                25.773599831279842
+              ], 
+              [
+                -107.87238734857074, 
+                25.778758704301087
+              ], 
+              [
+                -107.8896001037096, 
+                25.79913626656325
+              ], 
+              [
+                -107.8927317458008, 
+                25.797634807775207
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 49, 
+      "properties": {
+        "CENSUSAREA": 570640.95, 
+        "GEO_ID": "0400000US02", 
+        "ISO": "US-AK", 
+        "LSAD": "", 
+        "NAME": "Alaska", 
+        "NAME_1": "Alaska", 
+        "STATE": "AK"
+      }, 
+      "type": "Feature"
+    }, 
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              [
+                -102.2717160889255, 
+                25.41675866545396
+              ], 
+              [
+                -102.26602903757048, 
+                25.416219731882688
+              ], 
+              [
+                -102.23717774552676, 
+                25.40191948183308
+              ], 
+              [
+                -102.22529504701484, 
+                25.3918023319598
+              ], 
+              [
+                -102.22216801208927, 
+                25.381175425105788
+              ], 
+              [
+                -102.21767760611637, 
+                25.373883864877435
+              ], 
+              [
+                -102.13010203758886, 
+                25.33220756367635
+              ], 
+              [
+                -102.10219122965275, 
+                25.310477906934043
+              ], 
+              [
+                -102.09605592992034, 
+                25.30924467932331
+              ], 
+              [
+                -102.07743769409997, 
+                25.300553275590392
+              ], 
+              [
+                -102.06827533453776, 
+                25.288645806178337
+              ], 
+              [
+                -102.06495664808408, 
+                25.28646562372973
+              ], 
+              [
+                -102.05730660734004, 
+                25.284127679042058
+              ], 
+              [
+                -102.04806224372977, 
+                25.284945689755194
+              ], 
+              [
+                -102.0357345663277, 
+                25.291555256667078
+              ], 
+              [
+                -102.02627605710707, 
+                25.29226988848667
+              ], 
+              [
+                -101.98806355493203, 
+                25.27923415306834
+              ], 
+              [
+                -101.98015167337174, 
+                25.274090242616563
+              ], 
+              [
+                -101.96539598201424, 
+                25.272491984673145
+              ], 
+              [
+                -101.92843881650987, 
+                25.26121451112145
+              ], 
+              [
+                -101.90196962532917, 
+                25.251193386314004
+              ], 
+              [
+                -101.85952917477309, 
+                25.23294593628989
+              ], 
+              [
+                -101.85580102836724, 
+                25.229538447487208
+              ], 
+              [
+                -101.83907992850072, 
+                25.22041853695299
+              ], 
+              [
+                -101.77510251132381, 
+                25.18920939918206
+              ], 
+              [
+                -101.7369721755756, 
+                25.173627557141355
+              ], 
+              [
+                -101.7233724334881, 
+                25.17066246344575
+              ], 
+              [
+                -101.70939786508211, 
+                25.162634417830038
+              ], 
+              [
+                -101.67482359514005, 
+                25.136749770159433
+              ], 
+              [
+                -101.63369769193574, 
+                25.11432181213947
+              ], 
+              [
+                -101.621521335619, 
+                25.102676803511773
+              ], 
+              [
+                -101.60486275450909, 
+                25.09298814395815
+              ], 
+              [
+                -101.56851178698163, 
+                25.064875851469736
+              ], 
+              [
+                -101.563144803481, 
+                25.062312803581314
+              ], 
+              [
+                -101.5471326943798, 
+                25.047851405401342
+              ], 
+              [
+                -101.53859346242, 
+                25.037911384308874
+              ], 
+              [
+                -101.53357417518306, 
+                25.02638721483913
+              ], 
+              [
+                -101.51650329717774, 
+                25.01198400247102
+              ], 
+              [
+                -101.50661172768909, 
+                25.006930361095424
+              ], 
+              [
+                -101.50285849238472, 
+                25.006878183429915
+              ], 
+              [
+                -101.49164275828436, 
+                24.993836553930418
+              ], 
+              [
+                -101.48855698069288, 
+                24.987986494521863
+              ], 
+              [
+                -101.48782059189554, 
+                24.97664278618425
+              ], 
+              [
+                -101.48897083175704, 
+                24.964573913894387
+              ], 
+              [
+                -101.4923317239408, 
+                24.952762958110245
+              ], 
+              [
+                -101.48703669108865, 
+                24.93685485411836
+              ], 
+              [
+                -101.48185231261036, 
+                24.913298040069336
+              ], 
+              [
+                -101.4833554650211, 
+                24.908743890821864
+              ], 
+              [
+                -101.47683860840237, 
+                24.873939173072294
+              ], 
+              [
+                -101.46860479622367, 
+                24.863784515383987
+              ], 
+              [
+                -101.4604005201481, 
+                24.861667020863738
+              ], 
+              [
+                -101.44511343126601, 
+                24.863928203837276
+              ], 
+              [
+                -101.42815375794717, 
+                24.874439794990035
+              ], 
+              [
+                -101.38822681565578, 
+                24.872583246208695
+              ], 
+              [
+                -101.37687258522611, 
+                24.86134607529723
+              ], 
+              [
+                -101.36277870419785, 
+                24.84053098247344
+              ], 
+              [
+                -101.35323288921774, 
+                24.822117389104108
+              ], 
+              [
+                -101.3534529048526, 
+                24.803324122378797
+              ], 
+              [
+                -101.34676178938791, 
+                24.772140292055308
+              ], 
+              [
+                -101.33552972195122, 
+                24.763203096945624
+              ], 
+              [
+                -101.32383851706244, 
+                24.757143432266144
+              ], 
+              [
+                -101.30974893587987, 
+                24.75552377653854
+              ], 
+              [
+                -101.30679336673289, 
+                24.75318399273126
+              ], 
+              [
+                -101.30620104819617, 
+                24.750827761701295
+              ], 
+              [
+                -101.30800347606223, 
+                24.742430563176914
+              ], 
+              [
+                -101.30236213972285, 
+                24.73336003512808
+              ], 
+              [
+                -101.28752235738973, 
+                24.7254185293743
+              ], 
+              [
+                -101.28075706434826, 
+                24.720325187687617
+              ], 
+              [
+                -101.27573358773861, 
+                24.71392272489709
+              ], 
+              [
+                -101.25139418570521, 
+                24.69696871952107
+              ], 
+              [
+                -101.2196193285136, 
+                24.681913288603774
+              ], 
+              [
+                -101.19530758254979, 
+                24.67339206544801
+              ], 
+              [
+                -101.17770013498235, 
+                24.6618485357427
+              ], 
+              [
+                -101.16667604064304, 
+                24.660755152026077
+              ], 
+              [
+                -101.15266993416799, 
+                24.652658765748907
+              ], 
+              [
+                -101.14625375475934, 
+                24.644627039356678
+              ], 
+              [
+                -101.14544762586505, 
+                24.64126211280934
+              ], 
+              [
+                -101.15220907403138, 
+                24.60313210805113
+              ], 
+              [
+                -101.16479768580682, 
+                24.585631533406623
+              ], 
+              [
+                -101.19063163132162, 
+                24.560575206812967
+              ], 
+              [
+                -101.2081197238233, 
+                24.54926734980912
+              ], 
+              [
+                -101.24452772808631, 
+                24.521244971565785
+              ], 
+              [
+                -101.25728750661774, 
+                24.505634059074556
+              ], 
+              [
+                -101.27509794629407, 
+                24.489769112197266
+              ], 
+              [
+                -101.2885942276906, 
+                24.4736140296424
+              ], 
+              [
+                -101.32572653305606, 
+                24.456584099977007
+              ], 
+              [
+                -101.3650297745879, 
+                24.442968815061338
+              ], 
+              [
+                -101.41275065131782, 
+                24.41812585684899
+              ], 
+              [
+                -101.4308628125276, 
+                24.40399400455124
+              ], 
+              [
+                -101.45589220110993, 
+                24.396977947248843
+              ], 
+              [
+                -101.4690784648615, 
+                24.39810535246622
+              ], 
+              [
+                -101.48386617855449, 
+                24.395644806485418
+              ], 
+              [
+                -101.4919657538965, 
+                24.390979544432625
+              ], 
+              [
+                -101.50173324678323, 
+                24.390907086053584
+              ], 
+              [
+                -101.54261125350568, 
+                24.40281067862626
+              ], 
+              [
+                -101.56427063101471, 
+                24.40646806356583
+              ], 
+              [
+                -101.59560241748002, 
+                24.399465759368002
+              ], 
+              [
+                -101.6019541044867, 
+                24.395157541943448
+              ], 
+              [
+                -101.60960165809347, 
+                24.384112385043927
+              ], 
+              [
+                -101.63492917280578, 
+                24.368052191852055
+              ], 
+              [
+                -101.63987372328678, 
+                24.35169735208591
+              ], 
+              [
+                -101.64992111465172, 
+                24.343077364754855
+              ], 
+              [
+                -101.66707826382745, 
+                24.337058987448525
+              ], 
+              [
+                -101.6791612180414, 
+                24.336179029670966
+              ], 
+              [
+                -101.70386359371214, 
+                24.323496803106465
+              ], 
+              [
+                -101.7122095442991, 
+                24.315343011379007
+              ], 
+              [
+                -101.71604712126496, 
+                24.30641897675416
+              ], 
+              [
+                -101.73392689952034, 
+                24.288075306912692
+              ], 
+              [
+                -101.74538185331069, 
+                24.283398326573014
+              ], 
+              [
+                -101.78412190858599, 
+                24.275509514129386
+              ], 
+              [
+                -101.79274969627791, 
+                24.270313911030073
+              ], 
+              [
+                -101.78926484590197, 
+                24.265807343456856
+              ], 
+              [
+                -101.78851894954413, 
+                24.2618482428722
+              ], 
+              [
+                -101.79480302806573, 
+                24.254683116432755
+              ], 
+              [
+                -101.80120918869942, 
+                24.253745852300728
+              ], 
+              [
+                -101.80361726495858, 
+                24.251616264972288
+              ], 
+              [
+                -101.8155213805035, 
+                24.229038237876168
+              ], 
+              [
+                -101.82154343951807, 
+                24.22692885739755
+              ], 
+              [
+                -101.82709971682043, 
+                24.220369813152637
+              ], 
+              [
+                -101.82210779369129, 
+                24.207264957655273
+              ], 
+              [
+                -101.81899039402954, 
+                24.19149259597852
+              ], 
+              [
+                -101.81981669595304, 
+                24.1840473060602
+              ], 
+              [
+                -101.82639039924624, 
+                24.170032404165802
+              ], 
+              [
+                -101.83577759699989, 
+                24.165155578509598
+              ], 
+              [
+                -101.84020124775108, 
+                24.160058091267427
+              ], 
+              [
+                -101.85013155960695, 
+                24.13664910124792
+              ], 
+              [
+                -101.84713231260262, 
+                24.118108197062977
+              ], 
+              [
+                -101.85084309220902, 
+                24.109020904682758
+              ], 
+              [
+                -101.8629762625182, 
+                24.108239839073203
+              ], 
+              [
+                -101.87288062549162, 
+                24.10000464958724
+              ], 
+              [
+                -101.8722305453199, 
+                24.097936814846282
+              ], 
+              [
+                -101.88205393589561, 
+                24.079796309841587
+              ], 
+              [
+                -101.89966565086758, 
+                24.063261202917772
+              ], 
+              [
+                -101.9120515633645, 
+                24.05620538341368
+              ], 
+              [
+                -101.9223182243476, 
+                24.05779822628938
+              ], 
+              [
+                -101.92923502444776, 
+                24.062763103156122
+              ], 
+              [
+                -101.93344738876719, 
+                24.071869306916923
+              ], 
+              [
+                -101.93806632546007, 
+                24.08049240078183
+              ], 
+              [
+                -101.97726723380208, 
+                24.111132580973422
+              ], 
+              [
+                -102.01801582270497, 
+                24.1250982831173
+              ], 
+              [
+                -102.06762650522506, 
+                24.159386600280044
+              ], 
+              [
+                -102.11837260054683, 
+                24.17106380655465
+              ], 
+              [
+                -102.14905201419894, 
+                24.185187879167685
+              ], 
+              [
+                -102.15213793703873, 
+                24.18795418124959
+              ], 
+              [
+                -102.15755993209675, 
+                24.204874152417307
+              ], 
+              [
+                -102.18016025938296, 
+                24.231034273885705
+              ], 
+              [
+                -102.18499197669085, 
+                24.231567443966306
+              ], 
+              [
+                -102.2060003736954, 
+                24.272921952740628
+              ], 
+              [
+                -102.20848942288937, 
+                24.30829571638105
+              ], 
+              [
+                -102.20608138979122, 
+                24.370946353478594
+              ], 
+              [
+                -102.21005088488975, 
+                24.383620186519504
+              ], 
+              [
+                -102.2130636740544, 
+                24.4124201188115
+              ], 
+              [
+                -102.20887720598978, 
+                24.428725467800096
+              ], 
+              [
+                -102.20881886927536, 
+                24.45334687883564
+              ], 
+              [
+                -102.21254460262504, 
+                24.492235850533127
+              ], 
+              [
+                -102.21600268608802, 
+                24.50344743445335
+              ], 
+              [
+                -102.23202078670451, 
+                24.534400255092653
+              ], 
+              [
+                -102.25180895551787, 
+                24.55855465705156
+              ], 
+              [
+                -102.24967292729055, 
+                24.573041406126695
+              ], 
+              [
+                -102.26544001699067, 
+                24.58891015014507
+              ], 
+              [
+                -102.2696255431159, 
+                24.597422779335385
+              ], 
+              [
+                -102.27610730652783, 
+                24.627372322124685
+              ], 
+              [
+                -102.27549386037131, 
+                24.638038027843933
+              ], 
+              [
+                -102.27757275618595, 
+                24.64094730876278
+              ], 
+              [
+                -102.2847794801611, 
+                24.644766420961204
+              ], 
+              [
+                -102.29014401806513, 
+                24.64567137629962
+              ], 
+              [
+                -102.29021593010559, 
+                24.6418952877508
+              ], 
+              [
+                -102.29295582202893, 
+                24.64165812658631
+              ], 
+              [
+                -102.30653469316253, 
+                24.647280651790776
+              ], 
+              [
+                -102.30838187708818, 
+                24.64953349107248
+              ], 
+              [
+                -102.31318753045782, 
+                24.671216683410748
+              ], 
+              [
+                -102.32707217783431, 
+                24.708860595406005
+              ], 
+              [
+                -102.32989802019533, 
+                24.71420419242441
+              ], 
+              [
+                -102.33347185348767, 
+                24.717340029574192
+              ], 
+              [
+                -102.33793275257322, 
+                24.718732784789733
+              ], 
+              [
+                -102.34533738558001, 
+                24.749814041390827
+              ], 
+              [
+                -102.35686470246006, 
+                24.77237866964568
+              ], 
+              [
+                -102.38337010170247, 
+                24.808491150758233
+              ], 
+              [
+                -102.41669135938461, 
+                24.817058328716307
+              ], 
+              [
+                -102.4214439589311, 
+                24.821090760531774
+              ], 
+              [
+                -102.42458621548168, 
+                24.82673931752362
+              ], 
+              [
+                -102.42474544093623, 
+                24.836764380390367
+              ], 
+              [
+                -102.41926794481469, 
+                24.83953915377609
+              ], 
+              [
+                -102.42243814264538, 
+                24.8465074695056
+              ], 
+              [
+                -102.4315279262741, 
+                24.858344725866363
+              ], 
+              [
+                -102.44531134757287, 
+                24.867650136038666
+              ], 
+              [
+                -102.44997402612901, 
+                24.872597727767232
+              ], 
+              [
+                -102.45365802658013, 
+                24.887974352528737
+              ], 
+              [
+                -102.46808183509047, 
+                24.900768569348504
+              ], 
+              [
+                -102.46299735826167, 
+                24.912537414420086
+              ], 
+              [
+                -102.46067715551385, 
+                24.926972952568654
+              ], 
+              [
+                -102.4623998751991, 
+                24.95101013346314
+              ], 
+              [
+                -102.43795000898363, 
+                24.97222373715505
+              ], 
+              [
+                -102.42503127834955, 
+                24.987381463332884
+              ], 
+              [
+                -102.40633439924402, 
+                25.01522062913773
+              ], 
+              [
+                -102.40094241753079, 
+                25.01998377798237
+              ], 
+              [
+                -102.38971726692498, 
+                25.02431158561751
+              ], 
+              [
+                -102.37415077193629, 
+                25.0256417011478
+              ], 
+              [
+                -102.36943464769057, 
+                25.021829481040996
+              ], 
+              [
+                -102.36412372339575, 
+                25.020486901147436
+              ], 
+              [
+                -102.35057501093702, 
+                25.026734038328712
+              ], 
+              [
+                -102.35381250515346, 
+                25.038313861993664
+              ], 
+              [
+                -102.35322820086783, 
+                25.043145463510587
+              ], 
+              [
+                -102.3454533052779, 
+                25.055183490242865
+              ], 
+              [
+                -102.33614671843972, 
+                25.080193630527745
+              ], 
+              [
+                -102.33015127076007, 
+                25.091206383509324
+              ], 
+              [
+                -102.33124436312863, 
+                25.095095053733676
+              ], 
+              [
+                -102.33023943911641, 
+                25.10037510629198
+              ], 
+              [
+                -102.3081671872939, 
+                25.121947507061694
+              ], 
+              [
+                -102.30035400376086, 
+                25.136612409151095
+              ], 
+              [
+                -102.28562420138091, 
+                25.144286624218285
+              ], 
+              [
+                -102.28329672085779, 
+                25.142758066643907
+              ], 
+              [
+                -102.27994367525152, 
+                25.143199969196907
+              ], 
+              [
+                -102.27775479247092, 
+                25.149923286196405
+              ], 
+              [
+                -102.27708828818716, 
+                25.162863495830933
+              ], 
+              [
+                -102.27918963174271, 
+                25.193807905547178
+              ], 
+              [
+                -102.28372717522087, 
+                25.203593432600847
+              ], 
+              [
+                -102.31147763080678, 
+                25.232068904277863
+              ], 
+              [
+                -102.33140421535859, 
+                25.24916624987236
+              ], 
+              [
+                -102.3542830198447, 
+                25.278506737479194
+              ], 
+              [
+                -102.3768282427275, 
+                25.31888725715258
+              ], 
+              [
+                -102.39490387405506, 
+                25.379883234624607
+              ], 
+              [
+                -102.39589506048296, 
+                25.41102766342994
+              ], 
+              [
+                -102.3884636647219, 
+                25.43052224599244
+              ], 
+              [
+                -102.38169014545218, 
+                25.438190476094807
+              ], 
+              [
+                -102.37365490259242, 
+                25.442698065586473
+              ], 
+              [
+                -102.35326063044273, 
+                25.445840562162093
+              ], 
+              [
+                -102.30839564431938, 
+                25.43285384494347
+              ], 
+              [
+                -102.27695880247369, 
+                25.417605040217722
+              ], 
+              [
+                -102.2717160889255, 
+                25.41675866545396
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.42417818925716, 
+                27.0801262286652
+              ], 
+              [
+                -107.41965909535737, 
+                27.081750450904092
+              ], 
+              [
+                -107.41120196460724, 
+                27.07830738449144
+              ], 
+              [
+                -107.40679385498544, 
+                27.058699511490087
+              ], 
+              [
+                -107.41338306305882, 
+                27.056246556898493
+              ], 
+              [
+                -107.41907521374941, 
+                27.06079545833154
+              ], 
+              [
+                -107.42417818925716, 
+                27.0801262286652
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -107.03512299655316, 
+                27.357272856896696
+              ], 
+              [
+                -107.0329971832743, 
+                27.361031018041075
+              ], 
+              [
+                -107.02905597945936, 
+                27.393799704701504
+              ], 
+              [
+                -107.0134664579774, 
+                27.399408039062806
+              ], 
+              [
+                -106.98885130409079, 
+                27.40010336340522
+              ], 
+              [
+                -106.97367705552861, 
+                27.392292706095276
+              ], 
+              [
+                -106.96467872164331, 
+                27.37892849926167
+              ], 
+              [
+                -106.96483087215886, 
+                27.37551408936841
+              ], 
+              [
+                -106.96810163074608, 
+                27.373245294473605
+              ], 
+              [
+                -106.97220433548725, 
+                27.37220998549397
+              ], 
+              [
+                -106.97536750230091, 
+                27.3740166722219
+              ], 
+              [
+                -106.97757011305161, 
+                27.372297519729873
+              ], 
+              [
+                -106.98662343824266, 
+                27.350930456489962
+              ], 
+              [
+                -106.98919309064122, 
+                27.32268540928833
+              ], 
+              [
+                -106.98030319794427, 
+                27.305469701769063
+              ], 
+              [
+                -106.97667918457505, 
+                27.29029842939614
+              ], 
+              [
+                -106.99496459499795, 
+                27.279599960415432
+              ], 
+              [
+                -107.01956516179371, 
+                27.272716312419895
+              ], 
+              [
+                -107.04276500172422, 
+                27.269785950358955
+              ], 
+              [
+                -107.05567518111506, 
+                27.262193034144282
+              ], 
+              [
+                -107.06596735783839, 
+                27.24454139969141
+              ], 
+              [
+                -107.07691114901276, 
+                27.220150729893447
+              ], 
+              [
+                -107.08669020275374, 
+                27.18661851314046
+              ], 
+              [
+                -107.08131962228373, 
+                27.183738359617482
+              ], 
+              [
+                -107.08562067453674, 
+                27.176858630863453
+              ], 
+              [
+                -107.09888840654605, 
+                27.181813688071102
+              ], 
+              [
+                -107.11815788765665, 
+                27.194620656619232
+              ], 
+              [
+                -107.1369315492965, 
+                27.215615607253802
+              ], 
+              [
+                -107.13825551131015, 
+                27.250093646850036
+              ], 
+              [
+                -107.13072520722731, 
+                27.287730305004743
+              ], 
+              [
+                -107.1291247337915, 
+                27.29055895976858
+              ], 
+              [
+                -107.1154228659414, 
+                27.30015584949555
+              ], 
+              [
+                -107.10840902097543, 
+                27.308282590578006
+              ], 
+              [
+                -107.10641151402245, 
+                27.31319092252181
+              ], 
+              [
+                -107.09554722410891, 
+                27.324040092321
+              ], 
+              [
+                -107.07395357665412, 
+                27.33243770126462
+              ], 
+              [
+                -107.04559793477898, 
+                27.347127804009485
+              ], 
+              [
+                -107.03683921542672, 
+                27.35370782181041
+              ], 
+              [
+                -107.03512299655316, 
+                27.357272856896696
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -106.37079611870612, 
+                27.591613747754984
+              ], 
+              [
+                -106.34765714260169, 
+                27.601277257536466
+              ], 
+              [
+                -106.3266706700675, 
+                27.592867793308486
+              ], 
+              [
+                -106.32389864381746, 
+                27.58943650204525
+              ], 
+              [
+                -106.30410971625707, 
+                27.583324604732198
+              ], 
+              [
+                -106.29617862239023, 
+                27.582882075796572
+              ], 
+              [
+                -106.29401381495569, 
+                27.585749145772205
+              ], 
+              [
+                -106.2904810336675, 
+                27.585509739965815
+              ], 
+              [
+                -106.27467412600875, 
+                27.57546127438359
+              ], 
+              [
+                -106.24585115641267, 
+                27.552030280159894
+              ], 
+              [
+                -106.23336807365595, 
+                27.51961660280542
+              ], 
+              [
+                -106.22100841875664, 
+                27.513134448870616
+              ], 
+              [
+                -106.21810181117529, 
+                27.507703998634355
+              ], 
+              [
+                -106.21496513322427, 
+                27.493141958485484
+              ], 
+              [
+                -106.21393576929893, 
+                27.4762143999881
+              ], 
+              [
+                -106.22890490706631, 
+                27.443426329356406
+              ], 
+              [
+                -106.23010265357664, 
+                27.425626308745688
+              ], 
+              [
+                -106.23244393054277, 
+                27.420905866747756
+              ], 
+              [
+                -106.24043180773647, 
+                27.417168061707336
+              ], 
+              [
+                -106.24384192634055, 
+                27.40911290772983
+              ], 
+              [
+                -106.24419262288131, 
+                27.391209401207558
+              ], 
+              [
+                -106.22580847312746, 
+                27.33336756363935
+              ], 
+              [
+                -106.22411142093216, 
+                27.324299422373635
+              ], 
+              [
+                -106.22520636680203, 
+                27.321216539395166
+              ], 
+              [
+                -106.23988606056004, 
+                27.311421330220846
+              ], 
+              [
+                -106.2437988564192, 
+                27.30012463568897
+              ], 
+              [
+                -106.26748335003823, 
+                27.28587256096097
+              ], 
+              [
+                -106.28928394776815, 
+                27.259692650297886
+              ], 
+              [
+                -106.30492544424335, 
+                27.246918816845238
+              ], 
+              [
+                -106.32387089261611, 
+                27.234679146995283
+              ], 
+              [
+                -106.35189486997662, 
+                27.247452367859186
+              ], 
+              [
+                -106.37239631109108, 
+                27.254488107660087
+              ], 
+              [
+                -106.40051223866233, 
+                27.2579276541906
+              ], 
+              [
+                -106.43896042871921, 
+                27.26007907547038
+              ], 
+              [
+                -106.45996821688925, 
+                27.266381854887808
+              ], 
+              [
+                -106.46353199860953, 
+                27.270519876766016
+              ], 
+              [
+                -106.46992333124803, 
+                27.269343205889864
+              ], 
+              [
+                -106.49642372639933, 
+                27.269884387365746
+              ], 
+              [
+                -106.52810501597071, 
+                27.29051714464446
+              ], 
+              [
+                -106.5414839924843, 
+                27.307235427363707
+              ], 
+              [
+                -106.57014103432367, 
+                27.333085489334593
+              ], 
+              [
+                -106.58054605940289, 
+                27.33664455858093
+              ], 
+              [
+                -106.60551373689931, 
+                27.34125125363055
+              ], 
+              [
+                -106.6220954374365, 
+                27.349527353286145
+              ], 
+              [
+                -106.6629133774335, 
+                27.361535490637664
+              ], 
+              [
+                -106.6716783857464, 
+                27.367955901447058
+              ], 
+              [
+                -106.70035198204161, 
+                27.401711446977615
+              ], 
+              [
+                -106.70550194264959, 
+                27.41495546422735
+              ], 
+              [
+                -106.70681921949411, 
+                27.44812918100471
+              ], 
+              [
+                -106.70179550550039, 
+                27.456932340426643
+              ], 
+              [
+                -106.67401655127033, 
+                27.483954845757406
+              ], 
+              [
+                -106.66963141522847, 
+                27.49930810810158
+              ], 
+              [
+                -106.66650011419482, 
+                27.5267512753014
+              ], 
+              [
+                -106.66057541345536, 
+                27.536061127291852
+              ], 
+              [
+                -106.63617600091585, 
+                27.54823471467479
+              ], 
+              [
+                -106.60625353647673, 
+                27.55245949260191
+              ], 
+              [
+                -106.55024865924595, 
+                27.58761513501973
+              ], 
+              [
+                -106.53466891498023, 
+                27.59867842436272
+              ], 
+              [
+                -106.52812626114093, 
+                27.605730368589448
+              ], 
+              [
+                -106.50362738960177, 
+                27.6071363213102
+              ], 
+              [
+                -106.49783759381299, 
+                27.60587475849851
+              ], 
+              [
+                -106.49177705624022, 
+                27.603606524788194
+              ], 
+              [
+                -106.48245566641076, 
+                27.593496068351072
+              ], 
+              [
+                -106.47620097558786, 
+                27.59589221194404
+              ], 
+              [
+                -106.46477960827531, 
+                27.59352516662048
+              ], 
+              [
+                -106.45996187207348, 
+                27.59130831294229
+              ], 
+              [
+                -106.45807979258947, 
+                27.586673794194454
+              ], 
+              [
+                -106.45467110329288, 
+                27.583282104266118
+              ], 
+              [
+                -106.44635091924535, 
+                27.580836098024296
+              ], 
+              [
+                -106.44032441260588, 
+                27.585726662951625
+              ], 
+              [
+                -106.4426548052119, 
+                27.60057769622653
+              ], 
+              [
+                -106.43143334235488, 
+                27.607829098022187
+              ], 
+              [
+                -106.42273801623159, 
+                27.60696117496815
+              ], 
+              [
+                -106.40815325198982, 
+                27.599982394687906
+              ], 
+              [
+                -106.39746509510677, 
+                27.60181029155509
+              ], 
+              [
+                -106.38227509038097, 
+                27.598569069380755
+              ], 
+              [
+                -106.37079611870612, 
+                27.591613747754984
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -103.70877371803853, 
+                26.42511558305846
+              ], 
+              [
+                -103.69236685682306, 
+                26.42113768021677
+              ], 
+              [
+                -103.68498577554705, 
+                26.424194563922107
+              ], 
+              [
+                -103.68204532847896, 
+                26.427984990601246
+              ], 
+              [
+                -103.6798247400205, 
+                26.446659155116805
+              ], 
+              [
+                -103.68240556484244, 
+                26.44906318091031
+              ], 
+              [
+                -103.68234891876173, 
+                26.451232191048987
+              ], 
+              [
+                -103.67321810914822, 
+                26.45728828792653
+              ], 
+              [
+                -103.66789398590188, 
+                26.455570674820738
+              ], 
+              [
+                -103.66064591611415, 
+                26.45031853230178
+              ], 
+              [
+                -103.64548771000662, 
+                26.428912852940876
+              ], 
+              [
+                -103.64299010193837, 
+                26.419636925754855
+              ], 
+              [
+                -103.63702384143308, 
+                26.412619104833933
+              ], 
+              [
+                -103.60705828652115, 
+                26.403641885182402
+              ], 
+              [
+                -103.59118834437007, 
+                26.39888900596233
+              ], 
+              [
+                -103.58608310676496, 
+                26.400450492496105
+              ], 
+              [
+                -103.58464509809112, 
+                26.40407698528314
+              ], 
+              [
+                -103.58554032903834, 
+                26.40680338456638
+              ], 
+              [
+                -103.55487628788212, 
+                26.3977992366465
+              ], 
+              [
+                -103.52851228830187, 
+                26.400244758455315
+              ], 
+              [
+                -103.50961905607214, 
+                26.40639755046486
+              ], 
+              [
+                -103.45893615123269, 
+                26.409898330150316
+              ], 
+              [
+                -103.42828165012097, 
+                26.40481853649607
+              ], 
+              [
+                -103.42354160561084, 
+                26.400372203539533
+              ], 
+              [
+                -103.41997673343954, 
+                26.389924788205363
+              ], 
+              [
+                -103.40267065642942, 
+                26.391327562765916
+              ], 
+              [
+                -103.39539438820094, 
+                26.388645464560962
+              ], 
+              [
+                -103.39520941757202, 
+                26.37917269276129
+              ], 
+              [
+                -103.40377379141675, 
+                26.359287857612678
+              ], 
+              [
+                -103.42291854292574, 
+                26.335861311044802
+              ], 
+              [
+                -103.44721110848697, 
+                26.317626778964176
+              ], 
+              [
+                -103.46092158321902, 
+                26.309952457350285
+              ], 
+              [
+                -103.46325396864108, 
+                26.304053175480366
+              ], 
+              [
+                -103.50319143447057, 
+                26.292943630582688
+              ], 
+              [
+                -103.53334857920385, 
+                26.28845315124826
+              ], 
+              [
+                -103.54341672743718, 
+                26.280197936679098
+              ], 
+              [
+                -103.55903591487767, 
+                26.283374378379996
+              ], 
+              [
+                -103.56305134547604, 
+                26.287535608507827
+              ], 
+              [
+                -103.6251641293999, 
+                26.30213193859046
+              ], 
+              [
+                -103.67837942118356, 
+                26.319982624147148
+              ], 
+              [
+                -103.70319078960485, 
+                26.326779221384133
+              ], 
+              [
+                -103.70958246712928, 
+                26.32914263856663
+              ], 
+              [
+                -103.716566062836, 
+                26.33629937370804
+              ], 
+              [
+                -103.76103955077383, 
+                26.346143933471268
+              ], 
+              [
+                -103.77718441485754, 
+                26.347310404460817
+              ], 
+              [
+                -103.80683349084256, 
+                26.344650395800862
+              ], 
+              [
+                -103.82467269702587, 
+                26.339282721993495
+              ], 
+              [
+                -103.9367835129562, 
+                26.337574787450098
+              ], 
+              [
+                -103.98296984788074, 
+                26.345830144286932
+              ], 
+              [
+                -104.000228042311, 
+                26.355504018514985
+              ], 
+              [
+                -103.9905886298897, 
+                26.38230684641616
+              ], 
+              [
+                -103.99151159996357, 
+                26.385886666792363
+              ], 
+              [
+                -103.98752111894674, 
+                26.396055359102267
+              ], 
+              [
+                -103.9799769894942, 
+                26.407580944815777
+              ], 
+              [
+                -103.97289978770922, 
+                26.412811813613708
+              ], 
+              [
+                -103.97080793847263, 
+                26.41230869864508
+              ], 
+              [
+                -103.95806185179471, 
+                26.424121460659038
+              ], 
+              [
+                -103.95391334479895, 
+                26.430568352219968
+              ], 
+              [
+                -103.95185713202893, 
+                26.44022564371513
+              ], 
+              [
+                -103.95413098044372, 
+                26.45738863818175
+              ], 
+              [
+                -103.96239971164154, 
+                26.465777944977713
+              ], 
+              [
+                -103.96739095724848, 
+                26.468006213008245
+              ], 
+              [
+                -103.96971883508236, 
+                26.471365451517848
+              ], 
+              [
+                -103.96805691796168, 
+                26.47619244889718
+              ], 
+              [
+                -103.96465216237603, 
+                26.47766820303713
+              ], 
+              [
+                -103.94758993061407, 
+                26.470584469372923
+              ], 
+              [
+                -103.93199830164146, 
+                26.46916881722011
+              ], 
+              [
+                -103.91759260163609, 
+                26.470289445316837
+              ], 
+              [
+                -103.90693638605349, 
+                26.46727419631456
+              ], 
+              [
+                -103.89491102084692, 
+                26.454946171779284
+              ], 
+              [
+                -103.88749109359546, 
+                26.45257615166135
+              ], 
+              [
+                -103.85747580348215, 
+                26.446412002220324
+              ], 
+              [
+                -103.84829043870974, 
+                26.446089535011275
+              ], 
+              [
+                -103.84503629247209, 
+                26.447802059101754
+              ], 
+              [
+                -103.8280311505971, 
+                26.446047217518082
+              ], 
+              [
+                -103.81216558596958, 
+                26.441240201084938
+              ], 
+              [
+                -103.79644451903886, 
+                26.441270212397384
+              ], 
+              [
+                -103.76031685912388, 
+                26.430765265962748
+              ], 
+              [
+                -103.74878011819304, 
+                26.429985944821937
+              ], 
+              [
+                -103.74371672682392, 
+                26.4318064003268
+              ], 
+              [
+                -103.73579206216792, 
+                26.43166919715261
+              ], 
+              [
+                -103.70877371803853, 
+                26.42511558305846
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -103.1063759497939, 
+                25.728449727508274
+              ], 
+              [
+                -103.11189184495758, 
+                25.726085788489407
+              ], 
+              [
+                -103.12239851914909, 
+                25.728123305694147
+              ], 
+              [
+                -103.1473713495035, 
+                25.71871167854417
+              ], 
+              [
+                -103.16771785096104, 
+                25.73233912531596
+              ], 
+              [
+                -103.19390849263512, 
+                25.72374013596145
+              ], 
+              [
+                -103.20414298310237, 
+                25.71735890275154
+              ], 
+              [
+                -103.21006645680265, 
+                25.721373771366952
+              ], 
+              [
+                -103.23056103155024, 
+                25.714747890408262
+              ], 
+              [
+                -103.24539287228477, 
+                25.717376261905518
+              ], 
+              [
+                -103.27038017960844, 
+                25.739111481844237
+              ], 
+              [
+                -103.26990116208957, 
+                25.744391837743784
+              ], 
+              [
+                -103.26586390345634, 
+                25.75358344172463
+              ], 
+              [
+                -103.25175225079057, 
+                25.768675405435594
+              ], 
+              [
+                -103.22413455440001, 
+                25.776326815898074
+              ], 
+              [
+                -103.19027345712703, 
+                25.79693822636214
+              ], 
+              [
+                -103.18754522401825, 
+                25.80360488958232
+              ], 
+              [
+                -103.15525110431601, 
+                25.815401434198893
+              ], 
+              [
+                -103.14498670981739, 
+                25.813314801195197
+              ], 
+              [
+                -103.12926828585017, 
+                25.80239569748687
+              ], 
+              [
+                -103.1157661589557, 
+                25.787040144267568
+              ], 
+              [
+                -103.11435011469854, 
+                25.780441926534202
+              ], 
+              [
+                -103.11965687665594, 
+                25.775473867901304
+              ], 
+              [
+                -103.12215937016452, 
+                25.74921484190859
+              ], 
+              [
+                -103.1184838142263, 
+                25.74574958956623
+              ], 
+              [
+                -103.1045036579397, 
+                25.740511643250453
+              ], 
+              [
+                -103.10263764408063, 
+                25.73323040290999
+              ], 
+              [
+                -103.1063759497939, 
+                25.728449727508274
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -103.26756710915298, 
+                26.244712627958826
+              ], 
+              [
+                -103.26807523462432, 
+                26.247276598511498
+              ], 
+              [
+                -103.2633972789191, 
+                26.254315806727657
+              ], 
+              [
+                -103.24881427020905, 
+                26.252248051199157
+              ], 
+              [
+                -103.23442311056779, 
+                26.238784216815905
+              ], 
+              [
+                -103.21560411452313, 
+                26.234001899249613
+              ], 
+              [
+                -103.2003015919547, 
+                26.222009934494906
+              ], 
+              [
+                -103.19672234174823, 
+                26.222020410302267
+              ], 
+              [
+                -103.17147758302123, 
+                26.18312507701545
+              ], 
+              [
+                -103.1593354290262, 
+                26.169356511408335
+              ], 
+              [
+                -103.1520873592065, 
+                26.165646194368993
+              ], 
+              [
+                -103.14822461817339, 
+                26.154398281936736
+              ], 
+              [
+                -103.14523902111675, 
+                26.151773286705392
+              ], 
+              [
+                -103.13600609731212, 
+                26.14806308187956
+              ], 
+              [
+                -103.13112983958845, 
+                26.14119949605746
+              ], 
+              [
+                -103.12626741021893, 
+                26.128824940144625
+              ], 
+              [
+                -103.11053234030169, 
+                26.110129394489775
+              ], 
+              [
+                -103.1034615889673, 
+                26.106151489524358
+              ], 
+              [
+                -103.05321603962435, 
+                26.12164142385353
+              ], 
+              [
+                -103.01717362752883, 
+                26.12836172441375
+              ], 
+              [
+                -103.00661241202428, 
+                26.136154785944868
+              ], 
+              [
+                -103.00387827910353, 
+                26.141189525103893
+              ], 
+              [
+                -102.98696069985768, 
+                26.149450302471624
+              ], 
+              [
+                -102.97983509497489, 
+                26.149370762931763
+              ], 
+              [
+                -102.97594860994111, 
+                26.146320344104655
+              ], 
+              [
+                -102.96757592949851, 
+                26.15385004632431
+              ], 
+              [
+                -102.9598205634, 
+                26.157358133006614
+              ], 
+              [
+                -102.94068024507537, 
+                26.149081251073177
+              ], 
+              [
+                -102.92022339983367, 
+                26.153368336796976
+              ], 
+              [
+                -102.9068670634639, 
+                26.1423643454973
+              ], 
+              [
+                -102.89521545606856, 
+                26.145519328496814
+              ], 
+              [
+                -102.87362632133183, 
+                26.141622973231684
+              ], 
+              [
+                -102.85986767162112, 
+                26.135117068397154
+              ], 
+              [
+                -102.85724180935352, 
+                26.120716880325837
+              ], 
+              [
+                -102.8536159656534, 
+                26.119376944245015
+              ], 
+              [
+                -102.84910686834277, 
+                26.12086991339342
+              ], 
+              [
+                -102.84458610120825, 
+                26.11893912106276
+              ], 
+              [
+                -102.8412043515546, 
+                26.10912002555596
+              ], 
+              [
+                -102.79148116224181, 
+                26.07669262070291
+              ], 
+              [
+                -102.78835228039253, 
+                26.074219014033073
+              ], 
+              [
+                -102.78292471816191, 
+                26.064914588092524
+              ], 
+              [
+                -102.7472711096289, 
+                26.05926437610163
+              ], 
+              [
+                -102.74138669179425, 
+                26.044967034775237
+              ], 
+              [
+                -102.72374419793044, 
+                26.023781636447275
+              ], 
+              [
+                -102.70798526095251, 
+                26.0244283354066
+              ], 
+              [
+                -102.69853617874853, 
+                26.027509504158964
+              ], 
+              [
+                -102.6634377571619, 
+                26.004554714667652
+              ], 
+              [
+                -102.63589943209406, 
+                26.001225222567605
+              ], 
+              [
+                -102.60313699553633, 
+                25.98713270682919
+              ], 
+              [
+                -102.60142287742042, 
+                25.980844227271138
+              ], 
+              [
+                -102.583726489111, 
+                25.96713056919888
+              ], 
+              [
+                -102.57864148557474, 
+                25.9577442670723
+              ], 
+              [
+                -102.57933316953469, 
+                25.948705586074606
+              ], 
+              [
+                -102.57524915548449, 
+                25.933994147411934
+              ], 
+              [
+                -102.57316766385078, 
+                25.91204270713843
+              ], 
+              [
+                -102.57593234374853, 
+                25.902932758889072
+              ], 
+              [
+                -102.5836626515695, 
+                25.887369398646637
+              ], 
+              [
+                -102.59396631189433, 
+                25.875157923768175
+              ], 
+              [
+                -102.60021222226338, 
+                25.876578240120363
+              ], 
+              [
+                -102.61031310130235, 
+                25.872466704423157
+              ], 
+              [
+                -102.61839711537252, 
+                25.862868531998252
+              ], 
+              [
+                -102.62049287587807, 
+                25.855001092286948
+              ], 
+              [
+                -102.62837929020162, 
+                25.844533379220106
+              ], 
+              [
+                -102.63447872470994, 
+                25.84244117987809
+              ], 
+              [
+                -102.65713062601189, 
+                25.84564170319175
+              ], 
+              [
+                -102.66413303776807, 
+                25.83993268717916
+              ], 
+              [
+                -102.69377089799671, 
+                25.82593430931812
+              ], 
+              [
+                -102.70176193845944, 
+                25.819963111165386
+              ], 
+              [
+                -102.71410713955821, 
+                25.816430511656577
+              ], 
+              [
+                -102.71615295786121, 
+                25.816938769810356
+              ], 
+              [
+                -102.7206535100236, 
+                25.822218628058735
+              ], 
+              [
+                -102.72964674764351, 
+                25.823127035020356
+              ], 
+              [
+                -102.74248935049812, 
+                25.821276801301433
+              ], 
+              [
+                -102.74563822302689, 
+                25.818080937204474
+              ], 
+              [
+                -102.75808971634908, 
+                25.82424444282751
+              ], 
+              [
+                -102.76704173510753, 
+                25.826654069489862
+              ], 
+              [
+                -102.78416765344043, 
+                25.82397580501777
+              ], 
+              [
+                -102.7985748809547, 
+                25.818834260144058
+              ], 
+              [
+                -102.80835078298591, 
+                25.812088950088235
+              ], 
+              [
+                -102.83618967894078, 
+                25.798556229939905
+              ], 
+              [
+                -102.85414393287499, 
+                25.79399072608769
+              ], 
+              [
+                -102.85705603600172, 
+                25.789567655028563
+              ], 
+              [
+                -102.8620023204438, 
+                25.78644983394532
+              ], 
+              [
+                -102.87097968070097, 
+                25.78415383987373
+              ], 
+              [
+                -102.8920812797896, 
+                25.787037086551987
+              ], 
+              [
+                -102.92127995242996, 
+                25.786788367408395
+              ], 
+              [
+                -102.92846401026435, 
+                25.781979631767562
+              ], 
+              [
+                -102.93922058664454, 
+                25.77910754377346
+              ], 
+              [
+                -102.94622723276092, 
+                25.77902782872196
+              ], 
+              [
+                -102.98618900459245, 
+                25.788301491165207
+              ], 
+              [
+                -102.98911696649343, 
+                25.79209760818123
+              ], 
+              [
+                -102.98809175347111, 
+                25.796445447175646
+              ], 
+              [
+                -102.99104426304213, 
+                25.801267850932238
+              ], 
+              [
+                -102.99713393587086, 
+                25.804945474761873
+              ], 
+              [
+                -103.00121785473367, 
+                25.801838960275386
+              ], 
+              [
+                -103.00534420273162, 
+                25.801250136280963
+              ], 
+              [
+                -103.01259477694836, 
+                25.80476477573977
+              ], 
+              [
+                -103.0198004311745, 
+                25.81174313762307
+              ], 
+              [
+                -103.01949458728869, 
+                25.81772839051503
+              ], 
+              [
+                -103.03264864248183, 
+                25.84704713289153
+              ], 
+              [
+                -103.02907586589673, 
+                25.854086975914782
+              ], 
+              [
+                -103.0280407752559, 
+                25.86090613073735
+              ], 
+              [
+                -103.04206633427623, 
+                25.910941425425957
+              ], 
+              [
+                -103.04829774125055, 
+                25.932241413931575
+              ], 
+              [
+                -103.0512623598304, 
+                25.938264757928366
+              ], 
+              [
+                -103.05792028136153, 
+                25.94398973826524
+              ], 
+              [
+                -103.06497186893189, 
+                25.96181085421835
+              ], 
+              [
+                -103.06818602474368, 
+                25.98085431418993
+              ], 
+              [
+                -103.07187885950836, 
+                25.990236995524803
+              ], 
+              [
+                -103.08328007897094, 
+                25.99990041580351
+              ], 
+              [
+                -103.10097109897418, 
+                26.008268681797663
+              ], 
+              [
+                -103.11373923720744, 
+                26.01036635203906
+              ], 
+              [
+                -103.11809288653117, 
+                26.010051558077485
+              ], 
+              [
+                -103.12733920563139, 
+                26.0050829166498
+              ], 
+              [
+                -103.13432572333541, 
+                25.991711598048777
+              ], 
+              [
+                -103.1467147672289, 
+                25.989723350137016
+              ], 
+              [
+                -103.250780169, 
+                26.03717547406352
+              ], 
+              [
+                -103.30771388786252, 
+                26.089444965934934
+              ], 
+              [
+                -103.32159690051725, 
+                26.10840379301857
+              ], 
+              [
+                -103.32077756107182, 
+                26.110453567697235
+              ], 
+              [
+                -103.32395621408445, 
+                26.126437743395574
+              ], 
+              [
+                -103.32834717709706, 
+                26.132820904205243
+              ], 
+              [
+                -103.33528956817447, 
+                26.13707787939764
+              ], 
+              [
+                -103.33859555071803, 
+                26.14153524394417
+              ], 
+              [
+                -103.33851661619859, 
+                26.174143883878717
+              ], 
+              [
+                -103.3300087812784, 
+                26.201832636063138
+              ], 
+              [
+                -103.31911962611697, 
+                26.228656982482136
+              ], 
+              [
+                -103.30606730562225, 
+                26.23013356148726
+              ], 
+              [
+                -103.30044567832087, 
+                26.23543253642988
+              ], 
+              [
+                -103.29799336565416, 
+                26.24095149358061
+              ], 
+              [
+                -103.30003659919083, 
+                26.24344465515399
+              ], 
+              [
+                -103.29960250466425, 
+                26.2487870922039
+              ], 
+              [
+                -103.27586326418226, 
+                26.248100308042787
+              ], 
+              [
+                -103.26756710915298, 
+                26.244712627958826
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -103.65767216175239, 
+                26.163079038145682
+              ], 
+              [
+                -103.63744057843151, 
+                26.164703126247502
+              ], 
+              [
+                -103.61773175117644, 
+                26.15796807162175
+              ], 
+              [
+                -103.58267543416792, 
+                26.155615098195874
+              ], 
+              [
+                -103.56264979035394, 
+                26.15206812702005
+              ], 
+              [
+                -103.53956407996104, 
+                26.14390767885881
+              ], 
+              [
+                -103.46857485948593, 
+                26.088498386346142
+              ], 
+              [
+                -103.45414249999634, 
+                26.074888599581517
+              ], 
+              [
+                -103.43360283250807, 
+                26.048999099700083
+              ], 
+              [
+                -103.43143908125394, 
+                26.043183186995403
+              ], 
+              [
+                -103.43040385317727, 
+                26.031731233126226
+              ], 
+              [
+                -103.43589067239836, 
+                26.017137736496725
+              ], 
+              [
+                -103.4517760255706, 
+                25.987219513275154
+              ], 
+              [
+                -103.4592559030918, 
+                25.983059828713106
+              ], 
+              [
+                -103.46441812142525, 
+                25.983123355793822
+              ], 
+              [
+                -103.48213342611896, 
+                25.978345923699624
+              ], 
+              [
+                -103.50135048765684, 
+                25.96907521038798
+              ], 
+              [
+                -103.51959924353302, 
+                25.96436668839446
+              ], 
+              [
+                -103.56036103716559, 
+                25.96539095395373
+              ], 
+              [
+                -103.57896421925766, 
+                25.96212696363064
+              ], 
+              [
+                -103.6001762117313, 
+                25.98489932806329
+              ], 
+              [
+                -103.61514388242968, 
+                26.01596764129149
+              ], 
+              [
+                -103.6152352037678, 
+                26.045273140273327
+              ], 
+              [
+                -103.62023661301268, 
+                26.056757788766056
+              ], 
+              [
+                -103.63919017121823, 
+                26.0808737778547
+              ], 
+              [
+                -103.64485863945731, 
+                26.086047554464784
+              ], 
+              [
+                -103.69368154795212, 
+                26.11106599723348
+              ], 
+              [
+                -103.70026745131248, 
+                26.118860866704857
+              ], 
+              [
+                -103.70286307931575, 
+                26.12506290753767
+              ], 
+              [
+                -103.70678947105932, 
+                26.139195017750087
+              ], 
+              [
+                -103.70497572175654, 
+                26.148296782528814
+              ], 
+              [
+                -103.68357922993634, 
+                26.161362655551677
+              ], 
+              [
+                -103.67362359735581, 
+                26.163466239154577
+              ], 
+              [
+                -103.65767216175239, 
+                26.163079038145682
+              ]
+            ]
+          ], 
+          [
+            [
+              [
+                -104.78522121215799, 
+                26.591250337077366
+              ], 
+              [
+                -104.82878541716651, 
+                26.585742371248266
+              ], 
+              [
+                -104.84398396145134, 
+                26.58546568620255
+              ], 
+              [
+                -104.8543362994244, 
+                26.58997053891105
+              ], 
+              [
+                -104.86565926012352, 
+                26.605707360684445
+              ], 
+              [
+                -104.86809017719224, 
+                26.611405191259017
+              ], 
+              [
+                -104.85804960749307, 
+                26.615277616870017
+              ], 
+              [
+                -104.86116659549293, 
+                26.619987993461365
+              ], 
+              [
+                -104.86715296553535, 
+                26.623771402455493
+              ], 
+              [
+                -104.8725460484768, 
+                26.619593443810317
+              ], 
+              [
+                -104.88575826567018, 
+                26.64959649319719
+              ], 
+              [
+                -104.89563093967855, 
+                26.664860056099094
+              ], 
+              [
+                -104.90734251031269, 
+                26.6769613281709
+              ], 
+              [
+                -104.92166131114608, 
+                26.688833567442295
+              ], 
+              [
+                -104.94099185031374, 
+                26.69780936657343
+              ], 
+              [
+                -104.9440793205996, 
+                26.703359066521624
+              ], 
+              [
+                -104.94583113673414, 
+                26.71487158832224
+              ], 
+              [
+                -104.9491827916947, 
+                26.724379421871834
+              ], 
+              [
+                -104.96236845839218, 
+                26.743219549710652
+              ], 
+              [
+                -104.97783872152678, 
+                26.7558346779972
+              ], 
+              [
+                -104.99404689291833, 
+                26.76668505887258
+              ], 
+              [
+                -105.01114686256146, 
+                26.78554469066982
+              ], 
+              [
+                -105.01581087038885, 
+                26.822637178874178
+              ], 
+              [
+                -105.01805766824057, 
+                26.832072290228208
+              ], 
+              [
+                -105.02194933610572, 
+                26.83938460614111
+              ], 
+              [
+                -105.04182391514904, 
+                26.857851526363476
+              ], 
+              [
+                -105.07468389098888, 
+                26.8780001267143
+              ], 
+              [
+                -105.07334700161196, 
+                26.880990876631515
+              ], 
+              [
+                -105.05022456277462, 
+                26.883967365943608
+              ], 
+              [
+                -104.98552106890651, 
+                26.88447683917469
+              ], 
+              [
+                -104.96366476475798, 
+                26.879893333610315
+              ], 
+              [
+                -104.91898692414007, 
+                26.882517308936464
+              ], 
+              [
+                -104.90140240953933, 
+                26.89178506321663
+              ], 
+              [
+                -104.90252858209476, 
+                26.898393410078047
+              ], 
+              [
+                -104.90588894315982, 
+                26.901258716657033
+              ], 
+              [
+                -104.90486264618664, 
+                26.903033858804484
+              ], 
+              [
+                -104.87957980019891, 
+                26.922943587629582
+              ], 
+              [
+                -104.86896164385165, 
+                26.93837008120739
+              ], 
+              [
+                -104.87041939045976, 
+                26.947224387295538
+              ], 
+              [
+                -104.8686255716634, 
+                26.953315897061948
+              ], 
+              [
+                -104.84590939255428, 
+                26.978716480963595
+              ], 
+              [
+                -104.82916961316548, 
+                26.993943775585276
+              ], 
+              [
+                -104.80414696841747, 
+                27.001078683535184
+              ], 
+              [
+                -104.79955103264176, 
+                27.00545919210673
+              ], 
+              [
+                -104.780734284952, 
+                27.004882564901397
+              ], 
+              [
+                -104.7546159003994, 
+                26.980241274523806
+              ], 
+              [
+                -104.7425608366032, 
+                26.958804509534552
+              ], 
+              [
+                -104.73097196773865, 
+                26.944275675207425
+              ], 
+              [
+                -104.72460862077544, 
+                26.939921597603643
+              ], 
+              [
+                -104.72007187962053, 
+                26.924382747314663
+              ], 
+              [
+                -104.71987780351125, 
+                26.917454710252912
+              ], 
+              [
+                -104.70330896601044, 
+                26.898326307748864
+              ], 
+              [
+                -104.69188600446157, 
+                26.892458293276064
+              ], 
+              [
+                -104.6626034265064, 
+                26.860091672880802
+              ], 
+              [
+                -104.66117470023124, 
+                26.84467114395613
+              ], 
+              [
+                -104.65448436559542, 
+                26.841733849552707
+              ], 
+              [
+                -104.64982023073581, 
+                26.847779409090716
+              ], 
+              [
+                -104.6382521988505, 
+                26.844206049042604
+              ], 
+              [
+                -104.63403009074852, 
+                26.840828364550276
+              ], 
+              [
+                -104.61307198736196, 
+                26.811905945186062
+              ], 
+              [
+                -104.61029876953282, 
+                26.793618351185202
+              ], 
+              [
+                -104.6223554374553, 
+                26.791588182477728
+              ], 
+              [
+                -104.62374382078146, 
+                26.781850487070916
+              ], 
+              [
+                -104.61045505517987, 
+                26.747494901808395
+              ], 
+              [
+                -104.60453747429749, 
+                26.73985884874188
+              ], 
+              [
+                -104.58730759502923, 
+                26.73496943525945
+              ], 
+              [
+                -104.57757625059489, 
+                26.72929736040244
+              ], 
+              [
+                -104.57333416854426, 
+                26.719049432874016
+              ], 
+              [
+                -104.56330181503427, 
+                26.708257036888586
+              ], 
+              [
+                -104.54083691384415, 
+                26.69261049962805
+              ], 
+              [
+                -104.53431076367251, 
+                26.694046297833097
+              ], 
+              [
+                -104.52951822288095, 
+                26.697961848169612
+              ], 
+              [
+                -104.52899949289441, 
+                26.707996291165262
+              ], 
+              [
+                -104.53580759310866, 
+                26.73113009835825
+              ], 
+              [
+                -104.53377428669802, 
+                26.735159597667664
+              ], 
+              [
+                -104.5265991775186, 
+                26.73852016370118
+              ], 
+              [
+                -104.51601556541833, 
+                26.738083736786674
+              ], 
+              [
+                -104.49858614531972, 
+                26.735080550215716
+              ], 
+              [
+                -104.49203836924458, 
+                26.731611247807155
+              ], 
+              [
+                -104.48955617368378, 
+                26.72008266678645
+              ], 
+              [
+                -104.4930242278163, 
+                26.713827005163555
+              ], 
+              [
+                -104.49549553503387, 
+                26.6993028254955
+              ], 
+              [
+                -104.49425481895763, 
+                26.68965388442696
+              ], 
+              [
+                -104.48972084851492, 
+                26.678974270549524
+              ], 
+              [
+                -104.48067042277884, 
+                26.676130899272508
+              ], 
+              [
+                -104.478694808073, 
+                26.676286718787413
+              ], 
+              [
+                -104.47698491816703, 
+                26.67697028500206
+              ], 
+              [
+                -104.47492124770217, 
+                26.677359546759227
+              ], 
+              [
+                -104.47437464429981, 
+                26.677315717099816
+              ], 
+              [
+                -104.47384299881405, 
+                26.67722977426913
+              ], 
+              [
+                -104.47325955913716, 
+                26.677097957618326
+              ], 
+              [
+                -104.47304861187098, 
+                26.67700281384125
+              ], 
+              [
+                -104.47207301876871, 
+                26.67549774047728
+              ], 
+              [
+                -104.47092197449439, 
+                26.67335979538427
+              ], 
+              [
+                -104.46806556378598, 
+                26.669741760529487
+              ], 
+              [
+                -104.4555147105873, 
+                26.65620451582768
+              ], 
+              [
+                -104.45458807565531, 
+                26.652097188812107
+              ], 
+              [
+                -104.45670508685447, 
+                26.641603983794113
+              ], 
+              [
+                -104.45277900175422, 
+                26.63086288066043
+              ], 
+              [
+                -104.45001449929705, 
+                26.625561241855543
+              ], 
+              [
+                -104.43496114664414, 
+                26.60765019276756
+              ], 
+              [
+                -104.4309491209548, 
+                26.60392535100424
+              ], 
+              [
+                -104.39470175247637, 
+                26.58230049952438
+              ], 
+              [
+                -104.38450328817736, 
+                26.582697633362923
+              ], 
+              [
+                -104.3844136864063, 
+                26.577413493426665
+              ], 
+              [
+                -104.38429719579494, 
+                26.57058412875817
+              ], 
+              [
+                -104.4210953278713, 
+                26.543504731693886
+              ], 
+              [
+                -104.41955040182239, 
+                26.53591418777475
+              ], 
+              [
+                -104.42493448936992, 
+                26.53359155784316
+              ], 
+              [
+                -104.43442087671666, 
+                26.532047337898653
+              ], 
+              [
+                -104.43902973010124, 
+                26.53396539469444
+              ], 
+              [
+                -104.43982604145148, 
+                26.53674447519007
+              ], 
+              [
+                -104.43795494927893, 
+                26.54226245221061
+              ], 
+              [
+                -104.44047631459068, 
+                26.551927598647076
+              ], 
+              [
+                -104.44318803610142, 
+                26.55519213047098
+              ], 
+              [
+                -104.45079083434706, 
+                26.557945188929626
+              ], 
+              [
+                -104.48594249089881, 
+                26.550335038323396
+              ], 
+              [
+                -104.4940930454845, 
+                26.551585630815552
+              ], 
+              [
+                -104.50663220236996, 
+                26.54660844231415
+              ], 
+              [
+                -104.51951631842175, 
+                26.53381327258475
+              ], 
+              [
+                -104.53592330152927, 
+                26.531742875853563
+              ], 
+              [
+                -104.54822541850976, 
+                26.53520022573258
+              ], 
+              [
+                -104.55202267989064, 
+                26.53942583583766
+              ], 
+              [
+                -104.55448409372715, 
+                26.546444617453986
+              ], 
+              [
+                -104.56271070454676, 
+                26.5550239725835
+              ], 
+              [
+                -104.5787451139195, 
+                26.566367788458095
+              ], 
+              [
+                -104.62710058956058, 
+                26.58515547568564
+              ], 
+              [
+                -104.63410527665478, 
+                26.598805229855504
+              ], 
+              [
+                -104.64006808238149, 
+                26.606946038152934
+              ], 
+              [
+                -104.64638256205899, 
+                26.60902010673214
+              ], 
+              [
+                -104.65893099956243, 
+                26.598801789063607
+              ], 
+              [
+                -104.65701311568284, 
+                26.593804424539066
+              ], 
+              [
+                -104.6519470796726, 
+                26.590747499560585
+              ], 
+              [
+                -104.64839723078576, 
+                26.58529483796482
+              ], 
+              [
+                -104.6908697582251, 
+                26.587837657123234
+              ], 
+              [
+                -104.69038890314792, 
+                26.593899073027327
+              ], 
+              [
+                -104.69269044108117, 
+                26.600335839021568
+              ], 
+              [
+                -104.71084256990396, 
+                26.61049659534374
+              ], 
+              [
+                -104.71623359246995, 
+                26.610151783241754
+              ], 
+              [
+                -104.73100174930538, 
+                26.60116265292082
+              ], 
+              [
+                -104.7653503513604, 
+                26.59376418869757
+              ], 
+              [
+                -104.78522121215799, 
+                26.591250337077366
+              ]
+            ]
+          ]
+        ], 
+        "type": "MultiPolygon"
+      }, 
+      "id": 50, 
+      "properties": {
+        "CENSUSAREA": 6422.628, 
+        "GEO_ID": "0400000US15", 
+        "ISO": "US-HI", 
+        "LSAD": "", 
+        "NAME": "Hawaii", 
+        "NAME_1": "Hawaii", 
+        "STATE": "HI"
+      }, 
+      "type": "Feature"
+    }
+  ], 
+  "type": "FeatureCollection"
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson
new file mode 100755
index 0000000..dd8faf2
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson
@@ -0,0 +1,14 @@
+{"type":"FeatureCollection", "features": [
+{"type":"Feature","geometry":{
+    "type":"Polygon","coordinates":[
+        [[30.45560242820097,-11.50162840536825],[30.452093779850536,-11.507554062631375],[30.45092423040039,-11.510516891262938],[30.45092423040039,-11.514467329438357],[30.45092423040039,-11.525331034420756],[30.449754680950246,-11.53125669168388],[30.44156783479923,-11.552984101648677],[30.440398285349083,-11.56483541617493],[30.440398285349083,-11.570761073438057],[30.442737384249376,-11.575699121157328],[30.44624603259981,-11.579649559332747],[30.447415582049956,-11.583599997508163],[30.447415582049956,-11.58952565477129],[30.275491812878638,-11.806799754419256],[30.261457219476895,-11.818651068945508],[30.24508352717487,-11.825564335752489],[29.821706626222372,-11.893709394278442],[29.815858878971646,-11.89568461336615],[29.78895924161831,-11.898647441997714],[29.77843329656701,-11.910498756523968],[29.77375509876643,-11.924325290137928],[29.774924648216572,-11.943089871471162],[29.781941944917442,-11.975680986418356],[29.77843329656701,-12.020123415891803],[29.781941944917442,-12.037900387681184],[29.790128791068458,-12.051726921295144],[29.810011131720923,-12.072466721716086],[29.817028428421793,-12.085305645786192],[29.815858878971646,-12.097156960312446],[29.81351978007136,-12.110983493926408],[29.811180681171066,-12.123822417996514],[29.817028428421793,-12.133698513435057],[29.81351978007136,-12.139624170698184],[29.810011131720923,-12.145549827961311],[29.806502483370487,-12.150487875680582],[29.802993835020054,-12.153450704312146],[29.799485186669617,-12.155425923399854],[29.799485186669617,-12.154438313856001],[29.75621185701425,-12.157401142487563],[29.73515996691164,-12.1653020188384],[29.701243032857437,-12.189004647890904],[29.64861330760091,-12.212707276943409],[29.63223961529888,-12.215670105574972],[29.62054412079743,-12.209744448311845],[29.603000879045254,-12.192955086066322],[29.590135835093662,-12.188017038347049],[29.577270791142066,-12.188017038347049],[29.567914395540903,-12.191967476522468],[29.55271025268902,-12.204806400592574],[29.5339974614867,-12.216657715118828],[29.48955458238119,-12.231471858276642],[29.474350439529303,-12.24233556325904],[29.46850269227858,-12.255174487329148],[29.455637648326984,-12.294678869083324],[29.452128999976548,-12.317393888591974],[29.448620351626115,-12.327269984030519],[29.446281252725825,-12.335170860381353],[29.450959450526405,-12.343071736732188],[29.48019818678003,-12.380600899398654],[29.496571879082058,-12.386526556661781],[29.511776021933944,-12.387514166205637],[29.523471516435393,-12.392452213924908],[29.528149714235973,-12.410229185714286],[29.52464106588554,-12.428993767047519],[29.514115120834234,-12.443807910205336],[29.500080527432495,-12.452696396100025],[29.48019818678003,-12.454671615187735],[29.47318089007916,-12.452696396100025],[29.46850269227858,-12.448745957924608],[29.464994043928144,-12.443807910205336],[29.460315846127564,-12.440845081573773],[29.453298549426695,-12.440845081573773],[29.439263956024952,-12.441832691117627],[29.432246659324083,-12.440845081573773],[29.406516571420894,-12.431956595679083],[29.364412791215674,-12.409241576170432],[29.356225945064658,-12.407266357082722],[29.316461263759727,-12.40627874753887],[29.304765769258278,-12.405291137995015],[29.295409373657115,-12.401340699819597],[29.282544329705523,-12.390476994837199],[29.265001087953348,-12.370724803960112],[29.25447514290204,-12.36578675624084],[29.173776230842037,-12.367761975328548],[29.149215692388992,-12.373687632591675],[29.12816380228638,-12.382576118486364],[29.110620560534205,-12.393439823468762],[29.1000946154829,-12.373687632591675],[29.084890472631017,-12.376650461223239],[29.067347230878838,-12.384551337574074],[29.0533126374771,-12.383563728030218],[29.042786692425793,-12.378625680310947],[29.03459984627478,-12.378625680310947],[29.0299216484742,-12.376650461223239],[29.028752099024054,-12.362823927609277],[29.026413000123764,-12.352947832170733],[28.944544538613613,-12.20579401013643],[28.91881445071042,-12.174190504733087],[28.859167428753025,-12.141599389785892],[28.850980582602013,-12.129748075259641],[28.846302384801433,-12.110983493926408],[28.83460689029998,-12.092218912593173],[28.821741846348388,-12.07542955034765],[28.808876802396792,-12.064565845365252],[28.77379031889244,-12.045801264032018],[28.7597557254907,-12.03493755904962],[28.753907978239976,-12.020123415891803],[28.751568879339686,-11.99247034866388],[28.742212483738527,-11.984569472313044],[28.707126000234176,-11.989507520032317],[28.686074110131564,-11.983581862769192],[28.636953033225474,-11.957904014628976],[28.624087989273878,-11.948027919190434],[28.606544747521703,-11.910498756523968],[28.592510154119964,-11.900622661085421],[28.569119165117066,-11.91346158515553],[28.56561051676663,-11.90457309926084],[28.55391502226518,-11.884820908383752],[28.5492368244646,-11.87988286066448],[28.541049978313584,-11.871981984313646],[28.53169358271242,-11.866056327050519],[28.52116763766112,-11.866056327050519],[28.508302593709523,-11.8729695938575],[28.496607099208074,-11.857167841155828],[28.488420253057058,-11.808774973506964],[28.47672475855561,-11.797911268524565],[28.46035106625358,-11.792973220805294],[28.452164220102564,-11.781121906279042],[28.4428078245014,-11.711989238209235],[28.439299176150968,-11.701125533226836],[28.42526458274923,-11.68828660915673],[28.418247286048356,-11.678410513718184],[28.421755934398792,-11.674460075542768],[28.422925483848935,-11.664583980104224],[28.405382242096763,-11.60532740747296],[28.399534494846037,-11.59643892157827],[28.38433035199415,-11.581624778420455],[28.377313055293282,-11.570761073438057],[28.365617560791833,-11.541132787122425],[28.359769813541106,-11.53323191077159],[28.355091615740527,-11.518417767613773],[28.35392206629038,-11.465086852245637],[28.357430714640817,-11.447309880456258],[28.408890890447196,-11.372251555123324],[28.412399538797633,-11.368301116947908],[28.434620978350388,-11.351511754702383],[28.439299176150968,-11.34854892607082],[28.432281879450098,-11.311019763404353],[28.43579052780053,-11.289292353439556],[28.445146923401694,-11.274478210281739],[28.455672868452996,-11.26361450529934],[28.473216110205172,-11.226085342632874],[28.47204656075503,-11.191519008597972],[28.473216110205172,-11.181642913159427],[28.47672475855561,-11.175717255896302],[28.484911604706625,-11.162878331826194],[28.48725070360691,-11.15300223638765],[28.48725070360691,-11.141150921861398],[28.47672475855561,-11.08782000649326],[28.47672475855561,-11.077943911054717],[28.490759351957347,-11.058191720177629],[28.503624395908943,-11.034489091125124],[28.508302593709523,-11.023625386142726],[28.508302593709523,-11.013749290704181],[28.507133044259376,-10.992021880739385],[28.508302593709523,-10.98214578530084],[28.51415034096025,-10.973257299406152],[28.53169358271242,-10.955480327616772],[28.535202231062858,-10.944616622634374],[28.537541329963148,-10.933752917651976],[28.546897725564307,-10.914000726774887],[28.5492368244646,-10.90313702179249],[28.5492368244646,-10.858694592319043],[28.55391502226518,-10.834991963266537],[28.56327141786634,-10.812276943757887],[28.576136461817935,-10.79054953379309],[28.59367970357011,-10.772772562003711],[28.60069700027098,-10.762896466565167],[28.60771429697185,-10.74116905660037],[28.622918439823735,-10.71647881800401],[28.627596637624315,-10.711540770284738],[28.63344438487504,-10.708577941653175],[28.646309428826633,-10.70956555119703],[28.65215717607736,-10.708577941653175],[28.6661917694791,-10.697714236670777],[28.681395912330984,-10.681912483969107],[28.69426095628258,-10.663147902635874],[28.700108703533306,-10.643395711758785],[28.69426095628258,-10.636482444951806],[28.67086996727968,-10.618705473162425],[28.665022220028956,-10.608829377723882],[28.667361318929245,-10.596978063197628],[28.67320906617997,-10.576238262776688],[28.672039516729825,-10.564386948250435],[28.64747897827678,-10.537721490566366],[28.634613934325184,-10.519944518776988],[28.634613934325184,-10.506117985163026],[28.639292132125764,-10.496241889724482],[28.629935736524605,-10.481427746566666],[28.634613934325184,-10.471551651128124],[28.64046168157591,-10.462663165233433],[28.643970329926344,-10.45081185070718],[28.646309428826633,-10.437972926637073],[28.64513987937649,-10.426121612110821],[28.63812258267562,-10.407357030777586],[28.62876618707446,-10.391555278075916],[28.620579340923445,-10.373778306286539],[28.618240242023155,-10.348100458146323],[28.620579340923445,-10.327360657725382],[28.626427088174168,-10.311558905023713],[28.62876618707446,-10.295757152322041],[28.624087989273878,-10.276004961444954],[28.62174889037359,-10.276004961444954],[28.613562044222576,-10.271066913725683],[28.611222945322282,-10.269091694637972],[28.60771429697185,-10.263166037374846],[28.606544747521703,-10.253289941936302],[28.604205648621413,-10.24835189421703],[28.57028871456721,-10.219711217445253],[28.579645110168368,-10.20094663611202],[28.604205648621413,-10.172305959340243],[28.6194097914733,-10.141690063480755],[28.62876618707446,-10.103173291270435],[28.631105285974748,-10.02317691821823],[28.624087989273878,-9.951081421516859],[28.627596637624315,-9.929354011552062],[28.65917447277823,-9.865159391201528],[28.668530868379392,-9.821704571271935],[28.67788726398055,-9.803927599482556],[28.69660005518287,-9.796026723131721],[28.69893915408316,-9.792076284956304],[28.672039516729825,-9.765410827272234],[28.669700417829535,-9.750596684114418],[28.66385267057881,-9.744671026851293],[28.65449627497765,-9.74170819821973],[28.64513987937649,-9.734794931412749],[28.631105285974748,-9.716030350079516],[28.625257538724025,-9.695290549658573],[28.624087989273878,-9.648872901097416],[28.62174889037359,-9.638009196115018],[28.61239249477243,-9.617269395694077],[28.611222945322282,-9.608380909799386],[28.606544747521703,-9.594554376185426],[28.587831956319384,-9.57282696622063],[28.583153758518804,-9.56393848032594],[28.58900150576953,-9.558012823062814],[28.611222945322282,-9.551099556255833],[28.618240242023155,-9.543198679904997],[28.586662406869237,-9.544186289448852],[28.573797362917645,-9.53924824172958],[28.569119165117066,-9.526409317659473],[28.569119165117066,-9.508632345870094],[28.566780066216772,-9.495793421799986],[28.56327141786634,-9.484929716817588],[28.555084571715323,-9.47406601183519],[28.53169358271242,-9.457276649589666],[28.519998088210972,-9.445425335063414],[28.51415034096025,-9.429623582361742],[28.51648943986054,-9.41579704874778],[28.517658989310682,-9.397032467414547],[28.51648943986054,-9.378267886081314],[28.495437549757927,-9.353577647484954],[28.46035106625358,-9.334813066151721],[28.411229989347486,-9.324936970713178],[28.367956659692123,-9.308147608467653],[28.352752516840237,-9.27160605534504],[28.372634857492702,-9.235064502222428],[28.414738637697923,-9.207411434994505],[28.505963494809233,-9.163956615064912],[28.599527450820833,-9.096799166082814],[28.765603472741425,-8.93384359134684],[28.893084362807233,-8.765949968891594],[28.930509945211874,-8.680027938576261],[28.935188143012454,-8.591143079629367],[28.893084362807233,-8.502258220682473],[28.889575714456797,-8.48349363934924],[28.91530580235999,-8.472629934366841],[29.03459984627478,-8.454852962577462],[29.20769316489624,-8.428187504893392],[29.365582340665817,-8.404484875840888],[29.57610124169192,-8.372881370437547],[29.574931692241776,-8.3738689799814],[29.567914395540903,-8.394608780402343],[29.53867565928728,-8.451890133945898],[29.52698016478583,-8.468679496191422],[29.523471516435393,-8.472629934366841],[29.509436923033654,-8.485468858436947],[29.500080527432495,-8.493369734787782],[29.496571879082058,-8.494357344331638],[29.46616359337829,-8.502258220682473],[29.427568461523503,-8.516084754296433],[29.419381615372487,-8.521022802015706],[29.414703417571907,-8.52398563064727],[29.405347021970748,-8.534849335629668],[29.3936515274693,-8.550651088331337],[29.364412791215674,-8.608920051418746],[29.353886846164368,-8.625709413664271],[29.35037819781393,-8.629659851839689],[29.343360901113062,-8.635585509102814],[29.339852252762626,-8.639535947278231],[29.33751315386234,-8.644473994997504],[29.30593531870842,-8.721507539418146],[29.283713879155666,-8.817305665172022],[29.250966494551605,-8.901252476399645],[29.245118747300882,-8.910140962294335],[29.232253703349286,-8.92495510545215],[29.228745054998853,-8.927917934083714],[29.21938865939769,-8.932855981802986],[29.188980373693923,-8.941744467697674],[29.17962397809276,-8.945694905873092],[29.176115329742327,-8.948657734504655],[29.1702675824916,-8.95655861085549],[29.1468765934887,-9.036554983907696],[29.14453749458841,-9.041493031626969],[29.13985929678783,-9.042480641170823],[29.126994252836234,-9.042480641170823],[29.122316055035654,-9.043468250714676],[29.11880740668522,-9.047418688890094],[29.11646830778493,-9.052356736609367],[29.11412920888464,-9.06420805113562],[29.111790109984348,-9.070133708398746],[29.10945101108406,-9.090873508819687],[29.115298758334784,-9.101737213802085],[29.119976956135364,-9.106675261521358],[29.134011549537107,-9.115563747416047],[29.15155479128928,-9.124452233310736],[29.162080736340585,-9.128402671486155],[29.171437131941744,-9.133340719205426],[29.178454428642617,-9.139266376468553],[29.185471725343486,-9.147167252819388],[29.193658571494502,-9.15210530053866],[29.201845417645515,-9.156055738714077],[29.21237136269682,-9.15704334825793],[29.220558208847837,-9.155068129170223],[29.22640595609856,-9.15210530053866],[29.23108415389914,-9.15210530053866],[29.238101450600013,-9.155068129170223],[29.243949197850736,-9.158030957801786],[29.247457846201172,-9.16099378643335],[29.260322890152768,-9.175807929591166],[29.262661989053058,-9.180745977310437],[29.267340186853637,-9.189634463205126],[29.27084883520407,-9.193584901380543],[29.274357483554507,-9.197535339555962],[29.277866131904943,-9.19951055864367],[29.289561626406392,-9.20148577773138],[29.295409373657115,-9.203460996819087],[29.298918022007552,-9.206423825450651],[29.304765769258278,-9.214324701801486],[29.30827441760871,-9.21728753043305],[29.312952615409294,-9.218275139976903],[29.317630813209874,-9.218275139976903],[29.325817659360887,-9.213337092257632],[29.330495857161466,-9.213337092257632],[29.334004505511903,-9.216299920889195],[29.336343604412193,-9.223213187696176],[29.33751315386234,-9.234076892678575],[29.341021802212772,-9.24197776902941],[29.343360901113062,-9.24889103583639],[29.34453045056321,-9.255804302643371],[29.341021802212772,-9.28049454123973],[29.339852252762626,-9.286420198502856],[29.341021802212772,-9.296296293941401],[29.358565043964948,-9.356540476116518],[29.356225945064658,-9.365428962011208],[29.353886846164368,-9.372342228818189],[29.35154774726408,-9.378267886081314],[29.34920864836379,-9.382218324256732],[29.34453045056321,-9.385181152888295],[29.339852252762626,-9.387156371976005],[29.334004505511903,-9.388143981519859],[29.330495857161466,-9.391106810151422],[29.328156758261176,-9.396044857870693],[29.326987208811033,-9.40197051513382],[29.323478560460597,-9.425673144186325],[29.324648109910743,-9.43357402053716],[29.325817659360887,-9.443450115975704],[29.329326307711323,-9.451350992326539],[29.33751315386234,-9.46715274502821],[29.358565043964948,-9.52344648902791],[29.363243241765527,-9.531347365378744],[29.369090989016254,-9.537273022641871],[29.372599637366687,-9.540235851273435],[29.380786483517703,-9.54616150853656],[29.38429513186814,-9.54813672762427],[29.390142879118862,-9.54813672762427],[29.394821076919442,-9.547149118080416],[29.4041774725206,-9.542211070361143],[29.410025219771327,-9.541223460817289],[29.415872967022054,-9.541223460817289],[29.42873801097365,-9.542211070361143],[29.43341620877423,-9.544186289448852],[29.43809440657481,-9.54616150853656],[29.453298549426695,-9.559000432606668],[29.45680719777713,-9.562950870782085],[29.472011340629013,-9.594554376185426],[29.47785908787974,-9.601467642992406],[29.48487638458061,-9.605418081167825],[29.48955458238119,-9.607393300255533],[29.493063230731625,-9.610356128887096],[29.496571879082058,-9.614306567062513],[29.498910977982348,-9.617269395694077],[29.50125007688264,-9.619244614781785],[29.504758725233074,-9.62023222432564],[29.516454219734523,-9.622207443413348],[29.52230196698525,-9.625170272044912],[29.525810615335686,-9.632083538851893],[29.53165836258641,-9.642947243834291],[29.537506109837135,-9.647885291553562],[29.543353857087858,-9.650848120185126],[29.55504935158931,-9.652823339272835],[29.55972754938989,-9.654798558360543],[29.56908394499105,-9.659736606079814],[29.57376214279163,-9.661711825167524],[29.57844034059221,-9.661711825167524],[29.59481403289424,-9.65874899653596],[29.600661780144964,-9.659736606079814],[29.621713670247576,-9.666649872886795],[29.63925691199975,-9.669612701518359],[29.64393510980033,-9.671587920606068],[29.64861330760091,-9.673563139693776],[29.666156549353087,-9.68343923513232],[29.697734384507,-9.693315330570865],[29.716447175709323,-9.695290549658573],[29.722294922960046,-9.697265768746282],[29.725803571310482,-9.69924098783399],[29.732820868011352,-9.706154254640971],[29.73749906581193,-9.70812947372868],[29.743346813062658,-9.70812947372868],[29.755042307564107,-9.707141864184825],[29.760890054814833,-9.707141864184825],[29.772585549316283,-9.70812947372868],[29.77843329656701,-9.70812947372868],[29.790128791068458,-9.707141864184825],[29.794806988869038,-9.707141864184825],[29.799485186669617,-9.709117083272535],[29.804163384470197,-9.711092302360244],[29.807672032820633,-9.715042740535662],[29.810011131720923,-9.718993178711079],[29.82053707677223,-9.736770150500458],[29.83106302182353,-9.753559512745982],[29.845097615225274,-9.767386046359944],[29.856793109726723,-9.776274532254632],[29.860301758077156,-9.78220018951776],[29.863810406427593,-9.790101065868594],[29.868488604228173,-9.80689042811412],[29.87199725257861,-9.814791304464954],[29.87667545037919,-9.819729352184225],[29.886031845980348,-9.823679790359643],[29.8977273404818,-9.825655009447352],[29.90708373608296,-9.82960544762277],[29.91176193388354,-9.83158066671048],[29.91644013168412,-9.835531104885897],[29.919948780034552,-9.83849393351746],[29.922287878934846,-9.842444371692878],[29.924626977835135,-9.847382419412149],[29.936322472336585,-9.881948753447052],[29.93749202178673,-9.890837239341742],[29.932813823986148,-9.913552258850393],[29.90708373608296,-9.978734488744783],[29.905914186632813,-9.98466014600791],[29.90474463718267,-9.99157341281489],[29.90708373608296,-10.002437117797289],[29.90942283498325,-10.008362775060414],[29.92579652728528,-10.046879547270736],[29.935152922886438,-10.06366890951626],[29.93749202178673,-10.067619347691677],[29.93749202178673,-10.07255739541095],[29.933983373436295,-10.077495443130221],[29.917609681134266,-10.090334367200327],[29.910592384433393,-10.09724763400731],[29.90474463718267,-10.105148510358145],[29.898896889931944,-10.115024605796687],[29.895388241581507,-10.124900701235232],[29.87901454927948,-10.199959026568166],[29.875505900929042,-10.209835122006709],[29.87199725257861,-10.213785560182128],[29.86965815367832,-10.216748388813691],[29.86731905477803,-10.219711217445253],[29.85328446137629,-10.229587312883798],[29.843928065775128,-10.234525360603069],[29.839249867974548,-10.235512970146925],[29.8275543734731,-10.237488189234632],[29.821706626222372,-10.236500579690778],[29.808841582270777,-10.234525360603069],[29.802993835020054,-10.232550141515361],[29.787789692168168,-10.22563687470838],[29.777263747116862,-10.221686436532963],[29.771415999866136,-10.220698826989107],[29.725803571310482,-10.2187236079014],[29.70241258230758,-10.221686436532963],[29.697734384507,-10.222674046076817],[29.677852043854536,-10.231562531971505],[29.669665197703523,-10.236500579690778],[29.654461054851637,-10.249339503760886],[29.624052769147866,-10.27995539962037],[29.61586592299685,-10.285881056883497],[29.61118772519627,-10.28884388551506],[29.58779673619337,-10.29773237140975],[29.551540703238874,-10.315509343199128],[29.51996286808496,-10.323410219549963],[29.5106064724838,-10.327360657725382],[29.507097824133364,-10.32933587681309],[29.50125007688264,-10.33328631498851],[29.497741428532205,-10.336249143620071],[29.493063230731625,-10.343162410427052],[29.48019818678003,-10.356988944041014],[29.474350439529303,-10.360939382216431],[29.44511170327568,-10.377728744461955],[29.441603054925245,-10.380691573093518],[29.43809440657481,-10.384642011268937],[29.43575530767452,-10.392542887619772],[29.43341620877423,-10.424146393023111],[29.429907560423793,-10.434022488461656],[29.42639891207336,-10.439948145724781],[29.42172071427278,-10.44192336481249],[29.418212065922344,-10.445873802987908],[29.412364318671617,-10.453774679338743],[29.39599062636959,-10.48044013702281],[29.394821076919442,-10.487353403829793],[29.39599062636959,-10.494266670636772],[29.401838373620315,-10.50710559470688],[29.405347021970748,-10.513031251970006],[29.413533868121764,-10.521919737864696],[29.414703417571907,-10.526857785583967],[29.412364318671617,-10.53377105239095],[29.408855670321184,-10.539696709654075],[29.369090989016254,-10.592040015478357],[29.364412791215674,-10.601916110916902],[29.362073692315384,-10.606854158636175],[29.357395494514805,-10.630556787688679],[29.352717296714225,-10.636482444951806],[29.3468695494635,-10.638457664039514],[29.341021802212772,-10.63944527358337],[29.31996991211016,-10.63747005449566],[29.314122164859437,-10.63747005449566],[29.307104868158568,-10.640432883127222],[29.30125712090784,-10.65129658810962],[29.290731175856536,-10.66018507400431],[29.169098033041458,-10.736231008881099],[29.164419835240874,-10.742156666144226],[29.162080736340585,-10.749069932951205],[29.16325028579073,-10.865607859126023],[29.16091118689044,-10.872521125933005],[29.15857208799015,-10.877459173652277],[29.11412920888464,-10.917951164950306],[29.094246868232176,-10.939678574915103],[29.08606002208116,-10.953505108529065],[29.08372092318087,-10.95745554670448],[29.08606002208116,-10.962393594423753],[29.094246868232176,-10.96634403259917],[29.1702675824916,-10.993009490283239],[29.17962397809276,-10.998935147546366],[29.269679285753927,-11.08782000649326],[29.273187934104364,-11.08979522558097],[29.279035681355086,-11.09177044466868],[29.284883428605813,-11.093745663756387],[29.296578923107262,-11.092758054212533],[29.307104868158568,-11.090782835124823],[29.312952615409294,-11.090782835124823],[29.318800362660017,-11.090782835124823],[29.323478560460597,-11.092758054212533],[29.370260538466397,-11.117448292808891],[29.376108285717123,-11.119423511896601],[29.38195603296785,-11.119423511896601],[29.38663423076843,-11.11646068326504],[29.38897332966872,-11.111522635545766],[29.390142879118862,-11.105596978282641],[29.392481978019152,-11.079919130142425],[29.397160175819735,-11.055228891546065],[29.39832972526988,-11.04930323428294],[29.397160175819735,-11.042389967475959],[29.387803780218572,-11.029551043405853],[29.380786483517703,-11.021650167055018],[29.369090989016254,-11.005848414353347],[29.365582340665817,-10.998935147546366],[29.362073692315384,-10.988071442563967],[29.360904142865238,-10.978195347125425],[29.362073692315384,-10.970294470774588],[29.363243241765527,-10.964368813511463],[29.364412791215674,-10.958443156248336],[29.362073692315384,-10.951529889441355],[29.343360901113062,-10.923876822213433],[29.33751315386234,-10.908075069511762],[29.34920864836379,-10.895236145441654],[29.365582340665817,-10.884372440459256],[29.64159601090004,-10.739193837512662],[29.64861330760091,-10.737218618424953],[29.654461054851637,-10.738206227968806],[29.659139252652217,-10.740181447056516],[29.675512944954246,-10.753020371126624],[29.708260329558307,-10.770797342916001],[29.74685546141309,-10.78363626698611],[29.757381406464397,-10.788574314705382],[29.776094197666716,-10.79943801968778],[29.7807723954673,-10.803388457863196],[29.78545059326788,-10.811289334214031],[29.812350230621213,-10.862645030494459],[29.819367527322083,-10.870545906845296],[29.82287617567252,-10.873508735476857],[29.845097615225274,-10.888322878634675],[29.850945362475997,-10.892273316810092],[29.856793109726723,-10.899186583617073],[29.883692747080058,-10.944616622634374],[29.886031845980348,-10.949554670353645],[29.887201395430495,-10.954492718072919],[29.888370944880638,-10.965356423055317],[29.89304914268122,-11.019674947967308],[29.83457167017397,-11.394966574631976],[29.841588966874838,-11.389040917368849],[29.850945362475997,-11.372251555123324],[29.88018409872962,-11.361387850140925],[29.884862296530205,-11.354474583333946],[29.886031845980348,-11.344598487895402],[29.889540494330785,-11.333734782913004],[29.895388241581507,-11.321883468386751],[29.90240553828238,-11.313982592035916],[29.936322472336585,-11.29027996298341],[29.948017966838034,-11.276453429369449],[29.952696164638613,-11.254726019404654],[29.959713461339483,-11.246825143053817],[29.966730758040356,-11.2428747048784],[29.980765351442095,-11.239911876246836],[30.104737593157466,-11.2428747048784],[30.122280834909642,-11.245837533509963],[30.137484977761527,-11.254726019404654],[30.449754680950246,-11.475950557228035],[30.453263329300682,-11.479900995403453],[30.45560242820097,-11.484839043122726],[30.456771977651115,-11.489777090841997],[30.456771977651115,-11.496690357648976],[30.456771977651115,-11.49965318628054],[30.45560242820097,-11.50162840536825]]]},"properties":{"name":"Luapula"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[32.2309784935211,-9.133340719205426],[32.27074317482603,-9.252841474011808],[32.32103380118227,-9.36147852383579],[32.32922064733328,-9.462214697308937],[32.220452548469794,-9.453326211414248],[32.11987129575732,-9.428635972817888],[32.019290043044855,-9.4197474869232],[31.90233509803035,-9.436536849168723],[31.818127537619908,-9.479004059554462],[31.751463218961646,-9.520483660396346],[31.675442504702218,-9.529372146291037],[31.600591339892937,-9.503694298150823],[31.57486125198975,-9.57085174713292],[31.508196933331483,-9.540235851273435],[31.432176219072055,-9.54616150853656],[31.365511900413793,-9.503694298150823],[31.315221274057556,-9.537273022641871],[31.256743801550304,-9.587641109378445],[31.20645317519407,-9.61331895751866],[31.18072308729088,-9.671587920606068],[31.114058768632614,-9.755534731833691],[31.18890993344189,-9.830593057166624],[31.26493064770132,-9.957007078779986],[31.30703442790654,-10.065644128603969],[31.3397818125106,-10.18316966432264],[31.415802526770026,-10.233537751059215],[31.516383779482496,-10.275017351901099],[31.5503007135367,-10.30859607639215],[31.552639812436993,-10.558461290987308],[31.488314592679018,-10.571300215057416],[31.483636394878438,-10.567349776881997],[31.47895819707786,-10.559448900531162],[31.471940900376985,-10.552535633724183],[31.46141495532568,-10.550560414636474],[31.45205855972452,-10.555498462355747],[31.443871713573508,-10.57426304368898],[31.436854416872634,-10.578213481864395],[31.423989372921042,-10.581176310495959],[31.390072438866838,-10.59895328228534],[31.371359647664516,-10.605866549092319],[31.345629559761328,-10.608829377723882],[31.33510361471002,-10.6127798158993],[31.330425416909442,-10.622655911337844],[31.337442713610308,-10.630556787688679],[31.338612263060455,-10.63747005449566],[31.333934065259875,-10.640432883127222],[31.31872992240799,-10.640432883127222],[31.31171262570712,-10.643395711758785],[31.30937352680683,-10.650308978565768],[31.312882175157263,-10.689813360319942],[31.30937352680683,-10.701664674846196],[31.30235623010596,-10.708577941653175],[31.282473889453495,-10.720429256179429],[31.275456592752626,-10.728330132530264],[31.26493064770132,-10.719441646635573],[31.245048307048854,-10.712528379828594],[31.223996416946243,-10.708577941653175],[31.207622724644214,-10.708577941653175],[31.18890993344189,-10.711540770284738],[31.174875340040153,-10.717466427547865],[31.130432460934642,-10.75005754249506],[31.132771559834932,-10.75697080930204],[31.145636603786528,-10.769809733372147],[31.151484351037254,-10.777710609722984],[31.15382344993754,-10.784623876529963],[31.15733209828798,-10.788574314705382],[31.169027592789426,-10.789561924249234],[31.177214438940446,-10.787586705161527],[31.184231735641312,-10.78363626698611],[31.192418581792328,-10.782648657442255],[31.199435878493198,-10.789561924249234],[31.204114076293777,-10.810301724670179],[31.18774038399175,-10.817214991477158],[31.151484351037254,-10.817214991477158],[31.143297504886238,-10.827091086915702],[31.142127955436095,-10.835979572810391],[31.146806153236675,-10.845855668248936],[31.16668849388914,-10.867583078213732],[31.17136669168972,-10.873508735476857],[31.169027592789426,-10.877459173652277],[31.165518944438993,-10.885360050003111],[31.160840746638414,-10.892273316810092],[31.15382344993754,-10.897211364529364],[31.147975702686818,-10.904124631336344],[31.146806153236675,-10.911037898143325],[31.145636603786528,-10.91696355540645],[31.101193724681018,-10.955480327616772],[31.084820032378985,-10.9614059848799],[31.063768142276377,-10.9614059848799],[31.07312453787754,-10.951529889441355],[31.076633186227973,-10.94165379400281],[31.075463636777826,-10.930790089020412],[31.0696158895271,-10.919926384038014],[31.059089944475797,-10.911037898143325],[31.054411746675218,-10.92091399358187],[31.053242197225075,-10.944616622634374],[31.03803805437319,-10.948567060809792],[31.019325263170867,-10.94362901309052],[31.01113841701985,-10.932765308108122],[31.021664362071157,-10.919926384038014],[31.000612471968545,-10.919926384038014],[30.987747428016952,-10.944616622634374],[30.979560581865936,-10.977207737581569],[30.970204186264777,-10.998935147546366],[30.96201734011376,-11.004860804809493],[30.933948153310283,-11.014736900248035],[30.923422208258977,-11.015724509791891],[30.916404911558104,-11.018687338423454],[30.905878966506798,-11.023625386142726],[30.893013922555205,-11.028563433861997],[30.878979329153466,-11.029551043405853],[30.89886166980593,-11.050290843826794],[30.894183472005352,-11.059179329721484],[30.88014887860361,-11.057204110633775],[30.867283834652014,-11.043377577019815],[30.857927439050854,-11.04732801519523],[30.848571043449695,-11.05621650108992],[30.843892845649115,-11.067080206072319],[30.841553746748822,-11.077943911054717],[30.82401050499665,-11.11251024508962],[30.7421420434865,-11.213246418562768],[30.72109015338389,-11.256701238492361],[30.71290330723287,-11.281391477088722],[30.705886010532005,-11.29027996298341],[30.683664570979246,-11.311019763404353],[30.677816823728524,-11.313982592035916],[30.667290878677218,-11.327809125649878],[30.662612680876638,-11.33077195428144],[30.639221691873736,-11.326821516106023],[30.627526197372287,-11.325833906562169],[30.618169801771128,-11.33077195428144],[30.60998295562011,-11.339660440176129],[30.604135208369385,-11.349536535614675],[30.598287461118662,-11.36928872649176],[30.59360926331808,-11.37817721238645],[30.587761516067356,-11.386078088737285],[30.57957466991634,-11.390028526912705],[30.566709625964748,-11.392003746000412],[30.54916638421257,-11.399904622351247],[30.53980998861141,-11.417681594140626],[30.532792691910544,-11.440396613649277],[30.522266746859238,-11.46113641407022],[30.498875757856336,-11.478913385859599],[30.484841164454593,-11.490764700385851],[30.45560242820097,-11.50162840536825],[30.456771977651115,-11.49965318628054],[30.456771977651115,-11.496690357648976],[30.456771977651115,-11.489777090841997],[30.45560242820097,-11.484839043122726],[30.453263329300682,-11.479900995403453],[30.449754680950246,-11.475950557228035],[30.137484977761527,-11.254726019404654],[30.122280834909642,-11.245837533509963],[30.104737593157466,-11.2428747048784],[29.980765351442095,-11.239911876246836],[29.966730758040356,-11.2428747048784],[29.959713461339483,-11.246825143053817],[29.952696164638613,-11.254726019404654],[29.948017966838034,-11.276453429369449],[29.936322472336585,-11.29027996298341],[29.90240553828238,-11.313982592035916],[29.895388241581507,-11.321883468386751],[29.889540494330785,-11.333734782913004],[29.886031845980348,-11.344598487895402],[29.884862296530205,-11.354474583333946],[29.88018409872962,-11.361387850140925],[29.850945362475997,-11.372251555123324],[29.841588966874838,-11.389040917368849],[29.83457167017397,-11.394966574631976],[29.89304914268122,-11.019674947967308],[29.888370944880638,-10.965356423055317],[29.887201395430495,-10.954492718072919],[29.886031845980348,-10.949554670353645],[29.883692747080058,-10.944616622634374],[29.856793109726723,-10.899186583617073],[29.850945362475997,-10.892273316810092],[29.845097615225274,-10.888322878634675],[29.82287617567252,-10.873508735476857],[29.819367527322083,-10.870545906845296],[29.812350230621213,-10.862645030494459],[29.78545059326788,-10.811289334214031],[29.7807723954673,-10.803388457863196],[29.776094197666716,-10.79943801968778],[29.757381406464397,-10.788574314705382],[29.74685546141309,-10.78363626698611],[29.708260329558307,-10.770797342916001],[29.675512944954246,-10.753020371126624],[29.659139252652217,-10.740181447056516],[29.654461054851637,-10.738206227968806],[29.64861330760091,-10.737218618424953],[29.64159601090004,-10.739193837512662],[29.365582340665817,-10.884372440459256],[29.34920864836379,-10.895236145441654],[29.33751315386234,-10.908075069511762],[29.343360901113062,-10.923876822213433],[29.362073692315384,-10.951529889441355],[29.364412791215674,-10.958443156248336],[29.363243241765527,-10.964368813511463],[29.362073692315384,-10.970294470774588],[29.360904142865238,-10.978195347125425],[29.362073692315384,-10.988071442563967],[29.365582340665817,-10.998935147546366],[29.369090989016254,-11.005848414353347],[29.380786483517703,-11.021650167055018],[29.387803780218572,-11.029551043405853],[29.397160175819735,-11.042389967475959],[29.39832972526988,-11.04930323428294],[29.397160175819735,-11.055228891546065],[29.392481978019152,-11.079919130142425],[29.390142879118862,-11.105596978282641],[29.38897332966872,-11.111522635545766],[29.38663423076843,-11.11646068326504],[29.38195603296785,-11.119423511896601],[29.376108285717123,-11.119423511896601],[29.370260538466397,-11.117448292808891],[29.323478560460597,-11.092758054212533],[29.318800362660017,-11.090782835124823],[29.312952615409294,-11.090782835124823],[29.307104868158568,-11.090782835124823],[29.296578923107262,-11.092758054212533],[29.284883428605813,-11.093745663756387],[29.279035681355086,-11.09177044466868],[29.273187934104364,-11.08979522558097],[29.269679285753927,-11.08782000649326],[29.17962397809276,-10.998935147546366],[29.1702675824916,-10.993009490283239],[29.094246868232176,-10.96634403259917],[29.08606002208116,-10.962393594423753],[29.08372092318087,-10.95745554670448],[29.08606002208116,-10.953505108529065],[29.094246868232176,-10.939678574915103],[29.11412920888464,-10.917951164950306],[29.15857208799015,-10.877459173652277],[29.16091118689044,-10.872521125933005],[29.16325028579073,-10.865607859126023],[29.162080736340585,-10.749069932951205],[29.164419835240874,-10.742156666144226],[29.169098033041458,-10.736231008881099],[29.290731175856536,-10.66018507400431],[29.30125712090784,-10.65129658810962],[29.307104868158568,-10.640432883127222],[29.314122164859437,-10.63747005449566],[29.31996991211016,-10.63747005449566],[29.341021802212772,-10.63944527358337],[29.3468695494635,-10.638457664039514],[29.352717296714225,-10.636482444951806],[29.357395494514805,-10.630556787688679],[29.362073692315384,-10.606854158636175],[29.364412791215674,-10.601916110916902],[29.369090989016254,-10.592040015478357],[29.408855670321184,-10.539696709654075],[29.412364318671617,-10.53377105239095],[29.414703417571907,-10.526857785583967],[29.413533868121764,-10.521919737864696],[29.405347021970748,-10.513031251970006],[29.401838373620315,-10.50710559470688],[29.39599062636959,-10.494266670636772],[29.394821076919442,-10.487353403829793],[29.39599062636959,-10.48044013702281],[29.412364318671617,-10.453774679338743],[29.418212065922344,-10.445873802987908],[29.42172071427278,-10.44192336481249],[29.42639891207336,-10.439948145724781],[29.429907560423793,-10.434022488461656],[29.43341620877423,-10.424146393023111],[29.43575530767452,-10.392542887619772],[29.43809440657481,-10.384642011268937],[29.441603054925245,-10.380691573093518],[29.44511170327568,-10.377728744461955],[29.474350439529303,-10.360939382216431],[29.48019818678003,-10.356988944041014],[29.493063230731625,-10.343162410427052],[29.497741428532205,-10.336249143620071],[29.50125007688264,-10.33328631498851],[29.507097824133364,-10.32933587681309],[29.5106064724838,-10.327360657725382],[29.51996286808496,-10.323410219549963],[29.551540703238874,-10.315509343199128],[29.58779673619337,-10.29773237140975],[29.61118772519627,-10.28884388551506],[29.61586592299685,-10.285881056883497],[29.624052769147866,-10.27995539962037],[29.654461054851637,-10.249339503760886],[29.669665197703523,-10.236500579690778],[29.677852043854536,-10.231562531971505],[29.697734384507,-10.222674046076817],[29.70241258230758,-10.221686436532963],[29.725803571310482,-10.2187236079014],[29.771415999866136,-10.220698826989107],[29.777263747116862,-10.221686436532963],[29.787789692168168,-10.22563687470838],[29.802993835020054,-10.232550141515361],[29.808841582270777,-10.234525360603069],[29.821706626222372,-10.236500579690778],[29.8275543734731,-10.237488189234632],[29.839249867974548,-10.235512970146925],[29.843928065775128,-10.234525360603069],[29.85328446137629,-10.229587312883798],[29.86731905477803,-10.219711217445253],[29.86965815367832,-10.216748388813691],[29.87199725257861,-10.213785560182128],[29.875505900929042,-10.209835122006709],[29.87901454927948,-10.199959026568166],[29.895388241581507,-10.124900701235232],[29.898896889931944,-10.115024605796687],[29.90474463718267,-10.105148510358145],[29.910592384433393,-10.09724763400731],[29.917609681134266,-10.090334367200327],[29.933983373436295,-10.077495443130221],[29.93749202178673,-10.07255739541095],[29.93749202178673,-10.067619347691677],[29.935152922886438,-10.06366890951626],[29.92579652728528,-10.046879547270736],[29.90942283498325,-10.008362775060414],[29.90708373608296,-10.002437117797289],[29.90474463718267,-9.99157341281489],[29.905914186632813,-9.98466014600791],[29.90708373608296,-9.978734488744783],[29.932813823986148,-9.913552258850393],[29.93749202178673,-9.890837239341742],[29.936322472336585,-9.881948753447052],[29.924626977835135,-9.847382419412149],[29.922287878934846,-9.842444371692878],[29.919948780034552,-9.83849393351746],[29.91644013168412,-9.835531104885897],[29.91176193388354,-9.83158066671048],[29.90708373608296,-9.82960544762277],[29.8977273404818,-9.825655009447352],[29.886031845980348,-9.823679790359643],[29.87667545037919,-9.819729352184225],[29.87199725257861,-9.814791304464954],[29.868488604228173,-9.80689042811412],[29.863810406427593,-9.790101065868594],[29.860301758077156,-9.78220018951776],[29.856793109726723,-9.776274532254632],[29.845097615225274,-9.767386046359944],[29.83106302182353,-9.753559512745982],[29.82053707677223,-9.736770150500458],[29.810011131720923,-9.718993178711079],[29.807672032820633,-9.715042740535662],[29.804163384470197,-9.711092302360244],[29.799485186669617,-9.709117083272535],[29.794806988869038,-9.707141864184825],[29.790128791068458,-9.707141864184825],[29.77843329656701,-9.70812947372868],[29.772585549316283,-9.70812947372868],[29.760890054814833,-9.707141864184825],[29.755042307564107,-9.707141864184825],[29.743346813062658,-9.70812947372868],[29.73749906581193,-9.70812947372868],[29.732820868011352,-9.706154254640971],[29.725803571310482,-9.69924098783399],[29.722294922960046,-9.697265768746282],[29.716447175709323,-9.695290549658573],[29.697734384507,-9.693315330570865],[29.666156549353087,-9.68343923513232],[29.64861330760091,-9.673563139693776],[29.64393510980033,-9.671587920606068],[29.63925691199975,-9.669612701518359],[29.621713670247576,-9.666649872886795],[29.600661780144964,-9.659736606079814],[29.59481403289424,-9.65874899653596],[29.57844034059221,-9.661711825167524],[29.57376214279163,-9.661711825167524],[29.56908394499105,-9.659736606079814],[29.55972754938989,-9.654798558360543],[29.55504935158931,-9.652823339272835],[29.543353857087858,-9.650848120185126],[29.537506109837135,-9.647885291553562],[29.53165836258641,-9.642947243834291],[29.525810615335686,-9.632083538851893],[29.52230196698525,-9.625170272044912],[29.516454219734523,-9.622207443413348],[29.504758725233074,-9.62023222432564],[29.50125007688264,-9.619244614781785],[29.498910977982348,-9.617269395694077],[29.496571879082058,-9.614306567062513],[29.493063230731625,-9.610356128887096],[29.48955458238119,-9.607393300255533],[29.48487638458061,-9.605418081167825],[29.47785908787974,-9.601467642992406],[29.472011340629013,-9.594554376185426],[29.45680719777713,-9.562950870782085],[29.453298549426695,-9.559000432606668],[29.43809440657481,-9.54616150853656],[29.43341620877423,-9.544186289448852],[29.42873801097365,-9.542211070361143],[29.415872967022054,-9.541223460817289],[29.410025219771327,-9.541223460817289],[29.4041774725206,-9.542211070361143],[29.394821076919442,-9.547149118080416],[29.390142879118862,-9.54813672762427],[29.38429513186814,-9.54813672762427],[29.380786483517703,-9.54616150853656],[29.372599637366687,-9.540235851273435],[29.369090989016254,-9.537273022641871],[29.363243241765527,-9.531347365378744],[29.358565043964948,-9.52344648902791],[29.33751315386234,-9.46715274502821],[29.329326307711323,-9.451350992326539],[29.325817659360887,-9.443450115975704],[29.324648109910743,-9.43357402053716],[29.323478560460597,-9.425673144186325],[29.326987208811033,-9.40197051513382],[29.328156758261176,-9.396044857870693],[29.330495857161466,-9.391106810151422],[29.334004505511903,-9.388143981519859],[29.339852252762626,-9.387156371976005],[29.34453045056321,-9.385181152888295],[29.34920864836379,-9.382218324256732],[29.35154774726408,-9.378267886081314],[29.353886846164368,-9.372342228818189],[29.356225945064658,-9.365428962011208],[29.358565043964948,-9.356540476116518],[29.341021802212772,-9.296296293941401],[29.339852252762626,-9.286420198502856],[29.341021802212772,-9.28049454123973],[29.34453045056321,-9.255804302643371],[29.343360901113062,-9.24889103583639],[29.341021802212772,-9.24197776902941],[29.33751315386234,-9.234076892678575],[29.336343604412193,-9.223213187696176],[29.334004505511903,-9.216299920889195],[29.330495857161466,-9.213337092257632],[29.325817659360887,-9.213337092257632],[29.317630813209874,-9.218275139976903],[29.312952615409294,-9.218275139976903],[29.30827441760871,-9.21728753043305],[29.304765769258278,-9.214324701801486],[29.298918022007552,-9.206423825450651],[29.295409373657115,-9.203460996819087],[29.289561626406392,-9.20148577773138],[29.277866131904943,-9.19951055864367],[29.274357483554507,-9.197535339555962],[29.27084883520407,-9.193584901380543],[29.267340186853637,-9.189634463205126],[29.262661989053058,-9.180745977310437],[29.260322890152768,-9.175807929591166],[29.247457846201172,-9.16099378643335],[29.243949197850736,-9.158030957801786],[29.238101450600013,-9.155068129170223],[29.23108415389914,-9.15210530053866],[29.22640595609856,-9.15210530053866],[29.220558208847837,-9.155068129170223],[29.21237136269682,-9.15704334825793],[29.201845417645515,-9.156055738714077],[29.193658571494502,-9.15210530053866],[29.185471725343486,-9.147167252819388],[29.178454428642617,-9.139266376468553],[29.171437131941744,-9.133340719205426],[29.162080736340585,-9.128402671486155],[29.15155479128928,-9.124452233310736],[29.134011549537107,-9.115563747416047],[29.119976956135364,-9.106675261521358],[29.115298758334784,-9.101737213802085],[29.10945101108406,-9.090873508819687],[29.111790109984348,-9.070133708398746],[29.11412920888464,-9.06420805113562],[29.11646830778493,-9.052356736609367],[29.11880740668522,-9.047418688890094],[29.122316055035654,-9.043468250714676],[29.126994252836234,-9.042480641170823],[29.13985929678783,-9.042480641170823],[29.14453749458841,-9.041493031626969],[29.1468765934887,-9.036554983907696],[29.1702675824916,-8.95655861085549],[29.176115329742327,-8.948657734504655],[29.17962397809276,-8.945694905873092],[29.188980373693923,-8.941744467697674],[29.21938865939769,-8.932855981802986],[29.228745054998853,-8.927917934083714],[29.232253703349286,-8.92495510545215],[29.245118747300882,-8.910140962294335],[29.250966494551605,-8.901252476399645],[29.283713879155666,-8.817305665172022],[29.30593531870842,-8.721507539418146],[29.33751315386234,-8.644473994997504],[29.339852252762626,-8.639535947278231],[29.343360901113062,-8.635585509102814],[29.35037819781393,-8.629659851839689],[29.353886846164368,-8.625709413664271],[29.364412791215674,-8.608920051418746],[29.3936515274693,-8.550651088331337],[29.405347021970748,-8.534849335629668],[29.414703417571907,-8.52398563064727],[29.419381615372487,-8.521022802015706],[29.427568461523503,-8.516084754296433],[29.46616359337829,-8.502258220682473],[29.496571879082058,-8.494357344331638],[29.500080527432495,-8.493369734787782],[29.509436923033654,-8.485468858436947],[29.523471516435393,-8.472629934366841],[29.52698016478583,-8.468679496191422],[29.53867565928728,-8.451890133945898],[29.567914395540903,-8.394608780402343],[29.574931692241776,-8.3738689799814],[29.57610124169192,-8.372881370437547],[29.59247493399395,-8.369918541805983],[29.85796265917687,-8.329426550507954],[30.123450384359785,-8.289922168753778],[30.32461288978473,-8.259306272894293],[30.581913768816634,-8.219801891140117],[30.7526679885378,-8.194124042999903],[30.778398076440993,-8.288934559209924],[30.82868870279723,-8.387695513595363],[30.89184437310506,-8.47954320117382],[30.95967824121347,-8.550651088331337],[30.992425625817532,-8.576328936471551],[31.03335985657261,-8.600031565524057],[31.07780273567812,-8.615833318225727],[31.119906515883336,-8.61682092776958],[31.14095840598595,-8.605957222787183],[31.160840746638414,-8.59213068917322],[31.18306218619117,-8.580279374646969],[31.20645317519407,-8.580279374646969],[31.21814866969552,-8.589167860541659],[31.23686146089784,-8.613858099138017],[31.248556955399287,-8.621758975488852],[31.261421999350887,-8.623734194576562],[31.2696088455019,-8.620771365944998],[31.27662614220277,-8.615833318225727],[31.329255867459295,-8.598056346436348],[31.340951361960744,-8.595093517804784],[31.347968658661614,-8.59213068917322],[31.350307757561907,-8.588180250997803],[31.35381640591234,-8.58719264145395],[31.362003252063353,-8.59213068917322],[31.365511900413793,-8.599043955980202],[31.369020548764226,-8.61682092776958],[31.37252919711466,-8.623734194576562],[31.38539424106626,-8.63262268047125],[31.39825928501785,-8.633610290015106],[31.41229387841959,-8.63262268047125],[31.427498021271475,-8.633610290015106],[31.44270216412336,-8.641511166365941],[31.464923603676116,-8.666201404962301],[31.480127746528,-8.676077500400844],[31.51872287838279,-8.686941205383242],[31.538605219035254,-8.703730567628767],[31.54562251573612,-8.729408415768981],[31.54562251573612,-8.765949968891594],[31.55380936188714,-8.809404788821187],[31.57603080143989,-8.840020684680672],[31.67310340580193,-8.913103790925897],[31.689477098103957,-8.920017057732878],[31.709359438756422,-8.920017057732878],[31.730411328859034,-8.912116181382043],[31.76432826291324,-8.894339209592664],[31.78771925191614,-8.892363990504956],[31.936252032084557,-8.932855981802986],[31.917539240882235,-8.973347973101015],[31.917539240882235,-9.022728450293735],[31.938591130984847,-9.06223283204791],[31.980694911190067,-9.072108927486454],[32.001746801292676,-9.063220441591765],[32.015781394694415,-9.052356736609367],[32.03215508699645,-9.04643107934624],[32.05671562544949,-9.049393907977803],[32.085954361703116,-9.066183270223327],[32.09648030675442,-9.06914609885489],[32.10583670235558,-9.068158489311037],[32.12454949355791,-9.06420805113562],[32.13390588915907,-9.06420805113562],[32.14560138366051,-9.070133708398746],[32.15495777926168,-9.075071756118017],[32.19121381221617,-9.112600918784484],[32.211096152868635,-9.126427452398445],[32.2309784935211,-9.133340719205426]]]},"properties":{"name":"Northern"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[31.428667570721622,-13.435367892235142],[31.406446131168867,-13.451169644936812],[31.359664153163067,-13.461045740375356],[31.337442713610308,-13.473884664445464],[31.296508482855234,-13.50450056030495],[31.287152087254075,-13.514376655743494],[31.28364343890364,-13.517339484375057],[31.27662614220277,-13.512401436655784],[31.26726974660161,-13.51141382711193],[31.259082900450593,-13.513389046199638],[31.25557425210016,-13.521289922550473],[31.25089605429958,-13.535116456164435],[31.23218326309726,-13.556843866129231],[31.2228268674961,-13.582521714269447],[31.209961823544504,-13.584496933357155],[31.18306218619117,-13.578571276094028],[31.173705790590006,-13.581534104725591],[31.16201029608856,-13.596348247883407],[31.135110658735222,-13.607211952865805],[31.12224561478363,-13.626964143742892],[31.10470237303145,-13.700047249988117],[31.098854625780728,-13.713873783602079],[31.074294087327683,-13.738564022198439],[31.071954988427393,-13.740539241286147],[31.05558129612536,-13.757328603531672],[31.061429043376087,-13.773130356233342],[31.05090309832478,-13.781031232584178],[31.021664362071157,-13.78399406121574],[31.009968867569704,-13.789919718478867],[30.984238779666516,-13.8086842998121],[30.970204186264777,-13.81263473798752],[30.963186889563907,-13.819548004794498],[30.963186889563907,-13.836337367040024],[30.95967824121347,-13.852139119741693],[30.937456801660716,-13.860039996092528],[30.93628725221057,-13.863990434267947],[30.91991355990854,-13.887693063320452],[30.904709417056655,-13.901519596934413],[30.897692120355785,-13.909420473285248],[30.89184437310506,-13.922259397355354],[30.8824879775039,-13.927197445074627],[30.87313158190274,-13.93016027370619],[30.097720296456597,-13.9321354927939],[30.097720296456597,-13.935098321425462],[30.101228944807033,-13.938061150057026],[30.105907142607613,-13.940036369144735],[30.117602637109062,-13.942999197776299],[30.137484977761527,-13.94596202640786],[30.14333272501225,-13.946949635951714],[30.149180472262977,-13.950900074127134],[30.153858670063556,-13.960776169565676],[30.180758307416895,-14.040772542617882],[30.184266955767328,-14.047685809424863],[30.190114703018054,-14.050648638056426],[30.215844790921242,-14.061512343038824],[30.262626768927042,-14.07435126710893],[30.273152713978348,-14.079289314828204],[30.277830911778928,-14.082252143459765],[30.28952640628038,-14.09212823889831],[30.29420460408096,-14.095091067529873],[30.29888280188154,-14.097066286617583],[30.30356099968212,-14.100029115249146],[30.30590009858241,-14.103979553424562],[30.31057829638299,-14.112868039319252],[30.31642604363371,-14.121756525213941],[30.31759559308386,-14.125706963389359],[30.318765142534005,-14.131632620652486],[30.319934691984148,-14.142496325634884],[30.319934691984148,-14.150397201985719],[30.318765142534005,-14.158298078336554],[30.314086944733425,-14.171137002406661],[30.3082391974827,-14.18200070738906],[30.29888280188154,-14.19780246009073],[30.291865505180667,-14.20669094598542],[30.280170010679218,-14.215579431880109],[30.25443992277603,-14.228418355950215],[30.246253076625013,-14.235331622757197],[30.23221848322327,-14.249158156371157],[30.22286208762211,-14.25409620409043],[30.218183889821532,-14.258046642265848],[30.2146752414711,-14.263972299528973],[30.20999704367052,-14.274836004511371],[30.20531884586994,-14.282736880862206],[30.198301549169067,-14.289650147669189],[30.169062812915442,-14.314340386265547],[30.130467681060658,-14.364708473002121],[30.123450384359785,-14.372609349352956],[30.117602637109062,-14.37557217798452],[30.111754889858336,-14.376559787528373],[30.105907142607613,-14.376559787528373],[30.09421164810616,-14.374584568440666],[30.088363900855434,-14.37557217798452],[30.083685703054854,-14.377547397072227],[30.08017705470442,-14.383473054335354],[30.07549885690384,-14.393349149773899],[30.07315975800355,-14.406188073844007],[30.069651109653115,-14.415076559738695],[30.06380336240239,-14.42100221700182],[30.05912516460181,-14.42495265517724],[30.053277417351083,-14.426927874264948],[30.04509057120007,-14.431865921984219],[30.034564626148764,-14.442729626966617],[30.03105597779833,-14.449642893773598],[30.027547329447895,-14.460506598755996],[30.025208230547605,-14.48124639917694],[30.01936048329688,-14.500010980510172],[30.015851834946446,-14.501986199597882],[30.01234318659601,-14.508899466404863],[30.00766498879543,-14.519763171387261],[30.00064769209456,-14.556304724509873],[29.994799944843834,-14.606672811246447],[30.00064769209456,-14.617536516228846],[30.021699582197172,-14.635313488018223],[30.046260120650217,-14.66395416479],[30.050938318450797,-14.670867431596982],[30.00064769209456,-14.667904602965418],[29.9912912964934,-14.662966555246147],[29.980765351442095,-14.653090459807602],[29.977256703091662,-14.65012763117604],[29.971408955840936,-14.649140021632185],[29.964391659140063,-14.649140021632185],[29.95854391188934,-14.65012763117604],[29.95152661518847,-14.652102850263748],[29.94217021958731,-14.658028507526875],[29.931644274536005,-14.65901611707073],[29.92345742838499,-14.662966555246147],[29.91644013168412,-14.660003726614583],[29.912931483333683,-14.656053288439166],[29.90942283498325,-14.653090459807602],[29.90474463718267,-14.654078069351456],[29.898896889931944,-14.661978945702293],[29.891879593231074,-14.680743527035526],[29.889540494330785,-14.685681574754797],[29.886031845980348,-14.69061962247407],[29.883692747080058,-14.693582451105632],[29.87667545037919,-14.69753288928105],[29.868488604228173,-14.699508108368759],[29.85328446137629,-14.701483327456469],[29.843928065775128,-14.701483327456469],[29.83574121962411,-14.700495717912613],[29.819367527322083,-14.696545279737196],[29.812350230621213,-14.696545279737196],[29.805332933920344,-14.700495717912613],[29.78545059326788,-14.716297470614283],[29.7807723954673,-14.719260299245846],[29.774924648216572,-14.721235518333556],[29.753872758113964,-14.719260299245846],[29.748025010863238,-14.719260299245846],[29.668495648253376,-14.749876195105333],[29.663817450452797,-14.75382663328075],[29.656800153751927,-14.759752290543876],[29.64861330760091,-14.766665557350859],[29.590135835093662,-14.799256672298052],[29.581948988942646,-14.806169939105033],[29.57610124169192,-14.809132767736596],[29.543353857087858,-14.81012037728045],[29.537506109837135,-14.808145158192742],[29.530488813136266,-14.811107986824304],[29.52230196698525,-14.816046034543577],[29.508267373583507,-14.835798225420664],[29.502419626332784,-14.848637149490772],[29.498910977982348,-14.871352168999422],[29.4872154834809,-14.913819379385162],[29.460315846127564,-14.96319985657788],[29.3936515274693,-14.975051171104134],[29.311783065959148,-14.977026390191842],[29.227575505548707,-14.956286589770901],[29.052143088026956,-15.008629895595183],[29.000682912220576,-15.018505991033727],[28.946883637513903,-15.041221010542378],[28.82291139579853,-15.148870450822505],[28.74338203318867,-15.175535908506575],[28.655665824427793,-15.186399613488973],[28.569119165117066,-15.188374832576681],[28.404212692646617,-15.145907622190943],[28.37614350584314,-15.162696984436467],[28.343396121239074,-15.224916385699293],[28.317666033335886,-15.295036663312956],[28.29076639598255,-15.341454311874111],[28.26035811027878,-15.35231801685651],[28.20188063777153,-15.340466702330257],[28.03346551695065,-15.28713578696212],[27.862711297229474,-15.260470329278052],[27.84984625327788,-15.260470329278052],[27.836981209326286,-15.262445548365761],[27.827624813725127,-15.266395986541177],[27.77733418736889,-15.298987101488372],[27.769147341217874,-15.310838416014626],[27.766808242317584,-15.320714511453168],[27.773825539018453,-15.33454104506713],[27.78669058297005,-15.34342953096182],[27.81008157197295,-15.349355188224946],[27.86388084667962,-15.357256064575783],[27.879084989531506,-15.362194112295054],[27.891950033483102,-15.374045426821306],[27.91768012138629,-15.423425904014026],[27.931714714788033,-15.468855943031327],[27.934053813688323,-15.485645305276853],[27.935223363138466,-15.495521400715397],[27.934053813688323,-15.500459448434668],[27.932884264238176,-15.506385105697795],[27.923527868637017,-15.518236420224047],[27.90598462688484,-15.532062953838008],[27.799555626921645,-15.560703630609785],[27.75628229726628,-15.648600880012825],[27.752773648915845,-15.651563708644389],[27.74692590166512,-15.66045219453908],[27.743417253314686,-15.663415023170643],[27.736399956613816,-15.661439804082933],[27.72587401156251,-15.656501756363662],[27.718856714861637,-15.655514146819808],[27.708330769810335,-15.656501756363662],[27.701313473109465,-15.659464584995224],[27.691957077508306,-15.669340680433768],[27.684939780807433,-15.661439804082933],[27.681431132457,-15.652551318188245],[27.675583385206274,-15.645638051381264],[27.670905187405694,-15.64070000366199],[27.665057440154968,-15.636749565486573],[27.65336194565352,-15.625885860504175],[27.65102284675323,-15.621935422328757],[27.649853297303082,-15.616997374609486],[27.652192396203375,-15.613046936434069],[27.65570104455381,-15.610084107802505],[27.659209692904245,-15.607121279170942],[27.662718341254678,-15.604158450539378],[27.665057440154968,-15.60020801236396],[27.665057440154968,-15.596257574188543],[27.661548791804535,-15.59329474555698],[27.660379242354388,-15.588356697837709],[27.659209692904245,-15.582431040574582],[27.660379242354388,-15.563666459241349],[27.659209692904245,-15.557740801978223],[27.656870594003955,-15.553790363802804],[27.640496901701923,-15.547864706539679],[27.63698825335149,-15.543914268364261],[27.635818703901343,-15.53897622064499],[27.634649154451196,-15.533050563381863],[27.633479605001053,-15.527124906118736],[27.63231005555091,-15.523174467943319],[27.626462308300184,-15.519224029767901],[27.5750021324938,-15.502434667522376],[27.57032393469322,-15.500459448434668],[27.569154385243078,-15.499471838890813],[27.567984835792934,-15.495521400715397],[27.57032393469322,-15.486632914820706],[27.567984835792934,-15.481694867101435],[27.562137088542208,-15.478732038469872],[27.546932945690322,-15.479719648013726],[27.538746099539306,-15.482682476645289],[27.534067901738727,-15.48762052436456],[27.532898352288584,-15.492558572083833],[27.531728802838437,-15.500459448434668],[27.529389703938147,-15.504409886610086],[27.51652465998655,-15.511323153417067],[27.51418556108626,-15.515273591592484],[27.51184646218597,-15.52119924885561],[27.51184646218597,-15.527124906118736],[27.50950736328568,-15.532062953838008],[27.507168264385392,-15.53700100155728],[27.504829165485102,-15.540951439732698],[27.501320517134666,-15.542926658820406],[27.495472769883943,-15.546877096995825],[27.488455473183073,-15.55280275425895],[27.484946824832637,-15.556753192434368],[27.4814381764822,-15.559716021065931],[27.475590429231477,-15.56169124015364],[27.470912231430894,-15.562678849697495],[27.466234033630315,-15.565641678329058],[27.46389493473003,-15.569592116504475],[27.461555835829735,-15.574530164223747],[27.459216736929445,-15.57946821194302],[27.454538539128865,-15.581443431030728],[27.449860341328286,-15.581443431030728],[27.433486649026257,-15.573542554679893],[27.414773857823935,-15.567616897416766],[27.410095660023355,-15.567616897416766],[27.40658701167292,-15.573542554679893],[27.403078363322486,-15.580455821486874],[27.32004035236219,-15.726622033977323],[27.317701253461898,-15.734522910328158],[27.30132756115987,-15.744399005766702],[27.290801616108563,-15.729584862608887],[27.279106121607114,-15.726622033977323],[27.279106121607114,-15.71477071945107],[27.227645945800734,-15.497496619803105],[27.201915857897543,-15.482682476645289],[26.968005967868542,-15.470831162119037],[26.95864957226738,-15.467868333487473],[26.963327770067963,-15.460955066680492],[26.98671875907086,-15.441202875803405],[26.98671875907086,-15.435277218540278],[26.976192814019555,-15.426388732645588],[26.84403372615317,-15.351330407312656],[26.80426904484824,-15.34342953096182],[26.745791572340988,-15.33651626415484],[25.324788990414795,-15.298987101488372],[25.325958539864942,-15.229854433418566],[25.321280342064362,-15.193312880295952],[25.322449891514506,-15.184424394401264],[25.323619440964652,-15.178498737138138],[25.32712808931509,-15.175535908506575],[25.357536375018856,-15.148870450822505],[25.364553671719726,-15.14096957447167],[25.368062320070162,-15.138006745840107],[25.372740517870742,-15.135043917208545],[25.37858826512147,-15.135043917208545],[25.38443601237219,-15.135043917208545],[25.390283759622918,-15.136031526752399],[25.396131506873644,-15.137019136296253],[25.403148803574513,-15.136031526752399],[25.410166100275383,-15.131093479033126],[25.41367474862582,-15.12516782177],[25.414844298075963,-15.119242164506874],[25.412505199175673,-15.090601487735096],[25.41367474862582,-15.080725392296554],[25.417183396976252,-15.07578734457728],[25.432387539828138,-15.060973201419465],[25.446422133229877,-15.040233400998524],[25.452269880480603,-15.029369696016126],[25.45577852883104,-15.019493600577581],[25.456948078281183,-14.976038780647988],[25.456948078281183,-14.970113123384861],[25.454608979380893,-14.96517507566559],[25.42537024312727,-14.913819379385162],[25.42303114422698,-14.905918503034325],[25.42303114422698,-14.896042407595782],[25.42303114422698,-14.876290216718694],[25.42537024312727,-14.866414121280151],[25.42770934202756,-14.85950085447317],[25.435896188178575,-14.849624759034626],[25.441743935429297,-14.839748663596083],[25.444083034329587,-14.830860177701393],[25.445252583779734,-14.81900886317514],[25.447591682680024,-14.81209559636816],[25.449930781580314,-14.806169939105033],[25.45343942993075,-14.802219500929615],[25.456948078281183,-14.799256672298052],[25.461626276081763,-14.79629384366649],[25.47215222113307,-14.793331015034926],[25.477999968383795,-14.789380576859507],[25.480339067284085,-14.784442529140236],[25.480339067284085,-14.77851687187711],[25.480339067284085,-14.766665557350859],[25.482678166184375,-14.735062051947518],[25.47683041893365,-14.715309861070429],[25.475660869483505,-14.699508108368759],[25.47683041893365,-14.69061962247407],[25.479169517833938,-14.683706355667088],[25.483847715634518,-14.674817869772399],[25.487356363984954,-14.669879822053128],[25.489695462885244,-14.66592938387771],[25.499051858486403,-14.642226754825204],[25.506069155187273,-14.629387830755098],[25.52361239693945,-14.602722373071028],[25.529460144190175,-14.594821496720193],[25.532968792540608,-14.59185866808863],[25.53764699034119,-14.588895839457066],[25.541155638691624,-14.586920620369359],[25.548172935392493,-14.58494540128165],[25.57273347384554,-14.570131258123833],[25.585598517797134,-14.559267553141435],[25.60314175954931,-14.556304724509873],[25.620685001301485,-14.555317114966018],[26.173881891220077,-14.621486954404261],[26.179729638470803,-14.627412611667388],[26.183238286821236,-14.631363049842806],[26.190255583522106,-14.645189583456768],[26.198442429673122,-14.654078069351456],[26.208968374724428,-14.660003726614583],[26.224172517576314,-14.66395416479],[26.2499026054795,-14.667904602965418],[26.294345484585012,-14.68864440338636],[26.30136278128588,-14.696545279737196],[26.307210528536608,-14.705433765631884],[26.314227825237477,-14.713334641982721],[26.324753770288783,-14.716297470614283],[26.33527971534009,-14.714322251526575],[26.37036619884444,-14.699508108368759],[26.376213946095163,-14.648152412088331],[26.387909440596616,-14.627412611667388],[26.42884367135169,-14.580007353562378],[26.491999341659522,-14.531614485913513],[26.53410312186474,-14.47038269419454],[26.542289968015755,-14.460506598755996],[26.55515501196735,-14.450630503317452],[26.571528704269383,-14.444704846054327],[26.587902396571412,-14.442729626966617],[26.598428341622714,-14.44569245559818],[26.617141132825036,-14.454580941492871],[26.628836627326486,-14.456556160580579],[26.634684374577212,-14.454580941492871],[26.638193022927645,-14.449642893773598],[26.642871220728228,-14.444704846054327],[26.65339716577953,-14.442729626966617],[26.73643517673983,-14.448655284229744],[26.75514796794215,-14.443717236510473],[26.790234451446498,-14.420014607457967],[26.80426904484824,-14.415076559738695],[26.928241286563612,-14.410138512019422],[26.94461497886564,-14.395324368861608],[26.94929317666622,-14.390386321142335],[26.95631047336709,-14.373596958896812],[26.9539713744668,-14.26298468998512],[26.952801825016657,-14.258046642265848],[26.952801825016657,-14.253108594546575],[26.952801825016657,-14.248170546827303],[26.95864957226738,-14.239282060932613],[26.976192814019555,-14.214591822336255],[26.978531912919845,-14.209653774616982],[26.980871011820135,-14.203728117353856],[26.98204056127028,-14.19780246009073],[26.98204056127028,-14.191876802827604],[26.980871011820135,-14.18002548830135],[26.978531912919845,-14.169161783318952],[26.97034506676883,-14.150397201985719],[26.962158220617816,-14.137558277915613],[26.913037143711726,-14.07632648619664],[26.901341649210273,-14.066450390758096],[26.863916066805636,-14.045710590337155],[26.859237869005057,-14.041760152161736],[26.85806831955491,-14.03780971398632],[26.86274651735549,-14.029908837635483],[26.873272462406796,-14.025958399460066],[26.89315480305926,-14.019045132653085],[26.90251119866042,-14.015094694477668],[26.907189396461,-14.00916903721454],[26.908358945911147,-14.005218599039125],[26.90952849536129,-14.000280551319852],[26.907189396461,-13.961763779109532],[26.908358945911147,-13.937073540513172],[26.91186759426158,-13.910408082829104],[26.920054440412596,-13.888680672864307],[26.941106330515204,-13.859052386548674],[26.95163227556651,-13.839300195671587],[26.952801825016657,-13.83337453840846],[26.9539713744668,-13.827448881145333],[26.955140923916947,-13.821523223882208],[26.952801825016657,-13.816585176162935],[26.94929317666622,-13.813622347531373],[26.91888489096245,-13.798808204373557],[26.910698044811436,-13.793870156654286],[26.906019847010853,-13.789919718478867],[26.90017209976013,-13.783006451671888],[26.896663451409694,-13.779056013496469],[26.894324352509404,-13.774117965777197],[26.89081570415897,-13.759303822619382],[26.887307055808535,-13.749427727180837],[26.881459308557808,-13.741526850830002],[26.875611561307085,-13.733625974479168],[26.868594264606216,-13.725725098128333],[26.8604074184552,-13.720787050409061],[26.852220572304184,-13.716836612233642],[27.260393330404796,-13.729675536303748],[27.346939989715523,-13.740539241286147],[27.34810953916567,-13.74547728900542],[27.346939989715523,-13.751402946268545],[27.34577044026538,-13.757328603531672],[27.344600890815236,-13.763254260794799],[27.344600890815236,-13.76819230851407],[27.35278773696625,-13.79288254711043],[27.35512683586654,-13.797820594829702],[27.35746593476683,-13.80177103300512],[27.37150052816857,-13.814609957075227],[27.375009176519004,-13.818560395250644],[27.37617872596915,-13.823498442969917],[27.37851782486944,-13.828436490689189],[27.38085692376973,-13.845225852934714],[27.384365572120167,-13.854114338829403],[27.38553512157031,-13.860039996092528],[27.3878742204706,-13.876829358338053],[27.393721967721326,-13.897569158758996],[27.39723061607176,-13.903494816022121],[27.403078363322486,-13.909420473285248],[27.40658701167292,-13.911395692372956],[27.417112956724225,-13.919296568723793],[27.4346561984764,-13.912383301916812],[27.461555835829735,-13.892631111039723],[27.483777275382494,-13.867940872443363],[27.493133670983653,-13.843250633847004],[27.48611637428278,-13.821523223882208],[27.484946824832637,-13.806709080724392],[27.489625022633216,-13.794857766198138],[27.498981418234376,-13.788932108935013],[27.51184646218597,-13.78596928030345],[27.52354195668742,-13.788932108935013],[27.53055925338829,-13.805721471180536],[27.535237451188873,-13.811647128443663],[27.541085198439596,-13.81757278570679],[27.54810249514047,-13.818560395250644],[27.553950242391192,-13.813622347531373],[27.55511979184134,-13.805721471180536],[27.553950242391192,-13.798808204373557],[27.55511979184134,-13.791894937566576],[27.586697626995253,-13.751402946268545],[27.596054022596412,-13.736588803110731],[27.596054022596412,-13.729675536303748],[27.593714923696123,-13.723749879040623],[27.59254537424598,-13.717824221777498],[27.596054022596412,-13.708935735882807],[27.60190176984714,-13.70498529770739],[27.611258165448298,-13.703997688163536],[27.619445011599314,-13.703997688163536],[27.624123209399894,-13.702022469075827],[27.626462308300184,-13.689183545005719],[27.621784110499604,-13.676344620935613],[27.621784110499604,-13.663505696865506],[27.63698825335149,-13.647703944163835],[27.65336194565352,-13.649679163251545],[27.660379242354388,-13.650666772795399],[27.665057440154968,-13.653629601426962],[27.682600681907143,-13.66449330640936],[27.69312662695845,-13.669431354128632],[27.704822121459898,-13.673381792304049],[27.78902968187034,-13.679307449567176],[27.80774247307266,-13.685233106830303],[27.822946615924543,-13.699059640444265],[27.889610934582812,-13.861027605636384],[27.90013687963412,-13.879792186969617],[27.91300192358571,-13.897569158758996],[27.932884264238176,-13.91435852100452],[27.943410209289482,-13.919296568723793],[27.95276660489064,-13.921271787811502],[27.95744480269122,-13.919296568723793],[27.9621230004918,-13.917321349636083],[27.974988044443396,-13.909420473285248],[27.982005341144266,-13.90744525419754],[27.990192187295282,-13.90547003510983],[28.017091824648617,-13.904482425565977],[28.025278670799633,-13.902507206478267],[28.029956868600213,-13.900531987390558],[28.03814371475123,-13.89855676830285],[28.049839209252678,-13.896581549215142],[28.105977582859637,-13.895593939671286],[28.139894516913845,-13.891643501495869],[28.145742264164568,-13.88966828240816],[28.150420461965147,-13.887693063320452],[28.158607308116164,-13.88275501560118],[28.1621159564666,-13.878804577425761],[28.165624604817033,-13.8758417487942],[28.170302802617613,-13.871891310618782],[28.177320099318486,-13.867940872443363],[28.190185143270078,-13.865965653355655],[28.198371989421094,-13.865965653355655],[28.20655883557211,-13.86695326289951],[28.268544956429796,-13.883742625145034],[28.281410000381392,-13.884730234688888],[28.289596846532405,-13.884730234688888],[28.30947918718487,-13.878804577425761],[28.328191978387192,-13.8758417487942],[28.359769813541106,-13.874854139250345],[28.370295758592412,-13.8758417487942],[28.417077736598213,-13.888680672864307],[28.434620978350388,-13.890655891952015],[28.500115747558507,-13.885717844232744],[28.507133044259376,-13.884730234688888],[28.51181124205996,-13.88275501560118],[28.52116763766112,-13.878804577425761],[28.534032681612715,-13.870903701074926],[28.538710879413294,-13.868928481987219],[28.578475560718225,-13.863002824724092],[28.65917447277823,-13.860039996092528],[28.669700417829535,-13.856089557917112],[28.674378615630115,-13.850163900653985],[28.667361318929245,-13.740539241286147],[28.668530868379392,-13.735601193566875],[28.67086996727968,-13.731650755391458],[28.674378615630115,-13.72770031721604],[28.81823319799795,-13.620050876935913],[28.82525049469882,-13.61313761012893],[28.842793736450997,-13.587459761988718],[28.863845626553605,-13.566719961567776],[28.87203247270462,-13.559806694760795],[28.90594940675883,-13.540054503883706],[28.94571408806376,-13.525240360725892],[28.95039228586434,-13.523265141638182],[28.953900934214772,-13.520302313006619],[29.018226153972748,-13.441293549498269],[29.056821285827535,-13.402776777287947],[29.060329934177968,-13.39882633911253],[29.062669033078258,-13.395863510480966],[29.06500813197855,-13.388950243673985],[29.073194978129564,-13.388950243673985],[29.09775551658261,-13.384999805498568],[29.122316055035654,-13.384012195954714],[29.14453749458841,-13.394875900937112],[29.153893890189572,-13.406727215463365],[29.159741637440295,-13.422528968165036],[29.169098033041458,-13.433392673147434],[29.18430217589334,-13.43734311132285],[29.194828120944646,-13.431417454059725],[29.213540912146968,-13.408702434551074],[29.227575505548707,-13.40080155820024],[29.249796945101462,-13.391913072305549],[29.30827441760871,-13.353396300095227],[29.449789901076258,-13.300065384727091],[29.469672241728723,-13.288214070200837],[29.528149714235973,-13.233895545288846],[29.551540703238874,-13.224019449850303],[29.574931692241776,-13.225007059394157],[29.59247493399395,-13.235870764376555],[29.610018175746127,-13.249697297990517],[29.628730966948446,-13.26154861251677],[29.64159601090004,-13.262536222060625],[29.649782857051058,-13.259573393429061],[29.65796970320207,-13.260561002972915],[29.666156549353087,-13.271424707955314],[29.669665197703523,-13.281300803393858],[29.66732609880323,-13.292164508376256],[29.663817450452797,-13.302040603814799],[29.659139252652217,-13.309941480165634],[29.6509524065012,-13.314879527884907],[29.633409164749025,-13.318829966060324],[29.626391868048156,-13.326730842411159],[29.625222318598013,-13.334631718761994],[29.6275614174983,-13.355371519182937],[29.625222318598013,-13.364260005077625],[29.619374571347286,-13.367222833709189],[29.610018175746127,-13.369198052796897],[29.60183132959511,-13.37413610051617],[29.60183132959511,-13.387962634130131],[29.605339977945548,-13.399813948656384],[29.61118772519627,-13.410677653638782],[29.617035472446997,-13.42154135862118],[29.626391868048156,-13.429442234972015],[29.64159601090004,-13.438330720866706],[29.66264790100265,-13.447219206761394],[29.70241258230758,-13.458082911743793],[29.766737802065556,-13.458082911743793],[29.781941944917442,-13.456107692656083],[29.797146087769327,-13.424504187252744],[29.798315637219474,-13.313891918341053],[29.798315637219474,-13.16476287721904],[29.798315637219474,-13.022547102904007],[29.798315637219474,-12.873418061781994],[29.798315637219474,-12.698611172519769],[29.799485186669617,-12.5484945218539],[29.799485186669617,-12.382576118486364],[29.799485186669617,-12.266038192311546],[29.799485186669617,-12.159376361575273],[29.81819797787194,-12.155425923399854],[29.82287617567252,-12.153450704312146],[29.826384824022952,-12.150487875680582],[29.82989347237339,-12.146537437505165],[29.839249867974548,-12.133698513435057],[29.843928065775128,-12.124810027540368],[29.846267164675417,-12.118884370277243],[29.847436714125564,-12.112958713014116],[29.852114911926144,-12.062590626277542],[29.85328446137629,-12.056664969014417],[29.855623560276577,-12.051726921295144],[29.859132208627013,-12.047776483119726],[29.86264085697745,-12.044813654488163],[29.866149505327883,-12.0418508258566],[29.948017966838034,-12.00827210136555],[29.969069856940646,-12.00333405364628],[29.992460845943548,-12.000371225014716],[29.997139043744127,-12.000371225014716],[30.004156340444993,-12.004321663190133],[30.01234318659601,-12.013210149084824],[30.029886428348185,-12.033949949505764],[30.048599219550503,-12.067528673996815],[30.04976876900065,-12.072466721716086],[30.050938318450797,-12.077404769435358],[30.053277417351083,-12.095181741224737],[30.05444696680123,-12.10011978894401],[30.055616516251376,-12.105057836663281],[30.05912516460181,-12.11197110347026],[30.074329307453695,-12.13172329434735],[30.079007505254275,-12.139624170698184],[30.084855252505,-12.147525047049019],[30.09187254920587,-12.153450704312146],[30.107076692057756,-12.162339190206836],[30.115263538208772,-12.166289628382252],[30.123450384359785,-12.169252457013815],[30.13631542831138,-12.172215285645379],[30.142163175562107,-12.174190504733087],[30.14801092281283,-12.180116161996214],[30.15736731841399,-12.196905524241739],[30.162045516214572,-12.20184357196101],[30.184266955767328,-12.2107320578557],[30.19713199971892,-12.212707276943409],[30.201810197519503,-12.214682496031118],[30.206488395320083,-12.216657715118828],[30.211166593120662,-12.21962054375039],[30.215844790921242,-12.222583372381953],[30.23221848322327,-12.227521420101226],[30.246253076625013,-12.235422296452061],[30.256779021676316,-12.240360344171332],[30.28133956012936,-12.24431078234675],[30.287187307380087,-12.24628600143446],[30.301221900781826,-12.254186877785294],[30.30590009858241,-12.256162096873002],[30.311747845833132,-12.257149706416858],[30.32929108758531,-12.257149706416858],[30.337477933736324,-12.260112535048421],[30.346834329337483,-12.264062973223837],[30.360868922739222,-12.271963849574671],[30.370225318340385,-12.274926678206235],[30.377242615041254,-12.274926678206235],[30.39478585679343,-12.271963849574671],[30.40648135129488,-12.271963849574671],[30.412329098545605,-12.272951459118527],[30.41817684579633,-12.276901897293945],[30.42285504359691,-12.281839945013216],[30.428702790847638,-12.292703649995614],[30.433380988648217,-12.298629307258741],[30.43922873589894,-12.304554964521866],[30.4485851315001,-12.308505402697286],[30.45560242820097,-12.30949301224114],[30.461450175451695,-12.308505402697286],[30.471976120503,-12.305542574065722],[30.482502065554307,-12.304554964521866],[30.494197560055756,-12.306530183609576],[30.50004530730648,-12.30949301224114],[30.50472350510706,-12.31443105996041],[30.510571252357785,-12.325294764942809],[30.51291035125808,-12.333195641293646],[30.51291035125808,-12.34109651764448],[30.51174080180793,-12.385538947117926],[30.508232153457495,-12.39739026164418],[30.498875757856336,-12.417142452521269],[30.497706208406193,-12.42208050024054],[30.496536658956046,-12.428006157503667],[30.496536658956046,-12.439857472029917],[30.497706208406193,-12.450721177012316],[30.498875757856336,-12.455659224731589],[30.50004530730648,-12.460597272450862],[30.50472350510706,-12.465535320170133],[30.51174080180793,-12.47146097743326],[30.52343629630938,-12.479361853784095],[30.54916638421257,-12.491213168310345],[30.559692329263875,-12.496151216029618],[30.564370527064455,-12.501089263748892],[30.57021827431518,-12.508990140099726],[30.573726922665617,-12.521829064169832],[30.573726922665617,-12.529729940520667],[30.57255737321547,-12.536643207327648],[30.564370527064455,-12.55738300774859],[30.56320097761431,-12.563308665011718],[30.56320097761431,-12.569234322274843],[30.564370527064455,-12.574172369994116],[30.571387823765328,-12.583060855888805],[30.583083318266777,-12.593924560871203],[30.611152505070258,-12.615651970836],[30.625187098471997,-12.62256523764298],[30.634543494073156,-12.625528066274544],[30.648578087474895,-12.618614799467561],[30.65676493362591,-12.61367675174829],[30.664951779776928,-12.606763484941311],[30.676647274278377,-12.59096173223964],[30.68132547207896,-12.58898651315193],[30.68600366987954,-12.58898651315193],[30.691851417130263,-12.59096173223964],[30.696529614930842,-12.595899779958913],[30.709394658882438,-12.626515675818398],[30.716411955583308,-12.636391771256942],[30.723429252284177,-12.643305038063922],[30.73512474678563,-12.650218304870904],[30.755007087438095,-12.659106790765593],[30.759685285238675,-12.66305722894101],[30.763193933589108,-12.667995276660282],[30.7655330324894,-12.677871372098826],[30.766702581939544,-12.684784638905807],[30.7655330324894,-12.691697905712788],[30.763193933589108,-12.69663595343206],[30.76085483468882,-12.701574001151332],[30.755007087438095,-12.709474877502167],[30.740972494036356,-12.725276630203837],[30.738633395136063,-12.729227068379254],[30.728107450084757,-12.754904916519468],[30.726937900634613,-12.75984296423874],[30.728107450084757,-12.764781011958013],[30.743311592936642,-12.81613670823844],[30.74448114238679,-12.827000413220839],[30.74448114238679,-12.832926070483964],[30.73980294458621,-12.857616309080324],[30.743311592936642,-12.864529575887305],[30.750328889637515,-12.871442842694286],[30.811145461045054,-12.912922443536171],[30.83102780169752,-12.922798538974714],[30.84038419729868,-12.928724196237841],[30.849740592899842,-12.933662243957112],[30.855588340150565,-12.934649853500968],[30.867283834652014,-12.934649853500968],[30.900031219256075,-12.927736586693985],[30.907048515956944,-12.927736586693985],[30.91289626320767,-12.928724196237841],[30.94798274671202,-12.938600291676384],[30.960847790663614,-12.93958790122024],[30.967865087364487,-12.941563120307947],[30.99476472471782,-12.950451606202638],[31.002951570868838,-12.951439215746491],[31.00879931811956,-12.950451606202638],[31.02049481262101,-12.950451606202638],[31.03335985657261,-12.96032770164118],[31.108211021381887,-13.031435588798697],[31.121076065333483,-13.040324074693388],[31.12692381258421,-13.04131168423724],[31.1397888565358,-13.04131168423724],[31.145636603786528,-13.040324074693388],[31.151484351037254,-13.039336465149532],[31.156162548837834,-13.037361246061824],[31.159671197188267,-13.03439841743026],[31.163179845538703,-13.030447979254843],[31.16668849388914,-13.026497541079426],[31.169027592789426,-13.022547102904007],[31.17838398839059,-13.00081969293921],[31.179553537840732,-12.998844473851502],[31.18072308729088,-12.989955987956812],[31.181892636741026,-12.971191406623579],[31.184231735641312,-12.966253358904307],[31.186570834541605,-12.96230292072889],[31.19007948289204,-12.959340092097326],[31.199435878493198,-12.955389653921909],[31.219318219145663,-12.94847638711493],[31.22516596639639,-12.947488777571074],[31.2696088455019,-12.947488777571074],[31.282473889453495,-12.949463996658782],[31.288321636704218,-12.951439215746491],[31.322238570758426,-12.967240968448163],[31.331594966359585,-12.973166625711288],[31.336273164160165,-12.977117063886705],[31.3397818125106,-12.981067502062123],[31.345629559761328,-12.994894035676085],[31.34913820811176,-13.010695788377756],[31.365511900413793,-13.228957497569574],[31.371359647664516,-13.247722078902807],[31.390072438866838,-13.284263632025421],[31.413463427869736,-13.30895387062178],[31.426328471821332,-13.324755623323451],[31.427498021271475,-13.334631718761994],[31.42983712017177,-13.352408690551373],[31.428667570721622,-13.385987415042422],[31.428667570721622,-13.435367892235142]]]},"properties":{"name":"Central"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.06500813197855,-13.388950243673985],[29.062669033078258,-13.395863510480966],[29.060329934177968,-13.39882633911253],[29.056821285827535,-13.402776777287947],[29.018226153972748,-13.441293549498269],[28.953900934214772,-13.520302313006619],[28.95039228586434,-13.523265141638182],[28.94571408806376,-13.525240360725892],[28.90594940675883,-13.540054503883706],[28.87203247270462,-13.559806694760795],[28.863845626553605,-13.566719961567776],[28.842793736450997,-13.587459761988718],[28.82525049469882,-13.61313761012893],[28.81823319799795,-13.620050876935913],[28.674378615630115,-13.72770031721604],[28.67086996727968,-13.731650755391458],[28.668530868379392,-13.735601193566875],[28.667361318929245,-13.740539241286147],[28.674378615630115,-13.850163900653985],[28.669700417829535,-13.856089557917112],[28.65917447277823,-13.860039996092528],[28.578475560718225,-13.863002824724092],[28.538710879413294,-13.868928481987219],[28.534032681612715,-13.870903701074926],[28.52116763766112,-13.878804577425761],[28.51181124205996,-13.88275501560118],[28.507133044259376,-13.884730234688888],[28.500115747558507,-13.885717844232744],[28.434620978350388,-13.890655891952015],[28.417077736598213,-13.888680672864307],[28.370295758592412,-13.8758417487942],[28.359769813541106,-13.874854139250345],[28.328191978387192,-13.8758417487942],[28.30947918718487,-13.878804577425761],[28.289596846532405,-13.884730234688888],[28.281410000381392,-13.884730234688888],[28.268544956429796,-13.883742625145034],[28.20655883557211,-13.86695326289951],[28.198371989421094,-13.865965653355655],[28.190185143270078,-13.865965653355655],[28.177320099318486,-13.867940872443363],[28.170302802617613,-13.871891310618782],[28.165624604817033,-13.8758417487942],[28.1621159564666,-13.878804577425761],[28.158607308116164,-13.88275501560118],[28.150420461965147,-13.887693063320452],[28.145742264164568,-13.88966828240816],[28.139894516913845,-13.891643501495869],[28.105977582859637,-13.895593939671286],[28.049839209252678,-13.896581549215142],[28.03814371475123,-13.89855676830285],[28.029956868600213,-13.900531987390558],[28.025278670799633,-13.902507206478267],[28.017091824648617,-13.904482425565977],[27.990192187295282,-13.90547003510983],[27.982005341144266,-13.90744525419754],[27.974988044443396,-13.909420473285248],[27.9621230004918,-13.917321349636083],[27.95744480269122,-13.919296568723793],[27.95276660489064,-13.921271787811502],[27.943410209289482,-13.919296568723793],[27.932884264238176,-13.91435852100452],[27.91300192358571,-13.897569158758996],[27.90013687963412,-13.879792186969617],[27.889610934582812,-13.861027605636384],[27.822946615924543,-13.699059640444265],[27.80774247307266,-13.685233106830303],[27.78902968187034,-13.679307449567176],[27.704822121459898,-13.673381792304049],[27.69312662695845,-13.669431354128632],[27.682600681907143,-13.66449330640936],[27.665057440154968,-13.653629601426962],[27.660379242354388,-13.650666772795399],[27.65336194565352,-13.649679163251545],[27.63698825335149,-13.647703944163835],[27.621784110499604,-13.663505696865506],[27.621784110499604,-13.676344620935613],[27.626462308300184,-13.689183545005719],[27.624123209399894,-13.702022469075827],[27.619445011599314,-13.703997688163536],[27.611258165448298,-13.703997688163536],[27.60190176984714,-13.70498529770739],[27.596054022596412,-13.708935735882807],[27.59254537424598,-13.717824221777498],[27.593714923696123,-13.723749879040623],[27.596054022596412,-13.729675536303748],[27.596054022596412,-13.736588803110731],[27.586697626995253,-13.751402946268545],[27.55511979184134,-13.791894937566576],[27.553950242391192,-13.798808204373557],[27.55511979184134,-13.805721471180536],[27.553950242391192,-13.813622347531373],[27.54810249514047,-13.818560395250644],[27.541085198439596,-13.81757278570679],[27.535237451188873,-13.811647128443663],[27.53055925338829,-13.805721471180536],[27.52354195668742,-13.788932108935013],[27.51184646218597,-13.78596928030345],[27.498981418234376,-13.788932108935013],[27.489625022633216,-13.794857766198138],[27.484946824832637,-13.806709080724392],[27.48611637428278,-13.821523223882208],[27.493133670983653,-13.843250633847004],[27.483777275382494,-13.867940872443363],[27.461555835829735,-13.892631111039723],[27.4346561984764,-13.912383301916812],[27.417112956724225,-13.919296568723793],[27.40658701167292,-13.911395692372956],[27.403078363322486,-13.909420473285248],[27.39723061607176,-13.903494816022121],[27.393721967721326,-13.897569158758996],[27.3878742204706,-13.876829358338053],[27.38553512157031,-13.860039996092528],[27.384365572120167,-13.854114338829403],[27.38085692376973,-13.845225852934714],[27.37851782486944,-13.828436490689189],[27.37617872596915,-13.823498442969917],[27.375009176519004,-13.818560395250644],[27.37150052816857,-13.814609957075227],[27.35746593476683,-13.80177103300512],[27.35512683586654,-13.797820594829702],[27.35278773696625,-13.79288254711043],[27.344600890815236,-13.76819230851407],[27.344600890815236,-13.763254260794799],[27.34577044026538,-13.757328603531672],[27.346939989715523,-13.751402946268545],[27.34810953916567,-13.74547728900542],[27.346939989715523,-13.740539241286147],[27.260393330404796,-13.729675536303748],[26.852220572304184,-13.716836612233642],[26.81830363824998,-13.695109202268846],[26.803099495398094,-13.68227027819874],[26.79959084704766,-13.676344620935613],[26.794912649247077,-13.667456135040922],[26.790234451446498,-13.654617210970816],[26.789064901996355,-13.643753505988418],[26.793743099796934,-13.578571276094028],[26.797251748147367,-13.562769523392358],[26.80426904484824,-13.544992551602979],[26.80894724264882,-13.53610406570829],[26.812455890999253,-13.532153627532871],[26.83233823165172,-13.517339484375057],[26.835846880002155,-13.513389046199638],[26.838185978902445,-13.508450998480367],[26.841694627252878,-13.501537731673386],[26.852220572304184,-13.453144864024521],[26.85572922065462,-13.445243987673685],[26.859237869005057,-13.43931833041056],[26.86274651735549,-13.436355501778996],[26.87210291295665,-13.432405063603579],[26.891985253609114,-13.425491796796598],[26.901341649210273,-13.420553749077326],[26.906019847010853,-13.416603310901909],[26.910698044811436,-13.410677653638782],[26.922393539312885,-13.384012195954714],[26.924732638213175,-13.38104936732315],[26.929410836013755,-13.377098929147733],[26.95163227556651,-13.366235224165335],[26.957480022817236,-13.361297176446062],[26.963327770067963,-13.352408690551373],[26.973853715119265,-13.334631718761994],[26.9773623634697,-13.324755623323451],[26.980871011820135,-13.31586713742876],[26.980871011820135,-13.309941480165634],[26.978531912919845,-13.292164508376256],[26.976192814019555,-13.282288412937712],[26.964497319518106,-13.259573393429061],[26.963327770067963,-13.25266012662208],[26.96098867116767,-13.244759250271244],[26.96098867116767,-13.22796988802572],[26.963327770067963,-13.218093792587176],[26.96566686896825,-13.211180525780197],[26.968005967868542,-13.206242478060924],[26.97034506676883,-13.202292039885506],[26.973853715119265,-13.198341601710089],[26.98204056127028,-13.191428334903108],[27.037009385427098,-13.157849610412057],[27.04519623157811,-13.151923953148932],[27.05455262717927,-13.141060248166534],[27.061569923880143,-13.130196543184136],[27.065078572230576,-13.1222956668333],[27.06741767113087,-13.11538240002632],[27.0943173084842,-13.00081969293921],[27.0943173084842,-12.999832083395358],[27.08963911068362,-12.997856864307648],[27.08496091288304,-12.995881645219939],[27.079113165632318,-12.994894035676085],[27.07209586893145,-12.994894035676085],[27.04987442937869,-12.998844473851502],[27.044026682127967,-12.996869254763794],[27.03817893487724,-12.992918816588375],[27.034670286526804,-12.98501794023754],[27.03116163817637,-12.980079892518269],[27.02765298982594,-12.977117063886705],[27.022974792025355,-12.976129454342852],[27.019466143674922,-12.972179016167434],[27.015957495324486,-12.963290530272744],[27.013618396424196,-12.959340092097326],[27.01010974807376,-12.955389653921909],[27.00543155027318,-12.953414434834201],[27.0007533524726,-12.951439215746491],[26.99841425357231,-12.951439215746491],[26.980871011820135,-12.950451606202638],[26.975023264569412,-12.94847638711493],[26.97034506676883,-12.945513558483366],[26.962158220617816,-12.93958790122024],[26.957480022817236,-12.937612682132531],[26.930580385463898,-12.926748977150133],[26.92590218766332,-12.92378614851857],[26.922393539312885,-12.920823319887006],[26.915376242612016,-12.912922443536171],[26.91186759426158,-12.909959614904608],[26.90251119866042,-12.90403395764148],[26.891985253609114,-12.89909590992221],[26.887307055808535,-12.896133081290646],[26.882628858007955,-12.892182643115229],[26.880289759107665,-12.886256985852102],[26.87912020965752,-12.88131893813283],[26.880289759107665,-12.875393280869703],[26.889646154708824,-12.862554356799595],[26.899002550309984,-12.840826946834799],[26.90251119866042,-12.834901289571674],[26.906019847010853,-12.826012803676985],[26.907189396461,-12.820087146413858],[26.90485029756071,-12.814161489150731],[26.90251119866042,-12.810211050975315],[26.8837984074581,-12.790458860098227],[26.87912020965752,-12.788483641010519],[26.87444201185694,-12.7845332028351],[26.86976381405636,-12.779595155115828],[26.86742471515607,-12.770706669221138],[26.863916066805636,-12.764781011958013],[26.8604074184552,-12.75984296423874],[26.85572922065462,-12.756880135607176],[26.852220572304184,-12.75292969743176],[26.847542374503604,-12.747991649712487],[26.845203275603314,-12.739103163817799],[26.845203275603314,-12.732189897010818],[26.852220572304184,-12.72132619202842],[26.85572922065462,-12.713425315677583],[26.86508561625578,-12.669970495747991],[26.86742471515607,-12.66305722894101],[26.870933363506506,-12.657131571677883],[26.87912020965752,-12.644292647607777],[26.886137506358388,-12.637379380800796],[26.89549390195955,-12.632441333081523],[26.90017209976013,-12.63145372353767],[26.906019847010853,-12.630466113993815],[26.923563088763032,-12.628490894906108],[26.928241286563612,-12.627503285362252],[26.938767231614914,-12.623552847186835],[26.94695407776593,-12.61762718992371],[26.9539713744668,-12.611701532660582],[26.963327770067963,-12.599850218134328],[26.973853715119265,-12.581085636801095],[27.008940198623616,-12.537630816871502],[27.017127044774632,-12.53269276915223],[27.02648344037579,-12.528742330976813],[27.066248121680722,-12.521829064169832],[27.07209586893145,-12.519853845082125],[27.07677406673203,-12.515903406906705],[27.07677406673203,-12.51195296873129],[27.074434967831735,-12.508990140099726],[27.06741767113087,-12.501089263748892],[27.06741767113087,-12.500101654205036],[27.058061275529706,-12.477386634696385],[27.055722176629416,-12.470473367889404],[27.05455262717927,-12.46257249153857],[27.05455262717927,-12.448745957924608],[27.055722176629416,-12.440845081573773],[27.059230824979853,-12.433931814766792],[27.061569923880143,-12.428006157503667],[27.066248121680722,-12.41813006206512],[27.066248121680722,-12.387514166205637],[27.065078572230576,-12.38158850894251],[27.053383077729126,-12.347022174907606],[27.052213528278983,-12.34109651764448],[27.051043978828837,-12.334183250837498],[27.055722176629416,-12.33220803174979],[27.060400374429996,-12.333195641293646],[27.08262181398275,-12.338133689012917],[27.110691000786233,-12.33912129855677],[27.120047396387392,-12.338133689012917],[27.13876018758971,-12.335170860381353],[27.150455682091163,-12.333195641293646],[27.276767022706824,-12.346034565363752],[27.282614769957547,-12.343071736732188],[27.28963206665842,-12.33912129855677],[27.30132756115987,-12.324307155398955],[27.307175308410596,-12.319369107679684],[27.32004035236219,-12.312455840872701],[27.32471855016277,-12.30949301224114],[27.339922693014657,-12.302579745434159],[27.35278773696625,-12.285790383188633],[27.358635484216975,-12.281839945013216],[27.363313682017555,-12.278877116381654],[27.37383962706886,-12.27591428775009],[27.37851782486944,-12.273939068662381],[27.38553512157031,-12.268013411399256],[27.400739264422196,-12.255174487329148],[27.408926110573212,-12.249248830066023],[27.41360430837379,-12.248261220522167],[27.42763890177553,-12.24431078234675],[27.43699529737669,-12.25122404915373],[27.452199440228576,-12.260112535048421],[27.466234033630315,-12.269988630486964],[27.466234033630315,-12.27591428775009],[27.46389493473003,-12.28282755455707],[27.46740358308046,-12.288753211820197],[27.495472769883943,-12.293691259539468],[27.507168264385392,-12.298629307258741],[27.510676912735825,-12.30060452634645],[27.524711506137567,-12.281839945013216],[27.539915648989453,-12.276901897293945],[27.543424297339886,-12.274926678206235],[27.586697626995253,-12.24628600143446],[27.590206275345686,-12.243323172802896],[27.594884473146266,-12.247273610978313],[27.638157802801633,-12.293691259539468],[27.666226989605114,-12.302579745434159],[27.710669868710625,-12.306530183609576],[27.75628229726628,-12.304554964521866],[27.787860132420196,-12.296654088171032],[27.80774247307266,-12.281839945013216],[27.818268418123964,-12.268013411399256],[27.83113346207556,-12.260112535048421],[27.85686354997875,-12.262087754136129],[27.876745890631216,-12.269988630486964],[27.934053813688323,-12.303567354978012],[27.94808840709006,-12.321344326767392],[27.95276660489064,-12.347022174907606],[27.958614352141367,-12.367761975328548],[27.980835791694123,-12.374675242135527],[27.99954858289644,-12.371712413503966],[28.013583176298184,-12.370724803960112],[28.08726479165732,-12.377638070767091],[28.096621187258478,-12.382576118486364],[28.100129835608914,-12.391464604381053],[28.102468934509204,-12.401340699819597],[28.107147132309784,-12.410229185714286],[28.13170767076283,-12.428993767047519],[28.145742264164568,-12.423068109784394],[28.160946407016453,-12.409241576170432],[28.1855069454695,-12.402328309363451],[28.205389286121964,-12.411216795258142],[28.22059342897385,-12.425043328872103],[28.23696712127588,-12.436894643398356],[28.263866758629216,-12.436894643398356],[28.283749099281682,-12.433931814766792],[28.303631439934147,-12.435907033854502],[28.322344231136466,-12.440845081573773],[28.33988747288864,-12.450721177012316],[28.422925483848935,-12.520841454625979],[28.436960077250678,-12.542568864590775],[28.455672868452996,-12.591949341783494],[28.468537912404592,-12.614664361292146],[28.502454846458797,-12.649230695327049],[28.51181124205996,-12.667995276660282],[28.51181124205996,-12.69466073434435],[28.500115747558507,-12.710462487046021],[28.483742055256478,-12.722313801572273],[28.47438565965532,-12.736140335186235],[28.481402956356188,-12.761818183326449],[28.501285297008653,-12.788483641010519],[28.52350673656141,-12.810211050975315],[28.539880428863437,-12.83391368002782],[28.543389077213874,-12.885269376308248],[28.55391502226518,-12.89514547174679],[28.56794961566692,-12.89514547174679],[28.58432330796895,-12.888232204939811],[28.59367970357011,-12.876380890413557],[28.60771429697185,-12.847740213641782],[28.62174889037359,-12.839839337290947],[28.667361318929245,-12.84971543272949],[28.70829554968432,-12.890207424027519],[28.77612941779273,-12.976129454342852],[28.793672659544907,-12.991931207044521],[28.800689956245776,-13.00279491202692],[28.808876802396792,-13.038348855605678],[28.813555000197372,-13.043286903324951],[28.82758959359911,-13.047237341500367],[28.831098241949547,-13.052175389219638],[28.8299286924994,-13.057113436938911],[28.82525049469882,-13.06797714192131],[28.82525049469882,-13.071927580096727],[28.826420044148968,-13.076865627815998],[28.824080945248678,-13.087729332798396],[28.82525049469882,-13.09266738051767],[28.8299286924994,-13.09760542823694],[28.835776439750127,-13.098593037780795],[28.840454637550707,-13.100568256868504],[28.843963285901143,-13.102543475956214],[28.853319681502303,-13.137109809991117],[28.862676077103462,-13.143035467254244],[28.882558417755927,-13.144023076798097],[28.891914813357086,-13.14698590542966],[28.903610307858536,-13.16278765813133],[28.934018593562307,-13.309941480165634],[28.95039228586434,-13.35142108100752],[28.98080057156811,-13.380061757779295],[28.993665615519703,-13.395863510480966],[29.010039307821735,-13.399813948656384],[29.028752099024054,-13.395863510480966],[29.04629534077623,-13.388950243673985],[29.06500813197855,-13.388950243673985]]]},"properties":{"name":"Copperbelt"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.2146752414711,-14.981964437911113],[30.212336142570805,-14.979989218823405],[30.212336142570805,-14.860488464017024],[30.206488395320083,-14.830860177701393],[30.201810197519503,-14.82789734906983],[30.191284252468197,-14.81703364408743],[30.18309740631718,-14.805182329561179],[30.17374101071602,-14.793331015034926],[30.16555416456501,-14.7874053577718],[30.150350021713123,-14.780492090964819],[30.144502274462397,-14.776541652789401],[30.139824076661817,-14.77160360507013],[30.100059395356887,-14.720247908789702],[30.095381197556307,-14.716297470614283],[30.090702999755727,-14.713334641982721],[30.06848156020297,-14.70444615608803],[30.061464263502103,-14.698520498824905],[30.057955615151666,-14.69061962247407],[30.05444696680123,-14.677780698403962],[30.050938318450797,-14.670867431596982],[30.046260120650217,-14.66395416479],[30.021699582197172,-14.635313488018223],[30.00064769209456,-14.617536516228846],[29.994799944843834,-14.606672811246447],[30.00064769209456,-14.556304724509873],[30.00766498879543,-14.519763171387261],[30.01234318659601,-14.508899466404863],[30.015851834946446,-14.501986199597882],[30.01936048329688,-14.500010980510172],[30.025208230547605,-14.48124639917694],[30.027547329447895,-14.460506598755996],[30.03105597779833,-14.449642893773598],[30.034564626148764,-14.442729626966617],[30.04509057120007,-14.431865921984219],[30.053277417351083,-14.426927874264948],[30.05912516460181,-14.42495265517724],[30.06380336240239,-14.42100221700182],[30.069651109653115,-14.415076559738695],[30.07315975800355,-14.406188073844007],[30.07549885690384,-14.393349149773899],[30.08017705470442,-14.383473054335354],[30.083685703054854,-14.377547397072227],[30.088363900855434,-14.37557217798452],[30.09421164810616,-14.374584568440666],[30.105907142607613,-14.376559787528373],[30.111754889858336,-14.376559787528373],[30.117602637109062,-14.37557217798452],[30.123450384359785,-14.372609349352956],[30.130467681060658,-14.364708473002121],[30.169062812915442,-14.314340386265547],[30.198301549169067,-14.289650147669189],[30.20531884586994,-14.282736880862206],[30.20999704367052,-14.274836004511371],[30.2146752414711,-14.263972299528973],[30.218183889821532,-14.258046642265848],[30.22286208762211,-14.25409620409043],[30.23221848322327,-14.249158156371157],[30.246253076625013,-14.235331622757197],[30.25443992277603,-14.228418355950215],[30.280170010679218,-14.215579431880109],[30.291865505180667,-14.20669094598542],[30.29888280188154,-14.19780246009073],[30.3082391974827,-14.18200070738906],[30.314086944733425,-14.171137002406661],[30.318765142534005,-14.158298078336554],[30.319934691984148,-14.150397201985719],[30.319934691984148,-14.142496325634884],[30.318765142534005,-14.131632620652486],[30.31759559308386,-14.125706963389359],[30.31642604363371,-14.121756525213941],[30.31057829638299,-14.112868039319252],[30.30590009858241,-14.103979553424562],[30.30356099968212,-14.100029115249146],[30.29888280188154,-14.097066286617583],[30.29420460408096,-14.095091067529873],[30.28952640628038,-14.09212823889831],[30.277830911778928,-14.082252143459765],[30.273152713978348,-14.079289314828204],[30.262626768927042,-14.07435126710893],[30.215844790921242,-14.061512343038824],[30.190114703018054,-14.050648638056426],[30.184266955767328,-14.047685809424863],[30.180758307416895,-14.040772542617882],[30.153858670063556,-13.960776169565676],[30.149180472262977,-13.950900074127134],[30.14333272501225,-13.946949635951714],[30.137484977761527,-13.94596202640786],[30.117602637109062,-13.942999197776299],[30.105907142607613,-13.940036369144735],[30.101228944807033,-13.938061150057026],[30.097720296456597,-13.935098321425462],[30.097720296456597,-13.9321354927939],[30.87313158190274,-13.93016027370619],[30.8824879775039,-13.927197445074627],[30.89184437310506,-13.922259397355354],[30.897692120355785,-13.909420473285248],[30.904709417056655,-13.901519596934413],[30.91991355990854,-13.887693063320452],[30.93628725221057,-13.863990434267947],[30.937456801660716,-13.860039996092528],[30.95967824121347,-13.852139119741693],[30.963186889563907,-13.836337367040024],[30.963186889563907,-13.819548004794498],[30.970204186264777,-13.81263473798752],[30.984238779666516,-13.8086842998121],[31.009968867569704,-13.789919718478867],[31.021664362071157,-13.78399406121574],[31.05090309832478,-13.781031232584178],[31.061429043376087,-13.773130356233342],[31.05558129612536,-13.757328603531672],[31.071954988427393,-13.740539241286147],[31.074294087327683,-13.738564022198439],[31.098854625780728,-13.713873783602079],[31.10470237303145,-13.700047249988117],[31.12224561478363,-13.626964143742892],[31.135110658735222,-13.607211952865805],[31.16201029608856,-13.596348247883407],[31.173705790590006,-13.581534104725591],[31.18306218619117,-13.578571276094028],[31.209961823544504,-13.584496933357155],[31.2228268674961,-13.582521714269447],[31.23218326309726,-13.556843866129231],[31.25089605429958,-13.535116456164435],[31.25557425210016,-13.521289922550473],[31.259082900450593,-13.513389046199638],[31.26726974660161,-13.51141382711193],[31.27662614220277,-13.512401436655784],[31.28364343890364,-13.517339484375057],[31.287152087254075,-13.514376655743494],[31.296508482855234,-13.50450056030495],[31.337442713610308,-13.473884664445464],[31.359664153163067,-13.461045740375356],[31.406446131168867,-13.451169644936812],[31.428667570721622,-13.435367892235142],[31.439193515772928,-13.428454625428161],[31.46141495532568,-13.42154135862118],[31.477788647627712,-13.424504187252744],[31.497670988280177,-13.429442234972015],[31.51872287838279,-13.432405063603579],[31.535096570684818,-13.425491796796598],[31.613456383844536,-13.366235224165335],[31.63801692229758,-13.33561932830585],[31.649712416799026,-13.298090165639382],[31.657899262950046,-13.258585783885206],[31.675442504702218,-13.200316820797799],[31.680120702502798,-13.191428334903108],[31.70117259260541,-13.186490287183837],[31.709359438756422,-13.181552239464564],[31.714037636557002,-13.174638972657583],[31.716376735457295,-13.16476287721904],[31.723394032158165,-13.145010686341951],[31.73859817501005,-13.13118415272799],[31.75263276841179,-13.116370009570176],[31.756141416762226,-13.09266738051767],[31.761989164012952,-13.09266738051767],[31.76432826291324,-13.096617818693087],[31.766667361813532,-13.101555866412358],[31.76900646071382,-13.10649391413163],[31.78538015301585,-13.096617818693087],[31.807601592568606,-13.084766504166833],[31.8204666365202,-13.07489040872829],[31.830992581571508,-13.062051484658184],[31.83684032882223,-13.05908865602662],[31.85789221892484,-13.057113436938911],[31.864909515625712,-13.052175389219638],[31.86958771342629,-13.046249731956513],[31.87192681232658,-13.037361246061824],[31.884791856278177,-13.042299293781095],[31.89297870242919,-13.040324074693388],[31.901165548580206,-13.035386026974114],[31.912861043081655,-13.030447979254843],[31.907013295830932,-13.011683397921608],[31.90584374638079,-12.990943597500667],[31.908182845281075,-12.971191406623579],[31.912861043081655,-12.955389653921909],[31.9140305925318,-12.950451606202638],[31.912861043081655,-12.93958790122024],[31.912861043081655,-12.93563746304482],[31.91870879033238,-12.930699415325549],[31.924556537583108,-12.929711805781695],[31.930404284833834,-12.930699415325549],[31.933912933184267,-12.928724196237841],[31.946777977135863,-12.915885272167735],[31.951456174936443,-12.909959614904608],[31.95496482328688,-12.901071129009917],[31.96549076833818,-12.900083519466063],[31.98654265844079,-12.894157862202938],[32.0075945485434,-12.886256985852102],[32.015781394694415,-12.876380890413557],[32.019290043044855,-12.85860391862418],[32.03449418589674,-12.813173879606877],[32.0438505814979,-12.797372126905207],[32.05320697709906,-12.790458860098227],[32.06139382325007,-12.788483641010519],[32.0672415705008,-12.7845332028351],[32.07191976830138,-12.763793402414159],[32.08127616390254,-12.74404121153707],[32.08361526280283,-12.733177506554672],[32.08478481225298,-12.720338582484565],[32.090632559503696,-12.68774746753737],[32.090632559503696,-12.65416874304632],[32.094141207854136,-12.644292647607777],[32.098819405654716,-12.637379380800796],[32.10232805400515,-12.62947850444996],[32.10700625180573,-12.604788265853601],[32.117532196857034,-12.59293695132735],[32.138584086959646,-12.495163606485765],[32.138584086959646,-12.451708786556171],[32.14092318585993,-12.443807910205336],[32.15027958146109,-12.429981376591375],[32.152618680361385,-12.424055719328248],[32.15378822981153,-12.409241576170432],[32.15846642761211,-12.403315918907307],[32.16431417486284,-12.39739026164418],[32.173670570464,-12.387514166205637],[32.18068786716486,-12.375662851679383],[32.193552911116456,-12.346034565363752],[32.206417955068055,-12.333195641293646],[32.255539031974145,-12.294678869083324],[32.259047680324585,-12.28480277364478],[32.27659092207676,-12.264062973223837],[32.28477776822777,-12.243323172802896],[32.28945596602835,-12.2215957628381],[32.29179506492864,-12.200855962417156],[32.37366352643879,-12.21962054375039],[32.433310548396186,-12.21962054375039],[32.48360117475242,-12.168264847469962],[32.499974867054455,-12.109995884382553],[32.54207864725967,-12.067528673996815],[32.60055611976692,-12.067528673996815],[32.726867460382586,-12.059627797645978],[32.95376005371072,-11.99247034866388],[33.088258240477394,-11.950003138278142],[33.13036202068262,-11.858155450699684],[33.19702633934088,-11.748530791331847],[33.19702633934088,-11.701125533226836],[33.216908679993345,-11.673472465998913],[33.256673361298276,-11.656683103753387],[33.30462488875422,-11.643844179683281],[33.31398128435538,-11.772233420384353],[33.310472636004945,-11.808774973506964],[33.29760759205335,-11.84630413617343],[33.29760759205335,-11.862105888875101],[33.309303086554806,-11.884820908383752],[33.31281173490524,-11.898647441997714],[33.309303086554806,-11.914449194699383],[33.30345533930408,-11.930250947401053],[33.29409894370292,-11.981606643681483],[33.25433426239799,-12.072466721716086],[33.25082561404755,-12.106045446207135],[33.25316471294784,-12.139624170698184],[33.260182009648716,-12.155425923399854],[33.288251196452194,-12.182091381083923],[33.29994669095365,-12.195917914697883],[33.31281173490524,-12.228509029645078],[33.33035497665741,-12.298629307258741],[33.34906776785974,-12.328257593574373],[33.38415425136408,-12.340108908100625],[33.457835866723215,-12.318381498135828],[33.497600548028146,-12.331220422205936],[33.51397424033018,-12.331220422205936],[33.52566973483163,-12.335170860381353],[33.52683928428178,-12.355910660802294],[33.51865243813076,-12.371712413503966],[33.51397424033018,-12.374675242135527],[33.48824415242699,-12.389489385293345],[33.480057306275974,-12.40627874753887],[33.46485316342409,-12.409241576170432],[33.461344515073655,-12.416154842977413],[33.46017496562351,-12.440845081573773],[33.45081857002235,-12.452696396100025],[33.42041028431858,-12.464547710626277],[33.40988433926727,-12.475411415608676],[33.39351064696524,-12.498126435117328],[33.37362830631278,-12.518866235538269],[33.350237317309876,-12.53269276915223],[33.328015877757124,-12.537630816871502],[33.319829031606105,-12.534667988239939],[33.31164218545509,-12.529729940520667],[33.30228578985393,-12.524791892801396],[33.28942074590233,-12.52380428325754],[33.26369065799915,-12.528742330976813],[33.25550381184813,-12.531705159608377],[33.243808317346684,-12.544544083678485],[33.22743462504465,-12.579110417713387],[33.21340003164291,-12.58898651315193],[33.202874086591606,-12.591949341783494],[33.19702633934088,-12.594912170415057],[33.1923481415403,-12.598862608590476],[33.18766994373972,-12.602813046765892],[33.181822196488994,-12.607751094485163],[33.17831354813856,-12.614664361292146],[33.17363535033798,-12.619602409011417],[33.163109405286676,-12.620590018555271],[33.158431207486096,-12.615651970836],[33.14673571298464,-12.59293695132735],[33.13971841628378,-12.586023684520368],[33.13036202068262,-12.584048465432659],[33.123344723981745,-12.585036074976514],[33.10697103167971,-12.58898651315193],[33.0987841855287,-12.59293695132735],[33.08942778992754,-12.600837827678184],[33.08124094377652,-12.604788265853601],[33.074223647075655,-12.59787499904662],[33.069545449275076,-12.589974122695786],[33.064867251474496,-12.585036074976514],[33.05784995477362,-12.583060855888805],[33.04966310862261,-12.587011294064222],[33.03562851522087,-12.598862608590476],[33.025102570169565,-12.612689142204436],[32.994694284465794,-12.672933324379553],[32.958438251511296,-12.725276630203837],[32.94440365810956,-12.751942087887905],[32.940895009759124,-12.769719059677284],[32.94674275700985,-12.842802165922508],[32.95376005371072,-12.853665870904907],[32.980659691064055,-12.870455233150432],[33.0052202295171,-12.893170252659083],[33.01340707566811,-12.916872881711587],[33.00872887786753,-12.945513558483366],[32.9818292405142,-13.005757740658483],[32.96545554821217,-13.116370009570176],[32.966625097662316,-13.134146981359553],[32.971303295462896,-13.150936343605078],[32.97949014161391,-13.167725705850604],[32.994694284465794,-13.190440725359252],[32.99820293281623,-13.202292039885506],[32.9923551855655,-13.216118573499468],[32.963116449311876,-13.225007059394157],[32.937386361408684,-13.255622955253642],[32.91984311965651,-13.29512733700782],[32.90580852625477,-13.35142108100752],[32.891773932853035,-13.404751996375655],[32.874230691100855,-13.443268768585977],[32.84616150429738,-13.458082911743793],[32.82744871309506,-13.461045740375356],[32.819261866944046,-13.471909445357754],[32.81692276804375,-13.487711198059426],[32.81809231749389,-13.505488169848803],[32.81341411969332,-13.528203189357455],[32.80054907574172,-13.537091675252144],[32.76312349333708,-13.542029722971415],[32.750258449385484,-13.550918208866104],[32.72335881203215,-13.573633228374756],[32.71049376808055,-13.575608447462464],[32.691780976878235,-13.568695180655485],[32.677746383476496,-13.56770757111163],[32.66722043842519,-13.575608447462464],[32.66371179007476,-13.596348247883407],[32.67540728457621,-13.627951753286748],[32.70698511973012,-13.634865020093727],[32.74324115268462,-13.635852629637583],[32.77014079003795,-13.646716334619981],[32.807566372442594,-13.699059640444265],[32.81341411969332,-13.710910954970515],[32.8052272735423,-13.721774659952914],[32.76780169113766,-13.738564022198439],[32.75727574608636,-13.750415336724693],[32.76312349333708,-13.77708079440876],[32.79236222959071,-13.789919718478867],[32.828618262545206,-13.796832985285848],[32.85902654824897,-13.807696690268246],[32.874230691100855,-13.820535614338354],[32.92335176800695,-13.88077979651347],[32.928029965807525,-13.895593939671286],[32.93036906470782,-13.910408082829104],[32.936216811958545,-13.926209835530774],[32.94440365810956,-13.933123102337753],[32.96194689986173,-13.9321354927939],[32.97013374601275,-13.936085930969316],[32.975981493263475,-13.944974416864007],[32.977151042713615,-13.949912464583278],[32.97481194381333,-13.955838121846405],[32.971303295462896,-14.006206208582977],[32.975981493263475,-14.021020351740795],[32.999372482266374,-14.050648638056426],[33.01808527346869,-14.046698199881007],[33.04966310862261,-13.996330113144435],[33.0625281525742,-13.981515969986619],[33.07656274597595,-13.974602703179638],[33.11164922948029,-13.964726607741094],[33.12100562508145,-13.955838121846405],[33.13036202068262,-13.93016027370619],[33.13971841628378,-13.925222225986918],[33.15492255913566,-13.936085930969316],[33.18533084483943,-13.993367284512871],[33.202874086591606,-14.014107084933814],[33.13036202068262,-14.03780971398632],[33.04264581192174,-14.067438000301951],[32.917504020756226,-14.108917601143835],[32.74441070213476,-14.166198954687388],[32.57716513076402,-14.22249269868709],[32.42512370224517,-14.272860785423664],[32.31986425173212,-14.308414729002422],[32.22746984517067,-14.339030624861907],[32.14677093311066,-14.353844768019723],[32.10934535070602,-14.364708473002121],[32.033324636446594,-14.39828719749317],[31.93274338373412,-14.430878312440365],[31.801753845317883,-14.473345522826104],[31.657899262950046,-14.519763171387261],[31.59006539484163,-14.554329505422164],[31.49650143883003,-14.602722373071028],[31.411124328969446,-14.633338268930515],[31.30703442790654,-14.658028507526875],[31.17838398839059,-14.68864440338636],[31.074294087327683,-14.713334641982721],[31.056750845575507,-14.714322251526575],[30.91523536210796,-14.745925756929916],[30.815823658845634,-14.768640776438566],[30.676647274278377,-14.818021253631287],[30.591270164417793,-14.847649539946918],[30.48601071390474,-14.886166312157238],[30.39244675789314,-14.930608741630685],[30.318765142534005,-14.9671502947533],[30.231048933773128,-14.977026390191842],[30.2146752414711,-14.98097682836726],[30.2146752414711,-14.981964437911113]]]},"properties":{"name":"Eastern"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.050938318450797,-14.670867431596982],[30.05444696680123,-14.677780698403962],[30.057955615151666,-14.69061962247407],[30.061464263502103,-14.698520498824905],[30.06848156020297,-14.70444615608803],[30.090702999755727,-14.713334641982721],[30.095381197556307,-14.716297470614283],[30.100059395356887,-14.720247908789702],[30.139824076661817,-14.77160360507013],[30.144502274462397,-14.776541652789401],[30.150350021713123,-14.780492090964819],[30.16555416456501,-14.7874053577718],[30.17374101071602,-14.793331015034926],[30.18309740631718,-14.805182329561179],[30.191284252468197,-14.81703364408743],[30.201810197519503,-14.82789734906983],[30.206488395320083,-14.830860177701393],[30.212336142570805,-14.860488464017024],[30.212336142570805,-14.979989218823405],[30.2146752414711,-14.981964437911113],[30.213505692020952,-14.988877704718096],[30.220522988721825,-15.018505991033727],[30.220522988721825,-15.062948420507174],[30.226370735972548,-15.106403240436768],[30.262626768927042,-15.23084204296242],[30.288356856830234,-15.279234910611285],[30.319934691984148,-15.298987101488372],[30.335138834836034,-15.304912758751499],[30.34800387878763,-15.317751682821607],[30.35736027438879,-15.335528654610986],[30.36437757108966,-15.354293235944219],[30.36905576889024,-15.37503303636516],[30.371394867790528,-15.44021526625955],[30.374903516140964,-15.451078971241948],[30.39010765899285,-15.470831162119037],[30.39244675789314,-15.48070725755758],[30.39010765899285,-15.490583352996124],[30.371394867790528,-15.525149687031028],[30.3655471205398,-15.547864706539679],[30.367886219440095,-15.56169124015364],[30.395955406243573,-15.590331916925418],[30.4018031534943,-15.598232793276253],[30.412329098545605,-15.627861079591884],[30.409989999645315,-15.630823908223448],[30.395955406243573,-15.63576195594272],[30.356190724938642,-15.651563708644389],[30.328121538135164,-15.652551318188245],[30.296543702981246,-15.638724784574283],[30.280170010679218,-15.631811517767302],[30.25443992277603,-15.628848689135738],[30.246253076625013,-15.631811517767302],[30.231048933773128,-15.64465044183741],[30.22286208762211,-15.649588489556681],[30.207657944770226,-15.653538927732098],[30.195962450268777,-15.649588489556681],[30.17023236236559,-15.631811517767302],[30.130467681060658,-15.623910641416467],[30.08953345030558,-15.629836298679592],[30.04976876900065,-15.639712394118137],[30.011173637145866,-15.646625660925118],[29.9679003074905,-15.641687613205846],[29.88135364817977,-15.618972593697194],[29.836910769074258,-15.615022155521777],[29.814689329521503,-15.61996020324105],[29.77375509876643,-15.637737175030427],[29.730481769111062,-15.64465044183741],[29.673173846053956,-15.663415023170643],[29.64861330760091,-15.666377851802205],[29.6275614174983,-15.663415023170643],[29.60884862629598,-15.65847697545137],[29.58779673619337,-15.655514146819808],[29.563236197740324,-15.662427413626787],[29.525810615335686,-15.693043309486274],[29.508267373583507,-15.703907014468673],[29.42172071427278,-15.710820281275652],[29.406516571420894,-15.713783109907215],[29.18664127479363,-15.812544064292656],[29.150385241839135,-15.849085617415266],[29.14219839568812,-15.85402366513454],[29.12114650558551,-15.85896171285381],[29.10243371438319,-15.870813027380063],[29.08606002208116,-15.884639560994025],[29.07670362648,-15.895503265976423],[29.054482186927245,-15.934020038186745],[29.042786692425793,-15.945871352712997],[29.018226153972748,-15.95080940043227],[28.972613725417094,-15.951797009976124],[28.951561835314482,-15.954759838607686],[28.946883637513903,-15.95772266723925],[28.946883637513903,-15.956735057695395],[28.931679494662017,-15.944883743169143],[28.91062760455941,-15.931057209555181],[28.887236615556507,-15.92611916183591],[28.870862923254478,-15.942908524081433],[28.859167428753025,-15.936982866818308],[28.848641483701723,-15.936982866818308],[28.840454637550707,-15.940933304993726],[28.836945989200274,-15.95080940043227],[28.82525049469882,-15.943896133625287],[28.81823319799795,-15.94685896225685],[28.813555000197372,-15.952784619519978],[28.808876802396792,-15.956735057695395],[28.79952040679563,-15.955747448151541],[28.784316263943747,-15.951797009976124],[28.777298967242878,-15.95080940043227],[28.7597557254907,-15.952784619519978],[28.753907978239976,-15.951797009976124],[28.744551582638817,-15.947846571800707],[28.676717714530405,-15.895503265976423],[28.66385267057881,-15.889577608713298],[28.643970329926344,-15.888589999169442],[28.604205648621413,-15.894515656432569],[28.583153758518804,-15.890565218257152],[28.566780066216772,-15.879701513274753],[28.52350673656141,-15.83624669334516],[28.507133044259376,-15.823407769275054],[28.490759351957347,-15.81846972155578],[28.453333769552707,-15.81353167383651],[28.441638275051258,-15.808593626117236],[28.421755934398792,-15.794767092503275],[28.411229989347486,-15.78884143524015],[28.39134764869502,-15.783903387520878],[28.291935945432694,-15.790816654327859],[28.275562253130666,-15.796742311590984],[28.24632351687704,-15.816494502468071],[28.235797571825735,-15.81846972155578],[28.226441176224576,-15.812544064292656],[28.194863341070658,-15.78686621615244],[28.17848964876863,-15.777977730257751],[28.08024749495645,-15.740448567591285],[28.059195604853837,-15.737485738959721],[28.04048281365152,-15.731560081696594],[28.029956868600213,-15.717733548082634],[28.020600472999053,-15.699956576293253],[28.007735429047457,-15.68316721404773],[27.970309846642817,-15.666377851802205],[27.929375615887743,-15.664402632714497],[27.889610934582812,-15.673291118609185],[27.85686354997875,-15.69008048085471],[27.847507154377592,-15.68514243313544],[27.841659407126865,-15.679216775872312],[27.839320308226576,-15.671315899521478],[27.841659407126865,-15.663415023170643],[27.822946615924543,-15.651563708644389],[27.799555626921645,-15.647613270468971],[27.75628229726628,-15.648600880012825],[27.799555626921645,-15.560703630609785],[27.90598462688484,-15.532062953838008],[27.923527868637017,-15.518236420224047],[27.932884264238176,-15.506385105697795],[27.934053813688323,-15.500459448434668],[27.935223363138466,-15.495521400715397],[27.934053813688323,-15.485645305276853],[27.931714714788033,-15.468855943031327],[27.91768012138629,-15.423425904014026],[27.891950033483102,-15.374045426821306],[27.879084989531506,-15.362194112295054],[27.86388084667962,-15.357256064575783],[27.81008157197295,-15.349355188224946],[27.78669058297005,-15.34342953096182],[27.773825539018453,-15.33454104506713],[27.766808242317584,-15.320714511453168],[27.769147341217874,-15.310838416014626],[27.77733418736889,-15.298987101488372],[27.827624813725127,-15.266395986541177],[27.836981209326286,-15.262445548365761],[27.84984625327788,-15.260470329278052],[27.862711297229474,-15.260470329278052],[28.03346551695065,-15.28713578696212],[28.20188063777153,-15.340466702330257],[28.26035811027878,-15.35231801685651],[28.29076639598255,-15.341454311874111],[28.317666033335886,-15.295036663312956],[28.343396121239074,-15.224916385699293],[28.37614350584314,-15.162696984436467],[28.404212692646617,-15.145907622190943],[28.569119165117066,-15.188374832576681],[28.655665824427793,-15.186399613488973],[28.74338203318867,-15.175535908506575],[28.82291139579853,-15.148870450822505],[28.946883637513903,-15.041221010542378],[29.000682912220576,-15.018505991033727],[29.052143088026956,-15.008629895595183],[29.227575505548707,-14.956286589770901],[29.311783065959148,-14.977026390191842],[29.3936515274693,-14.975051171104134],[29.460315846127564,-14.96319985657788],[29.4872154834809,-14.913819379385162],[29.498910977982348,-14.871352168999422],[29.502419626332784,-14.848637149490772],[29.508267373583507,-14.835798225420664],[29.52230196698525,-14.816046034543577],[29.530488813136266,-14.811107986824304],[29.537506109837135,-14.808145158192742],[29.543353857087858,-14.81012037728045],[29.57610124169192,-14.809132767736596],[29.581948988942646,-14.806169939105033],[29.590135835093662,-14.799256672298052],[29.64861330760091,-14.766665557350859],[29.656800153751927,-14.759752290543876],[29.663817450452797,-14.75382663328075],[29.668495648253376,-14.749876195105333],[29.748025010863238,-14.719260299245846],[29.753872758113964,-14.719260299245846],[29.774924648216572,-14.721235518333556],[29.7807723954673,-14.719260299245846],[29.78545059326788,-14.716297470614283],[29.805332933920344,-14.700495717912613],[29.812350230621213,-14.696545279737196],[29.819367527322083,-14.696545279737196],[29.83574121962411,-14.700495717912613],[29.843928065775128,-14.701483327456469],[29.85328446137629,-14.701483327456469],[29.868488604228173,-14.699508108368759],[29.87667545037919,-14.69753288928105],[29.883692747080058,-14.693582451105632],[29.886031845980348,-14.69061962247407],[29.889540494330785,-14.685681574754797],[29.891879593231074,-14.680743527035526],[29.898896889931944,-14.661978945702293],[29.90474463718267,-14.654078069351456],[29.90942283498325,-14.653090459807602],[29.912931483333683,-14.656053288439166],[29.91644013168412,-14.660003726614583],[29.92345742838499,-14.662966555246147],[29.931644274536005,-14.65901611707073],[29.94217021958731,-14.658028507526875],[29.95152661518847,-14.652102850263748],[29.95854391188934,-14.65012763117604],[29.964391659140063,-14.649140021632185],[29.971408955840936,-14.649140021632185],[29.977256703091662,-14.65012763117604],[29.980765351442095,-14.653090459807602],[29.9912912964934,-14.662966555246147],[30.00064769209456,-14.667904602965418],[30.050938318450797,-14.670867431596982]]]},"properties":{"name":"Lusaka"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.590206275345686,-12.243323172802896],[27.586697626995253,-12.24628600143446],[27.543424297339886,-12.274926678206235],[27.539915648989453,-12.276901897293945],[27.524711506137567,-12.281839945013216],[27.510676912735825,-12.30060452634645],[27.507168264385392,-12.298629307258741],[27.495472769883943,-12.293691259539468],[27.46740358308046,-12.288753211820197],[27.46389493473003,-12.28282755455707],[27.466234033630315,-12.27591428775009],[27.466234033630315,-12.269988630486964],[27.452199440228576,-12.260112535048421],[27.43699529737669,-12.25122404915373],[27.42763890177553,-12.24431078234675],[27.41360430837379,-12.248261220522167],[27.408926110573212,-12.249248830066023],[27.400739264422196,-12.255174487329148],[27.38553512157031,-12.268013411399256],[27.37851782486944,-12.273939068662381],[27.37383962706886,-12.27591428775009],[27.363313682017555,-12.278877116381654],[27.358635484216975,-12.281839945013216],[27.35278773696625,-12.285790383188633],[27.339922693014657,-12.302579745434159],[27.32471855016277,-12.30949301224114],[27.32004035236219,-12.312455840872701],[27.307175308410596,-12.319369107679684],[27.30132756115987,-12.324307155398955],[27.28963206665842,-12.33912129855677],[27.282614769957547,-12.343071736732188],[27.276767022706824,-12.346034565363752],[27.150455682091163,-12.333195641293646],[27.13876018758971,-12.335170860381353],[27.120047396387392,-12.338133689012917],[27.110691000786233,-12.33912129855677],[27.08262181398275,-12.338133689012917],[27.060400374429996,-12.333195641293646],[27.055722176629416,-12.33220803174979],[27.051043978828837,-12.334183250837498],[27.052213528278983,-12.34109651764448],[27.053383077729126,-12.347022174907606],[27.065078572230576,-12.38158850894251],[27.066248121680722,-12.387514166205637],[27.066248121680722,-12.41813006206512],[27.061569923880143,-12.428006157503667],[27.059230824979853,-12.433931814766792],[27.055722176629416,-12.440845081573773],[27.05455262717927,-12.448745957924608],[27.05455262717927,-12.46257249153857],[27.055722176629416,-12.470473367889404],[27.058061275529706,-12.477386634696385],[27.06741767113087,-12.500101654205036],[27.06741767113087,-12.501089263748892],[27.074434967831735,-12.508990140099726],[27.07677406673203,-12.51195296873129],[27.07677406673203,-12.515903406906705],[27.07209586893145,-12.519853845082125],[27.066248121680722,-12.521829064169832],[27.02648344037579,-12.528742330976813],[27.017127044774632,-12.53269276915223],[27.008940198623616,-12.537630816871502],[26.973853715119265,-12.581085636801095],[26.963327770067963,-12.599850218134328],[26.9539713744668,-12.611701532660582],[26.94695407776593,-12.61762718992371],[26.938767231614914,-12.623552847186835],[26.928241286563612,-12.627503285362252],[26.923563088763032,-12.628490894906108],[26.906019847010853,-12.630466113993815],[26.90017209976013,-12.63145372353767],[26.89549390195955,-12.632441333081523],[26.886137506358388,-12.637379380800796],[26.87912020965752,-12.644292647607777],[26.870933363506506,-12.657131571677883],[26.86742471515607,-12.66305722894101],[26.86508561625578,-12.669970495747991],[26.85572922065462,-12.713425315677583],[26.852220572304184,-12.72132619202842],[26.845203275603314,-12.732189897010818],[26.845203275603314,-12.739103163817799],[26.847542374503604,-12.747991649712487],[26.852220572304184,-12.75292969743176],[26.85572922065462,-12.756880135607176],[26.8604074184552,-12.75984296423874],[26.863916066805636,-12.764781011958013],[26.86742471515607,-12.770706669221138],[26.86976381405636,-12.779595155115828],[26.87444201185694,-12.7845332028351],[26.87912020965752,-12.788483641010519],[26.8837984074581,-12.790458860098227],[26.90251119866042,-12.810211050975315],[26.90485029756071,-12.814161489150731],[26.907189396461,-12.820087146413858],[26.906019847010853,-12.826012803676985],[26.90251119866042,-12.834901289571674],[26.899002550309984,-12.840826946834799],[26.889646154708824,-12.862554356799595],[26.880289759107665,-12.875393280869703],[26.87912020965752,-12.88131893813283],[26.880289759107665,-12.886256985852102],[26.882628858007955,-12.892182643115229],[26.887307055808535,-12.896133081290646],[26.891985253609114,-12.89909590992221],[26.90251119866042,-12.90403395764148],[26.91186759426158,-12.909959614904608],[26.915376242612016,-12.912922443536171],[26.922393539312885,-12.920823319887006],[26.92590218766332,-12.92378614851857],[26.930580385463898,-12.926748977150133],[26.957480022817236,-12.937612682132531],[26.962158220617816,-12.93958790122024],[26.97034506676883,-12.945513558483366],[26.975023264569412,-12.94847638711493],[26.980871011820135,-12.950451606202638],[26.99841425357231,-12.951439215746491],[27.0007533524726,-12.951439215746491],[27.00543155027318,-12.953414434834201],[27.01010974807376,-12.955389653921909],[27.013618396424196,-12.959340092097326],[27.015957495324486,-12.963290530272744],[27.019466143674922,-12.972179016167434],[27.022974792025355,-12.976129454342852],[27.02765298982594,-12.977117063886705],[27.03116163817637,-12.980079892518269],[27.034670286526804,-12.98501794023754],[27.03817893487724,-12.992918816588375],[27.044026682127967,-12.996869254763794],[27.04987442937869,-12.998844473851502],[27.07209586893145,-12.994894035676085],[27.079113165632318,-12.994894035676085],[27.08496091288304,-12.995881645219939],[27.08963911068362,-12.997856864307648],[27.0943173084842,-12.999832083395358],[27.0943173084842,-13.00081969293921],[27.06741767113087,-13.11538240002632],[27.065078572230576,-13.1222956668333],[27.061569923880143,-13.130196543184136],[27.05455262717927,-13.141060248166534],[27.04519623157811,-13.151923953148932],[27.037009385427098,-13.157849610412057],[26.98204056127028,-13.191428334903108],[26.973853715119265,-13.198341601710089],[26.97034506676883,-13.202292039885506],[26.968005967868542,-13.206242478060924],[26.96566686896825,-13.211180525780197],[26.963327770067963,-13.218093792587176],[26.96098867116767,-13.22796988802572],[26.96098867116767,-13.244759250271244],[26.963327770067963,-13.25266012662208],[26.964497319518106,-13.259573393429061],[26.976192814019555,-13.282288412937712],[26.978531912919845,-13.292164508376256],[26.980871011820135,-13.309941480165634],[26.980871011820135,-13.31586713742876],[26.9773623634697,-13.324755623323451],[26.973853715119265,-13.334631718761994],[26.963327770067963,-13.352408690551373],[26.957480022817236,-13.361297176446062],[26.95163227556651,-13.366235224165335],[26.929410836013755,-13.377098929147733],[26.924732638213175,-13.38104936732315],[26.922393539312885,-13.384012195954714],[26.910698044811436,-13.410677653638782],[26.906019847010853,-13.416603310901909],[26.901341649210273,-13.420553749077326],[26.891985253609114,-13.425491796796598],[26.87210291295665,-13.432405063603579],[26.86274651735549,-13.436355501778996],[26.859237869005057,-13.43931833041056],[26.85572922065462,-13.445243987673685],[26.852220572304184,-13.453144864024521],[26.841694627252878,-13.501537731673386],[26.838185978902445,-13.508450998480367],[26.835846880002155,-13.513389046199638],[26.83233823165172,-13.517339484375057],[26.812455890999253,-13.532153627532871],[26.80894724264882,-13.53610406570829],[26.80426904484824,-13.544992551602979],[26.797251748147367,-13.562769523392358],[26.793743099796934,-13.578571276094028],[26.789064901996355,-13.643753505988418],[26.790234451446498,-13.654617210970816],[26.794912649247077,-13.667456135040922],[26.79959084704766,-13.676344620935613],[26.803099495398094,-13.68227027819874],[26.81830363824998,-13.695109202268846],[26.852220572304184,-13.716836612233642],[26.8604074184552,-13.720787050409061],[26.868594264606216,-13.725725098128333],[26.875611561307085,-13.733625974479168],[26.881459308557808,-13.741526850830002],[26.887307055808535,-13.749427727180837],[26.89081570415897,-13.759303822619382],[26.894324352509404,-13.774117965777197],[26.896663451409694,-13.779056013496469],[26.90017209976013,-13.783006451671888],[26.906019847010853,-13.789919718478867],[26.910698044811436,-13.793870156654286],[26.91888489096245,-13.798808204373557],[26.94929317666622,-13.813622347531373],[26.952801825016657,-13.816585176162935],[26.955140923916947,-13.821523223882208],[26.9539713744668,-13.827448881145333],[26.952801825016657,-13.83337453840846],[26.95163227556651,-13.839300195671587],[26.941106330515204,-13.859052386548674],[26.920054440412596,-13.888680672864307],[26.91186759426158,-13.910408082829104],[26.908358945911147,-13.937073540513172],[26.907189396461,-13.961763779109532],[26.90952849536129,-14.000280551319852],[26.908358945911147,-14.005218599039125],[26.907189396461,-14.00916903721454],[26.90251119866042,-14.015094694477668],[26.89315480305926,-14.019045132653085],[26.873272462406796,-14.025958399460066],[26.86274651735549,-14.029908837635483],[26.85806831955491,-14.03780971398632],[26.859237869005057,-14.041760152161736],[26.863916066805636,-14.045710590337155],[26.901341649210273,-14.066450390758096],[26.913037143711726,-14.07632648619664],[26.962158220617816,-14.137558277915613],[26.97034506676883,-14.150397201985719],[26.978531912919845,-14.169161783318952],[26.980871011820135,-14.18002548830135],[26.98204056127028,-14.191876802827604],[26.98204056127028,-14.19780246009073],[26.980871011820135,-14.203728117353856],[26.978531912919845,-14.209653774616982],[26.976192814019555,-14.214591822336255],[26.95864957226738,-14.239282060932613],[26.952801825016657,-14.248170546827303],[26.952801825016657,-14.253108594546575],[26.952801825016657,-14.258046642265848],[26.9539713744668,-14.26298468998512],[26.95631047336709,-14.373596958896812],[26.94929317666622,-14.390386321142335],[26.94461497886564,-14.395324368861608],[26.928241286563612,-14.410138512019422],[26.80426904484824,-14.415076559738695],[26.790234451446498,-14.420014607457967],[26.75514796794215,-14.443717236510473],[26.73643517673983,-14.448655284229744],[26.65339716577953,-14.442729626966617],[26.642871220728228,-14.444704846054327],[26.638193022927645,-14.449642893773598],[26.634684374577212,-14.454580941492871],[26.628836627326486,-14.456556160580579],[26.617141132825036,-14.454580941492871],[26.598428341622714,-14.44569245559818],[26.587902396571412,-14.442729626966617],[26.571528704269383,-14.444704846054327],[26.55515501196735,-14.450630503317452],[26.542289968015755,-14.460506598755996],[26.53410312186474,-14.47038269419454],[26.491999341659522,-14.531614485913513],[26.42884367135169,-14.580007353562378],[26.387909440596616,-14.627412611667388],[26.376213946095163,-14.648152412088331],[26.37036619884444,-14.699508108368759],[26.33527971534009,-14.714322251526575],[26.324753770288783,-14.716297470614283],[26.314227825237477,-14.713334641982721],[26.307210528536608,-14.705433765631884],[26.30136278128588,-14.696545279737196],[26.294345484585012,-14.68864440338636],[26.2499026054795,-14.667904602965418],[26.224172517576314,-14.66395416479],[26.208968374724428,-14.660003726614583],[26.198442429673122,-14.654078069351456],[26.190255583522106,-14.645189583456768],[26.183238286821236,-14.631363049842806],[26.179729638470803,-14.627412611667388],[26.173881891220077,-14.621486954404261],[25.620685001301485,-14.555317114966018],[25.60314175954931,-14.556304724509873],[25.585598517797134,-14.559267553141435],[25.57273347384554,-14.570131258123833],[25.548172935392493,-14.58494540128165],[25.522442847489305,-14.583957791737795],[25.510747352987856,-14.587908229913213],[25.506069155187273,-14.590871058544776],[25.482678166184375,-14.601734763527174],[25.4651349244322,-14.603709982614884],[25.45110033103046,-14.603709982614884],[25.441743935429297,-14.602722373071028],[25.435896188178575,-14.60074715398332],[25.431217990377995,-14.597784325351757],[25.42653979257741,-14.594821496720193],[25.42303114422698,-14.59185866808863],[25.412505199175673,-14.586920620369359],[25.393792407973354,-14.582970182193941],[25.328297638765232,-14.577044524930814],[25.315432594813636,-14.577044524930814],[25.309584847562913,-14.579019744018524],[25.292041605810738,-14.587908229913213],[25.281515660759432,-14.59185866808863],[25.238242331104065,-14.60074715398332],[25.223038188252183,-14.605685201702592],[25.21368179265102,-14.60963563987801],[25.210173144300587,-14.612598468509573],[25.19029080364812,-14.619511735316554],[25.151695671793334,-14.628400221211244],[25.142339276192175,-14.629387830755098],[25.094387748736228,-14.626425002123534],[25.08503135313507,-14.626425002123534],[25.07567495753391,-14.628400221211244],[25.056962166331587,-14.63432587847437],[25.047605770730428,-14.635313488018223],[25.04058847402956,-14.636301097562079],[25.03357117732869,-14.63432587847437],[25.025384331177673,-14.63235065938666],[25.01719748502666,-14.628400221211244],[25.010180188325787,-14.623462173491971],[25.001993342174774,-14.617536516228846],[24.980941452072162,-14.59383388717634],[24.969245957570713,-14.578032134474668],[24.966906858670423,-14.574081696299253],[24.963398210319987,-14.564205600860708],[24.962228660869844,-14.559267553141435],[24.961059111419697,-14.55334189587831],[24.965737309220277,-14.520750780931115],[24.965737309220277,-14.515812733211842],[24.963398210319987,-14.493097713703191],[24.963398210319987,-14.483221618264647],[24.964567759770134,-14.480258789633085],[24.966906858670423,-14.475320741913812],[24.968076408120567,-14.473345522826104],[24.969245957570713,-14.471370303738395],[24.972754605921146,-14.469395084650687],[24.978602353171873,-14.466432256019123],[25.000823792724628,-14.458531379668289],[25.02655388062782,-14.446680065142036],[25.030062528978252,-14.443717236510473],[25.03824937512927,-14.437791579247346],[25.048775320180575,-14.426927874264948],[25.051114419080864,-14.421989826545676],[25.052283968531007,-14.41606416928255],[25.0546230674313,-14.372609349352956],[25.05930126523188,-14.349894329844306],[25.060470814682024,-14.347919110756596],[25.06164036413217,-14.343968672581179],[25.062809913582313,-14.339030624861907],[25.06631856193275,-14.33508018668649],[25.072166309183473,-14.327179310335655],[25.08035315533449,-14.313352776721693],[25.083861803684925,-14.302489071739295],[25.08737045203536,-14.290637757213043],[25.088540001485505,-14.283724490406062],[25.088540001485505,-14.248170546827303],[25.086200902585215,-14.240269670476469],[25.081522704784636,-14.232368794125634],[25.07099675973333,-14.219529870055526],[25.06397946303246,-14.214591822336255],[25.056962166331587,-14.212616603248545],[25.018367034476803,-14.219529870055526],[25.007841089425497,-14.217554650967818],[24.99029784767332,-14.211628993704691],[24.878021100459403,-14.156322859248846],[24.871003803758533,-14.154347640161136],[24.84761281475563,-14.150397201985719],[24.825391375202877,-14.144471544722592],[24.80550903455041,-14.14150871609103],[24.75404885874403,-14.124719353845505],[24.745862012593015,-14.120768915670087],[24.74001426534229,-14.115830867950816],[24.73533606754171,-14.106942382056125],[24.73299696864142,-14.102004334336854],[24.72831877084084,-14.093115848442164],[24.727149221390697,-14.088177800722892],[24.72597967194055,-14.083239753003621],[24.724810122490403,-14.077314095740494],[24.72597967194055,-14.05163624760028],[24.72597967194055,-14.046698199881007],[24.717792825789534,-14.027933618547774],[24.715453726889244,-14.017069913565376],[24.713114627988954,-14.01311947538996],[24.710775529088664,-14.008181427670687],[24.704927781837938,-14.002255770407562],[24.69323228733649,-13.991392065425163],[24.66984129833359,-13.964726607741094],[24.66516310053301,-13.959788560021822],[24.661654452182574,-13.958800950477968],[24.658145803832138,-13.958800950477968],[24.649958957681125,-13.96373899819724],[24.645280759880546,-13.966701826828803],[24.640602562079962,-13.967689436372657],[24.635924364279383,-13.969664655460367],[24.63241571592895,-13.973615093635782],[24.63007661702866,-13.978553141355055],[24.628907067578513,-13.98447879861818],[24.628907067578513,-13.995342503600579],[24.626567968678224,-13.998305332232142],[24.62539841922808,-13.999292941775998],[24.619550671977354,-14.000280551319852],[24.617211573077064,-13.999292941775998],[24.616042023626918,-13.998305332232142],[24.614872474176774,-13.995342503600579],[24.614872474176774,-13.990404455881308],[24.617211573077064,-13.971639874548075],[24.616042023626918,-13.965714217284948],[24.612533375276485,-13.964726607741094],[24.607855177475905,-13.964726607741094],[24.598498781874746,-13.961763779109532],[24.593820584074162,-13.960776169565676],[24.591481485173873,-13.96373899819724],[24.59031193572373,-13.967689436372657],[24.59265103462402,-13.977565531811202],[24.59265103462402,-13.982503579530473],[24.59031193572373,-13.98645401770589],[24.586803287373293,-13.9884292367936],[24.582125089572713,-13.987441627249744],[24.571599144521407,-13.983491189074329],[24.565751397270684,-13.982503579530473],[24.554055902769232,-13.982503579530473],[24.5505472544188,-13.978553141355055],[24.54820815551851,-13.973615093635782],[24.540021309367493,-13.96373899819724],[24.528325814866044,-13.956825731390259],[24.520138968715028,-13.951887683670986],[24.515460770914448,-13.946949635951714],[24.510782573113868,-13.941023978688587],[24.488561133561113,-13.918308959179939],[24.485052485210677,-13.919296568723793],[24.481543836860244,-13.922259397355354],[24.479204737959954,-13.927197445074627],[24.474526540159374,-13.93016027370619],[24.46517014455821,-13.9321354927939],[24.464000595108068,-13.935098321425462],[24.466339694008358,-13.93904875960088],[24.468678792908648,-13.942011588232443],[24.47218744125908,-13.94596202640786],[24.473356990709227,-13.949912464583278],[24.471017891808938,-13.952875293214841],[24.466339694008358,-13.953862902758697],[24.46049194675763,-13.95485051230255],[24.446457353355893,-13.953862902758697],[24.439440056655023,-13.951887683670986],[24.433592309404297,-13.952875293214841],[24.430083661053864,-13.955838121846405],[24.426575012703427,-13.959788560021822],[24.42306636435299,-13.962751388653384],[24.41604906765212,-13.96373899819724],[24.412540419301685,-13.960776169565676],[24.409031770951252,-13.955838121846405],[24.406692672050962,-13.950900074127134],[24.404353573150672,-13.94596202640786],[24.400844924800236,-13.946949635951714],[24.398505825899946,-13.949912464583278],[24.394997177549513,-13.953862902758697],[24.391488529199076,-13.956825731390259],[24.386810331398497,-13.957813340934113],[24.38096258414777,-13.957813340934113],[24.34353700174313,-13.946949635951714],[24.335350155592117,-13.942011588232443],[24.32950240834139,-13.937073540513172],[24.328332858891244,-13.925222225986918],[24.328332858891244,-13.919296568723793],[24.325993759990958,-13.912383301916812],[24.32248511164052,-13.90547003510983],[24.311959166589215,-13.895593939671286],[24.304941869888346,-13.892631111039723],[24.30143322153791,-13.892631111039723],[24.300263672087766,-13.896581549215142],[24.29909412263762,-13.901519596934413],[24.29675502373733,-13.90547003510983],[24.293246375386897,-13.909420473285248],[24.290907276486607,-13.912383301916812],[24.290907276486607,-13.917321349636083],[24.293246375386897,-13.921271787811502],[24.29909412263762,-13.926209835530774],[24.30143322153791,-13.93016027370619],[24.302602770988056,-13.935098321425462],[24.300263672087766,-13.938061150057026],[24.29441592483704,-13.940036369144735],[24.286229078686027,-13.93904875960088],[24.274533584184574,-13.937073540513172],[24.267516287483705,-13.933123102337753],[24.24763394683124,-13.920284178267647],[24.232429803979354,-13.906457644653685],[24.227751606178774,-13.90547003510983],[24.22190385892805,-13.90547003510983],[24.209038814976456,-13.913370911460666],[24.19851286992515,-13.91633374009223],[24.19383467212457,-13.918308959179939],[24.187986924873844,-13.926209835530774],[24.183308727073264,-13.928185054618481],[24.177460979822538,-13.929172664162337],[24.16810458422138,-13.928185054618481],[24.162256836970656,-13.928185054618481],[24.15640908971993,-13.93016027370619],[24.152900441369493,-13.933123102337753],[24.148222243568913,-13.942999197776299],[24.14471359521848,-13.946949635951714],[24.141204946868044,-13.949912464583278],[24.131848551266884,-13.953862902758697],[24.127170353466305,-13.955838121846405],[24.12015305676543,-13.956825731390259],[24.11196621061442,-13.955838121846405],[24.10494891391355,-13.952875293214841],[24.09793161721268,-13.946949635951714],[24.092083869961954,-13.944974416864007],[24.087405672161374,-13.94596202640786],[24.083897023810938,-13.949912464583278],[24.081557924910648,-13.953862902758697],[24.079218826010358,-13.959788560021822],[24.076879727110068,-13.965714217284948],[24.07454062820978,-13.971639874548075],[24.07103197985934,-13.976577922267346],[24.06518423260862,-13.978553141355055],[24.060506034808036,-13.976577922267346],[24.052319188657023,-13.967689436372657],[24.047640990856443,-13.966701826828803],[24.044132342506007,-13.967689436372657],[24.034775946904848,-13.97954075089891],[24.02425000185354,-13.989416846337454],[24.016063155702525,-13.995342503600579],[24.011384957901946,-13.997317722688289],[24.002028562300787,-14.000280551319852],[23.992672166699627,-14.001268160863706],[23.97980712274803,-14.000280551319852],[23.970450727146872,-13.996330113144435],[23.955246584294986,-13.989416846337454],[23.948229287594117,-13.987441627249744],[23.941211990893247,-13.987441627249744],[23.93302514474223,-13.993367284512871],[23.92834694694165,-13.995342503600579],[23.922499199690925,-13.996330113144435],[23.918990551340492,-13.997317722688289],[23.914312353539913,-14.000280551319852],[23.910803705189476,-14.000280551319852],[23.903786408488607,-13.999292941775998],[23.89559956233759,-13.998305332232142],[23.874547672234982,-13.990404455881308],[23.85583488103266,-13.990404455881308],[23.840630738180774,-13.98645401770589],[23.833613441479905,-13.975590312723492],[23.833613441479905,-13.955838121846405],[23.8230874964286,-13.961763779109532],[23.7996965074257,-13.983491189074329],[23.788001012924248,-13.987441627249744],[23.777475067872945,-13.989416846337454],[23.765779573371493,-13.992379674969017],[23.733032188767435,-14.012131865846104],[23.71548894701526,-14.007193818126833],[23.699115254713227,-13.996330113144435],[23.68391111186134,-13.990404455881308],[23.667537419559313,-13.994354894056727],[23.632450936054962,-14.01311947538996],[23.59268625475003,-14.022995570828503],[23.556430221795537,-14.04966102851257],[23.54005652949351,-14.059537123951117],[23.437136177880745,-14.085214972091329],[23.409066991077264,-14.100029115249146],[23.37748915592335,-14.126694572933214],[23.36813276032219,-14.133607839740193],[23.355267716370594,-14.137558277915613],[23.34474177131929,-14.137558277915613],[23.33538537571813,-14.134595449284049],[23.32368988121668,-14.133607839740193],[23.306146639464504,-14.138545887459466],[23.280416551561313,-14.160273297424263],[23.264042859259284,-14.168174173775098],[23.223108628504207,-14.168174173775098],[23.227786826304786,-14.15928568788041],[23.227786826304786,-14.152372421073428],[23.226617276854643,-14.147434373354155],[23.223108628504207,-14.140521106547176],[23.182174397749133,-14.15533524970499],[23.186852595549713,-14.134595449284049],[23.209074035102468,-14.101016724793],[23.221939079054064,-14.086202581635185],[23.225447727404497,-14.081264533915911],[23.226617276854643,-14.07632648619664],[23.223108628504207,-14.073363657565077],[23.217260881253484,-14.072376048021223],[23.140070617543913,-14.064475171670388],[23.130714221942753,-14.061512343038824],[23.124866474692027,-14.058549514407261],[23.11667962854101,-14.052623857144134],[23.110831881290288,-14.0447229807933],[23.108492782389998,-14.040772542617882],[23.10615368348971,-14.03583449489861],[23.102645035139272,-14.024970789916212],[23.102645035139272,-14.01311947538996],[23.102645035139272,-14.001268160863706],[23.102645035139272,-13.998305332232142],[23.100305936238982,-13.992379674969017],[23.094458188988256,-13.987441627249744],[23.082762694486807,-13.980528360442765],[23.073406298885647,-13.977565531811202],[23.06521945273463,-13.977565531811202],[23.059371705483905,-13.977565531811202],[23.054693507683325,-13.97954075089891],[23.028963419780137,-13.990404455881308],[23.01142017802796,-13.994354894056727],[23.005572430777235,-13.994354894056727],[23.000894232976655,-13.992379674969017],[22.998555134076366,-13.991392065425163],[22.99504648572593,-13.987441627249744],[22.993876936275786,-13.983491189074329],[22.99036828792535,-13.97262748409193],[22.984520540674627,-13.957813340934113],[22.9786727934239,-13.949912464583278],[22.96463820002216,-13.935098321425462],[22.876921991261284,-13.879792186969617],[22.85236145280824,-13.869916091531072],[22.844174606657223,-13.868928481987219],[22.8383268594065,-13.869916091531072],[22.834818211056064,-13.872878920162636],[22.809088123152872,-13.896581549215142],[22.80557947480244,-13.899544377846706],[22.799731727551713,-13.901519596934413],[22.752949749545913,-13.903494816022121],[22.748271551745333,-13.90547003510983],[22.744762903394896,-13.908432863741394],[22.742423804494607,-13.913370911460666],[22.730728309993157,-13.971639874548075],[22.728389211092868,-13.977565531811202],[22.721371914391998,-13.9884292367936],[22.710845969340692,-13.990404455881308],[22.697980925389096,-13.987441627249744],[22.688624529787937,-13.982503579530473],[22.679268134186778,-13.976577922267346],[22.66874218913547,-13.969664655460367],[22.644181650682427,-13.965714217284948],[22.632486156180978,-13.960776169565676],[22.62663840893025,-13.952875293214841],[22.625468859480108,-13.944974416864007],[22.620790661679525,-13.937073540513172],[22.614942914428802,-13.93016027370619],[22.610264716628222,-13.927197445074627],[22.592721474876047,-13.92324700689921],[22.58453462872503,-13.915346130548375],[22.565821837522712,-13.913370911460666],[22.555295892471406,-13.913370911460666],[22.54710904632039,-13.911395692372956],[22.541261299069667,-13.909420473285248],[22.51670076061662,-13.893618720583579],[22.513192112266186,-13.88966828240816],[22.503835716665026,-13.870903701074926],[22.501496617764737,-13.867940872443363],[22.499157518864443,-13.865965653355655],[22.431323650756035,-13.825473662057625],[22.285129969487908,-13.705972907251244],[22.274604024436602,-13.699059640444265],[22.251213035433704,-13.686220716374157],[22.240687090382398,-13.683257887742593],[22.23250024423138,-13.681282668654884],[22.226652496980655,-13.68227027819874],[22.221974299180076,-13.683257887742593],[22.217296101379496,-13.686220716374157],[22.213787453029063,-13.689183545005719],[22.203261507977757,-13.7069605167951],[22.200922409077467,-13.710910954970515],[22.196244211276888,-13.713873783602079],[22.183379167325292,-13.721774659952914],[22.178700969524712,-13.724737488584477],[22.176361870624422,-13.729675536303748],[22.171683672823843,-13.738564022198439],[22.168175024473406,-13.742514460373856],[22.16466637612297,-13.74547728900542],[22.135427639869345,-13.758316213075528],[22.128410343168476,-13.760291432163235],[22.119053947567316,-13.761279041707091],[22.102680255265284,-13.762266651250943],[22.093323859664125,-13.760291432163235],[22.085137013513112,-13.758316213075528],[22.081628365162675,-13.756340993987818],[22.065254672860647,-13.744489679461566],[22.040694134407598,-13.719799440865206],[22.02899863990615,-13.711898564514371],[21.998590354202378,-13.69807203090041],[21.97987756300006,-13.695109202268846],[21.97987756300006,-13.604249124234244],[21.97987756300006,-13.453144864024521],[21.97987756300006,-13.303028213358655],[21.97987756300006,-13.151923953148932],[21.97987756300006,-13.001807302483066],[22.10384980471543,-13.001807302483066],[22.228991595880945,-13.001807302483066],[22.352963837596317,-13.001807302483066],[22.476936079311688,-13.001807302483066],[22.60090832102706,-13.001807302483066],[22.72488056274243,-13.001807302483066],[22.85002235390795,-13.001807302483066],[22.97399459562332,-13.001807302483066],[23.097966837338692,-13.001807302483066],[23.223108628504207,-13.001807302483066],[23.34708087021958,-13.001807302483066],[23.47105311193495,-13.001807302483066],[23.59502535365032,-13.001807302483066],[23.72016714481584,-13.001807302483066],[23.84413938653121,-13.001807302483066],[23.968111628246582,-13.001807302483066],[24.000859012850643,-13.001807302483066],[23.98916351834919,-12.965265749360453],[23.971620276597015,-12.933662243957112],[23.94939883704426,-12.905021567185337],[23.89559956233759,-12.84971543272949],[23.874547672234982,-12.822062365501566],[23.86519127663382,-12.78947125055437],[23.87220857333469,-12.749966868800197],[23.892090913987154,-12.705524439326748],[23.910803705189476,-12.63145372353767],[23.92834694694165,-12.561333445924008],[23.941211990893247,-12.53269276915223],[23.985654869998758,-12.467510539257841],[24.019571804052962,-12.419117671608976],[24.027758650203978,-12.402328309363451],[24.03126729855441,-12.385538947117926],[24.02074135350311,-12.340108908100625],[24.017232705152672,-12.278877116381654],[24.006706760101366,-12.254186877785294],[23.980976672198178,-12.227521420101226],[23.959924782095566,-12.196905524241739],[23.954077034844843,-12.151475485224438],[23.961094331545713,-12.011234929997114],[23.966942078796436,-11.882845689296044],[23.987993968899048,-11.83445282164718],[23.990333067799337,-11.824576726208633],[23.985654869998758,-11.799886487612275],[23.980976672198178,-11.72482816227934],[23.972789826047162,-11.70013792368298],[23.962263880995856,-11.681373342349747],[23.954077034844843,-11.662608761016514],[23.954077034844843,-11.6369309128763],[23.959924782095566,-11.617178721999213],[23.97746802384774,-11.577674340245037],[24.005537210651223,-11.535207129859298],[24.010215408451803,-11.523355815333046],[24.010215408451803,-11.507554062631375],[24.006706760101366,-11.482863824035016],[24.007876309551513,-11.470024899964908],[24.010215408451803,-11.45916119498251],[24.02074135350311,-11.444347051824696],[24.052319188657023,-11.42064442277219],[24.061675584258182,-11.406817889158228],[24.061675584258182,-11.394966574631976],[24.017232705152672,-11.298180839334245],[24.011384957901946,-11.272502991194031],[24.014893606252382,-11.130287216879],[23.99618081505006,-11.127324388247438],[23.990333067799337,-11.113497854633476],[23.995011265599917,-11.074981082423154],[23.993841716149774,-11.019674947967308],[23.997350364500207,-11.00189797617793],[24.003198111750933,-10.98214578530084],[23.999689463400497,-10.967331642143026],[23.980976672198178,-10.938690965371247],[23.97395937549731,-10.92091399358187],[23.966942078796436,-10.872521125933005],[24.002028562300787,-10.873508735476857],[24.048810540306587,-10.882397221371548],[24.090914320511807,-10.898198974073217],[24.11430530951471,-10.91893877449416],[24.11430530951471,-10.927827260388849],[24.108457562263983,-10.94560423217823],[24.108457562263983,-10.955480327616772],[24.110796661164272,-10.96634403259917],[24.117813957865142,-10.98609622347626],[24.11898350731529,-10.997947538002512],[24.117813957865142,-11.030538652949705],[24.123661705115868,-11.043377577019815],[24.14471359521848,-11.040414748388251],[24.164595935870942,-11.033501481581268],[24.180969628172974,-11.034489091125124],[24.218395210577615,-11.045352796107522],[24.23827755123008,-11.048315624739086],[24.27570313363472,-11.048315624739086],[24.29441592483704,-11.050290843826794],[24.316637364389795,-11.060166939265338],[24.34587610064342,-11.077943911054717],[24.370436639096468,-11.100658930563368],[24.382132133597917,-11.120411121440455],[24.37862348524748,-11.132262435966709],[24.370436639096468,-11.141150921861398],[24.362249792945452,-11.150039407756086],[24.362249792945452,-11.164853550913904],[24.36692799074603,-11.176704865440156],[24.384471232498207,-11.191519008597972],[24.391488529199076,-11.199419884948806],[24.396166726999656,-11.217196856738186],[24.397336276449803,-11.237936657159128],[24.396166726999656,-11.259664067123925],[24.39265807864922,-11.279416258001012],[24.384471232498207,-11.295218010702683],[24.352893397344292,-11.344598487895402],[24.340028353392697,-11.358425021509364],[24.297924573187476,-11.370276336035616],[24.28505952923588,-11.381140041018014],[24.29441592483704,-11.398917012807393],[24.309620067688925,-11.406817889158228],[24.351723847894146,-11.406817889158228],[24.370436639096468,-11.409780717789792],[24.39265807864922,-11.423607251403752],[24.426575012703427,-11.454223147263239],[24.446457353355893,-11.46311163315793],[24.46984834235879,-11.465086852245637],[24.490900232461403,-11.46113641407022],[24.533004012666623,-11.446322270912404],[24.542360408267783,-11.445334661368548],[24.554055902769232,-11.446322270912404],[24.564581847820538,-11.444347051824696],[24.571599144521407,-11.43644617547386],[24.573938243421697,-11.425582470491461],[24.57861644122228,-11.415706375052917],[24.584464188473003,-11.407805498702082],[24.593820584074162,-11.399904622351247],[24.60200743022518,-11.39595418417583],[24.624228869777934,-11.391016136456557],[24.63475481482924,-11.386078088737285],[24.645280759880546,-11.376201993298743],[24.66282400163272,-11.351511754702383],[24.67451949613417,-11.341635659263838],[24.71194507853881,-11.325833906562169],[24.787965792798236,-11.325833906562169],[24.826560924653023,-11.317933030211332],[24.9014120894623,-11.281391477088722],[24.94234632021738,-11.268552553018614],[24.980941452072162,-11.271515381650177],[25.12479603444,-11.25867645758007],[25.184443056397395,-11.246825143053817],[25.279176561859142,-11.200407494492662],[25.310754397013056,-11.194481837229535],[25.322449891514506,-11.205345542211933],[25.324788990414795,-11.228060561720584],[25.323619440964652,-11.253738409860798],[25.325958539864942,-11.273490600737887],[25.324788990414795,-11.28336669617643],[25.316602144263783,-11.29027996298341],[25.296719803611317,-11.298180839334245],[25.285024309109865,-11.307069325228934],[25.289702506910448,-11.315957811123624],[25.301398001411897,-11.324846297018315],[25.306076199212477,-11.33274717336915],[25.29788935306146,-11.351511754702383],[25.28619385856001,-11.360400240597073],[25.278007012408995,-11.372251555123324],[25.279176561859142,-11.39595418417583],[25.28619385856001,-11.416693984596773],[25.309584847562913,-11.455210756807094],[25.316602144263783,-11.472987728596472],[25.315432594813636,-11.482863824035016],[25.301398001411897,-11.498665576736688],[25.29788935306146,-11.507554062631375],[25.29788935306146,-11.51743015806992],[25.30022845196175,-11.535207129859298],[25.32712808931509,-11.616191112455358],[25.336484484916248,-11.633968084244739],[25.34467133106726,-11.641868960595573],[25.351688627768134,-11.645819398770989],[25.359875473919146,-11.646807008314845],[25.372740517870742,-11.646807008314845],[25.386775111272485,-11.649769836946408],[25.392622858523207,-11.656683103753387],[25.397301056323787,-11.664583980104224],[25.40665745192495,-11.673472465998913],[25.463965374982052,-11.70013792368298],[25.481508616734228,-11.714952066840798],[25.482678166184375,-11.720877724103925],[25.483847715634518,-11.725815771823196],[25.482678166184375,-11.730753819542468],[25.47449132003336,-11.756431667682682],[25.480339067284085,-11.770258201296643],[25.49554321013597,-11.776183858559769],[25.515425550788436,-11.776183858559769],[25.524781946389595,-11.771245810840497],[25.530629693640318,-11.764332544033516],[25.53764699034119,-11.758406886770391],[25.550512034292783,-11.756431667682682],[25.56103797934409,-11.753468839051118],[25.564546627694526,-11.743592743612574],[25.56805527604496,-11.733716648174031],[25.576242122195975,-11.727790990910904],[25.62185455075163,-11.72877860045476],[25.655771484805836,-11.750506010419556],[25.68734931995975,-11.779146687191332],[25.725944451814538,-11.800874097156129],[25.743487693566713,-11.803836925787692],[25.801965166073963,-11.803836925787692],[25.81249111112527,-11.802849316243838],[25.832373451777734,-11.79396083034915],[25.839390748478603,-11.79198561126144],[25.851086242980053,-11.79396083034915],[25.855764440780632,-11.796923658980711],[25.85927308913107,-11.801861706699984],[25.914241913287885,-11.845316526629578],[25.935293803390493,-11.853217402980412],[25.949328396792232,-11.86408110796281],[25.963362990193975,-11.894697003822296],[25.98090623194615,-11.902597880173131],[25.993771275897743,-11.90457309926084],[26.166864594519208,-11.902597880173131],[26.189086034071963,-11.910498756523968],[26.208968374724428,-11.923337680594074],[26.230020264827036,-11.933213776032616],[26.265106748331387,-11.931238556944908],[26.286158638433996,-11.940127042839599],[26.29785413293545,-11.941114652383451],[26.309549627436898,-11.93617660466418],[26.32826241863922,-11.923337680594074],[26.338788363690522,-11.919387242418654],[26.376213946095163,-11.912473975611675],[26.41480907794995,-11.91148636606782],[26.43820006695285,-11.919387242418654],[26.455743308705024,-11.932226166488764],[26.47094745155691,-11.947040309646578],[26.48966024275923,-11.96086684326054],[26.52474672626358,-11.972718157786794],[26.605445638323587,-11.977656205506065],[26.64404077017837,-11.9855570818569],[26.662753561380693,-11.996420786839298],[26.68029680313287,-12.009259710909404],[26.696670495434898,-12.01716058726024],[26.717722385537506,-12.013210149084824],[26.73292652838939,-11.998396005927006],[26.744622022890844,-11.981606643681483],[26.75982616574273,-11.968767719611375],[26.785556253645918,-11.968767719611375],[26.831168682201575,-11.973705767330646],[26.87444201185694,-11.964817281435957],[26.913037143711726,-11.942102261927307],[26.948123627216077,-11.909511146980112],[26.966836418418396,-11.870006765225936],[26.971514616218975,-11.789022782629877],[26.980871011820135,-11.7495184008757],[26.99607515467202,-11.72680338136705],[27.011279297523906,-11.712976847753088],[27.021805242575212,-11.698162704595273],[27.022974792025355,-11.671497246911205],[27.011279297523906,-11.629030036525466],[27.01010974807376,-11.610265455192232],[27.024144341475502,-11.595451312034417],[27.032331187626518,-11.594463702490561],[27.05455262717927,-11.597426531122125],[27.063909022780432,-11.597426531122125],[27.102504154635216,-11.584587607052018],[27.144607934840437,-11.581624778420455],[27.17384667109406,-11.570761073438057],[27.179694418344788,-11.569773463894203],[27.197237660096963,-11.593476092946709],[27.20776360514827,-11.63890613196401],[27.21244180294885,-11.68828660915673],[27.21010270404856,-11.721865333647777],[27.234663242501604,-11.808774973506964],[27.42062160507466,-11.922350071050218],[27.46740358308046,-12.00135883455857],[27.47208178088104,-12.0418508258566],[27.520033308336988,-12.17912855245236],[27.536407000639016,-12.199868352873303],[27.590206275345686,-12.243323172802896]]]},"properties":{"name":"North-Western"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.75628229726628,-15.648600880012825],[27.799555626921645,-15.647613270468971],[27.822946615924543,-15.651563708644389],[27.841659407126865,-15.663415023170643],[27.839320308226576,-15.671315899521478],[27.841659407126865,-15.679216775872312],[27.847507154377592,-15.68514243313544],[27.85686354997875,-15.69008048085471],[27.889610934582812,-15.673291118609185],[27.929375615887743,-15.664402632714497],[27.970309846642817,-15.666377851802205],[28.007735429047457,-15.68316721404773],[28.020600472999053,-15.699956576293253],[28.029956868600213,-15.717733548082634],[28.04048281365152,-15.731560081696594],[28.059195604853837,-15.737485738959721],[28.08024749495645,-15.740448567591285],[28.17848964876863,-15.777977730257751],[28.194863341070658,-15.78686621615244],[28.226441176224576,-15.812544064292656],[28.235797571825735,-15.81846972155578],[28.24632351687704,-15.816494502468071],[28.275562253130666,-15.796742311590984],[28.291935945432694,-15.790816654327859],[28.39134764869502,-15.783903387520878],[28.411229989347486,-15.78884143524015],[28.421755934398792,-15.794767092503275],[28.441638275051258,-15.808593626117236],[28.453333769552707,-15.81353167383651],[28.490759351957347,-15.81846972155578],[28.507133044259376,-15.823407769275054],[28.52350673656141,-15.83624669334516],[28.566780066216772,-15.879701513274753],[28.583153758518804,-15.890565218257152],[28.604205648621413,-15.894515656432569],[28.643970329926344,-15.888589999169442],[28.66385267057881,-15.889577608713298],[28.676717714530405,-15.895503265976423],[28.744551582638817,-15.947846571800707],[28.753907978239976,-15.951797009976124],[28.7597557254907,-15.952784619519978],[28.777298967242878,-15.95080940043227],[28.784316263943747,-15.951797009976124],[28.79952040679563,-15.955747448151541],[28.808876802396792,-15.956735057695395],[28.813555000197372,-15.952784619519978],[28.81823319799795,-15.94685896225685],[28.82525049469882,-15.943896133625287],[28.836945989200274,-15.95080940043227],[28.840454637550707,-15.940933304993726],[28.848641483701723,-15.936982866818308],[28.859167428753025,-15.936982866818308],[28.870862923254478,-15.942908524081433],[28.887236615556507,-15.92611916183591],[28.91062760455941,-15.931057209555181],[28.931679494662017,-15.944883743169143],[28.946883637513903,-15.956735057695395],[28.946883637513903,-15.95772266723925],[28.932849044112164,-15.963648324502376],[28.898932110057956,-15.995251829905717],[28.876710670505204,-16.021917287589787],[28.87437157160491,-16.028830554396766],[28.860336978203172,-16.049570354817707],[28.85682832985274,-16.060434059800105],[28.859167428753025,-16.069322545694796],[28.863845626553605,-16.076235812501775],[28.868523824354188,-16.082161469764902],[28.870862923254478,-16.087099517484173],[28.86501517600375,-16.12166585151908],[28.852150132052156,-16.16314545236096],[28.847471934251576,-16.20264983411514],[28.863845626553605,-16.231290510886915],[28.840454637550707,-16.284621426255054],[28.836945989200274,-16.306348836219847],[28.840454637550707,-16.323138198465372],[28.85682832985274,-16.365605408851113],[28.85682832985274,-16.388320428359762],[28.833437340849837,-16.426837200570084],[28.828759143049258,-16.43473807692092],[28.82291139579853,-16.470292020499677],[28.808876802396792,-16.486093773201347],[28.76911212109186,-16.514734449973126],[28.760925274940845,-16.532511421762504],[28.74104293428838,-16.55028839355188],[28.732856088137368,-16.55818926990272],[28.718821494735625,-16.560164488990427],[28.690752307932144,-16.560164488990427],[28.6428007804762,-16.569052974885118],[28.280240450931245,-16.706330701480876],[28.212406582822837,-16.748797911866614],[28.114164429010653,-16.827806675374966],[28.022939571899343,-16.86533583804143],[27.8685590444802,-16.92953045839197],[27.81709886867382,-16.9591587447076],[27.77733418736889,-17.00162595509334],[27.64166645115207,-17.19816025432036],[27.625292758850037,-17.23371419789912],[27.60424086874743,-17.31272296140747],[27.577341231394094,-17.363091048144046],[27.524711506137567,-17.415434353968326],[27.421791154524804,-17.505306822459076],[27.157472978792033,-17.7689985706682],[27.146947033740727,-17.783812713826013],[27.145777484290583,-17.79368880926456],[27.146947033740727,-17.81936665740477],[27.149286132641016,-17.842081676913423],[27.115369198586812,-17.882573668211453],[27.07794361618217,-17.917140002246356],[27.048704879928547,-17.943805459930424],[27.021805242575212,-17.95861960308824],[27.006601099723326,-17.962570041263657],[26.95864957226738,-17.96454526035137],[26.948123627216077,-17.968495698526784],[26.91186759426158,-17.99219832757929],[26.88847660525868,-17.984297451228453],[26.793743099796934,-18.02577705207034],[26.76918256134389,-18.028739880701902],[26.753978418492004,-18.032690318877318],[26.741113374540408,-18.040591195228156],[26.711874638286783,-18.06626904336837],[26.700179143785334,-18.069231871999932],[26.68614455038359,-18.06626904336837],[26.628836627326486,-18.049479681122843],[26.612462935024457,-18.04157880477201],[26.598428341622714,-18.029727490245758],[26.583224198770832,-18.012938128000233],[26.570359154819236,-18.003062032561687],[26.553985462517204,-17.996148765754707],[26.527085825163873,-17.99219832757929],[26.48498204495865,-17.979359403509182],[26.408961330699224,-17.938867412211152],[26.362179352693424,-17.930966535860318],[26.325923319738926,-17.93590458357959],[26.317736473587914,-17.93392936449188],[26.311888726337187,-17.928003707228754],[26.303701880186175,-17.923065659509483],[26.294345484585012,-17.91812761179021],[26.24873305602936,-17.91318956407094],[26.2393766604282,-17.910226735439377],[26.233528913177473,-17.90430107817625],[26.227681165926747,-17.894424982737707],[26.220663869225877,-17.88652410638687],[26.21247702307486,-17.882573668211453],[26.2031206274737,-17.887511715930724],[26.16803414396935,-17.91318956407094],[26.15867774836819,-17.91812761179021],[26.135286759365293,-17.923065659509483],[26.11891306706326,-17.931954145404173],[26.101369825311085,-17.93590458357959],[26.095522078060363,-17.937879802667297],[26.094352528610216,-17.941830240842716],[26.096691627510506,-17.954669164912822],[26.095522078060363,-17.95861960308824],[26.08148748465862,-17.962570041263657],[26.0627746934563,-17.962570041263657],[26.04640100115427,-17.966520479439076],[26.040553253903546,-17.97837179396533],[26.033535957202673,-17.971458527158347],[25.97856713304586,-17.99911159438627],[25.966871638544408,-18.000099203930127],[25.924767858339187,-17.99911159438627],[25.86395128693165,-17.971458527158347],[25.853425341880342,-17.959607212632093],[25.846408045179473,-17.943805459930424],[25.84757759462962,-17.92899131677261],[25.86395128693165,-17.92405326905334],[25.84991669352991,-17.906276297263958],[25.804304264974252,-17.88849932547458],[25.794947869373093,-17.87269757277291],[25.78559147377193,-17.861833867790512],[25.76570913311947,-17.849982553264258],[25.743487693566713,-17.83911884828186],[25.706062111162073,-17.83023036238717],[25.69436661666062,-17.81936665740477],[25.681501572709024,-17.811465781053936],[25.65694103425598,-17.8144286096855],[25.604311308999456,-17.836156019650296],[25.536477440891044,-17.848994943720403],[25.530629693640318,-17.850970162808114],[25.522442847489305,-17.8598586487028],[25.51659510023858,-17.861833867790512],[25.50957780353771,-17.860846258246657],[25.50022140793655,-17.855908210527385],[25.49554321013597,-17.85492060098353],[25.42069204532669,-17.85492060098353],[25.408996550825236,-17.85294538189582],[25.37624916622118,-17.841094067369568],[25.34467133106726,-17.843069286457276],[25.3353149354661,-17.841094067369568],[25.315432594813636,-17.832205581474877],[25.285024309109865,-17.80949056196623],[25.266311517907546,-17.800602076071538],[25.259294221206677,-17.79368880926456],[25.25344647395595,-17.781837494738305],[25.242920528904648,-17.76998618021205],[25.228885935502905,-17.762085303861216],[25.214851342101166,-17.759122475229653],[25.198477649799134,-17.7581348656858],[25.19029080364812,-17.755172037054237],[25.177425759696526,-17.73838267480871],[25.172747561895946,-17.735419846177148],[25.161052067394493,-17.72949418891402],[25.156373869593914,-17.725543750738606],[25.15520432014377,-17.71961809347548],[25.156373869593914,-17.706779169405372],[25.15286522124348,-17.700853512142245],[25.13883062784174,-17.686039368984428],[25.13181333114087,-17.686039368984428],[25.12245693553971,-17.697890683510682],[25.12011783663942,-17.690977416703703],[25.11543963883884,-17.68406414989672],[25.10842234213797,-17.67912610217745],[25.09906594653681,-17.67715088308974],[25.096726847636518,-17.672212835370466],[25.088540001485505,-17.642584549054835],[25.08503135313507,-17.640609329967127],[25.067488111382893,-17.625795186809313],[25.06397946303246,-17.621844748633894],[25.052283968531007,-17.621844748633894],[25.045266671830138,-17.619869529546186],[25.04058847402956,-17.615919091370767],[25.03357117732869,-17.608018215019932],[25.03357117732869,-17.601104948212953],[25.04058847402956,-17.584315585967428],[25.037079825679122,-17.581352757335864],[25.02655388062782,-17.58234036687972],[25.007841089425497,-17.588266024142843],[24.998484693824338,-17.588266024142843],[24.98211100152231,-17.576414709616593],[24.971585056471003,-17.560612956914923],[24.97041550702086,-17.559625347371068],[24.97977190262202,-17.491480288845114],[24.985619649872742,-17.469752878880318],[24.98912829822318,-17.465802440704902],[24.994976045473905,-17.459876783441775],[24.998484693824338,-17.454938735722504],[25.000823792724628,-17.452963516634792],[25.011349737775934,-17.444075030740105],[25.016027935576513,-17.43814937347698],[25.023045232277383,-17.42728566849458],[25.025384331177673,-17.420372401687597],[25.02655388062782,-17.41345913488062],[25.025384331177673,-17.40753347761749],[25.02187568282724,-17.396669772635093],[25.020706133377093,-17.388768896284258],[25.020706133377093,-17.334450371372267],[25.023045232277383,-17.32358666638987],[25.025384331177673,-17.31667339958289],[25.032401627878542,-17.308772523232054],[25.048775320180575,-17.2969212087058],[25.052283968531007,-17.293958380074237],[25.06865766083304,-17.266305312846313],[25.079183605884346,-17.254453998320063],[25.097896397086664,-17.221862883372868],[25.09906594653681,-17.214949616565885],[25.09906594653681,-17.20902395930276],[25.094387748736228,-17.201123082951923],[25.092048649835938,-17.197172644776508],[25.088540001485505,-17.194209816144944],[25.08503135313507,-17.18630893979411],[25.083861803684925,-17.17544523481171],[25.088540001485505,-17.149767386671495],[25.090879100385795,-17.137916072145245],[25.095557298186375,-17.13001519579441],[25.10374414433739,-17.124089538531283],[25.130643781690726,-17.11026300491732],[25.13649152894145,-17.10532495719805],[25.14350882564232,-17.097424080847215],[25.15520432014377,-17.079647109057834],[25.161052067394493,-17.06680818498773],[25.163391166294787,-17.057919699093038],[25.163391166294787,-17.05199404182991],[25.16222161684464,-17.04705599411064],[25.15988251794435,-17.042117946391368],[25.15754341904406,-17.03619228912824],[25.156373869593914,-17.028291412777406],[25.158712968494207,-17.013477269619592],[25.16689981464522,-17.007551612356465],[25.17625621024638,-17.002613564637194],[25.186782155297685,-17.000638345549483],[25.238242331104065,-16.975948106953123],[25.245259627804934,-16.969034840146143],[25.254616023406097,-16.95718352561989],[25.270989715708126,-16.92953045839197],[25.276837462958852,-16.915703924778008],[25.279176561859142,-16.90582782933946],[25.249937825605517,-16.810029703585588],[25.245259627804934,-16.801141217690898],[25.242920528904648,-16.796203169971626],[25.2417509794545,-16.7902775127085],[25.242920528904648,-16.77447576000683],[25.25110737505566,-16.726082892357965],[25.252276924505807,-16.71423157783171],[25.25110737505566,-16.70534309193702],[25.247598726705228,-16.702380263305457],[25.23941188055421,-16.696454606042334],[25.230055484953052,-16.690528948779207],[25.224207737702326,-16.6885537296915],[25.212512243200877,-16.685590901059935],[25.107252792687824,-16.672751976989826],[25.1014050454371,-16.670776757902118],[25.095557298186375,-16.665838710182847],[25.08269225423478,-16.64016086204263],[25.08035315533449,-16.629297157060233],[25.076844506984052,-16.613495404358563],[25.074505408083766,-16.609544966183147],[25.072166309183473,-16.605594528007728],[25.067488111382893,-16.602631699376165],[25.032401627878542,-16.57892907032366],[25.005501990525207,-16.555226441271156],[25.001993342174774,-16.552263612639592],[25.000823792724628,-16.551276003095737],[24.999654243274485,-16.54930078400803],[24.997315144374195,-16.537449469481775],[24.997315144374195,-16.532511421762504],[24.998484693824338,-16.52954859313094],[24.999654243274485,-16.528560983587084],[25.003162891624918,-16.527573374043232],[25.01953658392695,-16.52461054541167],[25.02421478172753,-16.523622935867813],[25.02889297952811,-16.521647716780105],[25.037079825679122,-16.51572205951698],[25.041758023479705,-16.511771621341563],[25.142339276192175,-16.380419552008927],[25.149356572893044,-16.373506285201948],[25.168069364095366,-16.364617799307258],[25.1715780124458,-16.361654970675694],[25.18795170474783,-16.348816046605588],[25.191460353098265,-16.345853217974025],[25.19730810034899,-16.34486560843017],[25.203155847599717,-16.343877998886317],[25.207834045400297,-16.341902779798605],[25.21368179265102,-16.339927560710898],[25.226546836602616,-16.332026684360063],[25.240581430004355,-16.317212541202245],[25.242920528904648,-16.31326210302683],[25.24642917725508,-16.310299274395266],[25.25110737505566,-16.307336445763703],[25.25578557285624,-16.30437361713214],[25.26046377065682,-16.30239839804443],[25.275667913508705,-16.298447959869012],[25.289702506910448,-16.29252230260589],[25.29555025416117,-16.285609035798906],[25.302567550862044,-16.2727701117288],[25.32712808931509,-16.217463977272953],[25.33063673766552,-16.213513539097537],[25.33999313326668,-16.197711786395868],[25.351688627768134,-16.171046328711796],[25.356366825568713,-16.164133061904817],[25.363384122269583,-16.157219795097838],[25.369231869520306,-16.149318918747],[25.375079616771032,-16.139442823308457],[25.377418715671322,-16.13549238513304],[25.38092736402176,-16.132529556501478],[25.385605561822338,-16.12857911832606],[25.390283759622918,-16.12660389923835],[25.394961957423497,-16.124628680150643],[25.398470605773934,-16.12166585151908],[25.403148803574513,-16.119690632431368],[25.40665745192495,-16.116727803799805],[25.410166100275383,-16.113764975168245],[25.41367474862582,-16.10882692744897],[25.421861594776832,-16.099938441554283],[25.42770934202756,-16.0930251747473],[25.42770934202756,-16.08808712702803],[25.42653979257741,-16.08413668885261],[25.421861594776832,-16.08117386022105],[25.41601384752611,-16.07919864113334],[25.410166100275383,-16.07722342204563],[25.397301056323787,-16.076235812501775],[25.390283759622918,-16.075248202957923],[25.385605561822338,-16.073272983870215],[25.38092736402176,-16.07031015523865],[25.377418715671322,-16.067347326607088],[25.370401418970452,-16.059446450256253],[25.349349528867844,-16.043644697554583],[25.345840880517407,-16.040681868923016],[25.343501781617118,-16.0367314307476],[25.33765403436639,-16.02784294485291],[25.336484484916248,-16.02290489713364],[25.334145386015958,-16.009078363519677],[25.334145386015958,-15.998214658537279],[25.336484484916248,-15.9913013917303],[25.33999313326668,-15.986363344011027],[25.349349528867844,-15.980437686747901],[25.354027726668424,-15.976487248572482],[25.358705924469003,-15.969573981765503],[25.357536375018856,-15.96463593404623],[25.355197276118567,-15.961673105414668],[25.351688627768134,-15.955747448151541],[25.349349528867844,-15.94883418134456],[25.348179979417697,-15.935007647730599],[25.350519078317987,-15.927106771379764],[25.354027726668424,-15.92216872366049],[25.358705924469003,-15.919205895028929],[25.364553671719726,-15.913280237765802],[25.3715709684206,-15.902416532783404],[25.3820969134719,-15.875751075099336],[25.397301056323787,-15.769089244363062],[25.397301056323787,-15.756250320292954],[25.396131506873644,-15.751312272573683],[25.393792407973354,-15.74637422485441],[25.391453309073064,-15.742423786678993],[25.38443601237219,-15.734522910328158],[25.37624916622118,-15.728597253065033],[25.3715709684206,-15.72563442443347],[25.365723221169873,-15.72365920534576],[25.361045023369293,-15.72365920534576],[25.356366825568713,-15.724646814889613],[25.351688627768134,-15.727609643521177],[25.34467133106726,-15.735510519872012],[25.336484484916248,-15.74834944394212],[25.32946718821538,-15.7552627107491],[25.324788990414795,-15.758225539380664],[25.320110792614216,-15.760200758468372],[25.314263045363493,-15.761188368012228],[25.308415298112767,-15.761188368012228],[25.302567550862044,-15.761188368012228],[25.296719803611317,-15.760200758468372],[25.29087205636059,-15.758225539380664],[25.28619385856001,-15.7552627107491],[25.278007012408995,-15.74834944394212],[25.270989715708126,-15.741436177135139],[25.25812467175653,-15.720696376714196],[25.25578557285624,-15.715758328994925],[25.25344647395595,-15.708845062187944],[25.252276924505807,-15.697981357205546],[25.25344647395595,-15.692055699942419],[25.25578557285624,-15.687117652223147],[25.269820166257983,-15.678229166328457],[25.273328814608416,-15.674278728153041],[25.278007012408995,-15.668353070889914],[25.279176561859142,-15.661439804082933],[25.280346111309285,-15.655514146819808],[25.279176561859142,-15.649588489556681],[25.278007012408995,-15.64465044183741],[25.275667913508705,-15.64070000366199],[25.272159265158272,-15.636749565486573],[25.268650616807836,-15.633786736855011],[25.263972419007256,-15.630823908223448],[25.254616023406097,-15.626873470048029],[25.232394583853342,-15.613046936434069],[25.228885935502905,-15.608108888714796],[25.225377287152472,-15.603170840995524],[25.223038188252183,-15.594282355100834],[25.224207737702326,-15.588356697837709],[25.227716386052762,-15.583418650118436],[25.25578557285624,-15.56169124015364],[25.26046377065682,-15.556753192434368],[25.263972419007256,-15.550827535171242],[25.268650616807836,-15.537988611101134],[25.269820166257983,-15.531075344294154],[25.268650616807836,-15.525149687031028],[25.262802869557113,-15.517248810680194],[25.247598726705228,-15.501447057978522],[25.24642917725508,-15.499471838890813],[25.245259627804934,-15.49650901025925],[25.24409007835479,-15.490583352996124],[25.245259627804934,-15.484657695732999],[25.247598726705228,-15.48070725755758],[25.25110737505566,-15.477744428926016],[25.270989715708126,-15.469843552575181],[25.275667913508705,-15.468855943031327],[25.281515660759432,-15.470831162119037],[25.285024309109865,-15.472806381206745],[25.289702506910448,-15.472806381206745],[25.29321115526088,-15.47181877166289],[25.296719803611317,-15.467868333487473],[25.310754397013056,-15.44219048534726],[25.314263045363493,-15.434289608996425],[25.317771693713926,-15.420463075382463],[25.317771693713926,-15.409599370400064],[25.316602144263783,-15.395772836786103],[25.316602144263783,-15.387871960435268],[25.318941243164073,-15.38194630317214],[25.321280342064362,-15.37700825545287],[25.32946718821538,-15.371082598189743],[25.33765403436639,-15.361206502751198],[25.343501781617118,-15.35231801685651],[25.34467133106726,-15.345404750049529],[25.345840880517407,-15.339479092786403],[25.343501781617118,-15.33454104506713],[25.341162682716828,-15.330590606891713],[25.33063673766552,-15.312813635102334],[25.324788990414795,-15.298987101488372],[26.745791572340988,-15.33651626415484],[26.80426904484824,-15.34342953096182],[26.84403372615317,-15.351330407312656],[26.976192814019555,-15.426388732645588],[26.98671875907086,-15.435277218540278],[26.98671875907086,-15.441202875803405],[26.963327770067963,-15.460955066680492],[26.95864957226738,-15.467868333487473],[26.968005967868542,-15.470831162119037],[27.201915857897543,-15.482682476645289],[27.227645945800734,-15.497496619803105],[27.279106121607114,-15.71477071945107],[27.279106121607114,-15.726622033977323],[27.290801616108563,-15.729584862608887],[27.30132756115987,-15.744399005766702],[27.317701253461898,-15.734522910328158],[27.32004035236219,-15.726622033977323],[27.403078363322486,-15.580455821486874],[27.40658701167292,-15.573542554679893],[27.410095660023355,-15.567616897416766],[27.414773857823935,-15.567616897416766],[27.433486649026257,-15.573542554679893],[27.449860341328286,-15.581443431030728],[27.454538539128865,-15.581443431030728],[27.459216736929445,-15.57946821194302],[27.461555835829735,-15.574530164223747],[27.46389493473003,-15.569592116504475],[27.466234033630315,-15.565641678329058],[27.470912231430894,-15.562678849697495],[27.475590429231477,-15.56169124015364],[27.4814381764822,-15.559716021065931],[27.484946824832637,-15.556753192434368],[27.488455473183073,-15.55280275425895],[27.495472769883943,-15.546877096995825],[27.501320517134666,-15.542926658820406],[27.504829165485102,-15.540951439732698],[27.507168264385392,-15.53700100155728],[27.50950736328568,-15.532062953838008],[27.51184646218597,-15.527124906118736],[27.51184646218597,-15.52119924885561],[27.51418556108626,-15.515273591592484],[27.51652465998655,-15.511323153417067],[27.529389703938147,-15.504409886610086],[27.531728802838437,-15.500459448434668],[27.532898352288584,-15.492558572083833],[27.534067901738727,-15.48762052436456],[27.538746099539306,-15.482682476645289],[27.546932945690322,-15.479719648013726],[27.562137088542208,-15.478732038469872],[27.567984835792934,-15.481694867101435],[27.57032393469322,-15.486632914820706],[27.567984835792934,-15.495521400715397],[27.569154385243078,-15.499471838890813],[27.57032393469322,-15.500459448434668],[27.5750021324938,-15.502434667522376],[27.626462308300184,-15.519224029767901],[27.63231005555091,-15.523174467943319],[27.633479605001053,-15.527124906118736],[27.634649154451196,-15.533050563381863],[27.635818703901343,-15.53897622064499],[27.63698825335149,-15.543914268364261],[27.640496901701923,-15.547864706539679],[27.656870594003955,-15.553790363802804],[27.659209692904245,-15.557740801978223],[27.660379242354388,-15.563666459241349],[27.659209692904245,-15.582431040574582],[27.660379242354388,-15.588356697837709],[27.661548791804535,-15.59329474555698],[27.665057440154968,-15.596257574188543],[27.665057440154968,-15.60020801236396],[27.662718341254678,-15.604158450539378],[27.659209692904245,-15.607121279170942],[27.65570104455381,-15.610084107802505],[27.652192396203375,-15.613046936434069],[27.649853297303082,-15.616997374609486],[27.65102284675323,-15.621935422328757],[27.65336194565352,-15.625885860504175],[27.665057440154968,-15.636749565486573],[27.670905187405694,-15.64070000366199],[27.675583385206274,-15.645638051381264],[27.681431132457,-15.652551318188245],[27.684939780807433,-15.661439804082933],[27.691957077508306,-15.669340680433768],[27.701313473109465,-15.659464584995224],[27.708330769810335,-15.656501756363662],[27.718856714861637,-15.655514146819808],[27.72587401156251,-15.656501756363662],[27.736399956613816,-15.661439804082933],[27.743417253314686,-15.663415023170643],[27.74692590166512,-15.66045219453908],[27.752773648915845,-15.651563708644389],[27.75628229726628,-15.648600880012825]]]},"properties":{"name":"Southern"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.548172935392493,-14.58494540128165],[25.541155638691624,-14.586920620369359],[25.53764699034119,-14.588895839457066],[25.532968792540608,-14.59185866808863],[25.529460144190175,-14.594821496720193],[25.52361239693945,-14.602722373071028],[25.506069155187273,-14.629387830755098],[25.499051858486403,-14.642226754825204],[25.489695462885244,-14.66592938387771],[25.487356363984954,-14.669879822053128],[25.483847715634518,-14.674817869772399],[25.479169517833938,-14.683706355667088],[25.47683041893365,-14.69061962247407],[25.475660869483505,-14.699508108368759],[25.47683041893365,-14.715309861070429],[25.482678166184375,-14.735062051947518],[25.480339067284085,-14.766665557350859],[25.480339067284085,-14.77851687187711],[25.480339067284085,-14.784442529140236],[25.477999968383795,-14.789380576859507],[25.47215222113307,-14.793331015034926],[25.461626276081763,-14.79629384366649],[25.456948078281183,-14.799256672298052],[25.45343942993075,-14.802219500929615],[25.449930781580314,-14.806169939105033],[25.447591682680024,-14.81209559636816],[25.445252583779734,-14.81900886317514],[25.444083034329587,-14.830860177701393],[25.441743935429297,-14.839748663596083],[25.435896188178575,-14.849624759034626],[25.42770934202756,-14.85950085447317],[25.42537024312727,-14.866414121280151],[25.42303114422698,-14.876290216718694],[25.42303114422698,-14.896042407595782],[25.42303114422698,-14.905918503034325],[25.42537024312727,-14.913819379385162],[25.454608979380893,-14.96517507566559],[25.456948078281183,-14.970113123384861],[25.456948078281183,-14.976038780647988],[25.45577852883104,-15.019493600577581],[25.452269880480603,-15.029369696016126],[25.446422133229877,-15.040233400998524],[25.432387539828138,-15.060973201419465],[25.417183396976252,-15.07578734457728],[25.41367474862582,-15.080725392296554],[25.412505199175673,-15.090601487735096],[25.414844298075963,-15.119242164506874],[25.41367474862582,-15.12516782177],[25.410166100275383,-15.131093479033126],[25.403148803574513,-15.136031526752399],[25.396131506873644,-15.137019136296253],[25.390283759622918,-15.136031526752399],[25.38443601237219,-15.135043917208545],[25.37858826512147,-15.135043917208545],[25.372740517870742,-15.135043917208545],[25.368062320070162,-15.138006745840107],[25.364553671719726,-15.14096957447167],[25.357536375018856,-15.148870450822505],[25.32712808931509,-15.175535908506575],[25.323619440964652,-15.178498737138138],[25.322449891514506,-15.184424394401264],[25.321280342064362,-15.193312880295952],[25.325958539864942,-15.229854433418566],[25.324788990414795,-15.298987101488372],[25.33063673766552,-15.312813635102334],[25.341162682716828,-15.330590606891713],[25.343501781617118,-15.33454104506713],[25.345840880517407,-15.339479092786403],[25.34467133106726,-15.345404750049529],[25.343501781617118,-15.35231801685651],[25.33765403436639,-15.361206502751198],[25.32946718821538,-15.371082598189743],[25.321280342064362,-15.37700825545287],[25.318941243164073,-15.38194630317214],[25.316602144263783,-15.387871960435268],[25.316602144263783,-15.395772836786103],[25.317771693713926,-15.409599370400064],[25.317771693713926,-15.420463075382463],[25.314263045363493,-15.434289608996425],[25.310754397013056,-15.44219048534726],[25.296719803611317,-15.467868333487473],[25.29321115526088,-15.47181877166289],[25.289702506910448,-15.472806381206745],[25.285024309109865,-15.472806381206745],[25.281515660759432,-15.470831162119037],[25.275667913508705,-15.468855943031327],[25.270989715708126,-15.469843552575181],[25.25110737505566,-15.477744428926016],[25.247598726705228,-15.48070725755758],[25.245259627804934,-15.484657695732999],[25.24409007835479,-15.490583352996124],[25.245259627804934,-15.49650901025925],[25.24642917725508,-15.499471838890813],[25.247598726705228,-15.501447057978522],[25.262802869557113,-15.517248810680194],[25.268650616807836,-15.525149687031028],[25.269820166257983,-15.531075344294154],[25.268650616807836,-15.537988611101134],[25.263972419007256,-15.550827535171242],[25.26046377065682,-15.556753192434368],[25.25578557285624,-15.56169124015364],[25.227716386052762,-15.583418650118436],[25.224207737702326,-15.588356697837709],[25.223038188252183,-15.594282355100834],[25.225377287152472,-15.603170840995524],[25.228885935502905,-15.608108888714796],[25.232394583853342,-15.613046936434069],[25.254616023406097,-15.626873470048029],[25.263972419007256,-15.630823908223448],[25.268650616807836,-15.633786736855011],[25.272159265158272,-15.636749565486573],[25.275667913508705,-15.64070000366199],[25.278007012408995,-15.64465044183741],[25.279176561859142,-15.649588489556681],[25.280346111309285,-15.655514146819808],[25.279176561859142,-15.661439804082933],[25.278007012408995,-15.668353070889914],[25.273328814608416,-15.674278728153041],[25.269820166257983,-15.678229166328457],[25.25578557285624,-15.687117652223147],[25.25344647395595,-15.692055699942419],[25.252276924505807,-15.697981357205546],[25.25344647395595,-15.708845062187944],[25.25578557285624,-15.715758328994925],[25.25812467175653,-15.720696376714196],[25.270989715708126,-15.741436177135139],[25.278007012408995,-15.74834944394212],[25.28619385856001,-15.7552627107491],[25.29087205636059,-15.758225539380664],[25.296719803611317,-15.760200758468372],[25.302567550862044,-15.761188368012228],[25.308415298112767,-15.761188368012228],[25.314263045363493,-15.761188368012228],[25.320110792614216,-15.760200758468372],[25.324788990414795,-15.758225539380664],[25.32946718821538,-15.7552627107491],[25.336484484916248,-15.74834944394212],[25.34467133106726,-15.735510519872012],[25.351688627768134,-15.727609643521177],[25.356366825568713,-15.724646814889613],[25.361045023369293,-15.72365920534576],[25.365723221169873,-15.72365920534576],[25.3715709684206,-15.72563442443347],[25.37624916622118,-15.728597253065033],[25.38443601237219,-15.734522910328158],[25.391453309073064,-15.742423786678993],[25.393792407973354,-15.74637422485441],[25.396131506873644,-15.751312272573683],[25.397301056323787,-15.756250320292954],[25.397301056323787,-15.769089244363062],[25.3820969134719,-15.875751075099336],[25.3715709684206,-15.902416532783404],[25.364553671719726,-15.913280237765802],[25.358705924469003,-15.919205895028929],[25.354027726668424,-15.92216872366049],[25.350519078317987,-15.927106771379764],[25.348179979417697,-15.935007647730599],[25.349349528867844,-15.94883418134456],[25.351688627768134,-15.955747448151541],[25.355197276118567,-15.961673105414668],[25.357536375018856,-15.96463593404623],[25.358705924469003,-15.969573981765503],[25.354027726668424,-15.976487248572482],[25.349349528867844,-15.980437686747901],[25.33999313326668,-15.986363344011027],[25.336484484916248,-15.9913013917303],[25.334145386015958,-15.998214658537279],[25.334145386015958,-16.009078363519677],[25.336484484916248,-16.02290489713364],[25.33765403436639,-16.02784294485291],[25.343501781617118,-16.0367314307476],[25.345840880517407,-16.040681868923016],[25.349349528867844,-16.043644697554583],[25.370401418970452,-16.059446450256253],[25.377418715671322,-16.067347326607088],[25.38092736402176,-16.07031015523865],[25.385605561822338,-16.073272983870215],[25.390283759622918,-16.075248202957923],[25.397301056323787,-16.076235812501775],[25.410166100275383,-16.07722342204563],[25.41601384752611,-16.07919864113334],[25.421861594776832,-16.08117386022105],[25.42653979257741,-16.08413668885261],[25.42770934202756,-16.08808712702803],[25.42770934202756,-16.0930251747473],[25.421861594776832,-16.099938441554283],[25.41367474862582,-16.10882692744897],[25.410166100275383,-16.113764975168245],[25.40665745192495,-16.116727803799805],[25.403148803574513,-16.119690632431368],[25.398470605773934,-16.12166585151908],[25.394961957423497,-16.124628680150643],[25.390283759622918,-16.12660389923835],[25.385605561822338,-16.12857911832606],[25.38092736402176,-16.132529556501478],[25.377418715671322,-16.13549238513304],[25.375079616771032,-16.139442823308457],[25.369231869520306,-16.149318918747],[25.363384122269583,-16.157219795097838],[25.356366825568713,-16.164133061904817],[25.351688627768134,-16.171046328711796],[25.33999313326668,-16.197711786395868],[25.33063673766552,-16.213513539097537],[25.32712808931509,-16.217463977272953],[25.302567550862044,-16.2727701117288],[25.29555025416117,-16.285609035798906],[25.289702506910448,-16.29252230260589],[25.275667913508705,-16.298447959869012],[25.26046377065682,-16.30239839804443],[25.25578557285624,-16.30437361713214],[25.25110737505566,-16.307336445763703],[25.24642917725508,-16.310299274395266],[25.242920528904648,-16.31326210302683],[25.240581430004355,-16.317212541202245],[25.226546836602616,-16.332026684360063],[25.21368179265102,-16.339927560710898],[25.207834045400297,-16.341902779798605],[25.203155847599717,-16.343877998886317],[25.19730810034899,-16.34486560843017],[25.191460353098265,-16.345853217974025],[25.18795170474783,-16.348816046605588],[25.1715780124458,-16.361654970675694],[25.168069364095366,-16.364617799307258],[25.149356572893044,-16.373506285201948],[25.142339276192175,-16.380419552008927],[25.041758023479705,-16.511771621341563],[25.037079825679122,-16.51572205951698],[25.02889297952811,-16.521647716780105],[25.02421478172753,-16.523622935867813],[25.01953658392695,-16.52461054541167],[25.003162891624918,-16.527573374043232],[24.999654243274485,-16.528560983587084],[24.998484693824338,-16.52954859313094],[24.997315144374195,-16.532511421762504],[24.997315144374195,-16.537449469481775],[24.999654243274485,-16.54930078400803],[25.000823792724628,-16.551276003095737],[25.001993342174774,-16.552263612639592],[25.005501990525207,-16.555226441271156],[25.032401627878542,-16.57892907032366],[25.067488111382893,-16.602631699376165],[25.072166309183473,-16.605594528007728],[25.074505408083766,-16.609544966183147],[25.076844506984052,-16.613495404358563],[25.08035315533449,-16.629297157060233],[25.08269225423478,-16.64016086204263],[25.095557298186375,-16.665838710182847],[25.1014050454371,-16.670776757902118],[25.107252792687824,-16.672751976989826],[25.212512243200877,-16.685590901059935],[25.224207737702326,-16.6885537296915],[25.230055484953052,-16.690528948779207],[25.23941188055421,-16.696454606042334],[25.247598726705228,-16.702380263305457],[25.25110737505566,-16.70534309193702],[25.252276924505807,-16.71423157783171],[25.25110737505566,-16.726082892357965],[25.242920528904648,-16.77447576000683],[25.2417509794545,-16.7902775127085],[25.242920528904648,-16.796203169971626],[25.245259627804934,-16.801141217690898],[25.249937825605517,-16.810029703585588],[25.279176561859142,-16.90582782933946],[25.276837462958852,-16.915703924778008],[25.270989715708126,-16.92953045839197],[25.254616023406097,-16.95718352561989],[25.245259627804934,-16.969034840146143],[25.238242331104065,-16.975948106953123],[25.186782155297685,-17.000638345549483],[25.17625621024638,-17.002613564637194],[25.16689981464522,-17.007551612356465],[25.158712968494207,-17.013477269619592],[25.156373869593914,-17.028291412777406],[25.15754341904406,-17.03619228912824],[25.15988251794435,-17.042117946391368],[25.16222161684464,-17.04705599411064],[25.163391166294787,-17.05199404182991],[25.163391166294787,-17.057919699093038],[25.161052067394493,-17.06680818498773],[25.15520432014377,-17.079647109057834],[25.14350882564232,-17.097424080847215],[25.13649152894145,-17.10532495719805],[25.130643781690726,-17.11026300491732],[25.10374414433739,-17.124089538531283],[25.095557298186375,-17.13001519579441],[25.090879100385795,-17.137916072145245],[25.088540001485505,-17.149767386671495],[25.083861803684925,-17.17544523481171],[25.08503135313507,-17.18630893979411],[25.088540001485505,-17.194209816144944],[25.092048649835938,-17.197172644776508],[25.094387748736228,-17.201123082951923],[25.09906594653681,-17.20902395930276],[25.09906594653681,-17.214949616565885],[25.097896397086664,-17.221862883372868],[25.079183605884346,-17.254453998320063],[25.06865766083304,-17.266305312846313],[25.052283968531007,-17.293958380074237],[25.048775320180575,-17.2969212087058],[25.032401627878542,-17.308772523232054],[25.025384331177673,-17.31667339958289],[25.023045232277383,-17.32358666638987],[25.020706133377093,-17.334450371372267],[25.020706133377093,-17.388768896284258],[25.02187568282724,-17.396669772635093],[25.025384331177673,-17.40753347761749],[25.02655388062782,-17.41345913488062],[25.025384331177673,-17.420372401687597],[25.023045232277383,-17.42728566849458],[25.016027935576513,-17.43814937347698],[25.011349737775934,-17.444075030740105],[25.000823792724628,-17.452963516634792],[24.998484693824338,-17.454938735722504],[24.994976045473905,-17.459876783441775],[24.98912829822318,-17.465802440704902],[24.985619649872742,-17.469752878880318],[24.97977190262202,-17.491480288845114],[24.97041550702086,-17.559625347371068],[24.957550463069264,-17.551724471020233],[24.9376681224168,-17.560612956914923],[24.924803078465203,-17.542835985125542],[24.89790344111187,-17.53098467059929],[24.830069573003456,-17.518145746529182],[24.797322188399395,-17.519133356073038],[24.786796243348093,-17.51715813698533],[24.77977894664722,-17.51222008926606],[24.77510074884664,-17.507282041546784],[24.769253001595917,-17.505306822459076],[24.68387589173533,-17.49246789838897],[24.63943301262982,-17.49246789838897],[24.63007661702866,-17.495430727020533],[24.62305932032779,-17.502343993827512],[24.617211573077064,-17.509257260634495],[24.606685628025758,-17.51518291789762],[24.591481485173873,-17.52802184196773],[24.58095554012257,-17.532959889687],[24.571599144521407,-17.532959889687],[24.562242748920248,-17.531972280143144],[24.547038606068362,-17.526046622880017],[24.537682210467203,-17.520120965616893],[24.531834463216477,-17.51320769880991],[24.523647617065464,-17.50826965109064],[24.497917529162272,-17.503331603371368],[24.479204737959954,-17.494443117476678],[24.448796452256182,-17.489505069757406],[24.406692672050962,-17.47469092659959],[24.389149430298787,-17.471728097968025],[24.37160618854661,-17.473703317055737],[24.32950240834139,-17.485554631581987],[24.321315562190374,-17.48851746021355],[24.310789617139072,-17.482591802950424],[24.2569903424324,-17.480616583862716],[24.23827755123008,-17.478641364775008],[24.220734309477905,-17.479628974318864],[24.190326023774134,-17.485554631581987],[24.148222243568913,-17.493455507932822],[24.10494891391355,-17.502343993827512],[24.06284513370833,-17.510244870178347],[24.019571804052962,-17.519133356073038],[23.97746802384774,-17.52802184196773],[23.934194694192378,-17.535922718318563],[23.89092136453701,-17.544811204213254],[23.84881758433179,-17.55271208056409],[23.805544254676423,-17.561600566458775],[23.76227092502106,-17.56950144280961],[23.72016714481584,-17.5783899287043],[23.676893815160472,-17.586290805055135],[23.63479003495525,-17.595179290949826],[23.591516705299888,-17.60308016730066],[23.54824337564452,-17.61196865319535],[23.5061395954393,-17.620857139090038],[23.47573130973553,-17.626782796353165],[23.45701851853321,-17.626782796353165],[23.42193203502886,-17.633696063160148],[23.38216735372393,-17.641596939510983],[23.376319606473206,-17.62777040589702],[23.37515005702306,-17.614931481826915],[23.38216735372393,-17.601104948212953],[23.359945914171174,-17.583327976423572],[23.34006357351871,-17.560612956914923],[23.320181232866243,-17.54678642330096],[23.304977090014358,-17.53987315649398],[23.29094249661262,-17.534935108774707],[23.258195112008558,-17.532959889687],[23.24182141970653,-17.534935108774707],[23.224278177954353,-17.538885546950127],[23.206734936202178,-17.540860766037834],[23.189191694450003,-17.536910327862415],[23.177496199948553,-17.52407140379231],[23.176326650498407,-17.510244870178347],[23.178665749398697,-17.494443117476678],[23.176326650498407,-17.478641364775008],[23.165800705447104,-17.46777765979261],[23.12135782634159,-17.450988297547084],[23.097966837338692,-17.43222371621385],[23.073406298885647,-17.405558258529783],[23.054693507683325,-17.374942362670296],[23.046506661532312,-17.34827690498623],[23.040658914281586,-17.33741320000383],[22.998555134076366,-17.293958380074237],[22.984520540674627,-17.286057503723402],[22.93656901321868,-17.273218579653296],[22.87575244181114,-17.248528341056936],[22.848852804457803,-17.230751369267555],[22.809088123152872,-17.196185035232652],[22.778679837449104,-17.180383282530983],[22.76464524404736,-17.169519577548584],[22.755288848446202,-17.154705434390767],[22.744762903394896,-17.108287785829614],[22.730728309993157,-17.081622328145542],[22.710845969340692,-17.054956870461474],[22.66523354078504,-17.008539221900318],[22.651198947383296,-16.998663126461775],[22.5915519254259,-16.97496049740927],[22.57985643092445,-16.97496049740927],[22.574008683673725,-16.97101005923385],[22.569330485873145,-16.962121573339164],[22.569330485873145,-16.94533221109364],[22.566991386972855,-16.93644372519895],[22.55412634302126,-16.924592410672695],[22.522548507867345,-16.914716315234152],[22.508513914465606,-16.90582782933946],[22.50032706831459,-16.89397651481321],[22.48863157381314,-16.86533583804143],[22.41611950790415,-16.75472356912974],[22.40910221120328,-16.74583508323505],[22.39974581560212,-16.74089703551578],[22.383372123300088,-16.737934206884216],[22.377524376049365,-16.734971378252652],[22.372846178248782,-16.72904572098953],[22.365828881547912,-16.717194406463275],[22.350624738696027,-16.696454606042334],[22.343607441995157,-16.683615681972224],[22.333081496943855,-16.67373958653368],[22.307351409040663,-16.66880153881441],[22.302673211240084,-16.666826319726702],[22.295655914539214,-16.658925443375864],[22.29097771673863,-16.655962614744304],[22.287469068388198,-16.657937833832012],[22.28396042003776,-16.660900662463575],[22.274604024436602,-16.66386349109514],[22.259399881584716,-16.66880153881441],[22.251213035433704,-16.669789148358262],[22.23717844203196,-16.665838710182847],[22.151801332171377,-16.597693651656893],[22.144784035470504,-16.58386711804293],[22.142444936570215,-16.567077755797406],[22.137766738769635,-16.552263612639592],[22.127240793718332,-16.546337955376465],[22.10852800251601,-16.544362736288758],[22.10384980471543,-16.536461859937923],[22.10618890361572,-16.525598154955524],[22.107358453065867,-16.512759230885415],[22.10151070581514,-16.4979450877276],[22.085137013513112,-16.470292020499677],[22.08045881571253,-16.45745309642957],[22.08045881571253,-16.440663734184046],[22.086306562963255,-16.421899152850813],[22.09449340911427,-16.405109790605287],[22.10384980471543,-16.39227086653518],[22.105019354165577,-16.379431942465075],[22.088645661863545,-16.371531066114237],[22.055898277259484,-16.364617799307258],[22.05472872780934,-16.35869214204413],[22.053559178359194,-16.336964732079334],[22.05238962890905,-16.32708863664079],[22.048880980558614,-16.32215058892152],[22.037185486057165,-16.312274493482974],[22.032507288256586,-16.306348836219847],[22.027829090456006,-16.291534693062033],[22.025489991555716,-16.278695768991927],[22.02198134320528,-16.26585684492182],[22.011455398153974,-16.25203031130786],[22.01964224430499,-16.25301792085171],[22.04537233220818,-16.25203031130786],[22.01028584870383,-16.197711786395868],[21.983386211350496,-16.166108280992525],[21.981047112450206,-16.144380871027728],[21.981047112450206,-16.12857911832606],[21.981047112450206,-16.067347326607088],[21.981047112450206,-16.004140315800406],[21.981047112450206,-16.001177487168842],[21.981047112450206,-15.955747448151541],[21.981047112450206,-15.85402366513454],[21.981047112450206,-15.752299882117537],[21.981047112450206,-15.649588489556681],[21.981047112450206,-15.547864706539679],[21.981047112450206,-15.503422277066232],[21.981047112450206,-15.4737939907506],[21.981047112450206,-15.452066580785804],[21.981047112450206,-15.412562199031628],[21.981047112450206,-15.261457938821906],[21.981047112450206,-15.111341288156039],[21.981047112450206,-14.960237027946317],[21.981047112450206,-14.81012037728045],[21.981047112450206,-14.65901611707073],[21.981047112450206,-14.508899466404863],[21.981047112450206,-14.35779520619514],[21.981047112450206,-14.20669094598542],[21.981047112450206,-14.056574295319553],[21.981047112450206,-13.90547003510983],[21.97987756300006,-13.755353384443964],[21.97987756300006,-13.695109202268846],[21.998590354202378,-13.69807203090041],[22.02899863990615,-13.711898564514371],[22.040694134407598,-13.719799440865206],[22.065254672860647,-13.744489679461566],[22.081628365162675,-13.756340993987818],[22.085137013513112,-13.758316213075528],[22.093323859664125,-13.760291432163235],[22.102680255265284,-13.762266651250943],[22.119053947567316,-13.761279041707091],[22.128410343168476,-13.760291432163235],[22.135427639869345,-13.758316213075528],[22.16466637612297,-13.74547728900542],[22.168175024473406,-13.742514460373856],[22.171683672823843,-13.738564022198439],[22.176361870624422,-13.729675536303748],[22.178700969524712,-13.724737488584477],[22.183379167325292,-13.721774659952914],[22.196244211276888,-13.713873783602079],[22.200922409077467,-13.710910954970515],[22.203261507977757,-13.7069605167951],[22.213787453029063,-13.689183545005719],[22.217296101379496,-13.686220716374157],[22.221974299180076,-13.683257887742593],[22.226652496980655,-13.68227027819874],[22.23250024423138,-13.681282668654884],[22.240687090382398,-13.683257887742593],[22.251213035433704,-13.686220716374157],[22.274604024436602,-13.699059640444265],[22.285129969487908,-13.705972907251244],[22.431323650756035,-13.825473662057625],[22.499157518864443,-13.865965653355655],[22.501496617764737,-13.867940872443363],[22.503835716665026,-13.870903701074926],[22.513192112266186,-13.88966828240816],[22.51670076061662,-13.893618720583579],[22.541261299069667,-13.909420473285248],[22.54710904632039,-13.911395692372956],[22.555295892471406,-13.913370911460666],[22.565821837522712,-13.913370911460666],[22.58453462872503,-13.915346130548375],[22.592721474876047,-13.92324700689921],[22.610264716628222,-13.927197445074627],[22.614942914428802,-13.93016027370619],[22.620790661679525,-13.937073540513172],[22.625468859480108,-13.944974416864007],[22.62663840893025,-13.952875293214841],[22.632486156180978,-13.960776169565676],[22.644181650682427,-13.965714217284948],[22.66874218913547,-13.969664655460367],[22.679268134186778,-13.976577922267346],[22.688624529787937,-13.982503579530473],[22.697980925389096,-13.987441627249744],[22.710845969340692,-13.990404455881308],[22.721371914391998,-13.9884292367936],[22.728389211092868,-13.977565531811202],[22.730728309993157,-13.971639874548075],[22.742423804494607,-13.913370911460666],[22.744762903394896,-13.908432863741394],[22.748271551745333,-13.90547003510983],[22.752949749545913,-13.903494816022121],[22.799731727551713,-13.901519596934413],[22.80557947480244,-13.899544377846706],[22.809088123152872,-13.896581549215142],[22.834818211056064,-13.872878920162636],[22.8383268594065,-13.869916091531072],[22.844174606657223,-13.868928481987219],[22.85236145280824,-13.869916091531072],[22.876921991261284,-13.879792186969617],[22.96463820002216,-13.935098321425462],[22.9786727934239,-13.949912464583278],[22.984520540674627,-13.957813340934113],[22.99036828792535,-13.97262748409193],[22.993876936275786,-13.983491189074329],[22.99504648572593,-13.987441627249744],[22.998555134076366,-13.991392065425163],[23.000894232976655,-13.992379674969017],[23.005572430777235,-13.994354894056727],[23.01142017802796,-13.994354894056727],[23.028963419780137,-13.990404455881308],[23.054693507683325,-13.97954075089891],[23.059371705483905,-13.977565531811202],[23.06521945273463,-13.977565531811202],[23.073406298885647,-13.977565531811202],[23.082762694486807,-13.980528360442765],[23.094458188988256,-13.987441627249744],[23.100305936238982,-13.992379674969017],[23.102645035139272,-13.998305332232142],[23.102645035139272,-14.001268160863706],[23.102645035139272,-14.01311947538996],[23.102645035139272,-14.024970789916212],[23.10615368348971,-14.03583449489861],[23.108492782389998,-14.040772542617882],[23.110831881290288,-14.0447229807933],[23.11667962854101,-14.052623857144134],[23.124866474692027,-14.058549514407261],[23.130714221942753,-14.061512343038824],[23.140070617543913,-14.064475171670388],[23.217260881253484,-14.072376048021223],[23.223108628504207,-14.073363657565077],[23.226617276854643,-14.07632648619664],[23.225447727404497,-14.081264533915911],[23.221939079054064,-14.086202581635185],[23.209074035102468,-14.101016724793],[23.186852595549713,-14.134595449284049],[23.182174397749133,-14.15533524970499],[23.223108628504207,-14.140521106547176],[23.226617276854643,-14.147434373354155],[23.227786826304786,-14.152372421073428],[23.227786826304786,-14.15928568788041],[23.223108628504207,-14.168174173775098],[23.264042859259284,-14.168174173775098],[23.280416551561313,-14.160273297424263],[23.306146639464504,-14.138545887459466],[23.32368988121668,-14.133607839740193],[23.33538537571813,-14.134595449284049],[23.34474177131929,-14.137558277915613],[23.355267716370594,-14.137558277915613],[23.36813276032219,-14.133607839740193],[23.37748915592335,-14.126694572933214],[23.409066991077264,-14.100029115249146],[23.437136177880745,-14.085214972091329],[23.54005652949351,-14.059537123951117],[23.556430221795537,-14.04966102851257],[23.59268625475003,-14.022995570828503],[23.632450936054962,-14.01311947538996],[23.667537419559313,-13.994354894056727],[23.68391111186134,-13.990404455881308],[23.699115254713227,-13.996330113144435],[23.71548894701526,-14.007193818126833],[23.733032188767435,-14.012131865846104],[23.765779573371493,-13.992379674969017],[23.777475067872945,-13.989416846337454],[23.788001012924248,-13.987441627249744],[23.7996965074257,-13.983491189074329],[23.8230874964286,-13.961763779109532],[23.833613441479905,-13.955838121846405],[23.833613441479905,-13.975590312723492],[23.840630738180774,-13.98645401770589],[23.85583488103266,-13.990404455881308],[23.874547672234982,-13.990404455881308],[23.89559956233759,-13.998305332232142],[23.903786408488607,-13.999292941775998],[23.910803705189476,-14.000280551319852],[23.914312353539913,-14.000280551319852],[23.918990551340492,-13.997317722688289],[23.922499199690925,-13.996330113144435],[23.92834694694165,-13.995342503600579],[23.93302514474223,-13.993367284512871],[23.941211990893247,-13.987441627249744],[23.948229287594117,-13.987441627249744],[23.955246584294986,-13.989416846337454],[23.970450727146872,-13.996330113144435],[23.97980712274803,-14.000280551319852],[23.992672166699627,-14.001268160863706],[24.002028562300787,-14.000280551319852],[24.011384957901946,-13.997317722688289],[24.016063155702525,-13.995342503600579],[24.02425000185354,-13.989416846337454],[24.034775946904848,-13.97954075089891],[24.044132342506007,-13.967689436372657],[24.047640990856443,-13.966701826828803],[24.052319188657023,-13.967689436372657],[24.060506034808036,-13.976577922267346],[24.06518423260862,-13.978553141355055],[24.07103197985934,-13.976577922267346],[24.07454062820978,-13.971639874548075],[24.076879727110068,-13.965714217284948],[24.079218826010358,-13.959788560021822],[24.081557924910648,-13.953862902758697],[24.083897023810938,-13.949912464583278],[24.087405672161374,-13.94596202640786],[24.092083869961954,-13.944974416864007],[24.09793161721268,-13.946949635951714],[24.10494891391355,-13.952875293214841],[24.11196621061442,-13.955838121846405],[24.12015305676543,-13.956825731390259],[24.127170353466305,-13.955838121846405],[24.131848551266884,-13.953862902758697],[24.141204946868044,-13.949912464583278],[24.14471359521848,-13.946949635951714],[24.148222243568913,-13.942999197776299],[24.152900441369493,-13.933123102337753],[24.15640908971993,-13.93016027370619],[24.162256836970656,-13.928185054618481],[24.16810458422138,-13.928185054618481],[24.177460979822538,-13.929172664162337],[24.183308727073264,-13.928185054618481],[24.187986924873844,-13.926209835530774],[24.19383467212457,-13.918308959179939],[24.19851286992515,-13.91633374009223],[24.209038814976456,-13.913370911460666],[24.22190385892805,-13.90547003510983],[24.227751606178774,-13.90547003510983],[24.232429803979354,-13.906457644653685],[24.24763394683124,-13.920284178267647],[24.267516287483705,-13.933123102337753],[24.274533584184574,-13.937073540513172],[24.286229078686027,-13.93904875960088],[24.29441592483704,-13.940036369144735],[24.300263672087766,-13.938061150057026],[24.302602770988056,-13.935098321425462],[24.30143322153791,-13.93016027370619],[24.29909412263762,-13.926209835530774],[24.293246375386897,-13.921271787811502],[24.290907276486607,-13.917321349636083],[24.290907276486607,-13.912383301916812],[24.293246375386897,-13.909420473285248],[24.29675502373733,-13.90547003510983],[24.29909412263762,-13.901519596934413],[24.300263672087766,-13.896581549215142],[24.30143322153791,-13.892631111039723],[24.304941869888346,-13.892631111039723],[24.311959166589215,-13.895593939671286],[24.32248511164052,-13.90547003510983],[24.325993759990958,-13.912383301916812],[24.328332858891244,-13.919296568723793],[24.328332858891244,-13.925222225986918],[24.32950240834139,-13.937073540513172],[24.335350155592117,-13.942011588232443],[24.34353700174313,-13.946949635951714],[24.38096258414777,-13.957813340934113],[24.386810331398497,-13.957813340934113],[24.391488529199076,-13.956825731390259],[24.394997177549513,-13.953862902758697],[24.398505825899946,-13.949912464583278],[24.400844924800236,-13.946949635951714],[24.404353573150672,-13.94596202640786],[24.406692672050962,-13.950900074127134],[24.409031770951252,-13.955838121846405],[24.412540419301685,-13.960776169565676],[24.41604906765212,-13.96373899819724],[24.42306636435299,-13.962751388653384],[24.426575012703427,-13.959788560021822],[24.430083661053864,-13.955838121846405],[24.433592309404297,-13.952875293214841],[24.439440056655023,-13.951887683670986],[24.446457353355893,-13.953862902758697],[24.46049194675763,-13.95485051230255],[24.466339694008358,-13.953862902758697],[24.471017891808938,-13.952875293214841],[24.473356990709227,-13.949912464583278],[24.47218744125908,-13.94596202640786],[24.468678792908648,-13.942011588232443],[24.466339694008358,-13.93904875960088],[24.464000595108068,-13.935098321425462],[24.46517014455821,-13.9321354927939],[24.474526540159374,-13.93016027370619],[24.479204737959954,-13.927197445074627],[24.481543836860244,-13.922259397355354],[24.485052485210677,-13.919296568723793],[24.488561133561113,-13.918308959179939],[24.510782573113868,-13.941023978688587],[24.515460770914448,-13.946949635951714],[24.520138968715028,-13.951887683670986],[24.528325814866044,-13.956825731390259],[24.540021309367493,-13.96373899819724],[24.54820815551851,-13.973615093635782],[24.5505472544188,-13.978553141355055],[24.554055902769232,-13.982503579530473],[24.565751397270684,-13.982503579530473],[24.571599144521407,-13.983491189074329],[24.582125089572713,-13.987441627249744],[24.586803287373293,-13.9884292367936],[24.59031193572373,-13.98645401770589],[24.59265103462402,-13.982503579530473],[24.59265103462402,-13.977565531811202],[24.59031193572373,-13.967689436372657],[24.591481485173873,-13.96373899819724],[24.593820584074162,-13.960776169565676],[24.598498781874746,-13.961763779109532],[24.607855177475905,-13.964726607741094],[24.612533375276485,-13.964726607741094],[24.616042023626918,-13.965714217284948],[24.617211573077064,-13.971639874548075],[24.614872474176774,-13.990404455881308],[24.614872474176774,-13.995342503600579],[24.616042023626918,-13.998305332232142],[24.617211573077064,-13.999292941775998],[24.619550671977354,-14.000280551319852],[24.62539841922808,-13.999292941775998],[24.626567968678224,-13.998305332232142],[24.628907067578513,-13.995342503600579],[24.628907067578513,-13.98447879861818],[24.63007661702866,-13.978553141355055],[24.63241571592895,-13.973615093635782],[24.635924364279383,-13.969664655460367],[24.640602562079962,-13.967689436372657],[24.645280759880546,-13.966701826828803],[24.649958957681125,-13.96373899819724],[24.658145803832138,-13.958800950477968],[24.661654452182574,-13.958800950477968],[24.66516310053301,-13.959788560021822],[24.66984129833359,-13.964726607741094],[24.69323228733649,-13.991392065425163],[24.704927781837938,-14.002255770407562],[24.710775529088664,-14.008181427670687],[24.713114627988954,-14.01311947538996],[24.715453726889244,-14.017069913565376],[24.717792825789534,-14.027933618547774],[24.72597967194055,-14.046698199881007],[24.72597967194055,-14.05163624760028],[24.724810122490403,-14.077314095740494],[24.72597967194055,-14.083239753003621],[24.727149221390697,-14.088177800722892],[24.72831877084084,-14.093115848442164],[24.73299696864142,-14.102004334336854],[24.73533606754171,-14.106942382056125],[24.74001426534229,-14.115830867950816],[24.745862012593015,-14.120768915670087],[24.75404885874403,-14.124719353845505],[24.80550903455041,-14.14150871609103],[24.825391375202877,-14.144471544722592],[24.84761281475563,-14.150397201985719],[24.871003803758533,-14.154347640161136],[24.878021100459403,-14.156322859248846],[24.99029784767332,-14.211628993704691],[25.007841089425497,-14.217554650967818],[25.018367034476803,-14.219529870055526],[25.056962166331587,-14.212616603248545],[25.06397946303246,-14.214591822336255],[25.07099675973333,-14.219529870055526],[25.081522704784636,-14.232368794125634],[25.086200902585215,-14.240269670476469],[25.088540001485505,-14.248170546827303],[25.088540001485505,-14.283724490406062],[25.08737045203536,-14.290637757213043],[25.083861803684925,-14.302489071739295],[25.08035315533449,-14.313352776721693],[25.072166309183473,-14.327179310335655],[25.06631856193275,-14.33508018668649],[25.062809913582313,-14.339030624861907],[25.06164036413217,-14.343968672581179],[25.060470814682024,-14.347919110756596],[25.05930126523188,-14.349894329844306],[25.0546230674313,-14.372609349352956],[25.052283968531007,-14.41606416928255],[25.051114419080864,-14.421989826545676],[25.048775320180575,-14.426927874264948],[25.03824937512927,-14.437791579247346],[25.030062528978252,-14.443717236510473],[25.02655388062782,-14.446680065142036],[25.000823792724628,-14.458531379668289],[24.978602353171873,-14.466432256019123],[24.972754605921146,-14.469395084650687],[24.969245957570713,-14.471370303738395],[24.968076408120567,-14.473345522826104],[24.966906858670423,-14.475320741913812],[24.964567759770134,-14.480258789633085],[24.963398210319987,-14.483221618264647],[24.963398210319987,-14.493097713703191],[24.965737309220277,-14.515812733211842],[24.965737309220277,-14.520750780931115],[24.961059111419697,-14.55334189587831],[24.962228660869844,-14.559267553141435],[24.963398210319987,-14.564205600860708],[24.966906858670423,-14.574081696299253],[24.969245957570713,-14.578032134474668],[24.980941452072162,-14.59383388717634],[25.001993342174774,-14.617536516228846],[25.010180188325787,-14.623462173491971],[25.01719748502666,-14.628400221211244],[25.025384331177673,-14.63235065938666],[25.03357117732869,-14.63432587847437],[25.04058847402956,-14.636301097562079],[25.047605770730428,-14.635313488018223],[25.056962166331587,-14.63432587847437],[25.07567495753391,-14.628400221211244],[25.08503135313507,-14.626425002123534],[25.094387748736228,-14.626425002123534],[25.142339276192175,-14.629387830755098],[25.151695671793334,-14.628400221211244],[25.19029080364812,-14.619511735316554],[25.210173144300587,-14.612598468509573],[25.21368179265102,-14.60963563987801],[25.223038188252183,-14.605685201702592],[25.238242331104065,-14.60074715398332],[25.281515660759432,-14.59185866808863],[25.292041605810738,-14.587908229913213],[25.309584847562913,-14.579019744018524],[25.315432594813636,-14.577044524930814],[25.328297638765232,-14.577044524930814],[25.393792407973354,-14.582970182193941],[25.412505199175673,-14.586920620369359],[25.42303114422698,-14.59185866808863],[25.42653979257741,-14.594821496720193],[25.431217990377995,-14.597784325351757],[25.435896188178575,-14.60074715398332],[25.441743935429297,-14.602722373071028],[25.45110033103046,-14.603709982614884],[25.4651349244322,-14.603709982614884],[25.482678166184375,-14.601734763527174],[25.506069155187273,-14.590871058544776],[25.510747352987856,-14.587908229913213],[25.522442847489305,-14.583957791737795],[25.548172935392493,-14.58494540128165]]]},"properties":{"name":"Western"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.30462488875422,-11.643844179683281],[33.256673361298276,-11.656683103753387],[33.216908679993345,-11.673472465998913],[33.19702633934088,-11.701125533226836],[33.19702633934088,-11.748530791331847],[33.13036202068262,-11.858155450699684],[33.088258240477394,-11.950003138278142],[32.95376005371072,-11.99247034866388],[32.726867460382586,-12.059627797645978],[32.60055611976692,-12.067528673996815],[32.54207864725967,-12.067528673996815],[32.499974867054455,-12.109995884382553],[32.48360117475242,-12.168264847469962],[32.433310548396186,-12.21962054375039],[32.37366352643879,-12.21962054375039],[32.29179506492864,-12.200855962417156],[32.28945596602835,-12.2215957628381],[32.28477776822777,-12.243323172802896],[32.27659092207676,-12.264062973223837],[32.259047680324585,-12.28480277364478],[32.255539031974145,-12.294678869083324],[32.206417955068055,-12.333195641293646],[32.193552911116456,-12.346034565363752],[32.18068786716486,-12.375662851679383],[32.173670570464,-12.387514166205637],[32.16431417486284,-12.39739026164418],[32.15846642761211,-12.403315918907307],[32.15378822981153,-12.409241576170432],[32.152618680361385,-12.424055719328248],[32.15027958146109,-12.429981376591375],[32.14092318585993,-12.443807910205336],[32.138584086959646,-12.451708786556171],[32.138584086959646,-12.495163606485765],[32.117532196857034,-12.59293695132735],[32.10700625180573,-12.604788265853601],[32.10232805400515,-12.62947850444996],[32.098819405654716,-12.637379380800796],[32.094141207854136,-12.644292647607777],[32.090632559503696,-12.65416874304632],[32.090632559503696,-12.68774746753737],[32.08478481225298,-12.720338582484565],[32.08361526280283,-12.733177506554672],[32.08127616390254,-12.74404121153707],[32.07191976830138,-12.763793402414159],[32.0672415705008,-12.7845332028351],[32.06139382325007,-12.788483641010519],[32.05320697709906,-12.790458860098227],[32.0438505814979,-12.797372126905207],[32.03449418589674,-12.813173879606877],[32.019290043044855,-12.85860391862418],[32.015781394694415,-12.876380890413557],[32.0075945485434,-12.886256985852102],[31.98654265844079,-12.894157862202938],[31.96549076833818,-12.900083519466063],[31.95496482328688,-12.901071129009917],[31.951456174936443,-12.909959614904608],[31.946777977135863,-12.915885272167735],[31.933912933184267,-12.928724196237841],[31.930404284833834,-12.930699415325549],[31.924556537583108,-12.929711805781695],[31.91870879033238,-12.930699415325549],[31.912861043081655,-12.93563746304482],[31.912861043081655,-12.93958790122024],[31.9140305925318,-12.950451606202638],[31.912861043081655,-12.955389653921909],[31.908182845281075,-12.971191406623579],[31.90584374638079,-12.990943597500667],[31.907013295830932,-13.011683397921608],[31.912861043081655,-13.030447979254843],[31.901165548580206,-13.035386026974114],[31.89297870242919,-13.040324074693388],[31.884791856278177,-13.042299293781095],[31.87192681232658,-13.037361246061824],[31.86958771342629,-13.046249731956513],[31.864909515625712,-13.052175389219638],[31.85789221892484,-13.057113436938911],[31.83684032882223,-13.05908865602662],[31.830992581571508,-13.062051484658184],[31.8204666365202,-13.07489040872829],[31.807601592568606,-13.084766504166833],[31.78538015301585,-13.096617818693087],[31.76900646071382,-13.10649391413163],[31.766667361813532,-13.101555866412358],[31.76432826291324,-13.096617818693087],[31.761989164012952,-13.09266738051767],[31.756141416762226,-13.09266738051767],[31.75263276841179,-13.116370009570176],[31.73859817501005,-13.13118415272799],[31.723394032158165,-13.145010686341951],[31.716376735457295,-13.16476287721904],[31.714037636557002,-13.174638972657583],[31.709359438756422,-13.181552239464564],[31.70117259260541,-13.186490287183837],[31.680120702502798,-13.191428334903108],[31.675442504702218,-13.200316820797799],[31.657899262950046,-13.258585783885206],[31.649712416799026,-13.298090165639382],[31.63801692229758,-13.33561932830585],[31.613456383844536,-13.366235224165335],[31.535096570684818,-13.425491796796598],[31.51872287838279,-13.432405063603579],[31.497670988280177,-13.429442234972015],[31.477788647627712,-13.424504187252744],[31.46141495532568,-13.42154135862118],[31.439193515772928,-13.428454625428161],[31.428667570721622,-13.435367892235142],[31.428667570721622,-13.385987415042422],[31.42983712017177,-13.352408690551373],[31.427498021271475,-13.334631718761994],[31.426328471821332,-13.324755623323451],[31.413463427869736,-13.30895387062178],[31.390072438866838,-13.284263632025421],[31.371359647664516,-13.247722078902807],[31.365511900413793,-13.228957497569574],[31.34913820811176,-13.010695788377756],[31.345629559761328,-12.994894035676085],[31.3397818125106,-12.981067502062123],[31.336273164160165,-12.977117063886705],[31.331594966359585,-12.973166625711288],[31.322238570758426,-12.967240968448163],[31.288321636704218,-12.951439215746491],[31.282473889453495,-12.949463996658782],[31.2696088455019,-12.947488777571074],[31.22516596639639,-12.947488777571074],[31.219318219145663,-12.94847638711493],[31.199435878493198,-12.955389653921909],[31.19007948289204,-12.959340092097326],[31.186570834541605,-12.96230292072889],[31.184231735641312,-12.966253358904307],[31.181892636741026,-12.971191406623579],[31.18072308729088,-12.989955987956812],[31.179553537840732,-12.998844473851502],[31.17838398839059,-13.00081969293921],[31.169027592789426,-13.022547102904007],[31.16668849388914,-13.026497541079426],[31.163179845538703,-13.030447979254843],[31.159671197188267,-13.03439841743026],[31.156162548837834,-13.037361246061824],[31.151484351037254,-13.039336465149532],[31.145636603786528,-13.040324074693388],[31.1397888565358,-13.04131168423724],[31.12692381258421,-13.04131168423724],[31.121076065333483,-13.040324074693388],[31.108211021381887,-13.031435588798697],[31.03335985657261,-12.96032770164118],[31.02049481262101,-12.950451606202638],[31.00879931811956,-12.950451606202638],[31.002951570868838,-12.951439215746491],[30.99476472471782,-12.950451606202638],[30.967865087364487,-12.941563120307947],[30.960847790663614,-12.93958790122024],[30.94798274671202,-12.938600291676384],[30.91289626320767,-12.928724196237841],[30.907048515956944,-12.927736586693985],[30.900031219256075,-12.927736586693985],[30.867283834652014,-12.934649853500968],[30.855588340150565,-12.934649853500968],[30.849740592899842,-12.933662243957112],[30.84038419729868,-12.928724196237841],[30.83102780169752,-12.922798538974714],[30.811145461045054,-12.912922443536171],[30.750328889637515,-12.871442842694286],[30.743311592936642,-12.864529575887305],[30.73980294458621,-12.857616309080324],[30.74448114238679,-12.832926070483964],[30.74448114238679,-12.827000413220839],[30.743311592936642,-12.81613670823844],[30.728107450084757,-12.764781011958013],[30.726937900634613,-12.75984296423874],[30.728107450084757,-12.754904916519468],[30.738633395136063,-12.729227068379254],[30.740972494036356,-12.725276630203837],[30.755007087438095,-12.709474877502167],[30.76085483468882,-12.701574001151332],[30.763193933589108,-12.69663595343206],[30.7655330324894,-12.691697905712788],[30.766702581939544,-12.684784638905807],[30.7655330324894,-12.677871372098826],[30.763193933589108,-12.667995276660282],[30.759685285238675,-12.66305722894101],[30.755007087438095,-12.659106790765593],[30.73512474678563,-12.650218304870904],[30.723429252284177,-12.643305038063922],[30.716411955583308,-12.636391771256942],[30.709394658882438,-12.626515675818398],[30.696529614930842,-12.595899779958913],[30.691851417130263,-12.59096173223964],[30.68600366987954,-12.58898651315193],[30.68132547207896,-12.58898651315193],[30.676647274278377,-12.59096173223964],[30.664951779776928,-12.606763484941311],[30.65676493362591,-12.61367675174829],[30.648578087474895,-12.618614799467561],[30.634543494073156,-12.625528066274544],[30.625187098471997,-12.62256523764298],[30.611152505070258,-12.615651970836],[30.583083318266777,-12.593924560871203],[30.571387823765328,-12.583060855888805],[30.564370527064455,-12.574172369994116],[30.56320097761431,-12.569234322274843],[30.56320097761431,-12.563308665011718],[30.564370527064455,-12.55738300774859],[30.57255737321547,-12.536643207327648],[30.573726922665617,-12.529729940520667],[30.573726922665617,-12.521829064169832],[30.57021827431518,-12.508990140099726],[30.564370527064455,-12.501089263748892],[30.559692329263875,-12.496151216029618],[30.54916638421257,-12.491213168310345],[30.52343629630938,-12.479361853784095],[30.51174080180793,-12.47146097743326],[30.50472350510706,-12.465535320170133],[30.50004530730648,-12.460597272450862],[30.498875757856336,-12.455659224731589],[30.497706208406193,-12.450721177012316],[30.496536658956046,-12.439857472029917],[30.496536658956046,-12.428006157503667],[30.497706208406193,-12.42208050024054],[30.498875757856336,-12.417142452521269],[30.508232153457495,-12.39739026164418],[30.51174080180793,-12.385538947117926],[30.51291035125808,-12.34109651764448],[30.51291035125808,-12.333195641293646],[30.510571252357785,-12.325294764942809],[30.50472350510706,-12.31443105996041],[30.50004530730648,-12.30949301224114],[30.494197560055756,-12.306530183609576],[30.482502065554307,-12.304554964521866],[30.471976120503,-12.305542574065722],[30.461450175451695,-12.308505402697286],[30.45560242820097,-12.30949301224114],[30.4485851315001,-12.308505402697286],[30.43922873589894,-12.304554964521866],[30.433380988648217,-12.298629307258741],[30.428702790847638,-12.292703649995614],[30.42285504359691,-12.281839945013216],[30.41817684579633,-12.276901897293945],[30.412329098545605,-12.272951459118527],[30.40648135129488,-12.271963849574671],[30.39478585679343,-12.271963849574671],[30.377242615041254,-12.274926678206235],[30.370225318340385,-12.274926678206235],[30.360868922739222,-12.271963849574671],[30.346834329337483,-12.264062973223837],[30.337477933736324,-12.260112535048421],[30.32929108758531,-12.257149706416858],[30.311747845833132,-12.257149706416858],[30.30590009858241,-12.256162096873002],[30.301221900781826,-12.254186877785294],[30.287187307380087,-12.24628600143446],[30.28133956012936,-12.24431078234675],[30.256779021676316,-12.240360344171332],[30.246253076625013,-12.235422296452061],[30.23221848322327,-12.227521420101226],[30.215844790921242,-12.222583372381953],[30.211166593120662,-12.21962054375039],[30.206488395320083,-12.216657715118828],[30.201810197519503,-12.214682496031118],[30.19713199971892,-12.212707276943409],[30.184266955767328,-12.2107320578557],[30.162045516214572,-12.20184357196101],[30.15736731841399,-12.196905524241739],[30.14801092281283,-12.180116161996214],[30.142163175562107,-12.174190504733087],[30.13631542831138,-12.172215285645379],[30.123450384359785,-12.169252457013815],[30.115263538208772,-12.166289628382252],[30.107076692057756,-12.162339190206836],[30.09187254920587,-12.153450704312146],[30.084855252505,-12.147525047049019],[30.079007505254275,-12.139624170698184],[30.074329307453695,-12.13172329434735],[30.05912516460181,-12.11197110347026],[30.055616516251376,-12.105057836663281],[30.05444696680123,-12.10011978894401],[30.053277417351083,-12.095181741224737],[30.050938318450797,-12.077404769435358],[30.04976876900065,-12.072466721716086],[30.048599219550503,-12.067528673996815],[30.029886428348185,-12.033949949505764],[30.01234318659601,-12.013210149084824],[30.004156340444993,-12.004321663190133],[29.997139043744127,-12.000371225014716],[29.992460845943548,-12.000371225014716],[29.969069856940646,-12.00333405364628],[29.948017966838034,-12.00827210136555],[29.866149505327883,-12.0418508258566],[29.86264085697745,-12.044813654488163],[29.859132208627013,-12.047776483119726],[29.855623560276577,-12.051726921295144],[29.85328446137629,-12.056664969014417],[29.852114911926144,-12.062590626277542],[29.847436714125564,-12.112958713014116],[29.846267164675417,-12.118884370277243],[29.843928065775128,-12.124810027540368],[29.839249867974548,-12.133698513435057],[29.82989347237339,-12.146537437505165],[29.826384824022952,-12.150487875680582],[29.82287617567252,-12.153450704312146],[29.81819797787194,-12.155425923399854],[29.799485186669617,-12.159376361575273],[29.799485186669617,-12.155425923399854],[29.802993835020054,-12.153450704312146],[29.806502483370487,-12.150487875680582],[29.810011131720923,-12.145549827961311],[29.81351978007136,-12.139624170698184],[29.817028428421793,-12.133698513435057],[29.811180681171066,-12.123822417996514],[29.81351978007136,-12.110983493926408],[29.815858878971646,-12.097156960312446],[29.817028428421793,-12.085305645786192],[29.810011131720923,-12.072466721716086],[29.790128791068458,-12.051726921295144],[29.781941944917442,-12.037900387681184],[29.77843329656701,-12.020123415891803],[29.781941944917442,-11.975680986418356],[29.774924648216572,-11.943089871471162],[29.77375509876643,-11.924325290137928],[29.77843329656701,-11.910498756523968],[29.78895924161831,-11.898647441997714],[29.815858878971646,-11.89568461336615],[29.821706626222372,-11.893709394278442],[30.24508352717487,-11.825564335752489],[30.261457219476895,-11.818651068945508],[30.275491812878638,-11.806799754419256],[30.447415582049956,-11.58952565477129],[30.447415582049956,-11.583599997508163],[30.44624603259981,-11.579649559332747],[30.442737384249376,-11.575699121157328],[30.440398285349083,-11.570761073438057],[30.440398285349083,-11.56483541617493],[30.44156783479923,-11.552984101648677],[30.449754680950246,-11.53125669168388],[30.45092423040039,-11.525331034420756],[30.45092423040039,-11.514467329438357],[30.45092423040039,-11.510516891262938],[30.452093779850536,-11.507554062631375],[30.45560242820097,-11.50162840536825],[30.484841164454593,-11.490764700385851],[30.498875757856336,-11.478913385859599],[30.522266746859238,-11.46113641407022],[30.532792691910544,-11.440396613649277],[30.53980998861141,-11.417681594140626],[30.54916638421257,-11.399904622351247],[30.566709625964748,-11.392003746000412],[30.57957466991634,-11.390028526912705],[30.587761516067356,-11.386078088737285],[30.59360926331808,-11.37817721238645],[30.598287461118662,-11.36928872649176],[30.604135208369385,-11.349536535614675],[30.60998295562011,-11.339660440176129],[30.618169801771128,-11.33077195428144],[30.627526197372287,-11.325833906562169],[30.639221691873736,-11.326821516106023],[30.662612680876638,-11.33077195428144],[30.667290878677218,-11.327809125649878],[30.677816823728524,-11.313982592035916],[30.683664570979246,-11.311019763404353],[30.705886010532005,-11.29027996298341],[30.71290330723287,-11.281391477088722],[30.72109015338389,-11.256701238492361],[30.7421420434865,-11.213246418562768],[30.82401050499665,-11.11251024508962],[30.841553746748822,-11.077943911054717],[30.843892845649115,-11.067080206072319],[30.848571043449695,-11.05621650108992],[30.857927439050854,-11.04732801519523],[30.867283834652014,-11.043377577019815],[30.88014887860361,-11.057204110633775],[30.894183472005352,-11.059179329721484],[30.89886166980593,-11.050290843826794],[30.878979329153466,-11.029551043405853],[30.893013922555205,-11.028563433861997],[30.905878966506798,-11.023625386142726],[30.916404911558104,-11.018687338423454],[30.923422208258977,-11.015724509791891],[30.933948153310283,-11.014736900248035],[30.96201734011376,-11.004860804809493],[30.970204186264777,-10.998935147546366],[30.979560581865936,-10.977207737581569],[30.987747428016952,-10.944616622634374],[31.000612471968545,-10.919926384038014],[31.021664362071157,-10.919926384038014],[31.01113841701985,-10.932765308108122],[31.019325263170867,-10.94362901309052],[31.03803805437319,-10.948567060809792],[31.053242197225075,-10.944616622634374],[31.054411746675218,-10.92091399358187],[31.059089944475797,-10.911037898143325],[31.0696158895271,-10.919926384038014],[31.075463636777826,-10.930790089020412],[31.076633186227973,-10.94165379400281],[31.07312453787754,-10.951529889441355],[31.063768142276377,-10.9614059848799],[31.084820032378985,-10.9614059848799],[31.101193724681018,-10.955480327616772],[31.145636603786528,-10.91696355540645],[31.146806153236675,-10.911037898143325],[31.147975702686818,-10.904124631336344],[31.15382344993754,-10.897211364529364],[31.160840746638414,-10.892273316810092],[31.165518944438993,-10.885360050003111],[31.169027592789426,-10.877459173652277],[31.17136669168972,-10.873508735476857],[31.16668849388914,-10.867583078213732],[31.146806153236675,-10.845855668248936],[31.142127955436095,-10.835979572810391],[31.143297504886238,-10.827091086915702],[31.151484351037254,-10.817214991477158],[31.18774038399175,-10.817214991477158],[31.204114076293777,-10.810301724670179],[31.199435878493198,-10.789561924249234],[31.192418581792328,-10.782648657442255],[31.184231735641312,-10.78363626698611],[31.177214438940446,-10.787586705161527],[31.169027592789426,-10.789561924249234],[31.15733209828798,-10.788574314705382],[31.15382344993754,-10.784623876529963],[31.151484351037254,-10.777710609722984],[31.145636603786528,-10.769809733372147],[31.132771559834932,-10.75697080930204],[31.130432460934642,-10.75005754249506],[31.174875340040153,-10.717466427547865],[31.18890993344189,-10.711540770284738],[31.207622724644214,-10.708577941653175],[31.223996416946243,-10.708577941653175],[31.245048307048854,-10.712528379828594],[31.26493064770132,-10.719441646635573],[31.275456592752626,-10.728330132530264],[31.282473889453495,-10.720429256179429],[31.30235623010596,-10.708577941653175],[31.30937352680683,-10.701664674846196],[31.312882175157263,-10.689813360319942],[31.30937352680683,-10.650308978565768],[31.31171262570712,-10.643395711758785],[31.31872992240799,-10.640432883127222],[31.333934065259875,-10.640432883127222],[31.338612263060455,-10.63747005449566],[31.337442713610308,-10.630556787688679],[31.330425416909442,-10.622655911337844],[31.33510361471002,-10.6127798158993],[31.345629559761328,-10.608829377723882],[31.371359647664516,-10.605866549092319],[31.390072438866838,-10.59895328228534],[31.423989372921042,-10.581176310495959],[31.436854416872634,-10.578213481864395],[31.443871713573508,-10.57426304368898],[31.45205855972452,-10.555498462355747],[31.46141495532568,-10.550560414636474],[31.471940900376985,-10.552535633724183],[31.47895819707786,-10.559448900531162],[31.483636394878438,-10.567349776881997],[31.488314592679018,-10.571300215057416],[31.552639812436993,-10.558461290987308],[31.5503007135367,-10.30859607639215],[31.516383779482496,-10.275017351901099],[31.415802526770026,-10.233537751059215],[31.3397818125106,-10.18316966432264],[31.30703442790654,-10.065644128603969],[31.26493064770132,-9.957007078779986],[31.18890993344189,-9.830593057166624],[31.114058768632614,-9.755534731833691],[31.18072308729088,-9.671587920606068],[31.20645317519407,-9.61331895751866],[31.256743801550304,-9.587641109378445],[31.315221274057556,-9.537273022641871],[31.365511900413793,-9.503694298150823],[31.432176219072055,-9.54616150853656],[31.508196933331483,-9.540235851273435],[31.57486125198975,-9.57085174713292],[31.600591339892937,-9.503694298150823],[31.675442504702218,-9.529372146291037],[31.751463218961646,-9.520483660396346],[31.818127537619908,-9.479004059554462],[31.90233509803035,-9.436536849168723],[32.019290043044855,-9.4197474869232],[32.11987129575732,-9.428635972817888],[32.220452548469794,-9.453326211414248],[32.32922064733328,-9.462214697308937],[32.32103380118227,-9.36147852383579],[32.27074317482603,-9.252841474011808],[32.2309784935211,-9.133340719205426],[32.25319993307386,-9.13630354783699],[32.38301992203995,-9.13432832874928],[32.42395415279503,-9.144204424187825],[32.460210185749524,-9.167907053240329],[32.47073613080083,-9.18173358685429],[32.490618471453296,-9.227163625871594],[32.504653064855034,-9.24889103583639],[32.51751810880663,-9.257779521731079],[32.55611324066142,-9.261729959906496],[32.641490350522,-9.279506931695876],[32.71283286698085,-9.285432588959003],[32.72569791093244,-9.292345855765983],[32.739732504334185,-9.3071599989238],[32.74324115268462,-9.315060875274634],[32.74674980103505,-9.32987501843245],[32.75259754828578,-9.337775894783285],[32.75961484498664,-9.339751113870994],[32.77715808673882,-9.337775894783285],[32.78417538343969,-9.339751113870994],[32.83095736144549,-9.37036700973048],[32.90580852625477,-9.398020076958403],[32.92101266910666,-9.407896172396946],[32.92335176800695,-9.466165135484355],[32.928029965807525,-9.479991669098316],[32.937386361408684,-9.487892545449151],[32.94323410865941,-9.485917326361443],[32.950251405360284,-9.48097927864217],[32.96194689986173,-9.479991669098316],[32.9689641965626,-9.483942107273734],[32.98299878996434,-9.497768640887696],[32.9923551855655,-9.501719079063113],[32.9923551855655,-9.529372146291037],[32.97481194381333,-9.601467642992406],[32.98650743831478,-9.628133100676475],[33.00054203171652,-9.633071148395747],[33.011067976767826,-9.628133100676475],[33.02276347126927,-9.62023222432564],[33.03562851522087,-9.617269395694077],[33.04732400972232,-9.622207443413348],[33.05083265807276,-9.633071148395747],[33.05317175697304,-9.644922462921999],[33.05784995477362,-9.65381094881669],[33.08007139432638,-9.662699434711378],[33.08942778992754,-9.643934853378145],[33.092936438277974,-9.614306567062513],[33.0987841855287,-9.5886287189223],[33.12100562508145,-9.599492423904698],[33.17597444923827,-9.602455252536261],[33.19585678989074,-9.616281786150221],[33.20989138329247,-9.640972024746581],[33.21456958109306,-9.654798558360543],[33.2157391305432,-9.669612701518359],[33.21340003164291,-9.680476406500757],[33.207552284392186,-9.688377282851592],[33.20404363604175,-9.698253378290136],[33.207552284392186,-9.713067521447952],[33.216908679993345,-9.726894055061914],[33.24146921844639,-9.742695807763583],[33.25316471294784,-9.753559512745982],[33.26719930634958,-9.781212579973905],[33.275386152500595,-9.793063894500158],[33.288251196452194,-9.803927599482556],[33.29994669095365,-9.809853256745683],[33.337372273358284,-9.823679790359643],[33.34322002060901,-9.83158066671048],[33.359593712911035,-9.871085048464654],[33.36544146016176,-9.898738115692577],[33.358424163460896,-9.91947791611352],[33.329185427207264,-9.965895564674675],[33.310472636004945,-10.012313213235831],[33.30462488875422,-10.037991061376045],[33.30462488875422,-10.06366890951626],[33.31748993270582,-10.082433490849493],[33.399358394215966,-10.117987434428251],[33.42041028431858,-10.13576440621763],[33.43678397662061,-10.15354137800701],[33.45432721837278,-10.168355521164825],[33.480057306275974,-10.177244007059514],[33.49877009747829,-10.20094663611202],[33.51865243813076,-10.214773169725982],[33.53385658098264,-10.231562531971505],[33.53502613043279,-10.263166037374846],[33.529178383182064,-10.318472171830692],[33.532687031532504,-10.342174800883198],[33.559586668885835,-10.404394202146024],[33.56777351503685,-10.416245516672276],[33.59584270184033,-10.440935755268637],[33.6028599985412,-10.448836631619471],[33.622742339193664,-10.494266670636772],[33.63794648204555,-10.512043642426153],[33.66484611939889,-10.515006471057715],[33.66601566884903,-10.541671928741785],[33.6730329655499,-10.559448900531162],[33.6730329655499,-10.569324995969707],[33.67420251500005,-10.573275434145124],[33.67420251500005,-10.577225872320543],[33.657828822698015,-10.600928501373048],[33.64262467984613,-10.615742644530863],[33.6028599985412,-10.643395711758785],[33.589994954589606,-10.649321369021912],[33.57712991063801,-10.657222245372747],[33.52800883373192,-10.711540770284738],[33.51163514142989,-10.752032761582768],[33.501109196378586,-10.768822123828294],[33.480057306275974,-10.7816610478984],[33.46485316342409,-10.784623876529963],[33.447309921671916,-10.802400848319342],[33.43444487772032,-10.808326505582468],[33.41924073486843,-10.807338896038615],[33.38532380081423,-10.800425629231633],[33.37128920741249,-10.803388457863196],[33.358424163460896,-10.808326505582468],[33.332694075557704,-10.81326455330174],[33.318659482155965,-10.818202601021014],[33.30696398765451,-10.829066306003412],[33.288251196452194,-10.856719373231334],[33.27304705360031,-10.865607859126023],[33.261351559098856,-10.865607859126023],[33.25082561404755,-10.862645030494459],[33.24146921844639,-10.865607859126023],[33.23211282284523,-10.883384830915404],[33.23211282284523,-10.897211364529364],[33.239130119546104,-10.90313702179249],[33.251995163497696,-10.90313702179249],[33.266029756899435,-10.901161802704781],[33.280064350301174,-10.913013117231035],[33.288251196452194,-10.944616622634374],[33.29059029535248,-10.975232518493861],[33.29409894370292,-11.004860804809493],[33.30345533930408,-11.034489091125124],[33.318659482155965,-11.062142158353048],[33.33620272390814,-11.08782000649326],[33.358424163460896,-11.109547416458057],[33.39117154806495,-11.164853550913904],[33.381815152463794,-11.194481837229535],[33.368950108512195,-11.223122514001311],[33.2987771415035,-11.32879673519373],[33.29643804260321,-11.335710002000713],[33.29994669095365,-11.346573706983111],[33.2987771415035,-11.35348697379009],[33.29292939425277,-11.35743741196551],[33.27772525140089,-11.364350678772489],[33.27304705360031,-11.36928872649176],[33.27187750415016,-11.384102869649578],[33.27421660305045,-11.396941793719684],[33.27304705360031,-11.409780717789792],[33.26486020744929,-11.4226196418599],[33.239130119546104,-11.40286745098281],[33.229773723944945,-11.416693984596773],[33.234451921745524,-11.50162840536825],[33.23328237229538,-11.514467329438357],[33.22743462504465,-11.532244301227735],[33.212230482192766,-11.563847806631076],[33.2157391305432,-11.571748682981912],[33.23211282284523,-11.577674340245037],[33.2496560645974,-11.577674340245037],[33.26719930634958,-11.575699121157328],[33.283572998651614,-11.578661949788891],[33.29643804260321,-11.593476092946709],[33.30228578985393,-11.609277845648379],[33.30462488875422,-11.643844179683281]]]},"properties":{"name":"Muchinga"}}
+]}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/images/thumbnail.png
new file mode 100644
index 0000000..e3742f1
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..cfa72f4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js
new file mode 100644
index 0000000..5e59031
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['https://bl.ocks.org/john-guerra'],
+  description: '',
+  name: t('Country Map'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class CountryMapChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactCountryMap.js'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/transformProps.js
new file mode 100644
index 0000000..98b613d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/transformProps.js
@@ -0,0 +1,31 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { linearColorScheme, numberFormat, selectCountry } = formData;
+
+  return {
+    width,
+    height,
+    data: queriesData[0].data,
+    country: selectCountry,
+    linearColorScheme,
+    numberFormat,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-country-map/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/README.md b/superset-frontend/plugins/legacy-plugin-chart-event-flow/README.md
new file mode 100644
index 0000000..0e7a0f9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-event-flow
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-event-flow.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-event-flow)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-event-flow&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-event-flow)
+
+This plugin provides Event Flow for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import EventFlowChartPlugin from '@superset-ui/legacy-plugin-chart-event-flow';
+
+new EventFlowChartPlugin().configure({ key: 'event-flow' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-event-flow)
+for more details.
+
+```js
+<SuperChart
+  chartType="event-flow"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/package.json b/superset-frontend/plugins/legacy-plugin-chart-event-flow/package.json
new file mode 100644
index 0000000..46f0540
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/package.json
@@ -0,0 +1,39 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-event-flow",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Event Flow",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@data-ui/event-flow": "^0.0.84",
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "prop-types": "^15.6.2"
+  },
+  "peerDependencies": {
+    "react": "^15 || ^16"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx
new file mode 100644
index 0000000..c663e0a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx
@@ -0,0 +1,53 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { App as EventFlowApp } from '@data-ui/event-flow';
+import { t, TimeseriesDataRecord } from '@superset-ui/core';
+
+export interface EventFlowProps {
+  data: TimeseriesDataRecord[];
+  height: number;
+  width: number;
+  initialMinEventCount: number;
+}
+
+export default function EventFlow({
+  data,
+  initialMinEventCount,
+  height = 400,
+  width = 400,
+}: EventFlowProps) {
+  if (data) {
+    return (
+      <EventFlowApp
+        width={width}
+        height={height}
+        data={data}
+        initialMinEventCount={initialMinEventCount}
+        initialShowControls={false}
+      />
+    );
+  }
+
+  return (
+    <div style={{ height, width }}>
+      <div>{t('Sorry, there appears to be no data')}</div>
+    </div>
+  );
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx
new file mode 100644
index 0000000..325ec94
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx
@@ -0,0 +1,133 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { t, validateNonEmpty } from '@superset-ui/core';
+import {
+  formatSelectOptionsForRange,
+  ColumnOption,
+  columnChoices,
+  ControlPanelConfig,
+  sections,
+  SelectControlConfig,
+  ColumnMeta,
+} from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Event definition'),
+      controlSetRows: [
+        ['entity'],
+        [
+          {
+            name: 'all_columns_x',
+            config: {
+              type: 'SelectControl',
+              label: t('Event Names'),
+              description: t('Columns to display'),
+              mapStateToProps: state => ({
+                choices: columnChoices(state?.datasource),
+              }),
+              // choices is from `mapStateToProps`
+              default: (control: { choices?: string[] }) =>
+                control.choices && control.choices.length > 0 ? control.choices[0][0] : null,
+              validators: [validateNonEmpty],
+            },
+          },
+        ],
+        ['row_limit'],
+        [
+          {
+            name: 'order_by_entity',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Order by entity id'),
+              description: t(
+                'Important! Select this if the table is not already sorted by entity id, ' +
+                  'else there is no guarantee that all events for each entity are returned.',
+              ),
+              default: true,
+            },
+          },
+        ],
+        [
+          {
+            name: 'min_leaf_node_event_count',
+            config: {
+              type: 'SelectControl',
+              freeForm: false,
+              label: t('Minimum leaf node event count'),
+              default: 1,
+              choices: formatSelectOptionsForRange(1, 10),
+              description: t(
+                'Leaf nodes that represent fewer than this number of events will be initially ' +
+                  'hidden in the visualization',
+              ),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['adhoc_filters']],
+    },
+    {
+      label: t('Additional metadata'),
+      controlSetRows: [
+        [
+          {
+            name: 'all_columns',
+            // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
+            config: {
+              type: 'SelectControl',
+              multi: true,
+              label: t('Metadata'),
+              default: [],
+              description: t('Select any columns for metadata inspection'),
+              optionRenderer: c => <ColumnOption showType column={c} />,
+              valueRenderer: c => <ColumnOption column={c} />,
+              valueKey: 'column_name',
+              allowAll: true,
+              mapStateToProps: state => ({
+                options: state.datasource ? state.datasource.columns : [],
+              }),
+              commaChoosesOption: false,
+              freeForm: true,
+            } as SelectControlConfig<ColumnMeta>,
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    entity: {
+      label: t('Entity ID'),
+      description: t('e.g., a "user id" column'),
+    },
+    row_limit: {
+      label: t('Max Events'),
+      description: t('The maximum number of events to return, equivalent to the number of rows'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/images/thumbnail.png
new file mode 100644
index 0000000..de10a4d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..0edb535
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts
new file mode 100644
index 0000000..1626886
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['https://github.com/williaster/data-ui'],
+  description: '',
+  name: t('Event Flow'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class EventFlowChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./EventFlow'),
+      loadTransformProps: () => import('./transformProps'),
+      metadata,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts
new file mode 100644
index 0000000..7bb9990
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts
@@ -0,0 +1,65 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartProps, TimeseriesDataRecord } from '@superset-ui/core';
+import { cleanEvents, TS, EVENT_NAME, ENTITY_ID } from '@data-ui/event-flow';
+
+export interface EventFlowFormData {
+  allColumnsX: string;
+  entity: string;
+  minLeafNodeEventCount: number;
+}
+
+export interface EventFlowChartProps extends ChartProps {
+  formData: EventFlowFormData;
+  queriesData: {
+    data: TimeseriesDataRecord[];
+  }[];
+}
+
+export default function transformProps(chartProps: ChartProps) {
+  const { formData, queriesData, width, height } = chartProps as EventFlowChartProps;
+  const { allColumnsX, entity, minLeafNodeEventCount } = formData;
+  const { data } = queriesData[0];
+
+  const hasData = data && data.length > 0;
+  if (hasData) {
+    const userKey = entity;
+    const eventNameKey = allColumnsX;
+
+    // map from the Superset form fields to <EventFlow />'s expected data keys
+    const accessorFunctions = {
+      [ENTITY_ID]: (datum: TimeseriesDataRecord) => String(datum[userKey]),
+      [EVENT_NAME]: (datum: TimeseriesDataRecord) => datum[eventNameKey] as string,
+      [TS]: (datum: TimeseriesDataRecord): Date | null =>
+        // eslint-disable-next-line no-underscore-dangle
+        datum.__timestamp || datum.__timestamp === 0 ? new Date(datum.__timestamp) : null,
+    };
+
+    const cleanData = cleanEvents(data, accessorFunctions);
+
+    return {
+      data: cleanData,
+      height,
+      initialMinEventCount: minLeafNodeEventCount,
+      width,
+    };
+  }
+
+  return { data: null, height, width };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/types/external.d.ts b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/types/external.d.ts
new file mode 100644
index 0000000..69bcffd
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/src/types/external.d.ts
@@ -0,0 +1,2 @@
+declare module '*.png';
+declare module '@data-ui/event-flow';
diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-event-flow/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/README.md b/superset-frontend/plugins/legacy-plugin-chart-force-directed/README.md
new file mode 100644
index 0000000..5ca55d1
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-force-directed
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-force-directed.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-force-directed)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-force-directed&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-force-directed)
+
+This plugin provides Force-directed Graph for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import ChordChartPlugin from '@superset-ui/legacy-plugin-chart-force-directed';
+
+new ChordChartPlugin().configure({ key: 'force-directed' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-force-directed)
+for more details.
+
+```js
+<SuperChart
+  chartType="force-directed"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/package.json b/superset-frontend/plugins/legacy-plugin-chart-force-directed/package.json
new file mode 100644
index 0000000..65f97d8
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/package.json
@@ -0,0 +1,39 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-force-directed",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Force-directed Graph",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "prop-types": "^15.7.2"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/ForceDirected.js b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/ForceDirected.js
new file mode 100644
index 0000000..ac5847e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/ForceDirected.js
@@ -0,0 +1,176 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/sort-prop-types, func-names, no-param-reassign */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+
+const propTypes = {
+  data: PropTypes.arrayOf(
+    PropTypes.shape({
+      source: PropTypes.string,
+      target: PropTypes.string,
+      value: PropTypes.number,
+    }),
+  ),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  linkLength: PropTypes.number,
+  charge: PropTypes.number,
+};
+
+/* Modified from http://bl.ocks.org/d3noob/5141278 */
+function ForceDirected(element, props) {
+  const { data, width, height, linkLength = 200, charge = -500 } = props;
+  const div = d3.select(element);
+  div.classed('superset-legacy-chart-force-directed', true);
+
+  const links = data;
+  const nodes = {};
+  // Compute the distinct nodes from the links.
+  links.forEach(link => {
+    link.source =
+      nodes[link.source] ||
+      (nodes[link.source] = {
+        name: link.source,
+      });
+    link.target =
+      nodes[link.target] ||
+      (nodes[link.target] = {
+        name: link.target,
+      });
+    link.value = Number(link.value);
+
+    const targetName = link.target.name;
+    const sourceName = link.source.name;
+
+    if (nodes[targetName].total === undefined) {
+      nodes[targetName].total = link.value;
+    }
+    if (nodes[sourceName].total === undefined) {
+      nodes[sourceName].total = 0;
+    }
+    if (nodes[targetName].max === undefined) {
+      nodes[targetName].max = 0;
+    }
+    if (link.value > nodes[targetName].max) {
+      nodes[targetName].max = link.value;
+    }
+    if (nodes[targetName].min === undefined) {
+      nodes[targetName].min = 0;
+    }
+    if (link.value > nodes[targetName].min) {
+      nodes[targetName].min = link.value;
+    }
+
+    nodes[targetName].total += link.value;
+  });
+
+  /* eslint-disable no-use-before-define */
+  // add the curvy lines
+  function tick() {
+    path.attr('d', d => {
+      const dx = d.target.x - d.source.x;
+      const dy = d.target.y - d.source.y;
+      const dr = Math.sqrt(dx * dx + dy * dy);
+
+      return `M${d.source.x},${d.source.y}A${dr},${dr} 0 0,1 ${d.target.x},${d.target.y}`;
+    });
+
+    node.attr('transform', d => `translate(${d.x},${d.y})`);
+  }
+  /* eslint-enable no-use-before-define */
+
+  const force = d3.layout
+    .force()
+    .nodes(d3.values(nodes))
+    .links(links)
+    .size([width, height])
+    .linkDistance(linkLength)
+    .charge(charge)
+    .on('tick', tick)
+    .start();
+
+  div.selectAll('*').remove();
+  const svg = div.append('svg').attr('width', width).attr('height', height);
+
+  // build the arrow.
+  svg
+    .append('svg:defs')
+    .selectAll('marker')
+    .data(['end']) // Different link/path types can be defined here
+    .enter()
+    .append('svg:marker') // This section adds in the arrows
+    .attr('id', String)
+    .attr('viewBox', '0 -5 10 10')
+    .attr('refX', 15)
+    .attr('refY', -1.5)
+    .attr('markerWidth', 6)
+    .attr('markerHeight', 6)
+    .attr('orient', 'auto')
+    .append('svg:path')
+    .attr('d', 'M0,-5L10,0L0,5');
+
+  const edgeScale = d3.scale.linear().range([0.1, 0.5]);
+  // add the links and the arrows
+  const path = svg
+    .append('svg:g')
+    .selectAll('path')
+    .data(force.links())
+    .enter()
+    .append('svg:path')
+    .attr('class', 'link')
+    .style('opacity', d => edgeScale(d.value / d.target.max))
+    .attr('marker-end', 'url(#end)');
+
+  // define the nodes
+  const node = svg
+    .selectAll('.node')
+    .data(force.nodes())
+    .enter()
+    .append('g')
+    .attr('class', 'node')
+    .on('mouseenter', function () {
+      d3.select(this).select('circle').transition().style('stroke-width', 5);
+
+      d3.select(this).select('text').transition().style('font-size', 25);
+    })
+    .on('mouseleave', function () {
+      d3.select(this).select('circle').transition().style('stroke-width', 1.5);
+      d3.select(this).select('text').transition().style('font-size', 12);
+    })
+    .call(force.drag);
+
+  // add the nodes
+  const ext = d3.extent(d3.values(nodes), d => Math.sqrt(d.total));
+  const circleScale = d3.scale.linear().domain(ext).range([3, 30]);
+
+  node.append('circle').attr('r', d => circleScale(Math.sqrt(d.total)));
+
+  // add the text
+  node
+    .append('text')
+    .attr('x', 6)
+    .attr('dy', '.35em')
+    .text(d => d.name);
+}
+
+ForceDirected.displayName = 'ForceDirected';
+ForceDirected.propTypes = propTypes;
+
+export default ForceDirected;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/ReactForceDirected.jsx b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/ReactForceDirected.jsx
new file mode 100644
index 0000000..90088cb
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/ReactForceDirected.jsx
@@ -0,0 +1,56 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { reactify, styled } from '@superset-ui/core';
+import PropTypes from 'prop-types';
+import Component from './ForceDirected';
+
+const ReactComponent = reactify(Component);
+
+const ForceDirected = ({ className, ...otherProps }) => (
+  <div className={className}>
+    <ReactComponent {...otherProps} />
+  </div>
+);
+
+ForceDirected.propTypes = {
+  className: PropTypes.string.isRequired,
+};
+
+export default styled(ForceDirected)`
+  .superset-legacy-chart-force-directed {
+    path.link {
+      fill: none;
+      stroke: #000;
+      stroke-width: 1.5px;
+    }
+    circle {
+      fill: #ccc;
+      stroke: #000;
+      stroke-width: 1.5px;
+      stroke-opacity: 1;
+      opacity: 0.75;
+    }
+    text {
+      fill: #000;
+      font: 10px sans-serif;
+      pointer-events: none;
+    }
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/controlPanel.ts
new file mode 100644
index 0000000..2255958
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/controlPanel.ts
@@ -0,0 +1,82 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { formatSelectOptions, sections } from '@superset-ui/chart-controls';
+
+export default {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['groupby'], ['metric'], ['adhoc_filters'], ['row_limit']],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'link_length',
+            config: {
+              type: 'SelectControl',
+              renderTrigger: true,
+              freeForm: true,
+              label: t('Link Length'),
+              default: '200',
+              choices: formatSelectOptions(['10', '25', '50', '75', '100', '150', '200', '250']),
+              description: t('Link length in the force layout'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'charge',
+            config: {
+              type: 'SelectControl',
+              renderTrigger: true,
+              freeForm: true,
+              label: t('Charge'),
+              default: '-500',
+              choices: formatSelectOptions([
+                '-50',
+                '-75',
+                '-100',
+                '-150',
+                '-200',
+                '-250',
+                '-500',
+                '-1000',
+                '-2500',
+                '-5000',
+              ]),
+              description: t('Charge in the force layout'),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    groupby: {
+      label: t('Source / Target'),
+      description: t('Choose a source and a target'),
+    },
+  },
+};
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/images/thumbnail.png
new file mode 100644
index 0000000..e7fad14
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..d3d3031
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/index.js
new file mode 100644
index 0000000..87eb07b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://bl.ocks.org/d3noob/5141278'],
+  description: '',
+  name: t('Force-directed Graph'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class ForceDirectedChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactForceDirected'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/transformProps.js
new file mode 100644
index 0000000..d463407
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/src/transformProps.js
@@ -0,0 +1,30 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { charge, linkLength } = formData;
+
+  return {
+    charge,
+    data: queriesData[0].data,
+    height,
+    linkLength,
+    width,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-force-directed/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-force-directed/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-force-directed/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/README.md b/superset-frontend/plugins/legacy-plugin-chart-heatmap/README.md
new file mode 100644
index 0000000..35bb9ce
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-heatmap
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-heatmap.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-heatmap)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-heatmap&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-heatmap)
+
+This plugin provides Heatmap for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import HeatmapChartPlugin from '@superset-ui/legacy-plugin-chart-heatmap';
+
+new HeatmapChartPlugin().configure({ key: 'heatmap' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-heatmap)
+for more details.
+
+```js
+<SuperChart
+  chartType="heatmap"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/package.json b/superset-frontend/plugins/legacy-plugin-chart-heatmap/package.json
new file mode 100644
index 0000000..81c6d0b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/package.json
@@ -0,0 +1,38 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-heatmap",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Heatmap",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "d3-svg-legend": "^1.x",
+    "d3-tip": "^0.9.1",
+    "prop-types": "^15.6.2"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/Heatmap.css b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/Heatmap.css
new file mode 100644
index 0000000..2d44fd8
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/Heatmap.css
@@ -0,0 +1,72 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+.superset-legacy-chart-heatmap {
+  position: relative;
+  top: 0;
+  left: 0;
+  height: 100%;
+}
+
+.superset-legacy-chart-heatmap .axis text {
+  font: 12px sans-serif;
+  text-rendering: optimizeLegibility;
+  fill: #555;
+}
+
+.superset-legacy-chart-heatmap .background-rect {
+  stroke: #ddd;
+  fill-opacity: 0;
+  pointer-events: all;
+}
+
+.superset-legacy-chart-heatmap .axis path,
+.superset-legacy-chart-heatmap .axis line {
+  fill: none;
+  stroke: #ddd;
+  shape-rendering: crispEdges;
+}
+
+.superset-legacy-chart-heatmap canvas,
+.superset-legacy-chart-heatmap img {
+  image-rendering: optimizeSpeed; /* Older versions of FF          */
+  image-rendering: -moz-crisp-edges; /* FF 6.0+                       */
+  image-rendering: -webkit-optimize-contrast; /* Safari                        */
+  image-rendering: -o-crisp-edges; /* OS X & Windows Opera (12.02+) */
+  image-rendering: pixelated; /* Awesome future-browsers       */
+  -ms-interpolation-mode: nearest-neighbor; /* IE                            */
+}
+
+.superset-legacy-chart-heatmap .legendCells text {
+  font-size: 10px;
+  font-weight: normal;
+  opacity: 0;
+}
+
+.superset-legacy-chart-heatmap .legendCells .cell:first-child text {
+  opacity: 1;
+}
+.superset-legacy-chart-heatmap .legendCells .cell:last-child text {
+  opacity: 1;
+}
+
+.dashboard .superset-legacy-chart-heatmap .axis text {
+  font-size: 10px;
+  opacity: 0.75;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/Heatmap.js b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/Heatmap.js
new file mode 100644
index 0000000..dcf9f65
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/Heatmap.js
@@ -0,0 +1,366 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable func-names, react/sort-prop-types */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+import 'd3-svg-legend';
+import d3tip from 'd3-tip';
+import { getNumberFormatter, NumberFormats, getSequentialSchemeRegistry } from '@superset-ui/core';
+
+import './vendor/d3tip.css';
+import './Heatmap.css';
+
+const propTypes = {
+  data: PropTypes.shape({
+    records: PropTypes.arrayOf(
+      PropTypes.shape({
+        x: PropTypes.string,
+        y: PropTypes.string,
+        v: PropTypes.number,
+        perc: PropTypes.number,
+        rank: PropTypes.number,
+      }),
+    ),
+    extents: PropTypes.arrayOf(PropTypes.number),
+  }),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  bottomMargin: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
+  colorScheme: PropTypes.string,
+  columnX: PropTypes.string,
+  columnY: PropTypes.string,
+  leftMargin: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
+  metric: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
+  normalized: PropTypes.bool,
+  numberFormat: PropTypes.string,
+  showLegend: PropTypes.bool,
+  showPercentage: PropTypes.bool,
+  showValues: PropTypes.bool,
+  sortXAxis: PropTypes.string,
+  sortYAxis: PropTypes.string,
+  xScaleInterval: PropTypes.number,
+  yScaleInterval: PropTypes.number,
+  yAxisBounds: PropTypes.arrayOf(PropTypes.number),
+};
+
+function cmp(a, b) {
+  return a > b ? 1 : -1;
+}
+
+// Inspired from http://bl.ocks.org/mbostock/3074470
+// https://jsfiddle.net/cyril123/h0reyumq/
+function Heatmap(element, props) {
+  const {
+    data,
+    width,
+    height,
+    bottomMargin,
+    canvasImageRendering,
+    colorScheme,
+    columnX,
+    columnY,
+    leftMargin,
+    metric,
+    normalized,
+    numberFormat,
+    showLegend,
+    showPercentage,
+    showValues,
+    sortXAxis,
+    sortYAxis,
+    xScaleInterval,
+    yScaleInterval,
+    yAxisBounds,
+  } = props;
+
+  const { records, extents } = data;
+
+  const margin = {
+    top: 10,
+    right: 10,
+    bottom: 35,
+    left: 35,
+  };
+  const valueFormatter = getNumberFormatter(numberFormat);
+
+  // Dynamically adjusts  based on max x / y category lengths
+  function adjustMargins() {
+    const pixelsPerCharX = 4.5; // approx, depends on font size
+    const pixelsPerCharY = 6; // approx, depends on font size
+    let longestX = 1;
+    let longestY = 1;
+
+    records.forEach(datum => {
+      longestX = Math.max(longestX, (datum.x && datum.x.toString().length) || 1);
+      longestY = Math.max(longestY, (datum.y && datum.y.toString().length) || 1);
+    });
+
+    if (leftMargin === 'auto') {
+      margin.left = Math.ceil(Math.max(margin.left, pixelsPerCharY * longestY));
+    } else {
+      margin.left = leftMargin;
+    }
+
+    if (showLegend) {
+      margin.right += 40;
+    }
+
+    margin.bottom =
+      bottomMargin === 'auto'
+        ? Math.ceil(Math.max(margin.bottom, pixelsPerCharX * longestX))
+        : bottomMargin;
+  }
+
+  function ordScale(k, rangeBands, sortMethod) {
+    let domain = {};
+    const actualKeys = {}; // hack to preserve type of keys when number
+    records.forEach(d => {
+      domain[d[k]] = (domain[d[k]] || 0) + d.v;
+      actualKeys[d[k]] = d[k];
+    });
+    // Not usgin object.keys() as it converts to strings
+    const keys = Object.keys(actualKeys).map(s => actualKeys[s]);
+    if (sortMethod === 'alpha_asc') {
+      domain = keys.sort(cmp);
+    } else if (sortMethod === 'alpha_desc') {
+      domain = keys.sort(cmp).reverse();
+    } else if (sortMethod === 'value_desc') {
+      domain = Object.keys(domain).sort((a, b) => (domain[a] > domain[b] ? -1 : 1));
+    } else if (sortMethod === 'value_asc') {
+      domain = Object.keys(domain).sort((a, b) => (domain[b] > domain[a] ? -1 : 1));
+    }
+
+    if (k === 'y' && rangeBands) {
+      domain.reverse();
+    }
+
+    if (rangeBands) {
+      return d3.scale.ordinal().domain(domain).rangeBands(rangeBands);
+    }
+
+    return d3.scale.ordinal().domain(domain).range(d3.range(domain.length));
+  }
+
+  // eslint-disable-next-line no-param-reassign
+  element.innerHTML = '';
+  const matrix = {};
+
+  adjustMargins();
+
+  const hmWidth = width - (margin.left + margin.right);
+  const hmHeight = height - (margin.bottom + margin.top);
+  const fp = getNumberFormatter(NumberFormats.PERCENT);
+
+  const xScale = ordScale('x', null, sortXAxis);
+  const yScale = ordScale('y', null, sortYAxis);
+  const xRbScale = ordScale('x', [0, hmWidth], sortXAxis);
+  const yRbScale = ordScale('y', [hmHeight, 0], sortYAxis);
+  const X = 0;
+  const Y = 1;
+  const heatmapDim = [xRbScale.domain().length, yRbScale.domain().length];
+
+  const minBound = yAxisBounds[0] || 0;
+  const maxBound = yAxisBounds[1] || 1;
+  const colorScale = getSequentialSchemeRegistry()
+    .get(colorScheme)
+    .createLinearScale([minBound, maxBound]);
+
+  const scale = [
+    d3.scale.linear().domain([0, heatmapDim[X]]).range([0, hmWidth]),
+    d3.scale.linear().domain([0, heatmapDim[Y]]).range([0, hmHeight]),
+  ];
+
+  const container = d3.select(element);
+  container.classed('superset-legacy-chart-heatmap', true);
+
+  const canvas = container
+    .append('canvas')
+    .attr('width', heatmapDim[X])
+    .attr('height', heatmapDim[Y])
+    .style('width', `${hmWidth}px`)
+    .style('height', `${hmHeight}px`)
+    .style('image-rendering', canvasImageRendering)
+    .style('left', `${margin.left}px`)
+    .style('top', `${margin.top}px`)
+    .style('position', 'absolute');
+
+  const svg = container
+    .append('svg')
+    .attr('width', width)
+    .attr('height', height)
+    .style('position', 'relative');
+
+  if (showValues) {
+    const cells = svg
+      .selectAll('rect')
+      .data(records)
+      .enter()
+      .append('g')
+      .attr('transform', `translate(${margin.left}, ${margin.top})`);
+
+    cells
+      .append('text')
+      .attr('transform', d => `translate(${xRbScale(d.x)}, ${yRbScale(d.y)})`)
+      .attr('y', yRbScale.rangeBand() / 2)
+      .attr('x', xRbScale.rangeBand() / 2)
+      .attr('text-anchor', 'middle')
+      .attr('dy', '.35em')
+      .text(d => valueFormatter(d.v))
+      .attr('font-size', `${Math.min(yRbScale.rangeBand(), xRbScale.rangeBand()) / 3}px`)
+      .attr('fill', d => (d.v >= extents[1] / 2 ? 'white' : 'black'));
+  }
+
+  if (showLegend) {
+    const colorLegend = d3.legend
+      .color()
+      .labelFormat(valueFormatter)
+      .scale(colorScale)
+      .shapePadding(0)
+      .cells(10)
+      .shapeWidth(10)
+      .shapeHeight(10)
+      .labelOffset(3);
+
+    svg
+      .append('g')
+      .attr('transform', `translate(${width - 40}, ${margin.top})`)
+      .call(colorLegend);
+  }
+
+  const tip = d3tip()
+    .attr('class', 'd3-tip')
+    .offset(function () {
+      const k = d3.mouse(this);
+      const x = k[0] - hmWidth / 2;
+
+      return [k[1] - 20, x];
+    })
+    .html(function () {
+      let s = '';
+      const k = d3.mouse(this);
+      const m = Math.floor(scale[0].invert(k[0]));
+      const n = Math.floor(scale[1].invert(k[1]));
+      const metricLabel = typeof metric === 'object' ? metric.label : metric;
+      if (m in matrix && n in matrix[m]) {
+        const obj = matrix[m][n];
+        s += `<div><b>${columnX}: </b>${obj.x}<div>`;
+        s += `<div><b>${columnY}: </b>${obj.y}<div>`;
+        s += `<div><b>${metricLabel}: </b>${valueFormatter(obj.v)}<div>`;
+        if (showPercentage) {
+          s += `<div><b>%: </b>${fp(normalized ? obj.rank : obj.perc)}<div>`;
+        }
+        tip.style('display', null);
+      } else {
+        // this is a hack to hide the tooltip because we have map it to a single <rect>
+        // d3-tip toggles opacity and calling hide here is undone by the lib after this call
+        tip.style('display', 'none');
+      }
+
+      return s;
+    });
+
+  const rect = svg
+    .append('g')
+    .attr('transform', `translate(${margin.left}, ${margin.top})`)
+    .append('rect')
+    .classed('background-rect', true)
+    .on('mousemove', tip.show)
+    .on('mouseout', tip.hide)
+    .attr('width', hmWidth)
+    .attr('height', hmHeight);
+
+  rect.call(tip);
+
+  const xAxis = d3.svg
+    .axis()
+    .scale(xRbScale)
+    .outerTickSize(0)
+    .tickValues(xRbScale.domain().filter((d, i) => !(i % xScaleInterval)))
+    .orient('bottom');
+
+  const yAxis = d3.svg
+    .axis()
+    .scale(yRbScale)
+    .outerTickSize(0)
+    .tickValues(yRbScale.domain().filter((d, i) => !(i % yScaleInterval)))
+    .orient('left');
+
+  svg
+    .append('g')
+    .attr('class', 'x axis')
+    .attr('transform', `translate(${margin.left},${margin.top + hmHeight})`)
+    .call(xAxis)
+    .selectAll('text')
+    .attr('x', -4)
+    .attr('y', 10)
+    .attr('dy', '0.3em')
+    .style('text-anchor', 'end')
+    .attr('transform', 'rotate(-45)');
+
+  svg
+    .append('g')
+    .attr('class', 'y axis')
+    .attr('transform', `translate(${margin.left},${margin.top})`)
+    .call(yAxis);
+
+  const context = canvas.node().getContext('2d');
+  context.imageSmoothingEnabled = false;
+
+  // Compute the pixel colors; scaled by CSS.
+  function createImageObj() {
+    const imageObj = new Image();
+    const image = context.createImageData(heatmapDim[0], heatmapDim[1]);
+    const pixs = {};
+    records.forEach(d => {
+      const c = d3.rgb(colorScale(normalized ? d.rank : d.perc));
+      const x = xScale(d.x);
+      const y = yScale(d.y);
+      pixs[x + y * xScale.domain().length] = c;
+      if (matrix[x] === undefined) {
+        matrix[x] = {};
+      }
+      if (matrix[x][y] === undefined) {
+        matrix[x][y] = d;
+      }
+    });
+
+    let p = 0;
+    for (let i = 0; i < heatmapDim[0] * heatmapDim[1]; i += 1) {
+      let c = pixs[i];
+      let alpha = 255;
+      if (c === undefined) {
+        c = d3.rgb('#F00');
+        alpha = 0;
+      }
+      image.data[p + 0] = c.r;
+      image.data[p + 1] = c.g;
+      image.data[p + 2] = c.b;
+      image.data[p + 3] = alpha;
+      p += 4;
+    }
+    context.putImageData(image, 0, 0);
+    imageObj.src = canvas.node().toDataURL();
+  }
+  createImageObj();
+}
+
+Heatmap.displayName = 'Heatmap';
+Heatmap.propTypes = propTypes;
+
+export default Heatmap;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/ReactHeatmap.js b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/ReactHeatmap.js
new file mode 100644
index 0000000..6b98c23
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/ReactHeatmap.js
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { reactify } from '@superset-ui/core';
+import Component from './Heatmap';
+
+export default reactify(Component);
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.ts
new file mode 100644
index 0000000..b9a7ff5
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.ts
@@ -0,0 +1,266 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import {
+  columnChoices,
+  ControlPanelConfig,
+  formatSelectOptions,
+  formatSelectOptionsForRange,
+  sections,
+} from '@superset-ui/chart-controls';
+
+const sortAxisChoices = [
+  ['alpha_asc', t('Axis ascending')],
+  ['alpha_desc', t('Axis descending')],
+  ['value_asc', t('Metric ascending')],
+  ['value_desc', t('Metric descending')],
+];
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'all_columns_x',
+            config: {
+              type: 'SelectControl',
+              label: 'X Axis',
+              default: null,
+              description: t('Columns to display'),
+              mapStateToProps: state => ({
+                choices: columnChoices(state.datasource),
+              }),
+              validators: [validateNonEmpty],
+            },
+          },
+          {
+            name: 'all_columns_y',
+            config: {
+              type: 'SelectControl',
+              label: 'Y Axis',
+              default: null,
+              description: t('Columns to display'),
+              mapStateToProps: state => ({
+                choices: columnChoices(state.datasource),
+              }),
+              validators: [validateNonEmpty],
+            },
+          },
+        ],
+        ['metric'],
+        ['adhoc_filters'],
+        ['row_limit'],
+      ],
+    },
+    {
+      label: t('Heatmap Options'),
+      expanded: true,
+      tabOverride: 'customize',
+      controlSetRows: [
+        ['linear_color_scheme'],
+        [
+          {
+            name: 'xscale_interval',
+            config: {
+              type: 'SelectControl',
+              label: t('XScale Interval'),
+              renderTrigger: true,
+              choices: formatSelectOptionsForRange(1, 50),
+              default: '1',
+              clearable: false,
+              description: t('Number of steps to take between ticks when displaying the X scale'),
+            },
+          },
+          {
+            name: 'yscale_interval',
+            config: {
+              type: 'SelectControl',
+              label: t('YScale Interval'),
+              choices: formatSelectOptionsForRange(1, 50),
+              default: '1',
+              clearable: false,
+              renderTrigger: true,
+              description: t('Number of steps to take between ticks when displaying the Y scale'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'canvas_image_rendering',
+            config: {
+              type: 'SelectControl',
+              label: t('Rendering'),
+              renderTrigger: true,
+              choices: [
+                ['pixelated', 'pixelated (Sharp)'],
+                ['auto', 'auto (Smooth)'],
+              ],
+              default: 'pixelated',
+              description: t(
+                'image-rendering CSS attribute of the canvas object that ' +
+                  'defines how the browser scales up the image',
+              ),
+            },
+          },
+          {
+            name: 'normalize_across',
+            config: {
+              type: 'SelectControl',
+              label: t('Normalize Across'),
+              choices: [
+                ['heatmap', 'heatmap'],
+                ['x', 'x'],
+                ['y', 'y'],
+              ],
+              default: 'heatmap',
+              description: t(
+                'Color will be rendered based on a ratio ' +
+                  'of the cell against the sum of across this ' +
+                  'criteria',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'left_margin',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              clearable: false,
+              label: t('Left Margin'),
+              choices: formatSelectOptions(['auto', 50, 75, 100, 125, 150, 200]),
+              default: 'auto',
+              renderTrigger: true,
+              description: t('Left margin, in pixels, allowing for more room for axis labels'),
+            },
+          },
+          {
+            name: 'bottom_margin',
+            config: {
+              type: 'SelectControl',
+              clearable: false,
+              freeForm: true,
+              label: t('Bottom Margin'),
+              choices: formatSelectOptions(['auto', 50, 75, 100, 125, 150, 200]),
+              default: 'auto',
+              renderTrigger: true,
+              description: t('Bottom margin, in pixels, allowing for more room for axis labels'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'y_axis_bounds',
+            config: {
+              type: 'BoundsControl',
+              label: t('Value bounds'),
+              renderTrigger: true,
+              default: [null, null],
+              description: t(
+                'Hard value bounds applied for color coding. Is only relevant ' +
+                  'and applied when the normalization is applied against the whole heatmap.',
+              ),
+            },
+          },
+          'y_axis_format',
+        ],
+        [
+          {
+            name: 'show_legend',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Legend'),
+              renderTrigger: true,
+              default: false,
+              description: t('Whether to display the legend (toggles)'),
+            },
+          },
+          {
+            name: 'show_perc',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show percentage'),
+              renderTrigger: true,
+              description: t('Whether to include the percentage in the tooltip'),
+              default: true,
+            },
+          },
+        ],
+        [
+          {
+            name: 'show_values',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Values'),
+              renderTrigger: true,
+              default: false,
+              description: t('Whether to display the numerical values within the cells'),
+            },
+          },
+          {
+            name: 'normalized',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Normalized'),
+              renderTrigger: true,
+              description: t(
+                'Whether to apply a normal distribution based on rank on the color scale',
+              ),
+              default: false,
+            },
+          },
+        ],
+        [
+          {
+            name: 'sort_x_axis',
+            config: {
+              type: 'SelectControl',
+              label: t('Sort X Axis'),
+              choices: sortAxisChoices,
+              clearable: false,
+              default: 'alpha_asc',
+            },
+          },
+          {
+            name: 'sort_y_axis',
+            config: {
+              type: 'SelectControl',
+              label: t('Sort Y Axis'),
+              choices: sortAxisChoices,
+              clearable: false,
+              default: 'alpha_asc',
+            },
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    y_axis_format: {
+      label: t('Value Format'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/images/thumbnail.png
new file mode 100644
index 0000000..f1703fc
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..1dfeabb
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js
new file mode 100644
index 0000000..aa82119
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://bl.ocks.org/mbostock/3074470'],
+  description: '',
+  name: t('Heatmap'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class HeatmapChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactHeatmap.js'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/transformProps.js
new file mode 100644
index 0000000..9381250
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/transformProps.js
@@ -0,0 +1,63 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const {
+    bottomMargin,
+    canvasImageRendering,
+    allColumnsX,
+    allColumnsY,
+    linearColorScheme,
+    leftMargin,
+    metric,
+    normalized,
+    showLegend,
+    showPerc,
+    showValues,
+    sortXAxis,
+    sortYAxis,
+    xscaleInterval,
+    yscaleInterval,
+    yAxisBounds,
+    yAxisFormat,
+  } = formData;
+
+  return {
+    width,
+    height,
+    data: queriesData[0].data,
+    bottomMargin,
+    canvasImageRendering,
+    colorScheme: linearColorScheme,
+    columnX: allColumnsX,
+    columnY: allColumnsY,
+    leftMargin,
+    metric,
+    normalized,
+    numberFormat: yAxisFormat,
+    showLegend,
+    showPercentage: showPerc,
+    showValues,
+    sortXAxis,
+    sortYAxis,
+    xScaleInterval: parseInt(xscaleInterval, 10),
+    yScaleInterval: parseInt(yscaleInterval, 10),
+    yAxisBounds,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/vendor/d3tip.css b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/vendor/d3tip.css
new file mode 100644
index 0000000..980a5be
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/src/vendor/d3tip.css
@@ -0,0 +1,74 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* from d3-tip */
+.d3-tip {
+  line-height: 1;
+  padding: 12px;
+  background: rgba(0, 0, 0, 0.8);
+  color: #fff;
+  border-radius: 2px;
+  pointer-events: none;
+  z-index: 1000;
+}
+
+/* Creates a small triangle extender for the tooltip */
+.d3-tip:after {
+  box-sizing: border-box;
+  display: inline;
+  font-size: 10px;
+  width: 100%;
+  line-height: 1;
+  color: rgba(0, 0, 0, 0.8);
+  position: absolute;
+  pointer-events: none;
+}
+
+/* Northward tooltips */
+.d3-tip.n:after {
+  content: '\25BC';
+  margin: -1px 0 0 0;
+  top: 100%;
+  left: 0;
+  text-align: center;
+}
+
+/* Eastward tooltips */
+.d3-tip.e:after {
+  content: '\25C0';
+  margin: -4px 0 0 0;
+  top: 50%;
+  left: -8px;
+}
+
+/* Southward tooltips */
+.d3-tip.s:after {
+  content: '\25B2';
+  margin: 0 0 1px 0;
+  top: -8px;
+  left: 0;
+  text-align: center;
+}
+
+/* Westward tooltips */
+.d3-tip.w:after {
+  content: '\25B6';
+  margin: -4px 0 0 -1px;
+  top: 50%;
+  left: 100%;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-heatmap/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/README.md b/superset-frontend/plugins/legacy-plugin-chart-histogram/README.md
new file mode 100644
index 0000000..d1f4222
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-histogram
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-histogram.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-histogram)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-histogram&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-histogram)
+
+This plugin provides Histogram for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import HistogramChartPlugin from '@superset-ui/legacy-plugin-chart-histogram';
+
+new HistogramChartPlugin().configure({ key: 'histogram' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-histogram)
+for more details.
+
+```js
+<SuperChart
+  chartType="histogram"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/package.json b/superset-frontend/plugins/legacy-plugin-chart-histogram/package.json
new file mode 100644
index 0000000..1b72373
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/package.json
@@ -0,0 +1,43 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-histogram",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Histogram",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@data-ui/histogram": "^0.0.84",
+    "@data-ui/theme": "^0.0.84",
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "@vx/legend": "^0.0.198",
+    "@vx/responsive": "^0.0.199",
+    "@vx/scale": "^0.0.197",
+    "prop-types": "^15.6.2"
+  },
+  "peerDependencies": {
+    "react": "^15 || ^16"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx
new file mode 100644
index 0000000..a579f78
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx
@@ -0,0 +1,149 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/sort-prop-types */
+import PropTypes from 'prop-types';
+import React from 'react';
+import { Histogram, BarSeries, XAxis, YAxis } from '@data-ui/histogram';
+import { chartTheme } from '@data-ui/theme';
+import { LegendOrdinal } from '@vx/legend';
+import { scaleOrdinal } from '@vx/scale';
+import { CategoricalColorNamespace, styled } from '@superset-ui/core';
+import WithLegend from './WithLegend';
+
+const propTypes = {
+  className: PropTypes.string,
+  data: PropTypes.arrayOf(
+    PropTypes.shape({
+      key: PropTypes.string,
+      values: PropTypes.arrayOf(PropTypes.number),
+    }),
+  ).isRequired,
+  width: PropTypes.number.isRequired,
+  height: PropTypes.number.isRequired,
+  colorScheme: PropTypes.string,
+  normalized: PropTypes.bool,
+  binCount: PropTypes.number,
+  opacity: PropTypes.number,
+  xAxisLabel: PropTypes.string,
+  yAxisLabel: PropTypes.string,
+  showLegend: PropTypes.bool,
+};
+const defaultProps = {
+  binCount: 15,
+  className: '',
+  colorScheme: '',
+  normalized: false,
+  opacity: 1,
+  xAxisLabel: '',
+  yAxisLabel: '',
+};
+
+class CustomHistogram extends React.PureComponent {
+  render() {
+    const {
+      className,
+      data,
+      width,
+      height,
+      binCount,
+      colorScheme,
+      normalized,
+      opacity,
+      xAxisLabel,
+      yAxisLabel,
+      showLegend,
+    } = this.props;
+
+    const colorFn = CategoricalColorNamespace.getScale(colorScheme);
+    const keys = data.map(d => d.key);
+    const colorScale = scaleOrdinal({
+      domain: keys,
+      range: keys.map(x => colorFn(x)),
+    });
+
+    return (
+      <WithLegend
+        className={`superset-legacy-chart-histogram ${className}`}
+        width={width}
+        height={height}
+        position="top"
+        renderLegend={({ direction, style }) =>
+          showLegend && (
+            <LegendOrdinal
+              style={style}
+              scale={colorScale}
+              direction={direction}
+              shape="rect"
+              labelMargin="0 15px 0 0"
+            />
+          )
+        }
+        renderChart={parent => (
+          <Histogram
+            width={parent.width}
+            height={parent.height}
+            ariaLabel="Histogram"
+            normalized={normalized}
+            binCount={binCount}
+            binType="numeric"
+            margin={{ top: 20, right: 20 }}
+            renderTooltip={({ datum, color }) => (
+              <div>
+                <strong style={{ color }}>
+                  {datum.bin0} to {datum.bin1}
+                </strong>
+                <div>
+                  <strong>count </strong>
+                  {datum.count}
+                </div>
+                <div>
+                  <strong>cumulative </strong>
+                  {datum.cumulative}
+                </div>
+              </div>
+            )}
+            valueAccessor={datum => datum}
+            theme={chartTheme}
+          >
+            {data.map(series => (
+              <BarSeries
+                key={series.key}
+                animated
+                rawData={series.values}
+                fill={colorScale(series.key)}
+                fillOpacity={opacity}
+              />
+            ))}
+            <XAxis label={xAxisLabel} />
+            <YAxis label={yAxisLabel} />
+          </Histogram>
+        )}
+      />
+    );
+  }
+}
+
+CustomHistogram.propTypes = propTypes;
+CustomHistogram.defaultProps = defaultProps;
+
+export default styled(CustomHistogram)`
+  .superset-legacy-chart-histogram {
+    overflow: hidden;
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/src/WithLegend.jsx b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/WithLegend.jsx
new file mode 100644
index 0000000..867dd52
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/WithLegend.jsx
@@ -0,0 +1,152 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/sort-prop-types, react/jsx-sort-default-props */
+import React from 'react';
+import PropTypes from 'prop-types';
+import { ParentSize } from '@vx/responsive';
+
+const propTypes = {
+  className: PropTypes.string,
+  width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
+  height: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
+  renderChart: PropTypes.func.isRequired,
+  renderLegend: PropTypes.func.isRequired,
+  position: PropTypes.oneOf(['top', 'left', 'bottom', 'right']),
+  legendJustifyContent: PropTypes.oneOf(['center', 'flex-start', 'flex-end']),
+};
+const defaultProps = {
+  className: '',
+  width: 'auto',
+  height: 'auto',
+  position: 'top',
+  legendJustifyContent: undefined,
+};
+
+const LEGEND_STYLE_BASE = {
+  display: 'flex',
+  flexGrow: 0,
+  flexShrink: 0,
+  order: -1,
+  paddingTop: '5px',
+  fontSize: '0.9em',
+};
+
+const CHART_STYLE_BASE = {
+  flexGrow: 1,
+  flexShrink: 1,
+  flexBasis: 'auto',
+  position: 'relative',
+};
+
+class WithLegend extends React.Component {
+  getContainerDirection() {
+    const { position } = this.props;
+    switch (position) {
+      case 'left':
+        return 'row';
+      case 'right':
+        return 'row-reverse';
+      case 'bottom':
+        return 'column-reverse';
+      default:
+      case 'top':
+        return 'column';
+    }
+  }
+
+  getLegendJustifyContent() {
+    const { legendJustifyContent, position } = this.props;
+    if (legendJustifyContent) {
+      return legendJustifyContent;
+    }
+    switch (position) {
+      case 'left':
+        return 'flex-start';
+      case 'right':
+        return 'flex-start';
+      case 'bottom':
+        return 'flex-end';
+      default:
+      case 'top':
+        return 'flex-end';
+    }
+  }
+
+  render() {
+    const { className, width, height, position, renderChart, renderLegend } = this.props;
+
+    const isHorizontal = position === 'left' || position === 'right';
+
+    const style = {
+      display: 'flex',
+      flexDirection: this.getContainerDirection(),
+    };
+    if (width) {
+      style.width = width;
+    }
+    if (height) {
+      style.height = height;
+    }
+
+    const chartStyle = { ...CHART_STYLE_BASE };
+    if (isHorizontal) {
+      chartStyle.width = 0;
+    } else {
+      chartStyle.height = 0;
+    }
+
+    const legendDirection = isHorizontal ? 'column' : 'row';
+    const legendStyle = {
+      ...LEGEND_STYLE_BASE,
+      flexDirection: legendDirection,
+      justifyContent: this.getLegendJustifyContent(),
+    };
+    const legendContainerStyle = {
+      flexWrap: 'wrap',
+      display: 'flex',
+      flexDirection: legendDirection,
+    };
+    return (
+      <div className={`with-legend ${className}`} style={style}>
+        <div className="legend-container" style={legendStyle}>
+          {renderLegend({
+            // Pass flexDirection for @vx/legend to arrange legend items
+            direction: legendDirection,
+            style: legendContainerStyle,
+          })}
+        </div>
+        <div className="main-container" style={chartStyle}>
+          <ParentSize>
+            {parent =>
+              parent.width > 0 && parent.height > 0
+                ? // Only render when necessary
+                  renderChart(parent)
+                : null
+            }
+          </ParentSize>
+        </div>
+      </div>
+    );
+  }
+}
+
+WithLegend.propTypes = propTypes;
+WithLegend.defaultProps = defaultProps;
+
+export default WithLegend;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts
new file mode 100644
index 0000000..37c9cc9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts
@@ -0,0 +1,122 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import {
+  ControlPanelConfig,
+  columnChoices,
+  formatSelectOptions,
+  sections,
+} from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'all_columns_x',
+            config: {
+              type: 'SelectControl',
+              label: t('Columns'),
+              default: null,
+              description: t('Select the numeric columns to draw the histogram'),
+              mapStateToProps: state => ({
+                choices: columnChoices(state.datasource),
+              }),
+              multi: true,
+              validators: [validateNonEmpty],
+            },
+          },
+        ],
+        ['adhoc_filters'],
+        ['row_limit'],
+        ['groupby'],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme', 'label_colors'],
+        [
+          {
+            name: 'show_legend',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Legend'),
+              renderTrigger: true,
+              default: false,
+              description: t('Whether to display the legend (toggles)'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'link_length',
+            config: {
+              type: 'SelectControl',
+              renderTrigger: true,
+              freeForm: true,
+              label: t('No of Bins'),
+              default: 5,
+              choices: formatSelectOptions(['10', '25', '50', '75', '100', '150', '200', '250']),
+              description: t('Select the number of bins for the histogram'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'x_axis_label',
+            config: {
+              type: 'TextControl',
+              label: t('X Axis Label'),
+              renderTrigger: true,
+              default: '',
+            },
+          },
+          {
+            name: 'y_axis_label',
+            config: {
+              type: 'TextControl',
+              label: t('Y Axis Label'),
+              renderTrigger: true,
+              default: '',
+            },
+          },
+        ],
+        [
+          {
+            name: 'normalized',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Normalized'),
+              renderTrigger: true,
+              description: t('Whether to normalize the histogram'),
+              default: false,
+            },
+          },
+        ],
+      ],
+    },
+  ],
+};
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/images/thumbnail.png
new file mode 100644
index 0000000..22e5ea4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..3c63c0e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js
new file mode 100644
index 0000000..3579f9d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  description: '',
+  name: t('Histogram'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class HistogramChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./Histogram'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/transformProps.js
new file mode 100644
index 0000000..7cd6856
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/transformProps.js
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const {
+    colorScheme,
+    linkLength,
+    normalized,
+    globalOpacity,
+    xAxisLabel,
+    yAxisLabel,
+    showLegend,
+  } = formData;
+
+  return {
+    width,
+    height,
+    data: queriesData[0].data,
+    binCount: parseInt(linkLength, 10),
+    colorScheme,
+    normalized,
+    opacity: globalOpacity,
+    xAxisLabel,
+    yAxisLabel,
+    showLegend,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-histogram/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/README.md b/superset-frontend/plugins/legacy-plugin-chart-horizon/README.md
new file mode 100644
index 0000000..df47bc6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-horizon
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-horizon.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-horizon)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-horizon&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-horizon)
+
+This plugin provides Horizon for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import HorizonChartPlugin from '@superset-ui/legacy-plugin-chart-horizon';
+
+new HorizonChartPlugin().configure({ key: 'horizon' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-horizon)
+for more details.
+
+```js
+<SuperChart
+  chartType="horizon"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/package.json b/superset-frontend/plugins/legacy-plugin-chart-horizon/package.json
new file mode 100644
index 0000000..b6cc7d5
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/package.json
@@ -0,0 +1,40 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-horizon",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Horizon",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3-array": "^2.0.3",
+    "d3-scale": "^3.0.1",
+    "prop-types": "^15.6.2"
+  },
+  "peerDependencies": {
+    "react": "^15 || ^16"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/src/HorizonChart.css b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/HorizonChart.css
new file mode 100644
index 0000000..bbdf6d6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/HorizonChart.css
@@ -0,0 +1,38 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+.superset-legacy-chart-horizon {
+  overflow: auto;
+  position: relative;
+}
+
+.superset-legacy-chart-horizon .horizon-row {
+  border-bottom: solid 1px #ddd;
+  border-top: 0px;
+  padding: 0px;
+  margin: 0px;
+}
+
+.superset-legacy-chart-horizon .horizon-row span.title {
+  position: absolute;
+  color: #333;
+  font-size: 0.8em;
+  margin: 0;
+  text-shadow: 1px 1px rgba(255, 255, 255, 0.75);
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/src/HorizonChart.jsx b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/HorizonChart.jsx
new file mode 100644
index 0000000..833aeba
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/HorizonChart.jsx
@@ -0,0 +1,106 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/jsx-sort-default-props, react/sort-prop-types */
+import React from 'react';
+import PropTypes from 'prop-types';
+import { extent as d3Extent } from 'd3-array';
+import HorizonRow, { DEFAULT_COLORS } from './HorizonRow';
+import './HorizonChart.css';
+
+const propTypes = {
+  className: PropTypes.string,
+  width: PropTypes.number,
+  height: PropTypes.number,
+  seriesHeight: PropTypes.number,
+  data: PropTypes.arrayOf(
+    PropTypes.shape({
+      key: PropTypes.arrayOf(PropTypes.string),
+      values: PropTypes.arrayOf(
+        PropTypes.shape({
+          y: PropTypes.number,
+        }),
+      ),
+    }),
+  ).isRequired,
+  // number of bands in each direction (positive / negative)
+  bands: PropTypes.number,
+  colors: PropTypes.arrayOf(PropTypes.string),
+  colorScale: PropTypes.string,
+  mode: PropTypes.string,
+  offsetX: PropTypes.number,
+};
+const defaultProps = {
+  className: '',
+  width: 800,
+  height: 600,
+  seriesHeight: 20,
+  bands: Math.floor(DEFAULT_COLORS.length / 2),
+  colors: DEFAULT_COLORS,
+  colorScale: 'series',
+  mode: 'offset',
+  offsetX: 0,
+};
+
+class HorizonChart extends React.PureComponent {
+  render() {
+    const {
+      className,
+      width,
+      height,
+      data,
+      seriesHeight,
+      bands,
+      colors,
+      colorScale,
+      mode,
+      offsetX,
+    } = this.props;
+
+    let yDomain;
+    if (colorScale === 'overall') {
+      const allValues = data.reduce((acc, current) => acc.concat(current.values), []);
+      yDomain = d3Extent(allValues, d => d.y);
+    }
+
+    return (
+      <div className={`superset-legacy-chart-horizon ${className}`} style={{ height }}>
+        {data.map(row => (
+          <HorizonRow
+            key={row.key}
+            width={width}
+            height={seriesHeight}
+            title={row.key.join(', ')}
+            data={row.values}
+            bands={bands}
+            colors={colors}
+            colorScale={colorScale}
+            mode={mode}
+            offsetX={offsetX}
+            yDomain={yDomain}
+          />
+        ))}
+      </div>
+    );
+  }
+}
+
+HorizonChart.propTypes = propTypes;
+HorizonChart.defaultProps = defaultProps;
+
+export default HorizonChart;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/src/HorizonRow.jsx b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/HorizonRow.jsx
new file mode 100644
index 0000000..58b124e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/HorizonRow.jsx
@@ -0,0 +1,197 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable no-continue, no-bitwise */
+/* eslint-disable react/jsx-sort-default-props */
+/* eslint-disable react/sort-prop-types */
+import React from 'react';
+import PropTypes from 'prop-types';
+import { extent as d3Extent } from 'd3-array';
+import { scaleLinear } from 'd3-scale';
+
+export const DEFAULT_COLORS = [
+  '#313695',
+  '#4575b4',
+  '#74add1',
+  '#abd9e9',
+  '#fee090',
+  '#fdae61',
+  '#f46d43',
+  '#d73027',
+];
+
+const propTypes = {
+  className: PropTypes.string,
+  width: PropTypes.number,
+  height: PropTypes.number,
+  data: PropTypes.arrayOf(
+    PropTypes.shape({
+      y: PropTypes.number,
+    }),
+  ).isRequired,
+  bands: PropTypes.number,
+  colors: PropTypes.arrayOf(PropTypes.string),
+  colorScale: PropTypes.string,
+  mode: PropTypes.string,
+  offsetX: PropTypes.number,
+  title: PropTypes.string,
+  yDomain: PropTypes.arrayOf(PropTypes.number),
+};
+
+const defaultProps = {
+  className: '',
+  width: 800,
+  height: 20,
+  bands: DEFAULT_COLORS.length >> 1,
+  colors: DEFAULT_COLORS,
+  colorScale: 'series',
+  mode: 'offset',
+  offsetX: 0,
+  title: '',
+  yDomain: undefined,
+};
+
+class HorizonRow extends React.PureComponent {
+  componentDidMount() {
+    this.drawChart();
+  }
+
+  componentDidUpdate() {
+    this.drawChart();
+  }
+
+  componentWillUnmount() {
+    this.canvas = null;
+  }
+
+  drawChart() {
+    if (this.canvas) {
+      const {
+        data: rawData,
+        yDomain,
+        width,
+        height,
+        bands,
+        colors,
+        colorScale,
+        offsetX,
+        mode,
+      } = this.props;
+
+      const data =
+        colorScale === 'change' ? rawData.map(d => ({ ...d, y: d.y - rawData[0].y })) : rawData;
+
+      const context = this.canvas.getContext('2d');
+      context.imageSmoothingEnabled = false;
+      context.clearRect(0, 0, width, height);
+      // Reset transform
+      context.setTransform(1, 0, 0, 1, 0, 0);
+      context.translate(0.5, 0.5);
+
+      const step = width / data.length;
+      // the data frame currently being shown:
+      const startIndex = Math.floor(Math.max(0, -(offsetX / step)));
+      const endIndex = Math.floor(Math.min(data.length, startIndex + width / step));
+
+      // skip drawing if there's no data to be drawn
+      if (startIndex > data.length) {
+        return;
+      }
+
+      // Create y-scale
+      const [min, max] = yDomain || d3Extent(data, d => d.y);
+      const y = scaleLinear()
+        .domain([0, Math.max(-min, max)])
+        .range([0, height]);
+
+      // we are drawing positive & negative bands separately to avoid mutating canvas state
+      // http://www.html5rocks.com/en/tutorials/canvas/performance/
+      let hasNegative = false;
+      // draw positive bands
+      let value;
+      let bExtents;
+      for (let b = 0; b < bands; b += 1) {
+        context.fillStyle = colors[bands + b];
+
+        // Adjust the range based on the current band index.
+        bExtents = (b + 1 - bands) * height;
+        y.range([bands * height + bExtents, bExtents]);
+
+        // only the current data frame is being drawn i.e. what's visible:
+        for (let i = startIndex; i < endIndex; i += 1) {
+          value = data[i].y;
+          if (value <= 0) {
+            hasNegative = true;
+            continue;
+          }
+          if (value !== undefined) {
+            context.fillRect(offsetX + i * step, y(value), step + 1, y(0) - y(value));
+          }
+        }
+      }
+
+      // draw negative bands
+      if (hasNegative) {
+        // mirror the negative bands, by flipping the canvas
+        if (mode === 'offset') {
+          context.translate(0, height);
+          context.scale(1, -1);
+        }
+
+        for (let b = 0; b < bands; b += 1) {
+          context.fillStyle = colors[bands - b - 1];
+
+          // Adjust the range based on the current band index.
+          bExtents = (b + 1 - bands) * height;
+          y.range([bands * height + bExtents, bExtents]);
+
+          // only the current data frame is being drawn i.e. what's visible:
+          for (let ii = startIndex; ii < endIndex; ii += 1) {
+            value = data[ii].y;
+            if (value >= 0) {
+              continue;
+            }
+            context.fillRect(offsetX + ii * step, y(-value), step + 1, y(0) - y(-value));
+          }
+        }
+      }
+    }
+  }
+
+  render() {
+    const { className, title, width, height } = this.props;
+
+    return (
+      <div className={`horizon-row ${className}`}>
+        <span className="title">{title}</span>
+        <canvas
+          ref={c => {
+            this.canvas = c;
+          }}
+          width={width}
+          height={height}
+        />
+      </div>
+    );
+  }
+}
+
+HorizonRow.propTypes = propTypes;
+HorizonRow.defaultProps = defaultProps;
+
+export default HorizonRow;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts
new file mode 100644
index 0000000..9fe3cd9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts
@@ -0,0 +1,96 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, formatSelectOptions, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metrics'],
+        ['adhoc_filters'],
+        ['groupby'],
+        ['limit', 'timeseries_limit_metric'],
+        [
+          {
+            name: 'order_desc',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Sort Descending'),
+              default: true,
+              description: t('Whether to sort descending or ascending'),
+            },
+          },
+          {
+            name: 'contribution',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Contribution'),
+              default: false,
+              description: t('Compute the contribution to the total'),
+            },
+          },
+        ],
+        ['row_limit', null],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'series_height',
+            config: {
+              type: 'SelectControl',
+              renderTrigger: true,
+              freeForm: true,
+              label: t('Series Height'),
+              default: '25',
+              choices: formatSelectOptions(['10', '25', '40', '50', '75', '100', '150', '200']),
+              description: t('Pixel height of each series'),
+            },
+          },
+          {
+            name: 'horizon_color_scale',
+            config: {
+              type: 'SelectControl',
+              renderTrigger: true,
+              label: t('Value Domain'),
+              choices: [
+                ['series', 'series'],
+                ['overall', 'overall'],
+                ['change', 'change'],
+              ],
+              default: 'series',
+              description: t(
+                'series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series',
+              ),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/images/thumbnail.png
new file mode 100644
index 0000000..6e2c5c0
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..f091dd8
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js
new file mode 100644
index 0000000..56be0ca
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://kmandov.github.io/d3-horizon-chart/'],
+  description: '',
+  name: t('Horizon Chart'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class HorizonChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./HorizonChart'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/transformProps.js
new file mode 100644
index 0000000..9fba63a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/src/transformProps.js
@@ -0,0 +1,30 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { height, width, formData, queriesData } = chartProps;
+  const { horizonColorScale, seriesHeight } = formData;
+
+  return {
+    colorScale: horizonColorScale,
+    data: queriesData[0].data,
+    height,
+    seriesHeight: parseInt(seriesHeight, 10),
+    width,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-horizon/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/README.md b/superset-frontend/plugins/legacy-plugin-chart-map-box/README.md
new file mode 100644
index 0000000..1e30ddb
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-map-box
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-map-box.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-map-box)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-map-box&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-map-box)
+
+This plugin provides MapBox for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import MapBoxChartPlugin from '@superset-ui/legacy-plugin-chart-map-box';
+
+new MapBoxChartPlugin().configure({ key: 'map-box' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-map-box)
+for more details.
+
+```js
+<SuperChart
+  chartType="map-box"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/package.json b/superset-frontend/plugins/legacy-plugin-chart-map-box/package.json
new file mode 100644
index 0000000..3aa9077
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/package.json
@@ -0,0 +1,43 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-map-box",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - MapBox",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "immutable": "^3.8.2",
+    "mapbox-gl": "^0.53.0",
+    "prop-types": "^15.6.2",
+    "react-map-gl": "^4.0.10",
+    "supercluster": "^4.1.1",
+    "viewport-mercator-project": "^6.1.1"
+  },
+  "peerDependencies": {
+    "react": "^15 || ^16"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/MapBox.css b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/MapBox.css
new file mode 100644
index 0000000..adade29
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/MapBox.css
@@ -0,0 +1,21 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+.mapbox .slice_container div {
+  padding-top: 0px;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/MapBox.jsx b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/MapBox.jsx
new file mode 100644
index 0000000..8871300
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/MapBox.jsx
@@ -0,0 +1,148 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/jsx-sort-default-props, react/sort-prop-types */
+/* eslint-disable react/forbid-prop-types, react/require-default-props */
+import React from 'react';
+import PropTypes from 'prop-types';
+import MapGL from 'react-map-gl';
+import Immutable from 'immutable';
+import ViewportMercator from 'viewport-mercator-project';
+import ScatterPlotGlowOverlay from './ScatterPlotGlowOverlay';
+import './MapBox.css';
+
+const NOOP = () => {};
+export const DEFAULT_MAX_ZOOM = 16;
+export const DEFAULT_POINT_RADIUS = 60;
+
+const propTypes = {
+  width: PropTypes.number,
+  height: PropTypes.number,
+  aggregatorName: PropTypes.string,
+  clusterer: PropTypes.object,
+  globalOpacity: PropTypes.number,
+  hasCustomMetric: PropTypes.bool,
+  mapStyle: PropTypes.string,
+  mapboxApiKey: PropTypes.string.isRequired,
+  onViewportChange: PropTypes.func,
+  pointRadius: PropTypes.number,
+  pointRadiusUnit: PropTypes.string,
+  renderWhileDragging: PropTypes.bool,
+  rgb: PropTypes.array,
+  bounds: PropTypes.array,
+};
+
+const defaultProps = {
+  width: 400,
+  height: 400,
+  globalOpacity: 1,
+  onViewportChange: NOOP,
+  pointRadius: DEFAULT_POINT_RADIUS,
+  pointRadiusUnit: 'Pixels',
+};
+
+class MapBox extends React.Component {
+  constructor(props) {
+    super(props);
+
+    const { width, height, bounds } = this.props;
+    // Get a viewport that fits the given bounds, which all marks to be clustered.
+    // Derive lat, lon and zoom from this viewport. This is only done on initial
+    // render as the bounds don't update as we pan/zoom in the current design.
+    const mercator = new ViewportMercator({
+      width,
+      height,
+    }).fitBounds(bounds);
+    const { latitude, longitude, zoom } = mercator;
+
+    this.state = {
+      viewport: {
+        longitude,
+        latitude,
+        zoom,
+      },
+    };
+    this.handleViewportChange = this.handleViewportChange.bind(this);
+  }
+
+  handleViewportChange(viewport) {
+    this.setState({ viewport });
+    const { onViewportChange } = this.props;
+    onViewportChange(viewport);
+  }
+
+  render() {
+    const {
+      width,
+      height,
+      aggregatorName,
+      clusterer,
+      globalOpacity,
+      mapStyle,
+      mapboxApiKey,
+      pointRadius,
+      pointRadiusUnit,
+      renderWhileDragging,
+      rgb,
+      hasCustomMetric,
+      bounds,
+    } = this.props;
+    const { viewport } = this.state;
+    const isDragging = viewport.isDragging === undefined ? false : viewport.isDragging;
+
+    // Compute the clusters based on the original bounds and current zoom level. Note when zoom/pan
+    // to an area outside of the original bounds, no additional queries are made to the backend to
+    // retrieve additional data.
+    const bbox = [bounds[0][0], bounds[0][1], bounds[1][0], bounds[1][1]];
+    const clusters = clusterer.getClusters(bbox, Math.round(viewport.zoom));
+
+    return (
+      <MapGL
+        {...viewport}
+        mapStyle={mapStyle}
+        width={width}
+        height={height}
+        mapboxApiAccessToken={mapboxApiKey}
+        onViewportChange={this.handleViewportChange}
+      >
+        <ScatterPlotGlowOverlay
+          {...viewport}
+          isDragging={isDragging}
+          locations={Immutable.fromJS(clusters)}
+          dotRadius={pointRadius}
+          pointRadiusUnit={pointRadiusUnit}
+          rgb={rgb}
+          globalOpacity={globalOpacity}
+          compositeOperation="screen"
+          renderWhileDragging={renderWhileDragging}
+          aggregation={hasCustomMetric ? aggregatorName : null}
+          lngLatAccessor={location => {
+            const coordinates = location.get('geometry').get('coordinates');
+
+            return [coordinates.get(0), coordinates.get(1)];
+          }}
+        />
+      </MapGL>
+    );
+  }
+}
+
+MapBox.propTypes = propTypes;
+MapBox.defaultProps = defaultProps;
+
+export default MapBox;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/ScatterPlotGlowOverlay.jsx b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/ScatterPlotGlowOverlay.jsx
new file mode 100644
index 0000000..1e8f8d9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/ScatterPlotGlowOverlay.jsx
@@ -0,0 +1,234 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/require-default-props */
+import Immutable from 'immutable';
+import PropTypes from 'prop-types';
+import React from 'react';
+import { CanvasOverlay } from 'react-map-gl';
+import { kmToPixels, MILES_PER_KM } from './utils/geo';
+import roundDecimal from './utils/roundDecimal';
+import luminanceFromRGB from './utils/luminanceFromRGB';
+import 'mapbox-gl/dist/mapbox-gl.css';
+
+const propTypes = {
+  aggregation: PropTypes.string,
+  compositeOperation: PropTypes.string,
+  dotRadius: PropTypes.number,
+  lngLatAccessor: PropTypes.func,
+  locations: PropTypes.instanceOf(Immutable.List).isRequired,
+  pointRadiusUnit: PropTypes.string,
+  renderWhileDragging: PropTypes.bool,
+  rgb: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.string, PropTypes.number])),
+  zoom: PropTypes.number,
+};
+
+const defaultProps = {
+  // Same as browser default.
+  compositeOperation: 'source-over',
+  dotRadius: 4,
+  lngLatAccessor: location => [location.get(0), location.get(1)],
+  renderWhileDragging: true,
+};
+
+const computeClusterLabel = (properties, aggregation) => {
+  const count = properties.get('point_count');
+  if (!aggregation) {
+    return count;
+  }
+  if (aggregation === 'sum' || aggregation === 'min' || aggregation === 'max') {
+    return properties.get(aggregation);
+  }
+  const sum = properties.get('sum');
+  const mean = sum / count;
+  if (aggregation === 'mean') {
+    return Math.round(100 * mean) / 100;
+  }
+  const squaredSum = properties.get('squaredSum');
+  const variance = squaredSum / count - (sum / count) ** 2;
+  if (aggregation === 'var') {
+    return Math.round(100 * variance) / 100;
+  }
+  if (aggregation === 'stdev') {
+    return Math.round(100 * Math.sqrt(variance)) / 100;
+  }
+
+  // fallback to point_count, this really shouldn't happen
+  return count;
+};
+
+class ScatterPlotGlowOverlay extends React.PureComponent {
+  constructor(props) {
+    super(props);
+    this.redraw = this.redraw.bind(this);
+  }
+
+  drawText(ctx, pixel, options = {}) {
+    const IS_DARK_THRESHOLD = 110;
+    const { fontHeight = 0, label = '', radius = 0, rgb = [0, 0, 0], shadow = false } = options;
+    const maxWidth = radius * 1.8;
+    const luminance = luminanceFromRGB(rgb[1], rgb[2], rgb[3]);
+
+    ctx.globalCompositeOperation = 'source-over';
+    ctx.fillStyle = luminance <= IS_DARK_THRESHOLD ? 'white' : 'black';
+    ctx.font = `${fontHeight}px sans-serif`;
+    ctx.textAlign = 'center';
+    ctx.textBaseline = 'middle';
+    if (shadow) {
+      ctx.shadowBlur = 15;
+      ctx.shadowColor = luminance <= IS_DARK_THRESHOLD ? 'black' : '';
+    }
+
+    const textWidth = ctx.measureText(label).width;
+    if (textWidth > maxWidth) {
+      const scale = fontHeight / textWidth;
+      ctx.font = `${scale * maxWidth}px sans-serif`;
+    }
+
+    const { compositeOperation } = this.props;
+
+    ctx.fillText(label, pixel[0], pixel[1]);
+    ctx.globalCompositeOperation = compositeOperation;
+    ctx.shadowBlur = 0;
+    ctx.shadowColor = '';
+  }
+
+  // Modified: https://github.com/uber/react-map-gl/blob/master/overlays/scatterplot.react.js
+  redraw({ width, height, ctx, isDragging, project }) {
+    const {
+      aggregation,
+      compositeOperation,
+      dotRadius,
+      lngLatAccessor,
+      locations,
+      pointRadiusUnit,
+      renderWhileDragging,
+      rgb,
+      zoom,
+    } = this.props;
+
+    const radius = dotRadius;
+    const clusterLabelMap = [];
+
+    locations.forEach((location, i) => {
+      if (location.get('properties').get('cluster')) {
+        clusterLabelMap[i] = computeClusterLabel(location.get('properties'), aggregation);
+      }
+    }, this);
+
+    const maxLabel = Math.max(...clusterLabelMap.filter(v => !Number.isNaN(v)));
+
+    ctx.clearRect(0, 0, width, height);
+    ctx.globalCompositeOperation = compositeOperation;
+
+    if ((renderWhileDragging || !isDragging) && locations) {
+      locations.forEach(function _forEach(location, i) {
+        const pixel = project(lngLatAccessor(location));
+        const pixelRounded = [roundDecimal(pixel[0], 1), roundDecimal(pixel[1], 1)];
+
+        if (
+          pixelRounded[0] + radius >= 0 &&
+          pixelRounded[0] - radius < width &&
+          pixelRounded[1] + radius >= 0 &&
+          pixelRounded[1] - radius < height
+        ) {
+          ctx.beginPath();
+          if (location.get('properties').get('cluster')) {
+            let clusterLabel = clusterLabelMap[i];
+            const scaledRadius = roundDecimal((clusterLabel / maxLabel) ** 0.5 * radius, 1);
+            const fontHeight = roundDecimal(scaledRadius * 0.5, 1);
+            const [x, y] = pixelRounded;
+            const gradient = ctx.createRadialGradient(x, y, scaledRadius, x, y, 0);
+
+            gradient.addColorStop(1, `rgba(${rgb[1]}, ${rgb[2]}, ${rgb[3]}, 0.8)`);
+            gradient.addColorStop(0, `rgba(${rgb[1]}, ${rgb[2]}, ${rgb[3]}, 0)`);
+            ctx.arc(pixelRounded[0], pixelRounded[1], scaledRadius, 0, Math.PI * 2);
+            ctx.fillStyle = gradient;
+            ctx.fill();
+
+            if (Number.isFinite(parseFloat(clusterLabel))) {
+              if (clusterLabel >= 10000) {
+                clusterLabel = `${Math.round(clusterLabel / 1000)}k`;
+              } else if (clusterLabel >= 1000) {
+                clusterLabel = `${Math.round(clusterLabel / 100) / 10}k`;
+              }
+              this.drawText(ctx, pixelRounded, {
+                fontHeight,
+                label: clusterLabel,
+                radius: scaledRadius,
+                rgb,
+                shadow: true,
+              });
+            }
+          } else {
+            const defaultRadius = radius / 6;
+            const radiusProperty = location.get('properties').get('radius');
+            const pointMetric = location.get('properties').get('metric');
+            let pointRadius = radiusProperty === null ? defaultRadius : radiusProperty;
+            let pointLabel;
+
+            if (radiusProperty !== null) {
+              const pointLatitude = lngLatAccessor(location)[1];
+              if (pointRadiusUnit === 'Kilometers') {
+                pointLabel = `${roundDecimal(pointRadius, 2)}km`;
+                pointRadius = kmToPixels(pointRadius, pointLatitude, zoom);
+              } else if (pointRadiusUnit === 'Miles') {
+                pointLabel = `${roundDecimal(pointRadius, 2)}mi`;
+                pointRadius = kmToPixels(pointRadius * MILES_PER_KM, pointLatitude, zoom);
+              }
+            }
+
+            if (pointMetric !== null) {
+              pointLabel = Number.isFinite(parseFloat(pointMetric))
+                ? roundDecimal(pointMetric, 2)
+                : pointMetric;
+            }
+
+            // Fall back to default points if pointRadius wasn't a numerical column
+            if (!pointRadius) {
+              pointRadius = defaultRadius;
+            }
+
+            ctx.arc(pixelRounded[0], pixelRounded[1], roundDecimal(pointRadius, 1), 0, Math.PI * 2);
+            ctx.fillStyle = `rgb(${rgb[1]}, ${rgb[2]}, ${rgb[3]})`;
+            ctx.fill();
+
+            if (pointLabel !== undefined) {
+              this.drawText(ctx, pixelRounded, {
+                fontHeight: roundDecimal(pointRadius, 1),
+                label: pointLabel,
+                radius: pointRadius,
+                rgb,
+                shadow: false,
+              });
+            }
+          }
+        }
+      }, this);
+    }
+  }
+
+  render() {
+    return <CanvasOverlay redraw={this.redraw} />;
+  }
+}
+
+ScatterPlotGlowOverlay.propTypes = propTypes;
+ScatterPlotGlowOverlay.defaultProps = defaultProps;
+
+export default ScatterPlotGlowOverlay;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts
new file mode 100644
index 0000000..9a25c58
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts
@@ -0,0 +1,305 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import {
+  columnChoices,
+  ControlPanelConfig,
+  formatSelectOptions,
+  sections,
+} from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'all_columns_x',
+            config: {
+              type: 'SelectControl',
+              label: t('Longitude'),
+              default: null,
+              description: t('Column containing longitude data'),
+              mapStateToProps: state => ({
+                choices: columnChoices(state.datasource),
+              }),
+            },
+          },
+          {
+            name: 'all_columns_y',
+            config: {
+              type: 'SelectControl',
+              label: t('Latitude'),
+              default: null,
+              description: t('Column containing latitude data'),
+              mapStateToProps: state => ({
+                choices: columnChoices(state.datasource),
+              }),
+            },
+          },
+        ],
+        [
+          {
+            name: 'clustering_radius',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Clustering Radius'),
+              default: '60',
+              choices: formatSelectOptions([
+                '0',
+                '20',
+                '40',
+                '60',
+                '80',
+                '100',
+                '200',
+                '500',
+                '1000',
+              ]),
+              description: t(
+                'The radius (in pixels) the algorithm uses to define a cluster. ' +
+                  'Choose 0 to turn off clustering, but beware that a large ' +
+                  'number of points (>1000) will cause lag.',
+              ),
+            },
+          },
+        ],
+        ['row_limit'],
+        ['adhoc_filters'],
+        ['groupby'],
+      ],
+    },
+    {
+      label: t('Points'),
+      controlSetRows: [
+        [
+          {
+            name: 'point_radius',
+            config: {
+              type: 'SelectControl',
+              label: t('Point Radius'),
+              default: 'Auto',
+              description: t(
+                'The radius of individual points (ones that are not in a cluster). ' +
+                  'Either a numerical column or `Auto`, which scales the point based ' +
+                  'on the largest cluster',
+              ),
+              mapStateToProps: state => {
+                const datasourceChoices = columnChoices(state.datasource);
+                const choices: [string, string][] = formatSelectOptions(['Auto']);
+                return {
+                  choices: choices.concat(datasourceChoices),
+                };
+              },
+            },
+          },
+        ],
+        [
+          {
+            name: 'point_radius_unit',
+            config: {
+              type: 'SelectControl',
+              label: t('Point Radius Unit'),
+              default: 'Pixels',
+              choices: formatSelectOptions(['Pixels', 'Miles', 'Kilometers']),
+              description: t('The unit of measure for the specified point radius'),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Labelling'),
+      controlSetRows: [
+        [
+          {
+            name: 'mapbox_label',
+            config: {
+              type: 'SelectControl',
+              multi: true,
+              label: t('label'),
+              default: [],
+              description: t(
+                '`count` is COUNT(*) if a group by is used. ' +
+                  'Numerical columns will be aggregated with the aggregator. ' +
+                  'Non-numerical columns will be used to label points. ' +
+                  'Leave empty to get a count of points in each cluster.',
+              ),
+              mapStateToProps: state => ({
+                choices: columnChoices(state.datasource),
+              }),
+            },
+          },
+        ],
+        [
+          {
+            name: 'pandas_aggfunc',
+            config: {
+              type: 'SelectControl',
+              label: t('Cluster label aggregator'),
+              clearable: false,
+              choices: formatSelectOptions(['sum', 'mean', 'min', 'max', 'std', 'var']),
+              default: 'sum',
+              description: t(
+                'Aggregate function applied to the list of points ' +
+                  'in each cluster to produce the cluster label.',
+              ),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Visual Tweaks'),
+      controlSetRows: [
+        [
+          {
+            name: 'render_while_dragging',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Live render'),
+              default: true,
+              description: t('Points and clusters will update as the viewport is being changed'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'mapbox_style',
+            config: {
+              type: 'SelectControl',
+              label: t('Map Style'),
+              clearable: false,
+              renderTrigger: true,
+              choices: [
+                ['mapbox://styles/mapbox/streets-v9', 'Streets'],
+                ['mapbox://styles/mapbox/dark-v9', 'Dark'],
+                ['mapbox://styles/mapbox/light-v9', 'Light'],
+                ['mapbox://styles/mapbox/satellite-streets-v9', 'Satellite Streets'],
+                ['mapbox://styles/mapbox/satellite-v9', 'Satellite'],
+                ['mapbox://styles/mapbox/outdoors-v9', 'Outdoors'],
+              ],
+              default: 'mapbox://styles/mapbox/light-v9',
+              description: t('Base layer map style'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'global_opacity',
+            config: {
+              type: 'TextControl',
+              label: t('Opacity'),
+              default: 1,
+              isFloat: true,
+              description: t('Opacity of all clusters, points, and labels. Between 0 and 1.'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'mapbox_color',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('RGB Color'),
+              default: 'rgb(0, 122, 135)',
+              choices: [
+                ['rgb(0, 139, 139)', 'Dark Cyan'],
+                ['rgb(128, 0, 128)', 'Purple'],
+                ['rgb(255, 215, 0)', 'Gold'],
+                ['rgb(69, 69, 69)', 'Dim Gray'],
+                ['rgb(220, 20, 60)', 'Crimson'],
+                ['rgb(34, 139, 34)', 'Forest Green'],
+              ],
+              description: t('The color for points and clusters in RGB'),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Viewport'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'viewport_longitude',
+            config: {
+              type: 'TextControl',
+              label: t('Default longitude'),
+              renderTrigger: true,
+              default: -122.405293,
+              isFloat: true,
+              description: t('Longitude of default viewport'),
+              places: 8,
+              // Viewport longitude changes shouldn't prompt user to re-run query
+              dontRefreshOnChange: true,
+            },
+          },
+          {
+            name: 'viewport_latitude',
+            config: {
+              type: 'TextControl',
+              label: t('Default latitude'),
+              renderTrigger: true,
+              default: 37.772123,
+              isFloat: true,
+              description: t('Latitude of default viewport'),
+              places: 8,
+              // Viewport latitude changes shouldn't prompt user to re-run query
+              dontRefreshOnChange: true,
+            },
+          },
+        ],
+        [
+          {
+            name: 'viewport_zoom',
+            config: {
+              type: 'TextControl',
+              label: t('Zoom'),
+              renderTrigger: true,
+              isFloat: true,
+              default: 11,
+              description: t('Zoom level of the map'),
+              places: 8,
+              // Viewport zoom shouldn't prompt user to re-run query
+              dontRefreshOnChange: true,
+            },
+          },
+          null,
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    groupby: {
+      description: t(
+        'One or many controls to group by. If grouping, latitude ' +
+          'and longitude columns must be present.',
+      ),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/images/thumbnail.png
new file mode 100644
index 0000000..c05e3bc
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..d19b1b5
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js
new file mode 100644
index 0000000..5e07e0b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['https://www.mapbox.com/mapbox-gl-js/api/'],
+  description: '',
+  name: t('MapBox'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class MapBoxChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./MapBox'),
+      loadTransformProps: () => import('./transformProps.js'),
+      metadata,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/transformProps.js
new file mode 100644
index 0000000..670ed45
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/transformProps.js
@@ -0,0 +1,97 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import supercluster from 'supercluster';
+import { DEFAULT_POINT_RADIUS, DEFAULT_MAX_ZOOM } from './MapBox';
+
+const NOOP = () => {};
+
+export default function transformProps(chartProps) {
+  const { width, height, formData, hooks, queriesData } = chartProps;
+  const { onError = NOOP, setControlValue = NOOP } = hooks;
+  const { bounds, geoJSON, hasCustomMetric, mapboxApiKey } = queriesData[0].data;
+  const {
+    clusteringRadius,
+    globalOpacity,
+    mapboxColor,
+    mapboxStyle,
+    pandasAggfunc,
+    pointRadius,
+    pointRadiusUnit,
+    renderWhileDragging,
+  } = formData;
+
+  // Validate mapbox color
+  const rgb = /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/.exec(mapboxColor);
+  if (rgb === null) {
+    onError("Color field must be of form 'rgb(%d, %d, %d)'");
+
+    return {};
+  }
+
+  const opts = {
+    maxZoom: DEFAULT_MAX_ZOOM,
+    radius: clusteringRadius,
+  };
+  if (hasCustomMetric) {
+    opts.initial = () => ({
+      sum: 0,
+      squaredSum: 0,
+      min: Infinity,
+      max: -Infinity,
+    });
+    opts.map = prop => ({
+      sum: prop.metric,
+      squaredSum: prop.metric ** 2,
+      min: prop.metric,
+      max: prop.metric,
+    });
+    opts.reduce = (accu, prop) => {
+      // Temporarily disable param-reassignment linting to work with supercluster's api
+      /* eslint-disable no-param-reassign */
+      accu.sum += prop.sum;
+      accu.squaredSum += prop.squaredSum;
+      accu.min = Math.min(accu.min, prop.min);
+      accu.max = Math.max(accu.max, prop.max);
+      /* eslint-enable no-param-reassign */
+    };
+  }
+  const clusterer = supercluster(opts);
+  clusterer.load(geoJSON.features);
+
+  return {
+    width,
+    height,
+    aggregatorName: pandasAggfunc,
+    bounds,
+    clusterer,
+    globalOpacity,
+    hasCustomMetric,
+    mapboxApiKey,
+    mapStyle: mapboxStyle,
+    onViewportChange({ latitude, longitude, zoom }) {
+      setControlValue('viewport_longitude', longitude);
+      setControlValue('viewport_latitude', latitude);
+      setControlValue('viewport_zoom', zoom);
+    },
+    pointRadius: pointRadius === 'Auto' ? DEFAULT_POINT_RADIUS : pointRadius,
+    pointRadiusUnit,
+    renderWhileDragging,
+    rgb,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/geo.js b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/geo.js
new file mode 100644
index 0000000..e1777e7
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/geo.js
@@ -0,0 +1,13 @@
+import roundDecimal from './roundDecimal';
+
+export const EARTH_CIRCUMFERENCE_KM = 40075.16;
+export const MILES_PER_KM = 1.60934;
+
+export function kmToPixels(kilometers, latitude, zoomLevel) {
+  // Algorithm from: http://wiki.openstreetmap.org/wiki/Zoom_levels
+  const latitudeRad = latitude * (Math.PI / 180);
+  // Seems like the zoomLevel is off by one
+  const kmPerPixel = (EARTH_CIRCUMFERENCE_KM * Math.cos(latitudeRad)) / 2 ** (zoomLevel + 9);
+
+  return roundDecimal(kilometers / kmPerPixel, 2);
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/luminanceFromRGB.js b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/luminanceFromRGB.js
new file mode 100644
index 0000000..54ddd14
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/luminanceFromRGB.js
@@ -0,0 +1,8 @@
+export const LUMINANCE_RED_WEIGHT = 0.2126;
+export const LUMINANCE_GREEN_WEIGHT = 0.7152;
+export const LUMINANCE_BLUE_WEIGHT = 0.0722;
+
+export default function luminanceFromRGB(r, g, b) {
+  // Formula: https://en.wikipedia.org/wiki/Relative_luminance
+  return LUMINANCE_RED_WEIGHT * r + LUMINANCE_GREEN_WEIGHT * g + LUMINANCE_BLUE_WEIGHT * b;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/roundDecimal.js b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/roundDecimal.js
new file mode 100644
index 0000000..8c72856
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/roundDecimal.js
@@ -0,0 +1,11 @@
+export default function roundDecimal(number, precision) {
+  let roundedNumber;
+  let p = precision;
+  if (precision) {
+    roundedNumber = Math.round(number * (p = 10 ** p)) / p;
+  } else {
+    roundedNumber = Math.round(number);
+  }
+
+  return roundedNumber;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/test/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-map-box/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/test/utils/roundDecimal.test.js b/superset-frontend/plugins/legacy-plugin-chart-map-box/test/utils/roundDecimal.test.js
new file mode 100644
index 0000000..286fe9c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/test/utils/roundDecimal.test.js
@@ -0,0 +1,9 @@
+import roundDecimal from '../../src/utils/roundDecimal';
+
+describe('roundDecimal', () => {
+  it('rounding method to limit the number of decimal digits', () => {
+    expect(roundDecimal(1.139, 2)).toBe(1.14);
+    expect(roundDecimal(1.13929, 3)).toBe(1.139);
+    expect(roundDecimal(1.13929)).toBe(1);
+  });
+});
diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-map-box/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/README.md b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/README.md
new file mode 100644
index 0000000..4501a09
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-paired-t-test
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-paired-t-test.svg?style=flat-square)](hhttps://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-paired-t-test)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-paired-t-test&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-paired-t-test)
+
+This plugin provides Paired T Test for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import PairedTTestChartPlugin from '@superset-ui/legacy-plugin-chart-paired-t-test';
+
+new PairedTTestChartPlugin().configure({ key: 'paired-t-test' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-paired-t-test)
+for more details.
+
+```js
+<SuperChart
+  chartType="paired-t-test"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/package.json b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/package.json
new file mode 100644
index 0000000..0577523
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/package.json
@@ -0,0 +1,40 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-paired-t-test",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Paired T Test",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "distributions": "^1.0.0",
+    "prop-types": "^15.6.2",
+    "reactable-arc": "0.15.0"
+  },
+  "peerDependencies": {
+    "react": "^15 || ^16"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.css b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.css
new file mode 100644
index 0000000..ee62864
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.css
@@ -0,0 +1,86 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+.superset-legacy-chart-paired_ttest .scrollbar-container {
+  overflow: auto;
+}
+
+.paired-ttest-table .scrollbar-content {
+  padding-left: 5px;
+  padding-right: 5px;
+  margin-bottom: 0;
+}
+
+.paired-ttest-table table {
+  margin-bottom: 0;
+}
+
+.paired-ttest-table h1 {
+  margin-left: 5px;
+}
+
+.reactable-data tr,
+.reactable-header-sortable {
+  -webkit-transition: ease-in-out 0.1s;
+  transition: ease-in-out 0.1s;
+}
+
+.reactable-data tr:hover {
+  background-color: #e0e0e0;
+}
+
+.reactable-data tr .false {
+  color: #f44336;
+}
+
+.reactable-data tr .true {
+  color: #4caf50;
+}
+
+.reactable-data tr .control {
+  color: #2196f3;
+}
+
+.reactable-data tr .invalid {
+  color: #ff9800;
+}
+
+.reactable-data .control td {
+  background-color: #eeeeee;
+}
+
+.reactable-header-sortable:hover,
+.reactable-header-sortable:focus,
+.reactable-header-sort-asc,
+.reactable-header-sort-desc {
+  background-color: #e0e0e0;
+  position: relative;
+}
+
+.reactable-header-sort-asc:after {
+  content: '\25bc';
+  position: absolute;
+  right: 10px;
+}
+
+.reactable-header-sort-desc:after {
+  content: '\25b2';
+  position: absolute;
+  right: 10px;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.jsx b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.jsx
new file mode 100644
index 0000000..2486edb
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.jsx
@@ -0,0 +1,71 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/no-array-index-key */
+import PropTypes from 'prop-types';
+import React from 'react';
+import TTestTable, { dataPropType } from './TTestTable';
+import './PairedTTest.css';
+
+const propTypes = {
+  alpha: PropTypes.number,
+  className: PropTypes.string,
+  data: PropTypes.objectOf(dataPropType).isRequired,
+  groups: PropTypes.arrayOf(PropTypes.string).isRequired,
+  liftValPrec: PropTypes.number,
+  metrics: PropTypes.arrayOf(PropTypes.string).isRequired,
+  pValPrec: PropTypes.number,
+};
+
+const defaultProps = {
+  alpha: 0.05,
+  className: '',
+  liftValPrec: 4,
+  pValPrec: 6,
+};
+
+class PairedTTest extends React.PureComponent {
+  render() {
+    const { className, metrics, groups, data, alpha, pValPrec, liftValPrec } = this.props;
+
+    return (
+      <div className={`superset-legacy-chart-paired-t-test ${className}`}>
+        <div className="paired-ttest-table scrollbar-container">
+          <div className="scrollbar-content">
+            {metrics.map((metric, i) => (
+              <TTestTable
+                key={i}
+                metric={metric}
+                groups={groups}
+                data={data[metric]}
+                alpha={alpha}
+                pValPrec={Math.min(pValPrec, 32)}
+                liftValPrec={Math.min(liftValPrec, 32)}
+              />
+            ))}
+          </div>
+        </div>
+      </div>
+    );
+  }
+}
+
+PairedTTest.propTypes = propTypes;
+PairedTTest.defaultProps = defaultProps;
+
+export default PairedTTest;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/TTestTable.jsx b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/TTestTable.jsx
new file mode 100644
index 0000000..086b285
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/TTestTable.jsx
@@ -0,0 +1,290 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/no-array-index-key, react/jsx-no-bind */
+import dist from 'distributions';
+import React from 'react';
+import { Table, Tr, Td, Thead, Th } from 'reactable-arc';
+import PropTypes from 'prop-types';
+
+export const dataPropType = PropTypes.arrayOf(
+  PropTypes.shape({
+    group: PropTypes.arrayOf(PropTypes.string),
+    values: PropTypes.arrayOf(
+      PropTypes.shape({
+        x: PropTypes.number,
+        y: PropTypes.number,
+      }),
+    ),
+  }),
+);
+
+const propTypes = {
+  alpha: PropTypes.number,
+  data: dataPropType.isRequired,
+  groups: PropTypes.arrayOf(PropTypes.string).isRequired,
+  liftValPrec: PropTypes.number,
+  metric: PropTypes.string.isRequired,
+  pValPrec: PropTypes.number,
+};
+
+const defaultProps = {
+  alpha: 0.05,
+  liftValPrec: 4,
+  pValPrec: 6,
+};
+
+class TTestTable extends React.Component {
+  constructor(props) {
+    super(props);
+    this.state = {
+      control: 0,
+      liftValues: [],
+      pValues: [],
+    };
+  }
+
+  componentDidMount() {
+    const { control } = this.state;
+    this.computeTTest(control); // initially populate table
+  }
+
+  getLiftStatus(row) {
+    const { control, liftValues } = this.state;
+    // Get a css class name for coloring
+    if (row === control) {
+      return 'control';
+    }
+    const liftVal = liftValues[row];
+    if (Number.isNaN(liftVal) || !Number.isFinite(liftVal)) {
+      return 'invalid'; // infinite or NaN values
+    }
+
+    return liftVal >= 0 ? 'true' : 'false'; // green on true, red on false
+  }
+
+  getPValueStatus(row) {
+    const { control, pValues } = this.state;
+    if (row === control) {
+      return 'control';
+    }
+    const pVal = pValues[row];
+    if (Number.isNaN(pVal) || !Number.isFinite(pVal)) {
+      return 'invalid';
+    }
+
+    return ''; // p-values won't normally be colored
+  }
+
+  getSignificance(row) {
+    const { control, pValues } = this.state;
+    const { alpha } = this.props;
+    // Color significant as green, else red
+    if (row === control) {
+      return 'control';
+    }
+
+    // p-values significant below set threshold
+    return pValues[row] <= alpha;
+  }
+
+  computeLift(values, control) {
+    const { liftValPrec } = this.props;
+    // Compute the lift value between two time series
+    let sumValues = 0;
+    let sumControl = 0;
+    values.forEach((value, i) => {
+      sumValues += value.y;
+      sumControl += control[i].y;
+    });
+
+    return (((sumValues - sumControl) / sumControl) * 100).toFixed(liftValPrec);
+  }
+
+  computePValue(values, control) {
+    const { pValPrec } = this.props;
+    // Compute the p-value from Student's t-test
+    // between two time series
+    let diffSum = 0;
+    let diffSqSum = 0;
+    let finiteCount = 0;
+    values.forEach((value, i) => {
+      const diff = control[i].y - value.y;
+      /* eslint-disable-next-line */
+      if (isFinite(diff)) {
+        finiteCount += 1;
+        diffSum += diff;
+        diffSqSum += diff * diff;
+      }
+    });
+    const tvalue = -Math.abs(
+      diffSum * Math.sqrt((finiteCount - 1) / (finiteCount * diffSqSum - diffSum * diffSum)),
+    );
+    try {
+      return (2 * new dist.Studentt(finiteCount - 1).cdf(tvalue)).toFixed(pValPrec); // two-sided test
+    } catch (error) {
+      return NaN;
+    }
+  }
+
+  computeTTest(control) {
+    // Compute lift and p-values for each row
+    // against the selected control
+    const { data } = this.props;
+    const pValues = [];
+    const liftValues = [];
+    if (!data) {
+      return;
+    }
+    for (let i = 0; i < data.length; i += 1) {
+      if (i === control) {
+        pValues.push('control');
+        liftValues.push('control');
+      } else {
+        pValues.push(this.computePValue(data[i].values, data[control].values));
+        liftValues.push(this.computeLift(data[i].values, data[control].values));
+      }
+    }
+    this.setState({ control, liftValues, pValues });
+  }
+
+  render() {
+    const { data, metric, groups } = this.props;
+    const { control, liftValues, pValues } = this.state;
+    // Render column header for each group
+    const columns = groups.map((group, i) => (
+      <Th key={i} column={group}>
+        {group}
+      </Th>
+    ));
+    const numGroups = groups.length;
+    // Columns for p-value, lift-value, and significance (true/false)
+    columns.push(
+      <Th key={numGroups + 1} column="pValue">
+        p-value
+      </Th>,
+    );
+    columns.push(
+      <Th key={numGroups + 2} column="liftValue">
+        Lift %
+      </Th>,
+    );
+    columns.push(
+      <Th key={numGroups + 3} column="significant">
+        Significant
+      </Th>,
+    );
+    const rows = data.map((entry, i) => {
+      const values = groups.map((
+        group,
+        j, // group names
+      ) => <Td key={j} column={group} data={entry.group[j]} />);
+      values.push(
+        <Td
+          key={numGroups + 1}
+          className={this.getPValueStatus(i)}
+          column="pValue"
+          data={pValues[i]}
+        />,
+      );
+      values.push(
+        <Td
+          key={numGroups + 2}
+          className={this.getLiftStatus(i)}
+          column="liftValue"
+          data={liftValues[i]}
+        />,
+      );
+      values.push(
+        <Td
+          key={numGroups + 3}
+          className={this.getSignificance(i).toString()}
+          column="significant"
+          data={this.getSignificance(i)}
+        />,
+      );
+
+      return (
+        <Tr
+          key={i}
+          className={i === control ? 'control' : ''}
+          onClick={this.computeTTest.bind(this, i)}
+        >
+          {values}
+        </Tr>
+      );
+    });
+    // When sorted ascending, 'control' will always be at top
+    const sortConfig = groups.concat([
+      {
+        column: 'pValue',
+        sortFunction: (a, b) => {
+          if (a === 'control') {
+            return -1;
+          }
+          if (b === 'control') {
+            return 1;
+          }
+
+          return a > b ? 1 : -1; // p-values ascending
+        },
+      },
+      {
+        column: 'liftValue',
+        sortFunction: (a, b) => {
+          if (a === 'control') {
+            return -1;
+          }
+          if (b === 'control') {
+            return 1;
+          }
+
+          return parseFloat(a) > parseFloat(b) ? -1 : 1; // lift values descending
+        },
+      },
+      {
+        column: 'significant',
+        sortFunction: (a, b) => {
+          if (a === 'control') {
+            return -1;
+          }
+          if (b === 'control') {
+            return 1;
+          }
+
+          return a > b ? -1 : 1; // significant values first
+        },
+      },
+    ]);
+
+    return (
+      <div>
+        <h3>{metric}</h3>
+        <Table className="table" id={`table_${metric}`} sortable={sortConfig}>
+          <Thead>{columns}</Thead>
+          {rows}
+        </Table>
+      </div>
+    );
+  }
+}
+
+TTestTable.propTypes = propTypes;
+TTestTable.defaultProps = defaultProps;
+
+export default TTestTable;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts
new file mode 100644
index 0000000..1f2803f
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts
@@ -0,0 +1,98 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metrics'],
+        ['adhoc_filters'],
+        ['groupby'],
+        ['limit', 'timeseries_limit_metric'],
+        [
+          {
+            name: 'order_desc',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Sort Descending'),
+              default: true,
+              description: t('Whether to sort descending or ascending'),
+            },
+          },
+          {
+            name: 'contribution',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Contribution'),
+              default: false,
+              description: t('Compute the contribution to the total'),
+            },
+          },
+        ],
+        ['row_limit', null],
+      ],
+    },
+    {
+      label: t('Parameters'),
+      expanded: false,
+      controlSetRows: [
+        [
+          {
+            name: 'significance_level',
+            config: {
+              type: 'TextControl',
+              label: t('Significance Level'),
+              default: 0.05,
+              description: t('Threshold alpha level for determining significance'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'pvalue_precision',
+            config: {
+              type: 'TextControl',
+              label: t('p-value precision'),
+              default: 6,
+              description: t('Number of decimal places with which to display p-values'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'liftvalue_precision',
+            config: {
+              type: 'TextControl',
+              label: t('Lift percent precision'),
+              default: 4,
+              description: t('Number of decimal places with which to display lift values'),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnail.png
new file mode 100644
index 0000000..62ab0bc
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..2c6e692
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js
new file mode 100644
index 0000000..7f7279d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  description: '',
+  name: t('Paired t-test Table'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class PairedTTestChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./PairedTTest'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js
new file mode 100644
index 0000000..e00e807
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js
@@ -0,0 +1,31 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { formData, queriesData } = chartProps;
+  const { groupby, liftvaluePrecision, metrics, pvaluePrecision, significanceLevel } = formData;
+
+  return {
+    alpha: significanceLevel,
+    data: queriesData[0].data,
+    groups: groupby,
+    liftValPrec: parseInt(liftvaluePrecision, 10),
+    metrics,
+    pValPrec: parseInt(pvaluePrecision, 10),
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/README.md b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/README.md
new file mode 100644
index 0000000..a983ecc
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-parallel-coordinates
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-parallel-coordinates.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-parallel-coordinates)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-parallel-coordinates&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-parallel-coordinates)
+
+This plugin provides Parallel Coordinates for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import ParallelCoordinatesChartPlugin from '@superset-ui/legacy-plugin-chart-parallel-coordinates';
+
+new ParallelCoordinatesChartPlugin().configure({ key: 'parallel-coordinates' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-parallel-coordinates)
+for more details.
+
+```js
+<SuperChart
+  chartType="parallel-coordinates"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/package.json b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/package.json
new file mode 100644
index 0000000..43288b3
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/package.json
@@ -0,0 +1,39 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-parallel-coordinates",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Parallel Coordinates",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "prop-types": "^15.7.2"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ParallelCoordinates.js b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ParallelCoordinates.js
new file mode 100644
index 0000000..55c3428
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ParallelCoordinates.js
@@ -0,0 +1,124 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/sort-prop-types */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+import { getSequentialSchemeRegistry } from '@superset-ui/core';
+
+import parcoords from './vendor/parcoords/d3.parcoords';
+import divgrid from './vendor/parcoords/divgrid';
+import './vendor/parcoords/d3.parcoords.css';
+
+const propTypes = {
+  // Standard tabular data [{ fieldName1: value1, fieldName2: value2 }]
+  data: PropTypes.arrayOf(PropTypes.object),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  colorMetric: PropTypes.string,
+  includeSeries: PropTypes.bool,
+  linearColorScheme: PropTypes.string,
+  metrics: PropTypes.arrayOf(PropTypes.string),
+  series: PropTypes.string,
+  showDatatable: PropTypes.bool,
+};
+
+function ParallelCoordinates(element, props) {
+  const {
+    data,
+    width,
+    height,
+    colorMetric,
+    includeSeries,
+    linearColorScheme,
+    metrics,
+    series,
+    showDatatable,
+  } = props;
+
+  const cols = includeSeries ? [series].concat(metrics) : metrics;
+
+  const ttypes = {};
+  ttypes[series] = 'string';
+  metrics.forEach(v => {
+    ttypes[v] = 'number';
+  });
+
+  const colorScale = colorMetric
+    ? getSequentialSchemeRegistry()
+        .get(linearColorScheme)
+        .createLinearScale(d3.extent(data, d => d[colorMetric]))
+    : () => 'grey';
+  const color = d => colorScale(d[colorMetric]);
+  const container = d3.select(element).classed('superset-legacy-chart-parallel-coordinates', true);
+  container.selectAll('*').remove();
+  const effHeight = showDatatable ? height / 2 : height;
+
+  const div = container.append('div').style('height', `${effHeight}px`).classed('parcoords', true);
+
+  const chart = parcoords()(div.node())
+    .width(width)
+    .color(color)
+    .alpha(0.5)
+    .composite('darken')
+    .height(effHeight)
+    .data(data)
+    .dimensions(cols)
+    .types(ttypes)
+    .render()
+    .createAxes()
+    .shadows()
+    .reorderable()
+    .brushMode('1D-axes');
+
+  if (showDatatable) {
+    // create data table, row hover highlighting
+    const grid = divgrid();
+    container
+      .append('div')
+      .style('height', `${effHeight}px`)
+      .datum(data)
+      .call(grid)
+      .classed('parcoords grid', true)
+      .selectAll('.row')
+      .on({
+        mouseover(d) {
+          chart.highlight([d]);
+        },
+        mouseout: chart.unhighlight,
+      });
+    // update data table on brush event
+    chart.on('brush', d => {
+      d3.select('.grid')
+        .datum(d)
+        .call(grid)
+        .selectAll('.row')
+        .on({
+          mouseover(dd) {
+            chart.highlight([dd]);
+          },
+          mouseout: chart.unhighlight,
+        });
+    });
+  }
+}
+
+ParallelCoordinates.displayName = 'ParallelCoordinates';
+ParallelCoordinates.propTypes = propTypes;
+
+export default ParallelCoordinates;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx
new file mode 100644
index 0000000..8633607
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx
@@ -0,0 +1,47 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { styled, reactify } from '@superset-ui/core';
+import PropTypes from 'prop-types';
+import Component from './ParallelCoordinates';
+
+const ReactComponent = reactify(Component);
+
+const ParallelCoordianes = ({ className, ...otherProps }) => (
+  <div className={className}>
+    <ReactComponent {...otherProps} />
+  </div>
+);
+
+ParallelCoordianes.propTypes = {
+  className: PropTypes.string.isRequired,
+};
+
+export default styled(ParallelCoordianes)`
+  .superset-legacy-chart-parallel-coordinates {
+    div.grid {
+      overflow: auto;
+      div.row {
+        &:hover {
+          background-color: #ccc;
+        }
+      }
+    }
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts
new file mode 100644
index 0000000..2227bdf
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts
@@ -0,0 +1,68 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['series'],
+        ['metrics'],
+        ['secondary_metric'],
+        ['adhoc_filters'],
+        ['limit', 'row_limit'],
+      ],
+    },
+    {
+      label: t('Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'show_datatable',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Data Table'),
+              default: false,
+              renderTrigger: true,
+              description: t('Whether to display the interactive data table'),
+            },
+          },
+          {
+            name: 'include_series',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Include Series'),
+              renderTrigger: true,
+              default: false,
+              description: t('Include series name as an axis'),
+            },
+          },
+        ],
+        ['linear_color_scheme'],
+      ],
+    },
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnail.png
new file mode 100644
index 0000000..b6a8bb9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..7e877b0
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js
new file mode 100644
index 0000000..0920c4d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['https://syntagmatic.github.io/parallel-coordinates'],
+  description: '',
+  name: t('Parallel Coordinates'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class ParallelCoordinatesChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactParallelCoordinates'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js
new file mode 100644
index 0000000..91741a4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const {
+    includeSeries,
+    linearColorScheme,
+    metrics,
+    secondaryMetric,
+    series,
+    showDatatable,
+  } = formData;
+
+  return {
+    width,
+    height,
+    data: queriesData[0].data,
+    includeSeries,
+    linearColorScheme,
+    metrics: metrics.map(m => m.label || m),
+    colorMetric: secondaryMetric && secondaryMetric.label ? secondaryMetric.label : secondaryMetric,
+    series,
+    showDatatable,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.css b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.css
new file mode 100644
index 0000000..cc82bf9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.css
@@ -0,0 +1,79 @@
+/* [LICENSE TBD] */
+.parcoords svg,
+.parcoords canvas {
+  font-size: 12px;
+  position: absolute;
+}
+.parcoords > canvas {
+  pointer-events: none;
+}
+
+.parcoords text.label {
+  font: 100%;
+  font-size: 12px;
+  cursor: drag;
+}
+
+.parcoords rect.background {
+  fill: transparent;
+}
+.parcoords rect.background:hover {
+  fill: rgba(120, 120, 120, 0.2);
+}
+.parcoords .resize rect {
+  fill: rgba(0, 0, 0, 0.1);
+}
+.parcoords rect.extent {
+  fill: rgba(255, 255, 255, 0.25);
+  stroke: rgba(0, 0, 0, 0.6);
+}
+.parcoords .axis line,
+.parcoords .axis path {
+  fill: none;
+  stroke: #222;
+  shape-rendering: crispEdges;
+}
+.parcoords canvas {
+  opacity: 1;
+  -moz-transition: opacity 0.3s;
+  -webkit-transition: opacity 0.3s;
+  -o-transition: opacity 0.3s;
+}
+.parcoords canvas.faded {
+  opacity: 0.25;
+}
+.parcoords {
+  -webkit-touch-callout: none;
+  -webkit-user-select: none;
+  -khtml-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none;
+  background-color: white;
+}
+
+/* data table styles */
+.parcoords .row,
+.parcoords .header {
+  clear: left;
+  font-size: 12px;
+  line-height: 18px;
+  height: 18px;
+  margin: 0px;
+}
+.parcoords .row:nth-child(odd) {
+  background: rgba(0, 0, 0, 0.05);
+}
+.parcoords .header {
+  font-weight: bold;
+}
+.parcoords .cell {
+  float: left;
+  overflow: hidden;
+  white-space: nowrap;
+  width: 100px;
+  height: 18px;
+}
+.parcoords .col-0 {
+  width: 180px;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.js b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.js
new file mode 100644
index 0000000..884973d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.js
@@ -0,0 +1,2362 @@
+/* [LICENSE TBD] */
+/* eslint-disable */
+export default function (config) {
+  var __ = {
+    data: [],
+    highlighted: [],
+    dimensions: [],
+    dimensionTitles: {},
+    dimensionTitleRotation: 0,
+    types: {},
+    brushed: false,
+    brushedColor: null,
+    alphaOnBrushed: 0.0,
+    mode: 'default',
+    rate: 20,
+    width: 600,
+    height: 300,
+    margin: { top: 24, right: 0, bottom: 12, left: 0 },
+    nullValueSeparator: 'undefined', // set to "top" or "bottom"
+    nullValueSeparatorPadding: { top: 8, right: 0, bottom: 8, left: 0 },
+    color: '#069',
+    composite: 'source-over',
+    alpha: 0.7,
+    bundlingStrength: 0.5,
+    bundleDimension: null,
+    smoothness: 0.0,
+    showControlPoints: false,
+    hideAxis: [],
+  };
+
+  extend(__, config);
+
+  var pc = function (selection) {
+    selection = pc.selection = d3.select(selection);
+
+    __.width = selection[0][0].clientWidth;
+    __.height = selection[0][0].clientHeight;
+
+    // canvas data layers
+    ['marks', 'foreground', 'brushed', 'highlight'].forEach(function (layer) {
+      canvas[layer] = selection.append('canvas').attr('class', layer)[0][0];
+      ctx[layer] = canvas[layer].getContext('2d');
+    });
+
+    // svg tick and brush layers
+    pc.svg = selection
+      .append('svg')
+      .attr('width', __.width)
+      .attr('height', __.height)
+      .append('svg:g')
+      .attr('transform', 'translate(' + __.margin.left + ',' + __.margin.top + ')');
+
+    return pc;
+  };
+  var events = d3.dispatch.apply(
+      this,
+      ['render', 'resize', 'highlight', 'brush', 'brushend', 'axesreorder'].concat(d3.keys(__)),
+    ),
+    w = function () {
+      return __.width - __.margin.right - __.margin.left;
+    },
+    h = function () {
+      return __.height - __.margin.top - __.margin.bottom;
+    },
+    flags = {
+      brushable: false,
+      reorderable: false,
+      axes: false,
+      interactive: false,
+      debug: false,
+    },
+    xscale = d3.scale.ordinal(),
+    yscale = {},
+    dragging = {},
+    line = d3.svg.line(),
+    axis = d3.svg.axis().orient('left').ticks(5),
+    g, // groups for axes, brushes
+    ctx = {},
+    canvas = {},
+    clusterCentroids = [];
+
+  // side effects for setters
+  var side_effects = d3.dispatch
+    .apply(this, d3.keys(__))
+    .on('composite', function (d) {
+      ctx.foreground.globalCompositeOperation = d.value;
+      ctx.brushed.globalCompositeOperation = d.value;
+    })
+    .on('alpha', function (d) {
+      ctx.foreground.globalAlpha = d.value;
+      ctx.brushed.globalAlpha = d.value;
+    })
+    .on('brushedColor', function (d) {
+      ctx.brushed.strokeStyle = d.value;
+    })
+    .on('width', function (d) {
+      pc.resize();
+    })
+    .on('height', function (d) {
+      pc.resize();
+    })
+    .on('margin', function (d) {
+      pc.resize();
+    })
+    .on('rate', function (d) {
+      brushedQueue.rate(d.value);
+      foregroundQueue.rate(d.value);
+    })
+    .on('dimensions', function (d) {
+      xscale.domain(__.dimensions);
+      if (flags.interactive) {
+        pc.render().updateAxes();
+      }
+    })
+    .on('bundleDimension', function (d) {
+      if (!__.dimensions.length) pc.detectDimensions();
+      if (!(__.dimensions[0] in yscale)) pc.autoscale();
+      if (typeof d.value === 'number') {
+        if (d.value < __.dimensions.length) {
+          __.bundleDimension = __.dimensions[d.value];
+        } else if (d.value < __.hideAxis.length) {
+          __.bundleDimension = __.hideAxis[d.value];
+        }
+      } else {
+        __.bundleDimension = d.value;
+      }
+
+      __.clusterCentroids = compute_cluster_centroids(__.bundleDimension);
+    })
+    .on('hideAxis', function (d) {
+      if (!__.dimensions.length) pc.detectDimensions();
+      pc.dimensions(without(__.dimensions, d.value));
+    });
+
+  // expose the state of the chart
+  pc.state = __;
+  pc.flags = flags;
+
+  // create getter/setters
+  getset(pc, __, events);
+
+  // expose events
+  d3.rebind(pc, events, 'on');
+
+  // getter/setter with event firing
+  function getset(obj, state, events) {
+    d3.keys(state).forEach(function (key) {
+      obj[key] = function (x) {
+        if (!arguments.length) {
+          return state[key];
+        }
+        var old = state[key];
+        state[key] = x;
+        side_effects[key].call(pc, { value: x, previous: old });
+        events[key].call(pc, { value: x, previous: old });
+        return obj;
+      };
+    });
+  }
+
+  function extend(target, source) {
+    for (var key in source) {
+      target[key] = source[key];
+    }
+    return target;
+  }
+
+  function without(arr, item) {
+    return arr.filter(function (elem) {
+      return item.indexOf(elem) === -1;
+    });
+  }
+  /** adjusts an axis' default range [h()+1, 1] if a NullValueSeparator is set */
+  function getRange() {
+    if (__.nullValueSeparator == 'bottom') {
+      return [h() + 1 - __.nullValueSeparatorPadding.bottom - __.nullValueSeparatorPadding.top, 1];
+    } else if (__.nullValueSeparator == 'top') {
+      return [h() + 1, 1 + __.nullValueSeparatorPadding.bottom + __.nullValueSeparatorPadding.top];
+    }
+    return [h() + 1, 1];
+  }
+
+  pc.autoscale = function () {
+    // yscale
+    var defaultScales = {
+      date: function (k) {
+        var extent = d3.extent(__.data, function (d) {
+          return d[k] ? d[k].getTime() : null;
+        });
+
+        // special case if single value
+        if (extent[0] === extent[1]) {
+          return d3.scale.ordinal().domain([extent[0]]).rangePoints(getRange());
+        }
+
+        return d3.time.scale().domain(extent).range(getRange());
+      },
+      number: function (k) {
+        var extent = d3.extent(__.data, function (d) {
+          return +d[k];
+        });
+
+        // special case if single value
+        if (extent[0] === extent[1]) {
+          return d3.scale.ordinal().domain([extent[0]]).rangePoints(getRange());
+        }
+
+        return d3.scale.linear().domain(extent).range(getRange());
+      },
+      string: function (k) {
+        var counts = {},
+          domain = [];
+
+        // Let's get the count for each value so that we can sort the domain based
+        // on the number of items for each value.
+        __.data.map(function (p) {
+          if (p[k] === undefined && __.nullValueSeparator !== 'undefined') {
+            return; // null values will be drawn beyond the horizontal null value separator!
+          }
+          if (counts[p[k]] === undefined) {
+            counts[p[k]] = 1;
+          } else {
+            counts[p[k]] = counts[p[k]] + 1;
+          }
+        });
+
+        domain = Object.getOwnPropertyNames(counts).sort(function (a, b) {
+          return counts[a] - counts[b];
+        });
+
+        return d3.scale.ordinal().domain(domain).rangePoints(getRange());
+      },
+    };
+
+    __.dimensions.forEach(function (k) {
+      yscale[k] = defaultScales[__.types[k]](k);
+    });
+
+    __.hideAxis.forEach(function (k) {
+      yscale[k] = defaultScales[__.types[k]](k);
+    });
+
+    // xscale
+    xscale.rangePoints([0, w()], 1);
+
+    // canvas sizes
+    pc.selection
+      .selectAll('canvas')
+      .style('margin-top', __.margin.top + 'px')
+      .style('margin-left', __.margin.left + 'px')
+      .attr('width', w() + 2)
+      .attr('height', h() + 2);
+
+    // default styles, needs to be set when canvas width changes
+    ctx.foreground.strokeStyle = __.color;
+    ctx.foreground.lineWidth = 1.4;
+    ctx.foreground.globalCompositeOperation = __.composite;
+    ctx.foreground.globalAlpha = __.alpha;
+    ctx.brushed.strokeStyle = __.brushedColor;
+    ctx.brushed.lineWidth = 1.4;
+    ctx.brushed.globalCompositeOperation = __.composite;
+    ctx.brushed.globalAlpha = __.alpha;
+    ctx.highlight.lineWidth = 3;
+
+    return this;
+  };
+
+  pc.scale = function (d, domain) {
+    yscale[d].domain(domain);
+
+    return this;
+  };
+
+  pc.flip = function (d) {
+    //yscale[d].domain().reverse();         // does not work
+    yscale[d].domain(yscale[d].domain().reverse()); // works
+
+    return this;
+  };
+
+  pc.commonScale = function (global, type) {
+    var t = type || 'number';
+    if (typeof global === 'undefined') {
+      global = true;
+    }
+
+    // scales of the same type
+    var scales = __.dimensions.concat(__.hideAxis).filter(function (p) {
+      return __.types[p] == t;
+    });
+
+    if (global) {
+      var extent = d3.extent(
+        scales
+          .map(function (p, i) {
+            return yscale[p].domain();
+          })
+          .reduce(function (a, b) {
+            return a.concat(b);
+          }),
+      );
+
+      scales.forEach(function (d) {
+        yscale[d].domain(extent);
+      });
+    } else {
+      scales.forEach(function (k) {
+        yscale[k].domain(
+          d3.extent(__.data, function (d) {
+            return +d[k];
+          }),
+        );
+      });
+    }
+
+    // update centroids
+    if (__.bundleDimension !== null) {
+      pc.bundleDimension(__.bundleDimension);
+    }
+
+    return this;
+  };
+  pc.detectDimensions = function () {
+    pc.types(pc.detectDimensionTypes(__.data));
+    pc.dimensions(d3.keys(pc.types()));
+    return this;
+  };
+
+  // a better "typeof" from this post: http://stackoverflow.com/questions/7390426/better-way-to-get-type-of-a-javascript-variable
+  pc.toType = function (v) {
+    return {}.toString
+      .call(v)
+      .match(/\s([a-zA-Z]+)/)[1]
+      .toLowerCase();
+  };
+
+  // try to coerce to number before returning type
+  pc.toTypeCoerceNumbers = function (v) {
+    if (parseFloat(v) == v && v != null) {
+      return 'number';
+    }
+    return pc.toType(v);
+  };
+
+  // attempt to determine types of each dimension based on first row of data
+  pc.detectDimensionTypes = function (data) {
+    var types = {};
+    d3.keys(data[0]).forEach(function (col) {
+      types[col] = pc.toTypeCoerceNumbers(data[0][col]);
+    });
+    return types;
+  };
+  pc.render = function () {
+    // try to autodetect dimensions and create scales
+    if (!__.dimensions.length) pc.detectDimensions();
+    if (!(__.dimensions[0] in yscale)) pc.autoscale();
+
+    pc.render[__.mode]();
+
+    events.render.call(this);
+    return this;
+  };
+
+  pc.renderBrushed = function () {
+    if (!__.dimensions.length) pc.detectDimensions();
+    if (!(__.dimensions[0] in yscale)) pc.autoscale();
+
+    pc.renderBrushed[__.mode]();
+
+    events.render.call(this);
+    return this;
+  };
+
+  function isBrushed() {
+    if (__.brushed && __.brushed.length !== __.data.length) return true;
+
+    var object = brush.currentMode().brushState();
+
+    for (var key in object) {
+      if (object.hasOwnProperty(key)) {
+        return true;
+      }
+    }
+    return false;
+  }
+
+  pc.render.default = function () {
+    pc.clear('foreground');
+    pc.clear('highlight');
+
+    pc.renderBrushed.default();
+
+    __.data.forEach(path_foreground);
+  };
+
+  var foregroundQueue = d3
+    .renderQueue(path_foreground)
+    .rate(50)
+    .clear(function () {
+      pc.clear('foreground');
+      pc.clear('highlight');
+    });
+
+  pc.render.queue = function () {
+    pc.renderBrushed.queue();
+
+    foregroundQueue(__.data);
+  };
+
+  pc.renderBrushed.default = function () {
+    pc.clear('brushed');
+
+    if (isBrushed()) {
+      __.brushed.forEach(path_brushed);
+    }
+  };
+
+  var brushedQueue = d3
+    .renderQueue(path_brushed)
+    .rate(50)
+    .clear(function () {
+      pc.clear('brushed');
+    });
+
+  pc.renderBrushed.queue = function () {
+    if (isBrushed()) {
+      brushedQueue(__.brushed);
+    } else {
+      brushedQueue([]); // This is needed to clear the currently brushed items
+    }
+  };
+  function compute_cluster_centroids(d) {
+    var clusterCentroids = d3.map();
+    var clusterCounts = d3.map();
+    // determine clusterCounts
+    __.data.forEach(function (row) {
+      var scaled = yscale[d](row[d]);
+      if (!clusterCounts.has(scaled)) {
+        clusterCounts.set(scaled, 0);
+      }
+      var count = clusterCounts.get(scaled);
+      clusterCounts.set(scaled, count + 1);
+    });
+
+    __.data.forEach(function (row) {
+      __.dimensions.map(function (p, i) {
+        var scaled = yscale[d](row[d]);
+        if (!clusterCentroids.has(scaled)) {
+          var map = d3.map();
+          clusterCentroids.set(scaled, map);
+        }
+        if (!clusterCentroids.get(scaled).has(p)) {
+          clusterCentroids.get(scaled).set(p, 0);
+        }
+        var value = clusterCentroids.get(scaled).get(p);
+        value += yscale[p](row[p]) / clusterCounts.get(scaled);
+        clusterCentroids.get(scaled).set(p, value);
+      });
+    });
+
+    return clusterCentroids;
+  }
+
+  function compute_centroids(row) {
+    var centroids = [];
+
+    var p = __.dimensions;
+    var cols = p.length;
+    var a = 0.5; // center between axes
+    for (var i = 0; i < cols; ++i) {
+      // centroids on 'real' axes
+      var x = position(p[i]);
+      var y = yscale[p[i]](row[p[i]]);
+      centroids.push($V([x, y]));
+
+      // centroids on 'virtual' axes
+      if (i < cols - 1) {
+        var cx = x + a * (position(p[i + 1]) - x);
+        var cy = y + a * (yscale[p[i + 1]](row[p[i + 1]]) - y);
+        if (__.bundleDimension !== null) {
+          var leftCentroid = __.clusterCentroids
+            .get(yscale[__.bundleDimension](row[__.bundleDimension]))
+            .get(p[i]);
+          var rightCentroid = __.clusterCentroids
+            .get(yscale[__.bundleDimension](row[__.bundleDimension]))
+            .get(p[i + 1]);
+          var centroid = 0.5 * (leftCentroid + rightCentroid);
+          cy = centroid + (1 - __.bundlingStrength) * (cy - centroid);
+        }
+        centroids.push($V([cx, cy]));
+      }
+    }
+
+    return centroids;
+  }
+
+  function compute_control_points(centroids) {
+    var cols = centroids.length;
+    var a = __.smoothness;
+    var cps = [];
+
+    cps.push(centroids[0]);
+    cps.push(
+      $V([centroids[0].e(1) + a * 2 * (centroids[1].e(1) - centroids[0].e(1)), centroids[0].e(2)]),
+    );
+    for (var col = 1; col < cols - 1; ++col) {
+      var mid = centroids[col];
+      var left = centroids[col - 1];
+      var right = centroids[col + 1];
+
+      var diff = left.subtract(right);
+      cps.push(mid.add(diff.x(a)));
+      cps.push(mid);
+      cps.push(mid.subtract(diff.x(a)));
+    }
+    cps.push(
+      $V([
+        centroids[cols - 1].e(1) + a * 2 * (centroids[cols - 2].e(1) - centroids[cols - 1].e(1)),
+        centroids[cols - 1].e(2),
+      ]),
+    );
+    cps.push(centroids[cols - 1]);
+
+    return cps;
+  }
+
+  pc.shadows = function () {
+    flags.shadows = true;
+    pc.alphaOnBrushed(0.1);
+    pc.render();
+    return this;
+  };
+
+  // draw dots with radius r on the axis line where data intersects
+  pc.axisDots = function (r) {
+    var r = r || 0.1;
+    var ctx = pc.ctx.marks;
+    var startAngle = 0;
+    var endAngle = 2 * Math.PI;
+    ctx.globalAlpha = d3.min([1 / Math.pow(__.data.length, 1 / 2), 1]);
+    __.data.forEach(function (d) {
+      __.dimensions.map(function (p, i) {
+        ctx.beginPath();
+        ctx.arc(position(p), yscale[p](d[p]), r, startAngle, endAngle);
+        ctx.stroke();
+        ctx.fill();
+      });
+    });
+    return this;
+  };
+
+  // draw single cubic bezier curve
+  function single_curve(d, ctx) {
+    var centroids = compute_centroids(d);
+    var cps = compute_control_points(centroids);
+
+    ctx.moveTo(cps[0].e(1), cps[0].e(2));
+    for (var i = 1; i < cps.length; i += 3) {
+      if (__.showControlPoints) {
+        for (var j = 0; j < 3; j += 1) {
+          ctx.fillRect(cps[i + j].e(1), cps[i + j].e(2), 2, 2);
+        }
+      }
+      ctx.bezierCurveTo(
+        cps[i].e(1),
+        cps[i].e(2),
+        cps[i + 1].e(1),
+        cps[i + 1].e(2),
+        cps[i + 2].e(1),
+        cps[i + 2].e(2),
+      );
+    }
+  }
+
+  // draw single polyline
+  function color_path(d, ctx) {
+    ctx.beginPath();
+    if ((__.bundleDimension !== null && __.bundlingStrength > 0) || __.smoothness > 0) {
+      single_curve(d, ctx);
+    } else {
+      single_path(d, ctx);
+    }
+    ctx.stroke();
+  }
+
+  // draw many polylines of the same color
+  function paths(data, ctx) {
+    ctx.clearRect(-1, -1, w() + 2, h() + 2);
+    ctx.beginPath();
+    data.forEach(function (d) {
+      if ((__.bundleDimension !== null && __.bundlingStrength > 0) || __.smoothness > 0) {
+        single_curve(d, ctx);
+      } else {
+        single_path(d, ctx);
+      }
+    });
+    ctx.stroke();
+  }
+
+  // returns the y-position just beyond the separating null value line
+  function getNullPosition() {
+    if (__.nullValueSeparator == 'bottom') {
+      return h() + 1;
+    } else if (__.nullValueSeparator == 'top') {
+      return 1;
+    } else {
+      console.log(
+        "A value is NULL, but nullValueSeparator is not set; set it to 'bottom' or 'top'.",
+      );
+    }
+    return h() + 1;
+  }
+
+  function single_path(d, ctx) {
+    __.dimensions.map(function (p, i) {
+      if (i == 0) {
+        ctx.moveTo(position(p), typeof d[p] == 'undefined' ? getNullPosition() : yscale[p](d[p]));
+      } else {
+        ctx.lineTo(position(p), typeof d[p] == 'undefined' ? getNullPosition() : yscale[p](d[p]));
+      }
+    });
+  }
+
+  function path_brushed(d, i) {
+    if (__.brushedColor !== null) {
+      ctx.brushed.strokeStyle = d3.functor(__.brushedColor)(d, i);
+    } else {
+      ctx.brushed.strokeStyle = d3.functor(__.color)(d, i);
+    }
+    return color_path(d, ctx.brushed);
+  }
+
+  function path_foreground(d, i) {
+    ctx.foreground.strokeStyle = d3.functor(__.color)(d, i);
+    return color_path(d, ctx.foreground);
+  }
+
+  function path_highlight(d, i) {
+    ctx.highlight.strokeStyle = d3.functor(__.color)(d, i);
+    return color_path(d, ctx.highlight);
+  }
+  pc.clear = function (layer) {
+    ctx[layer].clearRect(0, 0, w() + 2, h() + 2);
+
+    // This will make sure that the foreground items are transparent
+    // without the need for changing the opacity style of the foreground canvas
+    // as this would stop the css styling from working
+    if (layer === 'brushed' && isBrushed()) {
+      ctx.brushed.fillStyle = pc.selection.style('background-color');
+      ctx.brushed.globalAlpha = 1 - __.alphaOnBrushed;
+      ctx.brushed.fillRect(0, 0, w() + 2, h() + 2);
+      ctx.brushed.globalAlpha = __.alpha;
+    }
+    return this;
+  };
+
+  d3.rebind(
+    pc,
+    axis,
+    'ticks',
+    'orient',
+    'tickValues',
+    'tickSubdivide',
+    'tickSize',
+    'tickPadding',
+    'tickFormat',
+  );
+
+  function flipAxisAndUpdatePCP(dimension) {
+    var g = pc.svg.selectAll('.dimension');
+
+    pc.flip(dimension);
+
+    d3.select(this.parentElement).transition().duration(1100).call(axis.scale(yscale[dimension]));
+
+    pc.render();
+  }
+
+  function rotateLabels() {
+    var delta = d3.event.deltaY;
+    delta = delta < 0 ? -5 : delta;
+    delta = delta > 0 ? 5 : delta;
+
+    __.dimensionTitleRotation += delta;
+    pc.svg
+      .selectAll('text.label')
+      .attr('transform', 'translate(0,-5) rotate(' + __.dimensionTitleRotation + ')');
+    d3.event.preventDefault();
+  }
+
+  function dimensionLabels(d) {
+    return d in __.dimensionTitles ? __.dimensionTitles[d] : d; // dimension display names
+  }
+
+  pc.createAxes = function () {
+    if (g) pc.removeAxes();
+
+    // Add a group element for each dimension.
+    g = pc.svg
+      .selectAll('.dimension')
+      .data(__.dimensions, function (d) {
+        return d;
+      })
+      .enter()
+      .append('svg:g')
+      .attr('class', 'dimension')
+      .attr('transform', function (d) {
+        return 'translate(' + xscale(d) + ')';
+      });
+
+    // Add an axis and title.
+    g.append('svg:g')
+      .attr('class', 'axis')
+      .attr('transform', 'translate(0,0)')
+      .each(function (d) {
+        d3.select(this).call(axis.scale(yscale[d]));
+      })
+      .append('svg:text')
+      .attr({
+        'text-anchor': 'middle',
+        y: 0,
+        transform: 'translate(0,-5) rotate(' + __.dimensionTitleRotation + ')',
+        x: 0,
+        class: 'label',
+      })
+      .text(dimensionLabels)
+      .on('dblclick', flipAxisAndUpdatePCP)
+      .on('wheel', rotateLabels);
+
+    if (__.nullValueSeparator == 'top') {
+      pc.svg
+        .append('line')
+        .attr('x1', 0)
+        .attr('y1', 1 + __.nullValueSeparatorPadding.top)
+        .attr('x2', w())
+        .attr('y2', 1 + __.nullValueSeparatorPadding.top)
+        .attr('stroke-width', 1)
+        .attr('stroke', '#777')
+        .attr('fill', 'none')
+        .attr('shape-rendering', 'crispEdges');
+    } else if (__.nullValueSeparator == 'bottom') {
+      pc.svg
+        .append('line')
+        .attr('x1', 0)
+        .attr('y1', h() + 1 - __.nullValueSeparatorPadding.bottom)
+        .attr('x2', w())
+        .attr('y2', h() + 1 - __.nullValueSeparatorPadding.bottom)
+        .attr('stroke-width', 1)
+        .attr('stroke', '#777')
+        .attr('fill', 'none')
+        .attr('shape-rendering', 'crispEdges');
+    }
+
+    flags.axes = true;
+    return this;
+  };
+
+  pc.removeAxes = function () {
+    g.remove();
+    return this;
+  };
+
+  pc.updateAxes = function () {
+    var g_data = pc.svg.selectAll('.dimension').data(__.dimensions);
+
+    // Enter
+    g_data
+      .enter()
+      .append('svg:g')
+      .attr('class', 'dimension')
+      .attr('transform', function (p) {
+        return 'translate(' + position(p) + ')';
+      })
+      .style('opacity', 0)
+      .append('svg:g')
+      .attr('class', 'axis')
+      .attr('transform', 'translate(0,0)')
+      .each(function (d) {
+        d3.select(this).call(axis.scale(yscale[d]));
+      })
+      .append('svg:text')
+      .attr({
+        'text-anchor': 'middle',
+        y: 0,
+        transform: 'translate(0,-5) rotate(' + __.dimensionTitleRotation + ')',
+        x: 0,
+        class: 'label',
+      })
+      .text(dimensionLabels)
+      .on('dblclick', flipAxisAndUpdatePCP)
+      .on('wheel', rotateLabels);
+
+    // Update
+    g_data.attr('opacity', 0);
+    g_data
+      .select('.axis')
+      .transition()
+      .duration(1100)
+      .each(function (d) {
+        d3.select(this).call(axis.scale(yscale[d]));
+      });
+    g_data
+      .select('.label')
+      .transition()
+      .duration(1100)
+      .text(dimensionLabels)
+      .attr('transform', 'translate(0,-5) rotate(' + __.dimensionTitleRotation + ')');
+
+    // Exit
+    g_data.exit().remove();
+
+    g = pc.svg.selectAll('.dimension');
+    g.transition()
+      .duration(1100)
+      .attr('transform', function (p) {
+        return 'translate(' + position(p) + ')';
+      })
+      .style('opacity', 1);
+
+    pc.svg
+      .selectAll('.axis')
+      .transition()
+      .duration(1100)
+      .each(function (d) {
+        d3.select(this).call(axis.scale(yscale[d]));
+      });
+
+    if (flags.brushable) pc.brushable();
+    if (flags.reorderable) pc.reorderable();
+    if (pc.brushMode() !== 'None') {
+      var mode = pc.brushMode();
+      pc.brushMode('None');
+      pc.brushMode(mode);
+    }
+    return this;
+  };
+
+  // Jason Davies, http://bl.ocks.org/1341281
+  pc.reorderable = function () {
+    if (!g) pc.createAxes();
+
+    g.style('cursor', 'move').call(
+      d3.behavior
+        .drag()
+        .on('dragstart', function (d) {
+          dragging[d] = this.__origin__ = xscale(d);
+        })
+        .on('drag', function (d) {
+          dragging[d] = Math.min(w(), Math.max(0, (this.__origin__ += d3.event.dx)));
+          __.dimensions.sort(function (a, b) {
+            return position(a) - position(b);
+          });
+          xscale.domain(__.dimensions);
+          pc.render();
+          g.attr('transform', function (d) {
+            return 'translate(' + position(d) + ')';
+          });
+        })
+        .on('dragend', function (d) {
+          // Let's see if the order has changed and send out an event if so.
+          var i = 0,
+            j = __.dimensions.indexOf(d),
+            elem = this,
+            parent = this.parentElement;
+
+          while ((elem = elem.previousElementSibling) != null) ++i;
+          if (i !== j) {
+            events.axesreorder.call(pc, __.dimensions);
+            // We now also want to reorder the actual dom elements that represent
+            // the axes. That is, the g.dimension elements. If we don't do this,
+            // we get a weird and confusing transition when updateAxes is called.
+            // This is due to the fact that, initially the nth g.dimension element
+            // represents the nth axis. However, after a manual reordering,
+            // without reordering the dom elements, the nth dom elements no longer
+            // necessarily represents the nth axis.
+            //
+            // i is the original index of the dom element
+            // j is the new index of the dom element
+            if (i > j) {
+              // Element moved left
+              parent.insertBefore(this, parent.children[j - 1]);
+            } else {
+              // Element moved right
+              if (j + 1 < parent.children.length) {
+                parent.insertBefore(this, parent.children[j + 1]);
+              } else {
+                parent.appendChild(this);
+              }
+            }
+          }
+
+          delete this.__origin__;
+          delete dragging[d];
+          d3.select(this)
+            .transition()
+            .attr('transform', 'translate(' + xscale(d) + ')');
+          pc.render();
+        }),
+    );
+    flags.reorderable = true;
+    return this;
+  };
+
+  // Reorder dimensions, such that the highest value (visually) is on the left and
+  // the lowest on the right. Visual values are determined by the data values in
+  // the given row.
+  pc.reorder = function (rowdata) {
+    var dims = __.dimensions.slice(0);
+    __.dimensions.sort(function (a, b) {
+      var pixelDifference = yscale[a](rowdata[a]) - yscale[b](rowdata[b]);
+
+      // Array.sort is not necessarily stable, this means that if pixelDifference is zero
+      // the ordering of dimensions might change unexpectedly. This is solved by sorting on
+      // variable name in that case.
+      if (pixelDifference === 0) {
+        return a.localeCompare(b);
+      } // else
+      return pixelDifference;
+    });
+
+    // NOTE: this is relatively cheap given that:
+    // number of dimensions < number of data items
+    // Thus we check equality of order to prevent rerendering when this is the case.
+    var reordered = false;
+    dims.some(function (val, index) {
+      reordered = val !== __.dimensions[index];
+      return reordered;
+    });
+
+    if (reordered) {
+      xscale.domain(__.dimensions);
+      var highlighted = __.highlighted.slice(0);
+      pc.unhighlight();
+
+      g.transition()
+        .duration(1500)
+        .attr('transform', function (d) {
+          return 'translate(' + xscale(d) + ')';
+        });
+      pc.render();
+
+      // pc.highlight() does not check whether highlighted is length zero, so we do that here.
+      if (highlighted.length !== 0) {
+        pc.highlight(highlighted);
+      }
+    }
+  };
+
+  // pairs of adjacent dimensions
+  pc.adjacent_pairs = function (arr) {
+    var ret = [];
+    for (var i = 0; i < arr.length - 1; i += 1) {
+      ret.push([arr[i], arr[i + 1]]);
+    }
+    return ret;
+  };
+
+  var brush = {
+    modes: {
+      None: {
+        install: function (pc) {}, // Nothing to be done.
+        uninstall: function (pc) {}, // Nothing to be done.
+        selected: function () {
+          return [];
+        }, // Nothing to return
+        brushState: function () {
+          return {};
+        },
+      },
+    },
+    mode: 'None',
+    predicate: 'AND',
+    currentMode: function () {
+      return this.modes[this.mode];
+    },
+  };
+
+  // This function can be used for 'live' updates of brushes. That is, during the
+  // specification of a brush, this method can be called to update the view.
+  //
+  // @param newSelection - The new set of data items that is currently contained
+  //                       by the brushes
+  function brushUpdated(newSelection) {
+    __.brushed = newSelection;
+    events.brush.call(pc, __.brushed);
+    pc.renderBrushed();
+  }
+
+  function brushPredicate(predicate) {
+    if (!arguments.length) {
+      return brush.predicate;
+    }
+
+    predicate = String(predicate).toUpperCase();
+    if (predicate !== 'AND' && predicate !== 'OR') {
+      throw 'Invalid predicate ' + predicate;
+    }
+
+    brush.predicate = predicate;
+    __.brushed = brush.currentMode().selected();
+    pc.renderBrushed();
+    return pc;
+  }
+
+  pc.brushModes = function () {
+    return Object.getOwnPropertyNames(brush.modes);
+  };
+
+  pc.brushMode = function (mode) {
+    if (arguments.length === 0) {
+      return brush.mode;
+    }
+
+    if (pc.brushModes().indexOf(mode) === -1) {
+      throw 'pc.brushmode: Unsupported brush mode: ' + mode;
+    }
+
+    // Make sure that we don't trigger unnecessary events by checking if the mode
+    // actually changes.
+    if (mode !== brush.mode) {
+      // When changing brush modes, the first thing we need to do is clearing any
+      // brushes from the current mode, if any.
+      if (brush.mode !== 'None') {
+        pc.brushReset();
+      }
+
+      // Next, we need to 'uninstall' the current brushMode.
+      brush.modes[brush.mode].uninstall(pc);
+      // Finally, we can install the requested one.
+      brush.mode = mode;
+      brush.modes[brush.mode].install();
+      if (mode === 'None') {
+        delete pc.brushPredicate;
+      } else {
+        pc.brushPredicate = brushPredicate;
+      }
+    }
+
+    return pc;
+  };
+
+  // brush mode: 1D-Axes
+
+  (function () {
+    var brushes = {};
+
+    function is_brushed(p) {
+      return !brushes[p].empty();
+    }
+
+    // data within extents
+    function selected() {
+      var actives = __.dimensions.filter(is_brushed),
+        extents = actives.map(function (p) {
+          return brushes[p].extent();
+        });
+
+      // We don't want to return the full data set when there are no axes brushed.
+      // Actually, when there are no axes brushed, by definition, no items are
+      // selected. So, let's avoid the filtering and just return false.
+      //if (actives.length === 0) return false;
+
+      // Resolves broken examples for now. They expect to get the full dataset back from empty brushes
+      if (actives.length === 0) return __.data;
+
+      // test if within range
+      var within = {
+        date: function (d, p, dimension) {
+          if (typeof yscale[p].rangePoints === 'function') {
+            // if it is ordinal
+            return (
+              extents[dimension][0] <= yscale[p](d[p]) && yscale[p](d[p]) <= extents[dimension][1]
+            );
+          } else {
+            return extents[dimension][0] <= d[p] && d[p] <= extents[dimension][1];
+          }
+        },
+        number: function (d, p, dimension) {
+          if (typeof yscale[p].rangePoints === 'function') {
+            // if it is ordinal
+            return (
+              extents[dimension][0] <= yscale[p](d[p]) && yscale[p](d[p]) <= extents[dimension][1]
+            );
+          } else {
+            return extents[dimension][0] <= d[p] && d[p] <= extents[dimension][1];
+          }
+        },
+        string: function (d, p, dimension) {
+          return (
+            extents[dimension][0] <= yscale[p](d[p]) && yscale[p](d[p]) <= extents[dimension][1]
+          );
+        },
+      };
+
+      return __.data.filter(function (d) {
+        switch (brush.predicate) {
+          case 'AND':
+            return actives.every(function (p, dimension) {
+              return within[__.types[p]](d, p, dimension);
+            });
+          case 'OR':
+            return actives.some(function (p, dimension) {
+              return within[__.types[p]](d, p, dimension);
+            });
+          default:
+            throw 'Unknown brush predicate ' + __.brushPredicate;
+        }
+      });
+    }
+
+    function brushExtents(extents) {
+      if (typeof extents === 'undefined') {
+        var extents = {};
+        __.dimensions.forEach(function (d) {
+          var brush = brushes[d];
+          if (brush !== undefined && !brush.empty()) {
+            var extent = brush.extent();
+            extent.sort(d3.ascending);
+            extents[d] = extent;
+          }
+        });
+        return extents;
+      } else {
+        //first get all the brush selections
+        var brushSelections = {};
+        g.selectAll('.brush').each(function (d) {
+          brushSelections[d] = d3.select(this);
+        });
+
+        // loop over each dimension and update appropriately (if it was passed in through extents)
+        __.dimensions.forEach(function (d) {
+          if (extents[d] === undefined) {
+            return;
+          }
+
+          var brush = brushes[d];
+          if (brush !== undefined) {
+            //update the extent
+            brush.extent(extents[d]);
+
+            //redraw the brush
+            brush(brushSelections[d]);
+
+            //fire some events
+            brush.event(brushSelections[d]);
+          }
+        });
+
+        //redraw the chart
+        pc.renderBrushed();
+      }
+    }
+    function brushFor(axis) {
+      var brush = d3.svg.brush();
+
+      brush
+        .y(yscale[axis])
+        .on('brushstart', function () {
+          if (d3.event.sourceEvent !== null) {
+            d3.event.sourceEvent.stopPropagation();
+          }
+        })
+        .on('brush', function () {
+          brushUpdated(selected());
+        })
+        .on('brushend', function () {
+          events.brushend.call(pc, __.brushed);
+        });
+
+      brushes[axis] = brush;
+      return brush;
+    }
+    function brushReset(dimension) {
+      __.brushed = false;
+      if (g) {
+        g.selectAll('.brush').each(function (d) {
+          d3.select(this).call(brushes[d].clear());
+        });
+        pc.renderBrushed();
+      }
+      return this;
+    }
+
+    function install() {
+      if (!g) pc.createAxes();
+
+      // Add and store a brush for each axis.
+      g.append('svg:g')
+        .attr('class', 'brush')
+        .each(function (d) {
+          d3.select(this).call(brushFor(d));
+        })
+        .selectAll('rect')
+        .style('visibility', null)
+        .attr('x', -15)
+        .attr('width', 30);
+
+      pc.brushExtents = brushExtents;
+      pc.brushReset = brushReset;
+      return pc;
+    }
+
+    brush.modes['1D-axes'] = {
+      install: install,
+      uninstall: function () {
+        g.selectAll('.brush').remove();
+        brushes = {};
+        delete pc.brushExtents;
+        delete pc.brushReset;
+      },
+      selected: selected,
+      brushState: brushExtents,
+    };
+  })();
+  // brush mode: 2D-strums
+  // bl.ocks.org/syntagmatic/5441022
+
+  (function () {
+    var strums = {},
+      strumRect;
+
+    function drawStrum(strum, activePoint) {
+      var svg = pc.selection.select('svg').select('g#strums'),
+        id = strum.dims.i,
+        points = [strum.p1, strum.p2],
+        line = svg.selectAll('line#strum-' + id).data([strum]),
+        circles = svg.selectAll('circle#strum-' + id).data(points),
+        drag = d3.behavior.drag();
+
+      line
+        .enter()
+        .append('line')
+        .attr('id', 'strum-' + id)
+        .attr('class', 'strum');
+
+      line
+        .attr('x1', function (d) {
+          return d.p1[0];
+        })
+        .attr('y1', function (d) {
+          return d.p1[1];
+        })
+        .attr('x2', function (d) {
+          return d.p2[0];
+        })
+        .attr('y2', function (d) {
+          return d.p2[1];
+        })
+        .attr('stroke', 'black')
+        .attr('stroke-width', 2);
+
+      drag
+        .on('drag', function (d, i) {
+          var ev = d3.event;
+          i = i + 1;
+          strum['p' + i][0] = Math.min(Math.max(strum.minX + 1, ev.x), strum.maxX);
+          strum['p' + i][1] = Math.min(Math.max(strum.minY, ev.y), strum.maxY);
+          drawStrum(strum, i - 1);
+        })
+        .on('dragend', onDragEnd());
+
+      circles
+        .enter()
+        .append('circle')
+        .attr('id', 'strum-' + id)
+        .attr('class', 'strum');
+
+      circles
+        .attr('cx', function (d) {
+          return d[0];
+        })
+        .attr('cy', function (d) {
+          return d[1];
+        })
+        .attr('r', 5)
+        .style('opacity', function (d, i) {
+          return activePoint !== undefined && i === activePoint ? 0.8 : 0;
+        })
+        .on('mouseover', function () {
+          d3.select(this).style('opacity', 0.8);
+        })
+        .on('mouseout', function () {
+          d3.select(this).style('opacity', 0);
+        })
+        .call(drag);
+    }
+
+    function dimensionsForPoint(p) {
+      var dims = { i: -1, left: undefined, right: undefined };
+      __.dimensions.some(function (dim, i) {
+        if (xscale(dim) < p[0]) {
+          var next = __.dimensions[i + 1];
+          dims.i = i;
+          dims.left = dim;
+          dims.right = next;
+          return false;
+        }
+        return true;
+      });
+
+      if (dims.left === undefined) {
+        // Event on the left side of the first axis.
+        dims.i = 0;
+        dims.left = __.dimensions[0];
+        dims.right = __.dimensions[1];
+      } else if (dims.right === undefined) {
+        // Event on the right side of the last axis
+        dims.i = __.dimensions.length - 1;
+        dims.right = dims.left;
+        dims.left = __.dimensions[__.dimensions.length - 2];
+      }
+
+      return dims;
+    }
+
+    function onDragStart() {
+      // First we need to determine between which two axes the sturm was started.
+      // This will determine the freedom of movement, because a strum can
+      // logically only happen between two axes, so no movement outside these axes
+      // should be allowed.
+      return function () {
+        var p = d3.mouse(strumRect[0][0]),
+          dims,
+          strum;
+
+        p[0] = p[0] - __.margin.left;
+        p[1] = p[1] - __.margin.top;
+
+        (dims = dimensionsForPoint(p)),
+          (strum = {
+            p1: p,
+            dims: dims,
+            minX: xscale(dims.left),
+            maxX: xscale(dims.right),
+            minY: 0,
+            maxY: h(),
+          });
+
+        strums[dims.i] = strum;
+        strums.active = dims.i;
+
+        // Make sure that the point is within the bounds
+        strum.p1[0] = Math.min(Math.max(strum.minX, p[0]), strum.maxX);
+        strum.p2 = strum.p1.slice();
+      };
+    }
+
+    function onDrag() {
+      return function () {
+        var ev = d3.event,
+          strum = strums[strums.active];
+
+        // Make sure that the point is within the bounds
+        strum.p2[0] = Math.min(Math.max(strum.minX + 1, ev.x - __.margin.left), strum.maxX);
+        strum.p2[1] = Math.min(Math.max(strum.minY, ev.y - __.margin.top), strum.maxY);
+        drawStrum(strum, 1);
+      };
+    }
+
+    function containmentTest(strum, width) {
+      var p1 = [strum.p1[0] - strum.minX, strum.p1[1] - strum.minX],
+        p2 = [strum.p2[0] - strum.minX, strum.p2[1] - strum.minX],
+        m1 = 1 - width / p1[0],
+        b1 = p1[1] * (1 - m1),
+        m2 = 1 - width / p2[0],
+        b2 = p2[1] * (1 - m2);
+
+      // test if point falls between lines
+      return function (p) {
+        var x = p[0],
+          y = p[1],
+          y1 = m1 * x + b1,
+          y2 = m2 * x + b2;
+
+        if (y > Math.min(y1, y2) && y < Math.max(y1, y2)) {
+          return true;
+        }
+
+        return false;
+      };
+    }
+
+    function selected() {
+      var ids = Object.getOwnPropertyNames(strums),
+        brushed = __.data;
+
+      // Get the ids of the currently active strums.
+      ids = ids.filter(function (d) {
+        return !isNaN(d);
+      });
+
+      function crossesStrum(d, id) {
+        var strum = strums[id],
+          test = containmentTest(strum, strums.width(id)),
+          d1 = strum.dims.left,
+          d2 = strum.dims.right,
+          y1 = yscale[d1],
+          y2 = yscale[d2],
+          point = [y1(d[d1]) - strum.minX, y2(d[d2]) - strum.minX];
+        return test(point);
+      }
+
+      if (ids.length === 0) {
+        return brushed;
+      }
+
+      return brushed.filter(function (d) {
+        switch (brush.predicate) {
+          case 'AND':
+            return ids.every(function (id) {
+              return crossesStrum(d, id);
+            });
+          case 'OR':
+            return ids.some(function (id) {
+              return crossesStrum(d, id);
+            });
+          default:
+            throw 'Unknown brush predicate ' + __.brushPredicate;
+        }
+      });
+    }
+
+    function removeStrum() {
+      var strum = strums[strums.active],
+        svg = pc.selection.select('svg').select('g#strums');
+
+      delete strums[strums.active];
+      strums.active = undefined;
+      svg.selectAll('line#strum-' + strum.dims.i).remove();
+      svg.selectAll('circle#strum-' + strum.dims.i).remove();
+    }
+
+    function onDragEnd() {
+      return function () {
+        var brushed = __.data,
+          strum = strums[strums.active];
+
+        // Okay, somewhat unexpected, but not totally unsurprising, a mousclick is
+        // considered a drag without move. So we have to deal with that case
+        if (strum && strum.p1[0] === strum.p2[0] && strum.p1[1] === strum.p2[1]) {
+          removeStrum(strums);
+        }
+
+        brushed = selected(strums);
+        strums.active = undefined;
+        __.brushed = brushed;
+        pc.renderBrushed();
+        events.brushend.call(pc, __.brushed);
+      };
+    }
+
+    function brushReset(strums) {
+      return function () {
+        var ids = Object.getOwnPropertyNames(strums).filter(function (d) {
+          return !isNaN(d);
+        });
+
+        ids.forEach(function (d) {
+          strums.active = d;
+          removeStrum(strums);
+        });
+        onDragEnd(strums)();
+      };
+    }
+
+    function install() {
+      var drag = d3.behavior.drag();
+
+      // Map of current strums. Strums are stored per segment of the PC. A segment,
+      // being the area between two axes. The left most area is indexed at 0.
+      strums.active = undefined;
+      // Returns the width of the PC segment where currently a strum is being
+      // placed. NOTE: even though they are evenly spaced in our current
+      // implementation, we keep for when non-even spaced segments are supported as
+      // well.
+      strums.width = function (id) {
+        var strum = strums[id];
+
+        if (strum === undefined) {
+          return undefined;
+        }
+
+        return strum.maxX - strum.minX;
+      };
+
+      pc.on('axesreorder.strums', function () {
+        var ids = Object.getOwnPropertyNames(strums).filter(function (d) {
+          return !isNaN(d);
+        });
+
+        // Checks if the first dimension is directly left of the second dimension.
+        function consecutive(first, second) {
+          var length = __.dimensions.length;
+          return __.dimensions.some(function (d, i) {
+            return d === first ? i + i < length && __.dimensions[i + 1] === second : false;
+          });
+        }
+
+        if (ids.length > 0) {
+          // We have some strums, which might need to be removed.
+          ids.forEach(function (d) {
+            var dims = strums[d].dims;
+            strums.active = d;
+            // If the two dimensions of the current strum are not next to each other
+            // any more, than we'll need to remove the strum. Otherwise we keep it.
+            if (!consecutive(dims.left, dims.right)) {
+              removeStrum(strums);
+            }
+          });
+          onDragEnd(strums)();
+        }
+      });
+
+      // Add a new svg group in which we draw the strums.
+      pc.selection
+        .select('svg')
+        .append('g')
+        .attr('id', 'strums')
+        .attr('transform', 'translate(' + __.margin.left + ',' + __.margin.top + ')');
+
+      // Install the required brushReset function
+      pc.brushReset = brushReset(strums);
+
+      drag
+        .on('dragstart', onDragStart(strums))
+        .on('drag', onDrag(strums))
+        .on('dragend', onDragEnd(strums));
+
+      // NOTE: The styling needs to be done here and not in the css. This is because
+      //       for 1D brushing, the canvas layers should not listen to
+      //       pointer-events.
+      strumRect = pc.selection
+        .select('svg')
+        .insert('rect', 'g#strums')
+        .attr('id', 'strum-events')
+        .attr('x', __.margin.left)
+        .attr('y', __.margin.top)
+        .attr('width', w())
+        .attr('height', h() + 2)
+        .style('opacity', 0)
+        .call(drag);
+    }
+
+    brush.modes['2D-strums'] = {
+      install: install,
+      uninstall: function () {
+        pc.selection.select('svg').select('g#strums').remove();
+        pc.selection.select('svg').select('rect#strum-events').remove();
+        pc.on('axesreorder.strums', undefined);
+        delete pc.brushReset;
+
+        strumRect = undefined;
+      },
+      selected: selected,
+      brushState: function () {
+        return strums;
+      },
+    };
+  })();
+
+  // brush mode: 1D-Axes with multiple extents
+  // requires d3.svg.multibrush
+
+  (function () {
+    if (typeof d3.svg.multibrush !== 'function') {
+      return;
+    }
+    var brushes = {};
+
+    function is_brushed(p) {
+      return !brushes[p].empty();
+    }
+
+    // data within extents
+    function selected() {
+      var actives = __.dimensions.filter(is_brushed),
+        extents = actives.map(function (p) {
+          return brushes[p].extent();
+        });
+
+      // We don't want to return the full data set when there are no axes brushed.
+      // Actually, when there are no axes brushed, by definition, no items are
+      // selected. So, let's avoid the filtering and just return false.
+      //if (actives.length === 0) return false;
+
+      // Resolves broken examples for now. They expect to get the full dataset back from empty brushes
+      if (actives.length === 0) return __.data;
+
+      // test if within range
+      var within = {
+        date: function (d, p, dimension, b) {
+          if (typeof yscale[p].rangePoints === 'function') {
+            // if it is ordinal
+            return b[0] <= yscale[p](d[p]) && yscale[p](d[p]) <= b[1];
+          } else {
+            return b[0] <= d[p] && d[p] <= b[1];
+          }
+        },
+        number: function (d, p, dimension, b) {
+          if (typeof yscale[p].rangePoints === 'function') {
+            // if it is ordinal
+            return b[0] <= yscale[p](d[p]) && yscale[p](d[p]) <= b[1];
+          } else {
+            return b[0] <= d[p] && d[p] <= b[1];
+          }
+        },
+        string: function (d, p, dimension, b) {
+          return b[0] <= yscale[p](d[p]) && yscale[p](d[p]) <= b[1];
+        },
+      };
+
+      return __.data.filter(function (d) {
+        switch (brush.predicate) {
+          case 'AND':
+            return actives.every(function (p, dimension) {
+              return extents[dimension].some(function (b) {
+                return within[__.types[p]](d, p, dimension, b);
+              });
+            });
+          case 'OR':
+            return actives.some(function (p, dimension) {
+              return extents[dimension].some(function (b) {
+                return within[__.types[p]](d, p, dimension, b);
+              });
+            });
+          default:
+            throw 'Unknown brush predicate ' + __.brushPredicate;
+        }
+      });
+    }
+
+    function brushExtents() {
+      var extents = {};
+      __.dimensions.forEach(function (d) {
+        var brush = brushes[d];
+        if (brush !== undefined && !brush.empty()) {
+          var extent = brush.extent();
+          extents[d] = extent;
+        }
+      });
+      return extents;
+    }
+
+    function brushFor(axis) {
+      var brush = d3.svg.multibrush();
+
+      brush
+        .y(yscale[axis])
+        .on('brushstart', function () {
+          if (d3.event.sourceEvent !== null) {
+            d3.event.sourceEvent.stopPropagation();
+          }
+        })
+        .on('brush', function () {
+          brushUpdated(selected());
+        })
+        .on('brushend', function () {
+          // d3.svg.multibrush clears extents just before calling 'brushend'
+          // so we have to update here again.
+          // This fixes issue #103 for now, but should be changed in d3.svg.multibrush
+          // to avoid unnecessary computation.
+          brushUpdated(selected());
+          events.brushend.call(pc, __.brushed);
+        })
+        .extentAdaption(function (selection) {
+          selection.style('visibility', null).attr('x', -15).attr('width', 30);
+        })
+        .resizeAdaption(function (selection) {
+          selection.selectAll('rect').attr('x', -15).attr('width', 30);
+        });
+
+      brushes[axis] = brush;
+      return brush;
+    }
+
+    function brushReset(dimension) {
+      __.brushed = false;
+      if (g) {
+        g.selectAll('.brush').each(function (d) {
+          d3.select(this).call(brushes[d].clear());
+        });
+        pc.renderBrushed();
+      }
+      return this;
+    }
+
+    function install() {
+      if (!g) pc.createAxes();
+
+      // Add and store a brush for each axis.
+      g.append('svg:g')
+        .attr('class', 'brush')
+        .each(function (d) {
+          d3.select(this).call(brushFor(d));
+        })
+        .selectAll('rect')
+        .style('visibility', null)
+        .attr('x', -15)
+        .attr('width', 30);
+
+      pc.brushExtents = brushExtents;
+      pc.brushReset = brushReset;
+      return pc;
+    }
+
+    brush.modes['1D-axes-multi'] = {
+      install: install,
+      uninstall: function () {
+        g.selectAll('.brush').remove();
+        brushes = {};
+        delete pc.brushExtents;
+        delete pc.brushReset;
+      },
+      selected: selected,
+      brushState: brushExtents,
+    };
+  })();
+  // brush mode: angular
+  // code based on 2D.strums.js
+
+  (function () {
+    var arcs = {},
+      strumRect;
+
+    function drawStrum(arc, activePoint) {
+      var svg = pc.selection.select('svg').select('g#arcs'),
+        id = arc.dims.i,
+        points = [arc.p2, arc.p3],
+        line = svg.selectAll('line#arc-' + id).data([
+          { p1: arc.p1, p2: arc.p2 },
+          { p1: arc.p1, p2: arc.p3 },
+        ]),
+        circles = svg.selectAll('circle#arc-' + id).data(points),
+        drag = d3.behavior.drag(),
+        path = svg.selectAll('path#arc-' + id).data([arc]);
+
+      path
+        .enter()
+        .append('path')
+        .attr('id', 'arc-' + id)
+        .attr('class', 'arc')
+        .style('fill', 'orange')
+        .style('opacity', 0.5);
+
+      path.attr('d', arc.arc).attr('transform', 'translate(' + arc.p1[0] + ',' + arc.p1[1] + ')');
+
+      line
+        .enter()
+        .append('line')
+        .attr('id', 'arc-' + id)
+        .attr('class', 'arc');
+
+      line
+        .attr('x1', function (d) {
+          return d.p1[0];
+        })
+        .attr('y1', function (d) {
+          return d.p1[1];
+        })
+        .attr('x2', function (d) {
+          return d.p2[0];
+        })
+        .attr('y2', function (d) {
+          return d.p2[1];
+        })
+        .attr('stroke', 'black')
+        .attr('stroke-width', 2);
+
+      drag
+        .on('drag', function (d, i) {
+          var ev = d3.event,
+            angle = 0;
+
+          i = i + 2;
+
+          arc['p' + i][0] = Math.min(Math.max(arc.minX + 1, ev.x), arc.maxX);
+          arc['p' + i][1] = Math.min(Math.max(arc.minY, ev.y), arc.maxY);
+
+          angle = i === 3 ? arcs.startAngle(id) : arcs.endAngle(id);
+
+          if (
+            (arc.startAngle < Math.PI && arc.endAngle < Math.PI && angle < Math.PI) ||
+            (arc.startAngle >= Math.PI && arc.endAngle >= Math.PI && angle >= Math.PI)
+          ) {
+            if (i === 2) {
+              arc.endAngle = angle;
+              arc.arc.endAngle(angle);
+            } else if (i === 3) {
+              arc.startAngle = angle;
+              arc.arc.startAngle(angle);
+            }
+          }
+
+          drawStrum(arc, i - 2);
+        })
+        .on('dragend', onDragEnd());
+
+      circles
+        .enter()
+        .append('circle')
+        .attr('id', 'arc-' + id)
+        .attr('class', 'arc');
+
+      circles
+        .attr('cx', function (d) {
+          return d[0];
+        })
+        .attr('cy', function (d) {
+          return d[1];
+        })
+        .attr('r', 5)
+        .style('opacity', function (d, i) {
+          return activePoint !== undefined && i === activePoint ? 0.8 : 0;
+        })
+        .on('mouseover', function () {
+          d3.select(this).style('opacity', 0.8);
+        })
+        .on('mouseout', function () {
+          d3.select(this).style('opacity', 0);
+        })
+        .call(drag);
+    }
+
+    function dimensionsForPoint(p) {
+      var dims = { i: -1, left: undefined, right: undefined };
+      __.dimensions.some(function (dim, i) {
+        if (xscale(dim) < p[0]) {
+          var next = __.dimensions[i + 1];
+          dims.i = i;
+          dims.left = dim;
+          dims.right = next;
+          return false;
+        }
+        return true;
+      });
+
+      if (dims.left === undefined) {
+        // Event on the left side of the first axis.
+        dims.i = 0;
+        dims.left = __.dimensions[0];
+        dims.right = __.dimensions[1];
+      } else if (dims.right === undefined) {
+        // Event on the right side of the last axis
+        dims.i = __.dimensions.length - 1;
+        dims.right = dims.left;
+        dims.left = __.dimensions[__.dimensions.length - 2];
+      }
+
+      return dims;
+    }
+
+    function onDragStart() {
+      // First we need to determine between which two axes the arc was started.
+      // This will determine the freedom of movement, because a arc can
+      // logically only happen between two axes, so no movement outside these axes
+      // should be allowed.
+      return function () {
+        var p = d3.mouse(strumRect[0][0]),
+          dims,
+          arc;
+
+        p[0] = p[0] - __.margin.left;
+        p[1] = p[1] - __.margin.top;
+
+        (dims = dimensionsForPoint(p)),
+          (arc = {
+            p1: p,
+            dims: dims,
+            minX: xscale(dims.left),
+            maxX: xscale(dims.right),
+            minY: 0,
+            maxY: h(),
+            startAngle: undefined,
+            endAngle: undefined,
+            arc: d3.svg.arc().innerRadius(0),
+          });
+
+        arcs[dims.i] = arc;
+        arcs.active = dims.i;
+
+        // Make sure that the point is within the bounds
+        arc.p1[0] = Math.min(Math.max(arc.minX, p[0]), arc.maxX);
+        arc.p2 = arc.p1.slice();
+        arc.p3 = arc.p1.slice();
+      };
+    }
+
+    function onDrag() {
+      return function () {
+        var ev = d3.event,
+          arc = arcs[arcs.active];
+
+        // Make sure that the point is within the bounds
+        arc.p2[0] = Math.min(Math.max(arc.minX + 1, ev.x - __.margin.left), arc.maxX);
+        arc.p2[1] = Math.min(Math.max(arc.minY, ev.y - __.margin.top), arc.maxY);
+        arc.p3 = arc.p2.slice();
+        drawStrum(arc, 1);
+      };
+    }
+
+    // some helper functions
+    function hypothenuse(a, b) {
+      return Math.sqrt(a * a + b * b);
+    }
+
+    var rad = (function () {
+      var c = Math.PI / 180;
+      return function (angle) {
+        return angle * c;
+      };
+    })();
+
+    var deg = (function () {
+      var c = 180 / Math.PI;
+      return function (angle) {
+        return angle * c;
+      };
+    })();
+
+    // [0, 2*PI] -> [-PI/2, PI/2]
+    var signedAngle = function (angle) {
+      var ret = angle;
+      if (angle > Math.PI) {
+        ret = angle - 1.5 * Math.PI;
+        ret = angle - 1.5 * Math.PI;
+      } else {
+        ret = angle - 0.5 * Math.PI;
+        ret = angle - 0.5 * Math.PI;
+      }
+      return -ret;
+    };
+
+    /**
+     * angles are stored in radians from in [0, 2*PI], where 0 in 12 o'clock.
+     * However, one can only select lines from 0 to PI, so we compute the
+     * 'signed' angle, where 0 is the horizontal line (3 o'clock), and +/- PI/2
+     * are 12 and 6 o'clock respectively.
+     */
+    function containmentTest(arc) {
+      var startAngle = signedAngle(arc.startAngle);
+      var endAngle = signedAngle(arc.endAngle);
+
+      if (startAngle > endAngle) {
+        var tmp = startAngle;
+        startAngle = endAngle;
+        endAngle = tmp;
+      }
+
+      // test if segment angle is contained in angle interval
+      return function (a) {
+        if (a >= startAngle && a <= endAngle) {
+          return true;
+        }
+
+        return false;
+      };
+    }
+
+    function selected() {
+      var ids = Object.getOwnPropertyNames(arcs),
+        brushed = __.data;
+
+      // Get the ids of the currently active arcs.
+      ids = ids.filter(function (d) {
+        return !isNaN(d);
+      });
+
+      function crossesStrum(d, id) {
+        var arc = arcs[id],
+          test = containmentTest(arc),
+          d1 = arc.dims.left,
+          d2 = arc.dims.right,
+          y1 = yscale[d1],
+          y2 = yscale[d2],
+          a = arcs.width(id),
+          b = y1(d[d1]) - y2(d[d2]),
+          c = hypothenuse(a, b),
+          angle = Math.asin(b / c); // rad in [-PI/2, PI/2]
+        return test(angle);
+      }
+
+      if (ids.length === 0) {
+        return brushed;
+      }
+
+      return brushed.filter(function (d) {
+        switch (brush.predicate) {
+          case 'AND':
+            return ids.every(function (id) {
+              return crossesStrum(d, id);
+            });
+          case 'OR':
+            return ids.some(function (id) {
+              return crossesStrum(d, id);
+            });
+          default:
+            throw 'Unknown brush predicate ' + __.brushPredicate;
+        }
+      });
+    }
+
+    function removeStrum() {
+      var arc = arcs[arcs.active],
+        svg = pc.selection.select('svg').select('g#arcs');
+
+      delete arcs[arcs.active];
+      arcs.active = undefined;
+      svg.selectAll('line#arc-' + arc.dims.i).remove();
+      svg.selectAll('circle#arc-' + arc.dims.i).remove();
+      svg.selectAll('path#arc-' + arc.dims.i).remove();
+    }
+
+    function onDragEnd() {
+      return function () {
+        var brushed = __.data,
+          arc = arcs[arcs.active];
+
+        // Okay, somewhat unexpected, but not totally unsurprising, a mousclick is
+        // considered a drag without move. So we have to deal with that case
+        if (arc && arc.p1[0] === arc.p2[0] && arc.p1[1] === arc.p2[1]) {
+          removeStrum(arcs);
+        }
+
+        if (arc) {
+          var angle = arcs.startAngle(arcs.active);
+
+          arc.startAngle = angle;
+          arc.endAngle = angle;
+          arc.arc.outerRadius(arcs.length(arcs.active)).startAngle(angle).endAngle(angle);
+        }
+
+        brushed = selected(arcs);
+        arcs.active = undefined;
+        __.brushed = brushed;
+        pc.renderBrushed();
+        events.brushend.call(pc, __.brushed);
+      };
+    }
+
+    function brushReset(arcs) {
+      return function () {
+        var ids = Object.getOwnPropertyNames(arcs).filter(function (d) {
+          return !isNaN(d);
+        });
+
+        ids.forEach(function (d) {
+          arcs.active = d;
+          removeStrum(arcs);
+        });
+        onDragEnd(arcs)();
+      };
+    }
+
+    function install() {
+      var drag = d3.behavior.drag();
+
+      // Map of current arcs. arcs are stored per segment of the PC. A segment,
+      // being the area between two axes. The left most area is indexed at 0.
+      arcs.active = undefined;
+      // Returns the width of the PC segment where currently a arc is being
+      // placed. NOTE: even though they are evenly spaced in our current
+      // implementation, we keep for when non-even spaced segments are supported as
+      // well.
+      arcs.width = function (id) {
+        var arc = arcs[id];
+
+        if (arc === undefined) {
+          return undefined;
+        }
+
+        return arc.maxX - arc.minX;
+      };
+
+      // returns angles in [-PI/2, PI/2]
+      angle = function (p1, p2) {
+        var a = p1[0] - p2[0],
+          b = p1[1] - p2[1],
+          c = hypothenuse(a, b);
+
+        return Math.asin(b / c);
+      };
+
+      // returns angles in [0, 2 * PI]
+      arcs.endAngle = function (id) {
+        var arc = arcs[id];
+        if (arc === undefined) {
+          return undefined;
+        }
+        var sAngle = angle(arc.p1, arc.p2),
+          uAngle = -sAngle + Math.PI / 2;
+
+        if (arc.p1[0] > arc.p2[0]) {
+          uAngle = 2 * Math.PI - uAngle;
+        }
+
+        return uAngle;
+      };
+
+      arcs.startAngle = function (id) {
+        var arc = arcs[id];
+        if (arc === undefined) {
+          return undefined;
+        }
+
+        var sAngle = angle(arc.p1, arc.p3),
+          uAngle = -sAngle + Math.PI / 2;
+
+        if (arc.p1[0] > arc.p3[0]) {
+          uAngle = 2 * Math.PI - uAngle;
+        }
+
+        return uAngle;
+      };
+
+      arcs.length = function (id) {
+        var arc = arcs[id];
+
+        if (arc === undefined) {
+          return undefined;
+        }
+
+        var a = arc.p1[0] - arc.p2[0],
+          b = arc.p1[1] - arc.p2[1],
+          c = hypothenuse(a, b);
+
+        return c;
+      };
+
+      pc.on('axesreorder.arcs', function () {
+        var ids = Object.getOwnPropertyNames(arcs).filter(function (d) {
+          return !isNaN(d);
+        });
+
+        // Checks if the first dimension is directly left of the second dimension.
+        function consecutive(first, second) {
+          var length = __.dimensions.length;
+          return __.dimensions.some(function (d, i) {
+            return d === first ? i + i < length && __.dimensions[i + 1] === second : false;
+          });
+        }
+
+        if (ids.length > 0) {
+          // We have some arcs, which might need to be removed.
+          ids.forEach(function (d) {
+            var dims = arcs[d].dims;
+            arcs.active = d;
+            // If the two dimensions of the current arc are not next to each other
+            // any more, than we'll need to remove the arc. Otherwise we keep it.
+            if (!consecutive(dims.left, dims.right)) {
+              removeStrum(arcs);
+            }
+          });
+          onDragEnd(arcs)();
+        }
+      });
+
+      // Add a new svg group in which we draw the arcs.
+      pc.selection
+        .select('svg')
+        .append('g')
+        .attr('id', 'arcs')
+        .attr('transform', 'translate(' + __.margin.left + ',' + __.margin.top + ')');
+
+      // Install the required brushReset function
+      pc.brushReset = brushReset(arcs);
+
+      drag
+        .on('dragstart', onDragStart(arcs))
+        .on('drag', onDrag(arcs))
+        .on('dragend', onDragEnd(arcs));
+
+      // NOTE: The styling needs to be done here and not in the css. This is because
+      //       for 1D brushing, the canvas layers should not listen to
+      //       pointer-events.
+      strumRect = pc.selection
+        .select('svg')
+        .insert('rect', 'g#arcs')
+        .attr('id', 'arc-events')
+        .attr('x', __.margin.left)
+        .attr('y', __.margin.top)
+        .attr('width', w())
+        .attr('height', h() + 2)
+        .style('opacity', 0)
+        .call(drag);
+    }
+
+    brush.modes['angular'] = {
+      install: install,
+      uninstall: function () {
+        pc.selection.select('svg').select('g#arcs').remove();
+        pc.selection.select('svg').select('rect#arc-events').remove();
+        pc.on('axesreorder.arcs', undefined);
+        delete pc.brushReset;
+
+        strumRect = undefined;
+      },
+      selected: selected,
+      brushState: function () {
+        return arcs;
+      },
+    };
+  })();
+
+  pc.interactive = function () {
+    flags.interactive = true;
+    return this;
+  };
+
+  // expose a few objects
+  pc.xscale = xscale;
+  pc.yscale = yscale;
+  pc.ctx = ctx;
+  pc.canvas = canvas;
+  pc.g = function () {
+    return g;
+  };
+
+  // rescale for height, width and margins
+  // TODO currently assumes chart is brushable, and destroys old brushes
+  pc.resize = function () {
+    // selection size
+    pc.selection.select('svg').attr('width', __.width).attr('height', __.height);
+    pc.svg.attr('transform', 'translate(' + __.margin.left + ',' + __.margin.top + ')');
+
+    // FIXME: the current brush state should pass through
+    if (flags.brushable) pc.brushReset();
+
+    // scales
+    pc.autoscale();
+
+    // axes, destroys old brushes.
+    if (g) pc.createAxes();
+    if (flags.brushable) pc.brushable();
+    if (flags.reorderable) pc.reorderable();
+
+    events.resize.call(this, { width: __.width, height: __.height, margin: __.margin });
+    return this;
+  };
+
+  // highlight an array of data
+  pc.highlight = function (data) {
+    if (arguments.length === 0) {
+      return __.highlighted;
+    }
+
+    __.highlighted = data;
+    pc.clear('highlight');
+    d3.selectAll([canvas.foreground, canvas.brushed]).classed('faded', true);
+    data.forEach(path_highlight);
+    events.highlight.call(this, data);
+    return this;
+  };
+
+  // clear highlighting
+  pc.unhighlight = function () {
+    __.highlighted = [];
+    pc.clear('highlight');
+    d3.selectAll([canvas.foreground, canvas.brushed]).classed('faded', false);
+    return this;
+  };
+
+  // calculate 2d intersection of line a->b with line c->d
+  // points are objects with x and y properties
+  pc.intersection = function (a, b, c, d) {
+    return {
+      x:
+        ((a.x * b.y - a.y * b.x) * (c.x - d.x) - (a.x - b.x) * (c.x * d.y - c.y * d.x)) /
+        ((a.x - b.x) * (c.y - d.y) - (a.y - b.y) * (c.x - d.x)),
+      y:
+        ((a.x * b.y - a.y * b.x) * (c.y - d.y) - (a.y - b.y) * (c.x * d.y - c.y * d.x)) /
+        ((a.x - b.x) * (c.y - d.y) - (a.y - b.y) * (c.x - d.x)),
+    };
+  };
+
+  function position(d) {
+    var v = dragging[d];
+    return v == null ? xscale(d) : v;
+  }
+  pc.version = '0.7.0';
+  // this descriptive text should live with other introspective methods
+  pc.toString = function () {
+    return (
+      'Parallel Coordinates: ' +
+      __.dimensions.length +
+      ' dimensions (' +
+      d3.keys(__.data[0]).length +
+      ' total) , ' +
+      __.data.length +
+      ' rows'
+    );
+  };
+
+  return pc;
+}
+
+d3.renderQueue = function (func) {
+  var _queue = [], // data to be rendered
+    _rate = 10, // number of calls per frame
+    _clear = function () {}, // clearing function
+    _i = 0; // current iteration
+
+  var rq = function (data) {
+    if (data) rq.data(data);
+    rq.invalidate();
+    _clear();
+    rq.render();
+  };
+
+  rq.render = function () {
+    _i = 0;
+    var valid = true;
+    rq.invalidate = function () {
+      valid = false;
+    };
+
+    function doFrame() {
+      if (!valid) return true;
+      if (_i > _queue.length) return true;
+
+      // Typical d3 behavior is to pass a data item *and* its index. As the
+      // render queue splits the original data set, we'll have to be slightly
+      // more carefull about passing the correct index with the data item.
+      var end = Math.min(_i + _rate, _queue.length);
+      for (var i = _i; i < end; i += 1) {
+        func(_queue[i], i);
+      }
+      _i += _rate;
+    }
+
+    d3.timer(doFrame);
+  };
+
+  rq.data = function (data) {
+    rq.invalidate();
+    _queue = data.slice(0);
+    return rq;
+  };
+
+  rq.rate = function (value) {
+    if (!arguments.length) return _rate;
+    _rate = value;
+    return rq;
+  };
+
+  rq.remaining = function () {
+    return _queue.length - _i;
+  };
+
+  // clear the canvas
+  rq.clear = function (func) {
+    if (!arguments.length) {
+      _clear();
+      return rq;
+    }
+    _clear = func;
+    return rq;
+  };
+
+  rq.invalidate = function () {};
+
+  return rq;
+};
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/divgrid.js b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/divgrid.js
new file mode 100644
index 0000000..a499699
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/divgrid.js
@@ -0,0 +1,72 @@
+/* [LICENSE TBD] */
+/* eslint-disable */
+// from http://bl.ocks.org/3687826
+export default function (config) {
+  var columns = [];
+
+  var dg = function (selection) {
+    if (columns.length == 0) columns = d3.keys(selection.data()[0][0]);
+
+    // header
+    selection.selectAll('.header').data([true]).enter().append('div').attr('class', 'header');
+
+    var header = selection.select('.header').selectAll('.cell').data(columns);
+
+    header
+      .enter()
+      .append('div')
+      .attr('class', function (d, i) {
+        return 'col-' + i;
+      })
+      .classed('cell', true);
+
+    selection.selectAll('.header .cell').text(function (d) {
+      return d;
+    });
+
+    header.exit().remove();
+
+    // rows
+    var rows = selection.selectAll('.row').data(function (d) {
+      return d;
+    });
+
+    rows.enter().append('div').attr('class', 'row');
+
+    rows.exit().remove();
+
+    var cells = selection
+      .selectAll('.row')
+      .selectAll('.cell')
+      .data(function (d) {
+        return columns.map(function (col) {
+          return d[col];
+        });
+      });
+
+    // cells
+    cells
+      .enter()
+      .append('div')
+      .attr('class', function (d, i) {
+        return 'col-' + i;
+      })
+      .classed('cell', true);
+
+    cells.exit().remove();
+
+    selection.selectAll('.cell').text(function (d) {
+      return d;
+    });
+
+    return dg;
+  };
+
+  dg.columns = function (_) {
+    if (!arguments.length) return columns;
+    columns = _;
+    return this;
+  };
+
+  return dg;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/README.md b/superset-frontend/plugins/legacy-plugin-chart-partition/README.md
new file mode 100644
index 0000000..e3c3c5a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-partition
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-partition.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-partition)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-partition&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-partition)
+
+This plugin provides Partition for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import PartitionChartPlugin from '@superset-ui/legacy-plugin-chart-partition';
+
+new PartitionChartPlugin().configure({ key: 'partition' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-partition)
+for more details.
+
+```js
+<SuperChart
+  chartType="partition"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/package.json b/superset-frontend/plugins/legacy-plugin-chart-partition/package.json
new file mode 100644
index 0000000..4facb43
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/package.json
@@ -0,0 +1,40 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-partition",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Partition",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "d3-hierarchy": "^1.1.8",
+    "prop-types": "^15.6.2"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/src/OptionDescription.tsx b/superset-frontend/plugins/legacy-plugin-chart-partition/src/OptionDescription.tsx
new file mode 100644
index 0000000..719bf8e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/src/OptionDescription.tsx
@@ -0,0 +1,46 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import React from 'react';
+import PropTypes from 'prop-types';
+
+import { ColumnMeta, InfoTooltipWithTrigger } from '@superset-ui/chart-controls';
+
+const propTypes = {
+  option: PropTypes.object.isRequired,
+};
+
+// This component provides a general tooltip for options
+// in a SelectControl
+export default function OptionDescription({ option }: { option: ColumnMeta }) {
+  return (
+    <span>
+      <span className="m-r-5 option-label">{option.label}</span>
+      {option.description && (
+        <InfoTooltipWithTrigger
+          className="m-r-5 text-muted"
+          icon="question-circle-o"
+          tooltip={option.description}
+          label={`descr-${option.label}`}
+        />
+      )}
+    </span>
+  );
+}
+OptionDescription.propTypes = propTypes;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/src/Partition.css b/superset-frontend/plugins/legacy-plugin-chart-partition/src/Partition.css
new file mode 100644
index 0000000..4fce208
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/src/Partition.css
@@ -0,0 +1,64 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+.superset-legacy-chart-partition {
+  position: relative;
+}
+
+.superset-legacy-chart-partition .chart {
+  display: block;
+  margin: auto;
+  font-size: 11px;
+}
+
+.superset-legacy-chart-partition rect {
+  stroke: #eee;
+  fill: #aaa;
+  fill-opacity: 0.8;
+  transition: fill-opacity 180ms linear;
+  cursor: pointer;
+}
+
+.superset-legacy-chart-partition rect:hover {
+  fill-opacity: 1;
+}
+
+.superset-legacy-chart-partition g text {
+  font-weight: bold;
+  fill: rgba(0, 0, 0, 0.8);
+}
+
+.superset-legacy-chart-partition g:hover text {
+  fill: rgba(0, 0, 0, 1);
+}
+
+.superset-legacy-chart-partition .partition-tooltip {
+  position: absolute;
+  top: 0;
+  left: 0;
+  opacity: 0;
+  padding: 5px;
+  pointer-events: none;
+  background-color: rgba(255, 255, 255, 0.75);
+  border-radius: 5px;
+}
+
+.partition-tooltip td {
+  padding-left: 5px;
+  font-size: 11px;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/src/Partition.js b/superset-frontend/plugins/legacy-plugin-chart-partition/src/Partition.js
new file mode 100644
index 0000000..c662092
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/src/Partition.js
@@ -0,0 +1,386 @@
+/* eslint-disable react/sort-prop-types */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint no-param-reassign: [2, {"props": false}] */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+import { hierarchy } from 'd3-hierarchy';
+import { getNumberFormatter, getTimeFormatter, CategoricalColorNamespace } from '@superset-ui/core';
+import './Partition.css';
+
+// Compute dx, dy, x, y for each node and
+// return an array of nodes in breadth-first order
+function init(root) {
+  const flat = [];
+  const dy = 1 / (root.height + 1);
+  let prev = null;
+  root.each(n => {
+    n.y = dy * n.depth;
+    n.dy = dy;
+    if (n.parent) {
+      n.x = prev.depth === n.parent.depth ? 0 : prev.x + prev.dx;
+      n.dx = (n.weight / n.parent.sum) * n.parent.dx;
+    } else {
+      n.x = 0;
+      n.dx = 1;
+    }
+    prev = n;
+    flat.push(n);
+  });
+
+  return flat;
+}
+
+// Declare PropTypes for recursive data structures
+// https://github.com/facebook/react/issues/5676
+/* eslint-disable-next-line  no-undef */
+const lazyFunction = f => () => f().apply(this, arguments);
+const leafType = PropTypes.shape({
+  name: PropTypes.string,
+  val: PropTypes.number.isRequired,
+});
+const parentShape = {
+  name: PropTypes.string,
+  val: PropTypes.number.isRequired,
+  children: PropTypes.arrayOf(
+    PropTypes.oneOfType([PropTypes.shape(lazyFunction(() => parentShape)), leafType]),
+  ),
+};
+const nodeType = PropTypes.oneOfType([PropTypes.shape(parentShape), leafType]);
+
+const propTypes = {
+  data: PropTypes.arrayOf(nodeType), // array of rootNode
+  width: PropTypes.number,
+  height: PropTypes.number,
+  colorScheme: PropTypes.string,
+  dateTimeFormat: PropTypes.string,
+  equalDateSize: PropTypes.bool,
+  levels: PropTypes.arrayOf(PropTypes.string),
+  metrics: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.string, PropTypes.object])),
+  numberFormat: PropTypes.string,
+  partitionLimit: PropTypes.number,
+  partitionThreshold: PropTypes.number,
+  timeSeriesOption: PropTypes.string,
+  useLogScale: PropTypes.bool,
+  useRichTooltip: PropTypes.bool,
+};
+
+function getAncestors(d) {
+  const ancestors = [d];
+  let node = d;
+  while (node.parent) {
+    ancestors.push(node.parent);
+    node = node.parent;
+  }
+
+  return ancestors;
+}
+
+// This vis is based on
+// http://mbostock.github.io/d3/talk/20111018/partition.html
+function Icicle(element, props) {
+  const {
+    width,
+    height,
+    data,
+    colorScheme,
+    dateTimeFormat,
+    equalDateSize,
+    levels,
+    useLogScale = false,
+    metrics = [],
+    numberFormat,
+    partitionLimit,
+    partitionThreshold,
+    useRichTooltip,
+    timeSeriesOption = 'not_time',
+  } = props;
+
+  const div = d3.select(element);
+  div.classed('superset-legacy-chart-partition', true);
+
+  // Chart options
+  const chartType = timeSeriesOption;
+  const hasTime = ['adv_anal', 'time_series'].includes(chartType);
+  const format = getNumberFormatter(numberFormat);
+  const timeFormat = getTimeFormatter(dateTimeFormat);
+  const colorFn = CategoricalColorNamespace.getScale(colorScheme);
+
+  div.selectAll('*').remove();
+  const tooltip = div.append('div').classed('partition-tooltip', true);
+
+  function hasDateNode(n) {
+    return metrics.includes(n.data.name) && hasTime;
+  }
+
+  function getCategory(depth) {
+    if (!depth) {
+      return 'Metric';
+    }
+    if (hasTime && depth === 1) {
+      return 'Date';
+    }
+
+    return levels[depth - (hasTime ? 2 : 1)];
+  }
+
+  function drawVis(i, dat) {
+    const datum = dat[i];
+    const w = width;
+    const h = height / data.length;
+    const x = d3.scale.linear().range([0, w]);
+    const y = d3.scale.linear().range([0, h]);
+
+    const viz = div
+      .append('div')
+      .attr('class', 'chart')
+      .style('width', `${w}px`)
+      .style('height', `${h}px`)
+      .append('svg:svg')
+      .attr('width', w)
+      .attr('height', h);
+
+    // Add padding between multiple visualizations
+    if (i !== data.length - 1 && data.length > 1) {
+      viz.style('padding-bottom', '3px');
+    }
+    if (i !== 0 && data.length > 1) {
+      viz.style('padding-top', '3px');
+    }
+
+    const root = hierarchy(datum);
+
+    // node.name is the metric/group name
+    // node.disp is the display value
+    // node.value determines sorting order
+    // node.weight determines partition height
+    // node.sum is the sum of children weights
+    root.eachAfter(n => {
+      n.disp = n.data.val;
+      n.value = n.disp < 0 ? -n.disp : n.disp;
+      n.weight = n.value;
+      n.name = n.data.name;
+      // If the parent is a metric and we still have
+      // the time column, perform a date-time format
+      if (n.parent && hasDateNode(n.parent)) {
+        // Format timestamp values
+        n.weight = equalDateSize ? 1 : n.value;
+        n.value = n.name;
+        n.name = timeFormat(n.name);
+      }
+      if (useLogScale) n.weight = Math.log(n.weight + 1);
+      n.disp = n.disp && !Number.isNaN(n.disp) && Number.isFinite(n.disp) ? format(n.disp) : '';
+    });
+    // Perform sort by weight
+    root.sort((a, b) => {
+      const v = b.value - a.value;
+      if (v === 0) {
+        return b.name > a.name ? 1 : -1;
+      }
+
+      return v;
+    });
+
+    // Prune data based on partition limit and threshold
+    // both are applied at the same time
+    if (partitionThreshold && partitionThreshold >= 0) {
+      // Compute weight sums as we go
+      root.each(n => {
+        n.sum = n.children ? n.children.reduce((a, v) => a + v.weight, 0) || 1 : 1;
+        if (n.children) {
+          // Dates are not ordered by weight
+          if (hasDateNode(n)) {
+            if (equalDateSize) {
+              return;
+            }
+            const removeIndices = [];
+            // Keep at least one child
+            for (let j = 1; j < n.children.length; j += 1) {
+              if (n.children[j].weight / n.sum < partitionThreshold) {
+                removeIndices.push(j);
+              }
+            }
+            for (let j = removeIndices.length - 1; j >= 0; j -= 1) {
+              n.children.splice(removeIndices[j], 1);
+            }
+          } else {
+            // Find first child that falls below the threshold
+            let j;
+            for (j = 1; j < n.children.length; j += 1) {
+              if (n.children[j].weight / n.sum < partitionThreshold) {
+                break;
+              }
+            }
+            n.children = n.children.slice(0, j);
+          }
+        }
+      });
+    }
+    if (partitionLimit && partitionLimit >= 0) {
+      root.each(n => {
+        if (n.children && n.children.length > partitionLimit) {
+          if (!hasDateNode(n)) {
+            n.children = n.children.slice(0, partitionLimit);
+          }
+        }
+      });
+    }
+    // Compute final weight sums
+    root.eachAfter(n => {
+      n.sum = n.children ? n.children.reduce((a, v) => a + v.weight, 0) || 1 : 1;
+    });
+
+    function positionAndPopulate(tip, d) {
+      let t = '<table>';
+      if (useRichTooltip) {
+        const nodes = getAncestors(d);
+        nodes.reverse().forEach(n => {
+          const atNode = n.depth === d.depth;
+          t += '<tbody>';
+          t +=
+            '<tr>' +
+            '<td>' +
+            '<div ' +
+            `style='border: 2px solid ${atNode ? 'black' : 'transparent'};` +
+            `background-color: ${n.color};'` +
+            '></div>' +
+            '</td>' +
+            `<td>${getCategory(n.depth)}</td>` +
+            `<td>${n.name}</td>` +
+            `<td>${n.disp}</td>` +
+            '</tr>';
+        });
+      } else {
+        t +=
+          '<thead><tr><td colspan="3">' +
+          `<strong>${getCategory(d.depth)}</strong>` +
+          '</td></tr></thead><tbody>';
+        t +=
+          '<tr>' +
+          '<td>' +
+          `<div style='border: thin solid grey; background-color: ${d.color};'` +
+          '></div>' +
+          '</td>' +
+          `<td>${d.name}</td>` +
+          `<td>${d.disp}</td>` +
+          '</tr>';
+      }
+      t += '</tbody></table>';
+      const [tipX, tipY] = d3.mouse(element);
+      tip
+        .html(t)
+        .style('left', `${tipX + 15}px`)
+        .style('top', `${tipY}px`);
+    }
+
+    const nodes = init(root);
+
+    let zoomX = w / root.dx;
+    let zoomY = h / 1;
+
+    // Keep text centered in its division
+    function transform(d) {
+      return `translate(8,${(d.dx * zoomY) / 2})`;
+    }
+
+    const g = viz
+      .selectAll('g')
+      .data(nodes)
+      .enter()
+      .append('svg:g')
+      .attr('transform', d => `translate(${x(d.y)},${y(d.x)})`)
+      .on('mouseover', d => {
+        tooltip.interrupt().transition().duration(100).style('opacity', 0.9);
+        positionAndPopulate(tooltip, d);
+      })
+      .on('mousemove', d => {
+        positionAndPopulate(tooltip, d);
+      })
+      .on('mouseout', () => {
+        tooltip.interrupt().transition().duration(250).style('opacity', 0);
+      });
+
+    // When clicking a subdivision, the vis will zoom in to it
+    function click(d) {
+      if (!d.children) {
+        if (d.parent) {
+          // Clicking on the rightmost level should zoom in
+          return click(d.parent);
+        }
+
+        return false;
+      }
+      zoomX = (d.y ? w - 40 : w) / (1 - d.y);
+      zoomY = h / d.dx;
+      x.domain([d.y, 1]).range([d.y ? 40 : 0, w]);
+      y.domain([d.x, d.x + d.dx]);
+
+      const t = g
+        .transition()
+        .duration(d3.event.altKey ? 7500 : 750)
+        .attr('transform', nd => `translate(${x(nd.y)},${y(nd.x)})`);
+
+      t.select('rect')
+        .attr('width', d.dy * zoomX)
+        .attr('height', nd => nd.dx * zoomY);
+
+      t.select('text')
+        .attr('transform', transform)
+        .style('opacity', nd => (nd.dx * zoomY > 12 ? 1 : 0));
+
+      d3.event.stopPropagation();
+
+      return true;
+    }
+
+    g.on('click', click);
+
+    g.append('svg:rect')
+      .attr('width', root.dy * zoomX)
+      .attr('height', d => d.dx * zoomY);
+
+    g.append('svg:text')
+      .attr('transform', transform)
+      .attr('dy', '0.35em')
+      .style('opacity', d => (d.dx * zoomY > 12 ? 1 : 0))
+      .text(d => {
+        if (!d.disp) {
+          return d.name;
+        }
+
+        return `${d.name}: ${d.disp}`;
+      });
+
+    // Apply color scheme
+    g.selectAll('rect').style('fill', d => {
+      d.color = colorFn(d.name);
+
+      return d.color;
+    });
+  }
+
+  for (let i = 0; i < data.length; i += 1) {
+    drawVis(i, data);
+  }
+}
+
+Icicle.displayName = 'Icicle';
+Icicle.propTypes = propTypes;
+
+export default Icicle;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/src/ReactPartition.js b/superset-frontend/plugins/legacy-plugin-chart-partition/src/ReactPartition.js
new file mode 100644
index 0000000..22d61a6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/src/ReactPartition.js
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { reactify } from '@superset-ui/core';
+import Component from './Partition';
+
+export default reactify(Component);
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx b/superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx
new file mode 100644
index 0000000..3f6a7c9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx
@@ -0,0 +1,363 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { t, validateNonEmpty } from '@superset-ui/core';
+import {
+  ColumnMeta,
+  ControlPanelConfig,
+  D3_FORMAT_DOCS,
+  D3_FORMAT_OPTIONS,
+  D3_TIME_FORMAT_OPTIONS,
+  formatSelectOptions,
+  sections,
+} from '@superset-ui/chart-controls';
+import OptionDescription from './OptionDescription';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metrics'],
+        ['adhoc_filters'],
+        ['groupby'],
+        ['limit', 'timeseries_limit_metric'],
+        [
+          {
+            name: 'order_desc',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Sort Descending'),
+              default: true,
+              description: t('Whether to sort descending or ascending'),
+            },
+          },
+          {
+            name: 'contribution',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Contribution'),
+              default: false,
+              description: t('Compute the contribution to the total'),
+            },
+          },
+        ],
+        ['row_limit', null],
+      ],
+    },
+    {
+      label: t('Time Series Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'time_series_option',
+            config: {
+              type: 'SelectControl',
+              label: t('Options'),
+              validators: [validateNonEmpty],
+              default: 'not_time',
+              valueKey: 'value',
+              options: [
+                {
+                  label: t('Not Time Series'),
+                  value: 'not_time',
+                  description: t('Ignore time'),
+                },
+                {
+                  label: t('Time Series'),
+                  value: 'time_series',
+                  description: t('Standard time series'),
+                },
+                {
+                  label: t('Aggregate Mean'),
+                  value: 'agg_mean',
+                  description: t('Mean of values over specified period'),
+                },
+                {
+                  label: t('Aggregate Sum'),
+                  value: 'agg_sum',
+                  description: t('Sum of values over specified period'),
+                },
+                {
+                  label: t('Difference'),
+                  value: 'point_diff',
+                  description: t('Metric change in value from `since` to `until`'),
+                },
+                {
+                  label: t('Percent Change'),
+                  value: 'point_percent',
+                  description: t('Metric percent change in value from `since` to `until`'),
+                },
+                {
+                  label: t('Factor'),
+                  value: 'point_factor',
+                  description: t('Metric factor change from `since` to `until`'),
+                },
+                {
+                  label: t('Advanced Analytics'),
+                  value: 'adv_anal',
+                  description: t('Use the Advanced Analytics options below'),
+                },
+              ],
+              optionRenderer: (op: ColumnMeta) => <OptionDescription option={op} />,
+              valueRenderer: (op: ColumnMeta) => <OptionDescription option={op} />,
+              description: t('Settings for time series'),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      tabOverride: 'customize',
+      controlSetRows: [
+        ['color_scheme', 'label_colors'],
+        [
+          {
+            name: 'number_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Number format'),
+              renderTrigger: true,
+              default: 'SMART_NUMBER',
+              choices: D3_FORMAT_OPTIONS,
+              description: D3_FORMAT_DOCS,
+            },
+          },
+          {
+            name: 'date_time_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Date Time Format'),
+              renderTrigger: true,
+              default: 'smart_date',
+              choices: D3_TIME_FORMAT_OPTIONS,
+              description: D3_FORMAT_DOCS,
+            },
+          },
+        ],
+        [
+          {
+            name: 'partition_limit',
+            config: {
+              type: 'TextControl',
+              label: t('Partition Limit'),
+              isInt: true,
+              default: '5',
+              description: t(
+                'The maximum number of subdivisions of each group; ' +
+                  'lower values are pruned first',
+              ),
+            },
+          },
+          {
+            name: 'partition_threshold',
+            config: {
+              type: 'TextControl',
+              label: t('Partition Threshold'),
+              isFloat: true,
+              default: '0.05',
+              description: t(
+                'Partitions whose height to parent height proportions are ' +
+                  'below this value are pruned',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'log_scale',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Log Scale'),
+              default: false,
+              renderTrigger: true,
+              description: t('Use a log scale'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'equal_date_size',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Equal Date Sizes'),
+              default: true,
+              renderTrigger: true,
+              description: t('Check to force date partitions to have the same height'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'rich_tooltip',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Rich Tooltip'),
+              renderTrigger: true,
+              default: true,
+              description: t('The rich tooltip shows a list of all series for that point in time'),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Advanced Analytics'),
+      tabOverride: 'data',
+      description: t(
+        'This section contains options ' +
+          'that allow for advanced analytical post processing ' +
+          'of query results',
+      ),
+      controlSetRows: [
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Rolling Window')}</h1>],
+        [
+          {
+            name: 'rolling_type',
+            config: {
+              type: 'SelectControl',
+              label: t('Rolling Function'),
+              default: 'None',
+              choices: formatSelectOptions(['None', 'mean', 'sum', 'std', 'cumsum']),
+              description: t(
+                'Defines a rolling window function to apply, works along ' +
+                  'with the [Periods] text box',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'rolling_periods',
+            config: {
+              type: 'TextControl',
+              label: t('Periods'),
+              isInt: true,
+              description: t(
+                'Defines the size of the rolling window function, ' +
+                  'relative to the time granularity selected',
+              ),
+            },
+          },
+          {
+            name: 'min_periods',
+            config: {
+              type: 'TextControl',
+              label: t('Min Periods'),
+              isInt: true,
+              description: t(
+                'The minimum number of rolling periods required to show ' +
+                  'a value. For instance if you do a cumulative sum on 7 days ' +
+                  'you may want your "Min Period" to be 7, so that all data points ' +
+                  'shown are the total of 7 periods. This will hide the "ramp up" ' +
+                  'taking place over the first 7 periods',
+              ),
+            },
+          },
+        ],
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Time Comparison')}</h1>],
+        [
+          {
+            name: 'time_compare',
+            config: {
+              type: 'SelectControl',
+              multi: true,
+              freeForm: true,
+              label: t('Time Shift'),
+              choices: formatSelectOptions([
+                '1 day',
+                '1 week',
+                '28 days',
+                '30 days',
+                '52 weeks',
+                '1 year',
+                '104 weeks',
+                '2 years',
+              ]),
+              description: t(
+                'Overlay one or more timeseries from a ' +
+                  'relative time period. Expects relative time deltas ' +
+                  'in natural language (example:  24 hours, 7 days, ' +
+                  '52 weeks, 365 days). Free text is supported.',
+              ),
+            },
+          },
+          {
+            name: 'comparison_type',
+            config: {
+              type: 'SelectControl',
+              label: t('Calculation type'),
+              default: 'values',
+              choices: [
+                ['values', 'Actual Values'],
+                ['absolute', 'Absolute difference'],
+                ['percentage', 'Percentage change'],
+                ['ratio', 'Ratio'],
+              ],
+              description: t(
+                'How to display time shifts: as individual lines; as the ' +
+                  'absolute difference between the main time series and each time shift; ' +
+                  'as the percentage change; or as the ratio between series and time shifts.',
+              ),
+            },
+          },
+        ],
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Python Functions')}</h1>],
+        // eslint-disable-next-line react/jsx-key
+        [<h2 className="section-header">pandas.resample</h2>],
+        [
+          {
+            name: 'resample_rule',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Rule'),
+              default: null,
+              choices: formatSelectOptions(['1T', '1H', '1D', '7D', '1M', '1AS']),
+              description: t('Pandas resample rule'),
+            },
+          },
+          {
+            name: 'resample_method',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Method'),
+              default: null,
+              choices: formatSelectOptions(['asfreq', 'bfill', 'ffill', 'median', 'mean', 'sum']),
+              description: t('Pandas resample method'),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-partition/src/images/thumbnail.png
new file mode 100644
index 0000000..2b35d0d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-partition/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..cc3ef62
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js
new file mode 100644
index 0000000..5852c09
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  description: '',
+  name: t('Partition Chart'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class PartitionChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactPartition.js'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-partition/src/transformProps.js
new file mode 100644
index 0000000..d69de4e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/src/transformProps.js
@@ -0,0 +1,52 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, datasource, formData, queriesData } = chartProps;
+  const {
+    colorScheme,
+    dateTimeFormat,
+    equalDateSize,
+    groupby,
+    logScale,
+    metrics,
+    numberFormat,
+    partitionLimit,
+    partitionThreshold,
+    richTooltip,
+    timeSeriesOption,
+  } = formData;
+  const { verboseMap } = datasource;
+
+  return {
+    width,
+    height,
+    data: queriesData[0].data,
+    colorScheme,
+    dateTimeFormat,
+    equalDateSize,
+    levels: groupby.map(g => verboseMap[g] || g),
+    metrics,
+    numberFormat,
+    partitionLimit: partitionLimit && parseInt(partitionLimit, 10),
+    partitionThreshold: partitionThreshold && parseInt(partitionThreshold, 10),
+    timeSeriesOption,
+    useLogScale: logScale,
+    useRichTooltip: richTooltip,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/test/OptionDescription.test.jsx b/superset-frontend/plugins/legacy-plugin-chart-partition/test/OptionDescription.test.jsx
new file mode 100644
index 0000000..47f23ad
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/test/OptionDescription.test.jsx
@@ -0,0 +1,48 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { shallow } from 'enzyme';
+
+import { InfoTooltipWithTrigger } from '@superset-ui/chart-controls';
+import OptionDescription from '../src/OptionDescription';
+
+const defaultProps = {
+  option: {
+    label: 'Some option',
+    description: 'Description for some option',
+  },
+};
+
+describe('OptionDescription', () => {
+  let wrapper;
+  let props;
+
+  beforeEach(() => {
+    props = { option: { ...defaultProps.option } };
+    wrapper = shallow(<OptionDescription {...props} />);
+  });
+
+  it('renders an InfoTooltipWithTrigger', () => {
+    expect(wrapper.find(InfoTooltipWithTrigger)).toHaveLength(1);
+  });
+
+  it('renders a span with the label', () => {
+    expect(wrapper.find('.option-label').text()).toBe('Some option');
+  });
+});
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/test/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-partition/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-partition/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-partition/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/README.md b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/README.md
new file mode 100644
index 0000000..0480634
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-pivot-table
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-pivot-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-pivot-table)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-pivot-table&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-pivot-table)
+
+This plugin provides Pivot Table for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import PivottableChartPlugin from '@superset-ui/legacy-plugin-chart-pivot-table';
+
+new PivottableChartPlugin().configure({ key: 'pivot-table' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-pivot-table)
+for more details.
+
+```js
+<SuperChart
+  chartType="pivot-table"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json
new file mode 100644
index 0000000..8d364fe
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json
@@ -0,0 +1,37 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-pivot-table",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Pivot Table",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "datatables.net-bs": "^1.10.15",
+    "prop-types": "^15.6.2"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js
new file mode 100644
index 0000000..4aa7997
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js
@@ -0,0 +1,149 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/sort-prop-types */
+import dt from 'datatables.net-bs';
+import PropTypes from 'prop-types';
+import {
+  getTimeFormatter,
+  getTimeFormatterForGranularity,
+  smartDateFormatter,
+} from '@superset-ui/core';
+import { formatCellValue, formatDateCellValue } from './utils/formatCells';
+import fixTableHeight from './utils/fixTableHeight';
+import 'datatables.net-bs/css/dataTables.bootstrap.css';
+
+if (window.$) {
+  dt(window, window.$);
+}
+const $ = window.$ || dt.$;
+
+const propTypes = {
+  data: PropTypes.shape({
+    // TODO: replace this with raw data in SIP-6
+    html: PropTypes.string,
+    columns: PropTypes.arrayOf(
+      PropTypes.oneOfType([PropTypes.string, PropTypes.arrayOf(PropTypes.string)]),
+    ),
+  }),
+  height: PropTypes.number,
+  columnFormats: PropTypes.objectOf(PropTypes.string),
+  numberFormat: PropTypes.string,
+  numGroups: PropTypes.number,
+  verboseMap: PropTypes.objectOf(PropTypes.string),
+};
+
+function PivotTable(element, props) {
+  const {
+    columnFormats,
+    data,
+    dateFormat,
+    granularity,
+    height,
+    numberFormat,
+    numGroups,
+    verboseMap,
+  } = props;
+
+  const { html, columns } = data;
+  const container = element;
+  const $container = $(element);
+  let dateFormatter;
+
+  if (dateFormat === smartDateFormatter.id && granularity) {
+    dateFormatter = getTimeFormatterForGranularity(granularity);
+  } else if (dateFormat) {
+    dateFormatter = getTimeFormatter(dateFormat);
+  } else {
+    dateFormatter = String;
+  }
+
+  // queryData data is a string of html with a single table element
+  container.innerHTML = html;
+
+  const cols = Array.isArray(columns[0]) ? columns.map(col => col[0]) : columns;
+  const dateRegex = /^__timestamp:(-?\d*\.?\d*)$/;
+
+  $container.find('thead tr th').each(function () {
+    const cellValue = formatDateCellValue(
+      $(this)[0].textContent,
+      verboseMap,
+      dateRegex,
+      dateFormatter,
+    );
+    $(this)[0].textContent = cellValue;
+  });
+
+  $container.find('tbody tr th').each(function () {
+    const cellValue = formatDateCellValue(
+      $(this)[0].textContent,
+      verboseMap,
+      dateRegex,
+      dateFormatter,
+    );
+    $(this)[0].textContent = cellValue;
+  });
+
+  $container.find('tbody tr').each(function eachRow() {
+    $(this)
+      .find('td')
+      .each(function eachTd(index) {
+        const tdText = $(this)[0].textContent;
+        const { textContent, attr } = formatCellValue(
+          index,
+          cols,
+          tdText,
+          columnFormats,
+          numberFormat,
+          dateRegex,
+          dateFormatter,
+        );
+        $(this)[0].textContent = textContent;
+        $(this).attr = attr;
+      });
+  });
+
+  if (numGroups === 1) {
+    // When there is only 1 group by column,
+    // we use the DataTable plugin to make the header fixed.
+    // The plugin takes care of the scrolling so we don't need
+    // overflow: 'auto' on the table.
+    container.style.overflow = 'hidden';
+    const table = $container.find('table').DataTable({
+      paging: false,
+      searching: false,
+      bInfo: false,
+      scrollY: `${height}px`,
+      scrollCollapse: true,
+      scrollX: true,
+    });
+    table.column('-1').order('desc').draw();
+    fixTableHeight($container.find('.dataTables_wrapper'), height);
+  } else {
+    // When there is more than 1 group by column we just render the table, without using
+    // the DataTable plugin, so we need to handle the scrolling ourselves.
+    // In this case the header is not fixed.
+    container.style.overflow = 'auto';
+    container.style.height = `${height + 10}px`;
+  }
+}
+
+PivotTable.displayName = 'PivotTable';
+PivotTable.propTypes = propTypes;
+
+export default PivotTable;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js
new file mode 100644
index 0000000..3885f31
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { reactify } from '@superset-ui/core';
+import Component from './PivotTable';
+
+export default reactify(Component);
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts
new file mode 100644
index 0000000..d60f8d8
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts
@@ -0,0 +1,140 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import {
+  ControlPanelConfig,
+  formatSelectOptions,
+  D3_FORMAT_DOCS,
+  D3_FORMAT_OPTIONS,
+  D3_TIME_FORMAT_OPTIONS,
+  sections,
+} from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metrics'],
+        ['adhoc_filters'],
+        ['groupby'],
+        ['columns'],
+        ['row_limit', null],
+      ],
+    },
+    {
+      label: t('Pivot Options'),
+      controlSetRows: [
+        [
+          {
+            name: 'pandas_aggfunc',
+            config: {
+              type: 'SelectControl',
+              label: t('Aggregation function'),
+              clearable: false,
+              choices: formatSelectOptions(['sum', 'mean', 'min', 'max', 'std', 'var']),
+              default: 'sum',
+              description: t(
+                'Aggregate function to apply when pivoting and ' +
+                  'computing the total rows and columns',
+              ),
+            },
+          },
+          null,
+        ],
+        [
+          {
+            name: 'pivot_margins',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show totals'),
+              default: true,
+              description: t('Display total row/column'),
+            },
+          },
+          {
+            name: 'combine_metric',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Combine Metrics'),
+              default: false,
+              description: t(
+                'Display metrics side by side within each column, as ' +
+                  'opposed to each column being displayed side by side for each metric.',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'transpose_pivot',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Transpose Pivot'),
+              default: false,
+              description: t('Swap Groups and Columns'),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'number_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Number format'),
+              renderTrigger: true,
+              default: 'SMART_NUMBER',
+              choices: D3_FORMAT_OPTIONS,
+              description: D3_FORMAT_DOCS,
+            },
+          },
+        ],
+        [
+          {
+            name: 'date_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Date format'),
+              renderTrigger: true,
+              choices: D3_TIME_FORMAT_OPTIONS,
+              default: 'smart_date',
+              description: D3_FORMAT_DOCS,
+            },
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    groupby: { includeTime: true },
+    columns: { includeTime: true },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png
new file mode 100644
index 0000000..7f00326
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..3e4745e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js
new file mode 100644
index 0000000..be34b8c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  description: '',
+  name: t('Pivot Table'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class PivotTableChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactPivotTable.js'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js
new file mode 100644
index 0000000..ac6f9f4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js
@@ -0,0 +1,34 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { height, datasource, formData, queriesData } = chartProps;
+  const { timeGrainSqla, groupby, numberFormat, dateFormat } = formData;
+  const { columnFormats, verboseMap } = datasource;
+
+  return {
+    columnFormats,
+    data: queriesData[0].data,
+    dateFormat,
+    granularity: timeGrainSqla,
+    height,
+    numberFormat,
+    numGroups: groupby.length,
+    verboseMap,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js
new file mode 100644
index 0000000..d35543d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js
@@ -0,0 +1,13 @@
+/**
+ * Fix the height of the table body of a DataTable with scrollY set
+ */
+export default function fixTableHeight($tableDom, height) {
+  const headHeight = $tableDom.find('.dataTables_scrollHead').height();
+  const filterHeight = $tableDom.find('.dataTables_filter').height() || 0;
+  const pageLengthHeight = $tableDom.find('.dataTables_length').height() || 0;
+  const paginationHeight = $tableDom.find('.dataTables_paginate').height() || 0;
+  const controlsHeight = pageLengthHeight > filterHeight ? pageLengthHeight : filterHeight;
+  $tableDom
+    .find('.dataTables_scrollBody')
+    .css('max-height', height - headHeight - controlsHeight - paginationHeight);
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts
new file mode 100644
index 0000000..1eac30d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts
@@ -0,0 +1,68 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { formatNumber } from '@superset-ui/core';
+
+function formatCellValue(
+  i: number,
+  cols: string[],
+  tdText: string,
+  columnFormats: any,
+  numberFormat: string,
+  dateRegex: RegExp,
+  dateFormatter: any,
+) {
+  const metric: string = cols[i];
+  const format: string = columnFormats[metric] || numberFormat || '.3s';
+  let textContent: string = tdText;
+  let sortAttributeValue: any = tdText;
+
+  if (parseFloat(tdText)) {
+    const parsedValue = parseFloat(tdText);
+    textContent = formatNumber(format, parsedValue);
+    sortAttributeValue = parsedValue;
+  } else {
+    const regexMatch = dateRegex.exec(tdText);
+    if (regexMatch) {
+      const date = new Date(parseFloat(regexMatch[1]));
+      textContent = dateFormatter(date);
+      sortAttributeValue = date;
+    } else if (tdText === 'null') {
+      textContent = '';
+      sortAttributeValue = Number.NEGATIVE_INFINITY;
+    }
+  }
+  // @ts-ignore
+  const attr = ('data-sort', sortAttributeValue);
+
+  return { textContent, attr };
+}
+
+function formatDateCellValue(text: string, verboseMap: any, dateRegex: RegExp, dateFormatter: any) {
+  const regexMatch = dateRegex.exec(text);
+  let cellValue;
+  if (regexMatch) {
+    const date = new Date(parseFloat(regexMatch[1]));
+    cellValue = dateFormatter(date);
+  } else {
+    cellValue = verboseMap[text] || text;
+  }
+  return cellValue;
+}
+
+export { formatCellValue, formatDateCellValue };
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts
new file mode 100644
index 0000000..04966a7
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts
@@ -0,0 +1,91 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { getTimeFormatterForGranularity } from '@superset-ui/core';
+import { formatCellValue } from '../src/utils/formatCells';
+
+describe('pivot table plugin format cells', () => {
+  const i = 0;
+  const cols = ['SUM'];
+  let tdText = '2222222';
+  const columnFormats = {};
+  const numberFormat = 'SMART_NUMBER';
+  const dateRegex = /^__timestamp:(-?\d*\.?\d*)$/;
+  const dateFormatter = getTimeFormatterForGranularity('P1D');
+
+  it('render number', () => {
+    const { textContent, attr } = formatCellValue(
+      i,
+      cols,
+      tdText,
+      columnFormats,
+      numberFormat,
+      dateRegex,
+      dateFormatter,
+    );
+    expect(textContent).toEqual('2.22M');
+    expect(attr).toEqual(('data-sort', 2222222));
+  });
+
+  it('render date', () => {
+    tdText = '__timestamp:-126230400000.0';
+
+    const { textContent } = formatCellValue(
+      i,
+      cols,
+      tdText,
+      columnFormats,
+      numberFormat,
+      dateRegex,
+      dateFormatter,
+    );
+    expect(textContent).toEqual('1966-01-01');
+  });
+
+  it('render string', () => {
+    tdText = 'some-text';
+
+    const { textContent, attr } = formatCellValue(
+      i,
+      cols,
+      tdText,
+      columnFormats,
+      numberFormat,
+      dateRegex,
+      dateFormatter,
+    );
+    expect(textContent).toEqual(tdText);
+    expect(attr).toEqual(('data-sort', tdText));
+  });
+
+  it('render null', () => {
+    tdText = 'null';
+
+    const { textContent, attr } = formatCellValue(
+      i,
+      cols,
+      tdText,
+      columnFormats,
+      numberFormat,
+      dateRegex,
+      dateFormatter,
+    );
+    expect(textContent).toEqual('');
+    expect(attr).toEqual(('data-sort', Number.NEGATIVE_INFINITY));
+  });
+});
diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/README.md b/superset-frontend/plugins/legacy-plugin-chart-rose/README.md
new file mode 100644
index 0000000..7ab2b2b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-rose
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-rose.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-rose)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-rose&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-rose)
+
+This plugin provides Nightingale Rose Diagram for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import RoseChartPlugin from '@superset-ui/legacy-plugin-chart-rose';
+
+new RoseChartPlugin().configure({ key: 'rose' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-rose)
+for more details.
+
+```js
+<SuperChart
+  chartType="rose"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/package.json b/superset-frontend/plugins/legacy-plugin-chart-rose/package.json
new file mode 100644
index 0000000..f3d10ca
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/package.json
@@ -0,0 +1,40 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-rose",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Nightingale Rose Diagram",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "nvd3": "1.8.6",
+    "prop-types": "^15.6.2"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/src/ReactRose.js b/superset-frontend/plugins/legacy-plugin-chart-rose/src/ReactRose.js
new file mode 100644
index 0000000..bfdd152
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/src/ReactRose.js
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { reactify } from '@superset-ui/core';
+import Component from './Rose';
+
+export default reactify(Component);
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/src/Rose.css b/superset-frontend/plugins/legacy-plugin-chart-rose/src/Rose.css
new file mode 100644
index 0000000..441e95c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/src/Rose.css
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+.superset-legacy-chart-rose path {
+  transition: fill-opacity 180ms linear;
+  stroke: #fff;
+  stroke-width: 1px;
+  stroke-opacity: 1;
+  fill-opacity: 0.75;
+}
+
+.superset-legacy-chart-rose text {
+  font: 400 12px Arial, sans-serif;
+  pointer-events: none;
+}
+
+.superset-legacy-chart-rose .clickable path {
+  cursor: pointer;
+}
+
+.superset-legacy-chart-rose .hover path {
+  fill-opacity: 1;
+}
+
+.nv-legend .nv-series {
+  cursor: pointer;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/src/Rose.js b/superset-frontend/plugins/legacy-plugin-chart-rose/src/Rose.js
new file mode 100644
index 0000000..8daec52
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/src/Rose.js
@@ -0,0 +1,608 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint no-use-before-define: ["error", { "functions": false }] */
+/* eslint-disable no-restricted-syntax */
+/* eslint-disable react/sort-prop-types */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+import nv from 'nvd3';
+import { getTimeFormatter, getNumberFormatter, CategoricalColorNamespace } from '@superset-ui/core';
+import './Rose.css';
+
+const propTypes = {
+  // Data is an object hashed by numeric value, perhaps timestamp
+  data: PropTypes.objectOf(
+    PropTypes.arrayOf(
+      PropTypes.shape({
+        key: PropTypes.arrayOf(PropTypes.string),
+        name: PropTypes.arrayOf(PropTypes.string),
+        time: PropTypes.number,
+        value: PropTypes.number,
+      }),
+    ),
+  ),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  dateTimeFormat: PropTypes.string,
+  numberFormat: PropTypes.string,
+  useRichTooltip: PropTypes.bool,
+  useAreaProportions: PropTypes.bool,
+};
+
+function copyArc(d) {
+  return {
+    startAngle: d.startAngle,
+    endAngle: d.endAngle,
+    innerRadius: d.innerRadius,
+    outerRadius: d.outerRadius,
+  };
+}
+
+function sortValues(a, b) {
+  if (a.value === b.value) {
+    return a.name > b.name ? 1 : -1;
+  }
+
+  return b.value - a.value;
+}
+
+function Rose(element, props) {
+  const {
+    data,
+    width,
+    height,
+    colorScheme,
+    dateTimeFormat,
+    numberFormat,
+    useRichTooltip,
+    useAreaProportions,
+  } = props;
+
+  const div = d3.select(element);
+  div.classed('superset-legacy-chart-rose', true);
+
+  const datum = data;
+  const times = Object.keys(datum)
+    .map(t => parseInt(t, 10))
+    .sort((a, b) => a - b);
+  const numGrains = times.length;
+  const numGroups = datum[times[0]].length;
+  const format = getNumberFormatter(numberFormat);
+  const timeFormat = getTimeFormatter(dateTimeFormat);
+  const colorFn = CategoricalColorNamespace.getScale(colorScheme);
+
+  d3.select('.nvtooltip').remove();
+  div.selectAll('*').remove();
+
+  const arc = d3.svg.arc();
+  const legend = nv.models.legend();
+  const tooltip = nv.models.tooltip();
+  const state = { disabled: datum[times[0]].map(() => false) };
+
+  const svg = div.append('svg').attr('width', width).attr('height', height);
+
+  const g = svg.append('g').attr('class', 'rose').append('g');
+
+  const legendWrap = g.append('g').attr('class', 'legendWrap');
+
+  function legendData(adatum) {
+    return adatum[times[0]].map((v, i) => ({
+      disabled: state.disabled[i],
+      key: v.name,
+    }));
+  }
+
+  function tooltipData(d, i, adatum) {
+    const timeIndex = Math.floor(d.arcId / numGroups);
+    const series = useRichTooltip
+      ? adatum[times[timeIndex]]
+          .filter(v => !state.disabled[v.id % numGroups])
+          .map(v => ({
+            key: v.name,
+            value: v.value,
+            color: colorFn(v.name),
+            highlight: v.id === d.arcId,
+          }))
+      : [{ key: d.name, value: d.val, color: colorFn(d.name) }];
+
+    return {
+      key: 'Date',
+      value: d.time,
+      series,
+    };
+  }
+
+  legend.width(width).color(d => colorFn(d.key));
+  legendWrap.datum(legendData(datum)).call(legend);
+
+  tooltip.headerFormatter(timeFormat).valueFormatter(format);
+
+  // Compute max radius, which the largest value will occupy
+  const roseHeight = height - legend.height();
+  const margin = { top: legend.height() };
+  const edgeMargin = 35; // space between outermost radius and slice edge
+  const maxRadius = Math.min(width, roseHeight) / 2 - edgeMargin;
+  const labelThreshold = 0.05;
+  const gro = 8; // mouseover radius growth in pixels
+  const mini = 0.075;
+
+  const centerTranslate = `translate(${width / 2},${roseHeight / 2 + margin.top})`;
+  const roseWrap = g.append('g').attr('transform', centerTranslate).attr('class', 'roseWrap');
+
+  const labelsWrap = g.append('g').attr('transform', centerTranslate).attr('class', 'labelsWrap');
+
+  const groupLabelsWrap = g
+    .append('g')
+    .attr('transform', centerTranslate)
+    .attr('class', 'groupLabelsWrap');
+
+  // Compute inner and outer angles for each data point
+  function computeArcStates(adatum) {
+    // Find the max sum of values across all time
+    let maxSum = 0;
+    let grain = 0;
+    const sums = [];
+    for (const t of times) {
+      const sum = datum[t].reduce((a, v, i) => a + (state.disabled[i] ? 0 : v.value), 0);
+      maxSum = sum > maxSum ? sum : maxSum;
+      sums[grain] = sum;
+      grain += 1;
+    }
+
+    // Compute angle occupied by each time grain
+    const dtheta = (Math.PI * 2) / numGrains;
+    const angles = [];
+    for (let i = 0; i <= numGrains; i += 1) {
+      angles.push(dtheta * i - Math.PI / 2);
+    }
+
+    // Compute proportion
+    const P = maxRadius / maxSum;
+    const Q = P * maxRadius;
+    const computeOuterRadius = (value, innerRadius) =>
+      useAreaProportions
+        ? Math.sqrt(Q * value + innerRadius * innerRadius)
+        : P * value + innerRadius;
+
+    const arcSt = {
+      data: [],
+      extend: {},
+      push: {},
+      pieStart: {},
+      pie: {},
+      pieOver: {},
+      mini: {},
+      labels: [],
+      groupLabels: [],
+    };
+    let arcId = 0;
+    for (let i = 0; i < numGrains; i += 1) {
+      const t = times[i];
+      const startAngle = angles[i];
+      const endAngle = angles[i + 1];
+      const G = (2 * Math.PI) / sums[i];
+      let innerRadius = 0;
+      let outerRadius;
+      let pieStartAngle = 0;
+      let pieEndAngle;
+      for (const v of adatum[t]) {
+        const val = state.disabled[arcId % numGroups] ? 0 : v.value;
+        const { name, time } = v;
+        v.id = arcId;
+        outerRadius = computeOuterRadius(val, innerRadius);
+        arcSt.data.push({ startAngle, endAngle, innerRadius, outerRadius, name, arcId, val, time });
+        arcSt.extend[arcId] = {
+          startAngle,
+          endAngle,
+          innerRadius,
+          name,
+          outerRadius: outerRadius + gro,
+        };
+        arcSt.push[arcId] = {
+          startAngle,
+          endAngle,
+          innerRadius: innerRadius + gro,
+          outerRadius: outerRadius + gro,
+        };
+        arcSt.pieStart[arcId] = {
+          startAngle,
+          endAngle,
+          innerRadius: mini * maxRadius,
+          outerRadius: maxRadius,
+        };
+        arcSt.mini[arcId] = {
+          startAngle,
+          endAngle,
+          innerRadius: innerRadius * mini,
+          outerRadius: outerRadius * mini,
+        };
+        arcId += 1;
+        innerRadius = outerRadius;
+      }
+      const labelArc = { ...arcSt.data[i * numGroups] };
+      labelArc.outerRadius = maxRadius + 20;
+      labelArc.innerRadius = maxRadius + 15;
+      arcSt.labels.push(labelArc);
+      for (const v of adatum[t].concat().sort(sortValues)) {
+        const val = state.disabled[v.id % numGroups] ? 0 : v.value;
+        pieEndAngle = G * val + pieStartAngle;
+        arcSt.pie[v.id] = {
+          startAngle: pieStartAngle,
+          endAngle: pieEndAngle,
+          innerRadius: maxRadius * mini,
+          outerRadius: maxRadius,
+          percent: v.value / sums[i],
+        };
+        arcSt.pieOver[v.id] = {
+          startAngle: pieStartAngle,
+          endAngle: pieEndAngle,
+          innerRadius: maxRadius * mini,
+          outerRadius: maxRadius + gro,
+        };
+        pieStartAngle = pieEndAngle;
+      }
+    }
+    arcSt.groupLabels = arcSt.data.slice(0, numGroups);
+
+    return arcSt;
+  }
+
+  let arcSt = computeArcStates(datum);
+
+  function tween(target, resFunc) {
+    return function doTween(d) {
+      const interpolate = d3.interpolate(copyArc(d), copyArc(target));
+
+      return t => resFunc(Object.assign(d, interpolate(t)));
+    };
+  }
+
+  function arcTween(target) {
+    return tween(target, d => arc(d));
+  }
+
+  function translateTween(target) {
+    return tween(target, d => `translate(${arc.centroid(d)})`);
+  }
+
+  // Grab the ID range of segments stand between
+  // this segment and the edge of the circle
+  const segmentsToEdgeCache = {};
+  function getSegmentsToEdge(arcId) {
+    if (segmentsToEdgeCache[arcId]) {
+      return segmentsToEdgeCache[arcId];
+    }
+    const timeIndex = Math.floor(arcId / numGroups);
+    segmentsToEdgeCache[arcId] = [arcId + 1, numGroups * (timeIndex + 1) - 1];
+
+    return segmentsToEdgeCache[arcId];
+  }
+
+  // Get the IDs of all segments in a timeIndex
+  const segmentsInTimeCache = {};
+  function getSegmentsInTime(arcId) {
+    if (segmentsInTimeCache[arcId]) {
+      return segmentsInTimeCache[arcId];
+    }
+    const timeIndex = Math.floor(arcId / numGroups);
+    segmentsInTimeCache[arcId] = [timeIndex * numGroups, (timeIndex + 1) * numGroups - 1];
+
+    return segmentsInTimeCache[arcId];
+  }
+
+  let clickId = -1;
+  let inTransition = false;
+  const ae = roseWrap
+    .selectAll('g')
+    .data(JSON.parse(JSON.stringify(arcSt.data))) // deep copy data state
+    .enter()
+    .append('g')
+    .attr('class', 'segment')
+    .classed('clickable', true)
+    .on('mouseover', mouseover)
+    .on('mouseout', mouseout)
+    .on('mousemove', mousemove)
+    .on('click', click);
+
+  const labels = labelsWrap
+    .selectAll('g')
+    .data(JSON.parse(JSON.stringify(arcSt.labels)))
+    .enter()
+    .append('g')
+    .attr('class', 'roseLabel')
+    .attr('transform', d => `translate(${arc.centroid(d)})`);
+
+  labels
+    .append('text')
+    .style('text-anchor', 'middle')
+    .style('fill', '#000')
+    .text(d => timeFormat(d.time));
+
+  const groupLabels = groupLabelsWrap
+    .selectAll('g')
+    .data(JSON.parse(JSON.stringify(arcSt.groupLabels)))
+    .enter()
+    .append('g');
+
+  groupLabels
+    .style('opacity', 0)
+    .attr('class', 'roseGroupLabels')
+    .append('text')
+    .style('text-anchor', 'middle')
+    .style('fill', '#000')
+    .text(d => d.name);
+
+  const arcs = ae
+    .append('path')
+    .attr('class', 'arc')
+    .attr('fill', d => colorFn(d.name))
+    .attr('d', arc);
+
+  function mousemove() {
+    tooltip();
+  }
+
+  function mouseover(b, i) {
+    tooltip.data(tooltipData(b, i, datum)).hidden(false);
+    const $this = d3.select(this);
+    $this.classed('hover', true);
+    if (clickId < 0 && !inTransition) {
+      $this
+        .select('path')
+        .interrupt()
+        .transition()
+        .duration(180)
+        .attrTween('d', arcTween(arcSt.extend[i]));
+      const edge = getSegmentsToEdge(i);
+      arcs
+        .filter(d => edge[0] <= d.arcId && d.arcId <= edge[1])
+        .interrupt()
+        .transition()
+        .duration(180)
+        .attrTween('d', d => arcTween(arcSt.push[d.arcId])(d));
+    } else if (!inTransition) {
+      const segments = getSegmentsInTime(clickId);
+      if (segments[0] <= b.arcId && b.arcId <= segments[1]) {
+        $this
+          .select('path')
+          .interrupt()
+          .transition()
+          .duration(180)
+          .attrTween('d', arcTween(arcSt.pieOver[i]));
+      }
+    }
+  }
+
+  function mouseout(b, i) {
+    tooltip.hidden(true);
+    const $this = d3.select(this);
+    $this.classed('hover', false);
+    if (clickId < 0 && !inTransition) {
+      $this
+        .select('path')
+        .interrupt()
+        .transition()
+        .duration(180)
+        .attrTween('d', arcTween(arcSt.data[i]));
+      const edge = getSegmentsToEdge(i);
+      arcs
+        .filter(d => edge[0] <= d.arcId && d.arcId <= edge[1])
+        .interrupt()
+        .transition()
+        .duration(180)
+        .attrTween('d', d => arcTween(arcSt.data[d.arcId])(d));
+    } else if (!inTransition) {
+      const segments = getSegmentsInTime(clickId);
+      if (segments[0] <= b.arcId && b.arcId <= segments[1]) {
+        $this
+          .select('path')
+          .interrupt()
+          .transition()
+          .duration(180)
+          .attrTween('d', arcTween(arcSt.pie[i]));
+      }
+    }
+  }
+
+  function click(b, i) {
+    if (inTransition) {
+      return;
+    }
+    const delay = d3.event.altKey ? 3750 : 375;
+    const segments = getSegmentsInTime(i);
+    if (clickId < 0) {
+      inTransition = true;
+      clickId = i;
+      labels
+        .interrupt()
+        .transition()
+        .duration(delay)
+        .attrTween('transform', d =>
+          translateTween({
+            outerRadius: 0,
+            innerRadius: 0,
+            startAngle: d.startAngle,
+            endAngle: d.endAngle,
+          })(d),
+        )
+        .style('opacity', 0);
+      groupLabels
+        .attr(
+          'transform',
+          `translate(${arc.centroid({
+            outerRadius: maxRadius + 20,
+            innerRadius: maxRadius + 15,
+            startAngle: arcSt.data[i].startAngle,
+            endAngle: arcSt.data[i].endAngle,
+          })})`,
+        )
+        .interrupt()
+        .transition()
+        .delay(delay)
+        .duration(delay)
+        .attrTween('transform', d =>
+          translateTween({
+            outerRadius: maxRadius + 20,
+            innerRadius: maxRadius + 15,
+            startAngle: arcSt.pie[segments[0] + d.arcId].startAngle,
+            endAngle: arcSt.pie[segments[0] + d.arcId].endAngle,
+          })(d),
+        )
+        .style('opacity', d =>
+          state.disabled[d.arcId] || arcSt.pie[segments[0] + d.arcId].percent < labelThreshold
+            ? 0
+            : 1,
+        );
+      ae.classed('clickable', d => segments[0] > d.arcId || d.arcId > segments[1]);
+      arcs
+        .filter(d => segments[0] <= d.arcId && d.arcId <= segments[1])
+        .interrupt()
+        .transition()
+        .duration(delay)
+        .attrTween('d', d => arcTween(arcSt.pieStart[d.arcId])(d))
+        .transition()
+        .duration(delay)
+        .attrTween('d', d => arcTween(arcSt.pie[d.arcId])(d))
+        .each('end', () => {
+          inTransition = false;
+        });
+      arcs
+        .filter(d => segments[0] > d.arcId || d.arcId > segments[1])
+        .interrupt()
+        .transition()
+        .duration(delay)
+        .attrTween('d', d => arcTween(arcSt.mini[d.arcId])(d));
+    } else if (clickId < segments[0] || segments[1] < clickId) {
+      inTransition = true;
+      const clickSegments = getSegmentsInTime(clickId);
+      labels
+        .interrupt()
+        .transition()
+        .delay(delay)
+        .duration(delay)
+        .attrTween('transform', d => translateTween(arcSt.labels[d.arcId / numGroups])(d))
+        .style('opacity', 1);
+      groupLabels
+        .interrupt()
+        .transition()
+        .duration(delay)
+        .attrTween(
+          'transform',
+          translateTween({
+            outerRadius: maxRadius + 20,
+            innerRadius: maxRadius + 15,
+            startAngle: arcSt.data[clickId].startAngle,
+            endAngle: arcSt.data[clickId].endAngle,
+          }),
+        )
+        .style('opacity', 0);
+      ae.classed('clickable', true);
+      arcs
+        .filter(d => clickSegments[0] <= d.arcId && d.arcId <= clickSegments[1])
+        .interrupt()
+        .transition()
+        .duration(delay)
+        .attrTween('d', d => arcTween(arcSt.pieStart[d.arcId])(d))
+        .transition()
+        .duration(delay)
+        .attrTween('d', d => arcTween(arcSt.data[d.arcId])(d))
+        .each('end', () => {
+          clickId = -1;
+          inTransition = false;
+        });
+      arcs
+        .filter(d => clickSegments[0] > d.arcId || d.arcId > clickSegments[1])
+        .interrupt()
+        .transition()
+        .delay(delay)
+        .duration(delay)
+        .attrTween('d', d => arcTween(arcSt.data[d.arcId])(d));
+    }
+  }
+
+  function updateActive() {
+    const delay = d3.event.altKey ? 3000 : 300;
+    legendWrap.datum(legendData(datum)).call(legend);
+    const nArcSt = computeArcStates(datum);
+    inTransition = true;
+    if (clickId < 0) {
+      arcs
+        .style('opacity', 1)
+        .interrupt()
+        .transition()
+        .duration(delay)
+        .attrTween('d', d => arcTween(nArcSt.data[d.arcId])(d))
+        .each('end', () => {
+          inTransition = false;
+          arcSt = nArcSt;
+        })
+        .transition()
+        .duration(0)
+        .style('opacity', d => (state.disabled[d.arcId % numGroups] ? 0 : 1));
+    } else {
+      const segments = getSegmentsInTime(clickId);
+      arcs
+        .style('opacity', 1)
+        .interrupt()
+        .transition()
+        .duration(delay)
+        .attrTween('d', d =>
+          segments[0] <= d.arcId && d.arcId <= segments[1]
+            ? arcTween(nArcSt.pie[d.arcId])(d)
+            : arcTween(nArcSt.mini[d.arcId])(d),
+        )
+        .each('end', () => {
+          inTransition = false;
+          arcSt = nArcSt;
+        })
+        .transition()
+        .duration(0)
+        .style('opacity', d => (state.disabled[d.arcId % numGroups] ? 0 : 1));
+      groupLabels
+        .interrupt()
+        .transition()
+        .duration(delay)
+        .attrTween('transform', d =>
+          translateTween({
+            outerRadius: maxRadius + 20,
+            innerRadius: maxRadius + 15,
+            startAngle: nArcSt.pie[segments[0] + d.arcId].startAngle,
+            endAngle: nArcSt.pie[segments[0] + d.arcId].endAngle,
+          })(d),
+        )
+        .style('opacity', d =>
+          state.disabled[d.arcId] || arcSt.pie[segments[0] + d.arcId].percent < labelThreshold
+            ? 0
+            : 1,
+        );
+    }
+  }
+
+  legend.dispatch.on('stateChange', newState => {
+    if (state.disabled !== newState.disabled) {
+      state.disabled = newState.disabled;
+      updateActive();
+    }
+  });
+}
+
+Rose.displayName = 'Rose';
+Rose.propTypes = propTypes;
+
+export default Rose;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx b/superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx
new file mode 100644
index 0000000..e4486fef
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx
@@ -0,0 +1,258 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { t } from '@superset-ui/core';
+import {
+  ControlPanelConfig,
+  formatSelectOptions,
+  D3_FORMAT_DOCS,
+  D3_FORMAT_OPTIONS,
+  D3_TIME_FORMAT_OPTIONS,
+  sections,
+} from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metrics'],
+        ['adhoc_filters'],
+        ['groupby'],
+        ['limit', 'timeseries_limit_metric'],
+        [
+          {
+            name: 'order_desc',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Sort Descending'),
+              default: true,
+              description: t('Whether to sort descending or ascending'),
+            },
+          },
+          {
+            name: 'contribution',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Contribution'),
+              default: false,
+              description: t('Compute the contribution to the total'),
+            },
+          },
+        ],
+        ['row_limit', null],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme', 'label_colors'],
+        [
+          {
+            name: 'number_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Number format'),
+              renderTrigger: true,
+              default: 'SMART_NUMBER',
+              choices: D3_FORMAT_OPTIONS,
+              description: D3_FORMAT_DOCS,
+            },
+          },
+          {
+            name: 'date_time_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Date Time Format'),
+              renderTrigger: true,
+              default: 'smart_date',
+              choices: D3_TIME_FORMAT_OPTIONS,
+              description: D3_FORMAT_DOCS,
+            },
+          },
+        ],
+        [
+          {
+            name: 'rich_tooltip',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Rich Tooltip'),
+              renderTrigger: true,
+              default: true,
+              description: t('The rich tooltip shows a list of all series for that point in time'),
+            },
+          },
+          {
+            name: 'rose_area_proportion',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Use Area Proportions'),
+              description: t(
+                'Check if the Rose Chart should use segment area instead of ' +
+                  'segment radius for proportioning',
+              ),
+              default: false,
+              renderTrigger: true,
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Advanced Analytics'),
+      tabOverride: 'data',
+      description: t(
+        'This section contains options ' +
+          'that allow for advanced analytical post processing ' +
+          'of query results',
+      ),
+      controlSetRows: [
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Rolling Window')}</h1>],
+        [
+          {
+            name: 'rolling_type',
+            config: {
+              type: 'SelectControl',
+              label: t('Rolling Function'),
+              default: 'None',
+              choices: formatSelectOptions(['None', 'mean', 'sum', 'std', 'cumsum']),
+              description: t(
+                'Defines a rolling window function to apply, works along ' +
+                  'with the [Periods] text box',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'rolling_periods',
+            config: {
+              type: 'TextControl',
+              label: t('Periods'),
+              isInt: true,
+              description: t(
+                'Defines the size of the rolling window function, ' +
+                  'relative to the time granularity selected',
+              ),
+            },
+          },
+          {
+            name: 'min_periods',
+            config: {
+              type: 'TextControl',
+              label: t('Min Periods'),
+              isInt: true,
+              description: t(
+                'The minimum number of rolling periods required to show ' +
+                  'a value. For instance if you do a cumulative sum on 7 days ' +
+                  'you may want your "Min Period" to be 7, so that all data points ' +
+                  'shown are the total of 7 periods. This will hide the "ramp up" ' +
+                  'taking place over the first 7 periods',
+              ),
+            },
+          },
+        ],
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Time Comparison')}</h1>],
+        [
+          {
+            name: 'time_compare',
+            config: {
+              type: 'SelectControl',
+              multi: true,
+              freeForm: true,
+              label: t('Time Shift'),
+              choices: formatSelectOptions([
+                '1 day',
+                '1 week',
+                '28 days',
+                '30 days',
+                '52 weeks',
+                '1 year',
+                '104 weeks',
+                '2 years',
+              ]),
+              description: t(
+                'Overlay one or more timeseries from a ' +
+                  'relative time period. Expects relative time deltas ' +
+                  'in natural language (example:  24 hours, 7 days, ' +
+                  '52 weeks, 365 days). Free text is supported.',
+              ),
+            },
+          },
+          {
+            name: 'comparison_type',
+            config: {
+              type: 'SelectControl',
+              label: t('Calculation type'),
+              default: 'values',
+              choices: [
+                ['values', 'Actual Values'],
+                ['absolute', 'Absolute difference'],
+                ['percentage', 'Percentage change'],
+                ['ratio', 'Ratio'],
+              ],
+              description: t(
+                'How to display time shifts: as individual lines; as the ' +
+                  'absolute difference between the main time series and each time shift; ' +
+                  'as the percentage change; or as the ratio between series and time shifts.',
+              ),
+            },
+          },
+        ],
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Python Functions')}</h1>],
+        // eslint-disable-next-line react/jsx-key
+        [<h2 className="section-header">pandas.resample</h2>],
+        [
+          {
+            name: 'resample_rule',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Rule'),
+              default: null,
+              choices: formatSelectOptions(['1T', '1H', '1D', '7D', '1M', '1AS']),
+              description: t('Pandas resample rule'),
+            },
+          },
+          {
+            name: 'resample_method',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Method'),
+              default: null,
+              choices: formatSelectOptions(['asfreq', 'bfill', 'ffill', 'median', 'mean', 'sum']),
+              description: t('Pandas resample method'),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-rose/src/images/thumbnail.png
new file mode 100644
index 0000000..9e01036
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-rose/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..03935f9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js
new file mode 100644
index 0000000..4ffee26
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  description: '',
+  name: t('Nightingale Rose Chart'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class RoseChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactRose.js'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-rose/src/transformProps.js
new file mode 100644
index 0000000..a384841
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/src/transformProps.js
@@ -0,0 +1,33 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { colorScheme, dateTimeFormat, numberFormat, richTooltip, roseAreaProportion } = formData;
+
+  return {
+    width,
+    height,
+    data: queriesData[0].data,
+    colorScheme,
+    dateTimeFormat,
+    numberFormat,
+    useAreaProportions: roseAreaProportion,
+    useRichTooltip: richTooltip,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-rose/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-rose/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/README.md b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/README.md
new file mode 100644
index 0000000..7bf3485
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-sankey-loop
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sankey.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sankey)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-sankey&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-sankey)
+
+This plugin provides Sankey Diagram with loops for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import SankeyLoopChartPlugin from '@superset-ui/legacy-plugin-chart-sankey-loop';
+
+new SankeyLoopChartPlugin().configure({ key: 'sankey' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-sankey-loop)
+for more details.
+
+```js
+<SuperChart
+  chartType="sankey-loop"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/package.json b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/package.json
new file mode 100644
index 0000000..7915e47
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/package.json
@@ -0,0 +1,37 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-sankey-loop",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Sankey Diagram with Loops",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3-sankey-diagram": "^0.7.3",
+    "d3-selection": "^1.4.0",
+    "prop-types": "^15.6.2"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/ReactSankeyLoop.js b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/ReactSankeyLoop.js
new file mode 100644
index 0000000..034f975
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/ReactSankeyLoop.js
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { reactify } from '@superset-ui/core';
+import Component from './SankeyLoop';
+
+export default reactify(Component);
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.css b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.css
new file mode 100644
index 0000000..0cd18e9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.css
@@ -0,0 +1,57 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+.superset-legacy-chart-sankey-loop .node rect {
+  cursor: move;
+  fill-opacity: 0.9;
+  shape-rendering: crispEdges;
+}
+
+.superset-legacy-chart-sankey-loop .node text {
+  pointer-events: none;
+  text-shadow: 0 1px 0 #fff;
+}
+
+.superset-legacy-chart-sankey-loop .link {
+  fill: none;
+  stroke: #000;
+  stroke-opacity: 0.2;
+}
+
+.superset-legacy-chart-sankey-loop .link:hover {
+  stroke-opacity: 0.5;
+}
+
+.superset-legacy-chart-sankey-loop .link path {
+  opacity: 0.2;
+  stroke-opacity: 0;
+}
+
+.superset-legacy-chart-sankey-loop .link:hover path {
+  opacity: 0.5;
+}
+
+.superset-legacy-chart-sankey-loop .link text {
+  fill: #666;
+  font-size: 10px;
+}
+
+.superset-legacy-chart-sankey-loop .link:hover text {
+  opacity: 1;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.js b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.js
new file mode 100644
index 0000000..a7b8a1b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.js
@@ -0,0 +1,123 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/sort-prop-types */
+import PropTypes from 'prop-types';
+import { select } from 'd3-selection';
+import { sankeyDiagram, sankey } from 'd3-sankey-diagram';
+import { getNumberFormatter, NumberFormats, CategoricalColorNamespace } from '@superset-ui/core';
+
+import './SankeyLoop.css';
+
+// a problem with 'd3-sankey-diagram'  is that the sankey().extent() paramters, which
+// informs the layout of the bounding box of the sankey columns, does not account
+// for labels and paths which happen to be layedout outside that rectangle.
+// for that reason i've selected relatively large default left/right margins, and have
+// made 'margin' a property.   i have raised an issue in the chart repo:
+//
+//   https://github.com/ricklupton/d3-sankey-diagram/issues/20
+
+const defaultMargin = {
+  top: 0,
+  right: 80,
+  bottom: 0,
+  left: 80,
+};
+
+const propTypes = {
+  data: PropTypes.arrayOf(
+    PropTypes.shape({
+      source: PropTypes.string,
+      target: PropTypes.string,
+      value: PropTypes.number,
+    }),
+  ),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  colorScheme: PropTypes.string,
+  margin: PropTypes.shape({
+    top: PropTypes.number,
+    right: PropTypes.number,
+    bottom: PropTypes.number,
+    left: PropTypes.number,
+  }),
+};
+
+const percentFormat = getNumberFormatter(NumberFormats.PERCENT_1_POINT);
+const countFormat = getNumberFormatter();
+
+function computeGraph(links) {
+  // this assumes source and target are string values
+  const nodes = Array.from(
+    links.reduce((set, { source, target }) => set.add(source).add(target), new Set()),
+  ).map(id => ({ id, name: id }));
+
+  return {
+    nodes,
+
+    // links are shallow copied as the chart layout modifies them, and it is best to
+    // leave the passed data un-altered
+    links: links.map(d => ({ ...d })),
+  };
+}
+
+function SankeyLoop(element, props) {
+  const { data, width, height, colorScheme } = props;
+  const color = CategoricalColorNamespace.getScale(colorScheme);
+  const margin = { ...defaultMargin, ...props.margin };
+  const innerWidth = width - margin.left - margin.right;
+  const innerHeight = height - margin.top - margin.bottom;
+
+  const layout = sankey()
+    .nodeId(d => d.id)
+    .extent([
+      [margin.left, margin.top],
+      [innerWidth, innerHeight],
+    ]);
+
+  const diagram = sankeyDiagram()
+    .nodeTitle(d => d.name)
+    .linkTitle(
+      ({ source: { name: sName, value: sValue }, target: { name: tName }, value }) =>
+        `${sName} → ${tName}: ${countFormat(value)} (${percentFormat(value / sValue)})`,
+    )
+    .linkColor(d => color(d.source.name));
+
+  const svg = select(element)
+    .append('svg')
+    .classed('superset-legacy-chart-sankey-loop', true)
+    .style('width', width)
+    .style('height', height)
+    .datum(layout(computeGraph(data)))
+    .call(diagram);
+
+  svg
+    .selectAll('g.link')
+    .classed('link', true)
+    .append('text')
+    .attr('x', d => d.points[0].x)
+    .attr('y', d => d.points[0].y)
+    .attr('dy', 3)
+    .attr('dx', 2)
+    .text(d => `${countFormat(d.value)} (${percentFormat(d.value / d.source.value)})`);
+}
+
+SankeyLoop.displayName = 'SankeyLoop';
+SankeyLoop.propTypes = propTypes;
+
+export default SankeyLoop;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts
new file mode 100644
index 0000000..f659aa5
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts
@@ -0,0 +1,44 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['groupby'], ['metric'], ['adhoc_filters'], ['row_limit']],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [['color_scheme', 'label_colors']],
+    },
+  ],
+  controlOverrides: {
+    groupby: {
+      label: t('Source / Target'),
+      description: t('Choose a source and a target'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnail.png
new file mode 100644
index 0000000..5d81458
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..5d81458
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js
new file mode 100644
index 0000000..93a3389
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['https://github.com/ricklupton/d3-sankey-diagram'],
+  description: '',
+  name: t('Sankey Diagram with Loops'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class SankeyChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactSankeyLoop.js'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js
new file mode 100644
index 0000000..b62639a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js
@@ -0,0 +1,30 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData, margin } = chartProps;
+  const { colorScheme } = formData;
+
+  return {
+    width,
+    height,
+    data: queriesData[0].data,
+    colorScheme,
+    margin,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/README.md b/superset-frontend/plugins/legacy-plugin-chart-sankey/README.md
new file mode 100644
index 0000000..e0b203a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-sankey
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sankey.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sankey)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-sankey&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-sankey)
+
+This plugin provides Sankey Diagram for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import SankeyChartPlugin from '@superset-ui/legacy-plugin-chart-sankey';
+
+new SankeyChartPlugin().configure({ key: 'sankey' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-sankey)
+for more details.
+
+```js
+<SuperChart
+  chartType="sankey"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/package.json b/superset-frontend/plugins/legacy-plugin-chart-sankey/package.json
new file mode 100644
index 0000000..418af31
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/package.json
@@ -0,0 +1,40 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-sankey",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Sankey Diagram",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "d3-sankey": "^0.4.2",
+    "prop-types": "^15.6.2"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/src/ReactSankey.jsx b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/ReactSankey.jsx
new file mode 100644
index 0000000..228c9ed
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/ReactSankey.jsx
@@ -0,0 +1,70 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { reactify, styled } from '@superset-ui/core';
+import PropTypes from 'prop-types';
+import SanKey from './Sankey';
+
+const ReactSanKey = reactify(SanKey);
+
+const SankeyComponent = ({ className, ...otherProps }) => (
+  <div className={className}>
+    <ReactSanKey {...otherProps} />
+  </div>
+);
+
+SankeyComponent.propTypes = {
+  className: PropTypes.string.isRequired,
+};
+
+export default styled(SankeyComponent)`
+  .superset-legacy-chart-sankey {
+    .node {
+      rect {
+        cursor: move;
+        fill-opacity: 0.9;
+        shape-rendering: crispEdges;
+      }
+      text {
+        pointer-events: none;
+        text-shadow: 0 1px 0 #fff;
+      }
+    }
+    .link {
+      fill: none;
+      stroke: #000;
+      stroke-opacity: 0.2;
+      &:hover {
+        stroke-opacity: 0.5;
+      }
+    }
+  }
+  .superset-legacy-chart-sankey-tooltip {
+    position: absolute;
+    width: auto;
+    background: #ddd;
+    padding: 10px;
+    font-size: ${({ theme }) => theme.typography.sizes.s};
+    font-weight: ${({ theme }) => theme.typography.weights.light};
+    color: #333;
+    border: 1px solid #fff;
+    text-align: center;
+    pointer-events: none;
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/src/Sankey.js b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/Sankey.js
new file mode 100644
index 0000000..23cbd31
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/Sankey.js
@@ -0,0 +1,199 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable no-param-reassign */
+/* eslint-disable react/sort-prop-types */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+import { sankey as d3Sankey } from 'd3-sankey';
+import { getNumberFormatter, NumberFormats, CategoricalColorNamespace } from '@superset-ui/core';
+
+const propTypes = {
+  data: PropTypes.arrayOf(
+    PropTypes.shape({
+      source: PropTypes.string,
+      target: PropTypes.string,
+      value: PropTypes.number,
+    }),
+  ),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  colorScheme: PropTypes.string,
+};
+
+const formatNumber = getNumberFormatter(NumberFormats.FLOAT);
+
+function Sankey(element, props) {
+  const { data, width, height, colorScheme } = props;
+
+  const div = d3.select(element);
+  div.classed('superset-legacy-chart-sankey', true);
+  const margin = {
+    top: 5,
+    right: 5,
+    bottom: 5,
+    left: 5,
+  };
+  const innerWidth = width - margin.left - margin.right;
+  const innerHeight = height - margin.top - margin.bottom;
+
+  div.selectAll('*').remove();
+  const svg = div
+    .append('svg')
+    .attr('width', innerWidth + margin.left + margin.right)
+    .attr('height', innerHeight + margin.top + margin.bottom)
+    .append('g')
+    .attr('transform', `translate(${margin.left},${margin.top})`);
+
+  const tooltip = div.append('div').attr('class', 'sankey-tooltip').style('opacity', 0);
+
+  const colorFn = CategoricalColorNamespace.getScale(colorScheme);
+
+  const sankey = d3Sankey().nodeWidth(15).nodePadding(10).size([innerWidth, innerHeight]);
+
+  const path = sankey.link();
+
+  let nodes = {};
+  // Compute the distinct nodes from the links.
+  const links = data.map(row => {
+    const link = { ...row };
+    link.source = nodes[link.source] || (nodes[link.source] = { name: link.source });
+    link.target = nodes[link.target] || (nodes[link.target] = { name: link.target });
+    link.value = Number(link.value);
+
+    return link;
+  });
+  nodes = d3.values(nodes);
+
+  sankey.nodes(nodes).links(links).layout(32);
+
+  function getTooltipHtml(d) {
+    let html;
+
+    if (d.sourceLinks) {
+      // is node
+      html = `${d.name} Value: <span class='emph'>${formatNumber(d.value)}</span>`;
+    } else {
+      const val = formatNumber(d.value);
+      const sourcePercent = d3.round((d.value / d.source.value) * 100, 1);
+      const targetPercent = d3.round((d.value / d.target.value) * 100, 1);
+
+      html = [
+        "<div class=''>Path Value: <span class='emph'>",
+        val,
+        '</span></div>',
+        "<div class='percents'>",
+        "<span class='emph'>",
+        Number.isFinite(sourcePercent) ? sourcePercent : '100',
+        '%</span> of ',
+        d.source.name,
+        '<br/>',
+        `<span class='emph'>${Number.isFinite(targetPercent) ? targetPercent : '--'}%</span> of `,
+        d.target.name,
+        '</div>',
+      ].join('');
+    }
+
+    return html;
+  }
+
+  function onmouseover(d) {
+    tooltip
+      .html(() => getTooltipHtml(d))
+      .transition()
+      .duration(200)
+      .style('left', `${d3.event.offsetX + 10}px`)
+      .style('top', `${d3.event.offsetY + 10}px`)
+      .style('opacity', 0.95);
+  }
+
+  function onmouseout() {
+    tooltip.transition().duration(100).style('opacity', 0);
+  }
+
+  const link = svg
+    .append('g')
+    .selectAll('.link')
+    .data(links)
+    .enter()
+    .append('path')
+    .attr('class', 'link')
+    .attr('d', path)
+    .style('stroke-width', d => Math.max(1, d.dy))
+    .sort((a, b) => b.dy - a.dy)
+    .on('mouseover', onmouseover)
+    .on('mouseout', onmouseout);
+
+  function dragmove(d) {
+    d3.select(this).attr(
+      'transform',
+      `translate(${d.x},${(d.y = Math.max(0, Math.min(height - d.dy, d3.event.y)))})`,
+    );
+    sankey.relayout();
+    link.attr('d', path);
+  }
+
+  const node = svg
+    .append('g')
+    .selectAll('.node')
+    .data(nodes)
+    .enter()
+    .append('g')
+    .attr('class', 'node')
+    .attr('transform', d => `translate(${d.x},${d.y})`)
+    .call(
+      d3.behavior
+        .drag()
+        .origin(d => d)
+        .on('dragstart', function dragStart() {
+          this.parentNode.append(this);
+        })
+        .on('drag', dragmove),
+    );
+  const minRectHeight = 5;
+  node
+    .append('rect')
+    .attr('height', d => (d.dy > minRectHeight ? d.dy : minRectHeight))
+    .attr('width', sankey.nodeWidth())
+    .style('fill', d => {
+      const name = d.name || 'N/A';
+      d.color = colorFn(name.replace(/ .*/, ''));
+
+      return d.color;
+    })
+    .style('stroke', d => d3.rgb(d.color).darker(2))
+    .on('mouseover', onmouseover)
+    .on('mouseout', onmouseout);
+
+  node
+    .append('text')
+    .attr('x', -6)
+    .attr('y', d => d.dy / 2)
+    .attr('dy', '.35em')
+    .attr('text-anchor', 'end')
+    .attr('transform', null)
+    .text(d => d.name)
+    .filter(d => d.x < innerWidth / 2)
+    .attr('x', 6 + sankey.nodeWidth())
+    .attr('text-anchor', 'start');
+}
+
+Sankey.displayName = 'Sankey';
+Sankey.propTypes = propTypes;
+
+export default Sankey;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts
new file mode 100644
index 0000000..1386d45
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts
@@ -0,0 +1,70 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'groupby',
+            override: {
+              label: t('Source / Target'),
+              description: t('Choose a source and a target'),
+            },
+          },
+        ],
+        ['metric'],
+        ['adhoc_filters'],
+        [
+          {
+            name: 'row_limit',
+            override: {
+              description: t(
+                'Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'sort_by_metric',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Sort by metric'),
+              description: t('Whether to sort results by the selected metric in descending order.'),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [['color_scheme', 'label_colors']],
+    },
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/images/thumbnail.png
new file mode 100644
index 0000000..6bf13f8
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..231316b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js
new file mode 100644
index 0000000..47a579d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['https://github.com/d3/d3-sankey'],
+  description: '',
+  name: t('Sankey Diagram'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class SankeyChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactSankey'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/transformProps.js
new file mode 100644
index 0000000..938d30f
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/src/transformProps.js
@@ -0,0 +1,29 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { colorScheme } = formData;
+
+  return {
+    width,
+    height,
+    data: queriesData[0].data,
+    colorScheme,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-sankey/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/README.md b/superset-frontend/plugins/legacy-plugin-chart-sunburst/README.md
new file mode 100644
index 0000000..18f2f2e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-sunburst
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sunburst.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sunburst)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-sunburst&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-sunburst)
+
+This plugin provides Sunburst for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import SunburstChartPlugin from '@superset-ui/legacy-plugin-chart-sunburst';
+
+new SunburstChartPlugin().configure({ key: 'sunburst' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-sunburst)
+for more details.
+
+```js
+<SuperChart
+  chartType="sunburst"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/package.json b/superset-frontend/plugins/legacy-plugin-chart-sunburst/package.json
new file mode 100644
index 0000000..a4376e7
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/package.json
@@ -0,0 +1,36 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-sunburst",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Sunburst",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "prop-types": "^15.6.2"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/ReactSunburst.js b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/ReactSunburst.js
new file mode 100644
index 0000000..15303c9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/ReactSunburst.js
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { reactify } from '@superset-ui/core';
+import Component from './Sunburst';
+
+export default reactify(Component);
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.css b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.css
new file mode 100644
index 0000000..2f836ac
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.css
@@ -0,0 +1,71 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+.superset-legacy-chart-sunburst text {
+  text-rendering: optimizeLegibility;
+}
+.superset-legacy-chart-sunburst path {
+  stroke: #ddd;
+  stroke-width: 0.5px;
+}
+.superset-legacy-chart-sunburst .center-label {
+  text-anchor: middle;
+  fill: #333;
+  pointer-events: none;
+}
+.superset-legacy-chart-sunburst .path-abs-percent {
+  font-size: 3em;
+  font-weight: 700;
+}
+.superset-legacy-chart-sunburst .path-cond-percent {
+  font-size: 2em;
+}
+.superset-legacy-chart-sunburst .path-metrics {
+  color: #777;
+}
+.superset-legacy-chart-sunburst .path-ratio {
+  color: #777;
+}
+
+.superset-legacy-chart-sunburst .breadcrumbs text {
+  font-weight: 600;
+  font-size: 1.2em;
+  text-anchor: middle;
+  fill: #333;
+}
+
+/* dashboard specific */
+/*
+.dashboard .superset-legacy-chart-sunburst text {
+  font-size: 1em;
+}
+.dashboard .superset-legacy-chart-sunburst .path-abs-percent {
+  font-size: 2em;
+  font-weight: 700;
+}
+.dashboard .superset-legacy-chart-sunburst .path-cond-percent {
+  font-size: 1.5em;
+}
+.dashboard .superset-legacy-chart-sunburst .path-metrics {
+  font-size: 1em;
+}
+.dashboard .superset-legacy-chart-sunburst .path-ratio {
+  font-size: 1em;
+}
+*/
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js
new file mode 100644
index 0000000..e5be0f0
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js
@@ -0,0 +1,424 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable no-param-reassign, react/sort-prop-types */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+import {
+  getNumberFormatter,
+  NumberFormats,
+  CategoricalColorNamespace,
+  getSequentialSchemeRegistry,
+} from '@superset-ui/core';
+import wrapSvgText from './utils/wrapSvgText';
+import './Sunburst.css';
+
+const propTypes = {
+  // Each row is an array of [hierarchy-lvl1, hierarchy-lvl2, metric1, metric2]
+  // hierarchy-lvls are string. metrics are number
+  data: PropTypes.arrayOf(PropTypes.array),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  colorScheme: PropTypes.string,
+  linearColorScheme: PropTypes.string,
+  numberFormat: PropTypes.string,
+  metrics: PropTypes.arrayOf(
+    PropTypes.oneOfType([
+      PropTypes.string,
+      PropTypes.object, // The metric object
+    ]),
+  ),
+};
+
+function metricLabel(metric) {
+  return typeof metric === 'string' || metric instanceof String ? metric : metric.label;
+}
+
+// Given a node in a partition layout, return an array of all of its ancestor
+// nodes, highest first, but excluding the root.
+function getAncestors(node) {
+  const path = [];
+  let current = node;
+  while (current.parent) {
+    path.unshift(current);
+    current = current.parent;
+  }
+
+  return path;
+}
+
+function buildHierarchy(rows) {
+  const root = {
+    name: 'root',
+    children: [],
+  };
+
+  // each record [groupby1val, groupby2val, (<string> or 0)n, m1, m2]
+  rows.forEach(row => {
+    const m1 = Number(row[row.length - 2]);
+    const m2 = Number(row[row.length - 1]);
+    const levels = row.slice(0, -2);
+    if (Number.isNaN(m1)) {
+      // e.g. if this is a header row
+      return;
+    }
+    let currentNode = root;
+    for (let level = 0; level < levels.length; level += 1) {
+      const children = currentNode.children || [];
+      const nodeName = levels[level].toString();
+      // If the next node has the name '0', it will
+      const isLeafNode = level >= levels.length - 1 || levels[level + 1] === 0;
+      let childNode;
+
+      if (!isLeafNode) {
+        childNode = children.find(child => child.name === nodeName && child.level === level);
+
+        if (!childNode) {
+          childNode = {
+            name: nodeName,
+            children: [],
+            level,
+          };
+          children.push(childNode);
+        }
+        currentNode = childNode;
+      } else if (nodeName !== 0) {
+        // Reached the end of the sequence; create a leaf node.
+        childNode = {
+          name: nodeName,
+          m1,
+          m2,
+        };
+        children.push(childNode);
+      }
+    }
+  });
+
+  function recurse(node) {
+    if (node.children) {
+      let sums;
+      let m1 = 0;
+      let m2 = 0;
+      for (let i = 0; i < node.children.length; i += 1) {
+        sums = recurse(node.children[i]);
+        m1 += sums[0];
+        m2 += sums[1];
+      }
+      node.m1 = m1;
+      node.m2 = m2;
+    }
+
+    return [node.m1, node.m2];
+  }
+
+  recurse(root);
+
+  return root;
+}
+
+// Modified from http://bl.ocks.org/kerryrodden/7090426
+function Sunburst(element, props) {
+  const container = d3.select(element);
+  container.classed('superset-legacy-chart-sunburst', true);
+  const { data, width, height, colorScheme, linearColorScheme, metrics, numberFormat } = props;
+
+  // vars with shared scope within this function
+  const margin = { top: 10, right: 5, bottom: 10, left: 5 };
+  const containerWidth = width;
+  const containerHeight = height;
+  const breadcrumbHeight = containerHeight * 0.085;
+  const visWidth = containerWidth - margin.left - margin.right;
+  const visHeight = containerHeight - margin.top - margin.bottom - breadcrumbHeight;
+  const radius = Math.min(visWidth, visHeight) / 2;
+
+  let colorByCategory = true; // color by category if primary/secondary metrics match
+  let maxBreadcrumbs;
+  let breadcrumbDims; // set based on data
+  let totalSize; // total size of all segments; set after loading the data.
+  let breadcrumbs;
+  let vis;
+  let arcs;
+  let gMiddleText; // dom handles
+
+  const categoricalColorScale = CategoricalColorNamespace.getScale(colorScheme);
+  let linearColorScale;
+
+  // Helper + path gen functions
+  const partition = d3.layout
+    .partition()
+    .size([2 * Math.PI, radius * radius])
+    .value(d => d.m1);
+
+  const arc = d3.svg
+    .arc()
+    .startAngle(d => d.x)
+    .endAngle(d => d.x + d.dx)
+    .innerRadius(d => Math.sqrt(d.y))
+    .outerRadius(d => Math.sqrt(d.y + d.dy));
+
+  const formatNum = getNumberFormatter(numberFormat || NumberFormats.SI_3_DIGIT);
+  const formatPerc = getNumberFormatter(NumberFormats.PERCENT_3_POINT);
+
+  container.select('svg').remove();
+
+  const svg = container
+    .append('svg:svg')
+    .attr('width', containerWidth)
+    .attr('height', containerHeight);
+
+  function createBreadcrumbs(firstRowData) {
+    // -2 bc row contains 2x metrics, +extra for %label and buffer
+    maxBreadcrumbs = firstRowData.length - 2 + 1;
+    breadcrumbDims = {
+      width: visWidth / maxBreadcrumbs,
+      height: breadcrumbHeight * 0.8, // more margin
+      spacing: 3,
+      tipTailWidth: 10,
+    };
+
+    breadcrumbs = svg
+      .append('svg:g')
+      .attr('class', 'breadcrumbs')
+      .attr('transform', `translate(${margin.left},${margin.top})`);
+
+    breadcrumbs.append('svg:text').attr('class', 'end-label');
+  }
+
+  // Generate a string that describes the points of a breadcrumb polygon.
+  function breadcrumbPoints(d, i) {
+    const points = [];
+    points.push('0,0');
+    points.push(`${breadcrumbDims.width},0`);
+    points.push(
+      `${breadcrumbDims.width + breadcrumbDims.tipTailWidth},${breadcrumbDims.height / 2}`,
+    );
+    points.push(`${breadcrumbDims.width},${breadcrumbDims.height}`);
+    points.push(`0,${breadcrumbDims.height}`);
+    if (i > 0) {
+      // Leftmost breadcrumb; don't include 6th vertex.
+      points.push(`${breadcrumbDims.tipTailWidth},${breadcrumbDims.height / 2}`);
+    }
+
+    return points.join(' ');
+  }
+
+  function updateBreadcrumbs(sequenceArray, percentageString) {
+    const g = breadcrumbs.selectAll('g').data(sequenceArray, d => d.name + d.depth);
+
+    // Add breadcrumb and label for entering nodes.
+    const entering = g.enter().append('svg:g');
+
+    entering
+      .append('svg:polygon')
+      .attr('points', breadcrumbPoints)
+      .style('fill', d =>
+        colorByCategory ? categoricalColorScale(d.name) : linearColorScale(d.m2 / d.m1),
+      );
+
+    entering
+      .append('svg:text')
+      .attr('x', (breadcrumbDims.width + breadcrumbDims.tipTailWidth) / 2)
+      .attr('y', breadcrumbDims.height / 4)
+      .attr('dy', '0.85em')
+      .style('fill', d => {
+        // Make text white or black based on the lightness of the background
+        const col = d3.hsl(
+          colorByCategory ? categoricalColorScale(d.name) : linearColorScale(d.m2 / d.m1),
+        );
+
+        return col.l < 0.5 ? 'white' : 'black';
+      })
+      .attr('class', 'step-label')
+      .text(d => d.name.replace(/_/g, ' '))
+      .call(wrapSvgText, breadcrumbDims.width, breadcrumbDims.height / 2);
+
+    // Set position for entering and updating nodes.
+    g.attr(
+      'transform',
+      (d, i) => `translate(${i * (breadcrumbDims.width + breadcrumbDims.spacing)}, 0)`,
+    );
+
+    // Remove exiting nodes.
+    g.exit().remove();
+
+    // Now move and update the percentage at the end.
+    breadcrumbs
+      .select('.end-label')
+      .attr('x', (sequenceArray.length + 0.5) * (breadcrumbDims.width + breadcrumbDims.spacing))
+      .attr('y', breadcrumbDims.height / 2)
+      .attr('dy', '0.35em')
+      .text(percentageString);
+
+    // Make the breadcrumb trail visible, if it's hidden.
+    breadcrumbs.style('visibility', null);
+  }
+
+  // Fade all but the current sequence, and show it in the breadcrumb trail.
+  function mouseenter(d) {
+    const sequenceArray = getAncestors(d);
+    const parentOfD = sequenceArray[sequenceArray.length - 2] || null;
+
+    const absolutePercentage = (d.m1 / totalSize).toPrecision(3);
+    const conditionalPercentage = parentOfD ? (d.m1 / parentOfD.m1).toPrecision(3) : null;
+
+    const absolutePercString = formatPerc(absolutePercentage);
+    const conditionalPercString = parentOfD ? formatPerc(conditionalPercentage) : '';
+
+    // 3 levels of text if inner-most level, 4 otherwise
+    const yOffsets = ['-25', '7', '35', '60'];
+    let offsetIndex = 0;
+
+    // If metrics match, assume we are coloring by category
+    const metricsMatch = Math.abs(d.m1 - d.m2) < 0.00001;
+
+    gMiddleText.selectAll('*').remove();
+
+    offsetIndex += 1;
+    gMiddleText
+      .append('text')
+      .attr('class', 'path-abs-percent')
+      .attr('y', yOffsets[offsetIndex])
+      .text(`${absolutePercString} of total`);
+
+    if (conditionalPercString) {
+      offsetIndex += 1;
+      gMiddleText
+        .append('text')
+        .attr('class', 'path-cond-percent')
+        .attr('y', yOffsets[offsetIndex])
+        .text(`${conditionalPercString} of parent`);
+    }
+
+    offsetIndex += 1;
+    gMiddleText
+      .append('text')
+      .attr('class', 'path-metrics')
+      .attr('y', yOffsets[offsetIndex])
+      .text(
+        `${metricLabel(metrics[0])}: ${formatNum(d.m1)}${
+          metricsMatch ? '' : `, ${metricLabel(metrics[1])}: ${formatNum(d.m2)}`
+        }`,
+      );
+
+    offsetIndex += 1;
+    gMiddleText
+      .append('text')
+      .attr('class', 'path-ratio')
+      .attr('y', yOffsets[offsetIndex])
+      .text(
+        metricsMatch
+          ? ''
+          : `${metricLabel(metrics[1])}/${metricLabel(metrics[0])}: ${formatPerc(d.m2 / d.m1)}`,
+      );
+
+    // Reset and fade all the segments.
+    arcs.selectAll('path').style('stroke-width', null).style('stroke', null).style('opacity', 0.3);
+
+    // Then highlight only those that are an ancestor of the current segment.
+    arcs
+      .selectAll('path')
+      .filter(node => sequenceArray.includes(node))
+      .style('opacity', 1)
+      .style('stroke', '#aaa');
+
+    updateBreadcrumbs(sequenceArray, absolutePercString);
+  }
+
+  // Restore everything to full opacity when moving off the visualization.
+  function mouseleave() {
+    // Hide the breadcrumb trail
+    breadcrumbs.style('visibility', 'hidden');
+
+    gMiddleText.selectAll('*').remove();
+
+    // Deactivate all segments during transition.
+    arcs.selectAll('path').on('mouseenter', null);
+
+    // Transition each segment to full opacity and then reactivate it.
+    arcs
+      .selectAll('path')
+      .transition()
+      .duration(200)
+      .style('opacity', 1)
+      .style('stroke', null)
+      .style('stroke-width', null)
+      .each('end', function end() {
+        d3.select(this).on('mouseenter', mouseenter);
+      });
+  }
+
+  // Main function to draw and set up the visualization, once we have the data.
+  function createVisualization(rows) {
+    const root = buildHierarchy(rows);
+
+    vis = svg
+      .append('svg:g')
+      .attr('class', 'sunburst-vis')
+      .attr(
+        'transform',
+        'translate(' +
+          `${margin.left + visWidth / 2},` +
+          `${margin.top + breadcrumbHeight + visHeight / 2}` +
+          ')',
+      )
+      .on('mouseleave', mouseleave);
+
+    arcs = vis.append('svg:g').attr('id', 'arcs');
+
+    gMiddleText = vis.append('svg:g').attr('class', 'center-label');
+
+    // Bounding circle underneath the sunburst, to make it easier to detect
+    // when the mouse leaves the parent g.
+    arcs.append('svg:circle').attr('r', radius).style('opacity', 0);
+
+    // For efficiency, filter nodes to keep only those large enough to see.
+    const nodes = partition.nodes(root).filter(d => d.dx > 0.005); // 0.005 radians = 0.29 degrees
+
+    if (metrics[0] !== metrics[1] && metrics[1]) {
+      colorByCategory = false;
+      const ext = d3.extent(nodes, d => d.m2 / d.m1);
+      linearColorScale = getSequentialSchemeRegistry()
+        .get(linearColorScheme)
+        .createLinearScale(ext);
+    }
+
+    arcs
+      .selectAll('path')
+      .data(nodes)
+      .enter()
+      .append('svg:path')
+      .attr('display', d => (d.depth ? null : 'none'))
+      .attr('d', arc)
+      .attr('fill-rule', 'evenodd')
+      .style('fill', d =>
+        colorByCategory ? categoricalColorScale(d.name) : linearColorScale(d.m2 / d.m1),
+      )
+      .style('opacity', 1)
+      .on('mouseenter', mouseenter);
+
+    // Get total size of the tree = value of root node from partition.
+    totalSize = root.value;
+  }
+  createBreadcrumbs(data[0]);
+  createVisualization(data);
+}
+
+Sunburst.displayName = 'Sunburst';
+Sunburst.propTypes = propTypes;
+
+export default Sunburst;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts
new file mode 100644
index 0000000..366189c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts
@@ -0,0 +1,69 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['groupby'],
+        ['metric'],
+        ['secondary_metric'],
+        ['adhoc_filters'],
+        ['row_limit'],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [['color_scheme', 'linear_color_scheme']],
+    },
+  ],
+  controlOverrides: {
+    metric: {
+      label: t('Primary Metric'),
+      description: t('The primary metric is used to define the arc segment sizes'),
+    },
+    secondary_metric: {
+      label: t('Secondary Metric'),
+      default: null,
+      description: t(
+        '[optional] this secondary metric is used to ' +
+          'define the color as a ratio against the primary metric. ' +
+          'When omitted, the color is categorical and based on labels',
+      ),
+    },
+    color_scheme: {
+      description: t('When only a primary metric is provided, a categorical color scale is used.'),
+    },
+    linear_color_scheme: {
+      description: t('When a secondary metric is provided, a linear color scale is used.'),
+    },
+    groupby: {
+      label: t('Hierarchy'),
+      description: t('This defines the level of the hierarchy'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/images/thumbnail.png
new file mode 100644
index 0000000..46f8262
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..6c4706b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js
new file mode 100644
index 0000000..060d180
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['https://bl.ocks.org/kerryrodden/7090426'],
+  description: '',
+  name: t('Sunburst Chart'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class SunburstChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactSunburst.js'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/transformProps.js
new file mode 100644
index 0000000..2c42e4a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/transformProps.js
@@ -0,0 +1,42 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData, datasource } = chartProps;
+  const { colorScheme, linearColorScheme, metric, secondaryMetric } = formData;
+
+  const returnProps = {
+    width,
+    height,
+    data: queriesData[0].data,
+    colorScheme,
+    linearColorScheme,
+    metrics: [metric, secondaryMetric],
+  };
+
+  if (datasource && datasource.metrics) {
+    const metricWithFormat = datasource.metrics.find(
+      ({ metric_name: metricName, d3format }) => metricName === formData.metric && d3format,
+    );
+    if (metricWithFormat) {
+      Object.assign(returnProps, { numberFormat: metricWithFormat.d3format });
+    }
+  }
+
+  return returnProps;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/utils/wrapSvgText.js b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/utils/wrapSvgText.js
new file mode 100644
index 0000000..45fafb6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/src/utils/wrapSvgText.js
@@ -0,0 +1,47 @@
+/*
+  Utility function that takes a d3 svg:text selection and a max width, and splits the
+  text's text across multiple tspan lines such that any given line does not exceed max width
+
+  If text does not span multiple lines AND adjustedY is passed,
+  will set the text to the passed val
+*/
+import d3 from 'd3';
+
+export default function wrapSvgText(text, width, adjustedY) {
+  const lineHeight = 1;
+  // ems
+  text.each(function each() {
+    const d3Text = d3.select(this);
+    const words = d3Text.text().split(/\s+/);
+    let line = [];
+    let lineNumber = 0;
+    const x = d3Text.attr('x');
+    const y = d3Text.attr('y');
+    const dy = parseFloat(d3Text.attr('dy'));
+    let tspan = d3Text.text(null).append('tspan').attr('x', x).attr('y', y).attr('dy', `${dy}em`);
+
+    let didWrap = false;
+    words.forEach(word => {
+      line.push(word);
+      tspan.text(line.join(' '));
+      if (tspan.node().getComputedTextLength() > width) {
+        lineNumber += 1;
+        line.pop();
+        // remove word that pushes over the limit
+        tspan.text(line.join(' '));
+        line = [word];
+        tspan = d3Text
+          .append('tspan')
+          .attr('x', x)
+          .attr('y', y)
+          .attr('dy', `${lineNumber * lineHeight + dy}em`)
+          .text(word);
+        didWrap = true;
+      }
+    });
+
+    if (!didWrap && typeof adjustedY !== 'undefined') {
+      tspan.attr('y', adjustedY);
+    }
+  });
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-sunburst/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/README.md b/superset-frontend/plugins/legacy-plugin-chart-time-table/README.md
new file mode 100644
index 0000000..2237029
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/plugin-chart-time-table
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-time-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-time-table)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-plugin-chart-time-table&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-plugin-chart-time-table)
+
+This plugin provides Time Table for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import TimeTableChartPlugin from '@superset-ui/legacy-plugin-chart-time-table';
+
+new TimeTableChartPlugin().configure({ key: 'time-table' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-time-table)
+for more details.
+
+```js
+<SuperChart
+  chartType="time-table"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/package.json b/superset-frontend/plugins/legacy-plugin-chart-time-table/package.json
new file mode 100644
index 0000000..e1236a6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/package.json
@@ -0,0 +1,46 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-time-table",
+  "version": "0.17.5",
+  "description": "Superset Chart Plugin - Time Table",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@data-ui/sparkline": "^0.0.84",
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "@types/d3-scale": "^2.0.2",
+    "d3-scale": "^3.2.1",
+    "emotion-theming": "^10.0.27",
+    "moment": "^2.26.0",
+    "mustache": "^4.0.1",
+    "prop-types": "^15.7.2",
+    "reactable-arc": "^0.15.0"
+  },
+  "peerDependencies": {
+    "@types/react": "*",
+    "react": "^16.3.1"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/src/FormattedNumber.tsx b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/FormattedNumber.tsx
new file mode 100644
index 0000000..249aa28
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/FormattedNumber.tsx
@@ -0,0 +1,34 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { formatNumber } from '@superset-ui/core';
+
+interface Props {
+  format: string;
+  num: number;
+}
+
+function FormattedNumber({ num = 0, format = '' }: Props) {
+  if (format) {
+    return <span title={num.toString()}>{formatNumber(format, num)}</span>;
+  }
+  return <span>{num}</span>;
+}
+
+export default FormattedNumber;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/src/SparklineCell.tsx b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/SparklineCell.tsx
new file mode 100644
index 0000000..769201c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/SparklineCell.tsx
@@ -0,0 +1,182 @@
+/* eslint-disable class-methods-use-this */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import {
+  Sparkline,
+  LineSeries,
+  PointSeries,
+  HorizontalReferenceLine,
+  VerticalReferenceLine,
+  WithTooltip,
+} from '@data-ui/sparkline';
+import { getTextDimension, formatNumber } from '@superset-ui/core';
+
+interface Props {
+  ariaLabel: string;
+  className?: string;
+  height: number;
+  numberFormat: string;
+  renderTooltip: ({ index }: { index: number }) => void;
+  showYAxis: boolean;
+  width: number;
+  yAxisBounds: Array<number>;
+  data: Array<number>;
+}
+
+interface TooltipProps {
+  onMouseLeave: () => void;
+  onMouseMove: () => void;
+  tooltipData: {
+    index: number;
+  };
+}
+
+interface Yscale {
+  min?: number;
+  max?: number;
+}
+
+const MARGIN = {
+  top: 8,
+  right: 8,
+  bottom: 8,
+  left: 8,
+};
+const tooltipProps = {
+  style: {
+    opacity: 0.8,
+  },
+  offsetTop: 0,
+};
+
+function getSparklineTextWidth(text: string) {
+  return (
+    getTextDimension({
+      text,
+      style: {
+        fontSize: '12px',
+        fontWeight: 200,
+        letterSpacing: 0.4,
+      },
+    }).width + 5
+  );
+}
+
+function isValidBoundValue(value?: number) {
+  // @ts-ignore
+  return value !== null && value !== undefined && value !== '' && !Number.isNaN(value);
+}
+
+class SparklineCell extends React.Component<Props, {}> {
+  renderHorizontalReferenceLine(value?: number, label?: string) {
+    return (
+      <HorizontalReferenceLine
+        reference={value}
+        labelPosition="right"
+        renderLabel={() => label}
+        stroke="#bbb"
+        strokeDasharray="3 3"
+        strokeWidth={1}
+      />
+    );
+  }
+
+  render() {
+    const {
+      width = 300,
+      height = 50,
+      data,
+      ariaLabel,
+      numberFormat = undefined,
+      yAxisBounds = [undefined, undefined],
+      showYAxis = false,
+      renderTooltip = () => <div />,
+    } = this.props;
+
+    const yScale: Yscale = {};
+    let hasMinBound = false;
+    let hasMaxBound = false;
+
+    if (yAxisBounds) {
+      const [minBound, maxBound] = yAxisBounds;
+      hasMinBound = isValidBoundValue(minBound);
+      if (hasMinBound) {
+        yScale.min = minBound;
+      }
+      hasMaxBound = isValidBoundValue(maxBound);
+      if (hasMaxBound) {
+        yScale.max = maxBound;
+      }
+    }
+
+    let min: number | undefined;
+    let max: number | undefined;
+    let minLabel: string;
+    let maxLabel: string;
+    let labelLength = 0;
+    if (showYAxis) {
+      const [minBound, maxBound] = yAxisBounds;
+      min = hasMinBound ? minBound : data.reduce((acc, current) => Math.min(acc, current), data[0]);
+      max = hasMaxBound ? maxBound : data.reduce((acc, current) => Math.max(acc, current), data[0]);
+
+      minLabel = formatNumber(numberFormat, min);
+      maxLabel = formatNumber(numberFormat, max);
+      labelLength = Math.max(getSparklineTextWidth(minLabel), getSparklineTextWidth(maxLabel));
+    }
+
+    const margin = {
+      ...MARGIN,
+      right: MARGIN.right + labelLength,
+    };
+
+    return (
+      <WithTooltip tooltipProps={tooltipProps} hoverStyles={null} renderTooltip={renderTooltip}>
+        {({ onMouseLeave, onMouseMove, tooltipData }: TooltipProps) => (
+          <Sparkline
+            ariaLabel={ariaLabel}
+            width={width}
+            height={height}
+            margin={margin}
+            data={data}
+            onMouseLeave={onMouseLeave}
+            onMouseMove={onMouseMove}
+            {...yScale}
+          >
+            {showYAxis && this.renderHorizontalReferenceLine(min, minLabel)}
+            {showYAxis && this.renderHorizontalReferenceLine(max, maxLabel)}
+            <LineSeries showArea={false} stroke="#767676" />
+            {tooltipData && (
+              <VerticalReferenceLine
+                reference={tooltipData.index}
+                strokeDasharray="3 3"
+                strokeWidth={1}
+              />
+            )}
+            {tooltipData && (
+              <PointSeries points={[tooltipData.index]} fill="#767676" strokeWidth={1} />
+            )}
+          </Sparkline>
+        )}
+      </WithTooltip>
+    );
+  }
+}
+
+export default SparklineCell;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/src/TimeTable.tsx b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/TimeTable.tsx
new file mode 100644
index 0000000..2c214b8
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/TimeTable.tsx
@@ -0,0 +1,298 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import Mustache from 'mustache';
+import { scaleLinear } from 'd3-scale';
+import { Table, Thead, Th, Tr, Td } from 'reactable-arc';
+import { formatNumber, formatTime, styled } from '@superset-ui/core';
+import { InfoTooltipWithTrigger, MetricOption, Metric } from '@superset-ui/chart-controls';
+import moment from 'moment';
+
+import FormattedNumber from './FormattedNumber';
+import SparklineCell from './SparklineCell';
+
+const ACCESSIBLE_COLOR_BOUNDS = ['#ca0020', '#0571b0'];
+interface ColorFromBoundProps {
+  value: number;
+  bounds: Array<string>;
+  colorBounds: Array<string>;
+}
+function colorFromBounds(
+  value: number,
+  bounds: number[],
+  colorBounds = ACCESSIBLE_COLOR_BOUNDS,
+): ColorFromBoundProps | null {
+  if (bounds) {
+    const [min, max] = bounds;
+    const [minColor, maxColor] = colorBounds;
+    if (min !== null && max !== null) {
+      const colorScale = scaleLinear()
+        .domain([min, (max + min) / 2, max])
+        // @ts-ignore
+        .range([minColor, 'grey', maxColor]);
+
+      // @ts-ignore
+      return colorScale(value);
+    }
+    if (min !== null) {
+      // @ts-ignore
+      return value >= min ? maxColor : minColor;
+    }
+    if (max !== null) {
+      // @ts-ignore
+      return value < max ? maxColor : minColor;
+    }
+  }
+  return null;
+}
+
+interface ColumnConfigProps {
+  colType: string;
+  comparisonType: string;
+  d3format: string;
+  key: string;
+  label: string;
+  timeLag: number;
+  tooltip: any;
+  bounds: number[];
+  dateFormat: string;
+  width: string;
+  height: string;
+  yAxisBounds: number[];
+  showYAxis: boolean;
+  timeRatio: number;
+}
+
+interface RowData {
+  label: string;
+  // eslint-disable-next-line camelcase
+  metric_name: string;
+}
+
+interface ChartProps {
+  className: string | undefined;
+  columnConfigs: Array<ColumnConfigProps>;
+  data: object;
+  height: number;
+  rows: Array<RowData>;
+  rowType: string;
+  url: string;
+  row: Array<unknown>;
+}
+interface Entry {
+  [key: string]: number;
+}
+
+class TimeTable extends React.PureComponent<ChartProps, {}> {
+  renderLeftCell(row: RowData) {
+    const { rowType, url } = this.props;
+    const context = { metric: row };
+    const fullUrl = url ? Mustache.render(url, context) : null;
+
+    if (rowType === 'column') {
+      const column = row;
+      if (fullUrl) {
+        return (
+          <a href={fullUrl} rel="noopener noreferrer" target="_blank">
+            {column.label}
+          </a>
+        );
+      }
+      return column.label;
+    }
+
+    return (
+      <MetricOption openInNewWindow metric={row as Metric} url={fullUrl} showFormula={false} />
+    );
+  }
+
+  // eslint-disable-next-line class-methods-use-this
+  renderSparklineCell(valueField: string, column: ColumnConfigProps, entries: Entry[]) {
+    let sparkData: number[];
+    if (column.timeRatio) {
+      // Period ratio sparkline
+      sparkData = [];
+      for (let i = column.timeRatio; i < entries.length; i += 1) {
+        const prevData = entries[i - column.timeRatio][valueField];
+        if (prevData && prevData !== 0) {
+          sparkData.push(entries[i][valueField] / prevData);
+        } else {
+          // @ts-ignore
+          sparkData.push(null);
+        }
+      }
+    } else {
+      sparkData = entries.map(d => d[valueField]);
+    }
+
+    return (
+      <Td key={column.key} column={column.key} value={sparkData[sparkData.length - 1]}>
+        <SparklineCell
+          width={parseInt(column.width, 10) || 300}
+          height={parseInt(column.height, 10) || 50}
+          data={sparkData}
+          ariaLabel={`spark-${valueField}`}
+          numberFormat={column.d3format}
+          yAxisBounds={column.yAxisBounds}
+          showYAxis={column.showYAxis}
+          renderTooltip={({ index }: { index: number }) => (
+            <div>
+              <strong>{formatNumber(column.d3format, sparkData[index])}</strong>
+              <div>{formatTime(column.dateFormat, moment.utc(entries[index].time).toDate())}</div>
+            </div>
+          )}
+        />
+      </Td>
+    );
+  }
+
+  // eslint-disable-next-line class-methods-use-this
+  renderValueCell(valueField: string, column: ColumnConfigProps, reversedEntries: Entry[]) {
+    const recent = reversedEntries[0][valueField];
+    let v = 0;
+    let errorMsg;
+    if (column.colType === 'time') {
+      // Time lag ratio
+      const timeLag = column.timeLag || 0;
+      const totalLag = Object.keys(reversedEntries).length;
+      if (timeLag >= totalLag) {
+        errorMsg = `The time lag set at ${timeLag} is too large for the length of data at ${reversedEntries.length}. No data available.`;
+      } else {
+        v = reversedEntries[timeLag][valueField];
+      }
+      if (column.comparisonType === 'diff') {
+        v = recent - v;
+      } else if (column.comparisonType === 'perc') {
+        v = recent / v;
+      } else if (column.comparisonType === 'perc_change') {
+        v = recent / v - 1;
+      }
+      v = v || 0;
+    } else if (column.colType === 'contrib') {
+      // contribution to column total
+      v =
+        recent /
+        Object.keys(reversedEntries[0])
+          .map(k => (k === 'time' ? 0 : reversedEntries[0][k]))
+          .reduce((a, b) => a + b);
+    } else if (column.colType === 'avg') {
+      // Average over the last {timeLag}
+      v =
+        reversedEntries
+          .map((k: Entry, i: number) => (i < column.timeLag ? k[valueField] : 0))
+          .reduce((a: number, b: number) => a + b) / column.timeLag;
+    }
+
+    const color = colorFromBounds(v, column.bounds);
+
+    return (
+      <Td
+        key={column.key}
+        column={column.key}
+        value={v}
+        style={
+          color && {
+            boxShadow: `inset 0px -2.5px 0px 0px ${color}`,
+            borderRight: '2px solid #fff',
+          }
+        }
+      >
+        {errorMsg ? (
+          <div>{errorMsg}</div>
+        ) : (
+          // @ts-ignore
+          <div style={{ color }}>
+            <FormattedNumber num={v} format={column.d3format} />
+          </div>
+        )}
+      </Td>
+    );
+  }
+
+  renderRow(row: RowData, entries: Entry[], reversedEntries: Entry[]) {
+    const { columnConfigs } = this.props;
+    const valueField: string = row.label || row.metric_name;
+    const leftCell = this.renderLeftCell(row);
+    return (
+      <Tr key={leftCell}>
+        <Td column="metric" data={leftCell}>
+          {leftCell}
+        </Td>
+        {columnConfigs.map(c =>
+          c.colType === 'spark'
+            ? this.renderSparklineCell(valueField, c, entries)
+            : this.renderValueCell(valueField, c, reversedEntries),
+        )}
+      </Tr>
+    );
+  }
+
+  render() {
+    const { className, height, data, columnConfigs, rowType, rows } = this.props;
+    const entries = Object.keys(data)
+      .sort()
+      // @ts-ignore
+      // eslint-disable-next-line @typescript-eslint/no-unsafe-return
+      .map(time => ({ ...data[time], time }));
+
+    const reversedEntries = entries.concat().reverse();
+
+    const defaultSort =
+      rowType === 'column' && columnConfigs.length > 0
+        ? {
+            column: columnConfigs[0].key,
+            direction: 'desc',
+          }
+        : false;
+
+    return (
+      <div className={`time-table ${className}`} style={{ height }}>
+        <Table
+          className="table table-no-hover"
+          defaultSort={defaultSort}
+          sortBy={defaultSort}
+          sortable={columnConfigs.map(c => c.key)}
+        >
+          <Thead>
+            <Th column="metric">Metric</Th>
+            {columnConfigs.map((c, i) => (
+              <Th key={c.key} column={c.key} width={c.colType === 'spark' ? '1%' : null}>
+                {c?.label}{' '}
+                {c?.tooltip && (
+                  <InfoTooltipWithTrigger
+                    tooltip={c?.tooltip}
+                    label={`tt-col-${i}`}
+                    placement="top"
+                  />
+                )}
+              </Th>
+            ))}
+          </Thead>
+          {rows.map(row => this.renderRow(row, entries, reversedEntries))}
+        </Table>
+      </div>
+    );
+  }
+}
+
+export default styled(TimeTable)`
+  .time-table {
+    overflow: auto;
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/src/TimeTableChartPlugin.ts b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/TimeTableChartPlugin.ts
new file mode 100644
index 0000000..ef1933b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/TimeTableChartPlugin.ts
@@ -0,0 +1,39 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+
+const metadata = new ChartMetadata({
+  name: t('Time-series Table'),
+  description: '',
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class TimeTableChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      metadata,
+      // @ts-ignore
+      transformProps,
+      loadChart: () => import('./TimeTable'),
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/controlPanel.ts
new file mode 100644
index 0000000..941bd1f
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/controlPanel.ts
@@ -0,0 +1,68 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metrics'],
+        ['adhoc_filters'],
+        ['groupby'],
+        ['limit'],
+        [
+          {
+            name: 'column_collection',
+            config: {
+              type: 'CollectionControl',
+              label: t('Time Series Columns'),
+              validators: [validateNonEmpty],
+              controlName: 'TimeSeriesColumnControl',
+            },
+          },
+        ],
+        [
+          {
+            name: 'url',
+            config: {
+              type: 'TextControl',
+              label: t('URL'),
+              description: t(
+                "Templated link, it's possible to include {{ metric }} " +
+                  'or other values coming from the controls.',
+              ),
+              default: '',
+            },
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    groupby: {
+      multiple: false,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/images/thumbnail.png
new file mode 100644
index 0000000..22c2ee2
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..4dd4b92
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/src/index.ts b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/index.ts
new file mode 100644
index 0000000..4b430e4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/index.ts
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  name: t('Time-series Table'),
+  description: '',
+  thumbnail,
+  useLegacyApi: true,
+});
+export default class TimeTableChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./TimeTable'),
+      metadata,
+      // @ts-ignore
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/src/transformProps.ts b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/transformProps.ts
new file mode 100644
index 0000000..be4d44a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/src/transformProps.ts
@@ -0,0 +1,83 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartProps, DataRecord, Metric } from '@superset-ui/core';
+
+interface FormData {
+  groupby: string[];
+  metrics: Array<object>;
+  url: string;
+  columnCollection: Array<object> | [];
+}
+
+interface QueryData {
+  data: {
+    records: DataRecord[];
+    columns: string[];
+  };
+}
+
+export type TableChartProps = ChartProps & {
+  formData: FormData;
+  queriesData: QueryData[];
+};
+
+interface ColumnData {
+  timeLag?: string | number;
+}
+export default function transformProps(chartProps: TableChartProps) {
+  const { height, datasource, formData, queriesData } = chartProps;
+  const { columnCollection, groupby, metrics, url } = formData;
+  const { records, columns } = queriesData[0].data;
+  const isGroupBy = groupby?.length > 0;
+
+  // When there is a "group by",
+  // each row in the table is a database column
+  // Otherwise,``
+  // each row in the table is a metric
+  let rows;
+  if (isGroupBy) {
+    rows = columns.map(column => (typeof column === 'object' ? column : { label: column }));
+  } else {
+    const metricMap = datasource.metrics.reduce((acc, current) => {
+      const map = acc;
+      if (current.metric_name) {
+        map[current.metric_name] = current;
+      }
+      return map;
+    }, {} as Record<string, Metric>);
+    rows = metrics.map(metric => (typeof metric === 'object' ? metric : metricMap[metric]));
+  }
+
+  // TODO: Better parse this from controls instead of mutative value here.
+  columnCollection.forEach(column => {
+    const c: ColumnData = column;
+    if (typeof c.timeLag === 'string' && c.timeLag) {
+      c.timeLag = parseInt(c.timeLag, 10);
+    }
+  });
+
+  return {
+    height,
+    data: records,
+    columnConfigs: columnCollection,
+    rows,
+    rowType: isGroupBy ? 'column' : 'metric',
+    url,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-time-table/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-time-table/types/external.d.ts b/superset-frontend/plugins/legacy-plugin-chart-time-table/types/external.d.ts
new file mode 100644
index 0000000..fc8dbf4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-time-table/types/external.d.ts
@@ -0,0 +1,4 @@
+declare module '*.png';
+declare module '@data-ui/sparkline';
+declare module 'reactable-arc';
+declare module 'mustache';
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/README.md b/superset-frontend/plugins/legacy-plugin-chart-treemap/README.md
new file mode 100644
index 0000000..c37a4fb
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-treemap
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-treemap.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-treemap)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-treemap&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-treemap)
+
+This plugin provides Treemap for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import TreemapChartPlugin from '@superset-ui/legacy-plugin-chart-treemap';
+
+new TreemapChartPlugin().configure({ key: 'treemap' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-treemap)
+for more details.
+
+```js
+<SuperChart
+  chartType="treemap"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/package.json b/superset-frontend/plugins/legacy-plugin-chart-treemap/package.json
new file mode 100644
index 0000000..e6e5d64
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/package.json
@@ -0,0 +1,37 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-treemap",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Treemap",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3-hierarchy": "^1.1.8",
+    "d3-selection": "^1.4.0",
+    "prop-types": "^15.6.2"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/src/ReactTreemap.js b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/ReactTreemap.js
new file mode 100644
index 0000000..743115c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/ReactTreemap.js
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { reactify } from '@superset-ui/core';
+import Component from './Treemap';
+
+export default reactify(Component);
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/src/Treemap.css b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/Treemap.css
new file mode 100644
index 0000000..f49b425
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/Treemap.css
@@ -0,0 +1,36 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+.superset-legacy-chart-treemap text {
+  font-size: 11px;
+  pointer-events: none;
+}
+
+.superset-legacy-chart-treemap tspan:last-child {
+  font-size: 9px;
+  fill-opacity: 0.8;
+}
+
+.superset-legacy-chart-treemap .node rect {
+  shape-rendering: crispEdges;
+}
+
+.superset-legacy-chart-treemap .node--hover rect {
+  stroke: #000;
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/src/Treemap.js b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/Treemap.js
new file mode 100644
index 0000000..6d12838
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/Treemap.js
@@ -0,0 +1,171 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable no-param-reassign, func-names */
+/* eslint-disable react/sort-prop-types */
+import { select as d3Select, selectAll as d3SelectAll } from 'd3-selection';
+import { treemap as d3Treemap, hierarchy as d3Hierarchy, treemapSquarify } from 'd3-hierarchy';
+import PropTypes from 'prop-types';
+import { getNumberFormatter, CategoricalColorNamespace } from '@superset-ui/core';
+import './Treemap.css';
+
+// Declare PropTypes for recursive data structures
+// https://github.com/facebook/react/issues/5676
+/* eslint-disable-next-line  no-undef */
+const lazyFunction = f => () => f().apply(this, arguments);
+
+const leafType = PropTypes.shape({
+  name: PropTypes.string,
+  value: PropTypes.number.isRequired,
+});
+
+const parentShape = {
+  name: PropTypes.string,
+  children: PropTypes.arrayOf(
+    PropTypes.oneOfType([PropTypes.shape(lazyFunction(() => parentShape)), leafType]),
+  ),
+};
+
+const nodeType = PropTypes.oneOfType([PropTypes.shape(parentShape), leafType]);
+
+const propTypes = {
+  data: PropTypes.arrayOf(nodeType),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  colorScheme: PropTypes.string,
+  margin: PropTypes.shape({
+    top: PropTypes.number,
+    right: PropTypes.number,
+    bottom: PropTypes.number,
+    left: PropTypes.number,
+  }),
+  numberFormat: PropTypes.string,
+  treemapRatio: PropTypes.number,
+};
+
+function hovered(hover) {
+  return function (node) {
+    d3SelectAll(node.ancestors().map(d => d.node))
+      .classed('node--hover', hover)
+      .select('rect')
+      .attr('width', d => d.x1 - d.x0 - hover)
+      .attr('height', d => d.y1 - d.y0 - hover);
+  };
+}
+
+/* Modified from https://bl.ocks.org/mbostock/911ad09bdead40ec0061 */
+function Treemap(element, props) {
+  const { data: rawData, width, height, numberFormat, colorScheme, treemapRatio } = props;
+  const div = d3Select(element);
+  div.classed('superset-legacy-chart-treemap', true);
+
+  const formatNumber = getNumberFormatter(numberFormat);
+  const colorFn = CategoricalColorNamespace.getScale(colorScheme);
+
+  const rootNodes = rawData;
+
+  div.selectAll('*').remove();
+
+  if (rootNodes.length > 0) {
+    const [rootNode] = rootNodes;
+    const treemap = d3Treemap()
+      .size([width, height])
+      .paddingOuter(3)
+      .paddingTop(19)
+      .paddingInner(1)
+      .tile(treemapSquarify.ratio(treemapRatio))
+      .round(true);
+
+    const root = treemap(
+      d3Hierarchy(rootNode)
+        .sum(d => d.value)
+        .sort((a, b) => b.height - a.height || b.value - a.value),
+    );
+
+    const svg = div
+      .append('svg')
+      .attr('class', 'treemap')
+      .attr('width', width)
+      .attr('height', height);
+
+    const cell = svg
+      .selectAll('.node')
+      .data(root.descendants())
+      .enter()
+      .append('g')
+      .attr('transform', d => `translate(${d.x0},${d.y0})`)
+      .attr('class', 'node')
+      .each(function (d) {
+        d.node = this;
+      })
+      .on('mouseover', hovered(true))
+      .on('mouseout', hovered(false));
+
+    cell
+      .append('rect')
+      .attr('id', d => `rect-${d.data.name}`)
+      .attr('width', d => d.x1 - d.x0)
+      .attr('height', d => d.y1 - d.y0)
+      .style('fill', d => colorFn(d.depth));
+
+    cell
+      .append('clipPath')
+      .attr('id', d => `clip-${d.data.name}`)
+      .append('use')
+      .attr('xlink:href', d => `#rect-${d.data.name}`);
+
+    const label = cell.append('text').attr('clip-path', d => `url(#clip-${d.data.name})`);
+
+    label
+      .filter(d => d.children)
+      .selectAll('tspan')
+      .data(d =>
+        d.data.name
+          .slice(Math.max(0, d.data.name.lastIndexOf('.') + 1))
+          .split(/(?=[A-Z][^A-Z])/g)
+          .concat(`\u00A0${formatNumber(d.value)}`),
+      )
+      .enter()
+      .append('tspan')
+      .attr('x', (d, i) => (i ? null : 4))
+      .attr('y', 13)
+      .text(d => d);
+
+    label
+      .filter(d => !d.children)
+      .selectAll('tspan')
+      .data(d =>
+        d.data.name
+          .slice(Math.max(0, d.data.name.lastIndexOf('.') + 1))
+          .split(/(?=[A-Z][^A-Z])/g)
+          .concat(formatNumber(d.value)),
+      )
+      .enter()
+      .append('tspan')
+      .attr('x', 4)
+      .attr('y', (d, i) => 13 + i * 10)
+      .text(d => d);
+
+    cell.append('title').text(d => `${d.data.name}\n${formatNumber(d.value)}`);
+  }
+}
+
+Treemap.displayName = 'Treemap';
+Treemap.propTypes = propTypes;
+
+export default Treemap;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts
new file mode 100644
index 0000000..798e7d4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts
@@ -0,0 +1,78 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import {
+  ControlPanelConfig,
+  D3_FORMAT_OPTIONS,
+  D3_FORMAT_DOCS,
+  sections,
+} from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['metrics'], ['adhoc_filters'], ['groupby'], ['row_limit']],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      tabOverride: 'customize',
+      controlSetRows: [
+        ['color_scheme', 'label_colors'],
+        [
+          {
+            name: 'treemap_ratio',
+            config: {
+              type: 'TextControl',
+              label: t('Ratio'),
+              renderTrigger: true,
+              isFloat: true,
+              default: 0.5 * (1 + Math.sqrt(5)), // d3 default, golden ratio
+              description: t('Target aspect ratio for treemap tiles.'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'number_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Number format'),
+              renderTrigger: true,
+              default: 'SMART_NUMBER',
+              choices: D3_FORMAT_OPTIONS,
+              description: D3_FORMAT_DOCS,
+            },
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    color_scheme: {
+      renderTrigger: false,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/images/thumbnail.png
new file mode 100644
index 0000000..cba7798
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..4e00e29
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js
new file mode 100644
index 0000000..68a792a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['https://bl.ocks.org/mbostock/911ad09bdead40ec0061'],
+  description: '',
+  name: t('Treemap'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class TreemapChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactTreemap.js'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/transformProps.js
new file mode 100644
index 0000000..9c6c915
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/src/transformProps.js
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { colorScheme, treemapRatio } = formData;
+  let { numberFormat } = formData;
+
+  if (!numberFormat && chartProps.datasource && chartProps.datasource.metrics) {
+    chartProps.datasource.metrics.forEach(metric => {
+      if (metric.metric_name === chartProps.formData.metrics[0] && metric.d3format) {
+        numberFormat = metric.d3format;
+      }
+    });
+  }
+
+  return {
+    width,
+    height,
+    data: queriesData[0].data,
+    colorScheme,
+    numberFormat,
+    treemapRatio,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-treemap/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/README.md b/superset-frontend/plugins/legacy-plugin-chart-world-map/README.md
new file mode 100644
index 0000000..30bb4de
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/legacy-plugin-chart-world-map
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-world-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-world-map)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-world-map&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-world-map)
+
+This plugin provides World Map for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import WorldmapChartPlugin from '@superset-ui/legacy-plugin-chart-world-map';
+
+new WorldmapChartPlugin().configure({ key: 'world-map' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-world-map)
+for more details.
+
+```js
+<SuperChart
+  chartType="world-map"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/package.json b/superset-frontend/plugins/legacy-plugin-chart-world-map/package.json
new file mode 100644
index 0000000..0329ce5
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/package.json
@@ -0,0 +1,42 @@
+{
+  "name": "@superset-ui/legacy-plugin-chart-world-map",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - World Map",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "d3-array": "^2.4.0",
+    "d3-color": "^1.4.1",
+    "datamaps": "^0.5.8",
+    "prop-types": "^15.6.2"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/src/ReactWorldMap.jsx b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/ReactWorldMap.jsx
new file mode 100644
index 0000000..d0f23e1
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/ReactWorldMap.jsx
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import PropTypes from 'prop-types';
+import { styled, reactify } from '@superset-ui/core';
+import WorldMap from './WorldMap';
+
+const ReactWorldMap = reactify(WorldMap);
+
+const WorldMapComponent = ({ className, ...otherProps }) => (
+  <div className={className}>
+    <ReactWorldMap {...otherProps} />
+  </div>
+);
+
+WorldMapComponent.propTypes = {
+  className: PropTypes.string.isRequired,
+};
+
+export default styled(WorldMapComponent)`
+  .superset-legacy-chart-world-map {
+    position: relative;
+    svg {
+      background-color: #feffff;
+    }
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/src/WorldMap.js b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/WorldMap.js
new file mode 100644
index 0000000..8db8950
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/WorldMap.js
@@ -0,0 +1,127 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/sort-prop-types */
+import d3 from 'd3';
+import PropTypes from 'prop-types';
+import { extent as d3Extent } from 'd3-array';
+import { getNumberFormatter, getSequentialSchemeRegistry } from '@superset-ui/core';
+import Datamap from 'datamaps/dist/datamaps.world.min';
+
+const propTypes = {
+  data: PropTypes.arrayOf(
+    PropTypes.shape({
+      country: PropTypes.string,
+      latitude: PropTypes.number,
+      longitude: PropTypes.number,
+      name: PropTypes.string,
+      m1: PropTypes.number,
+      m2: PropTypes.number,
+    }),
+  ),
+  height: PropTypes.number,
+  maxBubbleSize: PropTypes.number,
+  showBubbles: PropTypes.bool,
+  linearColorScheme: PropTypes.string,
+  color: PropTypes.string,
+};
+
+const formatter = getNumberFormatter();
+
+function WorldMap(element, props) {
+  const { data, width, height, maxBubbleSize, showBubbles, linearColorScheme, color } = props;
+  const div = d3.select(element);
+  div.classed('superset-legacy-chart-world-map', true);
+  div.selectAll('*').remove();
+
+  // Ignore XXX's to get better normalization
+  const filteredData = data.filter(d => d.country && d.country !== 'XXX');
+
+  const extRadius = d3.extent(filteredData, d => Math.sqrt(d.m2));
+  const radiusScale = d3.scale
+    .linear()
+    .domain([extRadius[0], extRadius[1]])
+    .range([1, maxBubbleSize]);
+
+  const colorScale = getSequentialSchemeRegistry()
+    .get(linearColorScheme)
+    .createLinearScale(d3Extent(filteredData, d => d.m1));
+
+  const processedData = filteredData.map(d => ({
+    ...d,
+    radius: radiusScale(Math.sqrt(d.m2)),
+    fillColor: colorScale(d.m1),
+  }));
+
+  const mapData = {};
+  processedData.forEach(d => {
+    mapData[d.country] = d;
+  });
+
+  const map = new Datamap({
+    element,
+    width,
+    height,
+    data: processedData,
+    fills: {
+      defaultFill: '#eee',
+    },
+    geographyConfig: {
+      popupOnHover: true,
+      highlightOnHover: true,
+      borderWidth: 1,
+      borderColor: '#feffff',
+      highlightBorderColor: '#feffff',
+      highlightFillColor: color,
+      highlightBorderWidth: 1,
+      popupTemplate: (geo, d) =>
+        `<div class="hoverinfo"><strong>${d.name}</strong><br>${formatter(d.m1)}</div>`,
+    },
+    bubblesConfig: {
+      borderWidth: 1,
+      borderOpacity: 1,
+      borderColor: color,
+      popupOnHover: true,
+      radius: null,
+      popupTemplate: (geo, d) =>
+        `<div class="hoverinfo"><strong>${d.name}</strong><br>${formatter(d.m2)}</div>`,
+      fillOpacity: 0.5,
+      animate: true,
+      highlightOnHover: true,
+      highlightFillColor: color,
+      highlightBorderColor: 'black',
+      highlightBorderWidth: 2,
+      highlightBorderOpacity: 1,
+      highlightFillOpacity: 0.85,
+      exitDelay: 100,
+      key: JSON.stringify,
+    },
+  });
+
+  map.updateChoropleth(mapData);
+
+  if (showBubbles) {
+    map.bubbles(processedData);
+    div.selectAll('circle.datamaps-bubble').style('fill', color).style('stroke', color);
+  }
+}
+
+WorldMap.displayName = 'WorldMap';
+WorldMap.propTypes = propTypes;
+
+export default WorldMap;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts
new file mode 100644
index 0000000..866b6a7
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts
@@ -0,0 +1,111 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, formatSelectOptions, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['entity'],
+        [
+          {
+            name: 'country_fieldtype',
+            config: {
+              type: 'SelectControl',
+              label: t('Country Field Type'),
+              default: 'cca2',
+              choices: [
+                ['name', 'Full name'],
+                ['cioc', 'code International Olympic Committee (cioc)'],
+                ['cca2', 'code ISO 3166-1 alpha-2 (cca2)'],
+                ['cca3', 'code ISO 3166-1 alpha-3 (cca3)'],
+              ],
+              description: t(
+                'The country code standard that Superset should expect ' +
+                  'to find in the [country] column',
+              ),
+            },
+          },
+        ],
+        ['metric'],
+        ['adhoc_filters'],
+        ['row_limit'],
+      ],
+    },
+    {
+      label: t('Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'show_bubbles',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Bubbles'),
+              default: false,
+              renderTrigger: true,
+              description: t('Whether to display bubbles on top of countries'),
+            },
+          },
+        ],
+        ['secondary_metric'],
+        [
+          {
+            name: 'max_bubble_size',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Max Bubble Size'),
+              default: '25',
+              choices: formatSelectOptions(['5', '10', '15', '25', '50', '75', '100']),
+            },
+          },
+        ],
+        ['color_picker'],
+        ['linear_color_scheme'],
+      ],
+    },
+  ],
+  controlOverrides: {
+    entity: {
+      label: t('Country Column'),
+      description: t('3 letter code of the country'),
+    },
+    metric: {
+      label: t('Metric for Color'),
+      description: t('Metric that defines the color of the country'),
+    },
+    secondary_metric: {
+      label: t('Bubble Size'),
+      description: t('Metric that defines the size of the bubble'),
+    },
+    color_picker: {
+      label: t('Bubble Color'),
+    },
+    linear_color_scheme: {
+      label: t('Country Color Scheme'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/images/thumbnail.png
new file mode 100644
index 0000000..688bb5e3
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..677dba4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js
new file mode 100644
index 0000000..f9ab95f
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://datamaps.github.io/'],
+  description: '',
+  name: t('World Map'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class WorldMapChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('./ReactWorldMap'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/transformProps.js
new file mode 100644
index 0000000..ed10ba2
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/transformProps.js
@@ -0,0 +1,35 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { rgb } from 'd3-color';
+
+export default function transformProps(chartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { maxBubbleSize, showBubbles, linearColorScheme, colorPicker } = formData;
+  const { r, g, b } = colorPicker;
+
+  return {
+    data: queriesData[0].data,
+    width,
+    height,
+    maxBubbleSize: parseInt(maxBubbleSize, 10),
+    showBubbles,
+    linearColorScheme,
+    color: rgb(r, g, b).hex(),
+  };
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-world-map/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/README.md b/superset-frontend/plugins/legacy-preset-chart-big-number/README.md
new file mode 100644
index 0000000..7c88857
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/README.md
@@ -0,0 +1,46 @@
+## @superset-ui/legacy-preset-chart-big-number
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-big-number.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-preset-chart-big-number)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-preset-chart-big-number&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=plugins/superset-ui-legacy-preset-chart-big-number)
+
+This plugin provides Big Number for Superset.
+
+### Usage
+
+Import the preset and register. This will register the `BigNumber` and `BigNumberTotal` charts with
+key `big-number` and `big-number-total`, respectively.
+
+```js
+import { BigNumberChartPreset } from '@superset-ui/legacy-preset-chart-big-number';
+
+new BigNumberChartPreset().register();
+```
+
+or register charts one by one. Configure `key`, which can be any `string`, and register the plugin.
+This `key` will be used to lookup this chart throughout the app.
+
+```js
+import {
+  BigNumberChartPlugin,
+  BigNumberTotalChartPlugin,
+} from '@superset-ui/legacy-preset-chart-big-number';
+
+new BigNumberChartPlugin().configure({ key: 'big-number' }).register();
+new BigNumberTotalChartPlugin().configure({ key: 'big-number-total' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-big-number)
+for more details.
+
+```js
+<SuperChart
+  chartType="big-number"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/package.json b/superset-frontend/plugins/legacy-preset-chart-big-number/package.json
new file mode 100644
index 0000000..281b69e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/package.json
@@ -0,0 +1,42 @@
+{
+  "name": "@superset-ui/legacy-preset-chart-big-number",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - Big Number",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@data-ui/xy-chart": "^0.0.84",
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "@types/d3-color": "^1.2.2",
+    "@types/shortid": "^0.0.29",
+    "d3-color": "^1.2.3",
+    "shortid": "^2.2.14"
+  },
+  "peerDependencies": {
+    "react": "^15 || ^16"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/BigNumber.tsx b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/BigNumber.tsx
new file mode 100644
index 0000000..0e97b48
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/BigNumber.tsx
@@ -0,0 +1,358 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import shortid from 'shortid';
+import {
+  t,
+  getNumberFormatter,
+  NumberFormatter,
+  smartDateVerboseFormatter,
+  TimeFormatter,
+  computeMaxFontSize,
+  BRAND_COLOR,
+  styled,
+} from '@superset-ui/core';
+import { XYChart, AreaSeries, CrossHair, LinearGradient } from '@data-ui/xy-chart';
+
+const defaultNumberFormatter = getNumberFormatter();
+
+const CHART_MARGIN = {
+  top: 4,
+  right: 4,
+  bottom: 4,
+  left: 4,
+};
+
+const PROPORTION = {
+  // text size: proportion of the chart container sans trendline
+  HEADER: 0.3,
+  SUBHEADER: 0.125,
+  // trendline size: proportion of the whole chart container
+  TRENDLINE: 0.3,
+};
+
+type TimeSeriesDatum = {
+  x: number; // timestamp as a number
+  y: number | null;
+};
+
+export function renderTooltipFactory(
+  formatDate = smartDateVerboseFormatter,
+  formatValue = defaultNumberFormatter,
+) {
+  return function renderTooltip({ datum: { x, y } }: { datum: TimeSeriesDatum }) {
+    // even though `formatDate` supports timestamp as numbers, we need
+    // `new Date` to pass type check
+    return (
+      <div style={{ padding: '4px 8px' }}>
+        {formatDate(new Date(x))}
+        <br />
+        <strong>{y === null ? t('N/A') : formatValue(y)}</strong>
+      </div>
+    );
+  };
+}
+
+type BigNumberVisProps = {
+  className?: string;
+  width: number;
+  height: number;
+  bigNumber?: number | null;
+  bigNumberFallback?: TimeSeriesDatum;
+  formatNumber: NumberFormatter;
+  formatTime: TimeFormatter;
+  fromDatetime?: number;
+  toDatetime?: number;
+  headerFontSize: number;
+  subheader: string;
+  subheaderFontSize: number;
+  showTrendLine?: boolean;
+  startYAxisAtZero?: boolean;
+  timeRangeFixed?: boolean;
+  trendLineData?: TimeSeriesDatum[];
+  mainColor: string;
+};
+
+class BigNumberVis extends React.PureComponent<BigNumberVisProps, {}> {
+  private gradientId: string = shortid.generate();
+
+  static defaultProps = {
+    className: '',
+    formatNumber: (num: number) => String(num),
+    formatTime: smartDateVerboseFormatter.formatFunc,
+    headerFontSize: PROPORTION.HEADER,
+    mainColor: BRAND_COLOR,
+    showTrendLine: false,
+    startYAxisAtZero: true,
+    subheader: '',
+    subheaderFontSize: PROPORTION.SUBHEADER,
+    timeRangeFixed: false,
+  };
+
+  getClassName() {
+    const { className, showTrendLine, bigNumberFallback } = this.props;
+    const names = `superset-legacy-chart-big-number ${className} ${
+      bigNumberFallback ? 'is-fallback-value' : ''
+    }`;
+    if (showTrendLine) return names;
+    return `${names} no-trendline`;
+  }
+
+  createTemporaryContainer() {
+    const container = document.createElement('div');
+    container.className = this.getClassName();
+    container.style.position = 'absolute'; // so it won't disrupt page layout
+    container.style.opacity = '0'; // and not visible
+    return container;
+  }
+
+  renderFallbackWarning() {
+    const { bigNumberFallback, formatTime } = this.props;
+    if (!bigNumberFallback) return null;
+    return (
+      <span
+        className="alert alert-warning"
+        role="alert"
+        title={t(`Last available value seen on %s`, formatTime(bigNumberFallback.x))}
+      >
+        {t('Not up to date')}
+      </span>
+    );
+  }
+
+  renderHeader(maxHeight: number) {
+    const { bigNumber, formatNumber, width } = this.props;
+    const text = bigNumber === null ? t('No data') : formatNumber(bigNumber);
+
+    const container = this.createTemporaryContainer();
+    document.body.append(container);
+    const fontSize = computeMaxFontSize({
+      text,
+      maxWidth: width,
+      maxHeight,
+      className: 'header-line',
+      container,
+    });
+    container.remove();
+
+    return (
+      <div
+        className="header-line"
+        style={{
+          fontSize,
+          height: maxHeight,
+        }}
+      >
+        {text}
+      </div>
+    );
+  }
+
+  renderSubheader(maxHeight: number) {
+    const { bigNumber, subheader, width, bigNumberFallback } = this.props;
+    let fontSize = 0;
+
+    const NO_DATA_OR_HASNT_LANDED = t(
+      'No data after filtering or data is NULL for the latest time record',
+    );
+    const NO_DATA = t('Try applying different filters or ensuring your datasource has data');
+    let text = subheader;
+    if (bigNumber === null) {
+      text = bigNumberFallback ? NO_DATA : NO_DATA_OR_HASNT_LANDED;
+    }
+    if (text) {
+      const container = this.createTemporaryContainer();
+      document.body.append(container);
+      fontSize = computeMaxFontSize({
+        text,
+        maxWidth: width,
+        maxHeight,
+        className: 'subheader-line',
+        container,
+      });
+      container.remove();
+
+      return (
+        <div
+          className="subheader-line"
+          style={{
+            fontSize,
+            height: maxHeight,
+          }}
+        >
+          {text}
+        </div>
+      );
+    }
+    return null;
+  }
+
+  renderTrendline(maxHeight: number) {
+    const {
+      width,
+      trendLineData,
+      mainColor,
+      subheader,
+      startYAxisAtZero,
+      formatNumber,
+      formatTime,
+      fromDatetime,
+      timeRangeFixed,
+    } = this.props;
+
+    // if can't find any non-null values, no point rendering the trendline
+    if (!trendLineData?.some(d => d.y !== null)) {
+      return null;
+    }
+
+    // Apply a fixed X range if a time range is specified.
+    //
+    // XYChart checks the existence of `domain` property and decide whether to
+    // apply a domain or not, so it must not be `null` or `undefined`
+    const xScale: { type: string; domain?: number[] } = { type: 'timeUtc' };
+    const tooltipData = trendLineData && [...trendLineData];
+    if (tooltipData && timeRangeFixed && fromDatetime) {
+      const toDatetime = this.props.toDatetime ?? Date.now();
+      if (tooltipData[0].x > fromDatetime) {
+        tooltipData.unshift({
+          x: fromDatetime,
+          y: null,
+        });
+      }
+      if (tooltipData[tooltipData.length - 1].x < toDatetime) {
+        tooltipData.push({
+          x: toDatetime,
+          y: null,
+        });
+      }
+      xScale.domain = [fromDatetime, toDatetime];
+    }
+    return (
+      <XYChart
+        snapTooltipToDataX
+        ariaLabel={`Big number visualization ${subheader}`}
+        renderTooltip={renderTooltipFactory(formatTime, formatNumber)}
+        xScale={xScale}
+        yScale={{
+          type: 'linear',
+          includeZero: startYAxisAtZero,
+        }}
+        width={Math.floor(width)}
+        height={maxHeight}
+        margin={CHART_MARGIN}
+        eventTrigger="container"
+      >
+        <LinearGradient id={this.gradientId} from={mainColor} to="#fff" />
+        <AreaSeries data={tooltipData} fill={`url(#${this.gradientId})`} stroke={mainColor} />
+        <CrossHair
+          fullHeight
+          stroke={mainColor}
+          circleFill={mainColor}
+          circleStroke="#fff"
+          showHorizontalLine={false}
+          strokeDasharray="5,2"
+        />
+      </XYChart>
+    );
+  }
+
+  render() {
+    const { showTrendLine, height, headerFontSize, subheaderFontSize } = this.props;
+    const className = this.getClassName();
+
+    if (showTrendLine) {
+      const chartHeight = Math.floor(PROPORTION.TRENDLINE * height);
+      const allTextHeight = height - chartHeight;
+
+      return (
+        <div className={className}>
+          <div className="text-container" style={{ height: allTextHeight }}>
+            {this.renderFallbackWarning()}
+            {this.renderHeader(Math.ceil(headerFontSize * (1 - PROPORTION.TRENDLINE) * height))}
+            {this.renderSubheader(
+              Math.ceil(subheaderFontSize * (1 - PROPORTION.TRENDLINE) * height),
+            )}
+          </div>
+          {this.renderTrendline(chartHeight)}
+        </div>
+      );
+    }
+
+    return (
+      <div className={className} style={{ height }}>
+        {this.renderHeader(Math.ceil(headerFontSize * height))}
+        {this.renderSubheader(Math.ceil(subheaderFontSize * height))}
+      </div>
+    );
+  }
+}
+
+export default styled(BigNumberVis)`
+  font-family: ${({ theme }) => theme.typography.families.sansSerif};
+  position: relative;
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+
+  &.no-trendline .subheader-line {
+    padding-bottom: 0.3em;
+  }
+
+  .text-container {
+    display: flex;
+    flex-direction: column;
+    justify-content: center;
+    align-items: flex-start;
+    .alert {
+      font-size: ${({ theme }) => theme.typography.sizes.s};
+      margin: -0.5em 0 0.4em;
+      line-height: 1;
+      padding: 2px 4px 3px;
+      border-radius: 3px;
+    }
+  }
+
+  .header-line {
+    font-weight: ${({ theme }) => theme.typography.weights.normal};
+    position: relative;
+    line-height: 1em;
+    span {
+      position: absolute;
+      bottom: 0;
+    }
+  }
+
+  .subheader-line {
+    font-weight: ${({ theme }) => theme.typography.weights.light};
+    line-height: 1em;
+    padding-bottom: 0;
+  }
+
+  &.is-fallback-value {
+    .header-line,
+    .subheader-line {
+      opacity: 0.5;
+    }
+  }
+
+  .superset-data-ui-tooltip {
+    z-index: 1000;
+    background: #000;
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/controlPanel.tsx b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/controlPanel.tsx
new file mode 100644
index 0000000..5148ab9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/controlPanel.tsx
@@ -0,0 +1,172 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, formatSelectOptions, sections } from '@superset-ui/chart-controls';
+import React from 'react';
+import { headerFontSize, subheaderFontSize } from '../sharedControls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['metric'], ['adhoc_filters']],
+    },
+    {
+      label: t('Options'),
+      tabOverride: 'data',
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'compare_lag',
+            config: {
+              type: 'TextControl',
+              label: t('Comparison Period Lag'),
+              isInt: true,
+              description: t('Based on granularity, number of time periods to compare against'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'compare_suffix',
+            config: {
+              type: 'TextControl',
+              label: t('Comparison suffix'),
+              description: t('Suffix to apply after the percentage display'),
+            },
+          },
+        ],
+        ['y_axis_format'],
+        [
+          {
+            name: 'show_trend_line',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Trend Line'),
+              renderTrigger: true,
+              default: true,
+              description: t('Whether to display the trend line'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'start_y_axis_at_zero',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Start y-axis at 0'),
+              renderTrigger: true,
+              default: true,
+              description: t(
+                'Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'time_range_fixed',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Fix to selected Time Range'),
+              description: t(
+                'Fix the trend line to the full time range specified in case filtered results do not include the start or end dates',
+              ),
+              renderTrigger: true,
+              visibility(props) {
+                const { time_range: timeRange } = props.form_data;
+                // only display this option when a time range is selected
+                return !!timeRange && timeRange !== 'No filter';
+              },
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [['color_picker', null], [headerFontSize], [subheaderFontSize]],
+    },
+    {
+      label: t('Advanced Analytics'),
+      expanded: false,
+      controlSetRows: [
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Rolling Window')}</h1>],
+        [
+          {
+            name: 'rolling_type',
+            config: {
+              type: 'SelectControl',
+              label: t('Rolling Function'),
+              default: 'None',
+              choices: formatSelectOptions(['None', 'mean', 'sum', 'std', 'cumsum']),
+              description: t(
+                'Defines a rolling window function to apply, works along ' +
+                  'with the [Periods] text box',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'rolling_periods',
+            config: {
+              type: 'TextControl',
+              label: t('Periods'),
+              isInt: true,
+              description: t(
+                'Defines the size of the rolling window function, ' +
+                  'relative to the time granularity selected',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'min_periods',
+            config: {
+              type: 'TextControl',
+              label: t('Min Periods'),
+              isInt: true,
+              description: t(
+                'The minimum number of rolling periods required to show ' +
+                  'a value. For instance if you do a cumulative sum on 7 days ' +
+                  'you may want your "Min Period" to be 7, so that all data points ' +
+                  'shown are the total of 7 periods. This will hide the "ramp up" ' +
+                  'taking place over the first 7 periods',
+              ),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    y_axis_format: {
+      label: t('Number format'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnail.png
new file mode 100644
index 0000000..15aa9ba
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnailLarge.png
new file mode 100644
index 0000000..b7e3ea2
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts
new file mode 100644
index 0000000..8f2bdbf
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import controlPanel from './controlPanel';
+import transformProps, { BigNumberChartProps, BigNumberFormData } from './transformProps';
+import thumbnail from './images/thumbnail.png';
+
+const metadata = new ChartMetadata({
+  description: '',
+  name: t('Big Number with Trendline'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class BigNumberChartPlugin extends ChartPlugin<
+  BigNumberFormData,
+  BigNumberChartProps
+> {
+  constructor() {
+    super({
+      loadChart: () => import('./BigNumber'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts
new file mode 100644
index 0000000..eb2dc8e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts
@@ -0,0 +1,164 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import * as color from 'd3-color';
+import {
+  TimeGranularity,
+  getTimeFormatterForGranularity,
+  getNumberFormatter,
+  NumberFormats,
+  ChartProps,
+  LegacyQueryData,
+  QueryFormData,
+} from '@superset-ui/core';
+
+const TIME_COLUMN = '__timestamp';
+const formatPercentChange = getNumberFormatter(NumberFormats.PERCENT_SIGNED_1_POINT);
+
+// we trust both the x (time) and y (big number) to be numeric
+export interface BigNumberDatum {
+  [key: string]: number | null;
+}
+
+export type BigNumberFormData = QueryFormData & {
+  colorPicker?: {
+    r: number;
+    g: number;
+    b: number;
+  };
+  metric?:
+    | {
+        label: string;
+      }
+    | string;
+  compareLag?: string | number;
+  yAxisFormat?: string;
+  timeGrainSqla?: TimeGranularity;
+};
+
+export type BigNumberChartProps = ChartProps & {
+  formData: BigNumberFormData;
+  queriesData: (LegacyQueryData & {
+    data?: BigNumberDatum[];
+  })[];
+};
+
+export default function transformProps(chartProps: BigNumberChartProps) {
+  const { width, height, queriesData, formData } = chartProps;
+  const {
+    colorPicker,
+    compareLag: compareLag_,
+    compareSuffix = '',
+    headerFontSize,
+    metric = 'value',
+    showTrendLine,
+    startYAxisAtZero,
+    subheader = '',
+    subheaderFontSize,
+    timeGrainSqla: granularity,
+    vizType,
+    timeRangeFixed = false,
+  } = formData;
+  let { yAxisFormat } = formData;
+  const { data = [], from_dttm: fromDatetime, to_dttm: toDatetime } = queriesData[0];
+  const metricName = typeof metric === 'string' ? metric : metric.label;
+  const compareLag = Number(compareLag_) || 0;
+  const supportTrendLine = vizType === 'big_number';
+  const supportAndShowTrendLine = supportTrendLine && showTrendLine;
+  let formattedSubheader = subheader;
+
+  let mainColor;
+  if (colorPicker) {
+    const { r, g, b } = colorPicker;
+    mainColor = color.rgb(r, g, b).hex();
+  }
+
+  let trendLineData;
+  let percentChange = 0;
+  let bigNumber = data.length === 0 ? null : data[0][metricName];
+  let bigNumberFallback;
+
+  if (data.length > 0) {
+    const sortedData = (data as BigNumberDatum[])
+      .map(d => ({ x: d[TIME_COLUMN], y: d[metricName] }))
+      // sort in time descending order
+      .sort((a, b) => (a.x !== null && b.x !== null ? b.x - a.x : 0));
+
+    bigNumber = sortedData[0].y;
+    if (bigNumber === null) {
+      bigNumberFallback = sortedData.find(d => d.y !== null);
+      bigNumber = bigNumberFallback ? bigNumberFallback.y : null;
+    }
+
+    if (compareLag > 0) {
+      const compareIndex = compareLag;
+      if (compareIndex < sortedData.length) {
+        const compareValue = sortedData[compareIndex].y;
+        // compare values must both be non-nulls
+        if (bigNumber !== null && compareValue !== null && compareValue !== 0) {
+          percentChange = (bigNumber - compareValue) / Math.abs(compareValue);
+          formattedSubheader = `${formatPercentChange(percentChange)} ${compareSuffix}`;
+        }
+      }
+    }
+
+    if (supportTrendLine) {
+      // must reverse to ascending order otherwise it confuses tooltip triggers
+      sortedData.reverse();
+      trendLineData = supportAndShowTrendLine ? sortedData : undefined;
+    }
+  }
+
+  let className = '';
+  if (percentChange > 0) {
+    className = 'positive';
+  } else if (percentChange < 0) {
+    className = 'negative';
+  }
+
+  if (!yAxisFormat && chartProps.datasource && chartProps.datasource.metrics) {
+    chartProps.datasource.metrics.forEach(metricEntry => {
+      if (metricEntry.metric_name === metric && metricEntry.d3format) {
+        yAxisFormat = metricEntry.d3format;
+      }
+    });
+  }
+
+  const formatNumber = getNumberFormatter(yAxisFormat);
+  const formatTime = getTimeFormatterForGranularity(granularity);
+
+  return {
+    width,
+    height,
+    bigNumber,
+    bigNumberFallback,
+    className,
+    formatNumber,
+    formatTime,
+    headerFontSize,
+    subheaderFontSize,
+    mainColor,
+    showTrendLine: supportAndShowTrendLine,
+    startYAxisAtZero,
+    subheader: formattedSubheader,
+    trendLineData,
+    fromDatetime,
+    toDatetime,
+    timeRangeFixed,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/controlPanel.ts
new file mode 100644
index 0000000..a78c802
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/controlPanel.ts
@@ -0,0 +1,59 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+import { headerFontSize, subheaderFontSize } from '../sharedControls';
+
+export default {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['metric'], ['adhoc_filters']],
+    },
+    {
+      label: t('Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'subheader',
+            config: {
+              type: 'TextControl',
+              label: t('Subheader'),
+              description: t('Description text that shows up below your Big Number'),
+            },
+          },
+        ],
+        ['y_axis_format'],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [[headerFontSize], [subheaderFontSize]],
+    },
+  ],
+  controlOverrides: {
+    y_axis_format: {
+      label: t('Number format'),
+    },
+  },
+} as ControlPanelConfig;
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnail.png
new file mode 100644
index 0000000..bab5074
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnailLarge.png
new file mode 100644
index 0000000..ef66511
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts
new file mode 100644
index 0000000..c0efbc6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts
@@ -0,0 +1,46 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import controlPanel from './controlPanel';
+import transformProps, {
+  BigNumberChartProps,
+  BigNumberFormData,
+} from '../BigNumber/transformProps';
+import thumbnail from './images/thumbnail.png';
+
+const metadata = new ChartMetadata({
+  description: '',
+  name: t('Big Number'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class BigNumberTotalChartPlugin extends ChartPlugin<
+  BigNumberFormData,
+  BigNumberChartProps
+> {
+  constructor() {
+    super({
+      loadChart: () => import('../BigNumber/BigNumber'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/index.ts b/superset-frontend/plugins/legacy-preset-chart-big-number/src/index.ts
new file mode 100644
index 0000000..5110f67
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/index.ts
@@ -0,0 +1,3 @@
+export { default as BigNumberChartPlugin } from './BigNumber/index';
+export { default as BigNumberTotalChartPlugin } from './BigNumberTotal/index';
+export { default as BigNumberChartPreset } from './preset';
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/preset.ts b/superset-frontend/plugins/legacy-preset-chart-big-number/src/preset.ts
new file mode 100644
index 0000000..6e330e4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/preset.ts
@@ -0,0 +1,33 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { Preset } from '@superset-ui/core';
+import BigNumberChartPlugin from './BigNumber';
+import BigNumberTotalChartPlugin from './BigNumberTotal';
+
+export default class BigNumberChartPreset extends Preset {
+  constructor() {
+    super({
+      name: 'BigNumber charts',
+      plugins: [
+        new BigNumberChartPlugin().configure({ key: 'big_number' }),
+        new BigNumberTotalChartPlugin().configure({ key: 'big_number_total' }),
+      ],
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/sharedControls.ts b/superset-frontend/plugins/legacy-preset-chart-big-number/src/sharedControls.ts
new file mode 100644
index 0000000..de13c6c
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/sharedControls.ts
@@ -0,0 +1,90 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+// These are control configurations that are shared ONLY within the BigNumber viz plugin repo.
+import { t } from '@superset-ui/core';
+import { CustomControlItem } from '@superset-ui/chart-controls';
+
+export const headerFontSize: CustomControlItem = {
+  name: 'header_font_size',
+  config: {
+    type: 'SelectControl',
+    label: t('Big Number Font Size'),
+    renderTrigger: true,
+    clearable: false,
+    default: 0.4,
+    // Values represent the percentage of space a header should take
+    options: [
+      {
+        label: t('Tiny'),
+        value: 0.2,
+      },
+      {
+        label: t('Small'),
+        value: 0.3,
+      },
+      {
+        label: t('Normal'),
+        value: 0.4,
+      },
+      {
+        label: t('Large'),
+        value: 0.5,
+      },
+      {
+        label: t('Huge'),
+        value: 0.6,
+      },
+    ],
+  },
+};
+
+export const subheaderFontSize: CustomControlItem = {
+  name: 'subheader_font_size',
+  config: {
+    type: 'SelectControl',
+    label: t('Subheader Font Size'),
+    renderTrigger: true,
+    clearable: false,
+    default: 0.15,
+    // Values represent the percentage of space a subheader should take
+    options: [
+      {
+        label: t('Tiny'),
+        value: 0.125,
+      },
+      {
+        label: t('Small'),
+        value: 0.15,
+      },
+      {
+        label: t('Normal'),
+        value: 0.2,
+      },
+      {
+        label: t('Large'),
+        value: 0.3,
+      },
+      {
+        label: t('Huge'),
+        value: 0.4,
+      },
+    ],
+  },
+};
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/src/types/external.d.ts b/superset-frontend/plugins/legacy-preset-chart-big-number/src/types/external.d.ts
new file mode 100644
index 0000000..e696397
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/src/types/external.d.ts
@@ -0,0 +1,20 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+declare module '@data-ui/xy-chart';
+declare module '*.png';
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts b/superset-frontend/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts
new file mode 100644
index 0000000..a2a0fb6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts
@@ -0,0 +1,126 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { DatasourceType, TimeGranularity } from '@superset-ui/core';
+import transformProps, {
+  BignumberChartProps,
+  BigNumberDatum,
+} from '../src/BigNumber/transformProps';
+
+const formData = {
+  metric: 'value',
+  colorPicker: {
+    r: 0,
+    g: 122,
+    b: 135,
+    a: 1,
+  },
+  compareLag: 1,
+  timeGrainSqla: 'P0.25Y' as TimeGranularity,
+  compareSuffix: 'over last quarter',
+  vizType: 'big_number',
+  yAxisFormat: '.3s',
+};
+
+function generateProps(
+  data: BigNumberDatum[],
+  extraFormData = {},
+  extraQueryData = {},
+): BignumberChartProps {
+  return {
+    width: 200,
+    height: 500,
+    annotationData: {},
+    datasource: {
+      id: 0,
+      name: '',
+      type: DatasourceType.Table,
+      columns: [],
+      metrics: [],
+      columnFormats: {},
+      verboseMap: {},
+    },
+    rawDatasource: {},
+    rawFormData: {},
+    hooks: {},
+    initialValues: {},
+    formData: {
+      ...formData,
+      ...extraFormData,
+    },
+    queriesData: [
+      {
+        data,
+        ...extraQueryData,
+      },
+    ],
+  };
+}
+
+describe('BigNumber', () => {
+  const props = generateProps(
+    [
+      {
+        __timestamp: 0,
+        value: 1.2345,
+      },
+      {
+        __timestamp: 100,
+        value: null,
+      },
+    ],
+    { showTrendLine: true },
+  );
+
+  describe('transformProps()', () => {
+    it('should fallback and format time', () => {
+      const transformed = transformProps(props);
+      // the first item is the last item sorted by __timestamp
+      const lastDatum = transformed.trendLineData?.pop();
+
+      // should use last available value
+      expect(lastDatum?.x).toStrictEqual(100);
+      expect(lastDatum?.y).toBeNull();
+
+      // should note this is a fallback
+      expect(transformed.bigNumber).toStrictEqual(1.2345);
+      expect(transformed.bigNumberFallback).not.toBeNull();
+
+      // should successfully formatTime by ganularity
+      expect(transformed.formatTime(new Date('2020-01-01'))).toStrictEqual('2020 Q1');
+    });
+
+    it('should respect datasource d3 format', () => {
+      const propsWithDatasource = {
+        ...props,
+        datasource: {
+          ...props.datasource,
+          metrics: [
+            {
+              label: 'value',
+              metric_name: 'value',
+              d3format: '.2f',
+            },
+          ],
+        },
+      };
+      const transformed = transformProps(propsWithDatasource);
+      expect(transformed.formatNumber(transformed.bigNumber)).toStrictEqual('1.23');
+    });
+  });
+});
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/test/tsconfig.json b/superset-frontend/plugins/legacy-preset-chart-big-number/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-preset-chart-big-number/tsconfig.json b/superset-frontend/plugins/legacy-preset-chart-big-number/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-big-number/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/README.md b/superset-frontend/plugins/legacy-preset-chart-nvd3/README.md
new file mode 100644
index 0000000..fbe3ce2
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/README.md
@@ -0,0 +1,42 @@
+## @superset-ui/legacy-preset-chart-nvd3
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-nvd3.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-preset-chart-nvd3)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-preset-chart-nvd3&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-preset-chart-nvd3)
+
+This plugin provides Big Number for Superset.
+
+### Usage
+
+Import the preset and register. This will register all the chart plugins under nvd3.
+
+```js
+import { NVD3ChartPreset } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new NVD3ChartPreset().register();
+```
+
+or register charts one by one. Configure `key`, which can be any `string`, and register the plugin.
+This `key` will be used to lookup this chart throughout the app.
+
+```js
+import { AreaChartPlugin, LineChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3';
+
+new AreaChartPlugin().configure({ key: 'area' }).register();
+new LineChartPlugin().configure({ key: 'line' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-nvd3)
+for more details.
+
+```js
+<SuperChart
+  chartType="line"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/package.json b/superset-frontend/plugins/legacy-preset-chart-nvd3/package.json
new file mode 100644
index 0000000..38065aa
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/package.json
@@ -0,0 +1,48 @@
+{
+  "name": "@superset-ui/legacy-preset-chart-nvd3",
+  "version": "0.17.5",
+  "description": "Superset Legacy Chart - NVD3",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@data-ui/xy-chart": "^0.0.84",
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "d3": "^3.5.17",
+    "d3-tip": "^0.9.1",
+    "dompurify": "^2.0.6",
+    "fast-safe-stringify": "^2.0.6",
+    "lodash": "^4.17.11",
+    "mathjs": "^8.0.1",
+    "moment": "^2.20.1",
+    "nvd3-fork": "^2.0.5",
+    "prop-types": "^15.6.2",
+    "urijs": "^1.18.10"
+  },
+  "peerDependencies": {
+    "react": "^15 || ^16"
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts
new file mode 100644
index 0000000..204770f
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts
@@ -0,0 +1,92 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+import {
+  lineInterpolation,
+  showBrush,
+  showLegend,
+  showControls,
+  xAxisLabel,
+  bottomMargin,
+  xTicksLayout,
+  xAxisFormat,
+  yLogScale,
+  yAxisBounds,
+  xAxisShowMinmax,
+  richTooltip,
+  timeSeriesSection,
+} from '../NVD3Controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    timeSeriesSection[0],
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        [showBrush, showLegend],
+        [
+          lineInterpolation,
+          {
+            name: 'stacked_style',
+            config: {
+              type: 'SelectControl',
+              label: t('Stacked Style'),
+              renderTrigger: true,
+              choices: [
+                ['stack', 'stack'],
+                ['stream', 'stream'],
+                ['expand', 'expand'],
+              ],
+              default: 'stack',
+              description: '',
+            },
+          },
+        ],
+        ['color_scheme', 'label_colors'],
+        [richTooltip, showControls],
+      ],
+    },
+    {
+      label: t('X Axis'),
+      tabOverride: 'customize',
+      expanded: true,
+      controlSetRows: [
+        [xAxisLabel, bottomMargin],
+        [xTicksLayout, xAxisFormat],
+        [xAxisShowMinmax, null],
+      ],
+    },
+    {
+      label: t('Y Axis'),
+      tabOverride: 'customize',
+      expanded: true,
+      controlSetRows: [
+        ['y_axis_format', yAxisBounds],
+        [yLogScale, null],
+      ],
+    },
+    timeSeriesSection[1],
+    sections.annotations,
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnail.png
new file mode 100644
index 0000000..270ed23
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnailLarge.png
new file mode 100644
index 0000000..d8b23be
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js
new file mode 100644
index 0000000..fd41515
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import { ANNOTATION_TYPES } from '../vendor/superset/AnnotationTypes';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: '',
+  name: t('Area Chart'),
+  supportedAnnotationTypes: [ANNOTATION_TYPES.INTERVAL, ANNOTATION_TYPES.EVENT],
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class AreaChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts
new file mode 100644
index 0000000..c9e6595
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts
@@ -0,0 +1,92 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+import {
+  lineInterpolation,
+  showBrush,
+  showLegend,
+  showControls,
+  xAxisLabel,
+  yAxisLabel,
+  bottomMargin,
+  xTicksLayout,
+  xAxisFormat,
+  yLogScale,
+  yAxisBounds,
+  xAxisShowMinmax,
+  yAxisShowMinmax,
+  richTooltip,
+  showBarValue,
+  barStacked,
+  reduceXTicks,
+  leftMargin,
+  timeSeriesSection,
+} from '../NVD3Controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    timeSeriesSection[0],
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme'],
+        ['label_colors'],
+        [showBrush],
+        [showLegend],
+        [showBarValue],
+        [richTooltip],
+        [barStacked],
+        [lineInterpolation],
+        [showControls],
+        [bottomMargin],
+      ],
+    },
+    {
+      label: t('X Axis'),
+      expanded: true,
+      controlSetRows: [
+        [xAxisLabel],
+        [bottomMargin],
+        [xTicksLayout],
+        [xAxisFormat],
+        [xAxisShowMinmax],
+        [reduceXTicks],
+      ],
+    },
+    {
+      label: t('Y Axis'),
+      expanded: true,
+      controlSetRows: [
+        [yAxisLabel],
+        [leftMargin],
+        [yAxisShowMinmax],
+        [yLogScale],
+        ['y_axis_format'],
+        [yAxisBounds],
+      ],
+    },
+    timeSeriesSection[1],
+    sections.annotations,
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnail.png
new file mode 100644
index 0000000..e3ef120
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnailLarge.png
new file mode 100644
index 0000000..35c176e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js
new file mode 100644
index 0000000..9a14d5a
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import { ANNOTATION_TYPES } from '../vendor/superset/AnnotationTypes';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: 'A bar chart where the x axis is time',
+  name: t('Time-series Bar Chart'),
+  supportedAnnotationTypes: [ANNOTATION_TYPES.INTERVAL, ANNOTATION_TYPES.EVENT],
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class BarChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnail.png
new file mode 100644
index 0000000..ece94d0
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnailLarge.png
new file mode 100644
index 0000000..35eff28
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js
new file mode 100644
index 0000000..1f5a5e9
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js
@@ -0,0 +1,39 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: '',
+  name: t('Box Plot'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class BoxPlotChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts
new file mode 100644
index 0000000..5061038
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts
@@ -0,0 +1,126 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import {
+  ControlPanelConfig,
+  formatSelectOptions,
+  D3_FORMAT_OPTIONS,
+  sections,
+} from '@superset-ui/chart-controls';
+import {
+  showLegend,
+  xAxisLabel,
+  yAxisLabel,
+  bottomMargin,
+  xTicksLayout,
+  xAxisFormat,
+  yLogScale,
+  xAxisShowMinmax,
+  yAxisShowMinmax,
+  leftMargin,
+} from '../NVD3Controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        [],
+        ['series', 'entity'],
+        ['x'],
+        ['y'],
+        ['adhoc_filters'],
+        ['size'],
+        [
+          {
+            name: 'max_bubble_size',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Max Bubble Size'),
+              default: '25',
+              choices: formatSelectOptions(['5', '10', '15', '25', '50', '75', '100']),
+            },
+          },
+        ],
+        ['limit', null],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      tabOverride: 'customize',
+      controlSetRows: [
+        ['color_scheme', 'label_colors'],
+        [showLegend, null],
+      ],
+    },
+    {
+      label: t('X Axis'),
+      expanded: true,
+      tabOverride: 'customize',
+      controlSetRows: [
+        [xAxisLabel, leftMargin],
+        [
+          {
+            name: xAxisFormat.name,
+            config: {
+              ...xAxisFormat.config,
+              default: 'SMART_NUMBER',
+              choices: D3_FORMAT_OPTIONS,
+            },
+          },
+          xTicksLayout,
+        ],
+        [
+          {
+            name: 'x_log_scale',
+            config: {
+              type: 'CheckboxControl',
+              label: t('X Log Scale'),
+              default: false,
+              renderTrigger: true,
+              description: t('Use a log scale for the X-axis'),
+            },
+          },
+          xAxisShowMinmax,
+        ],
+      ],
+    },
+    {
+      label: t('Y Axis'),
+      expanded: true,
+      tabOverride: 'customize',
+      controlSetRows: [
+        [yAxisLabel, bottomMargin],
+        ['y_axis_format', null],
+        [yLogScale, yAxisShowMinmax],
+      ],
+    },
+  ],
+  controlOverrides: {
+    color_scheme: {
+      renderTrigger: false,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnail.png
new file mode 100644
index 0000000..c27ba47
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnailLarge.png
new file mode 100644
index 0000000..c112768
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js
new file mode 100644
index 0000000..3254bca
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: '',
+  name: t('Bubble Chart'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class BubbleChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts
new file mode 100644
index 0000000..7f82e33
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts
@@ -0,0 +1,99 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['metric'], ['adhoc_filters']],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'ranges',
+            config: {
+              type: 'TextControl',
+              label: t('Ranges'),
+              default: '',
+              description: t('Ranges to highlight with shading'),
+            },
+          },
+          {
+            name: 'range_labels',
+            config: {
+              type: 'TextControl',
+              label: t('Range labels'),
+              default: '',
+              description: t('Labels for the ranges'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'markers',
+            config: {
+              type: 'TextControl',
+              label: t('Markers'),
+              default: '',
+              description: t('List of values to mark with triangles'),
+            },
+          },
+          {
+            name: 'marker_labels',
+            config: {
+              type: 'TextControl',
+              label: t('Marker labels'),
+              default: '',
+              description: t('Labels for the markers'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'marker_lines',
+            config: {
+              type: 'TextControl',
+              label: t('Marker lines'),
+              default: '',
+              description: t('List of values to mark with lines'),
+            },
+          },
+          {
+            name: 'marker_line_labels',
+            config: {
+              type: 'TextControl',
+              label: t('Marker line labels'),
+              default: '',
+              description: t('Labels for the marker lines'),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnail.png
new file mode 100644
index 0000000..38e9a73
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnailLarge.png
new file mode 100644
index 0000000..5829117
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js
new file mode 100644
index 0000000..8eacde7
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: '',
+  name: t('Bullet Chart'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class BulletChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts
new file mode 100644
index 0000000..0a68fe8
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts
@@ -0,0 +1,67 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+import {
+  xAxisLabel,
+  yAxisLabel,
+  bottomMargin,
+  xTicksLayout,
+  xAxisFormat,
+  yLogScale,
+  yAxisBounds,
+  xAxisShowMinmax,
+  yAxisShowMinmax,
+  leftMargin,
+  timeSeriesSection,
+} from '../NVD3Controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    timeSeriesSection[0],
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [['color_scheme', 'label_colors']],
+    },
+    {
+      label: t('X Axis'),
+      expanded: true,
+      controlSetRows: [
+        [xAxisLabel, bottomMargin],
+        [xTicksLayout, xAxisFormat],
+        [xAxisShowMinmax, null],
+      ],
+    },
+    {
+      label: t('Y Axis'),
+      expanded: true,
+      controlSetRows: [
+        [yAxisLabel, leftMargin],
+        [yAxisShowMinmax, yLogScale],
+        ['y_axis_format', yAxisBounds],
+      ],
+    },
+    timeSeriesSection[1],
+    sections.annotations,
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnail.png
new file mode 100644
index 0000000..df29a81
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnailLarge.png
new file mode 100644
index 0000000..86b3806
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js
new file mode 100644
index 0000000..1ed5d37
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: t('A line chart component where you can compare the % change over time'),
+  name: t('Time-series Percent Change'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class CompareChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts
new file mode 100644
index 0000000..43cf59d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts
@@ -0,0 +1,106 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+import {
+  showLegend,
+  showControls,
+  xAxisLabel,
+  bottomMargin,
+  xTicksLayout,
+  showBarValue,
+  barStacked,
+  reduceXTicks,
+  yAxisLabel,
+  yAxisShowMinmax,
+  yAxisBounds,
+} from '../NVD3Controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metrics'],
+        ['adhoc_filters'],
+        ['groupby'],
+        ['columns'],
+        ['row_limit'],
+        [
+          {
+            name: 'contribution',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Contribution'),
+              default: false,
+              description: t('Compute the contribution to the total'),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme'],
+        ['label_colors'],
+        [showLegend],
+        [showBarValue],
+        [barStacked],
+        [
+          {
+            name: 'order_bars',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Sort Bars'),
+              default: false,
+              renderTrigger: true,
+              description: t('Sort bars by x labels.'),
+            },
+          },
+        ],
+        ['y_axis_format'],
+        [yAxisLabel],
+        [showControls, null],
+        [yAxisShowMinmax],
+        [yAxisBounds],
+      ],
+    },
+    {
+      label: t('X Axis'),
+      expanded: true,
+      controlSetRows: [[xAxisLabel], [bottomMargin], [xTicksLayout], [reduceXTicks]],
+    },
+  ],
+  controlOverrides: {
+    groupby: {
+      label: t('Series'),
+      validators: [validateNonEmpty],
+    },
+    columns: {
+      label: t('Breakdowns'),
+      description: t('Defines how each series is broken down'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnail.png
new file mode 100644
index 0000000..8e9e6b6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnailLarge.png
new file mode 100644
index 0000000..bfaeeb2
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js
new file mode 100644
index 0000000..8106ae2
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: t('A bar chart where the x axis is time'),
+  name: t('Bar Chart'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class DistBarChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts
new file mode 100644
index 0000000..78f33e5
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts
@@ -0,0 +1,67 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+import {
+  xAxisFormat,
+  yAxis2Format,
+  showLegend,
+  yAxisBounds,
+  yAxisShowMinmax,
+  yAxis2Bounds,
+  yAxis2ShowMinmax,
+} from '../NVD3Controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [['color_scheme', 'label_colors'], [showLegend], [xAxisFormat]],
+    },
+    {
+      label: t('Y Axis 1'),
+      expanded: true,
+      controlSetRows: [['metric', 'y_axis_format'], [yAxisShowMinmax], [yAxisBounds]],
+    },
+    {
+      label: t('Y Axis 2'),
+      expanded: true,
+      controlSetRows: [['metric_2', yAxis2Format], [yAxis2ShowMinmax], [yAxis2Bounds]],
+    },
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['adhoc_filters']],
+    },
+    sections.annotations,
+  ],
+  controlOverrides: {
+    metric: {
+      label: t('Left Axis Metric'),
+      description: t('Choose a metric for left axis'),
+    },
+    y_axis_format: {
+      label: t('Left Axis Format'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnail.png
new file mode 100644
index 0000000..a62ecfb
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnailLarge.png
new file mode 100644
index 0000000..3c11fe4
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js
new file mode 100644
index 0000000..6e3a849
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: '',
+  name: t('Dual Line Chart'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class DualLineChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts
new file mode 100644
index 0000000..7815375
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts
@@ -0,0 +1,102 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+import {
+  lineInterpolation,
+  showBrush,
+  showLegend,
+  xAxisLabel,
+  bottomMargin,
+  xTicksLayout,
+  xAxisFormat,
+  yLogScale,
+  yAxisBounds,
+  yAxisLabel,
+  xAxisShowMinmax,
+  yAxisShowMinmax,
+  richTooltip,
+  leftMargin,
+  showMarkers,
+  timeSeriesSection,
+} from '../NVD3Controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    timeSeriesSection[0],
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme'],
+        ['label_colors'],
+        [showBrush],
+        [
+          {
+            name: 'send_time_range',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Propagate'),
+              renderTrigger: true,
+              default: false,
+              description: t('Send range filter events to other charts'),
+            },
+          },
+        ],
+        [showLegend],
+        [richTooltip],
+        [showMarkers],
+        [lineInterpolation],
+      ],
+    },
+    {
+      label: t('X Axis'),
+      expanded: true,
+      controlSetRows: [
+        [xAxisLabel],
+        [bottomMargin],
+        [xTicksLayout],
+        [xAxisFormat],
+        [xAxisShowMinmax, null],
+      ],
+    },
+    {
+      label: t('Y Axis'),
+      expanded: true,
+      controlSetRows: [
+        [yAxisLabel],
+        [leftMargin],
+        [yAxisShowMinmax],
+        [yLogScale],
+        ['y_axis_format'],
+        [yAxisBounds],
+      ],
+    },
+    timeSeriesSection[1],
+    sections.annotations,
+  ],
+  controlOverrides: {
+    row_limit: {
+      default: 50000,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnail.png
new file mode 100644
index 0000000..61a0d86
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnailLarge.png
new file mode 100644
index 0000000..8cae308
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js
new file mode 100644
index 0000000..d087184
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js
@@ -0,0 +1,49 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import { ANNOTATION_TYPES } from '../vendor/superset/AnnotationTypes';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  canBeAnnotationTypes: [ANNOTATION_TYPES.TIME_SERIES],
+  credits: ['http://nvd3.org'],
+  description: '',
+  name: t('Line Chart'),
+  supportedAnnotationTypes: [
+    ANNOTATION_TYPES.TIME_SERIES,
+    ANNOTATION_TYPES.INTERVAL,
+    ANNOTATION_TYPES.EVENT,
+    ANNOTATION_TYPES.FORMULA,
+  ],
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class LineChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts
new file mode 100644
index 0000000..f6b9c7d
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts
@@ -0,0 +1,169 @@
+/* eslint-disable camelcase */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+import {
+  lineInterpolation,
+  showLegend,
+  xAxisLabel,
+  bottomMargin,
+  xTicksLayout,
+  xAxisFormat,
+  xAxisShowMinmax,
+  showMarkers,
+  yAxis2Format,
+  yAxisShowMinmax,
+  yAxisBounds,
+  yAxis2ShowMinmax,
+  yAxis2Bounds,
+} from '../NVD3Controls';
+
+export type Result = {
+  id: unknown;
+  slice_name: string;
+};
+
+export type Data = {
+  result?: Result[];
+};
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    {
+      ...sections.legacyRegularTime,
+      controlSetRows: [['time_range']],
+    },
+    {
+      label: t('Chart Options'),
+      tabOverride: 'customize',
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme', 'label_colors'],
+        [
+          {
+            name: 'prefix_metric_with_slice_name',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Prefix metric name with slice name'),
+              default: false,
+              renderTrigger: true,
+            },
+          },
+          null,
+        ],
+        [showLegend],
+        [showMarkers],
+        [lineInterpolation, null],
+      ],
+    },
+    {
+      label: t('X Axis'),
+      expanded: true,
+      controlSetRows: [
+        [xAxisLabel],
+        [bottomMargin],
+        [xTicksLayout],
+        [xAxisFormat],
+        [xAxisShowMinmax, null],
+      ],
+    },
+    {
+      label: t('Y Axis Left'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'line_charts',
+            config: {
+              type: 'SelectAsyncControl',
+              multi: true,
+              label: t('Left Axis chart(s)'),
+              validators: [validateNonEmpty],
+              default: [],
+              description: t('Choose one or more charts for left axis'),
+              dataEndpoint: '/sliceasync/api/read?_flt_0_viz_type=line&_flt_7_viz_type=line_multi',
+              placeholder: t('Select charts'),
+              onAsyncErrorMessage: t('Error while fetching charts'),
+              mutator: (data?: Data) => {
+                if (!data || !data.result) {
+                  return [];
+                }
+                return data.result.map(o => ({
+                  value: o.id,
+                  label: o.slice_name,
+                }));
+              },
+            },
+          },
+        ],
+        ['y_axis_format'],
+        [yAxisShowMinmax],
+        [yAxisBounds],
+      ],
+    },
+    {
+      label: t('Y Axis Right'),
+      expanded: false,
+      controlSetRows: [
+        [
+          {
+            name: 'line_charts_2',
+            config: {
+              type: 'SelectAsyncControl',
+              multi: true,
+              label: t('Right Axis chart(s)'),
+              validators: [],
+              default: [],
+              description: t('Choose one or more charts for right axis'),
+              dataEndpoint: '/sliceasync/api/read?_flt_0_viz_type=line&_flt_7_viz_type=line_multi',
+              placeholder: t('Select charts'),
+              onAsyncErrorMessage: t('Error while fetching charts'),
+              mutator: (data: Data) => {
+                if (!data || !data.result) {
+                  return [];
+                }
+                return data.result.map(o => ({
+                  value: o.id,
+                  label: o.slice_name,
+                }));
+              },
+            },
+          },
+        ],
+        [yAxis2Format],
+        [yAxis2ShowMinmax],
+        [yAxis2Bounds],
+      ],
+    },
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['adhoc_filters']],
+    },
+    sections.annotations,
+  ],
+  controlOverrides: {
+    y_axis_format: {
+      label: t('Left Axis Format'),
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnail.png
new file mode 100644
index 0000000..dd5b396
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnailLarge.png
new file mode 100644
index 0000000..2f1bc85
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js
new file mode 100644
index 0000000..2172037
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: '',
+  name: t('Multiple Line Charts'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class LineChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx
new file mode 100644
index 0000000..e43b224
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx
@@ -0,0 +1,503 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/jsx-key */
+
+import React from 'react';
+import { t } from '@superset-ui/core';
+import {
+  ControlPanelSectionConfig,
+  CustomControlItem,
+  formatSelectOptions,
+  D3_TIME_FORMAT_OPTIONS,
+  D3_FORMAT_DOCS,
+  D3_FORMAT_OPTIONS,
+} from '@superset-ui/chart-controls';
+
+/*
+  Plugins in question:
+
+  AreaChartPlugin,
+  BarChartPlugin,
+  BubbleChartPlugin,
+  BulletChartPlugin,
+  CompareChartPlugin,
+  DistBarChartPlugin,
+  DualLineChartPlugin,
+  LineChartPlugin,
+  LineMultiChartPlugin,
+  PieChartPlugin,
+  TimePivotChartPlugin,
+*/
+
+export const yAxis2Format: CustomControlItem = {
+  name: 'y_axis_2_format',
+  config: {
+    type: 'SelectControl',
+    freeForm: true,
+    label: t('Right Axis Format'),
+    default: 'SMART_NUMBER',
+    choices: D3_FORMAT_OPTIONS,
+    description: D3_FORMAT_DOCS,
+  },
+};
+
+export const showMarkers: CustomControlItem = {
+  name: 'show_markers',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Show Markers'),
+    renderTrigger: true,
+    default: false,
+    description: t('Show data points as circle markers on the lines'),
+  },
+};
+
+export const leftMargin: CustomControlItem = {
+  name: 'left_margin',
+  config: {
+    type: 'SelectControl',
+    freeForm: true,
+    clearable: false,
+    label: t('Left Margin'),
+    choices: formatSelectOptions(['auto', 50, 75, 100, 125, 150, 200]),
+    default: 'auto',
+    renderTrigger: true,
+    description: t('Left margin, in pixels, allowing for more room for axis labels'),
+  },
+};
+
+export const yAxisShowMinmax: CustomControlItem = {
+  name: 'y_axis_showminmax',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Y bounds'),
+    renderTrigger: true,
+    default: false,
+    description: t('Whether to display the min and max values of the Y-axis'),
+  },
+};
+
+export const yAxis2ShowMinmax: CustomControlItem = {
+  name: 'y_axis_2_showminmax',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Y 2 bounds'),
+    renderTrigger: true,
+    default: false,
+    description: t('Whether to display the min and max values of the Y-axis'),
+  },
+};
+
+export const lineInterpolation: CustomControlItem = {
+  name: 'line_interpolation',
+  config: {
+    type: 'SelectControl',
+    label: t('Line Style'),
+    renderTrigger: true,
+    choices: formatSelectOptions([
+      'linear',
+      'basis',
+      'cardinal',
+      'monotone',
+      'step-before',
+      'step-after',
+    ]),
+    default: 'linear',
+    description: t('Line interpolation as defined by d3.js'),
+  },
+};
+
+export const showBrush: CustomControlItem = {
+  name: 'show_brush',
+  config: {
+    type: 'SelectControl',
+    label: t('Show Range Filter'),
+    renderTrigger: true,
+    clearable: false,
+    default: 'auto',
+    choices: [
+      ['yes', 'Yes'],
+      ['no', 'No'],
+      ['auto', 'Auto'],
+    ],
+    description: t('Whether to display the time range interactive selector'),
+  },
+};
+
+export const showLegend: CustomControlItem = {
+  name: 'show_legend',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Legend'),
+    renderTrigger: true,
+    default: false,
+    description: t('Whether to display the legend (toggles)'),
+  },
+};
+
+export const showControls: CustomControlItem = {
+  name: 'show_controls',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Extra Controls'),
+    renderTrigger: true,
+    default: false,
+    description: t(
+      'Whether to show extra controls or not. Extra controls ' +
+        'include things like making mulitBar charts stacked ' +
+        'or side by side.',
+    ),
+  },
+};
+
+export const xAxisLabel: CustomControlItem = {
+  name: 'x_axis_label',
+  config: {
+    type: 'TextControl',
+    label: t('X Axis Label'),
+    renderTrigger: true,
+    default: '',
+  },
+};
+
+export const bottomMargin: CustomControlItem = {
+  name: 'bottom_margin',
+  config: {
+    type: 'SelectControl',
+    clearable: false,
+    freeForm: true,
+    label: t('Bottom Margin'),
+    choices: formatSelectOptions(['auto', 50, 75, 100, 125, 150, 200]),
+    default: 'auto',
+    renderTrigger: true,
+    description: t('Bottom margin, in pixels, allowing for more room for axis labels'),
+  },
+};
+
+export const xTicksLayout: CustomControlItem = {
+  name: 'x_ticks_layout',
+  config: {
+    type: 'SelectControl',
+    label: t('X Tick Layout'),
+    choices: formatSelectOptions(['auto', 'flat', '45°', 'staggered']),
+    default: 'auto',
+    clearable: false,
+    renderTrigger: true,
+    description: t('The way the ticks are laid out on the X-axis'),
+  },
+};
+
+export const xAxisFormat: CustomControlItem = {
+  name: 'x_axis_format',
+  config: {
+    type: 'SelectControl',
+    freeForm: true,
+    label: t('X Axis Format'),
+    renderTrigger: true,
+    choices: D3_TIME_FORMAT_OPTIONS,
+    default: 'smart_date',
+    description: D3_FORMAT_DOCS,
+  },
+};
+
+export const yLogScale: CustomControlItem = {
+  name: 'y_log_scale',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Y Log Scale'),
+    default: false,
+    renderTrigger: true,
+    description: t('Use a log scale for the Y-axis'),
+  },
+};
+
+export const yAxisBounds: CustomControlItem = {
+  name: 'y_axis_bounds',
+  config: {
+    type: 'BoundsControl',
+    label: t('Y Axis Bounds'),
+    renderTrigger: true,
+    default: [null, null],
+    description: t(
+      'Bounds for the Y-axis. When left empty, the bounds are ' +
+        'dynamically defined based on the min/max of the data. Note that ' +
+        "this feature will only expand the axis range. It won't " +
+        "narrow the data's extent.",
+    ),
+  },
+};
+
+export const yAxis2Bounds: CustomControlItem = {
+  name: 'y_axis_2_bounds',
+  config: {
+    type: 'BoundsControl',
+    label: t('Y Axis 2 Bounds'),
+    renderTrigger: true,
+    default: [null, null],
+    description: t(
+      'Bounds for the Y-axis. When left empty, the bounds are ' +
+        'dynamically defined based on the min/max of the data. Note that ' +
+        "this feature will only expand the axis range. It won't " +
+        "narrow the data's extent.",
+    ),
+  },
+};
+
+export const xAxisShowMinmax: CustomControlItem = {
+  name: 'x_axis_showminmax',
+  config: {
+    type: 'CheckboxControl',
+    label: t('X bounds'),
+    renderTrigger: true,
+    default: false,
+    description: t('Whether to display the min and max values of the X-axis'),
+  },
+};
+
+export const richTooltip: CustomControlItem = {
+  name: 'rich_tooltip',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Rich Tooltip'),
+    renderTrigger: true,
+    default: true,
+    description: t('The rich tooltip shows a list of all series for that point in time'),
+  },
+};
+
+export const showBarValue: CustomControlItem = {
+  name: 'show_bar_value',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Bar Values'),
+    default: false,
+    renderTrigger: true,
+    description: t('Show the value on top of the bar'),
+  },
+};
+
+export const barStacked: CustomControlItem = {
+  name: 'bar_stacked',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Stacked Bars'),
+    renderTrigger: true,
+    default: false,
+    description: null,
+  },
+};
+
+export const reduceXTicks: CustomControlItem = {
+  name: 'reduce_x_ticks',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Reduce X ticks'),
+    renderTrigger: true,
+    default: false,
+    description: t(
+      'Reduces the number of X-axis ticks to be rendered. ' +
+        'If true, the x-axis will not overflow and labels may be ' +
+        'missing. If false, a minimum width will be applied ' +
+        'to columns and the width may overflow into an ' +
+        'horizontal scroll.',
+    ),
+  },
+};
+
+export const yAxisLabel: CustomControlItem = {
+  name: 'y_axis_label',
+  config: {
+    type: 'TextControl',
+    label: t('Y Axis Label'),
+    renderTrigger: true,
+    default: '',
+  },
+};
+
+export const timeSeriesSection: ControlPanelSectionConfig[] = [
+  {
+    label: t('Query'),
+    expanded: true,
+    controlSetRows: [
+      ['metrics'],
+      ['adhoc_filters'],
+      ['groupby'],
+      ['limit'],
+      ['timeseries_limit_metric'],
+      [
+        {
+          name: 'order_desc',
+          config: {
+            type: 'CheckboxControl',
+            label: t('Sort Descending'),
+            default: true,
+            description: t('Whether to sort descending or ascending'),
+          },
+        },
+      ],
+      [
+        {
+          name: 'contribution',
+          config: {
+            type: 'CheckboxControl',
+            label: t('Contribution'),
+            default: false,
+            description: t('Compute the contribution to the total'),
+          },
+        },
+      ],
+      ['row_limit', null],
+    ],
+  },
+  {
+    label: t('Advanced Analytics'),
+    tabOverride: 'data',
+    description: t(
+      'This section contains options ' +
+        'that allow for advanced analytical post processing ' +
+        'of query results',
+    ),
+    controlSetRows: [
+      [<h1 className="section-header">{t('Rolling Window')}</h1>],
+      [
+        {
+          name: 'rolling_type',
+          config: {
+            type: 'SelectControl',
+            label: t('Rolling Function'),
+            default: 'None',
+            choices: formatSelectOptions(['None', 'mean', 'sum', 'std', 'cumsum']),
+            description: t(
+              'Defines a rolling window function to apply, works along ' +
+                'with the [Periods] text box',
+            ),
+          },
+        },
+      ],
+      [
+        {
+          name: 'rolling_periods',
+          config: {
+            type: 'TextControl',
+            label: t('Periods'),
+            isInt: true,
+            description: t(
+              'Defines the size of the rolling window function, ' +
+                'relative to the time granularity selected',
+            ),
+          },
+        },
+      ],
+      [
+        {
+          name: 'min_periods',
+          config: {
+            type: 'TextControl',
+            label: t('Min Periods'),
+            isInt: true,
+            description: t(
+              'The minimum number of rolling periods required to show ' +
+                'a value. For instance if you do a cumulative sum on 7 days ' +
+                'you may want your "Min Period" to be 7, so that all data points ' +
+                'shown are the total of 7 periods. This will hide the "ramp up" ' +
+                'taking place over the first 7 periods',
+            ),
+          },
+        },
+      ],
+      [<h1 className="section-header">{t('Time Comparison')}</h1>],
+      [
+        {
+          name: 'time_compare',
+          config: {
+            type: 'SelectControl',
+            multi: true,
+            freeForm: true,
+            label: t('Time Shift'),
+            choices: formatSelectOptions([
+              '1 day',
+              '1 week',
+              '28 days',
+              '30 days',
+              '52 weeks',
+              '1 year',
+              '104 weeks',
+              '2 years',
+            ]),
+            description: t(
+              'Overlay one or more timeseries from a ' +
+                'relative time period. Expects relative time deltas ' +
+                'in natural language (example:  24 hours, 7 days, ' +
+                '52 weeks, 365 days). Free text is supported.',
+            ),
+          },
+        },
+      ],
+      [
+        {
+          name: 'comparison_type',
+          config: {
+            type: 'SelectControl',
+            label: t('Calculation type'),
+            default: 'values',
+            choices: [
+              ['values', 'Actual Values'],
+              ['absolute', 'Absolute difference'],
+              ['percentage', 'Percentage change'],
+              ['ratio', 'Ratio'],
+            ],
+            description: t(
+              'How to display time shifts: as individual lines; as the ' +
+                'absolute difference between the main time series and each time shift; ' +
+                'as the percentage change; or as the ratio between series and time shifts.',
+            ),
+          },
+        },
+      ],
+      [<h1 className="section-header">{t('Python Functions')}</h1>],
+      [<h2 className="section-header">pandas.resample</h2>],
+      [
+        {
+          name: 'resample_rule',
+          config: {
+            type: 'SelectControl',
+            freeForm: true,
+            label: t('Rule'),
+            default: null,
+            choices: formatSelectOptions(['1T', '1H', '1D', '7D', '1M', '1AS']),
+            description: t('Pandas resample rule'),
+          },
+        },
+      ],
+      [
+        {
+          name: 'resample_method',
+          config: {
+            type: 'SelectControl',
+            freeForm: true,
+            label: t('Method'),
+            default: null,
+            choices: formatSelectOptions(['asfreq', 'bfill', 'ffill', 'median', 'mean', 'sum']),
+            description: t('Pandas resample method'),
+          },
+        },
+      ],
+    ],
+  },
+];
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js
new file mode 100644
index 0000000..cba128868
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js
@@ -0,0 +1,1180 @@
+/* eslint-disable react/sort-prop-types */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { kebabCase, throttle } from 'lodash';
+import d3 from 'd3';
+import nv from 'nvd3-fork';
+import { parse as mathjsParse } from 'mathjs';
+import moment from 'moment';
+import PropTypes from 'prop-types';
+import {
+  t,
+  isDefined,
+  getTimeFormatter,
+  smartDateVerboseFormatter,
+  getNumberFormatter,
+  NumberFormats,
+  CategoricalColorNamespace,
+} from '@superset-ui/core';
+
+import 'nvd3-fork/build/nv.d3.css';
+
+/* eslint-disable-next-line */
+import ANNOTATION_TYPES, { applyNativeColumns } from './vendor/superset/AnnotationTypes';
+import isTruthy from './utils/isTruthy';
+import {
+  cleanColorInput,
+  computeBarChartWidth,
+  computeYDomain,
+  computeStackedYDomain,
+  drawBarValues,
+  generateBubbleTooltipContent,
+  generateCompareTooltipContent,
+  generateMultiLineTooltipContent,
+  generateRichLineTooltipContent,
+  generateTimePivotTooltip,
+  generateTooltipClassName,
+  generateAreaChartTooltipContent,
+  getMaxLabelSize,
+  getTimeOrNumberFormatter,
+  hideTooltips,
+  tipFactory,
+  tryNumify,
+  removeTooltip,
+  setAxisShowMaxMin,
+  stringifyTimeRange,
+  wrapTooltip,
+} from './utils';
+import {
+  annotationLayerType,
+  boxPlotValueType,
+  bulletDataType,
+  categoryAndValueXYType,
+  rgbObjectType,
+  numericXYType,
+  numberOrAutoType,
+  stringOrObjectWithLabelType,
+} from './PropTypes';
+
+const NO_DATA_RENDER_DATA = [
+  { text: 'No data', dy: '-.75em', class: 'header' },
+  { text: 'Adjust filters or check the Datasource.', dy: '.75em', class: 'body' },
+];
+
+// Override the noData render function to make a prettier UX
+// Code adapted from https://github.com/novus/nvd3/blob/master/src/utils.js#L653
+nv.utils.noData = function noData(chart, container) {
+  const opt = chart.options();
+  const margin = opt.margin();
+  const height = nv.utils.availableHeight(null, container, margin);
+  const width = nv.utils.availableWidth(null, container, margin);
+  const x = margin.left + width / 2;
+  const y = margin.top + height / 2;
+
+  // Remove any previously created chart components
+  container.selectAll('g').remove();
+
+  const noDataText = container.selectAll('.nv-noData').data(NO_DATA_RENDER_DATA);
+
+  noDataText
+    .enter()
+    .append('text')
+    .attr('class', d => `nvd3 nv-noData ${d.class}`)
+    .attr('dy', d => d.dy)
+    .style('text-anchor', 'middle');
+
+  noDataText
+    .attr('x', x)
+    .attr('y', y)
+    .text(d => d.text);
+};
+
+const { getColor, getScale } = CategoricalColorNamespace;
+
+// Limit on how large axes margins can grow as the chart window is resized
+const MAX_MARGIN_PAD = 30;
+const MIN_HEIGHT_FOR_BRUSH = 480;
+const MAX_NO_CHARACTERS_IN_LABEL = 40;
+
+const BREAKPOINTS = {
+  small: 340,
+};
+
+const TIMESERIES_VIZ_TYPES = [
+  'line',
+  'dual_line',
+  'line_multi',
+  'area',
+  'compare',
+  'bar',
+  'time_pivot',
+];
+
+const propTypes = {
+  data: PropTypes.oneOfType([
+    PropTypes.arrayOf(
+      PropTypes.oneOfType([
+        // pie
+        categoryAndValueXYType,
+        // dist-bar
+        PropTypes.shape({
+          key: PropTypes.string,
+          values: PropTypes.arrayOf(categoryAndValueXYType),
+        }),
+        // area, line, compare, bar
+        PropTypes.shape({
+          key: PropTypes.arrayOf(PropTypes.string),
+          values: PropTypes.arrayOf(numericXYType),
+        }),
+        // dual-line
+        PropTypes.shape({
+          classed: PropTypes.string,
+          key: PropTypes.string,
+          type: PropTypes.string,
+          values: PropTypes.arrayOf(numericXYType),
+          yAxis: PropTypes.number,
+        }),
+        // box-plot
+        PropTypes.shape({
+          label: PropTypes.string,
+          values: PropTypes.arrayOf(boxPlotValueType),
+        }),
+        // bubble
+        PropTypes.shape({
+          key: PropTypes.string,
+          values: PropTypes.arrayOf(PropTypes.object),
+        }),
+      ]),
+    ),
+    // bullet
+    bulletDataType,
+  ]),
+  width: PropTypes.number,
+  height: PropTypes.number,
+  annotationData: PropTypes.object,
+  annotationLayers: PropTypes.arrayOf(annotationLayerType),
+  bottomMargin: numberOrAutoType,
+  colorScheme: PropTypes.string,
+  comparisonType: PropTypes.string,
+  contribution: PropTypes.bool,
+  leftMargin: numberOrAutoType,
+  onError: PropTypes.func,
+  showLegend: PropTypes.bool,
+  showMarkers: PropTypes.bool,
+  useRichTooltip: PropTypes.bool,
+  vizType: PropTypes.oneOf([
+    'area',
+    'bar',
+    'box_plot',
+    'bubble',
+    'bullet',
+    'compare',
+    'column',
+    'dist_bar',
+    'line',
+    'line_multi',
+    'time_pivot',
+    'pie',
+    'dual_line',
+  ]),
+  xAxisFormat: PropTypes.string,
+  numberFormat: PropTypes.string,
+  xAxisLabel: PropTypes.string,
+  xAxisShowMinMax: PropTypes.bool,
+  xIsLogScale: PropTypes.bool,
+  xTicksLayout: PropTypes.oneOf(['auto', 'staggered', '45°']),
+  yAxisFormat: PropTypes.string,
+  yAxisBounds: PropTypes.arrayOf(PropTypes.number),
+  yAxisLabel: PropTypes.string,
+  yAxisShowMinMax: PropTypes.bool,
+  yIsLogScale: PropTypes.bool,
+  // 'dist-bar' only
+  orderBars: PropTypes.bool,
+  // 'bar' or 'dist-bar'
+  isBarStacked: PropTypes.bool,
+  showBarValue: PropTypes.bool,
+  // 'bar', 'dist-bar' or 'column'
+  reduceXTicks: PropTypes.bool,
+  // 'bar', 'dist-bar' or 'area'
+  showControls: PropTypes.bool,
+  // 'line' only
+  showBrush: PropTypes.oneOf([true, 'yes', false, 'no', 'auto']),
+  onBrushEnd: PropTypes.func,
+  // 'line-multi' or 'dual-line'
+  yAxis2Format: PropTypes.string,
+  // 'line', 'time-pivot', 'dual-line' or 'line-multi'
+  lineInterpolation: PropTypes.string,
+  // 'pie' only
+  isDonut: PropTypes.bool,
+  isPieLabelOutside: PropTypes.bool,
+  pieLabelType: PropTypes.oneOf([
+    'key',
+    'value',
+    'percent',
+    'key_value',
+    'key_percent',
+    'key_value_percent',
+  ]),
+  showLabels: PropTypes.bool,
+  // 'area' only
+  areaStackedStyle: PropTypes.string,
+  // 'bubble' only
+  entity: PropTypes.string,
+  maxBubbleSize: PropTypes.number,
+  xField: stringOrObjectWithLabelType,
+  yField: stringOrObjectWithLabelType,
+  sizeField: stringOrObjectWithLabelType,
+  // time-pivot only
+  baseColor: rgbObjectType,
+};
+
+const NOOP = () => {};
+const formatter = getNumberFormatter();
+
+function nvd3Vis(element, props) {
+  const {
+    data,
+    width: maxWidth,
+    height: maxHeight,
+    annotationData,
+    annotationLayers = [],
+    areaStackedStyle,
+    baseColor,
+    bottomMargin,
+    colorScheme,
+    comparisonType,
+    contribution,
+    entity,
+    isBarStacked,
+    isDonut,
+    isPieLabelOutside,
+    leftMargin,
+    lineInterpolation = 'linear',
+    markerLabels,
+    markerLines,
+    markerLineLabels,
+    markers,
+    maxBubbleSize,
+    onBrushEnd = NOOP,
+    onError = NOOP,
+    orderBars,
+    pieLabelType,
+    rangeLabels,
+    ranges,
+    reduceXTicks = false,
+    showBarValue,
+    showBrush,
+    showControls,
+    showLabels,
+    showLegend,
+    showMarkers,
+    sizeField,
+    useRichTooltip,
+    vizType,
+    xAxisFormat,
+    numberFormat,
+    xAxisLabel,
+    xAxisShowMinMax = false,
+    xField,
+    xIsLogScale,
+    xTicksLayout,
+    yAxisFormat,
+    yAxis2Format,
+    yAxisBounds,
+    yAxis2Bounds,
+    yAxisLabel,
+    yAxisShowMinMax = false,
+    yAxis2ShowMinMax = false,
+    yField,
+    yIsLogScale,
+  } = props;
+
+  const isExplore = document.querySelector('#explorer-container') !== null;
+  const container = element;
+  container.innerHTML = '';
+  const activeAnnotationLayers = annotationLayers.filter(layer => layer.show);
+  const chartId =
+    container.parentElement && container.parentElement.id !== ''
+      ? container.parentElement.id
+      : null;
+
+  let chart;
+  let width = maxWidth;
+  let colorKey = 'key';
+
+  container.style.width = `${maxWidth}px`;
+  container.style.height = `${maxHeight}px`;
+
+  function isVizTypes(types) {
+    return types.includes(vizType);
+  }
+
+  const drawGraph = function drawGraph() {
+    const d3Element = d3.select(element);
+    d3Element.classed('superset-legacy-chart-nvd3', true);
+    d3Element.classed(`superset-legacy-chart-nvd3-${kebabCase(vizType)}`, true);
+    let svg = d3Element.select('svg');
+    if (svg.empty()) {
+      svg = d3Element.append('svg');
+    }
+    const height = vizType === 'bullet' ? Math.min(maxHeight, 50) : maxHeight;
+    const isTimeSeries = isVizTypes(TIMESERIES_VIZ_TYPES);
+
+    // Handling xAxis ticks settings
+    const staggerLabels = xTicksLayout === 'staggered';
+    const xLabelRotation =
+      (xTicksLayout === 'auto' && isVizTypes(['column', 'dist_bar'])) || xTicksLayout === '45°'
+        ? 45
+        : 0;
+    if (xLabelRotation === 45 && isTruthy(showBrush)) {
+      onError(t('You cannot use 45° tick layout along with the time range filter'));
+
+      return null;
+    }
+
+    const canShowBrush =
+      isTruthy(showBrush) ||
+      (showBrush === 'auto' && maxHeight >= MIN_HEIGHT_FOR_BRUSH && xTicksLayout !== '45°');
+    const numberFormatter = getNumberFormatter(numberFormat);
+
+    switch (vizType) {
+      case 'line':
+        if (canShowBrush) {
+          chart = nv.models.lineWithFocusChart();
+          if (staggerLabels) {
+            // Give a bit more room to focus area if X axis ticks are staggered
+            chart.focus.margin({ bottom: 40 });
+            chart.focusHeight(80);
+          }
+          chart.focus.xScale(d3.time.scale.utc());
+        } else {
+          chart = nv.models.lineChart();
+        }
+        chart.xScale(d3.time.scale.utc());
+        chart.interpolate(lineInterpolation);
+        chart.clipEdge(false);
+        break;
+
+      case 'time_pivot':
+        chart = nv.models.lineChart();
+        chart.xScale(d3.time.scale.utc());
+        chart.interpolate(lineInterpolation);
+        break;
+
+      case 'dual_line':
+      case 'line_multi':
+        chart = nv.models.multiChart();
+        chart.interpolate(lineInterpolation);
+        chart.xScale(d3.time.scale.utc());
+        break;
+
+      case 'bar':
+        chart = nv.models.multiBarChart().showControls(showControls).groupSpacing(0.1);
+
+        if (!reduceXTicks) {
+          width = computeBarChartWidth(data, isBarStacked, maxWidth);
+        }
+        chart.width(width);
+        chart.xAxis.showMaxMin(false);
+        chart.stacked(isBarStacked);
+        break;
+
+      case 'dist_bar':
+        chart = nv.models
+          .multiBarChart()
+          .showControls(showControls)
+          .reduceXTicks(reduceXTicks)
+          .groupSpacing(0.1); // Distance between each group of bars.
+
+        chart.xAxis.showMaxMin(false);
+
+        chart.stacked(isBarStacked);
+        if (orderBars) {
+          data.forEach(d => {
+            d.values.sort((a, b) => (tryNumify(a.x) < tryNumify(b.x) ? -1 : 1));
+          });
+        }
+        if (!reduceXTicks) {
+          width = computeBarChartWidth(data, isBarStacked, maxWidth);
+        }
+        chart.width(width);
+        break;
+
+      case 'pie':
+        chart = nv.models.pieChart();
+        colorKey = 'x';
+        chart.valueFormat(numberFormatter);
+        if (isDonut) {
+          chart.donut(true);
+        }
+        chart.showLabels(showLabels);
+        chart.labelsOutside(isPieLabelOutside);
+        // Configure the minimum slice size for labels to show up
+        chart.labelThreshold(0.05);
+        chart.cornerRadius(true);
+
+        if (['key', 'value', 'percent'].includes(pieLabelType)) {
+          chart.labelType(pieLabelType);
+        } else if (pieLabelType === 'key_value') {
+          chart.labelType(d => `${d.data.x}: ${numberFormatter(d.data.y)}`);
+        } else {
+          // pieLabelType in ['key_percent', 'key_value_percent']
+          const total = d3.sum(data, d => d.y);
+          const percentFormatter = getNumberFormatter(NumberFormats.PERCENT_2_POINT);
+          if (pieLabelType === 'key_percent') {
+            chart.tooltip.valueFormatter(d => percentFormatter(d));
+            chart.labelType(d => `${d.data.x}: ${percentFormatter(d.data.y / total)}`);
+          } else {
+            // pieLabelType === 'key_value_percent'
+            chart.tooltip.valueFormatter(
+              d => `${numberFormatter(d)} (${percentFormatter(d / total)})`,
+            );
+            chart.labelType(
+              d =>
+                `${d.data.x}: ${numberFormatter(d.data.y)} (${percentFormatter(d.data.y / total)})`,
+            );
+          }
+        }
+        // Pie chart does not need top margin
+        chart.margin({ top: 0 });
+        break;
+
+      case 'column':
+        chart = nv.models.multiBarChart().reduceXTicks(false);
+        break;
+
+      case 'compare':
+        chart = nv.models.cumulativeLineChart();
+        chart.xScale(d3.time.scale.utc());
+        chart.useInteractiveGuideline(true);
+        chart.xAxis.showMaxMin(false);
+        break;
+
+      case 'bubble':
+        chart = nv.models.scatterChart();
+        chart.showDistX(false);
+        chart.showDistY(false);
+        chart.tooltip.contentGenerator(d =>
+          generateBubbleTooltipContent({
+            point: d.point,
+            entity,
+            xField,
+            yField,
+            sizeField,
+            xFormatter: getTimeOrNumberFormatter(xAxisFormat),
+            yFormatter: getTimeOrNumberFormatter(yAxisFormat),
+            sizeFormatter: formatter,
+          }),
+        );
+        chart.pointRange([5, maxBubbleSize ** 2]);
+        chart.pointDomain([0, d3.max(data, d => d3.max(d.values, v => v.size))]);
+        break;
+
+      case 'area':
+        chart = nv.models.stackedAreaChart();
+        chart.showControls(showControls);
+        chart.style(areaStackedStyle);
+        chart.xScale(d3.time.scale.utc());
+        break;
+
+      case 'box_plot':
+        colorKey = 'label';
+        chart = nv.models.boxPlotChart();
+        chart.x(d => d.label);
+        chart.maxBoxWidth(75); // prevent boxes from being incredibly wide
+        break;
+
+      case 'bullet':
+        chart = nv.models.bulletChart();
+        data.rangeLabels = rangeLabels;
+        data.ranges = ranges;
+        data.markerLabels = markerLabels;
+        data.markerLines = markerLines;
+        data.markerLineLabels = markerLineLabels;
+        data.markers = markers;
+        break;
+
+      default:
+        throw new Error(`Unrecognized visualization for nvd3${vizType}`);
+    }
+    // Assuming the container has padding already other than for top margin
+    chart.margin({ left: 0, bottom: 0 });
+
+    if (showBarValue) {
+      drawBarValues(svg, data, isBarStacked, yAxisFormat);
+      chart.dispatch.on('stateChange.drawBarValues', () => {
+        drawBarValues(svg, data, isBarStacked, yAxisFormat);
+      });
+    }
+
+    if (canShowBrush && onBrushEnd !== NOOP) {
+      if (chart.focus) {
+        chart.focus.dispatch.on('brush', event => {
+          const timeRange = stringifyTimeRange(event.extent);
+          if (timeRange) {
+            event.brush.on('brushend', () => {
+              onBrushEnd(timeRange);
+            });
+          }
+        });
+      }
+    }
+
+    if (chart.xAxis && chart.xAxis.staggerLabels) {
+      chart.xAxis.staggerLabels(staggerLabels);
+    }
+    if (chart.xAxis && chart.xAxis.rotateLabels) {
+      chart.xAxis.rotateLabels(xLabelRotation);
+    }
+    if (chart.x2Axis && chart.x2Axis.staggerLabels) {
+      chart.x2Axis.staggerLabels(staggerLabels);
+    }
+    if (chart.x2Axis && chart.x2Axis.rotateLabels) {
+      chart.x2Axis.rotateLabels(xLabelRotation);
+    }
+
+    if ('showLegend' in chart && typeof showLegend !== 'undefined') {
+      if (width < BREAKPOINTS.small && vizType !== 'pie') {
+        chart.showLegend(false);
+      } else {
+        chart.showLegend(showLegend);
+      }
+    }
+
+    if (yIsLogScale) {
+      chart.yScale(d3.scale.log());
+    }
+    if (xIsLogScale) {
+      chart.xScale(d3.scale.log());
+    }
+
+    let xAxisFormatter;
+    if (isTimeSeries) {
+      xAxisFormatter = getTimeFormatter(xAxisFormat);
+      // In tooltips, always use the verbose time format
+      chart.interactiveLayer.tooltip.headerFormatter(smartDateVerboseFormatter);
+    } else {
+      xAxisFormatter = getTimeOrNumberFormatter(xAxisFormat);
+    }
+    if (chart.x2Axis && chart.x2Axis.tickFormat) {
+      chart.x2Axis.tickFormat(xAxisFormatter);
+    }
+    if (chart.xAxis && chart.xAxis.tickFormat) {
+      const isXAxisString = isVizTypes(['dist_bar', 'box_plot']);
+      if (isXAxisString) {
+        chart.xAxis.tickFormat(d =>
+          d.length > MAX_NO_CHARACTERS_IN_LABEL
+            ? `${d.slice(0, Math.max(0, MAX_NO_CHARACTERS_IN_LABEL))}…`
+            : d,
+        );
+      } else {
+        chart.xAxis.tickFormat(xAxisFormatter);
+      }
+    }
+
+    let yAxisFormatter = getTimeOrNumberFormatter(yAxisFormat);
+    if (chart.yAxis && chart.yAxis.tickFormat) {
+      if (
+        (contribution || comparisonType === 'percentage') &&
+        (!yAxisFormat ||
+          yAxisFormat === NumberFormats.SMART_NUMBER ||
+          yAxisFormat === NumberFormats.SMART_NUMBER_SIGNED)
+      ) {
+        // When computing a "Percentage" or "Contribution" selected,
+        // force a percentage format if no custom formatting set
+        yAxisFormatter = getNumberFormatter(NumberFormats.PERCENT_1_POINT);
+      }
+      chart.yAxis.tickFormat(yAxisFormatter);
+    }
+    if (chart.y2Axis && chart.y2Axis.tickFormat) {
+      chart.y2Axis.tickFormat(yAxisFormatter);
+    }
+
+    if (chart.yAxis) {
+      chart.yAxis.ticks(5);
+    }
+    if (chart.y2Axis) {
+      chart.y2Axis.ticks(5);
+    }
+
+    // Set showMaxMin for all axis
+    setAxisShowMaxMin(chart.xAxis, xAxisShowMinMax);
+    setAxisShowMaxMin(chart.x2Axis, xAxisShowMinMax);
+    setAxisShowMaxMin(chart.yAxis, yAxisShowMinMax);
+    setAxisShowMaxMin(chart.y2Axis, yAxis2ShowMinMax || yAxisShowMinMax);
+
+    if (vizType === 'time_pivot') {
+      if (baseColor) {
+        const { r, g, b } = baseColor;
+        chart.color(d => {
+          const alpha = d.rank > 0 ? d.perc * 0.5 : 1;
+
+          return `rgba(${r}, ${g}, ${b}, ${alpha})`;
+        });
+      }
+
+      chart.useInteractiveGuideline(true);
+      chart.interactiveLayer.tooltip.contentGenerator(d =>
+        generateTimePivotTooltip(d, xAxisFormatter, yAxisFormatter),
+      );
+    } else if (vizType !== 'bullet') {
+      const colorFn = getScale(colorScheme);
+      chart.color(d => d.color || colorFn(cleanColorInput(d[colorKey])));
+    }
+
+    if (isVizTypes(['line', 'area']) && useRichTooltip) {
+      chart.useInteractiveGuideline(true);
+      if (vizType === 'line') {
+        chart.interactiveLayer.tooltip.contentGenerator(d =>
+          generateRichLineTooltipContent(d, smartDateVerboseFormatter, yAxisFormatter),
+        );
+      } else {
+        // area chart
+        chart.interactiveLayer.tooltip.contentGenerator(d =>
+          generateAreaChartTooltipContent(d, smartDateVerboseFormatter, yAxisFormatter, chart),
+        );
+      }
+    }
+
+    if (isVizTypes(['compare'])) {
+      chart.interactiveLayer.tooltip.contentGenerator(d =>
+        generateCompareTooltipContent(d, yAxisFormatter),
+      );
+    }
+
+    if (isVizTypes(['dual_line', 'line_multi'])) {
+      const yAxisFormatter1 = getNumberFormatter(yAxisFormat);
+      const yAxisFormatter2 = getNumberFormatter(yAxis2Format);
+      chart.yAxis1.tickFormat(yAxisFormatter1);
+      chart.yAxis2.tickFormat(yAxisFormatter2);
+      const yAxisFormatters = data.map(datum =>
+        datum.yAxis === 1 ? yAxisFormatter1 : yAxisFormatter2,
+      );
+      chart.useInteractiveGuideline(true);
+      chart.interactiveLayer.tooltip.contentGenerator(d =>
+        generateMultiLineTooltipContent(d, xAxisFormatter, yAxisFormatters),
+      );
+    }
+    // This is needed for correct chart dimensions if a chart is rendered in a hidden container
+    chart.width(width);
+    chart.height(height);
+
+    svg
+      .datum(data)
+      .transition()
+      .duration(500)
+      .attr('height', height)
+      .attr('width', width)
+      .call(chart);
+
+    // For log scale, only show 1, 10, 100, 1000, ...
+    if (yIsLogScale) {
+      chart.yAxis.tickFormat(d => (d !== 0 && Math.log10(d) % 1 === 0 ? yAxisFormatter(d) : ''));
+    }
+
+    if (xLabelRotation > 0) {
+      // shift labels to the left so they look better
+      const xTicks = svg.select('.nv-x.nv-axis > g').selectAll('g');
+      xTicks.selectAll('text').attr('dx', -6.5);
+    }
+
+    const applyYAxisBounds = () => {
+      if (chart.yDomain && Array.isArray(yAxisBounds) && yAxisBounds.length === 2) {
+        const [customMin, customMax] = yAxisBounds;
+        const hasCustomMin = isDefined(customMin) && !Number.isNaN(customMin);
+        const hasCustomMax = isDefined(customMax) && !Number.isNaN(customMax);
+
+        if ((hasCustomMin || hasCustomMax) && vizType === 'area' && chart.style() === 'expand') {
+          // Because there are custom bounds, we need to override them back to 0%-100% since this
+          // is an expanded area chart
+          chart.yDomain([0, 1]);
+        } else if (
+          (hasCustomMin || hasCustomMax) &&
+          vizType === 'area' &&
+          chart.style() === 'stream'
+        ) {
+          // Because there are custom bounds, we need to override them back to the domain of the
+          // data since this is a stream area chart
+          chart.yDomain(computeStackedYDomain(data));
+        } else if (hasCustomMin && hasCustomMax) {
+          // Override the y domain if there's both a custom min and max
+          chart.yDomain([customMin, customMax]);
+          chart.clipEdge(true);
+        } else if (hasCustomMin || hasCustomMax) {
+          // Only one of the bounds has been set, so we need to manually calculate the other one
+          let [trueMin, trueMax] = [0, 1];
+
+          // These viz types can be stacked
+          // They correspond to the nvd3 stackedAreaChart and multiBarChart
+          if (vizType === 'area' || (isVizTypes(['bar', 'dist_bar']) && chart.stacked())) {
+            // This is a stacked area chart or a stacked bar chart
+            [trueMin, trueMax] = computeStackedYDomain(data);
+          } else {
+            [trueMin, trueMax] = computeYDomain(data);
+          }
+
+          const min = hasCustomMin ? customMin : trueMin;
+          const max = hasCustomMax ? customMax : trueMax;
+          chart.yDomain([min, max]);
+          chart.clipEdge(true);
+        }
+      }
+    };
+    applyYAxisBounds();
+
+    // Also reapply on each state change to account for enabled/disabled series
+    if (chart.dispatch && chart.dispatch.stateChange) {
+      chart.dispatch.on('stateChange.applyYAxisBounds', applyYAxisBounds);
+    }
+
+    // align yAxis1 and yAxis2 ticks
+    if (isVizTypes(['dual_line', 'line_multi'])) {
+      const count = chart.yAxis1.ticks();
+      const ticks1 = chart.yAxis1.scale().domain(chart.yAxis1.domain()).nice(count).ticks(count);
+      const ticks2 = chart.yAxis2.scale().domain(chart.yAxis2.domain()).nice(count).ticks(count);
+
+      // match number of ticks in both axes
+      const difference = ticks1.length - ticks2.length;
+      if (ticks1.length > 0 && ticks2.length > 0 && difference !== 0) {
+        const smallest = difference < 0 ? ticks1 : ticks2;
+        const delta = smallest[1] - smallest[0];
+        for (let i = 0; i < Math.abs(difference); i += 1) {
+          if (i % 2 === 0) {
+            smallest.unshift(smallest[0] - delta);
+          } else {
+            smallest.push(smallest[smallest.length - 1] + delta);
+          }
+        }
+        chart.yDomain1([ticks1[0], ticks1[ticks1.length - 1]]);
+        chart.yDomain2([ticks2[0], ticks2[ticks2.length - 1]]);
+        chart.yAxis1.tickValues(ticks1);
+        chart.yAxis2.tickValues(ticks2);
+      }
+
+      chart.yDomain1([yAxisBounds[0] || ticks1[0], yAxisBounds[1] || ticks1[ticks1.length - 1]]);
+      chart.yDomain2([yAxis2Bounds[0] || ticks2[0], yAxis2Bounds[1] || ticks2[ticks2.length - 1]]);
+    }
+
+    if (showMarkers) {
+      svg.selectAll('.nv-point').style('stroke-opacity', 1).style('fill-opacity', 1);
+
+      // redo on legend toggle; nvd3 calls the callback *before* the line is
+      // drawn, so we need to add a small delay here
+      chart.dispatch.on('stateChange.showMarkers', () => {
+        setTimeout(() => {
+          svg.selectAll('.nv-point').style('stroke-opacity', 1).style('fill-opacity', 1);
+        }, 10);
+      });
+    }
+
+    if (chart.yAxis !== undefined || chart.yAxis2 !== undefined) {
+      // Hack to adjust y axis left margin to accommodate long numbers
+      const marginPad = Math.ceil(Math.min(maxWidth * (isExplore ? 0.01 : 0.03), MAX_MARGIN_PAD));
+      // Hack to adjust margins to accommodate long axis tick labels.
+      // - has to be done only after the chart has been rendered once
+      // - measure the width or height of the labels
+      // ---- (x axis labels are rotated 45 degrees so we use height),
+      // - adjust margins based on these measures and render again
+      const margins = chart.margin();
+      if (chart.xAxis) {
+        margins.bottom = 28;
+      }
+      const maxYAxisLabelWidth = getMaxLabelSize(svg, chart.yAxis2 ? 'nv-y1' : 'nv-y');
+      const maxXAxisLabelHeight = getMaxLabelSize(svg, 'nv-x');
+      margins.left = maxYAxisLabelWidth + marginPad;
+
+      if (yAxisLabel && yAxisLabel !== '') {
+        margins.left += 25;
+      }
+      if (showBarValue) {
+        // Add more margin to avoid label colliding with legend.
+        margins.top += 24;
+      }
+      if (xAxisShowMinMax) {
+        // If x bounds are shown, we need a right margin
+        margins.right = Math.max(20, maxXAxisLabelHeight / 2) + marginPad;
+      }
+      if (xLabelRotation === 45) {
+        margins.bottom =
+          maxXAxisLabelHeight * Math.sin((Math.PI * xLabelRotation) / 180) + marginPad + 30;
+        margins.right =
+          maxXAxisLabelHeight * Math.cos((Math.PI * xLabelRotation) / 180) + marginPad;
+      } else if (staggerLabels) {
+        margins.bottom = 40;
+      }
+
+      if (isVizTypes(['dual_line', 'line_multi'])) {
+        const maxYAxis2LabelWidth = getMaxLabelSize(svg, 'nv-y2');
+        margins.right = maxYAxis2LabelWidth + marginPad;
+      }
+      if (bottomMargin && bottomMargin !== 'auto') {
+        margins.bottom = parseInt(bottomMargin, 10);
+      }
+      if (leftMargin && leftMargin !== 'auto') {
+        margins.left = leftMargin;
+      }
+
+      if (xAxisLabel && xAxisLabel !== '' && chart.xAxis) {
+        margins.bottom += 25;
+        let distance = 0;
+        if (margins.bottom && !Number.isNaN(margins.bottom)) {
+          distance = margins.bottom - 45;
+        }
+        // nvd3 bug axisLabelDistance is disregarded on xAxis
+        // https://github.com/krispo/angular-nvd3/issues/90
+        chart.xAxis.axisLabel(xAxisLabel).axisLabelDistance(distance);
+      }
+
+      if (yAxisLabel && yAxisLabel !== '' && chart.yAxis) {
+        let distance = 0;
+        if (margins.left && !Number.isNaN(margins.left)) {
+          distance = margins.left - 70;
+        }
+        chart.yAxis.axisLabel(yAxisLabel).axisLabelDistance(distance);
+      }
+      if (isTimeSeries && annotationData && activeAnnotationLayers.length > 0) {
+        // Time series annotations add additional data
+        const timeSeriesAnnotations = activeAnnotationLayers
+          .filter(layer => layer.annotationType === ANNOTATION_TYPES.TIME_SERIES)
+          .reduce(
+            (bushel, a) =>
+              bushel.concat(
+                (annotationData[a.name] || []).map(series => {
+                  if (!series) {
+                    return {};
+                  }
+                  const key = Array.isArray(series.key)
+                    ? `${a.name}, ${series.key.join(', ')}`
+                    : `${a.name}, ${series.key}`;
+
+                  return {
+                    ...series,
+                    key,
+                    color: a.color,
+                    strokeWidth: a.width,
+                    classed: `${a.opacity} ${a.style} nv-timeseries-annotation-layer showMarkers${a.showMarkers} hideLine${a.hideLine}`,
+                  };
+                }),
+              ),
+            [],
+          );
+        data.push(...timeSeriesAnnotations);
+      }
+
+      // Uniquely identify tooltips based on chartId so this chart instance only
+      // controls its own tooltips
+      if (chartId) {
+        if (chart && chart.interactiveLayer && chart.interactiveLayer.tooltip) {
+          chart.interactiveLayer.tooltip.classes([generateTooltipClassName(chartId)]);
+        }
+
+        if (chart && chart.tooltip) {
+          chart.tooltip.classes([generateTooltipClassName(chartId)]);
+        }
+      }
+
+      // render chart
+      chart.margin(margins);
+      svg
+        .datum(data)
+        .transition()
+        .duration(500)
+        .attr('width', width)
+        .attr('height', height)
+        .call(chart);
+
+      // On scroll, hide (not remove) tooltips so they can reappear on hover.
+      // Throttle to only 4x/second.
+      window.addEventListener(
+        'scroll',
+        throttle(() => hideTooltips(false), 250),
+      );
+
+      // The below code should be run AFTER rendering because chart is updated in call()
+      if (isTimeSeries && activeAnnotationLayers.length > 0) {
+        // Formula annotations
+        const formulas = activeAnnotationLayers
+          .filter(a => a.annotationType === ANNOTATION_TYPES.FORMULA)
+          .map(a => ({ ...a, formula: mathjsParse(a.value) }));
+
+        let xMax;
+        let xMin;
+        let xScale;
+        if (vizType === 'bar') {
+          xMin = d3.min(data[0].values, d => d.x);
+          xMax = d3.max(data[0].values, d => d.x);
+          xScale = d3.scale.quantile().domain([xMin, xMax]).range(chart.xAxis.range());
+        } else {
+          xMin = chart.xAxis.scale().domain()[0].valueOf();
+          xMax = chart.xAxis.scale().domain()[1].valueOf();
+          if (chart.xScale) {
+            xScale = chart.xScale();
+          } else if (chart.xAxis.scale) {
+            xScale = chart.xAxis.scale();
+          } else {
+            xScale = d3.scale.linear();
+          }
+        }
+        if (xScale && xScale.clamp) {
+          xScale.clamp(true);
+        }
+
+        if (formulas.length > 0) {
+          const xValues = [];
+          if (vizType === 'bar') {
+            // For bar-charts we want one data point evaluated for every
+            // data point that will be displayed.
+            const distinct = data.reduce((xVals, d) => {
+              d.values.forEach(x => xVals.add(x.x));
+
+              return xVals;
+            }, new Set());
+            xValues.push(...distinct.values());
+            xValues.sort();
+          } else {
+            // For every other time visualization it should be ok, to have a
+            // data points in even intervals.
+            let period = Math.min(
+              ...data.map(d => Math.min(...d.values.slice(1).map((v, i) => v.x - d.values[i].x))),
+            );
+            const dataPoints = (xMax - xMin) / (period || 1);
+            // make sure that there are enough data points and not too many
+            period = dataPoints < 100 ? (xMax - xMin) / 100 : period;
+            period = dataPoints > 500 ? (xMax - xMin) / 500 : period;
+            xValues.push(xMin);
+            for (let x = xMin; x < xMax; x += period) {
+              xValues.push(x);
+            }
+            xValues.push(xMax);
+          }
+          const formulaData = formulas.map(fo => ({
+            key: fo.name,
+            values: xValues.map(x => ({ y: fo.formula.evaluate({ x }), x })),
+            color: fo.color,
+            strokeWidth: fo.width,
+            classed: `${fo.opacity} ${fo.style}`,
+          }));
+          data.push(...formulaData);
+        }
+        const xAxis = chart.xAxis1 ? chart.xAxis1 : chart.xAxis;
+        const yAxis = chart.yAxis1 ? chart.yAxis1 : chart.yAxis;
+        const chartWidth = xAxis.scale().range()[1];
+        const annotationHeight = yAxis.scale().range()[0];
+
+        if (annotationData) {
+          // Event annotations
+          activeAnnotationLayers
+            .filter(
+              x =>
+                x.annotationType === ANNOTATION_TYPES.EVENT &&
+                annotationData &&
+                annotationData[x.name],
+            )
+            .forEach((config, index) => {
+              const e = applyNativeColumns(config);
+              // Add event annotation layer
+              const annotations = d3
+                .select(element)
+                .select('.nv-wrap')
+                .append('g')
+                .attr('class', `nv-event-annotation-layer-${index}`);
+              const aColor = e.color || getColor(cleanColorInput(e.name), colorScheme);
+
+              const tip = tipFactory({
+                ...e,
+                annotationTipClass: `arrow-down nv-event-annotation-layer-${config.sourceType}`,
+              });
+              const records = (annotationData[e.name].records || [])
+                .map(r => {
+                  const timeValue = new Date(moment.utc(r[e.timeColumn]));
+
+                  return {
+                    ...r,
+                    [e.timeColumn]: timeValue,
+                  };
+                })
+                .filter(record => !Number.isNaN(record[e.timeColumn].getMilliseconds()));
+
+              if (records.length > 0) {
+                annotations
+                  .selectAll('line')
+                  .data(records)
+                  .enter()
+                  .append('line')
+                  .attr({
+                    x1: d => xScale(new Date(d[e.timeColumn])),
+                    y1: 0,
+                    x2: d => xScale(new Date(d[e.timeColumn])),
+                    y2: annotationHeight,
+                  })
+                  .attr('class', `${e.opacity} ${e.style}`)
+                  .style('stroke', aColor)
+                  .style('stroke-width', e.width)
+                  .on('mouseover', tip.show)
+                  .on('mouseout', tip.hide)
+                  .call(tip);
+              }
+
+              // update annotation positions on brush event
+              if (chart.focus) {
+                chart.focus.dispatch.on('onBrush.event-annotation', () => {
+                  annotations
+                    .selectAll('line')
+                    .data(records)
+                    .attr({
+                      x1: d => xScale(new Date(d[e.timeColumn])),
+                      y1: 0,
+                      x2: d => xScale(new Date(d[e.timeColumn])),
+                      y2: annotationHeight,
+                      opacity: d => {
+                        const x = xScale(new Date(d[e.timeColumn]));
+
+                        return x > 0 && x < chartWidth ? 1 : 0;
+                      },
+                    });
+                });
+              }
+            });
+
+          // Interval annotations
+          activeAnnotationLayers
+            .filter(
+              x =>
+                x.annotationType === ANNOTATION_TYPES.INTERVAL &&
+                annotationData &&
+                annotationData[x.name],
+            )
+            .forEach((config, index) => {
+              const e = applyNativeColumns(config);
+              // Add interval annotation layer
+              const annotations = d3
+                .select(element)
+                .select('.nv-wrap')
+                .append('g')
+                .attr('class', `nv-interval-annotation-layer-${index}`);
+
+              const aColor = e.color || getColor(cleanColorInput(e.name), colorScheme);
+              const tip = tipFactory(e);
+
+              const records = (annotationData[e.name].records || [])
+                .map(r => {
+                  const timeValue = new Date(moment.utc(r[e.timeColumn]));
+                  const intervalEndValue = new Date(moment.utc(r[e.intervalEndColumn]));
+
+                  return {
+                    ...r,
+                    [e.timeColumn]: timeValue,
+                    [e.intervalEndColumn]: intervalEndValue,
+                  };
+                })
+                .filter(
+                  record =>
+                    !Number.isNaN(record[e.timeColumn].getMilliseconds()) &&
+                    !Number.isNaN(record[e.intervalEndColumn].getMilliseconds()),
+                );
+
+              if (records.length > 0) {
+                annotations
+                  .selectAll('rect')
+                  .data(records)
+                  .enter()
+                  .append('rect')
+                  .attr({
+                    x: d =>
+                      Math.min(
+                        xScale(new Date(d[e.timeColumn])),
+                        xScale(new Date(d[e.intervalEndColumn])),
+                      ),
+                    y: 0,
+                    width: d =>
+                      Math.max(
+                        Math.abs(
+                          xScale(new Date(d[e.intervalEndColumn])) -
+                            xScale(new Date(d[e.timeColumn])),
+                        ),
+                        1,
+                      ),
+                    height: annotationHeight,
+                  })
+                  .attr('class', `${e.opacity} ${e.style}`)
+                  .style('stroke-width', e.width)
+                  .style('stroke', aColor)
+                  .style('fill', aColor)
+                  .style('fill-opacity', 0.2)
+                  .on('mouseover', tip.show)
+                  .on('mouseout', tip.hide)
+                  .call(tip);
+              }
+
+              // update annotation positions on brush event
+              if (chart.focus) {
+                chart.focus.dispatch.on('onBrush.interval-annotation', () => {
+                  annotations
+                    .selectAll('rect')
+                    .data(records)
+                    .attr({
+                      x: d => xScale(new Date(d[e.timeColumn])),
+                      width: d => {
+                        const x1 = xScale(new Date(d[e.timeColumn]));
+                        const x2 = xScale(new Date(d[e.intervalEndColumn]));
+
+                        return x2 - x1;
+                      },
+                    });
+                });
+              }
+            });
+        }
+
+        // rerender chart appended with annotation layer
+        svg.datum(data).attr('height', height).attr('width', width).call(chart);
+
+        // Display styles for Time Series Annotations
+        chart.dispatch.on('renderEnd.timeseries-annotation', () => {
+          d3.selectAll('.slice_container .nv-timeseries-annotation-layer.showMarkerstrue .nv-point')
+            .style('stroke-opacity', 1)
+            .style('fill-opacity', 1);
+          d3.selectAll('.slice_container .nv-timeseries-annotation-layer.hideLinetrue').style(
+            'stroke-width',
+            0,
+          );
+        });
+      }
+    }
+
+    wrapTooltip(chart);
+
+    return chart;
+  };
+
+  // Remove tooltips before rendering chart, if the chart is being re-rendered sometimes
+  // there are left over tooltips in the dom,
+  // this will clear them before rendering the chart again.
+  if (chartId) {
+    removeTooltip(chartId);
+  } else {
+    hideTooltips(true);
+  }
+
+  nv.addGraph(drawGraph);
+}
+
+nvd3Vis.displayName = 'NVD3';
+nvd3Vis.propTypes = propTypes;
+export default nvd3Vis;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts
new file mode 100644
index 0000000..9cf3232
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts
@@ -0,0 +1,117 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, D3_FORMAT_OPTIONS } from '@superset-ui/chart-controls';
+import { showLegend } from '../NVD3Controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['groupby'], ['metric'], ['adhoc_filters'], ['row_limit']],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'pie_label_type',
+            config: {
+              type: 'SelectControl',
+              label: t('Label Type'),
+              default: 'key',
+              renderTrigger: true,
+              choices: [
+                ['key', 'Category Name'],
+                ['value', 'Value'],
+                ['percent', 'Percentage'],
+                ['key_value', 'Category and Value'],
+                ['key_percent', 'Category and Percentage'],
+                ['key_value_percent', 'Category, Value and Percentage'],
+              ],
+              description: t('What should be shown on the label?'),
+            },
+          },
+          {
+            name: 'number_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Number format'),
+              renderTrigger: true,
+              default: 'SMART_NUMBER',
+              choices: D3_FORMAT_OPTIONS,
+              description: `${t('D3 format syntax: https://github.com/d3/d3-format')} ${t(
+                'Only applies when the "Label Type" is not set to a percentage.',
+              )}`,
+            },
+          },
+        ],
+        [
+          {
+            name: 'donut',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Donut'),
+              default: false,
+              renderTrigger: true,
+              description: t('Do you want a donut or a pie?'),
+            },
+          },
+          showLegend,
+        ],
+        [
+          {
+            name: 'show_labels',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Labels'),
+              renderTrigger: true,
+              default: true,
+              description: t(
+                'Whether to display the labels. Note that the label only displays when the the 5% ' +
+                  'threshold.',
+              ),
+            },
+          },
+          {
+            name: 'labels_outside',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Put labels outside'),
+              default: true,
+              renderTrigger: true,
+              description: t('Put the labels outside the pie?'),
+            },
+          },
+        ],
+        ['color_scheme', 'label_colors'],
+      ],
+    },
+  ],
+  controlOverrides: {
+    row_limit: {
+      default: 25,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnail.png
new file mode 100644
index 0000000..8dcb780
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnailLarge.png
new file mode 100644
index 0000000..8115f25
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js
new file mode 100644
index 0000000..50c6e72
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: '',
+  name: t('Pie Chart'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class PieChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/PropTypes.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/PropTypes.js
new file mode 100644
index 0000000..9c13087
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/PropTypes.js
@@ -0,0 +1,79 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable react/sort-prop-types */
+import PropTypes from 'prop-types';
+import { ANNOTATION_TYPES } from './vendor/superset/AnnotationTypes';
+
+export const numberOrAutoType = PropTypes.oneOfType([PropTypes.number, PropTypes.oneOf(['auto'])]);
+
+export const stringOrObjectWithLabelType = PropTypes.oneOfType([
+  PropTypes.string,
+  PropTypes.shape({
+    label: PropTypes.string,
+  }),
+]);
+
+export const rgbObjectType = PropTypes.shape({
+  r: PropTypes.number.isRequired,
+  g: PropTypes.number.isRequired,
+  b: PropTypes.number.isRequired,
+});
+
+export const numericXYType = PropTypes.shape({
+  x: PropTypes.number,
+  y: PropTypes.number,
+});
+
+export const categoryAndValueXYType = PropTypes.shape({
+  x: PropTypes.string,
+  y: PropTypes.number,
+});
+
+export const boxPlotValueType = PropTypes.shape({
+  outliers: PropTypes.arrayOf(PropTypes.number),
+  Q1: PropTypes.number,
+  Q2: PropTypes.number,
+  Q3: PropTypes.number,
+  whisker_high: PropTypes.number,
+  whisker_low: PropTypes.number,
+});
+
+export const bulletDataType = PropTypes.shape({
+  markerLabels: PropTypes.arrayOf(PropTypes.string),
+  markerLineLabels: PropTypes.arrayOf(PropTypes.string),
+  markerLines: PropTypes.arrayOf(PropTypes.number),
+  markers: PropTypes.arrayOf(PropTypes.number),
+  measures: PropTypes.arrayOf(PropTypes.number),
+  rangeLabels: PropTypes.arrayOf(PropTypes.string),
+  ranges: PropTypes.arrayOf(PropTypes.number),
+});
+
+export const annotationLayerType = PropTypes.shape({
+  annotationType: PropTypes.oneOf(Object.keys(ANNOTATION_TYPES)),
+  color: PropTypes.string,
+  hideLine: PropTypes.bool,
+  name: PropTypes.string,
+  opacity: PropTypes.string,
+  show: PropTypes.bool,
+  showMarkers: PropTypes.bool,
+  sourceType: PropTypes.string,
+  style: PropTypes.string,
+  value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
+  width: PropTypes.number,
+});
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/ReactNVD3.jsx b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/ReactNVD3.jsx
new file mode 100644
index 0000000..dea29e6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/ReactNVD3.jsx
@@ -0,0 +1,176 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { reactify, styled } from '@superset-ui/core';
+import PropTypes from 'prop-types';
+import Component from './NVD3Vis';
+import { hideTooltips, removeTooltip } from './utils';
+
+function componentWillUnmount() {
+  const { id } = this.props;
+  if (id !== null && id !== undefined) {
+    removeTooltip(id);
+  } else {
+    hideTooltips(true);
+  }
+}
+
+const ReactNVD3 = reactify(Component, { componentWillUnmount });
+
+const NVD3 = ({ className, ...otherProps }) => (
+  <div className={className}>
+    <ReactNVD3 {...otherProps} />
+  </div>
+);
+
+NVD3.propTypes = {
+  className: PropTypes.string.isRequired,
+};
+
+export default styled(NVD3)`
+  .superset-legacy-chart-nvd3-dist-bar, .superset-legacy-chart-nvd3-bar {
+    overflow-x: auto !important;
+    svg {
+      &.nvd3-svg {
+        width: auto;
+        font-size: ${({ theme }) => theme.typography.sizes.m};
+      }
+    }
+  }
+  .superset-legacy-chart-nvd3 {
+    nv-x text {
+      font-size: ${({ theme }) => theme.typography.sizes.m};
+    }
+    g.superset path {
+      stroke-dasharray: 5, 5;
+    }
+    .nvtooltip tr.highlight td {
+      font-weight: ${({ theme }) => theme.typography.weights.bold};
+      font-size: 15px !important;
+    }
+    text.nv-axislabel {
+      font-size: ${({ theme }) => theme.typography.sizes.m} !important;
+    }
+    g.solid path,
+    line.solid {
+      stroke-dasharray: unset;
+    }
+    g.dashed path,
+    line.dashed {
+      stroke-dasharray: 5, 5;
+    }
+    g.longDashed path,
+    line.dotted {
+      stroke-dasharray: 1, 1;
+    }
+
+    g.opacityLow path,
+    line.opacityLow {
+      stroke-opacity: 0.2;
+    }
+
+    g.opacityMedium path,
+    line.opacityMedium {
+      stroke-opacity: 0.5;
+    }
+    g.opacityHigh path,
+    line.opacityHigh {
+      stroke-opacity: 0.8;
+    }
+    g.time-shift-0 path,
+    line.time-shift-0 {
+      stroke-dasharray: 5, 5;
+    }
+    g.time-shift-1 path,
+    line.time-shift-1 {
+      stroke-dasharray: 1, 5;
+    }
+    g.time-shift-2 path,
+    line.time-shift-3 {
+      stroke-dasharray: 5, 1;
+    }
+    g.time-shift-3 path,
+    line.time-shift-3 {
+      stroke-dasharray: 5, 1;
+    }
+    g.time-shift-4 path,
+    line.time-shift-4 {
+      stroke-dasharray: 5, 10;
+    }
+    g.time-shift-5 path,
+    line.time-shift-5 {
+      stroke-dasharray: 0.9;
+    }
+    g.time-shift-6 path,
+    line.time-shift-6 {
+      stroke-dasharray: 15, 10, 5;
+    }
+    g.time-shift-7 path,
+    line.time-shift-7 {
+      stroke-dasharray: 15, 10, 5, 10;
+    }
+    g.time-shift-8 path,
+    line.time-shift-8 {
+      stroke-dasharray: 15, 10, 5, 10, 15;
+    }
+    g.time-shift-9 path,
+    line.time-shift-9 {
+      stroke-dasharray: 5, 5, 1, 5;
+    }
+    .nv-noData.body {
+      font-size: ${({ theme }) => theme.typography.sizes.m};
+      font-weight: ${({ theme }) => theme.typography.weights.normal};
+    }
+  }
+  .superset-legacy-chart-nvd3-tr-highlight {
+    border-top: 1px solid;
+    border-bottom: 1px solid;
+    font-weight: ${({ theme }) => theme.typography.weights.bold};
+  }
+  .superset-legacy-chart-nvd3-tr-total {
+    font-weight: ${({ theme }) => theme.typography.weights.bold};
+  }
+  .nvtooltip {
+    .tooltip-header {
+      white-space: nowrap;
+      font-weight: ${({ theme }) => theme.typography.weights.bold};
+    }
+    tbody tr:not(.tooltip-header) td:nth-child(2) {
+      word-break: break-word;
+    }
+  }
+  .d3-tip.nv-event-annotation-layer-table,
+  .d3-tip.nv-event-annotation-layer-NATIVE {
+    width: 200px;
+    border-radius: 2px;
+    background-color: #484848;
+    fill-opacity: 0.6;
+    margin: 8px;
+    padding: 8px;
+    color: #fff;
+    &:after {
+      content: '\25BC';
+      font-size: ${({ theme }) => theme.typography.sizes.m};
+      color: #484848;
+      position: absolute;
+      bottom: -14px;
+      left: 94px;
+    }
+  }
+`;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts
new file mode 100644
index 0000000..2c83e7b
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts
@@ -0,0 +1,120 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, D3_FORMAT_OPTIONS, sections } from '@superset-ui/chart-controls';
+import {
+  lineInterpolation,
+  showLegend,
+  xAxisLabel,
+  bottomMargin,
+  xAxisFormat,
+  yLogScale,
+  yAxisBounds,
+  xAxisShowMinmax,
+  yAxisShowMinmax,
+  yAxisLabel,
+  leftMargin,
+} from '../NVD3Controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metric'],
+        ['adhoc_filters'],
+        [
+          {
+            name: 'freq',
+            config: {
+              type: 'SelectControl',
+              label: t('Frequency'),
+              default: 'W-MON',
+              freeForm: true,
+              clearable: false,
+              choices: [
+                ['AS', 'Year (freq=AS)'],
+                ['52W-MON', '52 weeks starting Monday (freq=52W-MON)'],
+                ['W-SUN', '1 week starting Sunday (freq=W-SUN)'],
+                ['W-MON', '1 week starting Monday (freq=W-MON)'],
+                ['D', 'Day (freq=D)'],
+                ['4W-MON', '4 weeks (freq=4W-MON)'],
+              ],
+              description: t(
+                `The periodicity over which to pivot time. Users can provide
+            "Pandas" offset alias.
+            Click on the info bubble for more details on accepted "freq" expressions.`,
+              ),
+              tooltipOnClick: () => {
+                window.open(
+                  'https://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases',
+                );
+              },
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [[showLegend], [lineInterpolation], ['color_picker', null]],
+    },
+    {
+      label: t('X Axis'),
+      expanded: true,
+      controlSetRows: [
+        [xAxisLabel],
+        [bottomMargin],
+        [xAxisShowMinmax],
+        [
+          {
+            name: xAxisFormat.name,
+            config: {
+              ...xAxisFormat.config,
+              default: 'SMART_NUMBER',
+              choices: D3_FORMAT_OPTIONS,
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Y Axis'),
+      expanded: true,
+      controlSetRows: [
+        [yAxisLabel],
+        [leftMargin],
+        [yAxisShowMinmax],
+        [yLogScale],
+        ['y_axis_format'],
+        [yAxisBounds],
+      ],
+    },
+  ],
+  controlOverrides: {
+    metric: {
+      clearable: false,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnail.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnail.png
new file mode 100644
index 0000000..dde48ae
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnailLarge.png
new file mode 100644
index 0000000..489eccd
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js
new file mode 100644
index 0000000..ad93f00
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js
@@ -0,0 +1,41 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+
+const metadata = new ChartMetadata({
+  credits: ['http://nvd3.org'],
+  description: '',
+  name: t('Time-series Period Pivot'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class TimePivotChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../ReactNVD3'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/index.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/index.js
new file mode 100644
index 0000000..f28da16
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/index.js
@@ -0,0 +1,13 @@
+export { default as NVD3ChartPreset } from './preset';
+export { default as AreaChartPlugin } from './Area';
+export { default as BarChartPlugin } from './Bar';
+export { default as BoxPlotChartPlugin } from './BoxPlot';
+export { default as BubbleChartPlugin } from './Bubble';
+export { default as BulletChartPlugin } from './Bullet';
+export { default as CompareChartPlugin } from './Compare';
+export { default as DistBarChartPlugin } from './DistBar';
+export { default as DualLineChartPlugin } from './DualLine';
+export { default as LineChartPlugin } from './Line';
+export { default as LineMultiChartPlugin } from './LineMulti';
+export { default as PieChartPlugin } from './Pie';
+export { default as TimePivotChartPlugin } from './TimePivot';
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/preset.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/preset.js
new file mode 100644
index 0000000..cccb877
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/preset.js
@@ -0,0 +1,53 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { Preset } from '@superset-ui/core';
+import AreaChartPlugin from './Area';
+import BarChartPlugin from './Bar';
+import BoxPlotChartPlugin from './BoxPlot';
+import BubbleChartPlugin from './Bubble';
+import BulletChartPlugin from './Bullet';
+import CompareChartPlugin from './Compare';
+import DistBarChartPlugin from './DistBar';
+import DualLineChartPlugin from './DualLine';
+import LineChartPlugin from './Line';
+import LineMultiChartPlugin from './LineMulti';
+import PieChartPlugin from './Pie';
+import TimePivotChartPlugin from './TimePivot';
+
+export default class NVD3ChartPreset extends Preset {
+  constructor() {
+    super({
+      name: 'NVD3 charts',
+      plugins: [
+        new AreaChartPlugin().configure({ key: 'area' }),
+        new BarChartPlugin().configure({ key: 'bar' }),
+        new BoxPlotChartPlugin().configure({ key: 'box_plot' }),
+        new BubbleChartPlugin().configure({ key: 'bubble' }),
+        new BulletChartPlugin().configure({ key: 'bullet' }),
+        new CompareChartPlugin().configure({ key: 'compare' }),
+        new DistBarChartPlugin().configure({ key: 'dist_bar' }),
+        new DualLineChartPlugin().configure({ key: 'dual_line' }),
+        new LineChartPlugin().configure({ key: 'line' }),
+        new LineMultiChartPlugin().configure({ key: 'line_multi' }),
+        new PieChartPlugin().configure({ key: 'pie' }),
+        new TimePivotChartPlugin().configure({ key: 'time_pivot' }),
+      ],
+    });
+  }
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/transformProps.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/transformProps.js
new file mode 100644
index 0000000..09631a3
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/transformProps.js
@@ -0,0 +1,185 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import isTruthy from './utils/isTruthy';
+import { tokenizeToNumericArray, tokenizeToStringArray } from './utils/tokenize';
+import { formatLabel } from './utils';
+
+const NOOP = () => {};
+
+const grabD3Format = (datasource, targetMetric) => {
+  let foundFormatter;
+  const { metrics = [] } = datasource || {};
+  metrics.forEach(metric => {
+    if (metric.d3format && metric.metric_name === targetMetric) {
+      foundFormatter = metric.d3format;
+    }
+  });
+
+  return foundFormatter;
+};
+
+export default function transformProps(chartProps) {
+  const { width, height, annotationData, datasource, formData, hooks, queriesData } = chartProps;
+
+  const { onAddFilter = NOOP, onError = NOOP } = hooks;
+
+  const {
+    annotationLayers,
+    barStacked,
+    bottomMargin,
+    colorPicker,
+    colorScheme,
+    comparisonType,
+    contribution,
+    donut,
+    entity,
+    labelsOutside,
+    leftMargin,
+    lineInterpolation,
+    maxBubbleSize,
+    metric,
+    metric2,
+    metrics = [],
+    orderBars,
+    pieLabelType,
+    reduceXTicks,
+    richTooltip,
+    sendTimeRange,
+    showBarValue,
+    showBrush,
+    showControls,
+    showLabels,
+    showLegend,
+    showMarkers,
+    size,
+    stackedStyle,
+    vizType,
+    x,
+    xAxisFormat,
+    xAxisLabel,
+    xAxisShowminmax,
+    xLogScale,
+    xTicksLayout,
+    y,
+    yAxisBounds,
+    yAxis2Bounds,
+    yAxisLabel,
+    yAxisShowminmax,
+    yAxis2Showminmax,
+    yLogScale,
+  } = formData;
+
+  let {
+    markerLabels,
+    markerLines,
+    markerLineLabels,
+    markers,
+    numberFormat,
+    rangeLabels,
+    ranges,
+    yAxisFormat,
+    yAxis2Format,
+  } = formData;
+
+  const rawData = queriesData[0].data || [];
+  const data = Array.isArray(rawData)
+    ? rawData.map(row => ({
+        ...row,
+        key: formatLabel(row.key, datasource.verboseMap),
+      }))
+    : rawData;
+
+  if (vizType === 'pie') {
+    numberFormat = numberFormat || grabD3Format(datasource, metric);
+  } else if (vizType === 'dual_line') {
+    yAxisFormat = yAxisFormat || grabD3Format(datasource, metric);
+    yAxis2Format = yAxis2Format || grabD3Format(datasource, metric2);
+  } else if (['line', 'dist_bar', 'bar', 'area'].includes(chartProps.formData.vizType)) {
+    yAxisFormat =
+      yAxisFormat || grabD3Format(datasource, metrics.length > 0 ? metrics[0] : undefined);
+  } else if (vizType === 'bullet') {
+    ranges = tokenizeToNumericArray(ranges) || [0, data.measures * 1.1];
+    rangeLabels = tokenizeToStringArray(rangeLabels);
+    markerLabels = tokenizeToStringArray(markerLabels);
+    markerLines = tokenizeToNumericArray(markerLines);
+    markerLineLabels = tokenizeToStringArray(markerLineLabels);
+    markers = tokenizeToNumericArray(markers);
+  }
+
+  return {
+    width,
+    height,
+    data,
+    annotationData,
+    annotationLayers,
+    areaStackedStyle: stackedStyle,
+    baseColor: colorPicker,
+    bottomMargin,
+    colorScheme,
+    comparisonType,
+    contribution,
+    entity,
+    isBarStacked: barStacked,
+    isDonut: donut,
+    isPieLabelOutside: labelsOutside,
+    leftMargin,
+    lineInterpolation,
+    markerLabels,
+    markerLines,
+    markerLineLabels,
+    markers,
+    maxBubbleSize: parseInt(maxBubbleSize, 10),
+    numberFormat,
+    onBrushEnd: isTruthy(sendTimeRange)
+      ? timeRange => {
+          onAddFilter('__time_range', timeRange, false, true);
+        }
+      : undefined,
+    onError,
+    orderBars,
+    pieLabelType,
+    rangeLabels,
+    ranges,
+    reduceXTicks,
+    showBarValue,
+    showBrush,
+    showControls,
+    showLabels,
+    showLegend,
+    showMarkers,
+    sizeField: size,
+    useRichTooltip: richTooltip,
+    vizType,
+    xAxisFormat,
+    xAxisLabel,
+    xAxisShowMinMax: xAxisShowminmax,
+    xField: x,
+    xIsLogScale: xLogScale,
+    xTicksLayout,
+    yAxisFormat,
+    yAxis2Format,
+    yAxisBounds,
+    yAxis2Bounds,
+    yAxisLabel,
+    yAxisShowMinMax: yAxisShowminmax,
+    yAxis2ShowMinMax: yAxis2Showminmax,
+    yField: y,
+    yIsLogScale: yLogScale,
+  };
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils.js
new file mode 100644
index 0000000..6f62111
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils.js
@@ -0,0 +1,423 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import d3 from 'd3';
+import d3tip from 'd3-tip';
+import dompurify from 'dompurify';
+import { smartDateFormatter, getNumberFormatter } from '@superset-ui/core';
+// Regexp for the label added to time shifted series
+// (1 hour offset, 2 days offset, etc.)
+const TIME_SHIFT_PATTERN = /\d+ \w+ offset/;
+
+const ANIMATION_TIME = 1000;
+
+export function cleanColorInput(value) {
+  // for superset series that should have the same color
+  return String(value)
+    .trim()
+    .replace(' (right axis)', '')
+    .split(', ')
+    .filter(k => !TIME_SHIFT_PATTERN.test(k))
+    .join(', ');
+}
+
+/**
+ * If format is smart_date, format date
+ * Otherwise, format number with the given format name
+ * @param {*} format
+ */
+export function getTimeOrNumberFormatter(format) {
+  return format === 'smart_date' ? smartDateFormatter : getNumberFormatter(format);
+}
+
+export function drawBarValues(svg, data, stacked, axisFormat) {
+  const format = getNumberFormatter(axisFormat);
+  const countSeriesDisplayed = data.filter(d => !d.disabled).length;
+  const totalStackedValues =
+    stacked && data.length !== 0
+      ? data[0].values.map((bar, iBar) => {
+          const bars = data.filter(series => !series.disabled).map(series => series.values[iBar]);
+
+          return d3.sum(bars, d => d.y);
+        })
+      : [];
+  svg.selectAll('.bar-chart-label-group').remove();
+  setTimeout(() => {
+    svg.selectAll('.bar-chart-label-group').remove();
+    const groupLabels = svg
+      .select('g.nv-barsWrap')
+      .append('g')
+      .attr('class', 'bar-chart-label-group');
+    svg
+      .selectAll('g.nv-group')
+      .filter((d, i) => !stacked || i === countSeriesDisplayed - 1)
+      .selectAll('rect')
+      .each(function each(d, index) {
+        const rectObj = d3.select(this);
+        const transformAttr = rectObj.attr('transform');
+        const xPos = parseFloat(rectObj.attr('x'));
+        const yPos = parseFloat(rectObj.attr('y'));
+        const rectWidth = parseFloat(rectObj.attr('width'));
+        const rectHeight = parseFloat(rectObj.attr('height'));
+        const textEls = groupLabels
+          .append('text')
+          .text(format(stacked ? totalStackedValues[index] : d.y))
+          .attr('transform', transformAttr)
+          .attr('class', 'bar-chart-label');
+
+        // fine tune text position
+        const bbox = textEls.node().getBBox();
+        const labelWidth = bbox.width;
+        const labelHeight = bbox.height;
+        textEls.attr('x', xPos + rectWidth / 2 - labelWidth / 2);
+        if (rectObj.attr('class').includes('positive')) {
+          textEls.attr('y', yPos - 5);
+        } else {
+          textEls.attr('y', yPos + rectHeight + labelHeight);
+        }
+      });
+  }, ANIMATION_TIME);
+}
+
+// Formats the series key to account for a possible NULL value
+function getFormattedKey(seriesKey, shouldDompurify) {
+  if (seriesKey === '<NULL>') {
+    return `&lt;${seriesKey.slice(1, -1)}&gt;`;
+  }
+
+  return shouldDompurify ? dompurify.sanitize(seriesKey) : seriesKey;
+}
+
+// Custom sorted tooltip
+// use a verbose formatter for times
+export function generateRichLineTooltipContent(d, timeFormatter, valueFormatter) {
+  let tooltip = '';
+  tooltip +=
+    "<table><thead><tr><td colspan='3'>" +
+    `<strong class='x-value'>${timeFormatter(d.value)}</strong>` +
+    '</td></tr></thead><tbody>';
+  d.series.sort((a, b) => (a.value >= b.value ? -1 : 1));
+  d.series.forEach(series => {
+    const key = getFormattedKey(series.key, true);
+    tooltip +=
+      `<tr class="${series.highlight ? 'emph' : ''}">` +
+      `<td class='legend-color-guide' style="opacity: ${series.highlight ? '1' : '0.75'};"">` +
+      '<div ' +
+      `style="border: 2px solid ${series.highlight ? 'black' : 'transparent'}; background-color: ${
+        series.color
+      };"` +
+      '></div>' +
+      '</td>' +
+      `<td>${key}</td>` +
+      `<td>${valueFormatter(series.value)}</td>` +
+      '</tr>';
+  });
+  tooltip += '</tbody></table>';
+
+  return dompurify.sanitize(tooltip);
+}
+
+export function generateCompareTooltipContent(d, valueFormatter) {
+  let tooltip = '';
+  tooltip +=
+    "<table><thead><tr><td colspan='3'>" +
+    `<strong class='x-value'>${d.value}</strong>` +
+    '</td></tr></thead><tbody>';
+  d.series.sort((a, b) => (a.value >= b.value ? -1 : 1));
+  d.series.forEach(series => {
+    const key = getFormattedKey(series.key, true);
+    tooltip +=
+      `<tr class="${series.highlight ? 'emph' : ''}">` +
+      `<td class='legend-color-guide' style="opacity: ${series.highlight ? '1' : '0.75'};"">` +
+      '<div ' +
+      `style="border: 2px solid ${series.highlight ? 'black' : 'transparent'}; background-color: ${
+        series.color
+      };"` +
+      '></div>' +
+      '</td>' +
+      `<td>${key}</td>` +
+      `<td>${valueFormatter(series.value)}</td>` +
+      '</tr>';
+  });
+  tooltip += '</tbody></table>';
+
+  return dompurify.sanitize(tooltip);
+}
+
+export function generateAreaChartTooltipContent(d, timeFormatter, valueFormatter, chart) {
+  const total =
+    chart.style() === 'expand'
+      ? // expand mode does not include total row
+        d3.sum(d.series, s => s.value)
+      : // other modes include total row at the end
+        d.series[d.series.length - 1].value;
+  let tooltip = '';
+  tooltip +=
+    "<table><thead><tr><td colspan='4'>" +
+    `<strong class='x-value'>${timeFormatter(d.value)}</strong>` +
+    '</td></tr></thead><tbody>' +
+    '<tr class="tooltip-header"><td></td><td>Category</td><td>Value</td><td>% to total</td></tr>';
+  d.series.forEach(series => {
+    const key = getFormattedKey(series.key, true);
+    let trClass = '';
+    if (series.highlight) {
+      trClass = 'superset-legacy-chart-nvd3-tr-highlight';
+    } else if (series.key === 'TOTAL') {
+      trClass = 'superset-legacy-chart-nvd3-tr-total';
+    }
+    tooltip +=
+      `<tr class="${trClass}" style="border-color: ${series.color}">` +
+      `<td style="color: ${series.color}">${series.key === 'TOTAL' ? '' : '&#9724;'}</td>` +
+      `<td>${key}</td>` +
+      `<td>${valueFormatter(series.value)}</td>` +
+      `<td>${((100 * series.value) / total).toFixed(2)}%</td>` +
+      '</tr>';
+  });
+  tooltip += '</tbody></table>';
+
+  return dompurify.sanitize(tooltip);
+}
+
+export function generateMultiLineTooltipContent(d, xFormatter, yFormatters) {
+  const tooltipTitle = xFormatter(d.value);
+  let tooltip = '';
+
+  tooltip +=
+    "<table><thead><tr><td colspan='3'>" +
+    `<strong class='x-value'>${tooltipTitle}</strong>` +
+    '</td></tr></thead><tbody>';
+
+  d.series.forEach((series, i) => {
+    const yFormatter = yFormatters[i];
+    const key = getFormattedKey(series.key, false);
+    tooltip +=
+      "<tr><td class='legend-color-guide'>" +
+      `<div style="background-color: ${series.color};"></div></td>` +
+      `<td class='key'>${key}</td>` +
+      `<td class='value'>${yFormatter(series.value)}</td></tr>`;
+  });
+
+  tooltip += '</tbody></table>';
+
+  return tooltip;
+}
+
+export function generateTimePivotTooltip(d, xFormatter, yFormatter) {
+  const tooltipTitle = xFormatter(d.value);
+  let tooltip = '';
+
+  tooltip +=
+    "<table><thead><tr><td colspan='3'>" +
+    `<strong class='x-value'>${tooltipTitle}</strong>` +
+    '</td></tr></thead><tbody>';
+
+  d.series.forEach(series => {
+    if (series.highlight) {
+      let label = '';
+      if (series.key === 'current') {
+        label = series.key;
+      } else {
+        label = `${series.key} of the selected frequency:`;
+      }
+      tooltip +=
+        "<tr><td class='legend-color-guide'>" +
+        `<div style="background-color: ${series.color};"></div></td>` +
+        `<td class='key'>${label}</td>` +
+        `<td class='value'>${yFormatter(series.value)}</td></tr>`;
+    }
+  });
+
+  tooltip += '</tbody></table>';
+
+  return dompurify.sanitize(tooltip);
+}
+
+function getLabel(stringOrObjectWithLabel) {
+  return stringOrObjectWithLabel.label || stringOrObjectWithLabel;
+}
+
+function createHTMLRow(col1, col2) {
+  return `<tr><td>${col1}</td><td>${col2}</td></tr>`;
+}
+
+export function generateBubbleTooltipContent({
+  point,
+  entity,
+  xField,
+  yField,
+  sizeField,
+  xFormatter,
+  yFormatter,
+  sizeFormatter,
+}) {
+  let s = '<table>';
+  s +=
+    `<tr><td style="color: ${point.color};">` +
+    `<strong>${point[entity]}</strong> (${point.group})` +
+    '</td></tr>';
+  s += createHTMLRow(getLabel(xField), xFormatter(point.x));
+  s += createHTMLRow(getLabel(yField), yFormatter(point.y));
+  s += createHTMLRow(getLabel(sizeField), sizeFormatter(point.size));
+  s += '</table>';
+
+  return s;
+}
+
+// shouldRemove indicates whether the nvtooltips should be removed from the DOM
+export function hideTooltips(shouldRemove) {
+  const targets = document.querySelectorAll('.nvtooltip');
+  if (targets.length > 0) {
+    // Only set opacity to 0 when hiding tooltips so they would reappear
+    // on hover, which sets the opacity to 1
+    targets.forEach(t => {
+      if (shouldRemove) {
+        t.remove();
+      } else {
+        // eslint-disable-next-line no-param-reassign
+        t.style.opacity = 0;
+      }
+    });
+  }
+}
+
+export function generateTooltipClassName(uuid) {
+  return `tooltip-${uuid}`;
+}
+
+export function removeTooltip(uuid) {
+  const classSelector = `.${generateTooltipClassName(uuid)}`;
+  const target = document.querySelector(classSelector);
+  if (target) {
+    target.remove();
+  }
+}
+
+export function wrapTooltip(chart) {
+  const tooltipLayer =
+    chart.useInteractiveGuideline && chart.useInteractiveGuideline()
+      ? chart.interactiveLayer
+      : chart;
+  const tooltipGeneratorFunc = tooltipLayer.tooltip.contentGenerator();
+  tooltipLayer.tooltip.contentGenerator(d => {
+    let tooltip = `<div>`;
+    tooltip += tooltipGeneratorFunc(d);
+    tooltip += '</div>';
+
+    return tooltip;
+  });
+}
+
+export function tipFactory(layer) {
+  return d3tip()
+    .attr('class', `d3-tip ${layer.annotationTipClass || ''}`)
+    .direction('n')
+    .offset([-5, 0])
+    .html(d => {
+      if (!d) {
+        return '';
+      }
+      const title =
+        d[layer.titleColumn] && d[layer.titleColumn].length > 0
+          ? `${d[layer.titleColumn]} - ${layer.name}`
+          : layer.name;
+      const body = Array.isArray(layer.descriptionColumns)
+        ? layer.descriptionColumns.map(c => d[c])
+        : Object.values(d);
+
+      return `<div><strong>${title}</strong></div><br/><div>${body.join(', ')}</div>`;
+    });
+}
+
+export function getMaxLabelSize(svg, axisClass) {
+  // axis class = .nv-y2  // second y axis on dual line chart
+  // axis class = .nv-x  // x axis on time series line chart
+  const tickTexts = svg.selectAll(`.${axisClass} g.tick text`);
+  if (tickTexts.length > 0) {
+    const lengths = tickTexts[0].map(text => text.getComputedTextLength());
+
+    return Math.ceil(Math.max(0, ...lengths));
+  }
+
+  return 0;
+}
+
+export function formatLabel(input, verboseMap = {}) {
+  // The input for label may be a string or an array of string
+  // When using the time shift feature, the label contains a '---' in the array
+  const verboseLookup = s => verboseMap[s] || s;
+
+  return Array.isArray(input) && input.length > 0
+    ? input.map(l => (TIME_SHIFT_PATTERN.test(l) ? l : verboseLookup(l))).join(', ')
+    : verboseLookup(input);
+}
+
+const MIN_BAR_WIDTH = 18;
+
+export function computeBarChartWidth(data, stacked, maxWidth) {
+  const barCount = stacked
+    ? d3.max(data, d => d.values.length)
+    : d3.sum(data, d => d.values.length);
+
+  const barWidth = barCount * MIN_BAR_WIDTH;
+
+  return Math.max(barWidth, maxWidth);
+}
+
+export function tryNumify(s) {
+  // Attempts casting to Number, returns string when failing
+  const n = Number(s);
+
+  return Number.isNaN(n) ? s : n;
+}
+
+export function stringifyTimeRange(extent) {
+  if (extent.some(d => d.toISOString === undefined)) {
+    return null;
+  }
+
+  return extent.map(d => d.toISOString().slice(0, -1)).join(' : ');
+}
+
+export function setAxisShowMaxMin(axis, showminmax) {
+  if (axis && axis.showMaxMin && showminmax !== undefined) {
+    axis.showMaxMin(showminmax);
+  }
+}
+
+export function computeYDomain(data) {
+  if (Array.isArray(data) && data.length > 0 && Array.isArray(data[0].values)) {
+    const extents = data.filter(d => !d.disabled).map(row => d3.extent(row.values, v => v.y));
+    const minOfMin = d3.min(extents, ([min]) => min);
+    const maxOfMax = d3.max(extents, ([, max]) => max);
+
+    return [minOfMin, maxOfMax];
+  }
+
+  return [0, 1];
+}
+
+export function computeStackedYDomain(data) {
+  if (Array.isArray(data) && data.length > 0 && Array.isArray(data[0].values)) {
+    const series = data.filter(d => !d.disabled).map(d => d.values.map(v => v.y));
+    const stackedValues = series[0].map((_, i) => series.reduce((acc, cur) => acc + cur[i], 0));
+
+    return [Math.min(0, ...stackedValues), Math.max(0, ...stackedValues)];
+  }
+
+  return [0, 1];
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils/isTruthy.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils/isTruthy.js
new file mode 100644
index 0000000..2594a63
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils/isTruthy.js
@@ -0,0 +1,28 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function isTruthy(obj) {
+  if (typeof obj === 'boolean') {
+    return obj;
+  }
+  if (typeof obj === 'string') {
+    return ['yes', 'y', 'true', 't', '1'].includes(obj.toLowerCase());
+  }
+
+  return !!obj;
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils/tokenize.ts b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils/tokenize.ts
new file mode 100644
index 0000000..fa667f6
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils/tokenize.ts
@@ -0,0 +1,32 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { validateNumber } from '@superset-ui/core';
+
+export function tokenizeToNumericArray(value: string): number[] | null {
+  if (!value.trim()) return null;
+  const tokens = value.split(',');
+  if (tokens.some(token => validateNumber(token))) throw new Error('All values should be numeric');
+  return tokens.map(token => parseFloat(token));
+}
+
+export function tokenizeToStringArray(value: string): string[] | null {
+  if (!value.trim()) return null;
+  const tokens = value.split(',');
+  return tokens.map(token => token.trim());
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js
new file mode 100644
index 0000000..bf87360
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js
@@ -0,0 +1,81 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+function extractTypes(metadata) {
+  return Object.keys(metadata).reduce((prev, key) => {
+    const result = prev;
+    result[key] = key;
+
+    return result;
+  }, {});
+}
+
+export const ANNOTATION_TYPES_METADATA = {
+  FORMULA: {
+    value: 'FORMULA',
+    label: 'Formula',
+  },
+  EVENT: {
+    value: 'EVENT',
+    label: 'Event',
+    supportNativeSource: true,
+  },
+  INTERVAL: {
+    value: 'INTERVAL',
+    label: 'Interval',
+    supportNativeSource: true,
+  },
+  TIME_SERIES: {
+    value: 'TIME_SERIES',
+    label: 'Time Series',
+  },
+};
+
+export const ANNOTATION_TYPES = extractTypes(ANNOTATION_TYPES_METADATA);
+
+export const DEFAULT_ANNOTATION_TYPE = ANNOTATION_TYPES.FORMULA;
+
+export const ANNOTATION_SOURCE_TYPES_METADATA = {
+  NATIVE: {
+    value: 'NATIVE',
+    label: 'Superset annotation',
+  },
+};
+
+export const ANNOTATION_SOURCE_TYPES = extractTypes(ANNOTATION_SOURCE_TYPES_METADATA);
+
+export function requiresQuery(annotationSourceType) {
+  return !!annotationSourceType;
+}
+
+const NATIVE_COLUMN_NAMES = {
+  descriptionColumns: ['long_descr'],
+  intervalEndColumn: 'end_dttm',
+  timeColumn: 'start_dttm',
+  titleColumn: 'short_descr',
+};
+
+export function applyNativeColumns(annotation) {
+  if (annotation.sourceType === ANNOTATION_SOURCE_TYPES.NATIVE) {
+    return { ...annotation, ...NATIVE_COLUMN_NAMES };
+  }
+
+  return annotation;
+}
+
+export default ANNOTATION_TYPES;
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/exploreUtils.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/exploreUtils.js
new file mode 100644
index 0000000..baae329
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/exploreUtils.js
@@ -0,0 +1,63 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint camelcase: 0 */
+import URI from 'urijs';
+import safeStringify from 'fast-safe-stringify';
+
+const MAX_URL_LENGTH = 8000;
+
+export function getURIDirectory(formData, endpointType = 'base') {
+  // Building the directory part of the URI
+  let directory = '/superset/explore/';
+  if (['json', 'csv', 'query', 'results', 'samples'].includes(endpointType)) {
+    directory = '/superset/explore_json/';
+  }
+
+  return directory;
+}
+
+export function getExploreLongUrl(formData, endpointType, allowOverflow = true, extraSearch = {}) {
+  if (!formData.datasource) {
+    return null;
+  }
+
+  const uri = new URI('/');
+  const directory = getURIDirectory(formData, endpointType);
+  const search = uri.search(true);
+  Object.keys(extraSearch).forEach(key => {
+    search[key] = extraSearch[key];
+  });
+  search.form_data = safeStringify(formData);
+  if (endpointType === 'standalone') {
+    search.standalone = 'true';
+  }
+  const url = uri.directory(directory).search(search).toString();
+  if (!allowOverflow && url.length > MAX_URL_LENGTH) {
+    const minimalFormData = {
+      datasource: formData.datasource,
+      viz_type: formData.viz_type,
+    };
+
+    return getExploreLongUrl(minimalFormData, endpointType, false, {
+      URL_IS_TOO_LONG_TO_SHARE: null,
+    });
+  }
+
+  return url;
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/test/tsconfig.json b/superset-frontend/plugins/legacy-preset-chart-nvd3/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/test/utils.test.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/test/utils.test.js
new file mode 100644
index 0000000..96c042e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/test/utils.test.js
@@ -0,0 +1,189 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  computeStackedYDomain,
+  computeYDomain,
+  getTimeOrNumberFormatter,
+  formatLabel,
+  tryNumify,
+} from '../src/utils';
+
+const DATA = [
+  {
+    key: ['East Asia & Pacific'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 1031863394.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 1034767718.0,
+      },
+    ],
+  },
+  {
+    key: ['South Asia'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 572036107.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 584143236.0,
+      },
+    ],
+  },
+  {
+    key: ['Europe & Central Asia'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 660881033.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 668526708.0,
+      },
+    ],
+  },
+];
+
+const DATA_WITH_DISABLED_SERIES = [
+  {
+    disabled: true,
+    key: ['East Asia & Pacific'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 1031863394.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 1034767718.0,
+      },
+    ],
+  },
+  {
+    disabled: true,
+    key: ['South Asia'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 572036107.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 584143236.0,
+      },
+    ],
+  },
+  {
+    key: ['Europe & Central Asia'],
+    values: [
+      {
+        x: -315619200000.0,
+        y: 660881033.0,
+      },
+      {
+        x: -283996800000.0,
+        y: 668526708.0,
+      },
+    ],
+  },
+];
+
+describe('nvd3/utils', () => {
+  describe('getTimeOrNumberFormatter(format)', () => {
+    it('is a function', () => {
+      expect(typeof getTimeOrNumberFormatter).toBe('function');
+    });
+    it('returns a date formatter if format is smart_date', () => {
+      const time = new Date(Date.UTC(2018, 10, 21, 22, 11));
+      expect(getTimeOrNumberFormatter('smart_date')(time)).toBe('10:11');
+    });
+    it('returns a number formatter otherwise', () => {
+      expect(getTimeOrNumberFormatter('.3s')(3000000)).toBe('3.00M');
+      expect(getTimeOrNumberFormatter()(3000100)).toBe('3M');
+    });
+  });
+
+  describe('formatLabel()', () => {
+    const verboseMap = {
+      foo: 'Foo',
+      bar: 'Bar',
+    };
+
+    it('formats simple labels', () => {
+      expect(formatLabel('foo')).toBe('foo');
+      expect(formatLabel(['foo'])).toBe('foo');
+      expect(formatLabel(['foo', 'bar'])).toBe('foo, bar');
+    });
+    it('formats simple labels with lookups', () => {
+      expect(formatLabel('foo', verboseMap)).toBe('Foo');
+      expect(formatLabel('baz', verboseMap)).toBe('baz');
+      expect(formatLabel(['foo'], verboseMap)).toBe('Foo');
+      expect(formatLabel(['foo', 'bar', 'baz'], verboseMap)).toBe('Foo, Bar, baz');
+    });
+    it('deals with time shift properly', () => {
+      expect(formatLabel(['foo', '1 hour offset'], verboseMap)).toBe('Foo, 1 hour offset');
+      expect(formatLabel(['foo', 'bar', 'baz', '2 hours offset'], verboseMap)).toBe(
+        'Foo, Bar, baz, 2 hours offset',
+      );
+    });
+  });
+
+  describe('tryNumify()', () => {
+    it('tryNumify works as expected', () => {
+      expect(tryNumify(5)).toBe(5);
+      expect(tryNumify('5')).toBe(5);
+      expect(tryNumify('5.1')).toBe(5.1);
+      expect(tryNumify('a string')).toBe('a string');
+    });
+  });
+
+  describe('computeYDomain()', () => {
+    it('works with invalid data', () => {
+      expect(computeYDomain('foo')).toEqual([0, 1]);
+    });
+
+    it('works with all series enabled', () => {
+      expect(computeYDomain(DATA)).toEqual([572036107.0, 1034767718.0]);
+    });
+
+    it('works with some series disabled', () => {
+      expect(computeYDomain(DATA_WITH_DISABLED_SERIES)).toEqual([660881033.0, 668526708.0]);
+    });
+  });
+
+  describe('computeStackedYDomain()', () => {
+    it('works with invalid data', () => {
+      expect(computeStackedYDomain('foo')).toEqual([0, 1]);
+    });
+
+    it('works with all series enabled', () => {
+      expect(computeStackedYDomain(DATA)).toEqual([0, 2287437662.0]);
+    });
+
+    it('works with some series disabled', () => {
+      expect(computeStackedYDomain(DATA_WITH_DISABLED_SERIES)).toEqual([0, 668526708.0]);
+    });
+  });
+});
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/test/utils/isTruthy.test.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/test/utils/isTruthy.test.js
new file mode 100644
index 0000000..f1914ce
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/test/utils/isTruthy.test.js
@@ -0,0 +1,57 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import isTruthy from '../../src/utils/isTruthy';
+
+describe('isTruthy', () => {
+  it('evals false-looking strings properly', () => {
+    expect(isTruthy('f')).toBe(false);
+    expect(isTruthy('false')).toBe(false);
+    expect(isTruthy('no')).toBe(false);
+    expect(isTruthy('n')).toBe(false);
+    expect(isTruthy('F')).toBe(false);
+    expect(isTruthy('False')).toBe(false);
+    expect(isTruthy('NO')).toBe(false);
+    expect(isTruthy('N')).toBe(false);
+  });
+  it('evals true-looking strings properly', () => {
+    expect(isTruthy('t')).toBe(true);
+    expect(isTruthy('true')).toBe(true);
+    expect(isTruthy('yes')).toBe(true);
+    expect(isTruthy('y')).toBe(true);
+    expect(isTruthy('Y')).toBe(true);
+    expect(isTruthy('True')).toBe(true);
+    expect(isTruthy('Yes')).toBe(true);
+    expect(isTruthy('YES')).toBe(true);
+  });
+  it('evals bools properly', () => {
+    expect(isTruthy(false)).toBe(false);
+    expect(isTruthy(true)).toBe(true);
+  });
+  it('evals ints properly', () => {
+    expect(isTruthy(0)).toBe(false);
+    expect(isTruthy(1)).toBe(true);
+  });
+  it('evals constants properly', () => {
+    expect(isTruthy(null)).toBe(false);
+    expect(isTruthy(undefined)).toBe(false);
+  });
+  it('string auto is false', () => {
+    expect(isTruthy('false')).toBe(false);
+  });
+});
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/test/utils/tokenize.test.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/test/utils/tokenize.test.js
new file mode 100644
index 0000000..3d1507e
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/test/utils/tokenize.test.js
@@ -0,0 +1,50 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { tokenizeToNumericArray, tokenizeToStringArray } from '../../src/utils/tokenize';
+
+describe('tokenizeToNumericArray', () => {
+  it('evals numeric strings properly', () => {
+    expect(tokenizeToNumericArray('1')).toStrictEqual([1]);
+    expect(tokenizeToNumericArray('1,2,3,4')).toStrictEqual([1, 2, 3, 4]);
+    expect(tokenizeToNumericArray('1.1,2.2,3.0,4')).toStrictEqual([1.1, 2.2, 3, 4]);
+    expect(tokenizeToNumericArray('   1, 2,   3,    4 ')).toStrictEqual([1, 2, 3, 4]);
+  });
+
+  it('evals empty strings to null', () => {
+    expect(tokenizeToNumericArray('')).toBeNull();
+    expect(tokenizeToNumericArray('    ')).toBeNull();
+  });
+
+  it('throws error on incorrect string', () => {
+    expect(() => tokenizeToNumericArray('qwerty,1,2,3')).toThrow(Error);
+  });
+});
+
+describe('tokenizeToStringArray', () => {
+  it('evals numeric strings properly', () => {
+    expect(tokenizeToStringArray('a')).toStrictEqual(['a']);
+    expect(tokenizeToStringArray('1.1 , 2.2, 3.0 ,4')).toStrictEqual(['1.1', '2.2', '3.0', '4']);
+    expect(tokenizeToStringArray('1.1,a,3, bc ,d')).toStrictEqual(['1.1', 'a', '3', 'bc', 'd']);
+  });
+
+  it('evals empty string to null', () => {
+    expect(tokenizeToStringArray('')).toBeNull();
+    expect(tokenizeToStringArray('    ')).toBeNull();
+  });
+});
diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/tsconfig.json b/superset-frontend/plugins/legacy-preset-chart-nvd3/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/README.md b/superset-frontend/plugins/plugin-chart-choropleth-map/README.md
new file mode 100644
index 0000000..fa1adc3
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/plugin-chart-choropleth-map
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-choropleth-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-choropleth-map)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-plugin-chart-choropleth-map&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-plugin-chart-choropleth-map)
+
+This plugin provides Choropleth Map for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import ChoroplethMapChartPlugin from '@superset-ui/plugin-chart-choropleth-map';
+
+new ChoroplethMapChartPlugin().configure({ key: 'choropleth-map' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui/?selectedKind=plugin-chart-choropleth-map)
+for more details.
+
+```js
+<SuperChart
+  chartType="choropleth-map"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/package.json b/superset-frontend/plugins/plugin-chart-choropleth-map/package.json
new file mode 100644
index 0000000..0be2a98
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/package.json
@@ -0,0 +1,51 @@
+{
+  "name": "@superset-ui/plugin-chart-choropleth-map",
+  "version": "0.17.5",
+  "description": "Superset Chart - Choropleth Map",
+  "sideEffects": false,
+  "private": true,
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "@types/d3-geo": "^1.11.1",
+    "@types/geojson": "^7946.0.3",
+    "@types/topojson-client": "^3.0.0",
+    "@types/topojson-specification": "^1.0.0",
+    "@vx/clip-path": "^0.0.197",
+    "@vx/event": "^0.0.198",
+    "@vx/pattern": "^0.0.197",
+    "@vx/tooltip": "^0.0.199",
+    "@vx/zoom": "^0.0.197",
+    "d3-geo": "^1.12.0",
+    "encodable": "^0.7.6",
+    "geojson": "^0.5.0",
+    "lodash": "^4.17.15",
+    "topojson-client": "^3.1.0"
+  },
+  "peerDependencies": {
+    "@types/react": "*",
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/ChoroplethMap.tsx b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/ChoroplethMap.tsx
new file mode 100644
index 0000000..61004c2
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/ChoroplethMap.tsx
@@ -0,0 +1,322 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { t } from '@superset-ui/core';
+import { Zoom } from '@vx/zoom';
+import { localPoint } from '@vx/event';
+import { RectClipPath } from '@vx/clip-path';
+import { withTooltip } from '@vx/tooltip';
+import { keyBy } from 'lodash';
+import { geoPath } from 'd3-geo';
+import type { FeatureCollection } from 'geojson';
+import { WithTooltipProvidedProps } from '@vx/tooltip/lib/enhancers/withTooltip';
+import loadMap from './loadMap';
+import MapMetadata from './MapMetadata';
+import {
+  PADDING,
+  RelativeDiv,
+  IconButton,
+  TextButton,
+  ZoomControls,
+  MiniMapControl,
+} from './components';
+import {
+  ChoroplethMapEncoding,
+  choroplethMapEncoderFactory,
+  DefaultChannelOutputs,
+} from './Encoder';
+import MapTooltip, { MapDataPoint } from './MapTooltip';
+
+const INITIAL_TRANSFORM = {
+  scaleX: 1,
+  scaleY: 1,
+  translateX: 0,
+  translateY: 0,
+  skewX: 0,
+  skewY: 0,
+};
+
+/**
+ * These props should be stored when saving the chart.
+ */
+export type ChoroplethMapVisualProps = {
+  encoding?: Partial<ChoroplethMapEncoding>;
+  map?: string;
+};
+
+export type ChoroplethMapProps = ChoroplethMapVisualProps &
+  WithTooltipProvidedProps<MapDataPoint> & {
+    data: Record<string, unknown>[];
+    height: number;
+    width: number;
+  };
+
+const defaultProps = {
+  data: [],
+  encoding: {},
+  map: 'world',
+};
+
+const missingItem = DefaultChannelOutputs;
+
+class ChoroplethMap extends React.PureComponent<
+  ChoroplethMapProps & typeof defaultProps,
+  {
+    mapShape?: {
+      metadata: MapMetadata;
+      object: FeatureCollection;
+    };
+    mapData: {
+      [key: string]: MapDataPoint;
+    };
+    showMiniMap: boolean;
+  }
+> {
+  static defaultProps = defaultProps;
+
+  createEncoder = choroplethMapEncoderFactory.createSelector();
+
+  constructor(props: ChoroplethMapProps & typeof defaultProps) {
+    super(props);
+
+    this.state = {
+      mapData: {},
+      mapShape: undefined,
+      showMiniMap: true,
+    };
+  }
+
+  componentDidMount() {
+    this.loadMap();
+    this.processData();
+  }
+
+  componentDidUpdate(prevProps: ChoroplethMapProps) {
+    if (prevProps.map !== this.props.map) {
+      this.loadMap();
+    }
+    if (prevProps.data !== this.props.data || prevProps.encoding !== this.props.encoding) {
+      this.processData();
+    }
+  }
+
+  handleMouseOver = (event: React.MouseEvent<SVGPathElement>, datum?: MapDataPoint) => {
+    const coords = localPoint(event);
+    this.props.showTooltip({
+      tooltipLeft: coords?.x,
+      tooltipTop: coords?.y,
+      tooltipData: datum,
+    });
+  };
+
+  toggleMiniMap = () => {
+    const { showMiniMap } = this.state;
+    this.setState({
+      showMiniMap: !showMiniMap,
+    });
+  };
+
+  processData() {
+    const { data, encoding } = this.props;
+    const encoder = this.createEncoder(encoding);
+    const { key, fill, opacity, stroke, strokeWidth } = encoder.channels;
+
+    encoder.setDomainFromDataset(data);
+
+    const mapData = keyBy(
+      data.map(d => ({
+        key: key.getValueFromDatum<string>(d, DefaultChannelOutputs.key),
+        fill: fill.encodeDatum(d, DefaultChannelOutputs.fill),
+        opacity: opacity.encodeDatum(d, DefaultChannelOutputs.opacity),
+        stroke: stroke.encodeDatum(d, DefaultChannelOutputs.stroke),
+        strokeWidth: strokeWidth.encodeDatum(d, DefaultChannelOutputs.strokeWidth),
+        datum: d,
+      })),
+      d => d.key,
+    );
+
+    this.setState({ mapData });
+  }
+
+  loadMap() {
+    const { map } = this.props;
+    this.setState({ mapShape: undefined });
+    loadMap(map).then(mapShape => {
+      this.setState({ mapShape });
+    });
+  }
+
+  renderMap() {
+    const { height, width, hideTooltip } = this.props;
+    const { mapShape, mapData } = this.state;
+
+    if (typeof mapShape !== 'undefined') {
+      const { metadata, object } = mapShape;
+      const { keyAccessor } = metadata;
+      const projection = metadata.createProjection().fitExtent(
+        [
+          [PADDING, PADDING],
+          [width - PADDING * 2, height - PADDING * 2],
+        ],
+        object,
+      );
+      const path = geoPath().projection(projection);
+
+      return object.features.map(f => {
+        const key = keyAccessor(f);
+        const encodedDatum = mapData[key] || missingItem;
+        const { stroke, fill, strokeWidth, opacity } = encodedDatum;
+
+        return (
+          // eslint-disable-next-line jsx-a11y/mouse-events-have-key-events
+          <path
+            key={key}
+            vectorEffect="non-scaling-stroke"
+            stroke={stroke}
+            strokeWidth={strokeWidth}
+            fill={fill}
+            opacity={opacity}
+            d={path(f) || ''}
+            onMouseOver={event => this.handleMouseOver(event, encodedDatum)}
+            onMouseMove={event => this.handleMouseOver(event, encodedDatum)}
+            onMouseOut={hideTooltip}
+            onBlur={hideTooltip}
+          />
+        );
+      });
+    }
+
+    return null;
+  }
+
+  render() {
+    const {
+      height,
+      width,
+      encoding,
+      tooltipOpen,
+      tooltipLeft,
+      tooltipTop,
+      tooltipData,
+    } = this.props;
+    const { showMiniMap } = this.state;
+    const encoder = this.createEncoder(encoding);
+
+    const renderedMap = this.renderMap();
+    const miniMapTransform = `translate(${(width * 3) / 4 - PADDING}, ${
+      (height * 3) / 4 - PADDING
+    }) scale(0.25)`;
+
+    return (
+      <>
+        <Zoom
+          style={{ width, height }}
+          width={width}
+          height={height}
+          scaleXMin={0.75}
+          scaleXMax={8}
+          scaleYMin={0.75}
+          scaleYMax={8}
+          transformMatrix={INITIAL_TRANSFORM}
+        >
+          {zoom => (
+            <RelativeDiv>
+              <svg
+                width={width}
+                height={height}
+                style={{ cursor: zoom.isDragging ? 'grabbing' : 'grab' }}
+              >
+                <RectClipPath id="zoom-clip" width={width} height={height} />
+                <g
+                  onWheel={zoom.handleWheel}
+                  // eslint-disable-next-line react/jsx-handler-names
+                  onMouseDown={zoom.dragStart}
+                  // eslint-disable-next-line react/jsx-handler-names
+                  onMouseMove={zoom.dragMove}
+                  // eslint-disable-next-line react/jsx-handler-names
+                  onMouseUp={zoom.dragEnd}
+                  onMouseLeave={() => {
+                    if (!zoom.isDragging) return;
+                    zoom.dragEnd();
+                  }}
+                  onDoubleClick={event => {
+                    const point = localPoint(event) || undefined;
+                    zoom.scale({ scaleX: 1.1, scaleY: 1.1, point });
+                  }}
+                >
+                  <rect width={width} height={height} fill="transparent" />
+                  <g transform={zoom.toString()}>{renderedMap}</g>
+                </g>
+                {showMiniMap && (
+                  <g clipPath="url(#zoom-clip)" transform={miniMapTransform}>
+                    <rect width={width} height={height} fill="#fff" stroke="#999" />
+                    {renderedMap}
+                    <rect
+                      width={width}
+                      height={height}
+                      fill="white"
+                      fillOpacity={0.2}
+                      stroke="#999"
+                      strokeWidth={4}
+                      transform={zoom.toStringInvert()}
+                    />
+                  </g>
+                )}
+              </svg>
+              <ZoomControls>
+                <IconButton type="button" onClick={() => zoom.scale({ scaleX: 1.2, scaleY: 1.2 })}>
+                  +
+                </IconButton>
+                <IconButton type="button" onClick={() => zoom.scale({ scaleX: 0.8, scaleY: 0.8 })}>
+                  -
+                </IconButton>
+                <TextButton
+                  type="button"
+                  // eslint-disable-next-line react/jsx-handler-names
+                  onClick={zoom.clear}
+                >
+                  Reset
+                </TextButton>
+              </ZoomControls>
+              <MiniMapControl>
+                <TextButton
+                  type="button"
+                  // eslint-disable-next-line react/jsx-handler-names
+                  onClick={this.toggleMiniMap}
+                >
+                  {showMiniMap ? t('Hide Mini Map') : t('Show Mini Map')}
+                </TextButton>
+              </MiniMapControl>
+            </RelativeDiv>
+          )}
+        </Zoom>
+        {tooltipOpen && (
+          <MapTooltip
+            encoder={encoder}
+            top={tooltipTop}
+            left={tooltipLeft}
+            tooltipData={tooltipData}
+          />
+        )}
+      </>
+    );
+  }
+}
+
+export default withTooltip(ChoroplethMap);
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/Encoder.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/Encoder.ts
new file mode 100644
index 0000000..20503b1
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/Encoder.ts
@@ -0,0 +1,43 @@
+import { createEncoderFactory, DeriveEncoding, Encoder, DeriveChannelOutputs } from 'encodable';
+
+type ChoroplethMapEncodingConfig = {
+  key: ['Text', string];
+  fill: ['Color', string];
+  opacity: ['Numeric', number];
+  stroke: ['Color', string];
+  strokeWidth: ['Numeric', number];
+  tooltip: ['Text', string, 'multiple'];
+};
+
+export type ChoroplethMapEncoding = DeriveEncoding<ChoroplethMapEncodingConfig>;
+
+export type ChoroplethMapEncoder = Encoder<ChoroplethMapEncodingConfig>;
+
+export type ChoroplethMapChannelOutputs = DeriveChannelOutputs<ChoroplethMapEncodingConfig>;
+
+export const DefaultChannelOutputs = {
+  key: '',
+  fill: '#f0f0f0',
+  opacity: 1,
+  stroke: '#ccc',
+  strokeWidth: 1,
+};
+
+export const choroplethMapEncoderFactory = createEncoderFactory<ChoroplethMapEncodingConfig>({
+  channelTypes: {
+    key: 'Text',
+    fill: 'Color',
+    opacity: 'Numeric',
+    stroke: 'Color',
+    strokeWidth: 'Numeric',
+    tooltip: 'Text',
+  },
+  defaultEncoding: {
+    key: { field: 'key', title: 'Location' },
+    fill: { value: DefaultChannelOutputs.fill },
+    opacity: { value: DefaultChannelOutputs.opacity },
+    stroke: { value: DefaultChannelOutputs.stroke },
+    strokeWidth: { value: DefaultChannelOutputs.strokeWidth },
+    tooltip: [],
+  },
+});
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/MapMetadata.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/MapMetadata.ts
new file mode 100644
index 0000000..ca8f494
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/MapMetadata.ts
@@ -0,0 +1,36 @@
+import type { FeatureCollection } from 'geojson';
+import { feature } from 'topojson-client';
+import { get } from 'lodash/fp';
+import { RawMapMetadata } from '../types';
+import Projection from './Projection';
+
+export default class MapMetadata {
+  config: RawMapMetadata;
+
+  keyAccessor: (...args: unknown[]) => string;
+
+  constructor(metadata: RawMapMetadata) {
+    const { keyField } = metadata;
+
+    this.config = metadata;
+    this.keyAccessor = get(keyField);
+  }
+
+  loadMap(): Promise<FeatureCollection> {
+    const { key } = this.config;
+
+    return this.config.type === 'topojson'
+      ? this.config.load().then(map => feature(map, map.objects[key]) as FeatureCollection)
+      : this.config.load();
+  }
+
+  createProjection() {
+    const { projection = 'Mercator', rotate } = this.config;
+    const projectionFn = Projection[projection]();
+    if (rotate) {
+      projectionFn.rotate(rotate);
+    }
+
+    return projectionFn;
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/MapTooltip.tsx b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/MapTooltip.tsx
new file mode 100644
index 0000000..be6d4af
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/MapTooltip.tsx
@@ -0,0 +1,57 @@
+import React from 'react';
+import { isCompleteFieldDef } from 'encodable';
+import { uniqBy } from 'lodash';
+import { Tooltip } from '@vx/tooltip';
+import { TooltipFrame, TooltipTable } from '@superset-ui/core';
+import { ChoroplethMapChannelOutputs, ChoroplethMapEncoder } from './Encoder';
+
+export type MapDataPoint = Omit<ChoroplethMapChannelOutputs, 'tooltip'> & {
+  datum: Record<string, unknown>;
+};
+
+export type MapTooltipProps = {
+  top?: number;
+  left?: number;
+  encoder: ChoroplethMapEncoder;
+  tooltipData?: MapDataPoint;
+};
+
+export default function MapTooltip({ encoder, left, top, tooltipData }: MapTooltipProps) {
+  if (!tooltipData) {
+    return null;
+  }
+
+  const { channels } = encoder;
+  const { key, fill, stroke, strokeWidth, opacity, tooltip } = channels;
+  const { datum } = tooltipData;
+
+  const tooltipRows = [
+    { key: 'key', keyColumn: key.getTitle(), valueColumn: key.formatDatum(datum) },
+  ];
+
+  [fill, stroke, opacity, strokeWidth].forEach(channel => {
+    if (isCompleteFieldDef<string | number>(channel.definition)) {
+      tooltipRows.push({
+        key: channel.name as string,
+        keyColumn: channel.getTitle(),
+        valueColumn: channel.formatDatum(datum),
+      });
+    }
+  });
+
+  tooltip.forEach(g => {
+    tooltipRows.push({
+      key: `${g.name}`,
+      keyColumn: g.getTitle(),
+      valueColumn: g.formatDatum(datum),
+    });
+  });
+
+  return (
+    <Tooltip top={top} left={left}>
+      <TooltipFrame>
+        <TooltipTable data={uniqBy(tooltipRows, row => row.keyColumn)} />
+      </TooltipFrame>
+    </Tooltip>
+  );
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/Projection.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/Projection.ts
new file mode 100644
index 0000000..4c31935
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/Projection.ts
@@ -0,0 +1,12 @@
+import { geoMercator, geoEquirectangular, geoAlbers, geoAlbersUsa } from 'd3-geo';
+
+const Projection = {
+  Mercator: geoMercator,
+  Equirectangular: geoEquirectangular,
+  Albers: geoAlbers,
+  AlbersUsa: geoAlbersUsa,
+};
+
+type Projection = keyof typeof Projection;
+
+export default Projection;
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/components.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/components.ts
new file mode 100644
index 0000000..075ce35
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/components.ts
@@ -0,0 +1,46 @@
+import { styled, supersetTheme } from '@superset-ui/core';
+
+export const PADDING = supersetTheme.gridUnit * 4;
+
+export const RelativeDiv = styled.div`
+  position: relative;
+`;
+
+export const ZoomControls = styled.div`
+  position: absolute;
+  top: ${PADDING}px;
+  right: ${PADDING}px;
+  display: flex;
+  flex-direction: column;
+  align-items: flex-end;
+`;
+
+export const MiniMapControl = styled.div`
+  position: absolute;
+  bottom: ${PADDING + 6}px;
+  right: ${PADDING + 1}px;
+`;
+
+export const IconButton = styled.button`
+  width: ${({ theme }) => theme.gridUnit * 6}px;
+  font-size: ${({ theme }) => theme.typography.sizes.xl}px;
+  text-align: center;
+  color: #222;
+  margin: 0px;
+  margin-bottom: 2px;
+  background: #f5f8fb;
+  padding: 0px ${({ theme }) => theme.gridUnit}px;
+  border-radius: ${({ theme }) => theme.borderRadius}px;
+  border: none;
+`;
+
+export const TextButton = styled.button`
+  text-align: center;
+  font-size: ${({ theme }) => theme.typography.sizes.s}px;
+  color: #222;
+  margin: 0px;
+  background: #f5f8fb;
+  padding: ${({ theme }) => theme.gridUnit / 2}px ${({ theme }) => theme.gridUnit * 1.5}px;
+  border-radius: ${({ theme }) => theme.borderRadius}px;
+  border: none;
+`;
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/loadMap.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/loadMap.ts
new file mode 100644
index 0000000..954ad70
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/chart/loadMap.ts
@@ -0,0 +1,11 @@
+import { mapsLookup } from '../maps';
+import MapMetadata from './MapMetadata';
+
+export default function loadMap(key: string) {
+  if (key in mapsLookup) {
+    const metadata = new MapMetadata(mapsLookup[key]);
+    return metadata.loadMap().then(object => ({ metadata, object }));
+  }
+
+  return Promise.reject(new Error(`Unknown map: ${key}`));
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/configureEncodable.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/configureEncodable.ts
new file mode 100644
index 0000000..dc99044
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/configureEncodable.ts
@@ -0,0 +1,49 @@
+import {
+  Encodable,
+  ColorSchemeResolver,
+  TimeFormatResolver,
+  CategoricalColorScaleResolver,
+  defaultColorSchemeResolver,
+  addPrefix,
+} from 'encodable';
+import {
+  CategoricalColorNamespace,
+  getCategoricalSchemeRegistry,
+  getSequentialSchemeRegistry,
+  getNumberFormatter,
+  getTimeFormatter,
+  LOCAL_PREFIX,
+  getTimeFormatterRegistry,
+} from '@superset-ui/core';
+
+const timeFormat: TimeFormatResolver = ({ format, formatInLocalTime = false } = {}) => {
+  const formatString = formatInLocalTime
+    ? addPrefix(LOCAL_PREFIX, format ?? getTimeFormatterRegistry().getDefaultKey()!)
+    : format;
+
+  return getTimeFormatter(formatString);
+};
+
+const colorSchemeResolver: ColorSchemeResolver = ({ name, type = 'categorical' } = {}) => {
+  if (type === 'sequential') {
+    const scheme = getSequentialSchemeRegistry().get(name);
+
+    return typeof scheme === 'undefined' ? scheme : { type: 'sequential', ...scheme };
+  }
+  if (type === 'categorical') {
+    const scheme = getCategoricalSchemeRegistry().get(name);
+
+    return typeof scheme === 'undefined' ? scheme : { type: 'categorical', ...scheme };
+  }
+  return defaultColorSchemeResolver({ name, type });
+};
+
+const colorScaleResolver: CategoricalColorScaleResolver = ({ name, namespace } = {}) =>
+  CategoricalColorNamespace.getScale(name, namespace);
+
+export default function configureEncodable() {
+  Encodable.setNumberFormatResolver(getNumberFormatter)
+    .setTimeFormatResolver(timeFormat)
+    .setColorSchemeResolver(colorSchemeResolver)
+    .setCategoricalColorScaleResolver(colorScaleResolver);
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/images/thumbnail.png b/superset-frontend/plugins/plugin-chart-choropleth-map/src/images/thumbnail.png
new file mode 100644
index 0000000..fd31d5b
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/index.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/index.ts
new file mode 100644
index 0000000..25f2b99
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/index.ts
@@ -0,0 +1,3 @@
+export { default as ChoroplethMapChartPlugin } from './plugin';
+export { maps, mapsLookup } from './maps';
+export { default as configureEncodable } from './configureEncodable';
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/belgium-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/belgium-topo.json
new file mode 100644
index 0000000..9449de5
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/belgium-topo.json
@@ -0,0 +1,3131 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [11670, 14542],
+      [17, -7],
+      [58, 5],
+      [32, -66],
+      [9, -29],
+      [2, -47],
+      [17, -22],
+      [1, -20],
+      [-19, -33],
+      [43, -91],
+      [0, -28],
+      [-48, -27],
+      [-14, -18],
+      [-12, -44],
+      [-3, -49],
+      [5, -26],
+      [50, -9],
+      [52, -36],
+      [42, -42],
+      [40, -49],
+      [28, -56],
+      [11, -48],
+      [2, -87],
+      [-7, -62],
+      [-14, -42],
+      [-50, -20],
+      [-28, -48],
+      [-1, -20],
+      [13, -35],
+      [15, -15],
+      [59, -36],
+      [46, -36],
+      [42, -26],
+      [3, -26],
+      [-24, -24],
+      [-86, -39],
+      [0, -50],
+      [-65, -7],
+      [-73, -25],
+      [-28, -15],
+      [-55, -43],
+      [-40, -17],
+      [-60, 16],
+      [-81, -36],
+      [-79, -33],
+      [-36, 4],
+      [-8, 37],
+      [-19, 11],
+      [-59, 11],
+      [-65, 6],
+      [-32, 12],
+      [-54, 0],
+      [-86, 9],
+      [14, 57],
+      [3, 43],
+      [-7, 34],
+      [-15, 13],
+      [-43, 67],
+      [-31, 39],
+      [-47, 8],
+      [-13, 23],
+      [0, 36],
+      [-25, 9],
+      [-128, 17],
+      [-23, 22],
+      [-28, 10],
+      [-42, 1],
+      [-18, 8],
+      [-16, 40],
+      [-26, 15],
+      [-38, 8],
+      [-4, 16],
+      [16, 38],
+      [33, 25],
+      [19, 35],
+      [5, 35],
+      [10, 16],
+      [32, 13],
+      [50, 3],
+      [40, 19],
+      [31, 6],
+      [17, 24],
+      [12, 50],
+      [1, 69],
+      [7, 18],
+      [-14, 29],
+      [-24, 20],
+      [-7, 25],
+      [10, 35],
+      [65, 75],
+      [44, 47],
+      [35, 25],
+      [-33, 55],
+      [-4, 27],
+      [24, 14],
+      [13, 53],
+      [57, -11],
+      [33, -1],
+      [30, 8],
+      [79, 56],
+      [38, 11],
+      [105, -4],
+      [56, -11],
+      [28, -14],
+      [24, 15],
+      [70, 55],
+      [16, 8],
+      [20, 27],
+      [44, 19],
+      [64, -2]
+    ],
+    [
+      [15151, 20146],
+      [29, -60],
+      [-45, -14],
+      [-46, -27],
+      [-12, -47],
+      [-2, -41],
+      [7, -49],
+      [-43, -25],
+      [-50, 8],
+      [-52, 27],
+      [-12, 58],
+      [5, 101],
+      [19, 25],
+      [40, 14],
+      [41, -10],
+      [121, 40]
+    ],
+    [
+      [16891, 18169],
+      [-62, -136],
+      [-13, -67],
+      [-4, -160],
+      [3, -76],
+      [11, -44],
+      [25, -46],
+      [85, -61],
+      [25, -33],
+      [40, -40],
+      [24, -46],
+      [23, -58],
+      [15, -78],
+      [13, -46],
+      [12, -62],
+      [20, -57],
+      [-8, -51],
+      [-34, -77],
+      [-57, -91],
+      [-72, -19],
+      [-35, -3],
+      [-105, -2],
+      [-43, -14],
+      [-26, -21],
+      [-28, -46],
+      [-31, -69],
+      [-14, -46],
+      [-260, 7],
+      [-93, 9],
+      [-48, -42],
+      [-43, -46],
+      [-40, -79],
+      [-131, -183],
+      [-43, -30],
+      [-126, -24],
+      [-56, -26],
+      [-52, -31],
+      [-59, -13],
+      [-113, -4],
+      [-44, -18],
+      [-48, -50],
+      [-71, -134],
+      [-45, -68],
+      [-15, -34],
+      [-18, -59]
+    ],
+    [
+      [15350, 15895],
+      [-72, 28],
+      [-80, 24],
+      [-84, 10],
+      [-43, -2],
+      [-31, -6],
+      [-37, -18],
+      [-58, -18],
+      [-74, -11],
+      [-35, -13],
+      [-30, -22],
+      [-75, -69],
+      [-30, -24],
+      [-73, -48],
+      [-58, -25],
+      [-64, -33],
+      [-60, -10],
+      [-136, 3],
+      [-47, 76],
+      [-69, 91],
+      [-36, 19],
+      [-63, 25],
+      [-78, 49],
+      [-76, -41],
+      [-30, -48],
+      [-76, -37],
+      [-62, -26],
+      [-26, -19],
+      [-33, -41],
+      [-30, -28],
+      [-28, -62],
+      [-48, -73],
+      [-66, -50],
+      [-11, 133],
+      [-24, 52],
+      [-26, 24],
+      [-31, 16],
+      [-45, 5],
+      [-49, -4],
+      [-84, 5],
+      [-75, 1],
+      [-48, -4],
+      [-42, -9],
+      [-29, -54],
+      [-50, -26],
+      [-47, -35],
+      [-47, -55],
+      [-56, -95],
+      [-58, -16],
+      [-42, 0],
+      [-49, 18],
+      [-95, 47],
+      [-75, 19],
+      [-111, 39],
+      [-33, 29],
+      [-55, 29],
+      [-33, 8],
+      [-85, 15],
+      [-19, -48],
+      [-16, -61],
+      [-18, -39],
+      [-16, -21],
+      [-51, -12],
+      [-40, 10],
+      [-80, 37],
+      [-46, 8],
+      [-46, -3],
+      [-56, -17],
+      [-89, -22],
+      [-39, -3],
+      [-29, 8],
+      [-52, 32],
+      [-47, 24],
+      [-73, 14],
+      [4, 148],
+      [-3, 34],
+      [-14, 29],
+      [-39, 15],
+      [-45, -2],
+      [-49, -15],
+      [-128, 39],
+      [-136, 26],
+      [-64, 59],
+      [-56, 35],
+      [-63, 22],
+      [-44, 7],
+      [-46, -2],
+      [-37, -6],
+      [-116, -36],
+      [-33, 5],
+      [-30, 12]
+    ],
+    [
+      [10626, 15915],
+      [-123, -43],
+      [-35, -9],
+      [-59, -3],
+      [-108, 4],
+      [13, 113],
+      [-1, 124],
+      [-16, 57],
+      [-13, 68],
+      [-24, 62],
+      [-47, 67],
+      [-30, 69],
+      [-3, 47],
+      [14, 57],
+      [23, 39],
+      [51, 47],
+      [109, 109],
+      [53, 31],
+      [49, 7],
+      [63, -1],
+      [50, -6],
+      [70, -20],
+      [74, -4],
+      [61, 9],
+      [59, 24],
+      [85, 21],
+      [60, 2],
+      [91, -3],
+      [51, 101],
+      [3, 175],
+      [3, 456],
+      [-44, 71],
+      [-24, 76],
+      [-25, 62],
+      [-36, 64],
+      [-29, 84],
+      [-14, 68],
+      [-15, 56],
+      [-10, 109],
+      [-11, 66],
+      [65, 150],
+      [5, 34],
+      [-4, 33],
+      [-30, 46],
+      [-110, 75],
+      [-21, 27],
+      [-23, 50],
+      [-25, 87],
+      [-6, 128],
+      [-9, 49],
+      [-14, 29],
+      [-43, 67],
+      [-49, 63],
+      [-32, 49],
+      [-31, 28],
+      [-60, 44]
+    ],
+    [
+      [10554, 19130],
+      [-12, 19],
+      [-45, 17],
+      [-8, 68],
+      [-39, 46],
+      [33, 61],
+      [83, 5],
+      [102, -2],
+      [166, 5],
+      [13, 33],
+      [10, 2],
+      [357, 10],
+      [57, -212],
+      [126, 5],
+      [84, -7],
+      [106, -5],
+      [74, 42],
+      [90, 38],
+      [30, 87],
+      [-18, 100],
+      [-156, 182],
+      [-48, 140],
+      [20, 321],
+      [85, 107],
+      [39, 17],
+      [70, 40],
+      [104, 69],
+      [151, 56],
+      [75, 46],
+      [68, -10],
+      [99, 10],
+      [86, 20],
+      [119, 19],
+      [42, -55],
+      [47, -75],
+      [-15, -42],
+      [-67, -106],
+      [-34, -59],
+      [-20, -51],
+      [1, -16],
+      [42, -225],
+      [338, 79],
+      [37, -16],
+      [110, -22],
+      [115, -9],
+      [51, -29],
+      [43, -4],
+      [47, 19],
+      [40, -7],
+      [10, 26],
+      [102, -19],
+      [0, 54],
+      [-10, 75],
+      [8, 67],
+      [89, 61],
+      [92, 56],
+      [29, 103],
+      [46, 17],
+      [26, 28],
+      [30, 44],
+      [27, 73],
+      [27, 52],
+      [96, 112],
+      [171, 65],
+      [161, -69],
+      [212, -178],
+      [8, -223],
+      [-67, -191],
+      [36, -177],
+      [-37, 15],
+      [-116, 17],
+      [-59, 23],
+      [-96, 43],
+      [-80, -31],
+      [30, -82],
+      [29, -57],
+      [54, -43],
+      [39, -18],
+      [223, -2],
+      [326, 65],
+      [258, -175],
+      [65, -11],
+      [57, 45],
+      [100, 121],
+      [63, 66],
+      [80, 71],
+      [68, 66],
+      [76, 59],
+      [27, 59],
+      [14, 58],
+      [24, 48],
+      [-1, 45],
+      [-11, 48],
+      [18, 67],
+      [29, 52],
+      [50, 58],
+      [43, 41],
+      [87, -142],
+      [195, -48],
+      [80, -185],
+      [17, -210],
+      [-131, -245],
+      [-5, -99],
+      [293, -360],
+      [90, -459],
+      [257, 31],
+      [24, 21],
+      [106, 9],
+      [74, 21],
+      [145, -107],
+      [80, -81],
+      [-51, -179],
+      [-58, -152],
+      [11, -61],
+      [59, -50]
+    ],
+    [
+      [21023, 12994],
+      [-42, -104],
+      [-26, -80],
+      [-3, -67],
+      [13, -58],
+      [4, -98],
+      [-3, -83],
+      [-58, 1],
+      [-75, -11],
+      [-60, 2],
+      [-133, 35],
+      [-55, 19],
+      [-134, 16],
+      [-39, 59],
+      [-27, 63],
+      [-62, 63],
+      [-31, 8],
+      [-94, 13],
+      [-72, 28],
+      [-60, 36],
+      [-29, 8],
+      [-28, -2],
+      [-41, -25],
+      [-51, -16],
+      [-67, -1],
+      [-39, 15],
+      [-27, 43],
+      [-39, 93],
+      [-4, 51]
+    ],
+    [
+      [19741, 13002],
+      [19, -21],
+      [22, 6],
+      [49, 40],
+      [161, -1],
+      [140, 163],
+      [43, 10],
+      [23, 23],
+      [53, 33],
+      [61, -52],
+      [20, -52],
+      [27, -55],
+      [17, 4],
+      [126, -101],
+      [121, 40],
+      [146, -29],
+      [160, 84],
+      [94, -100]
+    ],
+    [
+      [19732, 13505],
+      [-64, -34],
+      [-41, -37],
+      [-38, -50],
+      [-64, -67],
+      [-123, -121],
+      [-51, -40],
+      [-55, -27],
+      [-48, -15],
+      [-96, -37],
+      [-70, -15],
+      [-128, -38],
+      [-95, -4],
+      [-60, -40],
+      [-28, -33],
+      [-32, -87],
+      [-6, -71],
+      [-74, -39],
+      [-46, -19],
+      [-80, -24],
+      [-18, -19],
+      [-19, -40],
+      [-55, -13],
+      [-60, 0],
+      [-45, -9],
+      [-38, -26],
+      [-44, -52],
+      [-42, -20],
+      [-85, -17],
+      [-63, 21],
+      [-65, 27],
+      [-32, 32],
+      [-7, 50],
+      [5, 116],
+      [-4, 44],
+      [-11, 28],
+      [-20, 17],
+      [-62, -5],
+      [-80, -18],
+      [-83, -8],
+      [-32, -11],
+      [-93, -50],
+      [-73, -29],
+      [-66, -43],
+      [-19, -17],
+      [-60, -80],
+      [-127, 39],
+      [-55, 4],
+      [-22, -4],
+      [-55, -26],
+      [-43, -28],
+      [-41, -15],
+      [-35, -3],
+      [-45, 8],
+      [-112, 48]
+    ],
+    [
+      [16827, 12608],
+      [2, 165],
+      [7, 63],
+      [20, 32],
+      [2, 95],
+      [-28, 71],
+      [-30, 34],
+      [-27, 8],
+      [-48, 3],
+      [-68, -7],
+      [-22, -13],
+      [-42, -7],
+      [-65, 0],
+      [-42, -8],
+      [-48, -17],
+      [-57, -2],
+      [-32, -7],
+      [-23, -12],
+      [-59, -8],
+      [-63, -23],
+      [-31, -2],
+      [-74, 4],
+      [-54, 6]
+    ],
+    [
+      [16045, 12983],
+      [28, 46],
+      [22, 44],
+      [12, 51],
+      [-7, 54],
+      [-45, 102],
+      [88, 20],
+      [79, 27],
+      [22, 16],
+      [22, 38],
+      [12, 40],
+      [2, 49],
+      [-5, 49],
+      [-13, 47],
+      [-6, 60],
+      [4, 35],
+      [32, 123],
+      [40, 91],
+      [37, 108],
+      [1, 57],
+      [12, 61],
+      [30, 54],
+      [27, 24],
+      [63, 29],
+      [29, 20],
+      [34, 34],
+      [19, 31],
+      [11, 47],
+      [2, 61],
+      [-5, 61],
+      [-15, 60],
+      [-51, 6],
+      [-152, 7],
+      [-80, 21],
+      [-96, 9],
+      [-73, 0],
+      [-68, -10],
+      [-65, -26],
+      [-50, -27],
+      [-30, 71],
+      [-34, 54],
+      [-64, 3],
+      [-21, 6],
+      [-40, 29],
+      [-24, 30],
+      [-35, 65],
+      [5, 79],
+      [12, 59],
+      [66, 28],
+      [96, 69],
+      [32, 51],
+      [10, 40],
+      [-1, 34],
+      [-10, 31],
+      [-29, 53],
+      [-6, 33],
+      [3, 31],
+      [25, 30],
+      [43, 20],
+      [72, 51],
+      [56, 31],
+      [65, 28],
+      [38, 8],
+      [8, 82],
+      [23, 41],
+      [34, 30],
+      [56, 26],
+      [31, 19],
+      [106, 87],
+      [-41, 87],
+      [-20, 31],
+      [-49, 57],
+      [-79, 79],
+      [-39, 17],
+      [-47, 7],
+      [-108, 6],
+      [-55, -7],
+      [-29, -29],
+      [-5, -33],
+      [0, -82],
+      [-3, -34],
+      [-11, -30],
+      [-20, -17],
+      [-45, -24],
+      [-72, -24],
+      [-48, -2],
+      [-85, 2],
+      [-98, 10],
+      [-51, 54],
+      [-54, 42],
+      [-93, 43],
+      [-27, 21]
+    ],
+    [
+      [16891, 18169],
+      [9, -6],
+      [150, 53],
+      [92, -24],
+      [344, -7],
+      [148, 93],
+      [397, -121],
+      [46, 53],
+      [31, 51],
+      [55, 27],
+      [39, 51],
+      [57, 34],
+      [75, 18],
+      [74, 42],
+      [56, 97],
+      [41, 4],
+      [106, -49],
+      [243, -272],
+      [55, -388],
+      [105, -123],
+      [240, -81],
+      [230, -95],
+      [24, -138],
+      [341, -52],
+      [48, 14],
+      [34, -8],
+      [167, 83],
+      [88, -25],
+      [123, -65],
+      [-7, -37],
+      [16, -32],
+      [-22, -51],
+      [35, -43],
+      [-22, -57],
+      [246, 28],
+      [6, 28],
+      [33, 35],
+      [39, -3],
+      [20, -37],
+      [10, -48],
+      [27, -64],
+      [47, -35],
+      [51, -48],
+      [-65, -71],
+      [-31, -42],
+      [-34, -22],
+      [-53, -11],
+      [-30, -25],
+      [-50, -88],
+      [-8, -60],
+      [22, -29],
+      [45, -7],
+      [42, -23],
+      [21, -52],
+      [-11, -38],
+      [-74, -60],
+      [-73, 13],
+      [-51, -24],
+      [-16, -45],
+      [34, -87],
+      [-24, -43],
+      [-16, -38],
+      [14, -92],
+      [-36, -19],
+      [-85, 31],
+      [-21, -38],
+      [-9, -45],
+      [-58, -124],
+      [-29, -77],
+      [-3, -49],
+      [39, -30],
+      [29, -48],
+      [-24, -50],
+      [-18, -66],
+      [-3, -26],
+      [22, -2],
+      [-49, -194],
+      [-234, -292],
+      [-5, -41],
+      [37, -37],
+      [43, -2],
+      [42, 22],
+      [47, 11],
+      [33, -31],
+      [1, -34],
+      [-62, -116],
+      [-38, -59],
+      [-58, -120],
+      [-24, -93],
+      [-31, -65],
+      [-102, -12],
+      [-23, -19],
+      [-38, -95],
+      [-33, -76],
+      [-16, -28],
+      [-13, -48],
+      [-36, -17],
+      [-74, -1],
+      [-115, -80],
+      [-25, -129],
+      [-3, -82],
+      [8, -70],
+      [6, -86],
+      [18, -75],
+      [50, -78],
+      [75, -25],
+      [117, -107]
+    ],
+    [
+      [10626, 15915],
+      [-10, -91],
+      [-23, -103],
+      [-3, -123],
+      [-6, -48],
+      [-28, -69],
+      [-44, -65],
+      [-96, -75],
+      [-107, 14],
+      [-33, 7],
+      [-62, 26],
+      [-53, 32],
+      [-30, -60],
+      [-43, -74],
+      [-53, -82],
+      [6, -50],
+      [9, -34],
+      [15, -27],
+      [48, -66],
+      [22, -45],
+      [11, -34],
+      [13, -66],
+      [-59, -79],
+      [-27, -57],
+      [-21, -61],
+      [-19, -38],
+      [-58, 49],
+      [-81, 57],
+      [-76, 37],
+      [-56, 4],
+      [-40, -16],
+      [-13, -29],
+      [-2, -105],
+      [-6, -59],
+      [-27, -56],
+      [-40, -35],
+      [-36, -11],
+      [1, -75],
+      [7, -48],
+      [26, -69],
+      [27, -49],
+      [-49, -77],
+      [-26, -62],
+      [-27, -84],
+      [-22, -30],
+      [-56, -65],
+      [-18, -27],
+      [-23, -49],
+      [-5, -44],
+      [16, -38],
+      [39, -14],
+      [65, -3],
+      [35, -21],
+      [12, -52],
+      [-2, -135],
+      [-44, -92],
+      [-81, -113],
+      [-67, -82],
+      [-28, -56],
+      [-126, -54],
+      [-40, -4],
+      [-51, 8],
+      [-38, -6],
+      [-89, -29],
+      [-40, -1],
+      [-26, 9],
+      [-42, 24],
+      [-20, 24],
+      [-33, 17],
+      [-31, 1],
+      [-31, -7],
+      [-47, -23],
+      [-55, -48],
+      [-38, -48],
+      [-23, -49],
+      [-9, -44],
+      [1, -48],
+      [9, -32],
+      [25, -45],
+      [61, -36],
+      [32, -40],
+      [-51, -20],
+      [-84, -26],
+      [-42, -7],
+      [-32, 2],
+      [-56, 15],
+      [-87, 13],
+      [-54, 17]
+    ],
+    [
+      [8361, 12761],
+      [-33, 56],
+      [-23, 27],
+      [-38, 27],
+      [-32, 8],
+      [-33, 0],
+      [-38, -10],
+      [-30, -21],
+      [-64, -57],
+      [-21, -12],
+      [-40, -5],
+      [-73, 26],
+      [-49, 26],
+      [-50, 16],
+      [-70, 3],
+      [-55, -11],
+      [-39, 28],
+      [-59, 31],
+      [-16, 20],
+      [-37, 70],
+      [-48, 72],
+      [-48, 20],
+      [-35, 1],
+      [-48, -6],
+      [-45, -13],
+      [-40, -4],
+      [-74, 4],
+      [-51, 11],
+      [-77, 3],
+      [-44, -6],
+      [-16, -46],
+      [-17, -69],
+      [-37, -120],
+      [-12, -80],
+      [-17, -36],
+      [-42, -43],
+      [-37, -55],
+      [-38, 23],
+      [-62, 29],
+      [-102, 33],
+      [-36, 4],
+      [-72, -5],
+      [-45, -15],
+      [-57, -6],
+      [-46, 5],
+      [-73, 24],
+      [-104, 47],
+      [39, 71],
+      [40, 103],
+      [-48, 55],
+      [-38, 22],
+      [-65, 0],
+      [-44, -14],
+      [-60, -7],
+      [-99, -3],
+      [-61, 3],
+      [-44, 13],
+      [-66, 39],
+      [-55, 29]
+    ],
+    [
+      [5737, 13066],
+      [79, 95],
+      [91, 93],
+      [40, 31],
+      [75, 44],
+      [35, 30],
+      [22, 27],
+      [46, 75],
+      [-36, 39],
+      [-39, 25],
+      [-30, 2],
+      [-17, 188],
+      [-16, 57],
+      [-13, 67],
+      [-23, 74],
+      [-33, 63],
+      [-31, 20],
+      [-61, 19],
+      [-76, 28],
+      [16, 93],
+      [24, 59],
+      [19, 74],
+      [4, 75],
+      [-4, 61],
+      [-18, 69],
+      [-7, 56],
+      [-47, -3],
+      [-54, -15],
+      [-52, -30],
+      [-53, -7],
+      [-34, 20],
+      [-28, 63],
+      [9, 56],
+      [-9, 61],
+      [50, 43],
+      [43, 54],
+      [41, 88],
+      [-87, 103],
+      [-20, 43],
+      [3, 41],
+      [9, 19],
+      [44, 62],
+      [11, 43],
+      [-4, 45],
+      [-33, 72],
+      [-5, 36],
+      [4, 30],
+      [15, 29],
+      [37, 55],
+      [11, 33],
+      [5, 48],
+      [4, 130],
+      [-45, 81],
+      [-64, 72],
+      [29, 58],
+      [32, 54],
+      [13, 47],
+      [2, 37],
+      [-11, 61],
+      [-19, 29],
+      [-35, 31],
+      [-76, 36],
+      [-63, 47],
+      [-82, 55],
+      [-142, 78],
+      [-87, 73],
+      [-21, 14],
+      [-45, 14],
+      [-85, 1],
+      [-1, 71],
+      [35, 28],
+      [82, 51],
+      [57, 62],
+      [65, 39],
+      [70, 88],
+      [35, 64],
+      [20, 61],
+      [36, 92],
+      [15, 90],
+      [10, 46],
+      [-25, 82],
+      [-51, 105],
+      [-66, 101],
+      [-64, 89],
+      [64, 66],
+      [26, 49],
+      [8, 29],
+      [1, 33],
+      [-7, 30],
+      [-32, 34],
+      [-11, 49],
+      [6, 33],
+      [26, 38],
+      [68, 55],
+      [21, 38],
+      [8, 27],
+      [-3, 41],
+      [-33, 60],
+      [-38, 31],
+      [-24, 43],
+      [-7, 28],
+      [12, 38],
+      [16, 11],
+      [45, 11]
+    ],
+    [
+      [5309, 18250],
+      [45, -65],
+      [50, -3],
+      [59, -28],
+      [25, -49],
+      [16, -60],
+      [68, -44],
+      [97, -12],
+      [101, 8],
+      [210, 11],
+      [122, 22],
+      [-56, 343],
+      [-14, 70],
+      [80, 29],
+      [76, -14],
+      [30, 29],
+      [56, -12],
+      [22, 60],
+      [32, 5],
+      [79, -60],
+      [36, -8],
+      [16, 54],
+      [10, 52],
+      [53, 57],
+      [86, -43],
+      [94, -55],
+      [143, -66],
+      [150, 12],
+      [104, -57],
+      [65, -40],
+      [125, -92],
+      [77, -19],
+      [57, 16],
+      [54, -7],
+      [75, 5],
+      [41, -38],
+      [17, -54],
+      [39, -17],
+      [45, 11],
+      [134, -70],
+      [-52, -118],
+      [-10, -53],
+      [-5, -265],
+      [122, -106],
+      [429, 88],
+      [50, -128],
+      [113, -22],
+      [139, 119],
+      [241, 57],
+      [234, 260],
+      [360, 69],
+      [299, 205],
+      [497, 387],
+      [216, 328],
+      [88, 95],
+      [34, 48],
+      [-29, 45]
+    ],
+    [
+      [16045, 12983],
+      [5, -55],
+      [2, -86],
+      [13, -69],
+      [31, -67],
+      [12, -89],
+      [15, -53]
+    ],
+    [
+      [16123, 12564],
+      [-74, -62],
+      [-41, -25],
+      [-45, -17],
+      [-58, -2],
+      [-45, 14],
+      [-70, 49],
+      [-17, 18],
+      [-54, 73],
+      [11, 32],
+      [-9, 61],
+      [-9, 32],
+      [-28, 55],
+      [-51, 49],
+      [-29, 13],
+      [-58, 17]
+    ],
+    [
+      [15546, 12871],
+      [-28, 24],
+      [-28, 39],
+      [-25, 57],
+      [-21, 27],
+      [-37, 27],
+      [-32, 7],
+      [-33, -2],
+      [-82, -20],
+      [-7, -26],
+      [-23, -34],
+      [-39, -20],
+      [-86, -16],
+      [-48, -22],
+      [-63, -37],
+      [-67, -22],
+      [-79, 13],
+      [-85, 0],
+      [-35, -7],
+      [-80, -36],
+      [-51, -8],
+      [-32, 9],
+      [-36, 39],
+      [-15, 89],
+      [-15, 29],
+      [-34, 27],
+      [-81, 29],
+      [-35, 24],
+      [-39, 58],
+      [-115, 68],
+      [-25, 40],
+      [-15, 71],
+      [-68, 71],
+      [-64, 24],
+      [-100, 44],
+      [-48, 5],
+      [-48, -3],
+      [-33, -10],
+      [-54, -30],
+      [-47, -18],
+      [-59, -33],
+      [-26, -32],
+      [-55, -40],
+      [-83, 1],
+      [-83, 6],
+      [-79, 20],
+      [-104, 8],
+      [-58, 10],
+      [-16, -74],
+      [-3, -48],
+      [8, -70],
+      [43, -130],
+      [5, -47],
+      [-5, -33],
+      [-12, -19],
+      [-27, -13],
+      [-43, -3],
+      [-66, 6],
+      [-69, 1],
+      [-37, 9],
+      [-38, 24],
+      [-63, 59],
+      [-61, -18],
+      [-34, -27],
+      [-30, -56],
+      [-11, -65],
+      [-128, -10],
+      [-46, -10],
+      [-41, -28],
+      [-73, -70],
+      [-43, -24],
+      [-35, -6],
+      [-72, 4],
+      [-42, 11],
+      [-22, 52],
+      [-30, 53],
+      [-14, 67],
+      [3, 73],
+      [-69, -4],
+      [-54, -11],
+      [-30, -19],
+      [-43, -41],
+      [-39, -55],
+      [-31, -28],
+      [-50, -89],
+      [-47, 30],
+      [-39, 18],
+      [-79, -1],
+      [-44, -4],
+      [-93, -27],
+      [-60, -22],
+      [-29, -24],
+      [-6, -19],
+      [-7, -75],
+      [-16, -47],
+      [-45, -52],
+      [-49, 88],
+      [-57, 82],
+      [-14, 13],
+      [-66, 40],
+      [-1, -44],
+      [-8, -41],
+      [-16, -35],
+      [-16, -20],
+      [-56, -36],
+      [-18, -45],
+      [-60, -117],
+      [-48, -2],
+      [-74, 5],
+      [-43, 13],
+      [-28, 1],
+      [-25, -8],
+      [-27, -25],
+      [-48, -13],
+      [-80, -7],
+      [-60, -15],
+      [-48, 40],
+      [-94, 59],
+      [-44, 21],
+      [-48, 11],
+      [-111, 5],
+      [-47, 15],
+      [-49, 39],
+      [-90, 100],
+      [-38, -1],
+      [-49, 17],
+      [-69, -6],
+      [-32, -12],
+      [-43, -38],
+      [-39, -60]
+    ],
+    [
+      [9768, 12483],
+      [-59, 0],
+      [-69, -10],
+      [-51, -19],
+      [-14, -20],
+      [-68, -55],
+      [-49, -27],
+      [-90, -18],
+      [-81, -33],
+      [-31, -8],
+      [-49, -4],
+      [-123, 0],
+      [-48, -4],
+      [-33, -11],
+      [-98, -55],
+      [-33, -15],
+      [-67, 7],
+      [-68, 17],
+      [-34, 3],
+      [-131, 4],
+      [-63, 12],
+      [-18, 33],
+      [-85, 127],
+      [-46, 74],
+      [-15, 34],
+      [-7, 61],
+      [1, 75],
+      [6, 50],
+      [16, 60]
+    ],
+    [
+      [5737, 13066],
+      [-40, -34],
+      [-30, -40],
+      [-18, -42],
+      [-8, -43],
+      [-184, -105],
+      [-94, -76],
+      [-39, -10],
+      [-84, -53],
+      [-30, -24],
+      [-54, -58],
+      [-56, -77],
+      [-46, 0],
+      [-42, 11],
+      [-77, 48],
+      [-54, 40],
+      [-29, 18],
+      [-44, 34],
+      [-28, 122],
+      [-27, 70],
+      [-35, 71],
+      [-22, 36],
+      [-16, 11],
+      [-31, 8],
+      [-34, -1],
+      [-79, -21],
+      [-57, -5],
+      [-35, 5],
+      [-165, 43],
+      [-115, 4],
+      [-45, -49],
+      [-37, -27],
+      [-45, -9],
+      [-81, 5],
+      [-16, -2]
+    ],
+    [
+      [3940, 12916],
+      [-125, 209],
+      [-91, 181],
+      [-134, -22],
+      [-86, 54],
+      [-60, -124],
+      [-78, -67],
+      [-60, -16],
+      [-138, 81],
+      [-114, -53],
+      [-25, -42]
+    ],
+    [
+      [3029, 13117],
+      [-13, 40],
+      [-77, 147],
+      [-33, 53],
+      [-25, 56],
+      [-40, 44],
+      [-53, -18],
+      [-67, -16],
+      [-51, -16],
+      [-95, -7],
+      [-68, -15],
+      [-40, -50],
+      [-27, -56],
+      [-9, -36],
+      [-7, -84],
+      [-12, -36],
+      [-29, -41],
+      [-57, -58],
+      [-43, 16],
+      [-39, 23],
+      [-43, 8],
+      [-83, 0],
+      [-50, -11],
+      [-43, -39],
+      [-38, -19],
+      [-26, -33],
+      [-54, -46],
+      [-23, -26],
+      [-16, -30],
+      [2, -51],
+      [26, -34],
+      [54, -39],
+      [24, -26],
+      [19, -41],
+      [6, -34],
+      [9, -151],
+      [-11, -25],
+      [-9, -53]
+    ],
+    [
+      [1988, 12413],
+      [-7, -2],
+      [-136, 194],
+      [-222, -50],
+      [-139, 109],
+      [-58, 208],
+      [-141, 152],
+      [9, 70],
+      [-42, 55],
+      [-99, 61],
+      [-85, 156],
+      [-9, 142],
+      [-24, 26],
+      [-237, 20],
+      [-75, 73],
+      [-50, -49],
+      [-52, -31],
+      [-120, -5],
+      [-64, 239],
+      [-49, 50],
+      [-15, 70],
+      [-98, 22],
+      [1, 36],
+      [77, 106],
+      [-26, 92],
+      [10, 244],
+      [-26, 105],
+      [12, 64],
+      [-92, 34],
+      [-13, 32],
+      [120, 123],
+      [132, 152],
+      [-2, 36],
+      [-146, 408],
+      [-57, 36],
+      [-110, 108],
+      [-59, 428],
+      [-6, 10],
+      [-90, 478],
+      [150, 82],
+      [84, 48],
+      [98, 69],
+      [77, 46],
+      [10, 11],
+      [59, 35],
+      [21, 20],
+      [56, 40],
+      [46, 20],
+      [24, 17],
+      [140, 57],
+      [129, 66],
+      [35, 28],
+      [81, 55],
+      [63, 48],
+      [98, 40],
+      [45, 29],
+      [46, 34],
+      [52, 29],
+      [17, 17],
+      [56, 34],
+      [77, 52],
+      [112, 80],
+      [56, 34],
+      [17, 18],
+      [102, 71],
+      [7, 0],
+      [49, 40],
+      [52, 37],
+      [284, 212],
+      [48, 22],
+      [46, 43],
+      [0, 12],
+      [28, 23],
+      [56, 34],
+      [31, -3],
+      [46, 34],
+      [77, 43],
+      [56, 40],
+      [111, 69],
+      [11, 11],
+      [94, 63],
+      [7, 0],
+      [74, 57],
+      [17, 6],
+      [28, 26],
+      [35, 23],
+      [42, 17],
+      [7, 14],
+      [42, 32],
+      [18, 5],
+      [52, 35],
+      [14, 20],
+      [28, 11],
+      [56, 46],
+      [21, 8],
+      [14, 26],
+      [17, 3],
+      [39, 32],
+      [14, 34],
+      [56, 31],
+      [21, 0],
+      [80, 49],
+      [21, 6],
+      [28, 20],
+      [28, 5],
+      [7, 12],
+      [49, 23],
+      [42, 14],
+      [129, 54],
+      [39, 9],
+      [66, 34],
+      [49, 12],
+      [18, 14],
+      [38, 17],
+      [-14, 43],
+      [-24, 23],
+      [-11, 48],
+      [-31, 60],
+      [-7, 46],
+      [10, 26],
+      [53, -11],
+      [10, 22],
+      [21, 18],
+      [17, -18],
+      [-10, -22],
+      [-45, -35],
+      [-11, -54],
+      [32, -9],
+      [27, 37],
+      [49, 0],
+      [21, 20],
+      [35, -2],
+      [0, -35],
+      [-31, -11],
+      [-28, -40],
+      [17, 0],
+      [7, -57],
+      [-14, -12],
+      [7, -43],
+      [25, 20],
+      [-14, 15],
+      [17, 20],
+      [0, 34],
+      [18, 6],
+      [7, 28],
+      [21, -5],
+      [31, -32],
+      [4, 29],
+      [28, 11],
+      [21, -20],
+      [21, 17],
+      [-4, 32],
+      [11, 31],
+      [-21, 12],
+      [-35, 77],
+      [45, 11],
+      [21, -8],
+      [11, -78],
+      [-7, -8],
+      [0, -63],
+      [10, -23],
+      [84, 23],
+      [46, -3],
+      [73, 40],
+      [42, 0],
+      [91, 46],
+      [35, 34],
+      [101, 32],
+      [70, 28],
+      [66, 6],
+      [32, 17],
+      [84, 34],
+      [77, 12],
+      [34, 14],
+      [52, -62],
+      [24, -45],
+      [3, -43],
+      [-8, -42],
+      [27, -34],
+      [40, -37],
+      [26, -61],
+      [1, -57],
+      [-63, -61],
+      [-32, -89],
+      [31, -249],
+      [48, -34],
+      [-9, -54],
+      [-3, -62],
+      [74, -27],
+      [30, -46]
+    ],
+    [
+      [5100, 19242],
+      [22, 5],
+      [24, -26],
+      [7, -46],
+      [-53, 67]
+    ],
+    [
+      [15546, 12871],
+      [-22, -70],
+      [-34, -64],
+      [-10, -32],
+      [-6, -58],
+      [2, -90],
+      [19, -50],
+      [12, -135],
+      [-14, -69],
+      [-21, -79],
+      [-3, -49],
+      [-3, -139],
+      [-7, -49],
+      [-64, -133],
+      [-28, -36],
+      [-41, -41]
+    ],
+    [
+      [15326, 11777],
+      [-95, 36],
+      [-30, 2],
+      [-27, -9],
+      [-17, -18],
+      [-51, -71],
+      [-46, -96],
+      [-46, -5],
+      [-168, -46],
+      [-34, -19],
+      [-28, -36],
+      [-32, -32],
+      [-26, -18],
+      [-48, -23],
+      [-131, -31],
+      [-57, -1],
+      [-58, 7],
+      [-92, -13],
+      [-66, -17],
+      [-45, -3],
+      [-121, 1],
+      [-42, -5],
+      [-72, -24],
+      [-40, -22],
+      [-64, -58],
+      [-39, -22],
+      [-48, 8],
+      [-35, 57],
+      [-53, 123],
+      [-74, -40],
+      [-23, -22],
+      [-34, -48],
+      [-24, -25],
+      [-29, -18],
+      [-55, -6],
+      [-32, 9],
+      [-104, 59],
+      [-29, 5],
+      [-35, -4],
+      [-15, -31],
+      [-3, -40],
+      [10, -29],
+      [30, -52],
+      [26, -60],
+      [27, -109],
+      [-2, -29],
+      [-24, -30],
+      [-68, -23],
+      [-35, -5],
+      [-61, -1],
+      [-73, 3],
+      [-108, 17],
+      [2, 19],
+      [-21, 16],
+      [-24, -3],
+      [-40, -36],
+      [-61, -31],
+      [-99, -78],
+      [12, -47],
+      [9, -103]
+    ],
+    [
+      [12758, 10700],
+      [-104, -4],
+      [-48, -8],
+      [-82, -26],
+      [-71, -27],
+      [-73, -37],
+      [-67, -9],
+      [-33, 43],
+      [-23, 44],
+      [-24, 15],
+      [-38, -3],
+      [-47, -29],
+      [-46, -6],
+      [-28, 25],
+      [-16, 69],
+      [-31, 72],
+      [-50, 38],
+      [-53, 28],
+      [-21, 23],
+      [-33, 18],
+      [-84, 21],
+      [-40, 2],
+      [-88, -18],
+      [-118, -3],
+      [-80, -7],
+      [-122, -40],
+      [-77, -2],
+      [-39, 62],
+      [-39, 36],
+      [-93, 43],
+      [-36, 26],
+      [-42, 43],
+      [-40, 56],
+      [-43, 39],
+      [-38, 44],
+      [-17, 10],
+      [-61, 21],
+      [-59, 13],
+      [-32, 24],
+      [-6, 19],
+      [-3, 55],
+      [4, 70],
+      [14, 61],
+      [-46, 4],
+      [-55, 14],
+      [-79, 12],
+      [-108, 53],
+      [-21, 21],
+      [-10, 56],
+      [5, 49],
+      [16, 57],
+      [4, 45],
+      [-16, 56],
+      [-63, 94],
+      [-40, -9],
+      [-87, -6],
+      [-101, -108],
+      [-30, -38],
+      [-31, -67],
+      [-14, -63],
+      [-15, -24],
+      [-31, -20],
+      [-33, -13],
+      [-35, -5],
+      [-48, 2],
+      [-35, 7],
+      [-48, 24],
+      [-24, 18],
+      [-26, 33],
+      [-51, 104],
+      [-46, 103],
+      [-10, 47],
+      [-3, 74],
+      [16, 22],
+      [26, 56],
+      [6, 50],
+      [-14, 55],
+      [-5, 83],
+      [4, 30],
+      [28, 68],
+      [57, 98]
+    ],
+    [
+      [12758, 10700],
+      [-30, -56],
+      [-45, -68],
+      [-37, -76],
+      [-24, -74],
+      [-7, -36],
+      [-5, -123],
+      [10, -55],
+      [16, -16],
+      [41, -9],
+      [51, 11],
+      [40, 36],
+      [27, 5],
+      [39, -16],
+      [24, -24],
+      [27, -54],
+      [-9, -81],
+      [-28, -84],
+      [-38, -91],
+      [-19, -107],
+      [1, -67],
+      [-23, -67],
+      [155, -25],
+      [29, -13],
+      [23, -24],
+      [9, -21],
+      [6, -47],
+      [-9, -74],
+      [-57, -161],
+      [-28, -51],
+      [-10, -29],
+      [-1, -30],
+      [11, -56],
+      [3, -47],
+      [-6, -47],
+      [-41, -124],
+      [-7, -88],
+      [3, -89],
+      [21, -95],
+      [2, -62],
+      [-8, -49],
+      [-27, -67],
+      [-127, -10],
+      [-84, -26],
+      [-52, -20],
+      [-82, -24],
+      [-29, -1],
+      [-70, 9],
+      [-41, 81],
+      [-46, 44],
+      [-39, 20],
+      [-29, 8],
+      [-44, 2],
+      [-47, -4],
+      [-17, -61],
+      [-32, -66],
+      [-17, -63],
+      [-33, -42],
+      [-30, -12],
+      [-32, -1],
+      [-65, 19],
+      [-79, 16],
+      [-45, 15],
+      [-56, 7],
+      [-31, -5],
+      [-29, -27],
+      [-36, -107],
+      [-23, -35],
+      [-26, -18],
+      [-89, -39],
+      [-46, -24],
+      [-41, -52],
+      [-49, -40],
+      [-33, -12],
+      [-70, -9],
+      [-33, -8],
+      [-30, -17],
+      [-39, -33],
+      [-62, -40],
+      [-68, -49],
+      [-31, -60],
+      [-1, -42],
+      [20, -41],
+      [24, -27],
+      [46, -38],
+      [147, -77],
+      [25, -5],
+      [39, 4],
+      [36, 25],
+      [21, 27],
+      [23, 55],
+      [37, 38],
+      [32, 8],
+      [53, -12],
+      [50, -33],
+      [118, -73],
+      [-4, -110],
+      [-19, -82],
+      [-7, -98],
+      [1, -177],
+      [-7, -61],
+      [-16, -31],
+      [-22, -26],
+      [-52, -40],
+      [-27, -31],
+      [-48, -40],
+      [-15, -30],
+      [-6, -35],
+      [2, -35],
+      [13, -34],
+      [21, -28],
+      [52, -44],
+      [13, -19],
+      [28, -74],
+      [41, -134],
+      [18, -45],
+      [-10, -69],
+      [-31, -85],
+      [12, -85],
+      [-1, -206],
+      [5, -62],
+      [28, -97],
+      [26, -74],
+      [41, -85],
+      [30, -124],
+      [7, -144],
+      [16, -70],
+      [5, -98],
+      [-2, -150],
+      [6, -60],
+      [13, -38],
+      [22, -41],
+      [30, -34],
+      [51, -41],
+      [32, -63],
+      [8, -59],
+      [-1, -171]
+    ],
+    [
+      [11928, 4544],
+      [-32, -15],
+      [-167, 95],
+      [-126, 20],
+      [-68, 5],
+      [-48, 50],
+      [-198, -15],
+      [-89, 108],
+      [-100, 17],
+      [-55, 43],
+      [-126, -46],
+      [-203, -1],
+      [-159, -64],
+      [-224, -34],
+      [-12, 133],
+      [-136, 89],
+      [-124, -10],
+      [-83, 38],
+      [96, 87],
+      [39, 96],
+      [-9, 33],
+      [-87, 44],
+      [-74, 115],
+      [12, 68],
+      [148, 265],
+      [64, -6],
+      [123, 25],
+      [66, 77],
+      [146, 77],
+      [37, 56],
+      [-16, 102],
+      [-140, 188],
+      [-4, 67],
+      [-44, 51],
+      [36, 60],
+      [-52, 199],
+      [-202, 5],
+      [-107, -63],
+      [-121, 61],
+      [87, 194],
+      [79, 68],
+      [12, 70],
+      [-32, 97],
+      [41, 98],
+      [-2, 69],
+      [27, 56],
+      [-61, 156],
+      [95, 17],
+      [45, 70],
+      [65, 106],
+      [98, 86],
+      [35, 1],
+      [102, 141],
+      [-93, 187],
+      [-135, 28],
+      [-31, 16],
+      [-60, 91],
+      [-60, 3],
+      [-53, -92],
+      [93, -101],
+      [-20, -101],
+      [-181, 18],
+      [22, 26],
+      [-29, 128],
+      [-62, -13],
+      [7, 172],
+      [-42, 132],
+      [-63, 17],
+      [-57, 84],
+      [-127, -25],
+      [-13, 112],
+      [-157, 186],
+      [-91, 44],
+      [-78, 154],
+      [-73, -67],
+      [-129, -37],
+      [-40, -55],
+      [-93, 42],
+      [-30, -61],
+      [-1, 71],
+      [-34, 6],
+      [-264, -163],
+      [-119, -49],
+      [-93, -4],
+      [18, 64],
+      [-20, 64],
+      [-95, -8],
+      [-82, 94],
+      [-110, 62],
+      [-95, -18],
+      [-21, -64],
+      [-63, -11],
+      [16, 67],
+      [-54, 34],
+      [-57, -34],
+      [-98, 20],
+      [-98, -21],
+      [-12, -33],
+      [-131, 0],
+      [-48, -90],
+      [-4, -72],
+      [-29, -56],
+      [12, -154],
+      [-33, -11],
+      [-77, 61],
+      [16, -92],
+      [-40, -48],
+      [-124, 155],
+      [-37, 96],
+      [-71, 76],
+      [14, 67],
+      [-67, 78],
+      [8, 137],
+      [-54, 85],
+      [95, 190],
+      [3, 212],
+      [-29, 276],
+      [-53, 83],
+      [3, 135],
+      [-44, 51],
+      [-65, 6],
+      [-89, 188],
+      [-135, 155],
+      [-155, -56],
+      [-93, 93],
+      [-63, -17],
+      [-234, -39],
+      [-88, -55],
+      [-32, -14],
+      [-21, 29],
+      [-9, 71],
+      [8, 36],
+      [116, 174],
+      [5, 35],
+      [-14, 34],
+      [-59, 36],
+      [-199, 51],
+      [-30, -17],
+      [-88, -111],
+      [-38, -139],
+      [-67, 0],
+      [-24, 19],
+      [-189, -106],
+      [-97, -21],
+      [-81, -60],
+      [-107, 131],
+      [-161, 43],
+      [-37, 3],
+      [-49, 94],
+      [-217, 106],
+      [-43, 127],
+      [12, 133],
+      [-35, 59],
+      [53, 35],
+      [-40, 50],
+      [23, 97],
+      [-35, 56],
+      [13, 129],
+      [-46, 116],
+      [-9, 67],
+      [-84, 102],
+      [16, 65],
+      [-51, 82],
+      [-39, 48],
+      [27, 57],
+      [-23, 52],
+      [-18, 157],
+      [11, 32],
+      [113, 63],
+      [-52, 157],
+      [34, 7],
+      [6, 71],
+      [-72, 111],
+      [-237, 33],
+      [-117, 125],
+      [43, 94],
+      [-17, 31],
+      [-52, 33],
+      [-24, 91],
+      [-18, 30]
+    ],
+    [
+      [3029, 13117],
+      [-9, -14],
+      [-126, 36],
+      [-34, -58],
+      [-167, -111],
+      [-71, -72],
+      [-94, 26],
+      [-107, -76],
+      [-15, -29],
+      [37, -90],
+      [-40, -39],
+      [-44, -49],
+      [-1, -139],
+      [-49, -92],
+      [-64, 7],
+      [-14, -94],
+      [-60, -11],
+      [-101, 130],
+      [-82, -29]
+    ],
+    [
+      [21023, 12994],
+      [54, -45],
+      [345, 71],
+      [91, -21],
+      [79, -24],
+      [79, -14],
+      [50, 9],
+      [29, -4],
+      [3, -27],
+      [103, -299],
+      [-1, 22],
+      [41, -35],
+      [160, -64],
+      [117, 9],
+      [-1, 13],
+      [138, -12],
+      [114, -102],
+      [191, -328],
+      [155, -190],
+      [-27, -59],
+      [52, -46],
+      [2, -38],
+      [-39, -3],
+      [-36, -41],
+      [-2, 39],
+      [-39, -3],
+      [53, -70],
+      [32, -160],
+      [154, 100],
+      [9, -7],
+      [69, 5],
+      [119, -69],
+      [191, 12],
+      [41, -36],
+      [1, -18],
+      [78, -39],
+      [-169, -250],
+      [-61, 15],
+      [-60, -67],
+      [2, -38],
+      [-78, 33],
+      [-51, -71],
+      [-37, -27],
+      [-21, -24],
+      [-38, -3],
+      [4, -76],
+      [-75, -44],
+      [-38, -2],
+      [-24, -28],
+      [-22, -96],
+      [54, -180],
+      [186, -164],
+      [85, -152],
+      [144, -14],
+      [2, -27],
+      [38, 2],
+      [2, -38],
+      [38, 2],
+      [-2, 39],
+      [36, 40],
+      [40, -36],
+      [39, -1],
+      [135, -14],
+      [102, 50],
+      [94, -92],
+      [78, -302],
+      [134, -125],
+      [18, 20],
+      [40, -36],
+      [2, -40],
+      [9, -8],
+      [-78, -260],
+      [-1, -164],
+      [-136, -145],
+      [-5, -111],
+      [33, -41],
+      [118, -110],
+      [2, -42],
+      [55, -69],
+      [24, 0],
+      [5, -37],
+      [35, 1],
+      [79, -73],
+      [4, -76],
+      [37, 1],
+      [2, -37],
+      [38, 1],
+      [-31, -115],
+      [-74, -40],
+      [-37, -2],
+      [-24, 23],
+      [-160, -73],
+      [-95, 102],
+      [-101, -17],
+      [-1, 21],
+      [-36, -41],
+      [-115, -8],
+      [6, -114],
+      [-76, -5],
+      [6, -114],
+      [-38, -3],
+      [2, -38],
+      [-38, -3],
+      [6, -114],
+      [-33, -95],
+      [4, -60],
+      [-131, -10],
+      [-77, -23],
+      [-19, -22],
+      [-67, -4],
+      [-165, -51],
+      [-68, -116],
+      [-135, -75],
+      [121, -481],
+      [-26, -25],
+      [-101, -83],
+      [-80, -18],
+      [4, -62],
+      [-38, -1],
+      [-31, 28],
+      [-70, -197],
+      [114, -52],
+      [-23, -126],
+      [-49, 1],
+      [2, -35],
+      [-78, -2],
+      [-85, 38],
+      [56, 138],
+      [-31, 125],
+      [-118, 79],
+      [-131, 16],
+      [-21, -147],
+      [-42, -18],
+      [-65, 11],
+      [-104, 38],
+      [-79, 46],
+      [-31, 124]
+    ],
+    [
+      [21843, 7004],
+      [12, 2],
+      [16, 80],
+      [12, 45],
+      [2, 30],
+      [-9, 32],
+      [-38, 61],
+      [-15, 33],
+      [-26, 167],
+      [-3, 73],
+      [-19, 52],
+      [-26, 103],
+      [-2, 60],
+      [10, 65],
+      [17, 77],
+      [11, 150],
+      [19, 69],
+      [5, 36],
+      [6, 99],
+      [-2, 36],
+      [-12, 45],
+      [-25, 35],
+      [-132, 108],
+      [-76, 41],
+      [-88, 55],
+      [-46, 22],
+      [-30, 8],
+      [-44, 0],
+      [-55, -14],
+      [-45, -5],
+      [-71, 0],
+      [-45, 8],
+      [-65, 33],
+      [-58, 51],
+      [-36, 20],
+      [-46, -5],
+      [-62, -59],
+      [-44, -73],
+      [-12, -39],
+      [39, -112],
+      [5, -47],
+      [-9, -59],
+      [-40, -88],
+      [1, -50],
+      [11, -19],
+      [26, -20],
+      [21, -7],
+      [67, -4],
+      [39, -15],
+      [17, -41],
+      [-1, -34],
+      [-10, -34],
+      [-39, -39],
+      [-80, -27],
+      [-84, -23],
+      [-117, -12],
+      [-69, -16],
+      [-73, -2],
+      [-124, 4],
+      [-48, 6],
+      [-55, 15],
+      [-58, -2],
+      [-91, -33],
+      [-118, -12],
+      [-59, -16],
+      [20, 99],
+      [31, 77],
+      [61, 109],
+      [34, 50],
+      [8, 29],
+      [-10, 38],
+      [-38, 15],
+      [-55, 4],
+      [-45, 13],
+      [-38, 29],
+      [-24, 27],
+      [-21, 44],
+      [-5, 37],
+      [0, 63],
+      [4, 102],
+      [7, 49],
+      [32, 78],
+      [27, 51],
+      [30, 43],
+      [-127, 35],
+      [-152, 57],
+      [-38, 18],
+      [-50, 32],
+      [-87, 6],
+      [-78, 1],
+      [-37, 63],
+      [-70, 100],
+      [-54, 53],
+      [-38, 55],
+      [-44, 34],
+      [-50, 3],
+      [-94, -36],
+      [-102, -28],
+      [-47, -6],
+      [-48, 2],
+      [-43, 11],
+      [-46, 25],
+      [-24, 22],
+      [-60, 72],
+      [-10, 69],
+      [-9, 40],
+      [-58, 114],
+      [-109, -90],
+      [-52, -27],
+      [-85, -21],
+      [-31, 0],
+      [-42, 15],
+      [-112, 74],
+      [-74, 67],
+      [-30, 22],
+      [-31, 12],
+      [-43, 7],
+      [1, -48],
+      [10, -55],
+      [18, -41],
+      [39, -71],
+      [6, -33],
+      [-4, -34],
+      [-15, -34],
+      [-44, -50],
+      [-70, -64],
+      [-63, -45]
+    ],
+    [
+      [17893, 9101],
+      [-49, 7],
+      [-53, 15],
+      [-30, 0],
+      [-64, -13],
+      [-98, -10],
+      [-43, -19],
+      [-99, -107],
+      [-46, -41],
+      [-43, -17],
+      [-43, 4],
+      [-36, 23],
+      [-31, 41],
+      [-34, 36],
+      [-25, 55],
+      [-13, 50],
+      [-27, 84],
+      [-19, 30],
+      [-49, 44],
+      [-48, 23],
+      [-35, 7],
+      [-82, 11],
+      [-62, 23],
+      [-42, 11],
+      [31, 139],
+      [27, 70],
+      [26, 49],
+      [-21, 43],
+      [-19, 58],
+      [-50, 52],
+      [-20, 33],
+      [-20, 53],
+      [-11, 82],
+      [-30, 77],
+      [-53, 76],
+      [-90, -66],
+      [-28, -15],
+      [-41, -9],
+      [-60, -1],
+      [-56, 108],
+      [-54, 85],
+      [-51, 71],
+      [-28, 64],
+      [-54, 15],
+      [-71, 2],
+      [-42, 16],
+      [-28, 32],
+      [-18, 55],
+      [-22, 46],
+      [-15, 12],
+      [-31, 9],
+      [-67, -6],
+      [-101, -40],
+      [-106, -12],
+      [-55, -15],
+      [-96, -16],
+      [18, 112],
+      [9, 31],
+      [47, 96],
+      [45, 69],
+      [30, 68],
+      [19, 86],
+      [-43, 49],
+      [-20, 30],
+      [-49, 106],
+      [-15, 50],
+      [-34, 76],
+      [-44, 30],
+      [-32, 40],
+      [-31, 26],
+      [-23, 32],
+      [-31, 26],
+      [-31, 46],
+      [-89, 109],
+      [8, 58],
+      [18, 69],
+      [5, 58],
+      [1, 85]
+    ],
+    [
+      [16123, 12564],
+      [78, -42],
+      [48, -56],
+      [31, -27],
+      [48, -77],
+      [32, -63],
+      [119, 92],
+      [23, 59],
+      [14, 104],
+      [20, 25],
+      [29, 9],
+      [67, 7],
+      [72, 14],
+      [49, 2],
+      [74, -3]
+    ],
+    [
+      [19732, 13505],
+      [63, -40],
+      [27, -200],
+      [-12, -40],
+      [-26, -56],
+      [-23, -81],
+      [-27, -58],
+      [7, -28]
+    ],
+    [
+      [21843, 7004],
+      [-10, 41],
+      [-143, -53],
+      [-89, -10],
+      [-128, -48],
+      [-85, -372],
+      [-326, -257],
+      [-6, -16],
+      [-12, -81],
+      [-33, -61],
+      [-16, -78],
+      [-12, -88],
+      [-94, -45],
+      [-69, -65],
+      [-30, -60],
+      [16, -159],
+      [-39, -163],
+      [-61, -103],
+      [-112, -75],
+      [-11, -67],
+      [9, -74],
+      [47, -51],
+      [51, -76],
+      [1, -74],
+      [-41, -45],
+      [-127, -31],
+      [-7, -80],
+      [-30, -40],
+      [-59, 26],
+      [-39, 8],
+      [-23, -39],
+      [-67, -8],
+      [-16, -94],
+      [6, -63],
+      [-8, -61],
+      [-35, -63],
+      [-37, -129],
+      [-43, -78],
+      [-39, -9],
+      [-60, -90],
+      [6, -43],
+      [85, -52],
+      [96, -50],
+      [78, -58],
+      [1, -58],
+      [-23, -9],
+      [-38, -67],
+      [-10, -9],
+      [-107, 5],
+      [-5, -12],
+      [5, -58],
+      [9, -41],
+      [-11, -31],
+      [-28, -21],
+      [0, -82],
+      [-17, 1],
+      [-2, -53],
+      [-26, -19],
+      [22, -72],
+      [12, -79],
+      [-24, -58],
+      [42, -55],
+      [17, -88],
+      [4, -84],
+      [155, -1],
+      [75, -73],
+      [208, -453],
+      [29, -175],
+      [0, -25],
+      [104, -6],
+      [75, 29],
+      [54, -9],
+      [50, -52],
+      [36, -62],
+      [44, -62],
+      [-52, -53],
+      [-46, -58],
+      [-15, -86],
+      [4, -68],
+      [42, -67],
+      [70, -45],
+      [68, -31],
+      [73, -44],
+      [-28, -72],
+      [-7, -47],
+      [6, -79],
+      [-5, -76],
+      [-144, -9],
+      [-23, -63],
+      [7, -62],
+      [-43, -65],
+      [-28, -69],
+      [5, -78],
+      [-58, -43],
+      [-50, -43],
+      [-12, -70],
+      [103, -40],
+      [36, 3],
+      [1, -107],
+      [-40, -51],
+      [-68, -65],
+      [-42, -55],
+      [-106, -92],
+      [-35, 16],
+      [-82, -78],
+      [-14, 28],
+      [-124, 42],
+      [-129, 109],
+      [-89, -36],
+      [-9, -170],
+      [-91, -34],
+      [-79, 53],
+      [-53, -35],
+      [-128, -16],
+      [-77, 68],
+      [-125, 25],
+      [-53, 40],
+      [-98, -28],
+      [-78, -68],
+      [0, -36],
+      [-94, -95],
+      [20, -100],
+      [-23, -64],
+      [-40, -88],
+      [-25, 12],
+      [-84, 148],
+      [-155, 61],
+      [-95, 6],
+      [-73, -113],
+      [-69, -45],
+      [-193, -59],
+      [-101, -2],
+      [-87, -97],
+      [-29, 18],
+      [-18, 103],
+      [-102, 92],
+      [106, 85],
+      [7, 104],
+      [-143, 144],
+      [-7, 19],
+      [31, 13],
+      [48, 130],
+      [-92, 39],
+      [-65, 200],
+      [13, 33],
+      [-236, 254],
+      [-294, 142],
+      [-42, -132],
+      [-114, -40],
+      [-44, -22],
+      [-64, 185],
+      [99, 178],
+      [76, 64],
+      [-85, 104],
+      [-205, 187],
+      [-27, 39],
+      [-11, 37],
+      [-76, 70],
+      [-140, -93],
+      [-95, 35],
+      [-97, -12],
+      [-44, 54],
+      [-57, -22],
+      [-58, 23],
+      [-152, -17],
+      [-5, 170],
+      [-29, 60],
+      [-58, 25],
+      [-51, -86],
+      [-129, 83],
+      [11, 99],
+      [-177, 338],
+      [-44, 51],
+      [-130, -33],
+      [-140, 88],
+      [-201, 97],
+      [-82, 146],
+      [-65, 67],
+      [-124, 2]
+    ],
+    [
+      [15206, 3121],
+      [50, 2],
+      [11, 37],
+      [-19, -1],
+      [6, 26],
+      [33, 36],
+      [35, 71],
+      [5, 37],
+      [0, 49],
+      [-6, 37],
+      [-27, 66],
+      [-19, 30],
+      [68, 111],
+      [40, 42],
+      [26, 18],
+      [77, 44],
+      [75, 53],
+      [27, 31],
+      [53, 33],
+      [37, 15],
+      [24, 84],
+      [13, 90],
+      [12, 28],
+      [45, 44],
+      [57, 66],
+      [48, 35],
+      [79, 68],
+      [49, 33],
+      [39, 41],
+      [13, 31],
+      [3, 30],
+      [-11, 55],
+      [1, 55],
+      [11, 45],
+      [2, 41],
+      [-22, 58],
+      [-23, 25],
+      [-69, 43],
+      [-31, 34],
+      [-26, 60],
+      [-35, 52],
+      [-32, 37],
+      [-43, 40],
+      [-39, 14],
+      [-27, -4],
+      [-33, -33],
+      [-45, -28],
+      [-21, -7],
+      [-42, -2],
+      [-20, 7],
+      [-20, 19],
+      [-17, 36],
+      [-37, 125],
+      [-12, 31],
+      [-76, 113],
+      [-48, 43],
+      [-6, 42],
+      [-22, 69],
+      [-19, 42],
+      [52, 48],
+      [36, 26],
+      [69, 21],
+      [69, 81],
+      [34, 49],
+      [50, 46],
+      [52, 25],
+      [14, 11],
+      [46, 61],
+      [36, 75],
+      [3, 67],
+      [-14, 58],
+      [-6, 74],
+      [0, 63],
+      [5, 74],
+      [17, 71],
+      [11, 94],
+      [22, 36],
+      [110, 43],
+      [0, -86],
+      [-3, -113],
+      [1, -37],
+      [8, -35],
+      [37, -40],
+      [22, -7],
+      [47, -4],
+      [47, 6],
+      [77, 20],
+      [79, 1],
+      [44, -11],
+      [79, -49],
+      [147, -1],
+      [47, 4],
+      [32, 10],
+      [64, 32],
+      [79, 13],
+      [56, 15],
+      [79, 10],
+      [126, 40],
+      [46, 6],
+      [73, 0],
+      [-1, 63],
+      [-6, 60],
+      [-13, 47],
+      [-6, 82],
+      [3, 34],
+      [10, 30],
+      [14, 14],
+      [50, 18],
+      [42, 23],
+      [18, 34],
+      [2, 33],
+      [-13, 73],
+      [-3, 56],
+      [-32, 24],
+      [-24, 27],
+      [-22, 37],
+      [-42, 88],
+      [-38, 63],
+      [-24, 59],
+      [-12, 80],
+      [-10, 28],
+      [-27, 28],
+      [-22, 33],
+      [-28, 26],
+      [-22, 46],
+      [-14, 11],
+      [-35, 5],
+      [-68, -12],
+      [-36, 16],
+      [-14, 16],
+      [-9, 30],
+      [9, 59],
+      [49, 26],
+      [57, 12],
+      [85, 4],
+      [31, 8],
+      [47, 22],
+      [50, 45],
+      [34, 23],
+      [47, 26],
+      [67, 28],
+      [49, 6],
+      [100, 0],
+      [37, 2],
+      [35, 9],
+      [45, 21],
+      [30, 23],
+      [38, 36],
+      [140, 142],
+      [91, 98],
+      [31, 41],
+      [32, 26],
+      [27, 34],
+      [31, 25],
+      [50, 24],
+      [28, 28],
+      [62, 37],
+      [29, 33],
+      [18, 61],
+      [19, 45],
+      [-56, 27],
+      [-80, 15],
+      [-45, 13],
+      [-49, 1],
+      [-97, -25],
+      [-71, -40],
+      [-32, -7],
+      [-40, 7],
+      [-24, 37],
+      [-1, 34],
+      [7, 35],
+      [27, 36],
+      [28, 16],
+      [63, 13],
+      [56, 23],
+      [73, 49],
+      [17, 21],
+      [8, 30],
+      [6, 65],
+      [12, 37],
+      [36, 44],
+      [26, 71],
+      [8, 45],
+      [2, 59],
+      [-5, 47],
+      [-25, 64],
+      [-28, 51]
+    ],
+    [
+      [15206, 3121],
+      [-101, 1],
+      [-57, -35],
+      [-23, -66],
+      [-46, 6],
+      [-27, -47],
+      [-63, 18],
+      [-95, -29],
+      [-55, 34],
+      [-65, -9],
+      [-77, 53],
+      [-83, -41],
+      [-42, 55],
+      [116, 251],
+      [-39, 202],
+      [-55, 41],
+      [-22, 66],
+      [-23, 141],
+      [66, 73],
+      [132, 295],
+      [14, 141],
+      [-41, 101],
+      [-127, 121],
+      [-84, 157],
+      [-197, 55],
+      [-144, 42],
+      [-6, 108],
+      [35, 137],
+      [66, 21],
+      [58, 85],
+      [8, 54],
+      [26, 267],
+      [122, 172],
+      [-18, 61],
+      [-57, 37],
+      [-1, 72],
+      [-55, 39],
+      [10, 47],
+      [115, 46],
+      [9, 135],
+      [30, 10],
+      [-32, 95],
+      [63, 74],
+      [60, -20],
+      [24, -68],
+      [29, -17],
+      [27, 22],
+      [-21, 284],
+      [55, 89],
+      [112, 81],
+      [-2, 36],
+      [-67, 15],
+      [-62, 125],
+      [-271, 18],
+      [-56, 129],
+      [-128, -171],
+      [-144, -100],
+      [-91, -40],
+      [-58, -163],
+      [-31, -3],
+      [2, -98],
+      [-227, -121],
+      [-12, -31],
+      [-67, -14],
+      [-131, -288],
+      [31, -103],
+      [64, 17],
+      [-4, -167],
+      [-61, -158],
+      [12, -169],
+      [-15, -66],
+      [53, -87],
+      [-167, -1],
+      [-219, -92],
+      [-235, -15],
+      [-125, -50],
+      [-37, -77],
+      [-55, -39],
+      [-130, -17],
+      [-105, -174],
+      [-81, -46],
+      [-198, 3],
+      [-182, -87]
+    ]
+  ],
+  "transform": {
+    "scale": [0.00015891216812693426, 0.00009714873181622495],
+    "translate": [2.555355548858756, 49.49721527099614]
+  },
+  "objects": {
+    "belgium": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-BRU",
+            "NAME_0": "Belgium",
+            "ID_1": 1,
+            "NAME_1": "Bruxelles",
+            "ID_2": 1,
+            "NAME_2": "Bruxelles",
+            "TYPE_2": "Hoofdstedelijk Gewest|Région Capitale",
+            "ENGTYPE_2": "Capital Region",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Brussel Hoofstadt|Brusselse Hoofdstedelijke Gewest|Brüssel|Bruxelas|Région de Bruxelles-Capitale|Brussels|Bruselas"
+          }
+        },
+        {
+          "arcs": [[[1]], [[2, 3, 4, 5]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-VAN",
+            "NAME_0": "Belgium",
+            "ID_1": 2,
+            "NAME_1": "Vlaanderen",
+            "ID_2": 2,
+            "NAME_2": "Antwerpen",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Amberes|Antuérpia|Antwerp|Anvers|Anversa"
+          }
+        },
+        {
+          "arcs": [[[6, 7]], [[8, 9, 10, -3, 11]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-VLI",
+            "NAME_0": "Belgium",
+            "ID_1": 2,
+            "NAME_1": "Vlaanderen",
+            "ID_2": 3,
+            "NAME_2": "Limburg",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Limbourg|Limburgo"
+          }
+        },
+        {
+          "arcs": [[-5, 12, 13, 14, 15]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-VOV",
+            "NAME_0": "Belgium",
+            "ID_1": 2,
+            "NAME_1": "Vlaanderen",
+            "ID_2": 4,
+            "NAME_2": "Oost-Vlaanderen",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Flandres Oriental|Fiandra Orientale|Flandes Oriental|Flandre orientale|East Flanders|Ost Flandern"
+          }
+        },
+        {
+          "arcs": [[16, 17, 18, 19, -13, -4, -11], [-1]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-VBR",
+            "NAME_0": "Belgium",
+            "ID_1": 2,
+            "NAME_1": "Vlaanderen",
+            "ID_2": 5,
+            "NAME_2": "Vlaams Brabant",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Brabant Flamand|Brabante Flamenco|Brabante Flamengo|Flemish Brabant"
+          }
+        },
+        {
+          "arcs": [[[-15, 20, 21, 22, 23]], [[24]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-VWV",
+            "NAME_0": "Belgium",
+            "ID_1": 2,
+            "NAME_1": "Vlaanderen",
+            "ID_2": 6,
+            "NAME_2": "West-Vlaanderen",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Fiandra Occidentale|Flandes Occidental|Flandre occidentale|Flandres Ocidental|West Flandern|West Flanders"
+          }
+        },
+        {
+          "arcs": [[25, 26, 27, -19]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-WBR",
+            "NAME_0": "Belgium",
+            "ID_1": 3,
+            "NAME_1": "Wallonie",
+            "ID_2": 7,
+            "NAME_2": "Brabant Wallon",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Waals Brabant|Walloon Brabant"
+          }
+        },
+        {
+          "arcs": [[[-20, -28, 28, 29, -21, -14]], [[30, -23]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-WHT",
+            "NAME_0": "Belgium",
+            "ID_1": 3,
+            "NAME_1": "Wallonie",
+            "ID_2": 8,
+            "NAME_2": "Hainaut",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Henegouwen|Hennegau"
+          }
+        },
+        {
+          "arcs": [[31, 32, 33, -26, -18, 34, -9, 35, -7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-WLG",
+            "NAME_0": "Belgium",
+            "ID_1": 3,
+            "NAME_1": "Wallonie",
+            "ID_2": 9,
+            "NAME_2": "Liège",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Luik|Liegi|Lieja|Lüttich"
+          }
+        },
+        {
+          "arcs": [[-17, -10, -35]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-VLI",
+            "NAME_0": "Belgium",
+            "ID_1": 3,
+            "NAME_1": "Wallonie",
+            "ID_2": 10,
+            "NAME_2": "Limburg",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Limbourg|Limburgo"
+          }
+        },
+        {
+          "arcs": [[36, 37, -33]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-WLX",
+            "NAME_0": "Belgium",
+            "ID_1": 3,
+            "NAME_1": "Wallonie",
+            "ID_2": 11,
+            "NAME_2": "Luxembourg",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Lussemburgo|Luxemburg|Luxemburgo"
+          }
+        },
+        {
+          "arcs": [[-38, 38, -29, -27, -34]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 23,
+            "ISO": "BE-WNA",
+            "NAME_0": "Belgium",
+            "ID_1": 3,
+            "NAME_1": "Wallonie",
+            "ID_2": 12,
+            "NAME_2": "Namur",
+            "TYPE_2": "Provincie",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Namen"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/brazil-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/brazil-topo.json
new file mode 100644
index 0000000..e5824b4
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/brazil-topo.json
@@ -0,0 +1,3930 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [3916, 13919],
+      [119, -51]
+    ],
+    [
+      [4035, 13868],
+      [-27, -29],
+      [-62, -25],
+      [-132, -121],
+      [-14, -32],
+      [-63, -20],
+      [-31, -28],
+      [-69, 12],
+      [2, -31],
+      [-53, 0],
+      [-20, -48],
+      [-75, -27],
+      [-57, -73],
+      [-13, -48],
+      [-61, 29],
+      [-101, 4],
+      [-56, -37],
+      [1, -34],
+      [-51, -49],
+      [-23, -56],
+      [-83, -50],
+      [-54, -5],
+      [-30, -35],
+      [-95, -20],
+      [-27, 46],
+      [9, 32],
+      [-74, 0],
+      [-152, 28],
+      [-83, 4],
+      [-61, 17],
+      [-60, -19],
+      [-36, 11],
+      [-75, -19],
+      [-29, 26],
+      [-91, 0],
+      [-77, -35],
+      [-35, -30],
+      [-104, -16],
+      [-50, 24],
+      [-20, 32],
+      [-41, 19],
+      [-43, -38],
+      [1, 371],
+      [0, 310],
+      [54, 64],
+      [-38, 68],
+      [57, 103],
+      [-51, -8],
+      [-41, -45],
+      [-47, -25],
+      [-29, -46],
+      [-38, -13],
+      [-71, -89],
+      [-29, 1],
+      [-65, -42],
+      [-29, -48],
+      [-84, -17],
+      [-441, 0],
+      [18, 73],
+      [-2, 45],
+      [-36, 11],
+      [-23, 38],
+      [-13, 99],
+      [-70, 38],
+      [-59, -5],
+      [-109, 43],
+      [-271, -1],
+      [16, 35],
+      [80, 70],
+      [52, 80],
+      [-7, 63],
+      [-47, 50],
+      [-68, 113],
+      [-58, 13],
+      [-40, 59],
+      [0, 62],
+      [-26, 3],
+      [-77, 71],
+      [-5, 52],
+      [-25, 36],
+      [-4, 50],
+      [-23, 54],
+      [-62, 37],
+      [-11, 50],
+      [45, 16],
+      [-10, 48],
+      [-66, 26],
+      [-63, 64],
+      [-4, 48],
+      [15, 51],
+      [53, 56],
+      [70, 15],
+      [-12, 54],
+      [-39, 57]
+    ],
+    [
+      [87, 15485],
+      [280, -133],
+      [338, -159],
+      [267, -58],
+      [92, -30],
+      [239, -57],
+      [347, -85],
+      [311, -71],
+      [512, -291],
+      [142, -73],
+      [215, -119],
+      [91, -44],
+      [373, -168],
+      [336, -150],
+      [286, -128]
+    ],
+    [
+      [21280, 14445],
+      [-35, -56],
+      [-50, -109],
+      [-50, -64],
+      [-48, -39],
+      [-7, -26],
+      [-99, -108],
+      [-25, -44],
+      [-50, -33],
+      [-134, -204],
+      [-122, -117],
+      [-7, -39],
+      [-53, -86]
+    ],
+    [
+      [20600, 13520],
+      [-22, 44],
+      [-73, 4],
+      [-1, 50],
+      [-42, 46],
+      [-23, -12],
+      [-83, 42],
+      [-65, 76],
+      [-8, 46],
+      [-38, 2],
+      [-63, 51],
+      [-40, 1],
+      [-32, 40],
+      [-74, 39],
+      [-89, 17],
+      [-71, 60],
+      [-41, -5],
+      [-55, 52],
+      [-64, 20]
+    ],
+    [
+      [19716, 14093],
+      [-14, 28],
+      [-69, 14],
+      [-45, 65],
+      [18, 20]
+    ],
+    [
+      [19606, 14220],
+      [61, 72],
+      [62, 15],
+      [77, 98],
+      [5, 50],
+      [38, 21],
+      [64, -94],
+      [56, 35],
+      [40, -40],
+      [84, -39],
+      [45, -65],
+      [82, -27],
+      [72, -76],
+      [46, 67],
+      [39, -15],
+      [57, 11],
+      [59, -37],
+      [82, 73],
+      [39, -6],
+      [50, 33],
+      [43, 71],
+      [40, 8],
+      [-2, 43],
+      [118, 55],
+      [68, 6],
+      [22, -38],
+      [43, 13],
+      [83, 45],
+      [201, -54]
+    ],
+    [
+      [12914, 20861],
+      [50, -98],
+      [-26, -35],
+      [-39, -15],
+      [-35, 69],
+      [-8, 61],
+      [58, 18]
+    ],
+    [
+      [12854, 20902],
+      [52, -43],
+      [-51, -11],
+      [-1, 54]
+    ],
+    [
+      [13096, 20033],
+      [-47, 4],
+      [-105, -22],
+      [-49, -39],
+      [-21, -69],
+      [-57, -123],
+      [-49, -49],
+      [-64, -43],
+      [-104, -41],
+      [-50, -68],
+      [-82, -25],
+      [-76, -116],
+      [-57, -113],
+      [-75, -80],
+      [-49, -84],
+      [-2, -140],
+      [-66, -71],
+      [-43, -5],
+      [-59, 22],
+      [-58, -57],
+      [-11, 47],
+      [-117, 17],
+      [-46, 53],
+      [8, 86],
+      [-23, 25],
+      [-40, -14],
+      [11, 86],
+      [-21, 79],
+      [-57, -6],
+      [-31, 51],
+      [6, 106],
+      [-91, 96],
+      [-45, 6],
+      [-24, 95],
+      [-64, 137],
+      [-45, 71],
+      [17, 183],
+      [-25, 42],
+      [-121, 94],
+      [-26, 121],
+      [34, 24],
+      [-23, 31],
+      [-65, 30],
+      [10, 33],
+      [-135, 36],
+      [-36, -6],
+      [-25, 36],
+      [-57, 29],
+      [-49, -7],
+      [-7, 54],
+      [-114, 91],
+      [-38, 13],
+      [-64, -10],
+      [-58, 22],
+      [-79, -5],
+      [-15, 96],
+      [-21, 57],
+      [2, 58],
+      [24, 37],
+      [-26, 37],
+      [9, 27],
+      [-40, 75]
+    ],
+    [
+      [10465, 21047],
+      [68, 22],
+      [22, -80],
+      [85, -2],
+      [43, -64],
+      [53, -7],
+      [22, -30],
+      [83, 9],
+      [39, -30],
+      [14, 37],
+      [69, 26],
+      [9, 30],
+      [62, 15],
+      [22, 30],
+      [61, -46],
+      [120, 26],
+      [21, -26],
+      [82, 4],
+      [53, -42],
+      [56, 1],
+      [48, -30],
+      [46, 13],
+      [27, 54],
+      [99, 52],
+      [64, 86],
+      [3, 53],
+      [67, 157],
+      [18, 8],
+      [37, 111],
+      [-10, 27],
+      [36, 59],
+      [29, 8],
+      [168, 304],
+      [69, 67],
+      [23, 63],
+      [52, 31],
+      [29, 108],
+      [28, 13],
+      [-9, 53],
+      [33, 53],
+      [60, -41],
+      [102, -129],
+      [22, -81],
+      [28, -58],
+      [27, -10],
+      [-7, -90],
+      [5, -144],
+      [-5, -74],
+      [31, -89],
+      [-5, -47],
+      [53, -181],
+      [32, -44],
+      [22, -60],
+      [7, -74],
+      [20, -7],
+      [41, -127],
+      [-2, -25],
+      [71, -102],
+      [3, -41],
+      [31, -29],
+      [41, -74],
+      [32, -8],
+      [126, 8],
+      [83, -34],
+      [52, -34],
+      [15, -59],
+      [11, -146],
+      [-23, -38],
+      [29, -49],
+      [-24, -37],
+      [0, -64],
+      [-82, -127],
+      [-6, -62]
+    ],
+    [
+      [5799, 20914],
+      [50, -34],
+      [77, 11],
+      [12, -45],
+      [53, -47],
+      [41, 9],
+      [60, -8],
+      [73, -45],
+      [-14, -70],
+      [4, -62],
+      [-44, -70],
+      [40, -54],
+      [52, -38],
+      [27, -104],
+      [36, -99],
+      [42, -63],
+      [-22, -64],
+      [15, -47],
+      [-39, -44],
+      [-2, -117],
+      [47, -75],
+      [-11, -27],
+      [8, -73],
+      [21, -78],
+      [37, -26],
+      [15, -76],
+      [41, -42],
+      [-5, -57],
+      [36, -34],
+      [-21, -55],
+      [-26, -17],
+      [-24, -57],
+      [17, -50],
+      [-44, -42],
+      [-56, 10],
+      [-18, -51],
+      [58, -23],
+      [46, -64],
+      [77, -44],
+      [40, -53],
+      [45, -26],
+      [66, -147],
+      [54, 8],
+      [106, -39],
+      [12, 55],
+      [-24, 35],
+      [44, 129],
+      [-18, 94],
+      [20, 34],
+      [2, 55],
+      [45, 58],
+      [60, 36],
+      [68, 21],
+      [0, 31],
+      [75, 3],
+      [61, -36],
+      [118, -116],
+      [4, -58],
+      [54, -12],
+      [35, 17],
+      [33, -13],
+      [29, 61],
+      [24, -1],
+      [72, 36],
+      [-53, 117],
+      [30, 40],
+      [30, 86],
+      [3, 48],
+      [35, 43],
+      [10, 60],
+      [33, 41],
+      [15, 56],
+      [31, 17],
+      [12, 58],
+      [331, 0],
+      [295, 0]
+    ],
+    [
+      [8255, 19780],
+      [1, -159],
+      [17, -39],
+      [-10, -69],
+      [5, -85],
+      [81, -58],
+      [8, -46],
+      [-12, -62],
+      [94, -103],
+      [56, -34],
+      [24, -60],
+      [-8, -35],
+      [33, -23],
+      [25, -45],
+      [38, 6],
+      [50, -56],
+      [45, 60],
+      [35, 12],
+      [28, -58],
+      [-17, -81],
+      [43, -44],
+      [52, -11],
+      [28, -40],
+      [33, 2],
+      [19, -52],
+      [48, 8],
+      [63, -57],
+      [35, 3],
+      [33, -35],
+      [43, 14],
+      [96, -38],
+      [34, -80],
+      [97, -60],
+      [61, 2],
+      [15, -22],
+      [-26, -53],
+      [49, -42],
+      [36, 2],
+      [47, 41],
+      [63, -21],
+      [101, 69],
+      [71, 17],
+      [-38, -69],
+      [-52, -44],
+      [-66, -28],
+      [-44, -94],
+      [34, -15],
+      [-95, -213],
+      [-171, -393],
+      [-72, -174],
+      [-127, -285],
+      [-164, -368],
+      [-171, -395],
+      [-221, -505],
+      [-34, -18],
+      [-13, -36],
+      [-43, -32],
+      [-28, -48],
+      [-2, -48],
+      [26, -74],
+      [53, -44],
+      [85, -113],
+      [7, -78],
+      [18, -25]
+    ],
+    [
+      [8671, 15349],
+      [-41, -60],
+      [6, -94],
+      [-44, -52],
+      [-7, -36],
+      [-49, -39],
+      [6, -40],
+      [45, -97],
+      [-17, -55],
+      [2, -94],
+      [-54, -94],
+      [14, -58],
+      [-25, -65],
+      [23, -44],
+      [-58, -13],
+      [-344, -1],
+      [-400, 2],
+      [-309, 2],
+      [-235, -1],
+      [-403, 0]
+    ],
+    [
+      [6781, 14510],
+      [-24, 41],
+      [-63, 19],
+      [-18, -31],
+      [-38, 1],
+      [-9, -62],
+      [-71, -11],
+      [-23, 42],
+      [-51, -1],
+      [-35, 123],
+      [-44, 9],
+      [-54, 47],
+      [3, 56],
+      [-57, 34],
+      [-29, -26],
+      [-37, 65],
+      [-35, 21],
+      [-23, 83],
+      [-96, 68],
+      [-348, 0],
+      [-66, 4],
+      [0, -35],
+      [-40, -75],
+      [-16, -53],
+      [-37, -48],
+      [-44, 25],
+      [-40, -24],
+      [2, -71],
+      [-18, -15],
+      [27, -56],
+      [-34, -6],
+      [-27, -63],
+      [-59, -29],
+      [-9, -58],
+      [9, -59],
+      [-50, -28],
+      [-43, -2],
+      [-6, 39],
+      [-68, -28],
+      [-57, -1],
+      [-20, -18],
+      [-155, -1],
+      [-38, -66],
+      [11, -55],
+      [-45, -49],
+      [-29, -57],
+      [-49, -26],
+      [-24, 18],
+      [-14, 80],
+      [-19, 12],
+      [-72, -39],
+      [-34, 8],
+      [-9, -53],
+      [-25, -40],
+      [-52, 33],
+      [-45, -22],
+      [-24, -62],
+      [-42, -15],
+      [-14, 32],
+      [-48, 26],
+      [-32, 42],
+      [-84, 2],
+      [-27, -15],
+      [-47, 14],
+      [-64, -9],
+      [-9, -43],
+      [-60, -78],
+      [-150, -69],
+      [-17, -36]
+    ],
+    [
+      [87, 15485],
+      [31, 73],
+      [-18, 34],
+      [28, 56],
+      [42, 53],
+      [52, 38],
+      [84, 27],
+      [19, 26],
+      [83, 15],
+      [39, 41],
+      [15, 55],
+      [-32, 78],
+      [-47, 73],
+      [6, 66],
+      [23, 15],
+      [22, 80],
+      [55, 43],
+      [51, 80],
+      [0, 111],
+      [49, 102],
+      [-10, 75],
+      [96, 64],
+      [51, 1],
+      [13, 32],
+      [118, 78],
+      [9, 33],
+      [82, 20],
+      [63, 36],
+      [36, 40],
+      [30, 8],
+      [44, 55],
+      [63, 27],
+      [83, -15],
+      [141, 49],
+      [52, -10],
+      [27, 34],
+      [174, 12],
+      [63, 104],
+      [29, 14],
+      [42, -21],
+      [129, 37],
+      [80, -17],
+      [17, -86],
+      [31, -9],
+      [29, 31],
+      [43, -9],
+      [22, -44],
+      [33, 20],
+      [28, 97],
+      [79, 444],
+      [93, 554],
+      [88, 519],
+      [-3, 45],
+      [46, 83],
+      [-3, 93],
+      [-35, 84],
+      [-94, 159],
+      [32, 62],
+      [-21, 73],
+      [-77, 39],
+      [-66, 70],
+      [-32, 12],
+      [-87, 105],
+      [17, 294],
+      [-1, 102],
+      [70, 25],
+      [61, -3],
+      [81, 50],
+      [101, 37],
+      [60, -65],
+      [35, 15],
+      [51, -27],
+      [48, 30],
+      [-38, 45],
+      [25, 80],
+      [-65, 92],
+      [-40, 21],
+      [-48, -22],
+      [-22, 19],
+      [-83, 10],
+      [-51, -11],
+      [-29, 24],
+      [-55, -16],
+      [-1, 376],
+      [63, 11],
+      [47, -5],
+      [55, 29],
+      [88, -29],
+      [265, 0],
+      [383, 2],
+      [-22, 93],
+      [19, 68],
+      [53, -24],
+      [99, -78],
+      [89, 116],
+      [87, -4],
+      [38, 69],
+      [89, 59],
+      [25, -22],
+      [4, -63],
+      [32, -129],
+      [66, -16],
+      [33, -67],
+      [14, -169],
+      [-9, -160],
+      [127, 37],
+      [295, -277],
+      [58, 15],
+      [34, -21],
+      [45, 35],
+      [54, 1],
+      [19, 44],
+      [93, 48],
+      [15, 21],
+      [84, 5],
+      [43, -54],
+      [-31, -140],
+      [61, 6],
+      [31, 37],
+      [-1, 42],
+      [38, 64],
+      [48, -6],
+      [42, 17],
+      [6, 101],
+      [28, 19],
+      [44, -24],
+      [64, 73],
+      [53, 43],
+      [25, -49],
+      [23, 4],
+      [72, 58],
+      [33, 57],
+      [98, 48],
+      [-26, -72],
+      [31, -6],
+      [22, 49],
+      [87, 67],
+      [43, 54],
+      [-7, 48],
+      [9, 100],
+      [48, 35],
+      [80, -13],
+      [146, 95],
+      [39, -9],
+      [52, 18],
+      [13, 38]
+    ],
+    [
+      [8263, 18330],
+      [-125, -39],
+      [-35, -51],
+      [-12, -50],
+      [62, -61],
+      [51, 9],
+      [76, -24],
+      [38, 8],
+      [53, -44],
+      [99, -23],
+      [27, 30],
+      [83, 23],
+      [59, -31],
+      [9, -49],
+      [38, -64],
+      [38, 30],
+      [45, 7],
+      [14, 40],
+      [-3, 62],
+      [-43, -19],
+      [-89, 45],
+      [-88, 99],
+      [-13, 38],
+      [-53, 22],
+      [-56, -10],
+      [-26, 14],
+      [-66, -30],
+      [-30, 49],
+      [-53, 19]
+    ],
+    [
+      [19342, 12137],
+      [43, -41],
+      [-29, -50],
+      [-72, -56],
+      [-2, 46],
+      [68, 54],
+      [-8, 47]
+    ],
+    [
+      [18802, 8955],
+      [-11, 17],
+      [-293, 198]
+    ],
+    [
+      [18498, 9170],
+      [-22, 34],
+      [48, 40],
+      [-26, 69],
+      [-31, 7],
+      [-34, 59],
+      [-30, -3],
+      [-35, 33],
+      [-33, 71],
+      [-44, 33],
+      [26, 117],
+      [-14, 24],
+      [18, 95],
+      [30, 58],
+      [68, 6],
+      [47, -15],
+      [13, 55],
+      [-43, 15],
+      [33, 120],
+      [58, 29],
+      [80, 97],
+      [35, 20],
+      [42, 74],
+      [15, 47],
+      [-36, 50],
+      [-45, 16],
+      [-39, 47],
+      [-46, 7],
+      [-39, 61],
+      [-107, -1],
+      [-19, 30],
+      [-56, -29],
+      [-37, 51],
+      [-38, 27],
+      [-86, -10],
+      [-58, 22],
+      [-25, -38],
+      [-89, -27],
+      [-25, 13],
+      [-64, -4],
+      [-14, 142],
+      [-243, 232],
+      [-84, -43],
+      [-78, -4],
+      [-32, 48],
+      [-61, -15],
+      [-98, 38],
+      [4, 22],
+      [-104, 45],
+      [-71, 58],
+      [-83, 49],
+      [-25, 31],
+      [-123, 33],
+      [-74, -11],
+      [-82, -44],
+      [-28, -29],
+      [-114, 39],
+      [-90, 44],
+      [5, 77],
+      [50, 106],
+      [-111, 41],
+      [-27, -12],
+      [-113, 28],
+      [-104, -28],
+      [-69, -28],
+      [-141, -98],
+      [-34, -55],
+      [-90, -47],
+      [-31, -42],
+      [-39, 10],
+      [-177, -131],
+      [-42, 9],
+      [-59, -79],
+      [-31, -21],
+      [-103, -9],
+      [-60, -40],
+      [-9, 49],
+      [38, 46],
+      [5, 42],
+      [-39, 53]
+    ],
+    [
+      [15309, 10976],
+      [28, 148],
+      [-7, 111],
+      [39, 11],
+      [-20, 73],
+      [-30, 14],
+      [-120, 89],
+      [11, 74],
+      [-28, 22],
+      [22, 98],
+      [-15, 47],
+      [51, 60],
+      [-42, 21],
+      [14, 89],
+      [44, 15],
+      [47, 39],
+      [-9, 27],
+      [-118, -50],
+      [-28, 55],
+      [19, 71],
+      [-15, 19],
+      [27, 49],
+      [81, 31],
+      [6, 25]
+    ],
+    [
+      [15266, 12114],
+      [-104, -18],
+      [23, 68],
+      [-15, 117],
+      [17, 48],
+      [54, 12],
+      [1, 31],
+      [-49, 22],
+      [-69, 85],
+      [0, 160],
+      [49, 75],
+      [-49, 10],
+      [32, 131],
+      [71, 22],
+      [-70, 39],
+      [-57, 0],
+      [-56, 32],
+      [-16, 60],
+      [-37, 46],
+      [19, 32],
+      [60, 32],
+      [40, 115],
+      [64, 51],
+      [49, 109],
+      [-10, 40],
+      [83, 33],
+      [19, 30],
+      [88, 60],
+      [24, 44],
+      [39, 7],
+      [30, 54],
+      [-15, 60]
+    ],
+    [
+      [15481, 13721],
+      [66, 27],
+      [47, -103],
+      [48, -43],
+      [15, -61],
+      [-25, -25],
+      [7, -65],
+      [42, -66],
+      [61, -52],
+      [95, -11],
+      [78, -51],
+      [68, 37],
+      [11, 33],
+      [41, 27],
+      [68, 75],
+      [60, -4],
+      [79, 53],
+      [39, -44],
+      [54, -11],
+      [51, 37],
+      [26, 61],
+      [-2, 34],
+      [60, -5],
+      [45, 71],
+      [1, 31],
+      [31, 40],
+      [11, 62],
+      [37, -2],
+      [14, 51],
+      [-23, 45],
+      [30, 43],
+      [-72, 44],
+      [-31, 73],
+      [-4, 52],
+      [44, 62],
+      [45, 14],
+      [62, 58],
+      [62, 33],
+      [96, -92],
+      [91, 27],
+      [59, -20]
+    ],
+    [
+      [16968, 14156],
+      [30, -16]
+    ],
+    [
+      [16998, 14140],
+      [6, -49],
+      [69, -58],
+      [31, 1],
+      [26, 35],
+      [52, 9],
+      [94, 46],
+      [72, 83],
+      [42, 18],
+      [78, 4],
+      [71, 19],
+      [26, -17],
+      [47, 21],
+      [21, 55],
+      [66, 79],
+      [74, 43],
+      [31, 55],
+      [35, 24],
+      [36, 55]
+    ],
+    [
+      [17875, 14563],
+      [42, -17],
+      [30, 19],
+      [61, 0],
+      [8, -45],
+      [36, -3],
+      [63, -28],
+      [38, -69],
+      [18, -74],
+      [83, -46],
+      [-7, -58],
+      [-31, -45],
+      [8, -64],
+      [55, -21],
+      [102, 70],
+      [43, -9],
+      [28, 62],
+      [19, 111],
+      [34, 10],
+      [45, -27],
+      [34, 27],
+      [59, 9],
+      [47, 68],
+      [0, 63],
+      [109, 21],
+      [-9, 72],
+      [46, 4],
+      [122, 71],
+      [53, -17],
+      [30, -83],
+      [108, -17],
+      [51, -40],
+      [82, 5],
+      [48, -39],
+      [7, -42],
+      [29, -31],
+      [38, 91],
+      [56, -20],
+      [-27, -48],
+      [60, -53],
+      [49, 28],
+      [1, -87],
+      [44, -110],
+      [19, 19]
+    ],
+    [
+      [19716, 14093],
+      [-21, -33],
+      [19, -46],
+      [-18, -20],
+      [6, -53],
+      [31, -22],
+      [-14, -56],
+      [16, -30],
+      [75, -22],
+      [31, -84],
+      [21, -110],
+      [-52, -24],
+      [-15, -30],
+      [25, -48],
+      [-9, -44],
+      [9, -62],
+      [-102, -42],
+      [-32, 32],
+      [-85, 0],
+      [-15, -100],
+      [35, -61],
+      [35, -14],
+      [22, -83],
+      [50, -27],
+      [-12, -53],
+      [19, -59],
+      [55, -30],
+      [30, -41],
+      [78, -29],
+      [0, -63],
+      [33, 12],
+      [36, 60]
+    ],
+    [
+      [19967, 12911],
+      [84, 21],
+      [-70, -141],
+      [-50, -118],
+      [-79, -149],
+      [-110, -162],
+      [-22, -44],
+      [-176, -209],
+      [-83, -51],
+      [-9, 54],
+      [7, 63],
+      [-22, 44],
+      [-60, 7],
+      [-42, 56],
+      [-32, -46],
+      [-20, -78],
+      [20, -33],
+      [-30, -122],
+      [-31, -45],
+      [-36, -20],
+      [-18, -42],
+      [7, -64],
+      [34, -28],
+      [-23, -75],
+      [23, -35],
+      [-40, -27],
+      [-20, -47],
+      [10, -37],
+      [-53, -74],
+      [63, -9],
+      [-15, -132],
+      [6, -53],
+      [-45, -193],
+      [2, -86],
+      [16, -7],
+      [17, -117],
+      [0, -143],
+      [30, -172],
+      [3, -75],
+      [45, -117],
+      [-54, -142],
+      [3, -29],
+      [-40, -64],
+      [7, -66],
+      [-28, -31],
+      [-26, -164],
+      [-18, -27],
+      [-1, -66],
+      [-21, -138],
+      [-17, -30],
+      [-5, -86],
+      [16, -81],
+      [-1, -78],
+      [31, -65],
+      [-31, -30],
+      [-46, -75],
+      [-86, -39],
+      [-26, -26],
+      [-86, -148],
+      [-17, -65]
+    ],
+    [
+      [20128, 16817],
+      [-213, -55],
+      [-20, -73],
+      [-26, -10],
+      [-36, -82],
+      [4, -49],
+      [-36, -27],
+      [-31, -93],
+      [-47, -32],
+      [-51, -68],
+      [20, -34],
+      [-34, -49],
+      [-9, -42],
+      [-70, -71],
+      [-29, -45],
+      [-78, 1],
+      [-40, -80],
+      [-32, -33],
+      [13, -92]
+    ],
+    [
+      [19413, 15883],
+      [-48, -83],
+      [-17, -68],
+      [17, -55],
+      [-18, -41],
+      [-44, -24],
+      [14, -63],
+      [33, -21],
+      [-4, -70],
+      [78, -73],
+      [-28, -82],
+      [-32, -15],
+      [-6, -61],
+      [-33, -33]
+    ],
+    [
+      [19325, 15194],
+      [-58, -54],
+      [-66, -28],
+      [-33, -45],
+      [-49, 18],
+      [-24, 50],
+      [-75, 37],
+      [-25, 69],
+      [-44, 39],
+      [-45, 17],
+      [-70, 63],
+      [-32, 15],
+      [-137, -16],
+      [-25, -29],
+      [-157, -26],
+      [-40, 34],
+      [-125, -10]
+    ],
+    [
+      [18320, 15328],
+      [19, 52],
+      [13, 107],
+      [34, 49],
+      [-3, 129],
+      [-24, 45],
+      [-72, 12],
+      [-56, 22],
+      [-20, 65],
+      [-23, 24],
+      [-9, 76],
+      [14, 28],
+      [-40, 70],
+      [3, 54],
+      [-51, 267],
+      [21, 33],
+      [-17, 39],
+      [-2, 106],
+      [12, 34],
+      [-8, 79],
+      [-83, 47],
+      [-23, 49],
+      [-55, 41],
+      [-15, 39],
+      [41, 118],
+      [-32, 33],
+      [23, 55],
+      [17, 78],
+      [22, 40],
+      [-10, 112],
+      [10, 49],
+      [-71, 27],
+      [16, 28],
+      [-31, 67],
+      [12, 71],
+      [-48, 13],
+      [9, 84],
+      [-10, 69],
+      [-43, 29],
+      [55, 110],
+      [36, 53],
+      [4, 35],
+      [-39, 64]
+    ],
+    [
+      [17896, 17930],
+      [32, 19],
+      [138, -4],
+      [83, 18],
+      [142, 8],
+      [57, 36],
+      [31, -14],
+      [140, -2],
+      [105, -16],
+      [75, -36],
+      [78, -59],
+      [55, -16],
+      [124, -90],
+      [87, -31],
+      [78, -88],
+      [45, -3],
+      [51, -61],
+      [57, -25],
+      [29, -41],
+      [58, -41],
+      [86, -23],
+      [70, -90],
+      [49, -36],
+      [86, -119],
+      [118, -114],
+      [74, -34],
+      [31, -67],
+      [67, -65],
+      [146, -43],
+      [40, -76]
+    ],
+    [
+      [14611, 10301],
+      [0, -9]
+    ],
+    [
+      [14611, 10292],
+      [-532, 0],
+      [15, 66],
+      [-19, 55],
+      [40, 48],
+      [-15, 31],
+      [22, 50],
+      [0, 70],
+      [430, 0],
+      [23, -45],
+      [27, -6],
+      [7, -87],
+      [-35, -84],
+      [4, -69],
+      [33, -20]
+    ],
+    [
+      [18802, 8955],
+      [-33, -101],
+      [-9, -98],
+      [1, -149],
+      [30, -202],
+      [-24, -104],
+      [-47, -104],
+      [-86, -46],
+      [-48, -69],
+      [-56, -110],
+      [-18, -103],
+      [-47, -80],
+      [-79, -163],
+      [-37, -14],
+      [-48, -83],
+      [-88, -26],
+      [-35, -61],
+      [-3, -47],
+      [-28, -59],
+      [-48, -56],
+      [-5, -39]
+    ],
+    [
+      [18094, 7241],
+      [-67, 44],
+      [-68, -13],
+      [-19, 13],
+      [-136, 24],
+      [-33, -2],
+      [-102, 49],
+      [12, 69],
+      [-16, 94],
+      [-73, 30]
+    ],
+    [
+      [17592, 7549],
+      [41, 168],
+      [-26, 87],
+      [36, 21],
+      [14, 50],
+      [189, 0],
+      [16, 10],
+      [41, 103],
+      [4, 43],
+      [63, 29],
+      [11, 46],
+      [-14, 36],
+      [12, 44],
+      [108, 97],
+      [2, 44],
+      [34, 70],
+      [-9, 61],
+      [-34, 60],
+      [-38, 19],
+      [15, 48],
+      [-55, 53],
+      [-63, 24],
+      [5, 33],
+      [54, 0],
+      [13, -24],
+      [81, -2],
+      [26, 15],
+      [-15, 75],
+      [-59, 31],
+      [15, 102],
+      [-83, 8],
+      [67, 59],
+      [51, -24],
+      [61, -64],
+      [115, -13],
+      [63, 25],
+      [-46, 33],
+      [14, 29],
+      [-20, 46],
+      [40, 49],
+      [-7, 52],
+      [-44, 46],
+      [14, 56],
+      [47, 27],
+      [113, -27],
+      [54, -24]
+    ],
+    [
+      [15309, 10976],
+      [-28, -36],
+      [-49, -7],
+      [-60, 12],
+      [-20, 66],
+      [-80, 62],
+      [-41, -26],
+      [-8, -40],
+      [15, -107],
+      [15, -27],
+      [-67, -22],
+      [-86, 41],
+      [-41, 5],
+      [-34, -23],
+      [16, -36],
+      [-26, -54],
+      [5, -29],
+      [50, -39],
+      [-7, -30],
+      [-44, -40],
+      [-11, -65],
+      [52, -39],
+      [23, -97],
+      [-6, -57],
+      [-125, -30],
+      [-54, 1],
+      [-43, -47],
+      [-44, -11]
+    ],
+    [
+      [14611, 10292],
+      [-24, -47],
+      [17, -58],
+      [-24, -58],
+      [-34, -37],
+      [-9, -85],
+      [106, -73],
+      [57, -212],
+      [-113, -79],
+      [-37, -78],
+      [-62, -54],
+      [17, -71],
+      [94, -5],
+      [37, -56],
+      [-4, -31],
+      [-36, -37],
+      [-12, -87],
+      [41, -99],
+      [-41, -16],
+      [-76, -66],
+      [-46, -19],
+      [-65, -85],
+      [-60, -14],
+      [-30, -37],
+      [-54, -18],
+      [-47, 46],
+      [-23, -7],
+      [-104, 57],
+      [-20, -19],
+      [-89, -9],
+      [-93, 20],
+      [-101, -1],
+      [-58, 23],
+      [-38, -39],
+      [-15, -88],
+      [-84, -11],
+      [-34, 12],
+      [-92, -67],
+      [-36, 45],
+      [-2, 31],
+      [-88, -29],
+      [-75, -49],
+      [-56, 19],
+      [-72, 6],
+      [-35, -43],
+      [-46, 5],
+      [-80, -20],
+      [-36, -65],
+      [-69, -69],
+      [1, -61],
+      [-47, -60],
+      [-51, -1],
+      [-76, -88],
+      [-31, -67],
+      [-34, -36]
+    ],
+    [
+      [12622, 8305],
+      [-67, 80],
+      [-137, 65],
+      [-33, -2],
+      [-29, 32],
+      [-95, 23],
+      [-36, -6],
+      [-88, 49],
+      [-66, 50],
+      [-78, 9],
+      [-55, 60],
+      [-89, 16],
+      [-58, 76],
+      [-57, 19],
+      [-21, -19],
+      [-129, 11],
+      [-48, 30],
+      [-28, 41],
+      [112, 104],
+      [-11, 26],
+      [-92, 17],
+      [-66, -27],
+      [-17, 19],
+      [-23, 133],
+      [39, 25]
+    ],
+    [
+      [11450, 9136],
+      [1, 30],
+      [-34, 41],
+      [-25, 93],
+      [-33, 25],
+      [-7, 50],
+      [11, 117],
+      [18, 26],
+      [-12, 48],
+      [82, 157],
+      [31, 96],
+      [27, -2],
+      [45, 53],
+      [49, 21],
+      [25, 64],
+      [61, 46],
+      [17, 50],
+      [-39, 31],
+      [-6, 56],
+      [16, 21],
+      [61, 12],
+      [-1, 55],
+      [121, 56],
+      [41, 102],
+      [134, 4],
+      [34, 44],
+      [30, -12],
+      [71, 108],
+      [-7, 51],
+      [39, 35],
+      [18, 73],
+      [-9, 37],
+      [20, 75],
+      [29, 14],
+      [34, 50],
+      [59, 35],
+      [70, 13],
+      [32, -28],
+      [87, 69],
+      [-3, 44],
+      [70, 182],
+      [-20, 63],
+      [21, 99],
+      [71, 102],
+      [-18, 205],
+      [33, 18],
+      [22, 93],
+      [54, 51],
+      [0, 39],
+      [32, 38],
+      [16, 151],
+      [28, 43],
+      [9, 67]
+    ],
+    [
+      [12855, 12147],
+      [50, 138],
+      [29, 45],
+      [84, 64],
+      [3, -79],
+      [-48, -65],
+      [-9, -66],
+      [70, -58],
+      [58, -5],
+      [76, -30],
+      [313, -184],
+      [15, 11],
+      [2, 110],
+      [49, 95],
+      [71, 65],
+      [79, -97],
+      [58, 89],
+      [73, -68],
+      [3, -40],
+      [51, -16],
+      [33, -63],
+      [58, -10],
+      [14, -82],
+      [84, 38],
+      [66, 41],
+      [12, -92],
+      [71, 16],
+      [73, -23],
+      [36, 4],
+      [79, -91],
+      [22, 45],
+      [-16, 106],
+      [28, 61],
+      [30, -47],
+      [46, 0],
+      [24, -49],
+      [31, 22],
+      [30, -16],
+      [52, 37],
+      [120, 32],
+      [104, 80],
+      [38, 19],
+      [163, -1],
+      [20, 86],
+      [28, -24],
+      [2, -73],
+      [92, 20],
+      [44, 22]
+    ],
+    [
+      [17394, 18065],
+      [50, -26],
+      [-17, -27],
+      [-43, 23],
+      [10, 30]
+    ],
+    [
+      [17405, 18066],
+      [83, -3],
+      [-10, -50],
+      [-36, 38],
+      [-37, 15]
+    ],
+    [
+      [16535, 18236],
+      [32, -29],
+      [-27, -61],
+      [-28, 5],
+      [1, 60],
+      [22, 25]
+    ],
+    [
+      [16633, 18318],
+      [-10, -87],
+      [-51, -12],
+      [13, 80],
+      [48, 19]
+    ],
+    [
+      [15890, 18892],
+      [40, -44],
+      [-36, -31],
+      [-4, 75]
+    ],
+    [
+      [17624, 18031],
+      [-27, -76],
+      [38, -53],
+      [-15, -34],
+      [-56, -53],
+      [-41, -73],
+      [-63, -12],
+      [-20, -73],
+      [-32, -28],
+      [-66, 1],
+      [-38, -23],
+      [-59, -3],
+      [-92, -115],
+      [3, -31],
+      [-31, -105],
+      [-53, -48],
+      [-22, -58],
+      [-69, -82],
+      [14, -83],
+      [50, -30],
+      [2, -79],
+      [-47, -73],
+      [3, -45],
+      [71, -190],
+      [10, -62],
+      [-14, -86],
+      [-48, -30],
+      [-66, -112],
+      [-36, -24],
+      [0, -156],
+      [27, -65],
+      [0, -50],
+      [45, -46],
+      [52, -29],
+      [15, -32],
+      [-17, -78],
+      [3, -55],
+      [-26, -92],
+      [-45, -49],
+      [-133, -7],
+      [-19, -18],
+      [-98, -29],
+      [-99, 74],
+      [-86, 10],
+      [-47, -32],
+      [-45, 9],
+      [-109, -76],
+      [-7, -30],
+      [-73, -112],
+      [-40, -1],
+      [-101, -63],
+      [-68, -97],
+      [-71, 19],
+      [-59, -63],
+      [-66, -24],
+      [-61, -2],
+      [-34, -31],
+      [-67, -7],
+      [-71, -64],
+      [-28, -115],
+      [-30, -82],
+      [-3, -74],
+      [-44, -55],
+      [-14, -61],
+      [-31, -56],
+      [3, -29],
+      [-43, -77],
+      [-13, -48],
+      [-54, -40],
+      [-31, -83],
+      [28, -51],
+      [25, -113],
+      [-5, -51],
+      [60, -70],
+      [8, -36],
+      [-27, -33],
+      [6, -138],
+      [-24, -51],
+      [13, -47],
+      [-20, -98],
+      [-37, -50],
+      [0, -36]
+    ],
+    [
+      [15359, 13661],
+      [-40, 10],
+      [-3, 34],
+      [-77, -18],
+      [-21, 23],
+      [-69, -6],
+      [-63, 62],
+      [-19, 52],
+      [3, 65],
+      [-22, 45],
+      [-71, 34],
+      [34, 91],
+      [4, 62],
+      [-30, 7],
+      [-21, 43],
+      [-51, 6],
+      [-30, 44],
+      [-3, 55],
+      [-23, 38],
+      [-36, 6],
+      [-9, 41],
+      [-63, 7],
+      [36, 101],
+      [49, 38],
+      [-16, 51],
+      [25, 23],
+      [-15, 55],
+      [36, 35],
+      [36, 95],
+      [81, 29],
+      [49, 0],
+      [32, 69],
+      [-15, 19],
+      [24, 48],
+      [-12, 60],
+      [-62, 50],
+      [-57, -8],
+      [-50, -27],
+      [-45, -5],
+      [-63, -60],
+      [-25, 8],
+      [-55, 93],
+      [-44, 39],
+      [-21, 46],
+      [-66, 55],
+      [0, 31],
+      [-64, 70],
+      [-1, 108],
+      [-49, 17],
+      [-34, -21],
+      [-46, 48],
+      [-5, 33],
+      [46, 6],
+      [63, 79],
+      [21, 83],
+      [5, 117],
+      [66, 233],
+      [-21, 54],
+      [-17, 108],
+      [3, 94],
+      [-28, 58],
+      [5, 97],
+      [-39, 57],
+      [-35, 4],
+      [-68, 45],
+      [-46, -3],
+      [-32, 74],
+      [-65, 15],
+      [-41, -24],
+      [-55, 9],
+      [-102, 53],
+      [-85, -14],
+      [-47, -83],
+      [-41, 17],
+      [-41, -25]
+    ],
+    [
+      [13818, 16516],
+      [176, 147],
+      [339, 280],
+      [14, 17],
+      [61, -13],
+      [54, 51],
+      [57, 96],
+      [2, 24],
+      [51, 55],
+      [34, 101],
+      [54, 29],
+      [46, 67],
+      [26, 15],
+      [24, 86],
+      [-6, 35],
+      [20, 58],
+      [23, 12],
+      [16, 70],
+      [55, 41],
+      [22, 55],
+      [34, 36],
+      [51, 106],
+      [9, 85],
+      [21, 32],
+      [-38, 36],
+      [25, 52],
+      [64, 17],
+      [39, 59],
+      [1, 125],
+      [77, 78],
+      [10, 62],
+      [30, 84],
+      [-6, 66],
+      [-48, 3],
+      [14, 42],
+      [37, -2],
+      [39, 29],
+      [12, 57],
+      [-25, 60],
+      [21, 18],
+      [18, 65],
+      [-31, 32],
+      [6, 31],
+      [37, 20],
+      [18, 49]
+    ],
+    [
+      [15301, 18984],
+      [39, 34],
+      [14, -83],
+      [31, 42],
+      [57, -74],
+      [32, 23],
+      [53, -79],
+      [26, 44],
+      [63, -65],
+      [58, -11],
+      [35, 36],
+      [0, -94],
+      [-33, -124],
+      [26, -23],
+      [52, 52],
+      [-16, 26],
+      [14, 42],
+      [41, 42],
+      [31, 9],
+      [51, -18],
+      [29, -59],
+      [24, -15],
+      [73, 22],
+      [54, 4],
+      [20, -30],
+      [-53, -18],
+      [-14, -31],
+      [87, -36],
+      [46, -64],
+      [15, -94],
+      [-52, -58],
+      [68, -5],
+      [35, -40],
+      [23, -73],
+      [-14, -37],
+      [44, -49],
+      [42, 5],
+      [82, 43],
+      [27, -2],
+      [-5, -86],
+      [-24, -3],
+      [-31, -70],
+      [-70, -33],
+      [16, -21],
+      [55, -3],
+      [59, 72],
+      [39, 19],
+      [14, 37],
+      [78, 7],
+      [40, 43],
+      [53, -27],
+      [28, 16],
+      [47, -19],
+      [17, 105],
+      [69, 5],
+      [47, -12],
+      [175, -80],
+      [70, -39],
+      [54, -8],
+      [40, -40],
+      [77, -45],
+      [63, 5],
+      [49, -23],
+      [26, -34],
+      [101, 2],
+      [24, 54],
+      [102, -17]
+    ],
+    [
+      [12622, 8305],
+      [6, -53],
+      [-35, -18],
+      [-32, -86],
+      [26, -98],
+      [-12, -33],
+      [11, -71]
+    ],
+    [
+      [12586, 7946],
+      [-38, -96],
+      [-53, -33],
+      [-71, -13],
+      [-30, -20],
+      [-95, -131],
+      [-40, -35],
+      [-21, -62],
+      [12, -78],
+      [-7, -33],
+      [-48, -15],
+      [-42, -76],
+      [-49, -26],
+      [17, -69],
+      [-11, -50],
+      [-33, -60],
+      [-38, -35],
+      [-33, 7],
+      [-25, -32],
+      [30, -49],
+      [-30, -60],
+      [-32, -15],
+      [-16, -43],
+      [-70, -74],
+      [-15, -52],
+      [-77, -89],
+      [-51, -21],
+      [-120, -74],
+      [-31, -35],
+      [-79, -32],
+      [-58, -75]
+    ],
+    [
+      [11432, 6470],
+      [-42, -53],
+      [-95, -37],
+      [-99, -61],
+      [-40, -40],
+      [-16, -101],
+      [-74, -144],
+      [-116, -51],
+      [-51, -177],
+      [-2, -73],
+      [-27, -54],
+      [-85, -49]
+    ],
+    [
+      [10785, 5630],
+      [-63, 75],
+      [-46, 33],
+      [-106, 39],
+      [-125, -53],
+      [-15, -33],
+      [-99, 1],
+      [-65, -28],
+      [-46, 30],
+      [-22, -19],
+      [-48, 47],
+      [0, 103],
+      [-19, 53],
+      [-32, 17],
+      [-1, 97],
+      [19, 38],
+      [-26, 38],
+      [16, 32],
+      [-10, 56],
+      [-28, 11],
+      [-27, 68],
+      [-15, 92],
+      [21, 59],
+      [0, 86],
+      [-53, 43],
+      [-12, 92],
+      [-24, 4],
+      [-39, 60],
+      [-109, -8],
+      [-81, 7],
+      [-73, 44],
+      [-34, 75],
+      [-64, -15],
+      [-30, -56],
+      [-42, -35],
+      [-56, 13],
+      [-43, -37],
+      [-93, 44],
+      [-137, -11],
+      [-183, 45],
+      [-18, 41],
+      [-46, 2],
+      [-31, -24],
+      [-90, 7],
+      [-33, 19],
+      [33, 124],
+      [13, 101],
+      [-10, 65],
+      [-26, 22],
+      [57, 139],
+      [7, 123],
+      [-11, 35],
+      [26, 34],
+      [-56, 58],
+      [33, 19],
+      [-5, 70],
+      [-25, 35],
+      [-55, 36],
+      [6, 106],
+      [-40, 27],
+      [-5, 62],
+      [-37, 5],
+      [-1, 65],
+      [58, 29],
+      [95, 78],
+      [-61, 45],
+      [-80, 76],
+      [192, 421],
+      [40, 1],
+      [-5, 78],
+      [-26, -1],
+      [115, 384],
+      [29, 23],
+      [-38, 40],
+      [-14, 49],
+      [-66, 128],
+      [3, 54],
+      [-39, 52],
+      [18, 47]
+    ],
+    [
+      [8882, 9412],
+      [22, 12],
+      [16, -100],
+      [33, -12],
+      [11, -40],
+      [69, -32],
+      [117, 23],
+      [20, 22],
+      [62, 1],
+      [70, 71],
+      [25, 62],
+      [36, 11],
+      [65, 120],
+      [89, -3],
+      [58, 20],
+      [25, -19],
+      [90, 41],
+      [16, 24],
+      [76, 30],
+      [53, -14],
+      [3, -28],
+      [74, -17],
+      [84, -47],
+      [76, -17],
+      [34, -55],
+      [122, -40],
+      [94, -65],
+      [84, 21],
+      [62, -4],
+      [56, 34],
+      [6, 25],
+      [134, 25],
+      [46, -34],
+      [47, -72],
+      [86, 34],
+      [51, -9],
+      [26, 77],
+      [47, 16],
+      [72, 96],
+      [34, 30],
+      [43, -6],
+      [-13, -238],
+      [-83, -24],
+      [-55, -105],
+      [65, -30],
+      [35, -38],
+      [62, 14],
+      [106, -34],
+      [92, 23],
+      [69, -27],
+      [56, 2]
+    ],
+    [
+      [13010, 13901],
+      [-46, -116],
+      [-44, -52],
+      [5, -51],
+      [-22, -63],
+      [-51, -102],
+      [-2, -33],
+      [-46, -57],
+      [18, -53],
+      [-28, -51],
+      [-6, -56],
+      [13, -77],
+      [-27, -35],
+      [2, -52],
+      [-48, -138],
+      [1, -49],
+      [45, -31],
+      [-3, -46],
+      [-32, -35],
+      [19, -74],
+      [26, -15],
+      [-23, -62],
+      [8, -43],
+      [-6, -89],
+      [28, -96],
+      [2, -42],
+      [-46, -90],
+      [46, -72],
+      [5, -49],
+      [57, -25]
+    ],
+    [
+      [8882, 9412],
+      [-80, 61],
+      [-57, -35],
+      [-32, 40],
+      [-99, 51],
+      [-84, 104],
+      [-44, 145],
+      [6, 164],
+      [15, 35],
+      [51, 44],
+      [-7, 52],
+      [19, 29],
+      [1, 63],
+      [-61, -30],
+      [-570, 24],
+      [-385, 10],
+      [-35, 459],
+      [-178, 210],
+      [173, 9],
+      [-15, 277],
+      [-27, 7],
+      [-7, 58],
+      [-32, 47],
+      [2, 34],
+      [-33, 47],
+      [-18, 62],
+      [6, 49],
+      [51, 61],
+      [-35, 35],
+      [-14, 77],
+      [-37, -2],
+      [-22, 33],
+      [-45, 5],
+      [-94, 63],
+      [-50, 48]
+    ],
+    [
+      [7145, 11748],
+      [30, 3],
+      [88, 127],
+      [183, 3],
+      [49, 107],
+      [8, 33],
+      [46, 64],
+      [36, 5],
+      [21, 46],
+      [-5, 81],
+      [34, 104],
+      [68, 52],
+      [19, -6],
+      [41, 80],
+      [-51, 58],
+      [-8, 76],
+      [-43, 50],
+      [-3, 67],
+      [-63, 40],
+      [-12, 77],
+      [17, 92],
+      [93, 91],
+      [-4, 51],
+      [-30, 45],
+      [-20, 61],
+      [-77, 19],
+      [-127, 1],
+      [-38, 61],
+      [-532, 1],
+      [-55, 5],
+      [17, 162],
+      [13, 54],
+      [8, 109],
+      [-40, 51],
+      [-37, 104],
+      [38, 95],
+      [13, 75],
+      [-21, 43],
+      [8, 44],
+      [29, 45],
+      [-16, 54],
+      [-40, 48],
+      [16, 42],
+      [-40, 27],
+      [6, 35],
+      [51, 51],
+      [-19, 59],
+      [48, 101],
+      [-32, 58],
+      [-31, 11]
+    ],
+    [
+      [8671, 15349],
+      [43, -26],
+      [48, -78],
+      [18, -69],
+      [22, -13],
+      [14, -73],
+      [21, -47],
+      [3, -53],
+      [55, -70],
+      [14, -43],
+      [33, -27],
+      [-20, -61],
+      [-1, -66],
+      [24, -47],
+      [25, -142],
+      [34, 5],
+      [63, -27],
+      [-3, -32],
+      [125, -46],
+      [54, -51],
+      [31, -47],
+      [-11, -50],
+      [34, -29],
+      [97, -7],
+      [26, -85],
+      [55, 14],
+      [483, -42],
+      [437, -38],
+      [487, -39],
+      [534, -42],
+      [482, -37],
+      [434, -31],
+      [341, -23],
+      [337, -26]
+    ],
+    [
+      [17592, 7549],
+      [-28, -20],
+      [-23, -67],
+      [-94, -25],
+      [32, -44],
+      [-46, -38],
+      [-35, -107],
+      [-1, -48],
+      [-34, -54],
+      [22, -17],
+      [-52, -54],
+      [42, -78],
+      [-47, -15],
+      [-239, -110],
+      [-155, -94],
+      [-44, 9],
+      [-45, 37],
+      [-47, 4],
+      [-77, -38],
+      [-173, 3],
+      [-115, -48],
+      [-62, -14],
+      [-62, -42],
+      [-120, -3],
+      [-61, -47],
+      [-146, -43]
+    ],
+    [
+      [15982, 6596],
+      [-49, -27],
+      [-89, -12],
+      [-64, -45],
+      [-128, -59],
+      [-33, 36],
+      [-29, -33],
+      [-29, 26],
+      [-48, -28],
+      [-36, -45],
+      [7, -31],
+      [-27, -36],
+      [-85, 11],
+      [-48, -38],
+      [-80, 14],
+      [-104, -23],
+      [-18, 45],
+      [23, 39],
+      [-57, 19],
+      [24, 47],
+      [-32, 72],
+      [-97, 51],
+      [-48, 69],
+      [26, 77],
+      [32, 20],
+      [-40, 65],
+      [23, 37],
+      [-26, 80],
+      [36, 41],
+      [-8, 95],
+      [-30, -5],
+      [-37, 37],
+      [61, 63],
+      [-69, 45],
+      [-86, -37],
+      [-102, 140],
+      [3, 47],
+      [-16, 71],
+      [-53, 56],
+      [29, 90],
+      [37, 14],
+      [12, 37],
+      [-31, 72],
+      [-75, 41],
+      [-4, 59],
+      [37, 75],
+      [-43, 55],
+      [-52, 24],
+      [-34, 69],
+      [-62, -18],
+      [-31, -31],
+      [-38, 40],
+      [-85, -8],
+      [-19, -76],
+      [-60, 11],
+      [-37, -24],
+      [-59, 30],
+      [-14, 29],
+      [-62, -40],
+      [-226, -21],
+      [-69, -19],
+      [-17, -50],
+      [10, -76],
+      [-55, 3],
+      [3, 76],
+      [-16, 57],
+      [-42, 6],
+      [-29, -67],
+      [-58, -19],
+      [-40, 79],
+      [1, 120],
+      [-78, -12],
+      [-61, 44],
+      [-49, -15],
+      [-78, 4],
+      [-59, -11],
+      [-84, 16],
+      [-31, 23],
+      [-139, 7],
+      [-65, 49],
+      [-57, -21],
+      [-44, -52],
+      [-70, -18],
+      [-100, -57],
+      [-19, -29]
+    ],
+    [
+      [13096, 20033],
+      [-4, -37],
+      [38, -186],
+      [76, -12],
+      [129, 51],
+      [54, -24],
+      [90, -182],
+      [26, -110],
+      [67, 10],
+      [106, -11],
+      [37, -34],
+      [58, -1],
+      [71, -17],
+      [38, 12],
+      [128, -11],
+      [17, -34],
+      [175, -204],
+      [37, -20],
+      [36, 41],
+      [47, -33],
+      [5, 44],
+      [58, -24],
+      [25, 40],
+      [70, -34],
+      [37, 18],
+      [87, 8],
+      [17, -29],
+      [37, 5],
+      [7, -41],
+      [48, 14],
+      [31, -72],
+      [55, 22],
+      [28, -35],
+      [41, 49],
+      [17, -59],
+      [41, -8],
+      [54, 37],
+      [19, -24],
+      [-29, -81],
+      [53, 18],
+      [131, -47],
+      [49, 74],
+      [39, -66],
+      [59, -56]
+    ],
+    [
+      [13818, 16516],
+      [69, -35],
+      [65, -12],
+      [64, 21],
+      [51, -75],
+      [89, -46],
+      [-20, -62],
+      [-53, -10],
+      [-11, -63],
+      [33, -65],
+      [-49, -23],
+      [21, -56],
+      [-84, -65],
+      [13, -65],
+      [-48, -26],
+      [-62, -60],
+      [-28, -68],
+      [6, -41],
+      [-89, -65],
+      [-112, -18],
+      [-53, -50],
+      [-51, -33],
+      [13, -180],
+      [-26, -52],
+      [-80, -100],
+      [-2, -41],
+      [22, -52],
+      [99, -78],
+      [-1, -64],
+      [-29, -171],
+      [-37, -107],
+      [-36, -23],
+      [-33, -94],
+      [-101, -151],
+      [-50, -10],
+      [-87, -99],
+      [-35, -85],
+      [-79, -81],
+      [-1, -35],
+      [-29, -60],
+      [9, -41],
+      [-76, -174]
+    ],
+    [
+      [8255, 19780],
+      [0, 561]
+    ],
+    [
+      [8255, 20341],
+      [55, -29],
+      [27, 13],
+      [30, 52],
+      [101, -14],
+      [19, 20],
+      [-5, 95],
+      [55, 5],
+      [3, 43],
+      [32, 28],
+      [97, -49],
+      [77, -2],
+      [1, 94],
+      [37, -12],
+      [63, 19],
+      [26, 24],
+      [71, -17],
+      [53, 6],
+      [66, 119],
+      [66, 49],
+      [27, -27],
+      [72, 41],
+      [75, -61],
+      [39, 5],
+      [63, -32],
+      [42, 33],
+      [52, 11],
+      [20, -14],
+      [76, 17],
+      [49, -3],
+      [60, -30],
+      [23, 5],
+      [119, -38],
+      [49, 35],
+      [-2, 82],
+      [-76, 114],
+      [-43, 15],
+      [20, 57],
+      [25, -4],
+      [32, 48],
+      [0, 53],
+      [26, 8],
+      [110, -76],
+      [81, 18],
+      [89, 4],
+      [71, 48],
+      [48, -6],
+      [45, 34],
+      [15, -28],
+      [71, 48],
+      [7, -35],
+      [51, -60]
+    ],
+    [
+      [16968, 14156],
+      [-1, 80],
+      [18, 10],
+      [-15, 63],
+      [59, -42],
+      [1, -37],
+      [50, -46],
+      [-82, -44]
+    ],
+    [
+      [21380, 15854],
+      [3, -84],
+      [17, -32],
+      [19, -105],
+      [40, -77],
+      [-10, -30],
+      [27, -83],
+      [0, -82],
+      [-17, -124],
+      [-40, 2]
+    ],
+    [
+      [21419, 15239],
+      [-34, 4],
+      [-15, 44],
+      [-60, 32],
+      [-80, 19],
+      [-98, -58],
+      [-45, 11],
+      [-15, -97],
+      [-69, -44],
+      [-118, -30],
+      [-18, -25],
+      [-51, -12],
+      [-40, 19],
+      [-98, -6],
+      [-96, -14],
+      [-3, -41],
+      [-28, -23],
+      [-49, 12],
+      [-32, -48],
+      [0, -72],
+      [-69, -47],
+      [-78, -29],
+      [-52, -36],
+      [-53, 28],
+      [-40, 49],
+      [5, 94],
+      [-79, 26],
+      [-4, 35],
+      [32, 18],
+      [8, 39],
+      [50, 35],
+      [-31, 69],
+      [40, 53],
+      [76, 32],
+      [-23, 54],
+      [-77, 30],
+      [-37, 36],
+      [-54, -8],
+      [-29, -39],
+      [-45, -1],
+      [-36, -67],
+      [-70, -29],
+      [-53, -56],
+      [-56, -20],
+      [-62, -72],
+      [-37, 17],
+      [-21, -48],
+      [-47, 29],
+      [-41, -29],
+      [-33, 10],
+      [-12, 67],
+      [-97, -30],
+      [-53, -3],
+      [-18, 35],
+      [-49, 42]
+    ],
+    [
+      [19413, 15883],
+      [85, 16],
+      [61, -55],
+      [77, 8],
+      [22, -66],
+      [32, 12],
+      [23, 88],
+      [44, 6],
+      [37, 28],
+      [47, 83],
+      [36, 32],
+      [34, -8],
+      [43, 20],
+      [60, 6],
+      [89, 55],
+      [67, -2],
+      [5, -67],
+      [-84, -64],
+      [-32, -38],
+      [-11, -98],
+      [-38, -12],
+      [-10, -102],
+      [94, 12],
+      [27, -25],
+      [5, -46],
+      [36, -8],
+      [28, 22],
+      [70, -48],
+      [56, 66],
+      [41, 14],
+      [57, -61],
+      [-19, -58],
+      [85, 0],
+      [20, 46],
+      [37, 26],
+      [-28, 59],
+      [24, 68],
+      [38, 20],
+      [-45, 34],
+      [14, 83],
+      [39, -2],
+      [19, 40],
+      [48, 7],
+      [7, -65],
+      [25, -26],
+      [103, 16],
+      [31, -41],
+      [127, -1],
+      [63, 21],
+      [43, -24],
+      [97, -2],
+      [40, -31],
+      [54, 7],
+      [47, -12],
+      [97, 38]
+    ],
+    [
+      [14091, 4892],
+      [3, -76],
+      [-51, 29],
+      [48, 47]
+    ],
+    [
+      [13903, 4518],
+      [-198, -1],
+      [-21, -18],
+      [-97, 6],
+      [-116, -90],
+      [-39, -4],
+      [-53, -43],
+      [-50, 16],
+      [-120, 101],
+      [-71, 14],
+      [-107, -47],
+      [25, -63],
+      [-24, -42],
+      [-53, -21],
+      [-57, 91],
+      [15, 34],
+      [-54, 39],
+      [-73, 3],
+      [-60, -95],
+      [-114, -58],
+      [-50, 32],
+      [-133, -55],
+      [-31, -56],
+      [41, -100],
+      [-32, -36],
+      [-83, -20],
+      [-18, 39],
+      [-108, 32],
+      [-115, -19],
+      [-75, 19],
+      [-56, 53],
+      [-106, 20],
+      [-87, 2],
+      [-32, 22],
+      [-39, -9],
+      [-46, 37],
+      [-171, 2],
+      [-55, -24],
+      [-119, 76],
+      [-43, 7],
+      [-61, -32],
+      [-56, 26]
+    ],
+    [
+      [11161, 4356],
+      [-69, 76],
+      [3, 31],
+      [-65, 63],
+      [-6, 75],
+      [14, 24],
+      [-29, 89],
+      [-61, 37],
+      [-95, 20],
+      [-70, -9],
+      [-90, -60],
+      [-79, 41],
+      [-11, 79],
+      [66, 104],
+      [32, 78],
+      [-15, 39],
+      [33, 141],
+      [38, 109],
+      [1, 91],
+      [39, 67],
+      [-9, 51],
+      [-25, 26],
+      [-4, 55],
+      [26, 47]
+    ],
+    [
+      [11432, 6470],
+      [72, 30],
+      [63, -22],
+      [86, -11],
+      [66, 34],
+      [43, -38],
+      [37, 16],
+      [114, -34],
+      [39, 12],
+      [17, 73],
+      [101, -28],
+      [37, -35],
+      [55, 8],
+      [26, -28],
+      [61, 0],
+      [30, -20],
+      [63, 25],
+      [76, -12],
+      [82, -45],
+      [116, -31],
+      [29, 6],
+      [55, -64],
+      [46, -28],
+      [18, 30],
+      [54, -2],
+      [81, -24],
+      [86, 9],
+      [49, -14],
+      [64, 16],
+      [58, -2],
+      [33, -40],
+      [-6, -30],
+      [102, -35],
+      [26, -32],
+      [46, -117],
+      [-14, -140],
+      [39, -56],
+      [-7, -67],
+      [41, -119],
+      [80, -67],
+      [0, -37],
+      [55, -106],
+      [-3, -49],
+      [-38, -50],
+      [2, -63],
+      [57, -22],
+      [94, 24],
+      [63, -9],
+      [51, 12],
+      [28, -24],
+      [89, 16],
+      [62, -44],
+      [-29, -36],
+      [-6, -97],
+      [-17, -27],
+      [38, -47],
+      [30, 51],
+      [35, 19],
+      [106, -56],
+      [56, -102],
+      [31, -6]
+    ],
+    [
+      [14200, 4935],
+      [-70, -84],
+      [-21, 41],
+      [-92, 15],
+      [-31, -39],
+      [-4, -56],
+      [-103, 17],
+      [-5, -29],
+      [94, -23],
+      [44, -43],
+      [-90, -145],
+      [-19, -71]
+    ],
+    [
+      [21419, 15239],
+      [49, -42],
+      [-45, -86],
+      [23, -31],
+      [16, -62],
+      [-29, -68],
+      [-44, -147],
+      [-4, -60],
+      [-26, -96],
+      [-49, -74],
+      [6, -32],
+      [-36, -96]
+    ],
+    [
+      [17875, 14563],
+      [84, 43],
+      [31, 58],
+      [54, 31],
+      [38, 48],
+      [30, -28],
+      [31, 51],
+      [50, 33],
+      [80, 94],
+      [49, 102],
+      [0, 75],
+      [-60, 31],
+      [-14, 33],
+      [19, 69],
+      [-27, 40],
+      [-6, 46],
+      [86, 39]
+    ],
+    [
+      [17624, 18031],
+      [101, -81],
+      [171, -20]
+    ],
+    [
+      [15481, 13721],
+      [-11, -49],
+      [-28, -16],
+      [-46, 16],
+      [-37, -11]
+    ],
+    [
+      [16300, 6207],
+      [51, -54],
+      [-59, -19],
+      [-53, 27],
+      [61, 46]
+    ],
+    [
+      [18094, 7241],
+      [-2, -38],
+      [-61, -87],
+      [34, -67],
+      [-6, -64],
+      [27, -120],
+      [-8, -37],
+      [-135, -80],
+      [-137, -39],
+      [-102, -45],
+      [-57, -44],
+      [-48, -65],
+      [-53, -33],
+      [-20, -39],
+      [1, -54],
+      [45, -50],
+      [-35, -28],
+      [-44, -76],
+      [-168, 14],
+      [-120, 1],
+      [-184, -25],
+      [-73, 6],
+      [-48, 48],
+      [58, 79],
+      [-30, 40],
+      [-84, -38],
+      [-13, -50],
+      [52, -38],
+      [4, -41],
+      [-69, -30],
+      [-46, 3],
+      [-90, -23],
+      [-179, -13],
+      [-3, 16],
+      [38, -10],
+      [106, 21],
+      [-54, 27],
+      [-51, 44],
+      [-138, -22],
+      [-37, -47],
+      [-117, 16],
+      [-11, 42],
+      [-44, -19],
+      [-10, -33],
+      [-123, -24],
+      [-25, -102],
+      [108, -29],
+      [-37, -47],
+      [-27, 16],
+      [-50, -22]
+    ],
+    [
+      [16028, 6035],
+      [-89, 85],
+      [34, 36],
+      [18, 89],
+      [27, 36],
+      [75, 36],
+      [77, 0],
+      [108, 32],
+      [7, 36],
+      [53, 53],
+      [-40, 40],
+      [-87, 21],
+      [-64, -40],
+      [-75, 23],
+      [-60, 109],
+      [-30, 5]
+    ],
+    [
+      [20128, 16817],
+      [52, -67],
+      [66, -2],
+      [43, 17],
+      [43, -18],
+      [87, -79],
+      [61, -5],
+      [89, 17],
+      [76, -25],
+      [101, 11],
+      [81, 29],
+      [105, -20],
+      [163, -47],
+      [65, -74],
+      [60, -116],
+      [22, -114],
+      [37, -119],
+      [1, -41],
+      [25, -31],
+      [5, -92],
+      [33, -40],
+      [2, -52],
+      [23, -29],
+      [12, -66]
+    ],
+    [
+      [13292, 2571],
+      [-113, -159],
+      [-37, -65],
+      [-97, -211],
+      [-78, -216],
+      [-41, -72],
+      [-171, -247],
+      [-41, -67],
+      [-61, -68],
+      [-87, -76],
+      [-98, -103],
+      [-130, -104],
+      [-169, -95],
+      [-110, -86],
+      [-75, 110],
+      [52, 9],
+      [43, -25],
+      [66, 14],
+      [1, 29],
+      [63, 5],
+      [41, 28],
+      [94, 133],
+      [52, -15],
+      [63, 45],
+      [41, 105],
+      [-10, 115],
+      [37, -14],
+      [71, 35],
+      [7, 75],
+      [30, 2],
+      [92, 54],
+      [23, 38],
+      [12, 80],
+      [-11, 107],
+      [49, -35],
+      [23, 16],
+      [17, 107],
+      [-32, 46],
+      [-35, -3],
+      [-7, -56],
+      [-60, 7],
+      [-8, -31],
+      [-61, 8],
+      [-12, -65],
+      [-65, 31],
+      [14, 58],
+      [-34, 24],
+      [-55, 5],
+      [-27, 101],
+      [-37, 30],
+      [-4, -102],
+      [8, -70],
+      [67, -47],
+      [-47, -46],
+      [-25, -96],
+      [-45, -13],
+      [-11, -63],
+      [18, -68],
+      [-37, 3],
+      [-33, -31],
+      [18, -101],
+      [-88, -31],
+      [-1, -69],
+      [-93, -3],
+      [-64, -23],
+      [-37, -42],
+      [-18, -84],
+      [-51, -15],
+      [21, -72],
+      [-85, -42],
+      [3, -70],
+      [45, -26],
+      [-55, -39],
+      [6, -30],
+      [50, -14],
+      [20, -59],
+      [-79, -63],
+      [-76, -141],
+      [-57, -195],
+      [-83, -161],
+      [-80, -95],
+      [-202, -173],
+      [-122, -94],
+      [-82, 35],
+      [13, 167],
+      [-17, 112],
+      [25, 75],
+      [102, 75],
+      [28, 50],
+      [85, 81],
+      [-42, 42],
+      [-136, 53],
+      [-22, 49],
+      [-34, -5],
+      [-61, 60],
+      [-60, 176],
+      [-48, 16],
+      [-16, 34],
+      [-91, 58],
+      [-40, -7],
+      [-200, 140],
+      [22, 21],
+      [-46, 67],
+      [-121, 44],
+      [-56, -4],
+      [-68, 50],
+      [-34, 45],
+      [-56, -22],
+      [-71, 38],
+      [-52, 76],
+      [-23, 55],
+      [-120, 108],
+      [-28, -63],
+      [-26, -4],
+      [-94, -71],
+      [-76, 10],
+      [-4, 73],
+      [15, 44],
+      [-18, 47],
+      [-60, 28],
+      [-6, 33],
+      [-216, 203],
+      [-41, 15],
+      [-27, 61],
+      [-22, -2],
+      [-75, 65],
+      [-150, -14],
+      [-53, -98],
+      [-58, 14],
+      [-46, -25],
+      [-88, 51],
+      [79, 100],
+      [38, 23],
+      [13, 77],
+      [46, 52],
+      [72, 17],
+      [122, 138],
+      [29, 13],
+      [35, 64],
+      [31, 10],
+      [63, 139],
+      [93, 30],
+      [8, 56],
+      [52, 35],
+      [17, 72],
+      [50, 11],
+      [28, 41],
+      [71, 57],
+      [7, 59],
+      [58, 13],
+      [14, 74],
+      [54, -8],
+      [44, -28],
+      [12, 45],
+      [-54, 38],
+      [81, 66],
+      [28, -1],
+      [103, 70],
+      [-3, 29],
+      [34, 36],
+      [66, 36],
+      [29, -14],
+      [71, 55],
+      [40, 9],
+      [24, 78],
+      [65, 36],
+      [90, 21],
+      [94, 42],
+      [57, 5],
+      [68, 46],
+      [19, 67],
+      [42, -18],
+      [83, 60],
+      [6, 27],
+      [65, -9]
+    ],
+    [
+      [11034, 3825],
+      [44, -12],
+      [46, 17],
+      [76, -20],
+      [64, 32],
+      [15, 26],
+      [49, -25],
+      [90, -23],
+      [69, 26],
+      [19, -47],
+      [107, 5],
+      [54, -23],
+      [220, -33],
+      [34, -16],
+      [50, 16],
+      [44, -25],
+      [56, -57],
+      [77, -28],
+      [52, 5],
+      [65, -45],
+      [59, -5],
+      [32, -49],
+      [57, -12],
+      [23, -44],
+      [46, -16],
+      [76, -54],
+      [-3, -18],
+      [70, -40],
+      [29, -40],
+      [11, -57],
+      [35, -2],
+      [22, -62],
+      [48, -53],
+      [48, -32],
+      [114, -18],
+      [54, -19],
+      [69, 6],
+      [59, -19],
+      [37, 23],
+      [51, -9],
+      [82, -37],
+      [0, -61],
+      [-49, -10],
+      [-16, -38],
+      [-49, -13],
+      [-15, -55],
+      [14, -83],
+      [-17, -88],
+      [3, -48],
+      [52, -15],
+      [15, -31],
+      [70, -28]
+    ],
+    [
+      [7145, 11748],
+      [-232, 32],
+      [-84, -36],
+      [-43, 33],
+      [-123, -27],
+      [-35, 54],
+      [-81, 58],
+      [-54, 55],
+      [-6, 60],
+      [-68, 18],
+      [-20, -19],
+      [-74, 15],
+      [-32, 34],
+      [-86, 15],
+      [-25, 32],
+      [-74, 6],
+      [-61, 81],
+      [-48, 2],
+      [-21, 56],
+      [-54, 57],
+      [-55, -41],
+      [-44, 5],
+      [-55, 31],
+      [-28, 52],
+      [-37, 6],
+      [-64, 47],
+      [-62, 10],
+      [-49, -8],
+      [-20, -39],
+      [-130, 4],
+      [-52, 42],
+      [-78, -7],
+      [-76, 70],
+      [11, 31],
+      [-30, 30],
+      [-83, 32],
+      [-68, 94],
+      [-110, 16],
+      [4, 56],
+      [-17, 86],
+      [-76, -3],
+      [3, 89],
+      [-28, 57],
+      [-37, 6],
+      [-35, 143],
+      [3, 72],
+      [38, 21],
+      [-8, 35],
+      [28, 28],
+      [-14, 66],
+      [-39, 53],
+      [-1, 62],
+      [-44, 111],
+      [22, 55],
+      [45, 52],
+      [14, 58],
+      [-26, 88],
+      [4, 82],
+      [20, 35],
+      [-38, 71],
+      [-49, 32],
+      [-60, -97],
+      [-42, 1],
+      [-49, 45],
+      [-67, -20],
+      [-24, 22],
+      [-85, -20],
+      [-61, 1],
+      [-34, -28],
+      [-56, 1],
+      [-24, -20],
+      [-108, -10],
+      [-18, -11]
+    ],
+    [
+      [5799, 20914],
+      [-29, 88],
+      [11, 42],
+      [-52, 0],
+      [-85, -25],
+      [-69, -1],
+      [-131, 44],
+      [-20, 27],
+      [36, 71],
+      [2, 55],
+      [-63, 129],
+      [-73, 94],
+      [15, 44],
+      [-26, 129],
+      [38, 52],
+      [0, 34],
+      [-56, 82],
+      [-77, 47],
+      [-24, 1],
+      [-53, 58],
+      [-6, 27],
+      [-52, 44],
+      [-32, 67],
+      [-42, 32],
+      [-8, 41],
+      [24, 24],
+      [49, -24],
+      [35, -62],
+      [37, -21],
+      [70, 19],
+      [78, 5],
+      [65, -9],
+      [32, -21],
+      [43, -92],
+      [47, -27],
+      [54, 36],
+      [82, -3],
+      [27, 34],
+      [44, -69],
+      [65, -15],
+      [55, 59],
+      [81, -5],
+      [-15, -40],
+      [16, -41],
+      [44, -4],
+      [34, -31],
+      [-6, -38],
+      [48, -44],
+      [82, 74],
+      [57, -17],
+      [-2, 53],
+      [-29, 54],
+      [31, 83],
+      [49, 10],
+      [47, -13],
+      [26, 33],
+      [84, 37],
+      [67, -11],
+      [54, -23],
+      [41, 38],
+      [86, 5],
+      [81, 52],
+      [91, -3],
+      [37, 19],
+      [-8, 59],
+      [34, 31],
+      [46, -4],
+      [34, 19],
+      [-8, 40],
+      [67, -3],
+      [40, -25],
+      [87, 19],
+      [34, 53],
+      [21, 61],
+      [31, 0],
+      [56, 31],
+      [79, 116],
+      [-47, 119],
+      [6, 30],
+      [50, -19],
+      [73, -7],
+      [60, 13],
+      [64, 38],
+      [49, -12],
+      [20, -55],
+      [60, -67],
+      [-31, -142],
+      [3, -47],
+      [-35, -66],
+      [-37, -44],
+      [205, -44],
+      [63, -39],
+      [-26, -47],
+      [3, -73],
+      [47, -19],
+      [6, -46],
+      [26, -55],
+      [-4, -81],
+      [-49, -28],
+      [2, -37],
+      [-101, -64],
+      [-11, -24],
+      [34, -38],
+      [-17, -33],
+      [20, -49],
+      [-39, -50],
+      [-15, -64],
+      [-34, -56],
+      [-13, -78],
+      [-3, -146],
+      [31, -66],
+      [12, -100],
+      [67, -62],
+      [29, -1],
+      [-3, -62],
+      [11, -86],
+      [-18, -70],
+      [40, -72],
+      [34, -32],
+      [38, -1],
+      [93, -123],
+      [23, 0],
+      [46, -70],
+      [54, -29],
+      [132, -29],
+      [10, -41]
+    ],
+    [
+      [14545, 5277],
+      [-160, -115],
+      [-79, -74],
+      [-16, 18],
+      [87, 77],
+      [28, 13],
+      [32, 30],
+      [59, 40],
+      [18, -8],
+      [31, 19]
+    ],
+    [
+      [15259, 5752],
+      [-47, -74],
+      [-48, -19],
+      [-4, 54],
+      [55, 3],
+      [44, 36]
+    ],
+    [
+      [15697, 5831],
+      [53, -32],
+      [-40, -77],
+      [-56, -18],
+      [-30, 30],
+      [53, 45],
+      [20, 52]
+    ],
+    [
+      [16028, 6035],
+      [-65, -10],
+      [-35, 31],
+      [-38, -39],
+      [-46, -11],
+      [-7, -40],
+      [-84, -28],
+      [-99, -50],
+      [-13, -37],
+      [19, -55],
+      [-13, -27],
+      [-63, -1],
+      [-75, 32],
+      [-80, 11],
+      [-52, -6],
+      [-95, -31],
+      [-66, -55],
+      [-69, 7],
+      [-53, -21],
+      [-2, -46],
+      [-64, -26],
+      [-158, -88],
+      [-90, -69],
+      [-1, -46],
+      [-58, -31],
+      [-76, -64],
+      [-123, -70],
+      [-20, -1],
+      [-5, 4],
+      [-7, -3],
+      [-112, -79],
+      [-34, -31],
+      [-36, -4],
+      [-67, -75],
+      [-16, -38],
+      [61, -11],
+      [-13, -33],
+      [-73, -59]
+    ],
+    [
+      [14003, 3703],
+      [23, -58],
+      [-68, -133],
+      [-15, 41],
+      [9, 50],
+      [-15, 44],
+      [66, 56]
+    ],
+    [
+      [11034, 3825],
+      [84, 143],
+      [7, 33],
+      [-45, 71],
+      [3, 60],
+      [30, 117],
+      [1, 61],
+      [32, 0],
+      [15, 46]
+    ],
+    [
+      [13903, 4518],
+      [-6, -50],
+      [14, -63],
+      [44, -37],
+      [-46, -94],
+      [-5, -36],
+      [-44, -84],
+      [2, -88],
+      [23, -52],
+      [-1, -82],
+      [34, -17],
+      [-22, -48],
+      [15, -27],
+      [-17, -84],
+      [50, -29],
+      [-20, -45],
+      [-46, -42],
+      [21, -47],
+      [-29, -45],
+      [17, -25],
+      [3, -74],
+      [23, -49],
+      [-28, -52],
+      [13, -42],
+      [-28, -98],
+      [-58, -135],
+      [6, -27],
+      [-43, -56],
+      [-81, -40],
+      [-153, -106],
+      [-105, -98],
+      [-144, -175]
+    ],
+    [
+      [20600, 13520],
+      [-75, -23],
+      [-154, -96],
+      [-77, -81],
+      [-179, -273],
+      [-23, -65],
+      [-75, -55],
+      [-50, -16]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0018229790963059055, 0.001719403043083933],
+    "translate": [-73.9446029663086, -33.74708175659179]
+  },
+  "objects": {
+    "brazil": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-AC",
+            "NAME_0": "Brazil",
+            "ID_1": 1,
+            "NAME_1": "Acre",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[3, 4, 5, 6]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-AL",
+            "NAME_0": "Brazil",
+            "ID_1": 2,
+            "NAME_1": "Alagoas",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[7]], [[8]], [[9, 10]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-AP",
+            "NAME_0": "Brazil",
+            "ID_1": 3,
+            "NAME_1": "Amapá",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[11, 12, 13, 14, -3, 15], [16]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-AM",
+            "NAME_0": "Brazil",
+            "ID_1": 4,
+            "NAME_1": "Amazonas",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Amazone"
+          }
+        },
+        {
+          "arcs": [[[17]], [[18, 19, 20, 21, 22, 23, 24, 25, -6, 26, 27]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-BA",
+            "NAME_0": "Brazil",
+            "ID_1": 5,
+            "NAME_1": "Bahia",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Ba¡a"
+          }
+        },
+        {
+          "arcs": [[28, 29, 30, 31, 32]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-CE",
+            "NAME_0": "Brazil",
+            "ID_1": 6,
+            "NAME_1": "Ceará",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[33, 34]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-DF",
+            "NAME_0": "Brazil",
+            "ID_1": 7,
+            "NAME_1": "Distrito Federal",
+            "TYPE_1": "Distrito Federal",
+            "ENGTYPE_1": "Federal District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-19, 35, 36, 37]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-ES",
+            "NAME_0": "Brazil",
+            "ID_1": 8,
+            "NAME_1": "Espírito Santo",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Espiritu Santo"
+          }
+        },
+        {
+          "arcs": [[-21, 38, -35, 39, 40, 41, 42]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-GO",
+            "NAME_0": "Brazil",
+            "ID_1": 9,
+            "NAME_1": "Goiás",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Goiáz|Goyáz"
+          }
+        },
+        {
+          "arcs": [[[43]], [[44]], [[45]], [[46]], [[47]], [[48, 49, 50, 51]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-MA",
+            "NAME_0": "Brazil",
+            "ID_1": 10,
+            "NAME_1": "Maranhão",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "São Luíz de Maranhão"
+          }
+        },
+        {
+          "arcs": [[-41, 52, 53, 54, 55, 56]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-MS",
+            "NAME_0": "Brazil",
+            "ID_1": 11,
+            "NAME_1": "Mato Grosso do Sul",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[57, -42, -57, 58, 59, -14, 60]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-MT",
+            "NAME_0": "Brazil",
+            "ID_1": 12,
+            "NAME_1": "Mato Grosso",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Matto Grosso"
+          }
+        },
+        {
+          "arcs": [[-38, 61, 62, -53, -40, -34, -39, -20]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-MG",
+            "NAME_0": "Brazil",
+            "ID_1": 13,
+            "NAME_1": "Minas Gerais",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Minas|Minas Geraes"
+          }
+        },
+        {
+          "arcs": [[-10, 63, -51, 64, -61, -13, 65, 66]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-PA",
+            "NAME_0": "Brazil",
+            "ID_1": 14,
+            "NAME_1": "Pará",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[-24, 67]], [[68, 69, -30, 70]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-PB",
+            "NAME_0": "Brazil",
+            "ID_1": 15,
+            "NAME_1": "Paraíba",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Parahyba"
+          }
+        },
+        {
+          "arcs": [[[71]], [[72, 73, -55, 74, 75]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-PR",
+            "NAME_0": "Brazil",
+            "ID_1": 16,
+            "NAME_1": "Paraná",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[76, -7, -26, 77, -31, -70]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-PE",
+            "NAME_0": "Brazil",
+            "ID_1": 17,
+            "NAME_1": "Pernambuco",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Pernambouc"
+          }
+        },
+        {
+          "arcs": [[78, -32, -78, -25, -68, -23, 79, -49]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-PI",
+            "NAME_0": "Brazil",
+            "ID_1": 18,
+            "NAME_1": "Piauí",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Piauhy"
+          }
+        },
+        {
+          "arcs": [[[80]], [[81, 82, -62, -37]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-RJ",
+            "NAME_0": "Brazil",
+            "ID_1": 19,
+            "NAME_1": "Rio de Janeiro",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-71, -29, 83]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-RN",
+            "NAME_0": "Brazil",
+            "ID_1": 20,
+            "NAME_1": "Rio Grande do Norte",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[84, 85]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-RS",
+            "NAME_0": "Brazil",
+            "ID_1": 21,
+            "NAME_1": "Rio Grande do Sul",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-60, 86, -1, -15]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-RO",
+            "NAME_0": "Brazil",
+            "ID_1": 22,
+            "NAME_1": "Rondônia",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Guaporé"
+          }
+        },
+        {
+          "arcs": [[-66, -12, 87]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-RR",
+            "NAME_0": "Brazil",
+            "ID_1": 23,
+            "NAME_1": "Roraima",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Rio Branco"
+          }
+        },
+        {
+          "arcs": [[[88]], [[89]], [[90]], [[-83, 91, -75, -54, -63]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-SP",
+            "NAME_0": "Brazil",
+            "ID_1": 24,
+            "NAME_1": "São Paulo",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[92]], [[-86, 93, -73, 94]], [[-17]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-SC",
+            "NAME_0": "Brazil",
+            "ID_1": 25,
+            "NAME_1": "Santa Catarina",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Santa Catharina"
+          }
+        },
+        {
+          "arcs": [[95, -27, -5]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-SE",
+            "NAME_0": "Brazil",
+            "ID_1": 26,
+            "NAME_1": "Sergipe",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-80, -22, -43, -58, -65, -50]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 33,
+            "ISO": "BR-TO",
+            "NAME_0": "Brazil",
+            "ID_1": 27,
+            "NAME_1": "Tocantins",
+            "TYPE_1": "Estado",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/bulgaria-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/bulgaria-topo.json
new file mode 100644
index 0000000..212a5d4
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/bulgaria-topo.json
@@ -0,0 +1,16396 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [16853, 8115],
+      [-13, -19],
+      [23, -56],
+      [33, -18],
+      [68, 1],
+      [12, -59],
+      [3, -161],
+      [-61, -31],
+      [-48, -78],
+      [1, -37],
+      [-105, 14],
+      [35, 73],
+      [-52, -15],
+      [-12, -116],
+      [-65, -37],
+      [-77, -16],
+      [12, -49],
+      [-35, -42]
+    ],
+    [
+      [16572, 7469],
+      [-67, -51],
+      [-121, 40],
+      [-76, -34],
+      [-27, -50],
+      [-67, -40],
+      [-65, -15],
+      [-86, 62],
+      [-53, 71],
+      [-30, -50],
+      [15, -24],
+      [-38, -70],
+      [-83, -49],
+      [20, -55],
+      [4, -65],
+      [49, -54],
+      [-22, -60],
+      [-104, -16],
+      [-34, -91],
+      [-44, -4],
+      [1, -71],
+      [-79, 0],
+      [-52, -86],
+      [-89, -4],
+      [-8, 50],
+      [-59, 12],
+      [6, -45],
+      [-60, 3],
+      [-1, 49],
+      [-79, 43],
+      [-76, 5],
+      [-28, -72]
+    ],
+    [
+      [15219, 6798],
+      [-6, -13],
+      [-91, 6],
+      [-28, -60],
+      [-34, -7],
+      [-20, 44],
+      [-34, 228],
+      [43, -5],
+      [9, 60],
+      [48, 13],
+      [-38, 119],
+      [-32, 196],
+      [-76, -32],
+      [-76, 5],
+      [-82, 108],
+      [9, 57],
+      [-48, 37],
+      [-66, 8],
+      [-34, 22]
+    ],
+    [
+      [14663, 7584],
+      [0, 44],
+      [-62, 78],
+      [24, 46],
+      [-10, 57],
+      [4, 80],
+      [81, 46],
+      [-17, 72],
+      [46, 54],
+      [-20, 110],
+      [103, 22],
+      [44, -61],
+      [23, -5],
+      [109, 134],
+      [-78, 16],
+      [5, 57],
+      [-34, 73],
+      [-81, 6],
+      [-20, 24],
+      [-9, 98],
+      [-51, 56],
+      [-5, 69],
+      [10, 76],
+      [-33, 16],
+      [-26, 45],
+      [-92, -33],
+      [-46, 3],
+      [-34, 36]
+    ],
+    [
+      [14494, 8803],
+      [68, 49],
+      [-6, 57],
+      [36, 67],
+      [-61, 102],
+      [48, 24],
+      [41, 47],
+      [70, 8],
+      [100, 94],
+      [66, -6],
+      [68, 26],
+      [94, 166],
+      [-38, 92],
+      [12, 26]
+    ],
+    [
+      [14992, 9555],
+      [43, -3]
+    ],
+    [
+      [15035, 9552],
+      [50, -38],
+      [10, -79],
+      [62, -21],
+      [29, -29],
+      [-29, -48],
+      [2, -42],
+      [-38, -13],
+      [-10, -50],
+      [39, -122],
+      [109, -115],
+      [-19, -4],
+      [-14, -96],
+      [115, -13],
+      [84, 23],
+      [1, -26],
+      [49, -38],
+      [88, -12],
+      [45, -40],
+      [45, -79],
+      [-4, -25],
+      [-80, -118],
+      [1, -20],
+      [132, -12],
+      [72, 3],
+      [43, 85],
+      [6, 54],
+      [47, 0],
+      [44, -48],
+      [154, 72],
+      [25, -25],
+      [106, -8],
+      [104, 6],
+      [-5, -42],
+      [28, -21],
+      [28, -78],
+      [12, -103],
+      [-62, -38],
+      [-2, -63],
+      [44, -85],
+      [-8, -34],
+      [48, -34],
+      [122, -29],
+      [51, -27],
+      [7, -47],
+      [51, -35],
+      [49, 19],
+      [59, -6],
+      [41, 37],
+      [46, -12],
+      [41, 39]
+    ],
+    [
+      [14663, 7584],
+      [-22, -18],
+      [-99, -1],
+      [-9, 48],
+      [-45, -16],
+      [-45, 15],
+      [-62, -25],
+      [-28, 13],
+      [-5, 90],
+      [17, 44],
+      [-45, 17],
+      [-73, -8],
+      [-22, -27],
+      [-87, -40],
+      [-48, 41],
+      [-101, -8],
+      [-36, -39],
+      [-31, 7],
+      [-41, -110]
+    ],
+    [
+      [13881, 7567],
+      [-46, 30],
+      [-30, 60],
+      [-41, 153],
+      [42, 58],
+      [7, 43],
+      [-28, 22],
+      [-14, 80],
+      [-30, 41],
+      [-50, 162],
+      [-3, 84],
+      [-63, 50],
+      [-4, 45],
+      [-44, 111],
+      [58, -13],
+      [54, 39],
+      [5, 49]
+    ],
+    [
+      [13694, 8581],
+      [75, 36],
+      [45, -18],
+      [41, 11],
+      [17, 47],
+      [64, -10],
+      [111, 21],
+      [35, -34],
+      [82, 13],
+      [26, -38],
+      [77, 72],
+      [89, 12],
+      [55, 89],
+      [83, 21]
+    ],
+    [
+      [17142, 8066],
+      [-180, 72],
+      [-109, -23]
+    ],
+    [
+      [15035, 9552],
+      [26, 81],
+      [55, 36],
+      [91, -36],
+      [43, 0],
+      [56, 79],
+      [12, 89],
+      [-15, 74],
+      [50, 3],
+      [43, 30]
+    ],
+    [
+      [15396, 9908],
+      [43, 12],
+      [-11, 68],
+      [97, -22],
+      [46, 18],
+      [53, 49],
+      [63, -9],
+      [70, -37],
+      [-35, -51],
+      [7, -22],
+      [69, 19],
+      [36, 49],
+      [61, -45],
+      [34, -43],
+      [149, -95],
+      [30, 23],
+      [140, 26],
+      [17, 38],
+      [49, -11],
+      [52, 43],
+      [29, -41],
+      [45, 8],
+      [17, -32],
+      [152, -79],
+      [-3, -32]
+    ],
+    [
+      [16606, 9742],
+      [-66, -82],
+      [-16, -88],
+      [-10, -150],
+      [40, -4],
+      [100, -41]
+    ],
+    [
+      [16654, 9377],
+      [51, -73],
+      [-75, -162],
+      [19, -96],
+      [32, -44],
+      [9, -72],
+      [-31, -32],
+      [47, -33],
+      [-59, -74],
+      [53, -43],
+      [-29, -31],
+      [68, -65],
+      [-19, -85],
+      [96, -20],
+      [20, -30],
+      [51, -21],
+      [15, -31],
+      [54, 15],
+      [6, -81],
+      [55, -15],
+      [18, -90],
+      [46, -40],
+      [65, -23],
+      [-2, -59],
+      [-32, -50],
+      [30, -56]
+    ],
+    [
+      [15219, 6798],
+      [28, -14],
+      [28, -219],
+      [-16, -43],
+      [-42, -31],
+      [-50, 33],
+      [-79, 4],
+      [-26, -29],
+      [8, -149],
+      [-5, -83],
+      [31, -10],
+      [99, 37],
+      [-1, 69],
+      [51, 8],
+      [111, -77],
+      [-36, -28],
+      [-78, -93],
+      [-24, -95],
+      [2, -57],
+      [-39, 3],
+      [-8, -57],
+      [-36, -23],
+      [0, -100],
+      [-58, 0],
+      [-55, -133]
+    ],
+    [
+      [15024, 5711],
+      [-38, 17],
+      [-84, -23],
+      [-29, 31],
+      [-10, -102],
+      [-46, 25],
+      [-69, -24],
+      [-63, 55],
+      [-30, 50],
+      [-90, 7],
+      [-16, 13],
+      [-20, 83],
+      [-94, 14],
+      [-66, -36],
+      [-69, 11],
+      [-14, 50],
+      [12, 82],
+      [-21, 70],
+      [-151, 4],
+      [-54, 34],
+      [16, 101],
+      [-17, 68],
+      [-27, -2],
+      [-66, 56]
+    ],
+    [
+      [13978, 6295],
+      [-36, 106],
+      [16, 12],
+      [-12, 133],
+      [-13, 47],
+      [-59, 4],
+      [-35, 140],
+      [33, 8],
+      [-13, 54],
+      [124, 44],
+      [13, 43],
+      [-35, 74],
+      [-114, 198],
+      [-113, 147],
+      [-12, 50]
+    ],
+    [
+      [13722, 7355],
+      [61, -9],
+      [42, 26],
+      [32, -12],
+      [40, 22],
+      [39, 59],
+      [-15, 26],
+      [45, 69],
+      [-28, 17],
+      [-56, -30],
+      [-1, 44]
+    ],
+    [
+      [16448, 13844],
+      [-12, -28],
+      [-116, -106],
+      [-174, -127],
+      [-47, 16],
+      [-13, -58]
+    ],
+    [
+      [16086, 13541],
+      [-114, 93],
+      [8, 46],
+      [-19, 42],
+      [49, 58],
+      [13, 50],
+      [-8, 95],
+      [82, 39],
+      [21, -6],
+      [20, 129],
+      [-28, 76],
+      [-53, 46],
+      [-27, -16],
+      [-44, 20],
+      [-32, -41],
+      [-87, 16],
+      [-82, -63],
+      [-69, 24]
+    ],
+    [
+      [15716, 14149],
+      [29, 66],
+      [-9, 72],
+      [-38, 77],
+      [39, 92],
+      [-13, 13],
+      [-77, 146],
+      [-62, 13]
+    ],
+    [
+      [15585, 14628],
+      [11, 20],
+      [78, -6],
+      [125, 49],
+      [17, 80],
+      [-15, 11],
+      [-18, 235],
+      [26, 70],
+      [55, 11]
+    ],
+    [
+      [15864, 15098],
+      [108, -9],
+      [57, 29],
+      [18, -16],
+      [72, 12],
+      [26, -43],
+      [54, 45],
+      [12, -61],
+      [69, -95],
+      [54, 10],
+      [5, -48],
+      [42, 3],
+      [93, 65],
+      [19, 26],
+      [99, -3],
+      [25, -65],
+      [73, -44],
+      [-11, -49],
+      [5, -77],
+      [-53, -9],
+      [10, -32],
+      [132, -34],
+      [3, -18],
+      [74, -21],
+      [4, -55]
+    ],
+    [
+      [16854, 14609],
+      [-5, -42],
+      [-41, -19],
+      [-48, -77],
+      [-6, -99],
+      [-31, -43],
+      [5, -34],
+      [37, -24],
+      [13, -44],
+      [-23, -36],
+      [-51, 41],
+      [-56, 4],
+      [-53, -29],
+      [-34, 43],
+      [-46, -80],
+      [18, -11],
+      [-1, -76],
+      [-64, -6],
+      [-9, -42],
+      [43, -35],
+      [-34, -50],
+      [-58, 0],
+      [38, -106]
+    ],
+    [
+      [15553, 12736],
+      [-75, 27],
+      [-89, 56],
+      [-3, 62],
+      [-49, 29],
+      [-97, -21],
+      [-34, -23],
+      [-10, -63],
+      [12, -75]
+    ],
+    [
+      [15208, 12728],
+      [-88, 19],
+      [-44, -46]
+    ],
+    [
+      [15076, 12701],
+      [-19, 34],
+      [-3, 79],
+      [-60, 64],
+      [-45, 29],
+      [-13, 61],
+      [29, 111],
+      [-4, 81],
+      [21, 173],
+      [-13, 15]
+    ],
+    [
+      [14969, 13348],
+      [6, 12],
+      [136, 0],
+      [102, 56],
+      [-23, 70],
+      [64, 71],
+      [33, -47],
+      [68, -50],
+      [45, -1],
+      [51, 28],
+      [-11, -72],
+      [48, -87],
+      [39, -15],
+      [56, -50]
+    ],
+    [
+      [15583, 13263],
+      [32, -99],
+      [-16, -15],
+      [59, -153],
+      [-19, -100],
+      [12, -17],
+      [-87, -82],
+      [-11, -61]
+    ],
+    [
+      [16915, 12565],
+      [52, -30],
+      [87, -8],
+      [47, 17],
+      [30, -22],
+      [28, -156]
+    ],
+    [
+      [17159, 12366],
+      [5, -55],
+      [102, -61],
+      [-59, -146]
+    ],
+    [
+      [17207, 12104],
+      [-3, -12],
+      [-115, -2],
+      [-18, -33],
+      [-60, 10],
+      [18, -64],
+      [-17, -58],
+      [-33, -43],
+      [-83, -79],
+      [6, -59],
+      [-30, -52],
+      [5, -74],
+      [-69, 21],
+      [-98, -5],
+      [-18, 35],
+      [-148, 61],
+      [-65, 6],
+      [-29, -41],
+      [-39, 28],
+      [-160, 11],
+      [0, 82],
+      [-73, 122],
+      [11, 15],
+      [146, -17],
+      [-30, 52],
+      [-24, 95],
+      [-71, 65]
+    ],
+    [
+      [16210, 12168],
+      [17, 15],
+      [98, -11],
+      [68, 10],
+      [23, 22],
+      [20, 85],
+      [-42, 101],
+      [54, 16],
+      [136, -42],
+      [15, 22],
+      [76, 18],
+      [7, 56],
+      [32, 40],
+      [118, 7],
+      [-9, 54],
+      [92, 4]
+    ],
+    [
+      [15583, 13263],
+      [118, 82],
+      [11, 32],
+      [82, -27],
+      [68, 2],
+      [71, -18],
+      [85, 55],
+      [22, 59],
+      [33, 21],
+      [13, 72]
+    ],
+    [
+      [16448, 13844],
+      [138, -70],
+      [-20, -73],
+      [49, -51],
+      [48, -5],
+      [-35, -89],
+      [54, -4],
+      [21, -46],
+      [83, -24],
+      [27, 38],
+      [64, 19],
+      [94, -35]
+    ],
+    [
+      [16971, 13504],
+      [-50, -169],
+      [61, -43],
+      [63, -147],
+      [-15, -17]
+    ],
+    [
+      [17030, 13128],
+      [-19, -23],
+      [-12, -104],
+      [-37, -87],
+      [89, -42],
+      [19, -54],
+      [-41, -61],
+      [-82, -46],
+      [-31, -111],
+      [-1, -35]
+    ],
+    [
+      [16210, 12168],
+      [-44, 7]
+    ],
+    [
+      [16166, 12175],
+      [-14, 138],
+      [-98, 0],
+      [-84, -26],
+      [-54, -39],
+      [-97, -14],
+      [-39, 23],
+      [-28, 45],
+      [31, 29],
+      [-32, 65],
+      [37, 39],
+      [29, 88],
+      [-27, 60],
+      [-105, 24],
+      [-96, 121],
+      [-36, 8]
+    ],
+    [
+      [18275, 13700],
+      [0, -29],
+      [51, -57],
+      [42, -25],
+      [13, -144],
+      [-99, 12],
+      [-57, -4],
+      [-24, -61],
+      [-76, -77],
+      [3, -18]
+    ],
+    [
+      [18128, 13297],
+      [-81, 46],
+      [-22, -5],
+      [-37, 96],
+      [-116, 28],
+      [-75, -2],
+      [-37, 38],
+      [-141, -5],
+      [-89, -24],
+      [18, -126],
+      [-57, -63],
+      [-56, 3],
+      [-69, -34],
+      [-92, 2],
+      [-23, -49],
+      [-87, -9],
+      [-23, -36],
+      [-33, 20],
+      [-78, -49]
+    ],
+    [
+      [16971, 13504],
+      [26, -30],
+      [61, 11],
+      [70, 114],
+      [0, 50],
+      [35, 111],
+      [-41, 41],
+      [-15, 47],
+      [18, 65],
+      [30, 32],
+      [77, 23],
+      [-11, 40],
+      [25, 111],
+      [68, -4],
+      [49, 27],
+      [35, 58],
+      [44, 23],
+      [-41, 81],
+      [1, 37]
+    ],
+    [
+      [17402, 14341],
+      [-10, 52],
+      [49, 21],
+      [25, 34],
+      [46, -52],
+      [28, 13],
+      [32, 70],
+      [43, 64],
+      [29, -99],
+      [62, -44],
+      [10, -100],
+      [153, -39]
+    ],
+    [
+      [17869, 14261],
+      [27, -83],
+      [32, -48],
+      [10, -73],
+      [80, -9],
+      [106, -65],
+      [26, -33],
+      [24, -102],
+      [40, -66],
+      [62, -1],
+      [-1, -81]
+    ],
+    [
+      [16854, 14609],
+      [24, 49]
+    ],
+    [
+      [16878, 14658],
+      [73, -31],
+      [56, -72],
+      [76, -28],
+      [29, 13],
+      [69, -46],
+      [17, 52],
+      [69, -6],
+      [26, -33],
+      [1, -112],
+      [94, -16],
+      [14, -38]
+    ],
+    [
+      [17509, 12535],
+      [-68, -14],
+      [-30, 30],
+      [-40, -7],
+      [-48, -60],
+      [39, -63],
+      [-115, -52],
+      [-88, -3]
+    ],
+    [
+      [18128, 13297],
+      [-28, -102]
+    ],
+    [
+      [18100, 13195],
+      [-108, -47],
+      [-25, -25],
+      [-73, -7],
+      [-12, 83],
+      [-32, 21],
+      [-61, -66],
+      [-57, -35],
+      [36, -37],
+      [-38, -38],
+      [25, -43],
+      [-70, -42],
+      [-94, -26],
+      [-47, 12],
+      [-61, -50],
+      [31, -31],
+      [-10, -76],
+      [44, -59],
+      [34, -116],
+      [-55, -40],
+      [-18, -38]
+    ],
+    [
+      [1643, 9015],
+      [-26, 52],
+      [10, 98],
+      [-60, 13],
+      [-28, 30]
+    ],
+    [
+      [1539, 9208],
+      [39, 64],
+      [8, 55],
+      [54, 41],
+      [24, 74],
+      [-45, 89],
+      [65, 59],
+      [-10, 29],
+      [5, 100],
+      [68, 28],
+      [189, 100],
+      [53, 93],
+      [135, 80]
+    ],
+    [
+      [2124, 10020],
+      [45, -16],
+      [120, -72],
+      [-25, -56],
+      [8, -40],
+      [72, -92],
+      [-9, -101],
+      [51, -7],
+      [-15, -40],
+      [115, -20],
+      [166, 24],
+      [94, 37],
+      [38, -41],
+      [61, 42],
+      [72, -7],
+      [72, 50]
+    ],
+    [
+      [2989, 9681],
+      [8, -36],
+      [41, -54],
+      [4, -54],
+      [-68, -194],
+      [-134, -6],
+      [-26, -21]
+    ],
+    [
+      [2814, 9316],
+      [-92, 7],
+      [-37, -17],
+      [-58, -57],
+      [-66, 40],
+      [-108, 1],
+      [-57, 21],
+      [-44, -34],
+      [-30, -93],
+      [-117, 38],
+      [-52, -37],
+      [23, -36],
+      [-34, -35],
+      [-65, -18],
+      [-27, -39],
+      [-10, -51],
+      [-34, -7]
+    ],
+    [
+      [2006, 8999],
+      [-53, 32],
+      [-96, -47],
+      [-47, -80],
+      [-59, 66],
+      [-86, 12],
+      [-22, 33]
+    ],
+    [
+      [3354, 8618],
+      [49, 14],
+      [78, 57],
+      [35, 8],
+      [1, 45],
+      [-34, 64],
+      [38, 48],
+      [-9, 78],
+      [22, 53],
+      [-35, 82],
+      [22, 45],
+      [32, 13],
+      [15, 100],
+      [39, 13]
+    ],
+    [
+      [3607, 9238],
+      [35, 6],
+      [94, -79],
+      [52, 8],
+      [75, -105],
+      [12, -48],
+      [98, -20],
+      [27, -25],
+      [128, 3],
+      [56, 53],
+      [57, 20],
+      [22, 42],
+      [35, 16],
+      [16, -48],
+      [44, -3],
+      [18, 63],
+      [40, -7],
+      [13, -42],
+      [53, -34],
+      [38, 26],
+      [67, -42],
+      [61, -131],
+      [71, -29],
+      [38, 11],
+      [44, 96],
+      [66, 26],
+      [39, 48],
+      [69, -21],
+      [43, 0],
+      [15, -99],
+      [63, 33],
+      [53, -28],
+      [44, 28]
+    ],
+    [
+      [5193, 8956],
+      [7, -57]
+    ],
+    [
+      [5200, 8899],
+      [-51, -17],
+      [-46, -75],
+      [-29, -98],
+      [7, -107],
+      [-33, -72],
+      [-27, 21],
+      [-36, -25],
+      [-35, -108],
+      [-8, -67],
+      [-51, -110],
+      [-24, -35],
+      [-122, -10],
+      [-59, -22],
+      [-18, -57],
+      [10, -73],
+      [-102, 20],
+      [3, -26],
+      [-93, -25],
+      [-14, -30],
+      [10, -112],
+      [42, -1],
+      [12, -33],
+      [96, -36],
+      [-14, -67],
+      [50, -5],
+      [63, -44],
+      [-15, -217],
+      [40, -57],
+      [-26, -28],
+      [18, -33],
+      [-49, -31],
+      [-5, -97],
+      [69, -27],
+      [76, -128],
+      [29, -13],
+      [47, 17],
+      [33, -32],
+      [39, 14]
+    ],
+    [
+      [4987, 7053],
+      [22, -13],
+      [-26, -76],
+      [70, -36],
+      [30, -60],
+      [1, -55],
+      [44, -21],
+      [-6, -58],
+      [20, -61],
+      [-7, -70]
+    ],
+    [
+      [5135, 6603],
+      [-63, 0],
+      [-51, -33],
+      [-75, -14],
+      [-94, 44],
+      [-39, -25],
+      [-70, 26],
+      [-44, -48],
+      [-26, 6],
+      [-46, 78],
+      [8, 51],
+      [-22, 54],
+      [26, 37],
+      [21, 123],
+      [-10, 33],
+      [-116, 97],
+      [2, 75],
+      [-68, 0],
+      [-51, 29],
+      [-58, 1],
+      [-68, 40],
+      [-89, -76],
+      [64, -68],
+      [-2, -36],
+      [28, -59],
+      [-12, -19],
+      [-79, -31],
+      [-45, -50],
+      [-21, 44],
+      [-63, 53],
+      [-63, 71],
+      [-52, 5],
+      [-128, 76],
+      [-29, 29],
+      [-45, 80],
+      [-40, -20],
+      [-44, 45]
+    ],
+    [
+      [3671, 7221],
+      [38, 67],
+      [-47, 52],
+      [-10, 41],
+      [-105, 12],
+      [-38, 43],
+      [-75, 22],
+      [-22, 42],
+      [-58, 12],
+      [-44, 28],
+      [-64, 10],
+      [-112, 1],
+      [-37, -29],
+      [-18, 41],
+      [52, 62],
+      [75, 46],
+      [12, 57],
+      [-48, 99],
+      [40, 42],
+      [-18, 46],
+      [-85, 27],
+      [-13, 26],
+      [-77, 17],
+      [-57, 24],
+      [2, 54],
+      [-27, 30],
+      [-68, 13],
+      [-122, 40],
+      [7, 76]
+    ],
+    [
+      [2752, 8222],
+      [59, 70],
+      [22, 46],
+      [47, 22],
+      [114, 14],
+      [107, -17],
+      [51, -61],
+      [82, 24],
+      [70, -11],
+      [60, 94],
+      [25, 64],
+      [-71, 80],
+      [36, 71]
+    ],
+    [
+      [5135, 6603],
+      [44, -13]
+    ],
+    [
+      [5179, 6590],
+      [-35, -72],
+      [19, -39],
+      [-29, -32],
+      [16, -69],
+      [82, 5],
+      [39, -22],
+      [63, -62],
+      [92, -173]
+    ],
+    [
+      [5426, 6126],
+      [-34, -40],
+      [7, -55],
+      [-11, -49],
+      [18, -242],
+      [-28, -79],
+      [-31, -39],
+      [-24, -75],
+      [31, -88]
+    ],
+    [
+      [5354, 5459],
+      [-28, -232],
+      [15, -29],
+      [63, -19]
+    ],
+    [
+      [5404, 5179],
+      [33, -83],
+      [-96, 39],
+      [-48, -19],
+      [-75, 86],
+      [-39, -3],
+      [-74, 32],
+      [-20, -106],
+      [-49, -1],
+      [-108, 33],
+      [-64, -43],
+      [-12, -123],
+      [-50, -75],
+      [17, -33],
+      [-40, -62],
+      [3, -85]
+    ],
+    [
+      [4782, 4736],
+      [-63, 6],
+      [-69, -19],
+      [-29, 20],
+      [-110, 23],
+      [-32, 33]
+    ],
+    [
+      [4479, 4799],
+      [8, 43],
+      [39, 46],
+      [48, -8],
+      [28, 30],
+      [11, 53],
+      [-57, 83],
+      [-50, 29],
+      [-51, -15],
+      [-37, 22],
+      [-89, 13],
+      [-34, 177],
+      [-41, 21],
+      [-111, -29],
+      [-27, -30],
+      [-133, -43],
+      [-34, 15],
+      [-95, -23],
+      [-65, 48]
+    ],
+    [
+      [3789, 5231],
+      [-25, 38],
+      [12, 53]
+    ],
+    [
+      [3776, 5322],
+      [60, 131],
+      [71, 58],
+      [16, 103],
+      [81, 28],
+      [26, -35],
+      [47, 2],
+      [-21, 46],
+      [-22, 115],
+      [16, 62],
+      [-152, 74],
+      [-47, 78],
+      [-78, 47],
+      [-13, 37],
+      [35, 54],
+      [-8, 40],
+      [-75, 144],
+      [-48, 24],
+      [-43, -46],
+      [-62, -23]
+    ],
+    [
+      [3559, 6261],
+      [-37, 45],
+      [13, 44],
+      [-41, 17],
+      [-83, -13]
+    ],
+    [
+      [3411, 6354],
+      [20, 89],
+      [50, 38],
+      [-16, 77],
+      [-51, 30],
+      [-22, 58],
+      [-4, 77],
+      [10, 126]
+    ],
+    [
+      [3398, 6849],
+      [1, 38],
+      [47, 56],
+      [4, 47],
+      [80, 30],
+      [19, 101],
+      [33, 56],
+      [47, 48],
+      [42, -4]
+    ],
+    [
+      [4759, 9787],
+      [-2, -36],
+      [25, -81],
+      [50, -20],
+      [44, -49],
+      [-65, -42],
+      [-20, -30],
+      [29, -63],
+      [-1, -69],
+      [78, -26],
+      [-6, -46],
+      [24, -51],
+      [57, -20],
+      [58, 13],
+      [55, -31],
+      [32, -63],
+      [83, -74],
+      [-7, -143]
+    ],
+    [
+      [3607, 9238],
+      [26, 145],
+      [21, 19],
+      [-93, 39],
+      [26, 134],
+      [-105, 8],
+      [-40, -43],
+      [-73, 16],
+      [14, 65],
+      [-35, 42],
+      [-87, 2],
+      [-49, -15],
+      [-64, -88],
+      [-11, 63],
+      [32, 35],
+      [-5, 76],
+      [16, 34],
+      [-76, 27],
+      [-72, -9]
+    ],
+    [
+      [3032, 9788],
+      [-20, 69],
+      [-9, 143],
+      [62, -3],
+      [14, 30],
+      [118, -24],
+      [21, 43],
+      [45, 152],
+      [37, 2],
+      [101, 71],
+      [27, 101],
+      [-59, 62],
+      [-37, 17]
+    ],
+    [
+      [3332, 10451],
+      [51, 7],
+      [48, -17],
+      [70, 6],
+      [-20, 51],
+      [22, 43],
+      [45, 1],
+      [122, -47],
+      [99, 71],
+      [28, 139],
+      [163, -13],
+      [19, -18],
+      [64, 10],
+      [22, 31],
+      [40, -16],
+      [48, 16]
+    ],
+    [
+      [4153, 10715],
+      [12, -22],
+      [77, -36],
+      [29, 42],
+      [42, -28],
+      [83, 8],
+      [14, -53],
+      [33, -51]
+    ],
+    [
+      [4443, 10575],
+      [-86, -62],
+      [-34, -53],
+      [-19, -97],
+      [43, -33],
+      [43, -104],
+      [73, 8],
+      [11, -61],
+      [32, -83],
+      [51, -23],
+      [34, -75],
+      [-13, -48],
+      [28, -43],
+      [102, -59],
+      [51, -55]
+    ],
+    [
+      [6761, 8436],
+      [5, -71],
+      [29, -31],
+      [49, -12],
+      [32, -80],
+      [44, -76],
+      [-15, -37],
+      [-53, -33],
+      [-34, -42],
+      [57, -63],
+      [-13, -72]
+    ],
+    [
+      [6862, 7919],
+      [-45, 0],
+      [-68, 120],
+      [-24, 22],
+      [-109, 4]
+    ],
+    [
+      [6616, 8065],
+      [17, 25],
+      [-7, 119],
+      [-51, 13],
+      [-30, 133]
+    ],
+    [
+      [6545, 8355],
+      [38, 0],
+      [9, 63],
+      [50, 42],
+      [79, -32],
+      [40, 8]
+    ],
+    [
+      [5200, 8899],
+      [63, 13],
+      [86, -14],
+      [21, -94],
+      [22, -46],
+      [48, 4],
+      [32, -36],
+      [60, -6]
+    ],
+    [
+      [5532, 8720],
+      [46, -139],
+      [-85, -41],
+      [-59, -5],
+      [-23, -48],
+      [-56, -22],
+      [-15, -32],
+      [-56, -41],
+      [-33, -81],
+      [-79, -9],
+      [-30, -49],
+      [20, -86],
+      [-31, -33],
+      [-33, 13],
+      [-35, -35],
+      [0, -36],
+      [50, -21],
+      [31, -104],
+      [40, -51],
+      [96, -12],
+      [48, 51],
+      [23, -10],
+      [31, -79],
+      [-3, -35],
+      [44, -17],
+      [113, -93],
+      [28, 62],
+      [53, 54],
+      [17, 60],
+      [33, -36],
+      [93, -28],
+      [94, -63],
+      [84, -2],
+      [16, 30]
+    ],
+    [
+      [5954, 7782],
+      [94, -48],
+      [-29, -58],
+      [30, -76],
+      [-18, -96],
+      [15, -55],
+      [-36, -51],
+      [-14, -71]
+    ],
+    [
+      [5996, 7327],
+      [-71, 11],
+      [-77, -17],
+      [-35, 18],
+      [0, 82],
+      [-49, 42],
+      [-14, 59],
+      [-86, 26],
+      [-75, -32],
+      [-93, 48],
+      [-39, -10],
+      [-25, 40],
+      [-121, -30],
+      [-13, -21],
+      [-163, 13],
+      [-28, -86],
+      [17, -75],
+      [-60, -91],
+      [-19, -59],
+      [1, -79],
+      [13, -39],
+      [-72, -74]
+    ],
+    [
+      [5426, 6126],
+      [60, -19],
+      [36, 40],
+      [51, -17],
+      [70, 44],
+      [60, -57],
+      [-39, -39],
+      [-6, -39],
+      [30, -34],
+      [111, -29],
+      [-80, -122],
+      [-80, -54],
+      [7, -43],
+      [-19, -53],
+      [-41, 1],
+      [-52, -63],
+      [-32, -70],
+      [-50, -28],
+      [-98, -85]
+    ],
+    [
+      [7892, 8120],
+      [17, -33],
+      [-40, -62],
+      [103, -76],
+      [43, -72],
+      [31, -28],
+      [96, -10],
+      [110, -106],
+      [15, -61],
+      [29, -38],
+      [68, -40]
+    ],
+    [
+      [8364, 7594],
+      [2, -55],
+      [-43, -12],
+      [-6, -58],
+      [-46, -18],
+      [-3, -32],
+      [31, -37],
+      [-64, -44],
+      [-81, 31],
+      [-34, -35]
+    ],
+    [
+      [8120, 7334],
+      [-34, 67],
+      [-125, 10],
+      [-25, -11],
+      [-76, -82],
+      [-43, 136],
+      [-114, 48]
+    ],
+    [
+      [7703, 7502],
+      [-23, 100],
+      [-72, 65],
+      [-36, 55]
+    ],
+    [
+      [7572, 7722],
+      [77, 35],
+      [13, 33],
+      [-34, 101],
+      [78, 30],
+      [10, 49],
+      [86, 26],
+      [23, 134]
+    ],
+    [
+      [7825, 8130],
+      [67, -10]
+    ],
+    [
+      [5568, 5264],
+      [-112, 14],
+      [-52, -99]
+    ],
+    [
+      [5179, 6590],
+      [92, -15],
+      [22, -24],
+      [61, -7],
+      [58, -39],
+      [128, -50],
+      [27, -18],
+      [79, -4],
+      [89, -56],
+      [88, 2],
+      [29, -46],
+      [30, 66],
+      [91, -45],
+      [108, 52],
+      [132, -39],
+      [88, 22]
+    ],
+    [
+      [6301, 6389],
+      [16, -57]
+    ],
+    [
+      [6317, 6332],
+      [-35, -28],
+      [7, -71],
+      [-31, -103],
+      [-27, -34],
+      [77, -98],
+      [128, -76],
+      [8, -29],
+      [-49, -43],
+      [-81, -115]
+    ],
+    [
+      [6314, 5735],
+      [-107, 35],
+      [-44, 31],
+      [5, 50],
+      [-27, 46],
+      [-64, 13],
+      [-36, -15],
+      [-18, -58],
+      [26, -52],
+      [-110, -240],
+      [-55, -42],
+      [-48, -81],
+      [-142, -25],
+      [-99, -130],
+      [-27, -3]
+    ],
+    [
+      [2752, 8222],
+      [-75, 27],
+      [13, 33],
+      [-26, 75],
+      [-2, 100],
+      [-180, 7]
+    ],
+    [
+      [2482, 8464],
+      [24, 57],
+      [-46, 46]
+    ],
+    [
+      [2460, 8567],
+      [50, 9],
+      [113, 54],
+      [9, 50],
+      [52, 21],
+      [26, 84],
+      [89, 88],
+      [52, 18],
+      [33, 36]
+    ],
+    [
+      [2884, 8927],
+      [61, -5],
+      [31, -100],
+      [113, -45],
+      [115, -86],
+      [150, -73]
+    ],
+    [
+      [7982, 8430],
+      [2, -110],
+      [-63, -104],
+      [-1, -87],
+      [-28, -9]
+    ],
+    [
+      [7825, 8130],
+      [-54, 55],
+      [-109, -13],
+      [-13, 68],
+      [-35, 40],
+      [-55, -31],
+      [-19, 11],
+      [-118, -14],
+      [-57, 12],
+      [-36, 86],
+      [5, 76],
+      [23, 34],
+      [9, 70]
+    ],
+    [
+      [7366, 8524],
+      [59, 42],
+      [165, -10],
+      [144, -70],
+      [50, -56],
+      [75, 27],
+      [75, -34],
+      [48, 7]
+    ],
+    [
+      [6817, 9499],
+      [50, 3],
+      [12, -30],
+      [102, -43],
+      [90, 32],
+      [43, -31],
+      [45, -159],
+      [-21, -71],
+      [-21, -184],
+      [11, -76],
+      [93, -42],
+      [-47, -31],
+      [-49, -4],
+      [-2, -64],
+      [21, -17],
+      [75, 46],
+      [44, -5],
+      [-32, -65],
+      [-158, -54],
+      [-25, -68],
+      [-81, -24],
+      [0, -43]
+    ],
+    [
+      [6967, 8569],
+      [-65, -42],
+      [-68, -12],
+      [-69, -44],
+      [-4, -35]
+    ],
+    [
+      [6545, 8355],
+      [-116, 53],
+      [-84, 60],
+      [-141, 55],
+      [-31, 35],
+      [-74, 33]
+    ],
+    [
+      [6099, 8591],
+      [-46, 13],
+      [2, 62],
+      [-58, 58],
+      [25, 47],
+      [-50, 40],
+      [-68, -1],
+      [-31, 18]
+    ],
+    [
+      [5873, 8828],
+      [10, 51],
+      [-11, 103],
+      [36, 49],
+      [87, -11]
+    ],
+    [
+      [5995, 9020],
+      [32, 21],
+      [43, -11],
+      [97, 8],
+      [54, 69],
+      [45, 9],
+      [86, -15],
+      [-17, 42],
+      [72, -2],
+      [25, 54],
+      [64, 20],
+      [28, 46],
+      [29, 0],
+      [56, 39],
+      [173, 141],
+      [-18, 46],
+      [53, 12]
+    ],
+    [
+      [6862, 7919],
+      [-7, -13],
+      [39, -101],
+      [25, -32],
+      [49, -6],
+      [19, -67],
+      [39, -76]
+    ],
+    [
+      [7026, 7624],
+      [-5, -67],
+      [-50, -27],
+      [-20, -77],
+      [-60, -36],
+      [-89, 22]
+    ],
+    [
+      [6802, 7439],
+      [2, 23],
+      [-77, 84],
+      [-71, 130],
+      [-44, 42]
+    ],
+    [
+      [6612, 7718],
+      [18, 40],
+      [-44, 77],
+      [17, 55],
+      [-7, 44],
+      [-37, 24],
+      [-13, 46],
+      [23, 60],
+      [47, 1]
+    ],
+    [
+      [5877, 10088],
+      [87, 1],
+      [149, -17],
+      [56, -23],
+      [-1, -59],
+      [41, -25],
+      [43, -2],
+      [65, 38],
+      [2, 100],
+      [33, 67]
+    ],
+    [
+      [6352, 10168],
+      [39, -44],
+      [87, -16],
+      [59, 71],
+      [100, -24],
+      [8, -83],
+      [-15, -82],
+      [50, -50],
+      [16, -108],
+      [35, -72],
+      [36, -25]
+    ],
+    [
+      [6767, 9735],
+      [-45, -17],
+      [-14, -93],
+      [54, -40],
+      [42, -7],
+      [20, -41],
+      [-7, -38]
+    ],
+    [
+      [5995, 9020],
+      [-35, 131],
+      [-3, 71],
+      [-43, 93],
+      [3, 81],
+      [34, 52],
+      [-51, 56],
+      [6, 44],
+      [-88, 66],
+      [7, 79],
+      [30, 69],
+      [39, 27],
+      [-7, 67],
+      [29, 74],
+      [-62, 104],
+      [23, 54]
+    ],
+    [
+      [3032, 9788],
+      [-28, -45],
+      [-15, -62]
+    ],
+    [
+      [2124, 10020],
+      [11, 70],
+      [37, 42],
+      [37, 135],
+      [58, 46],
+      [76, 22],
+      [120, 107],
+      [47, 137],
+      [9, 110],
+      [-43, 60],
+      [79, 114],
+      [-1, 32]
+    ],
+    [
+      [2554, 10895],
+      [33, 27]
+    ],
+    [
+      [2587, 10922],
+      [42, -10],
+      [57, -62],
+      [22, -85],
+      [49, -7],
+      [3, -40],
+      [48, 3],
+      [71, -87],
+      [70, -111],
+      [25, -60],
+      [45, 19],
+      [74, -41],
+      [150, -8],
+      [47, 37],
+      [42, -19]
+    ],
+    [
+      [5996, 7327],
+      [37, -31]
+    ],
+    [
+      [6033, 7296],
+      [21, -56],
+      [75, -92],
+      [-19, -87],
+      [178, -140],
+      [46, -106],
+      [47, 48],
+      [11, -58],
+      [30, -25],
+      [71, 17],
+      [119, 50],
+      [80, -21],
+      [32, -66]
+    ],
+    [
+      [6724, 6760],
+      [-29, -1],
+      [-46, -117],
+      [-8, -109],
+      [-80, -102],
+      [-60, -15],
+      [-48, 10],
+      [-104, -8],
+      [-48, -29]
+    ],
+    [
+      [6967, 8569],
+      [40, 7],
+      [165, -54]
+    ],
+    [
+      [7172, 8522],
+      [0, -58],
+      [-39, -162],
+      [-65, -141],
+      [-8, -161],
+      [33, -65],
+      [87, -137],
+      [34, -12],
+      [54, 22],
+      [-18, -64],
+      [22, -25]
+    ],
+    [
+      [7272, 7719],
+      [-37, -25],
+      [-70, 19],
+      [-94, -33],
+      [-45, -56]
+    ],
+    [
+      [6802, 7439],
+      [-38, -16],
+      [-9, -43],
+      [-76, -22],
+      [-44, -51],
+      [-54, -13],
+      [-155, 92],
+      [-25, 41],
+      [-65, 8]
+    ],
+    [
+      [6336, 7435],
+      [-25, 69],
+      [21, 69],
+      [-77, 85],
+      [64, 37],
+      [69, 92],
+      [66, 9],
+      [21, -32],
+      [94, 9],
+      [43, -55]
+    ],
+    [
+      [7572, 7722],
+      [-82, -8],
+      [-103, 26],
+      [-67, 8],
+      [-48, -29]
+    ],
+    [
+      [7172, 8522],
+      [42, -22],
+      [152, 24]
+    ],
+    [
+      [5532, 8720],
+      [146, -62],
+      [45, 15],
+      [20, 44],
+      [36, 17],
+      [11, 42],
+      [66, 21],
+      [17, 31]
+    ],
+    [
+      [6099, 8591],
+      [-28, -86],
+      [31, -16],
+      [-28, -48],
+      [12, -53],
+      [-21, -28],
+      [20, -97],
+      [-41, -185],
+      [-41, -72],
+      [-28, 8],
+      [-36, -43],
+      [82, -67],
+      [-23, -69],
+      [-49, -26],
+      [5, -27]
+    ],
+    [
+      [2460, 8567],
+      [-45, 32],
+      [-45, -14],
+      [-50, -40],
+      [-28, 48],
+      [-102, 66],
+      [4, 41],
+      [-28, 43],
+      [12, 42],
+      [-24, 62],
+      [-47, -17],
+      [-38, 22],
+      [-47, -88],
+      [-67, 33],
+      [-35, 67],
+      [86, 135]
+    ],
+    [
+      [2814, 9316],
+      [13, -115],
+      [-46, -2],
+      [-21, -26],
+      [-6, -62],
+      [52, -112],
+      [49, -60],
+      [29, -12]
+    ],
+    [
+      [4759, 9787],
+      [38, 58],
+      [14, 80],
+      [42, 54],
+      [9, 45],
+      [108, 71],
+      [62, 57],
+      [45, -79],
+      [77, -59],
+      [57, -11],
+      [30, -29],
+      [42, -3],
+      [91, 74],
+      [78, 78],
+      [51, 74],
+      [132, 5],
+      [55, -9]
+    ],
+    [
+      [5690, 10193],
+      [38, -59],
+      [43, -20],
+      [106, -26]
+    ],
+    [
+      [6336, 7435],
+      [-56, -11],
+      [-63, -45],
+      [-80, -4],
+      [-68, -76],
+      [-36, -3]
+    ],
+    [
+      [18251, 10433],
+      [13, -53],
+      [-82, -47],
+      [-133, -176],
+      [-34, 1],
+      [-82, 74],
+      [-56, 23],
+      [-45, -57]
+    ],
+    [
+      [17832, 10198],
+      [-14, -5],
+      [-179, 78],
+      [-38, 54],
+      [2, 46],
+      [-67, 74],
+      [-119, -7],
+      [-41, 34],
+      [-40, 79],
+      [-127, -9],
+      [-12, 42],
+      [-63, -3],
+      [-37, 49],
+      [15, 40]
+    ],
+    [
+      [17112, 10670],
+      [48, 3],
+      [-7, 49],
+      [49, 41],
+      [-34, 24],
+      [71, 141],
+      [73, 22],
+      [72, 167],
+      [-9, 105],
+      [11, 41]
+    ],
+    [
+      [17386, 11263],
+      [42, -24],
+      [201, 29],
+      [86, -15],
+      [22, -66],
+      [51, -10],
+      [59, -94],
+      [-4, -29],
+      [55, -45],
+      [37, 1],
+      [-10, -75],
+      [-48, -13],
+      [-9, -61],
+      [25, -39],
+      [-35, -49],
+      [44, -40],
+      [21, -87],
+      [0, -59],
+      [63, 75],
+      [26, -25],
+      [46, 28],
+      [56, -77],
+      [79, -43],
+      [58, -112]
+    ],
+    [
+      [18747, 12552],
+      [-37, 18],
+      [-23, -40],
+      [-54, -26],
+      [-59, 8],
+      [-61, -10]
+    ],
+    [
+      [18513, 12502],
+      [29, 63],
+      [-45, 20],
+      [8, 60],
+      [-81, 12],
+      [-69, -4]
+    ],
+    [
+      [18355, 12653],
+      [17, 10],
+      [-15, 227],
+      [-33, 71],
+      [27, 40],
+      [7, 72],
+      [-14, 62],
+      [-78, 17],
+      [-23, 40],
+      [-143, 3]
+    ],
+    [
+      [18275, 13700],
+      [55, 1],
+      [162, 84],
+      [26, 48],
+      [71, -32],
+      [110, -20],
+      [68, 36],
+      [11, -40],
+      [-88, -27],
+      [1, -122],
+      [76, -22],
+      [66, -63],
+      [136, 60],
+      [15, -42],
+      [41, 3],
+      [106, -44]
+    ],
+    [
+      [19131, 13520],
+      [-53, -16],
+      [61, -76],
+      [62, -23]
+    ],
+    [
+      [19201, 13405],
+      [-60, -59],
+      [-43, 17],
+      [-88, -94],
+      [22, -71],
+      [-106, -132],
+      [-70, -26],
+      [-12, -94],
+      [-53, -40],
+      [20, -54],
+      [73, -50],
+      [11, -29],
+      [-86, -38],
+      [4, -19],
+      [-106, -70],
+      [4, -54],
+      [36, -40]
+    ],
+    [
+      [18996, 10795],
+      [-19, -50],
+      [96, -27],
+      [28, -40],
+      [-61, -13],
+      [-59, -81],
+      [-62, -103],
+      [-10, -88]
+    ],
+    [
+      [18909, 10393],
+      [-67, 54],
+      [-57, 5],
+      [-38, -19],
+      [-60, 25],
+      [-6, -61],
+      [-171, 53],
+      [-80, 5],
+      [-23, -30],
+      [-108, -9],
+      [-48, 17]
+    ],
+    [
+      [17386, 11263],
+      [-45, 52],
+      [-68, 32],
+      [-11, 46],
+      [-52, 15],
+      [23, 89],
+      [22, 12],
+      [44, 79],
+      [30, 111],
+      [-34, 36],
+      [51, 55],
+      [87, 22],
+      [21, -15]
+    ],
+    [
+      [17454, 11797],
+      [79, 12],
+      [43, 85],
+      [61, 24],
+      [102, 2],
+      [26, -28],
+      [-4, -48],
+      [27, -66],
+      [55, 12],
+      [-5, 62],
+      [75, 15],
+      [158, -89],
+      [52, 9],
+      [70, 36],
+      [30, 57],
+      [96, -2],
+      [11, 58],
+      [-138, 267],
+      [259, 34]
+    ],
+    [
+      [18451, 12237],
+      [78, -130]
+    ],
+    [
+      [18529, 12107],
+      [-34, -66],
+      [-104, -140],
+      [0, -35],
+      [44, -29],
+      [13, -78],
+      [109, -27],
+      [17, -55],
+      [76, -45],
+      [-27, -51],
+      [43, -4],
+      [18, -100],
+      [55, -85],
+      [-15, -71],
+      [-86, -31],
+      [-60, 53],
+      [-26, -28],
+      [-134, 56],
+      [40, -149],
+      [-17, -18],
+      [49, -84],
+      [67, -50],
+      [55, 7],
+      [170, -51],
+      [4, 49],
+      [100, -58],
+      [-21, -65],
+      [57, -54],
+      [24, -69],
+      [50, -34]
+    ],
+    [
+      [19471, 12678],
+      [-19, -25],
+      [-62, -22],
+      [-47, -127],
+      [2, -67],
+      [-91, 25],
+      [-56, 85],
+      [-50, 7],
+      [-50, -29],
+      [-17, -79],
+      [-44, -16],
+      [-29, -54],
+      [-105, -12],
+      [21, 101],
+      [-91, 93],
+      [-86, -6]
+    ],
+    [
+      [19201, 13405],
+      [128, 11],
+      [-3, -33],
+      [103, -92],
+      [19, -67],
+      [11, -120],
+      [334, 98],
+      [7, 22],
+      [70, 9],
+      [27, -62],
+      [78, 37]
+    ],
+    [
+      [19975, 13208],
+      [-18, -46]
+    ],
+    [
+      [19957, 13162],
+      [-38, -27],
+      [-7, -55],
+      [20, -42],
+      [-147, -106],
+      [-57, -59],
+      [-149, -36],
+      [-35, -84],
+      [-66, -40],
+      [-7, -35]
+    ],
+    [
+      [18355, 12653],
+      [-35, -42],
+      [-15, -62],
+      [-149, -21],
+      [9, 43],
+      [-43, 15],
+      [-68, -2],
+      [2, -35],
+      [-105, -39],
+      [21, -66],
+      [-10, -72],
+      [-92, 50],
+      [-16, 63],
+      [-56, -31],
+      [-76, -62],
+      [-57, 49],
+      [-54, -22],
+      [-32, 21],
+      [-68, -5],
+      [-2, 100]
+    ],
+    [
+      [18639, 9565],
+      [-14, -35],
+      [-158, -75],
+      [-47, 6],
+      [-59, -46],
+      [-41, 0]
+    ],
+    [
+      [18320, 9415],
+      [-45, -1],
+      [-33, 109],
+      [-62, -22],
+      [-96, 16],
+      [-71, -55],
+      [-57, 31],
+      [-16, -32],
+      [-45, 9],
+      [-23, 63],
+      [-119, -15]
+    ],
+    [
+      [17753, 9518],
+      [-32, 22],
+      [1, 48],
+      [36, 106],
+      [-37, 87],
+      [70, 62],
+      [9, 51],
+      [58, 86],
+      [20, 61],
+      [-41, 81],
+      [-5, 76]
+    ],
+    [
+      [18909, 10393],
+      [49, -30],
+      [25, -77],
+      [-62, -37],
+      [68, -29],
+      [36, 34],
+      [84, -20]
+    ],
+    [
+      [19109, 10234],
+      [-22, -58],
+      [38, -35],
+      [-21, -49],
+      [19, -35],
+      [-110, -26],
+      [-59, 16],
+      [-2, -60],
+      [-124, 16],
+      [-112, -1],
+      [-164, -106],
+      [-18, -68],
+      [-8, -94],
+      [24, -69],
+      [84, -40],
+      [5, -60]
+    ],
+    [
+      [19625, 12270],
+      [-81, -32],
+      [45, -45],
+      [-38, -24],
+      [3, -41],
+      [-70, -5],
+      [-31, -24],
+      [3, -55],
+      [-73, -4],
+      [-3, -61],
+      [-44, -36],
+      [-10, -31],
+      [50, -14],
+      [-4, -83],
+      [61, -106],
+      [39, -23],
+      [10, -46],
+      [-58, 7],
+      [0, -114],
+      [10, -24],
+      [-117, -30],
+      [-18, -34],
+      [-37, 5]
+    ],
+    [
+      [19262, 11450],
+      [-1, 31],
+      [-102, -44],
+      [-49, 52],
+      [-8, 46],
+      [-154, 88],
+      [-22, -3],
+      [-45, 51],
+      [4, 151],
+      [15, 131],
+      [-101, 26],
+      [-31, 19],
+      [-78, 113],
+      [-2, 26],
+      [-72, 12],
+      [-36, -43],
+      [-51, 1]
+    ],
+    [
+      [18451, 12237],
+      [4, 80],
+      [37, 73],
+      [21, 112]
+    ],
+    [
+      [19471, 12678],
+      [6, -43],
+      [73, -11],
+      [53, -48],
+      [-4, -53],
+      [-46, -53],
+      [64, -120],
+      [8, -80]
+    ],
+    [
+      [19262, 11450],
+      [-48, -70],
+      [2, -81],
+      [60, -17],
+      [14, -81],
+      [60, -10]
+    ],
+    [
+      [19350, 11191],
+      [9, -61],
+      [-17, -60],
+      [34, -91],
+      [6, -71],
+      [42, -31],
+      [6, -55],
+      [-44, -10],
+      [-44, 27],
+      [-57, -2],
+      [-32, -60],
+      [-81, -54],
+      [-176, 72]
+    ],
+    [
+      [16943, 10221],
+      [10, 19],
+      [92, -14],
+      [31, 32],
+      [8, 77],
+      [-64, -8],
+      [-68, 100],
+      [7, 125],
+      [34, 82],
+      [-55, 69],
+      [174, -33]
+    ],
+    [
+      [17753, 9518],
+      [-55, -35],
+      [-94, 37],
+      [-139, 20],
+      [-50, -87],
+      [-12, -68],
+      [-50, -22],
+      [-35, -72],
+      [-94, -2],
+      [-45, -15],
+      [-85, 18],
+      [-76, -45],
+      [-120, 36],
+      [60, 144],
+      [-65, 9],
+      [-68, -42],
+      [-25, 45],
+      [-54, -24],
+      [-69, -1],
+      [-23, -37]
+    ],
+    [
+      [16606, 9742],
+      [54, 29],
+      [92, 86],
+      [31, -7],
+      [58, 45],
+      [-47, 21],
+      [18, 39],
+      [-74, 22],
+      [28, 105],
+      [124, -9],
+      [47, 19],
+      [11, 32],
+      [-14, 60],
+      [9, 37]
+    ],
+    [
+      [17454, 11797],
+      [21, 94],
+      [-60, 173],
+      [-49, 29],
+      [-49, -32],
+      [-47, 39],
+      [-63, 4]
+    ],
+    [
+      [1926, 7749],
+      [31, -8]
+    ],
+    [
+      [1957, 7741],
+      [33, -52],
+      [-31, -97],
+      [70, -36],
+      [29, -38]
+    ],
+    [
+      [2058, 7518],
+      [10, -51],
+      [-83, -68],
+      [-54, -73],
+      [9, -76],
+      [33, -8],
+      [179, 88],
+      [-7, -93],
+      [8, -41],
+      [-60, -46],
+      [-13, -72],
+      [-60, 30],
+      [-67, -35],
+      [43, -30],
+      [85, -146],
+      [-71, -17],
+      [-186, -185],
+      [-34, 5]
+    ],
+    [
+      [1790, 6700],
+      [-2, 96],
+      [-51, 119],
+      [11, 85],
+      [-52, 78],
+      [-29, 12],
+      [-6, 75],
+      [-49, 29],
+      [-21, 82],
+      [20, 88],
+      [-24, 72],
+      [-33, 21],
+      [29, 71],
+      [57, 6],
+      [-45, 76],
+      [3, 39],
+      [52, 46],
+      [-5, 79],
+      [84, -15],
+      [33, -112],
+      [52, -58],
+      [26, -7],
+      [25, 87],
+      [34, 17],
+      [27, 63]
+    ],
+    [
+      [3398, 6849],
+      [-37, 19],
+      [-61, -13],
+      [-31, -45],
+      [-91, 24],
+      [-45, 94],
+      [-105, 44],
+      [-32, 56],
+      [-112, 144],
+      [-89, 64],
+      [-2, 25],
+      [-86, 101],
+      [-41, -2],
+      [-36, 56],
+      [-33, -2],
+      [-162, 37],
+      [-19, 29],
+      [-88, -6],
+      [-10, 36],
+      [-67, 17],
+      [-76, -31],
+      [-23, 24],
+      [-63, 13],
+      [-31, -15]
+    ],
+    [
+      [1957, 7741],
+      [50, 20],
+      [24, 51],
+      [4, 50],
+      [49, 23],
+      [69, 76],
+      [47, 0],
+      [43, -25],
+      [-10, -67],
+      [18, -22],
+      [129, 64],
+      [50, 62],
+      [10, 66],
+      [-59, 42],
+      [-34, 130],
+      [5, 76],
+      [43, 74],
+      [24, -34],
+      [34, 24],
+      [34, -11],
+      [22, 42],
+      [-39, 36],
+      [12, 46]
+    ],
+    [
+      [1926, 7749],
+      [-88, 37],
+      [-36, -2],
+      [-18, 42],
+      [-103, 91],
+      [-38, -65],
+      [-9, -53],
+      [-44, -14],
+      [-59, 36],
+      [-11, 55],
+      [-66, 13],
+      [-158, -20],
+      [-104, 95],
+      [-28, -7],
+      [-59, 54],
+      [-17, 88]
+    ],
+    [
+      [1088, 8099],
+      [-5, 85],
+      [139, 106],
+      [62, -27],
+      [1, 63],
+      [36, 44],
+      [60, -3],
+      [20, 75],
+      [28, 15],
+      [68, -20],
+      [65, 26],
+      [57, -9],
+      [100, 56],
+      [94, 39],
+      [-74, 205],
+      [-60, 8],
+      [-53, 94],
+      [41, 71],
+      [-24, 88]
+    ],
+    [
+      [1790, 6700],
+      [15, -17],
+      [-49, -60],
+      [-86, -5],
+      [34, -49]
+    ],
+    [
+      [1704, 6569],
+      [-131, 23],
+      [-61, 70],
+      [-41, 23],
+      [-9, 79],
+      [11, 40],
+      [-56, 63],
+      [-63, 27]
+    ],
+    [
+      [1354, 6894],
+      [2, 55],
+      [38, -1],
+      [1, 70],
+      [-20, 35],
+      [16, 36],
+      [-27, 46],
+      [-50, -6],
+      [-75, 39],
+      [-35, -29],
+      [-41, 25],
+      [1, 144],
+      [-43, 46]
+    ],
+    [
+      [1121, 7354],
+      [26, 54],
+      [-12, 107],
+      [30, 20],
+      [26, 60],
+      [-56, 39],
+      [-23, 47],
+      [-56, 49],
+      [-24, 95],
+      [16, 65],
+      [-32, 25],
+      [37, 120],
+      [-12, 46],
+      [47, 18]
+    ],
+    [
+      [1121, 7354],
+      [-53, -2],
+      [-13, 61],
+      [-41, 17],
+      [-43, 145],
+      [16, 47],
+      [-25, 67],
+      [-62, 108],
+      [-47, -31],
+      [-50, -5],
+      [-72, -29],
+      [-18, 34],
+      [-39, -47],
+      [-33, 5],
+      [-37, 59],
+      [-41, 11],
+      [-14, 55],
+      [-88, -12],
+      [-50, 28]
+    ],
+    [
+      [411, 7865],
+      [-11, 37],
+      [55, 65],
+      [13, 49],
+      [-69, 73],
+      [49, 32],
+      [21, 92],
+      [40, 58],
+      [37, 5],
+      [20, 94],
+      [-12, 32],
+      [-42, 21],
+      [-45, 88],
+      [-64, 77],
+      [-10, 72],
+      [-63, 80],
+      [-6, 91],
+      [13, 19],
+      [95, 41],
+      [24, -8],
+      [95, 89],
+      [73, 52],
+      [-1, 66],
+      [82, 75],
+      [154, -107],
+      [-11, 71],
+      [45, 91],
+      [78, -1],
+      [61, 23],
+      [82, -100],
+      [64, 28],
+      [98, -61],
+      [64, 69],
+      [127, 24],
+      [32, -22],
+      [40, 28]
+    ],
+    [
+      [3411, 6354],
+      [-70, -24],
+      [-50, -43],
+      [-95, 1],
+      [13, 28],
+      [-30, 59],
+      [-91, -16],
+      [-42, 9],
+      [-42, 83],
+      [20, 36],
+      [-66, 55],
+      [-11, -35],
+      [-49, -56],
+      [-17, -74],
+      [4, -64],
+      [-37, -14],
+      [-55, 59],
+      [-34, 12],
+      [-85, -22]
+    ],
+    [
+      [2674, 6348],
+      [-38, 85],
+      [-53, 2],
+      [-27, 54],
+      [-48, 20],
+      [-25, -16],
+      [-47, -75],
+      [-89, 46],
+      [-43, -6],
+      [-31, -33],
+      [-84, -13],
+      [-26, -130],
+      [-19, -19],
+      [-90, 55],
+      [-28, -15]
+    ],
+    [
+      [2026, 6303],
+      [-73, -18],
+      [-50, 13],
+      [-12, 36],
+      [-70, 16],
+      [-56, -2],
+      [17, 61],
+      [-51, 48],
+      [-3, 69],
+      [-24, 43]
+    ],
+    [
+      [10080, 1078],
+      [-23, 16],
+      [-1, 59],
+      [-26, 108],
+      [-85, 86],
+      [28, 59],
+      [-24, 78],
+      [14, 23],
+      [-107, 141]
+    ],
+    [
+      [9856, 1648],
+      [79, 44],
+      [43, -13],
+      [26, 92],
+      [44, 5],
+      [-1, 122],
+      [28, 14],
+      [-12, 54],
+      [36, 76],
+      [121, 33]
+    ],
+    [
+      [10220, 2075],
+      [52, 43],
+      [28, -34],
+      [43, -15],
+      [1, -37],
+      [68, -31],
+      [19, -47]
+    ],
+    [
+      [10431, 1954],
+      [-25, -97],
+      [12, -42],
+      [66, -45],
+      [13, -68],
+      [-15, -90],
+      [40, -49]
+    ],
+    [
+      [10522, 1563],
+      [-34, -45],
+      [21, -77],
+      [-51, -19],
+      [-69, -135],
+      [-44, -15],
+      [0, -34]
+    ],
+    [
+      [10345, 1238],
+      [-49, -77],
+      [-46, -19],
+      [-25, -35],
+      [-35, 6],
+      [-83, -42],
+      [-27, 7]
+    ],
+    [
+      [6699, 1596],
+      [-9, 39],
+      [54, 142],
+      [5, 71],
+      [18, 48],
+      [48, 56],
+      [57, -4],
+      [45, 25],
+      [-16, 44],
+      [-74, -18],
+      [-41, 57],
+      [10, 102],
+      [47, 26],
+      [16, 63],
+      [32, 40],
+      [-6, 61],
+      [-40, 44],
+      [-88, 42]
+    ],
+    [
+      [6757, 2434],
+      [75, 67],
+      [26, 46],
+      [-13, 22],
+      [70, 36],
+      [-27, 43]
+    ],
+    [
+      [6888, 2648],
+      [65, -15],
+      [41, 44],
+      [87, 53],
+      [87, 78],
+      [6, -70],
+      [37, -32],
+      [62, -13],
+      [76, 2]
+    ],
+    [
+      [7349, 2695],
+      [5, -33],
+      [-21, -50],
+      [38, -79],
+      [-2, -56],
+      [77, -33],
+      [78, -4],
+      [22, -46],
+      [-14, -36],
+      [63, -82],
+      [10, -91],
+      [-30, -100],
+      [-67, -71],
+      [-2, -97],
+      [-12, -34]
+    ],
+    [
+      [7494, 1883],
+      [-84, -63],
+      [-44, -87],
+      [-65, 32],
+      [-80, -115],
+      [6, -55],
+      [-30, -38],
+      [-44, 2],
+      [-58, 77],
+      [0, 38],
+      [-41, 17],
+      [-65, -32],
+      [-108, 66],
+      [-15, 29],
+      [-98, -50],
+      [-6, -54],
+      [-63, -54]
+    ],
+    [
+      [9307, 1006],
+      [37, 57],
+      [36, 20],
+      [34, 55],
+      [5, 43],
+      [68, 76],
+      [11, 50],
+      [55, 155],
+      [42, -19],
+      [-9, 76],
+      [58, 6],
+      [15, 110],
+      [58, 23],
+      [56, 5],
+      [13, 24],
+      [70, -39]
+    ],
+    [
+      [10080, 1078],
+      [-8, -115]
+    ],
+    [
+      [10072, 963],
+      [-72, -3],
+      [-52, -49],
+      [-16, -38],
+      [-53, -8],
+      [-78, 50],
+      [-38, -9],
+      [-76, 17],
+      [12, -92],
+      [-31, -79],
+      [5, -92],
+      [-48, -44],
+      [-56, 74],
+      [-84, 36],
+      [-23, 56],
+      [-63, 30],
+      [-39, 93],
+      [-7, 82],
+      [-46, 19]
+    ],
+    [
+      [8702, 2908],
+      [-49, 30],
+      [-10, 195],
+      [-42, 67],
+      [21, 89],
+      [33, 37],
+      [-34, 95],
+      [3, 121]
+    ],
+    [
+      [8624, 3542],
+      [34, 35],
+      [43, -6],
+      [43, 35],
+      [47, 8],
+      [46, 44],
+      [59, 5],
+      [41, 57],
+      [60, -5],
+      [73, 24]
+    ],
+    [
+      [9070, 3739],
+      [123, -21],
+      [54, -24],
+      [22, -41],
+      [44, -8],
+      [45, 17],
+      [68, -32],
+      [31, -101]
+    ],
+    [
+      [9457, 3529],
+      [50, -124],
+      [39, -37],
+      [-48, -69],
+      [-56, -104],
+      [-64, -37],
+      [33, -119],
+      [60, -12],
+      [21, -75],
+      [54, 11],
+      [95, -23],
+      [-38, -101],
+      [-39, -77]
+    ],
+    [
+      [9564, 2762],
+      [-97, -69],
+      [-15, -38],
+      [-34, 6],
+      [8, -71],
+      [-45, -72],
+      [7, -26],
+      [-71, -28],
+      [-46, -87],
+      [11, -52],
+      [-105, -52],
+      [14, 38],
+      [-28, 39],
+      [-3, 88],
+      [-58, 21],
+      [-30, 47],
+      [-74, 68],
+      [-3, 28],
+      [-67, 58],
+      [-122, 124],
+      [-19, 59],
+      [-85, 65]
+    ],
+    [
+      [7922, 1600],
+      [-27, -36],
+      [-51, 47],
+      [-52, 6],
+      [-104, -71],
+      [-36, 4],
+      [-27, 61],
+      [31, 74],
+      [-58, 73],
+      [-70, 45],
+      [19, 49],
+      [-53, 31]
+    ],
+    [
+      [7349, 2695],
+      [38, 8],
+      [22, -42],
+      [117, -31],
+      [24, 57],
+      [78, 14],
+      [12, 41],
+      [-12, 68],
+      [49, 79],
+      [33, -26],
+      [40, 49]
+    ],
+    [
+      [7750, 2912],
+      [68, -35],
+      [-36, -72],
+      [15, -96],
+      [40, -54],
+      [-46, -102],
+      [8, -47],
+      [47, -65],
+      [-36, -48],
+      [51, -44],
+      [7, -47],
+      [35, -10],
+      [61, 42],
+      [23, -75],
+      [6, -88],
+      [-54, -36],
+      [-31, -89],
+      [-47, 7],
+      [-62, -32],
+      [-66, 48],
+      [-16, -40],
+      [41, -91],
+      [98, -84],
+      [24, -52],
+      [-15, -53],
+      [10, -41],
+      [46, -18],
+      [1, -90]
+    ],
+    [
+      [10690, 3106],
+      [-58, -93],
+      [-32, -96],
+      [-8, -74],
+      [35, -53],
+      [44, 18],
+      [34, -71],
+      [-33, -53]
+    ],
+    [
+      [10672, 2684],
+      [36, -137],
+      [-6, -46],
+      [44, -110],
+      [11, -65],
+      [-22, -69],
+      [33, -21],
+      [21, -90],
+      [-47, -53],
+      [-35, -2],
+      [-57, -77],
+      [-77, -47],
+      [-71, 11],
+      [-71, -24]
+    ],
+    [
+      [10220, 2075],
+      [-61, 61],
+      [-64, -60],
+      [-9, 46],
+      [-31, 29],
+      [-45, 187],
+      [77, 21],
+      [-26, 31],
+      [-86, 22],
+      [-69, 156],
+      [-13, 59]
+    ],
+    [
+      [9893, 2627],
+      [56, 35],
+      [56, -32],
+      [29, 26],
+      [29, 69],
+      [-10, 83],
+      [88, 17],
+      [101, -57],
+      [20, 46],
+      [-30, 14],
+      [-17, 127],
+      [5, 47],
+      [30, 58],
+      [7, 114]
+    ],
+    [
+      [10257, 3174],
+      [149, 187],
+      [56, -68],
+      [66, -41],
+      [9, -37],
+      [-26, -50],
+      [16, -21],
+      [66, -12],
+      [37, 31],
+      [60, -57]
+    ],
+    [
+      [11023, 895],
+      [9, -59],
+      [-71, -101],
+      [-14, -48],
+      [-40, -10],
+      [-6, -63],
+      [35, -29],
+      [85, -19],
+      [45, -49],
+      [38, -100]
+    ],
+    [
+      [11104, 417],
+      [-136, 71],
+      [-50, 2],
+      [-38, 58],
+      [15, 47],
+      [-42, 7],
+      [-69, -52],
+      [-61, 24],
+      [-66, 78],
+      [-7, 43],
+      [-78, 40],
+      [-44, -9],
+      [-88, 38],
+      [-84, 24],
+      [-46, -6],
+      [-98, 67],
+      [-45, -8],
+      [-95, 122]
+    ],
+    [
+      [10345, 1238],
+      [60, -32],
+      [95, 2],
+      [56, -37],
+      [77, -17],
+      [48, -64],
+      [91, 32],
+      [137, -43],
+      [53, 2],
+      [14, 41]
+    ],
+    [
+      [10976, 1122],
+      [73, 8],
+      [15, -91],
+      [-5, -49],
+      [-49, 3],
+      [-11, -30],
+      [24, -68]
+    ],
+    [
+      [11044, 1478],
+      [33, -95],
+      [-32, -93],
+      [4, -50],
+      [-73, -118]
+    ],
+    [
+      [10522, 1563],
+      [72, -53],
+      [15, -61],
+      [30, -34],
+      [77, 8],
+      [9, 83],
+      [44, 76],
+      [44, 38],
+      [130, -66],
+      [56, -59],
+      [45, -17]
+    ],
+    [
+      [8702, 2908],
+      [-16, -128],
+      [-53, -132],
+      [-73, -88],
+      [-34, -11],
+      [-21, -39],
+      [0, -47],
+      [-46, -50],
+      [-31, -79],
+      [-41, 41],
+      [-67, -3],
+      [-10, -53],
+      [-27, -27],
+      [-90, 39],
+      [-19, -67],
+      [41, -25],
+      [-49, -60],
+      [-22, -66],
+      [59, -15],
+      [93, 15],
+      [10, -62],
+      [-15, -74],
+      [51, -44],
+      [35, -3],
+      [62, -58],
+      [-11, -73]
+    ],
+    [
+      [8428, 1799],
+      [-59, -6],
+      [-76, -68],
+      [-7, -91],
+      [-51, -41],
+      [-32, 29],
+      [-106, 11],
+      [-34, 62],
+      [-88, -21],
+      [-53, -74]
+    ],
+    [
+      [7750, 2912],
+      [-47, 69],
+      [-6, 56],
+      [33, 139],
+      [44, 65],
+      [-9, 57],
+      [86, 91],
+      [36, 87],
+      [38, -11],
+      [38, 38],
+      [71, -1],
+      [64, 39],
+      [31, 99],
+      [61, 54]
+    ],
+    [
+      [8190, 3694],
+      [41, 34],
+      [-46, 101],
+      [-41, 21],
+      [25, 51],
+      [25, 11]
+    ],
+    [
+      [8194, 3912],
+      [35, -38],
+      [16, -56],
+      [47, 13],
+      [30, -20],
+      [78, 5],
+      [73, -16]
+    ],
+    [
+      [8473, 3800],
+      [38, -56],
+      [-6, -79],
+      [89, -63],
+      [30, -60]
+    ],
+    [
+      [9564, 2762],
+      [7, -72],
+      [39, 1],
+      [3, -42],
+      [124, -53],
+      [-14, -51],
+      [58, -53],
+      [37, 37],
+      [6, 77],
+      [69, 21]
+    ],
+    [
+      [9307, 1006],
+      [-70, 23],
+      [-40, -5],
+      [-52, 32],
+      [-30, -39],
+      [-71, 4],
+      [32, 76],
+      [-55, 14],
+      [-30, -23],
+      [-57, 6],
+      [-43, -44],
+      [-35, 20],
+      [-41, 74],
+      [7, 86],
+      [-18, 60],
+      [-88, 44],
+      [-42, 142],
+      [7, 75],
+      [-68, 140],
+      [29, 63],
+      [-75, 77],
+      [-37, 25],
+      [-60, -56],
+      [-42, -1]
+    ],
+    [
+      [17431, 4198],
+      [-32, -58],
+      [-25, 2],
+      [-54, -52],
+      [-21, -66],
+      [-100, 14],
+      [-65, 42],
+      [-43, -12],
+      [-106, 17],
+      [-23, -26],
+      [-41, 31],
+      [-83, 16],
+      [-53, 36],
+      [-18, -77],
+      [-126, -101],
+      [-99, -119]
+    ],
+    [
+      [16542, 3845],
+      [-15, 59],
+      [-61, 82],
+      [-8, 27],
+      [-69, 51],
+      [12, 84],
+      [-37, 10],
+      [-44, 67],
+      [14, 47],
+      [106, 139],
+      [-6, 108],
+      [-31, 42],
+      [-42, 18],
+      [-32, 40],
+      [27, 30],
+      [0, 49],
+      [-30, 106],
+      [56, 69],
+      [-28, 45],
+      [55, 47],
+      [-15, 62],
+      [56, 87],
+      [-77, 17],
+      [-92, -64],
+      [6, 115],
+      [-98, -19],
+      [22, -30],
+      [-31, -29],
+      [-119, 84],
+      [-60, -76],
+      [-116, 33],
+      [-55, 64],
+      [-34, -5]
+    ],
+    [
+      [15796, 5204],
+      [32, 51],
+      [-2, 81],
+      [11, 100],
+      [51, 107],
+      [111, -56],
+      [63, 11],
+      [57, -24],
+      [27, -33],
+      [46, 6],
+      [26, 57],
+      [145, 10],
+      [74, 82],
+      [86, -19],
+      [41, -30],
+      [30, 41],
+      [39, 4],
+      [5, 81],
+      [-37, 36],
+      [-16, 61],
+      [93, 44],
+      [39, -19],
+      [131, 97],
+      [65, 23],
+      [71, 8],
+      [25, -32],
+      [77, 57],
+      [156, 64]
+    ],
+    [
+      [17242, 6012],
+      [22, -119],
+      [24, -55],
+      [59, -59]
+    ],
+    [
+      [17347, 5779],
+      [-74, -33],
+      [-29, -129],
+      [-35, -73],
+      [-26, 28],
+      [-60, -59],
+      [-84, -122],
+      [35, -129],
+      [-6, -42],
+      [-40, -50],
+      [0, -52],
+      [35, -54],
+      [40, -22],
+      [-20, -41],
+      [75, -8],
+      [22, -63],
+      [42, -72],
+      [-33, -107],
+      [45, -42],
+      [-33, -67],
+      [15, -42],
+      [63, -68],
+      [-29, -48],
+      [-15, -82],
+      [107, -71],
+      [92, 29],
+      [4, -44],
+      [-35, -63],
+      [28, -55]
+    ],
+    [
+      [16572, 7469],
+      [-11, -77],
+      [47, -46],
+      [-32, -37],
+      [111, -125],
+      [13, -66],
+      [39, -28],
+      [81, 20],
+      [90, -93],
+      [4, -34],
+      [119, -1],
+      [68, -89],
+      [10, -54],
+      [-5, -121],
+      [-22, -43],
+      [72, -4],
+      [48, -33],
+      [41, 34],
+      [5, -75],
+      [17, -46],
+      [-18, -38],
+      [-102, -130],
+      [-15, 24],
+      [-93, -62],
+      [-23, -128],
+      [56, -71],
+      [53, 32],
+      [3, -84],
+      [33, -37],
+      [81, -45]
+    ],
+    [
+      [15796, 5204],
+      [-16, -48],
+      [-100, -1],
+      [-125, 67],
+      [-134, 19],
+      [-36, 50],
+      [-53, 4],
+      [-72, 46],
+      [-67, -40],
+      [-39, 65],
+      [-63, 48]
+    ],
+    [
+      [15091, 5414],
+      [-10, 36],
+      [-80, 35],
+      [26, 21],
+      [-23, 53],
+      [-8, 92],
+      [28, 60]
+    ],
+    [
+      [16070, 6705],
+      [104, -125],
+      [33, 73],
+      [99, 14],
+      [40, -17],
+      [-17, 113],
+      [23, 46],
+      [60, -19],
+      [49, 71],
+      [36, -19],
+      [74, 130],
+      [-28, 103],
+      [-31, 50],
+      [-89, -8],
+      [25, 120],
+      [-20, 70],
+      [-56, 30],
+      [-50, -27],
+      [-31, 15],
+      [-5, -92],
+      [63, -40],
+      [-39, -25],
+      [5, -56],
+      [-68, 18],
+      [-24, -52],
+      [-77, 4],
+      [-51, 33],
+      [-53, -99],
+      [-37, -23],
+      [58, -137],
+      [6, -45],
+      [-62, -70],
+      [25, -39],
+      [38, 3]
+    ],
+    [
+      [17142, 8066],
+      [18, -55],
+      [43, -16],
+      [59, -45]
+    ],
+    [
+      [17262, 7950],
+      [-15, -61],
+      [65, -88],
+      [59, -1],
+      [16, -77],
+      [30, -12],
+      [27, -88],
+      [-36, -21],
+      [17, -103],
+      [101, -80],
+      [-19, -130],
+      [121, -125],
+      [31, -21],
+      [-26, -63],
+      [61, -25],
+      [40, -49],
+      [65, 9],
+      [-45, -88],
+      [57, -13],
+      [-28, -105],
+      [23, -50],
+      [229, 14],
+      [26, -30],
+      [-1, -51],
+      [88, -37]
+    ],
+    [
+      [18148, 6655],
+      [-7, -81],
+      [-42, -35],
+      [-67, -23],
+      [-141, 3],
+      [-141, -67],
+      [-24, -39],
+      [22, -64],
+      [-26, -47],
+      [73, -3],
+      [79, -109],
+      [67, -34],
+      [-20, -28],
+      [28, -48],
+      [4, -44],
+      [-41, -71],
+      [48, -71]
+    ],
+    [
+      [17960, 5894],
+      [-56, -21],
+      [-81, 16],
+      [-24, -30],
+      [-35, 15],
+      [-100, -21],
+      [-45, -65],
+      [-2, -33],
+      [-109, -13],
+      [-26, 17],
+      [-42, 80],
+      [-34, -7],
+      [-59, -53]
+    ],
+    [
+      [18502, 4747],
+      [-39, -26],
+      [-30, 6],
+      [-82, -61],
+      [26, -58],
+      [-80, -138],
+      [-100, -5],
+      [-2, -72],
+      [13, -25],
+      [-73, -100],
+      [-34, -30],
+      [-33, 19],
+      [-86, 2],
+      [-24, -37],
+      [-31, 7],
+      [-46, -51],
+      [-121, 28],
+      [-58, -49],
+      [-34, -10],
+      [-2, -59],
+      [-59, -4],
+      [-17, 24],
+      [-51, 1],
+      [-80, 55],
+      [-28, 34]
+    ],
+    [
+      [17960, 5894],
+      [73, -68],
+      [109, 7],
+      [-3, -43],
+      [-63, -49],
+      [-4, -36],
+      [-57, -107],
+      [32, -67],
+      [59, -82],
+      [69, 3],
+      [-20, -91],
+      [-123, -57],
+      [-20, -112],
+      [31, -133],
+      [33, 3],
+      [31, -51],
+      [57, -6],
+      [22, -153],
+      [50, -44],
+      [52, 33],
+      [48, -27],
+      [82, -13],
+      [84, -54]
+    ],
+    [
+      [4153, 11255],
+      [98, -48],
+      [54, -82],
+      [86, -52],
+      [-43, -73],
+      [-29, 16],
+      [-31, -49],
+      [-138, -16],
+      [-43, -37],
+      [-46, -103],
+      [35, -65],
+      [27, 7],
+      [30, -38]
+    ],
+    [
+      [3332, 10451],
+      [9, 33],
+      [-54, 61],
+      [-2, 54],
+      [30, 87],
+      [57, 220],
+      [49, 19],
+      [59, 76],
+      [-13, 55],
+      [-80, 30],
+      [43, 144],
+      [86, 73],
+      [53, -7],
+      [74, 69],
+      [84, -16],
+      [56, 18]
+    ],
+    [
+      [3783, 11367],
+      [44, -47],
+      [34, 20],
+      [30, -49],
+      [83, -43],
+      [38, 9],
+      [141, -2]
+    ],
+    [
+      [4432, 14481],
+      [-43, -92],
+      [26, -64],
+      [34, -40],
+      [-31, -36],
+      [-176, -13],
+      [-1, -28],
+      [-68, -3],
+      [-75, 21],
+      [-6, -42],
+      [-147, 3],
+      [-85, -29],
+      [-68, -158]
+    ],
+    [
+      [3792, 14000],
+      [-45, 3],
+      [-116, -66]
+    ],
+    [
+      [3631, 13937],
+      [-52, 17],
+      [-7, -35],
+      [-41, -8],
+      [-51, 14],
+      [-49, -24],
+      [-14, -48],
+      [-29, -25],
+      [-46, 11],
+      [-10, -34],
+      [-55, 16],
+      [-13, -51],
+      [-106, 67]
+    ],
+    [
+      [3158, 13837],
+      [-30, 49],
+      [-56, 24],
+      [-219, 120],
+      [-109, -49],
+      [-43, -67]
+    ],
+    [
+      [2701, 13914],
+      [-51, 23],
+      [-154, 18],
+      [3, 36],
+      [-43, 35],
+      [-66, 2]
+    ],
+    [
+      [2390, 14028],
+      [26, 115],
+      [101, 20],
+      [80, -57],
+      [24, 44],
+      [95, -21],
+      [15, 22],
+      [-36, 40],
+      [-73, 37],
+      [-83, 8],
+      [-21, 30],
+      [0, 50]
+    ],
+    [
+      [2518, 14316],
+      [147, -27],
+      [34, -36],
+      [54, -3],
+      [276, 49],
+      [249, 116],
+      [152, 67],
+      [70, 10],
+      [83, 42],
+      [332, 13],
+      [84, -9],
+      [126, 25],
+      [109, -8],
+      [122, -58],
+      [76, -16]
+    ],
+    [
+      [1846, 11660],
+      [-123, 68],
+      [-52, 83],
+      [-47, 34],
+      [-6, 65],
+      [-82, 63]
+    ],
+    [
+      [1536, 11973],
+      [32, 61],
+      [47, 51],
+      [72, 152],
+      [8, 33],
+      [60, 44],
+      [39, 93],
+      [-2, 37],
+      [-66, 83],
+      [27, 100],
+      [82, -48],
+      [6, 61],
+      [37, 52]
+    ],
+    [
+      [1878, 12692],
+      [75, -40],
+      [37, 27]
+    ],
+    [
+      [1990, 12679],
+      [62, -31],
+      [91, 44],
+      [29, -39],
+      [17, -111],
+      [-8, -47],
+      [57, -26],
+      [93, 2],
+      [70, -34],
+      [64, -15],
+      [64, 16]
+    ],
+    [
+      [2529, 12438],
+      [52, -54],
+      [44, -133],
+      [-13, -72],
+      [69, -37],
+      [-91, -61],
+      [-1, -69],
+      [-56, -29],
+      [-76, -9],
+      [-31, -23],
+      [-61, -86],
+      [-49, -53],
+      [-130, -12],
+      [-89, -38],
+      [-100, 6],
+      [-81, -30],
+      [-70, -78]
+    ],
+    [
+      [3631, 13937],
+      [30, -16],
+      [-66, -210],
+      [124, -36],
+      [-25, -27],
+      [-23, -83],
+      [-25, 7],
+      [-22, -76],
+      [11, -78],
+      [-65, 19],
+      [-50, -23],
+      [-40, -67],
+      [-28, -140],
+      [-46, -29],
+      [-53, -5],
+      [-26, -65],
+      [-45, -14],
+      [-47, -39],
+      [5, -38]
+    ],
+    [
+      [3240, 13017],
+      [-67, 17],
+      [-22, -108],
+      [-136, -9],
+      [-12, 43],
+      [-45, 60],
+      [-175, 122],
+      [-20, -8]
+    ],
+    [
+      [2763, 13134],
+      [10, 80],
+      [46, -18],
+      [41, 113],
+      [50, 19],
+      [14, 48],
+      [53, 69],
+      [2, 48],
+      [56, 33],
+      [25, 49],
+      [80, 9],
+      [37, -29],
+      [41, 158],
+      [-52, 16],
+      [9, 31],
+      [-47, 23],
+      [30, 54]
+    ],
+    [
+      [2763, 13134],
+      [-12, -24],
+      [-108, -7],
+      [-254, -142],
+      [-87, 70]
+    ],
+    [
+      [2302, 13031],
+      [22, 63],
+      [-22, 78],
+      [14, 93],
+      [56, 71],
+      [-51, 15],
+      [-7, 26],
+      [23, 109],
+      [34, 24],
+      [134, 62],
+      [-8, 33],
+      [65, 21],
+      [1, 37],
+      [57, 5],
+      [42, -22],
+      [69, 44],
+      [28, -5],
+      [-15, 81],
+      [-43, 148]
+    ],
+    [
+      [4289, 13260],
+      [-57, -42],
+      [-64, -6],
+      [-42, -67],
+      [-69, -23],
+      [-28, -27],
+      [-5, -52],
+      [-131, -6],
+      [1, -38],
+      [-60, 1],
+      [-7, -43]
+    ],
+    [
+      [3827, 12957],
+      [-111, 5],
+      [-68, 23],
+      [-59, -8],
+      [-18, -37],
+      [-98, -8],
+      [-30, -75],
+      [-80, 44],
+      [-33, 57],
+      [-59, 20],
+      [-31, 39]
+    ],
+    [
+      [3792, 14000],
+      [170, -88],
+      [6, -88],
+      [-29, -112],
+      [99, -42],
+      [17, -29],
+      [2, -188],
+      [23, 0],
+      [23, -62],
+      [-2, -48],
+      [191, -26],
+      [-3, -57]
+    ],
+    [
+      [4675, 13036],
+      [-30, -13],
+      [-28, 41],
+      [-103, 14],
+      [-37, -15],
+      [-38, 62],
+      [-82, 63],
+      [-1, 46],
+      [-67, 1],
+      [0, 25]
+    ],
+    [
+      [4432, 14481],
+      [124, -34],
+      [113, -108],
+      [146, -82],
+      [193, -32]
+    ],
+    [
+      [5008, 14225],
+      [-17, -62],
+      [2, -91],
+      [22, -177],
+      [3, -133],
+      [-47, 18],
+      [-78, -236]
+    ],
+    [
+      [4893, 13544],
+      [-36, -7],
+      [-31, -74],
+      [26, -10],
+      [-41, -98],
+      [33, -15],
+      [-29, -70],
+      [-63, -27],
+      [-62, -85],
+      [27, -27],
+      [-42, -95]
+    ],
+    [
+      [2554, 10895],
+      [-36, 7],
+      [-55, 47],
+      [-85, 23],
+      [-80, -24],
+      [-83, 90],
+      [-48, 13],
+      [-58, 62],
+      [-89, 125],
+      [-6, 71],
+      [-40, 39],
+      [-41, 7],
+      [-24, 60],
+      [12, 58],
+      [-30, 29],
+      [-26, 57],
+      [-19, 101]
+    ],
+    [
+      [2529, 12438],
+      [-10, 29],
+      [50, 104],
+      [57, 57],
+      [66, -61],
+      [-7, -58],
+      [25, -70],
+      [75, -51],
+      [50, 10],
+      [-11, -54],
+      [33, -113],
+      [40, -26],
+      [-27, -99],
+      [1, -49],
+      [36, -25],
+      [-11, -36],
+      [-60, -85]
+    ],
+    [
+      [2836, 11911],
+      [-111, -89],
+      [-45, -7],
+      [-4, -114],
+      [-85, -75],
+      [-9, -49],
+      [55, -31],
+      [-12, -94],
+      [21, -96],
+      [-23, -21],
+      [-63, 1],
+      [-31, -69],
+      [5, -73],
+      [50, -56],
+      [-17, -39],
+      [0, -101],
+      [20, -76]
+    ],
+    [
+      [3827, 12957],
+      [-59, -131],
+      [-3, -103],
+      [-69, -21],
+      [-104, -85],
+      [-84, 46],
+      [-54, -101],
+      [170, -117],
+      [37, -3],
+      [145, -122],
+      [10, -52],
+      [35, -12],
+      [63, -74],
+      [57, 67],
+      [26, 4],
+      [81, -61],
+      [50, -5]
+    ],
+    [
+      [4128, 12187],
+      [43, -73],
+      [-16, -29],
+      [15, -83],
+      [-73, -42],
+      [-12, -72],
+      [-37, 6],
+      [-37, -130],
+      [15, -48],
+      [-76, -51],
+      [-31, -43],
+      [-8, -59],
+      [-43, -9],
+      [-63, -82]
+    ],
+    [
+      [3805, 11472],
+      [-45, 47],
+      [-35, 6],
+      [-30, 169],
+      [-71, 0],
+      [-64, 63],
+      [-44, -29],
+      [-32, 10],
+      [-58, -62],
+      [-98, 56],
+      [0, 26],
+      [-73, 30],
+      [6, 53],
+      [-106, 37],
+      [-52, -31],
+      [-67, 36],
+      [23, 76],
+      [-196, -93],
+      [-27, 45]
+    ],
+    [
+      [1990, 12679],
+      [4, 36],
+      [39, 23],
+      [36, 50],
+      [5, 75],
+      [17, 40],
+      [65, 55],
+      [43, 15],
+      [8, 34],
+      [95, 24]
+    ],
+    [
+      [3805, 11472],
+      [-27, -28],
+      [5, -77]
+    ],
+    [
+      [4675, 13036],
+      [4, -26],
+      [94, -44],
+      [85, -88],
+      [38, 18],
+      [45, -51],
+      [105, -67],
+      [-11, -49]
+    ],
+    [
+      [5035, 12729],
+      [-33, -38],
+      [-98, 27],
+      [-75, 10],
+      [-37, -34],
+      [-17, -58],
+      [-34, -39],
+      [25, -25],
+      [-62, -34],
+      [-17, 43],
+      [-67, -16],
+      [-78, -40],
+      [-81, 43],
+      [8, 16],
+      [-81, 74],
+      [-27, 10],
+      [-49, -67],
+      [-28, 19],
+      [-42, -66],
+      [-32, -101],
+      [-30, -7],
+      [-50, -100],
+      [-37, -54],
+      [27, -19],
+      [-17, -43],
+      [25, -43]
+    ],
+    [
+      [8327, 4228],
+      [-12, -28]
+    ],
+    [
+      [8315, 4200],
+      [-59, -39],
+      [-5, -99],
+      [23, -52],
+      [-24, -67],
+      [-56, -31]
+    ],
+    [
+      [8190, 3694],
+      [-39, 31],
+      [-105, -34],
+      [-94, 53],
+      [-92, -22],
+      [-70, 10],
+      [-73, 40],
+      [-36, -12],
+      [-15, 39],
+      [37, 70],
+      [-19, 54],
+      [34, 70],
+      [-47, 82],
+      [-8, 90]
+    ],
+    [
+      [7663, 4165],
+      [-17, 36],
+      [119, 97],
+      [21, 60],
+      [-8, 59],
+      [61, 56],
+      [-23, 90],
+      [23, 48],
+      [-4, 89],
+      [142, 151]
+    ],
+    [
+      [7977, 4851],
+      [83, 8],
+      [126, 27]
+    ],
+    [
+      [8186, 4886],
+      [31, -1],
+      [22, -48],
+      [60, -78]
+    ],
+    [
+      [8299, 4759],
+      [-88, -46],
+      [2, -83],
+      [-19, -96],
+      [48, -47],
+      [23, -92],
+      [-2, -79],
+      [64, -88]
+    ],
+    [
+      [6314, 5735],
+      [54, -32],
+      [66, -14],
+      [28, 10],
+      [55, -27],
+      [113, 41],
+      [120, -93],
+      [17, -53],
+      [19, -209],
+      [-50, 1],
+      [-50, -33],
+      [-48, -101],
+      [-100, -185]
+    ],
+    [
+      [6538, 5040],
+      [-61, -51],
+      [-46, -2],
+      [-18, -33],
+      [-74, -67],
+      [-187, -38],
+      [-79, -9],
+      [-60, -19],
+      [-53, -48],
+      [-113, 41],
+      [-177, -6]
+    ],
+    [
+      [5670, 4808],
+      [-25, 34],
+      [10, 92],
+      [72, 21],
+      [-7, 36],
+      [-77, 41],
+      [-30, 42],
+      [-87, 55],
+      [4, 85],
+      [38, 50]
+    ],
+    [
+      [7252, 5743],
+      [-9, -50],
+      [35, -30],
+      [66, -131],
+      [-7, -86],
+      [81, -7],
+      [-42, -111],
+      [-161, -114],
+      [18, -81],
+      [-35, 2],
+      [5, -56],
+      [-54, 3],
+      [-38, -20],
+      [-3, -78],
+      [-35, -11],
+      [-10, -144]
+    ],
+    [
+      [7063, 4829],
+      [-74, -3],
+      [-33, 33],
+      [-99, 6],
+      [-84, 95]
+    ],
+    [
+      [6773, 4960],
+      [-34, 12],
+      [-52, -21],
+      [-47, 44],
+      [-102, 45]
+    ],
+    [
+      [6317, 6332],
+      [45, -54],
+      [62, -14],
+      [28, -23],
+      [74, 11],
+      [74, -72],
+      [265, -85],
+      [42, 12],
+      [62, -68],
+      [68, -19],
+      [82, -99],
+      [63, 43],
+      [16, -25],
+      [-34, -36],
+      [30, -25],
+      [22, -96],
+      [36, -39]
+    ],
+    [
+      [6432, 3215],
+      [18, -96],
+      [141, -114],
+      [67, -35],
+      [30, -38],
+      [13, -66],
+      [-13, -27],
+      [95, -49],
+      [43, 19],
+      [32, -92],
+      [45, -40],
+      [-15, -29]
+    ],
+    [
+      [6757, 2434],
+      [-65, 50],
+      [-61, 27],
+      [27, 27],
+      [-7, 44],
+      [-50, 31],
+      [-65, 9],
+      [-60, 77]
+    ],
+    [
+      [6476, 2699],
+      [-48, 48],
+      [-13, 41],
+      [-110, 65],
+      [-30, 48],
+      [-50, 45],
+      [-53, 18],
+      [-27, 60],
+      [-50, 40],
+      [-45, 63],
+      [-55, -1],
+      [-52, -26],
+      [-62, 57],
+      [-8, 38],
+      [-62, 31]
+    ],
+    [
+      [5811, 3226],
+      [-188, 103],
+      [28, 119],
+      [-47, 42],
+      [-6, 69]
+    ],
+    [
+      [5598, 3559],
+      [37, 92]
+    ],
+    [
+      [5635, 3651],
+      [59, 19],
+      [78, -78],
+      [5, -38],
+      [46, -70],
+      [54, -12],
+      [37, -41],
+      [78, 4],
+      [50, 36],
+      [18, 39],
+      [40, 18],
+      [105, -158],
+      [55, -12],
+      [18, -49],
+      [38, -47],
+      [36, -5],
+      [38, -39],
+      [42, -3]
+    ],
+    [
+      [7663, 4165],
+      [-149, -40],
+      [-80, 36],
+      [22, 29],
+      [-92, 51],
+      [-72, 22],
+      [-36, 35],
+      [0, 78]
+    ],
+    [
+      [7256, 4376],
+      [25, 24],
+      [24, 135]
+    ],
+    [
+      [7305, 4535],
+      [17, 17],
+      [162, 84],
+      [57, 77],
+      [21, 76],
+      [-6, 31],
+      [28, 88],
+      [48, -13],
+      [100, 102],
+      [51, 27],
+      [34, -13],
+      [51, -80],
+      [36, -81],
+      [73, 1]
+    ],
+    [
+      [6432, 3215],
+      [0, 61],
+      [43, 114],
+      [40, 25],
+      [30, 54],
+      [-18, 20],
+      [45, 141]
+    ],
+    [
+      [6572, 3630],
+      [120, 23],
+      [80, -31],
+      [17, 33],
+      [-5, 62],
+      [54, 66],
+      [40, 24],
+      [45, -15],
+      [44, -58],
+      [30, 49],
+      [-9, 74],
+      [93, 75],
+      [-61, 52],
+      [-45, 72],
+      [-7, 37],
+      [34, 34],
+      [160, -7],
+      [8, 17],
+      [-99, 52],
+      [24, 51],
+      [100, -12],
+      [13, 31],
+      [-29, 65],
+      [48, 19],
+      [29, 33]
+    ],
+    [
+      [7420, 6116],
+      [46, -53],
+      [63, -24],
+      [-27, -59],
+      [83, -67],
+      [8, -42],
+      [-20, -79],
+      [-53, 9],
+      [-50, -73],
+      [-69, 31],
+      [-149, -16]
+    ],
+    [
+      [6724, 6760],
+      [63, -34],
+      [9, -34],
+      [52, -51],
+      [92, 1],
+      [84, -73],
+      [27, -5],
+      [21, -49],
+      [97, -84],
+      [-24, -47],
+      [56, -100],
+      [4, -44],
+      [117, -84],
+      [42, -46],
+      [56, 6]
+    ],
+    [
+      [6773, 4960],
+      [-34, -88],
+      [14, -73],
+      [-51, -10],
+      [-29, -100],
+      [14, -53],
+      [-17, -110],
+      [1, -75],
+      [64, -23],
+      [-10, -51],
+      [-86, -78],
+      [-9, -95],
+      [-46, -139],
+      [-78, -42],
+      [-31, -96],
+      [13, -89],
+      [0, -90],
+      [54, -57],
+      [30, -61]
+    ],
+    [
+      [5635, 3651],
+      [-44, 8],
+      [0, 58],
+      [-36, 91],
+      [-54, 54],
+      [56, 181],
+      [-39, 80]
+    ],
+    [
+      [5518, 4123],
+      [-13, 53],
+      [30, 58],
+      [70, 39],
+      [8, 44],
+      [51, 38],
+      [43, 53],
+      [70, 38],
+      [-11, 50],
+      [-105, 60],
+      [1, 104],
+      [30, 93],
+      [-22, 55]
+    ],
+    [
+      [8120, 7334],
+      [-24, -22],
+      [33, -61],
+      [-6, -55],
+      [-55, -73],
+      [-104, -111],
+      [-1, -69],
+      [30, -35],
+      [15, -68],
+      [76, -6],
+      [86, -58],
+      [-26, -87],
+      [35, -12],
+      [32, -63],
+      [-14, -14]
+    ],
+    [
+      [8197, 6600],
+      [-41, -27],
+      [-13, -49],
+      [6, -55],
+      [69, -37],
+      [-35, -55],
+      [10, -56],
+      [-10, -46]
+    ],
+    [
+      [8183, 6275],
+      [-14, -47],
+      [-38, -14],
+      [-103, 71],
+      [-30, 4],
+      [-42, 57],
+      [-123, -35],
+      [-19, 36],
+      [-75, -14]
+    ],
+    [
+      [7739, 6333],
+      [-23, 36],
+      [-93, 98],
+      [-39, 66],
+      [22, 47],
+      [126, 6],
+      [87, 90],
+      [-34, 48],
+      [-16, 56],
+      [-129, -5],
+      [-101, 80],
+      [4, 59],
+      [-22, 101],
+      [1, 58],
+      [48, 108],
+      [-22, 35],
+      [83, 122],
+      [56, 40],
+      [26, 101],
+      [-10, 23]
+    ],
+    [
+      [8183, 6275],
+      [123, -112],
+      [-8, -31],
+      [73, -78],
+      [-19, -98],
+      [-39, -39],
+      [-35, 25],
+      [-35, -56],
+      [74, -65],
+      [16, -31],
+      [-8, -52],
+      [64, -12],
+      [-1, -74],
+      [30, -132]
+    ],
+    [
+      [8418, 5520],
+      [-20, -208],
+      [30, -51],
+      [74, 2],
+      [2, -96],
+      [68, -13],
+      [0, -59]
+    ],
+    [
+      [8572, 5095],
+      [-93, -25],
+      [-82, -46],
+      [2, 40],
+      [-82, 5],
+      [-85, -71],
+      [-27, -50],
+      [-44, -1],
+      [25, -61]
+    ],
+    [
+      [7305, 4535],
+      [-109, 55],
+      [-42, 84],
+      [-4, 39],
+      [-67, 41],
+      [-20, 75]
+    ],
+    [
+      [7420, 6116],
+      [-10, 35],
+      [24, 61],
+      [72, 30],
+      [48, -20],
+      [9, -29],
+      [77, 34],
+      [12, 61],
+      [28, 50],
+      [59, -5]
+    ],
+    [
+      [17869, 14261],
+      [41, 56],
+      [57, 7],
+      [128, 134],
+      [24, -46],
+      [57, 13],
+      [-29, 43],
+      [-56, 8],
+      [-6, 117],
+      [9, 72],
+      [-114, 7],
+      [-45, -17],
+      [-28, 83],
+      [119, 9],
+      [18, 107],
+      [32, 35]
+    ],
+    [
+      [18076, 14889],
+      [52, -42],
+      [55, 48],
+      [39, -50],
+      [170, 59],
+      [29, 88],
+      [106, 47],
+      [56, -29]
+    ],
+    [
+      [18583, 15010],
+      [39, -63],
+      [51, 17],
+      [39, -64],
+      [-11, -37],
+      [25, -66],
+      [105, 29],
+      [17, 23],
+      [99, 1],
+      [72, -33]
+    ],
+    [
+      [19019, 14817],
+      [122, -81],
+      [39, -58],
+      [-25, -56],
+      [-65, -110],
+      [113, 25],
+      [31, -107],
+      [81, 0],
+      [36, -12],
+      [38, -141]
+    ],
+    [
+      [19389, 14277],
+      [-59, -44],
+      [-8, -73],
+      [-53, 0],
+      [-81, -175],
+      [-42, 31],
+      [-55, -61],
+      [0, -157],
+      [-39, -40],
+      [64, -85],
+      [22, 0],
+      [45, -59],
+      [2, -100],
+      [-54, 6]
+    ],
+    [
+      [16878, 14658],
+      [18, 58],
+      [204, 49],
+      [2, 44],
+      [-35, 48],
+      [24, 66],
+      [50, 21],
+      [29, 132],
+      [-63, 21],
+      [9, 36],
+      [129, -42],
+      [56, 101],
+      [0, 44],
+      [-30, 14],
+      [1, 139],
+      [26, 97],
+      [46, -13],
+      [58, 83],
+      [-40, 122],
+      [26, 31],
+      [9, 62],
+      [-24, 65]
+    ],
+    [
+      [17373, 15836],
+      [315, 195],
+      [88, 29]
+    ],
+    [
+      [17776, 16060],
+      [-15, -60],
+      [-3, -110],
+      [-24, -20],
+      [108, -184],
+      [129, -61],
+      [20, -46],
+      [-52, -23],
+      [-7, -65],
+      [-26, -53],
+      [50, -80],
+      [-56, -75],
+      [96, 0],
+      [1, -120],
+      [80, -50],
+      [-5, -56],
+      [25, -10],
+      [-5, -68],
+      [-46, -46],
+      [30, -44]
+    ],
+    [
+      [15864, 15098],
+      [-9, 122],
+      [-28, 33],
+      [10, 60],
+      [51, 6],
+      [43, 34],
+      [12, 86],
+      [-46, 29],
+      [-79, 4],
+      [-20, 68],
+      [-60, 18],
+      [5, 43]
+    ],
+    [
+      [15743, 15601],
+      [85, 25],
+      [168, -39],
+      [88, -12],
+      [152, 55],
+      [175, 55],
+      [82, 4],
+      [172, -24],
+      [87, 34],
+      [193, 37],
+      [55, 45],
+      [87, 29],
+      [93, -19],
+      [193, 45]
+    ],
+    [
+      [19975, 15484],
+      [-8, -10],
+      [1, -186],
+      [-73, -50],
+      [-34, -96]
+    ],
+    [
+      [19861, 15142],
+      [-30, 41],
+      [-91, -60],
+      [-60, -15],
+      [-85, 7],
+      [-21, 82],
+      [-23, 20],
+      [30, 58],
+      [-18, 37],
+      [-37, -16],
+      [-50, 34],
+      [-5, 38],
+      [-44, 21],
+      [-60, -23],
+      [36, -49],
+      [-299, -164],
+      [-30, -109],
+      [-10, -77],
+      [-27, -34],
+      [-18, -116]
+    ],
+    [
+      [18583, 15010],
+      [52, 74],
+      [-59, 57],
+      [39, 69],
+      [-46, 72],
+      [-39, 13],
+      [9, 59],
+      [25, 16],
+      [-15, 59],
+      [-80, 45],
+      [82, 139],
+      [-63, 81],
+      [-192, 10],
+      [-17, 224],
+      [15, 35],
+      [15, 125],
+      [-18, 60]
+    ],
+    [
+      [18291, 16148],
+      [50, 24],
+      [115, 16],
+      [35, -39],
+      [93, -22],
+      [111, 27],
+      [104, 14],
+      [117, -48],
+      [80, -63],
+      [171, -23],
+      [52, 9],
+      [110, 47],
+      [32, -21],
+      [24, -71],
+      [-28, -59],
+      [56, -134],
+      [256, -92],
+      [57, -110],
+      [113, -147],
+      [136, 28]
+    ],
+    [
+      [19861, 15142],
+      [-17, -48],
+      [37, -177],
+      [-72, -58],
+      [6, -102],
+      [-28, -81],
+      [35, -107]
+    ],
+    [
+      [19822, 14569],
+      [1, -53],
+      [-86, -138],
+      [-81, -23],
+      [-33, 15],
+      [-78, -25],
+      [-28, -52],
+      [-79, 7],
+      [-49, -23]
+    ],
+    [
+      [21004, 15316],
+      [-145, -44],
+      [-67, -59],
+      [48, -106],
+      [-66, -34],
+      [-6, -65],
+      [-49, 3],
+      [-29, -41],
+      [21, -37],
+      [40, 0],
+      [-10, -69],
+      [-108, -50],
+      [-33, -46]
+    ],
+    [
+      [20600, 14768],
+      [-66, 120],
+      [-37, 31],
+      [-92, 11],
+      [-7, -72],
+      [-46, -33],
+      [6, -56],
+      [27, -30],
+      [-61, -59],
+      [-8, -89],
+      [-66, -89],
+      [-73, -8],
+      [-16, 46],
+      [-34, -6],
+      [-77, 136],
+      [-34, -64],
+      [-100, -66],
+      [-39, 30],
+      [-55, -1]
+    ],
+    [
+      [19975, 15484],
+      [137, 28],
+      [564, -57],
+      [123, 199],
+      [119, -102],
+      [86, -236]
+    ],
+    [
+      [17776, 16060],
+      [124, 69],
+      [86, -5],
+      [159, 18],
+      [70, -12],
+      [76, 18]
+    ],
+    [
+      [12128, 9287],
+      [-28, -55],
+      [81, -59],
+      [-37, -16],
+      [-32, -82],
+      [-44, -21],
+      [3, -85],
+      [-16, -52],
+      [-62, 10],
+      [-17, -33],
+      [33, -34],
+      [-22, -54],
+      [4, -89],
+      [13, -21],
+      [98, -46],
+      [6, -158]
+    ],
+    [
+      [12108, 8492],
+      [1, -66],
+      [-45, -83],
+      [-22, -4],
+      [-57, 54],
+      [-52, -26],
+      [-71, 16],
+      [-43, -22],
+      [-69, 31],
+      [-8, 34],
+      [-67, 7],
+      [-27, 37],
+      [-104, -15],
+      [-63, 52],
+      [-39, -4],
+      [-25, -65],
+      [-36, -49],
+      [-88, 56],
+      [-24, 87],
+      [-40, 70],
+      [-126, 45]
+    ],
+    [
+      [11103, 8647],
+      [-4, 42],
+      [-41, 76],
+      [24, 97],
+      [-15, 77],
+      [-36, 42],
+      [9, 70],
+      [-89, 41],
+      [-31, -4],
+      [-86, 45],
+      [27, 77],
+      [1, 87],
+      [-31, 38],
+      [-6, 52],
+      [48, 5],
+      [30, 70],
+      [31, -26],
+      [50, 52],
+      [-5, 40],
+      [-56, 168],
+      [33, 7],
+      [5, 42],
+      [-58, 7],
+      [4, 39],
+      [87, -9],
+      [75, 28],
+      [56, -67],
+      [77, -20],
+      [51, -50],
+      [136, -8],
+      [89, 74],
+      [62, -11]
+    ],
+    [
+      [11540, 9728],
+      [10, -59],
+      [45, -54],
+      [44, -16],
+      [15, 37],
+      [154, 1],
+      [46, -35],
+      [170, 58],
+      [45, -74],
+      [22, -57],
+      [-26, -21],
+      [1, -57],
+      [-27, -17],
+      [37, -121],
+      [52, -26]
+    ],
+    [
+      [11766, 10115],
+      [5, -36],
+      [-56, -141],
+      [-50, -17],
+      [-18, -79],
+      [-36, -18],
+      [-51, 8],
+      [-20, -104]
+    ],
+    [
+      [11103, 8647],
+      [-27, -41],
+      [-147, -121],
+      [-130, -7],
+      [-93, -89],
+      [-34, 21],
+      [-78, 12],
+      [-73, 73],
+      [-24, -57],
+      [-41, -16]
+    ],
+    [
+      [10456, 8422],
+      [3, 43]
+    ],
+    [
+      [10459, 8465],
+      [-6, 50]
+    ],
+    [
+      [10453, 8515],
+      [26, 66],
+      [-40, 77],
+      [-10, 100],
+      [-51, 44],
+      [-53, 96],
+      [-1, 102],
+      [-69, 23],
+      [-4, 33],
+      [20, 82],
+      [-95, 28],
+      [-135, -45],
+      [-28, 65],
+      [-65, 59],
+      [-20, 89]
+    ],
+    [
+      [9928, 9334],
+      [28, 110],
+      [-65, 76],
+      [10, 19],
+      [-13, 128],
+      [30, 239]
+    ],
+    [
+      [9918, 9906],
+      [45, -7],
+      [41, 43],
+      [204, 53],
+      [0, 18],
+      [-74, 22],
+      [36, 74],
+      [-60, 36],
+      [-33, 50],
+      [29, 52],
+      [-14, 26],
+      [-15, 131],
+      [38, 52],
+      [130, 28],
+      [37, 90],
+      [10, 108],
+      [-37, 49],
+      [-30, 117],
+      [16, 52],
+      [51, -14]
+    ],
+    [
+      [10292, 10886],
+      [54, 14],
+      [71, -18],
+      [34, -53],
+      [45, -14],
+      [204, -4]
+    ],
+    [
+      [10700, 10811],
+      [-10, -21],
+      [18, -78],
+      [63, -79],
+      [139, -22],
+      [-11, -59],
+      [-34, -62],
+      [-46, -36],
+      [31, -46],
+      [0, -61],
+      [36, -32],
+      [30, 39],
+      [76, 22],
+      [2, 29],
+      [58, -3],
+      [43, -22],
+      [83, 28],
+      [98, -51],
+      [164, 30],
+      [61, 47]
+    ],
+    [
+      [11501, 10434],
+      [83, 1]
+    ],
+    [
+      [11584, 10435],
+      [2, -44],
+      [40, -31],
+      [-16, -138],
+      [-17, -8],
+      [4, -76],
+      [86, 0],
+      [83, -23]
+    ],
+    [
+      [12818, 8635],
+      [-34, -25],
+      [-12, -55],
+      [20, -18],
+      [82, -15],
+      [-15, -37],
+      [-63, -50],
+      [39, -16]
+    ],
+    [
+      [12835, 8419],
+      [-55, -3],
+      [-46, 23],
+      [-106, 95],
+      [-14, -42],
+      [-38, 5],
+      [-36, -50],
+      [-64, 53],
+      [-96, 19],
+      [-112, -62]
+    ],
+    [
+      [12268, 8457],
+      [-24, 45],
+      [-136, -10]
+    ],
+    [
+      [12128, 9287],
+      [71, -28],
+      [32, 11],
+      [-1, 116],
+      [62, -20],
+      [33, -33],
+      [124, -29],
+      [41, 66],
+      [71, 2],
+      [36, 44]
+    ],
+    [
+      [12597, 9416],
+      [22, -3],
+      [-7, -87],
+      [76, 12],
+      [53, -22],
+      [57, 35],
+      [30, -74],
+      [-45, -19],
+      [-12, -39],
+      [-41, -45],
+      [59, -22],
+      [-2, -52],
+      [40, -98],
+      [-27, -47],
+      [12, -39],
+      [-59, -46],
+      [-25, -46],
+      [69, -105],
+      [0, -51],
+      [21, -33]
+    ],
+    [
+      [11766, 10115],
+      [87, -7],
+      [62, 17],
+      [20, -52],
+      [63, -19],
+      [115, 15],
+      [55, 48],
+      [83, 11],
+      [33, -79],
+      [33, 4],
+      [67, -23],
+      [153, 20],
+      [42, -89],
+      [160, -33],
+      [1, -28],
+      [-51, -61],
+      [-16, -64],
+      [-39, -20],
+      [-15, -67],
+      [-46, -25],
+      [14, -81],
+      [-7, -47],
+      [19, -49],
+      [-23, -37],
+      [21, -33]
+    ],
+    [
+      [13659, 2745],
+      [31, -4],
+      [43, 40],
+      [83, -10],
+      [86, 8],
+      [44, -23],
+      [56, 39],
+      [67, -5],
+      [30, -50],
+      [25, 9]
+    ],
+    [
+      [14124, 2749],
+      [44, -46],
+      [-15, -49],
+      [71, -159],
+      [6, -89],
+      [-69, -74],
+      [1, -75],
+      [47, -50],
+      [24, 1],
+      [44, -71]
+    ],
+    [
+      [14277, 2137],
+      [-28, 4],
+      [-32, -90],
+      [-33, -144],
+      [-30, -24],
+      [-94, 10],
+      [-57, -55],
+      [-38, -9],
+      [-50, 24],
+      [-31, 54],
+      [-26, 75],
+      [-85, 77],
+      [-69, 43]
+    ],
+    [
+      [13704, 2102],
+      [-24, 63],
+      [-19, 145],
+      [-104, 15],
+      [-39, 37],
+      [-58, -38],
+      [-16, 23]
+    ],
+    [
+      [13444, 2347],
+      [-23, 16],
+      [-38, 78],
+      [-73, 14],
+      [-1, 47],
+      [-51, 96],
+      [-41, 0],
+      [29, 126],
+      [55, 12],
+      [175, -12],
+      [83, 14],
+      [21, -9],
+      [79, 16]
+    ],
+    [
+      [12013, 4181],
+      [-76, 54],
+      [-38, 4],
+      [-65, -24],
+      [-46, -34],
+      [-28, 45],
+      [-113, -86]
+    ],
+    [
+      [11647, 4140],
+      [-33, 82],
+      [12, 96],
+      [-66, 184],
+      [51, 95],
+      [28, -8],
+      [22, 67],
+      [75, 34],
+      [28, 87],
+      [4, 115]
+    ],
+    [
+      [11768, 4892],
+      [124, -53],
+      [63, 7],
+      [41, -46],
+      [86, -46],
+      [1, 54],
+      [75, 10],
+      [15, 57],
+      [26, 7],
+      [32, 62],
+      [3, 89],
+      [-34, 51],
+      [1, 68],
+      [49, 17],
+      [50, -12],
+      [55, 58],
+      [84, 23],
+      [21, -59],
+      [103, -49],
+      [126, 66],
+      [34, 143]
+    ],
+    [
+      [12723, 5339],
+      [73, 35]
+    ],
+    [
+      [12796, 5374],
+      [81, -109],
+      [-35, -49],
+      [-15, -212],
+      [34, -40],
+      [45, 1],
+      [37, 48],
+      [118, 34],
+      [28, -27],
+      [63, -7],
+      [24, -42],
+      [-4, -41],
+      [56, -17],
+      [18, -50],
+      [-3, -67],
+      [69, -163],
+      [89, -18],
+      [-21, -42],
+      [23, -26]
+    ],
+    [
+      [13403, 4547],
+      [29, 3],
+      [-21, -189],
+      [-32, -37]
+    ],
+    [
+      [13379, 4324],
+      [-105, 38],
+      [-37, 104],
+      [-61, -64],
+      [-39, -85],
+      [-33, -20],
+      [-11, -41],
+      [-119, -60],
+      [-43, 35],
+      [-170, -81],
+      [-95, 15],
+      [-12, -42],
+      [-49, 12],
+      [-15, 26],
+      [-106, 17],
+      [-57, 69],
+      [-38, -19],
+      [-94, 42],
+      [-62, -11],
+      [-22, -45],
+      [-61, -22],
+      [-59, 2],
+      [-18, -17],
+      [-60, 4]
+    ],
+    [
+      [14277, 2137],
+      [54, -45],
+      [33, 9],
+      [63, 180],
+      [56, 25],
+      [8, -30],
+      [64, -13],
+      [28, -65],
+      [72, 63]
+    ],
+    [
+      [14655, 2261],
+      [32, 7],
+      [6, -62],
+      [24, -28],
+      [87, -15],
+      [26, 35],
+      [45, 12],
+      [2, -104],
+      [36, -38],
+      [10, -60],
+      [-10, -226],
+      [18, -11],
+      [96, 7],
+      [8, -13],
+      [25, -180],
+      [-51, -94],
+      [-4, -61],
+      [-52, -25],
+      [-7, -77],
+      [73, -54],
+      [102, -148],
+      [-44, 5],
+      [-65, -35],
+      [-52, -68],
+      [20, -74],
+      [-29, -51],
+      [6, -36],
+      [-31, -25],
+      [-14, -56],
+      [-43, -8],
+      [-15, -112],
+      [-127, 10],
+      [-76, -64],
+      [-51, 27],
+      [-57, -20],
+      [-65, 22],
+      [-25, -24],
+      [-80, -9],
+      [-27, -35],
+      [-15, -66],
+      [-33, 0],
+      [-56, -44],
+      [-111, 10]
+    ],
+    [
+      [14131, 473],
+      [-25, 110],
+      [7, 56],
+      [-43, 55],
+      [33, 68],
+      [-126, -34],
+      [-24, 32],
+      [67, 97],
+      [-60, -18],
+      [-42, 42],
+      [-99, -6],
+      [-58, 21],
+      [-71, -2],
+      [-25, 73],
+      [-33, 17],
+      [-10, 131],
+      [87, 97],
+      [38, 9],
+      [52, 76],
+      [-42, 38],
+      [-25, 50],
+      [-34, -39],
+      [-55, 43],
+      [-12, 63],
+      [-37, 52],
+      [-69, 20],
+      [-20, 55],
+      [-60, 8],
+      [-46, 29],
+      [-29, 62],
+      [15, 42],
+      [101, -27],
+      [-15, 70],
+      [39, 118],
+      [-9, 74],
+      [32, -12],
+      [137, 97],
+      [34, 62]
+    ],
+    [
+      [13412, 4011],
+      [57, 3],
+      [19, -61],
+      [65, -29],
+      [78, -10],
+      [-8, -62],
+      [-43, -4],
+      [15, -116],
+      [18, -53],
+      [-67, -8],
+      [12, -39],
+      [83, -36],
+      [46, 0],
+      [39, -21],
+      [36, -64],
+      [-58, -37],
+      [-17, -81],
+      [33, -50],
+      [-26, -25],
+      [11, -37],
+      [-68, -23],
+      [-30, 16],
+      [-50, -26],
+      [-45, 48],
+      [-104, 46],
+      [-42, 8],
+      [-48, -37],
+      [-11, -56],
+      [-56, -87]
+    ],
+    [
+      [13251, 3170],
+      [-69, 1],
+      [-26, -16],
+      [-109, -1],
+      [-26, 91],
+      [-35, 78],
+      [-9, 62],
+      [-82, -45],
+      [-55, -5],
+      [12, -98],
+      [-59, -85],
+      [-97, 15],
+      [-14, -46],
+      [21, -21],
+      [-44, -78],
+      [-16, 22],
+      [-60, -73],
+      [9, -67]
+    ],
+    [
+      [12592, 2904],
+      [-45, 9],
+      [-27, -33],
+      [-78, 28],
+      [-7, 55],
+      [-53, 14],
+      [-77, -44],
+      [-73, 66],
+      [-30, 61],
+      [-68, 47],
+      [-25, -17],
+      [-54, 16],
+      [-56, -25]
+    ],
+    [
+      [11999, 3081],
+      [-32, 31],
+      [-48, 101],
+      [-8, 100],
+      [-43, 61],
+      [-27, 1]
+    ],
+    [
+      [11841, 3375],
+      [-31, 55],
+      [10, 32],
+      [-58, 78],
+      [103, -46],
+      [14, 18],
+      [78, 14],
+      [71, 68],
+      [-19, 54],
+      [-41, 61],
+      [26, 30],
+      [4, 49],
+      [89, 71],
+      [-26, 130],
+      [-106, 137],
+      [47, 15],
+      [11, 40]
+    ],
+    [
+      [13379, 4324],
+      [3, -73],
+      [-27, -39],
+      [48, -36],
+      [-17, -50],
+      [-35, 11],
+      [15, -114],
+      [46, -12]
+    ],
+    [
+      [11841, 3375],
+      [-40, 0],
+      [-38, -63],
+      [40, -15],
+      [-41, -49],
+      [-63, -15],
+      [-35, 48],
+      [-26, -28],
+      [-12, -59],
+      [-77, -39],
+      [-31, 74],
+      [-118, 62],
+      [3, 36],
+      [-63, -2],
+      [-34, 24],
+      [29, 105],
+      [-82, 67],
+      [-14, 54],
+      [18, 100]
+    ],
+    [
+      [11257, 3675],
+      [129, 6],
+      [47, 51],
+      [22, 100],
+      [66, 113],
+      [64, 22],
+      [26, 50],
+      [-10, 31],
+      [47, 30],
+      [-30, 39],
+      [29, 23]
+    ],
+    [
+      [13251, 3170],
+      [75, -52],
+      [-10, -39],
+      [45, -14],
+      [7, -35],
+      [144, -6],
+      [36, -33],
+      [17, -74],
+      [45, -94],
+      [31, -28],
+      [18, -50]
+    ],
+    [
+      [13444, 2347],
+      [-62, -44],
+      [-43, -75],
+      [-6, -62],
+      [-28, -25],
+      [-92, -46],
+      [-73, 51],
+      [-93, 21],
+      [-63, -72],
+      [-42, -18],
+      [-31, 66],
+      [-63, 21],
+      [-46, -17],
+      [-44, 23],
+      [20, 53],
+      [-11, 39]
+    ],
+    [
+      [12767, 2262],
+      [79, 82],
+      [43, 33],
+      [52, 138],
+      [-3, 35],
+      [-53, 78],
+      [-5, 132],
+      [-96, 52],
+      [-65, 47],
+      [6, 71],
+      [-111, -33],
+      [-22, 7]
+    ],
+    [
+      [16542, 3845],
+      [39, -77],
+      [52, -54],
+      [-64, -85]
+    ],
+    [
+      [16569, 3629],
+      [-71, -13],
+      [-60, -46],
+      [-70, -3],
+      [-51, 118],
+      [-58, 0],
+      [-20, -53],
+      [-40, 0],
+      [-55, 38],
+      [55, 91],
+      [-5, 35],
+      [-44, 80],
+      [35, 150],
+      [-125, 103],
+      [-28, -25],
+      [-98, 73],
+      [-22, -6],
+      [-58, -78],
+      [32, -66],
+      [59, -24],
+      [5, -65],
+      [-47, 5],
+      [-78, -42],
+      [-40, 4],
+      [-14, 42],
+      [-9, 128],
+      [-34, 89],
+      [-111, 66],
+      [-22, 33],
+      [-73, 47],
+      [-23, -24],
+      [-88, -14],
+      [-64, -46]
+    ],
+    [
+      [15347, 4226],
+      [-56, 37],
+      [-46, -11],
+      [-40, 28],
+      [-47, 7],
+      [-36, 36],
+      [-51, -6],
+      [-97, 45],
+      [-43, 50],
+      [-12, 50]
+    ],
+    [
+      [14919, 4462],
+      [14, 64],
+      [16, 172],
+      [-66, 91],
+      [-26, 124],
+      [17, 203]
+    ],
+    [
+      [14874, 5116],
+      [21, 48],
+      [51, 8],
+      [46, 38],
+      [-9, 45],
+      [8, 75],
+      [75, 46],
+      [25, 38]
+    ],
+    [
+      [14609, 2637],
+      [-60, 48],
+      [-84, -10],
+      [-37, 35],
+      [4, 67],
+      [44, 32],
+      [-9, 40],
+      [32, 126],
+      [79, 77],
+      [65, 4],
+      [126, 43],
+      [65, -20],
+      [82, 60],
+      [23, 48],
+      [-86, 29],
+      [-51, 91],
+      [71, 72],
+      [22, 65],
+      [110, 97],
+      [6, 97],
+      [55, 0],
+      [19, -28],
+      [75, 22],
+      [34, 181],
+      [-35, 71],
+      [-12, 62]
+    ],
+    [
+      [15147, 3946],
+      [140, 142],
+      [61, -12],
+      [21, 107],
+      [-22, 43]
+    ],
+    [
+      [16569, 3629],
+      [43, -53],
+      [4, -33],
+      [-58, -30],
+      [-5, -66],
+      [-46, -36],
+      [-55, -138],
+      [-452, -3],
+      [-215, -12],
+      [-103, -208],
+      [-8, -68],
+      [-28, -43],
+      [-22, -84],
+      [1, -63],
+      [69, -68],
+      [47, -76],
+      [-109, 24],
+      [-72, -33],
+      [-70, 7],
+      [-74, 22],
+      [-109, 59],
+      [-54, 71],
+      [-25, 16],
+      [-54, -52],
+      [-87, 25],
+      [-88, 70],
+      [-113, -72],
+      [-44, -11],
+      [-43, -36],
+      [-23, -76],
+      [-105, 18],
+      [-62, -43]
+    ],
+    [
+      [14413, 4476],
+      [-98, -60],
+      [-74, 41],
+      [-28, -61],
+      [-63, -81],
+      [-33, -19],
+      [-113, -2],
+      [-62, 27],
+      [-55, -25],
+      [16, -61],
+      [-32, -37],
+      [-64, -10],
+      [-36, -36],
+      [-59, -25],
+      [-66, 47],
+      [-57, -23],
+      [-132, -6],
+      [-49, -46],
+      [4, -88]
+    ],
+    [
+      [13403, 4547],
+      [66, 27],
+      [41, 91],
+      [48, 15],
+      [12, 40]
+    ],
+    [
+      [13570, 4720],
+      [93, -13],
+      [25, 25],
+      [48, 92],
+      [-18, 42],
+      [28, 42],
+      [-6, 37],
+      [54, 37],
+      [57, 3],
+      [0, -97],
+      [42, -6],
+      [36, 43],
+      [36, 14],
+      [62, -81],
+      [76, -22],
+      [38, 7],
+      [92, -48],
+      [166, -197],
+      [14, -122]
+    ],
+    [
+      [14609, 2637],
+      [-37, -62],
+      [-1, -53],
+      [15, -145],
+      [21, -60],
+      [48, -56]
+    ],
+    [
+      [14124, 2749],
+      [-27, 172],
+      [32, 122],
+      [26, 7],
+      [63, 60],
+      [-42, 42],
+      [0, 109],
+      [-39, 10],
+      [-23, 57],
+      [25, 51],
+      [44, -25],
+      [125, 10],
+      [45, 34],
+      [66, 11],
+      [22, 22],
+      [0, 71],
+      [32, 36],
+      [-48, 57],
+      [54, 36],
+      [114, -74],
+      [-7, 46],
+      [19, 49],
+      [28, 139],
+      [45, 31],
+      [98, -27],
+      [57, 75],
+      [65, 69],
+      [46, 31],
+      [86, 13],
+      [75, -7],
+      [42, -30]
+    ],
+    [
+      [14413, 4476],
+      [78, -91],
+      [69, -19],
+      [60, 24],
+      [58, 43],
+      [37, 47],
+      [62, -12],
+      [62, 20],
+      [80, -26]
+    ],
+    [
+      [6576, 10969],
+      [-45, 31],
+      [-79, 14],
+      [-21, 50],
+      [-71, 10],
+      [-40, -16],
+      [-29, 34],
+      [41, 66],
+      [-28, 19],
+      [36, 77],
+      [-24, 47]
+    ],
+    [
+      [6316, 11301],
+      [-43, 48],
+      [77, 89],
+      [9, 27],
+      [-26, 55],
+      [2, 56],
+      [-39, 144],
+      [32, 24],
+      [4, 74],
+      [113, 28]
+    ],
+    [
+      [6445, 11846],
+      [69, 7],
+      [8, -29],
+      [93, 0],
+      [12, 14],
+      [86, -13],
+      [89, 1],
+      [20, 125],
+      [-8, 39],
+      [46, 59],
+      [136, 27],
+      [57, 36],
+      [73, -17],
+      [28, 48],
+      [53, -8],
+      [9, 66],
+      [149, 5],
+      [12, -62]
+    ],
+    [
+      [7377, 12144],
+      [49, -140],
+      [-41, -103],
+      [73, -45],
+      [39, 57],
+      [54, -30],
+      [37, 14]
+    ],
+    [
+      [7588, 11897],
+      [61, -33],
+      [-8, -58],
+      [57, -28],
+      [48, -60],
+      [-56, -47],
+      [-35, -50],
+      [-43, -108],
+      [35, -19],
+      [-14, -99],
+      [23, -56],
+      [32, -12],
+      [62, -82]
+    ],
+    [
+      [7750, 11245],
+      [-84, -99],
+      [-97, -3],
+      [-66, -33],
+      [-36, -43],
+      [-85, 34],
+      [-12, -21],
+      [-134, 41],
+      [-15, 34],
+      [-125, -21],
+      [-47, 46],
+      [-45, 15],
+      [-81, -31],
+      [-95, -64],
+      [-26, 35],
+      [-62, -74],
+      [-68, 3],
+      [-1, -37],
+      [79, -22],
+      [12, -61],
+      [-108, 60],
+      [-78, -35]
+    ],
+    [
+      [10309, 11473],
+      [-125, -4],
+      [0, 53],
+      [-56, 1],
+      [14, -67],
+      [-121, -26],
+      [-18, 42],
+      [-52, 32],
+      [-211, 7],
+      [2, 18],
+      [-77, 50]
+    ],
+    [
+      [9665, 11579],
+      [36, 86],
+      [17, 98],
+      [64, 61],
+      [19, 47],
+      [-67, 34],
+      [-86, -26],
+      [-27, -26],
+      [-67, -27],
+      [-38, 38],
+      [-89, 37],
+      [-49, 43],
+      [48, 91],
+      [37, 26],
+      [-7, 84],
+      [54, 23],
+      [65, 9],
+      [51, -31],
+      [117, -24],
+      [27, 21],
+      [17, 66],
+      [118, 39],
+      [54, 6],
+      [29, 79],
+      [96, 9],
+      [73, 91],
+      [39, 2]
+    ],
+    [
+      [10196, 12435],
+      [65, -29],
+      [-18, -63],
+      [-29, -37],
+      [-33, -189],
+      [6, -127],
+      [10, -33],
+      [59, -27],
+      [219, -4]
+    ],
+    [
+      [10475, 11926],
+      [-1, -93],
+      [54, -6],
+      [1, -61],
+      [-44, -9],
+      [-1, -87],
+      [45, 4],
+      [0, -39],
+      [-33, -33],
+      [-143, 29],
+      [-36, -41],
+      [-8, -117]
+    ],
+    [
+      [8346, 12229],
+      [2, 76],
+      [120, -35],
+      [54, 14],
+      [43, 37],
+      [11, 75],
+      [38, -25],
+      [36, 106],
+      [95, -35],
+      [14, 44],
+      [58, 28],
+      [111, -31],
+      [71, 42],
+      [22, 29],
+      [88, -4],
+      [-11, 44],
+      [38, 73],
+      [62, -21],
+      [-2, -51],
+      [69, 18],
+      [13, 58],
+      [-79, 17],
+      [-69, 47],
+      [11, 44]
+    ],
+    [
+      [9141, 12779],
+      [15, -1],
+      [81, 70],
+      [43, 61],
+      [77, 19],
+      [70, -23],
+      [64, 15],
+      [18, 52],
+      [83, -15]
+    ],
+    [
+      [9592, 12957],
+      [25, 34],
+      [69, -11],
+      [-17, -73],
+      [69, -8],
+      [57, -32],
+      [19, -33],
+      [-41, -38],
+      [-22, -68],
+      [10, -36],
+      [151, -23],
+      [108, -45],
+      [40, 7],
+      [24, -34],
+      [-7, -45]
+    ],
+    [
+      [10077, 12552],
+      [75, -33]
+    ],
+    [
+      [10152, 12519],
+      [55, -22]
+    ],
+    [
+      [10207, 12497],
+      [-11, -62]
+    ],
+    [
+      [9665, 11579],
+      [-30, -9],
+      [-201, -6],
+      [-2, -44],
+      [-48, 3],
+      [-6, -57],
+      [-49, -7],
+      [5, -32],
+      [-90, -58],
+      [-81, -18],
+      [-10, -43],
+      [17, -50],
+      [-20, -42],
+      [-52, 3],
+      [-5, 71],
+      [-59, 85],
+      [12, -154],
+      [-47, -41],
+      [-12, -42],
+      [-45, -29],
+      [16, -55],
+      [-126, -39],
+      [-6, -23],
+      [-89, -36]
+    ],
+    [
+      [8737, 10956],
+      [-19, 25],
+      [-174, 16],
+      [-185, 109],
+      [-48, -24],
+      [-33, -56],
+      [-70, 19]
+    ],
+    [
+      [8208, 11045],
+      [-59, 53],
+      [0, 105],
+      [-113, 45],
+      [-41, 25],
+      [24, 29],
+      [-12, 45]
+    ],
+    [
+      [8007, 11347],
+      [71, -53],
+      [59, 7],
+      [23, 25],
+      [47, -10],
+      [82, -77],
+      [77, 100],
+      [87, 12],
+      [31, 87],
+      [29, 24],
+      [59, 11],
+      [-1, 174],
+      [39, 79],
+      [-142, 30],
+      [-32, 29],
+      [-37, 69],
+      [-68, 43],
+      [-45, 74],
+      [74, 109],
+      [-46, 14],
+      [-14, 36],
+      [56, 25],
+      [-10, 74]
+    ],
+    [
+      [9634, 13777],
+      [28, -73],
+      [43, -191],
+      [32, -89],
+      [-52, -25],
+      [-73, -6],
+      [-13, -127],
+      [31, -6],
+      [0, -114],
+      [49, -20],
+      [-91, -79],
+      [4, -90]
+    ],
+    [
+      [9141, 12779],
+      [-42, -3],
+      [-4, 76],
+      [-40, 29],
+      [5, 159],
+      [-41, 30],
+      [-5, 45],
+      [35, 46],
+      [-13, 21],
+      [-103, 41],
+      [-38, 34],
+      [-24, -29],
+      [-56, -12],
+      [-145, 35],
+      [-76, -58],
+      [-60, -74],
+      [-57, 50],
+      [19, 49],
+      [-54, 1],
+      [-63, 25],
+      [4, 107],
+      [-29, 42],
+      [-126, 30],
+      [-17, 59],
+      [-60, 8],
+      [-21, 54],
+      [16, 63],
+      [54, 75],
+      [38, -11],
+      [21, 69],
+      [0, 89],
+      [-57, 69],
+      [-9, 61]
+    ],
+    [
+      [8193, 13959],
+      [26, -9],
+      [216, 114],
+      [46, 1],
+      [226, -43],
+      [208, -69],
+      [73, -50],
+      [109, -89],
+      [19, -30],
+      [121, -102],
+      [98, -43],
+      [66, 1],
+      [102, 47],
+      [102, 82],
+      [29, 8]
+    ],
+    [
+      [8007, 11347],
+      [-63, 15],
+      [-25, -34],
+      [-152, -53],
+      [-17, -30]
+    ],
+    [
+      [7588, 11897],
+      [26, 60],
+      [48, 12],
+      [33, 31],
+      [31, 66],
+      [70, 74],
+      [20, -10],
+      [9, 137],
+      [-6, 76],
+      [74, 9],
+      [-4, 36]
+    ],
+    [
+      [7889, 12388],
+      [432, -118],
+      [25, -41]
+    ],
+    [
+      [7125, 13177],
+      [27, -34],
+      [-16, -30],
+      [0, -81],
+      [109, -112],
+      [121, -30],
+      [23, 23],
+      [55, 1],
+      [39, 23],
+      [150, 19],
+      [106, 54],
+      [0, -46],
+      [-47, 2],
+      [-14, -44],
+      [124, -29],
+      [39, -38],
+      [33, -102],
+      [35, -6],
+      [-44, -157],
+      [24, -202]
+    ],
+    [
+      [7377, 12144],
+      [67, 29],
+      [-54, 51],
+      [-49, 83],
+      [44, 143],
+      [31, 44],
+      [-73, 3],
+      [-112, 30],
+      [-143, 53],
+      [-1, 227],
+      [40, 30],
+      [0, 69],
+      [-110, 97],
+      [-54, 131]
+    ],
+    [
+      [6963, 13134],
+      [59, 62],
+      [65, 1],
+      [38, -20]
+    ],
+    [
+      [7739, 13715],
+      [68, -13],
+      [52, 13],
+      [106, 73],
+      [5, 38],
+      [46, 31],
+      [45, 58],
+      [132, 44]
+    ],
+    [
+      [7125, 13177],
+      [152, 244],
+      [27, -2],
+      [183, -54],
+      [33, 19],
+      [31, 69],
+      [100, -41],
+      [46, 87],
+      [20, 143],
+      [22, 73]
+    ],
+    [
+      [10077, 12552],
+      [28, 66],
+      [124, -35],
+      [-77, -64]
+    ],
+    [
+      [11183, 12949],
+      [-6, -14],
+      [59, -90],
+      [26, 10],
+      [59, -69],
+      [-49, -44],
+      [-48, -5],
+      [-2, -143],
+      [-68, 1],
+      [-1, -107],
+      [-46, -36],
+      [-70, -18],
+      [3, -51],
+      [-59, -8],
+      [-15, -36],
+      [-57, 32],
+      [-15, -34],
+      [16, -77],
+      [-7, -42],
+      [65, -20],
+      [127, 32],
+      [73, 29],
+      [64, -58],
+      [3, -85],
+      [-45, -1],
+      [0, -204],
+      [59, 8],
+      [21, -25],
+      [65, -2]
+    ],
+    [
+      [11335, 11892],
+      [0, -69],
+      [71, -9],
+      [-4, -70],
+      [-67, -24],
+      [-36, -97],
+      [-64, -56],
+      [-122, -53],
+      [-3, -33],
+      [-80, -63],
+      [-66, -114]
+    ],
+    [
+      [10964, 11304],
+      [-13, 2]
+    ],
+    [
+      [10951, 11306],
+      [-47, 16],
+      [-55, -3],
+      [15, 92],
+      [-74, 3],
+      [-5, 68],
+      [-54, 26],
+      [-12, 64],
+      [-87, 242],
+      [-38, 4],
+      [12, 105],
+      [-97, 12],
+      [-34, -9]
+    ],
+    [
+      [10207, 12497],
+      [2, 38],
+      [34, 36],
+      [74, -35],
+      [67, 22],
+      [15, 54],
+      [50, 28],
+      [112, 34],
+      [120, 10]
+    ],
+    [
+      [10681, 12684],
+      [-2, -111],
+      [107, 6],
+      [154, 104],
+      [12, 73],
+      [46, 21],
+      [55, 85],
+      [88, -4],
+      [42, 91]
+    ],
+    [
+      [6553, 13121],
+      [21, 68],
+      [40, 22],
+      [63, 2],
+      [73, -55],
+      [58, 83],
+      [155, -107]
+    ],
+    [
+      [6445, 11846],
+      [-5, 108],
+      [26, 70],
+      [28, -21],
+      [39, 46],
+      [42, 75],
+      [78, 42],
+      [53, 101],
+      [45, 65],
+      [-53, 29],
+      [10, 25],
+      [-63, 44],
+      [-110, 23],
+      [-20, 60],
+      [-46, 228],
+      [-57, 39],
+      [24, 69],
+      [35, -12],
+      [82, 284]
+    ],
+    [
+      [9634, 13777],
+      [98, 14],
+      [124, -40],
+      [279, 55],
+      [0, 41],
+      [72, 34],
+      [213, -24],
+      [39, -63],
+      [113, -94]
+    ],
+    [
+      [10572, 13700],
+      [-32, -49],
+      [-25, -71],
+      [36, -61],
+      [-84, 37],
+      [-36, -7],
+      [-65, -45],
+      [-77, 2],
+      [42, -45],
+      [-41, -76],
+      [76, -30],
+      [-16, -42],
+      [68, 0],
+      [7, -21],
+      [162, -9],
+      [27, 56],
+      [67, -4],
+      [-18, -52],
+      [-142, -83],
+      [8, -24],
+      [-136, -120],
+      [33, -69],
+      [79, -43],
+      [61, -5],
+      [78, 14],
+      [28, 42],
+      [43, -5],
+      [159, -57],
+      [-13, -36],
+      [-52, 1],
+      [-16, -47],
+      [-46, -41],
+      [-45, -5],
+      [-21, -121]
+    ],
+    [
+      [11554, 13463],
+      [-135, -23],
+      [-101, 5],
+      [-78, -83],
+      [24, -118],
+      [-22, 5],
+      [-76, -80],
+      [-22, 25],
+      [-60, -28],
+      [107, -73],
+      [4, -39],
+      [-23, -67],
+      [11, -38]
+    ],
+    [
+      [10572, 13700],
+      [56, -33],
+      [208, -40],
+      [103, 50],
+      [118, 26],
+      [74, -6],
+      [143, -47],
+      [117, -29],
+      [61, -47],
+      [102, -111]
+    ],
+    [
+      [20726, 10820],
+      [15, 45],
+      [60, 2],
+      [72, 20],
+      [48, 29],
+      [69, 10],
+      [4, 34]
+    ],
+    [
+      [20994, 10960],
+      [85, 89],
+      [48, -27],
+      [52, 1],
+      [34, -38],
+      [94, 43],
+      [53, -4]
+    ],
+    [
+      [21360, 11024],
+      [11, -59],
+      [22, -19],
+      [-2, -68],
+      [-186, 8],
+      [-28, -25],
+      [16, -72],
+      [-28, -132]
+    ],
+    [
+      [21165, 10657],
+      [-44, 56],
+      [-17, -15],
+      [-12, -77],
+      [-72, 11],
+      [-12, 28],
+      [-121, 30],
+      [-26, 27],
+      [-1, 51],
+      [-73, -9],
+      [29, -45],
+      [-51, -17],
+      [-53, -74],
+      [-37, 32],
+      [41, 46],
+      [10, 119]
+    ],
+    [
+      [20444, 10145],
+      [30, 69],
+      [-55, 60],
+      [-5, 31],
+      [-70, 41],
+      [20, 69],
+      [25, -12],
+      [60, 70],
+      [76, 22],
+      [-32, 71]
+    ],
+    [
+      [20493, 10566],
+      [31, 31],
+      [49, 84],
+      [45, 50],
+      [108, 89]
+    ],
+    [
+      [21165, 10657],
+      [35, -21],
+      [59, 26],
+      [70, -37],
+      [18, -60],
+      [35, -42],
+      [85, 23],
+      [22, 46],
+      [119, 8],
+      [3, -27],
+      [52, -26],
+      [45, -108],
+      [100, -60],
+      [94, 34]
+    ],
+    [
+      [21902, 10413],
+      [-44, -247],
+      [-89, -110],
+      [-2, -107]
+    ],
+    [
+      [21767, 9949],
+      [-84, -1],
+      [-50, -60],
+      [-40, -13],
+      [-97, 63],
+      [-121, -5],
+      [-138, -24],
+      [-83, 28],
+      [-31, 44],
+      [-11, 52],
+      [-64, 5],
+      [-5, 35],
+      [-66, 83],
+      [-4, 55],
+      [-109, 22],
+      [-50, -58],
+      [5, -130],
+      [-94, 12],
+      [-33, -8],
+      [-46, -76],
+      [-79, 1],
+      [-22, 88],
+      [-35, 44],
+      [-67, 13],
+      [1, 26]
+    ],
+    [
+      [20153, 10149],
+      [-15, -94],
+      [102, -49],
+      [-67, -105],
+      [22, -148],
+      [90, -6],
+      [-53, -87],
+      [16, -32],
+      [-38, -66],
+      [38, -40],
+      [-16, -42],
+      [31, -51],
+      [49, -27],
+      [1, -27],
+      [-83, -43],
+      [-52, -1],
+      [-93, -31],
+      [-135, 11],
+      [-93, -22]
+    ],
+    [
+      [19857, 9289],
+      [-165, 34],
+      [-7, 47],
+      [-117, 106],
+      [-71, -11],
+      [4, 46],
+      [49, 65],
+      [-10, 42],
+      [-140, 30],
+      [-66, 38],
+      [-1, 21],
+      [-94, 15],
+      [-153, 14],
+      [-137, -46],
+      [-69, -48],
+      [-38, -54],
+      [-76, -26],
+      [-127, 3]
+    ],
+    [
+      [19109, 10234],
+      [79, 61],
+      [54, -48],
+      [52, 14],
+      [156, -68],
+      [7, 18],
+      [76, 12],
+      [43, 54],
+      [6, 45],
+      [65, 37],
+      [127, 12],
+      [83, -18],
+      [20, -28],
+      [-27, -107],
+      [26, -63],
+      [39, -24],
+      [46, 28],
+      [44, -28],
+      [43, 51],
+      [50, 27],
+      [55, -60]
+    ],
+    [
+      [20265, 11195],
+      [-8, -77],
+      [22, -46],
+      [-44, -59],
+      [26, -50],
+      [28, 4],
+      [28, 46],
+      [91, -76],
+      [47, -26],
+      [-10, -130],
+      [-53, -81],
+      [23, -45],
+      [78, -89]
+    ],
+    [
+      [20444, 10145],
+      [-187, 57],
+      [-46, -64],
+      [-58, 11]
+    ],
+    [
+      [19350, 11191],
+      [94, -5],
+      [49, -25],
+      [44, 27],
+      [45, -8],
+      [17, 42],
+      [87, 38],
+      [27, -5],
+      [146, 99],
+      [131, 19],
+      [46, -18],
+      [82, 15],
+      [4, -93],
+      [12, -33],
+      [82, -87],
+      [49, 38]
+    ],
+    [
+      [20434, 11351],
+      [-83, 167],
+      [-48, 33],
+      [-26, 75]
+    ],
+    [
+      [20277, 11626],
+      [42, 52],
+      [2, 60],
+      [72, 16],
+      [87, 164],
+      [13, 50],
+      [56, 63],
+      [46, -60],
+      [62, -39],
+      [118, 4],
+      [65, 25],
+      [60, 70]
+    ],
+    [
+      [20900, 12031],
+      [14, -64],
+      [150, -15],
+      [28, -155],
+      [30, -83],
+      [-69, -7],
+      [5, -60],
+      [38, -2],
+      [50, -79],
+      [39, -89],
+      [13, -89],
+      [28, -90],
+      [-111, -27],
+      [-40, 8],
+      [-64, 52],
+      [-28, -64],
+      [-58, -97],
+      [-47, -36]
+    ],
+    [
+      [20878, 11134],
+      [-63, 10],
+      [10, 89],
+      [-7, 64],
+      [-38, 52],
+      [-27, 5],
+      [-105, -69],
+      [6, -67],
+      [-39, -27],
+      [-43, 41],
+      [-72, 18],
+      [-42, 41],
+      [-24, 60]
+    ],
+    [
+      [20434, 11351],
+      [-25, -61],
+      [-116, -69],
+      [-28, -26]
+    ],
+    [
+      [19625, 12270],
+      [73, 20],
+      [13, -76],
+      [57, -3],
+      [24, -41],
+      [76, -34],
+      [1, -46],
+      [-22, -37],
+      [-3, -108],
+      [48, -36],
+      [44, -6],
+      [34, -58],
+      [30, 10],
+      [41, -76],
+      [88, 39],
+      [19, -70],
+      [-17, -11],
+      [53, -108],
+      [93, -3]
+    ],
+    [
+      [21814, 9526],
+      [21, -97],
+      [-37, -50],
+      [-2, -39],
+      [22, -147],
+      [-18, -77],
+      [20, -107],
+      [-51, -5],
+      [-29, -82]
+    ],
+    [
+      [21740, 8922],
+      [-33, 17],
+      [-34, -22],
+      [-82, -12],
+      [-65, -34],
+      [-86, 1],
+      [-30, -11],
+      [-60, 26],
+      [-230, 125],
+      [-96, 78],
+      [11, 41]
+    ],
+    [
+      [21035, 9131],
+      [-57, 81],
+      [10, 64],
+      [54, 58],
+      [104, -56],
+      [162, 50],
+      [43, 34],
+      [5, 56],
+      [161, 69],
+      [130, 90],
+      [83, 4],
+      [84, -55]
+    ],
+    [
+      [20994, 10960],
+      [-46, 73],
+      [-43, 35],
+      [-27, 66]
+    ],
+    [
+      [20900, 12031],
+      [12, 96],
+      [-1, 97],
+      [75, 161],
+      [-42, -9],
+      [-20, 93]
+    ],
+    [
+      [20924, 12469],
+      [68, 29],
+      [35, -6],
+      [77, -45],
+      [13, -38],
+      [65, -67],
+      [68, -114],
+      [39, 0],
+      [63, -56],
+      [89, -99],
+      [81, 10],
+      [9, -78],
+      [-13, -29],
+      [53, -43],
+      [46, -79],
+      [105, -60],
+      [16, 43],
+      [36, 14],
+      [88, 119],
+      [92, 82],
+      [43, -47],
+      [19, 21],
+      [132, -44]
+    ],
+    [
+      [22148, 11982],
+      [43, -16],
+      [56, -76],
+      [20, -94],
+      [22, -6],
+      [-6, -69],
+      [156, -139]
+    ],
+    [
+      [22439, 11582],
+      [-47, -79]
+    ],
+    [
+      [22392, 11503],
+      [-78, -25],
+      [-48, -29],
+      [-25, -91],
+      [-29, -67],
+      [-42, -37],
+      [-75, 39],
+      [-53, -67],
+      [-80, -41],
+      [-107, 119],
+      [-26, 55],
+      [9, 98],
+      [-47, 2],
+      [-15, -97],
+      [-40, 22],
+      [-8, -56],
+      [-38, -25],
+      [-130, 28],
+      [-27, -71],
+      [25, -98],
+      [-5, -68],
+      [-116, 7],
+      [-43, -16],
+      [-34, -61]
+    ],
+    [
+      [22392, 11503],
+      [-15, -139],
+      [-73, -179],
+      [-48, -102],
+      [-26, -32],
+      [-59, -16],
+      [-66, 5],
+      [-76, -36],
+      [-48, -6],
+      [-66, -40],
+      [-71, -103],
+      [16, -56],
+      [127, -21],
+      [5, -20],
+      [-27, -188],
+      [-35, -39],
+      [-28, -118]
+    ],
+    [
+      [19957, 13162],
+      [40, -88],
+      [23, 13],
+      [28, -56],
+      [85, -39],
+      [40, -98],
+      [34, -57],
+      [0, -109],
+      [-15, -68],
+      [73, -72],
+      [129, -11],
+      [138, 63],
+      [51, 42],
+      [15, 108],
+      [92, -37],
+      [81, -65],
+      [30, -94],
+      [-31, -27],
+      [40, -51],
+      [114, -47]
+    ],
+    [
+      [21767, 9949],
+      [16, -237],
+      [31, -186]
+    ],
+    [
+      [21035, 9131],
+      [-68, 45],
+      [-94, 0],
+      [-62, 30]
+    ],
+    [
+      [20811, 9206],
+      [-84, 50],
+      [-108, -12],
+      [7, -58],
+      [-59, -13],
+      [-26, 34],
+      [-36, 2],
+      [-97, -26],
+      [4, -55],
+      [-97, 15],
+      [-29, -15]
+    ],
+    [
+      [20286, 9128],
+      [-4, 63],
+      [-91, -18],
+      [-19, 33],
+      [-56, 17],
+      [-55, -46],
+      [-83, -14],
+      [-28, 48],
+      [-50, -5],
+      [-43, 83]
+    ],
+    [
+      [4479, 4799],
+      [-50, -17],
+      [-46, -101]
+    ],
+    [
+      [4383, 4681],
+      [-110, -84]
+    ],
+    [
+      [4273, 4597],
+      [-86, -43],
+      [-48, -4],
+      [-77, 43],
+      [-274, 35],
+      [-43, 66],
+      [-49, 21],
+      [-30, -13],
+      [-75, 20],
+      [-26, 38],
+      [-64, -2],
+      [-49, 21],
+      [-54, -22],
+      [-23, 25],
+      [-48, -1],
+      [-14, 24],
+      [-75, -44]
+    ],
+    [
+      [3238, 4761],
+      [-25, 25],
+      [-55, 12],
+      [-84, -9],
+      [-83, 60],
+      [-60, 16],
+      [-38, 33],
+      [-47, -22],
+      [-56, 36],
+      [21, 55],
+      [-13, 69]
+    ],
+    [
+      [2798, 5036],
+      [16, 48],
+      [79, 69],
+      [147, 33],
+      [94, 50],
+      [50, 95]
+    ],
+    [
+      [3184, 5331],
+      [22, 6],
+      [98, -67],
+      [27, 21],
+      [44, -27],
+      [105, 20],
+      [71, -18],
+      [29, -32],
+      [54, 29],
+      [94, 13],
+      [31, -59],
+      [30, 14]
+    ],
+    [
+      [3238, 4761],
+      [-19, -50],
+      [-90, -25],
+      [-75, -82],
+      [-56, -17],
+      [-74, 1],
+      [-87, -57],
+      [-38, 3],
+      [-49, -46],
+      [-83, 29],
+      [-37, 53],
+      [8, 58],
+      [-43, 6],
+      [-71, -23],
+      [-82, 9],
+      [-67, 39],
+      [-9, 99],
+      [-75, 35],
+      [-47, -94],
+      [-31, -6],
+      [-76, -74]
+    ],
+    [
+      [2137, 4619],
+      [-73, 39],
+      [-60, 57],
+      [-12, 92],
+      [26, 24],
+      [44, 101],
+      [0, 59],
+      [25, 108],
+      [84, 80]
+    ],
+    [
+      [2171, 5179],
+      [74, -21],
+      [23, 32],
+      [126, -45],
+      [56, -33],
+      [37, -148],
+      [74, 9],
+      [39, -28],
+      [37, 20],
+      [-26, 74],
+      [75, -10],
+      [0, 33],
+      [112, -26]
+    ],
+    [
+      [1354, 6894],
+      [-65, -36],
+      [16, -30],
+      [-8, -96],
+      [-38, -66],
+      [-158, -1],
+      [-68, 78],
+      [-17, -28],
+      [-57, -6],
+      [-42, 89],
+      [14, 50],
+      [-57, -14],
+      [-81, 125]
+    ],
+    [
+      [793, 6959],
+      [-49, 125],
+      [-105, 111],
+      [-23, -6],
+      [-58, 47],
+      [-27, 60],
+      [-58, 42],
+      [-25, 45],
+      [-125, 25],
+      [10, 130],
+      [28, 31],
+      [9, 92],
+      [54, 115],
+      [11, 46],
+      [-24, 43]
+    ],
+    [
+      [3776, 5322],
+      [-84, 37],
+      [-58, 78],
+      [-106, 69],
+      [-76, 15],
+      [-93, 64],
+      [-66, 68],
+      [-95, 154],
+      [-51, 31],
+      [25, 30],
+      [253, 66],
+      [90, 54],
+      [-15, 103],
+      [47, 82],
+      [-9, 60],
+      [21, 28]
+    ],
+    [
+      [952, 4812],
+      [-36, 56],
+      [-37, 1],
+      [-58, 43],
+      [-69, 93],
+      [-77, 26],
+      [-49, 104],
+      [-42, 66],
+      [-18, 94],
+      [0, 53],
+      [-60, 29],
+      [-59, 1],
+      [-46, 94],
+      [-11, 52],
+      [-59, 101],
+      [-27, 67],
+      [-80, 61],
+      [-51, 79],
+      [2, 39],
+      [-49, 33],
+      [-42, 72],
+      [-72, 11],
+      [31, 63],
+      [119, 22],
+      [22, 34],
+      [47, -18],
+      [35, 19],
+      [34, -52],
+      [87, 58],
+      [31, 62],
+      [-16, 92],
+      [40, 81],
+      [44, 24],
+      [-3, 76],
+      [159, 20],
+      [11, 85],
+      [48, 47],
+      [1, 57],
+      [23, 50],
+      [9, 126],
+      [39, 47],
+      [20, 79]
+    ],
+    [
+      [2026, 6303],
+      [-10, -61],
+      [48, -40],
+      [60, -172],
+      [3, -33]
+    ],
+    [
+      [2127, 5997],
+      [-9, 16],
+      [-84, -26],
+      [-76, -81],
+      [-9, -76],
+      [-53, -109],
+      [-33, 11],
+      [-35, -31],
+      [-59, -22],
+      [-37, -32],
+      [-17, -63],
+      [-51, -20],
+      [-102, -106],
+      [-85, -28],
+      [-31, -61],
+      [-86, -13],
+      [-12, -96],
+      [26, -81],
+      [-14, -76],
+      [-62, 17],
+      [-25, -19],
+      [-8, -99],
+      [-19, -99],
+      [-47, -24],
+      [-33, 11],
+      [-19, 60],
+      [-48, 4],
+      [-14, -42],
+      [-52, 8],
+      [-34, -67],
+      [-47, -41]
+    ],
+    [
+      [2674, 6348],
+      [45, -127],
+      [28, -22],
+      [-15, -52],
+      [27, -104],
+      [51, -139],
+      [41, -26],
+      [6, -39],
+      [-44, -42],
+      [-26, 24],
+      [-91, -60],
+      [-52, 45],
+      [-95, -38],
+      [11, -166]
+    ],
+    [
+      [2560, 5602],
+      [-29, -8],
+      [-45, -70],
+      [-44, 44],
+      [-24, -54],
+      [-52, -16],
+      [-74, 68],
+      [-10, -43],
+      [40, -45],
+      [-50, -10],
+      [-13, -59],
+      [-38, -30]
+    ],
+    [
+      [2221, 5379],
+      [-1, 53],
+      [24, 54],
+      [-17, 34],
+      [26, 60],
+      [-8, 60],
+      [6, 83],
+      [46, 34],
+      [1, 34],
+      [-63, -22],
+      [3, 49],
+      [-71, 35],
+      [-39, 49],
+      [-1, 95]
+    ],
+    [
+      [3184, 5331],
+      [-87, 3],
+      [-81, 70],
+      [-140, -95],
+      [-26, 54],
+      [-99, 0],
+      [26, 67],
+      [-136, 22],
+      [-5, 25],
+      [37, 54],
+      [-51, 64],
+      [-62, 7]
+    ],
+    [
+      [2171, 5179],
+      [-6, 93],
+      [50, 26],
+      [6, 81]
+    ],
+    [
+      [2137, 4619],
+      [42, -71],
+      [-31, -36],
+      [-39, -108],
+      [-37, 33],
+      [-40, -15],
+      [-25, -43]
+    ],
+    [
+      [2007, 4379],
+      [-58, 18],
+      [-78, -25],
+      [-70, 43],
+      [-64, 98],
+      [-24, -46],
+      [-45, -6],
+      [-121, 56],
+      [-39, -11],
+      [-30, 20],
+      [-16, 50],
+      [-45, 61],
+      [-78, -29],
+      [-68, 1],
+      [-116, 74],
+      [-81, 95],
+      [-71, 5],
+      [-51, 29]
+    ],
+    [
+      [15651, 11033],
+      [-51, -12],
+      [-48, -47],
+      [-17, -42],
+      [-146, -6],
+      [-29, 61],
+      [-65, 12],
+      [9, 59],
+      [-50, -10],
+      [-47, -32],
+      [-29, 26],
+      [-58, -1],
+      [-136, -26],
+      [-19, 22],
+      [-81, -10],
+      [-41, 37],
+      [-44, -56],
+      [-33, -11]
+    ],
+    [
+      [14766, 10997],
+      [-45, 41],
+      [-56, 86],
+      [-9, 58],
+      [-108, 48],
+      [26, 64],
+      [70, 25],
+      [62, 68],
+      [0, 59],
+      [-55, 18],
+      [-52, 77],
+      [-115, 47],
+      [-48, -18],
+      [-21, 25],
+      [-64, 0]
+    ],
+    [
+      [14351, 11595],
+      [45, 219],
+      [-40, 47],
+      [-36, -19],
+      [-40, 35],
+      [-105, 1]
+    ],
+    [
+      [14175, 11878],
+      [-45, 90],
+      [-18, 0]
+    ],
+    [
+      [14112, 11968],
+      [8, 90]
+    ],
+    [
+      [14120, 12058],
+      [37, 31],
+      [34, -24],
+      [73, 19],
+      [44, 115],
+      [140, 139]
+    ],
+    [
+      [14448, 12338],
+      [57, 6],
+      [24, -37],
+      [-16, -39],
+      [78, -11],
+      [44, -42],
+      [69, -4],
+      [81, -45],
+      [73, 1],
+      [80, -30],
+      [82, 65],
+      [20, -78],
+      [109, 48],
+      [6, 55],
+      [59, 3],
+      [11, 60],
+      [3, 114],
+      [-82, 112],
+      [38, 46],
+      [35, 0],
+      [52, 88],
+      [-63, 78]
+    ],
+    [
+      [16166, 12175],
+      [-74, -77],
+      [-1, -50],
+      [-110, -125],
+      [-79, -1],
+      [-35, -37],
+      [-15, -53],
+      [-86, -29],
+      [-61, -4],
+      [-14, -35],
+      [11, -67],
+      [26, -51],
+      [8, -62],
+      [107, -28],
+      [19, -61],
+      [50, -42],
+      [-63, -21],
+      [-7, -33],
+      [-51, -42],
+      [32, -76],
+      [1, -51],
+      [-64, -65],
+      [-34, -3],
+      [-48, -53],
+      [-27, -76]
+    ],
+    [
+      [15869, 10784],
+      [0, 85],
+      [-45, 81],
+      [-90, -5],
+      [-10, 66],
+      [-73, 22]
+    ],
+    [
+      [16943, 10221],
+      [-31, 32],
+      [-136, 39],
+      [1, 48],
+      [-102, 44],
+      [-1, 32],
+      [-36, 57],
+      [-94, -26],
+      [-127, 21],
+      [-68, 19],
+      [-90, -2],
+      [-45, 78],
+      [52, 43],
+      [-1, 66],
+      [26, 46],
+      [-57, 11],
+      [-11, 33],
+      [-84, -12],
+      [-73, -41],
+      [-30, 39],
+      [-61, -36],
+      [-51, 49],
+      [-49, -13],
+      [-6, 36]
+    ],
+    [
+      [14992, 9555],
+      [-23, 46],
+      [-62, 2],
+      [-37, 26],
+      [-3, 40],
+      [-32, 21],
+      [-25, -30],
+      [-91, 10],
+      [-87, 36]
+    ],
+    [
+      [14632, 9706],
+      [-5, 32],
+      [40, 97],
+      [120, 33],
+      [38, 51],
+      [-22, 69],
+      [-95, 5],
+      [-4, 62],
+      [-43, 10],
+      [-22, 50],
+      [13, 49],
+      [-28, 77],
+      [-38, 12],
+      [-42, 85]
+    ],
+    [
+      [14544, 10338],
+      [30, 52],
+      [53, 26],
+      [-3, 28],
+      [-60, 39],
+      [15, 90],
+      [41, 14],
+      [12, 108],
+      [-15, 41],
+      [104, 19],
+      [19, 41],
+      [43, -1],
+      [22, 29],
+      [-39, 173]
+    ],
+    [
+      [15869, 10784],
+      [2, -36],
+      [-38, -52],
+      [-54, 23],
+      [-44, -12],
+      [-36, -33],
+      [-104, -3],
+      [-41, -25],
+      [-66, 27],
+      [-54, -8],
+      [-17, -38],
+      [29, -61],
+      [47, -13],
+      [58, -40],
+      [-12, -113],
+      [-33, -35],
+      [0, -101],
+      [-33, -10],
+      [-62, -187],
+      [5, -57],
+      [-43, -6],
+      [23, -96]
+    ],
+    [
+      [14448, 12338],
+      [2, 68],
+      [57, 65],
+      [-47, 61],
+      [31, 47],
+      [2, 60],
+      [22, 38],
+      [83, 27],
+      [40, -13],
+      [71, 49],
+      [47, -1],
+      [42, -21],
+      [43, 22]
+    ],
+    [
+      [14841, 12740],
+      [36, 25],
+      [52, -17],
+      [19, -27],
+      [128, -20]
+    ],
+    [
+      [21527, 4244],
+      [-179, 72],
+      [-92, -86],
+      [-66, 50],
+      [-5, 133],
+      [-71, 21],
+      [-24, 29],
+      [-7, 122],
+      [-32, 15],
+      [-55, -37],
+      [-29, 9],
+      [-8, 53],
+      [-70, 95],
+      [-60, 37],
+      [3, 43],
+      [-60, 51],
+      [15, 116],
+      [96, 36],
+      [-16, 66],
+      [31, 10],
+      [-25, 110],
+      [-74, -20],
+      [-9, 22]
+    ],
+    [
+      [20790, 5191],
+      [22, -1],
+      [96, 99],
+      [81, 39],
+      [11, 81],
+      [47, 75],
+      [37, 18],
+      [95, 2],
+      [32, -32],
+      [33, 13],
+      [78, -6],
+      [7, 34]
+    ],
+    [
+      [21329, 5513],
+      [58, -57],
+      [45, 3],
+      [57, -52],
+      [23, -53],
+      [62, -21],
+      [76, -113],
+      [-28, -43],
+      [128, -119],
+      [41, -3],
+      [71, -180],
+      [59, -53],
+      [70, 15],
+      [32, -63],
+      [6, -43],
+      [50, -84],
+      [51, -42],
+      [44, -93],
+      [43, -33],
+      [-4, -27],
+      [49, -43],
+      [25, -133],
+      [37, -35],
+      [18, -79],
+      [-92, -18],
+      [-76, 2],
+      [-66, 21],
+      [-75, -44],
+      [-101, 14],
+      [-59, -33],
+      [-26, 3],
+      [-38, 47],
+      [-1, 57],
+      [-89, 44],
+      [-75, 3],
+      [12, -32],
+      [-65, -23],
+      [-64, 41]
+    ],
+    [
+      [18320, 9415],
+      [5, -62],
+      [31, -70],
+      [54, -19],
+      [19, -43],
+      [40, -218],
+      [82, -69],
+      [49, 5],
+      [36, -44],
+      [-24, -54],
+      [-85, -5],
+      [-67, -22],
+      [-26, -38],
+      [2, -60]
+    ],
+    [
+      [18436, 8716],
+      [-55, 15],
+      [-57, -16],
+      [-90, 19],
+      [-51, -19],
+      [-1, -75],
+      [19, -3],
+      [-7, -88],
+      [-34, -48],
+      [-83, -32],
+      [-79, 47],
+      [-19, -24],
+      [8, -56],
+      [-41, -18],
+      [-29, -178],
+      [-19, 15],
+      [-71, -10],
+      [-45, -44],
+      [-56, 49],
+      [-128, -3],
+      [-7, -24],
+      [-94, 25],
+      [-39, -88],
+      [28, -95],
+      [-19, -24],
+      [29, -84],
+      [-47, -4],
+      [-23, -29],
+      [-82, 27],
+      [-82, -1]
+    ],
+    [
+      [19688, 6500],
+      [-15, 42],
+      [116, 68],
+      [-59, 102],
+      [-13, 81],
+      [-36, 14],
+      [-47, 52],
+      [-100, 29],
+      [11, 88],
+      [-25, 27],
+      [-65, 18],
+      [-58, -54],
+      [-61, -7],
+      [-4, -35],
+      [-56, 8],
+      [-14, 44],
+      [-45, 6],
+      [-90, 120],
+      [27, 30],
+      [-26, 67],
+      [-26, 31],
+      [-13, 80],
+      [164, -8],
+      [47, -17],
+      [28, -71],
+      [29, 5],
+      [71, -66],
+      [85, -11],
+      [110, 49],
+      [-29, 44],
+      [90, 82],
+      [1, 48],
+      [32, 33],
+      [-179, 184],
+      [-85, -28],
+      [-44, 33],
+      [-57, -3],
+      [-49, -34],
+      [-92, 78],
+      [-19, 27]
+    ],
+    [
+      [19192, 7656],
+      [43, 43],
+      [74, 7],
+      [43, 135],
+      [20, 11],
+      [141, -1],
+      [82, -34],
+      [71, 19],
+      [24, 63],
+      [-1, 58],
+      [82, 8],
+      [14, -41],
+      [32, -8],
+      [61, 24],
+      [28, 88],
+      [3, 87],
+      [-33, 27],
+      [15, 52],
+      [77, 25]
+    ],
+    [
+      [19968, 8219],
+      [112, 1],
+      [131, -59],
+      [-20, -91],
+      [66, -112],
+      [38, -4],
+      [16, -110],
+      [-48, -28],
+      [-2, -107],
+      [12, -35],
+      [38, -12],
+      [19, -147],
+      [49, -58],
+      [13, -90]
+    ],
+    [
+      [20392, 7367],
+      [-44, 6],
+      [-66, -39],
+      [-73, -114],
+      [-34, -126],
+      [-4, -78],
+      [-17, -69],
+      [-84, -4],
+      [-44, -31],
+      [4, -88],
+      [81, -102],
+      [15, 60],
+      [28, 44],
+      [48, -86],
+      [68, -45],
+      [8, -56],
+      [40, 10],
+      [70, 105],
+      [0, 46],
+      [82, -54],
+      [42, -9]
+    ],
+    [
+      [20512, 6737],
+      [-43, -62],
+      [-51, -39],
+      [7, -66],
+      [-41, -3],
+      [-31, -112],
+      [-1, -60],
+      [-119, -54],
+      [37, -123],
+      [70, -20],
+      [-39, -39],
+      [-35, -108],
+      [-43, -77],
+      [-88, -2],
+      [-97, -31],
+      [8, 74],
+      [-28, 43],
+      [-24, 78],
+      [-9, 74],
+      [27, 77],
+      [-35, 42],
+      [-8, 50],
+      [-67, 36],
+      [-41, -16],
+      [-31, 52],
+      [-29, 4],
+      [1, 56],
+      [-114, -11]
+    ],
+    [
+      [18899, 7659],
+      [-30, -42],
+      [-127, -40],
+      [4, -58],
+      [-82, -157],
+      [23, -82],
+      [55, -47],
+      [29, 33],
+      [25, -48],
+      [-21, -41],
+      [48, -55],
+      [9, -89],
+      [-100, -45],
+      [30, -81],
+      [59, -80],
+      [-33, -38],
+      [-4, -66]
+    ],
+    [
+      [18784, 6723],
+      [-96, 53],
+      [-170, 29],
+      [-210, -4],
+      [-59, -76],
+      [-27, -54],
+      [-74, -16]
+    ],
+    [
+      [18436, 8716],
+      [-27, -49],
+      [12, -24],
+      [86, -9]
+    ],
+    [
+      [18507, 8634],
+      [-9, -57],
+      [-59, -33],
+      [10, -75],
+      [76, -121],
+      [40, 54],
+      [-41, 6],
+      [20, 89],
+      [57, -38],
+      [-5, -65],
+      [-36, -85],
+      [25, -104],
+      [51, -67],
+      [11, -75],
+      [67, -4],
+      [7, -57],
+      [-36, -10],
+      [-14, -72],
+      [-36, -48],
+      [18, -44],
+      [50, -50],
+      [34, -6],
+      [49, 22],
+      [28, -30],
+      [57, 24],
+      [28, -129]
+    ],
+    [
+      [18784, 6723],
+      [89, -35],
+      [78, -62],
+      [105, -17],
+      [59, -25],
+      [100, -61],
+      [35, 40],
+      [30, -25],
+      [25, 34],
+      [97, -71],
+      [63, -33],
+      [59, 28],
+      [60, -149],
+      [-3, -94],
+      [29, -22]
+    ],
+    [
+      [19610, 6231],
+      [-94, -63],
+      [-73, -8],
+      [19, -62],
+      [-53, -62],
+      [-20, -60],
+      [-8, -119],
+      [118, -84],
+      [-25, -90],
+      [46, -102],
+      [31, -11],
+      [45, -58],
+      [-45, -38],
+      [-96, -19],
+      [-13, -71],
+      [-19, -16]
+    ],
+    [
+      [19423, 5368],
+      [-31, 21],
+      [-70, -24],
+      [-46, -73],
+      [27, -44],
+      [40, -15],
+      [-22, -84],
+      [4, -27],
+      [46, -20],
+      [28, -50],
+      [-2, -133],
+      [-12, -68],
+      [-43, -29]
+    ],
+    [
+      [19342, 4822],
+      [-76, -14],
+      [-54, 32],
+      [-71, -36],
+      [-20, -73],
+      [-56, -13],
+      [-18, -54],
+      [35, -71],
+      [-62, -4],
+      [-56, 56],
+      [-21, -26],
+      [-49, 0],
+      [-24, 38],
+      [-46, -34],
+      [-38, 4],
+      [-23, 57],
+      [-55, 37],
+      [-154, 31],
+      [-52, -5]
+    ],
+    [
+      [18507, 8634],
+      [131, -16],
+      [43, -30],
+      [45, -82],
+      [62, -16],
+      [64, -44],
+      [30, 27],
+      [97, -13],
+      [49, 70],
+      [91, -12],
+      [41, 45],
+      [70, -14],
+      [225, -17],
+      [79, 20],
+      [85, -27],
+      [111, 14],
+      [119, 2],
+      [8, -17],
+      [80, -36]
+    ],
+    [
+      [19937, 8488],
+      [2, -97],
+      [-21, -106],
+      [44, -24],
+      [6, -42]
+    ],
+    [
+      [19192, 7656],
+      [-49, 8],
+      [-63, 76],
+      [-52, -9],
+      [-116, -40],
+      [-13, -32]
+    ],
+    [
+      [20286, 9128],
+      [-73, -48],
+      [-25, -55],
+      [-12, -95],
+      [-41, -24],
+      [11, -74],
+      [51, 7],
+      [-21, -65],
+      [7, -132],
+      [-48, -6],
+      [-49, -32],
+      [-77, -18],
+      [-12, -68],
+      [-60, -30]
+    ],
+    [
+      [20237, 5273],
+      [16, 57],
+      [-8, 38],
+      [36, 59],
+      [-30, 34],
+      [26, 94],
+      [-39, 21],
+      [1, 63],
+      [28, 59],
+      [54, 61],
+      [11, 158],
+      [55, 46],
+      [-2, 67],
+      [107, 20],
+      [-6, 20],
+      [64, 108],
+      [8, 41],
+      [76, 59],
+      [53, 64],
+      [48, -17],
+      [39, -86],
+      [100, -34],
+      [106, -94],
+      [13, -92],
+      [29, -21],
+      [85, 55],
+      [-7, 36],
+      [37, 45]
+    ],
+    [
+      [21137, 6134],
+      [38, -50],
+      [60, -4],
+      [68, 51],
+      [51, -5],
+      [-23, -58],
+      [12, -107],
+      [-35, -64],
+      [-73, -51],
+      [-13, -163],
+      [22, -61],
+      [86, -42],
+      [-1, -67]
+    ],
+    [
+      [20790, 5191],
+      [-68, -19],
+      [-22, 119],
+      [-108, 8],
+      [-1, -28],
+      [-41, -48],
+      [-1, -68],
+      [-131, -48],
+      [-39, 47],
+      [-24, 78],
+      [-118, 41]
+    ],
+    [
+      [21740, 8922],
+      [14, -128],
+      [58, -242],
+      [-2, -29],
+      [-41, -65],
+      [5, -76],
+      [37, -122],
+      [-6, -107],
+      [-24, -14],
+      [-53, 16],
+      [-152, 0],
+      [-73, 21],
+      [-49, -17],
+      [-190, 41],
+      [-119, 2],
+      [-44, -40],
+      [-33, -150],
+      [12, -47],
+      [33, -27],
+      [-51, -87],
+      [-42, 34],
+      [-33, -7],
+      [-57, -84],
+      [-40, 17]
+    ],
+    [
+      [20890, 7811],
+      [-33, 93],
+      [-28, 4],
+      [6, 129],
+      [-51, -6],
+      [-32, 24],
+      [-61, 81],
+      [12, 128],
+      [-65, 14],
+      [-43, 37],
+      [-34, 70],
+      [12, 105],
+      [-36, 2],
+      [24, 177],
+      [58, -17],
+      [68, 83],
+      [46, 6],
+      [10, 27],
+      [22, 190],
+      [41, 61],
+      [43, 14],
+      [49, 91],
+      [-87, -5],
+      [-22, 41],
+      [22, 46]
+    ],
+    [
+      [21527, 4244],
+      [-27, -33],
+      [-11, -91],
+      [29, -7],
+      [-23, -62],
+      [52, -9],
+      [10, -75],
+      [-39, -1],
+      [-45, -31],
+      [-50, 60],
+      [-32, -28],
+      [-30, 70],
+      [-41, 29],
+      [-100, 23],
+      [-53, 55],
+      [-17, -35],
+      [-145, 24],
+      [-46, -35],
+      [-10, -43],
+      [-90, -17],
+      [-27, 8],
+      [-36, -45],
+      [-87, 22],
+      [18, -53],
+      [-49, -56],
+      [-33, 49],
+      [-65, -60],
+      [-53, -22],
+      [-31, -49],
+      [-28, -106],
+      [-44, 54],
+      [-28, 8],
+      [-40, 81],
+      [-5, 38],
+      [-74, 116],
+      [-80, -34],
+      [-16, 18],
+      [-73, 18],
+      [-16, 57],
+      [-63, -12],
+      [-35, 53],
+      [-25, 84],
+      [-69, -2],
+      [-7, 50],
+      [-41, 35],
+      [-36, -1],
+      [-7, 70],
+      [-32, 21],
+      [-25, 129],
+      [-54, 72],
+      [-109, 9],
+      [0, 40],
+      [-75, 64],
+      [-23, 47],
+      [-43, -4],
+      [-26, 60],
+      [-46, -10],
+      [-34, 35]
+    ],
+    [
+      [19423, 5368],
+      [26, -8],
+      [61, 32],
+      [64, -26],
+      [30, -50],
+      [111, 85],
+      [38, -10],
+      [33, -53],
+      [95, -39],
+      [36, 33],
+      [50, -5],
+      [15, -42],
+      [123, -19],
+      [54, 30],
+      [57, -36],
+      [21, 13]
+    ],
+    [
+      [19688, 6500],
+      [20, -85],
+      [-94, -37],
+      [2, -56],
+      [32, -40],
+      [-38, -51]
+    ],
+    [
+      [20512, 6737],
+      [48, 14],
+      [-11, 35],
+      [29, 23],
+      [45, -48],
+      [71, -35],
+      [137, 36],
+      [-24, -130],
+      [23, -57],
+      [41, -33],
+      [44, -10],
+      [86, 72],
+      [35, -63],
+      [34, -23],
+      [66, 21],
+      [-20, -57],
+      [-54, 4],
+      [-15, -38],
+      [12, -139],
+      [49, -108],
+      [33, -26],
+      [-4, -41]
+    ],
+    [
+      [20890, 7811],
+      [-50, -14],
+      [-28, 12],
+      [-45, -73],
+      [-18, -115],
+      [11, -147],
+      [29, -72],
+      [44, -53],
+      [-41, -20],
+      [-39, 52],
+      [-58, 21],
+      [-66, -40],
+      [-26, 31],
+      [-41, 3],
+      [-95, -75],
+      [-75, 46]
+    ],
+    [
+      [24449, 12453],
+      [-100, -191],
+      [-64, -84],
+      [-60, -50],
+      [-23, 4],
+      [-50, -39],
+      [-59, -100],
+      [-42, -41],
+      [-24, -88],
+      [-53, 76],
+      [-136, 36],
+      [-112, 96],
+      [-206, 62],
+      [-103, 15],
+      [-90, -33],
+      [-24, 5],
+      [-192, -54]
+    ],
+    [
+      [23111, 12067],
+      [19, 219],
+      [62, 52],
+      [-25, 38],
+      [126, 90],
+      [-19, 29],
+      [144, 56],
+      [-19, 53],
+      [-47, -18],
+      [-102, 127],
+      [-23, -21],
+      [-52, 64],
+      [-95, 205]
+    ],
+    [
+      [23080, 12961],
+      [142, 87],
+      [-41, 107],
+      [135, 71],
+      [-14, 39],
+      [174, 97],
+      [-12, 51],
+      [99, 16],
+      [121, 6],
+      [-4, 93],
+      [117, 6]
+    ],
+    [
+      [23797, 13534],
+      [32, 1],
+      [94, -81],
+      [57, -185],
+      [-26, -8],
+      [45, -145],
+      [-138, -46],
+      [10, -86],
+      [42, -77],
+      [-107, -141],
+      [22, -42],
+      [92, -80],
+      [86, 41],
+      [54, -134],
+      [46, -34],
+      [29, 11],
+      [29, -74],
+      [64, 33],
+      [45, -18],
+      [19, 67],
+      [69, 10],
+      [15, -22],
+      [82, -9],
+      [-9, -62]
+    ],
+    [
+      [20716, 14356],
+      [-48, -96],
+      [-98, -82],
+      [-41, 44],
+      [-49, 1],
+      [-34, 73],
+      [-98, 18],
+      [10, -59],
+      [-26, -125],
+      [-67, -24],
+      [23, -72],
+      [6, -69],
+      [-86, -124],
+      [1, -99],
+      [-57, -208],
+      [-17, 5],
+      [-27, -96],
+      [-51, -113],
+      [-45, -19],
+      [9, -70],
+      [-46, -33]
+    ],
+    [
+      [20600, 14768],
+      [-42, -47],
+      [-30, -79],
+      [48, 0],
+      [-4, -50],
+      [38, -64],
+      [16, -117],
+      [28, -26],
+      [19, -55],
+      [43, 26]
+    ],
+    [
+      [23797, 13534],
+      [-11, 76],
+      [113, 17],
+      [-34, 208],
+      [98, 18],
+      [-8, 52]
+    ],
+    [
+      [23955, 13905],
+      [525, 28],
+      [-25, -81],
+      [22, -89],
+      [-6, -42],
+      [-47, -38],
+      [-1, -104],
+      [18, -134],
+      [39, -79],
+      [-23, -44],
+      [-21, -152],
+      [42, -131],
+      [100, -143],
+      [14, -73],
+      [-23, -109],
+      [-54, -113],
+      [-9, -51],
+      [-57, -97]
+    ],
+    [
+      [21387, 13301],
+      [47, 6],
+      [139, -7],
+      [98, -14],
+      [-3, -64],
+      [42, -13],
+      [35, 22],
+      [30, -28],
+      [-33, -48],
+      [-33, -7],
+      [38, -85],
+      [-45, -61],
+      [20, -18],
+      [-70, -131],
+      [-18, -11],
+      [-102, 1],
+      [-23, -92],
+      [4, -42],
+      [-86, -9],
+      [-12, 56],
+      [-38, 60],
+      [-149, 4],
+      [-14, 44],
+      [-46, 32],
+      [-5, 35],
+      [-79, -3],
+      [-10, 169],
+      [59, 1],
+      [41, 33],
+      [51, 119],
+      [78, 75],
+      [6, -92],
+      [35, -40],
+      [32, 33],
+      [11, 75]
+    ],
+    [
+      [23111, 12067],
+      [-31, -23],
+      [-114, -12],
+      [-56, 4],
+      [-61, 41],
+      [-54, -3],
+      [-181, -135],
+      [-49, -24],
+      [-41, -72],
+      [-56, -155],
+      [8, -42],
+      [-37, -64]
+    ],
+    [
+      [22148, 11982],
+      [17, 108],
+      [-6, 49],
+      [-48, 63],
+      [52, 28],
+      [-17, 131],
+      [21, 127],
+      [-63, -10],
+      [-56, 126],
+      [21, 16],
+      [-36, 105],
+      [-30, -1],
+      [62, 128],
+      [26, -14],
+      [34, 68],
+      [89, -3],
+      [-50, 112],
+      [28, 23],
+      [-30, 67],
+      [147, 72],
+      [-62, 141]
+    ],
+    [
+      [22247, 13318],
+      [196, 25],
+      [76, -168],
+      [97, 46],
+      [20, -46],
+      [34, 16],
+      [23, -50],
+      [31, 15],
+      [41, -36],
+      [60, -107],
+      [41, -90],
+      [98, 40],
+      [116, -2]
+    ],
+    [
+      [22247, 13318],
+      [-24, 50],
+      [-96, -41],
+      [-2, 83],
+      [-66, -14],
+      [-26, 67],
+      [2, 42],
+      [-23, 55],
+      [-102, 7],
+      [-57, 17],
+      [3, 74],
+      [-97, -11],
+      [-19, 257],
+      [-38, -3],
+      [-4, 52],
+      [-71, 150],
+      [-55, 46]
+    ],
+    [
+      [21572, 14149],
+      [-50, 143],
+      [52, 70],
+      [-34, 24],
+      [53, 78],
+      [27, -19],
+      [73, 112],
+      [31, -16],
+      [16, 199],
+      [-43, 94],
+      [-67, 69],
+      [-39, 19],
+      [85, 54],
+      [-130, 218]
+    ],
+    [
+      [21546, 15194],
+      [40, 5],
+      [289, 234],
+      [108, -131],
+      [39, -248],
+      [78, -196],
+      [79, -345],
+      [152, -71],
+      [341, -190],
+      [459, -209],
+      [442, -35],
+      [382, -103]
+    ],
+    [
+      [20716, 14356],
+      [89, 59],
+      [45, -3],
+      [96, -139],
+      [47, -100],
+      [52, -68],
+      [1, -67],
+      [-14, -56],
+      [65, -50],
+      [43, 3],
+      [38, -45],
+      [96, 26],
+      [-40, 93],
+      [117, 54],
+      [11, -21],
+      [137, 62],
+      [73, 45]
+    ],
+    [
+      [21004, 15316],
+      [57, -156],
+      [110, -33],
+      [69, 28],
+      [306, 39]
+    ],
+    [
+      [10453, 8515],
+      [6, -50]
+    ],
+    [
+      [10456, 8422],
+      [-93, 24],
+      [-3, -32],
+      [52, -8],
+      [15, -45]
+    ],
+    [
+      [10427, 8361],
+      [-11, 13],
+      [-164, -46],
+      [-64, -43],
+      [-36, 35],
+      [-53, -5],
+      [-35, -73],
+      [-133, 48],
+      [-56, -17]
+    ],
+    [
+      [9875, 8273],
+      [-24, 156],
+      [22, 66],
+      [7, 80],
+      [-139, 89],
+      [-59, 134],
+      [46, 59],
+      [14, 76],
+      [-49, 51],
+      [31, 51],
+      [-17, 82],
+      [-78, 63],
+      [-56, 76],
+      [12, 43],
+      [70, 11],
+      [42, -29],
+      [50, 35],
+      [8, 26],
+      [101, -16],
+      [72, 8]
+    ],
+    [
+      [8312, 9157],
+      [-79, 98],
+      [-101, 34],
+      [-114, 2],
+      [-32, 21],
+      [-61, -5],
+      [-32, 103],
+      [-136, 63],
+      [-43, 39],
+      [14, 106],
+      [37, 20],
+      [75, 160],
+      [6, 70],
+      [22, 51],
+      [-28, 85],
+      [-107, 15],
+      [3, 36],
+      [-78, 9],
+      [-31, 52],
+      [-39, 11]
+    ],
+    [
+      [7588, 10127],
+      [69, 53],
+      [78, 39],
+      [25, 54],
+      [-31, 127],
+      [0, 55],
+      [47, 41],
+      [82, 207],
+      [-1, 57],
+      [26, 30],
+      [-9, 52],
+      [16, 39],
+      [81, 12],
+      [21, 33],
+      [163, -71],
+      [59, 56],
+      [38, -3],
+      [1, 56],
+      [-39, 42],
+      [-6, 39]
+    ],
+    [
+      [8737, 10956],
+      [-83, -90],
+      [-17, -108],
+      [51, -41],
+      [-70, -27],
+      [-39, -133],
+      [-65, -39],
+      [-14, -97],
+      [48, -70],
+      [35, 13],
+      [86, -69],
+      [31, 9],
+      [62, -37],
+      [2, -38],
+      [43, -58],
+      [31, 12],
+      [25, -42],
+      [44, 4],
+      [61, 55],
+      [59, -25],
+      [57, 11],
+      [-40, -71],
+      [-20, -90],
+      [-1, -81]
+    ],
+    [
+      [9023, 9944],
+      [-88, 25],
+      [-153, -28],
+      [-18, -44],
+      [-68, -4],
+      [-75, 16],
+      [-94, -11],
+      [-22, 14],
+      [-113, -22],
+      [-62, 37],
+      [-51, -10],
+      [-5, -32],
+      [-88, 26],
+      [-20, -155],
+      [-23, -70],
+      [114, -116],
+      [42, -80],
+      [-45, -20],
+      [74, -139],
+      [3, -66],
+      [-19, -108]
+    ],
+    [
+      [7473, 10171],
+      [-66, -26],
+      [-59, -85],
+      [-99, 28],
+      [-50, -23],
+      [-89, 23],
+      [-85, -74],
+      [19, -67],
+      [-59, -38],
+      [11, -79],
+      [53, -117],
+      [-2, -44],
+      [-152, 1],
+      [-19, 40],
+      [-57, 24],
+      [-52, 1]
+    ],
+    [
+      [6352, 10168],
+      [-1, 105],
+      [-47, 78],
+      [18, 115],
+      [97, -32],
+      [48, -36],
+      [108, 24]
+    ],
+    [
+      [6575, 10422],
+      [125, -14],
+      [131, 23],
+      [42, 23],
+      [12, 37],
+      [48, -31],
+      [126, -13],
+      [79, -45],
+      [-3, 48],
+      [82, -16],
+      [46, 32],
+      [137, -30],
+      [-28, -45],
+      [43, -48],
+      [-44, -40],
+      [-6, -57],
+      [108, -75]
+    ],
+    [
+      [9875, 8273],
+      [-71, -15],
+      [-41, 42],
+      [-56, -1],
+      [-46, -28],
+      [-88, 18],
+      [-37, -45]
+    ],
+    [
+      [9536, 8244],
+      [-102, -45],
+      [-136, 34]
+    ],
+    [
+      [9298, 8233],
+      [-43, 17],
+      [-38, -9],
+      [-101, 54],
+      [-38, 46],
+      [-8, 59],
+      [-59, 41],
+      [-25, 93],
+      [-73, 54],
+      [-38, -6],
+      [-126, 62],
+      [-78, 21],
+      [-12, -20],
+      [-112, -9],
+      [-71, 34],
+      [-68, 2]
+    ],
+    [
+      [8408, 8672],
+      [-20, 51],
+      [12, 85],
+      [32, 27],
+      [32, 70],
+      [-30, 28],
+      [-32, 66],
+      [13, 47],
+      [-75, 112],
+      [-28, -1]
+    ],
+    [
+      [9023, 9944],
+      [64, -15],
+      [41, -114],
+      [-12, -46],
+      [18, -33],
+      [61, 10],
+      [61, -15],
+      [40, 21],
+      [70, 2],
+      [16, 97],
+      [41, 12],
+      [92, -9],
+      [269, 62],
+      [63, -6],
+      [31, 18],
+      [40, -22]
+    ],
+    [
+      [7588, 10127],
+      [-115, 44]
+    ],
+    [
+      [6575, 10422],
+      [-16, 126],
+      [-32, 38],
+      [38, 79],
+      [14, 85],
+      [-42, 65],
+      [57, 88],
+      [-18, 66]
+    ],
+    [
+      [8408, 8672],
+      [-52, -69],
+      [18, -76],
+      [-33, -52],
+      [-53, -46],
+      [-79, -4],
+      [-72, 29],
+      [-26, -18],
+      [-129, -6]
+    ],
+    [
+      [10309, 11473],
+      [116, -10],
+      [36, -149],
+      [-26, -79],
+      [12, -100],
+      [-165, 3],
+      [-21, -13],
+      [20, -96],
+      [11, -143]
+    ],
+    [
+      [10951, 11306],
+      [-9, -81],
+      [-26, -78],
+      [-48, -93],
+      [-16, -128],
+      [-40, -83],
+      [-112, -32]
+    ],
+    [
+      [4094, 891],
+      [-56, 33],
+      [35, 63],
+      [13, 72],
+      [-42, 57],
+      [-75, 0],
+      [0, 125],
+      [8, 57],
+      [-57, 75],
+      [-18, -29],
+      [-72, 15],
+      [-92, -86],
+      [-105, 53],
+      [-31, -5],
+      [-24, 76],
+      [-53, 102],
+      [-76, -25],
+      [-101, 58],
+      [10, 91],
+      [-49, 21],
+      [-44, -20],
+      [-89, 22],
+      [-57, 3]
+    ],
+    [
+      [3119, 1649],
+      [20, 69],
+      [-13, 46],
+      [113, 95],
+      [56, 32],
+      [66, -17],
+      [2, 50],
+      [42, 63],
+      [-24, 111],
+      [51, 31],
+      [45, 89],
+      [33, 18],
+      [11, 88],
+      [27, 50],
+      [92, 51],
+      [16, 36],
+      [97, 10],
+      [37, 63],
+      [14, 64],
+      [65, 78]
+    ],
+    [
+      [3869, 2676],
+      [46, 42],
+      [73, 14],
+      [16, 70],
+      [86, 36]
+    ],
+    [
+      [4090, 2838],
+      [11, -50],
+      [92, -53],
+      [57, 22],
+      [85, -99],
+      [34, -77],
+      [38, 23],
+      [55, -11],
+      [25, -33],
+      [70, -12]
+    ],
+    [
+      [4557, 2548],
+      [13, -101],
+      [25, -78],
+      [135, -117],
+      [47, -90],
+      [116, -84],
+      [39, -44],
+      [4, -94],
+      [13, -25],
+      [-13, -89],
+      [73, -121],
+      [-12, -81],
+      [8, -30],
+      [76, -71]
+    ],
+    [
+      [5081, 1523],
+      [-9, -52],
+      [16, -128],
+      [19, -52],
+      [-5, -47],
+      [25, -34],
+      [-13, -92],
+      [-33, -65],
+      [12, -47],
+      [-46, -93],
+      [32, -31]
+    ],
+    [
+      [5079, 882],
+      [-7, -74],
+      [-39, -28],
+      [-85, 1],
+      [-33, 23],
+      [-34, -13],
+      [-43, 55],
+      [-35, 18],
+      [-102, -24],
+      [-58, 43],
+      [-12, 45],
+      [-45, 17],
+      [-151, -36],
+      [-192, 39],
+      [-60, -40],
+      [-63, 17],
+      [-26, -34]
+    ],
+    [
+      [3969, 4130],
+      [-30, -184],
+      [-41, -40],
+      [-65, -20],
+      [1, -106],
+      [-48, -59],
+      [-12, -81],
+      [-97, -191],
+      [4, -44],
+      [68, -30],
+      [48, -43],
+      [50, 0],
+      [-5, -65]
+    ],
+    [
+      [3842, 3267],
+      [-84, -22],
+      [-78, 10],
+      [-8, -34],
+      [-56, -10],
+      [-38, 17],
+      [-60, 2],
+      [-113, -76],
+      [-65, -13],
+      [-63, 67],
+      [-75, -28],
+      [-28, 7],
+      [-43, -118],
+      [-21, -35],
+      [-60, -20],
+      [-42, 61],
+      [-52, 44],
+      [-61, 9],
+      [-58, -93],
+      [-39, -22],
+      [-116, -138],
+      [-103, 43]
+    ],
+    [
+      [2579, 2918],
+      [-17, 53],
+      [-73, 13],
+      [-77, -5],
+      [-27, 25],
+      [1, 80],
+      [-38, 49],
+      [-52, 105],
+      [12, 60],
+      [-26, 107]
+    ],
+    [
+      [2282, 3405],
+      [37, 17],
+      [30, -26],
+      [92, 0],
+      [12, 57],
+      [121, 36],
+      [22, 93],
+      [33, 58],
+      [-9, 78],
+      [54, 33],
+      [-10, 75],
+      [2, 168],
+      [57, 38],
+      [48, 15],
+      [45, -20],
+      [86, 9],
+      [35, -24],
+      [-35, -49],
+      [67, -46],
+      [1, -29],
+      [92, 20],
+      [41, 32],
+      [25, 66],
+      [82, 8],
+      [89, 54],
+      [45, 80],
+      [7, 44],
+      [139, 82],
+      [19, -3],
+      [50, 76],
+      [22, 6],
+      [88, -41],
+      [28, -81],
+      [58, -2],
+      [110, -77],
+      [59, 0],
+      [45, -22]
+    ],
+    [
+      [4273, 4597],
+      [-14, -79],
+      [10, -42],
+      [-70, -25],
+      [10, -67],
+      [-106, -78],
+      [-12, -42],
+      [-40, -19],
+      [-35, 14],
+      [-30, -59],
+      [-17, -70]
+    ],
+    [
+      [2282, 3405],
+      [-23, 19],
+      [-21, 72],
+      [-38, 72],
+      [-56, 7],
+      [-10, 146],
+      [-32, 88],
+      [-47, 35],
+      [-22, 158],
+      [17, 121],
+      [-13, 10],
+      [4, 106],
+      [-46, 26],
+      [24, 49],
+      [-12, 65]
+    ],
+    [
+      [5458, 3454],
+      [26, 60],
+      [66, 52],
+      [48, -7]
+    ],
+    [
+      [5811, 3226],
+      [-33, -19],
+      [-39, -103],
+      [-75, -2],
+      [-48, -47],
+      [-77, -23],
+      [-64, -73],
+      [-2, -73],
+      [-98, -66]
+    ],
+    [
+      [5375, 2820],
+      [-64, -2],
+      [-78, -58],
+      [40, -91],
+      [-38, -3],
+      [-32, -31],
+      [-51, 30],
+      [-47, -14],
+      [-83, 23],
+      [-63, -7],
+      [-19, -34],
+      [-116, -24],
+      [-35, -33],
+      [-49, -4],
+      [-69, 50],
+      [-38, -3],
+      [-49, -64],
+      [-27, -7]
+    ],
+    [
+      [4090, 2838],
+      [15, 55],
+      [-7, 120],
+      [-82, 91]
+    ],
+    [
+      [4016, 3104],
+      [118, 221],
+      [94, 101],
+      [28, -14],
+      [67, 30],
+      [62, 61],
+      [59, -4],
+      [22, 50],
+      [75, -88],
+      [68, -25],
+      [64, 2],
+      [45, 55],
+      [74, -8],
+      [70, 37],
+      [1, -70],
+      [48, -92],
+      [94, -38],
+      [-11, -74],
+      [59, 22],
+      [56, 62],
+      [67, -1],
+      [47, 40],
+      [-2, 32],
+      [35, 40],
+      [66, 35],
+      [39, 4],
+      [42, -28],
+      [55, 0]
+    ],
+    [
+      [6699, 1596],
+      [0, -57],
+      [21, -74],
+      [-18, -69],
+      [43, -45],
+      [5, -73],
+      [-68, -28],
+      [-34, -48],
+      [-44, 29],
+      [-46, -4],
+      [-26, 67]
+    ],
+    [
+      [6532, 1294],
+      [-158, 37],
+      [-64, 102],
+      [-64, 44],
+      [62, 61],
+      [-28, 98],
+      [-5, 61],
+      [-36, 64],
+      [-82, 116]
+    ],
+    [
+      [6157, 1877],
+      [14, 41],
+      [55, 50],
+      [14, 45],
+      [-85, -15],
+      [-24, 29],
+      [-10, 61],
+      [-76, 63],
+      [25, 25],
+      [35, 79],
+      [-11, 65],
+      [-35, 63],
+      [-3, 92],
+      [65, 36],
+      [13, 53],
+      [25, 21],
+      [120, 38],
+      [36, 52],
+      [102, 41],
+      [59, -17]
+    ],
+    [
+      [4094, 891],
+      [-86, -78],
+      [-55, -15],
+      [-48, -68],
+      [-31, -13],
+      [-77, 198],
+      [-43, -7],
+      [-54, 16],
+      [-68, -22],
+      [-88, -77],
+      [-101, -42],
+      [-24, -52],
+      [21, -93],
+      [-29, -77],
+      [-92, -68],
+      [-76, -28],
+      [-26, 13],
+      [-228, -5],
+      [-44, -21],
+      [-101, 18],
+      [-184, 72],
+      [-117, -12],
+      [-78, 28],
+      [-44, -17],
+      [-139, 47],
+      [46, 59],
+      [64, 2],
+      [-12, 149],
+      [17, 79],
+      [-21, 70],
+      [-36, 67],
+      [47, 78],
+      [54, 58],
+      [-2, 59],
+      [-51, 68],
+      [-15, 154],
+      [38, 68],
+      [5, 57],
+      [-50, 114],
+      [7, 43],
+      [38, 20]
+    ],
+    [
+      [2411, 1733],
+      [77, 24],
+      [52, -11],
+      [58, -45],
+      [98, -17],
+      [60, 76],
+      [55, 8],
+      [36, -65],
+      [75, -103],
+      [44, 12],
+      [37, 50],
+      [116, -13]
+    ],
+    [
+      [3842, 3267],
+      [47, -48],
+      [7, -63],
+      [120, -52]
+    ],
+    [
+      [3869, 2676],
+      [-51, 11],
+      [-83, -42],
+      [-6, 40],
+      [-114, -39],
+      [-62, -105],
+      [-53, 7],
+      [-104, -135],
+      [-74, -54],
+      [-68, 67],
+      [-81, 64],
+      [-67, 1],
+      [-39, -33],
+      [-54, -2],
+      [-102, 26],
+      [-23, 23],
+      [-97, 7],
+      [-40, 29],
+      [-21, 45],
+      [-66, 53]
+    ],
+    [
+      [2664, 2639],
+      [-8, 82],
+      [-63, 182],
+      [-14, 15]
+    ],
+    [
+      [6157, 1877],
+      [-19, -38],
+      [-42, 6],
+      [-40, -53],
+      [-59, 35],
+      [-8, -53],
+      [-48, -26],
+      [-87, -87],
+      [-52, 68],
+      [-38, 20]
+    ],
+    [
+      [5764, 1749],
+      [-31, 48],
+      [-63, 25],
+      [-46, 53],
+      [-55, 31],
+      [-23, 49],
+      [-15, 128],
+      [-35, 87],
+      [-38, 37],
+      [-11, 53],
+      [44, 50],
+      [-4, 66],
+      [-36, 91],
+      [4, 106],
+      [-31, 33],
+      [-10, 116],
+      [-39, 98]
+    ],
+    [
+      [4383, 4681],
+      [48, -82],
+      [49, -51],
+      [53, -26],
+      [57, -56],
+      [8, -31],
+      [-60, -9],
+      [-17, -25],
+      [41, -157],
+      [52, -116],
+      [13, -106],
+      [-9, -45],
+      [29, -57],
+      [0, -61],
+      [34, -70],
+      [43, -11],
+      [0, -48],
+      [67, -33],
+      [-14, -78],
+      [76, -17],
+      [70, 69],
+      [65, 15],
+      [91, -27],
+      [122, -19],
+      [63, -57],
+      [57, -7],
+      [82, 26],
+      [-40, -77],
+      [95, -71]
+    ],
+    [
+      [5081, 1523],
+      [19, 50],
+      [95, 39],
+      [52, -2],
+      [65, -72],
+      [29, -17],
+      [43, 20],
+      [-23, 66],
+      [48, 8],
+      [33, 57],
+      [62, -11],
+      [90, 67],
+      [79, -41],
+      [-8, 46],
+      [99, 16]
+    ],
+    [
+      [6532, 1294],
+      [-35, -61],
+      [-104, -90],
+      [-64, -7],
+      [-52, 55],
+      [-77, 121],
+      [-66, 59],
+      [-27, -18],
+      [2, -49],
+      [-15, -70],
+      [-62, -39],
+      [-133, -1],
+      [-20, -55],
+      [-28, 10],
+      [-84, -30],
+      [-88, 5],
+      [-32, -56],
+      [-12, -50],
+      [-34, -30],
+      [-51, -93],
+      [-35, 36],
+      [-112, 29],
+      [-139, -19],
+      [-82, 35],
+      [-48, -60],
+      [-55, -34]
+    ],
+    [
+      [2411, 1733],
+      [-1, 95],
+      [-16, 81],
+      [-52, 44],
+      [-10, 46],
+      [14, 140],
+      [-20, 68],
+      [14, 61],
+      [32, 21],
+      [78, 11],
+      [60, 146],
+      [24, 18],
+      [83, 138],
+      [47, 37]
+    ],
+    [
+      [5518, 4123],
+      [-81, -22],
+      [-110, 23],
+      [-34, 33],
+      [-59, -23],
+      [-23, 21],
+      [-44, -8],
+      [-23, 28],
+      [-80, -40],
+      [-27, -63],
+      [-96, -25],
+      [-38, 13],
+      [17, 39],
+      [7, 96],
+      [28, 132],
+      [-21, 69],
+      [5, 58],
+      [-66, 37],
+      [-19, 41],
+      [10, 55],
+      [47, 37],
+      [-25, 87],
+      [-58, 24],
+      [-46, 1]
+    ],
+    [
+      [14969, 13348],
+      [-73, -8],
+      [-33, 18],
+      [-27, 59],
+      [29, 30],
+      [-27, 114],
+      [18, 137]
+    ],
+    [
+      [14856, 13698],
+      [12, -12],
+      [135, 171],
+      [82, -28],
+      [-1, 46],
+      [136, 56],
+      [1, 55],
+      [86, 43],
+      [-1, 157],
+      [88, -27],
+      [162, 7],
+      [24, -26],
+      [72, -25],
+      [7, 23],
+      [57, 11]
+    ],
+    [
+      [12441, 12649],
+      [-52, 19],
+      [46, 62],
+      [-63, 74],
+      [-69, 20],
+      [-8, 44],
+      [-53, 26],
+      [29, 28],
+      [-56, 70],
+      [10, 45],
+      [84, 13],
+      [62, 52],
+      [105, 50],
+      [43, 59],
+      [57, 10],
+      [-3, 102],
+      [-39, 41],
+      [7, 36]
+    ],
+    [
+      [12541, 13400],
+      [65, 8],
+      [234, 148]
+    ],
+    [
+      [12840, 13556],
+      [21, -64],
+      [55, 10],
+      [42, -142],
+      [-2, -51],
+      [115, -29],
+      [38, -93],
+      [54, -31],
+      [43, -43],
+      [91, -24],
+      [17, -54],
+      [40, -22],
+      [-54, -36],
+      [-27, -79],
+      [-43, -35],
+      [50, -55],
+      [20, -42]
+    ],
+    [
+      [13300, 12766],
+      [-114, -64],
+      [-40, -57],
+      [-14, -43],
+      [98, 10],
+      [25, 26],
+      [76, -70],
+      [-86, -13],
+      [4, 42],
+      [-60, -12],
+      [-70, 9],
+      [-9, 60],
+      [-56, 17],
+      [-23, -33],
+      [11, -106],
+      [-139, -9],
+      [-60, 163],
+      [-73, 63],
+      [-96, -104],
+      [-30, -16]
+    ],
+    [
+      [12644, 12629],
+      [-91, 69],
+      [-8, -36],
+      [-45, 2],
+      [-6, -37],
+      [-53, 22]
+    ],
+    [
+      [14856, 13698],
+      [-149, 200],
+      [-3, 34],
+      [-60, 20],
+      [34, 104],
+      [-55, -13],
+      [-22, 26],
+      [-68, -38],
+      [-29, 59],
+      [-38, 35],
+      [-101, 1],
+      [-172, -146],
+      [-109, -42],
+      [-103, 26],
+      [-28, 77],
+      [-122, 10],
+      [-35, 40]
+    ],
+    [
+      [13796, 14091],
+      [82, 91],
+      [11, 64],
+      [82, 99],
+      [42, 87],
+      [83, 130],
+      [50, 42],
+      [95, 59],
+      [97, 76],
+      [173, 107],
+      [103, 162],
+      [93, 108],
+      [39, 83],
+      [39, 44],
+      [126, 56]
+    ],
+    [
+      [14911, 15299],
+      [21, -40],
+      [42, -182],
+      [-30, -3],
+      [-27, -103],
+      [42, -19],
+      [12, -32],
+      [58, -19],
+      [11, -40],
+      [37, -9],
+      [76, -78],
+      [41, -12],
+      [18, -82],
+      [77, -141],
+      [15, -52],
+      [106, 60],
+      [38, 48],
+      [43, -19],
+      [91, 33],
+      [3, 19]
+    ],
+    [
+      [13738, 12327],
+      [-9, -65],
+      [75, 17],
+      [88, -24],
+      [18, -49],
+      [122, -28],
+      [10, -32],
+      [78, -88]
+    ],
+    [
+      [14112, 11968],
+      [-8, -31],
+      [-72, -32],
+      [-86, 20],
+      [-17, -34],
+      [-144, -60],
+      [-55, 17],
+      [-9, 25],
+      [-80, -2],
+      [-17, 12],
+      [-126, 17],
+      [-29, 38]
+    ],
+    [
+      [13469, 11938],
+      [-90, 31],
+      [-60, -16],
+      [-67, 39],
+      [-32, 108],
+      [-45, 47],
+      [-114, 2],
+      [11, -61],
+      [-37, -70],
+      [-85, 21],
+      [-93, -1],
+      [-33, 53],
+      [-40, -6],
+      [-13, 75],
+      [-58, 21],
+      [-57, 51],
+      [-72, 18],
+      [-6, 28],
+      [-52, 35],
+      [96, 54],
+      [-15, 95],
+      [9, 127],
+      [28, 40]
+    ],
+    [
+      [13300, 12766],
+      [-4, -32],
+      [150, -40],
+      [7, -44],
+      [-10, -95],
+      [43, -26],
+      [42, -129],
+      [-4, -38],
+      [149, 4],
+      [45, 33],
+      [25, -35],
+      [-5, -37]
+    ],
+    [
+      [14351, 11595],
+      [-128, 11],
+      [-87, 31],
+      [-26, 58],
+      [-10, 134],
+      [75, 49]
+    ],
+    [
+      [14841, 12740],
+      [-12, 83],
+      [-45, 39],
+      [-61, 16],
+      [-1, 104],
+      [-43, -10],
+      [-103, 66],
+      [-85, -2],
+      [-126, -37],
+      [-68, 7],
+      [-62, 44],
+      [-42, 5],
+      [-17, 64],
+      [56, 24],
+      [-79, 36],
+      [-23, 42],
+      [-48, 44],
+      [-73, -27],
+      [-27, 37],
+      [-32, -11],
+      [-33, 68],
+      [-79, -34],
+      [-45, 21],
+      [-34, -43],
+      [-45, 5]
+    ],
+    [
+      [13714, 13281],
+      [-23, 35],
+      [-4, 62],
+      [-38, 56],
+      [1, 38],
+      [-73, 5],
+      [-4, 72],
+      [-45, 49],
+      [-112, 28],
+      [-34, 25],
+      [0, 77]
+    ],
+    [
+      [13382, 13728],
+      [97, 57],
+      [37, 46],
+      [53, 117],
+      [62, 57],
+      [55, 8],
+      [76, 42],
+      [34, 36]
+    ],
+    [
+      [12840, 13556],
+      [202, 113],
+      [184, 1],
+      [61, 6],
+      [95, 52]
+    ],
+    [
+      [13714, 13281],
+      [19, -48],
+      [-43, -118],
+      [13, -124],
+      [23, -77],
+      [-27, -48],
+      [-33, 9],
+      [-31, -103],
+      [17, -60],
+      [55, -10],
+      [2, -87],
+      [54, -89],
+      [33, -31],
+      [-30, -176],
+      [-28, 8]
+    ],
+    [
+      [14911, 15299],
+      [90, 5],
+      [97, -6],
+      [338, 146],
+      [96, 91],
+      [121, 31],
+      [90, 35]
+    ],
+    [
+      [12593, 448],
+      [-51, -31],
+      [-53, -181],
+      [-120, 51],
+      [-111, 4],
+      [-10, -27],
+      [-148, -40],
+      [-12, -56],
+      [-159, -40],
+      [-85, 10],
+      [-37, -43],
+      [-65, -26],
+      [-23, -38],
+      [-43, -2],
+      [-38, 21],
+      [-74, 3],
+      [-32, -53],
+      [-90, 49],
+      [-127, 17],
+      [3, 42],
+      [-38, 67],
+      [-13, 83],
+      [-46, 57],
+      [-32, 0],
+      [-69, 35],
+      [-16, 67]
+    ],
+    [
+      [11023, 895],
+      [61, 49],
+      [117, 11],
+      [44, 83],
+      [-25, 41],
+      [15, 36],
+      [54, 11],
+      [46, -56],
+      [88, 0],
+      [101, -44],
+      [52, 38],
+      [29, 54],
+      [99, 21],
+      [81, -2]
+    ],
+    [
+      [11785, 1137],
+      [44, -40],
+      [43, -14],
+      [37, 44],
+      [62, -12],
+      [0, 28],
+      [106, 37],
+      [76, -35],
+      [57, -8],
+      [83, 20],
+      [8, -18]
+    ],
+    [
+      [12301, 1139],
+      [-27, -63],
+      [-28, -24],
+      [3, -54],
+      [21, -35],
+      [42, -20],
+      [-17, -56],
+      [7, -131],
+      [-32, -96],
+      [1, -54],
+      [33, -15],
+      [64, 26],
+      [57, -17],
+      [19, 24],
+      [54, -3],
+      [17, -62],
+      [55, -52],
+      [23, -59]
+    ],
+    [
+      [12709, 2256],
+      [58, 6]
+    ],
+    [
+      [14131, 473],
+      [-53, 2],
+      [-22, -32],
+      [-39, -4],
+      [-52, -37],
+      [-87, -18],
+      [-59, 55],
+      [14, 77],
+      [-79, 2],
+      [-26, 50],
+      [-43, 18],
+      [-45, 40],
+      [-28, -59],
+      [-29, 3],
+      [-80, -28],
+      [-30, -57],
+      [-47, -16],
+      [-45, 4],
+      [-56, -18],
+      [-80, 10],
+      [-19, -12],
+      [-16, -130],
+      [-50, -5],
+      [-28, 49],
+      [-45, 30],
+      [-75, 11],
+      [-25, 33],
+      [-45, -8],
+      [-89, -53],
+      [-146, 33],
+      [-50, 51],
+      [-64, -16]
+    ],
+    [
+      [12301, 1139],
+      [99, -40],
+      [14, -73],
+      [28, -31],
+      [29, 31],
+      [80, -23],
+      [-28, 79],
+      [100, 71],
+      [12, -18],
+      [94, -7],
+      [12, 85],
+      [-32, 15],
+      [28, 138],
+      [-26, 17],
+      [-23, 64],
+      [-32, 4],
+      [21, 106],
+      [56, 49],
+      [10, 65],
+      [23, 50],
+      [27, 8],
+      [6, 88],
+      [-88, 144],
+      [-79, 101],
+      [6, 46],
+      [53, 62],
+      [18, 86]
+    ],
+    [
+      [10672, 2684],
+      [47, 19],
+      [89, 2],
+      [63, 71]
+    ],
+    [
+      [10871, 2776],
+      [92, -75],
+      [103, -18],
+      [38, 14],
+      [103, 7],
+      [69, 38]
+    ],
+    [
+      [11276, 2742],
+      [-7, -35],
+      [28, -86]
+    ],
+    [
+      [11297, 2621],
+      [33, -121],
+      [40, -5],
+      [32, -76],
+      [34, -27],
+      [28, -55],
+      [-54, -23],
+      [-53, -72],
+      [-20, -8],
+      [-15, -73],
+      [-77, -72],
+      [2, -62],
+      [61, -42],
+      [-32, -28],
+      [95, -37],
+      [-44, -61],
+      [56, -17]
+    ],
+    [
+      [11383, 1842],
+      [-17, -59],
+      [-38, 1],
+      [-124, -30],
+      [-22, -66],
+      [53, -76],
+      [-97, 7],
+      [-71, -64],
+      [-23, -77]
+    ],
+    [
+      [11785, 1137],
+      [61, 22],
+      [-9, 104],
+      [13, 96],
+      [-15, 39],
+      [7, 79],
+      [-10, 72],
+      [49, 67],
+      [-27, 132],
+      [-102, -52],
+      [-55, 92]
+    ],
+    [
+      [11697, 1788],
+      [28, 32],
+      [93, 46],
+      [40, 3],
+      [88, 41],
+      [44, 56],
+      [17, 63],
+      [146, 18],
+      [4, -50],
+      [32, -8],
+      [67, 18],
+      [41, -31],
+      [64, 52],
+      [26, 52],
+      [87, 37],
+      [-42, 107],
+      [117, 32],
+      [40, 21],
+      [120, -21]
+    ],
+    [
+      [10871, 2776],
+      [48, 73],
+      [98, 25],
+      [123, -18],
+      [25, 25],
+      [73, -24],
+      [38, -115]
+    ],
+    [
+      [11697, 1788],
+      [-113, 5],
+      [-58, -19],
+      [-143, 68]
+    ],
+    [
+      [11297, 2621],
+      [65, 20],
+      [14, 47],
+      [-18, 28],
+      [19, 67],
+      [58, 1],
+      [18, -50],
+      [75, 45],
+      [47, -48],
+      [32, -56],
+      [53, 8],
+      [41, -20],
+      [8, -41],
+      [40, -32],
+      [67, 35],
+      [50, -24],
+      [59, 76],
+      [5, 86],
+      [-52, 32],
+      [36, 42],
+      [27, 70],
+      [87, 77],
+      [-29, 97]
+    ],
+    [
+      [10690, 3106],
+      [30, -30],
+      [47, 47],
+      [93, 17],
+      [-41, 61],
+      [5, 44],
+      [42, 50],
+      [58, 11],
+      [36, 33],
+      [19, 48],
+      [-1, 148]
+    ],
+    [
+      [10978, 3535],
+      [98, 30],
+      [40, 57],
+      [17, 69],
+      [89, 17],
+      [35, -33]
+    ],
+    [
+      [11501, 10434],
+      [-41, 11],
+      [-45, 38],
+      [-12, 92],
+      [-42, 43],
+      [43, 70],
+      [-14, 19],
+      [20, 86],
+      [-54, 25],
+      [-14, 28],
+      [16, 63],
+      [-128, 40],
+      [-61, -26],
+      [-145, 91],
+      [-53, -5],
+      [-28, 41],
+      [131, 12],
+      [16, 68],
+      [-43, 17],
+      [-25, 41],
+      [-11, 68],
+      [-47, 48]
+    ],
+    [
+      [11335, 11892],
+      [83, 10],
+      [16, 99],
+      [37, 36],
+      [95, 41],
+      [213, 7],
+      [8, -28],
+      [84, 48],
+      [0, 16],
+      [159, 2]
+    ],
+    [
+      [12030, 12123],
+      [39, -26],
+      [41, -54],
+      [-1, -85],
+      [-27, -20],
+      [48, -192],
+      [54, 13],
+      [59, -55],
+      [28, -55],
+      [22, -144],
+      [67, -81],
+      [-8, -77],
+      [81, -32],
+      [23, -53],
+      [56, 1]
+    ],
+    [
+      [12512, 11263],
+      [4, -73],
+      [-36, -16],
+      [1, -50],
+      [-81, 48],
+      [-87, -33],
+      [-59, 60],
+      [-100, -2],
+      [-36, -54],
+      [63, -44],
+      [1, -256],
+      [-51, -24],
+      [-1, -71],
+      [26, 0],
+      [11, -87],
+      [-28, -32],
+      [28, -48],
+      [-103, -31],
+      [-72, -54],
+      [-67, -13],
+      [27, 95],
+      [-1, 39],
+      [-64, 10],
+      [-59, -20],
+      [-34, 30],
+      [-132, -89],
+      [-4, -41],
+      [-57, 2],
+      [-17, -74]
+    ],
+    [
+      [14160, 10470],
+      [31, 33],
+      [-68, 55],
+      [-16, -11],
+      [-50, 135],
+      [-28, 40],
+      [14, 71],
+      [-37, 22],
+      [-103, -58],
+      [-61, 12]
+    ],
+    [
+      [13842, 10769],
+      [-80, 77],
+      [-7, 74],
+      [53, 51],
+      [49, -3],
+      [41, 24],
+      [-29, 75],
+      [-57, 12],
+      [-50, 72],
+      [-24, -8],
+      [-91, 30],
+      [-85, -6],
+      [-59, -30],
+      [-34, 39],
+      [-23, 99],
+      [-26, 161],
+      [134, 37],
+      [40, -12],
+      [43, 23],
+      [62, -5],
+      [36, 33],
+      [38, -9],
+      [-4, 64],
+      [-25, 36],
+      [-72, -46],
+      [-6, 58],
+      [-152, 5],
+      [-115, 69]
+    ],
+    [
+      [13399, 11689],
+      [22, 28],
+      [49, -2],
+      [-1, 223]
+    ],
+    [
+      [14544, 10338],
+      [-32, -13],
+      [-70, 7],
+      [-173, 38],
+      [-46, 95],
+      [-63, 5]
+    ],
+    [
+      [13694, 8581],
+      [-177, 38],
+      [-70, -27],
+      [-111, 49],
+      [-97, 11],
+      [-10, 60],
+      [-22, 18]
+    ],
+    [
+      [13207, 8730],
+      [6, 27],
+      [49, 15],
+      [22, 56],
+      [-15, 53],
+      [41, 61],
+      [49, 19],
+      [20, 33],
+      [-25, 57],
+      [-88, 4],
+      [-31, 83],
+      [-35, 60],
+      [8, 69],
+      [-56, 18],
+      [20, 46],
+      [-47, 8],
+      [-28, 69],
+      [116, 50],
+      [30, -20],
+      [14, 71],
+      [-40, 47],
+      [84, 88],
+      [34, -51],
+      [99, 66],
+      [40, -20],
+      [89, 35],
+      [82, -31],
+      [41, 37],
+      [45, -10],
+      [47, 37],
+      [12, 32]
+    ],
+    [
+      [13790, 9739],
+      [47, -27],
+      [60, 51],
+      [68, 35],
+      [52, -27],
+      [111, 7],
+      [0, 21],
+      [77, 13],
+      [80, 107],
+      [61, 14],
+      [65, -45],
+      [11, -156],
+      [111, 3],
+      [30, -29],
+      [69, 0]
+    ],
+    [
+      [12441, 12649],
+      [-23, -47],
+      [-89, -40],
+      [6, -60],
+      [-95, -9],
+      [-14, -17],
+      [44, -127],
+      [-96, -19],
+      [-65, -60],
+      [-70, 4],
+      [13, -36],
+      [-22, -115]
+    ],
+    [
+      [11554, 13463],
+      [113, -58],
+      [113, -97],
+      [126, -39],
+      [92, 7],
+      [159, 40],
+      [117, 70],
+      [146, 32],
+      [121, -18]
+    ],
+    [
+      [13633, 10078],
+      [-56, -27],
+      [-157, 15],
+      [-61, 27],
+      [-167, 7],
+      [23, 94],
+      [-23, 67],
+      [-54, 86],
+      [-42, 43],
+      [9, 30]
+    ],
+    [
+      [13105, 10420],
+      [26, -3],
+      [89, 114],
+      [19, 72],
+      [40, 62],
+      [55, -45],
+      [95, -10],
+      [24, -20],
+      [59, 13],
+      [71, 81],
+      [68, 24],
+      [88, -11],
+      [58, 12],
+      [3, 38],
+      [42, 22]
+    ],
+    [
+      [14160, 10470],
+      [-27, -28],
+      [-73, 12],
+      [-19, -36],
+      [-62, 26],
+      [-123, -78],
+      [-48, -9],
+      [-74, -39],
+      [-27, -37],
+      [13, -71],
+      [-65, 16],
+      [-9, -115],
+      [-13, -33]
+    ],
+    [
+      [13105, 10420],
+      [-59, 33],
+      [-48, 60],
+      [-65, -24],
+      [-77, 3],
+      [-20, 73],
+      [17, 60],
+      [-22, 44],
+      [-4, 72],
+      [-45, 14],
+      [-23, 132],
+      [9, 125],
+      [35, -41],
+      [49, 17],
+      [2, 46],
+      [-11, 158]
+    ],
+    [
+      [12843, 11192],
+      [140, 47],
+      [59, 47],
+      [41, -5],
+      [13, 53],
+      [117, 0],
+      [-1, 52],
+      [56, 14],
+      [-54, 135],
+      [18, 31],
+      [-34, 29],
+      [98, 69],
+      [71, 4],
+      [32, 21]
+    ],
+    [
+      [13790, 9739],
+      [20, 24],
+      [4, 72],
+      [-19, 189],
+      [-96, 19],
+      [-1, 37],
+      [-65, -2]
+    ],
+    [
+      [13207, 8730],
+      [-52, 25],
+      [-77, -2],
+      [-18, -61],
+      [-67, 2],
+      [-17, -32],
+      [-62, -14],
+      [-26, -39],
+      [-70, 26]
+    ],
+    [
+      [12512, 11263],
+      [226, 18],
+      [61, 29],
+      [44, -118]
+    ],
+    [
+      [10978, 3535],
+      [-28, -53],
+      [-138, 86],
+      [19, 115],
+      [-5, 73],
+      [-32, 178],
+      [19, 65],
+      [52, 9],
+      [18, 39],
+      [-20, 88],
+      [-75, 1],
+      [-46, 18],
+      [29, 51],
+      [-12, 89],
+      [-24, 46],
+      [-37, 11],
+      [-79, 101],
+      [49, 106],
+      [98, 45],
+      [-24, 114],
+      [-26, -2],
+      [-24, 52]
+    ],
+    [
+      [10692, 4767],
+      [70, 21],
+      [10, 73],
+      [43, 4],
+      [88, 254],
+      [69, 19]
+    ],
+    [
+      [10972, 5138],
+      [54, -38],
+      [30, 3],
+      [-27, 101],
+      [38, -4],
+      [-13, 59],
+      [35, -1],
+      [-2, -59],
+      [84, 26],
+      [4, -46],
+      [77, -16],
+      [38, 36],
+      [94, 45],
+      [37, 38]
+    ],
+    [
+      [11421, 5282],
+      [68, -156],
+      [67, -51],
+      [84, 6],
+      [54, -168],
+      [19, -28],
+      [55, 7]
+    ],
+    [
+      [8315, 4200],
+      [-9, -28],
+      [36, -95],
+      [43, -76],
+      [10, -79],
+      [35, -43],
+      [85, -11],
+      [-42, -68]
+    ],
+    [
+      [8431, 4681],
+      [-22, -44],
+      [26, -24]
+    ],
+    [
+      [8435, 4613],
+      [-30, -46],
+      [23, -103],
+      [-16, -102],
+      [-61, -54],
+      [-4, -66],
+      [-20, -14]
+    ],
+    [
+      [8299, 4759],
+      [1, -25],
+      [75, -75],
+      [56, 22]
+    ],
+    [
+      [9457, 3529],
+      [38, 40],
+      [-37, 90],
+      [52, 19],
+      [64, 46],
+      [11, 28],
+      [161, 77],
+      [30, -85],
+      [28, -18],
+      [25, -63],
+      [-28, -75],
+      [63, -37],
+      [91, 0],
+      [83, -28],
+      [72, -49],
+      [-29, -75],
+      [8, -30],
+      [102, -165],
+      [66, -30]
+    ],
+    [
+      [9706, 5095],
+      [151, 1],
+      [122, 32]
+    ],
+    [
+      [9979, 5128],
+      [-81, -68],
+      [-19, -43],
+      [-7, -195],
+      [-38, -14],
+      [-19, -57],
+      [11, -73],
+      [40, -37],
+      [-2, -36]
+    ],
+    [
+      [9864, 4605],
+      [-82, -24]
+    ],
+    [
+      [9782, 4581],
+      [-30, 79],
+      [-48, -77],
+      [-87, 118],
+      [-37, -14],
+      [-35, -95],
+      [-47, -79],
+      [-32, -32],
+      [-57, 11],
+      [-165, -27],
+      [-8, 31],
+      [-43, -4],
+      [22, -60],
+      [-34, -66],
+      [-41, -19],
+      [-7, -37],
+      [26, -55],
+      [-22, -66],
+      [-21, -156],
+      [29, -91],
+      [-44, -77],
+      [6, -31]
+    ],
+    [
+      [9107, 3834],
+      [-33, -49],
+      [-4, -46]
+    ],
+    [
+      [8435, 4613],
+      [50, 41],
+      [-3, -69],
+      [87, -52],
+      [14, -30],
+      [-6, -92],
+      [27, -26],
+      [17, -79],
+      [57, 15],
+      [1, -45],
+      [53, 34],
+      [27, 108],
+      [-7, 107],
+      [36, 43],
+      [-41, 33],
+      [-44, 78],
+      [4, 49],
+      [-30, 103],
+      [19, 44]
+    ],
+    [
+      [8696, 4875],
+      [60, 87],
+      [11, 104],
+      [-62, 5],
+      [-93, 42],
+      [-40, -18]
+    ],
+    [
+      [8418, 5520],
+      [240, -1],
+      [14, 25],
+      [71, 4],
+      [46, -31]
+    ],
+    [
+      [8789, 5517],
+      [35, -59],
+      [8, -125],
+      [0, -204],
+      [49, -3],
+      [-3, -45],
+      [118, 25],
+      [47, -48],
+      [90, 38]
+    ],
+    [
+      [9133, 5096],
+      [-14, -66],
+      [-33, -33],
+      [-5, -81],
+      [13, -46],
+      [-6, -65],
+      [119, -48],
+      [108, 42],
+      [27, -1],
+      [46, 67],
+      [30, 10],
+      [18, -47],
+      [52, 48],
+      [51, -22],
+      [44, 28],
+      [25, 85],
+      [97, 84],
+      [1, 44]
+    ],
+    [
+      [10427, 8361],
+      [-7, -13],
+      [52, -171],
+      [-1, -76],
+      [-13, -66],
+      [13, -164],
+      [-3, -155],
+      [-52, -77],
+      [-15, -109],
+      [53, -56],
+      [33, -182],
+      [-22, -23]
+    ],
+    [
+      [10465, 7269],
+      [-86, 1],
+      [-78, 19],
+      [-10, -39],
+      [18, -98],
+      [66, -61],
+      [-30, -34],
+      [-8, -160],
+      [-61, 9],
+      [-144, 56]
+    ],
+    [
+      [10132, 6962],
+      [-9, 19],
+      [-103, 20],
+      [-54, -17],
+      [-24, 22],
+      [-56, -10],
+      [-51, 62],
+      [-63, -1]
+    ],
+    [
+      [9772, 7057],
+      [30, 84],
+      [-34, 20],
+      [-71, 96],
+      [-14, 49],
+      [-40, 64],
+      [-81, -114],
+      [-85, 1],
+      [-125, 35],
+      [-59, 58],
+      [-48, -22],
+      [-36, 39],
+      [-50, -3],
+      [-32, -30],
+      [-68, 24],
+      [-96, 2],
+      [-12, 24],
+      [-62, 18],
+      [-70, -3],
+      [-69, 44],
+      [-91, -12],
+      [-81, 34],
+      [-4, 29],
+      [-123, 41],
+      [-44, 57],
+      [-43, 2]
+    ],
+    [
+      [9298, 8233],
+      [-58, -114],
+      [-24, -76],
+      [21, -32],
+      [-17, -65],
+      [33, -86],
+      [71, -7],
+      [18, -78],
+      [72, -44],
+      [45, 27],
+      [91, 12],
+      [-48, 57],
+      [48, 59],
+      [45, 135],
+      [-28, 127],
+      [-27, 27],
+      [-4, 69]
+    ],
+    [
+      [9300, 5936],
+      [-11, -35],
+      [-85, -15],
+      [-35, -86],
+      [-51, 53],
+      [-46, 2],
+      [10, -78],
+      [-40, -62],
+      [-51, -39],
+      [-143, 21],
+      [-87, -130],
+      [28, -50]
+    ],
+    [
+      [8197, 6600],
+      [51, -36],
+      [70, -85],
+      [109, -12],
+      [-23, -72],
+      [51, -22],
+      [41, -69],
+      [69, 78],
+      [54, -2],
+      [-11, 42],
+      [56, 39],
+      [42, -11],
+      [95, -61],
+      [24, 80],
+      [55, -41],
+      [73, -4],
+      [46, -55]
+    ],
+    [
+      [8999, 6369],
+      [69, -125],
+      [54, -4],
+      [25, -33],
+      [74, -177],
+      [79, -94]
+    ],
+    [
+      [9133, 5096],
+      [36, 19],
+      [-18, 120],
+      [92, -19],
+      [24, 22],
+      [-2, 109],
+      [95, -5],
+      [82, 16],
+      [44, -68],
+      [37, 2],
+      [3, -57],
+      [107, 5],
+      [43, -51],
+      [-33, -85],
+      [63, -9]
+    ],
+    [
+      [9658, 5827],
+      [2, 34],
+      [112, 5],
+      [34, 23],
+      [122, 246]
+    ],
+    [
+      [9928, 6135],
+      [72, -31],
+      [10, 32],
+      [178, -81],
+      [43, 16],
+      [33, 81],
+      [46, -34],
+      [-10, -23],
+      [145, -61],
+      [24, 12],
+      [53, -98],
+      [24, -26],
+      [64, -118],
+      [0, -41],
+      [77, -15],
+      [38, -74]
+    ],
+    [
+      [10725, 5674],
+      [15, -187],
+      [-22, -208],
+      [76, -43]
+    ],
+    [
+      [10794, 5236],
+      [-45, -44],
+      [-152, -13],
+      [4, -70],
+      [-71, -41],
+      [-31, -35],
+      [-50, 45],
+      [-144, 55]
+    ],
+    [
+      [10305, 5133],
+      [6, 94],
+      [49, 23],
+      [31, 115],
+      [-27, 47],
+      [-97, 82],
+      [-1, 52],
+      [-69, 62],
+      [-164, -15],
+      [24, -115],
+      [-157, 33],
+      [-64, -24],
+      [-25, 21],
+      [-13, 103],
+      [-37, 23],
+      [-27, 87],
+      [-74, 15],
+      [-2, 91]
+    ],
+    [
+      [10794, 5236],
+      [64, -44],
+      [31, -50],
+      [83, -4]
+    ],
+    [
+      [10692, 4767],
+      [-61, 11],
+      [3, -41],
+      [-119, 16],
+      [-44, -20],
+      [-22, -41],
+      [-67, 6],
+      [-31, 33],
+      [-62, -50],
+      [44, -22],
+      [17, -51],
+      [-102, -59],
+      [-91, 2],
+      [-50, 58],
+      [-63, -47],
+      [-167, -9],
+      [-13, 52]
+    ],
+    [
+      [9979, 5128],
+      [80, 4],
+      [53, -15],
+      [34, 23],
+      [71, 10],
+      [42, -52],
+      [46, 35]
+    ],
+    [
+      [8431, 4681],
+      [7, 36],
+      [55, 69],
+      [48, 18],
+      [59, 71],
+      [70, 40],
+      [26, -40]
+    ],
+    [
+      [9928, 6135],
+      [-56, 61],
+      [24, 51],
+      [-11, 60],
+      [25, 133],
+      [-10, 10],
+      [84, 114],
+      [36, 20],
+      [85, 5],
+      [62, 40],
+      [16, 57],
+      [-60, -3],
+      [-66, 55],
+      [9, 118],
+      [66, 106]
+    ],
+    [
+      [10465, 7269],
+      [39, -22],
+      [9, -35],
+      [41, -33],
+      [-4, -37],
+      [111, -50],
+      [38, -82],
+      [47, -1],
+      [26, 21],
+      [183, 5],
+      [58, 25],
+      [71, -24],
+      [12, -42],
+      [55, -1]
+    ],
+    [
+      [11151, 6993],
+      [-22, -51],
+      [-28, 3],
+      [-14, -72],
+      [-49, -26],
+      [-34, -58],
+      [3, -47],
+      [39, -41],
+      [96, -44],
+      [42, -52],
+      [5, -45],
+      [-26, -127],
+      [-49, 5],
+      [-6, 41],
+      [-58, 52],
+      [-86, 16],
+      [-42, 65],
+      [-46, -42],
+      [-36, -108],
+      [20, -43],
+      [26, -173],
+      [-16, -93],
+      [41, -226],
+      [-17, -79],
+      [69, 30],
+      [39, -1],
+      [11, -62],
+      [78, -4],
+      [-9, -46],
+      [-81, -46],
+      [-91, 11],
+      [-122, -13],
+      [-63, -43]
+    ],
+    [
+      [9772, 7057],
+      [-23, -47],
+      [-79, 55],
+      [-81, -1],
+      [-56, 22],
+      [0, -97],
+      [-128, -24],
+      [8, -86],
+      [-29, -113],
+      [-35, -76],
+      [-15, -92],
+      [17, -42],
+      [-92, 21],
+      [-43, -8],
+      [-99, -80],
+      [-61, 1],
+      [-57, -121]
+    ],
+    [
+      [9107, 3834],
+      [34, 30],
+      [84, 20],
+      [40, -35],
+      [63, -1],
+      [103, -27],
+      [48, 43],
+      [29, -4],
+      [44, 43],
+      [92, -10],
+      [10, 102],
+      [-117, 53],
+      [-22, 49],
+      [87, 0],
+      [25, 85],
+      [35, 47],
+      [12, 46],
+      [53, 66],
+      [-13, 47],
+      [-7, 99],
+      [19, 45],
+      [56, 49]
+    ],
+    [
+      [9658, 5827],
+      [-101, -2],
+      [-4, 28],
+      [-135, 58],
+      [-44, -2],
+      [-74, 27]
+    ],
+    [
+      [1595, 16432],
+      [-52, -126],
+      [-90, -70],
+      [-41, -57],
+      [23, -60],
+      [-53, -99],
+      [72, -43],
+      [19, 70],
+      [74, -26],
+      [19, 47],
+      [109, -50],
+      [-13, -22],
+      [-15, -116],
+      [22, -143],
+      [61, -31]
+    ],
+    [
+      [1730, 15706],
+      [-6, -37],
+      [-103, 74],
+      [-25, -40],
+      [-47, 20],
+      [22, 44],
+      [-60, 0],
+      [-122, -34],
+      [-77, -32],
+      [-47, -46],
+      [-40, -16],
+      [-56, 28],
+      [-59, -45]
+    ],
+    [
+      [1110, 15622],
+      [-63, 2],
+      [-47, -14],
+      [-69, 55],
+      [20, 30],
+      [-55, 39]
+    ],
+    [
+      [896, 15734],
+      [143, 5],
+      [13, 53],
+      [-19, 53],
+      [0, 86],
+      [-38, 51],
+      [41, 244],
+      [25, 41],
+      [-54, 41],
+      [22, 41],
+      [60, 6],
+      [-5, 59],
+      [91, 127]
+    ],
+    [
+      [1175, 16541],
+      [63, -62],
+      [37, 25],
+      [-51, 46]
+    ],
+    [
+      [1224, 16550],
+      [27, 37],
+      [76, -62],
+      [216, -37],
+      [52, -56]
+    ],
+    [
+      [944, 15367],
+      [-68, -77],
+      [10, -82],
+      [28, -11],
+      [-23, -54],
+      [-41, -41],
+      [3, -70],
+      [-54, -2],
+      [-214, -172],
+      [-22, -34],
+      [-67, 105],
+      [-19, 126],
+      [-50, 43],
+      [-121, -6],
+      [-104, -33]
+    ],
+    [
+      [202, 15059],
+      [-9, 38],
+      [21, 38],
+      [7, 97],
+      [-18, 83],
+      [3, 95],
+      [125, 34],
+      [4, 35],
+      [101, -9],
+      [75, 27],
+      [81, -8],
+      [92, 14],
+      [49, 71],
+      [-6, 47],
+      [-28, 56],
+      [78, 8],
+      [20, 22],
+      [82, -19],
+      [17, 46]
+    ],
+    [
+      [1110, 15622],
+      [-46, -72],
+      [14, -23],
+      [90, -6],
+      [-160, -83],
+      [-64, -71]
+    ],
+    [
+      [1803, 13017],
+      [-60, 16],
+      [-24, -34],
+      [-53, 3],
+      [-19, 112]
+    ],
+    [
+      [1647, 13114],
+      [-28, 44],
+      [-62, -4],
+      [-22, 30],
+      [-48, 2],
+      [-62, 43],
+      [46, 27],
+      [-89, 55],
+      [-20, 41],
+      [-56, 47],
+      [-13, 66],
+      [52, -11],
+      [59, 112],
+      [0, 28],
+      [-132, 176],
+      [-57, 31],
+      [-39, -84],
+      [-42, 2],
+      [-38, 39],
+      [15, 45],
+      [-18, 49],
+      [-29, 23],
+      [31, 36]
+    ],
+    [
+      [1095, 13911],
+      [35, 5],
+      [115, 89],
+      [31, -20],
+      [44, 24],
+      [47, -15],
+      [28, 66],
+      [92, 27],
+      [12, 103],
+      [24, 24]
+    ],
+    [
+      [1523, 14214],
+      [23, 69]
+    ],
+    [
+      [1546, 14283],
+      [151, -45],
+      [70, 63],
+      [73, 26],
+      [26, 77],
+      [54, 17],
+      [92, 4],
+      [42, 35]
+    ],
+    [
+      [2054, 14460],
+      [108, -42],
+      [107, -13],
+      [58, -27],
+      [17, -31],
+      [88, -26],
+      [86, -5]
+    ],
+    [
+      [2390, 14028],
+      [-30, -63],
+      [-56, -5],
+      [-12, -34],
+      [-93, -13],
+      [15, -71],
+      [-26, -27],
+      [-49, 6],
+      [26, -94],
+      [-15, -44],
+      [-86, -44],
+      [9, -39],
+      [-30, -76],
+      [-84, -87],
+      [-48, -15],
+      [-92, -5],
+      [-41, -72],
+      [-38, -10],
+      [15, -52],
+      [-37, -29],
+      [11, -66],
+      [41, -26],
+      [-8, -67],
+      [41, -78]
+    ],
+    [
+      [1878, 12692],
+      [-43, 43],
+      [20, 45],
+      [-10, 96],
+      [21, 61],
+      [-20, 61],
+      [-43, 19]
+    ],
+    [
+      [1595, 16432],
+      [130, -136],
+      [69, -53],
+      [97, -37],
+      [131, -78],
+      [110, -103],
+      [97, -65]
+    ],
+    [
+      [2229, 15960],
+      [-40, -27],
+      [-21, -61],
+      [-32, 18],
+      [-37, -61],
+      [-10, -58],
+      [-116, 1],
+      [-53, 69],
+      [-66, 8],
+      [-111, -21],
+      [6, -80],
+      [-19, -42]
+    ],
+    [
+      [1175, 16541],
+      [49, 9]
+    ],
+    [
+      [2229, 15960],
+      [7, -5],
+      [309, -37],
+      [80, -34],
+      [51, -54],
+      [34, -88],
+      [-32, -107],
+      [-28, -51],
+      [-66, -83],
+      [-15, -40],
+      [-124, -39],
+      [-35, 12],
+      [-170, -45],
+      [-137, -48],
+      [-51, -57],
+      [-41, -189],
+      [-32, -77],
+      [8, -55],
+      [-57, -109],
+      [-37, -98],
+      [2, -49],
+      [56, -152],
+      [53, -68],
+      [50, -27]
+    ],
+    [
+      [1546, 14283],
+      [1, 62],
+      [88, 121],
+      [-50, 66],
+      [-28, 12],
+      [-11, 127],
+      [-60, 2],
+      [71, 180],
+      [-77, 14],
+      [-66, 48],
+      [-21, 43],
+      [-40, -12],
+      [-61, -45]
+    ],
+    [
+      [1292, 14901],
+      [-70, -16],
+      [-9, 86],
+      [36, 17],
+      [44, 71],
+      [1, 35],
+      [-40, 31],
+      [63, 87],
+      [-139, 113],
+      [-68, 44],
+      [-67, -9],
+      [-99, 7]
+    ],
+    [
+      [1647, 13114],
+      [-65, -46],
+      [-6, -51],
+      [-26, -25],
+      [-139, -78],
+      [-63, 19],
+      [-17, 61],
+      [42, 37],
+      [-10, 126],
+      [-24, 11],
+      [-43, -79],
+      [-143, -130],
+      [-91, 54],
+      [-83, 0],
+      [-41, 33],
+      [-39, -108],
+      [6, -47],
+      [45, -41],
+      [39, -6],
+      [-29, -61],
+      [6, -39],
+      [-35, -12],
+      [-43, -62],
+      [-22, -104],
+      [12, -61],
+      [-17, -102]
+    ],
+    [
+      [861, 12403],
+      [-87, -13],
+      [-81, 55],
+      [-105, 250],
+      [-20, 73],
+      [5, 67],
+      [-50, 80],
+      [-9, 71],
+      [33, 86],
+      [-35, 39],
+      [25, 52],
+      [-20, 98],
+      [-26, 41],
+      [37, 44],
+      [2, 33],
+      [-60, 102],
+      [-69, 8],
+      [-76, 82]
+    ],
+    [
+      [325, 13571],
+      [37, 48],
+      [45, 92],
+      [16, 57],
+      [51, 48],
+      [64, -4],
+      [84, 98],
+      [119, 86],
+      [20, -51],
+      [42, 19],
+      [-8, -62],
+      [61, -21],
+      [78, 92],
+      [48, 23],
+      [54, -55],
+      [39, 23],
+      [20, -53]
+    ],
+    [
+      [615, 14352],
+      [79, -46],
+      [6, -32],
+      [52, -14],
+      [63, 22],
+      [42, -109],
+      [124, -19],
+      [98, 23],
+      [39, 58],
+      [90, -5],
+      [175, 44],
+      [29, 0],
+      [111, -60]
+    ],
+    [
+      [325, 13571],
+      [-59, 26],
+      [-66, 98],
+      [-13, 114],
+      [-25, 113],
+      [4, 99],
+      [-60, 74],
+      [-106, 231],
+      [14, 77],
+      [37, 43]
+    ],
+    [
+      [51, 14446],
+      [159, 41],
+      [-7, -45],
+      [39, -86],
+      [53, -16],
+      [97, 3],
+      [41, -38],
+      [66, -13],
+      [82, 19],
+      [34, 41]
+    ],
+    [
+      [615, 14352],
+      [-23, 38],
+      [112, 68],
+      [-30, 68],
+      [75, 8],
+      [42, -39],
+      [100, 25],
+      [50, -21],
+      [38, 26],
+      [58, 77],
+      [-28, 15],
+      [42, 81],
+      [-85, 9],
+      [12, 58],
+      [266, 95],
+      [48, 41]
+    ],
+    [
+      [51, 14446],
+      [37, 92],
+      [59, 343],
+      [-24, 98],
+      [74, 62],
+      [5, 18]
+    ],
+    [
+      [1536, 11973],
+      [-59, 16],
+      [-37, 33],
+      [-170, -6],
+      [-51, 47],
+      [-23, 129],
+      [-88, 41],
+      [-44, -29],
+      [-117, 42],
+      [-25, 25],
+      [-18, 69],
+      [-43, 63]
+    ],
+    [
+      [5574, 12975],
+      [4, 96],
+      [-38, 4],
+      [-109, 41],
+      [-11, -29],
+      [-109, 39],
+      [0, 47],
+      [-81, 36],
+      [14, 93]
+    ],
+    [
+      [5244, 13302],
+      [54, -15],
+      [53, 63],
+      [93, 49],
+      [78, -2],
+      [110, 45],
+      [103, 91],
+      [42, -6],
+      [32, 56],
+      [9, 180],
+      [84, 145],
+      [35, 112]
+    ],
+    [
+      [5937, 14020],
+      [38, -9]
+    ],
+    [
+      [5975, 14011],
+      [-10, -47],
+      [-37, -67],
+      [9, -43],
+      [78, -35],
+      [108, -72],
+      [-48, -45],
+      [84, -24],
+      [-12, -48],
+      [68, -14],
+      [-8, -130],
+      [45, -38],
+      [-15, -118],
+      [53, -32],
+      [-22, -60],
+      [68, -26],
+      [-5, -23]
+    ],
+    [
+      [6331, 13189],
+      [-7, -37],
+      [-87, 21],
+      [-43, -66],
+      [-129, -25],
+      [-159, 42],
+      [-50, -71],
+      [-44, -33],
+      [-28, -88],
+      [-127, 40],
+      [-14, -32],
+      [-69, 35]
+    ],
+    [
+      [5519, 12785],
+      [-34, 17],
+      [-43, -75],
+      [-13, -156],
+      [-123, 28],
+      [-136, 67],
+      [-78, 72],
+      [-27, -31]
+    ],
+    [
+      [5065, 12707],
+      [-30, 22]
+    ],
+    [
+      [4893, 13544],
+      [148, -64],
+      [10, -42],
+      [170, -90],
+      [23, -46]
+    ],
+    [
+      [5574, 12975],
+      [-46, -98],
+      [26, -18],
+      [-35, -74]
+    ],
+    [
+      [6553, 13121],
+      [-154, 28],
+      [-68, 40]
+    ],
+    [
+      [5975, 14011],
+      [136, -26],
+      [259, -33],
+      [192, -78],
+      [122, -43],
+      [143, -107],
+      [80, -9],
+      [239, -95],
+      [100, 11],
+      [223, 38],
+      [18, 8],
+      [234, 40],
+      [18, -2]
+    ],
+    [
+      [5065, 12707],
+      [-51, -114],
+      [2, -40]
+    ],
+    [
+      [5016, 12553],
+      [-99, -52],
+      [5, -43],
+      [-53, -27],
+      [-94, -160],
+      [-32, -28],
+      [68, -76],
+      [22, -75],
+      [-2, -64],
+      [39, -43],
+      [21, -67],
+      [-73, -25],
+      [-32, -46],
+      [-109, -27],
+      [-44, 40],
+      [-70, -32],
+      [-40, -49],
+      [-56, -8],
+      [-81, -100],
+      [-17, -42],
+      [-62, 6],
+      [-57, -58],
+      [30, -81],
+      [-91, -88],
+      [-5, -126],
+      [-31, -27]
+    ],
+    [
+      [5519, 12785],
+      [78, -84],
+      [57, -45],
+      [17, -37],
+      [85, -14],
+      [36, -26],
+      [-13, -94],
+      [14, -87],
+      [23, -53],
+      [-32, -14],
+      [-34, -69],
+      [0, -88],
+      [40, -7],
+      [1, -53],
+      [63, -23],
+      [-29, -121],
+      [-35, -13],
+      [-75, -70],
+      [-6, -71],
+      [-54, 10],
+      [-63, 35],
+      [-12, -53]
+    ],
+    [
+      [5580, 11808],
+      [-43, 53],
+      [-65, -34],
+      [-27, 38],
+      [-27, 110],
+      [-133, 72],
+      [-46, 15],
+      [-71, 63],
+      [18, 40],
+      [-8, 41],
+      [-120, 65],
+      [18, 38],
+      [-47, 122],
+      [-13, 122]
+    ],
+    [
+      [5008, 14225],
+      [134, 45],
+      [198, 23],
+      [162, -19],
+      [38, -79],
+      [65, -34],
+      [113, -23],
+      [81, -54],
+      [138, -64]
+    ],
+    [
+      [5690, 10193],
+      [35, 75],
+      [10, 51],
+      [-24, 50],
+      [-26, 119],
+      [39, 80],
+      [113, 9],
+      [11, -58],
+      [55, -7],
+      [-3, 78],
+      [67, 22],
+      [40, -4],
+      [17, 35],
+      [-31, 37],
+      [-37, 94],
+      [-39, 29],
+      [-23, 46],
+      [-62, 48],
+      [68, 134],
+      [37, 19],
+      [-30, 40],
+      [-3, 62],
+      [-46, 48],
+      [5, 70]
+    ],
+    [
+      [5863, 11270],
+      [64, 17],
+      [49, -13]
+    ],
+    [
+      [5976, 11274],
+      [99, -73],
+      [53, -15],
+      [66, 2],
+      [122, 113]
+    ],
+    [
+      [5976, 11274],
+      [26, 28],
+      [-22, 35],
+      [21, 43],
+      [-1, 62],
+      [36, 82],
+      [-94, 22],
+      [-91, -53],
+      [-59, 72],
+      [-117, 114],
+      [-14, 43],
+      [-73, 15],
+      [-8, 71]
+    ],
+    [
+      [5863, 11270],
+      [-45, 26],
+      [-56, -14],
+      [-17, 37],
+      [-85, 19],
+      [-16, -65],
+      [-64, -49],
+      [12, -53],
+      [-38, 0],
+      [-27, -37],
+      [-65, 27],
+      [-53, 3],
+      [-29, 73],
+      [-59, -75],
+      [-45, 13],
+      [-32, 36],
+      [-36, -8],
+      [-65, -62],
+      [-14, 4],
+      [-45, -97],
+      [-15, -74],
+      [-93, -49],
+      [13, -40],
+      [-53, -99],
+      [42, -90],
+      [56, -61],
+      [-29, -30],
+      [38, -95],
+      [-64, -49],
+      [-113, -26],
+      [-65, 20],
+      [-12, 92],
+      [-33, -14],
+      [-73, 40],
+      [30, 53],
+      [-27, 45],
+      [-51, 49],
+      [-18, -45],
+      [-84, -10],
+      [-28, -24],
+      [-5, -58],
+      [-57, -8]
+    ],
+    [
+      [13978, 6295],
+      [-48, 1],
+      [-30, -60],
+      [-62, 17],
+      [-18, 44],
+      [-36, 27],
+      [-56, 95],
+      [-36, 39],
+      [-124, -4],
+      [-30, -102],
+      [-44, 13],
+      [-27, -38],
+      [-52, 27],
+      [-59, -27],
+      [-64, 6],
+      [9, -47],
+      [-50, -28],
+      [-93, -7],
+      [9, -48],
+      [-62, -30],
+      [-17, -63],
+      [54, -126],
+      [43, -30],
+      [74, -24],
+      [39, 43],
+      [88, -48],
+      [23, -92],
+      [-48, -45]
+    ],
+    [
+      [13361, 5788],
+      [-70, -19],
+      [-64, 39],
+      [-35, 48],
+      [-89, 18],
+      [-71, 35],
+      [-34, -7],
+      [-91, -142],
+      [-37, -21],
+      [40, -97],
+      [5, -54],
+      [-81, -62],
+      [-8, -58],
+      [-30, -94]
+    ],
+    [
+      [12723, 5339],
+      [-35, 4],
+      [-96, 65],
+      [-24, -7],
+      [-84, -84],
+      [-117, 83],
+      [-17, -14],
+      [-58, 41],
+      [16, 76],
+      [-93, 65],
+      [114, 74],
+      [29, -2],
+      [9, 87],
+      [26, -5],
+      [32, 94],
+      [-13, 111],
+      [-52, 61],
+      [-33, -34],
+      [-81, -29],
+      [-20, -28],
+      [-36, 55],
+      [-81, 19],
+      [-6, 78],
+      [-48, 33],
+      [68, 152],
+      [49, 10],
+      [24, 33],
+      [-112, -4],
+      [-130, 59],
+      [-70, -25],
+      [-120, 8]
+    ],
+    [
+      [11764, 6315],
+      [21, 15],
+      [-4, 64],
+      [50, -13],
+      [57, 31],
+      [-37, 43],
+      [-28, 83],
+      [-48, 5],
+      [15, 58],
+      [-48, 12],
+      [-35, 47],
+      [-42, -3],
+      [-77, 30],
+      [-65, 80],
+      [-25, 155]
+    ],
+    [
+      [11498, 6922],
+      [27, 27],
+      [73, -11],
+      [22, -48],
+      [91, -1],
+      [55, 51],
+      [73, 4],
+      [84, 97],
+      [13, 89],
+      [54, 21],
+      [75, -17],
+      [134, -55],
+      [39, 19],
+      [45, -82],
+      [51, -45],
+      [87, 14],
+      [38, 33],
+      [48, 68]
+    ],
+    [
+      [12507, 7086],
+      [69, 15],
+      [15, 39],
+      [67, 25],
+      [21, 43],
+      [87, -34],
+      [68, 18],
+      [76, -39],
+      [71, 14],
+      [13, 56],
+      [91, 23],
+      [29, 75],
+      [57, -23]
+    ],
+    [
+      [13171, 7298],
+      [49, 0],
+      [53, 24],
+      [29, -75],
+      [154, 59],
+      [56, 52],
+      [61, -31],
+      [87, 52]
+    ],
+    [
+      [13660, 7379],
+      [62, -24]
+    ],
+    [
+      [13361, 5788],
+      [37, -28],
+      [25, -79],
+      [46, 7],
+      [15, -98],
+      [38, -41],
+      [148, -43]
+    ],
+    [
+      [13670, 5506],
+      [-11, -101],
+      [-85, -47],
+      [-85, 21],
+      [-38, -63],
+      [-79, 31],
+      [-30, -18],
+      [13, -132],
+      [60, -80],
+      [19, -47],
+      [76, -116],
+      [-19, -87],
+      [68, -104],
+      [11, -43]
+    ],
+    [
+      [11764, 6315],
+      [-39, -49],
+      [-51, -9],
+      [-47, -32],
+      [4, -37],
+      [-48, -33],
+      [-109, 49],
+      [-28, -29],
+      [23, -99],
+      [-22, -13],
+      [-6, -73],
+      [-27, -30],
+      [-17, -113],
+      [-29, -41],
+      [20, -60],
+      [49, 11],
+      [49, -26],
+      [-3, -116],
+      [-16, -122],
+      [-32, 23],
+      [-27, -35],
+      [20, -36],
+      [22, -121],
+      [-29, -42]
+    ],
+    [
+      [11151, 6993],
+      [67, 6],
+      [37, -44],
+      [47, 1],
+      [16, 32],
+      [-10, 45],
+      [59, 12],
+      [23, 25]
+    ],
+    [
+      [11390, 7070],
+      [87, -72],
+      [21, -76]
+    ],
+    [
+      [13171, 7298],
+      [11, 86],
+      [-25, 23],
+      [-21, 85],
+      [87, 51],
+      [61, 102],
+      [-38, 122],
+      [-4, 55]
+    ],
+    [
+      [13242, 7822],
+      [-18, 39],
+      [33, 25],
+      [111, -6],
+      [33, 39],
+      [67, -64],
+      [61, -40],
+      [82, -32],
+      [69, -44],
+      [-11, -29],
+      [-71, -63],
+      [50, -66],
+      [2, -132],
+      [10, -70]
+    ],
+    [
+      [13242, 7822],
+      [-123, 2],
+      [34, 43],
+      [-18, 41],
+      [-38, 32],
+      [-31, 108],
+      [9, 55],
+      [-67, 89],
+      [-33, -18],
+      [-39, 76],
+      [-32, -2],
+      [-69, 171]
+    ],
+    [
+      [12268, 8457],
+      [50, -64],
+      [-39, -58],
+      [-6, -114],
+      [89, -36],
+      [35, 0],
+      [-12, -106],
+      [64, -119],
+      [-3, -92],
+      [-56, -66],
+      [16, -82],
+      [-64, 5],
+      [-22, -21],
+      [40, -230],
+      [-6, -95],
+      [85, -44],
+      [30, -57],
+      [41, 16],
+      [40, -17],
+      [-21, -59],
+      [10, -40],
+      [-44, -41],
+      [12, -51]
+    ],
+    [
+      [11390, 7070],
+      [-17, 52],
+      [-48, -8],
+      [-34, 30],
+      [-29, 74],
+      [28, 58],
+      [4, 80],
+      [53, 92],
+      [83, 34],
+      [22, 125],
+      [39, 54],
+      [0, 115],
+      [-53, 78],
+      [-34, -10],
+      [-61, 129],
+      [-40, 40],
+      [-40, 76],
+      [-45, 24],
+      [-61, 180],
+      [56, 65],
+      [-21, 93],
+      [13, 105],
+      [-24, 46],
+      [-70, 22],
+      [-8, 23]
+    ],
+    [
+      [14874, 5116],
+      [-18, 29],
+      [-102, -21],
+      [-61, 17],
+      [-38, 49],
+      [-45, -8],
+      [-134, -55],
+      [-67, -5],
+      [-74, 46],
+      [-55, -20],
+      [-126, 70],
+      [-3, 21],
+      [-93, 38],
+      [-8, 29],
+      [-85, -13],
+      [-53, -41],
+      [-68, 52],
+      [25, 68],
+      [-1, 47],
+      [-93, 79],
+      [-49, 18],
+      [-56, -10]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0002541612516265452, 0.00017967884493880738],
+    "translate": [22.3571305, 41.2353299990001]
+  },
+  "objects": {
+    "bulgaria": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4, 5, 6]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLV20",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67338",
+            "NAME_1": "SLV",
+            "TYPE_1": "Област",
+            "ID_2": "67338",
+            "NAME_2": "Сливен",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[7, 8, 9, -4]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLV24",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67338",
+            "NAME_1": "SLV",
+            "TYPE_1": "Област",
+            "ID_2": "72165",
+            "NAME_2": "Твърдица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[10, -7, 11, 12, 13, 14]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLV11",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67338",
+            "NAME_1": "SLV",
+            "TYPE_1": "Област",
+            "ID_2": "39030",
+            "NAME_2": "Котел",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-3, 15, 16, 17, 18, -8]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLV16",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67338",
+            "NAME_1": "SLV",
+            "TYPE_1": "Област",
+            "ID_2": "51809",
+            "NAME_2": "Нова Загора",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[19, 20, 21, 22, 23, 24]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RAZ16",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "61710",
+            "NAME_1": "RAZ",
+            "TYPE_1": "Област",
+            "ID_2": "40422",
+            "NAME_2": "Кубрат",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[25, 26, 27, 28, 29]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RAZ36",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "61710",
+            "NAME_1": "RAZ",
+            "TYPE_1": "Област",
+            "ID_2": "77308",
+            "NAME_2": "Цар Калоян",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[30, 31, 32, 33]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RAZ17",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "61710",
+            "NAME_1": "RAZ",
+            "TYPE_1": "Област",
+            "ID_2": "44166",
+            "NAME_2": "Лозница",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-30, 34, -20, 35, 36, 37, -34, 38, 39]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RAZ26",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "61710",
+            "NAME_1": "RAZ",
+            "TYPE_1": "Област",
+            "ID_2": "61710",
+            "NAME_2": "Разград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[40, 41, -37, 42, 43, 44]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RAZ14",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "61710",
+            "NAME_1": "RAZ",
+            "TYPE_1": "Област",
+            "ID_2": "32874",
+            "NAME_2": "Исперих",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-43, -36, -25, 45, 46]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RAZ11",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "61710",
+            "NAME_1": "RAZ",
+            "TYPE_1": "Област",
+            "ID_2": "30065",
+            "NAME_2": "Завет",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[47, -31, -38, -42, 48, 49]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RAZ29",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "61710",
+            "NAME_1": "RAZ",
+            "TYPE_1": "Област",
+            "ID_2": "65276",
+            "NAME_2": "Самуил",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[50, 51, 52, 53, 54, 55]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO16",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "23409",
+            "NAME_2": "Драгоман",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[56, 57, 58, 59, 60, 61, 62, 63]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SOF46",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SOF",
+            "TYPE_1": "Област",
+            "ID_2": "68134",
+            "NAME_2": "Столична",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, -62]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO39",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "65231",
+            "NAME_2": "Самоков",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[76, -58, 77, 78, 79, 80, 81]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO43",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "65869",
+            "NAME_2": "Своге",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[82, 83, 84, 85]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO58",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "80323",
+            "NAME_2": "Челопеч",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-60, 86, 87, 88, 89]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO17",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "27303",
+            "NAME_2": "Елин Пелин",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-67, 90]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO59",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "22006",
+            "NAME_2": "Долна баня",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[91, 92, 93, 94, 95, 96]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO24",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "38558",
+            "NAME_2": "Копривщица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[97, -68, -91, -66, 98, 99, 100, 101]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO25",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "38902",
+            "NAME_2": "Костенец",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[102, 103, 104, 105, -64]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO06",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "5027",
+            "NAME_2": "Божурище",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[106, -97, 107, 108]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO54",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "504",
+            "NAME_2": "Антон",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[109, 110, -86, 111, 112, 113, 114]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO18",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "27632",
+            "NAME_2": "Етрополе",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[115, 116, 117, 118, -84]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO57",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "80011",
+            "NAME_2": "Чавдар",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[119, 120, 121, -115, 122]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO34",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "58030",
+            "NAME_2": "Правец",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-79, 123, -53, 124, 125, 126]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO09",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "15309",
+            "NAME_2": "Годеч",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-65, -61, -90, 127, 128, 129, -99]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO20",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "32901",
+            "NAME_2": "Ихтиман",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[[-116, -83, -111, 130, 131, 132]], [[-118, 133, 134]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ISO": "BG-SFO47",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "31044",
+            "NAME_2": "Златица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-96, 135, -132, 136, -108]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO55",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "56407",
+            "NAME_2": "Пирдоп",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[137, -113, 138, -88]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO10",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "16314",
+            "NAME_2": "Горна Малина",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[139, -55, 140, -105]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO45",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "67372",
+            "NAME_2": "Сливница",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-123, -114, -138, -87, -59, -77, 141, 142]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO07",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "5815",
+            "NAME_2": "Ботевград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[143, -128, -89, -139, -112, -85, -119, -135]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO56",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "48324",
+            "NAME_2": "Мирково",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-57, -106, -141, -54, -124, -78]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SFO26",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68134",
+            "NAME_1": "SFO",
+            "TYPE_1": "Област",
+            "ID_2": "38978",
+            "NAME_2": "Костинброд",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[144, 145, 146, 147]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU23",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "58222",
+            "NAME_2": "Велики Преслав",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[148, 149, 150, -49, -41, 151, 152, 153]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU18",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "36079",
+            "NAME_2": "Каолиново",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[154, 155, -148, 156, 157, 158, 159]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU30",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "83510",
+            "NAME_2": "Шумен",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[160, -154, 161, 162, 163]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU21",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "51651",
+            "NAME_2": "Никола Козлево",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-50, -151, 164]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU07",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "10642",
+            "NAME_2": "Венец",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[165, 166, 167, -145, -156, 168, 169]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU25",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "67708",
+            "NAME_2": "Смядово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[170, 171, -159, 172, -149, -161, 173]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU22",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "52009",
+            "NAME_2": "Нови пазар",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[174, 175, -160, -172]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU19",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "36587",
+            "NAME_2": "Каспичан",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[176, -146, -168, 177, -14, 178]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU10",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "12766",
+            "NAME_2": "Върбица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-165, -150, -173, -158, 179, -32, -48]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SHU11",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "83510",
+            "NAME_1": "SHU",
+            "TYPE_1": "Област",
+            "ID_2": "14516",
+            "NAME_2": "Хитрино",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[180, 181, 182, 183]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PER22",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55871",
+            "NAME_1": "PER",
+            "TYPE_1": "Област",
+            "ID_2": "37513",
+            "NAME_2": "Ковачевци",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-76, 184, -182, 185, -103, -63]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PER32",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55871",
+            "NAME_1": "PER",
+            "TYPE_1": "Област",
+            "ID_2": "55871",
+            "NAME_2": "Перник",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-104, -186, -181, 186, 187, -56, -140]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PER08",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55871",
+            "NAME_1": "PER",
+            "TYPE_1": "Област",
+            "ID_2": "6286",
+            "NAME_2": "Брезник",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-184, 188, 189, 190, 191, -187]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PER19",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55871",
+            "NAME_1": "PER",
+            "TYPE_1": "Област",
+            "ID_2": "30778",
+            "NAME_2": "Земен",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-188, -192, 192, 193, -51]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PER51",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55871",
+            "NAME_1": "PER",
+            "TYPE_1": "Област",
+            "ID_2": "73273",
+            "NAME_2": "Трън",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[194, 195, 196, -189, -183, -185, -75]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PER36",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55871",
+            "NAME_1": "PER",
+            "TYPE_1": "Област",
+            "ID_2": "61577",
+            "NAME_2": "Радомир",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[197, 198, 199, 200, 201, 202]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML16",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "46045",
+            "NAME_2": "Мадан",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[203, 204, 205, 206, 207]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML10",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "23025",
+            "NAME_2": "Доспат",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[208, -198, 209, 210]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML27",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "63207",
+            "NAME_2": "Рудозем",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[211, 212, 213, 214, 215]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML38",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "80371",
+            "NAME_2": "Чепеларе",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[216, -207, 217, 218]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML05",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "5462",
+            "NAME_2": "Борино",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[219, 220, -200, 221, 222, 223]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML02",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "44402",
+            "NAME_2": "Баните",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[224, 225, -210, -203, 226, 227]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML11",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "31111",
+            "NAME_2": "Златоград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[228, -227, -202, 229]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML18",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "51319",
+            "NAME_2": "Неделино",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[230, 231, -219, 232, 233, 234, 235, -212]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML09",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "20465",
+            "NAME_2": "Девин",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[236, -222, -199, -209, 237, -231, -216]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SML31",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "67653",
+            "NAME_1": "SML",
+            "TYPE_1": "Област",
+            "ID_2": "67653",
+            "NAME_2": "Смолян",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[238, 239, 240, 241, 242]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-JAM07",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "87374",
+            "NAME_1": "JAM",
+            "TYPE_1": "Област",
+            "ID_2": "27382",
+            "NAME_2": "Елхово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[243, -241, 244, 245, -16, -2], [246]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-JAM25",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "87374",
+            "NAME_1": "JAM",
+            "TYPE_1": "Област",
+            "ID_2": "87374",
+            "NAME_2": "Тунджа",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-247]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-JAM26",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "87374",
+            "NAME_1": "JAM",
+            "TYPE_1": "Област",
+            "ID_2": "87374",
+            "NAME_2": "Ямбол",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-242, -244, -1, -11, 247, 248, 249, 250]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-JAM22",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "87374",
+            "NAME_1": "JAM",
+            "TYPE_1": "Област",
+            "ID_2": "69660",
+            "NAME_2": "Стралджа",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[251, -243, -251, 252]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-JAM03",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "87374",
+            "NAME_1": "JAM",
+            "TYPE_1": "Област",
+            "ID_2": "5284",
+            "NAME_2": "Болярово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[253, -80, 254, 255]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON12",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "12961",
+            "NAME_2": "Вършец",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[256, 257, 258, 259, 260, 261, 262]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON24",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "44238",
+            "NAME_2": "Лом",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[263, 264, 265, 266, 267]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON36",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "81390",
+            "NAME_2": "Чипровци",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-259, 268, 269, 270]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON26",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "47593",
+            "NAME_2": "Медковец",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-260, -271, 271, 272]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON07",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "6570",
+            "NAME_2": "Брусарци",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[273, 274, -269, -258, 275]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON38",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "87299",
+            "NAME_2": "Якимово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[276, -276, -257, 277, 278, 279]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON11",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "12543",
+            "NAME_2": "Вълчедръм",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-126, 280, -268, 281, 282]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON14",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "14773",
+            "NAME_2": "Георги Дамяново",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-275, 283, 284, 285, -282, -267, 286, -272, -270]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON29",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "48489",
+            "NAME_2": "Монтана",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-127, -283, -286, 287, -255]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON02",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "3928",
+            "NAME_2": "Берковица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[288, 289, -284, -274, -277]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-MON04",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "48489",
+            "NAME_1": "MON",
+            "TYPE_1": "Област",
+            "ID_2": "5236",
+            "NAME_2": "Бойчиновци",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[290, 291, -234, 292, 293, 294, 295, 296]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ06",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "6207",
+            "NAME_2": "Брацигово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[297, 298, 299, -102]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ04",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "3592",
+            "NAME_2": "Белово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[300, 301, 302, -298, -101, 303]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ29",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "66264",
+            "NAME_2": "Септември",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[304, -205, 305, 306, 307, 308, 309]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ39",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "70648",
+            "NAME_2": "Сърница",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[310, 311, 312, -294]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ21",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "56277",
+            "NAME_2": "Пещера",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-293, -233, -218, -206, -305, 313, 314, -311]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ03",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "2837",
+            "NAME_2": "Батак",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[315, -304, -100, -130, 316]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ14",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "43369",
+            "NAME_2": "Лесичово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-303, 317, -314, -310, 318, 319, -299]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ08",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "10450",
+            "NAME_2": "Велинград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[320, 321, 322, 323, -94]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ32",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "69835",
+            "NAME_2": "Стрелча",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[324, 325, 326, -295, -313, 327, -301, -316, 328, -323]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ19",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "55155",
+            "NAME_2": "Пазарджик",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-302, -328, -312, -315, -318]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ24",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "62004",
+            "NAME_2": "Ракитово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-329, -317, -129, -144, -134, -117, -133, -136, -95, -324]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PAZ20",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "55155",
+            "NAME_1": "PAZ",
+            "TYPE_1": "Област",
+            "ID_2": "55302",
+            "NAME_2": "Панагюрище",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[329, 330, 331, 332, 333, -152, -45]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLS10",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "66425",
+            "NAME_1": "SLS",
+            "TYPE_1": "Област",
+            "ID_2": "24030",
+            "NAME_2": "Дулово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-330, -44, -47, 334, 335, 336]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLS07",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "66425",
+            "NAME_1": "SLS",
+            "TYPE_1": "Област",
+            "ID_2": "15031",
+            "NAME_2": "Главиница",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-46, -24, 337, 338, -335]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLS34",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "66425",
+            "NAME_1": "SLS",
+            "TYPE_1": "Област",
+            "ID_2": "73496",
+            "NAME_2": "Тутракан",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[339, 340, -332, 341, 342]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLS31",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "66425",
+            "NAME_1": "SLS",
+            "TYPE_1": "Област",
+            "ID_2": "66425",
+            "NAME_2": "Силистра",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-341, 343, 344, -333]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLS01",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "66425",
+            "NAME_1": "SLS",
+            "TYPE_1": "Област",
+            "ID_2": "415",
+            "NAME_2": "Алфатар",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[345, 346, -344, -340, 347]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLS15",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "66425",
+            "NAME_1": "SLS",
+            "TYPE_1": "Област",
+            "ID_2": "35242",
+            "NAME_2": "Кайнарджа",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-331, -337, 348, -342]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SLS32",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "66425",
+            "NAME_1": "SLS",
+            "TYPE_1": "Област",
+            "ID_2": "66665",
+            "NAME_2": "Ситово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[349, 350, 351, 352]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-GAB05",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "14218",
+            "NAME_1": "GAB",
+            "TYPE_1": "Област",
+            "ID_2": "14218",
+            "NAME_2": "Габрово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[353, -352, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-GAB29",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "14218",
+            "NAME_1": "GAB",
+            "TYPE_1": "Област",
+            "ID_2": "65927",
+            "NAME_2": "Севлиево",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[364, 365, 366, -350, 367, 368]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-GAB35",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "14218",
+            "NAME_1": "GAB",
+            "TYPE_1": "Област",
+            "ID_2": "73403",
+            "NAME_2": "Трявна",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-353, -354, 369, -368]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-GAB12",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "14218",
+            "NAME_1": "GAB",
+            "TYPE_1": "Област",
+            "ID_2": "23947",
+            "NAME_2": "Дряново",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[370, 371, 372, 373, 374]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV18",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "46084",
+            "NAME_2": "Маджарово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[375, 376, 377, 378, 379, 380, 381]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV09",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "21052",
+            "NAME_2": "Димитровград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-373, 382, 383, 384]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV11",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "32024",
+            "NAME_2": "Ивайловград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[385, 386, 387, 388, 389, -382, 390]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV34",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "77195",
+            "NAME_2": "Хасково",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[391, 392, -376, -390]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV19",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "48297",
+            "NAME_2": "Минерални бани",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[393, -375, 394, 395, -387]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV30",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "68727",
+            "NAME_2": "Стамболово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-240, 396, 397, 398, 399, 400, -245]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV32",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "72761",
+            "NAME_2": "Тополовград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[401, 402, -398, 403]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV28",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "65677",
+            "NAME_2": "Свиленград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[404, -391, -381, 405, 406]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV29",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "47278",
+            "NAME_2": "Симеоновград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[407, -383, -372, 408, -402]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV17",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "44570",
+            "NAME_2": "Любимец",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-399, -403, -409, -371, -394, -386, -405, 409]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-HKV33",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "77195",
+            "NAME_1": "HKV",
+            "TYPE_1": "Област",
+            "ID_2": "77181",
+            "NAME_2": "Харманли",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[410, 411, 412, 413, 414, 415]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN37",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "80501",
+            "NAME_2": "Червен бряг",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[416, 417, 418, 419]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN27",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "57772",
+            "NAME_2": "Пордим",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[420, 421, 422, 423, 424, 425, -418, 426, 427, 428, 429]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN24",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "56722",
+            "NAME_2": "Плевен",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[430, -422, 431, 432]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN08",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "18099",
+            "NAME_2": "Гулянци",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[433, -415, 434, 435, -430]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN11",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "22407",
+            "NAME_2": "Долни Дъбник",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[436, -435, -414, 437, 438]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN23",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "55782",
+            "NAME_2": "Искър",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[439, -432, -421, -436, -437, 440]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN10",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "22215",
+            "NAME_2": "Долна Митрополия",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[[-424, 441]], [[442, 443, 444, 445, -419, -426, 446, 447]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ISO": "BG-PVN16",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "43236",
+            "NAME_2": "Левски",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[448, -438, -413, 449]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN39",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "37376",
+            "NAME_2": "Кнежа",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-447, -425, -442, -423, -431, 450, 451]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN21",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "51723",
+            "NAME_2": "Никопол",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[452, -448, -452, 453]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PVN03",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56722",
+            "NAME_1": "PVN",
+            "TYPE_1": "Област",
+            "ID_2": "3366",
+            "NAME_2": "Белене",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[454, 455, 456, 457]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR04",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "3719",
+            "NAME_2": "Белослав",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[458, 459, -458, 460, 461, 462]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR01",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "84",
+            "NAME_2": "Аврен",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[463, 464, -170, 465]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR16",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "24565",
+            "NAME_2": "Дългопол",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[466, -459, 467, -466, -169, -155, -176, 468]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR24",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "58503",
+            "NAME_2": "Провадия",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[469, 470, 471, 472]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR26",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "70175",
+            "NAME_2": "Суворово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-470, 473, -469, -175, -171, 474]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR08",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "10865",
+            "NAME_2": "Ветрино",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[475, 476, 477]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR05",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "7598",
+            "NAME_2": "Бяла",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-456, 478, -472, 479, 480, 481, 482, 483]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR02",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "182",
+            "NAME_2": "Аксаково",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-484, 484, -461, -457]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR06",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "10135",
+            "NAME_2": "Варна",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-480, -471, -475, -174, -164, 485]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR09",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "12574",
+            "NAME_2": "Вълчи дол",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[486, -478, 487, 488, 489, -464, -468, -463]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR13",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "21912",
+            "NAME_2": "Долни чифлик",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-479, -455, -460, -467, -474, -473]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VAR14",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10135",
+            "NAME_1": "VAR",
+            "TYPE_1": "Област",
+            "ID_2": "20482",
+            "NAME_2": "Девня",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[490, 491, 492, 493, 494, 495, -71]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KNL38",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "41112",
+            "NAME_1": "KNL",
+            "TYPE_1": "Област",
+            "ID_2": "62671",
+            "NAME_2": "Рила",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[496, 497, 498, -494]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KNL27",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "41112",
+            "NAME_1": "KNL",
+            "TYPE_1": "Област",
+            "ID_2": "39116",
+            "NAME_2": "Кочериново",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-191, 499, 500, -193]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KNL50",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "41112",
+            "NAME_1": "KNL",
+            "TYPE_1": "Област",
+            "ID_2": "73047",
+            "NAME_2": "Трекляно",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[501, -73]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KNL41",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "41112",
+            "NAME_1": "KNL",
+            "TYPE_1": "Област",
+            "ID_2": "65365",
+            "NAME_2": "Сапарева баня",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[502, -500, -190, -197, 503, 504]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KNL29",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "41112",
+            "NAME_1": "KNL",
+            "TYPE_1": "Област",
+            "ID_2": "41112",
+            "NAME_2": "Кюстендил",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-504, -196, 505, 506, 507]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KNL04",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "41112",
+            "NAME_1": "KNL",
+            "TYPE_1": "Област",
+            "ID_2": "4501",
+            "NAME_2": "Бобов дол",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-74, -502, -72, -496, 508, -506, -195]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KNL48",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "41112",
+            "NAME_1": "KNL",
+            "TYPE_1": "Област",
+            "ID_2": "68789",
+            "NAME_2": "Дупница",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-495, -499, 509, -507, -509]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KNL05",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "41112",
+            "NAME_1": "KNL",
+            "TYPE_1": "Област",
+            "ID_2": "4532",
+            "NAME_2": "Бобошево",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-510, -498, 510, 511, -505, -508]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KNL31",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "41112",
+            "NAME_1": "KNL",
+            "TYPE_1": "Област",
+            "ID_2": "51216",
+            "NAME_2": "Невестино",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[512, 513, 514, 515, 516, 517, 518, -26, -40, 519]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-TGV24",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "73626",
+            "NAME_1": "TGV",
+            "TYPE_1": "Област",
+            "ID_2": "57649",
+            "NAME_2": "Попово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[520, -520, -39, -33, -180, -157, -147, -177, 521]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-TGV35",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "73626",
+            "NAME_1": "TGV",
+            "TYPE_1": "Област",
+            "ID_2": "73626",
+            "NAME_2": "Търговище",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-12, -6, 522, 523, 524, -513, -521, 525]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-TGV02",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "73626",
+            "NAME_1": "TGV",
+            "TYPE_1": "Област",
+            "ID_2": "518",
+            "NAME_2": "Антоново",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-13, -526, -522, -179]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-TGV22",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "73626",
+            "NAME_1": "TGV",
+            "TYPE_1": "Област",
+            "ID_2": "53535",
+            "NAME_2": "Омуртаг",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-27, -519, 526, 527]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-TGV23",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "73626",
+            "NAME_1": "TGV",
+            "TYPE_1": "Област",
+            "ID_2": "53552",
+            "NAME_2": "Опака",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[528, 529, 530]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS13",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "48619",
+            "NAME_2": "Царево",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-248, -15, -178, -167, 531, 532]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS23",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "70247",
+            "NAME_2": "Сунгурларе",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[533, 534, 535, 536, 537]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS04",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "7079",
+            "NAME_2": "Бургас",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[538, 539, -249, -533, 540, 541]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS09",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "36525",
+            "NAME_2": "Карнобат",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-253, -250, -540, 542, 543, 544, 545]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS06",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "17974",
+            "NAME_2": "Средец",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[546, 547, -535, 548, -542]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS01",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "151",
+            "NAME_2": "Айтос",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-490, 549, -547, -541, -532, -166, -465]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS18",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "63224",
+            "NAME_2": "Руен",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[550, 551, -530, 552]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS27",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "58356",
+            "NAME_2": "Приморско",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[553, 554, -488, -477]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS15",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "51500",
+            "NAME_2": "Несебър",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-553, -529, 555, -545, 556]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS12",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "46663",
+            "NAME_2": "Малко Търново",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[557, -543, -539, -549, -534]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS08",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "35883",
+            "NAME_2": "Камено",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[558, -551, -557, -544, -558, -538]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS21",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "67800",
+            "NAME_2": "Созопол",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[559, -536, -548, -550, -489, -555]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BGS17",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "7079",
+            "NAME_1": "BGS",
+            "TYPE_1": "Област",
+            "ID_2": "57491",
+            "NAME_2": "Поморие",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[560, 561, 562, 563]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-DOB17",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "72624",
+            "NAME_1": "DOB",
+            "TYPE_1": "Област",
+            "ID_2": "35064",
+            "NAME_2": "Каварна",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[564, -162, -153, -334, -345, -347, 565]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-DOB27",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "72624",
+            "NAME_1": "DOB",
+            "TYPE_1": "Област",
+            "ID_2": "72271",
+            "NAME_2": "Тервел",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[566, 567, -564]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-DOB29",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "72624",
+            "NAME_1": "DOB",
+            "TYPE_1": "Област",
+            "ID_2": "83017",
+            "NAME_2": "Шабла",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[568]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-DOB28",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "72624",
+            "NAME_1": "DOB",
+            "TYPE_1": "Област",
+            "ID_2": "72624",
+            "NAME_2": "Добрич",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-562, 569, -482, 570, 571]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-DOB03",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "72624",
+            "NAME_1": "DOB",
+            "TYPE_1": "Област",
+            "ID_2": "2508",
+            "NAME_2": "Балчик",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-572, 572, 573, 574, -567, -563]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-DOB12",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "72624",
+            "NAME_1": "DOB",
+            "TYPE_1": "Област",
+            "ID_2": "14711",
+            "NAME_2": "Генерал Тошево",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-481, -486, -163, -565, 575, -573, -571], [-569]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-DOB15",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "72624",
+            "NAME_1": "DOB",
+            "TYPE_1": "Област",
+            "ID_2": "72624",
+            "NAME_2": "Добрич-селска",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[576, -574, -576, -566, -346]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-DOB20",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "72624",
+            "NAME_1": "DOB",
+            "TYPE_1": "Област",
+            "ID_2": "40097",
+            "NAME_2": "Крушари",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[577, -356, 578, 579, 580, -358]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-LOV02",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "43952",
+            "NAME_1": "LOV",
+            "TYPE_1": "Област",
+            "ID_2": "52218",
+            "NAME_2": "Априлци",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[581, 582, -428, 583, 584]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-LOV36",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "43952",
+            "NAME_1": "LOV",
+            "TYPE_1": "Област",
+            "ID_2": "75054",
+            "NAME_2": "Угърчин",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[585, -121, 586, 587]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-LOV38",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "43952",
+            "NAME_1": "LOV",
+            "TYPE_1": "Област",
+            "ID_2": "87014",
+            "NAME_2": "Ябланица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-581, 588, 589, 590, 591, -585, 592, -359]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-LOV34",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "43952",
+            "NAME_1": "LOV",
+            "TYPE_1": "Област",
+            "ID_2": "73198",
+            "NAME_2": "Троян",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-416, -434, -429, -583, 593, -588, 594]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-LOV19",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "43952",
+            "NAME_1": "LOV",
+            "TYPE_1": "Област",
+            "ID_2": "44327",
+            "NAME_2": "Луковит",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-137, -131, -110, -122, -586, -594, -582, -592, 595, -109]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-LOV33",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "43952",
+            "NAME_1": "LOV",
+            "TYPE_1": "Област",
+            "ID_2": "72343",
+            "NAME_2": "Тетевен",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-417, 596, -360, -593, -584, -427]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-LOV18",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "43952",
+            "NAME_1": "LOV",
+            "TYPE_1": "Област",
+            "ID_2": "43952",
+            "NAME_2": "Ловеч",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[597, -361, -597, -420, -446]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-LOV17",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "43952",
+            "NAME_1": "LOV",
+            "TYPE_1": "Област",
+            "ID_2": "43476",
+            "NAME_2": "Летница",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[598, 599, 600, 601, 602, 603, 604]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG40",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "65334",
+            "NAME_2": "Сандански",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[605, 606, 607, 608]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG44",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "66460",
+            "NAME_2": "Симитли",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-493, 609, -609, 610, -511, -497]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG03",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "4279",
+            "NAME_2": "Благоевград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[611, -308, 612, 613, -602, 614, 615]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG01",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "2676",
+            "NAME_2": "Банско",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[616, 617, 618, -306, -204]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG42",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "65440",
+            "NAME_2": "Сатовча",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[619, 620, -599]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG33",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "56126",
+            "NAME_2": "Петрич",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[621, -615, -601, 622, 623, -607]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG28",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "14492",
+            "NAME_2": "Кресна",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-613, -307, -619, 624, 625]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG13",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "18366",
+            "NAME_2": "Гърмен",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-616, -622, -606, -610, -492, 626]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG37",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "61813",
+            "NAME_2": "Разлог",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-604, 627, -625, -618, 628]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG52",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "77058",
+            "NAME_2": "Хаджидимово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[629, -623, -600, -621]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG49",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "69969",
+            "NAME_2": "Струмяни",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-603, -614, -626, -628]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG11",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "17395",
+            "NAME_2": "Гоце Делчев",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-69, -98, -300, -320, 630]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG53",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "87338",
+            "NAME_2": "Якоруда",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-491, -70, -631, -319, -309, -612, -627]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-BLG02",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "4279",
+            "NAME_1": "BLG",
+            "TYPE_1": "Област",
+            "ID_2": "3504",
+            "NAME_2": "Белица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-35, -29, 631, 632, -21]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RSE05",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "63427",
+            "NAME_1": "RSE",
+            "TYPE_1": "Област",
+            "ID_2": "10803",
+            "NAME_2": "Ветово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[633, 634, 635, 636, 637]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RSE37",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "63427",
+            "NAME_1": "RSE",
+            "TYPE_1": "Област",
+            "ID_2": "78361",
+            "NAME_2": "Ценово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-22, -633, 638, 639, 640]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RSE27",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "63427",
+            "NAME_1": "RSE",
+            "TYPE_1": "Област",
+            "ID_2": "63427",
+            "NAME_2": "Русе",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[[641, -517, 642, 643, -637, 644]], [[645, -515]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ISO": "BG-RSE04",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "63427",
+            "NAME_1": "RSE",
+            "TYPE_1": "Област",
+            "ID_2": "7603",
+            "NAME_2": "Бяла",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-632, -28, -528, 646, 647, 648, -639]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RSE13",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "63427",
+            "NAME_1": "RSE",
+            "TYPE_1": "Област",
+            "ID_2": "32095",
+            "NAME_2": "Иваново",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[649, -648, 650, -645, -636]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RSE03",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "63427",
+            "NAME_1": "RSE",
+            "TYPE_1": "Област",
+            "ID_2": "5611",
+            "NAME_2": "Борово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-641, 651, -338, -23]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RSE33",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "63427",
+            "NAME_1": "RSE",
+            "TYPE_1": "Област",
+            "ID_2": "67444",
+            "NAME_2": "Сливо поле",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-527, -518, -642, -651, -647]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-RSE08",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "63427",
+            "NAME_1": "RSE",
+            "TYPE_1": "Област",
+            "ID_2": "20184",
+            "NAME_2": "Две могили",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[652, -225, 653, 654, 655]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KRZ14",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "40909",
+            "NAME_1": "KRZ",
+            "TYPE_1": "Област",
+            "ID_2": "36926",
+            "NAME_2": "Кирково",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[656, -395, -374, -385, 657, -656, 658]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KRZ15",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "40909",
+            "NAME_1": "KRZ",
+            "TYPE_1": "Област",
+            "ID_2": "39970",
+            "NAME_2": "Крумовград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-230, -201, -221, 659, 660, 661, 662, 663]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KRZ02",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "40909",
+            "NAME_1": "KRZ",
+            "TYPE_1": "Област",
+            "ID_2": "607",
+            "NAME_2": "Ардино",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-655, 664, 665, -659]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KRZ21",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "40909",
+            "NAME_1": "KRZ",
+            "TYPE_1": "Област",
+            "ID_2": "48996",
+            "NAME_2": "Момчилград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[[-661, 666]], [[-657, -666, 667, -663, 668, -388, -396]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ISO": "BG-KRZ16",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "40909",
+            "NAME_1": "KRZ",
+            "TYPE_1": "Област",
+            "ID_2": "40909",
+            "NAME_2": "Кърджали",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-654, -228, -229, -664, -668, -665]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KRZ08",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "40909",
+            "NAME_1": "KRZ",
+            "TYPE_1": "Област",
+            "ID_2": "20746",
+            "NAME_2": "Джебел",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-662, -667, -660, -220, 669, 670, -392, -389, -669]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-KRZ35",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "40909",
+            "NAME_1": "KRZ",
+            "TYPE_1": "Област",
+            "ID_2": "81236",
+            "NAME_2": "Черноочене",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-363, 671, -444, 672, 673, 674]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR22",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "55052",
+            "NAME_2": "Павликени",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[675, 676, 677, -643, -516, -646, -514, -525, 678]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR31",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "69633",
+            "NAME_2": "Стражица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-523, -5, -10, 679, 680, 681]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR13",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "27190",
+            "NAME_2": "Елена",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[682, -673, -443, -453, 683, -634]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR28",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "65766",
+            "NAME_2": "Свищов",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-445, -672, -362, -598]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR32",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "70295",
+            "NAME_2": "Сухиндол",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[684, 685, -676, 686]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR20",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "44793",
+            "NAME_2": "Лясковец",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-686, 687, 688, -677]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR06",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "16359",
+            "NAME_2": "Горна Оряховица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[689, -687, -679, -524, -682]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR14",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "30962",
+            "NAME_2": "Златарица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-685, -690, -681, 690, -369, -370, -364, -675, 691, -688]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR04",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "10447",
+            "NAME_2": "Велико Търново",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-678, -689, -692, -674, -683, -638, -644]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VTR26",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10447",
+            "NAME_1": "VTR",
+            "TYPE_1": "Област",
+            "ID_2": "57354",
+            "NAME_2": "Полски Тръмбеш",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-377, -393, -671, 692, 693, 694, 695]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV23",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "59080",
+            "NAME_2": "Първомай",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[[-235, -292, 696]], [[697, 698, -297, 699]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ISO": "BG-PDV39",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "39921",
+            "NAME_2": "Кричим",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-223, -237, -215, 700]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV15",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "44478",
+            "NAME_2": "Лъки",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [
+            [701, 702, 703, 704, 705, -213, -236, -697, -291, -699, 706, 707, -326, 708, 709, 710]
+          ],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV26",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "56784",
+            "NAME_2": "Родопи",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-589, -580, 711, 712, 713, 714, -92, -107, -596, -591, 715]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV13",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "36498",
+            "NAME_2": "Карлово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[716, -709, -325, -322, 717, 718]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV33",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "70528",
+            "NAME_2": "Съединение",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-711, 719]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV22",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "56784",
+            "NAME_2": "Пловдив",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[720, 721, 722, 723, 724]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV25",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "62075",
+            "NAME_2": "Раковски",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[725, -694, 726, -703, 727, -724]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV28",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "65139",
+            "NAME_2": "Садово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-707, -698, 728]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV40",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "55909",
+            "NAME_2": "Перущица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-722, 729, -713, 730, 731]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV07",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "6361",
+            "NAME_2": "Брезово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[732, -718, -321, -93, -715]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV37",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "77270",
+            "NAME_2": "Хисаря",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-693, -670, -224, -701, -214, -706, 733, -704, -727]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV01",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "702",
+            "NAME_2": "Асеновград",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-729, -700, -296, -327, -708]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV41",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "51980",
+            "NAME_2": "Стамболийски",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-714, -730, -721, 734, -719, -733]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV12",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "35523",
+            "NAME_2": "Калояново",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-728, -702, -720, -710, -717, -735, -725]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV17",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "56784",
+            "NAME_2": "Марица",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-705, -734]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV42",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "40467",
+            "NAME_2": "Куклен",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-590, -716]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-PDV43",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "56784",
+            "NAME_1": "PDV",
+            "TYPE_1": "Област",
+            "ID_2": "68080",
+            "NAME_2": "Сопот",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[735, 736, 737, 738, 739, 740]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID06",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "6224",
+            "NAME_2": "Брегово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[741, 742, -738, 743]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID03",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "5195",
+            "NAME_2": "Бойница",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[744, 745, 746, 747, 748, 749, -262, 750]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID16",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "21097",
+            "NAME_2": "Димово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-261, -273, -287, -266, 751, -751]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID33",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "63255",
+            "NAME_2": "Ружинци",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[[752, 753, -736]], [[-740, 754]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ISO": "BG-VID30",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "52180",
+            "NAME_2": "Ново село",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[755, -749, 756, 757, -744, -737, -754]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID09",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "10971",
+            "NAME_2": "Видин",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[758, 759, 760, -746]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID01",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "3616",
+            "NAME_2": "Белоградчик",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[761, -747, -761, 762, 763]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID25",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "46245",
+            "NAME_2": "Макреш",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-748, -762, 764, -757]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID15",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "17645",
+            "NAME_2": "Грамада",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-758, -765, -764, 765, -742]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID22",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "40525",
+            "NAME_2": "Кула",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-745, -752, -265, 766, -759]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VID37",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "10971",
+            "NAME_1": "VID",
+            "TYPE_1": "Област",
+            "ID_2": "81757",
+            "NAME_2": "Чупрене",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[767, 768, 769, 770, 771]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC28",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "48043",
+            "NAME_2": "Мизия",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[772, 773, -289, -280, 774, -768, 775]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC35",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "77102",
+            "NAME_2": "Хайредин",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-441, -439, -449, 776, -771, 777]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC31",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "54020",
+            "NAME_2": "Оряхово",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[778, 779, -256, -288, -285, -290, -774]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC21",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "39846",
+            "NAME_2": "Криводол",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[780, 781, -779, -773]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC05",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "5548",
+            "NAME_2": "Борован",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-775, -279, 782, -769]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC20",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "37798",
+            "NAME_2": "Козлодуй",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-595, -587, -120, -143, 783, 784, 785, -411]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC32",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "62997",
+            "NAME_2": "Роман",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-450, -412, -786, 786, -781, -776, -772, -777]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC08",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "7702",
+            "NAME_2": "Бяла Слатина",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-81, -254, -780, -782, -787, -785, 787]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC10",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "12259",
+            "NAME_2": "Враца",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-784, -142, -82, -788]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-VRC27",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "12259",
+            "NAME_1": "VRC",
+            "TYPE_1": "Област",
+            "ID_2": "47714",
+            "NAME_2": "Мездра",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-18, 788, 789, -379, 790, 791, 792, 793, 794, 795]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR31",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "68850",
+            "NAME_2": "Стара Загора",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[796, 797, -406, -380, -790]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR23",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "53576",
+            "NAME_2": "Опан",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[798, -695, -726, -723, -732, 799, 800, -792]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR04",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "6183",
+            "NAME_2": "Братя Даскалови",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[801, 802, -795]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR38",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "51648",
+            "NAME_2": "Николаево",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[803, -365, -691, -680, -9, -19, -796, -803]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR37",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "18157",
+            "NAME_2": "Гурково",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-367, 804, -793, -801, 805, -351]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR12",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "35167",
+            "NAME_2": "Казанлък",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-800, -731, -712, -579, -355, -806]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR24",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "55021",
+            "NAME_2": "Павел баня",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-378, -696, -799, -791]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR36",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "81414",
+            "NAME_2": "Чирпан",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-804, -802, -794, -805, -366]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR22",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "49494",
+            "NAME_2": "Мъглиж",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-246, -401, 806, -797, -789, -17]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR27",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "61460",
+            "NAME_2": "Раднево",
+            "TYPE_2": "Община"
+          }
+        },
+        {
+          "arcs": [[-798, -807, -400, -410, -407]],
+          "type": "Polygon",
+          "properties": {
+            "ISO": "BG-SZR07",
+            "ID_0": "100",
+            "NAME_0": "Bulgaria",
+            "NL_NAME_0": "България",
+            "ID_1": "68850",
+            "NAME_1": "SZR",
+            "TYPE_1": "Област",
+            "ID_2": "18280",
+            "NAME_2": "Гълъбово",
+            "TYPE_2": "Община"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/canada-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/canada-topo.json
new file mode 100644
index 0000000..46b795c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/canada-topo.json
@@ -0,0 +1,8227 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [7579, 10582],
+      [0, -2695],
+      [-2, -339],
+      [0, -3319]
+    ],
+    [
+      [7577, 4229],
+      [-993, 1]
+    ],
+    [
+      [6584, 4230],
+      [-26, 94],
+      [-55, 27],
+      [-21, 79],
+      [-27, 37],
+      [2, 89],
+      [-18, 45],
+      [6, 106],
+      [-13, 40],
+      [6, 89],
+      [-34, 181],
+      [-51, 119],
+      [-53, -15],
+      [-24, 103],
+      [-54, 43],
+      [-24, 116],
+      [-30, 40],
+      [-37, 9],
+      [-21, 80],
+      [-63, 52],
+      [-6, 87],
+      [-74, 115],
+      [-22, 87],
+      [-58, -59],
+      [-24, 105],
+      [-43, 51],
+      [-45, 91],
+      [-57, 4],
+      [-50, 47],
+      [23, 75],
+      [-11, 36],
+      [-62, 31],
+      [-5, -42],
+      [-42, -17],
+      [-5, 70],
+      [-24, 52],
+      [10, 56],
+      [-38, 120],
+      [-52, 45],
+      [-31, 113],
+      [-46, 48],
+      [-18, -56],
+      [-45, 21],
+      [-42, 108],
+      [-78, 12],
+      [-49, 130],
+      [43, -12],
+      [-12, 66],
+      [-27, 2],
+      [-23, 55],
+      [0, 3577]
+    ],
+    [
+      [5134, 10582],
+      [2445, 0]
+    ],
+    [
+      [4256, 4198],
+      [37, -52],
+      [13, -60],
+      [-27, -21],
+      [-15, 29],
+      [9, 17],
+      [-12, 15],
+      [6, 27],
+      [-11, 45]
+    ],
+    [
+      [3639, 4458],
+      [8, -87],
+      [-35, 24],
+      [0, 62],
+      [27, 1]
+    ],
+    [
+      [3474, 4741],
+      [11, -20],
+      [7, 9],
+      [12, -7],
+      [3, -38],
+      [8, -35],
+      [-6, -3],
+      [9, -73],
+      [-52, 12],
+      [-18, 34],
+      [-15, 93],
+      [41, 28]
+    ],
+    [
+      [3945, 4974],
+      [28, -76],
+      [-23, -25],
+      [-33, 76],
+      [28, 25]
+    ],
+    [
+      [3851, 4985],
+      [27, -67],
+      [-18, -52],
+      [-24, 17],
+      [-16, 85],
+      [31, 17]
+    ],
+    [
+      [3977, 4985],
+      [23, -44],
+      [-17, -41],
+      [-25, 45],
+      [19, 40]
+    ],
+    [
+      [3589, 5289],
+      [27, -37],
+      [-14, -67],
+      [-54, -10],
+      [-17, 57],
+      [58, 57]
+    ],
+    [
+      [3167, 5313],
+      [35, -1],
+      [103, -63],
+      [17, -41],
+      [54, -47],
+      [92, -37],
+      [52, -38],
+      [86, -6],
+      [76, -48],
+      [121, -33],
+      [22, -118],
+      [27, -50],
+      [16, -74],
+      [78, -127],
+      [-11, -40],
+      [30, -92],
+      [52, -49],
+      [53, -17],
+      [94, -67],
+      [16, -58],
+      [21, 1],
+      [20, -115],
+      [35, -52],
+      [9, -37],
+      [-5, -22],
+      [11, -29],
+      [12, -51],
+      [18, 12],
+      [21, -128],
+      [-28, 14],
+      [-30, -70],
+      [-34, 38],
+      [-30, -11],
+      [-133, 88],
+      [-87, 50],
+      [-25, 37],
+      [-67, 36],
+      [-19, 38],
+      [42, 93],
+      [-35, 36],
+      [-23, -38],
+      [-31, 31],
+      [-27, -44],
+      [-22, 9],
+      [-44, 76],
+      [0, 94],
+      [-33, 29],
+      [-34, -12],
+      [-13, 102],
+      [-17, -22],
+      [-62, 6],
+      [-36, -19],
+      [-9, 183],
+      [-9, 24],
+      [-8, 44],
+      [1, 51],
+      [-7, -21],
+      [-19, 6],
+      [-11, 19],
+      [-5, -14],
+      [-81, -14],
+      [-33, 106],
+      [-33, -4],
+      [-23, 57],
+      [-38, 9],
+      [-21, 51],
+      [-50, 73],
+      [7, 58],
+      [-42, 3],
+      [-24, 33],
+      [-51, 144],
+      [89, 58]
+    ],
+    [
+      [3156, 5781],
+      [33, -24],
+      [21, -105],
+      [-53, 10],
+      [-14, 109],
+      [13, 10]
+    ],
+    [
+      [3183, 6004],
+      [9, -38],
+      [-18, -111],
+      [-23, 33],
+      [-28, -14],
+      [18, 116],
+      [42, 14]
+    ],
+    [
+      [3168, 6140],
+      [32, -33],
+      [0, -50],
+      [-39, 13],
+      [7, 70]
+    ],
+    [
+      [3360, 6207],
+      [11, -60],
+      [-103, -104],
+      [-19, -102],
+      [-46, -17],
+      [13, 131],
+      [20, 49],
+      [35, 8],
+      [43, 42],
+      [1, 25],
+      [45, 28]
+    ],
+    [
+      [3052, 6308],
+      [13, -73],
+      [-39, -3],
+      [3, -78],
+      [-31, -2],
+      [-4, 152],
+      [58, 4]
+    ],
+    [
+      [2327, 6388],
+      [5, -66],
+      [-35, -22],
+      [-27, 64],
+      [57, 24]
+    ],
+    [
+      [2868, 6440],
+      [84, -124],
+      [-3, -80],
+      [-31, 23],
+      [-36, 66],
+      [-22, 72],
+      [8, 43]
+    ],
+    [
+      [3142, 6417],
+      [-34, -153],
+      [-37, 15],
+      [4, 96],
+      [18, 40],
+      [49, 2]
+    ],
+    [
+      [2815, 6649],
+      [40, -79],
+      [0, -55],
+      [-54, 84],
+      [14, 50]
+    ],
+    [
+      [2246, 6690],
+      [10, -59],
+      [32, -29],
+      [7, -107],
+      [-39, -23],
+      [-10, -99],
+      [21, -16],
+      [20, -80],
+      [53, -44],
+      [25, -101],
+      [38, 18],
+      [23, -64],
+      [-24, -56],
+      [-97, 130],
+      [-21, 77],
+      [-30, 21],
+      [-30, 56],
+      [-80, 109],
+      [-30, 85],
+      [-34, 47],
+      [-16, 53],
+      [117, 17],
+      [65, 65]
+    ],
+    [
+      [2932, 6714],
+      [92, -85],
+      [24, -78],
+      [3, -70],
+      [-17, -168],
+      [-40, -5],
+      [-61, 58],
+      [-24, 49],
+      [-17, 166],
+      [22, 11],
+      [-3, 114],
+      [21, 8]
+    ],
+    [
+      [2875, 6724],
+      [18, -21],
+      [-5, -103],
+      [-22, -14],
+      [-16, 72],
+      [25, 66]
+    ],
+    [
+      [2932, 6846],
+      [20, -117],
+      [-55, 5],
+      [35, 112]
+    ],
+    [
+      [2576, 6907],
+      [88, -71],
+      [49, -70],
+      [38, -103],
+      [-13, -31],
+      [-38, 4],
+      [-36, 83],
+      [-44, 39],
+      [-37, 71],
+      [-7, 78]
+    ],
+    [
+      [2967, 6953],
+      [-6, -91],
+      [-32, -1],
+      [-37, -65],
+      [-1, 105],
+      [76, 52]
+    ],
+    [
+      [2621, 7001],
+      [22, -53],
+      [17, -7],
+      [-7, -74],
+      [-44, 29],
+      [-16, 52],
+      [28, 53]
+    ],
+    [
+      [2641, 7065],
+      [92, -116],
+      [29, -64],
+      [91, -136],
+      [-31, 2],
+      [-10, -88],
+      [-21, -2],
+      [-56, 97],
+      [-16, 97],
+      [-44, 29],
+      [-10, 59],
+      [-25, 13],
+      [1, 109]
+    ],
+    [
+      [2588, 7176],
+      [45, -72],
+      [-27, -87],
+      [-52, 39],
+      [-25, 62],
+      [59, 58]
+    ],
+    [
+      [2281, 7169],
+      [-5, -53],
+      [-41, -111],
+      [-23, -168],
+      [11, -49],
+      [-21, -107],
+      [-45, -2],
+      [-8, -54],
+      [-63, -8],
+      [-45, 71],
+      [-2, 98],
+      [-67, 51],
+      [1, 62],
+      [-44, 88],
+      [-11, 81],
+      [19, 53],
+      [14, 102],
+      [50, -33],
+      [38, 16],
+      [25, -65],
+      [59, 40],
+      [36, -55],
+      [17, -78],
+      [-38, -67],
+      [-70, -43],
+      [84, -18],
+      [27, 140],
+      [-17, 80],
+      [54, -2],
+      [65, 31]
+    ],
+    [
+      [2472, 7481],
+      [29, -46],
+      [-43, -54],
+      [-3, 56],
+      [17, 44]
+    ],
+    [
+      [2644, 7711],
+      [9, -43],
+      [-30, -69],
+      [-36, -39],
+      [-16, 34],
+      [73, 117]
+    ],
+    [
+      [478, 10582],
+      [3730, 0]
+    ],
+    [
+      [4208, 10582],
+      [926, 0]
+    ],
+    [
+      [6584, 4230],
+      [-575, 0],
+      [-1352, -1],
+      [-196, 2],
+      [-27, 12],
+      [-4, 109],
+      [40, -2],
+      [13, -10],
+      [14, 10],
+      [8, -23],
+      [41, -9],
+      [18, -28],
+      [51, 42],
+      [-27, -22],
+      [-18, -9],
+      [-29, 27],
+      [-34, 7],
+      [-6, 13],
+      [-7, 4],
+      [-11, -8],
+      [-27, 17],
+      [-26, -3],
+      [-60, -65],
+      [-17, 8],
+      [-11, 90],
+      [8, 35],
+      [-13, 107],
+      [-23, 16],
+      [-33, -21],
+      [-2, -72],
+      [-98, 51],
+      [-42, 90],
+      [9, 61],
+      [-23, 22],
+      [-65, -9],
+      [-32, 23],
+      [-16, 48],
+      [-39, 43],
+      [11, 76],
+      [27, 81],
+      [-28, 51],
+      [-29, -9],
+      [-40, 24],
+      [-30, 47],
+      [-57, 30],
+      [-31, -24],
+      [-56, -11],
+      [-25, 48],
+      [-43, -21],
+      [-55, 19],
+      [7, 96],
+      [-9, 95],
+      [-28, 11],
+      [-35, -22],
+      [-28, 37],
+      [-31, -3],
+      [-28, 48],
+      [-23, -54],
+      [-37, -13],
+      [-64, 39],
+      [-43, 49],
+      [-6, 72],
+      [-32, -14],
+      [-28, 51],
+      [1, 81],
+      [64, 116],
+      [-69, 6],
+      [-22, 93],
+      [3, 121],
+      [51, 29],
+      [15, 98],
+      [96, 87],
+      [13, 40],
+      [-24, 77],
+      [-43, -36],
+      [-12, -42],
+      [-101, -67],
+      [-11, 58],
+      [-51, 49],
+      [-32, -86],
+      [-18, 57],
+      [25, 29],
+      [2, 68],
+      [27, 107],
+      [3, 70],
+      [-29, -20],
+      [-46, 9],
+      [-17, 43],
+      [-3, 73],
+      [-23, 84],
+      [-37, 32],
+      [-32, 55],
+      [0, 58],
+      [-21, 48],
+      [38, 43],
+      [24, 141],
+      [-15, 52],
+      [-40, -77],
+      [-42, -31],
+      [-28, -50],
+      [-6, -129],
+      [-20, -14],
+      [-75, 106],
+      [-34, 81],
+      [-71, 107],
+      [-3, 124],
+      [-47, 57],
+      [7, 66],
+      [-55, 25],
+      [6, 92],
+      [22, 44],
+      [-2, 47],
+      [39, 24],
+      [57, 204],
+      [72, 174],
+      [-11, 56],
+      [-43, -178],
+      [-51, -102],
+      [-14, 53],
+      [17, 60],
+      [38, 60],
+      [-20, 99],
+      [-21, 60],
+      [6, 69],
+      [-11, 48],
+      [31, 68],
+      [1, 72],
+      [-25, 66],
+      [-35, -15],
+      [-44, 26],
+      [-10, 59],
+      [-38, 14],
+      [-39, 58],
+      [-74, 22],
+      [-94, 85],
+      [-27, 34],
+      [-62, -7],
+      [-10, 119],
+      [-61, 39],
+      [19, 99],
+      [-79, 27],
+      [30, 69],
+      [-30, 80],
+      [-45, 85],
+      [-77, 198],
+      [-49, 93],
+      [-25, 88],
+      [-70, 136],
+      [19, 25],
+      [-78, 102],
+      [-35, 70],
+      [-101, 76],
+      [-37, 68],
+      [-18, 88],
+      [-21, 0],
+      [-33, 68],
+      [-63, 18],
+      [-34, 85],
+      [17, 79],
+      [-50, 76],
+      [-60, 59],
+      [-114, -78],
+      [-61, -14],
+      [-26, -100],
+      [-40, -1],
+      [2, -105],
+      [-30, -67],
+      [-60, -4],
+      [-112, -92],
+      [-41, -53],
+      [-38, 194],
+      [-245, 298],
+      [-24, 85],
+      [-84, 54]
+    ],
+    [
+      [12719, 8767],
+      [-165, -236],
+      [-193, -284],
+      [-178, -274],
+      [-119, -187],
+      [-86, -146],
+      [-161, -262],
+      [-237, -406],
+      [-155, -213],
+      [-218, -312],
+      [1, -1787],
+      [0, -211]
+    ],
+    [
+      [11208, 4449],
+      [0, -220],
+      [-1518, 0]
+    ],
+    [
+      [9690, 4229],
+      [-14, 308],
+      [0, 204],
+      [-14, 409],
+      [-8, -1],
+      [0, 205],
+      [-7, 204],
+      [-8, 0],
+      [-2, 385],
+      [-22, 515],
+      [0, 0],
+      [-8, 88],
+      [0, 204],
+      [-8, 95],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 2],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 2],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 3],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 2],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 2],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 2],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 0],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 1],
+      [0, 0],
+      [0, 3],
+      [0, 0],
+      [-9, 51],
+      [1, 205],
+      [-11, 0],
+      [0, 202],
+      [-9, 72],
+      [0, 8],
+      [1, 110],
+      [0, 0],
+      [-9, 90],
+      [0, 0],
+      [0, 6],
+      [0, 0],
+      [0, 113],
+      [0, 0],
+      [-9, 4],
+      [1, 176],
+      [0, 2],
+      [-10, 46],
+      [0, 7],
+      [1, 174],
+      [-12, 89],
+      [0, 19],
+      [0, 0],
+      [0, 8],
+      [0, 253],
+      [0, 0],
+      [0, 69],
+      [0, 3],
+      [0, 100],
+      [0, 1],
+      [0, 72],
+      [0, 9],
+      [0, 50],
+      [0, 1],
+      [0, 11],
+      [0, 2],
+      [0, 39],
+      [0, 0],
+      [0, 83],
+      [0, 1],
+      [0, 662],
+      [0, 68],
+      [0, 23],
+      [0, 10],
+      [0, 25],
+      [0, 5],
+      [0, 42],
+      [0, 1],
+      [0, 47],
+      [0, 0],
+      [0, 118],
+      [0, 0],
+      [0, 34],
+      [0, 2],
+      [0, 5],
+      [0, 4],
+      [0, 6],
+      [0, 63],
+      [0, 72],
+      [0, 14],
+      [0, 7],
+      [0, 0],
+      [0, 400]
+    ],
+    [
+      [9534, 10582],
+      [1755, 0]
+    ],
+    [
+      [11289, 10582],
+      [7, -118],
+      [-9, -89],
+      [28, -158],
+      [-24, -80],
+      [8, -119],
+      [43, -56],
+      [4, -41],
+      [44, -87],
+      [57, 40],
+      [33, -7],
+      [87, 15],
+      [123, -29],
+      [18, -151],
+      [54, -175],
+      [47, -247],
+      [48, -125],
+      [17, -99],
+      [-2, -56],
+      [-43, -161],
+      [37, 35],
+      [59, 17],
+      [42, -15],
+      [41, 15],
+      [183, 103],
+      [59, 8],
+      [62, -15],
+      [67, -49],
+      [95, -83],
+      [112, -46],
+      [133, -42]
+    ],
+    [
+      [18142, 1804],
+      [10, -86],
+      [-37, 5],
+      [27, 81]
+    ],
+    [
+      [18668, 3586],
+      [30, -21],
+      [-35, -70],
+      [-13, 61],
+      [18, 30]
+    ],
+    [
+      [18810, 2486],
+      [-25, -1],
+      [-31, -84]
+    ],
+    [
+      [18754, 2401],
+      [-19, 15],
+      [-30, -54],
+      [-23, 31],
+      [-29, -80],
+      [-43, -29],
+      [-41, -55],
+      [-74, -50],
+      [-48, -73],
+      [-66, -35],
+      [-25, -40],
+      [-28, 44],
+      [-48, -75],
+      [-62, -40],
+      [-15, 37],
+      [-43, -44],
+      [-44, -12],
+      [-16, 69],
+      [-27, -19],
+      [-55, 37],
+      [-16, -30],
+      [-30, 87],
+      [14, 51],
+      [-39, 130],
+      [-51, 47],
+      [2, 152],
+      [-1, 646],
+      [-42, 79],
+      [-70, 88],
+      [-33, -37],
+      [-50, -1],
+      [-7, -24],
+      [-70, -40],
+      [-38, 71]
+    ],
+    [
+      [17587, 3247],
+      [62, 29],
+      [56, 45],
+      [45, 73],
+      [1, 209],
+      [63, 0],
+      [0, 49],
+      [128, 0],
+      [1, -44],
+      [57, -39],
+      [108, 74],
+      [36, 7]
+    ],
+    [
+      [18144, 3650],
+      [34, 4],
+      [39, 33],
+      [89, -62],
+      [68, -27],
+      [24, -45],
+      [23, -92],
+      [37, 3],
+      [75, 83],
+      [43, 11],
+      [9, -27],
+      [41, 7],
+      [9, -73],
+      [-34, -74],
+      [1, -87],
+      [-18, -70],
+      [-74, -95],
+      [28, -43],
+      [36, 28],
+      [51, -6],
+      [-2, -58],
+      [-24, -63],
+      [4, -69],
+      [43, -33],
+      [13, -129],
+      [38, -83],
+      [-1, -47],
+      [59, -3],
+      [26, -21],
+      [81, -27],
+      [-50, -62],
+      [-2, -37]
+    ],
+    [
+      [21282, 3775],
+      [17, -33],
+      [35, -6],
+      [35, 23],
+      [4, -56],
+      [-72, 0],
+      [-19, 72]
+    ],
+    [
+      [20071, 4058],
+      [26, -101],
+      [-111, -4],
+      [37, 61],
+      [48, 44]
+    ],
+    [
+      [21229, 4664],
+      [9, -83],
+      [-42, -27],
+      [-8, 65],
+      [41, 45]
+    ],
+    [
+      [20801, 5748],
+      [7, -63],
+      [34, -12],
+      [65, 58],
+      [-1, -95],
+      [-34, -74],
+      [-49, 23],
+      [-12, -68],
+      [30, -18],
+      [1, -65],
+      [-32, -86],
+      [-59, -123],
+      [-5, -50],
+      [-66, -134],
+      [-19, -78],
+      [-68, -143],
+      [6, -42],
+      [-26, -96],
+      [21, -64],
+      [32, 82],
+      [50, 62],
+      [62, 136],
+      [105, -132],
+      [50, 43],
+      [11, -36],
+      [-52, -64],
+      [-43, -27],
+      [-20, -48],
+      [55, -161],
+      [42, -3],
+      [25, 48],
+      [33, -52],
+      [8, 78],
+      [36, -33],
+      [-27, -82],
+      [1, -51],
+      [68, 29],
+      [27, -4],
+      [45, 56],
+      [30, 85],
+      [20, -66],
+      [37, 6],
+      [14, -39],
+      [24, 48],
+      [34, 6],
+      [82, -61],
+      [48, -76],
+      [-30, -66],
+      [-79, -116],
+      [-3, -43],
+      [27, -80],
+      [16, -109],
+      [27, 16],
+      [21, -52],
+      [30, 94],
+      [39, -38],
+      [52, 68],
+      [19, -32],
+      [-14, -87],
+      [-33, -46],
+      [-23, 6],
+      [-33, -61],
+      [-52, -63],
+      [-51, 6],
+      [-27, 29],
+      [4, -90],
+      [61, -1],
+      [13, -52],
+      [-53, -153],
+      [34, -88],
+      [41, -11],
+      [10, 114],
+      [48, 146],
+      [74, 48],
+      [4, -58],
+      [-69, -210],
+      [46, -87],
+      [40, 41],
+      [32, 155],
+      [16, -28],
+      [19, -158],
+      [-62, -228],
+      [2, -88],
+      [-11, -73],
+      [-38, -98],
+      [-31, -6],
+      [-36, 66],
+      [-47, -80],
+      [-23, 55],
+      [12, 108],
+      [-3, 138],
+      [-41, -58],
+      [-32, -84],
+      [-36, -50],
+      [-30, 10],
+      [4, 101],
+      [23, 67],
+      [35, 160],
+      [7, 129],
+      [-24, 110],
+      [-37, 27],
+      [-63, -183],
+      [-8, -63],
+      [-39, -41],
+      [-17, 16],
+      [-56, -18],
+      [-40, -76],
+      [-4, -77],
+      [-22, -19],
+      [-17, -65],
+      [-35, -34],
+      [-47, 26],
+      [-61, -34],
+      [-35, 27],
+      [-2, 49],
+      [51, 63],
+      [61, 23],
+      [44, 60],
+      [12, 84],
+      [27, 45],
+      [54, 20],
+      [-69, 88],
+      [-43, -13],
+      [1, -87],
+      [-40, -27],
+      [-9, 38],
+      [-48, -27],
+      [-14, 92],
+      [-26, 86],
+      [-18, -36],
+      [-83, -57],
+      [-65, 7],
+      [-39, -47],
+      [-51, 35],
+      [-76, -5],
+      [-21, 31],
+      [-140, 15],
+      [-14, 21],
+      [-46, -23],
+      [-33, 17],
+      [-63, -45],
+      [-65, -6],
+      [-67, -21],
+      [-34, 46],
+      [1, 60],
+      [-23, 100],
+      [76, 102],
+      [26, 17],
+      [88, 156],
+      [44, 28],
+      [-25, 55],
+      [-42, 12],
+      [6, 67],
+      [37, 115],
+      [9, 74],
+      [24, 73],
+      [14, -47],
+      [44, 6],
+      [24, 86],
+      [-33, 11],
+      [-13, 35],
+      [10, 76],
+      [63, 109],
+      [-3, 33],
+      [33, 126],
+      [14, 21],
+      [42, 145],
+      [32, 175],
+      [21, 33],
+      [7, 97],
+      [64, 46],
+      [29, 59],
+      [44, 208],
+      [24, 54],
+      [64, 43],
+      [131, 126]
+    ],
+    [
+      [19538, 8370],
+      [6, -93],
+      [-37, 18],
+      [31, 75]
+    ],
+    [
+      [19374, 8506],
+      [60, 0],
+      [6, -52],
+      [-59, 22],
+      [-7, 30]
+    ],
+    [
+      [19439, 8825],
+      [27, -164],
+      [-18, -38],
+      [-31, 49],
+      [-25, -13],
+      [16, 130],
+      [31, 36]
+    ],
+    [
+      [19378, 9162],
+      [5, -80],
+      [-41, 27],
+      [36, 53]
+    ],
+    [
+      [19337, 9191],
+      [24, -50],
+      [-36, -33],
+      [-26, 44],
+      [38, 39]
+    ],
+    [
+      [19363, 9339],
+      [32, -37],
+      [-9, -44],
+      [-40, 41],
+      [17, 40]
+    ],
+    [
+      [18807, 10508],
+      [9, -92],
+      [-33, -7],
+      [9, 86],
+      [15, 13]
+    ],
+    [
+      [20506, 5630],
+      [0, 331],
+      [-1148, -2],
+      [-489, 1],
+      [32, 50],
+      [-18, 102],
+      [-19, 41],
+      [-45, 18],
+      [-20, 60],
+      [14, 55],
+      [45, 35],
+      [103, 13],
+      [-7, 42],
+      [-33, 45],
+      [-68, -12],
+      [-16, -25],
+      [-49, -1],
+      [-18, -90],
+      [25, -104],
+      [-28, -95],
+      [-14, -147],
+      [-17, -72],
+      [18, -60],
+      [-68, -98],
+      [-24, 72],
+      [-39, 44],
+      [-85, -7],
+      [-61, 119],
+      [-67, 77],
+      [-47, 3],
+      [-23, -31],
+      [-30, 30],
+      [-20, 61],
+      [-36, -47],
+      [-32, 66],
+      [-9, 55],
+      [25, 72],
+      [2, 237],
+      [-26, 48],
+      [-34, -3],
+      [-15, -110],
+      [-51, -51],
+      [-13, 48],
+      [-29, 9],
+      [-61, 58],
+      [-18, 142],
+      [58, 15],
+      [21, -39],
+      [15, 51],
+      [21, 134],
+      [-6, 44],
+      [-29, 35],
+      [-38, -4],
+      [-43, 49],
+      [-9, 53],
+      [-33, 29],
+      [-7, 95],
+      [-53, 64],
+      [12, 72],
+      [26, 3],
+      [-6, 87],
+      [-21, 62],
+      [45, 43],
+      [28, 52],
+      [29, -39],
+      [70, 102],
+      [-66, 121],
+      [-32, 92],
+      [47, 8],
+      [4, -32],
+      [80, -126],
+      [66, -19],
+      [7, 38],
+      [-29, 95],
+      [0, 125],
+      [32, 36],
+      [87, -161],
+      [58, -33],
+      [43, -9],
+      [3, -52],
+      [35, -74],
+      [58, 11],
+      [5, 33],
+      [55, 36],
+      [31, 71],
+      [27, -19],
+      [55, -71],
+      [-7, -47],
+      [54, -11],
+      [17, 46],
+      [73, -48],
+      [33, -63],
+      [35, 2],
+      [34, 55],
+      [-29, 39],
+      [24, 109],
+      [32, -33],
+      [20, 51],
+      [-7, 42],
+      [19, 163],
+      [-33, 46],
+      [-1, 133],
+      [-27, 86],
+      [11, 73],
+      [24, 55],
+      [-54, 66],
+      [-40, -41],
+      [-1, 116],
+      [23, 154],
+      [-53, 96],
+      [33, 86],
+      [27, 16],
+      [3, 121],
+      [17, -6],
+      [19, 95],
+      [-28, 54],
+      [23, 61],
+      [-1, 70],
+      [16, 59],
+      [-72, 86],
+      [-19, -24],
+      [-48, 168],
+      [-40, 5],
+      [3, 67],
+      [50, 36],
+      [11, 66],
+      [36, 5],
+      [9, 42],
+      [35, 14],
+      [-15, 61],
+      [-31, -29],
+      [-18, 23],
+      [14, 80],
+      [24, -10],
+      [108, 33],
+      [-10, 55],
+      [-39, 29],
+      [-76, -41],
+      [-29, -40],
+      [-23, 68],
+      [-24, 23],
+      [-43, -10],
+      [-81, 54],
+      [14, 54],
+      [78, -54],
+      [-12, 255],
+      [-53, 26],
+      [-34, 69],
+      [27, 173],
+      [-34, 104],
+      [37, -6],
+      [37, 35],
+      [-64, 88],
+      [78, 23]
+    ],
+    [
+      [18691, 10760],
+      [23, -103],
+      [-6, -3],
+      [4, -16],
+      [-23, -14],
+      [13, -41],
+      [52, 0],
+      [25, -86],
+      [0, -95],
+      [71, -41],
+      [40, -68],
+      [-23, -68],
+      [42, -12],
+      [60, -46],
+      [2, -108],
+      [50, -26],
+      [4, -70],
+      [35, -18],
+      [44, -130],
+      [-35, -64],
+      [-43, -32],
+      [37, -51],
+      [22, 34],
+      [70, 15],
+      [7, -168],
+      [-11, -26],
+      [-100, -5],
+      [2, -31],
+      [126, 43],
+      [21, -9],
+      [59, -142],
+      [15, 31],
+      [61, -201],
+      [-50, -25],
+      [-20, -63],
+      [74, -39],
+      [-15, -89],
+      [24, -42],
+      [90, -7],
+      [23, -32],
+      [5, -68],
+      [-44, -13],
+      [-25, -48],
+      [-2, -44],
+      [-32, -145],
+      [-7, -89],
+      [14, -114],
+      [82, 1],
+      [-5, -75],
+      [18, -62],
+      [50, 5],
+      [12, -80],
+      [82, 7],
+      [4, -48],
+      [67, 21],
+      [32, -31],
+      [-13, -52],
+      [48, -141],
+      [-34, -12],
+      [-26, -140],
+      [24, 7],
+      [27, 59],
+      [37, -54],
+      [71, 79],
+      [21, -20],
+      [-15, -80],
+      [43, 8],
+      [24, 37],
+      [30, -95],
+      [27, 82],
+      [62, -25],
+      [16, -46],
+      [13, -126],
+      [52, -7],
+      [60, -42],
+      [56, 14],
+      [-2, 49],
+      [59, -4],
+      [66, -133],
+      [63, 10],
+      [19, -87],
+      [-16, -39],
+      [-63, -42],
+      [-45, 18],
+      [-70, -21],
+      [-19, -68],
+      [-46, -4],
+      [-2, -41],
+      [-40, -73],
+      [-79, -23],
+      [-134, -97],
+      [-90, 10],
+      [-34, -35],
+      [-29, -60],
+      [-6, -127],
+      [-55, -51],
+      [76, -19],
+      [42, 88],
+      [69, 19],
+      [52, 76],
+      [86, 29],
+      [-8, 49],
+      [51, 88],
+      [33, 2],
+      [39, 37],
+      [40, 7],
+      [3, 95],
+      [52, 26],
+      [75, -22],
+      [108, -8],
+      [54, -183],
+      [16, -79],
+      [-65, -48],
+      [21, -50],
+      [1, -58],
+      [42, 44],
+      [-1, 50],
+      [43, 62],
+      [48, -7],
+      [17, 23],
+      [22, -62],
+      [46, -25],
+      [17, 15],
+      [34, -36],
+      [46, 3],
+      [10, -107],
+      [39, -27],
+      [-8, -140],
+      [-17, -52],
+      [22, -67],
+      [-44, -69],
+      [14, -56],
+      [45, 7],
+      [-15, -102],
+      [47, -50],
+      [-16, -112],
+      [3, -82],
+      [-48, -78],
+      [-75, -97],
+      [-117, -91],
+      [-43, -101],
+      [-62, -19]
+    ],
+    [
+      [18645, 10873],
+      [60, -57],
+      [4, -53],
+      [-96, 53],
+      [32, 57]
+    ],
+    [
+      [1280, 15956],
+      [28, -16],
+      [1, -80],
+      [-47, 54],
+      [18, 42]
+    ],
+    [
+      [5040, 16030],
+      [-162, -16],
+      [36, -896],
+      [217, -143],
+      [347, -236],
+      [374, -156],
+      [164, -131],
+      [257, -214],
+      [355, -314],
+      [281, -264],
+      [286, 29],
+      [0, 0],
+      [178, 16],
+      [253, -222],
+      [178, -161],
+      [453, -63],
+      [399, -66],
+      [175, -32],
+      [378, -82],
+      [2, 0],
+      [248, -59],
+      [0, 0],
+      [75, -19],
+      [0, -33],
+      [0, -1],
+      [0, -215],
+      [0, 0],
+      [0, -18],
+      [0, -1],
+      [0, -7],
+      [0, -4],
+      [0, 0],
+      [0, -1],
+      [0, -407],
+      [0, -3],
+      [0, -70],
+      [0, 0],
+      [0, -3],
+      [0, 0],
+      [0, -387],
+      [0, 0],
+      [0, -77],
+      [0, -1],
+      [0, -4],
+      [0, 0],
+      [0, -43],
+      [0, -1],
+      [0, -458],
+      [0, 0],
+      [0, -216],
+      [0, -4],
+      [0, -115],
+      [0, 0],
+      [0, -47],
+      [0, -2],
+      [0, -301]
+    ],
+    [
+      [9534, 10582],
+      [-1955, 0]
+    ],
+    [
+      [4208, 10582],
+      [-51, 63],
+      [-30, 56],
+      [-23, 91],
+      [4, 47],
+      [-46, 7],
+      [-15, 66],
+      [-30, 40],
+      [20, 50],
+      [-12, 122],
+      [-55, 11],
+      [-15, -70],
+      [-79, -3],
+      [-28, -37],
+      [-66, 26],
+      [-33, -6],
+      [-40, 46],
+      [-33, -54],
+      [-24, 36],
+      [-28, -5],
+      [-25, -48],
+      [-50, 24],
+      [-37, -40],
+      [-51, 25],
+      [-2, 91],
+      [-27, 68],
+      [-26, 10],
+      [18, 89],
+      [-26, 137],
+      [-33, 24],
+      [-56, -9],
+      [-73, 63],
+      [-68, 78],
+      [6, 55],
+      [-41, 3],
+      [-15, 62],
+      [-73, 104],
+      [-29, -4],
+      [-15, -38],
+      [-53, 43],
+      [-45, -11],
+      [-34, 92],
+      [14, 142],
+      [-28, 12],
+      [-59, 90],
+      [-24, 77],
+      [-2, 65],
+      [21, 67],
+      [-37, 10],
+      [-78, 141],
+      [47, 36],
+      [-24, 140],
+      [-29, -1],
+      [-15, 147],
+      [-48, -28],
+      [-25, 45],
+      [-81, 49],
+      [-44, 79],
+      [3, 42],
+      [-31, 101],
+      [-55, 50],
+      [-81, -54],
+      [-45, 9],
+      [23, 61],
+      [-54, 67],
+      [-25, 61],
+      [-78, 50],
+      [-46, -7],
+      [51, 167],
+      [-50, 17],
+      [-56, 54],
+      [57, 97],
+      [39, 30],
+      [51, 115],
+      [-35, 79],
+      [-61, 53],
+      [17, 82],
+      [-40, 25],
+      [-62, -76],
+      [-3, 78],
+      [-50, 7],
+      [-68, -54],
+      [-62, 12],
+      [27, 122],
+      [-19, 74],
+      [-39, -2],
+      [27, 166],
+      [-42, 81],
+      [21, 45],
+      [-45, 60],
+      [28, 55],
+      [-570, 0],
+      [-18, 100],
+      [24, 35],
+      [-15, 190],
+      [-22, 41],
+      [-39, 9],
+      [-2, 95],
+      [-3, 608]
+    ],
+    [
+      [1109, 15702],
+      [28, 4],
+      [42, -5],
+      [31, -43],
+      [20, 24],
+      [44, -18],
+      [-12, -30],
+      [8, 14],
+      [46, -23],
+      [31, -30],
+      [-36, -16],
+      [0, -3],
+      [50, 0],
+      [-3, -9],
+      [53, -68],
+      [5, -5],
+      [11, -12],
+      [12, 4],
+      [11, -8],
+      [8, 10],
+      [-57, 35],
+      [27, 28],
+      [11, -28],
+      [17, 28],
+      [-76, 90],
+      [-25, 15],
+      [-6, 64],
+      [35, 5],
+      [-20, 39],
+      [7, 2],
+      [-26, 23],
+      [-24, -5],
+      [-82, 59],
+      [1, 76],
+      [47, -58],
+      [51, -32],
+      [-12, 20],
+      [14, 2],
+      [13, 29],
+      [-17, 6],
+      [-19, 78],
+      [40, 3],
+      [37, -29],
+      [16, 87],
+      [34, -54],
+      [5, 75],
+      [61, -3],
+      [40, 20],
+      [15, -52],
+      [-5, 21],
+      [5, -3],
+      [9, 56],
+      [33, 47],
+      [-14, 36],
+      [50, -12],
+      [7, -45],
+      [23, -31],
+      [37, 12],
+      [29, -31],
+      [21, 42],
+      [-1, -53],
+      [-39, -55],
+      [-28, -39],
+      [12, -32],
+      [34, 40],
+      [46, 8],
+      [45, 35],
+      [73, -16],
+      [52, 22],
+      [9, 90],
+      [4, 31],
+      [1, 6],
+      [68, 13],
+      [46, -22],
+      [37, 56],
+      [32, -13],
+      [59, 6],
+      [-3, 34],
+      [35, 7],
+      [45, 55],
+      [52, 16],
+      [5, 41],
+      [79, -45],
+      [34, 86],
+      [5, 18],
+      [46, 0],
+      [45, 31],
+      [20, -9],
+      [32, -3],
+      [21, -10],
+      [56, -26],
+      [24, 17],
+      [22, 48],
+      [39, -17],
+      [10, 47],
+      [34, -36],
+      [-14, -4],
+      [37, -28],
+      [-28, -36],
+      [-2, -12],
+      [-168, -88],
+      [-65, -50],
+      [-33, -45],
+      [-35, -8],
+      [-46, -71],
+      [-49, 39],
+      [-46, -29],
+      [-26, 7],
+      [-108, -31],
+      [-48, -23],
+      [-21, -74],
+      [-72, -38],
+      [26, -48],
+      [68, 0],
+      [74, 67],
+      [3, 35],
+      [44, 35],
+      [49, -12],
+      [37, 61],
+      [11, 42],
+      [36, -58],
+      [33, -86],
+      [-28, -59],
+      [11, -73],
+      [16, 98],
+      [45, 60],
+      [66, 101],
+      [30, 68],
+      [62, 9],
+      [93, 41],
+      [27, 23],
+      [101, 13],
+      [10, -86],
+      [36, -33],
+      [19, 21],
+      [18, 44],
+      [50, 69],
+      [72, 46],
+      [12, -9],
+      [9, -9],
+      [6, 3],
+      [-8, 21],
+      [-34, 74],
+      [37, 38],
+      [61, -43],
+      [14, 61],
+      [97, 25],
+      [1, -38],
+      [15, -1],
+      [-7, 5],
+      [-8, 42],
+      [-74, 9],
+      [-55, 23],
+      [-30, 46],
+      [10, 75],
+      [37, 39],
+      [152, -121],
+      [78, -115],
+      [85, -237],
+      [104, -129],
+      [92, -78],
+      [36, -9],
+      [62, -30],
+      [46, 33],
+      [8, 42],
+      [5, 49],
+      [-2, 21],
+      [-40, 18],
+      [15, 44],
+      [40, 4],
+      [43, 34],
+      [31, 110],
+      [-54, 54],
+      [30, 4],
+      [103, 20],
+      [13, 47],
+      [31, -29],
+      [-14, -79],
+      [12, -70],
+      [-6, -80],
+      [70, -2],
+      [-29, -85],
+      [-44, -44],
+      [-11, -62],
+      [32, -15],
+      [68, -3],
+      [19, 15],
+      [9, 16],
+      [31, -16],
+      [33, -10],
+      [47, 16],
+      [38, 66],
+      [34, 13],
+      [22, 71],
+      [10, 52],
+      [33, 60],
+      [48, -19],
+      [31, 18],
+      [114, -18],
+      [100, 7],
+      [56, -23],
+      [30, 5],
+      [69, -52],
+      [46, -12],
+      [135, -133]
+    ],
+    [
+      [7616, 18051],
+      [2, -231]
+    ],
+    [
+      [7618, 17820],
+      [-50, 67],
+      [-39, 15],
+      [-12, 89],
+      [-72, 12],
+      [-36, 38],
+      [3, 46],
+      [55, 9],
+      [94, -13],
+      [57, -25],
+      [0, -1],
+      [-2, -6]
+    ],
+    [
+      [7616, 17768],
+      [-1, -726],
+      [0, -7],
+      [-3, -724],
+      [-228, 5],
+      [-521, -1],
+      [-74, -2],
+      [10, -106],
+      [-73, 6],
+      [-12, 100],
+      [-387, -11],
+      [-269, 2],
+      [-269, -6]
+    ],
+    [
+      [5789, 16298],
+      [-10, 79],
+      [97, 52],
+      [246, 61],
+      [266, 33],
+      [87, 20],
+      [101, -5],
+      [58, -22],
+      [153, 3],
+      [69, -28],
+      [40, 3],
+      [66, -23],
+      [89, 54],
+      [69, -15],
+      [43, 7],
+      [17, 51],
+      [-79, 10],
+      [-32, 64],
+      [-59, 22],
+      [-69, -7],
+      [-9, 26],
+      [-54, -9],
+      [-74, 54],
+      [-65, 17],
+      [-30, -15],
+      [-63, 39],
+      [-46, -1],
+      [-32, -21],
+      [-69, 2],
+      [-17, -21],
+      [-116, -22],
+      [-98, 3],
+      [-109, -8],
+      [-11, -28],
+      [-41, -6],
+      [-56, 59],
+      [-65, -1],
+      [-44, -18],
+      [-192, 11],
+      [-49, 13],
+      [-1, 35],
+      [-88, 53],
+      [-51, 46],
+      [-38, 56],
+      [18, 38],
+      [129, 73],
+      [74, 10],
+      [105, 32],
+      [61, 6],
+      [13, 25],
+      [130, 42],
+      [63, -1],
+      [-14, 46],
+      [71, 35],
+      [68, -15],
+      [-3, 40],
+      [-53, 7],
+      [-113, -36],
+      [-25, 5],
+      [-132, -41],
+      [-53, 2],
+      [-37, -20],
+      [-84, -13],
+      [-83, 9],
+      [-30, -13],
+      [-66, 12],
+      [-9, 50],
+      [62, 40],
+      [72, -12],
+      [-63, 81],
+      [-41, -38],
+      [-58, -9],
+      [-21, 40],
+      [-88, 2],
+      [-11, -42],
+      [-44, 46],
+      [-10, 108],
+      [38, 71],
+      [57, 41],
+      [52, 82],
+      [93, 16],
+      [-11, 77],
+      [-70, 2],
+      [-16, 72],
+      [52, 56],
+      [83, 63],
+      [86, 48],
+      [53, 70],
+      [155, 61],
+      [124, 63],
+      [72, 15],
+      [130, 50],
+      [34, 25],
+      [129, 41],
+      [18, 22],
+      [59, 0],
+      [61, -26],
+      [65, -97],
+      [-18, -83],
+      [-3, -120],
+      [-45, -2],
+      [-22, -71],
+      [-60, -30],
+      [49, -43],
+      [88, 59],
+      [42, -10],
+      [103, 60],
+      [-13, 48],
+      [25, 58],
+      [67, 48],
+      [151, -37],
+      [66, -33],
+      [65, -10],
+      [53, -35],
+      [39, -4],
+      [87, -47],
+      [-12, -92],
+      [-33, -13],
+      [-17, -47],
+      [-68, -34],
+      [2, -43],
+      [83, 67],
+      [24, -43],
+      [49, -10],
+      [32, 56],
+      [32, 17],
+      [27, 57],
+      [75, -32],
+      [17, 21],
+      [73, -66],
+      [43, 0]
+    ],
+    [
+      [4762, 18988],
+      [105, -22],
+      [37, -51],
+      [131, -62],
+      [71, -26],
+      [110, -23],
+      [4, -64],
+      [33, 49],
+      [95, 3],
+      [41, -123],
+      [33, 36],
+      [15, 84],
+      [143, 38],
+      [135, -16],
+      [80, -26],
+      [121, -94],
+      [41, -22],
+      [77, -75],
+      [138, -113],
+      [99, -72],
+      [-8, -49],
+      [-97, -72],
+      [-209, -70],
+      [-64, -47],
+      [-135, -52],
+      [-138, -96],
+      [-58, -17],
+      [-179, -106],
+      [-64, -8],
+      [4, -88],
+      [-42, -102],
+      [-35, -10],
+      [-59, -49],
+      [-91, 6],
+      [3, -81],
+      [-71, -81],
+      [24, -72],
+      [-23, -132],
+      [-27, -49],
+      [-37, -27],
+      [-155, -53],
+      [-94, 62],
+      [-42, -40],
+      [-37, -70],
+      [-111, -44],
+      [-79, -80],
+      [-78, -2],
+      [-72, 80],
+      [-49, 161],
+      [-43, 25],
+      [-41, 76],
+      [-60, 42],
+      [-96, 27],
+      [-120, 69],
+      [-18, 32],
+      [-51, 10],
+      [-89, -16],
+      [18, 62],
+      [-17, 49],
+      [67, 113],
+      [37, 79],
+      [89, 46],
+      [-1, 69],
+      [-20, 121],
+      [26, -12],
+      [112, 33],
+      [-42, 62],
+      [-42, 7],
+      [25, 69],
+      [48, 50],
+      [11, 67],
+      [48, 73],
+      [59, 24],
+      [0, 67],
+      [50, 32],
+      [4, 67],
+      [-84, 27],
+      [-8, 48],
+      [-52, 71],
+      [-3, 69],
+      [-38, 55],
+      [38, 50],
+      [93, 17],
+      [147, 11],
+      [141, 21],
+      [88, 1],
+      [81, 14],
+      [103, 36],
+      [54, 4]
+    ],
+    [
+      [5709, 19891],
+      [38, -9],
+      [-5, -47],
+      [-52, -58],
+      [-50, -103],
+      [-76, -67],
+      [-9, -27],
+      [-63, -30],
+      [-46, -6],
+      [-43, 32],
+      [-76, 2],
+      [14, 71],
+      [115, 113],
+      [78, 44],
+      [50, 0],
+      [15, 32],
+      [64, -2],
+      [10, -19],
+      [36, 74]
+    ],
+    [
+      [7619, 20104],
+      [0, -139]
+    ],
+    [
+      [7619, 19965],
+      [-52, -4],
+      [-27, 33],
+      [-36, 3],
+      [-18, 72],
+      [133, 35]
+    ],
+    [
+      [7614, 19552],
+      [6, 0],
+      [0, -378]
+    ],
+    [
+      [7620, 19174],
+      [-40, -20],
+      [-87, 2],
+      [-57, -33],
+      [0, -42],
+      [-155, -68],
+      [-104, -56],
+      [-163, -42],
+      [-158, -15],
+      [-134, 15],
+      [-73, 24],
+      [-101, 60],
+      [-7, 40],
+      [17, 70],
+      [110, 37],
+      [58, -2],
+      [61, 30],
+      [21, 29],
+      [74, 30],
+      [75, 11],
+      [160, 3],
+      [46, -12],
+      [36, 16],
+      [134, 93],
+      [-1, 60],
+      [-55, -5],
+      [-14, -37],
+      [-42, -22],
+      [-172, -19],
+      [-39, 23],
+      [-23, 48],
+      [-26, -27],
+      [-30, 44],
+      [-39, -46],
+      [-9, -43],
+      [-108, -28],
+      [-143, -16],
+      [-19, 26],
+      [35, 129],
+      [-36, 77],
+      [-42, -123],
+      [-85, -107],
+      [-64, -16],
+      [-23, -24],
+      [-53, -14],
+      [-32, 18],
+      [-12, 108],
+      [-98, -119],
+      [-65, 12],
+      [-35, 27],
+      [-47, 8],
+      [-6, 91],
+      [-80, -29],
+      [-28, -27],
+      [-62, 29],
+      [-53, -3],
+      [-120, 46],
+      [23, 62],
+      [75, 69],
+      [42, 9],
+      [265, 1],
+      [100, 58],
+      [-28, 34],
+      [-115, -27],
+      [-42, -20],
+      [-188, 9],
+      [-8, 53],
+      [73, 76],
+      [205, 7],
+      [13, 35],
+      [-118, 0],
+      [-70, 14],
+      [9, 80],
+      [34, 49],
+      [79, 46],
+      [98, 26],
+      [18, 75],
+      [67, 18],
+      [73, 36],
+      [98, 9],
+      [150, -9],
+      [24, -25],
+      [-11, -71],
+      [40, -65],
+      [71, 1],
+      [97, 44],
+      [95, -8],
+      [8, -23],
+      [86, -24],
+      [23, -77],
+      [98, -22],
+      [68, -57],
+      [-86, -17],
+      [-2, -36],
+      [67, 13],
+      [47, -9],
+      [66, -52],
+      [-5, -50],
+      [25, -72],
+      [67, 4],
+      [134, 26],
+      [11, -17],
+      [131, -6]
+    ],
+    [
+      [6581, 20337],
+      [80, -2],
+      [66, -34],
+      [-5, -55],
+      [-118, -8],
+      [-167, 18],
+      [0, 69],
+      [28, 10],
+      [116, 2]
+    ],
+    [
+      [6003, 20710],
+      [68, -23],
+      [29, -27],
+      [78, -17],
+      [66, -42],
+      [-20, -47],
+      [-160, -36],
+      [-30, -36],
+      [28, -64],
+      [88, -27],
+      [-16, -48],
+      [-79, 27],
+      [-14, -39],
+      [80, -40],
+      [-11, -76],
+      [-70, -54],
+      [-51, -10],
+      [-132, -2],
+      [18, -129],
+      [-77, -45],
+      [-76, 10],
+      [-61, 31],
+      [-47, 45],
+      [17, 60],
+      [10, 97],
+      [35, 22],
+      [-17, 61],
+      [-28, -37],
+      [-71, 11],
+      [-21, -74],
+      [2, -58],
+      [-54, -29],
+      [-63, 34],
+      [5, -60],
+      [52, -30],
+      [-14, -69],
+      [-59, -5],
+      [-22, -86],
+      [-38, -15],
+      [-42, 17],
+      [-43, 96],
+      [-41, 11],
+      [1, -186],
+      [-21, -65],
+      [-80, -22],
+      [-35, 30],
+      [-25, -51],
+      [-43, 11],
+      [9, 103],
+      [-42, -8],
+      [-26, 22],
+      [-3, 82],
+      [-33, 18],
+      [-40, -31],
+      [0, -57],
+      [-79, -73],
+      [-39, 48],
+      [-71, 11],
+      [-21, 25],
+      [-47, -17],
+      [-24, -35],
+      [-63, -36],
+      [-20, 49],
+      [11, 69],
+      [-28, 31],
+      [-8, 95],
+      [69, 34],
+      [101, 24],
+      [43, -13],
+      [58, 11],
+      [28, 24],
+      [53, 124],
+      [41, -21],
+      [44, 37],
+      [77, 27],
+      [13, -10],
+      [41, 78],
+      [169, 147],
+      [59, 23],
+      [14, 42],
+      [39, 39],
+      [49, -20],
+      [26, 33],
+      [69, 10],
+      [113, -6],
+      [84, 6],
+      [124, -43],
+      [55, 37],
+      [44, -20],
+      [-21, 82],
+      [78, 43],
+      [38, 2]
+    ],
+    [
+      [6520, 21020],
+      [10, -43],
+      [41, -4],
+      [54, -49],
+      [48, -10],
+      [5, -59],
+      [-26, -25],
+      [-124, -20],
+      [-185, 121],
+      [85, 58],
+      [92, 31]
+    ],
+    [
+      [7626, 21038],
+      [-6, -98]
+    ],
+    [
+      [7620, 20940],
+      [-99, -22],
+      [-134, -11],
+      [29, -63],
+      [145, 6],
+      [1, -124],
+      [-37, -36],
+      [-55, -22],
+      [-33, 3],
+      [-73, -36],
+      [-109, 12],
+      [-101, -42],
+      [-80, -10],
+      [-97, 20],
+      [-37, 55],
+      [-74, -1],
+      [-8, 32],
+      [-61, 3],
+      [11, 55],
+      [-36, 88],
+      [21, 84],
+      [52, -8],
+      [88, 20],
+      [38, 31],
+      [132, 14],
+      [36, 20],
+      [23, -14],
+      [104, 36],
+      [82, -8],
+      [61, 17],
+      [182, 4],
+      [35, -5]
+    ],
+    [
+      [7623, 21343],
+      [-3, -185],
+      [0, -6]
+    ],
+    [
+      [7620, 21152],
+      [-44, 18],
+      [-87, -33],
+      [-88, 13],
+      [-69, 47],
+      [-72, 2],
+      [-28, -63],
+      [-94, 3],
+      [-21, 42],
+      [-69, 15],
+      [-200, -45],
+      [-39, -17],
+      [3, 75],
+      [103, 44],
+      [82, 17],
+      [47, 24],
+      [132, -3],
+      [32, 26],
+      [40, 1],
+      [51, 59],
+      [87, 16],
+      [28, 19],
+      [70, 3],
+      [139, -72]
+    ],
+    [
+      [18810, 2486],
+      [35, 0],
+      [23, -52],
+      [35, -24],
+      [58, 11],
+      [33, -82],
+      [74, 39],
+      [67, -19],
+      [57, -83],
+      [98, 98],
+      [37, 58],
+      [5, -116],
+      [66, -32],
+      [38, 35],
+      [55, -138],
+      [-42, -61],
+      [107, -5],
+      [-14, -60],
+      [-67, 10],
+      [-20, -53],
+      [-33, 1],
+      [-76, -73],
+      [-85, -50],
+      [-195, -129],
+      [-12, -31],
+      [-51, 30],
+      [-36, -26],
+      [-27, -102],
+      [-25, -31],
+      [-73, 24],
+      [-2, 93],
+      [-56, -45],
+      [-34, -9],
+      [-9, -113],
+      [12, -59],
+      [-37, -19],
+      [-11, -44],
+      [-43, -64],
+      [-44, -118],
+      [-48, -82],
+      [-45, 34],
+      [-27, -33],
+      [-16, -87],
+      [-26, -31],
+      [-57, 0],
+      [-8, 103],
+      [-21, 60],
+      [-66, -23],
+      [-21, 221],
+      [19, 125],
+      [68, 133],
+      [-16, 31],
+      [150, 184],
+      [106, 116],
+      [111, 77],
+      [15, -60],
+      [32, -34],
+      [12, 46],
+      [89, 73],
+      [58, 0],
+      [-9, 46],
+      [-43, 4],
+      [-32, -26],
+      [-45, 31],
+      [-70, -20],
+      [-45, 19],
+      [-69, -30],
+      [-15, 44],
+      [55, 61],
+      [100, 172]
+    ],
+    [
+      [19655, 3098],
+      [34, -48],
+      [6, -46],
+      [31, -19],
+      [-12, -133],
+      [-26, -106],
+      [5, -81],
+      [-52, -102],
+      [-47, -26],
+      [5, -73],
+      [-40, -9],
+      [3, -49],
+      [-32, -30],
+      [88, -41],
+      [6, 103],
+      [-13, 36],
+      [55, 67],
+      [39, 73],
+      [63, 37],
+      [43, -30],
+      [14, -69],
+      [-2, -92],
+      [-19, -30],
+      [-34, 0],
+      [1, -59],
+      [-26, -11],
+      [-39, -60],
+      [-84, -49],
+      [-48, 27],
+      [-59, -33],
+      [-41, 0],
+      [-33, 88],
+      [-21, 187],
+      [34, 88],
+      [25, 25],
+      [56, 141],
+      [46, 176],
+      [49, 74],
+      [25, 74]
+    ],
+    [
+      [15126, 8551],
+      [-43, 8]
+    ],
+    [
+      [15083, 8559],
+      [15, 29],
+      [28, -37]
+    ],
+    [
+      [18577, 11556],
+      [66, -28],
+      [16, -93],
+      [-24, -93],
+      [-26, -4],
+      [-13, 53],
+      [-24, -1],
+      [-38, 58],
+      [-40, 17],
+      [-13, 74],
+      [96, 17]
+    ],
+    [
+      [18542, 11700],
+      [74, -72],
+      [-21, -56],
+      [-49, 37],
+      [-26, 52],
+      [22, 39]
+    ],
+    [
+      [17080, 12251],
+      [89, -31],
+      [90, -55],
+      [56, -96],
+      [-47, -29],
+      [-78, 13],
+      [-27, 54],
+      [-14, 65],
+      [-69, 79]
+    ],
+    [
+      [14363, 12307],
+      [83, -27],
+      [-15, -139],
+      [-43, -55],
+      [-37, -11],
+      [-39, -72],
+      [-45, -39],
+      [-44, -69],
+      [-74, -51],
+      [-45, 42],
+      [-28, -4],
+      [-75, -63],
+      [-1, 71],
+      [-50, 86],
+      [1, 43],
+      [68, 52],
+      [30, 149],
+      [59, 54],
+      [16, -43],
+      [52, -7],
+      [75, 56],
+      [75, -3],
+      [37, 30]
+    ],
+    [
+      [18730, 12813],
+      [54, -21],
+      [-23, -72],
+      [-26, 26],
+      [-5, 67]
+    ],
+    [
+      [15492, 12914],
+      [-15, -67],
+      [-27, 1],
+      [-33, 56],
+      [75, 10]
+    ],
+    [
+      [14689, 12958],
+      [56, -62],
+      [32, -13],
+      [-8, -65],
+      [91, -41],
+      [1, -36],
+      [-71, -13],
+      [-18, -47],
+      [-82, -58],
+      [-26, -52],
+      [-146, 66],
+      [-49, 37],
+      [-81, 42],
+      [-65, -13],
+      [-5, 79],
+      [70, 24],
+      [11, 42],
+      [27, -8],
+      [89, 64],
+      [88, 26],
+      [78, -50],
+      [8, 78]
+    ],
+    [
+      [18577, 13093],
+      [24, -53],
+      [-18, -39],
+      [-24, 31],
+      [18, 61]
+    ],
+    [
+      [13569, 14002],
+      [26, -56],
+      [50, -11],
+      [31, -135],
+      [-32, -17],
+      [51, -82],
+      [-3, -38],
+      [31, -76],
+      [21, 4],
+      [15, 80],
+      [48, 76],
+      [49, -59],
+      [31, -13],
+      [13, -81],
+      [82, -35],
+      [75, 1],
+      [45, -51],
+      [4, -40],
+      [34, -36],
+      [81, -51],
+      [66, -64],
+      [44, -2],
+      [67, -28],
+      [87, -117],
+      [-5, -86],
+      [44, -90],
+      [-3, -36],
+      [-58, -18],
+      [-28, 13],
+      [-57, -56],
+      [-23, -74],
+      [-62, 40],
+      [-88, 18],
+      [-31, -18],
+      [-16, 49],
+      [19, 80],
+      [-130, -45],
+      [-11, -36],
+      [-12, -163],
+      [-31, 12],
+      [-17, -45],
+      [-44, -27],
+      [-19, -34],
+      [-43, 15],
+      [-25, -31],
+      [-24, -109],
+      [-30, -47],
+      [-150, -105],
+      [-66, -2],
+      [-35, 39],
+      [-12, 138],
+      [17, 125],
+      [-17, 58],
+      [36, 98],
+      [-15, 51],
+      [-30, -44],
+      [-49, 13],
+      [-28, -37],
+      [-2, -108],
+      [-63, -31],
+      [-30, 15],
+      [-58, -3],
+      [-31, -44],
+      [-42, -18],
+      [-52, 10],
+      [-13, 90],
+      [73, 113],
+      [168, 102],
+      [4, 45],
+      [-26, 35],
+      [-17, 72],
+      [-5, 120],
+      [50, 180],
+      [-4, 73],
+      [19, 65],
+      [-5, 115],
+      [17, 133],
+      [26, 112],
+      [91, 100],
+      [27, 9]
+    ],
+    [
+      [13675, 14064],
+      [50, -33],
+      [37, -107],
+      [35, -60],
+      [-1, -40],
+      [-40, -43],
+      [-37, 77],
+      [-58, 48],
+      [-10, 106],
+      [24, 52]
+    ],
+    [
+      [13836, 14129],
+      [90, -52],
+      [86, -68],
+      [-5, -87],
+      [53, -32],
+      [55, -3],
+      [-2, -57],
+      [-101, 10],
+      [-30, 62],
+      [-67, -3],
+      [-19, 131],
+      [-49, 5],
+      [-23, 54],
+      [12, 40]
+    ],
+    [
+      [19214, 14728],
+      [-50, -51],
+      [0, 48],
+      [50, 3]
+    ],
+    [
+      [8166, 14751],
+      [42, -50],
+      [-11, -32],
+      [-31, 82]
+    ],
+    [
+      [18943, 14830],
+      [-40, -46],
+      [-7, 44],
+      [47, 2]
+    ],
+    [
+      [18832, 14994],
+      [39, -44],
+      [-45, -44],
+      [6, 88]
+    ],
+    [
+      [8052, 15012],
+      [29, -20],
+      [-24, -100],
+      [-13, 58],
+      [8, 62]
+    ],
+    [
+      [7771, 15203],
+      [35, -28],
+      [35, 15],
+      [2, -80],
+      [-72, 93]
+    ],
+    [
+      [16299, 15305],
+      [52, -61],
+      [80, -47],
+      [55, 31],
+      [42, -91],
+      [-5, -64],
+      [-74, 0],
+      [-36, 16],
+      [-115, -23],
+      [-39, 14],
+      [-43, 56],
+      [-27, 58],
+      [9, 58],
+      [60, -13],
+      [41, 66]
+    ],
+    [
+      [13288, 15376],
+      [55, -50],
+      [4, -120],
+      [10, -63],
+      [-22, -70],
+      [-24, -28],
+      [-62, 22],
+      [-38, 94],
+      [1, 67],
+      [16, 79],
+      [60, 69]
+    ],
+    [
+      [15906, 15402],
+      [70, -14],
+      [43, -30],
+      [85, -20],
+      [30, -41],
+      [-36, -126],
+      [33, -30],
+      [-12, -62],
+      [4, -105],
+      [-35, -97],
+      [-41, -35],
+      [-106, -66],
+      [-111, -6],
+      [-51, 47],
+      [-41, -6],
+      [-11, -34],
+      [-101, 24],
+      [-35, 91],
+      [5, 41],
+      [-24, 101],
+      [39, 123],
+      [40, 87],
+      [75, 108],
+      [84, 34],
+      [67, -12],
+      [29, 28]
+    ],
+    [
+      [15123, 15413],
+      [49, -4],
+      [31, -46],
+      [-48, -54],
+      [-45, 34],
+      [13, 70]
+    ],
+    [
+      [16302, 15473],
+      [58, -76],
+      [-38, -49],
+      [-36, 78],
+      [16, 47]
+    ],
+    [
+      [16235, 15480],
+      [30, -110],
+      [-49, 35],
+      [19, 75]
+    ],
+    [
+      [15229, 15528],
+      [13, -45],
+      [-46, -31],
+      [4, 75],
+      [29, 1]
+    ],
+    [
+      [8819, 15545],
+      [79, -15],
+      [49, -45],
+      [-11, -44],
+      [-75, 3],
+      [-57, 44],
+      [15, 57]
+    ],
+    [
+      [16074, 15622],
+      [63, -32],
+      [11, -54],
+      [41, -70],
+      [-53, 0],
+      [-22, -25],
+      [-37, 12],
+      [-41, 45],
+      [2, 66],
+      [36, 58]
+    ],
+    [
+      [9563, 15676],
+      [51, -44],
+      [-27, -48],
+      [-7, -50],
+      [-32, 26],
+      [-68, 15],
+      [4, 43],
+      [50, 60],
+      [29, -2]
+    ],
+    [
+      [12488, 15684],
+      [29, -34],
+      [-35, -67],
+      [-22, 62],
+      [28, 39]
+    ],
+    [
+      [9908, 15807],
+      [37, -10],
+      [7, -36],
+      [40, -29],
+      [-8, -65],
+      [-57, -52],
+      [-24, 50],
+      [-28, -15],
+      [3, 130],
+      [30, 27]
+    ],
+    [
+      [12310, 15998],
+      [50, -58],
+      [-35, -48],
+      [-14, 31],
+      [-36, 49],
+      [12, 18],
+      [23, 8]
+    ],
+    [
+      [15283, 16007],
+      [41, -5],
+      [26, -51],
+      [-38, -55],
+      [-20, 18],
+      [-24, -80],
+      [-42, -48],
+      [-24, -53],
+      [-111, -48],
+      [-29, 53],
+      [51, 98],
+      [60, 8],
+      [53, 133],
+      [57, 30]
+    ],
+    [
+      [12420, 16032],
+      [13, -31],
+      [-26, -69],
+      [-36, 24],
+      [-3, 49],
+      [52, 27]
+    ],
+    [
+      [15618, 16039],
+      [49, -42],
+      [56, 24],
+      [5, -62],
+      [-42, -30],
+      [-64, -78],
+      [-41, 13],
+      [-20, 96],
+      [6, 68],
+      [51, 11]
+    ],
+    [
+      [10966, 16113],
+      [20, -70],
+      [-13, -60],
+      [-50, 34],
+      [-14, 28],
+      [-49, 27],
+      [8, 37],
+      [39, 6],
+      [22, -30],
+      [37, 28]
+    ],
+    [
+      [9715, 16119],
+      [52, -25],
+      [-11, -79],
+      [-33, 5],
+      [-8, 99]
+    ],
+    [
+      [11060, 16144],
+      [45, -12],
+      [59, -52],
+      [-9, -64],
+      [-30, -44],
+      [-41, 8],
+      [5, 114],
+      [-62, -107],
+      [-14, 89],
+      [22, 58],
+      [25, 10]
+    ],
+    [
+      [17863, 16190],
+      [35, -26],
+      [-44, -82],
+      [-52, 29],
+      [25, 57],
+      [36, 22]
+    ],
+    [
+      [15365, 16216],
+      [40, -30],
+      [-23, -69],
+      [-90, -36],
+      [-46, -1],
+      [-43, -34],
+      [-12, 26],
+      [72, 75],
+      [86, 27],
+      [16, 42]
+    ],
+    [
+      [14232, 16248],
+      [72, -20],
+      [-3, -37],
+      [-51, 15],
+      [-18, 42]
+    ],
+    [
+      [15004, 16250],
+      [45, -7],
+      [8, -73],
+      [-63, -33],
+      [-30, 36],
+      [-21, -17],
+      [-26, 35],
+      [-58, -103],
+      [-64, 80],
+      [-68, -2],
+      [13, 48],
+      [43, -16],
+      [11, 40],
+      [36, -11],
+      [36, 17],
+      [55, -46],
+      [83, 52]
+    ],
+    [
+      [10509, 16287],
+      [51, 1],
+      [31, -43],
+      [52, -15],
+      [24, -59],
+      [36, -8],
+      [83, -94],
+      [31, -1],
+      [114, -82],
+      [43, -99],
+      [44, -11],
+      [1, -68],
+      [26, -90],
+      [42, -33],
+      [97, 38],
+      [4, -53],
+      [-59, -57],
+      [-14, 45],
+      [-54, -7],
+      [-24, -79],
+      [-49, -2],
+      [-23, -58],
+      [-34, -3],
+      [-26, -43],
+      [-38, -3],
+      [-102, 49],
+      [-30, 35],
+      [-7, -49],
+      [-123, 49],
+      [-24, 37],
+      [-67, 20],
+      [-24, -9],
+      [-43, 47],
+      [-14, 55],
+      [-23, -63],
+      [-37, 29],
+      [-25, -7],
+      [-41, 37],
+      [-14, 59],
+      [-41, -27],
+      [-29, -43],
+      [-57, 43],
+      [-22, 104],
+      [30, 33],
+      [82, -1],
+      [30, 28],
+      [50, -5],
+      [24, 72],
+      [26, -16],
+      [19, 64],
+      [-37, 33],
+      [33, 55],
+      [41, 29],
+      [16, 115],
+      [37, 12],
+      [14, 39]
+    ],
+    [
+      [13179, 16446],
+      [77, -38],
+      [34, 17],
+      [46, -67],
+      [-45, -21],
+      [-123, 20],
+      [-34, 20],
+      [45, 69]
+    ],
+    [
+      [9510, 16548],
+      [46, -51],
+      [65, 37],
+      [1, -36],
+      [-46, -29],
+      [-66, 79]
+    ],
+    [
+      [9911, 16745],
+      [48, -41],
+      [-10, -58],
+      [-37, 4],
+      [-45, 31],
+      [4, 40],
+      [40, 24]
+    ],
+    [
+      [9272, 16752],
+      [42, -36],
+      [-23, -46],
+      [-19, 82]
+    ],
+    [
+      [16900, 16971],
+      [49, -26],
+      [72, -7],
+      [-10, -44],
+      [-42, -10],
+      [-111, -56],
+      [-17, 58],
+      [21, 75],
+      [38, 10]
+    ],
+    [
+      [16584, 17256],
+      [7, -58],
+      [33, 36],
+      [17, -50],
+      [-44, -56],
+      [-67, 106],
+      [54, 22]
+    ],
+    [
+      [16685, 17316],
+      [-3, -75],
+      [-65, 23],
+      [7, 43],
+      [61, 9]
+    ],
+    [
+      [5040, 16030],
+      [107, -52],
+      [169, -23],
+      [147, -46],
+      [65, -67],
+      [101, -54],
+      [65, -22],
+      [80, -8],
+      [68, -38],
+      [28, 28],
+      [83, -45],
+      [68, 11],
+      [37, -27],
+      [73, 57],
+      [31, 16],
+      [6, 19],
+      [137, -58],
+      [31, -27],
+      [24, 11],
+      [38, -32],
+      [16, -39],
+      [64, -24],
+      [19, -40],
+      [61, -46],
+      [27, -52],
+      [-5, -38],
+      [21, -93],
+      [-49, 4],
+      [-51, 26],
+      [-45, -31],
+      [-35, 2],
+      [-31, -52],
+      [-62, 18],
+      [-41, -120],
+      [-56, -45],
+      [55, -11],
+      [73, -51],
+      [66, 17],
+      [23, -25],
+      [31, 12],
+      [30, -31],
+      [87, -9],
+      [80, -25],
+      [130, 12],
+      [16, -18],
+      [161, 2],
+      [51, 33],
+      [169, 14],
+      [31, -20],
+      [50, 64],
+      [57, -38],
+      [65, 54],
+      [86, 55],
+      [47, 15],
+      [33, 14],
+      [66, -100],
+      [12, -66],
+      [51, -17],
+      [29, 37],
+      [83, -17],
+      [22, -60],
+      [13, -111],
+      [31, -42],
+      [27, 160],
+      [25, -19],
+      [20, -126],
+      [25, 37],
+      [24, -38],
+      [71, -50],
+      [24, -70],
+      [-5, -71],
+      [-51, 17],
+      [-39, -31],
+      [47, -62],
+      [-2, -39],
+      [42, -31],
+      [49, -104],
+      [49, -38],
+      [72, -118],
+      [-1, 44],
+      [-70, 83],
+      [-39, 106],
+      [-1, 66],
+      [19, 64],
+      [46, -54],
+      [-1, 56],
+      [57, -49],
+      [1, 41],
+      [-45, 35],
+      [7, 61],
+      [-44, 41],
+      [-26, 70],
+      [-3, 73],
+      [-28, 95],
+      [-68, 75],
+      [17, 58],
+      [77, 48],
+      [-51, 54],
+      [78, 24],
+      [40, -13],
+      [55, 45],
+      [76, 3],
+      [14, 55],
+      [45, 20],
+      [30, -19],
+      [11, 68],
+      [51, 32],
+      [110, 9],
+      [21, 38],
+      [-23, 77],
+      [-34, 15],
+      [-41, -39],
+      [-64, 12],
+      [-28, -59],
+      [-25, -112],
+      [-58, 65],
+      [-38, -55],
+      [-19, 12],
+      [-51, -37],
+      [-18, 37],
+      [-119, 10],
+      [-16, -47],
+      [70, -50],
+      [-47, 2],
+      [-30, -23],
+      [-94, 37],
+      [-33, 58],
+      [-67, -42],
+      [-5, 67],
+      [26, 20],
+      [59, 124],
+      [23, 17],
+      [88, 6],
+      [37, 6],
+      [101, 26],
+      [89, 39],
+      [42, 30],
+      [37, 0],
+      [109, 73],
+      [81, -40],
+      [23, 6],
+      [79, -78],
+      [-13, -38],
+      [29, -64],
+      [-13, -66],
+      [103, -83],
+      [97, -37],
+      [-5, -52],
+      [34, -63],
+      [-1, -53],
+      [59, -12],
+      [49, 42],
+      [21, -12],
+      [117, 42],
+      [7, 48],
+      [30, -7],
+      [2, -54],
+      [37, -50],
+      [59, -25],
+      [30, -43],
+      [51, -27],
+      [48, -1],
+      [52, -40],
+      [64, 44],
+      [42, -53],
+      [87, -7],
+      [45, 17],
+      [38, 42],
+      [26, -25],
+      [71, 58],
+      [34, -26],
+      [30, 24],
+      [203, -35],
+      [15, 13],
+      [57, -21],
+      [28, -36],
+      [24, 20],
+      [40, -23],
+      [22, 37],
+      [28, -7],
+      [65, 26],
+      [-59, 94],
+      [-1, 64],
+      [32, 17],
+      [91, -109],
+      [25, -81],
+      [38, -38],
+      [40, -13],
+      [50, -49],
+      [15, 59],
+      [84, -40],
+      [5, 128],
+      [-51, 12],
+      [-70, 85],
+      [-68, -56],
+      [-63, -7],
+      [-53, 63],
+      [-26, 51],
+      [11, 47],
+      [-54, 95],
+      [18, 16],
+      [30, -31],
+      [23, 21],
+      [62, -34],
+      [54, 146],
+      [142, -27],
+      [61, -65],
+      [23, -62],
+      [30, -25],
+      [48, 16],
+      [48, -46],
+      [-55, -65],
+      [9, -45],
+      [54, 79],
+      [67, 42],
+      [40, -72],
+      [-34, -98],
+      [-13, -77],
+      [13, -109],
+      [-37, 5],
+      [-28, -36],
+      [26, -61],
+      [51, -25],
+      [-22, -49],
+      [20, -55],
+      [79, 65],
+      [13, 33],
+      [36, -49],
+      [66, -30],
+      [-24, -106],
+      [26, -100],
+      [25, 54],
+      [-31, 51],
+      [32, 136],
+      [-25, 16],
+      [-16, 84],
+      [14, 36],
+      [-42, 60],
+      [-48, 26],
+      [39, 75],
+      [-2, 51],
+      [24, 38],
+      [-1, 47],
+      [53, -17],
+      [22, 28],
+      [77, -41],
+      [54, 79],
+      [95, 65],
+      [1, 67],
+      [55, 53],
+      [80, 30],
+      [4, 159],
+      [14, 24],
+      [-23, 80],
+      [-63, 2],
+      [-39, -127],
+      [-98, -15],
+      [-24, 140],
+      [40, -16],
+      [57, 103],
+      [-24, 36],
+      [18, 86],
+      [138, 14],
+      [-52, -57],
+      [3, -58],
+      [98, 94],
+      [-22, 48],
+      [-6, 71],
+      [-62, -20],
+      [-22, -35],
+      [-94, 1],
+      [-22, 53],
+      [-48, 42],
+      [-19, 46],
+      [-20, -47],
+      [-48, -13],
+      [-47, 41],
+      [-29, 0],
+      [-79, 44],
+      [-34, 37],
+      [-17, -28],
+      [-64, 39],
+      [-19, 82],
+      [-35, 8],
+      [-57, 74],
+      [-18, 107],
+      [20, 66],
+      [38, 10],
+      [18, 82],
+      [29, -12],
+      [23, 68],
+      [-36, 18],
+      [-20, -22],
+      [-28, 26],
+      [-40, 113],
+      [46, 131],
+      [-21, 100],
+      [40, 3],
+      [25, 62],
+      [34, 14],
+      [47, -21],
+      [11, -33],
+      [64, -23],
+      [20, 59],
+      [-20, 58],
+      [-70, 11],
+      [-6, 69],
+      [36, 4],
+      [55, 58],
+      [17, 62],
+      [48, -1],
+      [10, 66],
+      [120, 26],
+      [35, -1],
+      [21, -43],
+      [-10, -63],
+      [50, -47],
+      [10, 31],
+      [67, -24],
+      [45, 14],
+      [4, -93],
+      [59, -55],
+      [42, -19],
+      [76, -64],
+      [26, -45],
+      [22, -88],
+      [-17, -113],
+      [7, -71],
+      [50, -22],
+      [8, -54],
+      [34, -1],
+      [64, -46],
+      [1, -65],
+      [78, -68],
+      [54, -10],
+      [39, -123],
+      [-106, -21],
+      [-33, 33],
+      [-62, 11],
+      [-15, -59],
+      [82, 8],
+      [-5, -73],
+      [-21, -37],
+      [-72, -56],
+      [-1, -66],
+      [73, -26],
+      [29, -56],
+      [71, -41],
+      [40, 41],
+      [33, 59],
+      [55, -1],
+      [34, -83],
+      [35, 10],
+      [37, -17],
+      [15, 26],
+      [78, -25],
+      [-80, -84],
+      [-12, -9],
+      [6, -17],
+      [-3, -30],
+      [-7, -13],
+      [41, -140],
+      [55, -58],
+      [-17, -84],
+      [12, -91],
+      [-15, -99],
+      [53, -20],
+      [10, -77],
+      [25, -9],
+      [66, 126],
+      [-8, 101],
+      [64, 107],
+      [-22, 86],
+      [30, 55],
+      [49, 39],
+      [30, 72],
+      [45, -70],
+      [42, 47],
+      [51, -91],
+      [40, -10],
+      [90, -65],
+      [35, -45],
+      [38, -85],
+      [-28, -44],
+      [44, -72],
+      [7, -137],
+      [-78, -16],
+      [-18, 73],
+      [-31, -15],
+      [-9, -46],
+      [28, -79],
+      [-30, -75],
+      [65, -175],
+      [47, -36],
+      [154, -232],
+      [57, -4],
+      [20, 78],
+      [58, 43],
+      [50, -45],
+      [16, 119],
+      [-6, 86],
+      [102, 163],
+      [36, 17],
+      [25, 66],
+      [-1, 63],
+      [23, 70],
+      [-3, 41],
+      [23, 82],
+      [-10, 43],
+      [25, 57],
+      [50, 23],
+      [27, -36],
+      [18, 27],
+      [33, -12],
+      [18, 97],
+      [62, 73],
+      [-110, 49],
+      [-42, 47],
+      [-21, 62],
+      [-14, 122],
+      [8, 87],
+      [50, 83],
+      [54, -25],
+      [53, 37],
+      [35, -3],
+      [60, 21],
+      [87, -35],
+      [11, -29],
+      [107, -39],
+      [223, -6],
+      [20, 12],
+      [11, -76],
+      [85, -24],
+      [-5, -171],
+      [44, -4],
+      [22, 26],
+      [68, -2],
+      [65, -42],
+      [27, 2],
+      [6, -51],
+      [-43, -29],
+      [-24, -44],
+      [-23, 3],
+      [-37, -53],
+      [-91, -84],
+      [-90, -36],
+      [25, -43],
+      [61, -30],
+      [5, 40],
+      [52, 3],
+      [-15, 90],
+      [28, 29],
+      [35, -10],
+      [17, 32],
+      [66, -75],
+      [34, -14],
+      [15, -51],
+      [-64, -37],
+      [-19, -34],
+      [-39, 9],
+      [-11, -39],
+      [-43, -23],
+      [-27, 49],
+      [-30, -31],
+      [-71, 17],
+      [-8, -26],
+      [42, -47],
+      [-4, -58],
+      [47, -82],
+      [5, -62],
+      [30, -78],
+      [51, -42],
+      [53, -79],
+      [56, -42],
+      [42, -84],
+      [-33, -82],
+      [-14, -138],
+      [-17, -39],
+      [-29, 9],
+      [-31, -28],
+      [-26, 18],
+      [-43, -28],
+      [-41, -101],
+      [-51, -36],
+      [-51, -83],
+      [-98, -8],
+      [-4, -41],
+      [-99, -80],
+      [-30, 7],
+      [-5, 47],
+      [-28, 48],
+      [-72, 34],
+      [-16, 74],
+      [-66, 6],
+      [-28, 48],
+      [-7, 75],
+      [-26, 21],
+      [-122, -4],
+      [-6, -71],
+      [38, 22],
+      [9, 40],
+      [48, 6],
+      [72, -143],
+      [51, -8],
+      [10, -77],
+      [57, -61],
+      [15, -84],
+      [38, -74],
+      [-65, 6],
+      [-77, 73],
+      [-41, -95],
+      [-57, 42],
+      [-6, -20],
+      [-29, 1],
+      [-70, 55],
+      [-40, -7],
+      [-15, 90],
+      [-28, 93],
+      [-80, -45],
+      [-68, -12],
+      [-69, 25],
+      [-52, 3],
+      [-53, -16],
+      [6, -67],
+      [26, -50],
+      [71, -14],
+      [107, -58],
+      [-23, -90],
+      [-87, -78],
+      [-36, -56],
+      [-12, -53],
+      [-24, -2],
+      [-18, -59],
+      [-88, -66],
+      [-25, -72],
+      [-72, -26],
+      [-106, 4],
+      [-84, 56],
+      [-106, 138],
+      [-38, 23],
+      [-41, -5],
+      [-35, 43],
+      [-132, 103],
+      [-14, -69],
+      [10, -63],
+      [62, -67],
+      [24, -65],
+      [43, -28],
+      [31, -67],
+      [107, -5],
+      [7, -10],
+      [123, -13],
+      [125, 10],
+      [123, -30],
+      [20, -112],
+      [-41, -33],
+      [-13, -44],
+      [-92, -205],
+      [-57, -29],
+      [-11, -71],
+      [-39, -51],
+      [-5, -59],
+      [-41, -15],
+      [-30, -40],
+      [-59, -28],
+      [-48, -39],
+      [-38, 11],
+      [-68, -24],
+      [-76, 41],
+      [-76, 13],
+      [-2, -65],
+      [-46, -55],
+      [-21, -90],
+      [-69, -48],
+      [-65, -10],
+      [2, -85],
+      [-70, 55],
+      [-33, 42],
+      [-68, 13],
+      [-52, 52],
+      [-139, 3],
+      [-67, 23],
+      [-22, 32],
+      [-40, -1],
+      [-47, 41],
+      [-121, 45],
+      [-37, 34],
+      [-28, -93],
+      [26, -18],
+      [33, 72],
+      [34, -36],
+      [53, 4],
+      [25, -42],
+      [69, -43],
+      [20, 32],
+      [30, -43],
+      [58, -14],
+      [-2, -58],
+      [97, 62],
+      [64, -65],
+      [50, -28],
+      [40, -49],
+      [33, -4],
+      [67, -64],
+      [23, -171],
+      [-19, -62],
+      [-85, -28],
+      [-83, -68],
+      [-52, 4],
+      [-107, 32],
+      [-12, -36],
+      [-60, 31],
+      [-2, -51],
+      [27, -45],
+      [53, -15],
+      [25, -1],
+      [-4, -69],
+      [-55, 13],
+      [-6, 29],
+      [-84, -72],
+      [-51, -9],
+      [4, -93],
+      [-52, 0],
+      [13, -54],
+      [-65, -8],
+      [8, -62],
+      [-6, -60],
+      [-42, -61],
+      [-51, 20],
+      [-20, -119],
+      [-33, -70],
+      [-73, -108],
+      [-24, 0],
+      [73, -12],
+      [-11, -48],
+      [-33, -50],
+      [-46, -150],
+      [-35, -59],
+      [-46, -152],
+      [-30, -57],
+      [6, -69],
+      [-18, -57],
+      [-2, -77],
+      [-22, -76]
+    ],
+    [
+      [10835, 18030],
+      [-7, -97],
+      [-56, 6],
+      [15, 69],
+      [48, 22]
+    ],
+    [
+      [10799, 18198],
+      [44, -30],
+      [24, -63],
+      [-28, -51],
+      [-66, -8],
+      [-35, 37],
+      [-10, 60],
+      [23, 35],
+      [48, 20]
+    ],
+    [
+      [7616, 17768],
+      [1, 8],
+      [-6, 15],
+      [7, 29]
+    ],
+    [
+      [7616, 18051],
+      [49, 2],
+      [3, -50],
+      [134, -64],
+      [24, -49],
+      [-1, -52],
+      [40, 3],
+      [42, 29],
+      [24, -62],
+      [-22, -104],
+      [61, -97],
+      [34, -147],
+      [0, -72],
+      [73, -57],
+      [38, -48],
+      [1, 74],
+      [34, -19],
+      [15, 33],
+      [58, 46],
+      [-22, 86],
+      [-39, 18],
+      [-12, 67],
+      [-24, 9],
+      [-7, 113],
+      [-19, 66],
+      [4, 75],
+      [-28, 22],
+      [-33, 120],
+      [2, 99],
+      [-31, 106],
+      [50, 8],
+      [1, 85],
+      [65, -8],
+      [77, -27],
+      [60, -54],
+      [37, 47],
+      [38, 21],
+      [48, -46],
+      [55, -2],
+      [19, -41],
+      [198, -140],
+      [53, -65],
+      [4, -70],
+      [22, -149],
+      [71, -125],
+      [-6, -76],
+      [35, -39],
+      [3, -69],
+      [27, -42],
+      [52, -35],
+      [20, -64],
+      [-1, -64],
+      [28, -38],
+      [1, -58],
+      [-28, -44],
+      [-47, -117],
+      [72, -64],
+      [33, -6],
+      [36, -43],
+      [5, -60],
+      [94, -66],
+      [32, -56],
+      [50, 5],
+      [56, -47],
+      [77, 6],
+      [75, -42],
+      [42, -41],
+      [14, -101],
+      [102, -58],
+      [9, 40],
+      [62, -27],
+      [46, 34],
+      [86, -2],
+      [14, -71],
+      [-20, -107],
+      [15, -91],
+      [-25, -19],
+      [-69, 3],
+      [-29, 62],
+      [-46, -46],
+      [-83, 38],
+      [-68, 84],
+      [-20, -91],
+      [-15, 39],
+      [-26, -43],
+      [1, -95],
+      [-28, -27],
+      [-46, -7],
+      [-13, 21],
+      [-74, 29],
+      [-30, 50],
+      [-32, 5],
+      [13, -76],
+      [69, -31],
+      [10, -158],
+      [50, 83],
+      [64, 16],
+      [34, 42],
+      [83, -5],
+      [28, -21],
+      [-28, -81],
+      [36, -27],
+      [49, -61],
+      [-16, -96],
+      [-66, 7],
+      [-39, -35],
+      [-40, 9],
+      [-16, -51],
+      [-44, -6],
+      [-29, -34],
+      [-62, -3],
+      [-41, 25],
+      [-43, -35],
+      [-47, 30],
+      [-19, -12],
+      [-86, 36],
+      [-19, -13],
+      [-96, 53],
+      [-22, -48],
+      [-145, 19],
+      [21, 69],
+      [-20, 36],
+      [-61, 17],
+      [-40, 27],
+      [-75, 18],
+      [-22, -20],
+      [-58, -4],
+      [-52, 52],
+      [34, 30],
+      [-16, 66],
+      [-35, 42],
+      [-50, 5],
+      [-28, -59],
+      [-47, -13],
+      [12, -71],
+      [-44, -35],
+      [-54, -85],
+      [-44, -24],
+      [-163, -28],
+      [-75, 8],
+      [-26, -47],
+      [-101, -78],
+      [-99, -19],
+      [-60, -33],
+      [-99, -12],
+      [-44, 9],
+      [-24, -34],
+      [-47, 30],
+      [-100, -43],
+      [-13, 28],
+      [-50, -46],
+      [-84, 16],
+      [-119, -17],
+      [-22, 8],
+      [-81, -23],
+      [-40, 7],
+      [-38, -24],
+      [-140, 71],
+      [-24, 59],
+      [-43, 57],
+      [-6, 82],
+      [18, 50],
+      [-30, 76],
+      [8, 34],
+      [-73, 30],
+      [-60, 11],
+      [-243, -20],
+      [-23, 14],
+      [-165, 14],
+      [-99, 60],
+      [-38, 5],
+      [-14, 80],
+      [-64, 22],
+      [-1, 36],
+      [-90, 56],
+      [-31, 89]
+    ],
+    [
+      [14432, 18513],
+      [98, -6],
+      [65, -72],
+      [36, -116],
+      [-1, -82],
+      [138, -59],
+      [18, -41],
+      [-30, -47],
+      [3, -46],
+      [31, -52],
+      [40, -12],
+      [25, -46],
+      [-75, -58],
+      [-5, -32],
+      [-49, -29],
+      [6, -40],
+      [39, 33],
+      [28, -32],
+      [-12, -48],
+      [-70, -56],
+      [-15, -63],
+      [26, -107],
+      [86, 31],
+      [17, 31],
+      [26, 125],
+      [37, 44],
+      [77, 25],
+      [23, -25],
+      [14, 43],
+      [76, -33],
+      [67, -63],
+      [17, -53],
+      [-29, -131],
+      [38, 25],
+      [26, 79],
+      [3, 93],
+      [107, 33],
+      [-47, 40],
+      [32, 85],
+      [110, 65],
+      [46, 4],
+      [40, 27],
+      [80, 12],
+      [55, -21],
+      [82, -11],
+      [18, -44],
+      [46, -18],
+      [164, -15],
+      [133, -44],
+      [26, -73],
+      [43, -61],
+      [-14, -51],
+      [-61, -47],
+      [27, -51],
+      [31, 54],
+      [198, -26],
+      [28, -62],
+      [-13, -55],
+      [-55, -38],
+      [-30, 12],
+      [-56, -47],
+      [-60, -30],
+      [28, -43],
+      [49, 36],
+      [-43, -123],
+      [70, 62],
+      [13, 38],
+      [47, 17],
+      [8, 35],
+      [48, -15],
+      [49, 41],
+      [43, 3],
+      [-24, -88],
+      [-41, -52],
+      [1, -76],
+      [56, 110],
+      [44, -21],
+      [8, -48],
+      [27, -19],
+      [-24, -67],
+      [-40, -44],
+      [9, -44],
+      [54, 100],
+      [20, 1],
+      [26, -63],
+      [46, -10],
+      [26, 50],
+      [-6, 57],
+      [44, -3],
+      [-1, 46],
+      [30, 24],
+      [32, 81],
+      [99, -45],
+      [50, -7],
+      [111, -58],
+      [75, -107],
+      [-30, -34],
+      [-48, -95],
+      [-95, 30],
+      [-52, -18],
+      [-24, -67],
+      [-36, -20],
+      [18, -86],
+      [25, -13],
+      [67, 13],
+      [65, 41],
+      [73, 16],
+      [28, 74],
+      [33, 9],
+      [66, 55],
+      [44, -32],
+      [10, -86],
+      [-37, -48],
+      [0, -43],
+      [-95, -53],
+      [-15, -45],
+      [7, -80],
+      [53, 122],
+      [36, -5],
+      [91, 65],
+      [38, -12],
+      [88, 76],
+      [3, -61],
+      [-84, -74],
+      [32, -19],
+      [28, 27],
+      [64, 23],
+      [63, 51],
+      [64, -12],
+      [28, -26],
+      [138, -58],
+      [58, -54],
+      [-54, -85],
+      [-41, 35],
+      [-4, -49],
+      [-47, -31],
+      [-34, 2],
+      [-88, -25],
+      [-103, -59],
+      [1, -52],
+      [64, 65],
+      [81, 15],
+      [26, -19],
+      [30, 15],
+      [74, 6],
+      [-36, -102],
+      [28, -55],
+      [66, 79],
+      [19, -6],
+      [9, 94],
+      [67, 56],
+      [144, -102],
+      [55, -102],
+      [19, -115],
+      [-14, -32],
+      [-47, 1],
+      [-71, 34],
+      [-98, -6],
+      [-52, -78],
+      [-124, 15],
+      [2, -41],
+      [65, -7],
+      [139, -67],
+      [51, 16],
+      [117, -6],
+      [104, -61],
+      [43, -50],
+      [-19, -81],
+      [-100, 30],
+      [-118, -12],
+      [-126, 82],
+      [-29, -26],
+      [22, -70],
+      [102, -60],
+      [-83, -39],
+      [4, -63],
+      [45, -51],
+      [-128, 38],
+      [-42, 2],
+      [-16, -65],
+      [68, -2],
+      [-4, -81],
+      [72, -12],
+      [0, -23],
+      [87, -3],
+      [28, 23],
+      [60, -49],
+      [23, 6],
+      [25, -50],
+      [26, 45],
+      [45, -35],
+      [-18, -70],
+      [53, -34],
+      [-17, -72],
+      [61, 11],
+      [58, -54],
+      [23, 24],
+      [14, -50],
+      [45, 9],
+      [33, -107],
+      [15, 0],
+      [45, 97],
+      [37, -3],
+      [18, -46],
+      [57, 22],
+      [30, 54],
+      [31, -1],
+      [16, -67],
+      [-33, -18],
+      [-14, -85],
+      [77, 40],
+      [49, 6],
+      [49, -65],
+      [26, 1],
+      [10, -66],
+      [50, -86],
+      [13, -66],
+      [-43, -40],
+      [35, -57],
+      [27, 35],
+      [95, -6],
+      [6, -37],
+      [46, 86],
+      [31, 13],
+      [39, -29],
+      [-7, -65],
+      [-66, -31],
+      [15, -78],
+      [28, -14],
+      [5, 71],
+      [36, -19],
+      [20, -46],
+      [68, -9],
+      [21, -61],
+      [24, 44],
+      [34, 15],
+      [-6, 50],
+      [53, 10],
+      [11, -79],
+      [90, -40],
+      [-7, -29],
+      [67, -34],
+      [28, -73],
+      [-17, -28],
+      [-52, -20],
+      [10, -113],
+      [-59, -1],
+      [-28, -29],
+      [-38, 26],
+      [-34, -8],
+      [-10, 56],
+      [-63, 3],
+      [40, -66],
+      [-34, -67],
+      [96, -47],
+      [-2, -78],
+      [-64, 3],
+      [-42, 30],
+      [28, -102],
+      [-52, -44],
+      [-7, -96],
+      [-146, 18],
+      [-24, 52],
+      [-9, -112],
+      [-55, -1],
+      [62, -177],
+      [-34, -21],
+      [7, -49],
+      [-23, -121],
+      [-70, 50],
+      [-19, 57],
+      [-27, 15],
+      [-23, -35],
+      [-50, 60],
+      [-10, 70],
+      [-41, -92],
+      [-48, 60],
+      [-43, 32],
+      [30, 72],
+      [-40, 12],
+      [-33, -24],
+      [-11, 70],
+      [-39, 44],
+      [-5, 38],
+      [-39, 24],
+      [4, 92],
+      [26, 48],
+      [102, 49],
+      [-30, 37],
+      [-97, -55],
+      [-77, -3],
+      [-29, -14],
+      [-26, 96],
+      [-41, 13],
+      [-47, 75],
+      [-29, -31],
+      [-22, 21],
+      [-1, 87],
+      [-32, -11],
+      [-46, 109],
+      [-68, -45],
+      [7, -101],
+      [-11, -22],
+      [-58, 10],
+      [-40, 67],
+      [-23, 2],
+      [-62, 53],
+      [51, -119],
+      [-3, -39],
+      [70, -55],
+      [39, -18],
+      [24, -49],
+      [-12, -61],
+      [-53, -10],
+      [-67, 19],
+      [-23, -28],
+      [-31, 18],
+      [-35, 97],
+      [-34, -50],
+      [23, -39],
+      [6, -72],
+      [38, -29],
+      [11, -71],
+      [64, 22],
+      [77, 2],
+      [10, -61],
+      [-18, -55],
+      [67, -12],
+      [-11, -75],
+      [11, -43],
+      [64, -108],
+      [34, -117],
+      [28, 97],
+      [22, -51],
+      [81, -32],
+      [50, -85],
+      [-2, 77],
+      [58, -9],
+      [51, -102],
+      [50, 27],
+      [-19, -107],
+      [45, -26],
+      [21, 10],
+      [-20, -158],
+      [36, -96],
+      [-4, -40],
+      [86, 13],
+      [11, -61],
+      [28, -16],
+      [69, -138],
+      [-5, -175],
+      [-47, 144],
+      [-3, -180],
+      [-25, -25],
+      [-29, 24],
+      [-19, 77],
+      [-39, -24],
+      [-10, -110],
+      [47, -21],
+      [13, -177],
+      [-51, 37],
+      [-33, 0],
+      [30, -163],
+      [67, -48],
+      [71, -2],
+      [2, -51],
+      [-66, -60],
+      [-61, 45],
+      [-36, 69],
+      [-37, 18],
+      [-37, 71],
+      [-5, 83],
+      [-52, -7],
+      [-13, 46],
+      [-31, 34],
+      [-68, 19],
+      [-15, -26],
+      [-60, 29],
+      [-47, 52],
+      [-20, -34],
+      [-37, 66],
+      [-23, 10],
+      [-22, 60],
+      [-51, 23],
+      [-38, 61],
+      [-31, 21],
+      [-52, 112],
+      [-32, -35],
+      [41, -106],
+      [-13, -16],
+      [-61, 94],
+      [-96, 62],
+      [-27, 51],
+      [-47, 18],
+      [-63, -48],
+      [32, -72],
+      [56, -64],
+      [23, 8],
+      [68, -151],
+      [62, -27],
+      [36, -38],
+      [-5, -39],
+      [60, 15],
+      [91, -111],
+      [38, -81],
+      [36, -32],
+      [30, 7],
+      [76, -132],
+      [110, -156],
+      [-24, -91],
+      [27, -76],
+      [-80, -6],
+      [-80, 39],
+      [-25, 49],
+      [-47, -2],
+      [-66, 37],
+      [-29, -5],
+      [-16, 51],
+      [-68, -4],
+      [-67, 22],
+      [-167, 40],
+      [-31, 37],
+      [-118, 66],
+      [-43, 78],
+      [-27, 16],
+      [-30, 109],
+      [-64, -20],
+      [-28, 32],
+      [-43, -37],
+      [-78, 76],
+      [-76, 11],
+      [-52, 73],
+      [-34, 23],
+      [-24, -19],
+      [-42, 40],
+      [-50, 20],
+      [-42, 111],
+      [-57, 67],
+      [98, -18],
+      [64, 65],
+      [-38, 34],
+      [-38, 95],
+      [-71, -6],
+      [-18, -33],
+      [-37, -6],
+      [-34, 38],
+      [32, 62],
+      [-25, 29],
+      [-22, -69],
+      [-52, 57],
+      [-7, 41],
+      [-37, 41],
+      [-36, 1],
+      [7, 83],
+      [-36, 24],
+      [-26, 49],
+      [-54, -9],
+      [-32, 49],
+      [-32, -19],
+      [-7, 77],
+      [-69, -26],
+      [-35, -48],
+      [0, 208],
+      [-35, -67],
+      [-33, 0],
+      [-67, 68],
+      [23, 90],
+      [-18, 36],
+      [-19, -129],
+      [55, -62],
+      [-42, -94],
+      [-32, -20],
+      [-85, 49],
+      [-18, -12],
+      [-61, 52],
+      [-65, 28],
+      [-25, -124],
+      [-42, 24],
+      [-28, -12],
+      [-44, -61],
+      [-51, -5],
+      [-14, 19],
+      [-67, -39],
+      [-73, 35],
+      [-58, -34],
+      [-13, 55],
+      [-112, 14],
+      [-49, 103],
+      [-26, 20],
+      [-1, 108],
+      [26, 35],
+      [-18, 76],
+      [46, 56],
+      [49, 20],
+      [39, 36],
+      [28, -6],
+      [42, 40],
+      [-47, 60],
+      [41, 98],
+      [41, -5],
+      [19, -34],
+      [70, 13],
+      [79, -38],
+      [90, -56],
+      [43, 33],
+      [112, -22],
+      [55, -20],
+      [34, 13],
+      [2, 68],
+      [79, -7],
+      [16, 36],
+      [21, -59],
+      [26, -4],
+      [39, 38],
+      [5, 48],
+      [29, 0],
+      [21, 36],
+      [31, -20],
+      [49, 11],
+      [56, -38],
+      [3, 51],
+      [-45, 124],
+      [-112, 101],
+      [-49, 79],
+      [8, 82],
+      [103, 74],
+      [52, 63],
+      [75, 70],
+      [58, 71],
+      [40, 12],
+      [150, -36],
+      [50, 11],
+      [59, -15],
+      [100, -51],
+      [46, -5],
+      [21, -24],
+      [18, -86],
+      [23, -12],
+      [-16, -192],
+      [23, -25],
+      [66, 112],
+      [47, 30],
+      [6, 63],
+      [43, -44],
+      [28, -52],
+      [22, 5],
+      [40, 53],
+      [67, -41],
+      [68, 0],
+      [41, 121],
+      [-49, 14],
+      [-82, -56],
+      [-5, 76],
+      [27, 19],
+      [25, -22],
+      [33, 13],
+      [6, 62],
+      [-35, 9],
+      [-25, 37],
+      [-48, 26],
+      [-90, 3],
+      [-1, -51],
+      [-77, 148],
+      [-23, 9],
+      [-10, 54],
+      [-34, -8],
+      [-28, 32],
+      [-31, -103],
+      [-23, -26],
+      [-30, -101],
+      [-90, 29],
+      [-11, -18],
+      [-82, 25],
+      [-110, -3],
+      [-96, 31],
+      [-8, 49],
+      [39, 58],
+      [12, 69],
+      [40, 25],
+      [58, -1],
+      [33, 39],
+      [8, 55],
+      [-27, 71],
+      [-35, 146],
+      [-35, 21],
+      [4, 74],
+      [-18, 52],
+      [-36, -20],
+      [-20, 60],
+      [5, 67],
+      [-23, 100],
+      [-36, -14],
+      [-25, 44],
+      [-31, -25],
+      [-104, 42],
+      [-28, 65],
+      [51, 109],
+      [-38, 50],
+      [-75, 14],
+      [66, -94],
+      [-48, -26],
+      [-51, 7],
+      [-45, 67],
+      [-79, 74],
+      [-10, 82],
+      [14, 90],
+      [-39, -17],
+      [-41, -91],
+      [-54, 32],
+      [-28, 45],
+      [-30, -81],
+      [-34, -19],
+      [-56, -18],
+      [-15, -26],
+      [-77, -49],
+      [-60, -9],
+      [-32, 27],
+      [42, 63],
+      [-22, 27],
+      [7, 89],
+      [46, -94],
+      [79, -16],
+      [17, -30],
+      [22, 39],
+      [40, -3],
+      [0, 41],
+      [60, 106],
+      [-19, 76],
+      [-41, 43],
+      [-109, 67],
+      [-33, -7],
+      [-90, 84],
+      [-86, 41],
+      [42, 102],
+      [-102, 14],
+      [-43, 20],
+      [-7, -54],
+      [-30, -16],
+      [-14, 131],
+      [9, 61],
+      [-7, 72],
+      [-50, 36],
+      [-70, -40],
+      [-54, 9],
+      [-40, 86],
+      [-24, -14],
+      [-26, 59],
+      [-33, -15],
+      [-60, 57],
+      [-18, -54],
+      [-33, 67],
+      [-53, -83],
+      [59, -15],
+      [53, -33],
+      [23, 21],
+      [66, -100],
+      [22, -115],
+      [-43, -45],
+      [-156, -2],
+      [-70, -8],
+      [-48, 85],
+      [-65, 0],
+      [-16, -19],
+      [-67, 36],
+      [-113, 7],
+      [-9, 19],
+      [-81, -3],
+      [-79, 25],
+      [4, -34],
+      [64, -29],
+      [37, 4],
+      [38, -57],
+      [41, -31],
+      [51, -69],
+      [-35, -21],
+      [-40, 21],
+      [-22, 37],
+      [-58, 33],
+      [-18, 27],
+      [-71, 26],
+      [-3, -49],
+      [-44, -22],
+      [-20, 19],
+      [-27, -52],
+      [-47, 40],
+      [-28, -45],
+      [-52, 13],
+      [-24, 62],
+      [-78, 57],
+      [-50, 4],
+      [-89, -37],
+      [-115, 19],
+      [-145, 11],
+      [-58, 32],
+      [-71, 14],
+      [-87, -9],
+      [-42, -43],
+      [-86, 44],
+      [-109, 97],
+      [-26, 48],
+      [-45, 0],
+      [-25, 33],
+      [-11, -55],
+      [-58, 10],
+      [-9, 40],
+      [-42, -28],
+      [-76, 3],
+      [-31, -25],
+      [-33, 44],
+      [-166, 63],
+      [-58, 52],
+      [-4, 52],
+      [-101, 97],
+      [-14, 53],
+      [25, 52],
+      [-2, 45],
+      [48, -35],
+      [95, 14],
+      [56, -6],
+      [73, -63],
+      [93, 13],
+      [98, -8],
+      [52, 38],
+      [172, -13],
+      [68, 18],
+      [110, 76],
+      [112, 18],
+      [45, -18],
+      [11, 31],
+      [41, -2],
+      [21, -39],
+      [-19, -61],
+      [2, -52],
+      [30, -1],
+      [-5, 77],
+      [6, 158],
+      [20, 61],
+      [35, 1],
+      [2, 64],
+      [-17, 71],
+      [-48, 5],
+      [-10, -29],
+      [-112, 30],
+      [-35, 42],
+      [-24, 82],
+      [-56, 35],
+      [7, 48],
+      [60, 13],
+      [17, 100],
+      [32, 17],
+      [82, -10],
+      [26, 69],
+      [-22, 30],
+      [-28, -27],
+      [-64, 17],
+      [-48, 38],
+      [-42, 104],
+      [6, 89],
+      [21, 93],
+      [68, 6],
+      [92, -46],
+      [100, -30],
+      [-4, 29],
+      [-56, 17],
+      [-31, 27],
+      [-62, 22],
+      [-93, 10],
+      [30, 65],
+      [45, -48],
+      [23, 51],
+      [73, -33],
+      [149, -22],
+      [-5, 21],
+      [-141, 39],
+      [-86, 44],
+      [10, 45],
+      [88, 46],
+      [34, -54],
+      [7, 65],
+      [111, 43],
+      [72, -20],
+      [6, 54],
+      [160, 72],
+      [35, -12],
+      [46, 53],
+      [144, -7],
+      [73, 6]
+    ],
+    [
+      [8686, 18535],
+      [94, -14],
+      [83, -66],
+      [38, -14],
+      [27, -49],
+      [-16, -126],
+      [-93, -124],
+      [-3, -37],
+      [-68, -51],
+      [-11, -43],
+      [-60, 67],
+      [-57, 35],
+      [-35, 69],
+      [-41, 14],
+      [-3, 57],
+      [-148, 85],
+      [-12, 65],
+      [8, 69],
+      [43, 31],
+      [89, 11],
+      [109, -1],
+      [56, 22]
+    ],
+    [
+      [14739, 18537],
+      [65, -5],
+      [79, -39],
+      [27, 21],
+      [28, -23],
+      [157, -35],
+      [79, 15],
+      [191, 6],
+      [63, -34],
+      [102, -30],
+      [63, -29],
+      [37, -52],
+      [11, -48],
+      [56, -7],
+      [51, -55],
+      [-10, -57],
+      [73, -19],
+      [-6, -73],
+      [67, -24],
+      [-9, -42],
+      [-38, -20],
+      [-80, -1],
+      [-97, 11],
+      [-152, 34],
+      [-156, -2],
+      [-118, -35],
+      [-62, -34],
+      [-68, -19],
+      [-52, 3],
+      [-127, 68],
+      [-42, 112],
+      [15, 73],
+      [-28, 34],
+      [-33, -3],
+      [-113, 27],
+      [-23, 54],
+      [22, 71],
+      [-7, 69],
+      [35, 88]
+    ],
+    [
+      [13407, 18586],
+      [140, -24],
+      [120, -4],
+      [43, -21],
+      [-5, -63],
+      [-67, -36],
+      [-160, -121],
+      [-66, -88],
+      [-65, -140],
+      [-69, -82],
+      [-16, -77],
+      [12, -38],
+      [61, -60],
+      [46, -63],
+      [-47, -134],
+      [15, -116],
+      [63, -124],
+      [103, -92],
+      [21, -32],
+      [107, -83],
+      [36, 4],
+      [45, -28],
+      [8, -71],
+      [-78, 16],
+      [-31, -32],
+      [-32, 6],
+      [-32, -47],
+      [-43, 20],
+      [-59, -15],
+      [-57, -63],
+      [-53, -22],
+      [-138, -22],
+      [-90, 30],
+      [-100, 53],
+      [-22, 70],
+      [-60, -23],
+      [-177, 19],
+      [-240, 44],
+      [-42, 57],
+      [-11, 97],
+      [31, 115],
+      [-24, 86],
+      [7, 79],
+      [31, 34],
+      [-49, 110],
+      [30, 67],
+      [27, 22],
+      [8, 76],
+      [39, 47],
+      [15, 48],
+      [24, -2],
+      [31, 86],
+      [20, 115],
+      [62, 94],
+      [27, 9],
+      [54, 76],
+      [41, 15],
+      [48, 63],
+      [106, 66],
+      [150, 59],
+      [29, 0],
+      [113, 34],
+      [120, 6]
+    ],
+    [
+      [10041, 18638],
+      [36, -47],
+      [75, -23],
+      [61, -49],
+      [145, 26],
+      [95, 10],
+      [70, 21],
+      [43, 41],
+      [76, -30],
+      [66, -2],
+      [62, -67],
+      [-24, -77],
+      [-45, -32],
+      [-49, 21],
+      [4, -52],
+      [37, -76],
+      [-89, -23],
+      [-53, -28],
+      [-25, -53],
+      [-52, -35],
+      [-68, -71],
+      [5, -76],
+      [32, 58],
+      [85, 39],
+      [100, -14],
+      [57, -25],
+      [8, -69],
+      [89, -97],
+      [50, 16],
+      [49, -27],
+      [43, -142],
+      [-31, -30],
+      [-51, -15],
+      [4, -43],
+      [28, -36],
+      [7, -99],
+      [-5, -76],
+      [-26, -54],
+      [-61, -2],
+      [0, -46],
+      [-44, -6],
+      [-84, -53],
+      [-53, -2],
+      [-37, 35],
+      [-52, 15],
+      [-64, -15],
+      [-16, -23],
+      [58, -72],
+      [-33, -46],
+      [-73, -74],
+      [-57, -23],
+      [-51, 14],
+      [-80, 56],
+      [-34, 118],
+      [-38, 17],
+      [-36, 110],
+      [-43, 27],
+      [-51, 6],
+      [-12, 38],
+      [-37, 20],
+      [-51, 95],
+      [-29, 30],
+      [-97, 7],
+      [-8, 45],
+      [-34, 33],
+      [-68, -20],
+      [-45, 16],
+      [-26, 44],
+      [-39, 20],
+      [-24, 47],
+      [-65, 37],
+      [-88, 102],
+      [-2, 58],
+      [20, 74],
+      [43, 59],
+      [63, -6],
+      [60, -24],
+      [49, -74],
+      [32, 23],
+      [33, -76],
+      [61, -62],
+      [44, 21],
+      [82, 7],
+      [11, 21],
+      [66, -10],
+      [-12, 85],
+      [31, 22],
+      [15, -49],
+      [24, 10],
+      [-41, 151],
+      [-48, -9],
+      [-29, 80],
+      [-93, -3],
+      [-19, 34],
+      [-60, 16],
+      [-1, 24],
+      [-60, 32],
+      [21, 59],
+      [40, -6],
+      [12, 29],
+      [93, -6],
+      [33, -56],
+      [28, 1],
+      [4, 60],
+      [-77, 14],
+      [-40, 73],
+      [23, 37],
+      [60, 6],
+      [41, 22],
+      [52, -26],
+      [91, -21],
+      [3, 36],
+      [-62, -6],
+      [-10, 50],
+      [82, 16]
+    ],
+    [
+      [10583, 18738],
+      [16, -46],
+      [-110, -87],
+      [-79, -27],
+      [-108, -21],
+      [-59, 3],
+      [-63, 27],
+      [-14, 33],
+      [100, 26],
+      [57, 42],
+      [60, 0],
+      [126, 44],
+      [74, 6]
+    ],
+    [
+      [11613, 18769],
+      [114, -13],
+      [108, -25],
+      [69, -43],
+      [9, -49],
+      [30, -2],
+      [56, 41],
+      [98, 6],
+      [94, -9],
+      [193, -59],
+      [0, -64],
+      [-29, -47],
+      [-115, -137],
+      [-65, -90],
+      [-39, -79],
+      [-107, -179],
+      [-56, -65],
+      [-79, -34],
+      [-239, 67],
+      [-57, -23],
+      [-93, -3],
+      [2, -45],
+      [86, -62],
+      [34, -80],
+      [-49, -68],
+      [-45, -14],
+      [-49, -127],
+      [-54, -45],
+      [-52, 6],
+      [-168, -30],
+      [-13, 163],
+      [13, 131],
+      [-39, 31],
+      [-13, 64],
+      [-55, 28],
+      [-22, 61],
+      [13, 84],
+      [-6, 106],
+      [21, 26],
+      [-13, 210],
+      [-17, 55],
+      [13, 62],
+      [83, 21],
+      [38, -44],
+      [46, 18],
+      [-85, 85],
+      [3, 66],
+      [149, 56],
+      [124, 26],
+      [66, 0],
+      [97, 23]
+    ],
+    [
+      [10654, 19030],
+      [9, -67],
+      [-60, -28],
+      [-6, 73],
+      [57, 22]
+    ],
+    [
+      [11095, 19042],
+      [71, -32],
+      [22, -51],
+      [-61, -2],
+      [-85, 38],
+      [53, 47]
+    ],
+    [
+      [9017, 19508],
+      [75, -52],
+      [35, -75],
+      [7, -51],
+      [-53, -51],
+      [-143, -16],
+      [-68, 25],
+      [-15, 60],
+      [26, 99],
+      [67, 57],
+      [69, 4]
+    ],
+    [
+      [11269, 19614],
+      [87, -10],
+      [58, -19],
+      [112, -109],
+      [44, -21],
+      [39, -175],
+      [29, -84],
+      [-22, -141],
+      [-50, -19],
+      [-152, 6],
+      [-85, -11],
+      [-89, 26],
+      [-11, 45],
+      [-48, 29],
+      [-109, 24],
+      [-27, -12],
+      [-77, 56],
+      [-53, -6],
+      [-5, 57],
+      [-36, 1],
+      [-20, 33],
+      [62, 91],
+      [66, 15],
+      [29, 78],
+      [43, 75],
+      [38, 6],
+      [72, 39],
+      [18, -4],
+      [87, 30]
+    ],
+    [
+      [10925, 19624],
+      [97, -46],
+      [-52, -68],
+      [-26, 1],
+      [-39, 56],
+      [-31, -20],
+      [-6, -53],
+      [-74, -42],
+      [-32, 49],
+      [7, 44],
+      [39, -4],
+      [21, 28],
+      [58, 13],
+      [38, 42]
+    ],
+    [
+      [11369, 19814],
+      [50, -132],
+      [-78, -6],
+      [-49, 28],
+      [-9, 89],
+      [86, 21]
+    ],
+    [
+      [9500, 19817],
+      [35, -31],
+      [-107, -37],
+      [-43, -61],
+      [-61, -12],
+      [-116, 4],
+      [9, 35],
+      [39, 17],
+      [18, 34],
+      [84, 27],
+      [142, 24]
+    ],
+    [
+      [9435, 19877],
+      [-26, -50],
+      [-204, -57],
+      [-9, -30],
+      [-80, -7],
+      [-26, 66],
+      [73, 11],
+      [164, 55],
+      [108, 12]
+    ],
+    [
+      [15170, 19887],
+      [19, -47],
+      [-75, -38],
+      [-66, -84],
+      [-28, -1],
+      [1, 76],
+      [65, 32],
+      [42, 59],
+      [42, 3]
+    ],
+    [
+      [9322, 20007],
+      [53, -12],
+      [17, -79],
+      [-23, -28],
+      [-127, -36],
+      [-168, -5],
+      [-137, 47],
+      [35, 55],
+      [109, 10],
+      [172, 43],
+      [69, 5]
+    ],
+    [
+      [12818, 20164],
+      [17, -26],
+      [-32, -88],
+      [-2, 111],
+      [17, 3]
+    ],
+    [
+      [9016, 20213],
+      [112, -50],
+      [17, -33],
+      [94, -34],
+      [45, -35],
+      [-84, -46],
+      [-104, -13],
+      [-61, 28],
+      [-61, 0],
+      [-23, 64],
+      [-63, 44],
+      [-2, 34],
+      [70, 36],
+      [60, 5]
+    ],
+    [
+      [10345, 20219],
+      [52, -4],
+      [56, -47],
+      [78, -19],
+      [6, -28],
+      [52, -15],
+      [-15, -83],
+      [5, -45],
+      [62, -54],
+      [-22, -50],
+      [-17, -83],
+      [11, -49],
+      [-37, -77],
+      [90, -21],
+      [-12, -47],
+      [8, -92],
+      [-75, 68],
+      [-35, -63],
+      [-18, 34],
+      [-16, -141],
+      [36, -7],
+      [52, -83],
+      [-58, -6],
+      [-26, -47],
+      [-90, 0],
+      [-31, -15],
+      [-85, -3],
+      [-25, 35],
+      [-23, -40],
+      [-86, 1],
+      [-16, 50],
+      [-34, -58],
+      [-147, 11],
+      [-50, 18],
+      [-19, 116],
+      [42, 2],
+      [11, 48],
+      [-68, -11],
+      [-9, 85],
+      [126, 15],
+      [41, 67],
+      [11, 57],
+      [-185, -21],
+      [-79, -21],
+      [-39, 7],
+      [-50, -19],
+      [-67, 1],
+      [-134, -26],
+      [-83, -2],
+      [-49, -26],
+      [-30, 24],
+      [16, 80],
+      [79, 34],
+      [15, 73],
+      [106, 26],
+      [40, -33],
+      [88, -38],
+      [-2, 50],
+      [-42, -3],
+      [-14, 73],
+      [-25, -8],
+      [-31, 143],
+      [-65, 2],
+      [39, 128],
+      [102, -4],
+      [46, -16],
+      [50, -48],
+      [0, -41],
+      [142, -79],
+      [47, -39],
+      [57, -77],
+      [63, 11],
+      [-59, 64],
+      [-21, 78],
+      [-35, 18],
+      [-7, 38],
+      [89, -5],
+      [-15, 43],
+      [-57, 22],
+      [-106, -7],
+      [-32, 32],
+      [4, 51],
+      [50, 38],
+      [80, 30],
+      [87, -17],
+      [60, 12],
+      [87, -69],
+      [17, -41],
+      [38, 8],
+      [53, -13],
+      [-19, 80],
+      [61, 10],
+      [5, 58]
+    ],
+    [
+      [9882, 20264],
+      [-13, -63],
+      [-153, -48],
+      [-48, 48],
+      [98, 18],
+      [11, 21],
+      [105, 24]
+    ],
+    [
+      [12467, 20307],
+      [71, -52],
+      [-29, -47],
+      [-30, -114],
+      [-33, 7],
+      [-125, 142],
+      [30, 42],
+      [116, 22]
+    ],
+    [
+      [7614, 19552],
+      [23, 2],
+      [19, -9],
+      [29, 5],
+      [34, -12],
+      [54, 1],
+      [72, -19],
+      [-1, 45],
+      [31, 34],
+      [-57, 77],
+      [-97, 34],
+      [-57, 1],
+      [2, 39],
+      [-46, -5],
+      [-1, 35],
+      [55, 15],
+      [59, 45],
+      [9, 57],
+      [-92, 39],
+      [-31, 29]
+    ],
+    [
+      [7619, 20104],
+      [0, 2],
+      [-3, 5],
+      [36, 58],
+      [22, -9],
+      [35, 82],
+      [37, 42],
+      [161, 20],
+      [33, -40],
+      [6, -61],
+      [-15, -67],
+      [-2, -74],
+      [71, -13],
+      [27, -52],
+      [-45, -71],
+      [-13, -77],
+      [65, 1],
+      [36, 15],
+      [68, -19],
+      [4, -43],
+      [-54, -47],
+      [12, -51],
+      [34, 51],
+      [77, 19],
+      [63, -4],
+      [57, -125],
+      [17, 41],
+      [-1, 123],
+      [52, 49],
+      [30, 4],
+      [145, -32],
+      [82, -43],
+      [33, -41],
+      [25, -107],
+      [-28, -78],
+      [-38, -9],
+      [-16, -63],
+      [11, -38],
+      [-49, -43],
+      [-15, -43],
+      [-57, -95],
+      [-88, -26],
+      [-68, 2],
+      [-33, -42],
+      [-72, -11],
+      [-21, 18],
+      [-86, 17],
+      [-32, 31],
+      [-53, -9],
+      [-31, -46],
+      [-65, -6],
+      [-31, 22],
+      [-12, 51],
+      [-60, 17],
+      [-38, -44],
+      [-71, -26],
+      [-31, -31],
+      [-110, -14]
+    ],
+    [
+      [11073, 20439],
+      [69, -5],
+      [60, -38],
+      [62, -11],
+      [76, 3],
+      [34, -32],
+      [52, -21],
+      [48, 2],
+      [16, 26],
+      [90, -18],
+      [82, -90],
+      [15, -58],
+      [-46, -112],
+      [73, 75],
+      [68, 19],
+      [52, -14],
+      [123, 14],
+      [42, 28],
+      [120, 14],
+      [117, -23],
+      [41, -41],
+      [54, -8],
+      [-15, -67],
+      [-73, 19],
+      [-48, -3],
+      [-57, 23],
+      [-7, -33],
+      [97, -5],
+      [23, -13],
+      [142, -18],
+      [81, -20],
+      [58, -25],
+      [116, -11],
+      [20, -46],
+      [-53, -26],
+      [-110, 5],
+      [-44, -9],
+      [-95, 15],
+      [-89, -16],
+      [0, -84],
+      [-65, 1],
+      [41, -62],
+      [34, 48],
+      [14, -25],
+      [66, -1],
+      [95, 15],
+      [85, -47],
+      [-20, -61],
+      [100, 16],
+      [38, -85],
+      [19, -98],
+      [66, -48],
+      [43, 32],
+      [-23, 63],
+      [48, 38],
+      [5, -37],
+      [50, -22],
+      [45, -47],
+      [38, 32],
+      [53, 18],
+      [59, -39],
+      [39, 66],
+      [23, 11],
+      [48, -23],
+      [23, -34],
+      [63, -30],
+      [59, -7],
+      [19, -55],
+      [29, 18],
+      [112, 6],
+      [-1, 56],
+      [77, 57],
+      [13, -22],
+      [58, 0],
+      [51, 58],
+      [92, -17],
+      [9, 32],
+      [82, 9],
+      [25, 34],
+      [40, -8],
+      [23, 41],
+      [114, -23],
+      [34, -30],
+      [53, 22],
+      [50, -12],
+      [67, 36],
+      [74, 12],
+      [68, -12],
+      [174, -12],
+      [14, -87],
+      [96, -8],
+      [95, 18],
+      [71, -17],
+      [35, -25],
+      [-1, -47],
+      [59, -26],
+      [36, 7],
+      [17, -42],
+      [32, -4],
+      [-31, -123],
+      [-50, -2],
+      [-40, -98],
+      [89, 18],
+      [29, -14],
+      [42, -73],
+      [-151, -40],
+      [-39, 12],
+      [-22, -132],
+      [-30, -16],
+      [-117, -8],
+      [-99, 14],
+      [-128, -69],
+      [-148, 34],
+      [-19, 27],
+      [-29, -29],
+      [-58, 3],
+      [-71, 55],
+      [-9, 108],
+      [-44, 11],
+      [-58, 50],
+      [-1, -61],
+      [54, -32],
+      [-60, -114],
+      [-168, -30],
+      [-94, -2],
+      [-20, 14],
+      [-46, -16],
+      [-36, 10],
+      [-40, -17],
+      [-67, 34],
+      [-17, -25],
+      [-138, -14],
+      [-13, 58],
+      [-30, -50],
+      [-82, -16],
+      [-129, -2],
+      [-66, 12],
+      [-38, -16],
+      [-233, 24],
+      [-2, 76],
+      [32, 65],
+      [-18, 59],
+      [-58, -27],
+      [-34, -83],
+      [-39, 61],
+      [-21, -75],
+      [-37, -31],
+      [-89, -23],
+      [-87, -1],
+      [-95, 38],
+      [-62, 12],
+      [-27, 29],
+      [-32, 103],
+      [-107, -112],
+      [-71, 1],
+      [-31, 43],
+      [-36, -17],
+      [-39, 42],
+      [-4, 110],
+      [-27, 14],
+      [-21, 83],
+      [-39, 22],
+      [-14, 56],
+      [4, 87],
+      [49, 71],
+      [37, 17],
+      [14, 57],
+      [-28, 127],
+      [-63, 27],
+      [-51, 47],
+      [-17, 73],
+      [-24, 38],
+      [-45, 18],
+      [-32, 73],
+      [-57, 0],
+      [-73, -40],
+      [-61, -20],
+      [-76, 11],
+      [-103, -1],
+      [-16, 16],
+      [-78, -38],
+      [-55, 72],
+      [-147, 16],
+      [-67, 52],
+      [10, 58],
+      [-50, 32],
+      [-35, -2],
+      [-33, 33],
+      [-87, 6],
+      [0, 67],
+      [60, -34],
+      [-10, 64],
+      [-33, -9],
+      [5, 74],
+      [106, -2],
+      [4, 37],
+      [160, 14]
+    ],
+    [
+      [12211, 20545],
+      [37, 0],
+      [7, -68],
+      [-40, 3],
+      [-4, 65]
+    ],
+    [
+      [13649, 20736],
+      [42, -3],
+      [33, -53],
+      [-63, -18],
+      [-12, 74]
+    ],
+    [
+      [12260, 20781],
+      [31, -15],
+      [104, -7],
+      [136, -90],
+      [5, -93],
+      [-43, -43],
+      [-92, -18],
+      [-182, 68],
+      [-43, 40],
+      [-6, 67],
+      [15, 68],
+      [75, 23]
+    ],
+    [
+      [8588, 20842],
+      [79, -22],
+      [85, -56],
+      [51, -58],
+      [-4, -67],
+      [67, -3],
+      [85, -79],
+      [22, -68],
+      [-25, -21],
+      [-68, 13],
+      [-20, -16],
+      [-95, 39],
+      [-69, 47],
+      [-92, 157],
+      [-42, 134],
+      [26, 0]
+    ],
+    [
+      [11131, 20865],
+      [36, -23],
+      [54, -7],
+      [34, 18],
+      [169, -3],
+      [94, -22],
+      [53, 24],
+      [106, -28],
+      [-23, -53],
+      [-41, -51],
+      [5, -47],
+      [-114, -19],
+      [-30, 14],
+      [-142, 4],
+      [-78, 10],
+      [-70, -16],
+      [-46, 10],
+      [-112, -5],
+      [-44, 17],
+      [-39, 37],
+      [-1, 76],
+      [75, 37],
+      [80, 8],
+      [34, 19]
+    ],
+    [
+      [9595, 20924],
+      [86, -19],
+      [68, -63],
+      [-10, -25],
+      [-88, 5],
+      [-74, -33],
+      [-63, 7],
+      [-103, 57],
+      [4, 48],
+      [92, 18],
+      [88, 5]
+    ],
+    [
+      [7626, 21038],
+      [40, -2],
+      [-6, -81],
+      [-40, -15]
+    ],
+    [
+      [9312, 21135],
+      [20, -44],
+      [-59, -43],
+      [-47, 2],
+      [-11, 25],
+      [73, 57],
+      [24, 3]
+    ],
+    [
+      [7623, 21343],
+      [111, -46],
+      [19, -52],
+      [-12, -73],
+      [-121, -20]
+    ],
+    [
+      [10564, 21453],
+      [68, -12],
+      [125, -37],
+      [26, -24],
+      [90, -9],
+      [53, -37],
+      [29, -59],
+      [57, -23],
+      [55, 27],
+      [51, -5],
+      [155, -69],
+      [-19, -50],
+      [-50, -12],
+      [16, -59],
+      [51, -42],
+      [-53, -97],
+      [-73, 14],
+      [-11, -16],
+      [-154, -40],
+      [-78, -4],
+      [-18, 24],
+      [-66, -12],
+      [-9, -44],
+      [-28, -14],
+      [-55, 19],
+      [-3, 58],
+      [-89, 50],
+      [-49, 5],
+      [2, 39],
+      [180, -5],
+      [0, 35],
+      [-93, 44],
+      [-67, -7],
+      [-47, 14],
+      [-25, 39],
+      [-37, 6],
+      [-11, 61],
+      [-71, 32],
+      [15, 42],
+      [67, 21],
+      [-77, 48],
+      [-3, 72],
+      [42, 22],
+      [104, 5]
+    ],
+    [
+      [13503, 21595],
+      [130, -11],
+      [3, -35],
+      [-138, -36],
+      [-152, -21],
+      [33, 69],
+      [124, 34]
+    ],
+    [
+      [9057, 21770],
+      [54, -5],
+      [80, -40],
+      [76, -5],
+      [50, -67],
+      [63, -41],
+      [-5, -82],
+      [27, -48],
+      [35, 35],
+      [2, 49],
+      [53, 8],
+      [50, 32],
+      [89, -7],
+      [99, -68],
+      [36, -88],
+      [111, -4],
+      [57, 21],
+      [28, -38],
+      [32, -4],
+      [63, -37],
+      [27, -55],
+      [57, -24],
+      [-62, -93],
+      [-5, -58],
+      [67, -6],
+      [43, -52],
+      [94, -87],
+      [-31, -42],
+      [8, -50],
+      [-114, -43],
+      [-70, 3],
+      [-11, -21],
+      [-58, 21],
+      [-51, 0],
+      [-48, 22],
+      [-66, 61],
+      [-27, 96],
+      [-34, 37],
+      [-74, -6],
+      [-31, 31],
+      [-178, 31],
+      [-94, -32],
+      [-59, 29],
+      [-2, 59],
+      [-80, -9],
+      [-39, -21],
+      [-102, -10],
+      [-51, -43],
+      [-105, 8],
+      [-41, 37],
+      [-37, -3],
+      [-72, 71],
+      [-13, 39],
+      [52, 41],
+      [98, -2],
+      [31, -20],
+      [104, -18],
+      [85, -3],
+      [-7, 155],
+      [-87, 20],
+      [-44, -28],
+      [27, 94],
+      [-43, 33],
+      [-80, -16],
+      [-67, -77],
+      [-62, -12],
+      [2, 31],
+      [40, 30],
+      [26, 76],
+      [-68, 2],
+      [-69, -16],
+      [-61, 4],
+      [-35, 23],
+      [4, 70],
+      [43, 45],
+      [4, 46],
+      [61, -24],
+      [305, 45]
+    ],
+    [
+      [10126, 22219],
+      [33, -25],
+      [92, 15],
+      [41, -24],
+      [47, -69],
+      [-6, -54],
+      [24, -42],
+      [-45, -77],
+      [-34, 30],
+      [-97, 20],
+      [13, 51],
+      [-61, 25],
+      [-125, -8],
+      [-21, 8],
+      [10, 89],
+      [21, 30],
+      [56, 29],
+      [52, 2]
+    ],
+    [
+      [11153, 22538],
+      [63, -2],
+      [-17, -53],
+      [-46, 55]
+    ],
+    [
+      [11612, 22927],
+      [109, -17],
+      [65, -25],
+      [87, -16],
+      [99, -31],
+      [66, -43],
+      [3, -45],
+      [56, -50],
+      [22, -42],
+      [77, -52],
+      [10, -38],
+      [104, -32],
+      [27, -72],
+      [38, -15],
+      [129, -13],
+      [62, 9],
+      [91, -9],
+      [47, -25],
+      [-19, -148],
+      [91, -59],
+      [74, -13],
+      [17, 50],
+      [-44, 18],
+      [-28, 44],
+      [4, 53],
+      [68, 31],
+      [106, -7],
+      [79, -19],
+      [19, -119],
+      [-39, -25],
+      [-67, -6],
+      [8, -41],
+      [56, 11],
+      [106, -2],
+      [31, -40],
+      [11, -49],
+      [32, -6],
+      [-42, -153],
+      [-71, -46],
+      [21, -65],
+      [39, 69],
+      [150, 48],
+      [65, -10],
+      [59, -41],
+      [12, -77],
+      [36, 46],
+      [9, 55],
+      [74, -25],
+      [15, -52],
+      [51, -50],
+      [32, -4],
+      [45, -37],
+      [14, -36],
+      [-76, -19],
+      [-21, -29],
+      [-233, -48],
+      [-64, -21],
+      [-27, -52],
+      [-40, -9],
+      [-55, 49],
+      [-1, -87],
+      [-79, -49],
+      [-51, -80],
+      [-29, -14],
+      [-64, 40],
+      [-22, 44],
+      [12, 127],
+      [-48, -1],
+      [-26, -89],
+      [27, -105],
+      [37, -10],
+      [22, -41],
+      [-30, -57],
+      [-61, -11],
+      [-94, 95],
+      [-25, -54],
+      [49, -53],
+      [5, -28],
+      [-49, -78],
+      [-16, -61],
+      [-51, 8],
+      [-37, 26],
+      [-43, 62],
+      [-72, 62],
+      [-91, 112],
+      [-15, -77],
+      [74, -60],
+      [38, -59],
+      [-12, -41],
+      [-53, 0],
+      [-42, 56],
+      [-50, 15],
+      [-17, -31],
+      [-2, -79],
+      [-155, -3],
+      [-57, 18],
+      [-100, 6],
+      [-55, 28],
+      [-54, -16],
+      [-37, 45],
+      [-28, -3],
+      [-78, 51],
+      [-72, 34],
+      [25, 49],
+      [57, -12],
+      [30, 18],
+      [133, 8],
+      [72, -7],
+      [112, 29],
+      [54, -10],
+      [-4, 40],
+      [-77, 9],
+      [-13, -22],
+      [-72, -16],
+      [-142, 3],
+      [-91, 10],
+      [-57, 22],
+      [-31, -18],
+      [-81, -12],
+      [-39, 46],
+      [-33, 11],
+      [-6, 92],
+      [-66, -6],
+      [-43, 45],
+      [-31, 59],
+      [52, 20],
+      [76, 3],
+      [68, 68],
+      [107, -6],
+      [43, 9],
+      [73, -11],
+      [98, 2],
+      [208, 25],
+      [102, 3],
+      [-8, 26],
+      [-82, 1],
+      [-119, -19],
+      [-151, -5],
+      [-61, 58],
+      [130, -7],
+      [67, 18],
+      [108, 8],
+      [-1, 22],
+      [-70, -4],
+      [-68, -19],
+      [-66, 3],
+      [-59, 37],
+      [79, 42],
+      [9, 66],
+      [-30, 16],
+      [-30, -28],
+      [-45, -73],
+      [-24, 8],
+      [-75, -28],
+      [-54, 41],
+      [-11, -72],
+      [-59, -11],
+      [-8, 45],
+      [-35, -39],
+      [-39, 8],
+      [-9, -41],
+      [-83, -21],
+      [-13, 78],
+      [-73, 23],
+      [-26, -50],
+      [-106, -23],
+      [-20, -23],
+      [-47, 13],
+      [-27, 69],
+      [-28, -22],
+      [-81, 28],
+      [7, 54],
+      [29, 25],
+      [72, 3],
+      [195, 42],
+      [48, 23],
+      [-1, 49],
+      [-41, -7],
+      [-52, -40],
+      [-194, -24],
+      [-100, 11],
+      [-67, 53],
+      [-44, 54],
+      [-34, -5],
+      [-27, 42],
+      [2, 80],
+      [-20, 62],
+      [94, -5],
+      [69, -35],
+      [92, -20],
+      [124, -4],
+      [70, 9],
+      [21, 29],
+      [64, 27],
+      [-7, 45],
+      [-46, -41],
+      [-145, -24],
+      [-149, 44],
+      [-117, 49],
+      [38, 56],
+      [137, 1],
+      [-43, 48],
+      [-12, 53],
+      [102, 24],
+      [134, 8],
+      [80, -29],
+      [20, 28],
+      [-30, 69],
+      [-77, 24],
+      [-2, 23],
+      [-76, -14],
+      [-38, 11],
+      [17, 69],
+      [37, 52],
+      [93, 29],
+      [85, -13],
+      [26, -41],
+      [27, 27],
+      [44, -2],
+      [10, 49],
+      [65, 6],
+      [81, -14],
+      [69, 4],
+      [-1, 73],
+      [-187, -6],
+      [-93, 23],
+      [59, 71],
+      [107, -17],
+      [38, 24]
+    ],
+    [
+      [17382, 23927],
+      [56, -13],
+      [34, -52],
+      [130, 16],
+      [44, -53],
+      [20, 27],
+      [59, -15],
+      [39, 13],
+      [74, -12],
+      [129, -1],
+      [137, -17],
+      [102, 5],
+      [4, -35],
+      [-106, -38],
+      [-103, -27],
+      [-214, -39],
+      [-3, -27],
+      [79, 8],
+      [116, -1],
+      [123, 38],
+      [59, -7],
+      [10, 22],
+      [223, 57],
+      [60, -7],
+      [42, -23],
+      [28, 52],
+      [85, 13],
+      [43, -56],
+      [61, -31],
+      [97, 44],
+      [114, 0],
+      [23, -47],
+      [-12, -47],
+      [52, -12],
+      [11, -31],
+      [56, -5],
+      [29, -43],
+      [168, 9],
+      [57, -24],
+      [122, -8],
+      [97, -61],
+      [0, -61],
+      [-39, -35],
+      [-81, -26],
+      [-68, -8],
+      [-9, -33],
+      [-59, -32],
+      [-221, -80],
+      [-128, -24],
+      [-50, -31],
+      [-75, -9],
+      [-14, -24],
+      [-62, -18],
+      [-78, 6],
+      [-29, 18],
+      [-152, -18],
+      [2, -31],
+      [-94, -23],
+      [-197, -5],
+      [-234, -13],
+      [-8, -26],
+      [145, 8],
+      [63, -10],
+      [10, -31],
+      [-380, -89],
+      [-87, -30],
+      [-159, -30],
+      [-103, -32],
+      [5, -31],
+      [109, 47],
+      [74, 8],
+      [197, 33],
+      [136, 36],
+      [189, 28],
+      [318, 65],
+      [108, 17],
+      [144, 11],
+      [16, -53],
+      [-34, -32],
+      [-91, -40],
+      [-151, -57],
+      [-123, -10],
+      [-53, -47],
+      [-37, -10],
+      [-23, -36],
+      [-164, -69],
+      [-74, -7],
+      [-11, -27],
+      [-66, -20],
+      [-26, -31],
+      [-52, -9],
+      [-262, -155],
+      [-37, -64],
+      [-99, -29],
+      [-76, -5],
+      [-31, 56],
+      [-93, 56],
+      [-1, -25],
+      [59, -41],
+      [-2, -58],
+      [51, -16],
+      [7, -57],
+      [-137, 5],
+      [-175, -37],
+      [66, -26],
+      [78, 24],
+      [62, -7],
+      [-37, -78],
+      [-131, -15],
+      [59, -39],
+      [-31, -62],
+      [-80, -33],
+      [-117, -10],
+      [-83, -31],
+      [-43, 18],
+      [-60, -4],
+      [-60, 15],
+      [-3, 32],
+      [-47, 30],
+      [-89, 11],
+      [-85, -7],
+      [-26, 34],
+      [-83, 4],
+      [-102, -20],
+      [15, -39],
+      [187, 5],
+      [18, -21],
+      [49, 10],
+      [66, -26],
+      [50, -61],
+      [-2, -55],
+      [-50, -15],
+      [-95, 1],
+      [-51, 28],
+      [-23, -66],
+      [-153, 1],
+      [-26, 25],
+      [-74, -53],
+      [-95, -1],
+      [-123, 18],
+      [-38, 19],
+      [-29, -60],
+      [-150, 1],
+      [-37, 16],
+      [-28, 40],
+      [-26, -5],
+      [-1, -104],
+      [114, 12],
+      [169, -5],
+      [61, -25],
+      [27, 6],
+      [281, -2],
+      [3, -127],
+      [-99, 6],
+      [-146, 23],
+      [-68, 22],
+      [-16, 43],
+      [-46, 15],
+      [-137, 0],
+      [-110, -7],
+      [-48, 9],
+      [-84, -21],
+      [237, -10],
+      [129, -18],
+      [2, -24],
+      [-186, 6],
+      [-101, -16],
+      [-36, -19],
+      [-82, 25],
+      [-20, -56],
+      [-30, -5],
+      [-12, -78],
+      [69, 66],
+      [34, 14],
+      [97, 4],
+      [142, 27],
+      [16, -9],
+      [147, -7],
+      [21, -41],
+      [80, -27],
+      [69, 7],
+      [122, -36],
+      [7, -45],
+      [-14, -63],
+      [-49, -61],
+      [-52, 0],
+      [-145, -21],
+      [174, -74],
+      [-64, -39],
+      [-25, -53],
+      [-45, -7],
+      [-118, 25],
+      [-117, 2],
+      [-31, -43],
+      [108, -13],
+      [31, -18],
+      [39, 16],
+      [103, -10],
+      [-14, -47],
+      [-61, -53],
+      [-79, 41],
+      [-61, -19],
+      [-18, -29],
+      [-46, -5],
+      [-30, -54],
+      [19, -70],
+      [-31, -25],
+      [-83, -13],
+      [-64, -30],
+      [-44, 19],
+      [-31, 41],
+      [-2, -72],
+      [-41, -52],
+      [-75, -26],
+      [-23, -45],
+      [-59, -4],
+      [-21, -25],
+      [-27, 42],
+      [-21, -27],
+      [-63, -32],
+      [-102, 16],
+      [-52, -1],
+      [-46, -23],
+      [-101, 11],
+      [-85, 21],
+      [-138, 57],
+      [-28, 35],
+      [-58, 29],
+      [-17, -67],
+      [57, -28],
+      [31, -40],
+      [-186, 4],
+      [59, -40],
+      [25, -50],
+      [120, 57],
+      [105, 11],
+      [138, -45],
+      [0, -72],
+      [82, 71],
+      [84, 25],
+      [76, -12],
+      [52, -29],
+      [-13, -55],
+      [-54, -13],
+      [12, -73],
+      [68, -13],
+      [104, 20],
+      [36, 39],
+      [62, 21],
+      [54, -27],
+      [42, -54],
+      [2, -154],
+      [-49, 6],
+      [-38, -67],
+      [-45, -10],
+      [-10, -29],
+      [-38, 2],
+      [-20, 65],
+      [-42, -4],
+      [-40, -85],
+      [-70, -21],
+      [-17, -46],
+      [-67, 2],
+      [-123, -46],
+      [-53, 0],
+      [-18, -21],
+      [-98, -19],
+      [-48, 28],
+      [51, 127],
+      [-42, 27],
+      [-84, 19],
+      [-37, -22],
+      [-96, 5],
+      [-95, 23],
+      [0, -68],
+      [-88, 1],
+      [-44, -12],
+      [-81, 50],
+      [0, 54],
+      [-32, 8],
+      [-8, -95],
+      [-100, 7],
+      [-19, 25],
+      [-67, 33],
+      [-14, 61],
+      [-26, -3],
+      [0, -98],
+      [-80, -13],
+      [-65, 22],
+      [-25, 47],
+      [-35, 16],
+      [20, -95],
+      [78, -17],
+      [-13, -47],
+      [-55, -13],
+      [-79, -1],
+      [-120, 42],
+      [-45, -11],
+      [-21, 17],
+      [-81, 10],
+      [-23, 27],
+      [-66, 12],
+      [-31, -31],
+      [-52, 6],
+      [-40, 25],
+      [-80, -7],
+      [-19, -46],
+      [-195, 23],
+      [16, 71],
+      [-38, 49],
+      [2, 128],
+      [-48, -73],
+      [-7, -56],
+      [-46, -113],
+      [-56, 9],
+      [-71, 43],
+      [-2, 96],
+      [-21, 106],
+      [30, 28],
+      [153, 59],
+      [92, 74],
+      [179, 11],
+      [50, -10],
+      [23, 33],
+      [49, 18],
+      [-17, 87],
+      [-26, -17],
+      [-95, 15],
+      [-10, 100],
+      [-53, 41],
+      [-52, 16],
+      [19, 106],
+      [191, 47],
+      [124, -6],
+      [99, -26],
+      [54, -26],
+      [58, -49],
+      [61, -159],
+      [45, 14],
+      [27, -42],
+      [65, 2],
+      [64, -13],
+      [75, -39],
+      [7, 58],
+      [47, -9],
+      [61, 8],
+      [71, -18],
+      [14, 54],
+      [45, 6],
+      [55, 30],
+      [114, 116],
+      [84, 114],
+      [-2, 64],
+      [-28, 13],
+      [-28, -24],
+      [8, -50],
+      [-98, -83],
+      [-8, -36],
+      [-60, -67],
+      [-65, -47],
+      [-59, -14],
+      [-132, 14],
+      [-73, -1],
+      [-28, 45],
+      [-83, 30],
+      [-27, 121],
+      [-30, 0],
+      [-48, 52],
+      [146, 82],
+      [27, 82],
+      [26, 26],
+      [22, 134],
+      [-18, 5],
+      [-48, -135],
+      [-23, -4],
+      [-22, -47],
+      [-51, -51],
+      [-180, -32],
+      [13, 64],
+      [52, 65],
+      [-1, 52],
+      [-88, -101],
+      [-53, 15],
+      [-54, -59],
+      [-100, -9],
+      [-79, 9],
+      [-21, 131],
+      [11, 61],
+      [76, 56],
+      [77, 0],
+      [-23, 47],
+      [10, 52],
+      [56, 40],
+      [54, 12],
+      [107, 6],
+      [105, 18],
+      [81, 37],
+      [68, -6],
+      [91, -30],
+      [116, 0],
+      [105, -15],
+      [33, -22],
+      [142, -58],
+      [39, 5],
+      [48, -51],
+      [51, -23],
+      [-38, 94],
+      [-64, 0],
+      [-9, 17],
+      [-85, 24],
+      [-8, 26],
+      [126, 4],
+      [103, -8],
+      [50, 13],
+      [94, -1],
+      [-31, 91],
+      [-64, -61],
+      [-110, -12],
+      [-65, 21],
+      [-109, 8],
+      [-76, -5],
+      [-142, 15],
+      [-129, 33],
+      [37, 74],
+      [94, -14],
+      [59, -49],
+      [15, 42],
+      [-63, 44],
+      [-32, 0],
+      [-54, 83],
+      [-13, 53],
+      [-83, 32],
+      [-49, 85],
+      [-106, 45],
+      [-83, 2],
+      [-139, 32],
+      [-13, 100],
+      [-46, 105],
+      [31, 104],
+      [28, 15],
+      [132, 7],
+      [123, -35],
+      [308, 0],
+      [68, -9],
+      [65, -27],
+      [76, -57],
+      [108, -55],
+      [75, -54],
+      [47, -8],
+      [52, -39],
+      [25, -78],
+      [38, -16],
+      [21, -51],
+      [30, -4],
+      [27, 29],
+      [78, -11],
+      [33, -19],
+      [95, -6],
+      [15, 19],
+      [180, 27],
+      [-30, 27],
+      [-150, -27],
+      [-84, 8],
+      [-48, 21],
+      [-84, 8],
+      [-23, 35],
+      [13, 101],
+      [-134, 30],
+      [-168, 106],
+      [-51, 48],
+      [30, 52],
+      [87, 5],
+      [109, 20],
+      [38, -4],
+      [214, 27],
+      [93, 17],
+      [59, -5],
+      [34, 40],
+      [108, 2],
+      [113, 12],
+      [125, 0],
+      [105, 29],
+      [-170, 3],
+      [-78, -9],
+      [-31, 48],
+      [134, 35],
+      [193, 37],
+      [166, 18],
+      [223, 4],
+      [62, -24],
+      [13, -39],
+      [26, 34],
+      [-65, 48],
+      [-195, 7],
+      [-129, 12],
+      [-280, -33],
+      [23, 89],
+      [99, 47],
+      [30, 53],
+      [60, 18],
+      [17, 26],
+      [90, 40],
+      [91, 12],
+      [65, 26],
+      [17, 28],
+      [-302, -81],
+      [-98, -61],
+      [-55, -19],
+      [-14, -36],
+      [-79, 21],
+      [-60, 33],
+      [18, -75],
+      [-5, -80],
+      [-18, -37],
+      [-189, -69],
+      [-136, -32],
+      [-36, -15],
+      [-163, -34],
+      [-301, -35],
+      [-84, 5],
+      [15, 54],
+      [69, 28],
+      [141, 15],
+      [83, 35],
+      [-9, 33],
+      [-131, -39],
+      [-17, -15],
+      [-201, -36],
+      [-42, 14],
+      [-12, 36],
+      [-47, -127],
+      [-190, -20],
+      [-192, 0],
+      [-43, 11],
+      [-137, 0],
+      [-156, 41],
+      [22, 44],
+      [93, 64],
+      [133, 104],
+      [140, 23],
+      [-18, 24],
+      [-110, -1],
+      [-127, -51],
+      [-67, -57],
+      [-135, -79],
+      [-65, -58],
+      [-68, 0],
+      [-169, 38],
+      [-64, 31],
+      [-213, 71],
+      [42, 48],
+      [244, 34],
+      [64, 0],
+      [94, -15],
+      [105, 1],
+      [145, 21],
+      [47, 23],
+      [92, 14],
+      [18, 19],
+      [124, 55],
+      [122, 30],
+      [-27, 29],
+      [-40, -16],
+      [-213, -45],
+      [-72, -47],
+      [-158, -15],
+      [-96, -21],
+      [-126, -4],
+      [-41, 6],
+      [-186, -12],
+      [-193, -23],
+      [-68, 4],
+      [-66, 22],
+      [-38, 67],
+      [125, 78],
+      [134, 72],
+      [71, 19],
+      [35, 26],
+      [134, 10],
+      [-3, 31],
+      [-113, -17],
+      [-208, -50],
+      [-206, -57],
+      [-30, 30],
+      [5, 45],
+      [105, 42],
+      [3, 47],
+      [-37, 30],
+      [-20, -29],
+      [-93, 10],
+      [-50, -23],
+      [-38, -58],
+      [-89, -5],
+      [7, 41],
+      [-67, 15],
+      [7, 71],
+      [48, 19],
+      [70, -7],
+      [35, 42],
+      [84, 4],
+      [27, 26],
+      [230, 17],
+      [10, -29],
+      [63, -27],
+      [-14, 63],
+      [105, 55],
+      [104, 29],
+      [116, 11],
+      [4, 11],
+      [169, -23],
+      [56, -72],
+      [63, -33],
+      [-2, 97],
+      [144, -4],
+      [80, -24],
+      [70, -46],
+      [1, 46],
+      [112, 0],
+      [94, -12],
+      [7, -41],
+      [33, -17],
+      [0, 55],
+      [-49, 25],
+      [-207, 15],
+      [-84, 30],
+      [-120, 8],
+      [-65, 32],
+      [-2, 31],
+      [225, -1],
+      [44, 10],
+      [86, -6],
+      [2, 85],
+      [50, -12],
+      [47, -53],
+      [87, 6],
+      [-6, 46],
+      [127, 13],
+      [106, -13],
+      [82, -53],
+      [1, -23],
+      [93, -41],
+      [-19, -56],
+      [79, 10],
+      [2, 41],
+      [-36, 30],
+      [-2, 55],
+      [133, -32],
+      [35, -32],
+      [60, -9],
+      [180, -48],
+      [24, -62],
+      [35, 18],
+      [218, -12],
+      [51, -52],
+      [5, 76],
+      [-171, 13],
+      [-87, 27],
+      [-10, 38],
+      [-95, 5],
+      [-284, 92],
+      [-16, 98],
+      [40, 5],
+      [156, -10],
+      [29, 25],
+      [56, 2],
+      [8, 45],
+      [68, -21],
+      [63, -50],
+      [57, -17],
+      [69, 8],
+      [-105, 69],
+      [34, 57],
+      [127, -16],
+      [32, 27],
+      [-8, 59],
+      [71, 15],
+      [44, 32],
+      [80, 24],
+      [89, -12],
+      [13, 17],
+      [57, -12],
+      [32, -41],
+      [62, -2],
+      [40, 38],
+      [48, 7],
+      [164, -39],
+      [104, -78],
+      [28, -33],
+      [135, -41],
+      [-5, -64],
+      [107, 83],
+      [-102, 34],
+      [-56, 6],
+      [-13, 41],
+      [-72, 38],
+      [-21, 26],
+      [-149, 44],
+      [12, 40],
+      [185, -2],
+      [123, 20],
+      [79, -4],
+      [97, -17],
+      [44, 12],
+      [157, -7],
+      [111, -40],
+      [47, -62],
+      [128, -51],
+      [160, -40],
+      [-24, -37],
+      [22, -74],
+      [36, -15],
+      [18, 49],
+      [6, 89],
+      [-115, 35],
+      [-79, 16],
+      [-45, 23],
+      [-3, 73],
+      [27, 23],
+      [224, 49],
+      [169, -1],
+      [-11, -61],
+      [53, -29],
+      [74, 11],
+      [-25, 58],
+      [154, 28],
+      [180, 3]
+    ],
+    [
+      [14578, 6666],
+      [45, -12],
+      [49, -41],
+      [38, -70],
+      [37, -155],
+      [-17, -24],
+      [-77, 30],
+      [-51, 46],
+      [-69, 22],
+      [-98, 55],
+      [-25, 37],
+      [56, 87],
+      [112, 25]
+    ],
+    [
+      [15030, 5650],
+      [-1, -260],
+      [0, -1993],
+      [-15, -83],
+      [37, -95],
+      [-4, -87],
+      [56, -154],
+      [11, -5],
+      [44, -159],
+      [77, -134],
+      [70, -15],
+      [19, -23],
+      [44, 13],
+      [18, -18],
+      [120, -48],
+      [62, -77],
+      [30, -94],
+      [50, -45],
+      [14, 61],
+      [36, -11],
+      [3, -81],
+      [27, -99],
+      [72, -60],
+      [40, 36],
+      [52, -23],
+      [46, -58],
+      [30, 47],
+      [135, 67],
+      [44, 39],
+      [75, -3],
+      [63, -42],
+      [-23, -152],
+      [31, -56]
+    ],
+    [
+      [16293, 2038],
+      [-49, -82],
+      [-109, -50],
+      [-77, -79],
+      [-112, -185],
+      [-14, -51],
+      [-36, -51],
+      [-47, -36],
+      [-68, -108],
+      [-87, -267],
+      [-460, 1],
+      [-128, -105],
+      [32, -110],
+      [16, -161],
+      [25, -45],
+      [-8, -43],
+      [-278, -253],
+      [-290, -108],
+      [-92, -106],
+      [-188, -199],
+      [-67, 0],
+      [-95, 107],
+      [-19, 99],
+      [13, 145],
+      [55, 25],
+      [56, 131],
+      [29, 32],
+      [24, 224],
+      [73, 341],
+      [-72, 761],
+      [-26, 251],
+      [-261, 276],
+      [38, 103],
+      [-33, 61],
+      [-62, 8],
+      [-31, -35],
+      [-29, 76],
+      [-17, 132],
+      [3, 66],
+      [-59, -13],
+      [-45, -28],
+      [-51, 101],
+      [-20, 146],
+      [-293, 288],
+      [-178, 171],
+      [-267, 249],
+      [-124, 110],
+      [-78, -36],
+      [-158, -157],
+      [-37, 24],
+      [-69, 7],
+      [-24, -15],
+      [-40, 57],
+      [-173, 10],
+      [-24, 77],
+      [-73, -53],
+      [-31, -44],
+      [-33, -12],
+      [-71, 40],
+      [-8, 43],
+      [-64, 34],
+      [-17, 57],
+      [-51, -3],
+      [-2, -59],
+      [-23, -10],
+      [-35, 125],
+      [-35, -6],
+      [-18, 57],
+      [-54, 47],
+      [-76, 13],
+      [-51, -30],
+      [-1, -26],
+      [-69, -15],
+      [-24, 64],
+      [-91, 17],
+      [-8, 25],
+      [-68, -1],
+      [-36, 62],
+      [1, 40],
+      [-36, 240],
+      [-32, 43],
+      [-48, 7]
+    ],
+    [
+      [12719, 8767],
+      [28, 2],
+      [49, -97],
+      [40, -26],
+      [44, -56],
+      [80, -44],
+      [37, -77],
+      [47, -131],
+      [47, -61],
+      [60, -43],
+      [69, -8],
+      [59, -48],
+      [73, -42],
+      [20, -26],
+      [84, -28],
+      [86, -82],
+      [59, -86],
+      [56, -30],
+      [7, -40],
+      [34, 9],
+      [42, -23],
+      [71, 0],
+      [49, 23],
+      [55, -14],
+      [46, 25],
+      [53, -14],
+      [49, -34],
+      [71, -10],
+      [50, 16],
+      [52, -54],
+      [25, 18],
+      [52, -24],
+      [43, -40],
+      [2, -86],
+      [17, -59],
+      [-22, -85],
+      [-8, -76],
+      [-29, -138],
+      [3, -47],
+      [43, -80],
+      [32, -164],
+      [-18, -53],
+      [-2, -92],
+      [23, -148],
+      [-28, -37],
+      [-17, -86],
+      [14, -75],
+      [69, -88],
+      [7, -41],
+      [63, -112],
+      [31, -37],
+      [24, -155],
+      [19, -40],
+      [94, -68],
+      [16, -45],
+      [62, -71],
+      [23, -57],
+      [29, -178],
+      [31, -41],
+      [48, -10],
+      [55, -72],
+      [23, -6],
+      [27, 61],
+      [-9, 52],
+      [52, 62]
+    ],
+    [
+      [18824, 3103],
+      [4, -98],
+      [-17, -30],
+      [40, -109],
+      [23, -116],
+      [19, 72],
+      [97, -43],
+      [11, -35],
+      [63, -18],
+      [89, 38],
+      [117, 12],
+      [-4, -79],
+      [-33, 2],
+      [-36, -133],
+      [-8, -81],
+      [-81, -9],
+      [-32, 65],
+      [-3, 70],
+      [-36, -2],
+      [-32, -38],
+      [-84, 47],
+      [-84, 120],
+      [-44, -9],
+      [2, 71],
+      [-27, 61],
+      [-40, -8],
+      [-3, 62],
+      [57, 131],
+      [42, 57]
+    ],
+    [
+      [17587, 3247],
+      [2, 60],
+      [-43, 31],
+      [-190, -440],
+      [-15, -162],
+      [-33, -41],
+      [-24, -88],
+      [-5, -130],
+      [11, -47],
+      [-36, -51],
+      [6, -37],
+      [-41, -39],
+      [-65, -151],
+      [4, -47],
+      [-21, -45],
+      [-15, 57],
+      [-51, -55],
+      [-29, 32],
+      [-32, -48],
+      [-24, -119],
+      [-197, -6],
+      [-180, 7],
+      [-268, -14],
+      [-82, 26],
+      [20, 52],
+      [59, 44],
+      [16, 54],
+      [52, 10],
+      [23, 28],
+      [68, 36],
+      [3, 65],
+      [21, 92],
+      [35, 63],
+      [30, 140],
+      [51, 46],
+      [48, 22],
+      [62, 85],
+      [60, 55],
+      [22, 78],
+      [75, 47],
+      [47, -4],
+      [41, 44],
+      [55, 32],
+      [24, 48],
+      [43, 2],
+      [28, 34],
+      [78, 55],
+      [52, 91],
+      [36, 94],
+      [34, 39],
+      [8, 64],
+      [57, 72],
+      [58, 130],
+      [17, 66],
+      [129, 195],
+      [92, 88],
+      [97, 111],
+      [53, 28],
+      [24, 32],
+      [145, 105],
+      [43, 23],
+      [86, 74],
+      [65, 24],
+      [58, 39],
+      [165, 35],
+      [59, -3],
+      [97, -27],
+      [80, -56],
+      [51, -59],
+      [44, -77],
+      [-27, -151],
+      [23, -64],
+      [-27, -47],
+      [-86, -48],
+      [-20, -76],
+      [-44, -32],
+      [-52, -61],
+      [-71, -22],
+      [-19, 36],
+      [-68, 30],
+      [-35, 43],
+      [-21, -45],
+      [-111, -4],
+      [-68, -65]
+    ],
+    [
+      [18786, 4779],
+      [55, -38],
+      [133, -35],
+      [72, -34],
+      [139, -103],
+      [29, -60],
+      [64, -48],
+      [58, -28],
+      [44, -91],
+      [-18, -69],
+      [-111, -8],
+      [-57, 38],
+      [-112, 37],
+      [-74, 51],
+      [-17, 32],
+      [-64, 31],
+      [-22, 85],
+      [-79, 93],
+      [-105, 59],
+      [-12, 66],
+      [77, 22]
+    ],
+    [
+      [15073, 6017],
+      [5, -72],
+      [-15, -26],
+      [-50, -3],
+      [-6, 44],
+      [66, 57]
+    ],
+    [
+      [14911, 6765],
+      [17, -73],
+      [-37, -9],
+      [0, 66],
+      [20, 16]
+    ],
+    [
+      [15233, 8524],
+      [6, -130],
+      [-24, -37],
+      [-14, 121],
+      [32, 46]
+    ],
+    [
+      [15024, 8582],
+      [-23, -112],
+      [-16, -27],
+      [-85, -73],
+      [4, 82],
+      [44, 5],
+      [56, 45],
+      [20, 80]
+    ],
+    [
+      [15126, 8551],
+      [26, -71],
+      [-19, -63],
+      [-33, -48],
+      [-15, -68],
+      [-39, -95],
+      [-43, 8],
+      [18, 68],
+      [0, 59],
+      [-62, -129],
+      [-13, 66],
+      [35, 87],
+      [31, 37],
+      [47, -3],
+      [24, 160]
+    ],
+    [
+      [17543, 10096],
+      [28, -55],
+      [-24, -57],
+      [-24, 15],
+      [20, 97]
+    ],
+    [
+      [17811, 10926],
+      [29, -9],
+      [46, -78],
+      [-30, -64],
+      [-91, -79],
+      [-28, 42],
+      [51, 183],
+      [23, 5]
+    ],
+    [
+      [15339, 11052],
+      [-33, -41],
+      [-48, -20],
+      [-5, 38],
+      [86, 23]
+    ],
+    [
+      [15012, 11974],
+      [31, -16],
+      [49, -85],
+      [-10, -125],
+      [-36, -47],
+      [-24, -111],
+      [-35, -78],
+      [-48, -7],
+      [-20, 89],
+      [-52, 19],
+      [-16, 33],
+      [-6, 92],
+      [31, 121],
+      [50, 92],
+      [86, 23]
+    ],
+    [
+      [20506, 5630],
+      [-32, 46],
+      [-153, -64],
+      [-29, -44],
+      [-79, -33],
+      [-29, 30],
+      [-48, -60],
+      [-84, -140],
+      [-1, -88],
+      [-86, -71],
+      [-31, -39],
+      [-32, -86],
+      [-58, -26],
+      [-15, -80],
+      [-62, -39],
+      [-39, 29],
+      [-20, -30],
+      [-58, -12],
+      [-37, 18],
+      [-77, -28],
+      [-33, 8],
+      [-60, -20],
+      [-71, -45],
+      [-30, 80],
+      [-32, -9],
+      [-101, 46],
+      [-48, -16],
+      [-39, 16],
+      [-92, 0],
+      [-6, -27],
+      [-56, -23],
+      [-50, 20],
+      [-33, 33],
+      [-84, -1],
+      [-20, -21],
+      [-62, 35],
+      [-31, -19],
+      [-109, -9],
+      [-87, 21],
+      [-84, -28],
+      [-73, 9],
+      [-16, -39],
+      [-74, -10],
+      [-23, 48],
+      [-16, -61],
+      [-45, -32],
+      [-5, -32],
+      [-57, -41],
+      [-14, -76],
+      [-40, -47],
+      [3, -58],
+      [-17, -43],
+      [-1, -79],
+      [-35, -81],
+      [-31, 5],
+      [-151, -32],
+      [-15, -98],
+      [-50, -31],
+      [-44, 8],
+      [-15, -67],
+      [-39, -34],
+      [-68, -93],
+      [-19, -93],
+      [-32, -54],
+      [-45, -116],
+      [-64, -93],
+      [-19, -114],
+      [-24, -81],
+      [-54, -69],
+      [-26, -94],
+      [-54, -36],
+      [-65, -183],
+      [-45, -46],
+      [-71, -104],
+      [-25, -59],
+      [-55, -18],
+      [-49, -35],
+      [-34, 14],
+      [-47, -55],
+      [-35, -19],
+      [-25, -70],
+      [-46, -28],
+      [-42, -64],
+      [-47, -16],
+      [-52, -40],
+      [-27, -42],
+      [-9, -77],
+      [-69, -159],
+      [-9, -134],
+      [-24, -29],
+      [-38, 15],
+      [-26, -51],
+      [-64, -26],
+      [-48, -56]
+    ],
+    [
+      [15030, 5650],
+      [-6, 47],
+      [54, 70],
+      [15, -74],
+      [39, -1],
+      [48, -89],
+      [31, 57],
+      [-16, 70],
+      [-37, 60],
+      [4, 56],
+      [29, 1],
+      [-1, 79],
+      [26, 10],
+      [42, 85],
+      [18, 122],
+      [2, 88],
+      [-56, 58],
+      [-15, 101],
+      [5, 65],
+      [-27, 16],
+      [7, 73],
+      [-17, 27],
+      [-9, 74],
+      [3, 122],
+      [-30, 23],
+      [26, 60],
+      [-28, 119],
+      [10, 122],
+      [-27, 77],
+      [-45, 48],
+      [-39, 113],
+      [3, 49],
+      [-24, 95],
+      [3, 61],
+      [127, 58],
+      [51, 51],
+      [127, 76],
+      [46, 61],
+      [81, 65],
+      [41, 69],
+      [124, 163],
+      [6, 46],
+      [92, 162],
+      [24, 79],
+      [58, -28],
+      [60, -8],
+      [44, 51],
+      [-83, 87],
+      [-22, 67],
+      [-17, -115],
+      [-21, -51],
+      [2, 387],
+      [-5, 141],
+      [-25, 167],
+      [-29, 72],
+      [-29, 123],
+      [-48, 135],
+      [-67, 86],
+      [-35, 77],
+      [-23, 5],
+      [-105, 78],
+      [-4, 33],
+      [-112, 119],
+      [6, 74],
+      [-24, 81],
+      [17, 21],
+      [35, -17],
+      [32, 101],
+      [33, 72],
+      [24, 5],
+      [62, 96],
+      [-38, 51],
+      [41, 60],
+      [-17, 62],
+      [88, 61],
+      [13, 48],
+      [-19, 30],
+      [20, 72],
+      [-14, -7],
+      [-39, 31],
+      [22, 91],
+      [-9, 26],
+      [-12, 23],
+      [-24, 18],
+      [-10, 41],
+      [30, 38],
+      [-53, 94],
+      [0, 62],
+      [-65, 24],
+      [-23, 28],
+      [50, 76],
+      [36, 35],
+      [24, 101],
+      [-10, 109],
+      [58, 129],
+      [-42, -25],
+      [-16, 55],
+      [-42, -2],
+      [-31, 98],
+      [1, 43],
+      [-25, 128],
+      [9, 80],
+      [12, 56],
+      [65, 26],
+      [79, 85],
+      [90, -28],
+      [83, -5],
+      [51, -42],
+      [70, -16],
+      [168, -77],
+      [85, 6],
+      [85, -25],
+      [58, -66],
+      [-5, 65],
+      [76, -3],
+      [33, 41],
+      [40, 12],
+      [46, 55],
+      [60, 25],
+      [30, -58],
+      [77, -31],
+      [47, -83],
+      [38, -22],
+      [-1, -8],
+      [38, 8],
+      [35, -92],
+      [50, -54],
+      [35, -4],
+      [26, -43],
+      [20, -35],
+      [21, -85],
+      [29, 58],
+      [78, -55],
+      [-49, -31],
+      [-7, -50],
+      [27, -32],
+      [-10, -52],
+      [28, -58],
+      [32, -30],
+      [111, -24],
+      [52, -30],
+      [53, -33],
+      [35, 8],
+      [27, 39],
+      [50, -73],
+      [9, -76],
+      [38, -22],
+      [18, 51],
+      [43, -9],
+      [-7, 64],
+      [20, 55],
+      [34, -31],
+      [19, -68],
+      [-7, -55],
+      [-67, -70],
+      [7, -47],
+      [-30, -38],
+      [17, -140],
+      [31, -54],
+      [-5, -8],
+      [-9, -77],
+      [-44, 3],
+      [-10, -41],
+      [-53, 15],
+      [1, -36],
+      [88, 4],
+      [31, -50],
+      [-3, -50],
+      [23, -66],
+      [-33, -53],
+      [-4, -71],
+      [19, -80],
+      [30, 20],
+      [52, -16],
+      [4, -60],
+      [-37, -22],
+      [1, -38],
+      [-41, -182],
+      [-33, 0],
+      [-3, 79],
+      [-32, 54],
+      [9, -120],
+      [-69, -26],
+      [64, -116],
+      [57, 113],
+      [44, 51],
+      [39, 19],
+      [63, -12],
+      [83, 16],
+      [70, -81],
+      [1, -97],
+      [18, -41],
+      [59, -8],
+      [25, -69],
+      [54, 6],
+      [-2, -74],
+      [21, -57],
+      [42, 67],
+      [87, 38],
+      [41, 87],
+      [21, -51],
+      [40, 33],
+      [34, 123],
+      [41, 91],
+      [67, -37],
+      [30, 75],
+      [52, 37],
+      [28, 75],
+      [-16, 25],
+      [5, 71],
+      [25, -24],
+      [11, 86],
+      [41, 64],
+      [-37, 117],
+      [39, 72],
+      [55, 68],
+      [4, 57],
+      [10, 12],
+      [23, 38],
+      [10, 76],
+      [51, 56],
+      [-2, 5],
+      [40, -18],
+      [2, -2],
+      [0, 0],
+      [1, 0],
+      [11, -12]
+    ],
+    [
+      [16262, 12152],
+      [29, -29],
+      [43, 7],
+      [16, -50],
+      [-107, 45],
+      [19, 27]
+    ],
+    [
+      [15364, 12590],
+      [81, -10],
+      [42, -24],
+      [34, -91],
+      [-12, -51],
+      [-94, -48],
+      [-33, 32],
+      [-97, 136],
+      [-8, 30],
+      [87, 26]
+    ],
+    [
+      [15571, 12713],
+      [66, -9],
+      [75, -58],
+      [33, -89],
+      [-26, -33],
+      [-61, 19],
+      [-109, 108],
+      [22, 62]
+    ],
+    [
+      [9690, 4229],
+      [-1160, 1],
+      [-953, -1]
+    ],
+    [
+      [478, 10582],
+      [-31, 48],
+      [31, 156],
+      [-154, -10],
+      [-72, -88],
+      [-115, 72],
+      [-18, -52],
+      [-118, 50],
+      [0, 3903],
+      [-1, 541],
+      [1, 950],
+      [149, -34],
+      [115, 14],
+      [34, -6],
+      [63, -45],
+      [47, 5],
+      [44, -17],
+      [65, -68],
+      [114, -95],
+      [9, 10],
+      [4, 30],
+      [20, -47],
+      [67, -55],
+      [197, -107],
+      [25, 0],
+      [17, 6],
+      [42, -36],
+      [74, -1],
+      [22, 3],
+      [0, -4],
+      [0, -3]
+    ]
+  ],
+  "transform": {
+    "scale": [0.004091342742859161, 0.0017315871777225339],
+    "translate": [-141.00686645507812, 41.6769256591798]
+  },
+  "objects": {
+    "canada": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 1,
+            "NAME_1": "Alberta",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [
+            [[4]],
+            [[5]],
+            [[6]],
+            [[7]],
+            [[8]],
+            [[9]],
+            [[10]],
+            [[11]],
+            [[12]],
+            [[13]],
+            [[14]],
+            [[15]],
+            [[16]],
+            [[17]],
+            [[18]],
+            [[19]],
+            [[20]],
+            [[21]],
+            [[22]],
+            [[23]],
+            [[24]],
+            [[25]],
+            [[26]],
+            [[27]],
+            [[28]],
+            [[29]],
+            [[30]],
+            [[31]],
+            [[32]],
+            [[33, 34, -3, 35]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 2,
+            "NAME_1": "British Columbia",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": "Colombie britannique|New Caledonia"
+          }
+        },
+        {
+          "arcs": [[36, 37, 38, 39, 40]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 3,
+            "NAME_1": "Manitoba",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[[41]], [[42]], [[43, 44, 45, 46]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 4,
+            "NAME_1": "New Brunswick",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": "Nouveau-Brunswick|Acadia"
+          }
+        },
+        {
+          "arcs": [
+            [[47]],
+            [[48]],
+            [[49]],
+            [[50]],
+            [[51]],
+            [[52]],
+            [[53]],
+            [[54]],
+            [[55]],
+            [[56]],
+            [[57]],
+            [[58, 59]],
+            [[60]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 5,
+            "NAME_1": "Newfoundland and Labrador",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": "Newfoundland|Terre-Neuve|Terre-Neuve-et-Labrador"
+          }
+        },
+        {
+          "arcs": [
+            [[61]],
+            [[62, 63, -4, -35, 64, 65]],
+            [[66, 67]],
+            [[68, 69]],
+            [[70]],
+            [[71]],
+            [[72, 73]],
+            [[74, 75]],
+            [[76]],
+            [[77]],
+            [[78]],
+            [[79, 80]],
+            [[81, 82]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 6,
+            "NAME_1": "Northwest Territories",
+            "TYPE_1": "Territoire",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "",
+            "VARNAME_1": "Territoires du Nord-Ouest"
+          }
+        },
+        {
+          "arcs": [[[-44, 83]], [[84]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 7,
+            "NAME_1": "Nova Scotia",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": "Acadia|Nouvelle-Écosse"
+          }
+        },
+        {
+          "arcs": [
+            [[85, 86]],
+            [[87]],
+            [[88]],
+            [[89]],
+            [[90]],
+            [[91]],
+            [[92]],
+            [[93]],
+            [[94]],
+            [[95]],
+            [[96]],
+            [[97]],
+            [[98]],
+            [[99]],
+            [[100]],
+            [[101]],
+            [[102]],
+            [[103]],
+            [[104]],
+            [[105]],
+            [[106]],
+            [[107]],
+            [[108]],
+            [[109]],
+            [[110]],
+            [[111]],
+            [[112]],
+            [[113]],
+            [[114]],
+            [[115]],
+            [[116]],
+            [[117]],
+            [[118]],
+            [[119]],
+            [[120]],
+            [[121]],
+            [[122]],
+            [[123]],
+            [[124]],
+            [[125]],
+            [[126]],
+            [[127]],
+            [[128]],
+            [[129]],
+            [[130]],
+            [[131]],
+            [[132]],
+            [[133]],
+            [[134]],
+            [[-40, -63, 135]],
+            [[136]],
+            [[137]],
+            [[-69, 138, -67, 139]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 8,
+            "NAME_1": "Nunavut",
+            "TYPE_1": "Territoire",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [
+            [[140]],
+            [[141]],
+            [[142]],
+            [[143]],
+            [[144]],
+            [[145]],
+            [[146]],
+            [[147]],
+            [[148]],
+            [[149]],
+            [[150]],
+            [[151]],
+            [[152]],
+            [[153]],
+            [[154]],
+            [[155]],
+            [[156]],
+            [[157]],
+            [[158]],
+            [[159]],
+            [[160]],
+            [[161]],
+            [[-75, 162, -73, 163]],
+            [[164]],
+            [[165]],
+            [[166]],
+            [[167]],
+            [[168]],
+            [[169]],
+            [[170]],
+            [[-80, 171]],
+            [[172]],
+            [[-82, 173]],
+            [[174]],
+            [[175]],
+            [[176]],
+            [[177]],
+            [[178]],
+            [[179]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 8,
+            "NAME_1": "Nunavut",
+            "TYPE_1": "Territoire",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[180]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 8,
+            "NAME_1": "Nunavut",
+            "TYPE_1": "Territoire",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[[181]], [[182, 183, -37, 184]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 9,
+            "NAME_1": "Ontario",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": "Upper Canada"
+          }
+        },
+        {
+          "arcs": [[185]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 10,
+            "NAME_1": "Prince Edward Island",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": "Île de Saint-Jean|Île du Prince-Édouard"
+          }
+        },
+        {
+          "arcs": [
+            [[-46, 186]],
+            [[187]],
+            [[188]],
+            [[189]],
+            [[190]],
+            [[191]],
+            [[-86, 192]],
+            [[193]],
+            [[194]],
+            [[195]],
+            [[196]],
+            [[-59, 197, -183, 198]],
+            [[199]],
+            [[200]],
+            [[201]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 11,
+            "NAME_1": "Québec",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": "Lower Canada"
+          }
+        },
+        {
+          "arcs": [[-39, 202, -1, -64]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 12,
+            "NAME_1": "Saskatchewan",
+            "TYPE_1": "Province",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-65, -34, 203]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 42,
+            "ISO": "CAN",
+            "NAME_0": "Canada",
+            "ID_1": 13,
+            "NAME_1": "Yukon",
+            "TYPE_1": "Territoire",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "",
+            "VARNAME_1": "Yukon Territory|Territoire du Yukon|Yukon|Yuk¢n"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/china-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/china-topo.json
new file mode 100644
index 0000000..bceeb23
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/china-topo.json
@@ -0,0 +1,4597 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [18360, 6657],
+      [-1, -60],
+      [-30, -69],
+      [7, -26],
+      [-63, -98],
+      [-28, 13],
+      [-42, -63],
+      [34, -9],
+      [2, -81],
+      [-47, -41],
+      [-63, 6],
+      [-43, 29],
+      [-26, -23],
+      [-5, -109],
+      [10, -81],
+      [-57, -57],
+      [-11, -63],
+      [-59, -42],
+      [-41, -66],
+      [-67, -16],
+      [-45, -42]
+    ],
+    [
+      [17785, 5759],
+      [-21, 50],
+      [-51, 45],
+      [-55, -16],
+      [-68, 2],
+      [-23, 34],
+      [-44, -8],
+      [-33, 77],
+      [-47, 50],
+      [-34, -6],
+      [-14, 47],
+      [-36, -16],
+      [-6, -95],
+      [-46, -14],
+      [-62, -58],
+      [-52, 7],
+      [-22, 52],
+      [62, 65],
+      [35, 71],
+      [-89, 63],
+      [-34, -9],
+      [-16, -72],
+      [-32, -9],
+      [-76, -56],
+      [-58, 17]
+    ],
+    [
+      [16963, 5980],
+      [-24, 76],
+      [-4, 122],
+      [-72, 91],
+      [12, 68],
+      [-59, 81],
+      [30, 85],
+      [66, 56],
+      [-51, 101],
+      [-46, -13],
+      [-25, 43],
+      [-55, -22],
+      [-77, 126]
+    ],
+    [
+      [16658, 6794],
+      [2, 50],
+      [44, 57],
+      [4, 32],
+      [73, 55],
+      [80, -3],
+      [12, 23],
+      [11, 178],
+      [-20, 131],
+      [-21, 55],
+      [-85, -60],
+      [-31, 6],
+      [-54, 67],
+      [-84, 19],
+      [-6, 106],
+      [-17, 54],
+      [-80, 19],
+      [-18, 77],
+      [87, -2],
+      [71, 27],
+      [28, 97],
+      [-19, 56],
+      [40, 65],
+      [89, 15],
+      [-16, 73],
+      [14, 56],
+      [-31, 28],
+      [18, 73],
+      [51, 24],
+      [54, -37],
+      [38, 0],
+      [10, -47],
+      [69, -106],
+      [87, 36],
+      [27, 37],
+      [50, 29],
+      [29, 40],
+      [-30, 54],
+      [-19, 105],
+      [-51, -8],
+      [-84, 78],
+      [5, 76]
+    ],
+    [
+      [16985, 8429],
+      [73, 31]
+    ],
+    [
+      [17058, 8460],
+      [99, -78],
+      [42, -6],
+      [41, -45],
+      [36, 10],
+      [42, -118],
+      [67, -57],
+      [64, 11],
+      [23, -32],
+      [41, 17],
+      [25, -40],
+      [73, -50],
+      [-11, -81],
+      [82, 1],
+      [72, 17],
+      [20, -26],
+      [-78, -222],
+      [27, -73],
+      [69, 27],
+      [21, -126],
+      [-8, -51],
+      [50, -66],
+      [136, 0],
+      [14, 70],
+      [41, 53],
+      [65, 1],
+      [42, -71],
+      [26, 4],
+      [15, -102],
+      [-34, -73],
+      [-165, 61],
+      [-64, -22],
+      [51, -47],
+      [-11, -132],
+      [-62, -13],
+      [-3, -36],
+      [-42, -22],
+      [-10, -75],
+      [38, -31],
+      [12, -47],
+      [79, -38],
+      [-6, -36],
+      [75, -9],
+      [7, -89],
+      [-70, -78],
+      [34, -35],
+      [121, 3],
+      [28, 32],
+      [125, -73],
+      [63, -10]
+    ],
+    [
+      [17462, 11337],
+      [-18, -44],
+      [-56, -30]
+    ],
+    [
+      [17388, 11263],
+      [-73, -26],
+      [-71, 5],
+      [-31, -39],
+      [9, -33],
+      [56, -31],
+      [-10, -75]
+    ],
+    [
+      [17268, 11064],
+      [-38, -45]
+    ],
+    [
+      [17230, 11019],
+      [-80, 10],
+      [-101, -93],
+      [-84, 60],
+      [-84, 15],
+      [-70, -42],
+      [-27, 45],
+      [-45, -2],
+      [-40, 38],
+      [28, 66],
+      [-39, 117],
+      [93, 57],
+      [59, 2],
+      [53, 63],
+      [-90, 123],
+      [72, 60],
+      [32, -19],
+      [48, 21],
+      [54, 85],
+      [83, 2],
+      [-1, 97],
+      [86, -1],
+      [20, -39],
+      [46, -31],
+      [65, -76],
+      [55, 4],
+      [75, -24],
+      [-8, -40],
+      [-42, -41],
+      [29, -98],
+      [45, -41]
+    ],
+    [
+      [14348, 6963],
+      [55, -11],
+      [14, -50],
+      [74, -47],
+      [48, -55],
+      [33, -11],
+      [21, -126],
+      [-30, -27],
+      [20, -57],
+      [-36, -94],
+      [-72, 45],
+      [-48, -20],
+      [-54, -70],
+      [-77, -52],
+      [-28, -52],
+      [-24, 55],
+      [-67, -44],
+      [-14, 58],
+      [-62, -14],
+      [-55, -64],
+      [-36, 1],
+      [-17, 46],
+      [-53, -58],
+      [-53, 6],
+      [-7, -57],
+      [66, -64],
+      [-17, -90],
+      [-4, -107],
+      [-53, -8],
+      [27, -58],
+      [55, 60],
+      [27, -4],
+      [7, -81],
+      [78, -28],
+      [-1, -98],
+      [42, -61],
+      [53, 17],
+      [0, -77],
+      [49, -47]
+    ],
+    [
+      [14209, 5619],
+      [29, -30],
+      [-27, -96],
+      [13, -108],
+      [20, -39],
+      [-18, -46]
+    ],
+    [
+      [14226, 5300],
+      [-48, -47],
+      [-9, -53],
+      [-55, -75],
+      [-40, 30],
+      [-63, 7],
+      [16, 100],
+      [-26, 35],
+      [-23, -84],
+      [-32, 102],
+      [26, 49],
+      [-53, 1],
+      [-65, 24],
+      [17, 51],
+      [-33, 139],
+      [-94, 20],
+      [-80, -62],
+      [-29, 47],
+      [4, 43],
+      [-86, 17],
+      [-8, 24],
+      [-64, -32],
+      [-15, -73],
+      [27, -30],
+      [-19, -51],
+      [-66, -39],
+      [-40, 58],
+      [-44, -3],
+      [-77, -76],
+      [18, -52],
+      [-56, -54],
+      [-54, -13],
+      [18, 54],
+      [-46, 94],
+      [-5, -91],
+      [-52, -46]
+    ],
+    [
+      [13070, 5314],
+      [-50, 138],
+      [3, 28],
+      [-57, 24],
+      [-50, 42],
+      [-75, -21],
+      [-32, 88],
+      [-9, 83],
+      [-99, 11],
+      [-6, 56],
+      [-43, 20],
+      [-15, 53],
+      [38, 62],
+      [73, 38],
+      [18, 51],
+      [45, 10],
+      [6, 88],
+      [-58, 42],
+      [-14, 38],
+      [22, 43],
+      [39, 22],
+      [32, 59],
+      [76, -21],
+      [63, -33],
+      [25, -55],
+      [62, 11],
+      [34, 32],
+      [47, 6],
+      [65, -139],
+      [59, -5],
+      [38, 28],
+      [24, -24],
+      [80, 99],
+      [54, 125],
+      [47, 70],
+      [-24, 71],
+      [36, 52],
+      [143, -19],
+      [40, 44],
+      [-9, 48],
+      [41, 32],
+      [-16, 29],
+      [29, 46],
+      [-4, 37],
+      [42, 35],
+      [21, 92],
+      [34, -2],
+      [32, 51],
+      [55, 35],
+      [-3, 42],
+      [-96, 88],
+      [35, 131],
+      [56, 15]
+    ],
+    [
+      [13924, 7210],
+      [64, -53],
+      [27, 0],
+      [57, -58],
+      [57, -15],
+      [98, -86],
+      [5, -42],
+      [116, 7]
+    ],
+    [
+      [17385, 2784],
+      [-56, 44],
+      [-34, 107],
+      [5, 46],
+      [-21, 40],
+      [27, 53],
+      [-21, 19],
+      [-12, 76],
+      [-25, 57],
+      [-37, 42],
+      [-12, 56],
+      [-84, -6],
+      [-40, 47],
+      [-79, 55],
+      [-58, 0],
+      [-16, 23],
+      [-60, 20]
+    ],
+    [
+      [16862, 3463],
+      [11, 77],
+      [-21, 66],
+      [62, 57],
+      [-7, 75],
+      [24, 44],
+      [0, 69],
+      [33, 40],
+      [0, 53],
+      [64, 28],
+      [51, 78],
+      [-15, 85],
+      [84, 128],
+      [-12, 80],
+      [-21, 41],
+      [13, 61],
+      [52, 71],
+      [107, 31],
+      [89, 132],
+      [-28, 125],
+      [-32, 13],
+      [2, 51],
+      [71, 12],
+      [39, 47],
+      [-5, 49],
+      [75, 33],
+      [106, -68],
+      [19, 48],
+      [57, 37],
+      [64, 20],
+      [22, 29],
+      [78, 15],
+      [34, 101]
+    ],
+    [
+      [17878, 5191],
+      [23, -26],
+      [49, 8],
+      [36, 27],
+      [44, -41],
+      [-5, -55],
+      [-32, -31],
+      [5, -43],
+      [41, -50],
+      [28, -119],
+      [-11, -59],
+      [17, -39],
+      [38, 20],
+      [45, -29],
+      [48, -10],
+      [52, 59],
+      [40, 2],
+      [32, 71],
+      [60, -83],
+      [15, -78],
+      [53, -32],
+      [51, 40],
+      [97, 27],
+      [41, -20],
+      [36, -116]
+    ],
+    [
+      [18681, 4614],
+      [-72, -66],
+      [-9, -56],
+      [-49, -5],
+      [-26, -50],
+      [27, -29],
+      [-5, -75],
+      [-58, -8],
+      [31, 77],
+      [-43, 6],
+      [-11, -56],
+      [-39, 30],
+      [-53, 5],
+      [-22, -46],
+      [43, -13],
+      [38, -71],
+      [-36, -17],
+      [44, -59],
+      [-46, -27],
+      [-81, -101],
+      [78, -36],
+      [-37, -62],
+      [-9, -104],
+      [-48, -24],
+      [9, -40],
+      [38, -17],
+      [-6, -51],
+      [-46, 13],
+      [-40, 36],
+      [-46, -23],
+      [-39, -44],
+      [85, -67],
+      [-38, -48],
+      [-51, -4],
+      [-26, 36],
+      [-92, -75],
+      [28, -67],
+      [-17, -33],
+      [-83, -50],
+      [45, -24],
+      [-35, -45],
+      [-9, -46],
+      [-72, 27],
+      [-116, -32],
+      [-8, 50],
+      [-32, -53],
+      [39, -17],
+      [-24, -54],
+      [-83, 26],
+      [-8, -41],
+      [61, 9],
+      [31, -71],
+      [-68, -36],
+      [-26, -53],
+      [-83, -46],
+      [6, -31],
+      [-33, -50],
+      [-25, 31],
+      [-47, -66],
+      [-69, -25],
+      [-33, -62]
+    ],
+    [
+      [9404, 12647],
+      [261, -574],
+      [-85, -82],
+      [12, -47],
+      [124, -156],
+      [147, -98],
+      [14, -39],
+      [-45, -159],
+      [151, 6],
+      [84, 101],
+      [133, 66],
+      [155, -8],
+      [48, 43],
+      [130, -13],
+      [41, -22],
+      [43, -71],
+      [7, -62],
+      [-89, -108],
+      [-45, -95],
+      [-115, -76],
+      [-63, -97],
+      [121, 5],
+      [105, -77],
+      [89, -25],
+      [33, -91],
+      [68, -17],
+      [-2, -41],
+      [135, 2],
+      [-3, -98],
+      [13, -54],
+      [59, -77],
+      [71, 5],
+      [56, -95],
+      [81, -29],
+      [34, -33],
+      [63, 2],
+      [122, 119],
+      [-106, 106],
+      [154, 35],
+      [102, 43],
+      [61, -37],
+      [161, -40],
+      [48, 53],
+      [91, 71],
+      [190, 58],
+      [42, 3],
+      [59, -24],
+      [-15, -62],
+      [61, -105],
+      [-12, -78],
+      [-57, -26],
+      [-62, -127],
+      [-183, -119],
+      [22, -34],
+      [28, -99],
+      [-72, -33],
+      [18, -123],
+      [104, -34],
+      [89, -100],
+      [114, -95],
+      [40, 11]
+    ],
+    [
+      [12234, 9896],
+      [78, 6],
+      [80, -17],
+      [11, -40],
+      [-43, -29],
+      [23, -37],
+      [57, 22],
+      [46, -75],
+      [50, -42],
+      [54, -16],
+      [4, -43],
+      [38, -17],
+      [20, -44],
+      [-50, -39],
+      [18, -86],
+      [45, -26],
+      [16, -63],
+      [30, -42],
+      [12, -74],
+      [-71, -64],
+      [4, -69],
+      [61, -83],
+      [70, 12],
+      [19, -50],
+      [42, -40],
+      [60, -17],
+      [48, -64],
+      [59, -3],
+      [3, -29],
+      [44, -60],
+      [47, 39],
+      [15, 65],
+      [-26, 44],
+      [14, 33],
+      [-16, 55],
+      [44, 25],
+      [80, -29],
+      [70, 62],
+      [-28, 46],
+      [32, 25],
+      [5, 76],
+      [-35, 55],
+      [-156, 49],
+      [19, 82],
+      [-28, 56],
+      [32, 87],
+      [51, 44],
+      [-31, 64],
+      [27, 53],
+      [-16, 33],
+      [78, 22],
+      [90, -20],
+      [54, 19],
+      [44, -35]
+    ],
+    [
+      [13428, 9717],
+      [10, -72],
+      [71, -17],
+      [27, -42],
+      [141, -34],
+      [24, -54],
+      [81, -48],
+      [71, -2],
+      [36, -63],
+      [75, -1],
+      [41, -43],
+      [-29, -46],
+      [25, -64],
+      [-26, -98],
+      [-56, -27],
+      [9, -133],
+      [35, -38],
+      [6, -74],
+      [-20, -57],
+      [-137, -22],
+      [-24, 23],
+      [-86, -35],
+      [-93, 31],
+      [-10, -56],
+      [18, -51],
+      [43, -46],
+      [-20, -25],
+      [-92, 8],
+      [-21, -32],
+      [-94, 12],
+      [-35, -26],
+      [-111, 109],
+      [-148, -4],
+      [-23, -75],
+      [25, -41],
+      [-1, -54],
+      [-92, -85],
+      [8, -36],
+      [49, 5],
+      [101, -81],
+      [-14, -58],
+      [-32, -5],
+      [-4, -56],
+      [-36, -19],
+      [-33, -119],
+      [25, -86],
+      [42, -60],
+      [-21, -45],
+      [-35, 57],
+      [-57, -5],
+      [-47, -29],
+      [-91, 32],
+      [-46, -61],
+      [-2, -41],
+      [-42, -10],
+      [6, -48],
+      [74, -55],
+      [-4, -95],
+      [-75, -52],
+      [-58, -15],
+      [-36, 16]
+    ],
+    [
+      [12720, 7569],
+      [-46, -15],
+      [27, -74],
+      [-122, -71],
+      [-44, 24],
+      [-59, -24],
+      [-14, 25],
+      [-82, 7],
+      [-58, 49],
+      [-79, 39],
+      [-6, 56],
+      [38, 28],
+      [-3, 65],
+      [-43, 140],
+      [-20, 7],
+      [-25, 71],
+      [6, 34],
+      [-47, 39],
+      [-113, -14],
+      [-70, 28],
+      [-21, -21],
+      [-43, 42],
+      [-33, -5],
+      [-79, 34],
+      [-12, 68],
+      [19, 78],
+      [-28, 46],
+      [-36, 0],
+      [-33, 65],
+      [-76, -21],
+      [-54, -63],
+      [-71, -31],
+      [-14, -58],
+      [-31, 10],
+      [-46, -39],
+      [58, -99],
+      [0, -56],
+      [40, -18],
+      [1, -65],
+      [-34, -32],
+      [-53, -4],
+      [-7, -78],
+      [-40, 18],
+      [-21, -40],
+      [-84, -3],
+      [-29, 30],
+      [42, 41],
+      [26, 63],
+      [-41, 87],
+      [-25, -34]
+    ],
+    [
+      [11235, 7898],
+      [-58, -24],
+      [-4, 55],
+      [-28, 44],
+      [-61, -23],
+      [-62, 17],
+      [-53, 90],
+      [-48, 24],
+      [-69, 127],
+      [-2, 78],
+      [39, 41],
+      [55, -28],
+      [47, -3],
+      [132, -63],
+      [49, -8],
+      [14, -32],
+      [99, 6],
+      [44, 27],
+      [27, 52],
+      [69, 37],
+      [-69, 95],
+      [-31, 0],
+      [-112, 83],
+      [78, 20],
+      [4, 53],
+      [32, 54],
+      [110, 55],
+      [41, 93],
+      [-38, 94],
+      [61, 9],
+      [36, 65],
+      [76, -19],
+      [14, 45],
+      [-29, 75],
+      [35, 51],
+      [73, 3],
+      [-9, 125],
+      [24, 81],
+      [-66, 46],
+      [-43, 134],
+      [-49, 46],
+      [51, 32],
+      [-70, 81],
+      [-31, 17],
+      [6, 65],
+      [43, 36],
+      [-92, 66],
+      [-30, 44],
+      [-110, 60],
+      [23, 39],
+      [-28, 25],
+      [-9, 73],
+      [-40, -31],
+      [-10, -78],
+      [-123, 61],
+      [-173, 144],
+      [-64, 37],
+      [-126, 48],
+      [-18, 77],
+      [-103, 36],
+      [-41, 67],
+      [-44, 20],
+      [-14, -41],
+      [31, -42],
+      [9, -47],
+      [-141, 68],
+      [-68, 41],
+      [-84, 80],
+      [-35, 59],
+      [-56, 36],
+      [-160, 152],
+      [-27, -3],
+      [-67, -74],
+      [-51, 9],
+      [-29, 40],
+      [-114, -110],
+      [-238, 135],
+      [-40, 35],
+      [-139, 32],
+      [-25, -19],
+      [2, -206],
+      [-22, -77],
+      [21, -16],
+      [-13, -130],
+      [-58, 9],
+      [-44, 34],
+      [-75, 22],
+      [3, 36],
+      [-83, 54],
+      [-46, -6],
+      [-80, 67],
+      [-41, 7],
+      [-49, 54],
+      [-33, 2],
+      [-170, 161],
+      [-43, -8],
+      [-95, 33],
+      [-74, -1],
+      [-41, 35],
+      [-137, 0],
+      [-163, -25],
+      [-108, 3],
+      [-144, -42],
+      [-107, -18],
+      [-12, 12]
+    ],
+    [
+      [7714, 10793],
+      [-9, 63],
+      [6, 85],
+      [-26, 45],
+      [-45, 172],
+      [61, 115],
+      [-1, 204],
+      [175, -14],
+      [117, 76],
+      [64, 132],
+      [108, 145],
+      [136, 121],
+      [104, 118],
+      [147, 77],
+      [196, 43],
+      [59, -17],
+      [73, 11],
+      [48, 26],
+      [26, 63],
+      [-12, 49],
+      [29, 252],
+      [107, 60]
+    ],
+    [
+      [9077, 12619],
+      [130, 13],
+      [96, -15],
+      [101, 30]
+    ],
+    [
+      [14418, 1727],
+      [-4, 29],
+      [63, 19],
+      [14, 87],
+      [140, 43],
+      [39, -9],
+      [-14, 103],
+      [34, 56],
+      [80, -27],
+      [35, 75],
+      [-5, 73],
+      [20, 72],
+      [117, 40],
+      [24, 46],
+      [40, 3],
+      [56, 74],
+      [29, 75],
+      [-21, 29],
+      [-9, 99],
+      [14, 83],
+      [28, 34],
+      [17, 64],
+      [45, 3],
+      [12, 90],
+      [66, 1],
+      [0, 35],
+      [46, 41],
+      [-20, 62],
+      [0, 72],
+      [57, 34],
+      [17, 36],
+      [-31, 56],
+      [7, 39],
+      [-30, 42],
+      [37, 56]
+    ],
+    [
+      [15321, 3362],
+      [60, 88],
+      [-9, 54],
+      [14, 83],
+      [85, -18],
+      [105, -7],
+      [48, -119],
+      [90, 17],
+      [-15, 119],
+      [5, 48],
+      [-45, -4],
+      [-4, 42],
+      [65, 10],
+      [56, 72],
+      [56, 4],
+      [28, -49],
+      [68, -18],
+      [19, -22],
+      [68, 19],
+      [23, -16],
+      [32, 57],
+      [27, 9]
+    ],
+    [
+      [16097, 3731],
+      [63, -74],
+      [45, -12],
+      [62, 15],
+      [58, 51],
+      [80, -93],
+      [-35, -82],
+      [-101, -65],
+      [2, -38],
+      [-48, -87],
+      [-42, -18],
+      [73, -44],
+      [29, -52],
+      [41, 34],
+      [61, -9],
+      [42, 37],
+      [34, -22],
+      [25, 43],
+      [41, 25],
+      [27, -17],
+      [42, 31],
+      [80, 29],
+      [25, -11],
+      [35, -68],
+      [44, -15],
+      [20, -31],
+      [44, 14],
+      [-28, 52],
+      [0, 68],
+      [20, 54],
+      [26, 17]
+    ],
+    [
+      [17385, 2784],
+      [-42, -37],
+      [-74, -1],
+      [-19, -65],
+      [-40, -39],
+      [9, -44],
+      [-68, -32],
+      [-28, -37],
+      [13, -53],
+      [-43, -36],
+      [-76, 0],
+      [-40, -45],
+      [-115, -34],
+      [-85, 42],
+      [-59, -63],
+      [-50, -33],
+      [-64, 72],
+      [-115, -32],
+      [10, -47],
+      [-33, -40],
+      [-53, -1],
+      [-15, 102],
+      [-53, -28],
+      [-14, -88],
+      [27, -35],
+      [-53, -17],
+      [-22, 68],
+      [-45, -1],
+      [-108, -49],
+      [-77, 29],
+      [-37, 91],
+      [-78, -1],
+      [33, -49],
+      [-39, -110],
+      [21, -51],
+      [-19, -58],
+      [-13, -23],
+      [-56, -19],
+      [9, -64],
+      [-73, -9],
+      [-84, 54],
+      [-2, -83],
+      [-41, -42],
+      [-29, 48],
+      [-31, -13],
+      [-63, -83],
+      [-65, 30],
+      [-11, -43],
+      [-55, -17],
+      [-57, 50],
+      [-82, -54],
+      [-51, 10],
+      [-9, -49],
+      [-56, -39],
+      [-57, -19],
+      [-86, -4],
+      [-93, -24],
+      [-57, -33],
+      [-48, 4],
+      [-55, -87],
+      [-86, -18],
+      [-35, -45],
+      [80, -60],
+      [-72, 4],
+      [-72, -38],
+      [14, -39],
+      [73, -14],
+      [8, -84],
+      [24, 9],
+      [26, -99],
+      [-36, -77],
+      [-63, -40],
+      [-62, -7],
+      [-28, 27],
+      [-43, -19],
+      [-18, 91],
+      [-34, 41],
+      [-25, 126],
+      [-33, 58],
+      [15, 99],
+      [-15, 29],
+      [38, 48],
+      [1, 58],
+      [50, 26],
+      [-58, 98]
+    ],
+    [
+      [14418, 1727],
+      [-67, 9],
+      [-16, -39],
+      [-50, -27],
+      [-104, -27],
+      [-46, 26],
+      [50, 39],
+      [-50, 43],
+      [-52, -1],
+      [-25, 39],
+      [-44, -40],
+      [-14, 44],
+      [-52, -5],
+      [-23, -50],
+      [-49, -17],
+      [-37, 23],
+      [-45, -5],
+      [-21, -36],
+      [-67, 9],
+      [-35, 53],
+      [-39, 9],
+      [-42, -24],
+      [-117, -7],
+      [-32, 74],
+      [-25, -18],
+      [-62, 54],
+      [-10, 62],
+      [-40, -5],
+      [-16, 27],
+      [-43, 0],
+      [-42, 26],
+      [-14, 82],
+      [13, 23],
+      [-21, 58],
+      [-37, 55],
+      [21, 81],
+      [49, -7],
+      [16, 116],
+      [-70, 60],
+      [-101, -39],
+      [-59, 69],
+      [-78, 1],
+      [-32, -22],
+      [-47, 22],
+      [-35, 37],
+      [-56, 2],
+      [-15, 65]
+    ],
+    [
+      [12737, 2566],
+      [19, 62],
+      [39, 30],
+      [51, 68],
+      [31, 12],
+      [68, -19],
+      [51, 179],
+      [-75, 151],
+      [-37, -7],
+      [-27, -45],
+      [-31, 23],
+      [-47, -8],
+      [-9, 38],
+      [-36, -1],
+      [-15, -53],
+      [-33, 6],
+      [-37, 41],
+      [-26, -23],
+      [-24, 131],
+      [-61, 59],
+      [-25, -15],
+      [-85, 23],
+      [-18, -61],
+      [-44, 20],
+      [-43, 108],
+      [12, 74]
+    ],
+    [
+      [12335, 3359],
+      [73, -57],
+      [51, 30],
+      [13, 33],
+      [63, 27],
+      [3, 43],
+      [67, 60],
+      [25, -33],
+      [61, 1],
+      [33, -65],
+      [36, 0],
+      [71, -48],
+      [65, 5],
+      [23, -40],
+      [71, 63],
+      [10, 37],
+      [-21, 55],
+      [62, 16],
+      [111, 56],
+      [25, 39],
+      [101, 16],
+      [45, 42],
+      [-19, 72],
+      [40, 74],
+      [45, 10],
+      [62, -41],
+      [-3, -44],
+      [38, -10],
+      [5, -54],
+      [30, -37],
+      [41, 27],
+      [81, -71],
+      [128, 53],
+      [4, 79],
+      [38, 19],
+      [29, 53],
+      [66, -38],
+      [58, -62],
+      [-8, 71],
+      [26, 58],
+      [108, -15],
+      [37, -20],
+      [3, 73],
+      [26, 76],
+      [53, -43],
+      [30, 24],
+      [68, 135]
+    ],
+    [
+      [14309, 4028],
+      [91, -13],
+      [-20, -64],
+      [66, 16],
+      [-17, 44],
+      [35, 19],
+      [36, 81],
+      [52, -27],
+      [4, -61],
+      [93, -15],
+      [17, 53],
+      [77, 86],
+      [17, 37],
+      [59, -43],
+      [70, 20],
+      [22, 22],
+      [69, -14],
+      [39, -49],
+      [-5, -75],
+      [-18, -26],
+      [6, -61],
+      [85, -9],
+      [-7, -56],
+      [-39, -21],
+      [8, -62],
+      [-19, -89],
+      [-77, -80],
+      [-37, -59],
+      [-23, -67],
+      [20, -59],
+      [40, 11],
+      [0, 43],
+      [71, 61],
+      [64, -23],
+      [12, -39],
+      [-7, -85],
+      [12, -31],
+      [-20, -61],
+      [55, -21],
+      [49, 72],
+      [32, 4],
+      [100, -25]
+    ],
+    [
+      [14226, 5300],
+      [-1, -95],
+      [44, -27],
+      [-31, -98],
+      [27, -27],
+      [-28, -34],
+      [27, -111],
+      [25, 1],
+      [10, -85],
+      [-85, -81],
+      [-35, 12],
+      [-38, -77],
+      [-63, -40],
+      [5, -28],
+      [-33, -53],
+      [18, -31],
+      [95, 64],
+      [21, -25],
+      [38, 30],
+      [51, 16],
+      [48, -46],
+      [17, -65],
+      [-23, -64],
+      [-57, -67],
+      [10, -119],
+      [-42, -75],
+      [25, -25],
+      [37, 12],
+      [28, -76],
+      [-7, -58]
+    ],
+    [
+      [12335, 3359],
+      [6, 48],
+      [65, 88],
+      [-18, 38],
+      [35, 75],
+      [-40, 42],
+      [-4, 30],
+      [-40, 28],
+      [7, 58],
+      [-50, -2],
+      [-4, 32],
+      [-46, 39],
+      [39, 75],
+      [24, 111],
+      [23, 48],
+      [6, 72],
+      [56, 64],
+      [-50, 110],
+      [-28, -4],
+      [-26, 66],
+      [-45, -48],
+      [-71, 15],
+      [-48, -66],
+      [-78, 10],
+      [-27, 50],
+      [9, 52],
+      [-26, 44],
+      [24, 24],
+      [-3, 48],
+      [-48, 81],
+      [28, 11],
+      [50, 65],
+      [39, 90],
+      [101, -87],
+      [30, 21],
+      [34, 76],
+      [59, -25],
+      [50, -52],
+      [48, 17],
+      [52, -26],
+      [83, 65],
+      [64, 6],
+      [5, 66],
+      [22, 77]
+    ],
+    [
+      [12642, 4891],
+      [73, 35],
+      [55, -57],
+      [57, 28],
+      [169, 19],
+      [58, 37],
+      [-6, 75],
+      [-24, 54],
+      [-45, 45],
+      [-68, -26],
+      [-39, 6],
+      [3, 58],
+      [-42, 48],
+      [-27, -30],
+      [-30, 22],
+      [-1, 106],
+      [41, 46],
+      [53, -12],
+      [38, 83],
+      [55, -60],
+      [73, -49],
+      [35, -5]
+    ],
+    [
+      [14792, 1005],
+      [40, -79],
+      [60, -4],
+      [22, -92],
+      [-5, -93],
+      [-88, -111],
+      [-36, -23],
+      [-34, -115],
+      [-8, -58],
+      [-21, -39],
+      [7, -91],
+      [-41, -56],
+      [-69, -14],
+      [-62, -66],
+      [-20, -74],
+      [-56, 15],
+      [-59, -14],
+      [-14, -80],
+      [-77, -11],
+      [-25, 34],
+      [-58, 15],
+      [-68, -7],
+      [-20, 36],
+      [-46, -3],
+      [-62, 54],
+      [-59, 23],
+      [4, 117],
+      [-29, 56],
+      [14, 48],
+      [-18, 84],
+      [26, 43],
+      [-18, 56],
+      [20, 42],
+      [38, 12],
+      [91, 97],
+      [69, 36],
+      [-8, 68],
+      [39, 40],
+      [103, 21],
+      [24, 38],
+      [55, 17],
+      [18, -24],
+      [73, 15],
+      [19, -31],
+      [55, 35],
+      [103, 40],
+      [50, -32],
+      [71, 75]
+    ],
+    [
+      [17388, 11263],
+      [-25, -83],
+      [36, -34],
+      [-24, -30],
+      [-4, -88],
+      [-71, 8],
+      [-32, 28]
+    ],
+    [
+      [18201, 11896],
+      [-20, -62],
+      [-118, -125],
+      [-20, -75],
+      [61, -58],
+      [59, -30],
+      [63, -54],
+      [96, 11],
+      [25, -49],
+      [-7, -41],
+      [26, -81],
+      [37, -13],
+      [27, -110]
+    ],
+    [
+      [18430, 11209],
+      [-89, -33],
+      [-95, -99],
+      [-35, -115],
+      [19, -40],
+      [-47, -33],
+      [-74, -83],
+      [-77, -27],
+      [-71, 12],
+      [-118, -73],
+      [-51, 23],
+      [-25, 52],
+      [-53, 24]
+    ],
+    [
+      [17714, 10817],
+      [-1, 74],
+      [-56, 45],
+      [24, 68],
+      [-94, 0],
+      [-46, 76],
+      [-26, 81],
+      [13, 52],
+      [103, -1],
+      [-24, 46],
+      [-41, 13],
+      [-33, 59],
+      [-71, 7]
+    ],
+    [
+      [17230, 11019],
+      [-1, -78],
+      [34, -57],
+      [-7, -94],
+      [15, -52],
+      [-58, -19],
+      [-21, -55],
+      [19, -93],
+      [66, -25],
+      [41, 6],
+      [33, -60],
+      [41, 21],
+      [26, -30],
+      [117, 45]
+    ],
+    [
+      [17535, 10528],
+      [52, -141],
+      [65, -59],
+      [6, -3],
+      [0, -3]
+    ],
+    [
+      [17658, 10322],
+      [-68, -92],
+      [-51, -5],
+      [-50, -104],
+      [-17, -11],
+      [-204, 0],
+      [-40, -7],
+      [-75, -105],
+      [-70, -81],
+      [-82, 1],
+      [-26, -48],
+      [-70, -22],
+      [-48, -135],
+      [-72, -131],
+      [-75, -26],
+      [-64, -80],
+      [-23, -61],
+      [34, -79],
+      [40, -43],
+      [4, -46]
+    ],
+    [
+      [16701, 9247],
+      [-46, -38],
+      [-41, 42],
+      [-54, 18],
+      [-46, -72],
+      [-46, 33],
+      [-124, -5],
+      [-103, 62],
+      [-109, 17],
+      [-57, 37],
+      [-72, 5]
+    ],
+    [
+      [16003, 9346],
+      [-9, 32],
+      [-45, 18],
+      [-3, 47],
+      [-40, 44],
+      [5, 54],
+      [62, 24],
+      [8, 36],
+      [47, 20],
+      [-14, 93],
+      [58, 121],
+      [23, 20],
+      [63, 124],
+      [4, 55],
+      [-63, 70],
+      [-35, 114],
+      [-69, 81],
+      [-56, 13],
+      [-18, 75],
+      [23, 43],
+      [-8, 47],
+      [20, 45],
+      [65, 33],
+      [32, 62],
+      [-35, 67],
+      [52, 55],
+      [61, 35],
+      [23, -43],
+      [102, 27],
+      [23, 105],
+      [52, 124],
+      [-58, 53],
+      [-6, 112],
+      [-32, -6],
+      [-101, 37],
+      [-14, 33],
+      [28, 55],
+      [-12, 33],
+      [162, 53],
+      [24, 40],
+      [-86, 13],
+      [-18, 60],
+      [5, 53],
+      [-34, 21],
+      [-25, 55]
+    ],
+    [
+      [16164, 11599],
+      [-64, 126],
+      [-42, 45],
+      [21, 53],
+      [6, 110],
+      [-26, 27],
+      [60, 41],
+      [54, 4],
+      [33, 58],
+      [-11, 83],
+      [50, 63],
+      [65, 26],
+      [-9, 40],
+      [33, 42],
+      [86, -11],
+      [50, -61],
+      [18, -88],
+      [-20, -28],
+      [0, -67],
+      [130, -29],
+      [57, 17],
+      [-15, 45],
+      [41, 14],
+      [152, 95],
+      [42, 17],
+      [34, -66],
+      [78, 24],
+      [52, 73],
+      [83, -35],
+      [72, 3],
+      [66, 38],
+      [9, 192],
+      [47, 34],
+      [155, 10],
+      [26, 56],
+      [83, -2],
+      [39, 19],
+      [97, -120],
+      [33, -110],
+      [-4, -34],
+      [84, -65],
+      [11, -60],
+      [-17, -46],
+      [-50, 21],
+      [-14, -37],
+      [87, -206],
+      [168, 6],
+      [48, -27],
+      [124, -10],
+      [15, 17]
+    ],
+    [
+      [23006, 13011],
+      [-45, -20],
+      [-67, 30],
+      [-47, -32],
+      [-56, 60],
+      [-88, 39],
+      [-74, 165],
+      [-131, -35],
+      [-2, 59],
+      [-55, 8],
+      [-81, -74],
+      [-77, 1],
+      [-27, -28],
+      [-66, -4],
+      [-11, -119],
+      [-80, -29],
+      [-61, 21],
+      [-46, 122],
+      [-32, 45],
+      [-55, 121],
+      [-21, 20],
+      [1, 111],
+      [-42, 70],
+      [-60, -41],
+      [-21, -47],
+      [-43, 6],
+      [19, -71],
+      [-20, -53],
+      [-74, -24],
+      [-50, 15],
+      [-46, 47],
+      [-3, 47],
+      [-56, 66],
+      [-10, 106],
+      [-94, 13],
+      [-75, -22],
+      [4, 59],
+      [-21, 36],
+      [6, 53],
+      [33, 37],
+      [-47, 63],
+      [-143, 83],
+      [-83, -9],
+      [-63, -41],
+      [-89, 8],
+      [-45, 20],
+      [-82, 74],
+      [-7, 89],
+      [-110, -39],
+      [-134, -22],
+      [-12, 52],
+      [-67, -26],
+      [-48, 10],
+      [-84, -27],
+      [-60, 16],
+      [-20, 55],
+      [-51, 43],
+      [-33, 1],
+      [-71, 162],
+      [32, 36],
+      [-58, 148],
+      [-65, -25],
+      [-87, 0],
+      [-56, -17],
+      [-77, 14]
+    ],
+    [
+      [19772, 14437],
+      [-63, 88],
+      [-3, 80],
+      [103, 20],
+      [35, 32],
+      [95, 6],
+      [14, 60],
+      [-108, 30],
+      [-59, -9],
+      [-19, -52],
+      [-52, -9],
+      [-55, 47],
+      [0, 69],
+      [-19, 53],
+      [-95, 36],
+      [-86, 114],
+      [43, 32],
+      [21, 59],
+      [108, 71],
+      [152, 82],
+      [36, 69],
+      [113, 46],
+      [72, 84],
+      [127, 116],
+      [78, 51],
+      [15, -85],
+      [79, -124],
+      [27, 69],
+      [-24, 76],
+      [1, 74],
+      [39, 66],
+      [13, 75],
+      [95, 183],
+      [107, -18],
+      [46, 111],
+      [-20, 65],
+      [-9, 130],
+      [32, 200],
+      [67, 44],
+      [-1, 28],
+      [78, 95],
+      [74, 50],
+      [-12, 97],
+      [110, 115],
+      [-36, 71],
+      [-51, 58],
+      [-38, 8],
+      [-24, 54],
+      [-139, 151],
+      [-86, 5],
+      [-35, -54],
+      [-45, -15],
+      [-28, -62],
+      [-68, -24],
+      [-81, 24],
+      [-34, -56],
+      [-66, 38],
+      [-140, -13],
+      [-71, 41],
+      [-27, -41],
+      [-141, -35],
+      [-126, 43],
+      [-48, 74],
+      [1, 66],
+      [-43, 71],
+      [-9, 121],
+      [-38, 81],
+      [56, 21],
+      [-3, 46],
+      [-71, 0],
+      [-97, 75],
+      [-13, 32],
+      [-70, 1],
+      [-75, -92],
+      [-93, 10],
+      [-29, 65],
+      [-46, 6],
+      [-130, 76],
+      [68, 41],
+      [100, 88],
+      [38, 74],
+      [40, 35],
+      [-65, 60],
+      [10, 29],
+      [-73, 49],
+      [81, 29]
+    ],
+    [
+      [19182, 18114],
+      [153, 17],
+      [102, 39],
+      [45, -28],
+      [156, 5],
+      [169, 56],
+      [105, -4],
+      [129, -33],
+      [108, -75],
+      [52, 11],
+      [52, -61],
+      [62, -26],
+      [53, 2],
+      [68, -34],
+      [59, 30],
+      [82, 0],
+      [117, -52],
+      [39, -5],
+      [63, -50],
+      [-29, -35],
+      [74, -29],
+      [197, -239],
+      [-16, -89],
+      [99, -48],
+      [-33, -100],
+      [37, -41],
+      [108, -170],
+      [-19, -44],
+      [78, -68],
+      [-33, -62],
+      [10, -67],
+      [76, -64],
+      [99, -180],
+      [-29, -55],
+      [29, -38],
+      [3, -57],
+      [81, -26],
+      [9, -36],
+      [-37, -57],
+      [6, -117],
+      [53, -29],
+      [14, -54],
+      [47, -42],
+      [64, 10],
+      [41, -35],
+      [78, -22],
+      [53, 46],
+      [57, 6],
+      [69, -19],
+      [26, -48],
+      [88, -11],
+      [49, -52],
+      [35, 26],
+      [45, -23],
+      [26, 40],
+      [55, -10],
+      [10, -58],
+      [49, -5],
+      [70, -63],
+      [25, -59],
+      [140, -99],
+      [74, 20],
+      [77, -44],
+      [-44, -91],
+      [30, -63],
+      [48, -5],
+      [18, -78],
+      [24, -28],
+      [-70, -98],
+      [13, -36],
+      [72, -55],
+      [35, -59],
+      [1, -51],
+      [56, -20],
+      [63, 27],
+      [99, -3],
+      [31, -34],
+      [41, 23],
+      [49, -19],
+      [176, 19],
+      [52, 25],
+      [52, -22],
+      [74, 125],
+      [38, -14],
+      [36, 37],
+      [52, 10],
+      [61, 45],
+      [78, -1],
+      [45, -19],
+      [133, 68],
+      [102, 70],
+      [132, 26],
+      [75, -11],
+      [38, -103],
+      [-48, -72],
+      [15, -60],
+      [73, -79],
+      [-41, -88],
+      [-70, -72],
+      [-64, -4],
+      [-58, -54],
+      [-15, -37],
+      [29, -40],
+      [-35, -48],
+      [-46, -137],
+      [-2, -86],
+      [-41, -38],
+      [-24, -62],
+      [23, -98],
+      [-24, -36],
+      [-60, -22],
+      [14, -57],
+      [-31, -56],
+      [-77, -56],
+      [5, -90],
+      [-53, -55],
+      [-51, -20],
+      [-33, -46],
+      [-15, -68],
+      [16, -83],
+      [-65, -55],
+      [-48, 18],
+      [-62, -188],
+      [-54, -69],
+      [-98, 31],
+      [-81, 64],
+      [28, 111],
+      [-49, 144],
+      [-93, 38],
+      [-56, -101],
+      [-86, -79],
+      [-50, 11],
+      [-30, -30],
+      [-53, 7],
+      [-70, -61],
+      [56, -65],
+      [76, -315],
+      [-36, -132],
+      [10, -116],
+      [19, -62]
+    ],
+    [
+      [16701, 9247],
+      [-13, -80],
+      [-35, -22],
+      [-8, -86],
+      [188, 106],
+      [85, 28],
+      [9, -48],
+      [-49, 0],
+      [-60, -55],
+      [-42, -62],
+      [-66, -7],
+      [-35, -43],
+      [-24, -72],
+      [-53, -46],
+      [-18, 15],
+      [-60, -37],
+      [-9, -44],
+      [-62, -57],
+      [15, -89],
+      [93, 3],
+      [32, -44],
+      [93, -67],
+      [5, -62],
+      [37, -50],
+      [56, -9],
+      [169, 24],
+      [36, -14]
+    ],
+    [
+      [16658, 6794],
+      [-65, 18],
+      [11, 58],
+      [-39, 28],
+      [-32, -50],
+      [-89, -25],
+      [-115, 80],
+      [16, 72],
+      [-62, -11],
+      [-57, 12],
+      [-48, 49],
+      [-73, -50],
+      [-13, 54],
+      [-42, -6],
+      [-43, 206],
+      [10, 64],
+      [-39, 24],
+      [-35, -41],
+      [-62, -34],
+      [-28, 12],
+      [-53, 65],
+      [-30, -22],
+      [-114, 8],
+      [-35, -24],
+      [-89, 28],
+      [-42, -26],
+      [-114, 16],
+      [-82, 69],
+      [-25, -7],
+      [-67, 52],
+      [-58, -6],
+      [-50, 64],
+      [-29, 57],
+      [-49, 29],
+      [-7, 80],
+      [-102, 112]
+    ],
+    [
+      [14907, 7749],
+      [17, 60],
+      [-9, 107],
+      [-68, 47],
+      [-22, 65],
+      [-73, 45],
+      [33, 34],
+      [-35, 76],
+      [22, 32],
+      [-87, 60],
+      [30, 29],
+      [-56, 96],
+      [10, 42]
+    ],
+    [
+      [14669, 8442],
+      [120, -6],
+      [28, 32],
+      [58, 3],
+      [101, 76],
+      [28, -9],
+      [139, 30],
+      [47, 73],
+      [55, 42],
+      [90, -12],
+      [9, 92],
+      [144, 1],
+      [134, -11],
+      [58, 20],
+      [44, 59],
+      [33, -15],
+      [38, 56],
+      [115, 45],
+      [26, 61],
+      [5, 87],
+      [33, 10],
+      [3, 146],
+      [26, 124]
+    ],
+    [
+      [16963, 5980],
+      [-35, -38],
+      [-66, -8],
+      [-75, 60],
+      [-73, -5],
+      [-41, -79],
+      [-101, -14],
+      [-1, -76],
+      [-57, 30],
+      [-56, -45],
+      [0, -40],
+      [-44, -19],
+      [-39, 14],
+      [-57, -36],
+      [-90, 20],
+      [-18, -66],
+      [-69, -12],
+      [-52, -86]
+    ],
+    [
+      [16089, 5580],
+      [-49, 30],
+      [-36, -16],
+      [-51, 93],
+      [23, 65],
+      [35, 36],
+      [-29, 33],
+      [24, 33],
+      [-39, 46],
+      [-36, 7],
+      [5, 70],
+      [-47, -28],
+      [-91, -117],
+      [-27, -45],
+      [-43, 31],
+      [-38, -18],
+      [-15, 161],
+      [-40, -24],
+      [-49, -74],
+      [-94, 20],
+      [-32, -50],
+      [-116, 102],
+      [-115, 90],
+      [-96, -9],
+      [-63, 13],
+      [-62, 65],
+      [-122, 11],
+      [-42, 31],
+      [-118, -33],
+      [-9, -76],
+      [43, -41],
+      [10, -37],
+      [-103, -64],
+      [-107, 78],
+      [-97, -7],
+      [-83, -92],
+      [-55, 12],
+      [-60, -100],
+      [-15, -81],
+      [-29, -20],
+      [-12, -56]
+    ],
+    [
+      [14348, 6963],
+      [20, 119],
+      [-4, 75],
+      [-50, 99],
+      [2, 41],
+      [52, 114],
+      [112, -4],
+      [46, -23],
+      [71, 41],
+      [-25, 90],
+      [-46, 35],
+      [-105, 19],
+      [12, 82],
+      [-42, 25],
+      [-45, -3],
+      [-55, 22],
+      [30, 44],
+      [132, 5],
+      [74, -29],
+      [54, 9],
+      [21, -24],
+      [97, 10],
+      [140, -18],
+      [68, 57]
+    ],
+    [
+      [16089, 5580],
+      [5, -40],
+      [42, -60],
+      [35, -17],
+      [-11, -114],
+      [36, -66],
+      [17, -71],
+      [-68, -77],
+      [-18, -49],
+      [-46, -45],
+      [-48, -11],
+      [-29, -49],
+      [12, -42],
+      [-62, -89],
+      [-9, -52],
+      [13, -93],
+      [33, -7],
+      [69, 28],
+      [-10, -84],
+      [-27, -44],
+      [15, -46],
+      [42, -46],
+      [-33, -82],
+      [27, -93],
+      [86, -15],
+      [-14, -92],
+      [-47, -88],
+      [30, -27],
+      [51, 11],
+      [11, -43],
+      [-62, -27],
+      [-6, -77],
+      [-46, -102],
+      [31, -90],
+      [-11, -50]
+    ],
+    [
+      [18222, 8692],
+      [-24, -17],
+      [-21, -103],
+      [47, -57],
+      [62, -2],
+      [2, -35],
+      [132, -106],
+      [64, -12],
+      [128, -71],
+      [26, -96],
+      [61, -156],
+      [19, -21],
+      [54, -138],
+      [-15, -54],
+      [32, -20],
+      [47, -112],
+      [1, -55],
+      [28, -19],
+      [7, -65],
+      [-23, -58],
+      [19, -77],
+      [32, -33],
+      [132, -63],
+      [31, -26],
+      [-4, -99],
+      [20, -33],
+      [90, -31],
+      [76, -76],
+      [32, -96],
+      [-23, -23],
+      [-97, 27],
+      [-120, 73],
+      [-24, 1],
+      [-68, -50],
+      [-5, -31],
+      [38, -30],
+      [58, -82]
+    ],
+    [
+      [19036, 6846],
+      [-47, -16],
+      [-34, -87],
+      [-26, -23],
+      [-7, -63],
+      [-64, -1],
+      [6, -64]
+    ],
+    [
+      [18864, 6592],
+      [-77, -20],
+      [2, -38],
+      [-50, -21],
+      [-30, -47],
+      [-29, 69],
+      [-29, 26],
+      [-84, -8],
+      [-63, 46],
+      [-33, 77],
+      [-50, 3],
+      [-61, -22]
+    ],
+    [
+      [17058, 8460],
+      [16, 113],
+      [21, 20],
+      [127, 23],
+      [73, -34],
+      [64, -122],
+      [18, -81],
+      [29, -13],
+      [45, 70],
+      [51, -58],
+      [30, -7],
+      [49, 40],
+      [46, -12],
+      [8, 68],
+      [60, 11],
+      [52, -14],
+      [-7, -35],
+      [34, -96],
+      [95, 23],
+      [24, 123],
+      [101, 43],
+      [82, 155],
+      [78, 0],
+      [68, 15]
+    ],
+    [
+      [17785, 5759],
+      [6, -23],
+      [-68, -72],
+      [4, -60],
+      [21, -52],
+      [33, -6],
+      [72, -87],
+      [29, -71],
+      [-10, -51],
+      [23, -51],
+      [-17, -95]
+    ],
+    [
+      [23006, 13011],
+      [12, -44],
+      [-46, -99],
+      [6, -29],
+      [-43, -64],
+      [12, -46],
+      [-39, -35],
+      [-96, 1],
+      [-98, -29],
+      [-5, -57],
+      [37, -39],
+      [-5, -33],
+      [-78, 6],
+      [-67, 73],
+      [7, 90],
+      [-59, 9],
+      [-19, 34],
+      [-69, 17],
+      [-54, -150],
+      [-8, -127],
+      [-86, -40],
+      [-32, 28],
+      [-84, -35],
+      [-38, -118],
+      [-74, -35],
+      [-4, -30],
+      [-80, 13],
+      [-68, -23],
+      [-113, 19],
+      [-90, -36],
+      [9, -78],
+      [23, -46],
+      [61, -47],
+      [6, -26],
+      [-44, -89],
+      [-40, -24],
+      [-41, 34],
+      [-153, -2],
+      [-83, 15],
+      [-99, 43],
+      [-46, 105],
+      [-40, 24],
+      [-75, -32],
+      [-58, -43],
+      [-66, -149],
+      [-55, -67],
+      [-8, -33],
+      [-51, -39],
+      [-61, -99],
+      [-38, 1]
+    ],
+    [
+      [20866, 11680],
+      [-50, 5],
+      [-32, -19],
+      [-14, 58],
+      [46, 93],
+      [-61, 90],
+      [-78, 137],
+      [3, 36],
+      [-52, 7],
+      [-13, 80],
+      [13, 69],
+      [65, 85],
+      [-58, 5],
+      [-28, 60],
+      [-43, 43],
+      [4, 42],
+      [-37, 35],
+      [-35, 141],
+      [-57, 47],
+      [8, 59],
+      [-32, 69],
+      [-106, -126],
+      [-60, 20],
+      [-14, 46],
+      [32, 42],
+      [-50, 43],
+      [-3, 28],
+      [-105, 36],
+      [-102, 97],
+      [-25, -52]
+    ],
+    [
+      [19982, 12956],
+      [-44, 0],
+      [-43, 50],
+      [-64, 14],
+      [2, 32],
+      [72, 18],
+      [10, 37],
+      [-22, 99],
+      [-52, 85],
+      [15, 70],
+      [-36, 19],
+      [-68, 117],
+      [-38, 42],
+      [-68, -55],
+      [-169, -89],
+      [-68, 22],
+      [10, 105],
+      [-77, 86],
+      [-5, 140],
+      [15, 128],
+      [46, 33],
+      [-37, 40],
+      [9, 67],
+      [-59, 30],
+      [-27, 112],
+      [-67, -11],
+      [-44, 17],
+      [55, 83],
+      [7, 73],
+      [98, -50],
+      [70, -62],
+      [49, 55],
+      [48, -29],
+      [27, -47],
+      [65, -25],
+      [30, 30],
+      [11, 58],
+      [-17, 94],
+      [103, 16],
+      [53, 77]
+    ],
+    [
+      [18201, 11896],
+      [65, 82],
+      [-37, 99],
+      [-8, 62],
+      [12, 93],
+      [24, 64],
+      [-58, 58],
+      [20, 34],
+      [103, 45],
+      [26, -52],
+      [96, -21],
+      [-1, -61],
+      [112, -167],
+      [84, 107],
+      [57, 23],
+      [-5, 41],
+      [111, 61],
+      [72, 26],
+      [42, -13],
+      [96, 66],
+      [54, 55],
+      [74, 17],
+      [28, -41],
+      [80, 54],
+      [30, 74],
+      [109, 20],
+      [50, -26],
+      [88, 78],
+      [27, -26],
+      [177, 0],
+      [44, 42],
+      [31, 71],
+      [73, 23],
+      [49, -16],
+      [27, 37],
+      [29, 151]
+    ],
+    [
+      [20866, 11680],
+      [-55, -3],
+      [-86, -63],
+      [-42, -50],
+      [-105, -31],
+      [-121, -71],
+      [-200, -179],
+      [-18, -73],
+      [-55, -62],
+      [-79, -31],
+      [-53, 28],
+      [-85, 1],
+      [-99, -65],
+      [0, 40],
+      [-59, -10],
+      [0, -41],
+      [-47, -23],
+      [-46, 7],
+      [-145, -78],
+      [-38, -32],
+      [-56, 2],
+      [-73, -65],
+      [-3, -31],
+      [-59, -45],
+      [-55, -81],
+      [-86, 1],
+      [-106, -114],
+      [-51, 4],
+      [-59, -53],
+      [-25, 2],
+      [-16, 104],
+      [44, 2],
+      [45, 36],
+      [136, 39],
+      [-19, 65],
+      [59, 55],
+      [-16, 67],
+      [-50, -4],
+      [-23, -28],
+      [-38, 66],
+      [-48, 45],
+      [80, 19],
+      [-26, 58],
+      [6, 33],
+      [92, 62],
+      [27, -8],
+      [134, 169],
+      [-6, 27],
+      [84, 93],
+      [-59, 65],
+      [2, 41],
+      [-115, 69],
+      [-55, 16],
+      [-70, -2],
+      [-24, 23],
+      [-129, 19],
+      [-96, -77],
+      [2, -42],
+      [-43, -7],
+      [-62, -72],
+      [-70, -110],
+      [-22, -66],
+      [-51, -5],
+      [-65, -39],
+      [-85, -29],
+      [-53, -39]
+    ],
+    [
+      [16164, 11599],
+      [-28, -16],
+      [-1, -91],
+      [-84, -35],
+      [-24, 21],
+      [-92, -79],
+      [-95, -16],
+      [-26, 48],
+      [-143, -42],
+      [-21, -65],
+      [-47, -18],
+      [-109, 68],
+      [-58, -25],
+      [-133, -234],
+      [-17, -91],
+      [-66, -15],
+      [-110, 35],
+      [-62, -123],
+      [-48, 5],
+      [-30, -32]
+    ],
+    [
+      [14970, 10894],
+      [-30, 21],
+      [28, 59],
+      [-41, 22],
+      [-66, -39],
+      [-98, -124],
+      [-34, 65],
+      [-59, -32],
+      [-61, 69],
+      [-46, -5],
+      [38, -79],
+      [-80, -36],
+      [-64, -64],
+      [-54, -12],
+      [-16, -69],
+      [-101, -66],
+      [-13, -48],
+      [-96, -80],
+      [-71, -112],
+      [-11, -88],
+      [45, -44],
+      [-44, -82],
+      [-28, 36],
+      [-38, -22],
+      [0, -137],
+      [-210, -9],
+      [-44, -25],
+      [-53, 27],
+      [-20, 64],
+      [-123, 41]
+    ],
+    [
+      [13580, 10125],
+      [-90, 35],
+      [-40, 78],
+      [-63, 33],
+      [-68, -18],
+      [-85, 25],
+      [-97, 53],
+      [-14, 46],
+      [44, 39],
+      [29, 72],
+      [-5, 48],
+      [52, 79],
+      [63, 68],
+      [0, 48],
+      [-49, 22],
+      [-21, 72],
+      [0, 65],
+      [-79, 2],
+      [-36, -32],
+      [-90, -20],
+      [6, -49],
+      [-59, -8],
+      [-29, -92],
+      [-40, -32],
+      [-49, -151],
+      [-10, -99],
+      [11, -90],
+      [-31, -33],
+      [2, -53],
+      [24, -39],
+      [-32, -107],
+      [-47, -11],
+      [-17, -41],
+      [-114, 1],
+      [-81, -35],
+      [-49, -46],
+      [-121, -20],
+      [-41, 17],
+      [-67, -11],
+      [-53, -45]
+    ],
+    [
+      [9404, 12647],
+      [333, -45],
+      [91, -24],
+      [307, -17],
+      [191, -18],
+      [199, 40],
+      [115, -8],
+      [17, 27],
+      [234, -20],
+      [361, -88],
+      [98, -132],
+      [141, -40],
+      [129, -3],
+      [95, -56],
+      [138, -61],
+      [215, -51],
+      [49, 0],
+      [223, 39],
+      [-4, -114],
+      [164, -9],
+      [36, -40],
+      [92, 88],
+      [16, -2],
+      [198, 115],
+      [83, 31],
+      [269, 124],
+      [232, 50],
+      [12, 27],
+      [63, 28],
+      [40, -18],
+      [143, -8],
+      [130, 26],
+      [22, -12],
+      [93, 8],
+      [102, -23],
+      [74, 24],
+      [108, -14],
+      [124, 22],
+      [114, 79],
+      [123, 6],
+      [109, 68],
+      [15, 46],
+      [67, 37],
+      [33, 65],
+      [44, 38],
+      [93, 110],
+      [156, 67],
+      [54, 8],
+      [72, 103],
+      [86, 25],
+      [18, 27],
+      [-65, 104],
+      [-72, 21],
+      [-111, 148],
+      [-2, 37],
+      [51, 101],
+      [18, 69],
+      [72, 123],
+      [37, 45],
+      [57, 21],
+      [175, -15],
+      [56, -49],
+      [81, -49],
+      [56, -3],
+      [88, -33],
+      [136, -5],
+      [65, -24],
+      [67, 53],
+      [86, 44],
+      [148, 120],
+      [68, 120],
+      [81, 28],
+      [99, -45],
+      [136, 9],
+      [152, 28],
+      [18, 34],
+      [119, 89],
+      [53, 5],
+      [30, 39],
+      [-4, 97],
+      [137, 179],
+      [133, 28],
+      [172, 1],
+      [25, 114],
+      [73, 2],
+      [34, -37],
+      [136, 63],
+      [91, 81],
+      [117, -9],
+      [43, 18],
+      [52, -12],
+      [54, 20],
+      [110, -44],
+      [76, -52],
+      [0, -92],
+      [43, 3],
+      [38, 49],
+      [67, 34],
+      [59, 62],
+      [-47, 93],
+      [19, 92],
+      [-60, 47],
+      [50, 36],
+      [-44, 30],
+      [-86, 7],
+      [-71, 52],
+      [5, 49],
+      [-59, -6],
+      [-25, 95],
+      [-139, 53],
+      [-119, 100],
+      [-90, 0],
+      [-74, 20],
+      [-123, -26],
+      [-81, -103],
+      [-72, -78],
+      [-107, 89],
+      [-112, 45],
+      [-74, -4],
+      [-76, -24],
+      [-78, 17],
+      [-47, -21],
+      [-75, -81],
+      [-158, 139],
+      [-15, 121],
+      [118, 40],
+      [4, 139],
+      [115, 135],
+      [-23, 43],
+      [259, 496],
+      [93, -59],
+      [136, -48],
+      [81, -2],
+      [145, -63],
+      [127, 80],
+      [155, 131],
+      [49, 17],
+      [161, 18],
+      [49, 15],
+      [66, 83],
+      [-7, 89],
+      [-65, -1],
+      [36, 132],
+      [62, 47],
+      [61, 146],
+      [67, 64],
+      [3, 57],
+      [44, 44],
+      [48, 80],
+      [40, 112],
+      [35, 6],
+      [119, 104],
+      [71, 26],
+      [44, 92],
+      [-2, 68],
+      [-55, 36],
+      [40, 111],
+      [-106, 57],
+      [-156, -29],
+      [-15, 90],
+      [102, 55],
+      [99, 106],
+      [139, 111],
+      [136, -3],
+      [189, 55]
+    ],
+    [
+      [13580, 10125],
+      [-11, -47],
+      [-52, -9],
+      [-5, -30],
+      [-68, -58],
+      [-24, -137],
+      [32, -82],
+      [-24, -45]
+    ],
+    [
+      [11235, 7898],
+      [0, -47],
+      [-37, -20],
+      [-13, -46],
+      [34, -26],
+      [-43, -85],
+      [-57, 59],
+      [-30, 0],
+      [-97, -34],
+      [-19, -69],
+      [1, -60],
+      [47, -48],
+      [-8, -53],
+      [-57, -17],
+      [-57, -40],
+      [-85, 30],
+      [-25, -31],
+      [-13, -68],
+      [-33, -30],
+      [-36, 23],
+      [36, 59],
+      [-54, 89],
+      [-68, -15],
+      [-5, -47],
+      [-42, 8],
+      [-5, 115],
+      [-53, 40],
+      [-81, 6],
+      [7, -46],
+      [-18, -60],
+      [-152, 85],
+      [-36, -12],
+      [-30, 74],
+      [-137, 65],
+      [-33, 64],
+      [6, 42],
+      [-23, 75],
+      [-31, 22],
+      [6, 51],
+      [-55, 75],
+      [-46, 38],
+      [-62, -11],
+      [1, 34],
+      [-93, 18],
+      [-83, -48],
+      [-62, 54],
+      [-51, -29],
+      [-58, -9],
+      [-7, -27],
+      [24, -77],
+      [33, -52],
+      [17, -60],
+      [85, -25],
+      [-60, -43],
+      [-4, -31],
+      [-48, -56],
+      [21, -59],
+      [-10, -31],
+      [-61, -22],
+      [8, -84],
+      [42, -69],
+      [96, -64]
+    ],
+    [
+      [9621, 7373],
+      [-32, -26],
+      [-100, 21],
+      [4, -114],
+      [-48, -6],
+      [-10, -52],
+      [16, -53],
+      [-135, -32],
+      [-60, -1],
+      [-31, -18],
+      [29, -46],
+      [-19, -33],
+      [31, -53],
+      [-41, -26],
+      [-22, 27],
+      [-44, -7],
+      [-53, 42],
+      [-48, 75],
+      [-27, -5],
+      [-46, -59],
+      [46, -63],
+      [-76, 14],
+      [-80, -3],
+      [-88, 35],
+      [-47, -18],
+      [-59, 110],
+      [30, 52],
+      [-6, 49],
+      [-57, 51],
+      [-84, -5],
+      [-49, 48],
+      [-24, 62],
+      [-33, 11],
+      [-77, 96],
+      [-31, -35],
+      [-61, -1],
+      [-10, -40],
+      [-65, -3],
+      [-27, -42],
+      [-69, 27],
+      [-42, -6],
+      [-19, 41],
+      [-62, 9],
+      [-55, -48],
+      [-52, 24],
+      [-56, 70],
+      [-74, -16],
+      [-17, 55],
+      [-64, -18],
+      [-66, 33],
+      [-15, -22],
+      [-117, 21],
+      [-63, -7],
+      [2, 56],
+      [-33, 10],
+      [-63, -31],
+      [-69, 64],
+      [-93, 56],
+      [-73, 95],
+      [-5, 44],
+      [-72, -9],
+      [-9, -34],
+      [-87, -12],
+      [-36, -51],
+      [-59, 11],
+      [-88, 66],
+      [-32, -5],
+      [-56, 57],
+      [-33, 93],
+      [-78, 43],
+      [8, 29],
+      [-30, 54],
+      [-77, 64],
+      [-33, 54],
+      [1, 37],
+      [61, 38],
+      [1, 192],
+      [-34, 100],
+      [51, 38],
+      [-17, 51],
+      [-89, -7],
+      [-11, 34],
+      [7, 83],
+      [-49, 60],
+      [15, 66],
+      [77, 28],
+      [18, 26],
+      [-9, 55],
+      [30, 146],
+      [-44, -6],
+      [-102, 38],
+      [-5, 56],
+      [47, 0],
+      [82, 27]
+    ],
+    [
+      [6430, 9204],
+      [56, -2],
+      [47, 38],
+      [16, 64],
+      [81, -59],
+      [94, -16],
+      [83, -1],
+      [67, -57],
+      [48, 42],
+      [54, -4],
+      [-3, 62],
+      [-28, 62],
+      [2, 104],
+      [-119, 28],
+      [-6, 104],
+      [53, 64],
+      [51, -1],
+      [63, 50],
+      [68, 3],
+      [-10, 69],
+      [-38, 34],
+      [-37, 126],
+      [-60, 8],
+      [-61, 84],
+      [-105, 45],
+      [-44, 54],
+      [27, 64],
+      [-60, 91],
+      [-37, 89],
+      [-38, 48],
+      [109, 48],
+      [86, 93],
+      [48, -7],
+      [145, 26],
+      [72, 21],
+      [56, 32],
+      [142, 27],
+      [99, 45],
+      [138, 26],
+      [46, 53],
+      [140, 16],
+      [39, 16]
+    ],
+    [
+      [14970, 10894],
+      [29, -70],
+      [-45, -104],
+      [-48, -27],
+      [16, -51],
+      [-54, -130],
+      [11, -31],
+      [-24, -64],
+      [-31, -3],
+      [-42, -64],
+      [-38, -10],
+      [-25, -51],
+      [-3, -88],
+      [67, -117],
+      [48, -125],
+      [-16, -44],
+      [-42, -15],
+      [21, -43],
+      [-20, -53],
+      [-94, -132],
+      [7, -174],
+      [30, -39],
+      [-22, -214],
+      [27, -143],
+      [15, -10],
+      [20, -135],
+      [-34, -103],
+      [-45, -66],
+      [-35, -137],
+      [-18, -22],
+      [7, -179],
+      [37, -8]
+    ],
+    [
+      [13924, 7210],
+      [-15, 30],
+      [-96, 4],
+      [-23, -26],
+      [-64, -6],
+      [-10, -32],
+      [-58, 28],
+      [-71, 95],
+      [-59, -4],
+      [-59, 80],
+      [-45, -70],
+      [-72, 65],
+      [9, 37],
+      [-19, 56],
+      [-107, -4],
+      [-23, 14],
+      [-56, -36],
+      [-63, -22],
+      [-42, 28],
+      [-61, 12],
+      [-87, 78],
+      [-56, -20],
+      [-78, -56],
+      [-49, 108]
+    ],
+    [
+      [17658, 10322],
+      [96, -58],
+      [144, -16],
+      [149, 17],
+      [39, -23],
+      [22, -74],
+      [36, -23],
+      [3, -40],
+      [35, -20],
+      [42, -56],
+      [-101, -1],
+      [-43, -81],
+      [15, -130],
+      [111, -72],
+      [24, -41],
+      [50, 31],
+      [127, 3],
+      [55, 60],
+      [-17, 71],
+      [96, 35],
+      [92, 86],
+      [-1, 39],
+      [57, 31],
+      [44, 3],
+      [72, 40],
+      [80, -12],
+      [35, -52],
+      [42, 1],
+      [1, -57],
+      [93, -20],
+      [33, -42],
+      [54, -26],
+      [137, 23],
+      [51, 31],
+      [37, -50],
+      [34, 14],
+      [33, -27],
+      [61, 5],
+      [37, -30],
+      [-7, -46],
+      [27, -34],
+      [-66, -31],
+      [19, -111],
+      [-32, -33],
+      [-54, -15],
+      [-39, 17],
+      [-21, 40],
+      [-51, 11],
+      [-100, -45],
+      [-54, -37],
+      [-10, -34],
+      [-51, 16],
+      [-114, -46],
+      [-84, -75],
+      [-28, -46],
+      [-64, 6],
+      [-25, -42],
+      [-6, -72],
+      [15, -57],
+      [-167, -36],
+      [33, 61],
+      [-61, 21],
+      [-45, -42],
+      [45, -60],
+      [-14, -38],
+      [-50, -34],
+      [-18, -83],
+      [-38, -43],
+      [-69, -1],
+      [-42, -25],
+      [-31, -105],
+      [-61, -60],
+      [-13, -86],
+      [-35, -4]
+    ],
+    [
+      [19012, 6426],
+      [-26, 48],
+      [-49, 35],
+      [-38, -10],
+      [5, 89],
+      [-40, 4]
+    ],
+    [
+      [19036, 6846],
+      [76, -60],
+      [60, -32],
+      [78, -110],
+      [24, -73],
+      [-13, -64],
+      [-30, 6],
+      [-115, -19],
+      [-104, -68]
+    ],
+    [
+      [19024, 7033],
+      [148, -113],
+      [90, -29],
+      [29, -52],
+      [-53, -28],
+      [-176, 92],
+      [-92, 88],
+      [54, 42]
+    ],
+    [
+      [12642, 4891],
+      [-50, 185],
+      [-47, 16],
+      [-35, -21],
+      [-37, -76],
+      [-60, -6],
+      [-66, -24],
+      [-100, 94],
+      [30, 14],
+      [28, 57],
+      [-8, 53],
+      [-73, 62],
+      [3, 128],
+      [-152, -10],
+      [-38, -56],
+      [32, -108],
+      [-67, -53],
+      [-53, 12],
+      [-54, -89],
+      [26, -18],
+      [4, -93],
+      [-25, -44],
+      [-66, -62],
+      [-55, -107],
+      [-60, -27],
+      [-42, -36],
+      [10, -79],
+      [-16, -61],
+      [11, -60],
+      [34, -60],
+      [15, -107],
+      [-11, -117],
+      [-84, -30],
+      [-29, -45],
+      [-43, 18],
+      [9, 48],
+      [-88, -21],
+      [-60, -43],
+      [-48, -65],
+      [-125, -3],
+      [-33, 68],
+      [-44, 8],
+      [6, 78],
+      [-97, 88],
+      [34, 62],
+      [-43, 44],
+      [-3, 63],
+      [-90, 75],
+      [10, 86],
+      [-47, 11],
+      [-87, 238],
+      [-47, 63],
+      [-14, 62],
+      [-51, -58],
+      [-40, 30],
+      [-49, -78],
+      [-55, 121],
+      [-43, 44],
+      [-21, 68],
+      [54, 22],
+      [6, 51],
+      [-47, 31],
+      [-41, 101],
+      [-51, 19],
+      [1, 30],
+      [-39, 34],
+      [-4, 55],
+      [-41, -14],
+      [-33, -64],
+      [-8, -53],
+      [-51, -19],
+      [-1, -78],
+      [13, -56],
+      [-45, -32],
+      [-54, 98],
+      [8, 42],
+      [-33, 185],
+      [8, 25],
+      [-7, 178]
+    ],
+    [
+      [10173, 5685],
+      [-15, 23],
+      [-9, 136],
+      [-23, 58],
+      [10, 88],
+      [21, 45],
+      [-12, 78],
+      [-22, 36],
+      [-19, 227],
+      [-14, 54],
+      [23, 18],
+      [-75, 90],
+      [12, 48],
+      [-81, 122],
+      [35, 52],
+      [36, -43],
+      [41, 59],
+      [-16, 32],
+      [-53, 43],
+      [-57, 68],
+      [-67, 134],
+      [13, 54],
+      [-52, 60],
+      [-35, 111],
+      [-97, 67],
+      [-96, 28]
+    ],
+    [
+      [17714, 10817],
+      [-71, -21],
+      [-35, -41],
+      [-10, -65],
+      [-56, -102],
+      [-7, -60]
+    ],
+    [
+      [6430, 9204],
+      [-97, 34],
+      [-101, 74],
+      [-30, -25],
+      [-92, 59],
+      [-65, -30],
+      [-58, 45],
+      [-20, 37],
+      [-41, 11],
+      [-92, -7],
+      [-42, -22],
+      [-64, 5],
+      [-26, -31],
+      [-71, 5],
+      [-71, -22],
+      [-70, 38],
+      [-91, -62],
+      [-61, 6],
+      [-100, -8],
+      [-29, -29],
+      [-112, -15],
+      [-78, -40],
+      [-7, -50],
+      [-50, -96],
+      [-39, -32],
+      [-103, -17],
+      [-34, -49],
+      [-138, 64],
+      [-93, -17],
+      [-78, -55],
+      [-156, -50],
+      [2, -33],
+      [-47, -33],
+      [-95, -26],
+      [-13, 22],
+      [-71, -21],
+      [-138, -12],
+      [-119, 40],
+      [-46, -11],
+      [-51, 44],
+      [-13, 94],
+      [-71, 10],
+      [-23, -25],
+      [-41, 28],
+      [-88, 4],
+      [-32, -72],
+      [-112, -57],
+      [1, -45],
+      [-78, -53],
+      [-67, -12],
+      [-61, 11],
+      [-34, 50],
+      [-91, -18],
+      [-66, 43],
+      [-7, -47],
+      [-77, 18],
+      [-62, -4],
+      [-66, 60],
+      [-34, -5],
+      [-57, -44],
+      [1, -49],
+      [-59, -86],
+      [-39, -20],
+      [-23, -102],
+      [-37, 0],
+      [-13, -58],
+      [20, -21],
+      [-47, -117],
+      [-50, -14],
+      [-68, 1],
+      [-110, -21],
+      [-60, 0],
+      [-16, -41],
+      [-44, 19]
+    ],
+    [
+      [2119, 8322],
+      [-35, 18],
+      [-108, 105],
+      [-60, -3],
+      [-53, 32],
+      [-31, 51],
+      [-9, 59],
+      [-41, 104],
+      [-37, 152],
+      [-40, 26],
+      [-29, 46],
+      [-77, -21],
+      [-78, -4],
+      [-64, 34],
+      [-32, -4],
+      [-52, 37],
+      [-117, 36],
+      [-74, 74],
+      [5, 41],
+      [-147, -22],
+      [-57, 87],
+      [-31, 0],
+      [-28, 55],
+      [48, 57],
+      [-28, 52],
+      [10, 60],
+      [-35, 86],
+      [-76, 65],
+      [-73, 10],
+      [-37, -23],
+      [-32, 114],
+      [-57, 8],
+      [-33, 31],
+      [-43, -2],
+      [-47, -42],
+      [-40, 65],
+      [-37, -18],
+      [-21, 37],
+      [-59, -11],
+      [-38, 21],
+      [30, 63],
+      [153, -9],
+      [17, 35],
+      [73, 16],
+      [7, 60],
+      [-32, 47],
+      [-51, 15],
+      [-12, 52],
+      [39, 54],
+      [-36, 41],
+      [4, 86],
+      [-37, 38],
+      [-14, 53],
+      [0, 87],
+      [33, 25],
+      [-1, 49],
+      [-59, 12],
+      [-35, 31],
+      [-99, 36],
+      [-99, 8],
+      [-26, -70],
+      [-58, 2],
+      [-47, 50],
+      [-40, 130],
+      [55, 32],
+      [-40, 43],
+      [-51, 106],
+      [21, 79],
+      [-7, 33],
+      [85, 13],
+      [31, 63],
+      [-11, 58],
+      [-32, 23],
+      [3, 41],
+      [73, 134],
+      [91, 18],
+      [35, -26],
+      [73, 62],
+      [64, 73],
+      [86, -4],
+      [-35, 60],
+      [7, 36],
+      [63, -38],
+      [83, -6],
+      [159, 113],
+      [19, -78],
+      [31, -11],
+      [-22, -66],
+      [23, -35],
+      [80, 19],
+      [21, 28],
+      [140, -5],
+      [78, 47],
+      [7, 37],
+      [41, 46],
+      [-3, 69],
+      [62, 53],
+      [-1, 52],
+      [31, 31],
+      [73, 20],
+      [42, -23],
+      [72, 7],
+      [55, -15],
+      [79, 0],
+      [83, 38],
+      [77, -14],
+      [48, 17],
+      [33, 69],
+      [45, 29],
+      [8, 74],
+      [93, 29],
+      [28, 41],
+      [51, 13],
+      [40, 36],
+      [205, 105],
+      [88, -30],
+      [84, 127],
+      [98, -1],
+      [61, 19],
+      [-14, 77],
+      [17, 20],
+      [-32, 86],
+      [5, 56],
+      [-21, 52],
+      [36, 98],
+      [56, 0],
+      [68, 50],
+      [-69, 36],
+      [6, 32],
+      [73, 39],
+      [82, 22],
+      [-22, 63],
+      [-33, 8],
+      [34, 70],
+      [-62, 151],
+      [-28, 47],
+      [-47, 188],
+      [-24, 146],
+      [59, 118],
+      [-60, 56],
+      [-37, 10],
+      [-83, -20],
+      [-32, 40],
+      [49, 88],
+      [128, 2],
+      [17, 26],
+      [64, 3],
+      [58, 25],
+      [41, -15],
+      [88, 23],
+      [15, 24],
+      [136, 25],
+      [94, 50],
+      [40, -30],
+      [15, -55],
+      [72, -22],
+      [93, 40],
+      [98, -59],
+      [43, 57],
+      [15, 66],
+      [-16, 44],
+      [-64, 12],
+      [-62, 40],
+      [5, 44],
+      [86, 181],
+      [10, 103],
+      [84, 172],
+      [27, 120],
+      [69, 144],
+      [20, 94],
+      [58, 6],
+      [67, -25],
+      [85, -55],
+      [192, -53],
+      [153, 23],
+      [34, -17],
+      [79, 10],
+      [49, -85],
+      [54, 20],
+      [103, 93],
+      [123, 4],
+      [19, 68],
+      [46, 14],
+      [3, 92],
+      [-38, 63],
+      [7, 45],
+      [-32, 171],
+      [28, 112],
+      [50, 111],
+      [41, 28],
+      [150, 5],
+      [41, 33],
+      [106, 21],
+      [72, 90],
+      [19, 69],
+      [-35, 73],
+      [52, 60],
+      [53, -2],
+      [59, 24],
+      [121, -34],
+      [105, 44],
+      [52, 3],
+      [1, -60],
+      [32, -38],
+      [-66, -49],
+      [70, -66],
+      [59, -36],
+      [-27, -65],
+      [138, -49],
+      [100, -65],
+      [-10, -35],
+      [39, -53],
+      [90, -28],
+      [52, -41],
+      [5, -48],
+      [60, 2],
+      [50, 40],
+      [99, 11],
+      [20, -53],
+      [72, -66],
+      [53, -1],
+      [157, -77],
+      [53, -93],
+      [25, -125],
+      [86, -125],
+      [59, -13],
+      [29, -77],
+      [39, -52],
+      [10, -83],
+      [-48, -117],
+      [-9, -68],
+      [35, -47],
+      [-4, -58],
+      [-65, -60],
+      [-60, -100],
+      [-14, -89],
+      [42, -49],
+      [18, -70],
+      [50, -53],
+      [87, 6],
+      [86, -46],
+      [43, 16],
+      [68, -41],
+      [146, 6],
+      [62, -20],
+      [67, 11],
+      [69, -21],
+      [222, 4],
+      [175, -27],
+      [275, -156],
+      [54, -72],
+      [97, -38],
+      [48, -52],
+      [117, -48],
+      [173, 18],
+      [-21, -41],
+      [2, -97],
+      [70, -17],
+      [50, -145],
+      [82, -157],
+      [14, -87],
+      [63, -56],
+      [32, -59],
+      [68, -66],
+      [16, -85]
+    ],
+    [
+      [10173, 5685],
+      [-60, -54],
+      [20, -58],
+      [-36, -29],
+      [-7, -89],
+      [-25, 3],
+      [-25, 99],
+      [-49, -13],
+      [-4, -47],
+      [17, -78],
+      [-38, -32],
+      [14, -92],
+      [50, -80],
+      [-17, -51],
+      [-126, -65],
+      [-9, 73],
+      [-38, 71],
+      [-30, -25],
+      [25, -51],
+      [-40, -22],
+      [-9, -79]
+    ],
+    [
+      [9786, 5066],
+      [3, 33],
+      [-98, 133],
+      [-45, -14],
+      [-29, 82],
+      [-68, -4],
+      [-29, -65],
+      [-6, -52],
+      [-44, -18],
+      [-90, 63],
+      [-51, -21],
+      [-39, 36],
+      [-50, -6],
+      [-44, 47],
+      [-117, -36],
+      [12, 86],
+      [74, 82],
+      [9, 40],
+      [-35, 86],
+      [-34, 37],
+      [-36, -3],
+      [-47, -53],
+      [-31, 64],
+      [27, 44],
+      [51, 17],
+      [19, 44],
+      [-63, -7],
+      [-57, 110],
+      [-54, -38],
+      [-72, -14],
+      [-76, -71],
+      [-16, -1],
+      [-37, -92],
+      [-81, 16],
+      [0, 21],
+      [-151, 38],
+      [-97, 85],
+      [-28, -62],
+      [-51, -1],
+      [-32, -39],
+      [-54, -34],
+      [-24, -67],
+      [-64, -58],
+      [-24, -85],
+      [-36, 16],
+      [-95, -27],
+      [-44, 15],
+      [-65, -26],
+      [-56, -163],
+      [-68, -9],
+      [-51, -49],
+      [-44, -11],
+      [-48, -62],
+      [30, -38],
+      [-71, -87],
+      [-101, -21],
+      [-21, 43],
+      [-40, -13],
+      [-40, -40],
+      [-70, -20],
+      [-21, 45],
+      [-47, 2],
+      [-33, 41],
+      [-56, 28],
+      [-7, 31],
+      [-63, 30],
+      [-41, -39],
+      [-91, 7],
+      [-19, 21],
+      [-97, 18],
+      [-39, -27],
+      [-34, 22],
+      [-49, -4],
+      [-35, 50],
+      [-68, -8],
+      [-106, 45],
+      [-56, -29],
+      [-42, -2],
+      [-61, -68],
+      [-29, -76],
+      [-65, -56],
+      [-22, -58],
+      [-54, -46],
+      [-27, -90],
+      [-31, -35],
+      [-32, 35],
+      [-17, 83],
+      [32, 53],
+      [13, 117],
+      [-15, 49],
+      [-36, 42],
+      [-71, 7],
+      [-74, -56],
+      [-58, -15],
+      [-41, 8],
+      [-44, -30],
+      [-64, 3],
+      [-57, -55],
+      [-58, 29],
+      [-64, 0],
+      [-40, -18],
+      [-76, 4],
+      [-35, 60],
+      [-100, 35],
+      [-40, 46],
+      [-45, 3],
+      [-53, -107],
+      [-82, 35],
+      [-16, 85],
+      [-43, -54],
+      [14, -55],
+      [-24, -14],
+      [-68, 86],
+      [-18, 60],
+      [-75, 63],
+      [-62, 14],
+      [-100, -20],
+      [-59, 27],
+      [7, 73],
+      [29, 72],
+      [-56, 28],
+      [-43, -53],
+      [-37, -5],
+      [-62, 33],
+      [-30, 53],
+      [-54, -1],
+      [-33, 61],
+      [-75, 32],
+      [11, 63],
+      [-34, 80],
+      [15, 24],
+      [-95, 47],
+      [-60, -15],
+      [-71, -74],
+      [-39, 24],
+      [-39, 54],
+      [-10, 58],
+      [-52, 39],
+      [-35, 58],
+      [-50, 0],
+      [-62, 49],
+      [-61, 13],
+      [-26, 64],
+      [-38, 17],
+      [-87, 71],
+      [-85, 21],
+      [-24, 143],
+      [-45, -12],
+      [-145, 64],
+      [-35, -38],
+      [-56, 25],
+      [7, -60],
+      [-12, -50],
+      [-43, -48],
+      [-5, -36],
+      [-56, -14],
+      [-49, 127],
+      [-80, 29],
+      [-32, 43],
+      [-55, 41],
+      [-25, -11],
+      [-101, 58],
+      [-27, 4],
+      [11, 82],
+      [-31, 37],
+      [-112, 58],
+      [-53, 42],
+      [-65, -32],
+      [-35, 50],
+      [-78, 55],
+      [-21, 76],
+      [-47, 73],
+      [-29, 18],
+      [-31, -60],
+      [-40, -44],
+      [-33, 94],
+      [-30, 45],
+      [42, 45],
+      [-37, 33],
+      [-17, 52],
+      [18, 109],
+      [-65, 79],
+      [8, 31],
+      [-52, 30],
+      [22, 73],
+      [-32, 19],
+      [-10, 52],
+      [87, 28],
+      [42, 44],
+      [17, -50],
+      [1, -64],
+      [76, -67],
+      [38, 21],
+      [54, 64],
+      [58, 9],
+      [79, 41],
+      [-2, 73],
+      [-70, 107],
+      [18, 114],
+      [-107, 11],
+      [-30, 50],
+      [-97, 96],
+      [-46, 101],
+      [26, 35],
+      [-23, 74],
+      [19, 57],
+      [-14, 49],
+      [91, 62],
+      [15, 37],
+      [-27, 43]
+    ],
+    [
+      [12737, 2566],
+      [-85, 102],
+      [-45, -64],
+      [-49, 1],
+      [-26, -25],
+      [-89, -51],
+      [11, -70],
+      [-43, -86],
+      [-70, 10],
+      [-59, -70],
+      [-48, 19],
+      [-3, 50],
+      [-62, -13],
+      [-31, -46],
+      [-12, -78],
+      [-18, -33],
+      [-129, 148],
+      [-43, -103],
+      [-79, 110],
+      [-21, -66],
+      [-35, -16],
+      [-4, -46],
+      [-63, -58],
+      [-41, 31],
+      [-24, 54],
+      [-141, 86],
+      [-22, -11],
+      [-20, -63],
+      [-51, -70],
+      [-3, -39],
+      [-97, 17],
+      [-64, -34],
+      [-23, 49],
+      [-44, -6],
+      [-7, -52],
+      [-24, -51],
+      [-15, -88],
+      [16, -65],
+      [64, -74],
+      [-12, -49],
+      [30, -69],
+      [-19, -47],
+      [-15, -102],
+      [42, -32],
+      [-24, -58],
+      [-32, 5],
+      [-50, 49],
+      [-78, -12],
+      [-38, -22],
+      [-21, 37],
+      [9, 59],
+      [-25, 27],
+      [6, 74],
+      [-36, 48],
+      [2, 62],
+      [-44, -32],
+      [-50, -14],
+      [-69, -91],
+      [-56, -30],
+      [-87, 44],
+      [-63, -50],
+      [-35, 76],
+      [10, 55],
+      [-61, 13],
+      [-15, 76],
+      [20, 57],
+      [-12, 39],
+      [-45, -15],
+      [-81, 42],
+      [-174, 7],
+      [-19, 19],
+      [27, 50],
+      [21, 78],
+      [40, 49],
+      [-26, 130],
+      [50, 55],
+      [27, 75],
+      [-3, 41],
+      [-60, 26],
+      [-100, -21],
+      [-28, 37],
+      [-57, 28],
+      [14, 28],
+      [-4, 77],
+      [-44, 66],
+      [28, 20],
+      [-31, 95],
+      [-40, 8],
+      [-4, 67],
+      [61, 110],
+      [-95, -20],
+      [-29, 18],
+      [-76, -15],
+      [-46, 8],
+      [-80, -23],
+      [-58, -32],
+      [-84, -76],
+      [-56, 41],
+      [40, 30],
+      [40, 60],
+      [11, 83],
+      [-35, 90],
+      [-46, 22],
+      [7, 138],
+      [44, 32],
+      [32, -1],
+      [-20, 81],
+      [51, 148],
+      [42, -23],
+      [77, 93],
+      [16, 114],
+      [55, -41],
+      [19, 14],
+      [43, 116],
+      [30, 26],
+      [35, -23],
+      [29, 48],
+      [-40, 48],
+      [-15, 66],
+      [64, 35],
+      [-24, 32],
+      [25, 70],
+      [18, 121],
+      [-19, 198],
+      [-19, 108],
+      [18, 53],
+      [-14, 38],
+      [-1, 102],
+      [-45, 11],
+      [-45, 41],
+      [-17, -52],
+      [-43, -24],
+      [-9, 50],
+      [-30, 48],
+      [-5, 89],
+      [-28, 33],
+      [2, 41]
+    ],
+    [
+      [19000, 5153],
+      [17, -69],
+      [-37, -21],
+      [-14, 49],
+      [34, 41]
+    ],
+    [
+      [19285, 6166],
+      [59, -14],
+      [76, -47],
+      [18, -26],
+      [-14, -46],
+      [-54, 35],
+      [-55, -1],
+      [-30, 99]
+    ],
+    [
+      [19012, 6426],
+      [-61, -52],
+      [-42, -9],
+      [-29, -49],
+      [-11, -54],
+      [-63, -23],
+      [-24, -34],
+      [85, -49],
+      [109, 84],
+      [33, 7],
+      [67, -28],
+      [67, -93],
+      [33, -62],
+      [95, -33],
+      [33, -52],
+      [-55, -45],
+      [-63, -90],
+      [51, -8],
+      [48, -17],
+      [11, -22],
+      [-25, -61],
+      [22, -44],
+      [-14, -36],
+      [-50, -20],
+      [-59, 8],
+      [-25, 38],
+      [-29, -24],
+      [62, -93],
+      [-17, -137],
+      [-51, -45],
+      [26, -108],
+      [30, -79],
+      [-69, 16],
+      [-48, -100],
+      [-33, 34],
+      [-24, 61],
+      [-78, -100],
+      [-26, -76],
+      [-30, 9],
+      [-5, -68],
+      [-73, -87],
+      [-31, -65],
+      [30, -51],
+      [-59, -128],
+      [-39, -27]
+    ],
+    [
+      [19160, 3611],
+      [33, -37],
+      [69, -20],
+      [6, -84],
+      [-33, -49],
+      [-4, -108],
+      [17, -49],
+      [-31, -60],
+      [-3, -64],
+      [-43, -60],
+      [-22, -60],
+      [8, -26],
+      [-43, -189],
+      [-23, -162],
+      [-22, -46],
+      [-3, -56],
+      [-40, -96],
+      [-44, -60],
+      [-19, -52],
+      [-48, -48],
+      [-30, -63],
+      [-29, -122],
+      [2, -120],
+      [-15, -67],
+      [-55, 28],
+      [-3, 68],
+      [-30, 94],
+      [-44, 67],
+      [-72, 49],
+      [-62, 187],
+      [-2, 67],
+      [-44, 71],
+      [28, 108],
+      [-2, 82],
+      [26, 131],
+      [41, 71],
+      [19, 56],
+      [61, 108],
+      [31, 89],
+      [31, 41],
+      [21, 63],
+      [58, 54],
+      [22, 65],
+      [63, 110],
+      [127, 55],
+      [23, 43],
+      [41, 24],
+      [39, -33]
+    ],
+    [
+      [16356, 2163],
+      [-35, -136],
+      [-70, 0],
+      [-175, 0],
+      [-35, 23],
+      [35, 113],
+      [105, 68],
+      [70, 0],
+      [35, 0],
+      [0, -68],
+      [70, 0]
+    ],
+    [
+      [15953, 2036],
+      [4, -20],
+      [-22, -8],
+      [-4, 48],
+      [13, 0],
+      [9, -20]
+    ]
+  ],
+  "transform": {
+    "scale": [0.002506264076531506, 0.0019419661250892803],
+    "translate": [73.61621093750023, 18.211250305175724]
+  },
+  "objects": {
+    "china": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4, 5]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-34",
+            "NAME_0": "China",
+            "ID_1": 1,
+            "NAME_1": "Anhui",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "安徽|安徽",
+            "VARNAME_1": "Ānhuī"
+          }
+        },
+        {
+          "arcs": [[6, 7, 8, 9]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-11",
+            "NAME_0": "China",
+            "ID_1": 2,
+            "NAME_1": "Beijing",
+            "TYPE_1": "Zhíxiáshì",
+            "ENGTYPE_1": "Municipality",
+            "NL_NAME_1": "北京|北京",
+            "VARNAME_1": "Běijīng"
+          }
+        },
+        {
+          "arcs": [[10, 11, 12, 13, 14]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-50",
+            "NAME_0": "China",
+            "ID_1": 3,
+            "NAME_1": "Chongqing",
+            "TYPE_1": "Zhíxiáshì",
+            "ENGTYPE_1": "Municipality",
+            "NL_NAME_1": "重慶|重庆",
+            "VARNAME_1": "Chóngqìng"
+          }
+        },
+        {
+          "arcs": [[15, 16, 17, 18]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-35",
+            "NAME_0": "China",
+            "ID_1": 4,
+            "NAME_1": "Fujian",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "福建",
+            "VARNAME_1": "Fújiàn"
+          }
+        },
+        {
+          "arcs": [[19, 20, 21, 22, 23, 24, 25]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-62",
+            "NAME_0": "China",
+            "ID_1": 5,
+            "NAME_1": "Gansu",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "甘肅|甘肃",
+            "VARNAME_1": "Gānsù"
+          }
+        },
+        {
+          "arcs": [[26, 27, 28, -16, 29]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-44",
+            "NAME_0": "China",
+            "ID_1": 6,
+            "NAME_1": "Guangdong",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "廣東|广东",
+            "VARNAME_1": "Guǎngdōng"
+          }
+        },
+        {
+          "arcs": [[-27, 30, 31, 32, 33]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-45",
+            "NAME_0": "China",
+            "ID_1": 7,
+            "NAME_1": "Guangxi",
+            "TYPE_1": "Zìzhìqu",
+            "ENGTYPE_1": "Autonomous Region",
+            "NL_NAME_1": "廣西壯族自治區|广西壮族自治区",
+            "VARNAME_1": "Guǎngxī Zhuàngzú"
+          }
+        },
+        {
+          "arcs": [[34, -33, 35, 36, -13]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-52",
+            "NAME_0": "China",
+            "ID_1": 8,
+            "NAME_1": "Guizhou",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "貴州|贵州",
+            "VARNAME_1": "Gùizhōu"
+          }
+        },
+        {
+          "arcs": [[37]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-46",
+            "NAME_0": "China",
+            "ID_1": 9,
+            "NAME_1": "Hainan",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "海南",
+            "VARNAME_1": "Hǎinán"
+          }
+        },
+        {
+          "arcs": [[[-8, 38]], [[39, 40, 41, -10, 42, 43, 44, 45, 46, 47]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-13",
+            "NAME_0": "China",
+            "ID_1": 10,
+            "NAME_1": "Hebei",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "河北",
+            "VARNAME_1": "Héběi"
+          }
+        },
+        {
+          "arcs": [[48, 49, 50]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-23",
+            "NAME_0": "China",
+            "ID_1": 11,
+            "NAME_1": "Heilongjiang",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "黑龙江省|黑龍江省",
+            "VARNAME_1": "Hēilóngjiāng"
+          }
+        },
+        {
+          "arcs": [[51, -4, 52, 53, 54, -46]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-41",
+            "NAME_0": "China",
+            "ID_1": 12,
+            "NAME_1": "Henan",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "河南",
+            "VARNAME_1": "Hénán"
+          }
+        },
+        {
+          "arcs": [[-53, -3, 55, 56, -11, 57]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-42",
+            "NAME_0": "China",
+            "ID_1": 13,
+            "NAME_1": "Hubei",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "湖北",
+            "VARNAME_1": "Húběi"
+          }
+        },
+        {
+          "arcs": [[58, -28, -34, -35, -12, -57]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-43",
+            "NAME_0": "China",
+            "ID_1": 14,
+            "NAME_1": "Hunan",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "湖南",
+            "VARNAME_1": "Húnán"
+          }
+        },
+        {
+          "arcs": [[59, 60, 61, -6, 62]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-32",
+            "NAME_0": "China",
+            "ID_1": 15,
+            "NAME_1": "Jiangsu",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "江蘇|江苏",
+            "VARNAME_1": "Jiāngsū"
+          }
+        },
+        {
+          "arcs": [[63, -17, -29, -59, -56, -2]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-36",
+            "NAME_0": "China",
+            "ID_1": 16,
+            "NAME_1": "Jiangxi",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "江西",
+            "VARNAME_1": "Jiāngxī"
+          }
+        },
+        {
+          "arcs": [[64, 65, 66, -49]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-22",
+            "NAME_0": "China",
+            "ID_1": 17,
+            "NAME_1": "Jilin",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "吉林",
+            "VARNAME_1": "Jílín"
+          }
+        },
+        {
+          "arcs": [[-40, 67, -66, 68]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-21",
+            "NAME_0": "China",
+            "ID_1": 18,
+            "NAME_1": "Liaoning",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "遼寧|辽宁",
+            "VARNAME_1": "Liáoníng"
+          }
+        },
+        {
+          "arcs": [[-67, -68, -48, 69, 70, 71, -20, 72, -50]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-15",
+            "NAME_0": "China",
+            "ID_1": 19,
+            "NAME_1": "Nei Mongol",
+            "TYPE_1": "Zìzhìqu",
+            "ENGTYPE_1": "Autonomous Region",
+            "NL_NAME_1": "內蒙古自治區|内蒙古自治区",
+            "VARNAME_1": "Inner Mongol|Nèiměnggǔ"
+          }
+        },
+        {
+          "arcs": [[73, -21, -72]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-64",
+            "NAME_0": "China",
+            "ID_1": 20,
+            "NAME_1": "Ningxia Hui",
+            "TYPE_1": "Zìzhìqu",
+            "ENGTYPE_1": "Autonomous Region",
+            "NL_NAME_1": "寧夏回族自治區|宁夏回族自治区",
+            "VARNAME_1": "Níngxià Húizú"
+          }
+        },
+        {
+          "arcs": [[74, 75, 76, -24]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-63",
+            "NAME_0": "China",
+            "ID_1": 21,
+            "NAME_1": "Qinghai",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "青海",
+            "VARNAME_1": "Qīnghǎi"
+          }
+        },
+        {
+          "arcs": [[77, -54, -58, -15, 78, -22, -74, -71]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-61",
+            "NAME_0": "China",
+            "ID_1": 22,
+            "NAME_1": "Shaanxi",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "陝西|陕西",
+            "VARNAME_1": "Shǎnxī"
+          }
+        },
+        {
+          "arcs": [[-63, -5, -52, -45, 79]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-37",
+            "NAME_0": "China",
+            "ID_1": 23,
+            "NAME_1": "Shandong",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "山東|山东",
+            "VARNAME_1": "Shāndōng"
+          }
+        },
+        {
+          "arcs": [[[80, -61, 81]], [[82]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-31",
+            "NAME_0": "China",
+            "ID_1": 24,
+            "NAME_1": "Shanghai",
+            "TYPE_1": "Zhíxiáshì",
+            "ENGTYPE_1": "Municipality",
+            "NL_NAME_1": "上海|上海",
+            "VARNAME_1": "Shànghǎi"
+          }
+        },
+        {
+          "arcs": [[-47, -55, -78, -70]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-14",
+            "NAME_0": "China",
+            "ID_1": 25,
+            "NAME_1": "Shanxi",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "山西",
+            "VARNAME_1": "Shānxī"
+          }
+        },
+        {
+          "arcs": [[-79, -14, -37, 83, 84, -75, -23]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-51",
+            "NAME_0": "China",
+            "ID_1": 26,
+            "NAME_1": "Sichuan",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "四川",
+            "VARNAME_1": "Sìchuān"
+          }
+        },
+        {
+          "arcs": [[85, -43, -9, -39, -7, -42]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-12",
+            "NAME_0": "China",
+            "ID_1": 27,
+            "NAME_1": "Tianjin",
+            "TYPE_1": "Zhíxiáshì",
+            "ENGTYPE_1": "Municipality",
+            "NL_NAME_1": "天津|天津",
+            "VARNAME_1": "Tiānjīn"
+          }
+        },
+        {
+          "arcs": [[-25, -77, 86, 87]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-65",
+            "NAME_0": "China",
+            "ID_1": 28,
+            "NAME_1": "Xinjiang Uygur",
+            "TYPE_1": "Zìzhìqu",
+            "ENGTYPE_1": "Autonomous Region",
+            "NL_NAME_1": "新疆維吾爾自治區|新疆维吾尔自治区",
+            "VARNAME_1": "Xīnjiāng Wéiwúěr"
+          }
+        },
+        {
+          "arcs": [[-76, -85, 88, 89, -87]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-54",
+            "NAME_0": "China",
+            "ID_1": 29,
+            "NAME_1": "Xizang",
+            "TYPE_1": "Zìzhìqu",
+            "ENGTYPE_1": "Autonomous Region",
+            "NL_NAME_1": "西藏自治區|西藏自治区",
+            "VARNAME_1": "Tibet|Xīzàng"
+          }
+        },
+        {
+          "arcs": [[-36, -32, 90, -89, -84]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-53",
+            "NAME_0": "China",
+            "ID_1": 30,
+            "NAME_1": "Yunnan",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "雲南|云南",
+            "VARNAME_1": "Yúnnán"
+          }
+        },
+        {
+          "arcs": [[[91]], [[92]], [[-18, -64, -1, -62, -81, 93]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-33",
+            "NAME_0": "China",
+            "ID_1": 31,
+            "NAME_1": "Zhejiang",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "浙江",
+            "VARNAME_1": "Zhèjiāng"
+          }
+        },
+        {
+          "arcs": [[94]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-71",
+            "NAME_0": "China",
+            "ID_1": 32,
+            "NAME_1": "Taiwan",
+            "TYPE_1": "Shěng",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "台湾",
+            "VARNAME_1": "Táiwān"
+          }
+        },
+        {
+          "arcs": [[95]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-91",
+            "NAME_0": "China",
+            "ID_1": 33,
+            "NAME_1": "Hong Kong",
+            "TYPE_1": "Tèbié Xíngzhèngqū",
+            "ENGTYPE_1": "Special Administrative Region",
+            "NL_NAME_1": "香港",
+            "VARNAME_1": "Xiānggǎng"
+          }
+        },
+        {
+          "arcs": [[96]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 49,
+            "ISO": "CN-92",
+            "NAME_0": "China",
+            "ID_1": 34,
+            "NAME_1": "Macao",
+            "TYPE_1": "Tèbié Xíngzhèngqū",
+            "ENGTYPE_1": "Special Administrative Region",
+            "NL_NAME_1": "澳门",
+            "VARNAME_1": "Àomén"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/france-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/france-topo.json
new file mode 100644
index 0000000..3617560
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/france-topo.json
@@ -0,0 +1,8740 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [19730, 17629],
+      [56, -18],
+      [92, 19],
+      [55, -18],
+      [52, 40],
+      [104, -70],
+      [35, 33],
+      [39, -14],
+      [34, 33],
+      [60, -64],
+      [116, -36],
+      [62, -53],
+      [158, -30],
+      [6, -44],
+      [-86, -140],
+      [-32, -71],
+      [-31, -113],
+      [-60, -61],
+      [-47, -3],
+      [-22, -58],
+      [-73, -15],
+      [-13, -82],
+      [-101, -122],
+      [-80, -50],
+      [-69, -143],
+      [8, -159],
+      [-59, -61],
+      [-2, -53],
+      [-50, -150],
+      [-4, -37],
+      [22, -120],
+      [-79, -64],
+      [-43, -186],
+      [-38, -39],
+      [-65, -111],
+      [-1, -46],
+      [-32, -32]
+    ],
+    [
+      [19642, 15491],
+      [-92, 14],
+      [3, 50],
+      [-78, 25],
+      [11, 99],
+      [-194, 101],
+      [-59, 10],
+      [-21, 71],
+      [-39, 51],
+      [-118, 12]
+    ],
+    [
+      [19055, 15924],
+      [-30, 42],
+      [-95, 12],
+      [-64, 43],
+      [38, 48],
+      [-7, 121],
+      [46, 168],
+      [-4, 32]
+    ],
+    [
+      [18939, 16390],
+      [-71, 6],
+      [3, 46]
+    ],
+    [
+      [18871, 16442],
+      [138, -17],
+      [38, 47],
+      [36, 7],
+      [62, 83],
+      [37, 111],
+      [37, 53],
+      [-59, 5],
+      [-9, 74],
+      [74, 168],
+      [-27, 60],
+      [-70, 37],
+      [-28, 42],
+      [-37, -4],
+      [-84, 41],
+      [-3, -51],
+      [-31, -49],
+      [-60, 12],
+      [-64, 33],
+      [13, 102],
+      [-104, 60],
+      [-47, 7],
+      [-4, 59],
+      [35, 30],
+      [23, 63],
+      [61, -11],
+      [0, 70],
+      [32, 51],
+      [4, 50],
+      [36, 46],
+      [-15, 30],
+      [47, 33],
+      [11, -75],
+      [36, -91],
+      [69, 2],
+      [54, -60],
+      [44, 17],
+      [87, -35],
+      [-6, -36],
+      [57, -31],
+      [50, 30],
+      [32, -12],
+      [111, 39],
+      [131, -79],
+      [67, 64],
+      [13, 68],
+      [72, 144]
+    ],
+    [
+      [19642, 15491],
+      [-14, -94],
+      [-1, -101],
+      [62, -83],
+      [21, -61],
+      [-61, -100],
+      [0, -73],
+      [-39, -40],
+      [8, -91],
+      [-50, -132],
+      [28, -110],
+      [-54, -75],
+      [17, -98],
+      [66, -65],
+      [40, -71],
+      [-14, -57],
+      [-103, -69],
+      [9, -66],
+      [-24, -48],
+      [-84, -52],
+      [-47, -59],
+      [-56, -36],
+      [-74, 20],
+      [-54, -6],
+      [-87, -39],
+      [-18, 36],
+      [-94, 13],
+      [-9, 108],
+      [-60, 31]
+    ],
+    [
+      [18950, 14073],
+      [18, 50],
+      [-55, 61],
+      [-32, 95],
+      [-118, 15],
+      [-7, 46],
+      [23, 71],
+      [40, 46],
+      [-28, 80],
+      [15, 37],
+      [-39, 46],
+      [-58, 23],
+      [-55, 45],
+      [-114, 30],
+      [-29, 88]
+    ],
+    [
+      [18511, 14806],
+      [77, 23],
+      [37, 40],
+      [-33, 88],
+      [45, 54],
+      [-11, 78],
+      [35, 120],
+      [92, 57],
+      [49, 119],
+      [26, 17],
+      [51, 107],
+      [-39, 22],
+      [43, 103],
+      [30, 24],
+      [65, 160],
+      [77, 106]
+    ],
+    [
+      [9869, 9352],
+      [54, -24],
+      [-43, -77],
+      [33, -34],
+      [64, -5],
+      [-11, -50],
+      [-48, -21],
+      [-67, -116],
+      [-22, -68],
+      [19, -26],
+      [57, -11],
+      [2, -31],
+      [-68, -46],
+      [0, -54],
+      [59, 6],
+      [30, -36],
+      [-57, -62],
+      [84, -49],
+      [19, 12],
+      [142, -40],
+      [-32, -44],
+      [11, -102],
+      [76, -96]
+    ],
+    [
+      [10171, 8378],
+      [-61, -29],
+      [8, -75],
+      [42, -127],
+      [-30, -51],
+      [22, -54],
+      [-47, -22],
+      [-5, -32],
+      [-57, -10],
+      [-3, -76],
+      [-97, -32],
+      [-6, -48],
+      [38, -36],
+      [-9, -48],
+      [-45, -59],
+      [-26, 17],
+      [-70, -86],
+      [-68, -4],
+      [-52, -27],
+      [6, -87],
+      [-117, -127]
+    ],
+    [
+      [9594, 7365],
+      [-6, 43],
+      [-91, 45],
+      [-54, 62],
+      [-78, -18],
+      [-88, -87],
+      [-54, 12],
+      [-28, 56],
+      [29, 23],
+      [14, 66],
+      [-25, 55],
+      [-45, 26],
+      [-32, -38],
+      [-77, -19],
+      [-110, 4],
+      [-15, 56],
+      [-111, -21],
+      [-14, -49],
+      [-32, -15],
+      [-53, 29],
+      [-64, -19],
+      [-83, -56],
+      [-78, 37],
+      [-11, 69],
+      [-35, 101],
+      [-61, 62]
+    ],
+    [
+      [8392, 7789],
+      [-26, 27],
+      [-26, 120],
+      [28, -6],
+      [52, 49],
+      [-42, 41],
+      [-49, 10],
+      [-72, -60],
+      [-26, -47],
+      [-68, 19],
+      [-170, -4],
+      [-26, 50],
+      [-50, 24],
+      [68, 127],
+      [-44, 71],
+      [19, 79],
+      [35, 30],
+      [-7, 48],
+      [58, 127],
+      [-42, 100],
+      [-75, 13],
+      [-58, -39]
+    ],
+    [
+      [7871, 8568],
+      [5, 88],
+      [63, 117]
+    ],
+    [
+      [7939, 8773],
+      [80, 82],
+      [68, -3],
+      [25, -29],
+      [46, 2],
+      [91, 113],
+      [25, 61],
+      [49, -2],
+      [28, 58],
+      [-33, 112],
+      [33, 127],
+      [62, 92],
+      [71, 17],
+      [33, 41],
+      [84, 40],
+      [51, 87],
+      [63, 34],
+      [16, 77],
+      [-23, 63],
+      [114, 58],
+      [19, 62],
+      [65, 107]
+    ],
+    [
+      [8906, 9972],
+      [50, -62],
+      [127, 2],
+      [48, -47],
+      [-38, -117],
+      [41, -57],
+      [44, 7],
+      [9, -44],
+      [44, 13],
+      [45, 96],
+      [38, -51],
+      [81, 26],
+      [57, -20],
+      [62, 8],
+      [38, -113],
+      [59, -53],
+      [51, 26],
+      [71, -45],
+      [-72, -89],
+      [26, -38],
+      [42, 16],
+      [35, -53],
+      [42, 17],
+      [63, -42]
+    ],
+    [
+      [6824, 9087],
+      [104, -14],
+      [126, 21],
+      [2, -78],
+      [83, -26],
+      [63, 17],
+      [88, -60],
+      [16, -58],
+      [-21, -73],
+      [63, -123],
+      [24, 31],
+      [135, -66],
+      [29, -61],
+      [101, -46],
+      [74, -10],
+      [50, 57],
+      [36, 14],
+      [34, -47],
+      [40, 3]
+    ],
+    [
+      [8392, 7789],
+      [-67, -28],
+      [-28, 32],
+      [-64, -50],
+      [-64, -26],
+      [-26, -45],
+      [-55, -24],
+      [127, -91],
+      [-44, -106],
+      [-68, -57],
+      [-43, -14],
+      [-21, -82],
+      [-48, 13],
+      [-82, -113],
+      [6, -103],
+      [27, -13],
+      [-27, -77],
+      [46, -72],
+      [-73, -66],
+      [-77, -15],
+      [-11, -37],
+      [79, -94],
+      [2, -52],
+      [-85, -81],
+      [-81, -28]
+    ],
+    [
+      [7715, 6560],
+      [-83, 101],
+      [-48, -13],
+      [3, -135],
+      [-77, -27],
+      [-57, 20],
+      [-122, 15],
+      [-11, 64],
+      [20, 112],
+      [-71, 35],
+      [-3, 48],
+      [-74, 6],
+      [-59, 32],
+      [-16, 59],
+      [-151, 100],
+      [-4, 79],
+      [-67, 31],
+      [-22, -30],
+      [-64, 10],
+      [-72, -17],
+      [-10, -28],
+      [-99, -21],
+      [-115, 56],
+      [-81, -32],
+      [-56, 17],
+      [41, 110],
+      [-16, 62],
+      [-60, -7],
+      [-85, 54],
+      [-34, -68],
+      [-226, -80]
+    ],
+    [
+      [5996, 7113],
+      [3, 183],
+      [43, 74],
+      [29, 79],
+      [20, 107],
+      [75, -1],
+      [3, -29],
+      [90, -10],
+      [81, 25],
+      [18, 35],
+      [-59, 38],
+      [19, 29],
+      [-166, 155],
+      [-29, -13],
+      [-51, -98],
+      [-27, -19],
+      [-24, -64],
+      [-2, -57],
+      [-33, -15],
+      [12, 131],
+      [45, 351],
+      [32, 308],
+      [34, 418],
+      [29, 285],
+      [2, 262],
+      [14, 61],
+      [-7, 60],
+      [26, 84],
+      [58, 80],
+      [19, 58],
+      [79, -70],
+      [-48, -35],
+      [152, -153],
+      [50, -22],
+      [54, -80],
+      [93, -68],
+      [63, -76],
+      [64, -156],
+      [22, -95],
+      [3, -87],
+      [85, -250],
+      [58, -91],
+      [68, -79],
+      [35, 4],
+      [-28, 72],
+      [-52, 61],
+      [-49, 125],
+      [-1, 87],
+      [-27, 110],
+      [-17, 122],
+      [-30, 138]
+    ],
+    [
+      [7715, 6560],
+      [17, -55],
+      [1, -115],
+      [64, 8],
+      [130, -13],
+      [59, -45],
+      [157, -14],
+      [1, -33],
+      [-55, -53],
+      [-38, -129],
+      [-25, -13],
+      [24, -96]
+    ],
+    [
+      [8050, 6002],
+      [-32, -59],
+      [31, -98],
+      [-26, -37],
+      [-39, 3],
+      [-83, 68],
+      [40, 60],
+      [-64, 65],
+      [-13, -46],
+      [-90, -84],
+      [-35, 37],
+      [-80, -18],
+      [-36, -48],
+      [-50, -30],
+      [60, -45],
+      [-23, -56],
+      [29, -55],
+      [-7, -56],
+      [-37, -29],
+      [4, -55],
+      [34, -81],
+      [-82, -64],
+      [11, -87],
+      [-53, -127],
+      [42, 0],
+      [7, -71]
+    ],
+    [
+      [7558, 5089],
+      [-63, -2],
+      [-35, -56],
+      [-47, -19],
+      [-27, 24],
+      [-81, 15],
+      [-67, -42],
+      [-17, 33],
+      [45, 44],
+      [-27, 29],
+      [-160, -122],
+      [-22, 35],
+      [-51, -45],
+      [-90, 48],
+      [-77, -4],
+      [-1, -38],
+      [-95, 87],
+      [-52, -53],
+      [-27, 12],
+      [-53, -45],
+      [-59, 20],
+      [-46, -36],
+      [-100, 13],
+      [-7, -83],
+      [-218, 37],
+      [-63, 59],
+      [-181, -109],
+      [-48, 15],
+      [-73, -23],
+      [-74, 4],
+      [-17, 35],
+      [-43, 14],
+      [-35, 48],
+      [-68, -22]
+    ],
+    [
+      [5579, 4962],
+      [53, 107],
+      [66, 158],
+      [12, 132],
+      [31, 171],
+      [75, 352],
+      [93, 513],
+      [60, 470],
+      [27, 248]
+    ],
+    [
+      [9594, 7365],
+      [-96, -95],
+      [13, -205],
+      [56, -44],
+      [10, -112]
+    ],
+    [
+      [9577, 6909],
+      [-6, -29],
+      [-170, -15],
+      [-47, 57],
+      [-50, -45],
+      [13, -42],
+      [-41, -85],
+      [126, -78],
+      [-49, -85],
+      [16, -18],
+      [-41, -92],
+      [-32, -37],
+      [9, -58],
+      [-29, -51],
+      [-112, 43],
+      [-6, -62],
+      [-60, -31],
+      [-19, -91]
+    ],
+    [
+      [9079, 6190],
+      [-52, -16],
+      [-71, -77],
+      [-16, 42],
+      [-91, 84],
+      [-40, -43],
+      [-44, -18],
+      [-42, 23],
+      [-80, -17],
+      [-27, -61],
+      [-36, -1],
+      [-56, -46],
+      [-40, 16],
+      [-49, -17],
+      [-34, -38],
+      [-108, 41],
+      [-28, 31],
+      [-39, -18],
+      [-79, -88],
+      [-48, 20],
+      [-49, -5]
+    ],
+    [
+      [7783, 5083],
+      [15, -91],
+      [27, 10],
+      [40, -55],
+      [-8, -71],
+      [26, -60],
+      [-52, -5],
+      [-6, -68],
+      [41, -55],
+      [41, 78],
+      [41, -50],
+      [-22, -107],
+      [51, -66],
+      [-25, -44],
+      [-58, 5],
+      [-30, -61],
+      [5, -45],
+      [35, -32],
+      [-41, -82],
+      [-45, -26],
+      [10, -104],
+      [-75, 5],
+      [-46, -117],
+      [-80, -65],
+      [11, -112],
+      [-51, -40],
+      [-57, 11],
+      [-6, -65],
+      [-36, -10],
+      [-3, -102],
+      [16, -43],
+      [-69, -90],
+      [26, -79],
+      [-10, -44],
+      [32, -25]
+    ],
+    [
+      [7480, 3378],
+      [-89, -12],
+      [-52, -68],
+      [-47, 4],
+      [-47, -22],
+      [-99, 67],
+      [-32, -77],
+      [-58, -25],
+      [-10, 61],
+      [-41, -11],
+      [-3, 63],
+      [-72, 58],
+      [-47, 63],
+      [-29, -9],
+      [-54, 44],
+      [0, 110],
+      [-30, 48],
+      [-49, -6],
+      [-38, -29],
+      [-86, -2],
+      [-70, 30],
+      [-38, -26],
+      [-63, 25],
+      [-55, 64],
+      [-95, 15],
+      [-63, 54],
+      [-105, 25],
+      [-49, 44],
+      [-54, -21],
+      [-94, 62],
+      [14, 52],
+      [45, 60],
+      [-76, -12],
+      [-40, -46],
+      [2, -85],
+      [-15, -64],
+      [-135, 42],
+      [-48, 81],
+      [1, 23],
+      [86, 85],
+      [22, 114],
+      [26, 23],
+      [1, 149],
+      [-45, 46],
+      [-39, -16],
+      [-82, 34],
+      [-22, 27],
+      [-78, -31],
+      [-28, -67],
+      [-65, 16],
+      [-21, 63],
+      [10, 44],
+      [-71, 23],
+      [-92, -41],
+      [-15, 75],
+      [-73, 57],
+      [0, 42],
+      [72, 17],
+      [171, 77],
+      [46, 45],
+      [48, 99],
+      [33, 42],
+      [36, 81]
+    ],
+    [
+      [7558, 5089],
+      [102, 27],
+      [22, -34],
+      [101, 1]
+    ],
+    [
+      [7789, 4605],
+      [9, -92],
+      [-35, -48],
+      [53, -13],
+      [17, 107],
+      [-44, 46]
+    ],
+    [
+      [7795, 4438],
+      [-44, 15],
+      [-35, -82],
+      [34, -70],
+      [44, 29],
+      [16, 41],
+      [-15, 67]
+    ],
+    [
+      [12618, 12449],
+      [27, -85],
+      [52, -46],
+      [71, -23],
+      [59, -84],
+      [57, -28],
+      [99, 85],
+      [46, 0],
+      [31, -63],
+      [74, 5],
+      [22, 50],
+      [83, 0],
+      [23, -50],
+      [10, -88],
+      [48, 19],
+      [52, 57],
+      [43, -14],
+      [1, 60],
+      [73, 46],
+      [-28, 55],
+      [80, 0]
+    ],
+    [
+      [13541, 12345],
+      [-11, -20],
+      [74, -157],
+      [39, -25],
+      [28, -116],
+      [32, -16],
+      [10, -100],
+      [23, -55],
+      [86, -36],
+      [39, 25],
+      [42, -43],
+      [2, -53],
+      [42, -20],
+      [37, 35],
+      [65, -13],
+      [62, -58],
+      [6, -56],
+      [-38, -98],
+      [21, -63],
+      [-12, -120],
+      [-126, -57],
+      [-4, -40]
+    ],
+    [
+      [13958, 11259],
+      [-47, -28],
+      [-95, -15],
+      [-8, -43],
+      [-45, -26],
+      [32, -42],
+      [-4, -119],
+      [18, -107],
+      [28, -46],
+      [-24, -85],
+      [33, -121],
+      [-6, -28],
+      [-64, -35],
+      [-61, -14],
+      [-50, 17],
+      [-25, -99]
+    ],
+    [
+      [13640, 10468],
+      [-24, 58],
+      [-60, 21],
+      [-59, 114],
+      [-36, 6],
+      [-141, -8],
+      [-30, 32],
+      [-21, 82],
+      [-52, 24],
+      [-78, -45],
+      [-57, -3],
+      [-74, 29],
+      [-80, -5],
+      [-28, 25],
+      [-85, -19],
+      [-91, 36],
+      [-15, 68],
+      [-63, -25],
+      [-52, 4],
+      [-35, 47],
+      [-35, -3],
+      [-43, 107],
+      [-43, 13],
+      [0, 88],
+      [32, 19],
+      [0, 51],
+      [-119, 31],
+      [-62, -34],
+      [-3, -84],
+      [-47, -15],
+      [-84, 57],
+      [-15, -96],
+      [-72, -22],
+      [-34, -107],
+      [-26, -14],
+      [-111, 55]
+    ],
+    [
+      [11897, 10955],
+      [-10, 71],
+      [-47, 25],
+      [-21, 123],
+      [-41, 26],
+      [-28, 83],
+      [-42, 20],
+      [-88, 85],
+      [-44, -20],
+      [-67, 26],
+      [-3, 95],
+      [-40, 16],
+      [-9, 86]
+    ],
+    [
+      [11457, 11591],
+      [6, 70],
+      [32, 56],
+      [97, 98],
+      [120, 6],
+      [57, 27],
+      [83, -30],
+      [115, 73],
+      [-19, 101],
+      [-33, 26],
+      [24, 91],
+      [-34, 29],
+      [94, 30],
+      [71, 74],
+      [42, 79],
+      [40, 21],
+      [20, -40],
+      [48, -27],
+      [29, 34],
+      [53, 4],
+      [81, 79],
+      [123, 78],
+      [112, -21]
+    ],
+    [
+      [12728, 9146],
+      [15, -62],
+      [-19, -25],
+      [18, -72],
+      [75, 10],
+      [102, -40],
+      [-7, -60],
+      [24, -63],
+      [53, -20],
+      [-17, -82],
+      [41, -122],
+      [20, 9],
+      [79, -45],
+      [-62, -55],
+      [-21, -103],
+      [60, -24],
+      [40, -81],
+      [-3, -43]
+    ],
+    [
+      [13126, 8268],
+      [-116, -103],
+      [-64, 12],
+      [-28, -50],
+      [13, -48],
+      [-69, -61],
+      [-39, 29],
+      [-34, 63],
+      [-62, -41],
+      [-12, -67],
+      [-72, -117],
+      [0, -92],
+      [-26, -33],
+      [-3, -76],
+      [-21, -11],
+      [-53, -154]
+    ],
+    [
+      [12540, 7519],
+      [-66, 75],
+      [-24, 118],
+      [16, 119],
+      [-21, 31],
+      [-47, -14],
+      [-53, 145],
+      [-6, 47],
+      [-72, 4],
+      [-41, 32],
+      [-4, 51],
+      [-59, 70],
+      [-49, -76],
+      [-37, 0],
+      [-45, -86],
+      [-37, 6],
+      [-38, -67],
+      [-7, -113],
+      [-55, -36],
+      [-16, -48],
+      [3, -80],
+      [-86, -77],
+      [-17, -69],
+      [-33, -36],
+      [-50, -7],
+      [-84, 22],
+      [-47, -19],
+      [-41, 64],
+      [-59, -6],
+      [-120, -52],
+      [-1, -65]
+    ],
+    [
+      [11344, 7452],
+      [-59, 52],
+      [-5, 53],
+      [20, 30],
+      [-38, 57],
+      [-10, 54],
+      [8, 70],
+      [28, 85],
+      [-8, 50],
+      [-41, 27],
+      [-84, 140],
+      [35, 59],
+      [-49, 55],
+      [7, 39],
+      [-28, 57]
+    ],
+    [
+      [11120, 8280],
+      [48, 21],
+      [61, 0],
+      [12, 45],
+      [-37, 38],
+      [-34, 78],
+      [75, 70],
+      [45, -12],
+      [23, 81],
+      [-14, 45],
+      [49, 25],
+      [17, 54],
+      [-29, 25],
+      [-12, 90],
+      [70, 64],
+      [46, 94],
+      [32, -3],
+      [39, 77],
+      [58, 18],
+      [24, 129],
+      [-29, 54],
+      [48, 9],
+      [93, -67],
+      [127, -6],
+      [-9, 47],
+      [-47, 37],
+      [33, 138]
+    ],
+    [
+      [11809, 9431],
+      [55, 1],
+      [59, -60],
+      [36, 2],
+      [84, -43],
+      [44, 6],
+      [-11, -65],
+      [51, -64],
+      [41, 27],
+      [68, -20],
+      [47, 37],
+      [120, -49],
+      [42, -39],
+      [44, -122],
+      [107, -50],
+      [64, 45],
+      [6, 56],
+      [62, 53]
+    ],
+    [
+      [13955, 9152],
+      [32, -6],
+      [32, 39],
+      [61, 10],
+      [22, -45],
+      [47, -25],
+      [34, 24],
+      [54, 0],
+      [62, 29],
+      [37, 36],
+      [57, 18],
+      [31, -22],
+      [67, 7],
+      [42, -58],
+      [56, 25],
+      [63, -24],
+      [23, -52],
+      [-49, -44],
+      [53, -40],
+      [-25, -54],
+      [33, -40],
+      [75, 35],
+      [98, -89]
+    ],
+    [
+      [14860, 8876],
+      [-17, -130],
+      [-37, -41],
+      [-15, -95],
+      [-42, 47],
+      [-54, 8],
+      [-6, -38],
+      [38, -52],
+      [-59, -13],
+      [-17, -79],
+      [47, -28],
+      [1, -38],
+      [-43, -20],
+      [-51, 5],
+      [-42, -74],
+      [36, -56],
+      [-89, -30],
+      [-51, 7],
+      [-11, -68],
+      [-50, -58],
+      [-7, -50],
+      [-36, -28],
+      [-74, 9],
+      [-61, -24],
+      [-47, 12],
+      [-62, -113],
+      [-82, 2],
+      [-32, -126],
+      [-75, -29],
+      [-21, -30]
+    ],
+    [
+      [13901, 7746],
+      [-36, 8],
+      [-9, 64],
+      [-41, -17],
+      [-97, 161],
+      [-120, -21],
+      [11, 58],
+      [-45, 53],
+      [-76, -3],
+      [4, -39],
+      [-45, -57],
+      [-95, -22],
+      [-31, -41],
+      [-48, 57],
+      [-32, 112],
+      [-39, 86],
+      [-11, 90],
+      [-26, -9],
+      [-39, 42]
+    ],
+    [
+      [12728, 9146],
+      [120, -5],
+      [58, 40],
+      [27, 58],
+      [79, 11],
+      [34, 43],
+      [32, -49],
+      [40, 59],
+      [37, -49],
+      [117, -2],
+      [37, 45],
+      [118, -60],
+      [21, 19],
+      [33, -104],
+      [42, -43],
+      [70, 57],
+      [148, -16],
+      [47, 6],
+      [3, 60],
+      [69, -4],
+      [26, -49],
+      [69, -11]
+    ],
+    [
+      [13640, 10468],
+      [43, -19],
+      [51, -84],
+      [-55, -82],
+      [12, -46],
+      [-41, -107],
+      [44, -17],
+      [-2, -47],
+      [44, -20],
+      [41, -81],
+      [-7, -48],
+      [71, -134],
+      [51, -16],
+      [38, -49],
+      [41, -16],
+      [72, -94],
+      [-12, -28],
+      [29, -99],
+      [31, -33],
+      [-28, -33],
+      [12, -53],
+      [-118, -89],
+      [-13, -37],
+      [11, -84]
+    ],
+    [
+      [11809, 9431],
+      [15, 92],
+      [-4, 81],
+      [-30, 6],
+      [-51, 87],
+      [23, 31],
+      [12, 75],
+      [43, -3],
+      [1, 60],
+      [22, 38],
+      [-11, 67],
+      [-46, 60]
+    ],
+    [
+      [11783, 10025],
+      [-89, 74],
+      [-5, 43],
+      [-66, 89],
+      [92, 42],
+      [-7, 48],
+      [76, -6],
+      [30, 52],
+      [64, 56],
+      [-17, 20],
+      [41, 87],
+      [59, 20],
+      [-22, 68],
+      [15, 84],
+      [-45, 32],
+      [-35, 91],
+      [0, 74],
+      [23, 56]
+    ],
+    [
+      [11519, 16929],
+      [51, -23],
+      [26, -42],
+      [215, 33],
+      [33, -80],
+      [62, -18]
+    ],
+    [
+      [11906, 16799],
+      [-37, -46],
+      [-11, -87],
+      [-35, -10],
+      [37, -75],
+      [-36, -31],
+      [-1, -49],
+      [-31, -103],
+      [25, -17],
+      [-18, -58],
+      [4, -125],
+      [26, -59],
+      [-61, -50],
+      [-50, -20],
+      [-73, -121]
+    ],
+    [
+      [11645, 15948],
+      [-50, -28],
+      [-89, 49],
+      [-19, -43],
+      [-48, 9],
+      [-96, 68],
+      [-38, -48],
+      [-43, -21],
+      [11, -37],
+      [-169, -7],
+      [-14, -21],
+      [-76, 0]
+    ],
+    [
+      [11014, 15869],
+      [-54, 51],
+      [36, 45],
+      [-18, 27],
+      [25, 55],
+      [-15, 81],
+      [-59, 52],
+      [-26, 82]
+    ],
+    [
+      [10903, 16262],
+      [-8, 36],
+      [69, 141],
+      [-37, 61],
+      [123, -9],
+      [27, 108],
+      [35, 29],
+      [-58, 57],
+      [21, 83],
+      [75, 16],
+      [43, 66],
+      [-15, 50],
+      [116, 49],
+      [19, 35],
+      [60, 8]
+    ],
+    [
+      [11373, 16992],
+      [66, -36],
+      [22, -60],
+      [58, 33]
+    ],
+    [
+      [11536, 17086],
+      [-17, -157]
+    ],
+    [
+      [11373, 16992],
+      [-77, 87],
+      [-40, 11],
+      [-1, 119],
+      [30, 57],
+      [48, 30]
+    ],
+    [
+      [11333, 17296],
+      [103, 86],
+      [37, 11]
+    ],
+    [
+      [11473, 17393],
+      [67, -22],
+      [-32, -63],
+      [9, -31]
+    ],
+    [
+      [11517, 17277],
+      [-136, -72],
+      [-12, -36],
+      [46, -38],
+      [121, -45]
+    ],
+    [
+      [11666, 17160],
+      [79, -24],
+      [-9, -47],
+      [-90, 25],
+      [-60, -30],
+      [-50, 2]
+    ],
+    [
+      [11517, 17277],
+      [108, 2],
+      [37, -65],
+      [4, -54]
+    ],
+    [
+      [13318, 17166],
+      [0, -61],
+      [-63, -31],
+      [-4, -62],
+      [-49, -3],
+      [-20, -51],
+      [108, -52],
+      [6, -118],
+      [-44, -34],
+      [53, -80],
+      [24, 22],
+      [98, -61]
+    ],
+    [
+      [13427, 16635],
+      [-73, -34],
+      [-67, -81],
+      [26, -47],
+      [-48, -48],
+      [-70, -2],
+      [45, -71],
+      [-78, -44],
+      [33, -56],
+      [-20, -65],
+      [43, -22],
+      [-9, -58]
+    ],
+    [
+      [13209, 16107],
+      [-46, 20],
+      [-33, -54],
+      [-82, -6],
+      [-42, 20],
+      [-50, -38],
+      [-72, -2],
+      [-36, 24],
+      [-64, -4],
+      [-63, -34],
+      [-76, 5],
+      [-14, -71],
+      [-39, -50],
+      [44, -81],
+      [-59, -143],
+      [-53, -14],
+      [-57, -57],
+      [3, -35]
+    ],
+    [
+      [12470, 15587],
+      [-108, -17],
+      [-71, -60],
+      [-61, 86],
+      [-40, -50],
+      [-75, -47],
+      [-65, -10],
+      [-39, 42],
+      [-95, -16],
+      [-62, 20],
+      [-24, -36],
+      [-95, 30],
+      [96, 139],
+      [-26, 91],
+      [-34, 1],
+      [-99, 64],
+      [1, 75],
+      [-28, 49]
+    ],
+    [
+      [11906, 16799],
+      [-5, 39],
+      [41, 52],
+      [-11, 28],
+      [29, 67],
+      [-22, 79]
+    ],
+    [
+      [11938, 17064],
+      [6, 15],
+      [-57, 163],
+      [41, 23],
+      [10, 124],
+      [-40, 60],
+      [21, 26],
+      [-41, 53]
+    ],
+    [
+      [11878, 17528],
+      [41, 84],
+      [16, 76]
+    ],
+    [
+      [11935, 17688],
+      [67, 66],
+      [91, -73],
+      [49, 9],
+      [17, -46],
+      [40, 6],
+      [74, 79],
+      [56, -29],
+      [17, -34],
+      [70, 35],
+      [113, -24],
+      [126, 62],
+      [24, 36]
+    ],
+    [
+      [12679, 17775],
+      [144, -41],
+      [-14, -33],
+      [54, -81],
+      [-30, -86],
+      [121, -88],
+      [31, -84],
+      [54, 26],
+      [13, -63],
+      [26, -31],
+      [49, 27],
+      [32, -106],
+      [159, -49]
+    ],
+    [
+      [11938, 17064],
+      [-36, 39],
+      [-112, 81],
+      [-124, -24]
+    ],
+    [
+      [11473, 17393],
+      [11, 35],
+      [130, 11],
+      [38, -34],
+      [81, -3],
+      [80, 60],
+      [65, 66]
+    ],
+    [
+      [11333, 17296],
+      [8, 94],
+      [-50, 8],
+      [2, 46],
+      [-73, 36],
+      [-1, 45],
+      [-65, 14],
+      [-90, -32],
+      [-70, 42],
+      [-67, 6],
+      [-45, 60],
+      [-72, -63],
+      [-17, 30],
+      [22, 55],
+      [-65, 44],
+      [-154, -73],
+      [-46, 27],
+      [-36, 51],
+      [-95, -2]
+    ],
+    [
+      [10419, 17684],
+      [72, 120],
+      [32, 188],
+      [43, 46]
+    ],
+    [
+      [10566, 18038],
+      [56, -20],
+      [-38, -40],
+      [41, -60],
+      [53, 12],
+      [164, -52],
+      [141, 48],
+      [39, -18],
+      [35, 30],
+      [91, 42],
+      [23, -39],
+      [88, -14],
+      [24, -44],
+      [80, 33],
+      [33, -63],
+      [70, 19],
+      [22, 55],
+      [32, 1],
+      [58, -85],
+      [126, -3],
+      [90, -54],
+      [-14, -37],
+      [107, -20],
+      [48, -41]
+    ],
+    [
+      [10903, 16262],
+      [-28, -40],
+      [-88, 15],
+      [-20, 47],
+      [-50, 2],
+      [-39, 102],
+      [16, 94],
+      [-40, 41],
+      [-80, 15],
+      [9, 80],
+      [-76, 2],
+      [-39, 71],
+      [-59, 42],
+      [13, 58],
+      [-44, 36],
+      [66, 103],
+      [-62, 33],
+      [-13, 50],
+      [21, 73],
+      [-11, 93],
+      [-57, 34],
+      [27, 41],
+      [-39, 72],
+      [-57, 44]
+    ],
+    [
+      [10253, 17370],
+      [-10, 57],
+      [-38, 20],
+      [10, 92],
+      [-30, 27],
+      [-16, 62],
+      [61, -4],
+      [53, 38],
+      [128, 35],
+      [8, -13]
+    ],
+    [
+      [8571, 17392],
+      [-55, 50],
+      [-32, -52],
+      [-36, -16],
+      [-38, 26],
+      [-108, -27],
+      [-80, -3],
+      [-49, -36],
+      [-30, 58],
+      [-109, -56],
+      [-14, -54],
+      [-102, -43],
+      [-6, -17],
+      [-108, -74],
+      [-95, -27],
+      [-190, 48],
+      [-48, -10],
+      [-72, -62],
+      [-101, 110],
+      [-83, 2],
+      [-70, -57],
+      [-62, 1],
+      [-115, -44],
+      [-103, 44],
+      [14, -56],
+      [-96, -69],
+      [-56, -12],
+      [-43, -61],
+      [-51, -18]
+    ],
+    [
+      [6633, 16937],
+      [-125, 44],
+      [-41, 36],
+      [-41, -29],
+      [-129, -2],
+      [-39, 13],
+      [-28, 80],
+      [-86, 26],
+      [86, 94],
+      [66, 25],
+      [58, 64],
+      [1, 48],
+      [-69, 13],
+      [14, 61],
+      [102, -17],
+      [72, 37],
+      [45, 51],
+      [15, 50],
+      [66, 35],
+      [-21, 65],
+      [-16, 169],
+      [-79, 49],
+      [56, 126],
+      [-30, 38],
+      [-79, -64],
+      [-80, 23],
+      [-20, 41],
+      [-59, 26],
+      [-32, 45],
+      [-58, 44],
+      [-10, 87],
+      [41, 39],
+      [-7, 41]
+    ],
+    [
+      [6206, 18295],
+      [0, 34],
+      [72, 72],
+      [96, 13],
+      [116, -4],
+      [58, -44],
+      [100, -39],
+      [166, -25],
+      [119, -2],
+      [81, -15],
+      [120, 12],
+      [103, -23],
+      [59, 2],
+      [71, -25],
+      [122, -72],
+      [92, -38],
+      [27, 19],
+      [87, 3],
+      [88, 27],
+      [165, 72],
+      [91, 73],
+      [92, 95],
+      [147, 58],
+      [108, 11]
+    ],
+    [
+      [8386, 18499],
+      [6, 0]
+    ],
+    [
+      [8392, 18499],
+      [18, -107],
+      [-11, -35],
+      [34, -72],
+      [-26, -49],
+      [24, -51],
+      [67, -3],
+      [26, -71],
+      [-94, -36],
+      [24, -40],
+      [87, -55],
+      [-10, -124],
+      [70, -25],
+      [-51, -95],
+      [13, -55],
+      [-44, -13],
+      [9, -78],
+      [61, -11],
+      [33, -30],
+      [-51, -157]
+    ],
+    [
+      [6633, 16937],
+      [68, -99],
+      [87, -65],
+      [-50, -55],
+      [31, -85],
+      [-35, -132],
+      [-46, -28],
+      [-65, -66],
+      [-20, -45]
+    ],
+    [
+      [6603, 16362],
+      [-55, -15],
+      [-43, 42],
+      [-46, 8],
+      [-31, -50],
+      [-45, -13],
+      [-89, 60],
+      [-15, -16]
+    ],
+    [
+      [6279, 16378],
+      [-73, 30],
+      [-44, -9],
+      [-32, 29],
+      [-128, 31],
+      [-36, -23],
+      [-9, -56],
+      [-97, -46],
+      [-8, -37],
+      [-56, -37],
+      [-69, 12],
+      [-41, 59],
+      [-55, 3],
+      [-9, 44],
+      [-58, 94],
+      [19, 41],
+      [-28, 69],
+      [-42, 40],
+      [-19, 60]
+    ],
+    [
+      [5494, 16682],
+      [78, 2],
+      [31, -24],
+      [54, 18],
+      [98, 9],
+      [-78, 64],
+      [-64, 32],
+      [-51, 105],
+      [-57, 28],
+      [-3, 175],
+      [-17, 71],
+      [17, 69],
+      [24, 261],
+      [-45, 32],
+      [-35, 152],
+      [-2, 53],
+      [28, 84],
+      [-33, 189],
+      [-40, 7],
+      [-31, 84],
+      [-73, 142],
+      [-105, 118],
+      [-52, 4],
+      [-22, 65],
+      [-6, 128],
+      [-28, 35],
+      [-11, 89],
+      [-57, 54],
+      [75, 93],
+      [-9, 109],
+      [-45, 85],
+      [-98, 29],
+      [-15, 84],
+      [41, 44],
+      [77, -44],
+      [52, 7],
+      [21, -46],
+      [78, -23],
+      [94, -4],
+      [64, -48],
+      [66, 4],
+      [40, -33],
+      [52, 26],
+      [93, 10],
+      [114, 88],
+      [84, 16],
+      [144, -32],
+      [71, -85],
+      [21, -113],
+      [-40, 14],
+      [-18, -47],
+      [-59, -43],
+      [4, -91],
+      [84, -129],
+      [103, -124],
+      [34, -72],
+      [-27, -57],
+      [47, -9],
+      [44, -42]
+    ],
+    [
+      [8571, 17392],
+      [-42, -92],
+      [88, -67],
+      [49, 13],
+      [34, -19],
+      [82, -9],
+      [56, 9],
+      [52, -59],
+      [-18, -47],
+      [127, -88],
+      [63, -19],
+      [68, -111],
+      [-37, -76],
+      [27, -77],
+      [72, -1]
+    ],
+    [
+      [9192, 16749],
+      [13, -45],
+      [-2, -96],
+      [37, 1],
+      [5, -53],
+      [28, -28],
+      [90, -32],
+      [-2, -50],
+      [67, -32],
+      [-23, -101],
+      [-26, -10],
+      [30, -70],
+      [-11, -100],
+      [-63, -72],
+      [-123, -64],
+      [-66, -4],
+      [-44, -92],
+      [63, -20],
+      [-16, -69],
+      [65, -115],
+      [-49, -39]
+    ],
+    [
+      [9165, 15658],
+      [-59, -33],
+      [-55, 42],
+      [-56, 97],
+      [-54, 52],
+      [-61, -47],
+      [-102, 17],
+      [-81, 76],
+      [17, 24],
+      [-117, 34],
+      [-53, 29],
+      [-35, 204],
+      [14, 33],
+      [-29, 62],
+      [-101, 65],
+      [-123, -14],
+      [-71, -23],
+      [-29, -59],
+      [-65, -13],
+      [-13, -44],
+      [-55, -17],
+      [-69, -59],
+      [-30, 36],
+      [-90, -32]
+    ],
+    [
+      [7848, 16088],
+      [-4, 108],
+      [10, 50],
+      [-89, -6],
+      [-62, 24],
+      [-28, 129],
+      [34, 29],
+      [-97, 80],
+      [-54, 13],
+      [-28, -44],
+      [27, -27],
+      [-39, -38],
+      [-80, 5],
+      [-26, -47],
+      [-48, -21],
+      [-122, 50],
+      [-48, -31],
+      [-48, 17],
+      [-68, -82],
+      [-62, -5],
+      [-94, -60],
+      [-6, 69],
+      [-104, -3],
+      [15, -52],
+      [-63, -32],
+      [-33, 65],
+      [-59, 14],
+      [-69, 69]
+    ],
+    [
+      [14292, 13202],
+      [-1, 53],
+      [103, 10]
+    ],
+    [
+      [14394, 13265],
+      [8, -37],
+      [-57, -47],
+      [-53, 21]
+    ],
+    [
+      [15201, 15259],
+      [70, -37],
+      [62, 8],
+      [-2, -97],
+      [88, -11],
+      [31, -44],
+      [-48, -79],
+      [35, -26],
+      [28, 55],
+      [48, -7],
+      [74, -114],
+      [12, -60],
+      [50, -48],
+      [-12, -37],
+      [-105, -61],
+      [10, -38],
+      [53, 3],
+      [19, -70],
+      [-26, -65],
+      [26, -29],
+      [131, 11],
+      [-14, -45],
+      [125, -62],
+      [50, 68],
+      [20, -56],
+      [59, -27],
+      [40, -57],
+      [29, -93],
+      [78, 71],
+      [104, -6]
+    ],
+    [
+      [16236, 14306],
+      [40, -17],
+      [40, 80],
+      [82, -61],
+      [28, -134],
+      [-76, -117],
+      [-75, 7],
+      [-30, -76],
+      [95, -45],
+      [-17, -57],
+      [33, -86],
+      [70, 10],
+      [-3, -108],
+      [-32, -60],
+      [69, -25]
+    ],
+    [
+      [16460, 13617],
+      [-47, -37],
+      [-14, -160],
+      [-46, -35],
+      [14, -48],
+      [-30, -90],
+      [-38, -23],
+      [-45, -117],
+      [-95, -18],
+      [-63, -63],
+      [-12, -45],
+      [65, -25],
+      [-66, -41],
+      [-30, -42]
+    ],
+    [
+      [16053, 12873],
+      [-51, 21],
+      [-89, -57],
+      [-139, -7],
+      [-39, 47],
+      [-71, -21],
+      [-10, -26],
+      [-127, 16],
+      [-34, -38],
+      [-134, -42],
+      [-42, -33],
+      [-54, 13],
+      [-91, -54],
+      [-29, 26],
+      [19, 42],
+      [-128, 50],
+      [-43, 89],
+      [-31, 10],
+      [11, 56],
+      [-66, -18],
+      [-35, 46],
+      [-97, 19],
+      [-32, 22],
+      [-5, 74],
+      [-91, -22],
+      [8, 56],
+      [-112, 25],
+      [-39, 54],
+      [-64, 55]
+    ],
+    [
+      [14438, 13276],
+      [3, 59],
+      [29, 36],
+      [-18, 52],
+      [-64, 76],
+      [-66, -35],
+      [-15, 28],
+      [-15, 133],
+      [23, 30],
+      [-38, 42]
+    ],
+    [
+      [14277, 13697],
+      [0, 62],
+      [-43, 36],
+      [-8, 73],
+      [72, 68],
+      [14, 62],
+      [-20, 32],
+      [-2, 70],
+      [36, 11],
+      [28, 71],
+      [26, 0],
+      [62, 177],
+      [54, 71],
+      [28, 104],
+      [-38, 46],
+      [30, 38],
+      [50, -18],
+      [59, 53],
+      [-17, 127],
+      [7, 82],
+      [-96, -7],
+      [3, 63],
+      [45, 124]
+    ],
+    [
+      [14567, 15042],
+      [30, 84],
+      [61, -13],
+      [99, 26],
+      [47, -27],
+      [75, 27],
+      [100, 8],
+      [-38, 80],
+      [66, 50],
+      [59, 7],
+      [87, -37],
+      [48, 12]
+    ],
+    [
+      [14438, 13276],
+      [-44, -11]
+    ],
+    [
+      [14292, 13202],
+      [-85, -6],
+      [-34, -94],
+      [50, -50],
+      [-21, -96],
+      [-31, -72],
+      [25, -57],
+      [-21, -29],
+      [7, -105],
+      [37, -10],
+      [41, -56],
+      [-6, -35],
+      [-66, -44],
+      [21, -120],
+      [-36, 3],
+      [-117, -48],
+      [-54, -57],
+      [-60, -30],
+      [-68, -14],
+      [-29, -42],
+      [-49, -4],
+      [-17, 78],
+      [-70, 37],
+      [-119, -33],
+      [-49, 27]
+    ],
+    [
+      [12618, 12449],
+      [39, 70],
+      [18, 62],
+      [-12, 103],
+      [-17, 27],
+      [43, 102],
+      [-22, 54],
+      [17, 121],
+      [-18, 37],
+      [-63, 40],
+      [14, 67],
+      [-5, 82],
+      [-47, 166],
+      [-29, 65],
+      [6, 70],
+      [-108, 111],
+      [-48, 23],
+      [-18, 55],
+      [76, 157],
+      [18, 69],
+      [-88, 183]
+    ],
+    [
+      [12374, 14113],
+      [-35, 34],
+      [8, 37],
+      [63, 7],
+      [26, 26],
+      [68, -20],
+      [28, 28]
+    ],
+    [
+      [12532, 14225],
+      [62, -26],
+      [65, 25],
+      [45, 41],
+      [37, -7],
+      [17, -102],
+      [65, -50],
+      [61, 13],
+      [47, -77],
+      [62, 5],
+      [16, 28],
+      [84, -57],
+      [63, 20],
+      [17, 43],
+      [90, -6],
+      [60, -23],
+      [10, 63],
+      [30, 13],
+      [58, -54],
+      [43, -13],
+      [5, -83],
+      [149, -33],
+      [55, -93],
+      [37, -23],
+      [68, 19],
+      [47, -56],
+      [79, 123],
+      [45, -55],
+      [-50, -39],
+      [16, -60],
+      [57, 34],
+      [86, -37],
+      [13, -70],
+      [43, -52],
+      [39, 3],
+      [35, 59],
+      [89, -1]
+    ],
+    [
+      [16053, 12873],
+      [12, -60],
+      [68, -39],
+      [33, -108],
+      [49, -12],
+      [48, 23],
+      [37, -74],
+      [68, -15],
+      [0, -56],
+      [-130, -9],
+      [-72, -32],
+      [6, -35],
+      [89, -63],
+      [-36, -41],
+      [-8, -44],
+      [45, -16],
+      [49, -122],
+      [-11, -44],
+      [39, -37],
+      [-41, -53],
+      [-13, -76],
+      [-58, -33],
+      [-14, -108],
+      [96, -45],
+      [-2, -46],
+      [-71, -46],
+      [-78, 5],
+      [-20, -36]
+    ],
+    [
+      [16138, 11651],
+      [-57, 4],
+      [-90, 45],
+      [-22, 91],
+      [-93, 2],
+      [-133, -56],
+      [-115, 71],
+      [-41, -26],
+      [-28, 24],
+      [-31, -60],
+      [-2, -60],
+      [-31, -38],
+      [-9, -97],
+      [-46, -81],
+      [-11, -96],
+      [-63, -164],
+      [-47, -178]
+    ],
+    [
+      [15319, 11032],
+      [-79, 6],
+      [-12, 40],
+      [23, 83],
+      [-48, 41],
+      [3, 77],
+      [-42, 46],
+      [-64, -7],
+      [-33, -48],
+      [-47, -27],
+      [-45, 59],
+      [-30, -56],
+      [-53, -7],
+      [-24, 48],
+      [-82, 26],
+      [-57, -35],
+      [-16, -147]
+    ],
+    [
+      [14713, 11131],
+      [-38, -49],
+      [-57, -31],
+      [-68, -65],
+      [-58, 72],
+      [-60, 15],
+      [-43, -48],
+      [-70, 8],
+      [-45, 49],
+      [-68, -23],
+      [-50, -44],
+      [-60, 1],
+      [-37, 76],
+      [-74, 2],
+      [-41, 24],
+      [28, 106],
+      [-14, 35]
+    ],
+    [
+      [12532, 14225],
+      [-56, 66],
+      [-12, 66],
+      [33, 43],
+      [-55, 55],
+      [9, 29],
+      [-116, 79],
+      [11, 103],
+      [88, 18],
+      [35, -14],
+      [82, 52],
+      [54, 1],
+      [-15, 104],
+      [30, 27],
+      [-34, 72],
+      [0, 68],
+      [145, 97],
+      [35, 58],
+      [-11, 85],
+      [-29, 30],
+      [-11, 72],
+      [-69, 42],
+      [-36, 134],
+      [-21, 29],
+      [-119, 46]
+    ],
+    [
+      [13209, 16107],
+      [55, -40],
+      [84, -17],
+      [62, -71],
+      [-1, -33],
+      [67, -49],
+      [-8, -36],
+      [51, -24],
+      [14, -38],
+      [-35, -39],
+      [31, -30],
+      [-72, -85],
+      [29, -23],
+      [72, 14],
+      [42, -104],
+      [59, 13],
+      [61, 51],
+      [36, -79],
+      [51, -60],
+      [-5, -47],
+      [43, -52],
+      [-7, -45],
+      [75, -63],
+      [-47, -29],
+      [16, -46],
+      [99, -19],
+      [-19, -85],
+      [129, -18],
+      [107, -1],
+      [54, 32],
+      [37, -36],
+      [83, 73],
+      [87, -27],
+      [35, -41],
+      [73, -11]
+    ],
+    [
+      [4648, 16603],
+      [2, -30],
+      [47, -50],
+      [53, -3],
+      [40, -44],
+      [48, 40]
+    ],
+    [
+      [4838, 16516],
+      [51, -74]
+    ],
+    [
+      [4889, 16442],
+      [70, 20],
+      [20, -65],
+      [-17, -39],
+      [-5, -97],
+      [-35, -25],
+      [16, -61],
+      [-13, -121],
+      [25, -43],
+      [-56, -13],
+      [17, -55],
+      [-14, -39],
+      [-48, -11],
+      [-28, -40],
+      [-98, 28],
+      [-48, -84],
+      [-64, 9],
+      [-58, -34],
+      [-7, -82],
+      [-34, 12],
+      [-17, -98],
+      [-90, -58],
+      [-6, -27]
+    ],
+    [
+      [4399, 15519],
+      [-67, -31],
+      [-67, 10],
+      [-3, 39],
+      [-70, 73],
+      [-40, -2],
+      [-64, -34],
+      [-71, -2],
+      [30, -59],
+      [-57, -81],
+      [5, -44],
+      [-47, -16],
+      [-69, -75],
+      [-70, 23],
+      [26, 167],
+      [-22, 29],
+      [-56, -31],
+      [-71, -12],
+      [-41, -61],
+      [-15, 82],
+      [-40, 54],
+      [-61, -12],
+      [-64, 54],
+      [-81, 16],
+      [-86, -25],
+      [-29, 70],
+      [-57, 35],
+      [-115, -18],
+      [-1, -50],
+      [-27, -36],
+      [-69, 6],
+      [-35, -27],
+      [-108, -19],
+      [-80, 64],
+      [-125, -60],
+      [-7, 64],
+      [-90, 29],
+      [-81, -18],
+      [-49, 17]
+    ],
+    [
+      [2425, 15638],
+      [36, 54],
+      [-19, 73],
+      [42, 46],
+      [5, 47],
+      [-46, 26],
+      [7, 50],
+      [-22, 74],
+      [12, 69],
+      [-82, 26],
+      [14, 78],
+      [75, 58],
+      [-65, 38],
+      [-18, 68],
+      [69, 76],
+      [9, 32],
+      [-63, 102],
+      [-54, 6],
+      [-38, 67],
+      [-15, 83],
+      [21, 31]
+    ],
+    [
+      [2293, 16742],
+      [107, 8],
+      [20, 34],
+      [-26, 79],
+      [54, 29],
+      [0, 32],
+      [-59, 57],
+      [34, 86],
+      [61, 51],
+      [54, -4],
+      [90, -36],
+      [9, -35],
+      [118, 52],
+      [43, 39],
+      [47, -16],
+      [69, 61],
+      [48, 18],
+      [8, -57],
+      [33, -4],
+      [150, 72],
+      [27, -27],
+      [-29, -56],
+      [84, -32],
+      [44, 4],
+      [-26, -87],
+      [24, -39],
+      [94, -4],
+      [39, -128],
+      [56, -23],
+      [17, -57],
+      [36, -1],
+      [59, -55],
+      [-3, -128],
+      [65, -21],
+      [26, -44],
+      [75, -31],
+      [-2, -67],
+      [40, -51],
+      [39, 76],
+      [94, 46],
+      [78, 96],
+      [88, 30],
+      [35, 35],
+      [6, 60],
+      [51, 5],
+      [25, -27],
+      [140, 75],
+      [64, -12],
+      [-39, -81],
+      [23, -14],
+      [57, 43],
+      [27, -57],
+      [63, -85],
+      [35, -16],
+      [40, 92],
+      [43, -24]
+    ],
+    [
+      [98, 16327],
+      [36, -50],
+      [-62, -46],
+      [-72, 35],
+      [98, 61]
+    ],
+    [
+      [2425, 15638],
+      [-87, -34],
+      [-78, -44],
+      [-38, 1],
+      [-56, -90],
+      [37, -34],
+      [10, -76],
+      [42, -23],
+      [52, -158],
+      [134, 14],
+      [88, -35],
+      [27, -59],
+      [96, 49],
+      [38, -35],
+      [8, -69],
+      [-36, -51],
+      [11, -83],
+      [-71, -17],
+      [-12, -56],
+      [-43, -26],
+      [-51, 31],
+      [-30, -8],
+      [29, -74]
+    ],
+    [
+      [2495, 14761],
+      [-21, -84],
+      [-28, -10],
+      [-212, 38],
+      [-73, 57],
+      [-34, -30],
+      [-125, 14],
+      [-88, 83],
+      [-20, 73],
+      [-78, 73],
+      [-47, -33],
+      [13, -65],
+      [-95, -17],
+      [-59, 42],
+      [-74, -2],
+      [-53, -32],
+      [3, -62],
+      [-48, -63],
+      [-159, -8],
+      [-80, 19],
+      [-42, -13],
+      [-26, 35],
+      [68, 59],
+      [-26, 124],
+      [-93, 168],
+      [-44, 43],
+      [-138, 71],
+      [-28, -32],
+      [-130, 56],
+      [-85, 5],
+      [-23, 18],
+      [-4, 74],
+      [67, -8],
+      [210, 65],
+      [74, -6],
+      [18, 22],
+      [67, 1],
+      [25, 23],
+      [66, 7],
+      [105, -49],
+      [31, 33],
+      [19, 119],
+      [-65, 111],
+      [-70, 5],
+      [-26, 28],
+      [-134, 45],
+      [-39, -5],
+      [-43, -102],
+      [-49, 6],
+      [-17, 98],
+      [-89, 69],
+      [74, 36],
+      [-13, 81],
+      [53, 17],
+      [-10, -71],
+      [51, 8],
+      [37, -36],
+      [69, 26],
+      [63, -40],
+      [65, 5],
+      [90, 44],
+      [82, -36],
+      [39, 34],
+      [-88, 40],
+      [-62, 3],
+      [33, 63],
+      [-92, 4],
+      [-9, -40],
+      [-107, -1],
+      [-6, 54],
+      [34, 39],
+      [-20, 36],
+      [-102, -13],
+      [-48, -44],
+      [-31, 3],
+      [-86, -49],
+      [-111, 41],
+      [-45, -59],
+      [-93, -5],
+      [-18, 60],
+      [29, 57],
+      [-52, 81],
+      [18, 68],
+      [37, 60],
+      [-31, 58],
+      [6, 56],
+      [40, 56],
+      [71, 61],
+      [142, 6],
+      [101, 144],
+      [39, 1],
+      [31, -35],
+      [60, 14],
+      [52, 59],
+      [52, 6],
+      [76, 49],
+      [36, 0],
+      [74, -61],
+      [80, 7],
+      [52, 70],
+      [115, 28],
+      [113, 15],
+      [78, 52],
+      [45, -7],
+      [-19, -54],
+      [11, -54],
+      [79, -5],
+      [31, -63],
+      [62, 13],
+      [0, 80],
+      [22, 48],
+      [42, 21],
+      [53, -32],
+      [68, 16],
+      [82, -48],
+      [43, 20],
+      [10, -69]
+    ],
+    [
+      [4648, 16603],
+      [-10, 74],
+      [71, -9],
+      [47, 13],
+      [46, -54],
+      [36, -111]
+    ],
+    [
+      [6279, 16378],
+      [-11, -40],
+      [20, -55],
+      [-24, -57],
+      [0, -57],
+      [42, -83],
+      [-11, -69],
+      [22, -49],
+      [-58, -76],
+      [-24, -103],
+      [38, -117],
+      [-6, -47],
+      [21, -49],
+      [24, -158],
+      [42, -49],
+      [-18, -82],
+      [18, -85],
+      [-73, -29],
+      [-60, 14],
+      [-75, -56],
+      [-51, -222],
+      [-76, -132]
+    ],
+    [
+      [6019, 14777],
+      [-11, -77]
+    ],
+    [
+      [6008, 14700],
+      [-183, 55],
+      [-42, 64],
+      [-140, 8],
+      [21, -60],
+      [-55, -11],
+      [-41, -37],
+      [-98, -20],
+      [-51, -37],
+      [-17, -87],
+      [-142, -52],
+      [-65, -2],
+      [-141, 20],
+      [-34, -26],
+      [-78, -21],
+      [-58, 17],
+      [-60, -63],
+      [-55, -7],
+      [-53, -32],
+      [-23, -42]
+    ],
+    [
+      [4693, 14367],
+      [-24, 37],
+      [13, 66],
+      [-29, 15],
+      [20, 122],
+      [77, 5],
+      [-78, 93],
+      [58, 30],
+      [4, 45],
+      [53, 51],
+      [-28, 40],
+      [-64, -18],
+      [-29, 82],
+      [54, 93],
+      [-39, 74],
+      [-65, 74],
+      [-47, -9],
+      [-95, 44],
+      [-76, -18],
+      [22, 91],
+      [48, 49],
+      [79, 0],
+      [31, 24],
+      [-16, 46],
+      [-104, 2],
+      [-12, 60],
+      [-47, 54]
+    ],
+    [
+      [4889, 16442],
+      [14, 29],
+      [-103, 211],
+      [59, 53],
+      [23, 43],
+      [56, 26],
+      [64, -5],
+      [54, 20],
+      [39, -50],
+      [-40, -27],
+      [-10, -55],
+      [51, -69],
+      [87, -17],
+      [113, 3],
+      [104, 26],
+      [54, 48],
+      [40, 4]
+    ],
+    [
+      [2908, 13816],
+      [90, -57],
+      [59, -8],
+      [14, -67],
+      [67, -41],
+      [70, -9],
+      [-26, -58],
+      [-96, 2],
+      [-59, 32],
+      [-68, -18],
+      [-48, 53],
+      [-22, 82],
+      [19, 89]
+    ],
+    [
+      [2530, 14420],
+      [107, -30],
+      [-56, -49],
+      [-65, 41],
+      [14, 38]
+    ],
+    [
+      [4693, 14367],
+      [16, -64],
+      [-25, -19],
+      [6, -141],
+      [-85, -27],
+      [-2, -55],
+      [-54, -5],
+      [-42, 26],
+      [-42, -31],
+      [-23, 42],
+      [-60, 8],
+      [-28, -121],
+      [-146, -8],
+      [-19, 41],
+      [-54, -67]
+    ],
+    [
+      [4135, 13946],
+      [-62, 21],
+      [14, 36],
+      [69, 62],
+      [-118, 62],
+      [-58, -30],
+      [-161, 14],
+      [-28, -52],
+      [-56, 22],
+      [-150, -48],
+      [-57, 30],
+      [6, 30],
+      [-96, 111],
+      [137, -40],
+      [50, 23],
+      [54, -35],
+      [62, 104],
+      [-71, 72],
+      [-36, 15],
+      [-104, -5],
+      [-59, -35],
+      [-28, -50],
+      [-33, 46],
+      [-55, -27],
+      [51, -82],
+      [-59, 9],
+      [-129, 46],
+      [-72, -31],
+      [-41, 5],
+      [-13, -77],
+      [38, -101],
+      [-39, -28],
+      [-28, 57],
+      [-2, 59],
+      [27, 38],
+      [-7, 80],
+      [-36, 70],
+      [-49, 26],
+      [-25, 49],
+      [3, 62],
+      [63, 26],
+      [68, 93],
+      [-66, 21],
+      [-79, -149],
+      [-98, 49],
+      [-9, 29],
+      [-61, 19],
+      [-26, 29],
+      [-47, -1],
+      [-13, -41],
+      [-109, -15],
+      [-74, 80],
+      [-46, 113],
+      [18, 54]
+    ],
+    [
+      [11457, 11591],
+      [-128, 18],
+      [-47, -10]
+    ],
+    [
+      [11282, 11599],
+      [-25, 77],
+      [65, 30],
+      [16, 43],
+      [-70, 156],
+      [13, 72],
+      [27, 31],
+      [8, 91],
+      [-35, 12],
+      [-46, 57],
+      [28, 46],
+      [-138, 115],
+      [74, 75],
+      [-15, 42],
+      [-50, 37],
+      [-37, 52],
+      [46, 13],
+      [16, 64],
+      [80, 55],
+      [23, 50],
+      [-69, 3],
+      [-61, 48],
+      [-1, 47],
+      [32, 28],
+      [10, 105],
+      [-105, 76],
+      [41, 71],
+      [-14, 68],
+      [-31, -7],
+      [-46, 55],
+      [-52, -7],
+      [-66, -46],
+      [-58, -8],
+      [-84, 48],
+      [-83, 21],
+      [104, 108],
+      [-5, 95]
+    ],
+    [
+      [10774, 13422],
+      [56, -28],
+      [43, 19],
+      [20, 43],
+      [-31, 48],
+      [42, 20],
+      [28, 61],
+      [86, -56],
+      [47, 6],
+      [71, 37],
+      [92, -8],
+      [38, 44],
+      [-59, 76],
+      [12, 27],
+      [-37, 106],
+      [132, 101],
+      [26, -67],
+      [60, 20],
+      [-9, 124],
+      [15, 52],
+      [-44, 8],
+      [-8, 58],
+      [-32, 64],
+      [-96, 5],
+      [-18, 74],
+      [57, 42],
+      [128, 45]
+    ],
+    [
+      [11393, 14343],
+      [78, 19],
+      [128, -100],
+      [101, 56],
+      [81, -88],
+      [92, 7],
+      [66, -38],
+      [30, -73],
+      [67, -36],
+      [3, -47],
+      [45, -16],
+      [63, 36],
+      [-6, 57],
+      [60, 3],
+      [54, -63],
+      [45, 1],
+      [74, 52]
+    ],
+    [
+      [11014, 15869],
+      [-44, -73],
+      [-5, -73],
+      [21, -51],
+      [-7, -51],
+      [-53, -21],
+      [-58, -95],
+      [-15, -51],
+      [-95, -58],
+      [-123, -32],
+      [-110, 0],
+      [-34, 21],
+      [-53, -26],
+      [0, -36],
+      [-46, -40],
+      [-72, 32],
+      [-47, -37],
+      [9, -106]
+    ],
+    [
+      [10282, 15172],
+      [-122, 67],
+      [-7, -81],
+      [-46, -13],
+      [-31, 24],
+      [-26, -63],
+      [-32, 23],
+      [-63, -23],
+      [-14, 33],
+      [-53, -12],
+      [-27, 36],
+      [-66, -23],
+      [-64, 138],
+      [-60, 15],
+      [-28, 59],
+      [8, 45],
+      [-73, 12],
+      [-86, -4],
+      [-26, 27],
+      [81, 52],
+      [-55, 30],
+      [-84, -71],
+      [-17, 27],
+      [-85, -23],
+      [-73, 2]
+    ],
+    [
+      [9233, 15449],
+      [14, 68],
+      [99, 7],
+      [-47, 59],
+      [-67, 9],
+      [-67, 66]
+    ],
+    [
+      [9192, 16749],
+      [74, 41],
+      [21, 63],
+      [69, -15],
+      [66, 40],
+      [80, 6],
+      [73, 69],
+      [79, -29],
+      [7, 84],
+      [52, 6],
+      [17, -38],
+      [128, 1],
+      [19, -27],
+      [60, 23],
+      [47, -17],
+      [76, 72],
+      [-31, 54],
+      [5, 36],
+      [69, 68],
+      [82, 25],
+      [20, 60],
+      [-35, 61],
+      [21, 30],
+      [62, 8]
+    ],
+    [
+      [9983, 13346],
+      [26, -29],
+      [31, -88],
+      [-13, -61],
+      [-59, -12],
+      [-64, -143],
+      [-67, -61],
+      [-79, 62],
+      [-160, -58],
+      [-33, -45],
+      [3, -107],
+      [-32, -17],
+      [-6, -80],
+      [-36, -165],
+      [-2, -48],
+      [-37, -29],
+      [41, -101],
+      [-45, 11],
+      [-33, -52],
+      [-83, 42],
+      [-62, -23]
+    ],
+    [
+      [9273, 12342],
+      [-84, 100],
+      [-8, 86],
+      [-84, 72],
+      [-75, 97],
+      [2, 76],
+      [-25, 89],
+      [-102, 43],
+      [-9, 32],
+      [-79, -12],
+      [10, -44],
+      [39, -19],
+      [-1, -42],
+      [-144, 8],
+      [-93, -43],
+      [-9, -27],
+      [-115, 44],
+      [-61, -41],
+      [-22, 20],
+      [-19, 73],
+      [18, 130],
+      [-18, 59],
+      [-53, -17],
+      [-31, 56],
+      [-56, -40],
+      [-48, 46],
+      [36, 42],
+      [-29, 54],
+      [-30, -35],
+      [-46, 49],
+      [-84, 5],
+      [-37, 94]
+    ],
+    [
+      [8016, 13297],
+      [29, 114],
+      [15, 166],
+      [54, 104],
+      [46, 30],
+      [10, 41],
+      [44, 43],
+      [-44, 39],
+      [42, 41],
+      [0, 84],
+      [61, 111],
+      [7, 58],
+      [-38, 37],
+      [22, 59],
+      [31, 22],
+      [-7, 68]
+    ],
+    [
+      [8288, 14314],
+      [45, 9],
+      [25, -30],
+      [72, -9],
+      [27, -35],
+      [61, -26],
+      [37, 23],
+      [-59, 100],
+      [28, 48],
+      [61, -54],
+      [45, 4],
+      [15, 52],
+      [58, 2],
+      [147, 62],
+      [32, 51]
+    ],
+    [
+      [8882, 14511],
+      [22, 32],
+      [71, -21],
+      [58, -39],
+      [36, 31],
+      [80, -33],
+      [73, -9],
+      [39, -24],
+      [-23, -49],
+      [30, -104],
+      [54, 9],
+      [32, 66],
+      [111, -29],
+      [-6, -66],
+      [70, 36],
+      [67, -103],
+      [-49, -70],
+      [76, -140],
+      [61, -49],
+      [-35, -93],
+      [18, -122],
+      [-43, -61],
+      [21, -69],
+      [36, -9],
+      [47, -51],
+      [95, 50],
+      [110, -133],
+      [50, -115]
+    ],
+    [
+      [11282, 11599],
+      [-147, -9],
+      [-123, 25],
+      [-22, 24],
+      [-81, -22],
+      [-166, -1],
+      [-32, 54],
+      [-78, -12],
+      [19, -51],
+      [-14, -50],
+      [-64, -28],
+      [-40, 56],
+      [-66, -74],
+      [-62, 78],
+      [-84, -55],
+      [-4, 48],
+      [-51, 6],
+      [-114, -145],
+      [-34, -20]
+    ],
+    [
+      [10119, 11423],
+      [-12, 35],
+      [-97, 89],
+      [-52, -62],
+      [-93, 5],
+      [-50, -19],
+      [-63, 36]
+    ],
+    [
+      [9752, 11507],
+      [55, 113],
+      [-96, 39],
+      [-24, 47],
+      [21, 72],
+      [-91, 81],
+      [-108, -1],
+      [-8, 70],
+      [-38, -4],
+      [-76, 34],
+      [-39, 37],
+      [-34, 73],
+      [34, 51],
+      [-21, 61],
+      [35, 52],
+      [-41, 82],
+      [-48, 28]
+    ],
+    [
+      [9983, 13346],
+      [102, 52],
+      [44, 47],
+      [95, 22],
+      [80, -35],
+      [-17, 73],
+      [107, 44],
+      [87, -7],
+      [25, -29],
+      [54, 12],
+      [24, 29],
+      [93, -104],
+      [31, 15],
+      [66, -43]
+    ],
+    [
+      [10282, 15172],
+      [69, 17],
+      [-14, -79],
+      [-46, -25],
+      [-1, -35],
+      [83, -59],
+      [7, -80],
+      [-74, -69],
+      [8, -49],
+      [45, -47],
+      [-35, -62],
+      [75, -61],
+      [51, 38],
+      [68, -46],
+      [60, -16],
+      [54, -174],
+      [100, -9],
+      [52, 15],
+      [32, 38],
+      [110, 4],
+      [8, -36],
+      [82, 6],
+      [21, 30],
+      [86, -6],
+      [15, 17],
+      [116, -27],
+      [84, 18],
+      [57, -85],
+      [-2, -47]
+    ],
+    [
+      [8882, 14511],
+      [-53, 42],
+      [44, 29],
+      [28, 60],
+      [38, 9],
+      [95, 81],
+      [86, 93],
+      [8, 45],
+      [-21, 109],
+      [42, 31],
+      [36, -8],
+      [9, 60],
+      [45, 45],
+      [-39, 78],
+      [32, 71],
+      [-71, 64],
+      [13, 57],
+      [61, 2],
+      [-2, 70]
+    ],
+    [
+      [16266, 18920],
+      [-25, -56],
+      [-57, 4],
+      [-49, -72],
+      [-71, -48],
+      [-43, 62],
+      [-116, -5],
+      [-22, 51],
+      [-40, 8],
+      [-36, -80],
+      [2, -55],
+      [-58, -67],
+      [77, -111],
+      [-14, -35],
+      [22, -46],
+      [-47, -37],
+      [30, -34],
+      [-24, -46],
+      [-50, -24],
+      [-45, -54],
+      [6, -63],
+      [40, -34],
+      [-9, -44],
+      [-62, -11],
+      [-92, -75]
+    ],
+    [
+      [15583, 18048],
+      [-58, 64],
+      [-49, -16],
+      [-31, -43],
+      [-54, -8],
+      [-128, 14],
+      [-83, 37],
+      [-31, -38],
+      [-74, -10],
+      [-24, 74],
+      [-45, 61],
+      [-56, -21],
+      [-134, -24],
+      [-46, 11],
+      [-53, 41],
+      [-23, 58],
+      [-34, -17],
+      [-70, 23],
+      [-94, 124],
+      [-72, 7],
+      [-19, 34],
+      [-71, 13],
+      [-147, 3]
+    ],
+    [
+      [14187, 18435],
+      [-16, 75],
+      [37, 20],
+      [-30, 55],
+      [-2, 86],
+      [52, 23],
+      [2, 47],
+      [-37, 14],
+      [39, 59],
+      [-19, 53],
+      [-59, 60],
+      [37, 34],
+      [101, -4],
+      [18, 103],
+      [90, 48],
+      [9, 38],
+      [53, 27],
+      [25, 87],
+      [-55, 33],
+      [42, 158],
+      [24, 19],
+      [10, 108],
+      [-58, 28],
+      [23, 95]
+    ],
+    [
+      [14473, 19701],
+      [120, 25],
+      [60, -37],
+      [49, 3],
+      [100, -38],
+      [101, 22],
+      [46, 49],
+      [85, 41],
+      [58, 3],
+      [81, 40],
+      [17, 125],
+      [-23, 19],
+      [32, 64],
+      [75, 37],
+      [22, 59],
+      [57, 32],
+      [112, 5],
+      [-4, -141],
+      [-49, 2],
+      [-1, -120],
+      [-30, -39],
+      [-8, -71],
+      [-30, -24],
+      [-8, -54],
+      [84, -22],
+      [52, -62],
+      [6, -54],
+      [-48, -82],
+      [34, -100],
+      [-28, -56],
+      [117, -18],
+      [38, 32],
+      [55, -1],
+      [36, -47],
+      [84, -42],
+      [32, 8],
+      [83, -127],
+      [35, -38],
+      [66, 4],
+      [58, -18],
+      [34, 21],
+      [99, -97],
+      [22, -52],
+      [72, -32]
+    ],
+    [
+      [15149, 16432],
+      [-26, -141],
+      [-27, -32],
+      [59, -28],
+      [65, -114],
+      [68, -16],
+      [-9, -48],
+      [134, -62],
+      [-42, -38],
+      [57, -61],
+      [-12, -30],
+      [13, -124],
+      [-19, -31],
+      [36, -40],
+      [-37, -67],
+      [18, -63],
+      [-33, -29],
+      [-21, -58],
+      [-129, 36],
+      [-63, -109],
+      [50, -60],
+      [-30, -58]
+    ],
+    [
+      [13427, 16635],
+      [37, -36],
+      [38, -74],
+      [42, -2],
+      [19, -81],
+      [136, 3],
+      [100, -22],
+      [45, -29],
+      [41, 22],
+      [18, 103],
+      [53, 13],
+      [16, 60],
+      [63, 4],
+      [81, 139],
+      [66, -7],
+      [28, 25],
+      [27, 67],
+      [79, -34],
+      [72, 50],
+      [85, -13],
+      [99, 25],
+      [46, -37],
+      [11, -53],
+      [-24, -56],
+      [20, -46],
+      [-25, -31],
+      [120, -112],
+      [47, -30],
+      [112, -35],
+      [96, 8],
+      [54, 23],
+      [120, -47]
+    ],
+    [
+      [15641, 16782],
+      [27, -168],
+      [41, 5],
+      [29, 45],
+      [29, -85],
+      [74, -21],
+      [39, -54],
+      [33, 5],
+      [99, -80],
+      [68, -37],
+      [84, -12],
+      [34, -63],
+      [75, -20],
+      [18, -63],
+      [56, -48],
+      [38, -9]
+    ],
+    [
+      [16385, 16177],
+      [-93, -64],
+      [51, -31],
+      [-38, -43],
+      [12, -68],
+      [75, 54],
+      [80, -17],
+      [11, -50],
+      [80, -103],
+      [40, 26],
+      [66, -53],
+      [-20, -60],
+      [108, -51],
+      [31, -70],
+      [-79, -25],
+      [8, -64],
+      [-44, -69],
+      [-36, -83],
+      [91, -20],
+      [75, -61],
+      [55, -61],
+      [28, -59],
+      [-25, -43],
+      [16, -58],
+      [70, 16],
+      [78, -77]
+    ],
+    [
+      [17025, 15043],
+      [-2, -59],
+      [-49, 13],
+      [-46, -85],
+      [11, -39],
+      [-104, 17],
+      [-20, -68],
+      [-26, -28],
+      [-52, 13],
+      [-33, -101],
+      [47, -26],
+      [4, -52],
+      [-31, -26],
+      [-1, -112],
+      [-142, -31],
+      [-21, 68],
+      [-25, 14],
+      [-57, -76],
+      [-74, 24],
+      [-20, -22],
+      [-98, -3],
+      [-48, -120],
+      [-2, -38]
+    ],
+    [
+      [15149, 16432],
+      [84, 22],
+      [115, -27],
+      [-48, 146],
+      [133, 44],
+      [-19, 85],
+      [-107, 5],
+      [40, 59],
+      [107, -24],
+      [67, 50],
+      [120, -10]
+    ],
+    [
+      [15583, 18048],
+      [30, -3],
+      [33, -56],
+      [-77, -56],
+      [84, -184],
+      [21, -164],
+      [39, -28],
+      [4, -111],
+      [-11, -45],
+      [-89, -59],
+      [-57, -15],
+      [-35, -56],
+      [-2, -65],
+      [36, -66],
+      [-72, -54],
+      [7, -46],
+      [63, -15],
+      [85, -111],
+      [31, -2],
+      [-32, -130]
+    ],
+    [
+      [13318, 17166],
+      [67, 138],
+      [59, 3],
+      [12, 58],
+      [41, 18],
+      [31, 44],
+      [29, 87],
+      [58, 28],
+      [-42, 58],
+      [-55, -18],
+      [-46, 12],
+      [4, 47],
+      [69, 62],
+      [-34, 95],
+      [22, 54],
+      [92, 7],
+      [30, -25],
+      [70, 35],
+      [4, 44],
+      [-69, 6],
+      [-46, 61],
+      [0, 69],
+      [-33, 59],
+      [-19, 76],
+      [40, 66],
+      [104, 25],
+      [103, 53],
+      [75, -32],
+      [13, 84],
+      [78, 32],
+      [22, 28],
+      [56, -70],
+      [40, 4],
+      [40, -47],
+      [35, 3],
+      [19, 105]
+    ],
+    [
+      [22460, 1132],
+      [7, -96],
+      [-18, -44],
+      [21, -72],
+      [-11, -170],
+      [-45, -30],
+      [23, -44],
+      [-49, -39],
+      [-55, -87],
+      [75, -21],
+      [-57, -83],
+      [-53, -44],
+      [-34, -84],
+      [15, -59],
+      [-29, -18],
+      [-57, -102],
+      [47, -29],
+      [-36, -44],
+      [-24, -60],
+      [-63, -6],
+      [-22, 46],
+      [-116, 31],
+      [23, 68],
+      [-22, 39],
+      [-98, 39],
+      [-54, 48],
+      [-108, 25],
+      [-50, 31],
+      [-57, 65],
+      [-105, 64],
+      [-7, 47],
+      [21, 91],
+      [87, 54],
+      [42, 9],
+      [-1, 101],
+      [-52, 1],
+      [-49, 42],
+      [-45, -14],
+      [-17, 75],
+      [-76, -40],
+      [-62, 53],
+      [46, 31],
+      [57, 118],
+      [38, 1],
+      [24, 92],
+      [-7, 62],
+      [30, 29],
+      [-33, 76],
+      [-66, -15],
+      [-34, -26],
+      [-119, 5],
+      [-73, 129],
+      [82, 6],
+      [33, 33],
+      [-20, 62],
+      [46, 40],
+      [45, 5],
+      [51, 47],
+      [-40, 52],
+      [-19, 60],
+      [-33, 26],
+      [-37, -9],
+      [-62, 37],
+      [-69, 80],
+      [4, 48],
+      [-18, 60],
+      [5, 80],
+      [48, 25],
+      [129, 30],
+      [-3, 44],
+      [-43, 45],
+      [-79, 13],
+      [31, 55],
+      [-40, 48],
+      [-62, -48],
+      [-15, 30],
+      [35, 81]
+    ],
+    [
+      [21181, 2327],
+      [42, -23],
+      [55, 6],
+      [72, -57],
+      [48, 1],
+      [64, -23],
+      [23, -30],
+      [76, -20],
+      [64, 30],
+      [-1, -70],
+      [68, -104],
+      [28, 6],
+      [40, -51],
+      [36, -4],
+      [79, -66],
+      [35, 9],
+      [3, -73],
+      [26, -23],
+      [42, -112],
+      [49, -26],
+      [16, -34],
+      [-3, -87],
+      [43, -60],
+      [95, 2],
+      [-9, -75],
+      [16, -52],
+      [-20, -125],
+      [52, -19],
+      [-30, -123],
+      [127, -54],
+      [105, 78],
+      [38, -16]
+    ],
+    [
+      [21181, 2327],
+      [53, 16],
+      [-5, 66],
+      [87, 21],
+      [23, 117],
+      [-18, 83],
+      [61, 33],
+      [38, 83],
+      [44, 17],
+      [41, -31],
+      [30, 28],
+      [10, 83],
+      [92, 6],
+      [16, 49],
+      [64, 22],
+      [41, -13],
+      [112, 23],
+      [62, 41],
+      [-11, 48],
+      [109, 116],
+      [68, 10],
+      [53, -27],
+      [85, -15],
+      [3, -40],
+      [41, -59],
+      [57, 48],
+      [-2, 42],
+      [37, 47],
+      [-12, 70],
+      [8, 72],
+      [-51, 84],
+      [32, 86],
+      [4, 80],
+      [34, 24],
+      [6, 63],
+      [-20, 32],
+      [-4, 97],
+      [117, 27],
+      [66, -55],
+      [-7, -85],
+      [19, -34],
+      [35, -327],
+      [-32, -57],
+      [-38, -189],
+      [4, -65],
+      [41, -81],
+      [80, -133],
+      [10, -107],
+      [-7, -67],
+      [18, -75],
+      [0, -83],
+      [-13, -88],
+      [10, -103],
+      [32, -119],
+      [-11, -97],
+      [10, -103],
+      [-7, -168],
+      [-29, -74],
+      [-121, -206],
+      [-88, -126],
+      [23, -32],
+      [-28, -121],
+      [7, -49]
+    ],
+    [
+      [18450, 14210],
+      [15, -34],
+      [135, 1],
+      [33, -66],
+      [-27, -58],
+      [49, -139]
+    ],
+    [
+      [18655, 13914],
+      [1, -55],
+      [-87, -88],
+      [57, -36],
+      [122, 21],
+      [75, -10],
+      [19, -43],
+      [-25, -34],
+      [-53, -6],
+      [-2, -49],
+      [-105, -37],
+      [22, -100],
+      [-112, -97],
+      [-59, -66],
+      [13, -28],
+      [-78, -70],
+      [-95, -51],
+      [-69, -93],
+      [31, -36],
+      [-96, -65],
+      [-31, -55],
+      [-198, -74],
+      [-14, 18],
+      [-98, -106],
+      [48, -87],
+      [-7, -88],
+      [-28, -49],
+      [-11, -64],
+      [35, -31],
+      [-51, -78],
+      [-126, -101],
+      [-112, -63],
+      [-4, -15],
+      [-143, -144],
+      [-58, -40],
+      [-38, -49],
+      [39, -40]
+    ],
+    [
+      [17417, 11905],
+      [-11, -9],
+      [-127, 124],
+      [16, 39],
+      [68, 64],
+      [-49, 80],
+      [102, 83],
+      [66, 41],
+      [41, 57],
+      [-84, 122],
+      [-72, 59],
+      [-66, 29],
+      [-62, -11],
+      [-22, 97],
+      [-41, 29],
+      [23, 58],
+      [-49, 32],
+      [22, 37],
+      [-17, 38],
+      [-68, 2],
+      [-26, 43],
+      [-104, 20],
+      [-75, 32],
+      [-65, -12],
+      [2, 54],
+      [52, 32],
+      [-24, 81],
+      [32, 28],
+      [41, 75],
+      [-8, 78],
+      [-49, 54],
+      [-28, 4],
+      [-63, 59],
+      [-3, 49],
+      [-31, 54]
+    ],
+    [
+      [16738, 13527],
+      [56, -3],
+      [93, 60],
+      [77, 25],
+      [126, 101],
+      [150, -28],
+      [24, 28],
+      [62, 23],
+      [41, 65],
+      [97, 20],
+      [14, 55],
+      [129, 29],
+      [113, 178],
+      [52, 17],
+      [34, -17],
+      [33, 36],
+      [76, -22],
+      [24, -39],
+      [38, 34],
+      [26, -31],
+      [87, -2],
+      [12, 104],
+      [70, -26],
+      [67, 65],
+      [108, -3],
+      [63, -47],
+      [40, 61]
+    ],
+    [
+      [18476, 14784],
+      [-58, -71],
+      [-44, -79],
+      [2, -57],
+      [33, -76],
+      [-5, -55],
+      [33, -50],
+      [-20, -75],
+      [33, -111]
+    ],
+    [
+      [16738, 13527],
+      [-34, 25],
+      [-53, -45],
+      [-63, 9],
+      [-106, 60],
+      [-22, 41]
+    ],
+    [
+      [17025, 15043],
+      [52, 49],
+      [5, 54],
+      [40, 20],
+      [36, -52],
+      [49, -2],
+      [54, 104],
+      [54, 32],
+      [57, -7],
+      [35, 27],
+      [38, -40],
+      [8, -111],
+      [32, -3],
+      [86, -56],
+      [61, 48],
+      [70, -8],
+      [66, 29],
+      [67, -45],
+      [36, 2],
+      [72, -134],
+      [98, 39],
+      [41, 73],
+      [51, 23],
+      [43, -37],
+      [24, -56],
+      [91, -52],
+      [53, -44],
+      [72, -29],
+      [11, -44],
+      [49, -39]
+    ],
+    [
+      [17417, 11905],
+      [27, -28],
+      [-54, -65],
+      [-36, -79],
+      [-36, -42],
+      [19, -48],
+      [-35, -62]
+    ],
+    [
+      [17302, 11581],
+      [-51, -65],
+      [-72, -58],
+      [-66, -122],
+      [-35, 0],
+      [-15, -58],
+      [-90, -51],
+      [-131, 15],
+      [-63, -18],
+      [-17, 109],
+      [-46, 7],
+      [-54, 53],
+      [-57, -18],
+      [-23, -65],
+      [-51, -12],
+      [-39, -55],
+      [-99, -8],
+      [-27, 26],
+      [27, 89],
+      [-59, -1],
+      [-21, 75],
+      [-35, -19],
+      [-43, 29],
+      [7, 69],
+      [-46, 39],
+      [-60, 25],
+      [20, 43],
+      [-18, 41]
+    ],
+    [
+      [18950, 14073],
+      [-80, -32],
+      [-84, 35],
+      [-64, -23],
+      [24, -98],
+      [-91, -41]
+    ],
+    [
+      [18476, 14784],
+      [35, 22]
+    ],
+    [
+      [10581, 18444],
+      [9, -32],
+      [61, -62],
+      [23, -75],
+      [-3, -96],
+      [47, -47],
+      [-19, -45],
+      [-55, 37],
+      [-67, -12],
+      [-11, -74]
+    ],
+    [
+      [8392, 18499],
+      [138, 32],
+      [75, 30],
+      [91, 55],
+      [43, -11],
+      [92, -105],
+      [82, 0],
+      [41, -71],
+      [120, 12],
+      [45, 25],
+      [51, -9],
+      [28, -39],
+      [153, -29],
+      [3, -107],
+      [-93, 15],
+      [-23, -43],
+      [80, -24],
+      [63, 9],
+      [39, -79],
+      [57, -77],
+      [80, 22],
+      [21, 45],
+      [-26, 38],
+      [73, 27],
+      [60, 1],
+      [18, 59],
+      [103, 32],
+      [92, -5],
+      [22, 90],
+      [34, 22],
+      [2, 74],
+      [54, 41],
+      [104, 21],
+      [100, -10],
+      [39, -27],
+      [115, 1],
+      [48, -67],
+      [32, 3],
+      [103, -39],
+      [30, 33]
+    ],
+    [
+      [10691, 19243],
+      [-54, 10],
+      [-11, -54],
+      [-47, -20],
+      [3, -52],
+      [58, -60],
+      [-43, -21],
+      [-25, -59],
+      [21, -53],
+      [-43, -51],
+      [39, -43],
+      [11, -91],
+      [36, -112],
+      [59, 29],
+      [-18, -75],
+      [-77, -81],
+      [-19, -66]
+    ],
+    [
+      [8386, 18499],
+      [-9, 19],
+      [-109, 24],
+      [-87, 5],
+      [-21, 30],
+      [-82, 48],
+      [-44, 52],
+      [10, 51],
+      [125, 257],
+      [15, 94],
+      [67, 65],
+      [110, 49],
+      [66, 12],
+      [94, 65],
+      [219, 125],
+      [73, 58],
+      [183, 50],
+      [119, 2],
+      [102, 39],
+      [155, 41],
+      [44, 29],
+      [93, -9],
+      [132, 48],
+      [155, 84],
+      [190, 167],
+      [79, 43]
+    ],
+    [
+      [10065, 19947],
+      [65, 10],
+      [57, -16],
+      [-10, -45],
+      [115, -106],
+      [73, -52],
+      [34, -59],
+      [127, -69],
+      [52, -72],
+      [34, -167],
+      [79, -128]
+    ],
+    [
+      [11897, 4718],
+      [28, -24],
+      [-41, -52],
+      [-26, -103],
+      [67, -25],
+      [27, -82],
+      [90, -12],
+      [27, 47],
+      [31, 7],
+      [5, -78],
+      [81, -64],
+      [31, 8],
+      [22, 68],
+      [78, 79],
+      [74, 25],
+      [94, -49],
+      [90, 18],
+      [2, -77],
+      [75, -14],
+      [35, -39],
+      [108, -36],
+      [85, 1],
+      [58, -79]
+    ],
+    [
+      [12938, 4237],
+      [-124, -140],
+      [-120, -175],
+      [-111, 78],
+      [8, 54],
+      [-42, 34],
+      [1, -122],
+      [-42, -11],
+      [5, -47],
+      [65, -51],
+      [6, -41],
+      [50, 0],
+      [29, -48],
+      [-46, -106],
+      [1, -54],
+      [44, -52],
+      [-19, -33],
+      [-67, -14],
+      [-25, -72]
+    ],
+    [
+      [12551, 3437],
+      [-111, 47],
+      [-51, 33],
+      [-29, 44],
+      [-121, -55],
+      [-39, -49],
+      [-11, -49],
+      [-42, -40],
+      [-70, -8],
+      [-27, 14],
+      [-100, -1],
+      [-64, 21],
+      [-62, -6],
+      [-28, 17],
+      [-67, -30],
+      [-115, 25],
+      [-72, -17],
+      [-22, -35],
+      [34, -56],
+      [-1, -62],
+      [19, -106],
+      [-51, -45],
+      [-101, -23],
+      [-19, -42],
+      [-106, -62],
+      [-15, 25]
+    ],
+    [
+      [11280, 2977],
+      [14, 43],
+      [-21, 41],
+      [-160, 126],
+      [-84, -50],
+      [-83, 9],
+      [-63, 71],
+      [30, 14],
+      [-51, 79],
+      [-55, 42],
+      [24, 57],
+      [110, 10],
+      [59, 33],
+      [7, 91],
+      [-14, 43],
+      [-72, 22],
+      [3, 30],
+      [67, 19],
+      [10, 145],
+      [-38, 99],
+      [-25, 127],
+      [-44, 26],
+      [-41, -23],
+      [-24, 44],
+      [-75, 7],
+      [-176, 94],
+      [20, 59],
+      [-56, 140]
+    ],
+    [
+      [10542, 4375],
+      [73, 98],
+      [16, 62],
+      [40, -14],
+      [51, 51],
+      [-1, 74],
+      [80, 119],
+      [71, -80],
+      [86, 39],
+      [51, -37],
+      [33, 13],
+      [26, 50]
+    ],
+    [
+      [11068, 4750],
+      [37, -15],
+      [31, -80],
+      [55, -3],
+      [95, 49],
+      [26, -48],
+      [43, -28],
+      [22, 59],
+      [-10, 46],
+      [53, 58],
+      [39, -28],
+      [34, 15],
+      [98, -57],
+      [48, -14],
+      [45, 40],
+      [103, 6],
+      [38, -31],
+      [72, -1]
+    ],
+    [
+      [15116, 6661],
+      [79, -125],
+      [25, -92],
+      [3, -81],
+      [-20, -74],
+      [28, -66],
+      [61, -11],
+      [123, -146],
+      [-2, -57],
+      [-44, 4],
+      [3, -53],
+      [-58, -61],
+      [-59, -32]
+    ],
+    [
+      [15255, 5867],
+      [-70, -89],
+      [-80, -41],
+      [38, -47],
+      [-36, -34],
+      [17, -53],
+      [-4, -57],
+      [-36, -61],
+      [-25, -75],
+      [23, -76],
+      [-44, -12],
+      [-94, 47],
+      [-79, -19],
+      [-14, -59],
+      [-40, -20],
+      [-38, -88],
+      [18, -33],
+      [55, -17],
+      [-39, -47],
+      [-36, 3],
+      [-83, -81],
+      [-28, -5],
+      [-94, -76],
+      [-75, -29],
+      [-23, -96]
+    ],
+    [
+      [14468, 4802],
+      [-88, 22],
+      [-56, 29],
+      [-36, 58],
+      [43, 49],
+      [-61, 60]
+    ],
+    [
+      [14270, 5020],
+      [-2, 70],
+      [77, 1],
+      [68, 151],
+      [-47, 88],
+      [-34, 110],
+      [-46, 5],
+      [-43, 63],
+      [-170, 137],
+      [-23, 60],
+      [-56, 12],
+      [-5, 53],
+      [-96, -13],
+      [-41, -22],
+      [-48, 55],
+      [44, 77],
+      [-12, 42],
+      [-39, -1],
+      [-12, 57],
+      [-87, 9],
+      [-72, -44],
+      [-20, -95],
+      [-74, 15],
+      [-63, -90],
+      [-6, -78],
+      [-89, 49],
+      [-15, 71],
+      [-46, -12],
+      [-72, -63],
+      [0, 85],
+      [-18, 25],
+      [-101, 6]
+    ],
+    [
+      [13122, 5843],
+      [-11, 55],
+      [40, 67],
+      [44, 6],
+      [20, 52],
+      [38, 23],
+      [12, 46],
+      [-99, 75],
+      [-76, 8],
+      [-23, 49],
+      [-42, -24],
+      [-50, 53],
+      [94, 38],
+      [-6, 62],
+      [25, 50],
+      [57, 29]
+    ],
+    [
+      [13145, 6432],
+      [85, -50],
+      [16, -42],
+      [103, -10],
+      [60, -27],
+      [32, 20],
+      [64, -16],
+      [41, 12],
+      [22, 53],
+      [-15, 71],
+      [52, 20],
+      [51, -41],
+      [86, -35],
+      [58, -54],
+      [54, 23],
+      [63, -20],
+      [84, 75],
+      [2, 46],
+      [34, 81],
+      [-6, 55],
+      [43, 43],
+      [-53, 56],
+      [-27, 49],
+      [32, 29],
+      [-50, 120],
+      [-39, 40],
+      [49, 40],
+      [43, -10],
+      [81, 135]
+    ],
+    [
+      [14110, 7095],
+      [73, -60],
+      [-11, -29],
+      [47, -36],
+      [-40, -26],
+      [22, -68],
+      [-8, -108],
+      [34, 27],
+      [82, 20],
+      [25, -56],
+      [54, 10],
+      [14, -41],
+      [90, -73],
+      [44, 9],
+      [24, 47],
+      [-1, 52],
+      [46, 16],
+      [12, 38],
+      [118, -8],
+      [-17, -69],
+      [19, -38],
+      [70, 19],
+      [3, 86],
+      [85, 14],
+      [61, -47],
+      [18, -36],
+      [117, -44],
+      [25, -33]
+    ],
+    [
+      [14270, 5020],
+      [-73, 7],
+      [-130, -37],
+      [-106, -62],
+      [-105, -91],
+      [-49, -72],
+      [-112, -59],
+      [-59, -60],
+      [-54, -3],
+      [-36, -28],
+      [-106, -120],
+      [-75, -119],
+      [-57, 1],
+      [-71, 35],
+      [-99, -24],
+      [-93, -57],
+      [-107, -94]
+    ],
+    [
+      [11897, 4718],
+      [63, 20],
+      [90, 74],
+      [-15, 69],
+      [6, 52],
+      [-65, 111],
+      [21, 40],
+      [-21, 43],
+      [57, 111],
+      [107, -17],
+      [49, -65],
+      [63, 24],
+      [30, 34],
+      [90, 16],
+      [70, 34],
+      [2, 61],
+      [24, 16]
+    ],
+    [
+      [12468, 5341],
+      [72, 30],
+      [77, -35],
+      [45, 0],
+      [-7, 143],
+      [28, 29],
+      [-40, 78],
+      [25, 78],
+      [37, -1],
+      [60, -41],
+      [120, -10],
+      [68, 38],
+      [-19, 56],
+      [8, 46],
+      [38, 51],
+      [117, -5],
+      [25, 45]
+    ],
+    [
+      [13901, 7746],
+      [14, -148],
+      [36, -67],
+      [-1, -79],
+      [45, -100],
+      [39, 2],
+      [59, -162],
+      [17, -97]
+    ],
+    [
+      [13145, 6432],
+      [-20, 71],
+      [-92, 11],
+      [-95, -36],
+      [-31, 32],
+      [17, 59],
+      [-108, 36],
+      [-9, 62],
+      [-45, 28],
+      [45, 55],
+      [-53, 124],
+      [26, 65],
+      [-3, 146],
+      [-28, 42],
+      [-74, 66],
+      [22, 133],
+      [-71, 80],
+      [-86, 113]
+    ],
+    [
+      [10690, 2775],
+      [83, 19],
+      [42, -9],
+      [70, 64],
+      [90, 20],
+      [45, 101],
+      [45, -19],
+      [72, 30],
+      [84, 15],
+      [59, -19]
+    ],
+    [
+      [12551, 3437],
+      [-49, -38],
+      [27, -100],
+      [81, 12],
+      [-20, 42],
+      [43, 25],
+      [-12, -371],
+      [4, -154],
+      [33, -167],
+      [122, -47],
+      [-8, -77],
+      [35, -11],
+      [30, -98],
+      [-102, -4],
+      [-34, -18],
+      [-60, 72],
+      [-93, 37],
+      [-30, -18],
+      [-34, 34],
+      [-42, -55],
+      [-121, 6],
+      [-71, -93],
+      [-35, -14],
+      [-30, 30],
+      [-43, -6],
+      [-77, -41],
+      [-32, -39],
+      [34, -104],
+      [-92, 8],
+      [-52, 26],
+      [-42, -10],
+      [-20, -43],
+      [-68, 20],
+      [-136, 113],
+      [-84, 28],
+      [-70, 55],
+      [-30, -12],
+      [-53, 35],
+      [-86, -50],
+      [-68, 16],
+      [-37, -21],
+      [-30, -75],
+      [-43, -41],
+      [-97, -19],
+      [-58, 15],
+      [-33, 47],
+      [-47, 164],
+      [-28, -18],
+      [-106, 51],
+      [-65, 46],
+      [-115, 9],
+      [-10, 64],
+      [22, 104],
+      [71, 23]
+    ],
+    [
+      [10993, 2589],
+      [-37, -84],
+      [75, -23],
+      [-38, 107]
+    ],
+    [
+      [11120, 8280],
+      [-27, 16],
+      [-94, -23],
+      [-68, -4],
+      [-50, 15],
+      [-32, -50],
+      [-86, -30],
+      [-11, -35],
+      [-62, 5],
+      [-47, 24],
+      [-8, 37],
+      [-62, 29],
+      [-8, 39],
+      [-50, 41],
+      [-30, 48],
+      [-172, 44],
+      [-54, -12],
+      [-70, -58],
+      [-18, 12]
+    ],
+    [
+      [9869, 9352],
+      [50, 106],
+      [100, -54],
+      [34, 58],
+      [27, 9],
+      [30, 70],
+      [67, 20],
+      [1, 39],
+      [90, 0],
+      [9, 28],
+      [64, -31],
+      [41, 12],
+      [24, 53],
+      [38, -1],
+      [52, 41],
+      [9, 34],
+      [71, 68],
+      [61, 10],
+      [41, 36],
+      [14, 49],
+      [63, -40],
+      [75, -1],
+      [37, 77]
+    ],
+    [
+      [10867, 9935],
+      [31, 31],
+      [39, -11],
+      [19, 39],
+      [53, -2],
+      [36, 72],
+      [71, -2],
+      [82, -62],
+      [139, -22],
+      [12, -33],
+      [93, -25],
+      [1, -63],
+      [75, 14],
+      [73, 98],
+      [105, -32],
+      [87, 88]
+    ],
+    [
+      [10867, 9935],
+      [-39, 67],
+      [35, 74],
+      [-20, 80],
+      [-62, 44],
+      [-43, 1],
+      [-58, 43],
+      [-34, 52],
+      [-41, -28],
+      [-118, 5],
+      [-78, 27],
+      [-1, 74],
+      [61, 15],
+      [-56, 84],
+      [-49, -39],
+      [-41, 2],
+      [-51, 33],
+      [7, 44],
+      [74, 30],
+      [3, 76],
+      [-47, 1],
+      [15, 89],
+      [-23, 53],
+      [13, 38],
+      [-81, 75],
+      [25, 34],
+      [-54, 61],
+      [-27, 72],
+      [-83, 11],
+      [-30, 77],
+      [44, 80],
+      [27, 100],
+      [26, 12],
+      [-3, 74],
+      [-39, 27]
+    ],
+    [
+      [8906, 9972],
+      [36, 57],
+      [65, 52],
+      [24, 92],
+      [49, 5],
+      [64, -25],
+      [-3, 62],
+      [22, 22],
+      [48, 121],
+      [-21, 32],
+      [13, 80],
+      [60, -27],
+      [37, 9],
+      [87, 84],
+      [-26, 114],
+      [-105, 45],
+      [-59, 41],
+      [1, 68],
+      [21, 62],
+      [-14, 55]
+    ],
+    [
+      [9205, 10921],
+      [35, 23],
+      [-50, 136],
+      [-8, 69],
+      [54, 25],
+      [28, 53],
+      [43, 15],
+      [18, 44],
+      [51, -14],
+      [111, -1],
+      [33, 143],
+      [33, 30],
+      [124, 13],
+      [75, 50]
+    ],
+    [
+      [17039, 18645],
+      [56, -27],
+      [19, -75],
+      [-47, -103],
+      [79, -144],
+      [-18, -40],
+      [53, -51],
+      [23, -68],
+      [45, -58],
+      [-2, -39],
+      [-76, -88],
+      [59, -53],
+      [-10, -41],
+      [-43, -21],
+      [25, -83],
+      [-104, 1],
+      [40, -140],
+      [74, -31],
+      [61, -50],
+      [-2, -80],
+      [58, -33],
+      [51, 10],
+      [22, -42],
+      [72, -30],
+      [135, -6],
+      [76, -95],
+      [-2, -66],
+      [-34, -45],
+      [79, -24],
+      [-10, -43],
+      [96, -91],
+      [59, 33],
+      [43, -50],
+      [46, -5],
+      [67, -36],
+      [43, 15],
+      [57, -93],
+      [97, -22],
+      [51, -75],
+      [48, -20],
+      [45, 12],
+      [43, -62],
+      [80, 2],
+      [21, -45],
+      [70, 2],
+      [57, 25],
+      [47, -63],
+      [114, -64],
+      [69, -101]
+    ],
+    [
+      [18939, 16390],
+      [-47, -4],
+      [-197, -92],
+      [-113, -120],
+      [-66, 10],
+      [-53, -66],
+      [-76, 15],
+      [-82, 46],
+      [-22, -20],
+      [-79, 51],
+      [-41, 86],
+      [-56, -29],
+      [-25, -50],
+      [-53, -15],
+      [-50, -39],
+      [-70, 6],
+      [-107, -58],
+      [-122, 46],
+      [-17, 50],
+      [-42, -18],
+      [-15, -45],
+      [-127, -20],
+      [-95, -100],
+      [-57, 22],
+      [-116, -7],
+      [-62, -24],
+      [-31, 59],
+      [8, 47],
+      [-140, 46],
+      [59, 74],
+      [-13, 48],
+      [24, 31],
+      [-73, 55],
+      [-72, -20],
+      [-37, -35],
+      [-33, 31]
+    ],
+    [
+      [16841, 16351],
+      [-7, 57],
+      [24, 44],
+      [-94, 50],
+      [4, 66],
+      [57, 35],
+      [9, 56],
+      [-25, 60],
+      [31, 101],
+      [-71, 73],
+      [34, 48],
+      [-1, 42],
+      [40, 39],
+      [24, 106],
+      [-25, 86],
+      [33, 12],
+      [-54, 98],
+      [38, 10],
+      [36, 48],
+      [49, -5],
+      [27, 39],
+      [-71, 60],
+      [28, 75],
+      [50, 47],
+      [-47, 111],
+      [-8, 51],
+      [-89, -4],
+      [-18, 32],
+      [16, 66],
+      [-19, 22],
+      [30, 82],
+      [-55, -5],
+      [-16, 50],
+      [32, 30],
+      [-31, 40],
+      [6, 51],
+      [56, 22],
+      [3, 80],
+      [-47, -8],
+      [-18, 44],
+      [26, 59],
+      [-68, 95],
+      [-3, 41],
+      [-90, 52],
+      [-76, -43],
+      [-82, -26],
+      [-57, -1],
+      [-35, 48],
+      [-11, 56],
+      [10, 102]
+    ],
+    [
+      [16386, 18645],
+      [94, 35],
+      [34, 36],
+      [62, -15],
+      [103, 71],
+      [63, -30],
+      [86, 7],
+      [24, 46],
+      [98, -48],
+      [0, -50],
+      [43, -42],
+      [46, -10]
+    ],
+    [
+      [16841, 16351],
+      [-39, -70],
+      [-38, -12],
+      [-60, 25],
+      [-95, -72],
+      [-84, 3],
+      [-70, -27],
+      [-18, -47],
+      [-52, 26]
+    ],
+    [
+      [16266, 18920],
+      [58, -56],
+      [18, -97],
+      [35, -32],
+      [-28, -42],
+      [37, -48]
+    ],
+    [
+      [17039, 18645],
+      [80, 6],
+      [39, -22],
+      [6, -54],
+      [105, -43],
+      [22, 40],
+      [67, 4],
+      [69, 48],
+      [19, 34],
+      [122, 12],
+      [62, -10],
+      [30, -50],
+      [59, -34],
+      [108, -2],
+      [29, 23],
+      [71, -26],
+      [104, -70],
+      [30, -35],
+      [-22, -41],
+      [67, -38],
+      [24, -41],
+      [-53, -40],
+      [78, -107],
+      [80, -51],
+      [-9, -53],
+      [35, -12],
+      [13, -79],
+      [58, -25],
+      [-27, -39],
+      [39, -57],
+      [71, 8],
+      [78, -39],
+      [41, 63],
+      [-36, 75],
+      [32, 23],
+      [55, -26],
+      [63, 28],
+      [35, -42],
+      [118, -36],
+      [-9, -39],
+      [46, -135],
+      [72, 60],
+      [84, -41],
+      [134, 21],
+      [74, -34],
+      [50, 65],
+      [57, 4],
+      [5, 62],
+      [123, 27],
+      [17, -45],
+      [54, 10],
+      [19, -42],
+      [-22, -32],
+      [44, -40],
+      [20, -50],
+      [58, -40],
+      [48, 8],
+      [43, -22],
+      [12, -45]
+    ],
+    [
+      [10690, 2775],
+      [-87, 32],
+      [-8, 51],
+      [-50, 24],
+      [-132, 2],
+      [-46, 55],
+      [-38, 12],
+      [-111, -41],
+      [1, -54],
+      [-49, -25],
+      [-29, 30],
+      [-25, 90],
+      [-31, 34],
+      [-8, 46],
+      [-56, 40],
+      [9, 34],
+      [-163, -11],
+      [-35, 30],
+      [-99, -42],
+      [-49, 43],
+      [-6, 56],
+      [-35, 43],
+      [-52, 25],
+      [-102, 18],
+      [-35, -9],
+      [-37, 43],
+      [-54, -35],
+      [-104, 82]
+    ],
+    [
+      [9259, 3348],
+      [-24, 147],
+      [-25, 59],
+      [79, 28],
+      [-4, 69],
+      [58, 4],
+      [103, 34],
+      [40, 73],
+      [-25, 40],
+      [-5, 89],
+      [9, 66],
+      [28, 51],
+      [44, -30],
+      [38, 88],
+      [39, -11],
+      [56, 53],
+      [33, -42],
+      [45, 5],
+      [56, -59],
+      [19, -67],
+      [59, 13],
+      [-1, 38],
+      [45, 35],
+      [-25, 57],
+      [-77, 9],
+      [10, 81],
+      [35, -9],
+      [36, 27],
+      [59, -12],
+      [20, 33],
+      [66, 14],
+      [7, 64],
+      [-87, 29],
+      [-38, 31],
+      [12, 52],
+      [34, 50],
+      [34, 14],
+      [124, -137],
+      [-14, -67],
+      [80, -39],
+      [55, 92],
+      [-24, 44],
+      [88, 19],
+      [31, -50],
+      [26, 31],
+      [84, -34],
+      [57, 63],
+      [23, -18]
+    ],
+    [
+      [12468, 5341],
+      [-25, 86],
+      [-25, 23],
+      [-50, -7],
+      [-86, 51],
+      [-51, -56],
+      [-64, -19],
+      [-41, 30],
+      [-50, 4],
+      [-81, 84],
+      [-31, 61],
+      [-73, 90],
+      [22, 82],
+      [-37, 22],
+      [3, 68],
+      [-70, 55],
+      [23, 80],
+      [-34, 15],
+      [-26, 87],
+      [-37, 59],
+      [-78, 13],
+      [-33, 89],
+      [-48, 16],
+      [-39, 49],
+      [-39, -10],
+      [-35, 61],
+      [-73, -25],
+      [0, 56],
+      [-88, 45],
+      [-35, 2],
+      [-13, 49],
+      [-55, -11],
+      [-129, -88],
+      [-62, -19]
+    ],
+    [
+      [11008, 6383],
+      [-25, 74],
+      [-94, 16],
+      [-8, 55],
+      [37, 69],
+      [46, -1],
+      [14, 78],
+      [-47, 15],
+      [-60, -8],
+      [-64, 98],
+      [34, 42]
+    ],
+    [
+      [10841, 6821],
+      [40, 53],
+      [-61, 78],
+      [7, 61],
+      [-35, 31],
+      [-15, 96],
+      [124, 29],
+      [28, 55],
+      [29, 7],
+      [41, 65],
+      [53, 19],
+      [56, 56],
+      [46, 11],
+      [30, -31],
+      [75, 0],
+      [26, 46],
+      [45, 4],
+      [14, 51]
+    ],
+    [
+      [9079, 6190],
+      [34, -81],
+      [90, 59],
+      [42, -48],
+      [-54, -27],
+      [19, -58],
+      [-103, -120],
+      [16, -53],
+      [60, 24],
+      [48, -38],
+      [38, 17],
+      [38, -44],
+      [-5, -73],
+      [28, -26],
+      [-14, -48],
+      [46, -18],
+      [-43, -100],
+      [88, -3]
+    ],
+    [
+      [9407, 5553],
+      [8, -35],
+      [105, -141],
+      [59, -24],
+      [-25, -55],
+      [63, -73],
+      [88, -20],
+      [18, -69],
+      [34, 20],
+      [30, -42],
+      [-1, -61],
+      [-55, 6],
+      [-11, -34],
+      [-49, -6],
+      [-43, -48],
+      [-58, 14],
+      [-13, -116],
+      [-52, -35],
+      [37, -29],
+      [-35, -70],
+      [6, -43],
+      [-33, -48],
+      [-12, -56],
+      [-42, 11],
+      [-76, 81],
+      [-82, 21],
+      [-67, 3],
+      [-21, -40],
+      [-57, 40],
+      [-60, -103],
+      [-25, 16],
+      [-63, -114],
+      [-47, -39],
+      [-58, -3]
+    ],
+    [
+      [8870, 4461],
+      [-92, 43],
+      [-63, 8],
+      [-20, -18],
+      [-151, 20],
+      [-26, 49],
+      [-73, -29],
+      [-9, 73],
+      [-42, 32],
+      [-103, -48],
+      [-77, 8],
+      [-73, 118],
+      [48, 45],
+      [-54, 73],
+      [-29, 99],
+      [-90, 3],
+      [-37, 60],
+      [-49, 47],
+      [-20, 92],
+      [-92, 2],
+      [-35, -55]
+    ],
+    [
+      [10336, 5854],
+      [-12, -43],
+      [12, -72],
+      [58, -58],
+      [-7, -59],
+      [57, -36],
+      [47, -80],
+      [6, -56],
+      [72, -60],
+      [-66, -51],
+      [88, -13],
+      [13, -70],
+      [-40, -16],
+      [-23, -46],
+      [182, -118],
+      [51, -3],
+      [18, -66],
+      [58, -74],
+      [153, -87],
+      [50, -20],
+      [15, -76]
+    ],
+    [
+      [9259, 3348],
+      [-88, 34],
+      [-35, -10],
+      [-109, 58],
+      [-71, -46],
+      [14, -81],
+      [-18, -123],
+      [32, -67],
+      [-18, -78],
+      [-221, 30],
+      [-15, -24],
+      [-60, 18]
+    ],
+    [
+      [8670, 3059],
+      [7, 29],
+      [-30, 62],
+      [-11, 73],
+      [13, 72],
+      [-11, 35],
+      [32, 139],
+      [42, -22],
+      [90, -18],
+      [21, 23],
+      [37, 131],
+      [71, 76],
+      [-40, 26],
+      [11, 62],
+      [-55, 52],
+      [-37, -4],
+      [-40, -45],
+      [-10, 83],
+      [44, 85],
+      [-92, 49],
+      [-23, 45],
+      [-74, 36],
+      [122, 143],
+      [-5, 44],
+      [53, -8],
+      [-1, 62],
+      [131, 145],
+      [-45, 27]
+    ],
+    [
+      [9407, 5553],
+      [128, 36],
+      [34, -10],
+      [38, 41],
+      [49, -43],
+      [65, 47],
+      [40, -55],
+      [50, -9],
+      [-4, -51],
+      [95, 42],
+      [132, 71],
+      [-8, 44],
+      [-62, -8],
+      [7, 57],
+      [71, 73],
+      [82, -41],
+      [46, 4],
+      [45, 80],
+      [30, -46],
+      [91, 69]
+    ],
+    [
+      [8670, 3059],
+      [-65, -23],
+      [-60, 10],
+      [-6, 41],
+      [-49, 27],
+      [-51, -42],
+      [-1, -33],
+      [-52, -34],
+      [-46, 41],
+      [-6, 50],
+      [-56, 6],
+      [-73, 40],
+      [-31, -28],
+      [-76, -31],
+      [-28, 15],
+      [-61, -48],
+      [-53, 12],
+      [-22, -36],
+      [-96, 22],
+      [-12, 49],
+      [-53, 13],
+      [-68, 119],
+      [-97, 53],
+      [-128, 96]
+    ],
+    [
+      [10841, 6821],
+      [-86, -38],
+      [-51, 23],
+      [-17, -40],
+      [-64, 23],
+      [-60, -27],
+      [-81, -72],
+      [-52, -12],
+      [1, 45],
+      [-66, 8],
+      [18, -115],
+      [-20, -36],
+      [-55, -11],
+      [-43, 100],
+      [-55, 23],
+      [-34, -64],
+      [-115, -76],
+      [-56, 3],
+      [-92, 25],
+      [33, 64],
+      [2, 71],
+      [-71, -25],
+      [-12, -31],
+      [-102, 39],
+      [-24, 40],
+      [-92, 47],
+      [-20, 56],
+      [11, 41],
+      [48, 17],
+      [-3, 45],
+      [-47, -5],
+      [-59, -30]
+    ],
+    [
+      [11008, 6383],
+      [-76, -3],
+      [-34, 35],
+      [-175, -84],
+      [-43, -68],
+      [-49, 41],
+      [-116, 3],
+      [-7, -117],
+      [41, -11],
+      [17, -36],
+      [-22, -49],
+      [-60, -27],
+      [-50, -88],
+      [6, -28],
+      [-109, 5],
+      [-21, -36],
+      [60, -19],
+      [-34, -47]
+    ],
+    [
+      [12716, 20172],
+      [-91, -74],
+      [-56, -24],
+      [5, 68],
+      [55, 8],
+      [36, 47],
+      [51, -25]
+    ],
+    [
+      [14331, 19750],
+      [-87, -19],
+      [-46, 34],
+      [-37, -8],
+      [-78, 49],
+      [23, 57],
+      [-20, 37],
+      [-50, -40],
+      [-42, -2],
+      [-55, -38],
+      [-8, 52],
+      [-69, 36],
+      [-142, 13],
+      [-47, 36],
+      [-79, -36],
+      [-77, -65],
+      [-31, 43],
+      [-81, 18],
+      [-80, -75],
+      [-96, 7],
+      [-45, 28],
+      [-70, 3],
+      [-25, -42],
+      [-88, -5],
+      [-15, 33],
+      [-63, 1],
+      [-88, -41]
+    ],
+    [
+      [12835, 19826],
+      [-76, 28],
+      [-51, 67]
+    ],
+    [
+      [12708, 19921],
+      [-4, 50],
+      [40, 39],
+      [-28, 74],
+      [61, 37],
+      [4, 60],
+      [29, 33],
+      [-39, 42],
+      [18, 45],
+      [56, -1],
+      [12, 37],
+      [-61, 26],
+      [3, 37],
+      [-159, 31],
+      [-16, 26],
+      [74, 55],
+      [-109, 110],
+      [-36, 82],
+      [121, 70],
+      [-93, 69],
+      [25, 59],
+      [-92, 72],
+      [-85, -30],
+      [-43, 18],
+      [7, 69],
+      [-96, -28],
+      [-25, 122],
+      [0, 67],
+      [51, 45],
+      [44, 8],
+      [-53, 64],
+      [-41, 24],
+      [-61, -13],
+      [-34, -134],
+      [-45, 55],
+      [-136, -26],
+      [-27, 37],
+      [-103, -16],
+      [-18, 33],
+      [-67, -22],
+      [-94, 57],
+      [-68, 96],
+      [-47, 40],
+      [-21, 56],
+      [107, 60],
+      [-143, 36],
+      [-47, -12],
+      [-116, 77],
+      [-15, 89],
+      [-127, 297],
+      [-72, 66]
+    ],
+    [
+      [11139, 22109],
+      [142, 26],
+      [57, 32],
+      [192, 45],
+      [58, -23],
+      [279, 107],
+      [20, -44],
+      [30, -161],
+      [43, -25],
+      [37, -99],
+      [-37, -76],
+      [-11, -136],
+      [39, -40],
+      [16, -53],
+      [55, 19],
+      [76, -21],
+      [8, -37],
+      [137, -181],
+      [54, 11],
+      [34, -43],
+      [61, -20],
+      [31, 40],
+      [12, 71],
+      [187, 87],
+      [34, -18],
+      [102, 39],
+      [81, -128],
+      [18, -49],
+      [58, -7],
+      [21, -77],
+      [-28, -14],
+      [1, -66],
+      [52, -107],
+      [-3, -82],
+      [16, -71],
+      [140, -84],
+      [90, 41],
+      [61, 56],
+      [65, -35],
+      [7, -54],
+      [73, 13],
+      [60, -8],
+      [95, -138],
+      [6, -109],
+      [-23, -42],
+      [24, -82],
+      [57, -73],
+      [33, 20],
+      [17, 83],
+      [150, 14],
+      [71, -62],
+      [117, 48],
+      [39, -13],
+      [59, 36],
+      [80, -86],
+      [64, -42],
+      [9, -67],
+      [61, -36],
+      [25, 45],
+      [41, -10],
+      [22, -42],
+      [-84, -90],
+      [-25, -88],
+      [5, -37],
+      [-41, -59],
+      [106, 0],
+      [16, -84],
+      [34, -42],
+      [-5, -35],
+      [-52, -35],
+      [-46, -4],
+      [-37, -59],
+      [30, -79],
+      [-24, -19]
+    ],
+    [
+      [12708, 19921],
+      [-25, -19],
+      [-96, 29],
+      [-63, -38],
+      [-35, 27],
+      [-49, -40],
+      [-63, 20],
+      [-32, 77],
+      [-75, -36],
+      [-19, -28],
+      [-66, -22],
+      [13, 67],
+      [33, 49],
+      [-1, 46],
+      [-79, 34],
+      [-59, -78],
+      [-68, 6],
+      [-26, 29],
+      [-85, 14],
+      [-12, 52],
+      [-55, -48],
+      [-27, 59],
+      [-93, -22],
+      [-39, -99],
+      [-54, 51],
+      [-30, -2],
+      [22, 106],
+      [39, 40],
+      [125, 49],
+      [-67, 82],
+      [-108, -10],
+      [-32, -43],
+      [-47, 34],
+      [-46, -21],
+      [-50, 34],
+      [-148, -45],
+      [-119, -3],
+      [-43, 47],
+      [-31, 68],
+      [-159, 71],
+      [-17, 27],
+      [45, 42],
+      [-27, 31],
+      [-41, -43],
+      [-69, 23],
+      [-9, 27],
+      [-100, 58],
+      [-66, 4],
+      [-131, -63],
+      [-47, 14],
+      [-48, 65]
+    ],
+    [
+      [10429, 20643],
+      [-51, 21],
+      [-42, 55],
+      [20, 67],
+      [16, 217],
+      [41, 48],
+      [-45, 60],
+      [0, 156],
+      [-25, 136],
+      [72, 154],
+      [-1, 55],
+      [-43, 144],
+      [10, 42],
+      [84, 11],
+      [109, 117],
+      [95, 56],
+      [190, 63],
+      [94, 50],
+      [95, -5],
+      [91, 19]
+    ],
+    [
+      [6008, 14700],
+      [14, -48],
+      [-28, -53],
+      [92, -47],
+      [23, -35],
+      [-2, -64],
+      [29, -19],
+      [8, -56],
+      [31, -39],
+      [53, 3],
+      [44, -33],
+      [77, -16],
+      [26, -26],
+      [-53, -56],
+      [-202, 22],
+      [-8, -57],
+      [37, -89],
+      [74, -19],
+      [96, 11],
+      [51, -36],
+      [71, 4],
+      [-4, -54],
+      [30, -104],
+      [39, -55],
+      [-82, -64],
+      [-86, -14],
+      [-72, 14],
+      [-141, -14],
+      [-20, -24],
+      [-70, -10],
+      [-121, -36],
+      [-48, -39],
+      [-3, -37],
+      [69, 8],
+      [29, -80],
+      [69, -69],
+      [41, 31],
+      [37, -28],
+      [-12, -48],
+      [30, -114],
+      [-95, -89],
+      [4, -73],
+      [89, -15],
+      [34, -54],
+      [51, -16],
+      [-4, -51],
+      [-47, -25]
+    ],
+    [
+      [6158, 12987],
+      [-74, 24],
+      [-110, 102],
+      [-78, -115],
+      [-28, 23],
+      [-61, -34],
+      [26, -111],
+      [-11, -56],
+      [-76, -28],
+      [-66, -43],
+      [-1, 70],
+      [-26, 57],
+      [20, 21],
+      [-16, 94],
+      [-42, 22],
+      [-67, -85],
+      [-17, -57],
+      [51, -87],
+      [-13, -75],
+      [45, -57],
+      [-70, -24],
+      [-4, -29],
+      [-142, 42],
+      [-37, -9],
+      [-41, 35],
+      [-45, -12],
+      [-25, 26],
+      [-22, 79],
+      [-45, -12],
+      [-81, 16],
+      [1, 48],
+      [-62, 0],
+      [-64, 44],
+      [-6, 45],
+      [-51, 20],
+      [-50, 62]
+    ],
+    [
+      [4870, 12983],
+      [-30, 70],
+      [-79, 80],
+      [-69, 30],
+      [-94, 17],
+      [-30, 17],
+      [-103, 21],
+      [32, 55],
+      [87, 28],
+      [12, 100],
+      [-29, 44],
+      [11, 85],
+      [58, 20],
+      [109, 16],
+      [34, 47],
+      [-121, 5],
+      [-66, -28],
+      [-201, -133],
+      [-67, 39],
+      [-30, 47],
+      [-39, 18],
+      [-61, -7],
+      [-19, -44],
+      [-104, 53],
+      [105, 28],
+      [-57, 74],
+      [-58, -29],
+      [2, 54],
+      [-41, 67],
+      [-34, 11],
+      [165, 157],
+      [-18, 21]
+    ],
+    [
+      [7343, 14663],
+      [12, -47],
+      [62, -43],
+      [71, -5],
+      [79, -33],
+      [53, 47],
+      [28, -45],
+      [-49, -52],
+      [30, -75],
+      [127, -33],
+      [14, 49],
+      [82, -19],
+      [74, -2],
+      [27, -44],
+      [61, -52],
+      [97, -1],
+      [51, -56],
+      [55, 41],
+      [3, 40],
+      [68, -19]
+    ],
+    [
+      [8016, 13297],
+      [-54, 25],
+      [-47, -44],
+      [-34, -66],
+      [-17, -79],
+      [-63, 17],
+      [-26, -82]
+    ],
+    [
+      [7775, 13068],
+      [-41, -24],
+      [-59, 61],
+      [40, 36],
+      [-68, 27],
+      [-33, -35],
+      [-53, 28],
+      [-66, -7],
+      [-88, -34],
+      [-22, 17],
+      [-64, -11],
+      [-8, -44],
+      [-128, -10],
+      [-12, 37],
+      [-105, -48],
+      [-3, -74],
+      [-52, -72],
+      [-39, -11],
+      [-78, 18],
+      [-67, -35],
+      [-73, 17],
+      [-40, 27],
+      [-32, -30],
+      [-61, -13],
+      [-17, -36],
+      [-51, 12]
+    ],
+    [
+      [6555, 12864],
+      [-15, 36],
+      [-52, 37],
+      [-37, -22],
+      [-67, 53],
+      [-21, -40],
+      [-146, 28],
+      [-59, 31]
+    ],
+    [
+      [6019, 14777],
+      [70, -55],
+      [83, -3],
+      [100, -24],
+      [83, 1],
+      [66, -29],
+      [29, 78],
+      [99, -49],
+      [4, -24],
+      [83, -28],
+      [36, 44],
+      [87, -42],
+      [15, -26],
+      [215, -14],
+      [40, 52],
+      [80, -17],
+      [40, 79],
+      [82, -64],
+      [39, 23],
+      [73, -16]
+    ],
+    [
+      [7848, 16088],
+      [-37, -27],
+      [-52, 9],
+      [-37, -26],
+      [6, -39],
+      [-39, -26],
+      [30, -90],
+      [-41, -82],
+      [30, -86],
+      [-2, -39],
+      [-61, -49],
+      [-70, -34],
+      [-15, -96],
+      [35, -47],
+      [-19, -108],
+      [-67, 12],
+      [-93, -73],
+      [-6, -47],
+      [45, -15],
+      [18, -142],
+      [-64, -25],
+      [-71, -4],
+      [-33, -47],
+      [45, -53],
+      [3, -68],
+      [-57, 0],
+      [-55, -59],
+      [21, -52],
+      [71, -9],
+      [10, -103]
+    ],
+    [
+      [4260, 12315],
+      [88, -38],
+      [37, -34],
+      [-56, -45],
+      [-93, 56],
+      [-13, 39],
+      [37, 22]
+    ],
+    [
+      [4444, 12987],
+      [60, -42],
+      [-4, -86],
+      [101, -54],
+      [13, -84],
+      [-110, 116],
+      [-64, -15],
+      [-66, 84],
+      [24, 70],
+      [46, 11]
+    ],
+    [
+      [6244, 11349],
+      [-33, 6],
+      [-2, 4],
+      [-28, -32],
+      [-46, 17],
+      [-52, -32],
+      [-29, -60],
+      [-103, 87],
+      [-20, -47],
+      [-50, 87],
+      [-61, 40],
+      [-54, -11],
+      [-103, 5],
+      [-54, 127],
+      [-188, 32],
+      [-36, 51],
+      [-62, 17],
+      [-104, 74],
+      [-23, 35],
+      [-70, 22],
+      [-18, 103],
+      [-40, 142],
+      [-59, 67],
+      [-64, 112],
+      [-74, 47],
+      [3, 29],
+      [-143, 151],
+      [-109, 82],
+      [-18, 164],
+      [40, 7],
+      [69, 101],
+      [40, 31],
+      [45, 134],
+      [72, 42]
+    ],
+    [
+      [6555, 12864],
+      [16, -67],
+      [78, -35],
+      [24, -120],
+      [52, -82],
+      [80, -50],
+      [31, 0],
+      [-26, -121],
+      [48, -53],
+      [11, -45],
+      [50, -59],
+      [-35, -31],
+      [65, -53],
+      [-18, -38],
+      [53, -62],
+      [-20, -33],
+      [21, -41],
+      [17, -125],
+      [-40, -11],
+      [-25, -40],
+      [29, -32],
+      [8, -132],
+      [15, -60],
+      [113, -61],
+      [-34, -59],
+      [-67, -3],
+      [-53, -58],
+      [-10, -34],
+      [-83, 13],
+      [-44, -50],
+      [-38, 2]
+    ],
+    [
+      [6773, 11324],
+      [-14, 18],
+      [-125, 63],
+      [-13, -49],
+      [-59, 20],
+      [-72, -33],
+      [-39, 25],
+      [38, 84],
+      [-47, 12],
+      [-21, -32],
+      [-61, 4],
+      [-51, -22],
+      [-65, -65]
+    ],
+    [
+      [14331, 19750],
+      [142, -49]
+    ],
+    [
+      [12679, 17775],
+      [34, 56],
+      [71, 28],
+      [-44, 37],
+      [-14, 62],
+      [-134, 43],
+      [-37, -56],
+      [-30, -10],
+      [-12, 102],
+      [116, -3],
+      [-20, 69],
+      [13, 58],
+      [-64, 6],
+      [-45, 75],
+      [58, 43],
+      [46, -20],
+      [57, 37],
+      [40, 71],
+      [0, 128],
+      [50, -6],
+      [44, 52],
+      [-74, 32],
+      [22, 58],
+      [-37, 40],
+      [38, 24],
+      [14, 50],
+      [-14, 135],
+      [-44, 47],
+      [29, 20],
+      [-20, 58],
+      [43, 29],
+      [-14, 84]
+    ],
+    [
+      [12751, 19124],
+      [-37, 118],
+      [-51, 55],
+      [38, 24],
+      [3, 169],
+      [48, 40],
+      [-2, 71],
+      [73, 77],
+      [-2, 36],
+      [45, 33],
+      [-57, 32],
+      [26, 47]
+    ],
+    [
+      [10691, 19243],
+      [38, -9],
+      [44, -53],
+      [17, -67],
+      [70, -4],
+      [60, 46],
+      [24, -44],
+      [45, 24],
+      [87, -1],
+      [38, -36],
+      [101, -16],
+      [48, 32],
+      [115, 0],
+      [117, -44],
+      [41, -4],
+      [65, -58],
+      [59, 12],
+      [52, -19],
+      [50, -73],
+      [43, 35],
+      [32, -16],
+      [69, -74],
+      [68, 34],
+      [25, -75],
+      [60, 5],
+      [-2, 43],
+      [31, 59],
+      [85, -1],
+      [65, -28],
+      [22, 111],
+      [60, -2],
+      [33, 56],
+      [40, 8],
+      [41, 48],
+      [57, -38],
+      [65, 34],
+      [56, -63],
+      [37, 77],
+      [102, -18]
+    ],
+    [
+      [10065, 19947],
+      [115, 104],
+      [42, 139],
+      [31, 55],
+      [85, 50],
+      [102, -48],
+      [-11, 52],
+      [-55, 91],
+      [-55, 9],
+      [-10, 57],
+      [29, 179],
+      [91, 8]
+    ],
+    [
+      [5760, 10740],
+      [110, -80],
+      [30, -48],
+      [126, -26],
+      [-12, -64],
+      [16, -68],
+      [68, -89],
+      [-30, -85],
+      [17, -47],
+      [-75, -43],
+      [-26, 139],
+      [-191, 176],
+      [-17, 66],
+      [12, 55],
+      [-39, 96],
+      [11, 18]
+    ],
+    [
+      [5596, 11222],
+      [48, -26],
+      [-18, -44],
+      [121, 5],
+      [-24, -58],
+      [103, 1],
+      [65, -44],
+      [43, 3],
+      [39, -77],
+      [-15, -26],
+      [-68, 0],
+      [-109, 77],
+      [-107, 58],
+      [-63, -23],
+      [-52, 20],
+      [-36, 68],
+      [73, 66]
+    ],
+    [
+      [6773, 11324],
+      [23, -83],
+      [-24, -52],
+      [93, -60],
+      [13, -49],
+      [103, -136],
+      [107, 12],
+      [31, -19],
+      [36, -64],
+      [82, -12],
+      [75, -41],
+      [188, -17],
+      [11, -45],
+      [96, -27],
+      [34, -44],
+      [68, -50],
+      [14, -60],
+      [51, -20]
+    ],
+    [
+      [7774, 10557],
+      [11, -89],
+      [-86, -10],
+      [6, -59],
+      [50, -65],
+      [-36, -61],
+      [3, -58],
+      [-39, -68],
+      [-92, -36],
+      [-41, 70],
+      [-68, 0],
+      [-32, -44],
+      [-212, -47],
+      [-16, -61],
+      [68, 5],
+      [-5, -41],
+      [16, -155],
+      [-36, -72],
+      [69, 5],
+      [17, -40],
+      [124, -103],
+      [-37, -68],
+      [101, -35],
+      [5, -64],
+      [-26, -82],
+      [31, -48],
+      [-4, -37],
+      [-92, -97],
+      [61, -43],
+      [-19, -113],
+      [84, 30],
+      [51, -36],
+      [53, 2],
+      [82, -39],
+      [-11, -96],
+      [102, 2],
+      [26, -33],
+      [56, -14],
+      [1, -84]
+    ],
+    [
+      [6824, 9087],
+      [-46, 155],
+      [-46, 91],
+      [-81, 122],
+      [-112, 95],
+      [-22, 46],
+      [-47, 2],
+      [-70, 56],
+      [-5, 55],
+      [-35, 47],
+      [-37, -8],
+      [-46, 39],
+      [-68, 28],
+      [-71, 68],
+      [-82, 49],
+      [-38, 38],
+      [-8, 159],
+      [46, 24],
+      [41, -8],
+      [80, 65],
+      [-48, 59],
+      [20, 45],
+      [47, -12],
+      [68, 96],
+      [12, 114],
+      [-18, 35],
+      [3, 74],
+      [45, 31],
+      [-12, 78],
+      [-46, 19],
+      [-16, 93],
+      [-109, 101],
+      [-92, 29],
+      [48, 143],
+      [39, 21],
+      [79, 95],
+      [-14, 89],
+      [15, 41],
+      [1, 5],
+      [45, -17]
+    ],
+    [
+      [7774, 10557],
+      [68, 38],
+      [50, 161],
+      [70, -8],
+      [84, 94],
+      [41, -6],
+      [56, 29],
+      [49, -45],
+      [46, 26]
+    ],
+    [
+      [8238, 10846],
+      [34, -3],
+      [111, -80],
+      [36, 13],
+      [136, -5],
+      [16, -32],
+      [82, 27],
+      [15, 55],
+      [-44, 5],
+      [39, 99],
+      [56, 4],
+      [48, -106],
+      [104, -18],
+      [3, 27],
+      [121, 18],
+      [-17, 35],
+      [47, 37],
+      [63, 23],
+      [117, -24]
+    ],
+    [
+      [7775, 13068],
+      [32, -118],
+      [75, -76],
+      [-19, -47],
+      [36, -49],
+      [20, -70],
+      [-30, -66],
+      [80, -57],
+      [-53, -15],
+      [-53, -54],
+      [80, -31],
+      [-48, -55],
+      [5, -46],
+      [70, -59],
+      [-38, -57],
+      [-14, -76],
+      [-40, -73],
+      [-36, -29],
+      [75, -50],
+      [51, -4],
+      [-4, -69],
+      [-36, -30],
+      [16, -60],
+      [-21, -49],
+      [-39, 2],
+      [-13, -126],
+      [46, -4],
+      [-15, -143],
+      [84, -74],
+      [-32, -38],
+      [24, -65],
+      [76, -54],
+      [69, 96],
+      [51, -8],
+      [33, -35],
+      [-38, -55],
+      [30, -59],
+      [-67, -26],
+      [21, -84],
+      [-45, -42],
+      [-9, -60],
+      [49, -15],
+      [24, -51],
+      [95, -35],
+      [-42, -70],
+      [13, -36]
+    ],
+    [
+      [18678, 7541],
+      [11, -75],
+      [-31, -104],
+      [-32, -40],
+      [-48, -11],
+      [-34, -52],
+      [33, -105],
+      [44, -33],
+      [56, -96],
+      [-71, -22],
+      [-11, -120]
+    ],
+    [
+      [18595, 6883],
+      [-71, -54],
+      [-21, 4],
+      [-68, -66],
+      [-16, -64],
+      [-46, -61],
+      [-50, -27],
+      [-11, -96],
+      [-47, -92],
+      [32, -101],
+      [75, -103],
+      [-16, -84],
+      [67, -49],
+      [10, -31],
+      [66, -42],
+      [16, -79],
+      [99, -64],
+      [45, -69],
+      [-76, -16],
+      [-93, 65],
+      [-48, -19],
+      [-31, -61],
+      [-52, -27],
+      [-80, 7],
+      [-43, -102],
+      [50, -13],
+      [14, -32],
+      [-113, -50]
+    ],
+    [
+      [18187, 5557],
+      [-20, 35],
+      [-57, 2],
+      [-50, -50],
+      [-52, 54],
+      [-52, -33],
+      [-110, -6],
+      [-5, -63],
+      [-45, -64],
+      [-45, 5],
+      [-134, 96],
+      [-28, 53],
+      [-60, -9],
+      [-64, -105],
+      [-44, -33],
+      [-46, 19],
+      [-63, -94],
+      [-55, -28],
+      [-20, -56],
+      [-52, 62],
+      [-5, 44],
+      [-51, 16],
+      [-21, 62],
+      [-51, 10],
+      [-26, -61],
+      [-50, -7],
+      [-37, 52],
+      [-78, 23],
+      [-37, -61]
+    ],
+    [
+      [16829, 5420],
+      [-64, 63],
+      [-4, 56],
+      [-45, 19],
+      [-46, 82],
+      [-42, 13],
+      [-86, -4],
+      [-36, 43],
+      [37, 36],
+      [53, 120],
+      [-36, 0],
+      [-25, 61],
+      [-84, 7],
+      [10, 111],
+      [36, 70],
+      [3, 104],
+      [-65, -15],
+      [-6, 120]
+    ],
+    [
+      [16429, 6306],
+      [67, 40],
+      [52, 122],
+      [52, 10],
+      [45, -56],
+      [-11, -36],
+      [73, -10],
+      [6, 40],
+      [-57, 9],
+      [9, 50],
+      [38, 5]
+    ],
+    [
+      [16703, 6480],
+      [25, -12],
+      [96, 54],
+      [87, 2],
+      [31, -24],
+      [122, -20],
+      [-46, 47],
+      [-32, 76],
+      [-43, 32],
+      [-13, 40],
+      [40, 55],
+      [41, -22],
+      [7, -45],
+      [50, -50],
+      [2, 89],
+      [18, 57],
+      [-43, 12],
+      [62, 95],
+      [25, 81],
+      [101, 55],
+      [98, 133],
+      [113, -35],
+      [111, -184],
+      [54, 70],
+      [-45, 118],
+      [45, 5],
+      [48, 35],
+      [31, -34],
+      [37, 10],
+      [38, 118],
+      [57, -64],
+      [26, -58],
+      [35, 7],
+      [67, -41],
+      [117, -19],
+      [116, 3],
+      [14, 88],
+      [41, 34],
+      [23, 72],
+      [86, 52],
+      [47, 73],
+      [80, 50],
+      [37, 5],
+      [21, 41],
+      [37, 7],
+      [51, 66],
+      [60, -13]
+    ],
+    [
+      [18645, 4849],
+      [-75, 51],
+      [17, 45],
+      [-25, 24],
+      [44, 88],
+      [7, 63],
+      [-27, 29],
+      [-64, -11],
+      [-61, 54],
+      [-22, -3],
+      [-59, 86],
+      [21, 64],
+      [-32, 101],
+      [-65, 5],
+      [-46, 40],
+      [-39, -20],
+      [-32, 92]
+    ],
+    [
+      [18595, 6883],
+      [49, -30],
+      [11, -48],
+      [44, -47],
+      [1, -32],
+      [54, -44],
+      [12, -82],
+      [41, -42],
+      [60, 14],
+      [101, -69],
+      [83, -9],
+      [37, -59],
+      [35, -2],
+      [34, -54],
+      [125, -4],
+      [24, -66],
+      [80, 2],
+      [31, 26],
+      [46, -4],
+      [69, 42],
+      [97, 24],
+      [69, -4],
+      [30, 50],
+      [78, 2],
+      [-24, -113],
+      [70, -92],
+      [-19, -103],
+      [-56, -31],
+      [5, -73],
+      [-25, -49],
+      [-63, -45],
+      [-62, -26],
+      [-16, -104],
+      [-96, -63],
+      [47, -202],
+      [-62, -43],
+      [-82, -33],
+      [-49, -76],
+      [-73, 8],
+      [-80, -84],
+      [-27, 21],
+      [-62, -7],
+      [-56, -99],
+      [-71, 21],
+      [-48, -64],
+      [-13, -126],
+      [-65, -11],
+      [-78, -77],
+      [-8, 30],
+      [-58, 1],
+      [-50, -21],
+      [-32, -70],
+      [29, -19],
+      [-37, -48]
+    ],
+    [
+      [16823, 5409],
+      [47, -19],
+      [7, -45],
+      [38, -17],
+      [-22, -67],
+      [-45, 1],
+      [-107, -41],
+      [-31, -72],
+      [11, -62],
+      [-48, -20],
+      [93, -55],
+      [-4, -115],
+      [-24, -44],
+      [44, -34],
+      [80, -131],
+      [-45, -19],
+      [-72, 14],
+      [-32, -20],
+      [33, -103],
+      [-24, -30],
+      [4, -64],
+      [55, 10],
+      [56, -81],
+      [-3, -34],
+      [-92, -46],
+      [-29, -27],
+      [-18, -128]
+    ],
+    [
+      [16695, 4160],
+      [-74, 16],
+      [-35, -59],
+      [-43, 26],
+      [-63, 92],
+      [-32, -35],
+      [-82, 32],
+      [-53, -14],
+      [-31, 18],
+      [-64, -14],
+      [-22, 55],
+      [50, 71],
+      [-54, 44],
+      [28, 66],
+      [-37, 81],
+      [-49, 38],
+      [-74, -55],
+      [-53, -22],
+      [-44, 9],
+      [-240, -9],
+      [-33, 33],
+      [-13, 60],
+      [-53, 74],
+      [-15, 59],
+      [-68, 14],
+      [-114, -80],
+      [-15, -49],
+      [43, -19],
+      [-5, -57],
+      [-59, -20],
+      [-70, 30],
+      [-87, 6],
+      [-103, -9],
+      [-122, 37],
+      [-36, 33],
+      [45, 50],
+      [-10, 80],
+      [-73, 42],
+      [-139, 8],
+      [-19, -15],
+      [-309, 25]
+    ],
+    [
+      [15255, 5867],
+      [179, -31],
+      [74, -53],
+      [104, -41],
+      [89, -94],
+      [32, -89],
+      [213, -125],
+      [78, 28],
+      [122, -25],
+      [43, -41],
+      [157, -89],
+      [132, -48],
+      [118, -1],
+      [53, 31],
+      [49, 49],
+      [61, -7],
+      [64, 78]
+    ],
+    [
+      [18180, 8585],
+      [60, -112],
+      [24, -91],
+      [82, 6],
+      [36, -121],
+      [-1, -131],
+      [78, -62],
+      [20, -33],
+      [68, -42],
+      [66, -20],
+      [56, 42],
+      [85, -55],
+      [29, -38],
+      [-20, -69],
+      [25, -44],
+      [-2, -61],
+      [63, -81],
+      [15, -46],
+      [-23, -26],
+      [-45, 23],
+      [-48, -9],
+      [-70, -74]
+    ],
+    [
+      [16703, 6480],
+      [8, 90],
+      [-13, 34],
+      [21, 47],
+      [-61, 2],
+      [-10, 61],
+      [-42, 51],
+      [4, 38],
+      [-117, 0],
+      [-30, 39],
+      [-43, -28],
+      [-78, 101],
+      [-15, 70],
+      [9, 50],
+      [53, -29],
+      [-23, 177],
+      [82, -15],
+      [143, -60],
+      [46, 84],
+      [48, 0],
+      [-57, 74],
+      [-47, 20],
+      [16, 58],
+      [65, 117],
+      [-12, 73],
+      [65, -3],
+      [64, -23],
+      [44, 47],
+      [57, -16],
+      [16, 49],
+      [45, 38],
+      [-44, 35]
+    ],
+    [
+      [16897, 7661],
+      [43, 82],
+      [29, 21],
+      [58, -10],
+      [52, 13],
+      [94, 65],
+      [-47, 54],
+      [83, 36],
+      [41, 40],
+      [41, -51],
+      [87, 69],
+      [27, 38],
+      [61, -23],
+      [41, 15],
+      [81, -14],
+      [28, 38],
+      [58, 8],
+      [49, -56],
+      [30, 15],
+      [4, 199],
+      [-43, 14],
+      [-49, 128],
+      [-66, -17],
+      [-82, 37],
+      [27, 122],
+      [35, 10],
+      [-21, 85],
+      [48, 46]
+    ],
+    [
+      [17606, 8625],
+      [51, -42],
+      [63, 33],
+      [48, -48],
+      [49, -92],
+      [58, 2],
+      [29, -24],
+      [52, 9],
+      [-8, 78],
+      [44, 43],
+      [38, -23],
+      [64, 55],
+      [58, -5],
+      [28, -26]
+    ],
+    [
+      [17576, 3806],
+      [15, -60],
+      [-61, 7],
+      [46, 53]
+    ],
+    [
+      [18645, 4849],
+      [-21, -75],
+      [-42, -44],
+      [-64, -40],
+      [-44, 11],
+      [-62, -15],
+      [-30, 35],
+      [-60, -63],
+      [-13, -115],
+      [-54, -13],
+      [-24, -50],
+      [-57, -34],
+      [-69, -63],
+      [16, -34],
+      [65, 27],
+      [85, -51],
+      [-44, -30],
+      [4, -63],
+      [-74, -111],
+      [-25, 46],
+      [-71, 13],
+      [-97, -88],
+      [-46, 17],
+      [-92, -18],
+      [-52, -27],
+      [-15, -52],
+      [8, -67],
+      [-49, 10],
+      [-31, 40],
+      [-56, 30],
+      [-56, -16],
+      [-53, 6],
+      [-70, -62],
+      [-16, -58],
+      [-38, 33],
+      [-59, 20],
+      [-88, -23],
+      [-37, 61],
+      [-53, 7],
+      [-104, -8],
+      [36, -73],
+      [-64, 12],
+      [-55, -65],
+      [-34, 1],
+      [-35, 73],
+      [11, 58],
+      [-61, 23],
+      [-30, 33],
+      [-93, 30],
+      [-1, 65],
+      [-36, 18]
+    ],
+    [
+      [16823, 5409],
+      [6, 11]
+    ],
+    [
+      [15116, 6661],
+      [3, 136]
+    ],
+    [
+      [15119, 6797],
+      [45, -21],
+      [128, 10],
+      [64, -48],
+      [0, -80],
+      [14, -84],
+      [19, -9],
+      [84, 76],
+      [82, 1],
+      [87, 54],
+      [110, 51],
+      [25, -55],
+      [51, -8],
+      [61, 46],
+      [19, -126],
+      [22, -57],
+      [96, -17],
+      [29, 38],
+      [73, -48],
+      [49, -11],
+      [31, 22],
+      [45, -29],
+      [-2, -105],
+      [50, -2],
+      [49, -41],
+      [11, -40],
+      [68, -8]
+    ],
+    [
+      [15641, 7011],
+      [46, -70],
+      [80, -37],
+      [-70, -35],
+      [-18, -82],
+      [-52, -65],
+      [-89, 27],
+      [-50, -11],
+      [-31, 94],
+      [58, 68],
+      [18, 76],
+      [108, 35]
+    ],
+    [
+      [17302, 11581],
+      [52, -18],
+      [110, -94],
+      [-102, -189],
+      [31, -73],
+      [-136, -36],
+      [-110, -93],
+      [46, -28],
+      [-57, -121]
+    ],
+    [
+      [17136, 10929],
+      [-55, -2],
+      [-53, -49],
+      [6, -52],
+      [-53, -1],
+      [-27, 37],
+      [-42, -56],
+      [-7, -79],
+      [9, -131],
+      [33, -34],
+      [-4, -77]
+    ],
+    [
+      [16943, 10485],
+      [-3, -56],
+      [-52, -193],
+      [-14, -15],
+      [-16, -218],
+      [-42, -52],
+      [-75, 11],
+      [13, -58],
+      [-36, -41],
+      [3, -53],
+      [-54, -16],
+      [-45, -54]
+    ],
+    [
+      [16622, 9740],
+      [-34, 90],
+      [-87, 81],
+      [0, 59],
+      [-95, 91],
+      [-95, 123],
+      [17, 58],
+      [-45, 56],
+      [-76, 60],
+      [-81, -80],
+      [-19, -77],
+      [-36, -57],
+      [-66, -47],
+      [-51, 7],
+      [-52, 71],
+      [-87, 24]
+    ],
+    [
+      [15815, 10199],
+      [-131, -18],
+      [-82, 12],
+      [-61, -16],
+      [-4, 66],
+      [-58, 108],
+      [-5, 40],
+      [-49, 36],
+      [-68, -38],
+      [4, 56],
+      [-46, 39],
+      [-72, 8],
+      [36, 75],
+      [-23, 168],
+      [34, 46],
+      [-21, 55],
+      [74, 110],
+      [10, 39],
+      [-34, 47]
+    ],
+    [
+      [15350, 9018],
+      [14, -25],
+      [-12, -95],
+      [16, -94],
+      [0, -91],
+      [26, -26],
+      [-38, -73],
+      [39, -56],
+      [-1, -57],
+      [49, -40],
+      [-29, -40],
+      [-8, -70],
+      [37, -96],
+      [40, -67],
+      [-50, -92],
+      [11, -42],
+      [-59, -88],
+      [-2, -51],
+      [-94, -106],
+      [5, -129],
+      [27, -83],
+      [-4, -55],
+      [-60, -120],
+      [-45, -47],
+      [-29, -81],
+      [22, -29],
+      [-26, -95],
+      [15, -28],
+      [-6, -79],
+      [-44, -36],
+      [-4, -71],
+      [-24, -60],
+      [3, -99]
+    ],
+    [
+      [14860, 8876],
+      [82, 1],
+      [107, 38],
+      [-22, 44],
+      [38, 86],
+      [99, 83],
+      [117, 44]
+    ],
+    [
+      [15281, 9172],
+      [26, -26],
+      [-16, -70],
+      [59, -58]
+    ],
+    [
+      [15350, 9018],
+      [90, 24],
+      [31, -26],
+      [76, 58],
+      [96, 48],
+      [30, -4],
+      [17, -52],
+      [50, -1],
+      [32, -82],
+      [88, 1],
+      [-13, -88],
+      [84, 7],
+      [12, -36],
+      [-29, -74],
+      [36, -68],
+      [-3, -116],
+      [-47, -85],
+      [105, -7],
+      [34, -44],
+      [89, 0],
+      [124, -57],
+      [80, 48],
+      [43, 69],
+      [35, -14],
+      [-33, -85],
+      [43, -111],
+      [-24, -66],
+      [10, -100],
+      [-36, -282],
+      [33, -31],
+      [223, -76],
+      [32, -67],
+      [76, -4],
+      [62, -22],
+      [29, -36],
+      [72, 22]
+    ],
+    [
+      [18463, 10128],
+      [-89, -35],
+      [-70, -102],
+      [-37, 111],
+      [-45, 66],
+      [-89, -11],
+      [-75, 71],
+      [-27, 82],
+      [50, 1],
+      [-17, 71],
+      [-71, 36],
+      [-60, -57],
+      [-35, -102],
+      [-38, -82],
+      [-95, -82],
+      [11, -35],
+      [-67, -138],
+      [-150, -23],
+      [2, 46],
+      [-64, -4],
+      [9, 72],
+      [-46, 53],
+      [-97, 18],
+      [-11, -47],
+      [-63, 15],
+      [-20, -23],
+      [-106, 67],
+      [10, 63],
+      [-27, 38],
+      [-75, -20],
+      [-16, 50],
+      [-47, 23],
+      [4, 63],
+      [-22, 159],
+      [-47, 13]
+    ],
+    [
+      [17136, 10929],
+      [58, 27],
+      [64, -17],
+      [34, 34],
+      [121, -22],
+      [61, 38],
+      [17, 46],
+      [74, 64],
+      [94, 43],
+      [22, 41],
+      [-22, 35],
+      [-39, -22],
+      [-47, 62],
+      [8, 69],
+      [-35, 17],
+      [52, 115],
+      [131, 99],
+      [140, 27],
+      [143, 89],
+      [241, 1],
+      [178, -49],
+      [44, -28],
+      [-26, -100],
+      [-54, -46],
+      [46, -89],
+      [105, -82],
+      [-16, -70],
+      [-50, -49],
+      [-25, -61],
+      [15, -50],
+      [-31, -39],
+      [5, -61],
+      [30, -20],
+      [130, -13],
+      [-24, -68],
+      [4, -118],
+      [56, 49],
+      [125, -158],
+      [15, -78],
+      [40, -21],
+      [-6, -70],
+      [-45, -44],
+      [-3, -53],
+      [-89, -53],
+      [-25, -27],
+      [-72, -24],
+      [-22, -30],
+      [-86, 7],
+      [-9, -102]
+    ],
+    [
+      [16622, 9740],
+      [36, -83],
+      [37, -36],
+      [1, -57],
+      [46, -43],
+      [29, -79],
+      [25, -26],
+      [6, -79],
+      [65, 8],
+      [45, -36],
+      [66, -22],
+      [88, -50],
+      [-10, 88],
+      [25, 28],
+      [-8, 73],
+      [86, 34],
+      [58, -44],
+      [-1, -41],
+      [64, -37],
+      [63, 14],
+      [62, -21],
+      [24, -50],
+      [46, -44],
+      [29, -96],
+      [-15, -78],
+      [-42, -13],
+      [-41, -64],
+      [13, -60],
+      [-21, -32],
+      [21, -72],
+      [35, -56],
+      [-28, -78],
+      [57, 24],
+      [64, -51],
+      [35, 14],
+      [24, -50]
+    ],
+    [
+      [15281, 9172],
+      [5, 44],
+      [-24, 82],
+      [26, 28],
+      [-5, 53]
+    ],
+    [
+      [15283, 9379],
+      [130, 103],
+      [47, 62],
+      [-54, 39],
+      [-44, 63],
+      [4, 40],
+      [72, -30],
+      [4, 32],
+      [75, 37],
+      [97, 14],
+      [49, 22],
+      [48, -19],
+      [31, 105],
+      [147, 102],
+      [-35, 76],
+      [-50, 4],
+      [-5, 110],
+      [16, 60]
+    ],
+    [
+      [14713, 11131],
+      [54, -39],
+      [-26, -48],
+      [50, -32],
+      [-33, -74],
+      [-55, 32],
+      [-92, -45],
+      [-20, -46],
+      [2, -65],
+      [-76, -103],
+      [78, -73],
+      [-98, -42],
+      [63, -31],
+      [35, -71],
+      [53, -28],
+      [-35, -60],
+      [92, -133],
+      [-10, -141],
+      [-42, -30],
+      [15, -46],
+      [49, 9],
+      [-9, -78],
+      [-30, -52],
+      [1, -62],
+      [41, -20],
+      [27, -70],
+      [48, -21],
+      [13, -40],
+      [83, -44],
+      [28, -31],
+      [76, 22],
+      [25, -27],
+      [43, 11],
+      [33, -63],
+      [61, 48],
+      [19, -24],
+      [-57, -65],
+      [5, -97],
+      [71, -22],
+      [34, 37],
+      [54, -88]
+    ],
+    [
+      [18463, 10128],
+      [-5, -51],
+      [19, -88],
+      [66, -87],
+      [62, -13],
+      [29, -59],
+      [65, 4],
+      [68, -14],
+      [-41, -64],
+      [10, -147],
+      [23, -104],
+      [73, -25],
+      [5, -49],
+      [55, -9],
+      [45, -85],
+      [88, -56],
+      [10, -22],
+      [-111, -187],
+      [34, -92],
+      [-1, -63],
+      [-36, -22],
+      [-70, -77],
+      [-23, 32],
+      [-116, -39],
+      [-35, -74],
+      [-82, -27],
+      [-9, -56],
+      [-63, -25],
+      [-80, 51],
+      [-45, 7],
+      [-42, -35],
+      [-85, -1],
+      [-29, -36],
+      [-62, -30]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0006471939327180822, 0.0004361311423551835],
+    "translate": [-5.134028911590462, 41.36541748046881]
+  },
+  "objects": {
+    "france": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-67",
+            "NAME_0": "France",
+            "ID_1": 1,
+            "NAME_1": "Alsace",
+            "ID_2": 1,
+            "NAME_2": "Bas-Rhin",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Unterelsaá"
+          }
+        },
+        {
+          "arcs": [[5, 6, 7, -2]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-68",
+            "NAME_0": "France",
+            "ID_1": 1,
+            "NAME_1": "Alsace",
+            "ID_2": 2,
+            "NAME_2": "Haut-Rhin",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Oberelsaá"
+          }
+        },
+        {
+          "arcs": [[8, 9, 10, 11, 12, 13, 14]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-24",
+            "NAME_0": "France",
+            "ID_1": 2,
+            "NAME_1": "Aquitaine",
+            "ID_2": 3,
+            "NAME_2": "Dordogne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[15, -12, 16, 17, 18]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-33",
+            "NAME_0": "France",
+            "ID_1": 2,
+            "NAME_1": "Aquitaine",
+            "ID_2": 4,
+            "NAME_2": "Gironde",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Bec-D'Ambes"
+          }
+        },
+        {
+          "arcs": [[19, 20, 21, 22, -18]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-40",
+            "NAME_0": "France",
+            "ID_1": 2,
+            "NAME_1": "Aquitaine",
+            "ID_2": 5,
+            "NAME_2": "Landes",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Landas"
+          }
+        },
+        {
+          "arcs": [[-11, 23, 24, 25, -20, -17]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-47",
+            "NAME_0": "France",
+            "ID_1": 2,
+            "NAME_1": "Aquitaine",
+            "ID_2": 6,
+            "NAME_2": "Lot-et-Garonne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[26, 27, -22, 28], [29], [30]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-64",
+            "NAME_0": "France",
+            "ID_1": 2,
+            "NAME_1": "Aquitaine",
+            "ID_2": 7,
+            "NAME_2": "Pyrénées-Atlantiques",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Basses-Pyrénées|Pirinio Atlantiarrak"
+          }
+        },
+        {
+          "arcs": [[31, 32, 33, 34, 35, 36]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-03",
+            "NAME_0": "France",
+            "ID_1": 3,
+            "NAME_1": "Auvergne",
+            "ID_2": 8,
+            "NAME_2": "Allier",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Basses-Alpes"
+          }
+        },
+        {
+          "arcs": [[37, 38, 39, 40, 41, 42]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-15",
+            "NAME_0": "France",
+            "ID_1": 3,
+            "NAME_1": "Auvergne",
+            "ID_2": 9,
+            "NAME_2": "Cantal",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[43, 44, 45, -38, 46]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-43",
+            "NAME_0": "France",
+            "ID_1": 3,
+            "NAME_1": "Auvergne",
+            "ID_2": 10,
+            "NAME_2": "Haute-Loire",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[47, -47, -43, 48, 49, -35]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-63",
+            "NAME_0": "France",
+            "ID_1": 3,
+            "NAME_1": "Auvergne",
+            "ID_2": 11,
+            "NAME_2": "Puy-de-Dôme",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[50, 51, 52, 53, 54, 55]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-91",
+            "NAME_0": "France",
+            "ID_1": 4,
+            "NAME_1": "Île-de-France",
+            "ID_2": 12,
+            "NAME_2": "Essonne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[56, -56, 57, 58, 59, 60]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-92",
+            "NAME_0": "France",
+            "ID_1": 4,
+            "NAME_1": "Île-de-France",
+            "ID_2": 13,
+            "NAME_2": "Hauts-de-Seine",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[61, -61, 62]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-75",
+            "NAME_0": "France",
+            "ID_1": 4,
+            "NAME_1": "Île-de-France",
+            "ID_2": 14,
+            "NAME_2": "Paris",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[63, 64, 65, 66, -52, 67, 68, 69, 70, 71]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-77",
+            "NAME_0": "France",
+            "ID_1": 4,
+            "NAME_1": "Île-de-France",
+            "ID_2": 15,
+            "NAME_2": "Seine-et-Marne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[72, -63, -60, 73, -69]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-93",
+            "NAME_0": "France",
+            "ID_1": 4,
+            "NAME_1": "Île-de-France",
+            "ID_2": 16,
+            "NAME_2": "Seine-Saint-Denis",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-70, -74, -59, 74, 75, 76]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-95",
+            "NAME_0": "France",
+            "ID_1": 4,
+            "NAME_1": "Île-de-France",
+            "ID_2": 17,
+            "NAME_2": "Val-d'Oise",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-68, -51, -57, -62, -73]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-94",
+            "NAME_0": "France",
+            "ID_1": 4,
+            "NAME_1": "Île-de-France",
+            "ID_2": 18,
+            "NAME_2": "Val-de-Marne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-75, -58, -55, 77, 78]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-78",
+            "NAME_0": "France",
+            "ID_1": 4,
+            "NAME_1": "Île-de-France",
+            "ID_2": 19,
+            "NAME_2": "Yvelines",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[79, 80, 81, 82, 83]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-14",
+            "NAME_0": "France",
+            "ID_1": 5,
+            "NAME_1": "Basse-Normandie",
+            "ID_2": 20,
+            "NAME_2": "Calvados",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-81, 84, 85, 86, 87]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-50",
+            "NAME_0": "France",
+            "ID_1": 5,
+            "NAME_1": "Basse-Normandie",
+            "ID_2": 21,
+            "NAME_2": "Manche",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[88, 89, 90, 91, -85, -80]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-61",
+            "NAME_0": "France",
+            "ID_1": 5,
+            "NAME_1": "Basse-Normandie",
+            "ID_2": 22,
+            "NAME_2": "Orne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[92, 93]], [[94, 95, 96, 97, 98, 99, 100]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-21",
+            "NAME_0": "France",
+            "ID_1": 6,
+            "NAME_1": "Bourgogne",
+            "ID_2": 23,
+            "NAME_2": "Côte-d'Or",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-99, 101, -93, 102, -32, 103, 104, 105]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-58",
+            "NAME_0": "France",
+            "ID_1": 6,
+            "NAME_1": "Bourgogne",
+            "ID_2": 24,
+            "NAME_2": "Nièvre",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[106, 107, 108, 109, -33, -103, -94, -102, -98]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-71",
+            "NAME_0": "France",
+            "ID_1": 6,
+            "NAME_1": "Bourgogne",
+            "ID_2": 25,
+            "NAME_2": "Saône-et-Loire",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-100, -106, 110, -66, 111]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-89",
+            "NAME_0": "France",
+            "ID_1": 6,
+            "NAME_1": "Bourgogne",
+            "ID_2": 26,
+            "NAME_2": "Yonne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[112, 113, 114, 115, 116, 117]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-22",
+            "NAME_0": "France",
+            "ID_1": 7,
+            "NAME_1": "Bretagne",
+            "ID_2": 27,
+            "NAME_2": "Côtes-d'Armor",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Cotes-Du-Nord"
+          }
+        },
+        {
+          "arcs": [[[118]], [[-117, 119, 120]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-29",
+            "NAME_0": "France",
+            "ID_1": 7,
+            "NAME_1": "Bretagne",
+            "ID_2": 28,
+            "NAME_2": "Finistère",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[-113, 121]], [[-87, 122, 123, 124, 125, -115, 126]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-35",
+            "NAME_0": "France",
+            "ID_1": 7,
+            "NAME_1": "Bretagne",
+            "ID_2": 29,
+            "NAME_2": "Ille-et-Vilaine",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[127]], [[128]], [[-126, 129, 130, -120, -116]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-56",
+            "NAME_0": "France",
+            "ID_1": 7,
+            "NAME_1": "Bretagne",
+            "ID_2": 30,
+            "NAME_2": "Morbihan",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-104, -37, 131, 132, 133, 134]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-18",
+            "NAME_0": "France",
+            "ID_1": 8,
+            "NAME_1": "Centre",
+            "ID_2": 31,
+            "NAME_2": "Cher",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-54, 135, 136, 137, -90, 138, -78]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-28",
+            "NAME_0": "France",
+            "ID_1": 8,
+            "NAME_1": "Centre",
+            "ID_2": 32,
+            "NAME_2": "Eure-et-Loir",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[139, 140, 141, 142, 143]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-37",
+            "NAME_0": "France",
+            "ID_1": 8,
+            "NAME_1": "Centre",
+            "ID_2": 33,
+            "NAME_2": "Indre-et-Loire",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-133, 144, 145, 146, -140, 147]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-36",
+            "NAME_0": "France",
+            "ID_1": 8,
+            "NAME_1": "Centre",
+            "ID_2": 34,
+            "NAME_2": "Indre",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[148, -134, -148, -144, 149, -137]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-41",
+            "NAME_0": "France",
+            "ID_1": 8,
+            "NAME_1": "Centre",
+            "ID_2": 35,
+            "NAME_2": "Loir-et-Cher",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-67, -111, -105, -135, -149, -136, -53]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-45",
+            "NAME_0": "France",
+            "ID_1": 8,
+            "NAME_1": "Centre",
+            "ID_2": 36,
+            "NAME_2": "Loiret",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[150, 151, 152, 153]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-08",
+            "NAME_0": "France",
+            "ID_1": 9,
+            "NAME_1": "Champagne-Ardenne",
+            "ID_2": 37,
+            "NAME_2": "Ardennes",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[154, -101, -112, -65, 155]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-10",
+            "NAME_0": "France",
+            "ID_1": 9,
+            "NAME_1": "Champagne-Ardenne",
+            "ID_2": 38,
+            "NAME_2": "Aube",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[156, 157, 158, -95, -155, 159]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-52",
+            "NAME_0": "France",
+            "ID_1": 9,
+            "NAME_1": "Champagne-Ardenne",
+            "ID_2": 39,
+            "NAME_2": "Haute-Marne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-152, 160, -160, -156, -64, 161]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-51",
+            "NAME_0": "France",
+            "ID_1": 9,
+            "NAME_1": "Champagne-Ardenne",
+            "ID_2": 40,
+            "NAME_2": "Marne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[162, 163]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-2A",
+            "NAME_0": "France",
+            "ID_1": 10,
+            "NAME_1": "Corse",
+            "ID_2": 41,
+            "NAME_2": "Corse-du-Sud",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[164, -164]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-2B",
+            "NAME_0": "France",
+            "ID_1": 10,
+            "NAME_1": "Corse",
+            "ID_2": 42,
+            "NAME_2": "Haute-Corse",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[165, 166, 167, 168]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-25",
+            "NAME_0": "France",
+            "ID_1": 11,
+            "NAME_1": "Franche-Comté",
+            "ID_2": 43,
+            "NAME_2": "Doubs",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[169, -169, 170, -96, -159, 171]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-70",
+            "NAME_0": "France",
+            "ID_1": 11,
+            "NAME_1": "Franche-Comté",
+            "ID_2": 44,
+            "NAME_2": "Haute-Saône",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-168, 172, 173, -107, -97, -171]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-39",
+            "NAME_0": "France",
+            "ID_1": 11,
+            "NAME_1": "Franche-Comté",
+            "ID_2": 45,
+            "NAME_2": "Jura",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[174, -166, -170, 175, -7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-90",
+            "NAME_0": "France",
+            "ID_1": 11,
+            "NAME_1": "Franche-Comté",
+            "ID_2": 46,
+            "NAME_2": "Territoire de Belfort",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[176, -76, -79, -139, -89, -84, 177]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-27",
+            "NAME_0": "France",
+            "ID_1": 12,
+            "NAME_1": "Haute-Normandie",
+            "ID_2": 47,
+            "NAME_2": "Eure",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[178, -178, -83, 179, 180]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-76",
+            "NAME_0": "France",
+            "ID_1": 12,
+            "NAME_1": "Haute-Normandie",
+            "ID_2": 48,
+            "NAME_2": "Seine-Maritime",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Seine-Inférieure"
+          }
+        },
+        {
+          "arcs": [[181, 182, 183, 184, 185, 186]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-11",
+            "NAME_0": "France",
+            "ID_1": 13,
+            "NAME_1": "Languedoc-Roussillon",
+            "ID_2": 49,
+            "NAME_2": "Aude",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[187, 188, 189, 190, 191, 192, 193]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-30",
+            "NAME_0": "France",
+            "ID_1": 13,
+            "NAME_1": "Languedoc-Roussillon",
+            "ID_2": 50,
+            "NAME_2": "Gard",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[194, -182, 195, 196, -191]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-34",
+            "NAME_0": "France",
+            "ID_1": 13,
+            "NAME_1": "Languedoc-Roussillon",
+            "ID_2": 51,
+            "NAME_2": "Hérault",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[197, -193, 198, -39, -46]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-48",
+            "NAME_0": "France",
+            "ID_1": 13,
+            "NAME_1": "Languedoc-Roussillon",
+            "ID_2": 52,
+            "NAME_2": "Lozère",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[199, -184, 200], [201]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-66",
+            "NAME_0": "France",
+            "ID_1": 13,
+            "NAME_1": "Languedoc-Roussillon",
+            "ID_2": 53,
+            "NAME_2": "Pyrénées-Orientales",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-49, -42, 202, -9, 203, 204]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-19",
+            "NAME_0": "France",
+            "ID_1": 14,
+            "NAME_1": "Limousin",
+            "ID_2": 54,
+            "NAME_2": "Corrèze",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-132, -36, -50, -205, 205, -145]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-23",
+            "NAME_0": "France",
+            "ID_1": 14,
+            "NAME_1": "Limousin",
+            "ID_2": 55,
+            "NAME_2": "Creuse",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-206, -204, -15, 206, 207, -146]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-87",
+            "NAME_0": "France",
+            "ID_1": 14,
+            "NAME_1": "Limousin",
+            "ID_2": 56,
+            "NAME_2": "Haute-Vienne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[208, -4, 209, 210, 211]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-54",
+            "NAME_0": "France",
+            "ID_1": 15,
+            "NAME_1": "Lorraine",
+            "ID_2": 57,
+            "NAME_2": "Meurthe-et-Moselle",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-211, 212, -157, -161, -151, 213]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-55",
+            "NAME_0": "France",
+            "ID_1": 15,
+            "NAME_1": "Lorraine",
+            "ID_2": 58,
+            "NAME_2": "Meuse",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-5, -209, 214]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-57",
+            "NAME_0": "France",
+            "ID_1": 15,
+            "NAME_1": "Lorraine",
+            "ID_2": 59,
+            "NAME_2": "Moselle",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Lothringen"
+          }
+        },
+        {
+          "arcs": [[-3, -8, -176, -172, -158, -213, -210]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-88",
+            "NAME_0": "France",
+            "ID_1": 15,
+            "NAME_1": "Lorraine",
+            "ID_2": 60,
+            "NAME_2": "Vosges",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-185, -200, 215, 216]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-09",
+            "NAME_0": "France",
+            "ID_1": 16,
+            "NAME_1": "Midi-Pyrénées",
+            "ID_2": 61,
+            "NAME_2": "Ariège",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-199, -192, -197, 217, 218, 219, -40]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-12",
+            "NAME_0": "France",
+            "ID_1": 16,
+            "NAME_1": "Midi-Pyrénées",
+            "ID_2": 62,
+            "NAME_2": "Aveyron",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[220, 221, 222, -29, -21, -26]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-32",
+            "NAME_0": "France",
+            "ID_1": 16,
+            "NAME_1": "Midi-Pyrénées",
+            "ID_2": 63,
+            "NAME_2": "Gers",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[223, -186, -217, 224, 225, -222, 226]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-31",
+            "NAME_0": "France",
+            "ID_1": 16,
+            "NAME_1": "Midi-Pyrénées",
+            "ID_2": 64,
+            "NAME_2": "Haute-Garonne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Alto Garona"
+          }
+        },
+        {
+          "arcs": [[[-31]], [[-30]], [[-226, 227, -27, -223]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-65",
+            "NAME_0": "France",
+            "ID_1": 16,
+            "NAME_1": "Midi-Pyrénées",
+            "ID_2": 65,
+            "NAME_2": "Hautes-Pyrénées",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Altos Pirineos"
+          }
+        },
+        {
+          "arcs": [[-41, -220, 228, -24, -10, -203]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-46",
+            "NAME_0": "France",
+            "ID_1": 16,
+            "NAME_1": "Midi-Pyrénées",
+            "ID_2": 66,
+            "NAME_2": "Lot",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-219, 229, -227, -221, -25, -229]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-82",
+            "NAME_0": "France",
+            "ID_1": 16,
+            "NAME_1": "Midi-Pyrénées",
+            "ID_2": 67,
+            "NAME_2": "Tarn-et-Garonne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-196, -187, -224, -230, -218]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-81",
+            "NAME_0": "France",
+            "ID_1": 16,
+            "NAME_1": "Midi-Pyrénées",
+            "ID_2": 68,
+            "NAME_2": "Tarn",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[230]], [[231, 232, 233, 234]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-59",
+            "NAME_0": "France",
+            "ID_1": 17,
+            "NAME_1": "Nord-Pas-de-Calais",
+            "ID_2": 69,
+            "NAME_2": "Nord",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[235, 236, -234], [-231]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-62",
+            "NAME_0": "France",
+            "ID_1": 17,
+            "NAME_1": "Nord-Pas-de-Calais",
+            "ID_2": 70,
+            "NAME_2": "Pas-de-Calais",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[237, 238, 239, -130, -125]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-44",
+            "NAME_0": "France",
+            "ID_1": 18,
+            "NAME_1": "Pays de la Loire",
+            "ID_2": 71,
+            "NAME_2": "Loire-Atlantique",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Loire-Inferieure"
+          }
+        },
+        {
+          "arcs": [[240, -142, 241, 242, 243, -238, -124, 244]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-49",
+            "NAME_0": "France",
+            "ID_1": 18,
+            "NAME_1": "Pays de la Loire",
+            "ID_2": 72,
+            "NAME_2": "Maine-et-Loire",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[245, -245, -123, -86, -92]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-53",
+            "NAME_0": "France",
+            "ID_1": 18,
+            "NAME_1": "Pays de la Loire",
+            "ID_2": 73,
+            "NAME_2": "Mayenne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-138, -150, -143, -241, -246, -91]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-72",
+            "NAME_0": "France",
+            "ID_1": 18,
+            "NAME_1": "Pays de la Loire",
+            "ID_2": 74,
+            "NAME_2": "Sarthe",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[246]], [[247]], [[248, -239, -244, 249, 250]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-85",
+            "NAME_0": "France",
+            "ID_1": 18,
+            "NAME_1": "Pays de la Loire",
+            "ID_2": 75,
+            "NAME_2": "Vendée",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Vendéia"
+          }
+        },
+        {
+          "arcs": [[251, -153, -162, -72, 252, 253, -232]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-02",
+            "NAME_0": "France",
+            "ID_1": 19,
+            "NAME_1": "Picardie",
+            "ID_2": 76,
+            "NAME_2": "Aisne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[254, -253, -71, -77, -177, -179]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-60",
+            "NAME_0": "France",
+            "ID_1": 19,
+            "NAME_1": "Picardie",
+            "ID_2": 77,
+            "NAME_2": "Oise",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-236, -233, -254, -255, -181, 255]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-80",
+            "NAME_0": "France",
+            "ID_1": 19,
+            "NAME_1": "Picardie",
+            "ID_2": 78,
+            "NAME_2": "Somme",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[256]], [[257]], [[258, 259, -13, -16, 260, -251]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-17",
+            "NAME_0": "France",
+            "ID_1": 20,
+            "NAME_1": "Poitou-Charentes",
+            "ID_2": 79,
+            "NAME_2": "Charente-Maritime",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Charente-Inférieure"
+          }
+        },
+        {
+          "arcs": [[-207, -14, -260, 261, 262]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-16",
+            "NAME_0": "France",
+            "ID_1": 20,
+            "NAME_1": "Poitou-Charentes",
+            "ID_2": 80,
+            "NAME_2": "Charente",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[263, -262, -259, -250, -243]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-79",
+            "NAME_0": "France",
+            "ID_1": 20,
+            "NAME_1": "Poitou-Charentes",
+            "ID_2": 81,
+            "NAME_2": "Deux-Sèvres",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-141, -147, -208, -263, -264, -242]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-86",
+            "NAME_0": "France",
+            "ID_1": 20,
+            "NAME_1": "Poitou-Charentes",
+            "ID_2": 82,
+            "NAME_2": "Vienne",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[264, 265, 266, 267, 268, 269]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-04",
+            "NAME_0": "France",
+            "ID_1": 21,
+            "NAME_1": "Provence-Alpes-Côte d'Azur",
+            "ID_2": 83,
+            "NAME_2": "Alpes-de-Haute-Provence",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[270, -266, 271]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-06",
+            "NAME_0": "France",
+            "ID_1": 21,
+            "NAME_1": "Provence-Alpes-Côte d'Azur",
+            "ID_2": 84,
+            "NAME_2": "Alpes-Maritimes",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[272, 273, -189, 274]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-13",
+            "NAME_0": "France",
+            "ID_1": 21,
+            "NAME_1": "Provence-Alpes-Côte d'Azur",
+            "ID_2": 85,
+            "NAME_2": "Bouches-du-Rhône",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[275, -270, 276, 277, 278]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-05",
+            "NAME_0": "France",
+            "ID_1": 21,
+            "NAME_1": "Provence-Alpes-Côte d'Azur",
+            "ID_2": 86,
+            "NAME_2": "Hautes-Alpes",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[279]], [[-271, 280, -273, 281, -267]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-83",
+            "NAME_0": "France",
+            "ID_1": 21,
+            "NAME_1": "Provence-Alpes-Côte d'Azur",
+            "ID_2": 87,
+            "NAME_2": "Var",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[-268, -282, -275, -188, 282, 283]], [[284]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-84",
+            "NAME_0": "France",
+            "ID_1": 21,
+            "NAME_1": "Provence-Alpes-Côte d'Azur",
+            "ID_2": 88,
+            "NAME_2": "Vaucluse",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-174, 285, 286, 287, 288, 289, -108]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-01",
+            "NAME_0": "France",
+            "ID_1": 22,
+            "NAME_1": "Rhône-Alpes",
+            "ID_2": 89,
+            "NAME_2": "Ain",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[290, -283, -194, -198, -45, 291, 292]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-07",
+            "NAME_0": "France",
+            "ID_1": 22,
+            "NAME_1": "Rhône-Alpes",
+            "ID_2": 90,
+            "NAME_2": "Ardèche",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-277, -269, -284, -291, 293], [-285]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-26",
+            "NAME_0": "France",
+            "ID_1": 22,
+            "NAME_1": "Rhône-Alpes",
+            "ID_2": 91,
+            "NAME_2": "Drôme",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[294, -287, 295]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-74",
+            "NAME_0": "France",
+            "ID_1": 22,
+            "NAME_1": "Rhône-Alpes",
+            "ID_2": 92,
+            "NAME_2": "Haute-Savoie",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[296, -278, -294, -293, 297, 298, -289]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-38",
+            "NAME_0": "France",
+            "ID_1": 22,
+            "NAME_1": "Rhône-Alpes",
+            "ID_2": 93,
+            "NAME_2": "Isère",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[299, -298, -292, -44, -48, -34, -110]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-42",
+            "NAME_0": "France",
+            "ID_1": 22,
+            "NAME_1": "Rhône-Alpes",
+            "ID_2": 94,
+            "NAME_2": "Loire",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-290, -299, -300, -109]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-69",
+            "NAME_0": "France",
+            "ID_1": 22,
+            "NAME_1": "Rhône-Alpes",
+            "ID_2": 95,
+            "NAME_2": "Rhône",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[300, -279, -297, -288, -295]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 79,
+            "ISO": "FR-73",
+            "NAME_0": "France",
+            "ID_1": 22,
+            "NAME_1": "Rhône-Alpes",
+            "ID_2": 96,
+            "NAME_2": "Savoie",
+            "TYPE_2": "Département",
+            "ENGTYPE_2": "Department",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Sabóia|Savoia"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/germany-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/germany-topo.json
new file mode 100644
index 0000000..99a1d37
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/germany-topo.json
@@ -0,0 +1,1850 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [3118, 427],
+      [-45, 8],
+      [-31, 69],
+      [-91, 41],
+      [-46, -8],
+      [-86, 60],
+      [-18, 45],
+      [-118, 86],
+      [1, -43],
+      [72, -48],
+      [37, -95],
+      [-76, 1],
+      [-20, 47],
+      [-67, 40],
+      [-14, -43],
+      [-56, -54],
+      [-52, -4],
+      [-20, 68],
+      [-28, 12],
+      [-32, -48],
+      [-46, 20],
+      [10, 83],
+      [-48, 46],
+      [-52, 17],
+      [-111, -34],
+      [-25, -60],
+      [-43, -39],
+      [-1, -38],
+      [53, -45],
+      [111, 43],
+      [4, -83],
+      [-73, 28],
+      [-49, -40],
+      [-19, -49],
+      [-93, 7],
+      [-25, 45],
+      [-77, 23],
+      [-76, -51],
+      [-11, -31],
+      [-65, -13],
+      [-92, 2],
+      [-19, 50],
+      [-57, 0],
+      [-21, -42],
+      [-104, -36],
+      [1, 76],
+      [-44, -17],
+      [-78, 108],
+      [-9, 58],
+      [29, 44],
+      [-15, 66],
+      [27, 78],
+      [-4, 54],
+      [53, 127],
+      [-44, 85],
+      [8, 116],
+      [73, 135],
+      [23, 111],
+      [43, 37],
+      [-10, 94],
+      [28, 120],
+      [32, 36],
+      [-4, 95],
+      [37, 85],
+      [43, 29],
+      [55, 73],
+      [7, 48],
+      [39, 9],
+      [70, 73],
+      [34, 109],
+      [46, 83],
+      [27, 15]
+    ],
+    [
+      [1966, 2311],
+      [55, 49],
+      [16, 72],
+      [40, 58],
+      [5, 96],
+      [31, 68],
+      [-15, 19],
+      [86, 91],
+      [-34, 43],
+      [37, 37],
+      [12, 101],
+      [-54, 92],
+      [-21, 69],
+      [8, 45]
+    ],
+    [
+      [2132, 3151],
+      [34, 7],
+      [73, -91],
+      [52, 28],
+      [-16, 94],
+      [72, 23],
+      [6, -94],
+      [15, -29],
+      [159, -69],
+      [-62, -17],
+      [25, -98],
+      [43, 56],
+      [38, 20],
+      [4, 55],
+      [73, 6],
+      [51, 105]
+    ],
+    [
+      [2699, 3147],
+      [77, -10],
+      [58, 25],
+      [23, 71],
+      [81, -6],
+      [28, 66],
+      [-53, 20],
+      [-29, 35],
+      [-6, 51],
+      [109, 5],
+      [28, 20],
+      [66, -15],
+      [74, 17],
+      [-20, -122],
+      [42, 20],
+      [63, -9],
+      [32, 21],
+      [40, -45],
+      [-9, -31],
+      [40, -85],
+      [-8, -56],
+      [52, -9],
+      [-7, -91],
+      [71, -14],
+      [61, 46],
+      [39, -69],
+      [35, -95],
+      [-51, -76],
+      [39, -29],
+      [-18, -91],
+      [6, -65],
+      [81, -53],
+      [25, -45],
+      [-38, -20],
+      [39, -59],
+      [-10, -26],
+      [82, -43],
+      [49, -44],
+      [42, -66],
+      [-5, -156],
+      [-24, -100],
+      [47, -46],
+      [-24, -65],
+      [-84, 7],
+      [-57, 45],
+      [-19, -60],
+      [52, -65],
+      [-24, -126],
+      [-38, 6],
+      [-65, -82],
+      [-117, -4],
+      [-13, -71],
+      [-42, -37],
+      [80, -134],
+      [1, -76],
+      [33, -126],
+      [24, -25],
+      [5, -92],
+      [-23, -97],
+      [-13, -142],
+      [23, -81],
+      [-46, -32],
+      [37, -55],
+      [10, -102],
+      [-110, 9],
+      [-27, -41],
+      [-87, 35],
+      [-50, -36],
+      [-49, -62],
+      [-60, 9],
+      [-49, -41]
+    ],
+    [
+      [5050, 4296],
+      [47, -46],
+      [-7, -51],
+      [75, -24],
+      [50, -34]
+    ],
+    [
+      [5215, 4141],
+      [-20, -95],
+      [49, -19],
+      [42, -77],
+      [-10, -83],
+      [52, -27],
+      [96, -103],
+      [77, -28],
+      [24, -26],
+      [-18, -50],
+      [60, -17],
+      [-1, -44],
+      [-52, -71],
+      [-15, -78],
+      [-48, -26],
+      [36, -86],
+      [64, -21],
+      [-2, -75],
+      [37, -31],
+      [15, -90],
+      [48, -17],
+      [13, -135],
+      [66, -29],
+      [52, -85],
+      [125, 0],
+      [48, -53],
+      [23, -57],
+      [48, -32],
+      [18, -65],
+      [58, -40],
+      [-5, -30],
+      [53, -42],
+      [43, 9],
+      [90, -93],
+      [4, -98],
+      [48, -26],
+      [102, 10],
+      [69, -116],
+      [67, -12],
+      [9, -48],
+      [61, -87],
+      [-21, -54],
+      [13, -128],
+      [-20, -88],
+      [-50, -38],
+      [-17, -43],
+      [-106, 80],
+      [-62, 28],
+      [-58, -74],
+      [-22, -115],
+      [10, -38],
+      [-21, -71],
+      [-94, -92],
+      [-95, -15],
+      [-136, -52],
+      [-48, -59],
+      [-80, -18],
+      [-24, -57],
+      [-72, -61],
+      [18, -61],
+      [71, -71],
+      [18, -81],
+      [46, -21],
+      [54, -127],
+      [-75, -164],
+      [62, -26],
+      [25, 24],
+      [55, -52],
+      [20, -71],
+      [-57, -140],
+      [14, -57],
+      [-41, -35],
+      [-76, 38],
+      [-51, 70],
+      [-59, 45],
+      [38, 47],
+      [-47, 40],
+      [-28, 50],
+      [-110, -4],
+      [-23, -61],
+      [-60, -8],
+      [-72, 96],
+      [-143, -16],
+      [-61, 16],
+      [39, -121],
+      [-70, -11],
+      [-119, 22],
+      [-60, -9],
+      [-55, -44],
+      [-66, 21],
+      [-92, -11],
+      [-26, 16],
+      [-36, -62],
+      [-10, -56],
+      [-60, -9],
+      [-60, 11],
+      [-41, -56],
+      [-78, -57],
+      [-119, -9],
+      [-45, -38],
+      [-108, 5],
+      [9, 31],
+      [-91, 109],
+      [11, 49],
+      [-93, -30],
+      [-71, 60],
+      [-72, 13],
+      [-21, -38],
+      [-70, 4],
+      [-27, 55],
+      [-23, -107],
+      [23, -30],
+      [11, -70],
+      [-124, -177],
+      [-76, -45],
+      [-51, 31],
+      [51, 109],
+      [-45, 28],
+      [-51, -26],
+      [-37, 55],
+      [24, 23],
+      [-87, 74],
+      [-35, 69],
+      [-118, 19],
+      [8, 47],
+      [-41, 16],
+      [-35, -70],
+      [-91, 35],
+      [-10, 17]
+    ],
+    [
+      [2699, 3147],
+      [-29, 55],
+      [33, 31],
+      [-15, 65],
+      [47, 60],
+      [-68, 129],
+      [-26, 105],
+      [8, 181],
+      [-34, -1],
+      [22, 95],
+      [87, 18],
+      [30, -24],
+      [53, 57],
+      [116, -23],
+      [35, -71],
+      [84, 17],
+      [-10, 162],
+      [22, 31],
+      [53, -19],
+      [57, 26],
+      [-11, 40],
+      [72, 42],
+      [16, 169],
+      [104, -35],
+      [87, 62],
+      [44, 67],
+      [0, 31]
+    ],
+    [
+      [3476, 4417],
+      [49, 46],
+      [88, 5],
+      [74, -81],
+      [29, -5],
+      [74, -132],
+      [34, 10],
+      [30, -66],
+      [74, -30],
+      [25, -56],
+      [5, -91],
+      [97, -20],
+      [62, 92],
+      [-72, 65],
+      [29, 46],
+      [62, 40],
+      [86, 6],
+      [87, -65],
+      [62, 30],
+      [38, -60],
+      [73, -75],
+      [20, 207],
+      [-19, 81],
+      [64, 15],
+      [39, 46],
+      [49, -10],
+      [-10, -86],
+      [97, -96],
+      [49, 31],
+      [24, -20],
+      [64, 10],
+      [74, 36],
+      [33, -41],
+      [84, 47]
+    ],
+    [
+      [6093, 6967],
+      [-70, 37],
+      [21, 65],
+      [47, 55],
+      [-45, 21],
+      [33, 70],
+      [46, 14],
+      [11, 60],
+      [117, -8],
+      [56, 19],
+      [22, 45],
+      [50, -31],
+      [-17, -56],
+      [45, -26],
+      [73, -92],
+      [4, -51],
+      [60, -22],
+      [24, -51],
+      [-74, -114],
+      [-49, 72],
+      [-51, -9],
+      [-95, 28],
+      [-26, -45],
+      [-141, 59],
+      [-41, -40]
+    ],
+    [
+      [7125, 8246],
+      [26, -100],
+      [-57, -71],
+      [3, -122],
+      [-35, -91],
+      [-58, -54],
+      [-107, -64],
+      [11, -111],
+      [-27, -33],
+      [13, -41],
+      [63, -6],
+      [35, -47],
+      [96, -65],
+      [79, -110],
+      [117, -71],
+      [22, -53],
+      [-22, -27],
+      [13, -85],
+      [-66, -63],
+      [-12, -56],
+      [48, -129],
+      [-13, -17],
+      [108, -66],
+      [-21, -61],
+      [17, -30],
+      [-22, -71],
+      [60, -71],
+      [-41, -117],
+      [11, -56],
+      [-43, -90],
+      [-51, -47],
+      [3, -49],
+      [44, -15],
+      [5, -73],
+      [54, -66],
+      [22, -111],
+      [-29, -36]
+    ],
+    [
+      [7371, 5871],
+      [-28, -36],
+      [-183, -9],
+      [-100, -53],
+      [-43, 23],
+      [-116, 17],
+      [-20, -24],
+      [-36, -104],
+      [-54, -100],
+      [-36, 33],
+      [-36, -24],
+      [-59, 2],
+      [-81, -28],
+      [-182, 26],
+      [-82, 68],
+      [-95, -7],
+      [-81, -38],
+      [-27, 101],
+      [21, 55],
+      [-58, 82],
+      [-13, 55],
+      [-36, -9],
+      [-29, 56]
+    ],
+    [
+      [5997, 5957],
+      [97, 58],
+      [-1, 151],
+      [-34, 61],
+      [-74, 32],
+      [6, 40],
+      [-61, 2],
+      [-9, 45],
+      [-91, -3],
+      [-4, 46],
+      [-120, 48],
+      [-45, 6],
+      [-26, -35],
+      [-66, 1],
+      [-49, 67],
+      [-46, -19],
+      [-55, 36],
+      [-75, 82],
+      [-44, 81],
+      [37, 70],
+      [-15, 51],
+      [48, 130],
+      [-8, 101],
+      [26, 70],
+      [-55, 36],
+      [-77, 6],
+      [-14, 46],
+      [22, 90],
+      [52, 55],
+      [-5, 56],
+      [-30, 36],
+      [6, 60],
+      [42, 50],
+      [-19, 71],
+      [-128, 53],
+      [-87, -14],
+      [-61, 21],
+      [-67, 46],
+      [-71, 87],
+      [-46, -4],
+      [-72, 67]
+    ],
+    [
+      [4778, 7840],
+      [-77, 21],
+      [-41, 41],
+      [-88, -34],
+      [-68, 67],
+      [0, 25]
+    ],
+    [
+      [4504, 7960],
+      [104, -1],
+      [63, 24],
+      [57, -21],
+      [42, 121],
+      [37, 40],
+      [57, -1],
+      [25, -35],
+      [58, 49],
+      [57, 5],
+      [130, 63],
+      [27, 61],
+      [93, -12],
+      [52, 25],
+      [25, -36],
+      [113, -38],
+      [0, -30],
+      [51, -37],
+      [62, 14],
+      [66, -27],
+      [47, 15],
+      [14, -41],
+      [62, -2],
+      [20, -51],
+      [108, 13],
+      [55, -47],
+      [106, 104],
+      [119, 27],
+      [42, 30],
+      [51, -2],
+      [35, -41],
+      [28, 70],
+      [52, 3],
+      [44, 105],
+      [-4, 30],
+      [63, 19],
+      [12, 45],
+      [59, 44],
+      [78, 3],
+      [18, 60],
+      [46, -27],
+      [33, -72],
+      [104, -28],
+      [64, 17],
+      [52, -26],
+      [53, -2],
+      [-3, -50],
+      [-29, -60],
+      [-78, -73],
+      [25, -26],
+      [68, -12],
+      [61, 39],
+      [17, 34],
+      [80, 24]
+    ],
+    [
+      [2196, 8114],
+      [79, -63],
+      [98, -1],
+      [21, -24],
+      [72, -3],
+      [27, -40],
+      [88, 3],
+      [3, -132],
+      [-29, -36],
+      [-130, 36],
+      [-41, -6],
+      [-17, 55],
+      [-31, 14],
+      [-39, 105],
+      [-89, 42],
+      [-12, 50]
+    ],
+    [
+      [2203, 8484],
+      [35, 4],
+      [8, 58],
+      [-32, 58],
+      [-5, 18]
+    ],
+    [
+      [2209, 8622],
+      [61, -18],
+      [42, -60],
+      [5, -52],
+      [-37, -36],
+      [-77, 28]
+    ],
+    [
+      [3709, 8399],
+      [-60, -51],
+      [-59, 4],
+      [-103, 90],
+      [-16, -41],
+      [-75, -5],
+      [-38, 40],
+      [-32, -31],
+      [-53, 45],
+      [-28, 50],
+      [5, 66],
+      [-38, 5]
+    ],
+    [
+      [3212, 8571],
+      [5, 35],
+      [47, 36],
+      [54, -20],
+      [57, 81],
+      [60, -10],
+      [9, 46],
+      [59, -5],
+      [10, 55],
+      [74, -14],
+      [7, -56],
+      [39, -60],
+      [-15, -55],
+      [-42, -5],
+      [7, -75],
+      [43, -5],
+      [22, -50],
+      [61, -70]
+    ],
+    [
+      [3390, 5592],
+      [10, -102],
+      [65, -36],
+      [41, -71],
+      [99, -31],
+      [35, -31],
+      [-73, -170],
+      [45, -16],
+      [-4, -60],
+      [-130, 21],
+      [-24, -106],
+      [41, -61],
+      [-54, -85],
+      [-40, -10],
+      [-20, -71],
+      [11, -45],
+      [-20, -55],
+      [-35, -30],
+      [9, -50],
+      [52, -11],
+      [4, 56],
+      [81, 8],
+      [31, -61],
+      [-40, -25],
+      [21, -77],
+      [-19, -56]
+    ],
+    [
+      [2132, 3151],
+      [-29, 43],
+      [-26, 79],
+      [18, 41],
+      [53, 23],
+      [-51, 133],
+      [8, 41],
+      [-39, 48],
+      [14, 31],
+      [-26, 89],
+      [-65, 73],
+      [-58, 7],
+      [-167, -78],
+      [-83, -6],
+      [-16, 51],
+      [-70, 61],
+      [53, 41],
+      [9, 57],
+      [63, -20],
+      [4, 41],
+      [-35, 55],
+      [23, 31],
+      [78, 37],
+      [100, 89],
+      [-35, 45],
+      [-11, 61],
+      [-62, 34],
+      [-11, 132],
+      [56, 83],
+      [44, -29],
+      [34, 26],
+      [14, 62],
+      [-44, 82],
+      [11, 37]
+    ],
+    [
+      [1886, 4651],
+      [38, 70],
+      [-28, 41],
+      [28, 51],
+      [80, 101],
+      [78, -25],
+      [66, 71],
+      [17, 66],
+      [57, 62],
+      [1, 117],
+      [105, -7],
+      [34, 22],
+      [9, 46],
+      [44, 42],
+      [-23, 106],
+      [-26, 34],
+      [-90, -38],
+      [-27, 40],
+      [53, 83],
+      [55, 32],
+      [106, 39],
+      [41, -19],
+      [69, 18],
+      [-28, 136],
+      [98, 43],
+      [59, -33],
+      [1, -71],
+      [49, 1],
+      [94, 94],
+      [79, 109],
+      [-30, 24],
+      [90, 48]
+    ],
+    [
+      [2985, 5954],
+      [64, -23],
+      [83, 2],
+      [51, -64],
+      [-53, -46],
+      [-14, -76],
+      [21, -44],
+      [1, -70],
+      [-57, -43],
+      [15, -45],
+      [69, -42],
+      [62, 13],
+      [-25, 49],
+      [75, 71],
+      [91, 11],
+      [22, -55]
+    ],
+    [
+      [4504, 7960],
+      [-62, 82],
+      [-88, 47],
+      [-83, 163],
+      [-67, 8],
+      [-57, -38],
+      [-41, 13],
+      [-73, 78],
+      [-92, -8]
+    ],
+    [
+      [3941, 8305],
+      [20, 25],
+      [15, 100],
+      [46, -1],
+      [103, 82],
+      [4, 50],
+      [73, 18],
+      [36, 104],
+      [-27, 67],
+      [-58, 7],
+      [-68, 67],
+      [-7, 101],
+      [10, 71],
+      [95, 53],
+      [6, 49]
+    ],
+    [
+      [4189, 9098],
+      [120, 68],
+      [118, 13],
+      [57, -39],
+      [-3, -61],
+      [68, 20],
+      [98, -64],
+      [31, 65],
+      [-87, 24],
+      [1, 30],
+      [66, 36],
+      [41, -19],
+      [58, 34],
+      [40, 57],
+      [-14, 40],
+      [63, 64],
+      [162, -6],
+      [111, 40],
+      [82, -3],
+      [68, 87],
+      [124, 79],
+      [59, 110],
+      [48, 56],
+      [36, 86],
+      [32, -37],
+      [93, -19],
+      [164, -2],
+      [-77, -38],
+      [-107, 6],
+      [-103, -56],
+      [-65, 4],
+      [-11, -53],
+      [-53, -50],
+      [21, -32],
+      [76, 32],
+      [-1, 36],
+      [52, 13],
+      [146, 98],
+      [9, -53],
+      [69, -1],
+      [35, -27],
+      [42, 66],
+      [86, 49],
+      [94, -179],
+      [95, -88],
+      [50, -6],
+      [52, -96],
+      [24, 16],
+      [83, -79],
+      [183, 41],
+      [93, -71],
+      [-42, -95],
+      [64, -58],
+      [65, -80],
+      [-5, 88],
+      [106, -67],
+      [11, 76],
+      [-36, 19],
+      [-26, 66],
+      [-40, 6],
+      [-134, -44],
+      [40, 85],
+      [-52, 89],
+      [53, 25],
+      [24, -74],
+      [39, -42],
+      [108, -54],
+      [169, -167],
+      [-26, -78],
+      [-130, 0],
+      [-32, -31],
+      [-106, -19],
+      [87, -87],
+      [125, -47],
+      [52, -2],
+      [38, 35],
+      [51, -139],
+      [23, -186],
+      [34, -46],
+      [12, -85],
+      [35, -131]
+    ],
+    [
+      [6302, 10089],
+      [-44, -67],
+      [14, -52],
+      [53, -37],
+      [149, 20],
+      [37, -31],
+      [-9, -56],
+      [-82, -69],
+      [24, -78],
+      [66, -23],
+      [-4, -61],
+      [-50, -27],
+      [-32, 30],
+      [-56, -12],
+      [-80, -65],
+      [-18, -101],
+      [-159, 65],
+      [-50, 36],
+      [-21, 49],
+      [13, 54],
+      [87, -4],
+      [2, 52],
+      [-56, 24],
+      [0, 38],
+      [60, 26],
+      [-59, 48],
+      [-7, 51],
+      [65, 13],
+      [38, -15],
+      [64, 17],
+      [73, -113],
+      [38, 9],
+      [5, 93],
+      [-46, 5],
+      [-53, 41],
+      [-111, -13],
+      [32, 75],
+      [-3, 62],
+      [120, 16]
+    ],
+    [
+      [742, 8639],
+      [-35, -75],
+      [-47, 19],
+      [-8, 40],
+      [90, 16]
+    ],
+    [
+      [2689, 9000],
+      [86, 3],
+      [74, -23],
+      [59, -63],
+      [38, -89],
+      [85, -77],
+      [34, -105],
+      [105, -66],
+      [42, -9]
+    ],
+    [
+      [3709, 8399],
+      [60, -10],
+      [96, -69],
+      [76, -15]
+    ],
+    [
+      [4778, 7840],
+      [-31, -50],
+      [-41, 5],
+      [-32, -85],
+      [-130, -85],
+      [-67, 6],
+      [-67, 36],
+      [-135, 7],
+      [-47, -79],
+      [-142, 4],
+      [-9, -84],
+      [24, -71],
+      [115, -183],
+      [38, -145],
+      [-31, -55],
+      [83, -101],
+      [21, -51],
+      [-51, -9],
+      [77, -152],
+      [-45, -24],
+      [-15, -45],
+      [40, -16],
+      [-14, -45],
+      [-85, -38],
+      [21, -66],
+      [-97, -8],
+      [-139, 2],
+      [-45, -49],
+      [-57, 1],
+      [67, -174],
+      [-55, -47],
+      [-5, -62],
+      [20, -56],
+      [61, -95],
+      [26, -75]
+    ],
+    [
+      [4031, 5951],
+      [-55, -33],
+      [1, -53],
+      [-99, -40],
+      [-65, 51],
+      [-50, -40],
+      [-38, -60],
+      [-138, -95],
+      [-123, -34],
+      [-74, -55]
+    ],
+    [
+      [2985, 5954],
+      [-58, 3],
+      [22, 76],
+      [-16, 74],
+      [52, 47],
+      [-8, 85],
+      [-60, 9],
+      [-32, 75],
+      [-45, 14],
+      [-7, 66],
+      [-70, -1],
+      [14, 46],
+      [-21, 35],
+      [3, 71],
+      [-27, 65],
+      [-77, 18],
+      [-7, 61],
+      [24, 56],
+      [-87, 39],
+      [13, 66],
+      [34, 47],
+      [50, 16],
+      [34, 77],
+      [-22, 61],
+      [24, 36],
+      [-67, 23],
+      [-53, -92],
+      [-54, -43],
+      [-56, -16],
+      [-56, 13],
+      [-66, -7],
+      [2, 112],
+      [-48, 75],
+      [-80, -43],
+      [-42, 19],
+      [-39, -32],
+      [-24, -56],
+      [-106, -9],
+      [7, -50],
+      [109, -57],
+      [20, -152],
+      [-14, -36],
+      [19, -96],
+      [-50, -21],
+      [-8, -41],
+      [-97, 28],
+      [-35, -11],
+      [-72, -63],
+      [-101, -16],
+      [-54, -39],
+      [-46, 18],
+      [-28, 49],
+      [103, 40],
+      [2, 83],
+      [-66, 2],
+      [-3, 174],
+      [40, 13],
+      [-32, 68],
+      [-36, 23],
+      [-70, -14],
+      [-76, 41],
+      [-22, 74],
+      [-67, 22],
+      [-29, -56],
+      [1, -65],
+      [-40, -17],
+      [-117, -81],
+      [-77, -64],
+      [-117, 5],
+      [-73, -33]
+    ],
+    [
+      [1000, 6768],
+      [-35, 69],
+      [43, 85],
+      [-67, 158],
+      [-58, -45],
+      [-64, 31],
+      [-74, 3],
+      [-43, 26],
+      [5, 198],
+      [56, 36],
+      [99, -1],
+      [36, -17],
+      [95, 6],
+      [15, 227],
+      [11, 44],
+      [99, 118],
+      [35, 92],
+      [2, 133],
+      [-25, 25],
+      [48, 98],
+      [-11, 54],
+      [-36, 40],
+      [17, 98],
+      [-187, 9],
+      [-21, 30],
+      [22, 170],
+      [33, 56],
+      [57, 10],
+      [-36, 52],
+      [56, 78],
+      [116, 72],
+      [149, 4],
+      [74, -12],
+      [108, 36],
+      [181, 22],
+      [85, -8],
+      [13, -68],
+      [72, -65],
+      [46, -96],
+      [-16, -42],
+      [-75, -16],
+      [32, -75],
+      [32, 10],
+      [60, -69],
+      [36, -4],
+      [53, 89],
+      [0, 70],
+      [-70, 5],
+      [9, 85],
+      [51, 48],
+      [35, -10],
+      [32, -49],
+      [101, -31],
+      [7, -63]
+    ],
+    [
+      [2209, 8622],
+      [-31, 67],
+      [0, 53],
+      [59, 182],
+      [53, 73],
+      [54, 13],
+      [87, -79],
+      [84, -7],
+      [107, 10],
+      [70, 37],
+      [-3, 29]
+    ],
+    [
+      [1886, 4651],
+      [-133, 118],
+      [6, 76],
+      [-122, 69],
+      [16, 61],
+      [-46, 23],
+      [-37, -32],
+      [7, -56],
+      [-50, -73],
+      [-35, -78],
+      [-50, -3],
+      [-100, -67],
+      [-97, -22],
+      [-1, -76],
+      [-86, -36],
+      [-54, 2],
+      [-38, -33],
+      [-78, 5],
+      [-41, -53],
+      [-68, -14],
+      [-32, -38],
+      [19, -65],
+      [-42, -33],
+      [-47, 49],
+      [-44, -70],
+      [48, -104],
+      [-79, -31],
+      [-32, 40],
+      [-72, 19],
+      [-108, -24],
+      [-61, 23],
+      [14, -75]
+    ],
+    [
+      [443, 4153],
+      [-53, 79],
+      [29, 90],
+      [-37, 65],
+      [-89, 11],
+      [-40, 79],
+      [63, 44],
+      [7, 45],
+      [-52, 8],
+      [-65, 105],
+      [-75, 23],
+      [-19, 57],
+      [-36, 38],
+      [57, 36],
+      [47, 78],
+      [-4, 58],
+      [-57, 16],
+      [15, 63],
+      [-104, 29],
+      [-30, 58],
+      [45, 16],
+      [36, -29],
+      [25, 65],
+      [33, 19],
+      [88, 106],
+      [-55, 19],
+      [0, 78],
+      [128, 165],
+      [-15, 59],
+      [14, 91],
+      [-9, 44],
+      [-52, 82],
+      [-55, 49],
+      [23, 75],
+      [-70, 31],
+      [1, 60],
+      [-55, 112],
+      [76, 57],
+      [90, -9],
+      [-42, 62],
+      [42, 17],
+      [41, -48],
+      [59, 12],
+      [18, -35],
+      [72, 28],
+      [69, -23],
+      [61, 39],
+      [116, 51],
+      [42, -29],
+      [80, 90],
+      [-3, 41],
+      [-63, 48],
+      [-51, 13],
+      [2, 46],
+      [49, 17],
+      [8, 47],
+      [70, -2],
+      [53, 79],
+      [44, 17],
+      [16, 48],
+      [69, 25]
+    ],
+    [
+      [1966, 2311],
+      [-115, 29],
+      [-34, 32],
+      [-62, 21],
+      [-33, 38],
+      [-58, -31],
+      [-56, 41],
+      [-108, -24],
+      [-36, 37],
+      [-49, 9],
+      [-66, 77],
+      [1, 43],
+      [-38, 22],
+      [-66, -18]
+    ],
+    [
+      [1246, 2587],
+      [-55, 57],
+      [-7, 45],
+      [74, 58],
+      [25, 101],
+      [-40, 34],
+      [-58, 13],
+      [-27, 79],
+      [42, 32],
+      [-21, 44],
+      [-14, 95],
+      [-63, 2],
+      [-11, 35],
+      [-53, -9],
+      [-71, 61],
+      [-28, -22],
+      [-110, -23],
+      [-97, -72],
+      [-110, -29],
+      [-101, -14],
+      [-31, 22],
+      [-68, 4]
+    ],
+    [
+      [422, 3100],
+      [-1, 60],
+      [38, 45],
+      [1, 56],
+      [66, 67],
+      [13, 65],
+      [-9, 58],
+      [-92, 24],
+      [-18, 35],
+      [-116, 58],
+      [-15, 81],
+      [-52, 13],
+      [-37, 120],
+      [5, 100],
+      [24, 69],
+      [36, 22],
+      [-16, 63],
+      [88, 40],
+      [21, 72],
+      [85, 5]
+    ],
+    [
+      [1246, 2587],
+      [-61, -76],
+      [-40, 20],
+      [-72, -12],
+      [-45, 24],
+      [-39, -36],
+      [-20, 103],
+      [-83, 46],
+      [-81, -14],
+      [20, -45],
+      [-22, -37],
+      [-81, 18],
+      [-37, 72],
+      [-21, 86],
+      [-44, 30],
+      [-42, 63],
+      [29, 24],
+      [-50, 47],
+      [-4, 45],
+      [-94, 57],
+      [-46, -13],
+      [9, 111]
+    ],
+    [
+      [5997, 5957],
+      [-39, 26],
+      [-76, -33],
+      [-54, 51],
+      [-62, -49],
+      [-75, 22],
+      [-15, -40],
+      [-112, -37],
+      [-85, 1],
+      [-6, -30],
+      [-65, 7],
+      [-46, -40],
+      [-50, 1],
+      [-36, -49],
+      [15, -36],
+      [-41, -59],
+      [20, -30],
+      [-6, -75],
+      [14, -61],
+      [-35, -14],
+      [38, -96],
+      [14, -90],
+      [-11, -55],
+      [20, -40],
+      [54, -26]
+    ],
+    [
+      [5358, 5205],
+      [-20, -55],
+      [29, -40],
+      [-46, -95],
+      [-49, 36],
+      [-125, -8],
+      [-49, 60],
+      [-85, 56],
+      [-100, -15],
+      [-49, 31],
+      [-50, 55],
+      [-129, -15],
+      [-30, 61],
+      [16, 60],
+      [-44, 76],
+      [50, 71],
+      [-45, 35],
+      [-24, 81],
+      [-120, 20],
+      [-89, 5],
+      [-59, 35],
+      [-70, -16],
+      [-25, 101],
+      [-54, 86],
+      [5, 51],
+      [-35, 56],
+      [-130, 14]
+    ],
+    [
+      [7371, 5871],
+      [17, -77],
+      [81, -36],
+      [68, -11],
+      [45, -54],
+      [3, -123],
+      [55, -93],
+      [4, -74],
+      [-27, -39],
+      [-24, -180],
+      [-37, -71],
+      [-28, -106],
+      [-66, -78],
+      [3, -38],
+      [-38, -54],
+      [-113, 31],
+      [-30, 20],
+      [17, 50],
+      [-51, 51],
+      [25, 71],
+      [-52, 35],
+      [-70, 22],
+      [-33, -30],
+      [-49, 30],
+      [-73, -19],
+      [-4, -59],
+      [119, -42],
+      [-24, -73],
+      [-65, -19],
+      [-33, 16],
+      [-31, -48],
+      [-147, -63],
+      [-48, 7],
+      [-40, -38],
+      [-34, 2],
+      [-32, -84],
+      [-170, 15],
+      [-28, -27],
+      [-59, 0],
+      [-19, -105],
+      [-50, -43],
+      [-74, 31],
+      [-77, -65],
+      [-30, 18],
+      [-44, -125],
+      [-87, -2],
+      [-49, 13],
+      [-4, -81],
+      [-77, -57],
+      [-77, 65],
+      [-69, -20],
+      [-46, -43],
+      [-158, -12],
+      [-19, -69],
+      [-73, -39],
+      [3, -31],
+      [-43, -42],
+      [-30, -113],
+      [-33, -2],
+      [-8, 72],
+      [-65, 60],
+      [-1, 59],
+      [-57, -13]
+    ],
+    [
+      [5050, 4296],
+      [-4, 40],
+      [40, 46],
+      [-67, 91],
+      [35, 5],
+      [21, 56],
+      [64, 0],
+      [4, -61],
+      [80, 31],
+      [72, 91],
+      [50, -10],
+      [47, 66],
+      [-40, 10],
+      [-39, 70],
+      [11, 95],
+      [89, 18],
+      [25, 35],
+      [49, -12],
+      [40, 69],
+      [94, 12],
+      [45, 24],
+      [-28, 86],
+      [-69, 17],
+      [-28, 90],
+      [-143, 54],
+      [-40, -14]
+    ],
+    [
+      [4335, 9885],
+      [84, -18],
+      [60, -38],
+      [59, -124],
+      [-57, 13],
+      [-58, -15],
+      [-65, 18],
+      [-1, 40],
+      [-75, -1],
+      [4, 57],
+      [49, 68]
+    ],
+    [
+      [2352, 9916],
+      [-11, -80],
+      [-48, -13],
+      [-24, 60],
+      [83, 33]
+    ],
+    [
+      [2072, 10126],
+      [-15, -30],
+      [47, -106],
+      [-27, -4],
+      [-59, 84],
+      [54, 56]
+    ],
+    [
+      [2225, 10186],
+      [46, -52],
+      [-24, -51],
+      [-72, 1],
+      [-68, 29],
+      [19, 56],
+      [99, 17]
+    ],
+    [
+      [2689, 9000],
+      [-38, 20],
+      [-66, -9],
+      [-48, 45],
+      [-73, 137],
+      [43, 28],
+      [75, -14],
+      [15, 34],
+      [-49, 96],
+      [-48, -11],
+      [-52, 70],
+      [32, 122],
+      [-88, 34],
+      [-52, -29],
+      [-82, 54],
+      [80, 80],
+      [-4, 46],
+      [118, 16],
+      [36, -13],
+      [52, 29],
+      [79, 90],
+      [-19, 39],
+      [-81, -82],
+      [-72, 16],
+      [2, 40],
+      [51, 36],
+      [6, 100],
+      [-52, 72],
+      [-50, 38],
+      [-62, 143],
+      [-63, 75],
+      [-12, 60],
+      [-64, -3],
+      [-52, -35],
+      [-40, -12],
+      [-31, 37],
+      [-63, 19],
+      [16, 57],
+      [70, 160],
+      [38, -42],
+      [-72, -68],
+      [8, -81],
+      [82, -43],
+      [50, 9],
+      [56, 3],
+      [42, 37],
+      [77, -24],
+      [68, 29],
+      [32, -32],
+      [104, 10],
+      [60, -43],
+      [80, 2],
+      [82, -29],
+      [34, -64],
+      [49, 8],
+      [39, 41],
+      [34, -32],
+      [134, 44],
+      [30, -21],
+      [142, -57],
+      [47, -48],
+      [88, 34],
+      [31, -123],
+      [32, -39],
+      [-5, -149],
+      [-50, -64],
+      [-105, -52],
+      [21, -25],
+      [131, 38],
+      [94, 12],
+      [48, -38],
+      [-4, -87],
+      [-39, -45],
+      [28, -27],
+      [33, 89],
+      [97, 42],
+      [49, -13],
+      [81, -50],
+      [97, -36],
+      [66, -71],
+      [86, 1],
+      [71, 64],
+      [65, 36],
+      [103, -55],
+      [17, -196],
+      [-116, -81],
+      [-53, -63],
+      [-74, -6],
+      [-43, -70],
+      [29, -56],
+      [76, -13],
+      [16, -43]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0011991174479294346, 0.0007349236821249691],
+    "translate": [5.87205886840826, 47.26985931396496]
+  },
+  "objects": {
+    "germany": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-BW",
+            "NAME_0": "Germany",
+            "ID_1": 1,
+            "NAME_1": "Baden-Württemberg",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[4, 5, -4, 6, 7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-BY",
+            "NAME_0": "Germany",
+            "ID_1": 2,
+            "NAME_1": "Bayern",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Bavaria"
+          }
+        },
+        {
+          "arcs": [[8]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-BE",
+            "NAME_0": "Germany",
+            "ID_1": 3,
+            "NAME_1": "Berlin",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[9, 10, 11, 12, 13], [-9]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-BB",
+            "NAME_0": "Germany",
+            "ID_1": 4,
+            "NAME_1": "Brandenburg",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[14]], [[15, 16]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-HB",
+            "NAME_0": "Germany",
+            "ID_1": 5,
+            "NAME_1": "Bremen",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[17, 18]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-HH",
+            "NAME_0": "Germany",
+            "ID_1": 6,
+            "NAME_1": "Hamburg",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[19, -7, -3, 20, 21, 22]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-HE",
+            "NAME_0": "Germany",
+            "ID_1": 7,
+            "NAME_1": "Hessen",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Hesse"
+          }
+        },
+        {
+          "arcs": [[[-14, 23, 24, 25]], [[26]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-MV",
+            "NAME_0": "Germany",
+            "ID_1": 8,
+            "NAME_1": "Mecklenburg-Vorpommern",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Mecklenburg-West Pomerania"
+          }
+        },
+        {
+          "arcs": [[[27]], [[28, -18, 29, -24, -13, 30, 31, -23, 32, 33, -17, 34], [-15]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-NI",
+            "NAME_0": "Germany",
+            "ID_1": 9,
+            "NAME_1": "Niedersachsen",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Lower Saxony"
+          }
+        },
+        {
+          "arcs": [[-22, 35, 36, -33]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-NW",
+            "NAME_0": "Germany",
+            "ID_1": 10,
+            "NAME_1": "Nordrhein-Westfalen",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "North Rhine-Westphalia"
+          }
+        },
+        {
+          "arcs": [[-21, -2, 37, 38, 39, -36]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-RP",
+            "NAME_0": "Germany",
+            "ID_1": 11,
+            "NAME_1": "Rheinland-Pfalz",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Rhineland-Palatinate"
+          }
+        },
+        {
+          "arcs": [[40, -39]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-SL",
+            "NAME_0": "Germany",
+            "ID_1": 12,
+            "NAME_1": "Saarland",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[41, 42, -31, -12]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-ST",
+            "NAME_0": "Germany",
+            "ID_1": 13,
+            "NAME_1": "Sachsen-Anhalt",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Saxony-Anhalt"
+          }
+        },
+        {
+          "arcs": [[-11, 43, -5, 44, -42]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-SN",
+            "NAME_0": "Germany",
+            "ID_1": 14,
+            "NAME_1": "Sachsen",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Saxony"
+          }
+        },
+        {
+          "arcs": [[[45]], [[46]], [[47]], [[48]], [[-25, -30, -19, -29, 49]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-SH",
+            "NAME_0": "Germany",
+            "ID_1": 15,
+            "NAME_1": "Schleswig-Holstein",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-45, -8, -20, -32, -43]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 86,
+            "ISO": "DE-TH",
+            "NAME_0": "Germany",
+            "ID_1": 16,
+            "NAME_1": "Thüringen",
+            "TYPE_1": "Land",
+            "ENGTYPE_1": "State",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Thuringia"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/index.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/index.ts
new file mode 100644
index 0000000..5bd9bba
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/index.ts
@@ -0,0 +1,216 @@
+import { keyBy } from 'lodash/fp';
+import { RawMapMetadata } from '../types';
+
+// Edit here if you are adding a new map
+const mapsInfo: Record<string, Omit<RawMapMetadata, 'key'>> = {
+  belgium: {
+    name: 'Belgium',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./belgium-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  brazil: {
+    name: 'Brazil',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./brazil-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  bulgaria: {
+    name: 'Bulgaria',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./bulgaria-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  canada: {
+    name: 'Canada',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./canada-topo.json'),
+    keyField: 'properties.NAME_1',
+  },
+  china: {
+    name: 'China',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./china-topo.json'),
+    keyField: 'properties.NAME_1',
+  },
+  france: {
+    name: 'France',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./france-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  germany: {
+    name: 'Germany',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./germany-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  india: {
+    name: 'India',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./india-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  iran: {
+    name: 'Iran',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./iran-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  italy: {
+    name: 'Italy',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./italy-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  japan: {
+    name: 'Japan',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./japan-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  korea: {
+    name: 'Korea',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./korea-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  liechtenstein: {
+    name: 'Liechtenstein',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./liechtenstein-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  morocco: {
+    name: 'Morocco',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./morocco-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  myanmar: {
+    name: 'Myanmar',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./myanmar-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  netherlands: {
+    name: 'Netherlands',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./netherlands-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  portugal: {
+    name: 'Portugal',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./portugal-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  russia: {
+    name: 'Russia',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./russia-topo.json'),
+    keyField: 'properties.ISO',
+    rotate: [-9, 0, 0],
+  },
+  singapore: {
+    name: 'Singapore',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./singapore-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  spain: {
+    name: 'Spain',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./spain-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  switzerland: {
+    name: 'Switzerland',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./switzerland-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  thailand: {
+    name: 'Thailand',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./thailand-topo.json'),
+    keyField: 'properties.NAME_1',
+  },
+  timorleste: {
+    name: 'Timor-Leste',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./timorleste-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  uk: {
+    name: 'United Kingdom',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./uk-topo.json'),
+    keyField: 'properties.ISO',
+  },
+  ukraine: {
+    name: 'Ukraine',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./ukraine-topo.json'),
+    keyField: 'properties.NAME_1',
+  },
+  usa: {
+    name: 'USA',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./usa-topo.json'),
+    keyField: 'properties.STATE',
+    projection: 'Albers',
+  },
+  world: {
+    name: 'World Map',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./world-topo.json'),
+    keyField: 'id',
+    projection: 'Equirectangular',
+    rotate: [-9, 0, 0],
+  },
+  zambia: {
+    name: 'Zambia',
+    type: 'topojson',
+    // @ts-ignore
+    load: () => import('./zambia-topo.json'),
+    keyField: 'properties.name',
+  },
+};
+
+/** List of available maps */
+export const maps: RawMapMetadata[] = Object.entries(mapsInfo).map(
+  ([key, metadata]) =>
+    // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
+    ({ ...metadata, key } as RawMapMetadata),
+);
+
+/** All maps indexed by map key */
+export const mapsLookup = keyBy((m: RawMapMetadata) => m.key)(maps);
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/india-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/india-topo.json
new file mode 100644
index 0000000..08c94f3
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/india-topo.json
@@ -0,0 +1,15073 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [56424, 1124],
+      [49, -57],
+      [46, -219],
+      [-8, -80],
+      [64, -88],
+      [44, -199],
+      [-43, -41],
+      [-44, -98],
+      [-8, -128],
+      [33, -20],
+      [-27, -77],
+      [-95, 24],
+      [-13, -82],
+      [-41, -59],
+      [-48, 19],
+      [15, 105],
+      [-61, 65],
+      [-13, 105],
+      [-83, 101],
+      [7, 85],
+      [-101, 115],
+      [-64, 3],
+      [-32, 262],
+      [44, 32],
+      [-2, 84],
+      [25, 31],
+      [104, -6],
+      [47, 56],
+      [116, 8],
+      [2, 32],
+      [87, 27]
+    ],
+    [
+      [56127, 1594],
+      [26, -107],
+      [70, -53],
+      [-70, -149],
+      [-100, -59],
+      [-68, -97],
+      [-43, 60],
+      [-5, 86],
+      [21, 36],
+      [-11, 93],
+      [68, 45],
+      [100, 30],
+      [12, 115]
+    ],
+    [
+      [55395, 2937],
+      [65, -41],
+      [-15, -75],
+      [125, -85],
+      [32, -97],
+      [-169, 14],
+      [-38, -44],
+      [-78, 44],
+      [7, 55],
+      [-65, 40],
+      [-17, 44],
+      [57, 116],
+      [40, -10],
+      [56, 39]
+    ],
+    [
+      [55763, 2945],
+      [36, -8],
+      [42, -76],
+      [-20, -145],
+      [-146, 130],
+      [88, 99]
+    ],
+    [
+      [55717, 3415],
+      [39, -15],
+      [1, -66],
+      [-89, -120],
+      [97, -130],
+      [10, -50],
+      [-63, -34],
+      [-19, 74],
+      [-71, -15],
+      [-54, 109],
+      [-8, 118],
+      [78, 54],
+      [9, 55],
+      [70, 20]
+    ],
+    [
+      [54837, 3703],
+      [38, -22],
+      [-38, -160],
+      [61, -79],
+      [88, -42],
+      [3, -74],
+      [-159, 65],
+      [-83, 122],
+      [22, 154],
+      [68, 36]
+    ],
+    [
+      [55914, 4206],
+      [15, -102],
+      [26, -11],
+      [17, -132],
+      [-35, -1],
+      [-4, 111],
+      [-32, 68],
+      [13, 67]
+    ],
+    [
+      [54093, 5757],
+      [69, -72],
+      [28, -115],
+      [-46, -91],
+      [-175, 1],
+      [-26, 50],
+      [2, 156],
+      [98, 3],
+      [50, 68]
+    ],
+    [
+      [53495, 9579],
+      [93, -79],
+      [7, -119],
+      [58, -58],
+      [-11, -102],
+      [32, -138],
+      [-98, -104],
+      [-18, -103],
+      [52, -40],
+      [-81, -133],
+      [-71, -17],
+      [-142, 86],
+      [-72, -39],
+      [-39, 29],
+      [56, 91],
+      [24, 72],
+      [-27, 79],
+      [-60, 41],
+      [3, 123],
+      [-14, 143],
+      [82, 17],
+      [39, 76],
+      [58, 42],
+      [3, 53],
+      [126, 80]
+    ],
+    [
+      [53771, 10995],
+      [59, -45],
+      [37, -132],
+      [-46, -89],
+      [58, -58],
+      [-115, -54],
+      [-86, 1],
+      [-40, 46],
+      [15, 80],
+      [76, 7],
+      [3, 84],
+      [-28, 41],
+      [11, 62],
+      [56, 57]
+    ],
+    [
+      [52842, 11185],
+      [112, -17],
+      [10, -115],
+      [-53, -21],
+      [-74, 7],
+      [-19, 43],
+      [24, 103]
+    ],
+    [
+      [53547, 11211],
+      [59, -26],
+      [-29, -70],
+      [-35, -1],
+      [5, 97]
+    ],
+    [
+      [54605, 11766],
+      [93, 3],
+      [-29, -75],
+      [-64, 72]
+    ],
+    [
+      [54492, 12206],
+      [75, -11],
+      [11, -72],
+      [64, -117],
+      [36, -118],
+      [-69, 11],
+      [-62, 94],
+      [-46, 17],
+      [-28, 71],
+      [-59, 12],
+      [-7, 48],
+      [85, 65]
+    ],
+    [
+      [54540, 12380],
+      [27, -9],
+      [-11, -136],
+      [-81, 60],
+      [-4, 81],
+      [69, 4]
+    ],
+    [
+      [54620, 12491],
+      [17, -137],
+      [-161, 58],
+      [3, 65],
+      [65, -23],
+      [76, 37]
+    ],
+    [
+      [54710, 12617],
+      [37, -38],
+      [19, -108],
+      [-4, -96],
+      [-49, -45],
+      [-71, 109],
+      [68, 178]
+    ],
+    [
+      [53901, 12673],
+      [33, -156],
+      [46, 32],
+      [42, -64],
+      [-45, -152],
+      [89, -134],
+      [-31, -23],
+      [-10, -75],
+      [-69, -33],
+      [-21, -54],
+      [34, -119],
+      [33, 76],
+      [67, 15],
+      [23, -30],
+      [-19, -77],
+      [18, -48],
+      [-71, -356],
+      [-116, -59],
+      [31, -60],
+      [88, -1],
+      [-7, -130],
+      [-50, -119],
+      [-5, -93],
+      [-141, -26],
+      [-39, 40],
+      [10, 65],
+      [-95, 99],
+      [2, 92],
+      [-29, 71],
+      [9, 57],
+      [-26, 63],
+      [-77, 10],
+      [8, 118],
+      [-23, 128],
+      [-46, -4],
+      [-24, 51],
+      [28, 108],
+      [86, 112],
+      [28, -37],
+      [17, -90],
+      [55, -40],
+      [-11, 121],
+      [15, 192],
+      [28, 128],
+      [-4, 95],
+      [48, 176],
+      [96, 130],
+      [25, 1]
+    ],
+    [
+      [53967, 12689],
+      [70, -31],
+      [3, -109],
+      [-89, 16],
+      [16, 124]
+    ],
+    [
+      [54068, 12845],
+      [72, 6],
+      [45, -29],
+      [88, 2],
+      [39, -98],
+      [-62, -27],
+      [28, -47],
+      [-162, -273],
+      [-12, -60],
+      [-62, -45],
+      [-56, 83],
+      [57, 179],
+      [7, 118],
+      [-57, 42],
+      [86, 91],
+      [-11, 58]
+    ],
+    [
+      [56406, 12870],
+      [72, -123],
+      [18, -72],
+      [-119, 19],
+      [-26, 94],
+      [55, 82]
+    ],
+    [
+      [54337, 14245],
+      [22, -75],
+      [43, 0],
+      [56, -175],
+      [-43, -60],
+      [56, -62],
+      [37, -85],
+      [-25, -86],
+      [-20, -168],
+      [42, -153],
+      [-56, -179],
+      [-58, -66],
+      [-100, -42],
+      [-107, 25],
+      [19, -71],
+      [79, -103],
+      [28, -70],
+      [-119, -48],
+      [-51, 29],
+      [-82, 7],
+      [-53, -41],
+      [-63, 2],
+      [-41, 83],
+      [-6, 194],
+      [23, 163],
+      [-31, 54],
+      [32, 97],
+      [-4, 84],
+      [18, 100],
+      [64, 81],
+      [-6, 123],
+      [-45, 147],
+      [7, 92],
+      [30, 4],
+      [119, 140],
+      [71, 12],
+      [8, -22],
+      [13, -1],
+      [13, 14],
+      [7, -13],
+      [-6, -17],
+      [3, -7],
+      [7, -1],
+      [66, 16],
+      [53, 78]
+    ],
+    [
+      [53890, 14421],
+      [52, -29],
+      [5, -210],
+      [-15, -59],
+      [-55, -66],
+      [-39, -93],
+      [-50, 154],
+      [34, 46],
+      [12, 164],
+      [56, 93]
+    ],
+    [
+      [54624, 15765],
+      [31, -157],
+      [-23, -110],
+      [7, -91],
+      [32, -29],
+      [26, -104],
+      [36, -45],
+      [-16, -43],
+      [-70, 1],
+      [-27, 51],
+      [-53, 19],
+      [-58, -67],
+      [80, -40],
+      [72, -111],
+      [22, -61],
+      [-53, -126],
+      [11, -91],
+      [-15, -162],
+      [-53, -88],
+      [-77, -3],
+      [-23, -34],
+      [-98, 91],
+      [-28, -74],
+      [9, -88],
+      [-55, -2],
+      [-12, -86],
+      [-44, -27],
+      [33, -120],
+      [-32, -8],
+      [-36, -4],
+      [6, 19],
+      [-1, 13],
+      [-92, 22],
+      [-24, 258],
+      [13, 179],
+      [51, 27],
+      [-22, 120],
+      [48, 140],
+      [42, 61],
+      [-62, 86],
+      [30, 207],
+      [36, 47],
+      [-16, 50],
+      [59, 16],
+      [10, 137],
+      [59, 52],
+      [57, 10],
+      [-24, 81],
+      [102, 18],
+      [62, 50],
+      [49, -38],
+      [31, 54]
+    ],
+    [
+      [54594, 16003],
+      [-2, -74],
+      [-63, -3],
+      [-10, 52],
+      [75, 25]
+    ],
+    [
+      [20498, 21193],
+      [11, 52],
+      [3, 33],
+      [-2, 13],
+      [-13, 10],
+      [-8, 12],
+      [0, 14],
+      [10, 54],
+      [-18, 8],
+      [-24, 58],
+      [19, 54],
+      [8, 44],
+      [-36, 98],
+      [-7, 99],
+      [11, 47],
+      [14, 19],
+      [0, 19],
+      [-3, 26],
+      [4, 15],
+      [-17, 85],
+      [30, 42],
+      [26, 7],
+      [14, 0],
+      [11, -2],
+      [89, 64],
+      [34, -27],
+      [17, 22],
+      [6, 21],
+      [0, 17],
+      [-9, 20],
+      [-5, 17],
+      [-109, 58],
+      [-35, 40],
+      [-20, 0],
+      [-63, 17],
+      [-44, -5],
+      [-51, -2],
+      [-23, -22],
+      [-12, -5],
+      [-23, -1],
+      [-85, 40],
+      [-45, -7],
+      [-21, 7],
+      [-23, 20],
+      [-56, 13],
+      [-49, 21],
+      [-15, 17],
+      [-7, 17],
+      [-12, 12],
+      [-11, 16],
+      [-28, 88],
+      [160, 30],
+      [12, -1],
+      [30, 3],
+      [10, 8],
+      [8, -5],
+      [14, 0],
+      [18, 2],
+      [6, 42],
+      [9, 9],
+      [13, 11],
+      [5, 2],
+      [43, 10],
+      [25, -5],
+      [7, 9],
+      [12, 110],
+      [35, 37],
+      [14, 2],
+      [29, -3],
+      [9, 6],
+      [8, 2],
+      [0, 6],
+      [-12, 12],
+      [4, 8],
+      [8, -1],
+      [1, 5],
+      [-2, 17],
+      [-21, 6],
+      [38, 84],
+      [-4, 7],
+      [-18, 5],
+      [-14, -9],
+      [-14, -14],
+      [-10, -7],
+      [-12, 1],
+      [-12, 3],
+      [-36, 58],
+      [45, 9],
+      [20, 17],
+      [41, 10],
+      [6, 43],
+      [0, 13],
+      [2, 14],
+      [-4, 8],
+      [-13, 3],
+      [-10, -6],
+      [-17, 7],
+      [-7, 0],
+      [-18, -14],
+      [-9, 3],
+      [-7, 6],
+      [-10, 0],
+      [-4, 7],
+      [30, 112],
+      [66, 31],
+      [9, 6],
+      [1, 14],
+      [0, 26],
+      [-13, 10],
+      [-7, 9],
+      [-13, 44],
+      [8, 47],
+      [-15, 151],
+      [31, 18],
+      [-9, 28],
+      [5, 13],
+      [-3, 12],
+      [-1, 29],
+      [33, 36],
+      [2, 16],
+      [-3, 35],
+      [10, 20],
+      [36, 20],
+      [-81, 223],
+      [-190, 79],
+      [-2, 25],
+      [-19, 6],
+      [-15, 23],
+      [45, 135],
+      [163, 130],
+      [-45, 28],
+      [8, 20],
+      [6, 2],
+      [20, 40],
+      [15, 69],
+      [-7, 9],
+      [-7, 3],
+      [0, 30],
+      [4, 17],
+      [61, -2],
+      [-9, -3],
+      [-7, -12],
+      [5, -9],
+      [18, -11],
+      [36, -1],
+      [24, 12],
+      [24, 7],
+      [1, 56],
+      [27, 29],
+      [-15, 16],
+      [-35, 16],
+      [-2, 34],
+      [29, 21],
+      [23, 10],
+      [33, -14],
+      [20, 1],
+      [33, -13],
+      [1, 57],
+      [38, -14],
+      [12, -13],
+      [19, 1],
+      [13, 3],
+      [2, 20],
+      [-1, 39],
+      [82, 26],
+      [37, -11],
+      [42, -8],
+      [1, 29],
+      [7, 30],
+      [-48, 27],
+      [-10, 11],
+      [-11, 15],
+      [-24, -6],
+      [-27, 10],
+      [-26, -2],
+      [-65, 24],
+      [1, 38],
+      [-15, 22],
+      [-82, -21],
+      [-46, 55],
+      [-29, -37],
+      [-10, -19],
+      [-17, -19],
+      [-11, 6],
+      [-15, 53],
+      [-35, -3],
+      [-11, 7],
+      [-9, 15],
+      [-8, 6],
+      [-47, 10],
+      [24, 118],
+      [-11, 58],
+      [12, 70],
+      [-2, 8],
+      [16, 18],
+      [36, 5],
+      [10, 4],
+      [5, 9],
+      [8, -7],
+      [11, 7],
+      [10, 21],
+      [100, 22],
+      [27, 21],
+      [6, 15],
+      [16, 14],
+      [9, 39],
+      [-25, -6],
+      [-39, 21],
+      [-5, 10],
+      [-15, 4],
+      [-10, 7],
+      [-30, 1],
+      [-11, 6],
+      [6, 24],
+      [8, 20],
+      [16, 14],
+      [17, 9],
+      [0, 35],
+      [39, -1],
+      [13, -19],
+      [11, 29],
+      [10, 19],
+      [10, 7],
+      [-3, 17],
+      [8, 1],
+      [3, 38],
+      [12, 16],
+      [11, -4],
+      [8, 11],
+      [25, -14],
+      [-1, 22],
+      [-20, 44],
+      [4, 23],
+      [33, -11],
+      [10, 4],
+      [26, -6],
+      [6, 25],
+      [1, 38],
+      [-6, 19],
+      [7, 14],
+      [19, 10],
+      [34, -5],
+      [7, 16],
+      [-7, 22],
+      [20, 15],
+      [-102, 112],
+      [-118, 39],
+      [-16, 44],
+      [3, 23],
+      [21, -3],
+      [8, 20],
+      [15, 12],
+      [22, 2],
+      [28, 7],
+      [16, 10],
+      [7, 35],
+      [-8, 50],
+      [-7, 15],
+      [9, 56],
+      [-40, 24],
+      [-16, 39],
+      [-5, 23],
+      [-13, 2],
+      [0, 24],
+      [23, -1],
+      [23, 39],
+      [-9, 14],
+      [-18, 41],
+      [19, 36],
+      [48, 51],
+      [-43, 11],
+      [-20, 9],
+      [0, 6],
+      [-9, 2],
+      [-21, -17],
+      [-24, 19],
+      [11, 16],
+      [33, 23],
+      [-37, 54],
+      [-24, 6],
+      [-33, 12],
+      [-13, 59],
+      [44, 47],
+      [17, 6],
+      [13, 70],
+      [-24, 6],
+      [-20, 2],
+      [2, 5],
+      [-22, 9],
+      [6, 30],
+      [69, -12],
+      [50, 18],
+      [-27, 55],
+      [13, 39],
+      [32, -6],
+      [5, -17],
+      [17, 1],
+      [6, 26],
+      [-2, 14],
+      [-19, 6],
+      [-17, 21],
+      [24, 103],
+      [30, 0],
+      [5, -12],
+      [6, 1],
+      [1, 13],
+      [28, 5],
+      [25, 7],
+      [18, -3],
+      [8, -6],
+      [-6, -20],
+      [-9, -11],
+      [27, -21],
+      [120, 63],
+      [34, -7],
+      [43, 87],
+      [-39, 124],
+      [0, 6],
+      [1, 6],
+      [2, 17],
+      [5, 1],
+      [0, 15],
+      [-11, 4],
+      [10, 28],
+      [26, 18],
+      [11, 14],
+      [1, 18],
+      [17, 22],
+      [14, 2],
+      [10, -15],
+      [1, -26],
+      [38, -15],
+      [0, 24],
+      [35, 50],
+      [1, 31],
+      [45, 91],
+      [31, 90],
+      [48, 15],
+      [106, 36],
+      [77, -17],
+      [4, 46],
+      [-99, 59],
+      [-1, 37],
+      [-24, 3],
+      [-12, 26],
+      [-2, 28],
+      [-27, 4],
+      [-28, -9],
+      [-35, 12],
+      [8, 44],
+      [10, 2],
+      [11, 48],
+      [-51, -4],
+      [-7, -11],
+      [-32, 9],
+      [5, 23],
+      [-5, 1],
+      [9, 52],
+      [-66, 4],
+      [-43, -6],
+      [-22, 109],
+      [8, 52],
+      [-3, 19],
+      [4, 6],
+      [21, -13],
+      [15, -5],
+      [12, 2],
+      [17, -10],
+      [8, -1],
+      [6, 2],
+      [-8, 46],
+      [17, 31],
+      [-3, 33],
+      [6, 7],
+      [6, 4],
+      [21, 0],
+      [16, -16],
+      [7, -11],
+      [7, -16],
+      [11, 4],
+      [18, 0],
+      [5, 22],
+      [2, 42],
+      [-14, 11],
+      [-11, 32],
+      [34, 52],
+      [-1, 9],
+      [3, 7],
+      [0, 12],
+      [6, 22],
+      [12, 9],
+      [-30, 17],
+      [4, 20],
+      [14, 18],
+      [-1, 12],
+      [13, 20],
+      [7, 18],
+      [2, 18],
+      [12, 28],
+      [-1, 21],
+      [38, 11],
+      [16, -7],
+      [18, -2],
+      [12, 26],
+      [-11, 22],
+      [-56, 7],
+      [-29, 10],
+      [-2, 8],
+      [3, 18],
+      [-3, 15],
+      [22, 9],
+      [9, 7],
+      [28, 8],
+      [12, 20],
+      [42, -7],
+      [30, 32],
+      [24, 9],
+      [8, 16],
+      [18, -3],
+      [30, -22],
+      [9, -10],
+      [23, -15],
+      [19, -28],
+      [22, -7],
+      [35, -11],
+      [15, -11],
+      [19, -41],
+      [41, -18],
+      [5, -54],
+      [7, -13],
+      [14, -5],
+      [39, 16],
+      [15, 19],
+      [29, -12],
+      [9, -10],
+      [60, 2],
+      [28, -16],
+      [23, -21],
+      [44, 14],
+      [30, 12],
+      [-1, 87],
+      [31, 122],
+      [-22, 16],
+      [-11, 15],
+      [-6, 18],
+      [18, 98],
+      [81, 89],
+      [47, -11],
+      [14, 2],
+      [21, 23],
+      [11, 18],
+      [14, 14],
+      [20, -2],
+      [20, -10],
+      [13, 0],
+      [26, 18],
+      [6, 22],
+      [1, 31],
+      [-5, 16],
+      [-14, 17],
+      [-9, 24],
+      [-10, 77],
+      [3, 49],
+      [33, 31],
+      [2, 15],
+      [-5, 19],
+      [2, 41],
+      [-26, 44],
+      [-14, 48],
+      [-11, 24],
+      [-33, 13],
+      [-6, 7],
+      [8, 16],
+      [27, 45],
+      [66, 2],
+      [65, 53],
+      [-2, 25],
+      [2, 24],
+      [17, 7],
+      [17, 38],
+      [15, 63],
+      [-2, 31],
+      [-14, 26],
+      [-19, 10],
+      [-28, 8],
+      [0, 59],
+      [-79, 15],
+      [-20, 9],
+      [36, 146],
+      [20, 6],
+      [20, 2],
+      [14, -14],
+      [-1, -14],
+      [-17, -11],
+      [-8, -10],
+      [5, -10],
+      [24, -17],
+      [23, -4],
+      [42, 3],
+      [40, -9],
+      [2, -12],
+      [-2, -24],
+      [4, -18],
+      [0, -7],
+      [7, -15],
+      [19, -23],
+      [25, -15],
+      [43, -15],
+      [79, -16],
+      [26, 0],
+      [17, -21],
+      [12, -20],
+      [10, -13],
+      [21, -1],
+      [13, 20],
+      [6, 30],
+      [15, 13],
+      [16, 4],
+      [204, -30],
+      [64, -16],
+      [84, -27],
+      [21, 0],
+      [13, -10],
+      [32, -43],
+      [18, 5],
+      [16, 9],
+      [14, 15],
+      [102, -2],
+      [27, -23],
+      [14, -20],
+      [9, -5],
+      [21, 6],
+      [18, 0],
+      [29, 4],
+      [13, -7],
+      [3, -2],
+      [17, -47],
+      [8, -16],
+      [1, -26],
+      [9, -32],
+      [4, -21],
+      [0, -40],
+      [-9, -25],
+      [-1, -29],
+      [42, 1],
+      [29, -3],
+      [54, 29],
+      [85, -10],
+      [16, -11],
+      [16, -22],
+      [-2, -23],
+      [-11, -51],
+      [39, -75],
+      [-6, -11],
+      [89, -93],
+      [45, 12],
+      [28, 0],
+      [19, -15],
+      [7, -17],
+      [23, -6],
+      [64, -2],
+      [4, -35],
+      [78, -27],
+      [36, -36],
+      [27, -41],
+      [19, -16],
+      [25, -5],
+      [59, 120],
+      [17, 15],
+      [18, 9],
+      [11, 14],
+      [29, 117],
+      [-3, 22],
+      [-11, 15],
+      [-13, 14],
+      [-1, 23],
+      [15, 7],
+      [25, -3],
+      [83, -34],
+      [26, -15],
+      [10, -19],
+      [10, -38],
+      [59, 19],
+      [160, -93],
+      [36, 4],
+      [25, -4],
+      [37, -33],
+      [15, -23],
+      [12, -27],
+      [94, 47],
+      [6, 10],
+      [0, 34],
+      [-3, 9],
+      [1, 3],
+      [24, 9],
+      [37, 6],
+      [5, -34],
+      [6, -18],
+      [10, -14],
+      [29, -21],
+      [17, -10],
+      [21, -8],
+      [19, -3],
+      [14, 4],
+      [7, 10],
+      [45, 132],
+      [40, 23],
+      [84, 4],
+      [39, 10],
+      [21, 1],
+      [17, 4],
+      [37, 31],
+      [23, 15],
+      [31, -2],
+      [51, -10],
+      [17, -10],
+      [2, -9],
+      [16, -22],
+      [51, -26],
+      [25, -74],
+      [62, -46],
+      [17, -8],
+      [14, -20],
+      [17, -10],
+      [53, -9],
+      [20, -10],
+      [14, -16],
+      [13, -18],
+      [21, -20],
+      [9, -5],
+      [7, -5],
+      [10, -13],
+      [3, -19],
+      [-1, -23],
+      [60, -92],
+      [-1, -22],
+      [-4, -22],
+      [-8, -17],
+      [-1, -32],
+      [-5, -23],
+      [-16, -38],
+      [0, -23],
+      [14, -42],
+      [-4, -20],
+      [-28, -20],
+      [-8, -11],
+      [-30, -58],
+      [-25, -76],
+      [5, -53],
+      [44, -64],
+      [1, -12],
+      [-5, -14],
+      [-32, -8],
+      [-9, -9],
+      [-36, -35],
+      [-76, -45],
+      [-29, -43],
+      [7, -102],
+      [65, -33],
+      [56, 4],
+      [21, -11],
+      [16, -30],
+      [3, -18],
+      [-4, -60],
+      [-3, -49],
+      [21, -85],
+      [-4, -182],
+      [-12, -33],
+      [-18, -17],
+      [-69, -15],
+      [49, -78],
+      [35, -30],
+      [176, -40],
+      [75, -106],
+      [79, -43],
+      [5, -4],
+      [5, -7],
+      [30, -30],
+      [14, -17],
+      [9, -3],
+      [11, -1],
+      [12, 13],
+      [34, 13],
+      [12, -2],
+      [14, 17],
+      [21, 6],
+      [14, -13],
+      [6, -24],
+      [18, -10],
+      [30, 0],
+      [11, 30],
+      [17, 20],
+      [13, 7],
+      [15, 2],
+      [24, -12],
+      [47, 12],
+      [45, 39],
+      [8, -11],
+      [15, -6],
+      [41, -58],
+      [7, -15],
+      [18, -62],
+      [16, -37],
+      [9, -34],
+      [27, -58],
+      [11, -14],
+      [5, -5],
+      [7, -4],
+      [15, 4],
+      [9, 6],
+      [31, 32],
+      [32, -26],
+      [151, 76],
+      [84, 1],
+      [21, -21],
+      [28, -5],
+      [7, -6],
+      [3, -13],
+      [6, -9],
+      [9, -6],
+      [14, -17],
+      [1, -2],
+      [1, -7],
+      [2, -2],
+      [4, -6],
+      [152, -95],
+      [69, -61],
+      [40, -107],
+      [26, -15],
+      [8, -8],
+      [8, -3],
+      [24, -18],
+      [5, -20],
+      [20, -10],
+      [7, -14],
+      [-6, -13],
+      [-3, -22],
+      [48, -31],
+      [10, 8],
+      [2, 1],
+      [23, -14],
+      [-29, -38],
+      [0, -4],
+      [1, -6],
+      [5, -8],
+      [9, -8],
+      [4, -9],
+      [-4, -25],
+      [136, -273],
+      [-61, -32],
+      [-51, -24],
+      [-3, -31],
+      [1, -26],
+      [4, -52],
+      [23, -16],
+      [20, -2],
+      [19, -2],
+      [78, 7],
+      [45, 60],
+      [12, 96],
+      [34, -13],
+      [43, -5],
+      [6, -10],
+      [13, -33],
+      [-1, -9],
+      [-3, -6],
+      [-10, -5],
+      [-27, 4],
+      [29, -156],
+      [85, 4],
+      [25, 9],
+      [44, 25],
+      [8, 7],
+      [2, 6],
+      [16, 5],
+      [13, 16],
+      [9, 7],
+      [43, 3],
+      [1, -23],
+      [2, -15],
+      [-5, -19],
+      [-11, -13],
+      [-40, -34],
+      [-4, -15],
+      [5, -30],
+      [-4, -29],
+      [39, -111],
+      [41, -278],
+      [16, -9],
+      [6, -12],
+      [16, -114],
+      [3, -36],
+      [3, -25],
+      [18, -50],
+      [43, -62],
+      [28, -14],
+      [24, -2],
+      [39, 8],
+      [13, 20],
+      [17, 19],
+      [4, 18],
+      [19, 14],
+      [136, 82],
+      [37, -8],
+      [34, -5],
+      [47, -32],
+      [16, -9],
+      [16, -7],
+      [58, -33],
+      [97, -5],
+      [37, 6],
+      [44, -3],
+      [21, 1],
+      [28, -3],
+      [22, -5],
+      [15, -6],
+      [22, -5],
+      [22, 11],
+      [19, -6],
+      [14, -1],
+      [134, 42],
+      [24, -47],
+      [160, 31],
+      [23, 22],
+      [23, 4],
+      [55, -28],
+      [25, 0],
+      [10, 15],
+      [18, 6],
+      [16, 14],
+      [12, 13],
+      [13, 7],
+      [45, 87],
+      [55, 18],
+      [22, -21],
+      [11, -33],
+      [51, 30],
+      [70, 44]
+    ],
+    [
+      [29840, 25753],
+      [80, -114],
+      [-91, -59],
+      [-52, 2],
+      [-120, -121],
+      [-114, -10],
+      [-110, -102],
+      [-4, -71],
+      [-150, -226],
+      [46, -40],
+      [-49, -77],
+      [-18, -210],
+      [-114, -155],
+      [-57, -46],
+      [-67, -15],
+      [-138, 79],
+      [-73, -120],
+      [-48, -40],
+      [-170, 17],
+      [-40, -51],
+      [-20, -168],
+      [-38, -3],
+      [-224, -62],
+      [-38, -42],
+      [-91, -16],
+      [-119, 59],
+      [-56, -9],
+      [17, -128],
+      [-94, 1],
+      [-34, -81],
+      [20, -36],
+      [-11, -104],
+      [-79, -30],
+      [-306, 72],
+      [-119, 95],
+      [-153, 65],
+      [-24, -33],
+      [-116, -52],
+      [-26, -104],
+      [-85, -91],
+      [-56, 18],
+      [-56, 122],
+      [-62, -48],
+      [48, -99],
+      [-62, -100],
+      [180, -59],
+      [76, -55],
+      [31, 62],
+      [65, -27],
+      [24, 32],
+      [116, -55],
+      [5, -122],
+      [-48, -11],
+      [-22, -102],
+      [68, -42],
+      [26, -50],
+      [-76, -52],
+      [-161, 31],
+      [-73, 32],
+      [-9, 59],
+      [-74, 62],
+      [-101, -72],
+      [-31, 101],
+      [-87, 37],
+      [-39, 197],
+      [-86, 126],
+      [-47, -18],
+      [-51, 39],
+      [-49, -3],
+      [-29, 62],
+      [-106, -138],
+      [-62, -9],
+      [-48, -42],
+      [-84, 5],
+      [-19, -67],
+      [-61, -68],
+      [-39, -101],
+      [91, -25],
+      [19, -61],
+      [61, -29],
+      [-47, -158],
+      [-124, -122],
+      [-41, -76],
+      [-67, -63],
+      [-42, -4],
+      [-72, 44],
+      [-64, 112],
+      [-113, -18],
+      [-78, 90],
+      [-53, -21],
+      [-61, -64],
+      [-88, -5],
+      [-77, -66],
+      [-106, 3],
+      [-56, -45],
+      [-83, -28],
+      [-86, -2],
+      [-103, -50],
+      [-53, -61],
+      [-178, -7],
+      [-175, -42],
+      [-78, -98],
+      [-14, -62],
+      [27, -78],
+      [-38, -47],
+      [-17, -174],
+      [36, -60],
+      [-6, -201],
+      [-106, -76],
+      [-118, 48],
+      [-226, 15],
+      [-247, -123],
+      [-5, -61],
+      [36, -99],
+      [-46, -56],
+      [-63, 29],
+      [-35, 112],
+      [-54, -16],
+      [10, -149],
+      [-63, -95],
+      [-72, -53],
+      [-80, -5],
+      [-115, 44],
+      [-110, 118],
+      [-72, 12],
+      [-98, -93],
+      [-238, 57],
+      [-100, 0],
+      [-78, -49],
+      [-65, -16],
+      [-53, -55],
+      [-106, 13],
+      [-37, -21],
+      [19, -71],
+      [-37, -134],
+      [-139, -84],
+      [-33, -119],
+      [-86, 0],
+      [-54, -49],
+      [-83, 38],
+      [-52, 124],
+      [-50, -7],
+      [-33, -83],
+      [-64, 35],
+      [-98, 5],
+      [-89, 45],
+      [-71, -46],
+      [-124, -25],
+      [-183, 50],
+      [-71, -30],
+      [-97, 22],
+      [-73, 66],
+      [-40, -11],
+      [-36, 12],
+      [-51, 3],
+      [-37, 6],
+      [-49, 11]
+    ],
+    [
+      [26302, 15870],
+      [41, -66],
+      [-36, -90],
+      [-52, 63],
+      [47, 93]
+    ],
+    [
+      [31102, 23052],
+      [16, -91],
+      [-45, -77],
+      [0, -82],
+      [-47, -9],
+      [-33, 68],
+      [-58, 26],
+      [6, 84],
+      [127, 34],
+      [34, 47]
+    ],
+    [
+      [29840, 25753],
+      [39, 27],
+      [14, 11],
+      [8, 9],
+      [33, 52],
+      [42, 22],
+      [29, 13],
+      [30, -1],
+      [196, 77],
+      [145, 91],
+      [6, 25],
+      [-7, 24],
+      [11, 11],
+      [23, 13],
+      [17, 7],
+      [77, -30],
+      [28, 48],
+      [44, -30],
+      [34, 3],
+      [47, -13],
+      [7, -30],
+      [33, 11],
+      [28, 8],
+      [8, -5],
+      [21, -37],
+      [8, -11],
+      [-6, -12],
+      [7, -12],
+      [17, -7],
+      [13, 3],
+      [13, 0],
+      [47, -34],
+      [10, -3],
+      [17, 2],
+      [14, -4],
+      [3, -18],
+      [7, -10],
+      [26, 1],
+      [17, 5],
+      [14, 9],
+      [7, 27],
+      [0, 29],
+      [-4, 22],
+      [-6, 13],
+      [-17, 21],
+      [65, 60],
+      [36, -49],
+      [39, 25],
+      [9, -9],
+      [-3, -9],
+      [11, -5],
+      [14, 16],
+      [2, 4],
+      [13, 44],
+      [0, 33],
+      [-24, 27],
+      [1, 30],
+      [-5, 28],
+      [11, 19],
+      [-4, 35],
+      [34, 45],
+      [-85, 29],
+      [-9, 49],
+      [30, 13],
+      [29, 34],
+      [-6, 36],
+      [3, 35],
+      [5, 13],
+      [7, 32],
+      [15, 13],
+      [51, -2],
+      [11, 7],
+      [22, 24],
+      [7, 11],
+      [5, 27],
+      [12, 13],
+      [-10, 11],
+      [-9, 18],
+      [-8, 1],
+      [-34, -7],
+      [-16, -19],
+      [-33, -2],
+      [-19, 23],
+      [24, 11],
+      [33, 50],
+      [20, 16],
+      [15, 7],
+      [11, 31],
+      [7, 5],
+      [0, 8],
+      [-20, 24],
+      [-1, 23],
+      [-5, 12],
+      [-14, 12],
+      [-11, 15],
+      [11, 8],
+      [2, 9],
+      [10, 7],
+      [13, 4],
+      [44, 69],
+      [32, 30],
+      [18, 12],
+      [15, 17],
+      [22, 47],
+      [28, 32],
+      [8, 13],
+      [45, 46],
+      [17, 4],
+      [8, -11],
+      [-7, -3],
+      [-9, -2],
+      [-5, -5],
+      [13, -33],
+      [91, -26],
+      [3, -33],
+      [-10, -6],
+      [0, -5],
+      [-1, -6],
+      [11, 1],
+      [7, -12],
+      [-14, -12],
+      [14, -10],
+      [-13, -15],
+      [-9, -5],
+      [-3, -8],
+      [15, -24],
+      [8, 4],
+      [6, -10],
+      [-1, -6],
+      [3, -14],
+      [6, -1],
+      [6, 6],
+      [7, 4],
+      [-1, 11],
+      [13, -4],
+      [7, 1],
+      [6, -7],
+      [8, -2],
+      [-6, -9],
+      [-2, -17],
+      [-9, -6],
+      [-2, -16],
+      [-12, 0],
+      [-5, -11],
+      [-4, -9],
+      [-1, -44],
+      [46, -2],
+      [98, -52],
+      [-9, -58],
+      [2, -17],
+      [6, -7],
+      [8, -24],
+      [-32, -2],
+      [-14, -18],
+      [-11, -5],
+      [-4, -6],
+      [8, -13],
+      [3, 0],
+      [3, -1],
+      [11, 3],
+      [7, -23],
+      [-1, -10],
+      [-10, -16],
+      [6, -13],
+      [-9, -5],
+      [-8, -7],
+      [5, -8],
+      [5, -1],
+      [4, -1],
+      [3, -8],
+      [1, -13],
+      [20, -5],
+      [6, -6],
+      [19, -6],
+      [5, -6],
+      [-2, -6],
+      [6, -11],
+      [6, -3],
+      [9, -4],
+      [14, -17],
+      [11, -1],
+      [12, 15],
+      [18, 13],
+      [5, 10],
+      [-6, 28],
+      [44, 78],
+      [37, 5],
+      [19, 10],
+      [7, 0],
+      [10, -2],
+      [152, 80],
+      [9, 20],
+      [28, 34],
+      [-14, 38],
+      [21, 45],
+      [-24, 68],
+      [50, 46],
+      [43, -14],
+      [66, -43],
+      [16, -9],
+      [15, -7],
+      [16, -4],
+      [20, 19],
+      [12, -4],
+      [14, -33],
+      [0, -14],
+      [26, -84],
+      [12, 8],
+      [8, -5],
+      [7, -2],
+      [11, 7],
+      [17, 3],
+      [11, -22],
+      [96, 8],
+      [4, 14],
+      [6, 12],
+      [11, 0],
+      [4, 8],
+      [9, 13],
+      [43, 7],
+      [13, 15],
+      [14, -19],
+      [18, -7],
+      [11, -8],
+      [6, 0],
+      [30, 12],
+      [6, 5],
+      [23, 35],
+      [-16, 15],
+      [-9, 21],
+      [-28, 24],
+      [-11, 38],
+      [-28, 4],
+      [-15, 9],
+      [-5, 9],
+      [2, 8],
+      [23, 21],
+      [16, 9],
+      [6, 6],
+      [33, 33],
+      [80, 128],
+      [2, 11],
+      [-5, 8],
+      [-34, 3],
+      [-31, -18],
+      [-7, 0],
+      [-7, 0],
+      [-95, 124],
+      [27, 39],
+      [2, 12],
+      [-8, 30],
+      [-6, 7],
+      [-7, 3],
+      [-5, 9],
+      [1, 11],
+      [4, 6],
+      [24, 13],
+      [30, 7],
+      [33, 15],
+      [11, 30],
+      [32, 51],
+      [-2, 6],
+      [-1, 5],
+      [19, 27],
+      [22, 16],
+      [40, 60],
+      [23, 22],
+      [2, 6],
+      [-12, 18],
+      [8, 9],
+      [38, 24],
+      [78, -31],
+      [12, -6],
+      [7, -5],
+      [8, -14],
+      [10, -10],
+      [15, -5],
+      [21, 1],
+      [4, -5],
+      [-3, -9],
+      [1, -9],
+      [8, -8],
+      [37, 44],
+      [-2, 9],
+      [-10, 16],
+      [-1, 11],
+      [5, 5],
+      [4, 0],
+      [3, 1],
+      [38, -17],
+      [12, -2],
+      [22, 2],
+      [24, -4],
+      [12, 14],
+      [-1, 10],
+      [-4, 8],
+      [1, 10],
+      [12, 24],
+      [9, 9],
+      [177, 41],
+      [-21, 33],
+      [26, 25],
+      [24, -26],
+      [7, 2],
+      [15, 10],
+      [8, -1],
+      [21, 11],
+      [5, 7],
+      [-3, 36],
+      [21, 10],
+      [9, 8],
+      [1, 6],
+      [-12, 13],
+      [-3, 2],
+      [-6, 2],
+      [-16, 3],
+      [-15, 7],
+      [-88, 115],
+      [30, 75],
+      [-105, 31],
+      [-13, 38],
+      [-7, 9],
+      [2, 6],
+      [6, 3],
+      [19, -1],
+      [28, -6],
+      [2, 21],
+      [1, 3],
+      [4, 3],
+      [5, 16],
+      [60, -27],
+      [12, -3],
+      [21, 3],
+      [26, 12],
+      [9, -2],
+      [7, -8],
+      [11, 1],
+      [2, -2],
+      [5, -5],
+      [5, 4],
+      [5, 3],
+      [4, -8],
+      [1, -9],
+      [-5, -21],
+      [13, -4],
+      [61, -70],
+      [28, -5],
+      [15, 31],
+      [-26, 54],
+      [-4, 40],
+      [4, 5],
+      [18, 1],
+      [20, -8],
+      [9, 0],
+      [6, 3],
+      [5, 9],
+      [-4, 17],
+      [7, 23],
+      [-2, 10],
+      [-26, 24],
+      [-6, 18],
+      [1, 20],
+      [-14, 8],
+      [6, 32],
+      [39, 13],
+      [34, -47],
+      [8, 1],
+      [9, 15],
+      [5, 6],
+      [6, 0],
+      [12, -38],
+      [-2, -19],
+      [0, -9],
+      [8, -26],
+      [-40, -32],
+      [79, -13],
+      [8, 54],
+      [2, 4],
+      [15, 15],
+      [11, 19],
+      [10, 5],
+      [-2, 7],
+      [-14, 27],
+      [35, 10],
+      [-1, -5],
+      [-7, -10],
+      [1, -19],
+      [21, 2],
+      [25, -6],
+      [5, 12],
+      [2, 18],
+      [1, 30],
+      [39, 21],
+      [10, 8],
+      [0, 10],
+      [-17, 29],
+      [-5, 12],
+      [0, 23],
+      [54, 50],
+      [56, -66],
+      [27, -89],
+      [6, -12],
+      [7, -8],
+      [9, -4],
+      [21, -28],
+      [18, -20],
+      [21, -52],
+      [13, -14],
+      [13, -69],
+      [6, -4],
+      [6, 3],
+      [12, -6],
+      [21, -16],
+      [2, -22],
+      [20, -62],
+      [21, -48],
+      [22, -4],
+      [34, -35],
+      [13, 7],
+      [6, 7],
+      [-6, 27],
+      [-35, 59],
+      [-24, -1],
+      [-21, 92],
+      [104, 55],
+      [103, -228],
+      [6, -2],
+      [5, -10],
+      [5, -37],
+      [3, -85],
+      [45, -28],
+      [6, -36],
+      [7, -12],
+      [8, -2],
+      [21, 5],
+      [3, -4],
+      [1, -18],
+      [4, -11],
+      [19, 22],
+      [27, 3],
+      [57, -22],
+      [13, -24],
+      [9, 0],
+      [11, 2],
+      [15, 13],
+      [59, -7],
+      [55, 10],
+      [27, -15],
+      [6, 2],
+      [3, 6],
+      [7, 2],
+      [16, -27],
+      [10, -7],
+      [20, -9],
+      [4, -14],
+      [-4, -7],
+      [3, -8],
+      [20, -6],
+      [5, -13],
+      [11, -25],
+      [57, -15],
+      [95, 50],
+      [12, 2],
+      [17, 9],
+      [7, 9],
+      [18, -1],
+      [17, -12],
+      [28, -2],
+      [81, 42],
+      [17, -7],
+      [6, 7],
+      [8, -4],
+      [1, -13],
+      [33, -15],
+      [28, 3],
+      [12, 13],
+      [8, 0],
+      [11, 5],
+      [5, 11],
+      [7, 5],
+      [12, 3],
+      [36, -21],
+      [15, 0],
+      [4, -8],
+      [8, 2],
+      [1, 7],
+      [6, 9],
+      [25, 8],
+      [11, 6],
+      [3, 7],
+      [-9, 32],
+      [32, 7],
+      [1, 48],
+      [-14, 8],
+      [-5, 12],
+      [-4, 24],
+      [0, 14],
+      [1, 14],
+      [3, 7],
+      [9, -2],
+      [10, -8],
+      [6, -6],
+      [9, -21],
+      [24, 0],
+      [16, 19],
+      [4, 10],
+      [1, 9],
+      [-27, 11],
+      [-12, 7],
+      [-5, 6],
+      [7, 12],
+      [62, -31],
+      [7, 31],
+      [52, 18],
+      [43, 53],
+      [-21, 37],
+      [-6, 9],
+      [-4, 10],
+      [11, 27],
+      [31, 32],
+      [7, 5],
+      [6, 3],
+      [-13, 23],
+      [-18, 17],
+      [-2, 12],
+      [2, 6],
+      [-2, 8],
+      [10, 13],
+      [49, -29],
+      [23, -12],
+      [20, -5],
+      [9, 25],
+      [-1, 10],
+      [5, 27],
+      [10, 5],
+      [16, 25],
+      [45, 38],
+      [38, 3],
+      [9, 13],
+      [8, 3],
+      [28, 1],
+      [13, 3],
+      [13, 28],
+      [14, 13],
+      [4, -4],
+      [2, -6],
+      [4, -1],
+      [13, 10],
+      [4, -6],
+      [-7, -56],
+      [-3, -6],
+      [10, -38],
+      [21, -13],
+      [20, 15],
+      [8, 31],
+      [16, 29],
+      [10, 10],
+      [-2, 9],
+      [3, 3],
+      [23, 1],
+      [15, -14],
+      [15, 18],
+      [24, -3],
+      [15, -8],
+      [10, 26],
+      [9, 2],
+      [3, 4],
+      [-11, 11],
+      [-12, 23],
+      [-12, 7],
+      [-9, 1],
+      [-22, -13],
+      [-7, -14],
+      [-26, 9],
+      [-7, 20],
+      [1, 11],
+      [-5, 5],
+      [-11, -3],
+      [-15, 13],
+      [-15, 43],
+      [-9, 14],
+      [6, 5],
+      [33, -14],
+      [113, 10],
+      [9, 81],
+      [91, -30],
+      [-20, -81],
+      [140, -86],
+      [-160, -227],
+      [-162, -164],
+      [-56, -69],
+      [-76, -177],
+      [-142, -131],
+      [-108, -137],
+      [0, -37],
+      [-171, -175],
+      [-15, -73],
+      [-155, -128],
+      [-147, -138],
+      [-145, -151],
+      [-61, -111],
+      [10, -33],
+      [-132, -88],
+      [-262, -137],
+      [-142, -49],
+      [-51, -46],
+      [-172, -66],
+      [-156, -84],
+      [-315, -223],
+      [-25, -71],
+      [-65, -79],
+      [-171, -114],
+      [-18, -64],
+      [-55, -36],
+      [-18, -108],
+      [-54, -72],
+      [-69, -51],
+      [-28, -79],
+      [-95, -66],
+      [-7, -44],
+      [-122, -97],
+      [-11, -52],
+      [-162, -116],
+      [-125, -38],
+      [-214, -106],
+      [-48, -66],
+      [-68, -23],
+      [-551, -268],
+      [-177, -103],
+      [-200, -129],
+      [-205, -164],
+      [-236, -232],
+      [-64, -73],
+      [-53, -112],
+      [12, -35],
+      [-72, -98],
+      [-1, -67],
+      [42, -70],
+      [92, -48],
+      [104, -14],
+      [-39, -220],
+      [-92, -91],
+      [-41, 20],
+      [-132, -10],
+      [82, -66],
+      [-9, -86],
+      [54, -38],
+      [47, -103],
+      [-87, -95],
+      [-85, -33],
+      [-326, -169],
+      [-283, -157],
+      [-117, -21],
+      [-108, -38],
+      [-150, -83],
+      [-122, -52],
+      [-70, 48],
+      [-276, 30],
+      [-40, 30],
+      [-160, -12],
+      [-171, -25],
+      [-162, -67],
+      [-78, -51],
+      [-89, -95],
+      [-83, -171],
+      [-35, -168],
+      [-106, -197],
+      [10, -103],
+      [-125, -100],
+      [-200, -233],
+      [18, -113],
+      [-16, -71],
+      [-133, -74],
+      [-47, 5],
+      [-173, -26],
+      [-35, 9],
+      [-42, 72],
+      [19, 38],
+      [-39, 111],
+      [40, 53],
+      [-58, 67],
+      [-163, 46],
+      [-149, -6],
+      [-169, -39],
+      [-256, -106],
+      [-244, -156],
+      [-152, -172],
+      [-73, -167],
+      [-81, -313],
+      [-161, -208],
+      [-66, -143],
+      [-31, -119],
+      [12, -99],
+      [-49, -145],
+      [-40, -157],
+      [6, -141],
+      [39, -233],
+      [32, -88],
+      [8, -155],
+      [54, -180],
+      [71, -100],
+      [50, -182],
+      [68, -67],
+      [-33, -145],
+      [-27, -392],
+      [-69, -210],
+      [-26, -240],
+      [13, -152],
+      [33, -168],
+      [53, -101],
+      [52, -137],
+      [109, -243],
+      [16, -85],
+      [-35, -161],
+      [-8, -101],
+      [23, -129],
+      [-122, 80],
+      [-1, 50],
+      [-73, 77],
+      [-28, -21],
+      [13, -75],
+      [-19, -112],
+      [-27, -4],
+      [-50, 99],
+      [-71, -45],
+      [2, -62],
+      [-41, -58],
+      [72, -72],
+      [50, -75],
+      [64, -16],
+      [51, -53],
+      [35, 12],
+      [131, -25],
+      [55, -26],
+      [26, -65],
+      [86, -39],
+      [6, -130],
+      [-87, 41],
+      [-5, 19],
+      [6, 4],
+      [2, 0],
+      [4, 0],
+      [-3, 19],
+      [-22, 16],
+      [-17, 76],
+      [-96, 80],
+      [-141, -7],
+      [-17, 16],
+      [-15, 12],
+      [-11, 11],
+      [-26, 15],
+      [-45, 7],
+      [-2, 3],
+      [-6, 4],
+      [-18, 40],
+      [-20, 9],
+      [-7, -8],
+      [-8, 18],
+      [-7, 9],
+      [-5, -4],
+      [-4, -3],
+      [-13, -5],
+      [-19, -5],
+      [-12, -19],
+      [-25, -1],
+      [-10, 4],
+      [-26, 4],
+      [-7, 8],
+      [-15, 9],
+      [-30, -7],
+      [-10, -6],
+      [65, -58],
+      [40, -6],
+      [-3, -34],
+      [-24, 5],
+      [-42, 3],
+      [-3, -22],
+      [-20, -44],
+      [-10, 0],
+      [-1, 6],
+      [-6, 0],
+      [-43, -13],
+      [-14, -12],
+      [1, -16],
+      [2, -8],
+      [-5, -30],
+      [5, -23],
+      [-10, -12],
+      [-17, -10],
+      [-14, 6],
+      [-19, -3],
+      [-7, -12],
+      [7, -45],
+      [39, -25],
+      [-62, -88],
+      [-47, -7],
+      [-14, -8],
+      [-13, -12],
+      [-12, -7],
+      [-13, -2],
+      [-12, -7],
+      [-9, -13],
+      [-43, -20],
+      [-60, -2],
+      [-34, 6],
+      [-18, -1],
+      [-45, -52],
+      [-25, 18],
+      [-32, 30],
+      [-7, -9],
+      [-2, -19],
+      [-8, -25],
+      [-10, -7],
+      [-26, -4],
+      [-19, -7],
+      [1, -15],
+      [39, -26],
+      [14, -14],
+      [16, -10],
+      [49, -23],
+      [18, -14],
+      [0, -23],
+      [-13, -2],
+      [-9, 1],
+      [-64, -52],
+      [-13, 7],
+      [-2, 17],
+      [-8, 11],
+      [-3, 11],
+      [-13, 6],
+      [-8, 10],
+      [-10, 2],
+      [-6, -19],
+      [-22, -12],
+      [-13, -15],
+      [-16, 11],
+      [-8, -1],
+      [1, 9],
+      [14, 29],
+      [1, 24],
+      [-9, 10],
+      [-16, -10],
+      [-9, -13],
+      [-16, 3],
+      [-5, 14],
+      [6, 26],
+      [23, 22],
+      [-11, 30],
+      [-24, 29],
+      [-5, -20],
+      [-8, -12],
+      [-20, 15],
+      [-46, -3],
+      [-26, -33],
+      [-43, 20],
+      [-27, -17],
+      [-5, -16],
+      [-2, -15],
+      [-12, -4],
+      [-20, 5],
+      [-12, 5],
+      [-24, 22],
+      [-29, 46],
+      [-6, 51],
+      [-7, 23],
+      [-28, 11],
+      [-55, -2],
+      [-23, 4],
+      [-18, 11],
+      [-54, 7],
+      [-82, -6],
+      [-35, -14],
+      [-59, -29],
+      [24, -20],
+      [44, -21],
+      [36, 3],
+      [7, -13],
+      [-15, -15],
+      [-1, -13],
+      [3, -6],
+      [-15, -21],
+      [-8, -25],
+      [-3, -21],
+      [5, -22],
+      [-2, -19],
+      [5, -18],
+      [13, 1],
+      [3, 14],
+      [39, 26],
+      [14, -1],
+      [7, -17],
+      [0, -12],
+      [-53, -19],
+      [4, -22],
+      [-4, -13],
+      [5, -14],
+      [-7, -7],
+      [-16, 4],
+      [-34, 1],
+      [-29, -4],
+      [-14, -5],
+      [-20, -15],
+      [4, -17],
+      [-8, -7],
+      [-5, -12],
+      [-8, -10],
+      [-30, 16],
+      [5, -87],
+      [-12, -4],
+      [-15, -1],
+      [-5, 10],
+      [-11, -15],
+      [-30, -4],
+      [-10, -13],
+      [-6, -16],
+      [1, -16],
+      [-5, -7],
+      [-20, 41],
+      [-23, 8],
+      [-7, 11],
+      [-25, -5],
+      [-2, 14],
+      [-3, 26],
+      [-9, 7],
+      [-13, -1],
+      [-11, -9],
+      [-11, 22],
+      [-9, 4],
+      [-7, -16],
+      [-2, -18],
+      [-37, 3],
+      [-26, -87],
+      [-47, -17],
+      [-9, -11],
+      [-4, -18],
+      [-14, -23],
+      [-4, -16],
+      [-21, -16],
+      [16, -35],
+      [0, -11],
+      [0, -8],
+      [-8, -24],
+      [-6, -9],
+      [-20, -9],
+      [-19, -10],
+      [-73, 35],
+      [-33, 4],
+      [-48, -27],
+      [-30, 4],
+      [-18, 15],
+      [-15, 17],
+      [-2, 23],
+      [-20, 13],
+      [-23, 5],
+      [-17, 9],
+      [-6, 15],
+      [-26, 4],
+      [-24, 0],
+      [-11, 12],
+      [-15, 22],
+      [-15, 8],
+      [-41, -11],
+      [-8, -14],
+      [-21, 2],
+      [-9, -6],
+      [-20, 15],
+      [-14, -9],
+      [-35, 4],
+      [-30, -37],
+      [-16, -39],
+      [11, -8],
+      [13, -1],
+      [29, 3],
+      [6, -9],
+      [16, -12],
+      [2, -4],
+      [-8, -7],
+      [-4, 7],
+      [-16, 3],
+      [-56, -7],
+      [-18, 0],
+      [-6, 13],
+      [3, 43],
+      [-1, 59],
+      [-175, 14],
+      [-31, -31],
+      [-8, -14],
+      [-12, -7],
+      [-51, -14],
+      [-18, -4],
+      [-14, 0],
+      [-82, 25],
+      [-3, -28],
+      [-11, -73],
+      [-5, -19],
+      [-55, 16],
+      [-39, 15],
+      [-5, -3],
+      [-15, -34],
+      [-10, -11],
+      [-37, -33],
+      [-15, -9],
+      [14, -11],
+      [39, -45],
+      [-19, -3],
+      [14, -35],
+      [25, -44],
+      [-49, -11],
+      [-73, -175],
+      [-25, -165],
+      [-48, -36],
+      [-9, -13],
+      [-19, -40],
+      [12, -6],
+      [7, 0],
+      [-4, -13],
+      [-9, -13],
+      [-6, -18],
+      [15, -23],
+      [-24, -28],
+      [-22, -12],
+      [-8, -2],
+      [-7, 1],
+      [-13, 30],
+      [5, 11],
+      [10, -6],
+      [4, 6],
+      [-2, 9],
+      [-23, 5],
+      [-19, 23],
+      [-8, 0],
+      [-4, 19],
+      [-10, 6],
+      [-7, 15],
+      [-21, 10],
+      [-11, -11],
+      [11, -16],
+      [15, -14],
+      [5, -14],
+      [34, -14],
+      [3, -8],
+      [-2, -6],
+      [-11, -2],
+      [-2, -11],
+      [-13, 12],
+      [-10, -11],
+      [1, -56],
+      [-43, -24],
+      [-36, 7],
+      [4, -54],
+      [7, -8],
+      [-2, -7],
+      [-6, -2],
+      [1, -33],
+      [-44, -1],
+      [-32, -4],
+      [-15, 13],
+      [-13, -6],
+      [-11, -1],
+      [-16, -10],
+      [-70, -3],
+      [-17, 7],
+      [-27, 20],
+      [-20, 19],
+      [-21, 15],
+      [-46, 27],
+      [-40, 7],
+      [-7, 12],
+      [-7, 21],
+      [-43, 56],
+      [-81, -5],
+      [-60, -32],
+      [-8, 7],
+      [-3, 3],
+      [-12, 3],
+      [-1, 5],
+      [12, 27],
+      [3, 4],
+      [8, -1],
+      [7, 6],
+      [15, 1],
+      [23, 9],
+      [15, 27],
+      [4, 12],
+      [-21, 62],
+      [22, 35],
+      [27, 116],
+      [-1, 81],
+      [7, 9],
+      [21, -4],
+      [19, 16],
+      [89, -21],
+      [7, 21],
+      [-5, 22],
+      [15, -1],
+      [24, -6],
+      [2, 11],
+      [11, 15],
+      [-11, 5],
+      [-3, -11],
+      [-11, 1],
+      [-12, 4],
+      [-2, 6],
+      [7, 8],
+      [1, 20],
+      [6, 10],
+      [13, -7],
+      [11, -1],
+      [24, 40],
+      [-1, 15],
+      [1, 6],
+      [13, 6],
+      [-8, 9],
+      [1, 6],
+      [10, 8],
+      [34, -38],
+      [17, -23],
+      [21, -15],
+      [11, 0],
+      [4, 2],
+      [8, 22],
+      [63, -39],
+      [20, 31],
+      [21, -4],
+      [0, -27],
+      [5, -6],
+      [1, -15],
+      [17, -12],
+      [14, -21],
+      [-1, -23],
+      [4, -6],
+      [6, 30],
+      [3, 32],
+      [-5, 30],
+      [-47, 36],
+      [-19, 20],
+      [-10, 15],
+      [-2, 13],
+      [6, 11],
+      [3, 10],
+      [-10, 20],
+      [16, 9],
+      [-8, 9],
+      [-4, 19],
+      [2, 13],
+      [6, 3],
+      [18, -2],
+      [53, -13],
+      [0, 17],
+      [8, 20],
+      [-13, 25],
+      [-11, 57],
+      [-1, 26],
+      [1, 5],
+      [2, 8],
+      [34, 23],
+      [83, 26],
+      [0, 15],
+      [-13, 24],
+      [33, 35],
+      [2, 15],
+      [29, 14],
+      [-12, 5],
+      [-13, 3],
+      [-12, 13],
+      [-5, 16],
+      [0, 14],
+      [9, 2],
+      [19, 20],
+      [31, 4],
+      [3, 15],
+      [-9, 11],
+      [2, 10],
+      [11, 12],
+      [18, 5],
+      [25, -3],
+      [24, 10],
+      [-8, 35],
+      [-5, 13],
+      [-8, 6],
+      [-7, 0],
+      [-6, 0],
+      [-15, -3],
+      [-10, 3],
+      [-3, 17],
+      [27, 4],
+      [15, 102],
+      [7, 12],
+      [20, 24],
+      [11, 31],
+      [-3, 12],
+      [-19, 10],
+      [-146, 13],
+      [-68, 38],
+      [-8, 38],
+      [-27, -14],
+      [-14, -3],
+      [-14, -8],
+      [-8, -1],
+      [-4, -1],
+      [-12, 22],
+      [-3, 21],
+      [-5, 2],
+      [-5, 3],
+      [-8, 0],
+      [-12, -5],
+      [-18, -16],
+      [-11, -6],
+      [-24, -9],
+      [-19, 24],
+      [-35, 14],
+      [2, 19],
+      [37, -11],
+      [24, -2],
+      [4, 22],
+      [-10, 8],
+      [-17, 6],
+      [-3, 9],
+      [-34, 14],
+      [-26, -3],
+      [-3, 19],
+      [36, 83],
+      [-13, 77],
+      [4, 16],
+      [-7, 15],
+      [-3, 33],
+      [2, 17],
+      [8, 17],
+      [0, 66],
+      [40, 84],
+      [1, 29],
+      [26, 51],
+      [-38, 35],
+      [-29, -2],
+      [-13, -4],
+      [-39, -2],
+      [-68, 13],
+      [-138, -21],
+      [-123, 47],
+      [3, 16],
+      [-3, 33],
+      [-18, 12],
+      [-44, 0],
+      [-12, 5],
+      [-3, 51],
+      [-7, 8],
+      [-21, 2],
+      [-38, -3],
+      [-13, 1],
+      [-16, -7],
+      [-79, 11],
+      [-31, 32],
+      [-16, 6],
+      [5, 11],
+      [7, 7],
+      [3, 12],
+      [-6, 13],
+      [3, 6],
+      [47, -17],
+      [44, 8],
+      [4, 33],
+      [6, 12],
+      [-1, 15],
+      [-54, 54],
+      [73, 100],
+      [-6, 25],
+      [-17, 37],
+      [21, 42],
+      [-24, 73],
+      [-69, 3],
+      [-9, 40],
+      [-35, 17],
+      [-14, 12],
+      [-16, 5],
+      [4, -53],
+      [-4, -13],
+      [-7, -12],
+      [-49, 3],
+      [-24, 17],
+      [-43, 0],
+      [-43, -96],
+      [-46, 0],
+      [7, 11],
+      [0, 10],
+      [-5, 25],
+      [-8, 72],
+      [79, 51],
+      [-7, 28],
+      [-3, 44],
+      [11, 54],
+      [-26, 7],
+      [-12, -2],
+      [-13, -18],
+      [-2, -12],
+      [-8, -21],
+      [-4, -2],
+      [-6, 3],
+      [-16, -8],
+      [-20, -37],
+      [-40, -27],
+      [-108, 69],
+      [-106, 9],
+      [-13, -19],
+      [-4, -12],
+      [32, -65],
+      [14, -41],
+      [-18, -13],
+      [19, -12],
+      [-55, -46],
+      [-63, -21],
+      [7, -18],
+      [6, -9],
+      [1, -8],
+      [-5, -9],
+      [-20, -10],
+      [-30, -2],
+      [-60, -13],
+      [-72, -94],
+      [-24, -6],
+      [-35, -15],
+      [7, 41],
+      [-4, 18],
+      [-13, -4],
+      [-17, 2],
+      [-16, -2],
+      [-76, -36],
+      [-9, -11],
+      [5, -20],
+      [46, -13],
+      [7, -14],
+      [-34, -18],
+      [-13, 2],
+      [-25, 33],
+      [-19, 2],
+      [-31, -30],
+      [-17, -9],
+      [-15, 6],
+      [-41, -20],
+      [-15, 33],
+      [-4, 20],
+      [-22, 5],
+      [-22, -4],
+      [-10, -16],
+      [26, -27],
+      [2, -15],
+      [0, -27],
+      [-14, -45],
+      [-41, 39],
+      [-34, 5],
+      [-17, -8],
+      [-7, -59],
+      [-58, -5],
+      [-11, 47],
+      [39, 110],
+      [-9, 14],
+      [-10, 66],
+      [-4, 5],
+      [-3, 12],
+      [-23, 39],
+      [-11, -7],
+      [-15, -26],
+      [-19, 2],
+      [-7, 5],
+      [-18, 19],
+      [-1, 7],
+      [12, 12],
+      [-2, 10],
+      [27, 34],
+      [-46, 11],
+      [-31, 4],
+      [-19, -4],
+      [-18, 0],
+      [-46, 30],
+      [-71, -43],
+      [-8, 32],
+      [-12, 27],
+      [-8, 14],
+      [-48, -26],
+      [-5, -12],
+      [-17, 4],
+      [-43, -7],
+      [-12, 0],
+      [-14, 48],
+      [-7, 13],
+      [-3, 18],
+      [-1, 18],
+      [6, 17],
+      [-3, 12],
+      [-14, 2],
+      [-19, 1],
+      [-7, -15],
+      [-3, -16],
+      [-8, -29],
+      [-12, -18],
+      [-8, -3],
+      [2, 42],
+      [-36, -51],
+      [-30, 8],
+      [-8, 3],
+      [15, 93],
+      [-57, -4],
+      [2, -19],
+      [10, -21],
+      [2, -14],
+      [5, -23],
+      [-5, -22],
+      [-51, 5],
+      [-20, -21],
+      [-14, -1],
+      [3, -15],
+      [33, -12],
+      [12, -7],
+      [27, -22],
+      [9, -11],
+      [0, -12],
+      [-18, -34],
+      [38, -66],
+      [-3, -25],
+      [-7, -15],
+      [-19, 0],
+      [-25, 0],
+      [-20, 2],
+      [-7, -6],
+      [-24, -5],
+      [-27, 9],
+      [-35, 14],
+      [-21, -6],
+      [-12, -11],
+      [1, -37],
+      [-20, 3],
+      [-25, 0],
+      [-55, 71],
+      [-34, 1],
+      [-3, -19],
+      [-10, -33],
+      [-5, -34],
+      [-21, 9],
+      [-21, 14],
+      [-25, 100],
+      [-27, 56],
+      [-1, 10],
+      [7, 10],
+      [11, 6],
+      [16, 15],
+      [49, 51],
+      [4, 30],
+      [10, 3],
+      [0, 7],
+      [-2, 10],
+      [13, 50],
+      [23, 9],
+      [29, 1],
+      [-12, 65],
+      [-61, 50],
+      [-19, 7],
+      [-23, 15],
+      [6, 44],
+      [6, 13],
+      [-20, 14],
+      [-17, 15],
+      [0, 0],
+      [-5, 6],
+      [-58, 24],
+      [-39, 36],
+      [6, 42],
+      [9, 16],
+      [12, -1],
+      [14, 2],
+      [48, 10],
+      [6, 12],
+      [2, 18],
+      [-6, 7],
+      [-1, 17],
+      [-9, 9],
+      [-36, 13],
+      [-11, 41],
+      [-8, 21],
+      [-12, 7],
+      [-23, 28],
+      [-10, 4],
+      [-22, -16],
+      [-63, 21],
+      [7, 12],
+      [5, 34],
+      [5, 19],
+      [12, 6],
+      [45, -10],
+      [12, 14],
+      [31, 5],
+      [5, 5],
+      [5, 24],
+      [-5, 20],
+      [5, 6],
+      [6, -3],
+      [11, -10],
+      [10, -7],
+      [10, -12],
+      [61, -7],
+      [44, 5],
+      [18, -4],
+      [12, -1],
+      [4, -10],
+      [-1, -9],
+      [-11, -27],
+      [-3, -47],
+      [-2, -12],
+      [12, -4],
+      [2, -7],
+      [-8, -11],
+      [1, -13],
+      [-1, -14],
+      [-18, -18],
+      [34, -104],
+      [99, -14],
+      [2, -18],
+      [15, -3],
+      [31, 0],
+      [67, 9],
+      [8, -17],
+      [7, -37],
+      [13, -21],
+      [-2, -12],
+      [3, -14],
+      [29, -15],
+      [15, -3],
+      [38, 42],
+      [50, -13],
+      [106, 8],
+      [29, 33],
+      [19, 13],
+      [16, 4],
+      [6, -28],
+      [-4, -19],
+      [13, -2],
+      [55, 46],
+      [22, -5],
+      [7, -7],
+      [1, -15],
+      [15, -23],
+      [14, -24],
+      [-1, -3],
+      [0, 0],
+      [1, -7],
+      [7, -6],
+      [27, -5],
+      [18, -8],
+      [-1, -14],
+      [-14, -36],
+      [0, -12],
+      [-8, -11],
+      [41, -12],
+      [1, -7],
+      [-44, -70],
+      [2, -14],
+      [11, -22],
+      [155, -4],
+      [-25, 95],
+      [33, 7],
+      [13, 10],
+      [1, 30],
+      [4, 13],
+      [0, 16],
+      [-9, 10],
+      [-14, 8],
+      [-74, -6],
+      [-7, 77],
+      [-126, 36],
+      [11, 39],
+      [15, 32],
+      [27, -1],
+      [18, 13],
+      [6, 16],
+      [24, 14],
+      [16, 43],
+      [35, 30],
+      [2, 17],
+      [-4, 9],
+      [-10, 9],
+      [-82, -31],
+      [-9, -14],
+      [-9, -7],
+      [5, 33],
+      [0, 17],
+      [2, 15],
+      [16, -1],
+      [48, 14],
+      [4, 20],
+      [9, 21],
+      [15, 14],
+      [1, 27],
+      [17, 3],
+      [27, 7],
+      [14, -1],
+      [16, -9],
+      [87, -2],
+      [56, -26],
+      [26, -5],
+      [5, 14],
+      [17, 35],
+      [-2, 11],
+      [-12, 9],
+      [-7, 29],
+      [-3, 26],
+      [-14, 22],
+      [-7, 31],
+      [21, 76],
+      [-7, 26],
+      [-26, 8],
+      [-11, 22],
+      [-1, -2],
+      [-23, -10],
+      [-31, -17],
+      [-24, 13],
+      [-2, 30],
+      [-1, 44],
+      [-32, -11],
+      [-4, 37],
+      [-11, 2],
+      [-25, 12],
+      [-32, 5],
+      [-35, -28],
+      [-11, -28],
+      [2, -23],
+      [33, -78],
+      [24, -2],
+      [9, -27],
+      [9, -58],
+      [13, -15],
+      [2, -12],
+      [-2, -20],
+      [-68, -27],
+      [-16, 58],
+      [-27, 15],
+      [-20, 16],
+      [9, 91],
+      [-176, 15],
+      [7, 61],
+      [-3, 66],
+      [-17, 2],
+      [-14, -11],
+      [-20, -3],
+      [-15, -12],
+      [-13, -14],
+      [-29, -8],
+      [-20, 9],
+      [-29, -4],
+      [-30, 3],
+      [-97, 54],
+      [-12, -13],
+      [-13, 9],
+      [-19, -13],
+      [-14, -67],
+      [-18, -23],
+      [-12, -9],
+      [-3, -29],
+      [-8, -31],
+      [19, -11],
+      [-9, -20],
+      [3, -19],
+      [-7, -43],
+      [-10, -19],
+      [-22, -9],
+      [-23, -2],
+      [-21, 2],
+      [-17, 20],
+      [-16, 14],
+      [-23, 36],
+      [-37, 2],
+      [-63, -21],
+      [-21, 10],
+      [-4, -6],
+      [-8, 7],
+      [-15, 5],
+      [-68, -10],
+      [-18, 5],
+      [-12, 9],
+      [-4, 20],
+      [-5, 11],
+      [-17, 25],
+      [-3, 18],
+      [24, 11],
+      [18, 11],
+      [11, 12],
+      [3, 17],
+      [-8, 15],
+      [-8, 11],
+      [-96, 32],
+      [-30, 47],
+      [-14, 16],
+      [-1, 11],
+      [10, 90],
+      [66, 54],
+      [12, -5],
+      [40, -23],
+      [10, -4],
+      [5, 8],
+      [2, 13],
+      [-1, 38],
+      [-3, 34],
+      [2, 12],
+      [33, 1],
+      [12, 14],
+      [22, 43],
+      [-2, 19],
+      [-147, 13],
+      [-27, -8],
+      [-19, -11],
+      [-12, -12],
+      [-22, -5],
+      [-14, 14],
+      [-44, 80],
+      [-26, 14],
+      [-8, 16],
+      [-1, 2],
+      [-18, -6],
+      [-32, 10],
+      [-12, 7],
+      [-47, 119],
+      [-38, 39],
+      [23, 180],
+      [21, 38],
+      [10, 39],
+      [28, 63],
+      [-7, 15],
+      [-15, 25],
+      [-4, 23],
+      [-11, 29],
+      [-2, 12],
+      [67, 5],
+      [14, 9],
+      [7, 3],
+      [13, 0],
+      [11, -6],
+      [5, 2],
+      [14, 104],
+      [44, 141],
+      [12, 108],
+      [-4, 40],
+      [2, 21],
+      [-52, -7],
+      [-11, -5],
+      [-18, -18],
+      [-27, 29],
+      [-114, 14],
+      [-15, 31],
+      [12, 15],
+      [6, -1],
+      [3, 4],
+      [4, 11],
+      [3, 11],
+      [22, 12],
+      [11, 25],
+      [-26, 112],
+      [7, 10],
+      [18, 15],
+      [28, 35],
+      [54, -37],
+      [18, -1],
+      [17, -5],
+      [13, -14],
+      [38, -22],
+      [8, -16],
+      [12, -13],
+      [16, -36],
+      [80, 5],
+      [40, -10],
+      [25, 1],
+      [17, -6],
+      [36, -26],
+      [33, -6],
+      [3, 23],
+      [27, 8],
+      [11, 13],
+      [102, -1],
+      [4, -12],
+      [-5, -18],
+      [-12, -24],
+      [45, -10],
+      [38, -3],
+      [4, 18],
+      [3, 33],
+      [14, 2],
+      [5, 11],
+      [24, -1],
+      [18, 3],
+      [4, 22],
+      [10, 5],
+      [5, 24],
+      [16, 41],
+      [4, 58],
+      [44, 32],
+      [14, 31],
+      [-2, 25],
+      [-39, 10],
+      [-7, 16],
+      [11, 15],
+      [19, 3],
+      [26, -4],
+      [4, 8],
+      [-1, 13],
+      [10, 8],
+      [2, 16],
+      [-14, 59],
+      [-36, 56],
+      [14, 156],
+      [-72, 10],
+      [-4, 68],
+      [-7, 3],
+      [-1, 16],
+      [-23, -2],
+      [-66, -17],
+      [-17, 6],
+      [3, 37],
+      [-55, 48],
+      [10, 37],
+      [3, 21],
+      [-6, 18],
+      [-17, 11],
+      [-11, 12],
+      [6, 39],
+      [-1, 19],
+      [-7, 20],
+      [-8, 8],
+      [-19, 6],
+      [-20, 16],
+      [-9, 17],
+      [-3, 14],
+      [-10, 14],
+      [-44, 33],
+      [-12, 21],
+      [56, 20],
+      [21, 7],
+      [46, -6],
+      [5, 20],
+      [0, 38],
+      [-11, 118],
+      [7, 123],
+      [120, 54],
+      [76, -64],
+      [11, 28],
+      [8, 51],
+      [-13, 7],
+      [-18, 21],
+      [-22, 17],
+      [-54, 28],
+      [0, 71],
+      [-64, 8],
+      [-1, 61],
+      [11, -3],
+      [4, 20],
+      [-11, 5],
+      [3, 7],
+      [9, -1],
+      [19, 34],
+      [10, 41],
+      [-12, 5],
+      [5, 58],
+      [-25, 3],
+      [-6, -10],
+      [-18, 4],
+      [-7, 8],
+      [-22, 1],
+      [-9, 9],
+      [-4, 5],
+      [24, 49],
+      [17, 25],
+      [25, 29],
+      [30, 53],
+      [24, 24],
+      [29, 19],
+      [32, 15],
+      [55, 14],
+      [30, 24],
+      [30, 8],
+      [30, 3],
+      [22, 10],
+      [150, 18],
+      [74, -24],
+      [156, -8],
+      [32, -18],
+      [18, -6],
+      [21, 2],
+      [15, 6],
+      [33, -3],
+      [41, 15],
+      [89, -34],
+      [36, 2],
+      [31, -5],
+      [27, -12]
+    ],
+    [
+      [59479, 46082],
+      [-3, 60],
+      [-44, 54],
+      [58, 113],
+      [-60, 32],
+      [-67, 154],
+      [99, 48],
+      [9, 81],
+      [-37, 31],
+      [-48, 129],
+      [1, 123]
+    ],
+    [
+      [59387, 46907],
+      [116, -30],
+      [135, 118],
+      [125, 73],
+      [87, 13],
+      [114, 40],
+      [23, 127],
+      [-21, 44],
+      [62, 84],
+      [105, 57],
+      [87, -45],
+      [34, -50],
+      [104, 17],
+      [104, 48],
+      [276, 54],
+      [111, 31],
+      [26, -63],
+      [57, -6],
+      [18, 63],
+      [125, 59],
+      [15, 46],
+      [99, 89],
+      [-92, 141],
+      [-88, 23],
+      [-111, -6],
+      [-14, 63],
+      [11, 190],
+      [-42, -2],
+      [-90, 67],
+      [-51, 61],
+      [-42, 122],
+      [-19, 137],
+      [22, 88],
+      [94, 118],
+      [117, 76],
+      [102, 102],
+      [71, 94],
+      [-6, 35],
+      [55, 62],
+      [-333, 20],
+      [-482, -45],
+      [-138, -103],
+      [-62, -73],
+      [-289, -92],
+      [-149, 68],
+      [-176, -53],
+      [-406, -135],
+      [-29, -28],
+      [-114, -16],
+      [-226, -67],
+      [-51, -6],
+      [-27, -66],
+      [-60, -34],
+      [-57, 4],
+      [-116, -80],
+      [-98, 9],
+      [-128, -84],
+      [-106, -19],
+      [-40, -36],
+      [-104, -26],
+      [-57, -43],
+      [-103, -15],
+      [-71, 71],
+      [-118, -57],
+      [-175, 35],
+      [-116, 94],
+      [-27, -74],
+      [8, -58],
+      [66, -42],
+      [6, -80],
+      [-224, -103],
+      [6, -27],
+      [-162, -143],
+      [-56, -95],
+      [-134, -67],
+      [-134, -142],
+      [-84, -73],
+      [-73, -99],
+      [-133, -112],
+      [40, -72],
+      [25, -95],
+      [-259, -136],
+      [-95, -111],
+      [-201, -43],
+      [-255, -32],
+      [-45, 35],
+      [-220, 21],
+      [-178, -16],
+      [-182, -40],
+      [-362, -51],
+      [-224, 110],
+      [-2, 47],
+      [-97, 53],
+      [-228, 59],
+      [-121, -16],
+      [-121, 29],
+      [-29, -119],
+      [-133, -59],
+      [-176, 12],
+      [-130, -15],
+      [-102, -79],
+      [-102, 22],
+      [-111, -27],
+      [-58, -50],
+      [-48, 23],
+      [-131, -50],
+      [-191, 7]
+    ],
+    [
+      [52598, 46562],
+      [20, 89],
+      [-31, 174],
+      [-51, 30],
+      [-35, 73],
+      [-42, 0],
+      [-38, 61],
+      [-12, 84],
+      [32, 55],
+      [-25, 77],
+      [68, 41],
+      [30, 79],
+      [0, 124],
+      [70, -19],
+      [34, 54],
+      [-128, 80],
+      [-28, 120],
+      [18, 49],
+      [-34, 84],
+      [-49, 49],
+      [5, 51],
+      [-175, -45],
+      [-198, 51],
+      [-46, -31],
+      [-120, -11],
+      [-132, 22],
+      [-52, 67],
+      [-81, -46],
+      [-129, 131],
+      [-72, 103],
+      [33, 36],
+      [-42, 78],
+      [75, 115],
+      [70, 53],
+      [16, 151],
+      [-6, 68],
+      [-65, 46],
+      [-73, -13],
+      [-43, 73],
+      [52, 32],
+      [83, -15],
+      [136, 6],
+      [55, -80],
+      [114, -43],
+      [180, 10],
+      [72, -164],
+      [40, -35],
+      [146, 16],
+      [23, 51],
+      [62, 45],
+      [157, -25],
+      [222, 180],
+      [97, 46],
+      [120, 12],
+      [27, -19],
+      [38, -107],
+      [50, -66],
+      [160, 37],
+      [6, 47],
+      [68, 17],
+      [66, -51],
+      [107, 83],
+      [50, 8],
+      [63, -53],
+      [37, 9],
+      [98, 130],
+      [141, 53],
+      [70, 77],
+      [84, 129],
+      [-96, 136],
+      [-72, 34],
+      [38, 127],
+      [226, 152],
+      [37, 43],
+      [47, -65],
+      [163, 70],
+      [39, 71],
+      [113, 62],
+      [79, -72],
+      [74, 75],
+      [-27, 85],
+      [162, 16],
+      [65, 46],
+      [151, -20],
+      [64, 53],
+      [19, 138],
+      [-90, 58],
+      [85, 120],
+      [103, 63],
+      [64, 142],
+      [-11, 77],
+      [61, 20],
+      [10, 58],
+      [175, 45],
+      [74, 53],
+      [63, -51],
+      [47, 70],
+      [63, -53],
+      [182, -12],
+      [274, 77],
+      [96, -48],
+      [151, 90],
+      [47, -9],
+      [85, -62],
+      [67, 1],
+      [68, 107],
+      [7, 65],
+      [72, 55],
+      [-35, 53],
+      [21, 100],
+      [77, 28],
+      [107, 121],
+      [168, 113],
+      [39, 86],
+      [27, 109],
+      [65, 104],
+      [161, 148],
+      [137, 5],
+      [49, 92],
+      [129, 85],
+      [139, -24],
+      [140, 29],
+      [35, 107],
+      [81, 60],
+      [38, 109],
+      [108, -48],
+      [75, -54],
+      [122, -119],
+      [69, -99],
+      [0, -105],
+      [162, 45],
+      [103, -50],
+      [108, -6],
+      [95, -61],
+      [63, 44],
+      [129, -20],
+      [52, -64],
+      [122, -18],
+      [161, 3],
+      [-1, -95],
+      [36, -25],
+      [80, 12],
+      [94, -39],
+      [142, -28],
+      [97, 7],
+      [76, 122],
+      [32, 123],
+      [95, -33],
+      [-4, 201],
+      [90, 5],
+      [28, 102],
+      [72, -30],
+      [92, 51],
+      [63, 68],
+      [56, 5],
+      [111, 124],
+      [29, -42],
+      [109, 36],
+      [89, 88],
+      [167, -21],
+      [127, 90],
+      [90, 85],
+      [82, -4],
+      [45, -67],
+      [81, -66],
+      [78, -126],
+      [-6, -82],
+      [45, -36],
+      [68, -116],
+      [36, -23],
+      [93, 6],
+      [43, 53],
+      [137, 57],
+      [39, -63],
+      [-75, -173],
+      [-27, -24],
+      [-189, -25],
+      [-94, -51],
+      [-38, -75],
+      [-68, -42],
+      [-99, -16],
+      [57, -64],
+      [76, -150],
+      [-9, -45],
+      [-78, -72],
+      [47, -73],
+      [135, 54],
+      [145, 160],
+      [116, 78],
+      [196, 12],
+      [197, 97],
+      [-106, -197],
+      [23, -67],
+      [74, 0],
+      [38, -102],
+      [-2, -85],
+      [102, -145],
+      [54, -54],
+      [15, -77],
+      [-65, -100],
+      [-118, -24],
+      [-136, -62],
+      [55, -94],
+      [-112, -88],
+      [-96, -100],
+      [-102, -4],
+      [-66, -70],
+      [80, -48],
+      [14, -70],
+      [-222, -144],
+      [85, -29],
+      [33, -43],
+      [112, 19],
+      [20, -70],
+      [43, -45],
+      [52, 15],
+      [20, 94],
+      [57, 64],
+      [115, -2],
+      [108, 80],
+      [86, 30],
+      [145, -1],
+      [37, -33],
+      [167, -83],
+      [37, -96],
+      [115, -16],
+      [159, 44],
+      [60, -95],
+      [59, -12],
+      [96, -54],
+      [58, 23],
+      [64, 73],
+      [89, 27],
+      [74, -31],
+      [72, -68],
+      [23, -57],
+      [121, -5],
+      [37, -57],
+      [90, 2],
+      [203, -117],
+      [-5, -58],
+      [-91, -87],
+      [18, -100],
+      [-63, -61],
+      [3, -54],
+      [119, -4],
+      [25, -67],
+      [47, -12],
+      [-45, -111],
+      [1, -157],
+      [23, -50],
+      [-100, -5],
+      [-77, 83],
+      [-114, -48],
+      [-212, -201],
+      [-127, -67],
+      [-13, -101],
+      [-64, 23],
+      [-114, -44],
+      [-82, -159],
+      [-109, -37],
+      [-21, -57],
+      [-48, -24],
+      [37, -75],
+      [3, -70],
+      [49, -65],
+      [-53, -96],
+      [-4, -60],
+      [65, -82],
+      [53, -27],
+      [7, -67],
+      [63, -73],
+      [13, -58],
+      [81, -51],
+      [7, -42],
+      [111, -96],
+      [3, -62],
+      [71, -83],
+      [49, -16],
+      [48, -96],
+      [-55, -79],
+      [-84, 43],
+      [-101, -24],
+      [-71, 71],
+      [-100, 58],
+      [-146, 20],
+      [-115, 56],
+      [-6, 45],
+      [59, 41],
+      [-11, 72],
+      [-65, 29],
+      [-13, 60],
+      [-72, 53],
+      [-32, 58],
+      [-136, 23],
+      [-61, 38],
+      [-42, -35],
+      [-161, 16],
+      [-43, -65],
+      [-86, -45],
+      [-68, -62],
+      [-68, 26],
+      [-146, 1],
+      [-92, -35],
+      [-97, -15],
+      [-81, 32],
+      [-71, -53],
+      [-97, 13],
+      [-36, -35],
+      [-119, -35],
+      [-280, -135],
+      [-43, -96],
+      [-83, -102],
+      [-49, -98],
+      [-175, -110],
+      [-136, 4],
+      [-120, -135],
+      [-13, -129],
+      [-53, -48],
+      [-60, 0],
+      [-66, 53],
+      [-81, -72],
+      [-10, -69],
+      [-45, -65],
+      [-145, 39],
+      [-68, -57],
+      [-69, -135],
+      [-39, -11],
+      [-93, -124],
+      [-169, -43],
+      [-97, -51],
+      [-67, 16],
+      [-26, 54],
+      [-50, 0]
+    ],
+    [
+      [47680, 43426],
+      [19, -113],
+      [-55, -29]
+    ],
+    [
+      [47644, 43284],
+      [36, 142]
+    ],
+    [
+      [59387, 46907],
+      [-90, -86],
+      [-83, -51],
+      [-66, -72],
+      [-223, -80],
+      [-62, 59],
+      [-95, -2],
+      [-61, -24],
+      [-77, -118],
+      [-66, -62],
+      [-42, -112],
+      [-64, -26],
+      [-37, -52],
+      [-54, -19],
+      [-99, -73],
+      [-144, -26],
+      [-63, -43],
+      [-104, 19],
+      [-55, -22],
+      [-48, -64],
+      [-67, -9],
+      [-30, -71],
+      [-98, -52],
+      [11, -77],
+      [-40, -124],
+      [-160, -116],
+      [-66, 3],
+      [-25, 191],
+      [-93, -120],
+      [-118, -118],
+      [-23, -66],
+      [7, -100],
+      [-32, -66],
+      [-124, -78],
+      [-83, -153],
+      [-39, -10],
+      [-37, -122],
+      [-50, -39],
+      [-60, -237],
+      [-68, -177],
+      [2, -76],
+      [59, -111],
+      [-50, -49],
+      [-97, -40],
+      [-73, -97],
+      [-68, 40],
+      [-60, -37],
+      [-63, -76],
+      [-35, 74],
+      [41, 147],
+      [-29, 112],
+      [-215, -113],
+      [42, -130],
+      [-63, -56],
+      [-65, -11],
+      [-57, -103],
+      [-171, -122],
+      [-3, -58],
+      [-132, -129],
+      [-143, -58],
+      [-99, -120],
+      [-88, -46],
+      [126, -147],
+      [0, -38],
+      [146, -63],
+      [47, -143],
+      [-58, -83],
+      [49, -80]
+    ],
+    [
+      [55602, 42899],
+      [-155, -107],
+      [-111, -188],
+      [-5, -86],
+      [-33, -113],
+      [-27, -10],
+      [-59, -101],
+      [-63, 4],
+      [-47, -105],
+      [36, -87],
+      [-42, -52],
+      [20, -58],
+      [-44, -79],
+      [-82, -88],
+      [-6, -93],
+      [-79, -33],
+      [-98, 23],
+      [-53, -215],
+      [23, -98],
+      [-31, -44],
+      [27, -151],
+      [-98, -87],
+      [0, -58],
+      [-37, -52],
+      [28, -50],
+      [-36, -108],
+      [15, -41],
+      [-85, -18]
+    ],
+    [
+      [54560, 40804],
+      [-44, 15],
+      [-98, -33],
+      [-53, 40],
+      [-107, -31],
+      [-35, -40],
+      [-95, 92],
+      [-85, 229],
+      [-76, -158],
+      [-86, -222],
+      [-144, -51],
+      [-32, -188],
+      [-134, -17],
+      [-46, -164],
+      [-91, -29],
+      [-55, -60],
+      [-59, 37],
+      [-38, 97],
+      [7, 136],
+      [-276, -3]
+    ],
+    [
+      [53013, 40454],
+      [-185, -6],
+      [133, 322],
+      [-37, 110],
+      [-56, 56],
+      [0, 101]
+    ],
+    [
+      [52868, 41037],
+      [19, 222],
+      [51, 205],
+      [78, 110],
+      [-11, 109],
+      [-34, 108],
+      [-74, 44],
+      [3, 141],
+      [152, -6],
+      [74, -66],
+      [38, 6],
+      [65, -61],
+      [213, 43],
+      [22, 87],
+      [-19, 56],
+      [-76, 23],
+      [-52, 48],
+      [-25, 69],
+      [5, 82]
+    ],
+    [
+      [53297, 42257],
+      [88, 59],
+      [40, 117],
+      [93, -5],
+      [-4, 79],
+      [125, -19],
+      [88, -32],
+      [50, 77],
+      [72, 72],
+      [154, 59],
+      [72, -11],
+      [-22, 152],
+      [49, 42],
+      [-17, 105],
+      [-52, 7],
+      [-54, 89],
+      [-40, 2],
+      [-148, 132],
+      [-96, -31],
+      [-19, 123],
+      [-38, 54],
+      [89, 48],
+      [51, 50],
+      [35, 110],
+      [-161, -74],
+      [-58, 49],
+      [-8, 87],
+      [-131, 35],
+      [-71, 128],
+      [-69, 12],
+      [-39, 123],
+      [-99, 13],
+      [-71, -45],
+      [-225, -43],
+      [-147, -97],
+      [-31, 99],
+      [20, 82],
+      [-31, 90],
+      [5, 68],
+      [61, 89],
+      [0, 47],
+      [97, 69],
+      [-143, 31],
+      [12, 114],
+      [199, 149],
+      [39, 86],
+      [-71, -8],
+      [-139, 39],
+      [-99, -77],
+      [-87, 6],
+      [-89, -37],
+      [-136, 19],
+      [-29, -35],
+      [-97, -26],
+      [-111, 36],
+      [-31, 62],
+      [14, 94],
+      [-124, 49],
+      [-64, -73],
+      [-130, -65],
+      [-17, -66],
+      [-7, -177],
+      [-112, -112],
+      [-47, 19],
+      [-39, 72],
+      [-12, 95],
+      [17, 84],
+      [-137, 12],
+      [-41, -122],
+      [-72, -38],
+      [-110, -229],
+      [-60, -41],
+      [-63, 29],
+      [-177, -51],
+      [-124, -197],
+      [-45, 3],
+      [-69, -57],
+      [-78, 36],
+      [-19, 86],
+      [50, 149],
+      [-109, 22],
+      [-71, -43],
+      [-119, -13],
+      [-39, 53],
+      [-62, -61],
+      [-42, 8],
+      [27, 135],
+      [-102, 7],
+      [-21, 108],
+      [-165, 41],
+      [-29, -22],
+      [-108, 14],
+      [-52, -16],
+      [-41, -77],
+      [-83, 16],
+      [-1, 60],
+      [-59, 26],
+      [-189, -81],
+      [4, 47],
+      [-111, 47],
+      [-16, -43],
+      [-101, -88],
+      [20, 131],
+      [-63, 88],
+      [-63, 45],
+      [-107, -61],
+      [-70, 58],
+      [-70, -9],
+      [-89, -83],
+      [-83, -24],
+      [-162, -23],
+      [-218, 8],
+      [-48, -66],
+      [-63, -31],
+      [-121, -159],
+      [-124, -83],
+      [7, -84],
+      [-73, -82],
+      [-61, -27],
+      [94, -94],
+      [22, -64],
+      [127, -81],
+      [30, -36],
+      [-36, -56],
+      [-254, -61],
+      [-36, -31]
+    ],
+    [
+      [47677, 43442],
+      [36, 147],
+      [-28, 115],
+      [-79, 126],
+      [-16, 53],
+      [32, 51],
+      [-35, 119],
+      [-32, 19],
+      [83, 167],
+      [64, 70],
+      [10, 56],
+      [-119, -5],
+      [47, 107],
+      [-60, 50],
+      [-88, 182],
+      [9, 29],
+      [-91, 132],
+      [-66, 19]
+    ],
+    [
+      [47344, 44879],
+      [-15, 143],
+      [12, 73],
+      [55, 83],
+      [85, 82],
+      [2, 52],
+      [99, 31],
+      [67, 41],
+      [-27, 60],
+      [54, 88],
+      [-37, 91],
+      [27, 191],
+      [27, 32],
+      [-13, 230],
+      [-32, 47]
+    ],
+    [
+      [47648, 46123],
+      [12, 76],
+      [59, -29],
+      [151, -3],
+      [97, 26],
+      [117, -11],
+      [294, 95],
+      [-14, 78],
+      [27, 66],
+      [69, 59],
+      [188, -17],
+      [75, 59],
+      [20, 45],
+      [121, 14],
+      [338, -237],
+      [147, -18],
+      [41, -40],
+      [67, 13],
+      [45, -28],
+      [90, 16],
+      [343, 9],
+      [218, 22],
+      [127, -20],
+      [77, 90],
+      [90, -23],
+      [111, 7],
+      [180, -15],
+      [72, -46],
+      [91, -13],
+      [95, 51],
+      [63, 78],
+      [154, -101],
+      [32, -5],
+      [216, 35],
+      [72, 38],
+      [122, -38],
+      [105, 18],
+      [165, 91],
+      [66, 57],
+      [47, 83],
+      [96, 9],
+      [125, -66],
+      [70, -68],
+      [153, -24],
+      [93, 48],
+      [23, 58]
+    ],
+    [
+      [43798, 45734],
+      [58, -53],
+      [73, 21],
+      [44, 52],
+      [105, -28],
+      [-119, -88],
+      [32, -51],
+      [109, -53],
+      [27, -77],
+      [-58, -60],
+      [18, -34],
+      [80, 5],
+      [34, -61],
+      [-62, -30],
+      [-75, -79],
+      [-5, -33],
+      [-105, -64],
+      [-71, -21],
+      [-153, -165],
+      [-83, -9],
+      [-84, -86],
+      [-65, 33],
+      [0, -105],
+      [-21, -58],
+      [-103, 16],
+      [-156, -108],
+      [-35, -140],
+      [10, -50],
+      [-52, -75],
+      [34, -135],
+      [194, -45],
+      [-51, -44],
+      [50, -42],
+      [-21, -79],
+      [81, -51],
+      [92, -92],
+      [157, -76],
+      [-33, -104],
+      [6, -106],
+      [-37, -28],
+      [11, -68],
+      [92, -93],
+      [-15, -64],
+      [-127, 20],
+      [-107, 101],
+      [-69, -5],
+      [-52, -66],
+      [-67, -10],
+      [-14, -86],
+      [-65, -2],
+      [-56, -71],
+      [-48, 34],
+      [-52, -123],
+      [57, -54],
+      [-16, -78],
+      [104, -81],
+      [47, -14],
+      [-2, -102],
+      [-59, -44],
+      [15, -70],
+      [-92, 38]
+    ],
+    [
+      [43098, 42693],
+      [-9, 60],
+      [-167, 23],
+      [-52, 125],
+      [-169, 2],
+      [-88, 52],
+      [-43, -6],
+      [-20, -81],
+      [-125, -2],
+      [31, -69],
+      [-51, -57],
+      [-1, -106],
+      [-176, 76],
+      [-52, -48],
+      [-99, 37],
+      [-71, -309],
+      [-71, 35],
+      [-55, -43],
+      [-49, 9],
+      [-76, -59],
+      [-72, -124],
+      [21, -45],
+      [-13, -169],
+      [23, -75],
+      [-24, -54],
+      [-91, -34],
+      [-63, -91],
+      [12, -67],
+      [-18, -80],
+      [16, -46],
+      [-60, -125],
+      [-22, -108],
+      [-75, -41],
+      [-99, 59],
+      [-64, -3],
+      [-84, -101],
+      [-96, -84],
+      [-38, 41],
+      [-62, -10],
+      [-38, 119],
+      [-83, -1],
+      [-18, -59],
+      [-170, -66],
+      [-50, 15],
+      [-100, 75],
+      [-37, -62],
+      [-63, -31],
+      [-18, -56],
+      [-51, 1],
+      [-73, -119],
+      [-3, -137],
+      [-50, -7],
+      [-9, -104],
+      [-102, 5],
+      [-93, 85],
+      [-43, 61],
+      [-75, -5],
+      [-57, 84],
+      [41, 74],
+      [-43, 180],
+      [-169, 11],
+      [-110, -17],
+      [-89, 65],
+      [-16, 70],
+      [34, 77],
+      [-62, 140],
+      [-93, 36],
+      [-33, 62],
+      [-92, -29],
+      [-123, -78],
+      [-87, 50],
+      [-72, 108],
+      [-112, 21],
+      [-36, -35],
+      [-74, 11],
+      [-89, 55],
+      [-73, -151],
+      [3, -67],
+      [-98, -124],
+      [26, -128],
+      [-16, -87],
+      [-124, 7],
+      [-70, 42],
+      [-18, -88],
+      [-75, -76],
+      [-66, -6],
+      [-21, 49],
+      [-135, -34],
+      [-66, 20],
+      [-45, -28],
+      [-227, -31],
+      [-122, -111],
+      [-156, -16],
+      [36, -81],
+      [-120, -47],
+      [-49, -63],
+      [-40, 62],
+      [-93, 39],
+      [-92, -30],
+      [-48, -84],
+      [-143, -9],
+      [-89, 198],
+      [-79, 28],
+      [12, 96],
+      [-28, 31],
+      [-88, -46],
+      [-83, -20],
+      [-37, -54],
+      [-102, -38],
+      [-45, -145],
+      [-126, 17],
+      [-63, 26],
+      [-58, -89],
+      [-54, 5],
+      [-9, -98],
+      [-52, -108],
+      [-63, 50],
+      [-23, 70],
+      [-82, -17],
+      [12, 64],
+      [-61, 20],
+      [-28, 51],
+      [-102, 14],
+      [-12, 81],
+      [-82, 46],
+      [2, 69],
+      [61, 21],
+      [-6, 75],
+      [-57, 101],
+      [-52, -4],
+      [-24, -61],
+      [-83, 29],
+      [-105, -19],
+      [-139, -140],
+      [-46, 52],
+      [2, 69],
+      [-66, 100],
+      [-29, 81],
+      [-120, 60],
+      [-43, -96],
+      [-97, -113],
+      [-133, -34],
+      [-151, -7],
+      [-181, -58],
+      [-76, 25],
+      [-181, -6],
+      [-127, 30],
+      [-97, 2]
+    ],
+    [
+      [33666, 41090],
+      [42, 51],
+      [38, 154],
+      [-81, 83],
+      [34, 63],
+      [-52, 62],
+      [-21, 74],
+      [-59, -10],
+      [-92, 97],
+      [-54, 21],
+      [8, 113],
+      [-86, 161],
+      [13, 121],
+      [-29, 20],
+      [0, 108],
+      [-53, 11],
+      [8, 76],
+      [66, 233],
+      [-23, 22],
+      [14, 93],
+      [85, 19],
+      [47, 98],
+      [112, 6],
+      [44, 70],
+      [61, 9],
+      [80, 63],
+      [145, 44],
+      [101, 72],
+      [66, 14],
+      [51, 59],
+      [85, 21],
+      [75, -13],
+      [45, 79],
+      [78, 10],
+      [-10, 60],
+      [192, 228],
+      [51, 13],
+      [154, 113],
+      [137, 49],
+      [-15, 135],
+      [84, 65],
+      [131, -5],
+      [59, -42],
+      [11, -72],
+      [39, -19],
+      [161, -3],
+      [62, 21],
+      [16, 151],
+      [63, 15],
+      [86, -34],
+      [18, -68],
+      [103, 34],
+      [39, -67],
+      [51, 13],
+      [59, -31],
+      [93, 54],
+      [-7, 82],
+      [156, 12],
+      [-57, 44],
+      [45, 73],
+      [-163, 114],
+      [-40, 84],
+      [-49, -13],
+      [-46, 39],
+      [-119, 8],
+      [-51, 90],
+      [-125, 65],
+      [-131, -26],
+      [-113, 80],
+      [-85, 41],
+      [-64, -4],
+      [-12, 61],
+      [-67, 50],
+      [-100, 115],
+      [-93, 7],
+      [-46, 146],
+      [-57, 63],
+      [70, 97],
+      [87, -17],
+      [81, 40],
+      [6, 46],
+      [98, -2],
+      [53, 129],
+      [-32, 49],
+      [9, 83],
+      [-241, 37],
+      [-56, 41],
+      [-44, 79],
+      [-72, -16],
+      [-178, 35],
+      [10, 131],
+      [52, 42],
+      [77, -30],
+      [181, 73],
+      [3, 42],
+      [78, 113],
+      [-10, 70],
+      [158, -5],
+      [33, -33],
+      [77, 0],
+      [154, -58],
+      [55, 38],
+      [258, 27],
+      [-27, 101],
+      [-168, 30],
+      [-16, 74],
+      [-45, 86],
+      [-123, -52],
+      [-39, 61],
+      [61, 119],
+      [0, 84],
+      [-52, 57],
+      [-114, -38],
+      [-17, -43],
+      [-82, 49],
+      [-3, 68],
+      [-83, -17],
+      [-89, 32],
+      [-10, 93],
+      [-27, 39],
+      [31, 97],
+      [-55, 125],
+      [-65, 38],
+      [57, 79],
+      [-20, 22],
+      [-124, -43],
+      [-30, 78],
+      [96, 143],
+      [-81, 130],
+      [-102, 32],
+      [-13, 58],
+      [50, 36],
+      [-24, 87],
+      [-117, -44],
+      [8, 92]
+    ],
+    [
+      [34458, 47619],
+      [69, 17],
+      [39, 72],
+      [-71, 6],
+      [-11, 84],
+      [139, 48],
+      [32, -19],
+      [234, 4],
+      [37, 84],
+      [58, 24],
+      [29, 74],
+      [93, -11],
+      [-4, -72],
+      [231, -78],
+      [82, -154],
+      [221, -40],
+      [108, 5],
+      [99, -27],
+      [300, -52],
+      [147, -263],
+      [-30, -120],
+      [17, -62],
+      [-17, -94],
+      [-65, -63],
+      [-7, -65],
+      [250, -103],
+      [81, -17],
+      [53, 58],
+      [82, -29],
+      [9, -47],
+      [114, -46],
+      [113, -17],
+      [36, -47],
+      [-17, -54],
+      [73, -51],
+      [87, -8],
+      [-32, -75],
+      [33, -19],
+      [148, 50],
+      [171, -6],
+      [10, -64],
+      [-36, -62],
+      [45, -106],
+      [300, -64],
+      [90, 44],
+      [71, 71],
+      [100, -22],
+      [95, 38],
+      [103, 92],
+      [141, 44],
+      [161, -33],
+      [90, -53],
+      [29, -56],
+      [-24, -281],
+      [52, -80],
+      [116, -35],
+      [39, -50],
+      [74, 16],
+      [16, -95],
+      [72, 60],
+      [141, 81],
+      [3, 45],
+      [158, 40],
+      [91, -22],
+      [187, -109],
+      [82, 11],
+      [11, -49],
+      [74, -3],
+      [48, 55],
+      [121, 9],
+      [192, -80],
+      [133, -40],
+      [95, -60],
+      [95, -8],
+      [50, -87],
+      [135, -46],
+      [13, -33],
+      [141, -42],
+      [65, -53],
+      [47, 6],
+      [49, 72],
+      [141, -47],
+      [136, 65],
+      [-4, 47],
+      [80, 5],
+      [6, 63],
+      [182, 35],
+      [60, 84],
+      [64, 40],
+      [44, -313],
+      [156, -107],
+      [52, 24],
+      [130, 0],
+      [46, -21],
+      [-1, -73],
+      [105, -15],
+      [60, -45],
+      [39, 31],
+      [-5, 62],
+      [71, 72],
+      [86, 7],
+      [86, 42],
+      [109, -22],
+      [80, -58],
+      [77, -31],
+      [141, 3],
+      [127, 78],
+      [53, -45],
+      [86, 27],
+      [43, 114],
+      [124, -75],
+      [21, 63],
+      [92, 32],
+      [53, -71],
+      [18, -67],
+      [73, -48],
+      [135, -35],
+      [149, 129],
+      [19, 68],
+      [-18, 114],
+      [18, 45]
+    ],
+    [
+      [18981, 55329],
+      [-55, -38],
+      [-109, 49],
+      [-66, 53],
+      [-54, 108],
+      [90, 39],
+      [61, 51],
+      [152, -82]
+    ],
+    [
+      [19000, 55509],
+      [-12, -55],
+      [30, -59],
+      [-37, -66]
+    ],
+    [
+      [34775, 36452],
+      [-58, -43],
+      [144, -88],
+      [-3, -73],
+      [-57, -66],
+      [-29, -80],
+      [-75, -27],
+      [-113, 4],
+      [-41, -46],
+      [-79, 9],
+      [-85, -65],
+      [-112, -134],
+      [-57, -38],
+      [-115, 10],
+      [-104, -48],
+      [-59, -65],
+      [-29, -90],
+      [-107, -133],
+      [95, -80],
+      [-37, -24],
+      [-99, 1],
+      [-10, -77],
+      [32, -36],
+      [-29, -100],
+      [143, -121],
+      [-64, -91],
+      [28, -44],
+      [-23, -53],
+      [-93, 5],
+      [12, -88],
+      [-100, 34],
+      [-34, -80],
+      [18, -75],
+      [-61, -109],
+      [-80, -45],
+      [46, -46],
+      [93, -36],
+      [-44, -78],
+      [-48, 29],
+      [0, 72],
+      [-133, -85],
+      [-41, -93],
+      [-44, -201],
+      [18, -96],
+      [44, -18],
+      [52, -85],
+      [0, -88],
+      [-42, -49],
+      [-231, 81],
+      [-33, -100],
+      [28, -146],
+      [-55, 18],
+      [-62, -59],
+      [10, -63],
+      [-25, -52],
+      [-32, -143],
+      [-69, -18],
+      [-92, -71],
+      [-174, 42],
+      [-66, 61],
+      [-67, 28],
+      [-171, 12],
+      [-51, -32],
+      [-86, 33],
+      [-127, -51],
+      [-54, 40],
+      [-161, -1],
+      [-107, -20],
+      [20, -110],
+      [-79, -88],
+      [29, -63],
+      [-88, -115],
+      [-64, -105],
+      [-154, -96],
+      [-12, -123],
+      [-136, -47],
+      [-31, 84],
+      [-74, 3],
+      [-47, 46],
+      [-28, -100],
+      [3, -190],
+      [23, -69],
+      [-5, -69],
+      [49, -87],
+      [4, -73],
+      [-55, -125],
+      [-41, -50],
+      [55, -71],
+      [70, -31],
+      [16, -132],
+      [69, 11],
+      [22, -73],
+      [-43, -53],
+      [1, -59],
+      [-36, -97],
+      [63, -59],
+      [12, -72],
+      [-50, -35],
+      [18, -142],
+      [-76, -133],
+      [26, -59],
+      [11, -162],
+      [176, -44],
+      [58, -38],
+      [91, -3],
+      [85, -52],
+      [71, -6],
+      [79, 28],
+      [110, -15],
+      [23, -22],
+      [-23, -177],
+      [23, -134],
+      [-27, -51],
+      [-116, -3],
+      [-59, -91],
+      [-89, -24],
+      [-15, 121],
+      [56, 75],
+      [-148, 50],
+      [-69, 7],
+      [-50, 36],
+      [-73, 5],
+      [-118, -49],
+      [-109, -119],
+      [-90, 123],
+      [-81, 204],
+      [-68, 61],
+      [-102, -39],
+      [-116, 73],
+      [-34, -5],
+      [-128, 91],
+      [-95, -70],
+      [-90, 130],
+      [-87, 54],
+      [-98, -129],
+      [-65, -46],
+      [-50, -170],
+      [47, -117],
+      [87, -48],
+      [137, -55],
+      [-7, -43],
+      [50, -93],
+      [159, -11],
+      [11, -87],
+      [-44, -115],
+      [31, -184],
+      [-36, -95],
+      [24, -103],
+      [-52, -85],
+      [153, 18],
+      [11, -112],
+      [49, -86],
+      [113, 13],
+      [28, -40],
+      [-37, -107],
+      [-53, -41],
+      [83, -37],
+      [-26, -96],
+      [-36, -59],
+      [8, -159],
+      [51, -87],
+      [-23, -58],
+      [50, -40],
+      [38, -88],
+      [-31, -42],
+      [62, -90],
+      [38, -256],
+      [-57, 4],
+      [-95, -48],
+      [-28, -91],
+      [16, -51],
+      [-43, -131],
+      [-119, -40],
+      [-28, -102],
+      [-99, 16],
+      [-173, -90],
+      [-17, -118],
+      [-70, 16],
+      [-60, -35],
+      [146, -79],
+      [-17, -63],
+      [-101, -5],
+      [-9, -67],
+      [-74, -25],
+      [-30, -66],
+      [-192, -179],
+      [-38, -153],
+      [-191, -14],
+      [5, -54],
+      [-147, -34],
+      [-57, -65],
+      [-87, -32],
+      [-51, -174],
+      [39, -62],
+      [-30, -150],
+      [-77, -147],
+      [6, -127],
+      [-71, -119],
+      [-15, -107],
+      [-92, 27],
+      [5, -94],
+      [-30, -49],
+      [2, -44]
+    ],
+    [
+      [29020, 25553],
+      [-2, -8],
+      [-22, 5],
+      [-15, 6],
+      [-22, 5],
+      [-28, 3],
+      [-21, -1],
+      [-44, 3],
+      [-134, -1],
+      [-58, 33],
+      [-16, 7],
+      [-16, 9],
+      [-47, 32],
+      [-34, 5],
+      [-37, 8],
+      [-136, -82],
+      [-19, -14],
+      [-4, -18],
+      [-17, -19],
+      [-13, -20],
+      [-39, -8],
+      [-24, 2],
+      [-28, 14],
+      [-43, 62],
+      [-18, 50],
+      [-3, 25],
+      [-3, 36],
+      [-16, 114],
+      [-6, 12],
+      [-16, 9],
+      [-41, 278],
+      [-39, 111],
+      [4, 29],
+      [-5, 30],
+      [4, 15],
+      [40, 34],
+      [11, 13],
+      [5, 19],
+      [-2, 15],
+      [-1, 23],
+      [-43, -3],
+      [-9, -7],
+      [-13, -16],
+      [-16, -5],
+      [-2, -6],
+      [-8, -7],
+      [-44, -25],
+      [-25, -9],
+      [-85, -4],
+      [-29, 156],
+      [27, -4],
+      [10, 5],
+      [3, 6],
+      [1, 9],
+      [-13, 33],
+      [-6, 10],
+      [-77, 18],
+      [-15, -20],
+      [3, -76],
+      [-45, -60],
+      [-78, -7],
+      [-19, 2],
+      [-20, 2],
+      [-23, 16],
+      [-4, 52],
+      [-1, 26],
+      [3, 31],
+      [51, 24],
+      [61, 32],
+      [-136, 273],
+      [1, 15],
+      [3, 10],
+      [-4, 9],
+      [-9, 8],
+      [-5, 8],
+      [-1, 6],
+      [0, 4],
+      [29, 38],
+      [-23, 14],
+      [-2, -1],
+      [-10, -8],
+      [-48, 31],
+      [9, 35],
+      [8, 4],
+      [-9, 11],
+      [-6, -1],
+      [-20, 10],
+      [-5, 20],
+      [-24, 18],
+      [-8, 3],
+      [-8, 8],
+      [-26, 15],
+      [-40, 107],
+      [-69, 61],
+      [-152, 95],
+      [-4, 6],
+      [-2, 2],
+      [-1, 7],
+      [-1, 2],
+      [-14, 17],
+      [-9, 6],
+      [-6, 9],
+      [-3, 13],
+      [-7, 6],
+      [-28, 5],
+      [-21, 21],
+      [-84, -1],
+      [-151, -76],
+      [-32, 26],
+      [-31, -32],
+      [-9, -6],
+      [-15, -4],
+      [-7, 4],
+      [-5, 5],
+      [-11, 14],
+      [-27, 58],
+      [-9, 34],
+      [-16, 37],
+      [-18, 62],
+      [-7, 15],
+      [-41, 58],
+      [-15, 6],
+      [-8, 11]
+    ],
+    [
+      [26562, 27660],
+      [-58, 71],
+      [68, 31],
+      [61, 72],
+      [102, 41],
+      [-23, 104],
+      [-157, 195],
+      [8, 108],
+      [60, 96],
+      [-14, 41],
+      [60, 42],
+      [34, 84],
+      [-23, 55],
+      [54, 88],
+      [78, 42],
+      [-9, 84],
+      [25, 60],
+      [68, 16],
+      [58, 46],
+      [55, 136],
+      [95, 45],
+      [100, 114],
+      [54, -47],
+      [4, -56],
+      [40, -95],
+      [30, -17],
+      [103, 51],
+      [46, -33],
+      [-4, -59],
+      [145, 0],
+      [37, 49],
+      [160, 109],
+      [-58, 64],
+      [-54, 101],
+      [103, 37],
+      [72, 2],
+      [54, 51],
+      [-29, 124],
+      [-59, 12],
+      [-72, 95],
+      [-75, -12],
+      [-46, 57],
+      [-95, 54],
+      [-130, 1],
+      [-13, 38],
+      [21, 155],
+      [-71, 61],
+      [-113, 45],
+      [-93, 85],
+      [10, 84],
+      [-58, 41],
+      [-92, -2],
+      [-52, -81],
+      [-115, 2],
+      [132, 79],
+      [33, 67],
+      [49, 27],
+      [-17, 58],
+      [-63, 22],
+      [-37, -22],
+      [-91, 37],
+      [8, 53],
+      [82, 46],
+      [57, -44],
+      [111, -6],
+      [53, 117],
+      [-26, 52],
+      [30, 143],
+      [-13, 102],
+      [-37, 33],
+      [-158, 48],
+      [-54, -34],
+      [-73, 32],
+      [2, 87],
+      [41, 13],
+      [-67, 126],
+      [162, 62],
+      [119, 2],
+      [69, 86],
+      [164, 44],
+      [-32, 117],
+      [-35, 36],
+      [38, 95],
+      [21, 364],
+      [-75, 55],
+      [-130, -69],
+      [-43, 6],
+      [-41, 69],
+      [18, 53],
+      [64, 51],
+      [131, 39],
+      [-40, 76],
+      [-37, 185],
+      [28, 65],
+      [-14, 160],
+      [-32, 98],
+      [-167, -7],
+      [-78, 188],
+      [54, 92],
+      [-29, 115],
+      [49, 170],
+      [114, 25],
+      [25, 46],
+      [89, 6],
+      [93, 49],
+      [78, 64],
+      [74, 130],
+      [-35, 45]
+    ],
+    [
+      [27418, 33700],
+      [61, 97],
+      [33, 96],
+      [68, 134],
+      [-18, 55],
+      [19, 99],
+      [-47, 151],
+      [27, 31],
+      [-31, 125],
+      [36, 51],
+      [5, 87],
+      [30, 59],
+      [49, 3],
+      [45, -42],
+      [63, 18],
+      [45, 132],
+      [17, 164],
+      [-31, 26],
+      [18, 138],
+      [77, 150],
+      [23, 114],
+      [42, 94],
+      [42, 45],
+      [73, -18],
+      [33, -72],
+      [-4, -54],
+      [78, 7],
+      [11, 76],
+      [-38, 84],
+      [64, 4],
+      [22, 151],
+      [-14, 73],
+      [64, 34],
+      [79, 6],
+      [64, 110],
+      [4, 115],
+      [-32, 91],
+      [20, 134],
+      [84, 34],
+      [49, 74],
+      [52, -60],
+      [65, -24],
+      [124, 109],
+      [79, -21],
+      [15, 80],
+      [123, -44],
+      [22, -140],
+      [56, 9],
+      [7, 58],
+      [63, 51],
+      [74, -6],
+      [78, 101],
+      [92, -11],
+      [13, 44],
+      [101, -34],
+      [89, 92],
+      [-18, 72],
+      [82, 96],
+      [45, -7],
+      [83, 53],
+      [64, 17],
+      [-42, 116],
+      [83, 93],
+      [-52, 157],
+      [19, 90],
+      [136, 22],
+      [65, 25],
+      [116, 126],
+      [59, 20],
+      [-7, 122],
+      [-41, 72],
+      [43, 86],
+      [92, 17],
+      [106, -9],
+      [73, 80],
+      [120, -28],
+      [77, 87],
+      [-30, 54],
+      [11, 145],
+      [60, 98],
+      [43, 34],
+      [-4, 87],
+      [-60, 23],
+      [-49, 68],
+      [-73, 3],
+      [-14, 80],
+      [-165, -32],
+      [0, 61],
+      [-116, 32],
+      [2, 54],
+      [-46, 43],
+      [-3, 71],
+      [-72, 82],
+      [-81, -32],
+      [-115, -16],
+      [-65, 86],
+      [-91, 9],
+      [-59, 29],
+      [-80, -96],
+      [-85, 19],
+      [-51, -92],
+      [-57, 44],
+      [-7, 99],
+      [-55, 3],
+      [-16, 78],
+      [72, 26],
+      [23, 141],
+      [66, -2],
+      [14, 54],
+      [52, 23],
+      [31, 64],
+      [-39, 84],
+      [-68, 47],
+      [9, 62],
+      [-37, 72],
+      [-60, 41],
+      [20, 115],
+      [119, 52],
+      [78, -92],
+      [12, -52],
+      [53, -52],
+      [101, -62],
+      [86, -11],
+      [181, 80],
+      [49, 67],
+      [76, -47],
+      [109, 24],
+      [76, -47],
+      [23, -51],
+      [195, -6],
+      [143, 32],
+      [71, -56],
+      [52, 33],
+      [93, -32],
+      [200, -16],
+      [165, 22],
+      [48, -52],
+      [68, -9],
+      [62, 23],
+      [8, 75],
+      [83, -9],
+      [96, 37],
+      [68, 73],
+      [-12, 83],
+      [103, 43],
+      [102, -6],
+      [131, 94]
+    ],
+    [
+      [32148, 39786],
+      [90, -37],
+      [71, -85],
+      [160, -87],
+      [182, 24],
+      [54, -18],
+      [146, 34],
+      [39, 46],
+      [98, 26],
+      [47, 91],
+      [11, 67],
+      [132, 78],
+      [36, 125],
+      [68, 56]
+    ],
+    [
+      [33282, 40106],
+      [131, -4],
+      [39, -41],
+      [54, 4],
+      [49, -95],
+      [136, -40],
+      [7, -135],
+      [58, -77],
+      [23, -94],
+      [45, -6],
+      [25, -66],
+      [165, -42],
+      [86, -83],
+      [75, -122],
+      [6, -116],
+      [-39, -51],
+      [82, -78],
+      [51, -114],
+      [101, -34],
+      [251, -51],
+      [-12, 71],
+      [18, 67],
+      [83, 19],
+      [98, -71],
+      [5, -129],
+      [-30, -103],
+      [-86, -120],
+      [21, -49],
+      [-27, -121],
+      [87, -50],
+      [31, 53],
+      [50, -4],
+      [59, -101],
+      [-43, -206],
+      [12, -103],
+      [-59, -99],
+      [82, -108],
+      [47, 6],
+      [94, -107],
+      [-13, -75],
+      [43, -99],
+      [52, -40],
+      [24, 120],
+      [84, -107],
+      [135, -35],
+      [117, 41],
+      [85, -9],
+      [41, -84],
+      [-29, -151],
+      [-122, -56],
+      [-23, -116],
+      [-54, -82],
+      [-55, 3],
+      [-77, -69],
+      [15, -107],
+      [-181, -126],
+      [-153, 5],
+      [-71, -98],
+      [-94, -57],
+      [-6, -112]
+    ],
+    [
+      [11058, 30906],
+      [6, -57],
+      [-83, -106],
+      [-40, 50],
+      [-100, 13],
+      [-42, 34],
+      [-89, 7],
+      [-58, -28],
+      [-60, 77],
+      [-69, 30],
+      [28, 62],
+      [-34, 127]
+    ],
+    [
+      [10517, 31115],
+      [-2, 50],
+      [-63, 29],
+      [-37, 50],
+      [48, 58],
+      [63, -50],
+      [35, 47],
+      [122, 1],
+      [20, 76],
+      [79, 3],
+      [23, 68],
+      [89, -89],
+      [78, -12],
+      [-89, -120],
+      [-77, -73],
+      [-69, -17],
+      [5, -134],
+      [46, 24],
+      [58, -35],
+      [71, 48],
+      [-23, 51],
+      [87, 2],
+      [102, -36],
+      [-63, -59],
+      [4, -73],
+      [34, -18]
+    ],
+    [
+      [10275, 31713],
+      [-49, -78],
+      [16, -70],
+      [-52, -83]
+    ],
+    [
+      [10190, 31482],
+      [15, 145],
+      [70, 86]
+    ],
+    [
+      [6102, 32310],
+      [33, -60],
+      [-188, 11]
+    ],
+    [
+      [5947, 32261],
+      [17, 36],
+      [86, 29],
+      [52, -16]
+    ],
+    [
+      [5864, 32366],
+      [1, -3]
+    ],
+    [
+      [5865, 32363],
+      [-32, -51],
+      [67, -27]
+    ],
+    [
+      [5900, 32285],
+      [-3, -29],
+      [-275, 33],
+      [-127, 67],
+      [-28, 33]
+    ],
+    [
+      [5467, 32389],
+      [24, 65],
+      [-12, 121],
+      [33, 90],
+      [52, 68],
+      [4, 57],
+      [59, 120],
+      [58, -64],
+      [132, 17],
+      [104, -30],
+      [47, -121],
+      [-38, -69],
+      [-96, -36],
+      [21, -61],
+      [89, 3],
+      [7, -88],
+      [-68, -30],
+      [-19, -65]
+    ],
+    [
+      [20120, 50296],
+      [-68, -42],
+      [-63, 17],
+      [-111, -66],
+      [29, -94],
+      [-77, -36],
+      [-88, -11],
+      [-51, 63],
+      [-53, 15],
+      [-37, 79],
+      [13, 40],
+      [-77, 61],
+      [-34, -15],
+      [-91, 45],
+      [-22, -43],
+      [-82, 30],
+      [-52, -32],
+      [-143, 24],
+      [-92, 76],
+      [-11, 59],
+      [62, 46],
+      [37, 82],
+      [72, 0],
+      [28, 73],
+      [50, 33],
+      [-11, 77],
+      [20, 69],
+      [-28, 131],
+      [11, 40],
+      [82, 37],
+      [114, 0],
+      [40, 84],
+      [173, -18],
+      [24, -55],
+      [105, 59]
+    ],
+    [
+      [19789, 51124],
+      [67, -73],
+      [-51, -77],
+      [144, -148],
+      [102, -47],
+      [47, -60],
+      [-36, -109],
+      [55, -83],
+      [-64, -28],
+      [-26, -82],
+      [93, -121]
+    ],
+    [
+      [13058, 20567],
+      [104, 4],
+      [5, 42],
+      [107, -46],
+      [68, 9],
+      [27, -86],
+      [-29, -118],
+      [73, -92],
+      [-68, -84],
+      [57, -108],
+      [-15, -44],
+      [32, -99],
+      [84, -32],
+      [-11, -87],
+      [40, -85],
+      [-143, -43],
+      [-28, -75],
+      [84, -32],
+      [44, -102],
+      [-71, -94],
+      [-19, -96],
+      [47, -143],
+      [-89, -113],
+      [26, -36],
+      [-70, -67],
+      [-83, -20],
+      [-39, 36],
+      [-82, -80],
+      [-79, -18],
+      [-35, -35]
+    ],
+    [
+      [12995, 18823],
+      [-120, 52],
+      [15, 90],
+      [-37, 97],
+      [-87, 44],
+      [-58, 110],
+      [-79, 29],
+      [-17, 74],
+      [39, 21],
+      [16, 65],
+      [-74, 290],
+      [-43, 136],
+      [-47, 89],
+      [-70, -23],
+      [-72, 37],
+      [17, 65],
+      [60, 10],
+      [85, -24],
+      [10, 75],
+      [-56, -6],
+      [-28, 55],
+      [-104, 21],
+      [8, 78],
+      [-83, -9],
+      [-28, 127],
+      [-51, 100],
+      [2, 66],
+      [-99, 237],
+      [-16, 10]
+    ],
+    [
+      [12078, 20739],
+      [134, -13],
+      [17, 27],
+      [83, -17],
+      [74, 39],
+      [99, 133],
+      [95, -128],
+      [81, -2],
+      [57, -125],
+      [10, -135],
+      [58, -46],
+      [172, 40],
+      [100, 55]
+    ],
+    [
+      [5865, 32363],
+      [35, -78]
+    ],
+    [
+      [9871, 33296],
+      [62, -51],
+      [-64, -66],
+      [-24, 100],
+      [26, 17]
+    ],
+    [
+      [3167, 36310],
+      [63, -79],
+      [-44, -43],
+      [-89, 41],
+      [-4, 49],
+      [74, 32]
+    ],
+    [
+      [3807, 36527],
+      [29, -18],
+      [27, -51],
+      [-63, -27],
+      [-45, 1],
+      [11, 76],
+      [41, 19]
+    ],
+    [
+      [4006, 36619],
+      [39, -58],
+      [-42, -32],
+      [-97, -20],
+      [6, 76],
+      [94, 34]
+    ],
+    [
+      [815, 38285],
+      [119, -50],
+      [6, -42],
+      [-93, -30],
+      [-71, 13],
+      [39, 109]
+    ],
+    [
+      [628, 38670],
+      [48, -53],
+      [-21, -122],
+      [-41, 3],
+      [-50, 140],
+      [64, 32]
+    ],
+    [
+      [648, 38939],
+      [7, -50],
+      [-95, -93],
+      [-17, 46],
+      [105, 97]
+    ],
+    [
+      [376, 39421],
+      [87, -47],
+      [62, 26],
+      [-17, -156],
+      [-61, -170],
+      [-70, -63],
+      [-26, -68],
+      [-115, -45],
+      [-19, 61],
+      [-146, -32],
+      [-71, 45],
+      [44, 71],
+      [136, 19],
+      [26, 46],
+      [127, 146],
+      [-9, 60],
+      [52, 107]
+    ],
+    [
+      [265, 39464],
+      [10, -5],
+      [21, -42],
+      [-14, -90],
+      [19, -70],
+      [-64, -18],
+      [-60, -50],
+      [-8, 127],
+      [30, 86],
+      [43, 16],
+      [1, 15],
+      [-17, 15],
+      [39, 16]
+    ],
+    [
+      [680, 39481],
+      [51, -30],
+      [-16, -68],
+      [10, -78],
+      [-65, -41],
+      [-111, 14],
+      [42, 71],
+      [-19, 74],
+      [108, 58]
+    ],
+    [
+      [458, 39590],
+      [47, -17],
+      [48, -85],
+      [-85, -103],
+      [-127, 109],
+      [117, 96]
+    ],
+    [
+      [576, 39729],
+      [15, -9],
+      [-17, -96],
+      [8, -26],
+      [-54, -38],
+      [-23, 16],
+      [-47, 17],
+      [-88, -45],
+      [1, 99],
+      [66, 8],
+      [75, 34],
+      [15, 27],
+      [49, 13]
+    ],
+    [
+      [765, 39747],
+      [80, -88],
+      [-49, -75],
+      [-63, -43],
+      [-67, 24],
+      [-8, 55],
+      [96, 60],
+      [11, 67]
+    ],
+    [
+      [648, 39855],
+      [43, -47],
+      [37, -111],
+      [-142, -99],
+      [4, 109],
+      [11, 11],
+      [-29, 14],
+      [-42, -4],
+      [42, 99],
+      [76, 28]
+    ],
+    [
+      [534, 39861],
+      [4, -83],
+      [-65, -90],
+      [-114, -28],
+      [-29, -206],
+      [-69, 13],
+      [-26, -10],
+      [-12, -8],
+      [0, -5],
+      [16, -11],
+      [-1, -14],
+      [-47, -16],
+      [-27, -86],
+      [-14, -112],
+      [-38, -71],
+      [-100, 116],
+      [73, 73],
+      [-36, 112],
+      [98, 110],
+      [55, 132],
+      [103, -4],
+      [36, 24],
+      [8, 83],
+      [62, 55],
+      [56, -38],
+      [67, 64]
+    ],
+    [
+      [13491, 37705],
+      [58, -75],
+      [47, -117],
+      [-64, -35],
+      [88, -127],
+      [82, 20],
+      [97, -11],
+      [35, -127],
+      [-31, -101],
+      [-56, -13],
+      [0, -55],
+      [-80, -127],
+      [-41, -201],
+      [-45, -17],
+      [-188, 26],
+      [-92, -78],
+      [-50, -107],
+      [-123, -82],
+      [-66, -18],
+      [-96, 58],
+      [-87, -17],
+      [-2, -58],
+      [92, -20],
+      [-16, -99],
+      [49, 8],
+      [10, -82],
+      [40, -29],
+      [72, 44],
+      [179, -2],
+      [59, -34],
+      [21, -73],
+      [-74, -37],
+      [-92, -78],
+      [-16, -49],
+      [-125, 24],
+      [-49, 91],
+      [-88, -26],
+      [-28, -173],
+      [42, -40],
+      [-5, -107],
+      [103, -21],
+      [22, -270],
+      [82, 12],
+      [-16, -94],
+      [-55, -17],
+      [-80, -81],
+      [-2, -39],
+      [117, -35],
+      [-17, -75]
+    ],
+    [
+      [13102, 35141],
+      [-218, -72],
+      [-52, -39],
+      [-316, -155],
+      [-83, -1],
+      [-31, -61],
+      [41, -162],
+      [97, -72],
+      [17, -101],
+      [-27, -51],
+      [-89, -27],
+      [-36, 15],
+      [-91, -34],
+      [81, -62],
+      [21, -104],
+      [59, -133],
+      [169, 57],
+      [81, 8],
+      [20, 42],
+      [186, 40],
+      [260, 0],
+      [45, -69],
+      [69, 48],
+      [73, -32],
+      [45, 52],
+      [96, -43],
+      [-17, -103],
+      [-44, -36],
+      [-187, -49],
+      [-82, 18],
+      [-55, -31],
+      [-87, -9],
+      [-140, 14],
+      [-12, -68],
+      [-198, -76],
+      [-29, -221],
+      [-124, -82],
+      [-132, 12],
+      [9, -58],
+      [-35, -47],
+      [5, -116],
+      [-58, 23],
+      [-36, -40],
+      [-84, 6],
+      [-63, -38],
+      [-70, 3],
+      [-98, -45],
+      [125, -73],
+      [93, 5],
+      [26, -146],
+      [82, -47],
+      [50, 7],
+      [19, -61],
+      [198, -30],
+      [-22, -116],
+      [76, -109],
+      [1, -87],
+      [30, -19],
+      [-10, -165],
+      [20, -61],
+      [-63, -44],
+      [-70, 18],
+      [-56, -85],
+      [-46, 18],
+      [8, -182],
+      [-89, -51],
+      [-41, 2],
+      [-86, -81],
+      [-103, 26],
+      [-78, -36],
+      [-64, 38],
+      [-32, 106],
+      [-68, 46],
+      [-62, 5],
+      [-71, 60],
+      [-71, -46],
+      [-2, 76],
+      [-33, 72],
+      [-52, -7],
+      [-41, -114],
+      [-80, -29],
+      [81, -132],
+      [89, -27],
+      [-11, -205],
+      [-59, -65],
+      [-58, -121],
+      [-18, -76],
+      [49, -230],
+      [-36, -58],
+      [14, -128],
+      [-112, -16],
+      [-143, 29],
+      [-37, -31],
+      [-1, -93],
+      [-68, -59],
+      [-102, -14]
+    ],
+    [
+      [10517, 31115],
+      [-189, 33],
+      [-75, -44],
+      [-47, -118],
+      [-91, -62],
+      [-110, 15]
+    ],
+    [
+      [10005, 30939],
+      [20, 146],
+      [-12, 104],
+      [32, 110],
+      [42, 27],
+      [2, 69],
+      [101, 87]
+    ],
+    [
+      [10275, 31713],
+      [60, 100],
+      [-3, 83],
+      [25, 55],
+      [-24, 156],
+      [-25, 22],
+      [-51, 192],
+      [40, 28],
+      [-78, 82],
+      [9, 39],
+      [-104, 226],
+      [-13, 60],
+      [-70, 48],
+      [-66, 215],
+      [62, 60],
+      [-101, 27],
+      [-13, 63],
+      [35, 92],
+      [-77, 41],
+      [-35, -11],
+      [-13, -152],
+      [-73, 4],
+      [-16, 308],
+      [-48, 63],
+      [-8, 143],
+      [63, 78],
+      [2, 68],
+      [92, 121],
+      [-27, 80],
+      [49, 137],
+      [-105, -45],
+      [-63, 98],
+      [17, 82],
+      [49, 86],
+      [97, 25],
+      [71, 56],
+      [41, -31],
+      [111, 61],
+      [-83, 57],
+      [-55, -26],
+      [-250, 5],
+      [-110, -51],
+      [-51, 50],
+      [-10, 77],
+      [52, 68],
+      [19, 115],
+      [36, 73],
+      [-99, 59],
+      [-46, 198],
+      [11, 136],
+      [88, 360],
+      [53, 94],
+      [65, 53],
+      [104, 8],
+      [113, -75],
+      [127, -24],
+      [91, 146],
+      [42, 24],
+      [113, -56],
+      [-37, 135],
+      [-93, -38],
+      [-112, -78],
+      [-149, 13],
+      [-120, 109],
+      [-63, -12],
+      [-77, -57],
+      [-89, -6],
+      [-60, -53],
+      [-77, 32],
+      [-78, 135],
+      [-41, -38],
+      [0, -133],
+      [-58, -101],
+      [-6, -55],
+      [-138, -30],
+      [-98, -415],
+      [-62, 46],
+      [20, 74],
+      [-47, 94],
+      [-57, -141],
+      [38, -167],
+      [56, -84],
+      [8, -245],
+      [22, -63],
+      [-23, -78],
+      [102, -219],
+      [-82, -131],
+      [-31, -160],
+      [-42, -106],
+      [-223, -269],
+      [-54, -92],
+      [3, -33],
+      [-63, -94],
+      [73, -101],
+      [-130, -69],
+      [-18, -27],
+      [-124, -42],
+      [-87, -55],
+      [-79, -15],
+      [-262, -125],
+      [-72, -85],
+      [-96, 1],
+      [-90, -56],
+      [-91, -18],
+      [-4, -38],
+      [-234, -70],
+      [-33, 12],
+      [-83, -135],
+      [-88, -49],
+      [-91, -8],
+      [-52, -27],
+      [-109, -17],
+      [-265, -133],
+      [-90, -18],
+      [-27, -54],
+      [-138, -3],
+      [-19, -45],
+      [-58, -11],
+      [-132, 32],
+      [-63, -38]
+    ],
+    [
+      [5947, 32261],
+      [-40, 4],
+      [0, 40],
+      [-43, 61]
+    ],
+    [
+      [5467, 32389],
+      [-63, -1],
+      [-131, 43],
+      [-77, 53],
+      [-109, 44],
+      [-166, 91],
+      [-70, 72],
+      [-63, 15],
+      [-97, 62],
+      [-207, 165],
+      [-279, 244],
+      [-204, 218],
+      [-185, 215],
+      [-253, 307],
+      [-209, 240],
+      [113, 117],
+      [-45, 132],
+      [-115, -15],
+      [46, -45],
+      [-17, -47],
+      [45, -46],
+      [-41, -72],
+      [-76, 64],
+      [-153, 164],
+      [-40, 2],
+      [-115, 101],
+      [-134, 137],
+      [-154, 128],
+      [-55, 70],
+      [-114, 79],
+      [-193, 179],
+      [-161, 178],
+      [-173, 203],
+      [-58, 52],
+      [-169, 199],
+      [-62, 85],
+      [8, 28],
+      [-45, 119],
+      [51, 92],
+      [-5, 34],
+      [61, 111],
+      [51, 59],
+      [158, 90],
+      [-11, -57],
+      [-67, -53],
+      [54, -82],
+      [90, 32],
+      [32, -23],
+      [147, 51],
+      [21, -72],
+      [-37, -19],
+      [-51, -176],
+      [94, -93],
+      [44, -19],
+      [149, 41],
+      [94, 66],
+      [14, 61],
+      [174, -34],
+      [78, 45],
+      [75, 7],
+      [3, 40],
+      [68, 55],
+      [4, 109],
+      [61, -52],
+      [20, -86],
+      [88, -42],
+      [120, 24],
+      [21, 80],
+      [77, 4],
+      [-18, 129],
+      [110, 14],
+      [114, -125],
+      [32, 4],
+      [47, 108],
+      [103, -9],
+      [76, 60],
+      [6, 33],
+      [48, 57],
+      [19, -2],
+      [6, 38],
+      [214, 67],
+      [48, -24],
+      [215, 11],
+      [64, 72],
+      [16, 80],
+      [45, 30],
+      [56, 91],
+      [20, 131],
+      [103, 72],
+      [18, 89],
+      [32, 20],
+      [66, 148],
+      [48, 70],
+      [102, 77],
+      [17, 55],
+      [92, 130],
+      [48, 145],
+      [-122, -29],
+      [-90, -84],
+      [-8, -145],
+      [-21, -44],
+      [-73, -31],
+      [-139, 33],
+      [-79, 63],
+      [-49, 11],
+      [-45, -59],
+      [-104, -21],
+      [-65, 43],
+      [0, -85],
+      [-57, -36],
+      [-256, -21],
+      [-84, -16],
+      [-110, -64],
+      [-79, 17],
+      [-149, -51],
+      [-99, -71],
+      [-13, -60],
+      [-70, -98],
+      [-45, -21],
+      [-46, 34],
+      [-114, 24],
+      [-54, -18],
+      [-98, 60],
+      [-64, 11],
+      [-109, -39],
+      [-60, 15],
+      [-99, 67],
+      [-182, 54],
+      [-114, -19],
+      [-153, 33],
+      [-155, 86],
+      [-63, 50],
+      [-243, 136],
+      [-339, 206],
+      [-47, 36],
+      [-110, 42],
+      [-59, 54],
+      [-183, 122],
+      [-56, 74],
+      [-91, 80],
+      [61, 15],
+      [61, 89],
+      [-20, 68],
+      [12, 110],
+      [-69, 84],
+      [-84, -3],
+      [-19, 97],
+      [-52, 33],
+      [-67, 127],
+      [-33, 115],
+      [-1, 221],
+      [62, 62],
+      [23, 61],
+      [67, 72],
+      [81, 29],
+      [78, 62],
+      [54, 92],
+      [65, 50],
+      [104, 27],
+      [-7, 53],
+      [-126, 15],
+      [-58, -54],
+      [-106, 4],
+      [-50, -43],
+      [-88, -149],
+      [-40, 61],
+      [15, 79],
+      [60, 51],
+      [47, 94],
+      [92, 54],
+      [-55, 44],
+      [-64, 3],
+      [-48, 55],
+      [21, 36],
+      [444, -2],
+      [23, 170],
+      [10, 574],
+      [19, 24],
+      [118, 33],
+      [47, -232],
+      [110, -22],
+      [53, 139],
+      [56, 41],
+      [51, -90],
+      [95, -20],
+      [158, 91],
+      [251, -77],
+      [165, 78],
+      [78, 18],
+      [114, -24],
+      [153, 17],
+      [153, -43],
+      [219, 53],
+      [177, -168],
+      [95, -70],
+      [413, -25],
+      [246, 12],
+      [54, 33],
+      [63, 74],
+      [72, 160],
+      [89, 36],
+      [190, 39],
+      [132, 52],
+      [161, 32],
+      [196, 77],
+      [254, 77],
+      [80, -43],
+      [-42, -99],
+      [-44, -33],
+      [34, -137],
+      [-34, -47],
+      [47, -57],
+      [136, -35],
+      [155, -10],
+      [175, 5],
+      [106, 57],
+      [89, 22],
+      [-20, 78],
+      [164, 128],
+      [85, 33],
+      [32, -31],
+      [75, 1],
+      [91, 78],
+      [74, 22],
+      [26, 53],
+      [-90, 51],
+      [-142, -5],
+      [-46, 20],
+      [17, 186],
+      [-37, 43],
+      [5, 134],
+      [44, 72],
+      [56, 19],
+      [134, 97]
+    ],
+    [
+      [6420, 41445],
+      [27, -28],
+      [392, -141],
+      [63, 82],
+      [67, 26],
+      [53, -76],
+      [91, 39],
+      [145, 83],
+      [107, 11],
+      [175, -19],
+      [99, -86],
+      [121, 48],
+      [64, 0],
+      [86, 34],
+      [62, -18],
+      [-2, -91],
+      [76, -16],
+      [49, 20],
+      [5, 113],
+      [121, -24],
+      [18, -81],
+      [130, 69],
+      [1, 48],
+      [129, 65],
+      [72, -20],
+      [-1, -102],
+      [70, -45],
+      [75, 2],
+      [77, -57],
+      [97, 54],
+      [99, -25],
+      [4, -53],
+      [-57, -44],
+      [46, -69],
+      [51, -28],
+      [138, 33],
+      [63, -120],
+      [76, 17],
+      [60, -34],
+      [-25, -76],
+      [43, -51],
+      [18, -72],
+      [100, 26],
+      [-21, 74],
+      [91, 126],
+      [102, -75],
+      [155, -37],
+      [75, 8],
+      [1, -94],
+      [86, -134],
+      [182, -7],
+      [116, 17],
+      [72, -33],
+      [51, -58],
+      [118, 75],
+      [-29, 77],
+      [58, 67],
+      [-22, 69],
+      [90, 33],
+      [64, 0],
+      [96, 68],
+      [28, -87],
+      [-2, -85],
+      [-47, -59],
+      [93, -60],
+      [116, -42],
+      [68, 58],
+      [45, -25],
+      [-45, -71],
+      [-53, 2],
+      [-30, -78],
+      [-62, 15],
+      [-13, -64],
+      [-51, -40],
+      [-53, -97],
+      [-20, -83],
+      [90, -103],
+      [106, -67],
+      [114, -30],
+      [-51, -123],
+      [115, -79],
+      [84, 38],
+      [78, 81],
+      [19, 122],
+      [76, -6],
+      [0, -57],
+      [97, -85],
+      [-7, -122],
+      [24, -55],
+      [-3, -119],
+      [-74, -40],
+      [-58, -119],
+      [28, -75],
+      [-26, -70],
+      [33, -58],
+      [53, 40],
+      [45, -11],
+      [67, -61],
+      [62, -101],
+      [68, -28],
+      [-19, -142],
+      [55, -58],
+      [97, 100],
+      [106, -5],
+      [92, -66],
+      [-52, -212],
+      [47, -40],
+      [-32, -40],
+      [-24, -102],
+      [157, 7],
+      [28, -85],
+      [105, 92],
+      [40, -56],
+      [96, 29],
+      [88, -118],
+      [61, -136],
+      [98, 10],
+      [52, 92],
+      [62, -101],
+      [92, -12],
+      [35, -86],
+      [127, -2],
+      [65, -68],
+      [8, -88],
+      [-33, -47],
+      [5, -64],
+      [62, -49],
+      [61, -12],
+      [54, 92],
+      [93, -32],
+      [49, -52],
+      [36, -86],
+      [-13, -55],
+      [89, -74]
+    ],
+    [
+      [20642, 54632],
+      [37, -31],
+      [-48, -78],
+      [1, -60],
+      [-84, -56],
+      [-80, -123],
+      [-50, -105],
+      [-58, -46],
+      [-51, 0],
+      [-28, -52],
+      [7, -81],
+      [-89, -42],
+      [-92, -66],
+      [-135, -37],
+      [6, -33],
+      [-50, -105],
+      [-156, -200],
+      [7, -67],
+      [-59, -130],
+      [-7, -55],
+      [-75, -41],
+      [-12, -62],
+      [60, -72],
+      [-120, -270],
+      [53, -110],
+      [-55, -45],
+      [85, -110],
+      [-12, -68],
+      [47, -33],
+      [-32, -47],
+      [31, -88],
+      [-48, -17],
+      [7, -62],
+      [58, -11],
+      [17, -65],
+      [-55, -102],
+      [30, -81],
+      [-35, -22],
+      [28, -107],
+      [-29, -65],
+      [26, -44],
+      [-31, -77],
+      [72, -55],
+      [12, -67],
+      [114, -99],
+      [-51, -102],
+      [57, -142],
+      [-78, -24],
+      [12, -53]
+    ],
+    [
+      [20120, 50296],
+      [50, -26],
+      [82, -90],
+      [62, -10],
+      [22, -53],
+      [85, -42],
+      [-11, -44],
+      [54, -83],
+      [-61, -40],
+      [65, -79],
+      [-7, -61],
+      [100, -207],
+      [-14, -48],
+      [-72, -17],
+      [1, -93],
+      [-58, -44],
+      [10, -126],
+      [127, -129],
+      [1, -64],
+      [-37, -78],
+      [-111, 2],
+      [3, -88],
+      [-61, -38],
+      [-44, 37],
+      [-45, -29],
+      [23, -52],
+      [-160, 1],
+      [-58, -68],
+      [-82, -55]
+    ],
+    [
+      [19984, 48672],
+      [-91, -48],
+      [-186, 62],
+      [-6, -60],
+      [-101, -2],
+      [-63, 55],
+      [-75, 24],
+      [-34, -76],
+      [121, -115],
+      [-54, -22],
+      [-47, 48],
+      [-83, -15],
+      [-33, -83],
+      [-19, -113],
+      [-80, 41],
+      [-54, -42],
+      [-40, 53],
+      [51, 49],
+      [-57, 43],
+      [15, 154],
+      [27, 115],
+      [41, -4],
+      [-1, 139],
+      [-15, 71],
+      [13, 123],
+      [-14, 45],
+      [61, 170],
+      [34, 168],
+      [-44, 11],
+      [-127, 100],
+      [-45, 76],
+      [-67, 0],
+      [-95, -72],
+      [3, -84],
+      [-80, -25],
+      [-35, -40],
+      [-64, 7],
+      [-61, -80],
+      [-76, -12],
+      [27, -170],
+      [-134, -21],
+      [-115, -89],
+      [-35, 19],
+      [17, 138],
+      [-182, 17],
+      [31, 92],
+      [61, 47],
+      [-56, 99],
+      [-77, 6],
+      [-170, -20],
+      [-14, 53],
+      [-98, 39],
+      [-68, -34],
+      [171, -93],
+      [-52, -50],
+      [12, -78],
+      [35, -17],
+      [-37, -83],
+      [-102, 1],
+      [0, 44],
+      [-86, 50],
+      [-39, -33],
+      [-123, 6],
+      [57, -66],
+      [-64, -20],
+      [-45, -68],
+      [56, -45],
+      [-21, -146],
+      [80, -143],
+      [-73, -94],
+      [-99, 60],
+      [-13, 49],
+      [-75, 32],
+      [-17, -40],
+      [-67, -7],
+      [-89, 34],
+      [-74, 4],
+      [4, 104],
+      [-31, 64],
+      [11, 58],
+      [-28, 61],
+      [41, 112],
+      [79, -1],
+      [-73, 110],
+      [-90, 22],
+      [129, 132],
+      [73, 51],
+      [103, -1],
+      [-48, 120],
+      [-92, 40],
+      [17, 91],
+      [-71, 35],
+      [-66, 98],
+      [-64, 15],
+      [-11, 55],
+      [-263, 105],
+      [-54, 100],
+      [-95, 35],
+      [4, 34],
+      [-103, 27],
+      [-54, 79],
+      [-80, 30],
+      [-43, 138],
+      [-118, 20],
+      [-36, 80],
+      [-19, 194],
+      [-32, 91],
+      [-39, 35],
+      [33, 114],
+      [-56, 53],
+      [1, 89],
+      [-47, 65],
+      [67, 35],
+      [42, 79],
+      [-12, 81],
+      [-83, 22],
+      [-85, -8],
+      [-10, 111],
+      [-109, 13],
+      [0, 93],
+      [34, 41],
+      [-77, 33],
+      [17, 63],
+      [70, 44],
+      [-46, 174],
+      [-143, -65],
+      [10, 133],
+      [-94, -46],
+      [-11, -44],
+      [-168, -24],
+      [-33, 56],
+      [-72, -52],
+      [-152, -31],
+      [-120, 136],
+      [-72, -45],
+      [-83, 23],
+      [-6, 85],
+      [-51, 106],
+      [-171, 89],
+      [-88, -10],
+      [-74, -89],
+      [-97, -15],
+      [-45, 35],
+      [-134, 8],
+      [-19, -95],
+      [-101, -7],
+      [9, 61],
+      [-59, 74],
+      [-6, 45],
+      [-86, 44],
+      [8, 93],
+      [97, -15],
+      [72, 168],
+      [-88, 56],
+      [15, 229],
+      [55, 154],
+      [4, 73],
+      [-148, 2],
+      [-27, -29],
+      [-118, 7],
+      [-15, 100],
+      [58, 90],
+      [90, 30],
+      [46, 61],
+      [-43, 85],
+      [-63, 12],
+      [30, 82]
+    ],
+    [
+      [13922, 53612],
+      [147, -66],
+      [119, -25],
+      [0, 43],
+      [90, 62],
+      [32, 52],
+      [63, -23],
+      [114, 29],
+      [56, 42],
+      [106, -77],
+      [164, -41],
+      [42, -90],
+      [59, -29],
+      [44, -77],
+      [104, 58],
+      [62, -6],
+      [27, 77],
+      [55, -36],
+      [-38, -120],
+      [37, -98],
+      [50, 7],
+      [126, 76],
+      [41, -20],
+      [-7, -78],
+      [73, -102],
+      [-72, -49],
+      [-21, -116],
+      [-66, -26],
+      [32, -91],
+      [105, -54],
+      [-22, -56],
+      [59, -71],
+      [116, 23],
+      [31, 62],
+      [-54, 34],
+      [60, 68],
+      [23, 88],
+      [97, 98],
+      [37, -4],
+      [40, 115],
+      [103, 58],
+      [1, 50],
+      [136, -78],
+      [110, -19],
+      [15, -50],
+      [131, 22],
+      [6, 45],
+      [90, -1],
+      [69, -41],
+      [18, 124],
+      [94, 8],
+      [51, 31],
+      [53, -43],
+      [53, 20],
+      [96, -146],
+      [74, 7],
+      [81, -53],
+      [84, 0],
+      [69, 43],
+      [83, -5],
+      [72, 75],
+      [8, 56],
+      [85, -21],
+      [50, 47],
+      [60, 3],
+      [61, 62],
+      [75, 22],
+      [-7, 71],
+      [-93, 20],
+      [-9, 121],
+      [55, -5],
+      [-32, 139],
+      [21, 71],
+      [68, 106],
+      [2, 64],
+      [-57, 45],
+      [13, 65],
+      [89, -86],
+      [170, -21],
+      [45, 42],
+      [90, -1],
+      [26, 70],
+      [-45, 59],
+      [39, 36],
+      [65, -44],
+      [-5, -74],
+      [57, -109],
+      [85, -8],
+      [23, -47],
+      [118, 51],
+      [76, -45],
+      [66, 37],
+      [22, 91],
+      [-15, 82],
+      [36, 83],
+      [-107, 111],
+      [177, 150],
+      [59, 13],
+      [90, 81],
+      [-85, 78],
+      [107, 77],
+      [131, -34],
+      [53, 50],
+      [71, -58],
+      [73, -106],
+      [65, 60],
+      [-82, 111],
+      [8, 122],
+      [41, 10],
+      [17, 71],
+      [-77, 37],
+      [62, 137],
+      [-30, 47],
+      [-90, 47],
+      [10, 72],
+      [-98, -25],
+      [2, 58]
+    ],
+    [
+      [19000, 55509],
+      [41, 67],
+      [-42, 92],
+      [-58, 23],
+      [-71, 79],
+      [2, 69]
+    ],
+    [
+      [18872, 55839],
+      [88, 55],
+      [28, -97],
+      [65, -41],
+      [110, 62],
+      [55, -139],
+      [58, -60],
+      [97, 7],
+      [33, -167],
+      [75, 15],
+      [122, -41],
+      [112, -97],
+      [20, -116],
+      [-11, -90],
+      [-101, -75],
+      [57, -66],
+      [105, -30],
+      [38, -105],
+      [108, 9],
+      [26, -41],
+      [104, -30],
+      [78, 19],
+      [75, -36],
+      [33, -58],
+      [68, 46],
+      [59, -2],
+      [-40, -84],
+      [124, 31],
+      [41, 73],
+      [72, -119],
+      [71, -30]
+    ],
+    [
+      [22480, 59550],
+      [83, -50],
+      [-23, -78],
+      [88, -70],
+      [89, -17],
+      [-126, -189],
+      [6, -136],
+      [-55, -73],
+      [96, -8],
+      [133, 13],
+      [109, -69],
+      [3, -70],
+      [-44, -69],
+      [49, -81],
+      [113, -38],
+      [10, -44],
+      [83, -98],
+      [103, -96],
+      [75, -10],
+      [-56, -173],
+      [-46, -93],
+      [-9, -114],
+      [-61, -49],
+      [-3, -48],
+      [94, -235],
+      [100, -5],
+      [10, -66],
+      [94, -77],
+      [-9, -63],
+      [-56, -57],
+      [-104, -63],
+      [-64, -18],
+      [-31, -46],
+      [20, -78],
+      [62, 7],
+      [113, -87],
+      [-7, -81],
+      [-36, -35],
+      [112, -49],
+      [29, -62],
+      [-25, -56],
+      [85, -67],
+      [26, -71],
+      [61, -26]
+    ],
+    [
+      [23571, 56655],
+      [6, -59],
+      [56, -27],
+      [24, -66],
+      [56, -26],
+      [14, -85],
+      [41, -65],
+      [-120, -29],
+      [-84, 24],
+      [-52, -27],
+      [-135, 101],
+      [-52, 133],
+      [-101, -24],
+      [-217, 8],
+      [-32, 50],
+      [-78, 38],
+      [-75, -5],
+      [-64, -63],
+      [-148, -7],
+      [-8, 40],
+      [-103, 90],
+      [-58, 6],
+      [-53, 59],
+      [-155, 1],
+      [-65, -39],
+      [-80, -84],
+      [-105, -27],
+      [-81, 19],
+      [-122, -90],
+      [-138, -17],
+      [-49, -65],
+      [-116, 50],
+      [-116, -46],
+      [-51, -79],
+      [-60, -32],
+      [-19, -69],
+      [-83, -63],
+      [43, -113],
+      [-62, -81],
+      [-94, 16],
+      [-45, -63],
+      [27, -63],
+      [105, 8],
+      [-22, -124],
+      [-85, 21],
+      [-29, -71],
+      [28, -33],
+      [-87, -133],
+      [-36, -23],
+      [116, -135],
+      [-17, -57],
+      [72, -48],
+      [20, -55],
+      [-95, -79],
+      [48, -85],
+      [115, -22],
+      [14, -53],
+      [-29, -61],
+      [-69, -17],
+      [-234, -128],
+      [-127, -26],
+      [-90, -47],
+      [1, -29]
+    ],
+    [
+      [20616, 54679],
+      [26, -47]
+    ],
+    [
+      [18872, 55839],
+      [-97, 76],
+      [-29, 56],
+      [-98, 15],
+      [-128, 79],
+      [-24, 114],
+      [59, 131],
+      [-80, 41],
+      [20, 54],
+      [-18, 73],
+      [99, 70],
+      [-143, 155],
+      [-54, -56],
+      [-77, 62],
+      [-49, -22],
+      [-48, 86],
+      [-85, 34],
+      [-81, 124],
+      [-2, 43],
+      [-68, 42],
+      [-96, -30],
+      [31, -53],
+      [1, -79],
+      [-62, -44],
+      [-210, -49],
+      [-74, 4],
+      [-14, 80],
+      [-59, 27],
+      [-12, 68],
+      [49, 51],
+      [-62, 90],
+      [-97, 216],
+      [-179, 253],
+      [4, 38],
+      [-60, 97],
+      [-71, 177],
+      [-51, 83],
+      [68, 15],
+      [-7, 56],
+      [-121, 235],
+      [-128, 74],
+      [-91, 16],
+      [-134, 113],
+      [-52, -3],
+      [-40, 54],
+      [-94, 41],
+      [-112, -26],
+      [-43, 36],
+      [69, 42],
+      [99, 107],
+      [2, 71],
+      [-79, 19],
+      [5, 115],
+      [117, 68],
+      [133, 22],
+      [237, 244],
+      [61, 45],
+      [119, 30],
+      [-23, 86],
+      [-132, 117],
+      [-9, 51],
+      [47, 126]
+    ],
+    [
+      [16899, 59699],
+      [112, 157],
+      [-55, 85],
+      [30, 177],
+      [-85, 131],
+      [-116, 67],
+      [-74, 117],
+      [46, 84],
+      [130, 1],
+      [72, -34],
+      [74, -72],
+      [184, 77],
+      [143, 118],
+      [25, 83],
+      [129, 42],
+      [187, 23],
+      [39, 45],
+      [43, 120],
+      [185, 123],
+      [56, 59],
+      [186, -7],
+      [59, 37],
+      [114, 32],
+      [85, -13],
+      [29, -70],
+      [60, -26],
+      [154, 44],
+      [73, -5],
+      [66, 105],
+      [8, 68],
+      [73, -30],
+      [55, 16],
+      [-52, -173],
+      [11, -41],
+      [108, -102],
+      [55, 6],
+      [88, -186],
+      [178, -102],
+      [81, 24],
+      [87, -61],
+      [62, 32],
+      [74, -16],
+      [0, -52],
+      [46, -103],
+      [53, 5],
+      [103, -46],
+      [133, -99],
+      [72, -70],
+      [76, 6],
+      [5, 72],
+      [46, 57],
+      [102, 6],
+      [65, -50],
+      [64, 57],
+      [77, 2],
+      [136, 120],
+      [69, 5],
+      [89, 41],
+      [26, 62],
+      [104, -33],
+      [171, -153],
+      [-63, -94],
+      [140, -58],
+      [79, -55],
+      [13, -60],
+      [112, -77],
+      [-32, -147],
+      [37, -32],
+      [124, -202],
+      [130, 0],
+      [18, 85],
+      [52, -7],
+      [57, 84],
+      [50, -45],
+      [44, 64],
+      [75, 16],
+      [30, -31],
+      [90, 27],
+      [26, 44],
+      [130, 42],
+      [-18, 58],
+      [126, 59],
+      [61, -7],
+      [11, -95],
+      [-32, -109],
+      [17, -78],
+      [39, -35],
+      [-125, -88],
+      [-77, -18],
+      [5, -111],
+      [-45, -49],
+      [70, -74],
+      [158, 124],
+      [63, -42]
+    ],
+    [
+      [16899, 59699],
+      [-77, -89],
+      [-73, -117],
+      [-129, -24],
+      [-75, -135],
+      [-140, -68],
+      [-122, -16],
+      [-104, -48],
+      [-46, -49],
+      [-19, -97],
+      [-106, 46],
+      [13, 50],
+      [-129, -35],
+      [-183, 47],
+      [-20, -17]
+    ],
+    [
+      [15689, 59147],
+      [-200, 143],
+      [-69, 7],
+      [-45, 54],
+      [-70, -28],
+      [-143, 154],
+      [-116, 27],
+      [-93, -97],
+      [-85, 10],
+      [-34, 31],
+      [-75, -3],
+      [-95, 61],
+      [-83, 8],
+      [-43, -28],
+      [-221, 2],
+      [-42, 71],
+      [2, 53],
+      [-61, 50],
+      [-23, 118],
+      [74, 127],
+      [-47, 61],
+      [-9, 60],
+      [38, 112],
+      [72, 139],
+      [-43, 26],
+      [-85, -35],
+      [-1, -72],
+      [-60, -79],
+      [-104, -6],
+      [-78, -33],
+      [-144, 94],
+      [-79, 146],
+      [-2, 81],
+      [-34, 56],
+      [-145, 10],
+      [-66, 27],
+      [6, 50],
+      [57, 56],
+      [11, 110],
+      [-212, 82],
+      [-110, -13],
+      [-63, 148],
+      [-142, 132],
+      [-64, 38],
+      [-124, 18],
+      [-27, 23],
+      [-2, 119],
+      [25, 29],
+      [120, -5],
+      [53, 24],
+      [140, 170],
+      [40, 91],
+      [-13, 97],
+      [17, 69],
+      [-19, 61],
+      [-121, 142],
+      [-77, 70],
+      [-75, -19],
+      [-56, 22],
+      [-63, 113],
+      [-53, 162],
+      [-43, 62],
+      [22, 46],
+      [74, 28],
+      [62, 54],
+      [46, 76],
+      [90, 41],
+      [88, 3],
+      [88, 28],
+      [109, 63],
+      [91, 133],
+      [4, 115],
+      [-31, 91],
+      [-75, 57],
+      [-117, 1],
+      [-102, 35],
+      [-62, -37],
+      [-178, -36],
+      [-13, 18],
+      [-224, 6],
+      [-27, 98],
+      [41, 50],
+      [-1, 59],
+      [160, 207],
+      [-1, 122],
+      [-78, 86],
+      [-46, 94],
+      [-45, 40],
+      [-127, -50],
+      [-75, 43],
+      [-98, 7],
+      [31, 131],
+      [171, 132],
+      [96, 51],
+      [-26, 45],
+      [19, 73],
+      [116, 61],
+      [-46, 169],
+      [73, 117],
+      [115, 30],
+      [64, -52],
+      [236, 19],
+      [118, 95],
+      [148, 61],
+      [72, 80],
+      [95, -16],
+      [65, 30],
+      [216, -30],
+      [72, -35],
+      [162, -12],
+      [129, -85],
+      [71, -76],
+      [125, -28],
+      [236, -25],
+      [128, 16],
+      [275, -100],
+      [272, 49],
+      [141, -38],
+      [131, -15],
+      [-9, -66],
+      [195, -113],
+      [97, -31],
+      [245, -26],
+      [188, 6],
+      [221, -43],
+      [125, -13],
+      [97, 42],
+      [110, 94],
+      [166, 70],
+      [30, 45],
+      [150, 26],
+      [79, 80],
+      [109, 3],
+      [79, -58],
+      [79, -7],
+      [258, 116],
+      [90, 88],
+      [153, 10],
+      [113, 65],
+      [71, 64],
+      [98, -19],
+      [105, -59],
+      [242, -2],
+      [34, 14],
+      [42, 88],
+      [84, 100],
+      [-13, 132],
+      [52, 72],
+      [107, 6],
+      [115, 82],
+      [44, -1],
+      [147, -68],
+      [104, -4],
+      [28, 39],
+      [8, 182],
+      [120, -25],
+      [194, 71],
+      [273, 193],
+      [356, 222],
+      [94, 74],
+      [219, 133],
+      [144, 100],
+      [187, 154],
+      [245, 155],
+      [35, -98],
+      [57, -68],
+      [86, 27],
+      [51, 76],
+      [87, 31],
+      [195, 12],
+      [69, -45],
+      [-29, -39],
+      [-168, -90],
+      [-68, -87],
+      [26, -196],
+      [35, -103],
+      [87, -151],
+      [129, -91],
+      [2, -78],
+      [-75, -67],
+      [111, -258],
+      [113, -207],
+      [49, -267],
+      [90, -164],
+      [80, -64],
+      [89, -26],
+      [137, -10],
+      [43, -35],
+      [25, -72],
+      [141, -5],
+      [121, 25],
+      [70, -5],
+      [92, -67],
+      [108, -123],
+      [154, -77],
+      [72, -83],
+      [165, -125],
+      [186, -72],
+      [130, -98],
+      [26, -102],
+      [-82, -164],
+      [-187, -140],
+      [-312, -143],
+      [-50, -54],
+      [12, -50],
+      [107, -33],
+      [7, -80],
+      [-106, -86],
+      [4, -171],
+      [54, -116],
+      [73, -90],
+      [19, -72],
+      [-19, -55],
+      [-145, -154],
+      [45, -144],
+      [119, -196],
+      [87, -114],
+      [215, -196],
+      [113, -72],
+      [35, -47],
+      [172, -119],
+      [18, -155],
+      [146, -66],
+      [382, -26],
+      [137, 2],
+      [72, -25],
+      [2, -100],
+      [-98, -175],
+      [-36, -148],
+      [33, -90],
+      [49, -55],
+      [98, -65],
+      [55, -78],
+      [17, -126],
+      [44, -63],
+      [93, -51],
+      [30, -44],
+      [52, -180],
+      [-41, -146],
+      [-81, -37],
+      [-98, 2],
+      [-258, -152],
+      [-58, -82],
+      [-51, -6],
+      [-60, 67],
+      [-48, 11],
+      [-99, -27],
+      [-119, -62],
+      [-68, -78],
+      [7, -79],
+      [-37, -102],
+      [-81, 30],
+      [-94, -41],
+      [-68, -6],
+      [-51, -47],
+      [-123, 53],
+      [-88, 110],
+      [-85, 25],
+      [-121, 115],
+      [-35, 231],
+      [33, 54],
+      [-44, 198],
+      [-52, 27],
+      [-181, -108],
+      [-48, -88],
+      [-64, -15],
+      [-97, 18],
+      [-72, -14],
+      [-90, -76],
+      [-72, 14],
+      [-89, -54],
+      [-3, -103]
+    ],
+    [
+      [43098, 42693],
+      [-36, -157],
+      [3, -123],
+      [45, -54],
+      [157, -83],
+      [92, -125],
+      [122, -116],
+      [25, -91],
+      [-15, -35],
+      [-151, -89],
+      [-71, -158],
+      [-56, -84],
+      [134, -38],
+      [-32, -101],
+      [56, -36],
+      [-22, -115],
+      [18, -43],
+      [-50, -72],
+      [-86, -27],
+      [-114, 26],
+      [5, -163],
+      [42, -54],
+      [-65, -84],
+      [21, -116],
+      [-80, -113],
+      [-11, -69],
+      [-165, -132],
+      [-75, 5],
+      [-21, -85],
+      [73, -14],
+      [57, -70],
+      [-16, -59],
+      [-136, 31],
+      [-105, -4],
+      [55, -68],
+      [-51, -20],
+      [-25, -83],
+      [-68, 1],
+      [-94, 64],
+      [-12, -147],
+      [23, -69],
+      [-66, -26],
+      [-71, -76],
+      [-109, 55],
+      [-73, 17],
+      [-42, -33],
+      [-48, 22],
+      [37, 61],
+      [-128, 2],
+      [-67, 24],
+      [-24, -41],
+      [59, -126],
+      [71, -33],
+      [-15, -50],
+      [16, -101],
+      [-60, -36],
+      [-43, -108],
+      [-57, -2],
+      [6, 70],
+      [-77, -1],
+      [-113, 26],
+      [-12, -40],
+      [79, -73],
+      [-39, -58],
+      [-94, 12],
+      [-108, 39],
+      [-49, 47],
+      [-157, 65],
+      [-44, -51],
+      [-42, 54],
+      [-64, 32],
+      [-111, -134],
+      [-103, -56],
+      [42, -50],
+      [-54, -205],
+      [-119, -23],
+      [-59, 46],
+      [-137, -34],
+      [-128, -47],
+      [-136, -77],
+      [-104, 14],
+      [-80, -8],
+      [-192, -205],
+      [-13, -183],
+      [-114, -47],
+      [-166, -18],
+      [-8, 47],
+      [-92, 44],
+      [-80, 5],
+      [27, 62],
+      [-26, 54],
+      [22, 56],
+      [-32, 42],
+      [-223, 32],
+      [-58, -52],
+      [67, -164],
+      [-46, -5],
+      [-181, -76],
+      [-70, 38],
+      [-71, 11],
+      [-32, -59],
+      [8, -95],
+      [72, -76],
+      [-65, -28],
+      [12, -80],
+      [-22, -62],
+      [-78, -93],
+      [19, -164],
+      [50, 5],
+      [44, -83],
+      [82, -67],
+      [64, 0],
+      [84, 38],
+      [120, -5],
+      [17, -74],
+      [104, -49],
+      [53, 7],
+      [131, -186],
+      [56, 5],
+      [25, -54],
+      [108, 8],
+      [40, 35],
+      [116, -50],
+      [61, 18],
+      [73, -52],
+      [51, 48],
+      [103, -23],
+      [75, 11],
+      [33, -54],
+      [-56, -71],
+      [-37, 25],
+      [-83, -71],
+      [67, -44],
+      [-66, -84],
+      [2, -74],
+      [-39, -120],
+      [84, -39],
+      [54, -86],
+      [156, -27],
+      [150, -87],
+      [41, -42],
+      [-5, -134],
+      [38, -49],
+      [120, 10],
+      [110, -14],
+      [61, -69],
+      [12, -161],
+      [-97, -9],
+      [41, -111],
+      [91, -14],
+      [85, -48],
+      [-32, -165],
+      [130, -100],
+      [-6, -67],
+      [-144, 19],
+      [-64, -99],
+      [-95, -23],
+      [-55, 17]
+    ],
+    [
+      [40757, 35745],
+      [-90, 10],
+      [-74, 38],
+      [-6, 59],
+      [-123, 48],
+      [-25, 36],
+      [-118, 12],
+      [-54, 88],
+      [-167, -80],
+      [-157, 90],
+      [-143, 185],
+      [-50, 33],
+      [-98, 22],
+      [-40, 49],
+      [-222, 46],
+      [-71, 122],
+      [-67, 48],
+      [-23, -68],
+      [-129, -80],
+      [-35, -101],
+      [87, -78],
+      [35, 5],
+      [28, -99],
+      [-63, -101],
+      [60, -20],
+      [-6, -57],
+      [-105, -142],
+      [125, -134],
+      [-71, -124],
+      [18, -43],
+      [-132, -217],
+      [-30, 0],
+      [-76, -95],
+      [-242, 1],
+      [-62, 69],
+      [50, 64],
+      [-19, 35],
+      [39, 60],
+      [94, 0],
+      [-63, 78],
+      [-175, -122],
+      [-90, -22],
+      [-81, 96],
+      [-118, -36],
+      [-231, 97],
+      [-166, 91],
+      [-104, -3],
+      [-3, -69],
+      [-85, 1],
+      [-108, -104],
+      [-73, -156],
+      [-57, -5],
+      [-9, 75],
+      [-154, 71],
+      [-48, -17],
+      [-44, 69],
+      [-165, 37],
+      [3, 97],
+      [97, 177],
+      [2, 96],
+      [77, 44],
+      [-69, 133],
+      [20, 69],
+      [-57, 153],
+      [35, 65],
+      [-48, 15],
+      [-200, -82],
+      [-176, -61],
+      [-5, 58],
+      [-93, -35],
+      [-76, 37],
+      [-106, -3],
+      [-20, -63],
+      [-181, -2],
+      [-65, 34],
+      [-286, -31],
+      [-60, -32],
+      [-107, -114],
+      [-118, -7],
+      [-182, -27],
+      [-94, 84],
+      [-116, -5],
+      [-128, 113],
+      [4, 108],
+      [-69, 15],
+      [-107, 84],
+      [-121, 25]
+    ],
+    [
+      [33282, 40106],
+      [56, 58],
+      [65, 172],
+      [-4, 69],
+      [55, 82],
+      [-12, 63],
+      [-45, 46],
+      [61, 56],
+      [68, 23],
+      [19, 58],
+      [-29, 72],
+      [-68, 19],
+      [4, 58],
+      [-43, 43],
+      [26, 105],
+      [231, 60]
+    ],
+    [
+      [20587, 26673],
+      [24, -19],
+      [21, 17],
+      [9, -8],
+      [20, -9],
+      [43, -11],
+      [-67, -87],
+      [27, -55],
+      [-23, -39],
+      [-23, 1],
+      [0, -24],
+      [13, -2],
+      [61, -86],
+      [-9, -56],
+      [7, -15],
+      [8, -50],
+      [-7, -35],
+      [-16, -10],
+      [-28, -7],
+      [-22, -2],
+      [-15, -12],
+      [-8, -20],
+      [-24, -20],
+      [14, -16],
+      [2, -28],
+      [118, -39],
+      [102, -112],
+      [-20, -15],
+      [7, -22],
+      [-7, -16],
+      [-8, 7],
+      [-19, 9],
+      [-5, 22],
+      [-13, -12],
+      [11, -21],
+      [-19, -10],
+      [-7, -14],
+      [6, -19],
+      [-1, -38],
+      [-6, -25],
+      [-36, 2],
+      [-33, 11],
+      [-4, -23],
+      [20, -44],
+      [-24, -8],
+      [-8, -11],
+      [-11, 4],
+      [-12, -16],
+      [-3, -38],
+      [-8, -1],
+      [3, -17],
+      [-10, -7],
+      [-10, -19],
+      [-11, -29],
+      [-13, 19],
+      [-39, 1],
+      [0, -35],
+      [-33, -23],
+      [-8, -20],
+      [-6, -24],
+      [11, -6],
+      [30, -1],
+      [25, -11],
+      [5, -10],
+      [39, -21],
+      [25, 6],
+      [-9, -39],
+      [-22, -29],
+      [-17, -3],
+      [-10, -18],
+      [-100, -22],
+      [-5, -7],
+      [-5, -14],
+      [-11, -7],
+      [-8, 7],
+      [-5, -9],
+      [-10, -4],
+      [-36, -5],
+      [-7, -11],
+      [-9, -7],
+      [2, -8],
+      [-12, -70],
+      [11, -58],
+      [-24, -118],
+      [47, -10],
+      [8, -6],
+      [9, -15],
+      [11, -7],
+      [35, 3],
+      [15, -53],
+      [11, -6],
+      [17, 19],
+      [10, 19],
+      [29, 37],
+      [46, -55],
+      [82, 21],
+      [14, -60],
+      [16, 3],
+      [9, -7],
+      [29, -3],
+      [11, -17],
+      [53, -8],
+      [24, 6],
+      [11, -15],
+      [10, -11],
+      [48, -27],
+      [-2, -16],
+      [-5, -14],
+      [-1, -29],
+      [-42, 8],
+      [-37, 11],
+      [-82, -26],
+      [1, -39],
+      [-2, -20],
+      [-13, -3],
+      [-19, -1],
+      [-12, 13],
+      [-38, 14],
+      [-1, -57],
+      [-33, 13],
+      [-20, -1],
+      [-33, 14],
+      [-23, -10],
+      [-29, -21],
+      [2, -34],
+      [35, -16],
+      [15, 1],
+      [0, -17],
+      [-27, -29],
+      [12, -17],
+      [3, -16],
+      [-16, -23],
+      [-24, -7],
+      [-24, -12],
+      [-36, 1],
+      [-18, 11],
+      [-5, 9],
+      [7, 12],
+      [9, 3],
+      [-61, 2],
+      [-4, -17],
+      [0, -30],
+      [14, -12],
+      [-8, -39],
+      [-3, -2],
+      [-4, -28],
+      [-20, -40],
+      [-6, -2],
+      [-8, -20],
+      [29, 2],
+      [12, -6],
+      [4, -24],
+      [-163, -130],
+      [24, -63],
+      [-45, -6],
+      [-5, -31],
+      [-11, -16],
+      [3, -11],
+      [-11, -8],
+      [15, -23],
+      [19, -6],
+      [2, -25],
+      [190, -79],
+      [81, -223],
+      [-46, -40],
+      [3, -35],
+      [-2, -16],
+      [-33, -36],
+      [1, -29],
+      [3, -12],
+      [-5, -13],
+      [9, -11],
+      [0, -17],
+      [-31, -18],
+      [15, -151],
+      [-8, -47],
+      [13, -44],
+      [7, -9],
+      [13, -10],
+      [0, -26],
+      [-1, -14],
+      [-9, -6],
+      [-50, 8],
+      [-20, -5],
+      [4, -34],
+      [-30, -112],
+      [4, -7],
+      [10, 0],
+      [7, -6],
+      [9, -3],
+      [18, 14],
+      [7, 0],
+      [17, -7],
+      [10, 6],
+      [13, -3],
+      [4, -8],
+      [-2, -14],
+      [0, -13],
+      [-6, -43],
+      [-41, -10],
+      [-20, -17],
+      [-45, -9],
+      [25, -29],
+      [5, -13],
+      [13, -5],
+      [-7, -11],
+      [24, -4],
+      [10, 7],
+      [14, 14],
+      [14, 9],
+      [18, -5],
+      [4, -7],
+      [-12, -18],
+      [-10, -26],
+      [-13, -11],
+      [-3, -29],
+      [21, -6],
+      [2, -17],
+      [-1, -5],
+      [-8, 1],
+      [-4, -8],
+      [6, -4],
+      [6, -8],
+      [0, -6],
+      [-17, -8],
+      [-29, 3],
+      [-14, -2],
+      [-35, -37],
+      [-12, -110],
+      [-7, -9],
+      [-25, 5],
+      [-43, -10],
+      [-5, -2],
+      [-13, -11],
+      [-9, -9],
+      [-6, -42],
+      [-18, -2],
+      [-14, 0],
+      [-8, 5],
+      [-10, -1],
+      [0, -7],
+      [-30, -3],
+      [-12, 1],
+      [-160, -30],
+      [28, -88],
+      [11, -16],
+      [12, -12],
+      [7, -17],
+      [15, -17],
+      [21, -8],
+      [28, -13],
+      [56, -13],
+      [23, -20],
+      [21, -7],
+      [45, 7],
+      [33, -19],
+      [52, -21],
+      [23, 1],
+      [12, 5],
+      [23, 22],
+      [51, 2],
+      [44, 5],
+      [63, -17],
+      [20, 0],
+      [35, -40],
+      [109, -58],
+      [5, -17],
+      [9, -20],
+      [0, -17],
+      [-6, -21],
+      [-17, -22],
+      [-34, 27],
+      [-89, -64],
+      [-11, 2],
+      [-14, 0],
+      [-26, -7],
+      [-30, -42],
+      [17, -85],
+      [-4, -15],
+      [3, -26],
+      [0, -19],
+      [-14, -19],
+      [-11, -47],
+      [7, -99],
+      [36, -98],
+      [-8, -44],
+      [-19, -54],
+      [42, -66],
+      [-3, -15],
+      [-7, -39],
+      [0, -14],
+      [8, -12],
+      [13, -10],
+      [2, -13],
+      [-3, -33],
+      [-11, -52],
+      [-27, 12],
+      [-31, 5],
+      [-36, -2],
+      [-89, 34],
+      [-41, -15],
+      [-33, 3],
+      [-15, -6],
+      [-21, -2],
+      [-18, 6],
+      [-32, 18],
+      [-156, 8],
+      [-74, 24],
+      [-150, -18],
+      [-22, -10],
+      [-30, -3],
+      [-30, -8],
+      [-30, -24],
+      [-55, -14],
+      [-32, -15],
+      [-29, -19],
+      [-24, -24],
+      [-30, -53],
+      [-25, -29],
+      [-17, -25],
+      [-10, -19],
+      [-14, -30],
+      [4, -5],
+      [9, -9],
+      [22, -1],
+      [7, -8],
+      [18, -4],
+      [6, 10],
+      [25, -3],
+      [-5, -58],
+      [2, -46],
+      [-19, -34],
+      [-9, 1],
+      [-3, -7],
+      [11, -5],
+      [-4, -20],
+      [-11, 3],
+      [1, -61],
+      [64, -8],
+      [18, -29],
+      [-18, -42],
+      [54, -28],
+      [22, -17],
+      [18, -21],
+      [13, -7],
+      [-8, -51],
+      [-11, -28],
+      [-76, 64],
+      [-120, -54],
+      [-7, -123],
+      [11, -118],
+      [0, -38],
+      [-5, -20],
+      [-67, -1],
+      [-11, 3],
+      [-21, 9],
+      [-21, 4],
+      [-3, -36],
+      [12, -21],
+      [44, -33],
+      [10, -14],
+      [3, -14],
+      [9, -17],
+      [20, -16],
+      [19, -6],
+      [8, -8],
+      [7, -20],
+      [1, -19],
+      [-6, -39],
+      [11, -12],
+      [17, -11],
+      [6, -18],
+      [-3, -21],
+      [-10, -37],
+      [55, -48],
+      [1, -23],
+      [-4, -14],
+      [17, -6],
+      [66, 17],
+      [23, 2],
+      [1, -16],
+      [7, -3],
+      [4, -68],
+      [72, -10],
+      [-14, -156],
+      [36, -56],
+      [14, -59],
+      [-2, -16],
+      [-10, -8],
+      [1, -13],
+      [-4, -8],
+      [-26, 4],
+      [-19, -3],
+      [-11, -15],
+      [7, -16],
+      [39, -10],
+      [2, -25],
+      [-14, -31],
+      [-18, -17],
+      [-26, -15],
+      [-4, -58],
+      [-16, -41],
+      [-5, -24],
+      [-10, -5],
+      [-4, -22],
+      [-18, -3],
+      [-24, 1],
+      [-5, -11],
+      [-14, -2],
+      [-7, -51],
+      [-38, 3],
+      [-23, 7],
+      [-22, 3],
+      [12, 24],
+      [5, 18],
+      [-4, 12],
+      [-102, 1],
+      [-11, -13],
+      [-27, -8],
+      [-3, -23],
+      [-33, 6],
+      [-36, 26],
+      [-17, 6],
+      [-25, -1],
+      [-40, 10],
+      [-54, 2],
+      [-26, -7],
+      [-16, 36],
+      [-20, 29],
+      [-38, 22],
+      [-13, 14],
+      [-17, 5],
+      [-18, 1],
+      [-54, 37],
+      [-28, -35],
+      [-18, -15],
+      [-7, -10],
+      [26, -112],
+      [-11, -25],
+      [-22, -12],
+      [-3, -11],
+      [-4, -11],
+      [-3, -4],
+      [-18, -14],
+      [15, -31],
+      [114, -14],
+      [27, -29],
+      [18, 18],
+      [11, 5],
+      [52, 7],
+      [-2, -21],
+      [4, -40],
+      [-12, -108],
+      [-44, -141],
+      [-14, -104],
+      [-5, -2],
+      [-11, 6],
+      [-13, 0],
+      [-7, -3],
+      [-1, -7],
+      [-13, -2],
+      [-67, -5],
+      [2, -12],
+      [11, -29],
+      [4, -23],
+      [15, -25],
+      [7, -15],
+      [-28, -63],
+      [-10, -39],
+      [-21, -38],
+      [-23, -180],
+      [38, -39],
+      [47, -119],
+      [12, -7],
+      [13, -2],
+      [19, -8],
+      [18, 6],
+      [1, -2],
+      [8, -16],
+      [26, -14],
+      [23, -24],
+      [14, -27],
+      [7, -29],
+      [14, -14],
+      [22, 5],
+      [12, 12],
+      [19, 11],
+      [27, 8],
+      [147, -13],
+      [2, -19],
+      [-22, -43],
+      [-12, -14],
+      [-33, -1],
+      [-2, -12],
+      [3, -34],
+      [1, -38],
+      [-2, -13],
+      [-5, -8],
+      [-10, 4],
+      [-40, 23],
+      [-12, 5],
+      [-66, -54],
+      [-10, -90],
+      [1, -11],
+      [14, -16],
+      [30, -47],
+      [96, -32],
+      [8, -11],
+      [8, -15],
+      [-3, -17],
+      [-11, -12],
+      [-42, -22],
+      [3, -18],
+      [17, -25],
+      [5, -11],
+      [4, -20],
+      [12, -9],
+      [18, -5],
+      [68, 10],
+      [15, -5],
+      [8, -7],
+      [4, 6],
+      [21, -10],
+      [100, 19],
+      [23, -36],
+      [16, -14],
+      [17, -20],
+      [21, -2],
+      [23, 2],
+      [22, 9],
+      [10, 19],
+      [2, 24],
+      [5, 19],
+      [-3, 19],
+      [9, 20],
+      [-19, 11],
+      [11, 60],
+      [12, 9],
+      [18, 23],
+      [14, 67],
+      [19, 13],
+      [13, -9],
+      [12, 13],
+      [97, -54],
+      [30, -3],
+      [29, 4],
+      [20, -9],
+      [29, 8],
+      [13, 14],
+      [15, 12],
+      [34, 14],
+      [17, -2],
+      [3, -66],
+      [-7, -61],
+      [176, -15],
+      [-9, -91],
+      [20, -16],
+      [27, -15],
+      [16, -58],
+      [68, 27],
+      [2, 20],
+      [-2, 12],
+      [-13, 15],
+      [-9, 58],
+      [-9, 27],
+      [-24, 2],
+      [-33, 78],
+      [-2, 23],
+      [11, 28],
+      [35, 28],
+      [32, -5],
+      [25, -12],
+      [11, -2],
+      [36, -26],
+      [0, -44],
+      [3, -30],
+      [24, -13],
+      [31, 17],
+      [23, 10],
+      [12, -20],
+      [17, -9],
+      [9, 1],
+      [7, -26],
+      [-21, -76],
+      [21, -53],
+      [3, -26],
+      [7, -29],
+      [14, -20],
+      [-17, -35],
+      [-5, -14],
+      [-26, 5],
+      [-56, 26],
+      [-87, 2],
+      [-16, 9],
+      [-14, 1],
+      [-27, -7],
+      [-17, -3],
+      [-1, -27],
+      [-15, -14],
+      [-9, -21],
+      [-4, -20],
+      [-64, -13],
+      [-2, -15],
+      [0, -17],
+      [-5, -33],
+      [9, 7],
+      [9, 14],
+      [82, 31],
+      [10, -9],
+      [4, -9],
+      [-2, -17],
+      [-35, -30],
+      [-16, -43],
+      [-24, -14],
+      [-6, -16],
+      [-18, -13],
+      [-27, 1],
+      [-15, -32],
+      [-11, -39],
+      [39, -9],
+      [13, -6],
+      [27, -1],
+      [47, -20],
+      [7, -77],
+      [74, 6],
+      [14, -8],
+      [9, -10],
+      [0, -16],
+      [-4, -13],
+      [-1, -30],
+      [-13, -10],
+      [-33, -7],
+      [25, -95],
+      [-155, 4],
+      [-11, 22],
+      [-2, 14],
+      [22, 37],
+      [22, 33],
+      [-1, 7],
+      [-41, 12],
+      [8, 11],
+      [0, 12],
+      [14, 36],
+      [1, 14],
+      [-18, 8],
+      [-27, 5],
+      [-7, 6],
+      [-1, 7],
+      [0, 0],
+      [1, 3],
+      [-14, 24],
+      [-15, 23],
+      [-1, 15],
+      [-7, 7],
+      [-22, 5],
+      [-55, -46],
+      [-13, 2],
+      [4, 19],
+      [-6, 28],
+      [-16, -4],
+      [-19, -13],
+      [-29, -33],
+      [-106, -8],
+      [-50, 13],
+      [-38, -42],
+      [-15, 3],
+      [-18, 12],
+      [-11, 3],
+      [-3, 14],
+      [2, 12],
+      [-13, 21],
+      [-7, 37],
+      [-8, 17],
+      [-67, -9],
+      [-31, 0],
+      [-15, 3],
+      [-2, 18],
+      [-99, 14],
+      [0, 70],
+      [-29, 20],
+      [13, 32],
+      [1, 14],
+      [-1, 13],
+      [8, 11],
+      [-14, 11],
+      [2, 12],
+      [3, 47],
+      [11, 27],
+      [1, 9],
+      [-4, 10],
+      [-12, 1],
+      [-18, 4],
+      [-44, -5],
+      [-61, 7],
+      [-10, 12],
+      [-10, 7],
+      [-11, 10],
+      [-6, 3],
+      [-5, -6],
+      [5, -20],
+      [-5, -24],
+      [-5, -5],
+      [-31, -5],
+      [-12, -14],
+      [-45, 10],
+      [-12, -6],
+      [-5, -19],
+      [-5, -34],
+      [-7, -12],
+      [63, -21],
+      [10, 6],
+      [12, 10],
+      [10, -4],
+      [23, -28],
+      [12, -7],
+      [64, -84],
+      [1, -17],
+      [6, -7],
+      [-2, -18],
+      [-6, -12],
+      [-48, -10],
+      [-14, -2],
+      [-12, 1],
+      [-9, -16],
+      [-6, -42],
+      [39, -36],
+      [58, -24],
+      [5, -6],
+      [0, 0],
+      [17, -15],
+      [20, -14],
+      [-6, -13],
+      [-6, -44],
+      [14, -9],
+      [9, -6],
+      [19, -7],
+      [13, -18],
+      [11, -11],
+      [37, -21],
+      [12, -65],
+      [-29, -1],
+      [-23, -9],
+      [-2, -13],
+      [-11, -37],
+      [2, -10],
+      [0, -7],
+      [-10, -3],
+      [-4, -30],
+      [-49, -51],
+      [-16, -15],
+      [-11, -6],
+      [-7, -10],
+      [1, -10],
+      [25, -7],
+      [8, -7],
+      [-6, -42],
+      [25, -100],
+      [21, -14],
+      [21, -9],
+      [5, 34],
+      [10, 33],
+      [3, 19],
+      [34, -1],
+      [55, -71],
+      [45, -3],
+      [-3, 20],
+      [2, 17],
+      [12, 11],
+      [21, 6],
+      [35, -14],
+      [27, -9],
+      [24, 5],
+      [7, 6],
+      [20, -2],
+      [44, 0],
+      [7, 15],
+      [3, 25],
+      [-38, 66],
+      [18, 34],
+      [0, 12],
+      [-9, 11],
+      [-27, 22],
+      [-12, 7],
+      [-33, 12],
+      [-3, 15],
+      [14, 1],
+      [20, 21],
+      [51, -5],
+      [5, 22],
+      [-7, 37],
+      [-10, 21],
+      [-2, 19],
+      [46, 41],
+      [11, -37],
+      [-15, -93],
+      [8, -3],
+      [30, -8],
+      [36, 51],
+      [-2, -42],
+      [8, 3],
+      [12, 18],
+      [8, 29],
+      [3, 16],
+      [7, 15],
+      [19, -1],
+      [14, -2],
+      [3, -12],
+      [-6, -17],
+      [1, -18],
+      [3, -18],
+      [7, -13],
+      [20, -10],
+      [-6, -38],
+      [12, 0],
+      [43, 7],
+      [17, -4],
+      [5, 12],
+      [24, 17],
+      [24, 9],
+      [8, -14],
+      [12, -27],
+      [8, -32],
+      [71, 43],
+      [46, -30],
+      [18, 0],
+      [19, 4],
+      [31, -4],
+      [46, -11],
+      [-27, -34],
+      [2, -10],
+      [-12, -12],
+      [1, -7],
+      [24, 1],
+      [0, -9],
+      [-6, -11],
+      [7, -5],
+      [19, -2],
+      [49, -6],
+      [3, -12],
+      [4, -5],
+      [10, -66],
+      [9, -14],
+      [-39, -110],
+      [11, -47],
+      [58, 5],
+      [7, 59],
+      [17, 8],
+      [34, -5],
+      [9, -10],
+      [3, -27],
+      [9, -7],
+      [20, 5],
+      [14, 45],
+      [0, 27],
+      [-2, 15],
+      [-26, 27],
+      [10, 16],
+      [22, 4],
+      [22, -5],
+      [4, -20],
+      [15, -33],
+      [41, 20],
+      [15, -6],
+      [17, 9],
+      [31, 30],
+      [19, -2],
+      [25, -33],
+      [13, -2],
+      [34, 18],
+      [-7, 14],
+      [-46, 13],
+      [-5, 20],
+      [9, 11],
+      [76, 36],
+      [16, 2],
+      [17, -2],
+      [13, 4],
+      [4, -18],
+      [-5, -17],
+      [-13, -24],
+      [11, 0],
+      [35, 15],
+      [24, 6],
+      [72, 94],
+      [60, 13],
+      [30, 2],
+      [20, 10],
+      [5, 9],
+      [-1, 8],
+      [-6, 9],
+      [-7, 18],
+      [63, 21],
+      [17, 26],
+      [38, 20],
+      [-1, 25],
+      [-14, 41],
+      [-32, 65],
+      [4, 12],
+      [13, 19],
+      [106, -9],
+      [108, -69],
+      [40, 27],
+      [20, 37],
+      [16, 8],
+      [6, -3],
+      [4, 2],
+      [8, 21],
+      [2, 12],
+      [13, 18],
+      [12, 2],
+      [26, -7],
+      [-11, -54],
+      [3, -44],
+      [7, -28],
+      [-79, -51],
+      [8, -72],
+      [5, -25],
+      [0, -10],
+      [39, -11],
+      [43, 96],
+      [43, 0],
+      [24, -17],
+      [49, -3],
+      [7, 12],
+      [4, 13],
+      [-4, 53],
+      [16, -5],
+      [14, -12],
+      [35, -17],
+      [9, -40],
+      [69, -3],
+      [24, -73],
+      [-21, -42],
+      [17, -37],
+      [6, -25],
+      [-73, -100],
+      [54, -54],
+      [1, -15],
+      [-6, -12],
+      [-4, -33],
+      [-44, -8],
+      [-47, 17],
+      [-3, -6],
+      [6, -13],
+      [-3, -12],
+      [-7, -7],
+      [-5, -11],
+      [16, -6],
+      [31, -32],
+      [61, -8],
+      [18, -3],
+      [16, 7],
+      [13, -1],
+      [38, 3],
+      [21, -2],
+      [7, -8],
+      [3, -51],
+      [12, -5],
+      [44, 0],
+      [18, -12],
+      [3, -33],
+      [-3, -16],
+      [123, -47],
+      [138, 21],
+      [68, -13],
+      [39, 2],
+      [13, 4],
+      [29, 2],
+      [38, -35],
+      [-26, -51],
+      [-1, -29],
+      [-40, -84],
+      [0, -66],
+      [-8, -17],
+      [-2, -17],
+      [3, -33],
+      [7, -15],
+      [-4, -16],
+      [13, -77],
+      [-6, -26],
+      [-30, -57],
+      [63, -30],
+      [30, -23],
+      [-4, -22],
+      [-24, 2],
+      [-20, 7],
+      [-9, 13],
+      [-8, -9],
+      [-2, -19],
+      [35, -14],
+      [19, -24],
+      [24, 9],
+      [11, 6],
+      [18, 16],
+      [12, 5],
+      [8, 0],
+      [5, -3],
+      [5, -2],
+      [3, -21],
+      [12, -22],
+      [75, -11],
+      [68, -38],
+      [146, -13],
+      [19, -10],
+      [3, -12],
+      [-11, -31],
+      [-20, -24],
+      [-7, -12],
+      [-6, -49],
+      [25, -18],
+      [-34, -35],
+      [-27, -4],
+      [3, -17],
+      [10, -3],
+      [15, 3],
+      [6, 0],
+      [7, 0],
+      [8, -6],
+      [3, -8],
+      [2, -5],
+      [8, -35],
+      [-8, 0],
+      [-9, -2],
+      [-7, -8],
+      [-25, 3],
+      [-18, -5],
+      [-13, -22],
+      [9, -11],
+      [-3, -15],
+      [-31, -4],
+      [-19, -20],
+      [-9, -2],
+      [0, -14],
+      [5, -16],
+      [12, -13],
+      [13, -3],
+      [12, -5],
+      [-29, -14],
+      [-2, -15],
+      [-33, -35],
+      [13, -24],
+      [0, -15],
+      [-83, -26],
+      [-13, -22],
+      [-13, 1],
+      [-8, -2],
+      [-2, -8],
+      [-1, -5],
+      [1, -26],
+      [11, -57],
+      [13, -25],
+      [-8, -37],
+      [-53, 13],
+      [-18, 2],
+      [-6, -3],
+      [-2, -13],
+      [4, -19],
+      [8, -9],
+      [-16, -9],
+      [10, -20],
+      [-3, -10],
+      [-6, -11],
+      [2, -13],
+      [10, -15],
+      [19, -20],
+      [47, -36],
+      [5, -30],
+      [-3, -32],
+      [-6, -30],
+      [-4, 6],
+      [1, 23],
+      [-14, 21],
+      [-17, 12],
+      [-1, 15],
+      [-5, 6],
+      [0, 27],
+      [-41, -27],
+      [-86, 15],
+      [-21, 15],
+      [-17, 23],
+      [-34, 38],
+      [-10, -8],
+      [7, -15],
+      [-13, -6],
+      [-1, -6],
+      [1, -15],
+      [-24, -40],
+      [-11, 1],
+      [-13, 7],
+      [-6, -10],
+      [-1, -20],
+      [-5, -14],
+      [12, -4],
+      [11, -1],
+      [3, 11],
+      [11, -5],
+      [-11, -15],
+      [-2, -11],
+      [-24, 6],
+      [-15, 1],
+      [5, -22],
+      [-7, -21],
+      [-89, 21],
+      [-19, -16],
+      [-12, 1],
+      [-9, 3],
+      [-7, -9],
+      [1, -81],
+      [-46, -138]
+    ],
+    [
+      [22062, 13868],
+      [-220, 40],
+      [-124, 139],
+      [-93, 26],
+      [-90, -71],
+      [-51, 60],
+      [-55, -55],
+      [-52, 21],
+      [41, 66],
+      [-30, 54],
+      [-70, -35],
+      [-125, 1],
+      [-54, -88],
+      [-29, -92],
+      [-65, -120],
+      [-18, -97],
+      [-102, -31],
+      [-18, -52],
+      [-61, -2],
+      [-30, 55],
+      [-140, -39],
+      [16, -84],
+      [-34, -37],
+      [-27, -109],
+      [19, -118],
+      [102, -69],
+      [-20, -167],
+      [-27, -118],
+      [-77, -69],
+      [-28, -62],
+      [-83, -64],
+      [-106, -18],
+      [-9, -137],
+      [100, -43],
+      [204, 26],
+      [113, -17],
+      [156, -47],
+      [30, -88],
+      [59, -47],
+      [-46, -92],
+      [-56, -37],
+      [-68, -100],
+      [-57, -132],
+      [-59, -29],
+      [-140, -38],
+      [-55, 16],
+      [-54, -22],
+      [-73, 20],
+      [-32, -93],
+      [-48, 2],
+      [5, -119],
+      [-56, -156],
+      [-40, -22],
+      [-126, 38],
+      [-64, -45],
+      [-91, 91],
+      [-95, 9],
+      [-32, -43],
+      [-82, -2],
+      [-167, -49],
+      [-39, -89],
+      [-44, 2],
+      [-77, 124],
+      [-81, 59],
+      [-132, -51],
+      [-98, 5],
+      [-41, -136],
+      [-60, -59],
+      [-52, -115],
+      [-1, -46],
+      [47, -64],
+      [-76, -10],
+      [-143, 22],
+      [-276, -7],
+      [-40, -8],
+      [-119, 29],
+      [-29, 133],
+      [-80, 64],
+      [-116, -99],
+      [-61, 9]
+    ],
+    [
+      [18110, 11340],
+      [-47, 55],
+      [37, 89],
+      [-32, 66],
+      [-153, -45],
+      [-53, 31],
+      [-24, 74],
+      [-54, 57],
+      [-125, -1],
+      [-33, 113],
+      [-43, 34],
+      [-167, -29],
+      [0, 276],
+      [-77, -22],
+      [-95, -65],
+      [-117, -18],
+      [-219, 36],
+      [-115, 101],
+      [7, 43],
+      [-61, 63],
+      [-10, 102],
+      [-71, 10],
+      [-101, -38],
+      [-73, 92],
+      [-79, 8],
+      [-29, 85],
+      [-128, 20],
+      [-96, 111],
+      [11, 28],
+      [-122, 174],
+      [-114, 13],
+      [-45, 114],
+      [25, 59],
+      [-95, 46],
+      [-28, 47],
+      [2, 103],
+      [81, -9],
+      [46, 43],
+      [-22, 70],
+      [-73, -12],
+      [-20, -52],
+      [-69, -30],
+      [-13, 79],
+      [-67, 17],
+      [-51, 48],
+      [-22, 82],
+      [67, 105],
+      [-55, 29],
+      [-84, -110],
+      [-53, 22],
+      [-28, 119],
+      [-102, -13],
+      [14, 103],
+      [-107, 28],
+      [-143, -37],
+      [4, 126],
+      [-102, -2],
+      [-25, 57],
+      [37, 51],
+      [-7, 58],
+      [-77, -30],
+      [-36, 16],
+      [-131, -54],
+      [-60, -4]
+    ],
+    [
+      [14688, 13872],
+      [-101, 228],
+      [-53, 278],
+      [-86, 410],
+      [-69, 277],
+      [10, 39],
+      [-37, 109],
+      [-36, 42],
+      [-8, 235],
+      [-28, 215],
+      [-44, 250],
+      [-24, 29],
+      [-51, 273],
+      [-40, 176],
+      [-86, 194],
+      [-44, 5],
+      [-78, 88],
+      [-29, 84],
+      [-30, 203],
+      [-38, 168],
+      [-38, 43],
+      [-88, 268],
+      [-38, 213],
+      [-80, 213],
+      [2, 42],
+      [-98, -1],
+      [-11, 75],
+      [-69, 135],
+      [5, 156],
+      [-36, 88],
+      [-62, 73],
+      [-90, -53],
+      [-38, 59],
+      [-80, 64],
+      [-72, 16],
+      [-38, 43],
+      [74, 29],
+      [-4, 50],
+      [-60, 135]
+    ],
+    [
+      [13058, 20567],
+      [34, 116],
+      [-14, 51],
+      [72, 62],
+      [64, 2],
+      [45, 66],
+      [58, -79],
+      [67, 20],
+      [40, -32],
+      [129, 56],
+      [54, 77],
+      [-14, 36],
+      [40, 80],
+      [-74, 3],
+      [36, 63],
+      [64, -3],
+      [-16, 62],
+      [95, 116],
+      [63, 165],
+      [9, 56],
+      [-60, 24],
+      [-111, -51],
+      [-42, 57],
+      [140, 118],
+      [120, -54],
+      [17, 58],
+      [-13, 68],
+      [15, 91],
+      [33, 16],
+      [-10, 80],
+      [-53, 55],
+      [-136, 25],
+      [-3, 54],
+      [-66, -12],
+      [-24, 41],
+      [-69, -4],
+      [-55, 143],
+      [42, 109],
+      [-9, 119],
+      [-37, -5],
+      [-60, 57],
+      [-40, 106],
+      [67, 20],
+      [55, 57],
+      [118, -61],
+      [39, 119],
+      [82, 46],
+      [70, 14],
+      [51, 53],
+      [123, 13],
+      [-4, -95],
+      [53, -93],
+      [147, 69],
+      [118, 77],
+      [-75, 52],
+      [25, 60],
+      [54, 26],
+      [4, 93],
+      [85, 2],
+      [93, 76],
+      [157, 27],
+      [10, 24],
+      [151, -2],
+      [-17, 36],
+      [-9, 163],
+      [81, 56],
+      [9, 61],
+      [112, 91],
+      [98, -17],
+      [101, 20],
+      [1, -60],
+      [96, -66],
+      [6, -45],
+      [68, -20],
+      [25, -52],
+      [103, -3],
+      [24, 51],
+      [92, 26],
+      [4, 183],
+      [133, -2],
+      [109, 55],
+      [80, -30],
+      [81, 51],
+      [55, -93],
+      [81, 48],
+      [89, -5],
+      [-1, 98],
+      [87, -7],
+      [3, -77],
+      [75, -43],
+      [74, 29],
+      [-22, 45],
+      [8, 121],
+      [-53, 25],
+      [73, 57],
+      [-16, 98],
+      [-94, 108],
+      [-1, 60],
+      [73, 64],
+      [-14, 131],
+      [-56, 4],
+      [-58, 72],
+      [16, 90],
+      [-64, 21],
+      [-12, 73],
+      [82, 21],
+      [-1, 70],
+      [45, 128],
+      [99, -55],
+      [23, -95],
+      [101, 21],
+      [72, -35],
+      [27, -64],
+      [64, -21],
+      [23, 115],
+      [75, -28],
+      [85, -4],
+      [-2, -121],
+      [82, -68],
+      [152, 32],
+      [34, 29],
+      [105, 3],
+      [34, -50],
+      [51, 74],
+      [42, 10],
+      [93, -59],
+      [43, 36],
+      [101, 16],
+      [91, -16],
+      [12, -60],
+      [91, -3],
+      [58, 48],
+      [19, -91],
+      [65, 3],
+      [64, 83],
+      [-6, 50],
+      [-101, 13],
+      [24, 137],
+      [-87, -5],
+      [-6, 85],
+      [42, 7],
+      [-40, 284],
+      [185, 22],
+      [29, 93],
+      [122, 58],
+      [4, 101],
+      [82, 4],
+      [0, 101],
+      [80, 10],
+      [21, -137],
+      [39, 9],
+      [37, 111],
+      [50, 1],
+      [9, -63],
+      [54, -29],
+      [17, -66],
+      [64, 40],
+      [57, 99],
+      [3, 86],
+      [44, -14],
+      [81, 47],
+      [26, 63],
+      [-49, 56],
+      [-63, 14],
+      [7, 95],
+      [56, 1],
+      [19, -50],
+      [174, 49],
+      [60, -11],
+      [71, 102],
+      [14, 111],
+      [-4, 111],
+      [75, 10],
+      [3, 167],
+      [-68, 14],
+      [70, 159],
+      [82, 4],
+      [14, -45],
+      [131, -34],
+      [113, 1],
+      [16, 34],
+      [-45, 64],
+      [96, 28],
+      [39, 106],
+      [46, 66],
+      [62, -9],
+      [8, 83],
+      [38, 72],
+      [29, 148],
+      [160, 71],
+      [113, -22],
+      [12, -68],
+      [67, -7],
+      [-17, -132],
+      [-66, -74],
+      [99, -21],
+      [127, -91],
+      [104, 51],
+      [16, 58],
+      [66, -37]
+    ],
+    [
+      [18110, 11340],
+      [-5, -79],
+      [-90, -6],
+      [-21, -67],
+      [-160, -67],
+      [-59, 66],
+      [-100, -66],
+      [17, -106],
+      [54, -105],
+      [44, 3],
+      [94, -69],
+      [29, 33],
+      [61, -25],
+      [191, -154],
+      [197, -69],
+      [4, -71],
+      [-58, -136],
+      [-148, -73],
+      [-7, -70],
+      [138, 4],
+      [34, -27],
+      [124, 15],
+      [100, -26],
+      [162, 106],
+      [65, -58],
+      [-11, -50],
+      [-78, -62],
+      [24, -58],
+      [96, -53],
+      [12, -60],
+      [-25, -46],
+      [49, -91],
+      [-99, 18],
+      [-47, -35],
+      [-28, -87],
+      [-38, -44],
+      [-17, -94],
+      [176, -90],
+      [88, 1],
+      [98, -45],
+      [94, -144],
+      [62, 0],
+      [20, -67],
+      [-49, -148],
+      [-44, -79],
+      [33, -20],
+      [6, -80],
+      [-149, -7],
+      [23, -88],
+      [31, -7],
+      [-27, -339],
+      [-22, -55],
+      [18, -65],
+      [52, -62],
+      [-43, -149],
+      [93, -30],
+      [67, -115],
+      [196, -30],
+      [125, 66],
+      [17, 60],
+      [60, 50],
+      [90, 34],
+      [107, 83],
+      [130, -14],
+      [-17, -80],
+      [80, -120],
+      [1, -68],
+      [64, -40],
+      [-35, -63],
+      [-7, -118],
+      [-68, -20],
+      [-93, -57],
+      [134, -184],
+      [-18, -30],
+      [45, -91],
+      [-86, -94],
+      [-51, -132],
+      [55, -53],
+      [-11, -69],
+      [33, -57],
+      [-53, -20],
+      [-3, -134],
+      [-41, -15],
+      [4, -67],
+      [-57, -88],
+      [-22, -108],
+      [67, 10],
+      [81, -77],
+      [84, -14],
+      [95, 61],
+      [102, -122],
+      [-1, -32],
+      [101, -69],
+      [-53, -118],
+      [-45, 10],
+      [-66, -102],
+      [-2, -126],
+      [-119, -139],
+      [-16, -154],
+      [-20, -79],
+      [3, -109],
+      [-42, -58],
+      [-81, -68],
+      [-34, -101],
+      [-58, -19],
+      [-48, -58],
+      [106, -149],
+      [57, -125],
+      [74, -58],
+      [16, -84],
+      [-65, -80],
+      [-6, -49],
+      [-84, -95],
+      [6, -81],
+      [42, -136],
+      [66, -65],
+      [81, -174],
+      [-39, -84],
+      [-55, -30],
+      [-70, 0],
+      [41, -117],
+      [-45, -7],
+      [-20, -59],
+      [-57, -73],
+      [-9, -129],
+      [-61, 3],
+      [-69, -59]
+    ],
+    [
+      [19577, 3568],
+      [-164, 136],
+      [-82, 58],
+      [-34, 83],
+      [-216, 274],
+      [-353, 459],
+      [-74, 117],
+      [-113, 151],
+      [-85, 70],
+      [-33, -3],
+      [-54, 84],
+      [-50, 237],
+      [-33, 66],
+      [-329, 755],
+      [-32, 89],
+      [-63, 257],
+      [-23, 145],
+      [-36, 380],
+      [-51, 296],
+      [-51, 181],
+      [49, 14],
+      [17, -70],
+      [60, -30],
+      [-14, -64],
+      [92, -43],
+      [27, -88],
+      [62, -40],
+      [-25, -48],
+      [27, -128],
+      [-17, -89],
+      [59, -54],
+      [0, -49],
+      [-52, -109],
+      [-31, -165],
+      [9, -33],
+      [316, 9],
+      [-182, 70],
+      [26, 121],
+      [-60, 82],
+      [25, 114],
+      [-69, 18],
+      [18, 87],
+      [-48, 121],
+      [39, 38],
+      [-1, 69],
+      [-71, 162],
+      [-24, -59],
+      [-52, 8],
+      [-108, 233],
+      [5, 60],
+      [-47, 88],
+      [18, 76],
+      [-86, 94],
+      [-26, -59],
+      [67, -165],
+      [9, -106],
+      [-42, -17],
+      [-92, 355],
+      [-100, 297],
+      [-51, 193],
+      [-74, 197],
+      [-88, 180],
+      [-5, 62],
+      [-44, 41],
+      [-236, 560],
+      [-73, 351],
+      [-96, 371],
+      [-68, 135],
+      [-121, 361],
+      [-99, 226],
+      [-46, 76],
+      [-139, 90],
+      [-97, 277],
+      [-97, 222],
+      [-124, 135],
+      [-43, 17],
+      [-25, 62],
+      [-82, 95],
+      [-83, 31],
+      [-147, 204],
+      [-22, 107],
+      [46, 146]
+    ],
+    [
+      [15665, 12242],
+      [-34, 23],
+      [71, 111],
+      [25, -21],
+      [63, 53],
+      [-73, 53],
+      [-126, -98],
+      [-91, 20],
+      [-34, -22],
+      [21, -177]
+    ],
+    [
+      [15487, 12184],
+      [-57, -45],
+      [-42, 82],
+      [-31, 173],
+      [-75, 163],
+      [-43, 47],
+      [-101, 263],
+      [-59, 137],
+      [-70, 97],
+      [-87, 180],
+      [-139, 364],
+      [-95, 227]
+    ],
+    [
+      [10760, 3638],
+      [-26, -46],
+      [-4, -51],
+      [-41, -45],
+      [-25, -1],
+      [61, 72],
+      [8, 28],
+      [27, 43]
+    ],
+    [
+      [27418, 33700],
+      [-85, -26],
+      [-55, 13],
+      [-63, 76],
+      [-99, 73],
+      [-156, 30],
+      [-12, -66],
+      [-96, 15],
+      [-22, 63],
+      [49, 71],
+      [-23, 63],
+      [-57, 59],
+      [-10, 69],
+      [-72, 41],
+      [-39, 81],
+      [-54, 4],
+      [-78, 103],
+      [-87, -1],
+      [-71, 34],
+      [-97, -68],
+      [-56, 9],
+      [-121, -125],
+      [-82, 5],
+      [-72, -51],
+      [-48, 47],
+      [-98, -3],
+      [-25, -68],
+      [-129, 15],
+      [-71, 37],
+      [-73, 80],
+      [-130, 49],
+      [-180, -101],
+      [-92, -7],
+      [-72, -29],
+      [-87, 2],
+      [7, 48],
+      [-74, 58],
+      [14, 84],
+      [-52, 110],
+      [-66, 31],
+      [-104, 8],
+      [-37, -38],
+      [-241, 45],
+      [-60, 55],
+      [-50, -6],
+      [-37, -78],
+      [-3, -72],
+      [-152, 24],
+      [-14, -49],
+      [-82, -69],
+      [-208, -19],
+      [-76, 37],
+      [-76, -55],
+      [-59, -3],
+      [-2, -67],
+      [42, -175],
+      [-79, 30],
+      [-23, -35],
+      [-90, 10],
+      [-183, 0],
+      [-81, -59],
+      [-88, 41],
+      [-139, -10],
+      [-79, 21],
+      [-55, 64],
+      [-113, 32],
+      [-62, -51],
+      [-92, -6],
+      [-36, 139],
+      [1, 88],
+      [-99, -14],
+      [-37, -40],
+      [-53, 28],
+      [-40, -35],
+      [-104, 41],
+      [-4, -52],
+      [-119, -39],
+      [-76, 11],
+      [-25, -139],
+      [-232, -138],
+      [-45, -9],
+      [-139, -74],
+      [-178, -56],
+      [-220, 78],
+      [-13, -50],
+      [-103, -15],
+      [-18, -41],
+      [-75, 26],
+      [-75, -11],
+      [-53, 47],
+      [-100, -10],
+      [2, -55],
+      [-116, 37],
+      [-135, -8],
+      [-39, 183],
+      [-69, 37],
+      [-38, 100],
+      [6, 61],
+      [75, 32],
+      [103, -4],
+      [137, -58],
+      [89, 31],
+      [-77, 103],
+      [-30, 188],
+      [-36, 74],
+      [-100, 112],
+      [-103, 33],
+      [-107, -17],
+      [-140, 12],
+      [-133, -4],
+      [22, -54],
+      [-64, -47],
+      [-73, 4],
+      [-38, -55],
+      [-190, 73],
+      [-115, -9],
+      [-21, -28],
+      [-136, -64],
+      [-232, -188],
+      [-87, 34],
+      [-41, -51],
+      [-84, 10],
+      [-34, -81],
+      [12, -63],
+      [-50, -29],
+      [64, -76],
+      [-17, -54],
+      [-90, -54],
+      [-24, -79],
+      [-140, -91],
+      [-94, -92],
+      [77, -109],
+      [-83, -208],
+      [-140, 31],
+      [-67, -39],
+      [-83, 20],
+      [-36, -106],
+      [-49, -86],
+      [-90, -17],
+      [-78, -70],
+      [-208, -4],
+      [-27, 41],
+      [-188, -7],
+      [-106, 83],
+      [-48, 89],
+      [30, 31],
+      [87, -17],
+      [-17, 205],
+      [-66, 89],
+      [-67, 176],
+      [-102, -49],
+      [-39, 29],
+      [-109, 28],
+      [-36, 39],
+      [-115, -10],
+      [-62, 23],
+      [-122, -38],
+      [-69, 16],
+      [-93, -11],
+      [-115, 13],
+      [-73, -25],
+      [-97, 2],
+      [-22, 28],
+      [-157, -48],
+      [-52, 34],
+      [-123, 16],
+      [-185, -20],
+      [-178, 22],
+      [-3, 46],
+      [-106, -20],
+      [-75, 11],
+      [-198, 88],
+      [-51, 47],
+      [-36, 104],
+      [-71, 117],
+      [-88, 18],
+      [-82, 54],
+      [-120, 33],
+      [-51, 45],
+      [-80, 3],
+      [-90, -49],
+      [-223, 32],
+      [-148, 70],
+      [-149, 26],
+      [-62, 52],
+      [-21, 73],
+      [-88, 19],
+      [13, 91],
+      [-29, 93],
+      [18, 32],
+      [13, 151],
+      [21, 52],
+      [-75, 105],
+      [-92, 31],
+      [-35, 146],
+      [-104, -25],
+      [-94, -104],
+      [-97, -19],
+      [-20, -68],
+      [-195, -28],
+      [-127, 66]
+    ],
+    [
+      [13491, 37705],
+      [55, 18],
+      [95, 96],
+      [93, -15],
+      [75, -47],
+      [99, 8],
+      [50, 29],
+      [23, 71],
+      [137, 29],
+      [134, 131],
+      [102, -15],
+      [67, 40],
+      [-98, 139],
+      [-62, 6],
+      [-90, -26],
+      [-37, 49],
+      [-147, 5],
+      [-32, 83],
+      [26, 95],
+      [59, 45],
+      [1, 83],
+      [56, 24],
+      [33, 73],
+      [100, 13],
+      [23, 39],
+      [160, 83],
+      [70, 55],
+      [64, -22],
+      [106, 54],
+      [76, 114],
+      [44, 38],
+      [74, 17],
+      [-34, 88],
+      [0, 117],
+      [36, 37],
+      [-28, 146],
+      [-38, 6],
+      [12, 104],
+      [-24, 52],
+      [21, 102],
+      [59, 111],
+      [48, 31],
+      [20, 69],
+      [46, 60],
+      [-74, 186],
+      [-45, 26],
+      [-25, 83],
+      [-60, 40],
+      [-45, 97],
+      [57, 40],
+      [-67, 102],
+      [-49, -18],
+      [-83, 16],
+      [-94, -12],
+      [-33, 56],
+      [57, 48],
+      [2, 117],
+      [61, 97],
+      [100, 97],
+      [-95, 95],
+      [-126, -8],
+      [-91, 78],
+      [70, 31],
+      [21, 64],
+      [-20, 76],
+      [92, 33],
+      [-14, 60],
+      [74, 80],
+      [-90, 34],
+      [29, 94],
+      [-21, 37],
+      [85, 52],
+      [121, -222],
+      [63, -30],
+      [92, 14],
+      [44, 88],
+      [79, 19],
+      [-14, 102],
+      [58, 0],
+      [-16, 95],
+      [-93, -7],
+      [-144, 15],
+      [-102, 36],
+      [-6, 93],
+      [-63, 106],
+      [-7, 95],
+      [19, 63],
+      [65, -3],
+      [11, -67],
+      [73, 6],
+      [27, -94],
+      [71, -49],
+      [149, -9],
+      [67, -34],
+      [67, 65],
+      [99, 4],
+      [-7, 177],
+      [49, 48],
+      [58, 12],
+      [-21, 86],
+      [42, 58],
+      [59, -45],
+      [242, 27],
+      [86, -10],
+      [4, -38],
+      [-72, -43],
+      [41, -101],
+      [-44, -129],
+      [-65, 44],
+      [-46, -28],
+      [-12, -57],
+      [109, -46],
+      [33, 40],
+      [101, -21],
+      [115, 35],
+      [-16, -67],
+      [-256, -113],
+      [-37, 81],
+      [-93, 25],
+      [19, 80],
+      [-107, -26],
+      [99, -144],
+      [-64, -4],
+      [-55, -73],
+      [7, -66],
+      [72, -58],
+      [492, -97],
+      [69, 10],
+      [114, 52],
+      [102, 6],
+      [70, -79],
+      [100, 31],
+      [46, 60],
+      [136, 76],
+      [98, 11],
+      [115, -82],
+      [-23, -143],
+      [35, 3],
+      [19, -127],
+      [47, -17],
+      [23, -58],
+      [58, -11],
+      [-9, -62],
+      [40, -28],
+      [-43, -76],
+      [-5, -137],
+      [-92, -53],
+      [-71, -2],
+      [-95, 83],
+      [-110, -127],
+      [5, -128],
+      [59, -86],
+      [71, 8],
+      [35, -31],
+      [-17, -164],
+      [-70, -21],
+      [-66, -188],
+      [77, -11],
+      [24, -58],
+      [90, -4],
+      [-2, -83],
+      [-110, -23],
+      [2, -60],
+      [-40, -88],
+      [-136, -67],
+      [-69, 149],
+      [-75, -78],
+      [-144, -1],
+      [5, 42],
+      [-87, 32],
+      [-39, 40],
+      [-50, -102],
+      [-59, -55],
+      [-18, -139],
+      [68, -23],
+      [36, -43],
+      [129, -78],
+      [8, -99],
+      [36, -35],
+      [75, 13],
+      [72, -15],
+      [83, -60],
+      [24, 33],
+      [-17, 74],
+      [70, 16],
+      [12, 87],
+      [-65, 29],
+      [9, 63],
+      [57, -5],
+      [68, -48],
+      [46, -61],
+      [161, 91],
+      [56, -22],
+      [214, 112],
+      [9, 95],
+      [-44, 54],
+      [0, 64],
+      [66, 11],
+      [81, 47],
+      [36, 55],
+      [201, 49],
+      [5, 83],
+      [-30, 171],
+      [68, 89],
+      [-26, 87],
+      [59, 34],
+      [36, 82],
+      [45, -48],
+      [-25, -60],
+      [25, -120],
+      [155, -38],
+      [91, 80],
+      [77, -5],
+      [129, -91],
+      [26, 40],
+      [88, 5],
+      [99, -66],
+      [32, -86],
+      [125, 40],
+      [-19, 76],
+      [94, 66],
+      [5, 48],
+      [137, 18],
+      [52, -50],
+      [-62, -128],
+      [103, -74],
+      [105, 7],
+      [49, -90],
+      [81, 0],
+      [62, 31],
+      [97, -18],
+      [35, 133],
+      [61, 23],
+      [-153, 167],
+      [-82, 208],
+      [27, 17],
+      [-15, 93],
+      [20, 140],
+      [-81, 151],
+      [69, 39],
+      [118, -8],
+      [41, -28],
+      [-8, -111],
+      [100, -63],
+      [71, 30],
+      [127, 123],
+      [31, 87],
+      [-11, 181],
+      [-88, 168],
+      [-104, 38],
+      [-19, 65],
+      [-92, -25],
+      [-168, 7],
+      [4, 42],
+      [-98, 131],
+      [77, 33],
+      [127, -4],
+      [69, 24],
+      [49, 54],
+      [-77, 34],
+      [24, 52],
+      [-116, 103],
+      [-6, 130],
+      [70, 53],
+      [149, 51],
+      [33, 50],
+      [205, -45],
+      [82, 25],
+      [31, 46],
+      [64, -1],
+      [27, 58],
+      [112, -8],
+      [91, 21],
+      [90, -82],
+      [100, 33],
+      [84, 56],
+      [9, 153],
+      [60, 11],
+      [-26, 77],
+      [-96, 55],
+      [-28, 50],
+      [55, 79],
+      [-67, 189],
+      [37, 58],
+      [-123, 55],
+      [-187, -146],
+      [-5, -97],
+      [-60, -46],
+      [-82, 4],
+      [-83, 50],
+      [-88, 11],
+      [-80, -34],
+      [-33, -55],
+      [-144, -9],
+      [-13, -43],
+      [-131, 101],
+      [-111, 19],
+      [-154, -34],
+      [-13, 47],
+      [-58, 27],
+      [-131, -6],
+      [-98, 81],
+      [-74, 20],
+      [-30, 98],
+      [-54, 25],
+      [-11, 72],
+      [-86, 131],
+      [-23, 115],
+      [11, 125],
+      [-34, 33],
+      [25, 57],
+      [-73, 52],
+      [11, 53],
+      [97, 30],
+      [6, 154],
+      [150, 182],
+      [75, -3],
+      [21, 72],
+      [73, 13],
+      [129, -22],
+      [64, 45],
+      [-4, 48],
+      [75, 4],
+      [53, 62],
+      [47, 93],
+      [-21, 42],
+      [88, 62],
+      [38, 85],
+      [112, 30],
+      [123, 73],
+      [64, 89],
+      [160, 44],
+      [38, 83],
+      [112, 31],
+      [65, -20],
+      [160, 93],
+      [90, 90],
+      [22, 72],
+      [106, 58],
+      [145, -15],
+      [-10, 97],
+      [209, 19],
+      [63, 59],
+      [105, 32],
+      [61, 66],
+      [97, 62],
+      [53, -20],
+      [70, 33],
+      [27, 63],
+      [61, 25],
+      [101, 3],
+      [17, 104],
+      [48, 36],
+      [81, 12],
+      [54, 106],
+      [79, -8],
+      [64, 32],
+      [51, 60],
+      [211, -37],
+      [3, 119],
+      [49, 27],
+      [-36, 92],
+      [52, 30],
+      [59, -25],
+      [74, 22],
+      [-41, 60],
+      [108, 21]
+    ],
+    [
+      [22038, 46429],
+      [101, -37],
+      [58, 101],
+      [177, 17],
+      [50, -100],
+      [89, 10],
+      [71, -86],
+      [126, -23],
+      [111, -64],
+      [79, -4],
+      [41, 45],
+      [85, -14],
+      [40, 53],
+      [83, 19],
+      [57, -18],
+      [46, -60],
+      [109, -3],
+      [117, -140],
+      [86, 20],
+      [97, -39],
+      [0, -79],
+      [79, 54],
+      [38, -27],
+      [-32, -62],
+      [42, -85],
+      [-52, -38],
+      [35, -100],
+      [77, -34],
+      [61, -76],
+      [-30, -97],
+      [48, -34],
+      [53, 25],
+      [74, -29],
+      [-21, -64],
+      [-80, -27],
+      [18, -66],
+      [61, -54],
+      [22, -87],
+      [-63, -3],
+      [-45, -63],
+      [-43, -8],
+      [-38, -126],
+      [-85, -76],
+      [-3, -96],
+      [-89, -2],
+      [-35, -39],
+      [129, -128],
+      [-45, -19],
+      [-84, -85],
+      [-3, -107],
+      [-61, -96],
+      [-85, -77],
+      [16, -91],
+      [-57, -10],
+      [-31, -62],
+      [48, -25],
+      [-5, -75],
+      [-105, 67],
+      [-88, -161],
+      [-63, -29],
+      [30, -65],
+      [67, -24],
+      [44, -83],
+      [0, -67],
+      [-36, -65],
+      [-259, -54],
+      [-62, -66],
+      [-98, 50],
+      [-51, -53],
+      [-74, 1],
+      [-146, 36],
+      [-70, -64],
+      [-51, 21],
+      [-38, -66],
+      [28, -123],
+      [-78, -59],
+      [-111, -54],
+      [-6, -61],
+      [-85, -86],
+      [64, -28],
+      [18, -43],
+      [-51, -59],
+      [81, -31],
+      [38, -75],
+      [-15, -36],
+      [66, -126],
+      [124, -88],
+      [-38, -75],
+      [-77, 5],
+      [-50, -52],
+      [-91, -47],
+      [28, -131],
+      [-23, -64],
+      [-84, -73],
+      [-166, -122],
+      [-31, -44],
+      [-65, -26],
+      [-11, -85],
+      [47, -13],
+      [86, -153],
+      [1, -93],
+      [92, -154],
+      [-25, -49],
+      [29, -77],
+      [-32, -146],
+      [-69, -25],
+      [34, -120],
+      [52, -15],
+      [8, -82],
+      [211, -160],
+      [-79, -92],
+      [32, -71],
+      [98, -80],
+      [108, 57],
+      [12, 64],
+      [60, 32],
+      [17, 65],
+      [54, 62],
+      [116, -78],
+      [56, -8],
+      [86, -141],
+      [82, -52],
+      [32, -66],
+      [65, -24],
+      [61, 42],
+      [61, -13],
+      [67, -143],
+      [57, 54],
+      [105, 11],
+      [50, 36],
+      [-5, 58],
+      [68, 44],
+      [-4, 65],
+      [132, 129],
+      [-2, 38],
+      [45, 126],
+      [-12, 45],
+      [-83, -10],
+      [-69, 47],
+      [-26, 58],
+      [92, -8],
+      [6, 158],
+      [-72, 65],
+      [-69, 135],
+      [-41, 3],
+      [-71, -75],
+      [-63, -2],
+      [-55, -34],
+      [-55, 21],
+      [-26, 133],
+      [71, 103],
+      [-17, 210],
+      [35, 46],
+      [-36, 107],
+      [-149, 77],
+      [-62, 18],
+      [-32, 97],
+      [-63, 41],
+      [37, 230],
+      [-48, 69],
+      [-50, 15],
+      [-8, 137],
+      [-71, 162],
+      [16, 72],
+      [-105, 68],
+      [-70, 10],
+      [-77, -50],
+      [-53, 61],
+      [86, 15],
+      [41, 39],
+      [82, -32],
+      [19, 57],
+      [94, 48],
+      [3, 58],
+      [56, 93],
+      [64, 37],
+      [125, 28],
+      [24, -44],
+      [-93, -88],
+      [114, -28],
+      [57, -62],
+      [63, 21],
+      [-12, 106],
+      [14, 60],
+      [-89, 77],
+      [143, 46],
+      [141, -72],
+      [7, 35],
+      [-51, 113],
+      [93, 19],
+      [21, 84],
+      [88, -2],
+      [36, -66],
+      [-56, -34],
+      [41, -52],
+      [-11, -59],
+      [-59, -50],
+      [57, -43],
+      [68, 24],
+      [22, -42],
+      [9, -111],
+      [-219, 35],
+      [-81, -82],
+      [-10, -48],
+      [-88, -89],
+      [92, -138],
+      [24, 1],
+      [36, 114],
+      [-13, 78],
+      [63, 69],
+      [101, -33],
+      [86, -95],
+      [-136, -39],
+      [-26, -57],
+      [-54, 2],
+      [21, -81],
+      [-31, -59],
+      [21, -64],
+      [104, 111],
+      [63, 24],
+      [65, -50],
+      [39, 39],
+      [-62, 62],
+      [32, 74],
+      [57, -2],
+      [31, -91],
+      [65, -21],
+      [-70, -90],
+      [87, -33],
+      [59, 9],
+      [62, -30],
+      [-25, -45],
+      [57, -76],
+      [142, 40],
+      [89, -27],
+      [26, 103],
+      [57, -94],
+      [84, 73],
+      [-68, 87],
+      [-12, 49],
+      [138, 45],
+      [-2, 98],
+      [-56, -26],
+      [-62, 45],
+      [-66, -3],
+      [8, 71],
+      [76, 69],
+      [236, -141],
+      [-1, -39],
+      [72, -47],
+      [18, -49],
+      [-72, -28],
+      [-57, -89],
+      [12, -115],
+      [104, -29],
+      [118, -58],
+      [60, 44],
+      [-8, 55],
+      [80, 101],
+      [182, -84],
+      [73, -14],
+      [162, 37],
+      [192, -99],
+      [74, 129],
+      [-34, 186],
+      [60, 40],
+      [46, -17],
+      [123, 44],
+      [105, 11],
+      [52, 169],
+      [108, 0],
+      [29, 29],
+      [97, -35],
+      [70, 86],
+      [63, 14],
+      [2, 52],
+      [124, -3],
+      [63, 46],
+      [78, -77],
+      [-14, -77],
+      [20, -56],
+      [-20, -86],
+      [84, -42],
+      [37, -64],
+      [96, -70],
+      [49, -108],
+      [-81, -26],
+      [-84, -51],
+      [-97, -151],
+      [-50, -28],
+      [-33, -77],
+      [104, -61],
+      [118, 50],
+      [58, 108],
+      [102, 23],
+      [65, -86],
+      [71, 42],
+      [90, 11],
+      [78, 48],
+      [35, 154],
+      [61, -76],
+      [-31, -54],
+      [73, -13],
+      [70, -90],
+      [118, 41],
+      [107, -24],
+      [0, 52],
+      [-125, 46],
+      [-4, 58],
+      [74, 29],
+      [149, -26],
+      [51, 87],
+      [61, 48],
+      [79, -56],
+      [-89, -95],
+      [13, -121],
+      [-92, -95],
+      [47, -62],
+      [-70, -68],
+      [-36, -68],
+      [120, -20],
+      [176, 85],
+      [35, -76],
+      [104, 1],
+      [59, 34],
+      [109, -6],
+      [29, -64],
+      [85, -71],
+      [60, 88],
+      [13, 62],
+      [98, -45],
+      [-9, 131],
+      [40, 26],
+      [91, 142],
+      [-35, 86],
+      [27, 26],
+      [24, 111],
+      [135, 17],
+      [42, -12],
+      [87, -99],
+      [86, 21],
+      [19, -86],
+      [104, -49],
+      [20, 82],
+      [-34, 25],
+      [32, 63],
+      [59, 8],
+      [30, 77],
+      [74, 24],
+      [34, -63],
+      [84, -30],
+      [-61, -44],
+      [88, -77],
+      [-83, -61],
+      [61, -46],
+      [54, 42],
+      [68, -24],
+      [9, -48],
+      [76, 21],
+      [166, -99],
+      [83, 21],
+      [159, -84],
+      [19, -144],
+      [-17, -84],
+      [53, -54],
+      [84, -45],
+      [88, 21],
+      [169, -66],
+      [67, -69],
+      [44, 29],
+      [59, -29],
+      [109, 13],
+      [-29, -79],
+      [94, -21],
+      [10, -122],
+      [108, -85],
+      [14, -85],
+      [69, -10],
+      [68, -51],
+      [107, -9],
+      [-13, 88],
+      [18, 51],
+      [-22, 60],
+      [41, 49],
+      [146, -69],
+      [70, 7],
+      [24, -61],
+      [299, 111],
+      [67, -56],
+      [-9, -63],
+      [163, -16],
+      [5, -102],
+      [62, 5],
+      [10, -109],
+      [-121, -25],
+      [-65, 36],
+      [-2, -102],
+      [46, -31],
+      [-28, -54],
+      [5, -116],
+      [-41, -95],
+      [25, -32],
+      [92, 4],
+      [8, -186],
+      [-30, -57],
+      [-1, -73],
+      [-51, -30],
+      [21, -127],
+      [-35, -68],
+      [-71, 12],
+      [-68, -22],
+      [97, -87],
+      [16, -38],
+      [102, -17],
+      [-20, -139],
+      [122, -28],
+      [14, -88]
+    ],
+    [
+      [26562, 27660],
+      [-45, -39],
+      [-47, -12],
+      [-24, 12],
+      [-15, -2],
+      [-13, -7],
+      [-17, -20],
+      [-11, -30],
+      [-48, 10],
+      [-6, 24],
+      [-14, 13],
+      [-21, -6],
+      [-14, -17],
+      [-12, 2],
+      [-34, -13],
+      [-12, -13],
+      [-11, 1],
+      [-9, 3],
+      [-14, 17],
+      [-30, 30],
+      [-5, 7],
+      [-5, 4],
+      [-79, 43],
+      [-75, 106],
+      [-176, 40],
+      [-35, 30],
+      [-49, 78],
+      [22, 9],
+      [47, 6],
+      [18, 17],
+      [12, 33],
+      [4, 182],
+      [-11, 46],
+      [-8, 32],
+      [-2, 7],
+      [7, 109],
+      [-3, 18],
+      [-16, 30],
+      [-21, 11],
+      [-56, -4],
+      [-43, -23],
+      [-22, 56],
+      [-7, 102],
+      [29, 43],
+      [76, 45],
+      [36, 35],
+      [9, 9],
+      [32, 8],
+      [5, 14],
+      [-1, 12],
+      [-44, 64],
+      [-5, 53],
+      [25, 76],
+      [30, 58],
+      [8, 11],
+      [28, 20],
+      [4, 20],
+      [-14, 42],
+      [0, 23],
+      [16, 38],
+      [5, 23],
+      [1, 32],
+      [8, 17],
+      [4, 22],
+      [1, 22],
+      [-7, 19],
+      [-23, 38],
+      [-30, 35],
+      [1, 23],
+      [-3, 19],
+      [-10, 13],
+      [-7, 5],
+      [-9, 5],
+      [-21, 20],
+      [-13, 18],
+      [-14, 16],
+      [-20, 10],
+      [-53, 9],
+      [-17, 10],
+      [-14, 20],
+      [-17, 8],
+      [-62, 46],
+      [-25, 74],
+      [-51, 26],
+      [-16, 22],
+      [-2, 9],
+      [-17, 10],
+      [-51, 10],
+      [-31, 2],
+      [-23, -15],
+      [-37, -31],
+      [-17, -4],
+      [-21, -1],
+      [-39, -10],
+      [-84, -4],
+      [-40, -23],
+      [-45, -132],
+      [-21, -14],
+      [-19, 3],
+      [-21, 8],
+      [-17, 10],
+      [-29, 21],
+      [-10, 14],
+      [-6, 18],
+      [-5, 34],
+      [-37, -6],
+      [-24, -9],
+      [-1, -3],
+      [3, -9],
+      [0, -34],
+      [-6, -10],
+      [-94, -47],
+      [-12, 27],
+      [-15, 23],
+      [-37, 33],
+      [-25, 4],
+      [-36, -4],
+      [-160, 93],
+      [-43, -4],
+      [-16, -15],
+      [-10, 38],
+      [-10, 19],
+      [-26, 15],
+      [-83, 34],
+      [-25, 3],
+      [-15, -7],
+      [1, -23],
+      [13, -14],
+      [11, -15],
+      [3, -22],
+      [-22, -42],
+      [-7, -75],
+      [-11, -14],
+      [-18, -9],
+      [-17, -15],
+      [-16, -59],
+      [22, -47],
+      [-65, -14],
+      [-25, 5],
+      [-19, 16],
+      [-27, 41],
+      [-36, 36],
+      [-78, 27],
+      [-4, 35],
+      [-64, 2],
+      [-23, 6],
+      [-7, 17],
+      [-19, 15],
+      [-28, 0],
+      [-45, -12],
+      [-56, 51],
+      [-32, -26],
+      [-53, 28],
+      [52, 40],
+      [-33, 86],
+      [11, 51],
+      [2, 23],
+      [-16, 22],
+      [-16, 11],
+      [-85, 10],
+      [-54, -29],
+      [-71, 2],
+      [1, 29],
+      [9, 25],
+      [0, 40],
+      [-4, 21],
+      [-9, 32],
+      [-1, 26],
+      [-8, 16],
+      [-17, 47],
+      [-3, 2],
+      [-13, 7],
+      [-29, -4],
+      [-18, 0],
+      [-21, -6],
+      [-9, 5],
+      [-14, 20],
+      [-27, 23],
+      [-102, 2],
+      [-14, -15],
+      [-16, -9],
+      [-18, -5],
+      [-32, 43],
+      [-13, 10],
+      [-21, 0],
+      [-84, 27],
+      [-64, 16],
+      [-204, 30],
+      [-16, -4],
+      [-15, -13],
+      [-6, -30],
+      [-13, -20],
+      [-21, 1],
+      [-10, 13],
+      [-12, 20],
+      [-17, 21],
+      [-26, 0],
+      [-79, 16],
+      [-43, 15],
+      [-25, 15],
+      [-19, 23],
+      [-7, 15],
+      [0, 7],
+      [-4, 18],
+      [2, 24],
+      [-2, 12],
+      [-40, 9],
+      [-42, -3],
+      [-23, 4],
+      [-24, 17],
+      [-5, 10],
+      [8, 10],
+      [17, 11],
+      [1, 14],
+      [-14, 14],
+      [-20, -2],
+      [-20, -6],
+      [-28, -91],
+      [-8, -55],
+      [20, -9],
+      [79, -15],
+      [0, -59],
+      [28, -8],
+      [19, -10],
+      [14, -26],
+      [2, -31],
+      [-15, -63],
+      [-17, -38],
+      [-17, -7],
+      [-2, -24],
+      [2, -25],
+      [-28, -11],
+      [-22, -11],
+      [-15, -31],
+      [-66, -2],
+      [-27, -45],
+      [-8, -16],
+      [6, -7],
+      [33, -13],
+      [11, -24],
+      [14, -48],
+      [26, -44],
+      [-2, -41],
+      [5, -19],
+      [-2, -15],
+      [-33, -31],
+      [-3, -49],
+      [8, -55],
+      [2, -22],
+      [9, -24],
+      [14, -17],
+      [5, -16],
+      [-1, -31],
+      [-32, -40],
+      [-13, 0],
+      [-20, 10],
+      [-20, 2],
+      [-14, -14],
+      [-11, -18],
+      [-21, -23],
+      [-14, -2],
+      [-47, 11],
+      [-81, -89],
+      [-7, -63],
+      [-7, -17],
+      [-4, -18],
+      [6, -18],
+      [11, -15],
+      [22, -16],
+      [-31, -122],
+      [1, -87],
+      [-30, -12],
+      [-44, -14],
+      [-23, 21],
+      [-28, 16],
+      [-60, -2],
+      [-9, 10],
+      [-29, 12],
+      [-15, -19],
+      [-39, -16],
+      [-14, 5],
+      [-7, 13],
+      [-5, 54],
+      [-41, 18],
+      [-19, 41],
+      [-15, 11],
+      [-35, 11],
+      [-22, 7],
+      [-19, 28],
+      [-23, 15],
+      [-9, 10],
+      [-30, 22],
+      [-80, -54],
+      [-42, 7],
+      [-12, -20],
+      [-28, -8],
+      [-31, -16],
+      [3, -15],
+      [-3, -18],
+      [2, -8],
+      [29, -10],
+      [56, -7],
+      [11, -22],
+      [-12, -26],
+      [-18, 2],
+      [-16, 7],
+      [-38, -11],
+      [1, -21],
+      [-12, -28],
+      [-2, -18],
+      [-7, -18],
+      [-13, -20],
+      [1, -12],
+      [-14, -18],
+      [-4, -20],
+      [18, -26],
+      [3, -11],
+      [-1, -7],
+      [-8, -4],
+      [-3, -19],
+      [1, -9],
+      [-25, -39],
+      [-15, -7],
+      [6, -6],
+      [11, -32],
+      [14, -11],
+      [-2, -42],
+      [-5, -22],
+      [-18, 0],
+      [-11, -4],
+      [-30, 43],
+      [-21, 0],
+      [-6, -4],
+      [-6, -7],
+      [-14, -64],
+      [8, -46],
+      [-6, -2],
+      [-8, 1],
+      [-17, 10],
+      [-12, -2],
+      [-15, 5],
+      [-21, 13],
+      [-1, -25],
+      [-8, -52],
+      [22, -109],
+      [43, 6],
+      [66, -4],
+      [-9, -52],
+      [5, -1],
+      [-5, -23],
+      [32, -9],
+      [7, 11],
+      [51, 4],
+      [-11, -48],
+      [-18, -46],
+      [35, -12],
+      [28, 9],
+      [27, -4],
+      [2, -28],
+      [12, -26],
+      [25, -40],
+      [15, -1],
+      [42, -19],
+      [42, -39],
+      [-4, -46],
+      [-77, 17],
+      [-106, -36],
+      [-48, -15],
+      [-31, -90],
+      [-45, -91],
+      [-1, -31],
+      [-35, -50],
+      [0, -24],
+      [-38, 15],
+      [-1, 26],
+      [-10, 15],
+      [-14, -2],
+      [-17, -22],
+      [-1, -18],
+      [-37, -32],
+      [-10, -28],
+      [11, -4],
+      [0, -15],
+      [-5, -1],
+      [-2, -17],
+      [-1, -6],
+      [0, -6],
+      [14, -28],
+      [15, -22],
+      [10, -74],
+      [-43, -87],
+      [-34, 7],
+      [-120, -63],
+      [-27, 21],
+      [9, 11],
+      [6, 20],
+      [-6, 0],
+      [-2, 6],
+      [-18, 3],
+      [-13, -20],
+      [-12, 13],
+      [-28, -5],
+      [-1, -13],
+      [-6, -1],
+      [-5, 12],
+      [-30, 0],
+      [-24, -103],
+      [17, -21],
+      [19, -6],
+      [2, -14],
+      [-6, -26],
+      [-17, -1],
+      [-5, 17],
+      [-32, 6],
+      [-13, -39],
+      [27, -55],
+      [-50, -18],
+      [-69, 12],
+      [-6, -30],
+      [22, -9],
+      [-2, -5],
+      [20, -2],
+      [24, -6],
+      [-13, -70],
+      [-17, -6],
+      [-44, -47],
+      [13, -59],
+      [33, -12],
+      [24, -6],
+      [37, -54],
+      [-33, -23],
+      [-11, -16]
+    ],
+    [
+      [12078, 20739],
+      [-65, 179],
+      [-54, 116],
+      [-33, 19],
+      [-55, 114],
+      [-167, 69],
+      [-40, 97],
+      [-21, 130],
+      [-37, 78],
+      [-36, 194],
+      [-71, 209],
+      [-25, 119],
+      [-83, 153],
+      [-28, 192],
+      [-52, 98],
+      [-44, 124],
+      [53, 43],
+      [-41, 92],
+      [76, 49],
+      [-41, 45],
+      [-6, 106],
+      [-54, 97],
+      [-1, 87],
+      [28, 65],
+      [-49, 50],
+      [3, 169],
+      [-33, 134],
+      [27, 88],
+      [-36, 111],
+      [24, 56],
+      [-8, 111],
+      [-28, 36],
+      [-57, 201],
+      [-52, 133],
+      [43, 117],
+      [-52, 33],
+      [-25, 123],
+      [-66, 7],
+      [16, 162],
+      [20, 20],
+      [-27, 96],
+      [-87, 89],
+      [47, 52],
+      [-79, 159],
+      [14, 37],
+      [-44, 83],
+      [47, 48],
+      [-53, 179],
+      [-31, 53],
+      [-56, 182],
+      [-38, 27],
+      [-4, 71],
+      [-50, 30],
+      [-17, 106],
+      [-34, 53],
+      [14, 52],
+      [-50, 149],
+      [-24, 19],
+      [19, 121],
+      [-14, 75],
+      [-81, 70],
+      [-20, 135],
+      [78, -24],
+      [7, -55],
+      [61, 1],
+      [136, -48],
+      [-20, 100],
+      [-42, -13],
+      [-59, 46],
+      [-36, -11],
+      [-86, 124],
+      [-86, 49],
+      [22, 86],
+      [-33, 16],
+      [-8, 97],
+      [-23, 40],
+      [36, 154],
+      [38, 25],
+      [-95, 210],
+      [-33, 30],
+      [-33, 131],
+      [20, 58],
+      [-2, 162],
+      [80, 30],
+      [36, -27],
+      [60, 82],
+      [30, -62],
+      [56, 21],
+      [-10, 122],
+      [-77, -40],
+      [-36, 12],
+      [-41, 80],
+      [32, 61],
+      [84, 27],
+      [-47, 54],
+      [34, 39],
+      [137, 40],
+      [-34, 67],
+      [-19, 113],
+      [-66, -1],
+      [-18, -73],
+      [-80, -63],
+      [-124, 7],
+      [-39, -170],
+      [-99, 69],
+      [26, 100],
+      [50, 53],
+      [-26, 63],
+      [10, 96],
+      [-18, 70],
+      [-65, 60],
+      [17, 111],
+      [-45, 55],
+      [18, 186],
+      [32, 66],
+      [-91, 104],
+      [6, 90],
+      [-33, 94],
+      [76, 83],
+      [-84, 57],
+      [-43, 74],
+      [-14, 97],
+      [34, 20],
+      [-40, 106],
+      [-5, 133],
+      [-51, 105],
+      [-17, 152],
+      [-58, 38],
+      [61, 81],
+      [-9, 126],
+      [-28, 25],
+      [127, 132],
+      [-31, 189],
+      [41, 32],
+      [24, 124]
+    ],
+    [
+      [58259, 43246],
+      [-14, -90],
+      [-99, -77],
+      [-20, -117],
+      [-52, -110],
+      [-29, -170],
+      [36, -47],
+      [317, -136],
+      [11, -169],
+      [-19, -88],
+      [-89, -131],
+      [9, -79],
+      [-30, -80],
+      [-78, -61],
+      [-34, -57],
+      [-35, -148],
+      [18, -46],
+      [-50, -99],
+      [-43, -26],
+      [-88, 13],
+      [-1, -96],
+      [-66, -134],
+      [-78, -80],
+      [-43, -16],
+      [-79, -190],
+      [-40, -55],
+      [-27, -130],
+      [-29, -66],
+      [-75, -99],
+      [-56, -7],
+      [3, -107],
+      [-32, -89],
+      [-40, -33],
+      [-25, -139],
+      [-46, -28],
+      [-7, -180],
+      [-32, -105],
+      [-111, -183],
+      [3, -63],
+      [-58, -21],
+      [-18, -176],
+      [-85, -23],
+      [-59, 118],
+      [-99, 15],
+      [-73, 78],
+      [-106, 0],
+      [-35, 37],
+      [-126, 11],
+      [-66, -39],
+      [-128, -11],
+      [-32, 79],
+      [-69, 85],
+      [-49, -11],
+      [-192, 33],
+      [-80, -7],
+      [-15, -86],
+      [-173, -29],
+      [-34, -32],
+      [-94, 55],
+      [-12, 66],
+      [-50, 66],
+      [-25, 78],
+      [-38, 41],
+      [-136, 42],
+      [-43, -17],
+      [7, -85]
+    ],
+    [
+      [55301, 39995],
+      [-108, -4],
+      [-54, 49],
+      [-81, 32],
+      [-22, -85],
+      [-91, 9],
+      [-61, 79],
+      [-40, -55],
+      [-60, 23],
+      [-50, 67],
+      [-57, -29],
+      [-71, 25],
+      [-77, 64],
+      [42, 73],
+      [40, 132],
+      [-37, 84],
+      [3, 61],
+      [60, 88],
+      [-30, 65],
+      [6, 101],
+      [-53, 30]
+    ],
+    [
+      [55602, 42899],
+      [6, -70],
+      [74, -8],
+      [-14, -52],
+      [129, -15],
+      [99, -103],
+      [174, 298],
+      [116, 123],
+      [15, 50],
+      [76, 43],
+      [72, 139],
+      [-109, 71],
+      [33, 52],
+      [89, 15],
+      [37, 43],
+      [56, -12],
+      [66, 25],
+      [161, -28],
+      [103, 44],
+      [126, -38],
+      [50, -61],
+      [102, -21],
+      [31, 56],
+      [86, 7],
+      [-3, -46],
+      [71, -79],
+      [113, 14],
+      [63, -19],
+      [270, 135],
+      [-7, 53],
+      [113, 106],
+      [38, -4],
+      [106, 72],
+      [74, 107],
+      [53, -24],
+      [-46, -98],
+      [17, -24],
+      [-62, -112],
+      [17, -107],
+      [-13, -62],
+      [149, -101],
+      [126, -22]
+    ],
+    [
+      [53297, 42257],
+      [-173, 47],
+      [-19, 67],
+      [-63, -18],
+      [-177, 63],
+      [-198, 104],
+      [-16, 49],
+      [-146, 54],
+      [-169, -33],
+      [-147, 26],
+      [-141, -22],
+      [-45, 11],
+      [-129, -32],
+      [-47, 26],
+      [-43, -67],
+      [-67, 19],
+      [-25, -46],
+      [-113, -38],
+      [-82, 47],
+      [-59, 69],
+      [-48, -54],
+      [-186, -36],
+      [-107, 74],
+      [-105, 1],
+      [-154, 39],
+      [-74, 49],
+      [-40, -21],
+      [-125, 10],
+      [-133, -14],
+      [-123, 9],
+      [-336, -85],
+      [-97, 8],
+      [-71, -19],
+      [-86, 15],
+      [-63, 50],
+      [-101, -50],
+      [-77, -16],
+      [-83, 74],
+      [-66, -35],
+      [-89, 8],
+      [-194, -10],
+      [-117, -63],
+      [-159, 44],
+      [-99, 72],
+      [-43, -11],
+      [-263, 54],
+      [-52, 25],
+      [-121, 4],
+      [-138, 89],
+      [-179, 86],
+      [-152, 14],
+      [-37, -40],
+      [-64, -5],
+      [-77, 142],
+      [-8, 83],
+      [73, 210]
+    ],
+    [
+      [47680, 43426],
+      [-3, 16]
+    ],
+    [
+      [55301, 39995],
+      [0, -163],
+      [61, -85],
+      [74, -37],
+      [1, -245],
+      [23, -24],
+      [-11, -89],
+      [27, -146],
+      [61, -69],
+      [-36, -66],
+      [10, -165],
+      [-11, -111],
+      [-44, -60],
+      [-21, -225],
+      [35, -53],
+      [-106, -78],
+      [29, -50],
+      [-2, -177],
+      [36, -74],
+      [-65, -249],
+      [-15, -89],
+      [-56, -98],
+      [-68, -63],
+      [-107, -4],
+      [-103, 116],
+      [-161, -22],
+      [-9, -108],
+      [74, -201],
+      [-54, -47],
+      [-36, -71],
+      [-12, -107],
+      [-38, -14],
+      [30, -153],
+      [-46, -80],
+      [51, -163],
+      [47, -37],
+      [20, -85],
+      [-66, -73],
+      [34, -66],
+      [8, -119],
+      [90, -54],
+      [34, -56],
+      [14, -109],
+      [10, -229],
+      [-25, -72],
+      [-95, -7],
+      [35, -149],
+      [-71, -7],
+      [-30, 51],
+      [-88, 20],
+      [-72, -37],
+      [23, -66],
+      [-18, -62],
+      [41, -84],
+      [-109, 7],
+      [-33, -115],
+      [19, -166],
+      [-47, -2],
+      [-47, 102],
+      [-54, -20],
+      [-58, -123],
+      [-47, 108],
+      [-43, 42],
+      [-10, 71],
+      [-47, 4],
+      [-70, 77],
+      [-95, 35],
+      [-90, 89],
+      [-65, 10],
+      [-29, -261],
+      [-21, -62],
+      [-47, 2],
+      [-47, -61],
+      [-56, -19],
+      [-16, 179],
+      [-75, 173],
+      [96, 33],
+      [-22, 83],
+      [-15, 172],
+      [-26, 75],
+      [3, 73],
+      [-48, 164],
+      [-18, 163],
+      [-35, 212],
+      [-21, 236],
+      [-31, 119],
+      [-73, 131],
+      [-15, 78],
+      [-43, 65],
+      [0, 106],
+      [-61, 41],
+      [-26, 53],
+      [-94, 63],
+      [13, 162],
+      [26, 111],
+      [-62, 121],
+      [14, 114],
+      [-23, 86],
+      [-1, 94],
+      [105, 11],
+      [-77, 183],
+      [22, 74],
+      [-52, 64],
+      [2, 66],
+      [-44, 49],
+      [-32, 179],
+      [-30, 59],
+      [12, 48],
+      [-40, 163],
+      [-44, 43],
+      [33, 117],
+      [-58, 79]
+    ],
+    [
+      [52951, 39244],
+      [-20, 200],
+      [62, 120],
+      [49, -10],
+      [47, 114],
+      [-40, 52],
+      [-1, 83],
+      [36, 45],
+      [-26, 64],
+      [21, 136],
+      [4, 208],
+      [-9, 91],
+      [-59, 50],
+      [-2, 57]
+    ],
+    [
+      [59479, 46082],
+      [-69, -86],
+      [-53, -13],
+      [-60, -55],
+      [0, -90],
+      [-88, -76],
+      [13, -42],
+      [-114, -146],
+      [88, -99],
+      [-9, -52],
+      [68, -31],
+      [-16, -77],
+      [6, -143],
+      [-23, -41],
+      [17, -166],
+      [-25, -93],
+      [24, -60],
+      [-2, -83],
+      [86, -5],
+      [42, -33],
+      [-45, -115],
+      [-104, -109],
+      [-24, -45],
+      [-108, -49],
+      [-64, -63],
+      [-28, -110],
+      [74, -144],
+      [7, -109],
+      [-41, -49],
+      [-53, -7],
+      [-57, -79],
+      [-107, -92],
+      [-31, -115],
+      [-73, -63],
+      [38, -47],
+      [-114, -9],
+      [-36, -30],
+      [-53, -127],
+      [-88, -33],
+      [-198, -50]
+    ],
+    [
+      [41082, 32408],
+      [203, -12],
+      [60, 12],
+      [36, -66],
+      [-12, -63],
+      [-145, 1],
+      [-110, -62],
+      [-70, -76],
+      [-68, 44],
+      [-2, -66],
+      [-101, 8],
+      [57, 76],
+      [62, 177],
+      [90, 27]
+    ],
+    [
+      [40757, 35745],
+      [-22, -85],
+      [5, -81],
+      [165, 25],
+      [35, -92],
+      [92, -37],
+      [134, -28],
+      [106, -7],
+      [84, -86],
+      [49, -11],
+      [37, -120],
+      [-64, -113],
+      [-16, -76],
+      [71, -98],
+      [141, -11],
+      [-2, 110],
+      [104, 27],
+      [42, 33],
+      [1, 66],
+      [76, -21],
+      [88, 2],
+      [37, -77],
+      [-38, -59],
+      [22, -90],
+      [79, -133],
+      [81, -31],
+      [76, 0],
+      [47, -44],
+      [155, -13],
+      [59, -124],
+      [-6, -143],
+      [31, -85]
+    ],
+    [
+      [42426, 34343],
+      [-40, -5],
+      [-131, -116],
+      [-70, -13],
+      [-153, 11],
+      [-210, -21],
+      [-205, -88],
+      [-62, -64],
+      [-199, -139],
+      [-227, -241],
+      [-151, -288],
+      [2, -125],
+      [75, -191],
+      [67, -89],
+      [47, -142],
+      [108, -212],
+      [23, -82],
+      [-26, -99],
+      [-169, 29],
+      [-103, -49],
+      [-36, -37],
+      [-4, -85],
+      [-109, -183],
+      [124, 3],
+      [58, 15],
+      [113, 102],
+      [76, 34],
+      [201, -34],
+      [-339, -227],
+      [-194, -144],
+      [-55, -70],
+      [-57, -117],
+      [0, -120],
+      [106, -34],
+      [18, -68],
+      [-45, -65],
+      [-207, -168],
+      [-126, -49],
+      [-180, -86],
+      [-105, -76],
+      [14, -32],
+      [-41, -122],
+      [-135, -138],
+      [-8, -94],
+      [-53, -56],
+      [-85, 14],
+      [-44, 110],
+      [-76, 57],
+      [-69, 18],
+      [-48, -75],
+      [33, -26],
+      [87, 14],
+      [74, -106],
+      [75, -59],
+      [-147, -40],
+      [-149, -80],
+      [-212, -72],
+      [-191, -53],
+      [-201, -39],
+      [-237, -67],
+      [-400, -143],
+      [-354, -185],
+      [-184, -84],
+      [-272, -160],
+      [-343, -255],
+      [-74, -66],
+      [-99, -120],
+      [-166, -102],
+      [-218, -187],
+      [-92, -97],
+      [-149, -200],
+      [-76, 30],
+      [-40, 41],
+      [-129, 38],
+      [-9, -81],
+      [-113, -10],
+      [-33, 14],
+      [-6, 1],
+      [0, -6],
+      [9, -14],
+      [15, -43],
+      [26, -10],
+      [5, -5],
+      [-1, -11],
+      [7, -20],
+      [26, -9],
+      [5, 4],
+      [2, 10],
+      [22, 13],
+      [9, -1],
+      [12, -7],
+      [12, -23],
+      [11, -11],
+      [-3, -4],
+      [-9, -2],
+      [-10, -26],
+      [-15, 8],
+      [-24, 3],
+      [-53, -5],
+      [-3, -3],
+      [2, -9],
+      [4, -7],
+      [-10, 0],
+      [-4, -3],
+      [-16, -29],
+      [-8, -31],
+      [-41, -2],
+      [-10, 38],
+      [3, 6],
+      [7, 56],
+      [-17, -4],
+      [-4, 1],
+      [-2, 6],
+      [-4, 4],
+      [-14, -13],
+      [-13, -28],
+      [-13, -3],
+      [-28, -1],
+      [-8, -3],
+      [-9, -13],
+      [-38, -3],
+      [-45, -38],
+      [-16, -25],
+      [-10, -5],
+      [-5, -27],
+      [1, -10],
+      [-9, -25],
+      [-20, 5],
+      [-23, 12],
+      [-49, 29],
+      [-10, -13],
+      [2, -8],
+      [-2, -6],
+      [2, -12],
+      [18, -17],
+      [13, -23],
+      [-6, -3],
+      [-7, -5],
+      [-31, -32],
+      [-11, -27],
+      [4, -10],
+      [6, -9],
+      [21, -37],
+      [-20, -20],
+      [-5, -10],
+      [-26, 13],
+      [13, -28],
+      [-5, -8],
+      [-52, -18],
+      [-7, -31],
+      [-62, 31],
+      [-8, 1],
+      [1, -13],
+      [5, -6],
+      [12, -7],
+      [27, -11],
+      [-1, -9],
+      [-4, -10],
+      [-16, -19],
+      [-15, 4],
+      [-3, -3],
+      [-6, -1],
+      [-9, 21],
+      [-6, 6],
+      [-10, 8],
+      [-9, 2],
+      [-3, -7],
+      [-1, -14],
+      [0, -14],
+      [4, -24],
+      [5, -12],
+      [14, -8],
+      [-1, -48],
+      [-32, -7],
+      [9, -32],
+      [-3, -7],
+      [-11, -6],
+      [-25, -8],
+      [-6, -9],
+      [-1, -7],
+      [-8, -2],
+      [-4, 8],
+      [-15, 0],
+      [-36, 21],
+      [-12, -3],
+      [-7, -5],
+      [-5, -11],
+      [-11, -5],
+      [-8, 0],
+      [-12, -13],
+      [-28, -3],
+      [-33, 15],
+      [-1, 13],
+      [-8, 4],
+      [-6, -7],
+      [-17, 7],
+      [-81, -42],
+      [-28, 2],
+      [-17, 12],
+      [-18, 1],
+      [-7, -9],
+      [-17, -9],
+      [-12, -2],
+      [-95, -50],
+      [-57, 15],
+      [-11, 25],
+      [-5, 13],
+      [-20, 6],
+      [1, 15],
+      [-5, 6],
+      [1, 8],
+      [-20, 9],
+      [-10, 7],
+      [-16, 27],
+      [-7, -2],
+      [-9, -8],
+      [-27, 15],
+      [-55, -10],
+      [-59, 7],
+      [-15, -13],
+      [-11, -2],
+      [-9, 0],
+      [-13, 24],
+      [-57, 22],
+      [-27, -3],
+      [-19, -22],
+      [-4, 11],
+      [-1, 18],
+      [-3, 4],
+      [-21, -5],
+      [-8, 2],
+      [-58, 76],
+      [-3, 85],
+      [-5, 37],
+      [-5, 10],
+      [-6, 2],
+      [-103, 228],
+      [-104, -55],
+      [21, -92],
+      [24, 1],
+      [35, -59],
+      [6, -27],
+      [-6, -7],
+      [-13, -7],
+      [-19, 12],
+      [-15, 23],
+      [-22, 4],
+      [-21, 48],
+      [-20, 62],
+      [-2, 22],
+      [-21, 16],
+      [-12, 6],
+      [-6, -3],
+      [-6, 4],
+      [-13, 69],
+      [-13, 14],
+      [-21, 52],
+      [-18, 20],
+      [-21, 28],
+      [-9, 4],
+      [-7, 8],
+      [-6, 12],
+      [-27, 89],
+      [-56, 66],
+      [-54, -50],
+      [0, -23],
+      [5, -12],
+      [17, -29],
+      [0, -10],
+      [-10, -8],
+      [-39, -21],
+      [-1, -30],
+      [-2, -18],
+      [-5, -12],
+      [-46, 4],
+      [-3, 10],
+      [2, 9],
+      [7, 10],
+      [1, 5],
+      [-13, 27],
+      [-19, -10],
+      [-3, -27],
+      [14, -27],
+      [2, -7],
+      [-10, -5],
+      [-11, -19],
+      [-15, -15],
+      [-2, -4],
+      [-47, -9],
+      [-6, 54],
+      [-5, 4],
+      [-5, 10],
+      [-2, 24],
+      [-62, 25],
+      [-39, -13],
+      [-6, -32],
+      [14, -8],
+      [-1, -20],
+      [6, -18],
+      [26, -24],
+      [2, -10],
+      [-7, -23],
+      [4, -17],
+      [-5, -9],
+      [-6, -3],
+      [-9, 0],
+      [-20, 8],
+      [-22, -6],
+      [4, -40],
+      [26, -54],
+      [-15, -31],
+      [-28, 5],
+      [-74, 112],
+      [-5, -3],
+      [-5, -4],
+      [-5, 5],
+      [-2, 2],
+      [-11, -1],
+      [-7, 8],
+      [-9, 2],
+      [-26, -12],
+      [-21, -3],
+      [-12, 3],
+      [-16, 33],
+      [-44, -6],
+      [-5, -16],
+      [-4, -3],
+      [-1, -3],
+      [1, -10],
+      [1, -6],
+      [-4, -5],
+      [-28, 6],
+      [-19, 1],
+      [-6, -3],
+      [-2, -6],
+      [7, -9],
+      [13, -38],
+      [105, -31],
+      [-30, -75],
+      [88, -115],
+      [15, -7],
+      [16, -3],
+      [6, -2],
+      [3, -2],
+      [12, -13],
+      [-1, -6],
+      [-9, -8],
+      [-21, -10],
+      [3, -36],
+      [-5, -7],
+      [-21, -11],
+      [-8, 1],
+      [-15, -10],
+      [-7, -2],
+      [-29, -32],
+      [-177, -41],
+      [-9, -9],
+      [-12, -24],
+      [-1, -10],
+      [4, -8],
+      [1, -10],
+      [-12, -14],
+      [-24, 4],
+      [-22, -2],
+      [-12, 2],
+      [-38, 17],
+      [-3, -1],
+      [-4, 0],
+      [-5, -5],
+      [1, -11],
+      [12, -25],
+      [-37, -44],
+      [-8, 8],
+      [-1, 9],
+      [3, 9],
+      [-4, 5],
+      [-21, -1],
+      [-15, 5],
+      [-10, 10],
+      [-8, 14],
+      [-7, 5],
+      [-12, 6],
+      [-39, -1],
+      [-39, 32],
+      [-38, -24],
+      [-8, -9],
+      [12, -18],
+      [-2, -6],
+      [-23, -22],
+      [-40, -60],
+      [-22, -16],
+      [-19, -27],
+      [1, -5],
+      [2, -6],
+      [-32, -51],
+      [-11, -30],
+      [-33, -15],
+      [-30, -7],
+      [-24, -13],
+      [-4, -6],
+      [0, -6],
+      [-1, -5],
+      [5, -9],
+      [7, -3],
+      [6, -7],
+      [8, -30],
+      [-2, -12],
+      [-23, -32],
+      [-4, -7],
+      [95, -124],
+      [7, 0],
+      [7, 0],
+      [31, 18],
+      [34, -3],
+      [5, -8],
+      [-2, -11],
+      [-80, -128],
+      [-33, -33],
+      [-6, -6],
+      [-16, -9],
+      [-23, -21],
+      [-2, -8],
+      [5, -9],
+      [15, -9],
+      [28, -4],
+      [64, -98],
+      [-2, -7],
+      [-21, -28],
+      [-6, -5],
+      [-30, -12],
+      [-6, 0],
+      [-11, 8],
+      [-18, 7],
+      [-14, 19],
+      [-13, -15],
+      [-32, -8],
+      [-9, 0],
+      [-2, 1],
+      [-24, -21],
+      [-6, -12],
+      [-4, -14],
+      [-96, -8],
+      [-11, 22],
+      [-17, -3],
+      [-11, -7],
+      [-7, 2],
+      [-8, 5],
+      [-12, -8],
+      [-39, 52],
+      [13, 32],
+      [0, 14],
+      [-14, 33],
+      [-12, 4],
+      [-20, -19],
+      [-16, 4],
+      [-15, 7],
+      [-16, 9],
+      [-66, 43],
+      [-43, 14],
+      [-50, -46],
+      [24, -68],
+      [-21, -45],
+      [14, -38],
+      [-28, -34],
+      [-9, -20],
+      [-152, -80],
+      [-10, 2],
+      [-7, 0],
+      [-19, -10],
+      [-37, -5],
+      [-19, -28],
+      [-25, -50],
+      [6, -28],
+      [-5, -10],
+      [-18, -13],
+      [-12, -15],
+      [-6, 0],
+      [-5, 1],
+      [-14, 17],
+      [-9, 4],
+      [-6, 3],
+      [-6, 11],
+      [2, 6],
+      [-5, 6],
+      [-19, 6],
+      [-6, 6],
+      [-20, 5],
+      [-1, 13],
+      [-3, 8],
+      [-4, 1],
+      [-5, 1],
+      [-5, 8],
+      [8, 7],
+      [9, 5],
+      [-6, 13],
+      [10, 16],
+      [1, 10],
+      [-7, 23],
+      [-11, -3],
+      [-3, 1],
+      [-3, 0],
+      [-8, 13],
+      [4, 6],
+      [11, 5],
+      [14, 18],
+      [32, 2],
+      [-8, 24],
+      [-6, 7],
+      [-2, 17],
+      [9, 58],
+      [-98, 52],
+      [-45, 46],
+      [4, 9],
+      [5, 11],
+      [12, 0],
+      [2, 16],
+      [9, 6],
+      [2, 17],
+      [6, 9],
+      [-14, 9],
+      [-7, -1],
+      [-13, 4],
+      [1, -11],
+      [-13, -10],
+      [-6, 1],
+      [-3, 14],
+      [1, 6],
+      [-6, 10],
+      [-8, -4],
+      [-15, 24],
+      [3, 8],
+      [9, 5],
+      [13, 15],
+      [0, 22],
+      [-7, 12],
+      [-11, -1],
+      [1, 6],
+      [0, 5],
+      [10, 6],
+      [-3, 9],
+      [-2, 8],
+      [2, 16],
+      [-91, 26],
+      [-13, 33],
+      [5, 5],
+      [9, 2],
+      [7, 3],
+      [-8, 11],
+      [-17, -4],
+      [-45, -46],
+      [-8, -13],
+      [-28, -32],
+      [-22, -47],
+      [-15, -17],
+      [-18, -12],
+      [-32, -30],
+      [-44, -69],
+      [-13, -4],
+      [-10, -7],
+      [-2, -9],
+      [-11, -8],
+      [11, -15],
+      [14, -12],
+      [26, -59],
+      [0, -8],
+      [-7, -5],
+      [-5, -12],
+      [-6, -19],
+      [-15, -7],
+      [-20, -16],
+      [-33, -50],
+      [-5, -34],
+      [33, 2],
+      [16, 19],
+      [34, 7],
+      [8, -1],
+      [9, -18],
+      [10, -11],
+      [-12, -13],
+      [-5, -27],
+      [-7, -11],
+      [-22, -24],
+      [-11, -7],
+      [-51, 2],
+      [-15, -13],
+      [-7, -32],
+      [-5, -13],
+      [-3, -35],
+      [6, -36],
+      [-59, -47],
+      [7, -14],
+      [2, -35],
+      [85, -29],
+      [36, -51],
+      [-17, -34],
+      [-28, 22],
+      [-14, 8],
+      [-11, 10],
+      [4, -35],
+      [-11, -19],
+      [5, -28],
+      [-1, -30],
+      [24, -27],
+      [0, -33],
+      [-13, -44],
+      [-2, -4],
+      [-14, -16],
+      [-11, 5],
+      [3, 9],
+      [-9, 9],
+      [-39, -25],
+      [-36, 49],
+      [-65, -60],
+      [17, -21],
+      [6, -13],
+      [4, -22],
+      [0, -29],
+      [-7, -27],
+      [-14, -9],
+      [-17, -5],
+      [-26, -1],
+      [-7, 10],
+      [-3, 18],
+      [-14, 4],
+      [-17, -2],
+      [-10, 3],
+      [-23, 15],
+      [-24, 19],
+      [-13, 0],
+      [-13, -3],
+      [-17, 7],
+      [-7, 12],
+      [6, 12],
+      [-8, 11],
+      [-21, 37],
+      [-8, 5],
+      [-28, -8],
+      [-33, -11],
+      [-7, 30],
+      [-47, 13],
+      [-34, -3],
+      [-72, -18],
+      [-77, 30],
+      [-17, -7],
+      [-23, -13],
+      [-11, -11],
+      [1, -49],
+      [-145, -91],
+      [-196, -77],
+      [-30, 1],
+      [-29, -13],
+      [-42, -22],
+      [-33, -52],
+      [-8, -9],
+      [-14, -11],
+      [-109, -71],
+      [-51, -30],
+      [-11, 33],
+      [-22, 21],
+      [-11, -12],
+      [-12, -4],
+      [-32, -2],
+      [-45, -87],
+      [-41, -34],
+      [-18, -6],
+      [-10, -15],
+      [-25, 0],
+      [-55, 28],
+      [-46, -26],
+      [-160, -31],
+      [-24, 47],
+      [-134, -42],
+      [-14, 1],
+      [-19, 6],
+      [-20, -3]
+    ],
+    [
+      [25654, 9761],
+      [-7, -376]
+    ],
+    [
+      [25647, 9385],
+      [-69, -6],
+      [-37, 139],
+      [-66, 43],
+      [-101, 18],
+      [-39, 36],
+      [-12, 90],
+      [50, 1],
+      [57, 64],
+      [68, -30],
+      [40, 44],
+      [116, -23]
+    ],
+    [
+      [25617, 11991],
+      [-30, -136],
+      [-52, -170]
+    ],
+    [
+      [25535, 11685],
+      [-31, 69],
+      [-69, 45],
+      [-54, -25],
+      [-81, 16],
+      [69, 87],
+      [-89, 83],
+      [38, 57],
+      [-15, 53],
+      [-115, 2],
+      [11, 50],
+      [97, 46],
+      [31, -92],
+      [97, 20],
+      [-36, -90],
+      [32, -42],
+      [125, 79],
+      [21, -52],
+      [51, 0]
+    ],
+    [
+      [15665, 12242],
+      [-27, -46],
+      [-70, -9],
+      [-9, -52],
+      [-72, 49]
+    ],
+    [
+      [13922, 53612],
+      [-253, 10],
+      [-250, 20],
+      [-84, -2],
+      [-402, 31],
+      [-391, 3],
+      [-22, 61],
+      [38, 132],
+      [43, 34],
+      [98, 137],
+      [8, 156]
+    ],
+    [
+      [12707, 54194],
+      [-19, 154],
+      [-51, 96],
+      [-135, 186],
+      [67, 77],
+      [53, 10],
+      [10, 86],
+      [67, -2],
+      [57, 109],
+      [226, 158],
+      [2, 58],
+      [69, 72],
+      [60, 8],
+      [101, 91],
+      [78, 110],
+      [91, 55],
+      [-19, 68],
+      [93, 112],
+      [19, 61],
+      [123, 12],
+      [-14, 75],
+      [118, 61],
+      [3, 33],
+      [110, 93],
+      [57, 2],
+      [92, 70],
+      [-15, 28],
+      [48, 123],
+      [40, 11],
+      [63, -55],
+      [123, 25],
+      [59, 41],
+      [25, 54],
+      [-34, 78],
+      [-116, 15],
+      [-75, -19],
+      [-9, -79],
+      [-91, -11],
+      [-5, 66],
+      [-84, 43],
+      [-11, 102],
+      [46, 157],
+      [-24, 57],
+      [42, 61],
+      [48, -1],
+      [93, 228],
+      [68, 62],
+      [37, 87],
+      [-152, 135],
+      [57, 18],
+      [4, 93],
+      [-49, 129],
+      [-134, 230],
+      [1, 51],
+      [75, 29],
+      [-18, 43],
+      [28, 122],
+      [210, 187],
+      [112, 35],
+      [216, 85],
+      [36, 74],
+      [110, 86],
+      [128, 80],
+      [76, -24],
+      [83, -61],
+      [116, 29],
+      [40, 39],
+      [112, 58],
+      [143, 1],
+      [18, 71],
+      [41, 11],
+      [60, -74],
+      [72, 59],
+      [25, 68],
+      [57, 29],
+      [30, 108],
+      [90, 85],
+      [7, 71],
+      [-60, 45],
+      [-7, 79],
+      [-31, 34]
+    ],
+    [
+      [19984, 48672],
+      [62, -43],
+      [15, -118],
+      [-19, -55],
+      [70, -12],
+      [18, -127],
+      [-68, -95],
+      [32, -35],
+      [32, -166],
+      [79, -15],
+      [38, -84],
+      [79, -46],
+      [-31, -85],
+      [36, -61],
+      [144, -41],
+      [100, -90],
+      [70, -36],
+      [92, 27],
+      [-16, -117],
+      [77, -113],
+      [-5, -56],
+      [68, -33],
+      [-40, -58],
+      [-87, -1],
+      [-39, -106],
+      [-116, -31],
+      [-58, -64],
+      [104, -23],
+      [-14, -68],
+      [87, -46],
+      [128, -14],
+      [31, 61],
+      [72, -113],
+      [-26, -49],
+      [-109, -27],
+      [-138, -84],
+      [-213, -63],
+      [-71, -66],
+      [-61, -19],
+      [-11, -56],
+      [47, -55],
+      [-23, -77],
+      [79, -37],
+      [36, 42],
+      [38, 139],
+      [50, -60],
+      [193, 29],
+      [107, 51],
+      [32, 40],
+      [97, 17],
+      [17, 96],
+      [91, 35],
+      [234, -75],
+      [41, -37],
+      [43, 57],
+      [71, -33],
+      [46, 29],
+      [112, -9],
+      [62, 16],
+      [98, -31],
+      [57, 59],
+      [5, 63],
+      [54, 5],
+      [205, -54],
+      [63, -4],
+      [-29, -72],
+      [-95, -54],
+      [11, -95]
+    ],
+    [
+      [6420, 41445],
+      [-75, 73],
+      [-83, 200],
+      [-69, 125],
+      [-128, 189],
+      [-44, 139],
+      [-69, 346],
+      [-297, 302],
+      [-33, 107],
+      [-154, 158],
+      [30, 298],
+      [-25, 13],
+      [10, 316],
+      [-33, 85],
+      [-42, 21],
+      [-99, -8],
+      [-152, -62],
+      [-93, -1],
+      [-199, -28],
+      [-252, 81],
+      [-29, 23],
+      [-61, 133],
+      [-90, 90],
+      [-56, 33],
+      [-28, 57],
+      [-129, 185],
+      [-34, 95],
+      [-23, 215],
+      [30, 91],
+      [112, 159],
+      [60, 182],
+      [-13, 143],
+      [26, 99],
+      [-5, 193],
+      [17, 124],
+      [-35, 148],
+      [-134, 89],
+      [-90, 23],
+      [-91, -1],
+      [-234, -38],
+      [-138, 1],
+      [-88, 22],
+      [-96, 49],
+      [-110, 93],
+      [-438, 190],
+      [-33, 29],
+      [-52, 133],
+      [37, 218],
+      [27, 269],
+      [115, 282],
+      [47, 91],
+      [174, 170],
+      [323, 250],
+      [108, 100],
+      [164, 229],
+      [175, 125],
+      [19, 32],
+      [183, 455],
+      [108, 156],
+      [111, 118],
+      [210, 141],
+      [139, 144],
+      [248, 58],
+      [113, -2],
+      [71, -30],
+      [215, -206],
+      [26, -38],
+      [13, -174],
+      [131, -224],
+      [44, -57],
+      [135, -30],
+      [193, -9],
+      [279, 131],
+      [384, 155],
+      [142, 41],
+      [300, 55],
+      [267, -1],
+      [122, 12],
+      [158, -4],
+      [526, 205],
+      [33, 210],
+      [40, 170],
+      [143, 197],
+      [287, 223],
+      [128, 126],
+      [54, 97],
+      [204, 612],
+      [54, 79],
+      [128, 151],
+      [297, 149],
+      [288, 173],
+      [200, 104],
+      [410, 166],
+      [35, 23],
+      [123, 271],
+      [173, 199],
+      [129, 222],
+      [119, 229],
+      [176, 297],
+      [152, 490],
+      [99, 363],
+      [60, 54],
+      [436, 169],
+      [314, 79],
+      [88, 30],
+      [96, 91],
+      [283, 199]
+    ],
+    [
+      [45218, 47150],
+      [-75, -10],
+      [-13, 49],
+      [-60, 35],
+      [-55, -41],
+      [-89, 59],
+      [-60, 15],
+      [-157, -45],
+      [3, -57],
+      [-57, -58],
+      [-64, -26],
+      [-27, -56],
+      [-49, -19],
+      [-150, 39],
+      [-130, 70],
+      [-60, 6],
+      [-99, -27],
+      [-41, 36],
+      [-76, -1],
+      [-46, -47],
+      [-48, 6],
+      [-111, 57],
+      [-6, 54],
+      [-55, 113],
+      [-91, 12]
+    ],
+    [
+      [43602, 47314],
+      [36, 71],
+      [2, 84],
+      [77, 114],
+      [-54, 82],
+      [19, 96],
+      [62, 45],
+      [-77, 108],
+      [39, 77],
+      [-1, 64],
+      [70, 133],
+      [46, 31],
+      [14, 80],
+      [54, 47],
+      [30, 174],
+      [44, 14],
+      [42, 101],
+      [-27, 46],
+      [35, 62],
+      [-115, 91],
+      [-47, 12],
+      [-36, 70],
+      [56, 119],
+      [76, -43],
+      [65, 50],
+      [65, -1],
+      [24, -41],
+      [207, 92],
+      [112, -24],
+      [83, 70],
+      [77, 27],
+      [45, 59],
+      [113, -20],
+      [91, 113],
+      [138, 44],
+      [64, -70],
+      [42, 11],
+      [143, -13],
+      [107, -99],
+      [65, -36],
+      [26, -55],
+      [-10, -137],
+      [50, -15],
+      [46, -70],
+      [2, -130],
+      [-55, -48],
+      [-8, -92],
+      [22, -91],
+      [-37, -89],
+      [3, -73],
+      [-81, -62],
+      [-10, -90],
+      [-84, -88],
+      [47, -84],
+      [-11, -169],
+      [57, -117],
+      [63, -61],
+      [40, 19],
+      [74, -117],
+      [71, -23],
+      [-51, -119],
+      [-59, -37],
+      [-82, 10],
+      [-75, -36],
+      [0, -62],
+      [-36, -90],
+      [-57, -23],
+      [-15, -55]
+    ],
+    [
+      [24462, 5952],
+      [50, -40],
+      [-42, -61],
+      [26, -58],
+      [107, -99],
+      [-9, -30],
+      [-112, 76],
+      [-97, 41],
+      [-123, 29],
+      [-2, 57],
+      [104, 3],
+      [47, 62],
+      [51, 20]
+    ],
+    [
+      [25535, 11685],
+      [-51, -228],
+      [-44, -291],
+      [9, -108],
+      [58, -141],
+      [44, -73],
+      [48, -208],
+      [21, -15],
+      [1, -151],
+      [22, -115],
+      [21, -216],
+      [-10, -378]
+    ],
+    [
+      [25647, 9385],
+      [11, -524],
+      [21, -395],
+      [40, -255],
+      [-37, -45],
+      [-69, -25],
+      [-201, -1],
+      [43, 60],
+      [-127, 52],
+      [-130, -8],
+      [-43, 59],
+      [-31, -65],
+      [14, -43],
+      [-490, 44],
+      [-58, -51],
+      [-98, -32],
+      [-68, -49],
+      [-60, -72],
+      [29, -39],
+      [-87, -74],
+      [-33, -190],
+      [57, -74],
+      [11, -75],
+      [-33, -21],
+      [-192, -214],
+      [-58, -88],
+      [-9, -69],
+      [-73, -85],
+      [-75, -129],
+      [-39, -19],
+      [-131, -177],
+      [-44, -131],
+      [-56, -55],
+      [-23, -80],
+      [-20, -181],
+      [-30, -59],
+      [57, -106],
+      [90, -110],
+      [118, -109],
+      [96, -65],
+      [97, -26],
+      [78, 6],
+      [54, -27],
+      [-167, -45],
+      [-252, 31],
+      [-117, -17],
+      [-42, -38],
+      [-102, 9],
+      [-227, -87],
+      [-47, -9],
+      [-38, -50],
+      [-112, 16],
+      [-49, -36],
+      [13, -52],
+      [-81, -16],
+      [-85, -48],
+      [-51, 14],
+      [-208, -25],
+      [-102, -34],
+      [-136, -117],
+      [-169, -129],
+      [-78, -49],
+      [-94, -106],
+      [-51, -119],
+      [-19, -263],
+      [20, -64],
+      [-38, -78],
+      [-117, -170],
+      [0, -61],
+      [83, -54],
+      [-36, -167],
+      [17, -43],
+      [-94, -104],
+      [-50, -78],
+      [-22, -86],
+      [-70, -53],
+      [-94, -43],
+      [-58, -61],
+      [-143, -94],
+      [-195, -73],
+      [-35, -81],
+      [-91, -72],
+      [-59, -22],
+      [-227, -37],
+      [-81, -33],
+      [-37, -37],
+      [2, -68],
+      [-52, -28],
+      [-248, 50],
+      [-161, 53],
+      [-102, 21],
+      [-4, 26],
+      [-260, 177],
+      [-50, 61],
+      [-155, 119]
+    ],
+    [
+      [22062, 13868],
+      [-3, -13],
+      [21, -62],
+      [-4, -12],
+      [-15, -27],
+      [-23, -9],
+      [-15, -1],
+      [-7, -6],
+      [-8, 1],
+      [-3, -4],
+      [10, -12],
+      [-1, -3],
+      [-21, -12],
+      [1, -5],
+      [12, -3],
+      [3, -3],
+      [8, -7],
+      [61, -4],
+      [-1, 36],
+      [81, 5],
+      [43, -56],
+      [7, -21],
+      [7, -12],
+      [40, -7],
+      [46, -27],
+      [21, -15],
+      [20, -19],
+      [27, -20],
+      [17, -7],
+      [70, 3],
+      [16, 10],
+      [11, 1],
+      [13, 6],
+      [15, -13],
+      [32, 4],
+      [26, -2],
+      [7, -9],
+      [11, 12],
+      [-1, 33],
+      [6, 2],
+      [2, 7],
+      [-7, 8],
+      [-4, 54],
+      [79, 17],
+      [-1, 56],
+      [4, 23],
+      [6, -12],
+      [26, 1],
+      [2, 6],
+      [-3, 8],
+      [-34, 14],
+      [-5, 14],
+      [-15, 14],
+      [-11, 16],
+      [11, 11],
+      [21, -10],
+      [7, -15],
+      [10, -6],
+      [3, -8],
+      [1, -11],
+      [8, 0],
+      [8, 20],
+      [3, -32],
+      [8, -10],
+      [23, -6],
+      [2, -9],
+      [-4, -6],
+      [-10, 6],
+      [-5, -11],
+      [13, -30],
+      [7, -1],
+      [8, 2],
+      [22, 12],
+      [24, 28],
+      [-15, 23],
+      [6, 18],
+      [9, 13],
+      [4, 13],
+      [-19, 6],
+      [19, 40],
+      [9, 13],
+      [48, 36],
+      [25, 165],
+      [73, 175],
+      [49, 11],
+      [-25, 44],
+      [-14, 35],
+      [19, 3],
+      [-39, 45],
+      [-14, 11],
+      [15, 9],
+      [37, 33],
+      [10, 11],
+      [15, 34],
+      [5, 3],
+      [94, -31],
+      [5, 19],
+      [11, 73],
+      [3, 28],
+      [82, -25],
+      [14, 0],
+      [18, 4],
+      [51, 14],
+      [12, 7],
+      [8, 14],
+      [31, 31],
+      [175, -14],
+      [1, -59],
+      [-3, -43],
+      [6, -13],
+      [18, 0],
+      [56, 7],
+      [16, -3],
+      [4, -7],
+      [8, 7],
+      [-2, 4],
+      [-16, 12],
+      [-6, 9],
+      [-29, -3],
+      [-13, 1],
+      [-11, 8],
+      [16, 39],
+      [30, 37],
+      [35, -4],
+      [14, 9],
+      [20, -15],
+      [30, 4],
+      [8, 14],
+      [41, 11],
+      [15, -8],
+      [15, -22],
+      [11, -12],
+      [24, 0],
+      [26, -4],
+      [6, -15],
+      [17, -9],
+      [23, -5],
+      [20, -13],
+      [2, -23],
+      [15, -17],
+      [18, -15],
+      [30, -4],
+      [48, 27],
+      [33, -4],
+      [73, -35],
+      [19, 10],
+      [20, 9],
+      [6, 9],
+      [8, 24],
+      [0, 8],
+      [0, 11],
+      [-16, 35],
+      [21, 16],
+      [4, 16],
+      [14, 23],
+      [4, 18],
+      [9, 11],
+      [20, 2],
+      [11, 2],
+      [16, 13],
+      [26, 87],
+      [37, -3],
+      [2, 18],
+      [7, 16],
+      [9, -4],
+      [3, -11],
+      [8, -11],
+      [11, 9],
+      [13, 1],
+      [9, -7],
+      [3, -26],
+      [2, -14],
+      [25, 5],
+      [7, -11],
+      [23, -8],
+      [-3, -40],
+      [23, -1],
+      [5, 7],
+      [-1, 16],
+      [6, 16],
+      [10, 13],
+      [30, 4],
+      [11, 15],
+      [5, -10],
+      [15, 1],
+      [12, 4],
+      [-5, 87],
+      [30, -16],
+      [8, 10],
+      [5, 12],
+      [8, 7],
+      [-4, 17],
+      [20, 15],
+      [14, 5],
+      [29, 4],
+      [34, -1],
+      [16, -4],
+      [7, 7],
+      [-5, 14],
+      [4, 13],
+      [-4, 22],
+      [53, 19],
+      [0, 12],
+      [-7, 17],
+      [-14, 1],
+      [-39, -26],
+      [-3, -14],
+      [-13, -1],
+      [-5, 18],
+      [2, 19],
+      [-5, 22],
+      [3, 21],
+      [8, 25],
+      [15, 21],
+      [-3, 6],
+      [1, 13],
+      [15, 15],
+      [-7, 13],
+      [-36, -3],
+      [-44, 21],
+      [-24, 20],
+      [59, 29],
+      [35, 14],
+      [82, 6],
+      [54, -7],
+      [18, -11],
+      [23, -4],
+      [55, 2],
+      [28, -11],
+      [7, -23],
+      [6, -51],
+      [29, -46],
+      [24, -22],
+      [12, -5],
+      [20, -5],
+      [12, 4],
+      [2, 15],
+      [5, 16],
+      [27, 17],
+      [148, 33],
+      [24, -29],
+      [11, -30],
+      [-23, -22],
+      [-6, -26],
+      [5, -14],
+      [16, -3],
+      [9, 13],
+      [16, 10],
+      [9, -10],
+      [-1, -24],
+      [-14, -29],
+      [23, -19],
+      [13, 15],
+      [13, 3],
+      [9, 9],
+      [6, 19],
+      [10, -2],
+      [8, -10],
+      [13, -6],
+      [11, -22],
+      [2, -17],
+      [13, -7],
+      [17, 22],
+      [12, 2],
+      [35, 28],
+      [9, -1],
+      [13, 2],
+      [0, 23],
+      [-18, 14],
+      [-49, 23],
+      [-16, 10],
+      [-14, 14],
+      [-39, 26],
+      [-1, 15],
+      [19, 7],
+      [26, 4],
+      [10, 7],
+      [8, 25],
+      [2, 19],
+      [7, 9],
+      [32, -30],
+      [25, -18],
+      [16, 6],
+      [29, 46],
+      [18, 1],
+      [34, -6],
+      [60, 2],
+      [43, 20],
+      [9, 13],
+      [12, 7],
+      [13, 2],
+      [25, 19],
+      [14, 8],
+      [47, 7],
+      [62, 88],
+      [-46, 70],
+      [40, 9],
+      [17, 10],
+      [10, 12],
+      [-5, 23],
+      [5, 30],
+      [-2, 8],
+      [-1, 16],
+      [14, 12],
+      [43, 13],
+      [6, 0],
+      [1, -6],
+      [10, 0],
+      [20, 44],
+      [3, 22],
+      [42, -3],
+      [24, -5],
+      [-102, 98],
+      [10, 6],
+      [30, 7],
+      [15, -9],
+      [7, -8],
+      [26, -4],
+      [10, -4],
+      [25, 1],
+      [12, 19],
+      [19, 5],
+      [13, 5],
+      [4, 3],
+      [5, 4],
+      [42, -28],
+      [18, -40],
+      [6, -4],
+      [2, -3],
+      [45, -7],
+      [26, -15],
+      [11, -11],
+      [15, -12],
+      [17, -16],
+      [141, 7],
+      [96, -80],
+      [17, -76],
+      [22, -16],
+      [5, -13],
+      [-2, -6],
+      [-4, 0],
+      [-2, 0],
+      [-6, -4],
+      [5, -19],
+      [87, -41],
+      [31, 66],
+      [35, -168],
+      [-6, -129],
+      [-72, -251],
+      [-22, -47],
+      [9, -113],
+      [-49, -86],
+      [-6, -73],
+      [-39, -175],
+      [-26, -206],
+      [-6, -125],
+      [16, -63],
+      [-194, -588],
+      [-19, -124],
+      [-93, -155],
+      [-134, -159],
+      [-89, -166],
+      [-62, -30],
+      [9, -60],
+      [-230, -369],
+      [-83, -196],
+      [-21, -91]
+    ],
+    [
+      [52951, 39244],
+      [-47, -10],
+      [-1, -75],
+      [-64, 8],
+      [-148, 86],
+      [-139, -182],
+      [-36, -21],
+      [-151, 102],
+      [-41, 95],
+      [-47, -5],
+      [-43, -106],
+      [47, -238],
+      [-6, -145],
+      [33, -47],
+      [-77, -81],
+      [1, -54],
+      [-84, 9],
+      [-116, -89],
+      [-15, -52],
+      [-78, -96],
+      [-82, -174],
+      [62, -155],
+      [34, -134],
+      [44, -108],
+      [-25, -37],
+      [-100, -25],
+      [-48, -114],
+      [-61, -44],
+      [-66, 14],
+      [-91, -37],
+      [-72, -82],
+      [-135, 58],
+      [-35, 53],
+      [16, 80],
+      [-85, 166],
+      [12, 32],
+      [-50, 72],
+      [18, 83],
+      [-37, 36],
+      [-70, 124],
+      [-79, 3],
+      [-57, -78],
+      [-10, -164],
+      [67, -215],
+      [-97, 11],
+      [-54, 86],
+      [-50, 130],
+      [-11, 222],
+      [-62, 156],
+      [27, 79],
+      [-38, 25],
+      [-20, 102],
+      [-51, 88],
+      [-13, 96],
+      [-109, 80],
+      [-24, 116],
+      [-54, 48],
+      [-14, 76],
+      [30, 67],
+      [68, -13],
+      [-13, 94],
+      [-94, -2],
+      [-6, 74],
+      [37, 66],
+      [84, -1],
+      [51, 41],
+      [8, 98],
+      [44, 65],
+      [-56, 138],
+      [109, 187],
+      [54, 42],
+      [119, -28],
+      [67, 99],
+      [12, 51],
+      [-42, 69],
+      [-4, 61],
+      [77, 8],
+      [176, -30],
+      [120, -50],
+      [112, 9],
+      [84, 52],
+      [23, 154],
+      [34, 42],
+      [110, -82],
+      [115, -20],
+      [-42, 240],
+      [216, -114],
+      [67, -55],
+      [36, -86],
+      [47, 13],
+      [5, 68],
+      [66, 221],
+      [-48, 158],
+      [81, 47],
+      [38, -57],
+      [53, 18],
+      [-44, 95],
+      [260, -11],
+      [49, 19],
+      [44, 94],
+      [74, 15],
+      [-33, 68],
+      [8, 120],
+      [27, 50],
+      [74, -63],
+      [52, -6]
+    ],
+    [
+      [26133, 51038],
+      [105, -3],
+      [117, -108],
+      [98, -61],
+      [76, 6],
+      [12, -66],
+      [47, -45],
+      [87, -23],
+      [19, -78],
+      [101, -86],
+      [95, 23],
+      [102, -42],
+      [23, -70],
+      [77, -52],
+      [33, 20],
+      [-40, 204],
+      [80, 59],
+      [111, -25],
+      [-22, -43],
+      [69, -51],
+      [87, -12],
+      [139, -153],
+      [117, -5],
+      [37, -84],
+      [156, -74],
+      [45, 29],
+      [72, -28],
+      [-6, -74],
+      [85, -25],
+      [76, -47],
+      [45, 45],
+      [176, -160],
+      [288, -56],
+      [53, -83],
+      [-4, -83],
+      [193, -212],
+      [-6, -147],
+      [117, 20],
+      [9, 80],
+      [78, -5],
+      [80, -33],
+      [6, -45],
+      [75, -52],
+      [-12, -83],
+      [151, -77],
+      [212, -128],
+      [129, -17],
+      [226, -192],
+      [63, -14],
+      [151, -101],
+      [145, 174],
+      [226, -15],
+      [115, -133],
+      [68, 3],
+      [119, -54],
+      [209, -161],
+      [140, -71],
+      [77, -92],
+      [103, -56],
+      [54, -5],
+      [94, 32],
+      [55, -11],
+      [141, 47],
+      [220, 25],
+      [29, -68],
+      [-9, -57],
+      [51, -51],
+      [-10, -51],
+      [49, -69],
+      [-39, -96],
+      [26, -56],
+      [-32, -45],
+      [147, -16],
+      [73, 12],
+      [208, -2],
+      [54, -76],
+      [176, -44],
+      [287, 20],
+      [52, -8],
+      [49, -69],
+      [136, -94],
+      [-15, -42],
+      [64, -72],
+      [127, 13],
+      [79, 83],
+      [38, 69],
+      [-48, 85],
+      [40, 35],
+      [-29, 51],
+      [497, -23],
+      [476, -231],
+      [55, -43]
+    ],
+    [
+      [20616, 54679],
+      [159, 13],
+      [84, -59],
+      [82, -106],
+      [89, -33],
+      [134, -78],
+      [230, -80],
+      [27, -38],
+      [-55, -57],
+      [-18, -67],
+      [-167, -214],
+      [-74, 15],
+      [-62, -124],
+      [34, -33],
+      [-72, -88],
+      [-2, -82],
+      [-49, -55],
+      [33, -50],
+      [-65, -106],
+      [59, -33],
+      [27, -101],
+      [49, -56],
+      [-15, -160],
+      [87, -42],
+      [-11, -37],
+      [92, -23],
+      [87, 69],
+      [57, -9],
+      [90, 39],
+      [10, -64],
+      [70, -104],
+      [17, -133],
+      [-13, -70],
+      [118, -6],
+      [25, 96],
+      [76, 15],
+      [27, 58],
+      [165, 126],
+      [61, 71],
+      [83, -14],
+      [158, 124],
+      [63, 89],
+      [119, -51],
+      [224, -76],
+      [43, -116],
+      [9, -93],
+      [42, -62],
+      [101, -100],
+      [139, -76],
+      [118, -90],
+      [73, 0],
+      [86, -58],
+      [220, -56],
+      [76, -8],
+      [-8, -75],
+      [-88, -88],
+      [-93, -36],
+      [-66, -63],
+      [-59, 16],
+      [-70, -46],
+      [4, -39],
+      [190, -140],
+      [38, 19],
+      [72, -26],
+      [78, -108],
+      [12, -91],
+      [87, -32],
+      [49, 37],
+      [75, -113],
+      [26, 75],
+      [133, 7],
+      [61, -47],
+      [91, -28],
+      [-16, -87],
+      [67, -71],
+      [7, -82],
+      [78, 31],
+      [74, -52],
+      [91, -97],
+      [155, -29],
+      [114, -46],
+      [-13, -108],
+      [35, -69],
+      [211, 17],
+      [57, 63],
+      [45, -27],
+      [-6, -76],
+      [91, 48],
+      [59, 2],
+      [103, -44],
+      [96, 71],
+      [142, 29],
+      [63, -46],
+      [-3, -89],
+      [105, 28],
+      [-19, -85],
+      [106, -53],
+      [51, -48],
+      [38, -89],
+      [129, -22],
+      [56, 47],
+      [59, 106],
+      [-32, 39],
+      [72, 82],
+      [30, -13]
+    ],
+    [
+      [23571, 56655],
+      [21, 17],
+      [30, 165],
+      [111, 44],
+      [57, 101],
+      [60, 63],
+      [7, 68],
+      [43, 34],
+      [159, -77],
+      [107, -154],
+      [97, -81],
+      [-2, -39],
+      [60, -55],
+      [-31, -98],
+      [63, -21],
+      [57, -114],
+      [-14, -34],
+      [38, -74],
+      [56, -45],
+      [125, -26],
+      [21, -83],
+      [33, -13],
+      [15, -91],
+      [184, 9],
+      [90, -116],
+      [-15, -40],
+      [118, -69],
+      [152, 96],
+      [94, -9],
+      [108, 57],
+      [140, -67],
+      [100, 4],
+      [55, -124],
+      [77, -77],
+      [59, 0],
+      [117, -57],
+      [66, -55],
+      [42, 1],
+      [66, -103],
+      [64, -46],
+      [124, 75],
+      [56, -59],
+      [12, -53],
+      [71, 4],
+      [32, -57],
+      [-39, -101],
+      [-86, -63],
+      [63, -57],
+      [4, -145],
+      [64, -39],
+      [83, 21],
+      [199, -111],
+      [71, 10],
+      [51, -59],
+      [135, -35],
+      [100, -68],
+      [55, 14],
+      [24, 50],
+      [59, -15],
+      [122, -85],
+      [26, 1],
+      [155, -101],
+      [62, -62],
+      [29, -63],
+      [85, -65],
+      [439, -132],
+      [-73, -57],
+      [-107, -5],
+      [-142, -155],
+      [35, -84],
+      [-73, -70],
+      [-86, -29],
+      [-150, -209],
+      [-41, 2],
+      [-95, -97],
+      [-160, 1],
+      [-64, -82],
+      [-4, -67],
+      [-42, -95],
+      [-102, -70],
+      [-32, -64],
+      [-63, 16],
+      [-124, -24],
+      [-48, -96],
+      [-47, -23],
+      [44, -151],
+      [71, -55],
+      [10, -49],
+      [-29, -81],
+      [-149, -197],
+      [-97, -50],
+      [14, -81],
+      [-124, -15],
+      [-10, -81],
+      [74, -45],
+      [-9, -66],
+      [57, -92],
+      [43, -19],
+      [-27, -70],
+      [-23, -203],
+      [-79, -23],
+      [33, -99],
+      [-87, -61],
+      [-108, 44],
+      [-88, -79],
+      [-35, -98],
+      [-3, -127],
+      [-20, -56],
+      [-48, -15],
+      [-83, -136],
+      [14, -183],
+      [13, -17]
+    ],
+    [
+      [44659, 34322],
+      [71, -38],
+      [2, -95],
+      [-108, 31],
+      [35, 102]
+    ],
+    [
+      [45400, 34340],
+      [127, -65],
+      [17, -63],
+      [-101, -5],
+      [-57, 63],
+      [14, 70]
+    ],
+    [
+      [45168, 34409],
+      [16, -62],
+      [46, -25],
+      [-22, -25],
+      [-15, -36],
+      [-71, 39],
+      [10, 80],
+      [36, 29]
+    ],
+    [
+      [44746, 34412],
+      [103, -64],
+      [6, -52],
+      [-81, -57],
+      [-29, 57],
+      [-58, 30],
+      [59, 86]
+    ],
+    [
+      [45262, 34446],
+      [5, -78],
+      [53, -64],
+      [-92, -37],
+      [-17, 27],
+      [18, 20],
+      [2, 11],
+      [-10, 9],
+      [-33, 13],
+      [-6, 79],
+      [80, 20]
+    ],
+    [
+      [45689, 34419],
+      [49, 8],
+      [15, -43],
+      [-16, -31],
+      [-69, 10],
+      [21, 56]
+    ],
+    [
+      [44833, 34535],
+      [49, -117],
+      [-14, -53],
+      [-77, 39],
+      [42, 131]
+    ],
+    [
+      [45730, 34567],
+      [21, -131],
+      [65, 9],
+      [11, -111],
+      [-63, -6],
+      [-14, 90],
+      [-12, 11],
+      [-51, -4],
+      [-31, 131],
+      [46, -7],
+      [28, 18]
+    ],
+    [
+      [45339, 34569],
+      [-22, -118],
+      [-42, 20],
+      [-41, -2],
+      [-22, 23],
+      [-38, 23],
+      [63, 1],
+      [6, 17],
+      [96, 36]
+    ],
+    [
+      [44249, 34569],
+      [87, -61],
+      [7, -71],
+      [-36, -65],
+      [-70, 18],
+      [24, 84],
+      [-12, 95]
+    ],
+    [
+      [44563, 34576],
+      [37, -81],
+      [-43, -125],
+      [-67, 72],
+      [-2, 89],
+      [75, 45]
+    ],
+    [
+      [45098, 34584],
+      [13, -60],
+      [82, -75],
+      [-34, -38],
+      [-83, 105],
+      [22, 68]
+    ],
+    [
+      [44015, 34603],
+      [26, -48],
+      [-40, -14],
+      [-1, -40],
+      [39, -17],
+      [20, 3],
+      [15, -69],
+      [-58, -73],
+      [-52, 184],
+      [51, 74]
+    ],
+    [
+      [45894, 34604],
+      [72, -127],
+      [2, -69],
+      [-95, -38],
+      [-52, 54],
+      [1, 102],
+      [-18, 47],
+      [90, 31]
+    ],
+    [
+      [45715, 34616],
+      [92, -63],
+      [-4, -89],
+      [-48, 26],
+      [-40, 126]
+    ],
+    [
+      [44765, 34638],
+      [55, -9],
+      [34, -77],
+      [-44, -15],
+      [3, -63],
+      [-58, -59],
+      [-53, 167],
+      [63, 56]
+    ],
+    [
+      [45507, 34659],
+      [67, -45],
+      [62, -84],
+      [-44, -131],
+      [-79, 65],
+      [-28, 77],
+      [22, 118]
+    ],
+    [
+      [44472, 34626],
+      [35, -66],
+      [-33, -27],
+      [-5, -71],
+      [46, -74],
+      [-98, -34],
+      [-17, 156],
+      [42, 41],
+      [30, 75]
+    ],
+    [
+      [44051, 34698],
+      [111, -18],
+      [2, -61],
+      [86, -130],
+      [-40, -81],
+      [-4, -171],
+      [-95, 2],
+      [-7, 65],
+      [-61, 64],
+      [38, 37],
+      [-4, 77],
+      [-14, 14],
+      [-39, -1],
+      [-21, 19],
+      [4, 20],
+      [44, 26],
+      [-20, 40],
+      [20, 98]
+    ],
+    [
+      [45604, 34697],
+      [83, -27],
+      [16, -119],
+      [-49, 8],
+      [-61, 44],
+      [11, 94]
+    ],
+    [
+      [44368, 34702],
+      [0, -97],
+      [72, -20],
+      [-88, -61],
+      [-45, 53],
+      [25, 39],
+      [-14, 63],
+      [50, 23]
+    ],
+    [
+      [45775, 34704],
+      [112, -81],
+      [-77, -29],
+      [-35, 110]
+    ],
+    [
+      [45394, 34707],
+      [65, -10],
+      [-47, -107],
+      [2, -62],
+      [42, -106],
+      [-45, -52],
+      [-67, 45],
+      [31, 72],
+      [-14, 85],
+      [-71, 6],
+      [15, 90],
+      [49, 3],
+      [40, 36]
+    ],
+    [
+      [44845, 34734],
+      [3, -38],
+      [8, -21],
+      [64, -27],
+      [-53, -49],
+      [-51, 115],
+      [29, 20]
+    ],
+    [
+      [45763, 34752],
+      [11, -161],
+      [-61, 29],
+      [-22, 101],
+      [72, 31]
+    ],
+    [
+      [44906, 34763],
+      [30, -39],
+      [-5, -78],
+      [-77, 39],
+      [7, 54],
+      [7, 12],
+      [38, 12]
+    ],
+    [
+      [44573, 34759],
+      [36, 6],
+      [-17, -125],
+      [-26, -61],
+      [-49, -15],
+      [-22, 143],
+      [78, 52]
+    ],
+    [
+      [45140, 34802],
+      [23, -61],
+      [71, -51],
+      [-14, -63],
+      [52, -18],
+      [-43, -41],
+      [13, -31],
+      [-5, -18],
+      [-34, -2],
+      [-27, 13],
+      [-4, -17],
+      [52, -37],
+      [-15, -18],
+      [-80, 73],
+      [-36, 125],
+      [47, 146]
+    ],
+    [
+      [44762, 34809],
+      [55, -38],
+      [-15, -78],
+      [-83, -96],
+      [-45, 74],
+      [1, 51],
+      [87, 87]
+    ],
+    [
+      [44492, 34811],
+      [40, -51],
+      [-86, -104],
+      [-39, 82],
+      [85, 73]
+    ],
+    [
+      [45386, 34795],
+      [5, -86],
+      [-41, -37],
+      [-57, 41],
+      [93, 82]
+    ],
+    [
+      [45297, 34658],
+      [-68, -27],
+      [18, 118],
+      [43, -27],
+      [7, -64]
+    ],
+    [
+      [45579, 34845],
+      [9, -6],
+      [33, -2],
+      [5, -11],
+      [-23, -31],
+      [2, -10],
+      [-22, -19],
+      [12, -8],
+      [-39, -84],
+      [-10, 58],
+      [-34, 77],
+      [20, 6],
+      [18, 18],
+      [29, 12]
+    ],
+    [
+      [45635, 34894],
+      [12, -18],
+      [15, -32],
+      [1, -40],
+      [-76, -77],
+      [11, 29],
+      [-11, 11],
+      [21, 18],
+      [12, 33],
+      [9, 6],
+      [-4, 13],
+      [-21, 2],
+      [-6, 28],
+      [18, 4],
+      [5, 18],
+      [14, 5]
+    ],
+    [
+      [44293, 34926],
+      [46, -14],
+      [21, -136],
+      [40, -20],
+      [-4, -43],
+      [-46, -4],
+      [-30, -16],
+      [-8, -21],
+      [12, -68],
+      [-87, -9],
+      [-4, 100],
+      [-48, 70],
+      [-39, 6],
+      [-9, 31],
+      [13, 15],
+      [41, 21],
+      [51, 17],
+      [51, 71]
+    ],
+    [
+      [45447, 34936],
+      [-1, -18],
+      [48, -13],
+      [-5, -14],
+      [12, -39],
+      [-2, -49],
+      [38, -60],
+      [-13, -44],
+      [-123, 44],
+      [9, 155],
+      [37, 38]
+    ],
+    [
+      [43866, 34959],
+      [45, -104],
+      [30, -197],
+      [-38, -121],
+      [3, -92],
+      [-87, -62],
+      [-162, 54],
+      [-11, 57],
+      [16, 101],
+      [38, 39],
+      [24, 101],
+      [109, 202],
+      [33, 22]
+    ],
+    [
+      [45300, 34967],
+      [7, -13],
+      [-13, -11],
+      [7, -11],
+      [21, 17],
+      [10, -9],
+      [56, -8],
+      [-18, -89],
+      [-58, -29],
+      [-63, 42],
+      [24, 80],
+      [27, 31]
+    ],
+    [
+      [45718, 35001],
+      [114, -71],
+      [-24, -104],
+      [-96, -31],
+      [-55, 87],
+      [62, 64],
+      [-1, 55]
+    ],
+    [
+      [44932, 35011],
+      [68, -67],
+      [-31, -194],
+      [-36, 20],
+      [-4, 71],
+      [-56, 74],
+      [59, 96]
+    ],
+    [
+      [44801, 35011],
+      [31, -21],
+      [-29, -133],
+      [-71, 42],
+      [21, 49],
+      [48, 63]
+    ],
+    [
+      [44547, 35028],
+      [31, -26],
+      [51, -20],
+      [15, -80],
+      [-80, -66],
+      [-26, -46],
+      [-110, 71],
+      [17, 93],
+      [37, 33],
+      [6, 37],
+      [35, -4],
+      [24, 8]
+    ],
+    [
+      [45144, 35033],
+      [19, -18],
+      [46, -6],
+      [8, -23],
+      [14, -18],
+      [38, -32],
+      [-53, -149],
+      [-55, -15],
+      [-65, 111],
+      [48, 150]
+    ],
+    [
+      [44972, 35067],
+      [59, -20],
+      [-30, -75],
+      [-65, 48],
+      [36, 47]
+    ],
+    [
+      [45404, 35058],
+      [110, -8],
+      [62, 31],
+      [125, -66],
+      [-15, -84],
+      [-36, -50],
+      [-4, 1],
+      [-17, 28],
+      [-1, -12],
+      [-11, -7],
+      [-1, -16],
+      [-22, -8],
+      [-18, -18],
+      [-27, -14],
+      [-27, -21],
+      [-21, 23],
+      [4, 17],
+      [-11, 37],
+      [3, 14],
+      [-10, 7],
+      [-29, 2],
+      [-26, 93],
+      [-28, 51]
+    ],
+    [
+      [45156, 35090],
+      [19, -28],
+      [49, 16],
+      [99, -16],
+      [32, -39],
+      [-38, -60],
+      [-9, -22],
+      [-12, -1],
+      [13, 14],
+      [-1, 12],
+      [-10, 3],
+      [-4, -2],
+      [-16, -19],
+      [-16, 18],
+      [-30, 5],
+      [-16, 19],
+      [-1, 16],
+      [-74, 53],
+      [15, 31]
+    ],
+    [
+      [45204, 35201],
+      [9, -48],
+      [110, -77],
+      [-83, 12],
+      [-64, -13],
+      [-23, 40],
+      [6, 83],
+      [45, 3]
+    ],
+    [
+      [45016, 35292],
+      [123, -43],
+      [-83, -133],
+      [-98, 20],
+      [3, 102],
+      [55, 54]
+    ],
+    [
+      [43876, 35309],
+      [-119, -217],
+      [-91, -40],
+      [53, 174],
+      [52, 48],
+      [105, 35]
+    ],
+    [
+      [45352, 35293],
+      [191, -15],
+      [17, -193],
+      [-112, -24],
+      [-69, 48],
+      [-109, 8],
+      [-52, 36],
+      [-4, 53],
+      [25, 75],
+      [88, 35],
+      [25, -23]
+    ],
+    [
+      [45550, 35352],
+      [-2, -61],
+      [-55, -9],
+      [-50, 66],
+      [107, 4]
+    ],
+    [
+      [45799, 35365],
+      [54, -4],
+      [60, -82],
+      [22, -63],
+      [-32, -120],
+      [-72, -18],
+      [-68, 54],
+      [41, 59],
+      [-97, 44],
+      [-13, 49],
+      [39, 77],
+      [66, 4]
+    ],
+    [
+      [45350, 35388],
+      [44, -78],
+      [-113, 24],
+      [69, 54]
+    ],
+    [
+      [45479, 35430],
+      [23, -77],
+      [-45, 1],
+      [-22, -8],
+      [-68, 46],
+      [112, 38]
+    ],
+    [
+      [45332, 35445],
+      [5, -45],
+      [-55, -40],
+      [-72, 25],
+      [68, 101],
+      [54, -41]
+    ],
+    [
+      [45363, 35532],
+      [65, -13],
+      [41, -83],
+      [-62, -19],
+      [-71, 27],
+      [-14, 62],
+      [41, 26]
+    ],
+    [
+      [45467, 35634],
+      [46, -5],
+      [81, -129],
+      [-13, -41],
+      [-98, -8],
+      [-57, 77],
+      [41, 106]
+    ],
+    [
+      [45654, 35685],
+      [77, -95],
+      [-4, -67],
+      [-55, -136],
+      [41, -51],
+      [-26, -48],
+      [16, -69],
+      [47, -40],
+      [2, -66],
+      [59, -46],
+      [-64, -34],
+      [-134, 81],
+      [-41, 121],
+      [7, 37],
+      [-31, 123],
+      [63, 79],
+      [-46, 83],
+      [22, 63],
+      [67, 65]
+    ],
+    [
+      [45768, 35708],
+      [24, -8],
+      [21, -109],
+      [59, -36],
+      [-40, -90],
+      [17, -89],
+      [-167, 13],
+      [39, 42],
+      [35, 141],
+      [-52, 123],
+      [64, 13]
+    ],
+    [
+      [45094, 35730],
+      [80, -34],
+      [73, -4],
+      [53, -53],
+      [-50, -54],
+      [-67, -31],
+      [-103, -98],
+      [-1, -70],
+      [90, -50],
+      [-20, -75],
+      [-125, 43],
+      [-25, 132],
+      [-40, 57],
+      [42, 132],
+      [93, 105]
+    ],
+    [
+      [45422, 35685],
+      [12, -107],
+      [-113, -41],
+      [-108, -102],
+      [-23, -56],
+      [-80, 49],
+      [72, 63],
+      [30, 69],
+      [48, 17],
+      [78, 82],
+      [58, -31],
+      [26, 57]
+    ],
+    [
+      [45615, 35768],
+      [48, -8],
+      [15, -64],
+      [-36, -3],
+      [-29, -36],
+      [-49, 39],
+      [51, 72]
+    ],
+    [
+      [45352, 35903],
+      [28, -98],
+      [-54, -30],
+      [31, -108],
+      [-57, -7],
+      [-51, 38],
+      [-41, 10],
+      [11, 72],
+      [47, 47],
+      [27, 16],
+      [13, 2],
+      [3, 7],
+      [43, 51]
+    ],
+    [
+      [45434, 36087],
+      [91, -46],
+      [45, -73],
+      [56, -33],
+      [-17, -78],
+      [54, -88],
+      [-83, -1],
+      [-22, -76],
+      [-75, -48],
+      [-12, 56],
+      [-135, 59],
+      [51, 48],
+      [-3, 54],
+      [-49, 71],
+      [6, 86],
+      [23, 59],
+      [30, -2],
+      [40, 12]
+    ],
+    [
+      [45730, 36132],
+      [-1, -134],
+      [35, -3],
+      [-8, -94],
+      [82, -65],
+      [15, -75],
+      [63, -74],
+      [-41, -100],
+      [-59, 43],
+      [-11, 95],
+      [-111, 20],
+      [-46, 93],
+      [16, 244],
+      [66, 50]
+    ],
+    [
+      [45539, 36517],
+      [17, -66],
+      [-27, -78],
+      [7, -34],
+      [-9, -14],
+      [11, -16],
+      [7, -33],
+      [17, -25],
+      [-8, -52],
+      [36, -28],
+      [-80, -54],
+      [-5, 63],
+      [-46, 23],
+      [0, 198],
+      [13, 73],
+      [67, 43]
+    ],
+    [
+      [45588, 36555],
+      [79, -33],
+      [49, -159],
+      [37, -34],
+      [-13, -65],
+      [-45, -62],
+      [-9, -90],
+      [-35, -44],
+      [-12, -102],
+      [-80, 59],
+      [-23, 101],
+      [43, 28],
+      [22, 32],
+      [-16, 55],
+      [-32, 38],
+      [-2, 21],
+      [-19, 25],
+      [9, 25],
+      [-5, 16],
+      [38, 72],
+      [-39, 106],
+      [53, 11]
+    ],
+    [
+      [45218, 47150],
+      [106, -26],
+      [58, -44],
+      [96, -21],
+      [19, -163],
+      [-18, -64],
+      [5, -124],
+      [36, 10],
+      [49, 76],
+      [77, -39],
+      [-11, -90],
+      [95, -41],
+      [94, 40],
+      [49, -82],
+      [80, -12],
+      [40, -87],
+      [-5, -54],
+      [60, -63],
+      [100, 29],
+      [33, -30],
+      [137, 18],
+      [149, 85],
+      [142, 20],
+      [11, -46],
+      [129, -17],
+      [25, -65],
+      [81, -8],
+      [71, 37],
+      [275, -109],
+      [-26, -57],
+      [135, -23],
+      [114, -38],
+      [48, -50],
+      [67, 37],
+      [109, -26]
+    ],
+    [
+      [47344, 44879],
+      [-50, 21],
+      [-77, 99],
+      [-51, 23],
+      [8, -113],
+      [-37, -2],
+      [-57, -90],
+      [73, -55],
+      [41, -108],
+      [-143, -86],
+      [-9, -122],
+      [-51, -32],
+      [-29, 68],
+      [-171, 9],
+      [-75, 40],
+      [-79, 11],
+      [-75, -29],
+      [-76, 68],
+      [-147, 62],
+      [-17, 89],
+      [-52, 47],
+      [-71, -2],
+      [-83, 47],
+      [-43, 88],
+      [14, 128],
+      [-80, 125],
+      [66, 23],
+      [-80, 77],
+      [-10, 120],
+      [-59, 36],
+      [-59, -5],
+      [-38, 42],
+      [-62, 8],
+      [-23, 70],
+      [-56, 25],
+      [-29, -73],
+      [-58, -57],
+      [-16, -69],
+      [195, -97],
+      [-7, -72],
+      [55, -26],
+      [84, 6],
+      [-20, -111],
+      [-210, -1],
+      [-59, 101],
+      [-119, 5],
+      [-62, -125],
+      [-74, 54],
+      [6, 95],
+      [-39, 25],
+      [-93, -26],
+      [0, 77],
+      [-28, 45],
+      [-115, -20],
+      [-25, 89],
+      [-79, 102],
+      [-115, 51],
+      [-88, 18],
+      [-17, 61],
+      [-54, 53],
+      [-72, 24],
+      [-13, 57],
+      [-119, 23],
+      [-32, 184],
+      [-37, -9],
+      [-51, -77],
+      [-55, -189],
+      [-40, -77],
+      [62, -55],
+      [27, 75],
+      [86, -35],
+      [155, -27],
+      [22, -102],
+      [68, -100],
+      [-36, -32],
+      [-143, -6],
+      [-90, -92],
+      [-113, -81],
+      [2, -143],
+      [-71, -43],
+      [-153, -28],
+      [-38, -42],
+      [-116, -59],
+      [-11, -85],
+      [-31, -38],
+      [58, -68],
+      [-124, -174],
+      [-43, -126],
+      [-55, -48],
+      [45, -75],
+      [15, -74],
+      [-19, -55],
+      [115, -112],
+      [63, 53],
+      [35, -23],
+      [149, 45],
+      [4, -65],
+      [234, -158],
+      [-8, -39],
+      [71, -59],
+      [109, -20],
+      [-18, -110],
+      [53, -74],
+      [174, -150],
+      [160, -48],
+      [89, -57],
+      [78, -1],
+      [22, 60],
+      [68, 11],
+      [57, -23],
+      [68, 71],
+      [36, -80],
+      [38, -4],
+      [23, -74],
+      [-34, -126],
+      [40, -16],
+      [-3, -69],
+      [135, -61],
+      [31, -63],
+      [82, -2],
+      [72, -28],
+      [-68, -80],
+      [1, -96],
+      [-46, -45],
+      [-32, -76],
+      [-56, 40],
+      [-48, -6],
+      [-62, 65],
+      [-97, -87],
+      [-124, 30],
+      [-84, 56],
+      [-85, -21],
+      [-124, 11],
+      [-84, -62],
+      [-49, 41],
+      [-167, 40],
+      [-74, -43],
+      [42, -101],
+      [-44, -58],
+      [22, -108],
+      [0, -89],
+      [-122, -166],
+      [9, -54],
+      [-90, 8],
+      [-42, -23],
+      [-58, -135],
+      [-106, 29],
+      [-7, 58],
+      [-73, 91],
+      [-111, -9],
+      [-87, -85],
+      [59, -124],
+      [-122, -118],
+      [-98, -145],
+      [-16, -80],
+      [-104, -102],
+      [73, -78],
+      [135, -212],
+      [89, -92],
+      [61, -36],
+      [66, -75],
+      [130, -30],
+      [139, -134],
+      [141, -34],
+      [101, 20],
+      [152, -84],
+      [51, -6],
+      [56, -105],
+      [27, 70],
+      [133, -47],
+      [99, 20],
+      [108, -42],
+      [32, -67],
+      [-12, -163],
+      [-71, -73],
+      [24, -108],
+      [58, -147],
+      [10, -164],
+      [-18, -162],
+      [-146, -71],
+      [-74, -52],
+      [-23, 28],
+      [-103, -32],
+      [57, -99],
+      [-46, -65],
+      [-13, -121],
+      [-23, -50],
+      [21, -103],
+      [-27, -57],
+      [69, -44],
+      [-12, -61],
+      [123, 19],
+      [40, -135],
+      [179, -160],
+      [80, 39],
+      [45, -39],
+      [-22, -93],
+      [-56, 4],
+      [-24, -127],
+      [20, -45],
+      [-58, -44],
+      [23, -71],
+      [-110, -58],
+      [59, -54],
+      [-7, -39],
+      [108, -33],
+      [35, -48],
+      [63, -3],
+      [37, 65],
+      [48, -46],
+      [134, 12],
+      [105, -92],
+      [-52, -48],
+      [-14, -71],
+      [-75, -75],
+      [-60, -23],
+      [-8, -63],
+      [27, -92],
+      [-22, -140],
+      [63, -45],
+      [26, -166],
+      [81, 0],
+      [48, -81],
+      [-21, -111],
+      [-83, -67],
+      [1, -73],
+      [84, -98],
+      [-64, -116],
+      [17, -163],
+      [-91, -17],
+      [-60, -40],
+      [-22, -109],
+      [-16, -152],
+      [-6, -159],
+      [-35, -12],
+      [-22, 4],
+      [-16, -7],
+      [-29, -67],
+      [4, -104],
+      [-26, -18],
+      [1, -15],
+      [-5, -23],
+      [-12, -3],
+      [-30, -17],
+      [-62, -51],
+      [-22, -77],
+      [-75, 33],
+      [-59, -11],
+      [-75, -115],
+      [-42, -116],
+      [35, -145],
+      [-46, -53],
+      [-35, -119],
+      [36, -71],
+      [-28, -71],
+      [-52, -40],
+      [-18, 36],
+      [-20, -14],
+      [-36, 16],
+      [7, -55],
+      [-44, -67],
+      [-120, 98],
+      [-34, 5],
+      [9, 47],
+      [-45, -15],
+      [-21, -20],
+      [-17, 11],
+      [-60, -50],
+      [-25, -108],
+      [15, -83],
+      [-63, -12],
+      [-20, 133],
+      [-64, 15],
+      [-32, -16],
+      [-11, -57],
+      [-82, -30],
+      [-20, -19],
+      [-3, -20],
+      [53, -106],
+      [-143, 22],
+      [-36, 127],
+      [-82, 137],
+      [28, 95],
+      [-50, 92],
+      [92, 102],
+      [40, 72],
+      [23, 127],
+      [-30, 138],
+      [-50, 86],
+      [-156, 52],
+      [-97, 2],
+      [70, 217],
+      [-57, -45],
+      [-7, -73],
+      [-58, -76],
+      [-51, 6],
+      [-92, 55],
+      [-53, 79],
+      [-4, 158],
+      [-55, -81],
+      [10, -113],
+      [74, -65],
+      [42, -63],
+      [97, 0],
+      [68, -46],
+      [154, -11],
+      [128, -171],
+      [-59, -86],
+      [-184, -121],
+      [-67, -19],
+      [-159, -359],
+      [-116, -134],
+      [-73, -36],
+      [-140, -116],
+      [-90, -91],
+      [-80, 6],
+      [-54, -57],
+      [-113, -44],
+      [-258, -48],
+      [-172, -56]
+    ],
+    [
+      [43798, 45734],
+      [-1, 9],
+      [132, 245],
+      [10, 123],
+      [32, 47],
+      [13, 121],
+      [-45, 152],
+      [10, 73],
+      [-79, 69],
+      [22, 50],
+      [-57, 69],
+      [-4, 86],
+      [-66, 48],
+      [-12, 48],
+      [-99, 17],
+      [-57, 141],
+      [-45, 19],
+      [35, 87],
+      [15, 176]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0004547835780230729, 0.00043253225199741204],
+    "translate": [68.187363, 6.754256]
+  },
+  "objects": {
+    "india": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [
+            [[0]],
+            [[1]],
+            [[2]],
+            [[3]],
+            [[4]],
+            [[5]],
+            [[6]],
+            [[7]],
+            [[8]],
+            [[9]],
+            [[10]],
+            [[11]],
+            [[12]],
+            [[13]],
+            [[14]],
+            [[15]],
+            [[16]],
+            [[17]],
+            [[18]],
+            [[19]],
+            [[20]],
+            [[21]],
+            [[22]],
+            [[23]],
+            [[24]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-AN",
+            "NAME_0": "India",
+            "ID_1": 1,
+            "NAME_1": "Andaman and Nicobar"
+          }
+        },
+        {
+          "arcs": [[25, 26]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-AN",
+            "NAME_0": "India",
+            "ID_1": 36,
+            "NAME_1": "Telangana"
+          }
+        },
+        {
+          "arcs": [[[27]], [[28]], [[-27, 29]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-AP",
+            "NAME_0": "India",
+            "ID_1": 2,
+            "NAME_1": "Andhra Pradesh"
+          }
+        },
+        {
+          "arcs": [[30, 31, 32]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-AR",
+            "NAME_0": "India",
+            "ID_1": 3,
+            "NAME_1": "Arunachal Pradesh"
+          }
+        },
+        {
+          "arcs": [[[33, 34]], [[35, 36, 37, 38, 39, 40, 41, 42, 43, -32]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-AS",
+            "NAME_0": "India",
+            "ID_1": 4,
+            "NAME_1": "Assam"
+          }
+        },
+        {
+          "arcs": [[44, 45, 46, 47]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-BR",
+            "NAME_0": "India",
+            "ID_1": 5,
+            "NAME_1": "Bihar"
+          }
+        },
+        {
+          "arcs": [[48, 49]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-CH",
+            "NAME_0": "India",
+            "ID_1": 6,
+            "NAME_1": "Chandigarh"
+          }
+        },
+        {
+          "arcs": [[50, 51, 52, 53, 54, 55]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-CT",
+            "NAME_0": "India",
+            "ID_1": 7,
+            "NAME_1": "Chhattisgarh"
+          }
+        },
+        {
+          "arcs": [[56, 57]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-DN",
+            "NAME_0": "India",
+            "ID_1": 8,
+            "NAME_1": "Dadra and Nagar Haveli"
+          }
+        },
+        {
+          "arcs": [[[58, 59]], [[60, 61]], [[62, 63, 64, 65]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-DD",
+            "NAME_0": "India",
+            "ID_1": 9,
+            "NAME_1": "Daman and Diu"
+          }
+        },
+        {
+          "arcs": [[66, 67]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-DL",
+            "NAME_0": "India",
+            "ID_1": 10,
+            "NAME_1": "Delhi"
+          }
+        },
+        {
+          "arcs": [[68, 69, 70]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-GA",
+            "NAME_0": "India",
+            "ID_1": 11,
+            "NAME_1": "Goa"
+          }
+        },
+        {
+          "arcs": [
+            [[-64, 71]],
+            [[72]],
+            [[73]],
+            [[74]],
+            [[75]],
+            [[76]],
+            [[77]],
+            [[78]],
+            [[79]],
+            [[80]],
+            [[81]],
+            [[82]],
+            [[83]],
+            [[84]],
+            [[85]],
+            [[86]],
+            [[87, 88, -58, 89, 90, -59, 91, -62, 92, -66, 93, 94]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-GJ",
+            "NAME_0": "India",
+            "ID_1": 12,
+            "NAME_1": "Gujarat"
+          }
+        },
+        {
+          "arcs": [[95, -67, 96, 97, 98, -50, 99, 100]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-HR",
+            "NAME_0": "India",
+            "ID_1": 13,
+            "NAME_1": "Haryana"
+          }
+        },
+        {
+          "arcs": [[101, 102, 103, -101, 104, 105]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-HP",
+            "NAME_0": "India",
+            "ID_1": 14,
+            "NAME_1": "Himachal Pradesh"
+          }
+        },
+        {
+          "arcs": [[-106, 106, 107]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-JK",
+            "NAME_0": "India",
+            "ID_1": 15,
+            "NAME_1": "Jammu and Kashmir"
+          }
+        },
+        {
+          "arcs": [[108, 109, -56, 110, -46]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-JH",
+            "NAME_0": "India",
+            "ID_1": 16,
+            "NAME_1": "Jharkhand"
+          }
+        },
+        {
+          "arcs": [[111, 112, 113, 114, -69, 115]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-KA",
+            "NAME_0": "India",
+            "ID_1": 17,
+            "NAME_1": "Karnataka"
+          }
+        },
+        {
+          "arcs": [[116, 117, 118, 119, -114]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-KL",
+            "NAME_0": "India",
+            "ID_1": 18,
+            "NAME_1": "Kerala"
+          }
+        },
+        {
+          "arcs": [[120]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-LD",
+            "NAME_0": "India",
+            "ID_1": 19,
+            "NAME_1": "Lakshadweep"
+          }
+        },
+        {
+          "arcs": [[-54, 121, -88, 122, 123]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-MP",
+            "NAME_0": "India",
+            "ID_1": 20,
+            "NAME_1": "Madhya Pradesh"
+          }
+        },
+        {
+          "arcs": [[-53, 124, -116, -71, 125, -90, -57, -89, -122]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-MH",
+            "NAME_0": "India",
+            "ID_1": 21,
+            "NAME_1": "Maharashtra"
+          }
+        },
+        {
+          "arcs": [[126, 127, -37, 128]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-MN",
+            "NAME_0": "India",
+            "ID_1": 22,
+            "NAME_1": "Manipur"
+          }
+        },
+        {
+          "arcs": [[129, -34, 130, -41]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-ML",
+            "NAME_0": "India",
+            "ID_1": 23,
+            "NAME_1": "Meghalaya"
+          }
+        },
+        {
+          "arcs": [[-128, 131, 132, -38]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-MZ",
+            "NAME_0": "India",
+            "ID_1": 24,
+            "NAME_1": "Mizoram"
+          }
+        },
+        {
+          "arcs": [[133, -129, -36, -31]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-NL",
+            "NAME_0": "India",
+            "ID_1": 25,
+            "NAME_1": "Nagaland"
+          }
+        },
+        {
+          "arcs": [[[134]], [[135, 136, -51, -110]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-OR",
+            "NAME_0": "India",
+            "ID_1": 26,
+            "NAME_1": "Orissa"
+          }
+        },
+        {
+          "arcs": [[[137, 138]], [[139, 140]], [[141, -119]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-PY",
+            "NAME_0": "India",
+            "ID_1": 27,
+            "NAME_1": "Puducherry"
+          }
+        },
+        {
+          "arcs": [[-100, -49, -99, 142, 143, -107, -105]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-PB",
+            "NAME_0": "India",
+            "ID_1": 28,
+            "NAME_1": "Punjab"
+          }
+        },
+        {
+          "arcs": [[-98, 144, -123, -95, 145, -143]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-RJ",
+            "NAME_0": "India",
+            "ID_1": 29,
+            "NAME_1": "Rajasthan"
+          }
+        },
+        {
+          "arcs": [[146, 147]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-SK",
+            "NAME_0": "India",
+            "ID_1": 30,
+            "NAME_1": "Sikkim"
+          }
+        },
+        {
+          "arcs": [[[148]], [[-141, 149, -139, 150, -117, -113, 151]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-TN",
+            "NAME_0": "India",
+            "ID_1": 31,
+            "NAME_1": "Tamil Nadu"
+          }
+        },
+        {
+          "arcs": [[-39, -133, 152]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-TR",
+            "NAME_0": "India",
+            "ID_1": 32,
+            "NAME_1": "Tripura"
+          }
+        },
+        {
+          "arcs": [[153, -47, -111, -55, -124, -145, -97, -68, -96, -104, 154]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-UP",
+            "NAME_0": "India",
+            "ID_1": 33,
+            "NAME_1": "Uttar Pradesh"
+          }
+        },
+        {
+          "arcs": [[-155, -103, 155]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-UT",
+            "NAME_0": "India",
+            "ID_1": 34,
+            "NAME_1": "Uttaranchal"
+          }
+        },
+        {
+          "arcs": [
+            [[156]],
+            [[157]],
+            [[158]],
+            [[159]],
+            [[160]],
+            [[161]],
+            [[162]],
+            [[163]],
+            [[164]],
+            [[165]],
+            [[166]],
+            [[167]],
+            [[168]],
+            [[169]],
+            [[170]],
+            [[171]],
+            [[172]],
+            [[173]],
+            [[174]],
+            [[175]],
+            [[176]],
+            [[177]],
+            [[178]],
+            [[179]],
+            [[180]],
+            [[181]],
+            [[182]],
+            [[183]],
+            [[184]],
+            [[185]],
+            [[186]],
+            [[187]],
+            [[188]],
+            [[189]],
+            [[190]],
+            [[191]],
+            [[192]],
+            [[193]],
+            [[194]],
+            [[195]],
+            [[196]],
+            [[197]],
+            [[198]],
+            [[199]],
+            [[200]],
+            [[201]],
+            [[202]],
+            [[203]],
+            [[204]],
+            [[205]],
+            [[206]],
+            [[207]],
+            [[208]],
+            [[209]],
+            [[210]],
+            [[211]],
+            [[212]],
+            [[213]],
+            [[214]],
+            [[215]],
+            [[216]],
+            [[217]],
+            [[218]],
+            [[219]],
+            [[220]],
+            [[221]],
+            [[222]],
+            [[223, -43, 224, -136, -109, -45, 225, -147]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 105,
+            "ISO": "IN-WB",
+            "NAME_0": "India",
+            "ID_1": 35,
+            "NAME_1": "West Bengal"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/iran-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/iran-topo.json
new file mode 100644
index 0000000..1accdd5
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/iran-topo.json
@@ -0,0 +1,2390 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [3492, 7376],
+      [110, -20],
+      [25, -38],
+      [79, -16],
+      [73, -36],
+      [2, -52],
+      [38, -5]
+    ],
+    [
+      [3819, 7209],
+      [-35, -40],
+      [12, -58],
+      [-41, 1],
+      [-54, 24],
+      [-60, -57],
+      [-13, -36],
+      [27, -51],
+      [39, -18],
+      [-39, -39],
+      [-16, -41],
+      [-63, 18],
+      [-56, -37]
+    ],
+    [
+      [3520, 6875],
+      [-25, 50],
+      [-29, -41],
+      [-39, 76],
+      [-139, -27],
+      [-62, 15]
+    ],
+    [
+      [3226, 6948],
+      [-33, 77],
+      [18, 34],
+      [145, 74],
+      [16, 73],
+      [34, 54],
+      [-7, 32],
+      [-55, 11],
+      [-56, 49],
+      [11, 34],
+      [36, 8],
+      [157, -18]
+    ],
+    [
+      [2358, 8751],
+      [0, -24],
+      [62, -42],
+      [-50, -95],
+      [-60, -64],
+      [-9, -63],
+      [-32, -48],
+      [29, -47],
+      [4, -42],
+      [61, -120],
+      [62, -91],
+      [71, -59],
+      [-10, -57],
+      [14, -43]
+    ],
+    [
+      [2500, 7956],
+      [-36, 23],
+      [-84, -56],
+      [-26, -2],
+      [-42, 54],
+      [-39, -9]
+    ],
+    [
+      [2273, 7966],
+      [-135, 96],
+      [-21, 86],
+      [-95, 18],
+      [-28, 108],
+      [8, 57],
+      [29, 46],
+      [-69, 49],
+      [-35, 39],
+      [-17, 89],
+      [5, 55],
+      [-50, 49],
+      [-92, -27],
+      [-33, 3],
+      [-38, 37],
+      [-48, -33],
+      [-19, 25],
+      [11, 57],
+      [50, 67],
+      [54, 47],
+      [81, -14],
+      [22, 45],
+      [-54, 29],
+      [41, 59],
+      [-8, 51],
+      [-36, 36],
+      [11, 45],
+      [-23, 43],
+      [23, 44],
+      [-43, 88],
+      [-1, 81],
+      [-57, 63]
+    ],
+    [
+      [1706, 9404],
+      [20, 30],
+      [81, 28],
+      [104, 64],
+      [34, 34],
+      [47, 3],
+      [47, 27],
+      [82, -87],
+      [44, -61],
+      [73, -65],
+      [-86, -32],
+      [-40, -37],
+      [7, -43],
+      [81, -60],
+      [29, -44],
+      [-34, -50],
+      [-94, -15],
+      [-50, -25],
+      [4, -41],
+      [49, -48],
+      [67, -29],
+      [36, -80],
+      [63, 6],
+      [71, -92],
+      [17, -36]
+    ],
+    [
+      [3100, 3368],
+      [54, 49],
+      [59, -36],
+      [88, -4]
+    ],
+    [
+      [3301, 3377],
+      [47, -11],
+      [41, -37]
+    ],
+    [
+      [3389, 3329],
+      [-10, -57],
+      [47, -43],
+      [43, -93],
+      [128, -6],
+      [53, -25],
+      [35, 0],
+      [43, -57],
+      [-4, -65],
+      [73, -90],
+      [100, -51],
+      [94, -219],
+      [60, -89],
+      [74, -184],
+      [13, -89],
+      [37, -101],
+      [36, -70],
+      [-5, -57],
+      [52, -26],
+      [59, -76],
+      [72, -196],
+      [23, -44],
+      [203, -173]
+    ],
+    [
+      [4615, 1518],
+      [-28, -18],
+      [-63, 9],
+      [-50, -8],
+      [-13, -29]
+    ],
+    [
+      [4461, 1472],
+      [-48, 53],
+      [46, 8],
+      [0, 35],
+      [-26, 1],
+      [-59, 91],
+      [-38, 32],
+      [-40, 2],
+      [-82, 35],
+      [-77, 88],
+      [-59, -5],
+      [-46, 9],
+      [-74, -14],
+      [-105, 39],
+      [-62, 77],
+      [-40, 75],
+      [-20, 15],
+      [14, 57],
+      [-81, 128],
+      [-22, 61],
+      [-10, 116],
+      [-36, 103],
+      [-60, -16],
+      [-35, 54],
+      [57, 55],
+      [-2, 39],
+      [-57, 59],
+      [-72, -16],
+      [-15, 32],
+      [10, 75],
+      [-5, 103],
+      [-67, 72],
+      [-29, 51],
+      [-75, 75],
+      [-39, 72],
+      [-55, 57],
+      [1, 85],
+      [-30, 76],
+      [-23, 17]
+    ],
+    [
+      [3756, 3997],
+      [-64, -7],
+      [-23, -39],
+      [-106, 11],
+      [-54, 44],
+      [-111, 132],
+      [-89, 11],
+      [-98, 60]
+    ],
+    [
+      [3211, 4209],
+      [56, 86],
+      [-33, 82],
+      [-31, 18],
+      [-71, 113],
+      [-17, 82],
+      [-62, 36],
+      [-41, 94],
+      [-53, 68],
+      [-17, 89]
+    ],
+    [
+      [2942, 4877],
+      [88, 56],
+      [42, -5],
+      [78, 23],
+      [51, -56],
+      [102, 4],
+      [57, 48],
+      [108, 10],
+      [35, 26],
+      [25, -25],
+      [-4, -51],
+      [50, -57],
+      [-21, -59],
+      [7, -32],
+      [74, -49],
+      [56, -63],
+      [62, -51],
+      [10, -96],
+      [-46, -46],
+      [38, -63],
+      [-51, -40],
+      [4, -109],
+      [44, -97],
+      [15, -83],
+      [-10, -65]
+    ],
+    [
+      [2273, 7966],
+      [-40, -34],
+      [-103, 23],
+      [-90, -13],
+      [-55, 14],
+      [-37, -15],
+      [-110, -10],
+      [-51, -47],
+      [-48, -23],
+      [-42, -65],
+      [-31, -15],
+      [-49, -80],
+      [10, -38]
+    ],
+    [
+      [1627, 7663],
+      [-189, -8],
+      [-10, 30],
+      [13, 57],
+      [-32, 34],
+      [-8, 54],
+      [-39, 3],
+      [-25, 34],
+      [-39, -3],
+      [-74, -38],
+      [-35, -34],
+      [-2, -31],
+      [-37, -21],
+      [-46, 44],
+      [-56, 26],
+      [-10, 29],
+      [-94, 65],
+      [-75, -19],
+      [-56, 50],
+      [-103, 60],
+      [-36, 34],
+      [-6, 61],
+      [12, 63],
+      [-44, 59],
+      [-25, 54],
+      [-10, 94],
+      [2, 144],
+      [-26, 84],
+      [-38, 40],
+      [12, 76],
+      [53, 65],
+      [72, 66],
+      [11, 41],
+      [-29, 97],
+      [15, 68],
+      [72, 78]
+    ],
+    [
+      [745, 9119],
+      [145, -36],
+      [79, -34],
+      [80, -2],
+      [53, -24],
+      [93, 50],
+      [91, -28],
+      [39, 34],
+      [126, 147],
+      [53, -5],
+      [40, 28],
+      [16, 44],
+      [76, 45],
+      [70, 66]
+    ],
+    [
+      [5858, 6080],
+      [6, -201],
+      [7, -39],
+      [0, -174],
+      [-30, -103],
+      [-56, -83],
+      [-92, -1],
+      [-30, -33],
+      [-20, -106],
+      [-44, -125],
+      [-50, -53],
+      [-37, -20],
+      [-104, -34],
+      [-123, -27],
+      [-246, -121],
+      [-90, -14],
+      [-43, 20],
+      [-121, 25],
+      [-36, -7],
+      [-77, -47],
+      [-30, -32],
+      [-65, -14],
+      [-10, -91],
+      [16, -149],
+      [-37, -149],
+      [-9, -143],
+      [26, -78]
+    ],
+    [
+      [4563, 4281],
+      [-82, -33],
+      [-95, -26],
+      [-65, 6],
+      [-113, 38],
+      [-2, 65],
+      [-77, 6],
+      [-34, -46],
+      [-87, -59],
+      [-71, 19],
+      [-18, -13],
+      [55, -71],
+      [36, 1],
+      [36, -26],
+      [-19, -162],
+      [-34, -52],
+      [-22, -78],
+      [8, -103],
+      [-52, -7]
+    ],
+    [
+      [3927, 3740],
+      [-65, 45],
+      [-73, 77],
+      [-37, 70],
+      [4, 65]
+    ],
+    [
+      [2942, 4877],
+      [31, 85],
+      [-44, 37],
+      [-97, -12],
+      [-36, 88]
+    ],
+    [
+      [2796, 5075],
+      [-2, 26],
+      [102, 57],
+      [-16, 77],
+      [90, 49],
+      [36, 2],
+      [34, 105],
+      [35, 53],
+      [-26, 50],
+      [30, 34]
+    ],
+    [
+      [3079, 5528],
+      [30, 39],
+      [90, 56],
+      [73, 9],
+      [42, 21],
+      [49, 2],
+      [85, 35],
+      [53, 53],
+      [43, -18],
+      [22, 97],
+      [36, 27],
+      [17, 38],
+      [-7, 39]
+    ],
+    [
+      [3612, 5926],
+      [-18, 5]
+    ],
+    [
+      [3594, 5931],
+      [-13, 19],
+      [12, 39],
+      [5, 33],
+      [5, 66],
+      [0, 13],
+      [12, 20],
+      [12, 14],
+      [42, 14],
+      [79, 16],
+      [122, -3],
+      [31, 1],
+      [36, 7],
+      [6, 0],
+      [19, 8],
+      [24, 13]
+    ],
+    [
+      [3986, 6191],
+      [17, 20]
+    ],
+    [
+      [4003, 6211],
+      [75, -50],
+      [61, -19],
+      [67, 15],
+      [86, 2],
+      [118, -31],
+      [49, -25],
+      [123, -37],
+      [135, 3],
+      [37, -6],
+      [153, 2],
+      [36, 7],
+      [172, 3],
+      [79, 14],
+      [172, 2],
+      [18, 6],
+      [295, 2],
+      [122, 14],
+      [57, -33]
+    ],
+    [
+      [4563, 4281],
+      [113, -45],
+      [72, -45],
+      [55, -59],
+      [42, -78],
+      [19, -78],
+      [102, -267],
+      [23, -32],
+      [65, -137],
+      [94, -117],
+      [18, -78],
+      [5, -103],
+      [29, -46],
+      [169, -98]
+    ],
+    [
+      [5369, 3098],
+      [0, -38],
+      [57, -117],
+      [11, -52],
+      [52, -39],
+      [106, -1],
+      [35, -13],
+      [78, -259],
+      [23, -33]
+    ],
+    [
+      [5731, 2546],
+      [33, -117],
+      [-41, -39],
+      [144, -131],
+      [46, -52],
+      [5, -65],
+      [-38, -197],
+      [41, -26],
+      [35, -51],
+      [-5, -50],
+      [-23, -25],
+      [-85, 2],
+      [-45, -43],
+      [-44, -23],
+      [-26, -93],
+      [-43, -55],
+      [-69, 1],
+      [-40, 19],
+      [-86, 13],
+      [-57, -37],
+      [-47, 26],
+      [-45, -13],
+      [-58, 7],
+      [-68, -12],
+      [-74, -50],
+      [7, -58],
+      [-17, -38],
+      [0, -51],
+      [-51, -32],
+      [-69, 7],
+      [-98, 32],
+      [-51, -19],
+      [-81, 64],
+      [-103, -5],
+      [-40, 26],
+      [-23, 57]
+    ],
+    [
+      [3389, 3329],
+      [52, 20],
+      [94, -12],
+      [64, 47],
+      [47, 14],
+      [58, 47],
+      [-7, 104],
+      [-31, 58],
+      [5, 46],
+      [29, 20],
+      [166, -95],
+      [75, 39],
+      [5, 33],
+      [-19, 90]
+    ],
+    [
+      [3376, 7814],
+      [0, -22],
+      [-71, -50],
+      [-10, -86],
+      [-59, -49]
+    ],
+    [
+      [3236, 7607],
+      [-68, 10],
+      [-129, -52],
+      [-36, -28],
+      [-49, -2],
+      [-39, 25],
+      [-56, -2],
+      [-57, 18],
+      [-60, 65],
+      [-2, 34],
+      [-52, 25]
+    ],
+    [
+      [2688, 7700],
+      [-32, 122],
+      [-92, 98],
+      [-64, 36]
+    ],
+    [
+      [2358, 8751],
+      [41, -12],
+      [54, 31],
+      [46, -5],
+      [-8, -93],
+      [18, -90],
+      [4, -85],
+      [17, -44],
+      [33, -154],
+      [37, -48],
+      [77, -64],
+      [52, -26],
+      [113, -32],
+      [211, -22],
+      [112, -26],
+      [28, -25],
+      [5, -42],
+      [35, -89],
+      [95, -87],
+      [48, -24]
+    ],
+    [
+      [6267, 8533],
+      [-2, -73],
+      [12, -55],
+      [-16, -76],
+      [16, -27],
+      [55, -21],
+      [5, -73],
+      [-38, -19],
+      [-84, -17],
+      [-64, -52],
+      [1, -26],
+      [-40, -39]
+    ],
+    [
+      [6112, 8055],
+      [-19, 1],
+      [-43, -66],
+      [-30, -78],
+      [-61, -72],
+      [-18, -150],
+      [-56, -32],
+      [-136, 29],
+      [-113, -12],
+      [-82, -45],
+      [-86, -104],
+      [-109, -53],
+      [-71, 19],
+      [-79, -7]
+    ],
+    [
+      [5209, 7485],
+      [-29, 52],
+      [-81, 63],
+      [-88, 44],
+      [-16, 50]
+    ],
+    [
+      [4995, 7694],
+      [119, -10],
+      [50, 17],
+      [2, 94],
+      [-53, 171],
+      [-19, 80],
+      [179, -20],
+      [59, 23],
+      [77, 56],
+      [39, 16],
+      [37, -16],
+      [74, 61],
+      [11, 54],
+      [-18, 18],
+      [21, 60],
+      [105, 91],
+      [53, 57],
+      [29, 5],
+      [183, 84],
+      [141, 17],
+      [87, -31],
+      [96, 12]
+    ],
+    [
+      [2161, 6964],
+      [27, -45],
+      [38, -12],
+      [63, 22],
+      [103, -56],
+      [69, 9],
+      [-2, 47]
+    ],
+    [
+      [2459, 6929],
+      [18, 20],
+      [69, -4],
+      [65, -63],
+      [-43, -22],
+      [20, -38],
+      [131, 6],
+      [70, -29]
+    ],
+    [
+      [2789, 6799],
+      [1, -40],
+      [26, -31],
+      [-55, -36],
+      [-38, 11],
+      [47, -96],
+      [-18, -40],
+      [-62, 3],
+      [20, -45],
+      [81, -21],
+      [52, -63],
+      [16, -103],
+      [-31, -15],
+      [-58, 75],
+      [17, 60],
+      [-169, 3],
+      [15, -91],
+      [-37, -15],
+      [8, -71],
+      [-112, -33],
+      [64, -29],
+      [-11, -105],
+      [52, -94],
+      [16, -95],
+      [-67, -79]
+    ],
+    [
+      [2546, 5849],
+      [-101, 32],
+      [-52, 29],
+      [-57, 3],
+      [-43, -46],
+      [-25, 17],
+      [-121, 7],
+      [-66, 67],
+      [-78, 29],
+      [-117, 98]
+    ],
+    [
+      [1886, 6085],
+      [30, 61],
+      [84, -10],
+      [38, 9],
+      [5, 106],
+      [-70, -16],
+      [-39, 5],
+      [-91, 36],
+      [-20, 26],
+      [19, 40],
+      [77, 3],
+      [-1, 60],
+      [44, 35],
+      [5, 40]
+    ],
+    [
+      [1967, 6480],
+      [12, 20],
+      [97, -23],
+      [42, 61],
+      [11, 67],
+      [-40, 58],
+      [-65, 44],
+      [-29, 99],
+      [-55, 111],
+      [43, 34],
+      [35, -65],
+      [49, 35],
+      [24, 48],
+      [70, -5]
+    ],
+    [
+      [6263, 1267],
+      [62, -24],
+      [-7, -23],
+      [-51, -14],
+      [-13, -43],
+      [-103, -100],
+      [-32, 29],
+      [-60, -33],
+      [-42, 1],
+      [-35, -29],
+      [-174, -63],
+      [-5, 76],
+      [34, -10],
+      [119, 46],
+      [39, 36],
+      [65, 21],
+      [9, 96],
+      [56, -32],
+      [138, 66]
+    ],
+    [
+      [5731, 2546],
+      [99, -7],
+      [64, -40],
+      [34, -52],
+      [46, -39],
+      [53, 19],
+      [78, 76],
+      [77, 38],
+      [34, -58],
+      [2, -163],
+      [-7, -77],
+      [-19, -39],
+      [5, -45],
+      [109, -125],
+      [40, -27],
+      [93, -14],
+      [95, 55],
+      [49, 77],
+      [36, 18],
+      [75, -41],
+      [-9, -84],
+      [21, -98],
+      [63, -28],
+      [28, -66],
+      [51, -54],
+      [4, -52],
+      [-36, -25],
+      [51, -47],
+      [21, -79],
+      [4, -193],
+      [5, -57],
+      [29, -46],
+      [56, -9],
+      [46, -40],
+      [28, -1],
+      [51, -60],
+      [46, 37],
+      [12, 37],
+      [57, -8],
+      [103, -99],
+      [-40, -24],
+      [11, -83],
+      [-23, -31],
+      [-6, -69],
+      [6, -89],
+      [-17, -87],
+      [63, 17],
+      [58, -21],
+      [40, 23],
+      [23, -19],
+      [46, -2],
+      [10, -101],
+      [75, -3],
+      [23, 37],
+      [51, -21],
+      [17, -39]
+    ],
+    [
+      [7662, 618],
+      [-23, -43],
+      [130, -118],
+      [22, -77],
+      [85, -91],
+      [-16, -35]
+    ],
+    [
+      [7860, 254],
+      [-67, -32],
+      [-60, 11],
+      [-37, 52],
+      [-66, 46],
+      [-58, -3],
+      [-51, 15],
+      [-130, -1],
+      [-52, -17],
+      [-74, 0],
+      [-32, 22],
+      [-44, 68],
+      [-69, -27],
+      [-47, 61],
+      [-42, -12],
+      [-122, 18],
+      [-36, 17],
+      [-21, 33],
+      [-11, 64],
+      [-38, 49],
+      [-10, 53],
+      [20, 53],
+      [-43, 38],
+      [-40, 95],
+      [12, 127],
+      [-13, 92],
+      [-26, 83],
+      [-42, 53],
+      [-5, 52],
+      [-77, 92],
+      [-128, 25],
+      [-28, -7],
+      [-59, 17],
+      [-81, -35],
+      [-31, 12],
+      [-39, -38],
+      [-42, -18],
+      [-18, -31],
+      [-113, -26],
+      [-41, 2],
+      [-22, -22],
+      [-21, -90],
+      [-53, -42],
+      [-67, 24],
+      [-50, -6],
+      [-10, -28],
+      [-61, -26],
+      [-22, -35],
+      [-44, -15],
+      [-64, -66],
+      [-115, -11],
+      [-31, 57],
+      [-83, 5],
+      [-46, 78],
+      [-64, -7],
+      [-87, 35],
+      [-99, -32],
+      [-70, 18],
+      [-49, 25],
+      [-61, 59],
+      [-13, 77],
+      [-51, 14],
+      [-208, 89],
+      [-66, 43],
+      [-81, 71]
+    ],
+    [
+      [1727, 5881],
+      [28, -62],
+      [-22, -59],
+      [-68, -59],
+      [-58, 6],
+      [-92, -28],
+      [-38, -33],
+      [-8, -44],
+      [-27, -27],
+      [54, -93],
+      [39, -43],
+      [61, -43],
+      [78, -24],
+      [139, -133],
+      [55, -32],
+      [37, -83],
+      [41, -70],
+      [46, -115]
+    ],
+    [
+      [1992, 4939],
+      [-27, -88],
+      [-62, -87],
+      [17, -68],
+      [-15, -36],
+      [-64, -41]
+    ],
+    [
+      [1841, 4619],
+      [-37, 40],
+      [16, 33],
+      [-63, 65],
+      [3, 49],
+      [-34, 45],
+      [-45, 17],
+      [-43, -24],
+      [-55, 13],
+      [-147, 148],
+      [-218, 160],
+      [-125, 5],
+      [-28, 40],
+      [31, 32],
+      [-13, 37],
+      [30, 36],
+      [-1, 52],
+      [-79, 84],
+      [-6, 56],
+      [-64, 102],
+      [-68, 0],
+      [-16, 17]
+    ],
+    [
+      [879, 5626],
+      [13, 116],
+      [30, 72],
+      [-32, 43],
+      [99, 9],
+      [33, 20],
+      [76, -52],
+      [65, 10],
+      [52, -29],
+      [67, -59],
+      [95, -33],
+      [94, -1],
+      [68, 33],
+      [83, -23],
+      [18, 63],
+      [-34, 62],
+      [89, 29],
+      [32, -5]
+    ],
+    [
+      [7130, 4307],
+      [77, -29],
+      [101, -62],
+      [72, -29],
+      [125, -69],
+      [119, -50],
+      [84, -49],
+      [60, -22],
+      [125, -189],
+      [35, -84],
+      [71, -92]
+    ],
+    [
+      [7999, 3632],
+      [-56, -252],
+      [-4, -85],
+      [-30, -136],
+      [-28, -90],
+      [16, -46],
+      [52, -47],
+      [-2, -46],
+      [22, -151],
+      [-2, -45],
+      [-80, -149],
+      [21, -66],
+      [-9, -45],
+      [33, -60],
+      [-52, -70],
+      [-68, -51],
+      [-92, -43],
+      [-42, -5],
+      [-8, -46],
+      [64, -28],
+      [27, -53],
+      [-15, -58],
+      [-62, -57],
+      [-10, -71],
+      [12, -111],
+      [-7, -137],
+      [-28, -84],
+      [-29, -122],
+      [-11, -110],
+      [21, -66],
+      [-4, -104],
+      [62, -53],
+      [17, -33],
+      [-2, -84],
+      [-30, -31],
+      [41, -46],
+      [-47, -55],
+      [0, -38],
+      [45, -59],
+      [-28, -37],
+      [-24, -144]
+    ],
+    [
+      [5369, 3098],
+      [30, 20],
+      [58, -1],
+      [-5, 65],
+      [1, 143],
+      [19, 71],
+      [-6, 32],
+      [-35, 20],
+      [-23, 130],
+      [-59, 91],
+      [6, 65],
+      [30, 72],
+      [60, 71],
+      [89, 0],
+      [185, 45],
+      [125, -20],
+      [114, 12],
+      [54, 26],
+      [13, 46],
+      [8, 98],
+      [-3, 158],
+      [25, 40],
+      [116, 45],
+      [148, 85],
+      [75, 79],
+      [93, 46],
+      [49, 39],
+      [190, -75],
+      [113, -51],
+      [231, -121],
+      [60, -22]
+    ],
+    [
+      [1886, 6085],
+      [-57, 5],
+      [-8, -110],
+      [-75, -3],
+      [-24, -14],
+      [23, -69],
+      [-18, -13]
+    ],
+    [
+      [879, 5626],
+      [-44, 51],
+      [-71, 134],
+      [-41, 7],
+      [20, 86],
+      [50, 46],
+      [7, 90],
+      [-18, 42],
+      [-29, -12],
+      [-26, 86],
+      [30, 5],
+      [7, 64],
+      [84, -2],
+      [32, -12],
+      [-11, 75],
+      [-26, 38],
+      [12, 64],
+      [90, 59],
+      [14, 38],
+      [-10, 47],
+      [30, 33],
+      [58, -22],
+      [56, 24],
+      [-2, 49],
+      [24, 23],
+      [-26, 55]
+    ],
+    [
+      [1089, 6694],
+      [76, -57],
+      [86, -99],
+      [61, -109],
+      [43, -17],
+      [-14, -54],
+      [84, -22],
+      [67, 10],
+      [4, 47],
+      [50, 16],
+      [-15, 33],
+      [127, 46],
+      [11, 67],
+      [84, -3],
+      [11, 80],
+      [47, -45],
+      [32, 1],
+      [27, -45],
+      [72, -71],
+      [25, 8]
+    ],
+    [
+      [2541, 3496],
+      [42, -5],
+      [22, -24],
+      [36, 19],
+      [29, -12],
+      [21, -63],
+      [-44, -57],
+      [-34, 39],
+      [-48, 24],
+      [1, 34],
+      [-25, 45]
+    ],
+    [
+      [3211, 4209],
+      [-43, -85],
+      [-65, -23],
+      [-69, -62],
+      [4, -84],
+      [26, -83],
+      [-15, -66],
+      [42, -17],
+      [58, 36],
+      [13, -52],
+      [30, -31],
+      [78, -36],
+      [25, -51],
+      [-40, -66],
+      [1, -33],
+      [36, -44],
+      [9, -135]
+    ],
+    [
+      [3100, 3368],
+      [-46, 3],
+      [-37, -18],
+      [-152, -115],
+      [-41, 25],
+      [-7, 57],
+      [-25, 18],
+      [-107, -17],
+      [-7, 58],
+      [10, 44],
+      [-16, 34],
+      [-10, 85],
+      [-95, -47],
+      [-44, 7],
+      [-33, -65],
+      [36, -51],
+      [9, -38],
+      [-13, -95],
+      [-119, -7],
+      [-14, -56],
+      [-51, -20],
+      [-62, 69],
+      [-4, 40],
+      [-30, 38],
+      [8, 55],
+      [-74, 84],
+      [-29, -8],
+      [-15, 63],
+      [-69, 39],
+      [-3, 335],
+      [-170, 0],
+      [-2, 267],
+      [86, 248],
+      [-32, 66],
+      [-80, 134],
+      [-21, 19]
+    ],
+    [
+      [1992, 4939],
+      [37, 46],
+      [18, 78],
+      [52, 140],
+      [62, 10],
+      [93, -1],
+      [61, 23],
+      [56, -3],
+      [60, -61],
+      [130, 1],
+      [112, -103],
+      [62, -10],
+      [61, 16]
+    ],
+    [
+      [1089, 6694],
+      [-14, 40],
+      [-39, 29],
+      [-32, 76],
+      [14, 118],
+      [74, 6],
+      [89, 50],
+      [-21, 43],
+      [-69, -19],
+      [-36, 39],
+      [-32, -18],
+      [-67, 4],
+      [-72, -23],
+      [-65, 102],
+      [-67, 30]
+    ],
+    [
+      [752, 7171],
+      [67, 66],
+      [44, 97],
+      [97, 4],
+      [22, 19],
+      [-11, 62],
+      [60, 50],
+      [46, 4],
+      [49, -34],
+      [52, 11],
+      [159, -1],
+      [84, 26],
+      [63, -67],
+      [86, -20],
+      [90, 12],
+      [13, 92],
+      [26, 8]
+    ],
+    [
+      [1699, 7500],
+      [21, -31],
+      [51, 9],
+      [53, -23],
+      [143, -18],
+      [34, -39],
+      [10, -72],
+      [22, -46],
+      [-8, -114],
+      [-42, -61],
+      [151, -95],
+      [27, -46]
+    ],
+    [
+      [2546, 5849],
+      [2, -57],
+      [-29, -65],
+      [-5, -50],
+      [38, -17],
+      [114, -13],
+      [42, 34],
+      [10, 70],
+      [57, 3],
+      [23, 33],
+      [32, -11],
+      [40, -67],
+      [-17, -59],
+      [32, -30],
+      [75, -41],
+      [11, 52],
+      [63, -22],
+      [1, -52],
+      [44, -29]
+    ],
+    [
+      [3520, 6875],
+      [15, -66],
+      [-51, -154]
+    ],
+    [
+      [3484, 6655],
+      [-29, -41],
+      [0, -26],
+      [-10, -53],
+      [-5, -66],
+      [-47, -35],
+      [-74, -4],
+      [-48, -35],
+      [-36, -8],
+      [-50, 10],
+      [-30, -28],
+      [-5, -33],
+      [26, -44],
+      [-43, -9],
+      [-37, -16],
+      [27, -70],
+      [50, -30],
+      [49, -24],
+      [13, -38],
+      [1, -46],
+      [88, -74],
+      [24, 14],
+      [18, 14],
+      [49, 8],
+      [25, -38],
+      [43, -17],
+      [68, -36]
+    ],
+    [
+      [3551, 5930],
+      [61, -4]
+    ],
+    [
+      [2789, 6799],
+      [81, -3],
+      [24, 48],
+      [98, 31],
+      [56, 30],
+      [49, 3],
+      [80, 44],
+      [49, -4]
+    ],
+    [
+      [5209, 7485],
+      [-67, -20],
+      [-56, -40],
+      [-37, -73],
+      [-16, -92],
+      [-76, -67],
+      [-32, -60],
+      [-99, -40],
+      [-44, 12],
+      [-67, -41],
+      [-67, -7]
+    ],
+    [
+      [4648, 7057],
+      [-63, 45],
+      [-24, -21],
+      [-56, -1],
+      [-68, 46],
+      [-43, -1],
+      [-50, 32],
+      [-36, -7],
+      [-53, -47],
+      [-63, -88],
+      [-67, -1],
+      [-43, 19],
+      [-52, 111],
+      [-68, 50],
+      [-67, 18],
+      [-76, -3]
+    ],
+    [
+      [3492, 7376],
+      [-1, 33],
+      [-130, 85],
+      [-125, 113]
+    ],
+    [
+      [3376, 7814],
+      [52, -41],
+      [147, -93],
+      [73, -31],
+      [172, -32],
+      [124, -57],
+      [123, -18],
+      [77, 11],
+      [201, 62],
+      [230, 48],
+      [109, 39],
+      [93, 22],
+      [178, 9],
+      [40, -39]
+    ],
+    [
+      [7082, 8414],
+      [-19, -25],
+      [-74, -27],
+      [14, -52],
+      [-25, -39],
+      [144, -15],
+      [62, -14],
+      [54, 13],
+      [21, -34],
+      [-15, -33],
+      [52, -27],
+      [37, -73],
+      [-35, -32],
+      [-3, -53],
+      [-30, -19],
+      [-10, -78],
+      [-45, -45],
+      [50, -34],
+      [1, -52],
+      [41, 12],
+      [48, -28],
+      [-51, -24],
+      [-8, -46],
+      [44, -14],
+      [-37, -84],
+      [-74, -11],
+      [-122, 24],
+      [-5, 13],
+      [-124, 57],
+      [-257, 157],
+      [-201, -170],
+      [13, -72]
+    ],
+    [
+      [6528, 7589],
+      [-74, -17],
+      [-51, 21],
+      [-53, 1],
+      [-98, 95],
+      [-39, 60],
+      [30, 65],
+      [-20, 34],
+      [6, 72],
+      [-45, 15],
+      [-27, 66],
+      [-45, 54]
+    ],
+    [
+      [6267, 8533],
+      [23, -14],
+      [66, 6],
+      [-6, 62],
+      [47, 49],
+      [78, 9],
+      [18, -20],
+      [78, 32],
+      [53, -40],
+      [116, -23],
+      [41, 53],
+      [44, 3],
+      [25, -73],
+      [45, -51],
+      [-11, -64],
+      [86, -39],
+      [33, 6],
+      [79, -15]
+    ],
+    [
+      [2459, 6929],
+      [-40, 71],
+      [-72, 58],
+      [87, 49],
+      [88, 10],
+      [51, -11],
+      [35, 68],
+      [87, 37],
+      [76, 10],
+      [-3, 99],
+      [-26, 19],
+      [-9, 67],
+      [-39, 32],
+      [-70, 24],
+      [-2, 61],
+      [-60, 45],
+      [-2, 34],
+      [53, 83],
+      [75, 15]
+    ],
+    [
+      [3484, 6655],
+      [0, -7],
+      [6, 7],
+      [55, 3],
+      [67, -4],
+      [49, -11],
+      [49, -18],
+      [55, -11],
+      [32, -32]
+    ],
+    [
+      [3797, 6582],
+      [137, -95],
+      [43, -19]
+    ],
+    [
+      [3977, 6468],
+      [68, -31]
+    ],
+    [
+      [4045, 6437],
+      [7, -13]
+    ],
+    [
+      [4052, 6424],
+      [6, -13],
+      [2, -47],
+      [-11, -39],
+      [-5, -47],
+      [-11, -26]
+    ],
+    [
+      [4033, 6252],
+      [-47, -61]
+    ],
+    [
+      [3594, 5931],
+      [-43, -1]
+    ],
+    [
+      [8511, 5911],
+      [-98, -18],
+      [-107, 1],
+      [-26, 8],
+      [-85, -9],
+      [-85, 4],
+      [-32, 15],
+      [-83, 139],
+      [-113, -69],
+      [-66, -11],
+      [-51, 9],
+      [-56, -51],
+      [-30, 21],
+      [-116, 18],
+      [-18, -60],
+      [23, -35],
+      [-33, -79],
+      [23, -42],
+      [-36, -52],
+      [2, -60],
+      [43, -36],
+      [16, -54],
+      [56, -15],
+      [-10, -60],
+      [-67, -90],
+      [-101, -42],
+      [-90, -70],
+      [-19, -39],
+      [-7, -98],
+      [-24, -63],
+      [-29, -37]
+    ],
+    [
+      [7292, 5036],
+      [-24, 14],
+      [-13, 65],
+      [-84, 36],
+      [-97, 70],
+      [-18, 84],
+      [-12, 106],
+      [-4, 133],
+      [-35, 54],
+      [-11, 48],
+      [-56, -45],
+      [-74, -31],
+      [-84, 17],
+      [-48, 42],
+      [-43, 254],
+      [23, 127],
+      [44, 139],
+      [61, 91],
+      [91, 50],
+      [69, 51],
+      [93, 96],
+      [-19, 73],
+      [-170, 130],
+      [-84, 9],
+      [-40, -12],
+      [-157, -76],
+      [-113, -63],
+      [-153, -42],
+      [-44, -6]
+    ],
+    [
+      [6290, 6450],
+      [33, 52],
+      [66, 77],
+      [75, 64],
+      [148, 56],
+      [22, 26],
+      [19, 65],
+      [97, 135],
+      [-2, 46],
+      [-35, 40],
+      [-134, 108],
+      [-40, 216],
+      [6, 71],
+      [54, 89],
+      [5, 52],
+      [-24, 33],
+      [-52, 9]
+    ],
+    [
+      [7082, 8414],
+      [48, -27],
+      [62, -12],
+      [49, -31],
+      [84, -23],
+      [13, -57],
+      [115, -31],
+      [61, 44],
+      [22, -24],
+      [63, -17],
+      [57, 33],
+      [21, -20],
+      [80, -24],
+      [118, -76],
+      [37, 12],
+      [29, -59],
+      [-15, -18],
+      [14, -60],
+      [78, -92],
+      [1, -29],
+      [75, 4],
+      [69, -24],
+      [49, -41],
+      [48, 3],
+      [33, -36],
+      [48, -89],
+      [48, -60],
+      [52, -83],
+      [137, 2],
+      [261, 22],
+      [26, -62],
+      [-9, -45],
+      [-1, -104],
+      [30, -110],
+      [-1, -34],
+      [-35, -86],
+      [39, -48],
+      [13, -67],
+      [-19, -100],
+      [31, -34],
+      [0, -45],
+      [-50, -93],
+      [2, -70],
+      [-48, -22],
+      [-6, -58],
+      [18, -60],
+      [-19, -94],
+      [-16, -16],
+      [2, -76],
+      [-38, -60],
+      [4, -40],
+      [-41, -13],
+      [-9, -35],
+      [-86, -38],
+      [61, -55],
+      [46, -79],
+      [-119, 6],
+      [-63, -70],
+      [-40, -82]
+    ],
+    [
+      [6290, 6450],
+      [-45, -91],
+      [-149, -258],
+      [-30, -12],
+      [-190, 4],
+      [-18, -13]
+    ],
+    [
+      [4003, 6211],
+      [30, 41]
+    ],
+    [
+      [4052, 6424],
+      [0, 6]
+    ],
+    [
+      [4052, 6430],
+      [3, 66],
+      [47, 61],
+      [11, 33],
+      [-90, 117],
+      [-8, 53],
+      [22, 53],
+      [-3, 66],
+      [67, -5],
+      [68, -45],
+      [57, -52],
+      [43, -12],
+      [48, 7],
+      [74, -31],
+      [61, -12],
+      [72, 21],
+      [48, 27],
+      [100, 95],
+      [10, 59],
+      [-34, 126]
+    ],
+    [
+      [7999, 3632],
+      [122, 43],
+      [130, 32],
+      [168, 62],
+      [41, -47],
+      [60, -16],
+      [85, -76],
+      [46, -101],
+      [31, -42],
+      [106, 8],
+      [8, 25],
+      [-22, 87],
+      [-11, 85],
+      [7, 182],
+      [28, 110],
+      [41, 96],
+      [12, 51],
+      [-20, 55]
+    ],
+    [
+      [8831, 4186],
+      [301, -49],
+      [37, -49],
+      [-2, -61],
+      [31, -80],
+      [-1, -74],
+      [-25, -41],
+      [12, -49],
+      [-255, -334],
+      [-232, -311],
+      [18, -11],
+      [151, -219],
+      [93, -101],
+      [-7, -43],
+      [36, -59],
+      [39, -90],
+      [0, -32],
+      [92, -155],
+      [63, -86],
+      [80, -60],
+      [82, -41],
+      [93, -14],
+      [74, -37],
+      [79, -100],
+      [101, 17],
+      [5, -47],
+      [-15, -116],
+      [11, -36],
+      [21, -159],
+      [13, -177],
+      [-38, -140],
+      [20, -26],
+      [81, -11],
+      [42, 25],
+      [65, 5],
+      [60, -41],
+      [9, -26],
+      [-32, -36],
+      [1, -102],
+      [9, -41],
+      [-43, -14],
+      [4, -70],
+      [-16, -59],
+      [-202, 3],
+      [-88, -44],
+      [-90, -11],
+      [-61, -26],
+      [-26, -76],
+      [9, -35],
+      [-80, 14],
+      [-4, -42],
+      [-31, -1],
+      [-98, -45],
+      [-20, -49],
+      [-33, -242],
+      [-41, -2],
+      [-17, -329],
+      [-24, -67],
+      [-46, -6],
+      [-63, -78],
+      [-111, 36],
+      [-5, 26],
+      [-49, 22],
+      [-118, 29],
+      [-117, 38],
+      [-10, 67],
+      [-19, 22],
+      [-54, 0],
+      [-31, -38],
+      [12, -42],
+      [-60, 14],
+      [-10, 34],
+      [-90, -26],
+      [-11, 21],
+      [-57, -1],
+      [-47, -16],
+      [-30, 31],
+      [-120, -6],
+      [-62, 51],
+      [-124, -8]
+    ],
+    [
+      [8511, 5911],
+      [29, -190],
+      [-19, -34],
+      [3, -60],
+      [72, -77],
+      [119, 4],
+      [-38, -93],
+      [-98, -112],
+      [-27, -65],
+      [64, -276],
+      [54, -150],
+      [35, -182],
+      [-41, -159],
+      [-14, -141],
+      [9, -79],
+      [28, -88],
+      [144, -23]
+    ],
+    [
+      [7130, 4307],
+      [23, 75],
+      [71, 103],
+      [6, 57],
+      [84, 110],
+      [0, 44],
+      [29, 50],
+      [-49, 92],
+      [0, 38],
+      [-37, 40],
+      [42, 43],
+      [-7, 77]
+    ],
+    [
+      [4052, 6430],
+      [-7, 7]
+    ],
+    [
+      [3977, 6468],
+      [-43, 19],
+      [-137, 95]
+    ],
+    [
+      [1627, 7663],
+      [30, -42],
+      [42, -121]
+    ],
+    [
+      [752, 7171],
+      [-51, -21],
+      [-32, 22],
+      [24, 47],
+      [-24, 43],
+      [-4, 59],
+      [-27, 50],
+      [-1, 54],
+      [-21, 26],
+      [-39, -18],
+      [-36, 19],
+      [-38, 74],
+      [28, 51],
+      [-14, 68],
+      [-101, 57],
+      [37, 60],
+      [-16, 33],
+      [12, 47],
+      [-41, 7],
+      [-30, 47],
+      [14, 35],
+      [-14, 39],
+      [23, 55],
+      [-114, 89],
+      [19, 105],
+      [-30, 28],
+      [30, 45],
+      [-22, 32],
+      [-62, 1],
+      [-31, 58],
+      [-92, 21],
+      [22, 77],
+      [43, 81],
+      [19, 9],
+      [13, 90],
+      [41, 26],
+      [-25, 44],
+      [-69, -2],
+      [8, 79],
+      [-3, 83],
+      [-29, 57],
+      [20, 77],
+      [-31, 14],
+      [-28, 50],
+      [-8, 53],
+      [16, 83],
+      [-47, 33],
+      [-8, 64],
+      [-33, 52],
+      [12, 26],
+      [80, 3],
+      [46, -24],
+      [66, 41],
+      [-3, 82],
+      [28, 45],
+      [-2, 37],
+      [62, 57],
+      [60, -43],
+      [102, -91],
+      [14, -71],
+      [73, -73],
+      [38, -74],
+      [69, -35],
+      [80, -89],
+      [20, -46]
+    ]
+  ],
+  "transform": {
+    "scale": [0.001933787757885008, 0.001525388863457386],
+    "translate": [44.047264099121264, 25.067083358764705]
+  },
+  "objects": {
+    "iran": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-32",
+            "NAME_0": "Iran",
+            "ID_1": 1,
+            "NAME_1": "Alborz",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "استان البرز",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[4, 5, 6, 7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-03",
+            "NAME_0": "Iran",
+            "ID_1": 2,
+            "NAME_1": "Ardebil",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Ardabil"
+          }
+        },
+        {
+          "arcs": [[8, 9, 10, 11, 12]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-06",
+            "NAME_0": "Iran",
+            "ID_1": 3,
+            "NAME_1": "Bushehr",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Banader va Jazayer-e Khalij-e Fars|Bushire|Persian Gulf|Ports and Islands of the Persian Gulf"
+          }
+        },
+        {
+          "arcs": [[13, 14, 15]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-08",
+            "NAME_0": "Iran",
+            "ID_1": 4,
+            "NAME_1": "Chahar Mahall and Bakhtiari",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Bakhtiari|Chaharmahal va Bakhtiyari|Charmahal-Bakhtiyari"
+          }
+        },
+        {
+          "arcs": [[16, 17, 18, -7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-01",
+            "NAME_0": "Iran",
+            "ID_1": 5,
+            "NAME_1": "East Azarbaijan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Azarbayjan-e Khavari|Azarbaijan-e Sharghi|Azarbaijan-Sharqi|East Azarbayejan|Azerba‹djan e Sharqi"
+          }
+        },
+        {
+          "arcs": [[19, 20, 21, -16, 22, 23, 24, 25, 26, 27, 28]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-04",
+            "NAME_0": "Iran",
+            "ID_1": 6,
+            "NAME_1": "Esfahan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Isfahan|Ispahan"
+          }
+        },
+        {
+          "arcs": [[29, 30, 31, -11, 32, -21]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-14",
+            "NAME_0": "Iran",
+            "ID_1": 7,
+            "NAME_1": "Fars",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[33, 34, 35, -5, 36]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-19",
+            "NAME_0": "Iran",
+            "ID_1": 8,
+            "NAME_1": "Gilan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[37, 38, 39, 40]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-27",
+            "NAME_0": "Iran",
+            "ID_1": 9,
+            "NAME_1": "Golestan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[41, 42, 43, 44, 45, 46]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-24",
+            "NAME_0": "Iran",
+            "ID_1": 10,
+            "NAME_1": "Hamadan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Hamedan"
+          }
+        },
+        {
+          "arcs": [[[47]], [[-12, -32, 48, 49, 50]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-23",
+            "NAME_0": "Iran",
+            "ID_1": 11,
+            "NAME_1": "Hormozgan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Banader va Jazayer-e Bahr-e Oman|Ports and Islands of the Sea of Oman|Saheli"
+          }
+        },
+        {
+          "arcs": [[51, 52, 53, 54]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-05",
+            "NAME_0": "Iran",
+            "ID_1": 12,
+            "NAME_1": "Ilam",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Ilam and Poshtkuh"
+          }
+        },
+        {
+          "arcs": [[55, 56, -49, -31, 57]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-15",
+            "NAME_0": "Iran",
+            "ID_1": 13,
+            "NAME_1": "Kerman",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-46, 58, -55, 59, 60]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-17",
+            "NAME_0": "Iran",
+            "ID_1": 14,
+            "NAME_1": "Kermanshah",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Bakhtaran|Kermanshahan"
+          }
+        },
+        {
+          "arcs": [[[61]], [[-23, -15, 62, -9, 63, -53, 64]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-10",
+            "NAME_0": "Iran",
+            "ID_1": 15,
+            "NAME_1": "Khuzestan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Khuzistan|Kouzistan"
+          }
+        },
+        {
+          "arcs": [[-22, -33, -10, -63, -14]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-18",
+            "NAME_0": "Iran",
+            "ID_1": 16,
+            "NAME_1": "Kohgiluyeh and Buyer Ahmad",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Bovir Ahmadi and Kohkiluyeh|Boyer-Ahmad and Koh-Giluye|Boyer Ahmad e Kohkiluyeh|Boyer Ahmadi-ye Sardir va Kohkiluyeh|Kohgil"
+          }
+        },
+        {
+          "arcs": [[-47, -61, 65, 66, 67]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-16",
+            "NAME_0": "Iran",
+            "ID_1": 17,
+            "NAME_1": "Kordestan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Kurdistan"
+          }
+        },
+        {
+          "arcs": [[-45, 68, -24, -65, -52, -59]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-20",
+            "NAME_0": "Iran",
+            "ID_1": 18,
+            "NAME_1": "Lorestan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[69, 70, 71, -25, -69, -44, 72, -3]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-22",
+            "NAME_0": "Iran",
+            "ID_1": 19,
+            "NAME_1": "Markazi",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-40, 73, 74, -1, 75, -34, 76]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-21",
+            "NAME_0": "Iran",
+            "ID_1": 20,
+            "NAME_1": "Mazandaran",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[77, 78, -38, 79]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-31",
+            "NAME_0": "Iran",
+            "ID_1": 21,
+            "NAME_1": "North Khorasan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Khorasan-e Shemali"
+          }
+        },
+        {
+          "arcs": [[-76, -4, -73, -43, 80, -35]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-28",
+            "NAME_0": "Iran",
+            "ID_1": 22,
+            "NAME_1": "Qazvin",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[81, 82, 83, 84, 85, 86, -27, 87, -71]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-26",
+            "NAME_0": "Iran",
+            "ID_1": 23,
+            "NAME_1": "Qom",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[88, 89, 90, -78, 91]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-30",
+            "NAME_0": "Iran",
+            "ID_1": 24,
+            "NAME_1": "Razavi Khorasan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Khorasan-e Razavi"
+          }
+        },
+        {
+          "arcs": [[-79, -91, 92, -29, 93, -86, 94, 95, -74, -39]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-12",
+            "NAME_0": "Iran",
+            "ID_1": 25,
+            "NAME_1": "Semnan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-50, -57, 96, 97]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-13",
+            "NAME_0": "Iran",
+            "ID_1": 26,
+            "NAME_1": "Sistan and Baluchestan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Baluchestan va Sistan|Seistan and Baluchistan|Sistan e Baloutchistan"
+          }
+        },
+        {
+          "arcs": [[98, -97, -56, 99, -89]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-29",
+            "NAME_0": "Iran",
+            "ID_1": 27,
+            "NAME_1": "South Khorasan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Khorasan-e Janubi"
+          }
+        },
+        {
+          "arcs": [[-96, 100, -84, 101, -82, -70, -2, -75]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-07",
+            "NAME_0": "Iran",
+            "ID_1": 28,
+            "NAME_1": "Tehran",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "استان تهران",
+            "VARNAME_1": "Teheran"
+          }
+        },
+        {
+          "arcs": [[-18, 102, -67, 103]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-02",
+            "NAME_0": "Iran",
+            "ID_1": 29,
+            "NAME_1": "West Azarbaijan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Azarbayjan-e Bakhtari|Azarbaijan-e Gharbi|West Azarbayejan|Azerba‹djan e Gharbi"
+          }
+        },
+        {
+          "arcs": [[-100, -58, -30, -20, -93, -90]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-25",
+            "NAME_0": "Iran",
+            "ID_1": 30,
+            "NAME_1": "Yazd",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-36, -81, -42, -68, -103, -17, -6]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 107,
+            "ISO": "IR-11",
+            "NAME_0": "Iran",
+            "ID_1": 31,
+            "NAME_1": "Zanjan",
+            "TYPE_1": "Ostan",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/italy-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/italy-topo.json
new file mode 100644
index 0000000..6e9cf3a
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/italy-topo.json
@@ -0,0 +1,5584 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [7594, 6900],
+      [-12, -65],
+      [-36, -19],
+      [-55, -72],
+      [-4, -38],
+      [-47, -35],
+      [-40, -86],
+      [-80, -79]
+    ],
+    [
+      [7320, 6506],
+      [-37, 100],
+      [-64, 53],
+      [-86, 37],
+      [-51, -40]
+    ],
+    [
+      [7082, 6656],
+      [-43, 33],
+      [-72, -13],
+      [-23, 160],
+      [21, 37],
+      [-18, 50]
+    ],
+    [
+      [6947, 6923],
+      [28, 26],
+      [13, 65],
+      [-30, 35],
+      [19, 46],
+      [-5, 140],
+      [42, 109],
+      [90, 34]
+    ],
+    [
+      [7104, 7378],
+      [145, -109],
+      [32, -62],
+      [63, -78],
+      [99, -64],
+      [93, -34],
+      [0, -85],
+      [58, -46]
+    ],
+    [
+      [6649, 7347],
+      [40, -111],
+      [34, -66],
+      [-33, -43],
+      [-10, -125],
+      [105, -7],
+      [48, -24],
+      [44, -66],
+      [70, 18]
+    ],
+    [
+      [7082, 6656],
+      [-12, -30],
+      [-65, -34],
+      [44, -101],
+      [-116, -13],
+      [-47, -70],
+      [-73, 7]
+    ],
+    [
+      [6813, 6415],
+      [-20, 37],
+      [-158, 55],
+      [-31, 47],
+      [-51, 18],
+      [-84, -73],
+      [-47, 24],
+      [-16, 37],
+      [-90, 45],
+      [-45, 41],
+      [23, 44],
+      [-82, 57]
+    ],
+    [
+      [6212, 6747],
+      [-145, 85],
+      [-80, 1],
+      [-34, 75],
+      [12, 51]
+    ],
+    [
+      [5965, 6959],
+      [51, 37],
+      [1, 43],
+      [90, -25],
+      [61, -40],
+      [53, 14],
+      [58, 53],
+      [-45, 64],
+      [-26, 3],
+      [-58, 70],
+      [-3, 41],
+      [-68, 48],
+      [33, 55],
+      [-68, 55],
+      [36, 24],
+      [22, 64],
+      [-19, 19],
+      [32, 76],
+      [93, -21],
+      [95, 26]
+    ],
+    [
+      [6303, 7565],
+      [15, -68],
+      [107, -111],
+      [165, -8],
+      [59, -31]
+    ],
+    [
+      [7003, 7487],
+      [101, -109]
+    ],
+    [
+      [6649, 7347],
+      [38, 71],
+      [74, 42],
+      [62, -5],
+      [36, 47],
+      [144, -15]
+    ],
+    [
+      [6788, 7951],
+      [21, -101],
+      [55, -142],
+      [72, -129],
+      [67, -92]
+    ],
+    [
+      [6303, 7565],
+      [14, 66],
+      [-37, 8],
+      [-24, 66]
+    ],
+    [
+      [6256, 7705],
+      [42, -18],
+      [59, 60],
+      [35, -1],
+      [37, 79],
+      [159, 34],
+      [21, 42],
+      [179, 50]
+    ],
+    [
+      [10026, 5402],
+      [-46, -34],
+      [-41, -62],
+      [65, -38],
+      [-11, -49]
+    ],
+    [
+      [9993, 5219],
+      [-45, -6],
+      [-53, 28],
+      [-82, -28],
+      [-10, -42],
+      [-85, 14],
+      [-34, -10],
+      [-48, 35],
+      [-41, -6],
+      [-13, -38],
+      [-52, 21],
+      [-53, -36],
+      [-12, 48],
+      [-58, -24]
+    ],
+    [
+      [9407, 5175],
+      [-86, 50],
+      [-52, 13],
+      [-75, -7],
+      [-61, -68],
+      [-28, 4],
+      [-146, 166]
+    ],
+    [
+      [8959, 5333],
+      [-39, 101]
+    ],
+    [
+      [8920, 5434],
+      [46, 57],
+      [21, 110],
+      [72, 110],
+      [-12, 21],
+      [58, 47],
+      [96, -47],
+      [36, 98]
+    ],
+    [
+      [9237, 5830],
+      [56, -33],
+      [412, -156],
+      [179, -112],
+      [63, -47],
+      [41, -62],
+      [38, -18]
+    ],
+    [
+      [8755, 6080],
+      [207, -117],
+      [90, -31],
+      [101, -63],
+      [84, -39]
+    ],
+    [
+      [8920, 5434],
+      [-36, 14],
+      [-39, -37],
+      [-26, 27],
+      [-109, 48],
+      [52, 51],
+      [5, 52],
+      [-79, 91],
+      [-77, 37]
+    ],
+    [
+      [8611, 5717],
+      [53, 54],
+      [60, 17],
+      [34, 70],
+      [-42, 69],
+      [-1, 71],
+      [49, 19],
+      [-57, 49],
+      [48, 14]
+    ],
+    [
+      [10026, 5402],
+      [75, -76],
+      [76, -43],
+      [127, -43],
+      [143, -96],
+      [91, -6],
+      [99, -112],
+      [-10, -38],
+      [58, -67]
+    ],
+    [
+      [10685, 4921],
+      [-25, -69],
+      [-108, -3],
+      [-16, -38],
+      [-106, -31],
+      [-22, -31]
+    ],
+    [
+      [10408, 4749],
+      [-98, 41],
+      [-10, 37],
+      [-54, 28],
+      [-86, -20],
+      [-43, 45],
+      [-36, 93],
+      [24, 70],
+      [-43, 30],
+      [-9, 61],
+      [-60, 85]
+    ],
+    [
+      [8611, 5717],
+      [-60, -36],
+      [-116, -32],
+      [-60, 17],
+      [-50, -13],
+      [-19, -43]
+    ],
+    [
+      [8306, 5610],
+      [-90, 29],
+      [-47, 36],
+      [-27, -28],
+      [-93, 28],
+      [-54, 78],
+      [45, 37],
+      [-7, 93],
+      [-46, 21],
+      [-48, -8]
+    ],
+    [
+      [7939, 5896],
+      [-19, 38],
+      [-53, 28],
+      [-13, 51],
+      [38, 78],
+      [-62, 24],
+      [-23, 43]
+    ],
+    [
+      [7807, 6158],
+      [-63, 48],
+      [19, 156],
+      [58, -31],
+      [24, 43],
+      [49, 20],
+      [19, 62],
+      [-22, 58],
+      [16, 30],
+      [-10, 73],
+      [32, 42],
+      [-2, 58]
+    ],
+    [
+      [7927, 6717],
+      [193, -14],
+      [81, -18],
+      [179, 34],
+      [49, -16],
+      [76, 2],
+      [161, 22],
+      [75, 21],
+      [69, -12],
+      [76, -68],
+      [25, -65],
+      [-3, -79],
+      [-63, -46],
+      [-53, -58],
+      [-111, -62],
+      [-43, -36],
+      [0, -101],
+      [36, -75],
+      [81, -66]
+    ],
+    [
+      [10685, 4921],
+      [29, -29],
+      [69, -30],
+      [46, -45],
+      [77, -98],
+      [84, -79],
+      [38, -93],
+      [-1, -37],
+      [50, -74],
+      [3, -34],
+      [-40, -75],
+      [-40, -32],
+      [-29, -79],
+      [-11, -182],
+      [-54, -30],
+      [-71, 52],
+      [-44, 3],
+      [-154, 116],
+      [-31, 54],
+      [5, 80],
+      [-31, 25],
+      [25, 67],
+      [-80, 97],
+      [-16, 87],
+      [-41, 39],
+      [-94, 16]
+    ],
+    [
+      [10374, 4640],
+      [28, 55],
+      [6, 54]
+    ],
+    [
+      [10374, 4640],
+      [-96, 12],
+      [-144, -12],
+      [-53, 42],
+      [-51, 7],
+      [-152, 87],
+      [19, 62],
+      [-114, 86],
+      [-101, -15],
+      [-67, -46],
+      [-76, -90]
+    ],
+    [
+      [9539, 4773],
+      [-53, 44],
+      [-16, 37],
+      [-53, 8],
+      [2, 46],
+      [-30, 59],
+      [17, 66],
+      [-13, 39],
+      [14, 103]
+    ],
+    [
+      [9539, 4773],
+      [-80, -130],
+      [-47, -120],
+      [-38, -68],
+      [-42, -38]
+    ],
+    [
+      [9332, 4417],
+      [-55, 18],
+      [-51, -19],
+      [-73, 22],
+      [-40, -18],
+      [-10, -83]
+    ],
+    [
+      [9103, 4337],
+      [-45, 86],
+      [44, 56],
+      [-45, 49],
+      [25, 87],
+      [-41, 38],
+      [-20, -39],
+      [-107, -10],
+      [-19, 93],
+      [-64, 89],
+      [32, 58],
+      [-61, 116],
+      [39, 41],
+      [-64, 74],
+      [7, 25],
+      [86, 61],
+      [-31, 82],
+      [6, 37],
+      [114, 53]
+    ],
+    [
+      [9103, 4337],
+      [0, -47],
+      [-56, -105],
+      [-167, -21],
+      [-71, -29],
+      [-56, 34],
+      [-41, 75],
+      [-47, 24],
+      [-28, -25],
+      [-73, 26],
+      [-60, -101]
+    ],
+    [
+      [8504, 4168],
+      [-32, 65],
+      [-72, 84]
+    ],
+    [
+      [8400, 4317],
+      [58, 99],
+      [6, 77],
+      [86, 93],
+      [-10, 45],
+      [-42, 15],
+      [-37, 49],
+      [1, 51],
+      [-100, 74],
+      [-60, 67],
+      [6, 56],
+      [-33, 69],
+      [-54, 32],
+      [48, 66],
+      [-69, 38],
+      [-45, 40],
+      [4, 86],
+      [-47, 55]
+    ],
+    [
+      [8112, 5329],
+      [40, 7],
+      [6, 46],
+      [133, 40],
+      [42, 116],
+      [-27, 72]
+    ],
+    [
+      [9562, 2900],
+      [-107, -40],
+      [-161, -106],
+      [-62, -116],
+      [33, -196],
+      [9, -124]
+    ],
+    [
+      [9274, 2318],
+      [-42, -4],
+      [-53, 33],
+      [-56, 78]
+    ],
+    [
+      [9123, 2425],
+      [8, 38],
+      [-93, 72],
+      [20, 120],
+      [-5, 76],
+      [-45, 35],
+      [-76, -14]
+    ],
+    [
+      [8932, 2752],
+      [5, 127],
+      [-61, 52],
+      [-56, 124]
+    ],
+    [
+      [8820, 3055],
+      [57, 16],
+      [88, 49],
+      [89, 15],
+      [34, -8],
+      [39, -55],
+      [53, -4],
+      [-2, 81],
+      [53, 28],
+      [72, 63]
+    ],
+    [
+      [9303, 3240],
+      [49, -48],
+      [-7, -47],
+      [71, -77],
+      [39, 7],
+      [65, -32],
+      [45, -53],
+      [24, -58],
+      [-27, -32]
+    ],
+    [
+      [9332, 4417],
+      [-33, -44],
+      [-9, -62],
+      [28, -89],
+      [-127, -195],
+      [-2, -80],
+      [34, -32],
+      [-3, -83],
+      [83, -48],
+      [156, -10],
+      [83, -100],
+      [98, -57],
+      [45, -10]
+    ],
+    [
+      [9685, 3607],
+      [-61, -58],
+      [-1, -50],
+      [-113, -66],
+      [-66, 20],
+      [-54, -49],
+      [51, -39],
+      [-13, -60],
+      [29, -62],
+      [-91, 12],
+      [-63, -15]
+    ],
+    [
+      [8820, 3055],
+      [-27, 110],
+      [-9, 173],
+      [-20, 102],
+      [-37, 117],
+      [-67, 107],
+      [-46, 32],
+      [-62, 235],
+      [-20, 101],
+      [-6, 98],
+      [-22, 38]
+    ],
+    [
+      [9685, 3607],
+      [28, -58],
+      [60, -41],
+      [18, -35],
+      [-24, -77],
+      [-5, -83],
+      [38, -59],
+      [-29, -80],
+      [-5, -60],
+      [58, -80],
+      [-3, -102],
+      [-52, -55],
+      [-121, 36],
+      [-86, -13]
+    ],
+    [
+      [9274, 2318],
+      [-14, -60],
+      [-64, -80],
+      [-43, -34],
+      [-120, -51],
+      [-152, -209],
+      [-15, -124],
+      [-41, -92],
+      [-35, -46],
+      [-63, -11],
+      [-68, 18],
+      [-148, -16],
+      [-80, 47],
+      [-37, 61],
+      [15, 37],
+      [-22, 92],
+      [24, 41],
+      [-22, 71],
+      [3, 53],
+      [105, 31],
+      [43, 30],
+      [32, 55],
+      [49, 136],
+      [19, 11],
+      [17, 87]
+    ],
+    [
+      [8657, 2365],
+      [38, 24],
+      [41, -11],
+      [70, 58],
+      [106, -82],
+      [56, -17],
+      [13, -50],
+      [80, -19],
+      [36, 23],
+      [-34, 60],
+      [-6, 53],
+      [41, 47],
+      [25, -26]
+    ],
+    [
+      [8657, 2365],
+      [11, 42],
+      [-97, 109],
+      [23, 46],
+      [90, 37],
+      [34, 41],
+      [52, 5],
+      [55, -20],
+      [78, 48],
+      [29, 79]
+    ],
+    [
+      [8112, 5329],
+      [-37, 4],
+      [-14, -49],
+      [-38, -32],
+      [7, -72],
+      [-75, -13],
+      [-25, 63],
+      [-206, 56],
+      [-79, -10],
+      [-83, 13],
+      [-10, 46],
+      [-63, -22],
+      [-57, 32]
+    ],
+    [
+      [7432, 5345],
+      [-26, 42],
+      [7, 68],
+      [-12, 96]
+    ],
+    [
+      [7401, 5551],
+      [22, 61],
+      [62, -2],
+      [156, -26],
+      [37, 29],
+      [99, 45],
+      [33, 32],
+      [-46, 72],
+      [35, 32],
+      [-17, 78],
+      [26, 12],
+      [106, -18],
+      [25, 30]
+    ],
+    [
+      [7401, 5551],
+      [-38, 5]
+    ],
+    [
+      [7363, 5556],
+      [-22, 54],
+      [-81, -4],
+      [15, 56],
+      [-37, 32],
+      [65, 63],
+      [-41, 102],
+      [29, 54],
+      [33, 9],
+      [-31, 90],
+      [45, 16]
+    ],
+    [
+      [7338, 6028],
+      [92, -25],
+      [64, 54],
+      [42, -8],
+      [45, 22],
+      [23, 44],
+      [61, -35],
+      [142, 78]
+    ],
+    [
+      [7224, 6103],
+      [68, -19],
+      [46, -56]
+    ],
+    [
+      [7363, 5556],
+      [-10, -33],
+      [-108, -2],
+      [-100, 24],
+      [-12, -56],
+      [-119, -12],
+      [-15, 36],
+      [-114, -40],
+      [12, -63]
+    ],
+    [
+      [6897, 5410],
+      [-51, 99],
+      [-52, 61],
+      [-24, 83],
+      [-65, 106],
+      [-59, 64]
+    ],
+    [
+      [6646, 5823],
+      [53, 29],
+      [8, 40],
+      [51, 18],
+      [-8, 60]
+    ],
+    [
+      [6750, 5970],
+      [12, 60],
+      [-22, 31],
+      [107, 67]
+    ],
+    [
+      [6847, 6128],
+      [26, -12],
+      [35, -77],
+      [60, 30],
+      [-27, 39],
+      [44, 77],
+      [39, -16],
+      [69, 2],
+      [80, -55],
+      [51, -13]
+    ],
+    [
+      [6748, 5235],
+      [76, -25],
+      [11, -39],
+      [-86, -19],
+      [-18, 51],
+      [17, 32]
+    ],
+    [
+      [7432, 5345],
+      [-16, -53],
+      [-75, -42],
+      [67, -81],
+      [-23, -53],
+      [20, -51],
+      [-99, -10]
+    ],
+    [
+      [7306, 5055],
+      [-138, -64],
+      [15, 69],
+      [57, 17],
+      [75, 91],
+      [-25, 52],
+      [-37, 2],
+      [-110, 107],
+      [-60, -5],
+      [-42, -51],
+      [-23, 30],
+      [-74, 17],
+      [-33, 37],
+      [-14, 53]
+    ],
+    [
+      [8400, 4317],
+      [-65, 47],
+      [-67, -18],
+      [-76, -91],
+      [-72, 16],
+      [-56, 37],
+      [-11, 51],
+      [-144, 131],
+      [-49, -16],
+      [-68, 68],
+      [-71, 25],
+      [27, 55],
+      [-1, 71],
+      [51, 28],
+      [-13, 84],
+      [-71, 155],
+      [-78, 120],
+      [-61, 47],
+      [-62, -55],
+      [-52, 19],
+      [-57, -41],
+      [-48, -12],
+      [-50, 17]
+    ],
+    [
+      [4346, 10380],
+      [-44, -56],
+      [27, -68],
+      [78, 87],
+      [87, -16],
+      [131, -63],
+      [76, -101],
+      [50, 28],
+      [67, -25],
+      [-10, -102]
+    ],
+    [
+      [4808, 10064],
+      [-10, -65],
+      [19, -54],
+      [-16, -31],
+      [51, -29],
+      [-47, -84],
+      [-72, -74],
+      [-64, -20],
+      [-57, -53],
+      [-50, -95]
+    ],
+    [
+      [4562, 9559],
+      [-72, 53],
+      [-25, 51],
+      [-38, -50],
+      [-35, 7],
+      [-58, -64],
+      [-75, -19],
+      [2, -50]
+    ],
+    [
+      [4261, 9487],
+      [-40, 14],
+      [-102, -28]
+    ],
+    [
+      [4119, 9473],
+      [-45, 28],
+      [-53, -39],
+      [-90, 21],
+      [-31, 22]
+    ],
+    [
+      [3900, 9505],
+      [8, 85],
+      [30, 32],
+      [48, -2],
+      [47, 26],
+      [8, 97],
+      [43, -3],
+      [26, 41],
+      [-17, 52],
+      [24, 55],
+      [-48, 17],
+      [48, 46],
+      [11, 72],
+      [84, 78],
+      [-20, 61],
+      [-47, 20],
+      [37, 81],
+      [12, 92],
+      [72, 27],
+      [80, -2]
+    ],
+    [
+      [5375, 10366],
+      [-22, 9],
+      [-62, 54],
+      [-48, -79],
+      [-16, -118],
+      [28, -74]
+    ],
+    [
+      [5255, 10158],
+      [-30, -10],
+      [-77, -92],
+      [-117, 16],
+      [-27, 50],
+      [-196, -58]
+    ],
+    [
+      [4346, 10380],
+      [17, 32],
+      [53, 19],
+      [-20, 37],
+      [-105, 44],
+      [11, 57]
+    ],
+    [
+      [4302, 10569],
+      [75, 14],
+      [93, -15]
+    ],
+    [
+      [4470, 10568],
+      [98, -17],
+      [87, -61],
+      [111, 61],
+      [53, 50],
+      [112, -2],
+      [39, 16],
+      [126, -20],
+      [39, -55],
+      [27, 18],
+      [52, -25],
+      [52, 24],
+      [5, -91],
+      [47, -23],
+      [19, -49],
+      [38, -28]
+    ],
+    [
+      [5361, 9643],
+      [61, -79]
+    ],
+    [
+      [5422, 9564],
+      [5, -63],
+      [-83, -83],
+      [29, -21],
+      [-24, -52],
+      [-44, -37]
+    ],
+    [
+      [5305, 9308],
+      [-26, -41],
+      [-118, -39],
+      [-61, -139],
+      [4, -44]
+    ],
+    [
+      [5104, 9045],
+      [-112, 10],
+      [-37, 37],
+      [-85, 32],
+      [-136, 78]
+    ],
+    [
+      [4734, 9202],
+      [7, 57],
+      [-67, 86],
+      [46, 58],
+      [54, 110],
+      [-34, 1]
+    ],
+    [
+      [4740, 9514],
+      [4, 46],
+      [101, 52],
+      [56, -36],
+      [23, 47],
+      [59, 62],
+      [55, 94],
+      [63, -75],
+      [96, -65],
+      [68, 16],
+      [65, -54],
+      [31, 42]
+    ],
+    [
+      [3900, 9505],
+      [-67, 52],
+      [-95, 5],
+      [-16, -50]
+    ],
+    [
+      [3722, 9512],
+      [-92, 46],
+      [-51, 88]
+    ],
+    [
+      [3579, 9646],
+      [54, 159],
+      [64, 16],
+      [69, 135],
+      [65, 51],
+      [24, 42],
+      [14, 108],
+      [31, 37],
+      [-8, 51],
+      [8, 141],
+      [68, 136]
+    ],
+    [
+      [3968, 10522],
+      [50, 10],
+      [53, 42],
+      [70, 10],
+      [74, -38],
+      [87, 23]
+    ],
+    [
+      [3573, 10551],
+      [38, -18]
+    ],
+    [
+      [3611, 10533],
+      [-76, -162],
+      [21, -88],
+      [-30, -79],
+      [-11, -127],
+      [-56, -51],
+      [-9, -50],
+      [-72, -43],
+      [-46, -75],
+      [-59, -49]
+    ],
+    [
+      [3273, 9809],
+      [-40, -10],
+      [-102, 74],
+      [16, 35],
+      [-71, 51],
+      [-103, -7],
+      [-82, -111],
+      [-42, -17]
+    ],
+    [
+      [2849, 9824],
+      [-30, 58],
+      [-89, 34],
+      [-75, -37]
+    ],
+    [
+      [2655, 9879],
+      [-19, 42],
+      [36, 52],
+      [-4, 93]
+    ],
+    [
+      [2668, 10066],
+      [53, 41],
+      [70, 87],
+      [58, 24],
+      [73, 8],
+      [1, 37],
+      [49, 64],
+      [57, 10],
+      [2, 44],
+      [51, 43],
+      [46, 11],
+      [23, 39],
+      [-22, 76],
+      [41, 61],
+      [13, 58],
+      [35, 18]
+    ],
+    [
+      [3218, 10687],
+      [22, -28],
+      [48, 28],
+      [89, -32],
+      [19, -25],
+      [85, -42],
+      [48, 15],
+      [44, -52]
+    ],
+    [
+      [2668, 10066],
+      [-68, 31],
+      [-74, -2],
+      [-37, 37],
+      [-91, 7]
+    ],
+    [
+      [2398, 10139],
+      [-3, 93]
+    ],
+    [
+      [2395, 10232],
+      [92, -7],
+      [32, 69],
+      [-44, 31],
+      [64, 67],
+      [-12, 74],
+      [-56, 33],
+      [62, 129],
+      [21, 65],
+      [64, 57],
+      [58, 13],
+      [44, 37]
+    ],
+    [
+      [2720, 10800],
+      [36, -42],
+      [117, -52],
+      [62, 39],
+      [96, -19],
+      [8, 72]
+    ],
+    [
+      [3039, 10798],
+      [95, -2],
+      [26, -66],
+      [58, -43]
+    ],
+    [
+      [5255, 10158],
+      [12, -57],
+      [5, -156],
+      [64, -243],
+      [25, -59]
+    ],
+    [
+      [4740, 9514],
+      [-59, -28],
+      [-52, 32],
+      [13, 44],
+      [-80, -3]
+    ],
+    [
+      [3579, 9646],
+      [-32, 0],
+      [-60, 55],
+      [-70, 21],
+      [-40, -22]
+    ],
+    [
+      [3377, 9700],
+      [-104, 109]
+    ],
+    [
+      [3611, 10533],
+      [64, -17],
+      [51, 19],
+      [55, 79],
+      [41, 6],
+      [12, -54],
+      [134, -44]
+    ],
+    [
+      [5705, 9317],
+      [-22, -55],
+      [-5, -81],
+      [-39, -42],
+      [-54, -6],
+      [-32, 80],
+      [-22, -7],
+      [-69, 43]
+    ],
+    [
+      [5462, 9249],
+      [20, 43],
+      [-43, 38],
+      [-58, -37]
+    ],
+    [
+      [5381, 9293],
+      [-76, 15]
+    ],
+    [
+      [5422, 9564],
+      [2, 1],
+      [0, 0],
+      [56, -69],
+      [62, -46],
+      [53, -64],
+      [77, -64],
+      [33, -5]
+    ],
+    [
+      [6494, 11683],
+      [-16, -60]
+    ],
+    [
+      [6478, 11623],
+      [-33, 8],
+      [-28, -54],
+      [32, -18],
+      [-110, -61],
+      [-46, -9],
+      [-3, 67]
+    ],
+    [
+      [6290, 11556],
+      [57, 75],
+      [-16, 104],
+      [-29, 59],
+      [70, 106],
+      [26, 69]
+    ],
+    [
+      [6398, 11969],
+      [-16, -75],
+      [63, -11],
+      [64, 14],
+      [35, -15],
+      [-56, -155],
+      [6, -44]
+    ],
+    [
+      [5917, 11693],
+      [-46, -21],
+      [-64, 42],
+      [-74, 4],
+      [-49, -22],
+      [-63, -56]
+    ],
+    [
+      [5621, 11640],
+      [-52, 58],
+      [-64, 39],
+      [-30, 70],
+      [-77, 41],
+      [5, 51],
+      [-27, 58]
+    ],
+    [
+      [5376, 11957],
+      [27, 44],
+      [52, 35],
+      [14, 44],
+      [-63, 91],
+      [-55, 18],
+      [-45, 40],
+      [5, 36],
+      [47, 62],
+      [30, -1],
+      [81, 103]
+    ],
+    [
+      [5469, 12429],
+      [25, -50],
+      [56, -7],
+      [48, -36],
+      [65, -17],
+      [107, 39],
+      [50, -30],
+      [80, 5],
+      [14, -87],
+      [-10, -94],
+      [-45, -153],
+      [-12, -140],
+      [10, -63],
+      [56, -53],
+      [4, -50]
+    ],
+    [
+      [6494, 11683],
+      [141, -69],
+      [68, -56],
+      [63, -76],
+      [14, -54],
+      [-71, -60],
+      [-74, 16],
+      [22, 49],
+      [-24, 68],
+      [-108, 106],
+      [-47, 16]
+    ],
+    [
+      [6290, 11556],
+      [-43, 17],
+      [0, 1],
+      [-81, 11],
+      [-24, 26],
+      [-122, -51],
+      [-6, -94]
+    ],
+    [
+      [6014, 11466],
+      [-36, 36],
+      [-15, 65],
+      [-25, 17],
+      [-21, 109]
+    ],
+    [
+      [5469, 12429],
+      [7, 37],
+      [59, 44],
+      [35, -15],
+      [44, 26],
+      [-22, 35],
+      [80, 42],
+      [24, 65],
+      [-6, 50]
+    ],
+    [
+      [5690, 12713],
+      [85, -8],
+      [22, -32],
+      [74, 7],
+      [220, -26],
+      [68, -42],
+      [66, -2],
+      [63, 30],
+      [43, -24],
+      [130, -9],
+      [140, -38],
+      [-2, -60],
+      [-42, -26],
+      [-84, -18],
+      [-30, -52],
+      [-80, -47],
+      [-72, -90],
+      [55, -100],
+      [21, 29],
+      [86, -52],
+      [90, -17],
+      [8, -40],
+      [-84, -81],
+      [-69, -46]
+    ],
+    [
+      [6813, 6415],
+      [44, -43],
+      [21, -59],
+      [-8, -49],
+      [22, -55],
+      [-49, -41],
+      [4, -40]
+    ],
+    [
+      [6750, 5970],
+      [-103, -47],
+      [-44, 43],
+      [-91, -20],
+      [-65, 127],
+      [-112, 47],
+      [10, -40],
+      [-33, -29],
+      [-92, 3],
+      [-36, 61],
+      [31, 23],
+      [-26, 68],
+      [-46, 19],
+      [-44, 57]
+    ],
+    [
+      [6099, 6282],
+      [-23, 17],
+      [-3, 81],
+      [-141, 149],
+      [13, 61],
+      [52, 10],
+      [34, 35],
+      [49, -22],
+      [83, 68],
+      [49, 66]
+    ],
+    [
+      [6646, 5823],
+      [-52, 38],
+      [-79, 9],
+      [-102, -50],
+      [-112, 69],
+      [-93, 28],
+      [-129, -37],
+      [-83, -60],
+      [-24, 12],
+      [-42, 113],
+      [-66, 77],
+      [-83, 45],
+      [-56, 2]
+    ],
+    [
+      [5725, 6069],
+      [-32, 39],
+      [-17, 74],
+      [-62, 36],
+      [-58, 10],
+      [-47, 70],
+      [17, 34],
+      [68, 62],
+      [18, -81],
+      [42, 3],
+      [61, -39],
+      [86, 143],
+      [78, 27],
+      [4, -50],
+      [77, -94],
+      [81, -59],
+      [58, 38]
+    ],
+    [
+      [5965, 6959],
+      [-49, 19],
+      [-45, -27],
+      [-59, -7],
+      [-16, 51],
+      [-86, 51],
+      [-38, -37],
+      [-56, -4],
+      [-39, 38],
+      [18, 85],
+      [-106, 59]
+    ],
+    [
+      [5489, 7187],
+      [-29, 2],
+      [-41, 131]
+    ],
+    [
+      [5419, 7320],
+      [20, -5],
+      [20, 5],
+      [29, -40],
+      [137, 94],
+      [70, 37],
+      [-13, 49],
+      [43, 5],
+      [69, 51],
+      [42, 14],
+      [4, 67]
+    ],
+    [
+      [5840, 7597],
+      [151, 8],
+      [80, 30],
+      [27, 25],
+      [15, 86]
+    ],
+    [
+      [6113, 7746],
+      [60, -15],
+      [30, 24],
+      [53, -50]
+    ],
+    [
+      [5725, 6069],
+      [-99, 51],
+      [-45, -14],
+      [-80, 137],
+      [-88, 109],
+      [-83, 76],
+      [-112, 67],
+      [-16, 79],
+      [-47, 104],
+      [-41, 43],
+      [-64, 35],
+      [-32, 40],
+      [-93, 65],
+      [-76, -13],
+      [-32, 72],
+      [-62, 93]
+    ],
+    [
+      [4755, 7013],
+      [89, 12],
+      [61, 88],
+      [80, -38],
+      [22, -62],
+      [107, 5],
+      [55, 22],
+      [88, 4],
+      [54, -46],
+      [43, 50],
+      [21, 59],
+      [60, -33],
+      [25, 82],
+      [29, 31]
+    ],
+    [
+      [4906, 7875],
+      [34, -72],
+      [45, -17],
+      [-49, -77],
+      [14, -27],
+      [82, -42],
+      [122, 34],
+      [77, -62],
+      [-4, -72],
+      [72, -106],
+      [33, -19],
+      [40, 33],
+      [16, -68],
+      [31, -60]
+    ],
+    [
+      [4755, 7013],
+      [-25, 76],
+      [-65, 95],
+      [-81, 63],
+      [-93, 45]
+    ],
+    [
+      [4491, 7292],
+      [7, 32],
+      [56, 40],
+      [94, 3],
+      [-1, 66],
+      [-52, 38],
+      [22, 32],
+      [139, 81],
+      [48, 82],
+      [32, 92],
+      [-68, 55]
+    ],
+    [
+      [4768, 7813],
+      [53, 19],
+      [42, 48],
+      [43, -5]
+    ],
+    [
+      [2655, 9879],
+      [-6, -29],
+      [43, -40],
+      [-18, -36],
+      [69, -71],
+      [-59, -70]
+    ],
+    [
+      [2684, 9633],
+      [-63, 27],
+      [-50, 55],
+      [-142, 81],
+      [-34, -53],
+      [-50, 24],
+      [7, 33],
+      [-47, 29],
+      [-336, 72],
+      [-101, -60]
+    ],
+    [
+      [1868, 9841],
+      [-38, 31],
+      [11, 42],
+      [56, 16],
+      [-11, 70],
+      [-72, 7]
+    ],
+    [
+      [1814, 10007],
+      [84, 93],
+      [51, -4],
+      [43, -71],
+      [144, 55],
+      [-37, 92],
+      [46, 47],
+      [76, -12],
+      [39, -58],
+      [45, -14],
+      [46, -46],
+      [47, 50]
+    ],
+    [
+      [1291, 9499],
+      [13, -77],
+      [-46, -46],
+      [35, -44],
+      [62, 5],
+      [48, -56]
+    ],
+    [
+      [1403, 9281],
+      [-57, -62],
+      [-152, -71],
+      [-37, 0],
+      [-149, -45],
+      [-36, -31],
+      [-78, 20],
+      [-56, -10],
+      [-29, 113],
+      [58, 34],
+      [10, 58],
+      [75, 40],
+      [12, 67],
+      [44, 43]
+    ],
+    [
+      [1008, 9437],
+      [32, 94],
+      [168, -32],
+      [83, 0]
+    ],
+    [
+      [2849, 9824],
+      [111, -106],
+      [45, -18],
+      [4, -39],
+      [100, -87],
+      [34, -79],
+      [62, -12],
+      [-47, -69]
+    ],
+    [
+      [3158, 9414],
+      [-52, -10],
+      [-103, 86],
+      [-74, -37],
+      [-99, 85],
+      [-146, 95]
+    ],
+    [
+      [1868, 9841],
+      [-119, -66],
+      [-53, -51],
+      [6, -36],
+      [-68, -101],
+      [-102, -48],
+      [-45, -81],
+      [-2, -47],
+      [-52, -53],
+      [5, -60],
+      [-35, -17]
+    ],
+    [
+      [1291, 9499],
+      [-5, 57],
+      [54, -14],
+      [25, 40],
+      [-27, 52],
+      [23, 73],
+      [-28, 34],
+      [69, 40],
+      [14, 67],
+      [68, 57],
+      [-25, 44],
+      [53, 82]
+    ],
+    [
+      [1512, 10031],
+      [9, -11]
+    ],
+    [
+      [1521, 10020],
+      [122, -54],
+      [10, 40],
+      [161, 1]
+    ],
+    [
+      [3299, 11977],
+      [54, -11],
+      [-48, -98],
+      [-51, -20],
+      [-23, -34],
+      [11, -55],
+      [38, -29],
+      [-80, -95],
+      [2, -126],
+      [-20, -18],
+      [-95, -13],
+      [-51, -80],
+      [-35, 1],
+      [-12, -67],
+      [38, -97],
+      [11, -60]
+    ],
+    [
+      [3038, 11175],
+      [-61, 24],
+      [-15, -29],
+      [-93, 75],
+      [-25, -52],
+      [-68, 44],
+      [-57, -18],
+      [-26, 55]
+    ],
+    [
+      [2693, 11274],
+      [18, 99],
+      [-40, 73]
+    ],
+    [
+      [2671, 11446],
+      [-18, 37]
+    ],
+    [
+      [2653, 11483],
+      [-29, 116],
+      [50, 16],
+      [-26, 110],
+      [47, 19],
+      [14, 106],
+      [-31, 12],
+      [22, 57]
+    ],
+    [
+      [2700, 11919],
+      [46, 11],
+      [62, 51],
+      [115, 5],
+      [61, -22],
+      [71, -1],
+      [119, 53],
+      [125, -39]
+    ],
+    [
+      [3621, 12341],
+      [47, -21],
+      [18, -100],
+      [-41, -76],
+      [22, -27],
+      [-22, -81],
+      [-47, -47],
+      [-31, -74],
+      [47, -131],
+      [0, -104],
+      [52, -51],
+      [81, 37],
+      [4, 25],
+      [173, 0]
+    ],
+    [
+      [3924, 11691],
+      [-129, -203],
+      [-69, -90],
+      [14, -188],
+      [11, -49]
+    ],
+    [
+      [3751, 11161],
+      [-15, -39],
+      [-85, 0],
+      [-34, 34],
+      [-57, -37],
+      [15, -74],
+      [-32, -15],
+      [-106, -138]
+    ],
+    [
+      [3437, 10892],
+      [-48, 59],
+      [-44, -34],
+      [-111, 30],
+      [-47, 41],
+      [-52, 13],
+      [-89, 61],
+      [-14, 24],
+      [6, 89]
+    ],
+    [
+      [3299, 11977],
+      [-10, 130],
+      [126, 82],
+      [31, 81],
+      [40, 8],
+      [80, 75],
+      [55, -12]
+    ],
+    [
+      [2595, 12079],
+      [-53, 17],
+      [-52, -31],
+      [-11, -85],
+      [-26, -42],
+      [21, -76],
+      [-15, -52],
+      [59, -78],
+      [-82, -124],
+      [3, -31]
+    ],
+    [
+      [2439, 11577],
+      [-48, -57],
+      [-120, -17],
+      [-10, -49]
+    ],
+    [
+      [2261, 11454],
+      [-119, 11],
+      [21, 97],
+      [-47, 68],
+      [12, 64]
+    ],
+    [
+      [2128, 11694],
+      [36, 13],
+      [69, -30],
+      [43, 119],
+      [-51, 19],
+      [3, 155],
+      [53, 17],
+      [-5, 65],
+      [46, 22],
+      [115, 126]
+    ],
+    [
+      [2437, 12200],
+      [81, 4],
+      [86, -61],
+      [-9, -64]
+    ],
+    [
+      [3437, 10892],
+      [58, -85],
+      [53, -3],
+      [-24, -114],
+      [77, 36],
+      [42, -25],
+      [-78, -92],
+      [8, -58]
+    ],
+    [
+      [3039, 10798],
+      [-18, 34],
+      [-81, 11],
+      [-71, 116],
+      [-86, 47],
+      [-26, 79],
+      [-74, -9],
+      [-51, 48],
+      [28, 78]
+    ],
+    [
+      [2660, 11202],
+      [33, 72]
+    ],
+    [
+      [2653, 11483],
+      [-58, 10],
+      [-93, -10],
+      [-38, 93],
+      [-25, 1]
+    ],
+    [
+      [2595, 12079],
+      [0, -54],
+      [89, -41],
+      [16, -65]
+    ],
+    [
+      [2720, 10800],
+      [-16, 42],
+      [-50, -5],
+      [-100, 106],
+      [-52, 19],
+      [40, 42],
+      [-18, 26]
+    ],
+    [
+      [2524, 11030],
+      [39, 7],
+      [-25, 57],
+      [50, 39],
+      [10, 73],
+      [62, -4]
+    ],
+    [
+      [4264, 10771],
+      [-4, -63],
+      [122, -87],
+      [77, -31],
+      [11, -22]
+    ],
+    [
+      [3751, 11161],
+      [40, -46],
+      [37, -118],
+      [42, 36],
+      [60, -75],
+      [81, -30],
+      [53, -47],
+      [7, -48],
+      [69, -76],
+      [62, 32],
+      [62, -18]
+    ],
+    [
+      [2258, 11425],
+      [53, -3],
+      [-6, -42],
+      [63, 5],
+      [99, -60],
+      [44, -7],
+      [147, 85],
+      [13, 43]
+    ],
+    [
+      [2524, 11030],
+      [-50, 24],
+      [-135, -28],
+      [-96, -9],
+      [-50, -48],
+      [-37, 62],
+      [-72, 37],
+      [-22, 65]
+    ],
+    [
+      [2062, 11133],
+      [-50, 86],
+      [-1, 31],
+      [-56, 21],
+      [-19, 71]
+    ],
+    [
+      [1936, 11342],
+      [92, 55],
+      [58, -12],
+      [50, 25],
+      [17, 39],
+      [59, -82],
+      [52, 5],
+      [-6, 53]
+    ],
+    [
+      [2258, 11425],
+      [3, 29]
+    ],
+    [
+      [2395, 10232],
+      [13, 84],
+      [-39, 25],
+      [-11, 53],
+      [-48, -10],
+      [-52, 49],
+      [16, 27],
+      [-94, 99],
+      [8, 31],
+      [-71, 51],
+      [-19, 59],
+      [-53, -9],
+      [-52, -51],
+      [-59, 38],
+      [-50, -17],
+      [-5, 66],
+      [-62, 99],
+      [-30, 19]
+    ],
+    [
+      [1787, 10845],
+      [15, 36],
+      [-35, 29],
+      [16, 43],
+      [-28, 77]
+    ],
+    [
+      [1755, 11030],
+      [13, 39],
+      [79, 14],
+      [97, -66],
+      [10, 38],
+      [62, 59],
+      [46, 19]
+    ],
+    [
+      [3565, 12586],
+      [19, -51],
+      [71, -5],
+      [65, -55]
+    ],
+    [
+      [3720, 12475],
+      [8, -58],
+      [-107, -76]
+    ],
+    [
+      [2437, 12200],
+      [48, 105],
+      [-18, 132],
+      [7, 108],
+      [81, -2],
+      [16, -35],
+      [70, 50],
+      [-10, -107],
+      [15, -66],
+      [25, -10],
+      [48, -77],
+      [84, -20],
+      [70, 8],
+      [11, 59],
+      [41, -7],
+      [163, 51],
+      [43, -45],
+      [5, -72],
+      [54, -24],
+      [-6, -48],
+      [70, -5],
+      [47, 38],
+      [-19, 50],
+      [-46, 51],
+      [58, 96],
+      [-32, 27],
+      [-47, -12],
+      [-39, 26],
+      [17, 131],
+      [63, 78],
+      [55, 24],
+      [104, -93],
+      [114, -2],
+      [36, -23]
+    ],
+    [
+      [1936, 11342],
+      [-17, 104],
+      [-40, 104],
+      [-41, 6],
+      [-43, 62],
+      [35, 68]
+    ],
+    [
+      [1830, 11686],
+      [-20, 93],
+      [137, 140],
+      [-2, 115]
+    ],
+    [
+      [1945, 12034],
+      [60, -6],
+      [64, -28],
+      [-56, -85],
+      [117, -119],
+      [14, -53],
+      [-16, -49]
+    ],
+    [
+      [6533, 8689],
+      [17, -51],
+      [-71, 11],
+      [-95, -8],
+      [-31, 11],
+      [-104, -68],
+      [-85, 86],
+      [-31, -54],
+      [-53, -4],
+      [-58, 28],
+      [-48, -127],
+      [-82, -74],
+      [-66, -14],
+      [14, -44],
+      [-32, -27]
+    ],
+    [
+      [5808, 8354],
+      [-108, 228],
+      [26, 15],
+      [-7, 74]
+    ],
+    [
+      [5719, 8671],
+      [36, 56],
+      [77, 50],
+      [29, 52],
+      [39, 17],
+      [23, 74],
+      [78, 47],
+      [9, 44],
+      [86, 28]
+    ],
+    [
+      [6096, 9039],
+      [93, -81],
+      [138, -83],
+      [57, -18],
+      [26, 29],
+      [58, -74],
+      [53, -30],
+      [12, -93]
+    ],
+    [
+      [6727, 8170],
+      [37, -159],
+      [24, -60]
+    ],
+    [
+      [6113, 7746],
+      [69, 95],
+      [-27, 76]
+    ],
+    [
+      [6155, 7917],
+      [6, 31]
+    ],
+    [
+      [6161, 7948],
+      [49, 42],
+      [80, -25],
+      [28, 24],
+      [-16, 54],
+      [30, 13],
+      [122, 14],
+      [70, 57],
+      [144, 60],
+      [59, -17]
+    ],
+    [
+      [6161, 7948],
+      [-23, 75],
+      [49, 29],
+      [58, 63],
+      [56, -15],
+      [64, 11],
+      [4, 76],
+      [-32, 40],
+      [30, 67],
+      [52, 13],
+      [3, 45],
+      [67, 0],
+      [7, 74],
+      [132, 33]
+    ],
+    [
+      [6628, 8459],
+      [95, -250],
+      [4, -39]
+    ],
+    [
+      [6533, 8689],
+      [72, -193],
+      [23, -37]
+    ],
+    [
+      [6155, 7917],
+      [-21, -34],
+      [-48, -12],
+      [-45, 73],
+      [-54, 40],
+      [-73, -64],
+      [1, 71],
+      [-76, 49],
+      [10, 90],
+      [-8, 74],
+      [-33, 93],
+      [0, 57]
+    ],
+    [
+      [5719, 8671],
+      [-30, 5],
+      [-24, -50],
+      [-43, 15],
+      [-35, -20],
+      [-57, 50],
+      [-60, 78],
+      [-94, -10],
+      [-50, 51],
+      [26, 39],
+      [-15, 42],
+      [-58, -30],
+      [-75, 21]
+    ],
+    [
+      [5204, 8862],
+      [-27, 40],
+      [171, 93],
+      [-79, 64],
+      [-40, -14],
+      [-72, 11],
+      [-53, -11]
+    ],
+    [
+      [5381, 9293],
+      [3, -58],
+      [2, -7],
+      [76, 21]
+    ],
+    [
+      [5705, 9317],
+      [46, -6],
+      [87, -54],
+      [166, -131],
+      [92, -87]
+    ],
+    [
+      [7224, 6103],
+      [7, 79],
+      [97, 86],
+      [15, 46],
+      [-80, 45],
+      [9, 35],
+      [81, 35],
+      [-33, 77]
+    ],
+    [
+      [7594, 6900],
+      [110, -61],
+      [95, -21],
+      [65, -75],
+      [63, -26]
+    ],
+    [
+      [1521, 10020],
+      [38, 57],
+      [10, 49],
+      [36, 39],
+      [3, 54],
+      [61, 21],
+      [1, 50],
+      [55, 26],
+      [20, 43],
+      [-118, 77],
+      [2, 176],
+      [-24, 17],
+      [-46, 100],
+      [-57, -17],
+      [-77, -46],
+      [-46, 86],
+      [18, 36]
+    ],
+    [
+      [1397, 10788],
+      [21, 58]
+    ],
+    [
+      [1418, 10846],
+      [60, -6],
+      [50, 22],
+      [68, -12],
+      [19, 33],
+      [124, 1],
+      [48, -39]
+    ],
+    [
+      [1512, 10031],
+      [-8, 60],
+      [-46, 67],
+      [59, 118],
+      [-116, 33],
+      [-2, 81],
+      [-35, 14],
+      [-45, -28],
+      [-95, 60]
+    ],
+    [
+      [1224, 10436],
+      [-47, 87],
+      [9, 65],
+      [24, 22],
+      [0, 155],
+      [57, 30],
+      [130, -7]
+    ],
+    [
+      [1302, 11144],
+      [11, 49],
+      [-65, 43],
+      [-78, 70],
+      [10, 76]
+    ],
+    [
+      [1180, 11382],
+      [40, 68],
+      [-31, 49],
+      [29, 54]
+    ],
+    [
+      [1218, 11553],
+      [60, -5],
+      [119, 48],
+      [185, -140],
+      [-67, -50],
+      [38, -70],
+      [-31, -67],
+      [-72, -65],
+      [-59, -94],
+      [-89, 34]
+    ],
+    [
+      [1008, 9437],
+      [2, 32],
+      [-43, 51],
+      [15, 63],
+      [-65, -29],
+      [-101, -12],
+      [-41, -23],
+      [-95, -13],
+      [-14, 37],
+      [-76, 2],
+      [-64, 64],
+      [-50, 5],
+      [-61, 38],
+      [-61, 15],
+      [-73, 141],
+      [-30, 15],
+      [7, 68],
+      [43, 13],
+      [-60, 71],
+      [-21, 58],
+      [69, 57],
+      [12, 99],
+      [43, 42],
+      [56, -8],
+      [4, 40]
+    ],
+    [
+      [404, 10263],
+      [54, 20],
+      [35, 43],
+      [170, 29],
+      [9, -40],
+      [61, 18],
+      [50, -12],
+      [55, 34],
+      [60, 65],
+      [56, -3],
+      [29, -27],
+      [75, 16],
+      [15, 26],
+      [113, -28],
+      [38, 32]
+    ],
+    [
+      [1755, 11030],
+      [-16, 78],
+      [-38, 10],
+      [-46, 47],
+      [-2, 143],
+      [-13, 111],
+      [-49, 57],
+      [38, 96],
+      [-26, 43]
+    ],
+    [
+      [1603, 11615],
+      [102, 128],
+      [38, -50],
+      [87, -7]
+    ],
+    [
+      [1302, 11144],
+      [-2, -50],
+      [-57, -42],
+      [25, -29],
+      [0, -100],
+      [51, -37],
+      [99, -40]
+    ],
+    [
+      [404, 10263],
+      [-37, 45],
+      [-3, 97],
+      [-68, 51],
+      [-34, -23],
+      [-81, 35],
+      [-59, 52],
+      [1, 73],
+      [-22, 67],
+      [-49, -3],
+      [-52, 112],
+      [56, 37],
+      [76, 21],
+      [76, -33],
+      [44, 45],
+      [49, 15],
+      [21, 41],
+      [148, 59],
+      [-21, 86],
+      [67, 104],
+      [-59, 43],
+      [-18, 35]
+    ],
+    [
+      [439, 11222],
+      [19, 54],
+      [95, -46],
+      [43, 57],
+      [98, 2],
+      [84, 77],
+      [86, 17],
+      [164, -51],
+      [108, 66],
+      [44, -16]
+    ],
+    [
+      [1603, 11615],
+      [-31, -4],
+      [17, 98],
+      [-30, 53],
+      [-114, 77],
+      [-88, -33],
+      [-39, 17],
+      [-76, -45],
+      [-80, 33]
+    ],
+    [
+      [1162, 11811],
+      [-3, 4]
+    ],
+    [
+      [1159, 11815],
+      [8, 59],
+      [25, 27],
+      [79, 1],
+      [40, 56],
+      [2, 66],
+      [68, 19],
+      [32, 30],
+      [19, 61],
+      [-68, 101],
+      [47, 49],
+      [67, 10],
+      [45, 70],
+      [46, 24],
+      [-22, 37],
+      [78, 55],
+      [55, 9],
+      [35, -122],
+      [-42, -85],
+      [35, -91],
+      [65, -8],
+      [68, -88],
+      [3, -47],
+      [101, -14]
+    ],
+    [
+      [1218, 11553],
+      [-69, 85],
+      [13, 173]
+    ],
+    [
+      [2597, 3779],
+      [38, 31],
+      [44, -25],
+      [18, -42],
+      [118, -50]
+    ],
+    [
+      [2815, 3693],
+      [-18, -68],
+      [9, -67],
+      [-43, -124],
+      [9, -68],
+      [-31, -59],
+      [-5, -128],
+      [-35, -24],
+      [-63, -2],
+      [-64, 21],
+      [-20, 39],
+      [-71, 51],
+      [-73, 18],
+      [-71, -53],
+      [-42, 36],
+      [-72, -84],
+      [-2, -78],
+      [27, -36],
+      [-17, -76],
+      [-108, -105],
+      [-65, -52],
+      [-103, 69],
+      [-60, -46],
+      [-42, 32],
+      [-8, 50]
+    ],
+    [
+      [1847, 2939],
+      [78, 91],
+      [41, 26],
+      [81, 4],
+      [25, 41],
+      [-29, 43],
+      [4, 38],
+      [-52, 39],
+      [-29, 129],
+      [-36, 53],
+      [-2, 67]
+    ],
+    [
+      [1928, 3470],
+      [54, 38],
+      [74, 8],
+      [87, -14],
+      [45, 28],
+      [-17, 52],
+      [52, 31],
+      [-15, 85],
+      [44, 111]
+    ],
+    [
+      [2252, 3809],
+      [33, 30],
+      [61, 17],
+      [57, -67],
+      [81, -28],
+      [18, -33],
+      [67, 12],
+      [28, 39]
+    ],
+    [
+      [1619, 3136],
+      [49, -7],
+      [33, -29],
+      [11, -49],
+      [-21, -97],
+      [-40, -11],
+      [-47, 142],
+      [15, 51]
+    ],
+    [
+      [1564, 3231],
+      [-2, -110],
+      [-33, -8],
+      [-39, 90],
+      [74, 28]
+    ],
+    [
+      [1847, 2939],
+      [-36, 24],
+      [2, 54],
+      [-35, 50],
+      [-47, 32],
+      [-47, 91],
+      [-33, 25],
+      [-34, 68],
+      [66, 77],
+      [-20, 59],
+      [-40, 51],
+      [28, 37],
+      [-10, 53]
+    ],
+    [
+      [1641, 3560],
+      [98, 48],
+      [36, -5],
+      [87, -90],
+      [21, -37],
+      [45, -6]
+    ],
+    [
+      [1641, 3560],
+      [-7, 30],
+      [48, 68],
+      [33, 99],
+      [-18, 27],
+      [2, 97],
+      [46, 20],
+      [-2, -5],
+      [5, -5],
+      [1, 1],
+      [47, -16]
+    ],
+    [
+      [1796, 3876],
+      [47, -5],
+      [22, -46],
+      [104, -34],
+      [38, 35],
+      [73, 18],
+      [48, 68],
+      [10, 47]
+    ],
+    [
+      [2138, 3959],
+      [11, 27],
+      [58, -24],
+      [58, -4],
+      [-13, -149]
+    ],
+    [
+      [2792, 4552],
+      [-46, -37],
+      [-53, 1],
+      [-39, -36],
+      [-40, -81],
+      [-91, -41],
+      [-16, -97],
+      [-39, -64],
+      [-5, -121],
+      [18, -48],
+      [-39, -100],
+      [55, -72],
+      [70, 22],
+      [30, -99]
+    ],
+    [
+      [2138, 3959],
+      [-29, 18],
+      [75, 37],
+      [13, 37],
+      [-17, 83],
+      [25, 81],
+      [-47, 68],
+      [39, 56],
+      [45, -9],
+      [0, 58],
+      [-24, 52],
+      [7, 73],
+      [-33, 31],
+      [-119, -10],
+      [-55, -24],
+      [-114, 23],
+      [-5, 51],
+      [-38, 18],
+      [-6, 70]
+    ],
+    [
+      [1855, 4672],
+      [18, -24],
+      [91, 68],
+      [70, 14],
+      [73, 49],
+      [54, -44],
+      [74, -91],
+      [13, 38],
+      [119, 58],
+      [54, 72],
+      [48, 104],
+      [-90, -2],
+      [6, 36]
+    ],
+    [
+      [2385, 4950],
+      [91, -14],
+      [80, 58],
+      [6, 50],
+      [39, 61],
+      [61, -17],
+      [72, 44],
+      [25, 147],
+      [48, 33],
+      [20, 42]
+    ],
+    [
+      [2827, 5354],
+      [25, -57],
+      [-1, -62],
+      [19, -63],
+      [36, -40],
+      [-7, -67],
+      [46, -73],
+      [30, -87],
+      [-65, -155],
+      [-58, -44],
+      [-56, -91],
+      [-4, -63]
+    ],
+    [
+      [2792, 4552],
+      [26, -104],
+      [76, -86],
+      [-28, -52],
+      [-20, -100],
+      [-1, -148],
+      [-15, -82],
+      [3, -95],
+      [-18, -47],
+      [0, -145]
+    ],
+    [
+      [2385, 4950],
+      [5, 113],
+      [-18, 46],
+      [-50, -20],
+      [-101, 43],
+      [16, 84],
+      [-4, 59],
+      [-50, 89],
+      [-44, -16],
+      [-26, 24],
+      [86, 55],
+      [-17, 55],
+      [-90, -29],
+      [-44, 21]
+    ],
+    [
+      [2048, 5474],
+      [42, 59],
+      [8, 42],
+      [48, 21],
+      [73, 101],
+      [88, 11],
+      [44, 27],
+      [8, 103],
+      [67, 29],
+      [43, -38],
+      [-10, -43],
+      [54, -7],
+      [35, 23],
+      [55, -46],
+      [19, -46],
+      [67, 9],
+      [50, -42],
+      [-33, -34],
+      [-3, -71],
+      [31, -1],
+      [27, -73],
+      [-31, -64],
+      [87, -50],
+      [10, -30]
+    ],
+    [
+      [2598, 5880],
+      [20, -67],
+      [-55, -7],
+      [35, 74]
+    ],
+    [
+      [1796, 3876],
+      [-50, 43],
+      [35, 55],
+      [13, 97],
+      [-14, 54],
+      [-50, 27],
+      [-82, -13],
+      [8, 162],
+      [76, 63],
+      [-28, 92],
+      [2, 81],
+      [20, 92],
+      [-52, 63],
+      [-39, 12],
+      [14, 82]
+    ],
+    [
+      [1649, 4786],
+      [21, -17],
+      [86, 34],
+      [99, -131]
+    ],
+    [
+      [1649, 4786],
+      [-25, 104],
+      [-37, 29],
+      [-36, 101],
+      [-91, -28],
+      [-45, 14],
+      [-5, 51],
+      [39, 20],
+      [16, 64],
+      [-61, 50],
+      [24, 80],
+      [51, 99],
+      [4, 30],
+      [-43, 54],
+      [25, 49],
+      [32, -25],
+      [-5, -59],
+      [77, -80],
+      [96, -7],
+      [31, -22],
+      [81, 5],
+      [79, 47],
+      [22, 34],
+      [54, 29],
+      [81, 14],
+      [35, 35]
+    ],
+    [
+      [1573, 5692],
+      [19, -79],
+      [-50, 7],
+      [31, 72]
+    ],
+    [
+      [6619, 1317],
+      [63, 6],
+      [9, -59],
+      [-42, -57],
+      [-91, -28],
+      [21, -25],
+      [0, -69],
+      [-31, -37],
+      [87, -56],
+      [71, 6],
+      [77, -58],
+      [-25, -35],
+      [42, -37],
+      [32, 0],
+      [62, -71],
+      [-42, -106],
+      [50, -63],
+      [0, -46]
+    ],
+    [
+      [6902, 582],
+      [-56, 3],
+      [-69, -18],
+      [-74, 63],
+      [-68, 5],
+      [-84, 58],
+      [-101, 118],
+      [-98, 8],
+      [-39, 48],
+      [-78, 41],
+      [-100, 126],
+      [-38, 35],
+      [-89, 20],
+      [-36, -13],
+      [-85, 97],
+      [-48, 7]
+    ],
+    [
+      [5839, 1180],
+      [20, 145],
+      [44, 51],
+      [44, 17]
+    ],
+    [
+      [5947, 1393],
+      [64, -62],
+      [100, -3],
+      [23, -66],
+      [39, -28],
+      [20, 37],
+      [43, 3],
+      [-1, -78],
+      [35, -59],
+      [38, 19],
+      [-17, 54],
+      [3, 69],
+      [39, -13],
+      [77, 20],
+      [51, -30],
+      [35, 26],
+      [51, 3],
+      [15, 39],
+      [57, -7]
+    ],
+    [
+      [6933, 1354],
+      [7, -31],
+      [-41, -41],
+      [-25, 20],
+      [34, 69],
+      [25, -17]
+    ],
+    [
+      [6994, 1232],
+      [-8, -125],
+      [14, -52],
+      [-66, -70],
+      [12, -106],
+      [77, -19],
+      [60, 30],
+      [80, -27],
+      [33, -26]
+    ],
+    [
+      [7196, 837],
+      [27, -28],
+      [-5, -100],
+      [53, -29],
+      [40, -59],
+      [-29, -106]
+    ],
+    [
+      [7282, 515],
+      [-99, -68]
+    ],
+    [
+      [7183, 447],
+      [-90, 83],
+      [-79, 38],
+      [-112, 14]
+    ],
+    [
+      [6619, 1317],
+      [64, 76],
+      [11, -49],
+      [47, -19],
+      [38, -41],
+      [-5, -50],
+      [53, -41],
+      [66, 21],
+      [14, 54],
+      [34, -1],
+      [53, -35]
+    ],
+    [
+      [8040, 1475],
+      [-50, -86],
+      [13, -41],
+      [-41, -99],
+      [2, -71],
+      [-57, -57],
+      [-29, -61],
+      [5, -156]
+    ],
+    [
+      [7883, 904],
+      [-100, 19],
+      [-56, 49],
+      [-74, -42],
+      [1, -70],
+      [44, -16],
+      [-41, -67],
+      [-33, -3],
+      [-35, -44],
+      [90, -42],
+      [-71, -73]
+    ],
+    [
+      [7608, 615],
+      [-1, -28],
+      [-64, -10],
+      [-20, 20],
+      [-86, -40],
+      [-44, -44],
+      [-40, 25],
+      [-71, -23]
+    ],
+    [
+      [7196, 837],
+      [75, -17],
+      [62, 20],
+      [-5, 48],
+      [90, 35],
+      [-9, 36],
+      [41, 41],
+      [-93, 36],
+      [-2, 69],
+      [20, 33],
+      [49, -9],
+      [79, 28],
+      [98, -69],
+      [33, 171],
+      [-28, 19],
+      [6, 74],
+      [-69, -37],
+      [17, 174]
+    ],
+    [
+      [7560, 1489],
+      [56, -3],
+      [-40, 67],
+      [2, 82],
+      [37, 26],
+      [51, -34],
+      [66, 43],
+      [26, -63],
+      [88, -21],
+      [57, 15],
+      [92, -59],
+      [45, -67]
+    ],
+    [
+      [6994, 1232],
+      [25, 68],
+      [51, 10],
+      [48, 34],
+      [24, 49],
+      [-24, 42],
+      [11, 82]
+    ],
+    [
+      [7129, 1517],
+      [43, -3],
+      [74, 36],
+      [81, -53],
+      [56, 19],
+      [38, -34],
+      [80, -22],
+      [59, 29]
+    ],
+    [
+      [7129, 1517],
+      [-5, 81],
+      [-85, 146]
+    ],
+    [
+      [7039, 1744],
+      [121, -14],
+      [56, 9],
+      [46, 31],
+      [47, -9],
+      [72, 32],
+      [74, 15],
+      [41, 34],
+      [66, 86],
+      [39, -16],
+      [97, 27],
+      [22, 24],
+      [50, -50],
+      [73, -2],
+      [13, -29],
+      [49, -2],
+      [53, 31],
+      [54, 74],
+      [114, 9],
+      [91, 44],
+      [68, 61],
+      [122, -42],
+      [-62, -22],
+      [-22, -82],
+      [-79, -164],
+      [-34, -39],
+      [-124, -185],
+      [-46, -90]
+    ],
+    [
+      [7763, 2386],
+      [-5, -109],
+      [-54, 51],
+      [6, 41],
+      [53, 17]
+    ],
+    [
+      [7629, 2463],
+      [52, -4],
+      [-17, -61],
+      [-55, 35],
+      [20, 30]
+    ],
+    [
+      [5947, 1393],
+      [72, 35],
+      [-31, 51],
+      [-78, 18],
+      [-27, 26],
+      [10, 66],
+      [65, 7],
+      [22, 47],
+      [-65, 128]
+    ],
+    [
+      [5915, 1771],
+      [93, 60],
+      [-21, 56],
+      [46, 76],
+      [82, -28],
+      [75, 36],
+      [80, -8],
+      [23, -106],
+      [53, -17],
+      [91, 22],
+      [2, -69],
+      [77, -61],
+      [114, -51],
+      [83, 16],
+      [103, 57],
+      [83, 17],
+      [28, -28],
+      [112, 1]
+    ],
+    [
+      [7800, 67],
+      [-42, -11],
+      [-41, 38],
+      [-55, 7],
+      [-64, -32],
+      [-90, 22],
+      [-53, 56],
+      [-128, 26],
+      [-33, 38],
+      [-20, 87],
+      [-91, 149]
+    ],
+    [
+      [7608, 615],
+      [21, -29],
+      [1, -62],
+      [65, -91],
+      [9, -81],
+      [-40, -124],
+      [93, -31],
+      [32, -34],
+      [11, -96]
+    ],
+    [
+      [7883, 904],
+      [13, -63],
+      [112, -51],
+      [-31, -44],
+      [-6, -51],
+      [50, -102],
+      [52, -10],
+      [-13, -94],
+      [21, -24],
+      [-107, -87],
+      [-28, -35],
+      [-19, -66],
+      [-28, -34],
+      [-12, -55],
+      [42, -144],
+      [-52, -44],
+      [-77, 67]
+    ],
+    [
+      [4960, 243],
+      [91, -51],
+      [4, -49],
+      [-31, -35],
+      [-38, 13],
+      [-52, 73],
+      [26, 49]
+    ],
+    [
+      [5291, 1663],
+      [57, -43],
+      [-78, -10],
+      [21, 53]
+    ],
+    [
+      [5839, 1180],
+      [-108, 5],
+      [-100, -27],
+      [-55, 97],
+      [-47, 33],
+      [-42, -2],
+      [-45, 57],
+      [1, 50],
+      [-44, 74],
+      [36, 18],
+      [19, 53],
+      [-16, 71],
+      [25, 86],
+      [63, 107],
+      [77, 16],
+      [18, 45],
+      [45, -4],
+      [53, 66],
+      [21, -66],
+      [36, -57],
+      [61, -53],
+      [78, 22]
+    ],
+    [
+      [5204, 8862],
+      [-57, -98],
+      [-47, -4],
+      [-7, -39],
+      [46, -25],
+      [-82, -53],
+      [-22, -48],
+      [37, -38],
+      [43, -8],
+      [28, -140],
+      [-59, -23],
+      [-34, 21],
+      [-20, -78],
+      [-62, -31]
+    ],
+    [
+      [4968, 8298],
+      [-92, 8],
+      [-27, 65],
+      [-35, -3],
+      [-70, 42],
+      [-58, 84],
+      [-85, 54],
+      [-35, 45],
+      [-1, 74],
+      [-52, 35],
+      [-70, 81]
+    ],
+    [
+      [4443, 8783],
+      [63, 42],
+      [52, 0],
+      [-31, 59],
+      [115, 85],
+      [-36, 52],
+      [10, 42],
+      [72, 132],
+      [46, 7]
+    ],
+    [
+      [4443, 8783],
+      [-31, -28],
+      [-86, 5],
+      [-27, -43],
+      [-47, 23],
+      [-40, -37],
+      [-71, 52],
+      [-54, 16],
+      [-57, -53],
+      [-2, -57]
+    ],
+    [
+      [4028, 8661],
+      [-77, 11],
+      [-41, 95],
+      [21, 34],
+      [-13, 55],
+      [17, 30],
+      [57, 15],
+      [-34, 100],
+      [-73, -20],
+      [-14, 36],
+      [-68, 69]
+    ],
+    [
+      [3803, 9086],
+      [16, 36]
+    ],
+    [
+      [3819, 9122],
+      [144, -26],
+      [76, 24]
+    ],
+    [
+      [4039, 9120],
+      [20, -36],
+      [66, -33],
+      [36, 78],
+      [50, 59],
+      [19, 67],
+      [10, 157],
+      [21, 75]
+    ],
+    [
+      [4491, 7292],
+      [-66, 23],
+      [-148, 23],
+      [-58, -66],
+      [-58, 39],
+      [-6, 43],
+      [64, 10],
+      [32, 96],
+      [-32, 66],
+      [-33, -7],
+      [-34, 91],
+      [-72, 43],
+      [-43, 89],
+      [-59, 33],
+      [-109, 25],
+      [-38, 28],
+      [29, 40],
+      [2, 99],
+      [-64, 43]
+    ],
+    [
+      [3798, 8010],
+      [71, 85],
+      [-1, 71],
+      [-44, 5],
+      [-15, 52]
+    ],
+    [
+      [3809, 8223],
+      [73, 67],
+      [108, 2]
+    ],
+    [
+      [3990, 8292],
+      [100, 30],
+      [59, -130],
+      [140, 9],
+      [60, -17],
+      [63, 5],
+      [-7, -145],
+      [95, -13],
+      [56, 30],
+      [49, -14],
+      [49, -53],
+      [0, -80],
+      [16, -84],
+      [98, -17]
+    ],
+    [
+      [3525, 7923],
+      [29, -34],
+      [-9, -81],
+      [-30, -33],
+      [-55, 8],
+      [-193, -41],
+      [-32, 44],
+      [17, 46],
+      [120, -2],
+      [26, 29],
+      [74, -31],
+      [53, 95]
+    ],
+    [
+      [3798, 8010],
+      [-54, 14],
+      [-83, -3],
+      [-13, -37],
+      [-47, 13],
+      [-11, 65],
+      [30, 18],
+      [22, 140],
+      [-2, 110],
+      [-29, 117],
+      [-38, 41],
+      [-38, 104],
+      [-40, 60],
+      [-47, 35],
+      [-35, 94],
+      [10, 47],
+      [40, 19]
+    ],
+    [
+      [3463, 8847],
+      [85, 46],
+      [58, -12],
+      [-33, -108],
+      [40, -138],
+      [-15, -37],
+      [39, -101],
+      [45, -41],
+      [80, -33],
+      [22, -73],
+      [-25, -44],
+      [50, -83]
+    ],
+    [
+      [3722, 9512],
+      [92, -48],
+      [-3, -50],
+      [-45, -80],
+      [3, -134],
+      [50, -78]
+    ],
+    [
+      [3803, 9086],
+      [-60, 13],
+      [-22, -50],
+      [-114, -5],
+      [-44, 16],
+      [-1, 49],
+      [-31, 33],
+      [-35, -20],
+      [-69, 19],
+      [-46, -17]
+    ],
+    [
+      [3381, 9124],
+      [-17, 70],
+      [-90, 133]
+    ],
+    [
+      [3274, 9327],
+      [28, 15],
+      [65, 127],
+      [-53, 47],
+      [1, 105],
+      [41, 28],
+      [21, 51]
+    ],
+    [
+      [3274, 9327],
+      [-73, 65],
+      [-43, 22]
+    ],
+    [
+      [4028, 8661],
+      [44, -66],
+      [13, -46],
+      [-39, -25],
+      [-1, -61],
+      [25, -40],
+      [-8, -44],
+      [-44, -33],
+      [-28, -54]
+    ],
+    [
+      [3463, 8847],
+      [-33, -14],
+      [0, 0],
+      [-1, -1],
+      [0, 0],
+      [-1, 0],
+      [-39, 115],
+      [15, 16],
+      [-23, 161]
+    ],
+    [
+      [4119, 9473],
+      [-9, -71],
+      [-27, -37],
+      [55, -28],
+      [-39, -56],
+      [-12, -132],
+      [-48, -29]
+    ],
+    [
+      [4968, 8298],
+      [-42, -53],
+      [6, -56],
+      [54, -32],
+      [-44, -188],
+      [18, -10],
+      [6, -34],
+      [-24, -6]
+    ],
+    [
+      [4942, 7919],
+      [-36, -44]
+    ],
+    [
+      [5449, 12769],
+      [-40, -14],
+      [-69, -62],
+      [-92, 12],
+      [-46, -25],
+      [-134, 84],
+      [-20, -114],
+      [-45, -67],
+      [-30, 15],
+      [-129, -46]
+    ],
+    [
+      [4844, 12552],
+      [-104, 6],
+      [-84, -53],
+      [-6, -59],
+      [-58, -95],
+      [-70, 16],
+      [-26, -36],
+      [-47, -14],
+      [-23, -41],
+      [-52, 1],
+      [-72, -80],
+      [-37, -13],
+      [-63, 81],
+      [60, 74],
+      [16, 151],
+      [-11, 46],
+      [-50, -12],
+      [-99, 26],
+      [24, -67],
+      [-103, 35],
+      [-49, -49],
+      [-107, 2],
+      [-28, 51],
+      [-77, -43],
+      [-58, -4]
+    ],
+    [
+      [3565, 12586],
+      [30, 105],
+      [-71, 24],
+      [-18, 55],
+      [47, 91],
+      [6, 60],
+      [27, 77],
+      [79, -23],
+      [96, 43],
+      [82, -52],
+      [2, -57],
+      [110, -30],
+      [53, 9],
+      [72, -11],
+      [62, 71],
+      [0, 48],
+      [31, 88],
+      [93, 51],
+      [105, 33],
+      [81, -31],
+      [88, 54],
+      [33, -31],
+      [74, 36],
+      [46, -26],
+      [101, -11],
+      [79, 18],
+      [67, 45],
+      [109, 23],
+      [74, 32],
+      [82, 15],
+      [27, -25],
+      [-32, -48],
+      [-81, -33],
+      [11, -57],
+      [75, -109],
+      [50, 14],
+      [32, -69],
+      [-19, -60],
+      [60, -11],
+      [32, -77],
+      [89, -48]
+    ],
+    [
+      [4844, 12552],
+      [-14, -39],
+      [61, -10],
+      [-43, -106],
+      [-49, -45],
+      [49, -34],
+      [5, -69],
+      [79, -29],
+      [16, -63],
+      [-43, -98],
+      [-74, -25],
+      [-89, 2],
+      [-48, -83],
+      [16, -69]
+    ],
+    [
+      [4710, 11884],
+      [-10, -25],
+      [-80, 6],
+      [-10, 48],
+      [-62, 7],
+      [-59, -40],
+      [-69, -10],
+      [8, -39],
+      [-53, -32],
+      [-59, -1],
+      [-20, -77],
+      [-61, -88],
+      [0, -68],
+      [-33, -47]
+    ],
+    [
+      [4202, 11518],
+      [-130, 14],
+      [-58, -43],
+      [-44, 53],
+      [-43, 4],
+      [37, 125],
+      [-40, 20]
+    ],
+    [
+      [5840, 7597],
+      [-33, 61],
+      [-64, -2],
+      [-16, -34],
+      [-59, -17],
+      [-84, 65],
+      [-45, 51],
+      [-54, 5],
+      [-111, -52],
+      [-60, 93],
+      [-39, 40],
+      [34, 88],
+      [-6, 80],
+      [-58, 5],
+      [-123, 32],
+      [-82, -13],
+      [-19, -67],
+      [-79, -13]
+    ],
+    [
+      [439, 11222],
+      [-45, 45],
+      [-44, 13],
+      [-20, 140],
+      [-150, 129],
+      [-11, 49],
+      [8, 85],
+      [52, -4],
+      [125, 74],
+      [36, 56],
+      [68, -81],
+      [33, 26],
+      [98, 13],
+      [31, 42],
+      [89, -33],
+      [101, 83],
+      [84, 14],
+      [79, -3],
+      [36, -30],
+      [82, -33],
+      [68, 8]
+    ],
+    [
+      [5376, 11957],
+      [-7, 38],
+      [-64, 14],
+      [-82, -81],
+      [-116, -20],
+      [-45, -51],
+      [-27, 14],
+      [-75, -33],
+      [-2, -66],
+      [-69, -19],
+      [-47, 34],
+      [-24, -35]
+    ],
+    [
+      [4818, 11752],
+      [-12, 56],
+      [-56, 15],
+      [-40, 61]
+    ],
+    [
+      [5449, 12769],
+      [75, -28],
+      [144, -9],
+      [22, -19]
+    ],
+    [
+      [5091, 11393],
+      [-54, -34],
+      [-26, -53],
+      [-23, -99],
+      [29, -36],
+      [-36, -35],
+      [130, -116],
+      [37, -4]
+    ],
+    [
+      [5148, 11016],
+      [0, -45],
+      [44, -10]
+    ],
+    [
+      [5192, 10961],
+      [-44, -55],
+      [-164, -36],
+      [-9, -68]
+    ],
+    [
+      [4975, 10802],
+      [-41, 12],
+      [-109, -28],
+      [-43, -33],
+      [-138, 17],
+      [-34, 19],
+      [-78, -27],
+      [-71, 34]
+    ],
+    [
+      [4461, 10796],
+      [-13, 173],
+      [78, 1]
+    ],
+    [
+      [4526, 10970],
+      [78, -6],
+      [17, 66],
+      [29, 22],
+      [-4, 73],
+      [121, 107],
+      [-21, 92],
+      [-61, -5],
+      [21, 128],
+      [32, 52],
+      [100, 7]
+    ],
+    [
+      [4838, 11506],
+      [55, -27],
+      [49, -65],
+      [132, 34],
+      [17, -55]
+    ],
+    [
+      [4264, 10771],
+      [36, -22],
+      [67, -3],
+      [42, -42],
+      [37, -5],
+      [42, 35],
+      [-27, 62]
+    ],
+    [
+      [4975, 10802],
+      [53, 6],
+      [21, -43],
+      [87, -63],
+      [25, 49],
+      [105, 37],
+      [44, 45]
+    ],
+    [
+      [5310, 10833],
+      [-55, -58],
+      [9, -45],
+      [66, 3],
+      [25, -88],
+      [75, -17],
+      [-21, -104],
+      [29, -20],
+      [1, -73],
+      [-74, 29],
+      [10, -94]
+    ],
+    [
+      [5621, 11640],
+      [-14, -57],
+      [22, -39],
+      [-63, -47],
+      [-26, 22],
+      [-75, -30],
+      [-8, -43],
+      [-43, -5],
+      [-1, -98],
+      [-80, 37],
+      [-55, -20],
+      [-21, -51],
+      [-61, 11],
+      [-57, 69],
+      [-48, 4]
+    ],
+    [
+      [4838, 11506],
+      [-17, 144],
+      [-49, 29],
+      [-7, 41],
+      [53, 32]
+    ],
+    [
+      [5273, 10926],
+      [22, -64],
+      [-51, 2],
+      [29, 62]
+    ],
+    [
+      [5192, 10961],
+      [18, -84],
+      [100, -44]
+    ],
+    [
+      [6014, 11466],
+      [11, -28],
+      [-176, -26],
+      [-44, -36],
+      [-131, -77],
+      [-128, -60],
+      [17, 75],
+      [-59, 39],
+      [-57, -11],
+      [-34, -48],
+      [-65, -16],
+      [-106, -61],
+      [3, -58],
+      [-40, 1],
+      [-57, -144]
+    ],
+    [
+      [4202, 11518],
+      [8, -57],
+      [34, -43],
+      [48, -23],
+      [15, -73],
+      [64, -56],
+      [32, -185],
+      [91, -38],
+      [-11, -26],
+      [43, -47]
+    ]
+  ],
+  "transform": {
+    "scale": [0.001073088069254746, 0.0007855176853911107],
+    "translate": [6.630878925323543, 36.649860382080185]
+  },
+  "objects": {
+    "italy": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CH",
+            "NAME_0": "Italy",
+            "ID_1": 1,
+            "NAME_1": "Abruzzo",
+            "ID_2": 1,
+            "NAME_2": "Chieti",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[5, -3, 6, 7, 8, 9, 10]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-AQ",
+            "NAME_0": "Italy",
+            "ID_1": 1,
+            "NAME_1": "Abruzzo",
+            "ID_2": 2,
+            "NAME_2": "L'Aquila",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Aquila"
+          }
+        },
+        {
+          "arcs": [[11, -4, -6, 12]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PE",
+            "NAME_0": "Italy",
+            "ID_1": 1,
+            "NAME_1": "Abruzzo",
+            "ID_2": 3,
+            "NAME_2": "Pescara",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[13, -13, -11, 14, 15]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-TE",
+            "NAME_0": "Italy",
+            "ID_1": 1,
+            "NAME_1": "Abruzzo",
+            "ID_2": 4,
+            "NAME_2": "Teramo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[16, 17, 18, 19, 20, 21]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BA",
+            "NAME_0": "Italy",
+            "ID_1": 2,
+            "NAME_1": "Apulia",
+            "ID_2": 5,
+            "NAME_2": "Bari",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[22, -21, 23, 24]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BT",
+            "NAME_0": "Italy",
+            "ID_1": 2,
+            "NAME_1": "Apulia",
+            "ID_2": 6,
+            "NAME_2": "Barletta-Andria-Trani",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[25, 26, 27, -17]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BR",
+            "NAME_0": "Italy",
+            "ID_1": 2,
+            "NAME_1": "Apulia",
+            "ID_2": 7,
+            "NAME_2": "Brindisi",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-25, 28, 29, 30, 31, 32]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-FG",
+            "NAME_0": "Italy",
+            "ID_1": 2,
+            "NAME_1": "Apulia",
+            "ID_2": 8,
+            "NAME_2": "Foggia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[33, 34, -27]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-LE",
+            "NAME_0": "Italy",
+            "ID_1": 2,
+            "NAME_1": "Apulia",
+            "ID_2": 9,
+            "NAME_2": "Lecce",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-28, -35, 35, 36, -18]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-TA",
+            "NAME_0": "Italy",
+            "ID_1": 2,
+            "NAME_1": "Apulia",
+            "ID_2": 10,
+            "NAME_2": "Taranto",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Ionio|Tarent|Tarente"
+          }
+        },
+        {
+          "arcs": [[-37, 37, 38, 39, -19]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-MT",
+            "NAME_0": "Italy",
+            "ID_1": 3,
+            "NAME_1": "Basilicata",
+            "ID_2": 11,
+            "NAME_2": "Matera",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-20, -40, 40, 41, 42, 43, -29, -24]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PZ",
+            "NAME_0": "Italy",
+            "ID_1": 3,
+            "NAME_1": "Basilicata",
+            "ID_2": 12,
+            "NAME_2": "Potenza",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[44, 45, 46, 47, 48, 49]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CZ",
+            "NAME_0": "Italy",
+            "ID_1": 4,
+            "NAME_1": "Calabria",
+            "ID_2": 13,
+            "NAME_2": "Catanzaro",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[50, 51, -49, 52, -41, -39]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CS",
+            "NAME_0": "Italy",
+            "ID_1": 4,
+            "NAME_1": "Calabria",
+            "ID_2": 14,
+            "NAME_2": "Cosenza",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[53, -50, -52]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-KR",
+            "NAME_0": "Italy",
+            "ID_1": 4,
+            "NAME_1": "Calabria",
+            "ID_2": 15,
+            "NAME_2": "Crotone",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-46, 54, 55]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-RC",
+            "NAME_0": "Italy",
+            "ID_1": 4,
+            "NAME_1": "Calabria",
+            "ID_2": 16,
+            "NAME_2": "Reggio Di Calabria",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Reggio Calabria|Reggio de Calabre"
+          }
+        },
+        {
+          "arcs": [[-56, 56, -47]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-VV",
+            "NAME_0": "Italy",
+            "ID_1": 4,
+            "NAME_1": "Calabria",
+            "ID_2": 17,
+            "NAME_2": "Vibo Valentia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-44, 57, 58, 59, -30]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-AV",
+            "NAME_0": "Italy",
+            "ID_1": 5,
+            "NAME_1": "Campania",
+            "ID_2": 18,
+            "NAME_2": "Avellino",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-60, 60, 61, 62, -31]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BN",
+            "NAME_0": "Italy",
+            "ID_1": 5,
+            "NAME_1": "Campania",
+            "ID_2": 19,
+            "NAME_2": "Benevento",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Bénévent"
+          }
+        },
+        {
+          "arcs": [[63, -62, 64, 65, 66, 67, 68]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CE",
+            "NAME_0": "Italy",
+            "ID_1": 5,
+            "NAME_1": "Campania",
+            "ID_2": 20,
+            "NAME_2": "Caserta",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Caserte"
+          }
+        },
+        {
+          "arcs": [[[69]], [[70, 71, -65, -61, -59]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-NA",
+            "NAME_0": "Italy",
+            "ID_1": 5,
+            "NAME_1": "Campania",
+            "ID_2": 21,
+            "NAME_2": "Napoli",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Napels|Nápoles|Neapel"
+          }
+        },
+        {
+          "arcs": [[-43, 72, -71, -58]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-SA",
+            "NAME_0": "Italy",
+            "ID_1": 5,
+            "NAME_1": "Campania",
+            "ID_2": 22,
+            "NAME_2": "Salerno",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Salerne"
+          }
+        },
+        {
+          "arcs": [[73, 74, 75, 76, 77, 78]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BO",
+            "NAME_0": "Italy",
+            "ID_1": 6,
+            "NAME_1": "Emilia-Romagna",
+            "ID_2": 23,
+            "NAME_2": "Bologna",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Bologne|Bolonha|Bolonia"
+          }
+        },
+        {
+          "arcs": [[79, 80, -74, 81, 82, 83]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-FE",
+            "NAME_0": "Italy",
+            "ID_1": 6,
+            "NAME_1": "Emilia-Romagna",
+            "ID_2": 24,
+            "NAME_2": "Ferrara",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Ferrare"
+          }
+        },
+        {
+          "arcs": [[84, 85, 86, 87, 88, 89]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-FC",
+            "NAME_0": "Italy",
+            "ID_1": 6,
+            "NAME_1": "Emilia-Romagna",
+            "ID_2": 25,
+            "NAME_2": "Forli' - Cesena",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-82, -79, 90, 91, 92, 93]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-MO",
+            "NAME_0": "Italy",
+            "ID_1": 6,
+            "NAME_1": "Emilia-Romagna",
+            "ID_2": 26,
+            "NAME_2": "Modena",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Modène|Módena"
+          }
+        },
+        {
+          "arcs": [[94, 95, 96, 97, 98, 99, 100]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PR",
+            "NAME_0": "Italy",
+            "ID_1": 6,
+            "NAME_1": "Emilia-Romagna",
+            "ID_2": 27,
+            "NAME_2": "Parma",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Parme"
+          }
+        },
+        {
+          "arcs": [[-100, 101, 102, 103, 104, 105]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PC",
+            "NAME_0": "Italy",
+            "ID_1": 6,
+            "NAME_1": "Emilia-Romagna",
+            "ID_2": 28,
+            "NAME_2": "Piacenza",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Plaisance"
+          }
+        },
+        {
+          "arcs": [[106, -90, 107, -75, -81]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-RA",
+            "NAME_0": "Italy",
+            "ID_1": 6,
+            "NAME_1": "Emilia-Romagna",
+            "ID_2": 29,
+            "NAME_2": "Ravenna",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "R vena|Ravenne"
+          }
+        },
+        {
+          "arcs": [[-93, 108, 109, -96, 110]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-RE",
+            "NAME_0": "Italy",
+            "ID_1": 6,
+            "NAME_1": "Emilia-Romagna",
+            "ID_2": 30,
+            "NAME_2": "Reggio Nell'Emilia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Reggio d'Émilie"
+          }
+        },
+        {
+          "arcs": [[111, 112, 113, -86, 114]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-RN",
+            "NAME_0": "Italy",
+            "ID_1": 6,
+            "NAME_1": "Emilia-Romagna",
+            "ID_2": 31,
+            "NAME_2": "Rimini",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[115, 116, 117, 118]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-GO",
+            "NAME_0": "Italy",
+            "ID_1": 7,
+            "NAME_1": "Friuli-Venezia Giulia",
+            "ID_2": 32,
+            "NAME_2": "Gorizia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Görz"
+          }
+        },
+        {
+          "arcs": [[119, 120, 121, 122]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PN",
+            "NAME_0": "Italy",
+            "ID_1": 7,
+            "NAME_1": "Friuli-Venezia Giulia",
+            "ID_2": 33,
+            "NAME_2": "Pordenone",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-116, 123]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-TS",
+            "NAME_0": "Italy",
+            "ID_1": 7,
+            "NAME_1": "Friuli-Venezia Giulia",
+            "ID_2": 34,
+            "NAME_2": "Trieste",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Triest"
+          }
+        },
+        {
+          "arcs": [[-118, 124, 125, -123, 126, 127]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-UD",
+            "NAME_0": "Italy",
+            "ID_1": 7,
+            "NAME_1": "Friuli-Venezia Giulia",
+            "ID_2": 35,
+            "NAME_2": "Udine",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Friuli"
+          }
+        },
+        {
+          "arcs": [[128, -68, 129, 130, -8]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-FR",
+            "NAME_0": "Italy",
+            "ID_1": 8,
+            "NAME_1": "Lazio",
+            "ID_2": 36,
+            "NAME_2": "Frosinone",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-130, -67, 131, 132]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-LT",
+            "NAME_0": "Italy",
+            "ID_1": 8,
+            "NAME_1": "Lazio",
+            "ID_2": 37,
+            "NAME_2": "Latina",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Littoria"
+          }
+        },
+        {
+          "arcs": [[-15, -10, 133, 134, 135, 136, 137]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-RI",
+            "NAME_0": "Italy",
+            "ID_1": 8,
+            "NAME_1": "Lazio",
+            "ID_2": 38,
+            "NAME_2": "Rieti",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-9, -131, -133, 138, 139, -134]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-RM",
+            "NAME_0": "Italy",
+            "ID_1": 8,
+            "NAME_1": "Lazio",
+            "ID_2": 39,
+            "NAME_2": "Roma",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[140, -135, -140, 141, 142, 143]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-VT",
+            "NAME_0": "Italy",
+            "ID_1": 8,
+            "NAME_1": "Lazio",
+            "ID_2": 40,
+            "NAME_2": "Viterbo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Viterbe"
+          }
+        },
+        {
+          "arcs": [[-102, -99, 144, 145, 146, 147]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-GE",
+            "NAME_0": "Italy",
+            "ID_1": 9,
+            "NAME_1": "Liguria",
+            "ID_2": 41,
+            "NAME_2": "Genova",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Genoa"
+          }
+        },
+        {
+          "arcs": [[148, 149, 150]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-IM",
+            "NAME_0": "Italy",
+            "ID_1": 9,
+            "NAME_1": "Liguria",
+            "ID_2": 42,
+            "NAME_2": "Imperia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Porto Maurizio"
+          }
+        },
+        {
+          "arcs": [[151, 152, -145, -98]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-SP",
+            "NAME_0": "Italy",
+            "ID_1": 9,
+            "NAME_1": "Liguria",
+            "ID_2": 43,
+            "NAME_2": "La Spezia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Spezia"
+          }
+        },
+        {
+          "arcs": [[-147, 153, -149, 154, 155, 156]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-SV",
+            "NAME_0": "Italy",
+            "ID_1": 9,
+            "NAME_1": "Liguria",
+            "ID_2": 44,
+            "NAME_2": "Savona",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[157, 158, 159, 160, 161, 162]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BG",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 45,
+            "NAME_2": "Bergamo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Bergame"
+          }
+        },
+        {
+          "arcs": [[163, 164, 165, 166, -158, 167]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BS",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 46,
+            "NAME_2": "Brescia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[168, 169, 170, 171, 172]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CO",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 47,
+            "NAME_2": "Como",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Côme"
+          }
+        },
+        {
+          "arcs": [[-167, 173, -101, -106, 174, 175, -159]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CR",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 48,
+            "NAME_2": "Cremona",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Crémone"
+          }
+        },
+        {
+          "arcs": [[-162, 176, -169, 177]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-LC",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 49,
+            "NAME_2": "Lecco",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-175, -105, 178, 179]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-LO",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 50,
+            "NAME_2": "Lodi",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[180, -83, -94, -111, -95, -174, -166, 181]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-MN",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 51,
+            "NAME_2": "Mantua",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Mantoue|Mantova"
+          }
+        },
+        {
+          "arcs": [[182, -160, -176, -180, 183, 184, 185]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-MI",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 52,
+            "NAME_2": "Milano",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Milan"
+          }
+        },
+        {
+          "arcs": [[-161, -183, 186, -170, -177]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-MB",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 53,
+            "NAME_2": "Monza and Brianza",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Monza e Brianza"
+          }
+        },
+        {
+          "arcs": [[-179, -104, 187, 188, 189, -184]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PV",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 54,
+            "NAME_2": "Pavia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Pavie"
+          }
+        },
+        {
+          "arcs": [[190, 191, -168, -163, -178, -173, 192]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-SO",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 55,
+            "NAME_2": "Sondrio",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-171, -187, -186, 193, 194, 195]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-VA",
+            "NAME_0": "Italy",
+            "ID_1": 10,
+            "NAME_1": "Lombardia",
+            "ID_2": 56,
+            "NAME_2": "Varese",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[196, 197, 198, 199]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-AN",
+            "NAME_0": "Italy",
+            "ID_1": 11,
+            "NAME_1": "Marche",
+            "ID_2": 57,
+            "NAME_2": "Ancona",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Ancône"
+          }
+        },
+        {
+          "arcs": [[200, -16, -138, 201, 202, 203]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-AP",
+            "NAME_0": "Italy",
+            "ID_1": 11,
+            "NAME_1": "Marche",
+            "ID_2": 58,
+            "NAME_2": "Ascoli Piceno",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-204, 204, 205]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-FM",
+            "NAME_0": "Italy",
+            "ID_1": 11,
+            "NAME_1": "Marche",
+            "ID_2": 59,
+            "NAME_2": "Fermo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[206, -205, -203, 207, -197]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-MC",
+            "NAME_0": "Italy",
+            "ID_1": 11,
+            "NAME_1": "Marche",
+            "ID_2": 60,
+            "NAME_2": "Macerata",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-199, 208, 209, -87, -114, 210, -112, 211]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PU",
+            "NAME_0": "Italy",
+            "ID_1": 11,
+            "NAME_1": "Marche",
+            "ID_2": 61,
+            "NAME_2": "Pesaro E Urbino",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Pesaro-et-Urbino|Pesaro-Urbino|Pésaro y Urbino"
+          }
+        },
+        {
+          "arcs": [[-32, -63, -64, 212, -1, 213]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CB",
+            "NAME_0": "Italy",
+            "ID_1": 12,
+            "NAME_1": "Molise",
+            "ID_2": 62,
+            "NAME_2": "Campobasso",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-213, -69, -129, -7, -2]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-IS",
+            "NAME_0": "Italy",
+            "ID_1": 12,
+            "NAME_1": "Molise",
+            "ID_2": 63,
+            "NAME_2": "Isernia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-188, -103, -148, -157, 214, 215, 216]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-AL",
+            "NAME_0": "Italy",
+            "ID_1": 13,
+            "NAME_1": "Piemonte",
+            "ID_2": 64,
+            "NAME_2": "Alessandria",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Alejandr¡a|Alexandrie"
+          }
+        },
+        {
+          "arcs": [[-156, 217, 218, -215]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-AT",
+            "NAME_0": "Italy",
+            "ID_1": 13,
+            "NAME_1": "Piemonte",
+            "ID_2": 65,
+            "NAME_2": "Asti",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[219, 220, 221]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BI",
+            "NAME_0": "Italy",
+            "ID_1": 13,
+            "NAME_1": "Piemonte",
+            "ID_2": 66,
+            "NAME_2": "Biella",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Verceil"
+          }
+        },
+        {
+          "arcs": [[-155, -151, 222, 223, -218]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CN",
+            "NAME_0": "Italy",
+            "ID_1": 13,
+            "NAME_1": "Piemonte",
+            "ID_2": 67,
+            "NAME_2": "Cuneo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Coni"
+          }
+        },
+        {
+          "arcs": [[-194, -185, -190, 224, 225]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-NO",
+            "NAME_0": "Italy",
+            "ID_1": 13,
+            "NAME_1": "Piemonte",
+            "ID_2": 68,
+            "NAME_2": "Novara",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Novare"
+          }
+        },
+        {
+          "arcs": [[-220, 226, -216, -219, -224, 227, 228]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-TO",
+            "NAME_0": "Italy",
+            "ID_1": 13,
+            "NAME_1": "Piemonte",
+            "ID_2": 69,
+            "NAME_2": "Torino",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Torino|Turim"
+          }
+        },
+        {
+          "arcs": [[-195, -226, 229, 230, 231]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-VB",
+            "NAME_0": "Italy",
+            "ID_1": 13,
+            "NAME_1": "Piemonte",
+            "ID_2": 70,
+            "NAME_2": "Verbano-Cusio-Ossola",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Verbania"
+          }
+        },
+        {
+          "arcs": [[-225, -189, -217, -227, -222, 232, -230]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-VC",
+            "NAME_0": "Italy",
+            "ID_1": 13,
+            "NAME_1": "Piemonte",
+            "ID_2": 71,
+            "NAME_2": "Vercelli",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Verceil"
+          }
+        },
+        {
+          "arcs": [[233, 234, 235, 236, 237]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CA",
+            "NAME_0": "Italy",
+            "ID_1": 14,
+            "NAME_1": "Sardegna",
+            "ID_2": 72,
+            "NAME_2": "Cagliari",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[238]], [[239]], [[-236, 240, 241]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CI",
+            "NAME_0": "Italy",
+            "ID_1": 14,
+            "NAME_1": "Sardegna",
+            "ID_2": 73,
+            "NAME_2": "Carbonia-Iglesias",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-237, -242, 242, 243, 244]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-VS",
+            "NAME_0": "Italy",
+            "ID_1": 14,
+            "NAME_1": "Sardegna",
+            "ID_2": 74,
+            "NAME_2": "Medio Campidano",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[245, -238, -245, 246, 247, 248, 249]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-NU",
+            "NAME_0": "Italy",
+            "ID_1": 14,
+            "NAME_1": "Sardegna",
+            "ID_2": 75,
+            "NAME_2": "Nuoro",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-234, -246, 250]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-OG",
+            "NAME_0": "Italy",
+            "ID_1": 14,
+            "NAME_1": "Sardegna",
+            "ID_2": 76,
+            "NAME_2": "Ogliastra",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[-249, 251, 252]], [[253]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-OT",
+            "NAME_0": "Italy",
+            "ID_1": 14,
+            "NAME_1": "Sardegna",
+            "ID_2": 77,
+            "NAME_2": "Olbia-Tempio",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-247, -244, 254, 255]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-OR",
+            "NAME_0": "Italy",
+            "ID_1": 14,
+            "NAME_1": "Sardegna",
+            "ID_2": 78,
+            "NAME_2": "Oristano",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[-252, -248, -256, 256]], [[257]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-SS",
+            "NAME_0": "Italy",
+            "ID_1": 14,
+            "NAME_1": "Sardegna",
+            "ID_2": 79,
+            "NAME_2": "Sassari",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[258, 259, 260, 261]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-AG",
+            "NAME_0": "Italy",
+            "ID_1": 15,
+            "NAME_1": "Sicily",
+            "ID_2": 80,
+            "NAME_2": "Agrigento",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Agrigente|Girgenti"
+          }
+        },
+        {
+          "arcs": [[[262]], [[263, 264, 265, 266, -259, 267]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CL",
+            "NAME_0": "Italy",
+            "ID_1": 15,
+            "NAME_1": "Sicily",
+            "ID_2": 81,
+            "NAME_2": "Caltanissetta",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[268, 269, 270, -265, 271, 272]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-CT",
+            "NAME_0": "Italy",
+            "ID_1": 15,
+            "NAME_1": "Sicily",
+            "ID_2": 82,
+            "NAME_2": "Catania",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Catane"
+          }
+        },
+        {
+          "arcs": [[-272, -264, 273, 274]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-EN",
+            "NAME_0": "Italy",
+            "ID_1": 15,
+            "NAME_1": "Sicily",
+            "ID_2": 83,
+            "NAME_2": "Enna",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[-273, -275, 275, 276]], [[277]], [[278]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-ME",
+            "NAME_0": "Italy",
+            "ID_1": 15,
+            "NAME_1": "Sicily",
+            "ID_2": 84,
+            "NAME_2": "Messina",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Messine"
+          }
+        },
+        {
+          "arcs": [[-276, -274, -268, -262, 279, 280], [-263]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PA",
+            "NAME_0": "Italy",
+            "ID_1": 15,
+            "NAME_1": "Sicily",
+            "ID_2": 85,
+            "NAME_2": "Palermo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Palerme"
+          }
+        },
+        {
+          "arcs": [[281, -266, -271, 282]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-RG",
+            "NAME_0": "Italy",
+            "ID_1": 15,
+            "NAME_1": "Sicily",
+            "ID_2": 86,
+            "NAME_2": "Ragusa",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Raguse"
+          }
+        },
+        {
+          "arcs": [[283, -283, -270]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-SR",
+            "NAME_0": "Italy",
+            "ID_1": 15,
+            "NAME_1": "Sicily",
+            "ID_2": 87,
+            "NAME_2": "Syracuse",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Siracusa|Syrakus"
+          }
+        },
+        {
+          "arcs": [[[284]], [[285]], [[-280, -261, 286]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-TP",
+            "NAME_0": "Italy",
+            "ID_1": 15,
+            "NAME_1": "Sicily",
+            "ID_2": 88,
+            "NAME_2": "Trapani",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-210, 287, 288, 289, -88]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-AR",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 89,
+            "NAME_2": "Arezzo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-108, -89, -290, 290, 291, 292, 293, 294, -76]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-FI",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 90,
+            "NAME_2": "Florence",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Firenze|Florenca|Florencia|Florenz"
+          }
+        },
+        {
+          "arcs": [[-143, 295, 296, 297, 298]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-GR",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 91,
+            "NAME_2": "Grosseto",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[299]], [[-297, 300, 301]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-LI",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 92,
+            "NAME_2": "Livorno",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Leghorn|Liorna|Livourne"
+          }
+        },
+        {
+          "arcs": [[-92, 302, -293, 303, 304, 305, -109]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-LU",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 93,
+            "NAME_2": "Lucca",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Lucques"
+          }
+        },
+        {
+          "arcs": [[-110, -306, 306, -152, -97]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-MS",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 94,
+            "NAME_2": "Massa Carrara",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Apuania|Massa-Carrare|Massa e Carrara"
+          }
+        },
+        {
+          "arcs": [[-292, 307, -298, -302, 308, -304]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PI",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 95,
+            "NAME_2": "Pisa",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Pise"
+          }
+        },
+        {
+          "arcs": [[-78, 309, -294, -303, -91]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PT",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 96,
+            "NAME_2": "Pistoia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-295, -310, -77]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PO",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 97,
+            "NAME_2": "Prato",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[310, 311, -144, -299, -308, -291, -289]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-SI",
+            "NAME_0": "Italy",
+            "ID_1": 16,
+            "NAME_1": "Toscana",
+            "ID_2": 98,
+            "NAME_2": "Siena",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Sienne"
+          }
+        },
+        {
+          "arcs": [[312, 313, -191, 314]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BZ",
+            "NAME_0": "Italy",
+            "ID_1": 17,
+            "NAME_1": "Trentino-Alto Adige",
+            "ID_2": 99,
+            "NAME_2": "Bolzano",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Bozen|Südtirol|Alto Adige"
+          }
+        },
+        {
+          "arcs": [[315, 316, 317, -164, -192, -314]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-TN",
+            "NAME_0": "Italy",
+            "ID_1": 17,
+            "NAME_1": "Trentino-Alto Adige",
+            "ID_2": 100,
+            "NAME_2": "Trento",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Trente|Trient"
+          }
+        },
+        {
+          "arcs": [[-198, -208, -202, -137, 318, -311, -288, -209]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PG",
+            "NAME_0": "Italy",
+            "ID_1": 18,
+            "NAME_1": "Umbria",
+            "ID_2": 101,
+            "NAME_2": "Perugia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Pérouse|Perúgia"
+          }
+        },
+        {
+          "arcs": [[-136, -141, -312, -319]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-TR",
+            "NAME_0": "Italy",
+            "ID_1": 18,
+            "NAME_1": "Umbria",
+            "ID_2": 102,
+            "NAME_2": "Terni",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-231, -233, -221, -229, 319]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-AO",
+            "NAME_0": "Italy",
+            "ID_1": 19,
+            "NAME_1": "Valle d'Aosta",
+            "ID_2": 103,
+            "NAME_2": "Aosta",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Aoste|Val d'Aosta, Valle d'Aosta"
+          }
+        },
+        {
+          "arcs": [[-127, -122, 320, 321, -316, -313, 322]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-BL",
+            "NAME_0": "Italy",
+            "ID_1": 20,
+            "NAME_1": "Veneto",
+            "ID_2": 104,
+            "NAME_2": "Belluno",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[323, 324, 325, 326, 327, 328, 329]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-PD",
+            "NAME_0": "Italy",
+            "ID_1": 20,
+            "NAME_1": "Veneto",
+            "ID_2": 105,
+            "NAME_2": "Padua",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Padoue|Padova"
+          }
+        },
+        {
+          "arcs": [[-84, -181, 330, -327, 331, 332]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-RO",
+            "NAME_0": "Italy",
+            "ID_1": 20,
+            "NAME_1": "Veneto",
+            "ID_2": 106,
+            "NAME_2": "Rovigo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-121, 333, -330, 334, -321]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-TV",
+            "NAME_0": "Italy",
+            "ID_1": 20,
+            "NAME_1": "Veneto",
+            "ID_2": 107,
+            "NAME_2": "Treviso",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Trévise"
+          }
+        },
+        {
+          "arcs": [[[335]], [[-332, -326, 336]], [[-126, 337, -324, -334, -120]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-VE",
+            "NAME_0": "Italy",
+            "ID_1": 20,
+            "NAME_1": "Veneto",
+            "ID_2": 108,
+            "NAME_2": "Venezia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Venecia|Venedig|Veneza|Venezia|Venise|"
+          }
+        },
+        {
+          "arcs": [[338, -328, -331, -182, -165, -318]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-VR",
+            "NAME_0": "Italy",
+            "ID_1": 20,
+            "NAME_1": "Veneto",
+            "ID_2": 109,
+            "NAME_2": "Verona",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Vérone"
+          }
+        },
+        {
+          "arcs": [[-322, -335, -329, -339, -317]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 112,
+            "ISO": "IT-VI",
+            "NAME_0": "Italy",
+            "ID_1": 20,
+            "NAME_1": "Veneto",
+            "ID_2": 110,
+            "NAME_2": "Vicenza",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Vicence"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/japan-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/japan-topo.json
new file mode 100644
index 0000000..5057ec4
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/japan-topo.json
@@ -0,0 +1,7724 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [28965, 25896],
+      [-20, -106],
+      [52, -51],
+      [0, -49],
+      [77, 26],
+      [49, -1],
+      [43, 43],
+      [115, 7],
+      [10, -21],
+      [74, -4],
+      [22, -38],
+      [84, 26]
+    ],
+    [
+      [29471, 25728],
+      [4, -41],
+      [-35, -54],
+      [45, -25],
+      [-17, -54],
+      [-34, -24],
+      [8, -45],
+      [-47, -23],
+      [-27, -61],
+      [-54, -43],
+      [-66, -88],
+      [-3, -102],
+      [-55, -60],
+      [-38, -12],
+      [-35, -114],
+      [-84, -51],
+      [-19, -43],
+      [-43, 5],
+      [-116, -41],
+      [-34, -63],
+      [8, -48],
+      [-32, -26],
+      [-4, -50],
+      [30, -135],
+      [-10, -38]
+    ],
+    [
+      [28813, 24492],
+      [-164, -31],
+      [-139, -35],
+      [-264, -83],
+      [-120, -47],
+      [-111, 0],
+      [-93, -26],
+      [-42, 0],
+      [94, 185],
+      [109, -55],
+      [51, 22],
+      [121, 77],
+      [116, 44],
+      [-5, 46],
+      [42, 32],
+      [72, 5],
+      [4, 88],
+      [15, 23],
+      [-38, 54],
+      [-44, 18],
+      [-53, -18],
+      [-74, 33],
+      [-27, -36],
+      [-38, 4],
+      [-31, -48],
+      [-49, -6],
+      [-72, 21],
+      [-55, -35],
+      [-40, 23],
+      [-77, -17],
+      [-86, 101],
+      [-53, 24],
+      [-44, 57],
+      [-39, -203],
+      [68, -69],
+      [30, -13],
+      [18, -64],
+      [-61, -13],
+      [-110, 48],
+      [-53, 39],
+      [-40, 63],
+      [28, 62],
+      [23, 105],
+      [-19, 56],
+      [-65, 76],
+      [-9, 162],
+      [50, 77],
+      [44, 96],
+      [51, 60],
+      [-32, 53],
+      [-74, -137],
+      [-77, -3],
+      [-13, -32],
+      [-114, 34]
+    ],
+    [
+      [27324, 25309],
+      [-11, 16],
+      [-53, 192],
+      [-48, 21],
+      [-18, 38]
+    ],
+    [
+      [27194, 25576],
+      [16, 81],
+      [6, 130],
+      [66, 104],
+      [26, 23],
+      [77, 158],
+      [55, 10],
+      [74, -25],
+      [84, 36],
+      [83, 12],
+      [82, 42],
+      [12, 44],
+      [41, -13],
+      [53, -66],
+      [77, -36],
+      [-2, -62],
+      [33, -5],
+      [7, -61],
+      [27, -31],
+      [82, -1],
+      [108, -60],
+      [42, -39],
+      [106, 39],
+      [49, 47],
+      [63, 2],
+      [56, -39],
+      [12, -30],
+      [59, 4],
+      [24, -38],
+      [99, -48],
+      [125, 88],
+      [48, 47],
+      [81, 7]
+    ],
+    [
+      [33773, 36978],
+      [129, -83],
+      [21, -36],
+      [-4, -134],
+      [-39, -91],
+      [-64, -39],
+      [-122, 30],
+      [-58, 42],
+      [41, 96],
+      [-23, 51],
+      [41, 33],
+      [23, 51],
+      [30, 14],
+      [25, 66]
+    ],
+    [
+      [35686, 37328],
+      [-40, -52],
+      [-43, -6],
+      [-52, -82],
+      [-47, -31],
+      [39, -43],
+      [-22, -41],
+      [8, -99],
+      [-53, -41],
+      [13, -70],
+      [-13, -89],
+      [-2, -113],
+      [24, -91],
+      [38, -79],
+      [-59, -42],
+      [-49, 43],
+      [-82, -40],
+      [7, -96],
+      [113, -59],
+      [-5, -27],
+      [-78, -106],
+      [-39, -13],
+      [24, -65],
+      [42, -40],
+      [13, -98],
+      [-29, -41],
+      [-8, -50],
+      [-41, -14],
+      [-61, -78],
+      [-49, -32],
+      [27, -43],
+      [-54, -101],
+      [-2, -42],
+      [-66, -56],
+      [5, -73],
+      [-46, -11],
+      [-5, -59],
+      [39, -9],
+      [26, -84],
+      [34, -29],
+      [-15, -84],
+      [53, -68],
+      [60, -31],
+      [61, -60],
+      [-34, -28],
+      [-8, -48],
+      [65, -19],
+      [-88, -124],
+      [27, -20],
+      [-28, -89],
+      [97, -34],
+      [15, -36],
+      [-29, -63],
+      [-51, -63],
+      [-9, -37],
+      [18, -68]
+    ],
+    [
+      [35327, 34354],
+      [-92, -31],
+      [-24, -40],
+      [-60, -24],
+      [-61, -64],
+      [-93, -6],
+      [-84, -27],
+      [-27, 17]
+    ],
+    [
+      [34886, 34179],
+      [-24, 40],
+      [-66, -10],
+      [-45, 48],
+      [-42, 11],
+      [-23, 58],
+      [-7, 70],
+      [-29, 36],
+      [-106, 7],
+      [-31, 45],
+      [-67, 47],
+      [-28, -36],
+      [-116, 30],
+      [-44, -11],
+      [-65, 20],
+      [1, 52],
+      [-104, -15],
+      [-101, 73],
+      [-50, 8],
+      [-23, 61],
+      [2, 46],
+      [-98, -22],
+      [-59, -36],
+      [-231, 31]
+    ],
+    [
+      [33530, 34732],
+      [26, 31],
+      [43, 105],
+      [-23, 81],
+      [42, 83],
+      [3, 62],
+      [25, 29],
+      [76, 13],
+      [37, 62],
+      [62, 156],
+      [54, 239],
+      [25, 171],
+      [15, 209],
+      [-11, 157],
+      [-41, 90],
+      [7, 49],
+      [-34, 86],
+      [-40, 61],
+      [-109, 93],
+      [46, 70],
+      [84, -23],
+      [40, -65],
+      [25, 1],
+      [14, 86],
+      [-20, 37],
+      [39, 53],
+      [15, 66],
+      [4, 120],
+      [-34, 67],
+      [-136, 62],
+      [-57, -88],
+      [-19, -49],
+      [-42, -31],
+      [28, -39],
+      [-22, -42],
+      [-15, -80],
+      [48, -28],
+      [22, -80],
+      [-27, -34],
+      [-76, 25],
+      [-84, -12],
+      [-24, -23],
+      [15, -49],
+      [-80, -19],
+      [-57, 22],
+      [-70, -25],
+      [-38, 53],
+      [-3, 58],
+      [-37, 14],
+      [-29, 71],
+      [-15, 87],
+      [59, 5],
+      [83, -15],
+      [65, -42],
+      [103, 39],
+      [112, 109],
+      [79, 126],
+      [76, 190],
+      [21, 127],
+      [16, 10],
+      [36, 173],
+      [5, 142],
+      [-23, 42],
+      [-62, 30],
+      [-5, 25],
+      [-65, 38],
+      [-20, 35]
+    ],
+    [
+      [33662, 37748],
+      [126, 8],
+      [39, -30],
+      [26, 78],
+      [57, 28],
+      [75, -25],
+      [22, -44],
+      [127, 2],
+      [103, -15],
+      [49, 21],
+      [87, 13],
+      [86, -16],
+      [50, 89],
+      [61, 16],
+      [71, -6],
+      [27, -75],
+      [80, 0],
+      [50, -46],
+      [44, 3],
+      [50, -27],
+      [73, 39],
+      [61, -29],
+      [44, -46],
+      [87, 36],
+      [13, 20],
+      [76, 4],
+      [73, 55],
+      [71, -9],
+      [11, 78],
+      [75, 55],
+      [46, -24],
+      [-1, -179],
+      [108, 5],
+      [107, 16],
+      [28, -165],
+      [-42, -24],
+      [-56, -133],
+      [20, -93]
+    ],
+    [
+      [32509, 40272],
+      [44, -1],
+      [-6, -49],
+      [-68, -14],
+      [-9, 45],
+      [39, 19]
+    ],
+    [
+      [37125, 37794],
+      [-28, -35],
+      [-141, -54],
+      [-29, -38],
+      [0, -51],
+      [-90, -61],
+      [-125, 69],
+      [-68, -8],
+      [-113, -72],
+      [-60, -26],
+      [-33, 70],
+      [-35, 26],
+      [-62, -57],
+      [-42, 5],
+      [-132, -97],
+      [-42, 4],
+      [-72, -22],
+      [-75, -45],
+      [15, -44],
+      [-65, -22],
+      [-39, -43],
+      [-102, -35],
+      [-55, 9],
+      [-46, 61]
+    ],
+    [
+      [33662, 37748],
+      [26, 162],
+      [-19, 125],
+      [-44, 76],
+      [-101, -1],
+      [-14, 67],
+      [128, 70],
+      [80, 89],
+      [75, 131],
+      [127, 62],
+      [83, -55],
+      [80, 12],
+      [92, 70],
+      [94, 15],
+      [42, 54],
+      [59, 138],
+      [43, 182],
+      [13, 180],
+      [40, -52],
+      [34, -12],
+      [30, 71],
+      [-100, 64],
+      [-8, 80],
+      [-72, 72],
+      [75, 58],
+      [29, 97],
+      [-7, 109],
+      [23, 56],
+      [93, -53],
+      [81, -97],
+      [58, -29],
+      [91, 28],
+      [39, 58],
+      [42, 17],
+      [117, -39],
+      [72, -85],
+      [-24, -172],
+      [42, -230],
+      [70, -285],
+      [32, -55],
+      [61, -50],
+      [109, 0],
+      [116, 87],
+      [51, 86],
+      [-4, 78],
+      [-18, 32],
+      [35, 123],
+      [34, 0],
+      [54, -37],
+      [51, 0],
+      [77, -90],
+      [-18, -49],
+      [61, 1],
+      [60, -37],
+      [45, -4],
+      [36, -61],
+      [42, -33],
+      [91, 18],
+      [73, 79],
+      [63, 119],
+      [41, 146],
+      [17, 185],
+      [48, 59],
+      [13, 55],
+      [-28, 89],
+      [-66, 107],
+      [-84, 77],
+      [-57, 1],
+      [-95, -150],
+      [-78, -31],
+      [-41, -40],
+      [-75, 31],
+      [-71, 6],
+      [-61, -55],
+      [-142, -18],
+      [-85, -40],
+      [-36, -43],
+      [-64, 1],
+      [-27, 23],
+      [-10, 125],
+      [42, 80],
+      [-12, 52],
+      [33, 61],
+      [41, 137],
+      [34, 155],
+      [65, 71],
+      [74, 117],
+      [12, 40],
+      [-23, 42],
+      [53, 27],
+      [55, -30],
+      [56, -61],
+      [81, -29],
+      [82, 0],
+      [76, -41],
+      [80, -70],
+      [98, -108],
+      [92, -55],
+      [67, -22],
+      [77, -7],
+      [63, 17],
+      [105, 48],
+      [112, 101],
+      [19, -78],
+      [-45, -100],
+      [-68, -256],
+      [-27, -138],
+      [9, -100],
+      [-4, -103],
+      [-17, -185],
+      [4, -161],
+      [19, -206],
+      [32, -207],
+      [69, -273],
+      [74, -180],
+      [136, -70],
+      [25, 30],
+      [105, -86],
+      [37, -60],
+      [93, -74]
+    ],
+    [
+      [35513, 26898],
+      [-15, -41],
+      [-97, 26],
+      [-124, -45],
+      [-106, 19],
+      [-98, -37],
+      [-59, -38],
+      [-142, -110],
+      [-94, -89],
+      [-90, -115],
+      [-63, -104],
+      [-55, -160],
+      [-8, -108],
+      [10, -89],
+      [37, -66],
+      [-26, -60],
+      [8, -94],
+      [-23, -79],
+      [-38, -54],
+      [-36, 11],
+      [-40, -38],
+      [-20, -51],
+      [-55, 13],
+      [-16, -34],
+      [-84, -5],
+      [-21, -39],
+      [-59, -9],
+      [-75, 24],
+      [-86, -10],
+      [-34, -27],
+      [-4, -40],
+      [-69, -79],
+      [-34, 8],
+      [-115, -73],
+      [-35, -41],
+      [-39, -102],
+      [5, -57],
+      [-41, -56],
+      [-80, -30],
+      [-114, -4],
+      [-38, 19],
+      [2, 52],
+      [-88, 54],
+      [-43, 4],
+      [-9, 46],
+      [62, -12],
+      [67, 13],
+      [19, 29],
+      [58, 13],
+      [-12, 62],
+      [-58, 33],
+      [17, 32],
+      [-25, 32],
+      [46, 48],
+      [-35, 61],
+      [27, 39],
+      [-38, 55],
+      [-6, 52],
+      [16, 50],
+      [92, 57],
+      [-5, 54],
+      [-41, 58],
+      [-5, 48],
+      [-52, 56],
+      [8, 65],
+      [57, 30],
+      [100, 25],
+      [7, 48],
+      [-18, 77],
+      [47, 40],
+      [56, 5],
+      [35, 61],
+      [46, 0],
+      [36, 25],
+      [105, 147],
+      [64, 27],
+      [-21, 98],
+      [-136, 138],
+      [-53, -5],
+      [-5, 51],
+      [-64, -12],
+      [-45, 66]
+    ],
+    [
+      [33648, 26856],
+      [-25, 55],
+      [-43, 50],
+      [-5, 80],
+      [-35, 30]
+    ],
+    [
+      [33540, 27071],
+      [35, 25],
+      [0, 74],
+      [23, 53],
+      [-51, 114],
+      [-57, 65],
+      [-61, 127],
+      [-5, 99],
+      [-45, 46],
+      [-27, 87]
+    ],
+    [
+      [33352, 27761],
+      [42, -2],
+      [34, -80],
+      [109, -104],
+      [37, -70],
+      [90, -40],
+      [3, -53],
+      [122, -81],
+      [34, 3],
+      [104, -58],
+      [109, -27],
+      [59, -69],
+      [123, 41],
+      [65, -12],
+      [60, 38],
+      [80, -22],
+      [87, 78],
+      [80, 26],
+      [42, -6],
+      [80, 30],
+      [108, -50],
+      [92, 4],
+      [114, -92],
+      [124, -26],
+      [43, -28],
+      [69, -117],
+      [107, -73],
+      [144, -73]
+    ],
+    [
+      [19228, 22959],
+      [-16, -14],
+      [2, -94],
+      [-19, -20],
+      [-83, -5],
+      [-9, 40],
+      [125, 93]
+    ],
+    [
+      [21106, 23032],
+      [33, -26],
+      [95, -13],
+      [61, -33]
+    ],
+    [
+      [21295, 22960],
+      [-29, -66],
+      [27, -48],
+      [0, -101],
+      [-22, -60],
+      [-35, -28]
+    ],
+    [
+      [21236, 22657],
+      [-59, -16],
+      [-47, 16],
+      [-48, -33],
+      [-51, 33],
+      [-38, -21],
+      [-23, -41],
+      [-57, -59],
+      [-52, 17],
+      [-66, -6],
+      [-40, 14],
+      [-50, -32],
+      [-80, 13],
+      [-52, -40],
+      [-76, 35],
+      [-40, -14],
+      [-22, -71],
+      [-70, -29],
+      [-54, 32],
+      [-26, -68],
+      [-37, -26],
+      [-2, -51],
+      [-76, -88],
+      [-28, -81],
+      [-61, -10],
+      [-15, -40],
+      [19, -62],
+      [-47, -32],
+      [-19, -46],
+      [29, -28],
+      [4, -50],
+      [-36, -27],
+      [-58, -87],
+      [-1, -26],
+      [-120, -33],
+      [-164, 10],
+      [-55, 15],
+      [-73, -40],
+      [35, -31],
+      [16, -92],
+      [35, -19],
+      [23, -71],
+      [45, -14],
+      [35, -57],
+      [-12, -57],
+      [-81, -44],
+      [-121, -42],
+      [-31, -50],
+      [-18, -113],
+      [-44, -2],
+      [-43, -80],
+      [-59, -70],
+      [-68, 40],
+      [-77, 62],
+      [-14, -28],
+      [27, -86],
+      [68, -55],
+      [12, -52],
+      [-23, -68],
+      [41, -58],
+      [15, -148],
+      [-6, -48],
+      [-41, -11],
+      [-6, -37]
+    ],
+    [
+      [19253, 20454],
+      [-38, 10],
+      [-69, -28],
+      [-31, 20],
+      [-3, 41],
+      [-154, 20],
+      [27, -68],
+      [-18, -38],
+      [-81, 0],
+      [-11, 72],
+      [48, 20],
+      [-28, 43],
+      [6, 41],
+      [53, -8],
+      [-19, 74],
+      [-70, 94],
+      [24, 66],
+      [-28, 27],
+      [54, 70],
+      [12, 39],
+      [-85, 10],
+      [-42, 39],
+      [15, 63],
+      [95, -48],
+      [47, 112],
+      [56, 6],
+      [12, 38],
+      [-67, 60],
+      [-49, 25],
+      [-13, 42],
+      [53, 42],
+      [-82, 28],
+      [-88, -34],
+      [-106, 49],
+      [15, 30],
+      [63, 36],
+      [-36, 28],
+      [-22, 53],
+      [31, 17],
+      [-22, 52],
+      [61, 58],
+      [-1, 35],
+      [-72, 9],
+      [-55, 22],
+      [-88, 2],
+      [-48, -60],
+      [-53, -14],
+      [-34, -36],
+      [-110, -32],
+      [-72, -82],
+      [-75, -32],
+      [16, 66],
+      [-64, 15],
+      [78, 54],
+      [116, 65],
+      [84, -11],
+      [32, 47],
+      [50, 8],
+      [175, 98],
+      [62, 46],
+      [75, 39],
+      [21, 50],
+      [97, 113],
+      [234, 101],
+      [116, 95],
+      [38, 95],
+      [44, 39],
+      [-20, 64],
+      [-1, 70],
+      [23, 72],
+      [-5, 61],
+      [25, 67],
+      [43, -8],
+      [43, 19],
+      [26, 81],
+      [2, 66],
+      [25, 72],
+      [32, 7],
+      [119, 106],
+      [121, 23],
+      [25, 66],
+      [-16, 51],
+      [60, 18],
+      [57, -48],
+      [48, -76],
+      [31, -15],
+      [90, -203],
+      [68, -78],
+      [49, -2],
+      [2, -47],
+      [118, 55],
+      [93, 18],
+      [33, 25],
+      [10, 41],
+      [60, -4],
+      [118, 29],
+      [21, -28],
+      [71, 26],
+      [74, -7],
+      [121, -42],
+      [57, 9],
+      [48, 29],
+      [-4, 41],
+      [110, 87]
+    ],
+    [
+      [19996, 23388],
+      [59, -9],
+      [67, -78],
+      [-78, -58],
+      [-36, -46],
+      [-46, -10],
+      [-1, 66],
+      [42, 51],
+      [-40, 45],
+      [33, 39]
+    ],
+    [
+      [20142, 23478],
+      [30, -91],
+      [-85, -6],
+      [-48, 80],
+      [73, 26],
+      [30, -9]
+    ],
+    [
+      [20227, 23581],
+      [25, -54],
+      [-67, -32],
+      [1, 54],
+      [41, 32]
+    ],
+    [
+      [20379, 23607],
+      [15, -23],
+      [-58, -56],
+      [-20, 28],
+      [63, 51]
+    ],
+    [
+      [19958, 23621],
+      [21, -7],
+      [52, -92],
+      [-9, -92],
+      [-94, -10],
+      [-85, -43],
+      [-25, 44],
+      [16, 31],
+      [69, 2],
+      [9, 57],
+      [-27, 86],
+      [73, 24]
+    ],
+    [
+      [26348, 28224],
+      [58, -73],
+      [63, -20],
+      [48, -58],
+      [25, -118],
+      [42, -35],
+      [91, 11],
+      [65, -72],
+      [48, -4],
+      [35, 39],
+      [103, -16],
+      [38, 17],
+      [77, -55],
+      [45, -48],
+      [64, -36],
+      [24, -59],
+      [78, 11],
+      [112, 35]
+    ],
+    [
+      [27364, 27743],
+      [22, -47],
+      [-50, -35],
+      [-25, -132],
+      [50, -35],
+      [-5, -50],
+      [79, -27],
+      [-12, -46],
+      [76, -72],
+      [19, -94],
+      [-63, -44],
+      [-6, -52],
+      [-35, -35],
+      [-36, 27],
+      [-75, -12],
+      [-34, -32],
+      [-168, -8],
+      [-51, 17],
+      [-49, -41],
+      [-82, 20],
+      [-64, -47],
+      [-23, 23],
+      [-107, -2],
+      [-98, 45],
+      [-109, -50],
+      [-1, -93],
+      [-33, -66],
+      [-67, -91]
+    ],
+    [
+      [26417, 26764],
+      [-151, 59],
+      [-30, 31],
+      [-46, -14],
+      [-53, -63],
+      [32, -29],
+      [19, -72],
+      [33, -67],
+      [-14, -71],
+      [-111, 30],
+      [-12, -63],
+      [-73, -58],
+      [-80, 7],
+      [-46, -83],
+      [-46, -10],
+      [-77, 74],
+      [-46, -83],
+      [-21, -127],
+      [-38, -55],
+      [-57, -27],
+      [-35, 39],
+      [-66, 0],
+      [-6, -48],
+      [-37, -10],
+      [-45, -71]
+    ],
+    [
+      [25411, 26053],
+      [-100, -2],
+      [-37, -22],
+      [-152, 56],
+      [-174, 18],
+      [-13, 84],
+      [-41, 20],
+      [-91, 96],
+      [30, 96],
+      [-53, 40],
+      [42, 86]
+    ],
+    [
+      [24822, 26525],
+      [3, -44],
+      [54, -30],
+      [27, -70],
+      [36, -13],
+      [84, 9],
+      [110, 102],
+      [20, -65],
+      [-31, -44],
+      [55, -22],
+      [91, 30],
+      [70, -1],
+      [31, 87],
+      [-68, -24],
+      [0, 46],
+      [-52, 21],
+      [47, 46],
+      [70, -6],
+      [17, -56],
+      [34, 16],
+      [42, -53],
+      [42, 24],
+      [14, 36],
+      [61, 62],
+      [8, 72],
+      [72, 11],
+      [33, -14],
+      [106, 28],
+      [39, 50],
+      [-45, 30],
+      [28, 68],
+      [-15, 60],
+      [47, 85],
+      [51, 35],
+      [50, -135],
+      [-38, -56],
+      [60, -57],
+      [35, 11],
+      [12, 94],
+      [38, 52],
+      [3, 121],
+      [-69, 120],
+      [-140, 136],
+      [7, 105],
+      [-71, 86],
+      [-8, 28],
+      [30, 52],
+      [39, 24],
+      [36, 61],
+      [54, 143],
+      [31, 51],
+      [80, 62],
+      [-3, 23],
+      [85, 131],
+      [-25, 67],
+      [85, 1],
+      [89, 51],
+      [65, 52]
+    ],
+    [
+      [14865, 22740],
+      [-34, -64],
+      [-40, 13],
+      [-6, 40],
+      [80, 11]
+    ],
+    [
+      [16326, 22029],
+      [-18, -52],
+      [27, -49],
+      [-3, -52],
+      [-33, -29],
+      [13, -45],
+      [-53, -13],
+      [-139, 2],
+      [-98, 27],
+      [-93, -23],
+      [-99, -65],
+      [-6, -29],
+      [-57, -41],
+      [-17, -49],
+      [-13, -114],
+      [-50, -12],
+      [-17, -84],
+      [29, -93],
+      [-14, -63],
+      [-52, -26],
+      [-12, -38],
+      [36, -18],
+      [-3, -60],
+      [79, -47],
+      [-15, -88],
+      [-28, -73],
+      [-35, -25]
+    ],
+    [
+      [15655, 20870],
+      [-28, 0],
+      [-144, 62],
+      [-48, 49],
+      [-129, -14],
+      [-22, -92],
+      [-85, 0],
+      [-65, 17],
+      [-33, -52],
+      [-74, -62],
+      [-56, -33],
+      [31, -82],
+      [-13, -23],
+      [-79, -9],
+      [-136, 16]
+    ],
+    [
+      [14774, 20647],
+      [43, 54],
+      [5, 53],
+      [-23, 75],
+      [-32, 49],
+      [-50, 31],
+      [2, 42],
+      [-37, 20]
+    ],
+    [
+      [14682, 20971],
+      [17, 121],
+      [59, 102],
+      [90, 58],
+      [96, 82],
+      [51, 84],
+      [51, -3],
+      [9, 52],
+      [2, 126],
+      [-8, 43],
+      [-42, 20],
+      [-93, -34],
+      [-81, -83],
+      [-63, 70],
+      [-77, 17],
+      [-54, 42],
+      [-64, 23],
+      [-53, 40],
+      [-47, -21],
+      [-86, 24],
+      [-70, -31],
+      [-126, 19],
+      [-16, -14],
+      [-123, 2]
+    ],
+    [
+      [14054, 21710],
+      [26, 63],
+      [98, 37],
+      [32, -8],
+      [26, 48],
+      [49, 21],
+      [-37, 67],
+      [-30, 17],
+      [-37, -24],
+      [-25, 46],
+      [40, 30],
+      [44, -14],
+      [61, 49],
+      [-11, 38],
+      [58, 11],
+      [43, 34],
+      [36, -25],
+      [51, -92],
+      [57, -38],
+      [41, 3],
+      [22, 36],
+      [88, -4],
+      [78, 32],
+      [25, 54],
+      [-6, 43],
+      [59, 25],
+      [-54, 48],
+      [-25, -31],
+      [-51, -10],
+      [-27, -51],
+      [-44, 39],
+      [111, 47],
+      [138, 132],
+      [23, 76],
+      [-41, 32],
+      [-7, 54],
+      [42, 10],
+      [28, 84],
+      [72, 26],
+      [23, 50],
+      [49, 20],
+      [72, -31],
+      [98, 21],
+      [46, 31],
+      [-3, 31],
+      [50, 49],
+      [50, 10],
+      [48, -29],
+      [82, 19],
+      [57, -8],
+      [35, -25],
+      [56, 21],
+      [97, -85],
+      [50, 26],
+      [68, 129],
+      [114, 7],
+      [3, -48],
+      [-36, -46],
+      [-10, -73],
+      [-24, -49],
+      [17, -40],
+      [-36, -40],
+      [-38, -11],
+      [22, -46],
+      [57, -22],
+      [41, -74],
+      [17, -122],
+      [50, -60],
+      [36, -78],
+      [59, -81],
+      [80, 15],
+      [89, -47]
+    ],
+    [
+      [35633, 31904],
+      [38, -119],
+      [42, -67],
+      [-10, -56],
+      [42, -25],
+      [46, -80],
+      [2, -139],
+      [25, -89],
+      [2, -168],
+      [26, -152],
+      [-9, -162],
+      [4, -166],
+      [-20, -56],
+      [0, -77],
+      [-23, -90],
+      [11, -71],
+      [-37, -98],
+      [-8, -162],
+      [-38, -108],
+      [-12, -116],
+      [14, -51],
+      [-62, -106],
+      [-45, -44],
+      [-32, 22],
+      [-42, -14],
+      [-91, -67],
+      [-31, 6],
+      [-51, -42],
+      [-16, -85]
+    ],
+    [
+      [35358, 29522],
+      [-97, 33],
+      [-58, 0],
+      [-31, 29],
+      [-82, 30],
+      [-77, 6],
+      [-43, 52],
+      [-49, 1],
+      [47, -123],
+      [-113, -46],
+      [-121, -132],
+      [-25, 0],
+      [-43, 54],
+      [-53, 29],
+      [-61, 10],
+      [-34, 109],
+      [-82, 24],
+      [-40, 71],
+      [-36, 25],
+      [-56, 3]
+    ],
+    [
+      [34304, 29697],
+      [-21, 49],
+      [-11, 92],
+      [15, 64],
+      [-64, -13],
+      [-35, 25],
+      [-9, 71],
+      [-78, 52],
+      [-24, 39],
+      [-79, 45],
+      [-85, 10],
+      [-36, 28],
+      [-110, 15],
+      [-71, 24],
+      [-166, -16],
+      [-73, -41],
+      [-26, -36],
+      [7, -49],
+      [-75, -7],
+      [-56, -37],
+      [-70, -10],
+      [-80, -27],
+      [-26, -40],
+      [-80, -18],
+      [-23, -41],
+      [-63, -8],
+      [-19, -23],
+      [-148, -76],
+      [-62, 7],
+      [-70, -96],
+      [-95, -41]
+    ],
+    [
+      [32571, 29639],
+      [-90, 34],
+      [-85, 20],
+      [-109, -6],
+      [0, 35]
+    ],
+    [
+      [32287, 29722],
+      [24, 39],
+      [4, 72],
+      [-15, 54],
+      [18, 97],
+      [-39, 106],
+      [36, 120],
+      [-47, 87],
+      [-69, 15],
+      [-59, 75],
+      [24, 47],
+      [62, 64],
+      [26, 69],
+      [29, 120],
+      [-9, 50],
+      [-39, 10],
+      [-29, 42],
+      [39, 75],
+      [132, 15],
+      [158, 46],
+      [85, -10],
+      [15, 98],
+      [88, 18],
+      [55, -13],
+      [66, 7],
+      [82, -22],
+      [55, 45],
+      [-44, 53],
+      [9, 76],
+      [-32, 54],
+      [-15, 64],
+      [8, 45],
+      [40, 14],
+      [113, 83],
+      [-13, 22],
+      [72, 95],
+      [0, 26],
+      [159, 159]
+    ],
+    [
+      [33276, 31739],
+      [99, 9],
+      [43, -55],
+      [95, 54],
+      [61, -36],
+      [63, 7],
+      [33, 32],
+      [49, -50],
+      [-4, -23],
+      [53, -82],
+      [107, 22],
+      [49, -6],
+      [72, -66],
+      [43, -11],
+      [74, 52],
+      [131, -24],
+      [100, 90],
+      [34, 59],
+      [-55, 38],
+      [6, 87],
+      [-10, 99],
+      [28, 61],
+      [-14, 76],
+      [16, 21]
+    ],
+    [
+      [34349, 32093],
+      [76, -43],
+      [64, -18],
+      [70, 12],
+      [22, 42],
+      [72, -46],
+      [64, -20],
+      [8, -62],
+      [29, -38],
+      [106, 8],
+      [63, 35],
+      [35, -25],
+      [62, 6],
+      [15, -30],
+      [67, 4],
+      [44, -24],
+      [17, -85],
+      [-23, -40],
+      [14, -50],
+      [78, -65],
+      [100, -11],
+      [18, 50],
+      [130, -19],
+      [11, 222],
+      [72, 25],
+      [70, -17]
+    ],
+    [
+      [29015, 28436],
+      [13, -48],
+      [40, -5],
+      [73, -107],
+      [-9, -74],
+      [-36, -26],
+      [-105, -146],
+      [39, -52],
+      [-5, -49],
+      [-75, -68],
+      [-1, -77],
+      [121, -103],
+      [-28, -36],
+      [-14, -81],
+      [-100, -72],
+      [-38, -87],
+      [-43, -10],
+      [-53, -101],
+      [-43, -6],
+      [-33, 31],
+      [-115, -33],
+      [-35, -101],
+      [-60, -24],
+      [-10, -52],
+      [28, -36],
+      [105, -1],
+      [5, -49],
+      [124, -35],
+      [57, -103],
+      [23, -68],
+      [42, -24],
+      [43, -66],
+      [-50, -71],
+      [39, -71],
+      [-6, -104],
+      [51, -57],
+      [39, 22],
+      [68, 7],
+      [37, -47],
+      [0, -87],
+      [-62, -44],
+      [68, -116],
+      [-73, -51],
+      [12, -99],
+      [-84, -62],
+      [1, -51]
+    ],
+    [
+      [27194, 25576],
+      [-91, -2],
+      [-84, 113],
+      [-39, 23],
+      [-46, 99],
+      [-52, -23],
+      [-101, -15],
+      [-32, -33],
+      [-56, -2]
+    ],
+    [
+      [26693, 25736],
+      [-72, 66],
+      [32, 21],
+      [2, 89],
+      [33, 49],
+      [17, 88],
+      [-14, 41],
+      [56, 43],
+      [-33, 29],
+      [-21, 51],
+      [16, 46],
+      [-6, 50],
+      [-40, 21],
+      [-24, 41],
+      [28, 59],
+      [-41, 44],
+      [-49, 2],
+      [-79, 27],
+      [12, 60],
+      [-20, 106],
+      [-46, -6],
+      [-27, 101]
+    ],
+    [
+      [27364, 27743],
+      [51, 103],
+      [-23, 70],
+      [61, 22],
+      [4, 26],
+      [91, 133],
+      [-4, 37],
+      [-77, 40],
+      [-25, 55]
+    ],
+    [
+      [27442, 28229],
+      [59, 8],
+      [36, 76],
+      [70, 77],
+      [25, -56],
+      [35, 35],
+      [93, -49],
+      [34, -73],
+      [-26, -69],
+      [34, -7],
+      [65, 36],
+      [39, 62],
+      [49, 44],
+      [12, 82],
+      [129, 110],
+      [41, 60],
+      [94, 22],
+      [25, -41],
+      [147, 65],
+      [76, -21],
+      [-13, -67],
+      [85, 17],
+      [26, 37],
+      [46, 18],
+      [29, -73],
+      [112, -33],
+      [28, 29],
+      [44, 2],
+      [85, -77],
+      [94, -7]
+    ],
+    [
+      [32571, 29639],
+      [-59, -145],
+      [103, -41],
+      [-55, -91],
+      [-47, -41],
+      [28, -110],
+      [-59, -84],
+      [-19, -129],
+      [46, -39],
+      [102, -30],
+      [123, 6],
+      [35, -64],
+      [-50, -58],
+      [-73, -117],
+      [34, -72],
+      [-50, -39],
+      [-93, -148],
+      [4, -49],
+      [54, -50],
+      [52, -25],
+      [-4, -54],
+      [112, -92],
+      [101, 27],
+      [71, -41],
+      [84, 3],
+      [29, 15],
+      [77, -100],
+      [2, -24]
+    ],
+    [
+      [33119, 28047],
+      [-31, -56],
+      [-49, -16],
+      [-72, 45],
+      [-95, -37],
+      [-140, -9],
+      [-182, 127],
+      [-86, -19],
+      [-98, 27],
+      [-60, -14],
+      [-171, 81],
+      [-70, 5],
+      [-38, -41],
+      [-100, -197],
+      [-30, -108],
+      [-37, 11],
+      [-53, -18],
+      [-63, 0],
+      [-14, -40],
+      [-53, -47],
+      [-59, 6],
+      [-107, -54],
+      [-58, -73],
+      [-44, -11],
+      [-81, 8],
+      [-16, -45],
+      [-59, -50]
+    ],
+    [
+      [31253, 27522],
+      [-59, 2],
+      [-13, 39],
+      [-61, 18],
+      [-25, 45],
+      [11, 67],
+      [-25, 56],
+      [34, 33],
+      [-29, 64],
+      [-65, 7],
+      [-44, 72],
+      [63, -15],
+      [44, 45],
+      [-55, 166],
+      [-7, 59],
+      [85, 35],
+      [19, 28],
+      [-6, 93],
+      [12, 47],
+      [-28, 109],
+      [-84, 23],
+      [-71, -9],
+      [-65, -40],
+      [-67, 26],
+      [-21, -29],
+      [-43, 7],
+      [-33, 35],
+      [-93, 35],
+      [-6, 122],
+      [29, 124],
+      [31, 33],
+      [-15, 40],
+      [14, 53],
+      [48, 36],
+      [12, 46],
+      [133, 45],
+      [-14, 59],
+      [15, 43],
+      [38, 19],
+      [141, 15],
+      [11, 22],
+      [101, 25],
+      [44, 31]
+    ],
+    [
+      [31209, 29253],
+      [25, -16],
+      [60, 57],
+      [97, -39],
+      [26, 35],
+      [42, 8],
+      [18, 67],
+      [-17, 47],
+      [65, -3],
+      [54, 32],
+      [96, 27],
+      [-26, 41],
+      [30, 89],
+      [94, 14],
+      [-29, 107],
+      [2, 74],
+      [62, 2],
+      [102, 25],
+      [83, 68],
+      [0, 51],
+      [33, 32],
+      [93, -111],
+      [41, -28],
+      [10, -71],
+      [53, -20],
+      [40, 13],
+      [24, -32]
+    ],
+    [
+      [18713, 23341],
+      [43, -19],
+      [-21, -48],
+      [-35, 29],
+      [13, 38]
+    ],
+    [
+      [19625, 23376],
+      [39, -32],
+      [-99, -59],
+      [-34, 8],
+      [10, 54],
+      [84, 29]
+    ],
+    [
+      [19278, 23403],
+      [20, -34],
+      [-22, -35],
+      [-58, 3],
+      [24, 51],
+      [36, 15]
+    ],
+    [
+      [19351, 23408],
+      [96, -31],
+      [12, -30],
+      [-97, -12],
+      [-51, 25],
+      [40, 48]
+    ],
+    [
+      [19787, 23593],
+      [21, -16],
+      [-49, -103],
+      [7, -41],
+      [-92, -21],
+      [-47, 14],
+      [-24, 68],
+      [78, 16],
+      [106, 83]
+    ],
+    [
+      [18913, 23589],
+      [17, -41],
+      [-16, -141],
+      [-36, -44],
+      [36, -80],
+      [-61, -38],
+      [-28, 8],
+      [-4, 75],
+      [-43, 27],
+      [-75, 107],
+      [8, 76],
+      [73, -14],
+      [37, -73],
+      [56, 45],
+      [-53, 55],
+      [-8, 51],
+      [97, -13]
+    ],
+    [
+      [18604, 23640],
+      [28, -52],
+      [-90, -89],
+      [-54, -26],
+      [-26, 46],
+      [54, 80],
+      [88, 41]
+    ],
+    [
+      [20188, 23665],
+      [26, -65],
+      [-59, -29],
+      [-47, -44],
+      [-51, 39],
+      [32, 79],
+      [99, 20]
+    ],
+    [
+      [20229, 23761],
+      [44, -5],
+      [67, -97],
+      [-37, -91],
+      [-70, 56],
+      [-46, 83],
+      [42, 54]
+    ],
+    [
+      [20154, 23765],
+      [20, -52],
+      [-30, -46],
+      [-33, 18],
+      [17, 72],
+      [26, 8]
+    ],
+    [
+      [20555, 23788],
+      [5, -37],
+      [-107, -47],
+      [-7, 36],
+      [74, 45],
+      [35, 3]
+    ],
+    [
+      [20358, 23875],
+      [34, -33],
+      [-36, -31],
+      [-5, -37],
+      [-52, -14],
+      [-32, 22],
+      [-3, 60],
+      [94, 33]
+    ],
+    [
+      [20208, 25410],
+      [54, -20],
+      [158, 25],
+      [42, -48]
+    ],
+    [
+      [20462, 25367],
+      [67, -91],
+      [34, -27],
+      [-1, -36],
+      [-45, -80],
+      [9, -61],
+      [-10, -92],
+      [96, -139],
+      [65, -54],
+      [-30, -108],
+      [22, -142],
+      [56, -64],
+      [-38, -111],
+      [44, -73],
+      [33, -8],
+      [54, -101],
+      [-8, -85],
+      [11, -61]
+    ],
+    [
+      [20821, 24034],
+      [-28, -94],
+      [-89, -22],
+      [-19, -19],
+      [-2, -82],
+      [-32, -29],
+      [-62, 25],
+      [-92, 7],
+      [-36, 54],
+      [-5, 61],
+      [-163, -76],
+      [-117, -41],
+      [-75, 1],
+      [-22, -87],
+      [-124, -38],
+      [-45, 19],
+      [-102, -4],
+      [-27, -22],
+      [-68, 0],
+      [-64, -65],
+      [-50, 35],
+      [-63, -6],
+      [-41, -80],
+      [-52, 14],
+      [-8, -98],
+      [-41, 9],
+      [-74, -19],
+      [-30, -56],
+      [-76, -20],
+      [-91, 62],
+      [-41, -58],
+      [-49, -19],
+      [11, -34],
+      [-50, -76],
+      [43, -7],
+      [-23, -66],
+      [60, 1],
+      [-18, -61],
+      [-29, -3],
+      [-87, 36],
+      [-10, -28],
+      [-83, -17],
+      [-18, 57],
+      [118, 72],
+      [-28, 31],
+      [25, 80],
+      [76, 49],
+      [28, 65],
+      [-37, 12],
+      [-50, 55],
+      [8, 34],
+      [-47, 74],
+      [18, 50],
+      [-23, 41],
+      [-66, -6],
+      [-3, 35],
+      [-178, -10],
+      [-156, -146],
+      [-17, -35],
+      [-84, -51],
+      [-34, -62],
+      [27, -15]
+    ],
+    [
+      [18406, 23461],
+      [-94, -6],
+      [-68, 18],
+      [-51, 142],
+      [8, 61],
+      [-58, 52],
+      [-58, 22],
+      [15, 71],
+      [-16, 63],
+      [17, 78],
+      [-29, 66]
+    ],
+    [
+      [18072, 24028],
+      [-49, 61],
+      [30, 62],
+      [60, 17],
+      [63, 65],
+      [17, 48],
+      [-15, 51],
+      [19, 73],
+      [70, 99],
+      [-55, 33],
+      [29, 47],
+      [107, 71],
+      [21, -9],
+      [54, 81],
+      [21, 62],
+      [54, -24],
+      [40, -45],
+      [22, 42],
+      [63, -8],
+      [40, 19],
+      [74, -38],
+      [44, 65],
+      [41, 14],
+      [25, -40],
+      [164, -12],
+      [58, 25],
+      [90, 77],
+      [72, 1],
+      [23, -18],
+      [42, 42],
+      [55, 21],
+      [-16, 51],
+      [-104, 43],
+      [16, 53],
+      [38, 21],
+      [28, 45],
+      [120, 25],
+      [43, 80],
+      [67, 67],
+      [43, 79],
+      [88, 94],
+      [40, 7],
+      [29, -33],
+      [87, -34],
+      [54, 25],
+      [25, 34],
+      [98, -77],
+      [38, 26],
+      [105, 15],
+      [58, -21]
+    ],
+    [
+      [32916, 41953],
+      [3, -55],
+      [-33, -62],
+      [-55, -61],
+      [7, -91],
+      [-48, -123],
+      [-33, -28],
+      [-72, -15],
+      [-37, 17],
+      [-3, 133],
+      [-38, 82],
+      [59, 117],
+      [51, 1],
+      [153, 40],
+      [46, 45]
+    ],
+    [
+      [36414, 46998],
+      [19, -28],
+      [-42, -37],
+      [-39, 18],
+      [62, 47]
+    ],
+    [
+      [36154, 48879],
+      [66, -51],
+      [94, -6],
+      [54, -42],
+      [43, -70],
+      [9, -80],
+      [-107, -93],
+      [-74, -30],
+      [-119, 73],
+      [-72, 77],
+      [2, 65],
+      [-18, 54],
+      [46, 50],
+      [76, 53]
+    ],
+    [
+      [35722, 49331],
+      [47, -47],
+      [46, 2],
+      [51, 37],
+      [22, -47],
+      [-9, -102],
+      [7, -82],
+      [-19, -26],
+      [14, -52],
+      [-23, -44],
+      [-37, -1],
+      [-45, 69],
+      [-44, 127],
+      [19, 107],
+      [-29, 59]
+    ],
+    [
+      [37627, 49487],
+      [46, -28],
+      [17, -65],
+      [57, -53],
+      [40, -14],
+      [26, -73],
+      [40, -51],
+      [231, -138],
+      [222, -257],
+      [254, -252],
+      [194, -179],
+      [49, -29],
+      [14, -85],
+      [86, -74],
+      [3, -83],
+      [33, -43],
+      [61, -38],
+      [54, -109],
+      [30, -14],
+      [134, -177],
+      [103, -97],
+      [132, -92],
+      [21, -32],
+      [123, -91],
+      [113, -143],
+      [140, -87],
+      [34, -32],
+      [265, -156],
+      [38, -40],
+      [102, -60],
+      [131, -63],
+      [33, -79],
+      [99, -65],
+      [170, -79],
+      [-26, -44],
+      [43, -19],
+      [59, 29],
+      [199, -79],
+      [204, -74],
+      [-106, 6],
+      [-41, -23],
+      [76, -63],
+      [28, -83],
+      [58, -4],
+      [24, -51],
+      [91, -3],
+      [66, 26],
+      [101, -17],
+      [103, -34],
+      [26, 27],
+      [28, 79],
+      [272, -30],
+      [124, -48],
+      [-113, -17],
+      [-32, -146],
+      [29, -31],
+      [75, 6],
+      [57, 36],
+      [36, 82],
+      [-6, 77],
+      [107, 23],
+      [18, -60],
+      [-6, -107],
+      [38, -37],
+      [49, -94],
+      [124, -59],
+      [65, -71],
+      [81, 20],
+      [208, -27],
+      [145, -13],
+      [176, 3],
+      [177, 28],
+      [85, 49],
+      [23, 46],
+      [59, 26],
+      [80, 62],
+      [53, 68],
+      [131, 104],
+      [0, 24],
+      [121, 70],
+      [111, 94],
+      [130, 67],
+      [66, 120],
+      [158, 149],
+      [17, 48],
+      [56, -15],
+      [15, -73],
+      [34, -53],
+      [-9, -45],
+      [-111, -195],
+      [-82, -66],
+      [-48, -114],
+      [11, -48],
+      [-46, -70],
+      [-83, -71],
+      [-100, -129],
+      [-22, -63],
+      [-50, -78],
+      [10, -70],
+      [-34, -94],
+      [-39, -28],
+      [-6, -46],
+      [23, -94],
+      [48, -49],
+      [107, -184],
+      [79, -29],
+      [13, -74],
+      [79, -132],
+      [52, -200],
+      [5, -51],
+      [67, -141],
+      [-14, -39],
+      [-100, 10],
+      [-39, -44],
+      [29, -27],
+      [25, -72],
+      [59, 57],
+      [51, -2],
+      [-2, -87],
+      [56, 2],
+      [97, -37],
+      [160, -16],
+      [32, 26],
+      [107, -73],
+      [-50, 90],
+      [51, 74],
+      [91, 50],
+      [34, 45],
+      [85, 44],
+      [27, 44],
+      [140, -19],
+      [28, 21],
+      [136, -11],
+      [15, -42],
+      [-103, -64],
+      [-107, -17],
+      [-65, -42],
+      [-76, 9],
+      [-93, -93],
+      [-34, 14],
+      [-42, -127],
+      [-33, -46],
+      [8, -34],
+      [-26, -67],
+      [-97, 49],
+      [-98, -2],
+      [-143, -23],
+      [-67, -25],
+      [-68, 7],
+      [-69, -23],
+      [-53, -43],
+      [-79, -2],
+      [-27, 23],
+      [-49, -14],
+      [-62, -50],
+      [7, -94],
+      [-53, -28],
+      [-7, -57],
+      [-112, -36],
+      [-9, -68],
+      [-127, -45],
+      [-65, 23],
+      [-102, -11],
+      [-42, 57],
+      [18, 45],
+      [70, -30],
+      [98, 71],
+      [-63, 39],
+      [-72, 11],
+      [-56, 27],
+      [-10, -55],
+      [-127, -3],
+      [-86, -87],
+      [-36, -95],
+      [104, -79],
+      [-72, -22],
+      [-127, 14],
+      [-87, 28],
+      [-158, -10],
+      [-44, 11],
+      [-87, -28],
+      [-71, 10],
+      [-147, 55],
+      [-42, 68],
+      [-75, 19],
+      [-99, -5],
+      [-131, -25],
+      [-140, -49],
+      [-52, -34],
+      [-130, -45],
+      [-212, -128],
+      [-111, -80],
+      [-504, -422],
+      [-125, -135],
+      [-61, -35],
+      [-9, -42],
+      [-177, -228],
+      [-104, -162],
+      [-110, -213],
+      [-31, -151],
+      [23, -75],
+      [30, -20],
+      [-21, -94],
+      [-4, -103],
+      [-30, -96],
+      [9, -48],
+      [-111, -130],
+      [-31, -115],
+      [12, -47],
+      [-165, 127],
+      [-3, 30],
+      [-51, 70],
+      [-142, 86],
+      [-127, 52],
+      [-71, 75],
+      [-113, 32],
+      [-63, -2],
+      [-118, 21],
+      [-84, 46],
+      [-17, 27],
+      [-83, 26],
+      [-98, 16],
+      [-95, 76],
+      [-97, 49],
+      [-48, 5],
+      [-86, 46],
+      [-65, 15],
+      [-83, 77],
+      [-57, 4],
+      [-65, 33],
+      [-189, 123],
+      [-13, 23],
+      [-157, 144],
+      [-114, 42],
+      [-114, 9],
+      [-94, 30],
+      [-28, 36],
+      [-65, 37],
+      [-156, 139],
+      [-186, 78],
+      [-187, 41],
+      [-87, 5],
+      [-158, -12],
+      [-133, -30],
+      [-148, -55],
+      [-223, -121],
+      [-111, -75],
+      [-116, -91],
+      [-150, -67],
+      [-124, -106],
+      [-62, -76],
+      [-77, -77],
+      [-20, -49],
+      [-110, 37],
+      [-34, 43],
+      [35, 21],
+      [75, -32],
+      [-20, 61],
+      [-82, 15],
+      [-52, 31],
+      [-22, 110],
+      [-55, 85],
+      [-71, 27],
+      [-60, 55],
+      [-38, 10],
+      [-39, 103],
+      [-109, 83],
+      [-127, 10],
+      [-155, -38],
+      [-67, 43],
+      [-128, -6],
+      [-91, -76],
+      [-71, -77],
+      [-55, -77],
+      [-70, -120],
+      [-71, -175],
+      [-21, -87],
+      [-4, -77],
+      [41, -101],
+      [89, -39],
+      [86, -7],
+      [53, -52],
+      [94, -58],
+      [106, -102],
+      [68, -39],
+      [67, -15],
+      [151, 47],
+      [70, -4],
+      [33, 27],
+      [107, -56],
+      [25, -70],
+      [40, -21],
+      [53, -96],
+      [106, -59],
+      [66, -57],
+      [56, -105],
+      [48, -51],
+      [100, -50],
+      [118, -12],
+      [147, -73],
+      [3, -61],
+      [61, -21],
+      [17, -43],
+      [-60, -41],
+      [-82, 7],
+      [-68, -67],
+      [-12, -39],
+      [-152, -63],
+      [-93, 3],
+      [-51, 56],
+      [-125, 44],
+      [-50, 2],
+      [-121, 36],
+      [-75, -16],
+      [-30, -53],
+      [-34, -12],
+      [-26, 57],
+      [62, 14],
+      [7, 44],
+      [-56, 62],
+      [-74, 12],
+      [-74, -34],
+      [-44, -148],
+      [-104, -52],
+      [-44, -46],
+      [-130, -7],
+      [-39, -39],
+      [-17, -62],
+      [-9, -161],
+      [17, -83],
+      [-57, -72],
+      [-90, -2],
+      [-107, -53],
+      [-88, -21],
+      [-81, -125],
+      [-16, -45],
+      [-62, -18],
+      [-60, 54],
+      [-43, 11],
+      [-114, -12],
+      [-67, 57],
+      [-51, 96],
+      [4, 17],
+      [-63, 129],
+      [-3, 132],
+      [29, 68],
+      [20, 115],
+      [97, 124],
+      [26, 50],
+      [1, 93],
+      [76, -8],
+      [33, 66],
+      [1, 52],
+      [29, 137],
+      [-43, 206],
+      [-94, 118],
+      [-30, 63],
+      [-60, 69],
+      [-75, 37],
+      [-131, 11],
+      [-84, 173],
+      [-34, 24],
+      [-98, 7],
+      [-28, 15],
+      [-50, 71],
+      [18, 50],
+      [-37, 69],
+      [32, 99],
+      [66, 47],
+      [43, 68],
+      [35, 141],
+      [-24, 104],
+      [10, 44],
+      [-38, 110],
+      [-5, 91],
+      [58, 59],
+      [26, 52],
+      [116, 56],
+      [126, 8],
+      [81, -11],
+      [58, 33],
+      [26, 55],
+      [146, 70],
+      [0, 33],
+      [79, 125],
+      [83, -49],
+      [48, -84],
+      [104, 25],
+      [0, 109],
+      [86, 79],
+      [82, 130],
+      [53, 62],
+      [59, 25],
+      [145, 83],
+      [21, 79],
+      [-37, 22],
+      [-50, 97],
+      [-43, 20],
+      [-45, 100],
+      [-86, 74],
+      [-74, 43],
+      [-70, 100],
+      [75, 251],
+      [87, 10],
+      [30, -13],
+      [76, 37],
+      [14, 47],
+      [61, 16],
+      [32, -36],
+      [185, -142],
+      [45, 1],
+      [20, -69],
+      [151, -38],
+      [37, -32],
+      [81, -24],
+      [-5, -45],
+      [35, -25],
+      [115, 9],
+      [126, 28],
+      [10, 30],
+      [64, 9],
+      [55, 27],
+      [75, -3],
+      [-13, -93],
+      [57, -41],
+      [100, -20],
+      [142, -63],
+      [180, 77],
+      [68, 44],
+      [74, 66],
+      [155, 176],
+      [43, 61],
+      [7, 214],
+      [-66, 124],
+      [-70, 98],
+      [4, 45],
+      [32, 49],
+      [19, 71],
+      [-11, 41],
+      [-55, 77],
+      [-47, 196],
+      [60, 81],
+      [43, 96],
+      [146, 75],
+      [77, 4],
+      [28, 41],
+      [98, 9],
+      [79, 62],
+      [60, 84],
+      [31, 80],
+      [15, 95],
+      [20, 36],
+      [5, 97],
+      [-20, 198],
+      [12, 48],
+      [-9, 135],
+      [6, 50],
+      [-20, 168],
+      [61, 39],
+      [17, 58],
+      [54, 93],
+      [47, 47],
+      [41, 103],
+      [19, 220],
+      [35, 56],
+      [11, 180],
+      [-14, 146],
+      [-40, 193],
+      [-38, 125],
+      [-14, 82],
+      [-24, 35],
+      [-88, 201],
+      [-175, 330],
+      [-45, 114],
+      [3, 105],
+      [69, 75],
+      [22, 43],
+      [-6, 49],
+      [52, 49],
+      [32, 86],
+      [-41, 52],
+      [-7, 53],
+      [28, 79],
+      [65, -64],
+      [13, -43],
+      [63, -14],
+      [171, 30],
+      [60, 26],
+      [58, 46],
+      [27, 46],
+      [1, 81],
+      [26, 35],
+      [92, 27]
+    ],
+    [
+      [23891, 24340],
+      [39, -47],
+      [-6, -49],
+      [-51, -53],
+      [-2, -50],
+      [-68, -77],
+      [-31, -53],
+      [-56, -52],
+      [-39, -98],
+      [0, -114],
+      [40, -35],
+      [6, -46],
+      [49, -42],
+      [17, -73],
+      [-105, -34],
+      [-131, -65],
+      [-64, -56],
+      [-49, 3],
+      [-73, -25],
+      [-39, 60],
+      [-39, 12],
+      [23, 44],
+      [-69, 35],
+      [-30, 36],
+      [-7, 51],
+      [31, 55],
+      [66, 10],
+      [46, 28],
+      [49, 119],
+      [55, 69],
+      [31, 80],
+      [97, 65],
+      [44, 80],
+      [33, 38],
+      [54, 16],
+      [67, 58],
+      [55, 82],
+      [57, 28]
+    ],
+    [
+      [22873, 24481],
+      [20, -62],
+      [-78, 30],
+      [58, 32]
+    ],
+    [
+      [24327, 24499],
+      [40, -55],
+      [-55, -9],
+      [-30, 54],
+      [45, 10]
+    ],
+    [
+      [22969, 24514],
+      [6, -61],
+      [-55, 31],
+      [49, 30]
+    ],
+    [
+      [24431, 24547],
+      [28, -40],
+      [-69, -8],
+      [-5, 31],
+      [46, 17]
+    ],
+    [
+      [23628, 26760],
+      [8, -83],
+      [-15, -65],
+      [9, -45],
+      [87, -77],
+      [20, -58],
+      [30, -17],
+      [132, 53],
+      [64, 5],
+      [13, -46],
+      [-6, -107],
+      [17, -46],
+      [1, -73],
+      [-59, -58],
+      [-45, -18],
+      [-72, 50],
+      [-66, -23],
+      [-17, -119],
+      [5, -72],
+      [72, -39],
+      [78, -19],
+      [27, -38],
+      [132, -67],
+      [32, 34],
+      [121, 4],
+      [15, -94],
+      [66, -38],
+      [-17, -74],
+      [36, -23],
+      [63, 34],
+      [103, -10],
+      [4, -70],
+      [86, 17],
+      [10, -22],
+      [88, -25],
+      [32, -81],
+      [-2, -41],
+      [-38, -19],
+      [-18, -52]
+    ],
+    [
+      [24624, 25338],
+      [-63, -4],
+      [31, -44],
+      [-16, -128],
+      [29, -33],
+      [209, -59],
+      [-91, -49],
+      [42, -23],
+      [-22, -95],
+      [-17, -11],
+      [-8, -91],
+      [48, -51],
+      [34, -124],
+      [-25, -38],
+      [-56, -25]
+    ],
+    [
+      [24719, 24563],
+      [-104, -51],
+      [-51, 69],
+      [-98, 12],
+      [-10, -35],
+      [-139, -20],
+      [-59, -55],
+      [-13, -50],
+      [-133, -16],
+      [-109, -39],
+      [-54, 12],
+      [-30, 29],
+      [-104, 7],
+      [-146, 105],
+      [-27, -17],
+      [-75, 28],
+      [-60, 49],
+      [-21, 35],
+      [-85, 74],
+      [-90, 26],
+      [-98, -30],
+      [-64, 24],
+      [-107, -36],
+      [-94, 56],
+      [-45, -49],
+      [-117, 15],
+      [-29, -8],
+      [-34, -81],
+      [-55, -5],
+      [-44, 40],
+      [-32, -20]
+    ],
+    [
+      [22592, 24632],
+      [-55, 132],
+      [-26, 39],
+      [-82, 54],
+      [-18, 46],
+      [17, 60],
+      [53, 38],
+      [-12, 51],
+      [-55, 58],
+      [35, 31],
+      [-5, 47],
+      [20, 41],
+      [-28, 36],
+      [60, 64],
+      [41, 9],
+      [6, 89],
+      [59, 24],
+      [24, 105],
+      [25, 25],
+      [75, 19],
+      [0, 49],
+      [-58, 40],
+      [-4, 48],
+      [43, 52]
+    ],
+    [
+      [22707, 25789],
+      [58, -25],
+      [97, 54],
+      [68, 56],
+      [-5, 72],
+      [-22, 40],
+      [16, 40],
+      [-25, 54],
+      [-41, 17],
+      [1, 125],
+      [-74, 32],
+      [-22, 144],
+      [-27, 35],
+      [20, 49],
+      [-35, 54],
+      [-11, 68],
+      [-70, 49]
+    ],
+    [
+      [22635, 26653],
+      [117, 17],
+      [94, 47],
+      [52, 50],
+      [75, 20],
+      [24, -27],
+      [95, -2],
+      [49, -44],
+      [65, 61],
+      [76, -26],
+      [59, 28],
+      [96, -18],
+      [42, 26],
+      [82, -32],
+      [67, 7]
+    ],
+    [
+      [35358, 29522],
+      [4, -2],
+      [3, -1],
+      [13, -39],
+      [-68, -49],
+      [-72, -164],
+      [-8, -65],
+      [-27, -82],
+      [5, -46],
+      [-50, -55],
+      [-57, -133],
+      [-20, -20],
+      [-39, -147],
+      [-45, -83],
+      [-2, -148],
+      [22, -112],
+      [-51, -62],
+      [-2, -28],
+      [-62, -54],
+      [-8, -69],
+      [27, -195],
+      [58, -187],
+      [62, -144],
+      [77, -160],
+      [22, -2],
+      [48, -103],
+      [64, -103],
+      [11, -46],
+      [163, -237],
+      [77, -55],
+      [10, -33]
+    ],
+    [
+      [33352, 27761],
+      [-39, -33],
+      [-39, 9],
+      [-30, 72],
+      [-50, 86],
+      [-11, 58],
+      [21, 55]
+    ],
+    [
+      [33204, 28008],
+      [73, 6],
+      [42, 29],
+      [124, 53],
+      [31, 71],
+      [-3, 52],
+      [27, 37],
+      [52, 5],
+      [62, -31],
+      [12, 83],
+      [84, 32],
+      [30, 55],
+      [55, -12],
+      [34, 17],
+      [94, 14],
+      [5, 49],
+      [89, -12],
+      [21, 34],
+      [44, 2],
+      [28, -37],
+      [53, 1],
+      [34, 49],
+      [2, 80],
+      [76, 112],
+      [17, 63],
+      [-11, 109],
+      [8, 62],
+      [-25, 68],
+      [9, 23],
+      [-41, 93],
+      [29, 36],
+      [95, 20],
+      [5, 52],
+      [-51, 50],
+      [-9, 46],
+      [24, 98],
+      [-28, 93],
+      [-8, 151],
+      [17, 36]
+    ],
+    [
+      [27923, 30237],
+      [30, -40],
+      [-26, -28],
+      [20, -36],
+      [-55, -27],
+      [-54, 17],
+      [-30, -27],
+      [-70, -13],
+      [-29, 48],
+      [-49, 26],
+      [109, 21],
+      [62, -6],
+      [60, 11],
+      [32, 54]
+    ],
+    [
+      [27949, 29755],
+      [-125, 9],
+      [-31, -42],
+      [-42, 18],
+      [-43, -20],
+      [-64, -56],
+      [-34, -53],
+      [7, -57],
+      [-36, -40],
+      [-24, -96],
+      [-8, -135],
+      [-55, -61],
+      [-52, -15],
+      [39, -49],
+      [20, -71],
+      [-76, -116],
+      [18, -106],
+      [46, -55],
+      [-41, -93],
+      [6, -71],
+      [-40, -115],
+      [3, -42],
+      [29, -33],
+      [14, -103],
+      [-33, -40],
+      [15, -84]
+    ],
+    [
+      [26348, 28224],
+      [69, 64],
+      [42, 69],
+      [67, 15],
+      [118, 96],
+      [96, 101],
+      [77, 109],
+      [40, 39],
+      [191, 237],
+      [13, 40],
+      [45, 39],
+      [126, 196],
+      [95, 191],
+      [38, 110],
+      [18, 134],
+      [-8, 58],
+      [13, 129],
+      [-50, 25],
+      [-18, 82],
+      [-34, 67],
+      [24, 50],
+      [-5, 87],
+      [-21, 25],
+      [-84, -17],
+      [11, 156],
+      [43, 38],
+      [-1, 43],
+      [41, 33],
+      [28, 68],
+      [-21, 23],
+      [-2, 73],
+      [102, 91],
+      [132, 77],
+      [74, 13],
+      [92, -24],
+      [57, 31],
+      [220, 98],
+      [50, 54],
+      [105, 55],
+      [129, 16],
+      [110, 57],
+      [70, -10],
+      [50, 9],
+      [52, -64],
+      [-23, -45],
+      [36, -41],
+      [-12, -49],
+      [-81, -16],
+      [-86, 0],
+      [-31, -25],
+      [-28, -109],
+      [54, -120],
+      [-64, -71],
+      [-22, -6],
+      [-106, 21],
+      [-100, -32],
+      [-42, -29],
+      [-40, -71],
+      [-14, -63],
+      [-74, -35],
+      [-52, -44],
+      [-27, 36],
+      [-43, 5],
+      [-53, 53],
+      [-116, -138],
+      [-19, -55],
+      [51, -11],
+      [-15, -39],
+      [-53, -20],
+      [9, -54],
+      [32, -42],
+      [40, 48],
+      [61, -6],
+      [-3, -36],
+      [39, -33],
+      [56, -18],
+      [52, 56],
+      [20, 64],
+      [58, 16],
+      [7, -89],
+      [-13, -58],
+      [19, -177],
+      [-10, -19]
+    ],
+    [
+      [37021, 34391],
+      [-118, 45],
+      [-84, -2],
+      [-61, 14],
+      [-24, -48],
+      [14, -60],
+      [-3, -102],
+      [-68, -65],
+      [10, -46],
+      [-19, -47],
+      [12, -54],
+      [-43, -10],
+      [-1, -66],
+      [-38, -3],
+      [-71, 34],
+      [-16, 24],
+      [-60, 4],
+      [-61, 32],
+      [-25, -66],
+      [-65, -13],
+      [-18, -64],
+      [-86, -17],
+      [-23, 43],
+      [-106, 31],
+      [-12, 45],
+      [-51, 74],
+      [60, 50],
+      [-25, 46],
+      [-73, 19],
+      [-121, -20],
+      [-38, 14],
+      [-63, -18],
+      [-55, 75],
+      [-144, 44],
+      [-143, 85],
+      [-75, -15]
+    ],
+    [
+      [37125, 37794],
+      [58, -64],
+      [14, -51],
+      [66, -67],
+      [30, -49],
+      [8, -57],
+      [86, -120],
+      [31, -84],
+      [-68, -62],
+      [6, -52],
+      [115, -46],
+      [24, -70],
+      [-49, -1],
+      [-41, -71],
+      [15, -65],
+      [31, -37],
+      [58, -27],
+      [74, -91],
+      [42, 2],
+      [33, -51],
+      [9, -75],
+      [-29, -23],
+      [-7, -54],
+      [31, -70],
+      [47, -58],
+      [-10, -42],
+      [34, -60],
+      [-14, -74],
+      [24, -24],
+      [-28, -102],
+      [5, -51],
+      [-30, -57],
+      [3, -142],
+      [-52, -62],
+      [27, -28],
+      [112, 159],
+      [20, -118],
+      [26, -71],
+      [38, 2],
+      [27, -74],
+      [-81, -42],
+      [-1, -35],
+      [-40, -34],
+      [5, -35],
+      [-79, 6],
+      [-37, -31],
+      [48, -67],
+      [113, 102],
+      [51, -35],
+      [-23, -27],
+      [-19, -87],
+      [-77, -19],
+      [-51, 30],
+      [-71, -85],
+      [37, -70],
+      [-83, -22],
+      [83, -69],
+      [-101, -17],
+      [38, -54],
+      [-1, -45],
+      [-45, -30],
+      [70, -69],
+      [-88, -53],
+      [-23, -33],
+      [76, -22],
+      [-74, -51],
+      [-74, 3],
+      [-18, -19],
+      [126, -62],
+      [32, -32],
+      [-66, -40],
+      [-52, 36],
+      [-86, 20],
+      [-8, -55],
+      [79, -73],
+      [-23, -77],
+      [-82, 3],
+      [-141, -18],
+      [-3, -61],
+      [-49, -37],
+      [47, -26],
+      [-19, -43],
+      [-34, -7],
+      [-47, 70],
+      [-4, 74],
+      [-91, -9],
+      [16, -69]
+    ],
+    [
+      [22783, 23414],
+      [-16, -93],
+      [-78, -15],
+      [-73, 50],
+      [-29, -29],
+      [-90, -6],
+      [-74, 31],
+      [-137, -24],
+      [-34, 6],
+      [-75, -56],
+      [6, -41],
+      [-32, -34],
+      [-143, -3],
+      [-46, -71],
+      [-54, -27],
+      [-48, 0],
+      [-48, 35],
+      [-38, 59],
+      [-63, -33],
+      [-76, 9],
+      [-77, -29],
+      [-8, -38],
+      [-40, -15],
+      [-38, 23],
+      [-101, -82],
+      [-14, -50],
+      [-62, -21]
+    ],
+    [
+      [21106, 23032],
+      [50, 18],
+      [29, 80],
+      [-10, 89],
+      [13, 14],
+      [20, 133],
+      [-28, 53],
+      [-45, 27],
+      [20, 34],
+      [71, 9],
+      [49, -14],
+      [50, 14],
+      [88, 90],
+      [20, 49],
+      [41, 24],
+      [48, 0],
+      [31, 35],
+      [-8, 59],
+      [42, 20],
+      [53, -58],
+      [48, 38],
+      [6, 73],
+      [87, -2],
+      [75, -20],
+      [30, -35],
+      [94, -14],
+      [50, 25],
+      [96, 9],
+      [47, 78],
+      [48, -26],
+      [8, -31],
+      [-21, -74],
+      [46, -44],
+      [20, 47],
+      [126, 16],
+      [31, -44],
+      [-39, -59],
+      [84, -74],
+      [34, 5],
+      [78, -57],
+      [94, -30],
+      [52, -53],
+      [49, -22]
+    ],
+    [
+      [21335, 23859],
+      [35, -61],
+      [-62, -51],
+      [-30, 23],
+      [57, 89]
+    ],
+    [
+      [10878, 6966],
+      [37, -37],
+      [8, -67],
+      [-64, -3],
+      [-35, 56],
+      [54, 51]
+    ],
+    [
+      [11397, 7826],
+      [-3, -54],
+      [-36, -11],
+      [-82, -112],
+      [-72, -60],
+      [-80, -24],
+      [-53, 45],
+      [-22, 55],
+      [23, 75],
+      [55, -21],
+      [68, 5],
+      [36, 25],
+      [43, 0],
+      [123, 77]
+    ],
+    [
+      [11815, 8867],
+      [38, -14],
+      [87, 12],
+      [10, -41],
+      [-16, -79],
+      [4, -54],
+      [57, -35],
+      [80, -92],
+      [-42, -112],
+      [-34, -40],
+      [-24, -64],
+      [-104, -16],
+      [-23, 13],
+      [-14, 61],
+      [-72, 68],
+      [38, 33],
+      [13, 63],
+      [-33, 51],
+      [-1, 73],
+      [-18, 14],
+      [24, 65],
+      [0, 75],
+      [30, 19]
+    ],
+    [
+      [12444, 9217],
+      [20, -33],
+      [70, 2],
+      [-32, -43],
+      [-41, 23],
+      [-42, -3],
+      [-12, 44],
+      [37, 10]
+    ],
+    [
+      [12336, 9248],
+      [-8, -86],
+      [-39, -14],
+      [7, 72],
+      [40, 28]
+    ],
+    [
+      [12413, 9575],
+      [-11, -47],
+      [18, -39],
+      [98, -45],
+      [35, -63],
+      [42, 6],
+      [50, -24],
+      [56, -1],
+      [-27, -72],
+      [-50, -14],
+      [-22, 34],
+      [-84, -18],
+      [0, 50],
+      [-22, 26],
+      [-52, -28],
+      [-19, 36],
+      [2, 60],
+      [-56, 38],
+      [-24, 60],
+      [66, 41]
+    ],
+    [
+      [12366, 9818],
+      [53, -19],
+      [-7, -37],
+      [-58, 35],
+      [12, 21]
+    ],
+    [
+      [14022, 9985],
+      [30, -40],
+      [-54, -59],
+      [-60, -110],
+      [-74, -31],
+      [-56, 86],
+      [43, 40],
+      [33, 0],
+      [85, 82],
+      [53, 32]
+    ],
+    [
+      [13367, 10326],
+      [-1, -58],
+      [29, -56],
+      [29, -7],
+      [2, -79],
+      [-21, -45],
+      [-65, -23],
+      [-24, -31],
+      [-69, 24],
+      [-89, -101],
+      [-44, -72],
+      [-49, -2],
+      [14, -47],
+      [-50, -25],
+      [-87, -15],
+      [-34, 7],
+      [-33, -120],
+      [1, -34],
+      [64, -28],
+      [-49, -49],
+      [-32, 5],
+      [-49, -38],
+      [-17, -69],
+      [-36, 30],
+      [-51, -26],
+      [-24, -36],
+      [-46, -7],
+      [-59, 42],
+      [11, 40],
+      [-66, 26],
+      [17, 57],
+      [-156, 48],
+      [-40, 26],
+      [-43, -4],
+      [-22, 46],
+      [91, 12],
+      [56, -10],
+      [37, 63],
+      [-39, 35],
+      [107, 60],
+      [71, 6],
+      [16, 31],
+      [66, 63],
+      [50, -33],
+      [33, 41],
+      [81, 36],
+      [31, -14],
+      [41, 70],
+      [92, -8],
+      [15, 71],
+      [54, 49],
+      [47, -11],
+      [52, 42],
+      [19, -58],
+      [101, -56],
+      [-15, 56],
+      [50, 23],
+      [-38, 89],
+      [44, 63],
+      [27, 1]
+    ],
+    [
+      [12397, 11784],
+      [36, -2],
+      [6, -64],
+      [-37, 12],
+      [-5, 54]
+    ],
+    [
+      [13180, 12514],
+      [27, -10],
+      [22, -50],
+      [-46, -14],
+      [-28, 42],
+      [25, 32]
+    ],
+    [
+      [13464, 12968],
+      [1, -82],
+      [-86, -78],
+      [-26, 114],
+      [53, 36],
+      [58, 10]
+    ],
+    [
+      [13690, 13451],
+      [78, -30],
+      [9, -60],
+      [43, -48],
+      [-115, -4],
+      [-54, 91],
+      [39, 51]
+    ],
+    [
+      [13824, 13707],
+      [49, -62],
+      [-5, -37],
+      [-59, 13],
+      [-27, 47],
+      [42, 39]
+    ],
+    [
+      [14968, 14784],
+      [55, -39],
+      [88, -24],
+      [54, -53],
+      [85, -26],
+      [60, -51],
+      [-21, -155],
+      [-109, -132],
+      [-44, -34],
+      [-109, -22],
+      [-78, -4],
+      [-96, 23],
+      [-40, 70],
+      [-33, 110],
+      [-20, 5],
+      [-27, 79],
+      [-7, 69],
+      [32, 37],
+      [53, -6],
+      [53, 79],
+      [37, 22],
+      [-3, 41],
+      [70, 11]
+    ],
+    [
+      [14271, 14851],
+      [42, -20],
+      [63, 1],
+      [71, -29],
+      [59, -52],
+      [-71, -51],
+      [-49, 2],
+      [-32, 56],
+      [-33, 12],
+      [-50, 81]
+    ],
+    [
+      [15690, 15447],
+      [-7, -55],
+      [-36, 1],
+      [2, 57],
+      [41, -3]
+    ],
+    [
+      [14583, 15577],
+      [33, -24],
+      [-12, -34],
+      [-98, -4],
+      [53, 58],
+      [24, 4]
+    ],
+    [
+      [16076, 15650],
+      [25, -93],
+      [26, -32],
+      [-26, -39],
+      [14, -143],
+      [-42, -77],
+      [-14, -51],
+      [11, -95],
+      [-44, -47],
+      [5, -47],
+      [-111, -114],
+      [-1, -45],
+      [-32, -38],
+      [-4, -64],
+      [39, -42],
+      [-25, -26],
+      [16, -56],
+      [-19, -58],
+      [-46, 6],
+      [-78, -30],
+      [-63, -45],
+      [-28, 58],
+      [17, 89],
+      [-26, 72],
+      [-3, 49],
+      [43, 15],
+      [18, 47],
+      [29, 16],
+      [59, 98],
+      [52, 129],
+      [-5, 87],
+      [-23, 89],
+      [72, 93],
+      [10, 39],
+      [40, 43],
+      [16, 47],
+      [-11, 39],
+      [56, 72],
+      [2, 25],
+      [51, 29]
+    ],
+    [
+      [13861, 15680],
+      [49, -48],
+      [-68, -42],
+      [-52, 47],
+      [42, 42],
+      [29, 1]
+    ],
+    [
+      [13568, 17832],
+      [0, -55],
+      [-40, -104],
+      [-47, 2],
+      [-10, -70],
+      [-31, -27],
+      [-2, -63],
+      [-54, -52],
+      [-65, 39],
+      [53, 119],
+      [7, 52],
+      [92, 49],
+      [60, 8],
+      [37, 102]
+    ],
+    [
+      [13692, 18057],
+      [53, -57],
+      [49, -31],
+      [37, 50],
+      [12, -92],
+      [-63, -29],
+      [-54, -1],
+      [-28, 57],
+      [-47, 35],
+      [2, 68],
+      [39, 0]
+    ],
+    [
+      [15427, 18556],
+      [-43, -51],
+      [-6, -49],
+      [65, -23],
+      [83, -79],
+      [9, -75],
+      [57, -86],
+      [85, -14],
+      [52, -39],
+      [32, -71],
+      [-21, -101],
+      [-21, -8],
+      [17, -88],
+      [66, -10],
+      [29, -35],
+      [109, -13],
+      [-18, -62],
+      [79, -18],
+      [0, -91],
+      [16, -66],
+      [55, -98],
+      [51, 58],
+      [71, -63],
+      [33, -13],
+      [63, 23],
+      [48, -28],
+      [0, -51],
+      [31, -66],
+      [-26, -38],
+      [14, -30],
+      [-1, -76],
+      [-42, -19],
+      [-26, -45],
+      [0, -52]
+    ],
+    [
+      [16288, 17079],
+      [-92, 39],
+      [-115, -63],
+      [-63, -81],
+      [-23, -63],
+      [-3, -61],
+      [166, -59],
+      [14, -44],
+      [-65, -51],
+      [35, -28],
+      [75, -7],
+      [-84, -62],
+      [-41, -50],
+      [-97, -1],
+      [-28, -89],
+      [-34, -17],
+      [-12, -59],
+      [-34, -40],
+      [-93, -59],
+      [-26, 2],
+      [-58, -43],
+      [-122, -14],
+      [-66, -52],
+      [-68, -18],
+      [-55, -32],
+      [-70, -91],
+      [-5, 133],
+      [-19, 53],
+      [123, 71],
+      [27, 34],
+      [43, 107],
+      [-22, 47],
+      [35, 91],
+      [29, 46],
+      [16, 84],
+      [-10, 30],
+      [27, 64],
+      [-75, 167],
+      [-77, 106],
+      [-57, 22],
+      [-6, 110],
+      [23, 51],
+      [-86, 44],
+      [-55, -14],
+      [-87, 104],
+      [72, 71],
+      [101, 18],
+      [35, -11],
+      [38, -50],
+      [-10, -52],
+      [19, -51],
+      [84, 8],
+      [47, 55],
+      [-2, 37],
+      [73, 135],
+      [-60, 98],
+      [-118, 11],
+      [-34, 47],
+      [-58, 16],
+      [-48, -13],
+      [-95, -73],
+      [2, -84],
+      [-25, -67],
+      [-53, -38],
+      [-29, -48],
+      [16, -50],
+      [-42, -67],
+      [-30, -85],
+      [-23, 4],
+      [-16, -116],
+      [26, -114],
+      [38, -69],
+      [39, -131],
+      [108, -104],
+      [77, -13],
+      [-17, -62],
+      [16, -53],
+      [-34, -11],
+      [7, -45],
+      [-34, -37],
+      [-45, 4],
+      [-31, -23],
+      [-59, 11],
+      [-56, -33],
+      [-49, 34],
+      [19, 46],
+      [-14, 37],
+      [-66, 72],
+      [-316, 27],
+      [-66, 21],
+      [-10, -46],
+      [-97, 51],
+      [-3, 34],
+      [-53, 0],
+      [-3, 30],
+      [53, 22],
+      [-38, 72],
+      [3, 27],
+      [-109, 82],
+      [-26, 78],
+      [38, 52],
+      [55, -64],
+      [76, -27],
+      [93, 64],
+      [76, 125],
+      [37, 110],
+      [12, 148],
+      [-13, 88],
+      [-21, 53],
+      [-36, 31],
+      [-18, 48],
+      [-154, 150],
+      [-48, 4],
+      [-44, 86],
+      [62, 154],
+      [38, 54],
+      [15, 60],
+      [-32, 141],
+      [-61, 69],
+      [50, 82],
+      [0, 82],
+      [-59, 6],
+      [-30, 31]
+    ],
+    [
+      [14293, 18535],
+      [39, 72]
+    ],
+    [
+      [14332, 18607],
+      [3, -28],
+      [95, 48],
+      [94, -11],
+      [20, -37],
+      [47, 0],
+      [50, 29],
+      [56, 77]
+    ],
+    [
+      [14697, 18685],
+      [54, -26],
+      [32, -61],
+      [105, -16],
+      [40, 44],
+      [63, 19],
+      [63, -3],
+      [8, 24],
+      [62, 11],
+      [74, 64],
+      [20, -59],
+      [57, -13],
+      [7, -34],
+      [94, -70],
+      [51, -9]
+    ],
+    [
+      [14378, 18716],
+      [-20, 73],
+      [-29, 50],
+      [0, 61]
+    ],
+    [
+      [14329, 18900],
+      [12, -12],
+      [0, -7],
+      [0, -27],
+      [0, -2],
+      [22, -23],
+      [33, 14],
+      [8, -58],
+      [-26, -69]
+    ],
+    [
+      [14423, 18927],
+      [7, 44],
+      [35, 35],
+      [44, -33]
+    ],
+    [
+      [14509, 18973],
+      [-6, -47],
+      [-42, -12],
+      [-2, -2],
+      [-21, -12],
+      [-14, 17],
+      [-1, 10]
+    ],
+    [
+      [33326, 26408],
+      [-52, -71],
+      [-54, -26],
+      [-26, 32],
+      [132, 65]
+    ],
+    [
+      [33257, 26487],
+      [16, 2],
+      [1, 0],
+      [3, 0],
+      [2, 0],
+      [46, -10],
+      [-3, -58],
+      [-163, -87],
+      [-59, 7],
+      [-36, -27],
+      [30, -45],
+      [73, -44],
+      [-37, -48],
+      [-83, -12],
+      [43, -42],
+      [23, -125],
+      [-41, -66],
+      [22, -27],
+      [48, 28],
+      [36, -79],
+      [72, -1],
+      [11, -43],
+      [-19, -81],
+      [-58, -4],
+      [-49, -28],
+      [-32, -41],
+      [43, -94],
+      [-96, -6],
+      [-23, 25],
+      [2, 94],
+      [-36, 16],
+      [43, 58],
+      [-103, 105],
+      [5, 26],
+      [-49, 72],
+      [-39, -16],
+      [-168, 41],
+      [-227, -17],
+      [-20, -15],
+      [-133, -29],
+      [-80, -34],
+      [-129, -104],
+      [-16, -115],
+      [29, -83],
+      [-58, 6],
+      [-23, -27]
+    ],
+    [
+      [32025, 25559],
+      [-153, 20],
+      [-12, 65],
+      [-71, 52],
+      [-24, 80],
+      [0, 65],
+      [58, 60],
+      [27, 93],
+      [-16, 28],
+      [-19, 118],
+      [-57, 27],
+      [-110, -7]
+    ],
+    [
+      [31648, 26160],
+      [27, 43],
+      [14, 65],
+      [36, 26],
+      [143, 54],
+      [46, 62],
+      [72, 9],
+      [49, 50],
+      [34, 66],
+      [-14, 54],
+      [24, 66],
+      [-16, 14],
+      [-8, 89],
+      [17, 27]
+    ],
+    [
+      [32072, 26785],
+      [60, -13],
+      [22, -40],
+      [86, -9],
+      [41, -83],
+      [41, -15],
+      [64, 19],
+      [38, -17],
+      [117, -18],
+      [64, -33],
+      [108, -118],
+      [28, -63],
+      [30, 3],
+      [-5, 94],
+      [24, 99],
+      [-80, 59],
+      [23, 22],
+      [49, -44],
+      [76, 87],
+      [70, -19],
+      [23, -27],
+      [92, -24],
+      [85, -52],
+      [32, -64],
+      [97, -42]
+    ],
+    [
+      [19035, 20052],
+      [31, -17],
+      [4, -64],
+      [-59, 31],
+      [24, 50]
+    ],
+    [
+      [21236, 22657],
+      [4, -24],
+      [71, -45],
+      [65, -2],
+      [33, -33],
+      [62, 12],
+      [77, -10],
+      [42, 15],
+      [66, -87],
+      [57, -28],
+      [83, 16],
+      [24, 69],
+      [58, 23],
+      [25, -46],
+      [71, 17],
+      [1, -44],
+      [50, -79],
+      [-4, -50],
+      [22, -54],
+      [-8, -91],
+      [119, 13],
+      [79, -18],
+      [23, -79],
+      [-48, -52],
+      [10, -46],
+      [58, -58],
+      [20, -59],
+      [30, 12],
+      [89, -29],
+      [40, 16],
+      [54, -20]
+    ],
+    [
+      [22509, 21896],
+      [-39, -40],
+      [-85, -154],
+      [-3, -30],
+      [-62, -128],
+      [-23, -146],
+      [-19, -75],
+      [-7, -95],
+      [-41, 17],
+      [-53, 70],
+      [-58, 17],
+      [-8, 43],
+      [-47, 35],
+      [-26, 43],
+      [-61, 62],
+      [-9, 64],
+      [-163, 89],
+      [-33, 89],
+      [-91, 31],
+      [-88, 9],
+      [-22, 19],
+      [-154, 17],
+      [-39, 40],
+      [-91, -6],
+      [-172, -37],
+      [-78, -39],
+      [9, -20],
+      [-108, -45],
+      [-111, -64],
+      [12, -37],
+      [-45, -42],
+      [-78, -18],
+      [-107, -9],
+      [-54, -42],
+      [-73, -10],
+      [-38, -21],
+      [3, -60],
+      [-34, -27],
+      [-8, -128],
+      [41, -41],
+      [-32, -36],
+      [17, -39],
+      [-88, -103],
+      [-83, -70],
+      [-54, -120],
+      [-76, -58],
+      [-21, -115],
+      [-43, 32],
+      [-70, 2],
+      [-34, -29],
+      [-42, -104],
+      [-12, -64],
+      [9, -56],
+      [26, -38],
+      [-1, -70],
+      [-31, -31],
+      [-83, -15],
+      [27, -143],
+      [75, -29],
+      [26, -50],
+      [11, -79],
+      [-36, -22],
+      [-129, 124],
+      [-101, 36],
+      [-72, -10],
+      [-72, -78],
+      [-46, -10],
+      [-42, 31],
+      [-30, -18],
+      [-68, 91],
+      [-45, 7],
+      [-117, -62],
+      [-22, 71],
+      [41, 4],
+      [18, 124],
+      [120, 89],
+      [-19, 75],
+      [-49, -17],
+      [-45, 7]
+    ],
+    [
+      [14378, 18716],
+      [18, -25],
+      [-60, -56],
+      [-3, -11],
+      [-1, -10],
+      [0, -7]
+    ],
+    [
+      [14293, 18535],
+      [-17, 18],
+      [-18, 19],
+      [-58, 46],
+      [11, 57],
+      [-16, 37],
+      [-20, 14],
+      [-1, 2],
+      [-2, 7],
+      [0, 3],
+      [2, 7],
+      [11, 19],
+      [3, 3],
+      [4, 7],
+      [4, 6],
+      [5, 8],
+      [2, 5],
+      [31, 23],
+      [3, 1],
+      [19, 3],
+      [14, 7],
+      [3, 1],
+      [11, 9],
+      [10, 11],
+      [7, 11],
+      [2, 3],
+      [1, 1],
+      [25, 37]
+    ],
+    [
+      [14423, 18927],
+      [-20, 51],
+      [50, 44],
+      [54, -11],
+      [2, -38]
+    ],
+    [
+      [14694, 19141],
+      [-6, -72],
+      [-55, -39],
+      [1, 68],
+      [60, 43]
+    ],
+    [
+      [14618, 19175],
+      [30, -31],
+      [-25, -29],
+      [-43, 22],
+      [38, 38]
+    ],
+    [
+      [14208, 19604],
+      [33, -18],
+      [60, 12],
+      [61, -31],
+      [3, -92],
+      [21, -38],
+      [0, -67],
+      [152, 74],
+      [70, 77],
+      [87, 27],
+      [51, -29],
+      [63, 17],
+      [81, -4],
+      [-43, -86],
+      [0, -37],
+      [-56, -78],
+      [28, -8],
+      [-45, -77],
+      [-35, -26],
+      [-58, -2],
+      [-28, 43],
+      [-60, -22],
+      [-92, 36],
+      [-36, -5],
+      [-57, 26],
+      [-36, -39],
+      [42, -23],
+      [1, -63],
+      [-39, -100],
+      [-53, -28],
+      [-13, -31],
+      [-97, -57],
+      [-33, -93],
+      [-45, -43],
+      [-57, -18],
+      [-17, -54],
+      [-36, -34],
+      [-18, 68],
+      [-33, 44],
+      [30, 46],
+      [-90, 19],
+      [53, 94],
+      [1, 53],
+      [-31, 50],
+      [-7, 60],
+      [45, 86],
+      [18, 84],
+      [59, 82],
+      [21, 66],
+      [-19, 59],
+      [56, -5],
+      [97, 56],
+      [1, 29]
+    ],
+    [
+      [14960, 19734],
+      [34, -35],
+      [-37, -42],
+      [-27, 34],
+      [30, 43]
+    ],
+    [
+      [14856, 19771],
+      [32, -33],
+      [2, -56],
+      [-40, -91],
+      [-68, 7],
+      [19, 71],
+      [-38, 23],
+      [26, 46],
+      [67, 33]
+    ],
+    [
+      [16616, 20239],
+      [-126, -15],
+      [-38, -83],
+      [-21, -104],
+      [-77, -42],
+      [-37, -68],
+      [-4, -46],
+      [-60, 0],
+      [-45, -76],
+      [-16, -117],
+      [-47, -34],
+      [-71, 21],
+      [-29, -72],
+      [-41, -17],
+      [9, -46],
+      [-29, -33],
+      [21, -169],
+      [43, -68],
+      [44, -9],
+      [23, -67],
+      [-4, -47],
+      [41, -19],
+      [35, -48],
+      [-63, -102],
+      [-56, -3],
+      [-10, -92],
+      [34, -5],
+      [32, -65],
+      [48, -51],
+      [-10, -84],
+      [-89, 6],
+      [-34, 29],
+      [-58, 5],
+      [-70, -118],
+      [-78, -12],
+      [-47, 34],
+      [-62, -22],
+      [-39, -49],
+      [-43, 15],
+      [-55, -17],
+      [-160, 7]
+    ],
+    [
+      [14697, 18685],
+      [18, 107],
+      [62, 78],
+      [40, 8],
+      [12, 56],
+      [40, 58],
+      [64, 28],
+      [-30, 49],
+      [50, 108],
+      [162, 168],
+      [-15, 81],
+      [-34, 1],
+      [-11, 47],
+      [59, 22],
+      [-72, 42],
+      [56, 38],
+      [65, 97],
+      [66, 40],
+      [-26, 38],
+      [-169, 8],
+      [-43, -22],
+      [-92, -15],
+      [-5, 67],
+      [76, 47],
+      [82, 33],
+      [50, 69],
+      [65, 32],
+      [15, 71],
+      [-18, 71],
+      [29, 50],
+      [-63, 105],
+      [-111, 24],
+      [-8, 70],
+      [-79, 49],
+      [-35, -5],
+      [-39, 31],
+      [-26, 160],
+      [-58, 51]
+    ],
+    [
+      [15655, 20870],
+      [87, -45],
+      [26, -52],
+      [35, -26],
+      [63, -5],
+      [40, -62],
+      [39, -1],
+      [49, 62],
+      [-7, 45],
+      [25, 39],
+      [-84, 119],
+      [13, 73],
+      [65, 25],
+      [37, 30],
+      [42, 2],
+      [100, -27],
+      [105, -107],
+      [19, -115],
+      [40, -22],
+      [46, -55],
+      [23, -99],
+      [36, -31],
+      [2, -77],
+      [19, -176],
+      [33, -38],
+      [79, -45],
+      [29, -43]
+    ],
+    [
+      [25411, 26053],
+      [12, -30],
+      [61, -59],
+      [46, -87],
+      [37, -31],
+      [-34, -106],
+      [48, -157],
+      [-4, -46],
+      [-30, -90],
+      [-1, -76],
+      [-35, -24],
+      [31, -62],
+      [-1, -51],
+      [44, -50],
+      [45, -95],
+      [-24, -104],
+      [71, -45],
+      [74, 36],
+      [13, -84],
+      [61, -31],
+      [40, 14],
+      [50, -122]
+    ],
+    [
+      [25915, 24753],
+      [22, -36],
+      [-4, -46],
+      [27, -34]
+    ],
+    [
+      [25960, 24637],
+      [-34, -72],
+      [-82, 12],
+      [-25, 60],
+      [-61, -6],
+      [-62, 13],
+      [-43, -80],
+      [-74, -8],
+      [-118, 42],
+      [-74, 8],
+      [-38, 59],
+      [-15, 59]
+    ],
+    [
+      [25334, 24724],
+      [29, 60],
+      [-67, 93],
+      [-36, 18],
+      [-31, 102],
+      [-44, 28],
+      [-22, 47],
+      [-59, 36],
+      [0, 59],
+      [-75, 2],
+      [-26, -66],
+      [35, -14],
+      [-13, -47],
+      [-63, -4],
+      [-11, 25],
+      [-99, 70],
+      [8, 77],
+      [-98, 41],
+      [-44, -10],
+      [-75, 27],
+      [-19, 70]
+    ],
+    [
+      [23628, 26760],
+      [24, -27],
+      [75, -6],
+      [90, 44],
+      [41, 64],
+      [74, -5],
+      [71, 42],
+      [47, 69],
+      [122, 28],
+      [167, 54],
+      [90, -74],
+      [24, -69],
+      [39, -30],
+      [-15, -44],
+      [-49, -19],
+      [-41, -46],
+      [-17, -69],
+      [-61, -53],
+      [-50, -76],
+      [124, 10],
+      [-29, -53],
+      [67, -31],
+      [31, -37],
+      [89, 0],
+      [-30, -141],
+      [76, 75],
+      [90, 12],
+      [-19, 32],
+      [-69, -12],
+      [-39, 68],
+      [89, 70],
+      [19, -13],
+      [68, 34],
+      [96, -32]
+    ],
+    [
+      [27324, 25309],
+      [-78, -21],
+      [-82, -51],
+      [-34, -126],
+      [15, -93],
+      [-63, -114],
+      [-117, -150],
+      [-29, -50],
+      [-37, -144],
+      [53, -102],
+      [-4, -77],
+      [-37, -40],
+      [183, -24],
+      [52, -23],
+      [29, -59],
+      [68, -38],
+      [87, -33],
+      [7, -21],
+      [69, -35],
+      [64, 0],
+      [50, -16],
+      [26, -48],
+      [40, -13],
+      [1, -46],
+      [86, -1],
+      [28, -93],
+      [-34, -37],
+      [-106, -72],
+      [31, -32],
+      [41, -92],
+      [-16, -31],
+      [31, -55],
+      [-159, -58],
+      [-89, 18],
+      [-19, 47],
+      [129, -8],
+      [-16, 67],
+      [-48, -34],
+      [-70, 33],
+      [-148, 5],
+      [36, 69],
+      [-64, -24],
+      [1, -27],
+      [-143, -130],
+      [-45, 41],
+      [-84, -46],
+      [-49, 33],
+      [-30, -103],
+      [-89, 17],
+      [-106, -68],
+      [-73, -30],
+      [-21, 37],
+      [-69, -62],
+      [-23, 4],
+      [-48, -66],
+      [8, -79],
+      [55, 2],
+      [-22, -60],
+      [-129, -15],
+      [-68, -21],
+      [35, -31],
+      [49, -8],
+      [3, -41],
+      [71, -45],
+      [-26, -64],
+      [7, -53],
+      [-66, -8],
+      [-106, -123],
+      [-69, 37],
+      [-5, -65],
+      [-38, -39],
+      [-42, 12],
+      [-59, -73],
+      [-62, -122],
+      [-72, -195]
+    ],
+    [
+      [25885, 22296],
+      [-62, 28],
+      [-40, -20],
+      [-48, 59],
+      [-49, 29],
+      [-44, 80],
+      [-56, 41],
+      [7, 60],
+      [-13, 74],
+      [12, 52]
+    ],
+    [
+      [25592, 22699],
+      [20, 46],
+      [59, 12],
+      [-13, 47],
+      [63, 77],
+      [64, 4],
+      [92, 67],
+      [31, 61],
+      [94, -6],
+      [69, -19],
+      [-15, 130],
+      [25, 26],
+      [-3, 98],
+      [15, 72],
+      [-37, 66],
+      [28, 34],
+      [45, 99],
+      [-66, 89],
+      [-4, 23],
+      [67, 35],
+      [-40, 29],
+      [-45, 115],
+      [-31, 35],
+      [50, 93],
+      [134, 31],
+      [85, 0],
+      [26, 111],
+      [-16, 73],
+      [-65, -26],
+      [-47, 98],
+      [-82, -27],
+      [-105, 50],
+      [-26, 39],
+      [10, 49],
+      [34, 48],
+      [-5, 58],
+      [38, 50],
+      [-43, 76],
+      [9, 20],
+      [-47, 55]
+    ],
+    [
+      [25915, 24753],
+      [81, 21],
+      [54, 32],
+      [-7, 50],
+      [78, 60],
+      [-51, 19],
+      [-27, 35],
+      [57, 15],
+      [62, -21],
+      [64, 8],
+      [33, -33],
+      [101, -31],
+      [57, 31],
+      [56, 7],
+      [33, 34],
+      [89, 37],
+      [20, 89],
+      [41, 30],
+      [46, 105],
+      [-3, 103],
+      [45, 51],
+      [-9, 21],
+      [18, 108],
+      [-19, 12],
+      [36, 73],
+      [-82, 75],
+      [5, 52]
+    ],
+    [
+      [36894, 32876],
+      [41, -26],
+      [-22, -71],
+      [-38, 22],
+      [-21, 48],
+      [40, 27]
+    ],
+    [
+      [37013, 34178],
+      [11, -29],
+      [-52, -26],
+      [-6, 52],
+      [47, 3]
+    ],
+    [
+      [37021, 34391],
+      [23, -36],
+      [15, -122],
+      [28, -16],
+      [-20, -73],
+      [-44, 75],
+      [-85, -60],
+      [-15, -39],
+      [18, -44],
+      [-60, -49],
+      [-12, -29],
+      [-70, -30],
+      [-9, -52],
+      [89, -61],
+      [13, -29],
+      [-51, -41],
+      [-24, 21],
+      [-36, -72],
+      [-38, 1],
+      [-83, -65],
+      [31, -24],
+      [128, -28],
+      [-10, -60],
+      [-74, -61],
+      [-47, -6],
+      [-15, -43],
+      [62, -18],
+      [9, -46],
+      [81, 35],
+      [23, -65],
+      [-16, -69],
+      [-41, 2],
+      [-8, 49],
+      [-50, -26],
+      [23, -52],
+      [-3, -69],
+      [-43, -69],
+      [64, -51],
+      [-46, -42],
+      [12, -28],
+      [59, -2],
+      [28, -61],
+      [11, -84],
+      [-66, -14],
+      [-31, 27],
+      [-48, -7],
+      [-6, 69],
+      [-36, 37],
+      [-29, 94],
+      [-39, 6],
+      [-84, -24],
+      [-3, 60],
+      [63, 4],
+      [48, 49],
+      [-69, 7],
+      [-59, -54],
+      [-113, 6],
+      [-159, -42],
+      [-123, -76],
+      [-50, 27],
+      [-92, 11],
+      [-51, -28],
+      [-20, -84],
+      [51, -32],
+      [24, -39],
+      [-55, -45],
+      [-65, -15],
+      [-117, -187],
+      [-42, -97],
+      [-46, -170],
+      [-22, -205],
+      [16, -174],
+      [18, -52]
+    ],
+    [
+      [34349, 32093],
+      [18, 71],
+      [-26, 65],
+      [2, 47],
+      [173, 1],
+      [99, 51],
+      [19, 94],
+      [42, 27],
+      [70, 119],
+      [-24, 113],
+      [16, 94],
+      [32, 49],
+      [74, 73],
+      [-4, 76],
+      [68, 43],
+      [30, 41],
+      [8, 86],
+      [76, 53],
+      [-42, 73],
+      [-60, 36],
+      [2, 47],
+      [-29, 37],
+      [38, 59],
+      [-3, 49],
+      [-59, 100],
+      [114, 23],
+      [33, 73],
+      [10, 67],
+      [-22, 54],
+      [68, 101],
+      [-83, 41],
+      [-7, 77],
+      [-26, 41],
+      [-92, 72],
+      [22, 33]
+    ],
+    [
+      [17698, 20030],
+      [-29, -9],
+      [-32, -60],
+      [-54, -41],
+      [-81, -37],
+      [-30, -47],
+      [21, -46],
+      [-61, -97],
+      [-82, -29],
+      [-40, -86],
+      [15, -64],
+      [80, -51],
+      [-66, -53],
+      [-70, 32],
+      [-19, -59],
+      [59, -39],
+      [10, -52],
+      [-86, -25],
+      [-40, -118],
+      [-55, -104],
+      [-35, -100],
+      [1, -44],
+      [-44, -117],
+      [-3, -45],
+      [-34, -130],
+      [-70, -171],
+      [3, -22],
+      [-88, -296],
+      [-17, -172],
+      [9, -44],
+      [55, -68],
+      [-37, -121],
+      [9, -29],
+      [-33, -93],
+      [23, -30],
+      [-13, -103],
+      [-76, -45],
+      [-36, -63],
+      [-29, -133],
+      [2, -86],
+      [-47, -25],
+      [19, -96],
+      [-78, -73],
+      [6, -85],
+      [-38, 27],
+      [-14, 43],
+      [-92, -26],
+      [-33, 15],
+      [-20, 46],
+      [12, 51],
+      [-32, 9],
+      [-39, 50],
+      [-81, 10]
+    ],
+    [
+      [16616, 20239],
+      [49, -56],
+      [125, 11],
+      [40, 34],
+      [77, 22],
+      [27, -40],
+      [56, -44],
+      [-17, -47],
+      [61, -50],
+      [70, -1],
+      [30, 36],
+      [65, 1],
+      [91, -18],
+      [69, 15],
+      [49, 57],
+      [15, 73],
+      [47, 17],
+      [113, -21],
+      [85, -43],
+      [-30, -75],
+      [22, -91],
+      [38, 11]
+    ],
+    [
+      [31253, 27522],
+      [-10, -44],
+      [48, -75],
+      [-15, -74]
+    ],
+    [
+      [31276, 27329],
+      [-41, 1],
+      [-73, -90],
+      [-120, 7],
+      [-3, 67],
+      [-29, 34],
+      [-120, -5],
+      [-56, 7],
+      [-23, -39],
+      [-48, -8],
+      [-49, 50],
+      [17, 46],
+      [-53, 42],
+      [-106, 31],
+      [-45, -58],
+      [-47, -95],
+      [-86, -105],
+      [-72, 60],
+      [-20, -12],
+      [-95, -213],
+      [85, -56],
+      [-5, -24],
+      [-95, -82],
+      [22, -89],
+      [51, -79]
+    ],
+    [
+      [30265, 26719],
+      [-31, -43],
+      [2, -47],
+      [-29, -67],
+      [-36, 14],
+      [-57, -62],
+      [34, -25],
+      [-42, -54],
+      [4, -43],
+      [40, -33],
+      [-15, -68],
+      [-61, -6],
+      [0, -64],
+      [33, -20],
+      [24, -69],
+      [-17, -44],
+      [-198, -83],
+      [-46, -77],
+      [-44, 3],
+      [-108, -62],
+      [-41, -41],
+      [-52, 0],
+      [-46, -90],
+      [-23, 9],
+      [-85, -19]
+    ],
+    [
+      [29015, 28436],
+      [35, 52],
+      [55, 29],
+      [43, 77],
+      [-3, 71],
+      [40, 50],
+      [61, 16],
+      [-35, 65],
+      [13, 50],
+      [60, 42],
+      [47, 3],
+      [0, 86],
+      [28, 104],
+      [-19, 121],
+      [5, 74],
+      [18, 30]
+    ],
+    [
+      [29363, 29306],
+      [39, 14],
+      [98, 85],
+      [6, 28],
+      [73, 95],
+      [-15, 98],
+      [109, 31],
+      [69, -34],
+      [63, 11],
+      [55, -14],
+      [37, -52],
+      [-56, -122],
+      [95, -65],
+      [41, 19],
+      [18, 49],
+      [35, 32],
+      [64, 16],
+      [61, -14],
+      [119, 49],
+      [68, 7],
+      [68, -38],
+      [11, 138],
+      [42, 31],
+      [41, -6],
+      [37, 25],
+      [42, 108],
+      [31, 39],
+      [138, 49],
+      [99, 25],
+      [103, -19],
+      [42, -88],
+      [-8, -125],
+      [76, -94],
+      [39, -29],
+      [99, -42],
+      [-14, -69],
+      [23, -43],
+      [-52, -80],
+      [38, -23],
+      [12, -45]
+    ],
+    [
+      [11985, 20152],
+      [29, -49],
+      [-10, -48],
+      [-57, -13],
+      [38, 110]
+    ],
+    [
+      [11623, 20169],
+      [2, -59],
+      [66, -67],
+      [-10, -71],
+      [23, -52],
+      [48, -32],
+      [41, -50],
+      [-7, -33],
+      [-73, 3],
+      [-57, -17],
+      [-38, 47],
+      [-84, -48],
+      [58, -100],
+      [-44, -42],
+      [-38, 12],
+      [-30, 64],
+      [-93, -9],
+      [-47, 15],
+      [-27, -42],
+      [-46, 35],
+      [-64, 22],
+      [21, 29],
+      [54, 14],
+      [65, 83],
+      [-39, 27],
+      [13, 52],
+      [-20, 39],
+      [0, 101],
+      [37, 47],
+      [68, -44],
+      [12, -49],
+      [41, 26],
+      [40, -19],
+      [40, 28],
+      [50, 66],
+      [38, 24]
+    ],
+    [
+      [11732, 20275],
+      [62, -46],
+      [27, -58],
+      [-62, -84],
+      [-86, 44],
+      [3, 100],
+      [56, 44]
+    ],
+    [
+      [11909, 20342],
+      [18, -55],
+      [-18, -36],
+      [-51, -40],
+      [-19, 58],
+      [-79, 32],
+      [32, 51],
+      [42, -18],
+      [15, -36],
+      [60, 44]
+    ],
+    [
+      [11983, 20477],
+      [49, -20],
+      [29, -53],
+      [-26, -80],
+      [-88, 13],
+      [-25, 72],
+      [43, 1],
+      [18, 67]
+    ],
+    [
+      [13190, 20508],
+      [44, -17],
+      [-14, -50],
+      [-38, 17],
+      [8, 50]
+    ],
+    [
+      [13215, 20775],
+      [45, 1],
+      [-23, -68],
+      [-51, -22],
+      [-15, 54],
+      [44, 35]
+    ],
+    [
+      [12225, 21011],
+      [-20, -92],
+      [35, -39],
+      [-24, -101],
+      [-33, -55],
+      [-6, -53],
+      [44, -73],
+      [127, 51],
+      [15, -66],
+      [-65, -48],
+      [-16, -43],
+      [-47, -2],
+      [-45, -42],
+      [-29, -55],
+      [22, -15],
+      [17, -67],
+      [-48, 2],
+      [-30, -35],
+      [-44, 49],
+      [5, 59],
+      [-18, 101],
+      [-72, 10],
+      [0, 55],
+      [33, 27],
+      [52, -1],
+      [19, 44],
+      [-15, 74],
+      [47, 27],
+      [39, 82],
+      [35, 14],
+      [14, 43],
+      [-29, 45],
+      [37, 104]
+    ],
+    [
+      [12112, 21135],
+      [37, -14],
+      [-35, -59],
+      [-58, 34],
+      [56, 39]
+    ],
+    [
+      [12263, 21332],
+      [34, -78],
+      [-46, -51],
+      [-73, 16],
+      [-40, 36],
+      [46, 40],
+      [47, 3],
+      [32, 34]
+    ],
+    [
+      [13572, 21409],
+      [-34, -26],
+      [-26, -71],
+      [46, -82],
+      [60, -53],
+      [-12, -82],
+      [15, -42],
+      [138, -56],
+      [103, 9],
+      [36, -86],
+      [-9, -41],
+      [-53, -10],
+      [-5, -35],
+      [49, -49],
+      [66, -27],
+      [34, -54],
+      [122, -108],
+      [182, -56],
+      [100, -11]
+    ],
+    [
+      [14384, 20529],
+      [-1, -52],
+      [-68, -40],
+      [-35, -43],
+      [-56, -36],
+      [5, -22],
+      [74, -64],
+      [36, 0],
+      [86, 40],
+      [38, 35],
+      [75, 6],
+      [58, -15],
+      [61, -41],
+      [18, -58],
+      [62, -120],
+      [-21, -37],
+      [12, -41],
+      [-62, -82],
+      [17, -59],
+      [-99, -69],
+      [-55, 4],
+      [-69, -58],
+      [-32, -43],
+      [-89, -40],
+      [-23, 64],
+      [-81, 47],
+      [12, 93],
+      [41, 7],
+      [33, 43],
+      [53, 35],
+      [21, 46],
+      [-40, 56],
+      [6, 50],
+      [-28, 24],
+      [-67, 3],
+      [-34, -19],
+      [-85, 15],
+      [-119, -84],
+      [-139, 17],
+      [6, -49],
+      [-80, -104],
+      [-40, -82],
+      [-59, -44],
+      [-62, -27],
+      [5, -26],
+      [-65, -70],
+      [-44, -18],
+      [-30, 28],
+      [45, 49],
+      [3, 33],
+      [47, 104],
+      [-40, 21],
+      [41, 44],
+      [51, -16],
+      [11, 65],
+      [-66, 33],
+      [-27, 89],
+      [-53, 46],
+      [3, 48],
+      [-59, 8],
+      [-10, -34],
+      [-80, 60],
+      [-46, 77],
+      [6, 32],
+      [-62, 119],
+      [-43, 41],
+      [12, 86],
+      [42, 48],
+      [-15, 67],
+      [23, 7],
+      [46, 136],
+      [54, -26],
+      [106, -91],
+      [-32, -28],
+      [-27, -68],
+      [26, -20],
+      [37, 53],
+      [34, -31],
+      [38, 0],
+      [44, -74],
+      [-29, -24],
+      [21, -41],
+      [-22, -79],
+      [-16, -114],
+      [28, 2],
+      [52, -46],
+      [20, 31],
+      [43, -13],
+      [62, 59],
+      [61, -46],
+      [26, 11],
+      [78, -50],
+      [10, 37],
+      [-55, 59],
+      [-17, 50],
+      [-47, 44],
+      [-6, 103],
+      [45, 42],
+      [-11, 65],
+      [-135, 114],
+      [-44, -6],
+      [-36, -29],
+      [-78, 75],
+      [-44, -12],
+      [-20, -46],
+      [-46, 12],
+      [-26, 89],
+      [32, -4],
+      [-6, 76],
+      [-44, 12],
+      [-18, -40],
+      [-61, -15],
+      [-42, 9],
+      [61, 58],
+      [-74, 70],
+      [0, 46],
+      [-96, 42],
+      [-101, 14],
+      [14, 89],
+      [58, 40],
+      [-20, 78],
+      [-34, 41],
+      [29, 88],
+      [-14, 31],
+      [146, -20],
+      [48, 43],
+      [13, -41],
+      [62, -51],
+      [90, 49],
+      [81, -1],
+      [5, -69]
+    ],
+    [
+      [13099, 21575],
+      [2, -87],
+      [27, -33],
+      [-47, -19],
+      [-7, -31],
+      [-55, -13],
+      [31, -51],
+      [-65, -67],
+      [-17, -62],
+      [-50, -87],
+      [-51, -48],
+      [-120, -55],
+      [-2, 36],
+      [58, 29],
+      [-52, 29],
+      [10, 46],
+      [52, 43],
+      [-14, 53],
+      [40, 44],
+      [43, 17],
+      [-17, 114],
+      [61, 15],
+      [98, 2],
+      [58, 52],
+      [17, 73]
+    ],
+    [
+      [13586, 21581],
+      [64, -16],
+      [-7, -28],
+      [62, -24],
+      [-93, -77],
+      [-26, 145]
+    ],
+    [
+      [12861, 21647],
+      [-13, -70],
+      [13, -125],
+      [-35, -12],
+      [-27, 32],
+      [36, 103],
+      [1, 57],
+      [25, 15]
+    ],
+    [
+      [13502, 21705],
+      [63, -91],
+      [-53, 7],
+      [-60, -55],
+      [-28, 34],
+      [46, 20],
+      [32, 85]
+    ],
+    [
+      [13103, 21807],
+      [37, -64],
+      [-39, -17],
+      [-68, 17],
+      [10, 40],
+      [60, 24]
+    ],
+    [
+      [13404, 22618],
+      [35, -26],
+      [92, -17],
+      [-26, -85],
+      [34, -21],
+      [2, -54],
+      [35, -46],
+      [-34, -32],
+      [-46, 6],
+      [-92, -74],
+      [-26, 0],
+      [-85, 71],
+      [-14, 75],
+      [9, 76],
+      [28, 13],
+      [20, 72],
+      [68, 42]
+    ],
+    [
+      [12891, 24566],
+      [58, -43],
+      [23, -107],
+      [-25, -58],
+      [-16, -141],
+      [-71, -118],
+      [-43, -33],
+      [-75, -88],
+      [15, -28],
+      [-12, -74],
+      [37, -9],
+      [-33, -59],
+      [37, -41],
+      [18, -58],
+      [-54, 1],
+      [12, -112],
+      [-54, -35],
+      [-59, 3],
+      [-22, -73],
+      [19, -34],
+      [-48, -40],
+      [-12, -70],
+      [-25, -35],
+      [-2, -78],
+      [-105, -81],
+      [-122, 76],
+      [24, 138],
+      [0, 77],
+      [35, 142],
+      [-4, 71],
+      [64, 23],
+      [-4, -62],
+      [122, 56],
+      [34, -67],
+      [50, 14],
+      [-28, 45],
+      [64, 32],
+      [-10, 82],
+      [-23, 16],
+      [-34, -77],
+      [-66, 8],
+      [-9, 24],
+      [-71, -7],
+      [68, 71],
+      [-10, 96],
+      [8, 96],
+      [35, 49],
+      [23, 77],
+      [38, 41],
+      [-25, 43],
+      [-49, 16],
+      [40, 59],
+      [32, 139],
+      [141, 17],
+      [51, 71],
+      [63, 45]
+    ],
+    [
+      [25592, 22699],
+      [-47, -10],
+      [-39, 22],
+      [-28, -23],
+      [-87, -22],
+      [-66, 40],
+      [-106, -6],
+      [-29, -37],
+      [-48, -23],
+      [-21, 56],
+      [-38, 13],
+      [37, 112],
+      [37, 40],
+      [-31, 76],
+      [-58, 20],
+      [6, 51],
+      [-36, 56],
+      [-79, 38],
+      [13, 52],
+      [67, 58],
+      [14, 47],
+      [69, 36],
+      [38, 56],
+      [-14, 49],
+      [68, 47],
+      [81, -36],
+      [39, 57],
+      [-21, 64],
+      [-35, 32],
+      [-43, -3],
+      [-37, 122],
+      [6, 64],
+      [-41, 66]
+    ],
+    [
+      [25163, 23813],
+      [62, 36],
+      [-15, 48],
+      [34, 59],
+      [-14, 184],
+      [-47, 50],
+      [57, 87],
+      [-45, 69],
+      [14, 88],
+      [24, 63],
+      [-1, 59],
+      [52, 43],
+      [15, 131],
+      [35, -6]
+    ],
+    [
+      [30825, 32920],
+      [28, -28],
+      [-21, -59],
+      [5, -63],
+      [-35, -109],
+      [1, -36],
+      [-65, -96],
+      [-48, -105],
+      [1, -79],
+      [76, -46],
+      [91, 20],
+      [78, 33],
+      [27, -55],
+      [-48, -114],
+      [-52, -76],
+      [-49, -129],
+      [-54, -61],
+      [-88, -43],
+      [-130, -111],
+      [-102, -6],
+      [-57, -38],
+      [-65, -19],
+      [-62, 16],
+      [0, 61],
+      [94, 17],
+      [50, 94],
+      [-22, 52],
+      [61, 81],
+      [63, 40],
+      [-2, 44],
+      [-70, 63],
+      [-43, 0],
+      [-59, -97],
+      [-45, 29],
+      [18, 121],
+      [-13, 73],
+      [30, 34],
+      [49, 110],
+      [37, 30],
+      [28, 72],
+      [50, 73],
+      [34, 7],
+      [87, 88],
+      [95, 60],
+      [1, 49],
+      [28, 48],
+      [50, 45],
+      [48, 10]
+    ],
+    [
+      [32315, 33284],
+      [-4, -68],
+      [-65, -5],
+      [69, 73]
+    ],
+    [
+      [29363, 29306],
+      [-17, 65],
+      [-43, 93],
+      [-10, 94],
+      [-29, 35],
+      [8, 89],
+      [-110, 62],
+      [-53, 60]
+    ],
+    [
+      [29109, 29804],
+      [31, 2],
+      [139, 46],
+      [77, 35],
+      [96, 28],
+      [62, 35],
+      [105, 26],
+      [89, 48],
+      [129, 91],
+      [84, 28],
+      [93, 104],
+      [73, -20],
+      [80, -2],
+      [87, 14],
+      [74, 34],
+      [171, 134],
+      [197, 190],
+      [97, 54],
+      [98, 41],
+      [52, 53],
+      [44, 68],
+      [62, 124],
+      [117, 154],
+      [73, 43],
+      [37, 77],
+      [27, 26],
+      [49, 117],
+      [31, 118],
+      [-4, 24],
+      [72, 184],
+      [87, 94],
+      [115, 79],
+      [168, 98],
+      [103, 73],
+      [67, 33],
+      [72, 0],
+      [185, 69],
+      [177, 138],
+      [108, 117],
+      [124, 186],
+      [-1, 51],
+      [42, 80],
+      [-17, 22],
+      [15, 63],
+      [4, 204],
+      [8, 64],
+      [54, 118],
+      [30, 38],
+      [104, 206]
+    ],
+    [
+      [32896, 33413],
+      [110, -62],
+      [39, 6],
+      [33, -32],
+      [124, -19],
+      [49, -38],
+      [-25, -37],
+      [14, -44],
+      [-31, -126],
+      [46, -26],
+      [37, -54],
+      [85, -27],
+      [41, 12],
+      [59, -29],
+      [116, -114],
+      [1, -24],
+      [-80, -122],
+      [-138, -79],
+      [-159, 20],
+      [-52, -76],
+      [17, -47],
+      [-1, -74],
+      [-34, -75],
+      [36, -71],
+      [-70, -47],
+      [-7, -74],
+      [-26, -41],
+      [10, -47],
+      [-36, -131],
+      [19, -52],
+      [47, -55],
+      [66, -30],
+      [45, 13],
+      [45, -72]
+    ],
+    [
+      [16326, 22029],
+      [40, 25],
+      [27, -29],
+      [68, -5],
+      [46, -46],
+      [91, 2],
+      [40, -28],
+      [33, 15],
+      [121, -9],
+      [10, 45],
+      [75, 59],
+      [35, 54],
+      [49, 32],
+      [-10, 36],
+      [111, 25],
+      [59, 24],
+      [122, -67],
+      [26, 14],
+      [80, -129],
+      [65, -78],
+      [21, -88],
+      [-24, -57],
+      [14, -53],
+      [-16, -60],
+      [-37, -62],
+      [-20, -81],
+      [-31, 0],
+      [-53, 37],
+      [-50, -14],
+      [23, -52],
+      [-4, -42],
+      [-91, -13],
+      [-22, -53],
+      [-88, 20],
+      [-11, 27],
+      [-74, -16],
+      [-10, -44],
+      [37, -169],
+      [149, -49],
+      [51, 36],
+      [152, 42],
+      [123, -90],
+      [160, 14],
+      [110, 46],
+      [29, -10],
+      [-54, -77],
+      [-38, -77],
+      [-48, -35],
+      [-46, -135],
+      [71, -16],
+      [47, 37],
+      [52, -2],
+      [-2, -53],
+      [-37, -5],
+      [-25, -36],
+      [92, -50],
+      [54, 32],
+      [22, -35],
+      [42, -13],
+      [66, 27],
+      [8, -27],
+      [-66, -34],
+      [-62, 17],
+      [-41, -20],
+      [-5, -45],
+      [-35, -36],
+      [-7, -49],
+      [124, -97],
+      [98, -31],
+      [-50, -47],
+      [28, -72],
+      [-77, -81],
+      [41, -49],
+      [-18, -50],
+      [-48, 7],
+      [-21, -51],
+      [-88, -3],
+      [-41, -69],
+      [10, -33]
+    ],
+    [
+      [22077, 24081],
+      [30, -40],
+      [-43, -48],
+      [-77, 49],
+      [57, 40],
+      [33, -1]
+    ],
+    [
+      [22602, 24233],
+      [8, -118],
+      [-16, -119],
+      [-37, -34],
+      [-35, 36],
+      [-5, 40],
+      [-80, -21],
+      [-60, -125],
+      [-9, 69],
+      [15, 33],
+      [-24, 48],
+      [-66, 12],
+      [-55, -44],
+      [-50, 18],
+      [47, 119],
+      [38, -21],
+      [85, 26],
+      [79, 60],
+      [58, -15],
+      [54, 38],
+      [53, -2]
+    ],
+    [
+      [22493, 24620],
+      [38, -64],
+      [-63, 8],
+      [-22, 35],
+      [47, 21]
+    ],
+    [
+      [22592, 24632],
+      [-40, -15],
+      [-67, 17],
+      [-98, -49],
+      [-30, 37],
+      [-43, -3],
+      [-17, -34],
+      [93, -33],
+      [-48, -37],
+      [-65, -79],
+      [-32, -4],
+      [2, -73],
+      [-46, -1],
+      [-56, -61],
+      [-55, -20],
+      [-77, 11],
+      [-14, 26],
+      [-72, 31],
+      [-57, -22],
+      [-96, -13],
+      [27, -46],
+      [51, 42],
+      [117, 8],
+      [15, -23],
+      [-22, -73],
+      [-42, -16],
+      [-40, -44],
+      [-58, -16],
+      [12, -65],
+      [-50, -30],
+      [6, -61],
+      [-45, -13],
+      [-78, 15],
+      [-27, 26],
+      [-72, 11],
+      [-43, -29],
+      [11, -65],
+      [-65, 19],
+      [-45, 81],
+      [-32, -10],
+      [-75, 29],
+      [1, 108],
+      [-42, -53],
+      [-30, 30],
+      [-43, -36],
+      [-87, -21],
+      [-15, -55],
+      [-71, -8],
+      [-146, -63],
+      [-56, 44],
+      [-9, 38]
+    ],
+    [
+      [20462, 25367],
+      [36, 24],
+      [5, 67],
+      [57, -8],
+      [35, 26],
+      [146, 35],
+      [-33, 114],
+      [28, 37],
+      [77, -32],
+      [122, 47],
+      [21, 49],
+      [-21, 45],
+      [96, 25],
+      [28, 71],
+      [10, 72],
+      [40, 89],
+      [84, -13],
+      [87, -47],
+      [41, 14],
+      [87, -15],
+      [108, -71],
+      [52, -87],
+      [66, 48],
+      [20, 52],
+      [117, 47],
+      [3, 46],
+      [129, 45],
+      [27, -29],
+      [-21, -60],
+      [99, -36],
+      [94, 16],
+      [91, -97],
+      [-12, -58],
+      [40, -9],
+      [-9, -89],
+      [51, -60],
+      [29, 33],
+      [141, 56],
+      [34, -27],
+      [69, 13],
+      [91, 62],
+      [20, 35],
+      [60, -8]
+    ],
+    [
+      [1675, 61],
+      [43, -17],
+      [-27, -44],
+      [-77, 8],
+      [5, 33],
+      [56, 20]
+    ],
+    [
+      [2099, 486],
+      [58, -46],
+      [-55, -35],
+      [-25, 43],
+      [22, 38]
+    ],
+    [
+      [2267, 682],
+      [31, -48],
+      [-51, -3],
+      [20, 51]
+    ],
+    [
+      [2044, 714],
+      [36, -20],
+      [22, -42],
+      [-82, 13],
+      [24, 49]
+    ],
+    [
+      [1656, 906],
+      [67, -62],
+      [104, -38],
+      [45, -25],
+      [32, 4],
+      [47, -46],
+      [19, -41],
+      [-13, -50],
+      [-42, -21],
+      [-17, -43],
+      [8, -57],
+      [-81, -44],
+      [-56, 39],
+      [-58, -6],
+      [-102, 23],
+      [-59, 45],
+      [-12, -49],
+      [-75, 11],
+      [-38, 64],
+      [36, 35],
+      [54, 1],
+      [92, 63],
+      [-5, 115],
+      [46, 50],
+      [8, 32]
+    ],
+    [
+      [128, 988],
+      [67, -26],
+      [-54, -59],
+      [-60, 12],
+      [-32, -12],
+      [-49, 47],
+      [58, 25],
+      [70, 13]
+    ],
+    [
+      [2724, 1306],
+      [46, -14],
+      [-13, -86],
+      [-60, -56],
+      [12, -27],
+      [-54, -64],
+      [-1, -40],
+      [-39, -21],
+      [-23, -57],
+      [17, -99],
+      [-17, -119],
+      [-24, -33],
+      [-43, 21],
+      [-70, -56],
+      [-63, 4],
+      [-12, 46],
+      [-64, 32],
+      [58, 60],
+      [3, 52],
+      [-44, 49],
+      [-63, -27],
+      [-38, 19],
+      [15, 44],
+      [46, 6],
+      [65, 55],
+      [27, -47],
+      [65, -17],
+      [27, 21],
+      [58, -8],
+      [14, 79],
+      [54, 70],
+      [24, -12],
+      [41, 58],
+      [-13, 51],
+      [28, 17],
+      [41, 99]
+    ],
+    [
+      [3501, 1460],
+      [35, -27],
+      [1, -34],
+      [-43, -34],
+      [-55, 6],
+      [-16, 48],
+      [21, 27],
+      [57, 14]
+    ],
+    [
+      [4403, 1889],
+      [74, -34],
+      [39, -62],
+      [-11, -39],
+      [-68, 11],
+      [-35, -22],
+      [-39, 10],
+      [-18, 67],
+      [40, -7],
+      [18, 76]
+    ],
+    [
+      [4603, 2006],
+      [80, -152],
+      [59, -65],
+      [-7, -45],
+      [44, -31],
+      [56, -2],
+      [40, -50],
+      [60, -11],
+      [42, -58],
+      [-58, -24],
+      [-106, 7],
+      [-49, -22],
+      [-81, -16],
+      [-91, 56],
+      [41, 31],
+      [-18, 67],
+      [-32, 44],
+      [45, 35],
+      [-4, 55],
+      [39, 22],
+      [-44, 67],
+      [-16, 92]
+    ],
+    [
+      [16428, 4211],
+      [52, -8],
+      [24, -35],
+      [-34, -86],
+      [-51, -11],
+      [-37, 25],
+      [15, 100],
+      [31, 15]
+    ],
+    [
+      [16535, 4411],
+      [85, -18],
+      [-22, -51],
+      [-44, 0],
+      [-29, 40],
+      [10, 29]
+    ],
+    [
+      [8747, 5025],
+      [29, -26],
+      [-23, -74],
+      [-45, 1],
+      [39, 99]
+    ],
+    [
+      [7591, 5407],
+      [72, -64],
+      [11, -66],
+      [-18, -16],
+      [-14, -83],
+      [-41, 29],
+      [-20, 50],
+      [-42, 42],
+      [-48, 8],
+      [-30, 44],
+      [130, 56]
+    ],
+    [
+      [8504, 5891],
+      [10, -61],
+      [-64, -2],
+      [18, 45],
+      [36, 18]
+    ],
+    [
+      [10061, 6067],
+      [28, -63],
+      [-82, 20],
+      [3, 26],
+      [51, 17]
+    ],
+    [
+      [9654, 6195],
+      [21, -58],
+      [-127, -3],
+      [-27, 34],
+      [22, 35],
+      [111, -8]
+    ],
+    [
+      [10529, 6522],
+      [73, -78],
+      [18, 10],
+      [45, -159],
+      [-16, -99],
+      [-48, -38],
+      [-27, -96],
+      [-58, -58],
+      [-25, -47],
+      [-115, -16],
+      [-43, 16],
+      [-25, -18],
+      [11, -57],
+      [-44, 6],
+      [33, -68],
+      [-108, -81],
+      [-60, 35],
+      [-50, -9],
+      [34, -61],
+      [-120, -37],
+      [22, -36],
+      [-25, -33],
+      [-75, -4],
+      [-19, -68],
+      [-30, -10],
+      [-85, 40],
+      [-71, -23],
+      [-19, -90],
+      [77, -68],
+      [-10, -44],
+      [58, -63],
+      [58, 1],
+      [22, 58],
+      [101, 14],
+      [-71, -62],
+      [-100, -13],
+      [28, -44],
+      [-59, -4],
+      [-60, 50],
+      [-28, -37],
+      [-70, -34],
+      [9, -39],
+      [-37, -42],
+      [-21, -92],
+      [-54, -36],
+      [37, -67],
+      [70, 21],
+      [32, -33],
+      [-22, -42],
+      [-54, -53],
+      [-34, 0],
+      [-62, -45],
+      [-39, -59],
+      [-32, 1],
+      [-55, -36],
+      [-45, 14],
+      [10, 118],
+      [-30, 29],
+      [18, 39],
+      [-40, 87],
+      [24, 41],
+      [54, 19],
+      [16, 50],
+      [55, 64],
+      [89, 50],
+      [6, 29],
+      [-36, 51],
+      [-3, 59],
+      [-53, 126],
+      [2, 69],
+      [43, -42],
+      [70, 54],
+      [30, -26],
+      [52, 67],
+      [64, 39],
+      [-5, 52],
+      [54, 20],
+      [40, -3],
+      [109, 59],
+      [57, 49],
+      [17, 62],
+      [-123, 56],
+      [-51, 12],
+      [-30, 55],
+      [18, 79],
+      [-28, 26],
+      [12, 60],
+      [55, -23],
+      [81, 20],
+      [112, -46],
+      [-23, -37],
+      [-6, -59],
+      [42, -32],
+      [83, 5],
+      [74, 44],
+      [18, 59],
+      [35, 56],
+      [50, 10],
+      [32, 32],
+      [-12, 42],
+      [54, 19],
+      [74, 82],
+      [69, 136],
+      [-18, 34],
+      [27, 41]
+    ],
+    [
+      [9895, 6706],
+      [38, -26],
+      [-36, -78],
+      [-32, 17],
+      [-6, 70],
+      [36, 17]
+    ],
+    [
+      [10062, 7021],
+      [-35, -31],
+      [-26, -82],
+      [-41, -11],
+      [-38, 15],
+      [88, 103],
+      [52, 6]
+    ],
+    [
+      [25163, 23813],
+      [-130, -17],
+      [-120, -78],
+      [-62, 47],
+      [-44, -33],
+      [-57, 0],
+      [-101, -44],
+      [-89, 14],
+      [-17, -42],
+      [-94, 2],
+      [-70, -11],
+      [-35, -26],
+      [-42, 15],
+      [-9, -47],
+      [-37, -18],
+      [-72, 7],
+      [-33, -25],
+      [-43, 3],
+      [-41, 94]
+    ],
+    [
+      [24067, 23654],
+      [21, 21],
+      [78, -3],
+      [22, 28],
+      [72, 13],
+      [71, 29],
+      [42, 60],
+      [34, 11],
+      [59, 77],
+      [-59, 53],
+      [-70, -54],
+      [-18, 21],
+      [80, 50],
+      [67, -66],
+      [85, 69],
+      [74, 72],
+      [-5, 108],
+      [93, -7],
+      [53, 81],
+      [-68, 11],
+      [-17, 92],
+      [32, 45],
+      [-39, 31],
+      [37, 25],
+      [8, 142]
+    ],
+    [
+      [14682, 20971],
+      [-19, -12],
+      [-114, 14],
+      [-4, 32],
+      [-67, 66],
+      [-37, -12],
+      [-19, -45],
+      [-62, -44],
+      [-86, -80],
+      [-11, -71],
+      [37, -58],
+      [64, -140],
+      [62, -64],
+      [-11, -32],
+      [-13, 2],
+      [-18, 2]
+    ],
+    [
+      [13572, 21409],
+      [72, -75],
+      [32, 53],
+      [-22, 22],
+      [61, 103],
+      [6, 33],
+      [-73, 41],
+      [-99, 86],
+      [27, 57],
+      [86, 42],
+      [-19, 27],
+      [49, 65],
+      [80, 36],
+      [68, -26],
+      [80, -62],
+      [-49, -40],
+      [37, -24],
+      [8, -66],
+      [63, -20],
+      [77, 14],
+      [-2, 35]
+    ],
+    [
+      [33119, 28047],
+      [85, -39]
+    ],
+    [
+      [33540, 27071],
+      [-93, -7],
+      [-17, 40],
+      [-52, -13],
+      [-68, 14],
+      [-18, -58],
+      [-116, 33],
+      [-94, -15],
+      [-37, -65],
+      [-55, 28],
+      [-62, -39],
+      [-30, 3],
+      [-42, 66],
+      [-145, -54],
+      [-126, -3],
+      [-53, 57],
+      [-79, 15],
+      [-15, 62],
+      [-66, 33],
+      [-41, -7],
+      [-130, 8],
+      [-104, 54],
+      [-63, 3],
+      [-122, 33],
+      [-52, 42],
+      [-53, -30],
+      [-86, -25],
+      [-19, -42]
+    ],
+    [
+      [31702, 27204],
+      [-109, -28],
+      [-70, 51],
+      [-43, -5],
+      [-73, 24],
+      [-13, 47],
+      [-118, 36]
+    ],
+    [
+      [20304, 26408],
+      [-21, -53],
+      [-39, 1],
+      [-12, 49],
+      [72, 3]
+    ],
+    [
+      [20552, 26137],
+      [3, -58],
+      [-43, -60],
+      [14, -179],
+      [-84, -5],
+      [-157, -63],
+      [-57, -41],
+      [45, -24],
+      [41, -82],
+      [-90, -67],
+      [-25, -117],
+      [9, -31]
+    ],
+    [
+      [18072, 24028],
+      [-82, -43],
+      [-12, -47],
+      [-51, -53],
+      [43, -86],
+      [-112, -154],
+      [-70, 61],
+      [-39, -41],
+      [-55, -27],
+      [-76, 9],
+      [-30, -18],
+      [-87, 83],
+      [-16, 104],
+      [35, 35],
+      [18, 84],
+      [-144, -18],
+      [-44, 14],
+      [-10, 73],
+      [-50, 87],
+      [66, 61],
+      [2, 80],
+      [43, 16],
+      [-15, 79],
+      [-34, 23],
+      [-5, 52],
+      [-30, 91]
+    ],
+    [
+      [17317, 24493],
+      [37, -7],
+      [116, 14],
+      [103, 33],
+      [71, 43],
+      [44, 50],
+      [-14, 51],
+      [41, 4],
+      [23, 42],
+      [45, 0],
+      [55, 45],
+      [29, 61],
+      [51, 13],
+      [81, 120],
+      [51, -17],
+      [60, 136],
+      [47, 17],
+      [99, 89],
+      [59, 37],
+      [94, 98],
+      [60, 7],
+      [89, 46],
+      [24, 71],
+      [132, 98],
+      [1, 57],
+      [27, 10],
+      [35, 65],
+      [43, 14],
+      [96, 83],
+      [67, 24],
+      [9, 25],
+      [89, 46],
+      [110, 40],
+      [68, 105],
+      [20, 94],
+      [-5, 57],
+      [-79, 42],
+      [-9, 25],
+      [68, 32],
+      [68, 15],
+      [119, -2],
+      [-42, 39],
+      [35, 23],
+      [72, 11],
+      [46, 37],
+      [85, 30],
+      [99, 3],
+      [29, 16],
+      [103, -4],
+      [-8, 63],
+      [122, -7],
+      [35, 31],
+      [42, 68],
+      [99, -8],
+      [65, -48],
+      [85, 23],
+      [112, 14],
+      [112, 1],
+      [-5, -42],
+      [-78, -5],
+      [-119, -35],
+      [-54, -31],
+      [-48, 22],
+      [-53, -67],
+      [17, -72],
+      [-43, -59],
+      [65, -34],
+      [62, 1],
+      [83, 32],
+      [57, -34],
+      [90, -25],
+      [46, -82]
+    ],
+    [
+      [19931, 27621],
+      [63, -11],
+      [42, -57],
+      [-106, 28],
+      [1, 40]
+    ],
+    [
+      [20146, 27822],
+      [40, -22],
+      [-21, -84],
+      [-44, -58],
+      [-46, -11],
+      [3, 65],
+      [-28, 67],
+      [96, 43]
+    ],
+    [
+      [20077, 27874],
+      [26, -19],
+      [-42, -49],
+      [-55, -5],
+      [29, -64],
+      [-9, -36],
+      [-61, -9],
+      [-30, 45],
+      [-59, 2],
+      [45, -91],
+      [-97, 39],
+      [-7, 36],
+      [70, 94],
+      [60, -5],
+      [27, 48],
+      [42, -16],
+      [61, 30]
+    ],
+    [
+      [20482, 28347],
+      [13, -28],
+      [71, -62],
+      [62, -24],
+      [15, -43],
+      [41, -25],
+      [-23, -43],
+      [9, -47],
+      [-14, -55],
+      [-62, -21],
+      [2, -58],
+      [-26, -10],
+      [-96, 29],
+      [-50, -44],
+      [-135, 124],
+      [13, 72],
+      [-27, 8],
+      [20, 77],
+      [39, 59],
+      [48, 22],
+      [27, 37],
+      [36, -13],
+      [37, 45]
+    ],
+    [
+      [36409, 1769],
+      [36, -31],
+      [12, -43],
+      [-108, -68],
+      [0, 79],
+      [60, 63]
+    ],
+    [
+      [36332, 3236],
+      [19, -55],
+      [-47, 7],
+      [28, 48]
+    ],
+    [
+      [38001, 6146],
+      [94, -139],
+      [-42, -35],
+      [-17, 91],
+      [-27, 28],
+      [-8, 55]
+    ],
+    [
+      [33311, 21002],
+      [30, -4],
+      [54, -61],
+      [48, -33],
+      [41, 0],
+      [23, -42],
+      [-5, -52],
+      [-32, -5],
+      [-36, -42],
+      [-78, 34],
+      [-11, 63],
+      [-41, 11],
+      [-35, 78],
+      [42, 53]
+    ],
+    [
+      [33007, 22709],
+      [54, -73],
+      [-25, -41],
+      [-84, 22],
+      [1, 53],
+      [54, 39]
+    ],
+    [
+      [32847, 23223],
+      [44, -9],
+      [39, -61],
+      [-8, -59],
+      [-55, -35],
+      [-66, -20],
+      [-41, 19],
+      [-17, 56],
+      [43, 63],
+      [-4, 35],
+      [65, 11]
+    ],
+    [
+      [32091, 23498],
+      [53, -29],
+      [-7, -51],
+      [-43, -49],
+      [-34, 78],
+      [31, 51]
+    ],
+    [
+      [32374, 23924],
+      [10, -48],
+      [-25, -36],
+      [-6, -111],
+      [-62, 11],
+      [23, 121],
+      [60, 63]
+    ],
+    [
+      [32527, 24777],
+      [97, -27],
+      [43, -36],
+      [30, -73],
+      [-8, -126],
+      [-97, -3],
+      [-75, 46],
+      [-18, 183],
+      [28, 36]
+    ],
+    [
+      [32025, 25559],
+      [-66, -93],
+      [-5, -116],
+      [53, -6],
+      [-13, -154],
+      [60, -15],
+      [47, -81],
+      [-33, -132],
+      [-56, -20],
+      [-51, -64],
+      [2, -52],
+      [-39, -80],
+      [-55, -40],
+      [-60, -69],
+      [-41, -66],
+      [-16, -81],
+      [11, -48],
+      [-75, 18],
+      [-38, -14],
+      [-22, -52],
+      [-119, -52],
+      [-47, -7],
+      [-33, 49],
+      [-75, 49],
+      [9, 63],
+      [-72, 65],
+      [30, 95],
+      [44, 25],
+      [-41, 94],
+      [7, 103],
+      [-6, 101],
+      [65, 57],
+      [-43, 87],
+      [-7, 57],
+      [30, 67],
+      [8, 53],
+      [90, -5],
+      [34, -21],
+      [53, 24],
+      [37, -17],
+      [-2, 77],
+      [-60, 53],
+      [-38, 57],
+      [-95, 53],
+      [-106, 28],
+      [-114, -3],
+      [-98, -38],
+      [-104, -10],
+      [-41, -23],
+      [-26, -62],
+      [-59, -82],
+      [-31, -21],
+      [64, -39],
+      [-23, -55],
+      [-111, -73],
+      [-115, -42],
+      [-104, -64],
+      [-59, -116],
+      [28, -63],
+      [-68, -109],
+      [-7, -32],
+      [-136, -92],
+      [-75, -156],
+      [1, -69],
+      [76, -79],
+      [-81, 0],
+      [-235, 100],
+      [-116, 34],
+      [-131, 20],
+      [-70, 0],
+      [-226, -47],
+      [-157, 38],
+      [-121, 21],
+      [-110, 8],
+      [20, 74],
+      [30, 48],
+      [-44, 22],
+      [-4, -59],
+      [-43, -6],
+      [16, 67],
+      [65, 87],
+      [0, 54],
+      [-79, -36],
+      [-70, 34],
+      [-14, -70],
+      [-36, -15],
+      [121, -191],
+      [-191, -12]
+    ],
+    [
+      [30265, 26719],
+      [48, -111],
+      [9, -83],
+      [21, -15],
+      [17, -95],
+      [-38, -146],
+      [24, -43],
+      [-8, -58],
+      [-39, -57],
+      [38, -76],
+      [4, -68],
+      [59, -29],
+      [77, 50],
+      [76, -35],
+      [17, -109],
+      [33, -63],
+      [19, -86],
+      [23, 5],
+      [47, -53],
+      [124, -11],
+      [52, 56],
+      [19, 57],
+      [-34, 88],
+      [11, 45],
+      [-16, 69],
+      [44, 58],
+      [-13, 98],
+      [7, 67],
+      [100, 87],
+      [31, -33],
+      [27, -88],
+      [103, 11],
+      [45, -92],
+      [164, 35],
+      [117, 10],
+      [38, 26],
+      [70, -8],
+      [67, 38]
+    ],
+    [
+      [22783, 23414],
+      [60, 6],
+      [43, 34],
+      [86, 5],
+      [40, -11],
+      [54, 42],
+      [0, -90],
+      [105, -60],
+      [-43, -69],
+      [-39, -99],
+      [11, -38],
+      [-30, -69],
+      [-2, -59],
+      [19, -66],
+      [68, -18],
+      [18, 31],
+      [57, -105],
+      [55, -26],
+      [3, -100],
+      [-93, -84],
+      [-12, -46],
+      [93, 9],
+      [65, -45],
+      [7, -27],
+      [-127, -54],
+      [-48, -32],
+      [-36, 0],
+      [-89, -57],
+      [-19, -61],
+      [-50, 4],
+      [1, -40],
+      [-67, -48],
+      [-85, -41],
+      [-56, -40],
+      [-67, -8],
+      [-37, -43],
+      [-7, -62],
+      [-39, -36],
+      [1, -40],
+      [-69, 3],
+      [-37, -20],
+      [-8, -58]
+    ],
+    [
+      [23105, 23517],
+      [24, -47],
+      [-20, -36],
+      [-41, 36],
+      [37, 47]
+    ],
+    [
+      [33307, 26664],
+      [58, -86],
+      [-62, -8],
+      [-14, 36],
+      [18, 58]
+    ],
+    [
+      [33648, 26856],
+      [3, -7],
+      [0, -1],
+      [33, -65],
+      [-57, -31],
+      [40, -33],
+      [-82, -58],
+      [-95, 61],
+      [-56, -26],
+      [-30, 12],
+      [-26, -52],
+      [-51, 106],
+      [-28, -57],
+      [-12, -105],
+      [18, -48],
+      [58, -21],
+      [-22, -49],
+      [-7, 5],
+      [-77, 0]
+    ],
+    [
+      [32072, 26785],
+      [-55, 42],
+      [-62, 12],
+      [-95, 56],
+      [-66, 93],
+      [-39, 99],
+      [-1, 47],
+      [-52, 70]
+    ],
+    [
+      [20552, 26137],
+      [19, 175],
+      [130, -26],
+      [64, 14],
+      [41, 80],
+      [50, 10],
+      [48, 36],
+      [187, 40],
+      [157, -58],
+      [172, -14],
+      [91, 1],
+      [221, 17],
+      [97, 35],
+      [203, -9],
+      [155, 22],
+      [155, 34],
+      [101, 39],
+      [42, 66],
+      [60, 2],
+      [90, 52]
+    ],
+    [
+      [27949, 29755],
+      [-48, -45],
+      [11, -36],
+      [-98, -127],
+      [56, -83],
+      [110, -91],
+      [137, -40],
+      [37, -30],
+      [67, -14],
+      [79, 18],
+      [124, -15],
+      [84, 12],
+      [21, 35],
+      [95, 67],
+      [-2, 31],
+      [36, 61],
+      [17, 77],
+      [-18, 40],
+      [32, 61],
+      [126, 67],
+      [45, 14],
+      [124, 10],
+      [26, 26],
+      [99, 11]
+    ],
+    [
+      [25495, 21740],
+      [88, -24],
+      [-56, -48],
+      [-32, 72]
+    ],
+    [
+      [25885, 22296],
+      [-72, -101],
+      [-5, -54],
+      [-66, -23],
+      [15, -94],
+      [28, -51],
+      [-73, -13],
+      [-22, -62],
+      [-109, -60],
+      [-62, -20],
+      [-53, -37],
+      [-44, -86],
+      [-34, 54],
+      [-72, -15],
+      [-42, 28],
+      [-54, 0],
+      [-78, 39],
+      [-89, -3],
+      [-30, 23],
+      [-112, 13],
+      [-49, 63],
+      [-93, 2],
+      [5, 25],
+      [-80, 37],
+      [-41, 53],
+      [15, 89],
+      [-27, 29],
+      [-78, 19],
+      [-24, 30],
+      [51, 45],
+      [75, 26],
+      [-30, 52],
+      [-55, 52],
+      [-40, -9],
+      [-16, 46],
+      [-44, 4],
+      [-59, 39],
+      [-73, -1],
+      [3, 40],
+      [-95, 41],
+      [-27, 33],
+      [-42, 105],
+      [-77, 37],
+      [-27, -12],
+      [-71, 10],
+      [37, 44],
+      [-14, 53],
+      [30, 131],
+      [91, 22],
+      [48, 104],
+      [-50, 42],
+      [-95, 5],
+      [18, 63],
+      [70, 103],
+      [73, -11],
+      [34, 50],
+      [-17, 56],
+      [-47, 9],
+      [-20, 82],
+      [-53, 62],
+      [-54, 35],
+      [-31, 47],
+      [3, 59],
+      [32, 9]
+    ],
+    [
+      [32896, 33413],
+      [-8, 38],
+      [79, 137],
+      [59, 121],
+      [148, 112],
+      [37, 65],
+      [74, 53],
+      [31, 59],
+      [59, 153],
+      [34, 140],
+      [58, 120],
+      [70, 210],
+      [11, 58],
+      [-18, 53]
+    ],
+    [
+      [17880, 22474],
+      [45, -46],
+      [-59, -25],
+      [-19, 33],
+      [33, 38]
+    ],
+    [
+      [18357, 22515],
+      [94, -80],
+      [-82, -1],
+      [-48, 52],
+      [36, 29]
+    ],
+    [
+      [18094, 22601],
+      [54, -28],
+      [-56, -83],
+      [-35, 17],
+      [45, 51],
+      [-8, 43]
+    ],
+    [
+      [18432, 22843],
+      [82, -44],
+      [57, -79],
+      [75, 4],
+      [24, 46],
+      [49, -5],
+      [64, 66],
+      [37, -27],
+      [-51, -56],
+      [-82, -9],
+      [-26, -33],
+      [15, -80],
+      [-53, 0],
+      [-45, 64],
+      [-58, 9],
+      [-99, -52],
+      [-40, 0],
+      [-27, -39],
+      [-64, 106],
+      [3, 63],
+      [112, 85],
+      [27, -19]
+    ],
+    [
+      [17675, 22891],
+      [-11, -59],
+      [-50, -50],
+      [-59, 19],
+      [86, 39],
+      [34, 51]
+    ],
+    [
+      [18396, 23312],
+      [38, -12],
+      [-24, -57],
+      [-64, 53],
+      [50, 16]
+    ],
+    [
+      [16453, 23943],
+      [-50, -29],
+      [-38, -61],
+      [-63, 25],
+      [26, 35],
+      [52, 4],
+      [73, 26]
+    ],
+    [
+      [18406, 23461],
+      [25, -51],
+      [-25, -21],
+      [30, -61],
+      [-76, -23],
+      [24, -50],
+      [-39, -30],
+      [14, -92],
+      [-3, -55],
+      [24, -30],
+      [-17, -108],
+      [-52, -91],
+      [-114, -13],
+      [-7, -66],
+      [12, -103],
+      [33, -21],
+      [21, -64],
+      [-41, -33],
+      [-29, 7],
+      [-21, 60],
+      [16, 22],
+      [-88, 54],
+      [-46, 52],
+      [-54, -34],
+      [-113, 76],
+      [-22, 35],
+      [-53, -1],
+      [-31, 48],
+      [-68, 28],
+      [-26, 41],
+      [-56, 26],
+      [-41, -42],
+      [6, -39],
+      [-65, -6],
+      [-12, 47],
+      [68, 69],
+      [0, 27],
+      [-64, 40],
+      [-64, 1],
+      [-9, 22],
+      [-132, -20],
+      [-43, -33],
+      [-48, 16],
+      [-55, -55],
+      [-16, 36],
+      [-74, -72],
+      [-47, -23],
+      [-60, 16],
+      [-13, 44],
+      [-69, 21],
+      [14, -51],
+      [-42, -34],
+      [-39, 6],
+      [-14, 37],
+      [-62, 31],
+      [-93, -107],
+      [-21, -60],
+      [-36, 0],
+      [-99, -75],
+      [-117, 50],
+      [-65, -28],
+      [-37, 49],
+      [17, 59],
+      [-39, 36],
+      [-51, 20],
+      [-61, 78],
+      [-85, 11],
+      [-36, -8],
+      [-49, -55],
+      [-17, -56],
+      [-79, -59],
+      [-63, -69],
+      [-2, -47],
+      [-43, -1],
+      [-12, 49],
+      [41, 93],
+      [-17, 42],
+      [17, 59],
+      [-12, 96],
+      [-56, 30],
+      [-39, 68],
+      [9, 76],
+      [49, -6],
+      [73, 95],
+      [0, 86],
+      [-15, 63],
+      [-107, 114],
+      [35, 21],
+      [22, 57],
+      [-11, 53],
+      [32, 37],
+      [83, -22],
+      [170, 73],
+      [-35, 38],
+      [-44, -6],
+      [-82, 16],
+      [40, 78],
+      [62, -30],
+      [29, -36],
+      [59, 2],
+      [44, 30],
+      [119, -30],
+      [13, -49],
+      [36, -42],
+      [63, 20],
+      [69, -6],
+      [103, 28],
+      [37, -20],
+      [64, 26],
+      [11, 49],
+      [48, -9],
+      [83, 24],
+      [33, 65],
+      [96, 88],
+      [-15, 57],
+      [20, 49],
+      [66, -3],
+      [35, 50],
+      [35, 14],
+      [42, 47],
+      [3, 83],
+      [74, 50],
+      [10, 45],
+      [70, 16],
+      [23, -27],
+      [51, 20],
+      [26, 33]
+    ],
+    [
+      [16231, 24762],
+      [50, -41],
+      [-37, -39],
+      [-24, 26],
+      [11, 54]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0005048515201930755, 0.00043399868681727254],
+    "translate": [122.94208526611328, 24.0454158782959]
+  },
+  "objects": {
+    "japan": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-23",
+            "NAME_0": "Japan",
+            "ID_1": 1,
+            "NAME_1": "Aichi",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "愛知県",
+            "VARNAME_1": "Aiti"
+          }
+        },
+        {
+          "arcs": [[[5]], [[6, 7, 8, 9, 10]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-05",
+            "NAME_0": "Japan",
+            "ID_1": 2,
+            "NAME_1": "Akita",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "秋田県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[11]], [[12, -11, 13]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-02",
+            "NAME_0": "Japan",
+            "ID_1": 3,
+            "NAME_1": "Aomori",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "青森県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[14, 15, 16, 17]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-12",
+            "NAME_0": "Japan",
+            "ID_1": 4,
+            "NAME_1": "Chiba",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "千葉県",
+            "VARNAME_1": "Tiba|Tsiba"
+          }
+        },
+        {
+          "arcs": [[[18]], [[19, 20, 21, 22]], [[23]], [[24]], [[25]], [[26]], [[27]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-38",
+            "NAME_0": "Japan",
+            "ID_1": 5,
+            "NAME_1": "Ehime",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "愛媛県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[28, 29, 30, 31, 32]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-18",
+            "NAME_0": "Japan",
+            "ID_1": 6,
+            "NAME_1": "Fukui",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "福井県",
+            "VARNAME_1": "Hukui"
+          }
+        },
+        {
+          "arcs": [[[33]], [[34, 35, 36, 37, 38]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-40",
+            "NAME_0": "Japan",
+            "ID_1": 7,
+            "NAME_1": "Fukuoka",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "福岡県",
+            "VARNAME_1": "Hukuoka"
+          }
+        },
+        {
+          "arcs": [[39, 40, 41, 42, 43, 44, 45]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-07",
+            "NAME_0": "Japan",
+            "ID_1": 8,
+            "NAME_1": "Fukushima",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "福島県",
+            "VARNAME_1": "Hukusima"
+          }
+        },
+        {
+          "arcs": [[46, -5, 47, 48, -30, 49, 50]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-21",
+            "NAME_0": "Japan",
+            "ID_1": 9,
+            "NAME_1": "Gifu",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "岐阜県",
+            "VARNAME_1": "Gihu"
+          }
+        },
+        {
+          "arcs": [[-43, 51, 52, 53, 54]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-10",
+            "NAME_0": "Japan",
+            "ID_1": 10,
+            "NAME_1": "Gunma",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "群馬県",
+            "VARNAME_1": "GunmaGumma"
+          }
+        },
+        {
+          "arcs": [
+            [[55]],
+            [[56]],
+            [[57]],
+            [[58]],
+            [[59]],
+            [[60]],
+            [[61]],
+            [[62]],
+            [[63]],
+            [[64]],
+            [[65]],
+            [[66]],
+            [[67, 68, 69, 70, 71]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-34",
+            "NAME_0": "Japan",
+            "ID_1": 11,
+            "NAME_1": "Hiroshima",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "広島県",
+            "VARNAME_1": "Hirosima"
+          }
+        },
+        {
+          "arcs": [[[72]], [[73]], [[74]], [[75]], [[76]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-01",
+            "NAME_0": "Japan",
+            "ID_1": 12,
+            "NAME_1": "Hokkaido",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Circuit",
+            "NL_NAME_1": "北海道",
+            "VARNAME_1": "Ezo|Yeso|Yezo"
+          }
+        },
+        {
+          "arcs": [[[77]], [[78]], [[79]], [[80]], [[81]], [[82, 83, 84, 85, 86, 87]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-28",
+            "NAME_0": "Japan",
+            "ID_1": 13,
+            "NAME_1": "Hyogo",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "兵庫県",
+            "VARNAME_1": "Hiogo"
+          }
+        },
+        {
+          "arcs": [[88, -18, 89, 90, -41]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-08",
+            "NAME_0": "Japan",
+            "ID_1": 14,
+            "NAME_1": "Ibaraki",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "茨城県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[91]], [[92, -50, -29, 93]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-17",
+            "NAME_0": "Japan",
+            "ID_1": 15,
+            "NAME_1": "Ishikawa",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "石川県",
+            "VARNAME_1": "Isikawa"
+          }
+        },
+        {
+          "arcs": [[94, -7, -13, 95]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-03",
+            "NAME_0": "Japan",
+            "ID_1": 16,
+            "NAME_1": "Iwate",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "岩手県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[96, -20, 97]], [[98]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-37",
+            "NAME_0": "Japan",
+            "ID_1": 17,
+            "NAME_1": "Kagawa",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "香川県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [
+            [[99]],
+            [[100]],
+            [[101]],
+            [[102]],
+            [[103]],
+            [[104]],
+            [[105]],
+            [[106]],
+            [[107]],
+            [[108]],
+            [[109]],
+            [[110]],
+            [[111]],
+            [[112]],
+            [[113]],
+            [[114]],
+            [[115]],
+            [[116]],
+            [[117]],
+            [[118]],
+            [[119]],
+            [[120]],
+            [[121, 122, 123, 124, 125]],
+            [[126, 127]],
+            [[128, 129]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-46",
+            "NAME_0": "Japan",
+            "ID_1": 18,
+            "NAME_1": "Kagoshima",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "鹿児島県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[130]], [[131, 132, 133, 134]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-14",
+            "NAME_0": "Japan",
+            "ID_1": 19,
+            "NAME_1": "Kanagawa",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "神奈川県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[135]], [[136, 137, -22]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-39",
+            "NAME_0": "Japan",
+            "ID_1": 20,
+            "NAME_1": "Kochi",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "高知県",
+            "VARNAME_1": "Koti"
+          }
+        },
+        {
+          "arcs": [
+            [[-127, 138, -124, 139]],
+            [[-129, 140]],
+            [[141]],
+            [[142]],
+            [[143]],
+            [[144]],
+            [[145]],
+            [[146, -126, 147, -36, 148]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-43",
+            "NAME_0": "Japan",
+            "ID_1": 21,
+            "NAME_1": "Kumamoto",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "熊本県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-32, 149, 150, 151, 152, -83, 153]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-26",
+            "NAME_0": "Japan",
+            "ID_1": 22,
+            "NAME_1": "Kyoto",
+            "TYPE_1": "Fu",
+            "ENGTYPE_1": "Urban Prefecture",
+            "NL_NAME_1": "京都府",
+            "VARNAME_1": "Kioto"
+          }
+        },
+        {
+          "arcs": [[-4, 154, 155, 156, -151, 157, -48]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-24",
+            "NAME_0": "Japan",
+            "ID_1": 23,
+            "NAME_1": "Mie",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "三重県",
+            "VARNAME_1": "Miye"
+          }
+        },
+        {
+          "arcs": [[[158]], [[159]], [[160, -46, 161, -8, -95]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-04",
+            "NAME_0": "Japan",
+            "ID_1": 24,
+            "NAME_1": "Miyagi",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "宮城県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[162, -122, -147, 163]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-45",
+            "NAME_0": "Japan",
+            "ID_1": 25,
+            "NAME_1": "Miyazaki",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "宮崎県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-54, 164, 165, 166, -1, -47, 167, 168]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-20",
+            "NAME_0": "Japan",
+            "ID_1": 26,
+            "NAME_1": "Nagano",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "長野県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [
+            [[169]],
+            [[170]],
+            [[171]],
+            [[172]],
+            [[173]],
+            [[174]],
+            [[175]],
+            [[176]],
+            [[177]],
+            [[178]],
+            [[179, 180]],
+            [[181]],
+            [[182]],
+            [[183]],
+            [[184]],
+            [[185]],
+            [[186]],
+            [[187]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-42",
+            "NAME_0": "Japan",
+            "ID_1": 27,
+            "NAME_1": "Nagasaki",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "長崎県",
+            "VARNAME_1": "Nagasaki"
+          }
+        },
+        {
+          "arcs": [[-157, 188, 189, -152]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-29",
+            "NAME_0": "Japan",
+            "ID_1": 28,
+            "NAME_1": "Nara",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "奈良県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[190]], [[191]], [[-44, -55, -169, 192, 193, 194]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-15",
+            "NAME_0": "Japan",
+            "ID_1": 29,
+            "NAME_1": "Niigata",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "新潟県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-164, -149, -35, 195]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-44",
+            "NAME_0": "Japan",
+            "ID_1": 30,
+            "NAME_1": "Oita",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "大分県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[196]], [[197]], [[198]], [[-86, 199, -69, 200]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-33",
+            "NAME_0": "Japan",
+            "ID_1": 31,
+            "NAME_1": "Okayama",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "岡山県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [
+            [[201]],
+            [[202]],
+            [[203]],
+            [[204]],
+            [[205]],
+            [[206]],
+            [[207]],
+            [[208]],
+            [[209]],
+            [[210]],
+            [[211]],
+            [[212]],
+            [[213]],
+            [[214]],
+            [[215]],
+            [[216]],
+            [[217]],
+            [[218]],
+            [[219]],
+            [[220]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-47",
+            "NAME_0": "Japan",
+            "ID_1": 32,
+            "NAME_1": "Okinawa",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "沖縄県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-190, 221, 222, -84, -153]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-27",
+            "NAME_0": "Japan",
+            "ID_1": 33,
+            "NAME_1": "Osaka",
+            "TYPE_1": "Fu",
+            "ENGTYPE_1": "Urban Prefecture",
+            "NL_NAME_1": "大阪府",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-38, 223, -180, 224]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-41",
+            "NAME_0": "Japan",
+            "ID_1": 34,
+            "NAME_1": "Saga",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "佐賀県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[225, -90, -17, 226, 227, -165, -53]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-11",
+            "NAME_0": "Japan",
+            "ID_1": 35,
+            "NAME_1": "Saitama",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "埼玉県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-49, -158, -150, -31]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-25",
+            "NAME_0": "Japan",
+            "ID_1": 36,
+            "NAME_1": "Shiga",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "滋賀県",
+            "VARNAME_1": "Siga"
+          }
+        },
+        {
+          "arcs": [[[228]], [[229, -72, 230, 231]], [[232]], [[233]], [[234]], [[235]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-32",
+            "NAME_0": "Japan",
+            "ID_1": 37,
+            "NAME_1": "Shimane",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "島根県",
+            "VARNAME_1": "Simane"
+          }
+        },
+        {
+          "arcs": [
+            [[236]],
+            [[237]],
+            [[238]],
+            [[239]],
+            [[240]],
+            [[241]],
+            [[242]],
+            [[243]],
+            [[244]],
+            [[-133, 245, -2, -167, 246]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-22",
+            "NAME_0": "Japan",
+            "ID_1": 38,
+            "NAME_1": "Shizuoka",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "静岡県",
+            "VARNAME_1": "Sizuoka"
+          }
+        },
+        {
+          "arcs": [[-91, -226, -52, -42]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-09",
+            "NAME_0": "Japan",
+            "ID_1": 39,
+            "NAME_1": "Tochigi",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "栃木県",
+            "VARNAME_1": "Totigi"
+          }
+        },
+        {
+          "arcs": [[[-137, -21, -97, 247]], [[248]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-36",
+            "NAME_0": "Japan",
+            "ID_1": 40,
+            "NAME_1": "Tokushima",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "徳島県",
+            "VARNAME_1": "Tokusima"
+          }
+        },
+        {
+          "arcs": [[[249]], [[-16, 250, -135, 251, -227]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-13",
+            "NAME_0": "Japan",
+            "ID_1": 41,
+            "NAME_1": "Tokyo",
+            "TYPE_1": "To",
+            "ENGTYPE_1": "Metropolis",
+            "NL_NAME_1": "東京都",
+            "VARNAME_1": "Edo|Yedo|Tokio|T¢quio"
+          }
+        },
+        {
+          "arcs": [[-201, -68, -230, 252, -87]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-31",
+            "NAME_0": "Japan",
+            "ID_1": 42,
+            "NAME_1": "Tottori",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "鳥取県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-193, -168, -51, -93, 253]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-16",
+            "NAME_0": "Japan",
+            "ID_1": 43,
+            "NAME_1": "Toyama",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "富山県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[254]], [[-189, -156, 255, -222]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-30",
+            "NAME_0": "Japan",
+            "ID_1": 44,
+            "NAME_1": "Wakayama",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "和歌山県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-162, -45, -195, 256, -9]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-06",
+            "NAME_0": "Japan",
+            "ID_1": 45,
+            "NAME_1": "Yamagata",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "山形県",
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [
+            [[257]],
+            [[258]],
+            [[259]],
+            [[260]],
+            [[261]],
+            [[262]],
+            [[263]],
+            [[-231, -71, 264]],
+            [[265]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-35",
+            "NAME_0": "Japan",
+            "ID_1": 46,
+            "NAME_1": "Yamaguchi",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "山口県",
+            "VARNAME_1": "Yamaguti"
+          }
+        },
+        {
+          "arcs": [[-228, -252, -134, -247, -166]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 114,
+            "ISO": "JP-19",
+            "NAME_0": "Japan",
+            "ID_1": 47,
+            "NAME_1": "Yamanashi",
+            "TYPE_1": "Ken",
+            "ENGTYPE_1": "Prefecture",
+            "NL_NAME_1": "山梨県",
+            "VARNAME_1": "Yamanasi"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/korea-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/korea-topo.json
new file mode 100644
index 0000000..0ebf519
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/korea-topo.json
@@ -0,0 +1,2471 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [7454, 4447],
+      [42, -59],
+      [-34, -74],
+      [-76, 102],
+      [68, 31]
+    ],
+    [
+      [7860, 4492],
+      [29, 33],
+      [61, -30],
+      [7, -89],
+      [-97, 86]
+    ],
+    [
+      [8440, 5110],
+      [-51, -66],
+      [-68, 1],
+      [-22, -112],
+      [0, -61],
+      [-61, -81],
+      [-4, -67],
+      [-47, -16],
+      [-7, -38],
+      [-143, -15],
+      [5, -131],
+      [-98, 7],
+      [-37, 40],
+      [-34, -31],
+      [-27, -51],
+      [-17, -61],
+      [-70, 4],
+      [-52, -18],
+      [-22, 91],
+      [-27, 9],
+      [-75, -40],
+      [-124, 23]
+    ],
+    [
+      [7459, 4497],
+      [39, 24],
+      [6, 47],
+      [-22, 58],
+      [115, 20],
+      [-7, 75],
+      [61, 52],
+      [89, -11],
+      [71, 37],
+      [29, 81],
+      [38, 48],
+      [79, 36],
+      [52, 70],
+      [60, 20],
+      [34, 48],
+      [50, 22],
+      [54, -4],
+      [77, 93]
+    ],
+    [
+      [8284, 5213],
+      [101, 9],
+      [55, -112]
+    ],
+    [
+      [7083, 9078],
+      [-23, -33],
+      [-74, 5],
+      [-50, -22],
+      [-32, -74],
+      [-93, -43],
+      [-23, -43],
+      [-86, -52],
+      [-37, -50],
+      [-32, -78],
+      [36, -90],
+      [-16, -55],
+      [-52, -39],
+      [-64, 17],
+      [-55, -32],
+      [-89, 22],
+      [-17, 30],
+      [-62, 20],
+      [-47, 80],
+      [-59, -74],
+      [-28, -71],
+      [-114, 23],
+      [-35, 26],
+      [-38, -64],
+      [-81, 37],
+      [-30, -61],
+      [-36, -27],
+      [-8, -77],
+      [72, -64],
+      [-42, -22],
+      [-55, 34],
+      [-73, 0],
+      [-38, 20],
+      [-44, -53],
+      [-76, -50],
+      [-15, -40],
+      [54, -19],
+      [5, -83],
+      [-50, -46],
+      [-52, 55],
+      [-41, 17],
+      [-37, -61],
+      [-49, 1],
+      [-25, -40],
+      [29, -50],
+      [97, -24],
+      [50, -72],
+      [23, -61],
+      [-51, -30],
+      [-22, -42],
+      [22, -41],
+      [-33, -159],
+      [50, -88],
+      [-82, -101],
+      [1, -76],
+      [106, 1],
+      [91, -59],
+      [88, 9],
+      [80, -18],
+      [9, -77],
+      [33, -36],
+      [-22, -47],
+      [-70, 27],
+      [-53, -55],
+      [29, -45],
+      [-7, -76],
+      [-35, -17],
+      [-11, -106],
+      [-26, -37],
+      [-60, 3],
+      [-52, -57]
+    ],
+    [
+      [5556, 6668],
+      [-42, -13],
+      [-63, 24],
+      [-64, -32],
+      [-74, -4],
+      [-45, 30],
+      [-121, 2],
+      [-50, 35]
+    ],
+    [
+      [5097, 6710],
+      [-29, -20],
+      [-42, 44],
+      [-40, 121],
+      [-44, 34],
+      [-7, 192],
+      [-40, 40],
+      [-152, 29]
+    ],
+    [
+      [4743, 7150],
+      [-12, 32],
+      [26, 162],
+      [32, 36],
+      [37, 112],
+      [32, 30],
+      [-22, 41],
+      [-79, 0],
+      [6, 76],
+      [-71, 67],
+      [-33, -49],
+      [-88, 15],
+      [-30, 70],
+      [-64, 6]
+    ],
+    [
+      [4477, 7748],
+      [7, 96],
+      [26, 48],
+      [-64, 49],
+      [-43, 56],
+      [-51, -5],
+      [-9, 51],
+      [-60, 48],
+      [45, 67],
+      [7, 73]
+    ],
+    [
+      [4335, 8231],
+      [44, 93],
+      [54, 17],
+      [17, 60],
+      [111, -6],
+      [-8, 65],
+      [-95, 90],
+      [-16, 40],
+      [-105, 99]
+    ],
+    [
+      [4337, 8689],
+      [25, 61],
+      [35, 24],
+      [159, 47],
+      [48, 96],
+      [97, 54],
+      [66, 63],
+      [104, -28],
+      [57, 8],
+      [4, 44],
+      [84, 20],
+      [40, 73],
+      [19, 123],
+      [44, -22],
+      [52, 40],
+      [120, 172],
+      [20, 64],
+      [40, 15]
+    ],
+    [
+      [5351, 9543],
+      [59, -208],
+      [27, -21],
+      [201, 17],
+      [41, 73],
+      [-40, 70],
+      [7, 30],
+      [93, 43],
+      [77, -22],
+      [51, -118],
+      [123, 17],
+      [39, 55],
+      [78, 9],
+      [32, 30],
+      [71, 3],
+      [119, -67],
+      [91, 14],
+      [23, -37],
+      [-123, -97],
+      [60, -59],
+      [73, 34],
+      [112, 7],
+      [25, -76],
+      [74, -49],
+      [83, 13],
+      [32, 21],
+      [82, -9],
+      [68, -66],
+      [133, -24],
+      [21, -48]
+    ],
+    [
+      [2518, 8130],
+      [20, -16],
+      [25, -145],
+      [-5, -31],
+      [52, -72],
+      [-8, -31],
+      [36, -62],
+      [-2, -39],
+      [38, -77],
+      [-127, -19],
+      [-71, 65],
+      [-10, 74],
+      [11, 70],
+      [-18, 29],
+      [0, 109],
+      [-28, 71],
+      [13, 2],
+      [7, 25],
+      [34, 33],
+      [33, 14]
+    ],
+    [
+      [3624, 8789],
+      [149, 27],
+      [95, -14],
+      [104, 28],
+      [69, 31],
+      [103, -40],
+      [140, -82],
+      [53, -50]
+    ],
+    [
+      [4335, 8231],
+      [-65, -5],
+      [-112, 101],
+      [-68, 4],
+      [-45, -41],
+      [42, -70],
+      [-8, -178],
+      [96, -65],
+      [23, -56],
+      [-11, -39],
+      [22, -59],
+      [38, 0],
+      [32, -47],
+      [-52, -51],
+      [39, -72],
+      [56, -5],
+      [5, -54]
+    ],
+    [
+      [4327, 7594],
+      [-18, -110],
+      [5, -58],
+      [-34, -73],
+      [5, -35],
+      [47, -57],
+      [13, -60],
+      [73, -64],
+      [48, 46],
+      [12, 81],
+      [48, -7],
+      [-6, -62],
+      [95, -98],
+      [32, -5],
+      [35, 44],
+      [61, 14]
+    ],
+    [
+      [5097, 6710],
+      [-3, -49],
+      [-65, -60],
+      [-129, 4],
+      [-26, 62],
+      [-75, -22],
+      [-87, -2],
+      [-132, 70],
+      [-45, 110],
+      [-81, 108],
+      [-40, 36],
+      [-132, -56],
+      [-27, -36],
+      [-67, 17],
+      [-134, -69],
+      [-77, 3],
+      [-74, 25],
+      [-38, 121],
+      [-180, 71],
+      [-62, -38],
+      [-46, -6],
+      [-23, -35],
+      [-36, -152],
+      [-68, -32],
+      [-19, -29],
+      [-63, -1],
+      [-82, -44]
+    ],
+    [
+      [3286, 6706],
+      [-36, -42],
+      [-113, 9],
+      [3, 66],
+      [-110, 152],
+      [-40, 73],
+      [-67, 5],
+      [-78, 74],
+      [7, 64],
+      [29, 55],
+      [-17, 68],
+      [37, 64],
+      [-83, 128],
+      [77, 83],
+      [-69, 58],
+      [-62, 9],
+      [30, 102],
+      [91, 58],
+      [43, 2],
+      [23, 60],
+      [-56, -10],
+      [-43, -67],
+      [-76, 23],
+      [-14, 84],
+      [28, 68],
+      [-58, 71],
+      [13, 31],
+      [-32, 84],
+      [-84, 46],
+      [-80, 12],
+      [-15, 15],
+      [-16, -19],
+      [-34, -10],
+      [-33, -31],
+      [-12, -31],
+      [-39, -15],
+      [-29, 24],
+      [36, 120],
+      [-27, 65],
+      [-46, 6],
+      [-12, 107],
+      [-38, -36],
+      [-54, -18],
+      [-29, -45],
+      [-91, 9],
+      [-5, 61],
+      [37, 30],
+      [60, -30],
+      [50, 38],
+      [-68, 57],
+      [-16, 32],
+      [-105, -52],
+      [-26, 70],
+      [112, 103],
+      [43, 25],
+      [-25, 37],
+      [39, 50],
+      [-38, 76],
+      [80, 42],
+      [59, 7],
+      [60, -18],
+      [23, 64],
+      [56, -87],
+      [-48, -93],
+      [-2, -108],
+      [61, 40],
+      [-12, 46],
+      [25, 47],
+      [77, -14],
+      [-13, 45],
+      [80, 49],
+      [31, 90],
+      [-60, -13],
+      [-92, 90],
+      [-25, 41],
+      [41, 48],
+      [215, 34],
+      [54, 58],
+      [23, 52],
+      [43, -15],
+      [44, -51],
+      [202, -90],
+      [108, 2],
+      [168, -56],
+      [40, -121],
+      [57, -91],
+      [68, -17],
+      [93, 34]
+    ],
+    [
+      [6907, 5735],
+      [-129, -95],
+      [-104, -6],
+      [-44, 20]
+    ],
+    [
+      [6630, 5654],
+      [37, 28],
+      [2, 64],
+      [-83, 101],
+      [14, 28],
+      [96, -20],
+      [21, 56],
+      [-69, 46],
+      [-13, 49],
+      [49, 115],
+      [71, -1],
+      [15, 42],
+      [-80, 51],
+      [-45, 3],
+      [-34, 45],
+      [8, 59],
+      [44, 42],
+      [82, 25],
+      [2, -44],
+      [39, -49],
+      [75, 67],
+      [20, 92],
+      [77, 37],
+      [53, 69],
+      [38, 21],
+      [110, 8],
+      [76, -30],
+      [36, -40],
+      [-12, -144],
+      [39, -26],
+      [19, -115],
+      [-15, -48],
+      [-42, -13],
+      [-18, -56],
+      [-70, -94],
+      [19, -51],
+      [-11, -45],
+      [-79, -65],
+      [-90, 69],
+      [-101, -51],
+      [-23, -89],
+      [20, -55]
+    ],
+    [
+      [4327, 7594],
+      [83, 23],
+      [52, 45],
+      [15, 86]
+    ],
+    [
+      [8493, 9430],
+      [-101, -125],
+      [-64, -31],
+      [-44, -56],
+      [-2, -129],
+      [-19, -20],
+      [-121, 20],
+      [-115, 85],
+      [-39, -21],
+      [-35, -60],
+      [-98, 24],
+      [-134, 13],
+      [-32, 25],
+      [-39, -43],
+      [-89, 4],
+      [-134, 71],
+      [-119, 21],
+      [46, -70],
+      [-1, -32],
+      [-66, -8],
+      [-21, -38],
+      [-110, 31],
+      [-73, -13]
+    ],
+    [
+      [5351, 9543],
+      [20, 30],
+      [-2, 147],
+      [-9, 56],
+      [33, 60],
+      [20, 84],
+      [-2, 111],
+      [-63, 78],
+      [102, 117],
+      [-17, 64],
+      [-91, -7],
+      [-51, 37],
+      [-41, 4],
+      [-97, 63],
+      [-125, 63],
+      [-77, -13],
+      [-61, 34],
+      [9, 141],
+      [-55, 46],
+      [42, 76],
+      [-16, 66],
+      [6, 93],
+      [65, 47],
+      [83, 90],
+      [6, 130],
+      [-21, 27],
+      [-73, 0],
+      [-24, 97],
+      [-105, 4],
+      [-26, 22],
+      [-31, 90],
+      [-28, 178],
+      [-76, -42],
+      [-45, 41],
+      [-33, -8],
+      [-36, -54],
+      [-30, 52],
+      [-59, 17],
+      [-49, -33],
+      [-51, 41],
+      [72, 106],
+      [-37, 34],
+      [-63, -63],
+      [-98, -65],
+      [-62, -18],
+      [-130, 18],
+      [-41, 43],
+      [15, 115],
+      [-16, 25],
+      [-106, -16],
+      [-46, 11],
+      [-55, 123]
+    ],
+    [
+      [3776, 11905],
+      [38, 37],
+      [21, 36],
+      [231, 160],
+      [71, -7],
+      [141, 60],
+      [72, -10],
+      [34, -24],
+      [68, 3],
+      [129, 42],
+      [99, -42],
+      [24, 6],
+      [93, -45],
+      [112, 64],
+      [62, 20],
+      [55, -28],
+      [80, 8],
+      [56, -13],
+      [42, 26],
+      [122, -6],
+      [67, 20],
+      [15, -35],
+      [57, -49],
+      [92, 31],
+      [37, 35],
+      [123, -36],
+      [38, 9],
+      [136, -29],
+      [62, 10],
+      [63, 48],
+      [56, -2],
+      [77, 66],
+      [76, 44],
+      [32, 46],
+      [117, 96],
+      [46, 91],
+      [15, 79],
+      [-9, 191],
+      [88, 61],
+      [28, -54],
+      [77, -79],
+      [-11, -33],
+      [63, -153],
+      [61, -67],
+      [-28, -31],
+      [20, -42],
+      [95, -116],
+      [4, -62],
+      [66, -122],
+      [22, -73],
+      [64, -82],
+      [10, -63],
+      [29, -52],
+      [-4, -65],
+      [51, -81],
+      [82, -79],
+      [6, -47],
+      [145, -174],
+      [42, -92],
+      [45, -55],
+      [82, -71],
+      [-9, -38],
+      [92, -100],
+      [9, -34],
+      [210, -205],
+      [57, -82],
+      [87, -79],
+      [-28, -72],
+      [49, -81],
+      [98, -76],
+      [-11, -86],
+      [60, -105],
+      [96, -105],
+      [19, -92],
+      [90, -63],
+      [44, -100],
+      [7, -57],
+      [56, -22],
+      [3, -44],
+      [59, -30],
+      [-6, -36],
+      [44, -39],
+      [0, -91],
+      [-18, -39],
+      [22, -69]
+    ],
+    [
+      [3742, 4748],
+      [2, -56],
+      [64, -11],
+      [57, -47],
+      [-51, -138],
+      [-77, -24],
+      [-96, -11],
+      [-43, -71],
+      [-59, 26],
+      [-73, -14],
+      [-78, 9],
+      [-15, 60],
+      [-114, 33],
+      [-47, 28],
+      [-54, 1],
+      [-4, 79],
+      [55, 92],
+      [80, 28],
+      [67, 74],
+      [81, -58],
+      [78, 5],
+      [22, 48],
+      [97, 14],
+      [96, -39],
+      [12, -28]
+    ],
+    [
+      [3624, 8789],
+      [-11, 70],
+      [-77, 22],
+      [-9, 37],
+      [-86, 106],
+      [-46, 6],
+      [-2, 66],
+      [-93, 12],
+      [26, 71],
+      [10, 90],
+      [-15, 47],
+      [48, 44],
+      [41, -4],
+      [-9, 87],
+      [-97, -8],
+      [-63, -84],
+      [-43, -24],
+      [-72, 95],
+      [-17, 48],
+      [27, 62],
+      [-7, 91],
+      [51, 41],
+      [134, -20],
+      [10, -81],
+      [22, -12],
+      [50, 90],
+      [-13, 33],
+      [53, 71],
+      [-67, -7],
+      [-101, 35],
+      [-90, 56],
+      [-140, -45],
+      [-68, -44],
+      [-24, -43],
+      [74, -31],
+      [31, -66],
+      [56, -27],
+      [-10, -36],
+      [-63, 31],
+      [-56, -7],
+      [-55, -48],
+      [-38, 57],
+      [28, 24],
+      [17, 104],
+      [44, 48],
+      [55, 39],
+      [157, 52],
+      [-5, 30],
+      [99, 53],
+      [-6, 50],
+      [32, 22],
+      [-3, 8],
+      [9, 7],
+      [3, 19],
+      [0, 1]
+    ],
+    [
+      [3315, 10027],
+      [28, 45],
+      [-10, 105],
+      [10, 86]
+    ],
+    [
+      [3343, 10263],
+      [107, -20],
+      [-5, -88],
+      [97, -35],
+      [39, -34],
+      [101, -14],
+      [62, 25],
+      [121, 2],
+      [24, -58],
+      [61, -15],
+      [40, 31],
+      [86, 13],
+      [38, 52],
+      [-23, 91],
+      [52, 54],
+      [-27, 42],
+      [-69, 22],
+      [-13, 101],
+      [6, 62],
+      [-38, 89],
+      [-40, 21],
+      [-116, 14],
+      [-112, -78],
+      [-54, 2],
+      [-70, -26],
+      [-53, -116],
+      [-52, -11],
+      [-55, 29],
+      [-60, -49]
+    ],
+    [
+      [3390, 10369],
+      [-92, 45],
+      [-97, 23],
+      [-63, -3],
+      [-78, -28],
+      [-93, 10]
+    ],
+    [
+      [2967, 10416],
+      [-54, 69],
+      [-54, 157],
+      [9, 64],
+      [-21, 29],
+      [18, 84],
+      [-23, 29],
+      [57, 36],
+      [63, -32],
+      [48, -1],
+      [65, 49],
+      [63, 3],
+      [23, 121],
+      [21, 55],
+      [12, 124],
+      [-25, 81],
+      [117, 41],
+      [85, 13],
+      [113, 120],
+      [46, 66],
+      [21, 82],
+      [36, 44],
+      [149, 94],
+      [-5, 99],
+      [45, 62]
+    ],
+    [
+      [8695, 5748],
+      [-9, -23],
+      [-220, 63],
+      [-55, -63],
+      [-69, 11],
+      [-60, 51],
+      [9, 61],
+      [-133, 39],
+      [-119, 13],
+      [-109, -64],
+      [7, -117],
+      [-66, 10],
+      [-27, -41]
+    ],
+    [
+      [7844, 5688],
+      [-85, -49],
+      [-113, 44],
+      [-78, 5],
+      [-63, -78],
+      [-120, -56],
+      [-20, -24],
+      [-78, 37],
+      [-131, 25],
+      [-65, -30],
+      [-53, 3],
+      [-54, 37],
+      [-42, 53],
+      [-35, 80]
+    ],
+    [
+      [6630, 5654],
+      [-42, 45],
+      [-128, 52],
+      [-44, -19],
+      [-124, -17],
+      [-99, 69],
+      [33, 112],
+      [-14, 71],
+      [-127, 121],
+      [-23, 70],
+      [-149, 83],
+      [-79, 13],
+      [-87, -9],
+      [-48, 55],
+      [-42, 9],
+      [-29, 50]
+    ],
+    [
+      [5628, 6359],
+      [-7, 61],
+      [14, 103],
+      [-79, 145]
+    ],
+    [
+      [8493, 9430],
+      [29, -44],
+      [22, -106],
+      [59, -63],
+      [17, -49],
+      [-10, -76],
+      [19, -45],
+      [-22, -62],
+      [26, -99],
+      [-12, -106],
+      [27, -101],
+      [58, -83],
+      [19, -133],
+      [20, -58],
+      [0, -81],
+      [-24, -46],
+      [-44, -10],
+      [-61, -126],
+      [-1, -93],
+      [57, -74],
+      [10, -150],
+      [-30, -187],
+      [-45, -49],
+      [-57, -140],
+      [5, -22],
+      [-18, -164],
+      [28, -71],
+      [-25, -69],
+      [38, -20],
+      [17, -135],
+      [58, -39],
+      [-2, -35],
+      [-109, -128],
+      [65, -34],
+      [29, -70],
+      [49, -20],
+      [96, 76],
+      [107, 150],
+      [44, -19],
+      [26, -147],
+      [-62, -69],
+      [6, -47],
+      [-75, -106],
+      [15, -37],
+      [-15, -78],
+      [30, -5],
+      [-83, -201],
+      [12, -34],
+      [-51, -167],
+      [0, -55],
+      [-33, -33],
+      [-29, -79],
+      [22, -43]
+    ],
+    [
+      [11600, 10343],
+      [11, -147],
+      [-91, -68],
+      [-53, 8],
+      [-80, 51],
+      [5, 49],
+      [-27, 31],
+      [166, 63],
+      [69, 13]
+    ],
+    [
+      [6287, 3463],
+      [100, -37],
+      [-15, -37],
+      [-61, -3],
+      [-66, 31],
+      [42, 46]
+    ],
+    [
+      [6764, 3855],
+      [18, -140],
+      [-45, 15],
+      [-18, 46],
+      [8, 69],
+      [37, 10]
+    ],
+    [
+      [6270, 3911],
+      [38, -79],
+      [-65, -17],
+      [-30, 65],
+      [57, 31]
+    ],
+    [
+      [6197, 3956],
+      [12, -41],
+      [-42, -43],
+      [-35, 65],
+      [65, 19]
+    ],
+    [
+      [5858, 4104],
+      [-11, -50],
+      [61, -39],
+      [22, -37],
+      [-24, -36],
+      [21, -58],
+      [-92, 21],
+      [-64, -6],
+      [-46, 40],
+      [2, 46],
+      [82, 105],
+      [49, 14]
+    ],
+    [
+      [5585, 4161],
+      [67, -44],
+      [1, -50],
+      [-59, -85],
+      [27, -80],
+      [62, -24],
+      [3, -42],
+      [92, 53],
+      [81, 4],
+      [65, -40],
+      [-28, -83],
+      [16, -81],
+      [-45, -42],
+      [21, -65],
+      [-53, -2],
+      [-21, 47],
+      [-49, -32],
+      [-62, 15],
+      [-17, 72],
+      [3, 79],
+      [-85, -36],
+      [19, -55],
+      [-47, -43],
+      [-54, 25],
+      [-42, 59],
+      [19, 26],
+      [-68, 143],
+      [-18, 70],
+      [43, 43],
+      [14, 50],
+      [60, 97],
+      [55, 21]
+    ],
+    [
+      [6835, 4230],
+      [26, -89],
+      [-41, 3],
+      [15, 86]
+    ],
+    [
+      [7093, 4340],
+      [-11, -104],
+      [-50, 15],
+      [24, 58],
+      [37, 31]
+    ],
+    [
+      [7152, 4385],
+      [84, -46],
+      [-34, -33],
+      [-17, -68],
+      [62, -73],
+      [-52, -159],
+      [44, 2],
+      [43, -33],
+      [-81, -60],
+      [73, -120],
+      [-38, -2],
+      [-23, 47],
+      [-82, 3],
+      [10, -64],
+      [-71, -48],
+      [29, -56],
+      [-86, -97],
+      [-47, 34],
+      [40, 47],
+      [-57, 13],
+      [7, 53],
+      [-27, 59],
+      [34, 24],
+      [9, 112],
+      [-106, -38],
+      [-37, -48],
+      [-67, 73],
+      [-22, 80],
+      [13, 33],
+      [92, 85],
+      [82, -58],
+      [40, 37],
+      [50, -24],
+      [-35, 105],
+      [56, 35],
+      [50, -4],
+      [64, 189]
+    ],
+    [
+      [7844, 5688],
+      [24, -38],
+      [-7, -48],
+      [-38, -52],
+      [5, -50],
+      [109, 5],
+      [58, -57],
+      [67, -35],
+      [64, -96],
+      [92, -21],
+      [46, -27],
+      [20, -56]
+    ],
+    [
+      [7459, 4497],
+      [-67, 2],
+      [-39, 33],
+      [-100, -29],
+      [-73, 17],
+      [16, 62],
+      [-47, 2],
+      [-95, 53],
+      [-118, 101],
+      [10, -59],
+      [45, -54],
+      [6, -94],
+      [50, -45],
+      [-3, -46],
+      [-34, -16],
+      [-84, 31],
+      [14, 39],
+      [-61, 33],
+      [-95, 14],
+      [-39, -21],
+      [-20, -45],
+      [32, -30],
+      [-18, -60],
+      [58, -47],
+      [-46, -67],
+      [-82, 3],
+      [14, -49],
+      [-27, -34],
+      [-2, -101],
+      [-19, -66],
+      [98, -2],
+      [-57, -142],
+      [-1, -81],
+      [-31, -76],
+      [-52, 7],
+      [-36, 113],
+      [-88, 34],
+      [22, 31],
+      [71, -38],
+      [-8, 66],
+      [20, 27],
+      [-103, 34],
+      [-80, 53],
+      [21, 21],
+      [95, -1],
+      [-32, 93],
+      [-70, -27],
+      [1, -42],
+      [-78, -14],
+      [8, 54],
+      [-56, 21],
+      [-86, -14],
+      [5, -107],
+      [-76, 13],
+      [-54, -22],
+      [-53, 64],
+      [-40, 24],
+      [-75, 8],
+      [-34, 49],
+      [27, 67],
+      [-18, 56],
+      [21, 33],
+      [-21, 65],
+      [-60, -32],
+      [11, -93],
+      [-55, -6],
+      [-92, 31],
+      [-89, -108],
+      [-92, -22],
+      [-29, 31],
+      [-86, -44],
+      [-42, 58]
+    ],
+    [
+      [5341, 4206],
+      [39, 67],
+      [-45, 95],
+      [-70, 48],
+      [-67, 141],
+      [-76, 56],
+      [-40, 107],
+      [-3, 80],
+      [-46, 128]
+    ],
+    [
+      [5033, 4928],
+      [49, 51],
+      [15, 60],
+      [-15, 69],
+      [69, 28],
+      [37, 54],
+      [-12, 54],
+      [-72, 167],
+      [-47, 148],
+      [94, 145],
+      [-20, 110],
+      [57, 71],
+      [-4, 106],
+      [48, 82],
+      [89, 54],
+      [30, 96],
+      [59, -12],
+      [54, 36],
+      [64, 5],
+      [45, 61],
+      [55, 46]
+    ],
+    [
+      [2016, 9691],
+      [27, -63],
+      [85, -30],
+      [-24, -46],
+      [-122, 11],
+      [34, 128]
+    ],
+    [
+      [2753, 9725],
+      [60, -43],
+      [-43, -72],
+      [-54, -41],
+      [-46, 17],
+      [2, 104],
+      [81, 35]
+    ],
+    [
+      [2624, 10020],
+      [66, -63],
+      [-18, -44],
+      [-76, 55],
+      [28, 52]
+    ],
+    [
+      [2729, 10333],
+      [23, -18],
+      [-14, -63],
+      [-71, 33],
+      [62, 48]
+    ],
+    [
+      [3315, 10027],
+      [-7, -1],
+      [-3, -13],
+      [-13, -7],
+      [-44, -59],
+      [-105, 17],
+      [-61, 61],
+      [-10, 38],
+      [-48, -2],
+      [-34, 28],
+      [0, 55],
+      [41, 74],
+      [-17, 127],
+      [-78, -27],
+      [-47, -43],
+      [41, -11],
+      [40, -60],
+      [-37, -29],
+      [-120, -34],
+      [-38, -46],
+      [-84, -57],
+      [-47, -1],
+      [-45, 60],
+      [-30, -15],
+      [-55, 67],
+      [127, 71],
+      [118, 5],
+      [42, 73],
+      [38, 10],
+      [47, -31],
+      [40, 36],
+      [37, 20],
+      [26, 8],
+      [27, 16],
+      [-49, 59]
+    ],
+    [
+      [3390, 10369],
+      [-47, -106]
+    ],
+    [
+      [2446, 10828],
+      [-1, -99],
+      [43, -33],
+      [53, -7],
+      [14, -67],
+      [-53, -38],
+      [-110, 99],
+      [-21, 43],
+      [10, 73],
+      [65, 29]
+    ],
+    [
+      [2287, 10983],
+      [50, -1],
+      [47, -30],
+      [89, -21],
+      [-68, -72],
+      [-102, -5],
+      [-34, -32],
+      [-56, 51],
+      [36, 77],
+      [38, 33]
+    ],
+    [
+      [2662, 11015],
+      [45, -46],
+      [110, -69],
+      [33, -109],
+      [-17, -29],
+      [21, -54],
+      [-15, -60],
+      [35, -152],
+      [-46, -40],
+      [-66, 19],
+      [-32, -33],
+      [-104, 6],
+      [-69, 44],
+      [-4, 45],
+      [69, 46],
+      [-5, 45],
+      [-37, 71],
+      [-73, 40],
+      [13, 114],
+      [-12, 68],
+      [73, 35],
+      [16, 38],
+      [65, 21]
+    ],
+    [
+      [3714, 787],
+      [25, -23],
+      [-4, -66],
+      [-53, 42],
+      [32, 47]
+    ],
+    [
+      [2875, 785],
+      [101, 1],
+      [18, 28],
+      [65, 4],
+      [41, 23],
+      [37, -15],
+      [127, 44],
+      [84, 12],
+      [56, -19],
+      [52, 5],
+      [28, -64],
+      [37, -19],
+      [67, 7],
+      [40, -48],
+      [-1, -84],
+      [45, 2],
+      [-45, -128],
+      [-11, -66],
+      [-45, -19],
+      [-83, -163],
+      [-68, -33],
+      [-64, 12],
+      [-64, -66],
+      [-39, 1],
+      [-99, -29],
+      [-59, 0],
+      [-52, -59],
+      [-60, 3],
+      [-147, -15],
+      [-89, -29],
+      [-39, 37],
+      [-40, -13],
+      [-42, 24],
+      [-52, -31],
+      [-128, 16],
+      [-51, -39],
+      [-7, -43],
+      [-39, -22],
+      [-90, 107],
+      [-52, 15],
+      [-76, 91],
+      [10, 75],
+      [-12, 42],
+      [81, 75],
+      [39, 61],
+      [73, 45],
+      [9, 64],
+      [68, 21],
+      [33, 57],
+      [108, 20],
+      [36, 28],
+      [133, 18],
+      [82, 57],
+      [43, -13],
+      [41, 22]
+    ],
+    [
+      [2415, 5766],
+      [22, -30],
+      [-32, -47],
+      [-78, -48],
+      [-25, 42],
+      [113, 83]
+    ],
+    [
+      [2672, 5306],
+      [7, 50],
+      [85, 141],
+      [100, 61],
+      [23, -21],
+      [49, 42],
+      [54, -7],
+      [77, 74],
+      [36, -7],
+      [47, 31],
+      [-44, 32],
+      [-82, -22],
+      [-64, 9],
+      [-133, -26],
+      [-103, 72],
+      [10, 79],
+      [75, 36],
+      [103, 94],
+      [29, -9],
+      [64, 59],
+      [55, 73],
+      [-12, 87],
+      [156, 30],
+      [168, -55],
+      [-14, 69],
+      [-88, 34],
+      [-72, 55],
+      [-9, 25],
+      [77, 35],
+      [69, -13],
+      [67, 31],
+      [-5, 74],
+      [-55, -39],
+      [-118, -8],
+      [-59, 18],
+      [-25, -24],
+      [-109, 6],
+      [4, 134],
+      [-97, 32],
+      [-28, 42],
+      [116, 13],
+      [27, -13],
+      [129, 29],
+      [78, 1],
+      [41, 18],
+      [-15, 58]
+    ],
+    [
+      [5033, 4928],
+      [-206, 129],
+      [-88, 11],
+      [-111, -29],
+      [-41, -55],
+      [-104, 2],
+      [-43, -21],
+      [-56, 30],
+      [-188, 11],
+      [-62, -18],
+      [-120, 30],
+      [15, 131],
+      [-47, 43],
+      [-38, 95],
+      [-59, -10],
+      [-96, -84],
+      [-45, 23],
+      [-14, 38],
+      [-176, 136],
+      [-169, -53],
+      [-3, -126],
+      [-41, -51],
+      [-20, -68],
+      [-30, -32],
+      [-52, 0],
+      [-105, -46],
+      [-100, 10],
+      [-49, -31],
+      [-71, -2],
+      [-55, 79],
+      [-49, 40],
+      [2, 28],
+      [-73, 67],
+      [2, 53],
+      [-69, 48]
+    ],
+    [
+      [8, 2141],
+      [25, -4],
+      [32, -65],
+      [-65, 17],
+      [8, 52]
+    ],
+    [
+      [2885, 2346],
+      [60, -29],
+      [58, -6],
+      [-107, -99],
+      [-70, -6],
+      [10, 112],
+      [49, 28]
+    ],
+    [
+      [3105, 2388],
+      [25, -62],
+      [19, -103],
+      [-32, -38],
+      [-53, 54],
+      [41, 70],
+      [-20, 48],
+      [20, 31]
+    ],
+    [
+      [3586, 2429],
+      [66, -88],
+      [-20, -65],
+      [-67, 2],
+      [-68, 50],
+      [49, 84],
+      [40, 17]
+    ],
+    [
+      [2936, 2472],
+      [82, -27],
+      [36, -51],
+      [-128, -56],
+      [-14, 78],
+      [24, 56]
+    ],
+    [
+      [4312, 2510],
+      [6, -96],
+      [-67, 13],
+      [13, 41],
+      [48, 42]
+    ],
+    [
+      [1886, 2670],
+      [27, -35],
+      [56, 9],
+      [21, -66],
+      [-59, -6],
+      [-69, 15],
+      [-11, 44],
+      [35, 39]
+    ],
+    [
+      [3771, 2722],
+      [62, -37],
+      [-74, -46],
+      [-43, 50],
+      [55, 33]
+    ],
+    [
+      [3472, 2764],
+      [16, -23],
+      [67, -4],
+      [10, -88],
+      [-90, -8],
+      [-15, 46],
+      [-47, 17],
+      [59, 60]
+    ],
+    [
+      [1837, 2769],
+      [63, -89],
+      [-76, 26],
+      [13, 63]
+    ],
+    [
+      [3862, 2817],
+      [31, -71],
+      [80, 16],
+      [-94, -111],
+      [0, 69],
+      [-62, 47],
+      [45, 50]
+    ],
+    [
+      [3176, 2870],
+      [81, -46],
+      [8, -75],
+      [81, -100],
+      [-13, -44],
+      [-65, -13],
+      [-26, 23],
+      [-62, 1],
+      [-24, 46],
+      [-55, 39],
+      [-19, 121],
+      [20, 24],
+      [74, 24]
+    ],
+    [
+      [3693, 2893],
+      [12, -16],
+      [-37, -86],
+      [-52, -40],
+      [-87, 47],
+      [38, 70],
+      [98, -27],
+      [28, 52]
+    ],
+    [
+      [3472, 2965],
+      [9, -76],
+      [-42, -68],
+      [-126, 9],
+      [39, 84],
+      [120, 51]
+    ],
+    [
+      [3891, 3006],
+      [42, -21],
+      [20, -67],
+      [-78, 9],
+      [-6, 55],
+      [22, 24]
+    ],
+    [
+      [5410, 3009],
+      [8, -89],
+      [-48, -17],
+      [40, 106]
+    ],
+    [
+      [4715, 3044],
+      [30, -28],
+      [75, 4],
+      [57, -79],
+      [-96, -51],
+      [-14, 85],
+      [-54, 9],
+      [2, 60]
+    ],
+    [
+      [4235, 3090],
+      [35, -50],
+      [-53, -108],
+      [-72, 13],
+      [-95, -8],
+      [-53, 82],
+      [38, 32],
+      [39, -16],
+      [81, 40],
+      [80, 15]
+    ],
+    [
+      [4719, 3209],
+      [38, -17],
+      [-35, -68],
+      [62, -6],
+      [5, -56],
+      [-108, 23],
+      [-12, 59],
+      [50, 65]
+    ],
+    [
+      [5282, 3227],
+      [35, -12],
+      [63, -146],
+      [-84, 35],
+      [-74, 86],
+      [60, 37]
+    ],
+    [
+      [1996, 3263],
+      [15, -33],
+      [-107, -59],
+      [14, 63],
+      [78, 29]
+    ],
+    [
+      [5117, 3304],
+      [33, -27],
+      [-4, -47],
+      [-48, 2],
+      [19, 72]
+    ],
+    [
+      [2306, 3314],
+      [83, -31],
+      [22, -53],
+      [40, -33],
+      [36, 6],
+      [67, -69],
+      [-32, -136],
+      [15, -35],
+      [-60, -67],
+      [-93, -50],
+      [-49, 9],
+      [-17, -40],
+      [-55, -16],
+      [-49, -37],
+      [-95, -3],
+      [-22, 52],
+      [-69, 39],
+      [-44, 56],
+      [62, 99],
+      [52, 39],
+      [98, 42],
+      [16, 50],
+      [68, 56],
+      [27, 59],
+      [-1, 63]
+    ],
+    [
+      [1919, 3409],
+      [92, -60],
+      [-9, -58],
+      [-50, 22],
+      [-33, 96]
+    ],
+    [
+      [1510, 3411],
+      [20, -64],
+      [-71, -8],
+      [-7, 35],
+      [58, 37]
+    ],
+    [
+      [1864, 3422],
+      [5, -54],
+      [41, -56],
+      [-48, -39],
+      [-34, 82],
+      [-1, 56],
+      [37, 11]
+    ],
+    [
+      [2113, 3511],
+      [43, -23],
+      [30, -60],
+      [-112, -46],
+      [-12, 70],
+      [51, 59]
+    ],
+    [
+      [692, 3574],
+      [2, -86],
+      [-35, -17],
+      [-59, -64],
+      [-16, 68],
+      [55, 96],
+      [53, 3]
+    ],
+    [
+      [5287, 3656],
+      [85, -40],
+      [-42, -52],
+      [57, -81],
+      [12, -74],
+      [-16, -44],
+      [31, -36],
+      [-36, -29],
+      [-79, 20],
+      [-54, 97],
+      [1, 54],
+      [45, 29],
+      [20, 52],
+      [-24, 104]
+    ],
+    [
+      [1736, 3665],
+      [5, -35],
+      [78, -52],
+      [5, -33],
+      [-87, -74],
+      [-89, 37],
+      [-8, 94],
+      [67, -3],
+      [29, 66]
+    ],
+    [
+      [1985, 3752],
+      [72, -8],
+      [17, -36],
+      [81, -31],
+      [7, -87],
+      [-47, -3],
+      [-37, 55],
+      [-38, -28],
+      [-29, 49],
+      [-56, 23],
+      [30, 66]
+    ],
+    [
+      [2083, 3811],
+      [42, -25],
+      [10, -55],
+      [-42, -9],
+      [-52, 69],
+      [42, 20]
+    ],
+    [
+      [1795, 3830],
+      [10, -61],
+      [-49, -41],
+      [-61, 5],
+      [-29, -37],
+      [15, -74],
+      [-51, -5],
+      [-46, 38],
+      [2, 77],
+      [18, 38],
+      [60, -17],
+      [73, 30],
+      [58, 47]
+    ],
+    [
+      [2036, 4010],
+      [50, -6],
+      [-9, -43],
+      [27, -55],
+      [-71, -30],
+      [9, -63],
+      [-44, 7],
+      [-71, 98],
+      [43, 36],
+      [63, -24],
+      [3, 80]
+    ],
+    [
+      [5234, 4048],
+      [26, -43],
+      [-16, -31],
+      [-62, 36],
+      [52, 38]
+    ],
+    [
+      [2402, 4103],
+      [27, -32],
+      [49, 1],
+      [20, -37],
+      [-40, -27],
+      [-12, -48],
+      [76, -2],
+      [18, -89],
+      [-41, -20],
+      [-31, 83],
+      [-104, 14],
+      [-1, 43],
+      [49, 38],
+      [-46, 45],
+      [36, 31]
+    ],
+    [
+      [2267, 4140],
+      [46, -11],
+      [-33, -56],
+      [-35, 36],
+      [22, 31]
+    ],
+    [
+      [1921, 4142],
+      [70, -66],
+      [-21, -104],
+      [-96, -22],
+      [-113, 15],
+      [72, 94],
+      [85, 20],
+      [3, 63]
+    ],
+    [
+      [5262, 4174],
+      [11, -49],
+      [73, -22],
+      [-24, -50],
+      [-106, 27],
+      [-8, 41],
+      [54, 53]
+    ],
+    [
+      [5322, 4193],
+      [10, -63],
+      [-43, 0],
+      [-9, 43],
+      [42, 20]
+    ],
+    [
+      [2073, 4272],
+      [57, -8],
+      [35, -29],
+      [-86, -26],
+      [-6, 63]
+    ],
+    [
+      [2073, 4352],
+      [44, -11],
+      [12, -53],
+      [-57, 5],
+      [1, 59]
+    ],
+    [
+      [2100, 4434],
+      [67, -21],
+      [30, -59],
+      [-56, -4],
+      [-83, 51],
+      [42, 33]
+    ],
+    [
+      [2192, 4555],
+      [112, -35],
+      [-12, -49],
+      [63, -92],
+      [-50, -39],
+      [-51, 85],
+      [-87, 12],
+      [-38, 32],
+      [-7, 53],
+      [70, 33]
+    ],
+    [
+      [2107, 4638],
+      [-52, -27],
+      [-41, -117],
+      [38, -21],
+      [-33, -63],
+      [-59, 10],
+      [-7, 29],
+      [-63, 42],
+      [26, 41],
+      [42, 2],
+      [89, 89],
+      [60, 15]
+    ],
+    [
+      [5341, 4206],
+      [-74, -21],
+      [-50, -50],
+      [-41, -23],
+      [10, -22],
+      [-89, -60],
+      [-42, 29],
+      [-45, 0],
+      [-42, -32],
+      [51, -96],
+      [53, -8],
+      [-14, -43],
+      [67, -9],
+      [52, 36],
+      [20, 47],
+      [66, -16],
+      [56, 30],
+      [39, -28],
+      [-27, -108],
+      [-42, -78],
+      [25, -77],
+      [-105, -54],
+      [-67, 68],
+      [-35, -7],
+      [-30, -71],
+      [-32, -37],
+      [-3, -48],
+      [38, -88],
+      [-28, -25],
+      [-74, 46],
+      [-38, -21],
+      [-39, 47],
+      [8, 115],
+      [49, 52],
+      [0, 67],
+      [-50, 113],
+      [-63, 97],
+      [-11, 69],
+      [-49, -9],
+      [-1, -68],
+      [-191, -51],
+      [47, -31],
+      [-66, -67],
+      [32, -36],
+      [-59, -65],
+      [32, -69],
+      [69, -47],
+      [8, -43],
+      [86, -25],
+      [51, -76],
+      [19, -89],
+      [-61, -45],
+      [-84, 31],
+      [-107, -59],
+      [116, -36],
+      [-68, -103],
+      [-61, -59],
+      [-80, -3],
+      [14, -72],
+      [-44, -15],
+      [-60, 81],
+      [-39, 12],
+      [2, 68],
+      [-78, 23],
+      [-20, 33],
+      [-166, -25],
+      [-31, 16],
+      [-15, 71],
+      [62, 86],
+      [53, -3],
+      [3, 78],
+      [49, 49],
+      [59, 14],
+      [26, 111],
+      [31, 27],
+      [49, -5],
+      [-5, -86],
+      [68, -19],
+      [45, 113],
+      [-15, 89],
+      [-30, 5],
+      [-50, -41],
+      [-55, -7],
+      [-33, 65],
+      [-66, -53],
+      [-24, -74],
+      [-39, -35],
+      [-71, 2],
+      [-28, 25],
+      [-67, -79],
+      [-56, -16],
+      [-40, -66],
+      [-104, -32],
+      [9, -58],
+      [-40, -59],
+      [21, -46],
+      [-59, -55],
+      [23, -20],
+      [-16, -62],
+      [25, -17],
+      [-58, -76],
+      [-144, 1],
+      [24, -54],
+      [-102, 43],
+      [-36, -10],
+      [-57, 45],
+      [15, 42],
+      [-20, 66],
+      [17, 130],
+      [-58, 13],
+      [-10, -167],
+      [-43, -45],
+      [18, -24],
+      [-51, -72],
+      [-48, -6],
+      [-42, -45],
+      [-27, 12],
+      [-60, -37],
+      [-45, -61],
+      [16, -64],
+      [-41, -110],
+      [-83, 22],
+      [-27, -44],
+      [-56, -19],
+      [18, 82],
+      [-9, 74],
+      [-84, -11],
+      [-9, 50],
+      [34, 21],
+      [-3, 46],
+      [49, 20],
+      [-13, 35],
+      [-49, 13],
+      [-30, 36],
+      [3, 52],
+      [-27, 73],
+      [11, 101],
+      [-87, 11],
+      [-62, -40],
+      [4, 65],
+      [-110, 32],
+      [-36, -14],
+      [-18, 55],
+      [-47, 24],
+      [2, 55],
+      [-43, 36],
+      [-16, 94],
+      [61, 189],
+      [70, -22],
+      [27, -122],
+      [-10, -89],
+      [49, -17],
+      [22, -82],
+      [46, -14],
+      [95, -53],
+      [36, 50],
+      [-33, 35],
+      [-29, 75],
+      [-29, 23],
+      [0, 76],
+      [81, -16],
+      [-38, -59],
+      [78, -62],
+      [83, -11],
+      [26, 37],
+      [125, -52],
+      [-115, 182],
+      [-60, 70],
+      [-96, 10],
+      [-86, -3],
+      [-51, 32],
+      [18, 70],
+      [-42, -3],
+      [-15, 47],
+      [29, 51],
+      [64, 61],
+      [-13, 72],
+      [-25, 21],
+      [32, 62],
+      [-27, 22],
+      [5, 91],
+      [-54, 28],
+      [12, -74],
+      [-12, -50],
+      [-73, -8],
+      [-19, 64],
+      [-52, 50],
+      [16, 30],
+      [81, -11],
+      [29, 47],
+      [-24, 23],
+      [88, 52],
+      [-15, 54],
+      [-61, -17],
+      [-38, 115],
+      [-32, -2],
+      [-4, -77],
+      [-47, 12],
+      [-56, -16],
+      [-29, 66],
+      [5, 39],
+      [-13, 50],
+      [36, 66],
+      [38, -27],
+      [51, 8],
+      [49, -54],
+      [6, -54],
+      [66, -50],
+      [53, 9],
+      [15, -112],
+      [101, 105],
+      [-98, 148],
+      [-85, 79],
+      [21, 49],
+      [-10, 40],
+      [-97, 7],
+      [36, 107],
+      [63, 74],
+      [20, 100],
+      [39, 101],
+      [19, 114],
+      [53, 27],
+      [1, 0]
+    ],
+    [
+      [8695, 5748],
+      [24, -23],
+      [-23, -60],
+      [12, -65],
+      [-54, -172],
+      [-96, -11],
+      [-77, -60],
+      [18, -53],
+      [13, -148],
+      [-72, -46]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0005012251344949894, 0.0004209892550424911],
+    "translate": [125.0943069458009, 33.194862365722656]
+  },
+  "objects": {
+    "korea": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[[0]], [[1]], [[2, 3, 4]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-26",
+            "NAME_0": "South Korea",
+            "ID_1": 1,
+            "NAME_1": "Busan",
+            "TYPE_1": "Gwangyeoksi",
+            "ENGTYPE_1": "Metropolitan City",
+            "NL_NAME_1": "부산광역시",
+            "VARNAME_1": "Pusan"
+          }
+        },
+        {
+          "arcs": [[5, 6, 7, 8, 9, 10, 11, 12]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-43",
+            "NAME_0": "South Korea",
+            "ID_1": 2,
+            "NAME_1": "Chungcheongbuk-do",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "충청북도",
+            "VARNAME_1": "Chungchongbuk-Do"
+          }
+        },
+        {
+          "arcs": [[[13]], [[14, -11, 15, 16, -8, 17, 18]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-44",
+            "NAME_0": "South Korea",
+            "ID_1": 3,
+            "NAME_1": "Chungcheongnam-do",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "충청남도",
+            "VARNAME_1": "Chungchongnam-Do"
+          }
+        },
+        {
+          "arcs": [[19, 20]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-27",
+            "NAME_0": "South Korea",
+            "ID_1": 4,
+            "NAME_1": "Daegu",
+            "TYPE_1": "Gwangyeoksi",
+            "ENGTYPE_1": "Metropolitan City",
+            "NL_NAME_1": "대구광역시",
+            "VARNAME_1": "Taegu"
+          }
+        },
+        {
+          "arcs": [[-9, -17, 21]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-30",
+            "NAME_0": "South Korea",
+            "ID_1": 5,
+            "NAME_1": "Daejeon",
+            "TYPE_1": "Gwangyeoksi",
+            "ENGTYPE_1": "Metropolitan City",
+            "NL_NAME_1": "대구광역시",
+            "VARNAME_1": "Daejeon Gwang'yeogsi"
+          }
+        },
+        {
+          "arcs": [[22, -13, 23, 24]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-42",
+            "NAME_0": "South Korea",
+            "ID_1": 6,
+            "NAME_1": "Gangwon-do",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "강원도",
+            "VARNAME_1": "Kang-Won-Do"
+          }
+        },
+        {
+          "arcs": [[25]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-29",
+            "NAME_0": "South Korea",
+            "ID_1": 7,
+            "NAME_1": "Gwangju",
+            "TYPE_1": "Gwangyeoksi",
+            "ENGTYPE_1": "Metropolitan City",
+            "NL_NAME_1": "광주광역시",
+            "VARNAME_1": "Kwangju"
+          }
+        },
+        {
+          "arcs": [[-24, -12, -15, 26, 27, 28, 29, 30]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-41",
+            "NAME_0": "South Korea",
+            "ID_1": 8,
+            "NAME_1": "Gyeonggi-do",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "경기도",
+            "VARNAME_1": "Kyonggi-do"
+          }
+        },
+        {
+          "arcs": [[[31, 32, -21, 33, 34, -6, -23, 35]], [[36]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-47",
+            "NAME_0": "South Korea",
+            "ID_1": 9,
+            "NAME_1": "Gyeongsangbuk-do",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "경상북도",
+            "VARNAME_1": "Kyongsangbuk-Do"
+          }
+        },
+        {
+          "arcs": [
+            [[37]],
+            [[38]],
+            [[39]],
+            [[40]],
+            [[41]],
+            [[42]],
+            [[43]],
+            [[44]],
+            [[45]],
+            [[-20, -33, 46, -4, 47, 48, 49, -34]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-48",
+            "NAME_0": "South Korea",
+            "ID_1": 10,
+            "NAME_1": "Gyeongsangnam-do",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "경상남도",
+            "VARNAME_1": "Kyongsangnam-Do"
+          }
+        },
+        {
+          "arcs": [[[50]], [[51]], [[52]], [[53]], [[54, -30, 55, -28]], [[56]], [[57]], [[58]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-28",
+            "NAME_0": "South Korea",
+            "ID_1": 11,
+            "NAME_1": "Incheon",
+            "TYPE_1": "Gwangyeoksi",
+            "ENGTYPE_1": "Metropolitan City",
+            "NL_NAME_1": "인천광역시",
+            "VARNAME_1": "Inchon"
+          }
+        },
+        {
+          "arcs": [[[59]], [[60]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-49",
+            "NAME_0": "South Korea",
+            "ID_1": 12,
+            "NAME_1": "Jeju",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "제주특별자치도",
+            "VARNAME_1": "Jeju-doQuelpart"
+          }
+        },
+        {
+          "arcs": [[[61]], [[62, -18, -7, -35, -50, 63]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-45",
+            "NAME_0": "South Korea",
+            "ID_1": 13,
+            "NAME_1": "Jeollabuk-do",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "전라북도",
+            "VARNAME_1": "Chollabuk-Do"
+          }
+        },
+        {
+          "arcs": [
+            [[64]],
+            [[65]],
+            [[66]],
+            [[67]],
+            [[68]],
+            [[69]],
+            [[70]],
+            [[71]],
+            [[72]],
+            [[73]],
+            [[74]],
+            [[75]],
+            [[76]],
+            [[77]],
+            [[78]],
+            [[79]],
+            [[80]],
+            [[81]],
+            [[82]],
+            [[83]],
+            [[84]],
+            [[85]],
+            [[86]],
+            [[87]],
+            [[88]],
+            [[89]],
+            [[90]],
+            [[91]],
+            [[92]],
+            [[93]],
+            [[94]],
+            [[95]],
+            [[96]],
+            [[97]],
+            [[98]],
+            [[99]],
+            [[100]],
+            [[101]],
+            [[102]],
+            [[103]],
+            [[104]],
+            [[105]],
+            [[106]],
+            [[107]],
+            [[108]],
+            [[-64, -49, 109], [-26]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-46",
+            "NAME_0": "South Korea",
+            "ID_1": 14,
+            "NAME_1": "Jeollanam-do",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "전라남도",
+            "VARNAME_1": "Chollanam-Do"
+          }
+        },
+        {
+          "arcs": [[-16, -10, -22]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-50",
+            "NAME_0": "South Korea",
+            "ID_1": 15,
+            "NAME_1": "Sejong",
+            "TYPE_1": "Do",
+            "ENGTYPE_1": "Metropolitan Autonomous City",
+            "NL_NAME_1": "세종특별자치시",
+            "VARNAME_1": "Sejong Metropolitan Autonomous City"
+          }
+        },
+        {
+          "arcs": [[-56, -29]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-11",
+            "NAME_0": "South Korea",
+            "ID_1": 16,
+            "NAME_1": "Seoul",
+            "TYPE_1": "Teukbyeolsi",
+            "ENGTYPE_1": "Capital Metropolitan City",
+            "NL_NAME_1": "서울특별시",
+            "VARNAME_1": "Keijo"
+          }
+        },
+        {
+          "arcs": [[110, -5, -47, -32]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 213,
+            "ISO": "KR-31",
+            "NAME_0": "South Korea",
+            "ID_1": 17,
+            "NAME_1": "Ulsan",
+            "TYPE_1": "Metropolitan City",
+            "ENGTYPE_1": "Metropolitan City",
+            "NL_NAME_1": "울산광역시",
+            "VARNAME_1": "Ulsan-gwangyoksi"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/liechtenstein-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/liechtenstein-topo.json
new file mode 100644
index 0000000..200f67d
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/liechtenstein-topo.json
@@ -0,0 +1,1605 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [5301, 3925],
+      [-1, 24],
+      [-26, 81],
+      [-29, 43],
+      [-9, 43],
+      [-3, 40],
+      [1, 106],
+      [-20, 45],
+      [-85, 89],
+      [-45, 25],
+      [-54, 52],
+      [-69, 57],
+      [-42, 30]
+    ],
+    [
+      [4919, 4560],
+      [-55, 40],
+      [-42, 43],
+      [-88, 1],
+      [-58, 9],
+      [-50, 16],
+      [-51, 22],
+      [-64, 41],
+      [-107, 54],
+      [-62, 15],
+      [-86, 2],
+      [-39, 25]
+    ],
+    [
+      [4217, 4828],
+      [-4, 29],
+      [27, 48],
+      [-6, 43],
+      [8, 17],
+      [1, 50],
+      [7, 35],
+      [-15, 25],
+      [11, 66],
+      [29, 33],
+      [18, 35],
+      [2, 46],
+      [11, 33],
+      [23, 47]
+    ],
+    [
+      [4329, 5335],
+      [40, 51],
+      [26, 17],
+      [62, 54],
+      [16, 42],
+      [2, 31],
+      [10, 24],
+      [47, 50],
+      [12, 32]
+    ],
+    [
+      [4544, 5636],
+      [74, -50],
+      [259, -205],
+      [166, -312],
+      [337, -176],
+      [466, -90],
+      [-18, -392],
+      [175, -317],
+      [189, -210],
+      [-141, -183],
+      [-190, -242],
+      [-43, -66]
+    ],
+    [
+      [5818, 3393],
+      [0, 33],
+      [-13, 13],
+      [-66, 42],
+      [-129, 49],
+      [-59, 27],
+      [-60, 22],
+      [-87, 19],
+      [-18, 11],
+      [-18, 67],
+      [-1, 33],
+      [-15, 40],
+      [-3, 75],
+      [-21, 40],
+      [-3, 32],
+      [-24, 29]
+    ],
+    [
+      [4035, 2064],
+      [-11, -31],
+      [-30, -44],
+      [1, -43],
+      [37, -32],
+      [34, -38],
+      [9, -43],
+      [1, -56],
+      [7, -27],
+      [3, -76],
+      [16, -43],
+      [52, -55],
+      [46, -34],
+      [67, -58],
+      [8, -50],
+      [-41, -28],
+      [-63, -19],
+      [-56, -32],
+      [-108, -51],
+      [-80, -17],
+      [-70, 0],
+      [-129, 25],
+      [-102, 89],
+      [-59, 68],
+      [-43, 67],
+      [-10, 32],
+      [17, 61],
+      [1, 63],
+      [-16, 160],
+      [45, 86],
+      [102, 96],
+      [57, 50]
+    ],
+    [
+      [3720, 2084],
+      [54, -17],
+      [27, -4],
+      [67, -21],
+      [54, 17],
+      [30, 18],
+      [36, 2],
+      [47, -15]
+    ],
+    [
+      [1821, 1979],
+      [17, -16],
+      [45, -67],
+      [73, -71],
+      [21, -60],
+      [43, -80],
+      [17, -16],
+      [51, -29],
+      [118, -32],
+      [94, -8],
+      [24, -11],
+      [4, -14],
+      [-5, -90],
+      [-9, -47],
+      [-25, -60],
+      [1, -86],
+      [31, -55],
+      [36, -96],
+      [90, -78],
+      [12, -18],
+      [77, -82],
+      [167, -187]
+    ],
+    [
+      [2703, 776],
+      [-25, 10],
+      [-58, 1],
+      [-27, -8],
+      [-48, -27],
+      [-79, -29],
+      [-37, -25],
+      [-74, -32],
+      [-28, -16],
+      [-124, -18],
+      [-143, -16],
+      [-59, -12],
+      [-147, -49],
+      [-30, -13],
+      [-70, -55],
+      [-57, -57],
+      [-34, -20],
+      [-55, -17],
+      [-123, -24],
+      [-67, -6],
+      [-156, -6],
+      [-62, -8],
+      [-49, -19],
+      [-41, -48],
+      [-24, -13],
+      [-31, -4],
+      [-47, 10],
+      [-28, 12],
+      [-49, 31],
+      [-47, 15],
+      [-37, 4],
+      [-37, -6],
+      [-43, -32],
+      [-46, -73],
+      [-39, -77],
+      [-38, -55],
+      [-24, -22],
+      [-33, -12],
+      [-35, -1],
+      [-33, 10],
+      [-53, 47],
+      [-16, 25],
+      [-29, 86],
+      [-15, 27],
+      [-24, 23],
+      [-34, 12],
+      [-37, 0],
+      [-54, -12],
+      [-54, -20],
+      [-49, 21],
+      [-39, 38],
+      [-67, 144],
+      [-10, 34],
+      [-17, 105],
+      [-17, 70],
+      [-4, 70],
+      [9, 69],
+      [40, 110],
+      [82, 53],
+      [80, 37],
+      [38, 23],
+      [83, 23],
+      [63, 30],
+      [70, 18],
+      [63, 31],
+      [70, 18],
+      [62, 32],
+      [70, 19],
+      [63, 32],
+      [80, 25],
+      [71, 49],
+      [34, 28],
+      [159, 80],
+      [33, 28],
+      [71, 49],
+      [91, 33],
+      [115, 83],
+      [148, 75],
+      [70, 53],
+      [60, 58],
+      [32, 66],
+      [40, 52],
+      [24, 66]
+    ],
+    [
+      [2632, 7081],
+      [-71, -19],
+      [-42, 2],
+      [-100, 21],
+      [-40, 3]
+    ],
+    [
+      [2379, 7088],
+      [-13, 10]
+    ],
+    [
+      [2366, 7098],
+      [-21, 69],
+      [-11, 14],
+      [-129, 45],
+      [-58, 18],
+      [-116, 42],
+      [-384, 130],
+      [-4, 5],
+      [-42, 102],
+      [-96, 254],
+      [-5, 5],
+      [-75, 194],
+      [-11, 51],
+      [3, 17],
+      [27, 2],
+      [78, -15],
+      [67, 1],
+      [12, 27],
+      [1, 38],
+      [12, 8],
+      [39, -1],
+      [9, 15],
+      [0, 111],
+      [-9, 34],
+      [1, 44],
+      [9, 58],
+      [10, 10],
+      [54, 23],
+      [54, 11],
+      [33, 21],
+      [51, 44],
+      [42, 54],
+      [41, 31],
+      [128, 2],
+      [57, 44],
+      [21, 6],
+      [44, 0],
+      [24, -10],
+      [30, -62],
+      [19, -16],
+      [33, -9],
+      [40, 19],
+      [11, 23],
+      [34, 30],
+      [38, 4],
+      [38, 40],
+      [21, 9],
+      [78, 0],
+      [9, 3],
+      [41, 47]
+    ],
+    [
+      [2614, 8690],
+      [5, 14],
+      [42, 44],
+      [47, 33],
+      [73, 70],
+      [47, 22],
+      [16, -6],
+      [35, -54],
+      [23, -43]
+    ],
+    [
+      [2902, 8770],
+      [-123, -72],
+      [-82, -55],
+      [-35, -35],
+      [-16, -24],
+      [-93, 11],
+      [-37, -9],
+      [-25, -21],
+      [-95, -123],
+      [12, -28],
+      [66, -58],
+      [0, -20],
+      [-75, -43],
+      [-61, -31],
+      [-37, -45],
+      [-26, -70],
+      [-8, -73],
+      [25, -37],
+      [26, -24],
+      [89, -63],
+      [21, -19],
+      [94, -67],
+      [21, -11],
+      [106, -71],
+      [21, -11],
+      [141, -95],
+      [22, -6],
+      [62, 62],
+      [27, 23],
+      [73, 6],
+      [20, 74],
+      [28, 24],
+      [52, 9],
+      [82, 19],
+      [88, 17],
+      [51, 12],
+      [76, 0],
+      [32, -32],
+      [21, -30],
+      [42, -74],
+      [29, -85],
+      [22, -53],
+      [-15, -20],
+      [-40, -11],
+      [-90, -30],
+      [-83, -37],
+      [-1, -15],
+      [58, -55],
+      [66, -45],
+      [48, -15],
+      [67, -11],
+      [80, -44],
+      [40, -27],
+      [39, -15],
+      [80, -17],
+      [52, 13],
+      [25, 1],
+      [47, -9],
+      [49, -30],
+      [36, -27],
+      [77, -68],
+      [35, -9]
+    ],
+    [
+      [4108, 7171],
+      [-38, -42],
+      [-203, -270],
+      [0, -4]
+    ],
+    [
+      [3867, 6855],
+      [-97, 51],
+      [-66, 31],
+      [-108, -30],
+      [-29, -5],
+      [-45, 76],
+      [-18, 52],
+      [-5, 32]
+    ],
+    [
+      [3499, 7062],
+      [-5, 75],
+      [-8, 20],
+      [-2, 54],
+      [-26, 52],
+      [-62, 87],
+      [-102, 21],
+      [-103, 25],
+      [-4, 31],
+      [-59, 52],
+      [-37, 18],
+      [-70, 42],
+      [-18, 6],
+      [-22, -12],
+      [-60, -51],
+      [40, -76],
+      [88, -25],
+      [4, -57],
+      [-28, -19],
+      [-65, -10],
+      [-49, -14],
+      [-59, -29],
+      [-115, -71],
+      [-27, -1],
+      [-49, 8],
+      [-16, -20],
+      [-1, -37],
+      [-12, -50]
+    ],
+    [
+      [1296, 7180],
+      [-10, -2],
+      [-47, -39],
+      [-64, -48],
+      [-39, -33],
+      [-64, -48],
+      [-47, -41],
+      [-126, -95],
+      [-16, 6],
+      [-20, 42],
+      [-75, 134],
+      [-70, 46],
+      [-68, 36]
+    ],
+    [
+      [650, 7138],
+      [7, 104],
+      [32, 30],
+      [25, 39],
+      [20, 49],
+      [33, 41],
+      [30, 67],
+      [34, 41],
+      [30, 66],
+      [32, 42],
+      [11, 24],
+      [13, 70],
+      [14, 37],
+      [32, 42],
+      [30, 66]
+    ],
+    [
+      [993, 7856],
+      [39, -35],
+      [118, -62],
+      [22, 11],
+      [39, 35],
+      [22, 4],
+      [35, -42],
+      [-6, -15],
+      [-76, -69],
+      [-52, -52],
+      [-46, -61],
+      [-47, -57],
+      [-38, -59],
+      [-34, -46],
+      [-57, -57],
+      [-2, -47],
+      [13, -47],
+      [82, -51],
+      [16, 0],
+      [37, 24],
+      [21, 4],
+      [73, 1],
+      [13, 19],
+      [0, 36],
+      [8, 28],
+      [1, 47],
+      [8, 20],
+      [1, 47],
+      [6, 12],
+      [5, 57],
+      [21, 4],
+      [211, -113],
+      [11, -26],
+      [0, -31],
+      [15, -75],
+      [9, -88]
+    ],
+    [
+      [1461, 7172],
+      [-86, 1],
+      [-29, 7],
+      [-50, 0]
+    ],
+    [
+      [3099, 7064],
+      [-35, 41],
+      [8, 101],
+      [18, 22],
+      [40, 12],
+      [69, -90],
+      [82, -45],
+      [46, -11],
+      [93, -28],
+      [35, -5]
+    ],
+    [
+      [3455, 7061],
+      [-3, -54],
+      [-9, -32],
+      [-2, -47],
+      [-28, -50],
+      [-102, 24],
+      [-51, -17]
+    ],
+    [
+      [3260, 6885],
+      [-57, 98],
+      [-47, 34],
+      [-57, 47]
+    ],
+    [
+      [2091, 7132],
+      [-91, 8],
+      [-15, 5],
+      [-96, 10],
+      [-122, 0]
+    ],
+    [
+      [1767, 7155],
+      [-68, 9],
+      [-128, 0],
+      [-33, 7],
+      [-77, 1]
+    ],
+    [
+      [993, 7856],
+      [27, 32],
+      [14, 37],
+      [15, 90],
+      [41, 95],
+      [20, 124],
+      [40, 95],
+      [17, 108],
+      [15, 44],
+      [61, 108],
+      [53, 76],
+      [43, 50],
+      [33, 65],
+      [82, 78],
+      [14, 18],
+      [24, 56],
+      [40, 51],
+      [31, 66],
+      [36, 34]
+    ],
+    [
+      [1599, 9083],
+      [6, -12],
+      [47, -26],
+      [50, -21],
+      [63, 29],
+      [56, 41],
+      [51, 29],
+      [22, -7],
+      [50, -46],
+      [30, -37],
+      [-2, -44],
+      [10, -11],
+      [79, -26],
+      [27, -23],
+      [18, -57],
+      [2, -64],
+      [43, -38],
+      [113, -2]
+    ],
+    [
+      [2264, 8768],
+      [-12, -20],
+      [0, -43],
+      [40, -25],
+      [36, -2],
+      [77, 20],
+      [35, 1],
+      [47, -15],
+      [51, 0],
+      [25, 7],
+      [51, -1]
+    ],
+    [
+      [2366, 7098],
+      [-51, 3],
+      [-143, 21],
+      [-44, 2],
+      [-37, 8]
+    ],
+    [
+      [3099, 7064],
+      [-59, -35]
+    ],
+    [
+      [3040, 7029],
+      [-8, 15],
+      [-42, 29],
+      [-101, 54],
+      [-106, 0],
+      [-31, -12],
+      [-120, -34]
+    ],
+    [
+      [3499, 7062],
+      [-44, -1]
+    ],
+    [
+      [2902, 8770],
+      [53, 10],
+      [55, 77],
+      [70, 53],
+      [177, 75],
+      [45, -1],
+      [8, 33],
+      [38, 4],
+      [53, -30],
+      [36, -13]
+    ],
+    [
+      [3437, 8978],
+      [-85, -84],
+      [-181, -265],
+      [172, -149],
+      [294, -125],
+      [281, -170],
+      [189, -238],
+      [257, -360],
+      [-78, -216],
+      [-178, -200]
+    ],
+    [
+      [2379, 7088],
+      [160, -146],
+      [1, -24],
+      [-34, -51],
+      [-21, -19],
+      [-19, 9],
+      [-46, 41],
+      [-64, 49],
+      [-47, 41],
+      [-42, 31],
+      [-133, 49],
+      [-15, 11],
+      [-28, 53]
+    ],
+    [
+      [3410, 5840],
+      [5, 9],
+      [93, 105],
+      [62, 43],
+      [24, 46],
+      [45, 60],
+      [-76, 42],
+      [-79, 41],
+      [-31, 19],
+      [-78, 39],
+      [-77, 46],
+      [-57, 39],
+      [-21, 4],
+      [-75, 1],
+      [-73, 7],
+      [-14, -10],
+      [-29, -50],
+      [-37, -5],
+      [-103, 22],
+      [-49, 13],
+      [-61, 12],
+      [-18, 11],
+      [-2, 95],
+      [-7, 32],
+      [-2, 65],
+      [-34, 60],
+      [-53, 57],
+      [-76, 42],
+      [-2, 9],
+      [55, 93],
+      [39, 86],
+      [32, 51],
+      [13, 4],
+      [57, -22],
+      [22, 1],
+      [51, 30],
+      [54, 40],
+      [56, 9],
+      [37, 1],
+      [43, 8],
+      [33, 16]
+    ],
+    [
+      [3077, 7011],
+      [28, -24],
+      [70, -33],
+      [35, -35],
+      [20, -45],
+      [30, 11]
+    ],
+    [
+      [3867, 6855],
+      [16, -289],
+      [84, -374],
+      [95, -208],
+      [248, -189],
+      [234, -159]
+    ],
+    [
+      [4329, 5335],
+      [-18, 0],
+      [-121, 31],
+      [-113, 54],
+      [-128, 89],
+      [-21, 19],
+      [-89, 63],
+      [-123, 93],
+      [-21, 11],
+      [-81, 56],
+      [-204, 89]
+    ],
+    [
+      [2918, 6461],
+      [32, 0],
+      [21, -9],
+      [2, -38],
+      [43, -5],
+      [20, 6],
+      [54, 0],
+      [26, 11],
+      [7, 33],
+      [-45, 50],
+      [-23, 10],
+      [-63, 0],
+      [-19, 5],
+      [-19, 27],
+      [-20, 13],
+      [-43, 1],
+      [-20, -11],
+      [1, -61],
+      [46, -32]
+    ],
+    [
+      [2406, 6658],
+      [-51, 30],
+      [-26, 37],
+      [1, 21],
+      [16, 27],
+      [21, 1],
+      [87, -42],
+      [9, -43],
+      [-6, -15],
+      [-51, -16]
+    ],
+    [
+      [3243, 9962],
+      [-21, 8],
+      [-93, -95],
+      [-102, -89],
+      [-81, -62],
+      [-73, -63],
+      [-68, -51],
+      [-62, -39],
+      [-53, -46],
+      [-77, -73],
+      [1, -20],
+      [118, -103],
+      [95, -53],
+      [147, 81],
+      [31, 23],
+      [121, 105],
+      [100, 75],
+      [49, 30],
+      [6, -23],
+      [-51, -91],
+      [-61, -97],
+      [-110, -96],
+      [-21, -11],
+      [-85, -58],
+      [-48, -56],
+      [-18, -16],
+      [-87, -38],
+      [-61, -31],
+      [-81, -47],
+      [-96, -47],
+      [-65, -55],
+      [-57, -1],
+      [-22, 6],
+      [-53, -6],
+      [-101, -155]
+    ],
+    [
+      [1599, 9083],
+      [61, 63],
+      [24, 55],
+      [40, 52],
+      [24, 56],
+      [44, 50],
+      [50, 77],
+      [34, 90],
+      [37, 55],
+      [26, 106],
+      [37, 55],
+      [27, 78],
+      [34, 63],
+      [27, 77],
+      [39, 54],
+      [27, 76],
+      [39, 78],
+      [25, 84],
+      [26, 52],
+      [16, 59],
+      [4, 47],
+      [-1, 113],
+      [-6, 65],
+      [-19, 95],
+      [33, 47],
+      [35, 34],
+      [50, 57],
+      [116, -120],
+      [179, -160],
+      [224, -255],
+      [318, -241],
+      [74, -83]
+    ],
+    [
+      [3410, 5840],
+      [-20, -20],
+      [-56, -78],
+      [-22, -18],
+      [-68, -74],
+      [-8, -20]
+    ],
+    [
+      [3236, 5630],
+      [-151, 66],
+      [-69, 7],
+      [-71, 4],
+      [-25, 6],
+      [-153, -7],
+      [-102, 1],
+      [-136, -14],
+      [-67, 1],
+      [-202, 58],
+      [-179, 31],
+      [-54, -4],
+      [-62, -109],
+      [-28, -10],
+      [-59, -1],
+      [-13, -10],
+      [7, -56],
+      [0, -62],
+      [8, -45],
+      [1, -43],
+      [-9, -13],
+      [-114, -23],
+      [-118, -42],
+      [-13, 1],
+      [-109, 53],
+      [-69, 37],
+      [-18, 17],
+      [-26, 97],
+      [-18, 92],
+      [-24, 90],
+      [0, 49],
+      [16, 34],
+      [0, 18],
+      [-114, 24],
+      [-21, 1],
+      [-98, 21],
+      [-69, 9],
+      [-113, 2],
+      [-18, -9],
+      [2, -25],
+      [14, -48],
+      [28, -130],
+      [157, -118],
+      [30, -26],
+      [224, -168],
+      [0, -11],
+      [-30, -33],
+      [-1, -16],
+      [55, -43],
+      [20, -72],
+      [2, -25],
+      [15, -69],
+      [31, -72],
+      [22, -63],
+      [11, -21],
+      [69, -72],
+      [55, -63],
+      [37, -36],
+      [-9, -24],
+      [-75, -28],
+      [-41, -11],
+      [-14, 4],
+      [-30, 92],
+      [-47, 50],
+      [-72, 92],
+      [-115, 128],
+      [-21, 7],
+      [-90, 1],
+      [-58, -7],
+      [54, -84],
+      [221, -279],
+      [89, -305]
+    ],
+    [
+      [1479, 4426],
+      [-48, 83],
+      [-65, 86],
+      [-69, 61],
+      [-55, 42],
+      [-36, 34],
+      [-32, 72],
+      [-49, 62],
+      [-32, 79],
+      [-36, 66],
+      [-31, 79],
+      [-35, 45],
+      [-34, 69],
+      [-42, 54],
+      [-28, 58],
+      [-42, 55],
+      [-27, 58],
+      [-35, 44],
+      [-12, 24],
+      [-66, 188],
+      [-29, 141],
+      [-44, 98],
+      [-24, 126],
+      [-54, 207],
+      [-8, 49],
+      [-16, 179],
+      [11, 141],
+      [9, 46],
+      [41, 134],
+      [13, 163],
+      [6, 31],
+      [40, 138]
+    ],
+    [
+      [1296, 7180],
+      [18, -23],
+      [26, -75],
+      [37, -119],
+      [18, -40],
+      [89, -93],
+      [16, -23],
+      [65, -158],
+      [12, -3],
+      [90, -1],
+      [52, 8],
+      [90, -1],
+      [71, 8],
+      [6, 10],
+      [-34, 126],
+      [-2, 21],
+      [-40, 150],
+      [-26, 124],
+      [-17, 64]
+    ],
+    [
+      [3040, 7029],
+      [37, -18]
+    ],
+    [
+      [1953, 6362],
+      [55, -1],
+      [27, -20],
+      [46, -87],
+      [19, -17],
+      [70, -29],
+      [10, 1],
+      [77, 97],
+      [-31, 27],
+      [-57, 42],
+      [-45, 29],
+      [-130, 53],
+      [-23, -2],
+      [-29, -84],
+      [11, -9]
+    ],
+    [
+      [4320, 3136],
+      [9, 49],
+      [0, 39],
+      [9, 50],
+      [1, 76],
+      [6, 11],
+      [2, 56],
+      [58, 126],
+      [26, 71],
+      [19, 62],
+      [0, 35],
+      [9, 24],
+      [0, 56],
+      [-10, 22],
+      [-105, 17],
+      [-35, 3],
+      [-102, 35],
+      [-82, 9],
+      [-63, 17],
+      [-84, 55],
+      [-52, 50],
+      [-40, 49],
+      [-46, 28],
+      [-58, 27],
+      [-51, 30],
+      [-18, 24],
+      [-1, 36],
+      [11, 25],
+      [28, 32],
+      [31, 63],
+      [42, 51],
+      [18, 1],
+      [34, -26],
+      [22, 0],
+      [26, 33],
+      [0, 58],
+      [11, 20],
+      [57, 44],
+      [56, 64],
+      [28, 17],
+      [77, 64],
+      [36, 56],
+      [18, 42],
+      [9, 40],
+      [1, 51]
+    ],
+    [
+      [4919, 4560],
+      [-16, -33],
+      [-30, -33],
+      [-91, -115],
+      [-87, -74],
+      [-80, -23],
+      [-41, -8],
+      [-101, -8],
+      [-21, -22],
+      [27, -40],
+      [48, -59],
+      [20, -52],
+      [68, -57],
+      [34, -14],
+      [99, 0],
+      [44, -7],
+      [67, -1],
+      [73, 16],
+      [78, -12],
+      [54, -76],
+      [86, -12],
+      [53, -14],
+      [72, 1],
+      [26, 8]
+    ],
+    [
+      [5818, 3393],
+      [-125, -190],
+      [61, -52]
+    ],
+    [
+      [5754, 3151],
+      [-46, -53],
+      [-20, -33],
+      [-65, 12],
+      [-127, 36],
+      [-48, 10],
+      [-96, 28],
+      [-48, -6],
+      [-98, 0],
+      [-26, -6],
+      [-30, 5],
+      [-76, 2],
+      [-78, 14],
+      [-63, 2],
+      [-38, -11],
+      [-45, -37],
+      [-41, -25],
+      [-44, -14],
+      [-42, -2],
+      [-38, -21]
+    ],
+    [
+      [4685, 3052],
+      [-63, 29],
+      [-70, 18],
+      [-43, 20],
+      [-103, 3],
+      [-47, 13],
+      [-39, 1]
+    ],
+    [
+      [5118, 679],
+      [-81, 47],
+      [-28, 32],
+      [-21, 33],
+      [-54, 33],
+      [-60, 45],
+      [-51, 61],
+      [-66, 119],
+      [-99, 66],
+      [-2, 8],
+      [99, 85],
+      [6, 13],
+      [-34, 59],
+      [-56, 87],
+      [-34, 69],
+      [-20, 67],
+      [-58, 157],
+      [-39, 86],
+      [-51, 120],
+      [-16, 55],
+      [47, 118],
+      [-16, 44],
+      [-30, 56],
+      [-4, 26]
+    ],
+    [
+      [4450, 2165],
+      [78, 0],
+      [41, -10],
+      [96, -56],
+      [148, -46],
+      [130, -25],
+      [57, -14],
+      [58, 11]
+    ],
+    [
+      [5058, 2025],
+      [12, -20],
+      [19, -60],
+      [0, -30],
+      [27, -62],
+      [34, -38],
+      [64, -56],
+      [35, -50],
+      [11, -29],
+      [26, -47],
+      [19, -22],
+      [22, -47],
+      [18, -11]
+    ],
+    [
+      [5345, 1553],
+      [-48, -275],
+      [-149, -554],
+      [32, -32],
+      [-26, 0],
+      [-36, -13]
+    ],
+    [
+      [3243, 9962],
+      [185, -206],
+      [314, -402],
+      [-182, -254],
+      [-123, -122]
+    ],
+    [
+      [5118, 679],
+      [-67, -34],
+      [-61, -41],
+      [-67, -26],
+      [-75, -43],
+      [-64, -23],
+      [-80, -19],
+      [-30, -12],
+      [-33, -21],
+      [-35, -35],
+      [-80, -65],
+      [-91, -25],
+      [-97, -38],
+      [-102, -27],
+      [-202, -19],
+      [-83, -14],
+      [-122, -16],
+      [-39, -9],
+      [-148, -63],
+      [-77, -46],
+      [-93, -48],
+      [-79, -55],
+      [-64, 29],
+      [-53, 36],
+      [-52, 55],
+      [-14, 40],
+      [-6, 147],
+      [-21, 124],
+      [-11, 39],
+      [-32, 60],
+      [-62, 55],
+      [-69, 46],
+      [-89, 30],
+      [-116, 77],
+      [-65, 20],
+      [-36, 18]
+    ],
+    [
+      [1821, 1979],
+      [44, 87],
+      [26, 83],
+      [34, 65],
+      [11, 44],
+      [5, 76],
+      [1, 297],
+      [-8, 91],
+      [-41, 128],
+      [-21, 116],
+      [-9, 33],
+      [-33, 63],
+      [-34, 76],
+      [-44, 79],
+      [16, 57],
+      [9, 71],
+      [-2, 89],
+      [-9, 70],
+      [-18, 70],
+      [-23, 125],
+      [-43, 131]
+    ],
+    [
+      [1682, 3830],
+      [132, 23],
+      [97, 8],
+      [39, 6],
+      [77, -1],
+      [56, -8],
+      [46, -12],
+      [68, -3],
+      [45, -6],
+      [68, 7]
+    ],
+    [
+      [2310, 3844],
+      [72, -91],
+      [3, -88],
+      [81, -97],
+      [-23, -57],
+      [1, -15],
+      [54, -61],
+      [67, -22],
+      [27, 6],
+      [41, -1],
+      [35, -97],
+      [3, -17],
+      [-1, -110],
+      [-10, -63],
+      [-23, -85],
+      [-10, -56],
+      [-11, -29],
+      [-30, -52],
+      [-1, -19],
+      [62, -88],
+      [58, -4],
+      [70, 12],
+      [65, 6],
+      [80, 5],
+      [169, -112],
+      [12, -28],
+      [10, -59],
+      [10, -28],
+      [106, -98],
+      [72, -71],
+      [42, -37],
+      [81, -53],
+      [20, 0],
+      [154, 78],
+      [13, -1],
+      [103, -107],
+      [0, -188],
+      [8, -33]
+    ],
+    [
+      [4035, 2064],
+      [33, 25],
+      [34, 52],
+      [18, 47],
+      [-1, 21],
+      [-18, 59],
+      [-37, 100],
+      [-2, 18],
+      [0, 181],
+      [-8, 24],
+      [3, 33],
+      [87, 2],
+      [34, 7],
+      [55, 0],
+      [62, 8]
+    ],
+    [
+      [4295, 2641],
+      [-3, -91],
+      [10, -70],
+      [26, -97],
+      [23, -63],
+      [88, -146],
+      [11, -9]
+    ],
+    [
+      [2310, 3844],
+      [88, 31],
+      [18, 57],
+      [9, 80],
+      [-69, 56],
+      [-20, 42],
+      [-5, 60],
+      [-53, 59],
+      [-11, 64],
+      [0, 111],
+      [35, 113],
+      [28, 45],
+      [15, 13],
+      [65, 25],
+      [24, 13],
+      [4, 35],
+      [-40, 79],
+      [-26, 66],
+      [4, 49],
+      [24, 14],
+      [43, -8],
+      [20, -24],
+      [46, -73],
+      [12, -13],
+      [54, -15],
+      [25, 27],
+      [-1, 66],
+      [-31, 67],
+      [-1, 27],
+      [10, 25],
+      [56, 17],
+      [100, -2],
+      [55, -33],
+      [53, -71],
+      [15, -6],
+      [100, 38],
+      [52, 47],
+      [73, 30],
+      [40, 9],
+      [-3, 29],
+      [-47, 161],
+      [0, 32],
+      [82, 187],
+      [14, 40],
+      [38, 72],
+      [35, 81],
+      [2, 46],
+      [-6, 18]
+    ],
+    [
+      [4320, 3136],
+      [-33, -70],
+      [-34, -110],
+      [-11, -57],
+      [0, -92],
+      [17, -84],
+      [36, -82]
+    ],
+    [
+      [5058, 2025],
+      [36, 19],
+      [11, 17],
+      [26, 141],
+      [3, 43],
+      [32, 76],
+      [21, 67],
+      [29, 53],
+      [0, 44],
+      [-46, 41],
+      [-27, 39],
+      [-17, 78],
+      [-1, 34],
+      [-26, 76],
+      [-42, 31],
+      [-44, 50],
+      [-47, 36],
+      [-37, 53],
+      [-42, 37],
+      [-87, 53],
+      [-65, 17],
+      [-50, 22]
+    ],
+    [
+      [5754, 3151],
+      [230, -196],
+      [170, -245],
+      [129, -325],
+      [-102, -302],
+      [-55, -319],
+      [-407, -7],
+      [-363, -141],
+      [-11, -63]
+    ],
+    [
+      [1682, 3830],
+      [-8, 23],
+      [-25, 123],
+      [-44, 101],
+      [-23, 105],
+      [-10, 34],
+      [-33, 67],
+      [-36, 100],
+      [-24, 43]
+    ]
+  ],
+  "transform": {
+    "scale": [0.000026263459063090908, 0.000020732479520249057],
+    "translate": [9.472480773925838, 47.04738235473644]
+  },
+  "objects": {
+    "liechtenstein": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[[0, 1, 2, 3, 4, 5]], [[6, 7]], [[8, 9]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-01",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 1,
+            "NAME_1": "Balzers",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[10, 11, 12, 13, 14, 15, 16, 17]], [[18, 19, 20, 21]], [[22, 23, 24]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-02",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 2,
+            "NAME_1": "Eschen",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[25, 26, -21, 27, 28, 29, -13, 30]], [[31, 32, -18, 33, -23]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-03",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 3,
+            "NAME_1": "Gamprin",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-15, 34, 35]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-04",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 4,
+            "NAME_1": "Mauren",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[36, -31, -12]], [[37, 38, -24, -34, -17, 39, -4, 40], [41]], [[42]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-05",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 5,
+            "NAME_1": "Planken",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[43, -29, 44]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-06",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 6,
+            "NAME_1": "Ruggell",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [
+            [[45, 46, 47, -19, 48, -26, -37, -11, -33, 49, -38], [50], [-43]],
+            [[-42]],
+            [[51, -2, 52, -6, 53, 54, 55]],
+            [[56, 57, 58, 59]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-07",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 7,
+            "NAME_1": "Schaan",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-30, -44, 60, -35, -14]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-08",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 8,
+            "NAME_1": "Schellenberg",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[61, -9, 62, 63, 64, -7, 65, 66, -57]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-09",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 9,
+            "NAME_1": "Triesen",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[67, -46, -41, -3, -52, 68, -66, -8, -65]], [[-59, 69, -55, 70]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-10",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 10,
+            "NAME_1": "Triesenberg",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [
+            [[-22, -27, -49]],
+            [[-50, -32, -25, -39]],
+            [[-51]],
+            [[-64, 71, -47, -68]],
+            [[-1, -53]],
+            [[-58, -67, -69, -56, -70]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 129,
+            "ISO": "LI-11",
+            "NAME_0": "Liechtenstein",
+            "ID_1": 11,
+            "NAME_1": "Vaduz",
+            "TYPE_1": "Gemeinden",
+            "ENGTYPE_1": "Commune",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/morocco-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/morocco-topo.json
new file mode 100644
index 0000000..6dd73cf
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/morocco-topo.json
@@ -0,0 +1,3077 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [5939, 7385],
+      [-9, -46],
+      [-54, -86],
+      [-3, -43],
+      [42, -83],
+      [-28, -66],
+      [6, -86],
+      [-10, -41]
+    ],
+    [
+      [5883, 6934],
+      [-33, 19],
+      [-50, 102],
+      [-84, -1],
+      [-26, -67],
+      [-56, -41],
+      [-78, -2],
+      [-62, -15],
+      [-10, 26],
+      [59, 65],
+      [-7, 48],
+      [-75, 20],
+      [-2, 36],
+      [21, 54],
+      [-66, 3],
+      [-52, 30]
+    ],
+    [
+      [5362, 7211],
+      [-8, 34],
+      [43, 17],
+      [-32, 75],
+      [10, 33],
+      [-15, 48],
+      [33, 69]
+    ],
+    [
+      [5393, 7487],
+      [20, 56]
+    ],
+    [
+      [5413, 7543],
+      [0, 0],
+      [-1, 0],
+      [78, 80],
+      [130, 60]
+    ],
+    [
+      [5620, 7683],
+      [13, -25],
+      [41, -4],
+      [29, -74],
+      [1, -55],
+      [29, -55],
+      [54, -36],
+      [55, -64],
+      [97, 15]
+    ],
+    [
+      [6659, 6350],
+      [-37, -52],
+      [-34, -23],
+      [-110, -16],
+      [-50, -24],
+      [-169, -3],
+      [-90, 31],
+      [-74, -29],
+      [3, -39],
+      [-70, 21],
+      [-86, 15],
+      [-77, -53],
+      [-65, -18],
+      [-43, 32]
+    ],
+    [
+      [5757, 6192],
+      [-29, 42],
+      [6, 70],
+      [-15, 40],
+      [37, 46],
+      [-2, 100],
+      [19, 46],
+      [-5, 32],
+      [43, 31],
+      [42, 72],
+      [-3, 99],
+      [37, 71],
+      [-5, 54],
+      [36, 21]
+    ],
+    [
+      [5918, 6916],
+      [50, 9],
+      [45, -23],
+      [93, 15],
+      [37, -29],
+      [39, -63],
+      [38, 60],
+      [112, 61]
+    ],
+    [
+      [6332, 6946],
+      [-34, -78],
+      [9, -18],
+      [92, -35],
+      [10, -33],
+      [37, -14],
+      [43, -48],
+      [53, -28],
+      [8, -46],
+      [41, -20],
+      [7, -30],
+      [-58, -23],
+      [-2, -47],
+      [30, -13],
+      [61, 13],
+      [6, -35],
+      [34, -50],
+      [-20, -14],
+      [10, -77]
+    ],
+    [
+      [5883, 6934],
+      [35, -18]
+    ],
+    [
+      [5757, 6192],
+      [-13, -160],
+      [-51, -147],
+      [-45, -49]
+    ],
+    [
+      [5648, 5836],
+      [-49, 27],
+      [-89, 77],
+      [-47, 2],
+      [-42, 67],
+      [-71, -4],
+      [-90, -67],
+      [-68, -1],
+      [-64, 145],
+      [-26, 11],
+      [-34, 90],
+      [-27, 29],
+      [-57, 30],
+      [-86, 30],
+      [-5, 31],
+      [-75, 114]
+    ],
+    [
+      [4818, 6417],
+      [8, 52],
+      [-59, 23],
+      [11, 56],
+      [-12, 74],
+      [9, 123],
+      [-70, 77],
+      [28, 60],
+      [31, 39],
+      [46, -5],
+      [-2, 41],
+      [33, 12],
+      [30, 46],
+      [-49, 44],
+      [32, 76],
+      [-53, 85]
+    ],
+    [
+      [4801, 7220],
+      [104, 48]
+    ],
+    [
+      [4905, 7268],
+      [26, -46],
+      [61, 9],
+      [16, -19],
+      [48, 7],
+      [47, -57],
+      [41, 19],
+      [58, -6],
+      [28, -32],
+      [-65, -28],
+      [15, -61],
+      [34, -6],
+      [32, 94],
+      [75, 64],
+      [41, 5]
+    ],
+    [
+      [4818, 6417],
+      [-42, -35],
+      [-2, -93],
+      [-34, -30],
+      [0, -34],
+      [27, -46],
+      [-18, -66],
+      [-33, -53],
+      [-78, -75],
+      [-58, -1],
+      [-20, -67],
+      [-68, -13],
+      [-10, -27],
+      [-81, -35]
+    ],
+    [
+      [4401, 5842],
+      [-70, -41],
+      [-77, 120],
+      [5, 77],
+      [-39, 40],
+      [-49, 12],
+      [-32, -22],
+      [-37, 20],
+      [-103, -10],
+      [-34, 39],
+      [-63, 41],
+      [-31, 39],
+      [33, 38],
+      [4, 39],
+      [-32, 3],
+      [-47, 76]
+    ],
+    [
+      [3829, 6313],
+      [123, 117],
+      [103, 126],
+      [73, 97],
+      [25, 45],
+      [68, 91],
+      [1, 59],
+      [76, 106],
+      [35, 27],
+      [46, -27],
+      [62, 40],
+      [48, 49],
+      [42, 63],
+      [81, 22],
+      [26, 23],
+      [52, 12],
+      [111, 57]
+    ],
+    [
+      [4401, 5842],
+      [-4, -67],
+      [29, -81],
+      [58, -86],
+      [107, -56],
+      [38, -36],
+      [2, -41]
+    ],
+    [
+      [4631, 5475],
+      [-107, -98],
+      [-34, -70],
+      [-6, -43],
+      [-69, -112],
+      [17, -66],
+      [45, -51],
+      [-35, -10]
+    ],
+    [
+      [4442, 5025],
+      [-36, 27],
+      [-67, -33],
+      [-49, 18],
+      [-45, 52],
+      [-100, -23],
+      [-28, 11],
+      [-26, -31],
+      [-33, -3],
+      [-69, 55],
+      [-56, 15]
+    ],
+    [
+      [3933, 5113],
+      [-7, 20],
+      [-50, 33],
+      [-29, 102],
+      [-49, 19],
+      [-138, 13],
+      [-48, -12],
+      [-50, 6],
+      [-90, 37]
+    ],
+    [
+      [3472, 5331],
+      [75, 99],
+      [23, 52],
+      [7, 59],
+      [56, 78],
+      [10, 52],
+      [-14, 44],
+      [20, 60],
+      [-34, 36],
+      [-9, 38],
+      [30, 53],
+      [26, 90],
+      [-51, 84],
+      [157, 154],
+      [61, 83]
+    ],
+    [
+      [9377, 7122],
+      [24, -50],
+      [58, -72],
+      [30, -69],
+      [-8, -51],
+      [-20, -34],
+      [-101, -32],
+      [-105, -48],
+      [-55, -14],
+      [-68, -3],
+      [-88, 16],
+      [-145, -1],
+      [-68, -12],
+      [-47, -32],
+      [-73, -82],
+      [-34, -59],
+      [-96, -204],
+      [-55, -67],
+      [-43, -83],
+      [-4, -29]
+    ],
+    [
+      [8479, 6196],
+      [-33, -15],
+      [-95, -1],
+      [-84, 13],
+      [-7, 33]
+    ],
+    [
+      [8260, 6226],
+      [-3, 70],
+      [-86, 98],
+      [-37, 27],
+      [-23, 56],
+      [-29, 30],
+      [-91, 4],
+      [-84, -18],
+      [-42, 20],
+      [-45, 57],
+      [11, 87],
+      [-69, 76],
+      [-17, 38]
+    ],
+    [
+      [7745, 6771],
+      [-42, 156],
+      [-34, 86],
+      [-57, 57],
+      [-17, 38],
+      [3, 46],
+      [96, 157]
+    ],
+    [
+      [7694, 7311],
+      [46, 2],
+      [40, 38],
+      [41, -4],
+      [110, 48],
+      [72, 1],
+      [96, -44],
+      [143, -5],
+      [39, 32],
+      [21, 60],
+      [59, 38]
+    ],
+    [
+      [8361, 7477],
+      [33, 26],
+      [60, -15],
+      [-29, -88],
+      [32, -42],
+      [78, 4],
+      [129, 68],
+      [30, 42],
+      [6, 37],
+      [34, 25],
+      [41, 60],
+      [72, 48],
+      [50, 102],
+      [24, 16],
+      [14, 44],
+      [92, -52],
+      [42, -58],
+      [116, -41],
+      [46, -43],
+      [118, -31]
+    ],
+    [
+      [9349, 7579],
+      [-18, -80],
+      [-27, -47],
+      [-51, -62],
+      [-33, -71],
+      [18, -67],
+      [95, -73],
+      [44, -57]
+    ],
+    [
+      [7842, 8026],
+      [-29, -36],
+      [-30, -65],
+      [7, -40],
+      [-24, -43],
+      [-47, -40],
+      [-30, -1],
+      [-17, -60],
+      [-39, -2],
+      [5, 48],
+      [-36, 52]
+    ],
+    [
+      [7602, 7839],
+      [-3, 60],
+      [-18, 62],
+      [101, 60],
+      [30, 74],
+      [71, 51]
+    ],
+    [
+      [7783, 8146],
+      [35, -17],
+      [2, -57],
+      [22, -46]
+    ],
+    [
+      [7994, 7968],
+      [17, -46],
+      [2, -105],
+      [28, -31],
+      [124, -50],
+      [56, 50],
+      [79, -26],
+      [13, -57],
+      [26, -13],
+      [61, 4],
+      [-60, -84],
+      [-4, -86],
+      [25, -47]
+    ],
+    [
+      [7694, 7311],
+      [1, 67],
+      [-93, 96],
+      [-89, 13],
+      [-32, 39],
+      [5, 45]
+    ],
+    [
+      [7486, 7571],
+      [38, 108],
+      [-6, 62],
+      [-28, 51]
+    ],
+    [
+      [7490, 7792],
+      [80, 8],
+      [32, 39]
+    ],
+    [
+      [7842, 8026],
+      [80, -22],
+      [26, -23],
+      [46, -13]
+    ],
+    [
+      [7490, 7792],
+      [-25, 19],
+      [-20, 85],
+      [-85, 19]
+    ],
+    [
+      [7360, 7915],
+      [-39, 69],
+      [-68, -6],
+      [-9, 59],
+      [-1, 140],
+      [-21, 53]
+    ],
+    [
+      [7222, 8230],
+      [-24, 70]
+    ],
+    [
+      [7198, 8300],
+      [39, -47],
+      [49, -11],
+      [146, 55],
+      [49, 1],
+      [41, -35],
+      [46, 16],
+      [78, -8],
+      [40, -56],
+      [17, -49],
+      [77, 13],
+      [3, -33]
+    ],
+    [
+      [6813, 9067],
+      [13, -108],
+      [-49, -31],
+      [18, -61],
+      [-16, -66],
+      [51, -70],
+      [11, -50],
+      [-115, 2],
+      [-80, -38],
+      [-65, 8],
+      [-71, -64],
+      [-37, -18],
+      [-7, -41],
+      [51, -23],
+      [129, -121],
+      [83, -36],
+      [25, -26],
+      [47, 19],
+      [8, 33],
+      [-36, 107],
+      [60, 23],
+      [58, -77],
+      [42, 1],
+      [25, -65],
+      [-57, -11],
+      [-17, -22],
+      [-2, -67],
+      [-14, -56]
+    ],
+    [
+      [6868, 8209],
+      [-29, 3],
+      [-33, -28],
+      [2, -33],
+      [-68, -37],
+      [40, -34],
+      [16, -65]
+    ],
+    [
+      [6796, 8015],
+      [-137, 17],
+      [-151, 55],
+      [-42, 5],
+      [-140, -16],
+      [-93, 26],
+      [-86, -43]
+    ],
+    [
+      [6147, 8059],
+      [-65, 18],
+      [-18, 30],
+      [-45, -5],
+      [-13, 27]
+    ],
+    [
+      [6006, 8129],
+      [31, 90],
+      [43, 85],
+      [86, 150],
+      [140, 311],
+      [81, 215],
+      [32, -58],
+      [17, 45],
+      [-43, 31],
+      [43, 128]
+    ],
+    [
+      [6436, 9126],
+      [89, -9],
+      [62, 4],
+      [128, -26],
+      [57, -24],
+      [41, -4]
+    ],
+    [
+      [6882, 9035],
+      [57, -43],
+      [49, -66],
+      [81, 0],
+      [20, 18],
+      [47, -39],
+      [45, -74],
+      [37, -21],
+      [101, -23],
+      [80, 37],
+      [64, -18]
+    ],
+    [
+      [7463, 8806],
+      [-25, -155],
+      [-1, -51],
+      [-56, -9],
+      [-5, -24],
+      [-68, -47],
+      [1, -29],
+      [-40, -20],
+      [-13, -30],
+      [-62, -41],
+      [-42, -12],
+      [7, -76],
+      [39, -12]
+    ],
+    [
+      [7222, 8230],
+      [-38, -12],
+      [-4, -48],
+      [-49, -57],
+      [19, -28],
+      [-56, -18],
+      [-35, -51],
+      [-23, 26],
+      [4, 43],
+      [-71, 22],
+      [-33, -8],
+      [-27, 26],
+      [20, 44],
+      [-61, 40]
+    ],
+    [
+      [6813, 9067],
+      [31, -27],
+      [38, -5]
+    ],
+    [
+      [4905, 7268],
+      [71, 48],
+      [59, 17],
+      [70, 59],
+      [52, 17],
+      [33, -6],
+      [63, 24],
+      [60, 56]
+    ],
+    [
+      [5313, 7483],
+      [36, -31],
+      [44, 35]
+    ],
+    [
+      [5313, 7483],
+      [51, 55],
+      [49, 5]
+    ],
+    [
+      [4186, 794],
+      [2, -476],
+      [-1, -318],
+      [-612, 2],
+      [-757, 3]
+    ],
+    [
+      [2818, 5],
+      [-30, 36],
+      [-46, 133],
+      [-33, 65],
+      [-33, 105],
+      [-27, 143],
+      [-6, 83],
+      [-17, 54],
+      [-92, 187],
+      [-36, 32],
+      [-66, 29],
+      [-124, 1],
+      [-37, 17]
+    ],
+    [
+      [2271, 890],
+      [24, 18],
+      [12, 86],
+      [165, 132],
+      [57, 6],
+      [34, -130],
+      [64, -49],
+      [85, 12],
+      [45, 27],
+      [284, 89],
+      [67, 42],
+      [83, 68],
+      [161, 103],
+      [124, 41],
+      [75, 55],
+      [30, 49]
+    ],
+    [
+      [3581, 1439],
+      [19, -3],
+      [96, -107],
+      [68, -33],
+      [113, -13],
+      [66, -66],
+      [15, -61],
+      [220, -355],
+      [8, -7]
+    ],
+    [
+      [3733, 1919],
+      [-5, -100],
+      [-24, -36],
+      [-52, -190],
+      [-71, -154]
+    ],
+    [
+      [2271, 890],
+      [-53, -7],
+      [-43, 12],
+      [-93, 92],
+      [-72, 23],
+      [-43, 34],
+      [-31, 68],
+      [-12, 52],
+      [-44, 78]
+    ],
+    [
+      [1880, 1242],
+      [31, 27],
+      [63, 90],
+      [37, 17],
+      [272, 172],
+      [82, 59],
+      [107, 87],
+      [66, 84]
+    ],
+    [
+      [2538, 1778],
+      [43, -40],
+      [49, 3],
+      [102, -14],
+      [44, 10],
+      [46, -38],
+      [28, 4],
+      [59, 57],
+      [73, 41],
+      [55, -9],
+      [29, 27],
+      [38, 126],
+      [29, 39],
+      [58, 5],
+      [62, -86],
+      [50, -2],
+      [59, 19],
+      [58, 36],
+      [72, 16],
+      [34, 33],
+      [19, 44],
+      [39, 12],
+      [66, -12],
+      [34, -22],
+      [49, -108]
+    ],
+    [
+      [2818, 5],
+      [-450, 2],
+      [-893, 4]
+    ],
+    [
+      [1475, 11],
+      [-15, 95],
+      [31, 10],
+      [80, -2],
+      [-79, 112],
+      [-44, 83],
+      [-31, 111],
+      [-65, 80],
+      [-57, 180]
+    ],
+    [
+      [1295, 680],
+      [38, 21],
+      [110, 42],
+      [90, 49],
+      [52, 40],
+      [20, 51],
+      [35, 38],
+      [15, 39],
+      [29, 28],
+      [48, 85],
+      [51, 51],
+      [38, 58],
+      [59, 60]
+    ],
+    [
+      [6299, 2356],
+      [-46, 7],
+      [-69, -51],
+      [-154, -9],
+      [-31, -14],
+      [-53, -54],
+      [-52, 7],
+      [-70, 34],
+      [-106, -2],
+      [-86, 37],
+      [-32, -1],
+      [-100, -60],
+      [-68, -85],
+      [-57, -33],
+      [-83, -17],
+      [-53, -1],
+      [-51, 15],
+      [-32, -25],
+      [-18, -58],
+      [-131, -69],
+      [-54, -56],
+      [-82, -57],
+      [-25, -43],
+      [-111, -80],
+      [-80, -66],
+      [-13, 3],
+      [-164, -156],
+      [-98, -117],
+      [-194, -104],
+      [0, -507]
+    ],
+    [
+      [3733, 1919],
+      [7, 58],
+      [28, 118],
+      [32, 76],
+      [35, 26],
+      [98, -11],
+      [145, 47],
+      [110, 43],
+      [12, 25],
+      [-47, 65],
+      [-11, 37],
+      [6, 172]
+    ],
+    [
+      [4148, 2575],
+      [35, 71],
+      [35, 43],
+      [5, 39],
+      [-31, 11],
+      [-29, -17],
+      [-26, 16],
+      [-2, 61],
+      [33, 35],
+      [73, 8],
+      [177, -96],
+      [30, 2],
+      [38, 45],
+      [30, 86],
+      [30, 29],
+      [46, -1],
+      [87, -77],
+      [104, -51],
+      [85, 36],
+      [71, 85],
+      [35, 17],
+      [66, -20],
+      [73, -6],
+      [34, 52],
+      [-27, 157],
+      [30, 86],
+      [78, 65]
+    ],
+    [
+      [5228, 3251],
+      [72, -55],
+      [23, -41],
+      [9, -67],
+      [48, -40],
+      [168, -10],
+      [22, 19],
+      [16, 92],
+      [42, 112],
+      [42, 53],
+      [66, -6],
+      [54, -35],
+      [67, -7],
+      [74, 41],
+      [73, 103],
+      [45, 11],
+      [46, -29],
+      [40, -50],
+      [61, -105],
+      [24, -57],
+      [57, -98],
+      [38, -106],
+      [5, -185],
+      [-19, -106],
+      [4, -103],
+      [-12, -111],
+      [6, -115]
+    ],
+    [
+      [1475, 11],
+      [-485, 1],
+      [-242, 1],
+      [-748, 3],
+      [7, 18],
+      [83, 48],
+      [58, 91],
+      [19, 87],
+      [26, 53],
+      [50, 42],
+      [233, 35],
+      [133, 33],
+      [257, 55],
+      [143, 41],
+      [173, 107],
+      [113, 54]
+    ],
+    [
+      [5491, 5024],
+      [9, -37],
+      [38, -26],
+      [-6, -44],
+      [74, 8],
+      [24, -28],
+      [-9, -69],
+      [-24, -69],
+      [-2, -73],
+      [10, -35]
+    ],
+    [
+      [5605, 4651],
+      [-79, -37],
+      [-49, -78],
+      [-61, -15],
+      [-86, -6],
+      [-46, -25],
+      [-75, -92],
+      [-61, -29],
+      [-55, 0],
+      [-69, -44]
+    ],
+    [
+      [5024, 4325],
+      [-60, -69],
+      [-66, -41],
+      [-2, -58],
+      [-78, -79],
+      [-53, -38],
+      [-49, 68],
+      [-78, -42],
+      [-129, -30],
+      [-65, 8],
+      [-30, -37],
+      [-103, 6]
+    ],
+    [
+      [4311, 4013],
+      [3, 37],
+      [61, 26],
+      [107, 187],
+      [8, 26],
+      [-11, 90],
+      [10, 54],
+      [-12, 88],
+      [21, 25],
+      [24, 78],
+      [47, -1]
+    ],
+    [
+      [4569, 4623],
+      [36, 35],
+      [65, 43],
+      [-25, 74],
+      [20, 33],
+      [57, 16],
+      [51, -10],
+      [45, -29],
+      [42, -55],
+      [27, 48],
+      [-20, 62],
+      [43, 29],
+      [40, -11],
+      [97, -1],
+      [28, 67],
+      [-13, 60]
+    ],
+    [
+      [5062, 4984],
+      [70, 3],
+      [78, -70],
+      [20, -1],
+      [95, 35],
+      [40, 63],
+      [51, 17],
+      [75, -7]
+    ],
+    [
+      [4442, 5025],
+      [-34, -67],
+      [44, -37],
+      [13, -35],
+      [-31, -26],
+      [1, -33],
+      [34, -21],
+      [71, -96],
+      [29, -87]
+    ],
+    [
+      [4311, 4013],
+      [-76, -9],
+      [-32, -36],
+      [-33, -4],
+      [-24, 101],
+      [-55, 32],
+      [-10, 28],
+      [-35, 2],
+      [-37, -50],
+      [-59, -41],
+      [-68, -31],
+      [-46, -56],
+      [-100, 10]
+    ],
+    [
+      [3736, 3959],
+      [-33, 103],
+      [14, 54],
+      [-29, 73],
+      [-90, 74],
+      [-8, 62],
+      [34, 78],
+      [32, 46],
+      [6, 135],
+      [75, 36],
+      [20, -4],
+      [52, 38],
+      [5, 68],
+      [-49, -8],
+      [-29, 20],
+      [-8, 73],
+      [18, 59],
+      [72, 95],
+      [41, 37],
+      [79, 29],
+      [-5, 86]
+    ],
+    [
+      [5648, 5836],
+      [-7, -109],
+      [17, -87]
+    ],
+    [
+      [5658, 5640],
+      [-8, -55],
+      [10, -108],
+      [28, -51],
+      [31, -16],
+      [11, -48],
+      [-21, -27],
+      [5, -56],
+      [47, -65],
+      [-29, -16],
+      [5, -64],
+      [-15, -17],
+      [-45, 8],
+      [-60, -16],
+      [-37, 23],
+      [-46, -3],
+      [-43, -43],
+      [0, -62]
+    ],
+    [
+      [5062, 4984],
+      [-33, 4],
+      [-37, 42],
+      [-68, -6],
+      [-61, 67],
+      [-80, -11],
+      [26, 60],
+      [-19, 77],
+      [-30, 49],
+      [-4, 47],
+      [21, 28],
+      [3, 75],
+      [-30, 44],
+      [-119, 15]
+    ],
+    [
+      [3736, 3959],
+      [-33, -20],
+      [-46, -1],
+      [-44, -22]
+    ],
+    [
+      [3613, 3916],
+      [-58, 30],
+      [-61, -8],
+      [-42, -17],
+      [-54, 22],
+      [-25, 40],
+      [-26, -46],
+      [-26, -14],
+      [-47, 23],
+      [-69, 1],
+      [-21, 63],
+      [-70, 82]
+    ],
+    [
+      [3114, 4092],
+      [10, 76],
+      [-7, 100],
+      [-24, 15],
+      [4, 53],
+      [19, 44],
+      [-2, 64],
+      [20, 54],
+      [1, 96],
+      [-33, 76],
+      [40, 52],
+      [51, 107],
+      [45, 75],
+      [11, 36],
+      [-2, 84],
+      [40, 41],
+      [44, 79],
+      [51, 60],
+      [90, 127]
+    ],
+    [
+      [7486, 7571],
+      [-53, 74],
+      [-38, 29],
+      [-31, -32],
+      [8, -140],
+      [34, -80],
+      [45, -36],
+      [-32, -51],
+      [-34, -13],
+      [-93, 42],
+      [-109, 27],
+      [-119, -173],
+      [-27, -57],
+      [-42, -42]
+    ],
+    [
+      [6995, 7119],
+      [-38, -2],
+      [-90, 32]
+    ],
+    [
+      [6867, 7149],
+      [-2, 65],
+      [10, 136],
+      [18, 76],
+      [13, 155],
+      [-2, 47],
+      [-35, 36],
+      [-12, 78]
+    ],
+    [
+      [6857, 7742],
+      [20, 9],
+      [53, -64],
+      [33, -4],
+      [9, 55],
+      [93, -37],
+      [22, -70],
+      [65, 22],
+      [22, 22],
+      [28, 88],
+      [-13, 41],
+      [56, 25],
+      [19, 47],
+      [52, 4],
+      [44, 35]
+    ],
+    [
+      [8479, 6196],
+      [32, -16],
+      [31, -42],
+      [68, -147],
+      [40, -104],
+      [21, -108],
+      [88, -21],
+      [79, -66],
+      [-17, -41],
+      [17, -30],
+      [35, -4],
+      [68, 14],
+      [88, -10],
+      [195, -41],
+      [9, -31],
+      [-38, -85],
+      [-11, -84],
+      [0, -103],
+      [31, -238]
+    ],
+    [
+      [9215, 5039],
+      [-373, -96],
+      [0, -289],
+      [4, -30],
+      [-50, -38],
+      [-47, -17],
+      [-12, -39],
+      [18, -49],
+      [-30, -34],
+      [29, -75],
+      [-17, -64],
+      [49, 4],
+      [1, 23],
+      [40, 24],
+      [7, -85],
+      [63, -26],
+      [27, -36],
+      [26, 18],
+      [12, -60],
+      [-19, -102],
+      [-87, -106],
+      [1, -91],
+      [26, -43],
+      [-21, -49],
+      [-187, -90],
+      [-135, -43],
+      [-146, -10],
+      [-162, -71],
+      [-267, -307],
+      [-306, -177],
+      [-169, -167]
+    ],
+    [
+      [7490, 2914],
+      [-33, 109],
+      [-37, 47],
+      [-21, 80],
+      [6, 142],
+      [-3, 110],
+      [11, 64],
+      [-1, 205],
+      [-46, 74],
+      [-83, 173]
+    ],
+    [
+      [7283, 3918],
+      [-18, 125],
+      [28, 158],
+      [2, 48]
+    ],
+    [
+      [7295, 4249],
+      [19, 140],
+      [39, 105],
+      [22, 95],
+      [5, 74],
+      [-18, 69],
+      [-51, 52],
+      [-72, 26],
+      [-68, 47],
+      [-39, 65],
+      [-130, 41],
+      [-66, -18],
+      [-67, 11],
+      [-1, 53],
+      [96, 110],
+      [101, 126],
+      [40, 80],
+      [-118, 104],
+      [-43, 13],
+      [-61, -50],
+      [-37, -10]
+    ],
+    [
+      [6846, 5382],
+      [-9, 159],
+      [24, 24]
+    ],
+    [
+      [6861, 5565],
+      [1, 38],
+      [55, 25],
+      [32, 41],
+      [5, 36],
+      [29, 21],
+      [57, 12],
+      [57, -5]
+    ],
+    [
+      [7097, 5733],
+      [77, -16],
+      [57, -47],
+      [120, 52],
+      [39, 56],
+      [56, 37],
+      [45, 5],
+      [41, 25],
+      [67, 22],
+      [26, 23],
+      [59, 6],
+      [98, 57],
+      [21, 29],
+      [-84, 18],
+      [-2, 25],
+      [59, 32],
+      [91, 33],
+      [34, 26],
+      [181, 42],
+      [85, 44],
+      [93, 24]
+    ],
+    [
+      [7745, 6771],
+      [-67, -23],
+      [-126, -13],
+      [-95, -179],
+      [-20, -65],
+      [-44, -13],
+      [-25, 15],
+      [23, 88],
+      [-23, 31],
+      [-63, 19],
+      [44, 208],
+      [-14, 10],
+      [-132, -5],
+      [-25, 15],
+      [-24, 50],
+      [-31, 27],
+      [14, 49],
+      [-23, 113],
+      [-119, 21]
+    ],
+    [
+      [7097, 5733],
+      [10, 35],
+      [-24, 23],
+      [21, 56],
+      [-11, 23],
+      [40, 93],
+      [-47, 92],
+      [-20, 65],
+      [-55, 6],
+      [-47, 46],
+      [-28, 6],
+      [-56, -28],
+      [-12, 72],
+      [-49, 63],
+      [-35, 4],
+      [-16, 39],
+      [-41, 27],
+      [-68, -5]
+    ],
+    [
+      [6332, 6946],
+      [-24, 52],
+      [9, 68],
+      [26, 62],
+      [82, 15],
+      [29, -19],
+      [27, 20],
+      [23, -32],
+      [33, -2],
+      [33, -124],
+      [65, -23],
+      [56, 58],
+      [35, 13],
+      [116, -39],
+      [22, 9],
+      [19, 73],
+      [-16, 72]
+    ],
+    [
+      [6857, 7742],
+      [-27, 34],
+      [50, 53],
+      [-9, 47],
+      [-72, 76],
+      [-3, 63]
+    ],
+    [
+      [10355, 9050],
+      [-17, -50],
+      [-43, -27],
+      [-7, -74],
+      [-53, -8],
+      [-58, -41],
+      [-15, -48],
+      [-7, -96],
+      [18, -75],
+      [-59, -25],
+      [-25, -66],
+      [-2, -57],
+      [27, -87]
+    ],
+    [
+      [10114, 8396],
+      [15, -48],
+      [-11, -39],
+      [-40, -19],
+      [-131, -16],
+      [-48, -59],
+      [-10, -60],
+      [-69, -14],
+      [-53, -24],
+      [-75, -21],
+      [-73, 14],
+      [-52, -72],
+      [-55, 15],
+      [-64, -7],
+      [-94, -49]
+    ],
+    [
+      [9354, 7997],
+      [24, 79],
+      [-39, 37],
+      [-1, 114],
+      [-48, 43],
+      [-44, 57],
+      [4, 60],
+      [65, 40],
+      [71, 78],
+      [8, 100],
+      [78, 48],
+      [10, 63]
+    ],
+    [
+      [9482, 8716],
+      [99, 46],
+      [32, 50],
+      [44, 38],
+      [27, 70],
+      [97, 70],
+      [9, 26],
+      [43, 31],
+      [36, 3],
+      [92, 49],
+      [25, 85],
+      [31, 25],
+      [47, 66],
+      [4, 22]
+    ],
+    [
+      [10068, 9297],
+      [125, -49],
+      [-3, -46],
+      [43, -46],
+      [43, -20],
+      [32, -49],
+      [47, -37]
+    ],
+    [
+      [9377, 7122],
+      [62, 104],
+      [107, 128],
+      [52, 104],
+      [47, 48],
+      [70, -20],
+      [156, -27],
+      [106, -5],
+      [96, 8],
+      [112, 59],
+      [53, -4],
+      [139, -66],
+      [84, -20],
+      [77, 25],
+      [25, 25],
+      [72, 40]
+    ],
+    [
+      [10635, 7521],
+      [47, -29],
+      [31, 7],
+      [21, -64],
+      [30, -20],
+      [9, -106],
+      [-30, -48],
+      [-2, -47],
+      [-37, -92],
+      [2, -96],
+      [-9, -23],
+      [41, -79],
+      [16, -9],
+      [32, -82],
+      [57, -68],
+      [36, -22],
+      [13, -43],
+      [-22, -83],
+      [-54, -22],
+      [150, -272],
+      [103, -55],
+      [239, -211],
+      [12, -26],
+      [-62, -69],
+      [-50, -45],
+      [-72, -13],
+      [-21, -70],
+      [-26, -25],
+      [12, -44],
+      [-11, -64],
+      [5, -44],
+      [-42, -58],
+      [67, 20],
+      [31, -15],
+      [25, -65],
+      [-46, -33],
+      [-123, -2],
+      [-138, 16],
+      [-21, 10],
+      [-63, -15],
+      [-101, 29],
+      [-30, 0],
+      [-168, 59],
+      [-66, -7],
+      [-43, 31],
+      [-109, -44],
+      [-44, -5],
+      [-91, 32],
+      [-24, -15],
+      [-149, 4],
+      [-77, -18],
+      [-50, -40],
+      [-53, 6],
+      [-67, -9],
+      [-85, 6],
+      [-102, -22],
+      [-10, -83],
+      [44, -83],
+      [4, -39],
+      [33, -63],
+      [2, -64],
+      [18, -41],
+      [-157, -50],
+      [-245, -60]
+    ],
+    [
+      [9349, 7579],
+      [-7, 79],
+      [-32, 68],
+      [-53, 76],
+      [-44, 48],
+      [14, 66],
+      [105, 45],
+      [22, 36]
+    ],
+    [
+      [10114, 8396],
+      [104, 24],
+      [61, 38],
+      [39, 1],
+      [33, 33],
+      [11, 50],
+      [57, -4],
+      [81, 35],
+      [75, 56]
+    ],
+    [
+      [10575, 8629],
+      [51, -92],
+      [52, -33],
+      [-84, -120],
+      [72, -103],
+      [-7, -92],
+      [59, -161],
+      [-48, -294],
+      [27, -122],
+      [-54, -47],
+      [-8, -44]
+    ],
+    [
+      [9482, 8716],
+      [-36, 12],
+      [-58, 49],
+      [-30, -1],
+      [-53, 61],
+      [-119, 2],
+      [-25, -76],
+      [-61, -39],
+      [-28, -36],
+      [-23, 13],
+      [-30, -38],
+      [-22, -81],
+      [-64, 19],
+      [-24, 57],
+      [-27, 29],
+      [-11, 42],
+      [55, 39],
+      [-32, 30],
+      [22, 42],
+      [-8, 92],
+      [-40, -6],
+      [-38, 27],
+      [-49, -7],
+      [-38, 28],
+      [-16, 32]
+    ],
+    [
+      [8727, 9006],
+      [-11, 19],
+      [6, 117],
+      [-17, 139],
+      [13, 79],
+      [-8, 36]
+    ],
+    [
+      [8710, 9396],
+      [38, 35],
+      [13, 54],
+      [38, 17],
+      [111, -77],
+      [93, -34],
+      [147, -16],
+      [26, 23],
+      [126, 44],
+      [33, 50],
+      [55, 9],
+      [61, 120],
+      [16, 65],
+      [36, -1],
+      [-16, -92],
+      [14, -18],
+      [-6, -58],
+      [44, -68],
+      [-8, -78],
+      [39, -64],
+      [52, -31],
+      [66, -10],
+      [14, 27],
+      [82, -37],
+      [80, -12],
+      [78, 29],
+      [52, 54],
+      [74, -30]
+    ],
+    [
+      [10355, 9050],
+      [61, 11],
+      [0, -58],
+      [75, -57],
+      [5, -43],
+      [118, -66],
+      [-13, -69],
+      [-59, -101],
+      [33, -38]
+    ],
+    [
+      [5939, 7385],
+      [-6, 30],
+      [18, 109],
+      [58, -2],
+      [-6, 84],
+      [15, 40],
+      [-21, 98]
+    ],
+    [
+      [5997, 7744],
+      [71, -26],
+      [52, -32],
+      [29, -60],
+      [80, 46],
+      [25, 55],
+      [-54, 41],
+      [-47, 132],
+      [-21, 28],
+      [32, 43],
+      [4, 48],
+      [-21, 40]
+    ],
+    [
+      [5955, 7831],
+      [-28, -54],
+      [-37, 20],
+      [-63, 68]
+    ],
+    [
+      [5827, 7865],
+      [69, 89]
+    ],
+    [
+      [5896, 7954],
+      [72, -54],
+      [8, -44],
+      [-21, -25]
+    ],
+    [
+      [5997, 7744],
+      [-42, 87]
+    ],
+    [
+      [5896, 7954],
+      [44, 58],
+      [66, 117]
+    ],
+    [
+      [5620, 7683],
+      [77, 53],
+      [130, 129]
+    ],
+    [
+      [3613, 3916],
+      [43, -124],
+      [-83, -64],
+      [-5, -95],
+      [35, -41],
+      [-4, -144]
+    ],
+    [
+      [3599, 3448],
+      [-29, -14],
+      [-39, -60],
+      [-47, 1],
+      [-59, -38],
+      [-108, 21]
+    ],
+    [
+      [3317, 3358],
+      [-3, 68],
+      [-50, 34],
+      [-41, 123],
+      [-34, 10],
+      [-41, 73],
+      [-33, 19],
+      [-65, 7],
+      [14, 82],
+      [23, 33],
+      [41, 115],
+      [-20, 41],
+      [18, 56],
+      [-12, 73]
+    ],
+    [
+      [3589, 3290],
+      [39, -47],
+      [19, 12],
+      [41, -21],
+      [66, 5],
+      [29, -34],
+      [-2, -37],
+      [57, -16],
+      [37, -30],
+      [22, -58],
+      [36, 2],
+      [36, -55],
+      [-52, -41],
+      [-3, -76],
+      [15, -43],
+      [31, -28],
+      [-16, -55],
+      [-39, -11],
+      [-18, -30]
+    ],
+    [
+      [3887, 2727],
+      [-16, -30],
+      [-64, -48],
+      [-9, -64],
+      [-20, -14],
+      [-91, 63],
+      [-31, 58],
+      [-67, 1],
+      [-48, 60],
+      [-134, 54],
+      [-9, 32],
+      [-39, 7],
+      [-47, -29],
+      [-66, -2],
+      [-69, 18]
+    ],
+    [
+      [3177, 2833],
+      [46, 111],
+      [29, 57],
+      [30, 134],
+      [16, 132]
+    ],
+    [
+      [3298, 3267],
+      [62, 9],
+      [21, -18],
+      [88, -4],
+      [21, 50],
+      [40, -24],
+      [36, 27],
+      [23, -17]
+    ],
+    [
+      [3599, 3448],
+      [10, -78],
+      [28, -27],
+      [-48, -53]
+    ],
+    [
+      [3298, 3267],
+      [19, 91]
+    ],
+    [
+      [7295, 4249],
+      [-55, -30],
+      [-79, -26],
+      [-38, 1],
+      [-133, 27],
+      [-17, -112],
+      [-24, -111],
+      [0, -47],
+      [-43, -133],
+      [-18, -24],
+      [77, -94],
+      [15, -39],
+      [152, 148],
+      [68, 59],
+      [83, 50]
+    ],
+    [
+      [7490, 2914],
+      [-19, -7],
+      [-95, -84],
+      [-42, -45],
+      [-35, -64],
+      [3, -61],
+      [-13, -36],
+      [-193, -320],
+      [-11, -36],
+      [-91, 26],
+      [-35, 44],
+      [-24, -24],
+      [-33, 13],
+      [25, 69],
+      [-71, 36],
+      [-59, -9],
+      [-16, -15],
+      [-72, -7],
+      [-104, -35],
+      [-89, 25],
+      [-77, -21],
+      [-117, 3],
+      [-23, -10]
+    ],
+    [
+      [5228, 3251],
+      [-67, 63],
+      [-13, 44],
+      [1, 81],
+      [22, 86],
+      [42, 102],
+      [1, 113],
+      [-27, 137],
+      [1, 59],
+      [-52, 105],
+      [-39, 36],
+      [-63, 131],
+      [1, 64],
+      [-11, 53]
+    ],
+    [
+      [5605, 4651],
+      [65, -1],
+      [151, -52],
+      [73, 22],
+      [52, -16],
+      [33, 81],
+      [-15, 46],
+      [30, 60],
+      [73, 22],
+      [47, -13],
+      [58, 22],
+      [140, 100],
+      [149, 67],
+      [59, 62],
+      [38, -8],
+      [53, 8],
+      [13, 81],
+      [88, 44],
+      [34, 53],
+      [51, 13],
+      [54, 58],
+      [-5, 82]
+    ],
+    [
+      [6256, 3836],
+      [-115, -15],
+      [23, -54],
+      [36, -40],
+      [81, -51],
+      [79, -24],
+      [22, -21],
+      [19, 120],
+      [-76, 51],
+      [-34, -1],
+      [-35, 35]
+    ],
+    [
+      [6767, 3278],
+      [55, 19],
+      [70, 43],
+      [-37, 47],
+      [-44, 10],
+      [-54, -58],
+      [10, -61]
+    ],
+    [
+      [4148, 2575],
+      [-79, -5],
+      [-52, 38],
+      [-106, 105],
+      [-24, 14]
+    ],
+    [
+      [2538, 1778],
+      [44, 92],
+      [90, 117],
+      [40, 24],
+      [35, 39],
+      [30, 79],
+      [57, 78],
+      [41, 90],
+      [25, 88],
+      [15, 16],
+      [50, 102],
+      [42, 55],
+      [96, 105],
+      [34, 62],
+      [40, 108]
+    ],
+    [
+      [5658, 5640],
+      [72, -16],
+      [99, 26],
+      [18, 20],
+      [47, 1],
+      [55, -20],
+      [58, 55],
+      [76, 19],
+      [13, -19],
+      [55, -6],
+      [45, 18],
+      [42, -8],
+      [44, 73],
+      [27, 5],
+      [21, -36],
+      [38, 43],
+      [10, -39],
+      [38, -18],
+      [55, 39],
+      [8, -47],
+      [56, 1],
+      [-2, 97],
+      [46, 10],
+      [21, 25],
+      [61, 27],
+      [61, -83],
+      [36, -105],
+      [-29, -41],
+      [-1, -48],
+      [36, -15],
+      [37, 26],
+      [60, -59]
+    ],
+    [
+      [8108, 9344],
+      [-26, -34],
+      [16, -119],
+      [-23, -65],
+      [-62, -45],
+      [-94, -18],
+      [-48, -50],
+      [-86, -60],
+      [-12, -29]
+    ],
+    [
+      [7773, 8924],
+      [-63, -30],
+      [-97, -19],
+      [-25, 9],
+      [-71, -24],
+      [-54, -54]
+    ],
+    [
+      [6882, 9035],
+      [14, 30],
+      [43, 13],
+      [27, 51],
+      [45, 35],
+      [38, 12],
+      [43, -32],
+      [53, 39],
+      [-21, 53],
+      [-10, 86],
+      [-28, 92],
+      [51, 45]
+    ],
+    [
+      [7137, 9459],
+      [39, 19],
+      [69, -63],
+      [102, 54],
+      [67, 117],
+      [49, 40],
+      [31, 55],
+      [29, 3]
+    ],
+    [
+      [7523, 9684],
+      [17, -33],
+      [54, -24],
+      [72, -87],
+      [56, -21],
+      [79, -80],
+      [94, -41],
+      [213, -54]
+    ],
+    [
+      [7067, 10190],
+      [12, -156],
+      [-52, -55],
+      [-117, -5]
+    ],
+    [
+      [6910, 9974],
+      [-60, -28],
+      [-34, 84],
+      [-29, 37],
+      [28, 22],
+      [35, -34],
+      [48, 23],
+      [6, 86]
+    ],
+    [
+      [6904, 10164],
+      [42, 15],
+      [53, -4],
+      [68, 15]
+    ],
+    [
+      [6837, 9735],
+      [12, -43],
+      [36, -42],
+      [47, -30],
+      [50, 2],
+      [81, 42],
+      [88, -58],
+      [17, -46],
+      [-31, -101]
+    ],
+    [
+      [6436, 9126],
+      [35, 132],
+      [40, 127],
+      [18, 12],
+      [42, 149]
+    ],
+    [
+      [6571, 9546],
+      [90, 4],
+      [34, -19],
+      [46, 1],
+      [-2, 88],
+      [-41, 37],
+      [62, 17],
+      [13, 30],
+      [38, -2],
+      [26, 33]
+    ],
+    [
+      [6837, 9735],
+      [30, 52],
+      [29, -1],
+      [51, 30],
+      [-37, 158]
+    ],
+    [
+      [7067, 10190],
+      [18, 7],
+      [81, 86],
+      [58, 10],
+      [24, -48],
+      [33, -12],
+      [-11, -57],
+      [11, -110],
+      [21, -71],
+      [32, -26],
+      [38, -137],
+      [66, -26],
+      [18, -33],
+      [44, -35],
+      [23, -54]
+    ],
+    [
+      [6571, 9546],
+      [22, 91],
+      [60, 131],
+      [31, 152],
+      [50, 206],
+      [20, 16],
+      [62, -4],
+      [70, -18],
+      [18, 44]
+    ],
+    [
+      [8727, 9006],
+      [-65, -70],
+      [-41, -15],
+      [-68, -3],
+      [-49, -25],
+      [-49, -65],
+      [-59, -35]
+    ],
+    [
+      [8396, 8793],
+      [-34, 7],
+      [-22, 53],
+      [-24, 10],
+      [-46, -38],
+      [-37, -68],
+      [-93, -53],
+      [-51, 15],
+      [-28, 31],
+      [-47, -10],
+      [-31, 33],
+      [-58, -17],
+      [-64, 35],
+      [-28, 106],
+      [-60, 27]
+    ],
+    [
+      [8108, 9344],
+      [87, -16],
+      [96, 48],
+      [132, 22],
+      [66, 39],
+      [60, 1],
+      [48, 31],
+      [21, -59],
+      [52, -22],
+      [40, 8]
+    ],
+    [
+      [8396, 8793],
+      [29, -57],
+      [-1, -53],
+      [27, -24],
+      [-71, -27],
+      [-32, 13],
+      [-35, -23],
+      [-62, 11],
+      [-22, -74],
+      [-36, -23],
+      [-9, -43],
+      [-34, -7],
+      [-39, -45],
+      [-23, -46],
+      [0, -44],
+      [32, -35],
+      [-22, -39],
+      [82, -28],
+      [46, -48],
+      [-52, -39],
+      [23, -42],
+      [-15, -32],
+      [-72, 14],
+      [-140, -62],
+      [24, -72]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0010747627634884191, 0.0008017375890082742],
+    "translate": [-13.167089462280273, 27.670074462890685]
+  },
+  "objects": {
+    "morocco": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4, 5]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-BES",
+            "NAME_0": "Morocco",
+            "ID_1": 1,
+            "NAME_1": "Chaouia - Ouardigha",
+            "ID_2": 1,
+            "NAME_2": "Ben Slimane",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[6, 7, 8, 9]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-KHO",
+            "NAME_0": "Morocco",
+            "ID_1": 1,
+            "NAME_1": "Chaouia - Ouardigha",
+            "ID_2": 2,
+            "NAME_2": "Khouribga",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-2, 10, -8, 11, 12, 13, 14, 15]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-SET",
+            "NAME_0": "Morocco",
+            "ID_1": 1,
+            "NAME_1": "Chaouia - Ouardigha",
+            "ID_2": 3,
+            "NAME_2": "Settat",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[16, 17, 18, -14]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-JDI",
+            "NAME_0": "Morocco",
+            "ID_1": 2,
+            "NAME_1": "Doukkala - Abda",
+            "ID_2": 4,
+            "NAME_2": "El Jadida",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[19, 20, 21, 22, 23, -18]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-SAF",
+            "NAME_0": "Morocco",
+            "ID_1": 2,
+            "NAME_1": "Doukkala - Abda",
+            "ID_2": 5,
+            "NAME_2": "Safi",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[24, 25, 26, 27, 28, 29, 30]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-BOM",
+            "NAME_0": "Morocco",
+            "ID_1": 3,
+            "NAME_1": "Fès - Boulemane",
+            "ID_2": 6,
+            "NAME_2": "Boulemane",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[31, 32, 33]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-FES",
+            "NAME_0": "Morocco",
+            "ID_1": 3,
+            "NAME_1": "Fès - Boulemane",
+            "ID_2": 7,
+            "NAME_2": "Fès",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Fès-Dar-Dbibegh"
+          }
+        },
+        {
+          "arcs": [[34, -29, 35, 36, 37, -32, 38]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-SEF",
+            "NAME_0": "Morocco",
+            "ID_1": 3,
+            "NAME_1": "Fès - Boulemane",
+            "ID_2": 8,
+            "NAME_2": "Sefrou",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-33, -38, 39, 40, 41, 42]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-MOU",
+            "NAME_0": "Morocco",
+            "ID_1": 3,
+            "NAME_1": "Fès - Boulemane",
+            "ID_2": 9,
+            "NAME_2": "Zouagha-Moulay Yacoub",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[43, 44, 45, 46, 47, 48]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-KEN",
+            "NAME_0": "Morocco",
+            "ID_1": 4,
+            "NAME_1": "Gharb - Chrarda - Béni Hssen",
+            "ID_2": 10,
+            "NAME_2": "Kénitra",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Kenitra"
+          }
+        },
+        {
+          "arcs": [[49, 50, -42, 51, -44, 52]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-SIK",
+            "NAME_0": "Morocco",
+            "ID_1": 4,
+            "NAME_1": "Gharb - Chrarda - Béni Hssen",
+            "ID_2": 11,
+            "NAME_2": "Sidi Kacem",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-16, 53, 54, -3]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-CAS",
+            "NAME_0": "Morocco",
+            "ID_1": 5,
+            "NAME_1": "Grand Casablanca",
+            "ID_2": 12,
+            "NAME_2": "Casablanca",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[55, -4, -55]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-MOH",
+            "NAME_0": "Morocco",
+            "ID_1": 5,
+            "NAME_1": "Grand Casablanca",
+            "ID_2": 13,
+            "NAME_2": "Mohammedia",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[56, 57, 58, 59]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-ASZ",
+            "NAME_0": "Morocco",
+            "ID_1": 6,
+            "NAME_1": "Guelmim - Es-Semara",
+            "ID_2": 14,
+            "NAME_2": "Assa-Zag",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[60, -59, 61, 62, 63]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-GUE",
+            "NAME_0": "Morocco",
+            "ID_1": 6,
+            "NAME_1": "Guelmim - Es-Semara",
+            "ID_2": 15,
+            "NAME_2": "Guelmim",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-58, 64, 65, 66, -62]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-TNT",
+            "NAME_0": "Morocco",
+            "ID_1": 6,
+            "NAME_1": "Guelmim - Es-Semara",
+            "ID_2": 16,
+            "NAME_2": "Tan-Tan",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[67, -60, -61, 68, 69, 70]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-TAT",
+            "NAME_0": "Morocco",
+            "ID_1": 6,
+            "NAME_1": "Guelmim - Es-Semara",
+            "ID_2": 17,
+            "NAME_2": "Tata",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-66, 71]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-LAA",
+            "NAME_0": "Morocco",
+            "ID_1": 7,
+            "NAME_1": "Laâyoune - Boujdour - Sakia El Hamra",
+            "ID_2": 18,
+            "NAME_2": "Laâyoune",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Laayoune"
+          }
+        },
+        {
+          "arcs": [[72, 73, 74, 75, 76, 77]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-HAO",
+            "NAME_0": "Morocco",
+            "ID_1": 8,
+            "NAME_1": "Marrakech - Tensift - Al Haouz",
+            "ID_2": 19,
+            "NAME_2": "Al Haouz",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[78, -76, 79, 80, -22]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-CHI",
+            "NAME_0": "Morocco",
+            "ID_1": 8,
+            "NAME_1": "Marrakech - Tensift - Al Haouz",
+            "ID_2": 20,
+            "NAME_2": "Chichaoua",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[81, 82, -78, 83, -20, -17, -13]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-KES",
+            "NAME_0": "Morocco",
+            "ID_1": 8,
+            "NAME_1": "Marrakech - Tensift - Al Haouz",
+            "ID_2": 21,
+            "NAME_2": "El Kelaâ des Sraghna",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "El Kelaa Sraghna"
+          }
+        },
+        {
+          "arcs": [[-23, -81, 84, 85, 86]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-ESI",
+            "NAME_0": "Morocco",
+            "ID_1": 8,
+            "NAME_1": "Marrakech - Tensift - Al Haouz",
+            "ID_2": 22,
+            "NAME_2": "Essaouira",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-84, -77, -79, -21]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-MMD",
+            "NAME_0": "Morocco",
+            "ID_1": 8,
+            "NAME_1": "Marrakech - Tensift - Al Haouz",
+            "ID_2": 23,
+            "NAME_2": "Marrakech",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-40, -37, 87, 88, 89, 90]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-HAJ",
+            "NAME_0": "Morocco",
+            "ID_1": 9,
+            "NAME_1": "Meknès - Tafilalet",
+            "ID_2": 24,
+            "NAME_2": "El Hajeb",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[91, 92, 93, 94, 95, 96, 97, 98, -26]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-ERR",
+            "NAME_0": "Morocco",
+            "ID_1": 9,
+            "NAME_1": "Meknès - Tafilalet",
+            "ID_2": 25,
+            "NAME_2": "Errachidia",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-28, 99, -88, -36]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-IFR",
+            "NAME_0": "Morocco",
+            "ID_1": 9,
+            "NAME_1": "Meknès - Tafilalet",
+            "ID_2": 26,
+            "NAME_2": "Ifrane",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-100, -27, -99, 100, -10, 101, -89]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-KHN",
+            "NAME_0": "Morocco",
+            "ID_1": 9,
+            "NAME_1": "Meknès - Tafilalet",
+            "ID_2": 27,
+            "NAME_2": "Khénifra",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Khenifra"
+          }
+        },
+        {
+          "arcs": [[-41, -91, 102, -45, -52]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-MEK",
+            "NAME_0": "Morocco",
+            "ID_1": 9,
+            "NAME_1": "Meknès - Tafilalet",
+            "ID_2": 28,
+            "NAME_2": "Meknès",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[103, 104, 105, 106, 107]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-BER",
+            "NAME_0": "Morocco",
+            "ID_1": 10,
+            "NAME_1": "Oriental",
+            "ID_2": 29,
+            "NAME_2": "Berkane Taourirt",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-92, -25, 108, 109]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-FIG",
+            "NAME_0": "Morocco",
+            "ID_1": 10,
+            "NAME_1": "Oriental",
+            "ID_2": 30,
+            "NAME_2": "Figuig",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-109, -31, 110, -105, 111, 112]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-JRA",
+            "NAME_0": "Morocco",
+            "ID_1": 10,
+            "NAME_1": "Oriental",
+            "ID_2": 31,
+            "NAME_2": "Jerada",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Jrada"
+          }
+        },
+        {
+          "arcs": [[-107, 113, 114, 115]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-NAD",
+            "NAME_0": "Morocco",
+            "ID_1": 10,
+            "NAME_1": "Oriental",
+            "ID_2": 32,
+            "NAME_2": "Nador",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-112, -104, 116]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-OUJ",
+            "NAME_0": "Morocco",
+            "ID_1": 10,
+            "NAME_1": "Oriental",
+            "ID_2": 33,
+            "NAME_2": "Oujda Angad",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-103, -90, -102, -9, -11, -1, 117, 118, -46]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-KHE",
+            "NAME_0": "Morocco",
+            "ID_1": 11,
+            "NAME_1": "Rabat - Salé - Zemmour - Zaer",
+            "ID_2": 34,
+            "NAME_2": "Khémisset",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Khemisset"
+          }
+        },
+        {
+          "arcs": [[119, 120, 121]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-RAB",
+            "NAME_0": "Morocco",
+            "ID_1": 11,
+            "NAME_1": "Rabat - Salé - Zemmour - Zaer",
+            "ID_2": 35,
+            "NAME_2": "Rabat",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-119, 122, -122, 123, -47]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-SAL",
+            "NAME_0": "Morocco",
+            "ID_1": 11,
+            "NAME_1": "Rabat - Salé - Zemmour - Zaer",
+            "ID_2": 36,
+            "NAME_2": "Salé",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": "Sale",
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-123, -118, -6, 124, -120]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-SKH",
+            "NAME_0": "Morocco",
+            "ID_1": 11,
+            "NAME_1": "Rabat - Salé - Zemmour - Zaer",
+            "ID_2": 37,
+            "NAME_2": "Skhirate-Témara",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Skhirate-Temara"
+          }
+        },
+        {
+          "arcs": [[-86, 125, 126, 127]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-AGD",
+            "NAME_0": "Morocco",
+            "ID_1": 12,
+            "NAME_1": "Souss - Massa - Draâ",
+            "ID_2": 38,
+            "NAME_2": "Agadir-Ida ou Tanane",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Agadir Ida Ou Tanane"
+          }
+        },
+        {
+          "arcs": [[128, 129, 130, 131]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-CHT",
+            "NAME_0": "Morocco",
+            "ID_1": 12,
+            "NAME_1": "Souss - Massa - Draâ",
+            "ID_2": 39,
+            "NAME_2": "Chtouka-Aït Baha",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Chtouka Ait Baha"
+          }
+        },
+        {
+          "arcs": [[132, -132, 133, -127]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-INE",
+            "NAME_0": "Morocco",
+            "ID_1": 12,
+            "NAME_1": "Souss - Massa - Draâ",
+            "ID_2": 40,
+            "NAME_2": "Inezgane-Aït Melloul",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Inezgane Ait Melloul"
+          }
+        },
+        {
+          "arcs": [[134, -94, 135, -71, 136, -74, 137, -96], [138], [139]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-OUA",
+            "NAME_0": "Morocco",
+            "ID_1": 12,
+            "NAME_1": "Souss - Massa - Draâ",
+            "ID_2": 41,
+            "NAME_2": "Ouarzazate",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-70, 140, -129, -133, -126, -85, -80, -75, -137]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-TAR",
+            "NAME_0": "Morocco",
+            "ID_1": 12,
+            "NAME_1": "Souss - Massa - Draâ",
+            "ID_2": 42,
+            "NAME_2": "Taroudannt",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-141, -69, -64, 141, -130]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-TIZ",
+            "NAME_0": "Morocco",
+            "ID_1": 12,
+            "NAME_1": "Souss - Massa - Draâ",
+            "ID_2": 43,
+            "NAME_2": "Tiznit",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[-140]], [[-139]], [[-135, -95]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-ZAG",
+            "NAME_0": "Morocco",
+            "ID_1": 12,
+            "NAME_1": "Souss - Massa - Draâ",
+            "ID_2": 44,
+            "NAME_2": "Zagora",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-97, -138, -73, -83, 142]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-AZI",
+            "NAME_0": "Morocco",
+            "ID_1": 13,
+            "NAME_1": "Tadla - Azilal",
+            "ID_2": 45,
+            "NAME_2": "Azilal",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-98, -143, -82, -12, -7, -101]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-BEM",
+            "NAME_0": "Morocco",
+            "ID_1": 13,
+            "NAME_1": "Tadla - Azilal",
+            "ID_2": 46,
+            "NAME_2": "Béni Mellal",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Beni Mellal"
+          }
+        },
+        {
+          "arcs": [[143, 144, -50, 145, 146, 147]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-CHE",
+            "NAME_0": "Morocco",
+            "ID_1": 14,
+            "NAME_1": "Tanger - Tétouan",
+            "ID_2": 47,
+            "NAME_2": "Chefchaouen",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[148, 149, 150]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-FAH",
+            "NAME_0": "Morocco",
+            "ID_1": 14,
+            "NAME_1": "Tanger - Tétouan",
+            "ID_2": 48,
+            "NAME_2": "Fahs Anjra",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Fahs-Béni Makada"
+          }
+        },
+        {
+          "arcs": [[151, -146, -53, -49, 152, 153]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-LAR",
+            "NAME_0": "Morocco",
+            "ID_1": 14,
+            "NAME_1": "Tanger - Tétouan",
+            "ID_2": 49,
+            "NAME_2": "Larache",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-147, -152, 154, -149, 155]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-TET",
+            "NAME_0": "Morocco",
+            "ID_1": 14,
+            "NAME_1": "Tanger - Tétouan",
+            "ID_2": 50,
+            "NAME_2": "Tétouan",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Tetouan"
+          }
+        },
+        {
+          "arcs": [[-150, -155, -154, 156]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-TNG",
+            "NAME_0": "Morocco",
+            "ID_1": 14,
+            "NAME_1": "Tanger - Tétouan",
+            "ID_2": 51,
+            "NAME_2": "Tanger-Assilah",
+            "TYPE_2": "Prefecture",
+            "ENGTYPE_2": "Prefecture",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-115, 157, 158, -144, 159]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-HOC",
+            "NAME_0": "Morocco",
+            "ID_1": 15,
+            "NAME_1": "Taza - Al Hoceima - Taounate",
+            "ID_2": 52,
+            "NAME_2": "Al Hoceïma",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Al Hoceima"
+          }
+        },
+        {
+          "arcs": [[160, -39, -34, -43, -51, -145, -159]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-TAO",
+            "NAME_0": "Morocco",
+            "ID_1": 15,
+            "NAME_1": "Taza - Al Hoceima - Taounate",
+            "ID_2": 53,
+            "NAME_2": "Taounate",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-106, -111, -30, -35, -161, -158, -114]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 152,
+            "ISO": "MA-TAZ",
+            "NAME_0": "Morocco",
+            "ID_1": 15,
+            "NAME_1": "Taza - Al Hoceima - Taounate",
+            "ID_2": 54,
+            "NAME_2": "Taza",
+            "TYPE_2": "Province",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/myanmar-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/myanmar-topo.json
new file mode 100644
index 0000000..cea96c2
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/myanmar-topo.json
@@ -0,0 +1,5148 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [13181, 27971],
+      [-77, -78],
+      [-83, -17],
+      [-61, 14],
+      [-171, -8],
+      [-54, -40],
+      [32, -35],
+      [-140, -84],
+      [-86, 13],
+      [-60, -38],
+      [-18, -63],
+      [-48, 49],
+      [-39, -30],
+      [-86, 16],
+      [-215, -82],
+      [-66, 9],
+      [-76, -22],
+      [-77, -61],
+      [-42, 12],
+      [-137, 7],
+      [-23, 39],
+      [-2, 65],
+      [-71, 41],
+      [-38, -9],
+      [-160, 16],
+      [-56, -7],
+      [-32, 32],
+      [-173, 21],
+      [-21, 45],
+      [50, 39],
+      [67, -15],
+      [73, 19],
+      [62, 71],
+      [14, 49],
+      [-42, 75],
+      [-62, 9],
+      [-6, 94],
+      [-20, 40],
+      [66, 91],
+      [-41, 48],
+      [-130, -23],
+      [-73, -38],
+      [-69, -7],
+      [-123, 16],
+      [59, 58],
+      [-24, 88],
+      [-38, 26],
+      [39, 34],
+      [-16, 47],
+      [-50, 25],
+      [-8, 37]
+    ],
+    [
+      [10829, 28559],
+      [-10, 25],
+      [-101, 55],
+      [-47, 41],
+      [-51, 13],
+      [-16, 49],
+      [64, 43],
+      [17, 94],
+      [-78, 4],
+      [-21, 54],
+      [84, 43],
+      [-24, 57],
+      [78, 14],
+      [57, 30],
+      [-31, 77],
+      [-20, 4],
+      [-71, 45],
+      [-40, -28],
+      [-122, 59],
+      [-64, -24],
+      [-51, 59],
+      [-70, 10],
+      [-31, 43],
+      [-44, 8],
+      [-25, -36],
+      [-79, -25],
+      [-92, 11],
+      [-27, -26],
+      [-61, -2],
+      [-61, 30],
+      [-105, -32],
+      [-75, -52],
+      [-36, 0],
+      [21, 76],
+      [-189, 104],
+      [-50, 49],
+      [31, 63],
+      [-47, 52],
+      [-26, 54],
+      [-96, 13],
+      [-40, -38],
+      [-127, 25],
+      [-52, 60],
+      [-83, -7],
+      [-25, 44],
+      [21, 42],
+      [-44, 42],
+      [-23, 73],
+      [-32, 39],
+      [26, 113],
+      [-39, 26],
+      [4, 40],
+      [-46, 9],
+      [-68, 45],
+      [37, 40],
+      [102, 4],
+      [85, 62],
+      [121, 1],
+      [108, 49],
+      [-9, 103],
+      [39, 22],
+      [69, -43],
+      [-23, -91],
+      [-60, -22],
+      [-12, -102],
+      [57, -9],
+      [41, 28],
+      [53, 69],
+      [2, 66],
+      [19, 39],
+      [-8, 73],
+      [-54, 7],
+      [14, 43],
+      [-37, 57],
+      [7, 12],
+      [-65, 60],
+      [-60, 78],
+      [-12, 72],
+      [9, 43],
+      [-46, 34],
+      [-34, 89],
+      [10, 331],
+      [-16, 221],
+      [30, 37],
+      [89, -33],
+      [103, -57],
+      [46, -13],
+      [24, 51],
+      [50, 43],
+      [40, -22],
+      [117, 48],
+      [41, 2],
+      [65, 61],
+      [16, 110],
+      [-34, 47],
+      [-76, 6],
+      [-125, 77],
+      [22, 64],
+      [-43, 118],
+      [-58, 32],
+      [65, 42],
+      [28, 159],
+      [85, 15],
+      [57, 88],
+      [-52, 66],
+      [-2, 58],
+      [-24, 29],
+      [14, 56],
+      [-86, 30],
+      [34, 38],
+      [0, 37],
+      [-38, 38],
+      [-94, 43],
+      [48, 120],
+      [4, 46],
+      [-36, 33],
+      [-83, 12],
+      [-53, 59],
+      [-70, 17],
+      [3, 66],
+      [33, 47],
+      [-29, 26],
+      [9, 48],
+      [84, 17],
+      [107, -6],
+      [59, 13],
+      [55, -10],
+      [75, 9],
+      [43, 55],
+      [-54, 47],
+      [-15, 68],
+      [-41, 25],
+      [-17, 82],
+      [-116, 33],
+      [30, 25],
+      [-8, 39],
+      [29, 83],
+      [136, 47],
+      [89, 15],
+      [31, 68],
+      [93, 21],
+      [5, 53],
+      [-46, 83],
+      [33, 39],
+      [91, -25],
+      [-11, 66],
+      [35, 33],
+      [52, 8],
+      [-18, 51],
+      [-60, -10],
+      [-96, 8],
+      [22, 56],
+      [127, 12],
+      [64, 61],
+      [49, 0],
+      [71, -27],
+      [61, 2],
+      [46, -45],
+      [133, 5],
+      [42, 19],
+      [69, 0],
+      [106, -28],
+      [39, 32],
+      [147, 19],
+      [120, -30],
+      [55, 17],
+      [52, 76],
+      [114, -17],
+      [96, 28],
+      [157, 3],
+      [37, -22],
+      [82, 19],
+      [29, -24],
+      [76, -18],
+      [28, 24],
+      [68, 4],
+      [59, 36],
+      [39, 74]
+    ],
+    [
+      [11802, 34419],
+      [126, 21],
+      [47, -22],
+      [65, 85],
+      [-107, 108],
+      [-70, 47],
+      [-9, 49],
+      [-82, 59],
+      [-61, 78],
+      [-71, 25],
+      [-19, 52],
+      [-68, 65],
+      [-2, 50],
+      [-67, 32],
+      [-7, 31],
+      [-70, 46],
+      [26, 119],
+      [-21, 137],
+      [-38, 45],
+      [64, 28],
+      [36, 76],
+      [82, -2],
+      [54, 33],
+      [77, 122],
+      [104, 26],
+      [80, 2],
+      [1, 38],
+      [106, 79],
+      [41, 5],
+      [189, 140],
+      [29, 36],
+      [123, 32],
+      [163, -85],
+      [32, 39],
+      [-35, 135],
+      [47, 50],
+      [23, 51],
+      [-101, 110],
+      [-75, -15],
+      [26, 60],
+      [-15, 55],
+      [13, 52],
+      [52, 18],
+      [26, 96],
+      [-38, 29],
+      [8, 51],
+      [89, -4],
+      [60, 25],
+      [-23, 58],
+      [38, 34],
+      [109, -50],
+      [49, 88],
+      [49, 1],
+      [-6, 49],
+      [-41, 63],
+      [-2, 33],
+      [45, 24],
+      [8, 64],
+      [42, 26],
+      [-46, 50],
+      [-8, 47],
+      [78, 31],
+      [15, 26],
+      [83, 47],
+      [99, -56],
+      [37, 38],
+      [73, 1],
+      [67, -27],
+      [9, -35],
+      [74, -17],
+      [43, -74],
+      [-9, -119],
+      [129, -85],
+      [11, -49],
+      [119, -6],
+      [7, 42],
+      [52, 29],
+      [97, 4],
+      [80, -75],
+      [55, -33],
+      [-19, -27],
+      [85, -19],
+      [45, -34],
+      [32, -56],
+      [-40, -62],
+      [59, -51],
+      [45, 25],
+      [66, 5],
+      [40, -68],
+      [64, -13],
+      [50, -48],
+      [45, -82],
+      [-25, -76],
+      [-29, -33],
+      [15, -44],
+      [-24, -59],
+      [7, -59],
+      [55, -46],
+      [70, -2],
+      [31, -70],
+      [-1, -57],
+      [-47, -3],
+      [-29, -43],
+      [26, -44],
+      [107, -38],
+      [-14, -104],
+      [67, -36],
+      [-55, -59],
+      [34, -39],
+      [113, -72],
+      [40, -50],
+      [19, -85],
+      [-2, -86],
+      [22, -45],
+      [46, -25],
+      [86, -2],
+      [44, 19],
+      [21, 42],
+      [72, 26],
+      [-1, 87],
+      [19, 64],
+      [-13, 70],
+      [31, 8],
+      [62, -56],
+      [82, -9],
+      [18, -21],
+      [112, 44],
+      [66, -116],
+      [156, -42],
+      [58, 36],
+      [69, -43],
+      [-38, -154],
+      [34, -39],
+      [-33, -85],
+      [37, -18],
+      [-9, -67],
+      [18, -38],
+      [69, -23],
+      [13, -35],
+      [-16, -91],
+      [-41, -32],
+      [17, -97],
+      [-66, -24],
+      [40, -141],
+      [-7, -66],
+      [10, -62],
+      [62, -4],
+      [63, -43],
+      [-5, -64],
+      [-47, -14],
+      [-13, -104],
+      [37, -78],
+      [10, -77],
+      [-58, -53],
+      [2, -27],
+      [61, -69],
+      [-16, -152],
+      [-26, -43],
+      [67, -44],
+      [-22, -49],
+      [47, -86],
+      [-24, -89],
+      [-39, -27],
+      [4, -146],
+      [-34, -110],
+      [19, -27],
+      [-42, -75],
+      [-13, -73],
+      [-108, -81],
+      [-9, -92],
+      [-18, -40],
+      [82, 0],
+      [70, -114],
+      [-25, -50],
+      [-38, -6],
+      [18, -62],
+      [-60, -27],
+      [-60, -45],
+      [-24, 20],
+      [22, 47],
+      [-37, 41],
+      [-53, 9],
+      [-60, -33],
+      [-41, 25],
+      [-33, -47],
+      [72, -135],
+      [34, -155],
+      [61, 3],
+      [103, -78],
+      [19, -59],
+      [29, -23],
+      [1, -89],
+      [-42, -13],
+      [-32, -54],
+      [-84, -36],
+      [-149, 54],
+      [-37, 40],
+      [-71, -5],
+      [-30, -37],
+      [-67, -38],
+      [-42, -54],
+      [9, -53],
+      [-34, -21],
+      [7, -70],
+      [-21, -39],
+      [-91, -30],
+      [-25, -24],
+      [-5, -97],
+      [-15, -35],
+      [-55, 1],
+      [-46, -39],
+      [-39, 0],
+      [-99, -53],
+      [-29, 53],
+      [-73, 50],
+      [-128, 33],
+      [-68, -32],
+      [18, -55],
+      [-29, -48],
+      [-53, -45],
+      [-63, -12],
+      [-3, -26],
+      [76, -101],
+      [-10, -72],
+      [-32, -64],
+      [-93, 3],
+      [-11, -76],
+      [-53, -42],
+      [-20, -48],
+      [-67, -10],
+      [-46, 11],
+      [-71, -99],
+      [-109, -71],
+      [-60, -19],
+      [-48, 16],
+      [-62, 79],
+      [-90, 15],
+      [-73, -132],
+      [-27, -87],
+      [-79, -110],
+      [-65, -49],
+      [-36, -6],
+      [13, -64],
+      [-18, -57],
+      [-1, -78],
+      [32, -56],
+      [-8, -57],
+      [33, -48],
+      [47, -29],
+      [57, -3],
+      [36, -64],
+      [-89, -46],
+      [-67, 6],
+      [-73, 25],
+      [-51, -19],
+      [-96, -79],
+      [-135, -47],
+      [-36, 5],
+      [-56, -57],
+      [36, -34],
+      [15, -131],
+      [-6, -115],
+      [-37, -226],
+      [-48, -68],
+      [-7, -36],
+      [221, 8],
+      [97, 25],
+      [30, -7],
+      [11, -83],
+      [26, -43],
+      [59, -19],
+      [-30, -67],
+      [-90, 1],
+      [-16, -39],
+      [21, -51],
+      [115, -2],
+      [56, -17],
+      [75, -55],
+      [-97, -66],
+      [-3, -83],
+      [42, -17],
+      [-20, -88],
+      [-27, -43],
+      [-70, -33],
+      [-53, -49],
+      [-97, -54],
+      [-17, -76],
+      [-124, -42],
+      [-33, -44],
+      [-76, -31],
+      [-6, -38],
+      [67, -19],
+      [184, -78],
+      [13, -36]
+    ],
+    [
+      [13724, 19409],
+      [-15, -58],
+      [40, -104],
+      [-84, -89],
+      [-34, -52],
+      [-56, -41],
+      [11, -40],
+      [-13, -61],
+      [72, -101],
+      [-11, -39],
+      [-53, 12],
+      [-51, -47],
+      [47, -13],
+      [100, -74],
+      [-11, -53],
+      [13, -98],
+      [-19, -104],
+      [-56, -6],
+      [-53, -34],
+      [-63, -12],
+      [7, -47],
+      [-72, -4],
+      [-4, -129],
+      [-73, -17],
+      [-89, -73],
+      [50, -14],
+      [20, -42],
+      [104, -43],
+      [19, -78],
+      [-25, -28],
+      [61, -141],
+      [-29, -43],
+      [12, -45],
+      [37, -38],
+      [-10, -127],
+      [14, -51],
+      [-20, -57],
+      [-79, 17],
+      [-77, -35],
+      [-117, 14],
+      [-40, -36],
+      [-82, -42],
+      [-139, -15],
+      [-19, -72],
+      [-87, 4],
+      [-45, 31],
+      [-36, -29],
+      [-53, -5],
+      [-41, 99],
+      [-67, 45],
+      [-88, -17],
+      [-12, 82]
+    ],
+    [
+      [12508, 17459],
+      [-35, 39],
+      [-18, 51],
+      [-49, 40],
+      [-19, 41],
+      [-106, 6],
+      [-79, -18],
+      [-52, 12],
+      [-80, -8],
+      [-98, 24],
+      [-4, 6],
+      [-81, -15],
+      [-45, 98],
+      [-94, 134],
+      [-44, 117],
+      [-74, 38],
+      [36, 42],
+      [-20, 35],
+      [-89, 53],
+      [4, 27],
+      [-57, 76],
+      [25, 44],
+      [-55, 65],
+      [48, 37],
+      [-66, 45],
+      [19, 26],
+      [-45, 40],
+      [-23, 60],
+      [-31, -12],
+      [-98, 49],
+      [-19, 87],
+      [-52, 72],
+      [6, 139],
+      [29, 17]
+    ],
+    [
+      [11242, 18926],
+      [44, -42],
+      [81, 52],
+      [-26, 36],
+      [32, 38],
+      [172, 84],
+      [15, 21],
+      [-73, 67],
+      [-27, -18],
+      [-52, 31],
+      [17, 26],
+      [-88, 54],
+      [6, 30],
+      [51, 19],
+      [4, 50],
+      [114, 62],
+      [19, 51],
+      [76, 54],
+      [49, -1],
+      [26, 28],
+      [-19, 38],
+      [16, 35],
+      [83, 3],
+      [107, 44],
+      [82, 1],
+      [-29, 72],
+      [87, 57],
+      [-44, 39],
+      [31, 68],
+      [20, 6],
+      [-34, 134],
+      [39, 105],
+      [-31, 62],
+      [59, 20],
+      [98, -15],
+      [26, -67],
+      [4, -96],
+      [107, -33],
+      [117, 21],
+      [35, -8],
+      [11, 57],
+      [42, 41],
+      [82, 19],
+      [33, -75],
+      [65, -22],
+      [49, -53],
+      [108, 15],
+      [26, 27],
+      [78, -41],
+      [-15, -32],
+      [46, -64],
+      [110, -5],
+      [-74, -135],
+      [0, -62],
+      [104, -64],
+      [51, -50],
+      [83, -3],
+      [37, -24],
+      [42, 17],
+      [31, -23],
+      [90, 0],
+      [3, 29],
+      [74, -21],
+      [50, -31],
+      [77, 18],
+      [59, -23],
+      [-7, -75],
+      [33, -65]
+    ],
+    [
+      [12508, 17459],
+      [-38, -45],
+      [1, -45],
+      [27, -43],
+      [41, -14],
+      [44, -57],
+      [32, -95],
+      [34, -22],
+      [19, -59],
+      [42, -14],
+      [22, -47],
+      [-23, -35],
+      [5, -44],
+      [42, -58],
+      [112, -85],
+      [61, 34],
+      [41, 102],
+      [92, 0],
+      [93, -41],
+      [29, -66],
+      [-72, -80],
+      [29, -50],
+      [84, -82],
+      [47, -31],
+      [5, -84],
+      [32, -51],
+      [-22, -51],
+      [56, -13],
+      [39, -89],
+      [38, -59],
+      [-14, -63],
+      [-57, -13],
+      [-44, -38],
+      [-42, -93],
+      [71, -126],
+      [83, -45],
+      [31, -51],
+      [58, -40],
+      [-20, -48],
+      [68, -71],
+      [134, -123],
+      [140, -91],
+      [44, -89],
+      [95, -23],
+      [13, -36],
+      [47, 5],
+      [108, -110],
+      [56, -38],
+      [-24, -19],
+      [96, -66],
+      [56, -19],
+      [-12, -66],
+      [19, -63],
+      [32, -1],
+      [93, -107],
+      [97, -35],
+      [18, -38],
+      [80, -39],
+      [53, -95],
+      [43, -13],
+      [-13, -70],
+      [90, -29],
+      [-4, -62],
+      [57, -46],
+      [53, -2],
+      [76, 20],
+      [44, -10],
+      [70, -68],
+      [21, -53],
+      [46, 0],
+      [74, -93],
+      [-36, -21],
+      [76, -78],
+      [14, -45],
+      [-53, -33],
+      [-7, -48],
+      [111, -20],
+      [11, -28],
+      [-73, -16],
+      [-25, -38],
+      [-44, 9],
+      [-58, -120],
+      [132, -88],
+      [-3, -61],
+      [44, -41],
+      [28, 7],
+      [66, -36],
+      [30, -73],
+      [-22, -39],
+      [78, -85],
+      [63, -87],
+      [51, -44],
+      [-45, -53],
+      [14, -53],
+      [48, -75],
+      [15, -94],
+      [-3, -70],
+      [83, -23],
+      [8, 47],
+      [33, 4],
+      [18, 67],
+      [47, 34],
+      [41, -9],
+      [41, 44],
+      [85, 45],
+      [34, 68],
+      [125, -5],
+      [57, -46],
+      [32, -67],
+      [-46, -98],
+      [39, -18],
+      [-21, -64],
+      [8, -35],
+      [-91, -31],
+      [-48, -41],
+      [21, -97],
+      [-20, -62],
+      [-61, -46],
+      [-60, -25],
+      [-59, 43],
+      [-34, -12],
+      [-103, 7],
+      [-25, 21],
+      [-115, -13],
+      [23, -65],
+      [-31, -39],
+      [-82, -27],
+      [7, -33],
+      [-118, 34],
+      [-31, -9],
+      [-6, -54],
+      [74, -51],
+      [27, -77],
+      [-32, -23],
+      [-24, -84],
+      [36, -78],
+      [-19, -78],
+      [-59, -135],
+      [-49, -167],
+      [46, -93],
+      [-31, -73],
+      [80, -259],
+      [-14, -179],
+      [-47, -89],
+      [-58, 66],
+      [-64, 11],
+      [-42, 34],
+      [-88, -51],
+      [-90, -6],
+      [-59, -112],
+      [46, -28],
+      [9, -53],
+      [-40, -25],
+      [-29, 33],
+      [-69, 39],
+      [-84, 20],
+      [-48, 27],
+      [-29, -33],
+      [24, -33],
+      [-53, -17],
+      [-44, -67],
+      [-74, -6],
+      [-27, -24],
+      [-46, 24]
+    ],
+    [
+      [14542, 10746],
+      [6, 52],
+      [-52, 65],
+      [2, 29],
+      [-66, 44],
+      [-42, -1],
+      [-58, 107],
+      [-60, 75],
+      [-56, 35],
+      [0, 36],
+      [-71, 113],
+      [-71, 51],
+      [-16, 43],
+      [-58, 61],
+      [-71, 36],
+      [3, 63],
+      [-66, -7],
+      [-51, 74],
+      [-82, 8],
+      [12, 99],
+      [30, 24],
+      [-38, 47],
+      [-21, 124],
+      [-64, 80],
+      [22, 15],
+      [-26, 68],
+      [44, 46],
+      [-37, 80],
+      [32, 44],
+      [-9, 39],
+      [55, 22],
+      [-42, 61],
+      [2, 35],
+      [-65, 61],
+      [-23, 51],
+      [140, 35],
+      [88, -24],
+      [94, 35],
+      [69, 6],
+      [131, -11],
+      [22, -29],
+      [57, -21],
+      [33, 28],
+      [116, 42],
+      [8, 79],
+      [-35, 15],
+      [-85, 84],
+      [7, 43],
+      [-90, 92],
+      [-119, 40],
+      [-7, 94],
+      [-28, 107],
+      [-46, -28],
+      [-109, 12],
+      [-24, 51],
+      [-42, 31],
+      [-73, 21],
+      [6, 29],
+      [-15, 1],
+      [5, 64],
+      [-25, 39]
+    ],
+    [
+      [13683, 13361],
+      [-114, -55],
+      [-84, 41],
+      [-39, 47],
+      [-92, 23],
+      [-36, 59],
+      [-97, -19],
+      [-2, 45],
+      [-33, 52],
+      [-68, 23]
+    ],
+    [
+      [13118, 13577],
+      [-97, 130],
+      [-29, 3],
+      [2, 127],
+      [-116, 35],
+      [-22, 28],
+      [34, 41],
+      [-64, 16],
+      [-40, 84],
+      [9, 94],
+      [-24, 49],
+      [-58, 37],
+      [92, 155],
+      [-15, 52],
+      [10, 19],
+      [12, 18],
+      [-4, 5],
+      [59, 21],
+      [19, 38],
+      [-37, 38],
+      [-27, 78],
+      [25, 71],
+      [-47, 110],
+      [48, 16],
+      [-12, 75],
+      [-64, 57],
+      [15, 15],
+      [-71, 58],
+      [-20, 50],
+      [11, 65],
+      [-40, 56],
+      [21, 32],
+      [13, 82],
+      [-45, 35],
+      [-57, 19],
+      [-44, 59],
+      [6, 37],
+      [-32, 67],
+      [22, 73],
+      [52, 10],
+      [20, 45],
+      [-28, 21],
+      [-64, -4],
+      [-10, -76],
+      [-54, 4],
+      [1, -50],
+      [-56, -90],
+      [-4, -39],
+      [-99, 38],
+      [-38, -15],
+      [-23, -44],
+      [-39, 4],
+      [9, -71],
+      [-48, -2]
+    ],
+    [
+      [12170, 15353],
+      [-53, 29],
+      [19, 137],
+      [-82, 79],
+      [18, 25],
+      [-54, 93],
+      [25, 64],
+      [64, 60],
+      [5, 39],
+      [-24, 52],
+      [-49, 28],
+      [-4, 55],
+      [-98, 114],
+      [-15, 32],
+      [3, 85],
+      [55, 41],
+      [3, 34],
+      [76, 93],
+      [20, 93],
+      [35, 25],
+      [-5, 45],
+      [-79, 41],
+      [-88, 68],
+      [38, 80],
+      [-54, 118],
+      [-40, 45],
+      [-40, -22],
+      [-19, -59],
+      [-52, 2],
+      [-17, 28],
+      [-4, 78],
+      [-33, 58],
+      [-59, -9],
+      [-45, 13],
+      [-19, 59],
+      [-52, 49],
+      [37, 85],
+      [18, 157],
+      [-40, 12],
+      [24, 53],
+      [-87, 93],
+      [-8, 38],
+      [-51, -4],
+      [-74, -27],
+      [-56, 3],
+      [-42, -42],
+      [-71, -32],
+      [-83, 5],
+      [-82, 53],
+      [-55, 3],
+      [-71, -61],
+      [-59, 45],
+      [-13, 52],
+      [-36, -1],
+      [-55, 95],
+      [-57, 30],
+      [-45, 53],
+      [-28, 97],
+      [151, 14],
+      [-25, 39],
+      [9, 39],
+      [-44, 20],
+      [-38, 58],
+      [42, 84],
+      [90, -12],
+      [46, 54],
+      [-79, 34],
+      [-125, -25],
+      [-33, 160],
+      [4, 41],
+      [-72, 40],
+      [-77, 64],
+      [7, 85],
+      [-52, 26],
+      [94, 23],
+      [32, 48],
+      [-114, 51],
+      [-69, 178],
+      [-39, 13],
+      [11, 18],
+      [11, 83],
+      [-36, 41],
+      [-45, 12],
+      [-42, 53],
+      [60, 63],
+      [-80, 43],
+      [-24, 29]
+    ],
+    [
+      [10175, 19208],
+      [130, 16],
+      [60, -11],
+      [72, 27],
+      [59, -38],
+      [91, 4],
+      [67, -35],
+      [53, -56],
+      [46, 31],
+      [11, 68],
+      [34, 47],
+      [43, 17]
+    ],
+    [
+      [10841, 19278],
+      [23, -57],
+      [50, -58],
+      [71, -6],
+      [93, -35],
+      [40, -48],
+      [46, -8],
+      [29, -59],
+      [41, -39],
+      [8, -42]
+    ],
+    [
+      [4750, 27914],
+      [-21, -33],
+      [9, -88],
+      [38, -70],
+      [-38, -36],
+      [30, -60],
+      [-52, -51],
+      [9, -28],
+      [-30, -77],
+      [-3, -111],
+      [-17, -28],
+      [-78, -7],
+      [-23, 32],
+      [-71, 35],
+      [-57, -63],
+      [26, -33],
+      [23, -186],
+      [-27, -104],
+      [-3, -5],
+      [-50, -12],
+      [1, -119],
+      [16, -42],
+      [-26, -72],
+      [-47, -40],
+      [-62, -28],
+      [21, -69],
+      [-41, -12],
+      [74, -109],
+      [0, -70],
+      [41, -9],
+      [26, -57],
+      [-10, -149],
+      [48, -33],
+      [-2, -39],
+      [-72, 0],
+      [13, -44],
+      [39, -39],
+      [14, -104],
+      [-11, -34],
+      [-61, -11],
+      [50, -117],
+      [0, -69]
+    ],
+    [
+      [4426, 25723],
+      [99, -263],
+      [-78, -20],
+      [1, -56],
+      [74, -232],
+      [24, -29],
+      [-95, -140],
+      [47, -224],
+      [-4, -102],
+      [14, -95],
+      [-85, -149],
+      [26, -170],
+      [-87, -143],
+      [12, -48],
+      [22, -194],
+      [26, -165],
+      [87, -98],
+      [142, -68],
+      [6, -67],
+      [34, -61],
+      [-54, -32],
+      [-9, -101],
+      [-36, -51],
+      [29, -32],
+      [-22, -35],
+      [-41, -118],
+      [-41, -79],
+      [24, -25],
+      [-120, -73],
+      [33, -33],
+      [78, 4],
+      [100, -13],
+      [17, -28],
+      [-14, -103],
+      [30, -23],
+      [31, -67],
+      [-22, -118],
+      [-62, -72],
+      [-77, -11],
+      [34, -52],
+      [-8, -26],
+      [-55, -34],
+      [-90, -102],
+      [66, -145],
+      [30, -5],
+      [35, -53],
+      [-45, -61],
+      [29, -70],
+      [71, -56],
+      [7, -30],
+      [-89, -120],
+      [-138, -15],
+      [-24, -27],
+      [-87, -14],
+      [-49, -43],
+      [-25, 22],
+      [-65, -18],
+      [-55, 16]
+    ],
+    [
+      [4077, 21556],
+      [7, 27],
+      [-61, 48],
+      [23, 44],
+      [-49, 75],
+      [-24, 59],
+      [-33, 4],
+      [-97, -29],
+      [-14, 68],
+      [-26, 13],
+      [-8, 63],
+      [-58, 83],
+      [-63, 55],
+      [-1, 29],
+      [-126, 8],
+      [-29, -12],
+      [-3, -101],
+      [-75, -41],
+      [24, -32],
+      [-14, -97],
+      [64, -59],
+      [2, -60],
+      [-120, 6],
+      [-41, 17],
+      [-29, -46],
+      [-78, -4],
+      [-42, 51],
+      [-51, 19],
+      [-51, -34],
+      [-25, 25],
+      [-106, -16],
+      [-37, 79],
+      [-165, -20],
+      [-26, 59],
+      [-78, 1],
+      [-84, 37],
+      [9, 42],
+      [-94, 41],
+      [-80, -36],
+      [-37, 20],
+      [-36, 135],
+      [-27, 37],
+      [-1, 60],
+      [19, 21],
+      [-30, 139],
+      [-16, 32],
+      [21, 62],
+      [-80, -11],
+      [-123, -39],
+      [-46, 32],
+      [-51, -14],
+      [-54, 53],
+      [-84, 32],
+      [-57, 1],
+      [-146, -82],
+      [-63, 44],
+      [-65, 3],
+      [-42, 58],
+      [16, 33],
+      [-42, 34],
+      [0, 62],
+      [-70, 34],
+      [-40, -17],
+      [-66, 109],
+      [-39, 7],
+      [-37, 59]
+    ],
+    [
+      [1222, 22826],
+      [-36, 64],
+      [-37, 116],
+      [-21, 102],
+      [-23, 42],
+      [-8, 79],
+      [-19, 52],
+      [-5, 81],
+      [-21, 73],
+      [5, 63],
+      [-17, 55],
+      [9, 77],
+      [-13, 24],
+      [21, 136],
+      [4, 160],
+      [45, 58],
+      [-60, 192],
+      [67, 20],
+      [47, 61],
+      [65, -5],
+      [13, 59],
+      [-7, 122],
+      [32, 68],
+      [74, 26],
+      [21, -32],
+      [200, -97],
+      [63, -48],
+      [58, -15],
+      [-8, -55],
+      [59, -28],
+      [26, -92],
+      [70, 96],
+      [65, 35],
+      [50, -71],
+      [66, -16],
+      [-22, 119],
+      [36, 85],
+      [23, 19],
+      [90, -4],
+      [-12, 55],
+      [-36, 44],
+      [22, 37],
+      [-19, 57],
+      [24, 15],
+      [146, -2],
+      [35, -53],
+      [59, 4],
+      [27, 25],
+      [-41, 114],
+      [88, 2],
+      [40, 18],
+      [-7, 146],
+      [-16, 42],
+      [-2, 150],
+      [-61, 52],
+      [-53, 9],
+      [-8, 73],
+      [-59, 66],
+      [8, 70],
+      [62, 48],
+      [-13, 55],
+      [-66, 53],
+      [-34, 134],
+      [30, 92],
+      [-21, 100],
+      [49, 78],
+      [5, 45],
+      [35, 60],
+      [-6, 27],
+      [44, 35],
+      [-33, 92],
+      [11, 43],
+      [-44, 21],
+      [12, 84],
+      [78, 1],
+      [58, 28],
+      [62, -25],
+      [17, -40],
+      [66, -37],
+      [118, -3],
+      [84, 69],
+      [44, 101],
+      [38, 51],
+      [60, 38],
+      [-40, 17],
+      [27, 83],
+      [3, 84],
+      [-36, 77],
+      [6, 116],
+      [-29, 53],
+      [67, 23],
+      [38, 50],
+      [-27, 62],
+      [13, 65],
+      [2, 98],
+      [55, 73],
+      [-12, 32],
+      [36, 82],
+      [-27, 92],
+      [45, 72],
+      [-65, 66],
+      [0, 36],
+      [-40, 54],
+      [28, 102],
+      [-28, 21],
+      [-13, 113],
+      [8, 110],
+      [-62, 8],
+      [-76, 106],
+      [7, 151],
+      [-18, 38],
+      [38, 39],
+      [157, -45],
+      [33, -33],
+      [30, -83],
+      [47, -9],
+      [12, -71],
+      [77, -54],
+      [72, -8],
+      [56, 25],
+      [22, 32],
+      [85, -29],
+      [49, 35],
+      [26, 59],
+      [192, -9],
+      [49, -11],
+      [98, 8],
+      [39, -73],
+      [105, -82],
+      [99, 14],
+      [97, 35],
+      [72, 2],
+      [61, -39],
+      [113, -21],
+      [28, 10],
+      [66, -32],
+      [23, -47],
+      [109, -2],
+      [50, -91],
+      [58, -11]
+    ],
+    [
+      [10829, 28559],
+      [-86, -24],
+      [-129, 26],
+      [-38, -8],
+      [-94, -107],
+      [-41, 20],
+      [-109, -21],
+      [-106, -87],
+      [-55, -58],
+      [46, -44],
+      [49, -19],
+      [95, 41],
+      [87, -19],
+      [30, -75],
+      [-20, -38],
+      [46, -83],
+      [-3, -54],
+      [73, -53],
+      [8, -61],
+      [-54, -15],
+      [-56, -130],
+      [-64, -53],
+      [-41, 0],
+      [-81, -62],
+      [-13, -46],
+      [12, -75],
+      [-47, -20],
+      [-61, -109]
+    ],
+    [
+      [10177, 27385],
+      [-52, 35],
+      [-17, 58],
+      [-117, 52],
+      [-84, -23],
+      [-49, -54],
+      [-24, -56],
+      [-87, 27],
+      [-109, 9],
+      [-59, -49],
+      [-18, 43],
+      [12, 57],
+      [-50, 37],
+      [31, 29],
+      [5, 55],
+      [-66, 4],
+      [-72, -55],
+      [30, -13],
+      [-19, -47],
+      [-77, -11],
+      [-41, -32],
+      [-54, -116],
+      [-6, -66],
+      [-96, 43],
+      [-15, -62],
+      [7, -83],
+      [-105, -49],
+      [-27, -46],
+      [-19, -85],
+      [63, -66],
+      [48, -12],
+      [0, -40],
+      [-49, -61],
+      [70, -66],
+      [-17, -52],
+      [18, -111],
+      [50, -13],
+      [29, -58],
+      [4, -53],
+      [-46, -40],
+      [22, -37],
+      [-7, -76],
+      [-19, -29],
+      [15, -96],
+      [-30, -74],
+      [-4, -103],
+      [8, -247],
+      [-36, -31],
+      [-50, -2],
+      [-69, -26],
+      [15, -65],
+      [-14, -34],
+      [79, -69],
+      [18, -69],
+      [69, -72],
+      [54, -80],
+      [-46, -37],
+      [-38, -68],
+      [18, -76],
+      [-26, -43],
+      [16, -73],
+      [111, -121],
+      [-1, -44],
+      [-58, 3],
+      [-4, -41],
+      [11, -208],
+      [22, -24],
+      [-9, -101],
+      [54, -77],
+      [14, -52],
+      [-21, -85],
+      [27, -52],
+      [-60, -191],
+      [-20, -24],
+      [-129, -35],
+      [-62, 15],
+      [-39, 49],
+      [-58, 32],
+      [-108, 11],
+      [-79, 29],
+      [-130, -4],
+      [-62, 22],
+      [-77, -17],
+      [-230, 2],
+      [-48, -20],
+      [-106, -10],
+      [-70, -40],
+      [-44, -57],
+      [-121, -115],
+      [-57, -20],
+      [45, -56],
+      [-26, -48],
+      [-54, -22],
+      [-44, -45],
+      [-11, -119],
+      [-48, -74],
+      [-9, -64]
+    ],
+    [
+      [7643, 23405],
+      [-28, 20],
+      [-26, 87],
+      [-52, 48],
+      [-132, 41],
+      [1, 80],
+      [-90, 50],
+      [-13, 53],
+      [-94, 86],
+      [4, 51],
+      [-104, 42],
+      [-93, -7],
+      [-50, -33],
+      [-111, -7],
+      [-59, -14],
+      [-48, 16],
+      [-109, 0],
+      [-49, 12],
+      [-115, 50],
+      [-44, -17],
+      [-123, -16],
+      [-93, -39],
+      [-62, 33],
+      [-153, 56],
+      [-175, -69],
+      [-115, -1],
+      [8, -91],
+      [-114, -11],
+      [-89, 64],
+      [-65, 11],
+      [-58, 29],
+      [28, 209],
+      [12, 45],
+      [-37, 44],
+      [23, 77],
+      [39, 16],
+      [-1, 50],
+      [-32, 37],
+      [8, 60],
+      [-20, 57],
+      [-85, -39],
+      [-51, 0],
+      [-46, 37],
+      [-108, 32],
+      [-62, 77],
+      [-62, 220],
+      [54, 29],
+      [-16, 77],
+      [24, 26],
+      [-24, 61],
+      [23, 16],
+      [26, 70],
+      [-13, 98],
+      [-51, 37],
+      [10, 24],
+      [-34, 91],
+      [-74, 83],
+      [-47, 109],
+      [-52, 55],
+      [-136, 19],
+      [8, 72],
+      [-30, 56],
+      [-121, -64],
+      [-119, 13]
+    ],
+    [
+      [4750, 27914],
+      [33, 26],
+      [33, 135],
+      [45, 31],
+      [31, 100],
+      [89, 108],
+      [41, 92],
+      [-7, 88],
+      [21, 78],
+      [40, 15],
+      [23, 112],
+      [37, 20],
+      [51, 76],
+      [0, 102],
+      [66, 13],
+      [70, 88],
+      [-41, 30],
+      [83, 32],
+      [30, 57],
+      [-25, 30],
+      [-12, 62],
+      [67, 0],
+      [22, 23],
+      [60, 151],
+      [131, 46],
+      [75, 98],
+      [19, 80],
+      [-13, 45],
+      [156, 20],
+      [18, 57],
+      [32, 32],
+      [-21, 44],
+      [32, 108],
+      [41, 55],
+      [88, 57],
+      [41, 75],
+      [-17, 64],
+      [15, 42],
+      [51, 31],
+      [43, 71],
+      [6, 95],
+      [-7, 87],
+      [-90, 39],
+      [-235, 74],
+      [-72, 64],
+      [18, 34],
+      [3, 69],
+      [52, 102],
+      [65, 86],
+      [7, 75],
+      [63, 26],
+      [49, 110],
+      [145, 34],
+      [96, -3],
+      [56, 29],
+      [46, 57],
+      [0, 35],
+      [50, 41],
+      [82, 3],
+      [2, 50],
+      [80, 43],
+      [50, 119],
+      [124, 71],
+      [17, 38],
+      [104, 33],
+      [22, 34],
+      [2, 86],
+      [-36, 28],
+      [-36, 90],
+      [-14, 75],
+      [95, 78],
+      [94, 31],
+      [166, 149],
+      [17, 52],
+      [46, 43],
+      [-49, 35],
+      [-40, -7],
+      [-70, 24],
+      [14, 63],
+      [-16, 58],
+      [12, 62],
+      [46, 40],
+      [-69, 45],
+      [29, 35],
+      [-9, 42],
+      [6, 165],
+      [13, 52],
+      [-81, 39],
+      [17, 37],
+      [-52, 58],
+      [-16, 52],
+      [94, 90],
+      [-19, 43],
+      [71, 31],
+      [41, 53],
+      [-13, 57],
+      [83, 62],
+      [42, -1],
+      [84, 77],
+      [59, -14],
+      [-1, -37],
+      [107, -6],
+      [85, 43],
+      [53, -8],
+      [30, 25],
+      [146, 37],
+      [9, 35],
+      [61, 48],
+      [36, -2],
+      [62, 96],
+      [10, 36],
+      [86, 52],
+      [62, -35],
+      [94, -8],
+      [46, 64],
+      [11, 55],
+      [91, 61],
+      [86, -42],
+      [41, -2],
+      [51, 30],
+      [8, 51],
+      [36, 44],
+      [9, 57],
+      [36, 14],
+      [51, 69],
+      [77, -11],
+      [103, 10],
+      [140, 70],
+      [32, 6],
+      [21, 50],
+      [121, 126],
+      [53, 86],
+      [118, 55],
+      [34, 26],
+      [155, 49],
+      [77, 5],
+      [102, 55],
+      [101, -11],
+      [16, 25],
+      [75, 17],
+      [82, -16],
+      [20, 18],
+      [84, -20],
+      [96, 37],
+      [76, 7],
+      [123, -16],
+      [29, -25],
+      [80, 65],
+      [77, 31],
+      [48, 61],
+      [222, -13],
+      [15, 29],
+      [123, -38],
+      [33, 7],
+      [77, -24],
+      [58, -74],
+      [34, -16],
+      [27, -58],
+      [94, -45],
+      [-18, -50],
+      [-60, -25],
+      [9, -40],
+      [88, -40],
+      [142, -15],
+      [131, -47],
+      [139, -92]
+    ],
+    [
+      [14687, 418],
+      [39, -34],
+      [34, -56],
+      [-80, -5],
+      [8, -31],
+      [-31, -35],
+      [-1, -63],
+      [-55, -21],
+      [-63, 0],
+      [-80, -35],
+      [-9, -72],
+      [-51, -66],
+      [-68, 25],
+      [35, 38],
+      [-29, 37],
+      [25, 89],
+      [48, 16],
+      [44, 55],
+      [19, 68],
+      [38, 34],
+      [69, -14],
+      [20, 45],
+      [88, 25]
+    ],
+    [
+      [14512, 671],
+      [36, 15],
+      [25, -55],
+      [33, -14],
+      [8, -43],
+      [-88, -41],
+      [-62, 44],
+      [25, 27],
+      [23, 67]
+    ],
+    [
+      [15262, 2056],
+      [29, 12],
+      [121, -67],
+      [-31, -49],
+      [18, -38],
+      [-54, -58],
+      [-72, -15],
+      [-31, 35],
+      [56, 55],
+      [-29, 19],
+      [-7, 106]
+    ],
+    [
+      [13879, 2143],
+      [40, 4],
+      [5, -45],
+      [-33, -67],
+      [-78, -3],
+      [-36, 44],
+      [75, 81],
+      [27, -14]
+    ],
+    [
+      [14492, 2255],
+      [44, -39],
+      [46, -12],
+      [25, -60],
+      [-1, -39],
+      [36, -73],
+      [49, -22],
+      [28, -39],
+      [2, -92],
+      [22, -55],
+      [-8, -80],
+      [17, -27],
+      [-41, -40],
+      [-86, 5],
+      [12, 33],
+      [-11, 62],
+      [48, 36],
+      [-27, 68],
+      [17, 49],
+      [-46, 39],
+      [-104, 116],
+      [-34, -11],
+      [-28, 65],
+      [-43, -12],
+      [-130, -89],
+      [-26, 44],
+      [52, 54],
+      [48, 22],
+      [119, 113],
+      [20, -16]
+    ],
+    [
+      [15371, 2333],
+      [5, -77],
+      [-20, -21],
+      [-60, 12],
+      [-12, -47],
+      [-93, 50],
+      [47, 83],
+      [48, 9],
+      [19, 37],
+      [2, 72],
+      [29, 16],
+      [35, -134]
+    ],
+    [
+      [14765, 3895],
+      [-1, -61],
+      [49, -57],
+      [11, -43],
+      [-59, -44],
+      [-48, -210],
+      [16, -44],
+      [-17, -31],
+      [-12, -156],
+      [-41, -12],
+      [-67, 21],
+      [-19, -52],
+      [-39, 3],
+      [-97, -47],
+      [-1, 38],
+      [74, 0],
+      [1, 57],
+      [28, 54],
+      [-32, 51],
+      [15, 59],
+      [63, 123],
+      [52, 12],
+      [-38, 49],
+      [11, 56],
+      [85, 96],
+      [12, 58],
+      [-34, 57],
+      [37, 27],
+      [51, -4]
+    ],
+    [
+      [15336, 3876],
+      [37, -63],
+      [-3, -110],
+      [-27, -137],
+      [26, -50],
+      [-58, -55],
+      [0, -95],
+      [-60, 9],
+      [-29, 44],
+      [-60, -3],
+      [-17, 21],
+      [-67, -16],
+      [-37, 85],
+      [35, 27],
+      [-36, 39],
+      [-80, 24],
+      [-16, 55],
+      [32, 64],
+      [-41, 46],
+      [40, 56],
+      [0, 49],
+      [46, 4],
+      [116, -18],
+      [30, 28],
+      [61, -3],
+      [69, 31],
+      [39, -32]
+    ],
+    [
+      [14070, 4006],
+      [-4, -53],
+      [32, -57],
+      [67, -14],
+      [14, -56],
+      [3, -86],
+      [58, -4],
+      [-11, -79],
+      [-51, -78],
+      [-21, 62],
+      [-75, 31],
+      [21, 40],
+      [-21, 58],
+      [43, 26],
+      [-40, 60],
+      [-1, 47],
+      [-53, 40],
+      [39, 63]
+    ],
+    [
+      [15140, 4474],
+      [32, -49],
+      [69, -50],
+      [21, -63],
+      [56, -37],
+      [67, 5],
+      [169, -76],
+      [119, -23],
+      [-34, -52],
+      [-77, -1],
+      [-73, -18],
+      [-115, 8],
+      [-96, -74],
+      [-70, -9],
+      [-44, 33],
+      [8, 34],
+      [-28, 37],
+      [8, 72],
+      [29, 18],
+      [-10, 51],
+      [-52, 18],
+      [-23, 62],
+      [18, 30],
+      [-25, 72],
+      [51, 12]
+    ],
+    [
+      [14291, 4874],
+      [88, -16],
+      [-30, -160],
+      [53, -44],
+      [-25, -19],
+      [-127, -24],
+      [-93, 116],
+      [38, 75],
+      [13, 54],
+      [41, 33],
+      [42, -15]
+    ],
+    [
+      [14283, 5156],
+      [7, -41],
+      [42, -26],
+      [-25, -60],
+      [-85, -46],
+      [-52, -49],
+      [-128, -63],
+      [-66, 61],
+      [-59, 6],
+      [-19, 30],
+      [39, 86],
+      [44, 22],
+      [36, -11],
+      [67, -57],
+      [57, -14],
+      [20, 50],
+      [54, 36],
+      [68, 76]
+    ],
+    [
+      [15258, 5319],
+      [45, -37],
+      [-20, -42],
+      [0, -55],
+      [-27, -32],
+      [37, -24],
+      [-59, -67],
+      [-60, 52],
+      [33, 106],
+      [-3, 53],
+      [54, 46]
+    ],
+    [
+      [14670, 5414],
+      [42, -65],
+      [44, -44],
+      [-59, -40],
+      [-76, 1],
+      [-35, 51],
+      [18, 57],
+      [66, 40]
+    ],
+    [
+      [14823, 5629],
+      [57, -21],
+      [34, 16],
+      [54, -14],
+      [71, -71],
+      [-40, -29],
+      [-4, -68],
+      [21, -34],
+      [87, -23],
+      [19, 35],
+      [-8, 78],
+      [39, 5],
+      [25, -47],
+      [36, -22],
+      [-36, -41],
+      [-6, -175],
+      [-16, -35],
+      [-58, -27],
+      [-15, -46],
+      [-66, -89],
+      [-46, -34],
+      [-42, -59],
+      [-74, -16],
+      [-63, 34],
+      [7, 87],
+      [53, 129],
+      [5, 35],
+      [-40, 52],
+      [23, 68],
+      [-32, 33],
+      [-34, 105],
+      [-6, 118],
+      [25, 68],
+      [30, -12]
+    ],
+    [
+      [14672, 6715],
+      [24, -50],
+      [52, -154],
+      [110, -73],
+      [-70, -50],
+      [-46, -10],
+      [20, -62],
+      [-28, -11],
+      [-72, 133],
+      [-12, 94],
+      [-28, 45],
+      [23, 53],
+      [-23, 82],
+      [50, 3]
+    ],
+    [
+      [14556, 10240],
+      [61, -29],
+      [43, -101],
+      [-49, -55],
+      [63, -52],
+      [-5, -100],
+      [85, -79],
+      [38, -82],
+      [51, -52],
+      [83, -34],
+      [45, -73],
+      [134, -79],
+      [58, -81],
+      [5, -83],
+      [78, 8],
+      [10, -53],
+      [50, -68],
+      [15, -42],
+      [57, -41],
+      [19, -62],
+      [57, -67],
+      [58, -99],
+      [59, -4],
+      [25, -26],
+      [109, -61],
+      [72, 7],
+      [40, -40],
+      [33, -59],
+      [85, -56],
+      [85, -42],
+      [40, 2],
+      [26, -34],
+      [64, -29],
+      [25, -46],
+      [50, -35],
+      [47, 7],
+      [114, -42],
+      [6, -79],
+      [64, -53],
+      [28, -47],
+      [32, -108],
+      [58, -10],
+      [39, -27],
+      [43, -63],
+      [73, -6],
+      [6, -52],
+      [-27, -58],
+      [36, -14],
+      [17, -58],
+      [-3, -58],
+      [42, -22],
+      [71, -66],
+      [-6, -94],
+      [16, -105],
+      [-15, -31],
+      [31, -59],
+      [-32, -20],
+      [66, -65],
+      [-19, -66],
+      [54, -78],
+      [-25, -39],
+      [28, -78],
+      [-23, -78],
+      [18, -60],
+      [-40, -45],
+      [-6, -55],
+      [41, -42],
+      [-21, -22],
+      [27, -50],
+      [5, -66],
+      [-37, -25],
+      [-86, 39],
+      [-65, -12],
+      [-32, -53],
+      [40, -25],
+      [6, -70],
+      [-42, -64],
+      [-48, -46],
+      [51, -58],
+      [112, -52],
+      [69, -118],
+      [-81, -62],
+      [47, -27],
+      [8, -106],
+      [64, -70],
+      [47, -26],
+      [8, -146],
+      [29, -40],
+      [44, 12],
+      [63, -20],
+      [10, -74],
+      [37, -23],
+      [54, 2],
+      [83, -85],
+      [31, -19],
+      [82, 5],
+      [51, -107],
+      [-24, -48],
+      [-12, -74],
+      [-42, -84],
+      [106, -114],
+      [-30, -84],
+      [76, -158],
+      [44, -12],
+      [-4, -52],
+      [-25, -24],
+      [67, -95],
+      [-45, -58],
+      [6, -61],
+      [131, 53],
+      [64, -34],
+      [-19, -95],
+      [-48, -53],
+      [14, -73],
+      [-13, -29],
+      [103, -24],
+      [33, -31],
+      [-1, -77],
+      [-32, -17],
+      [18, -50],
+      [-18, -26],
+      [8, -68],
+      [38, 12],
+      [68, -53],
+      [1, -57],
+      [59, -18],
+      [-23, -66],
+      [-8, -91],
+      [-99, -61],
+      [-37, -51],
+      [9, -34],
+      [-63, -72],
+      [-67, -9],
+      [-40, 33],
+      [-99, -23],
+      [-41, -85],
+      [41, -88],
+      [-68, -88],
+      [-119, -59],
+      [12, -149],
+      [-93, -41],
+      [-68, -69],
+      [-57, -35],
+      [-8, -30],
+      [38, -34],
+      [-61, -69],
+      [-72, -50],
+      [-38, -116],
+      [-68, -51],
+      [10, -53],
+      [-73, -51],
+      [-53, -17],
+      [6, -40],
+      [-30, -36],
+      [-89, -25],
+      [-68, -39],
+      [-8, -60],
+      [-39, -54],
+      [-149, 28],
+      [-43, -65],
+      [-6, -86],
+      [28, -68],
+      [-116, -81],
+      [-106, -8],
+      [-85, -58],
+      [-17, 6],
+      [-89, -71],
+      [-120, -140],
+      [-24, -8],
+      [10, -59],
+      [-27, -65],
+      [63, -21],
+      [23, -46],
+      [-13, -37],
+      [29, -39],
+      [6, -85],
+      [-44, -39],
+      [19, -28],
+      [-21, -41],
+      [-36, -6],
+      [-40, -80],
+      [-38, -28],
+      [-93, -243],
+      [-49, -114],
+      [-108, -63],
+      [-25, -83],
+      [-45, -35],
+      [-31, -96],
+      [-45, -56],
+      [-59, -98],
+      [-42, -37],
+      [-43, 65],
+      [-29, 94],
+      [19, 43],
+      [-30, 88],
+      [6, 91],
+      [-62, 35],
+      [-20, 33],
+      [85, 80],
+      [7, 124],
+      [43, 106],
+      [-37, 63],
+      [-42, 39],
+      [2, 46],
+      [-32, 41],
+      [-16, 117],
+      [32, 32],
+      [-45, 62],
+      [-22, 65],
+      [24, 48],
+      [-63, 15],
+      [7, 49],
+      [-19, 84],
+      [32, 9],
+      [28, 84],
+      [146, -10],
+      [10, 40],
+      [64, 1],
+      [39, 48],
+      [40, 100],
+      [52, 2],
+      [41, 43],
+      [-20, 43],
+      [-53, 1],
+      [-27, -25],
+      [-45, 40],
+      [94, 39],
+      [30, 48],
+      [94, -10],
+      [112, 54],
+      [6, 96],
+      [-86, 24],
+      [25, 64],
+      [46, 61],
+      [-28, 57],
+      [-60, 15],
+      [-37, 51],
+      [102, 26],
+      [94, 97],
+      [4, 85],
+      [22, 22],
+      [11, 69],
+      [-75, 85],
+      [-19, 142],
+      [-51, 42],
+      [61, 97],
+      [121, -19],
+      [-43, 89],
+      [7, 67],
+      [-62, -4],
+      [-26, 24],
+      [-2, 66],
+      [28, 11],
+      [23, 133],
+      [0, 63],
+      [132, 16],
+      [108, 0],
+      [27, 46],
+      [56, -6],
+      [51, -66],
+      [15, 67],
+      [-55, 9],
+      [-66, 30],
+      [-92, 23],
+      [-53, -6],
+      [-20, 50],
+      [65, 58],
+      [26, 63],
+      [-102, -54],
+      [-57, -54],
+      [-40, -14],
+      [-85, -64],
+      [25, -30],
+      [-57, -64],
+      [-63, 18],
+      [-139, 68],
+      [17, 30],
+      [-52, 48],
+      [65, 59],
+      [-9, 48],
+      [40, 66],
+      [48, 38],
+      [-91, 23],
+      [-146, -10],
+      [-28, 29],
+      [39, 45],
+      [89, -9],
+      [183, 36],
+      [-3, 34],
+      [50, 8],
+      [10, 41],
+      [48, 11],
+      [-26, 56],
+      [80, 16],
+      [-118, 44],
+      [59, 65],
+      [-25, 10],
+      [-69, -40],
+      [-81, 52],
+      [-46, 68],
+      [1, 65],
+      [41, 27],
+      [83, 20],
+      [12, 43],
+      [72, 44],
+      [7, 30],
+      [-45, 46],
+      [-87, 2],
+      [-60, -29],
+      [-29, -58],
+      [-42, -11],
+      [-65, 23],
+      [-38, -11],
+      [-39, 35],
+      [-33, 88],
+      [43, 26],
+      [46, 52],
+      [76, -5],
+      [102, 15],
+      [2, 27],
+      [-199, 21],
+      [-44, 35],
+      [25, 91],
+      [27, 47],
+      [59, -27],
+      [45, 1],
+      [29, -28],
+      [55, -7],
+      [135, -78],
+      [34, 24],
+      [-197, 66],
+      [-7, 28],
+      [-67, 49],
+      [18, 102],
+      [112, 45],
+      [115, 14],
+      [-47, 33],
+      [-109, 17],
+      [-35, 50],
+      [54, 62],
+      [29, 83],
+      [-5, 46],
+      [73, 90],
+      [-13, 41],
+      [-63, 13],
+      [-15, 24],
+      [85, 23],
+      [46, 81],
+      [-82, -27],
+      [-57, 89],
+      [-6, 68],
+      [-28, 83],
+      [-82, 62],
+      [15, 45],
+      [7, 104],
+      [-40, 45],
+      [31, 31],
+      [-24, 44],
+      [10, 41],
+      [-48, 88],
+      [28, 76],
+      [-45, 70],
+      [-47, -2],
+      [-32, 60],
+      [-83, 28],
+      [-20, 28],
+      [23, 65],
+      [-66, 14],
+      [-15, 83],
+      [4, 82],
+      [-40, 5],
+      [-20, 65],
+      [-62, 50],
+      [-8, 37],
+      [33, 22],
+      [-76, 110],
+      [-64, 66],
+      [18, 50],
+      [-79, 87],
+      [-82, 44],
+      [-64, 50],
+      [-8, 65],
+      [-79, -3],
+      [-32, 62],
+      [24, 47],
+      [11, 89],
+      [-18, 157],
+      [10, 46],
+      [-26, 35],
+      [-8, 91],
+      [-58, 62],
+      [-9, -78],
+      [35, -99],
+      [-2, -55],
+      [-81, -132],
+      [-25, -112],
+      [41, -159],
+      [-4, -59],
+      [-61, -72],
+      [-13, -73],
+      [9, -54],
+      [-69, 19],
+      [-13, 50],
+      [36, 44],
+      [31, 77],
+      [-25, 56],
+      [-86, 39],
+      [-24, -3],
+      [-18, 78],
+      [-52, 50],
+      [22, 31],
+      [-17, 36],
+      [45, 38],
+      [-1, 80],
+      [28, 75],
+      [-61, 52],
+      [-20, 118],
+      [5, 43],
+      [-31, 52],
+      [40, 45],
+      [6, 60],
+      [59, 69],
+      [-54, 131],
+      [-50, 76],
+      [-145, 165],
+      [0, 37],
+      [-67, 93],
+      [4, 115],
+      [44, 68],
+      [-73, -15],
+      [-7, 99],
+      [-114, 145],
+      [-12, 83],
+      [-27, 57],
+      [-41, 43],
+      [57, 111],
+      [90, 19],
+      [40, -39],
+      [29, 33],
+      [-36, 30],
+      [-118, 1],
+      [-84, -64],
+      [-65, 17],
+      [-52, 123],
+      [9, 24],
+      [-65, 186]
+    ],
+    [
+      [13555, 10038],
+      [110, 9],
+      [-29, 39],
+      [20, 47],
+      [78, 17],
+      [-10, 105],
+      [23, 86],
+      [1, 3],
+      [25, 96],
+      [156, -39],
+      [-4, 23],
+      [30, 21],
+      [109, 21],
+      [32, 20],
+      [53, -45],
+      [22, -84],
+      [72, -67],
+      [51, -31],
+      [51, 8],
+      [116, -21],
+      [31, -25],
+      [64, 19]
+    ],
+    [
+      [12170, 15353],
+      [-21, -22],
+      [-92, -41],
+      [-72, -1],
+      [-33, -45],
+      [-70, -12],
+      [-20, 75],
+      [13, 34],
+      [-63, 15],
+      [-49, 40],
+      [-75, 11],
+      [-65, 83],
+      [-54, -10],
+      [-52, 35],
+      [-93, -31],
+      [-14, 25],
+      [-69, -44],
+      [5, -68],
+      [-22, -40],
+      [26, -102],
+      [-12, -115],
+      [34, -46],
+      [20, -69],
+      [-39, -77]
+    ],
+    [
+      [11353, 14948],
+      [-22, -24],
+      [19, -52],
+      [131, -39],
+      [-36, -66],
+      [-62, -72],
+      [13, -45],
+      [63, -50],
+      [97, -44],
+      [-19, -32],
+      [-68, 1],
+      [-13, -43],
+      [2, -95],
+      [-29, -6],
+      [0, -75],
+      [-44, -60],
+      [-36, -85],
+      [-12, -68],
+      [-45, -30],
+      [-50, -2],
+      [4, -40],
+      [40, -83],
+      [-36, -25]
+    ],
+    [
+      [11250, 13913],
+      [-118, 80],
+      [-23, 92],
+      [-55, 64],
+      [-44, -23],
+      [-38, 21],
+      [-11, 51],
+      [-65, 13],
+      [-77, 51],
+      [-49, -3],
+      [-101, -29],
+      [-80, 4],
+      [-112, 23],
+      [-67, -29],
+      [-28, -30],
+      [-172, 31],
+      [-1, 32],
+      [-63, 6],
+      [3, 40],
+      [42, 48],
+      [13, 60],
+      [-32, 87],
+      [-59, 65],
+      [-79, 39],
+      [-35, 31],
+      [-17, 17],
+      [-41, 63],
+      [52, 21],
+      [-32, 114],
+      [19, 45],
+      [-44, 137],
+      [-21, 35],
+      [-14, 93],
+      [-43, 45],
+      [-137, 34],
+      [3, 67],
+      [-39, 26],
+      [-95, 160],
+      [-99, 102],
+      [-65, 83],
+      [37, 24],
+      [5, 46],
+      [-45, 89],
+      [-108, -4],
+      [-141, -195],
+      [-70, -39],
+      [-17, -56],
+      [-83, -12],
+      [-24, -52],
+      [-10, -66],
+      [-107, -5],
+      [-79, -54],
+      [-35, -63],
+      [-53, -21],
+      [16, -60],
+      [-49, -13],
+      [-68, 25]
+    ],
+    [
+      [8595, 15223],
+      [-1, 1],
+      [-8, 8]
+    ],
+    [
+      [8586, 15232],
+      [-39, 75],
+      [-36, 9],
+      [-59, 52],
+      [2, 72],
+      [-45, 40],
+      [-75, 33],
+      [-28, 7],
+      [-83, -33],
+      [-35, 28],
+      [-26, 21],
+      [-46, 19],
+      [-83, 10],
+      [-95, 70],
+      [-78, 73],
+      [0, 38],
+      [60, 47],
+      [70, 35],
+      [12, 34],
+      [-39, 65],
+      [30, 82],
+      [-14, 39],
+      [-57, 41],
+      [16, 37],
+      [-10, 70],
+      [14, 48],
+      [-10, 63],
+      [-73, 111],
+      [-84, 171],
+      [57, 103],
+      [-94, 36],
+      [-82, 47],
+      [-30, 62],
+      [-106, 60],
+      [-46, 10],
+      [-33, 39],
+      [10, 65],
+      [-107, 49],
+      [-58, 37],
+      [-13, 29],
+      [7, 84],
+      [-40, 35],
+      [-46, -1],
+      [-94, 41],
+      [-41, -52],
+      [30, -88],
+      [-37, -24],
+      [-3, -49],
+      [-43, -50],
+      [-93, -19],
+      [-78, 26],
+      [-41, 61],
+      [-50, 5],
+      [-71, 74],
+      [-32, -53],
+      [-147, -34],
+      [-101, -99]
+    ],
+    [
+      [6393, 16983],
+      [-61, 23],
+      [-98, 172],
+      [-57, 22],
+      [28, 54],
+      [48, 138],
+      [-92, 25],
+      [-90, 98],
+      [36, 59],
+      [100, 3],
+      [-16, 27],
+      [-18, 98],
+      [-70, 74],
+      [-43, 92],
+      [92, 44],
+      [67, 9],
+      [24, 67],
+      [-42, 75],
+      [-54, 7],
+      [-48, 35],
+      [-11, 77]
+    ],
+    [
+      [6088, 18182],
+      [25, 17],
+      [60, -17],
+      [27, 35],
+      [64, -16],
+      [103, 3],
+      [50, 20],
+      [46, -9],
+      [53, -35],
+      [52, -6],
+      [24, -37],
+      [126, 4],
+      [74, -32],
+      [72, -55],
+      [16, -58],
+      [82, -69],
+      [53, 64],
+      [53, -7],
+      [36, 25],
+      [46, -14],
+      [40, 37],
+      [-21, 91],
+      [76, 64],
+      [89, 3],
+      [21, 38],
+      [80, 31],
+      [69, 6],
+      [2, 47],
+      [-35, 52],
+      [5, 34],
+      [106, 62],
+      [97, -20],
+      [43, 25],
+      [50, 74],
+      [41, 28],
+      [23, 48],
+      [78, 13],
+      [47, -33],
+      [82, 37],
+      [80, -15],
+      [25, -26],
+      [56, 19],
+      [93, -38],
+      [37, -1],
+      [57, 32],
+      [42, -11],
+      [49, 37],
+      [94, 12],
+      [35, -17],
+      [12, -2],
+      [45, -22],
+      [39, 13],
+      [62, -40],
+      [44, 7],
+      [-9, 77],
+      [28, 43],
+      [50, 16],
+      [-25, 34],
+      [30, 29],
+      [-20, 49],
+      [24, 15],
+      [-10, 66],
+      [-66, 70],
+      [-32, 59],
+      [-1, 89],
+      [-46, 52]
+    ],
+    [
+      [8736, 19179],
+      [86, -6],
+      [19, -21],
+      [79, -18],
+      [56, 2],
+      [34, 73],
+      [155, 4],
+      [150, -45],
+      [44, 18],
+      [125, -91],
+      [58, 0],
+      [20, 51],
+      [56, 20],
+      [20, 67],
+      [60, -8],
+      [181, 2],
+      [27, -20],
+      [80, 12],
+      [189, -11]
+    ],
+    [
+      [7643, 23405],
+      [-5, -47],
+      [-48, -97],
+      [26, -55],
+      [-28, -44],
+      [-110, -4],
+      [4, -61],
+      [-90, -52],
+      [-24, -28],
+      [-105, -73],
+      [-33, -55],
+      [-79, 19],
+      [-252, -95],
+      [-34, -7],
+      [-64, -80],
+      [-138, -33],
+      [-191, -37],
+      [-43, -97],
+      [3, -60],
+      [-21, -37],
+      [-3, -61],
+      [20, -104],
+      [-17, -58],
+      [6, -93],
+      [30, -66],
+      [70, -15],
+      [14, -61],
+      [57, 4],
+      [91, -36],
+      [81, 19],
+      [113, -6],
+      [47, -64],
+      [-13, -107],
+      [10, -57],
+      [-65, -14],
+      [-12, -96],
+      [22, -42],
+      [-43, -17],
+      [-20, -37],
+      [21, -58],
+      [75, -24],
+      [28, -38],
+      [-32, -29],
+      [20, -52],
+      [62, 70],
+      [41, 28],
+      [-4, 32],
+      [109, 13],
+      [124, 55],
+      [84, -22],
+      [37, 15],
+      [120, 86],
+      [11, 31],
+      [62, 27],
+      [68, -27],
+      [19, -28],
+      [93, 40],
+      [39, -18],
+      [76, 42],
+      [37, 50],
+      [55, 25],
+      [135, -3],
+      [53, 34],
+      [18, -53],
+      [45, 2],
+      [67, -96],
+      [-33, -116],
+      [-35, -30],
+      [14, -78],
+      [89, -50],
+      [52, 15],
+      [70, -23],
+      [117, -87],
+      [-1, -37],
+      [45, -57],
+      [-23, -34],
+      [77, -119],
+      [5, -53],
+      [-65, -37],
+      [22, -68]
+    ],
+    [
+      [8596, 20879],
+      [13, -65],
+      [4, -6],
+      [31, -2],
+      [83, -148],
+      [15, -71],
+      [88, -41],
+      [-3, -31],
+      [-80, -83],
+      [9, -50],
+      [-57, -12],
+      [34, -64],
+      [-56, -99],
+      [43, -18],
+      [19, -53],
+      [-21, -60],
+      [56, -69],
+      [-13, -32],
+      [40, -40],
+      [-11, -43],
+      [-66, -11],
+      [-7, -66],
+      [-31, -22],
+      [-5, -15],
+      [19, -81],
+      [-44, -79],
+      [-87, -62],
+      [-32, -40],
+      [39, -25],
+      [-14, -108],
+      [48, -50],
+      [-31, -29],
+      [39, -62],
+      [118, -63]
+    ],
+    [
+      [6088, 18182],
+      [-70, 109],
+      [47, 44],
+      [-42, 31],
+      [-37, 65],
+      [-55, 24],
+      [-26, 39],
+      [-51, 23],
+      [-18, 41],
+      [-46, 13],
+      [-37, -23],
+      [-53, 6],
+      [-34, 65],
+      [-26, 4],
+      [-1, 2],
+      [-53, 91],
+      [-24, 76],
+      [19, 30],
+      [110, 22],
+      [-13, 98],
+      [-32, 17],
+      [-35, 86],
+      [-114, 85],
+      [-13, 3],
+      [-37, 83],
+      [-70, 30],
+      [-70, 57],
+      [-71, 83],
+      [19, 42],
+      [-3, 68],
+      [-31, 22],
+      [4, 79],
+      [-48, 82],
+      [-93, 240],
+      [78, 51],
+      [-39, 136],
+      [-67, 15],
+      [-22, 54],
+      [-55, 65],
+      [-25, 72],
+      [-53, 70],
+      [20, 28],
+      [-2, 59],
+      [-98, 41],
+      [-28, 115],
+      [-57, 34],
+      [-4, 86],
+      [-26, 83],
+      [-46, 17],
+      [-57, 84],
+      [-5, 75],
+      [-56, -13],
+      [-41, 66],
+      [-44, 17],
+      [-49, 80],
+      [-30, 99],
+      [-45, 53],
+      [-67, 11],
+      [-4, 54],
+      [-27, 16],
+      [-90, -26],
+      [-106, 8],
+      [23, 42],
+      [8, 7],
+      [-36, 70],
+      [16, 57],
+      [27, 11]
+    ],
+    [
+      [10177, 27385],
+      [-85, -41],
+      [-44, -72],
+      [-70, -30],
+      [17, -43],
+      [-48, -14],
+      [2, -46],
+      [-49, -52],
+      [-68, -40],
+      [-53, -64],
+      [15, -57],
+      [-39, -16],
+      [-66, 44],
+      [-48, -16],
+      [2, -52],
+      [27, -9],
+      [39, -30],
+      [-38, -54],
+      [13, -88],
+      [-41, -107],
+      [-46, -31],
+      [3, -77],
+      [102, -68],
+      [20, -47],
+      [-25, -34],
+      [46, -44],
+      [59, -22],
+      [127, -20],
+      [60, 16],
+      [50, -15],
+      [133, 19],
+      [48, 21],
+      [55, -4],
+      [52, 23],
+      [29, -22],
+      [46, 37],
+      [71, 24],
+      [64, -53],
+      [65, -23],
+      [47, -37],
+      [61, -7],
+      [47, -33],
+      [113, 18],
+      [81, -50],
+      [-23, -56],
+      [-76, -81],
+      [-18, -85],
+      [-139, -67],
+      [-156, 30],
+      [-69, -50],
+      [-155, -40],
+      [-78, 30],
+      [-84, 2],
+      [-68, -48],
+      [-126, 15],
+      [-96, -11],
+      [-52, -20],
+      [-6, -5],
+      [-28, -5],
+      [-7, -11],
+      [-47, -43],
+      [83, -87],
+      [-11, -2],
+      [14, -107],
+      [95, -108],
+      [44, -25],
+      [-19, -88],
+      [100, -50],
+      [6, -73],
+      [-33, -27],
+      [11, -156],
+      [31, -18],
+      [122, 10],
+      [51, -15],
+      [31, -64],
+      [76, -66],
+      [67, -139],
+      [-5, -65],
+      [12, -88],
+      [25, -20],
+      [75, 8],
+      [54, -14],
+      [39, -52],
+      [179, -5],
+      [42, -43],
+      [145, 1],
+      [54, -17],
+      [29, -41],
+      [20, -125],
+      [30, -9],
+      [110, -127],
+      [30, -68],
+      [72, -73],
+      [-36, -29],
+      [74, -42],
+      [8, -54],
+      [43, -108],
+      [-11, -17],
+      [-98, 13],
+      [-73, 50],
+      [-33, -42],
+      [-44, -9],
+      [-53, -49],
+      [-69, -22],
+      [-44, 41],
+      [-88, -28],
+      [-72, -77],
+      [-54, -28],
+      [8, -28],
+      [-99, -57],
+      [-30, -42],
+      [-118, -12],
+      [-15, -8],
+      [-132, -37],
+      [-86, -11],
+      [-59, -20],
+      [-188, -9],
+      [-18, -37],
+      [39, -78],
+      [-131, -51],
+      [21, -54],
+      [1, -109],
+      [22, -27],
+      [44, -118],
+      [-8, -37],
+      [33, -72],
+      [2, -17],
+      [73, -61],
+      [12, -51],
+      [11, -13],
+      [-43, -46],
+      [-62, 15],
+      [-157, 0],
+      [-81, -34],
+      [-34, -33],
+      [28, -92],
+      [-45, -47],
+      [13, -112],
+      [52, -9],
+      [81, -73],
+      [63, 0],
+      [108, -48],
+      [71, 3],
+      [41, -31],
+      [93, 27],
+      [14, -50],
+      [85, -30],
+      [93, 37],
+      [38, -69],
+      [64, 12],
+      [57, -43],
+      [1, -69],
+      [-35, -22],
+      [11, -86],
+      [-95, -15],
+      [-31, 18],
+      [-80, -30],
+      [-36, -51],
+      [2, -45],
+      [-23, -49],
+      [-36, 0],
+      [30, -85],
+      [34, -24],
+      [42, -66],
+      [71, -14],
+      [17, -48],
+      [49, 39],
+      [14, -150],
+      [-32, -31],
+      [-57, 11],
+      [-50, -25],
+      [-59, -98],
+      [25, -162],
+      [45, -30],
+      [8, -78],
+      [45, -45],
+      [76, -142],
+      [-101, -57]
+    ],
+    [
+      [10448, 20644],
+      [-47, 38],
+      [-89, 42],
+      [-208, 146],
+      [-133, 19],
+      [-25, 30],
+      [-85, -45],
+      [-118, -10],
+      [-107, -74],
+      [-87, 29],
+      [-143, 19],
+      [-162, -8],
+      [-13, 30],
+      [-109, -58],
+      [-36, -68],
+      [-99, -32],
+      [-88, 56],
+      [-113, 115],
+      [-58, -31],
+      [-73, 29],
+      [-59, 8]
+    ],
+    [
+      [12885, 13273],
+      [125, -24],
+      [84, 6],
+      [17, -61],
+      [-77, -130],
+      [28, -58],
+      [-51, -72],
+      [-28, -81],
+      [19, -50],
+      [5, -68],
+      [-16, -58],
+      [-81, -10],
+      [-58, 48],
+      [-8, 78],
+      [-52, 34],
+      [-48, 62],
+      [45, 100],
+      [-43, 149],
+      [-53, 53],
+      [13, 41],
+      [50, 15],
+      [53, 39],
+      [76, -13]
+    ],
+    [
+      [14542, 10746],
+      [-5, -51],
+      [33, -57],
+      [-59, -65],
+      [-14, -56],
+      [22, -82],
+      [45, -6],
+      [56, -66],
+      [-53, -46],
+      [-11, -77]
+    ],
+    [
+      [13555, 10038],
+      [-9, 61],
+      [38, 58],
+      [14, 49],
+      [-74, 104],
+      [41, 36],
+      [-19, 57],
+      [12, 60],
+      [27, 26],
+      [-16, 63],
+      [9, 35],
+      [-30, 40],
+      [80, 70],
+      [-80, -2],
+      [-60, -21],
+      [-94, 148],
+      [24, 51],
+      [-48, 72],
+      [13, 44],
+      [35, 4],
+      [15, 68],
+      [37, -9],
+      [45, 39],
+      [-34, 98],
+      [-66, 58],
+      [51, 118],
+      [-68, 124],
+      [-6, 81],
+      [-37, 124],
+      [3, 38],
+      [-32, 57],
+      [47, 49],
+      [-18, 141],
+      [-43, 68],
+      [-51, 46],
+      [-158, 87],
+      [-7, 39],
+      [-37, 26],
+      [-6, 46],
+      [-53, 103],
+      [1, 43],
+      [113, 108],
+      [65, 159],
+      [7, 104],
+      [-8, 91],
+      [-59, 81],
+      [1, 31],
+      [42, 47],
+      [-44, 80],
+      [28, 41],
+      [-15, 69],
+      [14, 28],
+      [57, -4],
+      [35, 41],
+      [10, 48],
+      [50, 28],
+      [115, 3],
+      [70, -71],
+      [91, -24],
+      [110, 64]
+    ],
+    [
+      [13118, 13577],
+      [-18, -179],
+      [36, -82],
+      [-121, 28],
+      [-62, -7],
+      [-38, 24],
+      [-74, -18],
+      [-133, 10],
+      [-112, -36],
+      [-70, -36],
+      [-36, 22],
+      [-19, 105],
+      [-45, 91],
+      [8, 83],
+      [-66, -15],
+      [-61, 27],
+      [-41, -4],
+      [-61, 49],
+      [15, 47],
+      [-46, 62],
+      [29, 96],
+      [-37, 100],
+      [-9, 93],
+      [-39, 12],
+      [-23, 83],
+      [-50, 22],
+      [21, 156],
+      [-8, 80],
+      [-72, 54],
+      [32, 71],
+      [-54, 0],
+      [-10, -62],
+      [-25, -30],
+      [13, -65],
+      [-43, -71],
+      [35, -66],
+      [5, -52],
+      [-31, -54],
+      [-64, -16],
+      [-97, 168],
+      [-37, 33],
+      [8, 39],
+      [76, 133],
+      [6, 44],
+      [-28, 75],
+      [-41, 36],
+      [-147, 53],
+      [-72, 56],
+      [-10, 66],
+      [20, 43],
+      [-52, 45],
+      [-52, -11],
+      [-50, 14],
+      [-15, 55]
+    ],
+    [
+      [3504, 18063],
+      [26, -22],
+      [86, -25],
+      [83, -5],
+      [102, 28],
+      [16, -67],
+      [-15, -52],
+      [26, -47],
+      [-26, -34],
+      [23, -111],
+      [-55, -56],
+      [-23, -57],
+      [-56, -19],
+      [-95, 7],
+      [-163, 122],
+      [-124, 71],
+      [-48, 50],
+      [-112, 157],
+      [100, 25],
+      [73, -4],
+      [112, 42],
+      [51, 35],
+      [19, -38]
+    ],
+    [
+      [3390, 19715],
+      [-137, -99],
+      [-24, 81],
+      [53, 9],
+      [32, 54],
+      [76, 38],
+      [23, -50],
+      [-23, -33]
+    ],
+    [
+      [3704, 19764],
+      [-37, -95],
+      [-67, 25],
+      [-64, -7],
+      [-13, 43],
+      [67, 8],
+      [79, 102],
+      [35, -76]
+    ],
+    [
+      [3855, 19976],
+      [48, -33],
+      [-19, -50],
+      [-14, -100],
+      [-17, -11],
+      [-129, -11],
+      [-9, 42],
+      [80, 27],
+      [13, 78],
+      [-27, 38],
+      [74, 20]
+    ],
+    [
+      [3704, 20004],
+      [43, -10],
+      [-77, -56],
+      [-55, -25],
+      [26, -50],
+      [-100, -53],
+      [-39, -48],
+      [-28, -91],
+      [-41, 9],
+      [-11, 50],
+      [16, 42],
+      [-23, 45],
+      [98, 79],
+      [25, 89],
+      [67, -17],
+      [48, 40],
+      [51, -4]
+    ],
+    [
+      [3446, 19955],
+      [-32, -18],
+      [-115, 15],
+      [25, 44],
+      [95, 9],
+      [55, 56],
+      [114, 8],
+      [-26, -41],
+      [-66, -27],
+      [-50, -46]
+    ],
+    [
+      [3074, 20118],
+      [64, -48],
+      [59, -4],
+      [82, 25],
+      [14, -60],
+      [-55, -40],
+      [-37, -130],
+      [51, -96],
+      [-49, -2],
+      [-89, 32],
+      [-53, 40],
+      [-27, 70],
+      [-2, 89],
+      [-46, 77],
+      [-42, 99],
+      [11, 22],
+      [78, -18],
+      [41, -56]
+    ],
+    [
+      [2321, 20379],
+      [44, -73],
+      [9, -54],
+      [104, -180],
+      [25, -24],
+      [31, -86],
+      [62, -67],
+      [-54, -6],
+      [-51, 118],
+      [-69, 91],
+      [-50, 120],
+      [-33, 22],
+      [-7, 44],
+      [-52, 80],
+      [41, 15]
+    ],
+    [
+      [1843, 20468],
+      [54, -60],
+      [41, -103],
+      [15, -70],
+      [78, -105],
+      [45, -125],
+      [-27, -62],
+      [-33, 85],
+      [12, 26],
+      [-54, 51],
+      [-91, 126],
+      [-96, 145],
+      [19, 76],
+      [37, 16]
+    ],
+    [
+      [1982, 20504],
+      [59, 12],
+      [106, -7],
+      [32, -24],
+      [58, -98],
+      [50, -40],
+      [43, -90],
+      [-47, -29],
+      [-35, -47],
+      [1, -49],
+      [33, -86],
+      [44, -62],
+      [-74, 13],
+      [-64, 100],
+      [-75, 76],
+      [-15, 105],
+      [-34, 39],
+      [-127, 89],
+      [20, 44],
+      [-34, 73],
+      [59, -19]
+    ],
+    [
+      [2426, 20637],
+      [42, -46],
+      [51, 2],
+      [13, -70],
+      [25, -35],
+      [-91, -43],
+      [-35, -71],
+      [-127, 52],
+      [-43, 85],
+      [-2, 31],
+      [-59, 65],
+      [21, 27],
+      [205, 3]
+    ],
+    [
+      [2691, 20669],
+      [36, -4],
+      [-5, -94],
+      [23, -83],
+      [93, -101],
+      [-14, -18],
+      [-189, -50],
+      [-137, -2],
+      [-19, 20],
+      [-9, 94],
+      [16, 21],
+      [84, 38],
+      [-39, 54],
+      [-7, 53],
+      [-62, 6],
+      [-39, 46],
+      [69, 48],
+      [13, 42],
+      [85, 16],
+      [39, 21],
+      [51, -26],
+      [11, -81]
+    ],
+    [
+      [2776, 20915],
+      [3, -38],
+      [31, -60],
+      [23, -5],
+      [27, 1],
+      [107, -190],
+      [26, -116],
+      [-37, -22],
+      [-62, -70],
+      [23, -102],
+      [-43, -13],
+      [-23, 94],
+      [-95, 97],
+      [-18, 68],
+      [3, 74],
+      [-22, 59],
+      [-44, 75],
+      [-38, 110],
+      [63, 41],
+      [76, -3]
+    ],
+    [
+      [1608, 21141],
+      [-7, -28],
+      [4, -20],
+      [5, -7],
+      [-23, -66],
+      [83, -102],
+      [-14, -45],
+      [-70, -38],
+      [-91, -18],
+      [-42, 14],
+      [-25, 78],
+      [9, 130],
+      [-24, 106],
+      [34, -5],
+      [21, 52],
+      [46, 22],
+      [59, -62],
+      [35, -11]
+    ],
+    [
+      [2262, 21102],
+      [-84, -19],
+      [14, -75],
+      [-54, -35],
+      [-67, 0],
+      [7, 124],
+      [70, 124],
+      [47, 58],
+      [30, -5],
+      [10, -88],
+      [27, -84]
+    ],
+    [
+      [6393, 16983],
+      [43, -37],
+      [27, -54],
+      [43, 0],
+      [33, -38],
+      [-26, -50],
+      [30, -27],
+      [-36, -57],
+      [75, -62],
+      [-21, -47],
+      [-99, -62],
+      [38, -50],
+      [2, -46],
+      [30, -27],
+      [-25, -54],
+      [-75, -48],
+      [-54, -70],
+      [41, -89],
+      [46, -67],
+      [15, -3],
+      [53, -32],
+      [-22, -59],
+      [35, -39],
+      [-8, -53],
+      [-32, -21],
+      [20, -88],
+      [-18, -96],
+      [-66, -22],
+      [-27, -53],
+      [-74, -10],
+      [-35, -46],
+      [17, -47],
+      [-24, -54],
+      [12, -40],
+      [-38, -35],
+      [38, -28],
+      [3, -40],
+      [33, -36],
+      [5, -70],
+      [-44, -27],
+      [4, -40],
+      [-64, -55],
+      [-17, -77],
+      [-34, 1],
+      [-32, -81],
+      [-52, -2],
+      [-26, 62],
+      [-59, 4],
+      [-21, 54],
+      [-39, 23],
+      [-62, -9],
+      [-27, 46],
+      [-69, 31],
+      [-54, 62]
+    ],
+    [
+      [5756, 15218],
+      [7, 43],
+      [-23, 65],
+      [-39, 50],
+      [48, 86],
+      [65, -80],
+      [23, 32],
+      [-57, 42],
+      [32, 51],
+      [-21, 44],
+      [-44, 9],
+      [-13, 52],
+      [-31, 12],
+      [-20, 51],
+      [27, 56],
+      [-22, 36],
+      [-129, 70],
+      [30, 76],
+      [-29, 50],
+      [20, 22],
+      [-24, 59],
+      [8, 30],
+      [-100, 146],
+      [-21, 42],
+      [71, 3],
+      [55, 52],
+      [-17, 110],
+      [-88, 123],
+      [8, 36],
+      [-61, 82],
+      [21, 34],
+      [-32, 49],
+      [-221, 14],
+      [-5, 99],
+      [48, -11],
+      [97, 16],
+      [27, 45],
+      [8, 60],
+      [-115, 30],
+      [-24, 60],
+      [-61, 92],
+      [-152, 155],
+      [33, 56],
+      [-52, 180],
+      [-51, 56],
+      [-179, 119],
+      [108, 15],
+      [0, 69],
+      [-118, 95],
+      [26, 56],
+      [-26, 40],
+      [-91, 11],
+      [-29, -40],
+      [-44, 24],
+      [-24, -34],
+      [-89, 3],
+      [19, 57],
+      [-13, 43],
+      [39, 93],
+      [-9, 82],
+      [-23, 22],
+      [86, 89],
+      [-9, 52],
+      [-82, 20],
+      [17, 87],
+      [-13, 31],
+      [14, 86],
+      [42, 112],
+      [-34, 62],
+      [-2, 81],
+      [51, 82],
+      [-59, -12],
+      [-23, -115],
+      [21, -140],
+      [-9, -29],
+      [-66, -48],
+      [16, -36],
+      [-78, -40],
+      [-53, -69],
+      [-3, -109],
+      [15, -63],
+      [66, -101],
+      [-40, -74],
+      [-36, -24],
+      [7, -41],
+      [-49, -29],
+      [18, -31],
+      [-46, -29],
+      [-27, 46],
+      [-45, 29],
+      [-68, 11],
+      [-87, 65],
+      [-166, 87],
+      [-88, -8],
+      [-19, 46],
+      [-48, 27],
+      [-42, -5],
+      [-50, 45],
+      [-20, 106],
+      [-35, 112],
+      [-34, 25],
+      [-61, 4],
+      [-23, 46],
+      [-177, 237],
+      [-108, 129],
+      [8, 81],
+      [31, 37],
+      [64, 34],
+      [77, 9],
+      [92, -52],
+      [39, 6],
+      [28, -59],
+      [58, -46],
+      [-5, -63],
+      [78, -31],
+      [68, -11],
+      [74, -31],
+      [4, -44],
+      [86, -62],
+      [52, -21],
+      [79, -8],
+      [87, 49],
+      [112, 37],
+      [94, 74],
+      [-43, 14],
+      [-77, -41],
+      [-54, 28],
+      [-64, -20],
+      [-106, 28],
+      [-64, -16],
+      [-67, 49],
+      [-39, 107],
+      [-46, 44],
+      [-50, 9],
+      [-83, 76],
+      [-39, 75],
+      [22, 63],
+      [45, 40],
+      [15, 46],
+      [44, 18],
+      [39, -27],
+      [98, -4],
+      [13, -49],
+      [56, -39],
+      [47, -10],
+      [43, -34],
+      [52, -10],
+      [52, 16],
+      [77, -30],
+      [74, -46],
+      [71, -7],
+      [75, -52],
+      [34, 32],
+      [2, 48],
+      [-35, 6],
+      [-50, -34],
+      [-93, 19],
+      [18, 45],
+      [-99, 40],
+      [-45, 39],
+      [-181, 96],
+      [-44, 47],
+      [-124, 59],
+      [13, 33],
+      [176, 105],
+      [-86, -21],
+      [-86, -8],
+      [-39, 32],
+      [3, 98],
+      [47, 26],
+      [114, 12],
+      [28, 34],
+      [-14, 55],
+      [33, 53],
+      [-34, 80],
+      [-102, 30],
+      [-58, 28],
+      [-16, 29],
+      [-73, 18],
+      [-44, -12],
+      [-76, 7],
+      [-112, -36],
+      [-58, -30],
+      [-42, 14],
+      [-14, 69],
+      [-45, -8],
+      [-38, 110],
+      [-67, 46],
+      [-74, -3],
+      [15, -103],
+      [-76, 46],
+      [-30, 45],
+      [-28, 91],
+      [-31, 32],
+      [-2, 62],
+      [66, -4],
+      [28, 65],
+      [-22, 115],
+      [-124, 215],
+      [-45, -5],
+      [-20, 32],
+      [20, 18],
+      [-34, 13],
+      [-2, 41],
+      [-82, 3],
+      [-124, -35],
+      [-34, -76],
+      [55, -49],
+      [-89, -15],
+      [-23, -48],
+      [-71, -44],
+      [-55, -16],
+      [-162, 5],
+      [-55, -55],
+      [-108, -57],
+      [-59, 9],
+      [11, 144],
+      [33, 88],
+      [52, 69],
+      [7, 75],
+      [85, 42],
+      [51, 65],
+      [-26, 56],
+      [64, 6],
+      [22, 24],
+      [-44, 167],
+      [-61, 35],
+      [-49, -104],
+      [-53, -62],
+      [-29, -63],
+      [8, -92],
+      [-20, -124],
+      [-88, -106],
+      [-86, -81],
+      [-49, -30],
+      [-67, -165],
+      [-111, 35],
+      [-40, 38],
+      [-139, 69],
+      [-31, 24],
+      [67, 121],
+      [114, 37],
+      [92, 68],
+      [-19, 81],
+      [-73, 85],
+      [50, 42],
+      [-25, 0],
+      [-16, 12],
+      [3, 23],
+      [6, 13],
+      [-13, 15],
+      [-22, 5],
+      [-60, 69],
+      [-25, 52],
+      [-96, -60],
+      [-41, 74],
+      [22, 71],
+      [-90, 123],
+      [-46, 19],
+      [-71, 107],
+      [-38, 5],
+      [88, -114],
+      [35, -29],
+      [-1, -42],
+      [92, -60],
+      [-18, -27],
+      [-8, -88],
+      [55, -122],
+      [9, -52],
+      [-37, -51],
+      [-4, -158],
+      [34, -47],
+      [-23, -27],
+      [-87, 82],
+      [-91, 154],
+      [-113, 161],
+      [-35, 18],
+      [-76, 76],
+      [-97, 67],
+      [-7, 59],
+      [-33, 54],
+      [-151, 110],
+      [-165, 84],
+      [29, 16],
+      [-50, 107],
+      [-32, 36],
+      [-23, 81],
+      [-71, 115],
+      [-38, 93],
+      [-69, 47],
+      [6, 46],
+      [-50, 207],
+      [-53, 34],
+      [-27, 48],
+      [-39, -2],
+      [-24, 40],
+      [5, 44],
+      [-66, 20],
+      [21, 41],
+      [45, 24],
+      [49, 63],
+      [-8, 86],
+      [-43, 61],
+      [0, 38],
+      [49, 36],
+      [77, 24],
+      [8, 62],
+      [34, 23],
+      [1, 57],
+      [144, -16],
+      [34, 92],
+      [90, 27],
+      [106, -93],
+      [17, -50],
+      [-12, -66],
+      [82, -14],
+      [39, -28],
+      [72, 7],
+      [5, 38],
+      [119, 12],
+      [98, -270],
+      [46, 4],
+      [31, 39],
+      [118, 35]
+    ],
+    [
+      [11250, 13913],
+      [-35, -40],
+      [-37, -91],
+      [-46, 43],
+      [-42, -8],
+      [-97, -98],
+      [-27, -88],
+      [23, -30],
+      [-43, -60],
+      [-165, -164],
+      [-217, -92],
+      [-163, -48],
+      [-133, -13],
+      [-93, 16],
+      [-98, 81],
+      [-158, 73],
+      [-16, 48],
+      [-47, 57],
+      [6, 78],
+      [-58, 49],
+      [-30, 63],
+      [-1, 60],
+      [-21, 64],
+      [98, 36],
+      [51, 32],
+      [12, 32],
+      [67, 25],
+      [15, 88],
+      [-30, 3],
+      [-5, -84],
+      [-93, -56],
+      [-58, -10],
+      [-76, -43],
+      [-30, -35],
+      [-11, -63],
+      [46, -117],
+      [71, -40],
+      [10, -45],
+      [-27, -75],
+      [64, -147],
+      [59, -70],
+      [97, -52],
+      [0, -50],
+      [-40, -59],
+      [-47, -37],
+      [-91, -41],
+      [-107, -18],
+      [-178, -69],
+      [-75, 12],
+      [-93, 68],
+      [-108, 49],
+      [-35, 31],
+      [-59, 22],
+      [-141, -11],
+      [-103, 21],
+      [-33, 43],
+      [12, 30],
+      [-24, 23],
+      [-64, -1],
+      [-7, 57]
+    ],
+    [
+      [8819, 13262],
+      [128, 91],
+      [-17, 54],
+      [-85, 3],
+      [-39, 90],
+      [30, 58],
+      [-27, 61],
+      [42, 78],
+      [72, 23],
+      [8, 61],
+      [-24, 137],
+      [-69, 92],
+      [27, 38],
+      [-23, 77],
+      [68, 104],
+      [-3, 45],
+      [-68, 36],
+      [-41, 40],
+      [36, 44],
+      [-32, 62],
+      [-93, 114],
+      [0, 39],
+      [-57, 22],
+      [-31, 39],
+      [-86, 5],
+      [-52, 56],
+      [37, 52],
+      [7, 82],
+      [-27, 67],
+      [-32, 33],
+      [-159, -1],
+      [20, 78],
+      [116, 15],
+      [38, 28],
+      [-1, 67],
+      [81, 39],
+      [31, 28],
+      [0, 4]
+    ],
+    [
+      [8594, 15223],
+      [1, 0]
+    ],
+    [
+      [13181, 27971],
+      [165, 4],
+      [56, 68],
+      [46, 6],
+      [53, 68],
+      [94, 28],
+      [177, 92],
+      [33, 38],
+      [112, 13],
+      [91, 28],
+      [34, 29],
+      [110, 47],
+      [87, 12],
+      [104, 29],
+      [189, 14],
+      [53, 29],
+      [132, -9],
+      [49, -18],
+      [116, -3],
+      [74, 29],
+      [162, 24],
+      [119, -5],
+      [132, 11],
+      [21, -35],
+      [139, -52],
+      [62, 35],
+      [101, -4],
+      [49, 15],
+      [43, 41],
+      [100, -6],
+      [147, 18],
+      [44, -14],
+      [110, 47],
+      [37, -80],
+      [-65, -51],
+      [-20, -44],
+      [-108, -40],
+      [-31, -41],
+      [-79, 3],
+      [-9, -54],
+      [-41, -37],
+      [-65, -22],
+      [-46, 29],
+      [-70, -43],
+      [47, -15],
+      [6, -37],
+      [-39, -63],
+      [42, -71],
+      [9, -53],
+      [-45, -82],
+      [204, -44],
+      [39, 6],
+      [50, -28],
+      [54, -86],
+      [-23, -59],
+      [44, -15],
+      [24, -79],
+      [38, -44],
+      [60, -19],
+      [-28, -58],
+      [-88, -25],
+      [-92, -74],
+      [38, -101],
+      [47, -22],
+      [89, 18],
+      [107, -137],
+      [-20, -48],
+      [23, -32],
+      [6, -96],
+      [50, -34],
+      [-43, -39],
+      [10, -47],
+      [-49, -43],
+      [-1, -30],
+      [-58, -85],
+      [93, -6],
+      [103, -33],
+      [87, -15],
+      [118, 4],
+      [-8, -84],
+      [140, -63],
+      [23, 25],
+      [123, 5],
+      [19, -24],
+      [61, 37],
+      [56, -46],
+      [88, -16],
+      [14, 38],
+      [61, 15],
+      [34, -13],
+      [49, 24],
+      [7, 42],
+      [48, 2],
+      [90, -72],
+      [70, -9],
+      [54, -23],
+      [176, -1],
+      [34, -17],
+      [21, -47],
+      [-36, -37],
+      [8, -78],
+      [72, -69],
+      [35, -54],
+      [-13, -50],
+      [-84, -12],
+      [-77, 20],
+      [-124, 60],
+      [-15, -58],
+      [47, -128],
+      [-41, -6],
+      [-114, -75],
+      [-18, -86],
+      [-138, -24],
+      [-23, -43],
+      [53, -41],
+      [21, -75],
+      [28, -18],
+      [29, -121],
+      [31, -57],
+      [-58, -69],
+      [-1, -41],
+      [46, -26],
+      [-21, -35],
+      [-101, -85],
+      [-43, -19],
+      [-26, -40],
+      [-101, -36],
+      [-13, -33],
+      [59, -42],
+      [-1, -29],
+      [-56, -32],
+      [-47, -67],
+      [0, -96],
+      [-72, -48],
+      [-65, -65],
+      [8, -93],
+      [70, -41],
+      [157, -51],
+      [35, 24],
+      [90, -34],
+      [92, 23],
+      [71, -17],
+      [96, 13],
+      [98, 61],
+      [125, -76],
+      [24, 23],
+      [90, -15],
+      [61, 25],
+      [41, -35],
+      [84, -1],
+      [43, -36],
+      [67, -9],
+      [-14, -55],
+      [75, 1],
+      [-5, 30],
+      [95, 21],
+      [56, -31],
+      [66, -6],
+      [131, -52],
+      [-3, 64],
+      [40, 20],
+      [140, -16],
+      [71, -31],
+      [-12, -39],
+      [72, -74],
+      [13, -30],
+      [-51, -120],
+      [-37, -11],
+      [5, -58],
+      [-39, -28],
+      [-5, -88],
+      [33, -48],
+      [61, -159],
+      [21, -27],
+      [148, -50],
+      [44, 28],
+      [110, 25],
+      [35, -6],
+      [98, -84],
+      [-46, -20],
+      [-51, -68],
+      [-51, -30],
+      [27, -60],
+      [-1, -101],
+      [21, -27],
+      [95, -44],
+      [24, 63],
+      [81, -25],
+      [47, -64],
+      [36, -11],
+      [105, 27],
+      [95, 49],
+      [50, 53],
+      [97, -17],
+      [99, 36],
+      [64, -109],
+      [66, -60],
+      [78, 32],
+      [55, -6],
+      [80, -36],
+      [184, 66],
+      [44, -9],
+      [75, 70],
+      [55, -3],
+      [71, 81],
+      [52, 35],
+      [41, 0],
+      [53, 100],
+      [70, 28],
+      [40, 60],
+      [60, 49],
+      [61, -13],
+      [74, 32],
+      [85, 2],
+      [131, 53],
+      [139, 98],
+      [52, -3],
+      [28, -127],
+      [-9, -36],
+      [88, -47],
+      [21, -48],
+      [16, -106],
+      [-49, -6],
+      [-20, -34],
+      [33, -29],
+      [28, -59],
+      [-92, -51],
+      [-93, -87],
+      [-61, -5],
+      [-45, -31],
+      [-105, -109],
+      [-56, 5],
+      [-63, -17],
+      [-76, -46],
+      [-85, -19],
+      [-25, -42],
+      [-66, -44],
+      [-89, -23],
+      [-71, 8],
+      [-113, 36],
+      [-24, -9],
+      [-56, -184],
+      [-5, -78],
+      [-33, -28],
+      [-48, -94],
+      [-55, -45],
+      [-12, -67],
+      [-57, -24],
+      [-47, -42],
+      [-108, -7],
+      [3, -81],
+      [-59, -45],
+      [-39, -147],
+      [38, -32],
+      [72, -5],
+      [25, 19],
+      [178, 37],
+      [20, -38],
+      [-119, -89],
+      [-75, -25],
+      [-49, 5],
+      [-124, -18],
+      [-177, 33],
+      [-81, -1],
+      [-59, -14],
+      [-44, -52],
+      [-43, -26],
+      [-101, -21],
+      [-86, -58],
+      [-63, -62],
+      [-88, -108],
+      [-48, -88],
+      [-10, -55],
+      [-61, -146],
+      [-23, -97],
+      [-26, -53],
+      [8, -74],
+      [-79, -63],
+      [-50, 17],
+      [-26, 37],
+      [-50, -1],
+      [-113, 67],
+      [-73, 67],
+      [-90, -36],
+      [-128, -10],
+      [-68, -84],
+      [-1, -55],
+      [-77, -76],
+      [-128, 8],
+      [-57, 23],
+      [-49, -52],
+      [-70, -16],
+      [-59, 23],
+      [-29, 31],
+      [-80, -25],
+      [-133, 53],
+      [-106, 15],
+      [-33, 34],
+      [-101, 20],
+      [-3, -59],
+      [86, -40],
+      [42, -57],
+      [33, -162],
+      [92, -60],
+      [-22, -52],
+      [-39, -40],
+      [-56, -9],
+      [-75, -88],
+      [-125, -37],
+      [-127, 0],
+      [-117, -51],
+      [-150, 77],
+      [-131, 56],
+      [-57, -10],
+      [-81, 8],
+      [-109, -62],
+      [-75, 4],
+      [-84, -129],
+      [27, -67],
+      [-56, -54],
+      [30, -54],
+      [-11, -38],
+      [-39, -17],
+      [30, -113],
+      [-11, -59],
+      [-39, -80],
+      [-201, -61],
+      [-37, -46],
+      [-33, 43],
+      [-136, 94],
+      [-117, -67],
+      [-35, -47],
+      [-97, -1],
+      [-67, 26],
+      [-34, -20],
+      [-87, -20],
+      [-85, -38],
+      [-43, -36],
+      [-51, 10],
+      [-46, -21],
+      [-41, -44],
+      [-90, 65],
+      [-188, -54],
+      [-77, 14],
+      [-38, 23],
+      [-43, -21],
+      [-132, 3],
+      [-69, -22],
+      [-103, -17],
+      [-37, 40],
+      [14, 28],
+      [-89, 45],
+      [-81, 75],
+      [-71, 33],
+      [-90, -29],
+      [-37, 67],
+      [-85, 14],
+      [-40, -17],
+      [8, -74],
+      [-27, -105],
+      [16, -80],
+      [35, -43],
+      [-55, -30],
+      [-120, -14],
+      [-4, -60],
+      [-85, -18],
+      [-105, -39],
+      [-75, 4]
+    ],
+    [
+      [10841, 19278],
+      [17, 21],
+      [-46, 65],
+      [-17, 48],
+      [-126, -1],
+      [-92, 22],
+      [-29, 48],
+      [115, 91],
+      [112, 34],
+      [40, 33],
+      [-55, 70],
+      [-65, 15],
+      [-13, 34],
+      [-100, 83],
+      [-27, 87],
+      [-76, 51],
+      [-153, -20],
+      [-24, 60],
+      [26, 27],
+      [-32, 43],
+      [-118, 98],
+      [-71, 97],
+      [18, 23],
+      [119, -8],
+      [56, 25],
+      [-1, 38],
+      [59, 8],
+      [20, 28],
+      [-48, 55],
+      [-36, 77],
+      [47, 36],
+      [61, 17],
+      [46, 61]
+    ],
+    [
+      [7418, 11973],
+      [-43, 42],
+      [104, 171],
+      [-4, 149],
+      [58, 50],
+      [17, 41],
+      [48, 20],
+      [52, -90],
+      [-6, -111],
+      [-16, -37],
+      [-53, -44],
+      [-92, -136],
+      [-65, -55]
+    ],
+    [
+      [7259, 12497],
+      [42, -28],
+      [-56, -27],
+      [11, -102],
+      [-15, -9],
+      [-103, 27],
+      [-31, -8],
+      [-21, -32],
+      [4, -41],
+      [-37, -23],
+      [-18, 86],
+      [8, 39],
+      [49, 62],
+      [137, 67],
+      [30, -11]
+    ],
+    [
+      [7602, 12512],
+      [-49, 66],
+      [30, 53],
+      [115, 62],
+      [-5, -89],
+      [-91, -92]
+    ],
+    [
+      [5957, 12490],
+      [-35, -55],
+      [-63, -50],
+      [-63, -109],
+      [-63, -22],
+      [-88, -5],
+      [-82, -43],
+      [-23, -83],
+      [-38, 4],
+      [-36, -36],
+      [-40, -90],
+      [-55, 26],
+      [-26, 75],
+      [-29, 132],
+      [15, 43],
+      [149, 34],
+      [37, 24],
+      [99, 118],
+      [43, 75],
+      [53, 31],
+      [99, 117],
+      [74, 55],
+      [91, 38],
+      [0, -37],
+      [41, -54],
+      [-60, -188]
+    ],
+    [
+      [7118, 12562],
+      [-30, -61],
+      [-94, -65],
+      [-47, -68],
+      [-4, -49],
+      [41, -93],
+      [-4, -60],
+      [-36, -188],
+      [-15, -22],
+      [-53, 19],
+      [-42, -12],
+      [-51, 16],
+      [-17, -23],
+      [10, -82],
+      [-8, -32],
+      [18, -31],
+      [-25, -29],
+      [-64, -23],
+      [-216, 28],
+      [-39, 21],
+      [-22, 46],
+      [30, 40],
+      [70, 12],
+      [-1, 24],
+      [-72, 7],
+      [-22, 32],
+      [34, 45],
+      [-6, 45],
+      [-69, 96],
+      [41, 57],
+      [84, 66],
+      [51, -2],
+      [57, 47],
+      [-2, 44],
+      [-42, 57],
+      [81, 24],
+      [52, 103],
+      [143, -6],
+      [7, 60],
+      [77, 43],
+      [17, 63],
+      [21, 11],
+      [16, 37],
+      [23, 13],
+      [10, 20],
+      [27, 9],
+      [31, 54],
+      [83, 12],
+      [-25, -76],
+      [37, -41],
+      [-74, -55],
+      [7, -42],
+      [36, -44],
+      [-24, -47]
+    ],
+    [
+      [6014, 12948],
+      [-62, -104],
+      [-78, -86],
+      [-75, -29],
+      [-23, 35],
+      [79, 49],
+      [33, 59],
+      [-5, 57],
+      [131, 19]
+    ],
+    [
+      [8955, 12666],
+      [-35, -13],
+      [-30, 39],
+      [75, 36],
+      [41, 152],
+      [-3, 61],
+      [56, 82],
+      [52, -68],
+      [-2, -98],
+      [-14, -60],
+      [-140, -131]
+    ],
+    [
+      [9064, 12699],
+      [48, 74],
+      [15, 68],
+      [26, 45],
+      [-7, 85],
+      [65, 76],
+      [47, -10],
+      [140, -77],
+      [15, -60],
+      [-61, -48],
+      [-80, -84],
+      [-48, -29],
+      [-160, -40]
+    ],
+    [
+      [6185, 13526],
+      [19, -4],
+      [25, 0],
+      [2, -21],
+      [32, -18],
+      [-12, -43],
+      [-44, -6],
+      [-22, -16],
+      [-33, -126],
+      [-87, -37],
+      [-34, 68],
+      [54, 49],
+      [8, 129],
+      [92, 25]
+    ],
+    [
+      [8586, 15232],
+      [8, -9]
+    ],
+    [
+      [8819, 13262],
+      [-26, -74],
+      [72, 9],
+      [33, -12],
+      [0, -54],
+      [42, -31],
+      [98, -31],
+      [22, -31],
+      [-60, -91],
+      [-2, -70],
+      [-44, -121],
+      [-42, -23],
+      [-69, -87],
+      [-155, -105],
+      [-69, -13],
+      [-76, -109],
+      [-24, -9],
+      [13, -66],
+      [-95, -140],
+      [-29, -19],
+      [-34, -61],
+      [-168, -134],
+      [-25, -27],
+      [-135, -103],
+      [6, -31],
+      [-126, -79],
+      [-143, -47],
+      [-185, -17],
+      [-89, 21],
+      [-18, 22],
+      [23, 49],
+      [-48, 101],
+      [23, 90],
+      [36, 23],
+      [46, 92],
+      [57, 36],
+      [30, 38],
+      [31, 115],
+      [-11, 124],
+      [-65, 89],
+      [47, 44],
+      [47, 80],
+      [14, 98],
+      [-121, -42],
+      [-35, -34],
+      [-22, -65],
+      [54, -107],
+      [-47, -16],
+      [-29, -49],
+      [-60, -55],
+      [-1, -86],
+      [-73, -101],
+      [-32, -116],
+      [-22, -44],
+      [28, -117],
+      [-66, -46],
+      [-58, -12],
+      [-114, 39],
+      [-29, 24],
+      [-11, 76],
+      [2, 109],
+      [18, 42],
+      [24, 128],
+      [-29, 85],
+      [17, 21],
+      [125, -22],
+      [27, 13],
+      [6, 32],
+      [-13, 81],
+      [41, 11],
+      [33, 44],
+      [-120, 20],
+      [-81, -4],
+      [27, 96],
+      [-41, 93],
+      [62, 39],
+      [-33, 66],
+      [22, 52],
+      [-74, 58],
+      [-23, -64],
+      [-40, -55],
+      [-23, -6],
+      [-2, -15],
+      [-29, -24],
+      [-12, -27],
+      [-26, -12],
+      [-17, -64],
+      [-86, -48],
+      [8, -51],
+      [-147, 8],
+      [-61, -107],
+      [-57, -8],
+      [-19, -33],
+      [47, -76],
+      [-59, -52],
+      [-25, 11],
+      [-9, 92],
+      [-23, 78],
+      [-23, 33],
+      [63, 143],
+      [174, 27],
+      [44, 26],
+      [84, 105],
+      [-152, -109],
+      [-79, -2],
+      [-101, -40],
+      [-79, -157],
+      [23, -51],
+      [-34, -64],
+      [-84, -126],
+      [23, -34],
+      [-113, -99],
+      [-97, -138],
+      [-95, -23],
+      [-87, 41],
+      [-92, 101],
+      [32, 44],
+      [102, 36],
+      [101, 88],
+      [63, 65],
+      [8, 75],
+      [-20, 22],
+      [-97, -137],
+      [7, -27],
+      [-123, -69],
+      [-111, -34],
+      [-30, -23],
+      [-60, 26],
+      [-3, 35],
+      [77, 40],
+      [60, 76],
+      [45, 34],
+      [60, 75],
+      [55, 101],
+      [-2, 54],
+      [20, 72],
+      [-42, 91],
+      [-12, 53],
+      [57, 80],
+      [14, 88],
+      [47, 53],
+      [-3, 123],
+      [-38, 103],
+      [77, 30],
+      [44, 101],
+      [1, 45],
+      [97, 13],
+      [-31, 12],
+      [7, 40],
+      [-36, 19],
+      [-2, 19],
+      [-40, 2],
+      [-20, 33],
+      [-39, 28],
+      [-11, -19],
+      [37, -12],
+      [7, -24],
+      [-71, -12],
+      [-27, -60],
+      [4, -73],
+      [-64, -55],
+      [22, -136],
+      [17, -50],
+      [-8, -105],
+      [-58, 23],
+      [-42, -14],
+      [-39, -78],
+      [-48, -66],
+      [12, -65],
+      [-98, -49],
+      [-77, 58],
+      [-58, 12],
+      [-55, -21],
+      [61, -32],
+      [19, -46],
+      [-29, -22],
+      [39, -38],
+      [-35, -78],
+      [-128, -122],
+      [-50, -72],
+      [-50, -35],
+      [-119, -21],
+      [-67, -68],
+      [-141, -39],
+      [-6, -24],
+      [-70, -67],
+      [-74, 107],
+      [-32, 26],
+      [-4, 189],
+      [5, 64],
+      [49, 58],
+      [-30, 54],
+      [25, 16],
+      [13, 79],
+      [33, 46],
+      [-31, 86],
+      [9, 50],
+      [32, 53],
+      [19, 95],
+      [30, 66],
+      [-8, 51],
+      [22, 52],
+      [-36, 75],
+      [68, 16],
+      [36, -38],
+      [76, 34],
+      [41, 59],
+      [-66, 66],
+      [76, 53],
+      [27, 72],
+      [-23, 45],
+      [11, 82],
+      [83, 80],
+      [25, 49],
+      [-36, 123],
+      [-30, 60],
+      [26, 60],
+      [46, -43],
+      [76, 59],
+      [-1, 62],
+      [36, 25],
+      [30, 80],
+      [-26, 28],
+      [-7, 62],
+      [26, 49],
+      [38, 23],
+      [33, 53],
+      [-49, 59],
+      [-50, 15],
+      [-14, 58],
+      [115, -4],
+      [55, -19],
+      [48, 33],
+      [-51, 50],
+      [-39, 10],
+      [11, 52],
+      [-19, 39],
+      [39, 76],
+      [49, 24],
+      [92, 2],
+      [-13, 32],
+      [20, 73],
+      [-3, 58],
+      [-29, 22],
+      [7, 135]
+    ],
+    [
+      [6823, 11962],
+      [14, -1],
+      [40, 10],
+      [44, -30],
+      [-20, -56],
+      [-92, -61],
+      [-32, 12],
+      [8, 41],
+      [-5, 97],
+      [43, -12]
+    ],
+    [
+      [6382, 11954],
+      [-25, -103],
+      [-116, 8],
+      [-47, 14],
+      [-25, 52],
+      [100, 78],
+      [4, 40],
+      [63, 94],
+      [33, 16],
+      [34, -94],
+      [35, -41],
+      [-56, -64]
+    ]
+  ],
+  "transform": {
+    "scale": [0.00041464988706034164, 0.0005008896272676118],
+    "translate": [92.1727, 9.8528]
+  },
+  "objects": {
+    "myanmar": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2]],
+          "type": "Polygon",
+          "properties": { "ID": 1, "NAME": "Kachin State", "PCODE": "MMR001", "ISO": "MM-11" }
+        },
+        {
+          "arcs": [[3, 4, 5]],
+          "type": "Polygon",
+          "properties": { "ID": 2, "NAME": "Kayah State", "PCODE": "MMR002", "ISO": "MM-12" }
+        },
+        {
+          "arcs": [[-5, 6, 7, 8, 9, 10, 11, 12]],
+          "type": "Polygon",
+          "properties": { "ID": 3, "NAME": "Kayin State", "PCODE": "MMR003", "ISO": "MM-13" }
+        },
+        {
+          "arcs": [[13, 14, 15, 16]],
+          "type": "Polygon",
+          "properties": { "ID": 4, "NAME": "Chin State", "PCODE": "MMR004", "ISO": "MM-14" }
+        },
+        {
+          "arcs": [[-2, 17, 18, 19, -14, 20]],
+          "type": "Polygon",
+          "properties": { "ID": 5, "NAME": "Sagaing Region", "PCODE": "MMR005", "ISO": "MM-01" }
+        },
+        {
+          "arcs": [
+            [[21]],
+            [[22]],
+            [[23]],
+            [[24]],
+            [[25]],
+            [[26]],
+            [[27]],
+            [[28]],
+            [[29]],
+            [[30]],
+            [[31]],
+            [[32]],
+            [[33]],
+            [[34]],
+            [[35]],
+            [[36]],
+            [[37, 38]]
+          ],
+          "type": "MultiPolygon",
+          "properties": { "ID": 6, "NAME": "Tanintharyi Region", "PCODE": "MMR006", "ISO": "MM-05" }
+        },
+        {
+          "arcs": [[-11, 39, 40, 41, 42, 43, 44, 45, 46]],
+          "type": "Polygon",
+          "properties": { "ID": 7, "NAME": "Bago Region", "PCODE": "MMR007", "ISO": "MM-02" }
+        },
+        {
+          "arcs": [[47, 48, -46, 49, -15, -20]],
+          "type": "Polygon",
+          "properties": { "ID": 9, "NAME": "Magway Region", "PCODE": "MMR009", "ISO": "MM-03" }
+        },
+        {
+          "arcs": [[50, 51, -48, -19]],
+          "type": "Polygon",
+          "properties": { "ID": 10, "NAME": "Mandalay Region", "PCODE": "MMR010", "ISO": "MM-04" }
+        },
+        {
+          "arcs": [[[52]], [[-8, 53, -39, 54]], [[55, -40, -10]]],
+          "type": "MultiPolygon",
+          "properties": { "ID": 11, "NAME": "Mon State", "PCODE": "MMR011", "ISO": "MM-15" }
+        },
+        {
+          "arcs": [
+            [[56]],
+            [[57]],
+            [[58]],
+            [[59]],
+            [[60]],
+            [[61]],
+            [[62]],
+            [[63]],
+            [[64]],
+            [[65]],
+            [[66]],
+            [[67]],
+            [[68]],
+            [[69]],
+            [[70]],
+            [[-16, -50, -45, 71, 72]]
+          ],
+          "type": "MultiPolygon",
+          "properties": { "ID": 12, "NAME": "Rakhine State", "PCODE": "MMR012", "ISO": "MM-16" }
+        },
+        {
+          "arcs": [[73, 74, 75, -42]],
+          "type": "Polygon",
+          "properties": { "ID": 13, "NAME": "Yangon Region", "PCODE": "MMR013", "ISO": "MM-06" }
+        },
+        {
+          "arcs": [[76, -6, -13, 77, -51, -18, -1]],
+          "type": "Polygon",
+          "properties": { "ID": 14, "NAME": "Shan State", "PCODE": "MMR014", "ISO": "MM-17" }
+        },
+        {
+          "arcs": [
+            [[78]],
+            [[79]],
+            [[80]],
+            [[81]],
+            [[82]],
+            [[83]],
+            [[84]],
+            [[85]],
+            [[86]],
+            [[87, -75, 88, -72, -44]],
+            [[89]],
+            [[90]]
+          ],
+          "type": "MultiPolygon",
+          "properties": { "ID": 17, "NAME": "Ayeyarwady Region", "PCODE": "MMR017", "ISO": "MM-07" }
+        },
+        {
+          "arcs": [[-78, -12, -47, -49, -52]],
+          "type": "Polygon",
+          "properties": { "ID": 18, "NAME": "Naypyitaw", "PCODE": "MMR018", "ISO": "MM-18" }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/netherlands-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/netherlands-topo.json
new file mode 100644
index 0000000..90ec02c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/netherlands-topo.json
@@ -0,0 +1,1332 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [4837, 5060],
+      [-23, -61],
+      [-7, -234],
+      [-16, -170],
+      [-15, -28],
+      [-83, 34],
+      [-50, -17],
+      [-57, 31],
+      [-59, -7],
+      [-95, 8],
+      [-55, -22],
+      [-30, -45]
+    ],
+    [
+      [4347, 4549],
+      [-4, 50],
+      [-122, 61],
+      [-81, -20],
+      [-49, -45],
+      [5, -68],
+      [-85, -12],
+      [-42, 20],
+      [-46, -23],
+      [-28, 73],
+      [-50, 39],
+      [-96, 26],
+      [-44, 35],
+      [-47, -23],
+      [-24, 11],
+      [-57, 173],
+      [47, 30],
+      [58, 75],
+      [-107, 145]
+    ],
+    [
+      [3575, 5096],
+      [115, 91],
+      [65, 88],
+      [60, -5],
+      [40, -46],
+      [79, 64],
+      [43, 95],
+      [-85, 150],
+      [6, 80],
+      [-81, 34],
+      [14, 33]
+    ],
+    [
+      [3831, 5680],
+      [37, -18],
+      [48, 147],
+      [34, 74],
+      [53, 45],
+      [47, 19],
+      [59, -23],
+      [47, -90],
+      [46, -32],
+      [46, -75],
+      [76, 19],
+      [57, -6],
+      [261, -306],
+      [89, -168],
+      [33, -29],
+      [-27, -96],
+      [29, -2],
+      [43, -64],
+      [28, -15]
+    ],
+    [
+      [3231, 4347],
+      [2, -4]
+    ],
+    [
+      [3233, 4343],
+      [-10, -120],
+      [-58, -122],
+      [-75, -73],
+      [-33, 6],
+      [-80, -45],
+      [-64, -76],
+      [-61, 2],
+      [-34, -48],
+      [21, -37],
+      [-31, -140],
+      [-153, -52],
+      [-34, 26],
+      [-113, 118],
+      [-122, 56],
+      [-63, -15],
+      [-31, 21],
+      [-6, 109],
+      [42, 40],
+      [126, 87],
+      [230, 184],
+      [0, 43],
+      [29, 59],
+      [57, 7],
+      [73, 87],
+      [108, 39],
+      [21, -26],
+      [140, -42],
+      [62, -3],
+      [57, -81]
+    ],
+    [
+      [3153, 4980],
+      [31, -53],
+      [41, 0],
+      [94, -79],
+      [25, -80],
+      [32, -49],
+      [-33, -69],
+      [51, -25]
+    ],
+    [
+      [3394, 4625],
+      [-21, -50],
+      [-172, -64],
+      [-219, 1],
+      [-61, 92],
+      [-31, 21],
+      [4, 258],
+      [83, 150],
+      [70, 24]
+    ],
+    [
+      [3047, 5057],
+      [47, 4],
+      [59, -81]
+    ],
+    [
+      [2205, 6197],
+      [-33, -56],
+      [-72, -44],
+      [17, -19],
+      [-112, -103],
+      [-86, 14],
+      [92, 71],
+      [51, 52],
+      [97, 70],
+      [46, 15]
+    ],
+    [
+      [3666, 6451],
+      [-29, -52],
+      [11, -57],
+      [145, -63],
+      [-9, -93],
+      [-86, -169],
+      [21, -38],
+      [-39, -47],
+      [-30, -76],
+      [-1, -78],
+      [39, -47],
+      [74, -3],
+      [69, -48]
+    ],
+    [
+      [3575, 5096],
+      [-78, -67],
+      [-81, -23],
+      [-32, 61],
+      [-53, -17],
+      [-10, -28],
+      [-62, -54],
+      [-52, 11],
+      [-21, 29],
+      [-33, -28]
+    ],
+    [
+      [3047, 5057],
+      [-73, 15],
+      [-18, 39],
+      [-33, -24],
+      [-44, -2],
+      [-14, -32],
+      [-38, -9],
+      [-85, 46],
+      [-84, -5],
+      [-71, 61],
+      [11, 57],
+      [49, 28],
+      [-8, 70],
+      [15, 59],
+      [-17, 68],
+      [-2, 78],
+      [-45, 124],
+      [-87, -20],
+      [-169, -164]
+    ],
+    [
+      [2334, 5446],
+      [-3, 5]
+    ],
+    [
+      [2331, 5451],
+      [165, 164],
+      [61, 19],
+      [49, 41],
+      [40, 94],
+      [9, 92],
+      [40, 123],
+      [102, 89],
+      [69, 97],
+      [82, 57],
+      [100, 41],
+      [194, 111],
+      [18, 17],
+      [73, 0],
+      [98, 33],
+      [98, 14],
+      [69, -10],
+      [68, 18]
+    ],
+    [
+      [2803, 6539],
+      [14, -41],
+      [-79, -32],
+      [-31, -35],
+      [-94, -4],
+      [-53, -47],
+      [-157, -40],
+      [-45, -48],
+      [-46, 32],
+      [56, 86],
+      [158, 44],
+      [134, 42],
+      [109, 42],
+      [34, 1]
+    ],
+    [
+      [2989, 6597],
+      [35, -22],
+      [62, -8],
+      [199, 20],
+      [-17, -42],
+      [-108, -31],
+      [-109, 11],
+      [-24, -32],
+      [-61, -10],
+      [-37, 15],
+      [-16, 55],
+      [45, 43],
+      [31, 1]
+    ],
+    [
+      [3878, 6689],
+      [-101, -49],
+      [-28, -26],
+      [-127, -14],
+      [-36, 34],
+      [40, 39],
+      [252, 16]
+    ],
+    [
+      [4409, 3313],
+      [-12, -79],
+      [-22, -29],
+      [-54, -3],
+      [-4, -82],
+      [80, -22],
+      [75, -78],
+      [24, -8],
+      [3, -73],
+      [-38, -11],
+      [-4, -64],
+      [-82, -86],
+      [-40, 16],
+      [-25, 35],
+      [-45, -30],
+      [-135, -61],
+      [-95, -68],
+      [-30, 35],
+      [-78, 6],
+      [17, -86],
+      [-53, 8],
+      [-22, 37],
+      [-55, -9],
+      [-28, 62],
+      [-91, -22],
+      [-64, 86],
+      [-65, -31],
+      [62, -76],
+      [3, -33],
+      [-77, 4],
+      [-54, 44],
+      [-9, -32],
+      [-78, -56],
+      [-38, 8],
+      [-1, -55],
+      [28, -35],
+      [9, -74],
+      [-46, -55]
+    ],
+    [
+      [3365, 2396],
+      [-53, 28],
+      [-30, 61],
+      [-36, -47]
+    ],
+    [
+      [3246, 2438],
+      [-111, -15],
+      [-45, 18],
+      [-68, 72],
+      [-40, 13],
+      [-33, 61],
+      [-63, 24],
+      [-56, -30],
+      [-72, 33],
+      [-32, -48],
+      [-48, 0],
+      [-30, 28],
+      [-49, -81],
+      [-19, -83],
+      [-70, -43],
+      [-66, -9],
+      [-37, 24],
+      [-76, -3],
+      [-26, 31],
+      [-6, 43],
+      [-49, 35],
+      [-30, -20],
+      [-99, 102]
+    ],
+    [
+      [2121, 2590],
+      [32, -7],
+      [24, 99],
+      [60, 72],
+      [29, -2],
+      [47, 111]
+    ],
+    [
+      [2313, 2863],
+      [41, 83],
+      [32, -21],
+      [51, 46],
+      [33, -31],
+      [62, -26],
+      [40, 33],
+      [46, 2],
+      [62, 35],
+      [74, -2],
+      [66, -35],
+      [31, -33],
+      [57, -28],
+      [28, 35],
+      [-17, 80],
+      [-36, 51],
+      [4, 56],
+      [-42, 35],
+      [6, 72],
+      [-9, 53],
+      [-42, -55],
+      [-51, -19],
+      [-33, 26],
+      [36, 32],
+      [18, 129],
+      [-35, 41],
+      [-44, 18],
+      [0, 81],
+      [-61, 39],
+      [14, 63]
+    ],
+    [
+      [2644, 3623],
+      [89, 35],
+      [73, 6],
+      [42, 125],
+      [54, 56],
+      [23, 48],
+      [126, 71],
+      [96, 85],
+      [66, 106],
+      [33, 129]
+    ],
+    [
+      [3246, 4284],
+      [23, 0],
+      [55, -110],
+      [52, 6],
+      [46, 59],
+      [35, 21],
+      [38, -28],
+      [59, -77],
+      [0, -50],
+      [23, -31],
+      [-12, -59],
+      [26, -20],
+      [-12, -50],
+      [-53, -19],
+      [-13, -119],
+      [38, -53],
+      [62, -175],
+      [249, -3],
+      [16, 37],
+      [86, 0],
+      [17, -46],
+      [65, -99],
+      [99, -12],
+      [46, 12],
+      [35, -42],
+      [35, 23],
+      [36, -22],
+      [3, -59],
+      [-16, -26],
+      [70, -30],
+      [55, 1]
+    ],
+    [
+      [3666, 6451],
+      [74, 9],
+      [75, -46],
+      [90, 56],
+      [243, 40],
+      [138, 58],
+      [89, 14],
+      [73, -27],
+      [19, 22],
+      [65, -31],
+      [27, -30],
+      [-15, -75],
+      [19, -29],
+      [14, -110],
+      [94, -77],
+      [70, -40],
+      [78, -11],
+      [-6, -82],
+      [41, -31],
+      [208, -54],
+      [17, -98],
+      [-57, -112],
+      [-18, -61],
+      [38, -46],
+      [-9, -78],
+      [7, -158],
+      [-55, -165],
+      [-99, -140],
+      [-44, -52],
+      [-5, -37]
+    ],
+    [
+      [4027, 6798],
+      [39, -40],
+      [-44, -37],
+      [-20, 63],
+      [25, 14]
+    ],
+    [
+      [2170, 5296],
+      [7, 7]
+    ],
+    [
+      [2177, 5303],
+      [18, 8],
+      [139, 135]
+    ],
+    [
+      [3394, 4625],
+      [40, -53],
+      [-31, -26],
+      [-3, -6],
+      [-58, -21],
+      [-29, -9],
+      [-37, 18],
+      [-63, -24],
+      [-12, -78],
+      [30, -79]
+    ],
+    [
+      [3233, 4343],
+      [13, -59]
+    ],
+    [
+      [2644, 3623],
+      [-52, 52],
+      [-74, 22]
+    ],
+    [
+      [2518, 3697],
+      [-19, 46],
+      [-60, 36],
+      [-111, -13],
+      [-30, 46],
+      [-58, 34],
+      [-74, -13],
+      [-52, 38],
+      [-46, 35],
+      [84, 62],
+      [78, 111],
+      [-48, 11],
+      [17, 68],
+      [-4, 43],
+      [34, 44],
+      [-25, 46],
+      [-61, 178],
+      [0, 83],
+      [34, 28],
+      [47, 1],
+      [59, -55],
+      [43, 9],
+      [100, 84],
+      [13, 67],
+      [75, 48],
+      [-21, 24],
+      [-8, 66],
+      [-31, 28],
+      [-85, 4],
+      [-48, -33],
+      [-43, 32],
+      [-25, 46],
+      [13, 175],
+      [-96, 220]
+    ],
+    [
+      [3365, 2396],
+      [94, -35],
+      [-2, -108],
+      [21, -25],
+      [88, -30],
+      [-18, -91],
+      [-19, -43],
+      [86, -87],
+      [29, -69],
+      [53, -77],
+      [14, -79],
+      [-21, -163],
+      [22, -106],
+      [-43, -57],
+      [-31, -11],
+      [-12, -55],
+      [-48, -70],
+      [-14, -40],
+      [-51, -61],
+      [0, -139],
+      [26, -34],
+      [60, 0],
+      [35, -50],
+      [-54, -6],
+      [-30, -22],
+      [-88, -111],
+      [-52, -34],
+      [-38, -115],
+      [-28, 7],
+      [-28, 45],
+      [-71, -30],
+      [47, -103],
+      [-11, -48],
+      [66, 27],
+      [106, -30],
+      [-39, -52],
+      [17, -62],
+      [88, -27],
+      [-10, -51],
+      [16, -53],
+      [-32, -67],
+      [-56, -15],
+      [15, -58],
+      [-41, -45],
+      [-32, 27],
+      [-15, -46],
+      [38, -33],
+      [8, -61],
+      [-51, 14],
+      [-71, -17],
+      [-31, 34],
+      [-33, -19],
+      [-55, -3],
+      [-52, 60],
+      [-53, -54],
+      [-53, -3],
+      [18, 60],
+      [-6, 47],
+      [-52, 40],
+      [-14, 37],
+      [3, 86],
+      [46, 23],
+      [21, 59],
+      [26, 7],
+      [43, 107],
+      [-40, 26],
+      [48, 69],
+      [15, 80],
+      [-14, 30],
+      [24, 67],
+      [25, -3],
+      [30, 159],
+      [44, 40],
+      [-48, 41],
+      [-51, -7],
+      [0, 52],
+      [-43, 21],
+      [-52, -21],
+      [-70, 12],
+      [-5, 33],
+      [-105, 52]
+    ],
+    [
+      [2854, 1132],
+      [73, 23],
+      [7, 107],
+      [62, 102],
+      [259, 90],
+      [79, 78],
+      [-78, 160],
+      [-26, 131],
+      [-18, 150],
+      [126, -31],
+      [90, 41],
+      [38, -35],
+      [8, 67],
+      [-26, 94],
+      [-71, 75],
+      [-12, 137],
+      [-91, 38],
+      [-28, 79]
+    ],
+    [
+      [2854, 1132],
+      [-13, 18],
+      [-12, 92],
+      [-50, 64],
+      [-30, 11],
+      [-89, -88],
+      [-82, 28],
+      [-31, -22],
+      [-90, 8],
+      [-47, 15],
+      [23, 78],
+      [-47, 44],
+      [-95, -19],
+      [-19, 108],
+      [-60, 85],
+      [28, 81],
+      [-20, 93],
+      [-77, 22],
+      [-21, -89],
+      [-80, -90],
+      [-25, -8],
+      [-53, 41],
+      [-67, -15],
+      [-66, 14],
+      [5, 41],
+      [63, -24],
+      [-7, 42],
+      [12, 98],
+      [-77, 58],
+      [-35, -15],
+      [-58, -101],
+      [-37, -28],
+      [0, -46],
+      [-41, -5],
+      [-73, 19],
+      [-70, -19],
+      [-9, 53],
+      [28, 65],
+      [-18, 31],
+      [-77, -9],
+      [-90, -54],
+      [-18, -25],
+      [-4, -76],
+      [42, -76],
+      [-3, -44],
+      [-33, -19],
+      [-66, 2],
+      [-11, 49],
+      [-77, -6]
+    ],
+    [
+      [1177, 1514],
+      [-18, 93],
+      [17, 22],
+      [-21, 59]
+    ],
+    [
+      [1155, 1688],
+      [27, 42],
+      [-36, 42],
+      [-35, 96]
+    ],
+    [
+      [1111, 1868],
+      [12, 48],
+      [-8, 46],
+      [-40, 55],
+      [-10, 50],
+      [31, 53],
+      [30, 14]
+    ],
+    [
+      [1126, 2134],
+      [28, -2],
+      [75, 32],
+      [45, 5],
+      [34, 27],
+      [21, 53],
+      [41, 38],
+      [86, -32],
+      [37, 1],
+      [107, 32],
+      [25, 24],
+      [94, 30],
+      [56, 72],
+      [29, 77],
+      [32, 33],
+      [51, 11]
+    ],
+    [
+      [1887, 2535],
+      [49, 10],
+      [58, 52],
+      [30, 9],
+      [97, -16]
+    ],
+    [
+      [2518, 3697],
+      [-54, 11],
+      [-36, -88],
+      [-28, -100],
+      [-30, -66],
+      [-90, 9],
+      [-101, -38],
+      [-16, 115],
+      [31, 55],
+      [-45, 85],
+      [25, 28],
+      [-40, 52],
+      [-19, -35],
+      [-90, -46],
+      [-22, -42],
+      [-39, 2],
+      [-70, -57],
+      [-44, -9]
+    ],
+    [
+      [1850, 3573],
+      [-66, -29],
+      [-25, 43],
+      [-71, -3],
+      [-40, -31],
+      [-47, -9],
+      [-60, 10],
+      [15, 120],
+      [26, 28],
+      [30, 81],
+      [-37, 13],
+      [-26, -22],
+      [-92, 45]
+    ],
+    [
+      [1457, 3819],
+      [86, 252],
+      [49, 214],
+      [46, 397],
+      [9, 124],
+      [16, 76],
+      [30, 75],
+      [47, 225],
+      [3, 116],
+      [13, 51],
+      [68, 17],
+      [50, -136],
+      [80, -49],
+      [89, 49],
+      [18, 43],
+      [59, 23],
+      [50, 0]
+    ],
+    [
+      [2177, 5303],
+      [154, 148]
+    ],
+    [
+      [1931, 5896],
+      [63, -114],
+      [-11, -30],
+      [-2, -107],
+      [-67, -112],
+      [-34, -9],
+      [-37, -54],
+      [-44, -13],
+      [-51, -39],
+      [-12, 73],
+      [15, 109],
+      [26, 66],
+      [114, 197],
+      [40, 33]
+    ],
+    [
+      [4347, 4549],
+      [15, -46],
+      [-11, -46],
+      [33, -42],
+      [-41, -51],
+      [-10, -59],
+      [5, -106],
+      [66, -47],
+      [116, -6],
+      [42, -32],
+      [58, -23],
+      [41, 13],
+      [48, 68],
+      [27, -99],
+      [29, -62],
+      [47, -59],
+      [2, -61],
+      [-66, -153],
+      [19, -90],
+      [26, -52],
+      [-45, -22],
+      [-54, -4],
+      [-25, -84],
+      [-68, -31],
+      [-39, -51],
+      [-6, -61],
+      [-38, -29],
+      [-109, -1]
+    ],
+    [
+      [2313, 2863],
+      [-124, 52],
+      [0, 52],
+      [-44, -17],
+      [-36, 17],
+      [-28, -40],
+      [-36, 11],
+      [-41, -55],
+      [-44, -11],
+      [-23, 74],
+      [-75, 112],
+      [34, 86],
+      [49, 31],
+      [-54, 30],
+      [-4, 82],
+      [-38, 33],
+      [26, 44],
+      [80, -4],
+      [22, 57],
+      [-117, 95],
+      [-10, 61]
+    ],
+    [
+      [187, 1584],
+      [36, -5],
+      [98, -63],
+      [87, -19],
+      [10, -24],
+      [79, -46],
+      [44, 19],
+      [71, -38],
+      [100, 65],
+      [51, 15],
+      [20, 93],
+      [55, -12],
+      [43, -86],
+      [92, -4],
+      [72, 8],
+      [38, 19],
+      [41, -58],
+      [-70, -111],
+      [-164, -140],
+      [-75, -16],
+      [-48, -62],
+      [-50, -13],
+      [-28, -28],
+      [-34, 35],
+      [-88, -21],
+      [-25, 25],
+      [13, 103],
+      [-57, 40],
+      [-54, 1],
+      [-61, 45],
+      [-30, -3],
+      [-67, 39],
+      [-16, -39],
+      [-85, -7],
+      [14, -97],
+      [-89, -10],
+      [-34, 13],
+      [-62, 66],
+      [-13, 94],
+      [19, 35],
+      [-19, 45],
+      [-1, 57],
+      [67, 42],
+      [77, 16],
+      [43, 27]
+    ],
+    [
+      [640, 1916],
+      [-36, 30],
+      [-43, -21],
+      [-56, 18],
+      [-63, -52],
+      [-29, 54],
+      [-48, 36],
+      [65, -143],
+      [66, 87],
+      [45, -16],
+      [41, 21],
+      [58, -14]
+    ],
+    [
+      [640, 1916],
+      [81, 0],
+      [40, -32],
+      [78, -31],
+      [34, -38],
+      [16, -48],
+      [50, -88],
+      [51, -36],
+      [62, 30],
+      [52, -17],
+      [-2, 48],
+      [53, -16]
+    ],
+    [
+      [1177, 1514],
+      [-74, -6],
+      [18, 38],
+      [-46, 36],
+      [-57, -29],
+      [-102, 33],
+      [-134, 130],
+      [-67, -42],
+      [-30, -121],
+      [-113, -20],
+      [-72, 70],
+      [-39, 0],
+      [-21, 46],
+      [-68, 55],
+      [-35, -37],
+      [-62, -2],
+      [-68, 46],
+      [-45, 85],
+      [-81, 76],
+      [6, 39],
+      [155, 115],
+      [61, 9],
+      [27, -17],
+      [74, 31]
+    ],
+    [
+      [404, 2049],
+      [50, -18],
+      [77, 26],
+      [71, 8],
+      [34, -12],
+      [49, -90],
+      [-45, -47]
+    ],
+    [
+      [1111, 1868],
+      [-24, -42],
+      [-57, 40],
+      [-113, 6],
+      [-69, 101],
+      [-44, 21],
+      [5, 44],
+      [38, 7],
+      [67, 39],
+      [68, -1],
+      [-35, 73],
+      [48, 23],
+      [72, -42],
+      [59, -3]
+    ],
+    [
+      [1018, 2254],
+      [2, -2]
+    ],
+    [
+      [1020, 2252],
+      [-52, -19],
+      [-25, -66],
+      [-34, -35],
+      [-80, -37],
+      [-54, -8],
+      [-52, 36],
+      [-51, 7],
+      [-16, 85],
+      [-69, 40],
+      [-12, 34],
+      [-115, -70],
+      [-6, -15]
+    ],
+    [
+      [454, 2204],
+      [-44, 42],
+      [-11, 60],
+      [15, 39],
+      [85, 48],
+      [82, -2],
+      [27, 44]
+    ],
+    [
+      [608, 2435],
+      [4, -3]
+    ],
+    [
+      [612, 2432],
+      [-22, -44],
+      [79, 13],
+      [25, -26],
+      [83, 2],
+      [48, -75],
+      [11, -39],
+      [39, -6],
+      [63, -40],
+      [19, 23],
+      [61, 14]
+    ],
+    [
+      [1020, 2252],
+      [44, 1],
+      [40, -21],
+      [21, -37],
+      [56, -10],
+      [100, 39],
+      [10, 50],
+      [-85, 62],
+      [-34, 13],
+      [-37, 53],
+      [-67, 73],
+      [-38, 12],
+      [-132, 83],
+      [-25, 38]
+    ],
+    [
+      [873, 2608],
+      [15, 23]
+    ],
+    [
+      [888, 2631],
+      [24, 9],
+      [71, -55],
+      [36, 7],
+      [35, -43],
+      [63, -40],
+      [23, -54],
+      [131, -55],
+      [84, -55],
+      [98, -22],
+      [53, -26],
+      [190, 73],
+      [47, 31],
+      [35, 44],
+      [15, 48],
+      [41, 35],
+      [53, 7]
+    ],
+    [
+      [404, 2049],
+      [2, 41],
+      [39, 63],
+      [9, 20],
+      [1, 26],
+      [-1, 5]
+    ],
+    [
+      [1180, 2423],
+      [29, -56],
+      [46, -8],
+      [22, 26],
+      [-97, 38]
+    ],
+    [
+      [612, 2432],
+      [35, 60],
+      [102, 52],
+      [52, -1],
+      [40, -53],
+      [-1, -68],
+      [42, -99],
+      [79, -9],
+      [53, -23],
+      [4, -37]
+    ],
+    [
+      [608, 2435],
+      [33, 72],
+      [-13, 39],
+      [16, 36],
+      [161, 67],
+      [68, -41]
+    ],
+    [
+      [888, 2631],
+      [13, 40],
+      [-45, 77],
+      [27, 49],
+      [-14, 41],
+      [-55, -18],
+      [-7, 30],
+      [32, 55],
+      [9, 85],
+      [82, -32],
+      [59, 71],
+      [186, 266],
+      [41, 45],
+      [72, 111],
+      [60, 110],
+      [109, 258]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0007705376781471888, 0.00041178641301035853],
+    "translate": [3.371388912200927, 50.75516510009777]
+  },
+  "objects": {
+    "netherlands": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-DR",
+            "NAME_0": "Netherlands",
+            "ID_1": 1,
+            "NAME_1": "Drenthe",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[4, 5]], [[6, 7, 8]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-FL",
+            "NAME_0": "Netherlands",
+            "ID_1": 2,
+            "NAME_1": "Flevoland",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[9]], [[10, -3, 11, -9, 12, 13, 14]], [[15]], [[16]], [[17]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-FR",
+            "NAME_0": "Netherlands",
+            "ID_1": 3,
+            "NAME_1": "Friesland",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Frise|Frisia|Frísia"
+          }
+        },
+        {
+          "arcs": [[18, 19, 20, 21, 22, 23, 24]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-GE",
+            "NAME_0": "Netherlands",
+            "ID_1": 4,
+            "NAME_1": "Gelderland",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Geldern|Gheldria|Guelders|Gueldre"
+          }
+        },
+        {
+          "arcs": [[[-4, -11, 25]], [[26]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-GR",
+            "NAME_0": "Netherlands",
+            "ID_1": 5,
+            "NAME_1": "Groningen",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Groninga|Groningue"
+          }
+        },
+        {
+          "arcs": [[27, 28, -13, -8, 29, -6, 30, -24, 31, 32]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-YS",
+            "NAME_0": "Netherlands",
+            "ID_1": 6,
+            "NAME_1": "IJsselmeer",
+            "TYPE_1": "Water body",
+            "ENGTYPE_1": "Water body",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[33, 34, -20]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-LI",
+            "NAME_0": "Netherlands",
+            "ID_1": 7,
+            "NAME_1": "Limburg",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Limbourg|Limburgo"
+          }
+        },
+        {
+          "arcs": [[-35, 35, 36, 37, 38, 39, 40, -21]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-NB",
+            "NAME_0": "Netherlands",
+            "ID_1": 8,
+            "NAME_1": "Noord-Brabant",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Brabante del Norte|Brabante do Norte|Brabante settentrionale|Brabant-septentrional|Nord-Brabant|Nort"
+          }
+        },
+        {
+          "arcs": [[[41, 42, 43, -33]], [[44, -14, -29]], [[45]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-NH",
+            "NAME_0": "Netherlands",
+            "ID_1": 9,
+            "NAME_1": "Noord-Holland",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Holanda do Norte|Hollande-septentrionale|North Holland"
+          }
+        },
+        {
+          "arcs": [[46, -25, -31, -5, -30, -7, -12, -2]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-OV",
+            "NAME_0": "Netherlands",
+            "ID_1": 10,
+            "NAME_1": "Overijssel",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-32, -23, 47, -42]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-UT",
+            "NAME_0": "Netherlands",
+            "ID_1": 11,
+            "NAME_1": "Utrecht",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[48]], [[49, 50, -37, 51, 52]], [[-39, 53]], [[54, 55, 56, 57, 58]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-ZE",
+            "NAME_0": "Netherlands",
+            "ID_1": 12,
+            "NAME_1": "Zeeland",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Zelanda|Zélande|Zelândia"
+          }
+        },
+        {
+          "arcs": [[[-56, 59, 60, 61, -40, -54, -38, -51, -53, 62], [63]], [[-59, 64]], [[-50]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-ZM",
+            "NAME_0": "Netherlands",
+            "ID_1": 13,
+            "NAME_1": "Zeeuwse meren",
+            "TYPE_1": "Water body",
+            "ENGTYPE_1": "Water body",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[-64]], [[-60, -55, -65, -58, 65]], [[-48, -22, -41, -62, 66, -43]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 158,
+            "ISO": "NL-ZH",
+            "NAME_0": "Netherlands",
+            "ID_1": 14,
+            "NAME_1": "Zuid-Holland",
+            "TYPE_1": "Provincie",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Hollande-méridionale|South Holland"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/portugal-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/portugal-topo.json
new file mode 100644
index 0000000..2b0247e
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/portugal-topo.json
@@ -0,0 +1,1911 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [41133, 13807],
+      [-96, -63],
+      [-12, -51],
+      [-9, -135],
+      [20, -66],
+      [-6, -46],
+      [-67, -98],
+      [-30, -127],
+      [32, -45],
+      [-27, -55],
+      [58, -37],
+      [16, -51],
+      [45, -67],
+      [79, -90],
+      [46, -89],
+      [55, -59],
+      [0, -46],
+      [60, -116]
+    ],
+    [
+      [41297, 12566],
+      [-40, -38],
+      [-36, 6],
+      [-80, 111],
+      [16, 50],
+      [-76, 23],
+      [-45, 57],
+      [-34, 104],
+      [-93, -20],
+      [-34, -46],
+      [-74, -17],
+      [-26, -63],
+      [-82, -97],
+      [-62, -34],
+      [-1, -35],
+      [-141, 12],
+      [-13, 20],
+      [-80, 14],
+      [-59, -20],
+      [-71, 30],
+      [-82, 72],
+      [-54, 18],
+      [-22, -19],
+      [-72, 25],
+      [-168, 105],
+      [-63, 26],
+      [-26, -32],
+      [-41, -4],
+      [-41, 56],
+      [-48, -17],
+      [-68, 3],
+      [-33, -15],
+      [-57, 15]
+    ],
+    [
+      [39491, 12856],
+      [-57, 50],
+      [-122, 24],
+      [-14, 40],
+      [-78, 1],
+      [67, 88],
+      [-10, 52],
+      [-62, 17],
+      [26, 33],
+      [-43, 107],
+      [-38, 39],
+      [-19, 47],
+      [-52, -19],
+      [-40, -36],
+      [-40, 11],
+      [-51, -20],
+      [-37, 70],
+      [-59, -45],
+      [-69, 7],
+      [-74, 48],
+      [-40, -8],
+      [-30, 128],
+      [76, 82],
+      [37, 20],
+      [37, 51],
+      [65, 32],
+      [69, 153],
+      [-96, 5]
+    ],
+    [
+      [38837, 13833],
+      [79, 97],
+      [51, -30],
+      [88, 96],
+      [18, -32],
+      [49, 67],
+      [72, -29],
+      [29, 42],
+      [34, 2],
+      [54, -40],
+      [34, -53],
+      [48, 23],
+      [42, -45],
+      [40, -15],
+      [-3, -41],
+      [57, -22],
+      [30, 71],
+      [-51, 10],
+      [-52, 88],
+      [43, 35],
+      [-189, 92],
+      [47, 69],
+      [25, 108]
+    ],
+    [
+      [39382, 14326],
+      [31, -6],
+      [31, 51],
+      [68, 42],
+      [82, -9],
+      [-28, -41],
+      [30, -77],
+      [42, 98],
+      [53, -12],
+      [57, -59],
+      [-11, -38],
+      [19, -42],
+      [71, 14],
+      [17, 30],
+      [55, 18],
+      [85, -143],
+      [89, -20],
+      [88, 4],
+      [35, 16],
+      [33, 68],
+      [59, -59],
+      [25, 37],
+      [50, -28],
+      [49, 24],
+      [36, 58],
+      [68, -3],
+      [38, 34],
+      [-18, 54],
+      [34, 35],
+      [35, -49],
+      [36, 7],
+      [66, -55],
+      [-22, -84],
+      [74, -50],
+      [-9, -34],
+      [15, -87],
+      [40, -80],
+      [84, -31],
+      [47, 25],
+      [-11, 35],
+      [53, 34],
+      [27, -28],
+      [57, 44],
+      [59, -88],
+      [-37, -50],
+      [9, -41],
+      [40, -33]
+    ],
+    [
+      [39321, 18903],
+      [46, -18],
+      [-1, -88],
+      [50, -10],
+      [52, -55],
+      [60, -22],
+      [88, 67],
+      [4, -47],
+      [-74, -100],
+      [20, -53],
+      [-13, -44],
+      [43, -68],
+      [-38, -39],
+      [-70, 36],
+      [-42, -43],
+      [-70, 41],
+      [-40, -20],
+      [31, -62],
+      [-64, -144],
+      [-101, -55],
+      [12, -57],
+      [49, -37],
+      [15, -56],
+      [-10, -51],
+      [84, -65],
+      [-107, -44],
+      [33, -61],
+      [6, -64],
+      [60, -63],
+      [-56, -4],
+      [-72, -38],
+      [-16, -37],
+      [27, -41],
+      [-62, -105],
+      [-2, -92]
+    ],
+    [
+      [39163, 17364],
+      [-3, -43],
+      [-74, -12],
+      [-14, -40],
+      [-67, -14],
+      [-10, -85],
+      [-58, 29],
+      [-64, 4],
+      [17, 41],
+      [53, 6],
+      [-12, 67],
+      [15, 95],
+      [-59, 70],
+      [-41, -31],
+      [-65, 13],
+      [15, 84],
+      [-25, 64],
+      [-60, 5],
+      [-19, -36],
+      [1, -69],
+      [-29, -22],
+      [-51, 23],
+      [-41, 54],
+      [-140, 135]
+    ],
+    [
+      [38432, 17702],
+      [63, 272],
+      [37, 3],
+      [9, 29],
+      [51, 14],
+      [41, 60],
+      [-28, 192],
+      [-32, -49],
+      [3, -85],
+      [-34, -45],
+      [3, -43],
+      [-39, -71],
+      [-23, 0],
+      [96, 347],
+      [63, 276],
+      [27, 191]
+    ],
+    [
+      [38669, 18793],
+      [67, 21],
+      [20, -25],
+      [63, 3],
+      [27, 48],
+      [45, -48],
+      [45, -6],
+      [23, 47],
+      [46, 42],
+      [38, -72],
+      [51, -18],
+      [4, 84],
+      [72, -23],
+      [111, 86],
+      [40, -29]
+    ],
+    [
+      [10555, 9984],
+      [52, -4],
+      [5, -57],
+      [60, -51],
+      [4, -74],
+      [-84, -7],
+      [-43, 46],
+      [-112, -21],
+      [-24, 25],
+      [-24, 75],
+      [38, 46],
+      [128, 22]
+    ],
+    [
+      [9957, 11767],
+      [60, 3],
+      [102, 43],
+      [33, 34],
+      [60, -15],
+      [79, -4],
+      [118, 10],
+      [42, -18],
+      [26, -94],
+      [-27, -108],
+      [-39, -36],
+      [-73, -12],
+      [-63, 23],
+      [-72, -28],
+      [-98, -22],
+      [-28, -24],
+      [-94, 5],
+      [-73, -7],
+      [-91, 11],
+      [-76, 47],
+      [-117, 20],
+      [-95, -33],
+      [-151, 110],
+      [-40, 42],
+      [-71, 57],
+      [-24, 72],
+      [52, 55],
+      [73, 55],
+      [104, -51],
+      [72, -111],
+      [90, -12],
+      [72, -39],
+      [99, 21],
+      [46, 39],
+      [72, -40],
+      [32, 7]
+    ],
+    [
+      [4867, 13388],
+      [45, -8],
+      [131, -72],
+      [30, -42],
+      [87, -14],
+      [123, -95],
+      [197, -31],
+      [46, -68],
+      [-89, -26],
+      [-165, 22],
+      [-30, -28],
+      [-76, -32],
+      [-59, 67],
+      [-153, -1],
+      [-66, 30],
+      [-72, -13],
+      [-121, 68],
+      [-42, 76],
+      [5, 98],
+      [40, 43],
+      [62, 24],
+      [42, -10],
+      [65, 12]
+    ],
+    [
+      [4355, 13570],
+      [89, -31],
+      [24, -28],
+      [75, -39],
+      [-13, -84],
+      [-30, -81],
+      [-155, -16],
+      [-49, 17],
+      [-16, 76],
+      [-102, 52],
+      [-29, 42],
+      [74, 21],
+      [59, -3],
+      [73, 74]
+    ],
+    [
+      [5034, 13817],
+      [93, -25],
+      [51, -31],
+      [152, -54],
+      [50, -31],
+      [132, -47],
+      [23, 3],
+      [81, -62],
+      [342, -175],
+      [39, -38],
+      [-34, -24],
+      [-91, -6],
+      [-128, 70],
+      [-69, 52],
+      [-140, 28],
+      [-52, 44],
+      [-111, 36],
+      [-173, 103],
+      [-17, 37],
+      [-65, 31],
+      [-83, 89]
+    ],
+    [
+      [6845, 13920],
+      [48, -25],
+      [47, 9],
+      [124, -32],
+      [47, 9],
+      [70, -56],
+      [0, -100],
+      [32, -24],
+      [-52, -70],
+      [-11, -58],
+      [-91, -2],
+      [-55, 20],
+      [-175, 8],
+      [-17, -11],
+      [-128, 78],
+      [-29, 43],
+      [-18, 87],
+      [30, 77],
+      [51, 27],
+      [127, 20]
+    ],
+    [
+      [5526, 14566],
+      [60, -22],
+      [78, -151],
+      [-38, -20],
+      [-130, 55],
+      [-40, 78],
+      [44, 58],
+      [26, 2]
+    ],
+    [
+      [178, 15460],
+      [19, -64],
+      [39, -45],
+      [-60, -150],
+      [-55, -28],
+      [-96, 6],
+      [-25, 96],
+      [9, 154],
+      [43, 56],
+      [33, 13],
+      [33, -36],
+      [60, -2]
+    ],
+    [
+      [287, 15852],
+      [-29, -26],
+      [-28, 73],
+      [44, 50],
+      [35, -40],
+      [-22, -57]
+    ],
+    [
+      [41297, 12566],
+      [41, -41],
+      [45, 38],
+      [50, -9],
+      [28, 46],
+      [119, 32],
+      [15, -36],
+      [-61, -91],
+      [17, -59],
+      [-52, -96],
+      [-1, -78],
+      [-29, -74],
+      [-64, -15],
+      [-30, 28],
+      [-79, 31],
+      [-32, -23],
+      [-3, -43],
+      [-51, -38],
+      [-46, 18],
+      [-102, -22],
+      [-28, -32],
+      [23, -51],
+      [-11, -67],
+      [-47, -57],
+      [5, -46],
+      [-77, -135],
+      [-39, -24],
+      [-82, -87],
+      [-47, -23],
+      [-16, -77],
+      [-27, -48],
+      [5, -75],
+      [-71, -114],
+      [-36, -100],
+      [-26, -30],
+      [17, -59]
+    ],
+    [
+      [40605, 11109],
+      [-86, -10],
+      [-57, -20],
+      [-41, -50],
+      [-72, 35],
+      [-119, -20],
+      [-37, -37],
+      [-174, -93],
+      [-64, -9],
+      [-17, -36],
+      [-60, -29],
+      [-68, 4],
+      [-38, -19],
+      [-9, -86],
+      [-43, -13],
+      [-60, -74],
+      [-158, 33],
+      [-74, 39],
+      [-76, 57],
+      [-50, 25],
+      [-19, 94],
+      [-97, -13],
+      [-37, 10],
+      [-91, -23],
+      [-7, -54],
+      [-59, -45],
+      [-66, 25],
+      [-44, -10],
+      [-90, 67],
+      [-86, -28],
+      [-22, -47],
+      [-40, 45],
+      [-81, 5],
+      [-45, -12],
+      [-34, 77],
+      [-74, 28]
+    ],
+    [
+      [38410, 10925],
+      [4, 147],
+      [15, 51],
+      [-11, 56],
+      [-47, 89],
+      [41, 170],
+      [5, 98],
+      [-30, 47],
+      [5, 73],
+      [24, 99]
+    ],
+    [
+      [38416, 11755],
+      [18, -28],
+      [96, 3],
+      [73, -121],
+      [40, 33],
+      [47, -34],
+      [77, 9],
+      [7, 93],
+      [55, 106],
+      [33, 17],
+      [91, 0],
+      [29, 23],
+      [64, 3],
+      [97, -13],
+      [54, 8],
+      [63, 76],
+      [-17, 27],
+      [23, 87],
+      [1, 93],
+      [-33, 51],
+      [-66, 24],
+      [-93, 86],
+      [37, 110],
+      [31, -30],
+      [53, 88],
+      [78, -8],
+      [12, 105],
+      [76, -16],
+      [17, 39],
+      [46, 8],
+      [64, 37],
+      [61, 14],
+      [0, 93],
+      [-23, 70],
+      [-36, 48]
+    ],
+    [
+      [39816, 19584],
+      [-26, -63],
+      [-79, -61],
+      [-51, 54],
+      [-36, -31],
+      [-57, 30],
+      [-45, 47],
+      [-34, 79],
+      [-33, 21],
+      [-64, 0],
+      [-88, -99],
+      [-7, -42],
+      [-43, -6],
+      [-42, 50],
+      [-113, -8],
+      [-37, 20],
+      [-44, -19],
+      [-23, 29],
+      [-79, -16],
+      [-62, -56],
+      [-111, 6],
+      [-35, 84],
+      [52, 24],
+      [-22, 39],
+      [-77, 16],
+      [-12, 36],
+      [-44, 29],
+      [-30, -16],
+      [-78, 59],
+      [-49, 5]
+    ],
+    [
+      [38447, 19795],
+      [-23, 68],
+      [5, 73],
+      [-34, 111],
+      [-8, 59]
+    ],
+    [
+      [38387, 20106],
+      [91, 5],
+      [56, 42],
+      [103, 19],
+      [35, 27],
+      [67, -45],
+      [46, 19],
+      [21, -38],
+      [41, 13],
+      [-11, 70],
+      [44, 36],
+      [14, 92],
+      [48, 13],
+      [122, 70],
+      [183, 5],
+      [27, 46],
+      [35, -24],
+      [67, 36],
+      [60, 54],
+      [54, 13]
+    ],
+    [
+      [39490, 20559],
+      [58, -20],
+      [63, -2],
+      [73, 25]
+    ],
+    [
+      [39684, 20562],
+      [-17, -123],
+      [-26, -30],
+      [-30, -94],
+      [-42, -33],
+      [121, 1],
+      [87, -11],
+      [26, -22],
+      [-29, -54],
+      [4, -110],
+      [51, 2],
+      [149, -35],
+      [38, 29],
+      [47, 2],
+      [33, -64],
+      [-38, -36],
+      [-49, -99],
+      [-47, -7],
+      [-24, -43],
+      [-60, -26],
+      [-6, -104],
+      [-43, -40],
+      [-13, -81]
+    ],
+    [
+      [41599, 18822],
+      [-135, 25],
+      [-28, -5],
+      [-42, 43],
+      [-85, 49],
+      [0, 57],
+      [22, 57],
+      [-59, 5],
+      [14, 37],
+      [-57, 12],
+      [-23, -63],
+      [-50, -3],
+      [-101, 41],
+      [-57, -21],
+      [-37, 9]
+    ],
+    [
+      [40961, 19065],
+      [-88, 17],
+      [-56, 100],
+      [-74, 40]
+    ],
+    [
+      [40743, 19222],
+      [29, 81],
+      [43, -11],
+      [-2, 95],
+      [74, 145],
+      [-32, 100],
+      [2, 95],
+      [62, 43],
+      [37, 3],
+      [17, 84],
+      [23, 36],
+      [94, 16],
+      [-50, 89],
+      [0, 60],
+      [26, 114],
+      [50, 86],
+      [9, 67],
+      [56, 56],
+      [8, 72],
+      [-39, 30],
+      [-25, 57],
+      [14, 154]
+    ],
+    [
+      [41139, 20694],
+      [46, 87],
+      [-18, 31],
+      [-4, 80],
+      [77, 47],
+      [92, -38],
+      [18, -47],
+      [121, -3],
+      [40, 50],
+      [43, -10],
+      [23, -53],
+      [101, -10],
+      [109, 13],
+      [20, 52],
+      [-3, 50],
+      [73, -18],
+      [31, -89],
+      [87, -23],
+      [172, 33],
+      [41, 27],
+      [50, -66],
+      [-43, -104],
+      [91, -18],
+      [-45, -202],
+      [-35, -70],
+      [28, -146],
+      [61, -53],
+      [41, -8],
+      [53, 19],
+      [9, 32],
+      [167, -10],
+      [90, -32],
+      [81, -63],
+      [32, -58],
+      [47, -17],
+      [33, -54],
+      [-39, -34],
+      [-43, -83],
+      [-36, -21],
+      [-20, -56],
+      [-61, -81],
+      [18, -32],
+      [-54, -41],
+      [19, -58],
+      [-63, -26],
+      [-32, 30],
+      [-33, -18],
+      [18, -61],
+      [-61, -18],
+      [-38, -94],
+      [-53, -9],
+      [-191, -137],
+      [-46, 23],
+      [-70, -4],
+      [-74, -87],
+      [-17, -61],
+      [-67, -69],
+      [-46, -31],
+      [23, -68],
+      [-94, -149],
+      [-102, -21],
+      [-79, 25],
+      [-28, -20]
+    ],
+    [
+      [41565, 17123],
+      [-105, -71],
+      [-14, -65],
+      [10, -133],
+      [27, -36],
+      [100, -16],
+      [56, -101],
+      [46, -53],
+      [9, -109],
+      [-19, -29],
+      [2, -86],
+      [-36, -36],
+      [13, -49],
+      [-8, -68],
+      [-47, -41],
+      [-7, -30],
+      [-88, -63],
+      [17, -83],
+      [-29, -67],
+      [11, -29],
+      [-31, -59],
+      [-17, -69],
+      [-67, -24],
+      [-125, 7],
+      [-40, -21],
+      [-171, 30],
+      [-56, -12],
+      [-81, -45],
+      [-75, 22],
+      [-44, -10],
+      [-91, 35],
+      [-136, 11],
+      [-13, -8]
+    ],
+    [
+      [40556, 15815],
+      [-64, -11],
+      [-49, -47],
+      [-70, -27],
+      [-42, 53],
+      [-71, -49],
+      [-11, -70],
+      [-58, -15],
+      [-26, -53],
+      [-51, -44],
+      [-43, -15]
+    ],
+    [
+      [40071, 15537],
+      [22, 67],
+      [-40, 59],
+      [-23, 64],
+      [-111, 97],
+      [-61, 26],
+      [-14, 126],
+      [-57, -18],
+      [-23, 33],
+      [-50, 7],
+      [-35, -25],
+      [7, -39],
+      [-20, -53],
+      [2, -56],
+      [-28, -21],
+      [40, -92],
+      [-138, -12],
+      [-32, 28],
+      [-112, 28],
+      [-26, 32],
+      [7, 81],
+      [-12, 92],
+      [8, 72],
+      [-54, 13],
+      [-36, 60]
+    ],
+    [
+      [39285, 16106],
+      [-14, 28],
+      [39, 36],
+      [-6, 40],
+      [106, 16],
+      [20, 32],
+      [87, 45],
+      [52, 108]
+    ],
+    [
+      [39569, 16411],
+      [54, 41],
+      [98, 27],
+      [64, 47],
+      [50, -1],
+      [18, 36],
+      [55, -9],
+      [24, 23],
+      [-16, 53],
+      [103, 58],
+      [79, -15],
+      [5, 58],
+      [51, -22],
+      [74, 77],
+      [-5, 45],
+      [-99, 78],
+      [-23, 49],
+      [40, 58],
+      [3, 48]
+    ],
+    [
+      [40144, 17062],
+      [83, 15],
+      [41, 53],
+      [83, 23],
+      [73, 63],
+      [10, 49],
+      [129, -9],
+      [34, 59],
+      [2, 48],
+      [50, 62],
+      [43, 16],
+      [95, -46],
+      [43, 3],
+      [92, 62],
+      [59, 12],
+      [38, -18],
+      [-11, -79],
+      [6, -51],
+      [-61, -102],
+      [-17, -48],
+      [78, -33],
+      [65, -8],
+      [51, 52],
+      [63, -40],
+      [56, 34],
+      [8, 57],
+      [49, 26],
+      [34, -93],
+      [86, -1],
+      [32, 26],
+      [107, -71]
+    ],
+    [
+      [39163, 17364],
+      [79, -12],
+      [101, -85],
+      [72, 41],
+      [63, 5],
+      [34, -14],
+      [67, 9],
+      [43, 43],
+      [83, 56],
+      [61, 11],
+      [50, 30],
+      [35, 41],
+      [40, 12],
+      [79, 97],
+      [64, 49],
+      [31, 7]
+    ],
+    [
+      [40065, 17654],
+      [2, -37],
+      [52, -54],
+      [-23, -39],
+      [-55, -14],
+      [-4, -42],
+      [31, -24],
+      [51, 4],
+      [0, -96],
+      [55, -99],
+      [-62, -16],
+      [-29, -60],
+      [61, -115]
+    ],
+    [
+      [39569, 16411],
+      [15, 82],
+      [-80, 123],
+      [22, 100],
+      [-60, 37],
+      [-53, -83],
+      [-40, 33],
+      [-73, -47],
+      [-37, -80],
+      [44, -74],
+      [-23, -22],
+      [-57, 20],
+      [-69, -86],
+      [-70, -21],
+      [16, 55],
+      [-20, 110],
+      [-40, 56],
+      [-111, -89],
+      [-55, -5],
+      [-1, -38],
+      [-48, -11],
+      [-1, 138],
+      [-64, 9],
+      [-46, -81],
+      [-95, 79],
+      [-105, 10],
+      [-50, 20],
+      [-37, -10],
+      [-28, -53],
+      [-160, 70]
+    ],
+    [
+      [38243, 16653],
+      [45, 139],
+      [11, 67],
+      [-23, 53],
+      [-59, 53],
+      [52, 133],
+      [61, 195],
+      [102, 409]
+    ],
+    [
+      [39871, 9964],
+      [44, -16],
+      [41, -48],
+      [-56, -18],
+      [-84, 78],
+      [55, 4]
+    ],
+    [
+      [40085, 10010],
+      [11, -5],
+      [-3, -25],
+      [-67, -32],
+      [-12, 22],
+      [52, 35],
+      [19, 5]
+    ],
+    [
+      [40605, 11109],
+      [32, -7],
+      [65, -161],
+      [-10, -94],
+      [37, -36],
+      [-8, -96],
+      [6, -88],
+      [33, -72],
+      [-17, -62],
+      [20, -16],
+      [24, -149],
+      [-91, 12],
+      [-91, -24],
+      [-151, -70],
+      [-33, -53],
+      [-294, -205],
+      [-21, 15],
+      [-17, 9],
+      [-20, -2],
+      [-75, -42],
+      [-31, -58],
+      [-39, 41],
+      [-56, 14],
+      [-71, -5],
+      [-160, 113],
+      [-51, 29],
+      [-130, 47],
+      [-80, -16],
+      [-31, 8],
+      [-90, -31],
+      [-48, 37],
+      [-69, 27],
+      [-46, -25],
+      [-67, -11],
+      [-110, 33],
+      [-104, 43],
+      [-122, 5],
+      [-89, -81],
+      [-73, 2],
+      [-107, -53],
+      [-61, 4],
+      [-59, -43],
+      [-59, -6],
+      [-19, -40],
+      [-41, -46],
+      [-51, 43],
+      [-38, 9],
+      [7, 65],
+      [30, 40],
+      [4, 44],
+      [33, 29],
+      [56, 143],
+      [-11, 26],
+      [45, 77],
+      [45, 109],
+      [-25, 74],
+      [5, 44],
+      [84, 145],
+      [27, 97],
+      [18, 24]
+    ],
+    [
+      [40782, 18586],
+      [52, -46],
+      [-16, -35],
+      [-64, 3],
+      [-8, 37],
+      [36, 41]
+    ],
+    [
+      [41599, 18822],
+      [0, -27],
+      [96, -124],
+      [26, -22],
+      [38, -133],
+      [48, -16],
+      [11, -81],
+      [-35, -30],
+      [12, -79],
+      [-15, -25],
+      [-9, -93],
+      [34, -58],
+      [20, -135],
+      [-12, -49],
+      [-56, -89],
+      [-11, -59],
+      [76, -34],
+      [10, -86],
+      [-34, -22],
+      [-59, -110],
+      [18, -81],
+      [99, -112],
+      [-16, -65],
+      [-47, -21],
+      [-79, -63],
+      [-7, -70],
+      [-67, -23],
+      [-75, 8]
+    ],
+    [
+      [40065, 17654],
+      [10, 21],
+      [67, -2],
+      [43, 43],
+      [77, 37],
+      [79, 22],
+      [54, 32],
+      [51, -7],
+      [29, 45],
+      [46, 111],
+      [34, 52],
+      [-35, 77],
+      [-52, 47],
+      [-7, 28],
+      [45, 42],
+      [-23, 39],
+      [-71, 41],
+      [59, 101],
+      [5, 44],
+      [51, 51],
+      [76, -8],
+      [60, -82],
+      [47, -41],
+      [26, 24],
+      [59, 121],
+      [43, 17],
+      [4, 56],
+      [65, 47],
+      [19, 84],
+      [-78, 44],
+      [61, 67],
+      [-13, 77],
+      [34, 136],
+      [31, 45]
+    ],
+    [
+      [38072, 15007],
+      [-55, -7],
+      [-22, 37],
+      [-46, -1],
+      [-97, -91],
+      [-6, -51],
+      [-57, -52],
+      [-48, -2],
+      [-25, 59],
+      [23, 47],
+      [-24, 75],
+      [-125, 11],
+      [-39, -53],
+      [-72, 18]
+    ],
+    [
+      [37479, 14997],
+      [-29, 62],
+      [-1, 88],
+      [100, 55],
+      [124, 112],
+      [95, 143],
+      [32, 19],
+      [70, 78],
+      [67, 105],
+      [-18, 63],
+      [58, 174],
+      [-1, 44],
+      [32, 101],
+      [51, 114],
+      [89, 236],
+      [95, 262]
+    ],
+    [
+      [39285, 16106],
+      [-64, 11],
+      [-31, -62],
+      [-68, -46],
+      [-28, 20],
+      [-46, -15],
+      [-15, -31],
+      [-52, 73],
+      [-8, 75],
+      [-27, 60],
+      [-58, -17],
+      [-66, -77],
+      [-80, -28],
+      [-56, 24],
+      [-77, -49],
+      [13, -80],
+      [-11, -47],
+      [67, -19],
+      [-18, -91],
+      [-89, -53],
+      [26, -57],
+      [1, -68],
+      [26, -38],
+      [-74, -90],
+      [-54, 18],
+      [25, -109],
+      [-40, -7],
+      [-81, 14],
+      [-75, -23],
+      [-59, 4],
+      [-39, -18],
+      [-49, -94],
+      [-23, -71],
+      [-44, 5],
+      [-51, -85],
+      [25, -82],
+      [-13, -46]
+    ],
+    [
+      [38072, 15007],
+      [33, -21],
+      [-15, -74],
+      [36, 4],
+      [87, -45],
+      [49, 36],
+      [38, -47],
+      [44, -10],
+      [22, -78],
+      [-56, -25],
+      [-56, 16],
+      [-28, -51],
+      [53, -67],
+      [112, -61],
+      [44, -102],
+      [-32, -9],
+      [-24, -48],
+      [-48, -5],
+      [-38, -114],
+      [16, -30],
+      [-54, -38],
+      [-6, -43],
+      [-36, -57],
+      [0, -32],
+      [-98, -134]
+    ],
+    [
+      [38115, 13972],
+      [-34, 62],
+      [-9, 61],
+      [10, 81],
+      [-25, 31],
+      [-27, -94],
+      [-33, -52],
+      [-49, -35],
+      [-36, -85],
+      [-9, -119],
+      [-21, -64],
+      [-67, -54],
+      [-120, -29],
+      [-72, 18],
+      [-50, -7],
+      [-53, -42],
+      [-66, 17],
+      [-62, 37],
+      [-49, -25],
+      [-68, 10],
+      [-44, 28],
+      [24, 93],
+      [-49, 67],
+      [42, 78],
+      [55, 129],
+      [49, 151],
+      [-16, 167],
+      [15, 54],
+      [-10, 68],
+      [106, 211],
+      [34, 121],
+      [6, 89],
+      [-8, 58]
+    ],
+    [
+      [25224, 108],
+      [33, -91],
+      [-7, -17],
+      [-73, 166],
+      [-6, 26],
+      [53, -84]
+    ],
+    [
+      [24102, 852],
+      [27, -46],
+      [60, -44],
+      [25, -21],
+      [84, -21],
+      [118, 40],
+      [139, 18],
+      [67, -62],
+      [6, -20],
+      [73, -64],
+      [2, 0],
+      [4, -2],
+      [149, -45],
+      [59, 11],
+      [6, -22],
+      [-68, 0],
+      [-35, -18],
+      [-47, -95],
+      [-34, -13],
+      [-49, -81],
+      [-75, -14],
+      [-45, 11],
+      [-45, -12],
+      [-44, -18],
+      [-72, 40],
+      [-52, 3],
+      [-119, 59],
+      [-29, -2],
+      [-60, 55],
+      [-126, 74],
+      [-55, 79],
+      [1, 24],
+      [-2, 4],
+      [-2, 7],
+      [-33, 58],
+      [118, 121],
+      [54, -4]
+    ],
+    [
+      [25578, 1356],
+      [7, -20],
+      [8, -27],
+      [-3, -32],
+      [-52, 1],
+      [-88, -80],
+      [-31, 33],
+      [26, 36],
+      [4, 6],
+      [3, 18],
+      [11, 33],
+      [81, 52],
+      [34, -20]
+    ],
+    [
+      [39382, 14326],
+      [-55, 55],
+      [-13, 89],
+      [-39, 13],
+      [0, 48],
+      [-90, 44],
+      [70, 109],
+      [6, 28],
+      [111, 42],
+      [86, 81],
+      [55, 68],
+      [-3, 51],
+      [32, 33],
+      [80, -27],
+      [102, 142],
+      [-3, 46],
+      [104, 48],
+      [50, 61],
+      [-12, 31],
+      [-83, 53],
+      [-23, 55],
+      [15, 70],
+      [24, 16],
+      [45, 108],
+      [85, -29],
+      [91, -76],
+      [30, 2],
+      [24, 50]
+    ],
+    [
+      [40556, 15815],
+      [54, -99],
+      [18, -64],
+      [55, -28],
+      [69, -97],
+      [65, -18],
+      [11, -72],
+      [98, -36],
+      [53, -41],
+      [-13, -76],
+      [-36, -89],
+      [21, -29],
+      [0, -61],
+      [135, -138],
+      [-28, -55],
+      [11, -100],
+      [34, -33],
+      [93, -26],
+      [60, -37],
+      [-14, -31],
+      [-7, -92],
+      [67, -21],
+      [88, 41],
+      [43, -5],
+      [81, -61],
+      [37, -73],
+      [-14, -33],
+      [15, -49],
+      [-47, -90],
+      [-46, -61],
+      [-22, -53],
+      [-45, -39],
+      [33, -62],
+      [-10, -31],
+      [-50, -23],
+      [-48, -84],
+      [-50, -2],
+      [-62, -75],
+      [-45, -24],
+      [-27, -41]
+    ],
+    [
+      [39816, 19584],
+      [45, -48],
+      [-30, -47],
+      [88, -59],
+      [-2, -68],
+      [33, -57],
+      [35, -14],
+      [-32, -73],
+      [11, -44],
+      [-44, -119],
+      [3, -33]
+    ],
+    [
+      [39923, 19022],
+      [-68, 6],
+      [-173, -73],
+      [-71, 25],
+      [-90, -37],
+      [-106, 20],
+      [-17, -26],
+      [-77, -34]
+    ],
+    [
+      [38669, 18793],
+      [-19, 79],
+      [-2, 85],
+      [-19, 109],
+      [-37, 64],
+      [-46, 76],
+      [-10, 118],
+      [-29, 116],
+      [1, 50],
+      [-27, 22],
+      [-13, 71],
+      [-40, 85],
+      [19, 127]
+    ],
+    [
+      [38837, 13833],
+      [-103, 31],
+      [1, 68],
+      [17, 71],
+      [-56, -22],
+      [-31, -47],
+      [-65, 37],
+      [-41, -1],
+      [-59, -106],
+      [-16, -76],
+      [-65, -20],
+      [-72, 60],
+      [-60, -29],
+      [-68, -14],
+      [-30, 40]
+    ],
+    [
+      [38189, 13825],
+      [-28, 34],
+      [18, 48],
+      [-23, 43],
+      [-41, 22]
+    ],
+    [
+      [38416, 11755],
+      [-12, 195],
+      [-21, 48],
+      [-72, 23],
+      [-49, 53],
+      [38, 36],
+      [49, 113],
+      [65, 206],
+      [28, 151],
+      [2, 192],
+      [-41, 255],
+      [29, 65],
+      [16, -27],
+      [60, 9],
+      [114, 0],
+      [-46, 51],
+      [-37, -2],
+      [-12, 162],
+      [-17, 73],
+      [-65, -35],
+      [-12, -54],
+      [43, -5],
+      [4, -40],
+      [-79, -14],
+      [-140, 90],
+      [-66, -27],
+      [-20, -46],
+      [-81, -20],
+      [-16, -31],
+      [-126, -66],
+      [-75, 17],
+      [-45, -29],
+      [-58, 0],
+      [-54, -45],
+      [-34, 7],
+      [45, 109],
+      [22, 99],
+      [-14, 108],
+      [-52, 135],
+      [-68, 101],
+      [32, 26],
+      [103, 9],
+      [50, -15],
+      [50, -52],
+      [64, -8],
+      [-6, 38],
+      [57, 34],
+      [72, -17],
+      [0, 72],
+      [-40, -7],
+      [-15, 36],
+      [66, 48],
+      [102, 53],
+      [35, -4]
+    ],
+    [
+      [38387, 20106],
+      [-30, 82],
+      [-3, 60],
+      [-54, 60],
+      [-34, 108],
+      [28, 127],
+      [-20, 58],
+      [5, 73],
+      [38, 15],
+      [56, 75],
+      [55, 14],
+      [66, 56],
+      [3, 48],
+      [144, 85],
+      [4, 50],
+      [38, 47],
+      [71, 21],
+      [83, -6],
+      [49, 56],
+      [115, 7],
+      [36, -23],
+      [83, 9],
+      [42, 30],
+      [43, -14],
+      [133, 117],
+      [48, -9],
+      [52, 34],
+      [16, -167],
+      [115, 22],
+      [38, -22],
+      [21, -55],
+      [-3, -68],
+      [-76, -28],
+      [-56, -46],
+      [-20, -61],
+      [-40, -35],
+      [-32, -58],
+      [40, -80],
+      [54, -34],
+      [-5, -95]
+    ],
+    [
+      [40743, 19222],
+      [-130, -30],
+      [-24, -38],
+      [-36, 18],
+      [-54, -60],
+      [-114, -4],
+      [-40, 8],
+      [-54, -46],
+      [-137, 23],
+      [-62, -14],
+      [-82, 28],
+      [-87, -85]
+    ],
+    [
+      [39684, 20562],
+      [66, 31],
+      [41, 75],
+      [68, 8],
+      [48, 23],
+      [25, 100],
+      [32, -1],
+      [-1, -133],
+      [38, -16],
+      [36, 49],
+      [114, 13],
+      [25, 26],
+      [52, -15],
+      [50, 34],
+      [86, -58],
+      [120, -5],
+      [-48, -71],
+      [64, -37],
+      [91, 27],
+      [61, 42],
+      [56, 9],
+      [38, -97],
+      [37, -10],
+      [32, 56],
+      [128, 1],
+      [98, 51],
+      [98, 30]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0005848950788891755, 0.0004541432399403744],
+    "translate": [-31.262424468994027, 32.48131179809599]
+  },
+  "objects": {
+    "portugal": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-07",
+            "NAME_0": "Portugal",
+            "ID_1": 1,
+            "NAME_1": "Évora",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[5, 6, 7, 8]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-01",
+            "NAME_0": "Portugal",
+            "ID_1": 2,
+            "NAME_1": "Aveiro",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[9]], [[10]], [[11]], [[12]], [[13]], [[14]], [[15]], [[16]], [[17]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-20",
+            "NAME_0": "Portugal",
+            "ID_1": 3,
+            "NAME_1": "Azores",
+            "TYPE_1": "Região autónoma",
+            "ENGTYPE_1": "Autonomous region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Açores"
+          }
+        },
+        {
+          "arcs": [[18, 19, 20, 21, -2]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-02",
+            "NAME_0": "Portugal",
+            "ID_1": 4,
+            "NAME_1": "Beja",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[22, 23, 24, 25, 26]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-03",
+            "NAME_0": "Portugal",
+            "ID_1": 5,
+            "NAME_1": "Braga",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[27, 28, 29, 30]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-04",
+            "NAME_0": "Portugal",
+            "ID_1": 6,
+            "NAME_1": "Bragança",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Braganza"
+          }
+        },
+        {
+          "arcs": [[31, 32, 33, 34, 35, 36]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-05",
+            "NAME_0": "Portugal",
+            "ID_1": 7,
+            "NAME_1": "Castelo Branco",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[37, 38, -36, 39, 40, -7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-06",
+            "NAME_0": "Portugal",
+            "ID_1": 8,
+            "NAME_1": "Coimbra",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[41]], [[42]], [[-20, 43]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-08",
+            "NAME_0": "Portugal",
+            "ID_1": 9,
+            "NAME_1": "Faro",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[44]], [[45, -37, -39, 46, -28]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-09",
+            "NAME_0": "Portugal",
+            "ID_1": 10,
+            "NAME_1": "Guarda",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[47, 48, -40, -35, 49]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-10",
+            "NAME_0": "Portugal",
+            "ID_1": 11,
+            "NAME_1": "Leiria",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-48, 50, 51]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-11",
+            "NAME_0": "Portugal",
+            "ID_1": 12,
+            "NAME_1": "Lisboa",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Lisbon|Lisbona|Lisbonne|Lissabon"
+          }
+        },
+        {
+          "arcs": [[[52]], [[53]], [[54]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-30",
+            "NAME_0": "Portugal",
+            "ID_1": 13,
+            "NAME_1": "Madeira",
+            "TYPE_1": "Regiões autônoma",
+            "ENGTYPE_1": "Autonomous region",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-5, 55, -33, 56]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-12",
+            "NAME_0": "Portugal",
+            "ID_1": 14,
+            "NAME_1": "Portalegre",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-23, 57, 58, -9, 59]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-13",
+            "NAME_0": "Portugal",
+            "ID_1": 15,
+            "NAME_1": "Porto",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Oporto"
+          }
+        },
+        {
+          "arcs": [[-34, -56, -4, 60, 61, -51, -50]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-14",
+            "NAME_0": "Portugal",
+            "ID_1": 16,
+            "NAME_1": "Santarém",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-61, -3, -22, 62]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-15",
+            "NAME_0": "Portugal",
+            "ID_1": 17,
+            "NAME_1": "Setúbal",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-25, 63]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-16",
+            "NAME_0": "Portugal",
+            "ID_1": 18,
+            "NAME_1": "Viana do Castelo",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Vianna do Castello"
+          }
+        },
+        {
+          "arcs": [[-30, 64, -58, -27, 65]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-17",
+            "NAME_0": "Portugal",
+            "ID_1": 19,
+            "NAME_1": "Vila Real",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Villa Real"
+          }
+        },
+        {
+          "arcs": [[-47, -38, -6, -59, -65, -29], [-45]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 182,
+            "ISO": "PT-18",
+            "NAME_0": "Portugal",
+            "ID_1": 20,
+            "NAME_1": "Viseu",
+            "TYPE_1": "Distrito",
+            "ENGTYPE_1": "District",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Vizeu"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/russia-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/russia-topo.json
new file mode 100644
index 0000000..2f1d910
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/russia-topo.json
@@ -0,0 +1,8430 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [41398, 1621],
+      [77, -41],
+      [46, 13],
+      [37, -48],
+      [18, -113],
+      [-26, 21],
+      [-19, -68],
+      [24, -76],
+      [-12, -101],
+      [12, -62],
+      [-24, -80],
+      [-21, -2],
+      [-54, 55],
+      [-43, -1],
+      [-16, 22],
+      [24, 56],
+      [46, -11],
+      [17, 65],
+      [-46, 47],
+      [-4, 87],
+      [30, 130],
+      [-45, 40],
+      [-28, -7],
+      [-6, -50],
+      [-30, -15],
+      [-86, 15],
+      [-75, 70],
+      [46, 12],
+      [38, -29],
+      [51, 15],
+      [69, 56]
+    ],
+    [
+      [50344, 4667],
+      [-22, 20],
+      [-67, -54],
+      [6, -163],
+      [-46, 4],
+      [-27, -41],
+      [-32, 17],
+      [-63, -12],
+      [13, -62],
+      [-87, -132],
+      [-93, -52],
+      [-30, -3],
+      [-55, -57],
+      [-48, -9],
+      [-19, -50],
+      [20, -60],
+      [57, -14],
+      [17, -46],
+      [-29, -61],
+      [-73, -24]
+    ],
+    [
+      [49766, 3868],
+      [-45, 97],
+      [-47, 32],
+      [-83, 30],
+      [-30, -48],
+      [-38, 13],
+      [-40, -74],
+      [-54, 7],
+      [-27, -14],
+      [-25, 24],
+      [-40, 1],
+      [-34, -25],
+      [-21, 28],
+      [-17, 72],
+      [-62, -15],
+      [16, 99],
+      [-88, 44],
+      [-11, -42],
+      [-34, 0],
+      [5, -95],
+      [-41, -19],
+      [-11, -39],
+      [-46, 28],
+      [-165, 467],
+      [-155, 374],
+      [-71, 145]
+    ],
+    [
+      [48602, 4958],
+      [20, 33],
+      [-4, 70],
+      [27, 2],
+      [36, -33],
+      [56, 18],
+      [20, 53],
+      [57, 1],
+      [101, 30],
+      [13, 31],
+      [121, 94],
+      [63, 70],
+      [70, 25],
+      [30, -63],
+      [64, -12],
+      [22, -66],
+      [41, -82],
+      [76, -26],
+      [-6, -20],
+      [56, -40],
+      [38, 49],
+      [19, 85],
+      [76, 82],
+      [131, 31],
+      [19, -7],
+      [54, 36],
+      [34, -22],
+      [37, 60],
+      [88, 51]
+    ],
+    [
+      [49961, 5408],
+      [20, -4],
+      [38, -82],
+      [24, 6],
+      [55, -59],
+      [56, -43],
+      [31, -68],
+      [16, -66],
+      [30, -55],
+      [73, -13],
+      [-39, -126],
+      [59, -63],
+      [-12, -64],
+      [8, -65],
+      [24, -39]
+    ],
+    [
+      [58612, 5939],
+      [23, -13],
+      [126, 2],
+      [68, 10],
+      [40, 22],
+      [38, -12],
+      [33, -141],
+      [-24, -56],
+      [-37, -12],
+      [-10, -55],
+      [-49, -15],
+      [-8, -31],
+      [-44, -49],
+      [-108, -81],
+      [0, -37],
+      [-33, -96],
+      [-61, -16],
+      [-34, -45],
+      [-11, -67],
+      [23, -43],
+      [55, -51],
+      [26, 17],
+      [53, -13],
+      [31, -103],
+      [14, -76],
+      [74, -98],
+      [22, 33],
+      [152, 12],
+      [49, 36],
+      [-3, 37],
+      [35, 29],
+      [53, 19],
+      [15, -26],
+      [58, -12],
+      [87, 57],
+      [45, -26],
+      [31, -114],
+      [-6, -56],
+      [-44, -86],
+      [4, -74],
+      [16, -28],
+      [-24, -40],
+      [3, -46],
+      [-98, 18],
+      [-148, 82],
+      [-7, -109],
+      [29, -44],
+      [-39, -56],
+      [-63, 5],
+      [-83, -94],
+      [-18, -59],
+      [-132, -57],
+      [-34, -37],
+      [17, -56],
+      [-49, -70],
+      [-29, -12],
+      [-25, -89],
+      [-33, -26],
+      [11, -38],
+      [-27, -87],
+      [42, 13],
+      [17, -56],
+      [-19, -30],
+      [92, -77],
+      [15, -44],
+      [8, -105],
+      [-4, -62],
+      [-22, -31],
+      [20, -49],
+      [0, -72],
+      [-23, -56]
+    ],
+    [
+      [58688, 3297],
+      [-31, 3],
+      [-24, -26],
+      [-26, -83],
+      [-32, -7],
+      [-42, -48]
+    ],
+    [
+      [58533, 3136],
+      [-23, 16],
+      [-35, -16],
+      [-66, 79],
+      [-12, 47],
+      [-61, 100],
+      [-26, 8],
+      [-50, -34],
+      [-23, 42],
+      [-42, 8],
+      [-12, 38],
+      [-60, 10],
+      [-24, -36],
+      [-57, 46],
+      [-30, -9],
+      [-29, 77],
+      [-25, 23],
+      [-3, 93],
+      [14, 74],
+      [-39, 21],
+      [-15, 75],
+      [14, 44],
+      [-47, 143],
+      [-36, 51],
+      [-4, 54],
+      [15, 49],
+      [-37, 54],
+      [9, 35],
+      [-68, 168],
+      [15, 80],
+      [-46, 38],
+      [7, 71],
+      [-93, 190],
+      [-51, 90],
+      [-73, 46],
+      [-39, 0],
+      [-28, -25],
+      [-87, 47],
+      [-24, 49],
+      [-25, -9],
+      [-51, 59],
+      [-61, 27],
+      [-49, 3],
+      [-80, -44],
+      [-74, -5],
+      [-21, 23],
+      [-53, -31]
+    ],
+    [
+      [56928, 5005],
+      [-18, 54],
+      [-2, 109],
+      [-28, 63],
+      [-32, 29],
+      [20, 63],
+      [-14, 72],
+      [80, 32],
+      [-41, 89],
+      [0, 50],
+      [-35, 17],
+      [52, 78],
+      [-8, 77],
+      [14, 74],
+      [-30, 82],
+      [-27, 7],
+      [-25, -51],
+      [-34, 10],
+      [-19, 97],
+      [-4, 97],
+      [-22, 21],
+      [-57, -3],
+      [-41, -39],
+      [-48, -17],
+      [-54, 9],
+      [-2, 100],
+      [23, 27],
+      [52, 10],
+      [-33, 87],
+      [-64, 15],
+      [-32, 45],
+      [9, 38],
+      [-37, 36],
+      [29, 49]
+    ],
+    [
+      [56500, 6432],
+      [60, 7],
+      [54, 43],
+      [105, 10],
+      [103, -23],
+      [30, -92],
+      [100, -3],
+      [85, -99],
+      [27, -8],
+      [34, 38],
+      [28, -43],
+      [67, -31],
+      [77, 4],
+      [25, -19],
+      [52, -104],
+      [29, -23],
+      [8, -48],
+      [76, -39],
+      [98, 9],
+      [41, -45],
+      [31, 11],
+      [54, -27],
+      [3, -43],
+      [74, -11],
+      [27, 28],
+      [52, -21],
+      [35, 37],
+      [48, -1],
+      [17, -42],
+      [34, 10],
+      [16, 37],
+      [75, -16],
+      [30, 6],
+      [104, -75],
+      [36, -2],
+      [30, 32],
+      [-20, 41],
+      [49, 26],
+      [63, 11],
+      [71, -25],
+      [135, 26],
+      [49, -29]
+    ],
+    [
+      [42258, 10320],
+      [46, -7],
+      [34, -42],
+      [105, -26],
+      [92, -52],
+      [33, 13],
+      [55, -35],
+      [49, 18],
+      [137, -98],
+      [125, 10],
+      [-23, 34],
+      [81, 79],
+      [155, -11]
+    ],
+    [
+      [43147, 10203],
+      [13, -34],
+      [-4, -94],
+      [10, -61],
+      [4, -153],
+      [106, 19],
+      [17, -48],
+      [76, -125],
+      [61, -18],
+      [-32, -135],
+      [-132, 35],
+      [-30, -55],
+      [-92, 9],
+      [-18, -54],
+      [-73, -2],
+      [-6, -48],
+      [-55, 12],
+      [-3, 42],
+      [-54, 9],
+      [-237, -13],
+      [-35, -30],
+      [-81, 14],
+      [-96, -40],
+      [28, -60],
+      [50, -37],
+      [102, -25],
+      [112, -96],
+      [6, -58],
+      [-28, -37],
+      [31, -70],
+      [99, -70],
+      [-52, -69],
+      [-45, -28],
+      [32, -93],
+      [-6, -129],
+      [34, 1],
+      [5, -53],
+      [41, -1],
+      [10, 48],
+      [119, -2],
+      [-16, 63],
+      [27, 100],
+      [53, 2],
+      [21, 43],
+      [162, -27],
+      [-54, -256],
+      [-12, -3],
+      [-36, -190],
+      [88, -26],
+      [-50, -177],
+      [-91, -12],
+      [-73, -65],
+      [-9, -55]
+    ],
+    [
+      [43034, 8051],
+      [-70, 13],
+      [-2, 44],
+      [-75, 32],
+      [-69, -6],
+      [-21, -81]
+    ],
+    [
+      [42797, 8053],
+      [-49, 2],
+      [-3, 38],
+      [-57, 29],
+      [-34, -23],
+      [-58, -4],
+      [-51, 30],
+      [13, 54],
+      [-98, 14],
+      [-15, -120],
+      [-184, 19],
+      [-15, 37],
+      [-77, -20],
+      [-76, -88],
+      [-38, 18],
+      [-25, -37],
+      [-55, 60],
+      [-60, -47],
+      [-107, 65],
+      [-43, -1],
+      [-31, -59],
+      [-47, -43],
+      [-36, 3],
+      [-58, 41],
+      [-47, 6],
+      [-23, -32],
+      [-61, -13],
+      [-44, 35],
+      [-48, -26],
+      [-63, -10],
+      [-92, 23],
+      [-100, 96],
+      [10, 47],
+      [-82, 140],
+      [4, 48]
+    ],
+    [
+      [41047, 8335],
+      [2, 58],
+      [29, 132],
+      [-47, 99],
+      [-42, 16],
+      [25, 65],
+      [-2, 70],
+      [-40, 40],
+      [-54, -9],
+      [-84, 51],
+      [-58, 83],
+      [-5, 46],
+      [26, 46],
+      [-39, 82],
+      [-54, 73],
+      [83, -4],
+      [48, 66],
+      [-11, 68]
+    ],
+    [
+      [40824, 9317],
+      [9, -14],
+      [104, -14],
+      [37, -38],
+      [49, 45],
+      [66, 17],
+      [10, 50],
+      [-52, 126],
+      [-128, 14],
+      [-68, 116],
+      [-40, 13],
+      [-16, 64],
+      [66, 33],
+      [34, 88],
+      [125, -52],
+      [35, -54],
+      [71, -56],
+      [125, -12],
+      [76, -38],
+      [52, -44],
+      [49, 29],
+      [70, -27],
+      [49, 32],
+      [-27, 158],
+      [-47, 39],
+      [-62, 95],
+      [-4, 48],
+      [30, 69],
+      [105, 65],
+      [66, 86],
+      [108, 28],
+      [73, 65],
+      [74, 112],
+      [37, 7],
+      [100, -49],
+      [80, 9],
+      [63, -49],
+      [68, -81],
+      [47, 123]
+    ],
+    [
+      [43862, 12370],
+      [82, -60],
+      [-6, -78],
+      [-58, 2],
+      [-42, 69],
+      [-64, 38],
+      [88, 29]
+    ],
+    [
+      [44281, 13199],
+      [92, -45],
+      [56, 3],
+      [73, -33],
+      [49, -4],
+      [33, -49],
+      [-83, -65],
+      [23, -42],
+      [-62, -66],
+      [-45, -13],
+      [-45, -142],
+      [28, -57],
+      [-36, -68],
+      [65, -183],
+      [91, -152],
+      [155, -135],
+      [98, -45],
+      [-28, -63],
+      [-57, -16],
+      [-132, -7],
+      [-58, 43],
+      [-75, -17],
+      [-43, 39],
+      [-59, -61],
+      [-85, 60],
+      [-135, 17],
+      [-62, 33],
+      [22, 48],
+      [-43, 44],
+      [57, 39],
+      [-58, 26],
+      [-46, 93],
+      [-74, -16],
+      [-71, 70],
+      [-76, -42],
+      [-98, 37],
+      [-31, 93],
+      [22, 120],
+      [46, 26],
+      [118, -18],
+      [-4, 38],
+      [57, 49],
+      [14, 118],
+      [-69, 61],
+      [36, 49],
+      [96, 16],
+      [14, 101],
+      [47, 40],
+      [81, 23],
+      [84, -4],
+      [118, 57]
+    ],
+    [
+      [46698, 14666],
+      [138, -30],
+      [94, -58],
+      [-24, -106],
+      [-137, -112],
+      [-195, -73],
+      [-153, -30],
+      [-323, -109],
+      [-445, -125],
+      [-57, 0],
+      [-45, -61],
+      [-172, -64],
+      [-46, -117],
+      [-61, -49],
+      [-54, -6],
+      [-60, -56],
+      [-75, 25],
+      [-24, -71],
+      [-82, 17],
+      [7, -111],
+      [-152, -133],
+      [3, -55],
+      [-58, -72],
+      [-87, -26],
+      [23, -34],
+      [-105, -88],
+      [-109, 11],
+      [-59, 30],
+      [-74, -3],
+      [-84, 46],
+      [-133, -20],
+      [34, 74],
+      [-64, 14],
+      [-73, 48],
+      [168, 122],
+      [104, 58],
+      [43, 101],
+      [147, 15],
+      [-104, 69],
+      [153, 30],
+      [7, 87],
+      [-28, 42],
+      [-97, 46],
+      [202, 41],
+      [-14, 49],
+      [46, 20],
+      [132, -14],
+      [-22, 65],
+      [90, 64],
+      [128, 31],
+      [-5, 28],
+      [102, 39],
+      [78, -2],
+      [122, 43],
+      [141, 16],
+      [-34, 47],
+      [29, 44],
+      [118, 15],
+      [62, -19],
+      [196, -19],
+      [174, 52],
+      [31, -22],
+      [141, 75],
+      [72, -5],
+      [141, 118],
+      [127, 34],
+      [69, 50],
+      [133, 24]
+    ],
+    [
+      [45137, 15931],
+      [75, -25],
+      [-99, -48],
+      [-93, 42],
+      [117, 31]
+    ],
+    [
+      [43539, 15935],
+      [66, -76],
+      [-176, 7],
+      [110, 69]
+    ],
+    [
+      [43365, 15986],
+      [56, -21],
+      [-89, -50],
+      [-71, 44],
+      [104, 27]
+    ],
+    [
+      [44664, 16038],
+      [12, -112],
+      [-174, -4],
+      [-35, 99],
+      [197, 17]
+    ],
+    [
+      [43920, 16053],
+      [168, -65],
+      [-169, -31],
+      [-144, 28],
+      [125, 32],
+      [20, 36]
+    ],
+    [
+      [44848, 16090],
+      [170, -19],
+      [-36, -52],
+      [-151, -85],
+      [-101, 26],
+      [-18, 97],
+      [136, 33]
+    ],
+    [
+      [44567, 16203],
+      [52, -57],
+      [-183, 3],
+      [32, 49],
+      [99, 5]
+    ],
+    [
+      [42874, 16244],
+      [-7, -52],
+      [-101, -74],
+      [-148, -12],
+      [-182, 20],
+      [194, 41],
+      [244, 77]
+    ],
+    [
+      [45572, 16250],
+      [77, -49],
+      [-42, -66],
+      [-90, -20],
+      [-72, -68],
+      [-142, 35],
+      [-111, -23],
+      [-75, 28],
+      [18, 94],
+      [102, 54],
+      [96, -18],
+      [239, 33]
+    ],
+    [
+      [43515, 16283],
+      [23, -36],
+      [149, -60],
+      [-142, -62],
+      [-222, -32],
+      [-26, -48],
+      [-103, 2],
+      [-29, -87],
+      [-193, -18],
+      [52, 120],
+      [249, 96],
+      [-94, 60],
+      [131, 49],
+      [205, 16]
+    ],
+    [
+      [44518, 16342],
+      [248, -26],
+      [-49, -39],
+      [-199, 65]
+    ],
+    [
+      [44235, 16347],
+      [140, -38],
+      [135, 1],
+      [143, -69],
+      [155, -30],
+      [-125, -39],
+      [-61, 45],
+      [-346, 66],
+      [-41, 64]
+    ],
+    [
+      [45499, 16356],
+      [24, -46],
+      [-137, -48],
+      [-155, 30],
+      [268, 64]
+    ],
+    [
+      [46091, 16391],
+      [160, -24],
+      [11, -84],
+      [-172, -92],
+      [-268, -31],
+      [-115, 62],
+      [100, 67],
+      [160, 34],
+      [-10, 33],
+      [134, 35]
+    ],
+    [
+      [44600, 16467],
+      [218, -44],
+      [-192, -40],
+      [-92, 29],
+      [66, 55]
+    ],
+    [
+      [44780, 16533],
+      [149, -36],
+      [-97, -38],
+      [-163, 61],
+      [111, 13]
+    ],
+    [
+      [45039, 16655],
+      [24, -51],
+      [-199, -8],
+      [34, 49],
+      [141, 10]
+    ],
+    [
+      [42895, 1734],
+      [-41, 72],
+      [-34, -20],
+      [-42, 25],
+      [49, 191],
+      [-47, -16],
+      [-15, 51],
+      [-56, 43],
+      [35, 51],
+      [37, 3],
+      [13, 70],
+      [25, 10],
+      [14, 46],
+      [-27, 56],
+      [-20, 4],
+      [-28, 49],
+      [-53, 130],
+      [-10, 41],
+      [-28, 2],
+      [-35, 34],
+      [-59, 91],
+      [-27, 69],
+      [5, 47],
+      [-35, -1],
+      [-47, 55]
+    ],
+    [
+      [42469, 2837],
+      [-48, 47],
+      [-5, 49],
+      [40, 75],
+      [61, 9],
+      [53, 50],
+      [37, 66],
+      [36, -2],
+      [61, -56],
+      [5, -23]
+    ],
+    [
+      [42709, 3052],
+      [-22, -87],
+      [79, -43],
+      [36, -52],
+      [7, -70],
+      [-22, -17],
+      [29, -98],
+      [37, -34],
+      [7, 56],
+      [53, -28],
+      [70, 6],
+      [23, -34],
+      [37, -100],
+      [43, -8],
+      [10, -84],
+      [23, -81],
+      [42, -100],
+      [-17, -30],
+      [-31, -2],
+      [-18, 34],
+      [-33, -47],
+      [56, -50],
+      [8, -22],
+      [63, -46],
+      [9, -65],
+      [-35, -87],
+      [-79, -51],
+      [-34, -31],
+      [-33, -80],
+      [-33, 21],
+      [-36, -35],
+      [-35, 59],
+      [-22, -31],
+      [20, -32],
+      [-16, -49]
+    ],
+    [
+      [44746, 6201],
+      [27, -84],
+      [46, 14],
+      [40, -27],
+      [57, 2],
+      [46, 31],
+      [56, -42],
+      [33, 30]
+    ],
+    [
+      [45051, 6125],
+      [54, 11],
+      [-20, -54],
+      [5, -38],
+      [-20, -50],
+      [36, -28],
+      [0, -53],
+      [62, -13],
+      [-29, -51],
+      [-53, -7],
+      [-7, -39],
+      [-35, -35],
+      [-29, 19],
+      [-39, -59],
+      [40, -49],
+      [-45, -39],
+      [-65, 96],
+      [-40, 30],
+      [-94, 25],
+      [-54, -37],
+      [-26, -67],
+      [26, -55],
+      [-6, -49],
+      [93, -89],
+      [35, -73],
+      [28, 0],
+      [32, 40],
+      [34, 11],
+      [41, -27],
+      [31, 37],
+      [57, 27],
+      [29, -8],
+      [79, 118],
+      [39, -32],
+      [9, -34],
+      [-22, -72],
+      [-23, -26],
+      [-6, -55],
+      [23, -23],
+      [-9, -65],
+      [-28, 14],
+      [-51, -7],
+      [-21, -67],
+      [-47, -29],
+      [-14, -166],
+      [0, -99],
+      [18, -99],
+      [-24, -38],
+      [-13, -134],
+      [18, -73]
+    ],
+    [
+      [45020, 4614],
+      [11, -57],
+      [-38, -26],
+      [2, -93],
+      [-14, -88],
+      [-71, -49],
+      [-29, 36],
+      [-78, 21],
+      [-22, -64],
+      [-65, -52],
+      [-44, 68],
+      [-33, -20],
+      [-33, 72],
+      [18, 35],
+      [-21, 60],
+      [-45, 81],
+      [3, 70],
+      [-23, 49],
+      [-44, 40],
+      [-38, -104],
+      [-24, -19],
+      [-42, 23],
+      [-13, 74],
+      [-20, 22],
+      [-3, 85],
+      [-32, -13],
+      [-37, 83],
+      [-22, 95],
+      [-43, -12],
+      [-22, 48],
+      [-55, 18],
+      [-31, 33],
+      [-44, 89],
+      [-35, 46],
+      [-45, 101]
+    ],
+    [
+      [43988, 5266],
+      [-4, 86],
+      [16, 107],
+      [33, 72],
+      [-22, 91],
+      [-62, 95],
+      [66, 22],
+      [28, 45],
+      [41, 28],
+      [20, 81],
+      [36, 40],
+      [-1, 33],
+      [-75, 87]
+    ],
+    [
+      [44064, 6053],
+      [58, 63],
+      [56, 98]
+    ],
+    [
+      [44178, 6214],
+      [25, 57],
+      [81, -44],
+      [42, 17],
+      [32, -24],
+      [65, 46],
+      [30, 0],
+      [35, -78],
+      [42, 2],
+      [43, 28],
+      [60, -99],
+      [27, -11],
+      [47, 30],
+      [39, 63]
+    ],
+    [
+      [41157, 4127],
+      [33, -13],
+      [-10, -77],
+      [41, -20],
+      [44, 0],
+      [-23, -77],
+      [46, -60],
+      [27, -77],
+      [-14, -25],
+      [21, -128],
+      [22, -29],
+      [-26, -91]
+    ],
+    [
+      [41318, 3530],
+      [-54, -5],
+      [-62, 69],
+      [-45, 10],
+      [-61, -19],
+      [-54, 57],
+      [-51, 137],
+      [-82, -39],
+      [-25, 5],
+      [-61, -45],
+      [-20, 37],
+      [-34, -14],
+      [-30, 64],
+      [-60, 0],
+      [-38, -36],
+      [-42, 93],
+      [17, 41],
+      [-30, 106],
+      [9, 30]
+    ],
+    [
+      [40595, 4021],
+      [27, -30],
+      [59, 12],
+      [31, 53],
+      [39, 22],
+      [74, -30],
+      [37, 42],
+      [34, 1],
+      [32, 51],
+      [52, 26],
+      [68, -7],
+      [45, 26],
+      [64, -60]
+    ],
+    [
+      [40545, 4949],
+      [23, -106],
+      [-42, -32],
+      [-24, -50],
+      [29, -53],
+      [-40, -94],
+      [22, -38]
+    ],
+    [
+      [40513, 4576],
+      [-68, -119],
+      [-51, -16],
+      [1, -71]
+    ],
+    [
+      [40395, 4370],
+      [-45, 59],
+      [5, 48],
+      [-74, 91],
+      [-91, 5],
+      [-50, -42],
+      [-51, -5],
+      [-33, 33],
+      [-32, 1],
+      [-2, -81],
+      [-52, -47],
+      [-50, 30],
+      [-23, 74],
+      [-17, 10],
+      [5, 106],
+      [-20, 53],
+      [17, 31],
+      [-57, 108],
+      [23, 68],
+      [40, 15],
+      [36, -46],
+      [62, -14],
+      [49, 40],
+      [64, 94]
+    ],
+    [
+      [40099, 5001],
+      [64, 96],
+      [35, 92],
+      [49, 56]
+    ],
+    [
+      [40247, 5245],
+      [55, -15],
+      [22, -49],
+      [52, 7],
+      [53, -76],
+      [4, -99],
+      [112, -64]
+    ],
+    [
+      [55742, 6451],
+      [-30, -34],
+      [5, -58],
+      [-31, -38],
+      [43, -27],
+      [5, -89],
+      [28, -92],
+      [-12, -48],
+      [24, -145],
+      [6, -116],
+      [42, -18],
+      [44, 4],
+      [39, -72],
+      [38, -34],
+      [24, -84],
+      [-26, -107],
+      [-19, -31],
+      [-81, -10],
+      [-135, -50],
+      [-20, -50],
+      [-45, -31],
+      [-69, -79],
+      [-45, -21],
+      [-23, -55],
+      [-96, -41],
+      [-26, -41],
+      [0, -84],
+      [18, -55],
+      [30, -30],
+      [13, -50],
+      [25, -15],
+      [-13, -91],
+      [-39, -67],
+      [-48, -13],
+      [-39, -62],
+      [-83, -11],
+      [-38, -43],
+      [-76, -4],
+      [-36, -43],
+      [-34, 27],
+      [-46, -48],
+      [-53, -97],
+      [-65, -30],
+      [-51, -37],
+      [-31, -47],
+      [-6, -38],
+      [-29, -30],
+      [-46, 8],
+      [-12, 29],
+      [-73, 3],
+      [-62, -68],
+      [-73, -32],
+      [-56, 31],
+      [-45, 3],
+      [-43, -17],
+      [-21, -86],
+      [34, -36],
+      [-48, -35],
+      [-9, -106],
+      [-30, -37],
+      [64, -49],
+      [6, -53],
+      [-90, -59],
+      [-15, -49],
+      [-38, -43],
+      [7, -24]
+    ],
+    [
+      [54231, 3596],
+      [-5, -9],
+      [-4, -3],
+      [-82, 16],
+      [-24, 14],
+      [-39, 90],
+      [-67, 41],
+      [-54, -21],
+      [-38, 40],
+      [-88, 16],
+      [-42, 19],
+      [-45, -32],
+      [-45, -5],
+      [-61, -31],
+      [-35, -3],
+      [-29, -43],
+      [-35, -19],
+      [-39, 20],
+      [-31, -27],
+      [-76, 34],
+      [-16, 38],
+      [-42, -4],
+      [-64, 52],
+      [-26, 45],
+      [-34, 18],
+      [6, 59],
+      [-25, 56],
+      [8, 41],
+      [-37, 177],
+      [-80, 25],
+      [-56, 5],
+      [-76, 64],
+      [-81, 51],
+      [-98, 1],
+      [-42, 53],
+      [-90, 38],
+      [-57, 61]
+    ],
+    [
+      [52582, 4473],
+      [0, 26],
+      [-65, 37],
+      [0, 65],
+      [32, 43],
+      [22, 59],
+      [14, 106],
+      [38, -3]
+    ],
+    [
+      [52623, 4806],
+      [41, 86],
+      [25, -4],
+      [56, 41],
+      [2, 42],
+      [44, -6],
+      [32, 35],
+      [33, -143],
+      [60, -53],
+      [12, -32],
+      [105, -89],
+      [43, -59],
+      [7, -37],
+      [69, -69],
+      [21, 17],
+      [82, -19],
+      [54, -119],
+      [53, -33],
+      [18, -66],
+      [-4, -45],
+      [24, -59],
+      [44, 5],
+      [46, -32],
+      [-3, -88],
+      [22, -10],
+      [56, 50],
+      [77, 28],
+      [15, 88],
+      [126, 96],
+      [132, 203],
+      [83, 132],
+      [197, 155],
+      [102, 132],
+      [77, 298],
+      [7, 193],
+      [26, 76],
+      [0, 158],
+      [11, 69],
+      [-15, 13],
+      [-5, 81],
+      [11, 22],
+      [36, 163],
+      [45, 31],
+      [-42, 40],
+      [-12, 54],
+      [-52, 49],
+      [31, 75],
+      [69, 59],
+      [75, 24],
+      [38, -10],
+      [33, 35],
+      [24, 75],
+      [72, -16],
+      [36, -35],
+      [32, 12],
+      [74, -22],
+      [35, 39],
+      [15, 57],
+      [28, 30],
+      [50, -81],
+      [53, 7],
+      [65, -37],
+      [32, 43],
+      [39, -90],
+      [68, -36],
+      [76, 11],
+      [78, -50],
+      [33, 59],
+      [57, -11],
+      [58, 17],
+      [53, 107],
+      [6, 57],
+      [104, 2],
+      [34, 44],
+      [55, 3],
+      [4, -48],
+      [-69, -69]
+    ],
+    [
+      [42552, 514],
+      [-37, 34],
+      [-43, -6],
+      [-32, 66],
+      [-17, 2]
+    ],
+    [
+      [42423, 610],
+      [23, 88],
+      [-5, 56],
+      [22, 57],
+      [2, 50],
+      [-22, 41],
+      [-50, 52]
+    ],
+    [
+      [42393, 954],
+      [6, 44]
+    ],
+    [
+      [42399, 998],
+      [30, 17],
+      [7, 82],
+      [55, -30],
+      [23, 67]
+    ],
+    [
+      [42514, 1134],
+      [40, -30],
+      [22, 13],
+      [54, -39],
+      [49, 60],
+      [30, -62],
+      [-2, -52],
+      [-43, -119],
+      [21, -84],
+      [-4, -56],
+      [18, -62],
+      [-16, -29],
+      [-41, 5],
+      [-20, -26],
+      [17, -36],
+      [-35, -16],
+      [-3, -31],
+      [-49, -56]
+    ],
+    [
+      [45616, 6135],
+      [32, -53],
+      [8, -43],
+      [56, -71],
+      [1, -115],
+      [-93, -80],
+      [36, -62],
+      [-56, -54],
+      [45, -135],
+      [43, 24],
+      [22, -25],
+      [46, -3],
+      [70, 24],
+      [27, -70],
+      [-32, -38],
+      [-2, -41],
+      [51, -70]
+    ],
+    [
+      [45870, 5323],
+      [-40, -2],
+      [-20, -38],
+      [-39, 5],
+      [-75, -77],
+      [-22, 45],
+      [-47, 9],
+      [-26, -45],
+      [-40, 34],
+      [-30, -14],
+      [-22, 36],
+      [-35, -40],
+      [-47, -14],
+      [36, -56],
+      [-57, -81],
+      [48, -20],
+      [73, 3],
+      [-14, -47],
+      [-34, 19],
+      [-27, -47],
+      [4, -40],
+      [53, -29],
+      [39, 11],
+      [24, -37],
+      [59, -18],
+      [5, -46],
+      [-46, 2],
+      [-44, -20],
+      [-38, 30],
+      [-42, -1],
+      [-77, -110],
+      [3, -59],
+      [43, -115],
+      [-66, -70],
+      [-43, -8],
+      [-31, -45],
+      [-40, -17]
+    ],
+    [
+      [45255, 4421],
+      [-17, 34],
+      [13, 49],
+      [26, 32],
+      [-2, 48],
+      [-26, 18],
+      [-113, 24],
+      [-37, -20],
+      [-4, -59],
+      [-48, 67],
+      [-27, 0]
+    ],
+    [
+      [45051, 6125],
+      [45, 95],
+      [67, -20],
+      [18, -36],
+      [65, 1],
+      [65, 17],
+      [31, -23],
+      [106, 6],
+      [-13, 39],
+      [25, 25],
+      [90, -27],
+      [66, -67]
+    ],
+    [
+      [2, 11379],
+      [30, -27],
+      [71, 2],
+      [34, -47],
+      [81, -22],
+      [27, -86],
+      [129, -50],
+      [20, -62],
+      [53, 16],
+      [58, -28],
+      [112, -79],
+      [-14, -30],
+      [59, -36],
+      [92, -7],
+      [-59, -56],
+      [27, -41],
+      [94, -31],
+      [-50, 71],
+      [34, 27],
+      [94, -58],
+      [16, -90],
+      [72, -34],
+      [-22, -126],
+      [29, -47],
+      [9, -68],
+      [-51, -38],
+      [101, -57],
+      [-3, -94],
+      [93, 61],
+      [-32, 43],
+      [41, 53],
+      [-24, 122],
+      [-20, 42],
+      [103, 8],
+      [38, -52],
+      [148, -34],
+      [48, 18],
+      [131, 1],
+      [-3, -34],
+      [65, -45],
+      [-5, -29],
+      [87, -67],
+      [72, -72],
+      [60, -25],
+      [26, -43],
+      [73, -19],
+      [0, -31],
+      [-94, -18],
+      [-68, -59],
+      [7, -77],
+      [-24, -29],
+      [-122, -30],
+      [-122, -2],
+      [-113, 63],
+      [66, -112],
+      [-14, -78],
+      [24, -67],
+      [-29, -35],
+      [-91, -53],
+      [-16, -76],
+      [79, -45],
+      [-1, -54],
+      [-57, -4],
+      [-40, -56],
+      [-45, -5],
+      [-36, 30],
+      [-52, 1],
+      [-62, 34],
+      [-19, 57],
+      [-106, 66],
+      [8, 54],
+      [-83, -31],
+      [-55, 6],
+      [-14, 29],
+      [-87, 59],
+      [24, 66],
+      [-30, 43],
+      [-8, 66],
+      [-161, 64],
+      [-36, 26],
+      [-66, -63],
+      [-81, -15],
+      [-128, 8],
+      [-2, 112],
+      [-74, 62],
+      [76, 134],
+      [-91, -27],
+      [-57, 3],
+      [-108, -28],
+      [0, -66],
+      [21, -65],
+      [71, -61],
+      [-25, -31],
+      [-19, -129],
+      [-86, -76],
+      [0, 402],
+      [0, 602],
+      [0, 204],
+      [2, 402]
+    ],
+    [
+      [65687, 11806],
+      [95, -29],
+      [76, -39],
+      [-46, -123],
+      [-51, 0],
+      [-142, 52],
+      [-10, 26],
+      [-60, 26],
+      [70, 78],
+      [68, 9]
+    ],
+    [
+      [66795, 8446],
+      [3, 1]
+    ],
+    [
+      [66798, 8447],
+      [1, 0]
+    ],
+    [
+      [66799, 8447],
+      [-12, 58],
+      [-23, 47],
+      [-35, 4],
+      [8, 99],
+      [-10, 31],
+      [-69, 38],
+      [-112, -38],
+      [-59, -39],
+      [-57, 33],
+      [-67, -18],
+      [-32, 27],
+      [-134, -74],
+      [-37, 30],
+      [-25, -36],
+      [-55, -18],
+      [-73, 31],
+      [-36, -12],
+      [-39, 148],
+      [-54, 16],
+      [-22, 39],
+      [-88, 65],
+      [-29, -7],
+      [-95, 61],
+      [50, 44],
+      [23, 55],
+      [144, 136],
+      [-47, 118],
+      [-63, 13],
+      [-27, 31],
+      [-15, 71],
+      [-37, 8],
+      [-19, 50],
+      [-94, -24],
+      [-60, 23],
+      [-3, 39],
+      [-49, 35],
+      [-29, 49],
+      [-33, -31],
+      [-84, -17],
+      [-31, 33],
+      [-102, 16],
+      [-22, 51],
+      [-69, 3],
+      [-33, 37],
+      [-39, -24],
+      [-69, 15],
+      [-66, 40],
+      [-74, -15],
+      [-50, 25],
+      [-56, -100]
+    ],
+    [
+      [64690, 9613],
+      [-83, -3],
+      [-40, 39],
+      [-89, 14],
+      [-38, 24],
+      [-42, 80],
+      [-71, 33],
+      [-126, 21],
+      [-78, 84],
+      [-18, 49],
+      [-188, 71],
+      [-31, 31],
+      [2, 99],
+      [50, 87],
+      [-51, 2],
+      [-75, 45]
+    ],
+    [
+      [63812, 10289],
+      [-22, 44],
+      [101, 139],
+      [-33, 46],
+      [1, 64],
+      [-90, 29],
+      [-77, 62],
+      [-16, 81],
+      [5, 93],
+      [80, 12],
+      [-25, 54],
+      [44, 84],
+      [35, 20],
+      [69, -3],
+      [73, 51],
+      [75, -20],
+      [47, 41],
+      [140, -11],
+      [127, 61],
+      [187, -55],
+      [23, 111],
+      [29, 48],
+      [-24, 36],
+      [42, 38],
+      [-63, 59],
+      [13, 61],
+      [36, 19],
+      [-82, 95],
+      [23, 108]
+    ],
+    [
+      [64530, 11656],
+      [91, -8],
+      [69, 28],
+      [114, -7],
+      [33, 28],
+      [103, -71],
+      [234, -4],
+      [78, -27],
+      [140, -12],
+      [148, 120],
+      [59, -11],
+      [-18, -41],
+      [58, -37],
+      [-10, -71],
+      [24, -71],
+      [70, -3],
+      [73, -46],
+      [44, -3],
+      [14, -89],
+      [39, -39],
+      [90, 11],
+      [140, 73],
+      [33, 39],
+      [-14, 82],
+      [-68, 135],
+      [-71, -6],
+      [15, 48],
+      [55, 43],
+      [0, 113],
+      [137, -14],
+      [283, -56],
+      [82, -61],
+      [89, 44],
+      [59, 10],
+      [76, -18],
+      [136, -4],
+      [112, -5],
+      [34, -23],
+      [98, -15],
+      [134, -55],
+      [71, -6],
+      [26, -29],
+      [165, -28],
+      [42, -20],
+      [4, -55],
+      [102, -5],
+      [70, -64],
+      [0, -37],
+      [54, -14],
+      [3, -8],
+      [0, -38],
+      [0, -556],
+      [0, 0],
+      [0, -621],
+      [0, -392],
+      [-30, -15],
+      [-63, -80],
+      [-70, -14],
+      [-65, -53],
+      [-85, 2],
+      [-123, 24],
+      [-37, 65],
+      [-76, -40],
+      [-77, 40],
+      [-69, -37],
+      [72, -60],
+      [16, -32],
+      [59, 68],
+      [78, 14],
+      [-18, -94],
+      [14, -40],
+      [93, -85],
+      [71, 47],
+      [64, -154],
+      [18, -100],
+      [-30, -29],
+      [29, -95],
+      [32, -42],
+      [67, -37],
+      [29, -59],
+      [-35, -25],
+      [16, -50],
+      [41, -22],
+      [9, -56],
+      [-50, -85],
+      [-46, -25],
+      [12, -40],
+      [-118, 39],
+      [-87, 47],
+      [-155, 9],
+      [-69, -16],
+      [-74, -43],
+      [-47, -50],
+      [-58, -17],
+      [-127, -64],
+      [-7, -28],
+      [-79, -41],
+      [4, 5],
+      [-24, -7],
+      [-26, -39],
+      [-23, -6],
+      [-6, 6],
+      [-5, 0]
+    ],
+    [
+      [67850, 12424],
+      [0, -228],
+      [-73, -42],
+      [-104, -6],
+      [-46, -25],
+      [-35, 113],
+      [51, 57],
+      [60, 29],
+      [48, 50],
+      [99, 52]
+    ],
+    [
+      [182, 12447],
+      [58, -4],
+      [126, -48],
+      [112, -105],
+      [-48, -56],
+      [-49, -20],
+      [-208, -46],
+      [-173, 31],
+      [0, 56],
+      [0, 113],
+      [0, 56],
+      [182, 23]
+    ],
+    [
+      [43053, 5994],
+      [-39, -58],
+      [-11, -44],
+      [-43, -57],
+      [-17, -72],
+      [44, -49],
+      [-53, -77],
+      [-9, -49],
+      [-70, -6],
+      [-19, -44]
+    ],
+    [
+      [42836, 5538],
+      [-42, -3],
+      [-35, -34],
+      [-74, 54]
+    ],
+    [
+      [42685, 5555],
+      [-12, 52],
+      [-57, 66]
+    ],
+    [
+      [42616, 5673],
+      [-4, 69],
+      [29, 24],
+      [28, 83],
+      [-71, 53],
+      [-8, 40],
+      [27, 44],
+      [6, 84]
+    ],
+    [
+      [42623, 6070],
+      [72, 58],
+      [36, -12],
+      [18, 28],
+      [101, 60],
+      [24, -60],
+      [75, -26],
+      [21, -65],
+      [83, -59]
+    ],
+    [
+      [39469, 7766],
+      [8, 23],
+      [34, 20],
+      [10, -3],
+      [25, -9],
+      [35, -21],
+      [43, -18],
+      [28, -5],
+      [-3, -9],
+      [-4, -23],
+      [33, -26],
+      [-5, -41],
+      [23, -28],
+      [26, -17],
+      [-7, -28],
+      [-23, -3],
+      [-14, -19],
+      [-8, -13],
+      [-55, 5],
+      [-24, 21],
+      [-10, 17],
+      [-30, 41],
+      [-33, 14]
+    ],
+    [
+      [39518, 7644],
+      [67, 0],
+      [30, 50],
+      [-42, 11],
+      [-8, 55],
+      [-72, 20],
+      [-24, -14]
+    ],
+    [
+      [42764, 1486],
+      [-12, -121],
+      [30, -41],
+      [22, -93],
+      [27, -34],
+      [29, -76],
+      [34, -61],
+      [-1, -68],
+      [-20, -98],
+      [9, -49],
+      [-11, -104],
+      [45, -56],
+      [2, -80],
+      [33, -82],
+      [34, -59],
+      [57, -176],
+      [24, -33],
+      [-16, -83],
+      [-42, -51],
+      [-27, -5],
+      [-32, -111],
+      [-65, -5],
+      [-51, 48],
+      [-7, 48],
+      [-24, 60],
+      [-17, -13],
+      [-21, 72],
+      [-26, 50],
+      [-42, 8],
+      [-59, 53],
+      [-86, 50],
+      [-31, 39],
+      [21, 29],
+      [11, 70]
+    ],
+    [
+      [42514, 1134],
+      [2, 54],
+      [-42, 3],
+      [-25, 39],
+      [40, 19],
+      [12, 36],
+      [-26, 28],
+      [-10, 47],
+      [36, 30],
+      [27, 72],
+      [-11, 44],
+      [23, 44]
+    ],
+    [
+      [42540, 1550],
+      [22, 11],
+      [105, -27],
+      [32, -41],
+      [37, -24],
+      [28, 17]
+    ],
+    [
+      [50344, 4667],
+      [38, -36],
+      [60, -33],
+      [53, 48],
+      [47, -55],
+      [44, 2],
+      [4, -96]
+    ],
+    [
+      [50590, 4497],
+      [-28, -46],
+      [-41, -14],
+      [-26, -93],
+      [37, -36],
+      [-34, -94],
+      [89, -82],
+      [36, 18],
+      [18, 71],
+      [18, 13]
+    ],
+    [
+      [50659, 4234],
+      [39, -61],
+      [-11, -43],
+      [19, -94],
+      [31, -57],
+      [31, -22],
+      [33, -58],
+      [3, -31],
+      [58, -77],
+      [-13, -35],
+      [-39, 0],
+      [-35, -26],
+      [39, -103],
+      [-1, -46]
+    ],
+    [
+      [50813, 3581],
+      [15, -97],
+      [-45, -21],
+      [-65, -65],
+      [-54, -14],
+      [-31, 22],
+      [-39, -16],
+      [-41, 4],
+      [-44, -125],
+      [-55, -6],
+      [-49, -35],
+      [-24, 6],
+      [-8, 48],
+      [-42, 15],
+      [-27, 40],
+      [-20, 80],
+      [-34, 35],
+      [-36, 3],
+      [-84, -63],
+      [-9, 27],
+      [-97, 5],
+      [-39, 26],
+      [-20, 101],
+      [-23, 19],
+      [3, 56],
+      [-31, 16],
+      [-67, 63],
+      [-29, -10],
+      [-20, 126],
+      [-32, 47]
+    ],
+    [
+      [42423, 610],
+      [-40, 21],
+      [-15, -47],
+      [-23, 47]
+    ],
+    [
+      [42345, 631],
+      [45, 29],
+      [13, 28],
+      [-10, 65],
+      [-50, 65],
+      [-1, 58],
+      [-14, 22],
+      [2, 53],
+      [42, -17],
+      [21, 20]
+    ],
+    [
+      [56370, 6973],
+      [-85, -20],
+      [-36, 21],
+      [-28, 45],
+      [-97, 35],
+      [-60, -38],
+      [20, -76],
+      [-31, -30],
+      [-21, -91],
+      [-33, 1],
+      [31, -92],
+      [-15, -40],
+      [22, -75],
+      [57, -7],
+      [19, -27],
+      [-28, -40],
+      [16, -35],
+      [-15, -75],
+      [-34, -18],
+      [-26, 46],
+      [-54, -70],
+      [-97, -1],
+      [-40, 34],
+      [-21, -18],
+      [-72, 49]
+    ],
+    [
+      [52623, 4806],
+      [-104, 92],
+      [-85, -23],
+      [-3, 46],
+      [-37, 8],
+      [-13, 51],
+      [-78, 9],
+      [-57, 94],
+      [-30, -1],
+      [-44, 59],
+      [-30, -33]
+    ],
+    [
+      [52142, 5108],
+      [-43, 13],
+      [-36, 53],
+      [-49, 101],
+      [-74, 68],
+      [21, 73],
+      [36, 8],
+      [23, 53],
+      [67, -14],
+      [41, 99],
+      [4, 63],
+      [-14, 33],
+      [17, 67],
+      [-10, 37],
+      [48, 27],
+      [-18, 39],
+      [4, 74],
+      [-13, 73],
+      [34, 39],
+      [8, 56],
+      [31, 35],
+      [34, -19],
+      [44, 64],
+      [-3, 69],
+      [67, 11],
+      [3, 58],
+      [-29, 14],
+      [8, 86],
+      [-55, 5],
+      [22, 67],
+      [-52, 34],
+      [109, 308],
+      [160, -7],
+      [55, -21],
+      [70, 25],
+      [12, 64],
+      [26, 48],
+      [69, 7],
+      [24, -104],
+      [38, -9],
+      [20, -72],
+      [-4, -37],
+      [60, -51],
+      [40, 31],
+      [-30, 74],
+      [0, 84],
+      [49, -3],
+      [33, 69],
+      [-14, 28],
+      [74, 54],
+      [28, 72],
+      [102, 53],
+      [64, 82],
+      [-5, 56],
+      [-28, 64],
+      [15, 50],
+      [66, 16],
+      [26, 41],
+      [43, -5],
+      [32, -93],
+      [34, -47],
+      [77, -24],
+      [5, -62],
+      [55, 12],
+      [16, -60],
+      [64, 5],
+      [41, 41],
+      [-20, 56],
+      [64, 67],
+      [43, 26],
+      [-4, 53],
+      [-83, 126],
+      [-19, 55],
+      [60, 76],
+      [83, -4],
+      [-17, 34],
+      [5, 137],
+      [-64, 8],
+      [-53, 33],
+      [-63, 97],
+      [18, 45],
+      [-3, 112],
+      [29, 49],
+      [57, 34],
+      [-22, 56],
+      [66, 37],
+      [61, 62],
+      [71, 40],
+      [-11, 53],
+      [89, 87],
+      [14, 69],
+      [-13, 25],
+      [72, 95],
+      [11, 45],
+      [-48, 14],
+      [-4, 40],
+      [-62, 79],
+      [-5, 50],
+      [42, 12],
+      [9, 46],
+      [56, 65],
+      [-41, 66],
+      [24, 32],
+      [20, 94],
+      [-12, 56],
+      [79, -29],
+      [21, 24],
+      [57, -32],
+      [21, 37],
+      [108, 12],
+      [39, 34],
+      [-37, 65],
+      [-29, 13]
+    ],
+    [
+      [54293, 9434],
+      [47, 0],
+      [38, -44],
+      [16, -52],
+      [44, -22],
+      [-14, -74],
+      [-76, -5],
+      [-31, -81],
+      [83, -2],
+      [87, -19],
+      [39, -75],
+      [24, 7],
+      [13, -165],
+      [34, -65],
+      [-32, -30],
+      [-36, -70],
+      [24, -64],
+      [82, 4],
+      [22, -98],
+      [-14, -55],
+      [-36, -19],
+      [-31, -65],
+      [10, -45],
+      [43, -70],
+      [-8, -91],
+      [38, -15],
+      [48, -59],
+      [53, -11],
+      [-9, -59],
+      [-44, -65],
+      [-1, -48],
+      [-65, -87],
+      [-49, -150],
+      [14, -32],
+      [-22, -65],
+      [-37, -61],
+      [1, -53],
+      [-32, -42],
+      [-10, -67],
+      [35, -19],
+      [29, -56],
+      [58, -58],
+      [54, -8],
+      [75, 41],
+      [25, 67],
+      [73, -1],
+      [27, -18],
+      [33, 27],
+      [40, -23],
+      [72, 37],
+      [51, 78],
+      [4, -74],
+      [67, 3],
+      [-1, -35],
+      [-43, -36],
+      [-3, -76],
+      [34, -32],
+      [22, 53],
+      [150, 101],
+      [-6, 64],
+      [34, 55],
+      [41, 26],
+      [26, 50],
+      [37, 8],
+      [16, 48],
+      [58, 38],
+      [-5, 43],
+      [33, 52],
+      [37, -2],
+      [29, 37],
+      [34, 85],
+      [33, -12],
+      [51, 32],
+      [110, -58],
+      [45, -12],
+      [72, -64],
+      [35, -76],
+      [40, 11],
+      [-27, -90],
+      [3, -118],
+      [23, -19],
+      [123, -18],
+      [20, 65],
+      [38, 3],
+      [26, -52],
+      [70, -27],
+      [17, -49],
+      [-26, -39],
+      [11, -117],
+      [13, -46],
+      [-10, -85],
+      [58, -44],
+      [3, -107]
+    ],
+    [
+      [42167, 6655],
+      [10, -56],
+      [-43, -27],
+      [-11, -54],
+      [36, -22],
+      [-33, -73],
+      [-102, -19],
+      [-32, -28],
+      [23, -60],
+      [-2, -61],
+      [-55, -28]
+    ],
+    [
+      [41958, 6227],
+      [-64, 21],
+      [-42, -47],
+      [-24, 11],
+      [-6, 53],
+      [-55, -19],
+      [-143, 22],
+      [-24, 37],
+      [-77, -35],
+      [-17, -41],
+      [-41, 22],
+      [-23, 124],
+      [-33, 17],
+      [-51, -19]
+    ],
+    [
+      [41358, 6373],
+      [39, 121],
+      [84, 65],
+      [77, 28]
+    ],
+    [
+      [41558, 6587],
+      [124, 41],
+      [85, 35],
+      [8, 52],
+      [30, 40],
+      [61, -51],
+      [104, 27],
+      [23, -25],
+      [14, -75],
+      [111, 64],
+      [49, -40]
+    ],
+    [
+      [42298, 1034],
+      [18, -55],
+      [0, -93],
+      [-57, -8],
+      [-10, -61],
+      [-44, 26],
+      [-15, -55],
+      [-43, -89],
+      [-39, -7]
+    ],
+    [
+      [42108, 692],
+      [-42, 16],
+      [-57, 96],
+      [-64, 6]
+    ],
+    [
+      [41945, 810],
+      [-6, 72],
+      [12, 73],
+      [51, 52],
+      [5, 35]
+    ],
+    [
+      [42007, 1042],
+      [101, 42],
+      [11, -45],
+      [37, 17],
+      [40, -18],
+      [36, 75],
+      [63, -33],
+      [3, -46]
+    ],
+    [
+      [37956, 5771],
+      [13, -29],
+      [109, -71],
+      [84, 1],
+      [71, -61],
+      [6, -46],
+      [-28, -27],
+      [-8, -50],
+      [10, -99],
+      [-241, -16],
+      [-176, 21],
+      [-141, 26],
+      [88, 75],
+      [-28, 15],
+      [-27, 58],
+      [2, 68],
+      [144, -12],
+      [65, -17],
+      [25, 14],
+      [-7, 111],
+      [39, 39]
+    ],
+    [
+      [42895, 1734],
+      [-15, -138],
+      [-75, -129],
+      [-41, 19]
+    ],
+    [
+      [42540, 1550],
+      [-47, 81],
+      [-96, 68],
+      [-9, 20],
+      [-74, 27],
+      [-25, 24],
+      [-42, 83],
+      [-20, 60],
+      [-60, 35],
+      [-45, 7],
+      [-24, 36],
+      [-88, 57],
+      [-16, -47],
+      [-47, -40],
+      [-44, -8],
+      [3, 59],
+      [-30, -8],
+      [0, -62],
+      [-87, 26]
+    ],
+    [
+      [41789, 1968],
+      [-12, 59],
+      [23, 24],
+      [38, 4],
+      [-3, 37],
+      [51, 19],
+      [-27, 89],
+      [67, -42],
+      [56, -54],
+      [36, 23],
+      [30, -24],
+      [46, -66],
+      [44, -15],
+      [53, 87],
+      [19, 80],
+      [-22, 12],
+      [50, 102],
+      [33, 28],
+      [19, 184],
+      [-2, 40],
+      [-63, -13],
+      [-40, -42],
+      [-18, 66]
+    ],
+    [
+      [42167, 2566],
+      [-2, 68],
+      [26, 43],
+      [38, 26],
+      [19, 46],
+      [46, -19],
+      [27, 55],
+      [-37, 28],
+      [10, 48],
+      [44, -6],
+      [-6, -41],
+      [71, 3],
+      [14, 35],
+      [52, -15]
+    ],
+    [
+      [40943, 5581],
+      [-10, -88],
+      [-33, -11],
+      [-31, -40],
+      [24, -28],
+      [-5, -44],
+      [-82, -17],
+      [-55, -41],
+      [5, -38],
+      [-49, -73],
+      [-11, -58],
+      [14, -49]
+    ],
+    [
+      [40710, 5094],
+      [-36, -47],
+      [-39, -1],
+      [-14, -42],
+      [-76, -55]
+    ],
+    [
+      [40247, 5245],
+      [39, 124],
+      [-17, 16],
+      [8, 61],
+      [59, 25],
+      [47, -31],
+      [43, 5],
+      [12, 48],
+      [80, 65],
+      [-5, 61],
+      [42, 24],
+      [38, 75],
+      [0, 27]
+    ],
+    [
+      [40593, 5745],
+      [40, -10],
+      [35, 24],
+      [106, -43],
+      [21, 50],
+      [36, -22],
+      [63, -3],
+      [33, -59],
+      [16, -101]
+    ],
+    [
+      [65208, 5800],
+      [49, -40],
+      [9, -60],
+      [29, -64],
+      [38, -40],
+      [-15, -47],
+      [-74, 87],
+      [-17, 66],
+      [-31, 53],
+      [12, 45]
+    ],
+    [
+      [64946, 7387],
+      [27, -84],
+      [-18, -65],
+      [-85, -23],
+      [-116, -96],
+      [66, 181],
+      [81, 43],
+      [45, 44]
+    ],
+    [
+      [66795, 8446],
+      [-4, -1],
+      [2, 3],
+      [5, -1]
+    ],
+    [
+      [64542, 8383],
+      [0, 36],
+      [-31, 53],
+      [50, 39],
+      [-53, 38],
+      [-9, 30],
+      [101, 48],
+      [8, 72],
+      [-22, 45],
+      [28, 40],
+      [-73, 81],
+      [-27, 7],
+      [11, 79],
+      [48, 14],
+      [40, 36],
+      [-15, 79],
+      [61, 54],
+      [-2, 32],
+      [-51, 60],
+      [34, 57],
+      [-24, 85],
+      [28, 36],
+      [98, 74],
+      [-51, 83],
+      [-1, 52]
+    ],
+    [
+      [66799, 8447],
+      [-2, 10],
+      [-9, -3],
+      [-1, -9],
+      [-11, -6],
+      [-39, 11],
+      [-19, -54],
+      [-33, -11],
+      [-62, 23],
+      [-6, -81],
+      [-52, -54],
+      [-54, 30],
+      [-27, -22],
+      [40, -55],
+      [-85, -45],
+      [-20, -68],
+      [-25, -1],
+      [-33, -54],
+      [-69, -14],
+      [-73, -94],
+      [-131, -81],
+      [7, -39],
+      [-33, -29],
+      [-16, -113],
+      [-26, -17],
+      [-66, 67],
+      [-30, 72],
+      [-6, 49],
+      [-60, 42],
+      [-8, 35],
+      [-50, -10],
+      [-108, 18],
+      [-66, -7],
+      [-229, -114],
+      [-49, -88],
+      [-58, -66],
+      [-24, -46],
+      [-35, -5],
+      [20, 136],
+      [20, 26],
+      [-8, 114],
+      [-49, -21],
+      [-44, -62],
+      [-116, -80],
+      [13, -32],
+      [-24, -55],
+      [-47, -33],
+      [-15, 61],
+      [-54, 68],
+      [-59, -57],
+      [-57, 19],
+      [-34, -55],
+      [-41, -4],
+      [-16, -34],
+      [3, -66],
+      [-37, -19],
+      [26, -110],
+      [-51, -20],
+      [-33, -58],
+      [5, -56],
+      [-90, -116],
+      [-60, -130],
+      [-30, -149],
+      [30, -68],
+      [75, -38],
+      [-7, 49],
+      [41, 29],
+      [63, -50],
+      [30, 0],
+      [18, -42],
+      [-39, -96],
+      [-59, -55],
+      [-1, -65],
+      [14, -62],
+      [-14, -108],
+      [26, -35],
+      [60, 20],
+      [3, -124],
+      [20, -45],
+      [1, -58],
+      [-34, -21],
+      [-25, -51],
+      [-45, 24],
+      [-34, 66],
+      [51, 80],
+      [-32, 24],
+      [-55, -39],
+      [31, -51],
+      [-75, -48],
+      [-51, -123],
+      [-34, -114],
+      [5, -144],
+      [18, -60],
+      [53, -89],
+      [-5, -39],
+      [-78, -103],
+      [-80, -8],
+      [-18, 40],
+      [-40, 2],
+      [-75, -49],
+      [-115, -141],
+      [-18, -89],
+      [-6, -97],
+      [20, -40],
+      [-20, -71],
+      [36, -76],
+      [-3, -49],
+      [-67, 62],
+      [-36, -8],
+      [-73, -49],
+      [-72, -91],
+      [-26, 73],
+      [-29, -56],
+      [42, -34],
+      [-29, -43],
+      [-1, -120],
+      [17, -25],
+      [-51, -117],
+      [-5, -57],
+      [-45, -70],
+      [-25, -61],
+      [-53, -47],
+      [-73, -130],
+      [-67, -76],
+      [-62, 107],
+      [-11, 83],
+      [2, 115],
+      [-7, 153],
+      [-23, 134],
+      [-38, 162],
+      [-16, 206],
+      [-29, 252],
+      [-40, 253],
+      [-25, 245],
+      [3, 108],
+      [15, 208],
+      [16, 58],
+      [40, 206],
+      [26, 73],
+      [63, 56],
+      [30, 65],
+      [20, -11],
+      [59, 154],
+      [-29, 148],
+      [97, -10],
+      [31, 21],
+      [28, 78],
+      [43, -14],
+      [79, 38],
+      [65, 78],
+      [68, 58],
+      [133, 190],
+      [-1, 50],
+      [26, 59],
+      [103, 108],
+      [14, 62],
+      [69, 25],
+      [79, 98],
+      [39, 75],
+      [67, 51],
+      [13, 70],
+      [57, 82],
+      [107, 43],
+      [23, 47],
+      [95, 27],
+      [53, 28],
+      [-24, 40],
+      [12, 54],
+      [57, 42],
+      [21, 53],
+      [-52, 52],
+      [23, 74],
+      [27, 5],
+      [26, 251],
+      [109, 75],
+      [43, -22],
+      [41, 23],
+      [-87, 47],
+      [-20, 44],
+      [-106, -12],
+      [-151, -57],
+      [-3, -82],
+      [-25, -41],
+      [7, -83],
+      [-26, -94],
+      [65, -32],
+      [-69, -69],
+      [-25, 71],
+      [-75, -17]
+    ],
+    [
+      [41945, 810],
+      [-24, 29],
+      [-73, -24],
+      [-86, 16],
+      [-30, 48],
+      [-17, -8],
+      [-72, 37],
+      [-44, 44]
+    ],
+    [
+      [41599, 952],
+      [1, 82],
+      [18, 74],
+      [25, 27],
+      [13, 57],
+      [68, -28],
+      [33, -42],
+      [32, 45],
+      [17, 79],
+      [-22, 42],
+      [32, 37]
+    ],
+    [
+      [41816, 1325],
+      [31, 10],
+      [30, -59],
+      [50, -8],
+      [30, -65],
+      [-30, -39],
+      [23, -55],
+      [29, 23],
+      [28, -90]
+    ],
+    [
+      [40112, 10400],
+      [1, 0],
+      [58, -16],
+      [63, -42],
+      [88, -92],
+      [31, 3],
+      [81, -66],
+      [55, -75],
+      [-12, -148],
+      [-63, -60],
+      [68, -124],
+      [-1, -39],
+      [31, -61],
+      [-23, -56],
+      [32, -33],
+      [-40, -32],
+      [69, -75],
+      [53, -26],
+      [34, 37],
+      [113, -97],
+      [8, -56],
+      [66, -25]
+    ],
+    [
+      [41047, 8335],
+      [-74, -10],
+      [-61, 43],
+      [-35, -34],
+      [-49, 6],
+      [-31, -60],
+      [-149, -88]
+    ],
+    [
+      [40648, 8192],
+      [-34, -13],
+      [-138, 73],
+      [-47, -41],
+      [-138, 12],
+      [-58, -33],
+      [35, -40],
+      [47, 2],
+      [-29, -64],
+      [-58, 27],
+      [-54, -73],
+      [-70, -77],
+      [-28, 2],
+      [-390, 161],
+      [-175, 59],
+      [-60, 61]
+    ],
+    [
+      [39451, 8248],
+      [81, 96],
+      [22, 46],
+      [257, 337],
+      [65, 167],
+      [-60, 91],
+      [-7, 39],
+      [-86, 73],
+      [-49, 22],
+      [-98, 120],
+      [48, 26],
+      [54, 94],
+      [-7, 85],
+      [-82, 61],
+      [-6, 77],
+      [23, 25],
+      [-18, 57],
+      [-56, -1],
+      [-20, 35],
+      [-3, 75],
+      [38, 33],
+      [-32, 36],
+      [21, 44],
+      [-7, 120],
+      [74, 44],
+      [-39, 161],
+      [-47, 67],
+      [-48, 121]
+    ],
+    [
+      [39469, 10399],
+      [237, 25],
+      [129, 1],
+      [41, -10],
+      [52, -100],
+      [82, -3],
+      [54, 93],
+      [48, -5]
+    ],
+    [
+      [50630, 5826],
+      [-30, -43],
+      [14, -130],
+      [41, -71],
+      [-38, -92],
+      [5, -132],
+      [49, 47],
+      [22, -43],
+      [37, 10],
+      [7, -59],
+      [-26, -39],
+      [30, -126],
+      [-36, -11],
+      [-41, -81],
+      [12, -74],
+      [32, -92],
+      [-26, -45],
+      [53, -77],
+      [-33, -76],
+      [11, -34],
+      [-29, -47],
+      [-38, -29],
+      [-3, -47],
+      [-53, -38]
+    ],
+    [
+      [49961, 5408],
+      [-21, 66],
+      [-4, 72],
+      [24, 24],
+      [-38, 76],
+      [10, 50],
+      [-21, 169],
+      [-30, 51],
+      [-38, 153]
+    ],
+    [
+      [49843, 6069],
+      [53, 42],
+      [41, 2],
+      [57, 30],
+      [51, 4],
+      [67, 91],
+      [51, 32],
+      [7, 44],
+      [44, -27],
+      [34, 26],
+      [39, -34],
+      [62, 13],
+      [6, 32],
+      [76, 1],
+      [9, -47],
+      [186, 141]
+    ],
+    [
+      [50626, 6419],
+      [11, -94],
+      [-10, -58],
+      [19, -59],
+      [40, -26],
+      [55, -68],
+      [5, -47],
+      [33, -96],
+      [-44, -39],
+      [-43, -13],
+      [-62, -93]
+    ],
+    [
+      [59778, 5700],
+      [-20, -83],
+      [-72, 14],
+      [62, 64],
+      [30, 5]
+    ],
+    [
+      [59867, 5728],
+      [61, -47],
+      [47, -15],
+      [-41, -47],
+      [1, -51],
+      [-64, -63],
+      [-33, 90],
+      [-35, 19],
+      [64, 114]
+    ],
+    [
+      [61214, 8537],
+      [47, 5],
+      [85, -55],
+      [64, 35],
+      [78, -41],
+      [84, -134],
+      [-4, -48],
+      [34, -117],
+      [-21, -97],
+      [-38, -17],
+      [-1, -96],
+      [-57, 33],
+      [-95, -76],
+      [-24, -47],
+      [21, -61],
+      [43, -46],
+      [101, 18],
+      [19, -44],
+      [38, -9],
+      [-5, -43],
+      [53, -17],
+      [38, -34],
+      [9, -91],
+      [-16, -94],
+      [-44, -19]
+    ],
+    [
+      [61623, 7442],
+      [-98, 38],
+      [-25, -25],
+      [-1, -52],
+      [-48, -54],
+      [-41, 41],
+      [22, 43],
+      [-70, 30],
+      [-68, -4],
+      [-43, -18],
+      [-108, 1],
+      [-73, 13],
+      [-52, -7],
+      [-51, -27],
+      [-51, 15],
+      [-148, -68],
+      [-87, -100],
+      [-53, -108],
+      [-69, -72],
+      [-52, -26],
+      [-50, -58],
+      [-42, -122],
+      [-11, -66],
+      [-37, -34],
+      [-57, -25],
+      [-38, -88],
+      [-34, -8],
+      [-37, -67],
+      [-43, -11],
+      [-46, -52],
+      [-8, -48],
+      [-55, -31],
+      [-8, -42],
+      [-50, -60],
+      [-36, -71],
+      [-12, -62],
+      [-24, -6],
+      [-38, -95],
+      [-25, -7],
+      [-148, -173],
+      [-72, -52],
+      [-54, -114],
+      [-82, -72],
+      [-33, -13],
+      [-54, -69],
+      [5, -72],
+      [129, -70],
+      [47, 18],
+      [60, -10],
+      [57, 20],
+      [11, -25],
+      [-22, -60],
+      [10, -79],
+      [-5, -71],
+      [-17, -22],
+      [4, -89],
+      [91, 23],
+      [-15, 131],
+      [57, 54],
+      [39, -24],
+      [-20, -40],
+      [-35, -6],
+      [63, -105],
+      [-32, -82],
+      [-32, -5],
+      [-3, -52],
+      [120, 20],
+      [66, 62],
+      [13, 69],
+      [40, 38],
+      [-3, -79],
+      [-29, -45],
+      [25, -47],
+      [22, 55],
+      [20, 111],
+      [-8, 133],
+      [83, -48],
+      [29, -5],
+      [87, 47],
+      [2, -36],
+      [77, -61],
+      [24, -40],
+      [-14, -34],
+      [56, -94],
+      [74, -60],
+      [-6, -30],
+      [53, -44],
+      [42, -9],
+      [5, -53],
+      [-56, -72],
+      [-35, -23],
+      [45, -37],
+      [13, -104],
+      [-28, -74],
+      [26, -47],
+      [49, -55],
+      [-32, -25],
+      [14, -60],
+      [-47, -51],
+      [-10, -57],
+      [-29, -10],
+      [-12, -58],
+      [-24, -23],
+      [8, -50],
+      [-27, -8],
+      [1, -120],
+      [-34, -68],
+      [-15, -128],
+      [15, -76],
+      [1, -83],
+      [30, -43],
+      [-34, -27],
+      [-16, -49],
+      [24, -36],
+      [4, -91],
+      [-40, -130],
+      [-5, -81],
+      [10, -54],
+      [-23, -31],
+      [-12, -69],
+      [-2, -96],
+      [-83, -114],
+      [-35, -79],
+      [-51, -69],
+      [-39, -133],
+      [-1, -29]
+    ],
+    [
+      [60133, 2540],
+      [-44, 35],
+      [-41, -1],
+      [-5, 102],
+      [36, 27],
+      [-9, 63],
+      [-26, 34],
+      [1, 56],
+      [-19, 43],
+      [-8, 57],
+      [-30, 13],
+      [-18, -47],
+      [-51, -21],
+      [-29, -35],
+      [-55, -1],
+      [-27, -38],
+      [14, -44],
+      [30, -21],
+      [7, -62],
+      [33, -34],
+      [30, 7],
+      [21, -23],
+      [7, -70],
+      [-53, -67],
+      [-19, 11],
+      [-54, -64],
+      [-64, 45],
+      [-26, -89],
+      [10, -33],
+      [-74, -85],
+      [-50, -12],
+      [-53, 41],
+      [-39, -13],
+      [-22, 51],
+      [-31, 7],
+      [-38, 41],
+      [-7, 40],
+      [-44, 14],
+      [-19, -33],
+      [-57, -2],
+      [-15, -70],
+      [-19, -23],
+      [-1, -63],
+      [-16, -20],
+      [-75, -20]
+    ],
+    [
+      [59184, 2236],
+      [0, 65],
+      [22, 109],
+      [16, 38],
+      [-14, 32],
+      [35, 72],
+      [30, 3],
+      [34, 58],
+      [19, 69],
+      [-35, 63],
+      [-7, 48],
+      [23, 58],
+      [-18, 81],
+      [-53, 4]
+    ],
+    [
+      [59236, 2936],
+      [42, 43],
+      [45, -19],
+      [25, 67],
+      [-72, 17],
+      [-36, 45],
+      [-29, -41],
+      [-81, 19],
+      [-63, 40],
+      [-30, 47],
+      [-18, 115],
+      [-67, 23],
+      [-9, 33],
+      [-67, -1],
+      [-2, 38],
+      [-43, 32],
+      [-20, -13],
+      [-13, -67],
+      [-41, 19],
+      [-51, -47],
+      [-18, 11]
+    ],
+    [
+      [58612, 5939],
+      [-17, 90],
+      [15, 63],
+      [34, 73],
+      [5, 72],
+      [31, 34],
+      [60, -20],
+      [10, 98],
+      [30, 39],
+      [-68, 125],
+      [-47, 34],
+      [13, 62],
+      [38, -27],
+      [55, 127],
+      [57, 60],
+      [-59, 72],
+      [-48, 85],
+      [31, 45],
+      [60, -61],
+      [39, 87],
+      [-12, 100],
+      [48, -6],
+      [25, 53],
+      [-10, 29],
+      [19, 71],
+      [42, 10],
+      [3, 77],
+      [36, 34],
+      [93, 28],
+      [22, -14],
+      [65, 15],
+      [46, -26],
+      [171, -40],
+      [95, 160],
+      [47, 1],
+      [40, -35],
+      [131, -39],
+      [35, 36],
+      [40, 7],
+      [52, 54],
+      [4, 40],
+      [31, 34],
+      [89, -8],
+      [33, 83],
+      [-15, 20],
+      [3, 114],
+      [28, 56],
+      [-11, 31],
+      [36, 95],
+      [-57, 72],
+      [44, 92],
+      [53, 57],
+      [107, 80],
+      [62, 27],
+      [65, 118],
+      [1, 69],
+      [47, 4],
+      [27, 153],
+      [24, 35],
+      [38, 2],
+      [45, 36],
+      [34, -46],
+      [39, 7],
+      [45, -94],
+      [70, -76],
+      [57, 26],
+      [12, -51],
+      [49, -18],
+      [24, 28],
+      [47, -14],
+      [47, 34],
+      [82, -21],
+      [67, 5],
+      [20, -97],
+      [91, 49],
+      [37, 83]
+    ],
+    [
+      [50973, 4489],
+      [-52, -20],
+      [-41, -91],
+      [19, -61],
+      [-34, -20],
+      [-49, -72],
+      [-34, 23],
+      [-51, -14],
+      [-72, 0]
+    ],
+    [
+      [50630, 5826],
+      [60, -56],
+      [3, -43],
+      [44, -79],
+      [66, 23],
+      [20, -18],
+      [46, 34],
+      [43, 8],
+      [58, -37],
+      [4, -59],
+      [86, -33],
+      [-11, -67],
+      [57, -57],
+      [9, -62],
+      [48, -115],
+      [1, -37],
+      [-26, -61],
+      [27, -124],
+      [51, -28],
+      [19, -65],
+      [-35, -53],
+      [-58, -33],
+      [9, -86],
+      [-29, -49],
+      [-39, -36],
+      [-64, -83],
+      [-46, -121]
+    ],
+    [
+      [49854, 8593],
+      [-1, -78],
+      [48, -82],
+      [120, -42],
+      [48, -45],
+      [49, -11],
+      [9, -33],
+      [-59, -31],
+      [2, -55],
+      [-207, -124],
+      [-59, -46]
+    ],
+    [
+      [49804, 8046],
+      [-58, -4],
+      [-80, 73],
+      [-61, -4],
+      [-99, -76],
+      [-48, -50],
+      [-2, -41],
+      [-47, -36],
+      [-55, 48],
+      [-73, -8],
+      [-74, 8],
+      [-7, 45],
+      [-61, 22],
+      [-106, -48],
+      [-162, -5],
+      [-10, 54],
+      [-44, 8],
+      [-26, -28],
+      [-144, 20],
+      [-199, 0],
+      [-10, -64],
+      [13, -39],
+      [-40, -36],
+      [1, -94],
+      [-27, -60],
+      [8, -42],
+      [-18, -167],
+      [-94, -18],
+      [-44, -46],
+      [-21, -53],
+      [-40, -40],
+      [12, -97],
+      [-94, -101],
+      [-7, -20]
+    ],
+    [
+      [48087, 7147],
+      [-19, 18],
+      [-172, 3],
+      [-34, 42],
+      [-61, 17],
+      [-53, -24],
+      [-71, 28],
+      [25, 33],
+      [-84, 67],
+      [-42, 51],
+      [2, 31],
+      [-68, 91],
+      [-38, 5],
+      [-95, 85],
+      [-34, 42],
+      [-114, -16],
+      [-85, 53],
+      [-63, -30],
+      [-46, 39],
+      [-51, -11],
+      [21, -68],
+      [-99, -90],
+      [-50, 0],
+      [-11, -70],
+      [-24, -51],
+      [-63, -27],
+      [-61, -11],
+      [-25, -44],
+      [-88, -54],
+      [-25, 24],
+      [-40, -37],
+      [2, -92],
+      [-99, -36],
+      [-62, -2]
+    ],
+    [
+      [46360, 7113],
+      [-7, 37],
+      [-40, 16],
+      [-36, 46],
+      [-54, 184],
+      [-28, 35],
+      [-69, 3],
+      [-50, 23],
+      [-81, 13],
+      [-36, 57],
+      [1, 113],
+      [-28, 121],
+      [-84, 38],
+      [6, 64],
+      [-49, 86],
+      [-37, 114],
+      [11, 77],
+      [-33, 53],
+      [-309, 205],
+      [-124, 19],
+      [-67, -15],
+      [-15, 60],
+      [-30, 24],
+      [-69, 12]
+    ],
+    [
+      [45132, 8498],
+      [5, 131],
+      [28, 16],
+      [-1, 49],
+      [-35, 42],
+      [-14, 70],
+      [16, 71],
+      [-42, 44],
+      [16, 40],
+      [41, 307],
+      [12, 37],
+      [56, 65],
+      [-49, 48],
+      [5, 78],
+      [-32, 50],
+      [35, 65],
+      [-8, 56],
+      [76, 54],
+      [29, 57],
+      [42, -11],
+      [34, -58],
+      [91, 71],
+      [55, 65],
+      [3, 70],
+      [45, 61],
+      [82, 60]
+    ],
+    [
+      [45622, 10036],
+      [45, -40],
+      [30, -82],
+      [78, -46],
+      [-10, -126],
+      [-15, -32],
+      [25, -54],
+      [-59, -67],
+      [61, -56],
+      [34, 17],
+      [70, -30],
+      [14, -49],
+      [33, -28],
+      [78, 42],
+      [73, -1],
+      [202, 58],
+      [117, 13],
+      [42, -31],
+      [62, 23],
+      [43, -39],
+      [-23, -64],
+      [26, -40],
+      [58, -42],
+      [73, 6],
+      [26, -17],
+      [133, 100],
+      [82, -42],
+      [18, 61],
+      [56, 39],
+      [24, -25],
+      [68, 2],
+      [9, -23],
+      [86, 12],
+      [79, -61],
+      [11, -39],
+      [-30, -34],
+      [63, -132],
+      [70, 2],
+      [38, -49],
+      [1, -64],
+      [21, -88],
+      [102, 40],
+      [100, -1],
+      [35, 49],
+      [41, 0],
+      [52, -84],
+      [156, -18],
+      [52, -53],
+      [96, 7],
+      [143, 29],
+      [114, -62],
+      [64, 28],
+      [57, -29],
+      [20, -51],
+      [45, -47],
+      [84, -66],
+      [65, -4],
+      [117, 21],
+      [36, -11],
+      [159, 3],
+      [17, 85],
+      [57, 20],
+      [77, 68],
+      [3, 30],
+      [63, 20],
+      [66, -88],
+      [-7, -22],
+      [86, -63],
+      [33, -6],
+      [37, 52],
+      [35, -25],
+      [90, -2],
+      [1, -46],
+      [53, -16],
+      [5, -30],
+      [66, -31],
+      [29, 30],
+      [59, -5],
+      [35, -58],
+      [77, -81]
+    ],
+    [
+      [43034, 8051],
+      [35, -107],
+      [-5, -39],
+      [40, -66],
+      [-53, -69],
+      [9, -54],
+      [-1, -130],
+      [108, -20],
+      [-5, -56],
+      [55, -21],
+      [50, -37],
+      [-12, -55],
+      [56, 1],
+      [4, 168],
+      [40, 13],
+      [-3, 40],
+      [130, 42],
+      [26, -3],
+      [46, 79],
+      [41, -7],
+      [40, -50],
+      [82, 153],
+      [62, -24]
+    ],
+    [
+      [43779, 7809],
+      [34, -20],
+      [166, -30],
+      [19, 36],
+      [39, -67],
+      [-1, -64],
+      [-17, -83],
+      [-66, -142],
+      [25, -72],
+      [93, -47],
+      [-17, -26],
+      [29, -90],
+      [-33, -36],
+      [10, -86]
+    ],
+    [
+      [44060, 7082],
+      [-74, -30],
+      [-28, 3],
+      [-22, 49],
+      [-38, -16],
+      [-14, -42],
+      [-77, 7],
+      [-46, 22],
+      [-48, -18],
+      [-50, -105],
+      [31, -33],
+      [17, -142],
+      [-34, -79],
+      [-41, -42],
+      [-58, -9],
+      [-20, -55],
+      [60, -156],
+      [18, -15],
+      [-30, -84],
+      [-38, -6],
+      [-2, -61],
+      [33, -56],
+      [19, -93]
+    ],
+    [
+      [43618, 6121],
+      [-20, -19],
+      [-55, 31],
+      [-21, 45],
+      [-42, 39],
+      [-22, 67],
+      [-53, 47],
+      [-43, 4]
+    ],
+    [
+      [43362, 6335],
+      [13, 53],
+      [-24, 40],
+      [-39, 2],
+      [-7, 66],
+      [-27, 17],
+      [-48, -25],
+      [-34, 62],
+      [-40, -34],
+      [-21, 27],
+      [-74, -15],
+      [-36, 14],
+      [-21, -53],
+      [-44, -14],
+      [-39, 24],
+      [-53, -72],
+      [-46, -18],
+      [-16, 36],
+      [-68, 9]
+    ],
+    [
+      [42738, 6454],
+      [15, 105],
+      [-25, 86],
+      [24, 42],
+      [36, -8],
+      [98, 47],
+      [11, 88],
+      [33, 44],
+      [-75, 30],
+      [-171, 14],
+      [-16, 11]
+    ],
+    [
+      [42668, 6913],
+      [18, 64],
+      [-9, 32],
+      [33, 96],
+      [83, 35],
+      [-5, 30],
+      [70, 88],
+      [45, 8],
+      [-16, 54],
+      [-42, 34],
+      [-9, 76],
+      [-40, 8],
+      [10, 102]
+    ],
+    [
+      [42806, 7540],
+      [-3, 58],
+      [-31, 9],
+      [19, 156],
+      [-47, -45],
+      [-71, 31],
+      [-16, 49],
+      [89, 15],
+      [11, 76],
+      [39, 54],
+      [-12, 69],
+      [13, 41]
+    ],
+    [
+      [46267, 11146],
+      [-28, -51],
+      [9, -127],
+      [36, -28],
+      [93, 17],
+      [-16, -115],
+      [29, -88],
+      [-73, -37],
+      [-31, -39],
+      [-100, -81],
+      [12, -69],
+      [-97, -45],
+      [-60, -61],
+      [-49, 0],
+      [-41, -43],
+      [-88, -48],
+      [-61, -127],
+      [-34, -36],
+      [-12, -68],
+      [-134, -64]
+    ],
+    [
+      [45132, 8498],
+      [-20, -55],
+      [7, -47]
+    ],
+    [
+      [45119, 8396],
+      [-102, -73],
+      [-154, -5],
+      [-152, 11],
+      [-22, -13],
+      [-69, 23],
+      [-55, -41],
+      [-30, -86],
+      [-73, 19],
+      [-25, -63],
+      [-86, 7],
+      [-38, -46],
+      [-24, -59],
+      [-209, 35],
+      [-10, -53],
+      [-91, 17],
+      [17, 63],
+      [-106, 15],
+      [-17, -49],
+      [-58, 4],
+      [-24, -50],
+      [-83, 17],
+      [-26, -118],
+      [72, -29],
+      [36, -35],
+      [-11, -78]
+    ],
+    [
+      [43147, 10203],
+      [440, 249],
+      [55, 26],
+      [16, 54],
+      [99, 68],
+      [458, -34],
+      [259, -7],
+      [568, 4],
+      [229, 1],
+      [237, 3],
+      [280, 167],
+      [5, 55],
+      [31, 56],
+      [47, 40],
+      [67, 13],
+      [47, 46],
+      [-10, 45],
+      [127, 70],
+      [-5, 56],
+      [90, 32],
+      [80, -1]
+    ],
+    [
+      [42668, 6913],
+      [-99, -14],
+      [-44, -50],
+      [-31, 46],
+      [-46, 17],
+      [-63, -4],
+      [-2, -82],
+      [-23, -71],
+      [-27, 4],
+      [-42, -76],
+      [-58, -31],
+      [-66, 3]
+    ],
+    [
+      [41558, 6587],
+      [-16, 80],
+      [34, 53],
+      [20, 76],
+      [-15, 41],
+      [28, 25],
+      [-2, 44],
+      [31, 25],
+      [23, 65],
+      [32, 27],
+      [-45, 74]
+    ],
+    [
+      [41648, 7097],
+      [58, 79],
+      [-20, 27],
+      [21, 81],
+      [70, 32],
+      [82, 19],
+      [-19, 63],
+      [47, 21],
+      [71, 5],
+      [41, -74],
+      [61, 50],
+      [38, -21],
+      [152, 3],
+      [27, -36],
+      [37, 10],
+      [92, -16],
+      [13, 28],
+      [49, 13],
+      [115, -15],
+      [23, 59],
+      [63, 17],
+      [6, 91],
+      [131, 7]
+    ],
+    [
+      [41212, 2321],
+      [26, -9],
+      [13, -67],
+      [39, -5],
+      [21, 53],
+      [37, 31],
+      [14, -16],
+      [78, -8],
+      [29, -27],
+      [-13, -68],
+      [39, -27],
+      [5, -60],
+      [17, -32],
+      [59, 3],
+      [72, -59],
+      [39, -72]
+    ],
+    [
+      [41687, 1958],
+      [-4, -30],
+      [26, -47],
+      [-20, -37],
+      [-60, -8],
+      [-6, -51],
+      [37, -60],
+      [7, -75],
+      [54, -3],
+      [10, -45],
+      [30, -59],
+      [30, -22],
+      [2, -40],
+      [-24, -47],
+      [-6, -50],
+      [53, -59]
+    ],
+    [
+      [41599, 952],
+      [-27, -6],
+      [-59, 27],
+      [-31, -8],
+      [-16, -73],
+      [-28, 53],
+      [-76, 113],
+      [-87, 153],
+      [-39, 48],
+      [-41, 28],
+      [-66, 26],
+      [-45, 64],
+      [-29, 63],
+      [-20, -30],
+      [-33, 11],
+      [-31, 35],
+      [-24, 89],
+      [-67, 52],
+      [-51, 15],
+      [-6, 22],
+      [37, 45],
+      [12, 60],
+      [64, -48],
+      [47, 5],
+      [29, 50],
+      [0, 71],
+      [44, 47],
+      [22, 106],
+      [37, 7],
+      [27, 47],
+      [34, -44],
+      [21, 22],
+      [-55, 62],
+      [-36, 62],
+      [-39, 12],
+      [-17, 92],
+      [49, -1],
+      [42, 36],
+      [40, 59],
+      [31, -3]
+    ],
+    [
+      [48852, 13059],
+      [52, -67],
+      [16, -66],
+      [-31, -21],
+      [-95, 13],
+      [-42, 57],
+      [100, 84]
+    ],
+    [
+      [54891, 13398],
+      [-64, -83]
+    ],
+    [
+      [54827, 13315],
+      [-41, 37],
+      [-82, -46],
+      [-112, -1],
+      [-20, 57],
+      [50, 18],
+      [30, 57],
+      [115, -3],
+      [124, -36]
+    ],
+    [
+      [55058, 13660],
+      [177, -15],
+      [69, -28],
+      [-42, -95],
+      [-71, -53],
+      [-126, 27],
+      [-93, 39],
+      [-26, 42],
+      [92, 6],
+      [20, 77]
+    ],
+    [
+      [50326, 13841],
+      [-34, -62],
+      [-91, 2],
+      [40, 54],
+      [85, 6]
+    ],
+    [
+      [51996, 14382],
+      [102, 0],
+      [8, -69],
+      [-132, 5],
+      [22, 64]
+    ],
+    [
+      [54829, 13312],
+      [-3, -31],
+      [-101, -161],
+      [95, -15],
+      [12, -43],
+      [-40, -114],
+      [12, -64],
+      [82, -46],
+      [-29, -54],
+      [118, -48],
+      [-7, -40],
+      [69, -29],
+      [2, -135],
+      [19, -162],
+      [39, -13],
+      [52, -67],
+      [-7, -53],
+      [-75, -8],
+      [-33, -33],
+      [-79, -16],
+      [-113, -58],
+      [-70, -16],
+      [-85, -52],
+      [4, -91],
+      [-96, -8],
+      [-47, -63],
+      [15, -101],
+      [-28, -82],
+      [-79, 26],
+      [-113, -2],
+      [-58, -57],
+      [-98, -18],
+      [-87, -45],
+      [-101, 11],
+      [-67, -76],
+      [141, -211],
+      [11, -93],
+      [-5, -192],
+      [-23, -222],
+      [-3, -108],
+      [-135, -73],
+      [-13, -54],
+      [-87, -8],
+      [30, -42],
+      [82, -31],
+      [32, -60],
+      [3, -82],
+      [-24, -39],
+      [-3, -100],
+      [50, -28],
+      [13, -53],
+      [-5, -121],
+      [68, -60],
+      [-3, -66],
+      [-58, -10],
+      [-22, -58],
+      [-70, -56],
+      [8, -83],
+      [-68, -82],
+      [16, -71],
+      [55, -25],
+      [88, 3],
+      [84, -34],
+      [49, -4],
+      [6, -37],
+      [60, 8],
+      [58, -37],
+      [26, 15]
+    ],
+    [
+      [52142, 5108],
+      [-6, -32],
+      [-51, -24],
+      [-38, 0],
+      [-30, -27],
+      [-63, 16],
+      [-64, -46],
+      [-36, 26],
+      [-17, -23],
+      [-70, -7],
+      [-38, -185],
+      [-62, -22],
+      [-45, -125],
+      [-28, -37],
+      [-29, -115],
+      [-34, -9],
+      [-82, -91],
+      [-29, -45],
+      [-34, 2],
+      [-48, -25],
+      [-102, -8],
+      [-88, 47],
+      [-49, -10],
+      [-26, 25],
+      [-36, -20],
+      [-27, 74],
+      [-37, 42]
+    ],
+    [
+      [50626, 6419],
+      [22, 60],
+      [-7, 69],
+      [28, 84],
+      [47, 33],
+      [-8, 34],
+      [64, 40],
+      [-4, 87],
+      [-39, 31],
+      [-66, 4],
+      [-33, 39],
+      [-105, 25],
+      [-23, 67],
+      [-10, 95],
+      [76, 108],
+      [41, 70],
+      [53, 31],
+      [-40, 68],
+      [-8, 44],
+      [-129, -18],
+      [-32, 59],
+      [-40, 114],
+      [-64, 2],
+      [-12, 78],
+      [-117, 35],
+      [-111, -6],
+      [-62, -19],
+      [-169, -5],
+      [-13, 45],
+      [15, 90],
+      [32, 54],
+      [-17, 46],
+      [-91, 163]
+    ],
+    [
+      [49854, 8593],
+      [13, 35],
+      [63, 75],
+      [23, 91],
+      [88, 104],
+      [20, 62],
+      [-14, 28],
+      [13, 89],
+      [-92, 90],
+      [36, 36],
+      [8, 70],
+      [114, 87],
+      [1, 88],
+      [-28, 93],
+      [20, 32],
+      [-21, 88],
+      [-47, 21],
+      [-58, -23],
+      [-51, 58],
+      [-106, -6],
+      [-16, 81],
+      [60, 67],
+      [-13, 73],
+      [-52, 86],
+      [-66, 41],
+      [-73, 12],
+      [-38, 93],
+      [44, 53],
+      [-93, 146],
+      [46, 63],
+      [-55, 94],
+      [-167, 131],
+      [35, 35],
+      [0, 101],
+      [-42, 30],
+      [-67, 113],
+      [118, 17],
+      [3, 59],
+      [63, 79],
+      [-7, 119],
+      [42, 22],
+      [-49, 70],
+      [-48, 104],
+      [8, 40],
+      [-99, 21],
+      [25, 67],
+      [-54, 31],
+      [-15, -62],
+      [-129, -31],
+      [-61, 37],
+      [-154, 19],
+      [-51, 57],
+      [-20, 63],
+      [-75, 13],
+      [-22, 89],
+      [147, 135],
+      [117, 90],
+      [71, 23],
+      [31, 63],
+      [-56, 170],
+      [-130, 37],
+      [-118, 117],
+      [23, 73],
+      [75, 2],
+      [61, 37],
+      [50, 94],
+      [-115, 53],
+      [-100, -2],
+      [-112, 67],
+      [-33, 67]
+    ],
+    [
+      [48725, 12770],
+      [182, -9],
+      [83, -59],
+      [136, -46],
+      [5, -20],
+      [111, -84],
+      [20, -38],
+      [75, -25],
+      [171, 29],
+      [113, -23],
+      [-57, -76],
+      [-2, -53],
+      [-135, -56],
+      [14, -80],
+      [-23, -18],
+      [38, -100],
+      [46, -1],
+      [40, 70],
+      [51, -39],
+      [-26, -183],
+      [-59, -58],
+      [32, -73],
+      [63, 28],
+      [-39, 62],
+      [80, 2],
+      [46, 25],
+      [31, 66],
+      [-38, 73],
+      [-36, 126],
+      [-48, 96],
+      [45, 47],
+      [7, 48],
+      [47, 50],
+      [-59, 99],
+      [-134, 35],
+      [-84, 148],
+      [-171, 27],
+      [-75, 30],
+      [-28, 35],
+      [18, 47],
+      [3, 136],
+      [-54, 45],
+      [21, 52],
+      [-62, 42],
+      [56, 53],
+      [-25, 54],
+      [157, 8],
+      [103, 25],
+      [307, 4],
+      [242, 45],
+      [35, -21],
+      [95, 6],
+      [22, 38],
+      [231, 31],
+      [40, -39],
+      [-129, -95],
+      [149, 21],
+      [57, 71],
+      [-142, 144],
+      [-19, 49],
+      [-125, 20],
+      [-10, 24],
+      [142, 62],
+      [-49, 39],
+      [-117, 14],
+      [69, 57],
+      [114, -35],
+      [134, 120],
+      [-104, 42],
+      [69, 22],
+      [119, -25],
+      [131, 97],
+      [109, 61],
+      [67, -13],
+      [151, 63],
+      [122, 1],
+      [136, 44],
+      [121, 11],
+      [235, 48],
+      [-66, 74],
+      [90, 39],
+      [113, 1],
+      [54, -20],
+      [154, 31],
+      [88, -5],
+      [84, -65],
+      [174, -11],
+      [177, 56],
+      [87, 57],
+      [159, -47],
+      [32, -85],
+      [59, 11],
+      [-72, 134],
+      [-98, 32],
+      [60, 44],
+      [291, 13],
+      [42, 75],
+      [-47, 81],
+      [75, 49],
+      [5, 47],
+      [243, 162],
+      [121, 58],
+      [135, 27],
+      [239, -64],
+      [115, -1],
+      [59, -65],
+      [-72, -7],
+      [-40, -48],
+      [-119, -37],
+      [28, -40],
+      [145, 16],
+      [136, -32],
+      [130, -5],
+      [7, -48],
+      [-74, -70],
+      [-63, -96],
+      [252, 23],
+      [82, 63],
+      [226, 15],
+      [94, -23],
+      [68, 27],
+      [80, -12],
+      [145, -21],
+      [23, -26],
+      [195, -118],
+      [-17, -27],
+      [2, -80],
+      [143, 47],
+      [15, -103],
+      [63, 2],
+      [0, -68],
+      [-94, -95],
+      [66, -43],
+      [-13, -51],
+      [-173, -144],
+      [-114, -27],
+      [-65, -89],
+      [-72, 12],
+      [-106, -62],
+      [-111, -16],
+      [31, -21],
+      [-90, -53],
+      [-7, -44],
+      [-69, -50],
+      [-84, -15],
+      [-63, -47],
+      [-105, -109],
+      [-165, -25],
+      [-72, -59],
+      [-27, -57],
+      [-100, 0],
+      [-70, -89],
+      [-11, -91],
+      [61, 10],
+      [11, 83],
+      [37, 31],
+      [259, -12],
+      [85, 56],
+      [77, 10],
+      [193, 48],
+      [90, 36],
+      [56, 47],
+      [86, 25]
+    ],
+    [
+      [53229, 15657],
+      [138, -39],
+      [-56, -63],
+      [-28, -95],
+      [144, 71],
+      [187, -49],
+      [57, -65],
+      [109, -33],
+      [-16, -130],
+      [-64, -48],
+      [-100, -2],
+      [-267, -56],
+      [-302, 0],
+      [-251, -95],
+      [-101, 3],
+      [8, 70],
+      [90, 71],
+      [46, 67],
+      [18, 83],
+      [194, 225],
+      [194, 85]
+    ],
+    [
+      [51255, 15929],
+      [196, -23],
+      [167, -50],
+      [-138, -82],
+      [-217, -10],
+      [-4, 51],
+      [-126, 11],
+      [-31, 52],
+      [49, 41],
+      [104, 10]
+    ],
+    [
+      [52308, 15962],
+      [176, -67],
+      [156, 18],
+      [96, -52],
+      [95, -106],
+      [-93, -36],
+      [-2, -101],
+      [-28, -68],
+      [57, -92],
+      [-82, -48],
+      [-79, -7],
+      [-278, 7],
+      [-154, 71],
+      [-120, -2],
+      [-237, 23],
+      [-29, 53],
+      [-88, 63],
+      [26, 53],
+      [-138, 41],
+      [71, 88],
+      [120, 12],
+      [-70, 49],
+      [109, 70],
+      [269, 5],
+      [223, 26]
+    ],
+    [
+      [48924, 16264],
+      [116, -23],
+      [-92, -42],
+      [-166, 17],
+      [142, 48]
+    ],
+    [
+      [51051, 16399],
+      [144, -53],
+      [-105, -29],
+      [-163, 26],
+      [-3, 36],
+      [127, 20]
+    ],
+    [
+      [51970, 16417],
+      [68, -16],
+      [119, -114],
+      [244, -114],
+      [-118, -33],
+      [37, -124],
+      [-77, -23],
+      [-258, -10],
+      [-222, -27],
+      [-52, -34],
+      [-147, -23],
+      [-179, 70],
+      [-17, 34],
+      [-149, -1],
+      [0, 35],
+      [180, 49],
+      [99, 94],
+      [-113, 34],
+      [99, 70],
+      [244, 28],
+      [242, 105]
+    ],
+    [
+      [46170, 6388],
+      [2, -73],
+      [41, -116],
+      [64, 1],
+      [79, -113],
+      [65, 17],
+      [33, -50],
+      [29, 30],
+      [42, -27],
+      [75, -7],
+      [19, -76],
+      [98, -38],
+      [46, 19],
+      [18, -50],
+      [83, -100],
+      [1, -47]
+    ],
+    [
+      [46865, 5758],
+      [-19, -24],
+      [-72, -8],
+      [21, -48],
+      [-16, -44],
+      [-60, 9],
+      [-25, -41],
+      [-37, -17],
+      [-146, -32],
+      [-143, -58],
+      [-35, 29],
+      [-17, -35],
+      [-46, 20],
+      [-56, -52],
+      [7, -65],
+      [-49, 22],
+      [-45, -6],
+      [-61, -32],
+      [-101, -17],
+      [-95, -36]
+    ],
+    [
+      [45616, 6135],
+      [2, 50],
+      [23, 18],
+      [45, 86],
+      [65, 11],
+      [38, 27],
+      [33, -21],
+      [70, 21],
+      [55, -51],
+      [62, -8],
+      [37, 102],
+      [51, 46],
+      [50, -1],
+      [23, -27]
+    ],
+    [
+      [41044, 4443],
+      [13, -39],
+      [31, -18],
+      [63, 19]
+    ],
+    [
+      [41151, 4405],
+      [23, -14],
+      [9, -66],
+      [-56, -45],
+      [20, -37],
+      [16, -85],
+      [-6, -31]
+    ],
+    [
+      [40595, 4021],
+      [-37, 16],
+      [-13, 66],
+      [-28, 7],
+      [-54, -20],
+      [-6, 24],
+      [-73, 5],
+      [-8, 57],
+      [17, 53],
+      [-36, 65],
+      [52, 14],
+      [-14, 62]
+    ],
+    [
+      [40513, 4576],
+      [95, 43],
+      [24, -73],
+      [61, 8],
+      [81, 27],
+      [27, -57],
+      [65, -42],
+      [59, -15],
+      [49, -63],
+      [18, 34],
+      [29, -24],
+      [23, 29]
+    ],
+    [
+      [39215, 7413],
+      [-1, 0],
+      [1, 0]
+    ],
+    [
+      [39215, 7413],
+      [1, 0],
+      [18, 19],
+      [-24, 54],
+      [9, 53],
+      [-17, 34],
+      [82, -4],
+      [7, 61],
+      [47, -22],
+      [45, 14],
+      [32, 73],
+      [107, -22],
+      [-4, -29]
+    ],
+    [
+      [39469, 7766],
+      [-57, 2],
+      [-92, 77],
+      [15, 126],
+      [-19, 0],
+      [-36, -4],
+      [-68, -58],
+      [-33, 38],
+      [125, 146],
+      [22, -3],
+      [35, 74],
+      [76, 58],
+      [14, 26]
+    ],
+    [
+      [40648, 8192],
+      [-13, -106],
+      [-20, -37],
+      [-55, -22],
+      [26, -77],
+      [-37, -186],
+      [56, -87],
+      [-2, -72],
+      [23, -40],
+      [-10, -95],
+      [-22, -56],
+      [-40, -21],
+      [-41, 9],
+      [-29, -74]
+    ],
+    [
+      [40484, 7328],
+      [-83, 28],
+      [-40, -24],
+      [-48, 25],
+      [-38, 75],
+      [-74, -23],
+      [-32, 27],
+      [-60, -38],
+      [-17, -81],
+      [-58, 28],
+      [-18, 56],
+      [-62, 48],
+      [-19, -45],
+      [-64, 26],
+      [5, -48],
+      [-32, -83],
+      [-74, -2],
+      [-11, -45],
+      [-34, -33],
+      [-19, -47],
+      [-54, -14],
+      [-37, 26],
+      [-15, -50],
+      [9, -63],
+      [-43, -10]
+    ],
+    [
+      [39566, 7061],
+      [-59, 2],
+      [-52, 41],
+      [-14, 42],
+      [-48, 55],
+      [-137, 28],
+      [-19, 44],
+      [-84, 15]
+    ],
+    [
+      [39153, 7288],
+      [0, 2],
+      [0, 0],
+      [31, 101],
+      [31, 22]
+    ],
+    [
+      [41501, 4962],
+      [-13, -51],
+      [10, -161],
+      [-32, -22],
+      [20, -85],
+      [50, -36],
+      [0, -31],
+      [41, -20],
+      [41, -53],
+      [-22, -26],
+      [-18, -81]
+    ],
+    [
+      [41578, 4396],
+      [-118, 5],
+      [-35, -18],
+      [-38, 19],
+      [-4, 39],
+      [-66, 18],
+      [-14, -47],
+      [-38, 44],
+      [-40, 8],
+      [-74, -59]
+    ],
+    [
+      [41044, 4443],
+      [-3, 43],
+      [62, 78],
+      [-19, 54],
+      [-37, 55],
+      [19, 65],
+      [-6, 101]
+    ],
+    [
+      [41060, 4839],
+      [10, 20],
+      [69, -5],
+      [9, -41],
+      [73, 64],
+      [-33, 86],
+      [54, 20],
+      [-18, 51],
+      [35, 28]
+    ],
+    [
+      [41259, 5062],
+      [23, 1],
+      [32, -74],
+      [67, 13],
+      [5, 38],
+      [34, 27],
+      [27, -18],
+      [17, -58],
+      [37, -29]
+    ],
+    [
+      [61214, 8537],
+      [76, 98],
+      [-1, 81],
+      [43, 47],
+      [12, 43],
+      [-6, 103],
+      [-37, 30],
+      [-4, 56],
+      [32, 55],
+      [10, 75],
+      [41, 80],
+      [-3, 67],
+      [91, 36],
+      [41, 94],
+      [101, 3],
+      [84, -48],
+      [88, -30],
+      [42, 11],
+      [52, 85],
+      [-48, 81],
+      [60, 52],
+      [25, -33],
+      [107, -6],
+      [47, -24],
+      [92, 73],
+      [56, -36],
+      [-15, -68],
+      [113, -59],
+      [-3, 57],
+      [111, 15],
+      [41, -11],
+      [34, 48],
+      [60, 18],
+      [84, -37],
+      [-13, 52],
+      [87, 68],
+      [-48, 135],
+      [50, 96],
+      [90, 13],
+      [53, 66],
+      [13, 73],
+      [-7, 87],
+      [166, 37],
+      [-28, 68],
+      [63, 54],
+      [82, -33],
+      [161, 19],
+      [35, -46],
+      [127, 19],
+      [47, -27],
+      [23, -54],
+      [62, 23],
+      [49, 52],
+      [79, 22],
+      [40, -29],
+      [49, 11],
+      [-30, 52],
+      [22, 38]
+    ],
+    [
+      [64542, 8383],
+      [-87, -120],
+      [-64, -47],
+      [-38, -57],
+      [-110, -112],
+      [-14, -47],
+      [-119, -28],
+      [48, 152],
+      [-90, -6],
+      [9, 45],
+      [-13, 53],
+      [38, 100],
+      [31, 23],
+      [25, 83],
+      [-12, 63],
+      [-59, -29],
+      [-30, -58],
+      [-58, -19],
+      [-30, 88],
+      [-69, 19],
+      [-99, -49],
+      [-42, 12],
+      [-42, -38],
+      [-104, 23],
+      [-92, -59],
+      [-16, -37],
+      [-48, -12],
+      [-25, -130],
+      [-81, -75],
+      [-39, -63],
+      [-3, -44],
+      [-208, -194],
+      [-39, -75],
+      [-35, -19],
+      [15, -75],
+      [-50, -2],
+      [6, -74],
+      [-34, -78],
+      [65, -37],
+      [42, 53],
+      [28, -32],
+      [41, 5],
+      [38, -53],
+      [-26, -64],
+      [-75, -18],
+      [-36, 30],
+      [-34, -53],
+      [-68, -9],
+      [-19, 41],
+      [-65, 26],
+      [-28, -54],
+      [-63, -14],
+      [-23, -62],
+      [-65, 14],
+      [-26, 30],
+      [-50, -19],
+      [-15, -36],
+      [-69, -18],
+      [-63, 4],
+      [-42, 87],
+      [60, 39],
+      [55, -14],
+      [68, 9],
+      [-21, 47],
+      [-44, 31],
+      [-20, 48],
+      [-48, 60],
+      [-124, -31],
+      [-55, 36],
+      [-164, 58],
+      [-47, -16],
+      [-47, -45],
+      [14, -51],
+      [-85, -13],
+      [5, -38],
+      [-31, -50],
+      [-28, 6],
+      [-5, 51],
+      [-43, 13],
+      [-54, -9],
+      [-77, -57],
+      [-33, 35],
+      [-64, 15]
+    ],
+    [
+      [43362, 6335],
+      [26, -44],
+      [-35, -38],
+      [-49, 36],
+      [-61, -37],
+      [-24, -34],
+      [-36, 16],
+      [-33, -28],
+      [7, -78],
+      [-55, -26],
+      [-49, -108]
+    ],
+    [
+      [42623, 6070],
+      [-15, 71],
+      [-34, 22],
+      [13, 64],
+      [-33, 26],
+      [-21, 48],
+      [49, 36],
+      [-5, 70],
+      [69, 26],
+      [92, 21]
+    ],
+    [
+      [42685, 5555],
+      [10, -78],
+      [31, -72],
+      [-18, -38],
+      [-44, -43],
+      [-68, -26],
+      [-30, -65]
+    ],
+    [
+      [42566, 5233],
+      [-12, -21],
+      [-84, -20],
+      [-14, 34],
+      [-60, 1],
+      [-46, -27],
+      [-12, -28],
+      [27, -47],
+      [-34, -22],
+      [-74, 13],
+      [-39, 28],
+      [-8, 48],
+      [-70, 47],
+      [-23, -15],
+      [-37, 22],
+      [-11, -82],
+      [-110, -20],
+      [-52, 17]
+    ],
+    [
+      [41907, 5161],
+      [27, 66],
+      [-20, 37],
+      [63, 45],
+      [-40, 50],
+      [15, 81],
+      [24, 34],
+      [-59, 63],
+      [10, 46]
+    ],
+    [
+      [41927, 5583],
+      [29, -28],
+      [33, 18],
+      [23, -24],
+      [94, 78],
+      [60, -55],
+      [47, -7],
+      [6, -28],
+      [47, -53],
+      [45, -28],
+      [84, -22],
+      [29, 117],
+      [37, 46],
+      [35, 16],
+      [-2, 67],
+      [34, 38],
+      [15, -62],
+      [47, -7],
+      [26, 24]
+    ],
+    [
+      [41013, 6037],
+      [50, -52],
+      [4, -63],
+      [-58, -45],
+      [-35, 74],
+      [2, 50],
+      [37, 36]
+    ],
+    [
+      [41148, 6372],
+      [21, -28]
+    ],
+    [
+      [41169, 6344],
+      [-22, -72],
+      [32, -63],
+      [-9, -45],
+      [23, -45],
+      [10, -64],
+      [47, -29],
+      [35, 9],
+      [18, -41],
+      [44, -33],
+      [103, 24],
+      [30, -78],
+      [-1, -48],
+      [31, -79]
+    ],
+    [
+      [41510, 5780],
+      [-69, -90],
+      [-10, -42],
+      [-51, -12],
+      [-57, -140],
+      [-76, -14],
+      [-31, -147]
+    ],
+    [
+      [41216, 5335],
+      [-2, 1],
+      [-1, 0],
+      [-1, 1],
+      [-13, 9],
+      [-29, 59],
+      [14, 80],
+      [-71, 40],
+      [-32, 57],
+      [-53, -56],
+      [-39, 48],
+      [-46, 7]
+    ],
+    [
+      [40593, 5745],
+      [-17, 23],
+      [12, 85],
+      [-1, 109],
+      [-36, 70]
+    ],
+    [
+      [40551, 6032],
+      [32, 58],
+      [-1, 51],
+      [29, 32],
+      [6, 54],
+      [33, 23],
+      [45, -43],
+      [61, 11],
+      [111, 70],
+      [56, -11],
+      [3, 73],
+      [83, 47],
+      [12, 40],
+      [70, -29],
+      [14, -42],
+      [43, 6]
+    ],
+    [
+      [39469, 10399],
+      [-62, 97],
+      [-6, 63],
+      [111, 154],
+      [59, 67],
+      [15, 63],
+      [-64, 51],
+      [-68, 115],
+      [-127, 49],
+      [-40, 145],
+      [50, 77],
+      [17, 57],
+      [-70, 13],
+      [155, 87],
+      [11, 75],
+      [127, 45],
+      [71, 84],
+      [30, -31],
+      [79, 18],
+      [-11, 83],
+      [120, -45],
+      [36, 48],
+      [64, 2],
+      [1, 59],
+      [86, -46],
+      [111, -39],
+      [-1, -37],
+      [-50, -33],
+      [-125, 29],
+      [64, -64],
+      [185, -32],
+      [-23, -52],
+      [111, 14],
+      [245, -49],
+      [52, 13],
+      [141, -51],
+      [101, -71],
+      [159, -96],
+      [135, -129],
+      [50, -1],
+      [177, -140],
+      [53, 3],
+      [149, -98],
+      [72, -69],
+      [-14, -31],
+      [30, -60],
+      [-7, -66],
+      [51, -22],
+      [-1, -83],
+      [-49, -101],
+      [-99, -121],
+      [-106, -80],
+      [-99, -29],
+      [-67, -34],
+      [-158, -18],
+      [-103, 19],
+      [-104, 54],
+      [-118, 16],
+      [-222, 58],
+      [-90, 73],
+      [-83, -22],
+      [-16, 44],
+      [-82, 15],
+      [-47, 49],
+      [-36, -36],
+      [-98, 74],
+      [-43, 74],
+      [-40, -30],
+      [-1, -54],
+      [74, -78],
+      [49, -4],
+      [24, -15],
+      [-9, -13],
+      [-4, 2],
+      [1, 1],
+      [0, 2],
+      [-1, 2],
+      [-1, 1],
+      [5, -4],
+      [2, 0],
+      [-4, 8],
+      [-23, 4],
+      [-8, -25],
+      [-1, 0],
+      [-4, 0],
+      [-1, -1],
+      [-36, 9],
+      [-8, -5]
+    ],
+    [
+      [43187, 11594],
+      [38, -6],
+      [111, -70],
+      [45, -57],
+      [-91, -129],
+      [-94, -44],
+      [-114, -21],
+      [-66, 69],
+      [-1, 95],
+      [28, 82],
+      [67, 63],
+      [77, 18]
+    ],
+    [
+      [46130, 11439],
+      [-30, -48],
+      [32, -58],
+      [102, -21],
+      [76, -117],
+      [-43, -49]
+    ],
+    [
+      [42258, 10320],
+      [49, 114],
+      [-22, 43],
+      [31, 50],
+      [-40, 68],
+      [-102, 79],
+      [71, 205],
+      [-5, 50],
+      [16, 173],
+      [-132, 99],
+      [-13, 51],
+      [119, -56],
+      [154, 8],
+      [111, -11],
+      [79, -28],
+      [28, -54],
+      [95, -84],
+      [-2, -40],
+      [30, -88],
+      [-73, 3],
+      [-177, -41],
+      [-9, -55],
+      [-63, -37],
+      [-5, -70],
+      [118, -65],
+      [43, -107],
+      [42, -33],
+      [102, 16],
+      [16, -18],
+      [151, 42],
+      [54, 36],
+      [5, 136],
+      [30, 38],
+      [-19, 62],
+      [31, 20],
+      [120, 23],
+      [51, 59],
+      [53, 10],
+      [139, 80],
+      [172, 118],
+      [138, 35],
+      [-4, 24],
+      [91, 22],
+      [50, -32],
+      [22, -54],
+      [63, 49],
+      [-49, 87],
+      [168, 93],
+      [44, 0],
+      [48, -37],
+      [-25, -80],
+      [39, -82],
+      [-95, -11],
+      [-38, -58],
+      [90, 8],
+      [60, -14],
+      [36, 38],
+      [46, -6],
+      [33, -45],
+      [67, 96],
+      [73, 54],
+      [54, 1],
+      [65, 38],
+      [83, -22],
+      [167, -23],
+      [60, 82],
+      [230, 99],
+      [89, -66],
+      [24, -57],
+      [-54, -4],
+      [-3, -114],
+      [97, -26],
+      [53, 72],
+      [-31, 47],
+      [134, 38],
+      [72, 74],
+      [14, 38],
+      [-16, 61],
+      [-46, 2],
+      [-2, 51],
+      [-78, 102],
+      [-3, 47],
+      [100, 14],
+      [-2, 63],
+      [31, 19],
+      [106, -35],
+      [85, -14],
+      [166, -9],
+      [142, -35],
+      [145, -54],
+      [122, -84],
+      [-44, -19],
+      [6, -19],
+      [-3, -27],
+      [4, -4]
+    ],
+    [
+      [45054, 11982],
+      [104, -102],
+      [161, -111],
+      [9, -86],
+      [-97, -25],
+      [-73, 25],
+      [-27, 67],
+      [-82, -3],
+      [-74, 76],
+      [26, 139],
+      [53, 20]
+    ],
+    [
+      [41927, 5583],
+      [-1, 69],
+      [-43, -24],
+      [-67, 34],
+      [-12, 37]
+    ],
+    [
+      [41804, 5699],
+      [13, 6],
+      [50, 114],
+      [-9, 82],
+      [32, 55],
+      [31, 20],
+      [9, 48],
+      [41, 28],
+      [5, 45],
+      [41, 46],
+      [-36, 18],
+      [-23, 66]
+    ],
+    [
+      [42345, 631],
+      [-35, 1],
+      [-44, -25],
+      [-9, -25],
+      [-49, -28],
+      [-41, 28],
+      [11, 50],
+      [-43, 48],
+      [-27, 12]
+    ],
+    [
+      [42298, 1034],
+      [54, 12],
+      [33, -14],
+      [14, -34]
+    ],
+    [
+      [40484, 7328],
+      [47, -47],
+      [27, -52],
+      [63, 7],
+      [127, -79],
+      [26, -59],
+      [25, -3]
+    ],
+    [
+      [40799, 7095],
+      [-58, -15],
+      [-35, -36],
+      [-69, 15],
+      [-39, -29],
+      [-12, -40],
+      [-47, -39],
+      [-46, 24],
+      [-20, -71],
+      [-95, 55],
+      [-116, -61],
+      [20, -31],
+      [-15, -101],
+      [-44, -22],
+      [-5, -47],
+      [-56, -62],
+      [-55, -1],
+      [-23, -45],
+      [-70, -33],
+      [1, -24],
+      [-94, -37],
+      [-30, -69],
+      [-121, 21]
+    ],
+    [
+      [39770, 6447],
+      [-32, -10],
+      [-26, 38],
+      [22, 88],
+      [-64, 49],
+      [34, 76],
+      [-29, 40],
+      [8, 101],
+      [-46, -1],
+      [-82, 69],
+      [-33, 12],
+      [5, 63],
+      [39, 26],
+      [0, 63]
+    ],
+    [
+      [48602, 4958],
+      [-57, 71],
+      [-152, 159],
+      [-34, 41],
+      [-30, 82],
+      [61, -4],
+      [18, 31],
+      [13, 91],
+      [-77, -53],
+      [-51, 12],
+      [-1, -34],
+      [-100, -58]
+    ],
+    [
+      [48192, 5296],
+      [-2, 164],
+      [20, 55],
+      [-57, 92],
+      [-36, 7],
+      [16, 49],
+      [-37, 99],
+      [-3, 47],
+      [25, 50],
+      [-28, 13],
+      [-12, 57],
+      [45, 31],
+      [-8, 39],
+      [43, 81],
+      [92, 43],
+      [33, -10],
+      [18, 37],
+      [-32, 35],
+      [-13, 70],
+      [-37, 7],
+      [75, 81],
+      [0, 92],
+      [-25, 130]
+    ],
+    [
+      [48269, 6565],
+      [128, -27],
+      [232, -10],
+      [65, 6],
+      [13, -25],
+      [58, -23],
+      [104, -22],
+      [84, -61],
+      [100, -170],
+      [61, 9],
+      [105, 34],
+      [75, -108],
+      [35, -1],
+      [123, 45],
+      [75, 9],
+      [11, 38],
+      [51, 17],
+      [23, -43],
+      [-27, -83],
+      [50, -154],
+      [-14, -68],
+      [61, -1],
+      [69, 130],
+      [33, 14],
+      [25, -24],
+      [34, 22]
+    ],
+    [
+      [48192, 5296],
+      [-57, -21],
+      [11, -46],
+      [-78, -73],
+      [-45, 10],
+      [-60, -96],
+      [-15, -49],
+      [-94, 77],
+      [-48, -37],
+      [-47, -11],
+      [-29, 18],
+      [19, 89],
+      [24, 37],
+      [41, -9],
+      [11, 79],
+      [-87, -41],
+      [-39, 15],
+      [-19, 44],
+      [-106, 21],
+      [-64, 35],
+      [-59, 6],
+      [-4, -45],
+      [-42, -13],
+      [-32, 31],
+      [-27, -30],
+      [-26, 43],
+      [4, 47],
+      [26, 26],
+      [-6, 79],
+      [-38, 120],
+      [3, 79],
+      [-36, 93],
+      [-57, -10]
+    ],
+    [
+      [47216, 5764],
+      [-7, 40],
+      [43, 42],
+      [-24, 163],
+      [36, -3],
+      [28, 68],
+      [-8, 56],
+      [26, 46],
+      [-9, 59],
+      [47, 86],
+      [29, -7],
+      [36, 31],
+      [10, 55],
+      [-14, 42],
+      [-75, 99],
+      [-18, 62],
+      [-44, -5],
+      [-30, -43],
+      [-44, 67],
+      [54, 51],
+      [-17, 69],
+      [-24, 33],
+      [10, 123],
+      [46, 128],
+      [16, 68],
+      [78, -63],
+      [-9, -63],
+      [12, -78],
+      [112, 25],
+      [51, -38],
+      [68, 4],
+      [55, -17],
+      [61, 72],
+      [189, -9],
+      [110, 103],
+      [81, 85]
+    ],
+    [
+      [48091, 7115],
+      [34, -55],
+      [-58, -54],
+      [37, -40],
+      [-26, -50],
+      [80, -59],
+      [13, -94],
+      [44, -99],
+      [54, -99]
+    ],
+    [
+      [40710, 5094],
+      [7, -27],
+      [47, -17],
+      [40, -58],
+      [35, 8],
+      [12, -43],
+      [70, -13],
+      [34, 13],
+      [53, -11],
+      [0, -56],
+      [37, -12],
+      [15, -39]
+    ],
+    [
+      [45255, 4421],
+      [12, -38],
+      [65, -50],
+      [-25, -33],
+      [39, -35],
+      [58, -1],
+      [18, -61],
+      [54, -22],
+      [42, 1],
+      [13, -74],
+      [-24, -174],
+      [-84, -50],
+      [-34, -10],
+      [-89, 7],
+      [-54, 76],
+      [-44, -115],
+      [-57, -28],
+      [1, 39],
+      [-123, 40],
+      [-22, 53],
+      [-32, -4],
+      [-10, 101],
+      [-71, -3],
+      [-78, 26],
+      [-3, -71],
+      [-59, -25],
+      [-45, 82],
+      [-25, -16],
+      [-61, 9],
+      [0, -44],
+      [-50, 38],
+      [-15, -57],
+      [-40, -3],
+      [-6, -60],
+      [-90, -82],
+      [-58, 36],
+      [-56, 71],
+      [-66, 25],
+      [-10, -34],
+      [14, -72],
+      [-42, -39],
+      [-15, 33],
+      [9, 69],
+      [-58, 95],
+      [-7, 40],
+      [-72, 35],
+      [-25, 36],
+      [-8, 57],
+      [-37, 34],
+      [-43, 5],
+      [-36, -22],
+      [-29, 13],
+      [-49, -15],
+      [-30, 78],
+      [-99, 10],
+      [-18, -33],
+      [-63, -49],
+      [-13, 70],
+      [-18, 15],
+      [-71, -4],
+      [-10, 28]
+    ],
+    [
+      [43506, 4319],
+      [5, 19]
+    ],
+    [
+      [43511, 4338],
+      [87, 92],
+      [24, 46],
+      [-7, 90],
+      [30, 54],
+      [-5, 70],
+      [26, 11],
+      [11, 75],
+      [65, 61],
+      [0, 72],
+      [16, 51],
+      [-14, 82],
+      [22, 41],
+      [7, 58],
+      [25, 51],
+      [13, 77],
+      [-17, 27],
+      [7, 82],
+      [30, 22]
+    ],
+    [
+      [43831, 5400],
+      [82, -39],
+      [13, -57],
+      [62, -38]
+    ],
+    [
+      [42566, 5233],
+      [37, 7],
+      [86, -152],
+      [-2, -53],
+      [35, -1],
+      [46, -51],
+      [9, -85],
+      [-10, -97],
+      [13, -45],
+      [-34, -71]
+    ],
+    [
+      [42746, 4685],
+      [-29, 37],
+      [-58, -26],
+      [-64, -59],
+      [-5, -49],
+      [-47, 46],
+      [-37, -42],
+      [-73, -3],
+      [-13, -29],
+      [-45, 59],
+      [-46, 12],
+      [-9, -42],
+      [-44, -46],
+      [-65, 33],
+      [-28, 29],
+      [-66, -37],
+      [-34, 40],
+      [-32, -23]
+    ],
+    [
+      [42051, 4585],
+      [1, 41],
+      [29, 73],
+      [-55, 93],
+      [-74, 86],
+      [2, 29],
+      [-53, 97],
+      [-40, 55],
+      [1, 93]
+    ],
+    [
+      [41862, 5152],
+      [45, 9]
+    ],
+    [
+      [44178, 6214],
+      [-10, 52],
+      [-48, 52],
+      [-40, 12],
+      [-3, 69],
+      [38, 5],
+      [50, 114],
+      [-5, 86],
+      [-25, 9],
+      [16, 64],
+      [-37, 39],
+      [25, 95],
+      [-14, 66],
+      [-57, 106],
+      [12, 19],
+      [-20, 80]
+    ],
+    [
+      [45119, 8396],
+      [20, -49],
+      [-36, -95],
+      [13, -124],
+      [24, -49],
+      [-1, -65],
+      [-18, -79],
+      [-36, -91],
+      [3, -40],
+      [-30, -110],
+      [-55, -54],
+      [-28, -48],
+      [-26, -100],
+      [47, -69],
+      [47, -17],
+      [32, -46],
+      [10, -76],
+      [-20, -60],
+      [58, -66],
+      [12, -53],
+      [-126, -116],
+      [-40, -70],
+      [17, -64],
+      [30, -8],
+      [5, -53],
+      [-58, -65],
+      [-18, 43],
+      [-59, 10],
+      [-35, -69],
+      [-14, -77],
+      [28, -40],
+      [-17, -85],
+      [-68, -77],
+      [-44, 20],
+      [-19, -49],
+      [34, -67],
+      [-11, -35],
+      [6, -102]
+    ],
+    [
+      [60133, 2540],
+      [-41, -54],
+      [-44, -82],
+      [-48, -156],
+      [-2, -64],
+      [-32, -42],
+      [-11, -77],
+      [-64, -123],
+      [-16, -57],
+      [-62, -81],
+      [-41, -96],
+      [-64, -73],
+      [-7, -43],
+      [-23, -19],
+      [-28, -78],
+      [-21, -21],
+      [-51, -134],
+      [-43, -27],
+      [-11, -43],
+      [-33, -54],
+      [-3, -57],
+      [-32, -50],
+      [8, -27],
+      [-39, -64],
+      [-12, 2],
+      [-19, -80],
+      [-55, -47],
+      [-87, -104],
+      [-39, -28],
+      [-41, -65],
+      [-46, -34],
+      [-22, 12],
+      [-84, -69],
+      [-32, 62],
+      [-24, -41],
+      [-29, 49],
+      [-31, -2],
+      [-17, 34],
+      [-29, -23],
+      [1, 78],
+      [16, 47],
+      [-12, 27],
+      [-84, -55],
+      [36, 89],
+      [-57, -1],
+      [1, -54],
+      [-48, -75],
+      [-31, -91],
+      [-17, -10],
+      [-9, -65],
+      [-69, 20],
+      [1, -62],
+      [-38, -64],
+      [-16, 76],
+      [12, 36],
+      [-18, 31],
+      [3, 45],
+      [46, 23],
+      [45, 0],
+      [33, 114],
+      [19, 128],
+      [-14, 59],
+      [-5, 92],
+      [17, 105],
+      [-36, 251],
+      [-26, 51],
+      [33, 49],
+      [62, 9],
+      [41, 64],
+      [27, 80],
+      [43, -30],
+      [24, -115],
+      [-14, -88],
+      [39, -52],
+      [46, -24],
+      [26, 55],
+      [29, 150],
+      [23, -15],
+      [30, 44],
+      [-8, 66],
+      [23, 91],
+      [50, 59],
+      [-3, 72],
+      [37, 44],
+      [14, 45],
+      [-6, 45],
+      [39, 47],
+      [-11, 78],
+      [32, 83]
+    ],
+    [
+      [39770, 6447],
+      [-34, -93],
+      [45, -41],
+      [-5, -61],
+      [39, -12],
+      [16, -49],
+      [32, 0],
+      [-6, -64],
+      [12, -41],
+      [-27, -33],
+      [12, -94]
+    ],
+    [
+      [39854, 5959],
+      [-89, -21],
+      [-13, -30]
+    ],
+    [
+      [39752, 5908],
+      [-21, -12],
+      [-101, 112],
+      [-57, 8],
+      [-92, -76],
+      [-20, 25],
+      [12, 82],
+      [-76, 28],
+      [-57, -27],
+      [-19, 50],
+      [-61, -10],
+      [-25, 42],
+      [13, 50],
+      [-19, 105],
+      [-43, 80],
+      [7, 27],
+      [-42, 52],
+      [5, 77],
+      [17, 80],
+      [-63, 53],
+      [-22, 34],
+      [3, 70],
+      [27, 54],
+      [43, -1],
+      [-57, 189],
+      [14, 54],
+      [-18, 151],
+      [53, 83]
+    ],
+    [
+      [41503, 3424],
+      [14, 25],
+      [58, -18],
+      [74, 41],
+      [28, 91],
+      [54, 76],
+      [5, 40]
+    ],
+    [
+      [41736, 3679],
+      [19, -44],
+      [29, -21],
+      [-5, -37],
+      [56, -33],
+      [44, -48],
+      [-22, -138],
+      [2, -99],
+      [35, 7],
+      [31, -25],
+      [58, -75],
+      [10, -32],
+      [-37, -120],
+      [-62, -21],
+      [-37, -38],
+      [11, -49],
+      [-23, -104],
+      [68, -10],
+      [66, -65],
+      [7, -41],
+      [45, -114],
+      [26, 24],
+      [23, -55],
+      [87, 25]
+    ],
+    [
+      [41789, 1968],
+      [-49, 3],
+      [-12, -27],
+      [-41, 14]
+    ],
+    [
+      [41212, 2321],
+      [33, 14],
+      [49, 55],
+      [37, -8],
+      [-18, 108],
+      [-48, -35],
+      [-72, -32],
+      [-62, 0],
+      [19, 54],
+      [-8, 110],
+      [15, 37],
+      [74, 30],
+      [14, 70],
+      [54, -6],
+      [48, 14],
+      [65, -18],
+      [18, 73],
+      [37, 106],
+      [-31, 84],
+      [0, 40],
+      [-31, 8],
+      [21, 107],
+      [36, -20],
+      [16, 22],
+      [-62, 56],
+      [86, 114],
+      [-7, 77],
+      [8, 43]
+    ],
+    [
+      [41862, 5152],
+      [-128, -18],
+      [-17, -110],
+      [-46, -4],
+      [-55, 32],
+      [-48, -22],
+      [-7, -38],
+      [-60, -30]
+    ],
+    [
+      [41259, 5062],
+      [6, 59],
+      [-19, 44],
+      [-13, 85],
+      [7, 51],
+      [-24, 34]
+    ],
+    [
+      [41510, 5780],
+      [49, -2],
+      [19, -53],
+      [51, 3],
+      [23, 22],
+      [39, -12],
+      [47, -42],
+      [66, 3]
+    ],
+    [
+      [61598, 1098],
+      [17, -20],
+      [-52, -56],
+      [-11, 43],
+      [46, 33]
+    ],
+    [
+      [61474, 1356],
+      [41, -65],
+      [-17, -34],
+      [-32, -4],
+      [-35, -46],
+      [-31, -91],
+      [-38, -36],
+      [-3, -48],
+      [-24, -2],
+      [-6, 45],
+      [64, 90],
+      [64, 172],
+      [17, 19]
+    ],
+    [
+      [61968, 1781],
+      [19, -27],
+      [-22, -68],
+      [-25, 5],
+      [-102, -90],
+      [-22, -46],
+      [-36, -23],
+      [-34, 2],
+      [-3, -41],
+      [-49, -56],
+      [-25, -59],
+      [-23, -4],
+      [-17, -45],
+      [-22, 20],
+      [30, 57],
+      [27, 20],
+      [16, 74],
+      [25, 20],
+      [30, 79],
+      [86, 74],
+      [52, -7],
+      [29, 32],
+      [40, 77],
+      [26, 6]
+    ],
+    [
+      [62299, 2052],
+      [-62, -82],
+      [-38, -77],
+      [-29, -20],
+      [-37, -63],
+      [-26, 28],
+      [27, 64],
+      [22, 5],
+      [49, 93],
+      [25, 6],
+      [31, 50],
+      [38, -4]
+    ],
+    [
+      [63109, 3453],
+      [-1, -126],
+      [-40, -20],
+      [5, 57],
+      [36, 89]
+    ],
+    [
+      [63334, 3918],
+      [20, -11],
+      [4, -96],
+      [-23, -17],
+      [-31, -92],
+      [-52, -25],
+      [-32, -48],
+      [-37, -3],
+      [3, 67],
+      [27, 51],
+      [47, 13],
+      [21, 32],
+      [19, 83],
+      [34, 46]
+    ],
+    [
+      [63418, 3957],
+      [5, -40],
+      [-33, -58],
+      [-28, 21],
+      [2, 38],
+      [54, 39]
+    ],
+    [
+      [60822, 5416],
+      [54, -141],
+      [-17, -39],
+      [5, -92],
+      [48, -165],
+      [12, -62],
+      [-37, 4],
+      [29, -137],
+      [23, -19],
+      [-3, -104],
+      [-39, -97],
+      [9, -26],
+      [-14, -69],
+      [43, -152],
+      [-20, -98],
+      [46, -21],
+      [6, -90],
+      [13, -27],
+      [53, -381],
+      [32, -90],
+      [23, -108],
+      [3, -60],
+      [19, -44],
+      [8, -103],
+      [-24, -16],
+      [-84, 51],
+      [-44, 10],
+      [-80, -70],
+      [-19, -53],
+      [6, -66],
+      [-44, -143],
+      [-38, -200],
+      [-7, -67],
+      [8, -79],
+      [28, -88],
+      [45, -56],
+      [14, -41],
+      [2, -75],
+      [17, -75],
+      [-9, -29],
+      [24, -45],
+      [54, 45],
+      [16, -211],
+      [-27, -43],
+      [-17, 95],
+      [9, 42],
+      [-40, 28],
+      [-54, 12],
+      [-28, 46],
+      [-53, -39],
+      [-38, -152],
+      [-15, -106],
+      [-27, -35],
+      [-18, 69],
+      [-23, 205],
+      [34, 122],
+      [12, 120],
+      [-17, 47],
+      [0, 129],
+      [23, 99],
+      [22, 52],
+      [-11, 139],
+      [-48, 130],
+      [-8, 50],
+      [25, 47],
+      [22, 141],
+      [14, 237],
+      [-3, 233],
+      [-20, 59],
+      [7, 125],
+      [29, 79],
+      [3, 53],
+      [-35, 140],
+      [-52, 82],
+      [7, 35],
+      [-38, 48],
+      [6, 201],
+      [33, 80],
+      [-2, 63],
+      [18, 140],
+      [-17, 39],
+      [-12, 88],
+      [81, 63],
+      [8, -60],
+      [36, -3],
+      [37, 69],
+      [-25, 31],
+      [33, 42],
+      [5, 91],
+      [-48, 74],
+      [-21, 57],
+      [58, 8],
+      [14, 57]
+    ],
+    [
+      [64345, 11606],
+      [-13, -48],
+      [27, -99],
+      [-8, -45],
+      [-67, -2],
+      [21, 101],
+      [-18, 58],
+      [58, 35]
+    ],
+    [
+      [59897, 12452],
+      [41, -37],
+      [-45, -39],
+      [-114, 30],
+      [39, 43],
+      [79, 3]
+    ],
+    [
+      [60087, 12605],
+      [48, -82],
+      [-85, -58],
+      [-67, 29],
+      [33, 82],
+      [71, 29]
+    ],
+    [
+      [58031, 12877],
+      [45, -34],
+      [105, -41],
+      [98, 6],
+      [-54, -110],
+      [-128, 19],
+      [-98, 80],
+      [-95, 1],
+      [-32, 39],
+      [159, 40]
+    ],
+    [
+      [58260, 13078],
+      [42, -23],
+      [-107, -59],
+      [-36, 20],
+      [101, 62]
+    ],
+    [
+      [56528, 13092],
+      [74, -19],
+      [-9, -44],
+      [-92, 4],
+      [27, 59]
+    ],
+    [
+      [60700, 13398],
+      [107, -40],
+      [123, -84],
+      [52, -62],
+      [-6, -86],
+      [-43, -25],
+      [-146, 15],
+      [-199, 37],
+      [-146, 49],
+      [-154, -36],
+      [-1, 39],
+      [94, 4],
+      [78, 65],
+      [30, 76],
+      [211, 48]
+    ],
+    [
+      [56500, 6432],
+      [-27, 31],
+      [5, 75],
+      [-51, 104],
+      [10, 66],
+      [-82, 61],
+      [24, 164],
+      [-9, 40]
+    ],
+    [
+      [54829, 13312],
+      [-2, 3]
+    ],
+    [
+      [54891, 13398],
+      [80, -62],
+      [110, -21],
+      [104, 7],
+      [68, 63],
+      [53, -89],
+      [-47, -87],
+      [73, -50],
+      [-16, -45],
+      [6, -107],
+      [-58, -51],
+      [62, 41],
+      [22, 96],
+      [-18, 28],
+      [63, 45],
+      [-62, 71],
+      [142, 36],
+      [110, -1],
+      [66, 41],
+      [76, 4],
+      [224, -26],
+      [90, -27],
+      [244, -7],
+      [33, -16],
+      [0, -1],
+      [3, -6],
+      [-79, -53],
+      [-14, -1],
+      [36, -81],
+      [176, -51],
+      [69, -39],
+      [60, 14],
+      [191, -27],
+      [110, 17],
+      [64, -27],
+      [158, -34],
+      [-6, 35],
+      [71, -2],
+      [48, 81],
+      [28, 37],
+      [-66, 89],
+      [23, 102],
+      [110, -23],
+      [83, 78],
+      [54, -33],
+      [89, -29],
+      [-3, -41],
+      [81, 0],
+      [48, -25],
+      [101, 12],
+      [11, -57],
+      [86, 7],
+      [15, 57],
+      [208, -36],
+      [-16, -7],
+      [-40, -9],
+      [77, 6],
+      [-19, -6],
+      [58, -21],
+      [8, -19],
+      [66, -25],
+      [5, -7],
+      [17, -53],
+      [-74, -40],
+      [-121, -25],
+      [4, 2],
+      [-16, 2],
+      [-18, -16],
+      [103, -11],
+      [-34, -50],
+      [-99, -24],
+      [-32, 4],
+      [-104, -67],
+      [-52, -41],
+      [118, -13],
+      [109, -34],
+      [12, -29],
+      [123, -89],
+      [43, -112],
+      [68, -7],
+      [32, 32],
+      [-26, 67],
+      [44, -58],
+      [-22, -103],
+      [46, -137],
+      [47, -15],
+      [21, -62],
+      [57, 0],
+      [17, -52],
+      [131, -66],
+      [71, -25],
+      [79, 90],
+      [25, 93],
+      [33, 52],
+      [30, 116],
+      [64, 117],
+      [58, 30],
+      [-19, -57],
+      [81, -88],
+      [96, -61],
+      [122, -30],
+      [114, 8],
+      [-18, 37],
+      [180, 69],
+      [93, -10],
+      [38, -3],
+      [88, -57],
+      [80, -32],
+      [52, -59],
+      [49, -59],
+      [35, 73],
+      [-36, 40],
+      [39, 86],
+      [120, 16],
+      [41, 25],
+      [94, -80],
+      [93, -5],
+      [-32, 71],
+      [3, 82],
+      [-40, 41],
+      [50, 56],
+      [17, 57],
+      [-66, -4],
+      [-53, -41],
+      [-35, 56],
+      [87, 96],
+      [173, -10],
+      [73, 23],
+      [48, 53],
+      [-86, 88],
+      [109, -8],
+      [56, -35],
+      [131, -24],
+      [225, -8],
+      [190, -24],
+      [292, -63],
+      [122, -43],
+      [-156, -12],
+      [-76, 6],
+      [-39, 31],
+      [-84, -10],
+      [-55, -72],
+      [381, 34],
+      [82, -4],
+      [-104, -113],
+      [-19, 42],
+      [-100, 22],
+      [-28, -37],
+      [41, -59],
+      [-97, -27],
+      [-50, -47],
+      [-5, -43],
+      [65, -4],
+      [137, 57],
+      [193, 211],
+      [234, 6],
+      [206, -64],
+      [59, -37],
+      [62, -76],
+      [-75, -58],
+      [-77, 39],
+      [-32, -61],
+      [62, -19],
+      [82, 5],
+      [69, -53],
+      [76, -14],
+      [12, -34],
+      [150, -38],
+      [36, -34],
+      [87, -153],
+      [146, -23],
+      [163, 27],
+      [119, 33],
+      [272, 48],
+      [235, -2],
+      [185, -30],
+      [189, -67],
+      [83, -54],
+      [47, -54],
+      [53, -127],
+      [-66, -187],
+      [58, -39],
+      [163, -31],
+      [33, -136],
+      [-19, -96],
+      [55, -16],
+      [63, -63],
+      [-34, 183],
+      [75, 76],
+      [103, 62]
+    ],
+    [
+      [60454, 13547],
+      [57, -15],
+      [-4, -93],
+      [-120, -34],
+      [-43, 58],
+      [23, 73],
+      [87, 11]
+    ],
+    [
+      [61534, 14087],
+      [30, -65],
+      [92, -45],
+      [47, 44],
+      [189, -10],
+      [56, -85],
+      [132, 28],
+      [144, -22],
+      [96, -50],
+      [-6, -92],
+      [-176, -42],
+      [-97, -13],
+      [-192, 23],
+      [-89, 70],
+      [-103, 18],
+      [-151, 66],
+      [-22, 91],
+      [50, 84]
+    ],
+    [
+      [59506, 14202],
+      [31, -64],
+      [61, -35],
+      [-45, -92],
+      [-75, -13],
+      [28, 204]
+    ],
+    [
+      [60136, 14337],
+      [173, -149],
+      [87, -16],
+      [2, -66],
+      [121, -4],
+      [-30, 139],
+      [45, 39],
+      [120, 20],
+      [144, -102],
+      [100, -25],
+      [94, 22],
+      [309, -115],
+      [-79, -56],
+      [-19, -115],
+      [-66, -43],
+      [-181, 1],
+      [-85, 36],
+      [-50, 71],
+      [-18, 65],
+      [91, 66],
+      [-18, 37],
+      [-107, 6],
+      [-84, -33],
+      [35, -113],
+      [120, -129],
+      [148, -28],
+      [-8, -40],
+      [-129, -12],
+      [-70, -33],
+      [-96, 50],
+      [-77, 8],
+      [-245, -47],
+      [-66, 57],
+      [-89, -105],
+      [-74, -27],
+      [-67, 33],
+      [-95, 15],
+      [-59, 69],
+      [-92, 52],
+      [-85, 88],
+      [98, 32],
+      [-51, 88],
+      [-10, 68],
+      [83, 36],
+      [-30, 38],
+      [47, 39],
+      [83, 3],
+      [17, 43],
+      [163, 37]
+    ],
+    [
+      [43511, 4338],
+      [-26, 63],
+      [-66, 39],
+      [-38, 42],
+      [-58, 18],
+      [-91, 93],
+      [-6, 29],
+      [-73, -3],
+      [-51, 69],
+      [-42, 21],
+      [-16, 44]
+    ],
+    [
+      [43044, 4753],
+      [32, 55],
+      [-16, 24],
+      [-55, 24],
+      [8, 36],
+      [-44, 100],
+      [13, 34],
+      [68, 19],
+      [-3, 70],
+      [34, 36],
+      [55, -27],
+      [24, 53],
+      [70, 21],
+      [40, -26],
+      [65, 50],
+      [46, 50],
+      [18, 73],
+      [-5, 45],
+      [-30, 70]
+    ],
+    [
+      [43364, 5460],
+      [59, -23],
+      [34, -59],
+      [27, 48],
+      [45, -41],
+      [9, 77],
+      [36, 57],
+      [59, -11],
+      [63, -55],
+      [44, -71],
+      [45, 45],
+      [46, -27]
+    ],
+    [
+      [43506, 4319],
+      [-22, -49],
+      [-38, -11],
+      [-28, -107],
+      [-78, -41],
+      [-41, -51],
+      [-60, 6],
+      [-18, -58],
+      [17, -53],
+      [-60, -31],
+      [-51, -75],
+      [-35, -24],
+      [23, -180],
+      [22, -33],
+      [-27, -39],
+      [-57, -37],
+      [-40, 30],
+      [-23, 74],
+      [-53, 99],
+      [-50, 53],
+      [-22, -27]
+    ],
+    [
+      [42865, 3765],
+      [-40, 35],
+      [-39, 3],
+      [-19, 48],
+      [-45, 35],
+      [-34, -62],
+      [-69, 1],
+      [2, 44],
+      [-46, 47],
+      [-35, -29],
+      [3, -49],
+      [-52, 8],
+      [-29, -16],
+      [-13, 53],
+      [25, 42],
+      [0, 43],
+      [-47, 94],
+      [-40, 26],
+      [-111, 0],
+      [-21, -32],
+      [-71, 13],
+      [-52, -46],
+      [-29, 8],
+      [-83, 85]
+    ],
+    [
+      [42020, 4116],
+      [-2, 57],
+      [-18, 37],
+      [-50, 38]
+    ],
+    [
+      [41950, 4248],
+      [-3, 45],
+      [32, 65],
+      [22, 114],
+      [50, 113]
+    ],
+    [
+      [42746, 4685],
+      [32, 4],
+      [86, -37],
+      [32, 29],
+      [33, -21],
+      [14, 71],
+      [101, 22]
+    ],
+    [
+      [40099, 5001],
+      [-56, 66],
+      [9, 50],
+      [-71, 46],
+      [-55, -10],
+      [8, 95],
+      [-104, 101],
+      [-17, 83],
+      [-29, 19],
+      [24, 57],
+      [-85, 66],
+      [34, 61],
+      [8, 93],
+      [-29, 64],
+      [20, 25],
+      [-4, 91]
+    ],
+    [
+      [39854, 5959],
+      [63, -32],
+      [57, 21],
+      [7, -35],
+      [103, -4],
+      [63, -17],
+      [41, 5],
+      [13, 32],
+      [43, 10],
+      [38, 42],
+      [-3, 37],
+      [98, 60],
+      [96, -65],
+      [14, 25],
+      [64, -6]
+    ],
+    [
+      [46360, 7113],
+      [11, -121],
+      [32, -85],
+      [-60, -39],
+      [-65, -72],
+      [-25, 20],
+      [-98, -64],
+      [23, -31],
+      [-26, -51],
+      [41, -211],
+      [35, -16],
+      [-13, -46],
+      [-45, -9]
+    ],
+    [
+      [41950, 4248],
+      [-59, 42],
+      [-49, -16],
+      [-63, 43],
+      [-49, 11],
+      [-10, -22],
+      [-66, 3],
+      [-8, 64],
+      [-68, 23]
+    ],
+    [
+      [43618, 6121],
+      [20, -20],
+      [-20, -47],
+      [156, -24],
+      [-4, 62],
+      [47, -17],
+      [59, 79],
+      [-43, 20],
+      [32, 43],
+      [49, 17],
+      [6, -74],
+      [38, -38],
+      [63, 45],
+      [3, -36],
+      [-61, -95],
+      [24, -26],
+      [77, 43]
+    ],
+    [
+      [43364, 5460],
+      [-39, -1],
+      [-43, 23],
+      [-40, 97],
+      [-52, 22],
+      [-60, -92],
+      [-62, -11],
+      [-75, 63],
+      [-35, -27],
+      [-29, 20],
+      [-36, -62],
+      [-26, -15],
+      [-31, 61]
+    ],
+    [
+      [48091, 7115],
+      [-4, 32]
+    ],
+    [
+      [52582, 4473],
+      [-26, -34],
+      [-29, -90],
+      [-72, -42],
+      [-16, -105],
+      [-35, -10],
+      [-34, -200],
+      [28, -31],
+      [-11, -38],
+      [33, -76],
+      [36, -23],
+      [-8, -93],
+      [-31, -86],
+      [-48, -64],
+      [-18, 15],
+      [-63, -80],
+      [-45, -6],
+      [-36, 58],
+      [-54, -3],
+      [-19, 30],
+      [-39, -32],
+      [-20, 35],
+      [-39, 13],
+      [-116, -40],
+      [-66, 11],
+      [-31, 46],
+      [-67, -9],
+      [-39, 80],
+      [-10, 94],
+      [-23, 49],
+      [-155, 1],
+      [-56, -8],
+      [-23, 37],
+      [9, 43],
+      [-36, 13],
+      [-44, -32],
+      [-53, 70],
+      [-4, -58],
+      [-21, -25],
+      [-58, 19],
+      [-42, -26],
+      [-1, -34],
+      [-40, -14],
+      [0, -35],
+      [-58, -3],
+      [-75, 13],
+      [-14, -62],
+      [21, -20],
+      [-22, -51],
+      [-55, -8],
+      [-15, -46],
+      [-129, -35]
+    ],
+    [
+      [41017, 7082],
+      [7, -25],
+      [-45, -39],
+      [2, -49],
+      [51, -54],
+      [-55, -47],
+      [-1, -69],
+      [36, -16],
+      [51, -75],
+      [4, -59],
+      [34, -44],
+      [49, 14],
+      [8, -33],
+      [-29, -44],
+      [20, -64],
+      [-27, -17],
+      [0, -44],
+      [26, -45]
+    ],
+    [
+      [40799, 7095],
+      [70, 113],
+      [47, 18],
+      [101, -144]
+    ],
+    [
+      [47216, 5764],
+      [-57, -58],
+      [-56, 34],
+      [-48, 52],
+      [-63, 8],
+      [-72, 28],
+      [-55, -70]
+    ],
+    [
+      [41169, 6344],
+      [23, -54],
+      [42, 20],
+      [31, -24],
+      [37, 15],
+      [39, -17],
+      [17, 89]
+    ],
+    [
+      [42865, 3765],
+      [-22, -26],
+      [-11, -55],
+      [15, -38],
+      [-22, -57],
+      [-62, -52],
+      [-21, -208],
+      [51, -68],
+      [-22, -66],
+      [-30, -27],
+      [-32, -116]
+    ],
+    [
+      [41736, 3679],
+      [23, 57],
+      [-7, 113],
+      [-46, 63],
+      [57, 68],
+      [48, 32],
+      [16, 57],
+      [68, -5],
+      [76, 15],
+      [49, 37]
+    ],
+    [
+      [41648, 7097],
+      [-86, 13],
+      [-37, -13],
+      [-39, 25],
+      [-35, 71],
+      [-116, 67],
+      [-55, -22],
+      [-20, -58],
+      [-62, 14],
+      [-29, -23],
+      [-73, 11],
+      [-26, -47],
+      [-31, 9],
+      [-22, -62]
+    ],
+    [
+      [41503, 3424],
+      [-11, 22],
+      [-67, -20],
+      [-26, 24],
+      [-10, 48],
+      [-42, -2],
+      [-29, 34]
+    ],
+    [
+      [47032, 10473],
+      [119, -45],
+      [0, -47],
+      [-56, -27],
+      [-51, 40],
+      [-12, 79]
+    ],
+    [
+      [47384, 10522],
+      [33, -96],
+      [-56, -5],
+      [-60, -46],
+      [-70, -9],
+      [-65, 41],
+      [218, 115]
+    ],
+    [
+      [48575, 12862],
+      [85, -16],
+      [32, -36],
+      [-102, -75],
+      [-160, -5],
+      [-4, 33],
+      [75, 66],
+      [74, 33]
+    ],
+    [
+      [46130, 11439],
+      [0, 1],
+      [0, 1],
+      [35, 26],
+      [0, 26],
+      [30, 2],
+      [126, -70],
+      [115, -66],
+      [102, -32],
+      [47, -59],
+      [182, -126],
+      [70, -60],
+      [81, 153],
+      [23, 69],
+      [-34, 45],
+      [-72, 22],
+      [-77, 116],
+      [7, 108],
+      [-55, -5],
+      [-194, 98],
+      [15, 93],
+      [97, 34],
+      [-27, 57],
+      [-24, 17],
+      [44, 91],
+      [-25, 30],
+      [27, 100],
+      [-112, 61],
+      [27, 68],
+      [-32, 10],
+      [35, 69],
+      [76, 29],
+      [142, 94],
+      [40, 42],
+      [41, 72],
+      [46, 148],
+      [27, 119],
+      [43, 96],
+      [29, 36],
+      [190, 24],
+      [207, -6],
+      [44, 9],
+      [104, -35],
+      [97, -33],
+      [26, -192],
+      [-48, -74],
+      [-21, -76],
+      [-31, -23],
+      [2, -54],
+      [-90, -72],
+      [4, -44],
+      [73, -89],
+      [61, -27],
+      [0, -60],
+      [44, -58],
+      [-25, -95],
+      [14, -77],
+      [-61, -56],
+      [32, -65],
+      [-18, -62],
+      [32, -93],
+      [-33, -45],
+      [28, -63],
+      [-19, -45],
+      [-10, -128],
+      [20, -65],
+      [91, -76],
+      [81, -65],
+      [-16, -79],
+      [-65, -67],
+      [-5, -68],
+      [27, -44],
+      [-19, -80],
+      [-43, -44],
+      [-64, -21],
+      [-26, -110],
+      [-66, -7],
+      [-1, -60],
+      [-50, -95],
+      [-71, -6],
+      [-59, -37],
+      [-41, 3],
+      [-52, -44],
+      [-59, -16],
+      [-53, 52],
+      [-65, -18],
+      [-22, 21],
+      [-90, 3],
+      [-115, -42],
+      [-6, -39],
+      [72, 58],
+      [67, 6],
+      [-3, -65],
+      [61, -52],
+      [175, -64],
+      [169, 8],
+      [153, -49],
+      [62, 49],
+      [-12, 40],
+      [24, 62],
+      [72, 13],
+      [21, 32],
+      [97, 47],
+      [22, 43],
+      [46, 24],
+      [19, 85],
+      [-9, 33],
+      [40, 66],
+      [97, 77],
+      [30, 60],
+      [2, 104],
+      [-40, 88],
+      [-52, 52],
+      [29, 54],
+      [-5, 68],
+      [50, 45],
+      [117, 44],
+      [166, 39],
+      [74, -6],
+      [4, -76],
+      [134, -123],
+      [-39, -85],
+      [40, -16],
+      [-27, -56],
+      [20, -82],
+      [-34, -58],
+      [110, -70],
+      [114, -21],
+      [100, 29],
+      [-56, 28],
+      [-79, -12],
+      [-52, 33],
+      [-74, 18],
+      [15, 147],
+      [49, 38],
+      [72, 17],
+      [-44, 52],
+      [2, 36],
+      [-44, 48],
+      [-7, 118],
+      [-160, 66],
+      [-19, 37],
+      [-54, -3],
+      [-78, 49],
+      [-100, 3],
+      [-71, -45],
+      [-75, -25],
+      [-55, 23],
+      [-83, -26],
+      [-43, 39],
+      [26, 96],
+      [-71, 138],
+      [26, 38],
+      [23, 104],
+      [-21, 14],
+      [104, 128],
+      [7, 97],
+      [-57, 62],
+      [-13, 64],
+      [-64, 101],
+      [-99, 85],
+      [92, 99],
+      [-10, 45],
+      [87, 48],
+      [129, 49],
+      [67, 52],
+      [22, 55],
+      [-16, 141],
+      [-45, 75],
+      [36, 28],
+      [127, -130],
+      [-25, -22],
+      [38, -85],
+      [-25, -30],
+      [-64, -149],
+      [43, -122],
+      [-44, -60],
+      [37, -48],
+      [137, -35],
+      [142, -11],
+      [10, -75],
+      [0, 31],
+      [12, 42],
+      [144, -19],
+      [27, -62],
+      [82, -23],
+      [46, 11],
+      [-44, 47],
+      [-12, 51],
+      [-75, 39],
+      [-122, 19],
+      [-36, 35],
+      [-76, 20],
+      [-75, 50],
+      [-42, 130],
+      [69, 42],
+      [88, 18],
+      [115, -87],
+      [59, -12],
+      [85, 63],
+      [-47, 56],
+      [-91, -19],
+      [72, 104],
+      [119, 27]
+    ],
+    [
+      [47962, 13071],
+      [48, -11],
+      [-27, -94],
+      [-85, 52],
+      [64, 53]
+    ],
+    [
+      [47279, 13222],
+      [55, -16],
+      [88, -84],
+      [-80, -53],
+      [-50, 2],
+      [-90, -38],
+      [-97, 15],
+      [53, 127],
+      [121, 47]
+    ],
+    [
+      [59236, 2936],
+      [-45, -15],
+      [-48, -56],
+      [-63, -54],
+      [-58, 16],
+      [-29, -36],
+      [-59, -27],
+      [-36, -99],
+      [-24, 17],
+      [-24, -20],
+      [-84, -14],
+      [-57, 24],
+      [-46, 2],
+      [-30, -21],
+      [-27, 16],
+      [-17, 86],
+      [-40, 73],
+      [33, 78],
+      [-19, 85],
+      [-23, 3],
+      [-15, 51],
+      [21, 72],
+      [-13, 19]
+    ],
+    [
+      [56928, 5005],
+      [-44, -3],
+      [-113, -55],
+      [-64, 3],
+      [-66, -89],
+      [-46, -84],
+      [-49, -43],
+      [7, -72],
+      [74, 23],
+      [50, -46],
+      [-19, -88],
+      [26, -29],
+      [1, -54],
+      [-20, -73],
+      [-34, -21],
+      [-56, -82],
+      [-17, -5],
+      [-19, -89],
+      [-43, -99],
+      [-2, -45],
+      [-31, -51],
+      [-29, -116],
+      [-29, -38],
+      [-17, -104],
+      [30, 0],
+      [4, -71],
+      [-32, -66],
+      [-122, -40],
+      [-73, -104],
+      [-60, -63],
+      [-69, 50],
+      [-38, 1],
+      [-64, 38],
+      [-41, 42],
+      [-21, 46],
+      [-76, 38],
+      [-91, -61],
+      [-65, 10],
+      [-26, 29],
+      [-44, 81],
+      [-62, 33],
+      [-61, 11],
+      [-105, -78],
+      [-106, -106],
+      [-27, -93],
+      [-70, -47],
+      [-38, 22],
+      [-109, -62],
+      [-103, -9],
+      [-75, -71],
+      [-43, -23],
+      [-32, 7],
+      [-37, 40],
+      [-31, -38],
+      [-100, 27],
+      [-25, -4],
+      [-46, 49],
+      [-68, 7],
+      [-77, -10],
+      [-51, 80],
+      [-62, 56],
+      [-2, 78],
+      [-39, 52]
+    ]
+  ],
+  "transform": {
+    "scale": [0.005305821665438469, 0.0024405569616505096],
+    "translate": [-180, 41.20720672607415]
+  },
+  "objects": {
+    "russia": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-AD",
+            "NAME_0": "Russia",
+            "ID_1": 1,
+            "NAME_1": "Adygey",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Адыгея",
+            "VARNAME_1": "Adygea|Adygeya|Adygheya|Republic of Adygeya|Adygeyskaya A.Obl.|Respublika Adygeya"
+          }
+        },
+        {
+          "arcs": [[1, 2, 3, 4]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-ALT",
+            "NAME_0": "Russia",
+            "ID_1": 2,
+            "NAME_1": "Altay",
+            "TYPE_1": "Kray",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "Алтайский край",
+            "VARNAME_1": "Altayskiy Kray"
+          }
+        },
+        {
+          "arcs": [[5, 6, 7, 8, 9]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-AMU",
+            "NAME_0": "Russia",
+            "ID_1": 3,
+            "NAME_1": "Amur",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Амурская область",
+            "VARNAME_1": "Amurskaya Oblast"
+          }
+        },
+        {
+          "arcs": [
+            [[10, 11, 12, 13, 14, 15]],
+            [[16]],
+            [[17]],
+            [[18]],
+            [[19]],
+            [[20]],
+            [[21]],
+            [[22]],
+            [[23]],
+            [[24]],
+            [[25]],
+            [[26]],
+            [[27]],
+            [[28]],
+            [[29]],
+            [[30]],
+            [[31]],
+            [[32]],
+            [[33]],
+            [[34]],
+            [[35]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-ARK",
+            "NAME_0": "Russia",
+            "ID_1": 4,
+            "NAME_1": "Arkhangel'sk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Архангельская область",
+            "VARNAME_1": "Arcangelo|Archangel|Archangelsk|Arkhangelskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[36, 37, 38]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-AST",
+            "NAME_0": "Russia",
+            "ID_1": 5,
+            "NAME_1": "Astrakhan'",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Астраханская область",
+            "VARNAME_1": "Astrachan|Astrakhanskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[39, 40, 41, 42, 43, 44]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-BA",
+            "NAME_0": "Russia",
+            "ID_1": 6,
+            "NAME_1": "Bashkortostan",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Башкортостан",
+            "VARNAME_1": "Bashkir|Bashkiriya|Bashkirskaya A.S.S.R.|Republic of Bashkortostan|Respublika Bashkortostan"
+          }
+        },
+        {
+          "arcs": [[45, 46, 47]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-BEL",
+            "NAME_0": "Russia",
+            "ID_1": 7,
+            "NAME_1": "Belgorod",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Белгородская область",
+            "VARNAME_1": "Belgorodskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[48, 49, 50, 51, 52]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-BRY",
+            "NAME_0": "Russia",
+            "ID_1": 8,
+            "NAME_1": "Bryansk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Брянская область",
+            "VARNAME_1": "Bryanskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[53, 54, 55, 56]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-BU",
+            "NAME_0": "Russia",
+            "ID_1": 9,
+            "NAME_1": "Buryat",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Бурятия",
+            "VARNAME_1": "Buryatiya|Buryat-Mongol A.S.S.R.|Republic of Buryatia|Buryatskaya A.S.S.R.|Respublika"
+          }
+        },
+        {
+          "arcs": [[57, 58, 59, 60, 61]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-CE",
+            "NAME_0": "Russia",
+            "ID_1": 10,
+            "NAME_1": "Chechnya",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Чечено-Ингушска",
+            "VARNAME_1": "Cecenia|Chechenia|Chechênia|Tchetchnia|Chechen-Ingush A.S.S.R.|Checheno-Ingushetia|Checheno-Ingushetia"
+          }
+        },
+        {
+          "arcs": [[62, 63, 64, -41, 65]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-CHE",
+            "NAME_0": "Russia",
+            "ID_1": 11,
+            "NAME_1": "Chelyabinsk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Челябинская область",
+            "VARNAME_1": "Chelyabinskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[[66]], [[67]], [[68, 69, 70, 71, 72, 73]], [[74]], [[75]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-CHU",
+            "NAME_0": "Russia",
+            "ID_1": 12,
+            "NAME_1": "Chukot",
+            "TYPE_1": "Avtonomnyy Okrug",
+            "ENGTYPE_1": "Autonomous Province",
+            "NL_NAME_1": "Чукотский АОк",
+            "VARNAME_1": "Chukotka|Chukotskiy Aok"
+          }
+        },
+        {
+          "arcs": [[76, 77, 78, 79, 80]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-CU",
+            "NAME_0": "Russia",
+            "ID_1": 13,
+            "NAME_1": "Chuvash",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Чувашская Республика",
+            "VARNAME_1": "Chuvashskaya A.S.S.R.|Chuvashskaya Respublika|Chuvashiya|Chuvash Republic"
+          }
+        },
+        {
+          "arcs": [[81, 82]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-SPE",
+            "NAME_0": "Russia",
+            "ID_1": 14,
+            "NAME_1": "City of St. Petersburg",
+            "TYPE_1": "Gorsovet",
+            "ENGTYPE_1": "City",
+            "NL_NAME_1": "Санкт-Петербург (горсовет)",
+            "VARNAME_1": "Sankt-Peterburg gorsovet"
+          }
+        },
+        {
+          "arcs": [[83, -62, 84, 85]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-DA",
+            "NAME_0": "Russia",
+            "ID_1": 15,
+            "NAME_1": "Dagestan",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Дагестан",
+            "VARNAME_1": "Dagestanskaya A.S.S.R.|Daghestan|Republic of Dagestan|Respublika Dagestan|Dagistan"
+          }
+        },
+        {
+          "arcs": [[86, 87, 88, 89, -2]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-AL",
+            "NAME_0": "Russia",
+            "ID_1": 16,
+            "NAME_1": "Gorno-Altay",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Алтай",
+            "VARNAME_1": "Gorno-Altayskaya A.Obl.|Respublika Altay|Oirot|Republic of Altai"
+          }
+        },
+        {
+          "arcs": [[-59, 90, 91]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-IN",
+            "NAME_0": "Russia",
+            "ID_1": 17,
+            "NAME_1": "Ingush",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Респу́блика Ингуше́тия",
+            "VARNAME_1": "Ingouchie|Inguchétia|Inguschetien|Ingushetia|Ingushetiya|Ingush Republic|Ingushskaya Respublika|Respublika Ingushetiya"
+          }
+        },
+        {
+          "arcs": [[92, -57, 93, 94, 95]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-IRK",
+            "NAME_0": "Russia",
+            "ID_1": 18,
+            "NAME_1": "Irkutsk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Иркутская область",
+            "VARNAME_1": "Irkutskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[96, 97, 98, 99]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-IVA",
+            "NAME_0": "Russia",
+            "ID_1": 19,
+            "NAME_1": "Ivanovo",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Ивановская область",
+            "VARNAME_1": "Ivanovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[100, 101, 102, 103]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KB",
+            "NAME_0": "Russia",
+            "ID_1": 20,
+            "NAME_1": "Kabardin-Balkar",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Кабардино-Балкарская Респу",
+            "VARNAME_1": "Kabardin A.S.S.R.|Kabardino-Balkarskaya A.S.S.R.|Kabardino-Balkariya|Kabardino-Balkarsk|Kabard|Kabardino-Balkarskaya Republic"
+          }
+        },
+        {
+          "arcs": [[104]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KGD",
+            "NAME_0": "Russia",
+            "ID_1": 21,
+            "NAME_1": "Kaliningrad",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Калининградская область",
+            "VARNAME_1": "Kaliningradskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-37, 105, -86, 106, 107, 108]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KL",
+            "NAME_0": "Russia",
+            "ID_1": 22,
+            "NAME_1": "Kalmyk",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Калмыкия",
+            "VARNAME_1": "Kalmykiya|Khalmg Tangch|Republic of Kalmykia|Kalmytskaya A.S.S.R.|Respublika Kalmykiya"
+          }
+        },
+        {
+          "arcs": [[109, 110, -53, 111, 112]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KLU",
+            "NAME_0": "Russia",
+            "ID_1": 23,
+            "NAME_1": "Kaluga",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Калужская область",
+            "VARNAME_1": "Kaluzhskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[[113]], [[114]], [[-69, 115]], [[116, -71, 117]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KAM",
+            "NAME_0": "Russia",
+            "ID_1": 24,
+            "NAME_1": "Kamchatka",
+            "TYPE_1": "Kray",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "Камчатская край",
+            "VARNAME_1": "Kamçatka|Kamchatskaya Kray"
+          }
+        },
+        {
+          "arcs": [[-103, 118, 119, 120]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KC",
+            "NAME_0": "Russia",
+            "ID_1": 25,
+            "NAME_1": "Karachay-Cherkess",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Карачаево-Черкессия Респуб",
+            "VARNAME_1": "Karaçay-Çerkes|Karachay-Cherkessiya|Karachayevo-Cherkesskaya Respublika|Karachayevo-Cherkessiya|Karachayevo-Cherkess Republic|K"
+          }
+        },
+        {
+          "arcs": [[121, -15, 122, 123, 124, 125]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KR",
+            "NAME_0": "Russia",
+            "ID_1": 26,
+            "NAME_1": "Karelia",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Карелия",
+            "VARNAME_1": "Karelian A.S.S.R.|Karelo-Finnish A.S.S.R.|Karel'skaya A.S.S.R.|Olonets|Olonetskaya G.|Kareliya|Republic of Karelia"
+          }
+        },
+        {
+          "arcs": [[126, -87, -5, 127, 128, 129]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KEM",
+            "NAME_0": "Russia",
+            "ID_1": 27,
+            "NAME_1": "Kemerovo",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Кемеровская область",
+            "VARNAME_1": "Kemerovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[[130]], [[131]], [[132, 133, 134, 135, 136, -6, 137]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KHA",
+            "NAME_0": "Russia",
+            "ID_1": 28,
+            "NAME_1": "Khabarovsk",
+            "TYPE_1": "Kray",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "Хабаровский край",
+            "VARNAME_1": "Khabarovskiy Kray"
+          }
+        },
+        {
+          "arcs": [[138, -88, -127, 139]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KK",
+            "NAME_0": "Russia",
+            "ID_1": 29,
+            "NAME_1": "Khakass",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Хакасия",
+            "VARNAME_1": "Khakassiya|Republic of Khakasia|Khakasskaya A.Obl.|Respublika Khakasiya|Republic of Khakasia"
+          }
+        },
+        {
+          "arcs": [[140, 141, 142, 143, 144, 145]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KHM",
+            "NAME_0": "Russia",
+            "ID_1": 30,
+            "NAME_1": "Khanty-Mansiy",
+            "TYPE_1": "Avtonomnyy Okrug",
+            "ENGTYPE_1": "Autonomous Province",
+            "NL_NAME_1": "Ханты-Мансийский АОк",
+            "VARNAME_1": "Khanty-Mansiysk|Khanty-Mansiyskiy A.Okr.|Khanty-Mansiyskiy A.Okr.-Yugra|Khanty-Mansiyskiy Aok"
+          }
+        },
+        {
+          "arcs": [[146, 147, 148, 149, 150, 151, 152, 153, -13]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KIR",
+            "NAME_0": "Russia",
+            "ID_1": 31,
+            "NAME_1": "Kirov",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Кировская область",
+            "VARNAME_1": "Vyatka|Vyatskaya G.|Kirovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[154, -145, 155, 156, -147, -12, 157]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KO",
+            "NAME_0": "Russia",
+            "ID_1": 32,
+            "NAME_1": "Komi",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Коми",
+            "VARNAME_1": "Komi A.S.S.R.|Republic of Komi|Respublika Komi"
+          }
+        },
+        {
+          "arcs": [[-153, 158, -100, 159, 160]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KOS",
+            "NAME_0": "Russia",
+            "ID_1": 33,
+            "NAME_1": "Kostroma",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Костромская область",
+            "VARNAME_1": "Kostromskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[161, 162, -120, 163], [-1]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KDA",
+            "NAME_0": "Russia",
+            "ID_1": 34,
+            "NAME_1": "Krasnodar",
+            "TYPE_1": "Kray",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "Краснодарский край",
+            "VARNAME_1": "Cossacks of the Black Sea|Kuban|Kubanskaya|Yekaterinodar|Krasnodarskiy Kray"
+          }
+        },
+        {
+          "arcs": [
+            [[164]],
+            [[165, 166]],
+            [[167]],
+            [[168]],
+            [[169]],
+            [[170, -95, 171, -140, -130, 172, -141, 173, 174]],
+            [[175]],
+            [[176]],
+            [[177]],
+            [[178]],
+            [[179]],
+            [[180]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KYA",
+            "NAME_0": "Russia",
+            "ID_1": 35,
+            "NAME_1": "Krasnoyarsk",
+            "TYPE_1": "Kray",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "Красноярский край",
+            "VARNAME_1": "Krasnoyarskiy Kray|Yeniseisk|Yeniseyskaya G."
+          }
+        },
+        {
+          "arcs": [[181, 182, -63, 183]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KGN",
+            "NAME_0": "Russia",
+            "ID_1": 36,
+            "NAME_1": "Kurgan",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Курганская область",
+            "VARNAME_1": "Kurganskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[184, 185, -48, 186, -50, 187]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-KRS",
+            "NAME_0": "Russia",
+            "ID_1": 37,
+            "NAME_1": "Kursk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Курская область",
+            "VARNAME_1": "Kurskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[188, 189, -82, 190, -124, 191, 192, 193, 194]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-LEN",
+            "NAME_0": "Russia",
+            "ID_1": 38,
+            "NAME_1": "Leningrad",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Ленинградская область",
+            "VARNAME_1": "Saint Petersburg|Sankt-Peterburgskaya G.|Leningradskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[195, 196, -185, 197, 198, 199]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-LIP",
+            "NAME_0": "Russia",
+            "ID_1": 39,
+            "NAME_1": "Lipetsk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Липецкая область",
+            "VARNAME_1": "Lipetskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-133, 200, -72, -117, 201]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-MAG",
+            "NAME_0": "Russia",
+            "ID_1": 40,
+            "NAME_1": "Maga Buryatdan",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Магаданская область",
+            "VARNAME_1": "Magadanskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[202, -81, 203, -151]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-ME",
+            "NAME_0": "Russia",
+            "ID_1": 41,
+            "NAME_1": "Mariy-El",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Марий Эл",
+            "VARNAME_1": "Mari|Mari-El|Republic of Mari El|Mariyskaya A.S.S.R.|Respublika Mariy El"
+          }
+        },
+        {
+          "arcs": [[-79, 204, 205, 206, 207]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-MO",
+            "NAME_0": "Russia",
+            "ID_1": 42,
+            "NAME_1": "Mordovia",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Мордовия",
+            "VARNAME_1": "Mordov|Mordvian Autonomous Republic|Mordvinia|Republic of Mordovia|Mordovian A.S.S.R."
+          }
+        },
+        {
+          "arcs": [[208]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-MOW",
+            "NAME_0": "Russia",
+            "ID_1": 43,
+            "NAME_1": "Moscow City",
+            "TYPE_1": "Gorod",
+            "ENGTYPE_1": "City",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[209, 210, 211, 212, -113, 213, 214], [-209]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-MOS",
+            "NAME_0": "Russia",
+            "ID_1": 44,
+            "NAME_1": "Moskva",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Московская область",
+            "VARNAME_1": "Mosca|Moscou|Moscow|Moskau|Moskova|Moskovskaya"
+          }
+        },
+        {
+          "arcs": [[-126, 215]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-MUR",
+            "NAME_0": "Russia",
+            "ID_1": 45,
+            "NAME_1": "Murmansk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Мурманская область",
+            "VARNAME_1": "Murmanskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[[216]], [[217, -158, -11, 218]], [[219]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-NEN",
+            "NAME_0": "Russia",
+            "ID_1": 46,
+            "NAME_1": "Nenets",
+            "TYPE_1": "Avtonomnyy Okrug",
+            "ENGTYPE_1": "Autonomous Province",
+            "NL_NAME_1": "Ненецкий АОк",
+            "VARNAME_1": "Nenetskiy A.Okr.|Nenetskiy Aok"
+          }
+        },
+        {
+          "arcs": [[-152, -204, -80, -208, 220, 221, -97, -159]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-NIZ",
+            "NAME_0": "Russia",
+            "ID_1": 47,
+            "NAME_1": "Nizhegorod",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Нижегородская область",
+            "VARNAME_1": "Gor'kiy|Gor'kovskaya|Gorky|Nizhegorodskaya|Nizhniy-Novgorod|Nizhegorodskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-60, -92, 222, -101, 223]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-SE",
+            "NAME_0": "Russia",
+            "ID_1": 48,
+            "NAME_1": "North Ossetia",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Северная Осетия",
+            "VARNAME_1": "Kuzey Osetya|Respublika Severnaya Osetiya|Severnaya Osetiya-Alaniya|North Ossetian A.S.S.R.|Republic of North Osetia-Alania"
+          }
+        },
+        {
+          "arcs": [[224, 225, 226, -193]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-NGR",
+            "NAME_0": "Russia",
+            "ID_1": 49,
+            "NAME_1": "Novgorod",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Новгородская область",
+            "VARNAME_1": "Novgorodskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-128, -4, 227, 228, 229]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-NVS",
+            "NAME_0": "Russia",
+            "ID_1": 50,
+            "NAME_1": "Novosibirsk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Новосибирская область",
+            "VARNAME_1": "Novosibirskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-229, 230, 231, 232]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-OMS",
+            "NAME_0": "Russia",
+            "ID_1": 51,
+            "NAME_1": "Omsk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Омская область",
+            "VARNAME_1": "Omskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-198, -188, -49, -111, 233]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-ORL",
+            "NAME_0": "Russia",
+            "ID_1": 52,
+            "NAME_1": "Orel",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Орловская область",
+            "VARNAME_1": "Orlovskaya|Or'ol|Oryol|Orlovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-42, -65, 234, 235, 236, 237]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-ORE",
+            "NAME_0": "Russia",
+            "ID_1": 53,
+            "NAME_1": "Orenburg",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Оренбургская область",
+            "VARNAME_1": "Chkalov|Orenburgskaya|Orenburgskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[238, 239, 240, 241, -206]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-PNZ",
+            "NAME_0": "Russia",
+            "ID_1": 54,
+            "NAME_1": "Penza",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Пензенская область",
+            "VARNAME_1": "Penzenskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-45, 242, -148, -157, 243]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-PER",
+            "NAME_0": "Russia",
+            "ID_1": 55,
+            "NAME_1": "Perm'",
+            "TYPE_1": "Kray",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "Пермская край",
+            "VARNAME_1": "Molotov|Permskaya"
+          }
+        },
+        {
+          "arcs": [[244, -135]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-PRI",
+            "NAME_0": "Russia",
+            "ID_1": 56,
+            "NAME_1": "Primor'ye",
+            "TYPE_1": "Kray",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "Приморский край",
+            "VARNAME_1": "Küsten-Gebiet|Maritime Territory|Primorsk|Primorskiy Kray"
+          }
+        },
+        {
+          "arcs": [[-227, 245, 246, 247, -194]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-PSK",
+            "NAME_0": "Russia",
+            "ID_1": 57,
+            "NAME_1": "Pskov",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Псковская область",
+            "VARNAME_1": "Pskovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[248, 249, -108, 250, -162, 251]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-ROS",
+            "NAME_0": "Russia",
+            "ID_1": 58,
+            "NAME_1": "Rostov",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Ростовская область",
+            "VARNAME_1": "Province of the Don Cossacks|Provinz des Donischen Heeres|Voyska Donskovo|Rostovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-221, -207, -242, 252, -200, 253, -212, 254]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-RYA",
+            "NAME_0": "Russia",
+            "ID_1": 59,
+            "NAME_1": "Ryazan'",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Рязанская область",
+            "VARNAME_1": "Ryazanskaya Oblast|Ryazanskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[[255]], [[256]], [[257]], [[258]], [[259]], [[260]], [[261]], [[262]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-SAK",
+            "NAME_0": "Russia",
+            "ID_1": 60,
+            "NAME_1": "Sakhalin",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Сахалинская область",
+            "VARNAME_1": "Sakhalinskaya Oblast"
+          }
+        },
+        {
+          "arcs": [
+            [[263]],
+            [[264]],
+            [[265]],
+            [[266]],
+            [[267]],
+            [[268]],
+            [[269]],
+            [[-73, -201, -138, -10, 270, -96, -171, 271, -166, 272]],
+            [[273]],
+            [[274]],
+            [[275]],
+            [[276]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-SA",
+            "NAME_0": "Russia",
+            "ID_1": 61,
+            "NAME_1": "Sakha",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Саха",
+            "VARNAME_1": "Republic of Sakha|Yakutia-Sakha|Yakutsk|Yakut A.S.S.R.|Yakutskaya A.S.S.R.|Respublika Sakha"
+          }
+        },
+        {
+          "arcs": [[-237, 277, 278, 279]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-SAM",
+            "NAME_0": "Russia",
+            "ID_1": 62,
+            "NAME_1": "Samara",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Самарская область",
+            "VARNAME_1": "Kuybyshev|Kuybyshevskaya|Samarskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-236, 280, 281, 282, 283, -240, 284, -278]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-SAR",
+            "NAME_0": "Russia",
+            "ID_1": 63,
+            "NAME_1": "Saratov",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Саратовская область",
+            "VARNAME_1": "Saratovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-214, -112, -52, 285, -247, 286]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-SMO",
+            "NAME_0": "Russia",
+            "ID_1": 64,
+            "NAME_1": "Smolensk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Смоленская область",
+            "VARNAME_1": "Smolenskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-85, -61, -224, -104, -121, -163, -251, -107]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-STA",
+            "NAME_0": "Russia",
+            "ID_1": 65,
+            "NAME_1": "Stavropol",
+            "TYPE_1": "Kray",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "Ставропольский край",
+            "VARNAME_1": "Stavropol'skiy Kray|Stavropolskiy Kray"
+          }
+        },
+        {
+          "arcs": [[287, -184, -66, -40, -244, -156, -144]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-SVE",
+            "NAME_0": "Russia",
+            "ID_1": 66,
+            "NAME_1": "Sverdlovsk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Свердловская область",
+            "VARNAME_1": "Yekaterinburg|Sverdlovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-241, -284, 288, -196, -253]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-TAM",
+            "NAME_0": "Russia",
+            "ID_1": 67,
+            "NAME_1": "Tambov",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Тамбовская область",
+            "VARNAME_1": "Tambovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[289, -43, -238, -280, 290, -77, -203, -150]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-TA",
+            "NAME_0": "Russia",
+            "ID_1": 68,
+            "NAME_1": "Tatarstan",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Татарстан",
+            "VARNAME_1": "Kazan|Kazanskaya G.|Tatar A.S.S.R.|Tatarskaya A.S.S.R.|Republic of Tatarstan|Respublika Tatars"
+          }
+        },
+        {
+          "arcs": [[-173, -129, -230, -233, 291, -142]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-TOM",
+            "NAME_0": "Russia",
+            "ID_1": 69,
+            "NAME_1": "Tomsk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Томская область",
+            "VARNAME_1": "Tomskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-254, -199, -234, -110, -213]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-TUL",
+            "NAME_0": "Russia",
+            "ID_1": 70,
+            "NAME_1": "Tula",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Тульская область",
+            "VARNAME_1": "Tul'skaya|Tulskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-56, 292, -89, -139, -172, -94]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-TY",
+            "NAME_0": "Russia",
+            "ID_1": 71,
+            "NAME_1": "Tuva",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Республика Тыва",
+            "VARNAME_1": "Respublika Tyva|Republic of Tuva|Tyva|Tuvinskaya A.S.S.R.|Republic of Tyva"
+          }
+        },
+        {
+          "arcs": [[293, -215, -287, -246, -226, 294]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-TVE",
+            "NAME_0": "Russia",
+            "ID_1": 72,
+            "NAME_1": "Tver'",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Тверская область",
+            "VARNAME_1": "Kalinin|Kalininskaya|Tverskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-292, -232, 295, -182, -288, -143]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-TYU",
+            "NAME_0": "Russia",
+            "ID_1": 73,
+            "NAME_1": "Tyumen'",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Тюменская область",
+            "VARNAME_1": "Tobol'sk|Tobol'skaya G.|Tyumenskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-243, -44, -290, -149]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-UD",
+            "NAME_0": "Russia",
+            "ID_1": 74,
+            "NAME_1": "Udmurt",
+            "TYPE_1": "Respublika",
+            "ENGTYPE_1": "Republic",
+            "NL_NAME_1": "Удмуртская Республика",
+            "VARNAME_1": "Udmurtiya|Udmurt Republic|Udmurtskaya A.S.S.R.|Udmurtskaya Respublika"
+          }
+        },
+        {
+          "arcs": [[-279, -285, -239, -205, -78, -291]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-ULY",
+            "NAME_0": "Russia",
+            "ID_1": 75,
+            "NAME_1": "Ul'yanovsk",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Ульяновская область",
+            "VARNAME_1": "Simbirsk|Simbirskaya G.|Ul'yanovskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-222, -255, -211, 296, -98]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-VLA",
+            "NAME_0": "Russia",
+            "ID_1": 76,
+            "NAME_1": "Vladimir",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Владимирская область",
+            "VARNAME_1": "Vladimirskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[297, -38, -109, -250, 298, -282]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-VGG",
+            "NAME_0": "Russia",
+            "ID_1": 77,
+            "NAME_1": "Volgograd",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Волгоградская область",
+            "VARNAME_1": "Stalingrad|Volgogradskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-14, -154, -161, 299, -295, -225, -192, -123]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-VLG",
+            "NAME_0": "Russia",
+            "ID_1": 78,
+            "NAME_1": "Vologda",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Вологодская область",
+            "VARNAME_1": "Vologodskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[-289, -283, -299, -249, 300, -46, -186, -197]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-VOR",
+            "NAME_0": "Russia",
+            "ID_1": 79,
+            "NAME_1": "Voronezh",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Воронежская область",
+            "VARNAME_1": "Voronezhskaya Oblast"
+          }
+        },
+        {
+          "arcs": [[[301]], [[302]], [[303]], [[-174, -146, -155, -218, 304]], [[305]], [[306]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-YAN",
+            "NAME_0": "Russia",
+            "ID_1": 80,
+            "NAME_1": "Yamal-Nenets",
+            "TYPE_1": "Avtonomnyy Okrug",
+            "ENGTYPE_1": "Autonomous Province",
+            "NL_NAME_1": "Ямало-Ненецкий АОк",
+            "VARNAME_1": "Yamalo-Nenetskiy A. Okrug"
+          }
+        },
+        {
+          "arcs": [[-160, -99, -297, -210, -294, -300]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-YAR",
+            "NAME_0": "Russia",
+            "ID_1": 81,
+            "NAME_1": "Yaroslavl'",
+            "TYPE_1": "Oblast",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": "Ярославская область",
+            "VARNAME_1": "Yaroslavskaya"
+          }
+        },
+        {
+          "arcs": [[307, -7, -137]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-YEV",
+            "NAME_0": "Russia",
+            "ID_1": 82,
+            "NAME_1": "Yevrey",
+            "TYPE_1": "Avtonomnaya Oblast",
+            "ENGTYPE_1": "Autonomous Region",
+            "NL_NAME_1": "Eврейская АОб",
+            "VARNAME_1": "Den jødiske autonome oblasten|Evrey|Jewish A.Obl.|Yahudi|Yevreyskaya A.Obl.|Evreyskaya AOb"
+          }
+        },
+        {
+          "arcs": [[-271, -9, 308, -54, -93]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 188,
+            "ISO": "RU-ZAB",
+            "NAME_0": "Russia",
+            "ID_1": 83,
+            "NAME_1": "Zabaykal'ye",
+            "TYPE_1": "Kray",
+            "ENGTYPE_1": "Territory",
+            "NL_NAME_1": "Забайкальский край",
+            "VARNAME_1": "Zabaykalsky"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/singapore-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/singapore-topo.json
new file mode 100644
index 0000000..c6b4ec1
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/singapore-topo.json
@@ -0,0 +1,7518 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [3548, 26653],
+      [25, -43],
+      [27, -40],
+      [24, -44],
+      [20, -53],
+      [30, -55],
+      [35, -60],
+      [54, -49],
+      [61, -45],
+      [64, -37],
+      [64, -26],
+      [64, -14],
+      [62, -4],
+      [59, -4],
+      [58, 3],
+      [60, -6],
+      [56, -21],
+      [54, 0],
+      [47, -18],
+      [36, -36],
+      [30, -44],
+      [13, -59],
+      [19, -59],
+      [-6, -60],
+      [-22, -61],
+      [-30, -57],
+      [-20, -65],
+      [-21, -67],
+      [-15, -77],
+      [18, -90],
+      [37, -85],
+      [48, -77],
+      [44, -82],
+      [56, -59],
+      [61, -34],
+      [64, -20],
+      [61, -23],
+      [64, -2],
+      [63, 17],
+      [62, 20],
+      [57, 28],
+      [59, 20],
+      [47, 35],
+      [41, 41],
+      [38, 41],
+      [28, 40],
+      [17, 43],
+      [3, 43],
+      [-5, 46],
+      [-11, 44],
+      [-28, 34],
+      [-35, 24],
+      [-48, -9],
+      [-62, -35],
+      [-56, -46],
+      [-52, -13],
+      [-37, 30],
+      [-24, 47],
+      [-21, 46],
+      [-24, 35],
+      [-21, 35],
+      [-19, 36],
+      [-5, 50],
+      [-1, 57],
+      [-4, 66],
+      [-19, 72],
+      [-11, 80],
+      [-2, 83],
+      [-2, 82],
+      [-12, 80],
+      [-29, 72],
+      [-46, 59],
+      [-52, 47],
+      [-49, 42],
+      [-47, 38],
+      [-46, 34],
+      [-42, 40],
+      [-46, 30],
+      [-40, 32],
+      [-37, 35],
+      [-31, 36],
+      [-28, 33],
+      [-30, 32],
+      [-38, 27],
+      [-40, 39],
+      [-46, 53],
+      [-51, 63],
+      [-57, 60],
+      [-50, 54],
+      [-48, 40],
+      [-30, 46],
+      [-36, 37],
+      [-51, 29],
+      [-45, 49],
+      [-45, 60],
+      [-40, 72],
+      [-38, 72],
+      [-34, 71],
+      [-26, 69],
+      [-24, 64],
+      [-39, 47],
+      [-38, 48],
+      [-28, 62],
+      [-34, 60],
+      [-44, 50],
+      [-46, 45],
+      [-42, 42],
+      [-28, 41],
+      [4, 52],
+      [67, 94],
+      [72, 43],
+      [65, 25],
+      [57, 41],
+      [59, 26],
+      [58, 21],
+      [51, 30],
+      [31, 49],
+      [19, 61],
+      [14, 69],
+      [-7, 83],
+      [3, 96],
+      [56, 90],
+      [34, -3],
+      [11, -4],
+      [50, -18],
+      [63, 19],
+      [68, 23],
+      [60, 41],
+      [58, 40],
+      [68, 13],
+      [72, -16],
+      [68, 25],
+      [68, 29],
+      [66, 27],
+      [58, 31],
+      [58, 31],
+      [74, 7],
+      [72, 0],
+      [111, -124],
+      [74, 0],
+      [36, -41],
+      [37, 41],
+      [0, 124],
+      [-37, 43],
+      [-20, 60],
+      [-15, 62],
+      [-12, 61],
+      [-25, 52],
+      [-27, 46],
+      [-26, 38],
+      [-33, 35],
+      [-24, 54],
+      [-28, 61],
+      [-13, 73],
+      [-15, 71],
+      [-2, 74],
+      [6, 71],
+      [43, 57],
+      [44, 49],
+      [38, 44],
+      [37, 39],
+      [33, 37],
+      [29, 38],
+      [17, 43],
+      [22, 54],
+      [23, 81],
+      [26, 106],
+      [30, 83],
+      [35, 32],
+      [40, -16],
+      [54, -10],
+      [55, -18],
+      [55, -23],
+      [50, -26],
+      [58, -11],
+      [62, 5],
+      [67, 24],
+      [73, 9],
+      [73, 2],
+      [70, 0],
+      [83, 0],
+      [404, 0],
+      [37, 41],
+      [294, 0],
+      [36, 41],
+      [37, 0],
+      [37, 41],
+      [12, -13],
+      [25, -28],
+      [184, 0],
+      [110, -124],
+      [0, -41],
+      [36, -41],
+      [0, -124],
+      [38, -41],
+      [0, -247],
+      [36, -41],
+      [0, -82],
+      [36, -41],
+      [0, -41],
+      [74, -83],
+      [74, 0],
+      [37, -41],
+      [36, 0],
+      [37, 41],
+      [37, 0],
+      [110, 124],
+      [0, 123],
+      [37, 41],
+      [0, 83],
+      [37, 41],
+      [-37, 41],
+      [0, 123],
+      [-37, 42],
+      [0, 41],
+      [-36, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 41],
+      [-221, 248],
+      [0, 41],
+      [-37, 41],
+      [0, 123],
+      [37, 42],
+      [0, 41],
+      [184, 205],
+      [23, 50],
+      [12, 61],
+      [5, 55],
+      [11, 44],
+      [44, 32],
+      [75, 7],
+      [80, -38],
+      [63, -32],
+      [56, -11],
+      [56, -3],
+      [55, 1],
+      [49, 5],
+      [35, 18],
+      [6, 47],
+      [-31, 73],
+      [-51, 44],
+      [-64, 14],
+      [-69, 6],
+      [-67, 10],
+      [-59, 20],
+      [-82, 9],
+      [-37, 0],
+      [-73, 83],
+      [0, 164],
+      [-37, 41],
+      [0, 42],
+      [-110, 123],
+      [-257, 0],
+      [-30, -1],
+      [-44, -1],
+      [-56, -14],
+      [-62, -20],
+      [-65, -5],
+      [-64, 0],
+      [-49, 0],
+      [-16, 0],
+      [-67, 0],
+      [-68, -1],
+      [-71, -6],
+      [-67, -18],
+      [-63, -18],
+      [-58, -25],
+      [-58, -19],
+      [-54, -35],
+      [-61, -32],
+      [-74, -3],
+      [-70, 26],
+      [-63, 7],
+      [-51, 4],
+      [-37, 14],
+      [-33, 21],
+      [-34, 22],
+      [-23, 36],
+      [-30, 36],
+      [-36, 38],
+      [-41, 29],
+      [-52, -1],
+      [-49, -34],
+      [-46, -43],
+      [-35, -48],
+      [-29, -39],
+      [-26, -32],
+      [-27, -23],
+      [-20, -21],
+      [-36, 41],
+      [0, 124],
+      [28, 106],
+      [40, 78],
+      [40, 73],
+      [38, 68],
+      [45, 51],
+      [46, 40],
+      [38, 47],
+      [26, 63],
+      [31, 69],
+      [36, 75],
+      [44, 76],
+      [53, 68],
+      [48, 82],
+      [38, 96],
+      [37, 101],
+      [37, 101],
+      [0, 41],
+      [36, 41],
+      [0, 124],
+      [37, 41],
+      [0, 576],
+      [-73, 83],
+      [-37, 0],
+      [-111, 123],
+      [0, 41],
+      [38, 41],
+      [0, 42],
+      [36, 41],
+      [0, 41],
+      [184, 206],
+      [0, 41],
+      [21, 63],
+      [17, 77],
+      [12, 71],
+      [-1, 71],
+      [-15, 75],
+      [-22, 83],
+      [-10, 98],
+      [6, 100],
+      [38, 84],
+      [59, 60],
+      [59, 52],
+      [52, 51],
+      [39, 55],
+      [28, 60],
+      [13, 67],
+      [19, 65],
+      [31, 56],
+      [47, 46],
+      [58, 35],
+      [72, 8],
+      [64, -1],
+      [48, -7],
+      [32, -22],
+      [37, -22],
+      [25, 59],
+      [27, 26],
+      [44, 19],
+      [49, 34],
+      [46, 48],
+      [51, 42],
+      [37, 55],
+      [16, 76],
+      [22, 80],
+      [13, 80],
+      [20, 70],
+      [22, 61],
+      [31, 38],
+      [32, 20],
+      [15, 46],
+      [18, 45],
+      [4, 70],
+      [2, 78],
+      [8, 74],
+      [22, 66],
+      [6, 64],
+      [10, 59],
+      [21, 48],
+      [8, 62],
+      [17, 62],
+      [20, 66],
+      [31, 60],
+      [30, 60],
+      [14, 64],
+      [17, 59],
+      [13, 61],
+      [8, 61],
+      [24, 55],
+      [7, 57],
+      [6, 54],
+      [23, 47],
+      [9, 58],
+      [12, 60],
+      [20, 59],
+      [17, 64],
+      [23, 49],
+      [37, 41],
+      [0, 41],
+      [404, 453],
+      [0, 41],
+      [37, 41],
+      [36, 0],
+      [38, 42],
+      [73, 0],
+      [37, -42],
+      [74, 0],
+      [36, 42],
+      [110, -1],
+      [257, 289],
+      [37, 0],
+      [61, 1],
+      [77, 5],
+      [71, -2],
+      [53, 8],
+      [36, 22],
+      [33, 6],
+      [34, 8],
+      [35, 26],
+      [36, 42],
+      [44, 43],
+      [56, 30],
+      [54, 24],
+      [51, 33],
+      [48, 31],
+      [61, 26],
+      [73, 21],
+      [74, 4],
+      [71, 1],
+      [66, 7],
+      [56, 25],
+      [66, 8],
+      [66, 8],
+      [61, 27],
+      [61, 24],
+      [59, 26],
+      [60, 31],
+      [60, 34],
+      [64, 37],
+      [64, 38],
+      [63, 36],
+      [54, 57],
+      [52, 63],
+      [51, 65],
+      [50, 57],
+      [31, 70],
+      [39, 60],
+      [39, 59],
+      [56, 57],
+      [58, 64],
+      [70, 66],
+      [68, 72],
+      [65, 68],
+      [65, 47],
+      [62, 31],
+      [54, 32],
+      [45, 44],
+      [43, 51],
+      [45, 51],
+      [46, 52],
+      [38, 60],
+      [39, 62],
+      [40, 64],
+      [47, 54],
+      [54, 43],
+      [51, 44],
+      [48, 46],
+      [45, 48],
+      [50, 46],
+      [41, 59],
+      [40, 57],
+      [65, 11],
+      [55, 24],
+      [53, 14],
+      [39, 34],
+      [33, 52],
+      [43, 51],
+      [60, 45],
+      [61, 35],
+      [63, 14],
+      [50, 30],
+      [58, 23],
+      [53, 32],
+      [59, 35],
+      [62, 39],
+      [68, 39],
+      [76, 36],
+      [80, 25],
+      [80, 25],
+      [78, 28],
+      [84, 1],
+      [77, 1],
+      [68, 7],
+      [62, 7],
+      [53, 22],
+      [61, 14],
+      [70, 14],
+      [78, 22],
+      [91, 4],
+      [93, 1],
+      [74, 0],
+      [36, -41],
+      [110, 0],
+      [38, 41],
+      [110, 0],
+      [36, 41],
+      [111, 0],
+      [36, -41],
+      [294, 0],
+      [38, -41],
+      [36, 0],
+      [37, -42],
+      [37, 0],
+      [36, -41],
+      [37, 0],
+      [74, -82],
+      [73, 0],
+      [147, -165],
+      [0, -41],
+      [36, -41],
+      [0, -41],
+      [74, -83],
+      [0, -41],
+      [59, -67],
+      [40, -45],
+      [54, -27],
+      [39, -46],
+      [40, -43],
+      [46, -39],
+      [51, -41],
+      [50, -54],
+      [53, -55],
+      [53, -57],
+      [52, -50],
+      [37, -59],
+      [23, -67],
+      [28, -50],
+      [37, -41],
+      [0, -82],
+      [37, -42],
+      [0, -40],
+      [36, -42],
+      [0, -41],
+      [38, -41],
+      [0, -41],
+      [18, -41],
+      [0, -42],
+      [-9, -72],
+      [-120, -175],
+      [0, -82],
+      [-37, -41],
+      [5, -46],
+      [29, -63],
+      [26, -66],
+      [12, -71],
+      [2, -73],
+      [0, -75],
+      [-4, -78],
+      [-17, -80],
+      [-35, -79],
+      [-67, -62],
+      [-68, -66],
+      [-3, -92],
+      [51, -71],
+      [73, -27],
+      [63, -24],
+      [44, -37],
+      [18, -31],
+      [-14, -47],
+      [-74, -110],
+      [-38, -41],
+      [0, -82],
+      [-36, -83],
+      [-27, -124],
+      [-38, -110],
+      [-28, -44],
+      [3, -21],
+      [-36, -77],
+      [-37, -61],
+      [17, -68],
+      [-9, -35],
+      [9, -75],
+      [-4, -60],
+      [-1, -67],
+      [-3, -71],
+      [-15, -68],
+      [-22, -67],
+      [-38, -54],
+      [-50, -46],
+      [-47, -51],
+      [-44, -57],
+      [-43, -60],
+      [-49, -52],
+      [-56, -45],
+      [-56, -46],
+      [-50, -52],
+      [-47, -56],
+      [-48, -52],
+      [-50, -52],
+      [-46, -59],
+      [-48, -58],
+      [-48, -61],
+      [-58, -49],
+      [-68, -32],
+      [-69, -21],
+      [-63, -24],
+      [-71, -12],
+      [-76, -3],
+      [-78, -6],
+      [-75, -34],
+      [-65, -54],
+      [-51, -64],
+      [-63, -52],
+      [-58, -47],
+      [-60, -32],
+      [-55, -30],
+      [-58, -12],
+      [-57, -15],
+      [-54, -12],
+      [-56, -6],
+      [-55, 1],
+      [-57, 7],
+      [-59, 10],
+      [-66, 10],
+      [-70, 11],
+      [-66, 25],
+      [-63, 36],
+      [-66, 40],
+      [-45, 72],
+      [-54, 69],
+      [-60, 61],
+      [-68, 38],
+      [-68, 21],
+      [-44, 3],
+      [-21, 1],
+      [-36, -41],
+      [-37, 0],
+      [-18, -20],
+      [-55, -62],
+      [0, -41],
+      [-56, -31],
+      [-54, -10],
+      [-38, -42],
+      [-73, -41],
+      [-37, 0],
+      [-36, 42],
+      [-111, 0],
+      [-73, -83],
+      [-221, 0],
+      [-106, -5],
+      [-105, -5],
+      [-277, 10],
+      [-24, -7],
+      [-48, -13],
+      [-65, -186],
+      [37, -51],
+      [58, -21],
+      [52, 31],
+      [37, 31],
+      [37, 31],
+      [9, 41],
+      [55, 10],
+      [55, 11],
+      [101, 0],
+      [331, 0],
+      [74, -83],
+      [92, -185],
+      [91, 0],
+      [111, 185],
+      [0, 41],
+      [36, 42],
+      [0, 41],
+      [38, 41],
+      [72, 0],
+      [74, 82],
+      [37, 0],
+      [37, -41],
+      [52, -13],
+      [35, -20],
+      [24, -15],
+      [15, -28],
+      [17, -33],
+      [14, -42],
+      [20, -45],
+      [5, -55],
+      [1, -59],
+      [7, -54],
+      [23, -42],
+      [20, -39],
+      [28, -29],
+      [39, -17],
+      [49, -3],
+      [56, 1],
+      [59, 11],
+      [54, 28],
+      [56, 25],
+      [59, 17],
+      [61, 17],
+      [64, 20],
+      [74, 7],
+      [74, 15],
+      [77, 48],
+      [72, 7],
+      [20, -13],
+      [30, -20],
+      [35, -36],
+      [21, -30],
+      [15, -61],
+      [34, -13],
+      [28, 31],
+      [36, 10],
+      [33, 31],
+      [56, -17],
+      [56, -41],
+      [47, -51],
+      [35, -57],
+      [20, -67],
+      [18, -71],
+      [4, -80],
+      [-5, -80],
+      [-25, -68],
+      [-17, -65],
+      [-22, -50],
+      [-15, -54],
+      [-25, -49],
+      [-25, -57],
+      [-17, -68],
+      [-26, -60],
+      [-10, -65],
+      [-22, -54],
+      [-14, -52],
+      [-19, -45],
+      [-15, -45],
+      [-14, -47],
+      [-17, -51],
+      [-5, -66],
+      [-6, -72],
+      [-21, -65],
+      [-18, -61],
+      [-17, -49],
+      [16, -44],
+      [25, -46],
+      [32, -48],
+      [25, -53],
+      [17, -55],
+      [-12, -59],
+      [-9, -63],
+      [-23, -64],
+      [-24, -67],
+      [-39, -62],
+      [-50, -44],
+      [-48, -47],
+      [-49, -42],
+      [-43, -46],
+      [-35, -46],
+      [-49, -39],
+      [-62, -30],
+      [-57, -28],
+      [-135, -37],
+      [0, -42],
+      [18, -41],
+      [18, -41],
+      [10, -62],
+      [82, 0],
+      [37, 31],
+      [28, 41],
+      [36, 31],
+      [64, 31],
+      [55, 24],
+      [51, 40],
+      [51, 35],
+      [53, 37],
+      [52, 30],
+      [54, 25],
+      [45, 33],
+      [38, 36],
+      [32, 39],
+      [25, 43],
+      [32, 43],
+      [35, 44],
+      [32, 49],
+      [25, 51],
+      [16, 52],
+      [18, 46],
+      [6, 58],
+      [6, 65],
+      [24, 71],
+      [6, 79],
+      [0, 79],
+      [-8, 73],
+      [-22, 62],
+      [-6, 62],
+      [2, 64],
+      [13, 67],
+      [21, 66],
+      [23, 68],
+      [24, 63],
+      [30, 49],
+      [37, 32],
+      [36, 29],
+      [47, 6],
+      [51, 0],
+      [52, -7],
+      [44, -32],
+      [44, -44],
+      [40, -52],
+      [30, -65],
+      [31, -60],
+      [27, -58],
+      [29, -50],
+      [20, -56],
+      [22, -54],
+      [21, -59],
+      [22, -63],
+      [32, -61],
+      [37, -64],
+      [36, -68],
+      [34, -72],
+      [31, -75],
+      [21, -79],
+      [23, -69],
+      [20, -63],
+      [16, -53],
+      [3, -47],
+      [1, -42],
+      [5, -46],
+      [30, -61],
+      [-36, -41],
+      [0, -83],
+      [73, -82],
+      [-37, -41],
+      [74, -83],
+      [73, 0],
+      [7, 44],
+      [26, 42],
+      [24, 39],
+      [19, 35],
+      [4, 31],
+      [-8, 50],
+      [2, 33],
+      [0, 49],
+      [0, 57],
+      [6, 61],
+      [24, 60],
+      [6, 72],
+      [0, 81],
+      [-6, 85],
+      [-23, 77],
+      [-13, 80],
+      [-28, 67],
+      [-27, 66],
+      [-35, 65],
+      [-43, 67],
+      [-45, 76],
+      [-40, 82],
+      [-34, 83],
+      [-37, 80],
+      [-37, 78],
+      [-44, 72],
+      [-48, 65],
+      [-36, 76],
+      [-29, 80],
+      [-28, 78],
+      [-36, 69],
+      [-39, 61],
+      [-41, 47],
+      [-36, 39],
+      [-36, 42],
+      [-26, 51],
+      [-12, 59],
+      [-22, 53],
+      [-9, 68],
+      [-9, 72],
+      [-3, 70],
+      [11, 56],
+      [4, 53],
+      [10, 54],
+      [28, 44],
+      [41, 37],
+      [51, 36],
+      [53, 41],
+      [53, 51],
+      [39, 73],
+      [36, 95],
+      [48, 78],
+      [46, 68],
+      [52, 45],
+      [48, 35],
+      [41, 36],
+      [34, 40],
+      [48, 23],
+      [38, 31],
+      [37, 31],
+      [38, 31],
+      [29, 52],
+      [52, 32],
+      [53, 37],
+      [63, 27],
+      [59, 33],
+      [62, 36],
+      [69, 37],
+      [62, 63],
+      [73, 59],
+      [42, 86],
+      [15, 100],
+      [8, 96],
+      [30, 79],
+      [33, 72],
+      [35, 68],
+      [47, 63],
+      [56, 54],
+      [60, 51],
+      [59, 43],
+      [54, 44],
+      [49, 46],
+      [45, 54],
+      [38, 64],
+      [30, 74],
+      [32, 75],
+      [31, 75],
+      [38, 66],
+      [40, 62],
+      [45, 53],
+      [44, 47],
+      [38, 45],
+      [32, 46],
+      [21, 56],
+      [21, 49],
+      [21, 49],
+      [-11, 54],
+      [-19, 59],
+      [-26, 63],
+      [-7, 78],
+      [-16, 81],
+      [-21, 81],
+      [-35, 159],
+      [-9, 42],
+      [-64, 82],
+      [-27, 83],
+      [-74, 114],
+      [-55, 93],
+      [-26, 86],
+      [-26, 67],
+      [-35, 55],
+      [-45, 58],
+      [-41, 69],
+      [-25, 78],
+      [11, 81],
+      [24, 70],
+      [35, 52],
+      [43, 42],
+      [51, 33],
+      [66, 19],
+      [70, 9],
+      [70, -34],
+      [66, -50],
+      [67, -47],
+      [70, -45],
+      [77, -46],
+      [36, 0],
+      [37, -41],
+      [37, 0],
+      [110, -123],
+      [74, 0],
+      [37, -42],
+      [36, 0],
+      [37, -41],
+      [73, 83],
+      [74, 0],
+      [36, 41],
+      [111, 0],
+      [37, 41],
+      [36, 0],
+      [53, 30],
+      [71, 16],
+      [68, 22],
+      [75, -11],
+      [70, -13],
+      [68, -3],
+      [66, -6],
+      [59, -25],
+      [66, 8],
+      [61, -11],
+      [56, -3],
+      [47, 18],
+      [97, 27],
+      [74, 0],
+      [64, -31],
+      [73, 20],
+      [82, 21],
+      [65, 51],
+      [9, 42],
+      [36, 72],
+      [36, 62],
+      [32, 61],
+      [38, 73],
+      [49, 70],
+      [51, 65],
+      [41, 62],
+      [38, 42],
+      [0, 41],
+      [257, 288],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [36, 42],
+      [0, 82],
+      [37, 41],
+      [0, 83],
+      [37, 41],
+      [21, -24],
+      [16, -17],
+      [36, 41],
+      [37, 0],
+      [37, 41],
+      [0, 41],
+      [74, 82],
+      [9, 42],
+      [146, 82],
+      [29, 41],
+      [36, 0],
+      [36, -41],
+      [148, 0],
+      [37, 41],
+      [36, 0],
+      [38, 32],
+      [50, 47],
+      [62, 37],
+      [80, 11],
+      [80, 22],
+      [66, 48],
+      [69, 54],
+      [66, 57],
+      [58, 66],
+      [49, 69],
+      [50, 60],
+      [50, 53],
+      [72, 25],
+      [69, 36],
+      [67, 35],
+      [70, 29],
+      [74, 25],
+      [70, 35],
+      [74, 42],
+      [77, 49],
+      [75, 58],
+      [66, 76],
+      [64, 80],
+      [79, 59],
+      [81, 56],
+      [71, 67],
+      [79, 52],
+      [64, 58],
+      [56, 57],
+      [57, 43],
+      [50, 44],
+      [47, 40],
+      [49, 35],
+      [56, 27],
+      [55, 30],
+      [54, 37],
+      [51, 50],
+      [44, 64],
+      [40, 71],
+      [43, 65],
+      [28, 34],
+      [37, 41],
+      [37, 0],
+      [36, 42],
+      [37, 0],
+      [37, 41],
+      [36, -1],
+      [38, 42],
+      [36, 0],
+      [36, 41],
+      [0, 41],
+      [38, 41],
+      [0, 41],
+      [183, 206],
+      [294, 0],
+      [38, 41],
+      [110, 0],
+      [18, 21],
+      [18, 21],
+      [37, 0],
+      [37, 41],
+      [36, 0],
+      [221, 247],
+      [74, 0],
+      [36, 41],
+      [74, 0],
+      [110, 124],
+      [37, 0],
+      [64, -11],
+      [120, 51],
+      [83, 11],
+      [83, 0],
+      [54, 20],
+      [74, 11],
+      [36, 0],
+      [38, -42],
+      [73, 0],
+      [37, -40],
+      [73, 0],
+      [43, -38],
+      [56, 2],
+      [68, 29],
+      [78, 6],
+      [79, 1],
+      [81, -1],
+      [81, 0],
+      [84, 6],
+      [83, 28],
+      [82, 45],
+      [89, 33],
+      [87, 5],
+      [70, -19],
+      [72, 15],
+      [54, -21],
+      [52, -21],
+      [56, -37],
+      [51, -32],
+      [56, -30],
+      [57, -36],
+      [56, -42],
+      [57, -42],
+      [49, -43],
+      [39, -42],
+      [29, -35],
+      [8, -41],
+      [-9, -44],
+      [-54, -47],
+      [-56, -14],
+      [-57, -16],
+      [-90, -42],
+      [-70, -56],
+      [-63, -62],
+      [-53, -65],
+      [-41, -65],
+      [-23, -70],
+      [-6, -71],
+      [18, -71],
+      [26, -55],
+      [38, 40],
+      [0, 42],
+      [36, 41],
+      [0, 41],
+      [37, 41],
+      [58, 61],
+      [63, 56],
+      [86, 55],
+      [52, 30],
+      [50, 31],
+      [54, 11],
+      [26, 5],
+      [41, -27],
+      [42, -26],
+      [41, -33],
+      [45, -33],
+      [61, -4],
+      [65, 18],
+      [50, 51],
+      [42, 57],
+      [32, 55],
+      [24, 51],
+      [13, 54],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [37, 41],
+      [0, 42],
+      [110, 123],
+      [0, 82],
+      [110, 124],
+      [74, 0],
+      [147, -165],
+      [37, 1],
+      [110, -124],
+      [-37, -41],
+      [0, -83],
+      [-73, -82],
+      [0, -41],
+      [37, -41],
+      [36, 0],
+      [74, -83],
+      [36, 0],
+      [38, -41],
+      [36, 0],
+      [36, -41],
+      [74, 0],
+      [74, -41],
+      [36, 0],
+      [37, -41],
+      [0, -41],
+      [37, -42],
+      [0, -41],
+      [37, -41],
+      [74, -82],
+      [73, 0],
+      [37, -42],
+      [184, 1],
+      [36, -41],
+      [69, -25],
+      [72, -50],
+      [72, -52],
+      [62, -59],
+      [54, -56],
+      [44, -51],
+      [38, -45],
+      [29, -39],
+      [28, -31],
+      [39, -18],
+      [44, -25],
+      [57, -23],
+      [64, -22],
+      [66, -30],
+      [64, -36],
+      [51, -56],
+      [47, -60],
+      [49, -55],
+      [57, -47],
+      [61, -44],
+      [64, -42],
+      [59, -40],
+      [55, -37],
+      [56, -23],
+      [52, -23],
+      [54, -26],
+      [64, -20],
+      [60, -36],
+      [58, -41],
+      [54, -41],
+      [46, -42],
+      [38, -48],
+      [36, -56],
+      [30, -67],
+      [23, -72],
+      [19, -72],
+      [3, -71],
+      [-8, -70],
+      [-23, -67],
+      [-14, -83],
+      [-36, -83],
+      [-66, -79],
+      [-87, -45],
+      [-79, -16],
+      [-59, -20],
+      [-69, -15],
+      [-147, 0],
+      [-36, 41],
+      [-38, 0],
+      [-36, -41],
+      [-37, 0],
+      [-6, -31],
+      [-5, -30],
+      [-2, -43],
+      [18, -42],
+      [29, -32],
+      [33, -27],
+      [42, -21],
+      [47, -18],
+      [54, -6],
+      [53, 1],
+      [53, 1],
+      [50, 2],
+      [53, 8],
+      [53, 24],
+      [62, 8],
+      [62, 9],
+      [61, 24],
+      [64, 9],
+      [64, 9],
+      [58, 24],
+      [62, 7],
+      [66, 0],
+      [68, -9],
+      [60, -39],
+      [45, -65],
+      [45, -67],
+      [35, -67],
+      [28, -64],
+      [29, -59],
+      [16, -63],
+      [22, -58],
+      [14, -65],
+      [21, -62],
+      [3, -77],
+      [-12, -86],
+      [-27, -91],
+      [-51, -90],
+      [-78, -76],
+      [-81, -76],
+      [-78, -80],
+      [-75, -81],
+      [-47, -107],
+      [-27, -52],
+      [27, -20],
+      [37, 0],
+      [30, 18],
+      [74, 49],
+      [72, 74],
+      [68, 71],
+      [74, 71],
+      [79, 74],
+      [82, 25],
+      [18, -8],
+      [53, -21],
+      [60, -49],
+      [53, -50],
+      [37, -47],
+      [25, -45],
+      [27, -35],
+      [21, -32],
+      [10, -31],
+      [20, -21],
+      [21, -33],
+      [33, -40],
+      [36, -52],
+      [37, -57],
+      [39, -56],
+      [35, -54],
+      [36, -46],
+      [37, -39],
+      [33, -35],
+      [28, -36],
+      [22, -41],
+      [23, -38],
+      [14, -45],
+      [22, -40],
+      [10, -55],
+      [21, -55],
+      [10, -58],
+      [-4, -55],
+      [-22, -51],
+      [-15, -56],
+      [-26, -53],
+      [-24, -60],
+      [-32, -56],
+      [-38, -49],
+      [-33, -53],
+      [-39, -44],
+      [-37, -38],
+      [-27, -34],
+      [-14, -38],
+      [-17, -41],
+      [-9, -61],
+      [-30, -59],
+      [-37, -57],
+      [-41, -48],
+      [-43, -36],
+      [-41, -28],
+      [-33, -34],
+      [-29, -44],
+      [-33, -49],
+      [-31, -58],
+      [-2, -66],
+      [-20, -38],
+      [-45, -110],
+      [-19, -62],
+      [-9, -73],
+      [-38, -112],
+      [-38, -57],
+      [-30, -69],
+      [-27, -68],
+      [-32, -59],
+      [-33, -60],
+      [-40, -59],
+      [-42, -60],
+      [-46, -52],
+      [-43, -48],
+      [-44, -56],
+      [-53, -48],
+      [-48, -39],
+      [-39, -44],
+      [-24, -65],
+      [-32, -72],
+      [0, -83],
+      [-38, -41],
+      [0, -41],
+      [-36, -42],
+      [0, -82],
+      [-74, -82],
+      [0, -41],
+      [-36, -42],
+      [0, -41],
+      [-74, -82],
+      [0, -41],
+      [-74, -82],
+      [0, -42],
+      [-36, -41],
+      [0, -41],
+      [-37, -41],
+      [0, -83],
+      [-220, -247],
+      [-37, 0],
+      [-18, -20],
+      [-19, -21],
+      [-36, 0],
+      [-38, -41],
+      [-65, -47],
+      [-59, -56],
+      [-67, -53],
+      [-76, -45],
+      [-77, -36],
+      [-66, -6],
+      [-53, 10],
+      [-45, 22],
+      [-45, 13],
+      [-42, 27],
+      [-51, 13],
+      [-45, 27],
+      [-51, 29],
+      [-62, 24],
+      [-68, 32],
+      [-80, 24],
+      [-82, 30],
+      [-73, 34],
+      [-65, 26],
+      [-72, -5],
+      [-77, 0],
+      [-69, 15],
+      [-64, 13],
+      [-59, 34],
+      [-67, 39],
+      [-77, 27],
+      [-86, -20],
+      [-89, -23],
+      [-80, -29],
+      [-63, -38],
+      [-55, -40],
+      [-53, -38],
+      [-56, -35],
+      [-58, -37],
+      [-46, -58],
+      [-33, -72],
+      [-26, -75],
+      [-17, -70],
+      [-23, -59],
+      [-15, -58],
+      [-23, -49],
+      [-19, -52],
+      [-25, -47],
+      [-20, -50],
+      [-15, -52],
+      [0, -53],
+      [16, -47],
+      [34, -37],
+      [29, -35],
+      [31, -12],
+      [34, 30],
+      [37, 41],
+      [35, 45],
+      [29, 46],
+      [22, 46],
+      [25, 37],
+      [27, 31],
+      [28, 28],
+      [23, 37],
+      [32, 31],
+      [40, 29],
+      [55, 18],
+      [62, 17],
+      [69, 12],
+      [61, 26],
+      [64, 19],
+      [55, 25],
+      [58, 2],
+      [46, -17],
+      [34, -24],
+      [20, -31],
+      [12, -36],
+      [-20, -45],
+      [-33, -59],
+      [-37, -69],
+      [-41, -69],
+      [-30, -76],
+      [-11, -85],
+      [7, -83],
+      [29, -69],
+      [34, -63],
+      [26, -59],
+      [11, -56],
+      [2, -48],
+      [-10, -40],
+      [-18, -34],
+      [-10, -38],
+      [-11, -38],
+      [-7, -37],
+      [17, -47],
+      [21, -52],
+      [43, -41],
+      [48, -31],
+      [48, -27],
+      [40, -28],
+      [43, -10],
+      [49, -1],
+      [57, 0],
+      [73, 0],
+      [84, 1],
+      [86, 13],
+      [70, 59],
+      [69, 52],
+      [45, 71],
+      [35, 75],
+      [28, 76],
+      [16, 76],
+      [30, 60],
+      [33, 48],
+      [34, 37],
+      [49, 4],
+      [53, -24],
+      [54, -43],
+      [52, -40],
+      [51, -16],
+      [37, 6],
+      [31, 27],
+      [35, 42],
+      [33, 69],
+      [14, 86],
+      [8, 81],
+      [20, 61],
+      [32, 46],
+      [43, 41],
+      [57, 40],
+      [67, 41],
+      [75, 44],
+      [75, 47],
+      [54, 67],
+      [59, 58],
+      [59, 51],
+      [56, 54],
+      [66, 47],
+      [68, 43],
+      [66, 41],
+      [56, 43],
+      [45, 47],
+      [32, 54],
+      [27, 57],
+      [27, 54],
+      [22, 53],
+      [27, 44],
+      [43, 33],
+      [58, 31],
+      [60, 44],
+      [61, 58],
+      [70, 64],
+      [74, 56],
+      [62, 50],
+      [53, 49],
+      [54, 45],
+      [56, 44],
+      [51, 49],
+      [45, 55],
+      [37, 55],
+      [32, 54],
+      [18, 64],
+      [27, 64],
+      [32, 68],
+      [32, 69],
+      [49, 53],
+      [54, 43],
+      [52, 43],
+      [45, 54],
+      [30, 78],
+      [34, 88],
+      [31, 98],
+      [40, 94],
+      [41, 88],
+      [38, 76],
+      [29, 67],
+      [6, 68],
+      [4, 69],
+      [23, 67],
+      [47, 59],
+      [56, 59],
+      [64, 47],
+      [73, 29],
+      [70, 29],
+      [65, 32],
+      [70, 15],
+      [67, 26],
+      [84, 8],
+      [88, 5],
+      [85, 9],
+      [78, -44],
+      [88, -17],
+      [55, -27],
+      [63, -37],
+      [79, -37],
+      [44, -16],
+      [42, -75],
+      [49, -68],
+      [54, -52],
+      [54, -54],
+      [51, -60],
+      [49, -61],
+      [41, -69],
+      [37, -74],
+      [34, -74],
+      [32, -70],
+      [34, -63],
+      [42, -50],
+      [47, -49],
+      [55, -44],
+      [64, -39],
+      [78, -34],
+      [94, -27],
+      [53, -25],
+      [27, -40],
+      [37, -44],
+      [46, -40],
+      [46, -33],
+      [30, -36],
+      [20, -34],
+      [1, -86],
+      [-11, -114],
+      [2, -83],
+      [11, -55],
+      [8, -59],
+      [5, -58],
+      [40, -28],
+      [32, 46],
+      [25, 78],
+      [10, 90],
+      [-1, 106],
+      [-22, 116],
+      [-3, 91],
+      [34, 50],
+      [51, 47],
+      [73, 35],
+      [91, 16],
+      [89, 5],
+      [96, -30],
+      [88, -34],
+      [76, -47],
+      [84, -50],
+      [83, -46],
+      [80, -44],
+      [73, -38],
+      [48, -11],
+      [36, -42],
+      [110, 0],
+      [38, -41],
+      [146, 0],
+      [37, -41],
+      [74, 0],
+      [74, -3],
+      [65, -12],
+      [72, -5],
+      [63, -20],
+      [47, -34],
+      [37, -54],
+      [34, -64],
+      [28, -77],
+      [6, -81],
+      [-21, -70],
+      [-28, -65],
+      [-26, -56],
+      [-26, -59],
+      [-32, -55],
+      [-35, -48],
+      [-33, -42],
+      [-30, -37],
+      [-28, -33],
+      [-34, -28],
+      [-28, -40],
+      [-38, -36],
+      [-52, -32],
+      [-52, -37],
+      [-110, -123],
+      [0, -41],
+      [-74, -83],
+      [-36, 0],
+      [0, -41],
+      [-38, -41],
+      [-146, 0],
+      [-38, -41],
+      [-36, 0],
+      [-55, -62],
+      [-55, -62],
+      [0, -41],
+      [-37, -41],
+      [-37, -41],
+      [-37, -42],
+      [74, -82],
+      [0, -41],
+      [37, -41],
+      [36, 0],
+      [37, 41],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [36, 42],
+      [74, 0],
+      [74, 44],
+      [67, 38],
+      [62, 41],
+      [59, 36],
+      [56, 21],
+      [49, 29],
+      [44, 38],
+      [46, 41],
+      [44, 39],
+      [43, 37],
+      [42, 42],
+      [49, 41],
+      [58, 34],
+      [64, 10],
+      [61, -11],
+      [65, -69],
+      [36, 42],
+      [0, 41],
+      [-146, 164],
+      [36, 42],
+      [0, 41],
+      [36, 41],
+      [0, 41],
+      [74, 82],
+      [0, 165],
+      [23, 16],
+      [33, 43],
+      [28, 62],
+      [22, 64],
+      [15, 67],
+      [26, 58],
+      [37, 61],
+      [0, 246],
+      [93, 206],
+      [55, 103],
+      [55, 83],
+      [128, 20],
+      [36, 42],
+      [43, 21],
+      [57, 48],
+      [69, 50],
+      [35, 18],
+      [54, 27],
+      [73, 0],
+      [37, 41],
+      [111, 0],
+      [36, -41],
+      [37, 41],
+      [73, 0],
+      [37, 41],
+      [37, 0],
+      [74, 83],
+      [73, 0],
+      [37, 41],
+      [37, 0],
+      [73, 82],
+      [37, 0],
+      [36, 41],
+      [38, 0],
+      [36, 42],
+      [36, 0],
+      [38, -42],
+      [110, 0],
+      [51, 32],
+      [51, 22],
+      [50, 30],
+      [56, 29],
+      [67, 3],
+      [70, -27],
+      [80, -31],
+      [66, -81],
+      [13, -104],
+      [-27, -92],
+      [-30, -75],
+      [-12, -75],
+      [0, -52],
+      [-9, -113],
+      [0, -52],
+      [9, -165],
+      [45, -83],
+      [0, -165],
+      [16, -53],
+      [-42, -61],
+      [-10, -81],
+      [-6, -92],
+      [-22, -85],
+      [-1, -91],
+      [26, -76],
+      [29, -62],
+      [26, -60],
+      [38, -52],
+      [34, -56],
+      [37, -49],
+      [55, -16],
+      [37, 9],
+      [27, -27],
+      [31, -82],
+      [34, -51],
+      [37, -37],
+      [43, -33],
+      [49, -48],
+      [50, -61],
+      [47, -68],
+      [54, -68],
+      [61, -65],
+      [59, -78],
+      [52, -86],
+      [52, -67],
+      [47, -51],
+      [57, -30],
+      [0, -82],
+      [110, -123],
+      [0, -42],
+      [37, -41],
+      [0, -41],
+      [-37, -41],
+      [0, -83],
+      [-110, -123],
+      [0, -288],
+      [-37, -41],
+      [0, -41],
+      [-37, -42],
+      [0, -41],
+      [-37, -41],
+      [0, -41],
+      [37, -41],
+      [0, -41],
+      [-37, -42],
+      [0, -41],
+      [-110, -123],
+      [-36, 0],
+      [-74, -83],
+      [-45, -118],
+      [-19, -20],
+      [-55, -52],
+      [-9, -31],
+      [-28, -21],
+      [-9, -20],
+      [83, -73],
+      [91, 114],
+      [56, 83],
+      [137, 154],
+      [64, 73],
+      [82, 82],
+      [73, 62],
+      [83, 62],
+      [45, 62],
+      [279, 250],
+      [83, 41],
+      [63, 62],
+      [83, 41],
+      [100, 52],
+      [56, 21],
+      [111, 0],
+      [36, 41],
+      [37, 0],
+      [73, 82],
+      [37, 0],
+      [37, 41],
+      [221, 0],
+      [36, -41],
+      [74, 0],
+      [36, -41],
+      [110, 0],
+      [38, -41],
+      [80, -13],
+      [76, -49],
+      [54, -82],
+      [25, -76],
+      [25, -64],
+      [26, -60],
+      [6, -65],
+      [1, -61],
+      [5, -54],
+      [20, -42],
+      [11, -47],
+      [3, -48],
+      [31, -132],
+      [27, -93],
+      [46, -113],
+      [36, -42],
+      [37, -82],
+      [28, -68],
+      [36, -68],
+      [56, -57],
+      [65, -44],
+      [79, -21],
+      [77, -21],
+      [54, -26],
+      [28, -51],
+      [35, -58],
+      [44, -62],
+      [60, -52],
+      [66, -45],
+      [65, -42],
+      [61, -46],
+      [64, -39],
+      [73, -33],
+      [69, -43],
+      [55, -57],
+      [48, -58],
+      [46, -46],
+      [44, -36],
+      [54, -22],
+      [64, -19],
+      [68, -12],
+      [63, -28],
+      [60, -32],
+      [44, -52],
+      [37, -64],
+      [57, -26],
+      [60, -31],
+      [72, -13],
+      [69, -27],
+      [72, -7],
+      [71, 0],
+      [68, 0],
+      [66, 0],
+      [70, 0],
+      [75, -3],
+      [73, -16],
+      [65, -34],
+      [70, -24],
+      [77, -12],
+      [77, -30],
+      [80, -21],
+      [74, -20],
+      [71, -5],
+      [67, 0],
+      [61, 0],
+      [58, 0],
+      [56, 0],
+      [52, 0],
+      [51, 4],
+      [50, 18],
+      [54, 16],
+      [60, 3],
+      [69, 4],
+      [72, 15],
+      [74, 22],
+      [74, 0],
+      [99, -12],
+      [164, -21],
+      [129, -21],
+      [-55, 124],
+      [-146, 0],
+      [-74, 62],
+      [29, 33],
+      [0, 41],
+      [-73, 83],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [36, 41],
+      [0, 83],
+      [45, 49],
+      [66, 74],
+      [70, -89],
+      [-10, -82],
+      [127, -41],
+      [184, 41],
+      [84, 61],
+      [128, 124],
+      [79, 151],
+      [43, 47],
+      [55, 34],
+      [40, 30],
+      [19, 38],
+      [19, 33],
+      [13, 39],
+      [26, 41],
+      [23, 45],
+      [23, 42],
+      [29, 33],
+      [29, 37],
+      [25, 49],
+      [29, 57],
+      [38, 59],
+      [39, 63],
+      [45, 51],
+      [45, 44],
+      [45, 38],
+      [57, 12],
+      [91, -64],
+      [102, -12],
+      [101, 35],
+      [46, 36],
+      [46, 36],
+      [58, -8],
+      [59, -30],
+      [66, -19],
+      [75, 8],
+      [76, -8],
+      [67, 12],
+      [68, 4],
+      [68, -3],
+      [71, -12],
+      [80, -2],
+      [85, -24],
+      [147, 0],
+      [37, -41],
+      [36, 0],
+      [37, 41],
+      [74, 0],
+      [36, 41],
+      [37, -41],
+      [73, 0],
+      [38, -41],
+      [110, 0],
+      [36, -41],
+      [111, 0],
+      [37, -42],
+      [36, 0],
+      [37, -41],
+      [110, 0],
+      [37, -41],
+      [37, 0],
+      [36, -41],
+      [79, -5],
+      [72, -21],
+      [71, -27],
+      [72, -29],
+      [37, -41],
+      [221, 0],
+      [16, 17],
+      [21, 24],
+      [36, -1],
+      [110, 124],
+      [111, 0],
+      [37, -41],
+      [36, -41],
+      [10, -114],
+      [-10, -248],
+      [10, -123],
+      [101, -186],
+      [2, -65],
+      [13, -62],
+      [21, -57],
+      [23, -53],
+      [18, -50],
+      [22, -42],
+      [10, -46],
+      [9, -47],
+      [20, -40],
+      [11, -49],
+      [17, -45],
+      [29, -38],
+      [15, -59],
+      [11, -57],
+      [16, -50],
+      [31, -40],
+      [19, -52],
+      [18, -52],
+      [23, -44],
+      [19, -46],
+      [18, -52],
+      [11, -58],
+      [23, -52],
+      [10, -56],
+      [21, -44],
+      [15, -49],
+      [30, -40],
+      [24, -47],
+      [20, -52],
+      [29, -45],
+      [28, -51],
+      [21, -61],
+      [28, -33],
+      [110, -124],
+      [36, 0],
+      [38, -41],
+      [73, 0],
+      [73, -83],
+      [0, -21],
+      [0, -20],
+      [-110, -124],
+      [-36, 1],
+      [-74, -83],
+      [0, -41],
+      [-37, -41],
+      [37, -41],
+      [0, -42],
+      [36, -41],
+      [0, -41],
+      [38, -41],
+      [0, -123],
+      [-38, -42],
+      [0, -205],
+      [-36, -42],
+      [0, -41],
+      [-37, -41],
+      [0, -165],
+      [-184, -206],
+      [0, -41],
+      [-36, -41],
+      [-10, -51],
+      [-23, -51],
+      [-18, -59],
+      [-12, -64],
+      [-10, -71],
+      [-9, -92],
+      [-33, -84],
+      [-36, -67],
+      [-35, -49],
+      [-32, -43],
+      [-25, -41],
+      [-17, -43],
+      [-18, -42],
+      [-13, -50],
+      [-14, -60],
+      [-14, -71],
+      [-14, -76],
+      [-19, -61],
+      [-18, -56],
+      [-12, -60],
+      [-16, -51],
+      [-34, -38],
+      [-12, -44],
+      [-5, -58],
+      [-28, -71],
+      [-20, -82],
+      [-128, -29],
+      [-37, -49],
+      [-46, -155],
+      [-92, -185],
+      [-73, -217],
+      [-121, -300],
+      [-23, -79],
+      [-65, -203],
+      [-72, -145],
+      [36, -103],
+      [-119, -165],
+      [-27, -206],
+      [-19, -124],
+      [-64, -145],
+      [-119, -289],
+      [-82, -279],
+      [-184, -495],
+      [-132, -339],
+      [18, -52],
+      [92, -10],
+      [27, -52],
+      [138, -62],
+      [9, -92],
+      [64, -42],
+      [91, 0],
+      [65, -41],
+      [73, 0],
+      [147, -165],
+      [0, -41],
+      [-37, -41],
+      [0, -41],
+      [-183, -206],
+      [0, -41],
+      [36, -41],
+      [0, -42],
+      [74, 0],
+      [184, -205],
+      [147, 0],
+      [36, -42],
+      [184, 0],
+      [74, 124],
+      [36, 41],
+      [37, 0],
+      [37, -41],
+      [37, 0],
+      [36, -41],
+      [74, 0],
+      [37, -41],
+      [37, 0],
+      [110, 123],
+      [74, 0],
+      [36, 41],
+      [37, 0],
+      [37, -41],
+      [36, 0],
+      [37, 41],
+      [74, 0],
+      [36, -41],
+      [148, 0],
+      [17, 20],
+      [19, 21],
+      [110, 0],
+      [74, 83],
+      [110, 0],
+      [37, -42],
+      [220, 0],
+      [38, 42],
+      [110, 0],
+      [146, 164],
+      [148, 0],
+      [36, -41],
+      [37, 0],
+      [37, 41],
+      [111, 0],
+      [36, 41],
+      [36, 0],
+      [150, 31],
+      [366, 0],
+      [220, 7],
+      [111, 4],
+      [183, 0],
+      [37, 41],
+      [199, -24],
+      [210, 0],
+      [28, 13],
+      [114, 52],
+      [367, 0],
+      [37, -41],
+      [37, -41],
+      [0, -42],
+      [37, -41],
+      [0, -82],
+      [37, -41],
+      [0, -206],
+      [-74, -82],
+      [0, -42],
+      [184, -205],
+      [37, 0],
+      [74, -83],
+      [0, -123],
+      [-37, -42],
+      [0, -82],
+      [-74, -82],
+      [-37, 0],
+      [-37, -41],
+      [0, -42],
+      [-36, -41],
+      [-37, 0],
+      [0, -41],
+      [-37, -41],
+      [0, -82],
+      [37, -41],
+      [0, -206],
+      [37, -42],
+      [-37, -41],
+      [0, -41],
+      [73, -82],
+      [0, -41],
+      [-36, -42],
+      [0, -82],
+      [36, -41],
+      [0, -82],
+      [-36, -41],
+      [-148, 0],
+      [-72, 82],
+      [0, 288],
+      [-74, 82],
+      [0, 41],
+      [-331, 371],
+      [-37, 0],
+      [-73, 82],
+      [-38, 0],
+      [-72, 83],
+      [183, 205],
+      [0, 83],
+      [-111, 123],
+      [-36, 0],
+      [-36, 42],
+      [-38, 0],
+      [-73, -83],
+      [0, -41],
+      [-37, -41],
+      [-36, 0],
+      [-37, 41],
+      [-37, 0],
+      [-73, 82],
+      [-74, 0],
+      [-36, -41],
+      [-38, 0],
+      [-73, -82],
+      [0, -247],
+      [37, -41],
+      [0, -42],
+      [36, -41],
+      [0, -41],
+      [38, -41],
+      [0, -82],
+      [36, -206],
+      [0, -124],
+      [37, -41],
+      [37, 0],
+      [0, -41],
+      [36, -41],
+      [74, 0],
+      [37, -41],
+      [184, 0],
+      [72, -83],
+      [0, -41],
+      [-36, -41],
+      [0, -82],
+      [-110, -124],
+      [-37, 0],
+      [-37, 41],
+      [-36, 0],
+      [-37, 42],
+      [-37, 0],
+      [-37, 41],
+      [-36, 0],
+      [-37, 41],
+      [-37, 0],
+      [-36, 41],
+      [-38, 0],
+      [-110, 123],
+      [0, 83],
+      [-36, 41],
+      [0, 41],
+      [-38, 41],
+      [0, 83],
+      [38, 41],
+      [0, 123],
+      [-74, 83],
+      [-37, -41],
+      [-73, 0],
+      [-37, 41],
+      [-110, 0],
+      [-37, 41],
+      [-698, 0],
+      [-38, 41],
+      [-294, 0],
+      [-36, -41],
+      [-110, 0],
+      [-37, -41],
+      [-37, 0],
+      [-37, -41],
+      [-36, 0],
+      [-74, -83],
+      [-147, -165],
+      [-37, 0],
+      [-74, -82],
+      [-36, -41],
+      [-37, 0],
+      [-37, -41],
+      [-36, 0],
+      [-37, -41],
+      [-37, 0],
+      [-37, -42],
+      [-73, 0],
+      [-73, -82],
+      [-38, -41],
+      [-73, 0],
+      [-37, -41],
+      [-73, 0],
+      [-37, -41],
+      [-184, 0],
+      [-37, 41],
+      [0, 82],
+      [-36, 0],
+      [-37, 41],
+      [-73, -82],
+      [-38, 0],
+      [-36, 41],
+      [-36, 0],
+      [-38, 41],
+      [-36, 0],
+      [-37, 41],
+      [-37, 0],
+      [-36, 42],
+      [-37, 0],
+      [-37, 41],
+      [-37, 0],
+      [-37, 41],
+      [-73, 0],
+      [-37, -41],
+      [-73, 82],
+      [-38, 0],
+      [-36, 41],
+      [-36, 0],
+      [-38, 41],
+      [-73, 0],
+      [-73, 83],
+      [-147, 0],
+      [-37, 41],
+      [-37, -41],
+      [-74, 0],
+      [-110, -124],
+      [0, -41],
+      [-147, -165],
+      [-110, 124],
+      [-37, 0],
+      [-37, 41],
+      [-110, 0],
+      [-147, 165],
+      [37, 41],
+      [0, 82],
+      [-37, 42],
+      [0, 41],
+      [-37, 41],
+      [0, 41],
+      [-74, 82],
+      [-36, 0],
+      [-37, 41],
+      [0, 42],
+      [-75, -39],
+      [-70, -3],
+      [-74, 8],
+      [-75, 26],
+      [-75, 0],
+      [-72, -30],
+      [-73, -23],
+      [-74, -26],
+      [-67, -36],
+      [-66, -41],
+      [-53, -57],
+      [-33, 9],
+      [-34, 20],
+      [-34, 29],
+      [-30, 29],
+      [-34, 12],
+      [-30, 15],
+      [-27, 20],
+      [-38, 9],
+      [-46, 20],
+      [-54, 3],
+      [-60, -2],
+      [-59, 12],
+      [-58, 3],
+      [-32, -4],
+      [-22, -3],
+      [-51, -26],
+      [-50, -18],
+      [-52, -22],
+      [-56, -19],
+      [-58, -24],
+      [-67, -6],
+      [-70, -2],
+      [-74, -9],
+      [-71, -24],
+      [-72, -9],
+      [-66, -13],
+      [-58, -21],
+      [-61, -13],
+      [-57, -24],
+      [-59, -15],
+      [-52, -18],
+      [-48, -16],
+      [-44, -36],
+      [-56, -36],
+      [-61, -42],
+      [-74, -37],
+      [-90, 21],
+      [-75, 34],
+      [-63, 11],
+      [-20, -2],
+      [-37, -3],
+      [-51, -24],
+      [-56, -17],
+      [-56, -30],
+      [-64, -20],
+      [-67, -30],
+      [-69, -38],
+      [-76, -41],
+      [-80, -43],
+      [-76, -54],
+      [-65, -69],
+      [-70, -54],
+      [-76, 20],
+      [-81, 28],
+      [-85, 2],
+      [-82, -23],
+      [-84, -18],
+      [-75, -36],
+      [-73, -31],
+      [-80, 4],
+      [-76, 14],
+      [-64, -21],
+      [-66, -7],
+      [-66, 0],
+      [-68, 0],
+      [-71, -3],
+      [-70, -13],
+      [-61, -28],
+      [-54, -34],
+      [-54, -24],
+      [-53, -27],
+      [-48, -34],
+      [-55, -30],
+      [-61, -24],
+      [-59, -26],
+      [-60, -13],
+      [-51, -25],
+      [-55, -14],
+      [-46, -34],
+      [-44, -42],
+      [-49, -50],
+      [-55, -56],
+      [-77, -39],
+      [-74, 15],
+      [-71, 6],
+      [-66, 1],
+      [-64, -6],
+      [-44, -35],
+      [-74, 0],
+      [-36, -42],
+      [-74, 0],
+      [-36, -41],
+      [-38, 1],
+      [-36, -42],
+      [-36, 0],
+      [-38, -41],
+      [-36, 0],
+      [-37, -41],
+      [-37, 0],
+      [-36, -41],
+      [-37, 0],
+      [-37, -42],
+      [-441, 0],
+      [-37, -41],
+      [-37, 0],
+      [-36, -41],
+      [-37, 0],
+      [-37, -41],
+      [-45, -9],
+      [-66, -27],
+      [-75, -14],
+      [-77, -26],
+      [-81, -6],
+      [-83, -1],
+      [-83, 0],
+      [-83, -5],
+      [-81, -23],
+      [-82, -13],
+      [-80, -13],
+      [-73, -23],
+      [-70, -12],
+      [-56, -29],
+      [-61, -19],
+      [-61, -29],
+      [-61, -32],
+      [-71, -15],
+      [-65, -33],
+      [-67, -31],
+      [-80, -10],
+      [-83, -9],
+      [-68, -33],
+      [-60, -40],
+      [-51, -38],
+      [-53, -22],
+      [-48, -20],
+      [-54, -14],
+      [-54, -27],
+      [-64, -20],
+      [-68, -28],
+      [-67, -38],
+      [-72, -41],
+      [-75, -41],
+      [-75, -40],
+      [-80, -29],
+      [-86, -15],
+      [-85, -17],
+      [-85, -18],
+      [-88, -4],
+      [-87, -8],
+      [-78, -34],
+      [-74, -41],
+      [-67, -47],
+      [-55, -61],
+      [-71, -41],
+      [-79, -14],
+      [-74, -2],
+      [-67, 0],
+      [-61, -6],
+      [-57, -26],
+      [-61, -16],
+      [-56, -29],
+      [-60, -22],
+      [-57, -27],
+      [-50, -38],
+      [-51, -39],
+      [-57, -30],
+      [-63, -19],
+      [-56, -33],
+      [-57, -26],
+      [-59, -25],
+      [-56, -34],
+      [-65, -34],
+      [-82, -17],
+      [-85, -25],
+      [-88, -8],
+      [-87, -15],
+      [-76, -39],
+      [-68, -48],
+      [-61, -44],
+      [-51, -52],
+      [-47, -48],
+      [-42, -48],
+      [-32, -53],
+      [-35, -47],
+      [-51, -27],
+      [-55, -24],
+      [-66, -12],
+      [-63, -28],
+      [-62, -32],
+      [-56, -39],
+      [-54, -41],
+      [-52, -44],
+      [-46, -50],
+      [-49, -47],
+      [-54, -45],
+      [-56, -46],
+      [-52, -54],
+      [-57, -49],
+      [-70, -31],
+      [-67, -33],
+      [-56, -40],
+      [-49, -47],
+      [-49, -43],
+      [-51, -39],
+      [-45, -45],
+      [-45, -43],
+      [-55, -30],
+      [-55, -34],
+      [-57, -33],
+      [-68, -19],
+      [-67, -31],
+      [-65, -39],
+      [-67, -44],
+      [-61, -51],
+      [-55, -60],
+      [-54, -55],
+      [-50, -50],
+      [-48, -41],
+      [-62, -29],
+      [-36, -41],
+      [-74, 0],
+      [-36, 41],
+      [-38, 0],
+      [-367, 412],
+      [0, 41],
+      [-110, 124],
+      [0, 41],
+      [-148, 165],
+      [0, 41],
+      [-36, 41],
+      [0, 41],
+      [-74, 82],
+      [0, 41],
+      [-36, 42],
+      [0, 41],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 83],
+      [-37, 41],
+      [0, 82],
+      [-36, 41],
+      [0, 42],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 42],
+      [-37, 41],
+      [0, 164],
+      [-36, 41],
+      [0, 42],
+      [12, 95],
+      [-2, 115],
+      [55, 96],
+      [82, -7],
+      [80, 4],
+      [60, -3],
+      [80, 10],
+      [84, 21],
+      [100, 39],
+      [36, 42],
+      [38, 0],
+      [36, 41],
+      [37, 0],
+      [37, 41],
+      [73, 82],
+      [0, 124],
+      [-36, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 247],
+      [-110, 124],
+      [-38, 0],
+      [-36, 41],
+      [-36, 0],
+      [-38, 41],
+      [-36, -41],
+      [-37, 0],
+      [-110, -124],
+      [0, -82],
+      [-37, -41],
+      [0, -83],
+      [-37, -41],
+      [0, -41],
+      [-36, 0],
+      [-37, -41],
+      [-37, 0],
+      [-37, -41],
+      [-73, 0],
+      [-74, -83],
+      [-36, 0],
+      [-56, -61],
+      [-18, -21],
+      [0, -41],
+      [-37, -41],
+      [0, -82],
+      [-37, -42],
+      [0, -123],
+      [-110, -124],
+      [0, -41],
+      [37, -41],
+      [0, -165],
+      [73, -82],
+      [0, -82],
+      [37, -42],
+      [0, -123],
+      [-37, -41],
+      [0, -124],
+      [37, -41],
+      [0, -206],
+      [-73, -82],
+      [-74, 0],
+      [-37, -41],
+      [-73, 0],
+      [-37, 41],
+      [-77, -318],
+      [83, -93],
+      [-27, -31],
+      [0, -21],
+      [45, -10],
+      [47, -52],
+      [39, -52],
+      [37, -41],
+      [74, 0],
+      [73, -82],
+      [37, 0],
+      [36, -41],
+      [74, 0],
+      [37, -41],
+      [73, 0],
+      [37, -42],
+      [37, 0],
+      [37, -41],
+      [37, 0],
+      [477, -535],
+      [0, -82],
+      [37, -42],
+      [0, -205],
+      [-37, -41],
+      [0, -42],
+      [-146, -164],
+      [-38, 0],
+      [-36, -41],
+      [-37, 0],
+      [-110, -124],
+      [-37, 0],
+      [-257, -288],
+      [-37, 0],
+      [-73, -83],
+      [-38, 0],
+      [-37, -41],
+      [-49, -41],
+      [-49, -38],
+      [-53, -30],
+      [-58, -24],
+      [-52, -33],
+      [-47, -40],
+      [-44, -42],
+      [-45, -41],
+      [-47, -43],
+      [-54, -46],
+      [-56, -56],
+      [-64, -34],
+      [-63, 42],
+      [-55, 66],
+      [-59, 55],
+      [-69, 16],
+      [-66, 10],
+      [-57, 29],
+      [-61, 26],
+      [-58, 29],
+      [-42, 48],
+      [-47, 31],
+      [-40, 37],
+      [-36, 40],
+      [-40, 43],
+      [-42, 43],
+      [-41, 42],
+      [-42, 39],
+      [-33, 37],
+      [-37, 0],
+      [-37, 41],
+      [-37, -41],
+      [0, -41],
+      [-74, -83],
+      [-23, -48],
+      [11, -42],
+      [12, -59],
+      [12, -67],
+      [22, -62],
+      [4, -63],
+      [0, -64],
+      [0, -70],
+      [0, -81],
+      [0, -495],
+      [0, -98],
+      [0, -85],
+      [-1, -64],
+      [1, -48],
+      [6, -50],
+      [23, -63],
+      [-6, -89],
+      [-40, -93],
+      [-59, -88],
+      [-74, -66],
+      [-90, 10],
+      [-77, 55],
+      [-69, 65],
+      [-54, 80],
+      [-39, 86],
+      [-36, 59],
+      [0, 41],
+      [-74, 82],
+      [-73, -41],
+      [-37, -41],
+      [-74, 0],
+      [0, -124],
+      [-73, -82],
+      [37, -41],
+      [0, -42],
+      [-74, -82],
+      [-36, 0],
+      [-38, 41],
+      [0, 41],
+      [-36, 42],
+      [0, 41],
+      [-74, 82],
+      [0, 41],
+      [-47, 35],
+      [-51, 36],
+      [-44, 46],
+      [-50, 43],
+      [-57, 39],
+      [-53, 47],
+      [-52, 51],
+      [-39, 60],
+      [-44, 59],
+      [-45, 57],
+      [-56, 49],
+      [-58, 50],
+      [-63, 44],
+      [-58, 44],
+      [-53, 41],
+      [-48, 34],
+      [-53, 1],
+      [-47, -36],
+      [-38, 0],
+      [-86, -62],
+      [-134, -20],
+      [-36, 0],
+      [-37, 41],
+      [-111, 0],
+      [-37, 41],
+      [-110, 0],
+      [-36, -41],
+      [-110, 0],
+      [-38, -41],
+      [-36, 0],
+      [-37, -41],
+      [-37, 0],
+      [-18, -21],
+      [-18, -20],
+      [-74, 0],
+      [-27, -31],
+      [-83, -93],
+      [-37, 0],
+      [-74, -82],
+      [-36, 0],
+      [-38, -41],
+      [-36, 0],
+      [-36, -42],
+      [-38, 0],
+      [-146, -164],
+      [-111, 0],
+      [-36, -41],
+      [-405, 0],
+      [-37, -42],
+      [-147, 0],
+      [-36, -41],
+      [-75, 33],
+      [-80, 11],
+      [-27, 36],
+      [-30, 39],
+      [-51, 35],
+      [-77, 23],
+      [-63, 30],
+      [-44, 34],
+      [-40, 10],
+      [-32, 22],
+      [-41, 25],
+      [-46, 35],
+      [-49, 47],
+      [-46, 55],
+      [-50, 51],
+      [-60, 34],
+      [-63, 29],
+      [-54, 36],
+      [-53, 35],
+      [-48, 35],
+      [-53, 18],
+      [-45, -4],
+      [-45, -28],
+      [-38, -43],
+      [-35, -55],
+      [-42, -49],
+      [-37, -41],
+      [-36, 0],
+      [-37, -41],
+      [-37, 41],
+      [-36, 0],
+      [-38, 41],
+      [-146, 0],
+      [-111, -123],
+      [0, -83],
+      [-73, -82],
+      [-56, 0],
+      [-50, -1],
+      [-42, 1],
+      [-43, 1],
+      [-45, 8],
+      [-45, 29],
+      [-56, 30],
+      [-67, 33],
+      [-72, 48],
+      [-70, 65],
+      [-67, 76],
+      [-61, 77],
+      [-58, 69],
+      [-44, 64],
+      [-37, 58],
+      [-41, 43],
+      [-55, 27],
+      [-47, 31],
+      [-36, 41],
+      [-74, 0],
+      [-37, -41],
+      [-37, 0],
+      [-36, -42],
+      [-74, 83],
+      [-37, 0],
+      [-74, 82],
+      [-36, 0],
+      [-37, 42],
+      [-37, 0],
+      [-74, 82],
+      [-110, 0],
+      [-36, 41],
+      [-37, 0],
+      [-73, 82],
+      [-37, 0],
+      [-37, 42],
+      [-37, 0],
+      [-147, 164],
+      [-37, 0],
+      [-74, 82],
+      [-36, 0],
+      [-36, 42],
+      [-53, 28],
+      [-55, 18],
+      [-60, 36],
+      [-64, 40],
+      [-65, 39],
+      [-59, 36],
+      [-36, 41],
+      [-46, 21],
+      [-100, 2],
+      [-75, 50],
+      [-52, 51],
+      [-56, 33],
+      [-67, 31],
+      [-73, 36],
+      [-76, 33],
+      [-81, 48],
+      [-63, 80],
+      [-43, 85],
+      [-23, 49],
+      [-30, 25],
+      [-37, 0],
+      [-36, 41],
+      [-38, 0],
+      [-72, 82],
+      [-38, 0],
+      [-36, 42],
+      [-37, 0],
+      [-110, 123],
+      [-37, 0],
+      [-37, 41],
+      [-36, 0],
+      [-38, 41],
+      [-110, 0],
+      [-110, -123],
+      [0, -165],
+      [-74, -82],
+      [-73, 0],
+      [-73, -82],
+      [0, -42],
+      [-37, -41],
+      [-37, 0],
+      [-111, -123],
+      [-72, 0],
+      [0, -41],
+      [-112, -124],
+      [0, -41],
+      [-72, -82],
+      [-111, 0],
+      [-73, 82],
+      [0, 41],
+      [-74, 82],
+      [-37, 0],
+      [-36, 42],
+      [0, 82],
+      [220, 247],
+      [0, 41],
+      [37, 41],
+      [0, 165],
+      [-81, -7],
+      [-139, 42],
+      [-146, 20],
+      [-64, 42],
+      [-56, 62],
+      [-191, -11],
+      [-29, 83],
+      [-109, 10],
+      [-46, 42],
+      [-183, 0],
+      [-83, 31],
+      [-210, 113],
+      [-128, 124],
+      [0, 62],
+      [-128, 124],
+      [54, 51],
+      [92, 0],
+      [46, -51],
+      [9, -114],
+      [256, -175],
+      [101, 0],
+      [73, 62],
+      [74, 0],
+      [18, 103],
+      [184, 10],
+      [18, -31],
+      [27, 0],
+      [36, -82],
+      [-54, -11],
+      [0, -82],
+      [36, -10],
+      [9, -63],
+      [37, -61],
+      [73, -11],
+      [83, -62],
+      [118, 21],
+      [0, 41],
+      [-18, 31],
+      [18, 41],
+      [47, 0],
+      [45, -72],
+      [101, 1],
+      [45, -32],
+      [56, 0],
+      [27, -124],
+      [18, -35],
+      [110, 124],
+      [0, 41],
+      [38, 41],
+      [0, 82],
+      [36, 42],
+      [0, 123],
+      [-36, 41],
+      [0, 83],
+      [-74, 82],
+      [-36, 0],
+      [-74, 82],
+      [-37, 0],
+      [-37, 42],
+      [-36, 0],
+      [-37, 41],
+      [-37, 0],
+      [-73, 82],
+      [-37, 0],
+      [-73, 82],
+      [-38, 0],
+      [-110, 124],
+      [-110, 0],
+      [-74, 82],
+      [-36, 0],
+      [-367, 412],
+      [0, 82],
+      [-38, 41],
+      [0, 330],
+      [74, 82],
+      [36, 0],
+      [38, 41],
+      [36, 0],
+      [74, 82],
+      [0, 83],
+      [-37, 41],
+      [-41, 64],
+      [-47, 54],
+      [-51, 47],
+      [-50, 47],
+      [-51, 44],
+      [-37, 50],
+      [-45, 32],
+      [-41, 34],
+      [-42, 40],
+      [-36, 0],
+      [-37, 41],
+      [-37, 0],
+      [-73, -82],
+      [0, -41],
+      [-37, -42],
+      [0, -41],
+      [-37, -41],
+      [37, -41],
+      [0, -83],
+      [-147, -164],
+      [-110, 0],
+      [-37, -42],
+      [-331, 0],
+      [-37, -41],
+      [-74, 0],
+      [-36, 41],
+      [-36, 0],
+      [-38, 42],
+      [-36, 0],
+      [-37, 41],
+      [-73, 0],
+      [-35, 33],
+      [-61, 15],
+      [-59, 33],
+      [-63, 35],
+      [-76, 25],
+      [-74, 23],
+      [-37, 0],
+      [-36, 42],
+      [-74, 0],
+      [-37, 41],
+      [-147, 0],
+      [-73, 82],
+      [-148, 0],
+      [-36, 42],
+      [-37, 0],
+      [-37, 41],
+      [-36, 0],
+      [-38, 41],
+      [-110, 0],
+      [-46, 31],
+      [-67, 18],
+      [-56, 27],
+      [-58, 6],
+      [-57, 0],
+      [-62, 1],
+      [-66, 3],
+      [-66, -1],
+      [-65, 13],
+      [-56, 27],
+      [-46, 30],
+      [-52, 4],
+      [-66, -14],
+      [-101, -3],
+      [-105, 33],
+      [-70, 14],
+      [-63, -17],
+      [-84, -2],
+      [-80, 19],
+      [-57, 48],
+      [-49, 53],
+      [-40, 63],
+      [-27, 88],
+      [-30, 96],
+      [-19, 102],
+      [-19, 60],
+      [37, 42],
+      [-37, 41],
+      [0, 82],
+      [-220, 247],
+      [0, 83],
+      [-37, 41],
+      [0, 371],
+      [-10, 82],
+      [0, 73],
+      [28, 103],
+      [46, 72],
+      [73, 145],
+      [10, 60],
+      [0, 41],
+      [110, 123],
+      [0, 42],
+      [74, 82],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [73, 83],
+      [0, 41],
+      [147, 206],
+      [36, 41],
+      [38, 41],
+      [0, 82],
+      [36, 41],
+      [0, 83],
+      [38, 41],
+      [0, 165],
+      [27, 51],
+      [-65, 72],
+      [-74, 0],
+      [-36, 0],
+      [-36, -41],
+      [0, -41],
+      [-38, -41],
+      [0, -83],
+      [-73, -82],
+      [0, -41],
+      [-37, -41],
+      [0, -42],
+      [-36, -41],
+      [0, -82],
+      [-37, -41],
+      [0, -41],
+      [-37, -42],
+      [-37, -20],
+      [-92, -103],
+      [-18, -41],
+      [-36, -41],
+      [0, -42],
+      [-38, -41],
+      [0, -82],
+      [-36, -41],
+      [0, -41],
+      [-37, -41],
+      [-8, -10],
+      [-29, -39],
+      [-46, -73],
+      [-55, -113],
+      [-36, -73],
+      [-9, -92],
+      [-19, -93],
+      [-19, -62],
+      [0, -93],
+      [-27, -83],
+      [-27, -51],
+      [-19, -42],
+      [0, -82],
+      [-74, -82],
+      [0, -42],
+      [-36, -41],
+      [0, -41],
+      [-37, -41],
+      [0, -165],
+      [37, -41],
+      [0, -41],
+      [36, -42],
+      [37, 0],
+      [37, -41],
+      [73, 0],
+      [37, -41],
+      [26, -33],
+      [31, -55],
+      [26, -70],
+      [29, -69],
+      [29, -66],
+      [6, -72],
+      [-1, -62],
+      [-9, -49],
+      [-25, -31],
+      [-37, -23],
+      [-47, 3],
+      [-50, 33],
+      [-61, 41],
+      [-71, 41],
+      [-74, 42],
+      [-71, 40],
+      [-64, 36],
+      [-49, 38],
+      [-43, 27],
+      [-31, 32],
+      [-29, 27],
+      [-37, 6],
+      [-36, 0],
+      [-37, 41],
+      [-73, 0],
+      [-37, 41],
+      [-110, 123],
+      [0, 41],
+      [-148, 165],
+      [-72, 0],
+      [-38, -41],
+      [-36, 0],
+      [-37, -41],
+      [0, -41],
+      [73, -83],
+      [0, -41],
+      [38, -41],
+      [36, 0],
+      [367, -412],
+      [-36, -41],
+      [0, -41],
+      [-74, -82],
+      [0, -83],
+      [-110, -123],
+      [-37, 0],
+      [-36, -41],
+      [-38, 41],
+      [-36, 0],
+      [-36, 41],
+      [-74, 0],
+      [-110, 123],
+      [-38, 0],
+      [-36, 42],
+      [-295, 0],
+      [-36, 41],
+      [-36, 0],
+      [-38, 41],
+      [-36, 0],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 83],
+      [-36, 41],
+      [0, 206],
+      [36, 41],
+      [-36, 41],
+      [0, 206],
+      [-111, 123],
+      [-37, -41],
+      [-36, 1],
+      [-37, -42],
+      [-37, 0],
+      [-37, -41],
+      [0, -82],
+      [-36, -42],
+      [0, -288],
+      [36, -41],
+      [0, -82],
+      [-110, -124],
+      [-74, 0],
+      [-36, -41],
+      [-37, 0],
+      [-37, -41],
+      [-36, 0],
+      [-54, 5],
+      [-62, 22],
+      [-58, 18],
+      [-43, 29],
+      [-45, 8],
+      [-33, 0],
+      [-73, 0],
+      [-37, -41],
+      [-74, 0],
+      [-36, 41],
+      [-37, 0],
+      [-110, 124],
+      [0, 41],
+      [-37, 41],
+      [0, 41],
+      [-110, 124],
+      [-37, 0],
+      [-36, -41],
+      [-38, 0],
+      [-36, -41],
+      [36, -42],
+      [0, -206],
+      [-73, -82],
+      [0, -123],
+      [-37, -42],
+      [0, -41],
+      [-36, -41],
+      [-74, 0],
+      [-36, -41],
+      [-38, 0],
+      [-73, -82],
+      [-184, 0],
+      [-110, 123],
+      [0, 494],
+      [36, 41],
+      [0, 42],
+      [-73, 82],
+      [-111, -124],
+      [0, -41],
+      [-36, -41],
+      [0, -124],
+      [36, -41],
+      [0, -41],
+      [38, -41],
+      [0, -165],
+      [-258, 0],
+      [-36, -41],
+      [-37, 0],
+      [-49, -36],
+      [-47, -27],
+      [-56, -6],
+      [-48, 15],
+      [-33, 9],
+      [-89, -2],
+      [-81, -12],
+      [-41, 22],
+      [-34, 29],
+      [-44, 4],
+      [-45, -17],
+      [-39, -27],
+      [-48, -21],
+      [-98, -1],
+      [-93, -12],
+      [-38, 41],
+      [-220, 0],
+      [8, 25],
+      [38, 93],
+      [-38, 82],
+      [0, 93],
+      [-36, 63],
+      [0, 165],
+      [-18, 134],
+      [-74, 72],
+      [-82, 52],
+      [0, -93],
+      [37, -83],
+      [9, -124],
+      [-37, -93],
+      [55, -113],
+      [0, -165],
+      [-9, -231],
+      [-147, -165],
+      [-37, 0],
+      [-36, -22],
+      [-48, -21],
+      [-51, -22],
+      [-71, -13],
+      [-69, -1],
+      [-44, 8],
+      [-35, 16],
+      [-44, 22],
+      [-48, 42],
+      [-41, 67],
+      [-44, 66],
+      [-41, 60],
+      [-47, 49],
+      [-47, 42],
+      [-54, 28],
+      [-41, 37],
+      [-36, 40],
+      [-29, 46],
+      [-24, 59],
+      [-18, 61],
+      [-26, 48],
+      [-34, 37],
+      [-43, 28],
+      [-47, 35],
+      [-40, 63],
+      [-41, 83],
+      [-24, 85],
+      [26, 65],
+      [21, 53],
+      [-5, 55],
+      [-11, 61],
+      [-29, 42],
+      [-24, 38],
+      [-31, 17],
+      [-40, 2],
+      [-40, -3],
+      [-30, 3],
+      [0, -41],
+      [-74, -83],
+      [0, -41],
+      [-36, -41],
+      [0, -124],
+      [-38, -40],
+      [0, -42],
+      [0, -69],
+      [-28, -39],
+      [-8, -38],
+      [-1, -39],
+      [4, -40],
+      [15, -39],
+      [27, -40],
+      [11, -40],
+      [14, -38],
+      [38, -39],
+      [72, -41],
+      [78, -44],
+      [58, -76],
+      [20, -92],
+      [28, -76],
+      [40, -73],
+      [0, -41],
+      [37, -42],
+      [37, 0],
+      [37, -41],
+      [36, 0],
+      [184, -206],
+      [0, -41],
+      [36, -41],
+      [0, -247],
+      [-110, -123],
+      [-110, 0],
+      [-36, 41],
+      [-258, 0],
+      [-37, -41],
+      [-36, 0],
+      [-38, -41],
+      [0, -42],
+      [-36, -41],
+      [0, -41],
+      [-110, -124],
+      [-57, -24],
+      [-50, -42],
+      [-37, -46],
+      [-25, -51],
+      [-24, -51],
+      [-31, -51],
+      [-34, -64],
+      [-36, 0],
+      [-37, -41],
+      [-37, 0],
+      [-73, 82],
+      [-37, 0],
+      [-111, 124],
+      [-36, 0],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 41],
+      [-73, 83],
+      [0, 41],
+      [-110, 124],
+      [-37, -42],
+      [-37, 0],
+      [-37, -41],
+      [-221, 0],
+      [-110, 124],
+      [0, 41],
+      [38, 41],
+      [-89, 99],
+      [-22, 25],
+      [-74, -83],
+      [-73, 0],
+      [-73, 83],
+      [0, 41],
+      [36, 41],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [73, 83],
+      [-73, 82],
+      [-73, 0],
+      [-111, -124],
+      [-37, 0],
+      [-36, -41],
+      [-38, 41],
+      [-36, 0],
+      [-147, 165],
+      [0, 41],
+      [-37, 41],
+      [0, 42],
+      [-73, 82],
+      [-37, 0],
+      [-331, 371],
+      [0, 41],
+      [-294, 329],
+      [-37, 0],
+      [-368, 412],
+      [0, 41],
+      [-146, 165],
+      [-37, 0],
+      [0, 123],
+      [37, 42],
+      [0, 40],
+      [110, 124],
+      [36, 0],
+      [38, 41],
+      [220, 0],
+      [37, 42],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [36, 41],
+      [-36, 41],
+      [0, 83],
+      [-148, 164],
+      [-36, 0],
+      [-21, -23],
+      [-17, -18],
+      [-36, 0],
+      [-36, 41],
+      [-148, 0],
+      [2, -308],
+      [0, -77],
+      [-45, -83],
+      [-146, -186],
+      [-47, -423],
+      [-531, -155],
+      [-62, 213],
+      [-41, 142],
+      [-122, -69],
+      [-36, -42],
+      [0, -41],
+      [-38, -41],
+      [0, -41],
+      [-36, -42],
+      [0, -205],
+      [-37, -41],
+      [-28, -34],
+      [-35, -38],
+      [-13, -48],
+      [-17, -46],
+      [-15, -47],
+      [-11, -53],
+      [-21, -56],
+      [-6, -67],
+      [3, -77],
+      [7, -78],
+      [-46, -74],
+      [-51, -62],
+      [-44, -51],
+      [-27, -55],
+      [6, -54],
+      [31, -43],
+      [49, -30],
+      [60, -34],
+      [47, -50],
+      [26, -51],
+      [48, -29],
+      [53, -30],
+      [54, -29],
+      [58, -33],
+      [65, -33],
+      [74, -27],
+      [86, -12],
+      [65, -17],
+      [47, -31],
+      [40, -59],
+      [52, -68],
+      [58, -55],
+      [67, -49],
+      [75, -31],
+      [68, -29],
+      [60, -26],
+      [56, -15],
+      [85, -29],
+      [55, -42],
+      [137, -41],
+      [110, -52],
+      [65, -10],
+      [37, -22],
+      [54, -16],
+      [64, -62],
+      [55, -80],
+      [31, -68],
+      [-8, -57],
+      [-10, -68],
+      [-19, -74],
+      [-21, -64],
+      [-24, -62],
+      [-15, -63],
+      [-29, -58],
+      [-31, -55],
+      [-41, -40],
+      [-57, -11],
+      [-58, -5],
+      [-64, -8],
+      [-94, 25],
+      [-142, -8],
+      [-101, 21],
+      [-109, 0],
+      [-73, -11],
+      [-221, 0],
+      [-45, 31],
+      [-247, 0],
+      [-138, 11],
+      [-81, 10],
+      [-101, 10],
+      [-156, 11],
+      [-175, 10],
+      [-36, 31],
+      [-193, 0],
+      [-219, 31],
+      [-57, 6],
+      [-58, 1],
+      [-58, 0],
+      [-60, 0],
+      [-70, 0],
+      [-146, 0],
+      [-37, -42],
+      [-74, 0],
+      [-36, 42],
+      [-111, 0],
+      [-37, 41],
+      [-73, 0],
+      [-81, 0],
+      [-92, 6],
+      [-69, 33],
+      [-37, 60],
+      [-52, 65],
+      [-331, 371],
+      [-36, 0],
+      [-148, 165],
+      [0, 41],
+      [-36, 41],
+      [0, 123],
+      [36, 42],
+      [0, 164],
+      [-36, 41],
+      [0, 83],
+      [36, 134],
+      [258, 278],
+      [12, 43],
+      [28, 66],
+      [35, 67],
+      [35, 69],
+      [36, 71],
+      [35, 72],
+      [28, 74],
+      [17, 73],
+      [25, 62],
+      [7, 62],
+      [0, 60],
+      [-1, 64],
+      [0, 71],
+      [4, 83],
+      [20, 85],
+      [34, 79],
+      [42, 69],
+      [36, 75],
+      [27, 83],
+      [33, 70],
+      [23, 66],
+      [20, 75],
+      [21, 70],
+      [20, 72],
+      [28, 67],
+      [21, 70],
+      [18, 73],
+      [23, 73],
+      [33, 66],
+      [35, 65],
+      [39, 61],
+      [35, 65],
+      [27, 75],
+      [18, 88],
+      [31, 78],
+      [30, 75],
+      [13, 83],
+      [28, 76],
+      [20, 81],
+      [23, 79],
+      [33, 75],
+      [37, 76],
+      [35, 80],
+      [31, 83],
+      [26, 84],
+      [23, 79],
+      [32, 64],
+      [30, 58],
+      [15, 63],
+      [21, 50],
+      [-3, 61],
+      [-26, 83],
+      [-16, 88],
+      [39, 91],
+      [53, 67],
+      [36, 70],
+      [36, 63],
+      [36, 63],
+      [36, 63],
+      [33, 66],
+      [20, 74],
+      [24, 69],
+      [32, 62],
+      [25, 65],
+      [24, 70],
+      [24, 76],
+      [19, 85],
+      [15, 101],
+      [32, 90],
+      [14, 79],
+      [23, 68],
+      [8, 70],
+      [2, 71],
+      [5, 71],
+      [26, 67],
+      [14, 78],
+      [26, 77],
+      [25, 81],
+      [30, 78],
+      [35, 67],
+      [27, 65],
+      [30, 55],
+      [26, 55],
+      [16, 64],
+      [22, 63],
+      [11, 91],
+      [0, 165],
+      [-184, 205],
+      [0, 124],
+      [74, 82],
+      [0, 41],
+      [37, 42],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [36, 41],
+      [0, 41],
+      [37, 42],
+      [-37, 41],
+      [0, 288],
+      [-36, 41],
+      [0, 41],
+      [-37, 42],
+      [0, 82],
+      [-37, 41],
+      [0, 41],
+      [-36, 41],
+      [0, 42],
+      [73, 82],
+      [258, 0],
+      [18, 21],
+      [18, 20],
+      [74, 0],
+      [36, 41],
+      [38, 0],
+      [36, 41],
+      [36, 0],
+      [111, -123],
+      [0, -41],
+      [37, -41],
+      [-37, -42],
+      [0, -123],
+      [147, -165],
+      [73, 0],
+      [63, -56],
+      [64, -58],
+      [64, -49],
+      [63, -43],
+      [57, -40],
+      [56, -38],
+      [55, -30],
+      [39, -40]
+    ],
+    [
+      [32862, 40181],
+      [-73, 0],
+      [0, 42],
+      [-110, 123],
+      [0, 82],
+      [-110, 124],
+      [-74, 41],
+      [0, 124],
+      [-330, 370],
+      [36, 41],
+      [0, 330],
+      [-110, 123],
+      [0, 124],
+      [-37, 41],
+      [0, 41],
+      [-258, 288],
+      [184, 0],
+      [147, -82],
+      [0, -82],
+      [405, -453],
+      [0, -206],
+      [404, -453],
+      [-36, -41],
+      [73, -82],
+      [0, -42],
+      [37, -41],
+      [0, -329],
+      [-148, -41],
+      [0, -42]
+    ],
+    [
+      [9092, 39653],
+      [-38, -31],
+      [-45, 21],
+      [-46, 10],
+      [-28, 51],
+      [0, 52],
+      [38, 21],
+      [66, 13],
+      [44, 49],
+      [36, 0],
+      [36, -31],
+      [9, -52],
+      [-72, -103]
+    ],
+    [
+      [58489, 39373],
+      [-10, -37],
+      [76, 6],
+      [0, -47],
+      [36, 6],
+      [-2, -43],
+      [64, 0],
+      [66, -5],
+      [93, 5],
+      [0, -77],
+      [97, -3],
+      [15, -9],
+      [217, 0],
+      [266, 0],
+      [458, -92],
+      [360, -8],
+      [233, -202],
+      [382, -340],
+      [420, -361],
+      [154, -172],
+      [379, -505],
+      [192, -611],
+      [-138, -6],
+      [-101, -62],
+      [27, -82],
+      [34, -54],
+      [-16, -12],
+      [-6, -40],
+      [41, 3],
+      [-2, -44],
+      [37, 0],
+      [2, -37],
+      [36, -6],
+      [2, -76],
+      [39, -5],
+      [-2, -41],
+      [-34, 2],
+      [-3, -45],
+      [33, 2],
+      [4, -85],
+      [106, 4],
+      [6, -123],
+      [32, 0],
+      [0, -44],
+      [-34, -2],
+      [0, -33],
+      [-38, -4],
+      [-3, -85],
+      [-31, 2],
+      [-5, -80],
+      [-37, 0],
+      [4, -40],
+      [-108, -2],
+      [-2, -84],
+      [-39, 2],
+      [-2, -44],
+      [-69, 1],
+      [-1, -41],
+      [-1, -40],
+      [38, 0],
+      [2, 43],
+      [31, -2],
+      [7, -34],
+      [30, -7],
+      [0, -45],
+      [-33, 2],
+      [0, -39],
+      [-40, -2],
+      [-2, -79],
+      [44, 0],
+      [-2, -126],
+      [-79, -2],
+      [6, -202],
+      [35, 2],
+      [-2, -41],
+      [-35, -2],
+      [0, -65],
+      [-2, -16],
+      [-35, -4],
+      [-4, -122],
+      [43, 0],
+      [0, -83],
+      [-79, -2],
+      [0, -37],
+      [-33, -6],
+      [0, -161],
+      [37, -2],
+      [0, -79],
+      [-37, -2],
+      [-4, -37],
+      [-35, 0],
+      [0, -41],
+      [0, -70],
+      [4, -54],
+      [31, 2],
+      [2, -45],
+      [-75, 0],
+      [2, -37],
+      [-37, -2],
+      [-2, -166],
+      [39, 0],
+      [0, -41],
+      [-39, -2],
+      [0, -37],
+      [-34, -2],
+      [0, -40],
+      [-33, -2],
+      [-4, -84],
+      [33, 4],
+      [2, -134],
+      [-33, 8],
+      [-2, -80],
+      [-39, -4],
+      [4, -196],
+      [-33, -7],
+      [-7, -51],
+      [-34, 10],
+      [1, -47],
+      [-35, 0],
+      [-4, -37],
+      [-38, -3],
+      [4, -41],
+      [-112, 6],
+      [-5, -41],
+      [-70, 0],
+      [2, -39],
+      [-38, 0],
+      [0, 37],
+      [-38, -2],
+      [0, -35],
+      [-110, -2],
+      [0, -85],
+      [36, 0],
+      [2, -41],
+      [-110, 0],
+      [2, 31],
+      [-2, 12],
+      [-70, -6],
+      [0, 41],
+      [-40, 6],
+      [2, 38],
+      [-147, -2],
+      [-4, 43],
+      [-34, 2],
+      [0, 41],
+      [-182, 0],
+      [-2, 42],
+      [-149, 0],
+      [1, -40],
+      [-150, -2],
+      [3, -43],
+      [-31, 0],
+      [-4, -16],
+      [-5, -21],
+      [-31, -4],
+      [-7, -40],
+      [-68, -4],
+      [-4, -74],
+      [-32, 2],
+      [-4, 35],
+      [-68, 0],
+      [-4, -41],
+      [-73, -2],
+      [0, -40],
+      [-73, 2],
+      [-1, -45],
+      [-32, 2],
+      [-6, 41],
+      [-32, 2],
+      [0, -41],
+      [-39, -4],
+      [-4, -37],
+      [-76, -6],
+      [9, -38],
+      [-39, 0],
+      [-47, 3],
+      [-61, 0],
+      [-6, -44],
+      [-71, -2],
+      [2, -35],
+      [-187, -6],
+      [2, -37],
+      [-74, -5],
+      [-1, -39],
+      [-38, 0],
+      [3, -39],
+      [-36, -2],
+      [0, 44],
+      [-37, 0],
+      [-2, -48],
+      [-76, 4],
+      [0, -82],
+      [-103, 0],
+      [-1, -40],
+      [-111, -2],
+      [2, -43],
+      [-77, 4],
+      [0, -43],
+      [-82, 0],
+      [11, -37],
+      [-81, 0],
+      [4, -83],
+      [-68, -2],
+      [-7, -37],
+      [-34, -11],
+      [0, -84],
+      [-34, 4],
+      [-2, -82],
+      [-36, 2],
+      [-2, -38],
+      [-72, -4],
+      [-1, -115],
+      [-36, -4],
+      [-2, -79],
+      [38, -6],
+      [1, -39],
+      [-150, 0],
+      [0, -14],
+      [1, -28],
+      [-74, 2],
+      [4, 42],
+      [-39, 0],
+      [-1, -28],
+      [-1, -55],
+      [-35, 0],
+      [0, -39],
+      [-185, -4],
+      [2, -40],
+      [-222, -2],
+      [2, 120],
+      [-34, 2],
+      [-4, 35],
+      [-31, 11],
+      [0, 41],
+      [-44, 6],
+      [3, 23],
+      [-36, 10],
+      [2, 42],
+      [-46, 0],
+      [7, 37],
+      [-38, 2],
+      [2, 82],
+      [-39, 2],
+      [2, 83],
+      [-39, 0],
+      [0, 37],
+      [-38, 6],
+      [0, 40],
+      [-75, 2],
+      [0, 39],
+      [-35, 0],
+      [0, 80],
+      [-32, 3],
+      [-4, 84],
+      [38, 0],
+      [-2, 33],
+      [-34, 2],
+      [-6, 43],
+      [-66, -2],
+      [-5, 44],
+      [-74, -2],
+      [2, 115],
+      [2, 89],
+      [-146, 6],
+      [-3, 81],
+      [-39, 0],
+      [2, 41],
+      [-51, 2],
+      [17, 118],
+      [-38, 6],
+      [0, 29],
+      [-43, 8],
+      [5, 128],
+      [-78, -2],
+      [6, 41],
+      [-37, 0],
+      [0, 38],
+      [-35, 4],
+      [-2, 80],
+      [-38, 2],
+      [0, 40],
+      [-73, 0],
+      [-2, 43],
+      [-36, 0],
+      [0, 39],
+      [-36, 0],
+      [2, 40],
+      [-36, -3],
+      [-2, 166],
+      [-33, -1],
+      [0, 120],
+      [141, 6],
+      [0, 41],
+      [-36, -4],
+      [0, 46],
+      [-38, 0],
+      [2, 45],
+      [-71, 0],
+      [-3, -33],
+      [1, -16],
+      [-24, 0],
+      [-16, -4],
+      [0, -46],
+      [1, -20],
+      [-34, -11],
+      [-75, 2],
+      [0, 15],
+      [1, 41],
+      [0, 25],
+      [-109, 0],
+      [-2, 45],
+      [-38, 0],
+      [5, 244],
+      [-39, -2],
+      [-2, 87],
+      [-34, -4],
+      [0, 47],
+      [-37, -6],
+      [2, 165],
+      [-39, 4],
+      [-2, 161],
+      [-38, -2],
+      [0, 89],
+      [-34, -4],
+      [0, 41],
+      [-74, -5],
+      [0, 12],
+      [-2, 74],
+      [-31, 3],
+      [-6, 41],
+      [-33, 2],
+      [-4, 39],
+      [-31, 0],
+      [-2, 37],
+      [-73, 2],
+      [-4, -33],
+      [-34, -4],
+      [-2, 83],
+      [-147, -11],
+      [2, 91],
+      [-73, -4],
+      [-5, 39],
+      [-29, 0],
+      [-1, 50],
+      [-148, 0],
+      [-1, 34],
+      [-72, 4],
+      [-2, 40],
+      [-38, 0],
+      [2, 82],
+      [-36, 2],
+      [-2, 37],
+      [-39, 0],
+      [0, 41],
+      [-33, 3],
+      [2, 39],
+      [-40, 0],
+      [-2, 47],
+      [-37, 0],
+      [0, 79],
+      [-72, 0],
+      [2, 91],
+      [0, 90],
+      [2, 46],
+      [5, 17],
+      [62, 10],
+      [0, 68],
+      [42, 8],
+      [-3, 79],
+      [42, 2],
+      [0, 39],
+      [32, 8],
+      [-3, 31],
+      [41, 7],
+      [1, 35],
+      [2, 80],
+      [35, 4],
+      [-5, 89],
+      [1, 35],
+      [1, 13],
+      [1, 16],
+      [0, 12],
+      [34, 0],
+      [43, 2],
+      [-2, 21],
+      [-3, 37],
+      [5, 27],
+      [33, -2],
+      [-2, 64],
+      [-423, -85],
+      [-17, 244],
+      [8, 140],
+      [2, 35],
+      [202, -23],
+      [72, 31],
+      [101, -20],
+      [64, 20],
+      [-1, 12],
+      [-10, 76],
+      [-31, 0],
+      [-1, 14],
+      [-2, 25],
+      [-27, 8],
+      [-9, 37],
+      [-20, 0],
+      [-16, 2],
+      [-2, 29],
+      [5, 46],
+      [-5, 49],
+      [0, 37],
+      [-34, 0],
+      [0, 120],
+      [-21, 2],
+      [-20, 4],
+      [1, 13],
+      [2, 20],
+      [-14, 4],
+      [-22, 0],
+      [0, 79],
+      [14, 0],
+      [22, 10],
+      [0, 33],
+      [-16, 6],
+      [-20, 0],
+      [-1, 15],
+      [-1, 19],
+      [-20, 0],
+      [-13, 2],
+      [-3, 26],
+      [-3, 68],
+      [3, 58],
+      [0, 39],
+      [-8, 15],
+      [-15, 0],
+      [-13, 2],
+      [2, 14],
+      [2, 23],
+      [0, 31],
+      [-11, 15],
+      [-29, 0],
+      [2, 55],
+      [-2, 27],
+      [0, 37],
+      [4, 34],
+      [22, 8],
+      [5, 9],
+      [11, 17],
+      [0, 40],
+      [-13, 16],
+      [-14, 4],
+      [-17, 2],
+      [0, 15],
+      [2, 54],
+      [0, 35],
+      [2, 45],
+      [-4, 13],
+      [28, -3],
+      [12, 3],
+      [0, 45],
+      [-5, 37],
+      [22, 4],
+      [20, 0],
+      [1, 39],
+      [78, -4],
+      [-9, 39],
+      [77, 4],
+      [-5, -84],
+      [77, 1],
+      [0, -47],
+      [184, 4],
+      [-3, -39],
+      [73, 0],
+      [0, 43],
+      [409, -2],
+      [-4, -41],
+      [114, 0],
+      [0, 39],
+      [38, -2],
+      [-6, 45],
+      [72, 0],
+      [2, -39],
+      [34, -2],
+      [4, 37],
+      [37, 4],
+      [0, 38],
+      [76, 6],
+      [0, 35],
+      [70, 2],
+      [-2, 39],
+      [116, 5],
+      [-4, 119],
+      [75, 4],
+      [4, 83],
+      [143, 2],
+      [0, 122],
+      [42, 0],
+      [-5, 41],
+      [-39, 0],
+      [2, 130],
+      [75, -4],
+      [-4, 35],
+      [40, 4],
+      [-5, 39],
+      [45, 2],
+      [153, 0],
+      [133, 0],
+      [120, -13],
+      [92, 16],
+      [104, 4],
+      [137, -49],
+      [82, -16],
+      [63, -7],
+      [172, -6],
+      [194, -7],
+      [145, 33],
+      [95, 62],
+      [65, 87],
+      [5, 81],
+      [58, 52],
+      [119, 13],
+      [232, 4],
+      [19, 13],
+      [46, 10],
+      [22, 6],
+      [14, 4],
+      [28, -10]
+    ],
+    [
+      [35202, 37349],
+      [-42, -42],
+      [-34, -31],
+      [-62, -33],
+      [-43, 16],
+      [-54, 26],
+      [-62, 19],
+      [-42, 18],
+      [-14, 5],
+      [-69, -11],
+      [-69, 13],
+      [-72, 63],
+      [-67, 59],
+      [-56, 53],
+      [-47, 47],
+      [-49, 39],
+      [-45, 39],
+      [-43, 45],
+      [-37, 53],
+      [-36, 54],
+      [-39, 51],
+      [-39, 46],
+      [-39, 48],
+      [-37, 48],
+      [-39, 46],
+      [-42, 46],
+      [-45, 47],
+      [-52, 45],
+      [-62, 43],
+      [-69, 48],
+      [-84, 46],
+      [-96, 44],
+      [-93, 60],
+      [-48, 55],
+      [-27, 67],
+      [-23, 65],
+      [20, 70],
+      [19, 78],
+      [33, 74],
+      [51, 60],
+      [50, 60],
+      [55, 54],
+      [60, 45],
+      [63, 39],
+      [55, 45],
+      [49, 43],
+      [48, 45],
+      [48, 44],
+      [57, 34],
+      [56, 32],
+      [66, 14],
+      [62, 24],
+      [62, 10],
+      [62, 1],
+      [62, -4],
+      [60, -17],
+      [60, -16],
+      [64, -4],
+      [62, -1],
+      [61, -7],
+      [55, -28],
+      [57, -20],
+      [52, -30],
+      [51, -38],
+      [53, -41],
+      [54, -42],
+      [56, -43],
+      [51, -46],
+      [54, -46],
+      [59, -38],
+      [60, -37],
+      [56, -41],
+      [60, -39],
+      [60, -38],
+      [64, -37],
+      [71, -28],
+      [59, -38],
+      [47, -53],
+      [45, -54],
+      [53, -42],
+      [47, -40],
+      [36, -37],
+      [15, -37],
+      [-57, -81],
+      [-60, -74],
+      [-43, -58],
+      [-35, -49],
+      [-28, -53],
+      [-22, -64],
+      [-27, -68],
+      [-38, -59],
+      [-48, -50],
+      [-50, -53],
+      [-47, -63],
+      [-47, -62],
+      [-41, -65],
+      [-41, -65],
+      [-43, -75],
+      [-56, -86],
+      [-40, -42]
+    ],
+    [
+      [47713, 38452],
+      [-110, 0],
+      [0, 41],
+      [-110, 42],
+      [0, 329],
+      [80, 45],
+      [67, 38],
+      [184, 0],
+      [110, -42],
+      [0, -164],
+      [-221, -248],
+      [0, -41]
+    ],
+    [
+      [42421, 38720],
+      [-38, -41],
+      [159, -125],
+      [3, -18],
+      [59, -59],
+      [149, -35],
+      [94, 0],
+      [124, -38],
+      [128, -52],
+      [101, -35],
+      [300, -117],
+      [132, -49],
+      [173, -108],
+      [465, -219],
+      [409, -188],
+      [-200, -151],
+      [45, -7],
+      [147, -13],
+      [74, -248],
+      [72, 21],
+      [30, 82],
+      [110, 0],
+      [0, -41],
+      [331, -41],
+      [1, 137],
+      [22, -6],
+      [100, -4],
+      [124, -17],
+      [118, -14],
+      [117, -7],
+      [63, 7],
+      [112, 21],
+      [87, 80],
+      [285, 50],
+      [73, -41],
+      [0, -42],
+      [74, 0],
+      [0, 83],
+      [220, 41],
+      [294, 0],
+      [74, -41],
+      [110, -41],
+      [73, -42],
+      [0, -82],
+      [184, 0],
+      [0, 82],
+      [148, 0],
+      [110, -41],
+      [28, -64],
+      [100, -35],
+      [230, -21],
+      [200, 81],
+      [321, 0],
+      [82, 21],
+      [22, 59],
+      [193, 0],
+      [0, -82],
+      [221, 0],
+      [0, 82],
+      [74, 0],
+      [220, -82],
+      [73, -41],
+      [74, -82],
+      [0, -41],
+      [37, -42],
+      [0, -41],
+      [73, -82],
+      [0, -41],
+      [37, -42],
+      [0, -41],
+      [-110, -123],
+      [36, -41],
+      [0, -124],
+      [-36, -41],
+      [0, -41],
+      [-37, -41],
+      [0, -42],
+      [-37, -41],
+      [0, -41],
+      [-37, -41],
+      [74, -82],
+      [0, -42],
+      [-37, -41],
+      [147, -82],
+      [37, -41],
+      [0, -165],
+      [-442, -41],
+      [-403, -41],
+      [-111, -41],
+      [-73, -42],
+      [0, -41],
+      [-148, 0],
+      [0, 41],
+      [-36, 42],
+      [-147, 0],
+      [0, -42],
+      [-147, 0],
+      [0, 42],
+      [-74, 82],
+      [-257, 0],
+      [-74, -41],
+      [-110, -41],
+      [-73, -42],
+      [-110, -41],
+      [-74, -41],
+      [-110, -41],
+      [0, -329],
+      [-38, -42],
+      [-146, -41],
+      [0, -41],
+      [-37, -41],
+      [-147, -41],
+      [0, -82],
+      [-111, 0],
+      [0, 41],
+      [-36, 41],
+      [-148, 0],
+      [0, -82],
+      [-110, -124],
+      [-293, -41],
+      [-552, -42],
+      [37, -41],
+      [-74, -41],
+      [0, -41],
+      [-478, 0],
+      [0, 165],
+      [-220, 247],
+      [-73, 41],
+      [0, 41],
+      [-74, 82],
+      [0, 42],
+      [-74, 82],
+      [0, 41],
+      [-73, 82],
+      [-111, 42],
+      [0, 41],
+      [-110, 123],
+      [74, 41],
+      [0, 83],
+      [-74, 82],
+      [0, 329],
+      [-183, 0],
+      [0, -123],
+      [-38, -41],
+      [0, -124],
+      [-36, -41],
+      [0, -165],
+      [-110, 0],
+      [0, 42],
+      [-37, 41],
+      [0, 41],
+      [-74, 82],
+      [37, 42],
+      [0, 82],
+      [-73, 82],
+      [-184, 41],
+      [0, 41],
+      [-110, 124],
+      [-368, 41],
+      [-367, 206],
+      [0, 41],
+      [-184, 206],
+      [36, 41],
+      [0, 124],
+      [74, 41],
+      [184, 206],
+      [0, 41],
+      [-38, 41],
+      [-72, 0],
+      [-184, -206],
+      [-74, -41],
+      [-110, -41],
+      [0, -124],
+      [-331, 0],
+      [0, 41],
+      [-37, 42],
+      [-147, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 41],
+      [-36, 42],
+      [73, 41],
+      [37, 41],
+      [0, 41],
+      [-37, 41],
+      [-37, 0],
+      [-146, -82],
+      [0, -41],
+      [-295, 0],
+      [0, 41],
+      [-147, 164],
+      [-147, 42],
+      [0, 82],
+      [-36, 41],
+      [0, 83],
+      [-38, 41],
+      [0, 41],
+      [-220, 247],
+      [36, 41],
+      [0, 165],
+      [368, 82],
+      [111, 123],
+      [0, 124],
+      [368, 41],
+      [0, 165],
+      [110, 41],
+      [110, 0],
+      [0, -41],
+      [293, 0],
+      [0, 83],
+      [112, 0],
+      [0, -83]
+    ],
+    [
+      [16161, 38463],
+      [28, -10],
+      [28, 21],
+      [27, 10],
+      [27, -21],
+      [18, -51],
+      [0, -52],
+      [-18, -31],
+      [-45, -10],
+      [-46, -31],
+      [-19, -41],
+      [-18, -72],
+      [-55, -63],
+      [-45, -30],
+      [-19, -11],
+      [-37, 0],
+      [-9, 11],
+      [19, 30],
+      [27, 52],
+      [37, 31],
+      [27, 41],
+      [19, 52],
+      [-19, 21],
+      [0, 20],
+      [19, 31],
+      [0, 73],
+      [-19, 51],
+      [-27, 31],
+      [-18, 42],
+      [0, 61],
+      [27, 32],
+      [13, -11],
+      [15, -10],
+      [9, -31],
+      [27, -42],
+      [27, -20],
+      [0, -73]
+    ],
+    [
+      [36097, 38329],
+      [38, -41],
+      [36, 0],
+      [36, -41],
+      [38, 0],
+      [36, -42],
+      [37, 0],
+      [110, -123],
+      [37, 0],
+      [73, -83],
+      [38, 0],
+      [36, -41],
+      [74, 0],
+      [74, -82],
+      [36, 0],
+      [36, -41],
+      [38, 0],
+      [73, -83],
+      [37, 0],
+      [183, -205],
+      [0, -42],
+      [38, -41],
+      [0, -41],
+      [36, -41],
+      [0, -41],
+      [-36, -42],
+      [-38, 0],
+      [0, -40],
+      [-36, -42],
+      [-26, -172],
+      [-74, -82],
+      [-84, -75],
+      [-37, -41],
+      [-74, 0],
+      [-36, -42],
+      [0, -41],
+      [-74, 0],
+      [-74, 83],
+      [-72, 0],
+      [-38, 41],
+      [-73, 0],
+      [-192, 10],
+      [-249, 31],
+      [-37, 41],
+      [-36, 0],
+      [-38, 41],
+      [-36, 0],
+      [-74, 83],
+      [-36, 0],
+      [-37, 41],
+      [-74, 0],
+      [-36, 41],
+      [-37, 0],
+      [-37, 41],
+      [-110, 0],
+      [-74, 82],
+      [9, 52],
+      [28, 31],
+      [37, 41],
+      [0, 41],
+      [83, 124],
+      [64, 82],
+      [73, 82],
+      [0, 42],
+      [74, 82],
+      [0, 41],
+      [73, 82],
+      [0, 42],
+      [166, 267],
+      [65, 11],
+      [38, 6],
+      [25, 4]
+    ],
+    [
+      [53448, 37876],
+      [73, -82],
+      [74, 0],
+      [36, -42],
+      [111, 0],
+      [147, -164],
+      [37, 0],
+      [37, -41],
+      [73, 0],
+      [110, -124],
+      [0, -165],
+      [37, -41],
+      [0, -123],
+      [73, -83],
+      [0, -82],
+      [38, -41],
+      [0, -165],
+      [-111, -123],
+      [0, -41],
+      [-73, -83],
+      [-37, 0],
+      [-37, -41],
+      [-110, 0],
+      [-37, 41],
+      [-294, 0],
+      [-37, -41],
+      [-37, 0],
+      [-36, 41],
+      [-37, 0],
+      [-37, 41],
+      [-37, 0],
+      [-36, 42],
+      [-37, 0],
+      [-147, 164],
+      [-36, 0],
+      [-148, 165],
+      [0, 41],
+      [-36, 41],
+      [0, 82],
+      [-38, 42],
+      [0, 41],
+      [38, 41],
+      [0, 123],
+      [72, 83],
+      [0, 41],
+      [38, 41],
+      [0, 41],
+      [36, 42],
+      [0, 41],
+      [74, 82],
+      [0, 41],
+      [36, 41],
+      [0, 42],
+      [38, 41],
+      [0, 164],
+      [-38, 42],
+      [50, 55],
+      [24, 27],
+      [37, 0],
+      [110, -124],
+      [0, -41],
+      [37, -41],
+      [0, -41]
+    ],
+    [
+      [40172, 36616],
+      [60, -8],
+      [57, 25],
+      [67, 1],
+      [68, -26],
+      [67, -56],
+      [54, -63],
+      [45, -54],
+      [38, -53],
+      [31, -60],
+      [30, -60],
+      [18, -69],
+      [25, -67],
+      [33, -66],
+      [33, -67],
+      [55, -51],
+      [59, -43],
+      [59, -46],
+      [52, -56],
+      [52, -65],
+      [52, -67],
+      [66, -52],
+      [62, -44],
+      [54, -47],
+      [43, -50],
+      [43, -52],
+      [49, -51],
+      [42, -71],
+      [27, -82],
+      [18, -76],
+      [-12, -76],
+      [-45, -59],
+      [-27, -26],
+      [-31, -1],
+      [-49, 50],
+      [-41, 77],
+      [-44, 71],
+      [-44, 61],
+      [-51, 47],
+      [-52, 47],
+      [-52, 45],
+      [-60, 33],
+      [-54, 30],
+      [-47, 1],
+      [-38, -21],
+      [-48, -18],
+      [-43, -31],
+      [-42, -26],
+      [-33, -17],
+      [-54, 30],
+      [-53, 66],
+      [5, 47],
+      [14, 51],
+      [22, 48],
+      [3, 47],
+      [-8, 42],
+      [-24, 35],
+      [-17, 37],
+      [-29, 35],
+      [-44, 34],
+      [-61, 29],
+      [-65, 54],
+      [-72, 56],
+      [-46, 70],
+      [-38, 76],
+      [-36, 75],
+      [-33, 73],
+      [-35, 69],
+      [-48, 55],
+      [-55, 47],
+      [-48, 54],
+      [-41, 56],
+      [-39, 49],
+      [-42, 39],
+      [-42, 35],
+      [-54, 29],
+      [-73, 16],
+      [-83, 72],
+      [-27, 84],
+      [-10, 56],
+      [-8, 38],
+      [-9, 42],
+      [29, 41],
+      [56, 3],
+      [35, -3],
+      [36, -3],
+      [74, -14],
+      [63, -34],
+      [57, -46],
+      [42, -66],
+      [49, -66],
+      [56, -61],
+      [54, -58],
+      [53, -50]
+    ],
+    [
+      [44663, 34500],
+      [-111, 0],
+      [0, 41],
+      [-37, 41],
+      [-73, 41],
+      [-110, 124],
+      [-74, 41],
+      [0, 41],
+      [-147, 165],
+      [0, 41],
+      [-220, 247],
+      [-148, 83],
+      [0, 41],
+      [-74, 82],
+      [0, 41],
+      [-72, 83],
+      [0, 41],
+      [-111, 123],
+      [257, 0],
+      [74, -82],
+      [0, -41],
+      [74, -82],
+      [0, -42],
+      [36, -41],
+      [0, -123],
+      [331, -371],
+      [0, -82],
+      [74, -41],
+      [146, -165],
+      [0, -41],
+      [185, -42],
+      [0, -82],
+      [0, -41]
+    ],
+    [
+      [14756, 35274],
+      [-92, 0],
+      [-37, 21],
+      [-19, 21],
+      [10, 20],
+      [19, 52],
+      [18, 0],
+      [9, 72],
+      [27, 72],
+      [55, -20],
+      [19, -31],
+      [27, -52],
+      [0, -93],
+      [-36, -62]
+    ],
+    [
+      [5083, 31327],
+      [-64, -11],
+      [0, 73],
+      [37, 31],
+      [37, 72],
+      [63, 134],
+      [38, 72],
+      [0, 62],
+      [36, 11],
+      [36, 0],
+      [38, -41],
+      [-29, -73],
+      [0, -82],
+      [-72, -125],
+      [-9, -41],
+      [-28, -41],
+      [-83, -41]
+    ],
+    [
+      [4653, 30123],
+      [-47, -15],
+      [-50, 30],
+      [-46, 38],
+      [-43, 31],
+      [-51, 16],
+      [-39, 34],
+      [-34, 50],
+      [-29, 65],
+      [-8, 81],
+      [24, 83],
+      [44, 71],
+      [45, 58],
+      [43, 47],
+      [37, 41],
+      [34, 39],
+      [39, 31],
+      [45, 13],
+      [44, 14],
+      [37, 24],
+      [39, 18],
+      [46, 27],
+      [64, 16],
+      [68, -39],
+      [22, -13],
+      [37, -85],
+      [28, -82],
+      [-42, -302],
+      [-30, -37],
+      [-65, -67],
+      [-66, -54],
+      [-56, -46],
+      [-60, -52],
+      [-30, -35]
+    ],
+    [
+      [53889, 29560],
+      [37, -42],
+      [73, 0],
+      [74, -82],
+      [110, 0],
+      [37, -41],
+      [74, 0],
+      [36, -41],
+      [36, 0],
+      [38, -41],
+      [36, 0],
+      [74, -83],
+      [0, -41],
+      [74, 0],
+      [110, -123],
+      [37, 0],
+      [73, -83],
+      [37, 0],
+      [36, -41],
+      [74, 0],
+      [36, -41],
+      [74, 0],
+      [74, -82],
+      [36, 0],
+      [74, -83],
+      [37, 0],
+      [110, -123],
+      [37, 0],
+      [111, -124],
+      [95, 0],
+      [10, -8],
+      [188, -198],
+      [0, -41],
+      [-62, -70],
+      [-48, -53],
+      [-37, 0],
+      [-74, -83],
+      [0, -41],
+      [-36, -41],
+      [0, -41],
+      [36, -41],
+      [-72, -82],
+      [0, -83],
+      [-74, 0],
+      [-147, 165],
+      [-74, 0],
+      [-110, -124],
+      [-37, 42],
+      [0, 40],
+      [-37, 42],
+      [0, 41],
+      [-36, 41],
+      [0, 165],
+      [36, 41],
+      [-36, 41],
+      [0, 82],
+      [-38, 42],
+      [0, 41],
+      [-51, 58],
+      [-21, 24],
+      [0, 41],
+      [-74, 0],
+      [-110, -123],
+      [0, -41],
+      [-37, -42],
+      [-74, 83],
+      [-73, 0],
+      [-37, 41],
+      [-37, 0],
+      [-37, 41],
+      [-74, 0],
+      [-36, 41],
+      [-74, 0],
+      [-36, -41],
+      [0, -123],
+      [74, -83],
+      [72, 0],
+      [0, -41],
+      [38, 0],
+      [110, -123],
+      [60, -21],
+      [0, -103],
+      [-9, -52],
+      [-9, -52],
+      [0, -82],
+      [9, -41],
+      [0, -42],
+      [-18, -51],
+      [-19, -93],
+      [0, -103],
+      [10, -42],
+      [0, -113],
+      [-28, -73],
+      [-18, -31],
+      [-37, -20],
+      [-64, -31],
+      [-18, -18],
+      [-37, -31],
+      [-54, -10],
+      [-37, -31],
+      [-92, -104],
+      [0, -217],
+      [9, -93],
+      [10, -51],
+      [-99, -101],
+      [-74, 0],
+      [-36, 41],
+      [-37, 0],
+      [0, 41],
+      [-111, 124],
+      [-36, 0],
+      [-37, 41],
+      [-111, 0],
+      [-73, 82],
+      [-330, 0],
+      [-74, 83],
+      [-74, -83],
+      [-36, 0],
+      [-110, -123],
+      [0, -41],
+      [-38, -42],
+      [0, -41],
+      [-36, -41],
+      [-74, 0],
+      [-73, 82],
+      [-148, -164],
+      [-72, 82],
+      [0, 41],
+      [36, 41],
+      [0, 42],
+      [36, 41],
+      [0, 82],
+      [38, 41],
+      [0, 41],
+      [36, 42],
+      [0, 41],
+      [37, 41],
+      [0, 82],
+      [37, 42],
+      [0, 40],
+      [36, 42],
+      [0, 206],
+      [37, 41],
+      [0, 123],
+      [37, 42],
+      [0, 41],
+      [-74, 82],
+      [-36, 0],
+      [-37, 41],
+      [-73, -82],
+      [0, -82],
+      [-110, -124],
+      [0, -165],
+      [36, -41],
+      [0, -41],
+      [-36, -41],
+      [0, -42],
+      [-38, -40],
+      [0, -124],
+      [-36, -41],
+      [0, -41],
+      [-38, -42],
+      [0, -41],
+      [-36, -41],
+      [0, -82],
+      [-36, -41],
+      [0, -42],
+      [-38, -41],
+      [0, -82],
+      [-73, -82],
+      [0, -83],
+      [-37, -41],
+      [0, -41],
+      [-36, -41],
+      [0, -124],
+      [-37, -41],
+      [0, -41],
+      [-220, -247],
+      [-38, 41],
+      [-36, 0],
+      [0, -82],
+      [-37, -41],
+      [37, -42],
+      [0, -246],
+      [-110, -124],
+      [-47, -36],
+      [-36, -186],
+      [-28, -108],
+      [-147, 0],
+      [0, -41],
+      [-37, -41],
+      [0, -82],
+      [-36, -41],
+      [0, -165],
+      [-37, -41],
+      [0, -82],
+      [-37, 0],
+      [-36, -42],
+      [0, -41],
+      [-38, 0],
+      [-110, 123],
+      [0, 42],
+      [-36, 41],
+      [0, 82],
+      [-37, 42],
+      [0, 123],
+      [73, 82],
+      [0, 247],
+      [74, 83],
+      [0, 41],
+      [74, 82],
+      [0, 42],
+      [36, 41],
+      [-184, 205],
+      [37, 42],
+      [0, 41],
+      [37, 0],
+      [74, 82],
+      [0, 41],
+      [36, 41],
+      [0, 83],
+      [37, 41],
+      [0, 82],
+      [147, 165],
+      [0, 41],
+      [37, 41],
+      [0, 83],
+      [-37, 41],
+      [37, 41],
+      [0, 123],
+      [36, 42],
+      [0, 41],
+      [37, 0],
+      [37, 41],
+      [0, 41],
+      [74, 82],
+      [0, 42],
+      [36, 41],
+      [0, 82],
+      [37, 41],
+      [0, 247],
+      [73, 83],
+      [0, 41],
+      [38, 41],
+      [0, 41],
+      [110, 124],
+      [0, 41],
+      [36, 41],
+      [0, 83],
+      [37, 40],
+      [0, 42],
+      [37, 41],
+      [0, 82],
+      [37, 41],
+      [0, 42],
+      [-147, 164],
+      [-38, 0],
+      [-72, 83],
+      [0, 41],
+      [36, 41],
+      [0, 123],
+      [36, 41],
+      [0, 83],
+      [38, 41],
+      [0, 83],
+      [183, 205],
+      [0, 41],
+      [184, 206],
+      [0, 206],
+      [36, 41],
+      [148, 0],
+      [36, -41],
+      [0, -206],
+      [-72, -82],
+      [0, -82],
+      [-148, -165],
+      [0, -165],
+      [-184, -206],
+      [0, -82],
+      [-36, -41],
+      [0, -41],
+      [110, -124],
+      [146, 0],
+      [74, 83],
+      [0, 41],
+      [148, 164],
+      [146, -164],
+      [0, -41],
+      [-73, -83],
+      [0, -82],
+      [73, 0],
+      [185, -206],
+      [146, 165],
+      [0, 82],
+      [38, 41],
+      [0, 83],
+      [72, 82],
+      [0, 123],
+      [38, 41],
+      [0, 42],
+      [73, 82],
+      [0, 83],
+      [37, 41],
+      [0, 82],
+      [36, 41],
+      [0, 82],
+      [37, 42],
+      [0, 41],
+      [147, 164],
+      [37, 0],
+      [36, 42],
+      [38, 0],
+      [110, 123],
+      [0, 41],
+      [74, 83],
+      [36, 0]
+    ],
+    [
+      [10182, 18609],
+      [0, -248],
+      [-147, -164],
+      [-37, 0],
+      [-44, -50],
+      [-29, -33],
+      [-40, -45],
+      [-34, -46],
+      [-34, -49],
+      [-28, -58],
+      [-8, -83],
+      [8, -92],
+      [32, -69],
+      [23, -56],
+      [-8, -53],
+      [-24, -48],
+      [-32, -42],
+      [-24, -45],
+      [-17, -53],
+      [-23, -48],
+      [-28, -53],
+      [-50, -58],
+      [-106, -27],
+      [-70, 14],
+      [-50, -3],
+      [-39, -39],
+      [-36, -60],
+      [-37, -74],
+      [-44, -78],
+      [-54, -65],
+      [-23, -33],
+      [-36, -16],
+      [-57, -17],
+      [-80, 33],
+      [-74, 70],
+      [-36, 41],
+      [0, 247],
+      [-295, 329],
+      [0, 41],
+      [37, 42],
+      [0, 41],
+      [220, 247],
+      [0, 41],
+      [38, 41],
+      [0, 41],
+      [36, 41],
+      [0, 41],
+      [184, 206],
+      [37, 0],
+      [73, 83],
+      [37, 0],
+      [74, 82],
+      [36, 0],
+      [37, 41],
+      [73, 0],
+      [38, -41],
+      [36, 0],
+      [36, -41],
+      [38, 0],
+      [36, -41],
+      [74, 0],
+      [36, 41],
+      [148, 0],
+      [73, 82],
+      [0, 83],
+      [37, 41],
+      [0, 123],
+      [111, 124],
+      [36, 0],
+      [110, -124],
+      [-74, -82],
+      [0, -41],
+      [-36, -41]
+    ],
+    [
+      [11983, 18897],
+      [37, -41],
+      [183, 0],
+      [111, -124],
+      [0, -41],
+      [147, -165],
+      [37, 0],
+      [37, 41],
+      [0, 124],
+      [37, 41],
+      [36, 0],
+      [74, -82],
+      [0, -41],
+      [74, -83],
+      [36, 0],
+      [147, -165],
+      [0, -41],
+      [37, -41],
+      [0, -41],
+      [221, -247],
+      [0, -206],
+      [36, -41],
+      [0, -41],
+      [74, -82],
+      [36, 0],
+      [74, 82],
+      [36, 0],
+      [38, -41],
+      [36, 0],
+      [441, -494],
+      [38, 0],
+      [32, 22],
+      [44, 26],
+      [41, 31],
+      [61, 23],
+      [94, 12],
+      [78, 18],
+      [65, 45],
+      [71, 56],
+      [87, 65],
+      [12, -2],
+      [39, -8],
+      [37, 0],
+      [36, -41],
+      [0, -42],
+      [38, -41],
+      [0, -82],
+      [36, -41],
+      [110, -124],
+      [37, 0],
+      [37, -41],
+      [73, 0],
+      [368, -412],
+      [65, -35],
+      [79, 0],
+      [73, 34],
+      [32, 8],
+      [34, 9],
+      [39, -42],
+      [40, -43],
+      [72, -81],
+      [47, -75],
+      [34, -63],
+      [73, -82],
+      [37, 0],
+      [36, -41],
+      [38, 0],
+      [183, -206],
+      [0, -288],
+      [-294, -330],
+      [0, -41],
+      [-257, -288],
+      [-37, 0],
+      [-184, 206],
+      [-36, -41],
+      [-38, 0],
+      [-36, -41],
+      [-148, 164],
+      [-110, 0],
+      [-61, 25],
+      [-40, 14],
+      [-52, 14],
+      [-45, 29],
+      [-49, 28],
+      [-54, 25],
+      [-57, 25],
+      [-24, 2],
+      [-37, 2],
+      [-63, -4],
+      [-64, -21],
+      [-66, 9],
+      [-75, 12],
+      [-88, 4],
+      [-84, 65],
+      [-34, 68],
+      [-30, 49],
+      [-40, 34],
+      [-46, 33],
+      [-54, 35],
+      [-69, 19],
+      [-72, 29],
+      [-69, 39],
+      [-63, 45],
+      [-60, 38],
+      [-625, 700],
+      [-37, -1],
+      [-37, 42],
+      [-147, 0],
+      [-146, -165],
+      [-38, 0],
+      [-36, -41],
+      [-37, 0],
+      [-73, 82],
+      [-37, 0],
+      [-37, 41],
+      [-37, 0],
+      [-37, 42],
+      [-183, -1],
+      [-74, 83],
+      [-36, 0],
+      [-38, 41],
+      [-36, 0],
+      [-110, 124],
+      [0, 123],
+      [-37, 41],
+      [0, 288],
+      [-37, 42],
+      [0, 164],
+      [-37, 41],
+      [0, 124],
+      [-36, 41],
+      [0, 41],
+      [-37, 42],
+      [0, 82],
+      [-37, 41],
+      [0, 41],
+      [-147, 165],
+      [0, 41],
+      [-37, 41],
+      [0, 165],
+      [74, 82],
+      [36, 0],
+      [74, 83],
+      [37, 0],
+      [73, 82],
+      [0, 82],
+      [44, 49],
+      [67, 75],
+      [36, 0]
+    ],
+    [
+      [14116, 17909],
+      [0, -41],
+      [-74, 0],
+      [0, 41],
+      [-74, 0],
+      [0, -41],
+      [-74, 0],
+      [0, 82],
+      [38, 41],
+      [0, 41],
+      [36, 41],
+      [0, 41],
+      [-74, 83],
+      [112, 123],
+      [0, 41],
+      [110, 0],
+      [0, -82],
+      [73, -41],
+      [0, -247],
+      [-73, -82]
+    ],
+    [
+      [10881, 17703],
+      [36, -41],
+      [74, 0],
+      [74, -83],
+      [73, 0],
+      [184, -206],
+      [0, -123],
+      [220, -247],
+      [0, -41],
+      [37, -41],
+      [0, -165],
+      [37, -41],
+      [0, -83],
+      [36, -41],
+      [0, -41],
+      [74, -82],
+      [0, -41],
+      [221, -247],
+      [73, 0],
+      [37, -42],
+      [36, 0],
+      [38, 42],
+      [110, 0],
+      [36, 41],
+      [147, 0],
+      [37, -41],
+      [37, 0],
+      [37, -42],
+      [37, 0],
+      [73, 83],
+      [111, 0],
+      [146, -165],
+      [0, -41],
+      [295, -330],
+      [36, 0],
+      [184, -205],
+      [74, 0],
+      [36, 41],
+      [74, 0],
+      [183, -206],
+      [258, 0],
+      [36, -41],
+      [38, 0],
+      [73, -82],
+      [37, 0],
+      [36, 41],
+      [16, -18],
+      [21, -23],
+      [147, 0],
+      [73, -83],
+      [32, -73],
+      [12, -76],
+      [-17, -110],
+      [-21, -120],
+      [-16, -78],
+      [-18, -42],
+      [-15, -39],
+      [-24, -41],
+      [-14, -58],
+      [-30, -60],
+      [-39, -62],
+      [-48, -59],
+      [-56, -52],
+      [-54, -53],
+      [-53, -58],
+      [-54, -61],
+      [-61, -62],
+      [-82, -43],
+      [-44, -15],
+      [-42, -2],
+      [-54, 10],
+      [-58, 13],
+      [-49, 31],
+      [-47, 39],
+      [-50, 40],
+      [-57, 37],
+      [-57, 36],
+      [-50, 46],
+      [-48, 42],
+      [-53, 32],
+      [-62, 18],
+      [-60, 29],
+      [-55, 35],
+      [-39, 46],
+      [-46, 32],
+      [-46, 37],
+      [-49, 20],
+      [-57, 4],
+      [-63, 7],
+      [-61, 34],
+      [-71, 38],
+      [-82, 34],
+      [-64, 59],
+      [-56, 63],
+      [-45, 82],
+      [-44, 85],
+      [-45, 86],
+      [-36, 80],
+      [-26, 65],
+      [-34, 43],
+      [-37, 32],
+      [-33, 33],
+      [-38, 0],
+      [-36, 41],
+      [-36, 0],
+      [-38, -41],
+      [-36, 0],
+      [-16, -18],
+      [-21, -23],
+      [-37, 0],
+      [-36, -42],
+      [-37, 0],
+      [-110, -123],
+      [0, -42],
+      [-37, -41],
+      [0, -123],
+      [-74, -82],
+      [147, -165],
+      [0, -41],
+      [37, -41],
+      [0, -83],
+      [37, -41],
+      [0, -41],
+      [73, -82],
+      [0, -83],
+      [74, -82],
+      [0, -41],
+      [74, 0],
+      [36, -42],
+      [110, 0],
+      [74, -82],
+      [73, 0],
+      [37, -41],
+      [147, 0],
+      [37, -41],
+      [73, 0],
+      [38, -41],
+      [0, -83],
+      [-38, -41],
+      [0, -82],
+      [110, -124],
+      [0, -41],
+      [38, -41],
+      [0, -41],
+      [36, -42],
+      [0, -123],
+      [37, -41],
+      [0, -82],
+      [-73, -83],
+      [-38, 0],
+      [-72, 83],
+      [-38, 0],
+      [-73, 82],
+      [-37, 0],
+      [-36, 41],
+      [-37, 0],
+      [-37, 42],
+      [-74, 0],
+      [-36, 40],
+      [-147, 0],
+      [-74, -82],
+      [-110, 0],
+      [-59, -66],
+      [-15, -16],
+      [-36, 0],
+      [-258, -288],
+      [-37, 0],
+      [-146, -165],
+      [-38, 41],
+      [-73, -82],
+      [-147, 0],
+      [-37, 41],
+      [-73, 0],
+      [-37, 41],
+      [-36, 0],
+      [-111, -124],
+      [-37, 1],
+      [-36, -41],
+      [-38, 0],
+      [-36, 41],
+      [-110, 0],
+      [-37, 41],
+      [-147, 0],
+      [-37, 41],
+      [-36, 0],
+      [-38, 41],
+      [0, 41],
+      [-36, 41],
+      [0, 247],
+      [-37, 42],
+      [0, 41],
+      [-37, 41],
+      [0, 41],
+      [-110, 123],
+      [0, 42],
+      [-74, 82],
+      [0, 41],
+      [-36, 42],
+      [0, 41],
+      [36, 41],
+      [0, 165],
+      [38, 41],
+      [0, 617],
+      [-38, 41],
+      [0, 42],
+      [-36, 41],
+      [0, 41],
+      [-74, 82],
+      [-110, 0],
+      [-21, -23],
+      [-16, -18],
+      [-36, 0],
+      [-38, -41],
+      [0, -82],
+      [-110, -124],
+      [-110, 124],
+      [0, 41],
+      [-36, 41],
+      [-74, 0],
+      [-19, -21],
+      [-18, -20],
+      [-37, 0],
+      [-110, 123],
+      [-37, 0],
+      [-73, 83],
+      [0, 123],
+      [-37, 41],
+      [0, 41],
+      [-36, 41],
+      [0, 42],
+      [-38, 41],
+      [-36, -41],
+      [-36, -42],
+      [-38, 0],
+      [-74, -82],
+      [-73, 82],
+      [0, 83],
+      [37, 41],
+      [0, 41],
+      [36, 42],
+      [0, 41],
+      [38, 41],
+      [0, 206],
+      [-38, 41],
+      [0, 41],
+      [-36, 41],
+      [0, 124],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [37, 41],
+      [0, 42],
+      [73, 82],
+      [112, -124],
+      [0, -41],
+      [110, -123],
+      [73, 0],
+      [110, 123],
+      [37, 0],
+      [37, 41],
+      [110, 0],
+      [40, 124],
+      [34, 123],
+      [330, 371],
+      [147, 0],
+      [74, -82],
+      [0, -42],
+      [36, -41],
+      [-36, -41],
+      [0, -288],
+      [-37, 0],
+      [-37, -41],
+      [0, -41],
+      [-36, -42],
+      [0, -41],
+      [-37, -41],
+      [37, -41],
+      [0, -41],
+      [73, -83],
+      [111, 0],
+      [36, -41],
+      [36, 0],
+      [38, 41],
+      [-38, 41],
+      [38, 42],
+      [0, 41],
+      [36, 41],
+      [0, 41],
+      [-36, 41],
+      [0, 42],
+      [73, 82],
+      [0, 165],
+      [-37, 41],
+      [0, 123],
+      [110, 124],
+      [0, 82],
+      [38, 41],
+      [0, 82],
+      [36, 42],
+      [-74, 82],
+      [0, 41],
+      [-36, 41],
+      [0, 42],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 82],
+      [74, 83],
+      [36, 0],
+      [38, 41],
+      [110, 0],
+      [73, 82],
+      [0, 41],
+      [74, 83],
+      [0, 41],
+      [184, 206]
+    ],
+    [
+      [8387, 16811],
+      [60, -35],
+      [71, 3],
+      [47, -9],
+      [23, -4],
+      [57, -52],
+      [56, -68],
+      [65, -69],
+      [72, -55],
+      [61, -40],
+      [43, -39],
+      [17, -39],
+      [-21, -49],
+      [-44, -57],
+      [-47, -62],
+      [-53, -51],
+      [-64, -43],
+      [-83, -41],
+      [-39, -13],
+      [-55, -19],
+      [-77, 11],
+      [-70, 33],
+      [-56, 43],
+      [-47, 44],
+      [-48, 36],
+      [-52, 26],
+      [-47, 24],
+      [-46, 15],
+      [-46, 13],
+      [-49, 24],
+      [-56, 18],
+      [-49, 32],
+      [-32, 43],
+      [-3, 71],
+      [8, 91],
+      [9, 86],
+      [14, 94],
+      [36, 81],
+      [52, 31],
+      [68, 30],
+      [43, 9],
+      [45, 9],
+      [56, -15],
+      [58, -15],
+      [70, -47],
+      [53, -45]
+    ],
+    [
+      [25989, 14245],
+      [-221, 0],
+      [0, 41],
+      [-110, 41],
+      [73, 82],
+      [0, 41],
+      [37, 42],
+      [0, 41],
+      [18, 20],
+      [19, 21],
+      [74, 0],
+      [0, -82],
+      [146, -83],
+      [38, -41],
+      [-74, -82],
+      [0, -41]
+    ],
+    [
+      [29114, 14533],
+      [146, -165],
+      [0, -41],
+      [331, -371],
+      [37, 0],
+      [257, -288],
+      [0, -206],
+      [-110, -123],
+      [-36, 0],
+      [-38, 41],
+      [-110, 0],
+      [-37, -41],
+      [-73, 0],
+      [-37, -42],
+      [-110, 0],
+      [-18, -20],
+      [-19, -21],
+      [-37, 0],
+      [-184, -205],
+      [-36, 41],
+      [-37, 0],
+      [-37, 41],
+      [-73, 0],
+      [-37, 41],
+      [-221, 0],
+      [-36, 42],
+      [-38, 0],
+      [-36, 40],
+      [-74, 0],
+      [-36, 41],
+      [-74, 0],
+      [-36, 42],
+      [-37, -42],
+      [-258, 0],
+      [-36, 42],
+      [-38, 0],
+      [-36, 41],
+      [-74, 0],
+      [-73, 82],
+      [0, 124],
+      [-147, 165],
+      [0, 82],
+      [-37, 41],
+      [0, 82],
+      [37, 41],
+      [0, 42],
+      [37, 41],
+      [73, 0],
+      [148, 165],
+      [36, 0],
+      [36, 41],
+      [74, 0],
+      [37, 41],
+      [37, 0],
+      [74, 82],
+      [36, 0],
+      [37, 41],
+      [37, 0],
+      [37, 42],
+      [36, 0],
+      [37, 41],
+      [73, 0],
+      [38, -41],
+      [36, 0],
+      [36, 41],
+      [148, 0],
+      [36, -41],
+      [37, 0],
+      [37, 41],
+      [147, 0],
+      [74, 0],
+      [36, -41],
+      [38, 41]
+    ],
+    [
+      [25548, 13833],
+      [36, -41],
+      [37, 0],
+      [37, -41],
+      [37, 0],
+      [36, -42],
+      [110, 0],
+      [38, -41],
+      [256, 0],
+      [38, -41],
+      [146, 0],
+      [37, 41],
+      [148, 0],
+      [36, 41],
+      [147, 0],
+      [37, -41],
+      [36, 0],
+      [38, -41],
+      [73, 0],
+      [37, -41],
+      [110, 0],
+      [37, -41],
+      [110, 0],
+      [74, -83],
+      [110, 0],
+      [36, -41],
+      [37, 0],
+      [184, -205],
+      [0, -42],
+      [37, -41],
+      [37, 0],
+      [36, -41],
+      [37, 0],
+      [37, -41],
+      [74, 0],
+      [36, -42],
+      [221, 0],
+      [37, -41],
+      [36, 41],
+      [37, 0],
+      [37, 42],
+      [37, 0],
+      [73, -83],
+      [221, 0],
+      [36, -41],
+      [37, 0],
+      [37, -41],
+      [73, 0],
+      [111, -124],
+      [73, 0],
+      [148, -164],
+      [36, 0],
+      [0, -82],
+      [74, -83],
+      [0, -41],
+      [73, -82],
+      [37, 0],
+      [18, 20],
+      [18, 21],
+      [74, 0],
+      [37, 41],
+      [73, 0],
+      [111, 124],
+      [0, 40],
+      [74, 83],
+      [110, 0],
+      [36, 41],
+      [110, 0],
+      [37, 41],
+      [37, 0],
+      [37, -41],
+      [73, 0],
+      [111, 124],
+      [110, 0],
+      [36, -42],
+      [0, -164],
+      [148, -165],
+      [0, -41],
+      [-74, -82],
+      [0, -42],
+      [-36, -41],
+      [0, -41],
+      [-38, 0],
+      [0, -41],
+      [-73, -82],
+      [-46, -93],
+      [-18, -31],
+      [-47, -41],
+      [-36, -41],
+      [0, -83],
+      [-37, -41],
+      [0, -41],
+      [-37, -41],
+      [0, -41],
+      [-73, -83],
+      [-82, -102],
+      [-46, -62],
+      [-56, -41],
+      [-36, -42],
+      [-38, 0],
+      [-72, -82],
+      [-38, 0],
+      [-36, -41],
+      [0, -83],
+      [-74, -82],
+      [0, -41],
+      [-37, -41],
+      [0, -41],
+      [-147, -165],
+      [-73, 0],
+      [-37, 41],
+      [-73, 0],
+      [0, 206],
+      [-110, 0],
+      [-38, -41],
+      [-36, 0],
+      [-258, -288],
+      [0, -42],
+      [-73, -82],
+      [-110, 0],
+      [-294, 330],
+      [-74, 0],
+      [-37, 41],
+      [-36, 0],
+      [-184, 205],
+      [36, 42],
+      [-36, 41],
+      [0, 41],
+      [-38, 41],
+      [-72, 0],
+      [-47, 0],
+      [-54, -10],
+      [-194, 175],
+      [0, 82],
+      [-36, 41],
+      [0, 41],
+      [-74, 83],
+      [0, 41],
+      [-74, 82],
+      [0, 124],
+      [-146, 165],
+      [-74, 0],
+      [-110, 123],
+      [0, 41],
+      [-37, 41],
+      [-37, 0],
+      [-37, 42],
+      [-146, 0],
+      [-38, 41],
+      [-36, 0],
+      [-110, 123],
+      [0, 42],
+      [-148, 164],
+      [-36, 0],
+      [-74, 82],
+      [-37, 0],
+      [-146, 165],
+      [-74, 0],
+      [-36, 41],
+      [-74, 0],
+      [-110, 124],
+      [0, 41],
+      [-74, 83],
+      [0, 40],
+      [-37, 0],
+      [-37, 41],
+      [-36, 0],
+      [-37, 42],
+      [-37, 0],
+      [-37, 41],
+      [-73, 0],
+      [-147, 165],
+      [-37, 0],
+      [-147, 164],
+      [0, 42],
+      [36, 41],
+      [74, 0],
+      [37, 41],
+      [221, 0]
+    ],
+    [
+      [29298, 13041],
+      [92, -62],
+      [164, 0],
+      [0, -42],
+      [-37, -41],
+      [0, -41],
+      [-257, 0],
+      [-63, 41],
+      [29, 83],
+      [72, 62]
+    ],
+    [
+      [19372, 11074],
+      [37, -41],
+      [36, 0],
+      [37, -41],
+      [37, 0],
+      [36, -41],
+      [38, 0],
+      [36, -41],
+      [37, 0],
+      [221, -247],
+      [36, 0],
+      [74, -83],
+      [37, 1],
+      [36, -42],
+      [74, 0],
+      [36, -41],
+      [38, 0],
+      [330, -370],
+      [0, -42],
+      [74, -82],
+      [0, -41],
+      [405, -453],
+      [441, -494],
+      [0, -41],
+      [36, -41],
+      [0, -206],
+      [36, -41],
+      [0, -83],
+      [-72, -82],
+      [0, -41],
+      [-38, -41],
+      [-36, 0],
+      [-37, 41],
+      [-37, 0],
+      [-37, 41],
+      [-73, 0],
+      [-37, 41],
+      [-74, 0],
+      [-36, 41],
+      [-258, 0],
+      [-146, 165],
+      [0, 41],
+      [-92, 182],
+      [0, 62],
+      [-27, 21],
+      [-47, 30],
+      [-9, 42],
+      [-36, 31],
+      [-36, 51],
+      [-83, 31],
+      [-27, -41],
+      [-9, -93],
+      [0, -103],
+      [-10, -83],
+      [-91, -51],
+      [-46, -42],
+      [-46, -31],
+      [-147, -41],
+      [-182, 0],
+      [-83, -31],
+      [-37, 0],
+      [-96, -16],
+      [-36, -41],
+      [-74, 0],
+      [-36, 41],
+      [-74, 0],
+      [-73, 10],
+      [-92, 0],
+      [-92, 72],
+      [-36, 0],
+      [-38, 41],
+      [-36, 0],
+      [-37, 41],
+      [-37, 0],
+      [-221, 248],
+      [-36, 0],
+      [-37, 40],
+      [-37, 0],
+      [-110, 124],
+      [0, 41],
+      [-74, 83],
+      [0, 41],
+      [-183, 206],
+      [0, 41],
+      [-37, 41],
+      [0, 123],
+      [37, 42],
+      [0, 164],
+      [-37, 42],
+      [0, 82],
+      [37, 41],
+      [0, 82],
+      [110, 124],
+      [73, 0],
+      [38, 41],
+      [110, 0],
+      [146, -165],
+      [0, -41],
+      [37, -41],
+      [0, -41],
+      [37, -41],
+      [0, -41],
+      [110, -124],
+      [37, 0],
+      [37, 41],
+      [0, 41],
+      [73, 83],
+      [0, 123],
+      [-36, 41],
+      [0, 42],
+      [-37, 41],
+      [0, 41],
+      [-74, 82],
+      [0, 83],
+      [-37, 41],
+      [0, 82],
+      [294, 329],
+      [111, 0],
+      [37, -41],
+      [36, 41],
+      [74, 0]
+    ],
+    [
+      [17792, 10828],
+      [36, -42],
+      [0, -41],
+      [-74, -82],
+      [0, -412],
+      [38, -41],
+      [0, -41],
+      [36, -41],
+      [0, -83],
+      [-74, -82],
+      [0, -41],
+      [-110, 0],
+      [-73, -82],
+      [-37, 0],
+      [-110, -124],
+      [-111, 0],
+      [-36, -41],
+      [0, -41],
+      [-258, 0],
+      [-36, -42],
+      [-37, 0],
+      [-37, 42],
+      [-110, 0],
+      [-37, -42],
+      [-74, 0],
+      [-36, 42],
+      [-74, 0],
+      [-36, 41],
+      [-38, 0],
+      [-257, 288],
+      [0, 41],
+      [221, 247],
+      [36, 0],
+      [74, 82],
+      [37, 42],
+      [73, 0],
+      [37, 41],
+      [0, 41],
+      [37, 41],
+      [-110, 124],
+      [-74, 0],
+      [-36, 41],
+      [0, 82],
+      [73, 83],
+      [37, 0],
+      [29, 32],
+      [44, 50],
+      [37, 0],
+      [74, -83],
+      [36, 1],
+      [37, -42],
+      [74, 0],
+      [73, 83],
+      [73, 0],
+      [38, 41],
+      [73, 0],
+      [37, -41],
+      [36, 0],
+      [37, -41],
+      [37, 0],
+      [110, 123],
+      [37, 0],
+      [74, 82],
+      [73, 0],
+      [73, -82],
+      [0, -41],
+      [38, -41],
+      [0, -41]
+    ],
+    [
+      [29437, 9179],
+      [-54, -11],
+      [-28, 30],
+      [-30, 53],
+      [-48, 62],
+      [-55, 71],
+      [-60, 72],
+      [-46, 88],
+      [-37, 95],
+      [-16, 99],
+      [17, 52],
+      [11, 34],
+      [67, -10],
+      [46, -21],
+      [46, -51],
+      [27, -42],
+      [37, -72],
+      [37, -51],
+      [36, -42],
+      [64, -103],
+      [46, -41],
+      [37, -21],
+      [24, -58],
+      [-39, -74],
+      [-82, -59]
+    ],
+    [
+      [31695, 9232],
+      [-72, 0],
+      [-56, 72],
+      [-27, 41],
+      [-29, 73],
+      [65, 51],
+      [92, 72],
+      [92, 175],
+      [18, 21],
+      [18, 20],
+      [38, 0],
+      [36, -41],
+      [83, -124],
+      [-18, -102],
+      [-101, -155],
+      [-38, -31],
+      [-101, -72]
+    ],
+    [
+      [31356, 9428],
+      [-92, -93],
+      [-74, -123],
+      [-55, -72],
+      [-46, -11],
+      [-120, 0],
+      [-55, 41],
+      [-110, 52],
+      [0, 165],
+      [64, 50],
+      [37, 0],
+      [45, -31],
+      [28, -10],
+      [37, 0],
+      [73, 10],
+      [37, 72],
+      [72, 42],
+      [29, 25],
+      [18, 16],
+      [75, -51],
+      [37, -41],
+      [0, -41]
+    ],
+    [
+      [31135, 8934],
+      [74, -83],
+      [36, 0],
+      [37, 41],
+      [37, 0],
+      [257, -288],
+      [36, 0],
+      [222, -247],
+      [36, 0],
+      [31, -50],
+      [38, -47],
+      [29, -60],
+      [8, -75],
+      [-12, -73],
+      [-18, -63],
+      [-17, -56],
+      [-16, -50],
+      [-6, -60],
+      [-19, -72],
+      [-73, -83],
+      [-42, -38],
+      [-30, 14],
+      [-45, 18],
+      [-39, 27],
+      [-29, 35],
+      [-20, 47],
+      [-24, 47],
+      [-34, 45],
+      [-42, 45],
+      [-45, 47],
+      [-47, 45],
+      [-42, 44],
+      [-20, 25],
+      [-111, 124],
+      [0, 41],
+      [-36, 41],
+      [0, 41],
+      [-38, 41],
+      [0, 42],
+      [-36, 41],
+      [0, 41],
+      [-36, 41],
+      [36, 41],
+      [-74, 82],
+      [0, 42],
+      [-74, 82],
+      [0, 82],
+      [30, 33],
+      [44, 50],
+      [74, 0]
+    ],
+    [
+      [18048, 8481],
+      [-110, 0],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [-73, 83],
+      [0, 41],
+      [-74, 82],
+      [36, 41],
+      [-36, 41],
+      [184, 0],
+      [36, -41],
+      [0, -329],
+      [0, -41]
+    ],
+    [
+      [32165, 8645],
+      [0, -41],
+      [72, 0],
+      [38, -41],
+      [73, 0],
+      [37, 41],
+      [36, -41],
+      [44, -33],
+      [29, -58],
+      [24, -56],
+      [22, -51],
+      [14, -47],
+      [-28, -58],
+      [-31, -52],
+      [-31, -4],
+      [-44, 21],
+      [-72, 9],
+      [-37, 41],
+      [-36, 0],
+      [-38, 41],
+      [-36, 0],
+      [-36, 41],
+      [-38, 0],
+      [-36, 42],
+      [-37, 0],
+      [-37, 41],
+      [-37, 0],
+      [-73, 82],
+      [0, 41],
+      [-37, 0],
+      [-36, 41],
+      [0, 41],
+      [-38, 42],
+      [111, 123],
+      [37, 0],
+      [36, 41],
+      [74, 0],
+      [37, -41],
+      [0, -82],
+      [74, -83]
+    ],
+    [
+      [17608, 8357],
+      [-111, 0],
+      [0, 42],
+      [-73, 41],
+      [-37, 41],
+      [-74, 41],
+      [74, 82],
+      [0, 83],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [368, 0],
+      [0, -82],
+      [-73, -83],
+      [36, -41],
+      [-73, -41],
+      [73, -41],
+      [0, -82],
+      [-36, -41],
+      [0, -42]
+    ],
+    [
+      [30400, 8357],
+      [36, -41],
+      [38, 0],
+      [36, -41],
+      [74, 0],
+      [36, 41],
+      [74, 83],
+      [37, 0],
+      [110, -124],
+      [0, -82],
+      [36, -42],
+      [74, 1],
+      [148, -165],
+      [0, -41],
+      [-38, -42],
+      [-36, 0],
+      [-74, -82],
+      [0, -165],
+      [36, -41],
+      [0, -41],
+      [38, -41],
+      [0, -83],
+      [36, -40],
+      [0, -83],
+      [-36, -41],
+      [-4, -49],
+      [-5, -67],
+      [-58, -73],
+      [-21, -20],
+      [-44, 12],
+      [-52, 33],
+      [-48, 41],
+      [-39, 42],
+      [-30, 46],
+      [-28, 51],
+      [-28, 61],
+      [-42, 57],
+      [-42, 72],
+      [-184, 206],
+      [0, 41],
+      [-110, 123],
+      [-37, 40],
+      [-43, 47],
+      [-58, 48],
+      [-61, 61],
+      [-69, 56],
+      [-46, 71],
+      [5, 92],
+      [65, 79],
+      [70, 62],
+      [71, 31],
+      [58, 14],
+      [27, -17],
+      [19, -13],
+      [40, -29],
+      [40, -22],
+      [29, -26]
+    ],
+    [
+      [19188, 6711],
+      [74, -83],
+      [112, 11],
+      [128, -52],
+      [53, 0],
+      [38, -41],
+      [73, 0],
+      [111, -124],
+      [36, 0],
+      [37, -41],
+      [37, 0],
+      [36, -41],
+      [74, 0],
+      [147, -82],
+      [146, 0],
+      [38, 41],
+      [80, 57],
+      [146, 51],
+      [56, 62],
+      [122, 77],
+      [183, 0],
+      [37, 41],
+      [37, 41],
+      [148, 0],
+      [36, 41],
+      [37, 0],
+      [18, 21],
+      [19, 21],
+      [36, -42],
+      [37, 0],
+      [37, -41],
+      [37, 41],
+      [36, 0],
+      [74, 83],
+      [36, -41],
+      [111, -37],
+      [56, -134],
+      [73, -196],
+      [46, -145],
+      [0, -413],
+      [9, -340],
+      [0, -218],
+      [0, -82],
+      [-37, -41],
+      [0, -124],
+      [-184, -205],
+      [-36, 0],
+      [-217, -85],
+      [-201, -93],
+      [-101, -103],
+      [-9, -197],
+      [-23, -222],
+      [0, -83],
+      [-38, -41],
+      [-122, -174],
+      [-166, -165],
+      [-116, -155],
+      [-37, 0],
+      [-18, -21],
+      [-18, -20],
+      [-74, 0],
+      [-36, -41],
+      [-38, 0],
+      [-18, -21],
+      [-18, -20],
+      [-38, 0],
+      [-36, -41],
+      [-257, -42],
+      [-37, 42],
+      [-37, 0],
+      [-36, 41],
+      [-37, 0],
+      [-37, 41],
+      [-36, 0],
+      [-111, 123],
+      [0, 41],
+      [73, 83],
+      [74, 0],
+      [37, -41],
+      [147, 0],
+      [37, -42],
+      [73, 0],
+      [37, -41],
+      [74, 0],
+      [36, 41],
+      [36, 0],
+      [74, 83],
+      [74, 0],
+      [36, 41],
+      [38, 0],
+      [293, 329],
+      [0, 83],
+      [38, 41],
+      [0, 247],
+      [36, 41],
+      [0, 41],
+      [-110, 124],
+      [-74, 0],
+      [-36, 41],
+      [-37, 0],
+      [-37, 41],
+      [-37, 0],
+      [-74, 82],
+      [-36, 0],
+      [-36, 42],
+      [-38, -1],
+      [-110, 124],
+      [-36, 0],
+      [-111, 124],
+      [-37, 0],
+      [-73, 82],
+      [-37, 0],
+      [-73, 82],
+      [-37, 0],
+      [-37, 41],
+      [-36, 0],
+      [-38, -41],
+      [-110, 0],
+      [-36, -41],
+      [-38, 0],
+      [-36, -41],
+      [-37, 0],
+      [-73, -82],
+      [0, -42],
+      [-295, -329],
+      [0, -82],
+      [-36, -42],
+      [0, -164],
+      [147, -165],
+      [0, -41],
+      [37, 0],
+      [293, -329],
+      [0, -42],
+      [-73, -82],
+      [-37, 0],
+      [-588, 659],
+      [0, 41],
+      [37, 41],
+      [0, 124],
+      [37, 41],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 42],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 41],
+      [-37, 42],
+      [0, 41],
+      [-36, 41],
+      [0, 82],
+      [-37, 41],
+      [0, 42],
+      [-37, 41],
+      [0, 41],
+      [37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 83],
+      [-37, 41],
+      [0, 41],
+      [-36, 41],
+      [0, 371],
+      [36, 41],
+      [0, 41],
+      [-36, 41],
+      [0, 124],
+      [36, 41],
+      [0, 124],
+      [74, 82],
+      [0, 82],
+      [37, 41],
+      [0, 124],
+      [36, 41],
+      [0, 165],
+      [-36, 41],
+      [0, 41],
+      [-74, 82],
+      [0, 165],
+      [37, 41],
+      [0, 42],
+      [110, 123],
+      [0, -41],
+      [74, -82],
+      [0, -165],
+      [73, -83],
+      [0, -41],
+      [148, -165],
+      [0, -41],
+      [36, -41],
+      [0, -164]
+    ],
+    [
+      [28672, 7204],
+      [-111, 0],
+      [0, 42],
+      [-72, 41],
+      [0, 165],
+      [36, 41],
+      [184, 0],
+      [0, -206],
+      [-37, -41],
+      [0, -42]
+    ],
+    [
+      [28866, 6877],
+      [-15, -26],
+      [-25, 25],
+      [-83, -1],
+      [-36, 21],
+      [-28, 51],
+      [28, 42],
+      [0, 41],
+      [9, 30],
+      [17, 66],
+      [34, 70],
+      [48, 83],
+      [62, 36],
+      [63, 1],
+      [63, -18],
+      [51, -57],
+      [22, -98],
+      [-41, -70],
+      [-55, -54],
+      [-43, -55],
+      [-35, -50],
+      [-36, -37]
+    ],
+    [
+      [14152, 6752],
+      [0, -41],
+      [74, -83],
+      [0, -41],
+      [36, -41],
+      [37, 0],
+      [74, -82],
+      [110, 0],
+      [36, 41],
+      [38, 0],
+      [36, 41],
+      [37, 0],
+      [36, 41],
+      [37, 41],
+      [38, 0],
+      [36, 41],
+      [147, 0],
+      [37, -41],
+      [37, -41],
+      [0, -41],
+      [11, -61],
+      [17, -41],
+      [0, -62],
+      [-64, -10],
+      [-46, 0],
+      [-73, -21],
+      [-64, -62],
+      [-36, -52],
+      [0, -61],
+      [27, -21],
+      [36, -21],
+      [92, -21],
+      [137, 0],
+      [37, -30],
+      [75, -73],
+      [92, -41],
+      [18, -10],
+      [35, -113],
+      [146, -165],
+      [38, 0],
+      [29, -78],
+      [-2, -80],
+      [-36, -66],
+      [-54, -44],
+      [-65, -12],
+      [-59, 21],
+      [-51, 22],
+      [-35, 28],
+      [-28, 16],
+      [-44, 21],
+      [-29, -21],
+      [-44, -41],
+      [-60, -47],
+      [-80, -30],
+      [-93, -24],
+      [-94, -34],
+      [-98, -23],
+      [-49, -6],
+      [-46, 22],
+      [-60, 14],
+      [-57, 31],
+      [-61, 29],
+      [-71, 20],
+      [-24, 8],
+      [-47, 16],
+      [-76, -5],
+      [-78, -18],
+      [-77, -6],
+      [-75, -1],
+      [-76, 0],
+      [-73, -8],
+      [-63, -30],
+      [-64, -22],
+      [-63, -10],
+      [-67, 17],
+      [-60, -3],
+      [-55, -19],
+      [-59, -7],
+      [-61, -1],
+      [-62, 3],
+      [-57, 11],
+      [-51, 21],
+      [-53, 10],
+      [-48, 14],
+      [-47, 19],
+      [-53, 5],
+      [-58, 0],
+      [-58, 1],
+      [-60, 6],
+      [-56, 27],
+      [-60, 14],
+      [-55, 24],
+      [-61, 9],
+      [-64, 1],
+      [-68, 1],
+      [-71, 5],
+      [-71, 21],
+      [-75, 17],
+      [-74, 25],
+      [-72, 38],
+      [-46, 74],
+      [3, 98],
+      [44, 81],
+      [58, 66],
+      [63, 60],
+      [75, 48],
+      [80, 43],
+      [78, 41],
+      [73, 46],
+      [65, 58],
+      [54, 71],
+      [51, 75],
+      [49, 78],
+      [48, 78],
+      [52, 71],
+      [58, 56],
+      [64, 43],
+      [73, 0],
+      [19, 21],
+      [18, 21],
+      [73, 0],
+      [37, 41],
+      [73, 0],
+      [38, 41],
+      [73, 0],
+      [37, -41],
+      [110, 0],
+      [36, 41],
+      [38, 0],
+      [36, 41],
+      [74, 0],
+      [15, 17],
+      [21, 24],
+      [74, 0],
+      [37, 41],
+      [36, 0],
+      [37, 41],
+      [37, 0],
+      [36, 42],
+      [38, 0],
+      [36, 41],
+      [38, 0],
+      [110, -124],
+      [0, -123],
+      [36, -41]
+    ],
+    [
+      [23415, 6669],
+      [38, -41],
+      [72, 0],
+      [221, -247],
+      [0, -82],
+      [37, -41],
+      [0, -42],
+      [111, -123],
+      [0, -41],
+      [110, -124],
+      [74, 0],
+      [36, 41],
+      [15, -17],
+      [21, -24],
+      [38, 0],
+      [36, -41],
+      [0, -41],
+      [37, -41],
+      [0, -42],
+      [37, -40],
+      [36, 0],
+      [74, -83],
+      [0, -41],
+      [110, -124],
+      [37, -41],
+      [0, -164],
+      [-37, -42],
+      [0, -41],
+      [-96, -108],
+      [-124, 26],
+      [-37, 41],
+      [-73, 0],
+      [-38, 41],
+      [-36, -41],
+      [-103, 34],
+      [-95, 23],
+      [-35, 49],
+      [-31, 46],
+      [-30, 54],
+      [-37, 0],
+      [-37, 41],
+      [-37, 0],
+      [-36, 41],
+      [-74, 0],
+      [-110, 124],
+      [-220, 0],
+      [-37, 41],
+      [0, 41],
+      [-37, 41],
+      [0, 124],
+      [-37, 41],
+      [0, 123],
+      [-37, 42],
+      [0, 41],
+      [-22, 93],
+      [22, 109],
+      [32, 88],
+      [11, 74],
+      [27, 46],
+      [41, 43],
+      [37, 41],
+      [0, 41],
+      [73, 82],
+      [73, 0]
+    ],
+    [
+      [14741, 3705],
+      [36, -41],
+      [37, 0],
+      [37, -41],
+      [73, 0],
+      [330, -371],
+      [-36, -41],
+      [0, -82],
+      [-74, -82],
+      [-220, 0],
+      [-37, -42],
+      [-36, 0],
+      [0, -41],
+      [-37, -41],
+      [0, -41],
+      [-37, -42],
+      [0, -205],
+      [-110, -124],
+      [-148, 0],
+      [-36, -41],
+      [-184, 0],
+      [-37, -41],
+      [-36, 0],
+      [-22, -24],
+      [-15, -17],
+      [-37, 0],
+      [-36, -41],
+      [-74, 0],
+      [-36, -42],
+      [-38, 0],
+      [-74, -82],
+      [-73, 0],
+      [-184, -206],
+      [-36, 42],
+      [-37, -1],
+      [-37, 41],
+      [0, 42],
+      [-36, 41],
+      [0, 41],
+      [-38, 41],
+      [0, 41],
+      [-36, 42],
+      [0, 82],
+      [36, 41],
+      [0, 41],
+      [-36, 41],
+      [0, 124],
+      [-36, 41],
+      [0, 41],
+      [-74, 82],
+      [0, 42],
+      [-74, 82],
+      [0, 41],
+      [-36, 41],
+      [0, 41],
+      [36, 42],
+      [18, 10],
+      [37, 31],
+      [93, -83],
+      [36, 0],
+      [36, 42],
+      [74, 0],
+      [37, -42],
+      [110, 0],
+      [37, -41],
+      [73, 0],
+      [37, 41],
+      [37, 0],
+      [148, 165],
+      [0, 83],
+      [36, 41],
+      [0, 82],
+      [36, 41],
+      [0, 165],
+      [38, 41],
+      [257, 0],
+      [36, -41],
+      [148, 0],
+      [36, 41],
+      [148, 0]
+    ],
+    [
+      [15366, 1441],
+      [36, -42],
+      [74, 0],
+      [110, -123],
+      [37, 0],
+      [36, -41],
+      [37, 0],
+      [37, -41],
+      [36, 41],
+      [74, 0],
+      [74, 82],
+      [73, 0],
+      [37, -41],
+      [36, 0],
+      [38, -41],
+      [146, 0],
+      [37, -41],
+      [110, 0],
+      [74, -83],
+      [36, 0],
+      [38, 41],
+      [36, 0],
+      [25, -81],
+      [-8, -74],
+      [-29, -64],
+      [-32, -54],
+      [-36, -43],
+      [-33, -39],
+      [-22, -38],
+      [-18, -37],
+      [-16, -42],
+      [-22, -42],
+      [-29, -44],
+      [-27, -55],
+      [-12, -70],
+      [-13, -74],
+      [12, -74],
+      [3, -76],
+      [-7, -74],
+      [-30, -48],
+      [-73, -82],
+      [-37, -41],
+      [-37, 41],
+      [-36, -41],
+      [-258, 0],
+      [-36, 41],
+      [-38, 0],
+      [-36, 41],
+      [-257, 0],
+      [-294, 329],
+      [0, 289],
+      [-38, 41],
+      [0, 82],
+      [-36, 0],
+      [-37, 41],
+      [-220, 0],
+      [-37, 42],
+      [-73, 82],
+      [0, 41],
+      [36, 41],
+      [0, 41],
+      [147, 165],
+      [37, 0],
+      [37, 41],
+      [110, 0],
+      [36, 41],
+      [38, 0],
+      [36, 41],
+      [36, 0],
+      [38, 42],
+      [74, 0]
+    ]
+  ],
+  "transform": {
+    "scale": [0.000007556642339590362, 0.000006747147159528739],
+    "translate": [103.61666870117193, 1.166389942169189]
+  },
+  "objects": {
+    "singapore": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [
+            [[0]],
+            [[1]],
+            [[2]],
+            [[3]],
+            [[4]],
+            [[5]],
+            [[6]],
+            [[7]],
+            [[8]],
+            [[9]],
+            [[10]],
+            [[11]],
+            [[12]],
+            [[13]],
+            [[14]],
+            [[15]],
+            [[16]],
+            [[17]],
+            [[18]],
+            [[19]],
+            [[20]],
+            [[21]],
+            [[22]],
+            [[23]],
+            [[24]],
+            [[25]],
+            [[26]],
+            [[27]],
+            [[28]],
+            [[29]],
+            [[30]],
+            [[31]],
+            [[32]],
+            [[33]],
+            [[34]],
+            [[35]],
+            [[36]],
+            [[37]],
+            [[38]],
+            [[39]],
+            [[40]],
+            [[41]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 205,
+            "ISO": "SGP",
+            "NAME_0": "Singapore",
+            "OBJECTID_1": 197,
+            "ISO3": "SGP",
+            "NAME_ENGLI": "Singapore",
+            "NAME_ISO": "SINGAPORE",
+            "NAME_FAO": "Singapore",
+            "NAME_LOCAL": "Singapore",
+            "NAME_OBSOL": null,
+            "NAME_VARIA": null,
+            "NAME_NONLA": null,
+            "NAME_FRENC": "Singapour",
+            "NAME_SPANI": "Singapur",
+            "NAME_RUSSI": "Сингапур",
+            "NAME_ARABI": "سنغافورة",
+            "NAME_CHINE": "新加坡",
+            "WASPARTOF": null,
+            "CONTAINS": null,
+            "SOVEREIGN": "Singapore",
+            "ISO2": "SG",
+            "WWW": null,
+            "FIPS": "SN",
+            "ISON": 702,
+            "VALIDFR": "19650809",
+            "VALIDTO": "Present",
+            "POP2000": 4018114,
+            "SQKM": 526.041,
+            "POPSQKM": 7638.40461105,
+            "UNREGION1": "South-Eastern Asia",
+            "UNREGION2": "Asia",
+            "DEVELOPING": 1,
+            "CIS": 0,
+            "Transition": 0,
+            "OECD": 0,
+            "WBREGION": null,
+            "WBINCOME": "High income: nonOECD",
+            "WBDEBT": "Debt not classified",
+            "WBOTHER": null,
+            "CEEAC": 0,
+            "CEMAC": 0,
+            "CEPLG": 0,
+            "COMESA": 0,
+            "EAC": 0,
+            "ECOWAS": 0,
+            "IGAD": 0,
+            "IOC": 0,
+            "MRU": 0,
+            "SACU": 0,
+            "UEMOA": 0,
+            "UMA": 0,
+            "PALOP": 0,
+            "PARTA": 0,
+            "CACM": 0,
+            "EurAsEC": 0,
+            "Agadir": 0,
+            "SAARC": 0,
+            "ASEAN": 1,
+            "NAFTA": 0,
+            "GCC": 0,
+            "CSN": 0,
+            "CARICOM": 0,
+            "EU": 0,
+            "CAN": 0,
+            "ACP": 0,
+            "Landlocked": 0,
+            "AOSIS": 1,
+            "SIDS": 1,
+            "Islands": 1,
+            "LDC": 0
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/spain-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/spain-topo.json
new file mode 100644
index 0000000..5f75e77
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/spain-topo.json
@@ -0,0 +1,3329 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [12672, 10414],
+      [-31, -19],
+      [-28, -54],
+      [-78, -100],
+      [-31, -152],
+      [-40, -89],
+      [-4, -55],
+      [-57, -36],
+      [-16, -71],
+      [-46, -32],
+      [-1, -34],
+      [-47, -47],
+      [-53, -11],
+      [-47, 74],
+      [-49, 47],
+      [-37, 8],
+      [-48, -33],
+      [-35, 27],
+      [-69, -23],
+      [-59, -116],
+      [-44, -25],
+      [-56, -1],
+      [-66, 20],
+      [-53, 55],
+      [-30, -12],
+      [-124, 11]
+    ],
+    [
+      [11523, 9746],
+      [-9, 40],
+      [86, 60],
+      [-32, 61],
+      [70, 78],
+      [-35, 118],
+      [58, 13],
+      [16, 65],
+      [25, 11],
+      [38, 120],
+      [51, -18],
+      [91, -54],
+      [-4, 78],
+      [23, 117],
+      [51, 55],
+      [84, 66],
+      [78, 16],
+      [-14, 96],
+      [46, 11],
+      [-6, 77],
+      [36, 89],
+      [-19, 35],
+      [5, 71],
+      [67, 43]
+    ],
+    [
+      [12229, 10994],
+      [27, -30],
+      [38, 13],
+      [47, -18],
+      [51, -45],
+      [-10, -71],
+      [10, -51],
+      [-13, -58],
+      [45, -91],
+      [83, -143],
+      [83, -13],
+      [82, -73]
+    ],
+    [
+      [9980, 10017],
+      [20, -16],
+      [22, -90],
+      [-36, -71],
+      [-28, -16],
+      [-82, 59],
+      [-49, -63],
+      [39, -48],
+      [-30, -100],
+      [-38, -52],
+      [-45, -20],
+      [-65, -88],
+      [-67, 13],
+      [1, -34],
+      [65, -16],
+      [26, 42],
+      [44, -3],
+      [59, -107],
+      [31, -100],
+      [48, -32]
+    ],
+    [
+      [9895, 9275],
+      [-48, -82],
+      [-18, -85],
+      [-67, 24],
+      [-12, -97],
+      [-32, -35],
+      [-75, -44],
+      [-48, 38],
+      [-117, 31],
+      [-35, 58],
+      [-61, 59],
+      [-40, -10],
+      [-61, 28],
+      [-25, 70],
+      [-45, 31],
+      [-46, 90],
+      [-26, 88],
+      [9, 126],
+      [-53, 37],
+      [-74, 18],
+      [-36, 93],
+      [70, 82]
+    ],
+    [
+      [9055, 9795],
+      [-4, 63],
+      [17, 47]
+    ],
+    [
+      [9068, 9905],
+      [111, -6],
+      [63, -39],
+      [97, -13],
+      [65, 7],
+      [13, 46],
+      [55, 33],
+      [67, -6],
+      [38, 60],
+      [65, -65],
+      [45, 24],
+      [42, 50],
+      [-32, 53],
+      [59, 20],
+      [31, -86],
+      [70, 49],
+      [52, -82],
+      [71, 67]
+    ],
+    [
+      [10053, 11864],
+      [35, -35],
+      [101, -17],
+      [7, -71],
+      [56, -18],
+      [126, -79],
+      [11, -31],
+      [78, -40],
+      [55, -59],
+      [127, -59]
+    ],
+    [
+      [10649, 11455],
+      [37, -52],
+      [40, -173],
+      [-87, -122],
+      [17, -70],
+      [-21, -172],
+      [58, -15],
+      [-21, -60],
+      [57, -49],
+      [-49, -44],
+      [50, -44],
+      [88, -140],
+      [37, -71]
+    ],
+    [
+      [10855, 10443],
+      [-66, 2],
+      [-52, -62],
+      [-42, 7],
+      [-42, -98],
+      [7, -33],
+      [-56, -49]
+    ],
+    [
+      [10604, 10210],
+      [-34, 34],
+      [-4, 58],
+      [-31, 13],
+      [-45, -27],
+      [-18, -36],
+      [-58, -15],
+      [-60, 50]
+    ],
+    [
+      [10354, 10287],
+      [-14, 84],
+      [-83, 1],
+      [-32, 24],
+      [-48, 86],
+      [-43, 105],
+      [7, 87],
+      [-52, 95],
+      [-37, 13],
+      [-46, -60],
+      [-53, 19],
+      [-128, -99],
+      [-29, 25],
+      [-18, 87],
+      [78, 32],
+      [-28, 117],
+      [-46, 34],
+      [-11, 83],
+      [-61, 64],
+      [-1, 45],
+      [-69, 95]
+    ],
+    [
+      [9640, 11224],
+      [38, 40],
+      [7, 102],
+      [-38, 70],
+      [-7, 60],
+      [13, 51],
+      [64, 32],
+      [51, 53],
+      [38, 78],
+      [45, -9],
+      [13, 34],
+      [96, 74],
+      [93, 55]
+    ],
+    [
+      [11966, 11173],
+      [98, -53],
+      [62, -9]
+    ],
+    [
+      [12126, 11111],
+      [50, -70],
+      [53, -47]
+    ],
+    [
+      [11523, 9746],
+      [-101, 3],
+      [-68, -23],
+      [-59, -39],
+      [-98, 20],
+      [-36, 32],
+      [-57, -16],
+      [-78, 8]
+    ],
+    [
+      [11026, 9731],
+      [9, 55],
+      [-47, 72],
+      [-132, 37],
+      [-86, 64],
+      [-43, 8],
+      [-43, 59],
+      [-38, 3],
+      [-11, 112],
+      [-31, 69]
+    ],
+    [
+      [10855, 10443],
+      [38, -25],
+      [82, 7],
+      [32, 73],
+      [90, 69],
+      [44, 12],
+      [70, 56],
+      [22, 39],
+      [83, -57],
+      [78, 25],
+      [27, 55],
+      [69, 4],
+      [61, -49],
+      [146, 74],
+      [-1, 91],
+      [64, 108],
+      [27, 70],
+      [69, 61],
+      [18, -14],
+      [56, 49],
+      [-1, 55],
+      [37, 27]
+    ],
+    [
+      [8608, 11306],
+      [56, -30],
+      [49, -1],
+      [-16, -63],
+      [44, -29],
+      [104, 4],
+      [27, -75],
+      [71, -8],
+      [62, 42],
+      [85, -86],
+      [77, -20],
+      [17, -20]
+    ],
+    [
+      [9184, 11020],
+      [42, -43],
+      [-26, -29],
+      [25, -82],
+      [-44, 13],
+      [-49, -54],
+      [-48, 7],
+      [-125, -43],
+      [-31, -107],
+      [88, -13],
+      [-2, -35],
+      [74, -165],
+      [-39, -15],
+      [-22, -80],
+      [40, -41],
+      [-10, -86],
+      [-31, -154],
+      [23, -80],
+      [-11, -79],
+      [30, -29]
+    ],
+    [
+      [9055, 9795],
+      [-32, 7],
+      [-50, 121],
+      [-50, 65],
+      [-57, 48],
+      [-142, 100],
+      [-73, 36],
+      [-42, 38],
+      [-34, 120],
+      [-45, -97],
+      [-80, 13],
+      [-21, -12],
+      [-186, -25],
+      [-19, 68],
+      [-6, 154],
+      [-38, 137],
+      [-25, 37],
+      [59, 119],
+      [17, 97],
+      [76, 65],
+      [53, 116],
+      [7, 73],
+      [67, 2],
+      [38, 50],
+      [78, -21],
+      [29, 149],
+      [29, 51]
+    ],
+    [
+      [10649, 11455],
+      [10, 59],
+      [77, -22],
+      [148, -17],
+      [83, 10],
+      [36, 50],
+      [59, 3],
+      [84, -33],
+      [71, 16],
+      [43, -12],
+      [73, 45],
+      [1, 38],
+      [188, -39],
+      [50, 42],
+      [55, -30],
+      [42, 27],
+      [37, -21],
+      [98, 83]
+    ],
+    [
+      [11804, 11654],
+      [69, -39],
+      [56, 17],
+      [25, -24],
+      [-4, -81],
+      [68, -18],
+      [-2, -104],
+      [34, -16],
+      [-4, -107],
+      [-80, -109]
+    ],
+    [
+      [11026, 9731],
+      [-43, 18],
+      [-94, -29],
+      [-84, 24],
+      [-34, -26],
+      [-106, -15],
+      [-111, 13],
+      [-27, -15],
+      [-63, -117],
+      [-76, -44],
+      [-23, -56],
+      [-88, -22],
+      [-81, 24],
+      [-57, -8],
+      [-54, -43],
+      [-61, -11],
+      [-102, -76],
+      [-27, -73]
+    ],
+    [
+      [9980, 10017],
+      [66, 31],
+      [113, 88],
+      [14, 43],
+      [49, 49],
+      [19, -43],
+      [71, 40],
+      [-21, 50],
+      [63, 12]
+    ],
+    [
+      [9184, 11020],
+      [34, 34],
+      [80, 27],
+      [60, -3],
+      [34, 73],
+      [-3, 64],
+      [57, 55],
+      [115, -3],
+      [-40, -48],
+      [36, -46],
+      [46, 58],
+      [37, -7]
+    ],
+    [
+      [13364, 16350],
+      [118, -120],
+      [49, 19],
+      [49, -31],
+      [47, 8],
+      [60, 40],
+      [121, -72],
+      [66, -85],
+      [48, -10],
+      [134, 54],
+      [64, -21],
+      [26, -42],
+      [52, 50],
+      [27, -32],
+      [100, 9],
+      [102, -12]
+    ],
+    [
+      [14427, 16105],
+      [37, -74],
+      [46, -11],
+      [-26, -114],
+      [-28, -33],
+      [47, -134],
+      [-48, -211],
+      [5, -32],
+      [-39, -102],
+      [-68, -100],
+      [23, -52],
+      [-39, -69],
+      [-45, -20],
+      [-11, -38],
+      [-52, -10],
+      [-56, -81],
+      [16, -87],
+      [41, -7],
+      [34, -54],
+      [-38, -55],
+      [-38, -4],
+      [-10, -85]
+    ],
+    [
+      [14178, 14732],
+      [-69, 22],
+      [-20, -27],
+      [-67, -16],
+      [-19, -40],
+      [-135, 23],
+      [-27, 121],
+      [-40, 53],
+      [1, 59],
+      [-64, -19],
+      [-89, 64],
+      [-9, 49],
+      [-105, 73],
+      [-16, 109],
+      [-81, 69],
+      [-21, 48],
+      [-106, 6],
+      [-44, 64],
+      [20, 64],
+      [50, -16],
+      [0, 175],
+      [25, 64],
+      [-39, 29],
+      [-25, -57],
+      [-61, 18],
+      [38, 91],
+      [1, 44],
+      [-31, 53],
+      [-32, 140],
+      [28, 85],
+      [-10, 81]
+    ],
+    [
+      [13231, 16161],
+      [41, 46],
+      [-7, 65],
+      [56, 80],
+      [43, -2]
+    ],
+    [
+      [14090, 14372],
+      [47, -91],
+      [-27, -107],
+      [25, -71],
+      [-83, -94]
+    ],
+    [
+      [14052, 14009],
+      [-44, -6],
+      [-54, -39],
+      [-20, 40],
+      [-62, -1],
+      [-100, 59],
+      [-22, -30],
+      [-9, -68],
+      [-54, -29],
+      [-55, 4],
+      [-2, -47],
+      [67, -13],
+      [-7, -102],
+      [9, -49],
+      [-44, -28],
+      [48, -62],
+      [-43, -61],
+      [-45, -38],
+      [12, -31],
+      [-85, -39],
+      [-38, 25],
+      [-33, -129],
+      [-59, -85],
+      [-75, -11],
+      [-21, -55],
+      [-37, -15],
+      [6, -74],
+      [25, -28]
+    ],
+    [
+      [13310, 13097],
+      [-53, -37],
+      [-35, 28],
+      [5, 77],
+      [-65, 40],
+      [-116, -11]
+    ],
+    [
+      [13046, 13194],
+      [-18, 41]
+    ],
+    [
+      [13028, 13235],
+      [62, 28],
+      [10, 26],
+      [-58, 58],
+      [-75, 2],
+      [-30, 59],
+      [-56, -45],
+      [-70, 17]
+    ],
+    [
+      [12811, 13380],
+      [-20, 43],
+      [-50, 6],
+      [-204, 222]
+    ],
+    [
+      [12537, 13651],
+      [44, 69],
+      [43, 26],
+      [5, 99],
+      [67, -19],
+      [48, 134],
+      [-20, 56],
+      [13, 82],
+      [-58, 68],
+      [3, 69]
+    ],
+    [
+      [12682, 14235],
+      [45, -5],
+      [85, 40],
+      [-8, 45],
+      [37, 42],
+      [94, -10],
+      [12, 59],
+      [47, 38],
+      [68, -4],
+      [13, 35],
+      [113, -98],
+      [56, 57],
+      [65, -28],
+      [29, 71],
+      [51, -62],
+      [65, 85],
+      [-15, 129],
+      [54, 45],
+      [61, -9],
+      [56, -78],
+      [71, -18],
+      [70, -72],
+      [32, -1],
+      [129, -72],
+      [10, -33],
+      [111, -28],
+      [57, 9]
+    ],
+    [
+      [14178, 14732],
+      [30, -62],
+      [-19, -22],
+      [28, -54]
+    ],
+    [
+      [14217, 14594],
+      [-16, -55],
+      [-32, -3],
+      [-15, -65],
+      [-64, -34],
+      [0, -65]
+    ],
+    [
+      [12682, 14235],
+      [-153, 162],
+      [-89, 46],
+      [-20, 37],
+      [-71, -28]
+    ],
+    [
+      [12349, 14452],
+      [-73, 40],
+      [-18, 144],
+      [38, 66],
+      [15, 70],
+      [50, -20],
+      [5, -46],
+      [58, 27],
+      [-21, 83],
+      [10, 64],
+      [-20, 58],
+      [54, -2],
+      [49, 67],
+      [36, -1],
+      [19, 79],
+      [-50, 59],
+      [26, 44],
+      [-29, 85],
+      [0, 61]
+    ],
+    [
+      [12498, 15330],
+      [7, 44]
+    ],
+    [
+      [12505, 15374],
+      [62, -13],
+      [25, -34],
+      [61, 2],
+      [45, -41],
+      [134, -15],
+      [89, 139],
+      [-72, 89],
+      [-13, 102],
+      [13, 74],
+      [54, 69],
+      [-24, 25],
+      [14, 48],
+      [53, 63],
+      [-12, 43],
+      [43, 22],
+      [57, 72],
+      [4, 40],
+      [87, 1],
+      [8, 55],
+      [61, 12],
+      [37, 34]
+    ],
+    [
+      [11504, 16814],
+      [-3, -55],
+      [-52, 8],
+      [-121, -41],
+      [-36, -31],
+      [10, -116]
+    ],
+    [
+      [11302, 16579],
+      [-54, 0],
+      [-125, 51],
+      [-53, -78],
+      [-185, -124],
+      [-23, -66],
+      [127, -66],
+      [3, -74],
+      [-137, -33],
+      [-35, -3],
+      [-27, -5]
+    ],
+    [
+      [10793, 16181],
+      [-53, 30],
+      [1, 81],
+      [-59, -7],
+      [-10, 102],
+      [-83, 19],
+      [-39, 67],
+      [-50, 27],
+      [-73, -43],
+      [-137, 2]
+    ],
+    [
+      [10290, 16459],
+      [-22, 57],
+      [-65, 55],
+      [8, 59]
+    ],
+    [
+      [10211, 16630],
+      [72, 3],
+      [12, 79],
+      [74, 12],
+      [27, 32],
+      [59, -19],
+      [-13, 67],
+      [20, 53]
+    ],
+    [
+      [10462, 16857],
+      [183, -4],
+      [151, 45],
+      [82, 10],
+      [19, 30],
+      [102, 28],
+      [31, -49],
+      [134, 69],
+      [40, -6],
+      [77, -91],
+      [90, -7],
+      [80, -21],
+      [53, -47]
+    ],
+    [
+      [13209, 11923],
+      [-25, -10],
+      [35, -85],
+      [-35, -41],
+      [-49, -2]
+    ],
+    [
+      [13135, 11785],
+      [-121, 106],
+      [-50, -17],
+      [-72, -65],
+      [-45, 14],
+      [-35, -44],
+      [-4, -73],
+      [-35, -53],
+      [13, -55],
+      [2, -112],
+      [-85, -69],
+      [-62, 1],
+      [-9, 51],
+      [-47, 23],
+      [-126, -90],
+      [-54, -16],
+      [-66, 16],
+      [-38, -64],
+      [-76, -39],
+      [-37, -95],
+      [-53, -51],
+      [-9, -42]
+    ],
+    [
+      [11804, 11654],
+      [9, 88],
+      [63, 36],
+      [23, 92],
+      [-86, 77],
+      [-9, 79],
+      [-56, 27],
+      [-34, 51],
+      [53, 75],
+      [4, 59],
+      [-29, 60],
+      [92, 139],
+      [-15, 58]
+    ],
+    [
+      [11819, 12495],
+      [95, 23],
+      [52, -18],
+      [31, 20],
+      [105, -117],
+      [40, 55],
+      [25, -61],
+      [92, 58],
+      [72, -16],
+      [-9, 87],
+      [32, 12],
+      [42, -70],
+      [79, 12],
+      [90, -26],
+      [23, 44],
+      [86, 42],
+      [94, 61]
+    ],
+    [
+      [12768, 12601],
+      [32, -41],
+      [61, -14],
+      [24, -28],
+      [146, -37],
+      [-25, -134],
+      [-55, -112],
+      [91, -157],
+      [144, 17],
+      [14, -48],
+      [9, -124]
+    ],
+    [
+      [10276, 12599],
+      [-81, -39],
+      [-61, 17]
+    ],
+    [
+      [10134, 12577],
+      [33, 125],
+      [27, 47],
+      [77, -45],
+      [17, -62],
+      [-12, -43]
+    ],
+    [
+      [11674, 12659],
+      [32, -53],
+      [6, -76],
+      [28, -2],
+      [40, 52],
+      [39, -85]
+    ],
+    [
+      [10053, 11864],
+      [43, 11],
+      [36, 123],
+      [22, 35],
+      [51, -5],
+      [12, 61],
+      [-77, 39],
+      [-23, 89],
+      [62, -28],
+      [38, 14],
+      [-32, 57],
+      [49, 107],
+      [74, -12],
+      [7, 28],
+      [-43, 114],
+      [39, 27],
+      [31, 84],
+      [-14, 28]
+    ],
+    [
+      [10328, 12636],
+      [53, 4],
+      [4, 33],
+      [45, 28],
+      [26, 48],
+      [52, -41],
+      [101, -37],
+      [61, -5],
+      [37, 18],
+      [21, 77],
+      [95, 9],
+      [-13, -111],
+      [-45, -16],
+      [-23, -101],
+      [135, -11],
+      [5, -58],
+      [95, -41],
+      [58, 36],
+      [34, -25],
+      [35, 29],
+      [91, 2],
+      [61, 47],
+      [51, 66],
+      [47, 4],
+      [42, 67],
+      [116, 26],
+      [56, -48],
+      [71, -6],
+      [35, 29]
+    ],
+    [
+      [12811, 13380],
+      [50, -114],
+      [104, -47],
+      [63, 16]
+    ],
+    [
+      [13046, 13194],
+      [-47, -24],
+      [3, -96],
+      [-12, -54],
+      [-46, -77],
+      [10, -41],
+      [-39, -30],
+      [-43, 20],
+      [-37, -37],
+      [-34, -84],
+      [-33, -13],
+      [0, -157]
+    ],
+    [
+      [11674, 12659],
+      [5, 139],
+      [13, 44],
+      [-69, 82],
+      [-47, 127],
+      [-48, 41],
+      [20, 119],
+      [-36, -3],
+      [-14, 86]
+    ],
+    [
+      [11498, 13294],
+      [56, 6],
+      [26, 39],
+      [-10, 54]
+    ],
+    [
+      [11570, 13393],
+      [138, 8],
+      [47, 40],
+      [18, 66],
+      [-11, 76],
+      [7, 78],
+      [65, -11],
+      [36, 41],
+      [132, 14],
+      [-19, 53],
+      [114, 48],
+      [72, 53],
+      [9, 56],
+      [46, -28],
+      [44, 43],
+      [50, -14],
+      [44, -48],
+      [85, -10],
+      [51, -174],
+      [39, -33]
+    ],
+    [
+      [11570, 13393],
+      [-9, 71],
+      [-25, 66],
+      [-55, -17],
+      [41, 145],
+      [-53, 40],
+      [-1, 78],
+      [-100, 88],
+      [6, 35],
+      [-106, 67],
+      [21, 41],
+      [-24, 57],
+      [-29, 5],
+      [45, 106],
+      [36, 128],
+      [-31, 38],
+      [-78, 131]
+    ],
+    [
+      [11208, 14472],
+      [100, 50],
+      [8, 46],
+      [83, 3],
+      [64, 50]
+    ],
+    [
+      [11463, 14621],
+      [111, -33],
+      [86, 20],
+      [33, 38],
+      [31, -57],
+      [64, -22],
+      [17, 21],
+      [81, -35],
+      [106, -101],
+      [36, -73],
+      [112, -23],
+      [70, 43],
+      [44, -14],
+      [84, 13],
+      [11, 54]
+    ],
+    [
+      [10328, 12636],
+      [-52, -37]
+    ],
+    [
+      [10134, 12577],
+      [-9, 0]
+    ],
+    [
+      [10125, 12577],
+      [-81, 101],
+      [-20, 1],
+      [-90, 109],
+      [39, 74],
+      [10, 57],
+      [-22, 91],
+      [-30, -2],
+      [-37, -48],
+      [-48, 21],
+      [25, 91],
+      [-33, 37],
+      [-57, -7],
+      [28, 105],
+      [-3, 125],
+      [25, 16]
+    ],
+    [
+      [9831, 13348],
+      [162, -12],
+      [47, 51],
+      [44, -45],
+      [62, 28],
+      [0, 36],
+      [126, 98],
+      [48, 23],
+      [9, -77],
+      [53, -11],
+      [29, 18]
+    ],
+    [
+      [10411, 13457],
+      [33, -19],
+      [84, 63],
+      [54, 55],
+      [12, -75],
+      [34, -22],
+      [39, 59],
+      [108, -35],
+      [26, 25],
+      [60, -59],
+      [30, 3],
+      [117, -39],
+      [22, -39],
+      [37, 8],
+      [90, -41],
+      [-11, -56],
+      [-61, -40],
+      [-39, -71],
+      [-44, 2],
+      [-52, -28],
+      [47, -46],
+      [173, 137],
+      [57, 32],
+      [65, -5],
+      [79, 44],
+      [39, -35],
+      [88, 19]
+    ],
+    [
+      [10302, 14455],
+      [4, -83],
+      [59, -45],
+      [25, -63],
+      [31, -16],
+      [15, -140],
+      [41, 9],
+      [10, -51],
+      [38, -47],
+      [9, -116],
+      [76, 15],
+      [34, 31],
+      [88, 14]
+    ],
+    [
+      [10732, 13963],
+      [0, -71],
+      [-94, -30],
+      [-30, -48],
+      [-1, -141],
+      [-83, -23],
+      [-18, -83],
+      [-37, -5],
+      [-50, -62],
+      [-8, -43]
+    ],
+    [
+      [9831, 13348],
+      [-24, 52],
+      [-2, 58],
+      [-46, 37],
+      [-31, -48],
+      [-46, -14],
+      [-61, 22],
+      [-63, 82],
+      [-35, 2]
+    ],
+    [
+      [9523, 13539],
+      [40, 66],
+      [-4, 71],
+      [78, 49],
+      [34, -48],
+      [65, 55],
+      [22, 100],
+      [-66, -23],
+      [1, 42],
+      [52, -6],
+      [50, 44],
+      [14, 63],
+      [55, 33],
+      [101, 111],
+      [0, 52],
+      [38, 56],
+      [-13, 36],
+      [30, 51],
+      [-44, 51],
+      [17, 94]
+    ],
+    [
+      [9993, 14436],
+      [85, 33],
+      [35, -11],
+      [75, -56],
+      [49, 38],
+      [65, 15]
+    ],
+    [
+      [11752, 16214],
+      [66, 0],
+      [139, -55],
+      [-12, -72],
+      [-145, -8],
+      [-13, 35],
+      [-53, 40],
+      [18, 60]
+    ],
+    [
+      [11513, 16609],
+      [-31, -43],
+      [37, -26],
+      [-8, -97],
+      [65, -3],
+      [37, -55],
+      [-4, -45],
+      [-84, -7],
+      [-17, 31],
+      [-59, 18],
+      [-44, -79],
+      [44, -49],
+      [96, -67],
+      [63, -28],
+      [24, -35],
+      [64, -16],
+      [35, -59]
+    ],
+    [
+      [11731, 16049],
+      [-20, -15],
+      [-93, 21],
+      [-77, -96],
+      [26, -28],
+      [14, -166],
+      [-43, -23],
+      [16, -113],
+      [-31, -48],
+      [72, -123],
+      [79, -6],
+      [14, -62]
+    ],
+    [
+      [11688, 15390],
+      [-65, -97],
+      [-14, -48],
+      [-54, -12],
+      [-65, -89],
+      [-17, 38],
+      [-65, 42],
+      [3, -106],
+      [-60, -33],
+      [-4, -48],
+      [-37, -19],
+      [-40, -92],
+      [-63, -13]
+    ],
+    [
+      [11207, 14913],
+      [-80, -5],
+      [-64, -59],
+      [-3, -51],
+      [-70, 12],
+      [-30, 51],
+      [-90, 59]
+    ],
+    [
+      [10870, 14920],
+      [-38, 50],
+      [3, 66],
+      [-32, 37],
+      [21, 45]
+    ],
+    [
+      [10824, 15118],
+      [-38, 67],
+      [1, 42],
+      [83, 32],
+      [-26, 105],
+      [26, 48],
+      [-95, 20],
+      [37, 42],
+      [-50, 29],
+      [-64, 7],
+      [11, 49],
+      [-28, 52],
+      [-40, 141],
+      [-32, 20],
+      [-11, 55],
+      [71, 27],
+      [-38, 160],
+      [13, 72],
+      [69, 68],
+      [80, 27]
+    ],
+    [
+      [11302, 16579],
+      [125, 70],
+      [23, -28],
+      [63, -12]
+    ],
+    [
+      [10290, 16459],
+      [-44, -37],
+      [-6, -40],
+      [-66, -116],
+      [-37, -103],
+      [44, -44],
+      [-27, -170],
+      [21, -8],
+      [-12, -162],
+      [-30, -42],
+      [-9, -53],
+      [-37, -9]
+    ],
+    [
+      [10087, 15675],
+      [-70, 22],
+      [-80, -52],
+      [-36, 3],
+      [-16, -57],
+      [-94, 12],
+      [13, -98],
+      [-4, -95]
+    ],
+    [
+      [9800, 15410],
+      [-35, -12]
+    ],
+    [
+      [9765, 15398],
+      [-45, 24],
+      [-31, 48]
+    ],
+    [
+      [9689, 15470],
+      [-45, -42],
+      [-50, 79],
+      [-75, -20],
+      [-73, 6],
+      [-56, 23],
+      [-32, -18],
+      [-58, 36],
+      [-59, 5],
+      [-82, -15],
+      [-89, 56],
+      [-76, 2],
+      [-39, -21],
+      [-122, 37],
+      [-50, -8],
+      [-62, 47]
+    ],
+    [
+      [8721, 15637],
+      [33, 48],
+      [5, 65],
+      [-66, 28],
+      [9, 90],
+      [-89, 54],
+      [-37, -28],
+      [-80, 16]
+    ],
+    [
+      [8496, 15910],
+      [24, 133],
+      [1, 66],
+      [26, 31],
+      [82, 39],
+      [49, 68],
+      [-24, 54],
+      [36, 44]
+    ],
+    [
+      [8690, 16345],
+      [58, -22],
+      [20, 25],
+      [84, 7],
+      [55, -13],
+      [76, 29],
+      [35, 106],
+      [130, -31],
+      [31, 43],
+      [38, -30],
+      [125, 47],
+      [13, -50],
+      [82, -55],
+      [65, 2],
+      [28, 79],
+      [31, 15],
+      [113, -41],
+      [121, 74],
+      [77, -11],
+      [72, 24],
+      [67, 2],
+      [29, 83],
+      [51, 7],
+      [79, 56],
+      [41, -61]
+    ],
+    [
+      [10824, 15118],
+      [-150, 46],
+      [-62, -52],
+      [-57, 26],
+      [-39, -31],
+      [-39, 23],
+      [5, 43],
+      [-61, -8],
+      [-79, 94],
+      [-92, -88],
+      [-37, 86],
+      [-40, 37],
+      [-88, 5],
+      [42, 121],
+      [25, 29],
+      [-8, 77],
+      [-76, 4],
+      [19, 145]
+    ],
+    [
+      [9867, 14490],
+      [84, -16],
+      [42, -38]
+    ],
+    [
+      [9523, 13539],
+      [-46, 64],
+      [-66, -29],
+      [-44, -45],
+      [-50, 23],
+      [-7, 37],
+      [-51, 24],
+      [5, 43],
+      [-41, 19],
+      [-53, 65],
+      [-32, 5],
+      [-80, -46],
+      [-24, -46],
+      [-123, -57],
+      [-39, -82],
+      [-100, -1],
+      [-29, -25],
+      [-63, 3],
+      [-21, 23]
+    ],
+    [
+      [8659, 13514],
+      [1, 28],
+      [56, 40],
+      [7, 32],
+      [-44, 54],
+      [-8, 40],
+      [41, 64],
+      [-38, 58],
+      [36, 96],
+      [-25, 94],
+      [21, 110],
+      [-43, 112],
+      [-55, 71],
+      [94, 21],
+      [42, 72],
+      [-11, 33],
+      [51, 49],
+      [41, 72],
+      [75, -1],
+      [54, 51]
+    ],
+    [
+      [8954, 14610],
+      [83, -8],
+      [80, -35],
+      [102, -68],
+      [19, 24],
+      [77, -13],
+      [5, -51],
+      [53, -2],
+      [28, 93],
+      [101, -24],
+      [66, 17],
+      [70, -31],
+      [25, 12],
+      [52, -45],
+      [61, 15],
+      [6, -43],
+      [78, -21],
+      [7, 60]
+    ],
+    [
+      [11207, 14913],
+      [2, -27],
+      [88, -74],
+      [65, -32],
+      [7, -82],
+      [94, -77]
+    ],
+    [
+      [11208, 14472],
+      [-57, -17],
+      [-28, -45],
+      [-68, -57],
+      [-33, -58],
+      [-86, -35],
+      [-45, -79],
+      [-20, -100],
+      [-69, -7],
+      [-70, -111]
+    ],
+    [
+      [10302, 14455],
+      [65, 44],
+      [10, 47],
+      [98, 139],
+      [-15, 32],
+      [83, 51],
+      [133, 15],
+      [179, 65],
+      [15, 72]
+    ],
+    [
+      [11688, 15390],
+      [23, -14],
+      [66, 40],
+      [5, 66],
+      [48, 15],
+      [15, -39],
+      [-37, -57],
+      [64, -37],
+      [72, -2],
+      [50, 77],
+      [0, 49],
+      [58, 25],
+      [92, 8],
+      [62, -46],
+      [77, 1],
+      [-19, -39],
+      [35, -48],
+      [5, -68],
+      [63, -6],
+      [51, -35],
+      [80, 50]
+    ],
+    [
+      [9765, 15398],
+      [-17, -63],
+      [-59, 135]
+    ],
+    [
+      [9867, 14490],
+      [-6, 118],
+      [-19, 36],
+      [-12, 161],
+      [83, 56],
+      [-76, 93],
+      [0, 71],
+      [-48, 84],
+      [85, 57],
+      [-20, 47],
+      [20, 130],
+      [-74, 67]
+    ],
+    [
+      [8954, 14610],
+      [50, 58],
+      [76, 45],
+      [8, 63],
+      [89, 134],
+      [-50, 63],
+      [-77, 46],
+      [-75, 5],
+      [-46, -21],
+      [-27, 26],
+      [-13, 71],
+      [36, 132],
+      [-41, 9],
+      [20, 51],
+      [-42, 18],
+      [-77, -16],
+      [-38, 11],
+      [-149, 1],
+      [-30, 31]
+    ],
+    [
+      [8568, 15337],
+      [17, 58],
+      [-39, 27],
+      [17, 73],
+      [79, 100],
+      [79, 42]
+    ],
+    [
+      [16050, 14992],
+      [-241, -115],
+      [-62, -52],
+      [-95, -45],
+      [-61, -85],
+      [-49, -90],
+      [-66, -24],
+      [-59, -2],
+      [-74, -34],
+      [-160, -40]
+    ],
+    [
+      [15183, 14505],
+      [-44, 105],
+      [-15, 79],
+      [-60, 36],
+      [-5, 79],
+      [-61, 33],
+      [32, 49],
+      [-41, 25]
+    ],
+    [
+      [14989, 14911],
+      [-25, 41],
+      [68, 24],
+      [-51, 75],
+      [34, 103],
+      [93, -34],
+      [63, 94],
+      [-11, 51],
+      [79, 84],
+      [-34, 80],
+      [36, 34],
+      [-17, 40],
+      [29, 65],
+      [-36, 94],
+      [117, 32]
+    ],
+    [
+      [15334, 15694],
+      [46, 18],
+      [125, -36],
+      [-35, -62],
+      [31, -58],
+      [-37, -31],
+      [101, -19],
+      [54, 12],
+      [116, -22],
+      [35, -57],
+      [42, 6],
+      [31, -45],
+      [-20, -110],
+      [-119, -79],
+      [22, -52],
+      [56, -3],
+      [68, -45],
+      [17, -43],
+      [143, 24],
+      [32, -20],
+      [8, -80]
+    ],
+    [
+      [15334, 15694],
+      [6, 71],
+      [-33, 49],
+      [-58, 23],
+      [-1, 56]
+    ],
+    [
+      [15248, 15893],
+      [57, -4],
+      [85, -46],
+      [37, -68],
+      [46, -29],
+      [47, 9],
+      [37, 54],
+      [95, 26],
+      [117, -50],
+      [68, -53],
+      [64, 16],
+      [71, -16],
+      [-16, 49],
+      [54, 37],
+      [53, -5],
+      [35, 44],
+      [61, -3],
+      [20, 26],
+      [78, -25],
+      [30, -34],
+      [65, 9],
+      [-12, -59],
+      [124, -59],
+      [-28, -73],
+      [-47, -25],
+      [-43, 35],
+      [-40, -66],
+      [3, -58],
+      [53, -49],
+      [22, -50],
+      [-14, -35],
+      [29, -59],
+      [-23, -83],
+      [-44, -45],
+      [-34, -6],
+      [-33, -60],
+      [-61, -32],
+      [-34, -41],
+      [-88, -33],
+      [-32, -40]
+    ],
+    [
+      [14989, 14911],
+      [-16, -11],
+      [-116, 5],
+      [-40, -31],
+      [10, -56],
+      [-84, -27],
+      [-82, -115],
+      [-282, -67],
+      [-33, 36],
+      [-39, -40],
+      [-90, -11]
+    ],
+    [
+      [14427, 16105],
+      [2, 161],
+      [35, 22],
+      [115, -38],
+      [52, -39],
+      [27, 17],
+      [86, -25],
+      [70, -78],
+      [148, 11],
+      [65, -129],
+      [-2, -59],
+      [23, -36],
+      [-19, -74],
+      [54, -13],
+      [32, 27],
+      [133, 41]
+    ],
+    [
+      [15183, 14505],
+      [-87, -15],
+      [-105, -54],
+      [-76, -4],
+      [-117, -59],
+      [-75, -10],
+      [-64, -41],
+      [-76, -84],
+      [-55, -86],
+      [-65, -61],
+      [18, -42],
+      [74, -36],
+      [33, -43],
+      [-77, -52],
+      [-129, -28],
+      [-48, -58],
+      [-18, -48]
+    ],
+    [
+      [14316, 13784],
+      [-50, 20],
+      [-46, 70],
+      [-85, 25],
+      [-47, 110],
+      [-36, 0]
+    ],
+    [
+      [12505, 15374],
+      [-41, 23],
+      [-3, 40],
+      [64, 93],
+      [30, -17],
+      [71, 11],
+      [-14, 66],
+      [-70, 14],
+      [-55, 71],
+      [-95, 80],
+      [-64, 5],
+      [-42, 57],
+      [-33, -15],
+      [-114, 65],
+      [-73, 22]
+    ],
+    [
+      [12066, 15889],
+      [22, 30],
+      [-6, 87],
+      [-70, -14],
+      [58, 83],
+      [52, -31],
+      [29, 40],
+      [-11, 57],
+      [47, 26],
+      [-14, 39],
+      [35, 53],
+      [-12, 66]
+    ],
+    [
+      [12196, 16325],
+      [31, 58],
+      [62, -12],
+      [70, 45],
+      [12, 90],
+      [58, 35],
+      [33, 49],
+      [-14, 46],
+      [97, 65],
+      [9, 42],
+      [42, 10]
+    ],
+    [
+      [12596, 16753],
+      [81, 9],
+      [5, -50],
+      [85, 38],
+      [93, -43],
+      [0, -69],
+      [-24, -64],
+      [-42, -40],
+      [22, -48],
+      [68, -20],
+      [6, 70],
+      [75, -54],
+      [103, -23],
+      [79, -32],
+      [27, -30],
+      [127, -13],
+      [43, 17],
+      [20, -51]
+    ],
+    [
+      [13893, 12032],
+      [115, -41],
+      [67, -48],
+      [19, -57],
+      [-116, -116],
+      [-67, -15],
+      [-63, -109],
+      [-40, 12],
+      [-119, -59],
+      [-55, -41],
+      [-54, -86],
+      [-51, -42],
+      [1, -131],
+      [-65, -14],
+      [-33, -55],
+      [-17, -164],
+      [-25, -11],
+      [-53, -135]
+    ],
+    [
+      [13337, 10920],
+      [-52, 18],
+      [-70, 86],
+      [-77, 140],
+      [-11, 67],
+      [37, 66],
+      [16, 60],
+      [-17, 70],
+      [-73, 27],
+      [2, 102],
+      [52, 60],
+      [10, 81],
+      [-19, 88]
+    ],
+    [
+      [13209, 11923],
+      [52, -14],
+      [24, -41],
+      [60, 24],
+      [83, -29],
+      [20, -44],
+      [85, 60],
+      [-45, 13],
+      [-23, 43],
+      [93, 9],
+      [70, 33],
+      [55, 50],
+      [62, -30],
+      [63, 5],
+      [85, 30]
+    ],
+    [
+      [14316, 13784],
+      [-74, -130],
+      [-9, -50],
+      [-101, -124],
+      [-9, -33],
+      [-61, -47],
+      [-37, -97],
+      [-66, -41],
+      [-42, -129],
+      [-63, -63],
+      [-77, -143]
+    ],
+    [
+      [13777, 12927],
+      [-63, 30],
+      [-29, 50],
+      [-53, 3],
+      [-25, -58],
+      [-39, -32],
+      [-67, 86],
+      [-30, -58],
+      [-50, 13],
+      [-3, 88],
+      [-61, -17],
+      [-47, 65]
+    ],
+    [
+      [13777, 12927],
+      [-19, -79],
+      [-37, -38],
+      [-43, -100],
+      [-13, -100],
+      [35, -137],
+      [50, -116],
+      [-10, -57],
+      [39, -109],
+      [39, -70],
+      [75, -89]
+    ],
+    [
+      [8608, 11306],
+      [-62, -5],
+      [-66, -26],
+      [-34, 89],
+      [-134, 191],
+      [11, 110],
+      [30, 48],
+      [3, 144],
+      [103, 99],
+      [23, 1],
+      [48, 67],
+      [5, 49],
+      [52, 99],
+      [-17, 76],
+      [-36, 30],
+      [-89, -8],
+      [9, 60],
+      [-68, 31],
+      [-21, 64],
+      [13, 28]
+    ],
+    [
+      [8378, 12453],
+      [21, -15],
+      [40, 60],
+      [-2, 49],
+      [105, 27],
+      [-24, 47],
+      [135, -58],
+      [47, 10],
+      [11, -50],
+      [38, -31],
+      [-41, -82],
+      [26, -54],
+      [66, -12],
+      [16, 23],
+      [130, -33],
+      [91, -6],
+      [34, 26],
+      [25, -95],
+      [49, -9],
+      [68, -62],
+      [49, 66],
+      [46, 38],
+      [5, -70],
+      [191, 77],
+      [56, -56],
+      [60, 17],
+      [27, 56],
+      [-28, 39],
+      [72, 18],
+      [41, -47],
+      [62, 14],
+      [29, 79],
+      [5, 92],
+      [71, -34],
+      [74, 21],
+      [26, 24],
+      [126, 55]
+    ],
+    [
+      [8378, 12453],
+      [-60, 66],
+      [-10, 44],
+      [22, 80],
+      [-68, 38],
+      [-89, 104],
+      [-27, 83],
+      [156, -28],
+      [61, 28],
+      [76, -15],
+      [105, 19],
+      [29, 108],
+      [-8, 41],
+      [64, 65],
+      [14, 74],
+      [4, 109],
+      [-46, 75],
+      [-57, 26],
+      [2, 96],
+      [47, 34],
+      [66, 14]
+    ],
+    [
+      [8013, 17197],
+      [13, -60],
+      [-44, -82],
+      [3, -52],
+      [-27, -86],
+      [-33, -52],
+      [-44, 7],
+      [-1, -59],
+      [-50, -71],
+      [19, -17],
+      [-30, -86],
+      [18, -83],
+      [-4, -47],
+      [29, -88],
+      [-24, -88],
+      [-49, -59]
+    ],
+    [
+      [7789, 16274],
+      [-35, -18],
+      [-106, 30],
+      [-20, -39],
+      [-78, 11],
+      [-33, -59],
+      [-58, -34],
+      [-48, 10],
+      [-82, -14],
+      [-90, -39],
+      [-7, -32]
+    ],
+    [
+      [7232, 16090],
+      [-52, -43],
+      [-43, 32],
+      [-38, -27],
+      [-64, -105],
+      [-75, 58],
+      [31, 47],
+      [6, 58],
+      [40, 89],
+      [-105, -28],
+      [-17, 46],
+      [19, 54],
+      [-9, 64],
+      [-131, 17],
+      [28, 54],
+      [-16, 51],
+      [19, 78],
+      [70, 13],
+      [-38, 51],
+      [60, 50],
+      [58, -16],
+      [61, 49],
+      [-1, 56],
+      [53, 41],
+      [86, -7],
+      [65, -26],
+      [98, 34],
+      [62, 5],
+      [54, 61],
+      [70, -37],
+      [-3, 52],
+      [41, 1],
+      [34, -48],
+      [49, 65],
+      [-55, 9],
+      [-38, 35],
+      [-15, 56],
+      [87, 81],
+      [26, 41],
+      [57, 22],
+      [35, 68],
+      [43, -1],
+      [75, 61],
+      [37, 4],
+      [7, -60],
+      [84, 39],
+      [26, -37]
+    ],
+    [
+      [8515, 16944],
+      [-38, -51],
+      [-54, 4],
+      [-4, -45],
+      [86, -149],
+      [77, -67],
+      [18, -59],
+      [54, 52],
+      [34, -61],
+      [-96, -50],
+      [-9, -53],
+      [98, -74],
+      [9, -46]
+    ],
+    [
+      [8496, 15910],
+      [-17, -53],
+      [-37, -23],
+      [-18, -62],
+      [-45, -4],
+      [-59, 57],
+      [-74, 0],
+      [-75, -43],
+      [-99, 19],
+      [-93, 47],
+      [-123, 82],
+      [-14, 55]
+    ],
+    [
+      [7842, 15985],
+      [29, 55],
+      [15, 97],
+      [-47, 21],
+      [-34, 42],
+      [-16, 74]
+    ],
+    [
+      [8013, 17197],
+      [60, 37],
+      [13, -78],
+      [65, 69],
+      [55, -41],
+      [77, -30],
+      [46, -82],
+      [58, -31],
+      [137, -8],
+      [-9, -89]
+    ],
+    [
+      [8568, 15337],
+      [-72, -23],
+      [-49, 42],
+      [-35, -23],
+      [10, -54],
+      [-17, -42],
+      [-91, -40],
+      [-57, 0],
+      [-48, 24],
+      [-93, -38],
+      [-100, 83],
+      [-23, -16],
+      [-144, -11],
+      [-51, -15],
+      [-19, -37],
+      [-62, -27],
+      [-55, 11],
+      [3, 46],
+      [-42, 56],
+      [41, 74],
+      [59, 36],
+      [-25, 71],
+      [-52, -11],
+      [-10, 88]
+    ],
+    [
+      [7636, 15531],
+      [19, 18],
+      [4, 80],
+      [-73, 7],
+      [2, 67],
+      [-38, 31],
+      [-31, 146],
+      [38, 10],
+      [99, 88],
+      [120, -31],
+      [66, 38]
+    ],
+    [
+      [7636, 15531],
+      [-42, -19],
+      [-60, -57],
+      [-75, -12],
+      [-67, 8],
+      [-22, -28],
+      [-69, -7],
+      [-19, -47],
+      [-65, -41],
+      [-1, -23],
+      [-103, -67],
+      [-3, 178],
+      [-8, 56],
+      [61, 40],
+      [0, 54],
+      [41, 47],
+      [-78, 50],
+      [146, 146],
+      [-23, 22],
+      [-45, -44],
+      [-79, 20],
+      [-32, 67],
+      [71, 44],
+      [-16, 40],
+      [54, 51],
+      [30, 81]
+    ],
+    [
+      [15010, 11930],
+      [20, -114],
+      [-51, 9],
+      [42, 77],
+      [-11, 28]
+    ],
+    [
+      [15097, 12281],
+      [55, -31],
+      [2, -58],
+      [-60, -96],
+      [-71, -36],
+      [-26, -39],
+      [-60, -15],
+      [-86, 44],
+      [66, 80],
+      [-7, 53],
+      [53, 50],
+      [62, 9],
+      [72, 39]
+    ],
+    [
+      [16385, 13184],
+      [-74, -55],
+      [-22, -46],
+      [48, -107],
+      [71, -41],
+      [104, 39],
+      [60, -23],
+      [-3, -81],
+      [-39, -36],
+      [-22, -84],
+      [-55, -56],
+      [-21, -82],
+      [-33, -71],
+      [-69, -39],
+      [-71, -64],
+      [-71, 105],
+      [-128, -1],
+      [-39, 51],
+      [-8, 129],
+      [-57, 36],
+      [-87, -43],
+      [-31, -68],
+      [-34, 80],
+      [-70, -5],
+      [-15, 61],
+      [19, 29],
+      [138, 91],
+      [175, 167],
+      [74, 25],
+      [59, 44],
+      [84, 1],
+      [65, 35],
+      [52, 9]
+    ],
+    [
+      [17050, 13322],
+      [14, -44],
+      [51, 14],
+      [4, -41],
+      [65, -64],
+      [41, -92],
+      [-28, -75],
+      [-70, 31],
+      [-123, 90],
+      [-64, 16],
+      [-90, -11],
+      [10, 39],
+      [-29, 41],
+      [20, 52],
+      [164, 16],
+      [35, 28]
+    ],
+    [
+      [2101, 573],
+      [5, -146],
+      [30, -51],
+      [-14, -120],
+      [-29, -90],
+      [-101, -43],
+      [-9, -29],
+      [-98, 42],
+      [-66, 64],
+      [-34, 81],
+      [-1, 68],
+      [86, 104],
+      [19, 88],
+      [51, 17],
+      [25, -25],
+      [62, 3],
+      [56, -17],
+      [18, 54]
+    ],
+    [
+      [3276, 1189],
+      [43, -63],
+      [5, -154],
+      [-29, -66],
+      [11, -91],
+      [-67, -188],
+      [-223, -78],
+      [-77, -121],
+      [-128, 39],
+      [80, 29],
+      [55, 34],
+      [78, 90],
+      [5, 93],
+      [36, 62],
+      [8, 64],
+      [41, 51],
+      [69, 209],
+      [-9, 37],
+      [33, 30],
+      [69, 23]
+    ],
+    [
+      [3596, 1707],
+      [36, -35],
+      [-4, -57],
+      [-28, -29],
+      [13, -46],
+      [-29, -97],
+      [-120, -81],
+      [-77, -21],
+      [-27, -60],
+      [-76, 16],
+      [32, 87],
+      [14, 100],
+      [49, 50],
+      [34, 0],
+      [38, 48],
+      [103, 18],
+      [21, 82],
+      [21, 25]
+    ],
+    [
+      [178, 217],
+      [35, -50],
+      [-36, -80],
+      [-21, -10],
+      [-11, -77],
+      [-52, 43],
+      [-93, 30],
+      [6, 46],
+      [64, -5],
+      [58, 44],
+      [50, 59]
+    ],
+    [
+      [691, 611],
+      [44, -18],
+      [64, -51],
+      [4, -71],
+      [-65, -67],
+      [-36, -5],
+      [-51, 34],
+      [-29, 49],
+      [24, 115],
+      [45, 14]
+    ],
+    [
+      [1535, 1008],
+      [30, -34],
+      [-30, -38],
+      [-59, -38],
+      [-56, -82],
+      [-40, -32],
+      [-1, -80],
+      [-48, -108],
+      [-14, -68],
+      [-61, -94],
+      [-119, -58],
+      [-23, 13],
+      [-22, 80],
+      [-25, 26],
+      [-53, 105],
+      [-2, 62],
+      [-63, 96],
+      [69, 41],
+      [63, -24],
+      [57, 30],
+      [57, -4],
+      [68, 26],
+      [66, 77],
+      [36, 60],
+      [51, 27],
+      [82, -4],
+      [37, 21]
+    ],
+    [
+      [184, 1297],
+      [52, -27],
+      [50, 11],
+      [47, -118],
+      [-32, -60],
+      [14, -54],
+      [-7, -57],
+      [-57, -125],
+      [-18, 3],
+      [-22, 96],
+      [-60, 126],
+      [-31, 128],
+      [64, 77]
+    ],
+    [
+      [11731, 16049],
+      [59, -63],
+      [13, 46],
+      [64, -30],
+      [-9, -55],
+      [27, -42],
+      [60, -22],
+      [31, 12],
+      [90, -6]
+    ],
+    [
+      [11969, 16531],
+      [5, -68],
+      [-46, -25],
+      [15, -40],
+      [131, -5],
+      [83, -36],
+      [39, -32]
+    ],
+    [
+      [11513, 16609],
+      [25, -19],
+      [125, 29],
+      [-11, -83],
+      [51, -50],
+      [126, -24],
+      [48, 8],
+      [26, 59],
+      [66, 2]
+    ],
+    [
+      [11969, 16531],
+      [32, 9],
+      [32, 135],
+      [35, 48],
+      [4, 57]
+    ],
+    [
+      [12072, 16780],
+      [66, -25],
+      [75, 14],
+      [39, -25],
+      [227, 68],
+      [37, 35],
+      [62, -46],
+      [18, -48]
+    ],
+    [
+      [11504, 16814],
+      [73, -10],
+      [85, 99],
+      [75, -6],
+      [73, 26],
+      [53, -54],
+      [107, -33],
+      [27, 4],
+      [75, -60]
+    ],
+    [
+      [8515, 16944],
+      [23, 88],
+      [75, 20],
+      [83, -20],
+      [167, -2],
+      [124, 5],
+      [61, -9],
+      [88, 41],
+      [96, -37],
+      [66, 33],
+      [66, -1],
+      [29, 42],
+      [56, 23],
+      [107, -107],
+      [214, 10],
+      [23, -24],
+      [70, 3],
+      [66, -65],
+      [94, 2],
+      [241, -49],
+      [90, -32],
+      [108, -8]
+    ],
+    [
+      [13337, 10920],
+      [-29, -69],
+      [-46, -64],
+      [55, -76],
+      [54, -49],
+      [-151, -51],
+      [-122, 27],
+      [-40, -32],
+      [-89, 25],
+      [-60, -15],
+      [-62, -61],
+      [-44, -21],
+      [-17, -36],
+      [-114, -84]
+    ]
+  ],
+  "transform": {
+    "scale": [0.001304515428916816, 0.0009340932354723947],
+    "translate": [-18.160694122314453, 27.64708328247076]
+  },
+  "objects": {
+    "spain": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-AL",
+            "NAME_0": "Spain",
+            "ID_1": 1,
+            "NAME_1": "Andalucía",
+            "ID_2": 1,
+            "NAME_2": "Almería",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[3, 4, 5, 6]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-CA",
+            "NAME_0": "Spain",
+            "ID_1": 1,
+            "NAME_1": "Andalucía",
+            "ID_2": 2,
+            "NAME_2": "Cádiz",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[7, 8, 9, 10, 11, 12]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-CO",
+            "NAME_0": "Spain",
+            "ID_1": 1,
+            "NAME_1": "Andalucía",
+            "ID_2": 3,
+            "NAME_2": "Córdoba",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[13, 14, -2, 15, 16, -10, 17]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-GR",
+            "NAME_0": "Spain",
+            "ID_1": 1,
+            "NAME_1": "Andalucía",
+            "ID_2": 4,
+            "NAME_2": "Granada",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[18, 19, -6, 20]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-H",
+            "NAME_0": "Spain",
+            "ID_1": 1,
+            "NAME_1": "Andalucía",
+            "ID_2": 5,
+            "NAME_2": "Huelva",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-18, -9, 21, 22]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-J",
+            "NAME_0": "Spain",
+            "ID_1": 1,
+            "NAME_1": "Andalucía",
+            "ID_2": 6,
+            "NAME_2": "Jaén",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-17, 23, -4, 24, -11]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-MA",
+            "NAME_0": "Spain",
+            "ID_1": 1,
+            "NAME_1": "Andalucía",
+            "ID_2": 7,
+            "NAME_2": "Málaga",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-12, -25, -7, -20, 25]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-SE",
+            "NAME_0": "Spain",
+            "ID_1": 1,
+            "NAME_1": "Andalucía",
+            "ID_2": 8,
+            "NAME_2": "Sevilla",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[26, 27, 28, 29]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-HU",
+            "NAME_0": "Spain",
+            "ID_1": 2,
+            "NAME_1": "Aragón",
+            "ID_2": 9,
+            "NAME_2": "Huesca",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[30, 31, 32, 33, 34, 35, 36, 37]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-TE",
+            "NAME_0": "Spain",
+            "ID_1": 2,
+            "NAME_1": "Aragón",
+            "ID_2": 10,
+            "NAME_2": "Teruel",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[38, 39, -38, 40, 41, 42, 43, -29]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-Z",
+            "NAME_0": "Spain",
+            "ID_1": 2,
+            "NAME_1": "Aragón",
+            "ID_2": 11,
+            "NAME_2": "Zaragoza",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[44, 45, 46, 47, 48, 49]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-S3",
+            "NAME_0": "Spain",
+            "ID_1": 3,
+            "NAME_1": "Cantabria",
+            "ID_2": 12,
+            "NAME_2": "Cantabria",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[50, 51, -14, -23, 52, 53, 54]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-AB",
+            "NAME_0": "Spain",
+            "ID_1": 4,
+            "NAME_1": "Castilla-La Mancha",
+            "ID_2": 13,
+            "NAME_2": "Albacete",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[55, 56]], [[57, -53, -22, -8, 58, 59]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-CR",
+            "NAME_0": "Spain",
+            "ID_1": 4,
+            "NAME_1": "Castilla-La Mancha",
+            "ID_2": 14,
+            "NAME_2": "Ciudad Real",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-36, 60, -34, 61, -54, -58, 62, 63, 64]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-CU",
+            "NAME_0": "Spain",
+            "ID_1": 4,
+            "NAME_1": "Castilla-La Mancha",
+            "ID_2": 15,
+            "NAME_2": "Cuenca",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-41, -37, -65, 65, 66, 67]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-GU",
+            "NAME_0": "Spain",
+            "ID_1": 4,
+            "NAME_1": "Castilla-La Mancha",
+            "ID_2": 16,
+            "NAME_2": "Guadalajara",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-63, -60, 68, -57, 69, 70, 71, 72]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-TO",
+            "NAME_0": "Spain",
+            "ID_1": 4,
+            "NAME_1": "Castilla-La Mancha",
+            "ID_2": 17,
+            "NAME_2": "Toledo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[73, 74, -72, 75, 76, 77]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-AV",
+            "NAME_0": "Spain",
+            "ID_1": 5,
+            "NAME_1": "Castilla y León",
+            "ID_2": 18,
+            "NAME_2": "Ávila",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[78]], [[79, 80, 81, 82, 83, 84, -46, 85]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-BU",
+            "NAME_0": "Spain",
+            "ID_1": 5,
+            "NAME_1": "Castilla y León",
+            "ID_2": 19,
+            "NAME_2": "Burgos",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[86, 87, 88, 89, 90, 91, 92, 93, -48]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-LE",
+            "NAME_0": "Spain",
+            "ID_1": 5,
+            "NAME_1": "Castilla y León",
+            "ID_2": 20,
+            "NAME_2": "León",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-85, 94, -87, -47]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-P",
+            "NAME_0": "Spain",
+            "ID_1": 5,
+            "NAME_1": "Castilla y León",
+            "ID_2": 21,
+            "NAME_2": "Palencia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[95, -77, 96, 97, 98]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-SA",
+            "NAME_0": "Spain",
+            "ID_1": 5,
+            "NAME_1": "Castilla y León",
+            "ID_2": 22,
+            "NAME_2": "Salamanca",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[99, -67, 100, -74, 101, -83]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-SG",
+            "NAME_0": "Spain",
+            "ID_1": 5,
+            "NAME_1": "Castilla y León",
+            "ID_2": 23,
+            "NAME_2": "Segovia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-42, -68, -100, -82, 102]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-SO",
+            "NAME_0": "Spain",
+            "ID_1": 5,
+            "NAME_1": "Castilla y León",
+            "ID_2": 24,
+            "NAME_2": "Soria",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[103, -90]], [[-95, -84, -102, -78, -96, 104, -88]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-VA",
+            "NAME_0": "Spain",
+            "ID_1": 5,
+            "NAME_1": "Castilla y León",
+            "ID_2": 25,
+            "NAME_2": "Valladolid",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-104, -89, -105, -99, 105, 106, -91]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-ZA",
+            "NAME_0": "Spain",
+            "ID_1": 5,
+            "NAME_1": "Castilla y León",
+            "ID_2": 26,
+            "NAME_2": "Zamora",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[107, 108, 109, 110]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-B",
+            "NAME_0": "Spain",
+            "ID_1": 6,
+            "NAME_1": "Cataluña",
+            "ID_2": 27,
+            "NAME_2": "Barcelona",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-111, 111, 112]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-GI",
+            "NAME_0": "Spain",
+            "ID_1": 6,
+            "NAME_1": "Cataluña",
+            "ID_2": 28,
+            "NAME_2": "Girona",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-112, -110, 113, -39, -28, 114]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-L",
+            "NAME_0": "Spain",
+            "ID_1": 6,
+            "NAME_1": "Cataluña",
+            "ID_2": 29,
+            "NAME_2": "Lleida",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[115, 116, -31, -40, -114, -109]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-T",
+            "NAME_0": "Spain",
+            "ID_1": 6,
+            "NAME_1": "Cataluña",
+            "ID_2": 30,
+            "NAME_2": "Tarragona",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "type": null,
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-CE",
+            "NAME_0": "Spain",
+            "ID_1": 7,
+            "NAME_1": "Ceuta y Melilla",
+            "ID_2": 31,
+            "NAME_2": "Ceuta",
+            "TYPE_2": "Ciudad Autónoma",
+            "ENGTYPE_2": "Autonomous City",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "type": null,
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-ML",
+            "NAME_0": "Spain",
+            "ID_1": 7,
+            "NAME_1": "Ceuta y Melilla",
+            "ID_2": 32,
+            "NAME_2": "Melilla",
+            "TYPE_2": "Ciudad Autónoma",
+            "ENGTYPE_2": "Autonomous City",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-64, -73, -75, -101, -66]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-M5",
+            "NAME_0": "Spain",
+            "ID_1": 8,
+            "NAME_1": "Comunidad de Madrid",
+            "ID_2": 33,
+            "NAME_2": "Madrid",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-30, -44, 117, 118, 119, 120]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-NA7",
+            "NAME_0": "Spain",
+            "ID_1": 9,
+            "NAME_1": "Comunidad Foral de Navarra",
+            "ID_2": 34,
+            "NAME_2": "Navarra",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[121, 122, -51, 123]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-A",
+            "NAME_0": "Spain",
+            "ID_1": 10,
+            "NAME_1": "Comunidad Valenciana",
+            "ID_2": 35,
+            "NAME_2": "Alicante",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Alacant"
+          }
+        },
+        {
+          "arcs": [[-117, 124, 125, -32]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-CS",
+            "NAME_0": "Spain",
+            "ID_1": 10,
+            "NAME_1": "Comunidad Valenciana",
+            "ID_2": 36,
+            "NAME_2": "Castellón",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Castelló"
+          }
+        },
+        {
+          "arcs": [[[-126, 126, -124, -55, -62, -33]], [[-61, -35]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-V",
+            "NAME_0": "Spain",
+            "ID_1": 10,
+            "NAME_1": "Comunidad Valenciana",
+            "ID_2": 37,
+            "NAME_2": "Valencia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "València"
+          }
+        },
+        {
+          "arcs": [[-13, -26, -19, 127, 128, -70, -56, -69, -59]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-BA",
+            "NAME_0": "Spain",
+            "ID_1": 11,
+            "NAME_1": "Extremadura",
+            "ID_2": 38,
+            "NAME_2": "Badajoz",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-76, -71, -129, 129, -97]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-CC",
+            "NAME_0": "Spain",
+            "ID_1": 11,
+            "NAME_1": "Extremadura",
+            "ID_2": 39,
+            "NAME_2": "Cáceres",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[130, 131, 132]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-C",
+            "NAME_0": "Spain",
+            "ID_1": 12,
+            "NAME_1": "Galicia",
+            "ID_2": 40,
+            "NAME_2": "A Coruña",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "La Coruña"
+          }
+        },
+        {
+          "arcs": [[133, -93, 134, 135, -131, 136]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-LU",
+            "NAME_0": "Spain",
+            "ID_1": 12,
+            "NAME_1": "Galicia",
+            "ID_2": 41,
+            "NAME_2": "Lugo",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-92, -107, 137, 138, -135]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-OR",
+            "NAME_0": "Spain",
+            "ID_1": 12,
+            "NAME_1": "Galicia",
+            "ID_2": 42,
+            "NAME_2": "Ourense",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-136, -139, 139, -132]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-PO",
+            "NAME_0": "Spain",
+            "ID_1": 12,
+            "NAME_1": "Galicia",
+            "ID_2": 43,
+            "NAME_2": "Pontevedra",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[140]], [[141]], [[142]], [[143]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-PM",
+            "NAME_0": "Spain",
+            "ID_1": 13,
+            "NAME_1": "Islas Baleares",
+            "ID_2": 44,
+            "NAME_2": "Baleares",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[144]], [[145]], [[146]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-GC",
+            "NAME_0": "Spain",
+            "ID_1": 14,
+            "NAME_1": "Islas Canarias",
+            "ID_2": 45,
+            "NAME_2": "Las Palmas",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[147]], [[148]], [[149]], [[150]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-TF",
+            "NAME_0": "Spain",
+            "ID_1": 14,
+            "NAME_1": "Islas Canarias",
+            "ID_2": 46,
+            "NAME_2": "Santa Cruz de Tenerife",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[151, -118, -43, -103, -81]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-LO4",
+            "NAME_0": "Spain",
+            "ID_1": 15,
+            "NAME_1": "La Rioja",
+            "ID_2": 47,
+            "NAME_2": "La Rioja",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[152, -119, -152, -80, 153], [-79]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-VI",
+            "NAME_0": "Spain",
+            "ID_1": 16,
+            "NAME_1": "País Vasco",
+            "ID_2": 48,
+            "NAME_2": "Álava",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Araba"
+          }
+        },
+        {
+          "arcs": [[-120, -153, 154, 155]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-SS",
+            "NAME_0": "Spain",
+            "ID_1": 16,
+            "NAME_1": "País Vasco",
+            "ID_2": 49,
+            "NAME_2": "Guipúzcoa",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-155, -154, -86, -45, 156]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-BI",
+            "NAME_0": "Spain",
+            "ID_1": 16,
+            "NAME_1": "País Vasco",
+            "ID_2": 50,
+            "NAME_2": "Vizcaya",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-49, -94, -134, 157]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-O2",
+            "NAME_0": "Spain",
+            "ID_1": 17,
+            "NAME_1": "Principado de Asturias",
+            "ID_2": 51,
+            "NAME_2": "Asturias",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-123, 158, -3, -15, -52]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 215,
+            "ISO": "ES-MU6",
+            "NAME_0": "Spain",
+            "ID_1": 18,
+            "NAME_1": "Región de Murcia",
+            "ID_2": 52,
+            "NAME_2": "Murcia",
+            "TYPE_2": "Provincia",
+            "ENGTYPE_2": "Province",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/switzerland-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/switzerland-topo.json
new file mode 100644
index 0000000..5965bc7
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/switzerland-topo.json
@@ -0,0 +1,11333 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [43893, 22349],
+      [-54, -36],
+      [-73, -134],
+      [-65, 8],
+      [-61, -39],
+      [-46, -18],
+      [-26, -81],
+      [-87, -130],
+      [-66, -65],
+      [-26, -54],
+      [-67, -52],
+      [-26, -74],
+      [-18, 0],
+      [-38, -50],
+      [-26, 0],
+      [-87, -39],
+      [-36, -26],
+      [-33, 1],
+      [-57, 23],
+      [-61, 10],
+      [-283, 6],
+      [-42, 9],
+      [50, -120],
+      [-55, -35],
+      [-49, 2],
+      [-60, -59],
+      [-2, -43],
+      [-32, -33],
+      [-18, -79],
+      [-60, -12],
+      [-31, -27],
+      [-73, -22],
+      [-39, -68],
+      [-73, -13],
+      [-37, -36],
+      [-41, -17],
+      [-19, -32],
+      [-43, 3],
+      [-60, 34],
+      [-13, 70],
+      [-4, 77],
+      [-34, 41],
+      [-58, 91],
+      [-27, 28],
+      [4, 67],
+      [-146, 41],
+      [-93, 45],
+      [-67, 6],
+      [-52, -13],
+      [-45, 10],
+      [-48, -29],
+      [-89, -112],
+      [-81, -26],
+      [-43, -42],
+      [-1, -101],
+      [-12, -91],
+      [25, -100],
+      [-9, -20],
+      [-63, -37],
+      [-41, -55],
+      [-51, -123],
+      [9, -76],
+      [-59, -47],
+      [-33, -61],
+      [-28, -88],
+      [-54, -81],
+      [-19, -89],
+      [-146, -126],
+      [-135, -7],
+      [-105, -41],
+      [-70, -7],
+      [-67, -25],
+      [-51, 8],
+      [-106, -25],
+      [-44, 3],
+      [-105, -43],
+      [-58, 12],
+      [-36, -47],
+      [-77, -8],
+      [-63, -59],
+      [-72, -15],
+      [-92, -43],
+      [-16, 25],
+      [-41, 11],
+      [-48, -4],
+      [-53, 18],
+      [-26, 32],
+      [13, 109],
+      [-3, 106],
+      [-30, 4],
+      [-69, -22],
+      [-85, 30],
+      [-9, 35],
+      [-45, 14],
+      [-75, -15],
+      [-39, 20],
+      [-59, -5],
+      [-93, -25]
+    ],
+    [
+      [38936, 20246],
+      [-19, 62],
+      [61, 84],
+      [19, 183],
+      [-60, 89],
+      [-37, 35],
+      [-3, 91],
+      [-15, 35],
+      [31, 47],
+      [116, 51],
+      [64, 42],
+      [91, 27],
+      [47, 60],
+      [13, 40],
+      [35, 33],
+      [64, 84],
+      [111, -1],
+      [32, 13],
+      [64, 50],
+      [137, 42],
+      [111, 113],
+      [116, 46],
+      [73, 44],
+      [26, 85],
+      [-14, 139],
+      [7, 32],
+      [-36, 134],
+      [-6, 51],
+      [-18, 28],
+      [8, 47],
+      [-21, 19],
+      [-43, 0],
+      [-23, 22],
+      [-15, 46],
+      [-29, 24],
+      [-16, 73],
+      [-33, 51],
+      [-60, 155]
+    ],
+    [
+      [39714, 22422],
+      [67, 53],
+      [32, -7],
+      [66, 45],
+      [6, 22],
+      [62, -5],
+      [21, 19],
+      [38, -8],
+      [80, 23],
+      [12, 37],
+      [-20, 49],
+      [-39, 4],
+      [-38, 58],
+      [9, 36],
+      [-23, 20],
+      [-9, 43],
+      [38, 109],
+      [39, 61],
+      [18, 133],
+      [33, 45],
+      [84, 49],
+      [-77, 50],
+      [-29, -1],
+      [-79, 28],
+      [-45, 36],
+      [-15, 39],
+      [-37, 23],
+      [-14, 43],
+      [-43, -42],
+      [-159, 279],
+      [-21, 30],
+      [118, 50],
+      [7, 56],
+      [-68, 10],
+      [-55, 62],
+      [-40, 118],
+      [-106, 90],
+      [-59, 43],
+      [1, 51],
+      [-19, 31],
+      [-43, 25],
+      [-11, 24],
+      [-14, 148],
+      [-68, 32],
+      [-71, 47],
+      [-69, -1],
+      [-25, 55],
+      [31, 35],
+      [72, 16],
+      [38, 23],
+      [-4, 43],
+      [-33, 54],
+      [2, 105],
+      [40, 31],
+      [29, -6],
+      [43, 26],
+      [36, -8],
+      [34, 13],
+      [10, -29],
+      [36, -12],
+      [52, 8],
+      [35, 31],
+      [79, 46],
+      [85, 32],
+      [54, 80],
+      [83, 28],
+      [16, 18],
+      [10, 136],
+      [25, 83],
+      [45, 95],
+      [24, 11],
+      [38, 83],
+      [36, 30],
+      [6, 104],
+      [61, 68],
+      [-6, 20],
+      [129, 100],
+      [-35, 23],
+      [-64, 6],
+      [-103, 49],
+      [-47, 6],
+      [-46, 33],
+      [4, 57],
+      [35, 31],
+      [39, 90],
+      [60, 36],
+      [86, 36],
+      [0, 64],
+      [-18, 32],
+      [24, 32],
+      [-2, 49],
+      [36, 54],
+      [-24, 61],
+      [-63, 22],
+      [-25, 47],
+      [15, 73],
+      [17, 30],
+      [19, 73],
+      [-13, 68],
+      [17, 21],
+      [-27, 43],
+      [59, 40],
+      [27, 36],
+      [20, 72],
+      [217, 372],
+      [23, 33],
+      [152, 192]
+    ],
+    [
+      [40638, 27579],
+      [12, 15],
+      [600, -659],
+      [42, -48],
+      [138, -127],
+      [28, -42],
+      [43, -23],
+      [326, 40],
+      [97, 30],
+      [75, -36],
+      [41, 0],
+      [74, 26],
+      [273, -16],
+      [157, -62],
+      [562, -106],
+      [-14, -158],
+      [14, -130],
+      [-21, -41],
+      [4, -73],
+      [-23, -34],
+      [-8, -97],
+      [19, -69],
+      [34, -83],
+      [-20, -93],
+      [28, -161],
+      [-3, -74],
+      [18, -7],
+      [-22, -75],
+      [-42, -91],
+      [-26, -24],
+      [-20, -94],
+      [-45, -45],
+      [-78, -92],
+      [-42, -7],
+      [-53, -64],
+      [-24, 10],
+      [-78, -17],
+      [-14, -18],
+      [-71, -19],
+      [-53, -49],
+      [-151, -116],
+      [243, -182],
+      [22, 9],
+      [84, -51],
+      [19, -26],
+      [53, -5],
+      [74, 45],
+      [29, -40],
+      [42, -19],
+      [104, 64],
+      [47, 42],
+      [131, 81],
+      [37, -9],
+      [60, 21],
+      [52, -44],
+      [43, -15],
+      [53, 6],
+      [25, -11],
+      [46, -57],
+      [37, -28],
+      [25, -52],
+      [84, -38],
+      [4, -44],
+      [31, -30],
+      [52, -116],
+      [-8, -38],
+      [1, -82],
+      [30, -77],
+      [68, -142],
+      [3, -56],
+      [-32, -12],
+      [-26, -50],
+      [3, -73],
+      [11, -32],
+      [-36, -125],
+      [33, -40],
+      [5, -71],
+      [-36, -87],
+      [-17, -109],
+      [41, -123],
+      [-15, -67],
+      [-96, -31],
+      [-13, -43],
+      [7, -109],
+      [-10, -53],
+      [18, -21],
+      [22, -67],
+      [-3, -23],
+      [130, -76],
+      [19, -21],
+      [13, -108],
+      [18, -47],
+      [-32, -58],
+      [16, -52],
+      [-25, -54],
+      [-8, -55]
+    ],
+    [
+      [32740, 26914],
+      [41, -101],
+      [20, -103],
+      [-32, -89],
+      [34, -62],
+      [45, -10],
+      [24, 17],
+      [111, -3],
+      [53, 34],
+      [93, 73],
+      [113, 20],
+      [23, -174],
+      [34, -149],
+      [20, -5],
+      [57, 47],
+      [79, 27],
+      [16, 36],
+      [178, 152],
+      [178, -256],
+      [-9, -276]
+    ],
+    [
+      [33818, 26092],
+      [-224, 121],
+      [-12, 38],
+      [0, 69],
+      [-63, 28],
+      [-77, -35],
+      [-67, 18],
+      [-131, 51],
+      [-18, -62],
+      [-90, 1],
+      [-53, -38],
+      [-2, -58],
+      [-83, -19],
+      [-97, -40],
+      [-74, -70],
+      [-54, -83],
+      [-62, -57],
+      [2, -55],
+      [-14, -38],
+      [21, -61],
+      [-19, -22],
+      [-29, -108],
+      [-99, -86],
+      [-19, -1],
+      [-45, -52],
+      [-35, -12],
+      [-44, -35],
+      [21, -185],
+      [102, -27],
+      [14, -11],
+      [414, 122],
+      [51, -31],
+      [71, -4],
+      [26, -13],
+      [62, -56],
+      [-1, -42],
+      [101, -62],
+      [151, -138],
+      [68, -19],
+      [119, -152],
+      [65, -42],
+      [34, -59],
+      [46, -33],
+      [9, -33],
+      [53, -55],
+      [35, -10],
+      [48, -80],
+      [58, -5],
+      [74, -21],
+      [39, -35],
+      [8, -85],
+      [-7, -101],
+      [-60, -164],
+      [-74, -28],
+      [-36, -45],
+      [-79, -8],
+      [-157, -77],
+      [-126, -24],
+      [-73, 20]
+    ],
+    [
+      [33486, 23983],
+      [12, 259],
+      [-547, 161],
+      [-17, -304],
+      [-10, -84],
+      [-152, 2],
+      [-120, 40],
+      [-22, -9],
+      [-63, 3],
+      [-38, 20],
+      [-144, -52],
+      [-36, 45],
+      [25, 49],
+      [-12, 301],
+      [-204, 45],
+      [-454, -629],
+      [-208, 214],
+      [-109, -30],
+      [-66, -4],
+      [-34, 11],
+      [-112, -5],
+      [-11, -40],
+      [-40, -5],
+      [-28, -28],
+      [-68, 10],
+      [-50, 24],
+      [-27, 35],
+      [-56, -11],
+      [-51, 13],
+      [-59, 2],
+      [-73, -39],
+      [-64, -43],
+      [-24, -49],
+      [-41, -33],
+      [-27, -55],
+      [-58, -28],
+      [-59, 70],
+      [-25, 48],
+      [-29, -15],
+      [-59, 30],
+      [-40, 1],
+      [-20, -58],
+      [-24, -28],
+      [-50, -107],
+      [-39, -42],
+      [13, -38],
+      [53, -71],
+      [78, -52]
+    ],
+    [
+      [30297, 23507],
+      [0, -64],
+      [-39, -19],
+      [-76, 8],
+      [-230, -52],
+      [-107, 36],
+      [-102, 62],
+      [-72, -65],
+      [-52, 4],
+      [-127, -70],
+      [-53, -13],
+      [-74, -72],
+      [-56, -21],
+      [2, -21],
+      [-64, -31],
+      [18, -35],
+      [-5, -60],
+      [32, -59],
+      [98, -132],
+      [11, 3],
+      [42, -82],
+      [-38, -64],
+      [-37, -13],
+      [-24, -42],
+      [-44, -17],
+      [-32, -40],
+      [-49, -26],
+      [-35, -40],
+      [-58, -44],
+      [-25, -45],
+      [-48, -11],
+      [-51, -72],
+      [-49, -98],
+      [-22, -21],
+      [-52, -80],
+      [-18, -62],
+      [-45, -65],
+      [-4, -29],
+      [-52, -124],
+      [-31, -60],
+      [-49, 43],
+      [-15, 72],
+      [-1, 61],
+      [30, 139],
+      [-62, 18],
+      [-35, -4],
+      [-32, 29],
+      [-55, 15],
+      [-41, -34],
+      [-34, -5],
+      [-44, -62],
+      [3, -38],
+      [-25, -39],
+      [-22, -65],
+      [-61, -36],
+      [-65, -6],
+      [-44, -28],
+      [-2, -101],
+      [-36, -60],
+      [42, -153],
+      [1, -84],
+      [18, -50],
+      [-26, -44],
+      [1, -56],
+      [-50, -37],
+      [2, -49],
+      [16, -44],
+      [-31, -75],
+      [-38, -16],
+      [-34, 15],
+      [-23, -64],
+      [8, -37],
+      [-33, -90],
+      [-52, -40],
+      [-30, -46],
+      [-54, -18],
+      [-46, -155],
+      [57, -92],
+      [15, -9],
+      [-9, -54],
+      [59, -77],
+      [19, -43],
+      [150, -297],
+      [5, -48],
+      [-9, -63],
+      [-38, -4],
+      [-76, -74],
+      [-2, -39],
+      [23, -36],
+      [-10, -52],
+      [-90, -96],
+      [-32, -22]
+    ],
+    [
+      [27872, 19721],
+      [-106, 9],
+      [-49, 37],
+      [-51, 16],
+      [-67, -8],
+      [-117, -38],
+      [-82, -40],
+      [-89, -56],
+      [-107, -21],
+      [-25, -20],
+      [-9, -44],
+      [-72, -52],
+      [-58, -30],
+      [-34, 29],
+      [-84, 18],
+      [-30, 22],
+      [-52, 83],
+      [-11, 54],
+      [-48, 38],
+      [-29, 1],
+      [-27, 35],
+      [-40, 13],
+      [-42, 34],
+      [-31, 42],
+      [19, 54],
+      [-27, 38],
+      [-13, 45],
+      [-55, 110],
+      [-67, 56],
+      [-173, 172],
+      [-85, 72],
+      [-240, 154],
+      [-117, 70],
+      [-246, 123],
+      [-59, 113],
+      [-30, 25],
+      [-4, 76],
+      [-34, 57],
+      [9, 72],
+      [-13, 97],
+      [29, 115],
+      [-64, 40],
+      [-5, 67],
+      [-59, 16],
+      [-35, 22],
+      [8, 115],
+      [-22, 76],
+      [6, 54],
+      [26, 37],
+      [53, 26],
+      [44, -1],
+      [47, 25],
+      [17, 37],
+      [32, 2],
+      [4, 67],
+      [26, 57],
+      [59, 94],
+      [6, 28],
+      [33, 36],
+      [6, 63],
+      [-21, 27],
+      [-15, 52],
+      [-25, 17],
+      [-51, -1],
+      [-26, 34],
+      [-76, 37],
+      [25, 44],
+      [21, 82],
+      [29, 67],
+      [57, 63],
+      [114, 50],
+      [58, 36],
+      [49, 18],
+      [53, 44],
+      [65, -6],
+      [14, -17],
+      [60, -17],
+      [61, 8],
+      [36, 32],
+      [37, 93],
+      [38, 53],
+      [11, 100],
+      [58, 33],
+      [41, -3],
+      [34, 47],
+      [9, 65],
+      [-11, 44],
+      [14, 31],
+      [-14, 57],
+      [10, 30],
+      [52, 56],
+      [53, 7],
+      [70, 63],
+      [-8, 44],
+      [-2, 97],
+      [-10, 49],
+      [45, 42],
+      [48, 17],
+      [21, 24],
+      [-3, 34],
+      [-33, 86],
+      [5, 23],
+      [-23, 73],
+      [0, 44],
+      [49, 52],
+      [25, 110],
+      [30, 29],
+      [-32, 35],
+      [-48, 33],
+      [-10, -19],
+      [-93, -10],
+      [-39, -14],
+      [-92, -8],
+      [-44, 23],
+      [-33, 34],
+      [-24, 67],
+      [-41, 4],
+      [-77, -41],
+      [-41, 1],
+      [-77, -35],
+      [-74, -13],
+      [-25, 29],
+      [-40, 110],
+      [43, 69],
+      [5, 31],
+      [-49, 70],
+      [-28, 15],
+      [-20, 55],
+      [8, 62],
+      [-27, 53],
+      [-36, 7],
+      [-56, 39],
+      [-25, 50],
+      [12, 40],
+      [-31, 69],
+      [-91, 8],
+      [-31, 77],
+      [-21, 8],
+      [-59, 95],
+      [22, 41],
+      [-28, 32],
+      [47, 107],
+      [58, 62],
+      [-36, 17],
+      [11, 57],
+      [23, 28],
+      [47, 99],
+      [-15, 38],
+      [18, 39],
+      [25, 100],
+      [-15, 35],
+      [30, 51],
+      [3, 83],
+      [-12, 68],
+      [-25, 21],
+      [21, 52],
+      [-48, 34],
+      [-15, 34],
+      [19, 57],
+      [-43, 76],
+      [26, 82],
+      [-23, 23],
+      [-68, 29],
+      [17, 32],
+      [0, 64],
+      [-31, 0],
+      [1, 57],
+      [41, 68],
+      [191, 96],
+      [24, 27],
+      [2, 57],
+      [44, 7],
+      [-18, 49],
+      [28, 65],
+      [-15, 28],
+      [9, 35],
+      [-36, 60],
+      [-55, 53],
+      [-41, 59],
+      [-37, 89],
+      [-22, 111],
+      [1, 92],
+      [45, 121],
+      [49, 54],
+      [-2, 37],
+      [-28, 18],
+      [-15, 86],
+      [-36, 38],
+      [-13, 47],
+      [-89, 57],
+      [-51, 71],
+      [-54, 40],
+      [-24, 38],
+      [14, 56],
+      [-14, 61],
+      [-42, 32],
+      [-25, 77],
+      [-32, 44],
+      [-72, 170],
+      [2, 48],
+      [-29, 7],
+      [-12, 44],
+      [-51, 59],
+      [-29, 3],
+      [-17, 98],
+      [12, 97],
+      [18, 48]
+    ],
+    [
+      [25096, 28832],
+      [44, 19],
+      [14, -28],
+      [135, -40],
+      [189, 100],
+      [399, 118],
+      [171, 17],
+      [54, -38],
+      [93, -85],
+      [164, -41],
+      [85, 93],
+      [82, 57],
+      [109, 133],
+      [103, 87],
+      [-39, 44],
+      [5, 29],
+      [-19, 43],
+      [-27, 8],
+      [-18, 66],
+      [-38, 47],
+      [5, 38],
+      [-31, 52],
+      [-8, 49],
+      [20, 46],
+      [72, 42],
+      [208, -15],
+      [24, -33],
+      [179, 31],
+      [112, 112],
+      [127, -146],
+      [-7, -35],
+      [15, -72],
+      [53, -81],
+      [49, -49],
+      [50, -69],
+      [-7, -22],
+      [17, -47],
+      [-14, -31],
+      [5, -89],
+      [-16, -47],
+      [1, -73],
+      [61, -13],
+      [19, -23],
+      [49, -9],
+      [49, -27],
+      [13, 32],
+      [282, 53],
+      [4, -13],
+      [152, 51],
+      [-64, 95],
+      [-21, 84],
+      [27, 26],
+      [55, -1],
+      [43, -35],
+      [60, -7],
+      [39, 36],
+      [52, 26],
+      [14, 48],
+      [50, 12],
+      [84, 46],
+      [139, -54],
+      [96, -164],
+      [-2, -56],
+      [43, -99],
+      [140, -14],
+      [74, -50],
+      [81, 52],
+      [4, 32],
+      [65, 31],
+      [137, 9],
+      [155, 46],
+      [91, 9],
+      [57, 24],
+      [33, 29],
+      [41, 15],
+      [63, -63],
+      [14, -62],
+      [-7, -35],
+      [-35, -26],
+      [-33, -87],
+      [-53, 1],
+      [-43, 15],
+      [-83, -6],
+      [-76, -24],
+      [-1, -33],
+      [45, 0],
+      [34, -34],
+      [-24, -34],
+      [10, -55],
+      [64, -68],
+      [114, -19],
+      [-18, -50],
+      [20, -7],
+      [23, -57],
+      [59, 18],
+      [57, -8],
+      [66, 41],
+      [47, 11],
+      [41, 29],
+      [117, -7],
+      [-23, 111],
+      [3, 96],
+      [17, 37],
+      [12, 69],
+      [-16, 25],
+      [45, 74],
+      [-2, 22],
+      [63, 50],
+      [98, 50],
+      [117, 431],
+      [60, 9],
+      [21, -21],
+      [103, -11],
+      [-19, 76],
+      [22, 5],
+      [-5, 50],
+      [32, 41],
+      [53, 9],
+      [16, 34],
+      [-12, 32],
+      [24, 34],
+      [106, 22],
+      [11, -6],
+      [30, -89],
+      [47, 1],
+      [72, 19],
+      [12, -53],
+      [37, -1],
+      [57, 26],
+      [12, -23],
+      [78, -20],
+      [57, -52],
+      [68, -91],
+      [73, -31],
+      [-42, -50],
+      [-33, -61],
+      [19, -134],
+      [69, -146],
+      [50, 4],
+      [90, -142],
+      [40, -109],
+      [-10, -75],
+      [18, -71],
+      [6, -71],
+      [18, -88],
+      [50, -66],
+      [-19, -127],
+      [77, -19],
+      [37, -175],
+      [28, -76],
+      [-1, -78],
+      [52, -120],
+      [58, -82],
+      [-5, -94],
+      [13, -47],
+      [-4, -66],
+      [35, -68],
+      [-3, -27],
+      [42, -16],
+      [2, -30],
+      [64, -112],
+      [-20, -29],
+      [53, -33],
+      [45, -80],
+      [43, -47],
+      [3, -70],
+      [31, -22],
+      [19, -124],
+      [56, -27],
+      [113, -35],
+      [15, -42],
+      [56, -36],
+      [27, 16],
+      [104, -5],
+      [46, -26],
+      [34, 10],
+      [29, -20],
+      [81, 4],
+      [14, -15],
+      [48, 23],
+      [44, 40]
+    ],
+    [
+      [15128, 22096],
+      [49, -26],
+      [38, -53],
+      [79, 27],
+      [7, -21],
+      [-71, -64],
+      [-55, -40],
+      [-49, -68],
+      [-93, 23],
+      [-6, 65]
+    ],
+    [
+      [15027, 21939],
+      [51, 20],
+      [23, 53],
+      [-33, 44],
+      [60, 40]
+    ],
+    [
+      [15727, 22361],
+      [4, -76],
+      [-8, -23],
+      [39, -90],
+      [-48, -1],
+      [-68, -38],
+      [-70, -59],
+      [-19, -52],
+      [-45, 7],
+      [-27, 92],
+      [20, 11],
+      [-28, 48],
+      [-51, 53],
+      [22, 107],
+      [139, 64],
+      [32, -16],
+      [57, 23],
+      [36, 2],
+      [15, -52]
+    ],
+    [
+      [27872, 19721],
+      [44, 25],
+      [64, 2],
+      [63, -42],
+      [129, 37],
+      [64, -39],
+      [41, -7],
+      [72, 20],
+      [40, -1],
+      [57, 15],
+      [10, -66],
+      [38, -38],
+      [36, -61],
+      [43, -25],
+      [25, -43],
+      [12, -48],
+      [60, -19],
+      [43, 18],
+      [46, -8],
+      [64, -49],
+      [47, -12],
+      [87, -71],
+      [118, -112],
+      [20, -37],
+      [30, -19],
+      [80, -77],
+      [36, 44],
+      [117, 45],
+      [13, 26],
+      [55, 23],
+      [9, 36],
+      [34, 13],
+      [15, 27],
+      [56, -25],
+      [27, 26],
+      [156, 65],
+      [53, 35],
+      [45, -39],
+      [42, -10],
+      [92, 30],
+      [63, 1],
+      [55, -63],
+      [97, -57],
+      [14, -42],
+      [86, 0],
+      [39, -10],
+      [55, 20],
+      [69, 155],
+      [86, -42],
+      [84, -29],
+      [52, -35],
+      [58, -21],
+      [34, -55],
+      [54, -62],
+      [34, -67],
+      [83, 16],
+      [73, -16],
+      [34, -23],
+      [46, 44],
+      [133, 100],
+      [69, 36],
+      [60, 44],
+      [3, 21],
+      [63, 62],
+      [57, 37],
+      [66, 66],
+      [67, 46],
+      [13, 25],
+      [56, 35],
+      [36, 42],
+      [349, 48],
+      [49, 32],
+      [3, 31],
+      [69, 38]
+    ],
+    [
+      [32164, 19737],
+      [24, 7],
+      [88, -50],
+      [20, -46],
+      [46, -68],
+      [46, -32],
+      [72, -17],
+      [54, -128]
+    ],
+    [
+      [32514, 19403],
+      [15, -122],
+      [59, 19],
+      [39, 39],
+      [51, 24],
+      [95, 97],
+      [45, -5],
+      [41, -26],
+      [10, -34],
+      [43, -17],
+      [45, 33],
+      [94, 12],
+      [39, -9],
+      [49, -44],
+      [60, 8],
+      [-2, -84],
+      [25, -20],
+      [0, -36]
+    ],
+    [
+      [33222, 19238],
+      [-18, -92],
+      [-46, -102],
+      [-31, 8],
+      [-27, -23],
+      [6, -36],
+      [33, -34],
+      [22, -53],
+      [-40, -51],
+      [-7, -39],
+      [17, -26],
+      [-9, -72],
+      [38, -73],
+      [43, -26],
+      [37, -64],
+      [-35, -57],
+      [3, -247],
+      [11, -40],
+      [74, -48],
+      [-1, -62],
+      [-19, -68],
+      [39, -136],
+      [-32, -93],
+      [-5, -85],
+      [-104, -35],
+      [-53, -31],
+      [-37, 16],
+      [-82, 12],
+      [-46, -17],
+      [-110, 27],
+      [-62, 2],
+      [-11, 42],
+      [-29, 24],
+      [-52, -5],
+      [-117, 49],
+      [-11, -25],
+      [11, -70],
+      [-30, -81],
+      [21, -52],
+      [2, -65],
+      [-13, -87],
+      [33, -34],
+      [32, -89],
+      [56, -28],
+      [25, -72],
+      [3, -132],
+      [13, -76]
+    ],
+    [
+      [32714, 16992],
+      [-150, 21],
+      [-54, -141],
+      [-2, -22],
+      [-53, -33],
+      [-94, -129],
+      [-7, -30],
+      [-53, -61],
+      [-69, -18],
+      [-19, 18],
+      [-20, -66],
+      [-24, -34],
+      [-3, -171],
+      [25, -51],
+      [-3, -52],
+      [-27, -88],
+      [-3, -35],
+      [-36, -51],
+      [-9, -55],
+      [-43, -45],
+      [-4, -74],
+      [14, -47],
+      [-6, -31],
+      [15, -55],
+      [-23, -39],
+      [-14, -69],
+      [55, -78],
+      [-57, -96],
+      [-39, -28],
+      [-80, -95],
+      [5, -46],
+      [-42, -32],
+      [-64, -75],
+      [-65, -34],
+      [-32, -29],
+      [-124, -25],
+      [-41, 9],
+      [-78, -12],
+      [-24, -14],
+      [-54, -95],
+      [2, -38],
+      [-60, -55],
+      [-10, -28],
+      [-62, -59],
+      [-88, -20],
+      [-28, 7],
+      [-42, -28],
+      [-47, -10],
+      [-48, -88],
+      [-56, -51],
+      [-85, 6],
+      [-60, -44],
+      [-77, -18],
+      [-12, -33],
+      [-53, -48],
+      [-74, 2],
+      [-64, -21],
+      [-87, -40],
+      [-31, 12],
+      [-64, -11],
+      [-23, 13],
+      [-52, -17],
+      [-38, 10],
+      [-40, -11],
+      [-51, 2],
+      [-109, -25],
+      [-73, -47],
+      [-29, 20],
+      [-157, -18],
+      [-89, -53],
+      [-51, -1],
+      [-21, 48],
+      [-61, 29],
+      [-7, 70],
+      [7, 78],
+      [-69, -8],
+      [-75, 20],
+      [-44, -21],
+      [-142, 17],
+      [-109, 58],
+      [-78, 16],
+      [-58, 32],
+      [-69, 6],
+      [-46, 66],
+      [-67, 60],
+      [-43, 63],
+      [-126, 41],
+      [-64, -10],
+      [-61, 29],
+      [-27, 38],
+      [-50, -6],
+      [-22, 16],
+      [-65, 5],
+      [-101, 69],
+      [-48, -37],
+      [-80, -5],
+      [-82, -17],
+      [-85, 69],
+      [-145, 20],
+      [-100, 59],
+      [-22, 39],
+      [-43, 13],
+      [-74, -12],
+      [-24, 13],
+      [-104, 14],
+      [-104, -51],
+      [-39, -37],
+      [-52, -22],
+      [-43, 15],
+      [-59, -47],
+      [-5, -36],
+      [-28, -32],
+      [-30, -72],
+      [-47, -38],
+      [-67, 11],
+      [-142, -65],
+      [-44, -90],
+      [-39, -24],
+      [-2, -50],
+      [32, -67],
+      [32, -26],
+      [-13, -31],
+      [82, -126],
+      [-33, -91],
+      [9, -71],
+      [-42, -75],
+      [-45, -1],
+      [-88, -70],
+      [-55, -27],
+      [-34, 16],
+      [-41, -19],
+      [-64, 2],
+      [-40, -39],
+      [-74, -57],
+      [-28, -97],
+      [-86, -37],
+      [-35, -33],
+      [19, -20],
+      [-21, -49],
+      [-54, 2],
+      [-44, -10],
+      [-11, -34],
+      [-29, -21],
+      [-13, -34],
+      [-71, 1],
+      [-55, -27],
+      [-62, -63],
+      [-35, -6],
+      [-57, 23],
+      [-49, -49],
+      [-147, -53],
+      [-84, -12],
+      [-94, 10],
+      [-167, -23],
+      [-28, 34],
+      [-48, -7],
+      [-100, -83],
+      [-110, -65],
+      [-37, -45],
+      [2, -26],
+      [-50, -39],
+      [-40, -13],
+      [-95, -55],
+      [-63, -18],
+      [-127, -60],
+      [-62, -87],
+      [-83, -46],
+      [-35, -64],
+      [-59, -43],
+      [-25, -68],
+      [-78, -24],
+      [-53, -59],
+      [-32, 7],
+      [-19, -38],
+      [-50, -42],
+      [-60, -17],
+      [-20, -41],
+      [-141, -91],
+      [-15, -29],
+      [-56, -39],
+      [-110, -64],
+      [-118, -20],
+      [-50, -60],
+      [-35, -66],
+      [-92, -19],
+      [-57, 59],
+      [-70, 47],
+      [-73, 113],
+      [-45, 1],
+      [-53, 34],
+      [-52, 17],
+      [-51, 34],
+      [-114, 48],
+      [-460, 201],
+      [-125, 80],
+      [-19, -63],
+      [-43, -49],
+      [-43, -34],
+      [-43, 1],
+      [-51, -26],
+      [-31, -32],
+      [15, -75],
+      [3, -57],
+      [-30, -68],
+      [-67, -55],
+      [-44, 5],
+      [-15, -31],
+      [25, -88],
+      [-7, -29],
+      [-38, -38],
+      [-19, -45],
+      [-119, 45],
+      [-36, 46],
+      [-5, 29],
+      [-68, -1],
+      [-86, -52],
+      [-87, -8],
+      [-42, -33],
+      [-50, 19],
+      [-49, -2],
+      [-59, -29],
+      [-84, 1],
+      [-62, -13],
+      [-72, -35],
+      [-9, -55],
+      [-19, -19],
+      [-41, -95],
+      [2, -34],
+      [54, -42],
+      [129, -72],
+      [53, -4],
+      [113, -103],
+      [-186, -99],
+      [-37, -84],
+      [8, -44],
+      [-17, -14],
+      [-114, -30],
+      [-31, -21],
+      [-83, 5],
+      [-106, 26],
+      [-75, -7],
+      [-18, -52],
+      [-44, -57],
+      [-43, -12],
+      [-62, 41],
+      [-57, -33],
+      [-47, 9],
+      [-23, 39],
+      [9, 41],
+      [-26, 131],
+      [-22, 48],
+      [-37, 37],
+      [-82, -33],
+      [-8, -57],
+      [-39, -55],
+      [-81, -1],
+      [-20, -34],
+      [-47, 48],
+      [-1, 46],
+      [-64, 27],
+      [-46, -11],
+      [-29, 14],
+      [-65, 10],
+      [-40, 25],
+      [-21, 40],
+      [-68, -22],
+      [-70, -86],
+      [-154, -14],
+      [-24, -29],
+      [-46, -5],
+      [-35, -31],
+      [-56, -15],
+      [-41, -35],
+      [-27, 41],
+      [-91, -70],
+      [-8, -23],
+      [-51, -61],
+      [-22, 4],
+      [-32, -51],
+      [-43, -46],
+      [-22, 10],
+      [-33, -25],
+      [-33, -56],
+      [-68, -39],
+      [-39, -37],
+      [-47, -10],
+      [-52, -71],
+      [-67, -59],
+      [-61, 11],
+      [-88, -53],
+      [-67, -27],
+      [-74, -10],
+      [-114, -46],
+      [-107, -10],
+      [-62, 82],
+      [-29, 53],
+      [-9, 51],
+      [24, 65],
+      [-20, 53],
+      [25, 26],
+      [2, 39],
+      [25, 28],
+      [6, 152],
+      [-33, 92],
+      [-150, -179],
+      [-47, -15],
+      [-64, 31],
+      [-379, -182],
+      [-24, -77],
+      [7, -58],
+      [19, -47],
+      [-17, -29],
+      [-5, -48],
+      [9, -113],
+      [18, -30],
+      [-51, -46],
+      [-63, -104],
+      [-30, -26],
+      [-25, 6],
+      [-55, -46],
+      [-91, -19],
+      [-89, -8],
+      [-67, 22],
+      [-77, 37]
+    ],
+    [
+      [16872, 10406],
+      [11, 389],
+      [-49, 183],
+      [76, 36],
+      [22, -5],
+      [21, 42],
+      [-3, 48],
+      [-16, 31],
+      [-96, -62],
+      [-41, 1],
+      [-69, 116],
+      [-16, 92],
+      [-32, 24],
+      [2, 85],
+      [-22, 40],
+      [-30, -17],
+      [-131, 4],
+      [16, 122],
+      [48, 92],
+      [-2, 25],
+      [33, 45],
+      [14, 53],
+      [25, 35],
+      [10, 66],
+      [43, 52],
+      [-11, 110],
+      [20, 111],
+      [19, 49],
+      [-41, 62],
+      [-6, 39],
+      [-36, 17],
+      [-43, 80],
+      [-17, 67],
+      [-84, 91],
+      [-4, 30],
+      [32, 110],
+      [51, -10],
+      [23, 13],
+      [62, -33],
+      [107, 7],
+      [76, 38],
+      [50, 13],
+      [34, 46],
+      [25, 106],
+      [-14, 44],
+      [85, 47],
+      [-80, 72],
+      [34, 29],
+      [12, 55],
+      [-12, 15],
+      [26, 85],
+      [-47, 120],
+      [-31, 103],
+      [-11, 191],
+      [160, 24],
+      [-2, 67],
+      [-22, 56],
+      [88, 57],
+      [20, 56],
+      [29, 33],
+      [5, 83],
+      [20, 17],
+      [-2, 48],
+      [31, 88],
+      [-17, 34],
+      [20, 55],
+      [3, 79],
+      [-16, 24],
+      [-1, 67],
+      [-17, 73],
+      [3, 36],
+      [-28, 46],
+      [17, 87],
+      [-18, 51],
+      [-26, 24],
+      [-51, 88],
+      [-23, 18],
+      [-1, 151]
+    ],
+    [
+      [17077, 14972],
+      [45, 9],
+      [88, 41],
+      [107, 74],
+      [47, 49],
+      [70, 106],
+      [37, 83],
+      [61, 99],
+      [135, 156],
+      [31, -7],
+      [92, -53],
+      [103, -40],
+      [70, 12],
+      [60, 31],
+      [37, 84],
+      [23, 76],
+      [34, 25],
+      [75, 29],
+      [-79, 175],
+      [19, 182],
+      [27, 138],
+      [-6, 49],
+      [-76, 64],
+      [5, 179],
+      [10, 125],
+      [100, 5],
+      [81, 38],
+      [39, 60],
+      [-25, 91],
+      [-92, 173],
+      [33, 12],
+      [76, -14],
+      [22, 13],
+      [43, -10],
+      [83, 16],
+      [70, -4],
+      [27, -45],
+      [30, -18],
+      [7, -67],
+      [14, -30],
+      [43, -15],
+      [16, -28],
+      [-7, -69],
+      [32, -40],
+      [15, 86],
+      [44, 54],
+      [3, 22],
+      [50, 21],
+      [152, 151],
+      [-108, -15],
+      [34, 146],
+      [-9, 19],
+      [17, 78],
+      [-19, 37],
+      [36, 70],
+      [36, 44],
+      [-46, 110],
+      [63, 64],
+      [-25, 59],
+      [2, 27],
+      [41, 47],
+      [-29, 54],
+      [-40, -11],
+      [-71, 9],
+      [-49, 49],
+      [-31, 86],
+      [-37, -26],
+      [-175, 17],
+      [-9, 62],
+      [45, 75],
+      [13, 65],
+      [-2, 49],
+      [-26, 31],
+      [-79, 20],
+      [-23, 20],
+      [-41, -8],
+      [-77, 18],
+      [-33, 24],
+      [-256, 37],
+      [-30, -20],
+      [-104, 108],
+      [-39, 82],
+      [-10, 67],
+      [7, 119],
+      [19, 91],
+      [46, 70],
+      [32, 72],
+      [9, 64],
+      [-20, 24],
+      [-2, 97],
+      [5, 61],
+      [-63, 121],
+      [-39, 7],
+      [-36, 57],
+      [-2, 63],
+      [-24, 40],
+      [54, 42],
+      [14, 39],
+      [59, 36],
+      [5, 46],
+      [44, 38],
+      [-32, 65],
+      [19, 50],
+      [-25, 81],
+      [43, 55],
+      [33, 65],
+      [8, 58],
+      [17, 27],
+      [-2, 40],
+      [15, 62],
+      [97, 121],
+      [38, 21],
+      [-17, 43],
+      [23, 63],
+      [2, 36],
+      [-14, 67],
+      [6, 32],
+      [69, 24],
+      [63, 36],
+      [14, 42],
+      [-25, 45],
+      [5, 19],
+      [-74, 75],
+      [-11, 37],
+      [-54, 29],
+      [-20, 23],
+      [-61, 24],
+      [-76, 59],
+      [-19, 60],
+      [-53, 42],
+      [98, 60],
+      [34, 12],
+      [7, 105],
+      [51, 38],
+      [13, -41],
+      [47, 19],
+      [34, -12],
+      [88, -56],
+      [-27, -38],
+      [-30, 10],
+      [-37, -42],
+      [49, -67],
+      [50, -7],
+      [54, 10],
+      [36, -41],
+      [107, 57],
+      [28, 28],
+      [27, -9],
+      [31, 35],
+      [37, 76],
+      [44, 38],
+      [20, 50],
+      [-17, 41],
+      [6, 75],
+      [-26, 36],
+      [-35, 15],
+      [-19, 100],
+      [15, 205],
+      [-27, 39],
+      [-60, 30],
+      [-91, 23],
+      [-168, 55],
+      [-49, 2],
+      [-154, -38],
+      [-65, -3],
+      [-75, 16],
+      [-87, 30],
+      [-79, -2],
+      [-40, -22],
+      [-62, -63],
+      [-41, 8],
+      [-92, 55],
+      [-85, 28],
+      [-42, 52],
+      [-54, 32],
+      [-83, 11],
+      [-101, 34],
+      [-16, -50],
+      [-91, 3],
+      [-57, 45],
+      [-16, 43],
+      [-30, 25],
+      [-60, -13],
+      [-27, -24],
+      [-60, -91],
+      [-69, 89],
+      [-62, 19],
+      [-51, -14],
+      [-53, 10],
+      [-41, -31],
+      [-21, -39],
+      [-75, 26],
+      [-7, 15],
+      [85, 43],
+      [44, 13],
+      [73, 51],
+      [13, 40],
+      [34, 18],
+      [-25, 72],
+      [14, 71],
+      [-19, 77],
+      [17, 41],
+      [1, 58],
+      [56, 9],
+      [3, 53],
+      [18, 12],
+      [-113, 183],
+      [-9, 63],
+      [79, 27],
+      [8, 121],
+      [-31, 24],
+      [15, 109],
+      [29, 44],
+      [-37, 27],
+      [-26, 41],
+      [-84, -15],
+      [-32, 31],
+      [-40, 15],
+      [12, 57],
+      [50, -8],
+      [96, 7],
+      [13, 69],
+      [90, -12],
+      [6, 45],
+      [29, 73],
+      [75, 37],
+      [-11, 21],
+      [88, 57],
+      [47, 77],
+      [51, 50],
+      [-10, 44],
+      [-76, 80],
+      [-43, 35],
+      [-49, 15],
+      [56, 78],
+      [-9, 44],
+      [-34, 2],
+      [-77, 143],
+      [-25, -21],
+      [-34, 32],
+      [-37, -58],
+      [-69, 47],
+      [-58, -94],
+      [-59, 10],
+      [5, -41],
+      [-26, -6],
+      [-515, -281],
+      [-26, 9],
+      [-69, -24],
+      [-755, -187],
+      [-32, 11],
+      [-51, -7],
+      [-377, 12],
+      [-81, 14],
+      [-154, 46]
+    ],
+    [
+      [14452, 23643],
+      [-195, 529],
+      [72, 105],
+      [31, 100],
+      [5, 37],
+      [-6, 236],
+      [16, 48],
+      [80, 108],
+      [136, 108],
+      [45, 23],
+      [148, 30],
+      [102, 90],
+      [73, 53],
+      [123, 153],
+      [-9, 42],
+      [-32, 52],
+      [-34, 20],
+      [-21, 76],
+      [8, 52],
+      [-9, 49],
+      [-42, 45],
+      [134, 114],
+      [-3, 84],
+      [-148, 215],
+      [-166, 67],
+      [-82, 3],
+      [-104, 108],
+      [-108, 69],
+      [-8, 13],
+      [-158, -109],
+      [-70, 174],
+      [55, 72],
+      [50, 79],
+      [114, 102],
+      [-23, 36],
+      [-95, 18],
+      [-34, -8],
+      [-39, -57],
+      [-130, -3],
+      [-70, -15],
+      [-38, 20],
+      [-21, -26],
+      [-60, -26],
+      [-51, -46],
+      [-123, -42],
+      [-253, -56],
+      [-124, -13],
+      [-92, -25],
+      [-68, -6],
+      [-112, -66],
+      [-48, -9],
+      [-87, 79],
+      [-43, -70],
+      [-68, -57],
+      [-76, -53],
+      [-94, -43],
+      [-176, -105],
+      [-98, -74],
+      [-69, -41],
+      [-52, -20],
+      [-52, -35],
+      [-111, -62],
+      [20, 146],
+      [46, 216],
+      [123, 112],
+      [53, 229],
+      [51, 234],
+      [-53, 98],
+      [-48, 74],
+      [-15, 45],
+      [-106, 193],
+      [-32, 72],
+      [-110, 219]
+    ],
+    [
+      [12071, 27423],
+      [24, 58],
+      [116, 116],
+      [65, -270],
+      [40, -49],
+      [-4, -85],
+      [38, -23],
+      [17, -56],
+      [52, 21],
+      [63, 48],
+      [46, 9],
+      [137, 60],
+      [49, 45],
+      [55, 67],
+      [213, 136],
+      [111, 118],
+      [26, 132],
+      [17, 59],
+      [143, 57],
+      [6, -33],
+      [38, -37],
+      [-14, -29],
+      [23, -37],
+      [57, 28],
+      [135, -14],
+      [87, -131],
+      [49, -13],
+      [64, 46],
+      [40, 73],
+      [16, 58],
+      [64, 98],
+      [25, 113],
+      [170, 10],
+      [190, 38],
+      [92, 134],
+      [86, 225],
+      [100, 173],
+      [-8, 24],
+      [49, 82],
+      [104, 46],
+      [47, 38],
+      [-32, 135],
+      [13, 66],
+      [59, 45],
+      [92, 17],
+      [146, 75],
+      [1, -89],
+      [30, 0],
+      [44, 40],
+      [49, -77],
+      [-41, -33],
+      [36, -60],
+      [104, 1],
+      [2, 31],
+      [45, 61],
+      [47, 31],
+      [109, -25],
+      [135, 50],
+      [78, 13],
+      [85, -12],
+      [79, -25],
+      [6, 21],
+      [47, 7],
+      [97, 41],
+      [34, 22],
+      [29, -2],
+      [-34, 70],
+      [-53, 59],
+      [30, 33],
+      [-43, 15],
+      [-73, -10],
+      [4, 76],
+      [44, 10],
+      [14, 34],
+      [-24, 75],
+      [41, 76],
+      [91, 49],
+      [65, 12],
+      [110, 54],
+      [-9, 103],
+      [3, 59],
+      [27, 26],
+      [-16, 42],
+      [-51, 7],
+      [-7, 53],
+      [51, 36],
+      [-6, 19],
+      [-62, 29],
+      [5, 20],
+      [67, 9],
+      [71, -9],
+      [30, 9],
+      [120, 15],
+      [32, -9],
+      [90, 21],
+      [153, -7],
+      [42, -16],
+      [-40, -55],
+      [53, -64],
+      [63, 23],
+      [114, -38],
+      [121, 1],
+      [93, -50],
+      [42, -10],
+      [137, -1],
+      [71, 9],
+      [1, 24],
+      [62, 6],
+      [66, -26],
+      [131, -33],
+      [86, 18],
+      [26, 17],
+      [74, -2],
+      [133, 35],
+      [70, 8],
+      [49, 28],
+      [85, 22],
+      [76, 105],
+      [120, 83],
+      [11, 41],
+      [67, 87],
+      [109, -12],
+      [195, 68],
+      [64, 13],
+      [126, 86],
+      [54, 30],
+      [23, -19],
+      [135, -20],
+      [38, 9],
+      [166, -18],
+      [79, 14],
+      [17, -68],
+      [91, -27],
+      [25, -32],
+      [56, 14],
+      [38, -11],
+      [173, 29],
+      [84, -7],
+      [153, -34],
+      [106, 14],
+      [114, -5],
+      [26, -38],
+      [49, -21],
+      [61, -41],
+      [54, -3],
+      [62, 14],
+      [15, -12],
+      [91, 63],
+      [94, 43],
+      [66, 46],
+      [95, 83],
+      [106, 54],
+      [275, 72],
+      [103, 51],
+      [-56, 18],
+      [-87, -34],
+      [-215, -10],
+      [-50, 32],
+      [35, 100],
+      [42, 74],
+      [13, 68],
+      [144, 103],
+      [62, 25],
+      [0, 43],
+      [30, 48]
+    ],
+    [
+      [21277, 31081],
+      [57, -30],
+      [2, -36],
+      [42, 12],
+      [39, -44],
+      [0, -21],
+      [126, -214],
+      [-7, -37],
+      [-39, -57],
+      [-93, -59],
+      [-45, 19],
+      [-133, -122],
+      [-19, -209],
+      [-105, -84],
+      [6, -69],
+      [-33, -41],
+      [-56, -41],
+      [-110, -16],
+      [-49, 4],
+      [-95, -31],
+      [-104, -49],
+      [-7, 17],
+      [-95, -51],
+      [-39, -10],
+      [-14, -31],
+      [-96, -51],
+      [-24, 8],
+      [-86, -104],
+      [-40, -57],
+      [-57, -141],
+      [-29, -50],
+      [-48, -47],
+      [-186, -25],
+      [-11, -9],
+      [-134, -1],
+      [-47, -31],
+      [-63, -58],
+      [-79, -50],
+      [-107, -31],
+      [-19, -16],
+      [-16, -65],
+      [26, -106],
+      [37, -50],
+      [-72, -55],
+      [-49, 7],
+      [-52, -29],
+      [-83, -86],
+      [-48, -29],
+      [-100, -46],
+      [-137, -49],
+      [-28, -24],
+      [-50, -16],
+      [-53, -60],
+      [-110, -87],
+      [-39, -1],
+      [-28, 30],
+      [-145, -38],
+      [-79, -33],
+      [21, -105],
+      [38, -106],
+      [27, 1],
+      [102, -320],
+      [111, 39],
+      [35, 21],
+      [37, -75],
+      [48, -16],
+      [44, -29],
+      [59, -71],
+      [53, -97],
+      [82, -202],
+      [30, -84],
+      [-15, -14],
+      [-82, 11],
+      [-33, -20],
+      [-5, -30],
+      [25, -67],
+      [48, -5],
+      [64, 20],
+      [14, -15],
+      [104, 50],
+      [102, -15],
+      [43, 7],
+      [55, 60],
+      [10, 75],
+      [23, 43],
+      [45, 23],
+      [57, 14],
+      [53, 32],
+      [20, 30],
+      [3, 55],
+      [-12, 75],
+      [32, 47],
+      [37, 11],
+      [32, -19],
+      [20, -76],
+      [44, -28],
+      [58, 38],
+      [26, 36],
+      [2, 46],
+      [-17, 56],
+      [5, 31],
+      [93, -12],
+      [144, 26],
+      [122, 11],
+      [11, -52],
+      [-39, -39],
+      [18, -63],
+      [-55, -34],
+      [97, -80],
+      [31, -117],
+      [78, 27],
+      [36, -8],
+      [54, -31],
+      [35, 7],
+      [18, -28],
+      [-91, -88],
+      [33, -51],
+      [-56, -53],
+      [-50, -21],
+      [-36, -30],
+      [-46, -75],
+      [-62, -21],
+      [-15, -18],
+      [-69, -26],
+      [-62, 49],
+      [-41, -7],
+      [-15, 32],
+      [-55, 29],
+      [-92, -26],
+      [-104, -93],
+      [16, -94],
+      [-21, -38],
+      [-68, -5],
+      [-53, -18],
+      [-52, -36],
+      [1, -54],
+      [-65, -53],
+      [26, -18],
+      [36, -74],
+      [43, 6],
+      [21, -52],
+      [55, 45],
+      [13, -35],
+      [-15, -42],
+      [-26, -27],
+      [85, -33],
+      [-30, -37],
+      [-36, 23],
+      [-76, 10],
+      [-57, -48],
+      [-58, -17],
+      [-8, 14],
+      [-136, -33],
+      [-38, -36],
+      [-40, -16],
+      [-116, 82],
+      [-67, -44],
+      [-14, 79],
+      [-29, 50],
+      [-41, -52],
+      [-38, -12],
+      [-25, 28],
+      [-46, -16],
+      [-20, -31],
+      [-35, 15],
+      [-12, -33],
+      [20, -73],
+      [-21, -40],
+      [14, -32],
+      [29, -19],
+      [30, -91],
+      [45, -44],
+      [-1, -42],
+      [29, -61],
+      [17, -91],
+      [23, -25],
+      [27, 15],
+      [41, -22],
+      [8, -57],
+      [125, 32],
+      [29, -3],
+      [96, 22],
+      [45, 17],
+      [108, 82],
+      [40, -45],
+      [143, 62],
+      [45, -129],
+      [-31, -11],
+      [9, -35],
+      [-28, -12],
+      [-10, -68],
+      [19, -37],
+      [15, -122],
+      [67, -88],
+      [0, -27],
+      [72, -3],
+      [108, 32],
+      [54, 33],
+      [86, 28],
+      [23, -8],
+      [29, 25],
+      [36, 82],
+      [24, 16],
+      [29, 51],
+      [-17, 46],
+      [-40, 22],
+      [-87, 175],
+      [14, 6],
+      [-47, 83],
+      [14, 5],
+      [-20, 93],
+      [413, 180],
+      [84, 89],
+      [81, 26],
+      [67, 57],
+      [53, 89],
+      [0, 67],
+      [30, 76],
+      [42, 71],
+      [52, 47],
+      [5, 61],
+      [28, 39],
+      [57, 22],
+      [-2, 41],
+      [-71, 58],
+      [-32, 99],
+      [-18, 27],
+      [74, 26],
+      [-4, 23],
+      [75, 17],
+      [41, 23],
+      [10, -34],
+      [70, 22],
+      [51, -65],
+      [60, 36],
+      [16, 30],
+      [77, 49],
+      [27, 41],
+      [75, 7],
+      [27, -78],
+      [25, -28],
+      [31, -6],
+      [70, 32],
+      [63, -90],
+      [33, -35],
+      [54, -219],
+      [29, 68],
+      [55, 36],
+      [72, -21],
+      [133, 25],
+      [89, 34],
+      [21, 36],
+      [78, -66],
+      [35, -12],
+      [60, -1],
+      [77, 18],
+      [10, -24],
+      [58, 29],
+      [11, -42],
+      [57, -51],
+      [73, 17],
+      [27, 35],
+      [-17, 121],
+      [30, 67],
+      [-23, 17],
+      [33, 34],
+      [77, 105],
+      [13, -16],
+      [61, 15],
+      [96, 0],
+      [13, 119],
+      [29, 31],
+      [24, 141],
+      [-28, 21],
+      [-61, 17],
+      [7, 44],
+      [28, 25],
+      [12, 60],
+      [-106, 102],
+      [-11, 44],
+      [-41, 12],
+      [-6, 47],
+      [-60, -5],
+      [-141, 22],
+      [53, 100],
+      [-21, 67],
+      [-48, 96],
+      [8, 58],
+      [-25, 59],
+      [-50, 14],
+      [-24, 46],
+      [63, 41],
+      [-45, 89],
+      [-70, -52],
+      [-18, 28],
+      [-41, -39],
+      [-18, 32],
+      [-45, -40],
+      [-35, 62],
+      [-59, -6],
+      [-10, 48],
+      [-46, 57],
+      [-13, 46],
+      [-59, 62],
+      [-42, -10],
+      [-24, 74],
+      [-29, -12],
+      [-48, 64],
+      [-38, 7],
+      [24, 174],
+      [-21, 135],
+      [-33, 111],
+      [-90, 71],
+      [-91, 135],
+      [272, 61],
+      [183, 37],
+      [84, 8],
+      [370, 9],
+      [81, 36],
+      [82, 59],
+      [76, 21],
+      [34, 22],
+      [23, -24],
+      [89, 31],
+      [35, 21],
+      [41, 61],
+      [28, 7],
+      [48, -62],
+      [121, -65],
+      [43, -14],
+      [40, -57],
+      [-12, -15],
+      [34, -52],
+      [46, -21],
+      [-11, -21],
+      [61, -93],
+      [38, 53],
+      [127, -145],
+      [-11, -29],
+      [10, -38],
+      [102, -140],
+      [75, 16],
+      [85, -59],
+      [61, 36],
+      [52, -1],
+      [49, -13],
+      [26, 23],
+      [25, 68],
+      [55, 84],
+      [131, 24],
+      [16, -131],
+      [116, -85],
+      [42, 13],
+      [81, 73],
+      [57, 93],
+      [35, 35],
+      [52, 13],
+      [10, -69],
+      [38, -44],
+      [88, -32],
+      [46, 17],
+      [24, 26],
+      [68, 44]
+    ],
+    [
+      [24915, 29458],
+      [30, -76],
+      [40, -52],
+      [-20, -22],
+      [12, -50],
+      [-50, -80],
+      [27, -40],
+      [-26, -61],
+      [20, -40],
+      [40, -46],
+      [15, -46],
+      [37, -57],
+      [56, -56]
+    ],
+    [
+      [17042, 22751],
+      [4, 46],
+      [-51, 18],
+      [-36, -7],
+      [15, -39],
+      [-43, -27],
+      [-41, -8],
+      [-75, -43],
+      [-28, -47],
+      [20, -81],
+      [23, -50],
+      [93, 59],
+      [39, 11],
+      [31, 35],
+      [46, -2],
+      [3, 135]
+    ],
+    [
+      [23147, 27401],
+      [-61, 15],
+      [-38, -3],
+      [-74, -39],
+      [-59, -137],
+      [3, -65],
+      [64, 22],
+      [34, -4],
+      [100, -32],
+      [49, 114],
+      [24, -13],
+      [69, 87],
+      [-84, 4],
+      [-27, 51]
+    ],
+    [
+      [32918, 35612],
+      [-26, -31],
+      [-65, -26],
+      [-25, -86],
+      [11, -50],
+      [-17, -11],
+      [-26, -82],
+      [1, -35],
+      [32, -39],
+      [-25, -38],
+      [31, -51],
+      [-62, 7],
+      [-31, -15],
+      [-41, -59],
+      [-29, -15],
+      [12, -31],
+      [-49, -60],
+      [27, -62],
+      [-127, -58],
+      [12, -65],
+      [-49, -59],
+      [-30, 40],
+      [-42, 31],
+      [-42, -24],
+      [-28, -57],
+      [-13, -101],
+      [-1, -81],
+      [-21, -47],
+      [-55, -30],
+      [-14, -23],
+      [-62, 23],
+      [-10, -20],
+      [-60, -6],
+      [-33, -16],
+      [5, -47],
+      [-34, -35],
+      [-16, -74],
+      [57, -59],
+      [-49, -42],
+      [32, -38],
+      [24, -106],
+      [-9, -95],
+      [17, -99],
+      [133, 12],
+      [13, -21],
+      [-8, -113],
+      [23, -76],
+      [-37, -18],
+      [-64, 2],
+      [1, -44],
+      [-29, -40],
+      [50, -18],
+      [1, -40],
+      [35, -47],
+      [9, -39],
+      [83, 0],
+      [17, -60],
+      [32, 2],
+      [23, -28],
+      [30, -106],
+      [-66, -21],
+      [-8, -50],
+      [11, -117],
+      [24, -10],
+      [17, -83],
+      [-29, -61],
+      [-77, 18],
+      [-32, -32],
+      [5, -32],
+      [41, -29],
+      [68, -23],
+      [59, -3],
+      [4, -24],
+      [52, -81],
+      [-5, -62],
+      [-52, -69],
+      [-50, 34],
+      [-28, -36],
+      [47, -38],
+      [-44, -58],
+      [-5, -62],
+      [41, -46],
+      [-35, -55],
+      [-37, -23],
+      [-41, 49],
+      [-95, -31],
+      [-22, -52],
+      [-21, 36],
+      [-34, -31],
+      [41, -44],
+      [33, 9],
+      [70, -5],
+      [30, 20],
+      [48, -8],
+      [48, -89],
+      [59, 8],
+      [24, -20],
+      [29, 24],
+      [59, -41],
+      [-19, -74],
+      [0, -192],
+      [22, -34],
+      [-3, -41],
+      [26, -39],
+      [33, -19],
+      [-3, -55],
+      [32, -31],
+      [54, 5],
+      [16, -73],
+      [-44, -52],
+      [30, -86],
+      [2, -85],
+      [26, -12],
+      [-46, -81],
+      [-3, -46],
+      [-23, -46],
+      [38, -52],
+      [8, -50],
+      [43, -28],
+      [42, -44],
+      [41, -86],
+      [-37, -63],
+      [-21, -73],
+      [38, -18],
+      [14, -36],
+      [36, 5],
+      [139, 54],
+      [30, -8],
+      [41, -34],
+      [26, 29],
+      [71, 14],
+      [20, 36],
+      [84, 26],
+      [15, 64],
+      [50, -12],
+      [-83, -144],
+      [9, -53],
+      [-33, -35],
+      [-12, -33],
+      [-71, -49],
+      [11, -36],
+      [-71, -34],
+      [-52, -53],
+      [2, -59],
+      [-39, -29],
+      [20, -41],
+      [-38, -99],
+      [-85, -52],
+      [-18, -43],
+      [-42, -38],
+      [-53, -17],
+      [-81, -11],
+      [-39, -34],
+      [-91, -58],
+      [-42, 45],
+      [-38, 18],
+      [-35, -20],
+      [33, -53],
+      [26, -82],
+      [16, -82],
+      [27, -51],
+      [65, -66],
+      [15, -65],
+      [-23, -95],
+      [5, -34],
+      [44, -60],
+      [0, -44],
+      [-21, -70],
+      [14, -40],
+      [53, -58],
+      [32, -48]
+    ],
+    [
+      [32712, 29108],
+      [12, -42],
+      [-10, -36],
+      [-40, -61],
+      [-23, -105],
+      [-101, -102],
+      [-38, -92],
+      [-2, -37],
+      [33, -135],
+      [42, -57],
+      [6, -36],
+      [-8, -88],
+      [28, -179],
+      [32, -78],
+      [4, -48],
+      [-47, -94],
+      [-18, -82],
+      [1, -64],
+      [24, -113],
+      [13, -15],
+      [92, -29],
+      [24, -36],
+      [41, -158],
+      [3, -135],
+      [-42, -93],
+      [3, -41],
+      [25, -68],
+      [10, -73],
+      [-11, -50],
+      [-25, -47]
+    ],
+    [
+      [24915, 29458],
+      [107, 47],
+      [115, 134],
+      [32, 70],
+      [8, 84],
+      [42, 73],
+      [4, 27],
+      [45, 62],
+      [27, 57],
+      [15, 60],
+      [50, 105],
+      [25, 94],
+      [43, 41],
+      [76, 37],
+      [69, 51],
+      [60, -2],
+      [64, -15],
+      [65, 5],
+      [41, 91],
+      [85, 87],
+      [-27, 80],
+      [10, 76],
+      [71, 138],
+      [31, 50],
+      [65, 82],
+      [24, -36],
+      [93, -78],
+      [14, -28],
+      [247, -30],
+      [125, -3],
+      [23, -56],
+      [-20, -90],
+      [-3, -59],
+      [16, -85],
+      [63, 15],
+      [74, 29],
+      [158, 40],
+      [81, 25],
+      [17, 52],
+      [127, 73],
+      [48, 66],
+      [63, 8],
+      [127, 72],
+      [29, 52],
+      [-41, 84],
+      [-6, 38],
+      [106, 92],
+      [14, 92],
+      [-31, 53],
+      [83, 74],
+      [9, 39],
+      [27, 26],
+      [62, 30],
+      [43, 100],
+      [6, 83],
+      [18, 27],
+      [6, 76],
+      [24, 89],
+      [-21, 56],
+      [-43, 187],
+      [-83, 4],
+      [-5, -37],
+      [-53, 20],
+      [-31, -12],
+      [-51, 26],
+      [3, 114],
+      [-12, 13],
+      [-25, 95],
+      [-74, 58],
+      [-137, 36],
+      [-26, 60],
+      [-23, -16],
+      [-49, 15],
+      [-29, -10],
+      [-63, 51],
+      [-40, 68],
+      [-26, -10],
+      [-121, 69],
+      [226, 106],
+      [50, 15],
+      [5, -110],
+      [16, -3],
+      [24, 122],
+      [-26, 63],
+      [-22, 114],
+      [7, 59],
+      [-5, 59],
+      [-16, 27],
+      [-27, 88],
+      [-76, 63],
+      [23, 45],
+      [-31, 109],
+      [-74, 53],
+      [-21, 3],
+      [-21, -40],
+      [-35, -14],
+      [-32, -41],
+      [2, -44],
+      [-51, -5]
+    ],
+    [
+      [26671, 33318],
+      [10, 73],
+      [-18, 9],
+      [-99, 92],
+      [-117, -36],
+      [32, 126],
+      [7, 78],
+      [26, 108],
+      [-6, 80],
+      [34, 74],
+      [-13, 11],
+      [-58, -38],
+      [-122, -44],
+      [-61, 13],
+      [-16, 25],
+      [-35, -16],
+      [-82, 3],
+      [-84, 45],
+      [-92, 1],
+      [0, 148],
+      [-70, 81],
+      [-16, 103],
+      [-51, 28],
+      [-7, 70],
+      [-28, 21],
+      [-104, 29],
+      [-34, 36],
+      [-47, 74],
+      [-31, -14],
+      [-7, 90],
+      [20, 103],
+      [-36, 5],
+      [-33, -21],
+      [-27, -53],
+      [-73, 0],
+      [5, 57],
+      [-24, 98],
+      [-25, 31],
+      [-45, 97],
+      [-66, 41],
+      [-78, -52],
+      [-66, 22],
+      [-64, 11],
+      [-45, -11],
+      [26, -40],
+      [-28, -30],
+      [4, -81],
+      [-5, -153],
+      [-15, -29],
+      [-1, -54],
+      [-43, -14],
+      [-73, -92],
+      [-102, -94],
+      [-43, -68],
+      [-66, -90],
+      [-69, -3],
+      [-64, 35],
+      [19, -62],
+      [-59, 12],
+      [-61, -59],
+      [-9, 60],
+      [48, 89],
+      [-17, 18],
+      [11, 44],
+      [-33, 28],
+      [-13, 35],
+      [4, 74],
+      [-19, 60],
+      [32, 53],
+      [-4, 61],
+      [-52, 33],
+      [-41, -9],
+      [-21, 18],
+      [-251, 86],
+      [-99, 0],
+      [-32, 9],
+      [-48, -15],
+      [-148, 47],
+      [-38, 44],
+      [-19, 59],
+      [-50, 0],
+      [-54, 23],
+      [-6, 35],
+      [-32, 31],
+      [-25, -27],
+      [-23, 17],
+      [-36, -10],
+      [-25, 16],
+      [-18, 66]
+    ],
+    [
+      [23427, 35039],
+      [59, 37],
+      [33, 9],
+      [127, 14],
+      [77, 4],
+      [199, 27],
+      [47, 24],
+      [48, 56],
+      [90, 33],
+      [111, 49],
+      [124, 16],
+      [81, 31],
+      [35, 28],
+      [65, 30],
+      [43, 86],
+      [54, 66],
+      [95, 70],
+      [20, 41],
+      [16, 64],
+      [14, 104],
+      [22, 83],
+      [53, 94],
+      [41, 15],
+      [62, -7],
+      [90, -24],
+      [33, -59],
+      [50, -28],
+      [66, 0],
+      [111, 34],
+      [85, 69],
+      [127, 30],
+      [97, -6],
+      [86, 10],
+      [49, -6],
+      [69, -25],
+      [79, -69],
+      [64, -64],
+      [33, -44],
+      [73, -156],
+      [12, -67],
+      [-11, -51],
+      [-44, -80],
+      [-2, -44],
+      [14, -68],
+      [26, -71],
+      [31, -45],
+      [51, -45],
+      [42, -17],
+      [70, -8],
+      [103, 6],
+      [111, -53],
+      [79, -6],
+      [31, 39],
+      [28, 79],
+      [16, 95],
+      [25, 34],
+      [80, 38],
+      [125, -43],
+      [145, -18],
+      [214, 29],
+      [57, -3],
+      [96, -36],
+      [92, -71],
+      [76, -14],
+      [91, 31],
+      [152, 27],
+      [96, 42],
+      [156, 129],
+      [25, 41],
+      [41, -10],
+      [66, 29],
+      [45, -10],
+      [113, -111],
+      [48, -23],
+      [94, 6],
+      [76, 49],
+      [39, 41],
+      [35, 89],
+      [21, 196],
+      [41, 77],
+      [53, 55],
+      [51, 20],
+      [48, 4],
+      [95, -13],
+      [122, 2],
+      [33, 10],
+      [24, 36],
+      [-9, 73],
+      [24, 41],
+      [136, 86],
+      [47, 5],
+      [116, -40],
+      [35, 6],
+      [44, 29],
+      [42, 54],
+      [43, 71],
+      [51, 30],
+      [46, 9],
+      [44, 24],
+      [37, 57],
+      [77, 165],
+      [53, 62],
+      [54, 34],
+      [56, 15],
+      [91, -10],
+      [75, -39],
+      [39, -42],
+      [31, -104],
+      [10, -82],
+      [42, -50],
+      [47, 27],
+      [82, 113],
+      [36, 19],
+      [81, -4],
+      [96, 42],
+      [57, 13],
+      [51, -16],
+      [32, -89],
+      [31, -17],
+      [113, 38],
+      [70, 11],
+      [115, -23],
+      [91, -55],
+      [35, -37],
+      [8, -34],
+      [-27, -140],
+      [-7, -78],
+      [31, -90],
+      [43, -49],
+      [42, -28],
+      [75, -32],
+      [38, -33],
+      [103, -141],
+      [64, -61],
+      [100, -37],
+      [94, -6],
+      [107, 11],
+      [142, -16],
+      [106, -26],
+      [53, -4],
+      [100, -25],
+      [68, -34],
+      [28, 20],
+      [54, 124],
+      [67, 70],
+      [36, 21],
+      [37, -2],
+      [93, -44],
+      [94, -68],
+      [161, -74]
+    ],
+    [
+      [18279, 33008],
+      [43, 36],
+      [76, -18],
+      [32, 6],
+      [36, -49],
+      [37, -25],
+      [12, -30],
+      [73, -18],
+      [66, -26],
+      [43, 12],
+      [84, -17],
+      [41, 12],
+      [63, -9],
+      [113, -35]
+    ],
+    [
+      [18998, 32847],
+      [21, -17],
+      [-8, -48],
+      [-34, -26],
+      [-9, -129],
+      [-24, -65],
+      [-16, -81],
+      [78, -16],
+      [77, 15],
+      [125, -24],
+      [60, -20],
+      [82, -14],
+      [81, -6],
+      [94, 4],
+      [34, 40],
+      [56, 29],
+      [51, -7],
+      [90, -29],
+      [76, 15],
+      [49, 21],
+      [39, 67],
+      [-1, 35],
+      [20, 66],
+      [38, 55],
+      [12, 50],
+      [-46, 71],
+      [-14, 67],
+      [-35, 62],
+      [-36, 29],
+      [-48, 64],
+      [-78, 70],
+      [-145, -50],
+      [-26, 6],
+      [-34, 48]
+    ],
+    [
+      [19527, 33129],
+      [47, 81],
+      [-27, 16],
+      [85, 65],
+      [-14, 69],
+      [31, 45],
+      [34, -5],
+      [55, 23],
+      [120, 32]
+    ],
+    [
+      [19858, 33455],
+      [5, -61],
+      [14, -41],
+      [84, -114],
+      [18, -43],
+      [23, 0],
+      [133, 73],
+      [22, 22],
+      [116, 31],
+      [49, 1],
+      [83, 49],
+      [153, 37],
+      [93, -20],
+      [61, -1],
+      [102, 48],
+      [176, 3],
+      [-43, 259],
+      [22, 82],
+      [54, 7],
+      [42, 113],
+      [-1, 147],
+      [-48, -2],
+      [-1, 91],
+      [-10, 40],
+      [-157, -12],
+      [-70, 20],
+      [-34, 23],
+      [-7, 77],
+      [-16, -1]
+    ],
+    [
+      [20721, 34283],
+      [-2, 68],
+      [-32, 98],
+      [-27, 11],
+      [-38, 54],
+      [-53, 46],
+      [-16, 102],
+      [25, -14],
+      [37, -99],
+      [39, -22],
+      [78, 49],
+      [82, 5],
+      [22, -50],
+      [22, 18],
+      [40, -8],
+      [-4, 68],
+      [55, 63],
+      [45, 103],
+      [0, 45],
+      [-56, 78],
+      [-31, -20],
+      [-68, 58],
+      [-47, -37],
+      [-67, -80],
+      [-41, -18],
+      [-35, 19],
+      [-37, -13],
+      [-24, 35],
+      [13, 42],
+      [-24, 58],
+      [-22, 23],
+      [41, 100],
+      [58, 67],
+      [48, 20],
+      [26, -17],
+      [77, 18],
+      [28, 19],
+      [87, 93],
+      [-8, 12],
+      [79, 55],
+      [77, 26],
+      [51, 37],
+      [87, 86],
+      [104, 58]
+    ],
+    [
+      [21310, 35539],
+      [44, -35],
+      [25, -43],
+      [63, -67],
+      [-44, -112],
+      [-33, 13],
+      [-39, -164],
+      [119, 28],
+      [145, -35],
+      [77, -3],
+      [78, -39],
+      [-21, -56],
+      [3, -36],
+      [-43, -100],
+      [42, -65],
+      [35, -4],
+      [19, -49],
+      [-8, -76],
+      [12, -64],
+      [61, -10],
+      [93, 123],
+      [99, 197],
+      [42, 35],
+      [25, 55],
+      [52, 28],
+      [56, -21],
+      [8, 193],
+      [-7, 35],
+      [-52, 52],
+      [-12, 29],
+      [0, 75],
+      [130, 58],
+      [88, -6]
+    ],
+    [
+      [22367, 35475],
+      [45, -26],
+      [35, -36],
+      [48, -75],
+      [45, -88],
+      [27, -38],
+      [47, -35],
+      [108, -28],
+      [27, -44],
+      [29, -94],
+      [42, -54],
+      [77, -36],
+      [73, -24],
+      [210, -6],
+      [32, 8],
+      [123, 87],
+      [92, 53]
+    ],
+    [
+      [26671, 33318],
+      [22, -48],
+      [-107, -121],
+      [-39, -28],
+      [-10, -48],
+      [17, -65],
+      [51, -147],
+      [-25, -22],
+      [75, -104],
+      [82, -97],
+      [-45, -26],
+      [-56, -66],
+      [-78, -21],
+      [-45, -35],
+      [-58, -9],
+      [-76, -48],
+      [24, -75],
+      [-55, -57],
+      [-96, -46],
+      [-16, -20],
+      [-42, 7],
+      [-106, -43],
+      [-45, -35],
+      [-42, 27],
+      [-37, 53],
+      [-40, -35],
+      [-26, 19],
+      [-115, 111],
+      [-22, 3],
+      [-70, -24],
+      [13, -59],
+      [-12, -40],
+      [-48, 10],
+      [-28, -9],
+      [-32, -75],
+      [-82, -42],
+      [37, -87],
+      [26, -25],
+      [29, 7],
+      [49, -61],
+      [-12, -79],
+      [-36, 20],
+      [-101, -65],
+      [-73, 14],
+      [-43, -17],
+      [-15, -28],
+      [-117, -29],
+      [-35, -33],
+      [-96, -40],
+      [-40, -40],
+      [-47, -108],
+      [-41, -48],
+      [-146, -43],
+      [-121, -2],
+      [-68, -11],
+      [-43, -26],
+      [-60, -108],
+      [-35, -122],
+      [4, -68],
+      [-24, -150],
+      [-110, -24],
+      [-39, 34],
+      [-35, -7],
+      [-91, 4],
+      [-53, -10],
+      [4, 51],
+      [-37, 27],
+      [-163, 8],
+      [-36, 24],
+      [-116, 109],
+      [-116, 164],
+      [-83, 226],
+      [-186, 42],
+      [-160, 31],
+      [-307, -39],
+      [-60, -13],
+      [-249, -37],
+      [-153, -17],
+      [-18, 124],
+      [4, 44],
+      [-29, 57],
+      [10, 44],
+      [-82, 3],
+      [-31, 47],
+      [0, 50],
+      [53, 14],
+      [-24, 189],
+      [-5, 101],
+      [-32, 198],
+      [93, 0],
+      [238, -19],
+      [87, 19],
+      [131, 102],
+      [79, 50],
+      [65, 227],
+      [-1, 37],
+      [26, 65],
+      [-13, 56],
+      [-35, 47],
+      [7, 72],
+      [20, 108],
+      [22, 44],
+      [55, 51],
+      [16, 36],
+      [82, 26],
+      [14, 33],
+      [-7, 52],
+      [20, 53],
+      [43, 48],
+      [43, 85],
+      [44, 16],
+      [-64, 137],
+      [-36, 36],
+      [-35, 56],
+      [-47, 23],
+      [-69, -3],
+      [-94, 26],
+      [-94, 44],
+      [-70, -11],
+      [-45, 37],
+      [-39, 105],
+      [13, 67],
+      [-3, 42],
+      [-106, -31],
+      [-64, 15],
+      [-36, -30],
+      [-27, -56],
+      [20, -17],
+      [70, -16],
+      [-40, -30],
+      [17, -48],
+      [-85, -32],
+      [-39, 17],
+      [-46, -59],
+      [-63, 26],
+      [-88, 6],
+      [-32, 12],
+      [-41, 36],
+      [-123, 52],
+      [-27, -13],
+      [-74, 16],
+      [20, -111],
+      [-6, -36],
+      [-35, -42],
+      [6, -92],
+      [26, -7],
+      [-48, -95],
+      [86, -11],
+      [78, -50],
+      [27, -2],
+      [79, -87],
+      [-35, -25],
+      [6, -98],
+      [-50, -166],
+      [-32, -76],
+      [0, -70],
+      [-16, -46],
+      [11, -39],
+      [-4, -100],
+      [-24, 13],
+      [-88, -14],
+      [-70, -29],
+      [-48, 18],
+      [-86, 12],
+      [-96, -83],
+      [-49, 3],
+      [-26, 28],
+      [11, 38],
+      [-33, 8],
+      [11, 50],
+      [-37, 32],
+      [-90, 9],
+      [-2, -97],
+      [7, -34],
+      [-24, -92],
+      [27, -107],
+      [43, -32],
+      [19, 8],
+      [63, -47],
+      [24, -51],
+      [-52, -11],
+      [-143, -15],
+      [-130, 17],
+      [-69, 2],
+      [-107, -6],
+      [-112, -15],
+      [-126, -34],
+      [27, -64],
+      [52, -73],
+      [-10, -57],
+      [-55, -76],
+      [-66, -146],
+      [-36, -61],
+      [-106, 27],
+      [-102, -92],
+      [-71, -10],
+      [-72, 14],
+      [-99, 45],
+      [-2, 30],
+      [-49, -3],
+      [-47, 64],
+      [-10, 83],
+      [8, 103],
+      [-81, -14],
+      [-85, 44],
+      [-48, -38],
+      [-60, 22],
+      [-28, 49],
+      [-68, -6],
+      [17, -53],
+      [-29, -34],
+      [-37, 11],
+      [-25, 42],
+      [-37, -40],
+      [1, -42],
+      [24, -40],
+      [-12, -24],
+      [17, -124],
+      [-60, -59],
+      [-23, -104]
+    ],
+    [
+      [19746, 31805],
+      [-49, -30],
+      [-116, 2],
+      [-177, 22],
+      [61, 85],
+      [-35, 95],
+      [4, 80],
+      [-16, 29],
+      [-91, 7],
+      [-60, 33],
+      [-33, 2],
+      [-39, 126],
+      [-10, 8],
+      [-87, -9],
+      [-55, 149],
+      [-7, 42],
+      [-61, 8],
+      [-47, 27],
+      [-100, -3],
+      [-130, 24],
+      [-9, 61],
+      [-35, 12],
+      [-44, 40],
+      [-34, 12],
+      [-14, 30],
+      [-58, 35],
+      [-6, 29],
+      [-35, 22],
+      [-2, 44],
+      [-40, 20],
+      [-77, 2],
+      [-79, 38],
+      [-12, 57],
+      [36, 59],
+      [-10, 45]
+    ],
+    [
+      [32712, 29108],
+      [39, -47],
+      [20, -66],
+      [26, -35],
+      [-29, -44],
+      [29, -40],
+      [7, -127],
+      [16, -84],
+      [37, -19],
+      [10, -48],
+      [70, 15],
+      [31, 17],
+      [83, -24],
+      [47, 4],
+      [28, 27],
+      [35, -53],
+      [35, -7],
+      [20, -44],
+      [56, -10],
+      [11, -38],
+      [36, 16],
+      [41, -31],
+      [36, -69],
+      [74, 13],
+      [46, -48],
+      [28, -4],
+      [35, -57],
+      [15, 23],
+      [49, -29],
+      [74, 9],
+      [51, 37],
+      [50, 21],
+      [137, 7],
+      [34, 33],
+      [86, 33],
+      [3, 80],
+      [66, 4],
+      [112, -21],
+      [80, -7],
+      [7, 77],
+      [52, -29],
+      [38, 50],
+      [89, -34],
+      [14, 12],
+      [80, -7],
+      [12, 33],
+      [51, -34],
+      [36, -42],
+      [51, 2],
+      [39, -22],
+      [76, -3],
+      [26, -28],
+      [39, 21],
+      [58, -3],
+      [17, -22],
+      [-29, -59],
+      [14, -57],
+      [43, -6],
+      [28, 32],
+      [51, -18],
+      [38, 11],
+      [45, -77],
+      [-13, -30],
+      [3, -63],
+      [24, -43],
+      [59, 28],
+      [40, 46],
+      [38, -16],
+      [91, -119],
+      [33, -82],
+      [-11, -46],
+      [45, -37],
+      [-2, -56],
+      [101, -173],
+      [-41, -55],
+      [-15, -65],
+      [27, -20],
+      [68, -4],
+      [36, -11],
+      [74, -3],
+      [7, -44],
+      [38, -6],
+      [136, 40],
+      [48, -21],
+      [55, 8],
+      [6, -43],
+      [-7, -99],
+      [9, -49],
+      [60, -26],
+      [123, -5],
+      [18, 26],
+      [53, 26],
+      [90, 12],
+      [68, 17]
+    ],
+    [
+      [36472, 27379],
+      [49, -10],
+      [30, -84],
+      [15, -77],
+      [-9, -26],
+      [6, -67],
+      [-42, -7],
+      [-44, -41],
+      [-24, -4],
+      [-30, -37],
+      [-57, -122],
+      [29, -80],
+      [-27, -62],
+      [15, -48],
+      [-29, -36],
+      [-27, -84],
+      [-40, -6],
+      [-37, -68],
+      [-27, -6],
+      [-36, -40],
+      [8, -65],
+      [-58, -2],
+      [-23, -14],
+      [-73, -6],
+      [10, -58],
+      [-65, -67],
+      [-26, -14],
+      [-110, -167],
+      [-8, -77],
+      [-102, -51],
+      [-151, 11],
+      [-39, 17],
+      [-149, 5],
+      [-42, -10],
+      [-16, -50],
+      [-100, -30],
+      [-51, 19],
+      [-70, -53],
+      [-10, -50],
+      [-66, -19],
+      [-55, -30],
+      [-46, 10],
+      [-44, -46],
+      [-64, -21],
+      [-51, -4],
+      [-42, 38],
+      [31, 78],
+      [-13, 38],
+      [-4, 69],
+      [-15, 36],
+      [-55, 4],
+      [-31, -10],
+      [-45, 12],
+      [-73, -7],
+      [-39, 16],
+      [-46, -45],
+      [-69, -3],
+      [-63, -13],
+      [-69, 4],
+      [-52, -35],
+      [-383, 208]
+    ],
+    [
+      [32514, 19403],
+      [285, 140],
+      [131, -80],
+      [-1, 55],
+      [-14, 16],
+      [-3, 55],
+      [-27, 63],
+      [-46, 61],
+      [-1, 47],
+      [-59, 17],
+      [-49, 0],
+      [-46, 18],
+      [-33, 47],
+      [-51, 51],
+      [-69, -3],
+      [-118, 153],
+      [-38, 15],
+      [33, 61],
+      [18, 56],
+      [-8, 57],
+      [-41, 25],
+      [-63, 19],
+      [-33, 38],
+      [-23, 7],
+      [-9, 63],
+      [29, 68],
+      [-45, 162],
+      [-22, 23],
+      [-25, 79],
+      [12, 36],
+      [-17, 72],
+      [0, 71],
+      [-17, 32],
+      [-8, 72],
+      [31, 35],
+      [2, 160],
+      [-92, 0],
+      [-35, 61],
+      [25, 38],
+      [13, 52],
+      [69, 14],
+      [11, 84],
+      [43, 56],
+      [89, -9],
+      [13, -34],
+      [-11, -41],
+      [21, -47],
+      [38, -41],
+      [-32, -39],
+      [-52, -32],
+      [-44, -93],
+      [6, -99],
+      [-21, -75],
+      [11, -31],
+      [49, 112],
+      [39, 64],
+      [39, -43],
+      [41, 57],
+      [59, 25],
+      [47, 81],
+      [45, 46],
+      [39, -13],
+      [59, 27],
+      [-2, 19],
+      [47, 47],
+      [26, -5],
+      [20, 29],
+      [26, -82],
+      [53, -62],
+      [-5, -31],
+      [27, -110],
+      [-21, -30],
+      [8, -43],
+      [95, -20],
+      [45, -21],
+      [78, 34],
+      [44, 33],
+      [57, -10],
+      [86, 23],
+      [57, -8],
+      [102, 30],
+      [75, 4],
+      [46, -12]
+    ],
+    [
+      [33522, 21099],
+      [50, -6],
+      [38, 41],
+      [35, 14],
+      [30, -37],
+      [58, -29],
+      [88, -26],
+      [61, 20],
+      [8, -30],
+      [49, -56],
+      [6, -30],
+      [37, -41],
+      [6, -65],
+      [-31, -44],
+      [-130, -60],
+      [-64, -41],
+      [-35, -74],
+      [-12, -58],
+      [-27, -44],
+      [6, -61],
+      [-8, -103],
+      [-28, -28],
+      [2, -28],
+      [-41, -73],
+      [67, -79],
+      [1, -82],
+      [-62, -69],
+      [-85, -40],
+      [-107, 24],
+      [35, -58],
+      [19, 0],
+      [57, -46],
+      [39, 29],
+      [75, 32],
+      [11, -92],
+      [-36, -43],
+      [-9, -51],
+      [67, -61],
+      [24, -61],
+      [43, -48],
+      [37, -171],
+      [-37, -29],
+      [-56, -11],
+      [-20, -26],
+      [-118, -32],
+      [-45, 3],
+      [-24, 27],
+      [-58, 8],
+      [-23, -21],
+      [-33, 11],
+      [-160, -116]
+    ],
+    [
+      [30297, 23507],
+      [43, 4],
+      [49, 23],
+      [67, -17],
+      [96, 51],
+      [89, 87],
+      [32, -13],
+      [52, 11],
+      [20, -45],
+      [133, 10],
+      [125, -57],
+      [109, 5],
+      [99, 29],
+      [52, 4],
+      [77, -36],
+      [-3, -36],
+      [29, -38],
+      [25, -67],
+      [-64, -269],
+      [50, -72],
+      [-143, -113],
+      [-57, -98],
+      [-40, -43],
+      [-48, -119],
+      [35, -24],
+      [122, -51],
+      [12, -29],
+      [115, -91],
+      [45, 21],
+      [33, -20],
+      [25, 12],
+      [69, 7],
+      [74, 33],
+      [86, 22],
+      [48, 27],
+      [41, -64],
+      [-14, -52],
+      [5, -42],
+      [-16, -64],
+      [32, -19],
+      [23, -53],
+      [-11, -69],
+      [-20, -57],
+      [-53, -50],
+      [-12, -65],
+      [27, -94],
+      [-2, -157],
+      [-66, -92],
+      [-2, -86],
+      [-62, -81],
+      [22, -77],
+      [-5, -56],
+      [50, -63],
+      [12, -68],
+      [3, -77],
+      [-49, -93],
+      [-11, -59],
+      [9, -45],
+      [-37, -95],
+      [16, -96],
+      [25, -20],
+      [21, -68],
+      [-4, -85],
+      [49, -11],
+      [-14, -39],
+      [1, -74],
+      [-37, -33],
+      [-88, -39],
+      [-36, -38],
+      [-10, -40],
+      [23, -56],
+      [32, -52],
+      [72, -50],
+      [5, -27],
+      [48, -45],
+      [47, -71],
+      [55, -18],
+      [-4, -43],
+      [18, -50],
+      [44, -23],
+      [21, -35],
+      [51, -22],
+      [29, -27],
+      [78, -23],
+      [108, -90],
+      [-3, -25]
+    ],
+    [
+      [33486, 23983],
+      [-39, -250],
+      [419, -159],
+      [305, 67],
+      [309, -3],
+      [377, 215]
+    ],
+    [
+      [34857, 23853],
+      [53, -143],
+      [-34, -66],
+      [-72, -107],
+      [-64, -35],
+      [11, -55],
+      [-38, -94],
+      [-23, -29],
+      [-47, -19],
+      [16, -68],
+      [-7, -68],
+      [0, -104],
+      [18, -76],
+      [1, -48],
+      [-19, -65],
+      [3, -59],
+      [-80, 2],
+      [-13, -15],
+      [-60, 17],
+      [14, -62],
+      [30, -32],
+      [-10, -56],
+      [-41, -64],
+      [3, -22],
+      [-40, -29],
+      [-88, -31],
+      [-37, -28],
+      [-158, -14],
+      [-13, -58],
+      [-132, -88],
+      [-82, -25],
+      [-41, 43],
+      [-22, 45],
+      [-28, -18],
+      [-32, 13],
+      [-100, -1],
+      [-15, -27],
+      [-11, -105],
+      [-38, -70],
+      [-141, -53],
+      [-39, -22],
+      [-47, -3],
+      [-13, -41],
+      [-66, -80],
+      [15, -23],
+      [45, -9],
+      [54, 10],
+      [20, -10],
+      [47, -66],
+      [14, -50],
+      [50, -65],
+      [0, -38],
+      [32, -80],
+      [-69, -57],
+      [-28, -37],
+      [-52, -15],
+      [-10, -56],
+      [40, -71],
+      [16, -57],
+      [-30, -81],
+      [2, -43],
+      [-18, -28],
+      [15, -53],
+      [24, -35],
+      [0, -30]
+    ],
+    [
+      [43893, 22349],
+      [72, -62],
+      [42, -98],
+      [126, -105],
+      [95, 71],
+      [38, 13],
+      [47, -3],
+      [86, -44],
+      [51, 39],
+      [35, 2],
+      [103, -32],
+      [118, 5],
+      [37, -21],
+      [66, -71],
+      [57, -13],
+      [114, 25],
+      [109, 4],
+      [59, -72],
+      [53, 24],
+      [113, -31],
+      [133, -25],
+      [33, 17],
+      [89, -9],
+      [94, 7],
+      [74, -21],
+      [94, -65],
+      [84, -22],
+      [124, -7],
+      [48, -15],
+      [32, -24],
+      [53, -10],
+      [72, -39],
+      [39, -43],
+      [67, -20],
+      [61, -98],
+      [38, -20],
+      [109, -120],
+      [49, 35],
+      [23, 47],
+      [22, 88],
+      [-22, 98],
+      [54, 12],
+      [113, -11],
+      [39, 110],
+      [-26, 98],
+      [-7, 73],
+      [50, 31],
+      [18, 54],
+      [41, 48],
+      [91, 36],
+      [77, 83],
+      [-126, 69],
+      [-10, 100],
+      [17, 33],
+      [18, 77],
+      [38, 35],
+      [32, 54],
+      [13, 58],
+      [-2, 47],
+      [96, 45],
+      [-11, 30],
+      [76, 119],
+      [21, 92],
+      [37, -5],
+      [22, 88],
+      [17, 11],
+      [165, 30],
+      [8, 17],
+      [-10, 82],
+      [8, 93],
+      [-19, 48],
+      [22, 59],
+      [55, 45],
+      [62, 6],
+      [12, 21],
+      [83, 15],
+      [85, -7],
+      [58, 46],
+      [-320, 429],
+      [-145, 234],
+      [-31, 122],
+      [-31, 73],
+      [-277, 439],
+      [-50, 77],
+      [-57, 102],
+      [-19, 54]
+    ],
+    [
+      [46917, 25106],
+      [15, 58],
+      [25, 22],
+      [40, -20],
+      [1, -43],
+      [33, -67],
+      [19, -4],
+      [74, 146],
+      [27, 5],
+      [54, -48],
+      [26, 14],
+      [9, 47],
+      [37, -18],
+      [124, 12],
+      [27, 10],
+      [32, 56],
+      [306, 100],
+      [50, -27],
+      [19, -26],
+      [56, -28],
+      [59, -82],
+      [3, -79],
+      [14, -58],
+      [31, -35],
+      [39, 1],
+      [63, 46],
+      [101, 26],
+      [52, 23],
+      [82, -9],
+      [16, 18],
+      [63, 24],
+      [48, 46],
+      [107, 37],
+      [50, 57],
+      [50, -21],
+      [48, -63],
+      [65, -47],
+      [20, -34],
+      [67, -24],
+      [139, -25],
+      [52, 9],
+      [63, 46],
+      [-2, 25],
+      [52, 94],
+      [50, -6],
+      [74, -24],
+      [63, -1],
+      [50, 26],
+      [51, 8],
+      [35, -14],
+      [45, 9],
+      [96, 51],
+      [26, -2],
+      [3, -64],
+      [82, -76],
+      [58, -13],
+      [67, -45],
+      [54, -3],
+      [80, 32],
+      [13, -43],
+      [-39, -27],
+      [37, -62],
+      [87, -44],
+      [48, -37],
+      [82, 14],
+      [53, -14],
+      [38, 3],
+      [41, -24],
+      [48, -8],
+      [47, 14],
+      [6, -22],
+      [41, -8],
+      [29, -83],
+      [88, -4],
+      [39, 20],
+      [81, -9],
+      [57, 28],
+      [146, 1],
+      [38, -17],
+      [43, 12],
+      [31, -56],
+      [34, -17],
+      [35, -67],
+      [51, -30],
+      [78, -26],
+      [14, -29],
+      [66, -79],
+      [64, -38],
+      [41, 16],
+      [115, -59],
+      [24, -41],
+      [39, -16],
+      [26, -51],
+      [99, -28],
+      [38, 44],
+      [69, 22],
+      [87, 4],
+      [58, 52],
+      [36, 87],
+      [24, -18],
+      [102, -24],
+      [26, 9],
+      [68, -8],
+      [42, -34],
+      [12, -47],
+      [-41, -20],
+      [-32, -45],
+      [-49, -20],
+      [28, -137],
+      [77, -53],
+      [63, -35],
+      [67, -26],
+      [7, -111],
+      [17, -70],
+      [23, -30],
+      [-5, -29],
+      [-95, -71],
+      [-20, -46],
+      [16, -48],
+      [-61, -77],
+      [-7, -32],
+      [-50, -39],
+      [-13, -30],
+      [20, -55],
+      [-10, -43],
+      [-41, -43],
+      [-17, -38],
+      [29, -57],
+      [63, -54],
+      [11, -25],
+      [-20, -47],
+      [-4, -59],
+      [-28, -20],
+      [23, -54],
+      [-2, -65],
+      [10, -45],
+      [-9, -34],
+      [54, -9],
+      [-39, -43],
+      [-19, -61],
+      [49, -1],
+      [43, -18],
+      [27, -27],
+      [129, -27],
+      [37, -27],
+      [32, -59],
+      [81, -30],
+      [24, -19],
+      [56, 24],
+      [34, -28],
+      [25, -62],
+      [83, -70],
+      [75, -27],
+      [118, -73],
+      [63, 0],
+      [55, -20],
+      [111, 61],
+      [62, 14],
+      [27, -24],
+      [27, -50],
+      [46, -3],
+      [65, 23],
+      [22, 38],
+      [64, 14],
+      [30, -37],
+      [27, -98],
+      [6, -65],
+      [55, -11],
+      [45, -62],
+      [73, -4],
+      [68, -49],
+      [69, -22],
+      [52, 35],
+      [62, -8],
+      [43, 30],
+      [29, -58],
+      [47, -46],
+      [41, -14],
+      [37, -95],
+      [40, -64],
+      [32, -29],
+      [37, 4],
+      [51, -58],
+      [16, -71],
+      [41, -10],
+      [92, -83],
+      [-8, -78],
+      [-16, -70],
+      [8, -95],
+      [49, -45],
+      [34, 5],
+      [26, -24],
+      [52, 16],
+      [71, -7],
+      [74, 13],
+      [44, -6],
+      [49, -24],
+      [47, 0],
+      [34, 16],
+      [19, -27],
+      [54, -35],
+      [-14, -66],
+      [9, -65],
+      [52, -42],
+      [16, -33],
+      [47, -44],
+      [56, -101],
+      [105, 26],
+      [15, 21],
+      [67, 20],
+      [13, 45],
+      [37, 42],
+      [115, -21],
+      [117, 3],
+      [41, 24],
+      [21, 46],
+      [28, 8],
+      [77, -16],
+      [38, -19],
+      [22, -37],
+      [59, 56],
+      [29, 9],
+      [63, -9],
+      [22, 14],
+      [19, 48],
+      [89, 8],
+      [47, 33],
+      [20, 68],
+      [29, 34],
+      [51, 23],
+      [23, 24],
+      [33, 70],
+      [81, 1],
+      [54, -38],
+      [72, 4],
+      [81, 26],
+      [43, 23],
+      [58, -18],
+      [66, -4],
+      [55, 12],
+      [-15, 55],
+      [25, 32],
+      [-10, 94],
+      [26, 45],
+      [8, 43],
+      [-7, 63],
+      [11, 33],
+      [-55, 88],
+      [-33, 13],
+      [-21, 70],
+      [7, 82],
+      [29, 13],
+      [34, 42],
+      [33, 87],
+      [-6, 33],
+      [36, 132],
+      [-9, 24],
+      [17, 51],
+      [37, 17],
+      [30, 54],
+      [-22, 94],
+      [15, 156],
+      [143, -19],
+      [99, -25],
+      [93, -13],
+      [307, -121],
+      [15, 7],
+      [78, -67],
+      [53, 96],
+      [116, 24],
+      [58, -14],
+      [42, 16],
+      [-1, 105],
+      [-56, 68],
+      [-36, 28],
+      [-37, 51],
+      [-12, 59],
+      [30, 45],
+      [-12, 74],
+      [22, 64],
+      [58, 20],
+      [73, 12],
+      [22, -7],
+      [61, 22],
+      [32, 30],
+      [25, 101],
+      [-9, 58],
+      [6, 50],
+      [23, 54],
+      [38, 52],
+      [6, 62],
+      [70, 91],
+      [13, 28],
+      [-10, 60],
+      [61, 28],
+      [23, 66],
+      [4, 69],
+      [33, 27],
+      [88, 34],
+      [41, -17],
+      [95, 1],
+      [83, -18],
+      [20, 39],
+      [64, 46],
+      [25, 45],
+      [59, 60],
+      [62, 11],
+      [119, -69],
+      [52, -128],
+      [74, -66],
+      [63, -100],
+      [73, -32],
+      [75, -58],
+      [48, -68],
+      [4, -47],
+      [-16, -70],
+      [-45, -77],
+      [6, -23],
+      [-16, -83],
+      [53, -55],
+      [46, -31],
+      [62, 9],
+      [45, -11],
+      [42, -41],
+      [54, -3],
+      [58, -28],
+      [89, 8],
+      [15, -38],
+      [56, -24],
+      [17, -21],
+      [87, -33],
+      [37, -38],
+      [18, -45],
+      [39, -35],
+      [98, -44],
+      [63, -7],
+      [17, -19],
+      [-27, -37],
+      [-27, -92],
+      [3, -33],
+      [34, -36],
+      [3, -36],
+      [-26, -87],
+      [6, -32],
+      [-21, -37],
+      [13, -64],
+      [-38, -61],
+      [-63, -35],
+      [1, -65],
+      [-14, -86],
+      [-32, -41],
+      [5, -81],
+      [-7, -62],
+      [-40, -44],
+      [1, -19],
+      [-40, -38],
+      [-59, -98],
+      [28, -22],
+      [32, -48],
+      [6, -80],
+      [21, -85],
+      [-13, -128],
+      [-31, -93],
+      [22, -147],
+      [29, -125],
+      [-42, -27],
+      [-28, -73],
+      [-36, -52],
+      [34, -37],
+      [-12, -88],
+      [-37, -17],
+      [-36, 7],
+      [-12, -59],
+      [-34, -32],
+      [51, -115],
+      [-60, -51],
+      [2, -72],
+      [24, -39],
+      [-94, -249],
+      [-42, -65],
+      [-32, -11],
+      [-34, -33],
+      [-49, -27],
+      [-126, -18],
+      [-4, -33],
+      [-33, -30],
+      [15, -47],
+      [-17, -40],
+      [-52, -23],
+      [10, -28],
+      [77, -35],
+      [22, -47],
+      [37, -18],
+      [20, -90],
+      [56, -48],
+      [31, -68],
+      [0, -97],
+      [25, -67],
+      [9, -81],
+      [-22, -122],
+      [-16, -36],
+      [-76, 14],
+      [-168, -152],
+      [-136, -91],
+      [-17, -46],
+      [-54, -31],
+      [-15, -22],
+      [-61, -28],
+      [-23, -36],
+      [58, -52],
+      [42, -21],
+      [23, -33],
+      [2, -36],
+      [82, -120],
+      [41, -18],
+      [-16, -67],
+      [6, -25],
+      [-35, -49],
+      [-1, -54],
+      [-15, -37],
+      [-39, -34],
+      [-49, -20],
+      [-57, 11],
+      [-90, -198],
+      [-11, -58],
+      [-32, -76],
+      [-54, -13],
+      [-35, -31],
+      [-41, 5],
+      [-24, -61],
+      [36, -29],
+      [47, -107],
+      [21, -24],
+      [12, -57],
+      [25, -41],
+      [-17, -78],
+      [15, -40],
+      [7, -85],
+      [-23, -56],
+      [15, -76],
+      [28, -10],
+      [29, -45],
+      [4, -58],
+      [47, -77],
+      [20, -109],
+      [-24, -40],
+      [18, -27],
+      [71, -38],
+      [35, -7],
+      [140, 64],
+      [88, 1],
+      [109, 19],
+      [97, -2],
+      [58, 47],
+      [114, -78],
+      [108, -94],
+      [28, -34],
+      [224, -226],
+      [73, -91],
+      [64, -8],
+      [-10, -79],
+      [-54, -57],
+      [-36, -70],
+      [14, -71],
+      [20, -21],
+      [2, -76],
+      [-33, -37],
+      [-13, -58],
+      [17, -36],
+      [31, -17],
+      [-23, -121],
+      [-29, -52],
+      [17, -74],
+      [-56, -54],
+      [-16, -49],
+      [-25, -25],
+      [-11, -72],
+      [-26, -19],
+      [6, -36],
+      [-14, -44],
+      [49, -113],
+      [-21, -33],
+      [-23, -83],
+      [-45, -63],
+      [16, -99],
+      [-25, -25],
+      [-34, -1],
+      [-36, -22],
+      [-78, -6],
+      [-10, -89],
+      [-31, -25],
+      [-45, -93],
+      [-64, 55],
+      [-29, 6],
+      [-123, 75],
+      [-40, 80],
+      [-62, 62],
+      [-54, 42],
+      [-89, 100],
+      [-56, -8],
+      [-65, -33],
+      [-122, -92],
+      [-39, -17],
+      [-124, 71],
+      [-47, 53],
+      [-57, -6],
+      [-56, 56],
+      [-35, 1],
+      [-122, 59],
+      [-109, -2],
+      [-53, 10],
+      [-28, -64],
+      [6, -67],
+      [-76, -63],
+      [-35, -53],
+      [-35, -18],
+      [-33, 9],
+      [-27, 51],
+      [-57, 71],
+      [-67, 50],
+      [-59, -37],
+      [-36, -35],
+      [-30, 5],
+      [-61, -35],
+      [-45, 55],
+      [-76, -9],
+      [-84, 20],
+      [-22, 40],
+      [27, 61],
+      [-6, 83],
+      [-44, 44],
+      [-39, 67],
+      [-11, 85],
+      [-20, 35],
+      [-74, 14],
+      [-125, 69],
+      [-8, 29],
+      [-35, 37],
+      [-37, -17],
+      [-36, 5],
+      [-81, -64],
+      [-49, -55],
+      [-102, 68],
+      [-30, 77],
+      [7, 31],
+      [-8, 83],
+      [-16, 20],
+      [-6, 63],
+      [-13, 22],
+      [14, 77],
+      [39, 50],
+      [39, 108],
+      [39, 36],
+      [19, 55],
+      [39, 67],
+      [43, 41],
+      [-64, 72],
+      [-124, 167],
+      [-48, 99],
+      [-12, 88],
+      [0, 76],
+      [-19, 5],
+      [-46, -36],
+      [-85, -42],
+      [-21, -32],
+      [-44, -17],
+      [-60, -105],
+      [4, -48],
+      [-62, -95],
+      [-119, 78],
+      [-94, 29],
+      [-52, 9],
+      [-30, 18],
+      [-6, 49],
+      [-63, -7],
+      [-66, -33],
+      [-123, -80],
+      [-152, -88],
+      [-24, 10],
+      [-51, -28],
+      [-44, 4],
+      [-133, -88],
+      [-82, 1],
+      [-9, -59],
+      [-28, 1],
+      [-29, -32],
+      [-63, -25],
+      [-73, 23],
+      [-31, -8],
+      [-141, 59],
+      [-35, 40],
+      [-49, 3],
+      [-22, -55],
+      [-31, -45],
+      [5, -51],
+      [27, -50],
+      [-19, -39],
+      [-27, -21],
+      [-12, -102],
+      [55, -78],
+      [-13, -63],
+      [18, -20],
+      [-11, -48],
+      [-23, -12],
+      [-46, -98],
+      [-98, -25],
+      [-127, -20],
+      [0, -42],
+      [17, -39],
+      [42, -32],
+      [31, -47],
+      [-103, -133],
+      [-56, -11],
+      [-36, -45],
+      [1, -34],
+      [-27, -44],
+      [8, -35],
+      [-21, -44],
+      [-35, -12],
+      [-34, -34],
+      [-14, -45],
+      [-61, -23],
+      [-72, 8],
+      [-20, -20],
+      [-46, 0],
+      [-5, -32],
+      [-32, -48],
+      [0, -52],
+      [31, -47],
+      [88, -57],
+      [8, -36],
+      [-35, -22],
+      [4, -43],
+      [19, -28],
+      [19, -72],
+      [-5, -90],
+      [-29, -99],
+      [-62, -57],
+      [-59, -8],
+      [6, -73],
+      [36, -97],
+      [47, -40],
+      [-46, -72],
+      [-10, -100],
+      [38, -79],
+      [-3, -28],
+      [-38, -44],
+      [-24, -79],
+      [6, -34],
+      [84, -89],
+      [29, -51],
+      [-3, -76],
+      [9, -36],
+      [29, -28],
+      [-25, -85],
+      [-79, -60],
+      [-3, -38],
+      [-28, -8],
+      [-32, -59],
+      [8, -67],
+      [-44, -42],
+      [16, -46],
+      [36, -51],
+      [55, -4],
+      [47, -17],
+      [43, -32],
+      [31, 26],
+      [27, -53],
+      [-10, -43],
+      [17, -123],
+      [50, -63],
+      [40, -16],
+      [115, 46],
+      [41, -9],
+      [40, -54],
+      [-14, -47],
+      [21, -41],
+      [23, 14],
+      [60, -8],
+      [52, 25],
+      [45, -3],
+      [37, -25],
+      [48, 2],
+      [37, 80],
+      [43, 11],
+      [26, 48],
+      [92, -43],
+      [23, 0],
+      [26, 64],
+      [42, 23],
+      [60, 0],
+      [36, 30],
+      [21, -9],
+      [25, -46],
+      [83, -5],
+      [53, -10],
+      [-8, -27],
+      [22, -51],
+      [38, -28],
+      [30, -210],
+      [108, 63],
+      [49, -10],
+      [5, -29],
+      [72, -135],
+      [-57, -46],
+      [-10, -43],
+      [3, -62],
+      [16, -65],
+      [-6, -57],
+      [15, -67],
+      [-27, -65],
+      [-43, -38],
+      [-40, -14],
+      [-86, 16],
+      [-20, 22],
+      [-69, -11],
+      [-97, -76],
+      [-38, -48],
+      [-67, -53],
+      [13, -72],
+      [-29, -56],
+      [17, -91],
+      [21, -76],
+      [0, -44],
+      [-68, -29],
+      [-69, -47],
+      [-47, -66],
+      [-39, -28],
+      [-32, 12],
+      [-26, -29],
+      [16, -107],
+      [-9, -45],
+      [-35, -41],
+      [10, -30],
+      [-16, -31],
+      [-2, -95],
+      [-11, -30],
+      [77, -116],
+      [50, -129],
+      [-1, -43],
+      [35, -98],
+      [57, -35],
+      [36, -7],
+      [57, -44],
+      [23, -35],
+      [52, -43],
+      [70, -28],
+      [-10, -72],
+      [15, -34],
+      [113, -97],
+      [68, -14],
+      [21, -25],
+      [32, -71],
+      [-35, -61],
+      [26, -33],
+      [62, -21],
+      [22, -25],
+      [-7, -29],
+      [0, -115],
+      [22, -15],
+      [0, -67],
+      [61, -29],
+      [54, -67],
+      [19, -74],
+      [41, -95],
+      [-21, -75],
+      [-321, -304],
+      [-65, -194],
+      [-146, -77],
+      [-36, -30],
+      [-50, 15],
+      [-71, -37],
+      [-58, 32],
+      [-130, 7],
+      [-76, 58],
+      [-58, -19],
+      [-55, 19],
+      [-85, -16],
+      [-100, -47],
+      [-50, -72],
+      [-78, -78],
+      [-9, -19],
+      [-52, 17],
+      [-9, 34],
+      [-42, 11],
+      [-60, 97],
+      [-32, 5],
+      [-63, 51],
+      [-100, 39],
+      [8, 32],
+      [65, 32],
+      [57, 62],
+      [10, 47],
+      [-14, 63],
+      [12, 29],
+      [37, 31],
+      [0, 52],
+      [45, 25],
+      [1, 56],
+      [-18, 29],
+      [-6, 73],
+      [-35, 26],
+      [25, 24],
+      [-33, 94],
+      [0, 62],
+      [-25, 25],
+      [-32, 0],
+      [-73, 56],
+      [-29, 4],
+      [-19, 33],
+      [-57, 49],
+      [-65, 33],
+      [-24, 28],
+      [-80, 14],
+      [-68, 29],
+      [-45, 6],
+      [-82, 31],
+      [-136, 39],
+      [-59, 41],
+      [-17, 45],
+      [-7, 87],
+      [-19, 30],
+      [-14, 62],
+      [59, 29],
+      [7, 21],
+      [55, 64],
+      [2, 45],
+      [-35, 20],
+      [-27, 53],
+      [37, 38],
+      [14, 81],
+      [-70, 14],
+      [-7, 22],
+      [-102, 86],
+      [-18, 35],
+      [-58, 42],
+      [15, 64],
+      [28, 49],
+      [-4, 22],
+      [25, 50],
+      [-6, 24],
+      [45, 61],
+      [26, 19],
+      [5, 51],
+      [69, 60],
+      [-23, 79],
+      [7, 52],
+      [18, 43],
+      [-37, 26],
+      [-53, -1],
+      [-48, -18],
+      [-117, 121],
+      [-45, 13],
+      [-37, 58],
+      [-88, 58],
+      [-116, 201],
+      [37, 91],
+      [-76, 24],
+      [-31, -16],
+      [-111, -34],
+      [-102, -41],
+      [-58, -60],
+      [-2, -31],
+      [17, -43],
+      [-28, -32],
+      [-54, -13],
+      [-30, 91],
+      [-45, 20],
+      [-33, -23],
+      [-28, 65],
+      [-56, 89],
+      [-13, 34],
+      [-45, 24],
+      [-64, -40],
+      [-43, -45],
+      [-27, 3],
+      [-32, -22],
+      [-104, -49],
+      [-29, -5],
+      [-20, -59],
+      [-29, -39],
+      [-93, -63],
+      [-66, -56],
+      [-46, 46],
+      [-27, -24],
+      [-61, 10],
+      [-59, -15],
+      [-58, 28],
+      [-45, -54],
+      [-55, -7],
+      [-25, 18],
+      [-26, -28],
+      [-72, 3],
+      [-12, -45],
+      [-57, -73],
+      [-80, -70],
+      [-43, -47],
+      [-44, 10],
+      [-75, -35],
+      [-18, -26],
+      [-46, -23],
+      [-30, -43],
+      [-121, -13],
+      [-76, -53],
+      [-38, 1],
+      [-41, -47],
+      [-41, -64],
+      [-32, -10],
+      [-85, 20],
+      [-65, 37],
+      [-47, 49],
+      [-50, 85],
+      [-48, 31],
+      [-90, 42],
+      [-18, 41],
+      [-31, 29],
+      [-61, -25],
+      [-25, 16],
+      [-45, -40],
+      [-50, -66],
+      [-68, -53],
+      [-27, -46],
+      [32, -58],
+      [6, -44],
+      [24, -61],
+      [-55, -34],
+      [-4, -46],
+      [-49, -31],
+      [-29, -66],
+      [6, -41],
+      [71, -17],
+      [41, -33],
+      [-2, -108],
+      [-16, -79],
+      [-85, -78],
+      [-28, -90],
+      [-24, -103],
+      [12, -32],
+      [-12, -52],
+      [-62, -22],
+      [-28, 3],
+      [-79, -18],
+      [-52, 17],
+      [-23, 24],
+      [-52, 17],
+      [-53, -6],
+      [-91, 71],
+      [-4, 56],
+      [-63, 62],
+      [-23, -4],
+      [-25, -35],
+      [-39, -24],
+      [-7, -68],
+      [-75, 11],
+      [-50, -22],
+      [-61, -57],
+      [-35, 1],
+      [-35, -25],
+      [-3, -42],
+      [-61, -22],
+      [-44, -39],
+      [-99, -18],
+      [-128, 45],
+      [-86, -15],
+      [-9, 25],
+      [-79, 73],
+      [-22, 47],
+      [-45, -9],
+      [-54, 9],
+      [-51, 24],
+      [-86, -46],
+      [-37, 32],
+      [-45, 4],
+      [-45, -19],
+      [-49, 15],
+      [-85, 84],
+      [-30, -5],
+      [-51, 49],
+      [-35, 9],
+      [-46, 34],
+      [-11, 52],
+      [-36, 10],
+      [-39, -16],
+      [-29, -46],
+      [-37, -23],
+      [-93, 74],
+      [-115, 125],
+      [-51, 79],
+      [-63, 82],
+      [-20, 50],
+      [-76, 101],
+      [-2, 62],
+      [-18, 43],
+      [-42, 10],
+      [3, 48],
+      [-29, 21],
+      [-12, 109],
+      [-16, 84],
+      [-17, 41],
+      [1, 74],
+      [-40, 15],
+      [-28, 44],
+      [-36, 31],
+      [-5, 61],
+      [-24, 65],
+      [-27, 44],
+      [-53, 26],
+      [-66, 10],
+      [-70, 29],
+      [-35, 73],
+      [-47, -12],
+      [-45, 34],
+      [-103, 30],
+      [-49, 43],
+      [27, 89],
+      [-26, 65],
+      [32, -4],
+      [33, 34],
+      [-3, 30],
+      [39, 52],
+      [-31, 61],
+      [4, 130],
+      [-14, 18],
+      [-18, 113],
+      [-40, 97],
+      [4, 47],
+      [-21, 40],
+      [-56, 52],
+      [-17, 53],
+      [19, 200],
+      [26, 101],
+      [-9, 57],
+      [45, 117],
+      [-15, 71],
+      [4, 98],
+      [-16, 131],
+      [17, 91],
+      [-9, 37],
+      [57, 59],
+      [27, 67],
+      [-24, 100],
+      [2, 82],
+      [-14, 41],
+      [-176, -10],
+      [-8, 89],
+      [159, 10],
+      [-1, 39],
+      [15, 69],
+      [-4, 65],
+      [12, 95],
+      [-7, 88],
+      [-14, 64],
+      [42, 46],
+      [-21, 23],
+      [-55, -11],
+      [-25, -18],
+      [-21, -43],
+      [-279, -151],
+      [-32, -48],
+      [-24, -59],
+      [-31, -21],
+      [-39, -56],
+      [21, -65],
+      [-27, -73],
+      [3, -84],
+      [-20, -56],
+      [-65, -54],
+      [-53, -92],
+      [-33, -24],
+      [-31, -1],
+      [-65, 38],
+      [-79, 25],
+      [-38, 36],
+      [-69, 33],
+      [-26, 50],
+      [-6, 66],
+      [-36, 29],
+      [-1, 38],
+      [-43, 6],
+      [-28, 35],
+      [-48, 8],
+      [-24, 74],
+      [-40, 19],
+      [-42, 101],
+      [18, 73],
+      [45, 28],
+      [3, 97],
+      [-67, 24],
+      [-80, 89],
+      [-53, -44],
+      [-16, -42],
+      [-32, -20],
+      [-49, 22],
+      [-44, -5],
+      [-77, -26],
+      [-39, -1],
+      [-27, 45],
+      [-221, -23],
+      [-84, -19],
+      [-44, 2],
+      [-77, -62],
+      [-50, -6],
+      [-51, -33],
+      [-69, -16],
+      [-14, -18],
+      [-59, 1],
+      [-68, -29],
+      [-5, -34],
+      [-35, -56],
+      [7, -44],
+      [-18, -23],
+      [-18, -61],
+      [-32, -35],
+      [7, -41],
+      [35, -50],
+      [-18, -83],
+      [0, -69],
+      [-28, -37],
+      [9, -139],
+      [48, -26],
+      [-42, -46],
+      [0, -22],
+      [-38, -68],
+      [-30, -34],
+      [-59, -47],
+      [-41, -20],
+      [-136, -15],
+      [-42, -49],
+      [-28, -3],
+      [24, -176],
+      [-11, -43],
+      [4, -56],
+      [19, -44],
+      [38, -28],
+      [18, -31],
+      [44, -22],
+      [17, -30],
+      [46, -34],
+      [23, -71],
+      [55, -14],
+      [30, -32],
+      [39, 38],
+      [34, -13],
+      [19, -86],
+      [41, -13],
+      [23, -91],
+      [-4, -32],
+      [15, -71],
+      [-32, -42],
+      [23, -31],
+      [-15, -46],
+      [-66, -87],
+      [26, -60],
+      [0, -28],
+      [43, -67],
+      [45, -23],
+      [-5, -45],
+      [-41, -51],
+      [-7, -37],
+      [-25, -6],
+      [-10, -90],
+      [-35, -26],
+      [27, -37],
+      [-1, -67],
+      [41, -110],
+      [14, -66],
+      [20, -40],
+      [83, -30],
+      [87, -18],
+      [29, -60],
+      [-20, -70],
+      [19, -19],
+      [8, -47],
+      [23, -49],
+      [-15, -37],
+      [-59, -50],
+      [-29, -63],
+      [17, -88],
+      [42, -70],
+      [37, -43],
+      [-46, -55],
+      [-10, -116],
+      [-17, -28],
+      [-117, -43],
+      [-47, -103],
+      [26, -71],
+      [4, -66],
+      [14, -49],
+      [0, -65],
+      [-35, -19],
+      [-90, -80],
+      [-49, -60],
+      [4, -16],
+      [-34, -67],
+      [-17, -61],
+      [-52, -35],
+      [-62, -29],
+      [-6, -27],
+      [0, -95],
+      [-30, -75],
+      [-68, -44],
+      [15, -108],
+      [-8, -29],
+      [-44, -81],
+      [27, -121],
+      [-36, -55],
+      [16, -64],
+      [-8, -19],
+      [8, -88],
+      [-13, -36],
+      [-1, -80],
+      [-24, -28],
+      [-96, -1],
+      [-30, 22],
+      [-53, -16],
+      [-115, -61],
+      [-50, -7],
+      [-4, -29],
+      [29, -78],
+      [-33, -51],
+      [-28, -100],
+      [6, -45],
+      [-64, -71],
+      [-68, -17],
+      [-29, 7],
+      [-49, -36],
+      [-22, -38],
+      [-23, -108],
+      [-15, -15],
+      [-17, -63],
+      [6, -30],
+      [-38, -51],
+      [13, -100],
+      [22, -23],
+      [-34, -73],
+      [7, -50],
+      [-17, -62],
+      [-111, -101],
+      [-19, -51],
+      [-29, -31],
+      [-33, -2],
+      [-36, 31],
+      [-57, 2],
+      [-30, 17],
+      [-43, -15],
+      [-81, -8],
+      [-25, -23]
+    ],
+    [
+      [42699, 7153],
+      [-79, 12],
+      [-48, 39],
+      [-106, 119],
+      [-84, 49],
+      [-57, 91],
+      [-3, 73],
+      [-18, 19],
+      [-62, 116],
+      [-29, 11],
+      [-41, 84],
+      [-114, 107],
+      [-39, 14],
+      [-257, 137],
+      [-29, 39],
+      [-39, 113],
+      [-15, 111],
+      [-43, 162],
+      [-40, -6],
+      [-27, -25],
+      [-42, 88],
+      [61, 37],
+      [16, 423],
+      [8, 33],
+      [-67, 123],
+      [-7, 28],
+      [-115, 109],
+      [-18, 95],
+      [-55, 72],
+      [-35, 159],
+      [-24, 80],
+      [26, 61],
+      [58, 21],
+      [38, 62],
+      [8, 32],
+      [33, 42],
+      [32, 75],
+      [51, 23],
+      [39, 123],
+      [-34, 87],
+      [-51, 64],
+      [-18, 35],
+      [-40, 33],
+      [1, 51],
+      [70, 94],
+      [-28, 36],
+      [-15, 43],
+      [41, 98],
+      [-3, 49],
+      [42, 7],
+      [52, 57],
+      [51, 15],
+      [23, 32],
+      [37, -8],
+      [48, 11],
+      [2, 64],
+      [42, 64],
+      [13, 39],
+      [16, 109],
+      [-15, 99],
+      [4, 66],
+      [36, 44],
+      [-4, 31],
+      [-30, 50],
+      [0, 55],
+      [-50, 151],
+      [-28, 35],
+      [55, 143],
+      [65, 82],
+      [-31, 45],
+      [-28, 15],
+      [-25, 47],
+      [11, 35],
+      [90, 41],
+      [63, 38],
+      [9, 57],
+      [-27, 81],
+      [-33, 45],
+      [-40, 114],
+      [-36, 52],
+      [-25, 61],
+      [-24, 26],
+      [7, 97],
+      [-34, 138],
+      [63, 103],
+      [4, 92],
+      [40, 144],
+      [-20, 52],
+      [-50, 85],
+      [-63, 78],
+      [5, 91],
+      [-38, 33],
+      [-71, 28],
+      [-49, 38],
+      [-111, -40],
+      [-63, -41],
+      [-83, 10],
+      [-44, 51],
+      [-41, 14],
+      [-31, 30],
+      [30, 45],
+      [-39, 92],
+      [-62, 28],
+      [-18, 41],
+      [16, 48],
+      [-17, 17],
+      [-23, 71],
+      [-33, 52],
+      [-40, 35],
+      [-36, 14],
+      [-9, 29],
+      [-55, 67],
+      [-29, 93],
+      [9, 54],
+      [-7, 56],
+      [14, 24],
+      [-34, 90],
+      [4, 72],
+      [-13, 31],
+      [-37, 9],
+      [-7, 62],
+      [65, 37],
+      [16, 77],
+      [-20, 40],
+      [4, 37],
+      [-29, 129],
+      [46, 90],
+      [18, 49],
+      [4, 50],
+      [-16, 21],
+      [46, 75],
+      [0, 85],
+      [21, 32],
+      [22, 77],
+      [76, 89],
+      [-2, 60],
+      [24, 69],
+      [68, 30],
+      [-2, 38],
+      [20, 38],
+      [-35, 59],
+      [-77, 37],
+      [-16, 37],
+      [0, 127],
+      [-92, -12],
+      [-26, 42],
+      [-31, 7],
+      [-29, 29],
+      [-61, -1],
+      [-23, 42],
+      [-100, 109],
+      [-37, 14],
+      [-118, 8],
+      [-155, -59],
+      [-142, -125],
+      [-85, 21],
+      [-60, -22],
+      [-33, 164],
+      [44, 152],
+      [-69, 239],
+      [-33, 35],
+      [-39, 14],
+      [-21, -48],
+      [6, -85],
+      [-12, -37],
+      [-45, -34],
+      [-23, -32],
+      [-51, -45],
+      [-111, 49],
+      [-98, 14],
+      [-16, 32],
+      [-50, -25],
+      [-30, -43],
+      [-92, -21],
+      [-14, -42],
+      [-49, -30],
+      [-16, -61],
+      [2, -58],
+      [20, -71],
+      [31, -58],
+      [72, -75],
+      [22, -51],
+      [-21, -45],
+      [14, -37],
+      [-67, -84],
+      [-101, -94],
+      [-130, -44],
+      [-61, -57],
+      [-132, -31],
+      [-33, -60],
+      [-94, -23],
+      [-93, -10],
+      [-17, -39],
+      [-56, -24],
+      [-24, 6],
+      [-83, -74],
+      [-82, -66],
+      [-47, -4],
+      [-107, 15],
+      [-26, 75],
+      [-1, 77],
+      [-386, -165],
+      [-517, 224],
+      [-37, -17],
+      [-53, 15],
+      [-61, 38],
+      [-41, -27],
+      [-48, -51],
+      [-65, 0],
+      [-26, 27],
+      [-106, 48],
+      [-16, 19],
+      [-50, -40],
+      [-26, -35],
+      [-63, -41],
+      [-77, 22],
+      [-28, 24],
+      [-58, 8],
+      [-7, 68],
+      [-24, 33],
+      [-50, 14],
+      [-34, 33],
+      [-55, -28],
+      [-26, 15],
+      [-66, 1],
+      [-48, -39],
+      [-44, 13]
+    ],
+    [
+      [36293, 15489],
+      [42, 190],
+      [-18, 92],
+      [1, 41],
+      [-45, 65],
+      [-1, 68],
+      [33, 82],
+      [-25, 76],
+      [13, 135],
+      [-28, 81],
+      [-71, -7],
+      [-47, 10],
+      [-50, 32],
+      [-2, 29],
+      [-62, 37],
+      [-17, 25],
+      [1, 49],
+      [-19, 56],
+      [-74, 66],
+      [11, 69],
+      [51, 36],
+      [24, 39],
+      [-15, 32],
+      [29, 80],
+      [-49, 58],
+      [87, 123],
+      [64, -1],
+      [71, 59],
+      [52, 81],
+      [42, 28],
+      [-19, 78],
+      [-42, 53],
+      [-7, 40],
+      [10, 116],
+      [-19, 59],
+      [29, 57],
+      [-16, 85],
+      [-2, 55],
+      [36, 67],
+      [57, 17],
+      [76, -18],
+      [40, 41],
+      [30, 98],
+      [14, 17],
+      [79, 34],
+      [35, -2],
+      [50, -50],
+      [54, -40],
+      [110, 73],
+      [6, 72],
+      [33, 17],
+      [57, -5],
+      [43, 15],
+      [74, 90],
+      [57, 45],
+      [44, 11],
+      [90, 77],
+      [20, 48],
+      [-8, 35],
+      [-54, 130],
+      [10, 58],
+      [28, 32],
+      [5, 54],
+      [71, 45],
+      [43, 52],
+      [65, 45],
+      [68, 38],
+      [46, -9],
+      [8, -82],
+      [28, -6],
+      [15, -44],
+      [30, -40],
+      [22, -74],
+      [43, -21],
+      [19, -59],
+      [67, 35],
+      [103, 34],
+      [64, -5],
+      [54, 51],
+      [66, 23],
+      [59, 45],
+      [-24, 88],
+      [-10, 67],
+      [50, 103],
+      [-6, 58],
+      [32, 87],
+      [33, 26],
+      [-1, 83],
+      [54, 23],
+      [38, 50],
+      [84, -35],
+      [38, 51],
+      [-56, 88],
+      [1, 44],
+      [-33, 139],
+      [15, 34],
+      [-17, 89],
+      [-20, 44],
+      [24, 77],
+      [34, 9],
+      [45, 50],
+      [62, 2],
+      [32, -29],
+      [88, -4],
+      [-5, 91],
+      [70, 35],
+      [97, 122],
+      [83, 21],
+      [45, -2],
+      [64, 46],
+      [37, 82]
+    ],
+    [
+      [48810, 32961],
+      [-87, -20],
+      [-67, 2],
+      [-51, -8],
+      [-29, -20],
+      [-94, -30],
+      [-31, 26],
+      [-59, -10],
+      [-119, -8],
+      [-30, -10],
+      [-62, 10],
+      [0, 32],
+      [-25, 54],
+      [-56, -9],
+      [-36, -37],
+      [0, -27],
+      [-50, -44],
+      [22, -41],
+      [53, -39],
+      [38, 3],
+      [16, -22],
+      [56, -28],
+      [22, -50],
+      [-55, -10],
+      [-29, -27],
+      [14, -25],
+      [53, -6],
+      [51, 13],
+      [81, -30],
+      [14, -36],
+      [-22, -62],
+      [51, -8],
+      [-3, -40],
+      [-44, -40],
+      [14, -24]
+    ],
+    [
+      [48346, 32390],
+      [-4, -18],
+      [-68, -36],
+      [-57, -58],
+      [-102, -75],
+      [-20, -35],
+      [-40, 6],
+      [-42, -40],
+      [-36, -12]
+    ],
+    [
+      [47977, 32122],
+      [-56, 54],
+      [-70, 146],
+      [-46, 39],
+      [85, 37],
+      [31, -8],
+      [28, -38],
+      [93, 21],
+      [47, -16],
+      [16, -55],
+      [89, 30],
+      [25, 35],
+      [7, 112],
+      [30, 37],
+      [-69, 15],
+      [-55, -5],
+      [-42, 10],
+      [-91, 46],
+      [-39, 88],
+      [8, 25],
+      [-25, 57],
+      [-30, -6],
+      [-45, 32],
+      [-19, 41],
+      [-62, 23],
+      [-28, -2],
+      [1, -77],
+      [-21, -44],
+      [-73, -41],
+      [-64, -9],
+      [-41, -43],
+      [16, -33],
+      [-14, -25],
+      [37, -49],
+      [-44, -36],
+      [21, -41],
+      [99, -38],
+      [-88, -58],
+      [-96, -38],
+      [-33, 1],
+      [-53, -50],
+      [-17, -38],
+      [15, -78],
+      [-54, -38],
+      [17, -19]
+    ],
+    [
+      [47367, 32086],
+      [-22, -35],
+      [-45, -135],
+      [-16, -111],
+      [-4, -120],
+      [32, -11],
+      [-63, -58],
+      [-23, -46],
+      [26, -28],
+      [-26, -89],
+      [33, -184],
+      [16, -15],
+      [3, -130]
+    ],
+    [
+      [47278, 31124],
+      [-210, 58],
+      [-105, -62],
+      [-98, -4],
+      [-82, -12],
+      [-80, 74],
+      [-130, 83],
+      [-69, 57],
+      [-32, -19],
+      [-31, 26],
+      [-29, -16],
+      [-98, 228],
+      [12, 12],
+      [-19, 55],
+      [-113, -60],
+      [-11, 25],
+      [-37, 6],
+      [-81, -17],
+      [-43, 30],
+      [-88, 95],
+      [-5, 35],
+      [-51, 28],
+      [3, 19],
+      [-59, 27],
+      [-52, -56],
+      [-148, 62],
+      [10, 120],
+      [-31, 15],
+      [-57, -21],
+      [-23, -43],
+      [-36, 21],
+      [-55, -14],
+      [-72, 16],
+      [-31, -36],
+      [-25, 17],
+      [-58, -23],
+      [36, -25],
+      [56, -63],
+      [17, -5],
+      [14, -105],
+      [-33, -29],
+      [31, -102],
+      [29, -17],
+      [-17, -30],
+      [27, -69],
+      [41, -53],
+      [-19, -20],
+      [-57, -12],
+      [-34, -31],
+      [-135, -30],
+      [-44, -38],
+      [-6, -41],
+      [16, -19],
+      [24, -87],
+      [-91, -23],
+      [-80, -62],
+      [-59, -203],
+      [-26, -18],
+      [-146, -53],
+      [-64, -45],
+      [-20, -74],
+      [52, 2],
+      [10, -48],
+      [34, -63],
+      [-20, -52],
+      [38, -82],
+      [-45, -67],
+      [29, -92],
+      [-55, -114],
+      [8, -95],
+      [25, -44],
+      [42, -21],
+      [3, -51],
+      [64, -58],
+      [121, -264],
+      [5, -95],
+      [23, -75],
+      [113, -248]
+    ],
+    [
+      [45151, 29129],
+      [-34, -8],
+      [-112, 12],
+      [-70, -21],
+      [-44, -31],
+      [-69, 17],
+      [-56, 87],
+      [-53, 23],
+      [-35, 41],
+      [12, 50],
+      [-10, 38],
+      [-44, 3],
+      [-100, -48],
+      [-54, 61],
+      [-45, -1],
+      [-41, 46],
+      [-34, 62],
+      [-63, -14],
+      [-4, 35],
+      [-73, 67],
+      [-15, -27],
+      [-71, -3],
+      [-49, -31],
+      [-5, -27],
+      [-41, -30],
+      [-48, -17],
+      [-65, 45],
+      [-54, 10],
+      [-81, -28],
+      [-35, -1],
+      [-81, 19],
+      [-38, 30],
+      [-41, 6],
+      [-63, 34],
+      [-47, 40],
+      [-61, 32],
+      [-71, 63],
+      [-32, 15],
+      [26, 77],
+      [69, 65],
+      [50, 23],
+      [27, 57],
+      [43, 45],
+      [23, 84],
+      [-47, 67],
+      [-11, 34],
+      [-32, 35],
+      [-18, 45],
+      [18, 42],
+      [6, 67],
+      [-47, 110],
+      [6, 23],
+      [-29, 112],
+      [-29, 36],
+      [47, 27],
+      [30, 38],
+      [88, 24],
+      [10, 23],
+      [123, 76],
+      [8, 22],
+      [-15, 51],
+      [-62, 82],
+      [-39, 82],
+      [-31, 16],
+      [-30, -21],
+      [-66, -14],
+      [-29, -24],
+      [-26, 13],
+      [-62, -40],
+      [-8, 65],
+      [-17, 4],
+      [-26, 57],
+      [-51, 50],
+      [43, 54],
+      [34, 85],
+      [39, 22],
+      [-30, 36],
+      [-76, -65],
+      [-38, -13],
+      [-29, 109],
+      [-23, 29],
+      [-5, 45],
+      [91, -24],
+      [147, 33],
+      [39, 42],
+      [-1, 56],
+      [66, 60],
+      [10, 44],
+      [29, 32],
+      [-14, 46],
+      [26, 22],
+      [-39, 103],
+      [1, 42],
+      [52, 50],
+      [50, 3],
+      [35, -14],
+      [35, 17],
+      [12, 101],
+      [-6, 66],
+      [41, 18],
+      [31, -9],
+      [95, 59],
+      [26, -16],
+      [49, 36],
+      [80, 6],
+      [15, -38],
+      [59, 34],
+      [48, 14],
+      [50, -36],
+      [34, 35],
+      [66, -28],
+      [34, -29],
+      [52, 9],
+      [139, -29],
+      [6, -17],
+      [55, -6],
+      [62, -18],
+      [76, 27],
+      [155, 33],
+      [59, 50],
+      [56, 14],
+      [88, -44],
+      [31, 20],
+      [62, -3],
+      [56, 18],
+      [108, 51],
+      [51, -27],
+      [16, 27],
+      [49, 24],
+      [33, 1],
+      [42, 44],
+      [34, 19],
+      [91, -9],
+      [41, -21],
+      [71, -13],
+      [37, -22],
+      [15, -51],
+      [26, -20],
+      [122, -4],
+      [39, 25],
+      [78, 22],
+      [46, 37],
+      [95, 20],
+      [70, 32],
+      [18, 60],
+      [36, 21],
+      [32, 50],
+      [-36, 65],
+      [0, 21],
+      [64, 54],
+      [1, 77],
+      [-34, 98],
+      [29, 54],
+      [3, 45],
+      [36, 4],
+      [50, -25],
+      [34, 16],
+      [58, -27],
+      [29, -38],
+      [29, 4],
+      [6, 33],
+      [44, 14],
+      [113, 49],
+      [48, 52],
+      [32, 13],
+      [61, -6],
+      [33, 16],
+      [33, -10],
+      [85, 48],
+      [110, 20],
+      [114, 63],
+      [13, 24],
+      [67, 61],
+      [61, -5],
+      [71, 51],
+      [59, -10],
+      [51, 52],
+      [9, 34],
+      [-23, 46],
+      [-13, 72],
+      [90, 132],
+      [132, 24],
+      [27, -36],
+      [32, 5],
+      [6, -42],
+      [-11, -50],
+      [50, 26],
+      [51, -9],
+      [53, 20],
+      [73, -39],
+      [61, 13],
+      [82, -16],
+      [73, -1],
+      [22, -19],
+      [99, -43],
+      [20, -39],
+      [79, 17],
+      [6, -34],
+      [107, -92],
+      [17, -1],
+      [94, -72],
+      [114, -36],
+      [109, -54],
+      [15, -55],
+      [-15, -37],
+      [-89, -32],
+      [-70, -12]
+    ],
+    [
+      [48810, 32961],
+      [-54, -65],
+      [-70, -24],
+      [-30, -37],
+      [-70, -38],
+      [-36, -9],
+      [-117, -72],
+      [-14, -34],
+      [4, -48],
+      [101, -61],
+      [-7, -27],
+      [73, -20],
+      [47, -40],
+      [-59, -16],
+      [-50, -37],
+      [-146, -23],
+      [-36, -20]
+    ],
+    [
+      [47977, 32122],
+      [-36, -44],
+      [-44, -25],
+      [-67, 59],
+      [14, 51],
+      [-46, 22],
+      [-71, -3],
+      [-94, -37],
+      [-115, -20],
+      [-151, -39]
+    ],
+    [
+      [47278, 31124],
+      [-3, -265],
+      [-11, -89],
+      [-49, -241],
+      [-16, -36],
+      [-47, -38],
+      [-12, -34],
+      [5, -45],
+      [37, -59],
+      [8, -36],
+      [-67, -45],
+      [-30, -41],
+      [23, -21],
+      [-15, -62],
+      [-4, -61],
+      [-33, -81],
+      [13, -50],
+      [-37, -92],
+      [-56, -46],
+      [-15, -50],
+      [-42, -48],
+      [-7, -38],
+      [-42, -64],
+      [-48, -47],
+      [-36, -22],
+      [-30, -49],
+      [-41, -36],
+      [-41, -18],
+      [-65, -54],
+      [-29, -11],
+      [-14, -32],
+      [-108, -105],
+      [-31, -7],
+      [-39, -40],
+      [-32, -4],
+      [-60, -32],
+      [-48, -43],
+      [-97, 11],
+      [-55, -22],
+      [-65, -53],
+      [-81, -115],
+      [-26, -15],
+      [-76, -4],
+      [-87, -25],
+      [-102, -43],
+      [-48, 43],
+      [-47, 19],
+      [-14, 27],
+      [-55, 44],
+      [-26, 6],
+      [-38, 50],
+      [-84, 21],
+      [-98, -1],
+      [-28, 13],
+      [-73, 57],
+      [-5, 34]
+    ],
+    [
+      [32714, 16992],
+      [106, -17],
+      [30, -72],
+      [12, -85],
+      [-14, -149],
+      [-20, -25],
+      [28, -131],
+      [-6, -268],
+      [-46, -77],
+      [3, -62],
+      [-28, -63],
+      [-88, -108],
+      [-12, -32],
+      [36, -54],
+      [-17, -30],
+      [-22, -157],
+      [-17, -35],
+      [25, -30],
+      [-4, -30],
+      [37, -68],
+      [-7, -45],
+      [95, -130],
+      [29, -87],
+      [5, -66],
+      [27, -57],
+      [24, -22],
+      [-5, -75],
+      [21, -100],
+      [26, -51],
+      [-4, -25],
+      [28, -38],
+      [8, -41],
+      [51, -11],
+      [33, -53],
+      [77, -13],
+      [67, -63],
+      [93, -33],
+      [66, -31],
+      [38, 11],
+      [38, 38],
+      [100, -97],
+      [11, -36],
+      [74, -34]
+    ],
+    [
+      [33612, 14440],
+      [7, -52],
+      [-71, -38],
+      [-58, -95],
+      [-77, -85],
+      [-13, -77],
+      [-14, -32],
+      [-45, -22],
+      [-74, -3],
+      [-79, -183],
+      [-9, -38],
+      [-29, -30],
+      [-111, 34],
+      [-40, -2],
+      [-55, -42],
+      [-63, -17],
+      [-42, -31],
+      [-66, 42],
+      [-49, -39],
+      [-132, -8],
+      [-31, 38],
+      [-53, -7],
+      [-33, 17],
+      [-9, -62],
+      [27, -61],
+      [13, -75],
+      [-10, -32],
+      [-33, -18],
+      [-20, -46],
+      [-46, -66],
+      [-7, -28],
+      [45, -55],
+      [8, -65],
+      [34, -35],
+      [-57, -19],
+      [-37, -30],
+      [12, -50],
+      [-7, -27],
+      [-48, -56],
+      [34, -141]
+    ],
+    [
+      [32374, 12904],
+      [-33, -24],
+      [-60, 5],
+      [-34, 37],
+      [-110, -22],
+      [-133, -90],
+      [-35, -36],
+      [-24, -81],
+      [-21, -6],
+      [-77, -81],
+      [-32, -18],
+      [-48, -72],
+      [-106, -71],
+      [-64, -57],
+      [-8, -33],
+      [-58, 2],
+      [-78, -31],
+      [-118, 14],
+      [-41, -24],
+      [-13, -53],
+      [-50, -66],
+      [1, -63],
+      [-107, -112],
+      [-21, -31],
+      [47, -16],
+      [33, -37],
+      [46, 2],
+      [61, -46],
+      [29, -7],
+      [54, 38],
+      [8, -33],
+      [71, -72],
+      [21, -102],
+      [-33, -35],
+      [-1, -67],
+      [52, -38],
+      [-21, -47],
+      [-27, -13],
+      [-11, -42],
+      [9, -33],
+      [-27, -66],
+      [-68, -33],
+      [-50, -7],
+      [-53, -25],
+      [-58, -49],
+      [-4, -21],
+      [-54, -15],
+      [-72, -75],
+      [-37, -47],
+      [-99, 35],
+      [-37, 30],
+      [-18, -16],
+      [-96, -34],
+      [-48, -73],
+      [49, -96],
+      [15, -90],
+      [-43, -23],
+      [-31, -41],
+      [37, -30],
+      [1, -23],
+      [-41, -18],
+      [-47, 27],
+      [-45, -1],
+      [-45, -36],
+      [3, -80],
+      [-46, -15],
+      [-76, -6],
+      [-65, 14],
+      [-103, -95],
+      [-51, -26],
+      [9, -40],
+      [-37, -54],
+      [18, -15],
+      [-1, -44],
+      [22, -15],
+      [-44, -63],
+      [-93, -69],
+      [3, -72],
+      [-38, -48],
+      [-10, -30],
+      [11, -54],
+      [-49, -38],
+      [-130, -113],
+      [-56, 24],
+      [-106, -46],
+      [-102, -75],
+      [-126, -15],
+      [-50, 5],
+      [-81, -19],
+      [-43, 22],
+      [-22, 29],
+      [-65, 25],
+      [-22, 28],
+      [-69, 18],
+      [-65, -1],
+      [-94, -94],
+      [-32, -54],
+      [-55, -11],
+      [-50, -46],
+      [-26, -61],
+      [-7, -57],
+      [-17, -11],
+      [-54, -99],
+      [-100, -23],
+      [-47, -90],
+      [-49, -43],
+      [-96, -99],
+      [-49, -15],
+      [-25, -21],
+      [9, -81],
+      [-30, -33],
+      [-46, -4],
+      [5, -45],
+      [20, -30],
+      [40, -22],
+      [45, -47],
+      [141, -21],
+      [21, -8],
+      [10, -55],
+      [52, 11],
+      [61, -10],
+      [24, -85],
+      [-5, -86],
+      [17, -44],
+      [31, -33],
+      [74, -34],
+      [48, -119],
+      [40, -31],
+      [39, -5],
+      [42, -31],
+      [73, -7],
+      [62, -296],
+      [104, -176],
+      [2, -77],
+      [24, -164],
+      [53, -32],
+      [104, -136],
+      [12, -50],
+      [-9, -69],
+      [-73, -44],
+      [-25, -30],
+      [-17, -82],
+      [-42, -55],
+      [-32, -25],
+      [-22, -114],
+      [3, -52],
+      [45, -69],
+      [2, -111],
+      [23, -13],
+      [-62, -125],
+      [-54, -79],
+      [-54, -33],
+      [-54, -6],
+      [-24, 22],
+      [-37, -4],
+      [-113, -32],
+      [-45, -50],
+      [-86, -50],
+      [10, -58],
+      [-23, -66],
+      [13, -39],
+      [-20, -50],
+      [-7, -65],
+      [-37, -23],
+      [-7, -43],
+      [-23, -35],
+      [-52, -6],
+      [-35, -19],
+      [-18, 13],
+      [-42, -52],
+      [-140, -33],
+      [-80, -31],
+      [-44, 19],
+      [-68, 1],
+      [-116, -34],
+      [-74, -46],
+      [-57, -21],
+      [-62, 18],
+      [-38, -30],
+      [-45, -16],
+      [-52, 0],
+      [-56, 18],
+      [-18, -42],
+      [6, -78],
+      [-41, -62],
+      [-16, -48],
+      [11, -43],
+      [-16, -119],
+      [-40, -48],
+      [-50, -102],
+      [9, -38],
+      [-16, -74],
+      [31, -42],
+      [-5, -73],
+      [18, -18],
+      [13, -71],
+      [54, -107],
+      [2, -44],
+      [24, -71],
+      [26, -34],
+      [-1, -55],
+      [-35, -34],
+      [-41, -10],
+      [-65, -32],
+      [-35, -31],
+      [-68, -96],
+      [-51, -45],
+      [26, -18],
+      [48, -115],
+      [-67, -74],
+      [-18, -41],
+      [30, -71],
+      [-13, -73],
+      [-70, -12],
+      [-80, 17],
+      [-12, -66],
+      [-33, -50],
+      [-20, -57],
+      [-30, -33],
+      [4, -33],
+      [-75, -91],
+      [-58, 20],
+      [-72, 46],
+      [-84, -8],
+      [-87, -29],
+      [-52, -6],
+      [-53, -21],
+      [-51, 23],
+      [-131, 8],
+      [-143, -25],
+      [-56, 13],
+      [-87, 1],
+      [-54, -24],
+      [-19, 8],
+      [-119, 14],
+      [-37, -65],
+      [2, -24],
+      [-33, -79],
+      [-44, -21],
+      [-11, -38],
+      [-61, -81],
+      [-14, -66],
+      [-117, -49],
+      [-93, -54],
+      [-6, -36],
+      [43, -76],
+      [4, -87],
+      [-51, -55],
+      [7, -27],
+      [-35, -59],
+      [32, -57],
+      [-8, -102],
+      [-80, -26],
+      [-33, -224],
+      [32, -41],
+      [6, -52],
+      [40, -42],
+      [34, -75],
+      [-45, -77],
+      [-7, -40],
+      [-39, -21],
+      [-44, 3],
+      [-44, -63],
+      [-26, 15],
+      [-27, 60],
+      [-44, 16],
+      [-73, -14],
+      [-42, 4],
+      [-91, 30],
+      [-55, -6],
+      [-59, 58],
+      [-137, 47],
+      [-55, -18],
+      [-59, -53],
+      [-46, -10],
+      [-51, -64],
+      [-48, -42],
+      [-46, -8],
+      [-72, 60],
+      [-21, 73],
+      [-50, 39],
+      [-19, 32],
+      [-47, 7],
+      [-56, 22],
+      [-26, 23],
+      [-28, 54],
+      [-35, 20],
+      [-42, 68],
+      [-90, 23],
+      [-82, 13],
+      [-39, 23],
+      [-29, -6],
+      [-45, 16],
+      [-40, -123],
+      [-27, -48],
+      [-59, -39],
+      [-31, -36],
+      [-15, -87],
+      [-57, -17],
+      [-132, 5],
+      [-46, 33],
+      [-21, 40],
+      [-42, 34],
+      [-13, 78],
+      [-52, 31],
+      [-7, 24],
+      [24, 131],
+      [-8, 46],
+      [19, 83],
+      [-21, 27],
+      [-29, 1],
+      [-84, 76],
+      [-12, 28],
+      [-107, 8],
+      [-55, 11],
+      [-77, 31],
+      [-40, 80],
+      [-20, 91],
+      [-21, 8],
+      [-29, 70],
+      [-26, 12],
+      [-34, 66],
+      [-58, 54],
+      [-41, -5],
+      [-41, 25],
+      [-24, -7],
+      [-29, -40],
+      [-56, -6],
+      [-96, -66],
+      [-73, -13],
+      [-94, 18],
+      [-42, 0],
+      [-92, 27],
+      [-32, -21],
+      [-32, 1],
+      [-67, -41],
+      [-75, 21],
+      [-62, -2],
+      [-68, 11],
+      [-102, 2],
+      [-47, 32],
+      [-31, 52],
+      [11, 66],
+      [-48, 157],
+      [-55, 31],
+      [-97, -5],
+      [-75, -34],
+      [-103, 11],
+      [-46, -4],
+      [-56, -44],
+      [-13, -78],
+      [-38, -43],
+      [-8, -33],
+      [19, -115],
+      [22, -34],
+      [5, -63],
+      [18, -70],
+      [-10, -44],
+      [-33, -59],
+      [-62, -49],
+      [-52, 42],
+      [-90, -3],
+      [-39, 21],
+      [-30, -3],
+      [-47, 73],
+      [-40, 23],
+      [-25, -43],
+      [-35, -22],
+      [-61, -14],
+      [-35, 13],
+      [-68, 65],
+      [-45, -50],
+      [2, -56],
+      [-56, -36],
+      [-62, 5],
+      [-80, -55],
+      [-35, -8],
+      [-51, -67],
+      [-41, -32],
+      [7, -77],
+      [25, -72],
+      [11, -79],
+      [-47, -50],
+      [-26, -3],
+      [-67, 31],
+      [-82, -3],
+      [-25, -58],
+      [-67, 4],
+      [-60, -28],
+      [-28, 6],
+      [-36, -49],
+      [-14, -45],
+      [-51, -55],
+      [-40, -86],
+      [-101, -99],
+      [-66, -22],
+      [-7, -34],
+      [-33, -20],
+      [-33, 1],
+      [-67, -58],
+      [-46, -3],
+      [-34, 15],
+      [-30, 37],
+      [-20, -1],
+      [-48, -53],
+      [1, -53],
+      [-42, -69],
+      [-80, -90],
+      [-77, -29],
+      [-58, 45],
+      [-36, 39],
+      [-25, -4],
+      [-24, 29],
+      [-44, 17],
+      [-38, 29],
+      [-64, -18],
+      [-23, 46],
+      [-42, 39],
+      [2, 63],
+      [-14, 14],
+      [-64, 9],
+      [-79, 65],
+      [-86, -29],
+      [-99, -56],
+      [-87, -9],
+      [-81, 28],
+      [-26, 102],
+      [-81, 0],
+      [-60, 21],
+      [-50, -11],
+      [-25, 36],
+      [-76, 60],
+      [-54, -31],
+      [-13, -57],
+      [-47, -24],
+      [-16, -70],
+      [-23, -31],
+      [-82, -216],
+      [-74, -20],
+      [-15, -31],
+      [-47, -35],
+      [1, -24],
+      [-47, -37],
+      [-49, -58],
+      [-14, -33],
+      [-51, -21],
+      [-29, 36],
+      [1, 44],
+      [-19, 20],
+      [-43, 7],
+      [-41, -41],
+      [-55, -23],
+      [-67, 1],
+      [-53, 30],
+      [-44, 8],
+      [-35, -46],
+      [-35, 11],
+      [-89, -32],
+      [-9, -99],
+      [-63, -37],
+      [-15, -29],
+      [-50, -9],
+      [-31, -71],
+      [-49, -24],
+      [-13, -64],
+      [-20, -41],
+      [12, -92],
+      [23, -49],
+      [-47, -61],
+      [-81, -36],
+      [-59, 31],
+      [-19, -5],
+      [-59, 61],
+      [-24, 12],
+      [-43, -13],
+      [-178, 170],
+      [23, 38],
+      [12, 55],
+      [-42, 49],
+      [-104, 21],
+      [-22, -26],
+      [-68, -39],
+      [-77, -15],
+      [-24, -32],
+      [-55, -22],
+      [-21, -34],
+      [-1, -46],
+      [-101, -99],
+      [-17, 5],
+      [-55, -52],
+      [-33, -49],
+      [-69, 9],
+      [-53, -26],
+      [-72, 22],
+      [-27, -5],
+      [-51, 60],
+      [-20, 114],
+      [-49, 105],
+      [38, 62],
+      [-84, 96],
+      [-52, 51],
+      [-46, 16],
+      [-35, 49],
+      [-7, 41],
+      [-25, 35],
+      [-1, 105],
+      [-35, -4],
+      [-54, 44],
+      [1, 17],
+      [-78, 45],
+      [-2, 134],
+      [5, 53],
+      [-51, 83],
+      [-29, 2],
+      [-65, 37],
+      [-76, 93],
+      [-7, 25],
+      [-44, 33],
+      [-9, 76],
+      [-17, 30],
+      [2, 40],
+      [-17, 42],
+      [-35, 38],
+      [-35, 88],
+      [16, 57],
+      [0, 54],
+      [20, 29],
+      [-18, 140],
+      [3, 59],
+      [-19, 19],
+      [-95, 32],
+      [-99, 25],
+      [-18, 35],
+      [-26, -1],
+      [-71, 99],
+      [-26, 65],
+      [-28, 13],
+      [22, 82],
+      [62, 41],
+      [61, 15],
+      [36, 24],
+      [17, 40],
+      [-14, 33],
+      [-40, 40],
+      [-51, 87],
+      [-40, 4],
+      [-12, 34],
+      [11, 62],
+      [-30, 52],
+      [3, 61],
+      [-52, 51],
+      [-14, 27],
+      [-65, -44],
+      [-63, 19],
+      [-97, 77],
+      [-44, 11],
+      [-4, 56],
+      [-21, 60],
+      [2, 54],
+      [-37, 100],
+      [7, 43],
+      [-58, 42],
+      [-34, 48],
+      [-61, 56],
+      [-44, 89],
+      [-49, -14],
+      [-111, 228],
+      [-41, 168],
+      [-17, 36],
+      [-68, -22],
+      [-26, 5],
+      [-50, 41],
+      [-28, 50],
+      [-34, 29],
+      [6, 39],
+      [23, 29],
+      [-4, 54],
+      [12, 31],
+      [-47, 35],
+      [-71, -27],
+      [-54, 12],
+      [-79, -106],
+      [-57, -66],
+      [2, -17],
+      [-51, -46],
+      [5, -34],
+      [-34, -38],
+      [-58, -19],
+      [-123, -22],
+      [-41, -39],
+      [-7, -73],
+      [-22, -14],
+      [-42, 46],
+      [-52, 9],
+      [-88, 56],
+      [-6, 40],
+      [-47, 33],
+      [10, 74],
+      [31, 73],
+      [28, 121],
+      [21, 19],
+      [17, 87],
+      [60, 32],
+      [36, 41],
+      [48, 23],
+      [-12, 51],
+      [-26, 40],
+      [30, 48],
+      [13, 76],
+      [-34, 47],
+      [-7, 30],
+      [-79, 137],
+      [38, 29],
+      [23, 41],
+      [1, 38],
+      [43, 29],
+      [31, 50],
+      [15, 54],
+      [23, 36],
+      [-21, 35],
+      [-8, 75],
+      [40, 69],
+      [23, 90],
+      [24, 41],
+      [-26, 11],
+      [-32, -17],
+      [-37, 34],
+      [-137, -50],
+      [-58, 44],
+      [-62, 18],
+      [-51, -17],
+      [-30, 11],
+      [-97, 3],
+      [-70, 18],
+      [-42, -1],
+      [-53, 15],
+      [-61, 34],
+      [-54, 75],
+      [-56, -15],
+      [-50, 10],
+      [-95, -26],
+      [-69, -3],
+      [-48, -37],
+      [-32, 58],
+      [-21, -4],
+      [-40, 83],
+      [-55, -1],
+      [-20, -13],
+      [-59, 17],
+      [-21, 57],
+      [-2, 66],
+      [-19, 39],
+      [-5, 75],
+      [-55, 118],
+      [-1, 32],
+      [31, 93],
+      [-13, 63],
+      [84, 107],
+      [24, 6],
+      [44, 70],
+      [30, 16],
+      [25, 124],
+      [71, 56],
+      [-41, 157],
+      [-10, 69],
+      [-65, 203],
+      [0, 48],
+      [45, 62],
+      [10, 60],
+      [26, 21],
+      [-1, 39],
+      [49, 31],
+      [54, 109],
+      [37, 19],
+      [19, 35],
+      [2, 91],
+      [-18, 52],
+      [9, 39],
+      [76, 40],
+      [51, 4],
+      [85, 129],
+      [9, 83],
+      [27, 68],
+      [41, 8],
+      [121, 72],
+      [46, 62],
+      [-13, 84],
+      [37, 53],
+      [39, 88],
+      [-17, 155],
+      [26, 50],
+      [53, 75],
+      [-6, 64],
+      [-70, 109],
+      [-14, 57],
+      [-48, 25],
+      [-31, -7],
+      [-15, -37],
+      [-40, -11],
+      [-35, 26],
+      [-20, 65],
+      [-56, 15],
+      [-44, 46],
+      [-21, 51],
+      [-58, 2],
+      [-21, 25],
+      [-7, 42],
+      [23, 42],
+      [-63, 136],
+      [-51, 20],
+      [-23, 53],
+      [-39, 8],
+      [-53, 45],
+      [-78, 53],
+      [-78, -25],
+      [-36, 76],
+      [-14, 70],
+      [21, 49],
+      [-35, 46],
+      [0, 34],
+      [-129, -18],
+      [-28, 9],
+      [-3, 80],
+      [-54, 98],
+      [-17, 67],
+      [-21, 31],
+      [-39, 24],
+      [-31, 62],
+      [-22, 103],
+      [12, 113],
+      [65, 70],
+      [58, 43],
+      [58, -3],
+      [76, 9],
+      [30, 25],
+      [54, 69],
+      [18, 49],
+      [70, 54],
+      [23, 39],
+      [14, 92],
+      [-34, 16],
+      [-27, 46],
+      [15, 133],
+      [26, 23],
+      [215, 682]
+    ],
+    [
+      [11532, 12395],
+      [51, -52],
+      [406, -544],
+      [88, -131],
+      [101, -106],
+      [77, -99],
+      [48, -27],
+      [61, -58],
+      [24, -35],
+      [13, -58],
+      [7, -149],
+      [-20, -78],
+      [-40, -86],
+      [-2, -73],
+      [23, -35],
+      [56, -50],
+      [77, -148],
+      [27, -33],
+      [62, -37],
+      [52, -5],
+      [140, 22],
+      [61, -15],
+      [24, -22],
+      [114, -154],
+      [15, -33],
+      [19, -123],
+      [-8, -92],
+      [5, -57],
+      [46, -210],
+      [7, -113],
+      [36, -70],
+      [57, -46],
+      [57, -29],
+      [48, -38],
+      [100, -105],
+      [33, -61],
+      [51, -264],
+      [23, -40],
+      [103, -135],
+      [89, -91],
+      [67, -52],
+      [28, -50],
+      [11, -116],
+      [17, -43],
+      [56, -77],
+      [19, -56],
+      [59, -46],
+      [23, -29],
+      [11, -78],
+      [-4, -76],
+      [16, -47],
+      [53, -45],
+      [26, -121],
+      [36, -204],
+      [106, -71],
+      [63, -79],
+      [53, -117],
+      [30, -26],
+      [17, -66],
+      [66, 12],
+      [87, 43],
+      [163, 113],
+      [37, 6],
+      [67, 70],
+      [97, 32],
+      [76, -41],
+      [63, 16],
+      [57, 33],
+      [28, 3],
+      [74, 67],
+      [34, 55],
+      [45, 8],
+      [24, 31],
+      [65, 32],
+      [126, 136],
+      [57, 104],
+      [30, 11],
+      [-13, 121],
+      [29, 65],
+      [10, 70],
+      [26, 25],
+      [120, -12],
+      [78, 27],
+      [56, 75],
+      [66, 30],
+      [17, 34],
+      [5, 68],
+      [46, 95],
+      [72, 10],
+      [61, 63],
+      [28, 51],
+      [56, 46],
+      [6, 32],
+      [50, 63],
+      [32, 57],
+      [75, -2],
+      [62, 45],
+      [14, 46],
+      [-28, 111],
+      [-14, 91],
+      [53, 44],
+      [61, 13],
+      [-13, 55],
+      [41, 16],
+      [-103, 123],
+      [-2, 154],
+      [14, 36],
+      [60, 67],
+      [12, 39],
+      [53, 58],
+      [81, 32],
+      [-2, 23],
+      [40, 48],
+      [15, 40],
+      [-10, 80],
+      [79, 37],
+      [93, 83]
+    ],
+    [
+      [45287, 34462],
+      [11, 10],
+      [64, -28],
+      [-14, -49],
+      [-46, 25],
+      [-15, 42]
+    ],
+    [
+      [39822, 31704],
+      [18, 45],
+      [50, 35],
+      [69, 21],
+      [42, 80],
+      [7, 33],
+      [53, -23],
+      [66, 8],
+      [-2, 55],
+      [24, 58],
+      [46, 1],
+      [2, 32],
+      [38, 112],
+      [16, 19],
+      [-23, 64],
+      [-22, 26],
+      [25, 40],
+      [32, 101],
+      [69, 37],
+      [21, -21],
+      [70, 9],
+      [27, 81],
+      [5, 48],
+      [23, 73],
+      [-14, 47],
+      [-30, 17],
+      [9, 45],
+      [-8, 46],
+      [34, 5],
+      [104, 50],
+      [-16, 57],
+      [62, -20],
+      [77, 13],
+      [39, -23],
+      [30, 34],
+      [57, 33],
+      [15, 73],
+      [33, 27],
+      [75, -94],
+      [97, 45],
+      [24, -35],
+      [24, 12],
+      [-7, 68],
+      [56, -26],
+      [37, 55],
+      [32, 27],
+      [74, -34],
+      [23, 19],
+      [34, -11],
+      [41, 8],
+      [-3, 33],
+      [32, 26],
+      [-61, 36],
+      [-45, 11],
+      [-4, 41],
+      [-48, 43],
+      [-41, 18],
+      [-79, 10],
+      [-185, 70],
+      [-19, 54],
+      [58, 34],
+      [-24, 22],
+      [-8, 49],
+      [15, 28],
+      [-39, 23],
+      [-121, 37],
+      [-99, 41],
+      [-18, 29],
+      [44, 46],
+      [-44, 10],
+      [1, 80],
+      [-33, 22],
+      [5, 37],
+      [55, 57],
+      [-8, 47],
+      [30, 45],
+      [67, 3],
+      [28, -24],
+      [57, -1],
+      [32, 24],
+      [27, -28],
+      [25, 35],
+      [145, 88],
+      [42, -39],
+      [94, -26],
+      [4, -34],
+      [33, -3],
+      [24, -47],
+      [42, 15],
+      [-6, 41],
+      [18, 22],
+      [64, -4],
+      [56, 12],
+      [53, 40],
+      [22, -26],
+      [69, 52],
+      [36, 7],
+      [16, -30],
+      [11, -98],
+      [52, -58],
+      [21, -67],
+      [26, 14],
+      [79, 8],
+      [22, 27],
+      [131, -25],
+      [69, -21],
+      [21, -65],
+      [89, 19],
+      [26, 21],
+      [-4, 30],
+      [36, 21],
+      [138, 29],
+      [39, -25],
+      [119, 55],
+      [63, -3],
+      [53, 44],
+      [10, 48],
+      [54, 110],
+      [-29, 36],
+      [2, 27],
+      [47, 42],
+      [22, 41],
+      [81, -15],
+      [-37, -102],
+      [76, -61],
+      [34, -10],
+      [49, 34],
+      [23, -105],
+      [79, 36],
+      [62, -39],
+      [-5, -46],
+      [50, 32],
+      [27, -31],
+      [58, 5],
+      [59, -12],
+      [-14, -37],
+      [17, -76],
+      [27, -22],
+      [-12, -37],
+      [57, -26],
+      [1, 30],
+      [67, 70],
+      [19, -11],
+      [66, 26],
+      [56, -6],
+      [46, -21],
+      [-2, -44],
+      [65, -3],
+      [51, -16],
+      [49, 3],
+      [33, -91],
+      [55, -27],
+      [37, 11],
+      [115, -11],
+      [61, 45],
+      [103, 49],
+      [46, 6],
+      [10, 42],
+      [28, 33],
+      [72, -17],
+      [31, -56],
+      [97, -15],
+      [33, -31],
+      [76, 45],
+      [55, 52],
+      [-1, 24],
+      [30, 34],
+      [60, 30],
+      [51, 86],
+      [25, 11],
+      [-20, 48],
+      [9, 69],
+      [-37, 75],
+      [-34, 3],
+      [-61, -54],
+      [-23, 71],
+      [10, 36],
+      [-10, 41],
+      [23, 48],
+      [65, -16],
+      [21, 55],
+      [-66, 16],
+      [-56, 57],
+      [-73, 20],
+      [8, -37],
+      [-43, -5],
+      [-21, -59],
+      [-32, 9],
+      [-45, -30],
+      [-6, -30],
+      [-69, 20],
+      [-39, -32],
+      [-131, 19],
+      [-27, 17],
+      [-13, 45],
+      [12, 27],
+      [52, 36],
+      [32, -26],
+      [2, -32],
+      [32, -5],
+      [-12, 80],
+      [43, 13],
+      [1, 36],
+      [28, 43],
+      [-34, 44],
+      [149, 45],
+      [37, 33],
+      [68, -8],
+      [18, 47],
+      [58, -12],
+      [76, -75],
+      [12, 53],
+      [-18, 57],
+      [40, 55],
+      [44, 26],
+      [48, -9],
+      [26, -37],
+      [61, -18],
+      [12, 26],
+      [113, -17],
+      [28, -49],
+      [-17, -32],
+      [30, -18],
+      [3, -33],
+      [33, -32],
+      [123, -32],
+      [44, 6],
+      [-8, -64],
+      [-33, -30],
+      [-41, 9],
+      [-60, -71],
+      [36, -12],
+      [-31, -66],
+      [-25, 6],
+      [-13, -38],
+      [-67, 8],
+      [-26, -93],
+      [19, -30],
+      [27, 49],
+      [27, 11],
+      [63, -36],
+      [125, -22],
+      [2, 52],
+      [83, -16],
+      [73, -45],
+      [59, 9],
+      [30, -25],
+      [-5, -87],
+      [-13, -19],
+      [-42, 1],
+      [-20, -49],
+      [58, -33],
+      [-61, -49],
+      [-22, -53],
+      [22, -14],
+      [66, 11],
+      [25, 36],
+      [77, 5],
+      [-16, -37],
+      [34, -20],
+      [31, -42],
+      [57, -18],
+      [38, -59],
+      [-7, -26],
+      [29, -29],
+      [50, -20],
+      [-9, 58],
+      [39, 2],
+      [26, 58],
+      [-9, 41],
+      [20, 45],
+      [-16, 30],
+      [31, 16],
+      [44, 106],
+      [41, 19],
+      [43, 43],
+      [10, 41],
+      [37, -3],
+      [66, -25],
+      [51, 109],
+      [60, 39],
+      [11, 25],
+      [75, 41],
+      [890, 825]
+    ],
+    [
+      [47277, 35190],
+      [158, -209],
+      [230, -25],
+      [249, 30],
+      [149, -665],
+      [-7, -110],
+      [6, -42],
+      [24, -57],
+      [36, -44],
+      [167, -137],
+      [57, -74],
+      [132, -322],
+      [30, -53],
+      [70, -33],
+      [43, 14],
+      [19, 34],
+      [19, 110],
+      [25, 24],
+      [51, -36],
+      [64, -140],
+      [49, -73],
+      [75, -34],
+      [237, -17],
+      [138, -33],
+      [49, -26],
+      [18, -32],
+      [-19, -73],
+      [-142, -152],
+      [-40, -91],
+      [9, -78],
+      [47, -131],
+      [25, -105],
+      [19, -246],
+      [-3, -76],
+      [36, -4],
+      [40, -87],
+      [37, -53],
+      [31, -23],
+      [109, -56],
+      [43, -58],
+      [4, -31],
+      [-11, -158],
+      [-41, -83],
+      [-105, -130],
+      [-48, -33],
+      [-65, -28],
+      [-85, -15],
+      [-142, 3],
+      [-44, -7],
+      [-97, -42],
+      [-24, 22],
+      [-256, -299],
+      [-61, -93],
+      [-18, -42],
+      [-61, -225],
+      [-73, -298],
+      [-13, -32],
+      [-64, -100],
+      [-61, -57],
+      [-178, -116],
+      [-109, -103],
+      [-39, -70],
+      [-31, -140],
+      [-16, -53],
+      [-61, -120],
+      [-85, -78],
+      [-91, -68],
+      [-37, -69],
+      [-2, -129],
+      [-6, -31],
+      [-125, -364],
+      [-32, -67],
+      [-178, -316],
+      [-40, -101],
+      [-27, -179],
+      [-120, -268],
+      [-37, -163],
+      [-26, -159],
+      [1, -38],
+      [62, -326],
+      [36, -99],
+      [85, -201],
+      [81, -119],
+      [32, -65],
+      [56, -212],
+      [86, -505],
+      [10, -145],
+      [-11, -73],
+      [-42, -141],
+      [-38, -55],
+      [-273, -230],
+      [-229, -140],
+      [-43, -56],
+      [-1, -55],
+      [53, -199]
+    ],
+    [
+      [40638, 27579],
+      [-112, 67],
+      [17, 27],
+      [-48, 34],
+      [-81, 45],
+      [-102, 32],
+      [-43, -30],
+      [-41, 9],
+      [-9, -40],
+      [-30, 6],
+      [-9, -37],
+      [-110, 12],
+      [-4, 102],
+      [-20, 89],
+      [-38, 217],
+      [105, -26],
+      [50, 261],
+      [69, 37],
+      [-22, 52],
+      [-35, 35],
+      [-53, 8],
+      [-119, -22],
+      [-31, -1],
+      [-178, 37],
+      [-1240, -197],
+      [-123, -5],
+      [-75, 12],
+      [-82, 25],
+      [-116, 65],
+      [-66, 56],
+      [-70, 84]
+    ],
+    [
+      [38022, 28533],
+      [-170, 387],
+      [11, 69],
+      [34, 11],
+      [49, 47],
+      [-3, 26],
+      [140, 44],
+      [37, 3],
+      [78, 36],
+      [69, 15],
+      [29, -32],
+      [75, -11],
+      [11, -30],
+      [32, -18],
+      [91, 0],
+      [1, 33],
+      [79, 40],
+      [29, -26],
+      [-5, -49],
+      [63, -41],
+      [65, -18],
+      [102, 21],
+      [13, 39],
+      [40, 15],
+      [-3, 88],
+      [210, 21],
+      [212, 53],
+      [42, 22],
+      [4, -47],
+      [158, 50],
+      [105, 41],
+      [10, 24],
+      [53, -24],
+      [53, 54],
+      [9, 56],
+      [69, 63],
+      [21, 43],
+      [-48, 44],
+      [83, 67],
+      [8, 83],
+      [15, 39],
+      [-43, 22],
+      [-26, -49],
+      [-22, 1],
+      [-1, 50],
+      [-18, 46],
+      [-33, 22],
+      [-35, 76],
+      [32, 1],
+      [91, 31],
+      [51, 28],
+      [7, 46],
+      [38, 43],
+      [45, 133],
+      [17, 24],
+      [56, 30],
+      [48, 13],
+      [36, -12],
+      [105, 26],
+      [43, 88],
+      [47, 75],
+      [7, 31],
+      [36, 57],
+      [-53, 67],
+      [-16, 58],
+      [-30, 32],
+      [-9, 47],
+      [6, 63],
+      [16, 29],
+      [11, 82],
+      [-83, 39],
+      [13, 31],
+      [-10, 98],
+      [15, 24],
+      [-37, 93],
+      [-56, 47],
+      [-56, 3],
+      [-39, -14],
+      [-12, 80],
+      [-44, 64],
+      [-19, 67],
+      [-31, 62],
+      [-12, 86],
+      [-44, 69],
+      [-40, 0],
+      [-22, 24]
+    ],
+    [
+      [46766, 33907],
+      [167, 112],
+      [-85, 59],
+      [-49, 68],
+      [-31, 19],
+      [-38, -3],
+      [-43, 19],
+      [-117, 70],
+      [-22, -62],
+      [30, -21],
+      [-29, -69],
+      [17, -29],
+      [56, -11],
+      [-9, -33],
+      [83, -13],
+      [71, -48],
+      [-1, -58]
+    ],
+    [
+      [42699, 7153],
+      [-9, -94],
+      [-25, -54],
+      [-20, -16],
+      [-75, -19],
+      [-63, -43],
+      [-54, -70],
+      [-85, -37],
+      [-22, -67],
+      [-51, -50],
+      [-29, -60],
+      [0, -29],
+      [-36, -70],
+      [-43, -105],
+      [-49, 18],
+      [-67, -15],
+      [-44, -40],
+      [-49, -14],
+      [-55, -56],
+      [-16, -41],
+      [-60, -21],
+      [-81, -15],
+      [-43, -28],
+      [-11, -24],
+      [-88, -33],
+      [-84, -68],
+      [20, -78],
+      [49, -74],
+      [28, -76],
+      [22, -93],
+      [103, -246],
+      [4, -89],
+      [-71, -124],
+      [-10, -36],
+      [-56, -38],
+      [-16, -135],
+      [11, -46],
+      [-23, -64],
+      [-56, -26],
+      [-100, -15],
+      [-68, -27],
+      [-54, 13],
+      [-10, 19],
+      [-69, 4],
+      [-29, -16],
+      [-43, -53],
+      [-73, -2],
+      [-11, -16],
+      [-115, -95],
+      [-56, -20],
+      [-35, 12],
+      [-78, -67],
+      [-15, -64],
+      [19, -37],
+      [-7, -33],
+      [-99, -118],
+      [-10, -119],
+      [-16, -36],
+      [20, -57],
+      [68, -59],
+      [15, -41],
+      [43, -32],
+      [55, -75],
+      [27, -324],
+      [50, -147],
+      [-75, -19],
+      [-4, -64],
+      [-60, -39],
+      [-64, 24],
+      [-24, -17],
+      [-3, -98],
+      [-32, -22],
+      [-6, -27],
+      [-80, -26],
+      [-11, 17],
+      [-82, 4],
+      [9, -36],
+      [-11, -42],
+      [15, -47],
+      [-22, -56],
+      [-31, 20],
+      [-45, -46],
+      [70, -80],
+      [134, -52],
+      [129, -67],
+      [19, -194],
+      [25, -38],
+      [-47, -93],
+      [-21, -16],
+      [37, -64],
+      [65, -19],
+      [36, -52],
+      [-18, -50],
+      [-20, -95],
+      [3, -31],
+      [39, 10],
+      [50, -7],
+      [43, -43],
+      [94, -5],
+      [78, 24],
+      [40, -62],
+      [50, -48],
+      [-5, -34],
+      [86, -2],
+      [58, 13],
+      [-12, -90],
+      [48, -36],
+      [21, 1],
+      [72, -63],
+      [41, 20],
+      [25, -7],
+      [38, -64],
+      [-25, -63],
+      [20, -138],
+      [132, 60],
+      [30, -32],
+      [-22, -44],
+      [18, -32],
+      [-49, -20],
+      [-16, -53],
+      [-31, -32],
+      [-48, 5],
+      [17, -76],
+      [-24, -36],
+      [5, -30],
+      [-31, -35],
+      [-45, -22],
+      [-41, -85],
+      [-46, -41],
+      [-72, -25],
+      [-34, 7],
+      [-39, -34],
+      [5, -45],
+      [-77, -167],
+      [0, -93],
+      [29, -65],
+      [-23, -53],
+      [-58, -63],
+      [-22, -61],
+      [-40, 0],
+      [-30, -58],
+      [1, -38],
+      [-39, -21],
+      [-5, -35],
+      [33, -69],
+      [-28, -62],
+      [-12, -53],
+      [-50, -112],
+      [47, -32],
+      [-39, -43],
+      [-44, -6],
+      [-36, 23],
+      [-47, 1],
+      [-88, -76],
+      [-34, 20],
+      [-67, 11],
+      [-62, 20],
+      [-64, 48],
+      [-61, -19],
+      [-14, 24],
+      [23, 33],
+      [-7, 24],
+      [40, 170],
+      [-65, 7],
+      [-47, 66],
+      [-26, 14],
+      [-69, -59],
+      [-52, 24],
+      [-34, -24],
+      [13, -24],
+      [-36, -43],
+      [-43, -2],
+      [-41, 48],
+      [-41, 6],
+      [-35, 28],
+      [8, 56],
+      [-76, 51],
+      [-98, 37],
+      [-41, -21],
+      [-86, -21],
+      [-97, -71],
+      [1, -26],
+      [-41, -26],
+      [0, -40],
+      [-43, 0],
+      [-71, 17],
+      [-111, -77],
+      [7, 154],
+      [20, 86],
+      [86, 145],
+      [74, 105],
+      [83, 131],
+      [33, 35],
+      [72, 29],
+      [66, 59],
+      [-49, 67],
+      [-57, -59],
+      [-33, 52],
+      [-23, 100],
+      [-1, 123],
+      [-12, 68],
+      [-32, 91],
+      [-32, 61],
+      [-44, 11],
+      [-22, 91],
+      [28, 63],
+      [9, 86],
+      [-66, 101],
+      [-6, 25],
+      [-41, 71],
+      [-32, 82],
+      [-91, 1],
+      [-33, 55],
+      [-116, 130],
+      [-49, 122],
+      [10, 86],
+      [48, 96],
+      [-3, 263],
+      [-41, 86],
+      [-81, -26],
+      [-123, -22],
+      [-46, 50],
+      [-37, 8],
+      [-61, 35],
+      [-36, 86],
+      [-56, 15],
+      [-59, 51],
+      [-56, 67],
+      [-34, 21],
+      [-51, 79],
+      [-32, 17],
+      [-9, 76],
+      [-35, 4],
+      [-9, 51],
+      [-68, 21],
+      [-21, 42],
+      [-26, 16],
+      [-50, -16],
+      [-39, 12],
+      [-55, -7],
+      [-46, 30],
+      [-34, 42],
+      [-50, -24],
+      [-36, 17],
+      [-112, 15],
+      [-64, 16],
+      [-24, -6],
+      [0, -48],
+      [-30, -23],
+      [-56, 15],
+      [17, 45],
+      [29, 133],
+      [49, 208],
+      [151, 224],
+      [20, 57],
+      [79, 34],
+      [105, 34],
+      [78, 109],
+      [29, 71],
+      [10, 74],
+      [22, 78],
+      [36, -22],
+      [36, 65],
+      [-83, 55],
+      [71, 100],
+      [126, -58],
+      [22, 38],
+      [117, 229],
+      [-5, 142],
+      [-28, 144],
+      [-61, 2],
+      [-64, 82],
+      [-37, 26],
+      [-57, 19],
+      [-35, 27],
+      [-89, 126],
+      [-26, -10],
+      [-44, 90],
+      [-45, 20],
+      [-28, 57],
+      [-127, 84],
+      [-19, -38],
+      [-39, -44],
+      [-25, -52],
+      [-109, 1],
+      [-115, -15],
+      [-79, 46],
+      [-118, 90],
+      [-38, -6],
+      [-72, 23],
+      [-43, 40],
+      [-9, 27],
+      [-183, 354],
+      [-239, -241],
+      [-128, -252],
+      [-196, 60],
+      [-44, 21],
+      [-47, -12],
+      [-24, 18],
+      [-32, -13],
+      [-46, 23],
+      [-57, 60],
+      [-13, 85],
+      [-64, 13],
+      [-76, -32],
+      [-31, 27],
+      [-133, 49],
+      [-17, 61],
+      [-43, 69],
+      [-96, 95],
+      [-81, -21],
+      [-134, -8],
+      [-31, 8],
+      [-92, -24],
+      [-104, 0],
+      [-38, 102],
+      [9, 95],
+      [-11, 33],
+      [-67, 49],
+      [-28, 61],
+      [-56, 41],
+      [-67, 76],
+      [-6, 35],
+      [20, 33],
+      [77, 50],
+      [0, 71],
+      [36, 4],
+      [7, 28],
+      [-32, 17],
+      [-79, -1],
+      [-92, 39],
+      [11, 33],
+      [-11, 34],
+      [-53, 42],
+      [-77, -23],
+      [-64, 54],
+      [-20, 51],
+      [-31, 204],
+      [-78, 119],
+      [-4, 23],
+      [-69, 30],
+      [-32, 1],
+      [-15, 35],
+      [-23, 103],
+      [-140, 102],
+      [-25, 2],
+      [-36, 103],
+      [-24, 37],
+      [-1, 38],
+      [-24, 66],
+      [-25, 126],
+      [-1, 56],
+      [-50, 37],
+      [-65, 16],
+      [-28, 20],
+      [-64, -36],
+      [-80, 23],
+      [-35, 37],
+      [-44, 20],
+      [-40, 41],
+      [-51, 18],
+      [-75, 44],
+      [-74, 23],
+      [-115, 2],
+      [-93, 32],
+      [-36, 22],
+      [-33, 67],
+      [-5, 103],
+      [-27, 66],
+      [-43, 3],
+      [-27, 29],
+      [-115, 40],
+      [-35, -5],
+      [-54, 52],
+      [-13, 75],
+      [46, 70],
+      [27, 9],
+      [2, 53],
+      [105, 64],
+      [-81, 214],
+      [-101, 138],
+      [-74, 87],
+      [-31, 51],
+      [-7, 83],
+      [-80, 130],
+      [19, 40],
+      [58, 41],
+      [61, 30],
+      [20, 100],
+      [28, 28],
+      [5, 123],
+      [25, 74],
+      [133, 31],
+      [-4, 33],
+      [27, 42],
+      [0, 45],
+      [64, 26],
+      [23, 56],
+      [42, 54],
+      [-25, 52],
+      [8, 47],
+      [-5, 76],
+      [7, 99],
+      [-35, 122],
+      [39, 69],
+      [-1, 25],
+      [74, 74],
+      [-42, 137],
+      [8, 79],
+      [-16, 92],
+      [3, 58],
+      [-33, 88],
+      [-40, 52],
+      [19, 55],
+      [57, 79],
+      [53, 56],
+      [-11, 36],
+      [-84, 107],
+      [-4, 59],
+      [52, 79],
+      [16, 42],
+      [-39, 83],
+      [-47, 53],
+      [-50, 38],
+      [-17, 57],
+      [4, 44],
+      [46, 72],
+      [-21, 32],
+      [-20, 92],
+      [24, 47],
+      [56, 42],
+      [34, 68],
+      [-17, 59],
+      [-44, 14],
+      [14, 47],
+      [-8, 46],
+      [-85, 54],
+      [-44, 68],
+      [12, 31],
+      [-42, 76],
+      [-53, 37],
+      [-87, -20],
+      [-18, 30],
+      [-92, -21],
+      [-50, -31],
+      [-86, -14],
+      [-59, -46],
+      [-77, 6],
+      [-87, -39],
+      [-26, -47],
+      [-48, 12],
+      [-31, -12],
+      [-48, -66],
+      [-41, 22],
+      [-68, -9]
+    ],
+    [
+      [33612, 14440],
+      [42, 33],
+      [25, 64],
+      [116, 12],
+      [50, 31],
+      [33, -7],
+      [50, 19],
+      [55, 0],
+      [33, 24],
+      [109, 51],
+      [45, 1],
+      [-3, 48],
+      [15, 27],
+      [-36, 54],
+      [-43, 129],
+      [18, 60],
+      [-36, 73],
+      [16, 46],
+      [33, 52],
+      [16, 51],
+      [40, 31],
+      [0, 68],
+      [-11, 53],
+      [24, 35],
+      [-10, 54],
+      [51, 12],
+      [15, 69],
+      [70, 68],
+      [69, 8],
+      [32, 31],
+      [91, -55],
+      [10, -26],
+      [80, -36],
+      [34, -1],
+      [48, 19],
+      [79, -6],
+      [37, 11],
+      [68, 39],
+      [65, -43],
+      [53, -94],
+      [32, 1],
+      [90, -75],
+      [105, 13],
+      [48, -6],
+      [124, 25],
+      [47, 46],
+      [74, 18],
+      [83, -35],
+      [14, -42],
+      [25, -12],
+      [-10, -53],
+      [21, -62],
+      [4, -47],
+      [53, -29],
+      [81, -5],
+      [142, 53],
+      [82, 52],
+      [29, 62],
+      [69, 50],
+      [26, 38],
+      [58, 18],
+      [20, 20],
+      [81, 14]
+    ],
+    [
+      [40275, 3341],
+      [-5, 16],
+      [-137, 21],
+      [-29, -102],
+      [-8, -63],
+      [-66, -139],
+      [-7, -89],
+      [110, -30],
+      [27, -30],
+      [92, -3],
+      [15, 44],
+      [6, 86],
+      [26, 61],
+      [-27, 18],
+      [-13, 79],
+      [2, 76],
+      [14, 55]
+    ],
+    [
+      [39714, 22422],
+      [-24, -8],
+      [-94, -70],
+      [-48, -8],
+      [-20, -33],
+      [-26, 1],
+      [-61, -60],
+      [-48, -7],
+      [-23, -42],
+      [-106, -18],
+      [-38, -30],
+      [1, -34],
+      [-39, -2],
+      [-10, -32],
+      [-57, 0],
+      [-54, -13],
+      [-46, -31],
+      [-32, -59],
+      [-88, -59],
+      [-79, -17],
+      [-64, 19],
+      [-33, -10],
+      [0, -57],
+      [-38, -54],
+      [-32, -12],
+      [-37, -65],
+      [-47, 56],
+      [-24, 58],
+      [17, 183],
+      [-11, 50],
+      [0, 59],
+      [17, 77],
+      [-11, 73],
+      [-22, 9],
+      [-39, -37],
+      [-20, -38],
+      [-87, -37],
+      [-80, 185],
+      [-31, 53],
+      [-4, 62],
+      [30, 34],
+      [-18, 19],
+      [16, 61],
+      [3, 73],
+      [-36, 42],
+      [-5, 42],
+      [-75, 11],
+      [-14, 23],
+      [-79, 25],
+      [-46, 57],
+      [-74, -56],
+      [-96, -39],
+      [-80, -121],
+      [-56, -9],
+      [-113, 43],
+      [-19, 14],
+      [-47, 104],
+      [2, 29],
+      [-47, 36],
+      [-58, -28],
+      [-32, -35],
+      [-69, -17],
+      [-102, -61],
+      [-41, -12],
+      [-37, 6],
+      [-21, -36],
+      [-88, -4],
+      [-18, -41],
+      [-45, -11],
+      [-15, -27],
+      [-81, -64],
+      [-65, -69],
+      [0, -29],
+      [-67, -48],
+      [-38, 11],
+      [-68, -22],
+      [-52, 77],
+      [-54, 34],
+      [-41, 118],
+      [51, 79],
+      [-7, 43],
+      [-43, 112],
+      [-3, 56],
+      [-30, 28],
+      [-16, 50],
+      [-38, 3],
+      [-77, -32],
+      [-42, 14],
+      [-100, -23],
+      [-39, -18],
+      [-78, 28],
+      [-80, 19],
+      [-26, -11],
+      [-115, 42],
+      [-34, 21],
+      [-66, 13],
+      [-99, 2],
+      [-75, 11],
+      [-54, 46],
+      [-257, -11],
+      [-12, 337],
+      [-31, 136],
+      [40, 145],
+      [-14, 91],
+      [-80, 69],
+      [-196, 65],
+      [-152, -66]
+    ],
+    [
+      [36472, 27379],
+      [-11, 114],
+      [-73, 51],
+      [-37, 40],
+      [-36, 130],
+      [13, 35],
+      [-4, 50],
+      [60, 51],
+      [27, 40],
+      [88, 160],
+      [72, 13],
+      [39, 22],
+      [5, 69],
+      [43, 16],
+      [53, -38],
+      [40, 53],
+      [52, 11],
+      [316, 165],
+      [486, 146],
+      [216, 76],
+      [201, -50]
+    ],
+    [
+      [32918, 35612],
+      [48, -23],
+      [59, -4],
+      [79, 19],
+      [140, 68],
+      [82, 31],
+      [107, -5],
+      [64, 34],
+      [87, 71],
+      [32, 14],
+      [67, -17],
+      [49, 8],
+      [45, 41],
+      [63, 31],
+      [-8, 23],
+      [-72, 114],
+      [-72, -19],
+      [-30, -35],
+      [-75, -14],
+      [-114, -5],
+      [-28, 76],
+      [-57, 8],
+      [10, 87],
+      [-17, 48],
+      [-39, 48],
+      [-5, 101],
+      [93, -2],
+      [65, 33],
+      [39, 64],
+      [48, 14],
+      [41, 67],
+      [14, 86],
+      [55, -31],
+      [17, 22],
+      [51, 6],
+      [63, -11],
+      [134, 56],
+      [37, -2],
+      [31, 36],
+      [-1, 63],
+      [26, 27],
+      [57, 4],
+      [-22, 41],
+      [34, 31],
+      [-7, 61],
+      [11, 75],
+      [68, 11],
+      [65, -53],
+      [81, 4],
+      [68, -21],
+      [28, 2],
+      [-3, -95],
+      [56, 15],
+      [19, -39],
+      [83, 4],
+      [98, -18],
+      [18, -52],
+      [37, -53],
+      [12, -53],
+      [86, 10],
+      [25, -96],
+      [-17, -33],
+      [-48, -20],
+      [1, -77],
+      [-34, -65],
+      [-30, -32],
+      [19, -38]
+    ],
+    [
+      [34751, 36253],
+      [-36, -5],
+      [-61, -56],
+      [1, -37],
+      [-72, -48],
+      [-38, 9],
+      [-88, -54],
+      [-53, -55],
+      [-22, -5],
+      [22, -75],
+      [-46, -26],
+      [29, -28],
+      [24, -57],
+      [-33, -56],
+      [57, -17],
+      [68, 11],
+      [26, -15],
+      [-3, -59],
+      [-61, -28],
+      [44, -42],
+      [46, -71],
+      [18, -51],
+      [12, -96],
+      [12, -35],
+      [37, -49],
+      [35, -13],
+      [51, 46],
+      [91, 162],
+      [22, 77],
+      [6, 72],
+      [31, 91],
+      [40, 27],
+      [49, 8],
+      [19, 48],
+      [-25, 65],
+      [-15, 87],
+      [14, 63],
+      [25, 44],
+      [72, 56],
+      [90, 29],
+      [38, 46],
+      [-9, 77],
+      [19, 85]
+    ],
+    [
+      [35187, 36378],
+      [102, 109],
+      [23, 75],
+      [-11, 65],
+      [-63, 122],
+      [-34, 136],
+      [-3, 93],
+      [-20, 118],
+      [5, 44],
+      [76, 55],
+      [16, 28],
+      [19, 78],
+      [47, 31],
+      [64, -52],
+      [23, -67],
+      [-4, -56],
+      [-41, -41],
+      [-70, -5],
+      [-35, -39],
+      [26, -41],
+      [38, -14],
+      [106, 15],
+      [56, 22],
+      [45, 40],
+      [23, 37],
+      [53, 144],
+      [-12, 77],
+      [-115, 122],
+      [-64, 43],
+      [-23, -15],
+      [-53, 53],
+      [-26, 62],
+      [-8, 49]
+    ],
+    [
+      [35327, 37666],
+      [24, 76],
+      [21, -12],
+      [22, 88],
+      [35, 46],
+      [24, -13],
+      [32, -53],
+      [32, -3],
+      [76, 51],
+      [13, 69],
+      [-42, 175],
+      [7, 32],
+      [174, 39],
+      [52, 26],
+      [59, -17],
+      [109, -95],
+      [65, -49],
+      [59, -14]
+    ],
+    [
+      [36089, 38012],
+      [80, -20]
+    ],
+    [
+      [36169, 37992],
+      [3, -67],
+      [-23, -91],
+      [17, -47],
+      [104, -68],
+      [8, -63],
+      [1, -118],
+      [26, -34],
+      [10, -56],
+      [24, -15],
+      [60, -78],
+      [18, -72],
+      [68, -41],
+      [69, -7],
+      [70, -73],
+      [71, -44],
+      [29, 34],
+      [41, 16],
+      [41, -53],
+      [84, 1],
+      [15, 25],
+      [66, -5],
+      [71, -34],
+      [107, 26],
+      [5, -54],
+      [51, -23],
+      [14, 44],
+      [52, 32],
+      [85, 25],
+      [18, 39],
+      [34, 13],
+      [31, 48],
+      [55, 34],
+      [52, -6],
+      [46, -22],
+      [31, 45],
+      [52, 30],
+      [40, 53],
+      [15, 61],
+      [0, 54],
+      [26, 94],
+      [60, -14],
+      [143, 10],
+      [-4, -92],
+      [20, -5],
+      [-9, -111],
+      [8, -56],
+      [68, -12],
+      [62, -39],
+      [84, -16],
+      [70, -40],
+      [-4, -54],
+      [26, -72],
+      [-15, -59],
+      [-71, -129],
+      [-15, -45],
+      [-32, 11],
+      [-63, -49],
+      [-19, -98],
+      [16, -41],
+      [4, -83],
+      [-25, -3],
+      [-39, -48],
+      [-45, -6],
+      [-12, -43],
+      [-1, -71],
+      [-14, -72],
+      [-17, -33],
+      [13, -38],
+      [-82, 30],
+      [-38, -2],
+      [-65, 19],
+      [-9, 15],
+      [22, 107],
+      [-40, 3],
+      [-98, 64],
+      [-131, 49],
+      [-99, 60],
+      [-44, 4],
+      [-33, -30],
+      [-74, 60],
+      [-36, 67],
+      [-31, -45],
+      [9, -64],
+      [-12, -31],
+      [3, -65],
+      [-36, 1],
+      [-40, -25],
+      [-10, -76],
+      [35, -14],
+      [1, -56],
+      [79, -101],
+      [-10, -78],
+      [13, -71],
+      [100, 11],
+      [83, 0],
+      [70, -13],
+      [518, -185],
+      [-47, -6],
+      [-20, -47],
+      [69, -21],
+      [-19, -91],
+      [44, -14],
+      [-9, -56],
+      [86, -29],
+      [36, 0],
+      [10, 36],
+      [31, -11],
+      [56, 22],
+      [82, -28],
+      [16, 47],
+      [102, -45],
+      [5, -118],
+      [39, 20],
+      [37, -6],
+      [-8, -57],
+      [88, 7],
+      [2, -57],
+      [-68, -2],
+      [-71, -27],
+      [-5, -30],
+      [-30, -13],
+      [-81, 11],
+      [-33, -5],
+      [-20, -33],
+      [37, -79],
+      [27, -123],
+      [23, -62],
+      [73, -74],
+      [-8, -43],
+      [24, -7],
+      [-5, -85],
+      [88, -29],
+      [113, 3],
+      [-1, -21],
+      [174, 0],
+      [75, -23],
+      [74, -34],
+      [46, 37],
+      [38, -30],
+      [139, -48],
+      [13, -32],
+      [-4, -42],
+      [-28, -55],
+      [17, -40],
+      [-3, -85],
+      [14, -109],
+      [-51, -145],
+      [-13, -1],
+      [12, -129],
+      [-10, -119],
+      [53, -10],
+      [12, -57],
+      [-165, -69],
+      [-7, -99],
+      [-39, -39],
+      [36, -24],
+      [-16, -53],
+      [21, -30],
+      [76, -8],
+      [18, -104],
+      [49, -29],
+      [-2, -62],
+      [32, -37],
+      [33, -67],
+      [42, -23],
+      [44, -52],
+      [29, -65],
+      [-45, -19],
+      [-39, -52],
+      [58, -95],
+      [-3, -16],
+      [54, -43],
+      [106, -8],
+      [41, -29],
+      [68, 12],
+      [55, -2],
+      [26, -22],
+      [-28, -48],
+      [-59, -10],
+      [-60, 32],
+      [-53, -11],
+      [-14, 15],
+      [-45, -33],
+      [-41, 51],
+      [-38, -58],
+      [12, -33],
+      [80, -38],
+      [-30, -38],
+      [-16, -47],
+      [35, -111],
+      [-19, -51],
+      [2, -59],
+      [-23, -16],
+      [-18, -56],
+      [-65, -88],
+      [-15, -56],
+      [49, -22],
+      [57, 9],
+      [54, -31],
+      [72, -9],
+      [68, -52],
+      [24, -52],
+      [67, -67],
+      [47, -19],
+      [70, -57],
+      [27, -36],
+      [0, -36],
+      [-46, -82],
+      [45, -78]
+    ],
+    [
+      [36169, 37992],
+      [37, 8],
+      [85, 50],
+      [71, 63],
+      [52, 73],
+      [35, 20],
+      [119, -47],
+      [69, -57],
+      [44, -16],
+      [83, 0],
+      [50, 24]
+    ],
+    [
+      [36814, 38110],
+      [56, 28],
+      [80, 13]
+    ],
+    [
+      [36950, 38151],
+      [78, 3],
+      [90, -30],
+      [81, -12],
+      [56, 1],
+      [88, -26],
+      [100, -54],
+      [70, -56],
+      [47, -60],
+      [143, -90],
+      [54, -26],
+      [53, -11],
+      [46, 9]
+    ],
+    [
+      [37856, 37799],
+      [74, 50],
+      [49, 7],
+      [61, -27],
+      [94, 19],
+      [128, -57],
+      [41, -5],
+      [78, -52],
+      [50, -59],
+      [20, -85],
+      [23, -20],
+      [64, -18],
+      [99, -53],
+      [-111, -171],
+      [41, -25],
+      [31, 3],
+      [83, -22],
+      [37, 78],
+      [61, 44],
+      [23, -1],
+      [73, -42],
+      [39, 15]
+    ],
+    [
+      [38914, 37378],
+      [21, 6],
+      [77, -19],
+      [50, -30],
+      [78, -69],
+      [55, -25],
+      [35, -2],
+      [161, 70],
+      [160, 43],
+      [76, 35],
+      [60, 10],
+      [54, -3],
+      [63, 17],
+      [78, 85],
+      [61, 34],
+      [175, 68],
+      [132, 94],
+      [62, 67],
+      [59, 40],
+      [256, 126],
+      [93, 52],
+      [120, 45],
+      [88, 0],
+      [103, -25],
+      [194, -56],
+      [133, -30],
+      [140, -24],
+      [133, -14],
+      [158, -6],
+      [125, -27],
+      [37, -18],
+      [179, -149],
+      [220, -67],
+      [65, -29],
+      [34, 0],
+      [115, 61],
+      [51, -9],
+      [64, -26],
+      [29, -60],
+      [130, -138],
+      [12, -24],
+      [64, 18],
+      [32, -18],
+      [123, 53],
+      [205, -41],
+      [426, 26],
+      [152, 19],
+      [27, 32],
+      [106, -2],
+      [158, -59],
+      [2365, -1250],
+      [104, -94],
+      [665, -875]
+    ],
+    [
+      [35327, 37666],
+      [6, 66],
+      [-116, 12],
+      [-28, -71],
+      [-37, -49],
+      [-23, 13],
+      [-94, -51],
+      [-90, -69],
+      [-52, 24],
+      [-38, 41],
+      [-23, -12],
+      [-39, 32],
+      [-19, -10],
+      [-18, 59],
+      [4, 39],
+      [-39, 7],
+      [-55, -23],
+      [-58, -8],
+      [-35, -29],
+      [-38, 2],
+      [-42, -33],
+      [-50, -17],
+      [-15, -35],
+      [37, -132],
+      [-74, 34],
+      [-30, 28],
+      [-5, 65],
+      [-32, -28],
+      [-55, -26],
+      [15, -51],
+      [26, -20],
+      [-12, -38],
+      [51, -75],
+      [12, -47],
+      [-27, -68],
+      [-26, 3],
+      [-80, -21],
+      [-51, 13],
+      [-85, 40],
+      [-61, -16],
+      [-78, 13],
+      [-54, -19],
+      [-73, -5],
+      [1, -64],
+      [-43, -13],
+      [-41, 55],
+      [-30, -24],
+      [-32, 4],
+      [-18, 31],
+      [10, 37],
+      [-24, 37],
+      [-53, 17],
+      [-45, -20],
+      [5, -36],
+      [53, -28],
+      [4, -27],
+      [-38, -28],
+      [-44, -12],
+      [16, -36],
+      [32, 2],
+      [-22, -53],
+      [-46, 19],
+      [-39, 45],
+      [-45, 141],
+      [45, 154],
+      [-46, 6],
+      [-49, -53],
+      [-36, -20],
+      [-48, 41],
+      [-42, 5],
+      [-72, -23],
+      [-87, 71],
+      [-27, 0],
+      [-17, 43],
+      [-44, 54],
+      [-111, 96],
+      [-115, -14],
+      [-38, 4],
+      [-88, 159],
+      [10, 42],
+      [42, 57],
+      [89, 15],
+      [29, 61],
+      [33, 23],
+      [-35, 87],
+      [-83, 127],
+      [-74, 24],
+      [-24, 50],
+      [46, 83],
+      [83, 94],
+      [38, 70],
+      [40, -14],
+      [69, 45],
+      [10, -8],
+      [75, 67],
+      [46, 60],
+      [39, 20],
+      [47, 52],
+      [50, 40],
+      [30, 3],
+      [98, -15],
+      [-9, 21],
+      [4, 74],
+      [33, 41],
+      [-9, 28],
+      [-36, -1],
+      [-31, 55],
+      [-21, 101],
+      [13, 41],
+      [68, 54],
+      [2, 115],
+      [20, 36],
+      [73, 30],
+      [55, 55],
+      [33, 112],
+      [47, 85],
+      [112, 86],
+      [34, 54],
+      [66, 46],
+      [26, -31],
+      [59, -20],
+      [40, 35],
+      [52, 24],
+      [97, 20],
+      [10, 33],
+      [81, -60],
+      [51, -56],
+      [22, 68],
+      [61, 84],
+      [80, 1],
+      [42, 36],
+      [77, 35],
+      [121, 42],
+      [33, 21],
+      [45, -15],
+      [70, -64],
+      [23, -3],
+      [-5, -55],
+      [42, 9],
+      [106, 41],
+      [44, 27],
+      [-18, 69],
+      [-21, 41],
+      [7, 52],
+      [-172, 60],
+      [6, 81],
+      [1, 117],
+      [17, 63],
+      [56, 62],
+      [31, -45],
+      [37, -4],
+      [37, -88],
+      [-8, -44],
+      [61, 11],
+      [105, 52],
+      [68, -80],
+      [72, 75],
+      [35, 12],
+      [141, -22],
+      [33, -14],
+      [62, -59],
+      [-9, -47],
+      [57, -24],
+      [-22, -120],
+      [-21, -24],
+      [-43, -13],
+      [-9, -64],
+      [50, -119],
+      [61, -18],
+      [-31, -110],
+      [-22, -42],
+      [0, -43],
+      [75, -77],
+      [36, -92],
+      [52, -24],
+      [31, 42],
+      [112, 101],
+      [28, -19],
+      [41, 54],
+      [-29, 32],
+      [53, 38],
+      [48, 61],
+      [-24, 20],
+      [-40, -6],
+      [26, 148],
+      [-12, 60],
+      [-50, 60],
+      [4, 71],
+      [16, 81],
+      [26, 6],
+      [9, 71],
+      [50, 29],
+      [47, 11],
+      [46, -84],
+      [-4, -47],
+      [-35, -46],
+      [66, 0],
+      [39, -28],
+      [31, -55],
+      [47, -2],
+      [80, -38],
+      [17, 22],
+      [53, -63],
+      [13, -65],
+      [-2, -65],
+      [73, -77],
+      [-68, -59],
+      [43, -109],
+      [26, -141],
+      [81, -53],
+      [34, 18],
+      [23, 61],
+      [33, 11],
+      [72, 72],
+      [35, -11],
+      [60, 46],
+      [62, -22],
+      [35, -25],
+      [79, -17],
+      [47, -54],
+      [-25, -34],
+      [162, -121],
+      [4, -78],
+      [-25, -34],
+      [-70, 1],
+      [-44, -14],
+      [-39, 6],
+      [-19, -23],
+      [-40, 13],
+      [-27, -35],
+      [-18, -60],
+      [-75, -49],
+      [-6, -46],
+      [-40, -126],
+      [35, -49],
+      [55, -124],
+      [48, 2],
+      [42, -32],
+      [111, -34],
+      [44, -44],
+      [-54, -93],
+      [-15, -85],
+      [-35, -105],
+      [-27, -118],
+      [21, -80]
+    ],
+    [
+      [36814, 38110],
+      [-3, 87],
+      [-83, 28],
+      [6, 110],
+      [-39, 49],
+      [-15, 74],
+      [-42, 115],
+      [-45, 36],
+      [-36, -4],
+      [-15, -25],
+      [-103, -42],
+      [8, -46],
+      [-53, -18],
+      [-33, 3],
+      [-52, 38],
+      [18, 37],
+      [-55, 14],
+      [-39, -8],
+      [-38, -34],
+      [-90, 48],
+      [18, -112],
+      [101, -61],
+      [38, -138],
+      [-31, -5],
+      [-2, -45],
+      [-57, -41],
+      [-17, -31],
+      [-114, -16],
+      [-2, -37],
+      [58, -27],
+      [-8, -47]
+    ],
+    [
+      [34751, 36253],
+      [48, -45],
+      [41, 19],
+      [31, -6],
+      [34, -45],
+      [32, 23],
+      [74, -13],
+      [23, 74],
+      [46, 39],
+      [45, 12],
+      [19, 78],
+      [43, -11]
+    ],
+    [
+      [37856, 37799],
+      [-33, 96],
+      [32, 88],
+      [12, 74],
+      [43, 77],
+      [39, 6],
+      [32, -13],
+      [63, 37],
+      [-50, 65],
+      [-31, -4],
+      [-86, 18],
+      [13, 66],
+      [-23, 47],
+      [-81, 51],
+      [-45, -14],
+      [-101, 22],
+      [-74, 5],
+      [-65, 19],
+      [4, 47],
+      [24, 19],
+      [-1, 39],
+      [19, 25],
+      [-34, 37],
+      [-8, 57],
+      [66, 26],
+      [25, 33],
+      [-3, 40],
+      [59, -23],
+      [39, 93],
+      [40, 4],
+      [69, 50],
+      [98, -34],
+      [-1, 35],
+      [-35, 116],
+      [40, 32],
+      [108, 21],
+      [-6, -50],
+      [19, -71],
+      [48, -16],
+      [-31, -59],
+      [-56, -33],
+      [38, -26],
+      [56, -18],
+      [51, -71],
+      [27, -53],
+      [91, 21],
+      [3, -34],
+      [-88, -76],
+      [45, -18],
+      [19, -29],
+      [84, 18],
+      [47, 55],
+      [94, -36],
+      [68, -33],
+      [1, -53],
+      [33, -106],
+      [85, 31],
+      [85, -15],
+      [41, 22],
+      [55, 3],
+      [62, -32],
+      [-26, -47],
+      [37, -67],
+      [32, -27],
+      [-23, -52],
+      [-45, -18],
+      [-66, 8],
+      [3, 52],
+      [-41, 42],
+      [-40, -39],
+      [-29, 45],
+      [-29, -30],
+      [-54, -11],
+      [-14, -42],
+      [53, -3],
+      [39, -38],
+      [-18, -72],
+      [-39, -26],
+      [-31, -46],
+      [-7, -90],
+      [76, -18],
+      [57, 1],
+      [98, -90],
+      [37, -85],
+      [37, -31],
+      [36, -198],
+      [-8, -2],
+      [-2, -115]
+    ],
+    [
+      [12071, 27423],
+      [-39, -1]
+    ],
+    [
+      [12032, 27422],
+      [-66, 23],
+      [-69, -18],
+      [-53, 13],
+      [-30, 37],
+      [-19, 50],
+      [21, 28],
+      [150, 96],
+      [130, 66],
+      [26, 34],
+      [27, 74],
+      [56, -10],
+      [32, 12],
+      [-4, 98],
+      [20, 57],
+      [44, 57],
+      [26, 95],
+      [36, 17],
+      [41, 52],
+      [43, 18],
+      [32, 46],
+      [92, 61],
+      [31, 36],
+      [76, 51],
+      [40, 70],
+      [61, 12],
+      [93, 44],
+      [35, 34],
+      [40, 65],
+      [4, 55],
+      [50, 42],
+      [62, 16],
+      [54, 2],
+      [40, 69],
+      [4, 69],
+      [57, 26],
+      [61, 56],
+      [39, 14],
+      [12, 26],
+      [-48, 70],
+      [-63, 66],
+      [-9, 77],
+      [36, 45],
+      [22, 65],
+      [4, 69],
+      [-18, 52],
+      [26, 86],
+      [-91, 185],
+      [3, 40],
+      [-57, 80],
+      [-5, 29],
+      [45, 37],
+      [63, 68],
+      [49, 15],
+      [53, 2],
+      [76, -19],
+      [87, 24],
+      [64, -28],
+      [36, 44],
+      [6, 60],
+      [96, -19],
+      [57, 24],
+      [35, 1],
+      [43, -20],
+      [33, 3],
+      [35, 32],
+      [58, 82],
+      [54, -6],
+      [31, 36],
+      [16, 107],
+      [33, 24],
+      [37, 112],
+      [-11, 45],
+      [-32, 67],
+      [-49, 2],
+      [9, 86],
+      [83, 17],
+      [132, 16],
+      [62, 16],
+      [41, 28],
+      [134, -39],
+      [23, 2],
+      [151, 160],
+      [-45, 11],
+      [-9, 35],
+      [30, 42],
+      [62, 21],
+      [34, 88],
+      [-78, 60],
+      [-89, 15],
+      [9, 45],
+      [30, 29],
+      [-15, 70],
+      [3, 41],
+      [-26, 56],
+      [0, 37],
+      [-91, 58],
+      [-110, -18],
+      [-7, 26],
+      [-3, 102],
+      [-62, -11],
+      [-123, 25],
+      [-27, 47],
+      [-36, 6],
+      [-31, -31],
+      [-18, 25],
+      [-58, -93],
+      [-41, -19],
+      [-74, -54],
+      [-51, -25],
+      [-100, 11],
+      [-67, -11],
+      [-105, -63],
+      [-36, 12],
+      [-80, -30],
+      [-23, 21],
+      [-41, -20],
+      [-62, -4],
+      [-58, 18],
+      [-81, -17],
+      [-43, -30],
+      [-102, -3],
+      [-27, 18],
+      [-121, -66],
+      [-65, 2],
+      [-48, 44],
+      [-169, 39],
+      [-46, -33],
+      [-50, 18],
+      [-11, -40],
+      [-157, -87],
+      [-50, 4],
+      [1, 106],
+      [41, 69],
+      [18, 91],
+      [15, 36],
+      [-18, 111],
+      [70, 78],
+      [93, 65],
+      [13, 47],
+      [94, 8],
+      [84, 50],
+      [25, 22],
+      [23, 64],
+      [-31, 28],
+      [2, 63],
+      [-17, 56],
+      [69, 13],
+      [1, 40],
+      [23, 73],
+      [-2, 54],
+      [34, 26],
+      [12, -32],
+      [62, 16],
+      [41, -4],
+      [135, 9],
+      [33, 112],
+      [9, 83],
+      [-6, 131],
+      [-14, 182],
+      [3, 46],
+      [21, 12],
+      [69, 2],
+      [105, 25],
+      [35, -29],
+      [83, 41],
+      [33, 37],
+      [54, 193],
+      [42, 1],
+      [100, 42],
+      [41, -22],
+      [81, -4],
+      [77, 34],
+      [42, 58],
+      [41, 34],
+      [-9, 37],
+      [-53, 10],
+      [10, 67],
+      [41, 45],
+      [-21, 61],
+      [10, 46],
+      [-117, -17],
+      [-11, 25],
+      [31, 63],
+      [-9, 19],
+      [-56, 30],
+      [-25, 65],
+      [29, 95],
+      [0, 120],
+      [-34, 132],
+      [30, 30],
+      [101, 50],
+      [105, 70],
+      [218, 74],
+      [64, -2],
+      [36, -60],
+      [19, 4],
+      [69, -48],
+      [32, 1],
+      [4, -35],
+      [101, 20],
+      [65, -49],
+      [40, -19],
+      [111, 5],
+      [28, -16],
+      [124, -45],
+      [6, -53],
+      [31, -32],
+      [86, 32],
+      [135, 101],
+      [37, 14],
+      [77, -23],
+      [167, 17],
+      [42, 24],
+      [144, 129],
+      [20, 26],
+      [30, -19],
+      [119, -24],
+      [177, -112],
+      [40, -65],
+      [52, -50],
+      [39, -13],
+      [51, 2],
+      [17, -15],
+      [76, 7],
+      [36, 14],
+      [124, 16],
+      [136, 48],
+      [76, 15],
+      [26, -59],
+      [-116, -50],
+      [-45, -8],
+      [-7, -48],
+      [-46, -75],
+      [-30, -107],
+      [-96, -196],
+      [21, -40],
+      [-2, -99],
+      [-8, -46],
+      [-50, -170],
+      [-57, -146],
+      [71, -1],
+      [226, -80],
+      [34, -32],
+      [9, -42],
+      [55, -5],
+      [76, 6],
+      [14, -13],
+      [73, 38],
+      [111, 40],
+      [35, 23],
+      [78, 4],
+      [59, -26],
+      [28, -32],
+      [45, -78],
+      [-17, -55],
+      [20, -41],
+      [64, -15],
+      [26, -26],
+      [-4, -37],
+      [14, -89],
+      [53, 48],
+      [61, 35],
+      [194, 53],
+      [55, 57],
+      [83, 60],
+      [19, 36],
+      [44, 13],
+      [52, -9],
+      [54, -28],
+      [42, 47],
+      [62, 16],
+      [22, 40],
+      [63, 10],
+      [75, -20],
+      [24, 12],
+      [122, 3],
+      [51, 27]
+    ],
+    [
+      [19746, 31805],
+      [38, -13],
+      [64, -39],
+      [24, -35],
+      [81, -41],
+      [26, -48],
+      [116, -40],
+      [62, -3],
+      [149, 25],
+      [104, -33],
+      [97, 19],
+      [52, 21],
+      [161, 11],
+      [178, -3],
+      [12, -46],
+      [-39, -73],
+      [0, -22],
+      [83, -48],
+      [70, -17],
+      [8, -47],
+      [78, 9],
+      [24, -89],
+      [-61, -113],
+      [29, -53],
+      [78, -3],
+      [97, -43]
+    ],
+    [
+      [11044, 18669],
+      [-24, -50],
+      [-60, -53],
+      [-18, -34],
+      [8, -53],
+      [-90, -111],
+      [-110, -67],
+      [-9, 29],
+      [-42, 65],
+      [22, 23],
+      [-32, 60],
+      [-81, 44],
+      [-41, 73],
+      [53, 97],
+      [85, 18],
+      [9, 33],
+      [74, 80],
+      [40, 30],
+      [63, 140],
+      [42, -40],
+      [36, 35],
+      [54, -47],
+      [45, -24],
+      [-18, -37],
+      [-11, -142],
+      [5, -69]
+    ],
+    [
+      [11866, 19399],
+      [39, 84],
+      [41, -22],
+      [-12, -42],
+      [42, -6],
+      [24, -29],
+      [14, -57],
+      [39, -28],
+      [-8, -54],
+      [14, -17],
+      [64, -7],
+      [56, -82],
+      [65, -25],
+      [33, -29],
+      [-16, -40],
+      [58, -43],
+      [26, -41],
+      [-212, -341],
+      [9, -44],
+      [-19, -31],
+      [33, -19],
+      [-45, -65],
+      [-35, -13],
+      [-62, 29],
+      [-69, 8],
+      [-105, 57],
+      [-77, 67],
+      [-43, 17],
+      [-33, 33],
+      [-147, -13],
+      [-56, -21],
+      [-75, -97],
+      [-30, -23],
+      [-68, 0],
+      [-35, -24],
+      [-28, 12],
+      [-91, -25],
+      [-23, 31],
+      [-37, 18],
+      [-7, 28],
+      [42, 33],
+      [33, 97],
+      [61, -34],
+      [42, 22],
+      [36, 35],
+      [26, -30],
+      [61, 42],
+      [55, -4],
+      [23, 27],
+      [-12, 37],
+      [75, 82],
+      [34, 74],
+      [46, 46],
+      [27, 56],
+      [-12, 28],
+      [15, 33],
+      [33, 24],
+      [65, 77],
+      [53, 33],
+      [48, 49],
+      [54, 107],
+      [-29, 20]
+    ],
+    [
+      [12129, 22211],
+      [211, -279],
+      [133, -184],
+      [40, -35],
+      [85, -59],
+      [35, -55],
+      [22, 19],
+      [22, -35],
+      [51, 41],
+      [136, -189],
+      [-69, -37],
+      [10, -15],
+      [-64, -34],
+      [-29, 48],
+      [-62, -22],
+      [-56, -41],
+      [-31, 13],
+      [-25, -23],
+      [-62, -19],
+      [61, -76],
+      [218, 96],
+      [38, -59],
+      [28, 3],
+      [29, -56],
+      [32, -28],
+      [24, 8],
+      [40, -100],
+      [22, 8],
+      [24, -35],
+      [-136, -105],
+      [-137, -189],
+      [-36, -93],
+      [-6, -115],
+      [-28, -70],
+      [37, -106],
+      [0, -43],
+      [42, -107],
+      [-39, -71],
+      [-39, -52],
+      [85, -68],
+      [60, 71],
+      [-14, 16],
+      [69, 64],
+      [33, -38],
+      [66, 7],
+      [10, -31],
+      [44, -37],
+      [-11, -53],
+      [-39, -30],
+      [-30, -69],
+      [-50, -22],
+      [-11, -48],
+      [-59, -145],
+      [10, -48],
+      [-16, -36],
+      [-50, -45],
+      [-17, -33],
+      [-35, 47],
+      [-44, -10],
+      [-79, 1],
+      [10, -31],
+      [-64, -19],
+      [-11, -37],
+      [-81, 20],
+      [-115, -61],
+      [-103, 58],
+      [-33, 30],
+      [-59, 19],
+      [-40, 53],
+      [25, 43],
+      [-62, 56],
+      [-132, -81],
+      [17, -34],
+      [-26, -30],
+      [-71, -44],
+      [-47, 45],
+      [-33, -56],
+      [-12, -43],
+      [-43, -31],
+      [-67, 42],
+      [-32, -75],
+      [-53, 68],
+      [-44, 29],
+      [-39, 4],
+      [-40, 21],
+      [13, 27],
+      [-61, 66],
+      [-56, 44],
+      [-89, -57],
+      [-65, 57],
+      [-134, 157],
+      [-79, -87],
+      [-15, 13],
+      [35, 84],
+      [116, 117],
+      [-43, 72],
+      [-70, -53],
+      [-25, 38],
+      [-127, 127],
+      [-335, 383],
+      [503, 512]
+    ],
+    [
+      [10985, 21054],
+      [321, 322],
+      [542, 552],
+      [281, 283]
+    ],
+    [
+      [17077, 14972],
+      [-18, 0],
+      [-40, -46],
+      [-25, -5],
+      [-72, -42],
+      [-39, -46],
+      [-11, -44],
+      [-48, -55],
+      [-16, -33],
+      [-93, -129],
+      [-30, -25],
+      [-88, 144],
+      [-4, 35],
+      [-98, 90],
+      [-81, -72],
+      [-67, -86],
+      [-20, -7],
+      [-88, -80],
+      [-95, -63],
+      [-48, -50],
+      [-61, -33],
+      [-81, 9],
+      [-59, 23],
+      [-41, -30],
+      [-22, -46],
+      [-7, -59],
+      [-36, -40],
+      [-5, -61],
+      [-41, -77],
+      [-10, -92],
+      [-71, -80],
+      [-58, -38],
+      [-51, -83],
+      [-62, -24],
+      [-72, -44],
+      [-34, -12],
+      [-46, -52],
+      [-7, -40],
+      [-42, -49],
+      [-35, -18],
+      [-32, 29],
+      [-121, -30],
+      [-26, 18],
+      [-60, -1],
+      [-65, 22],
+      [-69, -49],
+      [-32, 11],
+      [-56, 42],
+      [-63, -36],
+      [-27, -41],
+      [-62, -51],
+      [-46, -19],
+      [-43, -58],
+      [-49, -48],
+      [-74, -46],
+      [-134, -153],
+      [-22, -54],
+      [-26, -17],
+      [-61, -79],
+      [12, -17],
+      [-18, -123],
+      [-35, -95],
+      [-67, -27],
+      [-54, -34],
+      [-75, -30],
+      [-46, -39],
+      [-83, -54],
+      [-71, -19],
+      [-47, 1],
+      [10, 52],
+      [47, 70],
+      [52, 98],
+      [-36, 88],
+      [-68, 75],
+      [-22, 43],
+      [-34, 1],
+      [-16, 49],
+      [0, 109],
+      [-10, 15],
+      [10, 59],
+      [-15, 52],
+      [47, 50],
+      [-74, 62],
+      [-27, 61],
+      [2, 26],
+      [-20, 57],
+      [5, 89],
+      [-96, 67],
+      [-29, 63],
+      [-100, 71],
+      [-23, 44],
+      [-46, 14],
+      [-38, -26],
+      [-77, 11],
+      [-78, -17],
+      [-39, 18],
+      [-34, 57],
+      [-42, -1],
+      [-35, 61],
+      [-68, 23],
+      [-43, 36],
+      [-43, 11],
+      [-11, 32],
+      [-34, -6],
+      [-79, 17],
+      [-36, -18],
+      [-23, -39],
+      [-38, -31],
+      [-25, 8],
+      [14, 75],
+      [22, 38],
+      [-7, 89],
+      [-25, 2],
+      [-181, -137],
+      [-28, -47],
+      [-70, -79],
+      [-26, -42],
+      [-81, -72],
+      [-21, -46],
+      [-26, -95],
+      [-73, -16],
+      [-112, 6],
+      [-45, 67],
+      [-35, -7],
+      [-68, 65],
+      [-72, 121],
+      [-3, 40],
+      [-25, 103],
+      [-74, -6],
+      [-28, 39],
+      [-61, 49],
+      [-37, 100],
+      [-59, 76],
+      [32, 42],
+      [59, 109],
+      [8, 80],
+      [36, 30],
+      [2, 23],
+      [49, 51],
+      [5, -73],
+      [147, -6],
+      [110, 25],
+      [84, 44],
+      [56, 7],
+      [24, -64],
+      [-6, -20],
+      [49, -25],
+      [-20, -56],
+      [6, -51],
+      [40, 5],
+      [7, 83],
+      [33, 77],
+      [39, 47],
+      [18, 42],
+      [65, 47],
+      [19, 39],
+      [124, 146],
+      [53, 74],
+      [25, -11],
+      [48, 41],
+      [37, 14],
+      [28, -17],
+      [41, 35],
+      [-35, 42],
+      [-6, 66],
+      [33, 61],
+      [-49, 18],
+      [-35, -29],
+      [-67, -35],
+      [-29, 5],
+      [-23, -54],
+      [-1, -45],
+      [-25, -18],
+      [-67, 105],
+      [-66, -43],
+      [-56, 145],
+      [-63, 104],
+      [-75, 54],
+      [-33, 4],
+      [-65, 39],
+      [-15, -19],
+      [-33, 40],
+      [-35, 18],
+      [-14, -23],
+      [-40, -9],
+      [-33, -69],
+      [-39, -30],
+      [-27, -44],
+      [-75, 22],
+      [-31, 32],
+      [-42, -10],
+      [-38, 119],
+      [-91, 48],
+      [0, -37],
+      [-34, -56],
+      [22, -55],
+      [-51, 9],
+      [-19, -25],
+      [-41, 6],
+      [-31, -61],
+      [-41, -17],
+      [-61, 25],
+      [18, 40],
+      [-2, 42],
+      [38, 55],
+      [7, 72],
+      [-13, 9],
+      [36, 132],
+      [-13, 23],
+      [-25, 127],
+      [48, 18],
+      [26, 176],
+      [-27, 125],
+      [15, 12],
+      [-6, 55],
+      [12, 72],
+      [-20, 55],
+      [4, 49],
+      [-24, 49],
+      [-28, 5],
+      [-19, 61],
+      [17, 51],
+      [10, 80],
+      [37, 94],
+      [26, 30],
+      [-65, 44],
+      [2, 27],
+      [41, -5],
+      [66, 34],
+      [86, -21],
+      [15, -42],
+      [53, 6],
+      [-17, 29],
+      [48, 53],
+      [67, 132],
+      [40, 46],
+      [33, -15],
+      [27, 49],
+      [38, -15],
+      [29, 22],
+      [76, -35],
+      [-26, -41],
+      [41, -9],
+      [110, -60],
+      [42, 39],
+      [37, 53],
+      [48, -32],
+      [38, 11],
+      [29, 37],
+      [4, 45],
+      [-53, 36],
+      [42, 93],
+      [56, 80],
+      [-103, 75],
+      [-16, 83],
+      [75, 96],
+      [63, -49],
+      [29, 31],
+      [76, 106],
+      [36, -1],
+      [56, 88],
+      [22, -9],
+      [27, 45],
+      [-1, 28],
+      [39, 78],
+      [-29, 26],
+      [29, 61],
+      [28, 16],
+      [33, 67],
+      [63, 76],
+      [44, 30],
+      [58, 62],
+      [89, 24],
+      [26, 30],
+      [28, 61],
+      [110, 135],
+      [69, 62],
+      [14, 24],
+      [-21, 30],
+      [17, 51],
+      [43, 65],
+      [21, 72],
+      [-21, 12],
+      [-21, 76],
+      [-67, 51],
+      [-28, 43],
+      [-21, 0],
+      [-66, -37],
+      [-57, -19],
+      [-45, 67],
+      [-25, -27],
+      [-40, 27],
+      [-47, 53],
+      [44, 78],
+      [38, 34],
+      [76, -58],
+      [38, 44],
+      [62, 91],
+      [60, 74],
+      [43, 30],
+      [-55, 18],
+      [38, 83],
+      [70, 87],
+      [33, 55],
+      [52, 20],
+      [24, -31],
+      [34, -6],
+      [21, 52],
+      [70, 43],
+      [9, 19],
+      [-9, 86],
+      [-12, 18],
+      [58, 85],
+      [36, 43],
+      [40, 28],
+      [8, 32],
+      [-42, 35],
+      [16, 22],
+      [-92, 117],
+      [20, 21],
+      [-37, 55],
+      [41, 54],
+      [-23, 23],
+      [43, 106],
+      [57, 78],
+      [38, -17],
+      [22, -44],
+      [39, -4],
+      [27, -32],
+      [60, -1],
+      [73, -21],
+      [8, 32],
+      [57, 59],
+      [0, 36],
+      [36, 46],
+      [0, 56],
+      [-60, 20],
+      [-25, 20],
+      [13, 41],
+      [-52, 54],
+      [39, 5],
+      [33, 41],
+      [3, 29],
+      [-57, 66],
+      [-39, -21],
+      [-27, 25],
+      [13, 26],
+      [-34, 36],
+      [-1, 39],
+      [20, 28],
+      [-20, 34],
+      [37, 63],
+      [-48, 51],
+      [30, 105],
+      [97, 103],
+      [32, 55],
+      [-110, 170],
+      [-39, 49],
+      [-18, -3],
+      [-35, 66],
+      [-45, -17],
+      [9, -28],
+      [-62, -35],
+      [-77, -18],
+      [-33, -21],
+      [40, -87],
+      [13, 2],
+      [37, -73],
+      [-7, -11],
+      [67, -119],
+      [-60, -39],
+      [-62, 123],
+      [-31, -14],
+      [-53, 94],
+      [-46, 8],
+      [10, 43],
+      [-35, 22],
+      [-39, 83],
+      [-43, 14],
+      [-13, 48],
+      [-42, 79],
+      [-31, -24],
+      [-38, 76],
+      [-52, 16],
+      [-45, -13],
+      [-29, 47],
+      [71, 60],
+      [13, 24],
+      [-43, 40],
+      [-72, 91],
+      [-336, 402]
+    ],
+    [
+      [12533, 22533],
+      [431, 558]
+    ],
+    [
+      [12964, 23091],
+      [429, -494],
+      [56, -83],
+      [57, -23],
+      [31, -42],
+      [36, -1],
+      [34, 35],
+      [61, -15],
+      [56, -33],
+      [26, -47],
+      [-76, -93],
+      [36, -33],
+      [-43, -52],
+      [56, -60],
+      [20, -38],
+      [58, -59],
+      [67, -79],
+      [176, -179],
+      [-49, -67],
+      [-15, -3],
+      [-146, -135],
+      [74, -94],
+      [121, -24],
+      [17, 43],
+      [75, 60],
+      [12, 52],
+      [68, -84],
+      [51, 23],
+      [5, -23],
+      [65, -28],
+      [24, 12],
+      [47, -59],
+      [-15, -14],
+      [-63, -124],
+      [91, -94],
+      [39, -20],
+      [-8, -27],
+      [-76, -45],
+      [10, -35],
+      [-58, -54],
+      [1, -50],
+      [28, -49],
+      [17, 19],
+      [57, -65],
+      [28, 56],
+      [45, -29],
+      [58, 96],
+      [24, 67],
+      [54, 14],
+      [29, 49],
+      [16, 49],
+      [52, 83],
+      [41, 51],
+      [38, 25],
+      [-1, 22],
+      [36, 29],
+      [28, 56],
+      [-25, 61],
+      [-60, 38],
+      [31, 14],
+      [-10, 34],
+      [-61, -22],
+      [4, 85],
+      [35, 46],
+      [61, 30],
+      [43, 34],
+      [1, 25],
+      [46, 27],
+      [18, 46],
+      [-30, 31],
+      [110, 12]
+    ],
+    [
+      [15128, 22096],
+      [34, 40],
+      [-69, 64],
+      [-50, 80],
+      [-328, 482],
+      [-27, 42],
+      [46, 74],
+      [-12, 151],
+      [-24, 85],
+      [13, 40],
+      [-12, 50],
+      [4, 39],
+      [-19, 40],
+      [28, 19],
+      [-23, 47],
+      [45, 28],
+      [-14, 40],
+      [37, 48],
+      [-37, 44],
+      [-120, 84],
+      [-145, 43]
+    ],
+    [
+      [14455, 23636],
+      [-3, 7]
+    ],
+    [
+      [21310, 35539],
+      [35, 14],
+      [27, 88],
+      [-38, 41],
+      [6, 22],
+      [114, 76],
+      [14, 30],
+      [68, -12],
+      [49, -19],
+      [47, 10],
+      [78, -23],
+      [-4, 62],
+      [18, 112],
+      [44, 119],
+      [126, -46],
+      [85, -55],
+      [-11, -74],
+      [17, -29],
+      [-6, -41],
+      [111, 6],
+      [79, -26],
+      [119, 91],
+      [81, 92],
+      [31, 51],
+      [43, 40],
+      [48, 20],
+      [-20, 58],
+      [52, 56],
+      [72, -25],
+      [53, -6],
+      [164, -71],
+      [104, 1],
+      [39, 69],
+      [66, 64],
+      [66, 2],
+      [29, -21],
+      [-72, -19],
+      [-69, -89],
+      [-29, -18],
+      [-75, -84],
+      [4, -41],
+      [117, -52],
+      [14, -106],
+      [26, -17],
+      [-2, -56],
+      [69, -30],
+      [10, -21],
+      [-34, -61],
+      [-15, -57],
+      [-29, 56],
+      [-4, 59],
+      [-58, -35],
+      [-53, -83],
+      [29, -35],
+      [-65, 0],
+      [-1, 35],
+      [-29, 8],
+      [-62, -16],
+      [-18, 7],
+      [-73, -19],
+      [-34, -44],
+      [-22, 1],
+      [-83, -49],
+      [-57, 27],
+      [-37, 0],
+      [-68, 54],
+      [-29, -55]
+    ],
+    [
+      [19858, 33455],
+      [60, 113],
+      [49, 53],
+      [26, 12],
+      [6, 41],
+      [-65, 49],
+      [-40, -27],
+      [-28, 54],
+      [-51, 48],
+      [-12, -15],
+      [-72, 52],
+      [-54, 8],
+      [-37, 39],
+      [-48, -34],
+      [-57, -1],
+      [11, 55],
+      [46, 92],
+      [43, 54],
+      [10, 50],
+      [45, 74],
+      [25, 19],
+      [81, -61],
+      [80, -35],
+      [50, -63],
+      [57, -17],
+      [17, -20],
+      [80, 11],
+      [49, -87],
+      [79, -89],
+      [68, -6],
+      [51, 20],
+      [89, 22],
+      [54, 51],
+      [24, 70],
+      [62, 29],
+      [25, 30],
+      [33, -5],
+      [-17, 56],
+      [54, 38],
+      [78, 34],
+      [-31, 108],
+      [23, 6]
+    ],
+    [
+      [18998, 32847],
+      [13, 19],
+      [55, -14],
+      [107, 58],
+      [117, 6],
+      [0, 64],
+      [47, 36],
+      [115, 51],
+      [75, 62]
+    ],
+    [
+      [2811, 10684],
+      [67, 137],
+      [28, -18],
+      [22, 48],
+      [118, -111],
+      [-36, -44],
+      [-64, 35],
+      [-32, 31],
+      [-30, -51],
+      [5, -57],
+      [-18, -18],
+      [-60, 48]
+    ],
+    [
+      [3805, 10695],
+      [-118, -262]
+    ],
+    [
+      [3687, 10433],
+      [-340, 164],
+      [-46, 0],
+      [-139, 100],
+      [23, 99],
+      [-45, 0],
+      [-36, 31],
+      [-33, -12],
+      [-80, 66],
+      [-97, 38],
+      [-26, 76],
+      [69, 34],
+      [-24, 47],
+      [77, 45],
+      [104, -87],
+      [55, 8],
+      [70, -4],
+      [34, -99],
+      [28, -17],
+      [68, 6],
+      [456, -233]
+    ],
+    [
+      [3514, 10049],
+      [296, -156],
+      [19, -17],
+      [61, -15],
+      [-7, -42],
+      [27, -36],
+      [-11, -47],
+      [13, -62],
+      [24, -8],
+      [22, -55],
+      [-18, -44],
+      [-75, -62],
+      [-39, 4],
+      [-13, -29],
+      [-48, -47],
+      [6, -28],
+      [-9, -88],
+      [63, -63],
+      [93, -216],
+      [158, -156],
+      [-18, -61],
+      [36, -13],
+      [50, -66],
+      [44, 17],
+      [65, 42],
+      [39, 16],
+      [38, 44],
+      [45, 14],
+      [-9, 36],
+      [42, 28],
+      [43, 53],
+      [33, 73],
+      [54, 12],
+      [-1, -48],
+      [-31, -46],
+      [13, -67],
+      [95, -31],
+      [59, 36],
+      [44, -5],
+      [-55, -99],
+      [50, -30],
+      [-10, -49],
+      [22, -71],
+      [-50, -100],
+      [-51, -79],
+      [-56, -117],
+      [-51, -87],
+      [-69, -42],
+      [-23, -28],
+      [-148, -128],
+      [-124, -35],
+      [-57, -24],
+      [-120, -67],
+      [-33, -41],
+      [-57, -39],
+      [-81, -12],
+      [-62, 35],
+      [-54, -10],
+      [-30, -46],
+      [-34, -7],
+      [-78, -55],
+      [-12, -35],
+      [-49, -20],
+      [-18, -59],
+      [-78, -45],
+      [-42, -10],
+      [-57, -66],
+      [-15, -48],
+      [-38, -30],
+      [-13, -38],
+      [-38, 0],
+      [-53, -44],
+      [-35, 4],
+      [-29, -64],
+      [35, -242],
+      [-46, -50],
+      [-91, -72],
+      [-57, -53],
+      [-76, -13],
+      [-140, -77],
+      [-55, -24],
+      [-70, -43],
+      [-50, -105],
+      [-29, 19],
+      [-78, -59],
+      [-5, -28],
+      [-79, -24],
+      [-53, 2],
+      [-44, 31],
+      [-120, 21],
+      [-87, -3],
+      [-19, 23],
+      [-44, 5],
+      [-60, -10],
+      [-36, 91],
+      [-53, 75],
+      [-226, -63],
+      [-35, 23],
+      [-155, 25],
+      [-111, 3],
+      [-52, -88],
+      [-20, -108],
+      [-24, -36],
+      [-35, 29],
+      [-71, -68],
+      [-22, -66],
+      [-51, 79],
+      [-58, 27],
+      [-45, 7],
+      [-19, 26],
+      [-71, 24],
+      [-55, -15],
+      [-60, 15],
+      [-71, -21],
+      [-45, 28],
+      [-77, 29],
+      [-93, -41],
+      [-22, 17],
+      [-34, -43],
+      [-13, -79],
+      [-38, -38],
+      [-21, -39],
+      [-61, -41],
+      [-46, 9],
+      [-57, -48],
+      [-54, 22],
+      [-50, -45],
+      [-20, 77],
+      [54, 52],
+      [75, 41],
+      [10, 44],
+      [-23, 49],
+      [-7, 53],
+      [36, 79],
+      [28, 80],
+      [56, 85],
+      [45, 120],
+      [49, 91],
+      [11, 99],
+      [14, 40],
+      [46, -8],
+      [21, -49],
+      [21, 22],
+      [32, 133],
+      [46, 63],
+      [6, 38],
+      [-21, 20],
+      [-15, 51],
+      [-113, 48],
+      [-12, 38],
+      [-146, 69],
+      [-109, 58],
+      [26, 51],
+      [46, 20],
+      [46, 38],
+      [-44, 88],
+      [32, 94],
+      [40, 76],
+      [59, 45],
+      [113, -12],
+      [69, -29],
+      [11, 44],
+      [-10, 33],
+      [-36, 55],
+      [36, 25],
+      [63, -14],
+      [53, -36],
+      [41, 58],
+      [34, 10],
+      [12, 52],
+      [60, 45],
+      [8, 51],
+      [25, -14],
+      [18, 32],
+      [47, -3],
+      [74, 28],
+      [109, 108],
+      [113, -106],
+      [53, -39],
+      [18, 41],
+      [28, 18],
+      [35, 81],
+      [49, 68],
+      [61, 69],
+      [39, 16],
+      [52, -81],
+      [31, -13],
+      [56, 22],
+      [77, 64],
+      [49, 16],
+      [71, -7],
+      [28, -15],
+      [112, -123],
+      [32, -29],
+      [72, 72],
+      [25, -25],
+      [160, 164],
+      [50, 66],
+      [-44, 56],
+      [21, 51],
+      [-3, 34],
+      [-43, 63],
+      [-16, 44],
+      [24, 29],
+      [-60, 22],
+      [-73, 93],
+      [48, 41],
+      [-66, 46],
+      [-21, 38],
+      [-50, 41],
+      [24, 87],
+      [-33, 39],
+      [26, 43],
+      [58, 48],
+      [36, 44],
+      [22, 53],
+      [44, -2],
+      [57, 62],
+      [12, 41],
+      [-39, 77],
+      [26, 80],
+      [-11, 33],
+      [6, 93],
+      [72, 91]
+    ],
+    [
+      [2264, 10162],
+      [2, -26],
+      [53, -68],
+      [51, -47],
+      [13, -33],
+      [81, -71],
+      [0, -14],
+      [132, -76],
+      [36, -37],
+      [83, -30],
+      [98, -50],
+      [87, -17],
+      [312, -159],
+      [147, 278],
+      [155, 237]
+    ],
+    [
+      [14455, 23636],
+      [-106, 33],
+      [-402, 114],
+      [-983, -692]
+    ],
+    [
+      [12533, 22533],
+      [-404, -322]
+    ],
+    [
+      [10985, 21054],
+      [-329, 363],
+      [-63, 13],
+      [-142, 18],
+      [-71, -60],
+      [-8, 56],
+      [37, 41],
+      [32, 100],
+      [19, 98],
+      [-35, 21],
+      [28, 208],
+      [-179, 145],
+      [-76, 71],
+      [-57, 14],
+      [14, 114],
+      [-3, 85],
+      [44, 203],
+      [38, 107],
+      [-24, 13],
+      [-23, 42],
+      [9, 46],
+      [-70, -26],
+      [-349, -157],
+      [-278, -133],
+      [-183, -131],
+      [-11, -15],
+      [-90, -54],
+      [-23, -93],
+      [-246, -355],
+      [-166, 5],
+      [-110, -44],
+      [-105, -65],
+      [-68, 15],
+      [-82, -3],
+      [-165, -76],
+      [-59, -32],
+      [-140, -98],
+      [-48, -18],
+      [-42, 2],
+      [-47, -29],
+      [-60, -66],
+      [-98, -36],
+      [-121, -158],
+      [-70, -51],
+      [-119, -36],
+      [-133, -49],
+      [-297, -118],
+      [-152, 11],
+      [-56, 15],
+      [-15, 61],
+      [-71, 9]
+    ],
+    [
+      [6722, 21027],
+      [38, 494],
+      [20, 299],
+      [-88, 214],
+      [-218, 341],
+      [-77, 83],
+      [-42, 144],
+      [85, 42],
+      [99, 68],
+      [94, 95],
+      [90, 104],
+      [26, 66],
+      [41, 46],
+      [15, 38],
+      [42, 42],
+      [28, 56],
+      [65, 95],
+      [98, 114],
+      [57, 47],
+      [111, 111],
+      [110, -171],
+      [74, 37],
+      [47, 36],
+      [65, 34],
+      [69, 22],
+      [33, -5],
+      [112, 31],
+      [35, 3],
+      [156, 70],
+      [119, 44],
+      [59, 8],
+      [81, 43],
+      [44, 9],
+      [95, 60],
+      [102, 81],
+      [87, 56],
+      [92, 15],
+      [63, -29],
+      [78, -7],
+      [45, 17],
+      [55, 3],
+      [127, 96],
+      [80, 37],
+      [90, 94],
+      [76, 140],
+      [30, 100],
+      [69, 156],
+      [76, 104],
+      [126, 90],
+      [85, 53],
+      [119, 53],
+      [36, 10],
+      [104, -9],
+      [28, 4],
+      [66, 72],
+      [57, 72],
+      [40, 14],
+      [36, 62],
+      [102, 64],
+      [6, 17],
+      [-102, 32],
+      [-45, 91],
+      [-48, 18],
+      [-44, -7],
+      [-19, 18],
+      [-27, 57],
+      [-53, 25],
+      [-37, 64],
+      [25, 46],
+      [92, 15],
+      [21, 24],
+      [21, 58],
+      [41, 14],
+      [-18, 35],
+      [30, 46],
+      [0, 26],
+      [-46, 16],
+      [-3, 43],
+      [57, 12],
+      [77, 67],
+      [12, 36],
+      [39, 20],
+      [56, 4],
+      [58, 56],
+      [45, -45],
+      [73, 1],
+      [51, 11],
+      [62, 34],
+      [18, 33],
+      [23, 79],
+      [1, 34],
+      [-69, 98],
+      [-20, 83],
+      [8, 28],
+      [77, 4],
+      [37, 36],
+      [30, 52],
+      [37, 21],
+      [31, 37],
+      [124, 76],
+      [64, 14],
+      [72, -1],
+      [50, 51],
+      [47, 10],
+      [149, 70],
+      [29, 26],
+      [49, -1],
+      [84, 43],
+      [11, 73],
+      [25, 21],
+      [66, -6],
+      [22, 12],
+      [36, 65],
+      [28, 29],
+      [41, 17],
+      [29, 37],
+      [33, 66],
+      [29, -6],
+      [123, 89],
+      [8, 66],
+      [126, 51],
+      [24, 56],
+      [51, 52],
+      [40, 56],
+      [1, 22]
+    ],
+    [
+      [11532, 12395],
+      [-1855, 553],
+      [-2170, 41],
+      [-1246, -825],
+      [-1205, -246],
+      [-1096, -881],
+      [-155, -342]
+    ],
+    [
+      [3687, 10433],
+      [-173, -384]
+    ],
+    [
+      [2264, 10162],
+      [-7, 33],
+      [23, 44],
+      [61, 58],
+      [50, 109],
+      [24, 26],
+      [-9, 30],
+      [37, 54],
+      [-26, 16],
+      [7, 55],
+      [40, 42],
+      [115, 47],
+      [36, 76],
+      [75, 72],
+      [-3, 57],
+      [24, 92],
+      [29, 54],
+      [113, 125],
+      [-3, 35],
+      [-51, 84],
+      [-65, 61],
+      [-7, 78],
+      [-27, 21],
+      [-18, -41],
+      [-99, -6],
+      [-41, 54],
+      [-159, 174],
+      [-37, 24],
+      [-252, 207],
+      [9, -63],
+      [-60, 54],
+      [-37, -4],
+      [-76, 102],
+      [-16, 62],
+      [-25, 34],
+      [-151, 47],
+      [-249, 70],
+      [-50, 31],
+      [90, 186],
+      [44, 57],
+      [9, 78],
+      [147, 176],
+      [10, 63],
+      [-26, 73],
+      [-78, 58],
+      [-55, 64],
+      [33, 84],
+      [-45, 46],
+      [4, 74],
+      [-14, 39],
+      [57, 42],
+      [110, 121],
+      [155, 158],
+      [28, 68],
+      [66, 205],
+      [81, 196],
+      [34, 109],
+      [120, 165],
+      [218, 270],
+      [76, -66],
+      [131, 184],
+      [-66, 52],
+      [108, 121],
+      [-247, 252],
+      [-368, 383],
+      [58, 69],
+      [92, 83],
+      [28, 71],
+      [35, 51],
+      [47, 35],
+      [127, 121],
+      [30, 10],
+      [83, 83],
+      [78, 39],
+      [54, 76],
+      [44, 44],
+      [54, 1],
+      [84, 50],
+      [89, 64],
+      [9, 88],
+      [54, 26],
+      [30, 46],
+      [74, 36],
+      [76, 65],
+      [9, 31],
+      [45, 71],
+      [-14, 18],
+      [61, 35],
+      [46, -14],
+      [73, 91],
+      [-2, 24],
+      [61, 25],
+      [-11, 17],
+      [32, 40],
+      [64, 23],
+      [50, 40],
+      [41, 65],
+      [28, 62],
+      [72, 65],
+      [56, 68],
+      [143, 126],
+      [189, 183],
+      [21, 78],
+      [5, 51],
+      [136, 104],
+      [48, 76],
+      [29, 1],
+      [88, 32],
+      [42, 30],
+      [31, 0],
+      [251, 172],
+      [121, 75],
+      [27, -6],
+      [188, 79],
+      [108, 87],
+      [37, 10],
+      [23, 68],
+      [45, 30],
+      [39, 70],
+      [14, -15],
+      [64, 1],
+      [8, 15],
+      [69, 18],
+      [-6, 103],
+      [-13, 27],
+      [63, 14],
+      [52, -15],
+      [69, 15],
+      [70, 81],
+      [34, 76],
+      [-24, 68],
+      [-25, 23],
+      [93, 103],
+      [326, 96],
+      [66, 25],
+      [76, 48],
+      [104, 99],
+      [4, 100],
+      [141, 134],
+      [44, 18],
+      [-7, 90],
+      [88, 207],
+      [-225, 187],
+      [-91, 73],
+      [-47, 222],
+      [128, 73],
+      [-18, 166],
+      [49, 178],
+      [193, 325],
+      [34, 53]
+    ]
+  ],
+  "transform": {
+    "scale": [0.00007502352717409281, 0.00004913555434863117],
+    "translate": [5.9559112999999995, 45.8181309]
+  },
+  "objects": {
+    "switzerland": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-GL",
+            "NAME_0": "Switzerland",
+            "ID_1": 9,
+            "NAME_1": "Glarus",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Glaris|Glarona|Glaruna"
+          }
+        },
+        {
+          "arcs": [[4, 5, 6, 7, 8, 9]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-LU",
+            "NAME_0": "Switzerland",
+            "ID_1": 12,
+            "NAME_1": "Lucerne",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Lucerna|Luzern"
+          }
+        },
+        {
+          "arcs": [
+            [[10, 11]],
+            [[12]],
+            [[13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -9], [24], [25]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-BE",
+            "NAME_0": "Switzerland",
+            "ID_1": 6,
+            "NAME_1": "Bern",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Berna|Berne"
+          }
+        },
+        {
+          "arcs": [[26, 27, -10, -24, 28, 29, 30]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-AG",
+            "NAME_0": "Switzerland",
+            "ID_1": 1,
+            "NAME_1": "Aargau",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Argovia|Arg¢via|Argovie"
+          }
+        },
+        {
+          "arcs": [[31, 32, 33, 34, 35, 36, 37, -30, 38, 39]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-BL",
+            "NAME_0": "Switzerland",
+            "ID_1": 4,
+            "NAME_1": "Basel-Landschaft",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Bâle-Campagne|Basel-Country|Baselland|Basel-Land|Basilea campagna|Basilea Campaña|Basilea-Champagna"
+          }
+        },
+        {
+          "arcs": [[40, 41, -5, -28]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-ZG",
+            "NAME_0": "Switzerland",
+            "ID_1": 26,
+            "NAME_1": "Zug",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Zoug|Zugo"
+          }
+        },
+        {
+          "arcs": [[[-16, 42, 43]], [[44, -14, -8]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-OW",
+            "NAME_0": "Switzerland",
+            "ID_1": 15,
+            "NAME_1": "Obwalden",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Obvaldo|Obwald|Unterwalden-le-Haut|Obwaldo|Sursilvania"
+          }
+        },
+        {
+          "arcs": [[45, 46, -43, -15, -45, -7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-NW",
+            "NAME_0": "Switzerland",
+            "ID_1": 14,
+            "NAME_1": "Nidwalden",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Nidvaldo|Nidwald|Unterwalden-le-Bas|Nidwaldo"
+          }
+        },
+        {
+          "arcs": [[47, 48, 49, 50, -1]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-GR",
+            "NAME_0": "Switzerland",
+            "ID_1": 10,
+            "NAME_1": "Graubünden",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Graubünden|Grigioni|Grischun|Grisons"
+          }
+        },
+        {
+          "arcs": [[51, 52, 53, 54, 55, 56]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-AR",
+            "NAME_0": "Switzerland",
+            "ID_1": 2,
+            "NAME_1": "Appenzell Ausserrhoden",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Appenzell Ausser-Rhoden|Appenzell Outer Rhodes|Appenzell dadens|Appenzell Rhodes Extérieures|Appenzello Esterno"
+          }
+        },
+        {
+          "arcs": [[[57, -52]], [[58, -54]], [[-56, 59]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-AI",
+            "NAME_0": "Switzerland",
+            "ID_1": 3,
+            "NAME_1": "Appenzell Innerrhoden",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Appenzell Inner-Rhoden|Appenzell Inner Rhodes|Appenzell dador|Appenzell Rhodes Intérieures|Appenzello Interno"
+          }
+        },
+        {
+          "arcs": [[-18, 60, 61, 62, 63]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-VS",
+            "NAME_0": "Switzerland",
+            "ID_1": 23,
+            "NAME_1": "Valais",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Vallais|Vallese|Wallis"
+          }
+        },
+        {
+          "arcs": [[[64]], [[65, 66, -48, -4, 67, 68], [-57, -60, -55, -59, -53, -58], [69]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-SG",
+            "NAME_0": "Switzerland",
+            "ID_1": 16,
+            "NAME_1": "Sankt Gallen",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Saint-Gall|San Gallo|Son Gagl"
+          }
+        },
+        {
+          "arcs": [[70, -62, 71, -50], [72]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-TI",
+            "NAME_0": "Switzerland",
+            "ID_1": 21,
+            "NAME_1": "Ticino",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Tesino|Tessin"
+          }
+        },
+        {
+          "arcs": [[-3, 73, -46, -6, -42, 74, -68]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-SZ",
+            "NAME_0": "Switzerland",
+            "ID_1": 18,
+            "NAME_1": "Schwyz",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-75, -41, -27, 75, 76, 77, 78, 79, 80, -69]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-ZH",
+            "NAME_0": "Switzerland",
+            "ID_1": 25,
+            "NAME_1": "Zürich",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Turitg|Zurigo|Zürih|Zurique"
+          }
+        },
+        {
+          "arcs": [[[-70]], [[-81, 81, 82, 83, 84, 85, -66], [-65]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-TG",
+            "NAME_0": "Switzerland",
+            "ID_1": 20,
+            "NAME_1": "Thurgau",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Thurgovie|Turgovia|Turg¢via"
+          }
+        },
+        {
+          "arcs": [[-72, -61, -17, -44, -47, -74, -2, -51]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-UR",
+            "NAME_0": "Switzerland",
+            "ID_1": 22,
+            "NAME_1": "Uri",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[[-79, 86, -83, 87]], [[88, -77]], [[-85, 89]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-SH",
+            "NAME_0": "Switzerland",
+            "ID_1": 17,
+            "NAME_1": "Schaffhausen",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Schaffhouse|Schaffusa|Sciaffusa"
+          }
+        },
+        {
+          "arcs": [[90, 91, -40, 92, -22]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-JU",
+            "NAME_0": "Switzerland",
+            "ID_1": 11,
+            "NAME_1": "Jura",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Giura"
+          }
+        },
+        {
+          "arcs": [[[-25]], [[93]], [[94]], [[95, 96]], [[97, 98, 99, -11, 100, 101, -20], [-13]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-FR",
+            "NAME_0": "Switzerland",
+            "ID_1": 7,
+            "NAME_1": "Fribourg",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Freiburg|Friburg|Friburgo"
+          }
+        },
+        {
+          "arcs": [[-37, 102]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-BS",
+            "NAME_0": "Switzerland",
+            "ID_1": 5,
+            "NAME_1": "Basel-Stadt",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Bâle-Ville|Basel-City|Basel-Town|Basilea-Citad|Basilea Ciudad|Basilea città|Basiléia cidade"
+          }
+        },
+        {
+          "arcs": [[[-26]], [[103, -35]], [[104, -33]], [[-93, -39, -29, -23]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-SO",
+            "NAME_0": "Switzerland",
+            "ID_1": 19,
+            "NAME_1": "Solothurn",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Soletta|Soleure|Soleuro|Soloturn"
+          }
+        },
+        {
+          "arcs": [[[105]], [[106, 107]], [[108, 109]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-GE",
+            "NAME_0": "Switzerland",
+            "ID_1": 8,
+            "NAME_1": "Genève",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Cenevre|Genebra|Geneve|Geneva|Genevra|Genf|Ginebra|Ginevra"
+          }
+        },
+        {
+          "arcs": [[-91, -21, -102, 110, -99, 111, -97, 112, 113]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-NE",
+            "NAME_0": "Switzerland",
+            "ID_1": 13,
+            "NAME_1": "Neuchâtel",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Neuenburg"
+          }
+        },
+        {
+          "arcs": [
+            [[-111, -101, -12, -100]],
+            [[-19, -64, 114, -108, 115, -110, 116, -113, -96, -112, -98], [-94], [-95], [-106]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 223,
+            "ISO": "CH-VD",
+            "NAME_0": "Switzerland",
+            "ID_1": 24,
+            "NAME_1": "Vaud",
+            "TYPE_1": "Canton|Kanton|Chantun",
+            "ENGTYPE_1": "Canton",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Vad|Waadt|Waadtland"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/thailand-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/thailand-topo.json
new file mode 100644
index 0000000..07a6cb4
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/thailand-topo.json
@@ -0,0 +1,9644 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [23307, 29710],
+      [33, -19],
+      [74, -73],
+      [8, -55],
+      [-16, -81],
+      [77, -175],
+      [15, -71],
+      [60, -33]
+    ],
+    [
+      [23558, 29203],
+      [-51, -7],
+      [-50, -69],
+      [-23, -66],
+      [-51, -82],
+      [21, -107],
+      [-3, -39],
+      [-38, -49],
+      [-61, -28],
+      [-14, -64],
+      [32, -34],
+      [-59, -115],
+      [2, -161],
+      [-15, -39],
+      [-77, -45],
+      [-74, -26],
+      [-14, -24],
+      [5, -75],
+      [-47, -108],
+      [11, -97],
+      [92, -33],
+      [19, -35],
+      [-14, -75],
+      [-56, -18],
+      [-68, -61],
+      [16, -35],
+      [-27, -43],
+      [-54, 8],
+      [9, 64],
+      [-71, 15],
+      [-19, 35],
+      [-43, -14],
+      [-42, 57],
+      [-42, -31],
+      [-57, 92],
+      [-55, 15],
+      [-140, 77],
+      [-50, -8],
+      [-39, 36],
+      [-196, 46],
+      [-55, -30],
+      [28, -36],
+      [57, -3],
+      [23, -43],
+      [-62, -15],
+      [-3, -48],
+      [-45, -36],
+      [-53, -11],
+      [4, -113],
+      [-96, -30],
+      [-22, -38],
+      [-65, 45],
+      [-48, 12]
+    ],
+    [
+      [21878, 27714],
+      [-12, 59],
+      [-77, 17],
+      [-51, -9],
+      [-6, 52],
+      [-39, 33],
+      [-31, 71],
+      [21, 33],
+      [-15, 124],
+      [-54, 25],
+      [31, 132],
+      [-18, 53],
+      [60, 161],
+      [36, 27],
+      [-30, 60],
+      [7, 46],
+      [50, 67],
+      [1, 39],
+      [61, 64],
+      [45, 26],
+      [-8, 73],
+      [52, 19],
+      [33, 67],
+      [-39, 50],
+      [45, 35],
+      [10, 43],
+      [74, 96],
+      [10, 29],
+      [134, 28],
+      [55, 40],
+      [67, 0],
+      [151, -26],
+      [68, -26],
+      [140, -16],
+      [67, 33],
+      [55, -41],
+      [30, -1],
+      [37, 130],
+      [-1, 38],
+      [-57, 18],
+      [-40, -16],
+      [-40, 76],
+      [-36, 33]
+    ],
+    [
+      [22664, 29476],
+      [71, 10],
+      [28, -31],
+      [68, 1],
+      [17, 42],
+      [81, -7],
+      [78, 28],
+      [16, 64],
+      [103, 63],
+      [37, -8],
+      [87, 57],
+      [57, 15]
+    ],
+    [
+      [9537, 25355],
+      [2, -20],
+      [80, -29],
+      [44, -67]
+    ],
+    [
+      [9663, 25239],
+      [-28, -68],
+      [5, -61],
+      [-30, -45],
+      [-2, -87],
+      [-42, -42],
+      [41, -46],
+      [-3, -34],
+      [30, -96],
+      [-8, -77],
+      [-19, -44],
+      [-96, -56],
+      [-55, -4],
+      [-16, 27],
+      [-58, -8],
+      [1, 94],
+      [-16, 77],
+      [-100, 4],
+      [-37, -22],
+      [-157, -27],
+      [-93, 23],
+      [-39, -30],
+      [-63, -13]
+    ],
+    [
+      [8878, 24704],
+      [-65, 21],
+      [-19, 50],
+      [-57, 42],
+      [5, 46],
+      [-37, 47],
+      [43, 63],
+      [-47, 83],
+      [94, 91],
+      [15, 29],
+      [-47, 111],
+      [-2, 94],
+      [-27, 45],
+      [14, 101],
+      [53, 37]
+    ],
+    [
+      [8801, 25564],
+      [56, 20],
+      [64, -7],
+      [73, -29],
+      [59, 29],
+      [65, 14],
+      [35, -40],
+      [-6, -33],
+      [44, -42],
+      [42, 14],
+      [37, -61],
+      [79, 36],
+      [29, -19],
+      [-5, -59],
+      [72, 1],
+      [92, -33]
+    ],
+    [
+      [10897, 23208],
+      [-19, -134],
+      [-5, -101],
+      [-42, -31],
+      [138, -99],
+      [-26, -34],
+      [-60, -33],
+      [-167, -252],
+      [18, -8]
+    ],
+    [
+      [10734, 22516],
+      [-54, -1],
+      [-167, 55],
+      [-239, 5],
+      [6, -64],
+      [-41, -110],
+      [-136, 39],
+      [-19, -50],
+      [-207, 46],
+      [24, 66],
+      [-84, 41],
+      [-28, -23],
+      [3, -44],
+      [-24, -34],
+      [-81, 10],
+      [-9, -124],
+      [17, -67],
+      [-28, -10],
+      [-93, 17],
+      [-80, -8],
+      [-24, -50],
+      [-8, -87],
+      [25, -149]
+    ],
+    [
+      [9487, 21974],
+      [-137, -23]
+    ],
+    [
+      [9350, 21951],
+      [-10, 49],
+      [44, 81],
+      [-6, 61],
+      [-62, -16],
+      [-54, 104],
+      [-7, 69],
+      [-64, 59],
+      [-52, 8],
+      [9, 50],
+      [-34, 110],
+      [3, 92]
+    ],
+    [
+      [9117, 22618],
+      [-9, 197],
+      [-28, 51]
+    ],
+    [
+      [9080, 22866],
+      [33, -51],
+      [249, -9],
+      [159, -11],
+      [21, -22],
+      [93, 32],
+      [46, 35],
+      [-9, 34],
+      [95, 68],
+      [72, 279],
+      [-11, -1]
+    ],
+    [
+      [9828, 23220],
+      [32, 13],
+      [91, -26],
+      [16, 29],
+      [48, -18],
+      [1, -30],
+      [52, -19],
+      [144, -4],
+      [53, -33],
+      [135, 0],
+      [134, 38],
+      [363, 38]
+    ],
+    [
+      [20898, 34567],
+      [-49, -13],
+      [-61, 14],
+      [-23, -24],
+      [-104, -44],
+      [24, -66],
+      [63, -55],
+      [-50, -82],
+      [-86, -62],
+      [-68, -67],
+      [-73, 30],
+      [5, 34],
+      [-64, 21],
+      [-42, -44],
+      [-61, -17],
+      [-28, -71],
+      [48, -38],
+      [-11, -21],
+      [55, -87]
+    ],
+    [
+      [20373, 33975],
+      [-49, -6],
+      [-5, -56],
+      [-39, -22],
+      [-79, -14],
+      [-58, 24],
+      [-23, 61],
+      [-52, 38],
+      [25, 44],
+      [-20, 67],
+      [-56, -23],
+      [14, 85],
+      [-91, -16],
+      [-59, 22],
+      [-62, -37],
+      [-122, 2],
+      [50, -35],
+      [-53, -43],
+      [-87, 108],
+      [53, 123],
+      [-91, -27],
+      [-93, 25],
+      [-16, 41],
+      [-106, 46],
+      [-79, 43],
+      [-95, 32],
+      [-14, 53],
+      [-29, 33],
+      [-16, 61],
+      [-56, 10],
+      [-86, 66],
+      [-137, 35],
+      [-66, -40],
+      [1, -51],
+      [30, -120],
+      [-35, -33],
+      [-54, 49],
+      [-37, -46],
+      [-43, 16],
+      [-30, -32],
+      [-107, 22]
+    ],
+    [
+      [18501, 34480],
+      [-35, 89],
+      [-64, 27],
+      [-33, -11],
+      [-55, 57],
+      [-93, 23],
+      [-34, 90],
+      [40, 26],
+      [-66, 25],
+      [19, 127],
+      [51, 4],
+      [62, -21],
+      [62, 43],
+      [-25, 50],
+      [-63, 36],
+      [-6, 29],
+      [-134, 84],
+      [-45, -8],
+      [0, 79],
+      [81, 37],
+      [18, 87]
+    ],
+    [
+      [18181, 35353],
+      [-4, 31],
+      [-63, 60],
+      [-67, -3],
+      [-32, 51],
+      [5, 40],
+      [113, 96],
+      [38, 59],
+      [52, 26],
+      [107, 0],
+      [165, 40],
+      [32, 0],
+      [136, -65],
+      [189, 3],
+      [92, -20],
+      [75, -40],
+      [84, 2],
+      [48, -13],
+      [100, -56],
+      [147, -105],
+      [146, 2],
+      [192, -8],
+      [72, -31],
+      [58, -116],
+      [83, 1],
+      [138, 109],
+      [65, 27],
+      [93, -7],
+      [62, -70],
+      [204, -258],
+      [3, -27],
+      [82, -135],
+      [35, -95],
+      [43, -57],
+      [128, -127],
+      [75, -67],
+      [21, -33]
+    ],
+    [
+      [17610, 27486],
+      [5, -41],
+      [-43, -103],
+      [-29, -15],
+      [80, -62],
+      [54, -4],
+      [86, -100],
+      [80, -14],
+      [100, -98],
+      [111, -31],
+      [52, 17],
+      [47, -54],
+      [44, 52],
+      [32, 1],
+      [44, 54],
+      [74, 18],
+      [54, -12],
+      [55, -39],
+      [1, -29],
+      [104, -1],
+      [27, 39],
+      [52, 22],
+      [67, 0],
+      [4, -48],
+      [94, -24],
+      [-15, -57],
+      [-67, -3],
+      [-43, -21],
+      [-5, -65],
+      [-68, -31],
+      [-27, -88],
+      [-32, -38],
+      [26, -48],
+      [-22, -49],
+      [24, -28],
+      [-14, -81],
+      [22, -111],
+      [17, -20],
+      [-31, -59],
+      [64, -45],
+      [-25, -39],
+      [-46, -1],
+      [-29, -69],
+      [44, -62],
+      [-36, -72],
+      [33, -43],
+      [-29, -64],
+      [-87, -69],
+      [-43, -96],
+      [-42, -10],
+      [-62, -79],
+      [-39, 12],
+      [-65, -68],
+      [-40, 12],
+      [-17, -83],
+      [-71, -41],
+      [27, -55],
+      [-13, -92],
+      [-49, -142],
+      [-67, -47],
+      [14, -66],
+      [-74, -82],
+      [-10, -50],
+      [33, -33],
+      [6, -49],
+      [-27, -54],
+      [22, -25],
+      [-13, -51],
+      [55, -49],
+      [-3, -38],
+      [40, -76],
+      [-51, -139],
+      [-26, -36],
+      [-1, -84],
+      [17, -60]
+    ],
+    [
+      [17960, 24270],
+      [-72, -1],
+      [-86, 25],
+      [-41, -13],
+      [-26, -44],
+      [-35, 31],
+      [-37, -17],
+      [2, -39],
+      [-156, -36],
+      [-71, -27],
+      [2, -28],
+      [-100, -118],
+      [-80, -48],
+      [-133, -17],
+      [-46, -36],
+      [-30, -51]
+    ],
+    [
+      [17051, 23851],
+      [-92, -35],
+      [-54, 27],
+      [-31, -14],
+      [-5, -50],
+      [-33, -2],
+      [-80, 48],
+      [-76, 13],
+      [-29, -32],
+      [-64, 7],
+      [-36, -61],
+      [-94, 1],
+      [-122, -29],
+      [-39, 58],
+      [-88, 38],
+      [-60, -46],
+      [-65, 57],
+      [-63, -10],
+      [-24, -28],
+      [-99, -56],
+      [-87, 20],
+      [-43, -28],
+      [-79, 24],
+      [-27, -28],
+      [-113, 33],
+      [-17, 26]
+    ],
+    [
+      [15531, 23784],
+      [69, 116],
+      [154, -12],
+      [24, 31],
+      [80, 3],
+      [31, 41],
+      [64, 14],
+      [83, 50],
+      [79, 69],
+      [115, 53],
+      [51, 49],
+      [-44, 46],
+      [-69, 24],
+      [-60, -17],
+      [-51, 6],
+      [-51, 35],
+      [-16, 66],
+      [-44, 14],
+      [-16, 35],
+      [1, 69],
+      [21, 75],
+      [37, 46],
+      [53, 9],
+      [17, 32],
+      [16, 94],
+      [-23, 11],
+      [-245, 29],
+      [-82, -4],
+      [-36, 49],
+      [29, 40],
+      [6, 79],
+      [-65, 160],
+      [6, 89],
+      [-50, 152],
+      [58, 60],
+      [9, 41],
+      [-39, 48],
+      [-49, 18],
+      [-37, 78],
+      [22, 64],
+      [39, 39],
+      [49, -58],
+      [75, -32],
+      [100, 34],
+      [23, 31],
+      [34, 98],
+      [-4, 51],
+      [-32, 28],
+      [9, 41],
+      [54, 35],
+      [8, 60],
+      [-18, 49],
+      [45, 6],
+      [85, -59],
+      [280, -8],
+      [53, 58],
+      [-7, 45],
+      [22, 38],
+      [55, 30],
+      [55, -6],
+      [18, 42],
+      [-4, 63],
+      [62, 9],
+      [10, 36],
+      [-5, 112],
+      [141, 166],
+      [22, -1],
+      [57, 66],
+      [79, 10],
+      [63, 43],
+      [134, -14],
+      [82, 23],
+      [26, 41],
+      [-40, 30],
+      [0, 66],
+      [-21, 84],
+      [40, 62],
+      [-45, 47],
+      [12, 44],
+      [107, 35],
+      [-8, 73],
+      [-28, 27],
+      [-74, 18],
+      [-12, 42],
+      [78, 60],
+      [60, 3],
+      [44, 35],
+      [-48, 60],
+      [-9, 42],
+      [-37, 32],
+      [-126, -14],
+      [-52, 74],
+      [-55, 46],
+      [-64, 16],
+      [-78, -27],
+      [-130, -3],
+      [-15, 35],
+      [-86, 99],
+      [3, 80],
+      [-36, 95],
+      [25, 62]
+    ],
+    [
+      [16594, 27945],
+      [76, -36],
+      [79, 6],
+      [109, 41],
+      [42, 121],
+      [-16, 118],
+      [10, 92],
+      [50, 50],
+      [112, 25]
+    ],
+    [
+      [17056, 28362],
+      [32, -80],
+      [113, -44],
+      [30, -51],
+      [50, -10],
+      [17, -72],
+      [-15, -51],
+      [-97, -53],
+      [117, -106],
+      [3, -36],
+      [47, -43],
+      [75, -20],
+      [-21, -54],
+      [18, -35],
+      [47, -19],
+      [74, -57],
+      [-60, -85],
+      [59, -39],
+      [65, -21]
+    ],
+    [
+      [11579, 23274],
+      [31, -21],
+      [40, -102],
+      [-23, -28],
+      [0, -97],
+      [-25, -28],
+      [64, -34],
+      [54, 14],
+      [54, 42],
+      [62, -4],
+      [42, 18],
+      [44, -48],
+      [87, 35],
+      [56, -20],
+      [35, 8],
+      [106, -42],
+      [12, 24],
+      [66, -12],
+      [41, 22],
+      [2, -67],
+      [88, -28],
+      [50, -1],
+      [31, -28],
+      [96, -10],
+      [58, -54],
+      [110, -43],
+      [70, -5],
+      [137, -142],
+      [57, 2],
+      [102, 28],
+      [24, -18],
+      [62, 4],
+      [37, 67],
+      [37, 15],
+      [8, 52],
+      [43, 23],
+      [48, -5],
+      [58, 48],
+      [55, -46],
+      [24, -41],
+      [46, -33],
+      [-3, -46],
+      [26, -39],
+      [-18, -52],
+      [57, -70],
+      [54, 26],
+      [33, -28],
+      [9, -165],
+      [69, -17],
+      [35, -78],
+      [53, -55],
+      [58, 12]
+    ],
+    [
+      [13941, 22207],
+      [1, -30],
+      [-43, -76],
+      [-112, -27],
+      [45, -42],
+      [49, -6],
+      [28, -74],
+      [42, -48],
+      [77, -42],
+      [-14, -37],
+      [20, -37],
+      [77, -71],
+      [42, -85],
+      [-3, -41],
+      [27, -30],
+      [2, -59]
+    ],
+    [
+      [14179, 21502],
+      [-65, -23],
+      [-61, -86],
+      [-62, 4],
+      [-66, -22],
+      [-46, -169],
+      [-76, 54],
+      [-54, 0],
+      [-34, -36],
+      [-199, -138],
+      [-41, 11],
+      [-121, -20]
+    ],
+    [
+      [13354, 21077],
+      [-38, 73],
+      [-55, 68],
+      [-19, 59],
+      [-45, 58],
+      [-32, 8],
+      [-54, 47],
+      [-121, 28],
+      [-51, 52],
+      [-58, 29],
+      [-24, 100],
+      [-29, 26],
+      [1, 56],
+      [-22, 32],
+      [-40, -5],
+      [-93, 35],
+      [-91, -31],
+      [-43, -3],
+      [-29, 42],
+      [-54, 23],
+      [0, 61],
+      [-40, 14],
+      [-51, -17],
+      [-87, 20],
+      [-49, 60],
+      [-85, 49],
+      [-153, 167],
+      [-77, 35],
+      [-177, 42],
+      [-70, 37],
+      [-76, -14],
+      [-38, -65],
+      [-55, -3],
+      [-53, -43],
+      [-119, -3],
+      [-5, -21],
+      [53, -75],
+      [-32, -6],
+      [-45, -45],
+      [-37, -8],
+      [-15, -48],
+      [-66, -45],
+      [-69, 1],
+      [-20, 20]
+    ],
+    [
+      [11091, 21887],
+      [-114, -22],
+      [-162, 17],
+      [-117, 28]
+    ],
+    [
+      [10698, 21910],
+      [9, 42],
+      [62, -6],
+      [1, 87],
+      [23, 69],
+      [45, 36],
+      [26, -18],
+      [37, 46],
+      [-18, 59],
+      [42, 2],
+      [63, 73],
+      [49, 36],
+      [9, 30],
+      [-45, 25],
+      [11, 35],
+      [-224, 69],
+      [-54, 21]
+    ],
+    [
+      [10897, 23208],
+      [1, 40]
+    ],
+    [
+      [10898, 23248],
+      [221, 26],
+      [95, 2],
+      [82, 19],
+      [177, -7],
+      [106, -14]
+    ],
+    [
+      [9153, 26456],
+      [-76, -53],
+      [-57, -18],
+      [-17, -53],
+      [-54, -1],
+      [-50, -22],
+      [-82, -8],
+      [-1, -84],
+      [55, -17],
+      [30, -81],
+      [54, -77],
+      [-55, -50],
+      [-177, 27]
+    ],
+    [
+      [8723, 26019],
+      [-125, -58],
+      [-42, -48],
+      [-61, 13],
+      [-45, 70],
+      [-114, 31],
+      [-27, -11],
+      [-79, 22],
+      [16, -66],
+      [-11, -52],
+      [-101, -25],
+      [-116, -16],
+      [-67, 21],
+      [-49, -10],
+      [-104, 22],
+      [-49, -7],
+      [-33, 41],
+      [-57, 35],
+      [-79, -11],
+      [-103, 20],
+      [-88, 50],
+      [-131, 3],
+      [-19, 40]
+    ],
+    [
+      [7239, 26083],
+      [42, 69],
+      [46, 14],
+      [102, 52],
+      [18, 47],
+      [-34, 37],
+      [50, 46],
+      [40, 81],
+      [-86, 101],
+      [-81, 74],
+      [36, 30],
+      [-42, 41],
+      [-69, 93],
+      [-7, 153],
+      [45, 37],
+      [115, 37],
+      [44, 38],
+      [248, -35],
+      [64, -38],
+      [205, 37],
+      [24, -16],
+      [141, 1],
+      [39, -25],
+      [44, 7],
+      [82, -17],
+      [29, 15],
+      [12, 74],
+      [64, 50],
+      [-16, 47],
+      [-58, 38],
+      [25, 35],
+      [11, 78],
+      [46, 27]
+    ],
+    [
+      [8418, 27311],
+      [73, -19],
+      [131, -101],
+      [98, -27],
+      [115, -119],
+      [72, -94],
+      [35, -140],
+      [28, -18],
+      [21, -97],
+      [40, -65],
+      [133, -74],
+      [-11, -101]
+    ],
+    [
+      [13444, 30794],
+      [114, -89],
+      [55, 32],
+      [92, 29],
+      [59, -10],
+      [61, -33],
+      [55, 3],
+      [55, -42],
+      [58, 15],
+      [73, 0],
+      [13, -44],
+      [63, -14],
+      [40, -84],
+      [7, -47],
+      [92, -26],
+      [68, -135],
+      [84, -19],
+      [41, -26],
+      [33, 15],
+      [84, -10],
+      [105, 25],
+      [43, -32],
+      [29, 30],
+      [65, 5],
+      [88, -58],
+      [39, -41],
+      [73, -38],
+      [71, -17],
+      [83, 17],
+      [43, -26],
+      [52, 18],
+      [125, -25],
+      [40, 62],
+      [32, -114],
+      [136, -91],
+      [-33, -41],
+      [-13, -98],
+      [-65, -103],
+      [-35, -106],
+      [8, -51],
+      [-33, -21],
+      [-51, -76],
+      [-134, -163],
+      [-40, -64],
+      [-104, -97],
+      [-43, -56],
+      [68, -108],
+      [26, 10],
+      [116, -38],
+      [7, -48],
+      [104, -55],
+      [-46, -51],
+      [-8, -74],
+      [-38, -111],
+      [-64, -97],
+      [-46, -16],
+      [21, -175]
+    ],
+    [
+      [15212, 28385],
+      [-46, 12],
+      [-13, -40],
+      [-93, -34],
+      [-63, 0],
+      [-2, -29],
+      [-42, -53],
+      [-38, -21],
+      [-81, 35],
+      [-8, -40],
+      [-41, -9],
+      [-57, 14],
+      [-39, -54],
+      [-73, -147],
+      [-47, -73],
+      [-50, -41],
+      [-33, 6],
+      [-51, -41],
+      [-32, -104],
+      [-72, -102],
+      [15, -45],
+      [-33, -82],
+      [1, -73],
+      [-71, -48],
+      [-41, 24],
+      [-117, -33],
+      [-69, 4],
+      [-24, -39],
+      [-43, -21],
+      [-54, -93],
+      [-52, -33],
+      [-113, 68],
+      [-59, 8],
+      [-47, 37],
+      [-83, -119],
+      [-57, -15],
+      [-121, 14],
+      [-63, 29],
+      [-44, -10],
+      [-85, 28],
+      [-50, -15],
+      [-44, -82],
+      [-24, -12],
+      [-69, 47],
+      [-26, -17],
+      [-148, 7],
+      [-67, -13],
+      [-78, -38],
+      [-56, 31],
+      [-125, 5],
+      [-67, -149],
+      [-66, 12],
+      [-15, 27]
+    ],
+    [
+      [12336, 27068],
+      [-15, 26],
+      [-14, 100],
+      [6, 159],
+      [24, 142],
+      [-34, 125],
+      [-12, 140]
+    ],
+    [
+      [12291, 27760],
+      [41, 175],
+      [24, 58],
+      [44, 204],
+      [-69, 1],
+      [-134, 54],
+      [-34, 81],
+      [-35, 19],
+      [27, 41],
+      [14, 66],
+      [-8, 74],
+      [11, 66],
+      [59, 20],
+      [73, 89],
+      [-16, 50],
+      [16, 77],
+      [-52, -7],
+      [-63, 85],
+      [20, 24],
+      [-63, 109],
+      [23, 130],
+      [25, 50],
+      [9, 131],
+      [38, 36],
+      [28, 54],
+      [57, 11],
+      [-31, 89],
+      [12, 58],
+      [-73, 34],
+      [70, 45],
+      [-12, 57],
+      [36, 73],
+      [-8, 33],
+      [18, 82],
+      [74, 51],
+      [-23, 60],
+      [54, 43],
+      [38, 51],
+      [46, 16],
+      [4, 40],
+      [74, 76],
+      [-30, 64],
+      [6, 39],
+      [164, 91],
+      [-62, 42],
+      [8, 135],
+      [76, 23],
+      [-51, 107],
+      [25, 59],
+      [63, -39],
+      [102, -46],
+      [15, 40],
+      [-19, 83],
+      [-47, 50],
+      [-3, 53],
+      [102, -17],
+      [18, -42],
+      [34, -3],
+      [41, -59],
+      [48, -17],
+      [61, 21],
+      [124, -13],
+      [98, -90],
+      [66, 47]
+    ],
+    [
+      [15271, 18809],
+      [26, 21]
+    ],
+    [
+      [15297, 18830],
+      [-26, -21]
+    ],
+    [
+      [15301, 18832],
+      [27, 33]
+    ],
+    [
+      [15328, 18865],
+      [-27, -33]
+    ],
+    [
+      [15342, 18884],
+      [-8, -19]
+    ],
+    [
+      [15334, 18865],
+      [8, 19]
+    ],
+    [
+      [15342, 18884],
+      [-37, -41],
+      [-62, -30],
+      [-8, -86],
+      [-53, -27],
+      [-47, -52],
+      [-60, 34],
+      [-39, 75],
+      [20, 60],
+      [-32, 96],
+      [-34, 36],
+      [-58, -50],
+      [-15, -48],
+      [67, -1],
+      [13, -88],
+      [55, -66],
+      [-2, -41],
+      [-51, -14],
+      [-108, 62],
+      [-113, 124],
+      [-76, 68],
+      [-77, 40],
+      [-87, 101],
+      [-66, 57],
+      [-96, 50],
+      [-113, 106],
+      [-105, 49],
+      [-67, 4],
+      [-26, 76],
+      [30, 30],
+      [-39, 41],
+      [-27, -56],
+      [7, -119],
+      [-146, 108],
+      [39, 20],
+      [-11, 49],
+      [-102, 30],
+      [-21, 40],
+      [-6, 59],
+      [-112, 83],
+      [-124, 62],
+      [0, 44],
+      [38, 24],
+      [2, 35]
+    ],
+    [
+      [13593, 19828],
+      [24, 56],
+      [37, 40],
+      [39, 165],
+      [-8, 77],
+      [-30, 100],
+      [-83, 112],
+      [7, 26],
+      [-43, 38],
+      [-71, -31],
+      [-50, 49],
+      [0, 69],
+      [61, 83],
+      [-16, 64],
+      [-111, -8],
+      [-12, 51],
+      [-62, 117],
+      [17, 43],
+      [-40, 27],
+      [32, 45],
+      [4, 47]
+    ],
+    [
+      [13288, 20998],
+      [42, 24],
+      [24, 55]
+    ],
+    [
+      [14179, 21502],
+      [38, -48],
+      [28, -66],
+      [74, -24],
+      [-17, -46],
+      [-3, -85],
+      [87, 11],
+      [46, 42],
+      [112, 24],
+      [28, 35],
+      [5, 74],
+      [31, 61],
+      [76, -78],
+      [100, 15],
+      [48, -122],
+      [53, 15],
+      [72, -1],
+      [32, -20],
+      [97, 10],
+      [26, 81],
+      [50, -7],
+      [75, 81],
+      [55, -48]
+    ],
+    [
+      [15292, 21406],
+      [0, -79],
+      [32, -10],
+      [20, -85],
+      [53, -61],
+      [19, -59],
+      [15, -103],
+      [58, -56],
+      [-5, -38],
+      [56, -64],
+      [15, -40],
+      [65, -13],
+      [105, -189],
+      [30, -21],
+      [63, 0],
+      [-119, -82],
+      [46, -47],
+      [-47, -36],
+      [70, -139],
+      [-1, -88],
+      [-23, -41],
+      [44, -29],
+      [-1, -47],
+      [54, -36],
+      [-13, -41],
+      [24, -35],
+      [-10, -45],
+      [-46, -44],
+      [-25, 3]
+    ],
+    [
+      [15771, 19881],
+      [-60, 12],
+      [-50, -56],
+      [-96, 5],
+      [-59, -72],
+      [-118, -90],
+      [9, -86],
+      [39, -92],
+      [-40, -16],
+      [38, -46],
+      [70, -55],
+      [-65, -17],
+      [-65, 45],
+      [-15, 36],
+      [-91, -22],
+      [-22, -54],
+      [-102, -37],
+      [31, -42],
+      [6, -87],
+      [35, -21],
+      [39, -57],
+      [-14, -49],
+      [-52, -33],
+      [28, -34],
+      [15, -61],
+      [100, -41],
+      [10, -27]
+    ],
+    [
+      [6279, 37290],
+      [-79, -41],
+      [1, -70],
+      [33, -46],
+      [-24, -58],
+      [24, -92],
+      [-2, -60],
+      [-102, -59],
+      [-4, -36],
+      [27, -94],
+      [34, -55],
+      [-1, -76],
+      [-69, -54],
+      [1, -24],
+      [-63, -111],
+      [18, -46],
+      [47, -36],
+      [-51, -19],
+      [-11, -86],
+      [54, -5],
+      [37, -25],
+      [-25, -35],
+      [4, -46],
+      [-56, -5],
+      [-20, -94],
+      [-29, -28]
+    ],
+    [
+      [6023, 35989],
+      [-66, 16],
+      [-101, 94],
+      [-78, 29],
+      [-54, 36],
+      [50, 62],
+      [-9, 98],
+      [-78, 18],
+      [-55, 56],
+      [5, 57],
+      [-106, 28],
+      [-61, -24],
+      [-38, -51],
+      [-32, -10],
+      [-98, 2],
+      [-89, -33],
+      [-113, 17],
+      [-31, -38],
+      [1, -45],
+      [-65, -28],
+      [-48, -45],
+      [5, -42],
+      [-49, -49],
+      [-29, -60],
+      [-62, -79],
+      [-29, -3],
+      [-99, -65],
+      [-42, 10],
+      [-37, -42],
+      [-86, -51],
+      [-43, -51],
+      [-44, -25],
+      [-74, -16],
+      [-36, -39],
+      [-49, -6],
+      [-61, 37],
+      [-51, -11],
+      [-52, -70],
+      [22, -47],
+      [-31, -22],
+      [-27, -71],
+      [66, -80],
+      [-92, -29],
+      [2, -86],
+      [89, -20],
+      [115, -68],
+      [107, -40],
+      [1, -71],
+      [25, -10],
+      [-4, -117],
+      [28, -49],
+      [35, -12],
+      [18, -116],
+      [-35, -79],
+      [48, -22],
+      [-108, -190],
+      [37, -27],
+      [53, 19],
+      [80, -63],
+      [24, -115],
+      [45, -98],
+      [45, -165],
+      [-57, -17],
+      [7, -84],
+      [-103, -47],
+      [-59, -4],
+      [-42, 99],
+      [-32, -6],
+      [-46, -76],
+      [-65, 9],
+      [-23, -24],
+      [-80, 0],
+      [-68, -15],
+      [16, -39]
+    ],
+    [
+      [4110, 33884],
+      [-6, -28],
+      [-73, -50],
+      [-83, -34],
+      [-47, 116],
+      [-42, 18],
+      [-34, 49],
+      [-75, 21],
+      [-39, -39],
+      [-47, 41],
+      [-67, 36],
+      [-36, -30],
+      [-43, 8],
+      [-7, -51],
+      [49, -24],
+      [-20, -77],
+      [41, -69],
+      [24, -92],
+      [-6, -84],
+      [28, -93],
+      [0, -52],
+      [93, -15],
+      [51, -52],
+      [19, -49],
+      [-84, -29],
+      [-49, -35],
+      [-45, -56],
+      [-10, -112],
+      [-16, -50],
+      [36, -74],
+      [44, -10],
+      [41, -45],
+      [-10, -96],
+      [-55, -96],
+      [32, -28],
+      [38, -91],
+      [-8, -76],
+      [-86, -53],
+      [-114, 30],
+      [2, 46],
+      [-110, 36],
+      [-59, -28],
+      [-52, 13],
+      [-64, -6],
+      [-97, -30],
+      [-19, -21],
+      [-72, 24],
+      [-50, 40],
+      [31, 48],
+      [5, 58],
+      [-48, 47],
+      [7, 26],
+      [-86, 88],
+      [92, 25],
+      [17, 35],
+      [-23, 46],
+      [28, 70],
+      [-5, 48],
+      [-35, 45],
+      [-6, 63],
+      [-53, 137],
+      [-75, 10],
+      [-50, -17],
+      [-19, -41],
+      [-69, -37],
+      [-146, -23],
+      [-34, 27],
+      [-92, -16],
+      [-34, 72],
+      [-43, 28],
+      [-66, 168]
+    ],
+    [
+      [2279, 33494],
+      [110, 68],
+      [55, 57],
+      [17, 52],
+      [-8, 127],
+      [-21, 7],
+      [17, 79],
+      [-42, 52],
+      [-86, 3],
+      [-51, 33],
+      [-43, 54],
+      [-18, 72],
+      [-44, 44],
+      [-72, 22],
+      [-15, 36],
+      [-43, 11],
+      [-4, 51],
+      [40, 63],
+      [203, 75],
+      [103, -45],
+      [79, -13],
+      [18, 51],
+      [89, 54],
+      [184, 28],
+      [2, 30],
+      [-41, 59],
+      [16, 28],
+      [61, 14],
+      [49, 35],
+      [50, 73],
+      [-68, 31],
+      [-59, -27],
+      [-46, 56],
+      [-53, -24],
+      [-75, 73],
+      [-73, 12],
+      [-29, 130],
+      [58, 70],
+      [-28, 37],
+      [11, 45],
+      [-70, 21],
+      [-36, 109],
+      [12, 38],
+      [168, 15],
+      [-71, 49],
+      [11, 78],
+      [-16, 49],
+      [-72, 40],
+      [-31, 61],
+      [-71, 66],
+      [-119, 56],
+      [28, 50],
+      [70, 32],
+      [50, 124],
+      [97, 28],
+      [50, 37],
+      [14, 60],
+      [99, -28],
+      [74, 57],
+      [16, 34],
+      [-27, 44],
+      [-46, 14],
+      [-8, 48],
+      [-81, 5],
+      [-2, 39],
+      [-58, 7],
+      [-60, 36],
+      [-82, -12],
+      [-36, 38],
+      [20, 60],
+      [-36, 99],
+      [5, 85],
+      [16, 39],
+      [40, 23],
+      [0, 48],
+      [-87, 5],
+      [-38, 113],
+      [29, 121],
+      [40, 64],
+      [69, 66],
+      [99, 33],
+      [1, 49],
+      [43, 29],
+      [-20, 80],
+      [16, 51],
+      [48, 59],
+      [13, 71],
+      [45, 20],
+      [13, 38],
+      [88, 109],
+      [38, 19],
+      [-31, 90],
+      [38, 56],
+      [98, -22],
+      [121, 9],
+      [45, -32],
+      [19, -90],
+      [24, -51],
+      [52, -23],
+      [4, -51],
+      [36, -15],
+      [53, -72],
+      [60, -23],
+      [52, 54],
+      [124, -13],
+      [114, -29],
+      [38, -20],
+      [54, 4],
+      [28, 30],
+      [74, 29],
+      [68, 10],
+      [95, 31],
+      [48, 54],
+      [-23, 124],
+      [-25, 83],
+      [-81, 65],
+      [-73, 30],
+      [-40, 47],
+      [90, 64],
+      [-30, 66],
+      [11, 41],
+      [36, 31],
+      [-29, 32],
+      [20, 49],
+      [-36, 67],
+      [11, 71],
+      [-37, 25],
+      [-22, 51],
+      [49, 109],
+      [-14, 54],
+      [43, 72],
+      [-18, 66],
+      [-44, 44],
+      [-31, -2],
+      [-9, 107],
+      [-70, 33],
+      [-21, 123],
+      [9, 23],
+      [-106, 58],
+      [-106, 83],
+      [-3, 81]
+    ],
+    [
+      [3432, 39216],
+      [45, 33],
+      [110, 34],
+      [60, -61],
+      [89, -56],
+      [16, 85],
+      [63, 31],
+      [62, -11],
+      [60, 50],
+      [96, 51],
+      [118, 29],
+      [146, 9],
+      [88, -20],
+      [56, 64],
+      [53, 18],
+      [42, 37],
+      [9, 41],
+      [48, -8],
+      [201, -147],
+      [36, -8],
+      [19, 59],
+      [66, -45],
+      [29, -44],
+      [58, -17],
+      [20, 44],
+      [9, 88],
+      [36, -3],
+      [41, 67],
+      [52, 137],
+      [-31, 26],
+      [16, 171],
+      [40, 14],
+      [6, 52],
+      [-24, 55],
+      [0, 58],
+      [45, 25],
+      [-24, 56],
+      [2, 49],
+      [38, 71],
+      [34, 18],
+      [5, 67],
+      [192, 35],
+      [-15, 33],
+      [106, 42],
+      [59, -16],
+      [95, 10],
+      [44, -32],
+      [109, -31],
+      [164, -103],
+      [98, 9],
+      [115, 38],
+      [171, 11],
+      [95, 47],
+      [83, 25],
+      [-12, 36],
+      [55, 45]
+    ],
+    [
+      [6626, 40484],
+      [13, -19],
+      [115, -27],
+      [48, -44],
+      [-35, -36],
+      [-38, 7],
+      [-167, -64],
+      [19, -78],
+      [-48, -36],
+      [-51, -16],
+      [31, -59],
+      [-28, -13],
+      [-36, -64],
+      [-107, -60],
+      [-20, -86],
+      [17, -39],
+      [-66, -20],
+      [-48, -68],
+      [23, -72],
+      [69, -58],
+      [-13, -25],
+      [34, -47],
+      [-80, 0],
+      [-49, -54],
+      [-36, -74],
+      [-19, -115],
+      [-47, -44],
+      [-94, -11],
+      [-60, -78],
+      [-90, -46],
+      [-18, -44],
+      [26, -103],
+      [53, -20],
+      [42, -112],
+      [58, -27],
+      [24, -39],
+      [-73, -63],
+      [-20, -52],
+      [37, -26],
+      [32, -100],
+      [-24, -68],
+      [43, -64],
+      [26, -124],
+      [-47, -30],
+      [51, -134],
+      [27, -94],
+      [-16, -37],
+      [-81, -84],
+      [-14, -135],
+      [32, -18],
+      [21, -78],
+      [-6, -52],
+      [64, -79],
+      [67, -42],
+      [16, -36],
+      [40, -7],
+      [-3, -46],
+      [59, -134]
+    ],
+    [
+      [9350, 39342],
+      [-66, -71],
+      [-38, -7],
+      [-42, -52],
+      [-55, -4],
+      [-48, -42],
+      [-26, -67],
+      [-81, -15],
+      [-86, 15],
+      [-60, -63],
+      [-15, -47],
+      [-71, 1],
+      [-24, -26],
+      [-76, -36],
+      [-65, -65],
+      [-36, -17],
+      [-198, -17],
+      [-50, -32],
+      [-6, -109],
+      [16, -47],
+      [-26, -89],
+      [-160, -66],
+      [-67, 11],
+      [-117, -11],
+      [-84, -61],
+      [-22, 73],
+      [-48, -16],
+      [-39, 59],
+      [-181, -6],
+      [-119, 12],
+      [-37, -23],
+      [-180, -56],
+      [-103, -10],
+      [33, -99]
+    ],
+    [
+      [7173, 38359],
+      [-57, 25],
+      [-47, -18],
+      [-128, 17],
+      [-67, 41],
+      [-80, 21],
+      [-19, -28],
+      [38, -41],
+      [-9, -119],
+      [26, -23],
+      [-3, -77],
+      [-88, -150],
+      [-17, -43],
+      [-15, -178],
+      [-15, -42],
+      [43, -17],
+      [30, -51],
+      [-24, -45],
+      [-45, -38],
+      [4, -62],
+      [-56, -30],
+      [-53, 8],
+      [-58, -21],
+      [-30, -58],
+      [-113, -101],
+      [-47, -28],
+      [-64, -11]
+    ],
+    [
+      [6626, 40484],
+      [77, 2],
+      [9, 70],
+      [29, 9],
+      [30, 93],
+      [-88, 67],
+      [-26, 1],
+      [-20, 91],
+      [-39, 80],
+      [7, 88],
+      [-33, 44],
+      [-122, 62],
+      [3, 81],
+      [45, 5],
+      [73, -25],
+      [61, -65],
+      [62, -16],
+      [60, 3],
+      [66, -35],
+      [104, -35],
+      [72, 27],
+      [126, -68],
+      [66, 25],
+      [37, -7],
+      [20, 44],
+      [45, 27],
+      [136, -42],
+      [106, 4],
+      [85, 101],
+      [4, 80],
+      [49, 43],
+      [51, 77],
+      [96, 16],
+      [52, -10],
+      [117, 53],
+      [80, -81],
+      [5, -38],
+      [58, -13],
+      [71, -47],
+      [79, -35],
+      [43, -38],
+      [73, -129],
+      [9, -57],
+      [-14, -112],
+      [61, -48],
+      [130, -16],
+      [60, 10],
+      [20, 42],
+      [-43, 92],
+      [85, 40],
+      [70, 10],
+      [31, 36],
+      [0, 82],
+      [53, 28],
+      [18, 56],
+      [66, 39],
+      [88, -10],
+      [87, 4],
+      [78, -58],
+      [11, -61],
+      [39, -6],
+      [38, -120],
+      [74, -96],
+      [12, -51],
+      [113, -67],
+      [22, -29],
+      [-3, -67],
+      [93, -52],
+      [83, -97],
+      [52, -2],
+      [66, 83],
+      [79, -19],
+      [-21, -90],
+      [-6, -107],
+      [-25, -56],
+      [-28, -129],
+      [-105, -237],
+      [8, -81],
+      [-44, -83],
+      [-71, -59],
+      [-66, -25],
+      [-54, -55],
+      [14, -21],
+      [-33, -83],
+      [-71, -63],
+      [-27, -65],
+      [6, -51]
+    ],
+    [
+      [11004, 19424],
+      [35, -78],
+      [-26, -18],
+      [-34, 70],
+      [25, 26]
+    ],
+    [
+      [10491, 19788],
+      [64, 1],
+      [9, -59],
+      [-83, -70],
+      [-9, 100],
+      [19, 28]
+    ],
+    [
+      [10513, 20368],
+      [-27, -67],
+      [-41, 41],
+      [11, 35],
+      [57, -9]
+    ],
+    [
+      [10176, 20426],
+      [20, -48],
+      [-33, -24],
+      [-25, 71],
+      [38, 1]
+    ],
+    [
+      [10571, 21074],
+      [31, -85],
+      [-36, -13],
+      [-24, 70],
+      [29, 28]
+    ],
+    [
+      [13288, 20998],
+      [-82, 7],
+      [-72, 26],
+      [-123, -76],
+      [-66, 7],
+      [8, -56],
+      [-48, -96],
+      [-46, -33],
+      [-93, 5],
+      [-34, -40],
+      [-56, -6],
+      [-32, -34],
+      [-69, -36],
+      [-81, 52],
+      [-47, -36],
+      [-57, 11],
+      [-71, -12],
+      [-56, 27],
+      [-61, 73],
+      [-49, 25],
+      [-100, -50],
+      [-7, -40],
+      [-56, 18],
+      [-26, 46],
+      [-41, 2],
+      [-41, -27],
+      [-127, 63],
+      [-32, -1],
+      [-34, -40],
+      [15, -52],
+      [-26, -23],
+      [-212, 0],
+      [-69, -60],
+      [-32, -51],
+      [70, -23],
+      [9, -51],
+      [29, -26],
+      [-35, -33],
+      [-7, -119],
+      [-72, -150],
+      [-27, -103],
+      [-78, -47],
+      [-54, -60],
+      [4, -40],
+      [-34, -105],
+      [-58, -118],
+      [23, -46],
+      [-2, -52]
+    ],
+    [
+      [11133, 19618],
+      [-74, -33],
+      [-17, -119],
+      [-54, -1],
+      [-80, 53],
+      [32, 74],
+      [-82, 44],
+      [-50, -28],
+      [-75, -1],
+      [-12, 63],
+      [-72, 108],
+      [-1, 55],
+      [19, 49],
+      [93, 53],
+      [25, -23],
+      [74, 45],
+      [33, 82],
+      [-7, 40],
+      [-54, 120],
+      [-116, 128],
+      [85, 81],
+      [-3, 80],
+      [64, 13],
+      [43, 35],
+      [32, 69],
+      [-41, 96],
+      [-72, -6],
+      [-58, 96],
+      [21, 92],
+      [62, 47],
+      [5, 49],
+      [74, 73],
+      [33, 95],
+      [-26, 148],
+      [-23, 50],
+      [-58, 65],
+      [41, 40],
+      [29, 72],
+      [116, 27],
+      [43, 28],
+      [24, 97],
+      [-51, 114],
+      [16, 88],
+      [20, 11]
+    ],
+    [
+      [6565, 14970],
+      [-15, -35],
+      [4, -117],
+      [52, -80],
+      [31, -25],
+      [-71, -58],
+      [-45, 35],
+      [-43, -45],
+      [-80, -1],
+      [-39, -164],
+      [-49, -102],
+      [-1, -38],
+      [-55, -49],
+      [-27, -73],
+      [-78, -73],
+      [0, -33],
+      [-64, 7],
+      [-42, -21],
+      [-54, -70],
+      [-30, -81],
+      [-41, -36],
+      [0, -71],
+      [-32, -54],
+      [4, -56],
+      [-43, -19],
+      [-55, 14],
+      [-19, -44],
+      [20, -47],
+      [49, -25],
+      [-97, -41],
+      [10, -59],
+      [102, -101],
+      [60, -49],
+      [-11, -39],
+      [16, -84],
+      [-28, -34],
+      [-56, 28],
+      [-61, -54],
+      [-25, 33],
+      [-88, 46],
+      [-98, -28],
+      [-67, -56],
+      [22, -39],
+      [-17, -47],
+      [55, -90],
+      [57, -9],
+      [114, -139],
+      [52, 32],
+      [24, -15],
+      [-104, -64],
+      [-54, 16],
+      [-37, -110],
+      [-33, -59],
+      [-55, -36],
+      [-18, -41],
+      [9, -155],
+      [53, -77],
+      [41, -22],
+      [-81, -82],
+      [-14, -90],
+      [29, -79],
+      [4, -87],
+      [-17, -33],
+      [28, -123],
+      [-9, -29],
+      [-49, -17],
+      [-25, -52],
+      [0, -51],
+      [23, -179],
+      [39, -104]
+    ],
+    [
+      [5536, 11390],
+      [-90, -2],
+      [-52, -25],
+      [-30, 27],
+      [-74, 0],
+      [-19, -36],
+      [55, -51],
+      [11, -40],
+      [-67, -10],
+      [-61, 35],
+      [-63, 78],
+      [-43, -1],
+      [-97, 44],
+      [-71, 4],
+      [-15, 25],
+      [-87, 0],
+      [-72, 36],
+      [-122, -17],
+      [-33, -52],
+      [-31, -15],
+      [-76, -2],
+      [-85, -55],
+      [-28, 26],
+      [-45, -19],
+      [-4, -160],
+      [-84, -75]
+    ],
+    [
+      [4253, 11105],
+      [-51, 75],
+      [-42, 6],
+      [-109, 67],
+      [-57, 1],
+      [16, 85],
+      [-60, 78],
+      [8, 70],
+      [-25, 18],
+      [-13, 94],
+      [42, 31],
+      [120, 125],
+      [31, -5],
+      [87, 97],
+      [2, 74],
+      [90, 66],
+      [13, 44],
+      [79, 45],
+      [100, -37],
+      [29, 31],
+      [19, 84],
+      [45, 44],
+      [60, -2],
+      [63, 38],
+      [63, 73],
+      [-11, 62],
+      [-29, 27],
+      [-140, -7],
+      [58, 118],
+      [-22, 44],
+      [29, 38],
+      [5, 59],
+      [38, 2],
+      [22, 34],
+      [-57, 50],
+      [11, 48],
+      [76, 103],
+      [30, 80],
+      [-31, 28],
+      [23, 58],
+      [102, 115],
+      [9, 50],
+      [-43, 100],
+      [-84, 11],
+      [-23, 49],
+      [5, 67],
+      [-32, 51],
+      [33, 69],
+      [37, 17],
+      [32, 50],
+      [56, 15],
+      [47, 61],
+      [-33, 97],
+      [57, 40],
+      [15, 59],
+      [-59, 19],
+      [16, 71],
+      [-77, 52],
+      [-5, 64],
+      [-86, 8],
+      [-17, 37],
+      [28, 31],
+      [46, 116],
+      [-44, 12],
+      [-32, 61]
+    ],
+    [
+      [4713, 14373],
+      [49, 50],
+      [56, 97],
+      [38, -39],
+      [70, -3],
+      [49, 57],
+      [111, 69],
+      [0, 44],
+      [-37, 140],
+      [75, 130],
+      [80, -25],
+      [33, -28],
+      [61, 13],
+      [40, 49],
+      [27, 111],
+      [79, 46],
+      [68, 9]
+    ],
+    [
+      [5512, 15093],
+      [11, -57],
+      [188, -84],
+      [75, -12],
+      [27, -25],
+      [53, -3],
+      [44, -27],
+      [28, 32],
+      [52, -11],
+      [116, 28],
+      [193, -56],
+      [55, 40],
+      [41, 3],
+      [67, 50],
+      [103, -1]
+    ],
+    [
+      [19290, 31772],
+      [53, 34],
+      [45, 6],
+      [83, -48],
+      [52, -81],
+      [70, -64],
+      [65, -15],
+      [5, -41],
+      [-32, -43],
+      [47, -110],
+      [147, -63],
+      [-4, -47],
+      [24, -25],
+      [73, -22],
+      [14, -36],
+      [50, -15],
+      [92, -49],
+      [69, -69],
+      [38, 76],
+      [47, 32],
+      [33, 71],
+      [50, 0],
+      [76, 58],
+      [134, -57],
+      [16, -43]
+    ],
+    [
+      [20537, 31221],
+      [43, -38],
+      [42, -67],
+      [64, -73],
+      [36, 10],
+      [8, -80],
+      [52, -43],
+      [34, -100],
+      [60, -32],
+      [-17, -62],
+      [14, -63],
+      [-8, -75],
+      [41, -6],
+      [46, -37],
+      [5, -53],
+      [52, -37],
+      [-9, -62],
+      [49, -19],
+      [1, -76],
+      [-35, -54],
+      [35, -54],
+      [-3, -72]
+    ],
+    [
+      [21047, 30128],
+      [-51, 22],
+      [-76, -20],
+      [-72, 42],
+      [-85, -24],
+      [2, -21],
+      [-143, -24],
+      [-94, -35],
+      [-14, -31],
+      [-72, -2],
+      [-5, 113],
+      [-137, 22],
+      [-45, -35],
+      [-91, 30],
+      [-52, -21],
+      [-51, 10],
+      [-84, 40],
+      [-69, 49],
+      [-51, -24],
+      [-62, 20],
+      [-51, -12],
+      [-139, -116],
+      [-90, -45],
+      [-3, -21],
+      [-111, -62],
+      [77, -74],
+      [2, -61],
+      [88, -68],
+      [-4, -120],
+      [-47, -37],
+      [-14, -74],
+      [-91, 2],
+      [-115, -39],
+      [-41, -51],
+      [-62, 2],
+      [-3, 26],
+      [-69, 1],
+      [-57, -16],
+      [-72, 22],
+      [-39, 32],
+      [-63, 12],
+      [-34, -63],
+      [-53, 11]
+    ],
+    [
+      [18804, 29488],
+      [-70, 22],
+      [-33, -46],
+      [-51, -26],
+      [-35, 64],
+      [16, 50],
+      [-99, 47],
+      [-29, 50],
+      [24, 67],
+      [-55, 45],
+      [-80, 5],
+      [-55, 33],
+      [-6, 93],
+      [-26, 51],
+      [-121, 20],
+      [-15, 57],
+      [-33, 13],
+      [-61, -47],
+      [-269, -43],
+      [-31, 41],
+      [-5, 57],
+      [60, 112],
+      [-44, 67],
+      [-33, 76],
+      [5, 34],
+      [49, 66],
+      [31, 79],
+      [-56, 152],
+      [81, 56],
+      [-13, 35],
+      [-117, 8]
+    ],
+    [
+      [17733, 30726],
+      [-4, 45],
+      [22, 43],
+      [-38, 71],
+      [38, 91],
+      [-35, 37],
+      [12, 39],
+      [48, 16],
+      [50, 61],
+      [9, 85],
+      [-39, 77],
+      [5, 48],
+      [-90, 8],
+      [4, -60],
+      [-71, -72],
+      [-30, -1],
+      [-33, 62],
+      [32, 30],
+      [21, 54],
+      [9, 78],
+      [-73, 39]
+    ],
+    [
+      [17570, 31477],
+      [11, 70],
+      [36, 54],
+      [109, -25],
+      [77, 11],
+      [72, -11],
+      [62, 52],
+      [28, -25],
+      [72, 7],
+      [106, -99],
+      [43, -10],
+      [89, 9],
+      [67, -12],
+      [56, -47],
+      [76, -25],
+      [51, -87],
+      [-3, -67],
+      [37, -50],
+      [80, 33],
+      [-17, 28],
+      [37, 64],
+      [44, 23],
+      [41, 77],
+      [24, 14],
+      [-14, 97],
+      [59, 123],
+      [41, 35],
+      [-25, 138],
+      [74, 44],
+      [42, 67],
+      [76, 8],
+      [16, 28],
+      [115, -25],
+      [61, -59],
+      [7, -37],
+      [38, -32],
+      [-13, -67],
+      [45, -9]
+    ],
+    [
+      [7669, 30985],
+      [10, -25],
+      [112, -5],
+      [13, -57],
+      [-14, -29],
+      [29, -75],
+      [-3, -52],
+      [18, -118],
+      [118, -48],
+      [33, -49],
+      [129, 19],
+      [34, -12]
+    ],
+    [
+      [8148, 30534],
+      [64, -163],
+      [1, -41],
+      [-68, -77],
+      [-56, -100],
+      [-3, -101],
+      [-30, -63],
+      [37, -44],
+      [36, -79],
+      [44, 9],
+      [-1, -68],
+      [-66, -70],
+      [39, -40],
+      [50, 6],
+      [-24, -69],
+      [19, -27],
+      [86, -36],
+      [-34, -71],
+      [-33, -21]
+    ],
+    [
+      [8209, 29479],
+      [-33, -29],
+      [49, -69],
+      [-60, -18],
+      [-94, -102],
+      [-64, -49],
+      [-79, -84],
+      [-27, -48],
+      [-61, -12],
+      [-51, 11],
+      [-88, -43],
+      [-69, -56],
+      [2, -103],
+      [-51, -43],
+      [-12, -39],
+      [-54, -25],
+      [-4, -52],
+      [-59, 16],
+      [-53, -22],
+      [11, -43],
+      [-68, -65],
+      [-25, -66],
+      [-56, 43],
+      [-49, 16],
+      [-83, -39],
+      [-74, -19],
+      [-82, 77],
+      [-42, 3],
+      [-34, 34],
+      [-66, -2],
+      [-17, 21],
+      [-68, 4],
+      [-62, 49],
+      [-103, 9],
+      [-67, -17],
+      [-7, -55],
+      [-94, 0],
+      [-68, 49],
+      [-46, -24],
+      [-124, 21],
+      [-35, 23],
+      [-74, -41],
+      [-33, 40],
+      [-34, -57],
+      [-41, 7],
+      [-51, -27],
+      [-164, 104],
+      [-107, 3],
+      [-15, -24],
+      [-77, -12],
+      [-43, -45],
+      [-59, 10],
+      [-100, -82],
+      [-23, 9]
+    ],
+    [
+      [5321, 28616],
+      [-5, 75],
+      [31, 33],
+      [-22, 53],
+      [-43, 49],
+      [43, 53],
+      [-22, 68],
+      [15, 104],
+      [56, 21],
+      [35, 66],
+      [-25, 71],
+      [-45, 12],
+      [-45, 63],
+      [-81, 24],
+      [8, 79],
+      [39, 10],
+      [17, 83],
+      [29, 45],
+      [-101, 126],
+      [-24, 97],
+      [34, 46],
+      [-4, 66],
+      [-49, 143],
+      [-59, 6],
+      [20, 117],
+      [-32, 58],
+      [-52, 14],
+      [-26, 52],
+      [-1, 46],
+      [41, 28],
+      [73, -68],
+      [99, 18],
+      [87, -27],
+      [68, 25],
+      [49, -16],
+      [49, 68],
+      [76, 9],
+      [21, 52],
+      [87, 28],
+      [120, 3],
+      [54, 97],
+      [-20, 64],
+      [-18, 116],
+      [7, 87],
+      [74, 17],
+      [6, 43],
+      [41, 85],
+      [27, 12],
+      [32, 133],
+      [-38, 51],
+      [72, 29],
+      [18, 45],
+      [66, 3],
+      [91, -27],
+      [43, 31],
+      [-39, 83],
+      [25, 65],
+      [132, 36]
+    ],
+    [
+      [6355, 31386],
+      [54, 12],
+      [52, -16],
+      [19, 51],
+      [68, 31],
+      [28, -48],
+      [36, -20],
+      [38, -58],
+      [87, 1],
+      [85, -25],
+      [17, -118],
+      [63, -71],
+      [51, -78],
+      [72, -42],
+      [28, 6],
+      [68, -49],
+      [53, 8],
+      [3, -41],
+      [89, 32],
+      [20, -52],
+      [94, -62],
+      [92, -3],
+      [56, 47],
+      [20, 52],
+      [84, -18],
+      [37, 60]
+    ],
+    [
+      [5003, 26653],
+      [55, -55],
+      [-10, -155],
+      [36, -52],
+      [-27, -41],
+      [80, -63],
+      [66, -19],
+      [52, 11],
+      [34, -24],
+      [162, 30],
+      [45, -63],
+      [70, -36],
+      [70, 35],
+      [39, -35],
+      [89, -5],
+      [88, -59],
+      [70, 9]
+    ],
+    [
+      [5922, 26131],
+      [40, -20],
+      [71, -108],
+      [-29, -35],
+      [30, -33],
+      [-10, -78],
+      [-80, -86],
+      [-29, -13],
+      [35, -76],
+      [48, -57],
+      [50, -7],
+      [52, -73],
+      [47, -34],
+      [91, -17],
+      [105, 43],
+      [47, -25],
+      [80, -211],
+      [63, 18],
+      [88, -2],
+      [88, 39],
+      [29, 39],
+      [-37, 45],
+      [28, 59],
+      [-18, 71],
+      [50, 8],
+      [31, -34],
+      [58, 8],
+      [94, -9],
+      [50, 47],
+      [41, 11],
+      [69, -37],
+      [55, -48],
+      [81, -27],
+      [37, -40],
+      [84, -19],
+      [80, 12],
+      [42, -23],
+      [-64, -89],
+      [62, -29],
+      [-1, -28],
+      [49, -53],
+      [35, -62],
+      [13, -90],
+      [-69, -11],
+      [-20, -55],
+      [73, -43],
+      [-29, -103],
+      [23, -66],
+      [-2, -171],
+      [-10, -34],
+      [25, -77],
+      [-21, -48],
+      [12, -127],
+      [-21, -33],
+      [29, -75],
+      [-16, -73],
+      [13, -90],
+      [-13, -43],
+      [-38, -41],
+      [-3, -41],
+      [-62, -44],
+      [-59, 22],
+      [-22, -46],
+      [-36, 9],
+      [-46, -109],
+      [-8, -49],
+      [14, -88],
+      [73, -18],
+      [104, 24],
+      [17, -38],
+      [44, -25],
+      [32, -43],
+      [67, -6]
+    ],
+    [
+      [7628, 23526],
+      [31, -48],
+      [-63, -85],
+      [36, -37],
+      [26, -77],
+      [49, -21],
+      [23, -39]
+    ],
+    [
+      [7730, 23219],
+      [-64, -81],
+      [-58, -152],
+      [-51, -13],
+      [-5, -96],
+      [-24, -49],
+      [-49, 34],
+      [-107, 14],
+      [-184, 13],
+      [-102, 43],
+      [-93, -93],
+      [-92, -39],
+      [-47, -53],
+      [-66, -23],
+      [-54, -35],
+      [-137, 20],
+      [-61, 55],
+      [-20, 42],
+      [-80, -55],
+      [-58, -7],
+      [-108, -32],
+      [-57, -29],
+      [-176, -32],
+      [-31, 13],
+      [-43, -25],
+      [-37, 56],
+      [-61, -51],
+      [-79, 19],
+      [-110, -40],
+      [-14, -18],
+      [-67, 15],
+      [-31, -19]
+    ],
+    [
+      [5564, 22601],
+      [-33, 26],
+      [-3, 49],
+      [-94, 41],
+      [-16, 66],
+      [11, 53],
+      [-19, 44],
+      [-37, 15],
+      [-5, 53],
+      [29, 39],
+      [-10, 73],
+      [-84, -2],
+      [-36, 40],
+      [-22, 59],
+      [-57, 41],
+      [-66, 14],
+      [-33, 123],
+      [-34, 44],
+      [1, 33],
+      [-83, 37],
+      [-12, 137],
+      [-34, 46],
+      [-41, -14],
+      [-67, 46],
+      [-72, 6],
+      [-59, 34],
+      [-22, 49],
+      [-132, 96],
+      [-35, -7],
+      [-52, 49],
+      [-68, 24],
+      [-148, 117],
+      [-74, 36],
+      [-29, 60],
+      [-42, -6],
+      [-44, 41],
+      [-80, 41],
+      [-39, 37],
+      [-50, -8],
+      [-39, 33],
+      [-16, 54],
+      [10, 65],
+      [-62, 7],
+      [-60, 90],
+      [4, 38],
+      [-27, 49],
+      [-72, 55],
+      [-43, 63],
+      [-66, 179],
+      [-94, -21],
+      [-16, 65],
+      [12, 62],
+      [-24, 14],
+      [-65, 94],
+      [-142, 93],
+      [-47, 51],
+      [-41, 79],
+      [-79, 26],
+      [-92, 120],
+      [-8, 50],
+      [-36, 27],
+      [-22, 52],
+      [-63, 46],
+      [-20, 54],
+      [39, 65],
+      [-93, 95],
+      [60, 69],
+      [-28, 67],
+      [-36, 20],
+      [2, 60],
+      [-70, 43],
+      [13, 109],
+      [60, 64],
+      [-36, 32],
+      [-29, 55],
+      [-81, 58],
+      [-7, 48],
+      [22, 49],
+      [2, 53],
+      [28, 16],
+      [39, 77],
+      [-41, 75],
+      [-3, 57],
+      [33, 11],
+      [34, -33],
+      [48, -9],
+      [70, 16],
+      [4, 27],
+      [75, 81],
+      [62, 43],
+      [-24, 56],
+      [33, 35],
+      [86, -50],
+      [50, -4],
+      [171, -109],
+      [40, 49],
+      [-19, 65],
+      [-32, 28],
+      [51, 66],
+      [-16, 59],
+      [29, 37],
+      [39, -12],
+      [103, 47],
+      [42, 33],
+      [71, -32],
+      [78, -17],
+      [37, -29],
+      [0, -47],
+      [36, -30],
+      [65, 92],
+      [16, 74],
+      [10, 135],
+      [-7, 141],
+      [-25, 130],
+      [-44, 77],
+      [-23, 101],
+      [20, 38],
+      [25, 112]
+    ],
+    [
+      [3744, 27971],
+      [40, 15],
+      [17, -40],
+      [92, -14],
+      [17, -39],
+      [52, 31],
+      [35, -42],
+      [24, -67],
+      [111, -130],
+      [36, -58],
+      [43, -38],
+      [-61, -51],
+      [168, -82],
+      [-15, -78],
+      [45, -25],
+      [43, -66],
+      [92, -91],
+      [62, -86],
+      [22, 5],
+      [91, -64],
+      [61, -91],
+      [-6, -46],
+      [75, -23],
+      [33, -58],
+      [66, 15],
+      [31, -13],
+      [25, -112],
+      [60, -70]
+    ],
+    [
+      [17733, 30726],
+      [1, -93],
+      [-91, -44],
+      [-13, -78],
+      [-39, -31],
+      [-21, -54],
+      [-53, -67],
+      [-58, -32],
+      [-113, -23],
+      [-27, -50],
+      [-187, -59],
+      [26, -67],
+      [-65, -109],
+      [-55, -27],
+      [-19, -42],
+      [-69, -45],
+      [-3, -87],
+      [-80, -55],
+      [-65, -67],
+      [3, -61],
+      [-15, -110],
+      [13, -93],
+      [29, -61],
+      [-38, -35],
+      [27, -46],
+      [43, -24],
+      [-58, -138],
+      [23, -59],
+      [116, -67],
+      [-34, -32],
+      [48, -35],
+      [19, -89],
+      [-46, -100],
+      [40, -85],
+      [74, -69],
+      [-24, -152],
+      [38, -30],
+      [-4, -48]
+    ],
+    [
+      [16594, 27945],
+      [-54, 20],
+      [-48, 49],
+      [-91, -12],
+      [-26, 58],
+      [-54, 44],
+      [26, 48],
+      [-58, 23],
+      [-37, -34],
+      [-95, 6],
+      [-80, 30],
+      [-37, -44],
+      [-53, -14],
+      [-140, 8],
+      [-69, 45],
+      [-92, -27],
+      [-80, 1],
+      [-120, -61],
+      [-117, 101],
+      [-67, 20],
+      [23, 62],
+      [-113, 117]
+    ],
+    [
+      [13444, 30794],
+      [9, 24],
+      [64, 28],
+      [40, 128],
+      [2, 83]
+    ],
+    [
+      [13559, 31057],
+      [150, 60],
+      [97, 27],
+      [34, 44],
+      [84, 14],
+      [133, 78],
+      [-6, 22],
+      [148, -28],
+      [48, 84],
+      [91, -33],
+      [11, 24],
+      [77, 65]
+    ],
+    [
+      [14426, 31414],
+      [84, 1],
+      [22, 17],
+      [60, -44],
+      [95, 0],
+      [13, -28],
+      [88, -38],
+      [79, 11],
+      [43, 37],
+      [63, 19],
+      [16, 34],
+      [75, -3],
+      [73, -20],
+      [0, -30],
+      [66, -30],
+      [15, -58],
+      [45, -75],
+      [102, 0],
+      [167, -79],
+      [196, 39],
+      [135, -59],
+      [219, -37],
+      [16, 142],
+      [26, 75],
+      [54, 118],
+      [84, 138],
+      [32, 91],
+      [-39, 64]
+    ],
+    [
+      [16255, 31699],
+      [32, 54],
+      [-3, 91],
+      [93, 115],
+      [23, -83],
+      [185, -97],
+      [55, -42],
+      [20, -54],
+      [68, -37],
+      [-56, -45],
+      [45, -58],
+      [-33, -63],
+      [4, -59],
+      [40, -83],
+      [93, 52],
+      [56, -4],
+      [80, -61],
+      [59, -67],
+      [107, 14],
+      [74, 22],
+      [55, 36],
+      [95, 41],
+      [42, 33],
+      [36, -3],
+      [69, 45],
+      [31, -4],
+      [45, 35]
+    ],
+    [
+      [5166, 5671],
+      [45, -41],
+      [13, -50],
+      [71, -59],
+      [-9, -102],
+      [57, -83],
+      [49, -114],
+      [-38, -57],
+      [-90, 74],
+      [-49, 74],
+      [-69, 154],
+      [9, 66],
+      [-21, 55],
+      [2, 55],
+      [30, 28]
+    ],
+    [
+      [5257, 5774],
+      [73, -23],
+      [54, 18],
+      [36, -39],
+      [30, -68],
+      [-37, -56],
+      [-7, -82],
+      [-76, 17],
+      [-23, -25],
+      [-75, 71],
+      [-19, 66],
+      [-43, 25],
+      [1, 86],
+      [86, 10]
+    ],
+    [
+      [4357, 5984],
+      [23, -14],
+      [37, -82],
+      [-72, 25],
+      [12, 71]
+    ],
+    [
+      [5200, 6233],
+      [34, -2],
+      [60, -38],
+      [56, 13],
+      [-5, -39],
+      [17, -12],
+      [-4, -12],
+      [8, -4],
+      [42, 17],
+      [35, -29],
+      [4, -88],
+      [-31, -40],
+      [-23, -83],
+      [-10, -80],
+      [-54, -57],
+      [-151, 34],
+      [-52, 124],
+      [-14, 52],
+      [26, 87],
+      [-32, 87],
+      [76, 16],
+      [18, 54]
+    ],
+    [
+      [4914, 6244],
+      [55, -12],
+      [37, -95],
+      [-1, -97],
+      [-73, 104],
+      [-77, 60],
+      [9, 30],
+      [50, 10]
+    ],
+    [
+      [5085, 6321],
+      [30, 0],
+      [59, -66],
+      [-35, -60],
+      [-46, -3],
+      [-34, 78],
+      [26, 51]
+    ],
+    [
+      [5270, 6405],
+      [27, -28],
+      [-35, -65],
+      [-33, -10],
+      [17, 105],
+      [24, -2]
+    ],
+    [
+      [5001, 6442],
+      [32, -24],
+      [19, -58],
+      [-48, -73],
+      [-24, 34],
+      [-27, 111],
+      [48, 10]
+    ],
+    [
+      [5940, 7515],
+      [119, -61],
+      [8, -91],
+      [-61, -64],
+      [27, -75],
+      [-41, -89],
+      [-57, -35],
+      [29, -64],
+      [-8, -25],
+      [152, 9],
+      [118, -76],
+      [25, -68],
+      [9, -118],
+      [60, -110],
+      [-53, -49],
+      [-4, -79]
+    ],
+    [
+      [6263, 6520],
+      [-40, -41],
+      [-49, 15],
+      [-35, -41],
+      [-71, -10],
+      [-92, -78],
+      [7, -62],
+      [-84, -83],
+      [50, -65],
+      [-17, -43],
+      [47, -4],
+      [-8, -55],
+      [-39, -43],
+      [3, -31],
+      [52, -19],
+      [15, -78],
+      [-12, -73],
+      [-79, -57]
+    ],
+    [
+      [5911, 5752],
+      [-35, -16],
+      [-37, -41],
+      [-36, 21],
+      [-11, 42],
+      [-51, -31],
+      [-141, 89],
+      [-30, 66],
+      [-35, 33],
+      [-57, 20],
+      [-25, 121],
+      [-7, 75],
+      [-31, 26],
+      [-13, 1],
+      [-8, -7],
+      [-30, -10],
+      [-3, 19],
+      [-14, 10],
+      [8, 38],
+      [-66, -4],
+      [-36, 34],
+      [56, 145],
+      [-54, 61],
+      [-31, -59],
+      [-90, -51],
+      [-22, 33],
+      [-14, 68],
+      [-49, 45],
+      [-88, -15],
+      [-86, 143],
+      [45, 35],
+      [-115, 99],
+      [-1, 41],
+      [-119, -84],
+      [-51, 26],
+      [-45, -46],
+      [-33, -7],
+      [-36, 46],
+      [-81, 54],
+      [-83, -15],
+      [-70, 38],
+      [-27, 62],
+      [18, 37],
+      [-3, 64],
+      [35, 53],
+      [-50, 29],
+      [-8, 42],
+      [39, 68],
+      [-7, 53],
+      [-54, 103],
+      [-35, 38],
+      [-13, 66],
+      [-25, 32],
+      [7, 66],
+      [-80, -22],
+      [-92, -74],
+      [-87, 53],
+      [4, 50],
+      [33, 47],
+      [9, 70],
+      [-9, 45],
+      [100, 35],
+      [-73, 80],
+      [28, 28],
+      [26, 4],
+      [9, 13],
+      [-5, 70]
+    ],
+    [
+      [4026, 7907],
+      [-33, 84],
+      [59, 78],
+      [14, 74],
+      [40, 105],
+      [48, 54],
+      [-10, 102]
+    ],
+    [
+      [4144, 8404],
+      [56, -8],
+      [75, 124],
+      [44, -4],
+      [34, -41],
+      [73, -48],
+      [15, 42],
+      [132, -1],
+      [37, -67],
+      [98, -36],
+      [112, -138],
+      [34, -21],
+      [-7, -55],
+      [24, -25],
+      [4, -68],
+      [22, -43],
+      [-5, -61],
+      [-29, -83],
+      [28, -45],
+      [71, -24],
+      [79, -66],
+      [126, -79],
+      [72, -11],
+      [37, 10],
+      [149, 9],
+      [174, -66],
+      [87, -17],
+      [73, -55],
+      [94, -43],
+      [40, -3],
+      [47, 34]
+    ],
+    [
+      [7173, 38359],
+      [-6, -56],
+      [51, -90],
+      [-32, -68],
+      [23, -90],
+      [-1, -92],
+      [29, -82],
+      [45, -85],
+      [0, -32],
+      [41, -71],
+      [45, -26],
+      [0, -46],
+      [49, -151],
+      [69, -28],
+      [73, 17],
+      [0, -38],
+      [39, -17],
+      [-7, -88],
+      [129, -34],
+      [51, -24],
+      [111, -24],
+      [43, -54],
+      [16, -48],
+      [158, -104],
+      [60, -26],
+      [52, 17],
+      [20, -31],
+      [68, -42],
+      [23, -50],
+      [-25, -66],
+      [15, -48],
+      [66, 29],
+      [79, -52]
+    ],
+    [
+      [8457, 36759],
+      [35, -68],
+      [-75, -92],
+      [7, -129],
+      [24, -94],
+      [-19, -23],
+      [-17, -88],
+      [61, -71],
+      [-27, -41],
+      [4, -40],
+      [-32, -43],
+      [-33, 32],
+      [-45, -34],
+      [-62, -10],
+      [1, -114],
+      [-21, -53],
+      [-66, -88],
+      [-65, -121],
+      [-19, -55],
+      [-38, -29],
+      [-81, -23],
+      [-66, -92],
+      [-9, -63],
+      [-92, -134],
+      [-54, 9],
+      [-92, -23],
+      [-78, -108],
+      [-31, 5],
+      [-66, -65],
+      [-7, -41],
+      [-138, -165],
+      [-3, -60],
+      [-44, -33],
+      [-55, -103],
+      [-93, -17],
+      [-30, -52],
+      [-71, -14],
+      [-18, 41],
+      [-70, 15],
+      [-129, -72],
+      [28, -69],
+      [-93, -54],
+      [-21, -48],
+      [-108, -49],
+      [-116, -111],
+      [-27, -61],
+      [-138, -100],
+      [-41, -48],
+      [-13, -45],
+      [-57, -26],
+      [-23, -70],
+      [-49, -51],
+      [32, -21],
+      [5, -62],
+      [51, -17],
+      [48, -70],
+      [106, -6],
+      [18, 44],
+      [51, 37]
+    ],
+    [
+      [6496, 33776],
+      [13, -170],
+      [-19, -32],
+      [-61, -34],
+      [-11, -86],
+      [26, -38],
+      [-88, 0],
+      [-39, -98],
+      [68, -32],
+      [-15, -31],
+      [21, -71],
+      [-50, -18],
+      [-6, -89],
+      [-38, -30],
+      [23, -75],
+      [55, -41],
+      [-9, -118],
+      [129, -81],
+      [15, -104],
+      [-63, -56],
+      [-14, -70],
+      [13, -75],
+      [-40, -3],
+      [-10, -64],
+      [-57, -29],
+      [-63, 1],
+      [-11, -32],
+      [-59, 4],
+      [-57, 107],
+      [-55, 42],
+      [-77, 15]
+    ],
+    [
+      [6017, 32468],
+      [-38, 12],
+      [-19, 83],
+      [-32, 26],
+      [-46, 103],
+      [12, 91],
+      [-15, 52],
+      [-32, 14],
+      [-100, 1],
+      [-64, -71],
+      [10, -21],
+      [-108, -99],
+      [-62, 1],
+      [-36, 64],
+      [-61, 11],
+      [-39, -17],
+      [-71, 51],
+      [-29, -12],
+      [-61, 43],
+      [-26, -7],
+      [-50, 71],
+      [-54, 31],
+      [-105, 126],
+      [-108, 5],
+      [-38, 18],
+      [-16, 132],
+      [-47, 37]
+    ],
+    [
+      [4782, 33213],
+      [-18, 79],
+      [13, 53],
+      [-64, 18],
+      [-26, 57],
+      [6, 44],
+      [68, 39],
+      [108, 0],
+      [25, 17],
+      [158, -29],
+      [58, -56],
+      [98, -8],
+      [40, 83],
+      [-12, 50],
+      [15, 87],
+      [64, 25],
+      [2, 106],
+      [55, 5],
+      [22, 71],
+      [37, 38],
+      [-41, 38],
+      [-19, 52],
+      [99, 24],
+      [72, -35],
+      [46, 8],
+      [-43, 99],
+      [68, 9],
+      [3, 24],
+      [-65, 54],
+      [-68, 89],
+      [-86, 28],
+      [9, 76],
+      [-64, 32],
+      [22, 64],
+      [-1, 53],
+      [-52, 81],
+      [-9, 47],
+      [-33, 49],
+      [6, 82],
+      [-16, 17],
+      [-7, 115],
+      [-39, 56],
+      [15, 38],
+      [-84, 114],
+      [-24, 68],
+      [24, 70],
+      [67, 2],
+      [36, 19],
+      [56, -9],
+      [32, 30],
+      [43, -40],
+      [33, 24],
+      [-10, 54],
+      [39, 55],
+      [78, 5],
+      [7, 43],
+      [47, 48],
+      [-3, 76],
+      [64, 36],
+      [27, 89],
+      [69, 27],
+      [50, 52],
+      [17, 88],
+      [45, 43],
+      [125, -17],
+      [62, 32],
+      [-5, 88]
+    ],
+    [
+      [4782, 33213],
+      [-43, -21],
+      [-41, -48],
+      [-12, -56],
+      [-62, 56],
+      [-109, 3],
+      [-25, -34],
+      [-55, -1],
+      [-112, -49],
+      [-22, -33],
+      [-106, -15],
+      [-15, -32],
+      [-70, -59],
+      [-30, 44],
+      [13, 57],
+      [61, 52],
+      [2, 40],
+      [-28, 34],
+      [16, 32],
+      [1, 84],
+      [-27, 88],
+      [-28, 17],
+      [22, 113],
+      [-19, 26],
+      [38, 67],
+      [120, 44],
+      [27, 27],
+      [-19, 44],
+      [-114, 105],
+      [9, 39],
+      [-44, 47]
+    ],
+    [
+      [14540, 35099],
+      [-13, -38],
+      [1, -103],
+      [-45, -7],
+      [-45, -35],
+      [-53, -175]
+    ],
+    [
+      [14385, 34741],
+      [-4, -138],
+      [-42, -53],
+      [-10, -70],
+      [-32, 0],
+      [-8, -100],
+      [48, -163],
+      [33, -79],
+      [-13, -138],
+      [-34, -37],
+      [28, -47],
+      [-48, -10],
+      [-39, -107],
+      [25, -103],
+      [14, -111],
+      [46, -55],
+      [42, 21],
+      [82, -61]
+    ],
+    [
+      [14473, 33490],
+      [69, -73],
+      [48, -115],
+      [43, -31],
+      [11, -100],
+      [-59, -94],
+      [-109, -61],
+      [-106, -43],
+      [-59, 27],
+      [-124, -2],
+      [-19, -64],
+      [23, -43],
+      [-33, -24],
+      [112, -108],
+      [-14, -48],
+      [13, -50],
+      [-61, -14],
+      [-25, -50],
+      [28, -49],
+      [52, -52],
+      [77, -45],
+      [59, -51],
+      [14, -110],
+      [-180, 32],
+      [-29, -33],
+      [61, -23],
+      [173, -5],
+      [-69, -64],
+      [-26, -46],
+      [-67, 32],
+      [1, -94],
+      [138, -33],
+      [23, -24],
+      [53, -4],
+      [42, -78],
+      [-9, -36],
+      [47, -30],
+      [26, -43],
+      [78, -43],
+      [-31, -43],
+      [-72, -24],
+      [-64, -4],
+      [-2, -45],
+      [-69, -61],
+      [-50, 4],
+      [-79, -41],
+      [49, -126],
+      [69, -44]
+    ],
+    [
+      [13559, 31057],
+      [-174, -29],
+      [-25, 10],
+      [-44, 64],
+      [-61, 51],
+      [96, 50],
+      [-78, 56],
+      [-46, 85],
+      [29, 180],
+      [-30, 27],
+      [-19, 63],
+      [16, 33],
+      [-48, 63],
+      [-45, 91],
+      [-49, 43],
+      [-63, -124],
+      [-60, -10],
+      [-44, -34],
+      [-74, 30],
+      [-62, 166],
+      [-51, 7],
+      [-130, 98],
+      [-34, 5],
+      [-65, -59],
+      [-27, 1],
+      [-78, 57],
+      [-67, -38],
+      [-26, 27],
+      [-101, -13],
+      [-48, -34],
+      [-36, 53],
+      [-101, 3],
+      [-59, -9],
+      [-20, 30],
+      [-59, 33],
+      [-27, 52],
+      [-75, -24],
+      [10, -48],
+      [-57, -107],
+      [-41, -33],
+      [-13, -45],
+      [-89, -16],
+      [-55, -23],
+      [-22, -80],
+      [4, -173],
+      [-50, -113],
+      [-91, 29]
+    ],
+    [
+      [11370, 31452],
+      [3, 62],
+      [-91, 9],
+      [-37, 25],
+      [68, 55],
+      [-30, 87],
+      [55, 109],
+      [-8, 119],
+      [53, 172],
+      [15, 14],
+      [18, 151],
+      [72, 66],
+      [3, 57],
+      [-48, 49],
+      [-29, 71],
+      [-102, 9],
+      [-70, 74],
+      [-34, 5],
+      [-21, 49],
+      [-55, 32],
+      [-63, 0],
+      [-48, -17],
+      [-105, 13],
+      [-21, 104],
+      [26, 87],
+      [-17, 120],
+      [-67, 39],
+      [-60, -41],
+      [-71, 12],
+      [-43, 32],
+      [-11, 37],
+      [32, 65],
+      [66, 40],
+      [23, 36],
+      [-37, 43],
+      [21, 60],
+      [54, 59],
+      [48, 15],
+      [44, -47],
+      [53, -22],
+      [80, 16]
+    ],
+    [
+      [11036, 33318],
+      [105, -25],
+      [159, -59],
+      [4, -41],
+      [42, -8],
+      [57, -67],
+      [50, 17],
+      [54, -79],
+      [58, 12],
+      [99, -44],
+      [19, 68],
+      [47, 10],
+      [-6, 81],
+      [41, 18],
+      [107, 11],
+      [99, 171],
+      [140, 104],
+      [9, 46],
+      [128, 35],
+      [34, 43],
+      [65, 47],
+      [54, -38],
+      [17, 54],
+      [64, 33],
+      [-28, 32],
+      [84, 22],
+      [55, 57],
+      [84, -73],
+      [29, 82],
+      [64, 48],
+      [45, 6],
+      [34, 38],
+      [64, -14],
+      [-4, 52],
+      [-59, 36],
+      [39, 57],
+      [20, 77],
+      [26, 6],
+      [40, -48],
+      [44, 33],
+      [30, 83],
+      [97, 15],
+      [155, 45],
+      [46, -22],
+      [56, 46],
+      [-10, 71],
+      [67, 152],
+      [16, 87],
+      [30, 62],
+      [53, 47],
+      [33, -21],
+      [92, -19],
+      [167, -82],
+      [95, 21],
+      [45, 67],
+      [61, 58],
+      [30, 48],
+      [141, 89],
+      [99, 87],
+      [28, 97],
+      [132, 68],
+      [58, -18]
+    ],
+    [
+      [12336, 27068],
+      [-15, -113],
+      [16, -144],
+      [-58, 15],
+      [-1, -145],
+      [85, -113],
+      [-13, -59],
+      [30, -81],
+      [4, -90],
+      [33, -68]
+    ],
+    [
+      [12417, 26270],
+      [-37, -20],
+      [-72, 6],
+      [-39, 19],
+      [-36, -51],
+      [-10, -95],
+      [-47, -43],
+      [-89, -19],
+      [-65, 7],
+      [-20, -101],
+      [-29, -52],
+      [-33, -19],
+      [-85, 33],
+      [-57, -18],
+      [-49, 9],
+      [-87, -52],
+      [-71, -14],
+      [-126, 30],
+      [-73, -72],
+      [19, -29],
+      [-8, -57],
+      [-42, -31],
+      [70, -27],
+      [-63, -55],
+      [-16, -74],
+      [-91, 53],
+      [-81, 73],
+      [-90, -4],
+      [-26, 14],
+      [-43, -36],
+      [13, -44],
+      [-4, -100],
+      [41, -31],
+      [-23, -31],
+      [-59, -13],
+      [-89, 38],
+      [-43, 40],
+      [-40, 7],
+      [-49, -26],
+      [-43, 63],
+      [-54, 47],
+      [-88, 6],
+      [-16, -24],
+      [-121, 4],
+      [-69, 21],
+      [-9, -68],
+      [-52, -62],
+      [-39, -24],
+      [-79, -7],
+      [-89, -88],
+      [-163, 9],
+      [73, -112],
+      [-73, -65]
+    ],
+    [
+      [9946, 25185],
+      [-61, 29],
+      [-89, -12],
+      [-14, 31],
+      [-105, -30],
+      [-14, 36]
+    ],
+    [
+      [9537, 25355],
+      [29, 63],
+      [32, 27],
+      [-44, 33],
+      [-12, 76],
+      [13, 52],
+      [-28, 44],
+      [-22, 97],
+      [-65, 34],
+      [7, 58],
+      [-25, 26],
+      [-16, 92],
+      [68, 25],
+      [16, 62],
+      [-8, 58],
+      [40, 53],
+      [20, 77],
+      [-79, 27],
+      [-68, 47]
+    ],
+    [
+      [9395, 26306],
+      [64, 98],
+      [64, 60],
+      [29, -13],
+      [110, 70],
+      [-19, 31],
+      [29, 65],
+      [54, 30],
+      [25, 51],
+      [52, 23],
+      [36, 46],
+      [73, 18],
+      [-11, 42],
+      [19, 42],
+      [-44, 22],
+      [15, 43],
+      [83, 34],
+      [32, 67],
+      [37, 26],
+      [-16, 44],
+      [52, 167],
+      [-9, 35],
+      [65, 38],
+      [63, 6],
+      [37, 26],
+      [109, 17],
+      [98, 33],
+      [21, 21],
+      [-5, 83],
+      [-56, 23],
+      [24, 49]
+    ],
+    [
+      [10426, 27603],
+      [94, 4],
+      [56, -98],
+      [49, -25],
+      [41, 3],
+      [44, -26],
+      [130, 9],
+      [34, -29],
+      [127, -51],
+      [36, -71],
+      [57, -22],
+      [-6, -73],
+      [98, -62],
+      [44, -71],
+      [142, -4],
+      [67, 40],
+      [65, -42],
+      [75, -32],
+      [180, 7],
+      [157, 71],
+      [86, 23],
+      [89, 73],
+      [0, 79],
+      [-21, 110],
+      [26, 47],
+      [-12, 30],
+      [1, 111],
+      [-38, 41],
+      [38, 16],
+      [23, 83],
+      [64, 2],
+      [90, 20],
+      [29, -6]
+    ],
+    [
+      [2279, 33494],
+      [-89, 53],
+      [-58, 54],
+      [-14, 56],
+      [-40, 37],
+      [-25, 104],
+      [-95, 175],
+      [-33, 45],
+      [19, 43],
+      [-42, 45],
+      [-40, 13],
+      [-110, -7],
+      [-59, -80],
+      [21, -42],
+      [-35, -30],
+      [-149, -71],
+      [-88, 22],
+      [-66, -28],
+      [-25, 22],
+      [-105, -20],
+      [-22, 14]
+    ],
+    [
+      [1224, 33899],
+      [-82, 67],
+      [-47, 25],
+      [-32, 70],
+      [-53, 82],
+      [9, 50],
+      [44, 106],
+      [58, 48],
+      [75, 29],
+      [8, 78],
+      [-40, 105],
+      [-84, 129],
+      [-60, 133],
+      [-8, 134],
+      [-77, 49],
+      [-23, 39],
+      [-85, 84],
+      [-12, 78],
+      [66, 53],
+      [19, 49],
+      [-60, 85],
+      [-135, 57],
+      [-77, -18],
+      [-43, -128],
+      [-90, -55],
+      [-140, 124],
+      [-50, 80],
+      [-7, 58],
+      [31, 82],
+      [-35, 42],
+      [-36, 5],
+      [-32, 80],
+      [-45, 37],
+      [-28, 63],
+      [-23, 92],
+      [-45, 53],
+      [-42, 17],
+      [-33, 40],
+      [-10, 91],
+      [59, 33],
+      [-4, -80],
+      [71, -6],
+      [44, 16],
+      [66, -47],
+      [40, -115],
+      [62, -37],
+      [109, 42],
+      [51, -46],
+      [36, 16],
+      [58, -19],
+      [37, 107],
+      [56, -16],
+      [20, 31],
+      [98, 6],
+      [51, 30],
+      [6, 49],
+      [50, -10],
+      [47, 45],
+      [114, -22],
+      [85, 10],
+      [13, 28],
+      [84, -21],
+      [49, 6],
+      [19, 111],
+      [-13, 10],
+      [8, 97],
+      [-2, 111],
+      [-57, 81],
+      [0, 45],
+      [27, 61],
+      [-71, 188],
+      [15, 50],
+      [-10, 92],
+      [-77, 26],
+      [-138, 114],
+      [-4, 33],
+      [62, 14],
+      [55, 49],
+      [75, 22],
+      [14, 52],
+      [-5, 136],
+      [105, 11],
+      [-15, 61],
+      [45, 25],
+      [39, -5],
+      [56, 47],
+      [71, 11],
+      [14, 65],
+      [-16, 52],
+      [24, 27],
+      [-12, 71],
+      [17, 28],
+      [-1, 114],
+      [-80, 46],
+      [-18, 39],
+      [-84, 40],
+      [38, 45],
+      [82, -4],
+      [25, 56],
+      [-25, 73],
+      [-68, 64],
+      [13, 148],
+      [70, 72],
+      [1, 26],
+      [137, 148],
+      [41, 21],
+      [-94, 86],
+      [17, 123],
+      [61, 15],
+      [35, -12],
+      [87, 24],
+      [69, 34],
+      [23, -11],
+      [77, 25],
+      [-10, 54],
+      [34, 51],
+      [56, -21],
+      [111, 25],
+      [15, 64],
+      [-32, 16],
+      [-12, 47],
+      [18, 37],
+      [-27, 60],
+      [37, 113],
+      [-13, 66],
+      [42, 70],
+      [26, -25],
+      [81, 20],
+      [48, -103],
+      [38, 1],
+      [73, 38],
+      [43, -34],
+      [101, -42],
+      [26, -58],
+      [96, -41],
+      [43, -37],
+      [-20, -34],
+      [54, -62],
+      [65, 20],
+      [85, -4],
+      [81, 43],
+      [124, -12],
+      [94, 28],
+      [59, -31],
+      [144, 10],
+      [18, -12]
+    ],
+    [
+      [18804, 29488],
+      [-47, -33],
+      [5, -41],
+      [-28, -76],
+      [-53, -46],
+      [-31, -131],
+      [53, -101],
+      [-30, -71],
+      [10, -139],
+      [45, -51],
+      [6, -70],
+      [-68, -51],
+      [-1, -40],
+      [-39, -71],
+      [-23, -97],
+      [9, -97],
+      [-42, -70],
+      [0, -49],
+      [-21, -100],
+      [-18, -20],
+      [-72, -12],
+      [-121, 46],
+      [-45, -45],
+      [-94, -18],
+      [-96, -104],
+      [73, -10],
+      [7, -39],
+      [-44, -93],
+      [10, -52],
+      [43, -63],
+      [1, -33],
+      [87, -42],
+      [71, -18],
+      [16, -40],
+      [46, 28],
+      [116, 7],
+      [23, -36],
+      [-2, -73],
+      [-18, -24],
+      [-48, -156]
+    ],
+    [
+      [18484, 27357],
+      [-63, -20],
+      [-45, -41],
+      [-58, -10],
+      [-225, 39],
+      [-60, 69],
+      [-62, -2],
+      [-18, 21],
+      [-281, 68],
+      [-62, 5]
+    ],
+    [
+      [22558, 31177],
+      [59, -140],
+      [21, -22],
+      [-1, -74],
+      [14, -87],
+      [-58, -145],
+      [-11, -108],
+      [-21, -77],
+      [5, -64],
+      [23, -48],
+      [83, -89],
+      [63, -39],
+      [150, -72],
+      [65, -94],
+      [1, -53],
+      [71, -100],
+      [3, -39],
+      [44, -48],
+      [95, -34],
+      [84, -101],
+      [59, -33]
+    ],
+    [
+      [22664, 29476],
+      [-71, 20],
+      [-87, 4],
+      [-71, 31],
+      [-64, 44],
+      [-133, -56],
+      [-78, 41],
+      [-5, 34],
+      [-71, 23],
+      [-9, 53],
+      [-73, 109],
+      [-54, 39],
+      [-59, -6],
+      [-37, 72],
+      [-82, 0],
+      [-246, 21],
+      [-65, -15],
+      [-67, -53]
+    ],
+    [
+      [21392, 29837],
+      [-65, 40],
+      [-41, 143],
+      [9, 79],
+      [-26, 93],
+      [-62, 55],
+      [-11, -53],
+      [-54, -44],
+      [-95, -22]
+    ],
+    [
+      [20537, 31221],
+      [110, 45],
+      [53, 61],
+      [6, 78],
+      [104, 5],
+      [103, -36],
+      [40, -3],
+      [23, 36],
+      [72, 9],
+      [45, 42]
+    ],
+    [
+      [21093, 31458],
+      [27, -67],
+      [79, -70],
+      [46, 77],
+      [103, 52],
+      [89, -43],
+      [118, -20],
+      [25, 34],
+      [84, -52],
+      [13, -22],
+      [73, 3],
+      [65, -45],
+      [132, 42],
+      [90, -9],
+      [75, 7],
+      [125, -7],
+      [28, -38],
+      [1, -71],
+      [89, -105],
+      [84, 76],
+      [20, 37],
+      [38, 3],
+      [61, -63]
+    ],
+    [
+      [12480, 24446],
+      [134, -70],
+      [23, -55],
+      [41, -34],
+      [23, -64],
+      [-17, -32],
+      [-5, -87],
+      [-103, -12],
+      [-44, -23],
+      [-113, -1],
+      [-47, 49],
+      [-56, -44],
+      [16, -63],
+      [-35, -80],
+      [-80, -19],
+      [-108, -92],
+      [-62, -31],
+      [-11, -59],
+      [50, -35],
+      [13, -62],
+      [35, -39],
+      [-108, -91],
+      [-76, 30],
+      [-107, -26],
+      [-32, 8],
+      [-60, -92],
+      [-88, -53],
+      [-60, -18],
+      [-24, -77]
+    ],
+    [
+      [10898, 23248],
+      [1, 342],
+      [-5, 102],
+      [4, 273],
+      [97, 55],
+      [17, 101]
+    ],
+    [
+      [11012, 24121],
+      [-19, 42],
+      [13, 55],
+      [120, -28],
+      [93, 15],
+      [22, 36],
+      [94, 78],
+      [18, 93],
+      [-26, 39],
+      [5, 52],
+      [47, -16],
+      [12, -39],
+      [48, -25],
+      [71, 6],
+      [101, -30],
+      [28, -65],
+      [60, -7],
+      [29, 53],
+      [68, 12],
+      [11, 22],
+      [-30, 66],
+      [27, 32],
+      [4, 61],
+      [59, 50],
+      [-12, 56],
+      [41, 17]
+    ],
+    [
+      [11896, 24696],
+      [12, 29],
+      [100, 62],
+      [20, -30],
+      [48, -12],
+      [36, -70],
+      [62, -18],
+      [147, -88],
+      [130, -140],
+      [29, 17]
+    ],
+    [
+      [8960, 23710],
+      [-19, -152],
+      [-3, -108],
+      [-22, -65],
+      [30, -78],
+      [69, -49],
+      [-102, -117],
+      [33, -20],
+      [134, -255]
+    ],
+    [
+      [9117, 22618],
+      [-23, -30],
+      [-115, -33],
+      [-9, -49],
+      [-175, -66],
+      [-36, 44],
+      [-120, -11],
+      [-29, 19],
+      [-96, -18],
+      [-66, -75],
+      [-55, -20],
+      [-85, 8]
+    ],
+    [
+      [8308, 22387],
+      [1, 126],
+      [-97, -11],
+      [-28, 29],
+      [-11, 60],
+      [26, 60],
+      [-10, 23],
+      [-84, -47],
+      [-143, -13],
+      [-35, 42],
+      [-5, 37],
+      [40, 43],
+      [29, 104],
+      [2, 42],
+      [-65, 6],
+      [-25, 36],
+      [-77, 10],
+      [12, 71],
+      [-33, 77],
+      [42, 17],
+      [34, 80],
+      [-23, 20],
+      [-71, -5],
+      [-57, 25]
+    ],
+    [
+      [7628, 23526],
+      [79, 36],
+      [109, 118],
+      [70, 14],
+      [40, 44],
+      [72, -1],
+      [352, 35],
+      [157, -4],
+      [73, 58],
+      [181, 44],
+      [85, 75]
+    ],
+    [
+      [8846, 23945],
+      [12, -99],
+      [115, -12],
+      [-13, -124]
+    ],
+    [
+      [21093, 31458],
+      [48, 40],
+      [105, 22],
+      [52, 106],
+      [49, 38],
+      [47, 11],
+      [12, 49],
+      [130, 57],
+      [-5, 37],
+      [-135, 71],
+      [29, 98],
+      [71, 51],
+      [47, 57],
+      [-35, 34],
+      [8, 86],
+      [40, 39],
+      [44, 83],
+      [50, 51],
+      [-89, 109],
+      [-10, 76],
+      [43, 20],
+      [19, 71],
+      [-32, 51],
+      [-17, 64],
+      [25, 45],
+      [-3, 91],
+      [-119, -11],
+      [-103, 3],
+      [-29, 13],
+      [-139, 4],
+      [-105, -46],
+      [-63, -4],
+      [-82, 26],
+      [-141, -19],
+      [-14, -58],
+      [-67, -43],
+      [-16, 43],
+      [-63, 21],
+      [-44, -57],
+      [-59, -10],
+      [-44, 33],
+      [-46, 66],
+      [-39, 83],
+      [-35, 34],
+      [-27, 85],
+      [32, 2],
+      [59, 123],
+      [-15, 79],
+      [51, 35],
+      [8, 53],
+      [-71, 75],
+      [21, 57],
+      [59, 6],
+      [44, 35],
+      [-13, 100],
+      [32, 15],
+      [-33, 55],
+      [4, 52],
+      [-51, 41],
+      [19, 24],
+      [-60, 33],
+      [-49, 1],
+      [-36, 64],
+      [21, 47]
+    ],
+    [
+      [20898, 34567],
+      [88, -88],
+      [58, -116],
+      [71, -165],
+      [46, -90],
+      [27, -27],
+      [78, -36],
+      [114, -34],
+      [49, -48],
+      [27, -60],
+      [58, -72],
+      [24, -58],
+      [57, -78],
+      [57, -54],
+      [58, -84],
+      [48, -33],
+      [200, -76],
+      [147, -79],
+      [52, -37],
+      [41, -6],
+      [119, -77],
+      [126, -61],
+      [46, -47],
+      [122, -181],
+      [59, -42],
+      [62, -76],
+      [31, -64],
+      [12, -223],
+      [-7, -58],
+      [6, -146],
+      [-67, -262],
+      [-47, -145],
+      [-94, -136],
+      [-20, -113],
+      [10, -96],
+      [-6, -47],
+      [15, -120],
+      [64, -141],
+      [-71, -114]
+    ],
+    [
+      [15531, 23784],
+      [-28, 15],
+      [-68, -33],
+      [-61, 4],
+      [-50, 49],
+      [-19, -92],
+      [-76, -31],
+      [-18, 20],
+      [-55, -19],
+      [-59, 39],
+      [-47, -17],
+      [-20, 50],
+      [-59, -17],
+      [-86, 9],
+      [-27, 29],
+      [4, 46],
+      [-63, 67],
+      [-50, -14],
+      [-26, -49],
+      [2, -81],
+      [-46, -16],
+      [-65, 4],
+      [-76, 33]
+    ],
+    [
+      [14538, 23780],
+      [-117, 44],
+      [-98, 80],
+      [-65, 17],
+      [-141, 70],
+      [58, 40],
+      [-97, 21],
+      [47, 31],
+      [35, 65],
+      [50, 18],
+      [-12, 67],
+      [-111, 14],
+      [-52, -38],
+      [-37, 62],
+      [-107, 9],
+      [-54, -19],
+      [-55, 50],
+      [-59, 29],
+      [-88, -11],
+      [-69, 32],
+      [-27, -23],
+      [-99, -30],
+      [11, -44],
+      [-29, -47],
+      [-90, 68],
+      [-57, 64],
+      [-118, 104],
+      [-34, 43],
+      [-41, -2],
+      [-23, 57],
+      [-51, 24],
+      [-62, 6],
+      [-114, -7],
+      [-41, -31],
+      [-75, 28],
+      [-73, 79],
+      [-80, -17],
+      [-71, -31],
+      [33, -65],
+      [-45, -91]
+    ],
+    [
+      [11896, 24696],
+      [-91, 108],
+      [-82, 44],
+      [-9, 37],
+      [37, 28],
+      [64, 96],
+      [-31, 47],
+      [12, 61],
+      [-25, 108],
+      [2, 56],
+      [-40, 64],
+      [44, 136],
+      [91, -79],
+      [93, -3],
+      [35, -17],
+      [90, 42],
+      [14, 49],
+      [51, 0],
+      [43, 39],
+      [-10, 29],
+      [47, 34],
+      [138, 66],
+      [60, 72],
+      [109, 39],
+      [7, 59],
+      [-18, 81],
+      [-53, 137],
+      [9, 26],
+      [-38, 100],
+      [-28, 115]
+    ],
+    [
+      [10458, 28932],
+      [43, -46],
+      [-55, -124],
+      [-7, -76],
+      [30, -37],
+      [92, -27],
+      [22, -22],
+      [-5, -98],
+      [-37, -55],
+      [66, -201],
+      [0, -113],
+      [82, -16],
+      [-1, -57],
+      [-56, -31],
+      [-2, -84],
+      [-24, -45],
+      [21, -45],
+      [-49, -58],
+      [25, -26],
+      [-41, -78],
+      [-45, -49],
+      [-63, -11],
+      [-28, -30]
+    ],
+    [
+      [9395, 26306],
+      [-125, 101],
+      [-85, 22],
+      [-32, 27]
+    ],
+    [
+      [8418, 27311],
+      [-75, 24],
+      [-62, -6],
+      [26, 95],
+      [-51, 6],
+      [-70, 70],
+      [0, 55],
+      [-56, -2],
+      [5, -41],
+      [-55, 4],
+      [-93, 34],
+      [-41, -11],
+      [-22, 93],
+      [7, 110],
+      [-13, 68],
+      [16, 60],
+      [-26, 154],
+      [-26, 5],
+      [-184, -55],
+      [-13, -104],
+      [-159, 59],
+      [-63, 38],
+      [-74, 25],
+      [-20, 25],
+      [-88, 51],
+      [-73, -6],
+      [-111, -47],
+      [-28, 0],
+      [-45, -47],
+      [-79, -48],
+      [-74, -20],
+      [-69, -60],
+      [-22, -38],
+      [-49, -15],
+      [-110, -72],
+      [-58, 19],
+      [-75, -8],
+      [-5, 47],
+      [-56, 17],
+      [-74, 44],
+      [-15, 24],
+      [-130, 30],
+      [-35, 78],
+      [5, 30],
+      [-43, 47],
+      [-65, 29],
+      [-114, 7],
+      [-59, 64],
+      [-87, 15],
+      [-23, 54],
+      [-74, 69],
+      [-208, 83],
+      [-38, -6]
+    ],
+    [
+      [5467, 28358],
+      [-38, 58],
+      [-48, 12],
+      [-39, 50],
+      [5, 96],
+      [-26, 42]
+    ],
+    [
+      [8209, 29479],
+      [37, -12],
+      [32, -43],
+      [72, -10],
+      [40, -56],
+      [-43, -77],
+      [51, -38],
+      [-3, -32],
+      [59, -54],
+      [12, -93],
+      [96, -162],
+      [38, -23],
+      [-2, -55],
+      [45, -35],
+      [-7, -28],
+      [90, -10],
+      [73, -39],
+      [24, 29],
+      [13, 76],
+      [68, -2],
+      [20, -50],
+      [172, 83],
+      [1, 36],
+      [67, -23],
+      [-48, -96],
+      [57, -14],
+      [67, 15],
+      [147, -35],
+      [146, -4],
+      [121, 15],
+      [74, 28],
+      [-5, -59],
+      [115, 62],
+      [45, 51],
+      [74, 20],
+      [157, 60],
+      [67, -3],
+      [88, 22],
+      [57, -21],
+      [132, 30]
+    ],
+    [
+      [9131, 6453],
+      [-50, -6],
+      [-39, -44],
+      [-185, 7],
+      [-10, -32],
+      [-63, -31],
+      [-136, -31],
+      [-106, -36]
+    ],
+    [
+      [8542, 6280],
+      [-143, -21],
+      [-126, -72],
+      [-179, 53],
+      [-51, 30],
+      [-46, 53],
+      [-58, 14],
+      [-77, -23],
+      [-77, 32],
+      [-227, -24],
+      [-46, 15],
+      [-42, -69],
+      [-30, -24],
+      [-58, 9],
+      [-84, -12]
+    ],
+    [
+      [7298, 6241],
+      [15, 65],
+      [-24, 18],
+      [32, 61],
+      [-28, 107],
+      [63, 31],
+      [-8, 62],
+      [-67, 49],
+      [-82, -18],
+      [-142, 64],
+      [-80, -9],
+      [-46, -52],
+      [-40, -17],
+      [-24, -64],
+      [-47, -49],
+      [-31, 1],
+      [-23, -58],
+      [-45, -18],
+      [-48, -111],
+      [-53, -8],
+      [-24, 20],
+      [-76, -5],
+      [-28, 67],
+      [-109, -84],
+      [-51, 26],
+      [2, 193],
+      [-71, 8]
+    ],
+    [
+      [5940, 7515],
+      [-28, 17],
+      [-2, 51],
+      [-127, 90],
+      [-17, 77],
+      [34, 24],
+      [43, 110],
+      [57, 47],
+      [96, 60],
+      [8, 22],
+      [62, 24],
+      [19, 55],
+      [68, -55],
+      [50, 41],
+      [53, 8],
+      [44, 33],
+      [-13, 65],
+      [79, 81],
+      [29, 48],
+      [46, 7],
+      [-23, 84],
+      [45, 49],
+      [47, 22],
+      [58, 80],
+      [-16, 27],
+      [88, 62],
+      [15, 27],
+      [13, 92],
+      [-21, 7],
+      [-2, 86],
+      [13, 42],
+      [-28, 69],
+      [67, 49],
+      [62, -1],
+      [-8, 69],
+      [52, 45],
+      [24, 70],
+      [103, 27],
+      [51, -38],
+      [60, 24],
+      [136, 37],
+      [-22, 65],
+      [20, 46],
+      [53, -13],
+      [57, 70],
+      [5, 50],
+      [33, 38],
+      [-13, 29],
+      [19, 70],
+      [-7, 233],
+      [-52, 18],
+      [39, 58],
+      [-1, 76],
+      [43, 52],
+      [-19, 186],
+      [45, 45],
+      [24, 57]
+    ],
+    [
+      [7401, 10329],
+      [55, -35],
+      [91, -36],
+      [60, 18],
+      [37, -142],
+      [30, 0],
+      [67, -125],
+      [-22, -63],
+      [2, -123],
+      [16, -38],
+      [36, -8],
+      [53, -74],
+      [14, -215],
+      [30, -38],
+      [-26, -47],
+      [-6, -109],
+      [10, -147],
+      [21, -144],
+      [34, -161],
+      [8, -112],
+      [46, -325],
+      [20, -57],
+      [62, -69],
+      [67, 3],
+      [132, -181],
+      [90, -230],
+      [46, -75],
+      [109, -40],
+      [41, -29],
+      [89, -13],
+      [-33, 71],
+      [-24, 87],
+      [46, 110],
+      [-11, 55],
+      [29, 9],
+      [74, -69],
+      [76, -123],
+      [124, -320],
+      [81, -279],
+      [40, -181],
+      [99, -555],
+      [17, -66]
+    ],
+    [
+      [11427, 35565],
+      [-36, -65],
+      [-53, -2],
+      [-43, -46],
+      [-45, -18],
+      [-89, -66],
+      [-52, -7],
+      [-60, -82],
+      [-70, -63],
+      [-43, -12],
+      [-41, -65],
+      [39, -46],
+      [-53, -49],
+      [-6, -46],
+      [17, -55],
+      [-123, -62],
+      [11, -45],
+      [-39, -24],
+      [-65, -85],
+      [-91, -4],
+      [-31, -66],
+      [-81, -70],
+      [-125, -2],
+      [-26, 10],
+      [-104, -16],
+      [-70, 44],
+      [-53, -7],
+      [-122, 28],
+      [-112, -38],
+      [-75, -7],
+      [-23, -48],
+      [-209, 24],
+      [-104, -7],
+      [-54, -26],
+      [-24, 24]
+    ],
+    [
+      [9372, 34566],
+      [8, 25],
+      [-41, 95],
+      [20, 30],
+      [-40, 27],
+      [10, 39],
+      [-25, 54],
+      [18, 50],
+      [50, 43],
+      [84, 5],
+      [55, 112],
+      [-17, 57],
+      [67, 139],
+      [55, 43],
+      [-42, 112],
+      [46, 89],
+      [32, 29],
+      [24, 72],
+      [70, 7],
+      [45, 86],
+      [-2, 80],
+      [-28, 109],
+      [-75, -38],
+      [-68, -4],
+      [-53, 55],
+      [-51, -8],
+      [-75, 26],
+      [-55, -44],
+      [-55, 3],
+      [-40, 75],
+      [25, 54],
+      [-22, 73],
+      [-44, 21],
+      [25, 157],
+      [18, 49],
+      [-57, -2],
+      [-29, 28],
+      [-22, 86],
+      [37, 79],
+      [24, 9],
+      [60, 81],
+      [-102, 30],
+      [-4, 92],
+      [-60, 8],
+      [9, 50]
+    ],
+    [
+      [9147, 36749],
+      [-1, 57],
+      [79, 76],
+      [3, 53],
+      [59, 49],
+      [14, 100],
+      [96, 60],
+      [18, 54],
+      [-27, 44],
+      [59, 68],
+      [11, 54],
+      [54, 79],
+      [102, -5],
+      [1, -46],
+      [63, -31],
+      [-34, -48],
+      [27, -28],
+      [103, -3],
+      [-14, 120],
+      [46, 13],
+      [22, -34],
+      [59, -4],
+      [68, -29],
+      [44, 36],
+      [-23, 34],
+      [-80, 34],
+      [-65, 47],
+      [35, 86],
+      [28, -26],
+      [50, 24],
+      [83, -12],
+      [57, 51],
+      [-27, 23],
+      [-60, 151],
+      [9, 50],
+      [-15, 76],
+      [-49, 70],
+      [34, 104],
+      [-17, 49],
+      [-131, 10],
+      [-8, 80],
+      [-89, 61],
+      [13, 29],
+      [-46, 45],
+      [5, 56],
+      [56, 26],
+      [74, 54],
+      [1, 50],
+      [57, 83]
+    ],
+    [
+      [9891, 38639],
+      [47, 37],
+      [11, 85],
+      [44, 67],
+      [105, 15],
+      [145, -62],
+      [91, -22],
+      [156, -95],
+      [34, 48],
+      [78, 43],
+      [96, 120],
+      [36, 14],
+      [71, 94],
+      [21, 68],
+      [85, -27],
+      [122, 9],
+      [50, -16],
+      [24, 22],
+      [98, -20],
+      [28, 27],
+      [120, -30],
+      [12, -38],
+      [71, -22],
+      [6, -28],
+      [76, -10],
+      [18, -31],
+      [54, 18],
+      [82, 7],
+      [94, -13],
+      [30, 80],
+      [110, -6],
+      [115, -61],
+      [18, -34],
+      [-40, -56],
+      [33, -64],
+      [-43, -41],
+      [-14, -115],
+      [-90, 17],
+      [-82, -11],
+      [-14, -41],
+      [29, -73],
+      [-50, -71],
+      [-35, -16],
+      [10, -63],
+      [45, -76],
+      [75, -14],
+      [26, -42],
+      [-34, -60],
+      [38, -67],
+      [45, -178],
+      [-28, -111],
+      [37, -100],
+      [-2, -58],
+      [86, -39],
+      [37, -44],
+      [92, -61],
+      [41, -8],
+      [50, -57],
+      [-66, -127],
+      [-77, -5],
+      [-48, -55],
+      [-7, -43],
+      [16, -65],
+      [-69, -37],
+      [1, -36],
+      [-63, -31],
+      [-26, -50],
+      [26, -63],
+      [-2, -42],
+      [-33, -53],
+      [28, -63],
+      [-9, -87],
+      [-32, -38],
+      [-4, -45],
+      [-41, -43],
+      [32, -58],
+      [45, -4],
+      [54, -31],
+      [-31, -84],
+      [-49, -78],
+      [-84, -53],
+      [-96, -29],
+      [-5, -61],
+      [20, -28],
+      [-11, -53],
+      [-106, -24],
+      [-28, -65],
+      [-108, -20],
+      [-36, -61],
+      [6, -44],
+      [-121, -115],
+      [14, -56],
+      [70, -60],
+      [16, -57]
+    ],
+    [
+      [13369, 2677],
+      [103, -142],
+      [126, -154],
+      [57, -56],
+      [43, -14],
+      [73, -50],
+      [59, -12],
+      [126, -137],
+      [108, -98],
+      [146, -100],
+      [262, -158],
+      [15, -28],
+      [-33, -30],
+      [-10, -96],
+      [23, -90],
+      [25, -34],
+      [-31, -28],
+      [-34, -68],
+      [-28, -22],
+      [-32, -71],
+      [-149, -81],
+      [-97, -85],
+      [2, -38],
+      [-91, -67],
+      [6, -70],
+      [-41, -19],
+      [-1, -45],
+      [-27, -41],
+      [43, -54],
+      [24, -77],
+      [-81, -80],
+      [-67, 2],
+      [-34, -18],
+      [-20, -51],
+      [-91, -79],
+      [-45, -3],
+      [-33, -71],
+      [6, -67],
+      [-29, -8],
+      [-96, 75],
+      [-18, 50],
+      [-42, 42],
+      [-46, -1],
+      [-94, -46],
+      [-16, -51],
+      [-30, -5],
+      [-28, 59],
+      [-53, 42],
+      [-36, 53],
+      [2, 131],
+      [-17, 33],
+      [-71, 15],
+      [-66, 90],
+      [-88, 57],
+      [-62, -25],
+      [-79, -15],
+      [-118, -70]
+    ],
+    [
+      [12684, 771],
+      [-29, 20],
+      [1, 141],
+      [-45, 87],
+      [5, 198],
+      [-38, 76],
+      [-58, 5],
+      [-29, 44],
+      [11, 33],
+      [-44, 90],
+      [-44, 40],
+      [-73, 27],
+      [-15, 68],
+      [-35, 53],
+      [65, 34],
+      [31, 47],
+      [-23, 18],
+      [22, 71],
+      [-28, 83],
+      [19, 49],
+      [-32, 26],
+      [24, 85],
+      [61, 40],
+      [3, 80],
+      [18, 59],
+      [31, 19],
+      [108, 0],
+      [-22, 72],
+      [6, 31],
+      [63, -6],
+      [166, -60],
+      [32, 37],
+      [-51, 37],
+      [40, 40],
+      [45, 15],
+      [93, 86],
+      [51, 72],
+      [-47, 57]
+    ],
+    [
+      [12966, 2645],
+      [12, 44],
+      [-70, 51],
+      [12, 53],
+      [88, 36],
+      [74, -5],
+      [26, -27],
+      [41, 18],
+      [22, -43],
+      [-2, -46],
+      [32, -58],
+      [124, -15],
+      [44, 24]
+    ],
+    [
+      [14473, 33490],
+      [57, 31],
+      [51, -38],
+      [26, 7],
+      [61, 76],
+      [73, -2],
+      [38, 13],
+      [101, -19],
+      [90, 15],
+      [46, -15],
+      [56, 36],
+      [113, 15],
+      [26, -237],
+      [22, -42],
+      [-3, -70],
+      [81, -100],
+      [39, -69],
+      [70, -191],
+      [105, -174],
+      [40, -100],
+      [-9, -122],
+      [209, 15],
+      [173, -51],
+      [86, -5],
+      [-8, -44],
+      [-53, -60],
+      [-69, -17],
+      [-89, -41],
+      [-145, -21],
+      [29, -64],
+      [54, -65],
+      [66, -165],
+      [70, -86],
+      [86, -64],
+      [95, -38],
+      [115, -73],
+      [80, -26]
+    ],
+    [
+      [18501, 34480],
+      [-36, -36],
+      [-9, -54],
+      [59, -24],
+      [16, -47],
+      [-42, -27],
+      [1, -53]
+    ],
+    [
+      [18490, 34239],
+      [-63, -49],
+      [-97, -29],
+      [-41, 22],
+      [-99, -47],
+      [30, -74],
+      [-52, -33],
+      [-75, 55],
+      [-42, 73],
+      [-45, 38],
+      [-49, -8],
+      [-81, -54],
+      [-39, -1],
+      [-48, -73],
+      [-17, -91],
+      [-50, -11],
+      [-51, 64],
+      [-14, 48],
+      [-44, 49],
+      [-36, -4],
+      [-70, 65],
+      [-39, -16],
+      [-158, -6],
+      [-94, -129],
+      [-38, -22],
+      [-32, 29],
+      [-11, 60],
+      [-84, 104],
+      [-88, -13],
+      [-46, 29],
+      [-42, -29],
+      [11, -83],
+      [-29, -36],
+      [-60, -22],
+      [-27, -47],
+      [51, -132],
+      [-16, -32],
+      [6, -65],
+      [-15, -44],
+      [-36, -16],
+      [-11, -60],
+      [-44, -19],
+      [-93, -11],
+      [-62, -104],
+      [3, -71],
+      [-86, -6],
+      [-17, -37],
+      [-60, 6],
+      [-44, 38],
+      [-74, -39],
+      [-17, -27],
+      [-62, -8],
+      [-6, 60],
+      [-151, 38],
+      [16, 67],
+      [-20, 56],
+      [57, 40],
+      [-80, 43],
+      [-154, 120],
+      [-38, 49],
+      [-173, -28],
+      [-85, 40],
+      [-27, 114],
+      [-26, 38],
+      [-72, 65],
+      [4, 83],
+      [-41, 64],
+      [-70, 27],
+      [-19, 31],
+      [-70, 43],
+      [-38, 7],
+      [-76, 73],
+      [-40, 80],
+      [-35, -32],
+      [-92, 37],
+      [-68, 40],
+      [-148, 28],
+      [-43, -78],
+      [-59, 51],
+      [12, 72],
+      [-54, 1],
+      [-42, 28],
+      [-14, 50],
+      [-66, -12],
+      [-90, 75]
+    ],
+    [
+      [14540, 35099],
+      [82, 7],
+      [31, -26],
+      [61, -8],
+      [60, -144],
+      [46, -46],
+      [59, -29],
+      [78, -62],
+      [23, -38],
+      [115, -95],
+      [70, -23],
+      [110, -7],
+      [50, -27],
+      [186, -131],
+      [96, -40],
+      [91, -18],
+      [66, 12],
+      [58, -20],
+      [91, 14],
+      [139, -32],
+      [29, -60],
+      [10, -67],
+      [-26, -78],
+      [-52, -84],
+      [39, -55],
+      [96, -4],
+      [81, -59],
+      [75, -19],
+      [33, 61],
+      [-56, 53],
+      [26, 64],
+      [42, 23],
+      [127, 24],
+      [57, 28],
+      [82, 109],
+      [121, 33],
+      [102, 74],
+      [147, 33],
+      [94, 47],
+      [64, 9],
+      [59, -12],
+      [118, -80],
+      [59, 16],
+      [55, 52],
+      [70, 88],
+      [12, 65],
+      [-24, 60],
+      [24, 137],
+      [33, 32],
+      [132, 67],
+      [39, 36],
+      [23, 92],
+      [-17, 75],
+      [64, 79],
+      [95, 25],
+      [107, 43],
+      [126, 25],
+      [63, 35]
+    ],
+    [
+      [8960, 23710],
+      [51, 40],
+      [114, -33],
+      [32, -36]
+    ],
+    [
+      [9157, 23681],
+      [-38, -168],
+      [16, -51],
+      [55, -103],
+      [37, -25],
+      [67, 5],
+      [132, -31],
+      [62, -38],
+      [32, 11],
+      [95, -87],
+      [94, 5],
+      [63, 31],
+      [56, -10]
+    ],
+    [
+      [9157, 23681],
+      [300, -3],
+      [108, -8],
+      [58, 14],
+      [56, 32],
+      [101, -43],
+      [46, 26],
+      [173, 56],
+      [240, 117],
+      [258, 117],
+      [125, 50]
+    ],
+    [
+      [10622, 24039],
+      [205, 86],
+      [6, -84],
+      [179, 80]
+    ],
+    [
+      [12966, 2645],
+      [-76, -41],
+      [-99, 15],
+      [-53, 56],
+      [10, 35],
+      [-41, 39],
+      [-51, 5],
+      [-46, -29],
+      [-55, 3],
+      [-44, -37],
+      [-53, 37],
+      [-111, -75],
+      [-31, 3],
+      [-122, -42],
+      [-65, 40],
+      [-42, -1],
+      [-36, 92],
+      [-1, 41],
+      [32, 17],
+      [-13, 66],
+      [-45, 68],
+      [-35, -40],
+      [-61, -23],
+      [-42, -39],
+      [-22, -49],
+      [-52, -56],
+      [-163, 21],
+      [-37, 20],
+      [-49, -4],
+      [-78, 54]
+    ],
+    [
+      [11485, 2821],
+      [-68, 39],
+      [-83, 80],
+      [10, 39],
+      [-12, 83],
+      [-114, 24],
+      [37, 61],
+      [-11, 93],
+      [42, 48],
+      [43, 21],
+      [26, 63],
+      [-68, 43],
+      [61, 42]
+    ],
+    [
+      [11348, 3457],
+      [120, 13],
+      [182, 0],
+      [145, 30],
+      [79, 38],
+      [40, 44],
+      [44, 3],
+      [57, -53],
+      [38, -14],
+      [49, 22],
+      [60, -45],
+      [45, 42],
+      [-6, 70],
+      [49, -19],
+      [205, -46],
+      [61, -3],
+      [228, -72],
+      [19, 12],
+      [56, -52],
+      [59, -28],
+      [199, -314],
+      [33, -25],
+      [83, -135],
+      [176, -248]
+    ],
+    [
+      [3653, 6925],
+      [99, -67],
+      [41, -2],
+      [21, -50],
+      [47, -40],
+      [-32, -72],
+      [10, -67],
+      [28, -41],
+      [-3, -98],
+      [-34, -87],
+      [-27, -10],
+      [-44, 41],
+      [-39, 98],
+      [21, 48],
+      [47, 46],
+      [1, 62],
+      [-64, 54],
+      [-45, 4],
+      [-19, 51],
+      [-43, 47],
+      [-19, 49],
+      [54, 34]
+    ],
+    [
+      [3939, 7162],
+      [-2, -104],
+      [-52, -143],
+      [-53, 12],
+      [-26, -19],
+      [-80, 51],
+      [65, 13],
+      [40, 100],
+      [108, 90]
+    ],
+    [
+      [3453, 7643],
+      [-12, -75],
+      [-27, 6],
+      [13, 35],
+      [-10, 27],
+      [-16, 18],
+      [-6, 18],
+      [35, 2],
+      [23, -31]
+    ],
+    [
+      [2821, 9468],
+      [121, -44],
+      [44, -44],
+      [-45, -100],
+      [-40, -19],
+      [-29, -55],
+      [-11, -71],
+      [-41, -74],
+      [-17, 62],
+      [-46, 63],
+      [41, 74],
+      [-4, 115],
+      [-26, 87],
+      [53, 6]
+    ],
+    [
+      [2883, 9897],
+      [61, -104],
+      [41, -34],
+      [34, -105],
+      [-21, -39],
+      [-121, -98],
+      [-128, 1],
+      [17, 108],
+      [-8, 156],
+      [38, 40],
+      [-3, 66],
+      [90, 9]
+    ],
+    [
+      [2959, 9905],
+      [72, -62],
+      [-22, -61],
+      [-60, 74],
+      [10, 49]
+    ],
+    [
+      [2954, 10147],
+      [-33, -87],
+      [-41, -44],
+      [18, -26],
+      [-33, -59],
+      [-62, -25],
+      [1, 98],
+      [25, -2],
+      [79, 105],
+      [46, 40]
+    ],
+    [
+      [3542, 10290],
+      [64, -34],
+      [-7, -28],
+      [18, -89],
+      [-22, -56],
+      [-71, -63],
+      [-23, -67],
+      [29, -96],
+      [-57, -12],
+      [9, -92],
+      [23, -97],
+      [-64, -47],
+      [2, -42],
+      [48, -80],
+      [48, -58],
+      [-31, -41],
+      [-135, -53],
+      [14, -83],
+      [-3, -56],
+      [-27, -57],
+      [86, -16],
+      [101, -30],
+      [22, -52],
+      [62, -4],
+      [63, -126],
+      [134, -47],
+      [-14, -237],
+      [-38, -25],
+      [-35, -58],
+      [-74, -23],
+      [-29, -35],
+      [87, -65],
+      [64, -27],
+      [150, 40],
+      [39, 45],
+      [81, 6],
+      [62, -45],
+      [26, -36]
+    ],
+    [
+      [4026, 7907],
+      [-2, -76],
+      [-34, -4],
+      [-29, -32],
+      [45, -66],
+      [-9, -18],
+      [-97, -8],
+      [-23, 58],
+      [-67, -65],
+      [-6, -47],
+      [-64, -4],
+      [-116, -73],
+      [-66, -15],
+      [-97, 59],
+      [-1, 27],
+      [-25, 32],
+      [-39, 4],
+      [-4, -16],
+      [3, -22],
+      [7, -58],
+      [40, -30],
+      [-96, -16],
+      [11, -37],
+      [39, -31],
+      [-3, -86],
+      [34, -128],
+      [-74, -82],
+      [-26, -76],
+      [24, -33],
+      [-48, -43],
+      [-16, 57],
+      [-30, 17],
+      [-75, -99],
+      [-42, 34],
+      [-8, 48],
+      [-36, 91],
+      [-75, -23],
+      [-34, 43],
+      [-91, 32],
+      [-37, -8],
+      [0, 114],
+      [-38, 168],
+      [-69, 258],
+      [-34, 100],
+      [-44, 187],
+      [-48, 155],
+      [53, 62],
+      [46, 20],
+      [11, 35],
+      [-24, 76],
+      [30, 11],
+      [10, 63],
+      [-16, 47],
+      [-21, 179],
+      [47, 27],
+      [34, 54],
+      [-8, 106],
+      [15, 52],
+      [1, 110],
+      [27, 15],
+      [50, 81],
+      [-1, 69],
+      [29, 51],
+      [33, 19],
+      [40, 78],
+      [36, 18],
+      [80, -51],
+      [78, -81],
+      [-48, 124],
+      [-34, 21],
+      [8, 58],
+      [-83, 15],
+      [-49, 68],
+      [29, 57],
+      [76, 46],
+      [80, 16],
+      [-79, 63],
+      [-33, 56],
+      [-9, 92],
+      [-63, 87],
+      [-5, 52],
+      [33, 58],
+      [55, -2],
+      [61, -25],
+      [0, 41],
+      [-59, 23],
+      [95, 157],
+      [10, 80],
+      [35, 74]
+    ],
+    [
+      [3196, 10397],
+      [35, 9],
+      [38, -29],
+      [83, 33],
+      [29, -11],
+      [51, -75],
+      [44, -37],
+      [66, 3]
+    ],
+    [
+      [8542, 6280],
+      [-20, -98],
+      [-31, -94],
+      [56, 23],
+      [81, -12],
+      [30, -52],
+      [79, -15],
+      [58, -305],
+      [7, -227],
+      [19, -184],
+      [63, -84],
+      [84, -83],
+      [39, -18],
+      [117, 229],
+      [116, 10],
+      [64, -101],
+      [14, -66],
+      [-23, -114],
+      [36, -184],
+      [54, -162],
+      [26, -26],
+      [-11, -79],
+      [-73, -50],
+      [-49, 37],
+      [-23, 83],
+      [-46, -6],
+      [-21, -80],
+      [-57, -10],
+      [14, -48],
+      [-21, -39],
+      [-57, -26],
+      [-28, -54],
+      [-66, -2],
+      [-131, -49],
+      [-56, 2],
+      [-36, -21],
+      [-114, -31],
+      [-56, -73],
+      [-29, 0],
+      [-81, 47],
+      [-76, -41],
+      [-65, -13],
+      [-34, -25],
+      [-19, -83]
+    ],
+    [
+      [8276, 4156],
+      [-52, 5],
+      [-47, -16],
+      [-79, 28]
+    ],
+    [
+      [8098, 4173],
+      [-40, 68],
+      [-39, 28],
+      [-74, 156],
+      [0, 31],
+      [-46, 72],
+      [39, 76],
+      [-18, 38],
+      [-2, 92],
+      [-63, 12],
+      [-44, 28],
+      [-2, 72],
+      [-26, 27],
+      [19, 64],
+      [-122, 148],
+      [-13, 54],
+      [-29, 26],
+      [16, 35],
+      [-36, 46],
+      [-63, 38],
+      [42, 103],
+      [-35, 19],
+      [-78, 92],
+      [36, 88],
+      [-54, 69],
+      [51, 1],
+      [30, 36],
+      [0, 55],
+      [-90, 61],
+      [1, 50],
+      [-35, 118],
+      [-30, 21],
+      [11, 54],
+      [-34, 39],
+      [-33, 96],
+      [-39, 55]
+    ],
+    [
+      [9147, 36749],
+      [-5, 21],
+      [-83, -6],
+      [-26, 22],
+      [-193, 3],
+      [-40, 16],
+      [-84, -32],
+      [-121, 57],
+      [-77, -48],
+      [-61, -23]
+    ],
+    [
+      [9350, 39342],
+      [58, -20],
+      [51, -58],
+      [-44, -97],
+      [41, -23],
+      [5, -82],
+      [52, -46],
+      [43, -15],
+      [35, -42],
+      [6, -85],
+      [-44, -95],
+      [21, -123],
+      [88, -4],
+      [61, 21],
+      [126, -34],
+      [42, 0]
+    ],
+    [
+      [10458, 28932],
+      [-120, 71],
+      [-266, 74],
+      [35, 157],
+      [-4, 52],
+      [-29, 34],
+      [194, 289],
+      [39, 37],
+      [-45, 21],
+      [-36, -38],
+      [-42, 1],
+      [-46, 87],
+      [-45, 36],
+      [-5, 88]
+    ],
+    [
+      [10088, 29841],
+      [37, 20],
+      [19, 49],
+      [52, 47],
+      [68, 35],
+      [-12, 84],
+      [14, 24],
+      [204, 23],
+      [8, 34],
+      [72, 31],
+      [-19, 61],
+      [69, 28],
+      [-7, 33],
+      [58, 28],
+      [10, 49],
+      [37, 3],
+      [-3, 49],
+      [31, 16],
+      [-22, 54],
+      [-9, 72],
+      [43, 125],
+      [96, 90],
+      [101, -6],
+      [20, 80],
+      [-26, 16],
+      [17, 51],
+      [-48, 33],
+      [25, 42],
+      [-14, 35],
+      [-56, 8],
+      [-11, 32],
+      [72, 50],
+      [106, 9],
+      [10, 67],
+      [68, 31],
+      [4, 53],
+      [95, 25],
+      [46, 46],
+      [13, 51],
+      [49, 35],
+      [65, -2]
+    ],
+    [
+      [7667, 21490],
+      [-11, -58],
+      [20, -173],
+      [80, 21],
+      [45, 93],
+      [77, -17],
+      [37, 35],
+      [45, 9]
+    ],
+    [
+      [7960, 21400],
+      [-3, -91],
+      [54, -54],
+      [50, -24],
+      [58, -96],
+      [44, -43],
+      [78, -32],
+      [67, -46],
+      [-11, -79],
+      [4, -108],
+      [60, -79],
+      [59, -14],
+      [-28, -46],
+      [-101, -111],
+      [-68, -100],
+      [-29, -78],
+      [-12, -112],
+      [-39, -101],
+      [-40, -59],
+      [-78, -195],
+      [-24, -78],
+      [-10, -145],
+      [-24, -156]
+    ],
+    [
+      [7967, 19553],
+      [-90, -8],
+      [-62, 16],
+      [-68, -42],
+      [-51, 14],
+      [-61, -11],
+      [-81, 16],
+      [-191, -121],
+      [-30, 123],
+      [-122, 68],
+      [-120, -20],
+      [-68, -26],
+      [-45, 20],
+      [-51, -20],
+      [-2, -60],
+      [39, -36],
+      [-15, -99],
+      [6, -32],
+      [-32, -41],
+      [-58, 22],
+      [-29, 63],
+      [-25, 16],
+      [-89, 8],
+      [-72, -50],
+      [-72, 36],
+      [-22, 38],
+      [-40, 5],
+      [-79, -30],
+      [-44, 11]
+    ],
+    [
+      [6393, 19413],
+      [-83, 91],
+      [-45, -8],
+      [-96, 34],
+      [5, 21],
+      [-72, 27],
+      [-17, 54],
+      [-131, 45],
+      [-15, 103],
+      [-63, 39],
+      [-91, -15],
+      [-36, 55],
+      [18, 29],
+      [2, 67],
+      [-21, 37],
+      [-17, 90],
+      [-99, 63],
+      [-14, 45],
+      [9, 50],
+      [-23, 25],
+      [7, 60],
+      [-59, 43],
+      [27, 48],
+      [38, 5],
+      [31, 42],
+      [-73, 149],
+      [-79, 55],
+      [-78, 29],
+      [-63, 95],
+      [87, 71],
+      [25, 88],
+      [-6, 83],
+      [-37, 15],
+      [5, 69],
+      [46, 30],
+      [78, 7],
+      [53, -42],
+      [49, 2],
+      [40, 37]
+    ],
+    [
+      [5695, 21151],
+      [59, -14],
+      [44, -45],
+      [76, -103],
+      [167, 79],
+      [-17, 70],
+      [22, 54],
+      [76, 57],
+      [64, -62],
+      [120, -54],
+      [62, -15],
+      [23, -29],
+      [46, -1],
+      [74, 45],
+      [22, -26],
+      [67, -31],
+      [45, 83],
+      [76, -21],
+      [58, 6],
+      [35, -21],
+      [76, 23],
+      [81, -1],
+      [108, 27],
+      [12, 59],
+      [-8, 140],
+      [63, 23],
+      [42, 64],
+      [137, 58],
+      [87, 7],
+      [91, -30],
+      [21, 29],
+      [62, -2],
+      [81, -30]
+    ],
+    [
+      [8148, 30534],
+      [65, 24],
+      [41, -30],
+      [98, 19],
+      [54, 72],
+      [62, 7],
+      [118, -40],
+      [83, 34],
+      [53, 105],
+      [35, 4],
+      [60, -62],
+      [-5, -151],
+      [4, -94],
+      [18, -18],
+      [75, 26],
+      [179, -37],
+      [121, 30],
+      [48, 32],
+      [55, -76],
+      [22, 19],
+      [73, -39],
+      [124, 20],
+      [49, 50],
+      [10, 45],
+      [74, 58],
+      [101, 12],
+      [128, 46],
+      [39, -34],
+      [-6, -145],
+      [-25, -24],
+      [-14, -138],
+      [25, -30],
+      [18, -69],
+      [-1, -62],
+      [15, -87],
+      [67, -54],
+      [-20, -76],
+      [8, -71],
+      [56, 42],
+      [33, -1]
+    ],
+    [
+      [7669, 30985],
+      [36, 63],
+      [159, 14],
+      [-1, 56],
+      [-28, 52],
+      [94, 65],
+      [31, 91],
+      [114, 25],
+      [47, -46],
+      [52, 30],
+      [-39, 37],
+      [11, 47],
+      [98, 7],
+      [66, -24],
+      [89, 30],
+      [42, 130],
+      [-25, 112],
+      [-110, 82],
+      [-37, -10],
+      [-124, 76],
+      [-54, 116],
+      [-31, 12],
+      [-63, -33],
+      [-43, 26],
+      [13, 42],
+      [-12, 53],
+      [40, 30],
+      [-27, 82],
+      [5, 42],
+      [50, -14],
+      [23, 24]
+    ],
+    [
+      [8045, 32202],
+      [52, 38],
+      [103, -64],
+      [24, 45],
+      [102, 1],
+      [128, 57],
+      [132, 29],
+      [57, -58],
+      [35, 5],
+      [200, 142],
+      [-17, 101],
+      [-29, 104],
+      [19, 98],
+      [137, 65],
+      [48, 11],
+      [52, -22],
+      [23, 40],
+      [61, 16],
+      [25, -18],
+      [99, 43],
+      [150, 51],
+      [153, 1],
+      [38, 26],
+      [22, -56],
+      [131, 17],
+      [58, 21],
+      [46, -10],
+      [56, 26],
+      [-1, 52],
+      [33, 53],
+      [43, 23],
+      [50, -2],
+      [-8, 55],
+      [86, 23],
+      [55, 57],
+      [45, 23],
+      [95, 23],
+      [31, 47],
+      [95, 87],
+      [30, 55],
+      [75, 102],
+      [83, 16],
+      [23, 19],
+      [43, 96],
+      [50, 61],
+      [97, 5],
+      [12, -35],
+      [44, -13],
+      [92, 12],
+      [67, 43],
+      [36, 77]
+    ],
+    [
+      [11126, 33790],
+      [52, -49],
+      [0, -98],
+      [-46, -62],
+      [10, -105],
+      [-20, -53],
+      [-86, -105]
+    ],
+    [
+      [9946, 25185],
+      [-62, -81],
+      [-21, -83],
+      [85, -51],
+      [-6, -62],
+      [117, -14],
+      [64, 1],
+      [42, 85],
+      [51, 7],
+      [77, -34],
+      [203, -11],
+      [-22, -47],
+      [-1, -68],
+      [-82, -25],
+      [2, -20],
+      [69, -47],
+      [-21, -26],
+      [17, -52],
+      [-26, -46],
+      [24, -40],
+      [-31, -58],
+      [104, -56],
+      [-17, -39],
+      [-18, -111],
+      [16, -48],
+      [110, 13],
+      [2, -233]
+    ],
+    [
+      [8846, 23945],
+      [1, 208],
+      [49, 55],
+      [26, 59],
+      [4, 167],
+      [34, 29],
+      [-21, 93],
+      [-68, 32],
+      [-20, 49],
+      [27, 67]
+    ],
+    [
+      [9372, 34566],
+      [-67, -1],
+      [-51, -58],
+      [-77, -48],
+      [17, -55],
+      [10, -110],
+      [-35, -25],
+      [-19, -60],
+      [-46, -6],
+      [-40, 49],
+      [-19, 66],
+      [-58, 10],
+      [-36, 58],
+      [-37, -12],
+      [-53, 25],
+      [-66, -39],
+      [-32, -56],
+      [-61, -61],
+      [-77, -44],
+      [-28, -2],
+      [-49, -64],
+      [-47, -27],
+      [-215, -64],
+      [-39, 38],
+      [-95, -37],
+      [-85, -10],
+      [13, -44],
+      [-33, -41],
+      [-53, -6],
+      [-13, -46],
+      [-66, 4],
+      [-79, 58],
+      [-43, 9]
+    ],
+    [
+      [7793, 33967],
+      [-165, -24],
+      [-79, 15],
+      [-122, -44],
+      [-74, -134],
+      [-67, -49],
+      [-65, 47],
+      [-14, 52],
+      [-43, 5],
+      [-15, 51],
+      [-49, 64],
+      [-46, -14],
+      [-78, 54],
+      [-93, 18],
+      [-100, -29],
+      [-70, -2],
+      [-80, -42],
+      [-4, -35],
+      [-52, -24],
+      [-52, -82],
+      [-29, -18]
+    ],
+    [
+      [3152, 5569],
+      [-1, -35],
+      [-45, -41],
+      [-30, 31],
+      [31, 43],
+      [45, 2]
+    ],
+    [
+      [3335, 6479],
+      [-19, -42],
+      [-39, 4],
+      [-7, 43],
+      [65, -5]
+    ],
+    [
+      [2893, 7200],
+      [137, -81],
+      [23, -122],
+      [45, -35],
+      [46, 3],
+      [0, -45],
+      [33, -37],
+      [60, -17],
+      [75, 51],
+      [13, -35],
+      [-9, -112],
+      [-41, -13],
+      [-23, -42],
+      [6, -98],
+      [-57, -35],
+      [-1, -48],
+      [57, -120],
+      [31, -42],
+      [54, 34],
+      [-3, -91],
+      [-72, -31],
+      [-52, -2],
+      [-16, -57],
+      [43, -90],
+      [-68, -4],
+      [-30, 65],
+      [-83, -36],
+      [-45, -111],
+      [18, -18],
+      [-110, -51],
+      [1, 43],
+      [-47, -4],
+      [-6, 46],
+      [37, 32],
+      [-28, 150],
+      [-53, 33],
+      [53, 45],
+      [16, 71],
+      [-111, 69],
+      [71, 45],
+      [-10, 66],
+      [44, 75],
+      [-14, 74],
+      [-38, 33],
+      [4, 59],
+      [-19, 34],
+      [81, 41],
+      [14, 85],
+      [-25, 127],
+      [-29, 85],
+      [28, 11]
+    ],
+    [
+      [14538, 23780],
+      [-23, -61],
+      [2, -68],
+      [-29, -32],
+      [-51, -15],
+      [-102, -63],
+      [4, -69],
+      [-24, -13],
+      [-129, -8],
+      [-119, -28],
+      [-52, -41],
+      [14, -56],
+      [1, -97],
+      [30, -55],
+      [-116, 5],
+      [-19, -58],
+      [-4, -89],
+      [73, -79],
+      [-24, -64],
+      [26, -50],
+      [45, -10],
+      [-3, -119],
+      [-72, -41],
+      [68, -41],
+      [-12, -75],
+      [32, -108],
+      [-22, -57],
+      [40, -61],
+      [-48, -78],
+      [-75, 18],
+      [-8, -60]
+    ],
+    [
+      [7967, 19553],
+      [2, -136],
+      [59, -174],
+      [-4, -62],
+      [15, -115],
+      [15, -21],
+      [-8, -72],
+      [37, -47],
+      [22, -100],
+      [-6, -87],
+      [-32, -55],
+      [-45, -141],
+      [16, -54],
+      [68, -63],
+      [1, -42],
+      [59, -67],
+      [-48, -58],
+      [-91, -67],
+      [-44, -93],
+      [22, -35],
+      [-17, -33],
+      [-51, -8],
+      [-243, -243],
+      [-64, -84],
+      [-88, -180],
+      [-10, -85],
+      [68, -83],
+      [-46, -5],
+      [-65, -62],
+      [8, -52],
+      [29, -33],
+      [-44, -40],
+      [25, -33],
+      [-40, -42],
+      [-123, -95],
+      [-81, -90],
+      [-28, -67],
+      [-127, -187],
+      [-73, -125],
+      [-46, -95],
+      [-24, -92],
+      [-50, -88],
+      [-17, -75],
+      [-62, -116],
+      [-11, -49],
+      [-44, -22],
+      [-36, -84],
+      [-15, -137],
+      [15, -67],
+      [34, -67],
+      [44, -36],
+      [-11, -49],
+      [-48, 27],
+      [-69, 12],
+      [-56, -30],
+      [-60, -64],
+      [-38, -81],
+      [-7, -75],
+      [30, -158],
+      [16, -40],
+      [-1, -89],
+      [-14, -72]
+    ],
+    [
+      [5512, 15093],
+      [67, 37],
+      [21, 102],
+      [27, 1],
+      [118, 83],
+      [14, 86],
+      [64, 71],
+      [28, 84],
+      [23, 13],
+      [51, -39],
+      [65, 76],
+      [7, 46],
+      [-42, 42],
+      [35, 22],
+      [58, 85],
+      [-41, 76],
+      [88, 62],
+      [6, 29],
+      [65, 68],
+      [93, 29],
+      [29, 69],
+      [-36, 130],
+      [4, 22],
+      [79, 54],
+      [60, -6],
+      [42, 87],
+      [61, 73],
+      [-33, 59],
+      [-14, 67],
+      [26, 90],
+      [33, 28],
+      [117, 36],
+      [36, -41],
+      [110, 13],
+      [28, 60],
+      [43, 31],
+      [-12, 46],
+      [59, 89],
+      [109, 66],
+      [-2, 69],
+      [19, 35],
+      [3, 61],
+      [43, 107],
+      [-52, -5],
+      [-53, 32],
+      [1, 33],
+      [-46, 51],
+      [-66, 11],
+      [3, 39],
+      [-30, 51],
+      [21, 70],
+      [-18, 40],
+      [35, 20],
+      [2, 108],
+      [-47, 45],
+      [-120, 22],
+      [10, 62],
+      [-26, 48],
+      [4, 34],
+      [67, 75],
+      [-1, 57],
+      [29, 89],
+      [-46, 15],
+      [-148, -18],
+      [-24, -40],
+      [-65, 18],
+      [3, 59],
+      [41, 24],
+      [25, 65],
+      [-22, 76],
+      [-43, 42],
+      [27, 58],
+      [6, 58],
+      [-69, 34],
+      [1, 32],
+      [-85, 126],
+      [25, 39],
+      [-31, 20],
+      [32, 52],
+      [1, 80],
+      [-53, 44],
+      [-2, 62],
+      [-67, 31],
+      [9, 57],
+      [61, 29],
+      [-23, 91],
+      [17, 92],
+      [47, 74]
+    ],
+    [
+      [3264, 11576],
+      [31, -99],
+      [-24, -45],
+      [-38, -20],
+      [-54, 54],
+      [6, 46],
+      [53, 3],
+      [26, 61]
+    ],
+    [
+      [3391, 11834],
+      [42, -27],
+      [-21, -40],
+      [16, -40],
+      [-45, -27],
+      [-18, -45],
+      [-45, 17],
+      [-4, 51],
+      [32, 28],
+      [-13, 69],
+      [56, 14]
+    ],
+    [
+      [4253, 11105],
+      [-4, -48],
+      [68, -42],
+      [25, -68],
+      [-63, -26],
+      [-132, -139],
+      [-33, -45],
+      [-86, -30],
+      [47, -60],
+      [-28, -33],
+      [-75, -29],
+      [22, -43],
+      [45, -30],
+      [1, -78],
+      [-30, -38],
+      [-76, 27],
+      [-70, -41],
+      [-42, 18],
+      [-44, 48],
+      [-57, -20],
+      [-55, 6],
+      [-104, -95],
+      [-20, -49]
+    ],
+    [
+      [3196, 10397],
+      [15, 107],
+      [52, 56],
+      [46, 97],
+      [29, 202],
+      [50, 141],
+      [60, -93],
+      [-16, -87],
+      [37, 11],
+      [0, 82],
+      [52, 57],
+      [80, 37],
+      [-6, 42],
+      [-45, 39],
+      [-50, -11],
+      [-73, 22],
+      [-15, 83],
+      [46, 15],
+      [66, -64],
+      [3, 67],
+      [19, 60],
+      [-46, 14],
+      [-7, 48],
+      [60, -18],
+      [58, 26],
+      [38, 38],
+      [17, 61],
+      [34, 33],
+      [-12, 32],
+      [-127, 35],
+      [-17, 81],
+      [80, 22],
+      [22, 26],
+      [-74, 144],
+      [61, 88],
+      [45, 13],
+      [19, -31],
+      [51, 84],
+      [-12, 43],
+      [67, 32],
+      [-1, 64],
+      [40, 114],
+      [59, 104],
+      [34, 34],
+      [28, 72],
+      [78, 99],
+      [86, 232],
+      [57, 106],
+      [66, 177],
+      [0, 36],
+      [36, 33],
+      [16, 201],
+      [36, 35],
+      [14, 45],
+      [41, 58],
+      [51, 11],
+      [-3, 30],
+      [35, 36],
+      [7, 55],
+      [26, 53],
+      [-22, 64],
+      [14, 46],
+      [-44, 33],
+      [4, 78],
+      [-30, 45],
+      [-64, 36],
+      [9, 65],
+      [21, 18],
+      [-11, 88],
+      [115, 111],
+      [70, 100],
+      [59, 56],
+      [64, 37],
+      [19, -30]
+    ],
+    [
+      [8308, 22387],
+      [9, -35],
+      [-48, -27],
+      [1, -27],
+      [-68, -20],
+      [33, -43],
+      [-17, -47],
+      [20, -111],
+      [-42, -32],
+      [0, -57]
+    ],
+    [
+      [8196, 21988],
+      [-60, 21],
+      [-44, -56],
+      [-26, 14],
+      [-67, -32],
+      [-11, 23],
+      [-125, 12],
+      [-53, -33],
+      [-35, -53],
+      [-4, -111],
+      [-73, -153],
+      [-31, -130]
+    ],
+    [
+      [5695, 21151],
+      [-5, 51],
+      [-37, 88],
+      [36, 25],
+      [-64, 66],
+      [10, 75],
+      [53, 52],
+      [-5, 185],
+      [18, 31],
+      [-35, 104],
+      [26, 21],
+      [-59, 103],
+      [14, 46],
+      [0, 85],
+      [-86, 85],
+      [43, 34],
+      [-36, 65],
+      [15, 60],
+      [-16, 66],
+      [13, 44],
+      [-17, 32],
+      [16, 73],
+      [-15, 59]
+    ],
+    [
+      [13593, 19828],
+      [-43, -61],
+      [-4, -45],
+      [-103, 40],
+      [-90, -12],
+      [-88, -26],
+      [-58, -30],
+      [-91, -110],
+      [-125, 23],
+      [-108, -14],
+      [-2, -44],
+      [-51, -7],
+      [-259, 11],
+      [-82, -19],
+      [-33, -21],
+      [-3, -47],
+      [-32, -26],
+      [-149, 80],
+      [-180, 68],
+      [-68, 32],
+      [-148, 23],
+      [-294, 22],
+      [-121, 15],
+      [-109, -11],
+      [-64, -26],
+      [-155, -25]
+    ],
+    [
+      [21392, 29837],
+      [-33, -71],
+      [10, -22],
+      [-36, -53],
+      [-65, -46],
+      [-38, -45],
+      [-71, -42],
+      [-76, -21],
+      [-23, -77],
+      [-82, -91],
+      [-33, 17],
+      [-48, -45],
+      [-68, -14],
+      [-43, -65],
+      [-47, -24],
+      [-65, 11],
+      [-62, -115],
+      [19, -63],
+      [35, -25],
+      [-9, -67],
+      [-29, -34],
+      [7, -58],
+      [-37, -19],
+      [-102, 27],
+      [-84, -13],
+      [-10, -60],
+      [29, -59],
+      [-62, -109],
+      [-3, -40],
+      [31, -21],
+      [7, -72],
+      [-48, -36],
+      [-8, -51],
+      [-27, -31],
+      [3, -40],
+      [101, 2],
+      [136, 69],
+      [56, 9],
+      [39, -47],
+      [75, -26],
+      [10, -34],
+      [-34, -47],
+      [22, -95],
+      [-20, -37],
+      [38, -28],
+      [85, -104],
+      [31, -94],
+      [-18, -25],
+      [65, -51],
+      [-90, -27],
+      [-125, -72],
+      [-1, -40]
+    ],
+    [
+      [20694, 27716],
+      [-52, 14],
+      [-96, -82],
+      [12, -24],
+      [-65, -42],
+      [13, -41],
+      [-75, -24],
+      [-124, -122],
+      [-25, -115]
+    ],
+    [
+      [20282, 27280],
+      [-36, 38],
+      [-84, -18],
+      [-21, 39],
+      [-66, 34],
+      [-67, 10],
+      [-60, 68],
+      [-96, -33],
+      [-46, 12],
+      [-50, -35],
+      [-173, -30],
+      [-42, 29],
+      [-68, -25],
+      [-212, 36],
+      [-159, 45],
+      [-80, -13],
+      [-61, -31],
+      [-57, -65],
+      [-61, 0],
+      [-72, 26],
+      [-54, 42],
+      [-115, 5],
+      [-118, -57]
+    ],
+    [
+      [17051, 23851],
+      [36, -69],
+      [-46, -52],
+      [-10, -80],
+      [-67, -60],
+      [-8, -92],
+      [32, -82],
+      [-45, -38],
+      [-76, -6],
+      [-61, -53],
+      [-102, -58],
+      [-38, -62],
+      [-62, -28],
+      [-46, -214],
+      [-32, -29],
+      [-102, -140],
+      [24, -60],
+      [-46, 2],
+      [-86, -63],
+      [-29, -7],
+      [-241, -114],
+      [-60, -22],
+      [-56, -49],
+      [-42, -64],
+      [67, -48],
+      [30, -44],
+      [64, -14],
+      [-16, -38],
+      [-66, -13],
+      [-13, -50],
+      [-134, -59],
+      [-110, 21],
+      [-157, -34],
+      [-59, 32],
+      [-82, -12],
+      [-85, 28],
+      [-28, -36],
+      [-53, -22],
+      [-11, -41],
+      [83, -103],
+      [-20, -160],
+      [17, -116],
+      [-48, -162],
+      [21, -20],
+      [21, -86],
+      [-17, -28]
+    ],
+    [
+      [19290, 31772],
+      [-13, 25],
+      [21, 68],
+      [-29, 73],
+      [35, 76],
+      [-94, 42],
+      [-46, 74],
+      [-25, 7],
+      [-64, 61],
+      [-62, -41],
+      [-157, 99],
+      [-147, 75],
+      [-64, -20],
+      [-85, 20],
+      [-18, -20],
+      [-121, 65],
+      [-50, 0],
+      [-32, 54],
+      [-105, 23],
+      [-32, 18],
+      [-69, -9],
+      [-29, 17],
+      [-66, 107],
+      [43, 48],
+      [19, 58],
+      [90, 114],
+      [-59, 78],
+      [-21, 74],
+      [43, 64],
+      [-3, 88],
+      [74, 56],
+      [16, 66],
+      [50, 41],
+      [18, 55],
+      [58, 37],
+      [111, 11],
+      [20, 105],
+      [-11, 50],
+      [24, 48],
+      [-17, 52],
+      [27, 121],
+      [-29, 78],
+      [-41, -16],
+      [-19, 48],
+      [-35, 27],
+      [-2, 41],
+      [60, 80],
+      [-7, 56],
+      [61, 19],
+      [0, 79],
+      [35, 6],
+      [-32, 69],
+      [-21, 0]
+    ],
+    [
+      [10698, 21910],
+      [-118, 33],
+      [-327, 41],
+      [-68, 3],
+      [-174, 51],
+      [-43, 42],
+      [-83, 39],
+      [13, -59],
+      [-47, -50],
+      [-257, -38],
+      [-107, 2]
+    ],
+    [
+      [9350, 21951],
+      [-163, -19],
+      [-128, 12],
+      [-98, 44],
+      [-41, -58],
+      [-39, -25],
+      [-91, -20],
+      [-232, -61],
+      [-212, -63]
+    ],
+    [
+      [8346, 21761],
+      [-18, 88],
+      [-94, 125],
+      [-38, 14]
+    ],
+    [
+      [8346, 21761],
+      [-67, -25],
+      [-54, -62],
+      [-17, -63],
+      [-35, -27],
+      [-73, 17],
+      [1, -96],
+      [-126, -74],
+      [-15, -31]
+    ],
+    [
+      [5534, 2580],
+      [80, -59],
+      [-27, -13],
+      [-54, 17],
+      [1, 55]
+    ],
+    [
+      [5896, 2680],
+      [150, -72],
+      [-6, -75],
+      [-34, -44],
+      [-87, -2],
+      [-8, 86],
+      [-21, 33],
+      [6, 74]
+    ],
+    [
+      [5807, 2695],
+      [26, -20],
+      [5, -55],
+      [-57, -14],
+      [-66, -37],
+      [-85, 23],
+      [6, 82],
+      [94, 0],
+      [77, 21]
+    ],
+    [
+      [7643, 3115],
+      [31, -7],
+      [14, -74],
+      [-71, 13],
+      [26, 68]
+    ],
+    [
+      [7067, 3074],
+      [16, -45],
+      [33, -5],
+      [23, -47],
+      [2, -107],
+      [-18, -56],
+      [48, -69],
+      [13, -124],
+      [-14, -70],
+      [-34, 14],
+      [-47, -22],
+      [7, -31],
+      [-53, -40],
+      [-25, 38],
+      [-19, 84],
+      [-42, 54],
+      [-32, 0],
+      [-54, 86],
+      [15, 43],
+      [35, 12],
+      [16, 62],
+      [-9, 55],
+      [35, 10],
+      [44, 46],
+      [14, 66],
+      [-14, 88],
+      [60, -42]
+    ],
+    [
+      [7180, 3441],
+      [3, -52],
+      [-25, -44],
+      [-36, 38],
+      [35, 58],
+      [23, 0]
+    ],
+    [
+      [7391, 4206],
+      [65, 4],
+      [59, -37],
+      [79, -84],
+      [71, -40],
+      [132, 76],
+      [119, 17],
+      [45, -17],
+      [82, 16],
+      [55, 32]
+    ],
+    [
+      [8276, 4156],
+      [22, -140],
+      [46, -46],
+      [-44, -25],
+      [-2, -51],
+      [58, -44],
+      [-11, -61],
+      [45, -27],
+      [86, -118],
+      [78, -1],
+      [57, -29],
+      [62, -5],
+      [67, -49],
+      [36, -65],
+      [-36, -68],
+      [-32, -28],
+      [-22, -76],
+      [49, -162],
+      [-6, -68]
+    ],
+    [
+      [8729, 3093],
+      [-53, -27],
+      [-23, -49],
+      [1, -126],
+      [-44, -64],
+      [14, -66],
+      [22, -7],
+      [20, -76],
+      [-77, -28],
+      [-17, -46],
+      [19, -175],
+      [-46, -59],
+      [9, -37],
+      [-78, -104],
+      [-11, 71],
+      [-51, 156],
+      [-42, -11],
+      [34, 98],
+      [-29, 56],
+      [-35, 23],
+      [-34, -106],
+      [-47, 2],
+      [-92, 69],
+      [-45, 47],
+      [-53, 93],
+      [-126, -11],
+      [3, 74],
+      [35, -2],
+      [37, 37],
+      [-28, 21],
+      [-27, 78],
+      [-56, -26],
+      [-80, 91],
+      [-19, 48],
+      [38, 38],
+      [-118, 1],
+      [-26, 66],
+      [-73, 76],
+      [-10, 27],
+      [-94, -30],
+      [-19, 20],
+      [-15, 83],
+      [-49, 71],
+      [-37, 27],
+      [-69, -4],
+      [-95, 54],
+      [-63, 16],
+      [-37, 82],
+      [6, 28],
+      [-18, 109],
+      [60, 73],
+      [-57, 2],
+      [-37, 88],
+      [40, 25],
+      [-40, 78],
+      [67, 89],
+      [31, -11],
+      [42, 64],
+      [-13, 26],
+      [70, 27],
+      [17, 57],
+      [80, -13]
+    ],
+    [
+      [20694, 27716],
+      [46, -77],
+      [-13, -56],
+      [40, -46],
+      [52, -17],
+      [55, -41],
+      [62, -86],
+      [96, -101],
+      [6, -46],
+      [36, -60],
+      [42, -2],
+      [109, -76],
+      [178, -3],
+      [63, -71],
+      [27, -71],
+      [63, -10]
+    ],
+    [
+      [21556, 26953],
+      [159, -35],
+      [35, -25],
+      [105, -3],
+      [81, -42],
+      [149, 3],
+      [36, 43],
+      [57, -26],
+      [110, -11],
+      [0, -31],
+      [76, 26],
+      [46, -97],
+      [61, -62],
+      [8, -30],
+      [-27, -42],
+      [32, -31],
+      [44, 28],
+      [33, -33],
+      [-93, -77],
+      [-72, -19],
+      [-4, -97],
+      [23, -43],
+      [-1, -81],
+      [-37, -30],
+      [-3, -37],
+      [31, -33],
+      [2, -86],
+      [16, -26],
+      [-8, -59],
+      [58, -28],
+      [209, -68],
+      [94, -45],
+      [18, -74],
+      [53, -91],
+      [-65, -22],
+      [-28, -37],
+      [59, -80],
+      [9, -90],
+      [71, -53],
+      [18, -50],
+      [85, -62],
+      [-2, -99],
+      [-79, -5],
+      [-40, -64],
+      [-5, -53],
+      [-26, -28],
+      [6, -72],
+      [-36, -82],
+      [62, -82],
+      [74, -60],
+      [-9, -79],
+      [-89, -86],
+      [59, -44],
+      [83, 34],
+      [64, -56],
+      [33, -48]
+    ],
+    [
+      [23091, 24473],
+      [-88, 34],
+      [-114, -24],
+      [-11, 30],
+      [-52, 10],
+      [-44, 52],
+      [-53, -6],
+      [-65, -30],
+      [-47, -49],
+      [-60, 18],
+      [-69, 58],
+      [-47, -33],
+      [-46, -72],
+      [-59, 11],
+      [-50, 66],
+      [-52, -48],
+      [-73, -28],
+      [-122, -123],
+      [-87, 4],
+      [-60, 45],
+      [-46, 15],
+      [-48, -13],
+      [-40, -65],
+      [-48, 37],
+      [-73, 2],
+      [-12, 21],
+      [-88, 19],
+      [-90, 2],
+      [-116, -14],
+      [-73, 37],
+      [-88, 69],
+      [-81, -48],
+      [-10, -35],
+      [-92, -33],
+      [-56, 43],
+      [-47, 5],
+      [-43, -24],
+      [4, -46],
+      [-82, -14],
+      [-21, 53],
+      [-92, 14],
+      [-57, -82],
+      [-99, -10]
+    ],
+    [
+      [20494, 24321],
+      [-39, 47],
+      [20, 47],
+      [-11, 80],
+      [31, 164],
+      [-21, 66],
+      [-48, 28],
+      [8, 49],
+      [-16, 74],
+      [41, 27],
+      [28, 62],
+      [16, 75],
+      [-7, 64],
+      [-20, 32],
+      [6, 66],
+      [-18, 41],
+      [-80, 66],
+      [-60, 76],
+      [-4, 37],
+      [25, 55],
+      [-37, 108],
+      [-49, 28],
+      [-187, 53],
+      [-50, 61],
+      [54, 64],
+      [-10, 16],
+      [34, 73],
+      [70, 53],
+      [19, 51],
+      [33, 19],
+      [24, 72],
+      [70, 50],
+      [-12, 68],
+      [49, 8],
+      [31, 75],
+      [-29, 34],
+      [25, 37],
+      [-55, 20],
+      [-38, 128],
+      [23, 63],
+      [-85, 44],
+      [37, 110],
+      [-13, 65],
+      [35, -3],
+      [26, 84],
+      [2, 65],
+      [44, 54],
+      [7, 42],
+      [45, 14],
+      [45, 61],
+      [53, 8],
+      [71, 43],
+      [4, 33],
+      [-34, 59],
+      [-123, 43],
+      [-142, 0]
+    ],
+    [
+      [8801, 25564],
+      [-71, 54],
+      [60, 196],
+      [-48, 17],
+      [25, 65],
+      [-92, -7],
+      [-12, 77],
+      [47, 16],
+      [13, 37]
+    ],
+    [
+      [9758, 4369],
+      [48, -66],
+      [-46, -33],
+      [-18, 34],
+      [16, 65]
+    ],
+    [
+      [9131, 6453],
+      [63, -290],
+      [158, -598],
+      [94, -331],
+      [52, -153],
+      [56, -142],
+      [112, -220],
+      [80, -116],
+      [56, -54],
+      [76, -146],
+      [-48, -21],
+      [-209, 151],
+      [-61, 36],
+      [-109, -14],
+      [-101, -36],
+      [-63, -72],
+      [7, -29],
+      [77, -45],
+      [15, -67],
+      [126, -50],
+      [16, 24],
+      [67, -51],
+      [63, 12],
+      [112, 4],
+      [71, 60],
+      [66, 28],
+      [10, 27],
+      [-53, 121],
+      [60, -23],
+      [50, -78],
+      [30, -15],
+      [112, -168],
+      [75, -100],
+      [157, -190],
+      [123, -116],
+      [94, -57],
+      [70, -14],
+      [60, 31],
+      [131, -110],
+      [128, -90],
+      [156, -76],
+      [144, -35],
+      [94, 17]
+    ],
+    [
+      [11485, 2821],
+      [-59, -43],
+      [73, -72],
+      [-93, -60],
+      [-45, -61],
+      [-80, -11],
+      [-2, -45],
+      [-30, -52],
+      [-105, -65],
+      [-56, 13],
+      [-14, -50],
+      [-77, -73],
+      [-47, 6],
+      [-39, -69],
+      [-9, -62],
+      [15, -24],
+      [11, -93],
+      [-16, -26],
+      [24, -40],
+      [-56, -78],
+      [-65, -21],
+      [-75, 1],
+      [-45, -22],
+      [-19, 51]
+    ],
+    [
+      [10676, 1925],
+      [14, 52],
+      [-1, 79],
+      [-41, -18],
+      [-35, 24],
+      [5, 80],
+      [-16, 146],
+      [-112, 51],
+      [-90, 10],
+      [-19, 30],
+      [-8, 97],
+      [-29, 15],
+      [-66, -82],
+      [-86, -75],
+      [-64, -7],
+      [-34, -22],
+      [-49, 39],
+      [-58, 6],
+      [-82, 54],
+      [-50, 11],
+      [-37, 35],
+      [-105, -24],
+      [-73, 41],
+      [-43, 66],
+      [-64, -12],
+      [-32, 29],
+      [-104, -46],
+      [-88, 46],
+      [-88, 22],
+      [-39, 60],
+      [1, 27],
+      [-122, 94],
+      [39, 51],
+      [-12, 55],
+      [7, 58],
+      [-65, 34],
+      [-24, 33],
+      [-1, 60],
+      [-52, -1],
+      [-19, -34],
+      [-58, 7],
+      [-54, -12],
+      [-61, 73],
+      [-32, 16]
+    ],
+    [
+      [7793, 33967],
+      [11, -27],
+      [65, -28],
+      [13, -36],
+      [-41, -28],
+      [103, -113],
+      [54, -35],
+      [40, -152],
+      [-35, -65],
+      [22, -36],
+      [-106, -79],
+      [-44, -16],
+      [7, -53],
+      [48, -66],
+      [-28, -50],
+      [10, -41],
+      [139, -66],
+      [28, -59],
+      [38, -23],
+      [-11, -68],
+      [-31, -90],
+      [62, -65],
+      [-28, -67],
+      [42, -74],
+      [-64, -104],
+      [-60, -2],
+      [-21, -23],
+      [-9, -110],
+      [-15, -30],
+      [69, -42],
+      [-25, -47],
+      [19, -70]
+    ],
+    [
+      [6355, 31386],
+      [58, 80],
+      [-37, 56],
+      [-42, 11],
+      [1, 66],
+      [-25, 64],
+      [53, 59],
+      [-16, 30],
+      [-80, 27],
+      [-33, 133],
+      [21, 24],
+      [-47, 38],
+      [-118, -1],
+      [-56, 54],
+      [-22, 92],
+      [15, 39],
+      [-27, 78],
+      [33, 153],
+      [-16, 79]
+    ],
+    [
+      [5922, 26131],
+      [0, 35],
+      [51, 21],
+      [18, 30],
+      [-33, 32],
+      [28, 71],
+      [71, 48],
+      [34, 3],
+      [77, -88],
+      [90, 3],
+      [68, -29],
+      [34, -101],
+      [36, -48],
+      [130, 10],
+      [126, -23],
+      [24, -34],
+      [89, -17],
+      [82, -47],
+      [47, 5],
+      [85, -24],
+      [3, 137],
+      [86, 0],
+      [91, -38],
+      [80, 6]
+    ],
+    [
+      [8317, 11073],
+      [56, -83],
+      [-34, -54],
+      [-49, -36],
+      [-17, -72],
+      [47, -66],
+      [-75, -36],
+      [-57, -41],
+      [-49, -83],
+      [-89, 2],
+      [-56, -35],
+      [-23, 31],
+      [-69, 17],
+      [-6, 120],
+      [-30, 57],
+      [30, 18],
+      [5, 115],
+      [-47, 85],
+      [14, 20],
+      [118, 16],
+      [60, 20],
+      [49, -46],
+      [106, -32],
+      [63, -8],
+      [26, 18],
+      [27, 73]
+    ],
+    [
+      [5536, 11390],
+      [9, -71],
+      [29, -69],
+      [116, -144],
+      [0, -90],
+      [69, -152],
+      [30, -84],
+      [67, -102],
+      [115, -107],
+      [-60, -44],
+      [-57, -89],
+      [-74, -25],
+      [-61, -44],
+      [-10, -82],
+      [30, -81],
+      [-4, -62],
+      [41, -51],
+      [54, -19],
+      [35, -34],
+      [56, 38],
+      [49, 8],
+      [41, -40],
+      [53, 9],
+      [23, -42],
+      [62, 21],
+      [5, -54],
+      [63, -16],
+      [95, 41],
+      [135, -21],
+      [86, 32],
+      [31, 42],
+      [38, 96],
+      [47, 58],
+      [55, 14],
+      [114, -43],
+      [103, -2],
+      [91, 93],
+      [76, 2],
+      [55, 74],
+      [117, -49],
+      [59, 33],
+      [47, -26],
+      [35, 21]
+    ],
+    [
+      [8186, 11672],
+      [24, -33],
+      [56, -1],
+      [13, -59],
+      [47, -15],
+      [25, -88],
+      [-16, -35],
+      [12, -58],
+      [-35, -61],
+      [-59, 15],
+      [-99, 49],
+      [-85, 14],
+      [-41, 54],
+      [0, 58],
+      [-46, 28],
+      [18, 79],
+      [77, 50],
+      [51, -43],
+      [58, 46]
+    ],
+    [
+      [7609, 12569],
+      [40, -45],
+      [15, -57],
+      [-49, -69],
+      [-76, 17],
+      [37, 60],
+      [-25, 61],
+      [14, 33],
+      [44, 0]
+    ],
+    [
+      [20494, 24321],
+      [-18, -11],
+      [-105, 2],
+      [-32, 41],
+      [-31, -31],
+      [-48, 25],
+      [-95, -13],
+      [-14, -55],
+      [-62, 15],
+      [-131, 7],
+      [-61, 80],
+      [-63, 14],
+      [-37, -35],
+      [-80, -6],
+      [-68, 13],
+      [-70, 45],
+      [-144, -3],
+      [-27, 28],
+      [23, 125],
+      [-43, 19],
+      [-108, -1],
+      [-43, -22],
+      [34, -33],
+      [-111, -56],
+      [-43, 50],
+      [-85, 29],
+      [-127, -30],
+      [-53, -30],
+      [-56, -11],
+      [-24, -43],
+      [-32, 1],
+      [-53, -60],
+      [-43, 10],
+      [-48, 63],
+      [-55, -27],
+      [-28, -66],
+      [-81, -12],
+      [-106, 4],
+      [-59, -9],
+      [-37, 15],
+      [-98, -23],
+      [-56, 7],
+      [-116, -67]
+    ],
+    [
+      [5467, 28358],
+      [-24, -76],
+      [23, -79],
+      [-15, -88],
+      [-37, -61],
+      [-34, -190],
+      [-29, -13],
+      [-39, -90],
+      [-101, -44],
+      [-10, -28],
+      [36, -94],
+      [42, -26],
+      [15, -37],
+      [-62, -105],
+      [-6, -51],
+      [36, -70],
+      [-5, -39],
+      [-66, -74],
+      [-6, -84],
+      [-39, -50],
+      [4, -79],
+      [19, -33],
+      [-41, -23],
+      [-17, -93],
+      [-40, -18],
+      [9, -87],
+      [-28, -69],
+      [-49, -4]
+    ],
+    [
+      [3744, 27971],
+      [-37, -9],
+      [-37, 88],
+      [69, 253],
+      [26, 70],
+      [98, 216],
+      [-44, -2],
+      [-34, 119],
+      [32, 118],
+      [41, 33],
+      [-12, 52],
+      [-39, 61],
+      [-91, 53],
+      [16, 67],
+      [95, 16],
+      [31, -54],
+      [51, -1],
+      [11, 55],
+      [98, 31],
+      [62, 105],
+      [-9, 41],
+      [64, 26],
+      [53, -28],
+      [83, -17],
+      [110, 20],
+      [56, -55],
+      [65, 13],
+      [36, 41],
+      [63, 27],
+      [7, 59],
+      [24, 34],
+      [-3, 80],
+      [-26, 49],
+      [43, 51],
+      [44, 14],
+      [70, 45],
+      [36, 142],
+      [24, -3],
+      [25, 68],
+      [-23, 49],
+      [-24, 122],
+      [-41, 25],
+      [-61, 66],
+      [-77, 18],
+      [-28, -25],
+      [-58, 5],
+      [-49, -82],
+      [9, -18],
+      [-105, -59],
+      [-2, -30],
+      [-48, -30],
+      [-60, 5],
+      [-53, -38],
+      [-30, -56],
+      [-1, -43],
+      [-36, -9],
+      [-10, -56],
+      [-107, 31],
+      [7, 93],
+      [-20, 133],
+      [-63, 108],
+      [-16, 63],
+      [59, 86],
+      [-19, 39],
+      [-51, 18],
+      [-20, 49],
+      [-132, 142],
+      [-20, 47],
+      [23, 72],
+      [-44, 45],
+      [0, 71],
+      [-30, -1],
+      [-115, 37],
+      [-27, 33],
+      [9, 56],
+      [-9, 71],
+      [-39, 27],
+      [-96, 36],
+      [-2, 77],
+      [59, 62],
+      [-12, 45],
+      [98, 25],
+      [5, 25],
+      [82, 14],
+      [-31, 50],
+      [-131, 31],
+      [19, 56],
+      [41, 51],
+      [43, 19],
+      [-40, 40],
+      [17, 47],
+      [-106, 51],
+      [45, 39],
+      [-31, 20],
+      [-52, 108],
+      [-45, -11],
+      [-13, 86],
+      [-47, 33],
+      [-66, 21],
+      [-14, 28],
+      [-64, 19],
+      [-92, -29],
+      [-70, 4],
+      [-81, 82],
+      [30, 88],
+      [-125, 27],
+      [14, 61],
+      [-50, 53],
+      [-17, 58],
+      [-43, 13],
+      [-38, 114],
+      [-25, -23],
+      [-53, 25],
+      [-20, 54],
+      [-93, 29],
+      [-24, 42],
+      [-59, 48],
+      [-29, 2],
+      [-33, 72],
+      [-48, 10],
+      [-17, 67],
+      [17, 111],
+      [-84, 13],
+      [-72, 87],
+      [-41, 24],
+      [27, 36],
+      [-57, 30],
+      [-98, 108],
+      [-34, 50],
+      [-60, -5],
+      [-35, 56],
+      [-67, 9],
+      [-49, 22],
+      [-36, 64],
+      [-15, 58],
+      [-180, 124],
+      [-86, 92],
+      [-77, 51],
+      [-9, 35],
+      [-86, 91],
+      [10, 92],
+      [-64, 69]
+    ],
+    [
+      [6782, 4178],
+      [48, -7],
+      [78, -58],
+      [-132, 3],
+      [-24, 46],
+      [30, 16]
+    ],
+    [
+      [6920, 4374],
+      [32, -23],
+      [-25, -47],
+      [-51, -12],
+      [44, 82]
+    ],
+    [
+      [6265, 4601],
+      [83, -2],
+      [68, -47],
+      [-106, -20],
+      [-56, -49],
+      [0, -41],
+      [-61, 0],
+      [-29, 40],
+      [18, 42],
+      [-7, 74],
+      [48, 33],
+      [42, -30]
+    ],
+    [
+      [5947, 4941],
+      [48, -39],
+      [-14, -56],
+      [-48, 27],
+      [-19, 63],
+      [33, 5]
+    ],
+    [
+      [7391, 4206],
+      [-79, 26],
+      [-61, -20],
+      [-58, 12],
+      [-35, -22],
+      [-60, 3],
+      [-32, 96],
+      [1, 48],
+      [-76, -45],
+      [-67, -61],
+      [-42, 0],
+      [7, 46],
+      [54, 17],
+      [14, 59],
+      [-68, 33],
+      [5, -51],
+      [-58, -80],
+      [-80, 169],
+      [-61, 71],
+      [-52, 44],
+      [37, 96],
+      [79, 12],
+      [38, 77],
+      [11, 59],
+      [32, 52],
+      [-54, 10],
+      [-1, -68],
+      [-28, -47],
+      [-100, -60],
+      [-54, 30],
+      [11, 40],
+      [-29, 73],
+      [12, 82],
+      [-23, 33],
+      [-51, -34],
+      [-5, -57],
+      [31, -94],
+      [-21, -84],
+      [-45, -24],
+      [-128, 45],
+      [-64, 48],
+      [-35, -26],
+      [-60, 89],
+      [-113, 108],
+      [32, 67],
+      [-15, 28],
+      [4, 86],
+      [-54, 142],
+      [-49, 37],
+      [-12, 45],
+      [16, 46],
+      [-51, 53],
+      [-18, 62],
+      [-37, 55],
+      [13, 47],
+      [-60, -4],
+      [-35, 64],
+      [65, 99],
+      [29, 14]
+    ],
+    [
+      [15940, 17030],
+      [-15, -39],
+      [53, -4],
+      [71, -70],
+      [-7, -27],
+      [25, -76],
+      [-17, -63],
+      [-36, -39],
+      [16, -31],
+      [-8, -110],
+      [-78, 38],
+      [-5, 48],
+      [-60, -7],
+      [-62, 35],
+      [18, 43],
+      [37, 10],
+      [-33, 80],
+      [-21, 125],
+      [40, 19],
+      [-18, 59],
+      [37, 40],
+      [-8, 40],
+      [28, 26],
+      [53, -85],
+      [-10, -12]
+    ],
+    [
+      [15647, 17329],
+      [53, -19],
+      [68, -4],
+      [-19, -40],
+      [-36, 9],
+      [-40, -46],
+      [-47, 59],
+      [21, 41]
+    ],
+    [
+      [14977, 18228],
+      [58, -35],
+      [64, -1],
+      [93, -22],
+      [35, -37],
+      [68, -41],
+      [42, -82],
+      [36, -27],
+      [112, -153],
+      [36, -69],
+      [49, -35],
+      [-35, -45],
+      [-66, 17],
+      [-93, 93],
+      [-16, -101],
+      [-84, 1],
+      [-49, 30],
+      [-51, -4],
+      [-23, -28],
+      [-66, 145],
+      [19, 73],
+      [-13, 45],
+      [-46, 38],
+      [3, 60],
+      [-35, 68],
+      [14, 68],
+      [-52, 42]
+    ],
+    [
+      [15771, 19881],
+      [-29, -37],
+      [30, -134],
+      [2, -59],
+      [55, -40],
+      [74, -10],
+      [40, 15],
+      [158, -119],
+      [83, -10],
+      [-5, -70],
+      [55, -10],
+      [45, -108],
+      [53, -57],
+      [87, -56],
+      [-11, -30],
+      [62, -26],
+      [12, -64],
+      [67, -10],
+      [46, -59],
+      [18, -49],
+      [-10, -46],
+      [-99, -22],
+      [-78, -76],
+      [-7, -85],
+      [8, -86],
+      [-36, -106],
+      [12, -47],
+      [-2, -76],
+      [-42, -135],
+      [19, -58],
+      [58, -61],
+      [15, -52],
+      [97, -102],
+      [26, -64],
+      [-2, -44],
+      [23, -129],
+      [29, -35],
+      [32, -79],
+      [45, -42],
+      [19, -73],
+      [-8, -41],
+      [49, -112],
+      [104, -135],
+      [45, -15],
+      [59, -82],
+      [20, -60],
+      [1, -186],
+      [-32, 9],
+      [16, 84],
+      [-31, 78],
+      [-87, 145],
+      [-118, 129],
+      [-158, 186],
+      [-13, 46],
+      [36, 55],
+      [-57, 114],
+      [14, 30],
+      [-14, 77],
+      [-44, 62],
+      [-266, 210],
+      [-70, 37],
+      [-52, 50],
+      [60, 14],
+      [1, 53],
+      [-31, 27],
+      [-103, 51],
+      [-24, 22],
+      [-63, -25],
+      [-24, -58],
+      [34, -40],
+      [-59, -13],
+      [15, -41],
+      [-12, -46],
+      [30, -37],
+      [-17, -69],
+      [37, -14],
+      [50, -93],
+      [-68, -15],
+      [-60, 26],
+      [10, 70],
+      [-59, 83],
+      [-32, 21],
+      [-121, 45],
+      [-73, 73],
+      [-71, 15],
+      [-109, -1],
+      [-94, 69],
+      [-65, 16],
+      [-41, -8],
+      [-21, -44],
+      [-60, 23],
+      [-37, -4],
+      [-51, 55],
+      [32, 63],
+      [-27, 60],
+      [-42, 47],
+      [33, 43],
+      [91, 23],
+      [56, 26],
+      [21, 38],
+      [102, 86],
+      [-51, 57]
+    ],
+    [
+      [15297, 18830],
+      [4, 2]
+    ],
+    [
+      [15328, 18865],
+      [6, 0]
+    ],
+    [
+      [21556, 26953],
+      [47, 154],
+      [-25, 100],
+      [-56, 15],
+      [-29, 167],
+      [-36, 33],
+      [50, 89],
+      [-14, 42],
+      [45, 110],
+      [39, -23],
+      [60, 13],
+      [118, 1],
+      [123, 60]
+    ],
+    [
+      [23558, 29203],
+      [68, -32],
+      [51, 14],
+      [60, -37],
+      [47, 5],
+      [234, -83],
+      [183, -19],
+      [141, -40],
+      [105, 0],
+      [38, -22],
+      [145, -16],
+      [34, -26],
+      [-17, -52],
+      [-81, 9],
+      [-39, -16],
+      [-54, -91],
+      [-30, -20],
+      [-24, -81],
+      [29, -25],
+      [80, -168],
+      [33, -47],
+      [3, -56],
+      [30, -39],
+      [59, -17],
+      [0, -39],
+      [47, -58],
+      [78, -24],
+      [117, 58],
+      [110, -52],
+      [54, 5],
+      [25, -30],
+      [124, -50],
+      [32, -83],
+      [72, -85],
+      [5, -87],
+      [-31, -107],
+      [0, -64],
+      [-50, -58],
+      [-52, -113],
+      [29, -93],
+      [-34, -137],
+      [-35, -42],
+      [-109, -45],
+      [-60, 0],
+      [-96, -19],
+      [-49, -46],
+      [-30, -62],
+      [15, -32],
+      [102, -57],
+      [72, 19],
+      [92, -6],
+      [43, 14],
+      [25, -28],
+      [30, -118],
+      [-28, -32],
+      [-67, 4],
+      [-62, -27],
+      [-70, -92],
+      [-59, -39],
+      [-87, -131],
+      [27, -29],
+      [-32, -36],
+      [-9, -58],
+      [23, -40],
+      [117, -40],
+      [14, -47],
+      [33, -19],
+      [79, -5],
+      [-15, -62],
+      [74, -46],
+      [16, -70],
+      [101, -19],
+      [32, -38],
+      [-75, -40],
+      [-35, -45],
+      [-85, 26],
+      [-30, -80],
+      [43, -23],
+      [50, -58],
+      [-17, -46],
+      [-107, -35],
+      [43, -44],
+      [9, -43],
+      [-73, -41],
+      [-53, -54],
+      [12, -79],
+      [-8, -57],
+      [72, -44],
+      [-47, -28],
+      [10, -61],
+      [-28, -31],
+      [25, -51],
+      [-16, -71],
+      [32, -37],
+      [0, -114],
+      [31, -38],
+      [-29, -27],
+      [12, -56],
+      [-30, -9],
+      [-68, -105],
+      [-43, -9],
+      [-25, -63],
+      [-67, -89],
+      [-23, -10],
+      [-26, -64],
+      [-33, -34],
+      [-61, 36],
+      [-26, -45],
+      [-121, -70],
+      [-64, -9],
+      [-64, 35],
+      [-43, -61],
+      [-69, -30],
+      [-24, -31],
+      [-68, 26],
+      [-79, -83],
+      [-86, 43],
+      [-72, -7],
+      [-29, -54],
+      [29, -33],
+      [-46, -36],
+      [-33, -51],
+      [10, -80],
+      [-34, -47],
+      [-119, -69],
+      [-161, 3],
+      [-12, 33],
+      [-75, 46],
+      [0, 61],
+      [-95, 129],
+      [6, 90],
+      [27, 60],
+      [-87, 76],
+      [-83, -26],
+      [-63, 43],
+      [-54, 5]
+    ],
+    [
+      [11427, 35565],
+      [127, -37],
+      [59, -55],
+      [61, -2],
+      [42, -21],
+      [-102, -123],
+      [33, -55],
+      [-46, -40],
+      [45, -38],
+      [20, -82],
+      [45, 3],
+      [34, -24],
+      [-57, -120],
+      [-11, -72],
+      [-23, -44],
+      [33, -135],
+      [34, -37],
+      [-72, -95],
+      [-28, 20],
+      [-93, -119],
+      [-11, -120],
+      [-37, -11],
+      [-48, -61],
+      [-129, -34],
+      [-82, -58],
+      [-6, -42],
+      [33, -30],
+      [5, -90],
+      [-84, -27],
+      [-31, -55],
+      [42, -54],
+      [-13, -25],
+      [-63, -24],
+      [-11, -42],
+      [33, -26]
+    ],
+    [
+      [12684, 771],
+      [-48, -42],
+      [-43, -10],
+      [-183, 11],
+      [-50, -10],
+      [-77, -109],
+      [-73, -44],
+      [-42, -1],
+      [-52, -31],
+      [-87, 36],
+      [-68, -54],
+      [-43, -116],
+      [31, -77],
+      [-9, -49],
+      [-116, -90],
+      [-71, -77],
+      [-66, -13],
+      [-50, -51],
+      [-71, -44],
+      [-7, 58],
+      [-41, 91],
+      [-187, 216],
+      [-83, 1],
+      [-44, 71],
+      [-79, 51],
+      [-12, 42],
+      [90, 81],
+      [-29, 42],
+      [10, 64],
+      [60, 78],
+      [22, 46],
+      [44, -21],
+      [31, 24],
+      [71, -23],
+      [54, 114],
+      [68, 57],
+      [8, 25],
+      [-62, 50],
+      [15, 31],
+      [4, 80],
+      [-30, 44],
+      [39, 41],
+      [9, 38],
+      [42, 53],
+      [-60, 30],
+      [-70, 59],
+      [-94, 24],
+      [51, 51],
+      [1, 26],
+      [98, 26],
+      [57, 44],
+      [-64, 123],
+      [19, 26],
+      [-46, 31],
+      [-62, -11],
+      [-69, 7],
+      [-105, -13],
+      [-64, 42],
+      [-31, 43],
+      [-52, 8],
+      [-19, -41],
+      [-64, -57],
+      [-134, -13],
+      [-64, 41],
+      [-36, -51],
+      [-42, 0],
+      [-57, 126],
+      [24, 50]
+    ]
+  ],
+  "transform": {
+    "scale": [0.000327590235404905, 0.00035884621559740756],
+    "translate": [97.34552764892602, 5.616197109222526]
+  },
+  "objects": {
+    "thailand": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-37",
+            "NAME_0": "Thailand",
+            "ID_1": 1,
+            "NAME_1": "Amnat Charoen",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "อำนาจเจริญ",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[4, 5, 6, 7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-15",
+            "NAME_0": "Thailand",
+            "ID_1": 2,
+            "NAME_1": "Ang Thong",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "อ่างทอง",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[8, 9, 10, 11, 12, 13, 14]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-10",
+            "NAME_0": "Thailand",
+            "ID_1": 3,
+            "NAME_1": "Bangkok",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "กรุงเทพมหานคร",
+            "VARNAME_1": "Krung Thep|Krung Thep Maha Nakhon"
+          }
+        },
+        {
+          "arcs": [[15, 16, 17, 18]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-38",
+            "NAME_0": "Thailand",
+            "ID_1": 4,
+            "NAME_1": "Bueng Kan",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "บึงกาฬ",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[19, 20, 21, 22, 23, 24]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-31",
+            "NAME_0": "Thailand",
+            "ID_1": 5,
+            "NAME_1": "Buri Ram",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "บุรีรัมย์",
+            "VARNAME_1": "Buri Rum"
+          }
+        },
+        {
+          "arcs": [[25, 26, 27, 28, 29, 30, -9, 31, 32]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-24",
+            "NAME_0": "Thailand",
+            "ID_1": 6,
+            "NAME_1": "Chachoengsao",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ฉะเชิงเทรา",
+            "VARNAME_1": "Chaxerngsao|Pad Rew|Paed Riu|Petrieu|Shajeun Dhrao"
+          }
+        },
+        {
+          "arcs": [[33, 34, 35, 36]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-18",
+            "NAME_0": "Thailand",
+            "ID_1": 7,
+            "NAME_1": "Chai Nat",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ชัยนาท",
+            "VARNAME_1": "Chainat"
+          }
+        },
+        {
+          "arcs": [[37, 38, 39, 40]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-36",
+            "NAME_0": "Thailand",
+            "ID_1": 8,
+            "NAME_1": "Chaiyaphum",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ชัยภูมิ",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[47, 48, 49, -28, 50, 51, 52]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-22",
+            "NAME_0": "Thailand",
+            "ID_1": 9,
+            "NAME_1": "Chanthaburi",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "จันทบุรี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[53, 54, 55, 56, 57, 58]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-50",
+            "NAME_0": "Thailand",
+            "ID_1": 10,
+            "NAME_1": "Chiang Mai",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "เชียงใหม่",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[59, 60, -59, 61]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-57",
+            "NAME_0": "Thailand",
+            "ID_1": 11,
+            "NAME_1": "Chiang Rai",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "เชียงราย",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[[62]], [[63]], [[64]], [[65]], [[66]], [[-50, 67, 68, -29]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-20",
+            "NAME_0": "Thailand",
+            "ID_1": 12,
+            "NAME_1": "Chon Buri",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ชลบุรี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[69, 70, 71, 72, 73]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-86",
+            "NAME_0": "Thailand",
+            "ID_1": 13,
+            "NAME_1": "Chumphon",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ชุมพร",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[74, 75, 76, 77, 78, 79]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-46",
+            "NAME_0": "Thailand",
+            "ID_1": 14,
+            "NAME_1": "Kalasin",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "กาฬสินธุ์",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[80, 81, 82, 83, 84]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-62",
+            "NAME_0": "Thailand",
+            "ID_1": 15,
+            "NAME_1": "Kamphaeng Phet",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "กำแพงเพชร",
+            "VARNAME_1": "Gampheang Phet|Kambhengbhej"
+          }
+        },
+        {
+          "arcs": [[85, 86, 87, 88, 89, 90]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-71",
+            "NAME_0": "Thailand",
+            "ID_1": 16,
+            "NAME_1": "Kanchanaburi",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "กาญจนบุรี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-79, 91, -24, 92, -38, 93, 94, 95, 96]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-40",
+            "NAME_0": "Thailand",
+            "ID_1": 17,
+            "NAME_1": "Khon Kaen",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ขอนแก่น",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [
+            [[97]],
+            [[98]],
+            [[99]],
+            [[100]],
+            [[101]],
+            [[102]],
+            [[103]],
+            [[104]],
+            [[105, 106, 107, 108, 109]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-81",
+            "NAME_0": "Thailand",
+            "ID_1": 18,
+            "NAME_1": "Krabi",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "กระบี่",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[110, 111, 112, 113, 114, -54, -61]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-52",
+            "NAME_0": "Thailand",
+            "ID_1": 19,
+            "NAME_1": "Lampang",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ลำปาง",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-115, 115, -55]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-51",
+            "NAME_0": "Thailand",
+            "ID_1": 20,
+            "NAME_1": "Lamphun",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ลำพูน",
+            "VARNAME_1": "Hariphunchai|Lampoon"
+          }
+        },
+        {
+          "arcs": [[116, 117, 118, -95, 119, 120, 121]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-42",
+            "NAME_0": "Thailand",
+            "ID_1": 21,
+            "NAME_1": "Loei",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "เลย",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[122, 123, 124, -5, 125, 126, 127, -40]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-16",
+            "NAME_0": "Thailand",
+            "ID_1": 22,
+            "NAME_1": "Lopburi",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ลพบุรี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-57, 128, 129]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-58",
+            "NAME_0": "Thailand",
+            "ID_1": 23,
+            "NAME_1": "Mae Hong Son",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "แม่ฮ่องสอน",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[130, 131, -25, -92, -78]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-44",
+            "NAME_0": "Thailand",
+            "ID_1": 24,
+            "NAME_1": "Maha Sarakham",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "มหาสารคาม",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[132, -4, 133, 134, -76, 135, 136]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-49",
+            "NAME_0": "Thailand",
+            "ID_1": 25,
+            "NAME_1": "Mukdahan",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "มุกดาหาร",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[137, -33, 138, 139, 140]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-26",
+            "NAME_0": "Thailand",
+            "ID_1": 26,
+            "NAME_1": "Nakhon Nayok",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "นครนายก",
+            "VARNAME_1": "Nakon Nayok"
+          }
+        },
+        {
+          "arcs": [[141, -13, 142, 143, -88, 144, 145]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-73",
+            "NAME_0": "Thailand",
+            "ID_1": 27,
+            "NAME_1": "Nakhon Pathom",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "นครปฐม",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-137, 146, -16, 147]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-30",
+            "NAME_0": "Thailand",
+            "ID_1": 28,
+            "NAME_1": "Nakhon Phanom",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "นครพนม",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-93, -23, 148, 149, -141, 150, -123, -39]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-30",
+            "NAME_0": "Thailand",
+            "ID_1": 29,
+            "NAME_1": "Nakhon Ratchasima",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "นครราชสีมา",
+            "VARNAME_1": "Khorat|Nagara Rajasima|Nakaun Rachasima"
+          }
+        },
+        {
+          "arcs": [[151, -127, 152, -37, 153, 154, -83, 155]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-60",
+            "NAME_0": "Thailand",
+            "ID_1": 30,
+            "NAME_1": "Nakhon Sawan",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "นครสวรรค์",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[156, 157, 158, -106, 159, 160]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-80",
+            "NAME_0": "Thailand",
+            "ID_1": 31,
+            "NAME_1": "Nakhon Si Thammarat",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "นครศรีธรรมราช",
+            "VARNAME_1": "Nakhon Thammarat|Nagara Sridharmaraj|Nakhon Sri Thammarat|Nakhornsrithamrat|Nakornsrithamaraj"
+          }
+        },
+        {
+          "arcs": [[161, 162, 163, 164]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-55",
+            "NAME_0": "Thailand",
+            "ID_1": 32,
+            "NAME_1": "Nan",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "น่าน",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[165, 166, 167]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-96",
+            "NAME_0": "Thailand",
+            "ID_1": 33,
+            "NAME_1": "Narathiwat",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "นราธิวาส",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-96, -119, 168]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-39",
+            "NAME_0": "Thailand",
+            "ID_1": 34,
+            "NAME_1": "Nong Bua Lam Phu",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "หนองบัวลำพู",
+            "VARNAME_1": "Nong Bua Lamphu"
+          }
+        },
+        {
+          "arcs": [[169, 170, -117, 171, -18]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-43",
+            "NAME_0": "Thailand",
+            "ID_1": 35,
+            "NAME_1": "Nong Khai",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "หนองคาย",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-14, -142, 172, 173]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-12",
+            "NAME_0": "Thailand",
+            "ID_1": 36,
+            "NAME_1": "Nonthaburi",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "นนทบุรี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-139, -32, -15, -174, 174, 175]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-13",
+            "NAME_0": "Thailand",
+            "ID_1": 37,
+            "NAME_1": "Pathum Thani",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ปทุมธานี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-168, 176, 177, 178]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-94",
+            "NAME_0": "Thailand",
+            "ID_1": 38,
+            "NAME_1": "Pattani",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ปัตตานี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [
+            [[179]],
+            [[180]],
+            [[181]],
+            [[182]],
+            [[183]],
+            [[184]],
+            [[185]],
+            [[186, -109, 187, 188]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-82",
+            "NAME_0": "Thailand",
+            "ID_1": 39,
+            "NAME_1": "Phangnga",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "พังงา",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[189, 190, 191, -158]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-93",
+            "NAME_0": "Thailand",
+            "ID_1": 40,
+            "NAME_1": "Phatthalung",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "พัทลุง",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-164, 192, -111, -60, 193]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-56",
+            "NAME_0": "Thailand",
+            "ID_1": 41,
+            "NAME_1": "Phayao",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "พะเยา",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-94, -41, -128, -152, 194, 195, -120]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-67",
+            "NAME_0": "Thailand",
+            "ID_1": 42,
+            "NAME_1": "Phetchabun",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "เพชรบูรณ์",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[196, 197, 198, 199, 200]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-76",
+            "NAME_0": "Thailand",
+            "ID_1": 43,
+            "NAME_1": "Phetchaburi",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "เพชรบุรี",
+            "VARNAME_1": "Petchburi"
+          }
+        },
+        {
+          "arcs": [[-195, -156, -82, 201]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-66",
+            "NAME_0": "Thailand",
+            "ID_1": 44,
+            "NAME_1": "Phichit",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "พิจิตร",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-121, -196, -202, -81, 202, 203, 204]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-65",
+            "NAME_0": "Thailand",
+            "ID_1": 45,
+            "NAME_1": "Phitsanulok",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "พิษณุโลก",
+            "VARNAME_1": "Bisnulok|Phisanulauk|Phitsnulok|Pitsanuloke"
+          }
+        },
+        {
+          "arcs": [[-125, 205, -175, -173, -146, 206, -6]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-14",
+            "NAME_0": "Thailand",
+            "ID_1": 46,
+            "NAME_1": "Phra Nakhon Si Ayutthaya",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "พระนครศรีอยุธยา",
+            "VARNAME_1": "Ayudhya|Ayutthaya"
+          }
+        },
+        {
+          "arcs": [[-163, 207, 208, -112, -193]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-54",
+            "NAME_0": "Thailand",
+            "ID_1": 47,
+            "NAME_1": "Phrae",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "แพร่",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[[209]], [[210]], [[211]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-83",
+            "NAME_0": "Thailand",
+            "ID_1": 48,
+            "NAME_1": "Phuket",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ภูเก็ต",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[212, -26, -138, -150]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-25",
+            "NAME_0": "Thailand",
+            "ID_1": 49,
+            "NAME_1": "Prachin Buri",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ปราจีนบุรี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[213, -74, 214, -199]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-77",
+            "NAME_0": "Thailand",
+            "ID_1": 50,
+            "NAME_1": "Prachuap Khiri Khan",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ประจวบคีรีขันธ์",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[[215]], [[216]], [[-72, 217, -189, 218]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-85",
+            "NAME_0": "Thailand",
+            "ID_1": 51,
+            "NAME_1": "Ranong",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ระนอง",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[219, 220, -201, 221, -89, -144]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-70",
+            "NAME_0": "Thailand",
+            "ID_1": 52,
+            "NAME_1": "Ratchaburi",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ราชบุรี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-49, 222, -68]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-21",
+            "NAME_0": "Thailand",
+            "ID_1": 53,
+            "NAME_1": "Rayong",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ระยอง",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[223, 224, 225, -131, -77, -135]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-45",
+            "NAME_0": "Thailand",
+            "ID_1": 54,
+            "NAME_1": "Roi Et",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ร้อยเอ็ด",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-22, 226, -51, -27, -213, -149]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-27",
+            "NAME_0": "Thailand",
+            "ID_1": 55,
+            "NAME_1": "Sa Kaeo",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สระแก้ว",
+            "VARNAME_1": "Srakaeo"
+          }
+        },
+        {
+          "arcs": [[-147, -136, -75, 227, -170, -17]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-47",
+            "NAME_0": "Thailand",
+            "ID_1": 56,
+            "NAME_1": "Sakon Nakhon",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สกลนคร",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-31, 228, -10]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-11",
+            "NAME_0": "Thailand",
+            "ID_1": 57,
+            "NAME_1": "Samut Prakan",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สมุทรปราการ",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[229, 230, -220, -143, -12]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-74",
+            "NAME_0": "Thailand",
+            "ID_1": 58,
+            "NAME_1": "Samut Sakhon",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สมุทรสาคร",
+            "VARNAME_1": "Samudrasagara"
+          }
+        },
+        {
+          "arcs": [[-231, 231, -197, -221]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-75",
+            "NAME_0": "Thailand",
+            "ID_1": 59,
+            "NAME_1": "Samut Songkhram",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สมุทรสงคร",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-151, -140, -176, -206, -124]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-19",
+            "NAME_0": "Thailand",
+            "ID_1": 60,
+            "NAME_1": "Saraburi",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สระบุรี",
+            "VARNAME_1": "Sara Buri"
+          }
+        },
+        {
+          "arcs": [[[232]], [[233]], [[234]], [[235]], [[236]], [[237]], [[238, -191, 239, 240]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-91",
+            "NAME_0": "Thailand",
+            "ID_1": 61,
+            "NAME_1": "Satun",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สตูล",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[241, 242, 243, 244, -225]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-33",
+            "NAME_0": "Thailand",
+            "ID_1": 62,
+            "NAME_1": "Sisaket",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ศรีสะเกษ",
+            "VARNAME_1": "Si Sa Ket"
+          }
+        },
+        {
+          "arcs": [[-126, -8, 245, -34, -153]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-17",
+            "NAME_0": "Thailand",
+            "ID_1": 63,
+            "NAME_1": "Sing Buri",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สิงห์บุรี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[[246]], [[247, -178, 248, 249, -240, -190, -157]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-90",
+            "NAME_0": "Thailand",
+            "ID_1": 64,
+            "NAME_1": "Songkhla",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สงขลา",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[250, -203, -85, 251, -113, -209]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-64",
+            "NAME_0": "Thailand",
+            "ID_1": 65,
+            "NAME_1": "Sukhothai",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สุโขทัย",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-35, -246, -7, -207, -145, -87, 252]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-72",
+            "NAME_0": "Thailand",
+            "ID_1": 66,
+            "NAME_1": "Suphan Buri",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สุพรรณบุรี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[[253]], [[254, -160, -110, -187, -218, -71]], [[255]], [[256]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-84",
+            "NAME_0": "Thailand",
+            "ID_1": 67,
+            "NAME_1": "Surat Thani",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สุราษฎร์ธานี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-226, -245, 257, -20, -132]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-32",
+            "NAME_0": "Thailand",
+            "ID_1": 68,
+            "NAME_1": "Surin",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "สุรินทร์",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-56, -116, -114, -252, -84, -155, 258, -91, 259, -129]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-63",
+            "NAME_0": "Thailand",
+            "ID_1": 69,
+            "NAME_1": "Tak",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ตาก",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[[260]], [[261]], [[262]], [[263]], [[-192, -239, 264, -107, -159]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-92",
+            "NAME_0": "Thailand",
+            "ID_1": 70,
+            "NAME_1": "Trang",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ตรัง",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[[265]], [[266]], [[267]], [[268, -43, 269, -45, 270, -46, -53]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-23",
+            "NAME_0": "Thailand",
+            "ID_1": 71,
+            "NAME_1": "Trat",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ตราด",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-243, 271, -2, 272]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-34",
+            "NAME_0": "Thailand",
+            "ID_1": 72,
+            "NAME_1": "Ubon Ratchathani",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "อุบลราชธานี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-228, -80, -97, -169, -118, -171]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-41",
+            "NAME_0": "Thailand",
+            "ID_1": 73,
+            "NAME_1": "Udon Thani",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "อุดรธานี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-36, -253, -86, -259, -154]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-61",
+            "NAME_0": "Thailand",
+            "ID_1": 74,
+            "NAME_1": "Uthai Thani",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "อุทัยธานี",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-204, -251, -208, -162, 273]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-53",
+            "NAME_0": "Thailand",
+            "ID_1": 75,
+            "NAME_1": "Uttaradit",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "อุตรดิตถ์",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-167, 274, -249, -177]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-95",
+            "NAME_0": "Thailand",
+            "ID_1": 76,
+            "NAME_1": "Yala",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ยะลา",
+            "VARNAME_1": ""
+          }
+        },
+        {
+          "arcs": [[-3, -272, -242, -224, -134]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 228,
+            "ISO": "TH-35",
+            "NAME_0": "Thailand",
+            "ID_1": 77,
+            "NAME_1": "Yasothon",
+            "TYPE_1": "Changwat",
+            "ENGTYPE_1": "Province",
+            "NL_NAME_1": "ยโสธร",
+            "VARNAME_1": ""
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/timorleste-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/timorleste-topo.json
new file mode 100644
index 0000000..8d14f19
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/timorleste-topo.json
@@ -0,0 +1,1585 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [10937, 7269],
+      [26, -126],
+      [-18, -63],
+      [-44, -28],
+      [-14, -43],
+      [54, -63],
+      [3, -34],
+      [53, -71],
+      [-10, -75],
+      [49, -104],
+      [28, -8],
+      [12, -105],
+      [23, -14],
+      [14, -62],
+      [68, -33],
+      [25, 6],
+      [36, -62],
+      [-13, -74],
+      [0, -126],
+      [-12, -21],
+      [49, -123],
+      [-68, -66],
+      [-12, -60]
+    ],
+    [
+      [11186, 5914],
+      [-53, -33],
+      [-54, 53],
+      [-19, -12],
+      [-45, 37],
+      [-50, 1],
+      [3, -71],
+      [-19, -50],
+      [-90, -60],
+      [-6, -80],
+      [-27, -11],
+      [-22, -47],
+      [-24, -3],
+      [-33, -47],
+      [-82, 34]
+    ],
+    [
+      [10665, 5625],
+      [12, 40],
+      [-116, 113],
+      [-37, -15],
+      [-35, 11],
+      [-56, 48],
+      [-36, 8],
+      [-71, -39],
+      [-73, -14],
+      [-50, -24],
+      [-26, -40],
+      [-10, -129],
+      [-41, -4],
+      [-118, 18],
+      [-43, -23],
+      [-31, 4],
+      [-20, -53],
+      [17, -35],
+      [-2, -94],
+      [11, -64],
+      [-75, -37],
+      [-21, 9],
+      [-73, -18],
+      [-36, -45],
+      [-49, -14],
+      [-37, -55],
+      [-40, -5],
+      [-54, 38],
+      [-40, -20],
+      [-38, -48],
+      [-35, -12],
+      [-78, 0],
+      [-37, 11],
+      [-35, -30]
+    ],
+    [
+      [9292, 5107],
+      [-64, -16],
+      [-28, 175],
+      [11, 31],
+      [-21, 54],
+      [-32, 35],
+      [-43, 101],
+      [-43, 9],
+      [-48, -10],
+      [-30, 29],
+      [-7, 78],
+      [-30, 28],
+      [44, 73],
+      [16, 61],
+      [49, 37],
+      [-11, 56],
+      [39, 65],
+      [-3, 65],
+      [-69, 54],
+      [-38, 0],
+      [-23, 56],
+      [58, 18],
+      [82, -23],
+      [42, 1],
+      [17, 135],
+      [65, -32],
+      [83, 18],
+      [50, 66],
+      [53, 48],
+      [58, 121],
+      [-3, 56],
+      [-29, 14],
+      [-38, 95],
+      [-17, 76],
+      [-66, 22],
+      [-50, 44]
+    ],
+    [
+      [9266, 6747],
+      [4, 23],
+      [65, 4],
+      [-8, 53],
+      [18, 38],
+      [52, 31],
+      [22, 40]
+    ],
+    [
+      [9419, 6936],
+      [31, -1],
+      [66, -47],
+      [127, -54],
+      [69, 31],
+      [39, 31],
+      [62, 80],
+      [11, 44],
+      [112, 29],
+      [-37, 76],
+      [106, 50],
+      [144, -80],
+      [30, 11],
+      [41, 59],
+      [36, 103],
+      [31, 9],
+      [-1, -57],
+      [77, -78],
+      [61, -6],
+      [16, 46],
+      [-14, 83],
+      [28, 20],
+      [47, 79],
+      [54, -20],
+      [32, -30],
+      [76, 12],
+      [54, -14],
+      [71, 0],
+      [69, 12],
+      [45, -19],
+      [35, -36]
+    ],
+    [
+      [10665, 5625],
+      [-37, -27],
+      [-58, -5],
+      [-64, -77],
+      [-50, -14],
+      [-11, -37],
+      [-40, -56],
+      [17, -27],
+      [-30, -39],
+      [32, -76],
+      [-13, -36],
+      [32, -68],
+      [-37, -38],
+      [18, -45],
+      [-10, -112],
+      [40, -20],
+      [-23, -44],
+      [4, -112],
+      [-33, -77],
+      [-34, -29],
+      [-67, 51],
+      [-35, -5],
+      [-71, -186],
+      [-49, -4],
+      [-52, 45],
+      [-56, 11],
+      [-24, -34],
+      [5, -37],
+      [-47, -59],
+      [-7, -57],
+      [-34, -11],
+      [-7, -65],
+      [-46, -39],
+      [-36, -66],
+      [-11, -81],
+      [14, -71],
+      [-26, -103],
+      [-17, -142],
+      [36, -29],
+      [-6, -63],
+      [24, -48],
+      [-2, -89],
+      [103, -67],
+      [101, -45],
+      [9, -43],
+      [50, -55],
+      [44, 10],
+      [62, -61],
+      [80, 27],
+      [29, -12],
+      [19, -47],
+      [63, -34],
+      [20, -64],
+      [26, -16],
+      [4, -105],
+      [-30, -85],
+      [-71, -6],
+      [-38, -40],
+      [5, -42],
+      [-22, -49],
+      [18, -118],
+      [26, -76],
+      [4, -70],
+      [16, -25],
+      [80, -44],
+      [75, -120]
+    ],
+    [
+      [10527, 2417],
+      [-60, -19],
+      [-55, -37],
+      [-81, -4],
+      [-87, 10],
+      [-202, 105],
+      [-70, 14],
+      [-107, -12],
+      [-56, -22],
+      [-98, -72],
+      [-91, -88],
+      [-89, -69],
+      [-183, -18],
+      [-81, -33]
+    ],
+    [
+      [9267, 2172],
+      [20, 84],
+      [84, 145],
+      [50, 16],
+      [28, 64],
+      [20, 94],
+      [31, 85],
+      [-61, 25],
+      [-34, 62],
+      [-2, 41],
+      [-25, 35],
+      [-166, -8],
+      [3, 26],
+      [-135, 96],
+      [45, 175],
+      [-9, 66],
+      [-33, 71],
+      [13, 46],
+      [-10, 39],
+      [-44, 35],
+      [-27, 50],
+      [-119, 25],
+      [-2, 45],
+      [26, 46],
+      [-21, 84],
+      [29, 84],
+      [-12, 52],
+      [-30, 31],
+      [-15, 59],
+      [-73, 29]
+    ],
+    [
+      [8798, 3874],
+      [-23, 29],
+      [-11, 67],
+      [37, 74]
+    ],
+    [
+      [8801, 4044],
+      [119, 73],
+      [13, 44],
+      [36, 45],
+      [-29, 77],
+      [53, 83],
+      [79, 60],
+      [50, 49],
+      [7, 64],
+      [61, 45],
+      [22, 41],
+      [-17, 108],
+      [40, 24],
+      [37, 81],
+      [85, 42],
+      [30, 44],
+      [-95, 183]
+    ],
+    [
+      [2555, 2630],
+      [121, -48],
+      [74, -20],
+      [18, -128],
+      [-30, -87],
+      [-48, -40],
+      [-16, -127],
+      [7, -105],
+      [-16, -37],
+      [2, -63],
+      [-64, -118],
+      [6, -121],
+      [41, -135],
+      [-50, -74],
+      [-48, 17],
+      [-43, -65],
+      [-10, -147],
+      [-33, 16],
+      [-49, -6],
+      [-26, -27],
+      [-72, -10],
+      [-36, -35],
+      [-21, -82],
+      [-29, -29],
+      [-65, -33],
+      [-38, 21],
+      [-12, -100],
+      [-28, -48],
+      [24, -20],
+      [21, -67],
+      [-5, -71],
+      [-79, -91],
+      [-32, -81],
+      [-56, -42],
+      [-20, -37],
+      [-2, -72],
+      [67, -58],
+      [26, -107],
+      [-56, -38],
+      [-5, -110],
+      [-38, -56],
+      [-44, 22],
+      [-119, -56],
+      [-48, -45],
+      [-83, 12],
+      [-99, -82],
+      [-61, 13],
+      [7, 110],
+      [24, 72],
+      [32, 53],
+      [-30, 114],
+      [23, 54],
+      [-18, 50],
+      [-58, 74],
+      [4, 79],
+      [-29, 82],
+      [-52, 84],
+      [-6, 51],
+      [-62, 33],
+      [-55, 79],
+      [-31, 10],
+      [-24, 59],
+      [-30, -13],
+      [-89, 79],
+      [-34, -35],
+      [-41, -8],
+      [-5, -48],
+      [-73, -4],
+      [-15, -50],
+      [-52, -37],
+      [-52, -14],
+      [-36, -31],
+      [26, -37],
+      [-69, -101],
+      [8, -50],
+      [-25, -16],
+      [-153, -43],
+      [-58, 120],
+      [-80, 35],
+      [-40, -19],
+      [-84, -2],
+      [-204, 388],
+      [-47, 59],
+      [-28, 14],
+      [-25, 45],
+      [1, 65],
+      [119, 30],
+      [61, 58],
+      [64, -23],
+      [80, 26],
+      [22, 37],
+      [69, 71],
+      [73, 5],
+      [39, 23],
+      [55, 74],
+      [126, 13],
+      [47, 40],
+      [19, 49],
+      [37, 46],
+      [44, 110],
+      [33, 110],
+      [98, 29],
+      [21, 18],
+      [65, -7],
+      [47, 51],
+      [73, 8],
+      [35, 18],
+      [106, -12],
+      [54, 92],
+      [55, 7],
+      [98, 60],
+      [45, 7],
+      [51, 36],
+      [19, 69],
+      [39, 27],
+      [48, -16],
+      [72, 31],
+      [119, 1],
+      [35, -17],
+      [93, 0],
+      [96, 42],
+      [37, 44],
+      [32, -6],
+      [104, 120],
+      [99, 42],
+      [83, -11],
+      [42, 14]
+    ],
+    [
+      [16842, 8406],
+      [15, -73],
+      [33, -21],
+      [25, -48],
+      [-9, -41],
+      [15, -79],
+      [56, -166],
+      [87, -53],
+      [41, -5],
+      [27, -36],
+      [-50, -25],
+      [-38, -62],
+      [-26, -9],
+      [3, -93],
+      [44, -39],
+      [41, -53],
+      [71, -24],
+      [48, -96],
+      [21, -81],
+      [76, -41],
+      [81, -64],
+      [16, -117],
+      [41, -16],
+      [55, -60],
+      [21, -53],
+      [23, 4],
+      [7, -67],
+      [19, -49],
+      [-28, -64],
+      [-28, 11],
+      [-43, -22],
+      [-72, -9],
+      [-28, -26],
+      [-40, -93],
+      [-55, -54],
+      [-14, -80],
+      [-57, -1],
+      [-45, -65],
+      [-17, -72],
+      [-51, -77],
+      [-45, -22]
+    ],
+    [
+      [17062, 6365],
+      [31, 79],
+      [-42, 80],
+      [6, 32],
+      [-42, 26],
+      [-65, 90],
+      [-47, -7],
+      [-188, 30],
+      [-57, 47],
+      [-81, 23],
+      [-56, -91],
+      [-111, -30],
+      [-40, -84],
+      [10, -104],
+      [-63, -100],
+      [-109, 158],
+      [-49, 58],
+      [6, 58],
+      [-27, 11],
+      [-35, -26],
+      [-77, -18],
+      [-52, -55],
+      [-76, -29],
+      [-85, -101],
+      [-69, -5],
+      [-74, 34],
+      [-55, 109],
+      [-6, 28],
+      [-61, 80],
+      [-28, 53],
+      [4, 42],
+      [-19, 41],
+      [-1, 47],
+      [20, 66],
+      [-66, 46],
+      [3, 60],
+      [-28, 80],
+      [-63, 11],
+      [8, -39],
+      [-37, -119],
+      [18, -77],
+      [34, -5],
+      [4, -47],
+      [-33, -23],
+      [-52, -116],
+      [-39, -45],
+      [-20, -73],
+      [60, -68],
+      [5, -108],
+      [-32, 0],
+      [-18, -116],
+      [-33, -18],
+      [-244, 83],
+      [-37, 26],
+      [-18, 85],
+      [-31, 33],
+      [0, 60],
+      [29, 63],
+      [-38, 0],
+      [-52, -26],
+      [-27, -41],
+      [-57, -1],
+      [-46, -33],
+      [-18, -59],
+      [-94, -50],
+      [-30, 23],
+      [-23, 59],
+      [-70, -21],
+      [-39, -39],
+      [-61, -3],
+      [-106, 94],
+      [-53, 4],
+      [-51, -72],
+      [-12, -50],
+      [-31, -16],
+      [-22, -49],
+      [-60, -5],
+      [-21, 69],
+      [-79, -11],
+      [-49, 18],
+      [-32, -106],
+      [-92, 14],
+      [-23, 70],
+      [-51, 6],
+      [-40, -47],
+      [-49, 31],
+      [-54, 7],
+      [-27, 49],
+      [-38, 33],
+      [-42, -22],
+      [-41, 49],
+      [-33, 0]
+    ],
+    [
+      [13373, 6475],
+      [16, 46],
+      [83, 77],
+      [7, 18],
+      [70, 29],
+      [25, 60],
+      [48, 48],
+      [35, 73],
+      [-4, 83],
+      [-19, 44],
+      [35, 42],
+      [-23, 79],
+      [29, 126],
+      [-63, 86],
+      [-17, 92],
+      [-10, 211],
+      [9, 36],
+      [-93, 90],
+      [-29, 44],
+      [-26, 94]
+    ],
+    [
+      [13446, 7853],
+      [54, -1],
+      [79, -49],
+      [46, -3],
+      [108, 61],
+      [127, -31],
+      [46, -27],
+      [66, 31],
+      [72, 96],
+      [35, -5],
+      [115, 44],
+      [83, 75],
+      [51, 80],
+      [53, 42],
+      [99, 33],
+      [108, 16],
+      [38, 82],
+      [74, 89],
+      [95, 36],
+      [47, -41],
+      [28, 29],
+      [109, 47],
+      [92, 31],
+      [65, -46],
+      [55, -13],
+      [41, -26],
+      [88, -89],
+      [30, -4],
+      [60, -41],
+      [90, -15],
+      [44, -23],
+      [85, -20],
+      [83, -61],
+      [40, -55],
+      [53, -7],
+      [43, -31],
+      [96, -92],
+      [52, 7],
+      [37, -12],
+      [87, 93],
+      [105, 4],
+      [63, 73],
+      [141, 67],
+      [47, 6],
+      [129, 105],
+      [39, 9],
+      [62, 41],
+      [136, 48]
+    ],
+    [
+      [7275, 5847],
+      [41, -77],
+      [32, -34],
+      [58, 19],
+      [154, -18],
+      [95, -102],
+      [53, -73],
+      [86, -175],
+      [48, -85],
+      [14, -67],
+      [8, -144],
+      [74, -93],
+      [-4, -157],
+      [36, -84],
+      [79, -32],
+      [13, -16],
+      [8, -92],
+      [26, -8],
+      [61, -106],
+      [-44, -48],
+      [-29, -64],
+      [59, -112],
+      [5, -56],
+      [69, -63],
+      [34, -96],
+      [-7, -59],
+      [42, -41],
+      [88, 13],
+      [66, 60],
+      [71, 3],
+      [16, 14],
+      [84, 10],
+      [90, 35],
+      [72, -49],
+      [28, -6]
+    ],
+    [
+      [8798, 3874],
+      [17, -31],
+      [14, -86],
+      [-84, -140],
+      [-54, 71],
+      [-10, 68],
+      [-25, 20],
+      [-47, -95],
+      [-26, -11],
+      [-4, -55],
+      [-55, -65],
+      [-56, -22],
+      [-44, -84],
+      [-14, -53],
+      [25, -74],
+      [-42, -70],
+      [22, -70],
+      [30, -49],
+      [-23, -91],
+      [-31, -38],
+      [-30, -83],
+      [-68, 30],
+      [-56, 6],
+      [-18, -23],
+      [-45, 1],
+      [-31, -64],
+      [-45, -35],
+      [-21, -78],
+      [7, -40],
+      [88, -60],
+      [60, -12],
+      [77, -55],
+      [-50, -89],
+      [8, -25],
+      [-43, -62],
+      [-29, -21],
+      [-42, 23],
+      [-53, -2],
+      [-54, -32],
+      [-46, -46],
+      [-29, 17],
+      [-86, 17],
+      [-36, -37],
+      [-11, -40],
+      [-72, 53],
+      [-50, -28],
+      [-52, -47],
+      [-33, 47],
+      [-29, -34],
+      [-96, 54],
+      [-6, 38],
+      [41, 108],
+      [-12, 48],
+      [-40, 37],
+      [-82, 37],
+      [-93, 13],
+      [-76, 47],
+      [-30, -28]
+    ],
+    [
+      [7208, 2634],
+      [-18, 67],
+      [15, 91],
+      [-17, 14],
+      [-36, 162],
+      [10, 32],
+      [44, 18],
+      [-37, 82],
+      [30, 47],
+      [14, 129],
+      [27, 28],
+      [18, 54],
+      [-17, 48],
+      [-1, 58],
+      [26, 21],
+      [2, 89],
+      [-29, 70],
+      [-1, 83],
+      [-80, 65],
+      [-59, 61],
+      [-87, 110],
+      [-70, -2],
+      [-49, 48],
+      [-1, 41],
+      [-50, 50],
+      [-6, 59],
+      [-57, 29],
+      [-48, -46],
+      [-18, -72],
+      [3, -45],
+      [-23, -87],
+      [-66, -102],
+      [-40, -21],
+      [-38, -60],
+      [-43, -40],
+      [-66, 3],
+      [-38, -37],
+      [-95, -10],
+      [-39, -39],
+      [-11, -44],
+      [-41, 12],
+      [-14, -56],
+      [-67, -3],
+      [-36, -98],
+      [-54, -19],
+      [-37, 10],
+      [-41, -19],
+      [-54, 18],
+      [-21, 40],
+      [-102, 1],
+      [-22, 77],
+      [-35, -11],
+      [-45, 23],
+      [9, 62],
+      [-62, 84],
+      [0, 78],
+      [33, 14],
+      [-2, 122],
+      [-24, 7],
+      [52, 129],
+      [57, 110],
+      [10, 64],
+      [30, 91],
+      [70, 30],
+      [17, -7],
+      [47, 53],
+      [18, 83],
+      [34, 25],
+      [20, 46],
+      [23, 119],
+      [53, 93],
+      [0, 39],
+      [23, 73],
+      [4, 104],
+      [49, 78],
+      [80, 93],
+      [38, 33],
+      [27, 49],
+      [35, 31],
+      [90, -7],
+      [89, 37],
+      [57, 60],
+      [98, 121],
+      [25, 63],
+      [1, 50],
+      [-29, 240],
+      [-8, 123]
+    ],
+    [
+      [6652, 5953],
+      [8, 31],
+      [52, -16],
+      [83, 9],
+      [42, -6],
+      [25, -34],
+      [74, -19],
+      [60, -53],
+      [91, 7],
+      [57, -20],
+      [70, 40],
+      [61, -45]
+    ],
+    [
+      [9267, 2172],
+      [-50, -23],
+      [-97, -64],
+      [-101, -85],
+      [-93, -58],
+      [-143, -48],
+      [-67, 6],
+      [-149, -23],
+      [-99, -51],
+      [-116, -96],
+      [-71, -80],
+      [-56, -46],
+      [-162, -108],
+      [-110, -114],
+      [-29, -43],
+      [-57, -121],
+      [-39, -44],
+      [-39, 23],
+      [-53, -21],
+      [-42, -60],
+      [-25, -67],
+      [-80, -84],
+      [-75, -96],
+      [-126, -147],
+      [-95, 21],
+      [-63, -17],
+      [-145, -19],
+      [-124, -43],
+      [-124, -80],
+      [-66, -61],
+      [-104, -131],
+      [-31, -49],
+      [-32, 87],
+      [-30, 51],
+      [11, 78],
+      [-15, 53],
+      [16, 31],
+      [-17, 38],
+      [19, 26],
+      [-28, 64],
+      [16, 119],
+      [-29, 51],
+      [-29, 10],
+      [-34, 79],
+      [-82, 75],
+      [-16, 81],
+      [15, 169],
+      [-18, 46],
+      [-74, 45],
+      [-53, 17],
+      [-38, 39],
+      [-31, 64],
+      [-52, 33],
+      [-28, 41],
+      [-59, -1],
+      [-15, 31],
+      [22, 92],
+      [-54, 81],
+      [-12, 103],
+      [-20, 38],
+      [-12, 111],
+      [-28, 20],
+      [23, 50],
+      [-6, 64],
+      [18, 147],
+      [30, 46],
+      [-2, 61],
+      [40, 104],
+      [38, -14],
+      [68, -2],
+      [18, 37],
+      [78, -13],
+      [44, 9],
+      [15, -30],
+      [84, 21],
+      [24, 18],
+      [99, -53],
+      [41, -2],
+      [30, -98],
+      [71, -52],
+      [52, -73],
+      [27, 72],
+      [90, 72],
+      [31, 10],
+      [75, 77],
+      [97, 29],
+      [59, -17],
+      [105, -1],
+      [30, 57]
+    ],
+    [
+      [9419, 6936],
+      [-50, 6],
+      [-19, 24],
+      [12, 51],
+      [-7, 43],
+      [19, 51],
+      [-15, 56],
+      [-67, 28],
+      [-3, 46],
+      [-85, 101],
+      [27, 43]
+    ],
+    [
+      [9231, 7385],
+      [62, -5],
+      [64, 85],
+      [100, 69],
+      [153, -83],
+      [77, -6],
+      [49, -38],
+      [69, 45],
+      [35, -3],
+      [67, 23],
+      [24, -6],
+      [40, 72],
+      [3, 39],
+      [-33, 19],
+      [-2, 76],
+      [39, -21],
+      [41, 19],
+      [2, -44],
+      [84, -16],
+      [82, 15],
+      [70, -9],
+      [46, 11],
+      [113, -89],
+      [90, 20],
+      [133, 110],
+      [33, -54],
+      [47, 46],
+      [78, -16],
+      [52, 32],
+      [56, 61],
+      [173, 67],
+      [95, -11],
+      [46, 20],
+      [79, 88],
+      [35, -9],
+      [40, 40]
+    ],
+    [
+      [11373, 7932],
+      [62, -54],
+      [36, -75],
+      [65, -57],
+      [-23, -69],
+      [11, -31],
+      [-47, -52],
+      [-40, -10],
+      [-51, -64],
+      [-49, 30],
+      [-39, -33],
+      [-91, -8],
+      [-47, -46],
+      [-46, 0],
+      [-12, 24],
+      [-50, 7],
+      [-19, -32],
+      [-4, -69],
+      [-34, -90],
+      [-58, -34]
+    ],
+    [
+      [10114, 10726],
+      [15, -46],
+      [15, -114],
+      [-9, -27],
+      [28, -96],
+      [-22, -25],
+      [-1, -47],
+      [-37, -78],
+      [-5, -75],
+      [-53, -60],
+      [-26, -55],
+      [-27, -18],
+      [-47, -95],
+      [-20, -216],
+      [14, -45],
+      [-65, -247],
+      [-104, -156],
+      [-43, -15],
+      [-94, 17],
+      [-45, 65],
+      [-159, 10],
+      [-147, 165],
+      [-33, 96],
+      [24, 43],
+      [86, 80],
+      [24, 51],
+      [10, 109],
+      [83, 55],
+      [82, 2],
+      [41, 90],
+      [22, 11],
+      [18, 69],
+      [99, 130],
+      [49, 48],
+      [31, 99],
+      [46, 31],
+      [65, 74],
+      [73, 124],
+      [112, 46]
+    ],
+    [
+      [7275, 5847],
+      [44, 73],
+      [76, 54],
+      [47, -5],
+      [37, 29],
+      [59, -2],
+      [27, 14],
+      [92, 2],
+      [85, 76],
+      [31, -16],
+      [44, 10],
+      [68, 53],
+      [36, 63],
+      [64, 38],
+      [32, -10],
+      [37, 75],
+      [55, 6],
+      [21, -24],
+      [70, 20],
+      [50, -15],
+      [32, -56],
+      [62, 2],
+      [-4, 31],
+      [79, -11],
+      [62, 77],
+      [107, 21],
+      [14, 32],
+      [-5, 73],
+      [34, 57],
+      [48, -35],
+      [77, 44],
+      [61, 52],
+      [19, 51],
+      [48, 23],
+      [24, 41],
+      [52, -28],
+      [29, 28],
+      [47, -11],
+      [18, 25],
+      [99, 0],
+      [46, 36],
+      [53, -12],
+      [14, 19]
+    ],
+    [
+      [20835, 8514],
+      [49, -28],
+      [35, -44],
+      [32, -90],
+      [-17, -85],
+      [-43, -11],
+      [-16, -31],
+      [-61, 14],
+      [-75, 84],
+      [-5, 104],
+      [9, 41],
+      [49, 43],
+      [43, 3]
+    ],
+    [
+      [17102, 5824],
+      [-14, 24],
+      [19, 58],
+      [9, 117],
+      [-29, 9],
+      [5, 81],
+      [-35, 40],
+      [10, 42],
+      [-10, 126],
+      [5, 44]
+    ],
+    [
+      [16842, 8406],
+      [77, 44],
+      [51, 59],
+      [22, 5],
+      [67, 61],
+      [46, -1],
+      [35, -57],
+      [58, -56],
+      [101, -34],
+      [51, 30],
+      [64, 2],
+      [54, 68],
+      [46, 29],
+      [73, -2],
+      [56, 40],
+      [37, 4],
+      [30, 35],
+      [28, 1],
+      [59, 35],
+      [67, 67],
+      [153, 97],
+      [42, -4],
+      [47, 39],
+      [65, 32],
+      [71, 66],
+      [111, 116],
+      [100, 39],
+      [62, 46],
+      [279, 36],
+      [55, -39],
+      [79, -82],
+      [48, -21],
+      [32, 12],
+      [70, -34],
+      [42, -69],
+      [62, -83],
+      [50, -10],
+      [70, 10],
+      [46, -28],
+      [57, 5],
+      [109, -16],
+      [115, 20],
+      [73, 29],
+      [150, 164],
+      [22, 4],
+      [48, 50],
+      [34, -18],
+      [70, 3],
+      [35, -39],
+      [13, -57],
+      [81, -104],
+      [26, -49],
+      [82, -84],
+      [58, -3],
+      [85, -47],
+      [56, 6],
+      [44, -28],
+      [66, 13],
+      [58, -19],
+      [43, -42],
+      [8, -124],
+      [16, -62],
+      [-5, -103],
+      [-48, -44],
+      [-44, -1],
+      [-68, -31],
+      [-42, -54],
+      [-10, -62],
+      [-62, -81],
+      [-82, -65],
+      [-92, -37],
+      [-16, -47],
+      [-34, -41],
+      [-72, -60],
+      [-25, -87],
+      [-138, -143],
+      [-75, -38],
+      [-50, -59],
+      [-134, -82],
+      [-30, -46],
+      [-50, -15],
+      [-39, -60],
+      [-42, -26],
+      [-88, -89],
+      [-20, -41],
+      [-101, -95],
+      [-12, -35],
+      [-95, -115],
+      [-71, -109],
+      [-49, -96],
+      [-69, -65],
+      [-93, -103],
+      [-45, -122],
+      [-36, -39],
+      [-66, 35],
+      [-41, -4],
+      [-54, 22],
+      [-57, 2],
+      [-97, -11],
+      [-55, -21],
+      [-127, -76],
+      [-80, -80],
+      [-38, -55],
+      [-64, -4],
+      [-129, -95],
+      [-59, -79],
+      [-77, -80],
+      [-89, -63],
+      [-99, -32],
+      [-44, -4],
+      [-39, -32],
+      [-39, 2],
+      [-31, 33],
+      [-66, 11],
+      [-55, -12],
+      [-60, 16],
+      [-47, 53],
+      [-89, -1],
+      [-79, -37],
+      [-64, -43],
+      [-13, 9]
+    ],
+    [
+      [6652, 5953],
+      [-6, 41],
+      [26, 32],
+      [33, 150],
+      [0, 113],
+      [-16, 62],
+      [53, 86],
+      [14, 78],
+      [34, 93],
+      [39, 50],
+      [24, 78],
+      [129, 41],
+      [59, 48],
+      [89, 40],
+      [170, 89],
+      [62, 9],
+      [46, 36],
+      [115, 3],
+      [61, 13],
+      [62, -6],
+      [53, 12],
+      [92, -17],
+      [168, 24],
+      [77, 101],
+      [69, -15],
+      [37, 7],
+      [37, 52],
+      [80, 0],
+      [38, 28],
+      [110, 26],
+      [46, 25],
+      [65, 57],
+      [203, 32],
+      [73, -30],
+      [92, -20],
+      [28, -25],
+      [102, 28],
+      [53, -1],
+      [12, -48],
+      [38, 3],
+      [35, 63],
+      [14, 80],
+      [63, -6]
+    ],
+    [
+      [13373, 6475],
+      [-44, 45],
+      [-68, -22],
+      [-44, 24],
+      [-105, -51],
+      [-25, -67],
+      [-35, -35],
+      [-27, -164],
+      [13, -35],
+      [-4, -85],
+      [-33, -24],
+      [-17, -58],
+      [-79, -95],
+      [-36, -25],
+      [-55, -63],
+      [-27, 2],
+      [-37, -52],
+      [-31, -84],
+      [33, -107],
+      [-25, -59],
+      [45, -32],
+      [8, -36],
+      [62, -50],
+      [58, -77],
+      [-4, -87],
+      [24, -36],
+      [69, -36],
+      [33, -54],
+      [-10, -75],
+      [-26, -40],
+      [24, -65],
+      [-49, -84],
+      [47, -74],
+      [2, -45],
+      [33, -46],
+      [17, -52],
+      [2, -99],
+      [25, -106],
+      [-2, -35],
+      [28, -49],
+      [58, -14],
+      [48, -31],
+      [44, -72],
+      [80, -68],
+      [-13, -20],
+      [5, -72],
+      [43, -20],
+      [28, -41]
+    ],
+    [
+      [13406, 4004],
+      [-75, -31],
+      [-64, -39],
+      [-224, -175],
+      [-55, -55],
+      [-29, -54],
+      [-108, -142],
+      [-37, -22]
+    ],
+    [
+      [12814, 3486],
+      [-43, 163],
+      [-34, 18],
+      [-22, 95],
+      [-19, 41],
+      [-51, 8],
+      [-8, 43],
+      [-110, 147],
+      [-29, -9],
+      [-89, 51],
+      [-4, 16],
+      [-110, 98],
+      [-126, 59],
+      [-83, 98],
+      [-15, 82],
+      [-50, 16],
+      [2, 39],
+      [-56, 81],
+      [39, 82],
+      [-133, 116],
+      [-37, 12],
+      [-23, 38],
+      [-58, 27],
+      [-46, -7],
+      [-63, 37],
+      [-56, -10],
+      [-66, 30],
+      [-127, 22],
+      [-20, -33],
+      [-39, 23],
+      [-3, 149],
+      [-67, 80],
+      [-38, 74],
+      [-36, 37],
+      [15, 75],
+      [-30, 21],
+      [-24, 81],
+      [52, 58],
+      [-2, 23],
+      [48, 96],
+      [27, 77],
+      [-40, 13],
+      [5, 84],
+      [42, 79],
+      [2, 34],
+      [-30, 31],
+      [-24, -33],
+      [-29, 11],
+      [-20, 55]
+    ],
+    [
+      [11373, 7932],
+      [115, 84],
+      [238, -17],
+      [23, 15],
+      [68, 2],
+      [25, -26],
+      [94, -15],
+      [86, 15],
+      [24, 18],
+      [55, -18],
+      [58, -52],
+      [45, 3],
+      [37, -25],
+      [57, 25],
+      [55, -37],
+      [43, -65],
+      [89, -38],
+      [31, -50],
+      [87, -29],
+      [98, 2],
+      [39, -33],
+      [89, 33],
+      [24, -18],
+      [1, -58],
+      [41, 39],
+      [123, -15],
+      [42, 52],
+      [38, 24],
+      [37, -7],
+      [61, 50],
+      [39, 5],
+      [51, -35],
+      [60, 54],
+      [75, 3],
+      [25, 35]
+    ],
+    [
+      [12814, 3486],
+      [-18, -21],
+      [-128, -66],
+      [-82, -10],
+      [5, -39],
+      [-180, -204],
+      [-87, -78],
+      [-135, -68],
+      [-124, -107],
+      [-46, -13],
+      [-196, 7],
+      [-90, 19],
+      [-88, 35],
+      [-145, 22],
+      [-79, -28],
+      [-41, -48],
+      [-57, -43],
+      [-16, -52],
+      [-53, -42],
+      [-49, 39],
+      [-35, 7],
+      [-76, -14],
+      [-78, -49],
+      [-43, 0],
+      [-28, -56],
+      [-70, -40],
+      [-69, -7],
+      [-51, 21],
+      [-68, -24],
+      [-79, -88],
+      [-81, -122]
+    ],
+    [
+      [17102, 5824],
+      [-179, -5],
+      [-205, -53],
+      [-88, -48],
+      [-78, -62],
+      [-36, -13],
+      [-94, -82],
+      [-44, -59],
+      [-41, -36],
+      [-121, 24],
+      [-64, -20],
+      [-27, -31],
+      [-53, -95],
+      [-48, -22],
+      [-129, -193],
+      [-61, -103],
+      [-84, -157],
+      [-27, -69],
+      [-70, -114],
+      [-28, -98],
+      [-45, -119],
+      [-75, -70],
+      [-44, -57],
+      [-76, -9],
+      [-72, -26],
+      [-42, 34],
+      [-22, -12],
+      [-63, 15],
+      [-47, -24],
+      [-58, 24],
+      [-111, -19],
+      [-72, -31],
+      [-32, -1],
+      [-128, -48],
+      [-373, -168],
+      [-161, -7],
+      [-54, 15],
+      [-223, 32],
+      [-138, 11],
+      [-104, 0],
+      [-123, -41],
+      [-69, -44],
+      [-87, -39]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0001573528709846786, 0.00012845422338243526],
+    "translate": [124.0452, -9.5047]
+  },
+  "objects": {
+    "timorleste": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4, 5]],
+          "type": "Polygon",
+          "properties": { "NAME": "Aileu", "ISO": "TL-AL" }
+        },
+        {
+          "arcs": [[6, 7, 8, 9, 10, -3]],
+          "type": "Polygon",
+          "properties": { "NAME": "Ainaro", "ISO": "TL-AN" }
+        },
+        { "arcs": [[11]], "type": "Polygon", "properties": { "NAME": "Oecusse", "ISO": "TL-OE" } },
+        {
+          "arcs": [[12, 13, 14, 15]],
+          "type": "Polygon",
+          "properties": { "NAME": "Baucau", "ISO": "TL-BA" }
+        },
+        {
+          "arcs": [[16, -10, 17, 18, 19]],
+          "type": "Polygon",
+          "properties": { "NAME": "Bobonaro", "ISO": "TL-BO" }
+        },
+        {
+          "arcs": [[20, -18, -9]],
+          "type": "Polygon",
+          "properties": { "NAME": "Covalima", "ISO": "TL-CO" }
+        },
+        {
+          "arcs": [[[-6, 21, 22, 23]], [[24]]],
+          "type": "MultiPolygon",
+          "properties": { "NAME": "Dili", "ISO": "TL-DI" }
+        },
+        {
+          "arcs": [[-11, -17, 25, -4]],
+          "type": "Polygon",
+          "properties": { "NAME": "Ermera", "ISO": "TL-ER" }
+        },
+        {
+          "arcs": [[[26]], [[27, -13, 28]]],
+          "type": "MultiPolygon",
+          "properties": { "NAME": "Lautem", "ISO": "TL-LA" }
+        },
+        {
+          "arcs": [[-22, -5, -26, -20, 29]],
+          "type": "Polygon",
+          "properties": { "NAME": "Liquica", "ISO": "TL-LI" }
+        },
+        {
+          "arcs": [[-15, 30, 31, 32, -1, -24, 33]],
+          "type": "Polygon",
+          "properties": { "NAME": "Manatuto", "ISO": "TL-MT" }
+        },
+        {
+          "arcs": [[-33, 34, -7, -2]],
+          "type": "Polygon",
+          "properties": { "NAME": "Manufahi", "ISO": "TL-MF" }
+        },
+        {
+          "arcs": [[-28, 35, -31, -14]],
+          "type": "Polygon",
+          "properties": { "NAME": "Viqueque", "ISO": "TL-VI" }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/uk-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/uk-topo.json
new file mode 100644
index 0000000..1febc02
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/uk-topo.json
@@ -0,0 +1,12370 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [12941, 4355],
+      [11, -91],
+      [50, -25],
+      [-31, -66],
+      [-9, -56]
+    ],
+    [
+      [12962, 4117],
+      [-70, 14]
+    ],
+    [
+      [12892, 4131],
+      [-31, -5]
+    ],
+    [
+      [12861, 4126],
+      [-34, 83]
+    ],
+    [
+      [12827, 4209],
+      [78, 31],
+      [15, 97],
+      [21, 18]
+    ],
+    [
+      [8711, 3636],
+      [-4, 59],
+      [52, -4],
+      [49, 21],
+      [20, 84]
+    ],
+    [
+      [8828, 3796],
+      [105, -5],
+      [33, 35],
+      [25, 65]
+    ],
+    [
+      [8991, 3891],
+      [29, -34],
+      [156, -7],
+      [173, 45]
+    ],
+    [
+      [9349, 3895],
+      [0, -124],
+      [-79, -65],
+      [55, -18],
+      [10, -39]
+    ],
+    [
+      [9335, 3649],
+      [-83, -64],
+      [-87, -2],
+      [-27, -44],
+      [-51, -24],
+      [-45, 7],
+      [-7, 35],
+      [-69, 28],
+      [-76, -44],
+      [-44, 0],
+      [-70, 74],
+      [-65, 21]
+    ],
+    [
+      [12148, 5186],
+      [-27, -14],
+      [-91, -5],
+      [-18, -61],
+      [8, -60],
+      [28, -50]
+    ],
+    [
+      [12048, 4996],
+      [-44, -33],
+      [-13, -51],
+      [-35, -33],
+      [-28, 45]
+    ],
+    [
+      [11928, 4924],
+      [-40, 91],
+      [-62, 65],
+      [-33, -9],
+      [-53, 51],
+      [-40, 17],
+      [46, 116]
+    ],
+    [
+      [11746, 5255],
+      [23, 36],
+      [-19, 68],
+      [29, 42],
+      [7, 62],
+      [-42, 27],
+      [54, 84],
+      [71, 65],
+      [-21, 55],
+      [-64, 73],
+      [15, 73],
+      [-49, 46]
+    ],
+    [
+      [11750, 5886],
+      [29, 61],
+      [-10, 111],
+      [75, 18],
+      [47, -47],
+      [50, 32],
+      [0, 59],
+      [32, 51],
+      [66, 15]
+    ],
+    [
+      [12039, 6186],
+      [43, -29],
+      [16, -51],
+      [70, -26],
+      [4, -67],
+      [20, -38],
+      [91, -8],
+      [2, -55],
+      [58, -28],
+      [28, -49],
+      [-19, -32],
+      [59, -25],
+      [-15, -46],
+      [128, -30],
+      [-23, -133]
+    ],
+    [
+      [12501, 5569],
+      [-87, -101],
+      [6, -53],
+      [-54, -35],
+      [-26, -46],
+      [-52, 39],
+      [-31, -25],
+      [-54, -7],
+      [5, -47],
+      [-25, -35],
+      [-37, 56],
+      [-19, -93],
+      [21, -36]
+    ],
+    [
+      [10521, 3668],
+      [-17, 87],
+      [-52, 29],
+      [-44, 90],
+      [61, 35],
+      [-10, 66],
+      [-32, 26],
+      [-44, 107]
+    ],
+    [
+      [10383, 4108],
+      [-6, 37]
+    ],
+    [
+      [10377, 4145],
+      [25, 73],
+      [49, 13],
+      [70, -10],
+      [56, -36],
+      [45, 19],
+      [45, -11],
+      [33, 23],
+      [39, -20],
+      [25, 33],
+      [48, -3],
+      [37, -42],
+      [56, 2],
+      [63, -26],
+      [53, 22],
+      [23, -54],
+      [47, -56],
+      [55, -10],
+      [118, -93],
+      [17, -3],
+      [96, 70],
+      [57, 69],
+      [-32, 69],
+      [-2, 51]
+    ],
+    [
+      [11400, 4225],
+      [60, -24],
+      [77, 6],
+      [39, 41],
+      [92, 3],
+      [34, -48],
+      [-26, -91],
+      [65, -61],
+      [55, 0],
+      [-30, 58],
+      [-1, 59],
+      [41, 10],
+      [81, -21],
+      [6, -46],
+      [50, 6],
+      [16, -79]
+    ],
+    [
+      [11959, 4038],
+      [-20, -115],
+      [-64, 30],
+      [-30, -43],
+      [-13, -58],
+      [-31, -41],
+      [-56, -14],
+      [-93, -48],
+      [-66, -84]
+    ],
+    [
+      [11586, 3665],
+      [-80, 46],
+      [-99, 6],
+      [-48, 23],
+      [-70, -8],
+      [-44, 13],
+      [-53, -19],
+      [-41, 48],
+      [-75, -5],
+      [-14, -43],
+      [-185, 36],
+      [-227, 4],
+      [-55, -46],
+      [5, -46],
+      [-79, -6]
+    ],
+    [
+      [12835, 3924],
+      [11, 88],
+      [49, 28],
+      [-3, 91]
+    ],
+    [
+      [12962, 4117],
+      [37, -60],
+      [49, 15]
+    ],
+    [
+      [13048, 4072],
+      [-1, -41]
+    ],
+    [
+      [13047, 4031],
+      [-19, -42],
+      [-74, -102],
+      [8, -48]
+    ],
+    [
+      [12962, 3839],
+      [-41, 34],
+      [-50, 8],
+      [-36, 43]
+    ],
+    [
+      [9236, 9682],
+      [-29, -77],
+      [-86, 24],
+      [-43, -52],
+      [-60, 8]
+    ],
+    [
+      [9018, 9585],
+      [-33, 68],
+      [2, 218],
+      [43, 62],
+      [74, 27],
+      [42, -18],
+      [56, -149],
+      [34, -111]
+    ],
+    [
+      [9932, 2072],
+      [-53, 16],
+      [2, 78]
+    ],
+    [
+      [9881, 2166],
+      [74, 4],
+      [79, -34],
+      [36, -50]
+    ],
+    [
+      [10070, 2086],
+      [-56, 5],
+      [-82, -19]
+    ],
+    [
+      [12367, 4169],
+      [-85, 8],
+      [-46, 51]
+    ],
+    [
+      [12236, 4228],
+      [29, 73],
+      [33, 10],
+      [24, 50]
+    ],
+    [
+      [12322, 4361],
+      [34, -72],
+      [58, -56]
+    ],
+    [
+      [12414, 4233],
+      [38, -60]
+    ],
+    [
+      [12452, 4173],
+      [-47, -16]
+    ],
+    [
+      [12405, 4157],
+      [-38, 12]
+    ],
+    [
+      [12742, 2256],
+      [-152, 65],
+      [-106, 32],
+      [-74, 10]
+    ],
+    [
+      [12410, 2363],
+      [-34, 79],
+      [25, 47],
+      [47, -7],
+      [43, 49],
+      [35, -23]
+    ],
+    [
+      [12526, 2508],
+      [111, -89],
+      [63, -61],
+      [42, -102]
+    ],
+    [
+      [8828, 3796],
+      [4, 157],
+      [-55, 62],
+      [-56, 35],
+      [-38, 43]
+    ],
+    [
+      [8683, 4093],
+      [71, 99]
+    ],
+    [
+      [8754, 4192],
+      [25, -38],
+      [140, -87],
+      [79, -38],
+      [-7, -138]
+    ],
+    [
+      [12736, 3638],
+      [-19, 64],
+      [-46, 91],
+      [-43, 36],
+      [-24, 50]
+    ],
+    [
+      [12604, 3879],
+      [2, 13]
+    ],
+    [
+      [12606, 3892],
+      [12, 5]
+    ],
+    [
+      [12618, 3897],
+      [65, -6],
+      [39, -20],
+      [32, 70]
+    ],
+    [
+      [12754, 3941],
+      [81, -17]
+    ],
+    [
+      [12962, 3839],
+      [-16, -113],
+      [-87, -113],
+      [-4, -59],
+      [-58, 5]
+    ],
+    [
+      [12797, 3559],
+      [-47, -1],
+      [-14, 80]
+    ],
+    [
+      [11988, 4335],
+      [32, -106],
+      [-19, -143],
+      [-19, -43]
+    ],
+    [
+      [11982, 4043],
+      [-23, -5]
+    ],
+    [
+      [11400, 4225],
+      [-60, 57],
+      [30, 50],
+      [-48, 75],
+      [20, 41],
+      [14, 83],
+      [66, -7],
+      [-12, 134],
+      [-40, 62],
+      [-79, 41],
+      [-78, -10],
+      [-33, -23],
+      [-38, 20],
+      [-20, 56],
+      [-43, 17],
+      [-11, 151],
+      [69, -37],
+      [33, 24],
+      [-23, 117],
+      [-28, 50],
+      [9, 56],
+      [42, 52],
+      [-52, 33],
+      [43, 104],
+      [-81, 42]
+    ],
+    [
+      [11080, 5413],
+      [-50, 22],
+      [67, 68],
+      [89, 25],
+      [19, 28],
+      [48, -4],
+      [74, 23],
+      [58, -138],
+      [50, 40]
+    ],
+    [
+      [11435, 5477],
+      [44, -59],
+      [88, -88],
+      [83, -70],
+      [96, -5]
+    ],
+    [
+      [11928, 4924],
+      [-27, 6],
+      [-40, -53],
+      [-110, 26],
+      [-33, 46],
+      [2, 36],
+      [-57, 13],
+      [-25, -53],
+      [30, -48],
+      [47, -34],
+      [7, -68],
+      [62, -53],
+      [63, 1],
+      [60, -85],
+      [16, -107],
+      [58, -18],
+      [-38, -69],
+      [8, -86],
+      [37, -43]
+    ],
+    [
+      [13377, 6504],
+      [-81, -62],
+      [-4, -46],
+      [43, -89],
+      [41, -41],
+      [-19, -78],
+      [57, -3],
+      [56, -69],
+      [-22, -43],
+      [-96, -29],
+      [-70, 60],
+      [-49, -50],
+      [63, -84],
+      [51, 33],
+      [52, 5],
+      [63, -30],
+      [18, -46],
+      [-28, -86],
+      [1, -42],
+      [-55, 8],
+      [-44, -49],
+      [-6, -40],
+      [-44, -64],
+      [16, -116]
+    ],
+    [
+      [13320, 5543],
+      [-64, -40],
+      [-59, 78],
+      [-57, 28],
+      [-46, -21],
+      [-72, 12],
+      [-20, -64],
+      [-80, -38],
+      [-49, 33],
+      [3, -71],
+      [-41, -64]
+    ],
+    [
+      [12835, 5396],
+      [-43, 105],
+      [-92, 22],
+      [-27, -30],
+      [-56, -16],
+      [-62, -37],
+      [-39, 62],
+      [-15, 67]
+    ],
+    [
+      [12039, 6186],
+      [-4, 38],
+      [-36, 64],
+      [2, 44],
+      [87, 44],
+      [13, 34],
+      [50, 42],
+      [70, 112],
+      [-19, 89],
+      [-87, 56],
+      [13, 66],
+      [-24, 58]
+    ],
+    [
+      [12104, 6833],
+      [25, -2],
+      [105, -133],
+      [59, -8],
+      [71, 72],
+      [34, 52],
+      [111, 64],
+      [115, 21],
+      [19, 34],
+      [0, 153]
+    ],
+    [
+      [12643, 7086],
+      [73, -27],
+      [48, 1],
+      [37, 59],
+      [-7, 77],
+      [66, 19],
+      [77, 45],
+      [34, -3]
+    ],
+    [
+      [12971, 7257],
+      [-23, -139],
+      [60, -24],
+      [-19, -80],
+      [90, -74],
+      [-38, -44],
+      [13, -60],
+      [-15, -46],
+      [7, -55],
+      [44, -88],
+      [48, 32],
+      [64, 8],
+      [50, -33],
+      [52, -91],
+      [73, -59]
+    ],
+    [
+      [12523, 4266],
+      [31, -97],
+      [20, -28]
+    ],
+    [
+      [12574, 4141],
+      [-9, -10]
+    ],
+    [
+      [12565, 4131],
+      [-29, -6],
+      [-35, 52],
+      [-49, -4]
+    ],
+    [
+      [12414, 4233],
+      [62, 38]
+    ],
+    [
+      [12476, 4271],
+      [47, -5]
+    ],
+    [
+      [9797, 8503],
+      [-42, -55],
+      [-37, -4],
+      [-56, -48],
+      [-106, 10],
+      [8, -50],
+      [-34, -8],
+      [-70, -87]
+    ],
+    [
+      [9460, 8261],
+      [-57, -72]
+    ],
+    [
+      [9403, 8189],
+      [-42, -21],
+      [-49, 4],
+      [-45, -59],
+      [-44, -10],
+      [-12, -39],
+      [11, -95],
+      [-18, -28]
+    ],
+    [
+      [9204, 7941],
+      [-67, -28],
+      [-10, -35],
+      [-71, -28],
+      [-50, 19],
+      [-22, -37],
+      [-74, 16],
+      [-17, 61],
+      [-50, 22],
+      [-155, -49]
+    ],
+    [
+      [8688, 7882],
+      [-69, 47],
+      [-56, -2],
+      [-22, 47],
+      [-49, 51],
+      [-5, 81],
+      [-46, 122],
+      [-64, 62],
+      [-27, 51]
+    ],
+    [
+      [8350, 8341],
+      [70, 69],
+      [-5, 39],
+      [-63, 75],
+      [-68, 61],
+      [-53, 31],
+      [-81, 14]
+    ],
+    [
+      [8150, 8630],
+      [-10, 75]
+    ],
+    [
+      [8140, 8705],
+      [48, 51],
+      [61, -31],
+      [75, 8],
+      [43, -19],
+      [30, 45]
+    ],
+    [
+      [8397, 8759],
+      [69, -45],
+      [59, 12],
+      [37, 27],
+      [62, 1],
+      [12, 59],
+      [-67, 2]
+    ],
+    [
+      [8569, 8815],
+      [61, 50],
+      [-7, 44],
+      [46, 60],
+      [89, -24]
+    ],
+    [
+      [8758, 8945],
+      [26, -55],
+      [85, -50],
+      [36, -58]
+    ],
+    [
+      [8905, 8782],
+      [39, -9],
+      [159, 111]
+    ],
+    [
+      [9103, 8884],
+      [27, 65]
+    ],
+    [
+      [9130, 8949],
+      [94, -46],
+      [71, -7],
+      [50, -46],
+      [66, 33],
+      [92, -24],
+      [25, -62],
+      [28, 16],
+      [30, 82],
+      [58, 4],
+      [46, -23],
+      [48, 47]
+    ],
+    [
+      [9738, 8923],
+      [28, -89],
+      [4, -185],
+      [7, -58],
+      [29, -29],
+      [-9, -59]
+    ],
+    [
+      [5990, 2613],
+      [143, -5],
+      [3, -51],
+      [57, -120],
+      [-32, -36],
+      [-16, -107],
+      [14, -51],
+      [41, -49],
+      [53, 10],
+      [-2, -59],
+      [23, -57],
+      [3, -70],
+      [20, -36],
+      [18, -92],
+      [57, -45],
+      [-7, -97],
+      [41, -59],
+      [4, -58],
+      [79, -23],
+      [40, -101],
+      [-41, 1],
+      [-19, -63]
+    ],
+    [
+      [6469, 1445],
+      [38, -78],
+      [-7, -121],
+      [39, -91],
+      [-37, -103],
+      [-55, 62],
+      [-69, 43],
+      [-110, 3],
+      [-30, 11],
+      [-74, -9],
+      [-21, -44],
+      [-130, -52],
+      [-69, 22],
+      [-24, -19],
+      [-118, -5],
+      [-34, 46],
+      [-89, -44],
+      [14, -62],
+      [-41, -31],
+      [-2, -108],
+      [-19, -38],
+      [-96, 10],
+      [-60, -61],
+      [-81, -25],
+      [-22, -43],
+      [2, -53],
+      [-54, -64],
+      [-24, 39],
+      [7, 76],
+      [-17, 43],
+      [-46, -20],
+      [26, -60],
+      [-36, -19],
+      [4, -45],
+      [-32, -52],
+      [3, -52],
+      [-23, -27],
+      [37, -37],
+      [27, -72],
+      [-15, -46],
+      [-30, -7],
+      [-16, -69],
+      [-83, 8],
+      [-61, -126],
+      [-70, 41],
+      [-35, 83],
+      [17, 37],
+      [-32, 91],
+      [-81, 89],
+      [-35, -5],
+      [-47, 38],
+      [-58, 3],
+      [-48, 46],
+      [-45, 16],
+      [-56, -12],
+      [-26, -43],
+      [23, -47],
+      [-26, -70],
+      [-35, -24],
+      [-145, -46],
+      [-67, 76],
+      [34, 48],
+      [-17, 136],
+      [49, 81],
+      [73, 25],
+      [84, 60],
+      [24, 31],
+      [73, 20],
+      [47, -52],
+      [46, -15],
+      [66, 87],
+      [-6, 33],
+      [76, -5],
+      [43, 29],
+      [59, 66],
+      [44, 30],
+      [15, 82],
+      [53, 6],
+      [26, 51],
+      [35, 21],
+      [16, 68],
+      [1, 79],
+      [113, 38],
+      [41, 59],
+      [26, 248],
+      [60, 8],
+      [20, 41],
+      [49, -13],
+      [33, 55],
+      [66, 52],
+      [110, 9],
+      [37, 68],
+      [20, 121],
+      [75, 36],
+      [76, 78],
+      [4, 60],
+      [48, 31],
+      [92, 93],
+      [2, 181],
+      [-20, 120],
+      [22, 49]
+    ],
+    [
+      [3392, 9],
+      [7, 51],
+      [50, -13],
+      [-16, -47],
+      [-41, 9]
+    ],
+    [
+      [12475, 3635],
+      [78, 73],
+      [-11, 75],
+      [-20, 26]
+    ],
+    [
+      [12522, 3809],
+      [7, 54]
+    ],
+    [
+      [12529, 3863],
+      [75, 16]
+    ],
+    [
+      [12736, 3638],
+      [-59, 26],
+      [-30, -39],
+      [-56, -12],
+      [-25, -47],
+      [-39, -9],
+      [-52, 78]
+    ],
+    [
+      [8213, 13087],
+      [28, 81],
+      [-4, 92],
+      [82, -32],
+      [40, 2],
+      [33, 79],
+      [65, 26],
+      [50, 79]
+    ],
+    [
+      [8507, 13414],
+      [45, 71],
+      [72, 17],
+      [106, 80],
+      [20, 36]
+    ],
+    [
+      [8750, 13618],
+      [67, -152],
+      [63, -22],
+      [15, -53],
+      [60, -60],
+      [62, 18],
+      [34, -123],
+      [-115, -70],
+      [-11, -67],
+      [-36, -50],
+      [40, -23],
+      [34, -89],
+      [-26, -19],
+      [-16, -59],
+      [-35, -26],
+      [41, -63],
+      [4, -90],
+      [44, -40],
+      [50, -7],
+      [147, 108],
+      [56, -94],
+      [85, -71]
+    ],
+    [
+      [9313, 12566],
+      [-33, -144],
+      [-40, -94],
+      [14, -22],
+      [79, -43],
+      [18, -40],
+      [-39, -58],
+      [30, -102],
+      [112, -93],
+      [26, -53],
+      [42, -9],
+      [12, -186]
+    ],
+    [
+      [9534, 11722],
+      [-58, -24],
+      [-74, 4],
+      [-48, -32],
+      [-27, -46],
+      [18, -90],
+      [-95, -84],
+      [61, -77],
+      [-8, -101],
+      [17, -41],
+      [-14, -57],
+      [-64, 19],
+      [-71, -58],
+      [-69, 5]
+    ],
+    [
+      [9102, 11140],
+      [-15, 21],
+      [-109, -77],
+      [-67, -32],
+      [-75, 8],
+      [-64, -104],
+      [-56, 15],
+      [-36, 48],
+      [-87, 20],
+      [-63, -59]
+    ],
+    [
+      [8530, 10980],
+      [-46, 39],
+      [-19, 48],
+      [-45, -29],
+      [-15, -81],
+      [-91, -25],
+      [-33, 29],
+      [11, 39],
+      [-84, 58],
+      [-12, -95],
+      [-21, -17],
+      [-44, -93],
+      [-77, -77],
+      [-47, 30],
+      [-58, -16],
+      [-25, 96],
+      [12, 61],
+      [-11, 43],
+      [43, 16],
+      [25, 130],
+      [-39, 35],
+      [-41, -60],
+      [18, -41],
+      [-29, -32],
+      [-35, 15],
+      [-59, -15],
+      [-62, 111],
+      [-57, 78],
+      [-27, 197],
+      [-41, 39],
+      [-53, 105],
+      [-112, 141],
+      [-56, 93],
+      [-58, 64],
+      [37, 33],
+      [45, 102],
+      [19, 102],
+      [-7, 104],
+      [20, 43],
+      [66, 85],
+      [15, 57],
+      [68, 62],
+      [41, 63],
+      [-2, 108],
+      [50, 157],
+      [53, 67],
+      [103, -26],
+      [37, 51],
+      [-48, 32],
+      [33, 55],
+      [110, 47],
+      [104, -69],
+      [96, 27],
+      [-29, 47],
+      [60, 74]
+    ],
+    [
+      [7909, 10941],
+      [-15, -22],
+      [24, -56],
+      [-35, -17],
+      [-6, 71],
+      [32, 24]
+    ],
+    [
+      [10602, 11787],
+      [-51, 4],
+      [30, -81],
+      [-39, -8],
+      [-33, 79],
+      [-45, 5],
+      [-11, -40],
+      [-67, 63],
+      [-33, 59],
+      [-44, -11],
+      [-18, 39],
+      [-58, 20]
+    ],
+    [
+      [10233, 11916],
+      [1, 122],
+      [12, 34],
+      [65, 10],
+      [83, -59],
+      [132, 0],
+      [49, 18],
+      [55, 53]
+    ],
+    [
+      [10630, 12094],
+      [23, -40],
+      [-6, -52],
+      [-35, -24],
+      [-14, -52],
+      [33, -58],
+      [-29, -81]
+    ],
+    [
+      [10980, 8723],
+      [23, -18],
+      [0, -61],
+      [-53, -76],
+      [10, -59],
+      [-2, -108],
+      [-58, -14],
+      [-20, -28],
+      [-48, 7],
+      [-50, -30],
+      [-4, -30],
+      [31, -122],
+      [-56, -86],
+      [12, -96],
+      [55, -71],
+      [2, -102],
+      [20, -69],
+      [-3, -53],
+      [57, -47],
+      [-44, -49]
+    ],
+    [
+      [10852, 7611],
+      [-57, 2],
+      [-103, -80],
+      [-36, -107],
+      [-47, -15],
+      [-70, -91],
+      [-86, 3],
+      [-16, -42],
+      [13, -71],
+      [-71, -54]
+    ],
+    [
+      [10379, 7156],
+      [-84, 0],
+      [-9, 56],
+      [-81, 50],
+      [42, 83],
+      [64, 36],
+      [20, 66],
+      [36, 33],
+      [-58, 78],
+      [-134, 11],
+      [-50, 54],
+      [-102, 24],
+      [-25, 75],
+      [1, 51],
+      [34, 14],
+      [7, 81],
+      [81, 55],
+      [18, 45],
+      [-3, 57],
+      [-24, 25],
+      [-18, 101],
+      [6, 50],
+      [-41, 73],
+      [1, 59],
+      [-37, 55],
+      [-48, 35],
+      [-112, 48],
+      [-30, 48],
+      [-36, -16]
+    ],
+    [
+      [9738, 8923],
+      [52, 72],
+      [-44, 37],
+      [3, 38],
+      [40, 43],
+      [28, 131],
+      [66, 15],
+      [32, 83]
+    ],
+    [
+      [9915, 9342],
+      [39, -2],
+      [81, -41]
+    ],
+    [
+      [10035, 9299],
+      [30, -50],
+      [12, -73],
+      [83, -71],
+      [-4, -78],
+      [48, -18],
+      [16, -42],
+      [65, -28],
+      [-6, -64],
+      [86, -36],
+      [14, -29],
+      [-40, -53],
+      [58, -3],
+      [58, -39],
+      [107, 44],
+      [40, 43],
+      [56, 5],
+      [19, -48],
+      [72, -20],
+      [31, 38],
+      [43, -37],
+      [59, -22],
+      [98, 5]
+    ],
+    [
+      [10618, 7588],
+      [35, 103],
+      [-6, 45],
+      [-77, 63],
+      [-49, 9],
+      [-76, -103],
+      [-12, -56],
+      [77, -75],
+      [92, -14],
+      [16, 28]
+    ],
+    [
+      [6626, 1123],
+      [35, 38],
+      [91, 48],
+      [-4, 53],
+      [-122, 93],
+      [-45, 0],
+      [-44, -24]
+    ],
+    [
+      [6537, 1331],
+      [-25, 76],
+      [-43, 38]
+    ],
+    [
+      [5990, 2613],
+      [32, 109],
+      [-3, 73],
+      [19, 71],
+      [77, 1],
+      [66, -19],
+      [54, -52],
+      [67, -13],
+      [51, 15],
+      [74, 111],
+      [34, 14],
+      [14, 49],
+      [66, -16],
+      [41, 62],
+      [-90, -9],
+      [-9, 103],
+      [-54, 78],
+      [62, 8],
+      [9, 57],
+      [-17, 32],
+      [28, 41],
+      [41, -5],
+      [78, 36],
+      [72, 14],
+      [33, -25],
+      [32, 21],
+      [117, 12],
+      [37, 28],
+      [64, -7],
+      [61, 15],
+      [103, 7],
+      [83, -15]
+    ],
+    [
+      [7232, 3409],
+      [-15, -138],
+      [-68, -13],
+      [-75, 10],
+      [-7, -91],
+      [75, -80],
+      [36, -10],
+      [52, -62],
+      [55, -1],
+      [62, -53],
+      [59, 3],
+      [12, -22],
+      [-29, -78],
+      [12, -32],
+      [104, -12],
+      [31, 60],
+      [49, 14],
+      [45, -25],
+      [33, 8],
+      [71, -54],
+      [5, -71],
+      [73, -6],
+      [78, -80],
+      [69, -10],
+      [95, 12],
+      [-31, -87],
+      [45, -46],
+      [85, 29],
+      [63, -6],
+      [-1, -72],
+      [126, -70],
+      [21, -73]
+    ],
+    [
+      [8362, 2353],
+      [98, -65],
+      [-95, -68],
+      [21, -23],
+      [-25, -72],
+      [10, -38]
+    ],
+    [
+      [8371, 2087],
+      [-112, -54],
+      [-95, 8],
+      [-18, -43],
+      [-145, -2],
+      [-103, -33],
+      [-62, -109],
+      [-93, -50],
+      [-60, 5],
+      [-12, 50],
+      [-51, 111],
+      [-22, -33],
+      [22, -32],
+      [10, -147],
+      [-33, -38],
+      [-41, -86],
+      [-23, -92]
+    ],
+    [
+      [7533, 1542],
+      [-114, 3],
+      [-33, -26],
+      [-48, -90],
+      [-10, -79],
+      [43, -69],
+      [158, -82]
+    ],
+    [
+      [7529, 1199],
+      [-5, -71],
+      [-88, -59],
+      [-48, -13],
+      [-52, -78],
+      [-17, -76],
+      [-4, -108],
+      [-37, 9],
+      [-54, -49],
+      [-80, 60],
+      [-20, -43],
+      [-55, 22],
+      [-52, 65],
+      [-4, 57],
+      [-25, 51],
+      [-120, 51],
+      [-48, 7],
+      [-68, -37],
+      [-47, 27],
+      [-19, 36],
+      [-41, -4],
+      [-19, 77]
+    ],
+    [
+      [8362, 2353],
+      [42, 48],
+      [194, 35],
+      [44, 33],
+      [66, 2],
+      [91, 48],
+      [57, -3],
+      [-3, 66],
+      [31, 119],
+      [-5, 49],
+      [72, 6],
+      [12, 60],
+      [68, -17],
+      [37, -84],
+      [44, -26],
+      [12, 46],
+      [47, -14],
+      [93, 46],
+      [-48, 41],
+      [9, 45],
+      [59, 67],
+      [-16, 58],
+      [20, 48]
+    ],
+    [
+      [9288, 3026],
+      [123, -31],
+      [65, -71],
+      [74, -149],
+      [31, -13],
+      [36, -65],
+      [59, 11],
+      [38, 30],
+      [55, 15],
+      [38, 39],
+      [30, -11]
+    ],
+    [
+      [9837, 2781],
+      [63, -115],
+      [41, -49],
+      [63, 23],
+      [47, -11],
+      [-10, -62],
+      [-41, -36],
+      [10, -66],
+      [40, 5],
+      [14, -93],
+      [-20, -76],
+      [34, -86],
+      [76, 24],
+      [2, -61],
+      [84, 0],
+      [8, -49]
+    ],
+    [
+      [10248, 2129],
+      [-71, 0],
+      [-37, -56],
+      [-70, 13]
+    ],
+    [
+      [9881, 2166],
+      [-32, 41],
+      [-78, 11],
+      [-17, -18],
+      [-21, -89],
+      [-26, -28]
+    ],
+    [
+      [9707, 2083],
+      [24, -94],
+      [70, -39],
+      [62, -91],
+      [-37, -37],
+      [-3, -66],
+      [-99, -6],
+      [-46, -31],
+      [-11, 37],
+      [-62, 15],
+      [-34, 36],
+      [-112, 29],
+      [-56, -16],
+      [-119, 23],
+      [-19, 19],
+      [-128, 10],
+      [-42, -58],
+      [-20, -55],
+      [6, -52],
+      [51, -9],
+      [19, -50],
+      [-64, -93],
+      [14, 118],
+      [-86, 102],
+      [-145, 134],
+      [-198, 134],
+      [-79, 41],
+      [-174, 40],
+      [-48, -37]
+    ],
+    [
+      [10233, 11916],
+      [-64, -16],
+      [-62, 10],
+      [-30, -121],
+      [-55, 54],
+      [-39, -57],
+      [-117, -67],
+      [-38, -1],
+      [-75, 47],
+      [-57, 19],
+      [-80, -31],
+      [-58, -47],
+      [-24, 16]
+    ],
+    [
+      [9313, 12566],
+      [48, 23],
+      [90, -35],
+      [29, 56],
+      [46, 9],
+      [40, 47],
+      [5, 39],
+      [71, -17],
+      [131, 88],
+      [108, -51],
+      [23, -28],
+      [56, 37],
+      [69, 145]
+    ],
+    [
+      [10029, 12879],
+      [175, -27],
+      [157, -4],
+      [52, -33]
+    ],
+    [
+      [10413, 12815],
+      [11, -56]
+    ],
+    [
+      [10424, 12759],
+      [43, -68],
+      [25, -82],
+      [97, -7],
+      [43, 11],
+      [32, 153],
+      [56, 23]
+    ],
+    [
+      [10720, 12789],
+      [40, -83],
+      [41, -185],
+      [76, -104]
+    ],
+    [
+      [10877, 12417],
+      [-72, -36],
+      [-47, -75],
+      [-11, -90],
+      [-68, -22],
+      [-13, -31]
+    ],
+    [
+      [10666, 12163],
+      [-36, -69]
+    ],
+    [
+      [12136, 4084],
+      [34, 61],
+      [-44, 20],
+      [47, 60]
+    ],
+    [
+      [12173, 4225],
+      [63, 3]
+    ],
+    [
+      [12367, 4169],
+      [-12, -83]
+    ],
+    [
+      [12355, 4086],
+      [-170, -16],
+      [-49, 14]
+    ],
+    [
+      [12279, 9882],
+      [-19, 58],
+      [-47, 59],
+      [-67, 3],
+      [-59, -38],
+      [-27, -64],
+      [-8, -92]
+    ],
+    [
+      [12052, 9808],
+      [-57, 7],
+      [-93, -20],
+      [-79, 56],
+      [-95, -20],
+      [-46, -88]
+    ],
+    [
+      [11682, 9743],
+      [-98, -78],
+      [-114, -114],
+      [-25, -4]
+    ],
+    [
+      [11445, 9547],
+      [1, 52],
+      [-120, 63],
+      [-81, 8],
+      [-115, -32]
+    ],
+    [
+      [11130, 9638],
+      [-52, 72],
+      [23, 98],
+      [108, -49],
+      [56, 20],
+      [60, 46],
+      [-32, 59],
+      [44, 65],
+      [20, 102],
+      [-30, 71],
+      [1, 84]
+    ],
+    [
+      [11328, 10206],
+      [0, 62],
+      [29, 134],
+      [-11, 72]
+    ],
+    [
+      [11346, 10474],
+      [57, 91],
+      [230, 39],
+      [47, -36],
+      [49, -3],
+      [5, 46],
+      [36, 19],
+      [0, 68],
+      [54, 23],
+      [49, 44],
+      [85, -4],
+      [99, 62],
+      [-3, 42],
+      [42, 39],
+      [6, 62],
+      [62, 7],
+      [28, -41],
+      [90, -35],
+      [105, -7],
+      [39, 58]
+    ],
+    [
+      [12426, 10948],
+      [95, -49],
+      [50, -14],
+      [34, -46],
+      [-42, -26],
+      [-96, -15],
+      [-63, -95],
+      [-1, -144],
+      [83, -264],
+      [35, -73],
+      [160, -247],
+      [97, -131],
+      [113, -170],
+      [18, -39],
+      [-8, -62],
+      [-87, 54],
+      [-51, 10],
+      [-127, -47],
+      [-78, 17],
+      [-88, 92],
+      [-8, 21],
+      [-82, 73],
+      [-25, 63],
+      [-76, 26]
+    ],
+    [
+      [12526, 2508],
+      [18, 115],
+      [34, 58],
+      [-18, 53],
+      [57, 60],
+      [34, -32],
+      [42, 2],
+      [13, 105],
+      [39, 72],
+      [-60, 103],
+      [53, 20],
+      [32, 34],
+      [-22, 63]
+    ],
+    [
+      [12748, 3161],
+      [61, 0]
+    ],
+    [
+      [12809, 3161],
+      [103, 22],
+      [32, -13],
+      [-20, -71],
+      [119, 26],
+      [68, -30],
+      [95, 25],
+      [6, -33],
+      [97, -65],
+      [23, -43],
+      [85, -45],
+      [8, -45],
+      [84, -31],
+      [49, -47],
+      [130, 36],
+      [56, -48],
+      [100, 5],
+      [34, -23],
+      [51, -114],
+      [67, -1],
+      [2, -58]
+    ],
+    [
+      [13998, 2608],
+      [-111, 31],
+      [-29, -4],
+      [-66, -49],
+      [-90, -107],
+      [-120, -47],
+      [-79, -9],
+      [-77, -32],
+      [-94, -17],
+      [-88, -44],
+      [-42, -75],
+      [-39, -25],
+      [-89, -106],
+      [-36, 7],
+      [-94, 55],
+      [-50, 1],
+      [-80, 62],
+      [-72, 7]
+    ],
+    [
+      [12672, 4361],
+      [-45, 13],
+      [-103, 4],
+      [-28, -27],
+      [-20, -80]
+    ],
+    [
+      [12322, 4361],
+      [-39, 96]
+    ],
+    [
+      [12283, 4457],
+      [58, 15],
+      [13, 60],
+      [41, -34],
+      [65, 31],
+      [38, 59],
+      [202, -31]
+    ],
+    [
+      [12700, 4557],
+      [13, -79]
+    ],
+    [
+      [12713, 4478],
+      [-41, -117]
+    ],
+    [
+      [13525, 4144],
+      [-4, 32],
+      [-94, 35],
+      [-186, 36],
+      [-52, 3]
+    ],
+    [
+      [13189, 4250],
+      [-17, 54],
+      [-36, 13],
+      [-78, 116],
+      [-122, -30]
+    ],
+    [
+      [12936, 4403],
+      [-54, -5],
+      [-42, -37],
+      [-83, 65]
+    ],
+    [
+      [12757, 4426],
+      [-44, 52]
+    ],
+    [
+      [12700, 4557],
+      [16, 144],
+      [53, 91],
+      [107, 24],
+      [74, 33],
+      [22, 90],
+      [1, 59],
+      [37, 46],
+      [-13, 63],
+      [-71, -17],
+      [-46, 231],
+      [-42, 25],
+      [-3, 50]
+    ],
+    [
+      [13320, 5543],
+      [119, 25],
+      [53, -54],
+      [164, 69],
+      [62, 6],
+      [34, -25],
+      [21, -61],
+      [9, -83],
+      [98, -147],
+      [115, 12],
+      [72, 23],
+      [79, -12],
+      [76, -34],
+      [57, -4]
+    ],
+    [
+      [14279, 5258],
+      [115, -22],
+      [52, 20],
+      [38, -19],
+      [68, 20],
+      [36, -8],
+      [5, -43],
+      [-47, -123],
+      [30, 6],
+      [46, -52],
+      [-83, -118],
+      [-153, -106],
+      [-125, -18],
+      [-23, 68],
+      [-52, 48],
+      [-75, -11],
+      [-64, -48],
+      [-15, -61],
+      [-73, -76],
+      [-115, 2],
+      [-74, -62],
+      [63, -13],
+      [54, 19],
+      [98, 1],
+      [63, 72],
+      [42, 4],
+      [26, -33],
+      [-9, -97],
+      [12, -36],
+      [-27, -136],
+      [24, -61],
+      [-43, -54],
+      [-134, -111]
+    ],
+    [
+      [13939, 4210],
+      [-11, 13],
+      [-199, 76],
+      [-55, -20],
+      [-20, -68],
+      [15, -16]
+    ],
+    [
+      [13669, 4195],
+      [-41, -58],
+      [-69, -16],
+      [-34, 23]
+    ],
+    [
+      [8833, 4373],
+      [-51, 21]
+    ],
+    [
+      [8782, 4394],
+      [-17, 61],
+      [25, 91],
+      [-27, 42],
+      [-12, 97],
+      [26, 34],
+      [-24, 66],
+      [11, 62],
+      [43, 84]
+    ],
+    [
+      [8807, 4931],
+      [40, 40],
+      [103, 62],
+      [45, -7],
+      [21, 54],
+      [53, 7],
+      [52, 36],
+      [1, 49],
+      [-39, 83],
+      [-31, 26],
+      [30, 159],
+      [47, -65],
+      [53, 1],
+      [62, 50]
+    ],
+    [
+      [9244, 5426],
+      [14, 2],
+      [50, -107],
+      [109, -24],
+      [39, 69],
+      [49, -8],
+      [-2, 50],
+      [17, 86],
+      [73, 4],
+      [-42, -92],
+      [106, 4],
+      [60, -21],
+      [89, 68],
+      [98, 13],
+      [38, -8],
+      [52, -52],
+      [23, 68],
+      [-52, 73],
+      [30, 27],
+      [43, -11],
+      [52, 77],
+      [31, 18]
+    ],
+    [
+      [10121, 5662],
+      [62, -53],
+      [13, -51],
+      [48, -88],
+      [92, -12],
+      [-60, -110]
+    ],
+    [
+      [10276, 5348],
+      [-6, -64],
+      [56, -36],
+      [9, -35],
+      [-49, -56],
+      [12, -41],
+      [-30, -28],
+      [-26, -72],
+      [-5, -149],
+      [-45, -58],
+      [25, -32],
+      [24, -149],
+      [43, -47],
+      [-53, -20]
+    ],
+    [
+      [10231, 4561],
+      [-27, 6],
+      [-34, -47],
+      [-37, -10]
+    ],
+    [
+      [10133, 4510],
+      [-41, 4],
+      [-28, 88],
+      [-54, -98],
+      [-50, 43],
+      [-31, -28],
+      [-77, 2],
+      [-13, -60],
+      [-58, 15],
+      [-103, 48],
+      [-64, -114],
+      [-71, -79],
+      [-63, 23],
+      [-71, -50],
+      [-47, -5]
+    ],
+    [
+      [9362, 4299],
+      [-42, 76],
+      [-65, 5],
+      [-31, -36],
+      [-28, 22],
+      [7, 84],
+      [-97, 33],
+      [-50, -24],
+      [-13, 53],
+      [-84, 42],
+      [-46, -70],
+      [-12, -50],
+      [-68, -61]
+    ],
+    [
+      [12754, 3941],
+      [-18, 71],
+      [-54, 59]
+    ],
+    [
+      [12682, 4071],
+      [27, -23],
+      [36, 59]
+    ],
+    [
+      [12745, 4107],
+      [21, -21],
+      [59, 5],
+      [36, 35]
+    ],
+    [
+      [12700, 4212],
+      [-82, -43],
+      [-8, -27]
+    ],
+    [
+      [12610, 4142],
+      [-23, 32],
+      [24, 38],
+      [-34, 43]
+    ],
+    [
+      [12577, 4255],
+      [7, 29],
+      [55, 6]
+    ],
+    [
+      [12639, 4290],
+      [62, -54]
+    ],
+    [
+      [12701, 4236],
+      [-1, -24]
+    ],
+    [
+      [8140, 8705],
+      [-35, 49],
+      [-9, 60],
+      [-64, 67],
+      [-41, 82],
+      [45, 45],
+      [104, 48],
+      [37, 33],
+      [52, 17],
+      [34, -80],
+      [26, -103],
+      [108, -164]
+    ],
+    [
+      [12401, 4028],
+      [-34, 27]
+    ],
+    [
+      [12367, 4055],
+      [-12, 31]
+    ],
+    [
+      [12405, 4157],
+      [17, -81],
+      [46, -51]
+    ],
+    [
+      [12468, 4025],
+      [-30, -31],
+      [-37, 34]
+    ],
+    [
+      [10767, 2427],
+      [19, 105],
+      [-2, 76],
+      [-90, 62],
+      [-83, -11],
+      [-31, -40],
+      [-6, -56]
+    ],
+    [
+      [10574, 2563],
+      [55, -50],
+      [157, -180],
+      [-52, -75],
+      [-51, -1],
+      [-56, -47],
+      [-65, -13],
+      [-101, -38],
+      [-54, -101],
+      [-32, 29],
+      [-127, 42]
+    ],
+    [
+      [9837, 2781],
+      [35, 29],
+      [131, 25],
+      [39, -43],
+      [104, -38],
+      [63, -8],
+      [63, -63],
+      [66, 24],
+      [16, 44],
+      [-32, 46],
+      [37, 59],
+      [-38, 43],
+      [3, 52],
+      [-17, 82],
+      [14, 57],
+      [-45, 47],
+      [7, 61],
+      [-11, 55],
+      [-44, 87],
+      [-17, 81],
+      [101, -6],
+      [72, 61],
+      [61, -33],
+      [-2, 78],
+      [29, 70],
+      [-10, 70],
+      [59, 7]
+    ],
+    [
+      [11586, 3665],
+      [53, -102],
+      [-2, -123],
+      [-26, -32],
+      [-75, 20],
+      [-44, -34],
+      [-16, -57],
+      [23, -55],
+      [1, -80],
+      [49, -12],
+      [16, -60],
+      [48, -32],
+      [-10, -58]
+    ],
+    [
+      [11603, 3040],
+      [-31, -20],
+      [-19, -53],
+      [-60, 8],
+      [-50, -52],
+      [-6, -40],
+      [-36, -46],
+      [-3, -43],
+      [-56, -128],
+      [13, -60],
+      [-45, -74],
+      [43, -68],
+      [-14, -66]
+    ],
+    [
+      [11339, 2398],
+      [-94, 1]
+    ],
+    [
+      [11245, 2399],
+      [-3, 27],
+      [-113, 19],
+      [-42, -35]
+    ],
+    [
+      [11087, 2410],
+      [-67, -22],
+      [54, -122],
+      [-37, -39],
+      [-70, 36],
+      [-44, 57],
+      [-133, 74],
+      [-23, 33]
+    ],
+    [
+      [12577, 4255],
+      [-54, 11]
+    ],
+    [
+      [12672, 4361],
+      [-33, -71]
+    ],
+    [
+      [12173, 4225],
+      [-47, 171]
+    ],
+    [
+      [12126, 4396],
+      [38, -1],
+      [79, 52],
+      [40, 10]
+    ],
+    [
+      [10927, 12111],
+      [-158, 13],
+      [-103, 39]
+    ],
+    [
+      [10877, 12417],
+      [96, -64],
+      [-27, -53],
+      [45, -110],
+      [-33, -41]
+    ],
+    [
+      [10958, 12149],
+      [-31, -38]
+    ],
+    [
+      [13189, 4250],
+      [24, -47],
+      [-131, -51],
+      [-8, -55],
+      [-26, -25]
+    ],
+    [
+      [12941, 4355],
+      [-5, 48]
+    ],
+    [
+      [8807, 4931],
+      [-52, 10],
+      [-22, 34],
+      [-59, 0],
+      [-61, 120],
+      [-62, 41],
+      [-67, 70],
+      [-43, -6],
+      [-72, -51],
+      [-66, 49],
+      [-9, 45],
+      [-84, 103]
+    ],
+    [
+      [8210, 5346],
+      [-52, 101],
+      [7, 63],
+      [-45, 59],
+      [-5, 74],
+      [24, 37],
+      [-44, 37],
+      [80, 54],
+      [-56, 47],
+      [76, 126],
+      [10, 41],
+      [62, 63],
+      [87, 15],
+      [-69, 67],
+      [13, 60],
+      [52, 37],
+      [-1, 42]
+    ],
+    [
+      [8349, 6269],
+      [37, 9],
+      [138, 121],
+      [53, -29],
+      [32, -71],
+      [73, -3],
+      [-21, -70],
+      [76, -54],
+      [29, 8],
+      [15, 60],
+      [36, 6]
+    ],
+    [
+      [8817, 6246],
+      [14, -104],
+      [22, -36],
+      [-3, -67],
+      [17, -26],
+      [117, 3],
+      [57, 57],
+      [61, -17],
+      [-15, -73],
+      [63, -26],
+      [13, -37],
+      [-6, -126],
+      [27, -66],
+      [47, -23],
+      [15, -40],
+      [-2, -239]
+    ],
+    [
+      [12126, 4396],
+      [-87, -10],
+      [-34, 14],
+      [-17, -65]
+    ],
+    [
+      [12048, 4996],
+      [50, -10],
+      [57, -49],
+      [66, 69],
+      [-19, 77],
+      [-29, 29],
+      [-25, 74]
+    ],
+    [
+      [12136, 4084],
+      [-49, -107],
+      [-22, 4]
+    ],
+    [
+      [12065, 3981],
+      [-48, 13],
+      [-35, 49]
+    ],
+    [
+      [12367, 4055],
+      [-50, -7],
+      [-53, -30],
+      [-12, -34],
+      [-76, -12],
+      [-4, -55],
+      [-23, -39]
+    ],
+    [
+      [12149, 3878],
+      [-70, 42],
+      [-14, 61]
+    ],
+    [
+      [11132, 2011],
+      [-35, -49],
+      [-63, -27],
+      [-39, -42],
+      [-25, -120],
+      [-88, -40],
+      [-84, -19],
+      [-67, 76],
+      [-68, 60],
+      [-78, 36],
+      [-61, 64],
+      [-65, 2],
+      [-61, -22],
+      [69, 127],
+      [80, 7],
+      [59, 42],
+      [24, -4],
+      [87, 36],
+      [46, 67],
+      [77, 3],
+      [83, -80],
+      [90, -4],
+      [69, -33],
+      [19, -63],
+      [31, -17]
+    ],
+    [
+      [12610, 4142],
+      [-36, -1]
+    ],
+    [
+      [12405, 4157],
+      [18, -3],
+      [48, -74],
+      [40, -36]
+    ],
+    [
+      [12511, 4044],
+      [-43, -19]
+    ],
+    [
+      [13047, 4031],
+      [61, -43],
+      [69, 23],
+      [43, -49],
+      [37, -8],
+      [71, 17]
+    ],
+    [
+      [13328, 3971],
+      [65, 11],
+      [15, 73],
+      [62, 8]
+    ],
+    [
+      [13470, 4063],
+      [-41, -59],
+      [5, -64],
+      [38, -28],
+      [-11, -64],
+      [-71, -100],
+      [-14, -64],
+      [87, 24],
+      [44, -12],
+      [85, -80],
+      [82, 64],
+      [28, 120]
+    ],
+    [
+      [13702, 3800],
+      [28, 21],
+      [15, 72],
+      [31, 2],
+      [12, -53],
+      [57, -41],
+      [0, -52],
+      [82, -24],
+      [84, -1],
+      [29, -32],
+      [55, 13],
+      [103, 4],
+      [42, 46],
+      [100, 17],
+      [99, 3],
+      [60, 18],
+      [104, -8],
+      [15, 12],
+      [133, 12],
+      [68, 14],
+      [38, -38],
+      [-8, -69],
+      [-51, -63],
+      [-53, 3],
+      [5, -101],
+      [41, -145],
+      [0, -158],
+      [-36, -74],
+      [-96, -52],
+      [-68, -53],
+      [-65, -6],
+      [-50, -59],
+      [-156, -27],
+      [-59, -31],
+      [-75, -79],
+      [-25, -46],
+      [-21, -115],
+      [27, -105],
+      [-13, -25],
+      [-156, 28]
+    ],
+    [
+      [12809, 3161],
+      [-4, 118],
+      [-23, 73],
+      [29, 84],
+      [-14, 123]
+    ],
+    [
+      [13809, 3884],
+      [7, 83],
+      [67, -22],
+      [43, -34],
+      [98, -14],
+      [74, -74],
+      [22, -46],
+      [-45, -44],
+      [-37, -9],
+      [-110, 38],
+      [-82, 5],
+      [5, 33],
+      [-60, 57],
+      [18, 27]
+    ],
+    [
+      [12279, 9882],
+      [-227, -74]
+    ],
+    [
+      [12384, 3805],
+      [-27, -31]
+    ],
+    [
+      [12357, 3774],
+      [-37, -30],
+      [-37, -85],
+      [-32, 47],
+      [25, 60],
+      [-13, 36]
+    ],
+    [
+      [12263, 3802],
+      [13, 67],
+      [27, 35],
+      [53, 22]
+    ],
+    [
+      [12356, 3926],
+      [28, -121]
+    ],
+    [
+      [12529, 3863],
+      [-7, 25]
+    ],
+    [
+      [12522, 3888],
+      [-15, 111],
+      [30, 41]
+    ],
+    [
+      [12537, 4040],
+      [27, 66]
+    ],
+    [
+      [12564, 4106],
+      [34, -107],
+      [-17, -45],
+      [25, -62]
+    ],
+    [
+      [9018, 9585],
+      [-80, -72],
+      [-46, 36],
+      [-39, -45],
+      [-28, 29],
+      [-76, -19],
+      [-9, -100],
+      [-30, -79],
+      [-57, -49]
+    ],
+    [
+      [8653, 9286],
+      [-36, 46],
+      [-38, -31],
+      [-5, -60]
+    ],
+    [
+      [8574, 9241],
+      [-86, 63]
+    ],
+    [
+      [8488, 9304],
+      [-69, 16],
+      [-65, 55],
+      [-7, -77],
+      [-107, 67],
+      [1, 48],
+      [28, 44],
+      [-11, 42],
+      [34, 51],
+      [48, 32],
+      [46, 89],
+      [-23, 123]
+    ],
+    [
+      [8363, 9794],
+      [8, 62],
+      [-111, 20],
+      [-41, 46],
+      [-18, 53],
+      [1, 135],
+      [14, 96],
+      [2, 142],
+      [72, 13],
+      [122, 48],
+      [27, -13],
+      [63, 64],
+      [-30, 13],
+      [-46, 130],
+      [18, 98],
+      [49, 45],
+      [62, 30],
+      [37, 97],
+      [-31, 17],
+      [-31, 90]
+    ],
+    [
+      [9102, 11140],
+      [-8, -33],
+      [-87, -118],
+      [-53, -53],
+      [4, -97],
+      [38, -42],
+      [76, -45],
+      [14, -84],
+      [46, -23],
+      [69, 19],
+      [38, -8],
+      [11, -104],
+      [18, -28],
+      [52, -5],
+      [38, -50],
+      [69, 33],
+      [8, -38],
+      [47, -6],
+      [24, -76],
+      [102, -55],
+      [11, -68],
+      [46, -66],
+      [50, -39]
+    ],
+    [
+      [9715, 10154],
+      [-22, -60]
+    ],
+    [
+      [9693, 10094],
+      [-71, -36],
+      [-37, -49],
+      [-1, -94],
+      [-57, -76],
+      [12, -75]
+    ],
+    [
+      [9539, 9764],
+      [-109, -63],
+      [-73, -117],
+      [-8, 99],
+      [-72, -19],
+      [-41, 18]
+    ],
+    [
+      [11755, 7317],
+      [-112, -81],
+      [-82, 7],
+      [-34, -26],
+      [8, -91],
+      [0, -201],
+      [52, -162],
+      [52, -67]
+    ],
+    [
+      [11639, 6696],
+      [-47, -19],
+      [-41, 20],
+      [-121, -5],
+      [-32, -81],
+      [33, -30],
+      [-40, -38],
+      [-59, 37],
+      [-37, 5],
+      [-105, -49],
+      [17, -31],
+      [-34, -78],
+      [-82, 56],
+      [-49, -53],
+      [-34, -65],
+      [-44, 8]
+    ],
+    [
+      [10964, 6373],
+      [-37, 89],
+      [-43, 26],
+      [-78, 138],
+      [-151, 85],
+      [-31, 59],
+      [-115, 54],
+      [-34, 47],
+      [-41, 16],
+      [5, 52],
+      [-25, 53],
+      [37, 52],
+      [-68, 91]
+    ],
+    [
+      [10383, 7135],
+      [-4, 21]
+    ],
+    [
+      [10852, 7611],
+      [-8, -109],
+      [12, -52],
+      [51, -54],
+      [55, -15],
+      [32, 35],
+      [48, 16],
+      [50, 41],
+      [71, -11],
+      [107, 10],
+      [16, 46],
+      [176, 174],
+      [42, 93],
+      [2, 32],
+      [41, 41],
+      [37, 10]
+    ],
+    [
+      [11584, 7868],
+      [3, -45],
+      [30, -40],
+      [-27, -86],
+      [13, -62],
+      [45, -13],
+      [49, -127],
+      [21, -25],
+      [37, -153]
+    ],
+    [
+      [11145, 6925],
+      [11, 71],
+      [-22, 65],
+      [-71, 20],
+      [-59, 0],
+      [-30, -46],
+      [19, -162],
+      [66, -26],
+      [86, 78]
+    ],
+    [
+      [12618, 3897],
+      [47, 74],
+      [-20, 72],
+      [37, 28]
+    ],
+    [
+      [13142, 7510],
+      [-38, -120],
+      [20, -50],
+      [-113, -90],
+      [-40, 7]
+    ],
+    [
+      [12643, 7086],
+      [-76, -15],
+      [-54, -35],
+      [-67, 9],
+      [-24, 37],
+      [-92, -23],
+      [-79, 42],
+      [-128, -69],
+      [-96, 16],
+      [-35, -17]
+    ],
+    [
+      [11992, 7031],
+      [-7, 36],
+      [67, 29],
+      [51, 64],
+      [-148, 60],
+      [-16, 39],
+      [-55, 40],
+      [-129, 18]
+    ],
+    [
+      [11584, 7868],
+      [-29, 66],
+      [7, 50],
+      [63, 78],
+      [74, 34],
+      [-34, 86],
+      [13, 35],
+      [-11, 113],
+      [7, 51],
+      [-58, 27],
+      [21, 54],
+      [57, 32],
+      [41, -2],
+      [11, 73],
+      [-70, 25],
+      [-29, -30],
+      [-62, 7],
+      [-7, 88],
+      [41, 63],
+      [-28, 112],
+      [-38, 34],
+      [22, 54],
+      [-56, 124],
+      [33, 51],
+      [4, 40]
+    ],
+    [
+      [11556, 9133],
+      [57, 90],
+      [11, 70],
+      [183, -22],
+      [9, -45],
+      [-17, -59],
+      [26, -32],
+      [51, -4],
+      [151, 55],
+      [12, 81],
+      [88, 16],
+      [-2, 55],
+      [-113, 18],
+      [89, 72],
+      [95, -27],
+      [37, 6],
+      [54, 64],
+      [13, 60]
+    ],
+    [
+      [12300, 9531],
+      [66, -42],
+      [42, -61],
+      [57, -22],
+      [-41, -57],
+      [20, -88],
+      [-9, -62],
+      [71, -69],
+      [43, -61],
+      [60, 40],
+      [-29, 50],
+      [51, 125],
+      [110, 31]
+    ],
+    [
+      [12741, 9315],
+      [26, -32],
+      [39, 5],
+      [33, -48],
+      [105, -43],
+      [33, -91],
+      [36, -58],
+      [93, -191],
+      [64, -146],
+      [46, -128],
+      [27, -142],
+      [-12, -142],
+      [-16, -88],
+      [-63, -26],
+      [-34, -41],
+      [-172, -153],
+      [-59, -79],
+      [-69, -141],
+      [13, -53],
+      [68, -16],
+      [87, -92],
+      [62, -98],
+      [94, -2]
+    ],
+    [
+      [12610, 4142],
+      [-7, -26]
+    ],
+    [
+      [12603, 4116],
+      [-34, 3]
+    ],
+    [
+      [12569, 4119],
+      [-4, 12]
+    ],
+    [
+      [9130, 8949],
+      [-47, 20],
+      [20, 79],
+      [-56, 112],
+      [-55, 1],
+      [-65, -70]
+    ],
+    [
+      [8927, 9091],
+      [-50, 59],
+      [-6, 36],
+      [-127, -2],
+      [-91, 102]
+    ],
+    [
+      [9539, 9764],
+      [78, -63],
+      [77, 31],
+      [23, -54],
+      [-6, -42],
+      [27, -73]
+    ],
+    [
+      [9738, 9563],
+      [43, -10]
+    ],
+    [
+      [9781, 9553],
+      [16, -54],
+      [58, -66],
+      [60, -91]
+    ],
+    [
+      [13470, 4063],
+      [56, 5],
+      [94, -23],
+      [131, -15],
+      [34, -76],
+      [-30, -26],
+      [-101, 16],
+      [-45, -64],
+      [-80, -21],
+      [39, -40],
+      [134, -19]
+    ],
+    [
+      [8927, 9091],
+      [-74, -13],
+      [-35, 26],
+      [-46, -24],
+      [34, -103],
+      [-48, -32]
+    ],
+    [
+      [8569, 8815],
+      [-44, -4],
+      [-62, 19],
+      [-158, 138],
+      [-32, 134],
+      [-47, 65]
+    ],
+    [
+      [8226, 9167],
+      [-30, 93],
+      [-4, 55],
+      [-54, 53],
+      [0, 61],
+      [72, 144],
+      [48, 74],
+      [42, 42],
+      [27, 69],
+      [36, 36]
+    ],
+    [
+      [12356, 3926],
+      [66, 12],
+      [46, -36],
+      [54, -14]
+    ],
+    [
+      [12522, 3809],
+      [-83, -13],
+      [-55, 9]
+    ],
+    [
+      [10869, 11801],
+      [-61, 40],
+      [-11, 34],
+      [10, 76],
+      [50, 85],
+      [60, -6]
+    ],
+    [
+      [10917, 12030],
+      [1, -56],
+      [57, -128]
+    ],
+    [
+      [10975, 11846],
+      [-82, -11],
+      [-24, -34]
+    ],
+    [
+      [11435, 5477],
+      [18, 64],
+      [41, 35],
+      [-35, 35],
+      [-40, 78],
+      [78, 29],
+      [28, 64],
+      [45, -14],
+      [21, 40],
+      [49, -2],
+      [110, 80]
+    ],
+    [
+      [12745, 4107],
+      [-23, 29],
+      [-22, 76]
+    ],
+    [
+      [12701, 4236],
+      [51, 4]
+    ],
+    [
+      [12752, 4240],
+      [43, 22],
+      [32, -53]
+    ],
+    [
+      [15289, 6758],
+      [-76, 30],
+      [-40, -27],
+      [-16, -54],
+      [34, -47],
+      [36, -13],
+      [-59, -74],
+      [-29, -14],
+      [-63, 41],
+      [-116, -47],
+      [-43, 18],
+      [-38, -18],
+      [-33, 26],
+      [-45, -63],
+      [-72, -37],
+      [-58, -100],
+      [-73, -5],
+      [-58, -55],
+      [-48, -17],
+      [-116, 28],
+      [-69, 1],
+      [-62, 23],
+      [-91, -36],
+      [-62, 57],
+      [-74, 1],
+      [-65, 33],
+      [-73, -35],
+      [-54, -6],
+      [-26, 21],
+      [-60, 4],
+      [-34, 25],
+      [1, 54],
+      [57, 46],
+      [-49, 24],
+      [-56, -19],
+      [-118, 18],
+      [-98, -39],
+      [-66, 2]
+    ],
+    [
+      [13142, 7510],
+      [51, -5],
+      [43, -40],
+      [60, 68],
+      [77, 49],
+      [-2, 45],
+      [42, 103],
+      [36, 124],
+      [48, 50],
+      [153, -3],
+      [85, 37],
+      [104, -23],
+      [305, -38],
+      [41, 35],
+      [210, -73],
+      [109, -9],
+      [131, -32],
+      [187, -125],
+      [88, -92],
+      [174, -154],
+      [82, -88],
+      [57, -87],
+      [69, -236],
+      [-16, -204],
+      [13, -54]
+    ],
+    [
+      [12300, 9531],
+      [11, 27],
+      [128, 40]
+    ],
+    [
+      [12439, 9598],
+      [137, -131],
+      [33, 6],
+      [60, -45],
+      [72, -113]
+    ],
+    [
+      [11556, 9133],
+      [-176, 15],
+      [21, 35],
+      [-42, 42]
+    ],
+    [
+      [11359, 9225],
+      [-36, 79],
+      [43, 38],
+      [49, -12],
+      [13, 45],
+      [-47, 67],
+      [64, 26],
+      [0, 79]
+    ],
+    [
+      [11682, 9743],
+      [20, 27],
+      [99, 40],
+      [102, -90],
+      [69, 2],
+      [38, 41],
+      [115, 7],
+      [95, 31],
+      [64, 7],
+      [122, -184],
+      [33, -26]
+    ],
+    [
+      [8299, 3639],
+      [43, 157],
+      [30, 42],
+      [51, 5],
+      [33, 73],
+      [114, 138],
+      [113, 39]
+    ],
+    [
+      [8711, 3636],
+      [-147, 19],
+      [34, -78],
+      [-71, -7],
+      [-63, 19],
+      [-14, -40],
+      [-60, 33],
+      [-68, -15],
+      [-23, 72]
+    ],
+    [
+      [11346, 10474],
+      [-88, 7],
+      [-25, 40],
+      [-4, 97],
+      [-29, 29],
+      [-97, 4],
+      [-80, -33],
+      [-45, -122],
+      [-81, -29],
+      [-4, -61],
+      [25, -80],
+      [60, -97],
+      [53, -43],
+      [171, -7],
+      [83, 36],
+      [43, -9]
+    ],
+    [
+      [11130, 9638],
+      [-185, -23],
+      [-45, -46]
+    ],
+    [
+      [10900, 9569],
+      [-25, 38],
+      [2, 94],
+      [38, 110],
+      [-58, 8],
+      [-67, 82]
+    ],
+    [
+      [10790, 9901],
+      [23, 53],
+      [-27, 52],
+      [3, 76],
+      [-31, 68],
+      [30, 38],
+      [-3, 87],
+      [20, 80],
+      [-58, 50],
+      [-78, -15],
+      [-101, -86],
+      [-77, 12],
+      [-41, 64],
+      [-21, -69],
+      [-51, -20],
+      [-85, 16],
+      [-129, -11]
+    ],
+    [
+      [10164, 10296],
+      [-102, 104],
+      [-110, -7],
+      [-44, 37],
+      [-62, 8],
+      [-10, -67],
+      [-34, -38],
+      [11, -105],
+      [-54, -17],
+      [-44, -57]
+    ],
+    [
+      [10602, 11787],
+      [35, 29],
+      [57, -9],
+      [11, -55],
+      [52, -14],
+      [112, 63]
+    ],
+    [
+      [10975, 11846],
+      [96, -15],
+      [59, 18],
+      [67, -33],
+      [78, 20],
+      [64, -35],
+      [77, 24],
+      [62, -22],
+      [1, 74],
+      [34, 63],
+      [53, 44]
+    ],
+    [
+      [11566, 11984],
+      [51, -76],
+      [47, 15],
+      [47, -37],
+      [29, -53],
+      [105, -28],
+      [102, -105],
+      [-15, -54],
+      [101, -93],
+      [71, -154],
+      [-4, -48],
+      [32, -101],
+      [62, -83],
+      [128, -58],
+      [-23, -65],
+      [67, -77],
+      [60, -19]
+    ],
+    [
+      [11080, 5413],
+      [-45, -50],
+      [-66, -29],
+      [-121, 3],
+      [-46, 153],
+      [4, 84],
+      [83, 63],
+      [-124, 169]
+    ],
+    [
+      [10765, 5806],
+      [27, 50],
+      [81, 37],
+      [-26, 84],
+      [85, 57],
+      [-1, 58],
+      [-22, 26],
+      [32, 49],
+      [-58, 25],
+      [12, 42],
+      [77, 28],
+      [24, 25],
+      [-32, 86]
+    ],
+    [
+      [11639, 6696],
+      [48, 42],
+      [23, 52],
+      [197, 122],
+      [40, 86],
+      [45, 33]
+    ],
+    [
+      [11992, 7031],
+      [36, -71],
+      [-11, -106],
+      [87, -21]
+    ],
+    [
+      [10569, 13306],
+      [-58, -54],
+      [-98, 5],
+      [-39, 24]
+    ],
+    [
+      [10374, 13281],
+      [-152, 30]
+    ],
+    [
+      [10222, 13311],
+      [-12, -101],
+      [-46, -13],
+      [-56, -112]
+    ],
+    [
+      [10108, 13085],
+      [-50, -32],
+      [-32, -110],
+      [-42, -25],
+      [45, -39]
+    ],
+    [
+      [8750, 13618],
+      [39, 65],
+      [49, 18],
+      [12, 54],
+      [-15, 55],
+      [86, 69],
+      [26, 60],
+      [44, 26],
+      [88, 91],
+      [52, 15],
+      [38, -14],
+      [25, -45],
+      [53, 54],
+      [27, 86],
+      [55, 12],
+      [30, 43],
+      [85, 15],
+      [49, 86],
+      [-46, 81],
+      [-4, 50],
+      [-61, 103],
+      [-30, 104],
+      [-70, 83],
+      [-8, 48],
+      [137, 29],
+      [97, 173],
+      [124, 102],
+      [12, 93],
+      [74, 25]
+    ],
+    [
+      [9718, 15199],
+      [38, -37],
+      [23, -89],
+      [43, -58],
+      [126, -122],
+      [25, -76],
+      [41, -45],
+      [71, 8],
+      [26, -38],
+      [105, -53],
+      [96, -134],
+      [-16, -37],
+      [42, -52],
+      [-9, -52],
+      [37, -24],
+      [-1, -132],
+      [20, -21],
+      [-1, -62],
+      [-46, -50],
+      [38, -120],
+      [50, -49],
+      [-31, -121],
+      [16, -56],
+      [41, -52],
+      [36, -89],
+      [-24, -103],
+      [49, -94],
+      [-7, -50],
+      [63, -85]
+    ],
+    [
+      [10980, 8723],
+      [60, 85],
+      [-14, 31],
+      [45, 47],
+      [-6, 58],
+      [77, 89],
+      [78, -12],
+      [53, 67],
+      [11, 74],
+      [75, 63]
+    ],
+    [
+      [11029, 7691],
+      [57, 68],
+      [2, 55],
+      [-48, 107],
+      [-38, 34],
+      [-46, -8],
+      [-38, -57],
+      [-16, -139],
+      [42, -94],
+      [43, -18],
+      [42, 52]
+    ],
+    [
+      [10377, 4145],
+      [-27, 7],
+      [-65, 125],
+      [-43, 11],
+      [-3, 69],
+      [26, 30],
+      [8, 53],
+      [-43, 48],
+      [1, 73]
+    ],
+    [
+      [10276, 5348],
+      [72, -75],
+      [26, 32],
+      [54, 5],
+      [6, 40],
+      [53, 35],
+      [21, 161],
+      [37, 72],
+      [50, 11],
+      [43, 38],
+      [41, -40],
+      [42, 32],
+      [-33, 36],
+      [48, 41],
+      [29, 70]
+    ],
+    [
+      [6626, 1123],
+      [-1, 48],
+      [-56, -9],
+      [-62, 101],
+      [30, 68]
+    ],
+    [
+      [9932, 2072],
+      [-69, -39],
+      [-32, 29],
+      [-90, 2],
+      [-34, 19]
+    ],
+    [
+      [11245, 2399],
+      [-71, -29],
+      [18, -110],
+      [-85, -23],
+      [-29, 34],
+      [16, 78],
+      [-7, 61]
+    ],
+    [
+      [11283, 2393],
+      [28, -24],
+      [13, -136],
+      [-119, 27],
+      [50, 46],
+      [-3, 56],
+      [31, 31]
+    ],
+    [
+      [12752, 4240],
+      [-6, 84],
+      [11, 102]
+    ],
+    [
+      [10917, 12030],
+      [10, 81]
+    ],
+    [
+      [10958, 12149],
+      [99, 23],
+      [227, -112],
+      [65, 0],
+      [39, -35],
+      [69, -4],
+      [64, -33],
+      [45, -4]
+    ],
+    [
+      [12263, 3802],
+      [-54, 25],
+      [-60, 51]
+    ],
+    [
+      [12401, 4028],
+      [-47, -42],
+      [2, -60]
+    ],
+    [
+      [8349, 6269],
+      [-27, 14],
+      [-68, -16],
+      [-68, 12],
+      [-53, 61],
+      [-54, 39],
+      [-38, 51],
+      [-44, 17],
+      [-27, 55],
+      [0, 51],
+      [27, 41],
+      [69, 29],
+      [60, 41],
+      [117, 7],
+      [14, 43],
+      [42, 14],
+      [25, 59],
+      [-54, 72],
+      [-84, -61],
+      [-27, -45],
+      [-57, 96],
+      [1, 42],
+      [64, 48],
+      [25, 96],
+      [51, 39],
+      [-5, 75],
+      [32, 76],
+      [62, 11],
+      [17, 43],
+      [-51, 32],
+      [-13, 32],
+      [-86, 21],
+      [-24, 41],
+      [-57, 7],
+      [-40, 31]
+    ],
+    [
+      [8078, 7443],
+      [-22, 66],
+      [54, 88],
+      [-18, 70],
+      [52, 28],
+      [10, 49],
+      [141, 104],
+      [46, -2],
+      [51, -51],
+      [73, 23],
+      [37, -5],
+      [104, -106],
+      [49, 41],
+      [45, 7],
+      [4, 74],
+      [-16, 53]
+    ],
+    [
+      [9204, 7941],
+      [21, -24],
+      [-16, -79],
+      [-65, -34],
+      [-34, -61],
+      [-11, -70],
+      [22, -45],
+      [102, 41],
+      [-18, -119],
+      [-28, -42]
+    ],
+    [
+      [9177, 7508],
+      [-113, -60],
+      [-93, -35],
+      [-77, -44],
+      [-85, -23],
+      [-25, -41],
+      [33, -56],
+      [266, -268],
+      [53, -26],
+      [42, 87],
+      [83, 228],
+      [24, 48]
+    ],
+    [
+      [9285, 7318],
+      [27, -36],
+      [-7, -86],
+      [25, -52],
+      [91, -29],
+      [7, -84],
+      [-15, -62],
+      [-43, -23],
+      [-55, 14],
+      [-11, -46],
+      [61, -35],
+      [27, -39],
+      [-24, -37],
+      [18, -77],
+      [-43, -34],
+      [-21, -76],
+      [18, -80]
+    ],
+    [
+      [9340, 6536],
+      [-27, -36],
+      [-51, 10],
+      [-17, -28],
+      [34, -88],
+      [-93, -15],
+      [-29, -53],
+      [-88, -15],
+      [3, -52],
+      [-37, -27],
+      [-48, 33],
+      [-32, -24],
+      [-12, -56],
+      [-63, -8],
+      [-27, 48],
+      [-36, 21]
+    ],
+    [
+      [9335, 3649],
+      [34, -22],
+      [-6, -53],
+      [41, -27],
+      [10, -55],
+      [-24, -50],
+      [-20, -92],
+      [-122, -235],
+      [2, -59],
+      [38, -30]
+    ],
+    [
+      [7232, 3409],
+      [144, -36],
+      [55, 35],
+      [65, 0],
+      [131, -58],
+      [54, -66],
+      [63, 4],
+      [137, -12],
+      [110, 57],
+      [63, 16],
+      [87, 0],
+      [60, -14],
+      [86, 75],
+      [-26, 72],
+      [9, 158],
+      [29, -1]
+    ],
+    [
+      [8754, 4192],
+      [27, 98],
+      [52, 83]
+    ],
+    [
+      [9362, 4299],
+      [39, -151],
+      [-52, -22],
+      [-49, -42],
+      [39, -32],
+      [10, -157]
+    ],
+    [
+      [10035, 9299],
+      [13, 41],
+      [52, 8],
+      [84, 50],
+      [60, -12],
+      [87, 35],
+      [46, 88]
+    ],
+    [
+      [10377, 9509],
+      [35, 23],
+      [37, -33],
+      [74, -4],
+      [55, 22],
+      [36, -15],
+      [83, 10],
+      [34, -46],
+      [58, -12],
+      [91, 53],
+      [20, 62]
+    ],
+    [
+      [10767, 2427],
+      [-96, 104],
+      [-85, 43],
+      [-12, -11]
+    ],
+    [
+      [14147, 4896],
+      [39, -49],
+      [-70, -39],
+      [-68, -1],
+      [8, 42],
+      [52, 42],
+      [39, 5]
+    ],
+    [
+      [13939, 4210],
+      [-62, -55],
+      [-31, 16],
+      [-177, 24]
+    ],
+    [
+      [12564, 4106],
+      [5, 13]
+    ],
+    [
+      [12603, 4116],
+      [63, -5],
+      [16, -40]
+    ],
+    [
+      [10383, 7135],
+      [-31, -54],
+      [-44, -34],
+      [10, -43],
+      [-16, -98],
+      [-45, -32],
+      [-130, 10],
+      [-36, -11]
+    ],
+    [
+      [10091, 6873],
+      [-55, 40],
+      [-60, -39]
+    ],
+    [
+      [9976, 6874],
+      [-29, 28]
+    ],
+    [
+      [9947, 6902],
+      [-31, 80],
+      [-1, 82],
+      [-55, 41],
+      [-27, -72],
+      [-108, -55],
+      [-60, -21]
+    ],
+    [
+      [9665, 6957],
+      [-46, 68],
+      [-50, -12],
+      [-19, -43],
+      [-54, -33],
+      [-29, -53],
+      [38, -31],
+      [25, -55],
+      [47, -5]
+    ],
+    [
+      [9577, 6793],
+      [-13, -75],
+      [-63, -36],
+      [27, -61],
+      [8, -141]
+    ],
+    [
+      [9536, 6480],
+      [-26, -3],
+      [-73, 36],
+      [-59, 2],
+      [-38, 21]
+    ],
+    [
+      [9285, 7318],
+      [-67, 88],
+      [1, 64],
+      [-42, 38]
+    ],
+    [
+      [9403, 8189],
+      [22, -78],
+      [40, -236],
+      [35, -48],
+      [98, -13],
+      [32, 66],
+      [-12, 60],
+      [-75, 161],
+      [-63, 83],
+      [-20, 77]
+    ],
+    [
+      [15289, 6758],
+      [30, -140],
+      [-38, -61],
+      [-14, -149],
+      [-51, -111],
+      [-18, -78],
+      [-50, -62],
+      [-21, -57],
+      [-15, -184],
+      [-60, -301],
+      [-23, -22],
+      [-112, -55],
+      [-69, -82],
+      [-20, -57],
+      [-53, -44],
+      [-35, -55],
+      [-86, -30],
+      [-44, 38],
+      [-142, -33],
+      [-14, 25],
+      [-73, -30],
+      [-56, 12],
+      [-38, -24],
+      [-2, 0],
+      [-6, 0]
+    ],
+    [
+      [12748, 3161],
+      [-110, -1],
+      [-34, 16],
+      [-64, -18],
+      [-32, 45],
+      [-60, 24],
+      [-178, -115],
+      [-73, -5],
+      [-102, -46],
+      [-81, -4],
+      [-97, -42],
+      [-89, -8],
+      [-37, 22],
+      [-91, -35],
+      [-63, 18],
+      [-34, 28]
+    ],
+    [
+      [12357, 3774],
+      [37, -53],
+      [-2, -63],
+      [61, 27],
+      [22, -50]
+    ],
+    [
+      [10383, 4108],
+      [-30, -32],
+      [-144, -79],
+      [-93, 7],
+      [-73, 45],
+      [-36, 71],
+      [-6, 101],
+      [11, 49],
+      [110, 197],
+      [11, 43]
+    ],
+    [
+      [13525, 4144],
+      [-55, -31],
+      [-76, 4],
+      [-27, -38],
+      [-5, -69],
+      [-34, -39]
+    ],
+    [
+      [7533, 1542],
+      [-7, -66],
+      [35, -31],
+      [-28, -40],
+      [-35, 20],
+      [-38, -66],
+      [5, -72],
+      [63, -26],
+      [1, -62]
+    ],
+    [
+      [10569, 13306],
+      [39, -82],
+      [-3, -80]
+    ],
+    [
+      [10605, 13144],
+      [75, -55],
+      [38, -76],
+      [-21, -47]
+    ],
+    [
+      [10697, 12966],
+      [25, -85],
+      [-14, -39],
+      [12, -53]
+    ],
+    [
+      [12511, 4044],
+      [26, -4]
+    ],
+    [
+      [10121, 5662],
+      [-44, 61],
+      [-79, 17],
+      [-51, 35],
+      [-23, -41],
+      [-79, 80],
+      [32, 79],
+      [30, 39],
+      [0, 52],
+      [-26, 92],
+      [55, 20],
+      [22, 64],
+      [30, 29],
+      [-43, 89],
+      [35, 46],
+      [13, 55]
+    ],
+    [
+      [9993, 6379],
+      [32, -19],
+      [38, -62],
+      [67, -12],
+      [54, 20],
+      [48, -33],
+      [177, 76]
+    ],
+    [
+      [10409, 6349],
+      [38, -42],
+      [38, 30],
+      [71, -4],
+      [46, 46],
+      [-9, 118],
+      [-25, 22]
+    ],
+    [
+      [10568, 6519],
+      [-243, 16]
+    ],
+    [
+      [10325, 6535],
+      [-62, -50],
+      [-31, 38],
+      [-87, 149],
+      [12, 37]
+    ],
+    [
+      [10157, 6709],
+      [-29, 90],
+      [-37, 74]
+    ],
+    [
+      [9993, 6379],
+      [-83, 23],
+      [-80, -15],
+      [-42, -24],
+      [-28, 39],
+      [28, 65]
+    ],
+    [
+      [9788, 6467],
+      [-70, 49]
+    ],
+    [
+      [9718, 6516],
+      [-41, -37],
+      [-36, 35],
+      [-54, -36],
+      [-51, 2]
+    ],
+    [
+      [12410, 2363],
+      [-111, 0],
+      [-121, -44],
+      [-119, -19],
+      [-140, 0],
+      [-87, -29],
+      [-82, -13],
+      [-112, -38],
+      [-41, -46],
+      [-41, -80],
+      [-73, 71],
+      [-121, 78],
+      [33, 31],
+      [-74, 72],
+      [18, 52]
+    ],
+    [
+      [3759, 12152],
+      [-107, -10],
+      [-135, -70],
+      [-51, 2]
+    ],
+    [
+      [3466, 12074],
+      [-70, -13],
+      [-32, 29],
+      [-153, -77]
+    ],
+    [
+      [3211, 12013],
+      [5, 88],
+      [23, 96],
+      [-4, 38],
+      [-115, 133]
+    ],
+    [
+      [3120, 12368],
+      [42, 158],
+      [-16, 39]
+    ],
+    [
+      [3146, 12565],
+      [136, -16],
+      [53, 50],
+      [34, -19],
+      [91, 15],
+      [82, -32],
+      [30, 52],
+      [59, 13],
+      [101, -39]
+    ],
+    [
+      [3732, 12589],
+      [57, -46],
+      [-27, -68],
+      [36, -87],
+      [-18, -111],
+      [43, -22]
+    ],
+    [
+      [3823, 12255],
+      [-58, -34],
+      [24, -51],
+      [-30, -18]
+    ],
+    [
+      [4379, 11729],
+      [-103, -29],
+      [-33, 34],
+      [-78, 14],
+      [-41, 66]
+    ],
+    [
+      [4124, 11814],
+      [-7, 88],
+      [53, 55],
+      [-8, 31],
+      [56, 63],
+      [-3, 83]
+    ],
+    [
+      [4215, 12134],
+      [42, 34],
+      [44, -26],
+      [72, 0],
+      [50, 30],
+      [17, 40],
+      [41, 20],
+      [7, 39]
+    ],
+    [
+      [4488, 12271],
+      [69, -73],
+      [-14, -42],
+      [22, -73],
+      [63, -81],
+      [-13, -40],
+      [37, -137],
+      [42, -22],
+      [-3, -43],
+      [-39, -81],
+      [-28, -22],
+      [27, -47],
+      [-1, -78],
+      [-43, -70],
+      [-7, -58],
+      [-44, 24],
+      [-3, 45],
+      [-45, 66],
+      [-30, 17],
+      [2, 57],
+      [49, 55],
+      [1, 133],
+      [-20, 116],
+      [-36, 0],
+      [-48, 70],
+      [-38, 6],
+      [-66, 55],
+      [-33, -116],
+      [72, -58],
+      [18, -145]
+    ],
+    [
+      [3325, 11261],
+      [-61, -2],
+      [-65, -21],
+      [-60, -38],
+      [-39, -71],
+      [-38, 23],
+      [-58, -46],
+      [-42, 4],
+      [-61, -80]
+    ],
+    [
+      [2901, 11030],
+      [-60, 42],
+      [-65, -46],
+      [-27, 43],
+      [-41, 13],
+      [-48, 46],
+      [-26, 96],
+      [-46, 36],
+      [13, 49],
+      [-19, 86]
+    ],
+    [
+      [2582, 11395],
+      [49, 32],
+      [-5, 45],
+      [41, 55],
+      [-7, 54],
+      [21, 31],
+      [116, -24],
+      [32, 71],
+      [-5, 34],
+      [60, 50],
+      [67, -38],
+      [86, 36]
+    ],
+    [
+      [3037, 11741],
+      [66, -116],
+      [38, -3],
+      [0, -56],
+      [33, -44],
+      [40, -3],
+      [44, 43]
+    ],
+    [
+      [3258, 11562],
+      [45, -137],
+      [-5, -122],
+      [27, -42]
+    ],
+    [
+      [3846, 12606],
+      [-114, -17]
+    ],
+    [
+      [3146, 12565],
+      [15, 115],
+      [-30, 163],
+      [-23, 66]
+    ],
+    [
+      [3108, 12909],
+      [69, 4],
+      [39, -18],
+      [-26, 128],
+      [119, 25],
+      [66, 85],
+      [57, -4],
+      [67, 25],
+      [73, 44]
+    ],
+    [
+      [3572, 13198],
+      [35, -16],
+      [42, -92],
+      [57, 1]
+    ],
+    [
+      [3706, 13091],
+      [98, -99],
+      [17, -35],
+      [-22, -98],
+      [15, -97],
+      [45, -22],
+      [49, 11],
+      [30, -57],
+      [-21, -31],
+      [-90, -6],
+      [19, -51]
+    ],
+    [
+      [3108, 12909],
+      [-20, 75]
+    ],
+    [
+      [3088, 12984],
+      [-48, 36],
+      [2, 44],
+      [-45, 49],
+      [-15, 64],
+      [14, 53],
+      [-46, 93],
+      [52, 55],
+      [8, 85],
+      [85, 47]
+    ],
+    [
+      [3095, 13510],
+      [56, -2],
+      [77, -58],
+      [45, 30],
+      [46, -24],
+      [26, -50],
+      [33, -12],
+      [141, 42],
+      [-10, -82],
+      [8, -52],
+      [55, -104]
+    ],
+    [
+      [3930, 11526],
+      [16, -44],
+      [-46, -56],
+      [5, -53],
+      [29, -77],
+      [-27, -17],
+      [-34, -100],
+      [-73, 47],
+      [-11, -43]
+    ],
+    [
+      [3789, 11183],
+      [-41, 15],
+      [-62, -27],
+      [-114, 10],
+      [-132, 50],
+      [-92, 0],
+      [-23, 30]
+    ],
+    [
+      [3258, 11562],
+      [20, 19],
+      [91, -25],
+      [136, 15],
+      [34, 40],
+      [6, 53]
+    ],
+    [
+      [3545, 11664],
+      [66, 28],
+      [43, -18],
+      [114, -77],
+      [-7, -49],
+      [82, -31],
+      [87, 9]
+    ],
+    [
+      [3984, 12214],
+      [41, -55]
+    ],
+    [
+      [4025, 12159],
+      [115, -28]
+    ],
+    [
+      [4140, 12131],
+      [-12, -55],
+      [-116, -28],
+      [-89, -72]
+    ],
+    [
+      [3923, 11976],
+      [-114, 68],
+      [-16, 71],
+      [-34, 37]
+    ],
+    [
+      [3823, 12255],
+      [57, 1],
+      [28, -41],
+      [36, 33],
+      [40, -34]
+    ],
+    [
+      [4035, 12308],
+      [-40, 75],
+      [25, 148]
+    ],
+    [
+      [4020, 12531],
+      [145, 18],
+      [72, -33],
+      [76, 18]
+    ],
+    [
+      [4313, 12534],
+      [-31, -66],
+      [-78, -66],
+      [-20, 9],
+      [-79, -38],
+      [-70, -65]
+    ],
+    [
+      [4124, 11814],
+      [-73, -32]
+    ],
+    [
+      [4051, 11782],
+      [-43, 57],
+      [-39, 99],
+      [-46, 38]
+    ],
+    [
+      [4140, 12131],
+      [75, 3]
+    ],
+    [
+      [3088, 12984],
+      [-32, -44],
+      [-64, -17],
+      [-82, 33],
+      [-21, -29],
+      [-59, -18],
+      [-62, 33],
+      [-65, -46]
+    ],
+    [
+      [2703, 12896],
+      [-21, 118],
+      [-20, 31],
+      [42, 56],
+      [-43, 46],
+      [4, 160],
+      [-22, 81],
+      [-60, 61],
+      [33, 105]
+    ],
+    [
+      [2616, 13554],
+      [162, 10],
+      [31, 61],
+      [153, 31],
+      [95, 40]
+    ],
+    [
+      [3057, 13696],
+      [25, -85],
+      [13, -101]
+    ],
+    [
+      [3211, 12013],
+      [-134, -75]
+    ],
+    [
+      [3077, 11938],
+      [-163, 68],
+      [-113, -38],
+      [-35, 54],
+      [-42, -21],
+      [-84, 30],
+      [-107, -29],
+      [-96, 31]
+    ],
+    [
+      [2437, 12033],
+      [16, 76],
+      [-32, 96],
+      [4, 51],
+      [-46, 30],
+      [19, 49],
+      [-11, 96],
+      [37, 28]
+    ],
+    [
+      [2424, 12459],
+      [36, -32],
+      [81, -2],
+      [95, 32],
+      [67, -26],
+      [29, 14],
+      [59, -78],
+      [56, -26],
+      [123, 52],
+      [39, -11],
+      [21, 40],
+      [90, -54]
+    ],
+    [
+      [3466, 12074],
+      [-29, -73],
+      [15, -108],
+      [51, -51],
+      [-20, -43],
+      [16, -49],
+      [43, -44],
+      [3, -42]
+    ],
+    [
+      [3037, 11741],
+      [-16, 78],
+      [-27, 38],
+      [83, 81]
+    ],
+    [
+      [2162, 13256],
+      [-40, -49],
+      [32, -35],
+      [32, -90],
+      [65, 1],
+      [-16, -49],
+      [21, -104],
+      [45, -33],
+      [19, -111],
+      [1, -76],
+      [43, -61]
+    ],
+    [
+      [2364, 12649],
+      [-87, -25],
+      [-59, 21],
+      [-78, 96],
+      [-49, -16],
+      [-21, 100],
+      [-99, 9],
+      [21, 69],
+      [-81, 22],
+      [-84, -11],
+      [-60, 66]
+    ],
+    [
+      [1767, 12980],
+      [32, 6],
+      [-11, 95],
+      [30, 109],
+      [48, 61],
+      [62, -2],
+      [62, 48],
+      [45, -29],
+      [83, 14],
+      [44, -26]
+    ],
+    [
+      [4041, 11022],
+      [-74, -14],
+      [-61, 38],
+      [-56, -21],
+      [-41, -37],
+      [-34, 79],
+      [-11, 75],
+      [25, 41]
+    ],
+    [
+      [3930, 11526],
+      [26, 28],
+      [-15, 49],
+      [48, 61],
+      [-8, 42],
+      [70, 76]
+    ],
+    [
+      [4379, 11729],
+      [28, -62],
+      [-28, -43],
+      [8, -46],
+      [-36, -89],
+      [112, 49],
+      [47, -21],
+      [28, -101],
+      [-2, -65],
+      [-28, -63],
+      [-58, -70],
+      [-57, -26],
+      [-20, -54],
+      [-36, 12],
+      [-25, 44],
+      [-83, 3],
+      [-123, -31],
+      [-89, -86],
+      [24, -58]
+    ],
+    [
+      [2582, 11395],
+      [-9, 39],
+      [-47, 21],
+      [-9, 60],
+      [-143, 112],
+      [-56, -8],
+      [-89, -116],
+      [3, -32],
+      [-73, -54],
+      [-35, -3],
+      [-15, -51]
+    ],
+    [
+      [2109, 11363],
+      [-10, 52],
+      [-62, -38],
+      [-31, 16],
+      [-37, 90],
+      [-56, 7],
+      [-34, 46],
+      [14, 51],
+      [-52, 69]
+    ],
+    [
+      [1841, 11656],
+      [80, 16],
+      [68, 31],
+      [50, 0],
+      [21, 28],
+      [68, 29],
+      [67, -4],
+      [51, 63],
+      [78, 25],
+      [16, 42],
+      [37, 6],
+      [43, 42],
+      [-4, 51],
+      [21, 48]
+    ],
+    [
+      [1329, 12108],
+      [27, -12]
+    ],
+    [
+      [1356, 12096],
+      [34, -58],
+      [46, 3],
+      [61, -47],
+      [72, 10],
+      [-44, -154],
+      [28, -127],
+      [1, -70],
+      [75, -62],
+      [129, 80],
+      [83, -15]
+    ],
+    [
+      [2109, 11363],
+      [-28, -49],
+      [77, -65],
+      [11, -116],
+      [-91, -20],
+      [-53, -37],
+      [-4, -89],
+      [-46, -119],
+      [-43, 107],
+      [-33, -44],
+      [28, -41],
+      [-41, -35],
+      [-57, 48],
+      [-59, -3],
+      [-24, 45],
+      [-51, -35],
+      [-15, -39],
+      [-73, 22],
+      [-46, -16],
+      [-40, 43],
+      [-53, 15],
+      [-11, 57],
+      [-61, 29],
+      [-37, 58],
+      [-106, 7],
+      [-96, -10],
+      [-29, 34],
+      [-10, 103],
+      [-35, 104],
+      [-41, -8],
+      [-55, 30],
+      [-40, 84],
+      [-50, 59],
+      [-57, 7],
+      [-73, 111],
+      [-82, 74],
+      [14, 87],
+      [35, -5],
+      [69, 51],
+      [41, 4],
+      [32, 91],
+      [32, 46],
+      [102, -20],
+      [145, 23],
+      [14, 46],
+      [119, 97],
+      [41, 14]
+    ],
+    [
+      [4020, 12531],
+      [-149, 9],
+      [-25, 66]
+    ],
+    [
+      [3706, 13091],
+      [133, 123],
+      [49, 59]
+    ],
+    [
+      [3888, 13273],
+      [21, -16],
+      [-18, -114],
+      [-25, -46],
+      [53, -48],
+      [57, -20],
+      [37, -69],
+      [21, -68],
+      [58, -32],
+      [67, -125],
+      [-9, -67],
+      [61, 16],
+      [-47, 55],
+      [42, 24],
+      [61, -34],
+      [46, -95],
+      [0, -100]
+    ],
+    [
+      [2703, 12896],
+      [18, -25],
+      [-12, -93],
+      [-51, -48],
+      [-116, 13],
+      [2, -54],
+      [-43, -39]
+    ],
+    [
+      [2501, 12650],
+      [-36, 31],
+      [-74, -6],
+      [-27, -26]
+    ],
+    [
+      [2162, 13256],
+      [21, -22],
+      [117, 17],
+      [45, 51],
+      [18, 98],
+      [37, 33],
+      [50, 190],
+      [92, -61],
+      [74, -8]
+    ],
+    [
+      [2424, 12459],
+      [49, 26],
+      [10, 41]
+    ],
+    [
+      [2483, 12526],
+      [43, 20],
+      [-25, 104]
+    ],
+    [
+      [3500, 13931],
+      [22, -43],
+      [-51, -16],
+      [-11, 45],
+      [40, 14]
+    ],
+    [
+      [3057, 13696],
+      [55, 66],
+      [49, 12],
+      [26, -29],
+      [177, -4],
+      [64, -22],
+      [78, -67],
+      [86, 24],
+      [32, 35],
+      [136, -78],
+      [51, -74],
+      [10, -75],
+      [-25, -21],
+      [9, -73],
+      [-30, -48],
+      [-1, -65],
+      [23, -13],
+      [91, 9]
+    ],
+    [
+      [4041, 11022],
+      [1, -73],
+      [-17, -93],
+      [-25, -53],
+      [-145, -116],
+      [-17, -33],
+      [-72, -49],
+      [-5, 45],
+      [-82, 169],
+      [-250, 12],
+      [-41, -39],
+      [-22, 48],
+      [-39, -14],
+      [12, -66],
+      [-58, -46],
+      [-56, -9],
+      [-66, 14],
+      [-47, -26],
+      [-73, -7],
+      [-57, -24],
+      [-52, 9],
+      [-51, 61],
+      [27, 77],
+      [-3, 65],
+      [29, 59],
+      [-31, 97]
+    ],
+    [
+      [4035, 12308],
+      [-51, -94]
+    ],
+    [
+      [4025, 12159],
+      [95, 70],
+      [105, 56],
+      [39, -17],
+      [103, 9],
+      [29, 26],
+      [92, -32]
+    ],
+    [
+      [1356, 12096],
+      [59, 64],
+      [61, -4],
+      [77, 47],
+      [24, -13],
+      [90, 35],
+      [25, -24],
+      [76, 69],
+      [35, 62],
+      [90, 43],
+      [32, 58],
+      [58, -7],
+      [41, 40],
+      [52, 22],
+      [141, -10],
+      [40, 30],
+      [90, 20],
+      [33, 23],
+      [103, -25]
+    ],
+    [
+      [1329, 12108],
+      [27, 21],
+      [-17, 49],
+      [-76, -34],
+      [-79, 50],
+      [-49, -10],
+      [-20, 43],
+      [-63, 40],
+      [8, 61],
+      [87, 123],
+      [124, -85],
+      [164, 108],
+      [99, 7],
+      [42, 17],
+      [21, 134],
+      [70, 55],
+      [55, 129],
+      [3, 140],
+      [42, 24]
+    ],
+    [
+      [9662, 18553],
+      [-34, -96],
+      [-95, -127],
+      [-37, -88],
+      [-39, -55],
+      [19, -54],
+      [-5, -91],
+      [-23, -60],
+      [-64, -99],
+      [-28, -11],
+      [-72, -120],
+      [-114, -54],
+      [-50, -86]
+    ],
+    [
+      [9120, 17612],
+      [-87, 10],
+      [-60, 71],
+      [-88, 12],
+      [-37, 23],
+      [-73, 104],
+      [-6, 82],
+      [28, 82],
+      [-47, 72],
+      [-59, 41],
+      [-49, 67],
+      [-71, 0],
+      [-35, 38],
+      [-61, 29],
+      [-82, -38],
+      [-146, 4],
+      [-49, -19],
+      [-41, -48],
+      [-30, -124],
+      [-19, -18],
+      [-58, 41],
+      [-56, 7],
+      [-113, 54],
+      [-28, -76],
+      [-150, -49]
+    ],
+    [
+      [7703, 17977],
+      [-98, -16],
+      [-62, 39],
+      [-68, -12],
+      [-30, 20],
+      [0, 71],
+      [-27, 23],
+      [-54, -18],
+      [-56, 18],
+      [-37, -25],
+      [-59, 6],
+      [-24, 26],
+      [-78, -7]
+    ],
+    [
+      [7110, 18102],
+      [22, 88],
+      [53, 71],
+      [-5, 93],
+      [18, 127],
+      [85, 47]
+    ],
+    [
+      [7283, 18528],
+      [88, -34],
+      [284, 0],
+      [121, 19],
+      [33, 60],
+      [-33, 91],
+      [20, 72],
+      [76, 34],
+      [134, 174],
+      [100, 53],
+      [136, -27],
+      [65, 80],
+      [28, 76],
+      [-4, 94],
+      [-52, 95],
+      [-9, 125],
+      [28, 72],
+      [83, 71],
+      [65, 42],
+      [121, 0],
+      [115, -38],
+      [37, 19],
+      [2, 42],
+      [-65, 102],
+      [-46, 42],
+      [-62, 124],
+      [1, 158]
+    ],
+    [
+      [8549, 20074],
+      [51, 8],
+      [103, -15],
+      [50, -20],
+      [127, -4],
+      [66, -31],
+      [84, 7],
+      [164, -10],
+      [65, 5],
+      [61, 63],
+      [82, -35],
+      [97, -22],
+      [87, 70],
+      [63, 0],
+      [58, -21],
+      [56, 13],
+      [13, -46],
+      [112, -18],
+      [42, -90],
+      [93, -64],
+      [-6, -67],
+      [38, -114],
+      [-6, -34],
+      [40, -94],
+      [0, -85],
+      [-118, -186],
+      [-67, -58],
+      [-70, -90],
+      [-30, -16],
+      [-60, -113],
+      [-53, -121]
+    ],
+    [
+      [9691, 18886],
+      [-99, 10],
+      [-46, -43],
+      [-41, 0],
+      [-48, 48],
+      [-90, 0],
+      [-47, -53],
+      [2, -62],
+      [45, -81],
+      [-33, -72],
+      [-80, -2],
+      [-12, -92],
+      [28, -44],
+      [339, 74],
+      [53, -16]
+    ],
+    [
+      [9691, 18886],
+      [-40, -139],
+      [7, -91],
+      [36, -11],
+      [-32, -92]
+    ],
+    [
+      [8169, 16928],
+      [-100, 40],
+      [-34, 68],
+      [2, 38],
+      [39, 97],
+      [86, 98],
+      [-67, 23],
+      [-39, 83],
+      [-38, 26],
+      [-119, 30],
+      [-23, 19],
+      [-84, 120],
+      [-31, 94],
+      [0, 94],
+      [-53, 143],
+      [-5, 76]
+    ],
+    [
+      [9120, 17612],
+      [-29, -94],
+      [-29, 42],
+      [-59, 8],
+      [-1, -63],
+      [49, 15],
+      [70, -5],
+      [-24, -63],
+      [-43, -16],
+      [-42, -57],
+      [5, -45],
+      [37, -29],
+      [-102, -156],
+      [-85, -28],
+      [-41, -60],
+      [-108, -71],
+      [-34, -85],
+      [-82, 32],
+      [-53, -3]
+    ],
+    [
+      [8549, 16934],
+      [-34, 102],
+      [-123, 0],
+      [-60, -19],
+      [-140, -22],
+      [-23, -67]
+    ],
+    [
+      [3166, 17487],
+      [24, -14],
+      [-23, -86],
+      [-45, -79],
+      [-101, -91],
+      [-41, -3],
+      [-66, -35],
+      [-59, 23],
+      [88, 101],
+      [29, 48],
+      [75, 55],
+      [20, 39],
+      [99, 42]
+    ],
+    [
+      [4891, 17354],
+      [192, -24],
+      [36, -37],
+      [103, -23],
+      [54, 41],
+      [27, 45],
+      [73, 9],
+      [69, 39],
+      [89, -33],
+      [108, 19],
+      [49, -28],
+      [72, -4]
+    ],
+    [
+      [5763, 17358],
+      [54, -5],
+      [57, 26],
+      [24, -47],
+      [-16, -50],
+      [48, -12],
+      [55, -96],
+      [-54, 11],
+      [-144, -68],
+      [47, -35],
+      [17, -40],
+      [-40, -71],
+      [54, -51]
+    ],
+    [
+      [5865, 16920],
+      [-38, -29],
+      [-84, -17],
+      [-5, -42],
+      [-66, -28],
+      [-49, -47],
+      [-44, -118],
+      [85, -51],
+      [-5, -64],
+      [89, 26],
+      [103, -19],
+      [-33, -53],
+      [21, -50],
+      [-41, -84],
+      [7, -129],
+      [102, -284],
+      [19, -27]
+    ],
+    [
+      [5926, 15904],
+      [1, -303],
+      [9, -48]
+    ],
+    [
+      [5936, 15553],
+      [-114, 41],
+      [-51, 90],
+      [-123, 63],
+      [-74, 159],
+      [-7, -52],
+      [49, -112],
+      [60, -72],
+      [-102, -10],
+      [-48, 82],
+      [1, 57],
+      [-56, 47],
+      [18, -146],
+      [-21, -101],
+      [-36, -45],
+      [-24, -114],
+      [-31, -38],
+      [-13, -57],
+      [-99, 26],
+      [-42, 72],
+      [-46, 1],
+      [-124, 120],
+      [-27, -76],
+      [-47, -37],
+      [58, -185],
+      [-173, 68],
+      [-14, 71],
+      [-38, 33],
+      [5, 77],
+      [28, 81],
+      [-24, 21],
+      [8, 78],
+      [39, 39],
+      [35, 94],
+      [37, 58],
+      [72, 68],
+      [21, 82],
+      [75, 23],
+      [77, 47],
+      [57, 133],
+      [-64, -14],
+      [-1, -43],
+      [-46, -68],
+      [-84, -25],
+      [-64, -54],
+      [-29, -81],
+      [-39, -21],
+      [-21, -62],
+      [-56, 5],
+      [-3, -93],
+      [-66, -70],
+      [-68, 19],
+      [-33, -13],
+      [9, -120],
+      [24, -31],
+      [14, -132],
+      [62, -115],
+      [48, -56],
+      [44, -115],
+      [-21, -58],
+      [-33, 6],
+      [-64, -39],
+      [-79, -104],
+      [2, -46],
+      [-44, -147],
+      [1, -78],
+      [25, -37],
+      [-42, -30],
+      [-8, -84],
+      [-32, -126],
+      [-50, -139],
+      [-1, -65],
+      [49, -121],
+      [-69, -124],
+      [-59, -41],
+      [-117, 3],
+      [-54, -39],
+      [-69, -9],
+      [-50, 22],
+      [2, 97],
+      [-11, 31],
+      [9, 113],
+      [64, 76],
+      [50, 23],
+      [13, 92],
+      [-3, 114],
+      [13, 109],
+      [-17, 66],
+      [34, 25],
+      [23, 77],
+      [22, 127],
+      [-8, 45],
+      [49, 35],
+      [95, 178],
+      [26, 2],
+      [112, 99],
+      [-27, 29],
+      [-62, -80],
+      [-114, -68],
+      [2, 46],
+      [-70, 50],
+      [-15, 47],
+      [12, 83],
+      [52, 90],
+      [36, 86],
+      [-113, -76],
+      [-9, 79],
+      [30, 82],
+      [38, 41],
+      [66, 117],
+      [-26, 11],
+      [-80, -128],
+      [-60, 3],
+      [86, 163],
+      [97, 164],
+      [61, -13],
+      [20, 25],
+      [-58, 44],
+      [95, 182],
+      [-31, 8],
+      [-76, -86],
+      [-20, 36],
+      [48, 112],
+      [9, 68],
+      [-104, 68],
+      [-43, 74],
+      [16, 48],
+      [64, 30],
+      [85, 68],
+      [23, 94],
+      [72, 80],
+      [-13, 51],
+      [60, 40],
+      [43, -6],
+      [105, 20],
+      [85, -19],
+      [26, 18],
+      [58, -33],
+      [55, 8],
+      [72, 79],
+      [-19, 55],
+      [-45, -105],
+      [-75, -21],
+      [-36, 29],
+      [-31, -5],
+      [-118, 25],
+      [-56, -9],
+      [-15, 60],
+      [-77, 9],
+      [39, 71],
+      [49, 13],
+      [32, -41],
+      [100, 49],
+      [3, 54],
+      [-84, -68],
+      [-77, 65],
+      [83, 123],
+      [96, 112]
+    ],
+    [
+      [3509, 16518],
+      [-20, 71],
+      [86, -28],
+      [252, 83],
+      [31, 56],
+      [-46, 17],
+      [-42, -46],
+      [-78, -26],
+      [-54, 2],
+      [-70, -21],
+      [-21, 38],
+      [13, 48],
+      [74, 61],
+      [44, 94],
+      [64, -8],
+      [83, 49],
+      [-19, 54],
+      [-147, -36],
+      [-37, -27],
+      [-80, 17],
+      [-40, -12],
+      [-43, 31],
+      [-57, 7],
+      [9, 43],
+      [76, -6],
+      [44, 15],
+      [46, -38],
+      [56, 40],
+      [-54, 23],
+      [-60, 49],
+      [-50, -17],
+      [-105, 26],
+      [-7, 54],
+      [32, 66],
+      [2, 60],
+      [136, 22],
+      [-6, 54],
+      [44, 28],
+      [46, -2],
+      [27, 29],
+      [131, -48],
+      [67, -117],
+      [38, -27],
+      [46, -143],
+      [234, -20],
+      [49, -68],
+      [68, -8],
+      [77, -94],
+      [30, -65],
+      [-72, -141],
+      [-71, -71],
+      [-132, -82],
+      [-82, 31],
+      [58, 51],
+      [-59, 28],
+      [-64, -82],
+      [-79, 4],
+      [-81, -76],
+      [-127, 8],
+      [-17, -28],
+      [-160, 7],
+      [-26, -63],
+      [-88, 14],
+      [-20, 32],
+      [-66, 11],
+      [19, 120],
+      [29, 38],
+      [68, -6],
+      [53, -53],
+      [48, -22]
+    ],
+    [
+      [4469, 16897],
+      [18, 83],
+      [59, 32],
+      [89, 117],
+      [58, -4],
+      [-78, -86],
+      [-27, -48],
+      [-119, -94]
+    ],
+    [
+      [2512, 16839],
+      [-98, 80],
+      [-1, 116],
+      [65, 34],
+      [89, -29],
+      [80, 64],
+      [39, -22],
+      [29, 32],
+      [69, -19],
+      [1, -32],
+      [-93, 0],
+      [-36, -39],
+      [-15, -54],
+      [-82, -8],
+      [-27, -45],
+      [11, -63],
+      [-31, -15]
+    ],
+    [
+      [4511, 16760],
+      [63, 12],
+      [-18, -58],
+      [-39, -52],
+      [-54, 21],
+      [48, 77]
+    ],
+    [
+      [3286, 16610],
+      [2, -37],
+      [-49, -76],
+      [-27, 64],
+      [74, 49]
+    ],
+    [
+      [4363, 16263],
+      [-13, 43],
+      [24, 78],
+      [47, -60],
+      [-25, -97],
+      [-33, 36]
+    ],
+    [
+      [4315, 16221],
+      [22, -24],
+      [-31, -78],
+      [-77, 1],
+      [27, 71],
+      [59, 30]
+    ],
+    [
+      [4150, 15705],
+      [-73, -150],
+      [-1, -34],
+      [-73, -123],
+      [-52, -37],
+      [-41, -194],
+      [-149, 36],
+      [-23, 32],
+      [-25, 137],
+      [6, 51],
+      [74, 127],
+      [65, 31],
+      [31, -8],
+      [44, 36],
+      [-79, 43],
+      [0, 24],
+      [79, 127],
+      [125, 103],
+      [62, 29],
+      [37, 60],
+      [71, 39],
+      [40, 52],
+      [44, -31],
+      [6, -64],
+      [-63, -99],
+      [-74, -152],
+      [-31, -35]
+    ],
+    [
+      [3576, 15971],
+      [19, 45],
+      [57, -13],
+      [-41, -96],
+      [-43, -44],
+      [17, -48],
+      [-31, -35],
+      [-90, 16],
+      [25, 67],
+      [4, 62],
+      [48, 51],
+      [35, -5]
+    ],
+    [
+      [3522, 15778],
+      [-17, -58],
+      [-45, 48],
+      [62, 10]
+    ],
+    [
+      [3137, 14854],
+      [-57, 56],
+      [48, 58],
+      [-15, 31],
+      [70, 119],
+      [-47, 52],
+      [41, 53],
+      [7, 102],
+      [93, 13],
+      [32, 44],
+      [49, -20],
+      [24, -45],
+      [37, 65],
+      [40, 18],
+      [105, 109],
+      [53, 24],
+      [61, 3],
+      [-16, -115],
+      [44, -115],
+      [-4, -81],
+      [29, -80],
+      [57, -54],
+      [-4, -67],
+      [27, -21],
+      [-14, -48],
+      [30, -70],
+      [-105, -94],
+      [-80, -52],
+      [-69, 18],
+      [-33, -31],
+      [-36, -73],
+      [-42, -36],
+      [-103, 26],
+      [12, 95],
+      [46, 63],
+      [55, 20],
+      [-32, 105],
+      [-33, 39],
+      [-51, 16],
+      [9, 56],
+      [105, 59],
+      [3, 47],
+      [-127, 6],
+      [-56, -141],
+      [-45, -64],
+      [-108, -90]
+    ],
+    [
+      [4200, 14848],
+      [-13, 16],
+      [68, 91],
+      [3, -111],
+      [-58, 4]
+    ],
+    [
+      [7177, 15885],
+      [-80, 93],
+      [-60, 3],
+      [-23, 56],
+      [32, 71],
+      [23, 92]
+    ],
+    [
+      [7069, 16200],
+      [97, 60],
+      [53, -67],
+      [87, -7],
+      [12, 25],
+      [65, 3],
+      [74, -28],
+      [-1, -25],
+      [-119, -57],
+      [18, -70]
+    ],
+    [
+      [7355, 16034],
+      [-1, -56],
+      [-124, -23],
+      [-53, -70]
+    ],
+    [
+      [5276, 13104],
+      [76, 41],
+      [92, -25],
+      [53, 43],
+      [27, 57],
+      [103, 19],
+      [147, -6],
+      [104, 31],
+      [16, 59],
+      [-36, 23],
+      [-5, 88],
+      [54, 53],
+      [107, 54],
+      [74, -25],
+      [31, 16]
+    ],
+    [
+      [6119, 13532],
+      [45, 46],
+      [9, -87],
+      [41, 29],
+      [2, 52],
+      [25, 22],
+      [12, 92],
+      [35, 61],
+      [6, 56],
+      [41, 32],
+      [36, 84],
+      [78, -9],
+      [19, 32],
+      [63, -8],
+      [79, -76],
+      [32, 41],
+      [0, 43],
+      [41, 78],
+      [-18, 63],
+      [6, 63],
+      [34, 49],
+      [100, 52],
+      [-8, 49],
+      [37, 18]
+    ],
+    [
+      [6834, 14314],
+      [40, -17],
+      [115, 1],
+      [78, -22],
+      [83, -96],
+      [39, -98],
+      [51, -21],
+      [11, -109],
+      [87, -80],
+      [38, 8],
+      [14, 67],
+      [52, 28],
+      [6, 140],
+      [100, 67]
+    ],
+    [
+      [7548, 14182],
+      [83, -14],
+      [49, 19],
+      [97, 0],
+      [42, 68],
+      [94, -24],
+      [17, -26],
+      [-62, -45],
+      [-30, -42],
+      [-9, -93],
+      [36, -20],
+      [115, 80],
+      [64, -58],
+      [50, 18],
+      [38, -12],
+      [9, -58],
+      [61, -58],
+      [33, -88],
+      [55, -12],
+      [77, 51],
+      [80, -26],
+      [28, -42],
+      [-38, -22],
+      [43, -42],
+      [7, -47],
+      [-30, -43],
+      [-7, -121],
+      [44, -48],
+      [13, -63]
+    ],
+    [
+      [8213, 13087],
+      [-104, -24],
+      [-51, -30],
+      [-81, 30],
+      [-101, -26],
+      [-58, 28],
+      [-83, -17],
+      [-49, 15],
+      [-46, 42],
+      [-18, -41],
+      [-40, -23],
+      [-76, 0],
+      [-41, 29],
+      [-45, -96],
+      [36, -96],
+      [-50, -55],
+      [-64, -11],
+      [-98, 12],
+      [-83, -70],
+      [-50, 21],
+      [-17, -51],
+      [-78, 0],
+      [51, -56],
+      [-73, -54],
+      [-96, -42],
+      [-36, -38],
+      [-119, -4],
+      [-31, 30],
+      [25, 103],
+      [-34, 23],
+      [-26, -40],
+      [1, -101],
+      [-104, 10],
+      [-90, 118],
+      [-14, 78],
+      [-38, -48],
+      [-75, 23],
+      [-77, 41],
+      [-35, 49],
+      [-55, 12],
+      [-1, -84],
+      [15, -63],
+      [85, -38],
+      [18, -39],
+      [-27, -45],
+      [5, -57],
+      [-16, -69],
+      [23, -68],
+      [-20, -37],
+      [-64, -34],
+      [-55, 39],
+      [-54, 15],
+      [-60, 38],
+      [-36, 51],
+      [-33, 9],
+      [-26, 75],
+      [-139, 99],
+      [-51, 56],
+      [-71, 2],
+      [-37, 23],
+      [-31, 64],
+      [-62, 14],
+      [-32, -32],
+      [-97, -58],
+      [-33, -72],
+      [18, -17],
+      [56, -181],
+      [6, -64],
+      [60, -50],
+      [-23, -29],
+      [7, -80],
+      [-67, 8],
+      [-63, 65],
+      [-12, 58],
+      [37, 27],
+      [-68, 87],
+      [-11, 98],
+      [-62, 53],
+      [-140, 147],
+      [-11, 52],
+      [-59, 107],
+      [-3, 167],
+      [25, 61],
+      [91, 47],
+      [51, -58],
+      [15, -177],
+      [47, -50],
+      [61, 23],
+      [-9, 55],
+      [-61, 138]
+    ],
+    [
+      [8549, 16934],
+      [-68, -36],
+      [-98, 6],
+      [-80, -38],
+      [-100, 13]
+    ],
+    [
+      [8203, 16879],
+      [-34, 49]
+    ],
+    [
+      [6119, 13532],
+      [34, 111],
+      [0, 209],
+      [-44, 74],
+      [-87, 73],
+      [-64, 109],
+      [11, 39],
+      [153, -28],
+      [7, 66],
+      [-34, 89],
+      [7, 31],
+      [69, 66],
+      [9, 89],
+      [-25, 70],
+      [-71, 31],
+      [-134, 89]
+    ],
+    [
+      [5950, 14650],
+      [106, 78],
+      [14, 62],
+      [-49, 27],
+      [-113, 4],
+      [-11, 50],
+      [88, 97],
+      [60, 115]
+    ],
+    [
+      [6045, 15083],
+      [17, -22],
+      [235, -103],
+      [93, -52],
+      [49, -12]
+    ],
+    [
+      [6439, 14894],
+      [49, -116],
+      [56, -62],
+      [11, -47],
+      [-51, -69],
+      [15, -51],
+      [195, 4],
+      [51, 47],
+      [56, -4],
+      [46, -78],
+      [-4, -85],
+      [-29, -119]
+    ],
+    [
+      [6624, 15718],
+      [7, -111],
+      [33, -17],
+      [75, 4],
+      [5, -86],
+      [-38, -41],
+      [-117, 4],
+      [-18, -47]
+    ],
+    [
+      [6571, 15424],
+      [-77, -5],
+      [-82, 68],
+      [-38, -46],
+      [-84, 18]
+    ],
+    [
+      [6290, 15459],
+      [-12, 17],
+      [-7, 165]
+    ],
+    [
+      [6271, 15641],
+      [93, -48],
+      [40, 5],
+      [10, 75],
+      [-29, 74],
+      [132, 7],
+      [59, 16],
+      [48, -52]
+    ],
+    [
+      [9223, 15563],
+      [-104, -129],
+      [52, -23],
+      [-38, -58],
+      [-157, -20],
+      [-92, -74],
+      [-67, 16],
+      [-20, 38],
+      [-121, -53],
+      [-66, 27],
+      [-59, -43]
+    ],
+    [
+      [8551, 15244],
+      [-307, 231],
+      [-40, 41],
+      [-8, 53]
+    ],
+    [
+      [8196, 15569],
+      [105, 26],
+      [26, 32],
+      [73, 7],
+      [57, 71],
+      [35, 101],
+      [25, 0],
+      [41, 62],
+      [62, 9],
+      [111, -23],
+      [12, 14],
+      [98, -29],
+      [53, -94],
+      [50, -35],
+      [34, 14],
+      [78, -26],
+      [22, -26],
+      [96, -46],
+      [51, -59],
+      [0, -1],
+      [-1, -1],
+      [0, 0],
+      [-1, -2]
+    ],
+    [
+      [6455, 15171],
+      [-17, -113],
+      [39, -38],
+      [0, -114],
+      [-38, -12]
+    ],
+    [
+      [6045, 15083],
+      [2, 9]
+    ],
+    [
+      [6047, 15092],
+      [41, 34],
+      [70, 27],
+      [125, 84]
+    ],
+    [
+      [6283, 15237],
+      [14, -65],
+      [81, 3],
+      [52, 22],
+      [25, -26]
+    ],
+    [
+      [7703, 15233],
+      [2, 193],
+      [-61, 29],
+      [-21, 32],
+      [-1, 208]
+    ],
+    [
+      [7622, 15695],
+      [90, -17],
+      [55, 30],
+      [45, -45],
+      [83, -13],
+      [144, 17],
+      [73, -73],
+      [59, -25]
+    ],
+    [
+      [8171, 15569],
+      [-14, -147],
+      [-151, -21],
+      [-252, -183]
+    ],
+    [
+      [7754, 15218],
+      [-51, 15]
+    ],
+    [
+      [3201, 21190],
+      [98, -95],
+      [30, -132],
+      [-12, -59],
+      [-31, -42],
+      [-71, 36],
+      [-57, -34],
+      [29, -32],
+      [7, -61],
+      [-34, -73],
+      [-38, 8],
+      [-57, -57],
+      [-62, -19],
+      [-110, 19],
+      [-84, 126],
+      [7, 66],
+      [-29, 52],
+      [-40, -17],
+      [45, -119],
+      [70, -96],
+      [7, -112],
+      [-183, 35],
+      [85, -169],
+      [-79, -45],
+      [-88, -18],
+      [-35, -68],
+      [-100, -54],
+      [-37, -66],
+      [-133, 124],
+      [-48, 77],
+      [-44, 16],
+      [-25, 62],
+      [49, 5],
+      [39, -40],
+      [40, 8],
+      [95, 93],
+      [91, 29],
+      [-59, 31],
+      [55, 59],
+      [104, -26],
+      [8, 36],
+      [-141, 93],
+      [-63, 15],
+      [-46, -9],
+      [-93, 38],
+      [-8, 135],
+      [52, 5],
+      [-10, 102],
+      [-61, 20],
+      [-24, 116],
+      [-24, 65],
+      [59, 65],
+      [-17, 56],
+      [53, 23],
+      [24, 95],
+      [76, 8],
+      [34, -38],
+      [99, -35],
+      [-53, -30],
+      [99, -39],
+      [63, 62],
+      [115, -23],
+      [-10, 80],
+      [-39, 29],
+      [-56, 123],
+      [46, 58],
+      [64, -1],
+      [43, 57],
+      [105, 60],
+      [41, -7],
+      [69, 41],
+      [42, 2],
+      [40, 76],
+      [99, 65],
+      [85, 76],
+      [65, 27],
+      [33, 49],
+      [47, 5],
+      [43, 39],
+      [17, 54],
+      [57, -43],
+      [10, -43],
+      [49, -38],
+      [-13, -69],
+      [33, -41],
+      [-56, -109],
+      [-7, -58],
+      [29, -32],
+      [-24, -61],
+      [-36, -23],
+      [-20, -60],
+      [-56, -20],
+      [5, -44],
+      [-61, -1],
+      [8, -62],
+      [-41, -18],
+      [77, -79],
+      [80, 43],
+      [53, 64],
+      [96, 33],
+      [-44, -134],
+      [-60, -53],
+      [-73, -23],
+      [-44, 63],
+      [-32, 3],
+      [-46, -50],
+      [-74, 35],
+      [32, -121],
+      [-5, -56],
+      [-108, -8]
+    ],
+    [
+      [2546, 21562],
+      [48, -14],
+      [50, -69],
+      [50, -40],
+      [-24, -45],
+      [-95, 1],
+      [-11, 78],
+      [-27, 38],
+      [9, 51]
+    ],
+    [
+      [2186, 20959],
+      [32, -18],
+      [12, -70],
+      [-77, 10],
+      [-27, 56],
+      [60, 22]
+    ],
+    [
+      [2377, 20660],
+      [22, -50],
+      [-37, -58],
+      [-56, 12],
+      [28, 87],
+      [43, 9]
+    ],
+    [
+      [2821, 20533],
+      [75, -6],
+      [-29, -55],
+      [-46, 61]
+    ],
+    [
+      [0, 20418],
+      [71, -20],
+      [-47, -41],
+      [-24, 61]
+    ],
+    [
+      [2062, 20307],
+      [11, -51],
+      [-57, -14],
+      [-21, 51],
+      [67, 14]
+    ],
+    [
+      [2140, 20188],
+      [19, -53],
+      [-72, -43],
+      [-29, 25],
+      [28, 57],
+      [54, 14]
+    ],
+    [
+      [1807, 19918],
+      [22, 65],
+      [34, 11],
+      [87, -27],
+      [136, 113],
+      [54, -36],
+      [-2, -74],
+      [37, -16],
+      [66, 8],
+      [45, -29],
+      [-59, -84],
+      [-73, 50],
+      [-3, -98],
+      [80, 12],
+      [-45, -144],
+      [-47, -76],
+      [-128, -4],
+      [-23, 14],
+      [-85, -8],
+      [-2, 47],
+      [-44, 65],
+      [-67, 33],
+      [-33, 41],
+      [-59, -45],
+      [-31, 8],
+      [-55, 92],
+      [53, 155],
+      [95, -24],
+      [47, -49]
+    ],
+    [
+      [1780, 19694],
+      [52, 5],
+      [49, -51],
+      [-27, -59],
+      [-74, 105]
+    ],
+    [
+      [2078, 19531],
+      [-66, -14],
+      [-44, 45],
+      [33, 26],
+      [61, -13],
+      [16, -44]
+    ],
+    [
+      [2077, 19580],
+      [49, -1],
+      [21, -51],
+      [-25, -34],
+      [-47, 48],
+      [2, 38]
+    ],
+    [
+      [2056, 19464],
+      [20, -112],
+      [-48, -51],
+      [-94, 6],
+      [-73, 53],
+      [-63, 21],
+      [-27, 115],
+      [48, 11],
+      [18, 43],
+      [118, -16],
+      [30, -50],
+      [38, 26],
+      [33, -46]
+    ],
+    [
+      [1985, 18547],
+      [-156, 1],
+      [-59, 117],
+      [-18, 114],
+      [3, 61],
+      [-26, 58],
+      [23, 39],
+      [3, 83],
+      [38, 41],
+      [-4, 118],
+      [-17, 103],
+      [21, 32],
+      [86, 8],
+      [34, -38],
+      [62, -17],
+      [20, -61],
+      [49, -27],
+      [-14, -59],
+      [24, -55],
+      [44, -14],
+      [-19, -48],
+      [-72, -52],
+      [-18, -166],
+      [28, -85],
+      [-47, -50],
+      [47, -17],
+      [50, -60],
+      [-82, -26]
+    ],
+    [
+      [1969, 18520],
+      [9, -38],
+      [-53, -52],
+      [-4, 72],
+      [48, 18]
+    ],
+    [
+      [1624, 18271],
+      [7, 24],
+      [78, 54],
+      [104, -54],
+      [9, -38],
+      [-67, -48],
+      [-19, -62],
+      [-138, -3],
+      [-40, 11],
+      [4, 54],
+      [57, 20],
+      [5, 42]
+    ],
+    [
+      [1542, 18153],
+      [52, -9],
+      [34, -63],
+      [-63, -35],
+      [-45, 60],
+      [22, 47]
+    ],
+    [
+      [1465, 17848],
+      [-2, -77],
+      [-49, -17],
+      [-7, 73],
+      [58, 21]
+    ],
+    [
+      [7529, 15703],
+      [-39, -34],
+      [-88, 12],
+      [-101, -126],
+      [-77, -27],
+      [-81, -76],
+      [-51, -18]
+    ],
+    [
+      [7092, 15434],
+      [-9, 28],
+      [-117, 70],
+      [43, 58],
+      [-85, 4],
+      [-22, 69],
+      [-55, 3],
+      [3, 54],
+      [-57, 15]
+    ],
+    [
+      [6793, 15735],
+      [34, 28],
+      [98, 37],
+      [144, 16],
+      [83, 21],
+      [58, -3]
+    ],
+    [
+      [7210, 15834],
+      [2, -46],
+      [84, -43],
+      [136, 7],
+      [97, -49]
+    ],
+    [
+      [7355, 16034],
+      [68, 17],
+      [50, 46],
+      [32, -28],
+      [84, 6],
+      [126, -18],
+      [40, 64],
+      [53, 14],
+      [39, 46],
+      [54, 29],
+      [-5, 59],
+      [-36, 36],
+      [-88, 9],
+      [-21, 72],
+      [41, 45],
+      [52, -1],
+      [13, 55],
+      [47, -4],
+      [25, 31],
+      [-30, 97]
+    ],
+    [
+      [7899, 16609],
+      [101, 37],
+      [114, 68],
+      [38, 8],
+      [76, 55],
+      [70, 10],
+      [68, 42],
+      [14, 27],
+      [78, 15],
+      [38, -33],
+      [70, 14],
+      [11, -26],
+      [-14, -120],
+      [-18, -29],
+      [-82, -39],
+      [65, -24],
+      [86, -52],
+      [134, -16],
+      [47, -23],
+      [36, -56],
+      [69, -46],
+      [-154, -146],
+      [-135, -55],
+      [-47, -38],
+      [-48, -7],
+      [-73, 63],
+      [-91, 7],
+      [-44, -29],
+      [-48, -63],
+      [-41, -17],
+      [-57, -74],
+      [-89, -51],
+      [-43, -147],
+      [-59, 5],
+      [-26, -25],
+      [-51, 13],
+      [-106, -52],
+      [-27, -34],
+      [-47, -9],
+      [-2, -39],
+      [-186, 85],
+      [-47, -2],
+      [-43, 48],
+      [-130, -30],
+      [-100, 44]
+    ],
+    [
+      [7206, 15868],
+      [-29, 17]
+    ],
+    [
+      [6283, 15237],
+      [1, 116]
+    ],
+    [
+      [6284, 15353],
+      [6, 106]
+    ],
+    [
+      [6571, 15424],
+      [62, -60],
+      [59, 0],
+      [14, -33],
+      [-21, -73]
+    ],
+    [
+      [6685, 15258],
+      [-137, 9],
+      [-29, -27],
+      [11, -65],
+      [-19, -27],
+      [-56, 23]
+    ],
+    [
+      [7162, 19910],
+      [48, -119],
+      [29, -20],
+      [-4, -116],
+      [36, -26],
+      [12, -76],
+      [-8, -121],
+      [-51, -60],
+      [26, -38],
+      [52, 59],
+      [83, 9],
+      [47, 38],
+      [119, 22],
+      [88, -81],
+      [60, -12],
+      [20, -103],
+      [-50, -61],
+      [-40, -73],
+      [-41, -32],
+      [-15, -47],
+      [56, -34],
+      [-15, -125],
+      [52, -37],
+      [-11, -53],
+      [-37, -63],
+      [-33, 2],
+      [-83, -38],
+      [-37, -48],
+      [-86, -72],
+      [-40, -4],
+      [-56, -53]
+    ],
+    [
+      [7110, 18102],
+      [-30, 10],
+      [-90, -24],
+      [-93, 59],
+      [-28, -48],
+      [-24, -86],
+      [-84, 18],
+      [-98, -19],
+      [-96, 34],
+      [-56, -40],
+      [2, -61],
+      [-77, -42],
+      [-74, -21],
+      [-44, -53],
+      [-50, 6],
+      [-39, -35],
+      [-64, -89],
+      [-56, 19],
+      [-59, 46],
+      [-55, -103],
+      [-39, -23],
+      [7, -71],
+      [-36, -48],
+      [17, -42],
+      [-87, -43],
+      [-85, -14],
+      [-9, -74]
+    ],
+    [
+      [4891, 17354],
+      [-31, 22],
+      [61, 56],
+      [43, -1],
+      [95, 76],
+      [-92, 16],
+      [122, 194],
+      [93, 112],
+      [-105, 72],
+      [-135, 3],
+      [14, -28],
+      [112, 10],
+      [84, -53],
+      [-142, -158],
+      [-52, -70],
+      [7, -50],
+      [-79, -15],
+      [-74, -71],
+      [-5, -27],
+      [-74, -82],
+      [-41, -1],
+      [-54, -71],
+      [-33, -20],
+      [-98, -160],
+      [-80, -65],
+      [-96, -50],
+      [-25, 30],
+      [-84, 16],
+      [-29, 37],
+      [-138, 30],
+      [-93, 51],
+      [-48, 50],
+      [-27, 71],
+      [-33, 22],
+      [-9, 69],
+      [137, 44],
+      [113, -6],
+      [107, 88],
+      [65, 7],
+      [6, 32],
+      [-78, -4],
+      [-101, -92],
+      [-130, 7],
+      [-14, 30],
+      [-65, -36],
+      [-74, 18],
+      [-30, 33],
+      [-98, 8],
+      [-36, -35],
+      [-67, 12],
+      [-61, 76],
+      [59, 99],
+      [101, 27],
+      [82, -12],
+      [98, 27],
+      [57, 34],
+      [80, -87],
+      [25, 30],
+      [1, 59],
+      [76, -19],
+      [61, 44],
+      [-106, 42],
+      [10, 48],
+      [109, 19],
+      [44, 52],
+      [-44, 23],
+      [59, 47],
+      [-78, 17],
+      [-109, -28],
+      [-72, 1],
+      [-4, 29],
+      [65, 20],
+      [-5, 60],
+      [44, 45],
+      [15, 129],
+      [20, 48],
+      [34, 14],
+      [118, 10],
+      [28, -71],
+      [55, -35],
+      [68, -6],
+      [140, 48],
+      [-3, 22],
+      [-124, -50],
+      [-60, 26],
+      [-33, 43],
+      [-16, 77],
+      [-96, -19],
+      [-47, 42],
+      [-17, 46],
+      [59, 63],
+      [40, 21],
+      [12, 51],
+      [65, 3],
+      [50, 22],
+      [78, -22],
+      [85, -83],
+      [27, 33],
+      [-53, 30],
+      [-11, 53],
+      [-74, 33],
+      [-75, -7],
+      [-42, 36],
+      [21, 75],
+      [47, 30],
+      [27, 48],
+      [-46, 48],
+      [29, 43],
+      [169, 47],
+      [-207, 31],
+      [-96, -5],
+      [18, 101],
+      [46, 26],
+      [-3, 34],
+      [106, -7],
+      [52, 40],
+      [67, -3],
+      [107, 93],
+      [31, 64],
+      [-34, 13],
+      [-108, -131],
+      [-93, -34],
+      [-54, 29],
+      [33, 90],
+      [-117, -65],
+      [-46, -50],
+      [-94, -26],
+      [-50, 39],
+      [-10, 77],
+      [26, 26],
+      [-23, 102],
+      [-41, 2],
+      [-25, 70],
+      [0, 83],
+      [25, 66],
+      [0, 57],
+      [24, 78],
+      [41, 16],
+      [99, -106],
+      [66, 10],
+      [-3, -40],
+      [42, -24],
+      [94, 31],
+      [129, -14],
+      [-29, 60],
+      [-173, -14],
+      [-41, 16],
+      [-1, 59],
+      [-65, 23],
+      [-11, 60],
+      [-53, 60],
+      [-69, 41],
+      [49, 92],
+      [-5, 34],
+      [44, 25],
+      [73, 1],
+      [20, 59],
+      [-95, 3],
+      [-70, 39],
+      [11, 127],
+      [-18, 54],
+      [9, 118],
+      [42, -8],
+      [132, 26],
+      [9, -88],
+      [32, -23],
+      [-5, -72],
+      [61, -77],
+      [58, 117],
+      [4, 60],
+      [-85, 66],
+      [4, 131],
+      [59, 26],
+      [68, -37],
+      [0, -68],
+      [20, -40],
+      [125, -40],
+      [-2, 45],
+      [45, 101],
+      [107, -55],
+      [39, -56],
+      [94, -31],
+      [21, 35],
+      [-100, 36],
+      [-38, 66],
+      [-81, 18],
+      [-16, 35],
+      [72, 30],
+      [39, -63],
+      [62, -10],
+      [71, 18],
+      [135, -110],
+      [33, -1],
+      [63, -120],
+      [28, -1],
+      [-50, 108],
+      [-50, 25],
+      [-28, 44],
+      [-92, 62],
+      [34, 87],
+      [-74, 20],
+      [-9, 23],
+      [-99, 25],
+      [8, 25],
+      [-88, 105],
+      [-82, 19],
+      [0, 51],
+      [-50, 27],
+      [32, 95],
+      [53, -20],
+      [53, -69],
+      [59, -4],
+      [55, 23],
+      [13, 63],
+      [-9, 60],
+      [-38, 75],
+      [-4, 43],
+      [-71, 86],
+      [-1, 31],
+      [-64, 45],
+      [14, 54],
+      [78, -10],
+      [55, -59],
+      [100, 70],
+      [123, -4],
+      [30, 61],
+      [-5, 84],
+      [-46, 27],
+      [-27, 83],
+      [48, 68],
+      [5, 67],
+      [58, -18],
+      [-7, 82],
+      [51, 54],
+      [44, 5],
+      [-110, 91],
+      [18, 88],
+      [32, 41],
+      [61, 7],
+      [59, 135],
+      [9, 89],
+      [88, -42],
+      [116, -7],
+      [66, -32],
+      [41, -49],
+      [85, 4],
+      [52, -60],
+      [70, -8],
+      [7, -50],
+      [-91, -96],
+      [4, -79],
+      [50, 48],
+      [47, 94],
+      [72, 35],
+      [-7, 96],
+      [84, 28],
+      [159, -68],
+      [38, -81],
+      [-56, -59],
+      [-40, -148],
+      [73, 94],
+      [9, 39],
+      [93, 108],
+      [80, 17],
+      [128, -29],
+      [1, 48],
+      [70, -15],
+      [26, 53],
+      [99, -17],
+      [48, 32],
+      [8, 44],
+      [44, 13],
+      [14, -73],
+      [77, 22],
+      [48, -38],
+      [43, 23],
+      [48, -11],
+      [125, 28],
+      [184, 126],
+      [14, -21],
+      [155, 18],
+      [-17, -49],
+      [47, -15],
+      [44, 31],
+      [83, -9],
+      [96, -28],
+      [27, 39],
+      [-101, 75],
+      [11, 55],
+      [43, 28],
+      [50, -63],
+      [71, -5],
+      [38, 23],
+      [102, 3],
+      [56, -44],
+      [88, 20],
+      [117, -6],
+      [-17, -87],
+      [-47, -121],
+      [-80, -85],
+      [-17, -52],
+      [9, -63],
+      [30, -31],
+      [83, 15],
+      [-2, -87],
+      [-69, -128],
+      [-12, -66],
+      [-53, -39],
+      [-114, -130],
+      [-78, -19],
+      [-168, -80],
+      [-123, -154],
+      [-55, -91],
+      [-246, -182],
+      [-103, -86],
+      [-61, -10],
+      [-71, -63],
+      [-18, -83],
+      [-68, -52],
+      [-65, -11],
+      [-72, -36],
+      [-35, -95],
+      [23, -77],
+      [-32, -31],
+      [-7, -69],
+      [-106, 0],
+      [-27, -27],
+      [-98, 18],
+      [-41, 28],
+      [-103, -4],
+      [-43, -40],
+      [161, 23],
+      [76, -89],
+      [63, 10],
+      [78, -40],
+      [117, 75],
+      [69, -20],
+      [42, -43],
+      [44, 9],
+      [47, 40],
+      [24, 52],
+      [49, -30],
+      [-105, -155],
+      [-99, -98],
+      [3, -18],
+      [-90, -131],
+      [-88, 16],
+      [38, 94],
+      [-92, -10],
+      [-50, -34],
+      [-76, -78],
+      [-74, 10],
+      [-83, -36],
+      [-54, -7],
+      [3, -43],
+      [-169, -135],
+      [57, -23],
+      [72, 85],
+      [119, 93],
+      [45, 19],
+      [77, 2],
+      [-5, -31],
+      [115, 4],
+      [79, 52],
+      [63, -22],
+      [-50, -46],
+      [-113, -136],
+      [-16, -71],
+      [-83, -30],
+      [-7, -36],
+      [-88, -133],
+      [-115, 4],
+      [-84, 26],
+      [-69, -26],
+      [59, -58],
+      [117, 5],
+      [115, 39],
+      [51, -31],
+      [104, 81],
+      [25, 60],
+      [63, 33],
+      [23, 39],
+      [-32, 57],
+      [73, 29],
+      [114, -39],
+      [101, 14],
+      [97, 47],
+      [56, 57]
+    ],
+    [
+      [4016, 18901],
+      [56, 39],
+      [70, 9],
+      [39, 30],
+      [62, 12],
+      [134, -55],
+      [-28, -45],
+      [-3, -69],
+      [-62, -60],
+      [-113, -48],
+      [6, -61],
+      [-67, -94],
+      [-34, 9],
+      [-31, -66],
+      [-74, -110],
+      [-92, -38],
+      [-58, -9],
+      [-20, 72],
+      [40, 93],
+      [34, 43],
+      [-12, 57],
+      [77, 51],
+      [37, 47],
+      [-23, 26],
+      [-73, -22],
+      [-41, 100],
+      [-106, -204],
+      [-46, 26],
+      [15, 78],
+      [-42, 45],
+      [-81, -29],
+      [-34, 11],
+      [-152, -45],
+      [43, 77],
+      [-102, -6],
+      [-76, 114],
+      [-68, 77],
+      [-46, 131],
+      [52, 23],
+      [1, 68],
+      [-53, 49],
+      [15, 27],
+      [-80, 55],
+      [-44, -35],
+      [-12, -126],
+      [-26, -10],
+      [-57, 42],
+      [-80, 21],
+      [-72, 45],
+      [-30, 108],
+      [-67, 40],
+      [5, 61],
+      [31, 11],
+      [24, 106],
+      [50, 34],
+      [74, -135],
+      [77, -38],
+      [-40, 145],
+      [115, 15],
+      [-121, 113],
+      [11, 144],
+      [80, -52],
+      [20, -94],
+      [95, -45],
+      [52, -66],
+      [90, 39],
+      [58, -17],
+      [-46, 122],
+      [6, 126],
+      [-47, 71],
+      [107, 79],
+      [-1, 67],
+      [81, 28],
+      [5, -38],
+      [54, -32],
+      [36, -108],
+      [66, -15],
+      [77, -133],
+      [-4, -225],
+      [9, -60],
+      [-14, -109],
+      [-47, -43],
+      [78, -45],
+      [-20, -73],
+      [54, -104],
+      [-6, -29],
+      [86, -12],
+      [9, -47],
+      [61, -49],
+      [141, -50],
+      [18, -35]
+    ],
+    [
+      [3885, 19608],
+      [-27, 44],
+      [27, 39],
+      [-14, 63],
+      [48, 28],
+      [-2, -77],
+      [-32, -97]
+    ],
+    [
+      [3881, 19532],
+      [-28, -84],
+      [-34, -26],
+      [11, -137],
+      [36, -86],
+      [-40, -59],
+      [-71, 2],
+      [-20, 58],
+      [10, 56],
+      [-15, 113],
+      [44, 104],
+      [65, 7],
+      [-34, 68],
+      [76, -16]
+    ],
+    [
+      [3858, 19121],
+      [75, -18],
+      [36, -30],
+      [-2, -64],
+      [-92, -13],
+      [-54, 71],
+      [37, 54]
+    ],
+    [
+      [3555, 18710],
+      [33, -38],
+      [-32, -41],
+      [-44, -15],
+      [-34, 53],
+      [77, 41]
+    ],
+    [
+      [3137, 18406],
+      [-41, -7],
+      [-54, 29],
+      [65, 39],
+      [30, -61]
+    ],
+    [
+      [3243, 18356],
+      [26, 36],
+      [90, 44],
+      [122, -68],
+      [20, -66],
+      [-28, -121],
+      [-56, -57],
+      [-48, -9],
+      [-60, 45],
+      [-34, 56],
+      [-88, 71],
+      [56, 69]
+    ],
+    [
+      [3551, 18028],
+      [67, 30],
+      [13, 73],
+      [57, -32],
+      [-3, -109],
+      [-29, -36],
+      [-43, -2],
+      [-67, 43],
+      [5, 33]
+    ],
+    [
+      [4039, 17795],
+      [65, -35],
+      [-38, -30],
+      [-44, 22],
+      [17, 43]
+    ],
+    [
+      [5700, 15336],
+      [-36, 32],
+      [-112, 3],
+      [-59, -16]
+    ],
+    [
+      [5493, 15355],
+      [-12, 67],
+      [28, 34],
+      [0, 97],
+      [129, 57],
+      [180, -79],
+      [44, -3]
+    ],
+    [
+      [5862, 15528],
+      [76, -130],
+      [3, -79],
+      [-30, -22],
+      [-175, 17],
+      [-36, 22]
+    ],
+    [
+      [8171, 15569],
+      [25, 0]
+    ],
+    [
+      [8551, 15244],
+      [-51, -22],
+      [-46, -65],
+      [-68, -5],
+      [-15, 75],
+      [-193, -164],
+      [-33, -40],
+      [3, -45],
+      [-40, -17],
+      [-36, 26],
+      [3, 43],
+      [-61, 162],
+      [-67, -65],
+      [-59, -6],
+      [-41, 51],
+      [-58, 1],
+      [-35, 45]
+    ],
+    [
+      [7162, 19910],
+      [80, 33],
+      [5, 36],
+      [121, 15],
+      [106, -6],
+      [74, 37],
+      [24, 70],
+      [202, 56],
+      [98, -21],
+      [159, -74],
+      [190, -57],
+      [39, -4],
+      [133, 67],
+      [8, 20],
+      [108, 21],
+      [40, -29]
+    ],
+    [
+      [5163, 15113],
+      [-39, 97],
+      [3, 70],
+      [-78, 79],
+      [-41, 96],
+      [50, 58],
+      [37, -10],
+      [76, -79],
+      [44, -24],
+      [27, -58],
+      [5, -54],
+      [52, 11],
+      [2, -88],
+      [30, -93],
+      [-16, -70],
+      [13, -42],
+      [-44, -19],
+      [-31, 29],
+      [-13, 73],
+      [-77, 24]
+    ],
+    [
+      [5700, 15336],
+      [53, -117],
+      [119, -117],
+      [175, -10]
+    ],
+    [
+      [5950, 14650],
+      [-111, -76]
+    ],
+    [
+      [5839, 14574],
+      [-10, 61],
+      [-45, 53],
+      [-64, 44],
+      [-96, 44],
+      [-94, 118],
+      [-58, 34],
+      [2, 59],
+      [28, 20],
+      [41, 52],
+      [-5, 81],
+      [-42, 96],
+      [-3, 119]
+    ],
+    [
+      [5476, 15170],
+      [6, -101],
+      [-77, -9],
+      [30, 87],
+      [41, 23]
+    ],
+    [
+      [4817, 14427],
+      [-9, 54],
+      [19, 50],
+      [-8, 62],
+      [-73, 115],
+      [25, 111],
+      [24, 58],
+      [49, 22],
+      [18, 45],
+      [87, 42],
+      [82, -45],
+      [65, -65],
+      [34, -94],
+      [8, -108],
+      [-26, -58],
+      [61, -15],
+      [39, -52],
+      [-42, -25],
+      [-22, -46],
+      [69, -40],
+      [-21, -64],
+      [20, -49],
+      [-39, -64],
+      [-76, 3],
+      [-24, -19],
+      [-114, 11],
+      [-96, 68],
+      [-20, 66],
+      [-30, 37]
+    ],
+    [
+      [6624, 15718],
+      [65, 52],
+      [94, 0],
+      [10, -35]
+    ],
+    [
+      [7092, 15434],
+      [23, -61],
+      [96, 30],
+      [26, -34],
+      [-51, -31],
+      [40, -118],
+      [-23, -74]
+    ],
+    [
+      [7203, 15146],
+      [-70, -53],
+      [-149, -78],
+      [-23, 4],
+      [-125, 107],
+      [-123, 94],
+      [-28, 38]
+    ],
+    [
+      [9202, 24452],
+      [-42, -39],
+      [-2, -59],
+      [-61, 13],
+      [24, 66],
+      [81, 19]
+    ],
+    [
+      [8310, 24271],
+      [124, -50],
+      [27, -43],
+      [9, -79],
+      [-67, 55],
+      [-110, -33],
+      [-37, 53],
+      [-2, 43],
+      [-49, 38],
+      [105, 16]
+    ],
+    [
+      [9003, 24098],
+      [-27, -49],
+      [-118, 5],
+      [-110, -91],
+      [-13, 48],
+      [187, 143],
+      [56, -28],
+      [67, 62],
+      [105, 55],
+      [-13, -94],
+      [-73, 8],
+      [-61, -59]
+    ],
+    [
+      [8648, 23935],
+      [-4, -74],
+      [-21, -50],
+      [-83, 75],
+      [12, 38],
+      [59, 5],
+      [-17, 61],
+      [6, 70],
+      [80, -44],
+      [-32, -81]
+    ],
+    [
+      [8213, 23774],
+      [-40, 19],
+      [-57, 63],
+      [-3, 35],
+      [48, 58],
+      [54, -7],
+      [13, -40],
+      [128, 0],
+      [-35, -51],
+      [20, -63],
+      [-63, -22],
+      [-65, 8]
+    ],
+    [
+      [8389, 23881],
+      [32, -17],
+      [-11, -86],
+      [-31, 13],
+      [10, 90]
+    ],
+    [
+      [8952, 23698],
+      [12, -46],
+      [-56, -18],
+      [-81, 81],
+      [-18, -84],
+      [-63, 31],
+      [54, 68],
+      [45, 30],
+      [-65, 66],
+      [106, -24],
+      [-22, -36],
+      [63, -17],
+      [25, -51]
+    ],
+    [
+      [8155, 23439],
+      [50, -7],
+      [28, 34],
+      [130, -52],
+      [25, 66],
+      [37, -39],
+      [-18, -44],
+      [13, -56],
+      [146, 59],
+      [7, -95],
+      [147, 65],
+      [-6, -126],
+      [-102, -21],
+      [-78, -116],
+      [-20, 45],
+      [-55, 29],
+      [-35, -73],
+      [46, -70],
+      [-20, -54],
+      [-60, -82],
+      [-11, -57],
+      [42, -38],
+      [-21, -56],
+      [-36, -1],
+      [-58, 39],
+      [4, 85],
+      [-57, 69],
+      [21, 46],
+      [68, 29],
+      [-1, 29],
+      [56, 78],
+      [-13, 63],
+      [-59, 96],
+      [-51, 12],
+      [-114, -43],
+      [-41, 8],
+      [-32, -38],
+      [-82, 4],
+      [-47, 19],
+      [-22, 42],
+      [-4, 114],
+      [-87, -94],
+      [-40, 8],
+      [-54, 78],
+      [-8, 38],
+      [27, 166],
+      [2, 98],
+      [55, 102],
+      [104, 35],
+      [73, -10],
+      [149, -78],
+      [61, -18],
+      [-2, -40],
+      [73, -84],
+      [-90, -87],
+      [-54, -36],
+      [14, -41]
+    ],
+    [
+      [8579, 23665],
+      [4, -45],
+      [-53, -117],
+      [-96, 27],
+      [-53, -11],
+      [48, 102],
+      [71, -36],
+      [26, 59],
+      [53, 21]
+    ],
+    [
+      [7932, 22884],
+      [43, 41],
+      [108, 5],
+      [-4, -50],
+      [-149, -25],
+      [-75, 6],
+      [-116, 156],
+      [-26, 87],
+      [-67, 2],
+      [16, 84],
+      [39, 53],
+      [95, 16],
+      [21, -54],
+      [48, -8],
+      [106, -71],
+      [20, -60],
+      [-3, -128],
+      [-65, -13],
+      [9, -41]
+    ],
+    [
+      [8183, 23051],
+      [-48, -38],
+      [37, -51],
+      [-90, 2],
+      [-14, 31],
+      [41, 41],
+      [74, 15]
+    ],
+    [
+      [7069, 16200],
+      [-27, 67],
+      [-52, -12],
+      [-43, 52],
+      [-82, 43],
+      [-50, 48],
+      [-152, 24],
+      [-31, 39],
+      [-74, 17],
+      [-72, 74],
+      [-14, 69],
+      [7, 63],
+      [55, 29],
+      [0, 170],
+      [57, -12],
+      [78, 40],
+      [-39, 88],
+      [-34, 25],
+      [-46, -7],
+      [-86, -46],
+      [-75, -26],
+      [-56, 134],
+      [-43, 19],
+      [-57, -38],
+      [-136, -39],
+      [-57, 9],
+      [-13, -34],
+      [-104, -23],
+      [-58, -53]
+    ],
+    [
+      [8203, 16879],
+      [-36, -13],
+      [-76, -66],
+      [-64, -82],
+      [-128, -109]
+    ],
+    [
+      [5862, 15528],
+      [91, -20],
+      [92, 15]
+    ],
+    [
+      [6045, 15523],
+      [42, -10],
+      [197, -160]
+    ],
+    [
+      [7548, 14182],
+      [-51, 73],
+      [33, 139],
+      [40, 59],
+      [-3, 117],
+      [-59, 103],
+      [72, 31],
+      [14, 35],
+      [-16, 59],
+      [126, 152],
+      [-61, 27],
+      [1, 41],
+      [-34, 92]
+    ],
+    [
+      [7610, 15110],
+      [35, 71],
+      [58, 52]
+    ],
+    [
+      [9223, 15563],
+      [62, -35],
+      [100, -18],
+      [77, 11],
+      [44, -31],
+      [56, -2],
+      [4, -61],
+      [90, -61],
+      [9, -67],
+      [53, -100]
+    ],
+    [
+      [11467, 27760],
+      [-160, -7],
+      [-117, -194],
+      [53, -43],
+      [-59, -236],
+      [-163, -16],
+      [-37, 43],
+      [-24, 98],
+      [-4, 113],
+      [-16, 56],
+      [20, 77],
+      [73, 66],
+      [17, 174],
+      [79, 18],
+      [92, -16],
+      [56, -58],
+      [21, 41],
+      [-8, 53],
+      [29, 29],
+      [9, 65],
+      [-17, 51],
+      [58, 55],
+      [28, 63],
+      [163, -31],
+      [6, -129],
+      [-52, -25],
+      [45, -76],
+      [-76, -34],
+      [-38, -62],
+      [46, -54],
+      [-24, -21]
+    ],
+    [
+      [10495, 26437],
+      [-87, 82],
+      [-48, -2],
+      [-96, 86],
+      [-51, 28],
+      [20, 105],
+      [-2, 61],
+      [92, 16],
+      [55, -16],
+      [105, 43],
+      [68, 87],
+      [-4, 68],
+      [89, 53],
+      [-69, 40],
+      [2, 85],
+      [-85, 44],
+      [-44, 42],
+      [-105, -16],
+      [-34, 32],
+      [102, 75],
+      [7, 74],
+      [51, 28],
+      [50, -21],
+      [88, 76],
+      [13, 112],
+      [65, -33],
+      [55, 0],
+      [0, 43],
+      [64, -6],
+      [-19, -213],
+      [-39, -12],
+      [22, -92],
+      [92, -53],
+      [49, 43],
+      [83, -96],
+      [3, -81],
+      [64, -26],
+      [84, 74],
+      [33, -25],
+      [-113, -109],
+      [69, -34],
+      [5, -57],
+      [-65, -38],
+      [-9, -48],
+      [59, -18],
+      [-84, -90],
+      [47, -21],
+      [-46, -45],
+      [-13, -47],
+      [-42, 2],
+      [-19, -59],
+      [51, -38],
+      [12, -48],
+      [-23, -49],
+      [20, -86],
+      [-88, -81],
+      [1, -90],
+      [39, -61],
+      [-71, -32],
+      [10, -52],
+      [34, -38],
+      [-26, -51],
+      [-42, 22],
+      [-32, -131],
+      [-1, -62],
+      [-34, -102],
+      [-40, 75],
+      [-95, -22],
+      [16, 72],
+      [60, 128],
+      [-25, 34],
+      [3, 62],
+      [39, 18],
+      [-57, 115],
+      [6, 50],
+      [76, 124],
+      [9, 63],
+      [-58, 33],
+      [13, 54],
+      [-28, 48],
+      [-83, -10],
+      [5, -42],
+      [-70, -60],
+      [-83, 16]
+    ],
+    [
+      [11437, 27647],
+      [54, -14],
+      [19, -57],
+      [64, 20],
+      [6, -46],
+      [-51, -60],
+      [-39, 28],
+      [-84, -55],
+      [-36, 28],
+      [-59, 126],
+      [15, 28],
+      [71, -21],
+      [40, 23]
+    ],
+    [
+      [11369, 26990],
+      [-111, -129],
+      [-88, 28],
+      [-20, 85],
+      [114, -5],
+      [23, 30],
+      [82, -9]
+    ],
+    [
+      [10167, 26905],
+      [85, -6],
+      [15, -47],
+      [-58, -23],
+      [-39, 23],
+      [-3, 53]
+    ],
+    [
+      [11132, 26474],
+      [43, -64],
+      [55, -6],
+      [-18, -48],
+      [-47, 28],
+      [-30, -98],
+      [-73, 34],
+      [11, 80],
+      [-55, 58],
+      [22, 31],
+      [92, -15]
+    ],
+    [
+      [9656, 26417],
+      [39, -14],
+      [-10, -94],
+      [-91, 53],
+      [19, 47],
+      [43, 8]
+    ],
+    [
+      [10306, 24869],
+      [31, -58],
+      [-61, 5],
+      [30, 53]
+    ],
+    [
+      [5276, 13104],
+      [-26, 54],
+      [4, 96],
+      [80, 160],
+      [8, 82],
+      [91, 76],
+      [32, 68],
+      [73, 70],
+      [0, 67],
+      [32, 62],
+      [3, 89],
+      [-13, 34],
+      [104, 90],
+      [6, 106],
+      [37, 54],
+      [49, 33],
+      [83, 14],
+      [23, 83],
+      [33, 51],
+      [-5, 44],
+      [-52, 81],
+      [1, 56]
+    ],
+    [
+      [7203, 15146],
+      [67, 30],
+      [114, 22],
+      [68, -42],
+      [62, -5],
+      [96, -41]
+    ],
+    [
+      [6271, 15641],
+      [-65, 0],
+      [-34, 59],
+      [-39, 11],
+      [-18, 66],
+      [60, 33],
+      [-25, 33],
+      [-79, 22],
+      [-31, 25],
+      [-114, 14]
+    ],
+    [
+      [7206, 15868],
+      [4, -34]
+    ],
+    [
+      [6045, 15523],
+      [-108, 28],
+      [-1, 2]
+    ],
+    [
+      [7529, 15703],
+      [93, -8]
+    ],
+    [
+      [6471, 8439],
+      [-110, -92],
+      [-79, -42],
+      [-72, 34],
+      [-16, 45],
+      [-39, -11],
+      [-34, 64],
+      [-61, 13],
+      [8, 65],
+      [-78, 96],
+      [-4, 37],
+      [-38, 51],
+      [39, 38],
+      [-36, 91],
+      [34, 79],
+      [-25, 103],
+      [101, 13],
+      [31, 28],
+      [47, -10],
+      [38, 35],
+      [89, -13],
+      [126, -34],
+      [19, -41],
+      [-14, -48],
+      [22, -43],
+      [34, -2],
+      [53, -167],
+      [92, 26],
+      [35, 37],
+      [110, -38],
+      [-37, -35],
+      [-26, -73],
+      [-181, -137],
+      [-28, -69]
+    ],
+    [
+      [8097, 4860],
+      [26, -75],
+      [6, -159],
+      [-12, -8]
+    ],
+    [
+      [8117, 4618],
+      [-82, 64],
+      [-92, 33],
+      [-37, 82],
+      [-46, 60]
+    ],
+    [
+      [7860, 4857],
+      [21, 55],
+      [100, -16],
+      [74, 6]
+    ],
+    [
+      [8055, 4902],
+      [42, -42]
+    ],
+    [
+      [7585, 4127],
+      [-71, -43],
+      [8, -113],
+      [-12, -36],
+      [-77, -42]
+    ],
+    [
+      [7433, 3893],
+      [-29, 55],
+      [-94, 98],
+      [-85, -3],
+      [-39, 60],
+      [-26, 87]
+    ],
+    [
+      [7160, 4190],
+      [106, -23],
+      [75, 43],
+      [-17, 71],
+      [-46, 45],
+      [23, 45],
+      [20, 90],
+      [96, -14],
+      [58, 19]
+    ],
+    [
+      [7475, 4466],
+      [87, -64],
+      [42, -70],
+      [-19, -205]
+    ],
+    [
+      [7950, 4217],
+      [-43, 87],
+      [-66, 179]
+    ],
+    [
+      [7841, 4483],
+      [36, 27],
+      [3, 46],
+      [-32, 84],
+      [-55, 208]
+    ],
+    [
+      [7793, 4848],
+      [67, 9]
+    ],
+    [
+      [8117, 4618],
+      [65, -52],
+      [-8, -131],
+      [65, -62]
+    ],
+    [
+      [8239, 4373],
+      [-114, -48],
+      [38, -63],
+      [-28, -50]
+    ],
+    [
+      [8135, 4212],
+      [-80, 25],
+      [-105, -20]
+    ],
+    [
+      [8021, 3994],
+      [-31, 23],
+      [-89, 4],
+      [-45, 80]
+    ],
+    [
+      [7856, 4101],
+      [23, 41],
+      [71, 75]
+    ],
+    [
+      [8135, 4212],
+      [52, -44],
+      [-12, -62]
+    ],
+    [
+      [8175, 4106],
+      [-66, -30],
+      [-53, -101],
+      [-35, 19]
+    ],
+    [
+      [6908, 4777],
+      [-66, 11],
+      [-66, -58],
+      [-28, -108],
+      [-43, -73]
+    ],
+    [
+      [6705, 4549],
+      [-19, -31],
+      [-84, -13],
+      [-31, 10],
+      [-26, 45],
+      [-56, 18],
+      [-139, -31],
+      [-49, 49],
+      [-47, 82],
+      [8, 116],
+      [-56, -32],
+      [-65, -58],
+      [-157, 20],
+      [-29, -22],
+      [-89, 2]
+    ],
+    [
+      [5866, 4704],
+      [-2, 185],
+      [-34, 51],
+      [-90, -14],
+      [-63, 11],
+      [12, 37],
+      [51, 18],
+      [-23, 60],
+      [11, 38],
+      [58, 64],
+      [92, 5],
+      [49, 23],
+      [118, 75],
+      [34, 53],
+      [-43, 64],
+      [-26, 80],
+      [-25, 33]
+    ],
+    [
+      [5985, 5487],
+      [91, -1],
+      [129, -24],
+      [257, 10],
+      [48, 23],
+      [61, 75],
+      [62, 51],
+      [88, 42],
+      [35, -18],
+      [69, -5],
+      [81, 65],
+      [101, 5],
+      [153, -47],
+      [32, 40]
+    ],
+    [
+      [7192, 5703],
+      [51, -18],
+      [-6, -72],
+      [64, -29],
+      [35, -114],
+      [-44, -48],
+      [-33, -61],
+      [13, -105],
+      [-34, -41],
+      [-10, -75],
+      [8, -55],
+      [-15, -41],
+      [-46, -48],
+      [-21, -76],
+      [-49, -84]
+    ],
+    [
+      [7105, 4836],
+      [-29, 38],
+      [-70, 0],
+      [-16, -64],
+      [-27, -30],
+      [-55, -3]
+    ],
+    [
+      [6917, 6816],
+      [88, 7],
+      [42, -19],
+      [15, -41],
+      [-7, -74],
+      [31, -58],
+      [68, 13],
+      [32, 38],
+      [30, -6],
+      [-18, -82],
+      [-31, -22],
+      [-4, -54],
+      [60, -45],
+      [38, -97],
+      [35, -50],
+      [12, -61],
+      [-61, -12],
+      [-40, -41],
+      [44, -116],
+      [-50, -41],
+      [-12, -143],
+      [-14, -62],
+      [17, -147]
+    ],
+    [
+      [5985, 5487],
+      [-94, 33],
+      [-29, 34],
+      [-81, 12],
+      [2, 94]
+    ],
+    [
+      [5783, 5660],
+      [11, 64],
+      [72, 23],
+      [179, -7],
+      [73, 78],
+      [53, 27],
+      [81, 101],
+      [75, -8],
+      [98, 91],
+      [75, 41],
+      [105, 159],
+      [61, 174],
+      [23, 134],
+      [43, 92],
+      [-11, 119],
+      [60, -2],
+      [75, 49],
+      [52, 19]
+    ],
+    [
+      [6908, 6814],
+      [9, 2]
+    ],
+    [
+      [7529, 8785],
+      [-9, -173],
+      [61, -96],
+      [4, -110],
+      [-34, -66],
+      [-130, -146],
+      [101, -20],
+      [59, -60],
+      [14, -60],
+      [10, -147]
+    ],
+    [
+      [7605, 7907],
+      [-48, -30],
+      [-36, 12],
+      [-72, -11],
+      [-39, 43],
+      [-11, 65],
+      [-101, -47],
+      [-74, -64],
+      [-71, -37],
+      [-30, -33],
+      [-50, 20],
+      [-57, 50],
+      [-51, 116],
+      [-74, -33],
+      [-52, 0],
+      [17, 89],
+      [-11, 77],
+      [-46, 73],
+      [4, 56],
+      [80, 120],
+      [34, 113],
+      [-109, 124]
+    ],
+    [
+      [6808, 8610],
+      [94, 49],
+      [83, 56],
+      [64, 17],
+      [-19, 70],
+      [106, 14],
+      [59, -63],
+      [49, -28],
+      [142, -9],
+      [143, 69]
+    ],
+    [
+      [8105, 8139],
+      [-14, -19],
+      [-13, -159],
+      [68, -86],
+      [-156, -67],
+      [-163, -13],
+      [-92, -113],
+      [-26, -56]
+    ],
+    [
+      [7709, 7626],
+      [-67, -28],
+      [-50, 14]
+    ],
+    [
+      [7592, 7612],
+      [3, 82],
+      [23, 24],
+      [-36, 78],
+      [63, 65],
+      [12, 39],
+      [-52, 7]
+    ],
+    [
+      [7529, 8785],
+      [158, 71],
+      [66, 16]
+    ],
+    [
+      [7753, 8872],
+      [-21, -47],
+      [-10, -90],
+      [61, -63],
+      [-10, -70],
+      [10, -70],
+      [63, -109],
+      [68, -63],
+      [90, -10],
+      [68, -153],
+      [33, -58]
+    ],
+    [
+      [8350, 8341],
+      [-52, -15],
+      [-165, -149],
+      [-28, -38]
+    ],
+    [
+      [7753, 8872],
+      [71, 10],
+      [14, -51],
+      [153, -106],
+      [117, -117],
+      [42, 22]
+    ],
+    [
+      [5905, 8754],
+      [86, -147],
+      [-51, -23],
+      [-32, 13],
+      [-41, 103],
+      [-63, -5],
+      [-24, 61],
+      [67, 45],
+      [58, -47]
+    ],
+    [
+      [7592, 7612],
+      [-31, -70],
+      [-53, -4],
+      [-75, -36],
+      [-29, -90],
+      [25, -54],
+      [13, -85],
+      [-44, -90],
+      [-98, -17],
+      [-45, -33],
+      [-42, 4],
+      [-54, -21],
+      [-50, 13],
+      [-54, -87],
+      [9, -37],
+      [-15, -71],
+      [-56, -59],
+      [-53, -21],
+      [-23, -38]
+    ],
+    [
+      [6908, 6814],
+      [-39, 21],
+      [-125, -46],
+      [-42, 6],
+      [-51, 121],
+      [-34, 50],
+      [17, 74],
+      [32, 75],
+      [59, 48],
+      [-6, 88],
+      [-30, 66],
+      [-94, 139],
+      [-13, 37],
+      [36, 28],
+      [16, 61],
+      [-37, 83],
+      [14, 79],
+      [-50, -17],
+      [-78, 32],
+      [-148, -31],
+      [-16, -39],
+      [-91, 7],
+      [-26, -34],
+      [-79, -35],
+      [-10, -58],
+      [-44, -35],
+      [16, -106],
+      [-35, 5],
+      [-107, 76],
+      [-34, 5],
+      [-47, -61],
+      [-66, -12],
+      [-49, 19],
+      [-17, -55],
+      [-54, 31],
+      [45, 96],
+      [16, 57],
+      [77, 58],
+      [35, 79],
+      [109, 86],
+      [69, -6],
+      [83, 75],
+      [54, 85],
+      [44, 0],
+      [75, 84],
+      [24, 53],
+      [6, 82],
+      [-17, 78],
+      [53, -25],
+      [2, 64],
+      [56, 42],
+      [22, 42],
+      [67, 53],
+      [4, 50],
+      [130, 92],
+      [57, -21],
+      [74, 19],
+      [47, 31]
+    ],
+    [
+      [7841, 4483],
+      [-114, 139],
+      [-88, 135],
+      [38, 28],
+      [-33, 132]
+    ],
+    [
+      [7644, 4917],
+      [44, 28],
+      [29, -41],
+      [42, -16],
+      [34, -40]
+    ],
+    [
+      [8782, 4394],
+      [-72, -85],
+      [-46, -3],
+      [-79, -42]
+    ],
+    [
+      [8585, 4264],
+      [-82, 54],
+      [8, 28],
+      [72, 70],
+      [-2, 56],
+      [-51, 14],
+      [-91, -61],
+      [-96, 4]
+    ],
+    [
+      [8343, 4429],
+      [-22, 104],
+      [0, 107],
+      [-21, 33],
+      [-46, 14],
+      [-40, 145],
+      [-48, 28],
+      [-69, 0]
+    ],
+    [
+      [8055, 4902],
+      [100, 47],
+      [36, 99],
+      [44, 48],
+      [-43, 134],
+      [18, 116]
+    ],
+    [
+      [6973, 4404],
+      [88, 180],
+      [-153, 193]
+    ],
+    [
+      [7105, 4836],
+      [54, -71],
+      [45, 8],
+      [125, 48],
+      [84, -44],
+      [11, -29]
+    ],
+    [
+      [7424, 4748],
+      [18, -49],
+      [3, -154],
+      [30, -79]
+    ],
+    [
+      [7160, 4190],
+      [-63, 128],
+      [-51, 54],
+      [-6, 36],
+      [-67, -4]
+    ],
+    [
+      [8585, 4264],
+      [-67, -46],
+      [-96, -34],
+      [-69, 7],
+      [-52, 23],
+      [-13, -28],
+      [-113, -80]
+    ],
+    [
+      [8239, 4373],
+      [104, 56]
+    ],
+    [
+      [5866, 4704],
+      [-81, -46],
+      [16, -50],
+      [-48, -108],
+      [-66, -8],
+      [-41, -38],
+      [-88, 23],
+      [-75, -56],
+      [-47, -68],
+      [-90, 31],
+      [-30, -4],
+      [-68, 29],
+      [10, 58],
+      [-22, 53],
+      [-50, 10],
+      [-37, 41],
+      [19, 25],
+      [49, -6],
+      [73, 13],
+      [80, -25],
+      [22, 23],
+      [-108, 42],
+      [-79, -10],
+      [-13, 26],
+      [-92, -9],
+      [0, -67],
+      [-45, 7],
+      [1, 48],
+      [-61, 36],
+      [101, 129],
+      [61, -10],
+      [24, 39],
+      [-2, 74],
+      [-33, 112],
+      [-135, 43],
+      [-71, -4],
+      [-57, -19],
+      [-16, 45],
+      [29, 33],
+      [-17, 36],
+      [77, 23],
+      [63, 41],
+      [27, 46],
+      [54, -5],
+      [20, 36],
+      [53, -1],
+      [36, 21],
+      [14, 86],
+      [-26, 29],
+      [31, 40],
+      [124, -17],
+      [11, -58],
+      [138, 51],
+      [75, 8],
+      [-18, 42],
+      [40, 41],
+      [45, 7],
+      [41, 48],
+      [47, 104],
+      [52, -34]
+    ],
+    [
+      [7644, 4917],
+      [-53, -1],
+      [-11, -67],
+      [-101, -43],
+      [-55, -58]
+    ],
+    [
+      [7709, 7626],
+      [28, -45],
+      [107, -59],
+      [85, -123],
+      [75, 36],
+      [74, 8]
+    ],
+    [
+      [7856, 4101],
+      [-119, 17],
+      [-30, -28],
+      [-74, 51],
+      [-48, -14]
+    ],
+    [
+      [6973, 4404],
+      [-50, -23],
+      [-63, 8],
+      [-48, -51],
+      [12, -75],
+      [-69, 12],
+      [-55, -15],
+      [-60, 24],
+      [-37, -5],
+      [-30, -37],
+      [-110, -36],
+      [-68, 51],
+      [-38, 124],
+      [35, 12],
+      [44, 46],
+      [6, 33],
+      [71, -46],
+      [121, 46],
+      [57, 38],
+      [14, 39]
+    ],
+    [
+      [8021, 3994],
+      [23, -48],
+      [-8, -89],
+      [-30, -16],
+      [-56, 7],
+      [-93, -43],
+      [-29, 18],
+      [-44, -30],
+      [-95, 0],
+      [-172, 48],
+      [-58, 5],
+      [-26, 47]
+    ],
+    [
+      [10298, 13292],
+      [-1, -60],
+      [68, -7],
+      [7, -33],
+      [-19, -42],
+      [62, -11],
+      [-7, -34],
+      [50, -23]
+    ],
+    [
+      [10458, 13082],
+      [-9, -47]
+    ],
+    [
+      [10449, 13035],
+      [-27, -15],
+      [-60, 29],
+      [-68, -29],
+      [-89, 30],
+      [-28, -9],
+      [-41, 37],
+      [-28, 7]
+    ],
+    [
+      [10222, 13311],
+      [76, -19]
+    ],
+    [
+      [10298, 13292],
+      [76, -11]
+    ],
+    [
+      [10605, 13144],
+      [-35, -45],
+      [-114, -15]
+    ],
+    [
+      [10456, 13084],
+      [2, -2]
+    ],
+    [
+      [10697, 12966],
+      [-3, 11]
+    ],
+    [
+      [10694, 12977],
+      [-74, -33],
+      [-135, 5]
+    ],
+    [
+      [10485, 12949],
+      [-6, 66],
+      [-30, 20]
+    ],
+    [
+      [10456, 13084],
+      [120, 1],
+      [29, 59]
+    ],
+    [
+      [10424, 12759],
+      [-10, 62]
+    ],
+    [
+      [10414, 12821],
+      [3, 70],
+      [-17, 40],
+      [85, 18]
+    ],
+    [
+      [10694, 12977],
+      [0, 0],
+      [-9, -15],
+      [12, 4]
+    ],
+    [
+      [10414, 12821],
+      [-1, -6]
+    ],
+    [
+      [10164, 10296],
+      [-5, -18],
+      [22, -9],
+      [-13, -17],
+      [-45, -3],
+      [-46, 32],
+      [-19, -29],
+      [59, -57],
+      [66, 7],
+      [30, -23],
+      [-25, -192],
+      [44, 9],
+      [12, -17],
+      [50, -1],
+      [-14, -29],
+      [-47, -30]
+    ],
+    [
+      [10233, 9919],
+      [-48, 15],
+      [-29, -40],
+      [-20, 0],
+      [2, -32],
+      [-22, 0],
+      [-14, -21]
+    ],
+    [
+      [10102, 9841],
+      [-58, 98],
+      [-27, -2],
+      [-41, -39],
+      [-25, 17],
+      [-1, 61],
+      [-81, 23],
+      [-78, -3],
+      [-8, 25],
+      [-90, 73]
+    ],
+    [
+      [10102, 9841],
+      [25, -1],
+      [26, -33],
+      [7, -85],
+      [-24, 37],
+      [-116, -63],
+      [-41, 6],
+      [15, -16],
+      [-75, -54],
+      [-59, 8],
+      [-57, -58],
+      [-54, -24]
+    ],
+    [
+      [9749, 9558],
+      [32, -5]
+    ],
+    [
+      [10233, 9919],
+      [34, -29],
+      [31, 6],
+      [21, -75],
+      [46, 0],
+      [31, -32]
+    ],
+    [
+      [10396, 9789],
+      [-40, -17],
+      [-6, -19],
+      [16, -8],
+      [-35, -30],
+      [36, -43],
+      [-50, -19],
+      [16, -75],
+      [41, -44],
+      [3, -25]
+    ],
+    [
+      [9738, 9563],
+      [11, -5]
+    ],
+    [
+      [10790, 9901],
+      [-141, -78],
+      [-64, 23],
+      [-66, -1],
+      [-11, -15],
+      [-22, 20],
+      [-72, -80],
+      [-18, 19]
+    ],
+    [
+      [6243, 11427],
+      [6, -56],
+      [57, -33],
+      [55, -19],
+      [-73, -93],
+      [-43, -93],
+      [-32, -35],
+      [4, -27],
+      [20, -21],
+      [-71, -72],
+      [-42, -4],
+      [-19, -17],
+      [-2, -22],
+      [11, -14],
+      [8, -6],
+      [-57, -46],
+      [-38, -3],
+      [-27, -57],
+      [-42, -3],
+      [-62, -56],
+      [6, -21],
+      [17, 12],
+      [-31, -56],
+      [-9, 12],
+      [11, 22],
+      [-12, 24],
+      [-26, -1],
+      [-14, -10],
+      [-7, -24],
+      [-34, 11],
+      [-10, 39],
+      [-55, 4],
+      [-40, -58],
+      [-35, -15],
+      [-59, -30],
+      [-19, 29],
+      [53, 23],
+      [50, 68],
+      [-28, 2],
+      [26, 54],
+      [22, -13],
+      [17, 65],
+      [7, 61],
+      [-17, 23],
+      [6, 27],
+      [26, 22],
+      [5, 68],
+      [27, 40],
+      [17, -2],
+      [67, 67],
+      [61, 74],
+      [65, 143],
+      [17, 60],
+      [20, 37],
+      [77, 41],
+      [173, 75],
+      [4, -66],
+      [-19, -73],
+      [-12, -57]
+    ],
+    [
+      [8688, 7882],
+      [42, 74],
+      [45, 112],
+      [-49, 40],
+      [-24, -26],
+      [-51, 65],
+      [31, 58],
+      [30, 4],
+      [8, 65],
+      [52, -7],
+      [17, 38],
+      [27, -6],
+      [24, 58],
+      [49, -16],
+      [-7, 37],
+      [19, -9],
+      [17, 21],
+      [43, -36],
+      [64, 37],
+      [46, -29],
+      [37, 18],
+      [0, 29],
+      [-20, 15],
+      [1, 66],
+      [38, -12],
+      [36, -61],
+      [21, 15],
+      [20, -20],
+      [14, 28],
+      [-5, 32],
+      [-56, 26],
+      [-6, 35],
+      [20, 7],
+      [7, 32],
+      [48, -28],
+      [22, 66],
+      [-23, -1],
+      [-44, 47],
+      [-30, 4],
+      [-19, -19],
+      [-38, 61],
+      [-66, 14],
+      [-22, 81],
+      [14, 28],
+      [83, 59]
+    ],
+    [
+      [8140, 8705],
+      [-7, 6],
+      [0, 31]
+    ],
+    [
+      [8133, 8742],
+      [44, 42],
+      [71, -48],
+      [49, 24],
+      [36, -15],
+      [43, 23],
+      [11, -11],
+      [4, 6]
+    ],
+    [
+      [8391, 8763],
+      [1, 0],
+      [39, -23],
+      [38, -23],
+      [45, 2],
+      [49, 35],
+      [34, -21],
+      [54, 46],
+      [1, 1]
+    ],
+    [
+      [8652, 8780],
+      [19, -21],
+      [1, 1]
+    ],
+    [
+      [8672, 8760],
+      [1, -1],
+      [-1, 1]
+    ],
+    [
+      [8672, 8760],
+      [23, 15],
+      [33, -18],
+      [23, 24],
+      [65, -26],
+      [-6, 13],
+      [31, -2],
+      [7, 28],
+      [16, -21],
+      [20, 26],
+      [21, -17]
+    ],
+    [
+      [8672, 8760],
+      [-11, 19],
+      [-25, 42],
+      [15, 33],
+      [19, 4],
+      [3, 7],
+      [-31, 4],
+      [-24, -27],
+      [-15, -40],
+      [-54, 26],
+      [-8, -7]
+    ],
+    [
+      [8541, 8821],
+      [-7, 17],
+      [20, 6],
+      [0, 21]
+    ],
+    [
+      [8554, 8865],
+      [46, 22],
+      [16, 64],
+      [28, -1],
+      [19, 55]
+    ],
+    [
+      [8663, 9005],
+      [44, -8],
+      [3, -22],
+      [33, -13],
+      [15, -17]
+    ],
+    [
+      [8652, 8780],
+      [0, -1],
+      [20, -19]
+    ],
+    [
+      [8554, 8865],
+      [-32, -1],
+      [-19, 41],
+      [-4, 40],
+      [50, 5],
+      [-22, 49],
+      [-28, -13],
+      [-54, 41],
+      [39, 20],
+      [-3, 80],
+      [-48, 51],
+      [-20, -11],
+      [-12, 26]
+    ],
+    [
+      [8401, 9193],
+      [51, 74],
+      [36, 37]
+    ],
+    [
+      [8574, 9241],
+      [-29, -22],
+      [9, -47],
+      [21, 1],
+      [14, -62],
+      [-15, -12],
+      [43, -31],
+      [-16, -66],
+      [62, 3]
+    ],
+    [
+      [8541, 8821],
+      [-13, -10],
+      [-62, 19],
+      [-36, 29],
+      [-117, 95],
+      [-32, 82],
+      [-7, 61]
+    ],
+    [
+      [8274, 9097],
+      [49, 14],
+      [2, 50],
+      [26, 27],
+      [50, 5]
+    ],
+    [
+      [8274, 9097],
+      [-1, 1],
+      [-47, 69]
+    ],
+    [
+      [8133, 8742],
+      [0, 0],
+      [-8, -8],
+      [-11, 38],
+      [-8, 28],
+      [-95, 108],
+      [-21, 59],
+      [40, 36],
+      [197, 107],
+      [35, -83],
+      [21, -93],
+      [100, -158],
+      [8, -13]
+    ],
+    [
+      [9788, 6467],
+      [-50, 38]
+    ],
+    [
+      [9738, 6505],
+      [5, 76]
+    ],
+    [
+      [9743, 6581],
+      [53, 13],
+      [20, 38],
+      [20, 4],
+      [18, 39],
+      [-36, 16],
+      [1, 61],
+      [48, 7],
+      [-5, 38],
+      [22, 4]
+    ],
+    [
+      [9884, 6801],
+      [58, 57],
+      [9, 40]
+    ],
+    [
+      [9951, 6898],
+      [-4, 4]
+    ],
+    [
+      [10157, 6709],
+      [-30, 3],
+      [-68, -22],
+      [65, -13],
+      [-6, -122],
+      [-29, -5],
+      [-31, 21],
+      [-51, -105],
+      [-14, -19],
+      [-33, 2],
+      [-3, -16],
+      [34, -13],
+      [2, -41]
+    ],
+    [
+      [10361, 6532],
+      [207, -13]
+    ],
+    [
+      [10409, 6349],
+      [-8, 32],
+      [-49, 12],
+      [-2, 69],
+      [-18, 31],
+      [9, 28],
+      [20, 3],
+      [0, 8]
+    ],
+    [
+      [9654, 6807],
+      [-9, -66],
+      [33, -31],
+      [-10, -64],
+      [-48, -49],
+      [56, -16],
+      [53, 48],
+      [14, -48]
+    ],
+    [
+      [9738, 6505],
+      [-20, 11]
+    ],
+    [
+      [9577, 6793],
+      [7, 33],
+      [19, -34],
+      [42, 34],
+      [9, -19]
+    ],
+    [
+      [9654, 6807],
+      [34, 8]
+    ],
+    [
+      [9688, 6815],
+      [59, 42],
+      [52, -35],
+      [17, 20],
+      [19, -17],
+      [26, 9],
+      [23, -33]
+    ],
+    [
+      [10325, 6535],
+      [36, -3]
+    ],
+    [
+      [9688, 6815],
+      [-17, 14],
+      [18, 36],
+      [-41, 36],
+      [34, 38],
+      [-17, 18]
+    ],
+    [
+      [9976, 6874],
+      [-25, 24]
+    ]
+  ],
+  "transform": {
+    "scale": [0.0006771910104204371, 0.0003878181286485979],
+    "translate": [-8.611390113830566, 49.909862518310604]
+  },
+  "objects": {
+    "uk": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BDG",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 1,
+            "NAME_2": "Barking and Dagenham",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[5, 6, 7, 8, 9]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BAS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 2,
+            "NAME_2": "Bath and North East Somerset",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[10, 11, 12, 13, 14, 15, 16]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BDF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 3,
+            "NAME_2": "Bedfordshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[17, 18, 19, 20, 21, 22]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WBK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 4,
+            "NAME_2": "Berkshire",
+            "TYPE_2": "County",
+            "ENGTYPE_2": "County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[23, -2, 24, 25, 26, 27]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BEX",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 5,
+            "NAME_2": "Bexley",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[28, 29]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BBD",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 6,
+            "NAME_2": "Blackburn with Darwen",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Blackburn, Blackburn and Darwen"
+          }
+        },
+        {
+          "arcs": [[30, 31, 32]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BMH",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 7,
+            "NAME_2": "Bournemouth",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[33, 34, 35, 36, 37, 38]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BEN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 8,
+            "NAME_2": "Brent",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[39, 40, 41]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BNH",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 9,
+            "NAME_2": "Brighton and Hove",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[42, 43, 44, -7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BST",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 10,
+            "NAME_2": "Bristol",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[45, 46, 47, 48, 49, -28, 50, 51]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BRY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 11,
+            "NAME_2": "Bromley",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[52, 53, -21, 54, 55, 56, -13, 57]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BKM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 12,
+            "NAME_2": "Buckinghamshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[58, 59, 60, -16, 61, 62, 63, 64]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CAM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 13,
+            "NAME_2": "Cambridgeshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[65, 66, 67, -37, 68, 69]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CMD",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 14,
+            "NAME_2": "Camden",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CHS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 15,
+            "NAME_2": "Cheshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[85, 86]], [[87]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CON",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 16,
+            "NAME_2": "Cornwall",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Cornouailles|Cornovaglia|Cornualha|Cornualles|Cornwall and Isles of Scilly"
+          }
+        },
+        {
+          "arcs": [[88, 89, 90, -46, 91]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CRY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 17,
+            "NAME_2": "Croydon",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[92, 93, 94, 95, 96, 97, 98]], [[99]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CMA",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 18,
+            "NAME_2": "Cumbria",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[100, 101, 102]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DAL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 19,
+            "NAME_2": "Darlington",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[103, 104, 105, -85, 106, 107, 108], [109]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DBY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 20,
+            "NAME_2": "Derbyshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-110]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DER",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 21,
+            "NAME_2": "Derby",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[110, 111, -86, 112, 113, 114, 115, 116, 117]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DEV",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 22,
+            "NAME_2": "Devon",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-115, 118, 119, 120, 121, -32, 122, 123]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DOR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 23,
+            "NAME_2": "Dorset",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[124, -96, 125, 126, 127, 128, 129, 130, 131, -102]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DUR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 24,
+            "NAME_2": "Durham",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": "County Durham"
+          }
+        },
+        {
+          "arcs": [[132, 133, -34, 134, 135]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-EAL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 25,
+            "NAME_2": "Ealing",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[136, 137, 138, 139, 140, 141, 142, 143]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ERY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 26,
+            "NAME_2": "East Riding of Yorkshire",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": "East Riding, East Yorkshire"
+          }
+        },
+        {
+          "arcs": [[144, 145, 146, 147, -42]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ESX",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 27,
+            "NAME_2": "East Sussex",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[148, -69, -36, 149, 150, 151, 152]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ENF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 28,
+            "NAME_2": "Enfield",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[153, 154, 155, 156, -152, 157, -60, 158, 159, 160, 161]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ESS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 29,
+            "NAME_2": "Essex",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[162, 163, 164, 165, 166, 167, 168, 169, 170]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-GLS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 30,
+            "NAME_2": "Gloucestershire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[171, 172, 173, -3, -24, -50]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-GRE",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 31,
+            "NAME_2": "Greenwich",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[174, 175, 176, 177, 178]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HCK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 32,
+            "NAME_2": "Hackney",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[179, -78]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HAL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 33,
+            "NAME_2": "Halton",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[180, 181, -135, -39, 182, 183]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HMF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 34,
+            "NAME_2": "Hammersmith and Fulham",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[184, 185, -121, 186, -23, 187, 188, 189, 190, 191]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HAM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 35,
+            "NAME_2": "Hampshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Southampton"
+          }
+        },
+        {
+          "arcs": [[192, -70, -149, 193, -177]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HRY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 36,
+            "NAME_2": "Haringey",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[194, 195, -150, -35, -134]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HRW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 37,
+            "NAME_2": "Harrow",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[196, -131, 197, 198]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HPL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 38,
+            "NAME_2": "Hartlepool",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[199, -25, -1, 200, -155]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HAV",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 39,
+            "NAME_2": "Havering",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[201, 202, 203, 204, -165]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HRT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 40,
+            "NAME_2": "Herefordshire",
+            "TYPE_2": "Unitary Authority (county)",
+            "ENGTYPE_2": "Unitary Authority (county)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[205, -58, -12, 206, -17, -61, -158, -151, -196]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HEF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 41,
+            "NAME_2": "Hertfordshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-206, -195, -133, 207, 208, -53]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HIL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 42,
+            "NAME_2": "Hillingdon",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[209, 210, -208, -136, -182]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HNS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 43,
+            "NAME_2": "Hounslow",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[211]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-IOW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 44,
+            "NAME_2": "Isle of Wight",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-193, -176, 212, -66]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ISL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 45,
+            "NAME_2": "Islington",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[213, 214, -183]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-KEC",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 46,
+            "NAME_2": "Kensington and Chelsea",
+            "TYPE_2": "London Borough (royal)",
+            "ENGTYPE_2": "London Borough (royal)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[-27, 215, 216, 217, 218, -147, 219, -51]], [[220]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-KEN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 47,
+            "NAME_2": "Kent",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[221, -137]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-KHL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 48,
+            "NAME_2": "Kingston upon Hull",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Hull"
+          }
+        },
+        {
+          "arcs": [[222, 223, 224, 225]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-KTT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 49,
+            "NAME_2": "Kingston upon Thames",
+            "TYPE_2": "London Borough (royal)",
+            "ENGTYPE_2": "London Borough (royal)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-91, 226, 227, 228, 229, -47]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LBH",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 50,
+            "NAME_2": "Lambeth",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[230, 231, 232, 233, 234, -98, 235, 236, 237, 238, -30]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LAN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 51,
+            "NAME_2": "Lancashire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[239, 240, 241, 242, -105, 243, 244], [245]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LEC",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 52,
+            "NAME_2": "Leicestershire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-246]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LCE",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 53,
+            "NAME_2": "Leicester",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[246, -172, -49]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LEW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 54,
+            "NAME_2": "Lewisham",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[247, -64, 248, 249, -245, 250, 251, 252, 253]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LIN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 55,
+            "NAME_2": "Lincolnshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[254, 255, 256, -67, -213]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LND",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 56,
+            "NAME_2": "London",
+            "TYPE_2": "London Borough (city)",
+            "ENGTYPE_2": "London Borough (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-11, -207]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LUT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 57,
+            "NAME_2": "Luton",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[257, 258, -231, -29, -239, 259, 260, 261, -107, -84]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MAN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 58,
+            "NAME_2": "Manchester",
+            "TYPE_2": "Metropolitan Borough (city)",
+            "ENGTYPE_2": "Metropolitan Borough (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-218, 262]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MDW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 59,
+            "NAME_2": "Medway",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Medway Towns"
+          }
+        },
+        {
+          "arcs": [[263, -80, 264, 265, -234, -233, -232, -259]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MER",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 60,
+            "NAME_2": "Merseyside",
+            "TYPE_2": "Metropolitan County",
+            "ENGTYPE_2": "Metropolitan County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[266, -227, -90, 267, -226]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MRT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 61,
+            "NAME_2": "Merton",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[268, 269, 270]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MDB",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 62,
+            "NAME_2": "Middlesbrough",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[271, -14, -57]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MIK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 63,
+            "NAME_2": "Milton Keynes",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-174, 272, -179, 273, 274, -4]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NWM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 64,
+            "NAME_2": "Newham",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[275, -65, -248, 276]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NFK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 65,
+            "NAME_2": "Norfolk",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-253, 277, 278]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NEL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 66,
+            "NAME_2": "North East Lincolnshire",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-252, 279, 280, -139, 281, -278]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NLN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 67,
+            "NAME_2": "North Lincolnshire",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[282, -43, -6, 283]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NSM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 68,
+            "NAME_2": "North Somerset",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": "North West Somerset"
+          }
+        },
+        {
+          "arcs": [
+            [284, -141, 285, 286, 287, 288, -236, -97, -125, -101, 289, -271, 290, 291, -143]
+          ],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NYK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 69,
+            "NAME_2": "North Yorkshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-56, 292, 293, -241, 294, 295, -62, -15, -272]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NTH",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 70,
+            "NAME_2": "Northamptonshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[296, 297, 298, 299, -126, -95, 300, 301]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NBL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 71,
+            "NAME_2": "Northumberland",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[302, -280, -251, -244, -104], [303]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NTT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 72,
+            "NAME_2": "Nottinghamshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-304]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NGM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 73,
+            "NAME_2": "Nottingham",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-20, 304, -168, 305, -293, -55]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-OXF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 74,
+            "NAME_2": "Oxfordshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-296, -249, -63]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-PTE",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 75,
+            "NAME_2": "Peterborough",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[306, -111]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-PLY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 76,
+            "NAME_2": "Plymouth",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-123, -31, 307]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-POL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 77,
+            "NAME_2": "Poole",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[-191, 308]], [[309]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-POR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 78,
+            "NAME_2": "Portsmouth",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-275, 310, -156, -201, -5]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-RDB",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 79,
+            "NAME_2": "Redbridge",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-291, -270, 311, -199, 312]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-RCC",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 80,
+            "NAME_2": "Redcar and Cleveland",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[313, -210, -181, 314, -225]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-RIC",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 81,
+            "NAME_2": "Richmond upon Thames",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-250, -295, -240]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-RUT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 82,
+            "NAME_2": "Rutland",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[315, 316, -74, 317, 318, 319, 320, -204]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SHR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 83,
+            "NAME_2": "Shropshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Salop"
+          }
+        },
+        {
+          "arcs": [[-284, -10, 321, -119, -114, 322]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SOM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 84,
+            "NAME_2": "Somerset",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[323, -171, 324, -8, -45]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SGC",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 85,
+            "NAME_2": "South Gloucestershire",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-303, -109, 325, 326, -286, -140, -281]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 86,
+            "NAME_2": "South Yorkshire",
+            "TYPE_2": "Metropolitan County",
+            "ENGTYPE_2": "Metropolitan County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[327, -185]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-STH",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 87,
+            "NAME_2": "Southampton",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[328]], [[329, -161]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SOS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 88,
+            "NAME_2": "Southend-on-Sea",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Southend"
+          }
+        },
+        {
+          "arcs": [[-48, -230, 330, -256, 331, -247]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SWK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 89,
+            "NAME_2": "Southwark",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[332, 333, 334, 335, 336, 337, 338, -320, 339, -318, -73, 340, -71, -106, -243]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-STS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 90,
+            "NAME_2": "Staffordshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-290, -103, -132, -197, -312, -269]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-STT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 91,
+            "NAME_2": "Stockton-on-Tees",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Stockton"
+          }
+        },
+        {
+          "arcs": [[-72, -341]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-STE",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 92,
+            "NAME_2": "Stoke-on-Trent",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-159, -59, -276, 341]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SFK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 93,
+            "NAME_2": "Suffolk",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-146, 342, -188, -22, -54, -209, -211, -314, -224, 343, -92, -52, -220]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SRY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 94,
+            "NAME_2": "Surrey",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-344, -223, -268, -89]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-STN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 95,
+            "NAME_2": "Sutton",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[344, -169, -305, -19]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SWD",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 96,
+            "NAME_2": "Swindon",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Thamesdown"
+          }
+        },
+        {
+          "arcs": [[-340, -319]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-TFW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 97,
+            "NAME_2": "Telford and Wrekin",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": "The Wrekin, Wrekin"
+          }
+        },
+        {
+          "arcs": [[345, -216, -26, -200, -154]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-THR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 98,
+            "NAME_2": "Thurrock",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-117, 346]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-TOB",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 99,
+            "NAME_2": "Torbay",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-255, -175, -273, -173, -332]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-TWH",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 100,
+            "NAME_2": "Tower Hamlets",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-129, -128, -127, -300, -299, -298, -297, 347, 348, 349]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-TAW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 101,
+            "NAME_2": "Tyne and Wear",
+            "TYPE_2": "Metropolitan County",
+            "ENGTYPE_2": "Metropolitan County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-274, -178, -194, -153, -157, -311]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WFT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 102,
+            "NAME_2": "Waltham Forest",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-184, -215, 350, -228, -267, -315]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WND",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 103,
+            "NAME_2": "Wandsworth",
+            "TYPE_2": "London Borough",
+            "ENGTYPE_2": "London Borough",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-264, -258, -83, -82, -81]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WRT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 104,
+            "NAME_2": "Warrington",
+            "TYPE_2": "Unitary Authority",
+            "ENGTYPE_2": "Unitary Authority",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[351, 352, 353, 354, 355, 356, -333, -242, -294, -306, -167]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WAR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 105,
+            "NAME_2": "Warwickshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[357, 358, 359, -338, -337, -336, -335, -334, -357, -356, -355, -354, -353]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 106,
+            "NAME_2": "West Midlands",
+            "TYPE_2": "Metropolitan County",
+            "ENGTYPE_2": "Metropolitan County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-189, -343, -145, -41, 360]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WSX",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 107,
+            "NAME_2": "West Sussex",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-108, -262, -261, -260, -238, -237, -289, -288, -287, -327, -326]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 108,
+            "NAME_2": "West Yorkshire",
+            "TYPE_2": "Metropolitan County",
+            "ENGTYPE_2": "Metropolitan County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-38, -68, -257, -331, -229, -351, -214]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WSM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 109,
+            "NAME_2": "Westminster",
+            "TYPE_2": "London Borough (city)",
+            "ENGTYPE_2": "London Borough (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-9, -325, -170, -345, -18, -187, -120, -322]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WIL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 110,
+            "NAME_2": "Wiltshire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-166, -205, -321, -339, -360, -359, -358, -352]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WOR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 111,
+            "NAME_2": "Worcestershire",
+            "TYPE_2": "Administrative County",
+            "ENGTYPE_2": "Administrative County",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-142, -285]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-YOR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 112,
+            "NAME_2": "York",
+            "TYPE_2": "Unitary Authority (city)",
+            "ENGTYPE_2": "Unitary Authority (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[361, 362, 363, 364, 365, 366, 367]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ANT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 113,
+            "NAME_2": "Antrim",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[368, 369, 370, 371]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ARD",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 114,
+            "NAME_2": "Ards",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[372, 373, 374, 375, 376]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ARM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 115,
+            "NAME_2": "Armagh",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[377, -366, 378, 379, 380, 381]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BLA",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 116,
+            "NAME_2": "Ballymena",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[382, 383, 384, -380]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BLY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 117,
+            "NAME_2": "Ballymoney",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[385, 386, -377, 387, 388]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BNB",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 118,
+            "NAME_2": "Banbridge",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[389, 390, 391, 392, -368, 393]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BFS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 119,
+            "NAME_2": "Belfast",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[394, 395, 396]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CKF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 120,
+            "NAME_2": "Carrickfergus",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[397, 398, -392, 399, -370]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CSR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 121,
+            "NAME_2": "Castlereagh",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[400, 401, 402, 403, -384]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CLR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 122,
+            "NAME_2": "Coleraine",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[404, 405, 406, 407, -364]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CKT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 123,
+            "NAME_2": "Cookstown",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[408, -388, -376, 409, -405, -363]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CGV",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 124,
+            "NAME_2": "Craigavon",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[410, 411, 412]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DRY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 125,
+            "NAME_2": "Derry",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "London Borough (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Londonderry"
+          }
+        },
+        {
+          "arcs": [[413, -386, 414, -398, -369, 415]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DOW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 126,
+            "NAME_2": "Down",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[416, 417, 418, -406, -410, -375]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DGN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 127,
+            "NAME_2": "Dungannon",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[419, 420, -418, 421]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-FER",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 128,
+            "NAME_2": "Fermanagh",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-396, 422, -382, 423, 424]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LRN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 129,
+            "NAME_2": "Larne",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[425, 426, -411, 427, -402]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LMV",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 130,
+            "NAME_2": "Limavady",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-362, -393, -399, -415, -389, -409]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LSB",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 131,
+            "NAME_2": "Lisburn",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[428, 429, -426, -401, -383, -379, -365, -408]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MFT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 132,
+            "NAME_2": "Magherafelt",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[430]], [[-424, -381, -385, -404, 431]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MYL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 133,
+            "NAME_2": "Moyle",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-373, -387, -414, 432]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NYM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 134,
+            "NAME_2": "Newry and Mourne",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Mourne"
+          }
+        },
+        {
+          "arcs": [[-378, -423, -395, 433, -394, -367]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NTA",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 135,
+            "NAME_2": "Newtownabbey",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-391, 434, -371, -400]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NDN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 136,
+            "NAME_2": "North Down",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-421, 435, -429, -407, -419]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-OMH",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 137,
+            "NAME_2": "Omagh",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-412, -427, -430, -436, -420, 436]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-STB",
+            "NAME_0": "United Kingdom",
+            "ID_1": 2,
+            "NAME_1": "Northern Ireland",
+            "ID_2": 138,
+            "NAME_2": "Strabane",
+            "TYPE_2": "District",
+            "ENGTYPE_2": "District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[437, 438, 439, 440, 441, 442, 443]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ABD",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 139,
+            "NAME_2": "Aberdeenshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[444, -444]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ABE",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 140,
+            "NAME_2": "Aberdeen",
+            "TYPE_2": "Unitary District (city)",
+            "ENGTYPE_2": "Unitary District (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Aberdeen City"
+          }
+        },
+        {
+          "arcs": [[445, -439, 446, 447]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ANS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 141,
+            "NAME_2": "Angus",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Forfar"
+          }
+        },
+        {
+          "arcs": [
+            [[448]],
+            [[449, 450, 451, 452, 453]],
+            [[454]],
+            [[455]],
+            [[456]],
+            [[457]],
+            [[458]],
+            [[459]],
+            [[460]],
+            [[461]],
+            [[462]],
+            [[463]],
+            [[464]],
+            [[465]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-AGB",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 142,
+            "NAME_2": "Argyll and Bute",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Earra-Ghaidheal agus Bòd"
+          }
+        },
+        {
+          "arcs": [[466, 467, 468]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CLK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 143,
+            "NAME_2": "Clackmannanshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[469, 470, 471, 472, -93, 473]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DGY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 144,
+            "NAME_2": "Dumfries and Galloway",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[474, 475, -448]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DND",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 145,
+            "NAME_2": "Dundee",
+            "TYPE_2": "Unitary District (city)",
+            "ENGTYPE_2": "Unitary District (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Dundee City"
+          }
+        },
+        {
+          "arcs": [[476, 477, 478, 479, -471]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-EAY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 146,
+            "NAME_2": "East Ayrshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[480, 481, 482, 483]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-EDU",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 147,
+            "NAME_2": "East Dunbartonshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[484, 485, 486]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ELN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 148,
+            "NAME_2": "East Lothian",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Haddington"
+          }
+        },
+        {
+          "arcs": [[487, -479, 488, 489, 490]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ERW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 149,
+            "NAME_2": "East Renfrewshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[491, 492, 493, 494]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-EDH",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 150,
+            "NAME_2": "Edinburgh",
+            "TYPE_2": "Unitary District (city)",
+            "ENGTYPE_2": "Unitary District (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Édimbourg|Edimburgo"
+          }
+        },
+        {
+          "arcs": [
+            [[495]],
+            [[496]],
+            [[497]],
+            [[498]],
+            [[499]],
+            [[500]],
+            [[501]],
+            [[502]],
+            [[503]],
+            [[504]],
+            [[505]],
+            [[506]],
+            [[507]],
+            [[508]],
+            [[509]],
+            [[510]],
+            [[511]],
+            [[512]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ELS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 151,
+            "NAME_2": "Eilean Siar",
+            "TYPE_2": "Island Area",
+            "ENGTYPE_2": "Island Area",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Western Isles"
+          }
+        },
+        {
+          "arcs": [[513, 514, 515, 516]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-FAL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 152,
+            "NAME_2": "Falkirk",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[517, 518, 519, -469]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-FIF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 153,
+            "NAME_2": "Fife",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[520, 521, -482, 522, 523, -491]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-GLG",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 154,
+            "NAME_2": "Glasgow",
+            "TYPE_2": "Unitary District (city)",
+            "ENGTYPE_2": "Unitary District (city)",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Glasgow City"
+          }
+        },
+        {
+          "arcs": [
+            [[524, -441, 525, -450, 526]],
+            [[527]],
+            [[528]],
+            [[529]],
+            [[530]],
+            [[531]],
+            [[532]],
+            [[533]],
+            [[534]],
+            [[535]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HLD",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 155,
+            "NAME_2": "Highland",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[536, 537, 538]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-IVC",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 156,
+            "NAME_2": "Inverclyde",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[539, -486, 540, -494]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MLN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 157,
+            "NAME_2": "Midlothian",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Edinburgh"
+          }
+        },
+        {
+          "arcs": [[541, -442, -525]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MRY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 158,
+            "NAME_2": "Moray",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Elgin"
+          }
+        },
+        {
+          "arcs": [[[542]], [[-537, 543, -489, -478, 544, 545]], [[546]], [[547]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NAY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 159,
+            "NAME_2": "North Ayshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-481, 548, -515, 549, 550, -523]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NLK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 160,
+            "NAME_2": "North Lanarkshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [
+            [[551]],
+            [[552]],
+            [[553]],
+            [[554]],
+            [[555]],
+            [[556]],
+            [[557]],
+            [[558]],
+            [[559]],
+            [[560]],
+            [[561]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ORK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 161,
+            "NAME_2": "Orkney Islands",
+            "TYPE_2": "Island Area",
+            "ENGTYPE_2": "Island Area",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Orcadas|Orcades|Orcadi|Orkneyöarna|Orknøyene"
+          }
+        },
+        {
+          "arcs": [[-518, -468, 562, -451, -526, -440, -446, -476, 563]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-PKN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 162,
+            "NAME_2": "Perthshire and Kinross",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Perth and Kinross"
+          }
+        },
+        {
+          "arcs": [[-490, -544, -539, 564, 565, -521]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-RFW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 163,
+            "NAME_2": "Renfrewshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[566, 567, -495, -541, -485, 568, -301, -94, -473]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SCB",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 164,
+            "NAME_2": "Scottish Borders",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "The Borders"
+          }
+        },
+        {
+          "arcs": [[[569]], [[570]], [[571]], [[572]], [[573]], [[574]], [[575]], [[576]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-ZET",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 165,
+            "NAME_2": "Shetland Islands",
+            "TYPE_2": "Island Area",
+            "ENGTYPE_2": "Island Area",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Zetland"
+          }
+        },
+        {
+          "arcs": [[-545, -477, -470, 577]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SAY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 166,
+            "NAME_2": "South Ayrshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-488, -524, -551, 578, -567, -472, -480]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SLK",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 167,
+            "NAME_2": "South Lanarkshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-484, 579, -452, -563, -467, -520, 580, -516, -549]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-STG",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 168,
+            "NAME_2": "Stirling",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-522, -566, 581, -453, -580, -483]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WDU",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 169,
+            "NAME_2": "West Dunbartonshire",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Dumbarton and Clydebank"
+          }
+        },
+        {
+          "arcs": [[-514, 582, -492, -568, -579, -550]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WLN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 3,
+            "NAME_1": "Scotland",
+            "ID_2": 170,
+            "NAME_2": "West Lothian",
+            "TYPE_2": "Unitary District",
+            "ENGTYPE_2": "Unitary District",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Linlithgow"
+          }
+        },
+        {
+          "arcs": [[583]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-AGY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 171,
+            "NAME_2": "Anglesey",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[584, 585, 586, 587]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BGW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 172,
+            "NAME_2": "Blaenau Gwent",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[588, 589, 590, 591]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BGE",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 173,
+            "NAME_2": "Bridgend",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[592, 593, 594, -586, 595, 596, 597]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CAY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 174,
+            "NAME_2": "Caerphilly",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[598, 599, -598, 600, 601]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CRF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 175,
+            "NAME_2": "Cardiff",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[602, 603, 604, 605, 606, 607]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CMN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 176,
+            "NAME_2": "Carmarthenshire",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[608, -606, 609, 610, 611]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CGN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 177,
+            "NAME_2": "Ceredigion",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Cardiganshire"
+          }
+        },
+        {
+          "arcs": [[612, 613, 614]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CWY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 178,
+            "NAME_2": "Conwy",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Aberconwy and Colwyn"
+          }
+        },
+        {
+          "arcs": [[615, 616, 617, -613, 618, 619]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DEN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 179,
+            "NAME_2": "Denbighshire",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[620, -620, 621, -76]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-FLN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 180,
+            "NAME_2": "Flintshire",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[622]], [[-614, -618, 623, -612, 624]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-GWN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 181,
+            "NAME_2": "Gwynedd",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Caernarfonshire and Merionethshire"
+          }
+        },
+        {
+          "arcs": [[625, 626, -594]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MTY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 182,
+            "NAME_2": "Merthyr Tydfil",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[627, 628, 629, -588, 630, -202, -164]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-MON",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 183,
+            "NAME_2": "Monmouthshire",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[631, -608, 632, 633, -591, 634]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NTL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 184,
+            "NAME_2": "Neath Port Talbot",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": "Neath and Port Talbot"
+          }
+        },
+        {
+          "arcs": [[635, -601, -597, 636, -629]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NWP",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 185,
+            "NAME_2": "Newport",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-610, -605, 637]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-PEM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 186,
+            "NAME_2": "Pembrokeshire",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[638, -633, -607, -609, -624, -617, 639, -316, -203, -631, -587, -595, -627]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-POW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 187,
+            "NAME_2": "Powys",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-634, -639, -626, -593, -600, 640, -592]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-RCT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 188,
+            "NAME_2": "Rhondda, Cynon, Taff",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[641, -603, -632]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SWA",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 189,
+            "NAME_2": "Swansea",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-596, -585, -630, -637]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-TOF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 190,
+            "NAME_2": "Torfaen",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[642, -589, -641, -599]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-VGL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 191,
+            "NAME_2": "Vale of Glamorgan",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-640, -616, -621, -75, -317]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WRX",
+            "NAME_0": "United Kingdom",
+            "ID_1": 4,
+            "NAME_1": "Wales",
+            "ID_2": 192,
+            "NAME_2": "Wrexham",
+            "TYPE_2": "Unitary Authority (wales)",
+            "ENGTYPE_2": "Unitary Authority (wales",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[643, 644, 645, -299, 646]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NET",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 205,
+            "NAME_2": "Newcastle upon Tyne",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[647, -297, 347, 648, 649, -644]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-NTY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 204,
+            "NAME_2": "North Tyneside",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[348, 650, 651, 652, -645, -650, 653]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-STY",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 203,
+            "NAME_2": "South Tyneside",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-129, 654, 655, -652, 656, 349]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SND",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 202,
+            "NAME_2": "Sunderland",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-646, -653, -656, 657, -127, -300]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-GAT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 201,
+            "NAME_2": "Gateshead",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[658, 659, 660, -237, -289]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BRD",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 206,
+            "NAME_2": "Bradford",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[661, 662, -261, -260, -238, -661]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CLD",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 207,
+            "NAME_2": "Calderdale",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[663, 664, -326, -108, -262, -261, 665, -662, -660]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-KIR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 208,
+            "NAME_2": "Kirklees",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[666, -664, -659, -288]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LDS",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 209,
+            "NAME_2": "Leeds",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-665, -667, -287, -327]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WKF",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 210,
+            "NAME_2": "Wakefield",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[667]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "IM",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "Isle of Man",
+            "ID_2": 2,
+            "NAME_2": "Isle of Man",
+            "TYPE_2": "Crown Dependency",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[82, 83, 84, 70, 71, 72, 73, 668]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CHE",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 211,
+            "NAME_2": "Cheshire East",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[74, 75, 76, 669, 670, 671, 672, 673, 674, 81, -669]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-CHW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 212,
+            "NAME_2": "Cheshire West and Chester",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[[80, -675, 675, 676, 677, 678]], [[-673, 679]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-HAL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 213,
+            "NAME_2": "Halton",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-678, 680, 681, -233, 682]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-KWL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 215,
+            "NAME_2": "Knowsley",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-677, 683, 684, -681]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-LIV",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 216,
+            "NAME_2": "Liverpool",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-683, -232, -259, 263, -679]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SHN",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 217,
+            "NAME_2": "St. Helens",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-682, -685, 685, 265, -234]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SFT",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 218,
+            "NAME_2": "Sefton",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-671, 686]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WRL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 219,
+            "NAME_2": "Wirral",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[357, 687, 688, 689, 690, 691, -335, -334, -357, 692]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-BIR",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 220,
+            "NAME_2": "Birmingham",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[693, -354, 694]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-COV",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 221,
+            "NAME_2": "Coventry",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[695, -689, 696, 359, -338, 697]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-DUD",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 222,
+            "NAME_2": "Dudley",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-690, -696, 698, 699]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SAW",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 223,
+            "NAME_2": "Sandwell",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-695, -353, -693, -356, 700]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-SOL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 224,
+            "NAME_2": "Solihull",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-691, -700, 701, -336, -335, 702]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WLL",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 225,
+            "NAME_2": "Walsall",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        },
+        {
+          "arcs": [[-337, -702, -699, -698]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 242,
+            "ISO": "GB-WLV",
+            "NAME_0": "United Kingdom",
+            "ID_1": 1,
+            "NAME_1": "England",
+            "ID_2": 226,
+            "NAME_2": "Wolverhampton",
+            "TYPE_2": "Metropolitan District",
+            "ENGTYPE_2": "Metropolitan District",
+            "NL_NAME_2": null,
+            "VARNAME_2": null
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/ukraine-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/ukraine-topo.json
new file mode 100644
index 0000000..a35467b
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/ukraine-topo.json
@@ -0,0 +1,2877 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [9162, 6541],
+      [-86, -102],
+      [46, -49],
+      [70, -17],
+      [-1, -32],
+      [-46, -31],
+      [-2, -128],
+      [-131, -29],
+      [-77, 9],
+      [-54, -31],
+      [-7, 72],
+      [-62, 73],
+      [-23, -24],
+      [-61, 73],
+      [-62, 9],
+      [-31, -31],
+      [-23, -64],
+      [-62, -63],
+      [15, -32],
+      [-38, -55],
+      [-69, 33],
+      [-23, -24],
+      [-70, 1],
+      [-92, 49],
+      [-100, -7],
+      [-46, -31],
+      [-77, -8],
+      [8, -103],
+      [-68, -55],
+      [-130, -79],
+      [-16, 32],
+      [-61, 25],
+      [-54, -8],
+      [-68, -47],
+      [-54, 48],
+      [-92, 9],
+      [-46, -32],
+      [-54, 24],
+      [-130, 1],
+      [-45, -48],
+      [-14, -79],
+      [-53, -48],
+      [31, -31],
+      [1, -48],
+      [-146, 16],
+      [-29, -71],
+      [-99, -24],
+      [-22, -32],
+      [-54, 23],
+      [-45, -56],
+      [-122, 38]
+    ],
+    [
+      [6688, 5557],
+      [52, 56],
+      [-10, 79],
+      [-45, 16],
+      [29, 48],
+      [-40, 62],
+      [-30, 8],
+      [-47, 54],
+      [6, 64],
+      [-84, 30],
+      [-2, 55],
+      [-31, 47],
+      [6, 56],
+      [-69, 38],
+      [35, 80],
+      [-40, 70],
+      [-1, 64],
+      [72, 113],
+      [-2, 72]
+    ],
+    [
+      [6487, 6569],
+      [25, -71],
+      [151, 59],
+      [22, 48],
+      [-9, 63],
+      [22, 24],
+      [85, -6],
+      [16, -40],
+      [61, 49],
+      [17, -72],
+      [132, -23],
+      [105, 128],
+      [71, -40],
+      [61, 48],
+      [39, -1],
+      [40, -47],
+      [54, 23],
+      [62, -8],
+      [69, 24],
+      [7, 71],
+      [69, 16],
+      [0, 40],
+      [54, 31],
+      [29, 96],
+      [39, 15],
+      [-16, 48],
+      [61, 119],
+      [6, 72],
+      [-16, 72],
+      [6, 71],
+      [86, 55],
+      [62, 16],
+      [-64, 120],
+      [94, 15],
+      [32, -24],
+      [-15, -64],
+      [9, -64],
+      [31, -40],
+      [71, 16],
+      [55, -25],
+      [86, -1],
+      [78, 135],
+      [94, 15],
+      [-16, 80],
+      [8, 87],
+      [47, 40],
+      [31, 119],
+      [47, -8],
+      [48, 31]
+    ],
+    [
+      [8533, 7881],
+      [8, -32],
+      [63, -64],
+      [56, -25],
+      [23, -127],
+      [40, 7],
+      [15, -56],
+      [63, -72],
+      [0, -104],
+      [-47, -7],
+      [55, -73],
+      [109, -73],
+      [8, -95],
+      [70, -25],
+      [62, -65],
+      [-8, -32],
+      [38, -48],
+      [0, -48],
+      [-71, -95],
+      [15, -96],
+      [54, -33],
+      [-8, -32],
+      [-77, 2],
+      [-62, 33],
+      [-86, 25],
+      [-23, -64],
+      [46, -56],
+      [124, -82],
+      [69, 7],
+      [23, -33],
+      [70, 23]
+    ],
+    [
+      [9631, 10773],
+      [-32, -113],
+      [-55, -92],
+      [-1, -64],
+      [32, -9],
+      [78, -90],
+      [47, -10],
+      [1, -55],
+      [-56, -15],
+      [-40, 25],
+      [-47, -44],
+      [73, -49],
+      [-28, -63],
+      [-91, 9],
+      [-102, -79],
+      [-1, -73],
+      [-42, -56],
+      [8, -40],
+      [48, -72],
+      [-33, -48],
+      [65, -121],
+      [-24, -103],
+      [-33, -8],
+      [-16, -72],
+      [7, -88],
+      [-40, -7],
+      [-9, -160],
+      [-25, -63],
+      [-57, -40],
+      [24, -40],
+      [-25, -47],
+      [97, -65],
+      [7, -48],
+      [-24, -56],
+      [128, -49],
+      [7, -80],
+      [-41, -23],
+      [7, -128],
+      [39, -40],
+      [-65, -63],
+      [16, -48],
+      [-48, -23],
+      [-10, -120],
+      [-25, -71]
+    ],
+    [
+      [9345, 8272],
+      [-32, -56],
+      [-89, -63],
+      [-48, -63],
+      [-80, -31],
+      [-174, 2],
+      [-56, -8],
+      [-24, 64],
+      [-79, 9],
+      [-48, 24],
+      [-64, -103],
+      [-87, -7]
+    ],
+    [
+      [8564, 8040],
+      [-56, 32],
+      [-48, 65],
+      [-24, 95],
+      [47, 32],
+      [0, 48],
+      [-72, 0],
+      [-32, 64],
+      [-97, 57],
+      [-40, -32],
+      [1, -63],
+      [-80, 8],
+      [-63, -63],
+      [-80, 25],
+      [-63, -48],
+      [-73, 57],
+      [-96, 1],
+      [-50, 88],
+      [14, 119],
+      [-75, 88],
+      [-9, 32],
+      [-63, -15],
+      [-176, 0],
+      [-89, 48],
+      [21, 96],
+      [-73, 48],
+      [-35, 80],
+      [-2, 47],
+      [-49, 40],
+      [-63, 1],
+      [-17, 32],
+      [21, 79],
+      [-33, 89],
+      [38, 31],
+      [-9, 56],
+      [22, 40]
+    ],
+    [
+      [7161, 9317],
+      [46, 14],
+      [14, 56],
+      [45, 22],
+      [-29, 93],
+      [-6, 104],
+      [-38, 29],
+      [-37, 91],
+      [32, 49],
+      [-39, 74],
+      [40, 16],
+      [9, 50],
+      [39, 17],
+      [63, 155],
+      [12, 64],
+      [86, 42],
+      [-5, 47],
+      [48, 53],
+      [67, 4],
+      [9, 116],
+      [90, 0],
+      [47, 22],
+      [105, -63],
+      [51, 29],
+      [10, 39],
+      [117, 53],
+      [39, -25],
+      [165, -6],
+      [107, -25],
+      [44, 15],
+      [77, -32],
+      [-22, -65],
+      [84, 7],
+      [43, -25],
+      [118, 47],
+      [17, 32],
+      [59, 15],
+      [44, 64],
+      [-19, 130],
+      [58, 24],
+      [-32, 112],
+      [147, -3],
+      [76, -42],
+      [74, -67],
+      [34, 24],
+      [114, 3],
+      [24, -40],
+      [59, 29],
+      [83, 78],
+      [88, 21],
+      [6, 41],
+      [50, 0],
+      [86, -40],
+      [71, 8]
+    ],
+    [
+      [2969, 5805],
+      [71, -20],
+      [68, 12],
+      [59, -60],
+      [-5, -32],
+      [56, -21],
+      [42, 42],
+      [157, -31],
+      [-3, -56],
+      [26, -38],
+      [91, 13],
+      [11, -31],
+      [54, -5],
+      [66, 36]
+    ],
+    [
+      [3662, 5614],
+      [63, -13],
+      [38, -86],
+      [55, -13],
+      [28, 42],
+      [61, 4],
+      [-5, 56],
+      [73, 54],
+      [86, -31],
+      [26, 41],
+      [60, -3],
+      [85, -25],
+      [43, 43],
+      [62, -28],
+      [4, 64],
+      [38, 19],
+      [32, -38],
+      [52, 43]
+    ],
+    [
+      [4463, 5743],
+      [70, -51],
+      [17, -48],
+      [-6, -65],
+      [54, -62]
+    ],
+    [
+      [4598, 5517],
+      [-52, -21],
+      [-7, -34],
+      [-71, -18],
+      [-49, 42],
+      [-33, -78],
+      [-47, -13],
+      [-28, 30],
+      [-40, -18],
+      [-48, 35],
+      [-78, -59],
+      [-63, 7],
+      [-41, 75],
+      [-132, -42],
+      [88, -73],
+      [-8, -65],
+      [-40, -21],
+      [-17, 56],
+      [-53, 39],
+      [-14, -53],
+      [-50, -80],
+      [-72, -53],
+      [-49, 14],
+      [-61, -43],
+      [-57, -6],
+      [-58, -146],
+      [-47, -35],
+      [-20, -75],
+      [-75, -23],
+      [-34, 13],
+      [-93, -23],
+      [-77, -1],
+      [-74, -42],
+      [-127, 13],
+      [-29, -14],
+      [-240, -33],
+      [-62, -25],
+      [-14, -50],
+      [-90, -123],
+      [-65, -57],
+      [-93, 3]
+    ],
+    [
+      [2378, 4520],
+      [61, 124],
+      [3, 32],
+      [-54, 58],
+      [-32, 69],
+      [-8, 72],
+      [30, 91],
+      [48, 52],
+      [-5, 56],
+      [66, 21],
+      [62, 149],
+      [52, 19],
+      [123, 152],
+      [66, 29],
+      [91, 6],
+      [101, -26],
+      [-39, 93],
+      [8, 72],
+      [-21, 150],
+      [39, 66]
+    ],
+    [
+      [10837, 2251],
+      [22, -129],
+      [46, -145],
+      [98, -232],
+      [61, -110],
+      [85, -115],
+      [49, -86],
+      [98, -131],
+      [63, -59],
+      [66, -35],
+      [59, 38],
+      [105, 30],
+      [32, 46],
+      [-3, 40],
+      [81, 57],
+      [31, -46],
+      [54, -40],
+      [48, -9],
+      [56, 44],
+      [-1, 48],
+      [63, 40],
+      [120, 20],
+      [50, -6],
+      [65, -43],
+      [62, 7],
+      [32, -32],
+      [59, 14],
+      [42, -75],
+      [-36, -46],
+      [-102, 18],
+      [-4, -76],
+      [-37, -51],
+      [-30, -74],
+      [4, -55],
+      [32, -116],
+      [-59, -37],
+      [-96, -8],
+      [-31, -35],
+      [-170, 30],
+      [-61, -50],
+      [-44, 8],
+      [-56, -27],
+      [-25, 60],
+      [-78, 73],
+      [-90, 41],
+      [-40, 4],
+      [-77, -27],
+      [-60, -54],
+      [-19, -41],
+      [36, -38],
+      [-52, -25],
+      [-12, -40],
+      [-67, 6],
+      [-29, -72],
+      [-61, -20],
+      [-32, -98],
+      [-40, -49],
+      [-45, 52],
+      [-56, 13],
+      [-63, -33],
+      [-100, 4],
+      [-242, -125],
+      [-63, -72],
+      [-54, -117],
+      [-4, -52],
+      [-61, -13],
+      [-22, -44],
+      [-73, -19],
+      [-32, -87],
+      [-160, -50],
+      [-49, 17],
+      [-69, -13]
+    ],
+    [
+      [9951, 4],
+      [106, 48],
+      [-55, 128],
+      [-55, -36],
+      [-71, 26],
+      [-30, 39],
+      [-9, 55],
+      [72, 47],
+      [18, 72],
+      [-41, 41],
+      [-91, -5],
+      [-5, 56],
+      [57, 22],
+      [-13, 33],
+      [-62, 26],
+      [-16, 49]
+    ],
+    [
+      [9756, 605],
+      [28, 42],
+      [5, 71],
+      [-10, 120],
+      [-27, 88],
+      [-48, 80],
+      [-76, 75],
+      [-34, 11],
+      [-67, -31],
+      [-40, -36],
+      [-26, 37],
+      [-68, 39],
+      [-113, 141],
+      [3, 85],
+      [-37, -24],
+      [-91, 18],
+      [-97, -2],
+      [-87, -67],
+      [-136, 40],
+      [-13, 61],
+      [17, 44],
+      [73, 79],
+      [173, 110],
+      [31, 38],
+      [113, 97],
+      [168, 95],
+      [11, 64],
+      [64, -38],
+      [64, 25],
+      [94, 87],
+      [58, 29],
+      [46, -24],
+      [17, 43],
+      [93, 39],
+      [65, 68],
+      [-104, 12],
+      [-14, 131],
+      [23, 42],
+      [-15, 35]
+    ],
+    [
+      [9799, 2329],
+      [4, 70],
+      [24, 33],
+      [77, -59],
+      [63, 17],
+      [53, -24],
+      [77, -67],
+      [15, -45],
+      [44, -12],
+      [13, -46],
+      [11, 49],
+      [120, -27],
+      [100, -1],
+      [84, 101],
+      [79, -63],
+      [34, 81],
+      [51, -46],
+      [-4, -67],
+      [-44, 20],
+      [-53, -9],
+      [-32, -26],
+      [-3, -56],
+      [54, -66],
+      [68, 24],
+      [53, 83],
+      [-9, 93],
+      [39, 18],
+      [82, -27],
+      [38, -26]
+    ],
+    [
+      [11026, 6427],
+      [128, -4],
+      [6, -49],
+      [205, -135],
+      [51, -50],
+      [68, -10],
+      [106, 13],
+      [88, -67],
+      [16, 31],
+      [138, 44],
+      [29, -187],
+      [81, -43],
+      [21, -33],
+      [-5, -89],
+      [65, -59],
+      [44, -18],
+      [-19, -72],
+      [102, -60],
+      [82, 135],
+      [115, -85],
+      [70, 38],
+      [38, -1]
+    ],
+    [
+      [12455, 5726],
+      [70, -84],
+      [52, -18],
+      [-51, -95],
+      [10, -88],
+      [-24, -24],
+      [0, -120],
+      [45, 6],
+      [36, -34],
+      [22, -121],
+      [-53, -22],
+      [28, -146],
+      [-32, -46],
+      [-74, 18],
+      [-100, 60],
+      [-54, -22],
+      [6, -169],
+      [41, -49],
+      [-75, -30],
+      [32, -81]
+    ],
+    [
+      [12334, 4661],
+      [-106, -45],
+      [-72, 26],
+      [-39, -32],
+      [-95, 11],
+      [-13, 40],
+      [-82, -22],
+      [6, 121],
+      [-22, 0],
+      [-36, 171],
+      [-37, -7],
+      [-27, 57],
+      [-121, -45],
+      [-5, 49],
+      [-59, 2],
+      [-28, 49],
+      [-137, -85],
+      [-154, 53],
+      [-44, 25],
+      [-74, 2],
+      [-142, -28],
+      [-46, -39],
+      [-67, 2],
+      [-6, 33],
+      [-51, 26],
+      [19, -90],
+      [-31, -23],
+      [12, -98],
+      [-56, -103],
+      [63, -91],
+      [-23, -15],
+      [12, -74],
+      [52, 7],
+      [-2, -65],
+      [-40, -63],
+      [27, -66],
+      [-10, -72],
+      [20, -66],
+      [-52, -15],
+      [-89, 3],
+      [-94, 52],
+      [-73, 2],
+      [-90, -29],
+      [-149, -35],
+      [-127, -43]
+    ],
+    [
+      [10246, 4141],
+      [-120, -35],
+      [-29, 17],
+      [-42, 75],
+      [-98, -28],
+      [-135, -18],
+      [-6, 41],
+      [-45, 2],
+      [-5, 120],
+      [-75, -12],
+      [-9, -56],
+      [-38, -38],
+      [-60, -5],
+      [-24, -47],
+      [-44, 34],
+      [-6, 40],
+      [-53, -6],
+      [-14, 41],
+      [-97, 28]
+    ],
+    [
+      [9346, 4294],
+      [0, 24],
+      [-89, 27],
+      [1, 79],
+      [-14, 57],
+      [31, 30],
+      [52, -1],
+      [9, 71],
+      [-14, 48],
+      [24, 119],
+      [-60, 10],
+      [9, 95]
+    ],
+    [
+      [9295, 4853],
+      [24, 48],
+      [37, -2],
+      [62, 54],
+      [137, 67],
+      [-7, 41],
+      [61, 14],
+      [100, 44],
+      [54, 46],
+      [-14, 57],
+      [-31, 1],
+      [-6, 64],
+      [-22, 25],
+      [17, 88],
+      [-4, 200],
+      [92, 30],
+      [39, 39],
+      [30, -25],
+      [85, 53],
+      [-29, 89],
+      [-37, 42],
+      [-46, 1],
+      [-37, 49],
+      [16, 40],
+      [47, 31],
+      [106, -19],
+      [30, -33],
+      [48, 95],
+      [18, 80]
+    ],
+    [
+      [10065, 6072],
+      [52, -42],
+      [53, -9],
+      [83, -51],
+      [21, -57],
+      [61, -17],
+      [52, -42],
+      [47, 47],
+      [-29, 65],
+      [39, 48],
+      [-36, 57],
+      [41, 104],
+      [9, 56],
+      [48, 63],
+      [129, -3],
+      [18, 72],
+      [107, 22],
+      [32, 55],
+      [62, 31],
+      [128, -19],
+      [44, -25]
+    ],
+    [
+      [14441, 4702],
+      [-111, 8],
+      [-78, -19],
+      [-63, -231],
+      [-77, 18],
+      [-10, -45],
+      [-49, -35],
+      [-127, -1],
+      [8, -38],
+      [-81, 2],
+      [-12, -43],
+      [-40, -24],
+      [-17, -56],
+      [17, -93],
+      [-11, -102],
+      [-39, -11],
+      [-24, -74],
+      [87, -17],
+      [7, -65],
+      [-75, -33],
+      [-10, -147],
+      [-58, -67],
+      [-89, 56],
+      [-26, -30],
+      [-60, 5],
+      [-53, 24],
+      [-89, -35],
+      [-80, -7],
+      [-61, 20],
+      [-81, -19],
+      [-54, -74],
+      [-115, -183],
+      [-39, 57],
+      [-49, 25],
+      [-61, -52],
+      [-88, -41]
+    ],
+    [
+      [12733, 3375],
+      [-26, 52],
+      [17, 39],
+      [76, 40],
+      [-42, 37],
+      [24, 29],
+      [-98, 72],
+      [-4, 56],
+      [-105, 84],
+      [76, 28],
+      [-24, 81],
+      [-4, 64],
+      [95, -21],
+      [38, 22],
+      [50, 77],
+      [38, 13],
+      [51, 100],
+      [-82, -2],
+      [-64, 43],
+      [-54, 75],
+      [-58, 26],
+      [-39, -30],
+      [-68, 99],
+      [-51, 10],
+      [-28, 33],
+      [-50, 153],
+      [2, 32],
+      [-74, -14],
+      [26, 71],
+      [-21, 17]
+    ],
+    [
+      [12455, 5726],
+      [-2, 105],
+      [-39, 106],
+      [199, 32],
+      [59, -27],
+      [25, 47],
+      [38, -2],
+      [19, 48],
+      [53, -3],
+      [40, 30],
+      [34, 62],
+      [64, 45],
+      [-4, 48],
+      [64, 36],
+      [12, 64],
+      [101, 25],
+      [-12, 49],
+      [72, 35],
+      [-18, 74],
+      [-36, 34],
+      [49, 45],
+      [69, -5],
+      [113, -32],
+      [61, 3],
+      [12, 48]
+    ],
+    [
+      [13428, 6593],
+      [56, -69],
+      [-27, -54],
+      [44, -28],
+      [105, -24],
+      [-22, -88],
+      [26, -66],
+      [-68, -84],
+      [175, -14],
+      [-2, -129],
+      [58, -37],
+      [-28, -62],
+      [42, -44],
+      [-6, -80],
+      [-56, -36],
+      [59, -214],
+      [-18, -39],
+      [34, -43],
+      [89, -24],
+      [4, -48],
+      [49, -45],
+      [-55, -35],
+      [-6, -72],
+      [120, -2],
+      [38, -84],
+      [-4, -48],
+      [58, -37],
+      [126, -35],
+      [18, -139],
+      [186, -15],
+      [1, -64],
+      [28, -18],
+      [-11, -114]
+    ],
+    [
+      [2187, 6918],
+      [43, -141],
+      [40, -12],
+      [27, -54],
+      [-26, -50],
+      [13, -55],
+      [52, -59],
+      [-41, -60],
+      [53, -75],
+      [62, -11],
+      [-17, -57],
+      [-42, -43],
+      [112, -55],
+      [54, -4],
+      [16, -94],
+      [91, 7],
+      [21, -142],
+      [28, -53],
+      [51, 107],
+      [75, 13],
+      [13, -55],
+      [89, -50],
+      [75, -74],
+      [-7, -96]
+    ],
+    [
+      [2378, 4520],
+      [-81, 70],
+      [-8, 55],
+      [-64, 13],
+      [-68, 45],
+      [1, 45],
+      [-90, 97]
+    ],
+    [
+      [2068, 4845],
+      [-3, 88],
+      [41, 34],
+      [-14, 62],
+      [-67, 65],
+      [-20, 53],
+      [30, 74],
+      [-47, 27],
+      [2, 56],
+      [-108, 92],
+      [-35, 52],
+      [-39, -61],
+      [-70, 24],
+      [-36, 60],
+      [-1, 151],
+      [-124, -38],
+      [-38, -69],
+      [-48, 27],
+      [4, 104],
+      [-52, -7],
+      [-51, 58],
+      [-14, 62],
+      [-67, -8],
+      [-63, 96],
+      [-56, 25]
+    ],
+    [
+      [1192, 5872],
+      [15, 74],
+      [-14, 62],
+      [13, 90],
+      [-11, 31],
+      [40, 125],
+      [68, 72],
+      [-4, 40],
+      [64, 48],
+      [40, -19],
+      [100, -4],
+      [49, 46],
+      [49, -34],
+      [26, 43],
+      [63, -9],
+      [90, 10],
+      [43, 36],
+      [82, 17],
+      [50, 37],
+      [-63, 25],
+      [-22, 70],
+      [34, 44],
+      [24, 74],
+      [-38, 77],
+      [36, 19],
+      [-15, 79],
+      [45, 12],
+      [33, 51],
+      [42, -36],
+      [29, 10],
+      [57, -43],
+      [70, -1]
+    ],
+    [
+      [13565, 7493],
+      [34, -53],
+      [-49, -52],
+      [27, -44],
+      [-18, -47],
+      [-38, 11],
+      [-19, -48],
+      [59, -28],
+      [2, -82],
+      [-66, -52],
+      [-23, -104],
+      [-40, -13],
+      [-23, -96],
+      [35, -51],
+      [7, -113],
+      [50, -45],
+      [-3, -40],
+      [-72, -43]
+    ],
+    [
+      [11026, 6427],
+      [-41, 114],
+      [11, 80],
+      [32, 48],
+      [44, -41],
+      [105, -11],
+      [77, 54],
+      [17, 40],
+      [55, 56],
+      [-13, 57],
+      [-44, 33],
+      [17, 56],
+      [121, -27],
+      [2, 49],
+      [-61, 9],
+      [-5, 49],
+      [68, -2],
+      [-27, 90],
+      [-43, 66],
+      [-121, 19],
+      [2, 65],
+      [-38, 1],
+      [-18, 130],
+      [-44, 41],
+      [-69, 1],
+      [-83, 34],
+      [-74, 66],
+      [-13, 57],
+      [33, 72],
+      [47, 48],
+      [-22, 49],
+      [2, 64]
+    ],
+    [
+      [10943, 7794],
+      [40, 48],
+      [69, 24],
+      [79, 63],
+      [68, -33],
+      [49, 97],
+      [86, 40],
+      [69, -34],
+      [31, 32],
+      [70, 23],
+      [32, 31]
+    ],
+    [
+      [11536, 8085],
+      [61, -1],
+      [69, 57],
+      [19, 66],
+      [89, -6],
+      [34, 21],
+      [83, 3],
+      [69, -19],
+      [24, -47],
+      [83, -75],
+      [-10, -23],
+      [40, -66],
+      [59, 3],
+      [38, 39],
+      [55, 3],
+      [55, -54],
+      [34, -66],
+      [54, -13],
+      [43, 65],
+      [143, 85],
+      [40, 11],
+      [109, -18],
+      [97, 21],
+      [108, 48],
+      [37, 48],
+      [62, -13],
+      [72, 24],
+      [-10, -101],
+      [79, -66],
+      [62, 0],
+      [-18, -114],
+      [23, -60],
+      [92, -109],
+      [148, -66],
+      [12, -38],
+      [85, -86],
+      [-11, -45]
+    ],
+    [
+      [8881, 2273],
+      [150, -43],
+      [62, -7],
+      [61, 37],
+      [16, -24],
+      [126, -22],
+      [-15, -26],
+      [-86, 7],
+      [-167, 34],
+      [-147, 44]
+    ],
+    [
+      [9799, 2329],
+      [-31, 66],
+      [-41, -54],
+      [-15, -51],
+      [-86, -70],
+      [-97, 123],
+      [-68, 45],
+      [-37, 2],
+      [-43, -42],
+      [-89, 42],
+      [-14, -62],
+      [-68, -6],
+      [-144, 22],
+      [-78, -30],
+      [-45, 4],
+      [-70, -50],
+      [-263, 87],
+      [4, 74],
+      [-42, -7],
+      [-58, 37],
+      [-29, 49],
+      [-81, 17],
+      [-42, 49],
+      [-56, -32],
+      [-73, 8],
+      [-20, 46],
+      [61, 37],
+      [73, 1],
+      [71, 31],
+      [45, 53],
+      [-30, 66],
+      [-62, -10],
+      [-118, 52],
+      [-56, 14],
+      [-41, -27],
+      [-57, 31],
+      [-72, 65],
+      [99, -3],
+      [77, 14],
+      [100, -45],
+      [22, 6],
+      [95, -41],
+      [95, 15],
+      [66, -26],
+      [98, -20],
+      [-21, 85],
+      [2, 67],
+      [-42, 19],
+      [-86, -46],
+      [-37, 78],
+      [-39, 0],
+      [-42, 35]
+    ],
+    [
+      [8414, 3047],
+      [85, 41],
+      [8, 63],
+      [59, 37],
+      [44, 54],
+      [52, 30],
+      [57, -33],
+      [30, 54],
+      [73, 6],
+      [58, -26],
+      [8, 47],
+      [125, -14],
+      [21, -32],
+      [96, 3],
+      [104, 27],
+      [-13, 64],
+      [24, 63],
+      [-6, 71],
+      [66, -27],
+      [39, 54],
+      [-88, 60],
+      [-50, 50],
+      [0, 32],
+      [46, 61],
+      [75, 29],
+      [46, 54],
+      [45, 13],
+      [-64, 107],
+      [30, 22],
+      [3, 120],
+      [-13, 112],
+      [-28, 105]
+    ],
+    [
+      [10246, 4141],
+      [86, -76],
+      [19, -106],
+      [33, -107],
+      [149, 43],
+      [41, -83],
+      [-37, -7],
+      [24, -139],
+      [35, -58],
+      [12, -82],
+      [27, -67],
+      [72, -59],
+      [59, -2],
+      [18, -99],
+      [37, -1],
+      [13, -74],
+      [-45, -7],
+      [-2, -91],
+      [-89, -30],
+      [-17, -49],
+      [36, -34],
+      [66, -2],
+      [5, -91],
+      [-30, -49],
+      [35, -43],
+      [74, 24],
+      [41, -92],
+      [44, 17],
+      [86, -41],
+      [19, -114],
+      [-7, -53]
+    ],
+    [
+      [11050, 2569],
+      [-68, -44],
+      [-97, -23],
+      [-41, -33],
+      [-33, -76],
+      [17, -47],
+      [9, -95]
+    ],
+    [
+      [4311, 8365],
+      [11, -40],
+      [84, -59],
+      [-48, -133],
+      [66, -44],
+      [2, -32],
+      [66, -28],
+      [3, -56],
+      [58, -29],
+      [26, -39],
+      [70, 45],
+      [3, -64],
+      [77, -84],
+      [-54, -36],
+      [3, -56],
+      [49, -21],
+      [-59, -84],
+      [-56, 4],
+      [20, -63],
+      [-29, -50],
+      [9, -32],
+      [57, -12],
+      [31, -135],
+      [65, -20],
+      [82, -60]
+    ],
+    [
+      [4847, 7237],
+      [-5, -48],
+      [-48, -3],
+      [11, -56],
+      [41, -21],
+      [-44, -76],
+      [20, -79],
+      [-37, -35],
+      [35, -78],
+      [66, -213],
+      [0, -153],
+      [-57, 29],
+      [-43, -67],
+      [-47, -3],
+      [-33, 30],
+      [-47, -3],
+      [-28, -58],
+      [-56, 13],
+      [-11, -89],
+      [-54, -4],
+      [-34, -91],
+      [25, -38],
+      [-28, -50],
+      [28, -86],
+      [-12, -73],
+      [11, -55],
+      [-10, -113],
+      [-27, -74]
+    ],
+    [
+      [3662, 5614],
+      [-55, 13],
+      [-33, 30],
+      [-5, 63],
+      [-76, 84],
+      [6, 121],
+      [-24, 110],
+      [-17, 15],
+      [-5, 168],
+      [13, 33],
+      [-23, 103],
+      [23, 114],
+      [-15, 87],
+      [43, 52],
+      [-19, 55],
+      [-4, 160],
+      [-12, 63],
+      [-50, 37],
+      [6, 33],
+      [51, 44],
+      [-11, 55],
+      [51, 52],
+      [-5, 72],
+      [-34, 30],
+      [28, 50],
+      [-64, 133],
+      [22, 25],
+      [-36, 62],
+      [-7, 88],
+      [54, 28],
+      [-10, 137],
+      [47, 3],
+      [-23, 103]
+    ],
+    [
+      [3478, 7837],
+      [55, 12],
+      [81, 95],
+      [94, 7],
+      [118, 145],
+      [16, -7],
+      [102, 145],
+      [13, 50],
+      [93, 47],
+      [89, -19],
+      [21, 42],
+      [93, 47],
+      [10, -39],
+      [48, 3]
+    ],
+    [
+      [7103, 8392],
+      [33, -55],
+      [48, -16],
+      [87, -1],
+      [38, 48],
+      [80, 0],
+      [1, -64],
+      [-46, -32],
+      [10, -79],
+      [40, -24],
+      [1, -40],
+      [-93, -72],
+      [-40, 16],
+      [-31, -39],
+      [50, -88],
+      [-38, -48],
+      [-65, 48],
+      [-10, 88],
+      [-23, 0],
+      [-147, 183],
+      [-46, -40],
+      [-39, 8],
+      [28, 112],
+      [52, 72],
+      [46, 32],
+      [64, -9]
+    ],
+    [
+      [8564, 8040],
+      [-16, -64],
+      [-31, -23],
+      [16, -72]
+    ],
+    [
+      [6487, 6569],
+      [-76, 22],
+      [-33, 86],
+      [-54, 14],
+      [-32, 71],
+      [81, 98],
+      [-31, 15],
+      [-11, 119],
+      [-40, 71],
+      [37, 41],
+      [-40, 31]
+    ],
+    [
+      [6288, 7137],
+      [6, 72],
+      [-38, -2],
+      [4, 96],
+      [44, 74],
+      [24, -24],
+      [67, 50],
+      [51, 97],
+      [45, 49],
+      [-40, 55],
+      [12, 96],
+      [-31, 40],
+      [-4, 119],
+      [29, 57],
+      [-17, 56],
+      [21, 72],
+      [-38, 7],
+      [-10, 56],
+      [-39, 23],
+      [-17, 48],
+      [-63, 38],
+      [5, 81],
+      [-32, 15],
+      [27, 113],
+      [-18, 88],
+      [84, 42],
+      [6, 65],
+      [-80, 54],
+      [19, 121],
+      [-51, 88],
+      [14, 41],
+      [-3, 81],
+      [30, 49],
+      [-90, 96],
+      [-89, 63],
+      [-18, 74],
+      [13, 58],
+      [47, 1],
+      [36, 68],
+      [-2, 50],
+      [-32, 25]
+    ],
+    [
+      [6160, 9489],
+      [43, 46],
+      [82, -25],
+      [12, 110],
+      [60, -25],
+      [109, 73],
+      [20, -68],
+      [35, -46],
+      [86, 14],
+      [42, 47],
+      [50, -8],
+      [22, 45],
+      [59, -13],
+      [97, -1],
+      [41, -17],
+      [84, -84],
+      [11, -72],
+      [-28, -13],
+      [78, -77],
+      [38, 9],
+      [60, -67]
+    ],
+    [
+      [9295, 4853],
+      [-14, 57],
+      [-84, -22],
+      [-46, -54],
+      [-37, 17],
+      [-84, -6],
+      [-46, -70],
+      [30, -80],
+      [-39, -63],
+      [-60, -30],
+      [-45, 9],
+      [-83, -22],
+      [-68, 10],
+      [-37, 40],
+      [-68, -6],
+      [-15, -79],
+      [-82, -7],
+      [-15, 48],
+      [-53, 32],
+      [-67, -7],
+      [-15, -23],
+      [-83, -7],
+      [8, 103],
+      [22, 55],
+      [-22, 72],
+      [-83, 9],
+      [-8, 87],
+      [45, 8],
+      [-15, 71],
+      [-53, 1],
+      [-61, 56],
+      [-37, -39],
+      [-38, 0],
+      [-68, 41],
+      [-114, -23],
+      [-15, 24],
+      [-60, -24],
+      [-9, 80],
+      [-45, 16],
+      [-31, 56],
+      [-107, 9],
+      [-22, -55],
+      [-67, -32],
+      [-84, 1],
+      [-92, 48],
+      [-37, -39],
+      [-54, -15],
+      [-61, 24],
+      [-130, -7],
+      [-23, 15],
+      [-45, -47]
+    ],
+    [
+      [6978, 5085],
+      [-220, 15],
+      [-93, 133],
+      [-36, -56],
+      [-38, 23],
+      [-68, 7]
+    ],
+    [
+      [6523, 5207],
+      [4, 142],
+      [14, 71],
+      [73, 81],
+      [75, 33],
+      [-1, 23]
+    ],
+    [
+      [9162, 6541],
+      [47, -17],
+      [69, 7],
+      [0, -40],
+      [131, -43],
+      [23, -48],
+      [6, -72],
+      [54, -9],
+      [-14, 88],
+      [31, 23],
+      [46, -65],
+      [-24, -39],
+      [45, -57],
+      [-23, -40],
+      [14, -80],
+      [69, -34],
+      [31, 39],
+      [30, -49],
+      [54, 7],
+      [61, -18],
+      [47, 71],
+      [61, -41],
+      [54, -2],
+      [91, -50]
+    ],
+    [
+      [2532, 8017],
+      [82, -34],
+      [-34, -75],
+      [28, -55],
+      [-1, -96],
+      [115, -153]
+    ],
+    [
+      [2722, 7604],
+      [57, -35],
+      [-15, -106],
+      [-35, -59],
+      [-67, -45],
+      [-54, -5],
+      [-33, 22],
+      [-84, -23],
+      [6, -80],
+      [-18, -66],
+      [-48, 20],
+      [-49, -156],
+      [-62, -6],
+      [-89, -47],
+      [-46, 3],
+      [2, -103]
+    ],
+    [
+      [1192, 5872],
+      [-59, -8],
+      [-85, 21],
+      [-12, 39],
+      [-60, -8],
+      [-91, 13],
+      [-5, 39],
+      [-46, 83],
+      [-125, -22],
+      [-14, 54],
+      [-55, 43],
+      [-11, 47],
+      [30, 43],
+      [-19, 46]
+    ],
+    [
+      [640, 6262],
+      [-36, 131],
+      [-50, 63],
+      [-35, -4],
+      [-8, 116],
+      [50, 65],
+      [2, 61],
+      [-73, 101],
+      [-21, 50],
+      [2, 67],
+      [-28, 44],
+      [8, 55],
+      [74, 89],
+      [27, 78],
+      [85, 76],
+      [14, 48],
+      [87, 100],
+      [107, 142],
+      [70, 112],
+      [49, 35],
+      [14, 42],
+      [99, 80],
+      [95, 112],
+      [68, 45],
+      [8, 30],
+      [75, 63],
+      [15, 54],
+      [80, 51],
+      [114, -13],
+      [86, 44],
+      [21, 47],
+      [30, 200],
+      [-11, 25]
+    ],
+    [
+      [1658, 8471],
+      [49, 22],
+      [66, -50],
+      [10, -31],
+      [65, -16],
+      [20, 35],
+      [72, -16],
+      [-13, -34],
+      [43, -36],
+      [45, 21],
+      [38, -77],
+      [32, -5],
+      [0, -97],
+      [107, -62],
+      [-4, -49],
+      [64, -11],
+      [37, 28],
+      [88, -8],
+      [20, 42],
+      [79, -99],
+      [56, -11]
+    ],
+    [
+      [13565, 7493],
+      [42, 39],
+      [83, 10],
+      [16, 158],
+      [38, -15],
+      [81, 29],
+      [29, -111],
+      [44, -24],
+      [45, 17],
+      [23, -42],
+      [92, 13],
+      [74, -31],
+      [36, -55],
+      [93, -59],
+      [61, -2],
+      [14, -78],
+      [117, 12],
+      [83, 81],
+      [43, -41],
+      [37, -109],
+      [96, -41],
+      [64, 36],
+      [129, -30],
+      [-6, -49],
+      [51, -109],
+      [54, -14],
+      [64, -64],
+      [101, -12],
+      [38, 51],
+      [88, 13],
+      [87, -16],
+      [39, -46],
+      [8, -75],
+      [-46, -66],
+      [-1, -79],
+      [32, -175],
+      [-106, -112],
+      [-36, -9],
+      [-62, -82],
+      [-22, -77],
+      [-103, 9],
+      [-59, -35],
+      [-65, 5],
+      [29, -57],
+      [39, -18],
+      [69, -141],
+      [67, 32],
+      [77, -48],
+      [27, 45],
+      [42, 4],
+      [-3, -78],
+      [-72, -74],
+      [-166, 67],
+      [-14, -78],
+      [-33, -19],
+      [-29, -161],
+      [-44, -56],
+      [28, -37],
+      [81, 3],
+      [56, -31],
+      [17, -69],
+      [-15, -64],
+      [76, -116],
+      [-3, -36],
+      [-74, -52],
+      [56, -29],
+      [60, 21],
+      [24, -67],
+      [-16, -59],
+      [-46, -8],
+      [-33, -117],
+      [-73, -166],
+      [26, -21],
+      [-28, -63],
+      [1, -85],
+      [-77, -73],
+      [-83, 15],
+      [-85, -15],
+      [-63, 44],
+      [-42, -22],
+      [-24, 41],
+      [-54, -18],
+      [-77, 5],
+      [-85, -36],
+      [-56, 31]
+    ],
+    [
+      [8414, 3047],
+      [-28, 54],
+      [6, 40],
+      [-32, 55],
+      [25, 160],
+      [-47, -38],
+      [-34, -101],
+      [38, -55],
+      [-24, -118],
+      [-78, -38],
+      [-123, 51],
+      [-42, -4],
+      [-48, -61],
+      [-58, 36],
+      [-92, -4],
+      [-18, -30],
+      [-125, 28]
+    ],
+    [
+      [7734, 3022],
+      [7, 111],
+      [-14, 166],
+      [-37, 23],
+      [-85, 102],
+      [-8, 64],
+      [83, 15],
+      [121, 5],
+      [-9, 56],
+      [45, -1],
+      [-2, 87],
+      [-32, 111],
+      [-111, -22],
+      [4, 150],
+      [-119, -30],
+      [-24, 63],
+      [-61, -7],
+      [-46, 64],
+      [37, 31],
+      [-31, 48],
+      [15, 39],
+      [-31, 40],
+      [5, 127],
+      [-46, 32],
+      [-55, 120],
+      [-29, -55],
+      [-61, 0],
+      [7, 48],
+      [-167, -24],
+      [-54, 32],
+      [-25, 143],
+      [52, 56],
+      [-32, 48],
+      [-68, -8],
+      [-10, 159],
+      [-39, 40],
+      [-8, 55],
+      [36, 111],
+      [45, 8],
+      [-9, 56]
+    ],
+    [
+      [7734, 3022],
+      [-24, 8],
+      [-127, -36],
+      [-178, -71],
+      [-34, 9],
+      [-44, -61],
+      [37, -83],
+      [-17, -102],
+      [-62, -69],
+      [-100, -217],
+      [-42, -51],
+      [-30, -64],
+      [-104, -123],
+      [-84, -127],
+      [-99, -98],
+      [-62, -27],
+      [-57, 65],
+      [-38, -105],
+      [-44, -29],
+      [-70, -3],
+      [-31, -24],
+      [20, -48],
+      [60, -31],
+      [-89, -71],
+      [-72, -71],
+      [-61, -88],
+      [37, -35],
+      [77, -43],
+      [8, -164],
+      [-32, -145],
+      [-47, 6],
+      [6, 66],
+      [-23, 95],
+      [-53, 68],
+      [-136, 71],
+      [-112, -16],
+      [-41, 6],
+      [-85, -63],
+      [-92, -37],
+      [-52, -40],
+      [-49, -66],
+      [-92, 72],
+      [-21, -58],
+      [-31, -5],
+      [21, -70],
+      [-53, -18],
+      [-74, 27],
+      [-61, 7],
+      [-180, 95],
+      [-55, 109],
+      [1, 45],
+      [-62, 48],
+      [45, 84],
+      [36, 20],
+      [81, -36],
+      [26, -43],
+      [69, 24],
+      [-14, 84],
+      [40, 22],
+      [-17, 110],
+      [-27, 14],
+      [45, 84],
+      [44, -2],
+      [5, 45],
+      [96, 31],
+      [-5, 37],
+      [67, 37],
+      [-22, 103],
+      [25, 74],
+      [136, 38],
+      [30, 25],
+      [8, 62],
+      [-34, 53],
+      [85, 126],
+      [-94, 104],
+      [35, 65],
+      [-47, 182],
+      [133, 91],
+      [52, -3],
+      [78, 51],
+      [-6, -185],
+      [76, -11],
+      [-8, 72],
+      [31, 47],
+      [43, -62],
+      [44, 50],
+      [48, -44],
+      [-9, -29],
+      [53, -47],
+      [28, -60],
+      [75, -1],
+      [-7, 101],
+      [55, -6],
+      [15, 56],
+      [63, -126],
+      [49, -24],
+      [52, 52],
+      [54, -28],
+      [55, 28],
+      [-68, 138],
+      [-42, -5],
+      [-44, 58],
+      [51, 26],
+      [11, 40],
+      [-16, 80],
+      [21, 54],
+      [6, 97],
+      [-34, 58],
+      [27, 31],
+      [-76, 22],
+      [-8, 53],
+      [-66, -29],
+      [-40, 8],
+      [-12, 69],
+      [-70, 8],
+      [-41, 59],
+      [13, 181],
+      [-58, -30],
+      [-32, 68],
+      [65, 15],
+      [-26, 138],
+      [38, 27],
+      [-13, 138],
+      [-73, -1],
+      [-11, -67],
+      [-41, -21],
+      [-43, 26],
+      [13, 72],
+      [-59, 15],
+      [-10, 74],
+      [-64, -16],
+      [-38, 18],
+      [-11, 57],
+      [-52, 91],
+      [57, 31],
+      [35, 92],
+      [-17, 114],
+      [39, 46],
+      [-23, 54],
+      [-27, 122],
+      [-17, 144],
+      [-68, -14],
+      [-28, -56],
+      [-41, 9],
+      [-34, 41],
+      [-38, -31],
+      [-76, 104],
+      [1, 65]
+    ],
+    [
+      [5728, 4998],
+      [85, 24],
+      [11, 91],
+      [68, -26],
+      [34, 85],
+      [69, -60],
+      [97, -63],
+      [97, 3],
+      [22, 31],
+      [68, -22],
+      [68, 2],
+      [21, 31],
+      [68, 2],
+      [-2, 70],
+      [89, 41]
+    ],
+    [
+      [9345, 8272],
+      [72, -17],
+      [79, -1],
+      [9, 64],
+      [111, -41],
+      [47, -49],
+      [80, -1],
+      [32, 16],
+      [110, -41],
+      [87, -1],
+      [49, 39],
+      [-7, 40],
+      [71, 8],
+      [33, 31],
+      [61, -64],
+      [79, 7],
+      [73, 39],
+      [30, -32],
+      [13, -97],
+      [107, -89],
+      [14, -65],
+      [45, -49],
+      [39, 0],
+      [6, -65],
+      [46, -9],
+      [-1, -48],
+      [-48, -32],
+      [52, -73],
+      [108, -9],
+      [9, 48],
+      [86, 23],
+      [106, -10]
+    ],
+    [
+      [4723, 9662],
+      [-89, -50],
+      [31, -94],
+      [-68, 26],
+      [-37, -60],
+      [35, -38],
+      [-37, -51],
+      [-40, -11],
+      [25, -112],
+      [-54, -44],
+      [-35, -76],
+      [4, -56],
+      [-36, -76],
+      [-40, -2],
+      [-61, -53],
+      [40, -119],
+      [-11, -74],
+      [16, -120],
+      [20, -72],
+      [-60, -69],
+      [8, -128],
+      [-23, -18]
+    ],
+    [
+      [3478, 7837],
+      [-41, 30],
+      [-19, 47],
+      [-83, 42],
+      [-28, -50],
+      [-66, 43],
+      [-38, -27],
+      [-50, -76],
+      [-142, -2],
+      [-29, -35],
+      [-49, 21],
+      [-89, -79],
+      [-64, -86],
+      [-54, -12],
+      [-4, -49]
+    ],
+    [
+      [2532, 8017],
+      [44, 44],
+      [-11, 47],
+      [46, 12],
+      [-47, 93],
+      [3, 74],
+      [-36, 53],
+      [62, 13],
+      [74, -26],
+      [45, 28],
+      [-14, 88],
+      [57, -20],
+      [4, 49],
+      [36, 43],
+      [48, -4],
+      [115, 65],
+      [79, 6],
+      [21, -72],
+      [89, -18],
+      [36, 44],
+      [6, 138],
+      [28, 59],
+      [97, -18],
+      [-28, 63],
+      [-9, 129],
+      [71, 13],
+      [36, 43],
+      [-3, 49],
+      [-51, 53],
+      [-73, 3],
+      [-19, 56],
+      [79, 5],
+      [35, 76],
+      [-53, 70],
+      [-41, 13],
+      [-28, 63],
+      [-69, 77],
+      [5, 41],
+      [-106, 17],
+      [-51, 37],
+      [-23, 105],
+      [-58, 28],
+      [32, 108],
+      [-52, 53],
+      [69, 38],
+      [71, 149],
+      [-52, 51],
+      [5, 55],
+      [60, 72],
+      [-74, 11],
+      [-17, 29]
+    ],
+    [
+      [2970, 10222],
+      [154, -6],
+      [40, 32],
+      [92, -39],
+      [74, 19],
+      [58, -19],
+      [66, -64],
+      [148, -6],
+      [116, -91],
+      [65, 27],
+      [171, -4],
+      [41, -74],
+      [34, 13],
+      [101, -23],
+      [11, 24],
+      [167, 7],
+      [5, -140],
+      [54, -39],
+      [-28, -71],
+      [102, 29],
+      [93, -5],
+      [80, 30],
+      [44, -29],
+      [99, -2],
+      [-4, -64],
+      [-40, -26],
+      [10, -39]
+    ],
+    [
+      [9951, 4],
+      [-3, 0],
+      [-5, -4],
+      [-56, 0],
+      [-19, 41],
+      [-50, 10],
+      [-8, 56],
+      [-35, 31],
+      [-85, 13],
+      [-81, 77],
+      [47, 68],
+      [63, 7],
+      [15, 154],
+      [-11, 86],
+      [33, 62]
+    ],
+    [
+      [9631, 10773],
+      [88, 7],
+      [35, -48],
+      [79, 16],
+      [53, 39],
+      [91, -7],
+      [9, -62],
+      [68, -3],
+      [10, -58],
+      [48, -39],
+      [24, -49],
+      [82, -81],
+      [-39, -88],
+      [20, -73],
+      [55, -79],
+      [36, -14],
+      [23, -55],
+      [34, 3],
+      [130, -118],
+      [-19, -52],
+      [31, -60],
+      [-25, -24],
+      [-82, -4],
+      [-39, -27],
+      [-115, -15],
+      [-30, -32],
+      [137, -101],
+      [15, -50],
+      [42, -31],
+      [-13, -51],
+      [-36, -38],
+      [-31, -86],
+      [100, -57],
+      [-61, -132],
+      [80, -36],
+      [43, 46],
+      [88, -28],
+      [118, 2],
+      [27, -81],
+      [113, -16],
+      [11, 31],
+      [122, 51],
+      [126, -22],
+      [5, -95],
+      [57, -124],
+      [73, 11],
+      [27, 26],
+      [95, -44],
+      [1, -28],
+      [-60, -54],
+      [-9, -61],
+      [52, -21],
+      [-8, -65],
+      [26, -31],
+      [1, -64],
+      [54, -59],
+      [-16, -45],
+      [25, -67],
+      [-72, -65],
+      [-3, -69],
+      [29, -27],
+      [12, -58],
+      [58, -70],
+      [45, -12],
+      [5, -86],
+      [60, -58]
+    ],
+    [
+      [2068, 4845],
+      [-57, -21],
+      [-56, 25],
+      [-47, -60],
+      [-48, -1],
+      [-83, -40],
+      [-27, 27],
+      [-71, -2],
+      [-12, 30],
+      [-77, 41],
+      [-135, -41],
+      [-30, 62],
+      [-37, 17],
+      [-93, -14],
+      [-45, 31],
+      [-72, -4],
+      [-22, -49],
+      [-138, 67],
+      [-47, 44],
+      [-13, 49],
+      [-118, 12],
+      [-18, -78],
+      [-30, -40],
+      [-52, -24],
+      [-74, 39],
+      [15, -68],
+      [-26, -13],
+      [-59, 39],
+      [29, 71],
+      [-46, 106],
+      [-70, 5],
+      [-57, -39],
+      [-68, 26],
+      [-5, 62],
+      [-60, 106],
+      [-68, 21],
+      [-59, -19],
+      [-28, 82],
+      [-103, 173],
+      [-61, 0],
+      [21, 189],
+      [17, 50],
+      [40, 23],
+      [53, 84],
+      [45, 20],
+      [13, 55],
+      [-20, 51],
+      [26, 24],
+      [7, 109],
+      [24, 19],
+      [8, 66],
+      [47, 83],
+      [55, 9],
+      [16, 110],
+      [36, 13],
+      [61, -70],
+      [105, 8],
+      [86, -48]
+    ],
+    [
+      [5728, 4998],
+      [-2, 55],
+      [-80, 22],
+      [-90, 10],
+      [-66, 36],
+      [-38, -61],
+      [-72, -52],
+      [-19, 118],
+      [-39, 0],
+      [-23, -52],
+      [-37, 26],
+      [40, 39],
+      [12, 54],
+      [-22, 33],
+      [-109, -55],
+      [-25, 63],
+      [-69, -29],
+      [-21, 26],
+      [11, 66],
+      [-40, 34],
+      [-105, 2],
+      [-56, 53],
+      [22, 31],
+      [-105, 92],
+      [-69, -20],
+      [-100, 41],
+      [-28, -13]
+    ],
+    [
+      [4847, 7237],
+      [61, 45],
+      [95, 22],
+      [48, -21],
+      [86, 29],
+      [157, 10],
+      [33, -30],
+      [45, 67],
+      [56, -21],
+      [46, 10],
+      [18, -47],
+      [39, 2],
+      [14, 49],
+      [102, -27],
+      [13, 65],
+      [85, 28],
+      [14, 41],
+      [74, -85],
+      [19, -103],
+      [24, -23],
+      [-37, -58],
+      [2, -48],
+      [33, -46],
+      [2, -48],
+      [123, 6],
+      [108, -12],
+      [-2, 64],
+      [62, -14],
+      [75, 51],
+      [46, -6]
+    ],
+    [
+      [1658, 8471],
+      [-60, 108],
+      [3, 61],
+      [-42, 8],
+      [17, 91],
+      [97, -6],
+      [38, 29],
+      [-105, 73],
+      [-83, 146],
+      [-17, 79],
+      [-34, 4],
+      [-17, 59],
+      [16, 32],
+      [-105, 85],
+      [-21, 75],
+      [-56, 21],
+      [-14, 37],
+      [35, 78],
+      [16, 72],
+      [-29, 116],
+      [20, 112],
+      [-30, 35],
+      [19, 41],
+      [137, 17],
+      [5, -27],
+      [86, 0],
+      [7, -64],
+      [63, -10],
+      [80, 50],
+      [33, 67],
+      [104, 68],
+      [63, 90],
+      [-16, 65],
+      [43, 102],
+      [89, 3],
+      [97, 24],
+      [178, -36],
+      [114, 31],
+      [42, -20],
+      [78, 68],
+      [169, 29],
+      [73, -48],
+      [106, -21],
+      [63, 27],
+      [50, -20]
+    ],
+    [
+      [12733, 3375],
+      [-72, -33],
+      [-67, -66],
+      [-58, -143],
+      [-37, 63],
+      [-56, 39],
+      [-92, -2],
+      [-168, -69],
+      [-52, -42],
+      [-72, -122],
+      [-31, 60],
+      [-40, 29],
+      [-67, -18],
+      [-53, 14],
+      [-107, -12],
+      [-173, -102],
+      [-60, -84],
+      [-60, -58],
+      [-96, -44],
+      [-99, -135],
+      [-97, -175],
+      [-33, -72],
+      [-37, -48],
+      [-139, -69],
+      [0, 37],
+      [61, 61],
+      [66, 16],
+      [62, 33],
+      [8, 46],
+      [34, 38],
+      [82, 150],
+      [-79, -7],
+      [-56, 35],
+      [-59, -47],
+      [-36, -79]
+    ],
+    [
+      [4723, 9662],
+      [69, -43],
+      [21, 64],
+      [41, 8],
+      [-11, 57],
+      [12, 71],
+      [58, -5],
+      [20, -68],
+      [34, -23],
+      [100, 1],
+      [76, 109],
+      [88, 64],
+      [-13, -91],
+      [33, 3],
+      [61, -89],
+      [43, -3],
+      [59, 45],
+      [96, -46],
+      [68, -3],
+      [-8, -61],
+      [36, -96],
+      [79, 20],
+      [-19, 33],
+      [35, 78],
+      [68, 43],
+      [115, 8],
+      [55, 68],
+      [48, 27],
+      [49, -100],
+      [41, -36],
+      [-20, -72],
+      [64, -65],
+      [7, -64],
+      [32, -7]
+    ]
+  ],
+  "transform": {
+    "scale": [0.001171110329852683, 0.0007382609567284698],
+    "translate": [22.14834213256836, 44.39125061035162]
+  },
+  "objects": {
+    "ukraine": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-71",
+            "NAME_0": "Ukraine",
+            "ID_1": 1,
+            "NAME_1": "Cherkasy",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Cherkas'ka Oblast'|Cherkasskaya Oblast'|Cherkassy"
+          }
+        },
+        {
+          "arcs": [[4, 5, 6, 7]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-74",
+            "NAME_0": "Ukraine",
+            "ID_1": 2,
+            "NAME_1": "Chernihiv",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Chernigov|Tschernigow"
+          }
+        },
+        {
+          "arcs": [[8, 9, 10, 11, 12]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-77",
+            "NAME_0": "Ukraine",
+            "ID_1": 3,
+            "NAME_1": "Chernivtsi",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Chernivets'ka Oblast'|Chernovitskaya Oblast'|Chernovtsy|Czernowitz|Tschernowzy|Tchernovtsy"
+          }
+        },
+        {
+          "arcs": [[13, 14, 15, 16]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-43",
+            "NAME_0": "Ukraine",
+            "ID_1": 4,
+            "NAME_1": "Crimea",
+            "TYPE_1": "Autonomous Republic",
+            "ENGTYPE_1": "Autonomous Republic",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Crimée|Criméia|Krim|Krymskaya Respublika|Respublika Krym"
+          }
+        },
+        {
+          "arcs": [[17, 18, 19, 20, 21, 22, 23]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-12",
+            "NAME_0": "Ukraine",
+            "ID_1": 5,
+            "NAME_1": "Dnipropetrovs'k",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Dnipropetrovsk|Dniepropietrovsk|Dnjepropetrowsk"
+          }
+        },
+        {
+          "arcs": [[24, 25, -19, 26, 27]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-14",
+            "NAME_0": "Ukraine",
+            "ID_1": 6,
+            "NAME_1": "Donets'k",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Donetsk|Donetskaya Oblast'|Donezk|Stalino"
+          }
+        },
+        {
+          "arcs": [[28, -13, 29, 30, 31]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-26",
+            "NAME_0": "Ukraine",
+            "ID_1": 7,
+            "NAME_1": "Ivano-Frankivs'k",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Ivano-Frankovsk|Ivano-Frankovskaya Oblast'|Stanislav"
+          }
+        },
+        {
+          "arcs": [[32, -27, -18, 33, 34, 35]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-63",
+            "NAME_0": "Ukraine",
+            "ID_1": 8,
+            "NAME_1": "Kharkiv",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Charkow|Jarkov|Karkov|Khar'kov"
+          }
+        },
+        {
+          "arcs": [[[36]], [[37, 38, -21, 39, 40, -17]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-65",
+            "NAME_0": "Ukraine",
+            "ID_1": 9,
+            "NAME_1": "Kherson",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Cherson|Khersons'ka Oblast'"
+          }
+        },
+        {
+          "arcs": [[41, 42, -10, 43, 44]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-68",
+            "NAME_0": "Ukraine",
+            "ID_1": 10,
+            "NAME_1": "Khmel'nyts'kyy",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Khmelnitsky|Khmelnytskyi|Chmelnizkij|Hmelnicki|Kamenets-Podol'skaya Oblast'|Khmel'nyts'ka Oblast'"
+          }
+        },
+        {
+          "arcs": [[45]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-30",
+            "NAME_0": "Ukraine",
+            "ID_1": 11,
+            "NAME_1": "Kiev City",
+            "TYPE_1": "Independent City",
+            "ENGTYPE_1": "Independent City",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Kyiv"
+          }
+        },
+        {
+          "arcs": [[-7, 46, -3, 47, 48, 49], [-46]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-32",
+            "NAME_0": "Ukraine",
+            "ID_1": 12,
+            "NAME_1": "Kiev",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Kiev Oblast|Kiew|Kijew|Kiiv|Kijev|Kiyev|Kyiv|Kyjiv|Kyyiv|Kyyivs'ka Oblast'"
+          }
+        },
+        {
+          "arcs": [[-23, 50, 51, 52, -1, 53]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-35",
+            "NAME_0": "Ukraine",
+            "ID_1": 13,
+            "NAME_1": "Kirovohrad",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Kirovograd|Kirovogradskaya Oblast'"
+          }
+        },
+        {
+          "arcs": [[54, 55, -32, 56, 57, 58]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-46",
+            "NAME_0": "Ukraine",
+            "ID_1": 14,
+            "NAME_1": "L'viv",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Lemberg|Llvov|L'vov|Lwow|L'vivs'ka Oblast'"
+          }
+        },
+        {
+          "arcs": [[-28, -33, 59]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-09",
+            "NAME_0": "Ukraine",
+            "ID_1": 15,
+            "NAME_1": "Luhans'k",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Luhansk|Lugansk|Luhans'ka Oblast'|Voroshilovgrad"
+          }
+        },
+        {
+          "arcs": [[-22, -39, 60, 61, -51]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-48",
+            "NAME_0": "Ukraine",
+            "ID_1": 16,
+            "NAME_1": "Mykolayiv",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Mykolaiv|Nikolajew|Nikolayev"
+          }
+        },
+        {
+          "arcs": [[-62, 62, 63, -52]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-51",
+            "NAME_0": "Ukraine",
+            "ID_1": 17,
+            "NAME_1": "Odessa",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Odesa|Odes'ka Oblast'|Odesskaya Oblast'"
+          }
+        },
+        {
+          "arcs": [[-34, -24, -54, -4, -47, -6, 64]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-53",
+            "NAME_0": "Ukraine",
+            "ID_1": 18,
+            "NAME_1": "Poltava",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[65, -45, 66, -55, 67, 68]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-56",
+            "NAME_0": "Ukraine",
+            "ID_1": 19,
+            "NAME_1": "Rivne",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Rovno|Rivnens'ka Oblast'|Rovenskaya Oblast'"
+          }
+        },
+        {
+          "arcs": [[-15, 69]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-40",
+            "NAME_0": "Ukraine",
+            "ID_1": 20,
+            "NAME_1": "Sevastopol'",
+            "TYPE_1": "Autonomous Republic",
+            "ENGTYPE_1": "Autonomous Republic",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Sebastopol"
+          }
+        },
+        {
+          "arcs": [[-35, -65, -5, 70]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-59",
+            "NAME_0": "Ukraine",
+            "ID_1": 21,
+            "NAME_1": "Sumy",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": null
+          }
+        },
+        {
+          "arcs": [[-44, -9, -29, -56, -67]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-61",
+            "NAME_0": "Ukraine",
+            "ID_1": 22,
+            "NAME_1": "Ternopil'",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Ternopol|Ternopol'"
+          }
+        },
+        {
+          "arcs": [[-57, -31, 71]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-21",
+            "NAME_0": "Ukraine",
+            "ID_1": 23,
+            "NAME_1": "Transcarpathia",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Transcarpathian|Zakarpattia|Ruthenia|Zakarpats'ka Oblast'|Zakarpatskaya Oblast'"
+          }
+        },
+        {
+          "arcs": [[-48, -2, -53, -64, 72, -11, -43, 73]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-05",
+            "NAME_0": "Ukraine",
+            "ID_1": 24,
+            "NAME_1": "Vinnytsya",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Vinnytsia|Vinnitskaya Oblast'|Vinnyts'ka Oblast|Winniza"
+          }
+        },
+        {
+          "arcs": [[-68, -59, 74]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-07",
+            "NAME_0": "Ukraine",
+            "ID_1": 25,
+            "NAME_1": "Volyn",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Volhynia|Volyns'ka Oblast'|Volynskaya Oblast'|Wolynien"
+          }
+        },
+        {
+          "arcs": [[-26, 75, -40, -20]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-23",
+            "NAME_0": "Ukraine",
+            "ID_1": 26,
+            "NAME_1": "Zaporizhzhya",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Saporoshje|Zaporizhia|Zaporiz'ka Oblast'|Zaporojie|Zaporozhskaya Oblast'|Zaporozh'ye|Zaporožje"
+          }
+        },
+        {
+          "arcs": [[-49, -74, -42, -66, 76]],
+          "type": "Polygon",
+          "properties": {
+            "ID_0": 240,
+            "ISO": "UA-18",
+            "NAME_0": "Ukraine",
+            "ID_1": 27,
+            "NAME_1": "Zhytomyr",
+            "TYPE_1": "Oblast'",
+            "ENGTYPE_1": "Region",
+            "NL_NAME_1": null,
+            "VARNAME_1": "Zhitomir|Jitomir|Shitomir|Zhitomirskaya Oblast'"
+          }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/usa-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/usa-topo.json
new file mode 100644
index 0000000..95e8f36
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/usa-topo.json
@@ -0,0 +1,22866 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [29191, 41293],
+      [0, -314],
+      [-1, -2201],
+      [0, -309],
+      [-1, -665],
+      [0, -177],
+      [1, -937],
+      [0, -543],
+      [0, -960],
+      [0, -143],
+      [-1, -1878],
+      [-1, -1023],
+      [0, -413],
+      [0, -293],
+      [-1, -62],
+      [1, -734],
+      [-1, -242],
+      [-1, -644],
+      [0, -851],
+      [-1, -190],
+      [0, -361],
+      [-1, -187],
+      [-1, -749],
+      [-1, -422]
+    ],
+    [
+      [29182, 26995],
+      [-701, 4],
+      [-1923, -2],
+      [-559, -1],
+      [-402, -1],
+      [-226, 19],
+      [-500, 217],
+      [-396, 172],
+      [-1240, 530],
+      [-1156, 483],
+      [-481, 195],
+      [-387, 166],
+      [-297, 127],
+      [-1410, 593],
+      [-1047, 429],
+      [8, 310],
+      [19, 21],
+      [32, -1],
+      [63, 99],
+      [53, 138]
+    ],
+    [
+      [18632, 30493],
+      [76, 45],
+      [117, -18],
+      [221, 234],
+      [58, 144],
+      [6, 67],
+      [-11, 166],
+      [-80, 131],
+      [-22, 19],
+      [-90, 14],
+      [-34, -26],
+      [-30, -2],
+      [-33, 8],
+      [-95, 47],
+      [-61, 110],
+      [3, 36],
+      [17, 66],
+      [18, 27],
+      [15, 44],
+      [7, 66],
+      [6, 184],
+      [-52, 208],
+      [-39, 141],
+      [104, 47],
+      [71, 45],
+      [8, 58],
+      [53, 98],
+      [66, 92],
+      [43, 94],
+      [-9, 57],
+      [19, 221],
+      [21, 24],
+      [42, 21],
+      [4, 28],
+      [-19, 122],
+      [-35, 125],
+      [-4, 82],
+      [13, 200],
+      [35, 111],
+      [67, 80],
+      [47, 74],
+      [7, 38],
+      [-1, 106],
+      [4, 22],
+      [24, 38],
+      [16, 16],
+      [39, 0],
+      [45, 22],
+      [84, 49],
+      [16, 16],
+      [128, 89],
+      [34, 56],
+      [114, 126],
+      [61, 22],
+      [-12, 108],
+      [-72, 116],
+      [-42, 30],
+      [-121, 101],
+      [-140, 127],
+      [-210, 510],
+      [-24, 97],
+      [-162, 189],
+      [-150, 260],
+      [-7, 48],
+      [11, 46],
+      [3, 199],
+      [-7, 40]
+    ],
+    [
+      [18793, 36254],
+      [-5, 66],
+      [26, 168],
+      [42, 66],
+      [38, 20],
+      [11, 25],
+      [6, 61],
+      [1, 52],
+      [-50, 357],
+      [-16, 72],
+      [-42, 141],
+      [-46, 50],
+      [-19, 38],
+      [-29, 115],
+      [5, 52],
+      [7, 26],
+      [32, 198],
+      [-7, 48],
+      [-35, 57],
+      [-24, 26],
+      [-20, 124],
+      [-14, 281],
+      [4, 94],
+      [-1, 75],
+      [-47, 168],
+      [-23, 97],
+      [-22, 261],
+      [36, 43],
+      [194, 96],
+      [112, 24],
+      [109, -1],
+      [245, -25],
+      [29, -20],
+      [69, -71],
+      [34, -55],
+      [13, -43],
+      [20, -39],
+      [55, -64],
+      [46, -28],
+      [46, 2],
+      [111, 21],
+      [30, 44],
+      [23, 92],
+      [10, 62],
+      [107, 214],
+      [30, 18],
+      [-1, 142],
+      [-2, 99],
+      [4, 207],
+      [0, 257],
+      [-8, 461],
+      [0, 471],
+      [0, 397]
+    ],
+    [
+      [19877, 41296],
+      [157, -1],
+      [1860, 1],
+      [125, 0],
+      [679, 1],
+      [329, 1],
+      [1759, 1],
+      [414, -1],
+      [818, 5],
+      [475, 2],
+      [306, -14],
+      [614, -1],
+      [1153, 3],
+      [372, 0],
+      [253, 0]
+    ],
+    [
+      [57109, 31251],
+      [0, 314],
+      [1, 248],
+      [-1, 295],
+      [1, 155],
+      [-2, 333],
+      [-43, 42],
+      [-34, 17],
+      [-180, 44],
+      [-132, -18],
+      [-9, -9],
+      [-183, -99],
+      [-99, 63],
+      [-103, 77],
+      [-12, 18],
+      [-28, 81]
+    ],
+    [
+      [56285, 32812],
+      [1, 64],
+      [10, 475],
+      [10, 430],
+      [8, 424],
+      [8, 409],
+      [4, 170],
+      [12, 564],
+      [16, 625],
+      [2, 109],
+      [15, 593],
+      [4, 178],
+      [4, 92],
+      [7, 219],
+      [-4, 62],
+      [5, 18],
+      [-60, 475],
+      [-67, 541],
+      [-43, 346],
+      [-47, 361],
+      [-25, 189],
+      [-47, 373],
+      [-29, 258],
+      [-30, 245]
+    ],
+    [
+      [56039, 40032],
+      [184, 0],
+      [759, -2],
+      [455, 1],
+      [275, 1],
+      [544, -2],
+      [243, 0],
+      [386, -1],
+      [362, -1],
+      [227, 0],
+      [452, 0],
+      [393, 0],
+      [368, 3],
+      [251, -1],
+      [223, 1],
+      [360, 1],
+      [252, -1],
+      [246, -5],
+      [518, 2],
+      [308, 2],
+      [498, 0],
+      [370, -1],
+      [494, -1],
+      [142, 0],
+      [-7, -25],
+      [42, -126],
+      [113, -113],
+      [16, -28],
+      [1, -199],
+      [-23, -57],
+      [-14, -21],
+      [-58, -17],
+      [-196, -204],
+      [-184, -239],
+      [-84, -193],
+      [-8, -45],
+      [451, 5],
+      [419, 4],
+      [313, 4]
+    ],
+    [
+      [65130, 38774],
+      [24, -66],
+      [62, -68],
+      [-3, -128],
+      [-50, 23],
+      [-34, -3],
+      [-60, -34],
+      [-15, -50],
+      [8, -25],
+      [37, -22],
+      [37, -13],
+      [38, -22],
+      [15, -27],
+      [-5, -20],
+      [-218, -161],
+      [-83, -25],
+      [-44, 10],
+      [-39, 22],
+      [-74, -53],
+      [-17, -37],
+      [6, -84],
+      [34, -62],
+      [28, -27],
+      [31, -10],
+      [39, 10],
+      [-46, -296],
+      [-89, -23],
+      [-111, 69],
+      [-21, -2],
+      [-21, -18],
+      [11, -200],
+      [-26, -24],
+      [-21, -4],
+      [-29, 37],
+      [-61, 11],
+      [-115, -139],
+      [-19, -92],
+      [25, -27],
+      [57, 5],
+      [78, 42],
+      [13, -59],
+      [-53, -166],
+      [-71, -4],
+      [-20, -16],
+      [-9, -36],
+      [18, -49],
+      [13, -16],
+      [22, -10],
+      [44, 9],
+      [35, -14],
+      [38, -62],
+      [6, -18],
+      [18, -196],
+      [-35, -48],
+      [-32, -13],
+      [-17, 6],
+      [-62, 41],
+      [-32, -16],
+      [-27, -31],
+      [-36, -139],
+      [-189, -54],
+      [-27, -77],
+      [1, -35]
+    ],
+    [
+      [64057, 36238],
+      [103, -103],
+      [18, -44],
+      [-10, -76],
+      [-107, -154],
+      [-200, -36],
+      [-17, 7],
+      [-23, 51],
+      [-47, 4],
+      [-23, -10],
+      [-8, -51],
+      [20, -126],
+      [-23, -34],
+      [-28, -4],
+      [-46, 38],
+      [-33, 4],
+      [-23, -52],
+      [-10, -91],
+      [41, -50],
+      [43, -45],
+      [2, -27],
+      [-23, -40],
+      [-33, -10],
+      [-47, 16],
+      [-23, -21],
+      [20, -560],
+      [-18, -51],
+      [-72, -61],
+      [-83, -38],
+      [-196, -31],
+      [-172, -314],
+      [-23, -27],
+      [-48, 4],
+      [-31, -18],
+      [-3, -32],
+      [32, -46],
+      [28, -29],
+      [1, -28],
+      [-24, -35],
+      [-47, -3],
+      [-30, -61],
+      [11, -57],
+      [31, -30],
+      [44, -21],
+      [17, -55],
+      [-15, -83],
+      [-144, -62],
+      [-101, -12],
+      [-131, -77],
+      [2, -32],
+      [96, -115],
+      [-58, -187],
+      [-134, -160],
+      [-9, -68],
+      [33, -107],
+      [-2, -30],
+      [-9, -19],
+      [-29, -22],
+      [-52, 12],
+      [-18, -12],
+      [-13, -57],
+      [12, -28],
+      [54, -50],
+      [50, -50],
+      [-6, -29],
+      [-34, -30],
+      [-134, -39],
+      [-15, -37],
+      [31, -59],
+      [168, -142],
+      [13, -60],
+      [-25, -48],
+      [-98, -27],
+      [80, -306],
+      [57, -132],
+      [46, -61],
+      [-3, -193],
+      [-71, -270],
+      [-75, -86]
+    ],
+    [
+      [62463, 31213],
+      [-184, 2],
+      [-299, 3],
+      [-273, 2],
+      [-101, -1],
+      [-602, 2],
+      [-508, 4],
+      [-522, 8],
+      [-387, 6],
+      [-483, 7],
+      [-185, 1],
+      [-313, 1],
+      [-258, 1],
+      [-287, 1],
+      [-527, 1],
+      [-425, 0]
+    ],
+    [
+      [8343, 33724],
+      [18, 21],
+      [33, 7],
+      [47, -16],
+      [53, 10],
+      [29, 25],
+      [8, 17],
+      [22, 3],
+      [38, -15],
+      [47, 0],
+      [31, 11],
+      [34, 34],
+      [22, -5],
+      [-1, -28],
+      [-12, -29],
+      [7, -33],
+      [39, -37],
+      [40, -15],
+      [47, 9],
+      [-2, -34],
+      [6, -33],
+      [10, -15],
+      [-5, -20],
+      [-50, -3],
+      [-31, -13],
+      [-55, -42],
+      [-5, -13],
+      [-52, -14],
+      [-39, -3],
+      [-20, -22],
+      [-23, -8],
+      [-88, 59],
+      [-19, 22],
+      [-20, 50],
+      [-16, 11],
+      [-20, 51],
+      [-28, 42],
+      [-45, 26]
+    ],
+    [
+      [9197, 33870],
+      [35, -5],
+      [28, 4],
+      [30, -19],
+      [25, -3],
+      [40, -26],
+      [34, -45],
+      [91, -17],
+      [34, 8],
+      [28, 38],
+      [-9, 15],
+      [29, 31],
+      [37, 1],
+      [13, 9],
+      [69, -31],
+      [17, -18],
+      [-22, -23],
+      [-19, -10],
+      [-9, -40],
+      [-25, -25],
+      [-28, 2],
+      [-27, -16],
+      [-54, -7],
+      [-3, 5],
+      [-78, -8],
+      [-51, -34],
+      [-31, -8],
+      [-27, -24],
+      [-40, 11],
+      [-28, -12],
+      [-71, 9],
+      [-87, 19],
+      [-57, 25],
+      [-21, 72],
+      [15, 37],
+      [1, 22],
+      [-31, 34],
+      [-44, 32],
+      [-13, 28],
+      [8, 20],
+      [52, -11],
+      [63, -4],
+      [59, -29],
+      [13, -18],
+      [20, -2],
+      [34, 13]
+    ],
+    [
+      [7945, 33833],
+      [41, -14],
+      [47, 45],
+      [21, -11],
+      [24, 4],
+      [53, 53],
+      [14, -35],
+      [-7, -23],
+      [22, -9],
+      [29, 7],
+      [23, -18],
+      [31, -47],
+      [-27, -12],
+      [-58, 3],
+      [-19, -12],
+      [-32, 9],
+      [-63, 34],
+      [-34, -17],
+      [-50, 7],
+      [-20, 26],
+      [5, 10]
+    ],
+    [
+      [9654, 31910],
+      [30, 11],
+      [43, -30],
+      [86, -46],
+      [54, -67],
+      [-27, -22],
+      [-59, -10],
+      [-67, 19],
+      [-11, 10],
+      [-52, 16],
+      [-36, 36],
+      [-26, 79],
+      [32, -19],
+      [33, 23]
+    ],
+    [
+      [9879, 33737],
+      [-27, 14],
+      [7, 15],
+      [23, -2],
+      [-3, -27]
+    ],
+    [
+      [11551, 30939],
+      [-21, 27],
+      [-28, 98],
+      [-18, 32],
+      [-24, 29],
+      [-25, 98],
+      [-17, 18],
+      [-19, -1],
+      [2, 41],
+      [21, 12],
+      [35, -5],
+      [20, -23],
+      [10, -47],
+      [35, -64],
+      [21, -25],
+      [60, -93],
+      [21, -26],
+      [46, -36],
+      [26, -35],
+      [143, -142],
+      [31, -44],
+      [-14, -5],
+      [-36, 12],
+      [-27, -2],
+      [-58, -59],
+      [-5, 16],
+      [-31, 35],
+      [-58, 53],
+      [-22, 7],
+      [-15, 18],
+      [-20, 43],
+      [0, 19],
+      [-33, 49]
+    ],
+    [
+      [11597, 32337],
+      [27, -9],
+      [14, 6],
+      [60, -49],
+      [41, -4],
+      [77, -44],
+      [26, -7],
+      [6, -48],
+      [102, -132],
+      [13, -39],
+      [-3, -25],
+      [-22, -24],
+      [-16, -5],
+      [-33, 16],
+      [-32, 25],
+      [-27, 12],
+      [-52, 2],
+      [-70, -6],
+      [-47, 19],
+      [-30, 46],
+      [-13, 31],
+      [19, 75],
+      [-12, 65],
+      [-7, 20],
+      [-28, 11],
+      [-23, -5],
+      [-13, 21],
+      [-27, 10],
+      [-39, -3],
+      [-23, 15],
+      [-9, 23],
+      [-34, 47],
+      [15, 17],
+      [77, 1],
+      [26, -15],
+      [57, -47]
+    ],
+    [
+      [4305, 43447],
+      [-30, -1],
+      [-22, 22],
+      [29, 28],
+      [18, -6],
+      [5, -43]
+    ],
+    [
+      [3197, 43062],
+      [17, 15],
+      [14, -21],
+      [-6, -19],
+      [-21, 4],
+      [-4, 21]
+    ],
+    [
+      [4379, 43381],
+      [16, 14],
+      [21, -45],
+      [-25, -8],
+      [-12, 39]
+    ],
+    [
+      [968, 53907],
+      [206, -4],
+      [520, -3],
+      [367, 11],
+      [234, 1],
+      [281, -3],
+      [217, 12],
+      [142, 10],
+      [204, -12],
+      [82, 0],
+      [682, 4],
+      [248, 9],
+      [229, 3],
+      [165, -4],
+      [240, -1],
+      [297, -9],
+      [580, -9],
+      [202, -4],
+      [271, -4],
+      [187, -1],
+      [335, -1],
+      [222, -8],
+      [290, 1],
+      [348, 0],
+      [756, -1],
+      [534, 3]
+    ],
+    [
+      [8807, 53897],
+      [-1, -2045],
+      [1, -784],
+      [6, -942],
+      [0, -599],
+      [-2, -481],
+      [-7, -734],
+      [-1, -148],
+      [-3, -699],
+      [-5, -333],
+      [0, -222],
+      [9, -570],
+      [180, -167],
+      [589, -551],
+      [255, -239],
+      [227, -216],
+      [377, -357],
+      [706, -676],
+      [592, -579],
+      [723, -707],
+      [386, -380],
+      [617, -617],
+      [623, -629],
+      [308, -311],
+      [954, -981],
+      [727, -758],
+      [343, -361],
+      [416, -438],
+      [79, -83],
+      [448, -480],
+      [251, -268],
+      [206, -223],
+      [28, -28],
+      [410, -444],
+      [225, -246],
+      [319, -347]
+    ],
+    [
+      [18632, 30493],
+      [-1388, -130],
+      [-764, -78],
+      [-428, -46],
+      [-529, -56],
+      [-1367, -156],
+      [-16, 105],
+      [1, 54],
+      [-12, 76],
+      [-38, 84],
+      [-38, 53],
+      [-31, 18],
+      [-30, -2],
+      [-20, -12],
+      [-23, -30],
+      [-19, -5],
+      [-17, 78],
+      [-4, 65],
+      [9, 68],
+      [-4, 86],
+      [-12, 41],
+      [-37, 48],
+      [-2, 44],
+      [16, 30],
+      [16, -7],
+      [17, 27],
+      [8, 37],
+      [-5, 66],
+      [-11, 78],
+      [-38, 205],
+      [-24, 56],
+      [-30, 101],
+      [-10, 47],
+      [-25, 72],
+      [-63, 118],
+      [-74, 113],
+      [-81, 139],
+      [-45, 70],
+      [-67, 95],
+      [-78, 80],
+      [-45, 34],
+      [-45, 19],
+      [-22, 50],
+      [-44, 61],
+      [-26, 26],
+      [-73, 53],
+      [-12, -20],
+      [-45, 17],
+      [-21, 57],
+      [-65, 83],
+      [-43, 64],
+      [-55, 27],
+      [-48, 54],
+      [-68, 47],
+      [-43, 18],
+      [-51, 15],
+      [-25, 37],
+      [-112, 86],
+      [-54, 56],
+      [-65, 88],
+      [-45, 47],
+      [-23, 11],
+      [-59, 48],
+      [-45, 18],
+      [-44, 7],
+      [-13, -35],
+      [12, -80],
+      [-49, -2],
+      [-95, -33],
+      [-72, 12],
+      [-37, 11],
+      [-70, 49],
+      [-11, 12],
+      [-45, 11],
+      [-22, -14],
+      [-27, 16],
+      [-32, 82],
+      [44, 65],
+      [20, 10],
+      [5, 28],
+      [-1, 64],
+      [-39, 109],
+      [-55, 142],
+      [-34, 73],
+      [-44, 72],
+      [-34, 45],
+      [-31, 30],
+      [-44, 28],
+      [-49, 8],
+      [-64, -7],
+      [-11, -6],
+      [-109, 6],
+      [-21, -14],
+      [-50, -10],
+      [-49, 8],
+      [-23, -1],
+      [-72, -27],
+      [-40, -51],
+      [-66, 66],
+      [-26, 17],
+      [-77, 13],
+      [-60, 16],
+      [-18, -6],
+      [-31, 12],
+      [-43, 30],
+      [-50, 16],
+      [-61, 42],
+      [-61, 19],
+      [-34, 20],
+      [-18, 2],
+      [-22, -12],
+      [-38, 14],
+      [-109, 98],
+      [-27, 14],
+      [-24, 4],
+      [-39, 75],
+      [-37, 95],
+      [-16, 54],
+      [-8, 46],
+      [-16, 35],
+      [-23, 20],
+      [-21, -5],
+      [-20, 7],
+      [-46, 38],
+      [-21, 35],
+      [-40, 38],
+      [-37, -3],
+      [-70, 87],
+      [-15, 8],
+      [-47, 46],
+      [-21, 3],
+      [-71, 27],
+      [-49, 24],
+      [-42, 45],
+      [-106, 19],
+      [-41, -13],
+      [-19, 4],
+      [-43, -3],
+      [-30, -10],
+      [-7, -23],
+      [-32, -20],
+      [-38, 2],
+      [-30, 17],
+      [-75, 33],
+      [-17, 4],
+      [-76, -4],
+      [-33, -20],
+      [-38, 2],
+      [-95, 64],
+      [-58, 3],
+      [-29, 24],
+      [-68, 39],
+      [-57, 8],
+      [-22, -5],
+      [-70, -3],
+      [-56, 24],
+      [-42, 9],
+      [-79, -7],
+      [-78, 0],
+      [-23, -6],
+      [-84, 0],
+      [-23, 6],
+      [-12, -9],
+      [-74, -21],
+      [-187, -18],
+      [-18, -11],
+      [-37, 2],
+      [-9, 69],
+      [-26, 37],
+      [-39, 83],
+      [-25, 21],
+      [-105, 65],
+      [-51, -1],
+      [-26, -6],
+      [-28, 30],
+      [-15, 38],
+      [10, 59],
+      [28, 76],
+      [43, 145],
+      [1, 44],
+      [-25, 53],
+      [-21, 19],
+      [-21, 45],
+      [27, 94],
+      [25, 125],
+      [-1, 39],
+      [-11, 22],
+      [-43, 34],
+      [-6, 35],
+      [-9, 17],
+      [-44, 8],
+      [58, 249],
+      [12, 76],
+      [6, 72],
+      [-2, 102],
+      [-9, 55],
+      [-28, 61],
+      [-21, 14],
+      [-24, -1],
+      [-44, 46],
+      [-29, 12],
+      [-37, 6],
+      [-38, -9],
+      [-11, -38],
+      [-34, 23],
+      [-13, 22],
+      [-36, 19],
+      [-77, 49],
+      [-18, 5],
+      [-31, 48],
+      [-44, 56],
+      [14, 76],
+      [18, 41],
+      [23, 83],
+      [8, 50],
+      [1, 35],
+      [-7, 82],
+      [-6, 25],
+      [-29, 68],
+      [-22, 31],
+      [-21, 17],
+      [-72, -6],
+      [-43, 34],
+      [-63, 1],
+      [-41, 61],
+      [-51, 57],
+      [-13, 6],
+      [-77, 99],
+      [-46, 111],
+      [-33, 33],
+      [-43, 74],
+      [-41, 20],
+      [-12, -6],
+      [-104, 40],
+      [-63, 44],
+      [-9, 38],
+      [-46, 61],
+      [-2, 99],
+      [-31, 77],
+      [-45, 53],
+      [-59, 49],
+      [-34, 53],
+      [-12, 27],
+      [-49, 29],
+      [-43, 47],
+      [-2, 48],
+      [-17, 39],
+      [-25, 127],
+      [-32, 76],
+      [-15, 16],
+      [-38, 19],
+      [-80, 27],
+      [-29, 64],
+      [-5, 37],
+      [-26, 18],
+      [-22, 39],
+      [-20, 68],
+      [-94, 129],
+      [-69, 74],
+      [-117, 82],
+      [-32, 17],
+      [-31, 0],
+      [-41, 42],
+      [-6, 24],
+      [-24, 44],
+      [-42, 28],
+      [-26, 35],
+      [-11, 38],
+      [3, 57],
+      [-23, 45],
+      [6, 60],
+      [-7, 41],
+      [-16, 15],
+      [-6, 27],
+      [5, 28],
+      [-20, 70],
+      [-21, 47],
+      [-9, 33],
+      [6, 53],
+      [-11, 39],
+      [35, 8],
+      [-13, 88],
+      [-18, 16],
+      [-28, -5],
+      [-28, 23],
+      [4, 23],
+      [53, 89],
+      [6, 40],
+      [27, 2],
+      [63, -64],
+      [2, -19],
+      [33, 7],
+      [20, 17],
+      [34, 48],
+      [32, 68],
+      [20, 65],
+      [14, 79],
+      [2, 91],
+      [33, 136],
+      [-6, 28],
+      [-34, 84],
+      [-34, 78],
+      [-64, 131],
+      [-33, 47],
+      [-49, 48],
+      [-44, 23],
+      [-18, 0],
+      [-22, -17],
+      [-40, -44],
+      [-20, 12],
+      [-53, 15],
+      [-21, -6],
+      [-7, -28],
+      [-73, -7],
+      [-74, 19],
+      [-64, 48],
+      [-27, 15],
+      [-59, 57],
+      [-36, 26],
+      [-86, 115],
+      [-15, 33],
+      [-45, 74],
+      [-40, 37],
+      [-58, 2],
+      [-1, 47],
+      [-12, 21],
+      [-29, 29],
+      [-13, 43],
+      [-23, 21],
+      [-21, 5],
+      [-27, 32],
+      [-4, 60],
+      [-16, 34],
+      [-5, 39],
+      [13, 44],
+      [19, 180],
+      [1, 56],
+      [-16, 39],
+      [-26, 45],
+      [-38, 109],
+      [-4, 65],
+      [-12, 48],
+      [-37, 50],
+      [-40, -21],
+      [-10, 8],
+      [-33, 66],
+      [-5, 40],
+      [11, 38],
+      [-8, 60],
+      [1, 36],
+      [30, 23],
+      [8, 32],
+      [5, 80],
+      [-5, 107],
+      [-18, 94],
+      [-10, 120],
+      [-5, 24],
+      [17, 19],
+      [37, 6],
+      [14, 51],
+      [27, -16],
+      [70, 16],
+      [34, 2],
+      [18, -15],
+      [24, -38],
+      [17, -140],
+      [36, -14],
+      [-9, -37],
+      [-17, 7],
+      [-42, -26],
+      [10, -71],
+      [25, -43],
+      [-2, -25],
+      [-22, -10],
+      [2, -27],
+      [39, -29],
+      [18, -26],
+      [-6, -12],
+      [-27, 7],
+      [-10, -21],
+      [34, -33],
+      [80, -4],
+      [3, -18],
+      [18, -21],
+      [81, -6],
+      [34, -38],
+      [56, -49],
+      [33, -3],
+      [3, -38],
+      [49, -46],
+      [24, -7],
+      [29, 17],
+      [23, -20],
+      [30, 19],
+      [-1, 54],
+      [-31, 80],
+      [-16, 17],
+      [-18, 53],
+      [3, 31],
+      [-14, 101],
+      [-19, 68],
+      [-76, 76],
+      [-18, 2],
+      [-62, 59],
+      [-20, 44],
+      [1, 14],
+      [27, 22],
+      [-40, 28],
+      [-55, 14],
+      [-69, 34],
+      [-5, 65],
+      [19, 34],
+      [36, 18],
+      [5, 44],
+      [-17, 66],
+      [1, 48],
+      [-26, 33],
+      [-20, 7],
+      [-42, 0],
+      [-10, -11],
+      [-30, 2],
+      [-20, 13],
+      [-2, 31],
+      [-43, 37],
+      [-31, 65],
+      [28, 0],
+      [29, -18],
+      [60, 56],
+      [10, 30],
+      [-13, 45],
+      [18, 5],
+      [36, -15],
+      [35, 23],
+      [38, -5],
+      [32, 30],
+      [39, 55],
+      [0, 17],
+      [-19, 58],
+      [-19, 21],
+      [-35, 57],
+      [-24, 25],
+      [-96, 66],
+      [-69, 23],
+      [-12, -36],
+      [-55, -49],
+      [-29, 5],
+      [-55, -10],
+      [-13, -17],
+      [14, -92],
+      [-15, -38],
+      [-14, -61],
+      [3, -33],
+      [31, -29],
+      [34, -11],
+      [19, -18],
+      [8, -29],
+      [-15, -15],
+      [-29, 7],
+      [-34, -43],
+      [9, -68],
+      [-26, 4],
+      [-6, -26],
+      [17, -18],
+      [29, -8],
+      [11, -40],
+      [25, -22],
+      [19, -2],
+      [19, -31],
+      [-22, -25],
+      [-22, -6],
+      [-35, 12],
+      [-4, -24],
+      [12, -79],
+      [-13, -15],
+      [-41, -11],
+      [-34, 6],
+      [-47, 29],
+      [-23, 39],
+      [-43, 19],
+      [-31, 40],
+      [-48, 28],
+      [-24, 28],
+      [-31, 18],
+      [-48, 5],
+      [-38, -32],
+      [-46, 28],
+      [-18, 53],
+      [-33, 25],
+      [-21, 6],
+      [-32, 34],
+      [-26, 63],
+      [-45, 51],
+      [-65, 51],
+      [-48, 21],
+      [-107, 17],
+      [-32, -8],
+      [-29, -22],
+      [-18, -40],
+      [14, -30],
+      [-92, 6],
+      [23, 22],
+      [36, 97],
+      [59, 179],
+      [16, 65],
+      [6, 39],
+      [-9, 55],
+      [-22, 28],
+      [-5, 39],
+      [-44, 78],
+      [9, 11],
+      [34, 13],
+      [3, 20],
+      [-19, 43],
+      [-17, 14],
+      [-33, 60],
+      [-37, 34],
+      [-27, 8],
+      [-23, -8],
+      [-5, -28],
+      [-19, 7],
+      [-20, 51],
+      [11, 32],
+      [1, 62],
+      [-32, 78],
+      [-34, 63],
+      [-35, 55],
+      [-12, 33],
+      [-31, 23],
+      [-39, 39],
+      [-67, 49],
+      [-88, 42],
+      [-70, 73],
+      [-18, 9],
+      [-65, 55],
+      [-21, 62],
+      [-12, 17],
+      [-41, 27],
+      [-14, 37],
+      [-49, 87],
+      [-50, 77],
+      [-17, 32],
+      [-37, 43],
+      [-53, 39],
+      [-46, 24],
+      [-19, 30],
+      [-16, 37],
+      [-16, 21],
+      [-56, 54],
+      [-26, 12],
+      [-26, 28],
+      [-10, 22],
+      [-62, 54],
+      [-16, 4],
+      [-14, 50],
+      [-9, 18],
+      [-53, 53],
+      [-41, 50],
+      [-28, 10],
+      [-2, 48],
+      [-23, 45],
+      [18, 6],
+      [33, 52],
+      [27, 69],
+      [13, 67],
+      [-8, 66],
+      [-36, 129],
+      [-15, 43],
+      [-27, 36],
+      [-11, 64],
+      [-35, 67],
+      [-9, 5],
+      [-17, 47],
+      [-5, 63],
+      [-19, 68],
+      [-30, 37],
+      [1, 33],
+      [-15, 53],
+      [5, 29],
+      [-25, 49],
+      [-8, 63],
+      [8, 28],
+      [0, 68],
+      [14, 100],
+      [35, 115],
+      [22, 44],
+      [32, 109],
+      [-1, 18],
+      [-38, 113],
+      [10, 43],
+      [-8, 97],
+      [-11, 61],
+      [-29, 67],
+      [-40, 31],
+      [-16, 74],
+      [2, 60],
+      [-5, 49],
+      [-22, 92],
+      [-56, 34],
+      [-48, 44],
+      [-42, 118],
+      [-46, 32],
+      [-15, 38],
+      [-32, 63],
+      [-29, 27],
+      [-75, 101],
+      [-38, 28],
+      [-30, -4],
+      [-14, 18],
+      [-1, 91],
+      [-12, 32],
+      [-44, 64],
+      [-55, 31],
+      [-57, 20],
+      [-32, 16],
+      [-50, 77],
+      [-30, 27],
+      [-51, 32],
+      [-71, 62],
+      [-45, 44],
+      [-13, 28],
+      [-29, 16],
+      [-37, 43],
+      [-1, 39],
+      [30, 97],
+      [-10, 42],
+      [-18, 47],
+      [-5, 63],
+      [-15, 45],
+      [-34, 36],
+      [-20, 38],
+      [-13, 40],
+      [24, 61],
+      [22, 70],
+      [-4, 38],
+      [14, 45],
+      [29, 65],
+      [64, 171],
+      [31, 63],
+      [44, 97],
+      [76, 140],
+      [37, 86],
+      [49, 90],
+      [47, 97],
+      [34, 82],
+      [40, 125],
+      [35, 161],
+      [11, 98],
+      [-25, 51],
+      [-23, 15],
+      [-29, -2],
+      [-2, 85],
+      [-11, 30],
+      [3, 58],
+      [-12, 19],
+      [13, 34],
+      [27, 4],
+      [40, 114],
+      [29, 100],
+      [1, 28],
+      [26, 119],
+      [37, 220],
+      [17, 163],
+      [-5, 77],
+      [-18, 80],
+      [-11, 24],
+      [-1, 92],
+      [-19, 15],
+      [-16, 39],
+      [7, 41],
+      [-7, 43],
+      [-25, 36],
+      [-11, 60],
+      [-28, 42],
+      [-15, 131],
+      [-20, 50],
+      [-20, 28],
+      [-23, 15],
+      [-26, -25],
+      [-23, 28],
+      [-67, 60],
+      [-17, 1],
+      [-14, 30],
+      [21, 23],
+      [27, 67],
+      [20, 70],
+      [21, 105],
+      [9, 133],
+      [-3, 107],
+      [-12, 38]
+    ],
+    [
+      [38481, 51391],
+      [363, 1],
+      [528, 0],
+      [394, 1],
+      [530, 1],
+      [141, 0],
+      [254, -1],
+      [171, 1],
+      [404, -1],
+      [494, 0],
+      [446, 1],
+      [1, -638],
+      [-1, -534],
+      [0, -366],
+      [-1, -617],
+      [1, -367]
+    ],
+    [
+      [42206, 48872],
+      [0, -386],
+      [2, -440],
+      [2, -345],
+      [0, -291],
+      [2, -304],
+      [3, -646],
+      [3, -589],
+      [0, -363],
+      [0, -414],
+      [0, -306],
+      [1, -339],
+      [1, -812],
+      [2, -314],
+      [3, -311],
+      [-1, -366],
+      [0, -317],
+      [0, -144],
+      [0, -532],
+      [-1, -375]
+    ],
+    [
+      [42223, 41278],
+      [-264, 1],
+      [-318, 2],
+      [-401, 2],
+      [-567, 11],
+      [-208, -3],
+      [-28, 4]
+    ],
+    [
+      [40437, 41295],
+      [-156, 0],
+      [-1204, -5],
+      [-511, -4],
+      [-1348, -7],
+      [-500, -1],
+      [-224, 6],
+      [-185, -1],
+      [-422, 2],
+      [-335, -1],
+      [-170, 1],
+      [-517, -1],
+      [-468, -3],
+      [-425, -2],
+      [-262, -2],
+      [-109, 1],
+      [-361, -2],
+      [-244, 19],
+      [-782, 0],
+      [-113, 0],
+      [-1501, -1],
+      [-169, 0],
+      [-449, -1],
+      [-622, -1],
+      [-169, 1]
+    ],
+    [
+      [29191, 41293],
+      [1, 285],
+      [-2, 663],
+      [8, 393],
+      [-1, 220],
+      [1, 241],
+      [0, 309],
+      [-3, 349],
+      [2, 458],
+      [-33, 302],
+      [0, 567],
+      [1, 555],
+      [10, 465],
+      [1, 97],
+      [4, 460],
+      [0, 610],
+      [0, 330],
+      [0, 411],
+      [1, 1005],
+      [0, 413],
+      [2, 801],
+      [3, 287],
+      [-4, 876]
+    ],
+    [
+      [29182, 51390],
+      [1488, -2],
+      [618, 5],
+      [1118, 2],
+      [590, 2],
+      [266, -1],
+      [752, -3],
+      [125, -2],
+      [122, -5],
+      [483, -6],
+      [616, 0],
+      [844, 3],
+      [621, 0],
+      [113, 0],
+      [717, 9],
+      [526, 0],
+      [300, -1]
+    ],
+    [
+      [98503, 53931],
+      [9, -421],
+      [9, -294],
+      [0, -322],
+      [-15, -455],
+      [-39, 8],
+      [-39, -19],
+      [-5, -43],
+      [16, -27],
+      [4, -101],
+      [-15, -25],
+      [-37, -31]
+    ],
+    [
+      [98391, 52201],
+      [-16, 22],
+      [-34, 14],
+      [-57, -11],
+      [-36, 15],
+      [-17, -1],
+      [-21, -20],
+      [-27, -13],
+      [-20, 13],
+      [-12, -23],
+      [-62, -10],
+      [-117, 7],
+      [-51, -51],
+      [-41, 0],
+      [-51, 28],
+      [-30, 31],
+      [-25, 1],
+      [-22, -25],
+      [-2, -35],
+      [-17, -20],
+      [-23, 19],
+      [-49, -1],
+      [1, -21],
+      [-19, -18],
+      [-105, -13],
+      [-30, 13],
+      [-27, -14],
+      [1, -20],
+      [-72, -20],
+      [-22, 42],
+      [-100, 2],
+      [-38, -23],
+      [-24, 2],
+      [-39, -27],
+      [-50, 7],
+      [-26, -31],
+      [-44, 44],
+      [-23, 9],
+      [-27, -7],
+      [-36, 8],
+      [-68, -15],
+      [-35, 3],
+      [-23, -24],
+      [-18, -32],
+      [-30, -1],
+      [-3, 24],
+      [-19, 13],
+      [-19, -11],
+      [-41, 30],
+      [-59, -5],
+      [-60, -32],
+      [-15, 12],
+      [-39, 0],
+      [-12, -23],
+      [-51, -13],
+      [-42, 12],
+      [19, 32],
+      [-27, 58],
+      [-22, -8],
+      [-1, -28],
+      [-28, -26],
+      [-49, -17],
+      [-45, -46],
+      [-53, -74],
+      [-14, 8],
+      [-53, 7],
+      [-53, -41],
+      [-49, -55],
+      [-10, -54],
+      [-36, -10],
+      [-74, 35],
+      [-14, 15],
+      [-47, -21],
+      [-47, -39],
+      [-13, 3],
+      [-24, -44],
+      [-27, -23],
+      [-45, 27],
+      [-18, -6],
+      [-29, -24],
+      [-35, -16],
+      [-77, -15],
+      [-37, -41],
+      [-15, -3],
+      [-25, -33],
+      [-40, -42],
+      [-29, 1],
+      [-33, -15],
+      [-17, -38],
+      [-30, 30],
+      [-43, -23],
+      [0, -24],
+      [-11, -25],
+      [-16, 6],
+      [-8, 25],
+      [-30, -19],
+      [-30, -34],
+      [-4, -23],
+      [-26, -2],
+      [-2, 24],
+      [-35, 12],
+      [-74, -33],
+      [-26, -43]
+    ],
+    [
+      [95045, 51350],
+      [5, 67],
+      [-29, 47],
+      [-107, 178],
+      [164, 103],
+      [292, 180],
+      [-127, 208],
+      [12, 179],
+      [13, 171],
+      [14, 235],
+      [16, 225],
+      [31, 525],
+      [33, 568]
+    ],
+    [
+      [95362, 54036],
+      [359, -6],
+      [120, -6],
+      [328, -12],
+      [353, -6],
+      [94, -3],
+      [-6, -98],
+      [93, 14],
+      [17, 45],
+      [3, 38],
+      [111, 2],
+      [556, -9],
+      [487, -8],
+      [141, -7],
+      [482, -10],
+      [3, -39]
+    ],
+    [
+      [88602, 46176],
+      [147, 153],
+      [244, -258],
+      [-171, -180],
+      [-69, -76]
+    ],
+    [
+      [88753, 45815],
+      [13, 149],
+      [-17, 53],
+      [-51, 72],
+      [-41, 11],
+      [-20, 17],
+      [-35, 59]
+    ],
+    [
+      [75199, 36220],
+      [358, -3],
+      [360, 0],
+      [489, -1],
+      [99, 13],
+      [132, 1],
+      [123, 3],
+      [697, 18]
+    ],
+    [
+      [77457, 36251],
+      [-64, -192],
+      [-186, -119],
+      [-45, -113],
+      [-30, -29],
+      [-76, -82],
+      [-28, -120],
+      [-25, -64],
+      [3, -36],
+      [24, -35],
+      [87, -87],
+      [94, -73],
+      [137, -60],
+      [-5, -21],
+      [154, -193],
+      [27, -29],
+      [71, -52],
+      [52, -23],
+      [50, 21],
+      [76, 8],
+      [68, 0],
+      [36, -18],
+      [15, -25],
+      [49, -114],
+      [174, -373],
+      [25, -116],
+      [-5, -13],
+      [5, -37],
+      [18, -80],
+      [27, -71],
+      [25, -24],
+      [50, -23],
+      [17, -29],
+      [17, -42],
+      [34, -38],
+      [142, -335],
+      [252, -227],
+      [11, -5],
+      [36, 4],
+      [147, -114],
+      [43, -46],
+      [101, -125],
+      [53, -167],
+      [41, -140],
+      [32, -37],
+      [83, -63],
+      [19, 0],
+      [48, -12],
+      [56, -28],
+      [42, -29],
+      [148, -210],
+      [101, -181],
+      [18, -196],
+      [94, -211],
+      [289, -330],
+      [143, -54],
+      [146, -125],
+      [56, -54],
+      [28, -36],
+      [10, -29],
+      [-6, -49],
+      [-10, -39],
+      [142, -387],
+      [35, -160],
+      [-19, -276],
+      [-7, -21],
+      [13, -27],
+      [42, -58],
+      [76, -66],
+      [36, -21],
+      [20, -3],
+      [80, -52],
+      [142, -182],
+      [58, -249],
+      [50, -48],
+      [12, -20],
+      [23, -91],
+      [3, -50],
+      [-14, -24],
+      [11, -288],
+      [9, -112],
+      [7, -11],
+      [96, -64],
+      [35, -8],
+      [293, -126]
+    ],
+    [
+      [81594, 28767],
+      [49, -28],
+      [30, 1],
+      [5, -32],
+      [-15, -58],
+      [-27, -48],
+      [-37, -26],
+      [-27, -25],
+      [-26, -14],
+      [-33, 3],
+      [-2, 30],
+      [-34, 1],
+      [-44, -40],
+      [-7, -44],
+      [14, -20],
+      [26, -10],
+      [24, 3],
+      [13, -10],
+      [-24, -33],
+      [-45, -46],
+      [-39, -51],
+      [-14, -2],
+      [-27, 27],
+      [-50, 22],
+      [-44, 2],
+      [12, -48],
+      [-8, -33],
+      [-25, -22],
+      [1, -18],
+      [35, -16],
+      [32, 1],
+      [6, -26],
+      [-20, -25],
+      [-39, -86],
+      [-16, -19],
+      [-38, -21],
+      [-62, -76],
+      [-14, -5],
+      [-42, 18],
+      [-60, 13],
+      [-20, -35],
+      [33, -45],
+      [46, -25],
+      [18, 17],
+      [23, 4],
+      [15, -10],
+      [-10, -53],
+      [9, -51],
+      [-3, -79],
+      [-31, -75],
+      [-19, -59],
+      [-24, -36],
+      [-11, -1],
+      [-13, 31],
+      [-34, 1],
+      [-19, -27],
+      [-49, -13],
+      [-25, 9],
+      [-11, -19],
+      [-7, -40],
+      [10, -9],
+      [76, -4],
+      [34, 26],
+      [33, -25],
+      [8, -27],
+      [-23, -34],
+      [-28, -77],
+      [-78, -127],
+      [-22, -46],
+      [-38, -94],
+      [-7, -103],
+      [27, -6],
+      [25, -22],
+      [-11, -29],
+      [-26, -36],
+      [-4, -88],
+      [-11, -26],
+      [-12, -48],
+      [2, -36],
+      [-10, -12],
+      [-38, 4],
+      [-47, -53],
+      [-29, -50],
+      [-11, -28],
+      [2, -17],
+      [-16, -32],
+      [-35, -9],
+      [-24, 3],
+      [-7, -69],
+      [4, -86],
+      [-25, -116],
+      [-10, -26],
+      [-27, 3],
+      [-31, -6],
+      [-33, -49],
+      [-40, -28],
+      [-5, -19],
+      [12, -20],
+      [21, -9],
+      [17, 13],
+      [24, -14],
+      [12, -22],
+      [38, 0],
+      [12, 44],
+      [22, 9],
+      [9, -50],
+      [-3, -125],
+      [-43, -182],
+      [-34, -65],
+      [-16, -49],
+      [-9, -53],
+      [1, -71],
+      [19, -66],
+      [10, -15]
+    ],
+    [
+      [80555, 25424],
+      [-187, 7],
+      [-115, 14],
+      [-34, 46],
+      [-24, -6],
+      [-154, 27],
+      [-23, 13],
+      [-16, 32],
+      [-34, 22],
+      [-88, 47],
+      [-63, -9],
+      [-52, 16],
+      [-70, 74],
+      [-174, -85],
+      [-44, -16],
+      [-51, -267],
+      [2, -53],
+      [22, -55],
+      [46, -95],
+      [14, -81],
+      [-21, -112],
+      [1, -55],
+      [-63, -341],
+      [-139, 11],
+      [-75, -22],
+      [-12, 5],
+      [-34, 41],
+      [-27, 64],
+      [-11, 58],
+      [8, 78],
+      [-12, 111],
+      [-4, 171],
+      [-81, 11],
+      [-217, 19],
+      [-362, 30],
+      [-241, 19],
+      [-335, 27],
+      [-480, 38],
+      [-321, 26],
+      [-150, 12],
+      [-413, 30],
+      [-370, 27],
+      [-130, 10],
+      [-378, 26],
+      [-368, 23],
+      [-472, 28],
+      [-614, 38],
+      [-58, 99],
+      [-85, 347],
+      [-33, 57],
+      [-45, 62],
+      [-28, 91],
+      [-7, 74]
+    ],
+    [
+      [73933, 26158],
+      [6, 33],
+      [-57, 208],
+      [-11, 30],
+      [-76, 123],
+      [-29, 9],
+      [-15, 13],
+      [-14, 53],
+      [-8, 181],
+      [20, 63],
+      [25, 64],
+      [37, 300],
+      [50, 286],
+      [-30, 196],
+      [-55, 56],
+      [-72, 137],
+      [-2, 55],
+      [14, 40],
+      [-11, 87],
+      [-30, 40],
+      [-1, 143],
+      [16, 122],
+      [49, 68],
+      [46, 75],
+      [18, 50],
+      [41, 150],
+      [-11, 98],
+      [15, 200],
+      [97, 108],
+      [58, 25],
+      [80, 97],
+      [24, 76],
+      [-14, 45],
+      [-41, 49],
+      [-118, 54],
+      [-12, 37],
+      [39, 112],
+      [15, 79],
+      [-8, 84],
+      [-27, 61],
+      [-6, 109],
+      [-11, 27],
+      [-28, 48],
+      [-41, 42],
+      [-47, 62],
+      [-20, 49],
+      [-45, 99],
+      [-19, 108],
+      [-42, 151],
+      [10, 48],
+      [16, 20],
+      [-113, 248],
+      [-70, 467],
+      [-28, 186],
+      [-106, 754],
+      [-82, 567],
+      [-45, 305],
+      [-69, 480],
+      [-42, 295],
+      [-76, 518],
+      [-74, 474],
+      [-22, 129],
+      [-51, 332],
+      [-21, 130],
+      [-57, 384],
+      [-22, 161],
+      [-19, 152]
+    ],
+    [
+      [72811, 36210],
+      [449, -3],
+      [161, 4],
+      [181, 3],
+      [251, 2],
+      [197, 2],
+      [245, 0],
+      [347, 1],
+      [208, 0],
+      [214, 0],
+      [135, 1]
+    ],
+    [
+      [68726, 55152],
+      [5, -51],
+      [-10, -129],
+      [-4, -90],
+      [-29, -59],
+      [-19, -79],
+      [-7, -72],
+      [12, -80],
+      [30, -96],
+      [23, -60],
+      [109, -201],
+      [31, -52],
+      [26, -31],
+      [53, -50],
+      [20, -44],
+      [5, -73],
+      [71, -243],
+      [12, -73],
+      [23, -34],
+      [-9, -21],
+      [1, -34],
+      [13, -59],
+      [16, -47],
+      [37, -57],
+      [8, -46],
+      [29, -50],
+      [34, -35],
+      [22, -10],
+      [12, -61],
+      [1, -40]
+    ],
+    [
+      [69241, 53175],
+      [-2, -14],
+      [0, -352],
+      [-1, -277],
+      [-3, -392],
+      [1, -333],
+      [0, -356],
+      [1, -431],
+      [0, -296],
+      [-1, -508],
+      [-1, -185],
+      [-6, -534],
+      [-2, -259],
+      [-2, -344],
+      [-2, -324],
+      [1, -551],
+      [3, -576],
+      [-1, -224],
+      [-23, 13],
+      [-76, -39],
+      [-35, -60],
+      [-12, -79],
+      [9, -54],
+      [22, -34],
+      [11, 4],
+      [-32, -159],
+      [-44, -72],
+      [-25, -1],
+      [-18, -16],
+      [-13, -37],
+      [81, -84],
+      [79, -115],
+      [113, -259],
+      [-13, -79],
+      [-17, -38],
+      [-24, -30],
+      [-23, -83],
+      [5, -10],
+      [46, -27],
+      [57, -166],
+      [-6, -61],
+      [-39, -156],
+      [-22, -33],
+      [-16, -12],
+      [-73, -17],
+      [-39, -25],
+      [-37, -58],
+      [-14, -81],
+      [-45, -99],
+      [-34, -58],
+      [26, -59],
+      [-175, -300],
+      [-210, -310],
+      [-114, -55],
+      [-51, -47],
+      [-18, -63],
+      [4, -28],
+      [34, -56],
+      [47, -20],
+      [8, -28],
+      [-31, -53],
+      [-27, -24],
+      [-59, -25],
+      [-73, -46],
+      [-54, -145],
+      [2, -22],
+      [53, -153],
+      [-1, -209],
+      [-14, -15],
+      [-64, 8],
+      [-30, 11],
+      [41, -127],
+      [40, -43],
+      [0, -73]
+    ],
+    [
+      [68303, 43312],
+      [-32, -93],
+      [-27, -50],
+      [-24, -24],
+      [-93, -59],
+      [-54, -87],
+      [-16, -45],
+      [6, -62],
+      [31, -117],
+      [13, -31],
+      [22, -15],
+      [91, -100],
+      [17, -32],
+      [1, -67],
+      [-38, -40],
+      [-320, -42],
+      [-49, -11],
+      [-58, -30],
+      [-33, -29],
+      [-52, -61],
+      [-94, 51],
+      [-57, -22],
+      [-31, -20],
+      [-26, -31],
+      [-12, -24],
+      [-71, -242],
+      [-2, -17],
+      [12, -55],
+      [70, -106],
+      [24, -17],
+      [21, -25],
+      [43, -129],
+      [-38, -136],
+      [-26, -63],
+      [-45, -16],
+      [-58, -5],
+      [-58, 12],
+      [-58, 40],
+      [-24, 35],
+      [-68, 50],
+      [-341, 176],
+      [-201, 88],
+      [-30, 2],
+      [-62, 12],
+      [-64, -14],
+      [-75, -54],
+      [-84, -94],
+      [-152, -231],
+      [-14, -30],
+      [-13, -63],
+      [7, -41],
+      [23, -44],
+      [63, -54]
+    ],
+    [
+      [66247, 41250],
+      [-69, -30],
+      [-29, 8],
+      [-40, 23],
+      [-36, 7],
+      [-65, -7],
+      [-58, 24],
+      [-160, 120],
+      [-13, 39],
+      [-54, 177],
+      [-99, 235],
+      [-92, 161],
+      [-3, 18],
+      [12, 54],
+      [43, 57],
+      [27, 12],
+      [50, 6],
+      [21, 10],
+      [15, 30],
+      [13, 79],
+      [-9, 50],
+      [-25, 75],
+      [-21, 33],
+      [-46, 54],
+      [-31, 57],
+      [-46, 109],
+      [-9, 50],
+      [1, 55],
+      [17, 14],
+      [10, 102],
+      [-16, 117],
+      [-290, 328],
+      [-128, 115],
+      [-195, 148],
+      [-34, -22],
+      [-34, -43],
+      [-38, -25],
+      [-40, 2],
+      [-51, 27],
+      [-43, 92],
+      [-2, 22],
+      [-42, 93],
+      [-140, 135],
+      [-100, 62],
+      [-217, 180],
+      [-170, 195],
+      [-37, 60],
+      [-18, 57],
+      [-19, 115],
+      [3, 104],
+      [3, 26],
+      [37, 105],
+      [9, 17],
+      [94, 113],
+      [19, 42],
+      [11, 73],
+      [36, 141],
+      [21, 42],
+      [45, 75],
+      [53, 50],
+      [22, 43],
+      [12, 56],
+      [-6, 66],
+      [-10, 38],
+      [-42, 71],
+      [-6, 22],
+      [4, 36],
+      [72, 102],
+      [90, 80],
+      [10, 19],
+      [16, 80],
+      [-8, 30],
+      [-209, 151],
+      [-46, 26],
+      [-290, 109],
+      [-83, 13],
+      [-40, -22],
+      [-19, -37],
+      [-8, -46],
+      [-38, -59],
+      [-68, -70],
+      [-42, -15],
+      [-32, 0],
+      [-77, 50],
+      [-60, 79],
+      [-12, 20],
+      [-89, 300],
+      [-2, 25],
+      [55, 79],
+      [4, 31],
+      [-86, 380],
+      [-5, 12],
+      [-130, 144],
+      [-79, 73],
+      [-76, 52],
+      [-206, 153],
+      [-91, 73],
+      [-216, 255],
+      [-18, 30],
+      [-18, 84],
+      [-96, 57],
+      [-222, 231],
+      [-35, 42],
+      [-4, 40],
+      [8, 82],
+      [-126, 159],
+      [-25, 76],
+      [-25, 277],
+      [-65, 144],
+      [-29, 229],
+      [-5, 134],
+      [13, 134],
+      [30, 130],
+      [52, 143],
+      [32, 52],
+      [48, 38]
+    ],
+    [
+      [61992, 49819],
+      [57, 17],
+      [24, 17],
+      [6, 24],
+      [16, 224],
+      [-10, 57],
+      [-29, 46],
+      [-36, 21],
+      [-2, 39],
+      [84, 119],
+      [21, 20],
+      [79, 42],
+      [99, 29],
+      [65, 2],
+      [58, -3],
+      [91, 59],
+      [29, 25],
+      [20, 66],
+      [32, 255],
+      [-5, 26],
+      [8, 32],
+      [155, 201],
+      [21, 19],
+      [55, 28],
+      [11, 15],
+      [20, 73],
+      [19, 203],
+      [-7, 69],
+      [-7, 27],
+      [5, 61],
+      [-80, 149],
+      [-29, 25],
+      [-25, -2],
+      [-58, 33],
+      [-118, 160],
+      [-1, 22],
+      [123, 406],
+      [37, 32],
+      [71, 21],
+      [265, 58],
+      [114, -5],
+      [27, -6],
+      [63, -1],
+      [153, 30],
+      [92, 81],
+      [198, 60],
+      [47, 4],
+      [24, 10],
+      [118, 123],
+      [105, 124],
+      [-3, 67],
+      [16, 79],
+      [36, 139],
+      [24, 39],
+      [44, 44],
+      [105, 65],
+      [64, 25],
+      [11, 10],
+      [57, 313],
+      [20, 164],
+      [-1, 33],
+      [-18, 51],
+      [-25, 40],
+      [-7, 77],
+      [9, 30],
+      [2, 69],
+      [-10, 19],
+      [-81, 80],
+      [-44, 28],
+      [-133, 64],
+      [-80, 34],
+      [-14, 3],
+      [-64, 51],
+      [-52, 73],
+      [-22, 60],
+      [12, 38],
+      [15, 71],
+      [-5, 18],
+      [-108, 139],
+      [-153, 119],
+      [-121, 71],
+      [-55, 49],
+      [-4, 34],
+      [28, 42]
+    ],
+    [
+      [63440, 55194],
+      [159, -2],
+      [119, 0],
+      [160, -2],
+      [582, 3],
+      [310, -6],
+      [482, -2],
+      [269, -8],
+      [300, -4],
+      [206, -5],
+      [335, -5],
+      [146, 0],
+      [97, -3],
+      [433, -4],
+      [373, 4],
+      [167, -1],
+      [271, 1],
+      [133, 3],
+      [280, -2],
+      [146, -3],
+      [318, -6]
+    ],
+    [
+      [74272, 46608],
+      [-20, -9],
+      [-108, -90],
+      [-15, -23],
+      [15, -41],
+      [74, -101],
+      [111, -293],
+      [7, -39],
+      [-51, -179],
+      [-58, -29],
+      [-186, -30],
+      [-54, 10],
+      [-42, -6],
+      [-195, -126],
+      [-11, -15],
+      [-60, -55],
+      [-63, -28],
+      [-31, -1],
+      [-44, 20],
+      [-24, 25],
+      [-38, 67],
+      [-23, 15],
+      [-57, 12],
+      [-226, -14],
+      [-43, -19],
+      [-34, -51],
+      [-9, -51],
+      [33, -199],
+      [44, -118],
+      [0, -43],
+      [-14, -37],
+      [-18, -20],
+      [-55, -28],
+      [-270, -185],
+      [-24, -41],
+      [-23, -69],
+      [-10, -39],
+      [-1, -48],
+      [-28, -86],
+      [-40, -65],
+      [-16, -15],
+      [-114, -72],
+      [-30, 14],
+      [-23, 34],
+      [-33, 6],
+      [-46, -14],
+      [-25, -15],
+      [-127, -234],
+      [-21, -58],
+      [-1, -53],
+      [8, -73],
+      [-2, -63],
+      [-30, -145],
+      [-15, -26],
+      [-39, -33],
+      [-145, -32],
+      [-266, 43],
+      [-12, 4],
+      [-77, 42],
+      [-87, 73],
+      [-12, 27],
+      [-10, 55],
+      [1, 33],
+      [13, 70],
+      [-24, 33],
+      [-48, 3],
+      [-25, -14],
+      [-17, -22],
+      [-123, -61],
+      [-59, -69],
+      [-5, -29],
+      [-36, -42],
+      [-27, -10],
+      [-84, -6],
+      [-18, -15],
+      [-6, -26],
+      [-1, -151],
+      [-148, -277],
+      [-55, -37],
+      [-39, -3],
+      [-9, 57],
+      [-91, 82],
+      [-17, -11],
+      [-25, 3],
+      [-36, 47],
+      [-36, 69],
+      [-32, 78],
+      [-14, 45],
+      [-38, 25],
+      [-15, 0],
+      [-60, -30],
+      [-54, -58],
+      [-33, -45],
+      [-31, -24],
+      [-111, -17],
+      [-58, -26],
+      [-44, -33],
+      [-23, -43],
+      [4, -48],
+      [-26, -109],
+      [-19, -54],
+      [-17, -25],
+      [-25, -21],
+      [-38, -13],
+      [-33, 8],
+      [-7, 13],
+      [-130, 133],
+      [-113, 74],
+      [-73, 64],
+      [-145, 94],
+      [-42, 17],
+      [-29, 6],
+      [-60, -8],
+      [-113, -89],
+      [-72, 47],
+      [-17, 16],
+      [-24, 41],
+      [-5, 51],
+      [-34, 20],
+      [-15, -8],
+      [-52, -116],
+      [16, -50],
+      [54, -49],
+      [5, -66],
+      [-33, -57],
+      [-16, -17],
+      [-57, -15],
+      [-47, 6],
+      [-15, 20],
+      [-5, 50],
+      [35, 75],
+      [-7, 25],
+      [-32, 20],
+      [-146, -32],
+      [-40, -33],
+      [-13, -5],
+      [-74, 2],
+      [-20, 14],
+      [-30, 47],
+      [-15, 36],
+      [-33, 28],
+      [-40, -3],
+      [-60, -82],
+      [-6, -44],
+      [24, -41],
+      [23, -23],
+      [13, -30],
+      [8, -50],
+      [-6, -26],
+      [-69, -78],
+      [-50, 17],
+      [-10, 11],
+      [-53, 31],
+      [-23, 5],
+      [-20, -7]
+    ],
+    [
+      [69241, 53175],
+      [6, 4],
+      [28, -46],
+      [65, -47],
+      [14, 6],
+      [32, -15],
+      [14, 3],
+      [11, -26],
+      [-12, -15],
+      [29, -29],
+      [54, -14],
+      [54, -20],
+      [76, -16],
+      [68, -2],
+      [18, -6],
+      [107, 11],
+      [62, 14],
+      [50, 19],
+      [0, 20],
+      [65, 13],
+      [10, -12],
+      [101, 41],
+      [71, 32],
+      [173, 88],
+      [48, 44],
+      [63, 28],
+      [94, 56]
+    ],
+    [
+      [70542, 53306],
+      [344, -1],
+      [224, -1],
+      [473, 2],
+      [256, 1],
+      [284, -2],
+      [342, -2],
+      [342, 0],
+      [557, 3],
+      [253, -2],
+      [247, 1],
+      [124, -1],
+      [287, 2],
+      [23, -43],
+      [0, -119]
+    ],
+    [
+      [74298, 53144],
+      [1, -209],
+      [3, -448],
+      [0, -69],
+      [1, -393],
+      [0, -412],
+      [1, -421],
+      [1, -396],
+      [1, -94],
+      [-1, -505],
+      [-3, -442],
+      [0, -108],
+      [-4, -283],
+      [-4, -174],
+      [-7, -509],
+      [-4, -285],
+      [0, -221],
+      [-1, -402],
+      [-2, -227],
+      [-6, -435],
+      [-2, -503]
+    ],
+    [
+      [66745, 23009],
+      [-46, -87],
+      [-94, -154],
+      [-11, 14],
+      [9, 31],
+      [39, 49],
+      [16, 12],
+      [40, 76],
+      [31, 73],
+      [11, 35],
+      [0, 48],
+      [12, 37],
+      [28, 29],
+      [19, 96],
+      [-13, 21],
+      [22, 38],
+      [6, 106],
+      [-17, 61],
+      [-3, 44],
+      [6, 30],
+      [-10, 54],
+      [-14, 45],
+      [-17, 36],
+      [4, 17],
+      [40, -90],
+      [18, -72],
+      [13, -91],
+      [-2, -114],
+      [-15, -106],
+      [-12, -58],
+      [-21, -71],
+      [-39, -109]
+    ],
+    [
+      [62463, 31213],
+      [-67, -108],
+      [-22, -78],
+      [10, -38],
+      [22, -22],
+      [40, -17],
+      [28, 0],
+      [28, 14],
+      [24, 45],
+      [2, 102],
+      [-14, 19],
+      [8, 23],
+      [52, 22],
+      [23, -12],
+      [14, -20],
+      [42, -132],
+      [0, -51],
+      [-12, -38],
+      [-30, -39],
+      [-36, -38],
+      [-41, -8],
+      [-32, -31],
+      [-25, -52],
+      [-6, -25],
+      [-5, -67],
+      [-2, -87],
+      [21, -23],
+      [58, 2],
+      [85, -26],
+      [31, -13],
+      [12, -13],
+      [-18, -49],
+      [-22, -23],
+      [-43, -22],
+      [-36, -28],
+      [-63, -82],
+      [-3, -26],
+      [4, -39],
+      [19, -47],
+      [25, -27],
+      [44, -4],
+      [25, -53],
+      [3, -27],
+      [-16, -21],
+      [-35, -113],
+      [1, -43],
+      [14, -28],
+      [25, -33],
+      [46, -34],
+      [33, -17],
+      [43, -13],
+      [66, -75],
+      [-19, -90],
+      [8, -26],
+      [25, -15],
+      [158, -35],
+      [6, -22],
+      [-12, -35],
+      [-185, -252],
+      [-4, 22],
+      [-28, 30],
+      [-33, 16],
+      [-13, -3],
+      [-163, -70],
+      [-45, -29],
+      [-11, -13],
+      [-13, -51],
+      [-7, -55],
+      [6, -27],
+      [16, -29],
+      [59, -16],
+      [119, 15],
+      [38, 16],
+      [23, -9],
+      [14, -28],
+      [-1, -26],
+      [-14, -32],
+      [-173, -290],
+      [-224, -293],
+      [-84, -25],
+      [-62, -13],
+      [-22, -9],
+      [-13, -21],
+      [-26, -110],
+      [-8, -48],
+      [-2, -70],
+      [-61, -109],
+      [-5, -53],
+      [4, -82],
+      [-12, -45],
+      [-32, -17],
+      [-57, 0],
+      [-23, -6],
+      [-19, -18],
+      [-5, -28],
+      [1, -47],
+      [12, -16],
+      [41, -7],
+      [44, -13],
+      [18, -27],
+      [-14, -32],
+      [-50, -37],
+      [-56, -24],
+      [-58, 6],
+      [-22, -32],
+      [14, -178],
+      [19, -41],
+      [9, -36],
+      [-9, -45],
+      [-16, -36],
+      [-22, -20],
+      [-29, -56],
+      [2, -49],
+      [38, -66],
+      [20, -49],
+      [-12, -34],
+      [-13, -12],
+      [-47, -23],
+      [-50, -8],
+      [-45, -140],
+      [-10, -129],
+      [50, -193],
+      [24, -28],
+      [8, -32],
+      [-5, -28],
+      [-17, -34],
+      [-24, -24],
+      [-97, -52],
+      [397, -1],
+      [370, 0],
+      [306, -1],
+      [436, 2],
+      [170, -1],
+      [311, 1],
+      [270, 1],
+      [99, 1],
+      [381, 2],
+      [449, 1],
+      [123, 1],
+      [194, 0],
+      [38, 7],
+      [8, -6],
+      [-1, -79],
+      [-30, -131],
+      [-22, -47],
+      [-31, -7],
+      [-31, -116],
+      [-68, -290],
+      [-30, -178],
+      [36, -146],
+      [30, -92],
+      [87, -142],
+      [52, -58],
+      [14, -2],
+      [77, -101],
+      [100, -284],
+      [0, -46],
+      [-20, -50],
+      [-5, -34],
+      [66, -178],
+      [50, -78],
+      [15, -14],
+      [90, 0]
+    ],
+    [
+      [65518, 24089],
+      [-24, -23],
+      [-47, -7],
+      [-46, -46],
+      [-56, 15],
+      [-44, -45],
+      [-30, -51],
+      [-39, -26],
+      [-10, -81],
+      [-28, -14],
+      [-27, -4],
+      [-27, -16],
+      [-7, -33],
+      [28, -54],
+      [-32, -15],
+      [-24, 26],
+      [-31, 24],
+      [-36, 8],
+      [-67, -5],
+      [-40, -48],
+      [-33, -50],
+      [10, -67],
+      [15, -56],
+      [11, -25],
+      [38, -29],
+      [25, -4],
+      [54, 12],
+      [50, 21],
+      [38, 33],
+      [28, -31],
+      [-43, -26],
+      [-19, -20],
+      [7, -51],
+      [58, -73],
+      [36, -26],
+      [38, -3],
+      [21, -12],
+      [42, 3],
+      [46, 20],
+      [28, 24],
+      [13, 39],
+      [-2, 51],
+      [17, 37],
+      [0, 35],
+      [15, 35],
+      [1, 61],
+      [-13, 28],
+      [18, 13],
+      [38, 14],
+      [92, 72],
+      [14, 17],
+      [-9, 46],
+      [11, 33],
+      [21, 18],
+      [43, -40],
+      [26, -6],
+      [29, -22],
+      [20, -6],
+      [86, 12],
+      [7, -19],
+      [-7, -26],
+      [-16, -16],
+      [-23, -2],
+      [-42, -23],
+      [-31, -32],
+      [0, -74],
+      [51, -33],
+      [48, -4],
+      [1, -112],
+      [20, -20],
+      [67, 11],
+      [31, 18],
+      [59, 127],
+      [19, 51],
+      [43, 22],
+      [12, -13],
+      [-11, -55],
+      [59, -7],
+      [-11, -27],
+      [-13, -92],
+      [-26, 11],
+      [-34, -1],
+      [-31, -11],
+      [-71, -68],
+      [-8, -27],
+      [20, -15],
+      [42, -3],
+      [31, 16],
+      [58, 7],
+      [9, -31],
+      [-34, -32],
+      [-28, -11],
+      [-47, -7],
+      [-42, -16],
+      [-85, -13],
+      [-38, -17],
+      [1, -22],
+      [19, -13],
+      [51, -13],
+      [5, -54],
+      [20, -21],
+      [26, -4],
+      [46, 36],
+      [30, 12],
+      [-13, -31],
+      [-1, -64],
+      [29, -23],
+      [-3, -12],
+      [-64, 2],
+      [-20, 10],
+      [-17, 28],
+      [-23, 18],
+      [-31, 5],
+      [-25, -15],
+      [-35, 34],
+      [-15, -10],
+      [-9, -36],
+      [-29, -46],
+      [-25, -27],
+      [7, -111],
+      [-44, 14],
+      [-44, 39],
+      [-28, 18],
+      [-36, 15],
+      [-45, 30],
+      [-18, 0],
+      [-38, -20],
+      [-23, 28],
+      [-47, 2],
+      [-67, 14],
+      [-32, -9],
+      [3, -75],
+      [9, -22],
+      [49, -26],
+      [36, 10],
+      [11, -7],
+      [-12, -30],
+      [5, -15],
+      [43, -25],
+      [31, -10],
+      [44, 0],
+      [85, -101],
+      [2, -25],
+      [-33, 28],
+      [-34, 20],
+      [-23, 23],
+      [-90, 11],
+      [-47, 12],
+      [-23, -1],
+      [-22, 37],
+      [-31, 3],
+      [16, -63],
+      [0, -31],
+      [-12, -26],
+      [-19, -3],
+      [-32, 6],
+      [-18, -5],
+      [-7, -24],
+      [7, -31],
+      [25, -37],
+      [5, -20],
+      [-30, -43],
+      [6, -73],
+      [-34, -27],
+      [-2, -19],
+      [13, -19],
+      [52, -47],
+      [40, 6],
+      [17, -8],
+      [33, -53],
+      [39, -30],
+      [13, -47],
+      [23, -10],
+      [5, 19],
+      [48, 62],
+      [38, -28],
+      [-7, -73],
+      [25, -64],
+      [19, -36],
+      [39, 18],
+      [19, 45],
+      [13, -24],
+      [24, -21],
+      [65, -7],
+      [79, 3],
+      [45, -25],
+      [36, -9],
+      [-21, -33],
+      [-6, -39],
+      [51, -14],
+      [37, 34],
+      [38, -3],
+      [20, -13],
+      [27, -36],
+      [8, -36],
+      [24, -32],
+      [31, 10],
+      [8, 26],
+      [28, 36],
+      [8, 23],
+      [39, -20],
+      [2, -32],
+      [25, -61],
+      [14, -16],
+      [32, -14],
+      [20, -64],
+      [55, -39],
+      [8, -31],
+      [-19, -16],
+      [-1, -39],
+      [11, -25],
+      [18, -16],
+      [42, 11],
+      [2, 11],
+      [71, 31],
+      [26, -23],
+      [27, -80],
+      [-9, -38],
+      [-15, -4],
+      [-20, 17],
+      [-37, -19],
+      [-6, -12],
+      [16, -39],
+      [12, 6],
+      [15, -19],
+      [-4, -18],
+      [-48, -59],
+      [-6, -57],
+      [-13, -35],
+      [-54, -8],
+      [-26, 17],
+      [-30, -12],
+      [-41, -54],
+      [-24, -48],
+      [-16, -50],
+      [-39, 23],
+      [7, 19],
+      [-14, 18],
+      [-24, -2],
+      [-16, 23],
+      [-11, 67],
+      [-16, 28],
+      [-20, 15],
+      [-34, -3],
+      [-4, -24],
+      [6, -22],
+      [-11, -17],
+      [-59, -13],
+      [-45, -36],
+      [0, -16],
+      [-18, -47],
+      [-25, -3],
+      [-84, -165],
+      [-52, -56],
+      [-15, 11],
+      [13, 71],
+      [27, 49],
+      [43, 21],
+      [75, 139],
+      [-10, 30],
+      [-27, 51],
+      [-37, 29],
+      [-58, 7],
+      [-10, 48],
+      [3, 55],
+      [-15, 28],
+      [-29, 26],
+      [-27, 74],
+      [-15, 32],
+      [-31, 42],
+      [-20, 18],
+      [-100, 54],
+      [-130, 40],
+      [-121, 93],
+      [-101, 38],
+      [-105, 18],
+      [-70, -2],
+      [-56, 3],
+      [-9, 59],
+      [14, 36],
+      [23, 25],
+      [34, 64],
+      [-5, 50],
+      [-12, 28],
+      [-33, 16],
+      [-3, 32],
+      [22, 56],
+      [-2, 35],
+      [-28, 19],
+      [-50, -15],
+      [-48, -30],
+      [-57, -78],
+      [-42, -2],
+      [-17, 15],
+      [-51, 73],
+      [-38, -2],
+      [-37, -90],
+      [-2, -85],
+      [7, -13],
+      [-2, -33],
+      [-11, -29],
+      [9, -49],
+      [-5, -54],
+      [11, -39],
+      [27, -11],
+      [8, -20],
+      [-12, -27],
+      [-30, -11],
+      [-21, 7],
+      [-25, -3],
+      [-7, -35],
+      [-18, -13],
+      [-30, -8],
+      [-27, 1],
+      [9, -48],
+      [42, -34],
+      [6, -47],
+      [51, 8],
+      [43, 51],
+      [26, 22],
+      [67, 38],
+      [19, 30],
+      [16, -4],
+      [-10, -31],
+      [-122, -95],
+      [-68, -82],
+      [-39, -34],
+      [-46, -50],
+      [-130, -113],
+      [-92, -52],
+      [-16, 7],
+      [-24, -5],
+      [-183, -72],
+      [-12, 17],
+      [45, 28],
+      [61, 10],
+      [74, 37],
+      [6, 37],
+      [29, 5],
+      [0, 47],
+      [-27, 24],
+      [-38, 2],
+      [-21, 8],
+      [4, 21],
+      [-35, 52],
+      [-11, 10],
+      [4, 53],
+      [14, 9],
+      [20, -18],
+      [13, 2],
+      [8, 28],
+      [-28, 53],
+      [-47, 31],
+      [0, 47],
+      [-8, 21],
+      [-31, 31],
+      [-64, -7],
+      [0, -24],
+      [-10, -15],
+      [-29, -15],
+      [8, -44],
+      [-29, -87],
+      [-63, -32],
+      [-20, 19],
+      [-53, -8],
+      [9, 25],
+      [-34, 18],
+      [-10, 28],
+      [42, 17],
+      [11, 56],
+      [22, 35],
+      [-41, 23],
+      [-42, 37],
+      [-28, 9],
+      [-29, -37],
+      [-48, 6],
+      [-25, 16],
+      [-32, -23],
+      [-13, -69],
+      [10, -14],
+      [35, -1],
+      [39, -30],
+      [0, -16],
+      [-23, -11],
+      [-8, -40],
+      [-27, 7],
+      [-80, -9],
+      [-11, 18],
+      [-18, -4],
+      [-11, -31],
+      [-10, -52],
+      [16, -29],
+      [-19, -91],
+      [-57, -25],
+      [-43, 7],
+      [-32, -12],
+      [-25, 16],
+      [-61, -24],
+      [-17, -34],
+      [-49, -32],
+      [-8, -59],
+      [10, -23],
+      [31, -13],
+      [31, -1],
+      [28, 10],
+      [46, 34],
+      [30, -6],
+      [13, -10],
+      [35, 2],
+      [33, 15],
+      [49, 15],
+      [4, -16],
+      [-20, -10],
+      [-154, -52],
+      [-46, -8],
+      [-78, 2],
+      [-26, -8],
+      [-52, 7],
+      [-10, 24],
+      [7, 14],
+      [-7, 33],
+      [-34, 69],
+      [-27, 25],
+      [-15, 31],
+      [-24, 36],
+      [-51, 55],
+      [-30, 24],
+      [-11, 29],
+      [-25, 17],
+      [-37, -24],
+      [-35, -5],
+      [-45, 14],
+      [-14, 19],
+      [-50, -2],
+      [-66, 15],
+      [-39, 51],
+      [-26, 20],
+      [-131, 14],
+      [-37, 12],
+      [-111, 55],
+      [-44, 46],
+      [-60, 83],
+      [4, 17],
+      [43, 0],
+      [33, 14],
+      [28, 47],
+      [5, 38],
+      [14, 41],
+      [32, 22],
+      [20, 5],
+      [30, -28],
+      [28, 0],
+      [19, 23],
+      [-5, 50],
+      [-34, 44],
+      [12, 35],
+      [-18, 39],
+      [-38, 12],
+      [-30, 15],
+      [-4, 38],
+      [-10, 26],
+      [-29, 23],
+      [-25, -12],
+      [-77, 23],
+      [-14, 17],
+      [-5, 30],
+      [-20, 27],
+      [-84, -9],
+      [-34, 10],
+      [-13, 11],
+      [-9, 32],
+      [-28, 30],
+      [-40, -1],
+      [-91, -37],
+      [-25, 5],
+      [10, 36],
+      [-7, 32],
+      [-15, 19],
+      [-9, 71],
+      [-21, 97],
+      [-14, 12],
+      [-39, 0],
+      [-34, -16],
+      [-46, -12],
+      [-45, 19],
+      [41, 72],
+      [1, 57],
+      [15, 65],
+      [-6, 62],
+      [-21, 18],
+      [-63, 9],
+      [-82, -18],
+      [-49, 27],
+      [-28, -3],
+      [-58, -19],
+      [-87, -55],
+      [-53, -40],
+      [-41, 19],
+      [10, 30],
+      [-8, 51],
+      [9, 44],
+      [29, 58],
+      [9, 61],
+      [-29, 53],
+      [-36, 19],
+      [-33, -13],
+      [-17, -38],
+      [-46, 3],
+      [-38, -17],
+      [-42, -39],
+      [-96, -33],
+      [-39, -23],
+      [-95, -71],
+      [-69, -71],
+      [-9, -48],
+      [28, -70],
+      [3, -23],
+      [39, -97],
+      [34, -8],
+      [52, 3],
+      [33, 12],
+      [42, 2],
+      [17, -17],
+      [30, -14],
+      [65, -13],
+      [47, 6],
+      [19, 21],
+      [13, 36],
+      [44, 10],
+      [31, -18],
+      [36, 10],
+      [40, -11],
+      [6, -34],
+      [31, -25],
+      [68, -27],
+      [12, -15],
+      [7, -33],
+      [53, -5],
+      [69, -34],
+      [-4, -17],
+      [-42, -37],
+      [-24, -11],
+      [-34, -36],
+      [-12, -40],
+      [2, -40],
+      [-34, -18],
+      [-27, 12],
+      [-21, -12],
+      [-13, -20],
+      [-50, 25],
+      [-8, 28],
+      [-18, 18],
+      [-45, 8],
+      [-36, 32],
+      [-17, 1],
+      [-59, 37],
+      [-42, 10],
+      [-30, 27],
+      [-77, 48],
+      [-16, 30],
+      [-20, 14],
+      [-38, -1],
+      [-73, 6],
+      [-98, -12],
+      [-100, -48],
+      [-74, -58],
+      [-53, -15],
+      [-54, -1],
+      [-70, 16],
+      [-102, 30],
+      [-133, 25],
+      [-158, 22],
+      [-108, 22],
+      [-69, 24],
+      [-169, 74],
+      [-236, 132],
+      [-129, 79],
+      [-63, 32],
+      [-169, 68],
+      [-43, 21],
+      [-165, 54],
+      [-93, 18],
+      [-75, 1],
+      [-53, -8],
+      [-86, -29],
+      [-10, -11],
+      [-46, 10],
+      [-125, 15],
+      [-67, 1],
+      [-118, -15],
+      [-97, -20],
+      [-83, -7],
+      [-90, -14],
+      [-108, -27],
+      [-45, -18],
+      [-62, -35],
+      [-37, -29],
+      [-35, -34]
+    ],
+    [
+      [57491, 22852],
+      [-101, 189],
+      [-12, 16],
+      [15, 180],
+      [188, 365],
+      [61, 67],
+      [9, 5],
+      [56, 90],
+      [18, 39],
+      [31, 172],
+      [0, 30],
+      [-31, 118],
+      [-16, 257],
+      [-28, 9],
+      [-56, 85],
+      [15, 144],
+      [12, 15],
+      [91, 85],
+      [9, 35],
+      [-23, 158],
+      [-56, 81],
+      [23, 89],
+      [278, 576],
+      [28, 41],
+      [9, 129],
+      [51, 139],
+      [-17, 211],
+      [23, 167],
+      [-7, 268],
+      [-7, 13],
+      [-32, -1],
+      [-50, -45],
+      [-17, -5],
+      [-26, 41],
+      [-9, 58],
+      [-2, 58],
+      [-11, 83],
+      [-12, 27],
+      [-44, 14],
+      [-51, 57],
+      [58, 184],
+      [-55, 37],
+      [-48, 56],
+      [-63, 198],
+      [-127, 117],
+      [-38, 52],
+      [-30, 79],
+      [16, 73],
+      [17, 143],
+      [8, 110],
+      [-51, 215],
+      [-91, 142],
+      [-58, 80],
+      [-22, 13],
+      [-81, 76],
+      [-75, 142],
+      [-50, 48],
+      [1, 305],
+      [-1, 378],
+      [-1, 547],
+      [1, 396],
+      [-1, 125],
+      [1, 450],
+      [-1, 373]
+    ],
+    [
+      [62367, 57697],
+      [-282, 1],
+      [-525, -1],
+      [-238, 1],
+      [-318, -1],
+      [-426, 1],
+      [-186, -1],
+      [-237, 0],
+      [-452, -1],
+      [-263, -1],
+      [-481, 0],
+      [-415, -1],
+      [-419, 0],
+      [-556, 1],
+      [-325, 0],
+      [-228, 2],
+      [-288, 0],
+      [-414, 0],
+      [-271, 0],
+      [-444, 0],
+      [-260, 0],
+      [-411, 1],
+      [-297, -1],
+      [-149, 0],
+      [-112, -2],
+      [-420, 1],
+      [-224, 0],
+      [-357, 0],
+      [-555, 1],
+      [-190, 0]
+    ],
+    [
+      [52624, 57697],
+      [0, 477],
+      [0, 477],
+      [0, 251],
+      [1, 552],
+      [1, 326],
+      [1, 339],
+      [0, 211],
+      [0, 401],
+      [0, 259],
+      [-1, 396],
+      [0, 622],
+      [-2, 225],
+      [-2, 8],
+      [-65, 140],
+      [-61, 47],
+      [-178, 82],
+      [-117, 6],
+      [-22, 18],
+      [-75, 104],
+      [-24, 76],
+      [-37, 82],
+      [-36, 50],
+      [-136, 163],
+      [25, 85],
+      [16, 26],
+      [169, 131],
+      [63, 40],
+      [72, 37],
+      [38, 37],
+      [128, 185],
+      [13, 50],
+      [15, 129],
+      [-2, 60],
+      [9, 16],
+      [2, 35]
+    ],
+    [
+      [52419, 63840],
+      [-13, 72],
+      [-14, 160],
+      [22, 61],
+      [17, 34],
+      [4, 51],
+      [-6, 44],
+      [-38, 171],
+      [-13, 18],
+      [-25, 218],
+      [1, 123],
+      [-62, 104],
+      [-71, 78],
+      [-97, 140],
+      [10, 11],
+      [-42, 251],
+      [-82, 218],
+      [-2, 143],
+      [-33, 317],
+      [64, 234],
+      [-24, 58],
+      [-21, 15],
+      [-58, 92],
+      [-3, 389],
+      [-16, 284],
+      [-36, 347],
+      [-18, 119],
+      [17, 206],
+      [20, 11],
+      [-16, 227],
+      [-65, 167],
+      [-176, 382],
+      [-37, 114],
+      [-43, 33],
+      [-120, 468],
+      [-19, 30],
+      [-47, 96],
+      [-45, 154],
+      [1, 183],
+      [32, 17],
+      [25, 76],
+      [1, 111],
+      [-20, 46],
+      [-18, 26],
+      [-18, 114],
+      [27, 23],
+      [15, 37],
+      [-6, 250],
+      [-45, 48],
+      [-23, 11],
+      [131, 349],
+      [-83, 169],
+      [-38, 97],
+      [-78, 236],
+      [-61, 165],
+      [-12, 53],
+      [9, 76],
+      [9, 8]
+    ],
+    [
+      [51180, 71575],
+      [1533, -2],
+      [1929, -3],
+      [400, 0],
+      [1, 470],
+      [0, 503],
+      [50, -38],
+      [127, -41],
+      [82, 8],
+      [47, 32],
+      [59, 3],
+      [89, -50],
+      [158, -105],
+      [50, -280],
+      [45, -194],
+      [43, -53],
+      [0, -252],
+      [58, 0],
+      [67, -293],
+      [-13, -52],
+      [-1, -215],
+      [115, -99],
+      [178, -95],
+      [120, -12],
+      [98, 37],
+      [51, 2],
+      [149, -4],
+      [33, -6],
+      [56, -29],
+      [18, -32],
+      [1, -68],
+      [49, -18],
+      [182, -13],
+      [138, -1],
+      [394, -39],
+      [33, -49],
+      [30, -80],
+      [3, -23],
+      [-11, -65],
+      [-14, -20],
+      [6, -20],
+      [39, -27],
+      [70, -2],
+      [176, 1],
+      [219, 34],
+      [143, 42],
+      [20, 41],
+      [-17, 64],
+      [3, 11],
+      [113, 40],
+      [68, 2],
+      [37, 46],
+      [172, 41],
+      [88, -1],
+      [51, -44],
+      [70, 0],
+      [101, 7],
+      [201, -7],
+      [469, -216],
+      [131, 17],
+      [43, -8],
+      [17, -62],
+      [-21, -48],
+      [-46, -7],
+      [-43, 3],
+      [-26, -7],
+      [-26, -81],
+      [46, -48],
+      [59, -18],
+      [150, 10],
+      [71, 18],
+      [56, 0],
+      [95, -85],
+      [77, -304],
+      [57, -128],
+      [110, -15],
+      [56, 100],
+      [-12, 30],
+      [-9, 70],
+      [3, 17],
+      [29, 50],
+      [50, 31],
+      [385, 10],
+      [46, -84],
+      [77, -165],
+      [22, -35],
+      [43, 12],
+      [87, -33],
+      [74, -50],
+      [146, -52],
+      [88, 17],
+      [51, -14],
+      [8, -13],
+      [21, -124],
+      [-24, -76],
+      [132, -42],
+      [133, -11],
+      [152, -64],
+      [275, 13],
+      [21, -7],
+      [72, 9],
+      [75, 25],
+      [137, 105],
+      [66, 56],
+      [4, 9],
+      [191, 96],
+      [110, 76],
+      [170, 66],
+      [71, -3],
+      [15, -13],
+      [65, -155],
+      [27, -87],
+      [-7, -20],
+      [33, -33],
+      [27, -61],
+      [18, -18],
+      [339, 40],
+      [138, -19],
+      [81, 14],
+      [91, 0],
+      [109, -27],
+      [27, 20],
+      [33, 8],
+      [252, 18],
+      [76, -1],
+      [22, -13],
+      [60, -6],
+      [34, -9],
+      [93, -41],
+      [48, -69],
+      [7, -21],
+      [-5, -35],
+      [7, -17],
+      [46, -35],
+      [132, -68],
+      [45, -6],
+      [48, 18],
+      [51, 57],
+      [104, 20],
+      [27, 1],
+      [47, -9],
+      [68, -23],
+      [60, -8],
+      [170, -12],
+      [139, 30],
+      [-11, -31],
+      [-86, -24],
+      [-19, -14],
+      [-6, -31],
+      [-32, -20],
+      [-30, -2],
+      [-43, 36],
+      [-38, -1],
+      [-15, -31],
+      [1, -36],
+      [-39, -6],
+      [-69, -25],
+      [-60, -41],
+      [-15, -17],
+      [-39, -29],
+      [-65, -39],
+      [-112, -44],
+      [-33, 1],
+      [-97, -31],
+      [-13, -11],
+      [-6, -28],
+      [-75, -41],
+      [-74, -23],
+      [-54, -9],
+      [-54, -17],
+      [-7, -19],
+      [-23, -1],
+      [-53, -19],
+      [-82, -7],
+      [-34, -16],
+      [-16, -21],
+      [-77, -5],
+      [-37, -8],
+      [-88, -35],
+      [-33, -6],
+      [-35, -26],
+      [-100, -13],
+      [-14, -7],
+      [-82, -17],
+      [-7, -13],
+      [-31, -13],
+      [-147, -46],
+      [-26, -32],
+      [-63, -25],
+      [-117, -61],
+      [-71, -32],
+      [-93, -49],
+      [-246, -170],
+      [-73, -61],
+      [-22, -33],
+      [-37, -13],
+      [-156, -125],
+      [-18, -17],
+      [-24, -4],
+      [-60, -70],
+      [-37, -38],
+      [-16, -5],
+      [-40, -31],
+      [-35, -46],
+      [-18, -6],
+      [-25, -32],
+      [-35, -66],
+      [-33, -28],
+      [-60, -61],
+      [-44, -64],
+      [-49, -34],
+      [-70, -68],
+      [-51, -66],
+      [-8, -15],
+      [-54, -50],
+      [-21, -8],
+      [-38, -30],
+      [-109, -117],
+      [-38, -8],
+      [-39, -36],
+      [-103, -46],
+      [-33, -54],
+      [-40, -24],
+      [-45, -47],
+      [-13, -35],
+      [-41, -31],
+      [-71, -23],
+      [-61, -56],
+      [-74, -79],
+      [-7, -15],
+      [-48, -30],
+      [-36, -17],
+      [-29, -5],
+      [-55, -42],
+      [-23, -7],
+      [-59, -55],
+      [-70, -43],
+      [-60, -44],
+      [-24, -27],
+      [-29, -13],
+      [-84, -60],
+      [-6, -15],
+      [-45, -24],
+      [-15, -16],
+      [11, -36],
+      [44, -71],
+      [72, -88],
+      [20, -11]
+    ],
+    [
+      [60883, 65786],
+      [-35, 6],
+      [-103, 102],
+      [-51, -1],
+      [-135, -79],
+      [-14, -39],
+      [17, -30],
+      [0, -28],
+      [-27, -61],
+      [-19, -12],
+      [-56, -2],
+      [-51, 7],
+      [-42, 28],
+      [2, -96],
+      [-3, -525],
+      [0, -240],
+      [-2, -358],
+      [0, -267],
+      [-61, -19],
+      [-217, -131],
+      [-396, -228],
+      [-96, -74],
+      [-25, -28],
+      [-24, -40],
+      [-53, -123],
+      [-11, -54],
+      [-30, -85],
+      [-36, -37],
+      [-69, -49],
+      [-52, -32],
+      [-28, -158],
+      [-8, -67],
+      [4, -84],
+      [5, -49],
+      [23, -20],
+      [89, -17],
+      [37, 4],
+      [144, -79],
+      [85, -169],
+      [30, -179],
+      [-75, -169],
+      [-52, -56],
+      [-36, -29],
+      [-16, -35],
+      [-12, -214],
+      [-48, -291],
+      [3, -83],
+      [42, -95],
+      [33, -179],
+      [-27, -255],
+      [-36, -106],
+      [-33, -123],
+      [121, -71],
+      [196, -172],
+      [19, -25],
+      [4, -25],
+      [130, -134],
+      [29, -14],
+      [79, -12],
+      [250, -19],
+      [32, -8],
+      [38, -26],
+      [31, -66],
+      [2, -46],
+      [21, -38],
+      [26, -30],
+      [65, -48],
+      [39, -35],
+      [197, -62],
+      [128, -55],
+      [137, -69],
+      [17, -12],
+      [71, -72],
+      [13, -27],
+      [58, -178],
+      [-10, -54],
+      [32, -77],
+      [125, -104],
+      [125, -64],
+      [36, -9],
+      [92, -98],
+      [149, -151],
+      [23, -12],
+      [61, -12],
+      [77, -9],
+      [78, -24],
+      [58, -31],
+      [129, -177],
+      [97, -149],
+      [50, -52],
+      [41, -138],
+      [-21, -313],
+      [9, -133],
+      [7, -14],
+      [88, -276]
+    ],
+    [
+      [66316, 24218],
+      [34, 0],
+      [7, -22],
+      [-33, -53],
+      [-50, 54],
+      [-72, 18],
+      [114, 3]
+    ],
+    [
+      [66679, 24200],
+      [-17, -11],
+      [-67, -27],
+      [-54, -6],
+      [-4, 9],
+      [54, 8],
+      [51, 17],
+      [21, 12],
+      [36, 36],
+      [30, 5],
+      [-50, -43]
+    ],
+    [
+      [67411, 24174],
+      [13, -1],
+      [64, -29],
+      [43, -1],
+      [23, 16],
+      [48, -6],
+      [-44, -19],
+      [-47, -5],
+      [-75, 24],
+      [-25, 21]
+    ],
+    [
+      [67032, 24266],
+      [101, -43],
+      [155, -28],
+      [-26, -9],
+      [-87, 18],
+      [-59, 6],
+      [-86, 35],
+      [-53, -10],
+      [-23, 1],
+      [-36, 16],
+      [74, 3],
+      [26, 16],
+      [14, -5]
+    ],
+    [
+      [67983, 36238],
+      [139, -236],
+      [51, -25],
+      [-39, -424],
+      [-40, -360],
+      [-28, -299],
+      [-40, -427],
+      [-50, -523],
+      [-43, -441],
+      [-40, -421],
+      [-40, -434],
+      [-14, -153],
+      [-51, -565],
+      [-67, -750],
+      [-13, -156],
+      [-66, -763],
+      [-39, -447],
+      [-32, -356],
+      [-33, -344],
+      [-30, -332],
+      [-25, -271],
+      [-5, -208],
+      [13, -386],
+      [9, -192],
+      [18, -469],
+      [22, -519],
+      [11, -292],
+      [12, -293],
+      [24, -663],
+      [16, -481],
+      [17, -443]
+    ],
+    [
+      [67620, 24565],
+      [-8, -22],
+      [10, -29],
+      [-30, -18],
+      [-17, 30],
+      [-28, 2],
+      [-23, -18],
+      [0, -25],
+      [-14, -20],
+      [-33, -25],
+      [-16, -4],
+      [-46, 8],
+      [-2, 15],
+      [-31, 32],
+      [-25, 8],
+      [-81, 2],
+      [-31, 36],
+      [-32, -13],
+      [-20, 14],
+      [-74, 9],
+      [-29, -16],
+      [-39, -31],
+      [-53, -2],
+      [-33, 12],
+      [-46, 45],
+      [-75, 49],
+      [3, 25],
+      [-58, 37],
+      [-31, -42],
+      [12, -44],
+      [-54, 28],
+      [-8, 14],
+      [-69, 5],
+      [-92, -8],
+      [-84, -17],
+      [-124, -40],
+      [-193, -93],
+      [-62, -22],
+      [-96, -43],
+      [-36, -6],
+      [-6, 11],
+      [5, 52],
+      [19, 10],
+      [3, 45],
+      [-23, 40],
+      [-42, 24],
+      [-39, -3],
+      [-32, -13],
+      [-24, -42],
+      [62, -36],
+      [19, -47],
+      [-14, -42],
+      [-28, -24],
+      [-39, -21],
+      [-33, -43],
+      [-66, -34],
+      [-21, -79],
+      [-32, -46],
+      [-1, -49],
+      [-25, -27],
+      [-15, 4],
+      [-12, 38],
+      [-8, 6],
+      [-43, -27],
+      [-39, -6]
+    ],
+    [
+      [64057, 36238],
+      [774, -3],
+      [183, -1],
+      [281, 3],
+      [280, -2],
+      [263, 0],
+      [397, 0],
+      [227, 0],
+      [429, 2],
+      [589, 2],
+      [167, -1],
+      [336, 0]
+    ],
+    [
+      [25463, 60154],
+      [-108, 30],
+      [-46, 35],
+      [-15, 43],
+      [-148, 266],
+      [-195, 257],
+      [-100, 69],
+      [-32, -1],
+      [-175, -115],
+      [-52, -156],
+      [-17, -98],
+      [-140, -128],
+      [-56, -6],
+      [-136, 21],
+      [-61, -43],
+      [-129, -70],
+      [-69, 32],
+      [-11, 29],
+      [-39, 62],
+      [-144, -19],
+      [-243, -58],
+      [-202, 2],
+      [-65, 23],
+      [-26, 29],
+      [-42, 23],
+      [-29, 0],
+      [-47, -12],
+      [-75, -53],
+      [-36, -132],
+      [-23, -35],
+      [-29, -30],
+      [-44, 7],
+      [-117, 43],
+      [-132, 9],
+      [-268, 38],
+      [-57, 14],
+      [-116, -49],
+      [-57, -85],
+      [-19, -43],
+      [-5, -102],
+      [-12, -31],
+      [-34, -26],
+      [-49, 8],
+      [-176, 133],
+      [-62, 60],
+      [-44, 114],
+      [-55, 309],
+      [14, 27],
+      [-4, 19],
+      [-92, 207],
+      [-63, 112],
+      [-43, 45],
+      [-93, 68],
+      [-73, 38],
+      [-58, -26],
+      [-95, -61],
+      [-23, -9],
+      [-22, 16],
+      [-189, 187],
+      [-39, 74],
+      [-42, 120],
+      [8, 16],
+      [40, -1],
+      [48, 60],
+      [2, 117],
+      [-6, 69],
+      [-27, 44],
+      [-40, 1],
+      [-170, 168],
+      [19, 33],
+      [1, 15],
+      [-63, 106],
+      [-94, 110],
+      [-45, 37],
+      [-120, 203],
+      [-41, 193],
+      [-25, 149],
+      [16, 45],
+      [-13, 73],
+      [-25, 23],
+      [-45, 24],
+      [-6, 48],
+      [21, 74],
+      [-5, 25],
+      [-17, 29],
+      [-40, 31],
+      [-114, 72],
+      [-70, 103],
+      [-69, 46],
+      [-30, 12],
+      [-52, -23],
+      [-36, -122],
+      [-187, -228],
+      [-98, -39],
+      [-111, 9],
+      [-115, -192],
+      [-77, -2],
+      [-29, 58],
+      [-175, 176],
+      [-25, 5],
+      [-75, 3],
+      [-69, -14],
+      [-19, 15],
+      [-4, 183],
+      [24, 13],
+      [17, -3],
+      [49, 29],
+      [27, 35],
+      [10, 92],
+      [-18, 48],
+      [-44, 24],
+      [-35, 29],
+      [-35, 77],
+      [96, 169],
+      [30, 25],
+      [93, 21],
+      [102, 88],
+      [-14, 175],
+      [-20, 37],
+      [-33, 22],
+      [-66, 24],
+      [-34, 30],
+      [-13, 37],
+      [-1, 54],
+      [28, 45],
+      [16, 50],
+      [-1, 46],
+      [-28, 74],
+      [19, 83],
+      [86, 322],
+      [91, 367],
+      [-14, 80],
+      [72, 174],
+      [29, 181],
+      [0, 57],
+      [-13, 28],
+      [-60, 32],
+      [-97, -5],
+      [-45, -17],
+      [-66, -34],
+      [-205, 3],
+      [-41, 15],
+      [-40, 52],
+      [-13, 34],
+      [3, 34],
+      [-7, 39],
+      [-42, 44],
+      [-43, 1],
+      [-50, -15],
+      [-41, 3],
+      [-52, 60],
+      [-109, 109],
+      [-51, 45],
+      [-65, 22],
+      [-60, 48],
+      [-14, 21],
+      [-20, 83],
+      [5, 78],
+      [-255, 288],
+      [-48, 86],
+      [-189, 230],
+      [-123, 106],
+      [-47, 72],
+      [-5, 28],
+      [-48, 88],
+      [-35, 15],
+      [-154, 25],
+      [-107, 27],
+      [-82, 42],
+      [-52, 88],
+      [-19, 46],
+      [-28, 37],
+      [-212, 122],
+      [-57, 19],
+      [-16, 62],
+      [7, 50],
+      [26, 55],
+      [-33, 74],
+      [-18, 49],
+      [7, 45],
+      [27, 53],
+      [28, 155],
+      [-33, 149],
+      [-10, 16],
+      [-354, 389],
+      [-163, 221],
+      [-77, 81],
+      [-2, 253],
+      [0, 349],
+      [1, 723],
+      [0, 1150],
+      [0, 109]
+    ],
+    [
+      [16158, 71576],
+      [1485, -4],
+      [973, 3],
+      [538, 1],
+      [690, -4],
+      [698, -5],
+      [1073, 2],
+      [199, 1],
+      [1519, -1],
+      [631, -1],
+      [172, -1],
+      [914, 1],
+      [713, 0],
+      [269, 1],
+      [980, 2],
+      [411, 1],
+      [941, 2],
+      [197, 0],
+      [602, -2],
+      [122, -1],
+      [841, 1],
+      [570, 0],
+      [1967, 0],
+      [1031, 0],
+      [233, 1],
+      [473, -2],
+      [364, 0],
+      [403, 1],
+      [342, 0],
+      [70, 0],
+      [478, 0],
+      [555, 0],
+      [763, 0],
+      [194, 0],
+      [920, 1]
+    ],
+    [
+      [38489, 71573],
+      [0, -385],
+      [3, -559],
+      [-1, -86],
+      [1, -456],
+      [2, -93],
+      [2, -529],
+      [2, -487],
+      [5, -275],
+      [-3, -291],
+      [-3, -726],
+      [-1, -293],
+      [0, -200],
+      [0, -571],
+      [-1, -243],
+      [1, -545],
+      [0, -465],
+      [-1, -658],
+      [-2, -707],
+      [3, -138]
+    ],
+    [
+      [38496, 63866],
+      [3, -194],
+      [3, -784],
+      [0, -169],
+      [4, -294],
+      [-1, -407],
+      [0, -538],
+      [-32, -6]
+    ],
+    [
+      [38473, 61474],
+      [-768, 3],
+      [-549, 1],
+      [-471, 4],
+      [-108, -1],
+      [-1436, 1],
+      [-132, -7],
+      [-17, -11],
+      [-624, 1],
+      [-1164, 5],
+      [-357, 2],
+      [-99, 9],
+      [-882, 2],
+      [-565, 0],
+      [-398, 0],
+      [-231, -4],
+      [-589, 3],
+      [-103, 0],
+      [-859, -2],
+      [-38, 15],
+      [-309, -1],
+      [-985, -8],
+      [-579, 4],
+      [-207, -19],
+      [-607, -10],
+      [-294, 0],
+      [-84, 14],
+      [-233, 11],
+      [-314, -2],
+      [-22, -165],
+      [-1, -175],
+      [3, -610],
+      [12, -380]
+    ],
+    [
+      [33875, 28134],
+      [-413, 0],
+      [-466, -1],
+      [-551, 1],
+      [-234, -1],
+      [-1462, 0],
+      [-1, -716],
+      [0, -420],
+      [-1195, -2],
+      [-371, 0]
+    ],
+    [
+      [40437, 41295],
+      [0, -228],
+      [0, -480],
+      [0, -552]
+    ],
+    [
+      [40437, 40035],
+      [-73, -56],
+      [0, -406],
+      [1, -662],
+      [-1, -797],
+      [0, -295],
+      [-2, -1036],
+      [0, -650],
+      [-1, -262],
+      [0, -452],
+      [-1, -526],
+      [-1, -378],
+      [1, -141],
+      [0, -639],
+      [-4, -258],
+      [-8, -503],
+      [-3, -130],
+      [-2, -202],
+      [-7, -459],
+      [-2, -149],
+      [-5, -278],
+      [-8, -554],
+      [0, -435],
+      [-1, -365],
+      [1, -405],
+      [0, -952],
+      [0, -364],
+      [-488, -1],
+      [-737, 0],
+      [-561, -1],
+      [-944, 1],
+      [-208, 0],
+      [-512, 1],
+      [-438, 0],
+      [-513, 0],
+      [-850, 3],
+      [-208, 1],
+      [-387, -1],
+      [-382, -1],
+      [-350, -2],
+      [-29, -113],
+      [-24, -240],
+      [25, -36],
+      [17, -1],
+      [71, -83],
+      [40, -21],
+      [18, -16],
+      [14, -37]
+    ],
+    [
+      [38489, 71573],
+      [366, -1],
+      [1700, -1],
+      [1343, -1],
+      [365, 1],
+      [976, 1],
+      [522, 0],
+      [550, 0],
+      [905, 0],
+      [468, -1],
+      [500, 0],
+      [722, 1],
+      [979, 1],
+      [1953, 1],
+      [325, 1],
+      [678, -1],
+      [339, 1]
+    ],
+    [
+      [52419, 63840],
+      [-257, 2],
+      [-553, -1],
+      [-39, 0],
+      [-557, -1],
+      [-303, 0],
+      [-563, 1],
+      [-417, 1],
+      [-330, 1],
+      [-1002, 6],
+      [-686, 4],
+      [-307, -1],
+      [-433, 1],
+      [-183, 2],
+      [-301, 0],
+      [-400, 2],
+      [-382, 2],
+      [-483, 2],
+      [-367, 0],
+      [-573, 1],
+      [-309, 0],
+      [-316, 1],
+      [-532, 0],
+      [-309, 0],
+      [-466, 1],
+      [-378, 0],
+      [-282, 0],
+      [-414, 1],
+      [-188, 1],
+      [-99, -1],
+      [-401, 0],
+      [-237, 1],
+      [-440, -1],
+      [-511, 0],
+      [-204, 1],
+      [-701, 0]
+    ],
+    [
+      [42223, 41278],
+      [261, 1],
+      [559, 4],
+      [454, 3],
+      [272, 2],
+      [370, 3],
+      [125, 0],
+      [503, 3],
+      [230, 3],
+      [652, 3],
+      [159, 1],
+      [225, -2],
+      [389, -1],
+      [299, -4],
+      [315, 0],
+      [332, 0],
+      [284, 0],
+      [476, -1],
+      [288, 0],
+      [316, 0],
+      [355, -3],
+      [216, 0],
+      [379, 1],
+      [432, 1],
+      [307, 1],
+      [57, -1],
+      [268, 0],
+      [586, 1],
+      [219, -1],
+      [286, 1],
+      [235, 0],
+      [622, 0],
+      [401, 0],
+      [371, -1],
+      [169, 2],
+      [190, -1],
+      [509, 0],
+      [236, 0],
+      [395, 1],
+      [372, 0],
+      [265, -2],
+      [285, 0],
+      [152, -2]
+    ],
+    [
+      [56039, 41290],
+      [0, -380],
+      [1, -592],
+      [-1, -286]
+    ],
+    [
+      [56285, 32812],
+      [-9, -31],
+      [-62, -25],
+      [-8, 1],
+      [-247, 112],
+      [-138, 78],
+      [-20, 29],
+      [-27, 61],
+      [-115, 14],
+      [-87, 33],
+      [-317, 290],
+      [-43, 108],
+      [-9, 35],
+      [-116, 49],
+      [-167, 63],
+      [-22, -3],
+      [-40, -68],
+      [9, -54],
+      [-4, -26],
+      [-20, -36],
+      [-50, -35],
+      [-97, -12],
+      [-126, -7],
+      [-71, 7],
+      [-184, 28],
+      [-14, 21],
+      [5, 49],
+      [-19, 57],
+      [-14, 6],
+      [-61, 4],
+      [-293, -169],
+      [-12, -49],
+      [-113, -26],
+      [-233, 50],
+      [-275, -25],
+      [-94, -25],
+      [-16, -61],
+      [-14, -74],
+      [-11, -38],
+      [-22, -27],
+      [-72, -28],
+      [-17, 3],
+      [-139, -6],
+      [-121, -74],
+      [-100, 150],
+      [-46, 12],
+      [-97, -21],
+      [-210, 155],
+      [-6, 49],
+      [9, 55],
+      [-20, 27],
+      [-68, 36],
+      [-26, -2],
+      [-11, -17],
+      [-20, -78],
+      [-22, -53],
+      [-21, -23],
+      [-92, -18],
+      [-176, 58],
+      [-19, 14],
+      [-31, 38],
+      [-23, 71],
+      [-7, 94],
+      [-15, 42],
+      [-27, 24],
+      [-95, -61],
+      [-24, -124],
+      [-38, -62],
+      [-78, -111],
+      [-82, -213],
+      [-28, -31],
+      [-26, -10],
+      [-56, 14],
+      [-39, 37],
+      [-61, 158],
+      [0, 48],
+      [19, 31],
+      [25, 0],
+      [27, 23],
+      [0, 17],
+      [-26, 121],
+      [-9, 14],
+      [-47, 39],
+      [-29, -4],
+      [-157, -106],
+      [-115, -134],
+      [-100, 0],
+      [-50, 23],
+      [-18, 33],
+      [21, 74],
+      [1, 52],
+      [-13, 25],
+      [-53, 39],
+      [-27, 7],
+      [-34, -15],
+      [-66, -41],
+      [-61, 13],
+      [-18, 38],
+      [16, 86],
+      [-38, 41],
+      [-88, 54],
+      [-29, 5],
+      [-39, -19],
+      [-14, -29],
+      [-62, -91],
+      [-96, -115],
+      [-91, -83],
+      [-59, -21],
+      [-21, 2],
+      [-166, 80],
+      [-21, 20],
+      [45, 117],
+      [15, 135],
+      [-71, 30],
+      [-67, -20],
+      [-40, -1],
+      [-82, 25],
+      [-39, 77],
+      [-117, 203],
+      [-58, 6],
+      [-186, 45],
+      [-47, 42],
+      [-72, 15],
+      [-35, -23],
+      [-29, -49],
+      [-4, -17],
+      [-138, -145],
+      [-55, 20],
+      [-92, 155],
+      [-44, 39],
+      [-42, 29],
+      [-70, 4],
+      [-27, -3],
+      [-25, -24],
+      [-64, -39],
+      [-122, 1],
+      [-173, 41],
+      [-114, 76],
+      [-87, 46],
+      [-175, 9],
+      [-109, -7],
+      [-71, 14],
+      [-62, 20],
+      [-39, 194],
+      [3, 83],
+      [-3, 32],
+      [-93, 166],
+      [-177, 97],
+      [-78, -167],
+      [-16, -8],
+      [-62, 4],
+      [-24, 37],
+      [-86, 52],
+      [-29, 12],
+      [-110, 10],
+      [-11, -4],
+      [-68, -104],
+      [-88, -4],
+      [-58, 11],
+      [-134, 132],
+      [-49, 59],
+      [-133, 174],
+      [-17, 36],
+      [-20, 25],
+      [-71, 69],
+      [-42, 12],
+      [-17, -2],
+      [-85, -45],
+      [0, 469],
+      [0, 717],
+      [0, 384],
+      [0, 605],
+      [0, 496],
+      [0, 661],
+      [0, 440],
+      [0, 1121],
+      [-336, 0],
+      [-286, -1],
+      [-349, 0],
+      [-235, 0],
+      [-377, 1],
+      [-436, -1],
+      [-1002, 0],
+      [-377, 1],
+      [-383, 1],
+      [-242, 0],
+      [-1563, 1]
+    ],
+    [
+      [84216, 48161],
+      [-249, 0],
+      [-285, -1],
+      [-284, 0],
+      [-730, 1],
+      [-392, 1],
+      [0, 544],
+      [0, 356],
+      [0, 239],
+      [2, 570],
+      [-2, 300],
+      [0, 305]
+    ],
+    [
+      [82276, 50476],
+      [0, 534],
+      [0, 557],
+      [0, 253],
+      [1, 196],
+      [-1, 232],
+      [0, 239],
+      [0, 262],
+      [0, 329],
+      [0, 453],
+      [0, 323]
+    ],
+    [
+      [82276, 53854],
+      [156, 71],
+      [48, 15],
+      [86, 42],
+      [62, 20],
+      [62, 33],
+      [123, 73],
+      [79, 41],
+      [41, 29],
+      [22, 23],
+      [34, 88],
+      [35, 42],
+      [53, 17],
+      [31, -45],
+      [0, -23],
+      [20, -3],
+      [134, 81],
+      [108, 75],
+      [56, 25],
+      [28, 21],
+      [34, 15],
+      [43, 11],
+      [86, 52],
+      [68, 35]
+    ],
+    [
+      [83685, 54592],
+      [0, -350],
+      [1, -333],
+      [415, -2],
+      [888, 2],
+      [347, -4],
+      [518, 6],
+      [537, -1],
+      [341, 2],
+      [174, -3],
+      [371, -2],
+      [152, 1],
+      [456, 3],
+      [708, -2],
+      [379, 6],
+      [160, 0],
+      [515, -4],
+      [179, -3],
+      [220, -1],
+      [369, 1],
+      [308, 1],
+      [923, 0],
+      [232, 1],
+      [33, -16],
+      [91, -99],
+      [25, -38],
+      [30, -136],
+      [217, -86],
+      [12, 3],
+      [48, -22],
+      [44, -79],
+      [69, -150],
+      [10, -304],
+      [-9, -34],
+      [23, -124],
+      [105, -160],
+      [83, -58],
+      [50, -19],
+      [39, -68],
+      [28, -21],
+      [144, -25],
+      [87, -10],
+      [114, -149],
+      [-7, -25]
+    ],
+    [
+      [93114, 52290],
+      [-124, -53],
+      [-63, -44],
+      [-64, -80],
+      [-16, -26],
+      [-43, -90],
+      [-10, -32],
+      [5, -10],
+      [-5, -40],
+      [-28, -71],
+      [-76, -108],
+      [-96, -86],
+      [15, -26],
+      [-3, -15],
+      [-128, -134],
+      [-60, -38],
+      [-41, -18],
+      [-33, -21],
+      [-40, -33],
+      [-10, -43],
+      [29, -14],
+      [5, -39],
+      [121, -204],
+      [-1, -31],
+      [-103, -173],
+      [-48, -44],
+      [-70, 10],
+      [-46, -66],
+      [-14, -152],
+      [6, -184],
+      [20, -73],
+      [79, -41],
+      [23, 6],
+      [33, -6],
+      [32, -14],
+      [59, -64],
+      [7, -41],
+      [-11, -179],
+      [22, -93],
+      [44, -30],
+      [20, -7],
+      [305, -300],
+      [167, -176],
+      [90, -137],
+      [-3, -34],
+      [-31, -30],
+      [-181, -87],
+      [-254, -131],
+      [-181, -172],
+      [-114, -147],
+      [-96, -103],
+      [-48, -40],
+      [-46, -23],
+      [-67, -18],
+      [-66, 1],
+      [-126, -61],
+      [-76, -60]
+    ],
+    [
+      [91774, 48365],
+      [-72, 46],
+      [-84, 33],
+      [-75, 12],
+      [-75, 1],
+      [-30, -3],
+      [-72, -18],
+      [-53, -23],
+      [-43, -25],
+      [-58, -48],
+      [-42, -49],
+      [-90, -128]
+    ],
+    [
+      [91080, 48163],
+      [-419, 0],
+      [-421, -2],
+      [-334, 0],
+      [-552, 0],
+      [-325, -2],
+      [-292, -1],
+      [-365, 0],
+      [-402, 0],
+      [-140, 1],
+      [-353, 1],
+      [-82, 2],
+      [-568, 2],
+      [-571, 1],
+      [-796, 0],
+      [-229, 0],
+      [-858, -3],
+      [-157, -1]
+    ],
+    [
+      [80120, 40256],
+      [-41, -122],
+      [-15, -9],
+      [20, -79],
+      [0, -51],
+      [-34, -79],
+      [2, -6],
+      [-22, -279],
+      [-40, -8],
+      [-32, 4],
+      [-46, 24],
+      [-8, 30],
+      [-114, -58],
+      [-99, -89],
+      [-46, -94],
+      [-50, -92],
+      [-124, -247],
+      [-100, -62],
+      [-87, -4],
+      [-20, 39],
+      [2, 23],
+      [-21, 52],
+      [-118, 24],
+      [-20, -5],
+      [-29, -45],
+      [-163, -50],
+      [-43, -8],
+      [-51, -27],
+      [-63, -56],
+      [-99, -192],
+      [-82, -75],
+      [-94, -57],
+      [-73, 26],
+      [-27, 20],
+      [-7, 69],
+      [22, 100],
+      [-30, 42],
+      [-33, 23],
+      [-87, -50],
+      [-59, -55],
+      [-73, -50],
+      [-45, -75],
+      [-95, -105],
+      [-42, 41],
+      [-40, 9],
+      [-46, -20],
+      [-27, -52],
+      [28, -109],
+      [-38, -90],
+      [-82, -127],
+      [-40, -43],
+      [-22, -12],
+      [-194, 4],
+      [-121, -38],
+      [-140, -83],
+      [-28, -30],
+      [9, -14],
+      [-7, -35],
+      [-80, -96],
+      [-129, -48],
+      [-147, -67],
+      [-62, -72],
+      [-12, -38],
+      [-24, -14],
+      [-265, 8],
+      [-66, 11],
+      [-150, -17],
+      [-229, -113],
+      [-100, -117],
+      [-36, -30],
+      [-16, -3],
+      [-76, -93],
+      [-42, -173],
+      [-24, -14],
+      [10, -58],
+      [21, -61],
+      [-4, -14],
+      [-60, -69],
+      [-78, -53],
+      [-196, 21],
+      [-17, 26],
+      [-29, 5],
+      [-117, -107],
+      [-4, -48],
+      [-30, -286],
+      [-25, -264]
+    ],
+    [
+      [72811, 36210],
+      [-408, 9],
+      [-73, 1],
+      [-833, 6],
+      [-160, 2],
+      [-131, -3],
+      [-113, 0],
+      [-277, 4],
+      [-344, 0],
+      [-277, 8],
+      [-371, 9],
+      [-165, 5],
+      [-241, 5],
+      [-452, 2],
+      [-190, 3],
+      [-393, 4],
+      [-368, 3],
+      [-32, -30]
+    ],
+    [
+      [65130, 38774],
+      [48, 0],
+      [31, 61],
+      [11, 68],
+      [112, 143],
+      [42, 27],
+      [15, 20],
+      [4, 43],
+      [-5, 28],
+      [-24, 40],
+      [-41, 36],
+      [-131, 159],
+      [15, 9],
+      [25, -10],
+      [141, -25],
+      [24, 2],
+      [89, 22],
+      [13, 12],
+      [-2, 46],
+      [-17, 25],
+      [-18, -7],
+      [-45, 26],
+      [-62, 53],
+      [-15, 35],
+      [8, 33],
+      [19, 16],
+      [45, 0],
+      [39, -12],
+      [29, -2],
+      [24, 6],
+      [24, 24],
+      [18, 66],
+      [-19, 254],
+      [-36, 57]
+    ],
+    [
+      [65491, 40029],
+      [100, -1]
+    ],
+    [
+      [65591, 40028],
+      [-15, -48],
+      [0, -22],
+      [13, -21],
+      [27, -12],
+      [21, 3],
+      [22, 16],
+      [36, 44],
+      [22, 43]
+    ],
+    [
+      [65717, 40031],
+      [70, 4],
+      [63, 7],
+      [119, 9],
+      [306, -8],
+      [285, -4],
+      [242, 2],
+      [538, -3],
+      [104, -2],
+      [295, -1],
+      [517, -9],
+      [28, 43],
+      [10, 67],
+      [-5, 53],
+      [-18, 104],
+      [-20, 83],
+      [-23, 61],
+      [-4, 46],
+      [109, -3],
+      [302, -33],
+      [-7, -77],
+      [395, 12],
+      [422, 7],
+      [557, 4],
+      [388, 10],
+      [174, 3],
+      [387, 11],
+      [76, -47],
+      [168, 46],
+      [262, -7],
+      [252, -24],
+      [215, -14],
+      [92, -8],
+      [454, -22],
+      [440, -15],
+      [81, -2],
+      [69, 3],
+      [363, 26],
+      [336, -10],
+      [440, -41],
+      [151, -8],
+      [962, -28],
+      [509, -6],
+      [553, -18],
+      [28, 46]
+    ],
+    [
+      [76402, 40288],
+      [379, -9],
+      [364, 2],
+      [51, -11],
+      [411, 1],
+      [368, -1],
+      [280, 0],
+      [234, 3],
+      [485, 2],
+      [155, 0],
+      [68, -3],
+      [446, -1],
+      [21, 56],
+      [179, -5],
+      [334, -6],
+      [-57, -60]
+    ],
+    [
+      [92096, 43887],
+      [-102, -172],
+      [-42, -92],
+      [-27, -73],
+      [-28, -52],
+      [-33, -34],
+      [-14, 0],
+      [-33, 21],
+      [-16, 18],
+      [-53, 1],
+      [-44, -30],
+      [-28, -31],
+      [-36, -48],
+      [-52, -83],
+      [-61, -144],
+      [-17, -45],
+      [-29, -58],
+      [-16, -45],
+      [-9, -58],
+      [-32, -102],
+      [-14, -36],
+      [-3, -51],
+      [8, -19],
+      [23, -4],
+      [3, -17],
+      [-23, -32],
+      [-50, -88],
+      [-61, -127],
+      [8, -43],
+      [-8, -40],
+      [-12, -23],
+      [-47, -62],
+      [-43, -81],
+      [-12, -33],
+      [1, -25],
+      [-17, -37],
+      [-55, -76],
+      [-25, -21],
+      [-10, 10],
+      [-26, -12],
+      [14, -51],
+      [-16, -62],
+      [16, -67],
+      [-25, -43],
+      [7, -27],
+      [-55, -67],
+      [-89, -89],
+      [-16, -24],
+      [-38, -30],
+      [-35, 49],
+      [-37, -33],
+      [-46, -5],
+      [1, 26],
+      [-15, 72],
+      [-39, 79],
+      [-27, 42],
+      [-1, 35],
+      [6, 31],
+      [-28, 66],
+      [4, 29],
+      [15, 30],
+      [-15, 21],
+      [9, 72],
+      [8, 36],
+      [31, 50],
+      [20, 42],
+      [13, 91],
+      [-6, 28],
+      [3, 47],
+      [10, 27],
+      [29, 57],
+      [-5, 36],
+      [8, 46],
+      [17, 55],
+      [18, 32],
+      [5, 43],
+      [-7, 31],
+      [31, 92],
+      [28, 56],
+      [61, 96],
+      [16, 19],
+      [0, 49],
+      [17, 39],
+      [40, 25],
+      [24, 73],
+      [23, 19],
+      [17, 33],
+      [-17, 36],
+      [-11, 38],
+      [46, 32],
+      [17, 6],
+      [26, -6],
+      [51, 6],
+      [13, 25],
+      [24, 8],
+      [12, 17],
+      [14, 53],
+      [36, 36],
+      [8, 29],
+      [-4, 33],
+      [-41, 36],
+      [-20, 3],
+      [-12, -12],
+      [-49, -2],
+      [-8, 19],
+      [85, 81],
+      [14, -18],
+      [19, 4],
+      [45, 51]
+    ],
+    [
+      [91300, 43694],
+      [85, 110],
+      [419, 48],
+      [292, 35]
+    ],
+    [
+      [90735, 43404],
+      [-16, -75],
+      [-30, 17],
+      [-5, 56],
+      [2, 33],
+      [49, -31]
+    ],
+    [
+      [90697, 43701],
+      [-44, -46],
+      [-28, -51],
+      [-6, 35],
+      [-20, 62]
+    ],
+    [
+      [90599, 43701],
+      [98, 0]
+    ],
+    [
+      [87487, 47152],
+      [95, -8],
+      [140, -42],
+      [59, -38],
+      [49, -61],
+      [44, -22],
+      [49, -19],
+      [45, -44],
+      [3, -22],
+      [-37, -77],
+      [-49, -18],
+      [-21, -28],
+      [-20, -63],
+      [5, -46],
+      [8, -17],
+      [115, -119],
+      [65, -18],
+      [90, -14],
+      [65, 4],
+      [90, -44],
+      [56, -36],
+      [18, -50],
+      [-7, -22],
+      [11, -42],
+      [27, -23],
+      [26, -14],
+      [44, -11],
+      [57, 3],
+      [35, -8],
+      [53, -77]
+    ],
+    [
+      [88753, 45815],
+      [-5, -69],
+      [-62, -134],
+      [-58, -35],
+      [-28, -26],
+      [-22, -32],
+      [-6, -61],
+      [11, -37]
+    ],
+    [
+      [88583, 45421],
+      [-51, 3],
+      [-33, -31],
+      [-50, -17],
+      [-27, 52],
+      [-45, 2],
+      [-15, -26],
+      [7, -19],
+      [-4, -76],
+      [-32, -20],
+      [6, -44],
+      [-29, -46],
+      [1, -19],
+      [-14, -36],
+      [-32, -46],
+      [-18, -33],
+      [-23, -68],
+      [-5, -46],
+      [12, -78],
+      [16, -51],
+      [-13, -36],
+      [40, -35],
+      [15, -26],
+      [-1, -20],
+      [16, -30],
+      [27, -16],
+      [47, -4],
+      [76, 23],
+      [37, 3],
+      [31, 10],
+      [46, 56],
+      [62, 4],
+      [37, -3],
+      [28, 24],
+      [26, 46],
+      [23, 11],
+      [59, -66],
+      [-10, -82],
+      [-7, -32],
+      [-18, -44],
+      [8, -23],
+      [53, -62],
+      [31, -10],
+      [35, -44],
+      [9, -51],
+      [-18, -23],
+      [9, -34],
+      [47, -29],
+      [49, -13],
+      [66, -63],
+      [68, -22],
+      [27, 0],
+      [67, 14],
+      [52, -6],
+      [32, -25],
+      [8, -26],
+      [32, -22],
+      [33, 29],
+      [5, 16],
+      [30, 2],
+      [37, -22],
+      [40, 1],
+      [26, 13],
+      [29, -12],
+      [19, -50],
+      [5, -47],
+      [40, -38],
+      [68, -45],
+      [13, -19],
+      [26, -68],
+      [11, -41],
+      [45, -23],
+      [42, -9],
+      [13, -38],
+      [65, -55],
+      [21, -25],
+      [46, -21],
+      [58, -16],
+      [31, -13],
+      [145, -90],
+      [54, -56],
+      [-15, -69],
+      [-12, -73],
+      [-27, -39],
+      [-31, -9],
+      [-20, 22],
+      [-26, -26],
+      [-6, -44],
+      [7, -16],
+      [-10, -96],
+      [13, -52],
+      [-14, -24],
+      [18, -40],
+      [1, -39],
+      [-24, -11],
+      [-18, -20],
+      [-28, -53],
+      [14, -25],
+      [48, -10],
+      [26, -15],
+      [25, -45],
+      [-2, -11],
+      [-54, 20],
+      [-98, -29],
+      [-35, 42],
+      [-34, 4],
+      [-82, 60],
+      [-54, 34],
+      [-32, 1],
+      [-15, -48],
+      [-24, -12],
+      [-49, 53],
+      [3, 61],
+      [-9, 43],
+      [-38, 59],
+      [-30, 74],
+      [-15, 29],
+      [-33, 10],
+      [-24, 20],
+      [-67, 39],
+      [-13, 27],
+      [-41, 47],
+      [-40, -7],
+      [-38, 35],
+      [-20, 39],
+      [-10, 34],
+      [-17, 26],
+      [-34, 9],
+      [-35, -25],
+      [3, -16],
+      [31, -57],
+      [28, -41],
+      [31, -65],
+      [20, -25],
+      [15, -7],
+      [48, -2],
+      [11, -9],
+      [1, -40],
+      [12, -24],
+      [24, -11],
+      [45, -2],
+      [38, -16],
+      [-1, -34],
+      [42, -35],
+      [-1, -36],
+      [34, -79],
+      [-6, -25],
+      [17, -38],
+      [58, -75],
+      [29, -14],
+      [170, 3],
+      [29, -35],
+      [17, -43],
+      [52, -22],
+      [47, 2],
+      [47, -10],
+      [60, -20],
+      [-5, -27],
+      [-51, -37],
+      [-35, 0],
+      [-21, -44],
+      [14, -36],
+      [44, -25],
+      [42, 6],
+      [35, 42],
+      [13, -16],
+      [30, -66],
+      [23, -86],
+      [4, -64],
+      [9, -89],
+      [-6, -29],
+      [-30, -45],
+      [-15, -56],
+      [2, -33],
+      [-20, -8],
+      [-48, 26],
+      [-7, 22],
+      [-47, 66],
+      [-55, 26],
+      [-38, 27],
+      [-11, 33],
+      [-41, 10],
+      [-5, -43],
+      [-36, -14],
+      [-15, -33],
+      [19, -30],
+      [54, -55],
+      [34, -64],
+      [13, -56],
+      [22, -15],
+      [13, -23],
+      [-57, -13],
+      [-46, -3],
+      [-22, -27],
+      [-87, -7],
+      [-13, 11],
+      [-19, -13],
+      [-19, -40],
+      [17, -21],
+      [42, -24],
+      [144, 23],
+      [8, -5],
+      [-11, -55],
+      [12, -20],
+      [-3, -34],
+      [-16, -49],
+      [34, -12],
+      [40, 33],
+      [31, -6],
+      [6, -37],
+      [18, -25],
+      [36, -8],
+      [35, -30],
+      [33, -81],
+      [6, -26],
+      [-40, -124],
+      [-21, -85],
+      [-20, 0],
+      [-6, 31],
+      [-42, 4],
+      [-14, -22],
+      [-47, -21],
+      [-43, -40],
+      [-28, -50],
+      [-32, 18],
+      [-44, 72],
+      [8, 24],
+      [-31, 50],
+      [-115, 89],
+      [1, 37],
+      [-20, 16],
+      [-34, -20],
+      [-24, 11],
+      [-22, 41],
+      [-72, 57],
+      [-12, 20],
+      [5, 38],
+      [33, 45],
+      [-12, 18],
+      [-16, 63],
+      [-19, 37],
+      [-38, 36],
+      [-73, 5],
+      [-18, -10],
+      [-59, -13],
+      [-23, -54],
+      [-27, -2],
+      [-43, 44],
+      [-38, -8],
+      [-3, -19],
+      [11, -23],
+      [74, -70],
+      [18, -28],
+      [32, -13],
+      [28, 7],
+      [34, 66],
+      [9, 54],
+      [12, 8],
+      [29, -39],
+      [12, -24],
+      [-15, -38],
+      [0, -42],
+      [9, -10],
+      [18, -72],
+      [-2, -33],
+      [-18, -51],
+      [-1, -54],
+      [11, -23],
+      [31, -24],
+      [63, -2],
+      [47, -17],
+      [17, -16],
+      [27, -47],
+      [71, -51],
+      [7, -26],
+      [39, -21],
+      [23, -32],
+      [10, -88],
+      [-2, -54],
+      [25, -33],
+      [29, 3],
+      [13, 48],
+      [30, 3],
+      [44, -18],
+      [38, 6],
+      [3, 60],
+      [59, -2],
+      [47, -11],
+      [-4, 51],
+      [7, 53],
+      [21, -10],
+      [34, 32],
+      [23, 1],
+      [32, -10],
+      [62, -49],
+      [24, -14],
+      [59, -21],
+      [94, -21],
+      [82, -36],
+      [14, 0],
+      [56, 21],
+      [46, 37],
+      [36, -3],
+      [33, -22],
+      [9, -28],
+      [36, -173],
+      [12, -75],
+      [30, -129],
+      [51, -175],
+      [58, -154],
+      [31, -119],
+      [13, -83]
+    ],
+    [
+      [90933, 40162],
+      [-159, -1],
+      [-316, 0],
+      [-355, 0],
+      [-425, 0],
+      [-494, 0],
+      [-203, -17],
+      [-462, 6],
+      [-159, -4],
+      [-88, 0],
+      [-875, 1],
+      [-201, 0],
+      [-480, -3],
+      [-209, 2],
+      [-420, -6],
+      [-109, -3],
+      [-248, 3],
+      [-248, -1],
+      [-327, 1],
+      [-284, -2],
+      [-406, 0],
+      [-312, -2],
+      [-291, 3],
+      [-471, 1],
+      [-200, 1],
+      [-264, 2],
+      [-110, 1],
+      [-378, 16],
+      [-476, 29],
+      [-106, 0],
+      [-174, -6],
+      [-119, 6],
+      [-298, 14],
+      [-457, 20],
+      [-85, -1],
+      [-312, 15],
+      [-160, 16],
+      [-132, 3]
+    ],
+    [
+      [76402, 40288],
+      [49, 40],
+      [227, 124],
+      [55, 12],
+      [69, -14],
+      [197, 79],
+      [22, 12],
+      [267, 92],
+      [60, 4],
+      [58, 10],
+      [15, 19],
+      [5, 27],
+      [-11, 15],
+      [-1, 36],
+      [60, 109],
+      [50, 75],
+      [185, 12],
+      [115, 38],
+      [92, 126],
+      [7, 21],
+      [-5, 31],
+      [9, 19],
+      [-26, 33],
+      [3, 28],
+      [30, 21],
+      [23, 6],
+      [17, 16],
+      [1, 19],
+      [27, 15],
+      [47, -1],
+      [35, 23],
+      [92, 74],
+      [3, 93],
+      [-2, 60],
+      [180, 144],
+      [111, 84],
+      [102, 55],
+      [297, 124],
+      [110, 113],
+      [602, 570]
+    ],
+    [
+      [79579, 42652],
+      [76, -65],
+      [-28, -8],
+      [-94, -65],
+      [-6, -16],
+      [8, -40],
+      [9, -15],
+      [71, -23],
+      [25, -19],
+      [15, -63],
+      [-12, -102],
+      [16, -39],
+      [48, -41],
+      [11, -28],
+      [28, 4],
+      [25, -58],
+      [21, -21],
+      [0, -23],
+      [20, -14],
+      [93, -10],
+      [34, -17],
+      [25, 2],
+      [26, -29],
+      [6, -51],
+      [30, -11],
+      [83, -71],
+      [9, -23],
+      [220, 11],
+      [99, 68],
+      [6, 41],
+      [176, 88],
+      [40, 88],
+      [20, -3],
+      [28, 48],
+      [79, -97],
+      [176, -162],
+      [38, 20],
+      [70, 50],
+      [102, 40],
+      [53, 15],
+      [92, 16],
+      [99, 7],
+      [14, -5],
+      [48, 11],
+      [53, 26],
+      [35, 22],
+      [95, 80],
+      [-43, 65],
+      [27, 141],
+      [87, -53],
+      [23, -29],
+      [42, -30],
+      [12, -29],
+      [274, 153],
+      [207, 123],
+      [31, -118],
+      [36, -31],
+      [20, 8],
+      [73, 60],
+      [195, 124],
+      [11, 5],
+      [-29, 89],
+      [34, 25],
+      [44, 91],
+      [90, 63],
+      [36, 52],
+      [-34, 25],
+      [-53, 21],
+      [-46, 95],
+      [-7, 21],
+      [17, 11],
+      [43, 58],
+      [9, 30],
+      [-7, 18],
+      [10, 45],
+      [57, 108],
+      [120, 192],
+      [59, 46],
+      [238, 251],
+      [45, 92],
+      [35, 87],
+      [53, 95],
+      [-13, 74],
+      [24, 50],
+      [8, 74],
+      [54, 60],
+      [192, 164],
+      [-40, 92],
+      [3, 11],
+      [143, 163],
+      [79, 173],
+      [2, 20],
+      [-20, 62],
+      [56, 90],
+      [37, 204],
+      [95, -47],
+      [79, -32],
+      [35, -24],
+      [29, -42],
+      [83, -194],
+      [306, -114],
+      [27, 11],
+      [32, 23],
+      [-4, 14],
+      [28, 18],
+      [9, 16],
+      [98, 125],
+      [4, 16],
+      [62, 166],
+      [52, 150],
+      [21, 46],
+      [80, 140],
+      [65, 157],
+      [4, 52],
+      [103, 161],
+      [11, 10],
+      [232, -219],
+      [64, 122],
+      [50, 113],
+      [37, 73],
+      [17, 18],
+      [110, 76],
+      [17, -31],
+      [203, 137],
+      [82, 123],
+      [7, 16],
+      [-33, 31],
+      [118, 143],
+      [90, 63],
+      [38, 47],
+      [39, 62],
+      [15, 38],
+      [-30, 43],
+      [-22, 23],
+      [27, 36],
+      [45, 80],
+      [110, 276],
+      [-40, 11],
+      [28, 273],
+      [220, -188],
+      [365, -320],
+      [381, -334],
+      [11, 20],
+      [94, 244],
+      [5, 50],
+      [13, 16],
+      [22, 66],
+      [58, 81]
+    ],
+    [
+      [91512, 47870],
+      [-22, 20],
+      [-6, 33],
+      [22, 8]
+    ],
+    [
+      [91506, 47931],
+      [6, -61]
+    ],
+    [
+      [91774, 48365],
+      [-2, -15],
+      [-40, -32],
+      [-19, -24],
+      [-34, -58],
+      [-17, -50],
+      [-53, -83],
+      [-11, -30]
+    ],
+    [
+      [91598, 48073],
+      [-37, 16],
+      [-61, -90],
+      [-46, -15],
+      [-46, -73],
+      [-6, -15],
+      [6, -47],
+      [91, -89],
+      [-5, -9],
+      [-9, -79],
+      [18, -17],
+      [-11, -31],
+      [-18, 2],
+      [-21, -32],
+      [-10, -43],
+      [7, -47],
+      [33, -55],
+      [29, -22],
+      [33, -35],
+      [27, -62],
+      [20, -65],
+      [35, -29],
+      [7, -29],
+      [39, -31],
+      [17, -6],
+      [40, -38],
+      [7, -42],
+      [13, -29],
+      [37, -52],
+      [10, -25],
+      [-6, -28],
+      [1, -50],
+      [16, -19],
+      [7, -29],
+      [-3, -41],
+      [-25, -35],
+      [-4, -46],
+      [17, -171],
+      [-1, -55],
+      [10, -22],
+      [31, -23],
+      [63, -61],
+      [51, -92],
+      [13, -52],
+      [0, -58],
+      [17, -14],
+      [-18, -37],
+      [15, -29],
+      [76, -90],
+      [58, -83],
+      [50, -53],
+      [27, -42],
+      [59, -42],
+      [46, -20],
+      [39, 2],
+      [30, 14],
+      [14, 22],
+      [14, -63],
+      [5, -86],
+      [26, -195],
+      [0, -72],
+      [10, -62],
+      [19, -306],
+      [2, -89]
+    ],
+    [
+      [92456, 44957],
+      [-254, -1],
+      [-346, 3],
+      [-107, 2],
+      [-244, 7],
+      [-249, 11],
+      [-10, 156],
+      [-16, 286],
+      [-34, 591],
+      [-37, 620],
+      [-4, 71],
+      [-35, 591],
+      [-39, 656],
+      [-2, 112],
+      [1, 101]
+    ],
+    [
+      [79579, 42652],
+      [-55, 13],
+      [-19, -24],
+      [-75, -6],
+      [-127, 72],
+      [-16, 49],
+      [-31, 41],
+      [-144, 121],
+      [-57, 37],
+      [-87, 74],
+      [-19, 52],
+      [-35, 71],
+      [13, 58],
+      [-21, 43],
+      [-163, 239],
+      [-106, 100],
+      [-48, 66],
+      [6, 23],
+      [60, 79],
+      [-1, 20],
+      [-41, 34],
+      [-41, 8],
+      [-19, 18],
+      [-36, 77],
+      [-15, 55],
+      [-98, 143],
+      [-40, 14],
+      [-28, 37],
+      [-16, 70],
+      [76, 206],
+      [38, -2],
+      [17, 44],
+      [5, 131],
+      [-44, 169],
+      [-3, 76],
+      [7, 23]
+    ],
+    [
+      [78416, 44883],
+      [61, -44],
+      [75, 8],
+      [334, 84],
+      [20, 9],
+      [18, 25],
+      [12, 34],
+      [34, 181],
+      [8, 99],
+      [32, 37],
+      [23, 12],
+      [30, 0],
+      [50, -17],
+      [47, 4],
+      [30, 27],
+      [10, 56],
+      [-19, 209],
+      [-11, 64],
+      [-20, 59],
+      [-40, 41],
+      [-2, 34],
+      [11, 25],
+      [46, 45],
+      [12, 4],
+      [84, 125],
+      [86, 264],
+      [77, 59],
+      [19, 60],
+      [10, 19],
+      [35, 11],
+      [28, -5],
+      [124, -97],
+      [30, -53],
+      [35, -78],
+      [0, -33],
+      [-48, -58],
+      [-1, -25],
+      [34, -33],
+      [63, 7],
+      [214, 112],
+      [7, 20],
+      [-15, 206],
+      [-16, 28],
+      [-57, 54],
+      [-15, 30],
+      [-2, 57],
+      [122, 33],
+      [-5, 230],
+      [18, 11],
+      [83, 131],
+      [167, 84],
+      [118, 194],
+      [139, 128],
+      [21, 14],
+      [39, -2],
+      [42, -35],
+      [11, -16],
+      [24, -92],
+      [18, -21],
+      [16, -4],
+      [52, 10],
+      [98, 74],
+      [45, 27],
+      [41, 11],
+      [47, -10],
+      [15, 6],
+      [283, 333],
+      [81, 88],
+      [142, 130],
+      [96, 25],
+      [22, 10],
+      [90, 214],
+      [4, 16],
+      [44, 468],
+      [-7, 21],
+      [7, 29],
+      [87, 103],
+      [36, 32],
+      [16, 168],
+      [-3, 54],
+      [12, 76],
+      [39, 162],
+      [100, 232],
+      [27, 25],
+      [39, 64],
+      [25, 67],
+      [6, 27],
+      [-18, 108],
+      [-18, 54],
+      [13, 134],
+      [24, 120],
+      [-21, 21],
+      [-105, 209],
+      [2, 36],
+      [59, 71],
+      [13, 10],
+      [48, 14],
+      [23, -14],
+      [53, 9],
+      [77, 38]
+    ],
+    [
+      [84216, 48161],
+      [-4, -478],
+      [-7, -26],
+      [-9, -609],
+      [3, -38],
+      [-2, -149],
+      [156, 112],
+      [45, 55],
+      [227, 212],
+      [81, 30],
+      [22, 30],
+      [218, 231],
+      [78, 20],
+      [31, -35],
+      [106, -60],
+      [175, 204],
+      [93, 171],
+      [70, 94],
+      [50, -44],
+      [-22, -41],
+      [22, -30],
+      [132, -91],
+      [62, -28],
+      [168, -39],
+      [181, -7],
+      [59, 56],
+      [9, 56],
+      [-34, 25],
+      [-15, 26],
+      [2, 16],
+      [50, 90],
+      [140, 44],
+      [78, -24],
+      [56, -27],
+      [22, -2],
+      [87, 110],
+      [62, 68],
+      [27, 15],
+      [62, -14],
+      [66, -21],
+      [62, -39],
+      [72, -78],
+      [48, -83],
+      [119, -46],
+      [81, 8],
+      [34, -50],
+      [-8, -31],
+      [43, -99],
+      [38, -46],
+      [70, -21],
+      [78, -155],
+      [49, -108],
+      [-39, -105],
+      [8, -26],
+      [53, -31],
+      [16, -1]
+    ],
+    [
+      [63783, 66569],
+      [-1, 69],
+      [15, 55],
+      [22, 19],
+      [37, 11],
+      [41, -1],
+      [5, -24],
+      [-14, -54],
+      [-6, -53],
+      [-18, -31],
+      [-30, -19],
+      [-65, -28],
+      [-2, 20],
+      [16, 36]
+    ],
+    [
+      [63448, 66177],
+      [27, 29],
+      [37, 0],
+      [28, -37],
+      [34, -28],
+      [-29, -18],
+      [-54, -5],
+      [-116, -48],
+      [-18, -35],
+      [29, -14],
+      [27, -1],
+      [-3, -26],
+      [-73, -17],
+      [-37, 8],
+      [-43, -43],
+      [-45, -33],
+      [-46, -5],
+      [10, 50],
+      [-14, 33],
+      [59, 26],
+      [48, 10],
+      [10, 26],
+      [28, 26],
+      [69, 33],
+      [34, 24],
+      [38, 45]
+    ],
+    [
+      [63554, 66321],
+      [-107, -29],
+      [-33, 31],
+      [38, 60],
+      [62, 24],
+      [135, 40],
+      [38, -29],
+      [-29, -53],
+      [-21, -11],
+      [-26, -40],
+      [-37, 12],
+      [-20, -5]
+    ],
+    [
+      [70316, 62509],
+      [16, 34],
+      [18, -25],
+      [19, -8],
+      [46, 2],
+      [29, 13],
+      [30, -5],
+      [15, -16],
+      [42, 13],
+      [-1, 38],
+      [26, 3],
+      [21, -36],
+      [-5, -17],
+      [-29, 0],
+      [-32, -41],
+      [-22, -48],
+      [-19, -15],
+      [-8, -30],
+      [4, -30],
+      [-18, -26],
+      [-23, 4],
+      [-22, -25],
+      [5, -61],
+      [-15, -3],
+      [-17, 38],
+      [-44, 53],
+      [-35, 23],
+      [0, 25],
+      [19, 17],
+      [-17, 63],
+      [17, 60]
+    ],
+    [
+      [63440, 55194],
+      [8, 26],
+      [-16, 64],
+      [-107, 219],
+      [-32, 25],
+      [-92, 27],
+      [-138, 29],
+      [-196, 57],
+      [-51, 26],
+      [-144, 107],
+      [-29, 79],
+      [-15, 86],
+      [-43, 200],
+      [-31, 32],
+      [-49, 23],
+      [-4, 8],
+      [-55, 336],
+      [-5, 53],
+      [1, 46],
+      [-2, 113],
+      [6, 24],
+      [35, 21],
+      [19, 24],
+      [156, 229],
+      [8, 31],
+      [-51, 92],
+      [-41, 55],
+      [-191, 147],
+      [9, 128],
+      [-23, 196]
+    ],
+    [
+      [60883, 65786],
+      [13, -3],
+      [38, -31],
+      [48, -26],
+      [35, -7],
+      [104, 26],
+      [55, 6],
+      [32, -7],
+      [38, 1],
+      [56, 11],
+      [75, 37],
+      [194, 65],
+      [102, 49],
+      [30, 8],
+      [70, -7],
+      [48, 7],
+      [35, 23],
+      [80, 17],
+      [48, 22],
+      [22, 19],
+      [38, 2],
+      [42, 9],
+      [57, 60],
+      [67, 32],
+      [67, 9],
+      [28, 18],
+      [45, 57],
+      [36, 5],
+      [14, -29],
+      [40, -25],
+      [20, 1],
+      [37, 46],
+      [46, -17],
+      [49, 13],
+      [6, 47],
+      [23, 9],
+      [24, -13],
+      [28, 7],
+      [25, 20],
+      [10, 35],
+      [28, 22],
+      [45, 15],
+      [20, 20],
+      [20, 40],
+      [16, 6],
+      [20, -13],
+      [61, -18],
+      [24, 25],
+      [54, 42],
+      [44, 11],
+      [34, -13],
+      [97, -78],
+      [58, -71],
+      [6, -26],
+      [-35, -29],
+      [-20, -44],
+      [-34, -90],
+      [-50, -49],
+      [-18, -36],
+      [-39, -2],
+      [-13, -21],
+      [8, -16],
+      [-14, -25],
+      [-34, -20],
+      [3, -24],
+      [24, -59],
+      [33, -60],
+      [-2, -16],
+      [-27, -33],
+      [-33, -25],
+      [-47, -18],
+      [-7, -12],
+      [-17, -83],
+      [-27, -43],
+      [-24, -29],
+      [18, -22],
+      [44, -13],
+      [24, 1],
+      [60, 45],
+      [11, 1],
+      [71, 36],
+      [64, 23],
+      [46, 28],
+      [27, 25],
+      [-2, 47],
+      [16, 13],
+      [20, 56],
+      [79, -70],
+      [125, -102],
+      [77, -61],
+      [52, -34],
+      [38, -13],
+      [23, 15],
+      [37, 6],
+      [59, -39],
+      [68, -32],
+      [36, 12]
+    ],
+    [
+      [63855, 65432],
+      [7, -22],
+      [26, -33],
+      [48, -13],
+      [31, 3],
+      [82, -61],
+      [54, 6],
+      [149, -100],
+      [50, -97],
+      [20, -3],
+      [60, -162],
+      [28, -39],
+      [-1, -57],
+      [395, -103],
+      [1175, -308],
+      [282, -75],
+      [124, -49],
+      [388, -214],
+      [18, -23],
+      [46, -22],
+      [85, -8],
+      [56, 21],
+      [17, -2],
+      [96, -33],
+      [8, -8],
+      [16, -56],
+      [53, -8],
+      [46, 14],
+      [150, 77],
+      [47, -7],
+      [18, -59],
+      [15, -9],
+      [123, -24],
+      [87, 19],
+      [151, -96],
+      [84, 30],
+      [20, -36],
+      [53, -11],
+      [16, 12],
+      [50, -11],
+      [67, -38],
+      [69, -51],
+      [53, -86],
+      [2, -9],
+      [-63, -78],
+      [-50, -46],
+      [6, -33],
+      [68, -61],
+      [41, -14],
+      [40, 2],
+      [20, 22],
+      [90, 14],
+      [229, -115],
+      [114, -105],
+      [49, -70],
+      [-2, -18],
+      [-78, -34],
+      [-1, -32],
+      [60, -76],
+      [6, -128],
+      [-8, -167],
+      [-11, -37],
+      [-26, -53],
+      [-14, -10],
+      [-74, -93],
+      [-52, -174],
+      [5, -7],
+      [66, -28],
+      [22, 11],
+      [10, 18],
+      [79, 3],
+      [72, -4],
+      [61, 65],
+      [46, 31],
+      [36, -18],
+      [32, -35],
+      [18, -46],
+      [0, -28],
+      [-114, -200],
+      [-5, -42],
+      [-37, -93],
+      [-19, -21],
+      [20, -69],
+      [133, -160],
+      [129, -31]
+    ],
+    [
+      [69117, 61721],
+      [5, -25],
+      [-26, -8],
+      [-16, -17],
+      [-29, -77],
+      [2, -78],
+      [-10, -94],
+      [-59, -10],
+      [-64, 4],
+      [-131, -23],
+      [-86, -29],
+      [-12, -7],
+      [-37, -49],
+      [-9, -33],
+      [8, -33],
+      [22, -36],
+      [-19, -43],
+      [-19, -9],
+      [-33, -76],
+      [-23, -4],
+      [-42, -29],
+      [-6, -22],
+      [-42, -101],
+      [-27, -57],
+      [-19, -7],
+      [-25, -24],
+      [-34, -59],
+      [-12, -85],
+      [-1, -46],
+      [-22, -11],
+      [-14, -68],
+      [0, -17],
+      [20, -53],
+      [-25, -18],
+      [-8, -26],
+      [-20, -33],
+      [-16, -5],
+      [-12, -26],
+      [69, -69],
+      [64, -23],
+      [50, -1],
+      [28, 16],
+      [22, 30],
+      [34, 66],
+      [-9, 18],
+      [69, 69],
+      [67, 38],
+      [41, 32],
+      [62, 7],
+      [18, 7],
+      [27, 36],
+      [5, 28],
+      [35, 37],
+      [18, 29],
+      [3, 36],
+      [-5, 43],
+      [28, 34],
+      [33, 52],
+      [78, 101],
+      [17, 37],
+      [50, 63],
+      [54, 34],
+      [58, -2],
+      [36, 16],
+      [29, 30],
+      [25, -13],
+      [43, -2],
+      [77, 74],
+      [32, -13],
+      [0, -29],
+      [27, -41],
+      [39, 14],
+      [2, 50],
+      [-18, 33],
+      [-24, 16],
+      [2, 18],
+      [22, 57],
+      [34, 56],
+      [27, 78],
+      [45, 66],
+      [26, 52],
+      [36, 46],
+      [35, 28],
+      [36, 45],
+      [8, 28],
+      [6, 73],
+      [32, 41],
+      [-5, 29],
+      [8, 46],
+      [31, 19],
+      [14, -23],
+      [35, -7],
+      [38, 25],
+      [15, 27],
+      [36, 18],
+      [51, 1],
+      [2, 36],
+      [-7, 44],
+      [26, 86],
+      [57, 22],
+      [14, 37],
+      [24, 31],
+      [12, -17],
+      [32, 5],
+      [32, 29],
+      [63, -10],
+      [24, -43],
+      [-26, -35],
+      [3, -39],
+      [18, -7],
+      [-11, -48],
+      [-13, -29],
+      [-32, -10],
+      [-8, 26],
+      [-47, 0],
+      [-15, -27],
+      [-10, -95],
+      [2, -39],
+      [30, -30],
+      [-31, -29],
+      [-16, -38],
+      [10, -28],
+      [1, -50],
+      [-17, -4],
+      [-11, -20],
+      [-30, -22],
+      [-5, -29],
+      [-18, -10],
+      [-55, 8],
+      [-7, -41],
+      [-27, -75],
+      [-45, -19],
+      [-48, -92],
+      [2, -51],
+      [25, -21],
+      [6, -21],
+      [-60, -37],
+      [-22, -26],
+      [-2, -22],
+      [20, -30],
+      [3, -26],
+      [-117, -73],
+      [-16, -34],
+      [-12, -47],
+      [-42, -25],
+      [-29, -50],
+      [3, -34],
+      [-34, -85],
+      [-12, -47],
+      [-19, -44],
+      [-27, -44],
+      [-47, -110],
+      [-22, -34],
+      [-23, -16],
+      [-36, -40],
+      [-18, -47],
+      [-39, -87],
+      [-29, -102],
+      [-12, -87],
+      [-16, -41],
+      [-15, -93],
+      [-21, -75],
+      [1, -47],
+      [-30, -62],
+      [-22, -75],
+      [8, -71],
+      [36, -84],
+      [25, -76],
+      [1, -48],
+      [-22, -78],
+      [-38, -51],
+      [-43, -39],
+      [-70, -31],
+      [-38, -25],
+      [-48, -43],
+      [-16, -58],
+      [4, -37],
+      [-5, -39],
+      [-29, -36],
+      [-22, -44],
+      [-23, -77],
+      [-6, -60],
+      [-37, -71],
+      [-15, -87],
+      [-17, -57],
+      [14, -71],
+      [-2, -52],
+      [6, -54],
+      [49, -109],
+      [-5, -44],
+      [-13, -35],
+      [13, -74],
+      [0, -48],
+      [-6, -20],
+      [-53, -102],
+      [-87, -153],
+      [-17, -39],
+      [-14, -90],
+      [1, -42],
+      [8, -45],
+      [-28, -80],
+      [-36, -67],
+      [-52, -74],
+      [-18, -30],
+      [-23, -61],
+      [-9, -43],
+      [-13, -113],
+      [-24, -59],
+      [-18, -85],
+      [3, -37],
+      [26, -97],
+      [16, -27],
+      [12, -40],
+      [-36, -84],
+      [0, -29],
+      [14, -30],
+      [31, -38],
+      [18, -62],
+      [-7, -25],
+      [-22, -34],
+      [-24, -22],
+      [-7, -34],
+      [6, -33],
+      [15, -39],
+      [57, -56],
+      [22, -41],
+      [5, -45],
+      [-10, -138],
+      [24, -82],
+      [22, -54],
+      [54, -74],
+      [38, -32],
+      [13, -22],
+      [-6, -28],
+      [-15, -27],
+      [-8, -38],
+      [7, -52],
+      [-7, -48],
+      [-39, -83],
+      [-21, -79],
+      [-10, -71],
+      [1, -23],
+      [16, -49],
+      [-5, -21],
+      [2, -124],
+      [5, -38],
+      [17, -58]
+    ],
+    [
+      [38481, 56436],
+      [1, -621],
+      [0, -363],
+      [0, -889],
+      [0, -337],
+      [-1, -604],
+      [1, -384],
+      [0, -278],
+      [0, -148],
+      [1, -432],
+      [-1, -298],
+      [-1, -405],
+      [0, -286]
+    ],
+    [
+      [29182, 51390],
+      [-292, 2],
+      [-873, -8],
+      [-333, -2],
+      [-360, -1],
+      [-841, -6],
+      [-1016, 8],
+      [0, 640],
+      [1, 318],
+      [-1, 510],
+      [0, 1064]
+    ],
+    [
+      [25467, 53915],
+      [-1, 356],
+      [0, 522],
+      [2, 413],
+      [4, 1138],
+      [-1, 584],
+      [0, 303],
+      [-1, 468],
+      [-1, 398],
+      [-2, 396],
+      [-4, 623],
+      [-1, 941],
+      [1, 97]
+    ],
+    [
+      [38473, 61474],
+      [3, -578],
+      [0, -632],
+      [3, -852],
+      [-1, -611],
+      [0, -482],
+      [0, -412],
+      [0, -391],
+      [2, -351],
+      [1, -729]
+    ],
+    [
+      [68123, 24349],
+      [70, -60],
+      [23, -27],
+      [-8, -11],
+      [-57, -7],
+      [-51, 18],
+      [-55, 0],
+      [-78, -11],
+      [-134, -37],
+      [-1, 9],
+      [42, 15],
+      [63, 15],
+      [95, 17],
+      [60, 6],
+      [20, 18],
+      [11, 29],
+      [0, 26]
+    ],
+    [
+      [73933, 26158],
+      [-283, 0],
+      [-640, -10],
+      [-1038, -9],
+      [-231, 2],
+      [-203, 0],
+      [-158, 1],
+      [-271, -3],
+      [-81, 5],
+      [-214, -2],
+      [-87, 6],
+      [-303, 2],
+      [-259, 4],
+      [-252, 0],
+      [-172, -2],
+      [-318, -1],
+      [-61, 1],
+      [-261, -2],
+      [9, -54],
+      [-13, -101],
+      [-39, -97],
+      [-24, -80],
+      [20, -51],
+      [171, -258],
+      [55, -53],
+      [40, -15],
+      [59, -45],
+      [79, -68],
+      [19, -46],
+      [5, -30],
+      [0, -42],
+      [-104, -278],
+      [36, -60],
+      [22, -204],
+      [-16, -5],
+      [-24, -42],
+      [-20, -61],
+      [2, -142],
+      [-4, -28],
+      [-123, -49]
+    ],
+    [
+      [69251, 24341],
+      [-74, -16],
+      [-43, -13],
+      [-141, -49],
+      [-146, -23],
+      [-121, -28],
+      [-71, -6],
+      [-163, 8],
+      [-67, -2],
+      [-70, -9],
+      [-53, -12],
+      [8, 23],
+      [106, 14],
+      [34, 52],
+      [24, 13],
+      [33, -21],
+      [8, -14],
+      [39, -21],
+      [61, 2],
+      [79, 36],
+      [56, 0],
+      [39, 20],
+      [21, 38],
+      [0, 35],
+      [-32, 51],
+      [-45, 32],
+      [-23, 21],
+      [-39, 54],
+      [-13, 39],
+      [-15, 20],
+      [-37, 16],
+      [-77, 65],
+      [-5, 12],
+      [-9, 81],
+      [-11, 62],
+      [-22, 26],
+      [-3, 16],
+      [41, 97],
+      [18, 63],
+      [-5, 38],
+      [-20, 50],
+      [5, 76],
+      [-13, 51],
+      [-32, 54],
+      [-36, 3],
+      [-47, 41],
+      [-51, 25],
+      [-25, -28],
+      [-9, -31],
+      [-15, -20],
+      [-18, -2],
+      [-33, -20],
+      [5, -65],
+      [10, -17],
+      [-20, -61],
+      [-19, -23],
+      [-19, -40],
+      [7, -43],
+      [-2, -44],
+      [-15, -13],
+      [-19, -35],
+      [-4, -42],
+      [12, -55],
+      [-18, -47],
+      [4, -64],
+      [-6, -126],
+      [-15, -52],
+      [-23, -46],
+      [-16, -45],
+      [-36, 17],
+      [-30, -7],
+      [-37, -19],
+      [-7, 11],
+      [-5, 44],
+      [18, 23],
+      [-22, 36],
+      [-8, 0],
+      [-104, 51],
+      [-41, 1],
+      [-15, -31],
+      [-48, -1],
+      [-6, 26],
+      [-24, 20],
+      [-59, -1],
+      [-19, -6],
+      [-38, -41]
+    ],
+    [
+      [82776, 11880],
+      [-18, -44],
+      [-15, -10],
+      [-37, -95],
+      [-36, -64],
+      [-82, -169],
+      [-5, -16],
+      [8, -39],
+      [-16, -37],
+      [-35, -60],
+      [-42, -55],
+      [-53, -33],
+      [-28, -49],
+      [-35, -15],
+      [-22, -25],
+      [-37, -55],
+      [9, -18],
+      [-11, -21],
+      [-80, -82],
+      [-52, -81],
+      [-11, -12],
+      [-31, -6],
+      [-43, -32],
+      [-45, -64],
+      [-44, -40],
+      [-1, 19],
+      [35, 24],
+      [32, 43],
+      [4, 33],
+      [46, 35],
+      [30, 16],
+      [19, -6],
+      [22, 23],
+      [28, 72],
+      [-4, 37],
+      [40, 6],
+      [29, 29],
+      [25, 48],
+      [27, 23],
+      [38, 56],
+      [-9, 20],
+      [-30, 13],
+      [-25, 26],
+      [20, 18],
+      [15, -25],
+      [48, -27],
+      [31, 44],
+      [0, 21],
+      [-26, 84],
+      [2, 9],
+      [62, -36],
+      [19, 12],
+      [14, 22],
+      [16, 51],
+      [-9, 54],
+      [9, 15],
+      [32, 21],
+      [37, 11],
+      [23, 52],
+      [7, 57],
+      [-17, 36],
+      [-47, 36],
+      [8, 10],
+      [45, 9],
+      [20, -9],
+      [25, 20],
+      [43, 50],
+      [5, 27],
+      [26, 48],
+      [35, 44],
+      [4, 49],
+      [16, 45],
+      [37, 19],
+      [22, 27],
+      [15, 44],
+      [13, 61],
+      [13, 37],
+      [5, 32],
+      [-4, 24],
+      [6, 31],
+      [17, 29],
+      [9, -2],
+      [1, -90],
+      [-18, -36],
+      [-38, -142],
+      [-33, -37],
+      [-30, -90],
+      [-4, -37],
+      [-19, -13]
+    ],
+    [
+      [80296, 10156],
+      [5, 26],
+      [33, 60],
+      [10, -1],
+      [28, -29],
+      [13, -3],
+      [30, 20],
+      [13, 41],
+      [40, 16],
+      [26, 3],
+      [14, -18],
+      [19, 8],
+      [13, 18],
+      [-1, 55],
+      [22, -2],
+      [16, -32],
+      [20, 37],
+      [-8, 39],
+      [43, -10],
+      [18, -14],
+      [14, -44],
+      [47, -44],
+      [27, -3],
+      [49, -16],
+      [8, -24],
+      [10, -67],
+      [22, -21],
+      [-10, -13],
+      [-55, -30],
+      [-116, -47],
+      [-13, 6],
+      [-2, 43],
+      [-21, 17],
+      [-33, -3],
+      [-31, -15],
+      [-40, 5],
+      [-20, 8],
+      [9, 20],
+      [-8, 17],
+      [-34, 13],
+      [-8, -11],
+      [-11, -42],
+      [-4, -48],
+      [-14, -12],
+      [-52, -14],
+      [-105, -71],
+      [-114, -34],
+      [-39, -36],
+      [-12, 3],
+      [-76, -9],
+      [-62, -11],
+      [-38, -14],
+      [-45, -5],
+      [-7, 48],
+      [5, 16],
+      [20, 3],
+      [13, 38],
+      [37, -3],
+      [48, 13],
+      [17, 0],
+      [16, -21],
+      [27, 16],
+      [20, 24],
+      [20, -14],
+      [29, 14],
+      [18, 26],
+      [25, 21],
+      [35, 13],
+      [41, 54],
+      [1, 20],
+      [58, 20]
+    ],
+    [
+      [79240, 9948],
+      [14, 43],
+      [33, 10],
+      [39, -23],
+      [9, -39],
+      [-9, -29],
+      [-23, -30],
+      [-79, -3],
+      [-11, 10],
+      [1, 28],
+      [26, 33]
+    ],
+    [
+      [80916, 10193],
+      [10, -10],
+      [-69, -39],
+      [6, 16],
+      [34, 37],
+      [19, -4]
+    ],
+    [
+      [81549, 10465],
+      [7, -29],
+      [-11, -12],
+      [-49, 7],
+      [-144, -121],
+      [-15, -7],
+      [-20, 26],
+      [-56, -30],
+      [-21, -28],
+      [-5, -30],
+      [-55, -10],
+      [-32, 50],
+      [33, 11],
+      [16, -2],
+      [60, 31],
+      [46, 48],
+      [37, -25],
+      [52, 27],
+      [14, 22],
+      [49, 29],
+      [94, 43]
+    ],
+    [
+      [80790, 10405],
+      [23, -2],
+      [27, -50],
+      [5, -40],
+      [-28, -17],
+      [-14, 33],
+      [-30, 3],
+      [-43, 46],
+      [-14, 26],
+      [27, -2],
+      [29, 15],
+      [18, -12]
+    ],
+    [
+      [81775, 10574],
+      [-14, -31],
+      [-49, 1],
+      [-45, -24],
+      [1, 11],
+      [29, 18],
+      [29, 34],
+      [41, 40],
+      [23, -8],
+      [-15, -41]
+    ],
+    [
+      [81885, 10677],
+      [17, -1],
+      [32, 41],
+      [23, 1],
+      [-40, -46],
+      [-92, -68],
+      [39, 53],
+      [21, 20]
+    ],
+    [
+      [79044, 15315],
+      [18, 8],
+      [7, -31],
+      [-7, -27],
+      [16, -54],
+      [36, -90],
+      [7, -59],
+      [34, -109],
+      [17, -81],
+      [18, -64],
+      [21, -32],
+      [31, -31],
+      [33, -1],
+      [22, -9],
+      [59, -46],
+      [21, 27],
+      [27, 11],
+      [45, -34],
+      [42, -5],
+      [3, -7],
+      [-91, -67],
+      [-22, -9],
+      [-43, 8],
+      [-53, 28],
+      [-41, 49],
+      [-45, 30],
+      [-15, 22],
+      [-11, 33],
+      [-28, 169],
+      [-7, 26],
+      [-31, 60],
+      [-31, 116],
+      [-18, 45],
+      [-36, 72],
+      [6, 40],
+      [16, 12]
+    ],
+    [
+      [74352, 22895],
+      [88, 79],
+      [24, 26],
+      [38, 52],
+      [3, -20],
+      [-35, -52],
+      [-95, -105],
+      [-64, -45],
+      [-101, -43],
+      [-58, -31],
+      [-136, -100],
+      [-146, -60],
+      [-27, -5],
+      [-35, 46],
+      [-48, 43],
+      [1, 14],
+      [53, -45],
+      [52, -26],
+      [28, -7],
+      [12, 19],
+      [54, 15],
+      [37, 17],
+      [66, 51],
+      [23, 28],
+      [45, 23],
+      [63, 38],
+      [91, 36],
+      [28, 31],
+      [39, 21]
+    ],
+    [
+      [73646, 22825],
+      [41, 17],
+      [38, 5],
+      [38, -9],
+      [31, -35],
+      [-27, -57],
+      [-10, -39],
+      [-52, -12],
+      [-33, 18],
+      [-37, 38],
+      [-41, 34],
+      [-37, 22],
+      [-8, 23],
+      [75, 2],
+      [22, -7]
+    ],
+    [
+      [77991, 18497],
+      [-15, 10],
+      [2, 130],
+      [11, 27],
+      [0, 36],
+      [-25, 71],
+      [6, 23],
+      [13, 4],
+      [24, -118],
+      [-4, -62],
+      [-11, -10],
+      [11, -88],
+      [-12, -23]
+    ],
+    [
+      [80555, 25424],
+      [31, -30],
+      [-7, -72],
+      [-22, -173],
+      [1, -115],
+      [15, -82],
+      [-24, -48],
+      [13, -15],
+      [26, -3],
+      [29, -37],
+      [7, -151],
+      [18, -54],
+      [2, -153],
+      [8, -92],
+      [12, -75],
+      [55, -281],
+      [87, -487],
+      [26, -103],
+      [11, -34],
+      [24, -37],
+      [11, -44],
+      [11, -63],
+      [2, -94],
+      [12, -91],
+      [30, -115],
+      [22, -62],
+      [33, -120],
+      [89, -282],
+      [74, -204],
+      [143, -420],
+      [150, -404],
+      [41, -93],
+      [69, -118],
+      [25, -71],
+      [29, -65],
+      [170, -341],
+      [143, -299],
+      [117, -199],
+      [56, -109],
+      [62, -93],
+      [16, -32],
+      [14, -57],
+      [12, -80],
+      [46, -132],
+      [21, -48],
+      [-3, -20],
+      [-67, -35],
+      [-21, -25],
+      [-26, -43],
+      [-15, -51],
+      [-14, -67],
+      [-6, -69],
+      [-2, -64],
+      [7, -135],
+      [26, -201],
+      [44, -208],
+      [35, -118],
+      [72, -198],
+      [115, -274],
+      [0, -5],
+      [118, -302],
+      [60, -246],
+      [2, -36],
+      [11, -31],
+      [25, -47],
+      [12, -71],
+      [24, -113],
+      [20, -61],
+      [15, 0],
+      [51, -201],
+      [22, -103],
+      [38, -97],
+      [12, -47],
+      [63, -185],
+      [59, -143],
+      [15, -59],
+      [-12, -15],
+      [18, -50],
+      [21, -81],
+      [41, -99],
+      [42, -136],
+      [89, -402],
+      [28, -158],
+      [-2, -63],
+      [-10, -13],
+      [9, -129],
+      [-5, -99],
+      [0, -161],
+      [-6, -108],
+      [-22, -151],
+      [-19, -164],
+      [-18, -273],
+      [-9, -45],
+      [-9, -137],
+      [-17, -82],
+      [-23, -212],
+      [-7, -130],
+      [-8, -23],
+      [-15, -254],
+      [0, -178],
+      [-6, -82],
+      [2, -107],
+      [-4, -58],
+      [-10, -67],
+      [-1, -48],
+      [-18, -56],
+      [-12, -24],
+      [-16, -95],
+      [-4, -95],
+      [-11, -1],
+      [-30, 51],
+      [12, 64],
+      [11, 28],
+      [-15, 41],
+      [-22, 19],
+      [-25, -3],
+      [-58, -30],
+      [-21, -21],
+      [-8, -18],
+      [-11, -73],
+      [-29, -75],
+      [-2, -16],
+      [-19, -38],
+      [-21, -16],
+      [-24, -43],
+      [-8, -51],
+      [0, -45],
+      [7, -20],
+      [-22, -71],
+      [-28, -17],
+      [-20, -84],
+      [0, -52],
+      [5, -33],
+      [16, -57],
+      [15, -15],
+      [-11, -36],
+      [1, -63],
+      [10, -16],
+      [25, -18],
+      [-6, -28],
+      [-47, -87],
+      [-49, -29],
+      [-23, -25],
+      [-17, -41],
+      [-5, -32],
+      [-62, -63],
+      [-52, -39],
+      [-38, -39],
+      [-29, -41],
+      [-23, -43],
+      [-23, 19],
+      [-9, 25],
+      [-14, 10],
+      [-19, -11],
+      [-20, 5],
+      [1, 29],
+      [-15, 17],
+      [-41, 7],
+      [-34, -39],
+      [8, -59],
+      [-46, -47],
+      [-18, -11],
+      [-39, -2],
+      [-17, -20],
+      [-65, -6],
+      [-20, -22],
+      [-16, -47],
+      [-34, 15],
+      [-39, -6],
+      [-7, 32],
+      [-21, 29],
+      [-72, 14],
+      [-56, -30],
+      [-7, 19],
+      [-30, 23],
+      [-54, -7],
+      [-46, -31],
+      [-1, -56],
+      [-28, 4],
+      [-51, -18],
+      [-53, -1],
+      [-51, -24],
+      [-45, 13],
+      [-51, -3],
+      [-54, -24],
+      [-28, 21],
+      [-48, 63],
+      [-24, 11],
+      [-14, 19],
+      [-3, 48],
+      [-24, 63],
+      [-31, 36],
+      [2, 59],
+      [5, 19],
+      [12, 92],
+      [18, 40],
+      [6, 32],
+      [-5, 17],
+      [21, 41],
+      [12, 5],
+      [23, -11],
+      [8, 41],
+      [-21, 64],
+      [-24, 2],
+      [-17, 15],
+      [0, 30],
+      [7, 22],
+      [-41, 142],
+      [-20, 29],
+      [-23, 23],
+      [-30, 51],
+      [-4, 30],
+      [13, 44],
+      [-11, 36],
+      [-31, 25],
+      [-13, 38],
+      [0, 33],
+      [-14, 32],
+      [-1, 36],
+      [-24, 62],
+      [-44, 68],
+      [-24, 57],
+      [-72, 75],
+      [-11, -4],
+      [-21, 15],
+      [4, 66],
+      [-21, 32],
+      [-12, 31],
+      [40, 35],
+      [-17, 76],
+      [-68, 58],
+      [-16, 30],
+      [-55, 41],
+      [-32, -10],
+      [-32, 13],
+      [-24, 32],
+      [-5, 17],
+      [-25, 0],
+      [-25, -11],
+      [-22, 6],
+      [2, 26],
+      [-30, 12],
+      [-25, -3],
+      [-67, -28],
+      [-14, -1],
+      [-56, 13],
+      [-16, 8],
+      [-39, 2],
+      [-36, -31],
+      [-17, -73],
+      [-10, -29],
+      [-21, 19],
+      [-44, 113],
+      [-26, 24],
+      [-9, 62],
+      [-25, 45],
+      [-8, 28],
+      [4, 85],
+      [-28, 30],
+      [-73, 207],
+      [-13, 161],
+      [-11, 53],
+      [-4, 86],
+      [-7, 75],
+      [-23, 145],
+      [-21, 84],
+      [-46, 129],
+      [-61, 81],
+      [-18, 41],
+      [-50, 45],
+      [-34, 19],
+      [-14, 14],
+      [-10, 47],
+      [-51, 21],
+      [-22, -2],
+      [-9, 17],
+      [8, 36],
+      [-64, 36],
+      [-44, -16],
+      [-8, -52],
+      [-43, -22],
+      [-20, 0],
+      [-12, 144],
+      [-13, 51],
+      [-6, 46],
+      [-29, 147],
+      [-23, 42],
+      [-59, 69],
+      [4, 38],
+      [11, 13],
+      [41, 6],
+      [48, -12],
+      [13, -21],
+      [24, -60],
+      [24, -4],
+      [12, 49],
+      [3, 44],
+      [10, 36],
+      [24, 65],
+      [10, 80],
+      [0, 38],
+      [12, 33],
+      [-7, 91],
+      [4, 51],
+      [-5, 45],
+      [-14, 15],
+      [-45, 16],
+      [-4, 45],
+      [6, 42],
+      [12, 11],
+      [29, 0],
+      [11, 9],
+      [-2, 48],
+      [-25, 20],
+      [-59, -1],
+      [-17, -9],
+      [-37, -71],
+      [-46, -2],
+      [-25, -21],
+      [4, -50],
+      [31, -114],
+      [18, -157],
+      [-8, -16],
+      [-41, -11],
+      [-10, -16],
+      [-80, -2],
+      [-22, 31],
+      [-16, -25],
+      [-17, -46],
+      [-16, -98],
+      [-8, 21],
+      [-1, 79],
+      [-9, 70],
+      [-37, 109],
+      [-23, 35],
+      [-93, 168],
+      [-91, 193],
+      [-35, 91],
+      [-49, 100],
+      [-27, 100],
+      [-16, 34],
+      [-15, 70],
+      [-66, 167],
+      [-51, 118],
+      [-10, 17],
+      [-26, 20],
+      [-20, 27],
+      [1, 48],
+      [-13, 27],
+      [-40, 67],
+      [-49, 66],
+      [-35, 70],
+      [-60, 87],
+      [-31, 33],
+      [1, 18],
+      [-31, 109],
+      [-31, 65],
+      [-34, 45],
+      [1, 20],
+      [64, -40],
+      [-5, -55],
+      [7, -8],
+      [38, -3],
+      [-1, 27],
+      [23, 30],
+      [44, 8],
+      [9, 27],
+      [26, 46],
+      [37, 49],
+      [1, 35],
+      [28, 22],
+      [22, 5],
+      [36, 50],
+      [13, 58],
+      [40, 86],
+      [42, 83],
+      [36, 34],
+      [32, 10],
+      [-1, 58],
+      [39, 16],
+      [42, 30],
+      [2, 25],
+      [27, 49],
+      [2, 24],
+      [14, 19],
+      [15, 5],
+      [17, 63],
+      [-7, 35],
+      [-10, 78],
+      [-21, 48],
+      [-34, 0],
+      [-52, 26],
+      [-4, 21],
+      [-29, 19],
+      [-22, -20],
+      [4, -62],
+      [-1, -80],
+      [36, -51],
+      [-7, -52],
+      [-32, 0],
+      [-40, 14],
+      [-80, 51],
+      [2, 36],
+      [27, 6],
+      [16, 32],
+      [-24, 33],
+      [22, 33],
+      [-5, 74],
+      [-14, 40],
+      [-24, 45],
+      [-66, 10],
+      [-56, -3],
+      [-180, -28],
+      [-14, -26],
+      [7, -30],
+      [19, -20],
+      [34, -9],
+      [12, -22],
+      [26, -8],
+      [81, -6],
+      [-12, -17],
+      [4, -32],
+      [41, -45],
+      [78, 26],
+      [2, -65],
+      [-58, -1],
+      [6, -35],
+      [11, -20],
+      [5, -48],
+      [-39, -45],
+      [-29, -48],
+      [-14, -65],
+      [10, -54],
+      [-16, -56],
+      [-11, -16],
+      [-24, -10],
+      [-46, 15],
+      [-4, -29],
+      [-27, 14],
+      [-37, -4],
+      [-9, -16],
+      [-8, -53],
+      [12, -50],
+      [34, -32],
+      [-13, -34],
+      [-52, -31],
+      [-6, 11],
+      [-5, 50],
+      [2, 176],
+      [-15, 62],
+      [-28, 35],
+      [-17, 57],
+      [-37, 60],
+      [-56, 56],
+      [-16, 21],
+      [-33, 81],
+      [-9, 81],
+      [7, 60],
+      [12, 68],
+      [18, 63],
+      [18, -13],
+      [-31, -121],
+      [12, 1],
+      [21, 45],
+      [28, 83],
+      [24, 129],
+      [0, 53],
+      [19, 60],
+      [-2, 127],
+      [4, 54],
+      [-17, 62],
+      [-33, 6],
+      [6, 44],
+      [14, 39],
+      [65, 79],
+      [-3, 64],
+      [10, 25],
+      [24, 18],
+      [25, 77],
+      [-5, 22],
+      [7, 62],
+      [29, 51],
+      [18, 57],
+      [0, 84],
+      [16, 48],
+      [25, 20],
+      [18, 35],
+      [-11, 38],
+      [15, 19],
+      [14, 50],
+      [-10, 41],
+      [4, 69],
+      [8, 5],
+      [13, 37],
+      [-9, 13],
+      [9, 46],
+      [5, 57],
+      [-18, 40],
+      [13, 43],
+      [-3, 33],
+      [8, 80],
+      [16, 74],
+      [-20, 37],
+      [6, 17],
+      [-17, 46],
+      [21, 25],
+      [10, 50],
+      [5, 58],
+      [-11, 16],
+      [-8, 87],
+      [27, 32],
+      [-8, 42],
+      [5, 41],
+      [-9, 32],
+      [-21, 25],
+      [-32, 4],
+      [-29, 13],
+      [-25, 69],
+      [-12, 7],
+      [-28, 45],
+      [-22, 50],
+      [-4, 56],
+      [-42, -7],
+      [-7, 17],
+      [9, 18],
+      [11, 50],
+      [-11, 70],
+      [-44, 26],
+      [5, 22],
+      [-68, 7],
+      [-12, 57],
+      [41, 16],
+      [5, 24],
+      [-13, 38],
+      [2, 43],
+      [-42, 30],
+      [-58, 9],
+      [-54, -1],
+      [-66, 20],
+      [-42, -5],
+      [-64, 10],
+      [-14, 21],
+      [-16, -5],
+      [-42, -67],
+      [-1, -26],
+      [-21, -18],
+      [-43, -8],
+      [-6, 39],
+      [-22, 17],
+      [14, 45],
+      [-8, 34],
+      [-26, 32],
+      [-16, 49],
+      [24, 80],
+      [-4, 18],
+      [-22, 28],
+      [-35, 6],
+      [-38, 35],
+      [-40, 18],
+      [-21, -8],
+      [-16, 9],
+      [-14, 61],
+      [-2, 34],
+      [5, 43],
+      [-26, 47],
+      [-21, 26],
+      [-3, 52],
+      [-29, 66],
+      [-42, 32],
+      [-44, 6],
+      [-15, -9],
+      [-42, 15],
+      [-23, 55],
+      [-8, 40],
+      [-37, 0],
+      [-35, 35],
+      [-12, 26],
+      [-26, 0],
+      [-16, 9],
+      [-9, 24],
+      [-30, 11],
+      [0, 40],
+      [-10, 114],
+      [1, 44],
+      [10, 43],
+      [-9, 71],
+      [-16, 70],
+      [-43, 22],
+      [-36, -2],
+      [-52, 35],
+      [-1, 20],
+      [-18, 25],
+      [-36, 21],
+      [-46, 16],
+      [-32, 50],
+      [-21, 47],
+      [-24, 18],
+      [-13, 41],
+      [8, 18],
+      [-8, 50],
+      [-18, 41],
+      [-18, 21],
+      [-25, 15],
+      [-36, 111],
+      [-41, 33],
+      [-49, 62],
+      [-132, 86],
+      [-58, 48],
+      [-75, 16],
+      [-31, 37],
+      [-160, 104],
+      [-4, 18],
+      [-49, 47],
+      [-59, 48],
+      [-17, 31],
+      [-44, 18],
+      [-72, -5],
+      [-37, -23],
+      [-37, 3],
+      [-20, -20],
+      [-21, 13],
+      [-20, -20],
+      [-40, -26],
+      [-41, 2],
+      [-36, 37],
+      [-18, -8],
+      [-54, 2],
+      [-16, 19],
+      [-3, 20],
+      [-17, 7],
+      [-24, -16],
+      [-8, -36],
+      [6, -38],
+      [-12, -20],
+      [-39, -7],
+      [-32, 30],
+      [-50, -14],
+      [-31, -14],
+      [-13, -85],
+      [7, -93],
+      [26, -9],
+      [9, -23],
+      [7, -73],
+      [10, -56],
+      [-4, -28],
+      [-14, -33],
+      [-10, -7],
+      [-56, -10],
+      [-48, 21],
+      [-55, 13],
+      [-17, 18],
+      [-15, 39],
+      [-35, -11],
+      [-45, -27],
+      [-32, 7],
+      [-45, -17],
+      [-77, -56],
+      [-48, -30],
+      [-19, -20],
+      [-64, -53],
+      [-16, -32],
+      [-25, -14],
+      [-26, 6],
+      [-15, -5],
+      [-72, -56],
+      [-47, -47],
+      [-13, 1],
+      [-114, -77],
+      [-24, -6],
+      [-58, -34],
+      [-25, -21],
+      [-20, -29],
+      [-18, 33],
+      [22, 51],
+      [24, 43],
+      [-31, 31],
+      [-39, -5],
+      [-11, -26],
+      [-33, -57],
+      [-15, -13],
+      [-32, -7],
+      [-9, -39],
+      [-46, -30],
+      [-82, -10],
+      [-65, 20],
+      [-55, -1],
+      [-37, -7],
+      [-59, -19],
+      [-44, -20],
+      [-94, -17],
+      [-60, -31],
+      [-57, 7],
+      [-53, -7],
+      [-46, -24],
+      [-17, -30],
+      [-31, 53],
+      [-20, 44],
+      [-33, 106],
+      [-30, 150],
+      [-7, 73],
+      [8, 61],
+      [14, 32],
+      [14, -16],
+      [-12, -74],
+      [-2, -71],
+      [20, -100],
+      [32, -133],
+      [45, -62],
+      [17, 0],
+      [50, 16],
+      [12, 16],
+      [19, 251],
+      [-3, 28],
+      [-16, 16],
+      [-3, 45],
+      [-22, 32],
+      [-22, 11],
+      [-19, 57],
+      [-31, 68],
+      [-39, 56],
+      [-38, 44],
+      [-39, 29],
+      [-64, 24],
+      [-17, -5],
+      [-34, 9],
+      [-40, 26],
+      [-60, 61],
+      [-57, 78],
+      [-17, 28],
+      [-13, 45],
+      [-24, 2],
+      [-32, 23],
+      [-65, 31],
+      [-81, 48],
+      [-62, 54],
+      [-37, 47],
+      [-47, 49],
+      [-67, 56],
+      [-125, 94],
+      [-82, 57],
+      [-144, 82],
+      [-168, 83],
+      [-247, 101],
+      [-141, 49],
+      [-122, 29],
+      [-89, 15],
+      [-110, 9],
+      [-65, -4],
+      [-43, 11],
+      [-193, 24],
+      [-220, -11],
+      [-185, -28],
+      [-110, -21],
+      [-457, -113],
+      [-95, -17],
+      [-115, -14],
+      [-51, 20],
+      [-45, -14],
+      [-58, -12],
+      [-129, -40],
+      [-183, -42]
+    ],
+    [
+      [25467, 53915],
+      [-687, -2],
+      [-170, -3],
+      [-687, -3],
+      [-74, 0],
+      [-461, -4],
+      [-140, 11],
+      [-274, 0],
+      [-487, -2],
+      [-114, 0],
+      [-319, -4],
+      [-224, -1],
+      [-736, -10],
+      [-685, -13],
+      [-239, -3],
+      [-277, 14]
+    ],
+    [
+      [19893, 53895],
+      [-446, 2],
+      [-589, 0],
+      [-308, 14],
+      [-280, 0],
+      [-231, -10],
+      [-1765, 6],
+      [-97, -2],
+      [-233, 0],
+      [-557, -3],
+      [-304, 3],
+      [-729, 4],
+      [-15, 3]
+    ],
+    [
+      [14339, 53912],
+      [0, 2035],
+      [0, 551],
+      [0, 1393],
+      [0, 582],
+      [56, 143],
+      [26, 20],
+      [39, 115],
+      [49, 178],
+      [6, 287],
+      [67, 131],
+      [0, 42],
+      [-13, 21],
+      [-136, 160],
+      [-20, 7],
+      [-76, 8],
+      [-25, -13],
+      [-241, 39],
+      [-36, 38],
+      [-15, 55],
+      [15, 103],
+      [-47, 328],
+      [12, 48],
+      [97, 107],
+      [23, 44],
+      [53, 196],
+      [37, 105],
+      [62, 157],
+      [34, 45],
+      [52, 27],
+      [158, 92],
+      [147, 241],
+      [38, 114],
+      [-35, 64],
+      [-14, 50],
+      [24, 99],
+      [114, 156],
+      [101, 159],
+      [38, 154],
+      [25, 130],
+      [41, 169],
+      [224, 448],
+      [135, 205],
+      [32, 56],
+      [1, 33],
+      [-48, 89],
+      [-73, 77],
+      [-13, 26],
+      [-5, 58],
+      [4, 49],
+      [-23, 46],
+      [-86, 67],
+      [-72, 14],
+      [-290, 160],
+      [-127, 142],
+      [-17, 32],
+      [-16, 64],
+      [-76, 134]
+    ],
+    [
+      [14545, 63992],
+      [-52, 169],
+      [34, 244],
+      [-62, 210],
+      [-54, 141],
+      [-111, 113],
+      [-25, 63],
+      [26, 29],
+      [13, 116],
+      [0, 294],
+      [0, 716],
+      [0, 761],
+      [0, 333],
+      [0, 551],
+      [-2, 204],
+      [-1, 414],
+      [-2, 111],
+      [1, 532],
+      [1, 273],
+      [4, 249],
+      [8, 471],
+      [0, 149],
+      [1, 501],
+      [3, 550],
+      [1, 385]
+    ],
+    [
+      [14328, 71571],
+      [512, 2],
+      [1318, 3]
+    ],
+    [
+      [42206, 48872],
+      [274, 1],
+      [118, -1],
+      [398, -1],
+      [404, 0],
+      [160, 0],
+      [289, 0],
+      [430, -1],
+      [473, 0],
+      [71, -1],
+      [328, 0],
+      [542, 0],
+      [348, -1],
+      [330, 0],
+      [350, 1],
+      [413, 1],
+      [435, 0],
+      [437, 0],
+      [418, 0],
+      [37, 1],
+      [241, -1],
+      [534, 1],
+      [324, -1],
+      [313, 0],
+      [305, 0],
+      [470, -1],
+      [272, 1],
+      [230, -1],
+      [364, -1],
+      [454, 0],
+      [341, 0],
+      [592, -2],
+      [279, 0],
+      [365, 0],
+      [323, 0],
+      [762, -1],
+      [125, 0]
+    ],
+    [
+      [54755, 48865],
+      [1, -24],
+      [11, -18],
+      [224, -211],
+      [90, -60],
+      [89, -36],
+      [80, 8],
+      [26, 17],
+      [5, 45],
+      [17, 23],
+      [15, 5],
+      [101, 1],
+      [34, -17],
+      [15, -21],
+      [60, -310],
+      [-40, -88],
+      [-39, -7],
+      [-144, -129],
+      [-172, -254],
+      [-11, -50],
+      [20, -52],
+      [291, -337],
+      [68, -81],
+      [-1, -49],
+      [5, -69],
+      [13, -48],
+      [127, -188],
+      [149, -136],
+      [30, -11],
+      [41, 3],
+      [14, 9],
+      [196, -36],
+      [18, -11],
+      [3, -37],
+      [-32, -68],
+      [0, -121],
+      [-1, -312],
+      [0, -330],
+      [-7, -481],
+      [-3, -548],
+      [1, -223],
+      [0, -245],
+      [-2, -172],
+      [0, -284],
+      [-1, -234],
+      [-5, -315],
+      [-2, -346],
+      [3, -406],
+      [-2, -279],
+      [0, -220],
+      [-1, -341],
+      [1, -333],
+      [-1, -148]
+    ],
+    [
+      [90596, 44123],
+      [-24, 16],
+      [-45, -22],
+      [-19, 17],
+      [12, 40],
+      [-6, 26],
+      [7, 104],
+      [32, 28],
+      [42, 0],
+      [50, -65],
+      [-20, -22],
+      [1, -52],
+      [18, -38],
+      [19, -4],
+      [1, -24],
+      [-16, -13],
+      [-2, -23],
+      [25, -32],
+      [4, -46],
+      [-33, -16],
+      [-24, 14],
+      [-43, 49],
+      [17, 30],
+      [20, 11],
+      [-16, 22]
+    ],
+    [
+      [90599, 43701],
+      [-6, 76],
+      [2, 79],
+      [13, 43],
+      [39, 18],
+      [30, -6],
+      [24, -28],
+      [30, -12],
+      [10, -37],
+      [-26, -6],
+      [-19, -74],
+      [10, -36],
+      [-9, -17]
+    ],
+    [
+      [92456, 44957],
+      [-11, -92],
+      [-13, -64],
+      [-20, -86],
+      [-24, -78],
+      [-16, -3],
+      [-17, -30],
+      [-26, -94],
+      [-49, -135],
+      [-29, -92],
+      [-34, -137],
+      [-31, -85],
+      [-41, -87],
+      [-49, -87]
+    ],
+    [
+      [91300, 43694],
+      [13, 26],
+      [-16, 14],
+      [-27, 3],
+      [-50, 22],
+      [-47, -33],
+      [-39, 18],
+      [-46, 5],
+      [-86, -86],
+      [-4, -13],
+      [-53, -38],
+      [-45, -16],
+      [-25, 33],
+      [8, 15],
+      [6, 60],
+      [-15, 50],
+      [30, 72],
+      [14, 23],
+      [4, 56],
+      [29, 11],
+      [18, -11],
+      [34, 22],
+      [31, 40],
+      [-12, 20],
+      [-46, 14],
+      [-28, -13],
+      [0, -18],
+      [-28, 0],
+      [-12, 38],
+      [31, 65],
+      [49, 32],
+      [18, 50],
+      [-30, 28],
+      [-29, -10],
+      [-17, -16],
+      [-59, 17],
+      [-68, -42],
+      [1, -36],
+      [-24, 20],
+      [-19, 48],
+      [23, 85],
+      [-8, 19],
+      [17, 22],
+      [101, 43],
+      [19, -14],
+      [26, 6],
+      [33, 24],
+      [-10, 41],
+      [-35, 43],
+      [-24, 2],
+      [-31, -31],
+      [-16, 37],
+      [-5, 28],
+      [-11, 13],
+      [-40, 23],
+      [-30, -21],
+      [0, -28],
+      [26, -15],
+      [-11, -20],
+      [-32, 6],
+      [1, 27],
+      [-39, 33],
+      [-3, 29],
+      [-40, 70],
+      [-2, 20],
+      [50, 8],
+      [32, 23],
+      [5, 43],
+      [-23, 61],
+      [-52, 22],
+      [-18, -35],
+      [3, -18],
+      [-12, -53],
+      [-54, -36],
+      [-9, -35],
+      [37, -41],
+      [6, -20],
+      [-31, -97],
+      [15, -28],
+      [7, -35],
+      [-48, 26],
+      [-22, 29],
+      [-10, 35],
+      [-46, 3],
+      [-14, 23],
+      [9, 37],
+      [-16, 24],
+      [-51, -14],
+      [-41, 25],
+      [-24, -15],
+      [-12, -21],
+      [8, -39],
+      [23, -32],
+      [32, 2],
+      [36, -17],
+      [-9, -25],
+      [-36, 3],
+      [-42, 33],
+      [-28, 51],
+      [-4, 25],
+      [-39, 64],
+      [-27, 19],
+      [-33, 0],
+      [-27, 21],
+      [-15, 53],
+      [52, 21],
+      [-21, 41],
+      [-43, 6],
+      [-18, 67],
+      [-1, 52],
+      [-34, 66],
+      [-36, 51],
+      [-20, 34],
+      [-9, 47],
+      [17, 20],
+      [17, -5],
+      [53, 15],
+      [48, -1],
+      [31, 51],
+      [5, 33],
+      [-17, 6],
+      [-38, -20],
+      [-13, 12],
+      [9, 32],
+      [-26, 51],
+      [-28, 16],
+      [59, 41],
+      [9, 16],
+      [-21, 29],
+      [29, 14],
+      [33, 29],
+      [18, 5],
+      [11, -36],
+      [34, -19],
+      [41, 36],
+      [29, 20],
+      [28, -9],
+      [24, 29],
+      [-16, 54],
+      [-36, 38],
+      [-47, -6],
+      [-23, 28],
+      [-48, 78],
+      [0, 57],
+      [-31, 3],
+      [-28, -31],
+      [-9, -29],
+      [-44, 13],
+      [-1, 24],
+      [-32, 5],
+      [-28, -41],
+      [-5, -26],
+      [23, -34],
+      [-1, -26],
+      [-34, -20],
+      [-14, 38],
+      [14, 111],
+      [-1, 55],
+      [12, 53],
+      [20, 16],
+      [26, 44],
+      [2, 42],
+      [15, 32],
+      [23, 3],
+      [19, 20],
+      [12, 42],
+      [11, -11],
+      [29, -56],
+      [58, -33],
+      [39, 5],
+      [13, 39],
+      [-12, 35],
+      [-9, 48],
+      [4, 51],
+      [-9, 25],
+      [3, 90],
+      [-19, 22],
+      [-34, 13],
+      [-34, -9],
+      [1, -45],
+      [-23, -2],
+      [-5, 26],
+      [-15, 29],
+      [-43, -33],
+      [-6, -26],
+      [11, -40],
+      [-28, -11],
+      [-18, 33],
+      [-34, -14],
+      [-4, -34],
+      [14, -71],
+      [-18, -21],
+      [-18, 4],
+      [-20, -14],
+      [-13, -40],
+      [-13, 8],
+      [-2, 28],
+      [21, 59],
+      [-2, 85],
+      [8, 80],
+      [14, 46],
+      [58, 107],
+      [5, 59],
+      [16, 30],
+      [16, -23],
+      [17, -56],
+      [30, -54],
+      [35, 3],
+      [55, -15],
+      [19, -18],
+      [31, 7],
+      [72, 66],
+      [0, 27],
+      [-27, 54],
+      [-11, 37],
+      [17, 32],
+      [30, 17],
+      [26, 69],
+      [-72, 9],
+      [-37, -27],
+      [-12, -54],
+      [-5, -59],
+      [8, -41],
+      [14, -26],
+      [-15, -11],
+      [-43, 21],
+      [-20, 27],
+      [3, 27],
+      [19, 53],
+      [-5, 77],
+      [-36, 107],
+      [-15, 24],
+      [-33, 6],
+      [8, 50],
+      [15, 38],
+      [20, 28],
+      [44, 105],
+      [24, 73],
+      [15, 19],
+      [15, 0],
+      [32, 40],
+      [17, 53],
+      [-17, 15],
+      [0, 17],
+      [29, 32],
+      [20, 10],
+      [26, -4],
+      [23, 16],
+      [-3, 26],
+      [34, 25],
+      [11, 29],
+      [113, -4],
+      [32, -8],
+      [18, -14],
+      [38, 14],
+      [0, 44],
+      [-61, 3],
+      [-10, 20],
+      [11, 20],
+      [52, 31],
+      [18, 40],
+      [27, 13],
+      [11, 31],
+      [-25, 28],
+      [-23, -21],
+      [-18, 7],
+      [29, 59],
+      [19, 85],
+      [19, 50],
+      [17, 22],
+      [-6, 48],
+      [-42, 13],
+      [-25, -32],
+      [-107, -9],
+      [-60, -25],
+      [-39, -103],
+      [6, -23],
+      [29, -27],
+      [28, 4],
+      [21, -7],
+      [20, -69],
+      [-37, -28],
+      [-39, -2],
+      [-28, -21],
+      [-9, -16],
+      [-46, -40],
+      [-23, 3],
+      [-23, -36],
+      [-16, -37],
+      [-88, -70],
+      [-24, 29],
+      [-19, 0],
+      [-30, -20],
+      [23, -42],
+      [-18, -6],
+      [-23, -29],
+      [-10, -52],
+      [-31, 1],
+      [13, 39],
+      [-14, 28],
+      [6, 53],
+      [-53, 18],
+      [-33, -8],
+      [14, -51],
+      [-10, -23],
+      [22, -27],
+      [-26, -28],
+      [-26, 23],
+      [-16, -1],
+      [-31, -32],
+      [-7, -58],
+      [-20, -17],
+      [-13, -28],
+      [29, -23],
+      [-5, -35],
+      [-52, -39],
+      [-15, -35],
+      [-32, -26],
+      [-39, 26],
+      [-47, -9],
+      [-59, 53],
+      [-25, -26],
+      [0, -57],
+      [15, -32],
+      [33, -21],
+      [14, -21],
+      [31, 8],
+      [58, -52],
+      [45, -30],
+      [-8, -47],
+      [21, -80],
+      [-3, -18],
+      [-29, -54],
+      [63, -50],
+      [20, -55],
+      [-52, -56],
+      [-50, -16],
+      [-10, -21],
+      [-37, -4],
+      [6, -41],
+      [39, -39],
+      [-22, -43],
+      [5, -43],
+      [-19, 1],
+      [-12, 18],
+      [-33, -12],
+      [6, -63],
+      [-54, -55],
+      [5, -30],
+      [14, -7],
+      [24, 12],
+      [12, -36],
+      [-17, -54],
+      [-20, -41],
+      [-28, -16],
+      [-20, -42],
+      [-45, -27],
+      [4, -58],
+      [25, -43],
+      [33, -8],
+      [-11, -62],
+      [0, -54],
+      [15, -82],
+      [16, -42],
+      [8, -34],
+      [-9, -64],
+      [2, -87],
+      [-4, -42],
+      [3, -26],
+      [18, -61],
+      [25, -55],
+      [69, -80],
+      [9, -22],
+      [27, -23],
+      [39, -47],
+      [23, -47],
+      [27, -21],
+      [3, -67],
+      [-34, -51],
+      [-8, -38],
+      [12, -37],
+      [40, -21],
+      [13, -17],
+      [-37, -46],
+      [-9, -47],
+      [26, -105],
+      [43, -65],
+      [16, -35],
+      [44, -58],
+      [18, -43],
+      [-34, -47],
+      [14, -51],
+      [3, -70],
+      [18, -71],
+      [-41, 26],
+      [-21, -1],
+      [-15, 16],
+      [-20, 50],
+      [-38, 59],
+      [-25, 10],
+      [-29, -2],
+      [-17, 34],
+      [1, 17],
+      [-19, 32],
+      [-37, 1],
+      [-18, -51],
+      [8, -34],
+      [-20, -2],
+      [-9, 28],
+      [-35, 53],
+      [-17, 9],
+      [-25, -3],
+      [-14, -13],
+      [-20, 47],
+      [-23, 87],
+      [-25, 28],
+      [-45, 40],
+      [-78, 29],
+      [-22, -2],
+      [-54, 24],
+      [-80, -3],
+      [-44, 5],
+      [-23, -33],
+      [-49, 16],
+      [-35, 21],
+      [-27, 33],
+      [12, 9],
+      [6, 69],
+      [-36, 48],
+      [-46, -5],
+      [21, -60],
+      [-5, -32],
+      [-18, -13],
+      [-32, 32],
+      [-41, 20],
+      [-41, 29],
+      [-23, 8],
+      [-2, 50],
+      [-14, 25],
+      [-23, 21],
+      [-22, 9],
+      [-41, 36],
+      [-15, 39],
+      [-8, 81],
+      [-20, 36],
+      [-5, 32],
+      [-28, 60],
+      [-45, -3],
+      [-65, -50],
+      [-29, -43],
+      [-28, -4],
+      [-32, 11],
+      [-25, -47],
+      [-93, -66],
+      [-38, -15],
+      [-17, 9],
+      [-63, 49],
+      [-26, 80],
+      [8, 54],
+      [-26, 116],
+      [19, 77],
+      [48, 100],
+      [31, 8],
+      [70, 115],
+      [26, 16],
+      [39, -4],
+      [37, 22],
+      [8, 14],
+      [-10, 39]
+    ],
+    [
+      [93114, 52290],
+      [442, -276],
+      [122, -82],
+      [293, -184],
+      [256, -149],
+      [362, -218],
+      [16, 0],
+      [-45, -201],
+      [-28, -90],
+      [-150, -316],
+      [-20, -119]
+    ],
+    [
+      [94362, 50655],
+      [-26, 3],
+      [-24, -38],
+      [-34, -28],
+      [-24, -27],
+      [-21, -61],
+      [-92, -20],
+      [-70, 12],
+      [-15, -7],
+      [-25, -32],
+      [-12, -138],
+      [-17, -48],
+      [-25, 5],
+      [-32, -25],
+      [-5, -18],
+      [9, -54],
+      [-41, -55],
+      [-8, -27],
+      [10, -42],
+      [10, -18],
+      [47, -17],
+      [50, -26],
+      [7, -17],
+      [23, 0],
+      [35, 37],
+      [32, -22],
+      [45, 20],
+      [31, -22],
+      [76, -31],
+      [32, -28],
+      [21, -9],
+      [77, -20],
+      [14, -1],
+      [13, 81],
+      [-27, 55],
+      [20, 10],
+      [32, -72],
+      [2, -80],
+      [11, -92],
+      [0, -60],
+      [-11, -123],
+      [-8, -50],
+      [-22, -106],
+      [-69, -289],
+      [-6, -59],
+      [-11, -46],
+      [-46, -258],
+      [-24, -172],
+      [-26, -280],
+      [-11, -93],
+      [-31, -57],
+      [-52, -129],
+      [-92, -162],
+      [-92, -177],
+      [-16, -18],
+      [-53, -85],
+      [-26, -16],
+      [-36, -3],
+      [-5, -32],
+      [21, -38],
+      [-4, -19],
+      [-56, -99],
+      [-60, -76],
+      [-74, -62],
+      [-11, -42],
+      [-88, -40],
+      [-115, -79],
+      [-55, -51],
+      [-18, -37],
+      [-38, -20],
+      [-62, -66],
+      [-41, -60],
+      [-19, -23],
+      [-9, -33],
+      [-37, -48],
+      [-80, -151],
+      [19, -30],
+      [-3, -13],
+      [-60, -71],
+      [-76, -130],
+      [-14, -58],
+      [-12, -21],
+      [-49, -31],
+      [-59, -63],
+      [-25, -36],
+      [-33, 4],
+      [-46, -25],
+      [-50, -9],
+      [-55, 7],
+      [-16, 23],
+      [31, 154],
+      [31, 85],
+      [65, 132],
+      [21, 65],
+      [12, 77],
+      [-2, 38],
+      [-34, 41],
+      [-106, 39],
+      [-26, 5],
+      [-41, -3],
+      [-52, 6],
+      [0, 41],
+      [-18, 14],
+      [-22, -9],
+      [-28, 4],
+      [-44, -13],
+      [-27, 9],
+      [-26, -11],
+      [-23, -45],
+      [-22, -24],
+      [-50, 55],
+      [2, 37],
+      [-10, 46],
+      [-14, 20],
+      [-52, 50],
+      [-13, 0],
+      [-54, 29],
+      [-19, 65],
+      [-37, 11],
+      [-20, -13],
+      [-12, -24],
+      [-49, 53],
+      [-21, 55],
+      [-2, 18],
+      [-27, 23],
+      [-25, -2],
+      [-18, -16],
+      [-46, 42],
+      [-17, 54],
+      [-61, 31],
+      [-20, 27],
+      [-42, 92],
+      [-21, -2],
+      [-54, 37],
+      [-5, 16],
+      [-53, 4],
+      [-12, 25],
+      [1, 65],
+      [29, 9],
+      [23, 158],
+      [4, 39],
+      [-25, 15],
+      [-56, 55]
+    ],
+    [
+      [91506, 47931],
+      [60, 65],
+      [32, 77]
+    ],
+    [
+      [91144, 36752],
+      [67, 25],
+      [43, 34],
+      [13, 21],
+      [43, -9],
+      [44, 16],
+      [48, 38],
+      [30, 18],
+      [4, 34],
+      [28, -14],
+      [39, 5],
+      [47, 17],
+      [12, 39],
+      [10, 76],
+      [10, 45],
+      [22, 129],
+      [22, 169],
+      [13, 78],
+      [-3, 59],
+      [3, 44],
+      [17, 68],
+      [0, 117],
+      [-5, 60],
+      [-12, 64],
+      [-37, 81],
+      [-15, 104],
+      [1, 22],
+      [-34, 109],
+      [21, 1],
+      [37, -79],
+      [12, -36],
+      [31, -126],
+      [38, -207],
+      [-7, -108],
+      [-16, -187],
+      [-29, -222],
+      [-29, -181],
+      [-44, -217],
+      [-14, -20],
+      [-50, 15],
+      [-93, -11],
+      [-47, -18],
+      [-174, -76],
+      [-76, -25],
+      [-131, -73],
+      [-194, -117],
+      [-71, -59],
+      [-35, -37],
+      [-22, 5],
+      [40, 59],
+      [5, 57],
+      [10, 13],
+      [32, -6],
+      [22, 5],
+      [113, 77],
+      [101, 55],
+      [71, 28],
+      [30, 28],
+      [59, 13]
+    ],
+    [
+      [91290, 38593],
+      [29, -24],
+      [-4, -33],
+      [31, -2],
+      [33, -57],
+      [20, -67],
+      [-6, -23],
+      [10, -80],
+      [-18, -16],
+      [-27, 23],
+      [-54, 13],
+      [-14, 17],
+      [28, 21],
+      [-1, 60],
+      [-22, 50],
+      [-16, 4],
+      [-31, 45],
+      [-8, 35],
+      [-40, 25],
+      [-6, 26],
+      [16, 10],
+      [51, -7],
+      [29, -20]
+    ],
+    [
+      [90933, 40162],
+      [19, -128],
+      [41, -196],
+      [30, -164],
+      [42, -169],
+      [44, -154],
+      [24, -62],
+      [40, -128],
+      [37, -102],
+      [40, -91],
+      [71, -144],
+      [165, -397],
+      [33, -104],
+      [36, -87],
+      [-19, -20],
+      [-20, 50],
+      [-23, 34],
+      [-13, 40],
+      [-29, 41],
+      [-23, 56],
+      [-33, 56],
+      [3, 42],
+      [-5, 49],
+      [-54, 102],
+      [-36, 31],
+      [-20, 40],
+      [-83, 23],
+      [-5, 45],
+      [8, 29],
+      [-9, 20],
+      [-19, 1],
+      [-8, 37],
+      [3, 50],
+      [-19, 116],
+      [-11, 82],
+      [-37, 119],
+      [-15, 38],
+      [-52, 71],
+      [7, 39],
+      [-12, 65],
+      [-16, 16],
+      [-28, 7],
+      [-13, 28],
+      [7, 58],
+      [18, 26],
+      [-8, 61],
+      [-21, 23],
+      [-10, 32],
+      [2, 78],
+      [-23, 37],
+      [-31, 14],
+      [-14, 14],
+      [-6, 48],
+      [-16, 54],
+      [-14, 10],
+      [-37, -8],
+      [-15, 20],
+      [-46, 11],
+      [-23, -1],
+      [-58, 29],
+      [-29, -7],
+      [-19, -23],
+      [-5, -30],
+      [22, -60],
+      [15, -28],
+      [16, -14],
+      [44, -16],
+      [33, -46],
+      [40, 4],
+      [15, 22],
+      [17, -5],
+      [13, -92],
+      [-13, -54],
+      [53, -122],
+      [13, -66],
+      [11, -22],
+      [40, -10],
+      [-2, -36],
+      [-10, -35],
+      [6, -43],
+      [10, -32],
+      [18, -16],
+      [20, -41],
+      [-6, -16],
+      [3, -42],
+      [29, -47],
+      [3, -32],
+      [17, -23],
+      [24, -61],
+      [17, -76],
+      [-16, -25],
+      [-67, 51],
+      [-22, 23],
+      [-37, 64],
+      [1, 60],
+      [-15, 16],
+      [-55, 17],
+      [-64, 4],
+      [-104, 31],
+      [-41, 21],
+      [-27, 7],
+      [-37, -19],
+      [-22, -20],
+      [-4, -21],
+      [11, -40],
+      [-23, -23],
+      [-38, -11],
+      [-161, -32],
+      [-25, -25],
+      [1, -16],
+      [-46, -29],
+      [-41, 8],
+      [-49, 16],
+      [-42, 0],
+      [-21, -10],
+      [-10, -21],
+      [-36, -20],
+      [-59, 4],
+      [-104, -21],
+      [-18, -44],
+      [-42, -45],
+      [-15, -9],
+      [-15, -38],
+      [-61, -16],
+      [-41, -31],
+      [-62, 11],
+      [-29, 0],
+      [-24, -9],
+      [-25, 23],
+      [-27, 44],
+      [-21, 12],
+      [-31, 2],
+      [-40, -8],
+      [-34, -43],
+      [-25, -21],
+      [10, -45],
+      [-29, -47],
+      [-9, -22],
+      [5, -32],
+      [10, -19],
+      [34, -24],
+      [122, 4],
+      [39, 13],
+      [109, 6],
+      [39, 14],
+      [20, 14],
+      [43, 14],
+      [25, 24],
+      [116, 35],
+      [30, -31],
+      [1, -23],
+      [34, -52],
+      [42, 3],
+      [43, 9],
+      [84, 65],
+      [109, 39],
+      [69, 13],
+      [154, -1],
+      [20, -8],
+      [39, 8],
+      [71, -55],
+      [18, -35],
+      [-10, -58],
+      [15, -51],
+      [13, -22],
+      [50, -20],
+      [28, 10],
+      [28, 48],
+      [38, 29],
+      [1, 22],
+      [-38, 49],
+      [17, 13],
+      [72, 31],
+      [37, 3],
+      [55, -6],
+      [76, -43],
+      [15, -37],
+      [35, -22],
+      [6, -44],
+      [19, -43],
+      [31, -58],
+      [-2, -18],
+      [9, -47],
+      [26, -34],
+      [13, -41],
+      [1, -29],
+      [-23, -102],
+      [7, -8],
+      [20, -63],
+      [21, -123],
+      [-52, -55],
+      [-1, -43],
+      [9, -42],
+      [14, -32],
+      [-33, -39],
+      [-29, -17],
+      [-28, -29],
+      [5, -32],
+      [-41, -13],
+      [-74, -9],
+      [-27, 20],
+      [-15, 20],
+      [-66, -34],
+      [-22, -35],
+      [-3, -33],
+      [-15, -20],
+      [-54, -10],
+      [-17, -20],
+      [-18, -38],
+      [3, -44],
+      [-45, -24],
+      [-16, -23],
+      [2, -30],
+      [-6, -25],
+      [-22, -28],
+      [-3, -49],
+      [-27, -37],
+      [-22, 15],
+      [-24, 4],
+      [-25, -27],
+      [8, -54],
+      [-18, -33],
+      [-44, -24],
+      [-74, -29],
+      [-19, -27],
+      [0, -26],
+      [-42, 0],
+      [-31, 20],
+      [-44, 0],
+      [-55, 34],
+      [-33, 0],
+      [-23, -17],
+      [-32, 6],
+      [-41, 25],
+      [-57, 0],
+      [-10, -23],
+      [-46, 6],
+      [-17, 17],
+      [-25, 3],
+      [-21, -20],
+      [-61, 34],
+      [-8, 40],
+      [-23, 14],
+      [-25, -8],
+      [-19, -23],
+      [-25, 0],
+      [-25, 25],
+      [-42, 26],
+      [-109, -11],
+      [-48, 0],
+      [-27, -23],
+      [-15, -26],
+      [17, -56],
+      [31, -23],
+      [27, -9],
+      [63, -2],
+      [11, -9],
+      [90, -17],
+      [33, -20],
+      [19, -48],
+      [8, -45],
+      [0, -40],
+      [-19, -45],
+      [-23, -26],
+      [-8, -51],
+      [-19, -14],
+      [-31, -37],
+      [-27, -45],
+      [-7, -20],
+      [7, -63],
+      [-19, -48],
+      [-21, -17],
+      [-21, -48],
+      [-33, -12],
+      [-13, -42],
+      [-13, -20],
+      [-25, -17],
+      [-16, 0],
+      [-32, -25],
+      [-12, -23],
+      [0, -43],
+      [8, -31],
+      [25, -45],
+      [75, -9],
+      [40, 17],
+      [50, 6],
+      [69, 17],
+      [21, 25],
+      [2, 43],
+      [19, 45],
+      [11, 46],
+      [20, 16],
+      [52, -47],
+      [6, -22],
+      [1, -46],
+      [12, -74],
+      [36, -36],
+      [20, -31],
+      [118, -11],
+      [10, 14],
+      [-5, 27],
+      [-39, 75],
+      [-20, 23],
+      [16, 18],
+      [63, -31],
+      [56, -38],
+      [0, -21],
+      [-14, -27],
+      [-1, -26],
+      [11, -18],
+      [28, -21],
+      [-4, -53],
+      [-12, -8],
+      [-51, -67],
+      [-41, -71],
+      [-26, -25],
+      [-39, 2],
+      [-21, -26],
+      [-38, -18],
+      [-21, -36],
+      [-8, -39],
+      [0, -31],
+      [24, -18],
+      [36, 4],
+      [79, 88],
+      [34, 47],
+      [91, 91],
+      [75, 72],
+      [72, 93],
+      [65, 72],
+      [90, 109],
+      [34, 36],
+      [44, 68],
+      [9, 3],
+      [40, -17],
+      [14, -28],
+      [-69, -72],
+      [-120, -108],
+      [-178, -208],
+      [-143, -134],
+      [-143, -171],
+      [-118, -177],
+      [-82, -132],
+      [-56, -118],
+      [-22, -67],
+      [-35, 69],
+      [8, 37],
+      [2, 38],
+      [-56, 36],
+      [-73, 32],
+      [-45, 12],
+      [-62, 40],
+      [-32, -2],
+      [-62, 11],
+      [-80, 0],
+      [-88, -8],
+      [-166, -27],
+      [-156, -34],
+      [-76, -21],
+      [-197, -71],
+      [-61, -28],
+      [-73, -43],
+      [-60, -44],
+      [-151, -131],
+      [-262, -162],
+      [-53, -39],
+      [-122, -98],
+      [-47, -42],
+      [-98, -103],
+      [-49, -45],
+      [-48, -54],
+      [-49, -64],
+      [-49, -57],
+      [-45, -68],
+      [-121, -209],
+      [-24, -55],
+      [-53, -155],
+      [-14, -29],
+      [-70, -243],
+      [-23, -66],
+      [-35, -84],
+      [-19, -87],
+      [-6, -61],
+      [-19, -23],
+      [-68, 36],
+      [-22, 75],
+      [-143, 45],
+      [-77, 15],
+      [-76, 5],
+      [-183, -4],
+      [-201, -27],
+      [-232, -92],
+      [-60, -36]
+    ],
+    [
+      [85957, 33350],
+      [-204, 234],
+      [-114, 133],
+      [-668, 764],
+      [-238, 271],
+      [-297, 350],
+      [-189, 211],
+      [-324, 358],
+      [-100, 86],
+      [-160, 2],
+      [-286, 2],
+      [-271, 8],
+      [-460, 10],
+      [-244, 7],
+      [-363, 5],
+      [-244, 3],
+      [-36, 14],
+      [28, 279],
+      [-46, 69],
+      [-186, 287],
+      [-53, 77],
+      [-42, -37],
+      [-156, -121],
+      [-30, 43],
+      [1, 61],
+      [9, 26],
+      [30, 17],
+      [7, 15],
+      [-21, 99],
+      [-87, 11],
+      [-277, 18],
+      [-475, 25],
+      [-509, 26],
+      [-198, 10],
+      [-546, 25],
+      [-167, 12],
+      [-57, 0],
+      [-178, 30],
+      [-172, -88],
+      [-76, -32],
+      [-36, -10],
+      [-85, -42],
+      [-194, -52],
+      [-1, -5],
+      [-144, -130],
+      [-33, -4],
+      [9, 26],
+      [-7, 19],
+      [-217, -72],
+      [-393, -139]
+    ],
+    [
+      [85957, 33350],
+      [-24, -8],
+      [-57, -9],
+      [-163, -68],
+      [-78, -44],
+      [-109, -79],
+      [-75, -64],
+      [-93, -95],
+      [-140, -166],
+      [-129, -185],
+      [-39, -84],
+      [-23, -24],
+      [-81, -101],
+      [-32, -57],
+      [-63, -144],
+      [-22, -65],
+      [-9, -69],
+      [-19, -60],
+      [-34, -184],
+      [0, -41],
+      [15, -79],
+      [-29, -83],
+      [-14, -20],
+      [-37, -26],
+      [-42, -47],
+      [-15, -30],
+      [-85, -39],
+      [-71, -49],
+      [-13, -45],
+      [3, -18],
+      [-7, -37],
+      [-39, -111],
+      [-81, -7],
+      [-24, 8],
+      [-13, 21],
+      [-70, -19],
+      [-42, -16],
+      [-9, 36],
+      [-34, 43],
+      [-29, 7],
+      [-66, -36],
+      [-43, -37],
+      [-11, -38],
+      [-26, -31],
+      [-31, -67],
+      [0, -20],
+      [21, -47],
+      [38, 1],
+      [24, 19],
+      [6, -18],
+      [-12, -52],
+      [-102, -45],
+      [-46, -40],
+      [-74, -56],
+      [-14, -37],
+      [-32, -25],
+      [6, -31],
+      [-18, -19],
+      [-157, -73],
+      [-14, -27],
+      [-56, -28],
+      [-34, 5],
+      [-13, -29],
+      [10, -28],
+      [-4, -17],
+      [-33, -83],
+      [6, -27],
+      [-57, -49],
+      [-98, -64],
+      [-13, 0],
+      [-22, -33],
+      [-9, -25],
+      [-34, -19],
+      [-50, 3],
+      [-74, -17],
+      [-83, -33],
+      [-50, -30],
+      [-35, -47],
+      [-9, -35],
+      [-30, 19],
+      [-32, 5],
+      [-76, -62],
+      [-59, -37],
+      [-102, -96],
+      [-11, 1],
+      [-10, 31],
+      [-37, 13],
+      [-31, -24],
+      [-22, -28],
+      [-39, -12],
+      [-9, 14],
+      [-1, 37],
+      [-9, 18],
+      [-30, 14],
+      [-23, -16],
+      [-37, -1],
+      [-16, -49],
+      [-8, -42],
+      [9, -35],
+      [23, -55],
+      [40, -4],
+      [24, -32],
+      [7, -53],
+      [-30, -100],
+      [-21, -34],
+      [3, -26],
+      [-21, -18],
+      [-96, -52],
+      [-51, -42],
+      [-48, -22],
+      [-47, 1],
+      [-40, -34],
+      [-39, -12],
+      [-37, -17],
+      [-19, -81],
+      [-37, -40],
+      [-60, -102],
+      [-52, -51],
+      [-76, -45],
+      [-42, -32],
+      [-29, 9],
+      [-30, -9],
+      [-27, -25],
+      [-87, -121],
+      [25, -20],
+      [12, -23]
+    ],
+    [
+      [4344, 68829],
+      [-41, -1],
+      [-21, 7],
+      [-27, 39],
+      [8, 55],
+      [-11, 28],
+      [-48, 64],
+      [-28, 6],
+      [-50, -25],
+      [-12, -20],
+      [-48, -15],
+      [-10, 17],
+      [17, 31],
+      [0, 26],
+      [-31, 25],
+      [-41, 10],
+      [-48, 52],
+      [20, 20],
+      [4, 44],
+      [-36, 42],
+      [29, 95],
+      [-7, 62],
+      [-14, 42],
+      [-14, 18],
+      [-30, 11],
+      [-42, -2],
+      [-44, -19],
+      [-13, 50],
+      [-46, 47],
+      [-44, 17],
+      [-18, 24],
+      [-34, 14],
+      [-13, 31],
+      [32, 82],
+      [38, 49],
+      [18, 63],
+      [29, 28],
+      [62, 99],
+      [16, 51],
+      [1, 67],
+      [37, 10],
+      [31, -21],
+      [34, 36],
+      [24, -15],
+      [3, -21],
+      [19, -5],
+      [-7, -81],
+      [7, -25],
+      [63, -28],
+      [66, -54],
+      [17, -27],
+      [1, -31],
+      [-46, -38],
+      [-51, -1],
+      [-31, 32],
+      [-46, 9],
+      [-35, -11],
+      [-10, -62],
+      [-54, -11],
+      [-1, -15],
+      [-30, -47],
+      [2, -42],
+      [69, -8],
+      [46, -31],
+      [39, -66],
+      [20, -67],
+      [13, -18],
+      [18, -73],
+      [-25, -44],
+      [32, -63],
+      [17, -62],
+      [12, -6],
+      [46, 22],
+      [6, 41],
+      [-27, 54],
+      [23, 2],
+      [41, -8],
+      [55, -65],
+      [24, -36],
+      [32, -23],
+      [57, -22],
+      [46, -5],
+      [5, -85],
+      [37, -49],
+      [6, -30],
+      [-1, -41],
+      [-15, -40],
+      [-34, -34],
+      [2, -34],
+      [-27, -12],
+      [-13, 17]
+    ],
+    [
+      [3875, 70535],
+      [13, 0],
+      [25, -41],
+      [34, -28],
+      [59, -33],
+      [11, -48],
+      [-50, 20],
+      [-37, -20],
+      [-38, -8],
+      [-17, 7],
+      [-9, 23],
+      [7, 41],
+      [-3, 74],
+      [5, 13]
+    ],
+    [
+      [3754, 70586],
+      [37, -31],
+      [5, -15],
+      [40, -55],
+      [-35, -63],
+      [-52, -10],
+      [-25, 65],
+      [-16, 21],
+      [-1, 25],
+      [28, 49],
+      [19, 14]
+    ],
+    [
+      [3782, 70617],
+      [47, 22],
+      [32, -50],
+      [-17, -5],
+      [-37, 13],
+      [-25, 20]
+    ],
+    [
+      [3595, 70568],
+      [-9, -14],
+      [7, -27],
+      [27, -22],
+      [29, -36],
+      [-3, -26],
+      [-19, -17],
+      [-11, -38],
+      [3, -18],
+      [18, -13],
+      [-3, -23],
+      [-40, -36],
+      [-29, -17],
+      [-7, -73],
+      [13, -15],
+      [19, -50],
+      [-18, -27],
+      [-25, 4],
+      [-90, -15],
+      [-36, 11],
+      [8, 34],
+      [-26, 3],
+      [-20, 15],
+      [-5, 26],
+      [-19, 19],
+      [-66, -25],
+      [-143, 23],
+      [-53, 49],
+      [-97, 33],
+      [-40, 32],
+      [-41, 61],
+      [3, 46],
+      [-27, 36],
+      [6, 43],
+      [-22, 20],
+      [-24, -2],
+      [-10, 25],
+      [14, 28],
+      [32, 38],
+      [50, 4],
+      [29, -9],
+      [53, 6],
+      [17, -25],
+      [-6, -38],
+      [50, -15],
+      [27, -24],
+      [22, -33],
+      [27, -14],
+      [35, -7],
+      [51, 3],
+      [3, 20],
+      [-17, 21],
+      [-40, 5],
+      [-33, 29],
+      [20, 20],
+      [-33, 31],
+      [-14, 23],
+      [47, 33],
+      [25, 53],
+      [39, 31],
+      [8, 13],
+      [66, 53],
+      [13, 33],
+      [45, 17],
+      [44, 4],
+      [35, -7],
+      [79, -35],
+      [61, -47],
+      [107, -45],
+      [-22, -31],
+      [-54, -36],
+      [-15, -5],
+      [-33, -36],
+      [18, -44]
+    ],
+    [
+      [2854, 70778],
+      [23, 0],
+      [70, -42],
+      [32, -29],
+      [46, -59],
+      [-25, -1],
+      [-28, 11],
+      [-151, 81],
+      [-40, 36],
+      [2, 13],
+      [44, 2],
+      [27, -12]
+    ],
+    [
+      [3175, 70862],
+      [34, 2],
+      [4, -62],
+      [-30, -33],
+      [-39, -14],
+      [11, 36],
+      [-20, 15],
+      [-43, 10],
+      [56, 44],
+      [27, 2]
+    ],
+    [
+      [3157, 71579],
+      [26, -63],
+      [-73, -5],
+      [-43, 2],
+      [-13, 65],
+      [103, 1]
+    ],
+    [
+      [3789, 70910],
+      [50, -77],
+      [10, -24],
+      [35, -14],
+      [49, -53],
+      [16, -64],
+      [-48, 17],
+      [-71, 73],
+      [-34, 77],
+      [-19, 14],
+      [-31, 0],
+      [-6, 37],
+      [12, 43],
+      [37, -29]
+    ],
+    [
+      [14545, 63992],
+      [-560, 8],
+      [-490, -2],
+      [-229, 3],
+      [-733, 5],
+      [-240, -2],
+      [-352, 1],
+      [-339, 0],
+      [-336, 1],
+      [-576, -3],
+      [-39, -52],
+      [-35, -25],
+      [-123, -67],
+      [-61, -25],
+      [-81, -13],
+      [-48, 1],
+      [-57, 12],
+      [-58, 18],
+      [-122, -17],
+      [-100, -31],
+      [-207, -37],
+      [-69, 6],
+      [-87, 43],
+      [-54, -15],
+      [-43, -35],
+      [-86, -123],
+      [-192, -29],
+      [-55, 5],
+      [-370, -90],
+      [-261, -98],
+      [-54, -28],
+      [-75, -91],
+      [-359, -67],
+      [-146, -12],
+      [-44, 14],
+      [-30, 25],
+      [-70, 72],
+      [-59, 20],
+      [-81, -2],
+      [-63, -39],
+      [-38, -36],
+      [-185, -75],
+      [-125, -37],
+      [-27, -26],
+      [-85, -50],
+      [-52, 38],
+      [-224, -10],
+      [-42, -15],
+      [-202, -43],
+      [-9, 51],
+      [-29, 54],
+      [-179, 73],
+      [-48, 12],
+      [-65, -4],
+      [-54, -26],
+      [-41, 3],
+      [-73, 18],
+      [-111, 59],
+      [-19, 5],
+      [-174, -52],
+      [-151, -28],
+      [-51, -2],
+      [-142, 32],
+      [-104, -34],
+      [-65, -57],
+      [2, -22],
+      [-14, -19],
+      [-139, -80],
+      [-221, -99],
+      [-19, -5],
+      [-53, 7],
+      [-80, -17],
+      [-34, -34],
+      [-88, -41],
+      [-33, -10],
+      [-52, -1],
+      [-68, 12],
+      [-40, 53],
+      [-51, 17],
+      [-208, 18],
+      [-283, 67],
+      [-57, 21],
+      [-118, 66],
+      [-48, 33],
+      [-20, 58],
+      [4, 49],
+      [23, 88],
+      [-2, 62],
+      [-15, 54],
+      [-49, 74],
+      [-1, 38],
+      [20, 65],
+      [1, 43],
+      [-54, 235],
+      [-131, 251],
+      [-37, 59],
+      [-394, 256],
+      [-94, 10],
+      [-87, -42],
+      [-125, -70],
+      [-169, 4],
+      [-111, 89],
+      [6, 120],
+      [-37, 52],
+      [-51, 45],
+      [-17, 5],
+      [-118, -27]
+    ],
+    [
+      [2204, 64657],
+      [0, 17],
+      [-64, -13],
+      [-59, -1],
+      [-104, 17],
+      [-18, 14],
+      [-3, 60],
+      [-37, 23],
+      [-44, -10],
+      [-8, -32],
+      [-24, 4],
+      [-34, -38],
+      [-29, -1],
+      [-38, 25],
+      [-19, -3],
+      [-129, -110],
+      [-63, 14],
+      [-19, 15],
+      [-65, 65],
+      [-28, 36],
+      [-2, 20],
+      [-28, 24],
+      [-65, 17],
+      [-18, -18],
+      [-16, -63],
+      [-10, -19],
+      [-32, 7],
+      [-36, -29],
+      [-2, 19],
+      [10, 55],
+      [22, 77],
+      [11, 150],
+      [2, 57],
+      [1, 212],
+      [-9, 159],
+      [-12, 114],
+      [-3, 74],
+      [13, 30],
+      [27, 8],
+      [23, -38],
+      [-31, -20],
+      [3, -13],
+      [51, -88],
+      [1, -47],
+      [-6, -82],
+      [-10, -89],
+      [10, -84],
+      [47, -8],
+      [13, 23],
+      [2, 50],
+      [26, 3],
+      [20, -42],
+      [46, 10],
+      [42, 77],
+      [45, 37],
+      [5, 37],
+      [-17, 37],
+      [-25, 27],
+      [-23, 67],
+      [-49, 37],
+      [-7, 25],
+      [-3, 57],
+      [37, 12],
+      [35, 23],
+      [-2, 57],
+      [14, 15],
+      [37, 13],
+      [57, 38],
+      [25, 9],
+      [10, 36],
+      [-30, 28],
+      [-27, 7],
+      [-30, 50],
+      [-33, -9],
+      [-11, -14],
+      [0, -37],
+      [-60, -3],
+      [-37, 27],
+      [-20, -29],
+      [11, -54],
+      [-38, 12],
+      [-18, -14],
+      [-35, 17],
+      [-37, 27],
+      [-7, 15],
+      [-32, 20],
+      [-33, 3],
+      [-29, 28],
+      [3, 27],
+      [-3, 70],
+      [-9, 66],
+      [-12, 65],
+      [-28, 110],
+      [-28, 65],
+      [51, 17],
+      [32, -29],
+      [6, -14],
+      [2, -70],
+      [30, -16],
+      [33, 23],
+      [11, 52],
+      [24, 19],
+      [42, 13],
+      [8, 17],
+      [46, 29],
+      [51, -2],
+      [79, 30],
+      [60, 17],
+      [42, 22],
+      [-30, 32],
+      [-41, 27],
+      [-76, -5],
+      [-16, 5],
+      [-21, 25],
+      [-61, -4],
+      [-38, 12],
+      [-14, 16],
+      [27, 32],
+      [-22, 19],
+      [-17, 47],
+      [-74, 28],
+      [-75, 3],
+      [-29, -2],
+      [-36, -16],
+      [-19, -36],
+      [22, -82],
+      [3, -44],
+      [25, -69],
+      [-31, -9],
+      [-32, -27],
+      [-40, -8],
+      [16, 81],
+      [4, 91],
+      [-8, 181],
+      [-6, 68],
+      [-13, 80],
+      [2, 23],
+      [-13, 32],
+      [-12, 69],
+      [-24, 111],
+      [-51, 175],
+      [-11, 19],
+      [-28, 23],
+      [-26, 2],
+      [-28, 51],
+      [-25, 59],
+      [-36, 18],
+      [-9, 30],
+      [-5, 54],
+      [-19, 68],
+      [-15, 185],
+      [-21, 143],
+      [-5, 5],
+      [-14, 87],
+      [-16, 55],
+      [-13, 71],
+      [-26, 84],
+      [-30, 65],
+      [-15, 86],
+      [-19, 53],
+      [-44, 48],
+      [-42, 11],
+      [-10, 70],
+      [-14, 49],
+      [-16, 14],
+      [-27, 0],
+      [-51, 37],
+      [-34, 48],
+      [-8, 25],
+      [-48, 30],
+      [-39, 5],
+      [-30, 20],
+      [-37, 120],
+      [-50, 73],
+      [3, 46],
+      [-16, 84],
+      [-12, 84],
+      [-15, 24],
+      [-5, 27],
+      [2, 45],
+      [15, 29],
+      [-15, 41],
+      [-49, 97],
+      [-19, 18],
+      [0, 24],
+      [52, 36],
+      [14, 36],
+      [11, 53],
+      [-29, 51],
+      [40, 39],
+      [7, 26],
+      [8, 75],
+      [20, 10],
+      [13, 80],
+      [-21, 26],
+      [-50, 22],
+      [-31, 41],
+      [-25, 12],
+      [-9, 26],
+      [28, 22],
+      [41, -2],
+      [77, 4],
+      [26, -13],
+      [15, -23],
+      [63, 14],
+      [13, -21],
+      [33, -19],
+      [15, 4],
+      [48, -45],
+      [25, -2],
+      [28, -15],
+      [179, -107],
+      [35, -30],
+      [27, -11],
+      [36, 8],
+      [36, -25],
+      [80, -24],
+      [7, -23],
+      [44, -12],
+      [62, 20],
+      [38, -23],
+      [47, -17],
+      [96, -48],
+      [73, -27],
+      [-10, -42],
+      [66, -26],
+      [39, -30],
+      [130, -33],
+      [48, 2],
+      [38, -12],
+      [36, -4],
+      [66, 3],
+      [40, -16],
+      [50, 10],
+      [100, -7],
+      [40, 14],
+      [52, 5],
+      [19, -11],
+      [29, 21],
+      [56, -10],
+      [66, -32],
+      [16, -28],
+      [70, -10],
+      [31, 14],
+      [26, 25],
+      [17, 2],
+      [30, -14],
+      [24, -26],
+      [28, -9],
+      [63, 5],
+      [33, 15],
+      [31, 3],
+      [-6, -42],
+      [33, -16],
+      [55, -10],
+      [63, 4],
+      [53, -7],
+      [33, 2],
+      [49, 18],
+      [15, -9],
+      [59, -4],
+      [59, 29],
+      [47, 42],
+      [51, 56],
+      [36, 25],
+      [23, -3],
+      [-20, -46],
+      [50, -16],
+      [58, -58],
+      [36, -17],
+      [29, -45],
+      [22, -54],
+      [41, 10],
+      [23, 13],
+      [46, 14],
+      [62, 7],
+      [52, -18],
+      [-18, -63],
+      [17, -21],
+      [76, -28],
+      [53, 17],
+      [-15, 30],
+      [-39, 26],
+      [-7, 62],
+      [11, 26],
+      [80, 59],
+      [92, 22],
+      [44, 0],
+      [21, -66],
+      [-82, -50],
+      [-16, -24],
+      [58, -86],
+      [7, -23],
+      [45, 12],
+      [6, 51],
+      [-17, 7],
+      [28, 48],
+      [65, 30],
+      [13, -16],
+      [-1, -24],
+      [18, -112],
+      [25, -27],
+      [-2, -38],
+      [-32, -22],
+      [-27, 20],
+      [-40, -21],
+      [9, -51],
+      [32, -37],
+      [33, -2],
+      [13, -34],
+      [-15, -37],
+      [5, -19],
+      [45, -14],
+      [12, -25],
+      [-7, -41],
+      [33, -38],
+      [50, -6],
+      [-40, -32],
+      [-9, -22],
+      [-25, -5],
+      [-30, 9],
+      [-51, 1],
+      [22, -44],
+      [-13, -48],
+      [-57, -47],
+      [-23, -8],
+      [-30, -23],
+      [-5, -67],
+      [-14, -41],
+      [-1, -30],
+      [34, -25],
+      [14, 4],
+      [19, 28],
+      [15, 49],
+      [45, 26],
+      [16, 57],
+      [63, 61],
+      [46, 28],
+      [28, 52],
+      [64, 2],
+      [1, 41],
+      [-24, 71],
+      [-4, 27],
+      [-15, 19],
+      [-38, 12],
+      [-1, 35],
+      [25, 4],
+      [4, -22],
+      [18, -23],
+      [19, -6],
+      [61, -3],
+      [40, -33],
+      [25, -64],
+      [2, -42],
+      [13, -82],
+      [7, -13],
+      [37, -27],
+      [-5, -29],
+      [-19, -18],
+      [0, -26],
+      [44, -52],
+      [0, -41],
+      [-31, -16],
+      [-36, -1],
+      [-22, 8],
+      [-65, -2],
+      [21, -87],
+      [23, -16],
+      [36, 10],
+      [13, -24],
+      [0, -34],
+      [-8, -37],
+      [-18, -50],
+      [47, -41],
+      [-13, -43],
+      [4, -50],
+      [8, -23],
+      [27, -13],
+      [-46, -22],
+      [-27, -3],
+      [-30, -20],
+      [-16, -24],
+      [1, -47],
+      [-7, -36],
+      [43, 1],
+      [42, -22],
+      [61, -13],
+      [29, -17],
+      [-15, -22],
+      [1, -20],
+      [49, -51],
+      [-12, -21],
+      [0, -102],
+      [4, -26],
+      [19, -13],
+      [61, -8],
+      [39, -26],
+      [-52, -19],
+      [-67, -40],
+      [-20, -26],
+      [-10, -30],
+      [-29, 3],
+      [-40, -23],
+      [-4, -13],
+      [-48, 8],
+      [-17, 31],
+      [4, 33],
+      [-48, 2],
+      [-8, -30],
+      [-29, -52],
+      [1, -29],
+      [70, 3],
+      [115, -99],
+      [51, -27],
+      [27, 7],
+      [38, 48],
+      [-28, 23],
+      [-38, 7],
+      [3, 15],
+      [37, 32],
+      [110, 43],
+      [51, 13],
+      [22, 18],
+      [-1, 109],
+      [-18, 42],
+      [-24, 19],
+      [-13, 66],
+      [-52, 22],
+      [28, 22],
+      [12, 56],
+      [-7, 17],
+      [-40, 35],
+      [-18, 33],
+      [5, 24],
+      [-9, 64],
+      [-21, 47],
+      [-21, 18],
+      [36, 20],
+      [27, 30],
+      [32, -32],
+      [51, 21],
+      [6, 20],
+      [-10, 25],
+      [-43, 38],
+      [-34, 19],
+      [-34, 5],
+      [-19, 15],
+      [-28, 48],
+      [41, 54],
+      [27, 54],
+      [24, 19],
+      [13, 51],
+      [-17, 50],
+      [4, 24],
+      [-26, 34],
+      [-5, 19],
+      [4, 60],
+      [5, 11],
+      [72, 83],
+      [25, 15],
+      [19, 58],
+      [-7, 27],
+      [22, 80],
+      [20, 33],
+      [7, 61],
+      [54, 18],
+      [54, 8],
+      [36, 29],
+      [6, 14],
+      [-11, 28],
+      [4, 49],
+      [10, 24],
+      [-13, 33],
+      [-91, 51],
+      [-46, 59],
+      [-30, 31],
+      [-8, 18],
+      [-32, 12],
+      [-41, 72],
+      [1, 64],
+      [-10, 34],
+      [12, 24],
+      [3, 33],
+      [-19, 14],
+      [-25, 63],
+      [-19, 28],
+      [-55, 10],
+      [-16, 9],
+      [-37, -20],
+      [8, -35],
+      [14, -14],
+      [-24, -32],
+      [-28, -6],
+      [-16, -15],
+      [5, -54],
+      [62, -91],
+      [58, -44],
+      [60, -65],
+      [35, -66],
+      [-5, -17],
+      [-26, 7],
+      [-20, 20],
+      [-10, 33],
+      [-57, 62],
+      [-48, 28],
+      [-33, 41],
+      [-20, -3],
+      [-22, -22],
+      [-41, 34],
+      [-20, 70],
+      [-27, 56],
+      [-3, 65],
+      [8, 34],
+      [-1, 43],
+      [8, 24],
+      [50, 19],
+      [19, -13],
+      [36, 8],
+      [19, 39],
+      [107, -48],
+      [21, 14],
+      [6, 31],
+      [38, 46],
+      [-23, 41],
+      [-46, 57],
+      [-29, 20],
+      [-34, 9],
+      [-61, 55],
+      [-60, 12],
+      [-48, 47],
+      [-11, 35],
+      [-28, 23],
+      [-7, 52],
+      [13, 32],
+      [-11, 12],
+      [-34, -2],
+      [-12, -36],
+      [-61, -36],
+      [-66, -16],
+      [-45, 41],
+      [-9, 37],
+      [22, 8],
+      [23, 29],
+      [-5, 47],
+      [-13, 13],
+      [-46, -3],
+      [-21, -48],
+      [-22, 16],
+      [-1, 37],
+      [21, 48],
+      [32, 29],
+      [24, -13],
+      [105, 44],
+      [28, -2],
+      [3, -22],
+      [57, -10],
+      [20, -23],
+      [37, -81],
+      [19, 3],
+      [49, -18],
+      [54, 25],
+      [-22, 55],
+      [-3, 90],
+      [-36, 92],
+      [-51, 10],
+      [-5, 18],
+      [41, 6],
+      [31, -6],
+      [14, -28],
+      [18, -14],
+      [63, 28],
+      [22, 29],
+      [14, 45],
+      [-43, 58],
+      [-29, 8],
+      [-42, 44],
+      [-25, 33],
+      [-12, 34],
+      [-23, 109],
+      [44, 61],
+      [9, 35],
+      [-38, 17],
+      [-46, 46],
+      [-59, 8],
+      [-55, -19],
+      [-18, -32],
+      [-40, -36],
+      [-19, -31],
+      [22, -29],
+      [26, -15],
+      [12, -35],
+      [-17, -18],
+      [-28, 7],
+      [-30, 28],
+      [-51, 64],
+      [13, 38],
+      [36, 65],
+      [1, 28],
+      [-24, 4],
+      [-38, 41],
+      [-34, -6],
+      [-2, -29],
+      [-22, 6],
+      [4, 67],
+      [-15, 74],
+      [-10, 14],
+      [-117, 81],
+      [3, 24],
+      [61, 42],
+      [11, 25],
+      [-3, 24],
+      [-16, 20],
+      [-28, 10],
+      [-32, -27],
+      [-57, 18],
+      [-8, 15],
+      [10, 28],
+      [38, 48],
+      [42, 41],
+      [33, 14],
+      [-3, 14],
+      [652, 0],
+      [576, 0],
+      [646, -12],
+      [1163, 10],
+      [512, -1],
+      [2138, -2],
+      [509, 0],
+      [552, 0],
+      [549, 0],
+      [1191, -1],
+      [1428, 0],
+      [739, -2]
+    ],
+    [
+      [97276, 55745],
+      [-755, 26],
+      [-295, 10],
+      [-451, 12]
+    ],
+    [
+      [95775, 55793],
+      [-21, 0],
+      [-27, 141],
+      [10, 82],
+      [13, -2],
+      [8, 270],
+      [9, 228],
+      [19, 469],
+      [12, 348],
+      [11, 404],
+      [9, 51],
+      [-112, 229],
+      [-7, 6],
+      [-113, -12],
+      [-16, -25],
+      [-46, -112],
+      [-53, 38],
+      [-5, 11],
+      [18, 147],
+      [34, 97],
+      [61, 127],
+      [37, 91],
+      [-13, 36],
+      [-40, 57],
+      [-17, 60],
+      [-17, 185],
+      [-19, 61],
+      [4, 48],
+      [-1, 170],
+      [-9, 27],
+      [-48, 40],
+      [14, 93],
+      [72, 281],
+      [74, 88],
+      [48, 45],
+      [18, 366],
+      [36, 100],
+      [4, 27],
+      [-12, 95],
+      [-12, 60],
+      [-60, 117],
+      [-33, 28],
+      [-33, 44],
+      [-30, 109],
+      [47, 214],
+      [47, 191],
+      [-55, 126],
+      [36, 417],
+      [13, 42]
+    ],
+    [
+      [95630, 61508],
+      [479, 12],
+      [132, -2],
+      [315, 5],
+      [318, -3],
+      [618, -26],
+      [446, 1],
+      [382, 9],
+      [242, 5],
+      [493, 5]
+    ],
+    [
+      [99055, 61514],
+      [-4, -13],
+      [-47, -21],
+      [-13, -14],
+      [-1, -25],
+      [39, -93],
+      [42, -91],
+      [-3, -16],
+      [-143, -240],
+      [-96, -138],
+      [-6, -19],
+      [4, -45],
+      [49, -80],
+      [85, -181],
+      [31, -97],
+      [-81, -206],
+      [-36, -50],
+      [-150, -148],
+      [-54, -41],
+      [-67, -26],
+      [-32, 14],
+      [-59, -19],
+      [-38, -44],
+      [-3, -38],
+      [-347, -106],
+      [-18, -9],
+      [-87, -88],
+      [-17, -39],
+      [7, -210],
+      [21, -50],
+      [24, -31],
+      [-27, -110],
+      [-108, -313],
+      [-1, -38],
+      [11, -9],
+      [5, -47],
+      [-31, -80],
+      [-86, -83],
+      [-28, -131],
+      [-2, -70],
+      [-40, -87],
+      [-52, -60],
+      [-58, -35],
+      [-13, 0],
+      [-59, -80],
+      [-50, -171],
+      [-9, -51],
+      [9, -36],
+      [-123, -201],
+      [15, -46],
+      [0, -78],
+      [-33, -206],
+      [3, -80],
+      [12, -105],
+      [-78, -266],
+      [-24, -126],
+      [36, -119],
+      [-20, -272],
+      [-210, -352],
+      [1, -26],
+      [24, -121],
+      [62, -69],
+      [35, -22],
+      [23, -26],
+      [37, -89]
+    ],
+    [
+      [19877, 41296],
+      [-2, 229],
+      [-1, 486],
+      [0, 220],
+      [-1, 306],
+      [0, 284],
+      [2, 356],
+      [6, 162],
+      [-4, 479],
+      [1, 375],
+      [0, 646],
+      [0, 351],
+      [0, 337],
+      [4, 2184],
+      [1, 917],
+      [1, 532],
+      [2, 952],
+      [4, 585],
+      [0, 83],
+      [3, 608],
+      [4, 1872],
+      [-2, 274],
+      [-2, 361]
+    ],
+    [
+      [61992, 49819],
+      [-122, 14],
+      [-12, 25],
+      [-62, 43],
+      [-177, 243],
+      [-5, 19],
+      [8, 49],
+      [-4, 17],
+      [-142, 120],
+      [-38, 26],
+      [-23, 38],
+      [-178, -9],
+      [-81, -5],
+      [-424, -16],
+      [-377, -8],
+      [-150, -5],
+      [-196, -4],
+      [-178, -7],
+      [-198, -6],
+      [-131, -2],
+      [-343, -3],
+      [-292, -10],
+      [-302, -8],
+      [-337, -2],
+      [-198, 1],
+      [-264, -6],
+      [-112, -1],
+      [-275, -4],
+      [-253, -6],
+      [-369, -4],
+      [-478, -3],
+      [-266, 1],
+      [-157, 2],
+      [-465, 10],
+      [-287, 4],
+      [-188, 3],
+      [-253, 3],
+      [-312, 5],
+      [-217, 6],
+      [-230, 2]
+    ],
+    [
+      [53904, 50341],
+      [23, 20],
+      [8, 26],
+      [-51, 111],
+      [-36, 38],
+      [-51, 12],
+      [-37, 26],
+      [-75, 101],
+      [-11, 36],
+      [14, 48],
+      [37, 31],
+      [75, 287],
+      [-14, 250],
+      [-12, 21],
+      [-60, 44],
+      [1, 106],
+      [26, 307],
+      [-115, 50],
+      [-16, 15],
+      [-8, 28],
+      [47, 180],
+      [-21, 118],
+      [-48, 22],
+      [-25, 27],
+      [-7, 24],
+      [36, 114],
+      [12, 100],
+      [-119, 233],
+      [-66, 2],
+      [-12, -46],
+      [-34, 2],
+      [-64, 56],
+      [-9, 19],
+      [-44, 187],
+      [3, 20],
+      [35, 46],
+      [4, 33],
+      [-8, 21],
+      [-41, 55],
+      [46, 40],
+      [37, 42],
+      [23, 196],
+      [-12, 29],
+      [-28, 17],
+      [-46, 49],
+      [-62, 104],
+      [-33, 75],
+      [5, 21],
+      [32, 14],
+      [10, 13],
+      [14, 112],
+      [-1, 17],
+      [-171, 137],
+      [-56, 36],
+      [-39, 17],
+      [-12, 68],
+      [-53, 143],
+      [-68, 79],
+      [-10, 25],
+      [-19, 97],
+      [6, 12],
+      [38, 9],
+      [25, 38],
+      [-12, 53],
+      [-86, 160],
+      [-16, 19],
+      [-45, 29],
+      [-18, 36],
+      [4, 123],
+      [4, 19],
+      [48, 62],
+      [13, 35],
+      [-1, 39],
+      [-8, 29],
+      [-20, 27],
+      [-24, 9],
+      [-64, 5]
+    ],
+    [
+      [52642, 55146],
+      [-42, 21],
+      [-28, 47],
+      [7, 48],
+      [1, 52],
+      [-73, 188],
+      [-49, 76],
+      [-61, 56],
+      [-50, 37],
+      [-16, -7],
+      [-37, 28],
+      [-17, 79],
+      [14, 85],
+      [101, 144],
+      [28, 8],
+      [25, 20],
+      [15, 47],
+      [57, 219],
+      [2, 67],
+      [-6, 144],
+      [87, 86],
+      [55, 148],
+      [-73, 253],
+      [-18, 8],
+      [-133, 0],
+      [-51, 111],
+      [-4, 15],
+      [32, 54],
+      [32, -7],
+      [40, 18],
+      [9, 32],
+      [8, 157],
+      [-5, 50],
+      [-25, 1],
+      [-37, 30],
+      [-68, 69],
+      [-16, 42],
+      [5, 15],
+      [30, 30],
+      [-6, 40],
+      [-22, 40],
+      [271, 0]
+    ],
+    [
+      [65491, 40029],
+      [-40, 69],
+      [-18, 48],
+      [-3, 20],
+      [9, 30],
+      [26, 32],
+      [47, 10],
+      [51, -12],
+      [29, -11],
+      [21, -30],
+      [10, -33],
+      [4, -43],
+      [-12, -41],
+      [-24, -40]
+    ],
+    [
+      [65717, 40031],
+      [31, 99],
+      [24, 89],
+      [22, 102],
+      [20, 28],
+      [40, 15],
+      [32, 3],
+      [25, -30],
+      [35, -67],
+      [42, -56],
+      [22, -16],
+      [61, 11],
+      [25, 27],
+      [21, 54],
+      [9, 69],
+      [19, 31],
+      [24, 23],
+      [5, 56],
+      [-51, 110],
+      [-3, 24],
+      [6, 35],
+      [25, 36],
+      [28, 14],
+      [50, -10],
+      [22, -9],
+      [13, 84],
+      [-104, 70],
+      [4, 58],
+      [55, 29],
+      [87, 244],
+      [-59, 96]
+    ],
+    [
+      [74272, 46608],
+      [61, 24],
+      [39, 59],
+      [22, 21],
+      [42, -6],
+      [25, -19],
+      [54, -83],
+      [9, -9],
+      [98, -60],
+      [22, -8],
+      [32, 0],
+      [174, 51],
+      [30, 22],
+      [113, -21],
+      [198, -168],
+      [40, -53],
+      [131, -286],
+      [4, -32],
+      [-2, -68],
+      [4, -58],
+      [11, -33],
+      [37, -38],
+      [249, -81],
+      [51, 1],
+      [122, 41],
+      [31, 1],
+      [34, -9],
+      [74, -39],
+      [63, -17],
+      [31, -23],
+      [141, -197],
+      [8, -33],
+      [21, -23],
+      [154, -56],
+      [29, -5],
+      [26, 12],
+      [13, 26],
+      [12, 69],
+      [18, 23],
+      [21, 12],
+      [153, 45],
+      [39, -1],
+      [267, -107],
+      [66, -45],
+      [17, -21],
+      [7, -26],
+      [71, -50],
+      [233, 44],
+      [27, 12],
+      [28, 43],
+      [180, 210],
+      [35, 11],
+      [61, -10],
+      [20, 7],
+      [47, 37],
+      [36, 17],
+      [55, 16],
+      [28, -13],
+      [15, -30],
+      [2, -44],
+      [-6, -30],
+      [7, -80],
+      [30, -170],
+      [12, -40],
+      [14, -23],
+      [36, -34],
+      [57, -32],
+      [109, -2],
+      [64, -43],
+      [11, -14],
+      [47, -77],
+      [134, -212]
+    ],
+    [
+      [103139, 58387],
+      [13, -14],
+      [-25, -30],
+      [-12, 23],
+      [24, 21]
+    ],
+    [
+      [102916, 58778],
+      [8, -34],
+      [-27, -15],
+      [-7, 17],
+      [15, 84],
+      [24, -28],
+      [-13, -24]
+    ],
+    [
+      [106281, 60269],
+      [8, 5],
+      [62, -21],
+      [-16, -49],
+      [19, -15],
+      [33, -40],
+      [-12, -42],
+      [-36, -15],
+      [-8, 22],
+      [-23, 110],
+      [-26, 10],
+      [-1, 35]
+    ],
+    [
+      [101629, 58323],
+      [46, 12],
+      [-24, -47],
+      [-3, -31],
+      [-28, -36],
+      [-26, 25],
+      [-1, 24],
+      [36, 53]
+    ],
+    [
+      [101533, 58108],
+      [-36, -51],
+      [-29, -24],
+      [-9, 21],
+      [20, 53],
+      [29, 30],
+      [25, -29]
+    ],
+    [
+      [101505, 58157],
+      [-12, -24],
+      [-28, -27],
+      [-12, 9],
+      [23, 49],
+      [20, 9],
+      [9, -16]
+    ],
+    [
+      [101546, 58181],
+      [33, 24],
+      [20, -3],
+      [-35, -50],
+      [-26, -14],
+      [-10, 21],
+      [18, 22]
+    ],
+    [
+      [101688, 58200],
+      [-57, -34],
+      [33, 49],
+      [24, -15]
+    ],
+    [
+      [103935, 58613],
+      [-4, -38],
+      [12, -30],
+      [-20, -36],
+      [-13, 23],
+      [-8, 46],
+      [-19, 1],
+      [10, 47],
+      [25, 17],
+      [17, -30]
+    ],
+    [
+      [103630, 58972],
+      [-63, -80],
+      [-28, 13],
+      [58, 90],
+      [27, -2],
+      [6, -21]
+    ],
+    [
+      [104423, 58989],
+      [-32, 16],
+      [-23, -11],
+      [-23, 4],
+      [17, 60],
+      [-7, 50],
+      [-13, 41],
+      [63, 31],
+      [18, 21],
+      [15, -5],
+      [48, -61],
+      [-12, -30],
+      [-19, 0],
+      [-20, -84],
+      [2, -30],
+      [-14, -2]
+    ],
+    [
+      [104111, 59092],
+      [-9, 1],
+      [-31, -45],
+      [-104, -27],
+      [-21, 0],
+      [-29, 18],
+      [-19, 87],
+      [-25, 46],
+      [9, 63],
+      [-64, -1],
+      [15, 52],
+      [33, 45],
+      [53, 29],
+      [19, 18],
+      [58, 41],
+      [42, 9],
+      [12, -64],
+      [49, -38],
+      [0, -24],
+      [-48, 1],
+      [-5, -17],
+      [9, -36],
+      [17, 1],
+      [30, -59],
+      [33, -37],
+      [5, -22],
+      [-29, -41]
+    ],
+    [
+      [103819, 59667],
+      [43, 72],
+      [0, 65],
+      [15, 74],
+      [15, 35],
+      [45, 20],
+      [20, -13],
+      [15, -43],
+      [-21, -50],
+      [-39, -25],
+      [-7, -32],
+      [17, -48],
+      [-32, -58],
+      [-23, -94],
+      [-18, -25],
+      [-36, -30],
+      [-18, 58],
+      [-22, 20],
+      [4, 19],
+      [42, 55]
+    ],
+    [
+      [104644, 59271],
+      [14, -37],
+      [-21, -25],
+      [-26, 9],
+      [-3, 25],
+      [14, 30],
+      [22, -2]
+    ],
+    [
+      [104906, 59273],
+      [22, 7],
+      [30, -44],
+      [-14, -23],
+      [-50, 0],
+      [-22, 27],
+      [21, 30],
+      [13, 3]
+    ],
+    [
+      [104730, 59437],
+      [28, -5],
+      [25, 7],
+      [74, -91],
+      [-22, -36],
+      [-58, -54],
+      [-20, -7],
+      [-19, 23],
+      [2, 20],
+      [-17, 30],
+      [-43, 6],
+      [-31, -2],
+      [-10, 14],
+      [12, 25],
+      [39, 49],
+      [40, 21]
+    ],
+    [
+      [104306, 59662],
+      [24, -7],
+      [17, -20],
+      [66, -33],
+      [22, -27],
+      [11, -35],
+      [-13, -59],
+      [-23, -25],
+      [11, -42],
+      [-44, -59],
+      [-51, -15],
+      [-2, -33],
+      [-20, -1],
+      [-19, 39],
+      [-32, 13],
+      [-21, 26],
+      [12, 87],
+      [-13, 22],
+      [-3, 28],
+      [41, 27],
+      [12, 37],
+      [26, 34],
+      [-1, 43]
+    ],
+    [
+      [104912, 59460],
+      [41, 20],
+      [22, -20],
+      [-21, -18],
+      [-12, -51],
+      [-15, -6],
+      [-59, 37],
+      [27, 34],
+      [17, 4]
+    ],
+    [
+      [104693, 59512],
+      [24, -18],
+      [12, -28],
+      [-10, -10],
+      [-48, 13],
+      [-5, 17],
+      [9, 44],
+      [18, -18]
+    ],
+    [
+      [104099, 59557],
+      [42, -38],
+      [1, -23],
+      [-21, -26],
+      [-18, 2],
+      [-36, 22],
+      [-38, 11],
+      [-15, 25],
+      [-3, 24],
+      [22, 16],
+      [66, -13]
+    ],
+    [
+      [105133, 59629],
+      [41, -8],
+      [-13, -15],
+      [-35, -14],
+      [-1, -30],
+      [-15, -11],
+      [-33, -3],
+      [-19, 17],
+      [4, 45],
+      [38, -2],
+      [24, 6],
+      [9, 15]
+    ],
+    [
+      [104645, 59890],
+      [37, -126],
+      [-20, -15],
+      [-48, 28],
+      [-28, 22],
+      [3, 28],
+      [15, 35],
+      [4, 57],
+      [32, 3],
+      [5, -32]
+    ],
+    [
+      [100541, 56585],
+      [-97, 51],
+      [-134, 124],
+      [-10, 45],
+      [10, 100],
+      [22, 122],
+      [-32, 20],
+      [-10, 21],
+      [-45, 35],
+      [-87, 105],
+      [-13, 28],
+      [-26, 30],
+      [-40, 11],
+      [-28, 25],
+      [-31, 81],
+      [-7, 39],
+      [2, 57],
+      [42, 149],
+      [18, 93],
+      [-15, 61],
+      [13, 17],
+      [4, 30],
+      [-36, 44],
+      [-17, 330],
+      [0, 35],
+      [-13, 196],
+      [-8, 307],
+      [-15, 451],
+      [-14, 417],
+      [-9, 208],
+      [-29, 680],
+      [-15, 367],
+      [-42, 666],
+      [-29, 516],
+      [-17, 205]
+    ],
+    [
+      [99833, 62251],
+      [100, 18],
+      [41, 16],
+      [35, 44],
+      [73, -4],
+      [61, -57],
+      [19, -108],
+      [20, -69],
+      [22, -18],
+      [52, -14],
+      [33, 22],
+      [58, 222],
+      [1, 132],
+      [-30, 32],
+      [-3, 24],
+      [50, 61],
+      [32, 16],
+      [51, -8],
+      [19, -17],
+      [0, -23],
+      [26, -32],
+      [33, -22],
+      [97, -32],
+      [15, -2],
+      [32, 16],
+      [15, 59],
+      [-16, 53],
+      [-28, 40],
+      [-48, 22],
+      [-75, 87],
+      [-12, 52],
+      [2, 19],
+      [39, 45],
+      [27, 43],
+      [-3, 36],
+      [53, 57],
+      [176, 173],
+      [177, 117],
+      [34, 7],
+      [101, 132],
+      [-38, 95],
+      [40, 21],
+      [15, 41],
+      [85, 84],
+      [64, 17],
+      [44, 33],
+      [40, 40],
+      [17, 38],
+      [25, 103],
+      [-47, 48],
+      [-86, 22],
+      [-3, 113],
+      [5, 122],
+      [39, 75],
+      [10, 11],
+      [60, 19],
+      [26, 104],
+      [-74, 69],
+      [-27, 42],
+      [158, 353],
+      [36, 47],
+      [25, 21],
+      [77, 27],
+      [143, 120],
+      [62, 396],
+      [49, 307],
+      [332, 454],
+      [469, 630],
+      [637, 845],
+      [145, -28],
+      [169, -41],
+      [24, -15],
+      [21, -59],
+      [-19, -15],
+      [4, -31],
+      [-27, -25],
+      [7, -299],
+      [31, -39],
+      [96, -52],
+      [74, -36],
+      [29, -21],
+      [47, -49],
+      [89, 38],
+      [242, 116],
+      [266, 120],
+      [196, 27],
+      [211, 146],
+      [52, 11],
+      [92, 1],
+      [82, -15],
+      [30, -15],
+      [131, -87],
+      [369, -289],
+      [11, -43],
+      [25, -44],
+      [87, -116],
+      [79, -67],
+      [57, -28],
+      [48, -34],
+      [2, -13],
+      [0, -750],
+      [14, -1226],
+      [1, -849],
+      [24, -104],
+      [9, -206],
+      [-31, -10],
+      [-40, -32],
+      [-9, -22],
+      [-21, -255],
+      [27, -40],
+      [91, -26],
+      [202, -136],
+      [157, -47],
+      [80, -18],
+      [36, -2],
+      [20, 19],
+      [-2, 16],
+      [24, 8],
+      [50, -3],
+      [45, -60],
+      [9, -72],
+      [-9, -121],
+      [-43, 20],
+      [-27, -5],
+      [-75, -51],
+      [56, -159],
+      [24, -15],
+      [57, -67],
+      [14, -34],
+      [-13, -89],
+      [-57, -109],
+      [-48, -24],
+      [-7, -26],
+      [48, -94],
+      [109, -197],
+      [95, -91],
+      [27, -11],
+      [64, 49],
+      [5, 42],
+      [22, 66],
+      [37, 9],
+      [204, -72],
+      [60, -77],
+      [31, -50],
+      [40, -110],
+      [-28, -7],
+      [-22, -23],
+      [33, -30],
+      [33, -39],
+      [14, -26],
+      [12, -46],
+      [25, -36],
+      [31, -104],
+      [9, -14],
+      [58, -53],
+      [33, -16],
+      [-11, -76],
+      [23, -64],
+      [-35, -31],
+      [19, -61],
+      [22, -13],
+      [42, 12],
+      [3, -14],
+      [-20, -19],
+      [-34, 0],
+      [-29, -41],
+      [-46, -49],
+      [-44, -16],
+      [-35, 11],
+      [-2, -28],
+      [-19, -42],
+      [-47, -1],
+      [-9, -60],
+      [-47, -56],
+      [-19, -4],
+      [-17, -25],
+      [-13, -37],
+      [-27, -18],
+      [-31, 1],
+      [-10, -18],
+      [5, -25],
+      [-44, -16],
+      [-40, -5],
+      [-32, 9],
+      [-42, -36],
+      [2, -39],
+      [-38, -30],
+      [-40, -2],
+      [-15, 28],
+      [23, 10],
+      [32, 53],
+      [2, 36],
+      [-32, 27],
+      [3, 81],
+      [14, 13],
+      [2, 23],
+      [-17, 4],
+      [-88, -21],
+      [-39, -43],
+      [-8, -31],
+      [26, -43],
+      [7, -52],
+      [-27, -31],
+      [-20, 17],
+      [-19, -60],
+      [-24, -14],
+      [-17, 27],
+      [-43, -5],
+      [-26, -20],
+      [-64, 51],
+      [-3, 27],
+      [-22, 20],
+      [-32, -9],
+      [-21, -29],
+      [-17, 12],
+      [-17, -17],
+      [-42, -149],
+      [10, -10],
+      [14, -44],
+      [-11, -21],
+      [-150, -14],
+      [-22, 31],
+      [-47, -1],
+      [-32, -24],
+      [7, -30],
+      [-8, -28],
+      [-20, -24],
+      [-16, 8],
+      [-38, -3],
+      [6, 30],
+      [-6, 44],
+      [-20, 43],
+      [-25, 12],
+      [-22, -12],
+      [-4, -58],
+      [-30, 0],
+      [-15, 23],
+      [-6, 36],
+      [-39, 34],
+      [-19, 3],
+      [-11, -18],
+      [5, -22],
+      [-25, -48],
+      [9, -98],
+      [-28, -33],
+      [-4, -38],
+      [32, -71],
+      [-6, -23],
+      [-26, 13],
+      [-18, 27],
+      [-16, -6],
+      [-9, -59],
+      [-14, -39],
+      [-23, 63],
+      [-3, 28],
+      [-32, -4],
+      [-1, -42],
+      [-46, 11],
+      [-10, -10],
+      [0, -34],
+      [-33, -30],
+      [-12, 0],
+      [-28, 49],
+      [-19, 2],
+      [-16, -26],
+      [10, -17],
+      [-38, -75],
+      [-18, -7],
+      [2, -36],
+      [-12, -32],
+      [-33, 12],
+      [-16, 31],
+      [-4, 64],
+      [-28, -6],
+      [-20, 36],
+      [-16, 42],
+      [-1, 49],
+      [-13, 62],
+      [9, 56],
+      [-15, 27],
+      [-52, 9],
+      [-37, -30],
+      [-44, 4],
+      [9, 17],
+      [-4, 22],
+      [-41, 13],
+      [-25, -32],
+      [6, -39],
+      [-38, 17],
+      [-15, 31],
+      [-17, 2],
+      [-16, -62],
+      [-20, -21],
+      [-32, -5],
+      [6, -41],
+      [50, 19],
+      [39, -18],
+      [7, -32],
+      [-12, -15],
+      [64, -61],
+      [22, 4],
+      [36, -58],
+      [18, -65],
+      [2, -38],
+      [-34, -55],
+      [-77, -46],
+      [-78, 1],
+      [-26, -12],
+      [-17, -19],
+      [-1, -25],
+      [15, -48],
+      [-50, -57],
+      [-41, -5],
+      [-6, 16],
+      [-42, 22],
+      [-23, 24],
+      [-22, -1],
+      [-22, 13],
+      [-34, 56],
+      [-12, 52],
+      [-9, 9],
+      [0, 35],
+      [35, 24],
+      [4, 18],
+      [-21, 17],
+      [21, 51],
+      [25, 20],
+      [-3, 31],
+      [57, 36],
+      [18, 4],
+      [-2, 27],
+      [-25, 52],
+      [-28, 19],
+      [-9, -33],
+      [-45, -50],
+      [-32, 8],
+      [2, 64],
+      [6, 31],
+      [-18, 23],
+      [-30, -2],
+      [-16, -27],
+      [9, -62],
+      [-10, -35],
+      [6, -50],
+      [-32, -1],
+      [-9, 26],
+      [19, 40],
+      [-14, 72],
+      [-26, -7],
+      [-10, -40],
+      [-27, -2],
+      [-38, -39],
+      [-38, 15],
+      [-21, -23],
+      [13, -51],
+      [18, -7],
+      [8, -42],
+      [-33, -55],
+      [-7, -39],
+      [20, -43],
+      [33, -2],
+      [13, -24],
+      [5, -36],
+      [17, -28],
+      [-19, -39],
+      [12, -35],
+      [-3, -20],
+      [-48, 22],
+      [-22, 29],
+      [-19, 12],
+      [-57, 55],
+      [-23, 2],
+      [-26, 28],
+      [-99, 32],
+      [-79, 57],
+      [-14, 17],
+      [-24, 7],
+      [-30, -4],
+      [-18, -23],
+      [-43, -32],
+      [-60, 11],
+      [-2, 11],
+      [13, 83],
+      [12, 32],
+      [-7, 33],
+      [-6, 85],
+      [12, 48],
+      [25, 17],
+      [30, 71],
+      [4, 28],
+      [-49, -13],
+      [-36, -16],
+      [-55, -44],
+      [-40, -42],
+      [-12, 6],
+      [-10, 36],
+      [-16, 18],
+      [-50, -10],
+      [-8, -24],
+      [-27, -24],
+      [-67, -7],
+      [-16, -28],
+      [23, -73],
+      [33, -28],
+      [24, -49],
+      [-12, -80],
+      [-8, -24],
+      [-38, -46],
+      [-46, -4],
+      [-2, -52],
+      [-23, -43],
+      [-23, -21],
+      [-20, -38],
+      [-4, -47],
+      [-17, -48],
+      [-5, -62],
+      [-13, -15],
+      [-31, -1],
+      [-6, -21],
+      [10, -68],
+      [-8, -30],
+      [-39, -34],
+      [0, -27],
+      [22, -21],
+      [61, 24],
+      [24, -7],
+      [22, -33],
+      [-35, -28],
+      [-25, 5],
+      [-29, -37],
+      [11, -23],
+      [-38, -18],
+      [-35, -26],
+      [-28, -29],
+      [7, -25],
+      [-46, -22],
+      [-40, -8],
+      [-43, -50],
+      [-8, -21],
+      [8, -19],
+      [-19, -45],
+      [-19, -16],
+      [-44, -10],
+      [-9, -16],
+      [-32, -10],
+      [-15, 56],
+      [-24, 35],
+      [-15, 1],
+      [-36, -36],
+      [-22, 3],
+      [27, 30],
+      [2, 14],
+      [-51, 31],
+      [-38, 1],
+      [-27, -26],
+      [-40, -1],
+      [-19, 19],
+      [-33, 14],
+      [-29, -32],
+      [-19, -1],
+      [-17, -56],
+      [-16, -98],
+      [-45, -58],
+      [-5, -28],
+      [-31, -79],
+      [-19, 18],
+      [-21, 78],
+      [-36, 15],
+      [-12, -23],
+      [10, -29],
+      [-14, -50],
+      [-29, 8],
+      [-14, -6],
+      [-5, -47],
+      [-48, -25],
+      [-1, 31],
+      [23, 13],
+      [6, 51],
+      [-11, 19],
+      [-18, -2],
+      [-16, -33],
+      [-3, -33],
+      [-12, -13],
+      [-25, 49],
+      [-28, -25],
+      [-6, -48],
+      [4, -34],
+      [-5, -32],
+      [-21, 0],
+      [-38, 64],
+      [-22, 22],
+      [-16, -5],
+      [-17, -32],
+      [-9, -60],
+      [-62, -77],
+      [-51, -2],
+      [4, -27],
+      [-106, -59],
+      [-7, -41],
+      [-30, -1],
+      [-7, 91],
+      [-18, 5],
+      [12, 41],
+      [-14, 42],
+      [-27, 6],
+      [-36, -14],
+      [-44, 20],
+      [-40, -36],
+      [-18, 4],
+      [-45, -42],
+      [-13, -20],
+      [-23, 4],
+      [-74, -17],
+      [13, 53],
+      [17, 27],
+      [38, 45],
+      [13, 28],
+      [-9, 34],
+      [-15, -3],
+      [-28, 30],
+      [5, 29],
+      [30, 25],
+      [8, 22],
+      [-30, 15],
+      [-24, -22],
+      [-40, -55],
+      [1, -17],
+      [-52, -5],
+      [-49, -26],
+      [-66, -44],
+      [-21, -27],
+      [0, -16],
+      [-41, -35],
+      [6, 32],
+      [-32, -4],
+      [-14, -47],
+      [5, -28],
+      [-43, -56],
+      [2, -38],
+      [-28, 0],
+      [-37, -55],
+      [-2, -21],
+      [25, -22],
+      [-3, -18],
+      [55, -84],
+      [-11, -73],
+      [5, -16],
+      [25, -10],
+      [8, -54],
+      [-17, -19],
+      [-26, 12],
+      [-22, -3],
+      [-23, -23],
+      [-33, 4],
+      [-20, 23],
+      [-49, -31],
+      [-16, -15],
+      [-64, -10],
+      [-36, -29],
+      [-33, -55],
+      [-11, -28],
+      [4, -67],
+      [20, -37],
+      [42, -32],
+      [-39, -20],
+      [-27, -39],
+      [-11, -41],
+      [-29, -4],
+      [-28, -13],
+      [-12, -17],
+      [5, -33],
+      [-32, -49],
+      [-44, -41],
+      [-36, 15],
+      [-60, -6],
+      [-33, -18],
+      [-34, -38],
+      [-17, -28],
+      [-42, -102],
+      [-16, -53],
+      [5, -29],
+      [29, -40],
+      [-23, -56],
+      [-58, -91],
+      [-28, -91],
+      [-8, -34],
+      [-31, -41],
+      [-20, -54],
+      [-13, -15],
+      [-58, -27]
+    ],
+    [
+      [100323, 52870],
+      [-16, -5],
+      [-16, 28],
+      [12, 25],
+      [15, -20],
+      [5, -28]
+    ],
+    [
+      [100742, 52579],
+      [40, -10],
+      [21, 3],
+      [19, -41],
+      [-5, -56],
+      [15, -38],
+      [36, -27],
+      [40, -12],
+      [10, -38],
+      [32, 3],
+      [22, 32],
+      [-1, 24],
+      [17, 26],
+      [25, 4],
+      [8, -61],
+      [-6, -40],
+      [2, -68],
+      [-5, -14],
+      [-84, -4],
+      [-78, 6],
+      [-114, 1],
+      [-206, -19],
+      [-43, -14],
+      [-27, -16],
+      [-31, -28],
+      [-8, -38],
+      [-13, -7],
+      [-49, 34],
+      [-33, 32],
+      [-36, 51],
+      [10, 16],
+      [40, 5],
+      [54, -20],
+      [26, 14],
+      [74, 112],
+      [31, 28],
+      [21, 56],
+      [27, 26],
+      [70, 50],
+      [85, 54],
+      [14, -26]
+    ],
+    [
+      [101680, 52139],
+      [19, 4],
+      [36, 24],
+      [31, 32],
+      [27, 45],
+      [5, 52],
+      [-4, 19],
+      [-35, 52],
+      [30, -6],
+      [28, -43],
+      [108, -227],
+      [0, -36],
+      [-10, -30],
+      [-17, -13],
+      [-50, -20],
+      [-25, -4],
+      [-70, 12],
+      [-57, 5],
+      [-25, -9],
+      [-41, 3],
+      [-96, 34],
+      [-124, 68],
+      [-35, 14],
+      [-33, 34],
+      [-3, 22],
+      [27, -1],
+      [30, -17],
+      [8, -20],
+      [20, -13],
+      [39, 0],
+      [23, 11],
+      [134, -2],
+      [60, 10]
+    ],
+    [
+      [95362, 54036],
+      [-18, 0],
+      [-21, 93],
+      [181, 670],
+      [109, 399],
+      [162, 595]
+    ],
+    [
+      [97276, 55745],
+      [327, -12],
+      [320, -12],
+      [339, -13],
+      [544, -18],
+      [637, -20],
+      [90, 115],
+      [70, 2],
+      [49, -15],
+      [-8, 134],
+      [38, 45],
+      [30, 18],
+      [208, 97],
+      [76, 27],
+      [121, 49],
+      [54, 6],
+      [31, -10],
+      [70, -55],
+      [58, 29]
+    ],
+    [
+      [100330, 56112],
+      [0, -55],
+      [23, -173],
+      [23, -88],
+      [38, -91],
+      [4, -16],
+      [-16, -28],
+      [27, -20],
+      [37, -9],
+      [27, -31],
+      [2, -15],
+      [73, -27],
+      [48, 62],
+      [35, 30],
+      [28, 8],
+      [18, -12],
+      [-5, -68],
+      [15, -9],
+      [36, 7],
+      [7, -30],
+      [-4, -34],
+      [-22, 0],
+      [-24, -16],
+      [-32, -71],
+      [-35, -46],
+      [-25, -1],
+      [-1, 20],
+      [-19, 12],
+      [-37, -43],
+      [-58, -15],
+      [-13, 14],
+      [-38, -17],
+      [-87, -22],
+      [-36, -25],
+      [-47, -4],
+      [-42, -9],
+      [9, -60],
+      [45, -8],
+      [21, -40],
+      [-9, -33],
+      [-41, -1],
+      [-41, -29],
+      [-14, -35],
+      [-13, -10],
+      [-26, 15],
+      [-25, 0],
+      [-25, -23],
+      [4, -50],
+      [9, -18],
+      [28, -8],
+      [14, -29],
+      [-57, 5],
+      [-13, 46],
+      [-1, 40],
+      [-31, -15],
+      [-1, -13],
+      [-41, -43],
+      [-14, -43],
+      [19, -39],
+      [14, -4],
+      [1, -32],
+      [35, -70],
+      [-19, -7],
+      [-21, 23],
+      [-43, -8],
+      [-16, -14],
+      [-17, -53],
+      [5, -27],
+      [23, -33],
+      [-10, -36],
+      [19, -43],
+      [13, -9],
+      [40, 2],
+      [34, 11],
+      [25, -21],
+      [46, 3],
+      [27, 49],
+      [-1, 28],
+      [-35, 16],
+      [15, 14],
+      [47, 2],
+      [2, -20],
+      [20, -38],
+      [36, -44],
+      [38, -2],
+      [36, -12],
+      [76, -34],
+      [30, -52],
+      [45, -45],
+      [15, -7],
+      [15, -99],
+      [15, -14],
+      [39, -76],
+      [40, -63],
+      [44, -49],
+      [3, -18],
+      [-16, -13],
+      [-2, -20],
+      [9, -45],
+      [-48, -34],
+      [-5, -40],
+      [8, -23],
+      [-21, -17],
+      [-15, 18],
+      [-17, 2],
+      [-30, -15],
+      [4, -20],
+      [21, -32],
+      [67, -66],
+      [27, 2],
+      [59, -54],
+      [34, 19],
+      [27, 6],
+      [57, -52],
+      [12, -32],
+      [1, -24],
+      [26, -45],
+      [12, -77],
+      [-30, -70],
+      [1, -39],
+      [44, -62],
+      [44, -44],
+      [42, -31],
+      [110, -43],
+      [69, -14],
+      [157, -11],
+      [29, -21],
+      [30, -31],
+      [45, 50],
+      [35, 24],
+      [50, 22],
+      [13, -3],
+      [76, 24],
+      [36, -3],
+      [49, 19],
+      [59, 16],
+      [73, 37],
+      [31, 33],
+      [8, 20],
+      [-1, 76],
+      [-9, 96],
+      [17, 26],
+      [-45, 30],
+      [-12, 76],
+      [-44, -4],
+      [-35, -70],
+      [-1, 98],
+      [-7, 118],
+      [-12, 67],
+      [-22, 53],
+      [-23, 27],
+      [-75, 46],
+      [-40, -5],
+      [-31, -24],
+      [-15, -27],
+      [3, -30],
+      [-28, 8],
+      [-20, 38],
+      [-27, 30],
+      [-22, 15],
+      [13, 23],
+      [23, 14],
+      [68, 10],
+      [54, -10],
+      [82, -27],
+      [63, -33],
+      [44, -36],
+      [47, -57],
+      [40, -71],
+      [48, -101],
+      [33, -96],
+      [43, -168],
+      [17, -90],
+      [14, -172],
+      [1, -125],
+      [-9, -55],
+      [-34, -73],
+      [-13, -4],
+      [-18, -30],
+      [-28, -115],
+      [-10, -69],
+      [-18, -27],
+      [-25, -2],
+      [1, 24],
+      [17, 24],
+      [14, 37],
+      [13, 80],
+      [26, 82],
+      [-5, 32],
+      [-38, 34],
+      [-33, 12],
+      [-28, -10],
+      [-112, -13],
+      [-96, -31],
+      [-33, 0],
+      [-60, -13],
+      [-102, -42],
+      [-20, -20],
+      [-6, -25],
+      [-15, 0],
+      [-3, 38],
+      [-10, 18],
+      [-30, 6],
+      [-57, -12],
+      [-31, 14],
+      [-41, -13],
+      [-18, -38],
+      [-57, -24],
+      [-68, -3],
+      [-15, -34],
+      [-30, -50],
+      [-28, -34],
+      [-32, -16],
+      [-54, -8],
+      [-69, -2],
+      [-96, -13],
+      [-42, -12],
+      [-18, -15],
+      [-20, -34],
+      [-40, -16],
+      [-55, -40],
+      [-54, -26],
+      [-43, -41],
+      [-7, -23],
+      [-54, -37],
+      [-51, -2],
+      [-34, -9],
+      [-41, -41],
+      [-17, -8],
+      [-67, -4],
+      [-47, -13],
+      [-38, -17],
+      [-2, 16],
+      [40, 40],
+      [31, -17],
+      [53, 19],
+      [52, 42],
+      [49, 20],
+      [49, 11],
+      [27, 34],
+      [24, 8],
+      [39, 37],
+      [17, 22],
+      [161, 107],
+      [8, 16],
+      [0, 39],
+      [21, 18],
+      [1, 27],
+      [-19, 56],
+      [23, 49],
+      [-23, 33],
+      [4, 16],
+      [24, 26],
+      [-16, 61],
+      [-29, 8],
+      [29, 30],
+      [38, 13],
+      [-2, 36],
+      [-33, 15],
+      [-23, -9],
+      [-25, 16],
+      [-71, 23],
+      [-19, 12],
+      [-14, -7],
+      [-5, -24],
+      [14, -26],
+      [7, -48],
+      [-4, -23],
+      [-46, 30],
+      [-20, -6],
+      [-13, -67],
+      [8, -34],
+      [-14, -32],
+      [-21, 23],
+      [-60, 14],
+      [-14, -26],
+      [22, -12],
+      [8, -24],
+      [-19, -17],
+      [-46, -1],
+      [-17, 11],
+      [-20, -12],
+      [9, -78],
+      [-13, -14],
+      [-22, 68],
+      [-7, 33],
+      [-30, 13],
+      [-45, -35],
+      [16, -22],
+      [8, -43],
+      [-20, 5],
+      [-17, 39],
+      [-18, -3],
+      [4, -39],
+      [-7, -25],
+      [-32, -13],
+      [20, -35],
+      [12, -63],
+      [-19, 0],
+      [-70, -25],
+      [-8, -25],
+      [-37, -22],
+      [-30, -7],
+      [-30, -25],
+      [-42, 17],
+      [-51, 9],
+      [-65, -30]
+    ],
+    [
+      [99766, 52643],
+      [-26, 363],
+      [0, 48],
+      [-77, 20],
+      [-37, 17]
+    ],
+    [
+      [99626, 53091],
+      [-54, 90]
+    ],
+    [
+      [99572, 53181],
+      [-68, 105],
+      [-124, 71],
+      [-21, 66],
+      [3, 68],
+      [-3, 152],
+      [-25, 7],
+      [-44, -6],
+      [-10, 72],
+      [1, 242],
+      [-221, -4],
+      [-51, -5],
+      [-119, -3],
+      [-387, -15]
+    ],
+    [
+      [72883, 63399],
+      [32, -8],
+      [11, -15],
+      [34, -2],
+      [45, 10],
+      [6, -21],
+      [-43, -22],
+      [41, -28],
+      [9, -70],
+      [-16, -19],
+      [-6, -25],
+      [10, -42],
+      [19, -31],
+      [6, -78],
+      [-8, -29],
+      [-33, -33],
+      [-39, -19],
+      [-7, -28],
+      [-52, -15],
+      [-105, 27],
+      [-22, 39],
+      [19, 66],
+      [29, 37],
+      [-9, 48],
+      [8, 60],
+      [26, 41],
+      [35, 34],
+      [13, 48],
+      [-3, 75]
+    ],
+    [
+      [67081, 69342],
+      [19, 29],
+      [32, 30],
+      [80, 40],
+      [66, 19],
+      [59, 31],
+      [41, -24],
+      [44, 7],
+      [36, 30],
+      [41, 10],
+      [24, -2],
+      [45, 20],
+      [5, -51],
+      [-14, -10],
+      [-41, -9],
+      [-37, -26],
+      [-30, -39],
+      [-49, -40],
+      [-102, -70],
+      [-21, -24],
+      [8, -39],
+      [-11, -26],
+      [-168, -119],
+      [-90, -41],
+      [-100, -36],
+      [-37, -5],
+      [-75, -35],
+      [-38, 1],
+      [-87, -31],
+      [-35, -19],
+      [-10, -19],
+      [-73, -37],
+      [-11, -55],
+      [20, -16],
+      [29, 0],
+      [80, 18],
+      [-23, -28],
+      [-162, -60],
+      [-44, -23],
+      [-63, -15],
+      [-96, -43],
+      [-30, -17],
+      [-63, -12],
+      [-60, 19],
+      [-4, 24],
+      [-18, 23],
+      [-61, 4],
+      [12, 16],
+      [-50, 45],
+      [15, 32],
+      [39, 17],
+      [22, 47],
+      [65, 53],
+      [157, 83],
+      [143, 62],
+      [45, 25],
+      [99, 43],
+      [48, 3],
+      [37, 21],
+      [3, 15],
+      [108, 55],
+      [47, -4],
+      [71, 39],
+      [0, 23],
+      [82, 56],
+      [42, 23],
+      [39, 12]
+    ],
+    [
+      [74695, 63543],
+      [-57, 74],
+      [-51, 31],
+      [8, 65],
+      [32, -6],
+      [40, -52],
+      [35, -91],
+      [20, -14],
+      [75, -31],
+      [44, 6],
+      [40, -12],
+      [113, -47],
+      [21, 15],
+      [3, 35],
+      [30, -56],
+      [88, -32],
+      [-27, -39],
+      [-3, -27],
+      [-41, -26],
+      [0, -20],
+      [-22, -13],
+      [-24, -1],
+      [-21, 11],
+      [-39, 4],
+      [-34, 11],
+      [-27, -4],
+      [-32, 17],
+      [-15, 43],
+      [-30, 25],
+      [-46, 64],
+      [-59, 33],
+      [-21, 37]
+    ],
+    [
+      [71903, 61500],
+      [-42, -22],
+      [-33, -5],
+      [-39, 14],
+      [0, 39],
+      [24, 56],
+      [44, 21],
+      [46, -18],
+      [0, -25],
+      [-16, -22],
+      [16, -38]
+    ],
+    [
+      [72015, 61880],
+      [51, -6],
+      [30, -12],
+      [24, -32],
+      [0, -45],
+      [-7, -19],
+      [-7, -66],
+      [13, -35],
+      [1, -26],
+      [-38, -17],
+      [-30, 19],
+      [-44, 58],
+      [-29, 22],
+      [-15, 23],
+      [-8, 90],
+      [10, 31],
+      [17, 15],
+      [32, 0]
+    ],
+    [
+      [76815, 53236],
+      [-263, -8],
+      [-531, -23],
+      [-893, -33],
+      [-145, -6],
+      [-685, -22]
+    ],
+    [
+      [70542, 53306],
+      [88, 62],
+      [112, 87],
+      [70, 64],
+      [112, 124],
+      [40, 62],
+      [29, 60],
+      [48, 146],
+      [103, 213],
+      [30, 85],
+      [35, 41],
+      [116, 157],
+      [35, 52],
+      [54, 93],
+      [64, 143],
+      [46, 120],
+      [23, 92],
+      [-1, 18],
+      [15, 29],
+      [29, 77],
+      [22, 92],
+      [17, 151],
+      [10, 63],
+      [18, 75],
+      [-7, 108],
+      [25, 67],
+      [13, 70],
+      [4, 69],
+      [-3, 110],
+      [-5, 53],
+      [-2, 124],
+      [2, 66],
+      [-6, 61],
+      [-4, 90],
+      [-19, 175],
+      [-11, 69],
+      [-22, 86],
+      [-11, 19],
+      [-8, 66],
+      [-49, 132],
+      [-66, 149],
+      [-148, 306],
+      [-22, 56],
+      [-51, 147],
+      [-25, 89],
+      [-38, 151],
+      [-19, 59],
+      [-76, 155],
+      [-18, 43],
+      [-16, 60],
+      [-5, 40],
+      [5, 64],
+      [17, 49],
+      [35, 52],
+      [53, 67],
+      [38, 54],
+      [30, 63],
+      [15, 45],
+      [11, 67],
+      [0, 62],
+      [-5, 38],
+      [-21, 86],
+      [-5, 72],
+      [-28, 133],
+      [-38, 76],
+      [-34, 53],
+      [-24, 65],
+      [0, 26],
+      [26, 44],
+      [100, 77],
+      [32, 35],
+      [54, 93],
+      [38, 82],
+      [32, 47],
+      [21, 54],
+      [15, 51],
+      [31, 34],
+      [21, 53],
+      [29, 61],
+      [59, 94],
+      [31, 140],
+      [7, 50],
+      [-7, 78],
+      [5, 79],
+      [19, 47],
+      [28, 120],
+      [6, 44],
+      [-9, 71],
+      [-12, 36],
+      [-41, 99],
+      [-9, 39],
+      [4, 58],
+      [15, 31],
+      [30, 18],
+      [112, 37],
+      [22, 19],
+      [73, -1],
+      [28, 8],
+      [32, 26],
+      [21, 43],
+      [8, 29],
+      [3, 88],
+      [11, 42],
+      [0, 34],
+      [-10, 77],
+      [-2, 49],
+      [10, 53],
+      [15, 13],
+      [38, 12],
+      [14, -21],
+      [40, -20],
+      [32, 1],
+      [22, 16],
+      [14, 22],
+      [11, 37],
+      [27, 28],
+      [39, 71],
+      [29, -1],
+      [45, -27],
+      [22, -37],
+      [19, -10],
+      [63, 3],
+      [53, 24],
+      [50, 71],
+      [17, 94],
+      [18, 21],
+      [28, 70],
+      [11, 11],
+      [53, 25],
+      [31, 27],
+      [27, 41],
+      [12, 60],
+      [35, 74],
+      [69, 104],
+      [22, -21],
+      [39, 5],
+      [40, 30],
+      [25, 46],
+      [20, -1],
+      [25, -53],
+      [-8, -30],
+      [-39, -25],
+      [-22, -33],
+      [-49, -3],
+      [-18, -10],
+      [-27, -55],
+      [10, -35],
+      [48, -107],
+      [19, -7],
+      [13, -23],
+      [0, -39],
+      [-58, -8],
+      [-4, -48],
+      [-42, -43],
+      [29, -35],
+      [8, -41],
+      [0, -120],
+      [-43, -15],
+      [-44, -118],
+      [-6, -63],
+      [1, -44],
+      [18, -53],
+      [9, -52],
+      [-7, -37],
+      [24, -20],
+      [32, -6],
+      [32, 9],
+      [5, 38],
+      [17, 61],
+      [67, 141],
+      [24, 24],
+      [4, 41],
+      [-42, 3],
+      [-21, 11],
+      [46, 55],
+      [12, 22],
+      [24, 87],
+      [1, 35],
+      [51, 40],
+      [32, 3],
+      [19, -76],
+      [-38, -18],
+      [-11, -66],
+      [-2, -49],
+      [7, -16],
+      [-17, -92],
+      [-20, -44],
+      [-19, -7],
+      [-39, -28],
+      [-30, -40],
+      [-8, -21],
+      [0, -51],
+      [-30, -75],
+      [41, -28],
+      [50, -2],
+      [42, 50],
+      [-8, 49],
+      [18, 42],
+      [46, 28],
+      [22, 25],
+      [5, 27],
+      [64, 116],
+      [5, 34],
+      [32, 42],
+      [19, 48],
+      [33, 171],
+      [-7, 50],
+      [2, 70],
+      [6, 24],
+      [21, 34],
+      [-1, 121],
+      [-19, 65],
+      [-6, 96],
+      [-12, 22],
+      [-4, 115],
+      [32, 90],
+      [30, 30],
+      [38, 28],
+      [51, 49],
+      [63, 5],
+      [20, 11],
+      [20, 28],
+      [31, 22],
+      [48, 44],
+      [51, 10],
+      [72, 24],
+      [166, -16],
+      [40, -7],
+      [20, 14],
+      [118, 23],
+      [80, 43],
+      [6, 25],
+      [-6, 37],
+      [-11, 11],
+      [-110, 19],
+      [-5, -22],
+      [-107, 40],
+      [-53, 57],
+      [-35, 45],
+      [-39, 113],
+      [-11, 45],
+      [-8, 74],
+      [14, 43],
+      [35, 36],
+      [26, 43],
+      [8, 30],
+      [25, 26],
+      [86, 31],
+      [26, 24],
+      [9, 21],
+      [48, 42],
+      [50, 61],
+      [3, 46],
+      [-16, 21],
+      [-59, 38],
+      [-23, 20],
+      [105, 0],
+      [52, -25],
+      [81, 5],
+      [48, -18],
+      [78, 6],
+      [20, 13],
+      [16, 43],
+      [-25, 28],
+      [38, 22],
+      [40, -17],
+      [32, 14],
+      [15, -3],
+      [19, -52],
+      [63, -25],
+      [5, -18],
+      [65, -23],
+      [74, -47],
+      [92, -49],
+      [30, -30],
+      [144, -95],
+      [36, 6],
+      [28, 36],
+      [26, 1],
+      [69, -35],
+      [87, 22],
+      [74, -28],
+      [37, -22],
+      [102, -25],
+      [36, -33],
+      [29, -43],
+      [43, -49],
+      [33, -29],
+      [24, -43],
+      [-1, -36],
+      [9, -47],
+      [24, -47],
+      [25, -20],
+      [37, -17],
+      [37, -3],
+      [51, 20],
+      [57, -15],
+      [37, 7],
+      [72, -2],
+      [56, -19],
+      [51, -45],
+      [44, -53],
+      [31, -29],
+      [65, -41],
+      [34, -7],
+      [29, 2],
+      [32, -15],
+      [63, 5],
+      [46, -43],
+      [54, -29],
+      [45, -33],
+      [83, -48],
+      [54, -13],
+      [37, 9],
+      [23, 18],
+      [44, -29],
+      [33, 28],
+      [15, -5],
+      [20, -35],
+      [60, -79],
+      [24, -17],
+      [19, -33],
+      [40, -28],
+      [24, -7],
+      [12, -20],
+      [-12, -35],
+      [-45, -23],
+      [12, -47],
+      [40, -60],
+      [29, -54],
+      [1, -24],
+      [16, -24],
+      [21, -4],
+      [20, -36],
+      [40, -13],
+      [-4, -33],
+      [19, -75],
+      [18, -22],
+      [14, -54],
+      [-1, -17],
+      [48, -90],
+      [-11, -8],
+      [-57, 22],
+      [-71, 23],
+      [-32, 23],
+      [-18, 30],
+      [-60, 20],
+      [-64, -32],
+      [-15, -17],
+      [-23, -48],
+      [15, -38],
+      [28, -22],
+      [-35, -45],
+      [12, -96],
+      [9, -29],
+      [25, -35],
+      [38, -20],
+      [20, -40],
+      [77, -43],
+      [60, -14],
+      [-1, -69],
+      [12, -28],
+      [26, -31],
+      [9, -92],
+      [-3, -119],
+      [12, -43],
+      [33, -38],
+      [-7, -62],
+      [-23, -92],
+      [-34, -59],
+      [-13, -53],
+      [-2, -34],
+      [4, -77],
+      [9, -62],
+      [-18, -65],
+      [1, -71],
+      [-17, -105],
+      [0, -39],
+      [10, -62],
+      [-23, -81],
+      [-2, -36],
+      [5, -45],
+      [-21, -27],
+      [-39, 8],
+      [-17, -13],
+      [-52, -65],
+      [-24, -18],
+      [-21, -56],
+      [-32, -18],
+      [-5, 20],
+      [-32, 14],
+      [-31, 3],
+      [-55, -16],
+      [-29, -31],
+      [-24, -33],
+      [-21, -53],
+      [-9, -74],
+      [-26, -106],
+      [0, -92],
+      [-10, -46],
+      [-28, -37],
+      [-4, -43],
+      [11, -32],
+      [-31, -6],
+      [-37, 4],
+      [-54, -9],
+      [-55, -41],
+      [-16, -39],
+      [15, -67],
+      [-119, -7],
+      [-37, -16],
+      [-45, 0],
+      [-76, 10],
+      [-36, -19],
+      [-40, -53],
+      [-15, -3],
+      [-23, -62],
+      [-2, -29],
+      [-30, -13],
+      [-18, -48],
+      [-2, -108],
+      [-15, -174],
+      [-6, -26],
+      [-47, -67],
+      [28, -89],
+      [56, -108],
+      [23, -21],
+      [84, -49],
+      [69, -4],
+      [67, -33],
+      [17, 12],
+      [82, -41],
+      [41, -53],
+      [63, -17],
+      [29, 21],
+      [66, 75],
+      [43, 54],
+      [60, 86],
+      [18, 3],
+      [4, 36],
+      [50, 43],
+      [16, 3],
+      [18, -18],
+      [49, 9],
+      [19, 22],
+      [19, 45],
+      [36, 52],
+      [-12, 26],
+      [16, 38],
+      [23, 33],
+      [28, 19],
+      [-3, 25],
+      [9, 36],
+      [32, 18],
+      [2, 13],
+      [57, 34],
+      [49, 58],
+      [1, 34],
+      [-29, 46],
+      [53, 14],
+      [25, 12],
+      [43, 39],
+      [25, 46],
+      [14, 44],
+      [64, 18],
+      [58, 6],
+      [28, -3],
+      [66, 19],
+      [46, 29],
+      [24, 6],
+      [53, -6],
+      [38, 13],
+      [23, 24],
+      [31, 64],
+      [10, 10],
+      [63, 10],
+      [43, 43],
+      [37, -10],
+      [35, 18],
+      [24, 3],
+      [48, -49],
+      [26, -15],
+      [80, -21],
+      [74, -34],
+      [19, -35],
+      [34, -6],
+      [48, -44],
+      [20, -43],
+      [34, -61],
+      [31, -77],
+      [27, -86],
+      [44, -40],
+      [22, -39],
+      [-8, -25],
+      [26, -28],
+      [29, -159],
+      [-2, -31],
+      [13, -41],
+      [14, -154],
+      [-2, -24],
+      [10, -168],
+      [12, -54],
+      [15, -94],
+      [38, -104],
+      [0, -15],
+      [22, -83],
+      [26, -67],
+      [0, -38],
+      [8, -137],
+      [-3, -49],
+      [13, -38],
+      [1, -44],
+      [-5, -26],
+      [17, -203],
+      [7, -32],
+      [19, -40],
+      [14, -89],
+      [14, -45],
+      [6, -65],
+      [9, -39],
+      [28, -38],
+      [25, -66],
+      [65, -135],
+      [12, -6],
+      [-59, -173],
+      [-13, -25],
+      [-28, -100],
+      [-26, -389],
+      [-49, -242],
+      [-25, -75],
+      [-112, -135],
+      [-43, -13],
+      [-34, 21],
+      [-100, -88],
+      [-12, 16],
+      [27, 23],
+      [12, 21],
+      [-31, 30],
+      [0, 42],
+      [-13, 35],
+      [-24, -6],
+      [-19, 12],
+      [-4, 18],
+      [23, 22],
+      [32, 7],
+      [4, 23],
+      [-15, 21],
+      [38, 26],
+      [44, -15],
+      [27, 27],
+      [15, 35],
+      [-2, 24],
+      [-21, 26],
+      [-46, 7],
+      [-26, 22],
+      [-50, 6],
+      [-10, -15],
+      [-37, -2],
+      [-51, -33],
+      [-22, -35],
+      [-29, -9],
+      [-30, 4],
+      [-31, -33],
+      [-12, -37],
+      [2, -25],
+      [15, -13],
+      [41, -19],
+      [2, -52],
+      [12, -29],
+      [-74, -2],
+      [-24, -7],
+      [-22, -18],
+      [-9, -30],
+      [-44, -64],
+      [-15, -57],
+      [-3, -73],
+      [26, -53],
+      [-30, -108],
+      [-4, -25],
+      [-19, -32],
+      [-31, -19],
+      [-25, -47],
+      [9, -19],
+      [-66, -31],
+      [-54, -18],
+      [-56, -7],
+      [-85, -30],
+      [-29, -23],
+      [-31, -47],
+      [-59, -129],
+      [-11, -162],
+      [18, -94],
+      [-17, -125],
+      [-45, -6],
+      [-21, -30],
+      [-37, -18],
+      [6, -36],
+      [-5, -53],
+      [13, -30],
+      [-11, -30],
+      [-40, -6],
+      [-1, -24],
+      [-14, -18],
+      [-22, -3],
+      [-38, -38],
+      [-15, -32],
+      [0, -22],
+      [-23, -30],
+      [-33, 14],
+      [-29, -4],
+      [-24, -18],
+      [-19, -27],
+      [-15, -45],
+      [-4, -44],
+      [-10, -25],
+      [-46, -36],
+      [-12, 22],
+      [-17, -9],
+      [-27, -45],
+      [-25, -57],
+      [-46, -30],
+      [-14, -25],
+      [-3, -49],
+      [11, -49],
+      [25, -73],
+      [-55, -21]
+    ],
+    [
+      [63855, 65432],
+      [130, 87],
+      [38, 18],
+      [39, -12],
+      [77, 39],
+      [52, 15],
+      [137, 53],
+      [118, 25],
+      [102, 33],
+      [32, 15],
+      [60, 48],
+      [19, 25],
+      [54, 35],
+      [72, 59],
+      [48, 57],
+      [82, 82],
+      [31, 21],
+      [77, 37],
+      [131, 30],
+      [87, 7],
+      [58, -20],
+      [13, -15],
+      [29, -1],
+      [93, 33],
+      [63, 10],
+      [40, 15],
+      [79, -12],
+      [65, 6],
+      [40, 11],
+      [81, 34],
+      [228, 116],
+      [40, 24],
+      [49, 46],
+      [62, 87],
+      [48, 49],
+      [45, 23],
+      [22, -19],
+      [36, -3],
+      [44, 8],
+      [44, 27],
+      [31, -10],
+      [46, 0],
+      [48, 17],
+      [24, 16],
+      [29, 30],
+      [36, 55],
+      [20, 43],
+      [19, 68],
+      [27, 37],
+      [63, 34],
+      [13, 2],
+      [62, 67],
+      [47, 24],
+      [22, -1],
+      [25, 13],
+      [65, 76],
+      [56, 48],
+      [80, 52],
+      [30, 3],
+      [57, 31],
+      [67, 18],
+      [136, 119],
+      [43, 51],
+      [13, 36],
+      [21, 30],
+      [76, 79],
+      [54, 34],
+      [122, 48],
+      [72, 48],
+      [86, 19],
+      [38, 29],
+      [1, 18],
+      [67, 23],
+      [180, 28],
+      [69, 3],
+      [15, 15],
+      [114, 9],
+      [92, -2],
+      [59, -10],
+      [150, -7],
+      [30, 3],
+      [82, -32],
+      [49, -29],
+      [27, -23],
+      [11, -85],
+      [-21, -13],
+      [-39, 12],
+      [-42, -18],
+      [-66, -17],
+      [-28, -18],
+      [-21, 3],
+      [-40, 22],
+      [-63, 2],
+      [-111, -14],
+      [-28, -7],
+      [-15, -32],
+      [4, -30],
+      [29, -18],
+      [17, -33],
+      [-15, -21],
+      [-42, -4],
+      [-38, -25],
+      [-51, -41],
+      [-71, -21],
+      [-31, -29],
+      [-47, -64],
+      [-39, -15],
+      [-27, -40],
+      [-58, -58],
+      [-58, -18],
+      [-33, 0],
+      [-31, -26],
+      [-15, -25],
+      [-10, -36],
+      [-1, -41],
+      [20, -32],
+      [-29, -25],
+      [-14, 19],
+      [-31, 0],
+      [-32, -35],
+      [1, -38],
+      [-17, -41],
+      [-79, -45],
+      [-24, -29],
+      [-11, -74],
+      [-16, -52],
+      [-34, -37],
+      [-47, -67],
+      [-61, -14],
+      [-9, -64],
+      [-13, -60],
+      [-38, -94],
+      [-4, -89],
+      [-10, -48],
+      [19, -64],
+      [20, -49],
+      [45, 0],
+      [43, 63],
+      [63, 67],
+      [2, 36],
+      [15, 14],
+      [38, -3],
+      [77, 83],
+      [54, 42],
+      [37, 23],
+      [32, 35],
+      [144, 74],
+      [43, 20],
+      [21, -12],
+      [-33, -46],
+      [-69, -63],
+      [23, -36],
+      [90, 13],
+      [47, 19],
+      [36, 8],
+      [31, -5],
+      [61, -24],
+      [87, -7],
+      [56, 7],
+      [103, 2],
+      [48, -43],
+      [53, -22],
+      [35, 15],
+      [26, -5],
+      [68, -28],
+      [0, -25],
+      [39, -16],
+      [28, 12],
+      [11, -38],
+      [1, -34],
+      [13, -23],
+      [26, -5],
+      [35, 4],
+      [37, 24],
+      [5, -41],
+      [38, -20],
+      [34, -1],
+      [47, -60],
+      [24, -14],
+      [8, -75],
+      [15, -57],
+      [18, -25],
+      [93, -81],
+      [-2, -28],
+      [40, -76],
+      [65, -30],
+      [7, -52],
+      [40, -30],
+      [59, -3],
+      [14, -16],
+      [36, -6],
+      [5, -33],
+      [-22, -19],
+      [33, -64],
+      [-28, -11],
+      [-6, -24],
+      [8, -22],
+      [42, -43],
+      [29, -17],
+      [75, -22],
+      [97, -9],
+      [105, 6],
+      [51, 17],
+      [89, -9],
+      [37, 5],
+      [16, 19],
+      [40, 30],
+      [58, 12],
+      [54, 34],
+      [75, -18],
+      [23, -25],
+      [3, -17],
+      [29, -64],
+      [0, -31],
+      [36, -19],
+      [45, 4],
+      [27, -19],
+      [10, -43],
+      [16, -11],
+      [70, -8],
+      [40, 10],
+      [13, 57],
+      [39, 43],
+      [71, 4],
+      [26, -10],
+      [47, -77],
+      [23, -16],
+      [22, 42],
+      [5, 108],
+      [-23, 13],
+      [-11, 21],
+      [-13, 82],
+      [25, 28],
+      [33, 15],
+      [13, -11],
+      [34, 10],
+      [47, -68],
+      [-3, -39],
+      [-10, -34],
+      [-12, -11],
+      [-10, -37],
+      [35, -20],
+      [17, 30],
+      [17, 9],
+      [0, -58],
+      [43, -17],
+      [53, 61],
+      [61, 45],
+      [55, 49],
+      [25, 45],
+      [23, 22],
+      [60, -6],
+      [87, 36],
+      [76, 37],
+      [301, 192],
+      [49, 39],
+      [43, 9],
+      [35, -40],
+      [37, -7],
+      [48, 8],
+      [69, 25],
+      [78, 15],
+      [77, 9],
+      [55, 19],
+      [86, 16],
+      [68, -5],
+      [86, -20],
+      [83, -9],
+      [67, -1],
+      [85, 8],
+      [82, -3],
+      [70, -11],
+      [83, -1],
+      [61, 4],
+      [51, 12],
+      [209, 84],
+      [149, 78],
+      [62, 22],
+      [156, 25],
+      [203, -14],
+      [51, 6],
+      [50, 23],
+      [37, 8],
+      [46, 1],
+      [25, -9],
+      [-67, -60],
+      [-38, -44],
+      [-23, -40],
+      [-14, -38],
+      [-1, -56],
+      [-14, -126],
+      [-2, -61],
+      [3, -49],
+      [15, -97],
+      [-34, -14],
+      [-20, -28],
+      [12, -57],
+      [30, -41],
+      [34, -20],
+      [85, -9],
+      [61, 33],
+      [5, -22],
+      [35, -33],
+      [41, -5],
+      [59, 11],
+      [22, -24],
+      [11, -29],
+      [27, -12],
+      [55, 6],
+      [57, 18],
+      [85, 37],
+      [84, 49],
+      [46, -14],
+      [42, 7],
+      [27, -33],
+      [16, -38],
+      [44, -44],
+      [20, -29],
+      [41, -23],
+      [89, 52],
+      [19, 3],
+      [26, -20],
+      [32, 21],
+      [13, 33],
+      [0, 22],
+      [-15, 12],
+      [34, 55],
+      [46, 30],
+      [48, -5],
+      [37, 24],
+      [92, -22],
+      [114, -12],
+      [71, 98],
+      [60, 15],
+      [121, -25],
+      [20, -31],
+      [12, -34],
+      [-65, -216],
+      [14, -117],
+      [43, -263],
+      [14, -68],
+      [-18, -18],
+      [-31, -5],
+      [-23, -20],
+      [-23, 23],
+      [-44, 6],
+      [-68, -9],
+      [-25, -20],
+      [-30, -44],
+      [7, -35],
+      [-11, -43],
+      [56, -32],
+      [45, 8],
+      [37, 45],
+      [10, -6],
+      [87, -4],
+      [19, -15],
+      [27, -59],
+      [20, -11],
+      [54, -1],
+      [63, -36],
+      [-65, -46],
+      [-14, -24],
+      [-5, -29],
+      [37, -33],
+      [45, -62],
+      [40, -26],
+      [31, -29],
+      [48, -13],
+      [37, 9],
+      [24, -34],
+      [42, -16],
+      [15, -32],
+      [51, -14],
+      [9, 4],
+      [42, 77],
+      [29, -8],
+      [22, -50],
+      [45, -17],
+      [32, 21],
+      [21, 36],
+      [0, 34],
+      [-16, 50],
+      [-42, 13],
+      [-30, 42],
+      [-21, 76],
+      [22, 13],
+      [36, -17],
+      [39, -28],
+      [81, 0],
+      [16, 26],
+      [30, 6],
+      [79, -8],
+      [49, 9],
+      [67, -35],
+      [33, -1],
+      [16, -50],
+      [13, -20],
+      [21, -8],
+      [20, -54],
+      [5, -41],
+      [15, -25],
+      [97, -38],
+      [14, -30],
+      [-16, -31],
+      [-13, -8],
+      [-41, -100],
+      [-29, -27],
+      [-66, -15],
+      [-40, 9],
+      [-91, 41],
+      [-47, 33],
+      [-56, -25],
+      [-59, -4],
+      [-44, 10],
+      [-81, -11],
+      [-27, 10],
+      [-14, 21],
+      [-50, -10],
+      [-10, 27],
+      [-45, 17],
+      [-30, 22],
+      [-56, -6],
+      [-19, -19],
+      [-58, 19],
+      [-61, 4],
+      [-21, -15],
+      [-39, -6],
+      [-117, 30],
+      [-19, -9],
+      [-38, 29],
+      [-56, -9],
+      [-58, -23],
+      [-11, 8],
+      [-112, -4],
+      [-31, -29],
+      [-140, 0],
+      [-43, -36],
+      [-43, -25],
+      [-97, 67],
+      [-27, 49],
+      [-37, -23],
+      [-33, 23],
+      [-6, 26],
+      [-43, 7],
+      [-13, -9],
+      [0, -41],
+      [-34, -4],
+      [-4, 22],
+      [7, 33],
+      [-5, 36],
+      [-21, 43],
+      [-36, 25],
+      [-32, -4],
+      [-10, -11],
+      [-42, -1],
+      [-72, 59],
+      [-16, 8],
+      [-36, -17],
+      [-32, -48],
+      [0, -26],
+      [12, -95],
+      [-2, -20],
+      [-66, -10],
+      [-13, -15],
+      [-17, -49],
+      [11, -23],
+      [27, -13],
+      [10, -29],
+      [-38, -23],
+      [23, -83],
+      [38, -53],
+      [-37, -13],
+      [-9, -27],
+      [-40, -4],
+      [-85, 58],
+      [-72, 34],
+      [-13, 24],
+      [-7, 42],
+      [-20, 5],
+      [-38, 24],
+      [-12, 15],
+      [-70, 38],
+      [-36, 64],
+      [-68, 76],
+      [-56, 50],
+      [-19, 12],
+      [-78, 31],
+      [-62, 13],
+      [-26, 11],
+      [-51, 34],
+      [-40, 12],
+      [-72, -8],
+      [-13, -7],
+      [-47, 40],
+      [-81, 13],
+      [-40, 16],
+      [-53, 36],
+      [-37, 15],
+      [-37, -1],
+      [-47, -25],
+      [-23, 34],
+      [-34, 15],
+      [-28, 1],
+      [-28, -16],
+      [-9, -26],
+      [-63, 28],
+      [-36, 1],
+      [-40, -14],
+      [-36, -30],
+      [-117, -124],
+      [-26, -55],
+      [-57, -62],
+      [-29, -43],
+      [-62, -17],
+      [-50, 13],
+      [-36, 0],
+      [-88, 31],
+      [-37, 6],
+      [-28, -9],
+      [-13, -22],
+      [-18, -6],
+      [-35, 7],
+      [-60, -2],
+      [-29, -21],
+      [-26, -27],
+      [-6, -41],
+      [10, -28],
+      [-62, 40],
+      [-83, 36],
+      [-97, 28],
+      [-82, 12],
+      [-53, -5],
+      [-67, -28],
+      [-69, 24],
+      [-45, -11],
+      [-24, -33],
+      [-39, 7],
+      [-44, -17],
+      [-70, -67],
+      [-16, -23],
+      [-15, -137],
+      [-31, -45],
+      [-11, -72],
+      [6, -19],
+      [-22, -20],
+      [-60, -1],
+      [-11, 14],
+      [-26, -4],
+      [-24, -20],
+      [-6, -45],
+      [-15, -18],
+      [-29, -10],
+      [-20, 7],
+      [-24, -5],
+      [-13, -28],
+      [-34, 20],
+      [-19, -5],
+      [-16, -40],
+      [-4, -40],
+      [-30, -32],
+      [-54, 21],
+      [-29, -29],
+      [2, -58],
+      [-5, -39],
+      [-44, 8],
+      [-31, -26],
+      [20, -98],
+      [-12, -18],
+      [-18, 12],
+      [-28, -5],
+      [-33, 14],
+      [-39, 32],
+      [-15, 35],
+      [-24, 3],
+      [-18, 47],
+      [4, 40],
+      [19, 18],
+      [30, -8],
+      [24, 10],
+      [20, 26],
+      [-11, 47],
+      [16, 21],
+      [29, 9],
+      [26, 38],
+      [-3, 40],
+      [7, 47],
+      [26, 4],
+      [36, -21],
+      [27, 7],
+      [12, 26],
+      [-9, 16],
+      [20, 27],
+      [14, -3],
+      [15, 23],
+      [-7, 22],
+      [7, 24],
+      [31, 21],
+      [18, 33],
+      [-1, 55],
+      [-22, 39],
+      [-49, 26],
+      [-29, -5],
+      [-37, -56],
+      [-19, -1],
+      [-37, -40],
+      [2, -43],
+      [-26, -23],
+      [-139, 29],
+      [-14, 8],
+      [-26, 40],
+      [-30, 7],
+      [-44, -18],
+      [-4, -14],
+      [4, -62],
+      [14, -21],
+      [3, -26],
+      [-24, -43],
+      [-29, -36],
+      [-37, -25],
+      [-1, -33],
+      [-31, -39],
+      [-6, -32],
+      [6, -17],
+      [-59, -31],
+      [-12, 5],
+      [-51, -6],
+      [-31, -30],
+      [-43, -5],
+      [-38, -58],
+      [-10, 48],
+      [-22, 12],
+      [-6, 23],
+      [13, 58],
+      [5, 62],
+      [-12, 33],
+      [0, 65],
+      [-13, 47],
+      [-31, 53],
+      [-25, 18],
+      [-39, -12],
+      [-33, -54],
+      [-1, -85],
+      [-11, -31],
+      [3, -34],
+      [17, -13],
+      [-8, -28],
+      [-24, -46],
+      [20, -26],
+      [-67, -19],
+      [-30, -38],
+      [-33, -10],
+      [-80, -51],
+      [-46, -64],
+      [-49, -93],
+      [-21, -27],
+      [-54, -93],
+      [-47, -127],
+      [-32, -66],
+      [-25, -26],
+      [-25, -45],
+      [0, -26],
+      [13, -17],
+      [-19, -37],
+      [-43, -40],
+      [-9, -28],
+      [-53, -49],
+      [-14, -50],
+      [-59, -83],
+      [-13, -58],
+      [-49, -51],
+      [-88, -124],
+      [-68, -82],
+      [-27, -19],
+      [-41, -45],
+      [-28, -49],
+      [-21, -59],
+      [3, -23],
+      [37, -48]
+    ],
+    [
+      [54755, 48865],
+      [-8, 23],
+      [-390, 606],
+      [-57, 32],
+      [3, 60],
+      [-4, 13],
+      [-129, 129],
+      [-121, 310],
+      [-10, 45],
+      [21, 20],
+      [42, 73],
+      [-70, 64],
+      [-1, -20],
+      [-24, -34],
+      [-72, 2],
+      [-34, 18],
+      [-4, 13],
+      [-10, 93],
+      [17, 29]
+    ],
+    [
+      [38481, 56436],
+      [445, 2],
+      [441, -2],
+      [321, 0],
+      [506, 0],
+      [245, -1],
+      [389, -1],
+      [567, -1],
+      [753, 0],
+      [386, -1],
+      [465, -7],
+      [735, 4],
+      [638, 0],
+      [622, 2],
+      [150, 1],
+      [229, -1],
+      [415, 0],
+      [388, -2],
+      [408, 0],
+      [424, 0],
+      [513, 0],
+      [550, 0],
+      [436, 1],
+      [311, 1],
+      [15, -52],
+      [43, -77],
+      [38, -32],
+      [225, -122],
+      [226, -100],
+      [72, -25],
+      [203, -167],
+      [40, -17],
+      [65, -2],
+      [93, 16],
+      [25, 15],
+      [52, 49],
+      [38, 56],
+      [16, 46],
+      [9, 59],
+      [56, 22],
+      [31, 3],
+      [26, -19],
+      [74, -29],
+      [164, -18],
+      [288, 19],
+      [202, 28],
+      [176, -4],
+      [133, -15],
+      [72, -61],
+      [53, -62],
+      [98, -57],
+      [158, -31],
+      [49, -19],
+      [121, -62],
+      [76, -16],
+      [25, 6],
+      [174, -70],
+      [166, -102],
+      [21, -45],
+      [10, -42],
+      [-7, -53],
+      [6, -22],
+      [153, -222],
+      [27, -19],
+      [230, -66],
+      [22, 0],
+      [60, 24]
+    ],
+    [
+      [8807, 53897],
+      [23, 4],
+      [366, 4],
+      [800, -8],
+      [67, 0],
+      [1018, -4],
+      [1079, 10],
+      [2179, 9]
+    ],
+    [
+      [100541, 56585],
+      [-28, -69],
+      [-47, -82],
+      [-29, -29],
+      [-66, -132],
+      [-27, -67],
+      [-14, -94]
+    ],
+    [
+      [99055, 61514],
+      [12, 141],
+      [13, 8],
+      [112, 130],
+      [58, 201],
+      [-10, 30],
+      [-74, 49],
+      [78, 20],
+      [108, 72],
+      [85, 70],
+      [24, 9],
+      [33, -29],
+      [13, -45],
+      [50, -42],
+      [91, -29],
+      [83, -5],
+      [14, 6],
+      [50, 124],
+      [13, 18],
+      [25, 9]
+    ],
+    [
+      [94139, 50215],
+      [-63, -39],
+      [-60, -26],
+      [-17, -17],
+      [-25, -3],
+      [-25, -14],
+      [-15, 16],
+      [3, 29],
+      [19, 18],
+      [2, 26],
+      [-12, 31],
+      [35, 29],
+      [23, 0],
+      [11, 15],
+      [13, 72],
+      [16, 31],
+      [-1, 36],
+      [-11, 9],
+      [2, 30],
+      [21, 27],
+      [17, 8],
+      [51, -16],
+      [61, 8],
+      [63, 16],
+      [19, -1],
+      [12, -17],
+      [4, -44],
+      [27, -51],
+      [-28, -50],
+      [-42, -44],
+      [-39, -49],
+      [-19, -11],
+      [-29, -32],
+      [-13, 13]
+    ],
+    [
+      [97883, 51651],
+      [11, 27],
+      [79, -34],
+      [5, -19],
+      [-10, -90],
+      [-19, -9],
+      [0, 53],
+      [-12, 27],
+      [-32, 17],
+      [-35, -2],
+      [-7, 14],
+      [20, 16]
+    ],
+    [
+      [98234, 52111],
+      [16, -15],
+      [-81, -40],
+      [-44, -30],
+      [-64, -8],
+      [3, 14],
+      [30, 47],
+      [23, -1],
+      [29, 20],
+      [21, -3],
+      [67, 16]
+    ],
+    [
+      [95045, 51350],
+      [-5, -42],
+      [-33, -14],
+      [-16, -44],
+      [-66, -34],
+      [-18, -17],
+      [-47, -32],
+      [-45, -68],
+      [-14, -68],
+      [12, -28],
+      [-46, 5],
+      [-11, -7],
+      [-5, -29],
+      [7, -25],
+      [27, -24],
+      [29, -53],
+      [25, 15],
+      [26, 51],
+      [0, 15],
+      [48, 66],
+      [-2, 34],
+      [29, 9],
+      [71, -33],
+      [37, 17],
+      [3, 37],
+      [38, 50],
+      [30, -1],
+      [42, 24],
+      [54, 21],
+      [34, -18],
+      [89, 24],
+      [15, 61],
+      [12, 11],
+      [41, -22],
+      [50, -7],
+      [14, -34],
+      [43, -3],
+      [6, 12],
+      [4, 73],
+      [14, 3],
+      [35, -45],
+      [40, -27],
+      [40, 7],
+      [67, -13],
+      [123, -49],
+      [149, 60],
+      [8, 68],
+      [8, 27],
+      [56, 14],
+      [54, 3],
+      [70, -28],
+      [6, 6],
+      [83, 5],
+      [76, -1],
+      [77, -9],
+      [47, 1],
+      [116, 18],
+      [97, -12],
+      [26, 26],
+      [85, 26],
+      [47, 10],
+      [45, -6],
+      [55, 8],
+      [93, 18],
+      [119, 101],
+      [82, 37],
+      [31, 37],
+      [29, 48],
+      [51, 5],
+      [39, 21],
+      [76, 94],
+      [63, 18],
+      [58, 38],
+      [23, 7],
+      [20, -11],
+      [42, 18],
+      [14, -12],
+      [-29, -49],
+      [-22, -22],
+      [-66, -41],
+      [1, 50],
+      [-12, 15],
+      [-37, -15],
+      [-16, -30],
+      [0, -33],
+      [33, -46],
+      [36, -20],
+      [33, -1],
+      [-5, -32],
+      [17, -41],
+      [25, -24],
+      [35, 7],
+      [45, -11],
+      [29, -21],
+      [21, 1],
+      [20, 15],
+      [9, 19],
+      [22, 18],
+      [17, -3],
+      [31, -31],
+      [0, -40],
+      [39, -61],
+      [14, -14],
+      [25, -7],
+      [23, 13],
+      [13, 32],
+      [49, 1],
+      [-4, 28],
+      [30, 0],
+      [39, 19],
+      [29, 29],
+      [60, 20],
+      [11, 17],
+      [3, 43],
+      [74, 23],
+      [38, 1],
+      [18, -13],
+      [37, -2],
+      [25, -11],
+      [-33, -46],
+      [-55, -31],
+      [-60, -15],
+      [-174, -86],
+      [-159, -71],
+      [-523, -266],
+      [-138, -60],
+      [-193, -74],
+      [-319, -117],
+      [-43, -14],
+      [-177, -72],
+      [-112, -50],
+      [-166, -84],
+      [-79, -34],
+      [-285, -89],
+      [-100, -24],
+      [-83, -2],
+      [-24, 38],
+      [-60, -13],
+      [-75, -33],
+      [-109, -36],
+      [-208, -50],
+      [-40, 8],
+      [-50, 3],
+      [-67, -13],
+      [-201, 4],
+      [3, 16],
+      [-41, 0],
+      [-59, -15],
+      [-51, -19],
+      [-83, -41],
+      [-104, -40],
+      [4, 38],
+      [-32, 33],
+      [-97, -7],
+      [-21, 20],
+      [22, 31],
+      [-18, 26],
+      [-41, 9],
+      [-12, 21],
+      [-5, 30],
+      [19, 55],
+      [26, 32],
+      [-4, 49],
+      [-9, 21],
+      [15, 37],
+      [-14, 20]
+    ],
+    [
+      [83685, 54592],
+      [82, 37],
+      [135, 78],
+      [96, 66],
+      [88, 55],
+      [66, 48],
+      [67, 55],
+      [40, 17],
+      [45, 44],
+      [45, 63],
+      [43, 33],
+      [56, 57],
+      [38, 0],
+      [26, 27],
+      [64, 29],
+      [35, 30],
+      [40, 22],
+      [37, 11],
+      [55, 24],
+      [83, 20],
+      [19, 27],
+      [17, 64],
+      [14, 11],
+      [20, 49],
+      [60, 67],
+      [28, 12],
+      [3, 59],
+      [25, 53],
+      [56, 31],
+      [51, 10],
+      [88, 67],
+      [48, 13],
+      [93, 84],
+      [28, 34],
+      [4, 20],
+      [-15, 22],
+      [-12, 66],
+      [12, 37],
+      [-12, 28],
+      [-12, 2],
+      [-19, 35],
+      [-17, 45],
+      [-39, 4],
+      [12, 34],
+      [1, 59],
+      [-25, 59],
+      [-25, 23],
+      [-75, 27],
+      [-72, 47],
+      [-16, 24],
+      [-16, 188],
+      [-56, 15],
+      [-14, 40],
+      [17, 90],
+      [27, 43],
+      [-30, 240],
+      [-22, 59],
+      [94, 29],
+      [89, 19],
+      [77, 30],
+      [180, 61],
+      [105, 24],
+      [57, 19],
+      [93, 17],
+      [116, 42],
+      [162, 30],
+      [109, 13],
+      [30, -10],
+      [191, 14],
+      [21, -6],
+      [202, -8],
+      [31, -5],
+      [165, 17],
+      [75, 0],
+      [151, -23],
+      [54, -3],
+      [34, 10],
+      [100, -31],
+      [33, 0],
+      [55, -19],
+      [109, -15],
+      [59, -11],
+      [46, 5],
+      [6, -10],
+      [49, -18],
+      [31, -16],
+      [24, -39],
+      [88, -73],
+      [48, -20],
+      [95, -71],
+      [48, -19],
+      [32, -3],
+      [62, 40],
+      [45, 10],
+      [74, 29],
+      [41, 9],
+      [44, 18],
+      [93, 10],
+      [49, 1],
+      [20, -7],
+      [74, -2],
+      [94, 17],
+      [76, -7],
+      [55, 16],
+      [24, -5],
+      [35, 6],
+      [83, -18],
+      [62, -24],
+      [63, 0],
+      [21, 8],
+      [68, -10],
+      [55, 36],
+      [34, 17],
+      [50, 3],
+      [42, 14],
+      [24, 18],
+      [88, 10],
+      [48, 23],
+      [41, 33],
+      [29, 30],
+      [61, 2],
+      [25, 21],
+      [29, 35],
+      [50, 88],
+      [22, 30],
+      [44, 25],
+      [82, 64],
+      [58, 30],
+      [30, 27],
+      [17, -5],
+      [37, 16],
+      [27, 44],
+      [115, 76],
+      [77, 7],
+      [44, -31],
+      [27, -4],
+      [63, 2],
+      [69, 30],
+      [45, 12],
+      [33, 40],
+      [27, 75],
+      [8, 64],
+      [5, 125],
+      [-17, 174],
+      [-14, 87],
+      [-30, 128],
+      [-39, 55],
+      [-31, 31],
+      [-30, 15],
+      [1, 37],
+      [39, 37],
+      [34, 11],
+      [29, -7],
+      [16, -21],
+      [31, -5],
+      [41, 32],
+      [41, 26],
+      [24, 2],
+      [34, 24],
+      [4, 37],
+      [-16, 70],
+      [-1, 36],
+      [-22, 25],
+      [-44, -6],
+      [-28, 23],
+      [-81, 29],
+      [-30, -18],
+      [-26, 1],
+      [-19, 12],
+      [3, 37],
+      [-28, 35],
+      [-27, 10],
+      [-7, 24],
+      [6, 57],
+      [-13, 35],
+      [-105, 29],
+      [-1, 42],
+      [-11, 33],
+      [21, 83],
+      [80, 166],
+      [49, 12],
+      [76, -1],
+      [72, 28],
+      [29, 17],
+      [50, 46],
+      [86, 139],
+      [136, 93],
+      [82, 40],
+      [42, -1],
+      [15, -11],
+      [39, 16],
+      [68, 48],
+      [77, 68],
+      [94, 94],
+      [24, 99],
+      [79, 113],
+      [128, 129],
+      [383, 367],
+      [108, 94],
+      [185, 142],
+      [59, 51],
+      [-11, 26],
+      [46, 31],
+      [124, 71],
+      [50, 14],
+      [92, 35],
+      [210, 126],
+      [41, 30],
+      [23, 48],
+      [38, 15],
+      [271, 82],
+      [47, -4],
+      [185, -28],
+      [765, -29],
+      [268, -1],
+      [507, 25],
+      [465, 7],
+      [524, 17]
+    ],
+    [
+      [78217, 52933],
+      [17, -3],
+      [25, 17],
+      [-5, -59],
+      [-15, -22],
+      [-25, -1],
+      [-44, 25],
+      [-19, 20],
+      [32, 41],
+      [21, 0],
+      [13, -18]
+    ],
+    [
+      [77986, 53052],
+      [58, 13],
+      [-8, -16],
+      [-55, -62],
+      [-28, -14],
+      [-3, 47],
+      [18, 26],
+      [18, 6]
+    ],
+    [
+      [78025, 53139],
+      [39, 0],
+      [-35, -29],
+      [-8, -27],
+      [-15, -3],
+      [-24, 36],
+      [43, 23]
+    ],
+    [
+      [78006, 53213],
+      [9, -38],
+      [-49, 2],
+      [18, 35],
+      [22, 1]
+    ],
+    [
+      [76815, 53236],
+      [-4, -13],
+      [18, -52],
+      [68, -39],
+      [32, 2],
+      [31, -14],
+      [35, 3],
+      [28, 15],
+      [7, 25],
+      [21, -5],
+      [61, -52],
+      [104, -75],
+      [12, -18],
+      [69, -33],
+      [91, -33],
+      [78, -11],
+      [33, -17],
+      [36, -29],
+      [44, -69],
+      [28, -31],
+      [53, -43],
+      [56, -36],
+      [66, -25],
+      [68, 12],
+      [52, 37],
+      [24, 36],
+      [3, 40],
+      [-8, 31],
+      [12, 18],
+      [35, 10],
+      [26, -42],
+      [48, -61],
+      [17, -15],
+      [25, 0],
+      [41, 15],
+      [59, -12],
+      [13, -13],
+      [-1, -24],
+      [-19, -26],
+      [22, -49],
+      [41, -13],
+      [55, -77],
+      [76, -76],
+      [1, -8],
+      [110, -72],
+      [82, -40],
+      [61, -7],
+      [38, 13],
+      [55, 26],
+      [61, 43],
+      [68, 32],
+      [51, 9],
+      [80, -4],
+      [68, 15],
+      [114, 76],
+      [22, 18],
+      [31, 7],
+      [132, 52],
+      [153, 52],
+      [32, -3],
+      [56, -23],
+      [12, -17],
+      [38, -18],
+      [113, -20],
+      [31, 1],
+      [92, 29],
+      [53, 1],
+      [70, -22],
+      [63, 37],
+      [8, 10],
+      [78, 65],
+      [58, 23],
+      [63, 50],
+      [69, 68],
+      [61, 68],
+      [55, 23],
+      [64, 65],
+      [43, 61],
+      [101, 85],
+      [66, 52],
+      [96, 58],
+      [27, 24],
+      [43, -5],
+      [28, 8],
+      [120, 64],
+      [133, 78],
+      [38, 13],
+      [76, 42],
+      [51, 18],
+      [26, 19],
+      [138, 21],
+      [67, 16],
+      [159, 73],
+      [26, 30],
+      [30, 5],
+      [5, -13],
+      [45, 17],
+      [69, 17],
+      [258, 95],
+      [52, 26],
+      [65, 24]
+    ],
+    [
+      [968, 53907],
+      [-5, 19],
+      [-104, 100],
+      [-32, 1],
+      [-23, 15],
+      [-27, 40],
+      [-50, 63],
+      [-28, 56],
+      [9, 38],
+      [-8, 30],
+      [-11, 5],
+      [-10, 37],
+      [12, 9],
+      [-1, 47],
+      [-28, 40],
+      [-3, 56],
+      [-11, 21],
+      [-51, 59],
+      [11, 70],
+      [-10, 74],
+      [-35, 61],
+      [4, 8],
+      [6, 107],
+      [-8, 109],
+      [-13, 50],
+      [24, 53],
+      [2, 77],
+      [41, 121],
+      [17, 88],
+      [-20, 58],
+      [-1, 75],
+      [-22, 77],
+      [-7, 9],
+      [-63, 36],
+      [4, 36],
+      [-47, 108],
+      [-33, 23],
+      [-34, -18],
+      [-9, 5],
+      [-3, 43],
+      [-15, 91],
+      [-22, 61],
+      [-15, 22],
+      [-15, 45],
+      [97, 194],
+      [36, 86],
+      [34, 101],
+      [11, 22],
+      [38, 179],
+      [8, 66],
+      [-5, 47],
+      [20, 27],
+      [41, 147],
+      [12, 66],
+      [0, 32],
+      [24, 117],
+      [-12, 51],
+      [-26, 39],
+      [29, 51],
+      [27, 32],
+      [36, 10],
+      [22, 22],
+      [50, 93],
+      [52, 121],
+      [58, 166],
+      [41, 139],
+      [57, 279],
+      [-3, 16],
+      [21, 81],
+      [47, 259],
+      [33, 257],
+      [14, 120],
+      [17, 196],
+      [21, 173],
+      [-6, 55],
+      [16, 115],
+      [5, 66],
+      [-2, 22],
+      [8, 71],
+      [4, 77],
+      [-13, 23],
+      [1, 30],
+      [12, 44],
+      [-1, 27],
+      [17, 44],
+      [15, 97],
+      [15, 114],
+      [31, 33],
+      [-27, 32],
+      [0, 93],
+      [-3, 58],
+      [14, 76],
+      [21, 255],
+      [12, 67],
+      [-3, 26],
+      [-19, 36],
+      [13, 50],
+      [8, 87],
+      [-14, 63],
+      [-17, 22],
+      [3, 67],
+      [14, 84],
+      [23, 17],
+      [10, 30],
+      [31, 128],
+      [13, 69],
+      [3, 55],
+      [16, 83],
+      [20, 160],
+      [-26, 9],
+      [11, 69],
+      [42, 43],
+      [27, 130],
+      [13, 140],
+      [-9, 40],
+      [19, 160],
+      [-2, 92],
+      [-17, 51],
+      [-64, 7],
+      [52, 20],
+      [11, 18],
+      [15, 79],
+      [9, 112],
+      [-6, 47],
+      [-17, 46],
+      [-6, 56],
+      [19, 10],
+      [16, 42],
+      [18, 138],
+      [-17, 16],
+      [11, 37],
+      [22, 192],
+      [0, 118],
+      [-13, 62],
+      [-42, 60],
+      [-26, 12],
+      [2, 16],
+      [23, 36],
+      [14, 138],
+      [-2, 83],
+      [-9, 95],
+      [-22, 57],
+      [-25, 21],
+      [-1, 20],
+      [44, 57],
+      [23, 13],
+      [37, 7],
+      [18, 82],
+      [-3, 82],
+      [-7, 75],
+      [-26, 112],
+      [-22, 64],
+      [-28, 69],
+      [-67, 138],
+      [-26, 14],
+      [24, 18],
+      [24, -3],
+      [18, -28],
+      [-3, -16],
+      [15, -20],
+      [38, -5],
+      [65, -41],
+      [42, -56],
+      [24, -12],
+      [68, -18],
+      [22, 8],
+      [3, 23],
+      [-41, 32],
+      [-1, 18],
+      [47, 7],
+      [31, -5],
+      [52, 15],
+      [64, 28],
+      [43, -17],
+      [56, -3],
+      [58, 33],
+      [16, 14],
+      [56, -9],
+      [19, 30],
+      [7, 26],
+      [32, 6],
+      [36, -26],
+      [71, 49],
+      [1, 27]
+    ],
+    [
+      [99277, 52561],
+      [-13, -25],
+      [-19, 15],
+      [9, 79],
+      [17, 2],
+      [14, 30],
+      [-22, 24],
+      [-2, 25],
+      [14, 82],
+      [10, 27],
+      [29, 8],
+      [7, -36],
+      [-7, -138],
+      [6, -47],
+      [-39, -22],
+      [-4, -24]
+    ],
+    [
+      [99374, 52852],
+      [-11, 36],
+      [14, 37],
+      [7, 37],
+      [-39, 21],
+      [-30, 49],
+      [-6, 24],
+      [33, 7],
+      [18, -13],
+      [5, -27],
+      [-14, -21],
+      [24, -17],
+      [29, -7],
+      [18, -19],
+      [4, -41],
+      [-26, -59],
+      [-26, -7]
+    ],
+    [
+      [98893, 51884],
+      [18, 21],
+      [6, 49],
+      [29, 0],
+      [13, -29],
+      [-18, -44],
+      [-3, -28],
+      [8, -21],
+      [31, -28],
+      [-14, -33],
+      [-77, -14],
+      [-34, 18],
+      [-3, 17],
+      [14, 55],
+      [30, 37]
+    ],
+    [
+      [99572, 53181],
+      [-30, -33],
+      [6, -40],
+      [-7, -37],
+      [-34, -62],
+      [-14, 6],
+      [-4, 25],
+      [-20, 45],
+      [-19, -26],
+      [-25, -19],
+      [-4, 45],
+      [6, 23],
+      [18, 17],
+      [3, 36],
+      [-27, 40],
+      [-16, 13],
+      [-66, 10],
+      [-29, -41],
+      [0, -42],
+      [-14, -56],
+      [-9, -15],
+      [-22, 13],
+      [-1, 31],
+      [-52, 0],
+      [-58, 8],
+      [9, -58],
+      [36, 16],
+      [30, -20],
+      [10, -185],
+      [-82, -23],
+      [10, -38],
+      [47, -77],
+      [4, -46],
+      [-12, -45],
+      [6, -66],
+      [-23, -5],
+      [5, -28],
+      [-11, -36],
+      [-41, -31],
+      [1, -63],
+      [-36, -55],
+      [-16, -36],
+      [-81, 12],
+      [-53, -8],
+      [-129, -32],
+      [-118, -45],
+      [-61, -29],
+      [-98, -9],
+      [-112, -31],
+      [-44, -23],
+      [-10, 9],
+      [6, 31]
+    ],
+    [
+      [99766, 52643],
+      [-30, -9],
+      [-7, -20],
+      [-50, -37],
+      [-5, -18],
+      [-43, -16],
+      [-7, 18],
+      [12, 49],
+      [-30, 37],
+      [11, 39],
+      [-24, 79],
+      [9, 64],
+      [2, 74],
+      [-16, 63],
+      [-46, -16],
+      [-5, -80],
+      [14, -32],
+      [-1, -98],
+      [16, -19],
+      [-23, -70],
+      [7, -44],
+      [-8, -21],
+      [-22, 28],
+      [-22, 7],
+      [-39, -2],
+      [-18, -9],
+      [-17, -75],
+      [-32, 2],
+      [-30, -16],
+      [-25, 4],
+      [-22, 24],
+      [29, 28],
+      [21, -4],
+      [36, 20],
+      [-12, 64],
+      [-14, 12],
+      [0, 27],
+      [33, 41],
+      [4, 31],
+      [31, 62],
+      [17, 14],
+      [21, 75],
+      [3, 43],
+      [39, 38],
+      [73, 8],
+      [30, 83]
+    ],
+    [
+      [51923, 18869],
+      [36, 36],
+      [-1, 26],
+      [-11, 54],
+      [-11, 24],
+      [12, 19],
+      [46, 35],
+      [109, 5],
+      [55, 19],
+      [12, 12],
+      [-11, 34],
+      [30, 5],
+      [46, 22],
+      [-2, 15],
+      [21, 46],
+      [82, 65],
+      [-5, 15],
+      [33, 35],
+      [22, 13],
+      [52, 1],
+      [12, 8],
+      [9, 26],
+      [24, 16],
+      [98, 21],
+      [47, 16],
+      [32, 20],
+      [28, 25],
+      [3, 31],
+      [26, 11],
+      [10, -71],
+      [-29, -40],
+      [-48, -21],
+      [-202, -122],
+      [-137, -104],
+      [-136, -120],
+      [-118, -114],
+      [-171, -181],
+      [-147, -188],
+      [-71, -101],
+      [-64, -99],
+      [-56, -104],
+      [-19, -43],
+      [-8, -46],
+      [-73, -105],
+      [-58, -103],
+      [-94, -191],
+      [-65, -156],
+      [-138, -360],
+      [-53, -163],
+      [-41, -151],
+      [-44, -201],
+      [-25, -146],
+      [-14, -124],
+      [-11, -152],
+      [-4, -133],
+      [1, -139],
+      [15, -210],
+      [11, -96],
+      [25, -159],
+      [34, -182],
+      [60, -256],
+      [48, -176],
+      [10, -29],
+      [74, -304],
+      [65, -320],
+      [17, -100],
+      [23, -188],
+      [22, -262],
+      [13, -55],
+      [-13, 2],
+      [-15, 26],
+      [-4, 62],
+      [-15, 110],
+      [2, 78],
+      [-10, 94],
+      [-19, 145],
+      [-38, 207],
+      [-23, 80],
+      [-25, 52],
+      [-5, 71],
+      [-8, 56],
+      [-12, 37],
+      [-16, 30],
+      [-26, 98],
+      [-30, 16],
+      [-34, 72],
+      [4, 50],
+      [-15, 53],
+      [-15, 36],
+      [-25, 90],
+      [4, 47],
+      [-18, 87],
+      [-32, 25],
+      [-14, 34],
+      [11, 109],
+      [-11, 36],
+      [4, 36],
+      [-9, 32],
+      [-26, 31],
+      [7, 138],
+      [-4, 34],
+      [-11, 33],
+      [4, 111],
+      [-2, 268],
+      [7, 78],
+      [-7, 28],
+      [1, 157],
+      [23, 109],
+      [-17, 13],
+      [8, 61],
+      [14, 54],
+      [3, 66],
+      [12, 56],
+      [17, 23],
+      [-9, 48],
+      [-8, 16],
+      [9, 68],
+      [29, 76],
+      [19, 31],
+      [12, 39],
+      [0, 41],
+      [23, 74],
+      [44, 85],
+      [20, 61],
+      [31, 53],
+      [16, 35],
+      [-8, 18],
+      [47, 88],
+      [-11, 23],
+      [21, 63],
+      [32, -2],
+      [25, 47],
+      [6, 36],
+      [0, 35],
+      [-10, 24],
+      [24, 13],
+      [36, 69],
+      [8, 30],
+      [35, 8],
+      [31, 41],
+      [6, 21],
+      [45, 73],
+      [9, 49],
+      [11, 27],
+      [-11, 10],
+      [-51, -8],
+      [-12, 19],
+      [141, 38],
+      [25, 42],
+      [55, 120],
+      [-5, 27],
+      [57, 93],
+      [15, 56],
+      [-17, 11],
+      [16, 53],
+      [19, 46],
+      [10, -19],
+      [19, 10],
+      [10, 26],
+      [27, 22],
+      [11, 20],
+      [-1, 35],
+      [39, 48],
+      [29, 1],
+      [7, 102],
+      [14, 36],
+      [27, -13],
+      [14, -27],
+      [22, -17],
+      [29, 8]
+    ],
+    [
+      [57491, 22852],
+      [-28, -37],
+      [-26, -7],
+      [-43, 2],
+      [-76, 15],
+      [-131, 4],
+      [-103, -26],
+      [-141, -63],
+      [-413, -214],
+      [-273, -141],
+      [-175, -95],
+      [-67, -41],
+      [-73, -52],
+      [-44, -38],
+      [-27, -32],
+      [-29, -50],
+      [-13, -36],
+      [-26, 0],
+      [-31, -18],
+      [-32, -1],
+      [-8, 36],
+      [30, 45],
+      [24, 19],
+      [56, 64],
+      [33, 26],
+      [37, 75],
+      [26, 26],
+      [29, 3],
+      [20, -11],
+      [33, 6],
+      [37, 18],
+      [27, 23],
+      [-3, 39],
+      [28, 44],
+      [26, 17],
+      [23, -6],
+      [41, -30],
+      [39, 5],
+      [30, 14],
+      [-16, 46],
+      [-37, 6],
+      [-5, 17],
+      [-37, 49],
+      [-44, 1],
+      [-44, -28],
+      [-60, -21],
+      [-123, -38],
+      [-49, -11],
+      [-42, -19],
+      [-52, -1],
+      [-23, 14],
+      [-18, 44],
+      [36, 0],
+      [68, 89],
+      [48, 104],
+      [29, 175],
+      [-4, 72],
+      [-54, 131],
+      [-30, 31],
+      [-57, -34],
+      [-39, -16],
+      [-44, -27],
+      [-66, -89],
+      [-25, -66],
+      [-5, -42],
+      [-9, -18],
+      [-39, -26],
+      [-41, -11],
+      [-11, 4],
+      [-24, 51],
+      [-4, 36],
+      [-12, 12],
+      [-43, 7],
+      [-13, -39],
+      [-61, -64],
+      [-19, -51],
+      [4, -26],
+      [46, -48],
+      [12, -22],
+      [-12, -26],
+      [-35, -42],
+      [-20, -49],
+      [6, -38],
+      [29, -47],
+      [33, -25],
+      [44, -16],
+      [91, -21],
+      [-7, -24],
+      [-24, -46],
+      [-9, -46],
+      [21, -7],
+      [54, -37],
+      [6, -46],
+      [2, -123],
+      [-15, -71],
+      [1, -76],
+      [14, -26],
+      [19, -12],
+      [49, 11],
+      [46, 22],
+      [5, 40],
+      [0, 56],
+      [22, 24],
+      [48, -46],
+      [14, 4],
+      [86, -13],
+      [-72, -68],
+      [-31, -36],
+      [-32, -29],
+      [-414, -331],
+      [-104, -93],
+      [-53, -58],
+      [-27, -52],
+      [-124, -112],
+      [-88, -87],
+      [-62, -68],
+      [-47, -70],
+      [-23, -14],
+      [-81, -76],
+      [-44, -56],
+      [-10, -24],
+      [-63, -18],
+      [-44, -1],
+      [-87, -57],
+      [-152, -117],
+      [-455, -316],
+      [-133, -80],
+      [-217, -113],
+      [-143, -80],
+      [-217, -137],
+      [-49, -26],
+      [-45, -43],
+      [-48, -33],
+      [-61, -50],
+      [-34, -43],
+      [-37, -19],
+      [-55, -50],
+      [-6, 17],
+      [73, 84],
+      [124, 102],
+      [83, 43],
+      [16, 37],
+      [130, 88],
+      [76, 37],
+      [108, 70],
+      [25, 5],
+      [47, 27],
+      [40, 17],
+      [8, 20],
+      [-7, 17],
+      [5, 52],
+      [8, 22],
+      [-33, 21],
+      [-19, -27],
+      [-50, 11],
+      [-26, -9],
+      [-46, -34],
+      [-50, -27],
+      [-92, -34],
+      [-72, -45],
+      [-21, -16],
+      [-43, -17],
+      [-13, 1],
+      [-10, 53],
+      [37, 29],
+      [3, 24],
+      [-34, 47],
+      [41, 53],
+      [-11, 7],
+      [42, 57],
+      [2, 17],
+      [-21, 16],
+      [-54, -11],
+      [-48, -30],
+      [-21, 11],
+      [-36, -15],
+      [-31, -29],
+      [1, -67],
+      [-46, -10],
+      [-83, -36],
+      [-6, -17],
+      [-181, -118],
+      [-27, -9],
+      [10, 27],
+      [5, 41],
+      [-19, 36],
+      [-38, 10],
+      [24, 26],
+      [-3, 27],
+      [-13, 6],
+      [-73, 18],
+      [-33, -2],
+      [-18, 59],
+      [26, 49],
+      [-4, 23],
+      [-31, 20],
+      [-12, 47],
+      [-18, 6],
+      [-102, -40],
+      [-29, -32],
+      [12, -23],
+      [43, -48],
+      [2, -36],
+      [34, -25],
+      [9, -21],
+      [-23, -36],
+      [22, -91],
+      [6, -6],
+      [63, 2],
+      [17, -5],
+      [7, -29],
+      [73, -41],
+      [14, -49],
+      [16, -23],
+      [104, -89],
+      [56, -59],
+      [33, -46],
+      [-3, -17],
+      [-107, -53],
+      [-38, -34],
+      [-43, -26],
+      [-29, -9],
+      [-73, -41],
+      [-20, -23],
+      [-56, -36],
+      [-94, -19],
+      [-40, -29],
+      [-30, 30],
+      [-18, -12],
+      [-13, 16],
+      [10, 52],
+      [-11, 77],
+      [-8, 17],
+      [-23, 5],
+      [-49, 0],
+      [-25, 8],
+      [-26, -15],
+      [-26, -56],
+      [-9, -48],
+      [8, -103],
+      [-2, -30],
+      [-33, -55],
+      [7, -20],
+      [35, -67],
+      [0, -14],
+      [-25, -66],
+      [-78, -77],
+      [-56, -44],
+      [-48, -59],
+      [-23, -14],
+      [-45, -59],
+      [-52, -1],
+      [-70, 36],
+      [-13, -4],
+      [-37, -29],
+      [-3, -18],
+      [11, -25],
+      [-24, -58],
+      [8, -78],
+      [10, -30],
+      [-9, -21],
+      [-33, -29],
+      [-25, -65],
+      [-25, -23],
+      [-86, -161],
+      [-14, -9],
+      [-12, -51],
+      [-16, -13],
+      [-20, -35],
+      [-55, -124],
+      [-5, -18],
+      [-41, -5],
+      [-29, 9],
+      [-6, 45],
+      [-24, 36],
+      [-18, 46],
+      [-43, 14],
+      [-40, -9],
+      [-55, -26],
+      [-55, -46],
+      [-11, 3],
+      [-35, -32],
+      [-23, -61],
+      [-3, -78],
+      [13, -41],
+      [33, -63],
+      [40, -41],
+      [57, -32],
+      [116, -41],
+      [-11, -43],
+      [-12, -2],
+      [-56, -163],
+      [-4, -24],
+      [8, -26],
+      [-51, -58],
+      [-28, -111],
+      [-13, -24],
+      [-7, -37],
+      [-6, -62],
+      [-16, -51],
+      [-12, -20],
+      [-12, -64],
+      [4, -32],
+      [-65, -208],
+      [-15, -22],
+      [-32, -19],
+      [-38, 0],
+      [-60, -40],
+      [-47, -58],
+      [-45, 9],
+      [-23, 15],
+      [34, 19],
+      [17, 33],
+      [36, 9],
+      [-9, 35],
+      [7, 14],
+      [28, 27],
+      [-6, 51],
+      [-27, 20],
+      [-24, -13],
+      [-11, -22],
+      [-33, -44],
+      [-61, -50],
+      [-24, -15],
+      [-47, -62],
+      [-24, 5],
+      [-27, -13],
+      [-7, -28],
+      [2, -45],
+      [19, -25],
+      [59, -2],
+      [43, -9],
+      [24, -15],
+      [34, -9],
+      [43, 5],
+      [19, 10],
+      [18, 23],
+      [28, 16],
+      [33, 7],
+      [32, 23],
+      [48, 4],
+      [4, -16],
+      [-23, -140],
+      [-19, -145],
+      [2, -72],
+      [-16, -3],
+      [-8, -39],
+      [-10, -10],
+      [-35, 17],
+      [-20, -3],
+      [-8, -18],
+      [5, -41],
+      [29, -30],
+      [-18, -21],
+      [1, -58],
+      [17, -5],
+      [8, -25],
+      [-10, -60],
+      [-10, 4],
+      [-98, -2],
+      [-24, -10],
+      [-11, -14],
+      [8, -24],
+      [3, -39],
+      [-11, -67],
+      [27, -82],
+      [1, -13],
+      [-22, -32],
+      [0, -52],
+      [-12, -9],
+      [-9, -56],
+      [20, -36],
+      [28, -7],
+      [52, -54],
+      [47, -101],
+      [24, -12],
+      [6, -45],
+      [2, -78],
+      [42, -193],
+      [-2, -61],
+      [33, -93],
+      [21, -48],
+      [-10, -84],
+      [-16, -35],
+      [0, -30],
+      [8, -25],
+      [-17, -36],
+      [-11, -9],
+      [7, -43],
+      [22, -9],
+      [27, 3],
+      [-3, -36],
+      [-16, -40],
+      [29, -20],
+      [20, 20],
+      [33, -20],
+      [15, -37],
+      [-9, -35],
+      [-27, -38],
+      [-6, -66],
+      [8, -23],
+      [29, 24],
+      [5, 22],
+      [21, 20],
+      [27, 7],
+      [25, -22],
+      [-12, -48],
+      [-30, -33],
+      [11, -18],
+      [-1, -47],
+      [7, -64],
+      [22, -5],
+      [17, 17],
+      [20, 4],
+      [9, -52],
+      [-26, -43],
+      [0, -19],
+      [31, -66],
+      [15, -4],
+      [1, -46],
+      [-20, -58],
+      [19, -43],
+      [21, -36],
+      [4, -27],
+      [-21, -9],
+      [-2, -14],
+      [29, -41],
+      [16, -15],
+      [45, -15],
+      [72, -2],
+      [16, -6],
+      [9, -89],
+      [-19, -29],
+      [-18, 1],
+      [-21, -16],
+      [13, -71],
+      [19, -11],
+      [24, 3],
+      [40, 18],
+      [22, 36],
+      [0, 23],
+      [-18, 53],
+      [-19, 21],
+      [33, 27],
+      [24, -4],
+      [-3, -59],
+      [3, -53],
+      [12, -118],
+      [-51, -20],
+      [-103, -10],
+      [-80, -18],
+      [-144, -52],
+      [-26, -39],
+      [-8, -32],
+      [0, -46],
+      [-77, -72],
+      [-165, 60],
+      [-27, 18],
+      [-133, 128],
+      [-159, 213],
+      [-6, 29],
+      [-404, 78],
+      [-223, -9],
+      [-6, -12],
+      [-61, -32],
+      [-367, 77],
+      [-43, 28],
+      [-227, 183],
+      [-97, 136],
+      [-51, 29],
+      [-222, 86],
+      [-70, 5],
+      [-18, -23],
+      [-136, 68],
+      [-84, 136],
+      [-105, 96],
+      [-28, 4],
+      [-72, -12],
+      [-347, 103],
+      [-108, 80],
+      [-116, 301],
+      [-76, 332],
+      [-62, 249],
+      [-49, 139],
+      [-99, 160],
+      [-107, 70],
+      [-125, 224],
+      [-11, 100],
+      [42, 79],
+      [6, 207],
+      [-28, 186],
+      [-20, 36],
+      [-20, 11],
+      [-15, -8],
+      [-44, 31],
+      [-65, 72],
+      [-15, 25],
+      [57, 102],
+      [27, 86],
+      [9, 49],
+      [14, 191],
+      [-73, 222],
+      [-41, 81],
+      [-110, 90],
+      [-42, 7],
+      [-7, -15],
+      [-73, 0],
+      [-330, 344],
+      [-61, 80],
+      [-47, 146],
+      [-5, 28],
+      [16, 73],
+      [-49, 45],
+      [-129, 183],
+      [-122, 255],
+      [-45, 105],
+      [-13, 26],
+      [-104, 52],
+      [-51, 20],
+      [-58, 36],
+      [-103, 126],
+      [-62, 89],
+      [-104, 332],
+      [25, 232],
+      [-9, 7],
+      [-90, 31],
+      [-34, 55],
+      [-46, 153],
+      [-31, 30],
+      [-100, 135],
+      [-18, 72],
+      [-4, 37],
+      [10, 29],
+      [-2, 60],
+      [-52, 163],
+      [-21, 51],
+      [-80, 92],
+      [-93, 136],
+      [-22, 70],
+      [7, 102],
+      [4, 7],
+      [-34, 219],
+      [-20, 67],
+      [-229, 371],
+      [-291, 254],
+      [-77, 40],
+      [-78, 129],
+      [-11, 38],
+      [-31, 73],
+      [-50, 27],
+      [-94, 11],
+      [-182, 129],
+      [-22, 236],
+      [-6, 15],
+      [-119, 88],
+      [-55, 7],
+      [-112, 241],
+      [-95, 32],
+      [-318, 2],
+      [-17, -31],
+      [-21, -11],
+      [-260, 70],
+      [-181, 36],
+      [-114, 13],
+      [-178, -29],
+      [-18, -12],
+      [-123, 19],
+      [-272, 154],
+      [-37, 25],
+      [-28, 29],
+      [-49, 0],
+      [-77, -80],
+      [-41, -207],
+      [-33, 9],
+      [-55, 30],
+      [-98, 25],
+      [-26, -13],
+      [-101, -82],
+      [-108, -2],
+      [-97, -28],
+      [-46, -38],
+      [-16, -67],
+      [-87, -259],
+      [-68, -127],
+      [-50, -51],
+      [-43, -213],
+      [-3, -73],
+      [-79, -140],
+      [-37, -174],
+      [18, -98],
+      [27, -11],
+      [9, -41],
+      [-21, -26],
+      [-136, -96],
+      [-83, -39],
+      [-202, -322],
+      [-21, -122],
+      [-76, -32],
+      [-14, -2],
+      [-220, 46],
+      [-189, 86],
+      [-162, 129],
+      [0, 25],
+      [-60, 85],
+      [-42, 47],
+      [-62, 44],
+      [-95, 27],
+      [-32, -6],
+      [-163, 52],
+      [-99, 103],
+      [-45, 96],
+      [-86, 39],
+      [-161, 39],
+      [-71, 12],
+      [-116, 40],
+      [-220, 174],
+      [-45, 49],
+      [-85, 150],
+      [-42, 87],
+      [-52, 44],
+      [-50, 13],
+      [-57, 22],
+      [-136, 82],
+      [-225, 204],
+      [-43, 91],
+      [-21, 98],
+      [1, 32],
+      [-31, 107],
+      [-125, 250],
+      [-64, 101],
+      [-14, 2],
+      [-9, 25],
+      [-26, 247],
+      [15, 186],
+      [-3, 219],
+      [-40, 142],
+      [-98, 165],
+      [-36, 34],
+      [-146, 191],
+      [-25, 277],
+      [-106, 250],
+      [-79, 28],
+      [-134, 186],
+      [-158, 167],
+      [-153, 125],
+      [-72, -2],
+      [-29, 9],
+      [-240, 142],
+      [-32, 87],
+      [-270, 243],
+      [-39, 76],
+      [-4, 42],
+      [-10, 53],
+      [-33, 64],
+      [-85, 84],
+      [-113, 51],
+      [-76, 72],
+      [-81, 93],
+      [-141, 219],
+      [-57, 29],
+      [-43, 31],
+      [-107, 159],
+      [-49, 44],
+      [-172, 56],
+      [-62, 26],
+      [-130, 98],
+      [-29, 40],
+      [-66, 171],
+      [-192, 390],
+      [-45, 75],
+      [-68, 51],
+      [-35, 12],
+      [-67, -13],
+      [-104, 81]
+    ],
+    [
+      [20433, 4513],
+      [11, -17],
+      [11, -83],
+      [-14, -56],
+      [-19, -24],
+      [-14, 7],
+      [-42, 51],
+      [-11, 48],
+      [44, 76],
+      [34, -2]
+    ],
+    [
+      [21804, 4722],
+      [18, 28],
+      [37, -16],
+      [2, -37],
+      [-8, -25],
+      [-15, -18],
+      [-15, -4],
+      [-14, 22],
+      [4, 23],
+      [-9, 27]
+    ],
+    [
+      [21446, 4915],
+      [-27, 47],
+      [16, 7],
+      [23, -23],
+      [12, 13],
+      [16, 120],
+      [21, -19],
+      [3, -43],
+      [-17, -19],
+      [4, -62],
+      [23, -13],
+      [-4, 32],
+      [20, 5],
+      [1, -61],
+      [-12, -40],
+      [-21, 17],
+      [-17, -13],
+      [4, -45],
+      [-38, -80],
+      [-26, -30],
+      [-21, -86],
+      [-2, -49],
+      [-10, -15],
+      [-18, 34],
+      [-3, 39],
+      [11, 14],
+      [15, 53],
+      [16, 42],
+      [22, 32],
+      [-10, 17],
+      [-17, -15],
+      [-21, 6],
+      [-16, 63],
+      [0, 12],
+      [30, 56],
+      [27, -26],
+      [5, -25],
+      [19, 17],
+      [-8, 38]
+    ],
+    [
+      [21722, 4862],
+      [33, 11],
+      [23, -16],
+      [15, -82],
+      [-39, -47],
+      [-16, 4],
+      [-1, 31],
+      [12, 33],
+      [-4, 24],
+      [-19, 13],
+      [-4, 29]
+    ],
+    [
+      [21666, 4996],
+      [17, -9],
+      [9, -43],
+      [-12, -38],
+      [2, -26],
+      [27, -25],
+      [-9, -22],
+      [-15, 18],
+      [-17, -2],
+      [-26, -33],
+      [-12, 31],
+      [-1, 60],
+      [17, 53],
+      [1, 35],
+      [14, 81],
+      [11, -19],
+      [-6, -61]
+    ],
+    [
+      [20658, 4760],
+      [13, -18],
+      [22, -4],
+      [42, -28],
+      [14, -39],
+      [-14, -11],
+      [-13, 12],
+      [2, 20],
+      [-11, 19],
+      [-18, -5],
+      [-32, -64],
+      [-13, 4],
+      [-29, 42],
+      [-4, 17],
+      [-16, 12],
+      [-17, -2],
+      [-8, 16],
+      [3, 23],
+      [26, 25],
+      [43, -12],
+      [10, -7]
+    ],
+    [
+      [21194, 5067],
+      [-12, 16],
+      [-15, -16],
+      [-3, -36],
+      [11, -33],
+      [20, -16],
+      [29, -68],
+      [1, -14],
+      [-10, -64],
+      [-65, 24],
+      [-11, 13],
+      [-12, 41],
+      [-29, -23],
+      [-8, -74],
+      [-20, 59],
+      [-13, 18],
+      [-12, 103],
+      [-11, 27],
+      [18, 79],
+      [37, 32],
+      [21, 0],
+      [12, -17],
+      [3, -46],
+      [17, 8],
+      [13, 52],
+      [27, -6],
+      [2, -21],
+      [46, -18],
+      [26, 34],
+      [13, -1],
+      [21, -63],
+      [-8, -62],
+      [-16, 6],
+      [-12, 29],
+      [-25, 9],
+      [-15, -14],
+      [-22, 19],
+      [2, 23]
+    ],
+    [
+      [21311, 5242],
+      [35, 2],
+      [8, -74],
+      [-4, -13],
+      [-25, 12],
+      [-55, -9],
+      [-17, 29],
+      [9, 30],
+      [23, 26],
+      [26, -3]
+    ],
+    [
+      [18868, 3344],
+      [21, -10],
+      [20, -45],
+      [21, 15],
+      [7, -14],
+      [-5, -28],
+      [-43, -40],
+      [-21, 8],
+      [-27, -48],
+      [-15, 29],
+      [-39, -5],
+      [-28, -24],
+      [-39, 89],
+      [9, 63],
+      [42, 59],
+      [53, 0],
+      [0, -39],
+      [22, -24],
+      [22, 14]
+    ],
+    [
+      [19122, 3282],
+      [20, -33],
+      [-4, -12],
+      [-38, 5],
+      [-21, 9],
+      [-43, -13],
+      [-6, 15],
+      [68, 25],
+      [24, 4]
+    ],
+    [
+      [19257, 3344],
+      [18, 5],
+      [11, -29],
+      [-12, -41],
+      [-42, -18],
+      [-77, 16],
+      [-10, 15],
+      [9, 19],
+      [26, 20],
+      [56, -4],
+      [21, 17]
+    ],
+    [
+      [18981, 3508],
+      [21, -3],
+      [1, -16],
+      [-34, -36],
+      [4, -17],
+      [22, -29],
+      [51, 5],
+      [12, -17],
+      [-6, -24],
+      [-37, 2],
+      [-27, -86],
+      [-12, -6],
+      [-28, 26],
+      [-11, 78],
+      [24, 38],
+      [-22, 2],
+      [-20, -7],
+      [-9, 16],
+      [2, 25],
+      [16, 41],
+      [24, -13],
+      [29, 21]
+    ],
+    [
+      [20241, 3902],
+      [106, -29],
+      [18, -27],
+      [7, -38],
+      [-25, -32],
+      [-57, 29],
+      [-14, -35],
+      [-10, 1],
+      [-44, 52],
+      [7, 79],
+      [12, 0]
+    ],
+    [
+      [15366, 10776],
+      [8, 20],
+      [1, 48],
+      [23, 43],
+      [28, -9],
+      [29, -127],
+      [76, -94],
+      [91, -35],
+      [52, -25],
+      [8, -20],
+      [32, -47],
+      [-15, -5],
+      [-82, 20],
+      [-23, -20],
+      [-17, -2],
+      [-13, 20],
+      [-55, 56],
+      [-21, 39],
+      [-56, 89],
+      [-15, 1],
+      [-52, 29],
+      [1, 19]
+    ],
+    [
+      [18395, 10390],
+      [0, -15],
+      [21, -7],
+      [5, -41],
+      [-3, -70],
+      [19, -73],
+      [27, -29],
+      [20, 1],
+      [-1, -53],
+      [-10, -19],
+      [-49, -18],
+      [-24, 6],
+      [-61, -38],
+      [-42, -33],
+      [-20, -33],
+      [-4, -18],
+      [20, -39],
+      [-12, -27],
+      [-39, -3],
+      [-22, 49],
+      [-21, 20],
+      [-57, 42],
+      [-24, 9],
+      [-30, -11],
+      [-43, -2],
+      [-14, 23],
+      [-30, 19],
+      [-20, 2],
+      [-17, 28],
+      [-40, 50],
+      [-44, 36],
+      [-48, -7],
+      [-9, 5],
+      [-50, 73],
+      [-27, 6],
+      [-13, 11],
+      [2, 23],
+      [-14, 63],
+      [-27, 54],
+      [0, 13],
+      [20, 24],
+      [23, 17],
+      [46, 1],
+      [39, -3],
+      [26, -15],
+      [45, -13],
+      [37, 11],
+      [13, 18],
+      [0, 37],
+      [-11, 18],
+      [27, 43],
+      [41, 18],
+      [34, 0],
+      [5, 45],
+      [26, 41],
+      [54, -37],
+      [22, 24],
+      [44, 22],
+      [10, 10],
+      [0, 33],
+      [15, -4],
+      [7, -54],
+      [19, -61],
+      [31, -7],
+      [34, 7],
+      [17, 28],
+      [71, -34],
+      [14, -38],
+      [-1, -79],
+      [-7, -49]
+    ],
+    [
+      [31704, 13043],
+      [29, -56],
+      [28, 19],
+      [16, 53],
+      [24, -9],
+      [31, 18],
+      [40, -5],
+      [20, 7],
+      [5, 15],
+      [33, 34],
+      [17, 8],
+      [15, -24],
+      [-1, -32],
+      [11, -24],
+      [63, -40],
+      [21, -43],
+      [48, -24],
+      [52, -62],
+      [43, -31],
+      [8, -28],
+      [44, -93],
+      [22, -17],
+      [32, -17],
+      [24, -43],
+      [-12, -17],
+      [-28, 41],
+      [-36, 27],
+      [-31, 12],
+      [-25, 22],
+      [-36, 65],
+      [-19, 24],
+      [-40, 14],
+      [-32, 37],
+      [-24, 1],
+      [-6, -22],
+      [36, -36],
+      [36, -26],
+      [18, -29],
+      [-12, -30],
+      [26, -24],
+      [67, -45],
+      [14, -1],
+      [38, -18],
+      [14, -48],
+      [26, -33],
+      [24, -16],
+      [28, -33],
+      [-31, -14],
+      [6, -13],
+      [53, -60],
+      [9, -23],
+      [-17, -80],
+      [-8, -8],
+      [-31, 11],
+      [-25, -25],
+      [18, -18],
+      [7, -57],
+      [-2, -55],
+      [-7, -34],
+      [-22, -76],
+      [-27, -47],
+      [7, -30],
+      [-23, -68],
+      [-1, -20],
+      [-26, -27],
+      [-19, 1],
+      [-44, 68],
+      [-50, 114],
+      [-1, 59],
+      [5, 31],
+      [15, 36],
+      [-20, 15],
+      [-16, -2],
+      [-23, 56],
+      [19, 20],
+      [6, -16],
+      [24, -6],
+      [1, 26],
+      [-107, 83],
+      [-3, 24],
+      [-18, 25],
+      [-46, 35],
+      [-37, 66],
+      [-29, 27],
+      [-12, 36],
+      [-1, 30],
+      [-18, 50],
+      [-28, 43],
+      [-16, 17],
+      [-37, 79],
+      [-17, 20],
+      [-29, 50],
+      [-10, 41],
+      [-61, 62],
+      [-14, 0],
+      [-24, 23],
+      [-40, 59],
+      [-42, 82],
+      [-11, 47],
+      [96, -50],
+      [26, -34],
+      [27, 2],
+      [23, -46]
+    ],
+    [
+      [34482, 10824],
+      [-1, -14],
+      [28, -44],
+      [27, -5],
+      [-7, -72],
+      [-38, -28],
+      [-73, 17],
+      [-17, 10],
+      [-6, 25],
+      [24, 42],
+      [50, 72],
+      [13, -3]
+    ],
+    [
+      [34095, 11052],
+      [32, -19],
+      [30, -6],
+      [18, -15],
+      [-8, -37],
+      [22, -60],
+      [0, -31],
+      [17, -80],
+      [-36, 18],
+      [-28, 27],
+      [-41, 68],
+      [-12, 11],
+      [-35, 72],
+      [-17, 62],
+      [22, 6],
+      [36, -16]
+    ],
+    [
+      [22578, 6848],
+      [-10, -14],
+      [-31, -6],
+      [-18, -31],
+      [-69, -24],
+      [-3, 18],
+      [12, 34],
+      [15, 22],
+      [46, 14],
+      [32, 3],
+      [26, -16]
+    ],
+    [
+      [16890, 14078],
+      [62, -7],
+      [39, 4],
+      [76, -38],
+      [39, -7],
+      [2, -11],
+      [-35, -129],
+      [-28, -45],
+      [-12, 1],
+      [-28, 23],
+      [-30, 11],
+      [-58, -1],
+      [-40, -13],
+      [-27, -16],
+      [-23, -45],
+      [-37, -46],
+      [-15, -45],
+      [3, -70],
+      [-27, -46],
+      [-41, 22],
+      [4, 24],
+      [-20, 79],
+      [-16, 42],
+      [-43, 64],
+      [-29, 21],
+      [-12, 23],
+      [-26, 18],
+      [-26, -7],
+      [-27, 3],
+      [-14, 71],
+      [-23, 56],
+      [-24, 34],
+      [-48, 50],
+      [-114, 74],
+      [-38, 12],
+      [-50, 2],
+      [-63, -43],
+      [-9, -35],
+      [-16, -23],
+      [-38, -31],
+      [-12, -1],
+      [-36, 35],
+      [-38, 27],
+      [-27, 13],
+      [-30, 86],
+      [-8, 58],
+      [8, 112],
+      [17, 47],
+      [14, 23],
+      [6, 30],
+      [-3, 63],
+      [10, 9],
+      [-4, 67],
+      [28, 2],
+      [8, -18],
+      [-5, -74],
+      [15, -35],
+      [32, -26],
+      [51, -36],
+      [66, -31],
+      [58, -34],
+      [35, -13],
+      [16, 1],
+      [79, 86],
+      [35, 30],
+      [44, 27],
+      [76, -16],
+      [9, -22],
+      [30, -49],
+      [29, -16],
+      [20, -106],
+      [-2, -39],
+      [14, -18],
+      [38, -22],
+      [18, -18],
+      [80, -18],
+      [24, -30],
+      [12, -36],
+      [49, -20],
+      [39, -3],
+      [17, -11]
+    ],
+    [
+      [19371, 14564],
+      [27, 20],
+      [17, -14],
+      [17, 1],
+      [18, 18],
+      [11, -8],
+      [15, -36],
+      [2, -50],
+      [-12, -11],
+      [-35, 0],
+      [-53, -15],
+      [-26, 16],
+      [-3, 32],
+      [22, 47]
+    ],
+    [
+      [17272, 16037],
+      [19, 36],
+      [28, 17],
+      [26, -5],
+      [18, -18],
+      [11, -24],
+      [4, -39],
+      [-14, -44],
+      [-30, -28],
+      [-36, 10],
+      [-26, 38],
+      [0, 57]
+    ],
+    [
+      [17014, 16933],
+      [17, 13],
+      [3, -29],
+      [-13, -7],
+      [-7, 23]
+    ],
+    [
+      [18019, 17553],
+      [4, -14],
+      [-26, -19],
+      [-8, -27],
+      [-17, 3],
+      [-3, 19],
+      [26, 30],
+      [24, 8]
+    ],
+    [
+      [32789, 10839],
+      [31, -4],
+      [19, 30],
+      [22, 14],
+      [5, -17],
+      [-14, -23],
+      [-16, -46],
+      [-8, -51],
+      [-32, -3],
+      [-22, 49],
+      [-8, 38],
+      [23, 13]
+    ],
+    [
+      [32801, 11032],
+      [15, -17],
+      [7, -56],
+      [-46, 40],
+      [-22, 0],
+      [-39, 57],
+      [7, 14],
+      [-4, 25],
+      [-36, 51],
+      [-14, 50],
+      [-32, 10],
+      [-21, 63],
+      [19, 86],
+      [-7, 21],
+      [-17, 15],
+      [0, 16],
+      [44, -37],
+      [41, 2],
+      [-1, 38],
+      [-41, 38],
+      [-25, 3],
+      [-79, 40],
+      [-22, 16],
+      [-12, 37],
+      [-26, 21],
+      [-36, 11],
+      [-32, 39],
+      [-52, 109],
+      [-4, 20],
+      [12, 67],
+      [20, 19],
+      [71, -23],
+      [7, 15],
+      [-12, 25],
+      [-37, 1],
+      [-34, 14],
+      [21, 12],
+      [27, -6],
+      [12, 27],
+      [-11, 21],
+      [32, -3],
+      [35, -24],
+      [75, -71],
+      [25, -34],
+      [1, -28],
+      [33, 3],
+      [-6, 39],
+      [-13, 26],
+      [-14, 4],
+      [6, 24],
+      [25, -5],
+      [36, 3],
+      [12, -23],
+      [-1, -28],
+      [24, -51],
+      [26, -25],
+      [27, -46],
+      [0, -26],
+      [-49, -32],
+      [5, -76],
+      [7, -23],
+      [20, -10],
+      [27, -28],
+      [-20, -23],
+      [4, -64],
+      [46, -4],
+      [17, -21],
+      [11, -105],
+      [2, -33],
+      [-16, -21],
+      [22, -28],
+      [20, -77],
+      [-8, -24],
+      [-17, -2],
+      [-20, 22],
+      [-10, 50],
+      [-16, 31],
+      [-22, 25],
+      [-14, -9],
+      [10, -50],
+      [-25, -41],
+      [13, -13],
+      [25, 12],
+      [26, -62],
+      [-2, -13]
+    ],
+    [
+      [33250, 12032],
+      [11, -20],
+      [-17, -49],
+      [-15, -16],
+      [-16, -59],
+      [-31, -48],
+      [-30, -2],
+      [-48, -29],
+      [-26, -11],
+      [-27, 26],
+      [-12, 25],
+      [11, 41],
+      [-63, 40],
+      [-46, 15],
+      [-37, 37],
+      [-13, 22],
+      [-27, 26],
+      [-16, -40],
+      [3, -22],
+      [21, -31],
+      [23, 12],
+      [0, 22],
+      [31, -36],
+      [5, -29],
+      [13, -33],
+      [39, 12],
+      [30, -9],
+      [43, -86],
+      [-25, -6],
+      [24, -36],
+      [-4, -43],
+      [-12, -25],
+      [-70, -21],
+      [-23, 18],
+      [-17, -13],
+      [-2, -53],
+      [-15, -32],
+      [-37, -28],
+      [-31, -5],
+      [-41, 88],
+      [-1, 15],
+      [-18, 49],
+      [-21, 30],
+      [-21, 18],
+      [-12, 24],
+      [-38, 137],
+      [-16, 25],
+      [-19, -53],
+      [-20, 8],
+      [-39, 1],
+      [-47, 55],
+      [0, 17],
+      [-21, 29],
+      [-81, 32],
+      [-7, 39],
+      [6, 19],
+      [41, 57],
+      [90, 20],
+      [40, 18],
+      [86, 10],
+      [53, 14],
+      [6, 20],
+      [89, 50],
+      [70, -33],
+      [13, -10],
+      [38, -46],
+      [24, -45],
+      [22, -10],
+      [38, 14],
+      [41, -23],
+      [24, -34],
+      [47, -11],
+      [20, 0],
+      [10, -23],
+      [27, -23],
+      [23, 8]
+    ],
+    [
+      [34218, 11014],
+      [32, -6],
+      [18, 4],
+      [21, -25],
+      [33, 8],
+      [44, -27],
+      [-5, -16],
+      [43, -84],
+      [8, -27],
+      [-1, -39],
+      [-41, -32],
+      [-32, 12],
+      [-23, -57],
+      [-26, 19],
+      [6, 21],
+      [-4, 50],
+      [-14, 13],
+      [-3, 21],
+      [15, 11],
+      [-3, 21],
+      [-37, 21],
+      [-29, 57],
+      [-7, 39],
+      [5, 16]
+    ],
+    [
+      [33336, 10757],
+      [39, -17],
+      [12, -35],
+      [0, -22],
+      [-11, -46],
+      [-24, 8],
+      [-10, -16],
+      [-9, -44],
+      [10, -11],
+      [25, 10],
+      [10, -33],
+      [-27, -42],
+      [-17, -67],
+      [5, -37],
+      [15, -57],
+      [-14, 1],
+      [-46, 39],
+      [1, 74],
+      [-9, 38],
+      [-19, 28],
+      [-62, 14],
+      [-16, -29],
+      [-19, 89],
+      [3, 29],
+      [53, 27],
+      [20, -4],
+      [9, -33],
+      [-12, -28],
+      [3, -24],
+      [17, -7],
+      [13, 29],
+      [5, 28],
+      [-7, 43],
+      [26, -3],
+      [3, 28],
+      [-3, 34],
+      [6, 16],
+      [30, 20]
+    ],
+    [
+      [32902, 11453],
+      [15, 21],
+      [78, 27],
+      [37, 27],
+      [43, 19],
+      [13, 20],
+      [21, -6],
+      [56, -47],
+      [15, -5],
+      [35, -45],
+      [5, -40],
+      [13, -24],
+      [91, -53],
+      [19, -5],
+      [24, 22],
+      [128, -42],
+      [37, -32],
+      [34, -16],
+      [57, -42],
+      [45, -95],
+      [12, -13],
+      [23, 19],
+      [23, -10],
+      [42, -60],
+      [24, -20],
+      [65, -8],
+      [35, -24],
+      [-7, -28],
+      [-46, 19],
+      [-39, 1],
+      [-7, -18],
+      [25, -28],
+      [26, -14],
+      [-7, -13],
+      [-67, -62],
+      [2, -10],
+      [43, 9],
+      [43, 54],
+      [8, 1],
+      [31, -31],
+      [30, 6],
+      [49, -61],
+      [15, 0],
+      [4, -23],
+      [-5, -32],
+      [-34, -15],
+      [14, -25],
+      [43, 6],
+      [14, 19],
+      [-10, 37],
+      [6, 52],
+      [22, -8],
+      [26, -42],
+      [14, -30],
+      [2, -19],
+      [-13, -27],
+      [8, -29],
+      [11, 3],
+      [5, -41],
+      [-4, -64],
+      [-30, -66],
+      [8, -14],
+      [26, 14],
+      [21, 80],
+      [27, 9],
+      [74, -174],
+      [15, -12],
+      [22, -41],
+      [7, -72],
+      [0, -40],
+      [-46, -45],
+      [-11, -5],
+      [-23, 11],
+      [-33, 1],
+      [-16, -32],
+      [-60, 86],
+      [6, 42],
+      [-62, 42],
+      [-36, -44],
+      [-46, 10],
+      [-36, 17],
+      [-8, 13],
+      [10, 30],
+      [-27, 110],
+      [-16, 11],
+      [-10, -20],
+      [4, -44],
+      [-10, -1],
+      [-11, 45],
+      [-2, 65],
+      [-22, 21],
+      [-11, -18],
+      [14, -33],
+      [-19, -33],
+      [-16, -16],
+      [59, -73],
+      [4, -23],
+      [-12, -46],
+      [-62, -7],
+      [-31, 4],
+      [-18, 25],
+      [6, 14],
+      [0, 55],
+      [-29, 38],
+      [-35, 28],
+      [-23, -8],
+      [-7, -19],
+      [-25, 18],
+      [-8, 15],
+      [-32, -4],
+      [-2, -16],
+      [48, -54],
+      [49, -37],
+      [35, -55],
+      [-5, -28],
+      [7, -11],
+      [30, 2],
+      [62, -82],
+      [20, -21],
+      [38, -9],
+      [9, 10],
+      [-10, 26],
+      [-17, 22],
+      [3, 16],
+      [28, 27],
+      [50, -10],
+      [18, -15],
+      [32, -75],
+      [18, -26],
+      [-1, -32],
+      [-16, 2],
+      [-54, 44],
+      [-9, -14],
+      [93, -116],
+      [-3, -17],
+      [-38, -19],
+      [-51, -3],
+      [-26, 50],
+      [-25, 17],
+      [-21, -5],
+      [-64, 42],
+      [-74, 57],
+      [-24, 8],
+      [-16, 43],
+      [-17, 27],
+      [-22, -4],
+      [-34, 44],
+      [6, 15],
+      [39, 28],
+      [-23, 18],
+      [-29, -9],
+      [-29, 40],
+      [16, 35],
+      [-29, 15],
+      [-14, -7],
+      [-6, -23],
+      [-21, -29],
+      [-25, 12],
+      [-6, -22],
+      [-15, -14],
+      [-28, 27],
+      [-8, 20],
+      [-13, 58],
+      [16, 39],
+      [26, 23],
+      [14, -8],
+      [25, -34],
+      [21, 14],
+      [-2, 21],
+      [-30, 10],
+      [-6, 17],
+      [9, 48],
+      [20, 11],
+      [14, 71],
+      [-27, 21],
+      [-25, 34],
+      [5, 23],
+      [-31, 43],
+      [-18, 17],
+      [-30, -43],
+      [-22, 10],
+      [-52, 3],
+      [-33, 11],
+      [3, 64],
+      [-31, 37],
+      [-42, 3],
+      [-6, -15],
+      [21, -23],
+      [7, -20],
+      [-10, -22],
+      [-28, -6],
+      [-35, 6],
+      [-45, 39],
+      [10, 68],
+      [26, 24],
+      [67, -11],
+      [12, 5],
+      [26, 37],
+      [4, 22],
+      [-24, 44],
+      [-9, 7],
+      [-34, -14],
+      [-48, 49],
+      [-38, 63],
+      [-4, -54],
+      [-19, -85],
+      [-23, -27],
+      [-48, -16],
+      [-30, 29],
+      [17, 36],
+      [0, 112],
+      [10, 24],
+      [23, 92],
+      [-5, 19],
+      [-37, 14],
+      [-19, -4],
+      [-56, 105],
+      [3, 46]
+    ],
+    [
+      [32985, 10946],
+      [10, -16],
+      [5, -49],
+      [-17, -9],
+      [-37, 36],
+      [-6, 28],
+      [12, 29],
+      [19, 6],
+      [14, -25]
+    ],
+    [
+      [31471, 12480],
+      [10, -11],
+      [34, -12],
+      [13, -12],
+      [16, 2],
+      [50, -8],
+      [16, -24],
+      [25, -18],
+      [20, -1],
+      [41, 15],
+      [32, 55],
+      [35, 8],
+      [11, 33],
+      [16, 11],
+      [16, -17],
+      [25, -60],
+      [44, -46],
+      [65, -113],
+      [2, -21],
+      [-18, -42],
+      [-49, -39],
+      [-29, -5],
+      [-33, 20],
+      [-64, 20],
+      [-129, 24],
+      [-57, 17],
+      [-24, -43],
+      [-24, 16],
+      [-9, -12],
+      [15, -19],
+      [23, -12],
+      [38, -9],
+      [15, 24],
+      [22, -8],
+      [-22, -49],
+      [23, -43],
+      [26, -35],
+      [8, -33],
+      [-18, -24],
+      [6, -37],
+      [-16, -16],
+      [2, -37],
+      [-70, -25],
+      [-26, 4],
+      [-15, 32],
+      [-26, 6],
+      [-60, 42],
+      [3, 31],
+      [-43, 32],
+      [-41, 15],
+      [-24, -14],
+      [-13, 8],
+      [-90, 95],
+      [-5, 23],
+      [-42, 36],
+      [-48, 1],
+      [-27, 37],
+      [-48, 8],
+      [-49, 159],
+      [1, 22],
+      [12, 21],
+      [15, 0],
+      [7, 49],
+      [-10, 90],
+      [-21, 42],
+      [-2, 19],
+      [37, 22],
+      [26, -57],
+      [38, -45],
+      [16, 19],
+      [-11, 17],
+      [1, 49],
+      [7, 12],
+      [44, 21],
+      [7, -13],
+      [24, 11],
+      [10, 60],
+      [22, 63],
+      [15, 15],
+      [38, -35],
+      [12, -3],
+      [58, 14],
+      [37, -10],
+      [17, -11],
+      [8, -80],
+      [-11, -33],
+      [-9, -63],
+      [21, -40],
+      [21, 7],
+      [2, 34],
+      [-11, 26],
+      [1, 26],
+      [10, 39],
+      [0, 61],
+      [19, 24],
+      [68, -15],
+      [71, 35],
+      [27, -17],
+      [42, 14],
+      [29, -18],
+      [25, -37],
+      [17, -62],
+      [-18, -59],
+      [-72, 6],
+      [-11, -16],
+      [11, -16],
+      [20, -7],
+      [33, 1],
+      [67, -24],
+      [6, -10],
+      [-21, -45],
+      [-70, -53],
+      [-12, -4],
+      [-48, 5],
+      [-48, 25],
+      [-65, 2],
+      [-22, 8],
+      [-13, -15]
+    ],
+    [
+      [32528, 10977],
+      [-18, -5],
+      [-67, 32],
+      [-43, 65],
+      [-53, 31],
+      [-24, 21],
+      [-46, 56],
+      [-62, 66],
+      [-9, 47],
+      [9, 30],
+      [16, 11],
+      [-15, 22],
+      [-21, -24],
+      [-16, -35],
+      [-10, -10],
+      [-33, 43],
+      [-23, 22],
+      [-51, -3],
+      [-36, 36],
+      [11, 20],
+      [-19, 12],
+      [-15, -19],
+      [-23, -4],
+      [-18, 27],
+      [-13, 96],
+      [7, 32],
+      [-35, 27],
+      [-13, 28],
+      [2, 27],
+      [12, 11],
+      [-9, 46],
+      [-25, -16],
+      [-5, 23],
+      [-28, 23],
+      [-16, 40],
+      [-19, 25],
+      [9, 45],
+      [-17, 53],
+      [-34, -23],
+      [-15, 1],
+      [-23, -45],
+      [-41, 40],
+      [-5, 16],
+      [-44, 17],
+      [-18, 28],
+      [19, 17],
+      [-6, 25],
+      [20, 54],
+      [0, 30],
+      [-20, 63],
+      [17, 70],
+      [7, 14],
+      [30, 6],
+      [42, -27],
+      [0, -19],
+      [24, -3],
+      [20, 23],
+      [31, -15],
+      [15, -18],
+      [41, 2],
+      [57, 41],
+      [36, 8],
+      [45, -57],
+      [14, -44],
+      [-10, -6],
+      [-32, 17],
+      [-27, -20],
+      [6, -21],
+      [39, 0],
+      [32, -30],
+      [110, -170],
+      [26, -44],
+      [24, -63],
+      [37, -35],
+      [18, -52],
+      [21, -19],
+      [55, -87],
+      [43, -87],
+      [28, -88],
+      [-13, -25],
+      [18, -37],
+      [20, -26],
+      [30, -65],
+      [55, -141],
+      [24, -106]
+    ],
+    [
+      [31643, 11861],
+      [24, -43],
+      [19, -6],
+      [7, -19],
+      [22, -10],
+      [34, -57],
+      [19, -6],
+      [16, -56],
+      [3, -90],
+      [-49, -52],
+      [-17, -34],
+      [-18, 0],
+      [-27, 102],
+      [22, 52],
+      [-4, 40],
+      [-19, 11],
+      [-16, -10],
+      [-17, 14],
+      [-27, 60],
+      [-17, 50],
+      [-24, 21],
+      [6, 14],
+      [31, 25],
+      [32, -6]
+    ],
+    [
+      [25733, 12724],
+      [10, -21],
+      [0, -30],
+      [-9, -37],
+      [4, -48],
+      [9, -31],
+      [-21, -47],
+      [8, -17],
+      [21, 10],
+      [10, -21],
+      [-6, -75],
+      [-7, -31],
+      [12, -43],
+      [2, -52],
+      [-4, -57],
+      [-11, 1],
+      [-34, 28],
+      [-9, 21],
+      [-44, -3],
+      [-2, 53],
+      [5, 247],
+      [26, -32],
+      [14, 19],
+      [-12, 20],
+      [-8, 40],
+      [29, 82],
+      [17, 24]
+    ],
+    [
+      [25750, 12875],
+      [21, 22],
+      [45, -41],
+      [-8, -42],
+      [-54, -34],
+      [-16, 36],
+      [-1, 47],
+      [13, 12]
+    ],
+    [
+      [25536, 12837],
+      [20, 1],
+      [33, -32],
+      [-1, -33],
+      [-22, -28],
+      [-20, 14],
+      [-33, 48],
+      [15, 39],
+      [8, -9]
+    ],
+    [
+      [25819, 13162],
+      [29, -10],
+      [-2, -24],
+      [-16, -32],
+      [-34, 4],
+      [-37, -10],
+      [-7, 4],
+      [30, 50],
+      [15, -3],
+      [22, 21]
+    ],
+    [
+      [25946, 12468],
+      [7, 35],
+      [-13, 0],
+      [-6, 24],
+      [31, 55],
+      [10, -25],
+      [17, -15],
+      [23, 16],
+      [5, -24],
+      [-22, -46],
+      [10, -28],
+      [36, 72],
+      [18, 11],
+      [6, -18],
+      [-19, -87],
+      [-42, -83],
+      [-18, -41],
+      [-11, -50],
+      [-27, -97],
+      [1, -47],
+      [-13, -41],
+      [-17, -30],
+      [8, -36],
+      [23, -2],
+      [2, -52],
+      [-23, -30],
+      [-19, 11],
+      [-20, -11],
+      [-9, -22],
+      [2, -23],
+      [-11, -20],
+      [-21, -6],
+      [-43, -64],
+      [-27, 13],
+      [-4, 78],
+      [12, 26],
+      [19, 10],
+      [-1, 25],
+      [-10, 29],
+      [18, 45],
+      [23, 6],
+      [7, 21],
+      [-2, 31],
+      [26, 65],
+      [38, 71],
+      [10, 41],
+      [11, 82],
+      [-5, 37],
+      [24, 17],
+      [7, 52],
+      [-11, 25]
+    ],
+    [
+      [12554, 42],
+      [-14, -42],
+      [-20, 7],
+      [-5, 57],
+      [17, 26],
+      [19, -22],
+      [3, -26]
+    ],
+    [
+      [12611, 124],
+      [-18, -30],
+      [0, 83],
+      [14, 24],
+      [18, -26],
+      [9, -52],
+      [-23, 1]
+    ],
+    [
+      [11503, 672],
+      [9, 0],
+      [48, -34],
+      [8, -36],
+      [39, -48],
+      [35, -72],
+      [32, -41],
+      [23, -12],
+      [13, -31],
+      [5, -32],
+      [17, -12],
+      [60, -13],
+      [37, -41],
+      [-6, -12],
+      [-26, -2],
+      [-16, 18],
+      [-52, -8],
+      [-20, 27],
+      [0, 13],
+      [-77, 96],
+      [-21, 55],
+      [-30, 59],
+      [-52, 55],
+      [-29, -3],
+      [-38, 34],
+      [-34, 44],
+      [-4, 16],
+      [11, 23],
+      [14, -1],
+      [7, -19],
+      [23, -19],
+      [24, -4]
+    ],
+    [
+      [13693, 617],
+      [-25, 73],
+      [10, 35],
+      [26, 12],
+      [19, -8],
+      [33, 3],
+      [13, 31],
+      [12, 6],
+      [12, -16],
+      [6, -77],
+      [-10, -13],
+      [-9, 40],
+      [-16, -52],
+      [-4, -51],
+      [25, -23],
+      [33, 1],
+      [54, 20],
+      [53, 0],
+      [13, -66],
+      [-1, -38],
+      [-10, -51],
+      [-26, -10],
+      [-65, 25],
+      [-22, 16],
+      [-31, -77],
+      [-12, 4],
+      [-52, -7],
+      [-18, -56],
+      [-25, -23],
+      [-12, 34],
+      [5, 23],
+      [-11, 28],
+      [-13, 4],
+      [-19, -57],
+      [-13, -50],
+      [-27, 14],
+      [-4, 33],
+      [3, 33],
+      [26, 45],
+      [17, 2],
+      [13, 36],
+      [-6, 42],
+      [-18, 28],
+      [6, 27],
+      [24, 6],
+      [33, -5],
+      [13, 59]
+    ],
+    [
+      [13182, 570],
+      [2, -10],
+      [-22, -42],
+      [7, -33],
+      [-14, -28],
+      [-23, 16],
+      [-13, -42],
+      [13, -60],
+      [-13, -4],
+      [-11, 23],
+      [-6, 37],
+      [-76, 43],
+      [7, 28],
+      [40, 1],
+      [30, 11],
+      [7, 24],
+      [-9, 46],
+      [-36, 6],
+      [-23, 38],
+      [-63, 68],
+      [-7, 19],
+      [16, 36],
+      [35, 13],
+      [60, -20],
+      [25, 3],
+      [19, -45],
+      [-4, -30],
+      [30, -37],
+      [49, -1],
+      [71, 20],
+      [-16, -39],
+      [-43, -10],
+      [-30, -14],
+      [-2, -17]
+    ],
+    [
+      [13399, 482],
+      [-15, 9],
+      [-26, -6],
+      [-23, -22],
+      [-39, -3],
+      [-19, 10],
+      [-11, -8],
+      [-10, -51],
+      [-10, 14],
+      [-18, 49],
+      [33, 35],
+      [42, -23],
+      [20, 2],
+      [26, 28],
+      [89, 29],
+      [34, 30],
+      [5, 38],
+      [0, 96],
+      [9, 20],
+      [40, -13],
+      [27, -47],
+      [-17, -50],
+      [-23, -23],
+      [-4, -23],
+      [7, -102],
+      [-11, -25],
+      [-57, -25],
+      [-27, 14],
+      [-3, 26],
+      [-19, 21]
+    ],
+    [
+      [12694, 599],
+      [-11, 5],
+      [-28, 44],
+      [8, 45],
+      [23, 18],
+      [30, -39],
+      [8, -32],
+      [-9, -30],
+      [-21, -11]
+    ],
+    [
+      [11309, 869],
+      [-8, 14],
+      [-29, 10],
+      [-27, 53],
+      [29, 0],
+      [14, -21],
+      [21, -56]
+    ],
+    [
+      [14082, 603],
+      [9, -25],
+      [-15, -17],
+      [-31, -5],
+      [-26, -40],
+      [-19, -8],
+      [-38, 16],
+      [-10, 17],
+      [9, 57],
+      [21, 7],
+      [17, -29],
+      [30, -4],
+      [0, 20],
+      [-18, 16],
+      [24, 17],
+      [36, 8],
+      [11, -30]
+    ],
+    [
+      [10940, 1254],
+      [-33, -37],
+      [2, -28],
+      [32, -14],
+      [-3, -30],
+      [-23, -6],
+      [-73, 34],
+      [-30, -24],
+      [-13, -35],
+      [3, -35],
+      [-20, 6],
+      [-27, 40],
+      [-15, 12],
+      [-1, 17],
+      [17, 14],
+      [28, 5],
+      [29, 46],
+      [34, 13],
+      [34, -2],
+      [7, 8],
+      [6, 54],
+      [32, 93],
+      [20, 14],
+      [27, -36],
+      [6, -26],
+      [-9, -26],
+      [-13, -2],
+      [-17, -55]
+    ],
+    [
+      [11988, 955],
+      [-13, -44],
+      [-43, -33],
+      [-17, 1],
+      [-45, 38],
+      [-17, 33],
+      [-4, 20],
+      [5, 54],
+      [27, -3],
+      [22, 34],
+      [20, 6],
+      [20, -6],
+      [52, -72],
+      [-7, -28]
+    ],
+    [
+      [11349, 1118],
+      [16, 8],
+      [35, -23],
+      [17, -38],
+      [-26, -46],
+      [-18, 0],
+      [-16, 42],
+      [-8, 57]
+    ],
+    [
+      [14223, 687],
+      [14, -10],
+      [-31, -31],
+      [-15, 16],
+      [10, 35],
+      [22, -10]
+    ],
+    [
+      [14056, 762],
+      [-12, -12],
+      [8, -41],
+      [-25, -5],
+      [-50, 42],
+      [-16, 79],
+      [18, 42],
+      [14, 15],
+      [42, -15],
+      [36, -88],
+      [-15, -17]
+    ],
+    [
+      [11192, 1237],
+      [11, 0],
+      [18, -25],
+      [4, -37],
+      [-8, -12],
+      [-21, -1],
+      [-12, 16],
+      [-4, 43],
+      [12, 16]
+    ],
+    [
+      [14892, 1008],
+      [-33, 4],
+      [-41, 32],
+      [8, 26],
+      [37, -18],
+      [19, 35],
+      [-5, 40],
+      [67, 43],
+      [15, -3],
+      [43, -33],
+      [41, -79],
+      [2, -36],
+      [-33, -81],
+      [-58, 13],
+      [-10, -17],
+      [2, -28],
+      [31, -34],
+      [28, -49],
+      [-3, -25],
+      [-27, 23],
+      [-31, -9],
+      [-6, -13],
+      [-57, 15],
+      [-23, -38],
+      [-13, -39],
+      [-20, 16],
+      [-27, -6],
+      [-23, -20],
+      [-19, 11],
+      [-11, -14],
+      [-58, -26],
+      [-24, 31],
+      [-51, 16],
+      [-40, -4],
+      [-23, -18],
+      [1, -16],
+      [-40, -5],
+      [-30, 15],
+      [-67, 14],
+      [-17, 11],
+      [64, 24],
+      [31, 7],
+      [20, -31],
+      [23, 26],
+      [31, 2],
+      [21, 19],
+      [4, 27],
+      [11, 17],
+      [33, -32],
+      [26, -2],
+      [63, 16],
+      [42, 34],
+      [7, 25],
+      [13, 17],
+      [30, 5],
+      [20, -15],
+      [9, 16],
+      [-26, 25],
+      [1, 19],
+      [46, -10],
+      [30, 1],
+      [23, 33],
+      [-4, 36],
+      [-22, 7]
+    ],
+    [
+      [15239, 842],
+      [45, -56],
+      [23, 9],
+      [46, -11],
+      [9, -15],
+      [58, 3],
+      [32, 9],
+      [24, 0],
+      [9, -13],
+      [43, -3],
+      [30, -13],
+      [-42, -15],
+      [-30, 7],
+      [-48, -16],
+      [-53, -4],
+      [-54, -13],
+      [-42, -16],
+      [-18, -2],
+      [-32, 27],
+      [-53, 17],
+      [-40, -10],
+      [-15, -14],
+      [-35, 12],
+      [-17, 19],
+      [-19, 42],
+      [-20, 0],
+      [-21, 39],
+      [8, 6],
+      [26, -11],
+      [46, -5],
+      [44, -25],
+      [39, 27],
+      [46, 24],
+      [11, 1]
+    ],
+    [
+      [10823, 1348],
+      [-11, 7],
+      [-19, 37],
+      [-4, 32],
+      [5, 18],
+      [27, 26],
+      [13, 3],
+      [19, -14],
+      [17, -43],
+      [-3, -36],
+      [-29, -29],
+      [-15, -1]
+    ],
+    [
+      [15710, 960],
+      [5, 39],
+      [23, 59],
+      [57, 49],
+      [21, -3],
+      [40, -28],
+      [14, -43],
+      [-6, -11],
+      [-47, -51],
+      [-55, -26],
+      [-39, -1],
+      [-13, 16]
+    ],
+    [
+      [10141, 1838],
+      [-16, 37],
+      [17, 13],
+      [28, -27],
+      [-13, -25],
+      [-16, 2]
+    ],
+    [
+      [9042, 2336],
+      [20, 31],
+      [28, -2],
+      [42, -14],
+      [-8, -17],
+      [-24, -15],
+      [-11, -35],
+      [8, -33],
+      [0, -79],
+      [-35, 11],
+      [-19, 33],
+      [-7, 30],
+      [-14, 4],
+      [-24, -12],
+      [-22, 7],
+      [-32, 33],
+      [-18, 9],
+      [14, 28],
+      [33, 17],
+      [13, -20],
+      [27, 1],
+      [15, 31],
+      [14, -8]
+    ],
+    [
+      [16356, 1173],
+      [-10, 26],
+      [-1, 24],
+      [9, 26],
+      [18, 18],
+      [29, -35],
+      [-4, -37],
+      [-13, -22],
+      [-28, 0]
+    ],
+    [
+      [16571, 1302],
+      [6, 92],
+      [42, 53],
+      [26, 21],
+      [18, 0],
+      [36, -26],
+      [2, -41],
+      [-17, -46],
+      [-26, -10],
+      [-8, 11],
+      [-29, -27],
+      [-23, -48],
+      [-27, 21]
+    ],
+    [
+      [9294, 2572],
+      [14, 6],
+      [21, -25],
+      [5, -29],
+      [-23, 10],
+      [-17, 17],
+      [0, 21]
+    ],
+    [
+      [16883, 1576],
+      [20, 3],
+      [38, -20],
+      [1, -28],
+      [-9, -30],
+      [-45, -5],
+      [-8, 7],
+      [3, 73]
+    ],
+    [
+      [8686, 2880],
+      [6, 46],
+      [-5, 20],
+      [-48, 76],
+      [-27, 4],
+      [-35, -8],
+      [-20, 15],
+      [-2, 20],
+      [86, 61],
+      [56, -8],
+      [168, -79],
+      [22, -31],
+      [22, -49],
+      [19, -1],
+      [19, -27],
+      [51, -117],
+      [-6, -20],
+      [-52, 12],
+      [-32, 51],
+      [-12, -5],
+      [-23, -58],
+      [-24, -5],
+      [-55, 34],
+      [-48, -27],
+      [-42, 48],
+      [-18, 48]
+    ],
+    [
+      [16988, 1669],
+      [19, -9],
+      [22, 7],
+      [39, 44],
+      [34, -9],
+      [20, -25],
+      [-13, -84],
+      [-22, -5],
+      [-45, 31],
+      [-20, -2],
+      [-7, -17],
+      [-31, -16],
+      [-17, 18],
+      [-10, 31],
+      [9, 30],
+      [22, 6]
+    ],
+    [
+      [17796, 2173],
+      [-28, -18],
+      [-17, -33],
+      [-12, -36],
+      [1, -36],
+      [-42, -85],
+      [-4, -35],
+      [-18, -26],
+      [-43, -12],
+      [-16, -35],
+      [-28, -39],
+      [-24, -19],
+      [-75, -83],
+      [-62, -56],
+      [-28, -19],
+      [20, 47],
+      [29, 13],
+      [15, 16],
+      [41, 99],
+      [31, 92],
+      [9, 44],
+      [-22, 30],
+      [-2, 43],
+      [15, 46],
+      [64, 96],
+      [38, -9],
+      [22, 16],
+      [22, 3],
+      [42, -13],
+      [8, 12],
+      [-15, 55],
+      [-23, 43],
+      [3, 100],
+      [18, 54],
+      [21, 17],
+      [42, 55],
+      [26, 15],
+      [65, 29],
+      [22, -15],
+      [-1, -16],
+      [32, -19],
+      [41, -1],
+      [18, -19],
+      [-10, -32],
+      [-21, -44],
+      [12, -32],
+      [1, -28],
+      [-16, -25],
+      [-37, -32],
+      [-35, -46],
+      [-55, -47],
+      [-24, -15]
+    ],
+    [
+      [16960, 1704],
+      [-8, -25],
+      [-16, -16],
+      [-22, 15],
+      [-11, 37],
+      [13, 26],
+      [18, 1],
+      [22, -16],
+      [4, -22]
+    ],
+    [
+      [17090, 1774],
+      [-10, 5],
+      [-12, 31],
+      [5, 51],
+      [31, 17],
+      [8, -16],
+      [1, -28],
+      [-13, -47],
+      [-10, -13]
+    ],
+    [
+      [18439, 3104],
+      [23, 19],
+      [16, -2],
+      [24, -34],
+      [8, -28],
+      [-16, -9],
+      [-8, -36],
+      [16, -34],
+      [29, -15],
+      [53, 42],
+      [-2, 54],
+      [25, 66],
+      [11, -16],
+      [-1, -22],
+      [21, -18],
+      [17, 28],
+      [7, -5],
+      [30, -49],
+      [2, -25],
+      [-9, -37],
+      [-39, -18],
+      [-14, -14],
+      [-15, -33],
+      [-5, -28],
+      [-62, -76],
+      [6, -39],
+      [32, 26],
+      [21, 33],
+      [38, 33],
+      [15, 7],
+      [41, 34],
+      [5, 23],
+      [35, 26],
+      [14, -17],
+      [-2, -74],
+      [-22, -54],
+      [-15, -8],
+      [-28, -31],
+      [-8, -24],
+      [-73, -58],
+      [-11, 6],
+      [-39, -31],
+      [-4, -111],
+      [-32, -54],
+      [-39, 20],
+      [-17, -14],
+      [-4, -52],
+      [-35, -14],
+      [-6, -17],
+      [-41, 27],
+      [-15, -32],
+      [-22, 22],
+      [-5, -20],
+      [-28, -21],
+      [-11, 10],
+      [-71, -79],
+      [-2, -33],
+      [-22, -6],
+      [-19, 8],
+      [-25, -26],
+      [-17, -62],
+      [-51, 19],
+      [-10, -5],
+      [-2, -41],
+      [-11, 0],
+      [-78, 34],
+      [-28, 35],
+      [28, 25],
+      [42, 65],
+      [19, 7],
+      [16, -7],
+      [61, 45],
+      [13, 28],
+      [30, -1],
+      [20, -17],
+      [32, 67],
+      [39, -15],
+      [17, 49],
+      [25, 15],
+      [-4, 30],
+      [-15, 12],
+      [-17, 63],
+      [8, 26],
+      [23, 9],
+      [15, -15],
+      [24, 20],
+      [-12, 21],
+      [-21, 13],
+      [4, 39],
+      [26, 26],
+      [50, 3],
+      [21, -49],
+      [0, -18],
+      [26, 9],
+      [8, 64],
+      [-5, 18],
+      [-35, 12],
+      [-59, 28],
+      [-22, -23],
+      [-62, 78],
+      [-3, 46],
+      [33, 78],
+      [12, 19],
+      [68, 57],
+      [28, 8],
+      [30, 29],
+      [12, -14]
+    ],
+    [
+      [16947, 6106],
+      [21, 2],
+      [16, -10],
+      [-7, -22],
+      [-39, -56],
+      [-26, 6],
+      [-16, 22],
+      [-5, 26],
+      [-33, 10],
+      [-5, 34],
+      [69, -15],
+      [25, 3]
+    ],
+    [
+      [16599, 6717],
+      [-9, 31],
+      [-52, 8],
+      [-1, 36],
+      [13, 17],
+      [34, 15],
+      [20, -10],
+      [46, 23],
+      [5, -8],
+      [-7, -49],
+      [-49, -63]
+    ],
+    [
+      [23332, 6278],
+      [24, 7],
+      [9, -27],
+      [-5, -42],
+      [17, -42],
+      [3, -23],
+      [-5, -34],
+      [-30, 8],
+      [-31, -13],
+      [-24, 52],
+      [1, 12],
+      [31, 43],
+      [10, 59]
+    ],
+    [
+      [23749, 7196],
+      [9, -19],
+      [-16, -29],
+      [-35, -48],
+      [-17, -16],
+      [-24, -34],
+      [-11, -26],
+      [-21, -65],
+      [-12, -6],
+      [-20, 15],
+      [-5, 16],
+      [17, 80],
+      [10, 33],
+      [61, 113],
+      [38, 11],
+      [26, -25]
+    ],
+    [
+      [23959, 7245],
+      [26, 17],
+      [7, -15],
+      [-5, -23],
+      [-23, -39],
+      [-18, -12],
+      [-56, -18],
+      [-21, 1],
+      [-27, -28],
+      [-53, 6],
+      [-16, 34],
+      [5, 27],
+      [17, 42],
+      [26, 30],
+      [19, -5],
+      [37, 28],
+      [16, -36],
+      [21, -26],
+      [15, -1],
+      [30, 18]
+    ],
+    [
+      [24362, 8881],
+      [25, 31],
+      [13, -7],
+      [15, -44],
+      [-18, -18],
+      [-38, -10],
+      [-15, -50],
+      [25, -60],
+      [14, -12],
+      [17, 26],
+      [-11, -98],
+      [18, -9],
+      [22, 38],
+      [40, 23],
+      [38, 11],
+      [13, -2],
+      [3, -41],
+      [-29, -78],
+      [-12, -17],
+      [-3, -60],
+      [4, -30],
+      [-12, -20],
+      [-64, 7],
+      [-5, -26],
+      [-27, 11],
+      [-17, 18],
+      [-27, -15],
+      [-26, 9],
+      [-18, 27],
+      [-21, -21],
+      [-67, 8],
+      [28, -30],
+      [62, -14],
+      [23, -22],
+      [26, -15],
+      [25, -5],
+      [13, -19],
+      [0, -71],
+      [-20, -57],
+      [-36, -1],
+      [-14, -35],
+      [-35, 20],
+      [-17, 33],
+      [-47, 3],
+      [-27, -30],
+      [-11, -33],
+      [8, -10],
+      [36, 27],
+      [23, -13],
+      [16, -22],
+      [-17, -39],
+      [-31, -34],
+      [-21, -7],
+      [-36, 0],
+      [-2, -20],
+      [27, -21],
+      [19, 1],
+      [20, 20],
+      [54, 18],
+      [36, -15],
+      [7, -14],
+      [-13, -33],
+      [-36, -21],
+      [-48, -50],
+      [-14, 7],
+      [-13, -12],
+      [-12, -26],
+      [14, -46],
+      [-8, -34],
+      [-26, -28],
+      [-25, 13],
+      [7, 36],
+      [-27, 33],
+      [-19, 4],
+      [2, 49],
+      [18, 31],
+      [13, 43],
+      [-16, 19],
+      [-17, -8],
+      [-4, -20],
+      [-34, -119],
+      [-1, -25],
+      [-40, 20],
+      [-32, -21],
+      [-4, -36],
+      [33, 12],
+      [10, -5],
+      [28, -56],
+      [0, -32],
+      [-14, -35],
+      [-41, -33],
+      [-7, -41],
+      [24, -19],
+      [-8, -25],
+      [-24, -30],
+      [-21, 11],
+      [-13, -19],
+      [-13, -56],
+      [-4, -32],
+      [-14, -28],
+      [-22, -12],
+      [-14, 20],
+      [-36, -37],
+      [-10, 1],
+      [3, 46],
+      [12, 72],
+      [16, 22],
+      [13, 46],
+      [16, 36],
+      [16, 18],
+      [13, 41],
+      [-25, 5],
+      [-30, -25],
+      [-9, 47],
+      [6, 81],
+      [15, 33],
+      [13, 6],
+      [18, 35],
+      [7, 38],
+      [-16, 12],
+      [-17, -51],
+      [-43, -76],
+      [-8, -62],
+      [-13, -60],
+      [-34, -43],
+      [-14, -44],
+      [0, -40],
+      [-26, -44],
+      [-10, 52],
+      [-11, 28],
+      [-40, 37],
+      [-45, 15],
+      [-23, 2],
+      [-13, 99],
+      [-24, 101],
+      [-10, 30],
+      [-24, 45],
+      [-23, 26],
+      [-37, 8],
+      [-20, -15],
+      [-26, 7],
+      [17, 36],
+      [2, 104],
+      [-6, 51],
+      [16, 82],
+      [33, 45],
+      [0, 45],
+      [25, -1],
+      [42, 85],
+      [46, 50],
+      [63, 5],
+      [22, 21],
+      [24, -8],
+      [19, -107],
+      [8, -14],
+      [19, -1],
+      [27, -100],
+      [10, -21],
+      [55, -68],
+      [9, 29],
+      [-25, 39],
+      [-34, 30],
+      [-19, 64],
+      [-2, 45],
+      [18, 60],
+      [-36, 38],
+      [4, 27],
+      [87, 14],
+      [4, 18],
+      [-16, 14],
+      [-58, 13],
+      [-30, 3],
+      [-22, -20],
+      [-8, 7],
+      [-23, 123],
+      [38, 74],
+      [39, 43],
+      [34, -2],
+      [43, -43],
+      [18, -49],
+      [8, -59],
+      [7, -18],
+      [22, 19],
+      [2, 47],
+      [-2, 33],
+      [-19, 41],
+      [14, 10],
+      [49, -19],
+      [8, 34],
+      [-5, 15],
+      [-32, 0],
+      [-33, 16],
+      [-42, 46],
+      [2, 46],
+      [17, 16],
+      [10, -14],
+      [93, -57],
+      [15, 7],
+      [55, -24],
+      [15, 15],
+      [-61, 57],
+      [-37, 22],
+      [-20, 39],
+      [27, 10],
+      [11, -13],
+      [45, -29],
+      [29, -6],
+      [15, 32],
+      [69, -6],
+      [5, 19],
+      [-9, 54],
+      [57, 15],
+      [3, -55],
+      [-44, -137],
+      [-1, -39],
+      [5, -45],
+      [10, -21],
+      [26, -4],
+      [-17, 91],
+      [18, 50],
+      [21, -21],
+      [12, 5],
+      [26, 43],
+      [7, 23],
+      [-12, 41],
+      [18, 16],
+      [5, -21],
+      [18, -3],
+      [17, 56],
+      [4, 25],
+      [13, 21],
+      [10, -5],
+      [2, -45],
+      [29, 4],
+      [19, -5],
+      [-11, -43],
+      [-20, 14],
+      [-20, -5],
+      [-6, -19],
+      [29, -67],
+      [9, -7]
+    ],
+    [
+      [24345, 9385],
+      [-16, -5],
+      [-9, -28],
+      [38, -89],
+      [-1, -13],
+      [-29, -17],
+      [-25, -7],
+      [-37, -2],
+      [-10, -22],
+      [-5, -38],
+      [-19, 31],
+      [-5, 53],
+      [-6, 19],
+      [-15, -3],
+      [6, -74],
+      [1, -41],
+      [-7, -27],
+      [-19, -19],
+      [-27, -13],
+      [-8, 19],
+      [-15, 11],
+      [-73, 21],
+      [-20, 15],
+      [-26, -50],
+      [13, -27],
+      [22, -27],
+      [26, -4],
+      [45, -24],
+      [-27, -31],
+      [-15, -4],
+      [-54, 6],
+      [-51, 14],
+      [-9, 14],
+      [-32, -3],
+      [-31, -23],
+      [-27, 15],
+      [1, 13],
+      [27, 93],
+      [22, 13],
+      [36, -40],
+      [16, -11],
+      [5, 23],
+      [-13, 21],
+      [-31, 31],
+      [-1, 55],
+      [13, 14],
+      [45, -11],
+      [28, 30],
+      [-4, 10],
+      [-27, 8],
+      [-22, 19],
+      [15, 63],
+      [18, -1],
+      [32, -15],
+      [22, 12],
+      [3, 27],
+      [-19, -4],
+      [-15, 23],
+      [15, 23],
+      [35, -9],
+      [12, 50],
+      [-29, -3],
+      [-25, 26],
+      [30, 13],
+      [9, 12],
+      [12, 64],
+      [19, 5],
+      [31, 29],
+      [-9, 19],
+      [-16, 10],
+      [-18, 63],
+      [14, 49],
+      [16, 29],
+      [15, -27],
+      [19, 5],
+      [15, 35],
+      [38, 36],
+      [12, -3],
+      [6, -49],
+      [-3, -70],
+      [-16, -25],
+      [-20, -85],
+      [-1, -27],
+      [23, -79],
+      [8, -2],
+      [45, 31],
+      [3, 34],
+      [-12, 34],
+      [10, 16],
+      [25, -14],
+      [46, -56],
+      [22, 57],
+      [23, -27],
+      [-5, -88],
+      [7, -53],
+      [13, 3],
+      [-4, 37],
+      [5, 37],
+      [32, 60],
+      [14, -21],
+      [13, -67],
+      [5, -44],
+      [-2, -21],
+      [-28, -81],
+      [-12, -11],
+      [-41, 16],
+      [-16, 19],
+      [4, 23],
+      [-23, 27]
+    ],
+    [
+      [33137, 11738],
+      [14, 32],
+      [24, 17],
+      [33, 2],
+      [24, 40],
+      [35, 1],
+      [27, -12],
+      [14, -23],
+      [-7, -25],
+      [-1, -39],
+      [29, -34],
+      [9, -30],
+      [-18, -34],
+      [-22, -21],
+      [-22, -35],
+      [-15, -9],
+      [-84, 30],
+      [-34, 7],
+      [-10, 20],
+      [3, 25],
+      [-1, 56],
+      [2, 32]
+    ],
+    [
+      [31336, 13030],
+      [-21, -32],
+      [-26, 11],
+      [-38, 2],
+      [-28, -58],
+      [-67, -63],
+      [-9, 5],
+      [0, 33],
+      [-13, 35],
+      [-18, -10],
+      [-24, 1],
+      [-11, 13],
+      [28, 51],
+      [-6, 32],
+      [-10, 1],
+      [-19, 30],
+      [-10, 51],
+      [-76, 70],
+      [-12, 31],
+      [-28, 31],
+      [-31, 24],
+      [11, 32],
+      [-32, 78],
+      [-9, 12],
+      [-39, 26],
+      [-21, -1],
+      [17, -28],
+      [18, -17],
+      [30, -57],
+      [23, -121],
+      [-3, -8],
+      [-35, -21],
+      [-83, 23],
+      [-49, 2],
+      [-47, 84],
+      [-9, 27],
+      [-19, -9],
+      [12, -53],
+      [-11, -31],
+      [-17, -7],
+      [-22, 13],
+      [-42, 2],
+      [-15, -30],
+      [-31, 34],
+      [-11, -25],
+      [14, -52],
+      [30, 0],
+      [46, 10],
+      [7, 13],
+      [35, -4],
+      [44, 5],
+      [70, -28],
+      [77, -64],
+      [-2, -49],
+      [-16, -31],
+      [-5, -30],
+      [12, -3],
+      [34, 68],
+      [1, 33],
+      [44, 20],
+      [62, -125],
+      [46, -14],
+      [7, -24],
+      [20, -26],
+      [13, -7],
+      [29, -51],
+      [-14, -57],
+      [-53, -69],
+      [-23, 13],
+      [2, 35],
+      [-31, -1],
+      [-13, -27],
+      [23, -29],
+      [4, -31],
+      [-6, -10],
+      [-37, -11],
+      [-45, 14],
+      [-21, -1],
+      [-11, -34],
+      [45, -36],
+      [16, -31],
+      [0, -34],
+      [-24, -28],
+      [-22, 1],
+      [-26, 31],
+      [-10, 30],
+      [-24, -9],
+      [-40, 8],
+      [-1, 15],
+      [-64, 41],
+      [-35, -1],
+      [-32, -41],
+      [-42, 21],
+      [-33, 9],
+      [-18, -3],
+      [-74, 25],
+      [-51, 22],
+      [-62, 17],
+      [-9, -7],
+      [-28, 10],
+      [-18, 43],
+      [-65, 36],
+      [-75, 25],
+      [-15, 21],
+      [-1, 28],
+      [-17, 41],
+      [-36, 30],
+      [-50, 30],
+      [-40, 16],
+      [-4, 38],
+      [-63, -5],
+      [-186, -6],
+      [-72, 33],
+      [-46, 16],
+      [-37, 7],
+      [-173, 11],
+      [-75, 10],
+      [-63, 17],
+      [-110, 38],
+      [-56, 10],
+      [-1, 31],
+      [21, 14],
+      [-5, 39],
+      [1, 49],
+      [26, 17],
+      [18, -40],
+      [25, 24],
+      [-12, 39],
+      [12, 63],
+      [-42, 18],
+      [8, 43],
+      [-25, 32],
+      [-41, 68],
+      [-16, 45],
+      [26, 56],
+      [-3, 67],
+      [-22, 42],
+      [-20, -11],
+      [0, -30],
+      [8, -69],
+      [-32, -45],
+      [-7, -74],
+      [10, -28],
+      [-10, -32],
+      [-31, -47],
+      [-84, -134],
+      [-6, -29],
+      [-25, -34],
+      [-40, -22],
+      [-142, -54],
+      [-71, -15],
+      [-20, -1],
+      [-44, 10],
+      [-70, 12],
+      [-29, 1],
+      [-96, -2],
+      [-18, 19],
+      [-33, 82],
+      [-27, -6],
+      [-62, -69],
+      [-101, 22],
+      [-39, -5],
+      [-55, -19],
+      [-52, -3],
+      [-128, -24],
+      [-67, -23],
+      [-45, -21],
+      [-38, -25],
+      [-58, -56],
+      [-133, -87],
+      [-80, -58],
+      [-28, -25],
+      [-68, -72],
+      [-43, -5],
+      [-27, 7],
+      [-10, 22],
+      [4, 17],
+      [-59, 38],
+      [-44, 13],
+      [-21, 39],
+      [-28, -6],
+      [-19, -13],
+      [0, -20],
+      [-23, -19],
+      [-32, 18],
+      [-19, -24],
+      [-16, -3],
+      [-31, 14],
+      [-15, 40],
+      [-28, 20],
+      [-33, 10],
+      [-63, -33],
+      [-9, 86],
+      [8, 102],
+      [-25, 3],
+      [-2, -17],
+      [-45, -15],
+      [-40, -41],
+      [-16, -34],
+      [0, -40],
+      [26, -42],
+      [33, -26],
+      [-3, -9],
+      [-42, -10],
+      [-68, 15],
+      [-70, 31],
+      [-9, 36],
+      [-45, 17],
+      [-63, -1],
+      [-39, -53],
+      [-40, -6],
+      [-9, 10],
+      [12, 36],
+      [37, 50],
+      [18, 85],
+      [-22, 0],
+      [-6, -38],
+      [-9, -19],
+      [-68, -100],
+      [-22, -37],
+      [-38, -41],
+      [-40, -9],
+      [-15, -11],
+      [13, -50],
+      [24, 22],
+      [57, 42],
+      [21, -16],
+      [-8, -36],
+      [-20, -38],
+      [-25, -25],
+      [-14, -5],
+      [-30, -40],
+      [-31, -53],
+      [-32, -79],
+      [-18, -6],
+      [-29, 38],
+      [12, 30],
+      [27, 32],
+      [12, 40],
+      [-10, 5],
+      [-40, -39],
+      [-27, -1],
+      [-15, 51],
+      [15, 92],
+      [13, 34],
+      [24, 12],
+      [14, -12],
+      [23, -4],
+      [31, 32],
+      [16, 28],
+      [5, 24],
+      [51, 36],
+      [68, 91],
+      [56, 46],
+      [-19, 17],
+      [-26, -13],
+      [-20, 11],
+      [-22, -28],
+      [-5, 29],
+      [4, 35],
+      [18, 53],
+      [-5, 9],
+      [-32, -72],
+      [-23, -29],
+      [-19, -33],
+      [-40, -29],
+      [-13, 25],
+      [35, 88],
+      [29, 57],
+      [-17, 33],
+      [-13, -49],
+      [-15, -26],
+      [-26, 0],
+      [-6, -29],
+      [-18, -8],
+      [-9, 21],
+      [-14, -4],
+      [-11, -30],
+      [0, -27],
+      [-26, -25],
+      [-44, -9],
+      [-15, -18],
+      [-21, 6],
+      [-27, 47],
+      [35, 36],
+      [17, -2],
+      [21, 35],
+      [14, 4],
+      [38, 36],
+      [35, 44],
+      [19, 53],
+      [-9, 24],
+      [-29, -15],
+      [-4, -32],
+      [-11, -31],
+      [-22, -21],
+      [-64, -31],
+      [-41, 54],
+      [-18, -6],
+      [-12, -48],
+      [4, -27],
+      [-28, -20],
+      [-11, 9],
+      [-9, 43],
+      [18, 36],
+      [25, 3],
+      [-26, 35],
+      [-16, 50],
+      [10, 40],
+      [3, 75],
+      [-19, 11],
+      [-31, -39],
+      [-15, -57],
+      [1, -29],
+      [-18, -47],
+      [-15, -18],
+      [-35, -2],
+      [-11, 17],
+      [2, 35],
+      [-24, 12],
+      [-9, -39],
+      [8, -46],
+      [-13, -14],
+      [-17, 11],
+      [-12, 38],
+      [-18, -19],
+      [12, -64],
+      [-29, -60],
+      [-33, 6],
+      [-13, 52],
+      [-19, 12],
+      [1, -37],
+      [9, -14],
+      [-5, -23],
+      [-16, 9],
+      [-23, 124],
+      [0, 64],
+      [-10, 25],
+      [-19, -4],
+      [5, -20],
+      [4, -132],
+      [37, -100],
+      [0, -30],
+      [-24, -20],
+      [-11, 30],
+      [1, 17],
+      [-32, 19],
+      [-13, -2],
+      [0, -49],
+      [20, -17],
+      [17, -34],
+      [-17, -16],
+      [-58, -7],
+      [0, -15],
+      [-38, -51],
+      [-26, -6],
+      [-21, 4],
+      [-10, 34],
+      [1, 85],
+      [5, 49],
+      [11, 45],
+      [12, 74],
+      [-12, 32],
+      [-15, -13],
+      [-13, -65],
+      [-10, -3],
+      [-30, 67],
+      [-16, -8],
+      [13, -79],
+      [-1, -35],
+      [-9, -44],
+      [-11, -28],
+      [9, -63],
+      [0, -30],
+      [-8, -44],
+      [-16, -5],
+      [-20, 18],
+      [-1, -45],
+      [40, -13],
+      [6, -27],
+      [6, -62],
+      [16, -2],
+      [9, 91],
+      [18, 20],
+      [34, 8],
+      [21, -15],
+      [25, -84],
+      [-10, -51],
+      [-28, -44],
+      [-10, -4],
+      [-16, -85],
+      [6, -48],
+      [10, -11],
+      [25, 31],
+      [0, 34],
+      [9, 47],
+      [22, 56],
+      [11, 4],
+      [63, -67],
+      [10, -15],
+      [0, -27],
+      [23, -34],
+      [3, -110],
+      [5, -86],
+      [-36, -15],
+      [-18, 13],
+      [-7, 31],
+      [-21, 9],
+      [-8, -12],
+      [8, -33],
+      [-20, -45],
+      [-15, -17],
+      [-4, -50],
+      [17, 3],
+      [11, 41],
+      [21, 22],
+      [14, -8],
+      [-12, -35],
+      [22, -11],
+      [11, 10],
+      [1, 36],
+      [26, -20],
+      [-5, -31],
+      [3, -29],
+      [17, 13],
+      [-6, 23],
+      [10, 15],
+      [26, -20],
+      [-4, -35],
+      [-13, -6],
+      [-7, -36],
+      [2, -56],
+      [13, -4],
+      [11, 35],
+      [0, 26],
+      [24, 44],
+      [22, -1],
+      [16, -31],
+      [-23, -54],
+      [-10, -7],
+      [4, -65],
+      [17, -2],
+      [16, 51],
+      [6, 35],
+      [14, 25],
+      [19, -17],
+      [-7, -65],
+      [-17, -32],
+      [-41, -53],
+      [-21, 31],
+      [-10, -28],
+      [-16, -24],
+      [-28, -17],
+      [-12, 1],
+      [6, 50],
+      [27, 11],
+      [5, 13],
+      [-25, 17],
+      [-36, -31],
+      [-22, 10],
+      [3, 39],
+      [-24, 100],
+      [-13, 12],
+      [-15, -17],
+      [23, -182],
+      [-10, -45],
+      [-20, 16],
+      [-3, 18],
+      [-27, -7],
+      [1, -26],
+      [-10, -41],
+      [-13, -18],
+      [-16, 0],
+      [-1, 29],
+      [-21, -17],
+      [-20, 23],
+      [-18, -22],
+      [-9, -35],
+      [-14, -5],
+      [-25, 30],
+      [-21, 10],
+      [-9, -25],
+      [-32, -11],
+      [-17, 6],
+      [15, 63],
+      [-14, 20],
+      [-11, -25],
+      [-15, -5],
+      [-21, -51],
+      [-1, -33],
+      [6, -50],
+      [-14, -44],
+      [-35, 83],
+      [-28, 97],
+      [-13, 25],
+      [-20, -23],
+      [21, -101],
+      [-5, -11],
+      [-2, -50],
+      [-22, 9],
+      [-6, -56],
+      [-2, -64],
+      [28, -42],
+      [16, -14],
+      [7, -65],
+      [-30, -5],
+      [-28, 42],
+      [-23, 53],
+      [-30, 60],
+      [-8, -62],
+      [37, -141],
+      [-1, -42],
+      [-11, -29],
+      [-24, 20],
+      [-10, 57],
+      [-29, 29],
+      [-40, 4],
+      [-18, -22],
+      [-2, -20],
+      [33, -21],
+      [19, -25],
+      [-1, -25],
+      [-13, -22],
+      [-2, -34],
+      [6, -48],
+      [-35, 29],
+      [6, -53],
+      [-15, -56],
+      [-26, -58],
+      [-21, -23],
+      [-14, -1],
+      [-1, 61],
+      [-9, 41],
+      [-15, -7],
+      [-14, -58],
+      [2, -48],
+      [-7, -69],
+      [-17, -2],
+      [-31, 80],
+      [-4, 50],
+      [-16, -8],
+      [-3, -42],
+      [-16, -4],
+      [9, -27],
+      [26, -23],
+      [12, -55],
+      [-3, -25],
+      [-20, -12],
+      [-10, 36],
+      [-24, -13],
+      [-4, -32],
+      [4, -28],
+      [-4, -35],
+      [-23, -33],
+      [-10, -45],
+      [-12, -12],
+      [19, -45],
+      [-14, -47],
+      [-32, 10],
+      [-27, 48],
+      [-16, -50],
+      [9, -50],
+      [-30, -29],
+      [-20, 18],
+      [-27, -9],
+      [-4, -19],
+      [-38, 25],
+      [-20, 38],
+      [-7, -33],
+      [-30, -46],
+      [16, -30],
+      [-30, -10],
+      [0, -40],
+      [-45, -14],
+      [-20, -13],
+      [-10, 17],
+      [-9, 52],
+      [-29, -25],
+      [-16, -2],
+      [-21, 11],
+      [-10, 29],
+      [-22, -8],
+      [-18, 65],
+      [5, 39],
+      [22, 26],
+      [2, 28],
+      [-12, 11],
+      [4, 32],
+      [21, 29],
+      [21, 18],
+      [22, 2],
+      [5, 32],
+      [22, 24],
+      [42, -4],
+      [13, 17],
+      [15, -1],
+      [-6, 35],
+      [13, 46],
+      [22, 12],
+      [35, 30],
+      [-10, 46],
+      [31, 5],
+      [2, 21],
+      [-14, 39],
+      [27, 37],
+      [-3, 32],
+      [27, 82],
+      [9, 36],
+      [-21, 7],
+      [-32, -34],
+      [-31, -68],
+      [-37, -68],
+      [-19, -10],
+      [-21, -25],
+      [-5, -30],
+      [-16, -17],
+      [-60, -5],
+      [-21, 10],
+      [-72, 46],
+      [-19, 28],
+      [-9, 32],
+      [8, 81],
+      [-3, 40],
+      [10, 50],
+      [-3, 109],
+      [1, 28],
+      [25, 89],
+      [18, 41],
+      [33, 112],
+      [2, 66],
+      [-18, 104],
+      [3, 17],
+      [25, 24],
+      [-8, 77],
+      [-12, 68],
+      [0, 37],
+      [-31, 26],
+      [-11, 21],
+      [-22, 63],
+      [-26, 40],
+      [-7, 28],
+      [13, 20],
+      [23, 17],
+      [15, 26],
+      [0, 19],
+      [15, 13],
+      [59, 29],
+      [52, 98],
+      [57, 121],
+      [7, 27],
+      [26, 29],
+      [76, 105],
+      [17, -11],
+      [49, -74],
+      [35, -14],
+      [60, 4],
+      [0, 13],
+      [47, 38],
+      [16, 42],
+      [34, 13],
+      [9, 27],
+      [-9, 32],
+      [-22, 17],
+      [-28, 35],
+      [-11, 0],
+      [-104, 53],
+      [20, 87],
+      [-3, 17],
+      [-39, 5],
+      [-53, -13],
+      [-25, -19],
+      [-76, -36],
+      [-45, 28],
+      [-17, -10],
+      [-19, 15],
+      [-16, -60],
+      [-41, -42],
+      [-23, -32],
+      [-20, -7],
+      [-2, -18],
+      [-23, -27],
+      [-11, -48],
+      [-10, -98],
+      [-6, -22],
+      [-49, -29],
+      [-21, -39],
+      [-48, -15],
+      [-45, -80],
+      [-49, -141],
+      [18, -45],
+      [46, -78],
+      [0, -26],
+      [-43, 11],
+      [-63, -25],
+      [-37, -55],
+      [-2, -71],
+      [3, -66],
+      [-22, -18],
+      [-20, -44],
+      [-13, -42],
+      [-2, -40],
+      [7, -34],
+      [17, -29],
+      [32, -14],
+      [-26, -50],
+      [-20, -13],
+      [1, -61],
+      [-5, -19],
+      [-18, -10],
+      [-22, -47],
+      [-7, -34],
+      [-26, -16],
+      [-19, 22],
+      [-34, -21],
+      [1, -27],
+      [16, -38],
+      [25, -5],
+      [2, -30],
+      [15, -15],
+      [29, -14],
+      [18, -30],
+      [2, -27],
+      [-9, -30],
+      [2, -20],
+      [-19, -54],
+      [-1, -63],
+      [-32, -33],
+      [-3, -23],
+      [-30, -6],
+      [-27, -15],
+      [-24, 5],
+      [-53, -49],
+      [-28, -6],
+      [-22, -57],
+      [42, 15],
+      [19, -11],
+      [18, 36],
+      [27, 10],
+      [17, -23],
+      [3, -22],
+      [-3, -120],
+      [-27, -25],
+      [-9, -31],
+      [-20, -30],
+      [-22, 4],
+      [-10, 25],
+      [-16, -6],
+      [12, -32],
+      [-15, -23],
+      [-12, 11],
+      [-19, -3],
+      [-5, 16],
+      [9, 22],
+      [-8, 74],
+      [-38, 52],
+      [-3, -25],
+      [16, -51],
+      [4, -32],
+      [-4, -57],
+      [-25, -23],
+      [-22, 18],
+      [-4, -36],
+      [25, -12],
+      [4, -20],
+      [-5, -45],
+      [-28, -4],
+      [-44, -28],
+      [3, -24],
+      [16, -15],
+      [23, -43],
+      [-6, -35],
+      [-37, -32],
+      [-30, -9],
+      [-36, -52],
+      [-20, -1],
+      [-15, -29],
+      [-1, -31],
+      [29, 11],
+      [4, -19],
+      [-29, -42],
+      [-3, -45],
+      [7, -52],
+      [6, -6],
+      [-10, -48],
+      [-14, -29],
+      [-18, -21],
+      [18, -11],
+      [20, 4],
+      [10, -24],
+      [-6, -39],
+      [7, -28],
+      [19, -26],
+      [17, 28],
+      [12, 46],
+      [23, 8],
+      [71, -2],
+      [20, 28],
+      [21, -1],
+      [19, 17],
+      [47, -65],
+      [34, -17],
+      [18, 3],
+      [8, 19],
+      [23, -23],
+      [17, 1],
+      [22, -39],
+      [14, -4],
+      [28, -57],
+      [-17, -28],
+      [-5, -32],
+      [4, -25],
+      [-2, -68],
+      [-12, -44],
+      [-14, 0],
+      [-27, -39],
+      [-7, -22],
+      [0, -37],
+      [-31, -43],
+      [-39, -20],
+      [-35, -3],
+      [-18, -13],
+      [8, -104],
+      [-2, -27],
+      [-51, -22],
+      [-5, -15],
+      [9, -43],
+      [20, -36],
+      [26, -8],
+      [-3, -18],
+      [-36, -48],
+      [-33, 5],
+      [3, -43],
+      [14, -4],
+      [26, -33],
+      [-4, -84],
+      [-10, -28],
+      [-17, -11],
+      [-4, -35],
+      [13, -25],
+      [-30, -5],
+      [-13, -57],
+      [-52, 52],
+      [-12, -11],
+      [17, -53],
+      [1, -41],
+      [-15, -15],
+      [-18, 2],
+      [-11, -47],
+      [-29, 8],
+      [-10, 33],
+      [-26, -18],
+      [0, -39],
+      [-11, -25],
+      [-23, -8],
+      [-7, 17],
+      [-29, 2],
+      [-40, -29],
+      [-44, -84],
+      [34, -49],
+      [1, -24],
+      [-9, -25],
+      [-23, -18],
+      [-31, -43],
+      [-39, -7],
+      [-5, -14],
+      [10, -44],
+      [26, -20],
+      [-2, -41],
+      [-30, -24],
+      [-65, 41],
+      [-22, 25],
+      [-10, 0],
+      [-18, -28],
+      [3, -64],
+      [13, -29],
+      [0, -38],
+      [-37, -38],
+      [2, -46],
+      [10, -50],
+      [-63, -21],
+      [-15, -18],
+      [-24, 4],
+      [-24, 26],
+      [-13, -12],
+      [9, -73],
+      [11, -33],
+      [13, -15],
+      [-1, -19],
+      [-31, -8],
+      [-25, 31],
+      [-23, 6],
+      [-10, -12],
+      [-1, -40],
+      [-12, -5],
+      [-33, -35],
+      [-12, -35],
+      [-37, -72],
+      [-21, -17],
+      [-1, -45],
+      [21, -6],
+      [66, 83],
+      [14, -47],
+      [-1, -55],
+      [-24, -14],
+      [5, -30],
+      [34, -30],
+      [-9, -41],
+      [-26, -33],
+      [-5, -27],
+      [10, -22],
+      [-35, -54],
+      [-7, -35],
+      [10, -16],
+      [0, -25],
+      [-38, 2],
+      [-51, -16],
+      [-9, -26],
+      [3, -70],
+      [-17, -16],
+      [-29, 53],
+      [-23, -4],
+      [6, -40],
+      [-28, -26],
+      [-9, -26],
+      [-10, -57],
+      [-37, -16],
+      [16, -46],
+      [-7, -22],
+      [-17, -12],
+      [-42, 29],
+      [-9, 18],
+      [-44, 41],
+      [-25, -10],
+      [-12, -33],
+      [9, -26],
+      [21, -7],
+      [8, -34],
+      [-45, -21],
+      [-10, -39],
+      [-1, -32],
+      [14, -30],
+      [28, 2],
+      [18, -29],
+      [-3, -24],
+      [-30, -17],
+      [-25, 2],
+      [-36, -24],
+      [-17, 18],
+      [-22, 51],
+      [-12, 1],
+      [-73, -47],
+      [-38, -78],
+      [5, -25],
+      [17, 1],
+      [9, 18],
+      [30, 14],
+      [36, -27],
+      [17, -51],
+      [-14, -40],
+      [-12, 2],
+      [-36, 25],
+      [-32, -13],
+      [-39, 2],
+      [-6, -25],
+      [11, -11],
+      [-2, -35],
+      [-54, -7],
+      [-20, 13],
+      [-20, -1],
+      [-29, -41],
+      [-31, -97],
+      [10, -43],
+      [26, 8],
+      [18, -13],
+      [34, 4],
+      [57, -23],
+      [0, -30],
+      [-14, -22],
+      [-33, -32],
+      [5, -22],
+      [31, 2],
+      [30, 28],
+      [6, 13],
+      [26, 0],
+      [-46, -63],
+      [-31, -36],
+      [-23, -40],
+      [-5, -30],
+      [7, -52],
+      [-14, 2],
+      [-13, 43],
+      [-14, -21],
+      [19, -40],
+      [17, -18],
+      [8, -25],
+      [-14, -23],
+      [-15, 31],
+      [-16, -6],
+      [9, -40],
+      [-5, -13],
+      [-51, 70],
+      [-8, 71],
+      [-17, 9],
+      [-11, -29],
+      [0, -24],
+      [10, -49],
+      [13, -20],
+      [4, -34],
+      [-1, -33],
+      [-8, -11],
+      [-30, -4],
+      [-8, 10],
+      [4, 47],
+      [-10, 7],
+      [-47, -19],
+      [-14, -84],
+      [-40, -19],
+      [-118, -69],
+      [-44, -33],
+      [-9, -24],
+      [5, -75],
+      [-11, 3],
+      [-22, 38],
+      [-3, 80],
+      [-14, 2],
+      [-20, -28],
+      [20, -27],
+      [16, -102],
+      [-2, -22],
+      [-12, -26],
+      [-3, -29],
+      [16, -43],
+      [-4, -23],
+      [-25, -66],
+      [-33, -33],
+      [-17, -8],
+      [-9, 34],
+      [7, 18],
+      [38, 13],
+      [4, 14],
+      [-11, 25],
+      [-17, 1],
+      [-12, 110],
+      [13, 65],
+      [8, 13],
+      [-19, 16],
+      [-34, 12],
+      [-47, 2],
+      [-19, -21],
+      [11, -45],
+      [-18, -24],
+      [-23, 17],
+      [-33, -14],
+      [-13, -33],
+      [3, -59],
+      [-27, -53],
+      [-22, -32],
+      [-41, -29],
+      [-21, -1],
+      [-42, 17],
+      [-7, -31],
+      [24, -40],
+      [-15, -37],
+      [-7, -50],
+      [4, -30],
+      [-13, -36],
+      [-16, -8],
+      [-15, 54],
+      [-18, 46],
+      [-18, 9],
+      [-19, -40],
+      [-20, 10],
+      [-26, -16],
+      [0, -21],
+      [53, -3],
+      [8, -19],
+      [-3, -49],
+      [-51, -20],
+      [-29, 20],
+      [-5, 19],
+      [7, 23],
+      [-23, 18],
+      [-20, -7],
+      [-13, -22],
+      [-9, -57],
+      [-12, -38],
+      [-90, -104],
+      [-23, -9],
+      [-21, 3],
+      [2, 24],
+      [-24, 1],
+      [-35, -25],
+      [-5, -12],
+      [-23, 0],
+      [-6, 26],
+      [9, 40],
+      [-3, 93],
+      [32, 92],
+      [5, 44],
+      [-5, 14],
+      [-27, 11],
+      [-30, -3],
+      [-46, -25],
+      [-10, -18],
+      [-28, -108],
+      [14, -111],
+      [7, -17],
+      [-12, -39],
+      [-37, -112],
+      [-11, -14],
+      [-6, -34],
+      [3, -26],
+      [-10, -28],
+      [-39, 30],
+      [-24, 0],
+      [-6, -18],
+      [28, -62],
+      [18, -14],
+      [12, -31],
+      [-2, -24],
+      [-39, -45],
+      [-34, 28],
+      [-9, 22],
+      [4, 22],
+      [-13, 17],
+      [-16, -6],
+      [-15, -44],
+      [0, -20],
+      [22, -46],
+      [-10, -39],
+      [-22, -12],
+      [-18, 22],
+      [-28, -5],
+      [-23, -11],
+      [-29, 13],
+      [-24, 37],
+      [-8, 33],
+      [27, 17],
+      [19, -22],
+      [7, 20],
+      [-22, 33],
+      [-18, 9],
+      [-9, 25],
+      [-16, 76],
+      [-41, 50],
+      [-19, 4],
+      [-16, -14],
+      [-13, -51],
+      [-3, -40],
+      [15, -24],
+      [22, 3],
+      [16, -24],
+      [21, -41],
+      [-10, -15],
+      [-3, -34],
+      [15, -48],
+      [19, -43],
+      [6, -52],
+      [-9, 0],
+      [-31, 24],
+      [-19, -4],
+      [-13, -21],
+      [8, -24],
+      [-25, -35],
+      [-34, -12],
+      [-35, 22],
+      [-33, 55],
+      [2, 37],
+      [-26, 53],
+      [-40, 31],
+      [-15, -4],
+      [-33, -28],
+      [-12, -59],
+      [8, -18],
+      [32, -10],
+      [51, -45],
+      [10, -30],
+      [-46, -74],
+      [-25, -49],
+      [-38, -27],
+      [-31, -39],
+      [2, -11],
+      [28, -44],
+      [44, 10],
+      [18, 28],
+      [20, -12],
+      [50, -80],
+      [2, -31],
+      [-32, 3],
+      [-10, 30],
+      [-22, 4],
+      [-10, -11],
+      [-34, -2],
+      [-20, 26],
+      [-17, 35],
+      [-20, -14],
+      [-12, -28],
+      [0, -76],
+      [-23, -4],
+      [-35, -43],
+      [-5, -15],
+      [-42, 13],
+      [-37, 4],
+      [-102, -19],
+      [-55, -21],
+      [-65, -49],
+      [-40, -71],
+      [-2, -77],
+      [-27, -43],
+      [-17, -17],
+      [-67, -29],
+      [-17, -15],
+      [-49, -3],
+      [-50, 22],
+      [-17, 28],
+      [-23, 73],
+      [-19, 28],
+      [-7, 50],
+      [11, 36],
+      [38, 33],
+      [32, 17],
+      [22, 28],
+      [27, 115],
+      [21, 115],
+      [1, 45],
+      [26, 43],
+      [27, 16],
+      [27, -18],
+      [16, -23],
+      [22, 13],
+      [38, 35],
+      [17, 33],
+      [24, 15],
+      [36, 12],
+      [28, 36],
+      [28, 54],
+      [19, 1],
+      [35, 26],
+      [16, -7],
+      [44, 2],
+      [53, 13],
+      [5, -38],
+      [46, -48],
+      [29, -76],
+      [-3, -51],
+      [12, -3],
+      [31, 34],
+      [-4, 26],
+      [-15, 24],
+      [-1, 30],
+      [12, 12],
+      [18, -14],
+      [16, 23],
+      [-30, 48],
+      [-8, 59],
+      [-16, 79],
+      [48, 54],
+      [42, 28],
+      [17, -10],
+      [53, 5],
+      [33, 20],
+      [15, 50],
+      [-4, 21],
+      [-28, 2],
+      [6, 32],
+      [76, 67],
+      [20, 55],
+      [8, 54],
+      [14, 47],
+      [38, 64],
+      [57, 150],
+      [28, 83],
+      [41, 52],
+      [25, 57],
+      [44, 52],
+      [29, 44],
+      [15, 40],
+      [16, 31],
+      [45, 26],
+      [31, 23],
+      [23, 25],
+      [59, 31],
+      [69, 47],
+      [16, -26],
+      [24, -4],
+      [52, 13],
+      [11, -13],
+      [73, 81],
+      [17, 0],
+      [28, -45],
+      [4, -50],
+      [-15, 4],
+      [-32, -25],
+      [-6, -58],
+      [15, -42],
+      [68, -77],
+      [16, 25],
+      [49, -30],
+      [4, 20],
+      [-53, 44],
+      [-16, 83],
+      [14, 18],
+      [45, -7],
+      [47, 23],
+      [18, -3],
+      [13, -47],
+      [24, -34],
+      [23, 13],
+      [46, -27],
+      [9, 23],
+      [-27, 36],
+      [18, 19],
+      [-4, 29],
+      [-25, 8],
+      [-49, 38],
+      [-57, 26],
+      [-2, 50],
+      [-22, 21],
+      [25, 92],
+      [10, 59],
+      [9, 83],
+      [1, 45],
+      [11, 59],
+      [32, 51],
+      [19, 39],
+      [8, 32],
+      [19, 36],
+      [27, 19],
+      [32, 43],
+      [23, 43],
+      [40, 91],
+      [119, 123],
+      [40, 26],
+      [48, 45],
+      [21, 43],
+      [-2, 24],
+      [95, 130],
+      [22, 47],
+      [14, -24],
+      [41, -33],
+      [33, -6],
+      [54, 22],
+      [4, 29],
+      [-7, 39],
+      [-9, 10],
+      [-27, 77],
+      [0, 127],
+      [6, 33],
+      [58, 192],
+      [26, 70],
+      [55, 79],
+      [32, 35],
+      [36, 63],
+      [16, 17],
+      [22, 94],
+      [54, 91],
+      [32, 33],
+      [34, -66],
+      [30, -9],
+      [2, 33],
+      [-18, 76],
+      [-14, 33],
+      [-36, -11],
+      [-13, 31],
+      [-11, 95],
+      [6, 62],
+      [-3, 113],
+      [-14, 193],
+      [-2, 106],
+      [16, 47],
+      [56, 29],
+      [12, 58],
+      [-17, 6],
+      [-6, -21],
+      [-16, 5],
+      [-37, 34],
+      [-17, 22],
+      [-13, 60],
+      [-1, 72],
+      [9, 108],
+      [9, 32],
+      [20, 30],
+      [15, 12],
+      [14, 40],
+      [8, 44],
+      [34, 80],
+      [35, 65],
+      [4, 23],
+      [8, 110],
+      [-11, 67],
+      [14, 37],
+      [-10, 41],
+      [-25, 12],
+      [2, -50],
+      [-8, -33],
+      [-16, -28],
+      [-38, -40],
+      [-25, -13],
+      [-30, -29],
+      [-28, -39],
+      [-22, -11],
+      [-19, -20],
+      [-5, -23],
+      [-58, -43],
+      [-59, -76],
+      [-71, -69],
+      [-41, -32],
+      [-40, -4],
+      [-32, 21],
+      [-18, 22],
+      [-18, 70],
+      [-14, 21],
+      [-23, 20],
+      [-40, 7],
+      [-25, 18],
+      [-6, 67],
+      [-5, 17],
+      [-28, 35],
+      [-36, -53],
+      [-20, -15],
+      [-1, -70],
+      [14, -44],
+      [-8, -40],
+      [-19, -16],
+      [-1, -33],
+      [24, -76],
+      [37, -84],
+      [37, -70],
+      [-28, -95],
+      [-13, -16],
+      [-27, -14],
+      [-22, 3],
+      [-55, 19],
+      [-73, 142],
+      [-32, 68],
+      [-66, 123],
+      [-18, 29],
+      [-56, 62],
+      [-36, 12],
+      [-27, 0],
+      [16, 68],
+      [-16, 34],
+      [-19, 5],
+      [-31, -16],
+      [1, -89],
+      [-24, 2],
+      [12, -42],
+      [-3, -22],
+      [-40, -38],
+      [-47, 71],
+      [2, 27],
+      [-32, 13],
+      [-13, -33],
+      [-25, 1],
+      [-8, 59],
+      [-31, -25],
+      [-29, 46],
+      [-17, 8],
+      [23, 52],
+      [-35, 83],
+      [-62, -64],
+      [-62, -84],
+      [-41, -72],
+      [-24, -107],
+      [-16, 67],
+      [-58, -41],
+      [-70, -92],
+      [-60, -65],
+      [-11, -43],
+      [5, -49],
+      [-60, -49],
+      [-10, -28],
+      [-31, -15],
+      [-20, -48],
+      [-28, -20],
+      [-12, 54],
+      [-49, 37],
+      [-82, -32],
+      [-48, 25],
+      [71, 59],
+      [28, -35],
+      [25, 16],
+      [3, 51],
+      [31, 83],
+      [-1, 61],
+      [-28, 165],
+      [-29, 105],
+      [-75, 92],
+      [-40, 116],
+      [8, 47],
+      [36, -29],
+      [-17, 114],
+      [47, 85],
+      [11, 50],
+      [22, 2],
+      [12, 30],
+      [-30, 73],
+      [-51, 97],
+      [-33, 108],
+      [-54, 95],
+      [-37, 56],
+      [-10, 73],
+      [-11, 23],
+      [-22, 19],
+      [-19, 41],
+      [-12, 39],
+      [-6, 41],
+      [10, 31],
+      [3, 40],
+      [-15, 26],
+      [-15, -21],
+      [-8, -44],
+      [-13, -18],
+      [-20, 43],
+      [-8, 36],
+      [-13, 7],
+      [-17, -14],
+      [-12, -47],
+      [-2, -33],
+      [8, -26],
+      [6, -46],
+      [-6, -58],
+      [-47, -39],
+      [-25, 5],
+      [-23, -7],
+      [-7, -22],
+      [-27, -26],
+      [-57, -47],
+      [-22, -29],
+      [-55, -53],
+      [-71, -39],
+      [-85, -33],
+      [-43, -12],
+      [-45, -6],
+      [-67, 2],
+      [-64, 21],
+      [-15, 9],
+      [-22, 30],
+      [-21, 58],
+      [-6, 39],
+      [12, 16],
+      [21, 6],
+      [-4, 31],
+      [-28, 36],
+      [-48, 30],
+      [-14, 0],
+      [-22, 23],
+      [-54, 104],
+      [-10, 33],
+      [-18, 8],
+      [-34, 38],
+      [-9, 29],
+      [-21, 31],
+      [-32, -6],
+      [-31, 9],
+      [-49, 38],
+      [-42, 51],
+      [-33, 52],
+      [3, 21],
+      [28, 15],
+      [20, 24],
+      [13, 35],
+      [0, 23],
+      [-13, 16],
+      [-29, -1],
+      [-51, -59],
+      [-22, -4],
+      [-49, 8],
+      [-26, 49],
+      [14, 34],
+      [46, 6],
+      [33, 55],
+      [11, 33],
+      [32, 47],
+      [14, -1],
+      [22, 32],
+      [-2, 21],
+      [-26, 33],
+      [-6, 29],
+      [25, 9],
+      [21, 24],
+      [-7, 16],
+      [-33, -13],
+      [-5, 27],
+      [8, 45],
+      [20, 56],
+      [1, 28],
+      [-25, -30],
+      [-9, -22],
+      [7, -14],
+      [-24, -39],
+      [-20, -14],
+      [-19, 9],
+      [-21, 42],
+      [1, 22],
+      [24, 5],
+      [-19, 65],
+      [2, 11],
+      [28, 42],
+      [38, -2],
+      [23, 17],
+      [10, 72],
+      [23, -3],
+      [-10, 32],
+      [-37, -1],
+      [-6, -7],
+      [4, -54],
+      [-25, -1],
+      [-26, 20],
+      [-26, 53],
+      [0, 25],
+      [-13, 3],
+      [-36, 34],
+      [-14, -16],
+      [-5, -76],
+      [4, -40],
+      [-23, -6],
+      [-61, 20],
+      [-17, 25],
+      [-24, 128],
+      [1, 68],
+      [-17, 18],
+      [-51, 14],
+      [-11, -9],
+      [-27, 36],
+      [-17, 61],
+      [-3, 36],
+      [28, 28],
+      [30, 21],
+      [6, 24],
+      [-3, 26],
+      [-23, 34],
+      [-43, 29],
+      [-21, -2],
+      [-13, -20],
+      [-30, -10],
+      [-4, -12],
+      [13, -26],
+      [-19, -11],
+      [-26, 67],
+      [-9, 44],
+      [4, 133],
+      [9, 26],
+      [2, -106],
+      [34, 9],
+      [58, 35],
+      [36, 13],
+      [-1, 20],
+      [-18, 0],
+      [-32, 16],
+      [-30, 26],
+      [-37, 81],
+      [2, 18],
+      [50, 23],
+      [34, -5],
+      [44, 2],
+      [10, 20],
+      [36, 10],
+      [9, 29],
+      [-38, 56],
+      [-18, 57],
+      [-8, 41],
+      [6, 84],
+      [20, 75],
+      [128, 292],
+      [14, 59],
+      [24, 51],
+      [37, 66],
+      [18, 23],
+      [67, 42],
+      [37, 28],
+      [-11, 22],
+      [-37, -18],
+      [-20, 28],
+      [9, 40],
+      [38, -22],
+      [-23, 154],
+      [-9, 44],
+      [12, 55],
+      [25, 25],
+      [7, 58],
+      [-11, 44],
+      [16, 58],
+      [11, 19],
+      [37, 47],
+      [0, 13],
+      [-25, 9],
+      [3, 22],
+      [49, 99],
+      [24, 42],
+      [22, 19],
+      [57, 36],
+      [25, 11],
+      [39, 7],
+      [26, -13],
+      [34, -27],
+      [58, -5],
+      [13, -28],
+      [36, -51],
+      [10, 7],
+      [24, -10],
+      [10, -25],
+      [36, -31],
+      [42, -49],
+      [69, 22],
+      [34, 19],
+      [14, 33],
+      [34, 47],
+      [19, 37],
+      [-1, 39],
+      [6, 22],
+      [19, 16],
+      [17, -1],
+      [22, 21],
+      [30, 69],
+      [43, 115],
+      [4, 37],
+      [22, 56],
+      [28, 43],
+      [-14, 60],
+      [16, 4],
+      [57, -27],
+      [13, 4],
+      [14, -27],
+      [-2, -22],
+      [11, -26],
+      [36, 2],
+      [34, 8],
+      [60, 29],
+      [36, -14],
+      [49, 18],
+      [52, 24],
+      [43, 29],
+      [19, 20],
+      [8, 52],
+      [22, 41],
+      [42, 100],
+      [29, 90],
+      [12, 52],
+      [-7, 72],
+      [-23, 78],
+      [-20, 55],
+      [-18, 35],
+      [-21, 71],
+      [-10, 46],
+      [-12, 118],
+      [3, 15],
+      [-14, 35],
+      [-105, 143],
+      [-15, 30],
+      [-18, 0],
+      [-37, 20],
+      [-35, -4],
+      [6, 99],
+      [27, 35],
+      [26, -18],
+      [33, -11],
+      [57, 1],
+      [23, 13],
+      [-16, 43],
+      [38, 17],
+      [45, 78],
+      [3, 15],
+      [-6, 110],
+      [-37, 73],
+      [-27, 41],
+      [-20, 11],
+      [-36, 36],
+      [-22, 30],
+      [-6, 26],
+      [-17, -2],
+      [-5, -45],
+      [-26, -40],
+      [-19, -58],
+      [-4, -40],
+      [-18, -19],
+      [-31, -11],
+      [-29, 9],
+      [-28, 25],
+      [-70, -103],
+      [-21, -16],
+      [-56, -17],
+      [-25, -16],
+      [-16, -30],
+      [-4, -44],
+      [-37, -37],
+      [-67, -80],
+      [-23, -74],
+      [6, -25],
+      [-6, -75],
+      [-30, -34],
+      [-24, -44],
+      [-9, 31],
+      [-2, 62],
+      [-24, 79],
+      [-1, 29],
+      [-33, 46],
+      [-11, 4],
+      [-26, -11],
+      [9, -72],
+      [-20, -50],
+      [-4, -34],
+      [-24, -14],
+      [-22, 34],
+      [-11, 45],
+      [-38, 38],
+      [-38, 30],
+      [-55, 28],
+      [-85, 5],
+      [-51, -33],
+      [-64, 9],
+      [-58, -9],
+      [-40, -22],
+      [-45, -38],
+      [-91, -87],
+      [-24, -12],
+      [-51, -12],
+      [-74, 36],
+      [-73, 28],
+      [-51, 14],
+      [-73, 23],
+      [-62, 11],
+      [-98, 26],
+      [-18, 8],
+      [-57, 62],
+      [-9, 15],
+      [-27, 95],
+      [0, 75],
+      [17, 14],
+      [8, 32],
+      [-4, 44],
+      [-43, 75],
+      [-58, 54],
+      [-5, 13],
+      [2, 46],
+      [-13, 20],
+      [-47, 43],
+      [-18, 40],
+      [4, 16],
+      [30, -25],
+      [21, -7],
+      [42, 6],
+      [11, 27],
+      [30, 17],
+      [20, 33],
+      [-5, 56],
+      [30, 36],
+      [14, 27],
+      [-11, 25],
+      [-39, 37],
+      [-24, 8],
+      [-36, -18],
+      [-50, 13],
+      [-37, 26],
+      [-45, 24],
+      [-131, 17],
+      [-27, 14],
+      [-36, 37],
+      [-48, 62],
+      [-46, 37],
+      [-24, 24],
+      [-30, 9],
+      [-28, 20],
+      [-8, 41],
+      [-10, 18],
+      [0, 35],
+      [8, 35],
+      [44, 51],
+      [42, 31],
+      [42, 27],
+      [68, 54],
+      [78, 78],
+      [60, 76],
+      [55, 58],
+      [8, 14],
+      [44, 53],
+      [102, 111],
+      [66, 59],
+      [30, -22],
+      [41, -15],
+      [-8, -17],
+      [25, -33],
+      [12, -5],
+      [52, 12],
+      [47, -24],
+      [22, 14],
+      [11, 18],
+      [25, 3],
+      [14, 28],
+      [-12, 24],
+      [-39, 43],
+      [-24, 7],
+      [-30, 1],
+      [-11, 33],
+      [8, 28],
+      [-11, 56],
+      [26, 27],
+      [46, 36],
+      [87, 74],
+      [74, 58],
+      [21, 11],
+      [138, 91],
+      [104, 54],
+      [19, 1],
+      [85, 21],
+      [38, 5],
+      [-1, -21],
+      [27, -21],
+      [20, 10],
+      [33, -11],
+      [11, -40],
+      [0, -29],
+      [-10, -44],
+      [-26, -45],
+      [-8, -36],
+      [2, -71],
+      [13, -27],
+      [5, -37],
+      [-24, -52],
+      [-17, -17],
+      [-42, -22],
+      [1, -24],
+      [25, 0],
+      [31, 16],
+      [14, -34],
+      [12, -44],
+      [28, -44],
+      [3, -25],
+      [50, 2],
+      [28, 17],
+      [14, 19],
+      [53, 5],
+      [20, -16],
+      [42, -8],
+      [26, 8],
+      [32, 19],
+      [84, 26],
+      [48, -54],
+      [31, 10],
+      [24, 19],
+      [25, -32],
+      [21, 5],
+      [42, 35],
+      [21, 29],
+      [7, -12],
+      [33, -2],
+      [28, -22],
+      [40, -16],
+      [18, 63],
+      [30, 48],
+      [15, 51],
+      [3, 28],
+      [18, 77],
+      [20, 29],
+      [50, -1],
+      [10, -36],
+      [42, -9],
+      [37, 33],
+      [18, -3],
+      [15, 14],
+      [-4, 18],
+      [-24, 30],
+      [-8, 26],
+      [-19, 32],
+      [-32, 10],
+      [-51, 25],
+      [-57, 16],
+      [-58, -9],
+      [-40, -46],
+      [-33, -18],
+      [9, 59],
+      [3, 50],
+      [-8, 82],
+      [-58, 80],
+      [-25, 25],
+      [-7, 34],
+      [-24, 53],
+      [-33, 32],
+      [-53, 9],
+      [-27, 10],
+      [-6, 41],
+      [-23, 53],
+      [-18, 28],
+      [-2, 27],
+      [6, 29],
+      [34, 29],
+      [50, 24],
+      [23, -20],
+      [20, -55],
+      [49, -86],
+      [29, -7],
+      [2, -23],
+      [-19, -80],
+      [7, -55],
+      [37, -46],
+      [21, -58],
+      [55, -56],
+      [51, -48],
+      [18, -12],
+      [46, 25],
+      [36, 34],
+      [13, 33],
+      [-5, 17],
+      [-65, -3],
+      [-5, 41],
+      [-19, 21],
+      [-54, 39],
+      [-64, 91],
+      [-6, 13],
+      [1, 94],
+      [20, 45],
+      [3, 32],
+      [29, 124],
+      [38, -27],
+      [26, 6],
+      [-1, 28],
+      [-16, 26],
+      [-33, 23],
+      [-25, 0],
+      [-40, 41],
+      [-28, -5],
+      [-75, -37],
+      [-29, -26],
+      [-8, -16],
+      [-38, -3],
+      [-32, -12],
+      [-8, 44],
+      [-17, -14],
+      [-40, -11],
+      [-22, 50],
+      [-46, -32],
+      [-3, -18],
+      [-16, -14],
+      [-67, 33],
+      [-69, 16],
+      [-66, 25],
+      [-27, 3],
+      [-42, 22],
+      [-15, 16],
+      [-3, 94],
+      [-8, 54],
+      [-24, 108],
+      [-21, 76],
+      [-47, 136],
+      [-25, 57],
+      [-22, 35],
+      [-23, 24],
+      [-108, 93],
+      [-81, 106],
+      [-93, 113],
+      [-44, 49],
+      [-16, 37],
+      [-82, 67],
+      [-54, 17],
+      [-42, 3],
+      [-23, 14],
+      [-33, 32],
+      [-9, 30],
+      [-81, 112],
+      [-39, 41],
+      [-63, 47],
+      [-36, 19],
+      [-33, -1],
+      [-8, 9],
+      [33, 28],
+      [104, 63],
+      [23, 47],
+      [3, 58],
+      [19, 64],
+      [2, 58],
+      [9, 77],
+      [4, 118],
+      [-11, 95],
+      [3, 23],
+      [124, -13],
+      [46, -8],
+      [105, 8],
+      [160, 51],
+      [48, 22],
+      [40, 13],
+      [85, 21],
+      [37, 27],
+      [19, 23],
+      [29, 21],
+      [44, 68],
+      [31, 34],
+      [21, 29],
+      [35, 63],
+      [24, 65],
+      [45, 98],
+      [20, 13],
+      [34, 110],
+      [2, 46],
+      [12, 80],
+      [5, 9],
+      [4, 58],
+      [-4, 21],
+      [-28, 36],
+      [28, 25],
+      [29, 101],
+      [-14, 28],
+      [-23, 10],
+      [6, 36],
+      [29, 52],
+      [21, 16],
+      [21, 49],
+      [43, 81],
+      [8, -1],
+      [30, 73],
+      [4, 32],
+      [-1, 47],
+      [20, 5],
+      [12, 18],
+      [-2, 20],
+      [12, 40],
+      [43, 66],
+      [39, 77],
+      [25, 82],
+      [18, 22],
+      [4, -30],
+      [22, -29],
+      [5, 21],
+      [20, -4],
+      [19, -29],
+      [32, 0],
+      [37, 9],
+      [41, 23],
+      [67, 92],
+      [11, -10],
+      [40, 37],
+      [29, 39],
+      [67, 103],
+      [2, 14],
+      [71, 119],
+      [42, 92],
+      [37, 74],
+      [31, 52],
+      [39, 80],
+      [32, 36],
+      [89, 72],
+      [15, -10],
+      [10, -35],
+      [-8, -13],
+      [-48, -20],
+      [-2, -29],
+      [15, -25],
+      [46, 6],
+      [39, 14],
+      [13, 11],
+      [-8, 27],
+      [93, 6],
+      [75, 27],
+      [-1, 30],
+      [40, -2],
+      [26, 9],
+      [35, 20],
+      [41, 32],
+      [31, 32],
+      [69, 99],
+      [28, 52],
+      [34, 82],
+      [30, 95],
+      [36, 105],
+      [35, 95],
+      [41, 69],
+      [20, 21],
+      [6, -40],
+      [11, -22],
+      [52, -30],
+      [41, 7],
+      [41, -11],
+      [17, -42],
+      [6, -35],
+      [16, 20],
+      [55, 22],
+      [51, -14],
+      [7, -7],
+      [5, -41],
+      [18, -34],
+      [-6, -43],
+      [-23, -27],
+      [-17, -30],
+      [-12, -43],
+      [-17, -28],
+      [-42, -13],
+      [-3, -18],
+      [1, -60],
+      [16, -35],
+      [4, -63],
+      [20, 6],
+      [7, 24],
+      [41, 12],
+      [26, -2],
+      [36, 50],
+      [2, 31],
+      [-6, 35],
+      [2, 32],
+      [17, 32],
+      [13, 46],
+      [23, 18],
+      [18, -39],
+      [11, 14],
+      [-7, 45],
+      [-32, 36],
+      [2, 20],
+      [27, 42],
+      [11, -37],
+      [16, 21],
+      [-11, 39],
+      [13, 25],
+      [80, -55],
+      [53, -53],
+      [19, -38],
+      [-6, -17],
+      [-8, -88],
+      [7, -39],
+      [24, -33],
+      [18, -10],
+      [47, 26],
+      [28, -16],
+      [14, -20],
+      [-2, -22],
+      [17, -5],
+      [29, 37],
+      [17, 38],
+      [11, 59],
+      [11, 21],
+      [39, 22],
+      [65, 6],
+      [27, 13],
+      [49, 52],
+      [29, 11],
+      [37, -15],
+      [72, -1],
+      [52, 17],
+      [41, -6],
+      [61, -16],
+      [27, -41],
+      [-25, -26],
+      [-16, -70],
+      [0, -18],
+      [-22, -37],
+      [10, -48],
+      [17, -38],
+      [17, -4],
+      [8, 16],
+      [23, -17],
+      [35, 3],
+      [26, -6],
+      [13, -14],
+      [14, 8],
+      [49, -5],
+      [26, 19],
+      [-5, -47],
+      [13, -21],
+      [-52, -43],
+      [-4, -25],
+      [16, -17],
+      [33, 14],
+      [67, 19],
+      [34, -2],
+      [47, -14],
+      [23, -17],
+      [12, 9],
+      [-6, 52],
+      [37, -2],
+      [5, 29],
+      [18, 19],
+      [35, 20],
+      [14, 49],
+      [96, 32],
+      [22, 2],
+      [9, -23],
+      [-5, -29],
+      [8, -12],
+      [30, 17],
+      [40, 1],
+      [10, 13],
+      [46, 101],
+      [17, -17],
+      [43, 35],
+      [25, -7],
+      [30, 37],
+      [18, -24],
+      [29, 14],
+      [41, 3],
+      [33, -13],
+      [43, -33],
+      [30, 9],
+      [24, -15],
+      [15, 18],
+      [6, 21],
+      [26, 2],
+      [52, -56],
+      [8, -43],
+      [23, -13],
+      [17, 9],
+      [34, 64],
+      [29, 5],
+      [12, -14],
+      [36, -2],
+      [33, -12],
+      [17, -13],
+      [28, -57],
+      [29, -13],
+      [51, 20],
+      [33, -5],
+      [15, 9],
+      [24, 47],
+      [16, -42],
+      [22, -19],
+      [51, 11],
+      [22, 55],
+      [47, 6],
+      [63, 38],
+      [29, 3],
+      [41, 15],
+      [32, 0],
+      [27, -14],
+      [28, 6],
+      [36, 26],
+      [0, 20],
+      [24, -10],
+      [15, -21],
+      [50, -29],
+      [31, 5],
+      [23, -25],
+      [22, -11],
+      [50, 5],
+      [20, -19],
+      [58, 9],
+      [22, -16],
+      [23, 27],
+      [-1, 15],
+      [38, -3],
+      [36, 15],
+      [30, 81],
+      [33, 25],
+      [32, 17],
+      [23, 37],
+      [15, 8],
+      [30, 99],
+      [38, 11],
+      [2, 13],
+      [48, 31],
+      [2, 16],
+      [26, -5],
+      [5, -41],
+      [7, -10],
+      [41, 21],
+      [7, 23],
+      [16, 17],
+      [19, -2],
+      [34, -23],
+      [17, 9],
+      [0, 18],
+      [34, -7],
+      [64, -8],
+      [92, -39],
+      [37, -30],
+      [7, -18],
+      [41, 9],
+      [72, -30],
+      [35, -47],
+      [23, 25],
+      [22, 11],
+      [44, -5],
+      [70, -30],
+      [41, -29],
+      [10, -34],
+      [23, -23],
+      [36, 16],
+      [-2, 62],
+      [30, 2],
+      [43, -12],
+      [350, -1219],
+      [824, -2825],
+      [1249, -4179],
+      [488, -1601],
+      [28, -91],
+      [211, 14],
+      [-3, 105],
+      [233, -26],
+      [62, 228],
+      [235, 156],
+      [14, -35],
+      [33, -271],
+      [93, -61],
+      [124, -15],
+      [43, 2],
+      [50, -91],
+      [31, -36],
+      [35, -16],
+      [326, -168],
+      [234, -121],
+      [135, -240],
+      [18, -89],
+      [31, 22],
+      [40, 141],
+      [112, 240],
+      [8, 30],
+      [96, 68],
+      [1, 152],
+      [-53, 139],
+      [52, 87],
+      [4, 79],
+      [-14, 34],
+      [-12, 50],
+      [0, 45],
+      [67, 65],
+      [47, 73],
+      [107, 205],
+      [109, -37],
+      [78, -54],
+      [24, 4],
+      [57, -38],
+      [31, -83],
+      [10, -41],
+      [19, -36],
+      [45, -68],
+      [31, -43],
+      [97, 1],
+      [49, -19],
+      [71, -33],
+      [34, 22],
+      [74, -72],
+      [32, -56],
+      [37, -42],
+      [55, -41],
+      [137, -15],
+      [79, -6],
+      [105, -83],
+      [90, -47],
+      [80, -49],
+      [36, -83],
+      [73, -61],
+      [83, -52],
+      [34, -23],
+      [102, -123],
+      [148, -98],
+      [103, -106],
+      [75, -57],
+      [88, -87],
+      [143, -99],
+      [103, -99],
+      [60, -96],
+      [68, -33],
+      [65, -110],
+      [65, -59],
+      [39, -5],
+      [38, -26],
+      [75, -90],
+      [56, -26],
+      [65, 46],
+      [96, -29],
+      [147, -8],
+      [52, -16],
+      [144, 55],
+      [109, -49],
+      [43, 6],
+      [35, 15],
+      [60, -84],
+      [95, 13],
+      [51, 65],
+      [65, -56],
+      [30, -34],
+      [30, -78],
+      [10, -113],
+      [-9, -29],
+      [6, -48],
+      [24, -50],
+      [30, -21],
+      [37, -104],
+      [57, -74],
+      [35, -26],
+      [58, -105],
+      [33, -22],
+      [9, -16],
+      [-12, -122],
+      [2, -67],
+      [17, -93],
+      [2, -119],
+      [-5, -71],
+      [-22, -125],
+      [-20, -77],
+      [-24, -34],
+      [-2, -23],
+      [22, -13],
+      [-20, -41],
+      [-33, 20],
+      [-23, 46],
+      [-29, 6],
+      [15, -39],
+      [-11, -33],
+      [-15, -6],
+      [-30, 4],
+      [-29, 26],
+      [-4, 17],
+      [-48, 85],
+      [-10, 37],
+      [-39, 8],
+      [-11, 36],
+      [-8, 45],
+      [-50, 27],
+      [-32, 29],
+      [-18, 32],
+      [23, 87],
+      [3, 36],
+      [-7, 19],
+      [7, 17],
+      [26, 10],
+      [-33, 61],
+      [-46, 57],
+      [-7, 17],
+      [-5, 61],
+      [-12, 41],
+      [-32, 61],
+      [-51, 90],
+      [-41, 45],
+      [-38, 30],
+      [-87, 61],
+      [-53, 23],
+      [-37, 27],
+      [-8, -9],
+      [10, -28],
+      [59, -27],
+      [67, -45],
+      [41, -56],
+      [63, -49],
+      [25, -32],
+      [40, -67],
+      [0, -24],
+      [-10, -31],
+      [26, -69],
+      [44, -70],
+      [15, -5],
+      [26, -35],
+      [-12, -18],
+      [-44, 53],
+      [-6, -29],
+      [19, -26],
+      [22, -66],
+      [-4, -44],
+      [-14, -83],
+      [-19, -21],
+      [-30, -1],
+      [-26, 16],
+      [-2, 31],
+      [4, 52],
+      [-10, 74],
+      [-18, 29],
+      [-35, -37],
+      [13, -24],
+      [15, -6],
+      [14, -20],
+      [3, -44],
+      [-10, -34],
+      [-20, -51],
+      [-12, -7],
+      [-47, 48],
+      [1, 14],
+      [-21, 9],
+      [-8, -10],
+      [9, -37],
+      [-9, -9],
+      [-58, 18],
+      [-32, -3],
+      [-24, 12],
+      [-13, 18],
+      [-68, 26],
+      [-28, 65],
+      [14, 35],
+      [23, 25],
+      [15, 54],
+      [-13, 23],
+      [-16, -2],
+      [-22, 19],
+      [-13, 64],
+      [-28, 23],
+      [-2, 23],
+      [22, 41],
+      [-5, 23],
+      [-21, -1],
+      [-7, -19],
+      [-30, 61],
+      [1, 29],
+      [-22, 10],
+      [-17, -33],
+      [-24, -22],
+      [25, -32],
+      [22, -2],
+      [8, -11],
+      [16, -108],
+      [20, -51],
+      [-3, -84],
+      [-26, 7],
+      [-7, -16],
+      [45, -72],
+      [1, -47],
+      [-8, -2],
+      [-49, 19],
+      [-26, -9],
+      [-20, 2],
+      [-25, 14],
+      [-65, 101],
+      [-28, 19],
+      [20, 21],
+      [3, 23],
+      [-19, 48],
+      [25, 33],
+      [3, 28],
+      [-10, 48],
+      [-24, 91],
+      [-49, 79],
+      [-5, 54],
+      [17, -6],
+      [2, 49],
+      [-11, 73],
+      [-10, 13],
+      [-22, -14],
+      [-6, -18],
+      [14, -54],
+      [-19, -46],
+      [-9, -74],
+      [61, -83],
+      [2, -44],
+      [-31, -12],
+      [-21, -23],
+      [-2, -49],
+      [14, -19],
+      [0, -18],
+      [-20, -16],
+      [-23, 21],
+      [-31, 70],
+      [-48, 55],
+      [-39, 33],
+      [-17, 2],
+      [-19, -22],
+      [-15, -29],
+      [2, -28],
+      [-62, 58],
+      [-20, 29],
+      [-27, 74],
+      [3, 29],
+      [22, 8],
+      [15, 20],
+      [-12, 64],
+      [2, 56],
+      [30, 41],
+      [11, 1],
+      [33, -26],
+      [16, 4],
+      [-12, 39],
+      [-25, 33],
+      [-57, 95],
+      [12, 11],
+      [62, -5],
+      [22, -27],
+      [5, -19],
+      [28, -16],
+      [-4, 33],
+      [-35, 50],
+      [-34, 15],
+      [-13, -10],
+      [-46, 22],
+      [-23, 42],
+      [-5, 24],
+      [12, 23],
+      [2, 40],
+      [-11, 30],
+      [-12, 7],
+      [-15, -29],
+      [-13, 2],
+      [-34, -24],
+      [-44, 7],
+      [-6, 30],
+      [13, 78],
+      [11, 52],
+      [-11, 4],
+      [-19, -19],
+      [-15, -69],
+      [6, -16],
+      [-14, -14],
+      [-43, 0],
+      [-79, 18],
+      [-44, 45],
+      [-34, 14],
+      [-34, 29],
+      [-14, 25],
+      [23, 30],
+      [6, 37],
+      [-24, 35],
+      [-13, 3],
+      [-10, -58],
+      [-34, -5],
+      [-18, -9],
+      [-31, 9],
+      [-24, -7],
+      [-26, -18],
+      [-22, 30],
+      [-22, 1],
+      [-21, -45],
+      [-108, 9],
+      [-37, 57],
+      [-6, 43],
+      [3, 36],
+      [15, 9],
+      [20, -10],
+      [47, 38],
+      [3, 19],
+      [-6, 31],
+      [-34, -20],
+      [-50, -5],
+      [-19, 18],
+      [0, 18],
+      [-65, 78],
+      [-18, 56],
+      [9, 16],
+      [-6, 22],
+      [-13, 0],
+      [-18, -32],
+      [-29, 0],
+      [-42, 31],
+      [-11, 22],
+      [-15, 73],
+      [29, 22],
+      [37, -15],
+      [57, 14],
+      [92, -7],
+      [31, -6],
+      [-7, 24],
+      [-48, 18],
+      [-22, 4],
+      [-13, -8],
+      [-97, 27],
+      [-46, 18],
+      [-3, 13],
+      [-34, 67],
+      [-17, -10],
+      [-3, -20],
+      [19, -59],
+      [-29, -17],
+      [-60, 11],
+      [-141, 116],
+      [-52, 36],
+      [-76, 98],
+      [-194, -86],
+      [-163, 88],
+      [-151, 83],
+      [-206, 380],
+      [-35, 63],
+      [18, 10],
+      [-53, 96],
+      [-32, 47],
+      [-42, 52],
+      [-61, 50],
+      [-49, 49],
+      [13, -54],
+      [19, -32],
+      [18, -14],
+      [20, -1],
+      [37, -51],
+      [1, -67],
+      [23, -68],
+      [34, -11],
+      [29, -42],
+      [19, -62],
+      [-9, -21],
+      [49, -58],
+      [31, -25],
+      [22, -46],
+      [83, -97],
+      [13, -27],
+      [-24, -4],
+      [7, -22],
+      [54, -66],
+      [46, -64],
+      [41, -66],
+      [19, -39],
+      [-14, -31],
+      [8, -29],
+      [33, -61],
+      [-33, -9],
+      [-35, 10],
+      [-23, -18],
+      [-15, 2],
+      [-26, 18],
+      [-44, 44],
+      [-42, 65],
+      [-6, -4]
+    ],
+    [
+      [41796, 12069],
+      [11, -2],
+      [54, -36],
+      [22, -25],
+      [14, -45],
+      [163, -106],
+      [52, -54],
+      [46, -25],
+      [17, -31],
+      [20, -11],
+      [18, 2],
+      [22, 17],
+      [18, 2],
+      [71, -33],
+      [15, -13],
+      [27, -4],
+      [69, -29],
+      [49, -25],
+      [79, -46],
+      [38, -32],
+      [120, -78],
+      [70, -40],
+      [26, -7],
+      [26, -20],
+      [64, -66],
+      [77, -56],
+      [22, -30],
+      [31, -24],
+      [68, -71],
+      [10, -7],
+      [46, -61],
+      [9, -29],
+      [32, -37],
+      [25, -12],
+      [27, -48],
+      [-1, -59],
+      [-6, -30],
+      [19, -100],
+      [-3, -11],
+      [13, -88],
+      [15, -26],
+      [15, -5],
+      [29, 6],
+      [31, 26],
+      [74, -4],
+      [22, -29],
+      [26, -52],
+      [18, -47],
+      [-1, -47],
+      [13, -79],
+      [42, -38],
+      [26, -4],
+      [4, -33],
+      [10, -23],
+      [28, -20],
+      [22, -29],
+      [45, -42],
+      [59, -38],
+      [45, -22],
+      [33, -29],
+      [21, -3],
+      [26, -20],
+      [13, -29],
+      [-12, -96],
+      [-24, -44],
+      [-48, -64],
+      [-32, -28],
+      [-68, -71],
+      [-24, -39],
+      [-33, -40],
+      [-25, -41],
+      [-69, -43],
+      [-73, -34],
+      [-89, -63],
+      [-34, -36],
+      [-46, -17],
+      [-25, 2],
+      [-61, -18],
+      [-76, 30],
+      [-40, 10],
+      [-58, -18],
+      [-27, -39],
+      [-47, -40],
+      [-9, -42],
+      [-19, -21],
+      [-31, -16],
+      [-23, -2],
+      [-46, -32],
+      [-23, -43],
+      [-33, -46],
+      [-21, -12],
+      [-72, -20],
+      [-16, -13],
+      [8, -21],
+      [-29, -26],
+      [-22, -57],
+      [-21, -22],
+      [9, -33],
+      [4, -59],
+      [-12, -35],
+      [-26, -25],
+      [-18, -59],
+      [5, -47],
+      [-6, -23],
+      [-23, -2],
+      [-17, -26],
+      [-19, -46],
+      [-32, -41],
+      [-23, -18],
+      [-32, 16],
+      [-17, 45],
+      [-73, 77],
+      [-76, 36],
+      [-92, 86],
+      [-94, 30],
+      [-57, 35],
+      [-16, 50],
+      [-42, 66],
+      [-9, 1],
+      [-39, 105],
+      [-5, 89],
+      [4, 158],
+      [-7, 32],
+      [-5, 73],
+      [7, 41],
+      [0, 62],
+      [-7, 98],
+      [-6, 28],
+      [-30, 78],
+      [-37, 61],
+      [4, 37],
+      [-29, 40],
+      [-8, 21],
+      [-12, 76],
+      [1, 27],
+      [-17, 17],
+      [-15, -8],
+      [-29, 20],
+      [-9, 55],
+      [-26, 95],
+      [-20, 24],
+      [-14, 79],
+      [-21, 57],
+      [-49, 91],
+      [-62, 22],
+      [-15, 24],
+      [0, 25],
+      [10, 7],
+      [-23, 48],
+      [-34, 36],
+      [-7, 39],
+      [-27, 32],
+      [9, 29],
+      [5, 37],
+      [-3, 61],
+      [45, 53],
+      [24, 38],
+      [35, 71],
+      [31, 23],
+      [29, 3],
+      [18, -13],
+      [26, 16],
+      [-5, 41],
+      [14, 30],
+      [17, 64],
+      [12, 27],
+      [-1, 23],
+      [42, 55],
+      [14, 37],
+      [27, 19],
+      [11, -3],
+      [5, 50],
+      [-4, 78],
+      [-8, 25],
+      [-52, 72],
+      [-37, 43],
+      [-42, 74],
+      [-42, 102],
+      [-34, 154],
+      [-2, 78],
+      [14, 49],
+      [28, 31],
+      [38, 8],
+      [83, -33],
+      [59, -38],
+      [9, -2]
+    ],
+    [
+      [32208, 16266],
+      [24, -5],
+      [8, -49],
+      [-22, 5],
+      [-10, 49]
+    ],
+    [
+      [32932, 16965],
+      [4, 9],
+      [7, 83],
+      [29, 14],
+      [46, 2],
+      [28, -20],
+      [17, -42],
+      [-24, -8],
+      [-17, -54],
+      [-4, -71],
+      [16, -44],
+      [7, -38],
+      [-34, -27],
+      [-46, -17],
+      [-43, -8],
+      [-24, -19],
+      [-19, -44],
+      [-21, -62],
+      [-18, -85],
+      [2, -24],
+      [-25, 12],
+      [-35, 33],
+      [-35, 53],
+      [-3, 87],
+      [14, 94],
+      [29, 32],
+      [37, 60],
+      [40, 21],
+      [53, 37],
+      [19, 26]
+    ],
+    [
+      [34168, 17556],
+      [43, 25],
+      [39, -22],
+      [6, -8],
+      [36, -16],
+      [26, 6],
+      [29, -26],
+      [54, -59],
+      [23, -81],
+      [23, -17],
+      [11, -50],
+      [2, -43],
+      [-28, -83],
+      [-2, -45],
+      [-19, -21],
+      [-6, -20],
+      [-1, -45],
+      [34, -146],
+      [1, -31],
+      [-27, -25],
+      [-7, -28],
+      [-44, -36],
+      [-41, -66],
+      [-29, -32],
+      [-35, -31],
+      [-53, 32],
+      [-38, 18],
+      [-52, 8],
+      [-72, 6],
+      [-57, 23],
+      [-49, 1],
+      [-59, 53],
+      [-25, 42],
+      [-54, 65],
+      [-65, 21],
+      [-31, 20],
+      [-76, 31],
+      [-17, 16],
+      [-53, 85],
+      [-10, 34],
+      [-2, 83],
+      [9, 22],
+      [52, 69],
+      [8, 38],
+      [6, 70],
+      [11, 23],
+      [45, 31],
+      [56, 10],
+      [104, 89],
+      [42, 46],
+      [45, 3],
+      [22, -9],
+      [18, -25],
+      [11, 6],
+      [30, -12],
+      [10, -20],
+      [16, -6],
+      [11, 12],
+      [-4, 38],
+      [20, 18],
+      [17, -2],
+      [27, -18],
+      [20, 5],
+      [28, -8],
+      [21, -18]
+    ],
+    [
+      [39122, 14613],
+      [31, -10],
+      [19, 17],
+      [4, 47],
+      [12, 27],
+      [24, -17],
+      [28, -54],
+      [16, -42],
+      [85, -34],
+      [10, 20],
+      [58, -23],
+      [49, 6],
+      [35, 16],
+      [94, 9],
+      [57, -13],
+      [16, -38],
+      [32, 4],
+      [13, -7],
+      [1, -24],
+      [-16, -50],
+      [-36, -59],
+      [-45, -46],
+      [-26, -20],
+      [-4, -14],
+      [-74, -29],
+      [-56, -11],
+      [-19, -21],
+      [-29, 8],
+      [-8, 11],
+      [-115, 37],
+      [-99, 45],
+      [-58, 23],
+      [-13, 18],
+      [-83, 25],
+      [-30, 3],
+      [-55, -7],
+      [-34, -14],
+      [-208, -4],
+      [-86, 21],
+      [-32, 24],
+      [18, 68],
+      [5, 35],
+      [14, 29],
+      [17, 12],
+      [24, 29],
+      [12, 41],
+      [-4, 43],
+      [-29, 36],
+      [9, 16],
+      [32, -18],
+      [56, -1],
+      [19, -8],
+      [23, -31],
+      [69, -21],
+      [24, 3],
+      [31, -4],
+      [30, -12],
+      [29, 0],
+      [67, -27],
+      [46, 3],
+      [50, -17]
+    ],
+    [
+      [40243, 12855],
+      [-30, -1],
+      [-46, -23],
+      [-38, 34],
+      [-49, -22],
+      [-19, -16],
+      [-11, 10],
+      [-38, -16],
+      [-28, 6],
+      [-46, 55],
+      [8, 37],
+      [27, 38],
+      [51, 19],
+      [63, 52],
+      [5, 17],
+      [60, 30],
+      [19, -6],
+      [30, -27],
+      [25, -39],
+      [-8, -29],
+      [-4, -66],
+      [33, -22],
+      [-4, -31]
+    ],
+    [
+      [39943, 14158],
+      [8, 24],
+      [27, -5],
+      [27, -34],
+      [35, -12],
+      [35, -30],
+      [47, -99],
+      [23, -34],
+      [13, -10],
+      [7, -28],
+      [23, -16],
+      [18, -49],
+      [29, -47],
+      [14, -10],
+      [93, 39],
+      [67, 17],
+      [25, 33],
+      [31, 20],
+      [21, -7],
+      [30, 27],
+      [35, -21],
+      [39, 11],
+      [24, -27],
+      [22, 7],
+      [40, -9],
+      [26, -17],
+      [5, -36],
+      [23, -5],
+      [7, -24],
+      [92, -82],
+      [16, -30],
+      [66, -14],
+      [11, -36],
+      [33, -54],
+      [47, 10],
+      [65, -58],
+      [52, -9],
+      [61, -35],
+      [3, -16],
+      [33, -35],
+      [9, -23],
+      [-1, -23],
+      [8, -37],
+      [3, -56],
+      [-19, -62],
+      [-19, -31],
+      [-31, -6],
+      [-15, -25],
+      [-18, -46],
+      [-12, -5],
+      [-42, 8],
+      [-13, -15],
+      [-55, -35],
+      [-15, -15],
+      [-23, -9],
+      [-12, 15],
+      [-41, -3],
+      [-6, -8],
+      [-39, 22],
+      [-32, -7],
+      [-27, -13],
+      [-18, -17],
+      [-52, -34],
+      [-33, -11],
+      [-15, -19],
+      [-17, -6],
+      [-39, 7],
+      [-54, -1],
+      [-14, -12],
+      [-33, -7],
+      [-74, 23],
+      [-9, 33],
+      [-27, 0],
+      [-27, 26],
+      [1, 15],
+      [-25, 74],
+      [9, 35],
+      [-38, 180],
+      [-18, 30],
+      [-13, 45],
+      [-13, 72],
+      [-21, 24],
+      [-33, 21],
+      [-32, 5],
+      [-17, -13],
+      [-13, -34],
+      [-23, -5],
+      [-194, 120],
+      [-106, 132],
+      [-25, 48],
+      [-5, 45],
+      [-27, 38],
+      [0, 83],
+      [16, 70],
+      [20, 67],
+      [25, 4],
+      [15, 27],
+      [-3, 20],
+      [44, -2],
+      [15, -8]
+    ],
+    [
+      [39217, 13952],
+      [38, 4],
+      [37, -17],
+      [65, -6],
+      [37, -9],
+      [43, -21],
+      [132, -139],
+      [27, -35],
+      [38, -65],
+      [6, -44],
+      [-10, -36],
+      [-30, -76],
+      [-56, -22],
+      [-36, -24],
+      [-34, -12],
+      [-76, 3],
+      [-34, -8],
+      [-40, 57],
+      [-28, 79],
+      [0, 74],
+      [-9, 29],
+      [-46, 73],
+      [-91, 64],
+      [-12, 19],
+      [-12, 52],
+      [3, 23],
+      [40, 32],
+      [48, 5]
+    ],
+    [
+      [37119, 15032],
+      [-81, -14],
+      [-28, 0],
+      [-20, 11],
+      [-25, 54],
+      [18, 10],
+      [-17, 21],
+      [-10, -10],
+      [-24, 75],
+      [-19, 39],
+      [-48, 60],
+      [-36, 23],
+      [-15, 67],
+      [-25, 48],
+      [-59, 59],
+      [-31, 47],
+      [-9, 94],
+      [-12, 42],
+      [-37, 47],
+      [-61, 51],
+      [3, 7],
+      [43, 8],
+      [120, 1],
+      [41, -12],
+      [83, 7],
+      [33, 23],
+      [-7, 29],
+      [47, 50],
+      [20, 39],
+      [1, 38],
+      [42, 64],
+      [31, 38],
+      [47, 18],
+      [8, 11],
+      [35, -1],
+      [49, -62],
+      [22, -54],
+      [34, -48],
+      [9, -57],
+      [30, -48],
+      [22, -15],
+      [54, -82],
+      [3, -38],
+      [21, 7],
+      [29, -17],
+      [39, -73],
+      [5, -46],
+      [-22, -5],
+      [-3, -25],
+      [25, -87],
+      [11, -19],
+      [32, -12],
+      [18, -15],
+      [8, -25],
+      [19, -28],
+      [42, -39],
+      [21, 13],
+      [1, 26],
+      [-13, 58],
+      [17, 19],
+      [52, -9],
+      [13, -9],
+      [4, -29],
+      [-11, -52],
+      [11, -52],
+      [31, -4],
+      [32, -53],
+      [-2, -37],
+      [13, -40],
+      [35, -55],
+      [68, -54],
+      [19, 1],
+      [0, -31],
+      [-68, -68],
+      [2, -19],
+      [-27, -10],
+      [-12, 50],
+      [-19, 15],
+      [-65, -19],
+      [-15, 3],
+      [-24, -12],
+      [-24, -33],
+      [-30, -5],
+      [-23, 9],
+      [-27, 50],
+      [-30, 28],
+      [-90, 48],
+      [-24, 55],
+      [-12, 5],
+      [-23, -26],
+      [20, -34],
+      [-79, 7],
+      [-4, 31],
+      [-34, 26],
+      [-37, -24],
+      [-64, -19],
+      [-37, -6]
+    ]
+  ],
+  "transform": {
+    "scale": [0.000537370115134944, 0.0003963271122083071],
+    "translate": [-124.731828, 20.63360029907278]
+  },
+  "objects": {
+    "usa": {
+      "type": "GeometryCollection",
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 113594.084,
+            "GEO_ID": "0400000US04",
+            "ISO": "US-AZ",
+            "LSAD": "",
+            "NAME": "Arizona",
+            "NAME_1": "Arizona",
+            "STATE": "AZ"
+          },
+          "id": 0
+        },
+        {
+          "arcs": [[5, 6, 7, 8, 9, 10]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 52035.477,
+            "GEO_ID": "0400000US05",
+            "ISO": "US-AR",
+            "LSAD": "",
+            "NAME": "Arkansas",
+            "NAME_1": "Arkansas",
+            "STATE": "AR"
+          },
+          "id": 1
+        },
+        {
+          "arcs": [
+            [[11]],
+            [[12]],
+            [[13]],
+            [[14]],
+            [[15]],
+            [[16]],
+            [[17]],
+            [[18]],
+            [[19]],
+            [[20]],
+            [[21, 22, -3, 23]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 155779.22,
+            "GEO_ID": "0400000US06",
+            "ISO": "US-CA",
+            "LSAD": "",
+            "NAME": "California",
+            "NAME_1": "California",
+            "STATE": "CA"
+          },
+          "id": 2
+        },
+        {
+          "arcs": [[24, 25, 26, 27, 28, 29]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 103641.888,
+            "GEO_ID": "0400000US08",
+            "ISO": "US-CO",
+            "LSAD": "",
+            "NAME": "Colorado",
+            "NAME_1": "Colorado",
+            "STATE": "CO"
+          },
+          "id": 3
+        },
+        {
+          "arcs": [[30, 31, 32, 33]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 4842.355,
+            "GEO_ID": "0400000US09",
+            "ISO": "US-CT",
+            "LSAD": "",
+            "NAME": "Connecticut",
+            "NAME_1": "Connecticut",
+            "STATE": "CT"
+          },
+          "id": 4
+        },
+        {
+          "arcs": [[34, 35]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 61.048,
+            "GEO_ID": "0400000US11",
+            "ISO": "US-DC",
+            "LSAD": "",
+            "NAME": "District of Columbia",
+            "NAME_1": "District of Columbia",
+            "STATE": "DC"
+          },
+          "id": 5
+        },
+        {
+          "arcs": [[36, 37, 38, 39, 40, 41]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 57513.485,
+            "GEO_ID": "0400000US13",
+            "ISO": "US-GA",
+            "LSAD": "",
+            "NAME": "Georgia",
+            "NAME_1": "Georgia",
+            "STATE": "GA"
+          },
+          "id": 6
+        },
+        {
+          "arcs": [[42, 43, 44, 45, 46, 47]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 55518.93,
+            "GEO_ID": "0400000US17",
+            "ISO": "US-IL",
+            "LSAD": "",
+            "NAME": "Illinois",
+            "NAME_1": "Illinois",
+            "STATE": "IL"
+          },
+          "id": 7
+        },
+        {
+          "arcs": [[48, -44, 49, 50, 51]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 35826.109,
+            "GEO_ID": "0400000US18",
+            "ISO": "US-IN",
+            "LSAD": "",
+            "NAME": "Indiana",
+            "NAME_1": "Indiana",
+            "STATE": "IN"
+          },
+          "id": 8
+        },
+        {
+          "arcs": [[[52]], [[-11, 53, 54, 55]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 43203.905,
+            "GEO_ID": "0400000US22",
+            "ISO": "US-LA",
+            "LSAD": "",
+            "NAME": "Louisiana",
+            "NAME_1": "Louisiana",
+            "STATE": "LA"
+          },
+          "id": 9
+        },
+        {
+          "arcs": [[56, 57, 58, 59, 60]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 79626.743,
+            "GEO_ID": "0400000US27",
+            "ISO": "US-MN",
+            "LSAD": "",
+            "NAME": "Minnesota",
+            "NAME_1": "Minnesota",
+            "STATE": "MN"
+          },
+          "id": 10
+        },
+        {
+          "arcs": [[[61]], [[62]], [[63]], [[64]], [[65, 66, -54, -10, 67]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 46923.274,
+            "GEO_ID": "0400000US28",
+            "ISO": "US-MS",
+            "LSAD": "",
+            "NAME": "Mississippi",
+            "NAME_1": "Mississippi",
+            "STATE": "MS"
+          },
+          "id": 11
+        },
+        {
+          "arcs": [[68, 69, 70, 71, 72]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 145545.801,
+            "GEO_ID": "0400000US30",
+            "ISO": "US-MT",
+            "LSAD": "",
+            "NAME": "Montana",
+            "NAME_1": "Montana",
+            "STATE": "MT"
+          },
+          "id": 12
+        },
+        {
+          "arcs": [[73, -1, -28, 74, 75]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 121298.148,
+            "GEO_ID": "0400000US35",
+            "ISO": "US-NM",
+            "LSAD": "",
+            "NAME": "New Mexico",
+            "NAME_1": "New Mexico",
+            "STATE": "NM"
+          },
+          "id": 13
+        },
+        {
+          "arcs": [[-71, 76, -59, 77]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 69000.798,
+            "GEO_ID": "0400000US38",
+            "ISO": "US-ND",
+            "LSAD": "",
+            "NAME": "North Dakota",
+            "NAME_1": "North Dakota",
+            "STATE": "ND"
+          },
+          "id": 14
+        },
+        {
+          "arcs": [[-75, -27, 78, 79, -7, 80]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 68594.921,
+            "GEO_ID": "0400000US40",
+            "ISO": "US-OK",
+            "LSAD": "",
+            "NAME": "Oklahoma",
+            "NAME_1": "Oklahoma",
+            "STATE": "OK"
+          },
+          "id": 15
+        },
+        {
+          "arcs": [[81, 82, 83, 84, 85, 86, 87]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 44742.703,
+            "GEO_ID": "0400000US42",
+            "ISO": "US-PA",
+            "LSAD": "",
+            "NAME": "Pennsylvania",
+            "NAME_1": "Pennsylvania",
+            "STATE": "PA"
+          },
+          "id": 16
+        },
+        {
+          "arcs": [[88, -42, 89, -68, -9, 90, 91, 92, 93, 94]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 41234.896,
+            "GEO_ID": "0400000US47",
+            "ISO": "US-TN",
+            "LSAD": "",
+            "NAME": "Tennessee",
+            "NAME_1": "Tennessee",
+            "STATE": "TN"
+          },
+          "id": 17
+        },
+        {
+          "arcs": [[[95, 96]], [[97]], [[98, 99]], [[100, -36, 101, 102, 103, -95, 104, 105]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 39490.086,
+            "GEO_ID": "0400000US51",
+            "ISO": "US-VA",
+            "LSAD": "",
+            "NAME": "Virginia",
+            "NAME_1": "Virginia",
+            "STATE": "VA"
+          },
+          "id": 18
+        },
+        {
+          "arcs": [[[106, 107]], [[108, 109, 110, -87]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 1948.543,
+            "GEO_ID": "0400000US10",
+            "ISO": "US-DE",
+            "LSAD": "",
+            "NAME": "Delaware",
+            "NAME_1": "Delaware",
+            "STATE": "DE"
+          },
+          "id": 19
+        },
+        {
+          "arcs": [[111, 112, -82, 113, -106]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 24038.21,
+            "GEO_ID": "0400000US54",
+            "ISO": "US-WV",
+            "LSAD": "",
+            "NAME": "West Virginia",
+            "NAME_1": "West Virginia",
+            "STATE": "WV"
+          },
+          "id": 20
+        },
+        {
+          "arcs": [[[114]], [[115]], [[116]], [[117]], [[-48, 118, -61, 119, 120, 121]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 54157.805,
+            "GEO_ID": "0400000US55",
+            "ISO": "US-WI",
+            "LSAD": "",
+            "NAME": "Wisconsin",
+            "NAME_1": "Wisconsin",
+            "STATE": "WI"
+          },
+          "id": 21
+        },
+        {
+          "arcs": [[122, -30, 123, 124, -73, 125]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 97093.141,
+            "GEO_ID": "0400000US56",
+            "ISO": "US-WY",
+            "LSAD": "",
+            "NAME": "Wyoming",
+            "NAME_1": "Wyoming",
+            "STATE": "WY"
+          },
+          "id": 22
+        },
+        {
+          "arcs": [[[126]], [[-41, 127, 128, -66, -90]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 50645.326,
+            "GEO_ID": "0400000US01",
+            "ISO": "US-AL",
+            "LSAD": "",
+            "NAME": "Alabama",
+            "NAME_1": "Alabama",
+            "STATE": "AL"
+          },
+          "id": 23
+        },
+        {
+          "arcs": [
+            [[129]],
+            [[130]],
+            [[131]],
+            [[132]],
+            [[133]],
+            [[134]],
+            [[135]],
+            [[136]],
+            [[137]],
+            [[138]],
+            [[139]],
+            [[140]],
+            [[141, -128, -40]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 53624.759,
+            "GEO_ID": "0400000US12",
+            "ISO": "US-FL",
+            "LSAD": "",
+            "NAME": "Florida",
+            "NAME_1": "Florida",
+            "STATE": "FL"
+          },
+          "id": 24
+        },
+        {
+          "arcs": [[-125, 142, 143, 144, 145, 146, -69]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 82643.117,
+            "GEO_ID": "0400000US16",
+            "ISO": "US-ID",
+            "LSAD": "",
+            "NAME": "Idaho",
+            "NAME_1": "Idaho",
+            "STATE": "ID"
+          },
+          "id": 25
+        },
+        {
+          "arcs": [[-26, 147, 148, -79]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 81758.717,
+            "GEO_ID": "0400000US20",
+            "ISO": "US-KS",
+            "LSAD": "",
+            "NAME": "Kansas",
+            "NAME_1": "Kansas",
+            "STATE": "KS"
+          },
+          "id": 26
+        },
+        {
+          "arcs": [[[149]], [[-100, 150]], [[-102, -35, -101, -114, -88, -111, 151, -97, 152]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 9707.241,
+            "GEO_ID": "0400000US24",
+            "ISO": "US-MD",
+            "LSAD": "",
+            "NAME": "Maryland",
+            "NAME_1": "Maryland",
+            "STATE": "MD"
+          },
+          "id": 27
+        },
+        {
+          "arcs": [[153, 154, -108, 155, -109, -86]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 7354.22,
+            "GEO_ID": "0400000US34",
+            "ISO": "US-NJ",
+            "LSAD": "",
+            "NAME": "New Jersey",
+            "NAME_1": "New Jersey",
+            "STATE": "NJ"
+          },
+          "id": 28
+        },
+        {
+          "arcs": [[[156]], [[157]], [[158, 159, -37, -89, -104]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 48617.905,
+            "GEO_ID": "0400000US37",
+            "ISO": "US-NC",
+            "LSAD": "",
+            "NAME": "North Carolina",
+            "NAME_1": "North Carolina",
+            "STATE": "NC"
+          },
+          "id": 29
+        },
+        {
+          "arcs": [[160, -38, -160]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 30060.696,
+            "GEO_ID": "0400000US45",
+            "ISO": "US-SC",
+            "LSAD": "",
+            "NAME": "South Carolina",
+            "NAME_1": "South Carolina",
+            "STATE": "SC"
+          },
+          "id": 30
+        },
+        {
+          "arcs": [
+            [[161]],
+            [[162]],
+            [[163]],
+            [[164]],
+            [[165]],
+            [[166]],
+            [[167]],
+            [[168]],
+            [[169]],
+            [[-146, 170, 171]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 66455.521,
+            "GEO_ID": "0400000US53",
+            "ISO": "US-WA",
+            "LSAD": "",
+            "NAME": "Washington",
+            "NAME_1": "Washington",
+            "STATE": "WA"
+          },
+          "id": 31
+        },
+        {
+          "arcs": [[172, 173, 174, 175]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 9216.657,
+            "GEO_ID": "0400000US50",
+            "ISO": "US-VT",
+            "LSAD": "",
+            "NAME": "Vermont",
+            "NAME_1": "Vermont",
+            "STATE": "VT"
+          },
+          "id": 32
+        },
+        {
+          "arcs": [[-124, -29, -5, 176, -143]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 82169.62,
+            "GEO_ID": "0400000US49",
+            "ISO": "US-UT",
+            "LSAD": "",
+            "NAME": "Utah",
+            "NAME_1": "Utah",
+            "STATE": "UT"
+          },
+          "id": 33
+        },
+        {
+          "arcs": [[-47, 177, 178, 179, -57, -119]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 55857.13,
+            "GEO_ID": "0400000US19",
+            "ISO": "US-IA",
+            "LSAD": "",
+            "NAME": "Iowa",
+            "NAME_1": "Iowa",
+            "STATE": "IA"
+          },
+          "id": 34
+        },
+        {
+          "arcs": [[[180, -92]], [[-105, -94, 181, -45, -49, 182, -112]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 39486.338,
+            "GEO_ID": "0400000US21",
+            "ISO": "US-KY",
+            "LSAD": "",
+            "NAME": "Kentucky",
+            "NAME_1": "Kentucky",
+            "STATE": "KY"
+          },
+          "id": 35
+        },
+        {
+          "arcs": [
+            [[183]],
+            [[184]],
+            [[185]],
+            [[186]],
+            [[187]],
+            [[188]],
+            [[189]],
+            [[190]],
+            [[191]],
+            [[192]],
+            [[193]],
+            [[194]],
+            [[195]],
+            [[196]],
+            [[197]],
+            [[198]],
+            [[199]],
+            [[200]],
+            [[201]],
+            [[202]],
+            [[203]],
+            [[204]],
+            [[205, 206]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 30842.923,
+            "GEO_ID": "0400000US23",
+            "ISO": "US-ME",
+            "LSAD": "",
+            "NAME": "Maine",
+            "NAME_1": "Maine",
+            "STATE": "ME"
+          },
+          "id": 36
+        },
+        {
+          "arcs": [[[207]], [[208]], [[209]], [[210, -173, 211, 212, 213, 214, 215, -34]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 7800.058,
+            "GEO_ID": "0400000US25",
+            "ISO": "US-MA",
+            "LSAD": "",
+            "NAME": "Massachusetts",
+            "NAME_1": "Massachusetts",
+            "STATE": "MA"
+          },
+          "id": 37
+        },
+        {
+          "arcs": [[[216]], [[217]], [[218]], [[219]], [[220]], [[221, -51, 222]], [[223, -121]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 56538.901,
+            "GEO_ID": "0400000US26",
+            "ISO": "US-MI",
+            "LSAD": "",
+            "NAME": "Michigan",
+            "NAME_1": "Michigan",
+            "STATE": "MI"
+          },
+          "id": 38
+        },
+        {
+          "arcs": [[-8, -80, -149, 224, -178, -46, -182, -93, -181, -91]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 68741.522,
+            "GEO_ID": "0400000US29",
+            "ISO": "US-MO",
+            "LSAD": "",
+            "NAME": "Missouri",
+            "NAME_1": "Missouri",
+            "STATE": "MO"
+          },
+          "id": 39
+        },
+        {
+          "arcs": [[225, -179, -225, -148, -25, -123]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 76824.171,
+            "GEO_ID": "0400000US31",
+            "ISO": "US-NE",
+            "LSAD": "",
+            "NAME": "Nebraska",
+            "NAME_1": "Nebraska",
+            "STATE": "NE"
+          },
+          "id": 40
+        },
+        {
+          "arcs": [[-4, -23, 226, -144, -177]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 109781.18,
+            "GEO_ID": "0400000US32",
+            "ISO": "US-NV",
+            "LSAD": "",
+            "NAME": "Nevada",
+            "NAME_1": "Nevada",
+            "STATE": "NV"
+          },
+          "id": 41
+        },
+        {
+          "arcs": [[227, -212, -176, 228, -206]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 8952.651,
+            "GEO_ID": "0400000US33",
+            "ISO": "US-NH",
+            "LSAD": "",
+            "NAME": "New Hampshire",
+            "NAME_1": "New Hampshire",
+            "STATE": "NH"
+          },
+          "id": 42
+        },
+        {
+          "arcs": [[[229]], [[230]], [[231]], [[-211, -33, 232, -154, -85, 233, -174]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 47126.399,
+            "GEO_ID": "0400000US36",
+            "ISO": "US-NY",
+            "LSAD": "",
+            "NAME": "New York",
+            "NAME_1": "New York",
+            "STATE": "NY"
+          },
+          "id": 43
+        },
+        {
+          "arcs": [[[234]], [[235]], [[236]], [[237]], [[-183, -52, -222, 238, -83, -113]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 40860.694,
+            "GEO_ID": "0400000US39",
+            "ISO": "US-OH",
+            "LSAD": "",
+            "NAME": "Ohio",
+            "NAME_1": "Ohio",
+            "STATE": "OH"
+          },
+          "id": 44
+        },
+        {
+          "arcs": [[-145, -227, -22, 239, -171]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 95988.013,
+            "GEO_ID": "0400000US41",
+            "ISO": "US-OR",
+            "LSAD": "",
+            "NAME": "Oregon",
+            "NAME_1": "Oregon",
+            "STATE": "OR"
+          },
+          "id": 45
+        },
+        {
+          "arcs": [[[240]], [[241]], [[242]], [[-31, -216, 243]], [[244, -214]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 1033.814,
+            "GEO_ID": "0400000US44",
+            "ISO": "US-RI",
+            "LSAD": "",
+            "NAME": "Rhode Island",
+            "NAME_1": "Rhode Island",
+            "STATE": "RI"
+          },
+          "id": 46
+        },
+        {
+          "arcs": [[-72, -78, -58, -180, -226, -126]],
+          "type": "Polygon",
+          "properties": {
+            "CENSUSAREA": 75811,
+            "GEO_ID": "0400000US46",
+            "ISO": "US-SD",
+            "LSAD": "",
+            "NAME": "South Dakota",
+            "NAME_1": "South Dakota",
+            "STATE": "SD"
+          },
+          "id": 47
+        },
+        {
+          "arcs": [[[245]], [[-6, -56, 246, -76, -81]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 261231.711,
+            "GEO_ID": "0400000US48",
+            "ISO": "US-TX",
+            "LSAD": "",
+            "NAME": "Texas",
+            "NAME_1": "Texas",
+            "STATE": "TX"
+          },
+          "id": 48
+        },
+        {
+          "arcs": [
+            [[247]],
+            [[248]],
+            [[249]],
+            [[250]],
+            [[251]],
+            [[252]],
+            [[253]],
+            [[254]],
+            [[255]],
+            [[256]],
+            [[257]],
+            [[258]],
+            [[259]],
+            [[260]],
+            [[261]],
+            [[262]],
+            [[263]],
+            [[264]],
+            [[265]],
+            [[266]],
+            [[267]],
+            [[268]],
+            [[269]],
+            [[270]],
+            [[271]],
+            [[272]],
+            [[273]],
+            [[274]],
+            [[275]],
+            [[276]],
+            [[277]],
+            [[278]],
+            [[279]],
+            [[280]],
+            [[281]],
+            [[282]],
+            [[283]],
+            [[284]],
+            [[285]],
+            [[286]],
+            [[287]],
+            [[288]],
+            [[289]],
+            [[290]],
+            [[291]],
+            [[292]],
+            [[293]],
+            [[294]],
+            [[295]],
+            [[296]],
+            [[297]],
+            [[298]],
+            [[299]],
+            [[300]],
+            [[301]],
+            [[302]],
+            [[303]],
+            [[304]],
+            [[305]],
+            [[306]],
+            [[307]],
+            [[308]],
+            [[309]],
+            [[310]],
+            [[311]],
+            [[312]],
+            [[313]],
+            [[314]],
+            [[315]],
+            [[316]],
+            [[317]],
+            [[318]],
+            [[319]],
+            [[320]],
+            [[321]],
+            [[322]],
+            [[323]],
+            [[324]],
+            [[325]]
+          ],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 570640.95,
+            "GEO_ID": "0400000US02",
+            "ISO": "US-AK",
+            "LSAD": "",
+            "NAME": "Alaska",
+            "NAME_1": "Alaska",
+            "STATE": "AK"
+          },
+          "id": 49
+        },
+        {
+          "arcs": [[[326]], [[327]], [[328]], [[329]], [[330]], [[331]], [[332]], [[333]], [[334]]],
+          "type": "MultiPolygon",
+          "properties": {
+            "CENSUSAREA": 6422.628,
+            "GEO_ID": "0400000US15",
+            "ISO": "US-HI",
+            "LSAD": "",
+            "NAME": "Hawaii",
+            "NAME_1": "Hawaii",
+            "STATE": "HI"
+          },
+          "id": 50
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/world-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/world-topo.json
new file mode 100644
index 0000000..0e1994c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/world-topo.json
@@ -0,0 +1,27322 @@
+{
+  "arcs": [
+    [
+      [7080, 7327],
+      [-5, 4],
+      [-10, -10],
+      [5, -6]
+    ],
+    [
+      [7070, 7315],
+      [-16, -12],
+      [-9, 5],
+      [-28, -4],
+      [-12, -6],
+      [-1, -5],
+      [-17, -18],
+      [-11, -16],
+      [6, -10],
+      [6, -18],
+      [-2, -15],
+      [3, -8],
+      [-18, -35],
+      [4, -12],
+      [-2, -18],
+      [-7, -5],
+      [-13, 0],
+      [-13, 4],
+      [3, -16],
+      [6, -6],
+      [-1, -9],
+      [4, -9],
+      [-12, -14],
+      [-8, 0],
+      [-6, -18],
+      [2, -7],
+      [-6, -11],
+      [2, -30],
+      [-8, -17],
+      [-6, -1],
+      [-2, 8],
+      [-15, 4],
+      [-3, -8],
+      [-14, -12],
+      [6, -9],
+      [-11, -7],
+      [-13, 6],
+      [-7, -15],
+      [-8, -7],
+      [-3, -19],
+      [2, -9],
+      [-4, -35],
+      [-32, -17],
+      [-16, 2],
+      [-11, -11],
+      [-14, 6],
+      [-30, -5],
+      [-46, 26]
+    ],
+    [
+      [6689, 6902],
+      [27, 56],
+      [1, 10],
+      [-4, 21],
+      [-24, 7],
+      [-1, 9],
+      [1, 35],
+      [-7, 43],
+      [0, 9],
+      [7, 14],
+      [1, 9],
+      [-10, 5],
+      [0, 31],
+      [11, 8],
+      [-5, 13],
+      [7, 6],
+      [5, 26],
+      [-1, 11],
+      [4, 19]
+    ],
+    [
+      [6701, 7234],
+      [8, -10],
+      [13, -1],
+      [6, -7],
+      [1, -9],
+      [5, 8],
+      [5, -4],
+      [13, 13],
+      [0, 24],
+      [9, 0],
+      [4, 6],
+      [20, 11],
+      [9, 15],
+      [0, 16],
+      [5, 14],
+      [-1, 9],
+      [9, 8],
+      [12, 0],
+      [4, 16],
+      [4, 3],
+      [15, -14],
+      [5, 2]
+    ],
+    [
+      [6847, 7334],
+      [14, 2],
+      [7, -12],
+      [6, 6],
+      [8, -6]
+    ],
+    [
+      [6882, 7324],
+      [7, -15],
+      [7, 10],
+      [15, 9],
+      [2, 5],
+      [10, -14],
+      [5, 7],
+      [-2, 13],
+      [4, 8],
+      [21, 2],
+      [-3, 18],
+      [5, 4],
+      [12, 26],
+      [9, -2],
+      [7, -9],
+      [-1, -21],
+      [6, 3],
+      [2, -8],
+      [-3, -14],
+      [-1, -35],
+      [3, -12],
+      [7, -4],
+      [15, 19],
+      [9, 1],
+      [3, 11],
+      [14, 14],
+      [13, -2],
+      [-1, -12],
+      [14, 8],
+      [12, 2],
+      [7, -9]
+    ],
+    [
+      [5665, 4557],
+      [3, -32],
+      [-3, -9],
+      [0, -36],
+      [2, -12],
+      [-5, -22],
+      [4, -12],
+      [-56, 0],
+      [0, -182],
+      [3, -21],
+      [6, -7],
+      [15, -33],
+      [6, -7],
+      [3, -10],
+      [6, -7]
+    ],
+    [
+      [5649, 4167],
+      [-53, -21],
+      [-11, 4],
+      [-8, -4],
+      [-13, 9],
+      [-8, -3],
+      [-17, 2],
+      [-5, 4],
+      [-10, 0],
+      [-7, 9],
+      [-5, 14],
+      [-52, 0],
+      [-66, 0],
+      [-7, -1],
+      [-12, 17],
+      [-4, 9],
+      [-6, 1],
+      [-18, -16],
+      [-15, 4],
+      [-6, -6]
+    ],
+    [
+      [5326, 4189],
+      [0, 28],
+      [2, -1],
+      [-2, 58],
+      [7, 9],
+      [1, 23],
+      [6, 24],
+      [2, 20],
+      [0, 23],
+      [5, 12],
+      [0, 26],
+      [4, 4],
+      [8, 20],
+      [0, 10],
+      [6, 12],
+      [5, 0],
+      [8, 20],
+      [5, 28],
+      [-1, 20],
+      [2, 29],
+      [-2, 15],
+      [-7, 15],
+      [-8, 46],
+      [-7, 29],
+      [6, 16],
+      [6, 7],
+      [-1, 21],
+      [-3, 9],
+      [-10, 48],
+      [-2, 4],
+      [0, 21],
+      [-8, 16],
+      [-8, 30],
+      [16, 4],
+      [10, 11]
+    ],
+    [
+      [5366, 4846],
+      [4, -2],
+      [18, 2],
+      [12, -3],
+      [21, 2],
+      [32, 1],
+      [7, -4],
+      [4, -15],
+      [0, -22],
+      [3, -16],
+      [3, -3],
+      [0, -19],
+      [10, -23],
+      [0, -8],
+      [9, -20],
+      [7, 4],
+      [6, -4],
+      [2, 6],
+      [33, 0],
+      [1, 20],
+      [4, 12],
+      [-2, 8],
+      [2, 18],
+      [21, 0],
+      [9, 5],
+      [-3, -22],
+      [36, 0],
+      [1, -22],
+      [-2, -20],
+      [5, -23],
+      [-4, -53],
+      [1, -14],
+      [6, -17],
+      [3, -2],
+      [4, -23],
+      [0, -22],
+      [-4, -9],
+      [3, -18],
+      [6, 7],
+      [13, -4],
+      [14, 9],
+      [12, -3],
+      [2, 8]
+    ],
+    [
+      [5363, 4916],
+      [-7, -5],
+      [-8, -18],
+      [-1, -40],
+      [-8, -2]
+    ],
+    [
+      [5339, 4851],
+      [-2, 5],
+      [2, 14],
+      [-6, 24]
+    ],
+    [
+      [5333, 4894],
+      [10, 23],
+      [7, 3],
+      [4, 10],
+      [9, -14]
+    ],
+    [
+      [5582, 7537],
+      [-1, 0]
+    ],
+    [
+      [5581, 7537],
+      [1, 0]
+    ],
+    [
+      [5537, 7617],
+      [1, 0]
+    ],
+    [
+      [5538, 7617],
+      [-1, 0]
+    ],
+    [
+      [5557, 7633],
+      [4, -13],
+      [7, -4],
+      [3, -22]
+    ],
+    [
+      [5571, 7594],
+      [-4, -21],
+      [6, -24]
+    ],
+    [
+      [5573, 7549],
+      [2, -10]
+    ],
+    [
+      [5575, 7539],
+      [6, -2]
+    ],
+    [
+      [5581, 7537],
+      [1, -1]
+    ],
+    [
+      [5582, 7536],
+      [0, 0]
+    ],
+    [
+      [5582, 7536],
+      [0, -5]
+    ],
+    [
+      [5582, 7531],
+      [1, -5]
+    ],
+    [
+      [5583, 7526],
+      [0, 0]
+    ],
+    [
+      [5583, 7526],
+      [-2, -13],
+      [-5, -2],
+      [-2, -17],
+      [-11, -8],
+      [3, -12],
+      [-6, -8],
+      [-5, 3]
+    ],
+    [
+      [5555, 7469],
+      [-3, 19],
+      [-11, 9],
+      [-1, 22],
+      [-4, 4],
+      [4, 16],
+      [-1, 29],
+      [5, 23],
+      [-7, 2]
+    ],
+    [
+      [5537, 7593],
+      [1, 14]
+    ],
+    [
+      [5538, 7607],
+      [0, 13]
+    ],
+    [
+      [5538, 7620],
+      [9, 19],
+      [3, -11],
+      [7, 5]
+    ],
+    [
+      [5553, 8659],
+      [10, -5],
+      [-7, -11],
+      [-10, 6],
+      [7, 10]
+    ],
+    [
+      [5047, 7630],
+      [-7, -5],
+      [-1, 11]
+    ],
+    [
+      [5039, 7636],
+      [8, 1],
+      [0, -7]
+    ],
+    [
+      [6563, 6637],
+      [0, 0]
+    ],
+    [
+      [6563, 6659],
+      [2, -2],
+      [1, -36]
+    ],
+    [
+      [6566, 6621],
+      [-8, -14],
+      [-3, 13],
+      [-6, -4],
+      [-1, -38],
+      [7, -9],
+      [-11, -3],
+      [-4, -6],
+      [2, -9],
+      [-10, -44],
+      [0, -17]
+    ],
+    [
+      [6532, 6490],
+      [-2, -5],
+      [-70, 18],
+      [-3, 5],
+      [-25, 63],
+      [0, 9]
+    ],
+    [
+      [6432, 6580],
+      [6, -1],
+      [0, -13],
+      [12, -3],
+      [10, 11],
+      [24, -2],
+      [11, -4],
+      [15, 12],
+      [6, 14],
+      [1, 15],
+      [11, 12],
+      [13, 31],
+      [11, 13],
+      [5, 19]
+    ],
+    [
+      [6557, 6684],
+      [3, -2],
+      [-1, -22],
+      [4, -1]
+    ],
+    [
+      [6562, 6642],
+      [0, 0]
+    ],
+    [
+      [3093, 2021],
+      [0, 6]
+    ],
+    [
+      [3093, 2027],
+      [0, -6]
+    ],
+    [
+      [3093, 2028],
+      [0, 123]
+    ],
+    [
+      [3093, 2151],
+      [10, -17],
+      [-8, -15],
+      [11, -6],
+      [5, -17],
+      [12, -13],
+      [7, -13],
+      [17, -13],
+      [11, -14],
+      [12, -7],
+      [20, 0],
+      [-5, -16],
+      [-18, 1],
+      [-11, -8],
+      [-12, 6],
+      [-51, 9]
+    ],
+    [
+      [3259, 3902],
+      [11, -14],
+      [7, -29],
+      [9, -17],
+      [15, -17],
+      [3, -11],
+      [17, -13],
+      [11, -1],
+      [15, -18],
+      [4, -9],
+      [15, -17],
+      [9, -5],
+      [5, -8],
+      [13, -5],
+      [8, -20],
+      [-6, -14],
+      [-3, -19],
+      [-8, -10],
+      [-1, -25],
+      [-3, -14],
+      [-5, -4],
+      [-5, -15],
+      [4, -5],
+      [13, 1],
+      [19, -8],
+      [5, -5],
+      [7, 4],
+      [5, -5],
+      [6, 3],
+      [4, -8],
+      [3, 12],
+      [5, 5],
+      [10, -9],
+      [5, 8],
+      [-1, 8],
+      [6, 12],
+      [6, 0],
+      [11, 18],
+      [5, 40],
+      [0, 22]
+    ],
+    [
+      [3483, 3710],
+      [5, -4],
+      [6, 7],
+      [9, -9],
+      [1, -17],
+      [5, -14],
+      [-2, -9],
+      [0, -25],
+      [-2, -17],
+      [-13, -19],
+      [-15, -5],
+      [-6, -19],
+      [-8, -4],
+      [-6, -13],
+      [-7, -5],
+      [3, -10],
+      [-6, -4],
+      [-20, -39],
+      [-2, -11],
+      [-12, -25],
+      [-5, -2],
+      [-1, -10],
+      [-8, -11]
+    ],
+    [
+      [3399, 3445],
+      [0, -7],
+      [-7, -12],
+      [2, -23],
+      [-3, -20],
+      [-5, -13],
+      [3, -4],
+      [-2, -14],
+      [-4, -5],
+      [3, -25],
+      [-3, -8]
+    ],
+    [
+      [3383, 3314],
+      [2, -25],
+      [-2, -12],
+      [-6, 0],
+      [-4, -34],
+      [5, -29],
+      [-4, -14],
+      [5, -12],
+      [23, -21],
+      [11, -25],
+      [-7, -19],
+      [0, -13],
+      [7, -17],
+      [12, -6],
+      [1, -29],
+      [-11, -30],
+      [-13, -26],
+      [-2, -16],
+      [-27, -24],
+      [-37, -16],
+      [-27, -8],
+      [-27, 0],
+      [-15, 11],
+      [3, -32],
+      [5, -9],
+      [-2, -21],
+      [-4, 3],
+      [-1, -21],
+      [-4, -5],
+      [6, -17],
+      [-2, -18],
+      [-20, -16],
+      [-21, 0],
+      [-26, 20],
+      [-8, 2],
+      [-4, -10],
+      [5, -32],
+      [-2, -24],
+      [6, -16],
+      [11, -4],
+      [-4, -10],
+      [13, 0],
+      [2, 10],
+      [-6, 0],
+      [14, 11],
+      [5, -13],
+      [1, -17],
+      [-3, -12],
+      [-12, -5],
+      [-3, 16],
+      [-13, 5],
+      [-9, -15],
+      [19, -13],
+      [-20, -17],
+      [-8, -19],
+      [3, -43],
+      [-4, -11],
+      [-9, -7],
+      [0, -20],
+      [-14, 3],
+      [-8, -5],
+      [-1, -8],
+      [-14, -5],
+      [-9, -18],
+      [0, -9],
+      [-6, -9],
+      [-2, -14],
+      [7, -25],
+      [7, -6],
+      [8, -16],
+      [6, -4],
+      [17, 0],
+      [6, -6],
+      [2, -20],
+      [-5, -33],
+      [-6, -2],
+      [-12, -18],
+      [-16, -14],
+      [-3, -10],
+      [-9, -10],
+      [-6, -22],
+      [2, -16],
+      [-5, -18],
+      [-5, -6],
+      [-23, -14],
+      [-5, -12],
+      [-2, -21],
+      [2, -24],
+      [9, -34],
+      [11, -24],
+      [-3, -1]
+    ],
+    [
+      [3098, 2168],
+      [-15, 10],
+      [-26, 10],
+      [-55, 1],
+      [-4, 12],
+      [-11, 13],
+      [6, 19],
+      [-5, 7],
+      [5, 13],
+      [-2, 14],
+      [-13, 1],
+      [-11, -8],
+      [-3, 26],
+      [-7, 9],
+      [2, 22],
+      [-3, 11],
+      [3, 15],
+      [9, 1],
+      [3, 17],
+      [12, 10],
+      [1, 22],
+      [7, 7],
+      [-1, 15],
+      [-5, 7],
+      [6, 30],
+      [8, 13],
+      [2, 22],
+      [8, 9],
+      [-3, 32],
+      [4, 11],
+      [-4, 4],
+      [0, 15],
+      [8, 5],
+      [5, 13],
+      [-8, 17],
+      [-14, 5],
+      [7, 5],
+      [17, 3],
+      [2, 17],
+      [-18, 3],
+      [-1, 18],
+      [5, 7],
+      [-4, 14],
+      [3, 7],
+      [-6, 16],
+      [5, 9],
+      [-11, 7],
+      [0, 45],
+      [3, 8],
+      [8, 1],
+      [-5, 26],
+      [2, 43],
+      [-3, 11],
+      [4, 27],
+      [5, 21],
+      [-2, 18],
+      [8, 13],
+      [0, 25],
+      [15, 13],
+      [-3, 15],
+      [-1, 21],
+      [-5, 20],
+      [3, 35],
+      [-2, 24],
+      [3, 12],
+      [10, 4],
+      [-1, 8],
+      [10, 14],
+      [-2, 40],
+      [-4, 4],
+      [6, 6],
+      [0, 12],
+      [9, 39],
+      [6, 2],
+      [-2, 34],
+      [3, 18],
+      [-9, 9],
+      [3, 18],
+      [-4, 6],
+      [0, 16],
+      [-5, 12],
+      [-2, 14],
+      [3, 9],
+      [-5, 2],
+      [-3, 15],
+      [1, 24],
+      [6, 8],
+      [0, 13],
+      [5, 19],
+      [7, 8],
+      [2, 10],
+      [-4, 4],
+      [2, 16],
+      [-4, 31],
+      [7, 10],
+      [1, 26],
+      [4, 17],
+      [13, 33],
+      [9, 38],
+      [6, -3],
+      [8, 7],
+      [0, 10],
+      [-8, 21],
+      [0, 10],
+      [5, 9],
+      [-2, 26],
+      [-3, 17],
+      [2, 15],
+      [5, 4],
+      [-6, 14],
+      [2, 14],
+      [7, 13],
+      [25, 20],
+      [9, 54],
+      [-5, 17]
+    ],
+    [
+      [3133, 3869],
+      [5, 9],
+      [0, 8],
+      [7, 6],
+      [2, 12],
+      [9, 5],
+      [4, 19],
+      [3, -2],
+      [10, -17],
+      [21, 0],
+      [12, -5],
+      [6, -38],
+      [3, 20],
+      [8, 29],
+      [32, 1],
+      [4, -14]
+    ],
+    [
+      [6265, 7522],
+      [0, 0]
+    ],
+    [
+      [6249, 7560],
+      [2, -10],
+      [15, -14],
+      [-6, -16],
+      [6, -11],
+      [11, -10],
+      [-3, -13],
+      [-7, 2],
+      [15, -25],
+      [9, -1],
+      [-3, -13],
+      [5, -7],
+      [-5, -5],
+      [3, -15]
+    ],
+    [
+      [6291, 7422],
+      [-10, -2]
+    ],
+    [
+      [6281, 7420],
+      [-4, 23],
+      [-7, 7],
+      [1, 10],
+      [-13, -1],
+      [-8, 14],
+      [-7, -4]
+    ],
+    [
+      [6243, 7469],
+      [-8, 16],
+      [-12, 1],
+      [-11, 7],
+      [-3, 20],
+      [5, 12],
+      [-3, 17],
+      [-5, 8]
+    ],
+    [
+      [6206, 7550],
+      [9, 0],
+      [11, 7],
+      [10, -3],
+      [13, 6]
+    ],
+    [
+      [6249, 7546],
+      [0, 0]
+    ],
+    [
+      [6255, 7542],
+      [0, 0]
+    ],
+    [
+      [488, 408],
+      [24, -7],
+      [-48, -4],
+      [-13, 16],
+      [37, -5]
+    ],
+    [
+      [542, 484],
+      [-90, 7],
+      [20, 11],
+      [65, -10],
+      [5, -8]
+    ],
+    [
+      [3331, 592],
+      [8, -3],
+      [-1, -57],
+      [-23, -11],
+      [-52, 4],
+      [-17, 17],
+      [-32, -10],
+      [-67, 20],
+      [3, 10],
+      [19, -10],
+      [115, 3],
+      [8, 27],
+      [39, 10]
+    ],
+    [
+      [4135, 588],
+      [34, -2],
+      [-10, -10],
+      [-44, 8],
+      [-5, 11],
+      [25, -7]
+    ],
+    [
+      [3120, 602],
+      [25, -4],
+      [35, -20],
+      [-20, -7],
+      [-40, 31]
+    ],
+    [
+      [3137, 618],
+      [-11, -15],
+      [-30, 6],
+      [41, 9]
+    ],
+    [
+      [4054, 618],
+      [1, -6],
+      [-76, 3],
+      [30, 13],
+      [45, -10]
+    ],
+    [
+      [547, 618],
+      [21, -9],
+      [14, -23],
+      [-47, -2],
+      [-90, 25],
+      [-10, 7],
+      [5, 17],
+      [24, 15],
+      [25, 0],
+      [58, -30]
+    ],
+    [
+      [3143, 666],
+      [-58, -38],
+      [-39, -36],
+      [-31, 3],
+      [-10, 10],
+      [11, 23],
+      [23, 11],
+      [92, 33],
+      [12, -6]
+    ],
+    [
+      [9654, 680],
+      [-35, -8],
+      [-8, 14],
+      [21, -7],
+      [22, 11],
+      [0, -10]
+    ],
+    [
+      [3740, 650],
+      [1, -7],
+      [44, 2],
+      [21, -39],
+      [-7, -30],
+      [-18, -1],
+      [9, -11],
+      [-158, -26],
+      [-16, -9],
+      [-121, -4],
+      [1, 17],
+      [22, 27],
+      [26, -4],
+      [60, 37],
+      [-13, 14],
+      [14, 40],
+      [31, 33],
+      [52, 14],
+      [37, -3],
+      [38, -11],
+      [19, -13],
+      [-4, -20],
+      [-38, -6]
+    ],
+    [
+      [9641, 732],
+      [63, -13],
+      [-27, -10],
+      [-42, -2],
+      [-19, 12],
+      [25, 13]
+    ],
+    [
+      [839, 754],
+      [14, -14],
+      [-32, 3],
+      [-11, 7],
+      [29, 4]
+    ],
+    [
+      [938, 754],
+      [-21, -7],
+      [-2, 12],
+      [23, -5]
+    ],
+    [
+      [951, 834],
+      [16, -10],
+      [-24, 3],
+      [8, 7]
+    ],
+    [
+      [9561, 885],
+      [-8, -14],
+      [-7, 9],
+      [15, 5]
+    ],
+    [
+      [1342, 903],
+      [19, -12],
+      [-6, -6],
+      [-27, 12],
+      [14, 6]
+    ],
+    [
+      [1458, 897],
+      [-1, -13],
+      [-17, 20],
+      [18, -7]
+    ],
+    [
+      [1760, 918],
+      [-17, -8],
+      [-3, 7],
+      [26, 11],
+      [-6, -10]
+    ],
+    [
+      [1680, 914],
+      [-12, 3],
+      [10, 17],
+      [17, -2],
+      [-1, -10],
+      [-14, -8]
+    ],
+    [
+      [1635, 935],
+      [17, 0],
+      [7, -14],
+      [-23, -10],
+      [0, -10],
+      [-32, -4],
+      [-22, 7],
+      [3, 11],
+      [15, 12],
+      [-27, 3],
+      [7, 10],
+      [55, -5]
+    ],
+    [
+      [4425, 917],
+      [9, -22],
+      [-14, 0],
+      [-4, 16],
+      [-29, 3],
+      [20, 7],
+      [12, 19],
+      [11, 1],
+      [-5, -24]
+    ],
+    [
+      [9717, 944],
+      [-11, 3],
+      [8, 14],
+      [3, -17]
+    ],
+    [
+      [1498, 961],
+      [13, -7],
+      [9, -16],
+      [-11, -7],
+      [29, 6],
+      [17, -9],
+      [7, -11],
+      [-6, -12],
+      [-22, 3],
+      [-48, 22],
+      [0, 8],
+      [-19, 7],
+      [-3, 16],
+      [34, 0]
+    ],
+    [
+      [2955, 972],
+      [-2, -10],
+      [-13, 0],
+      [15, 10]
+    ],
+    [
+      [2514, 979],
+      [-20, -5],
+      [-4, 5],
+      [22, 8],
+      [2, -8]
+    ],
+    [
+      [2918, 987],
+      [18, -3],
+      [-8, -40],
+      [-36, 14],
+      [-7, 10],
+      [11, 7],
+      [18, 0],
+      [-19, 10],
+      [23, 2]
+    ],
+    [
+      [2474, 988],
+      [-3, -19],
+      [-14, -1],
+      [6, 17],
+      [-10, 16],
+      [23, 1],
+      [-2, -14]
+    ],
+    [
+      [2365, 999],
+      [-10, 3],
+      [18, 7],
+      [-8, -10]
+    ],
+    [
+      [2270, 1031],
+      [14, -3],
+      [-2, 14],
+      [10, 0],
+      [2, -17],
+      [10, 19],
+      [19, 1],
+      [5, -10],
+      [-23, -11],
+      [8, -3],
+      [27, 11],
+      [-6, -10],
+      [13, -10],
+      [-15, -1],
+      [1, -9],
+      [-72, 2],
+      [2, 5],
+      [-24, -1],
+      [6, 7],
+      [-29, 6],
+      [-58, 7],
+      [6, 10],
+      [57, 7],
+      [8, -11],
+      [7, 7],
+      [23, -12],
+      [-13, 13],
+      [17, 9],
+      [15, -6],
+      [-8, -14]
+    ],
+    [
+      [4919, 1112],
+      [8, -10],
+      [14, 1],
+      [-17, -19],
+      [-8, 18],
+      [-16, 10],
+      [19, 0]
+    ],
+    [
+      [2947, 1119],
+      [8, -13],
+      [-22, -10],
+      [-48, -11],
+      [-9, 4],
+      [2, 12],
+      [33, 5],
+      [9, 12],
+      [8, -13],
+      [3, 14],
+      [16, 0]
+    ],
+    [
+      [3313, 1111],
+      [-7, 10],
+      [11, 1],
+      [-4, -11]
+    ],
+    [
+      [4835, 1126],
+      [-5, -10],
+      [-10, 9],
+      [15, 1]
+    ],
+    [
+      [5082, 1116],
+      [-11, 6],
+      [19, 4],
+      [-8, -10]
+    ],
+    [
+      [4913, 1121],
+      [-10, 0],
+      [6, 12],
+      [12, 3],
+      [2, -14],
+      [-10, -1]
+    ],
+    [
+      [7004, 1113],
+      [-10, 3],
+      [-5, 16],
+      [16, -11],
+      [-1, -8]
+    ],
+    [
+      [5124, 1122],
+      [-12, 11],
+      [12, 5],
+      [0, -16]
+    ],
+    [
+      [5745, 1129],
+      [-22, 0],
+      [-2, 11],
+      [19, 6],
+      [5, -17]
+    ],
+    [
+      [5040, 1146],
+      [-7, -18],
+      [-5, 21],
+      [12, -3]
+    ],
+    [
+      [2924, 1165],
+      [8, -12],
+      [-12, -13],
+      [-23, 5],
+      [-1, 13],
+      [8, 7],
+      [20, 0]
+    ],
+    [
+      [5449, 1148],
+      [-17, 8],
+      [11, 12],
+      [19, -1],
+      [-11, -8],
+      [-2, -11]
+    ],
+    [
+      [3001, 1170],
+      [-23, 2],
+      [-6, 7],
+      [17, 4],
+      [12, -13]
+    ],
+    [
+      [3283, 1179],
+      [-6, -12],
+      [-16, 30],
+      [11, 2],
+      [11, -20]
+    ],
+    [
+      [3055, 1197],
+      [19, -24],
+      [1, -17],
+      [16, -26],
+      [11, -25],
+      [3, -60],
+      [-6, -23],
+      [-20, -7],
+      [-2, -10],
+      [-40, -7],
+      [-49, 0],
+      [-21, 13],
+      [10, 8],
+      [16, -3],
+      [45, -2],
+      [14, 8],
+      [-7, 6],
+      [-28, -9],
+      [-18, 10],
+      [35, 8],
+      [1, 5],
+      [-31, 0],
+      [-14, 17],
+      [-11, -17],
+      [-31, 2],
+      [10, -8],
+      [-14, -9],
+      [-38, 14],
+      [-1, 15],
+      [15, 8],
+      [16, -8],
+      [-4, 12],
+      [9, 4],
+      [16, -13],
+      [-4, 14],
+      [29, -2],
+      [9, 7],
+      [-23, 7],
+      [10, 6],
+      [30, -6],
+      [19, 11],
+      [20, 0],
+      [13, -11],
+      [-2, 16],
+      [-35, 7],
+      [5, 17],
+      [24, 8],
+      [15, -4],
+      [-18, 14],
+      [-20, -4],
+      [-27, 14],
+      [7, 34],
+      [-10, 5],
+      [0, 20],
+      [45, 10],
+      [9, -7],
+      [2, -18]
+    ],
+    [
+      [7385, 1327],
+      [-15, 4],
+      [8, 9],
+      [7, -13]
+    ],
+    [
+      [3111, 1321],
+      [9, -5],
+      [-16, -13],
+      [-8, -22],
+      [-11, 0],
+      [-7, 9],
+      [22, 44],
+      [15, 12],
+      [5, -5],
+      [-10, -11],
+      [1, -9]
+    ],
+    [
+      [7686, 1378],
+      [4, -8],
+      [-14, -2],
+      [10, 10]
+    ],
+    [
+      [3174, 1408],
+      [-3, -16],
+      [-10, -2],
+      [6, 17],
+      [7, 1]
+    ],
+    [
+      [7805, 1401],
+      [-19, 0],
+      [-1, 7],
+      [12, 10],
+      [15, -7],
+      [-7, -10]
+    ],
+    [
+      [7870, 1413],
+      [-16, 19],
+      [9, -2],
+      [7, -17]
+    ],
+    [
+      [3410, 1465],
+      [-6, 6],
+      [14, 7],
+      [-8, -13]
+    ],
+    [
+      [3242, 1481],
+      [-2, -9],
+      [14, -8],
+      [-14, -12],
+      [-26, 3],
+      [20, 26],
+      [8, 0]
+    ],
+    [
+      [3270, 1492],
+      [2, -17],
+      [-12, -8],
+      [10, 25]
+    ],
+    [
+      [3394, 1508],
+      [-2, -9],
+      [20, -7],
+      [-8, -17],
+      [-7, 6],
+      [-7, -7],
+      [-14, 20],
+      [5, 8],
+      [13, 6]
+    ],
+    [
+      [3446, 1521],
+      [-9, 7],
+      [15, -2],
+      [-6, -5]
+    ],
+    [
+      [0, 324],
+      [46, 3],
+      [68, -14],
+      [19, 8],
+      [194, -14],
+      [21, -11],
+      [128, -2],
+      [122, -11],
+      [81, -3],
+      [-58, 13],
+      [54, 1],
+      [-124, 12],
+      [-104, 7],
+      [24, 11],
+      [-55, 17],
+      [37, 2],
+      [-52, 17],
+      [-71, -3],
+      [-37, 23],
+      [-127, 27],
+      [73, -2],
+      [18, -14],
+      [73, -4],
+      [20, 4],
+      [70, -3],
+      [6, -14],
+      [50, 10],
+      [19, -11],
+      [127, 8],
+      [18, 9],
+      [-44, 5],
+      [81, 5],
+      [16, 14],
+      [70, 14],
+      [-10, 10],
+      [-54, 26],
+      [31, 11],
+      [-19, 10],
+      [-74, 13],
+      [17, 11],
+      [109, 6],
+      [135, 7],
+      [0, 5],
+      [-77, 24],
+      [-11, 11],
+      [13, 10],
+      [43, -4],
+      [46, 10],
+      [-17, 11],
+      [-75, 12],
+      [-55, 17],
+      [-3, 5],
+      [-68, 8],
+      [-43, 21],
+      [14, 11],
+      [48, 6],
+      [-2, 14],
+      [-71, -7],
+      [-47, 23],
+      [14, 18],
+      [-3, 26],
+      [9, 1],
+      [24, -17],
+      [21, 17],
+      [21, -5],
+      [18, 4],
+      [38, -10],
+      [-9, -10],
+      [36, -3],
+      [2, 10],
+      [72, -30],
+      [30, 16],
+      [30, 6],
+      [-36, 7],
+      [7, 14],
+      [32, -17],
+      [21, 7],
+      [13, -13],
+      [27, 0],
+      [-16, 13],
+      [21, 1],
+      [-31, 15],
+      [29, -5],
+      [-22, 20],
+      [-27, 16],
+      [-38, -3],
+      [-33, 3],
+      [2, 9],
+      [28, 4],
+      [9, 7],
+      [69, -21],
+      [6, 8],
+      [-27, 13],
+      [9, 11],
+      [56, 6],
+      [1, 10],
+      [41, 4],
+      [2, 6],
+      [19, -3],
+      [9, -14],
+      [18, 0],
+      [-10, 14],
+      [29, 6],
+      [16, 14],
+      [61, 4],
+      [30, -4],
+      [-16, 9],
+      [4, 14],
+      [30, 0],
+      [11, 11],
+      [22, -4],
+      [18, -16],
+      [30, 9],
+      [58, -4],
+      [20, -5],
+      [64, 13],
+      [93, 0],
+      [8, -7],
+      [45, 3],
+      [41, 0],
+      [59, 10],
+      [-3, 10],
+      [24, 6],
+      [6, -12],
+      [33, -3],
+      [51, 6],
+      [-7, 21],
+      [11, 10],
+      [21, 0],
+      [-9, -7],
+      [19, 2],
+      [-8, -12],
+      [4, -14],
+      [15, 3],
+      [-18, -16],
+      [-6, -21],
+      [9, 6],
+      [46, 8],
+      [15, 0],
+      [-10, 11],
+      [0, 20],
+      [15, 6],
+      [35, -17],
+      [-5, -19],
+      [-34, -18],
+      [4, -7],
+      [45, 4],
+      [84, -10],
+      [53, 13],
+      [28, -3],
+      [14, 4],
+      [49, -4],
+      [-3, -8],
+      [20, -8],
+      [70, 13],
+      [-27, 6],
+      [2, 10],
+      [-34, 3],
+      [17, 7],
+      [3, 14],
+      [-46, 3],
+      [5, 11],
+      [-7, 15],
+      [-33, 5],
+      [-4, 20],
+      [42, -4],
+      [3, -6],
+      [47, 2],
+      [-5, 21],
+      [-41, 3],
+      [-46, 0],
+      [-11, 7],
+      [-4, 20],
+      [11, 7],
+      [26, -4],
+      [-17, -12],
+      [21, -4],
+      [33, 4],
+      [84, -1],
+      [9, -7],
+      [44, -11],
+      [17, 7],
+      [24, -7],
+      [21, 8],
+      [46, 0],
+      [33, -7],
+      [16, 10],
+      [25, 1],
+      [6, 10],
+      [-10, 17],
+      [33, -4],
+      [1, -10],
+      [-15, -14],
+      [9, -9],
+      [30, 6],
+      [8, -11],
+      [38, 11],
+      [5, -13],
+      [28, -10],
+      [20, 2],
+      [43, -19],
+      [29, 9],
+      [-2, 28],
+      [24, -11],
+      [-8, 25],
+      [28, -2],
+      [24, -17],
+      [-2, -16],
+      [55, 8],
+      [5, -7],
+      [-15, -14],
+      [48, 6],
+      [7, 5],
+      [34, -5],
+      [26, 15],
+      [57, 12],
+      [21, -2],
+      [42, 10],
+      [35, 16],
+      [22, 43],
+      [-1, 7],
+      [-20, 21],
+      [-4, 13],
+      [6, 23],
+      [-15, 38],
+      [-15, 16],
+      [4, 21],
+      [-13, 16],
+      [15, 0],
+      [-1, 7],
+      [25, -14],
+      [5, 14],
+      [11, 6],
+      [0, 11],
+      [-18, 7],
+      [14, 5],
+      [-5, 17],
+      [6, 14],
+      [-9, 16],
+      [12, 3],
+      [6, 21],
+      [-10, 5],
+      [-19, -1],
+      [15, 30],
+      [6, 0],
+      [-2, -17],
+      [15, -6],
+      [1, 26],
+      [-4, 14],
+      [8, 4],
+      [14, -7],
+      [5, 34],
+      [14, -2],
+      [-5, 11],
+      [19, -4],
+      [3, 23],
+      [16, 1],
+      [-5, 27],
+      [11, 6],
+      [16, -7],
+      [-4, 11],
+      [20, 14],
+      [11, -3],
+      [9, 12],
+      [10, 1],
+      [-1, 10],
+      [14, 4],
+      [-1, 13],
+      [30, 14],
+      [13, -2],
+      [3, 10],
+      [12, 2],
+      [1, 8],
+      [21, 4],
+      [7, 8],
+      [13, 6],
+      [11, -3],
+      [7, -20],
+      [-10, -3],
+      [-2, 12],
+      [-15, -12],
+      [-10, 0],
+      [-15, -17],
+      [-9, -22],
+      [-9, -6],
+      [-7, 7],
+      [-6, -6],
+      [-19, -5],
+      [-17, -29],
+      [-20, 3],
+      [6, -10],
+      [-18, -10],
+      [9, -14],
+      [-14, -14],
+      [13, -19],
+      [16, 3],
+      [0, 10],
+      [21, -2],
+      [-16, -14],
+      [-16, 0],
+      [-2, -16],
+      [-5, 16],
+      [-19, -3],
+      [1, -28],
+      [-16, 27],
+      [-15, 3],
+      [-10, -29],
+      [11, -10],
+      [-9, -4],
+      [-14, 11],
+      [-12, -15],
+      [6, -16],
+      [-15, -6],
+      [-8, 5],
+      [-3, -33],
+      [10, -6],
+      [-12, -11],
+      [21, 6],
+      [6, -6],
+      [-20, -7],
+      [14, -6],
+      [-10, -7],
+      [36, -17],
+      [-2, 17],
+      [23, 7],
+      [-14, -17],
+      [15, -6],
+      [-5, -8],
+      [14, -25],
+      [14, -7],
+      [-2, -21],
+      [15, -13],
+      [-1, -11],
+      [-10, 4],
+      [5, -18],
+      [22, 1],
+      [-16, -24],
+      [20, 4],
+      [9, -21],
+      [-5, -12],
+      [-12, -1],
+      [-14, -13],
+      [14, -1],
+      [11, 10],
+      [9, -8],
+      [-7, -12],
+      [-38, -3],
+      [36, -14],
+      [13, 10],
+      [0, -26],
+      [-19, -2],
+      [6, -18],
+      [17, 8],
+      [-7, -24],
+      [25, 4],
+      [-11, -19],
+      [-9, 8],
+      [-3, -13],
+      [-15, 12],
+      [-21, 5],
+      [13, -17],
+      [21, -10],
+      [-7, -23],
+      [-21, 5],
+      [21, -13],
+      [-23, -13],
+      [31, 7],
+      [-9, -17],
+      [-36, 6],
+      [17, -17],
+      [-10, -13],
+      [-13, -3],
+      [-2, 17],
+      [-17, 2],
+      [6, -15],
+      [-14, 3],
+      [-10, -10],
+      [18, 2],
+      [7, -9],
+      [-35, -4],
+      [-2, -7],
+      [33, -3],
+      [-85, -34],
+      [-52, -9],
+      [4, -3],
+      [-60, -13],
+      [4, -11],
+      [-17, -7],
+      [-31, -1],
+      [-20, 4],
+      [-46, 0],
+      [-31, 8],
+      [-64, 0],
+      [34, -42],
+      [23, -15],
+      [10, 6],
+      [66, -8],
+      [-25, -26],
+      [-38, -9],
+      [-61, 13],
+      [-95, 13],
+      [-30, -6],
+      [118, -34],
+      [-9, -17],
+      [-71, -7],
+      [-61, 21],
+      [-37, 30],
+      [12, -23],
+      [-13, -4],
+      [17, -20],
+      [42, -17],
+      [17, -23],
+      [18, -7],
+      [2, 20],
+      [108, -4],
+      [17, -13],
+      [-20, -24],
+      [-22, -3],
+      [-62, 0],
+      [55, -10],
+      [39, 6],
+      [24, -26],
+      [-8, -7],
+      [24, -16],
+      [19, 7],
+      [38, -10],
+      [7, 13],
+      [39, 9],
+      [21, -6],
+      [9, -14],
+      [46, -9],
+      [89, -24],
+      [77, -3],
+      [-92, -8],
+      [62, -5],
+      [-2, -4],
+      [-62, -1],
+      [-6, -25],
+      [26, -5],
+      [52, 8],
+      [75, 3],
+      [-64, -17],
+      [33, -33],
+      [-6, -17],
+      [66, -4],
+      [49, 30],
+      [72, 31],
+      [52, 14],
+      [16, -1],
+      [53, 11],
+      [65, 5],
+      [59, -2],
+      [6, -17],
+      [-17, -11],
+      [31, -7],
+      [67, 24],
+      [-2, 10],
+      [36, 18],
+      [9, 16],
+      [79, 27],
+      [42, -13],
+      [34, 10],
+      [18, 17],
+      [53, 0],
+      [40, 12],
+      [42, -3],
+      [-21, 10],
+      [37, 0],
+      [5, 7],
+      [153, 6],
+      [48, 10],
+      [-61, 7],
+      [-165, 11],
+      [31, 17],
+      [-27, 0],
+      [9, 15],
+      [-73, -12],
+      [-96, 23],
+      [-5, 14],
+      [12, 23],
+      [11, 3],
+      [8, 18],
+      [24, 0],
+      [-7, 12],
+      [28, 18],
+      [34, 10],
+      [17, 0],
+      [5, 10],
+      [28, 7],
+      [15, 13],
+      [36, 16],
+      [52, 10],
+      [29, 14],
+      [48, 10],
+      [53, 7],
+      [31, -4],
+      [22, 14],
+      [17, -6],
+      [43, 6],
+      [-18, 11],
+      [29, 26],
+      [-3, 10],
+      [14, 17],
+      [24, 3],
+      [23, -7],
+      [39, 33],
+      [-10, 4],
+      [-27, -10],
+      [-22, 3],
+      [17, 4],
+      [-20, 7],
+      [1, 13],
+      [28, 23],
+      [18, 3],
+      [12, -9],
+      [16, 11],
+      [-15, 16],
+      [29, -7],
+      [14, 11],
+      [42, 13],
+      [3, 19],
+      [10, 20],
+      [-18, 0],
+      [-18, 7],
+      [-1, 18],
+      [16, 2],
+      [1, -9],
+      [21, -10],
+      [7, 17],
+      [16, 9],
+      [-12, 10],
+      [13, 4],
+      [3, -10],
+      [22, -7],
+      [10, -28],
+      [15, 7],
+      [15, -5],
+      [-4, 9],
+      [6, 23],
+      [-11, 13],
+      [13, 5],
+      [25, -7],
+      [16, 14],
+      [13, -8],
+      [-20, -29],
+      [71, -3],
+      [7, -9],
+      [4, 12],
+      [18, 3],
+      [5, -6],
+      [28, -5],
+      [7, 11],
+      [12, -7],
+      [-4, -14],
+      [12, -9],
+      [21, 25],
+      [13, 8],
+      [41, 14],
+      [105, 20],
+      [19, 0],
+      [28, 7],
+      [-5, 17],
+      [12, 2],
+      [-1, -17],
+      [11, -3],
+      [25, 9],
+      [-8, 8],
+      [9, 9],
+      [22, -23],
+      [31, -14],
+      [21, -5],
+      [14, 25],
+      [18, 7],
+      [-16, 10],
+      [16, 1],
+      [8, -13],
+      [22, -4],
+      [22, 3],
+      [27, -4],
+      [3, 9],
+      [17, 3],
+      [-3, -18],
+      [45, -4],
+      [11, 1],
+      [-6, 11],
+      [17, 9],
+      [11, -10],
+      [-10, -23],
+      [10, -10],
+      [23, -1],
+      [26, 4],
+      [3, 13],
+      [16, 24],
+      [24, -18],
+      [-21, -6],
+      [14, -7],
+      [26, -5],
+      [13, 26],
+      [15, -4],
+      [0, -15],
+      [27, -15],
+      [31, -3],
+      [35, 17],
+      [23, 3],
+      [38, 21],
+      [40, 5],
+      [38, 11],
+      [7, 7],
+      [2, 33],
+      [-12, 13],
+      [-1, 13],
+      [20, 12],
+      [28, 0],
+      [4, -8],
+      [-21, -13],
+      [24, -1],
+      [20, -13],
+      [-2, -23],
+      [45, 4],
+      [8, -15],
+      [7, 9],
+      [26, -1],
+      [-5, -7],
+      [19, -19],
+      [2, 12],
+      [13, 7],
+      [-1, 10],
+      [15, 4],
+      [-2, 32],
+      [4, 14],
+      [26, 6],
+      [21, 15],
+      [28, 4],
+      [8, 17],
+      [32, 8],
+      [24, 0],
+      [-6, 5],
+      [34, 13],
+      [14, -6],
+      [-2, 23],
+      [18, 5],
+      [14, -8],
+      [-13, -7],
+      [10, -3],
+      [6, -12],
+      [9, 8],
+      [16, -6],
+      [-5, -17],
+      [13, 20],
+      [-3, 14],
+      [16, 5],
+      [2, 11],
+      [-19, -3],
+      [-6, 13],
+      [27, 6],
+      [-2, -9],
+      [15, 2],
+      [0, -13],
+      [11, 8],
+      [11, -7],
+      [10, 7],
+      [-14, 3],
+      [10, 16],
+      [-16, 1],
+      [-1, 12],
+      [9, 14],
+      [23, 4],
+      [11, 12],
+      [30, 4],
+      [25, 7],
+      [40, -6],
+      [19, -10],
+      [15, -20],
+      [11, 3],
+      [13, -8],
+      [1, -9],
+      [-36, 3],
+      [15, -8],
+      [-11, -23],
+      [1, -12],
+      [7, 13],
+      [33, 10],
+      [23, -11],
+      [12, 1],
+      [5, -20],
+      [12, -4],
+      [4, 11],
+      [24, 0],
+      [18, -7],
+      [45, -7],
+      [24, 9],
+      [30, -9],
+      [45, -7],
+      [48, -4],
+      [9, -3],
+      [35, 8],
+      [-1, -15],
+      [14, -30],
+      [-13, -3],
+      [-7, -17],
+      [13, 0],
+      [-16, -9],
+      [12, -8],
+      [0, -9],
+      [-27, -3],
+      [17, -14],
+      [-13, -6],
+      [9, -5],
+      [-17, -12],
+      [-13, 18],
+      [-18, -29],
+      [13, -14],
+      [34, 8],
+      [1, -21],
+      [-15, -30],
+      [-17, -8],
+      [-5, -19],
+      [-10, -7],
+      [-6, -33],
+      [-12, -36],
+      [-15, -8],
+      [25, -10],
+      [22, 10],
+      [-3, 26],
+      [14, 11],
+      [34, 3],
+      [8, 20],
+      [20, 6],
+      [-6, 7],
+      [17, 12],
+      [14, 3],
+      [-11, 7],
+      [16, 40],
+      [17, 7],
+      [14, 12],
+      [-6, 15],
+      [22, 23],
+      [15, 5],
+      [8, -12],
+      [28, 6],
+      [5, -7],
+      [13, 8],
+      [-3, 16],
+      [35, 18],
+      [22, 5],
+      [7, 21],
+      [16, 4],
+      [-7, 13],
+      [9, 12],
+      [19, 10],
+      [73, 24],
+      [30, 4],
+      [13, -3],
+      [-6, 13],
+      [29, 18],
+      [36, -4],
+      [9, 7],
+      [18, 0],
+      [34, 17],
+      [8, -5],
+      [14, 4],
+      [23, -4],
+      [23, 1],
+      [19, 14],
+      [25, 5],
+      [12, -6],
+      [34, 1],
+      [4, -10],
+      [31, 17],
+      [11, -4],
+      [8, -10],
+      [13, 6],
+      [16, 0],
+      [16, 6],
+      [13, -10],
+      [14, 13],
+      [9, 0],
+      [8, -26],
+      [8, 11],
+      [13, 3],
+      [9, 9],
+      [27, 7],
+      [14, 17],
+      [0, 7],
+      [27, 0],
+      [8, 6],
+      [27, -9],
+      [24, -3],
+      [65, -22],
+      [29, -6],
+      [-3, -17],
+      [12, 13],
+      [16, -19],
+      [18, 0],
+      [29, 17],
+      [7, 0],
+      [-5, 20],
+      [13, 14],
+      [62, 17],
+      [35, -27],
+      [-3, -15],
+      [21, 2],
+      [16, -8],
+      [3, -10],
+      [-17, -16],
+      [-31, -8],
+      [-11, -15],
+      [25, 3],
+      [22, 10],
+      [32, 6],
+      [13, 10],
+      [-3, -10],
+      [19, 3],
+      [5, -6],
+      [32, -1],
+      [41, 14],
+      [0, -3],
+      [-45, -17],
+      [5, -7],
+      [73, 19],
+      [18, 14],
+      [58, 14],
+      [13, -9],
+      [11, 6],
+      [8, 14],
+      [14, 6],
+      [12, -14],
+      [14, 6],
+      [-8, -12],
+      [3, -11],
+      [11, 0],
+      [0, -16],
+      [28, 6],
+      [11, -7],
+      [10, 7],
+      [6, -10],
+      [11, 13],
+      [2, 21],
+      [16, 19],
+      [18, 8],
+      [28, -7],
+      [30, 4],
+      [8, 6],
+      [19, -2],
+      [13, -11],
+      [-5, -11],
+      [19, 10],
+      [11, 0],
+      [9, 12],
+      [4, -14],
+      [13, 7],
+      [8, -8],
+      [30, 1],
+      [20, -11],
+      [35, -3],
+      [12, -6],
+      [28, -3],
+      [10, -5],
+      [20, 3],
+      [14, -13],
+      [27, 10],
+      [12, -6],
+      [-4, -11],
+      [21, 8],
+      [5, -6],
+      [-22, -38],
+      [0, -10],
+      [11, 0],
+      [26, 23],
+      [9, -10],
+      [14, 7],
+      [14, -31],
+      [13, 5],
+      [-8, -14],
+      [8, -7],
+      [23, 3],
+      [4, -6],
+      [39, 4],
+      [35, -1],
+      [10, 4],
+      [-1, -21],
+      [16, -13],
+      [0, 14],
+      [24, 0],
+      [17, -11],
+      [23, 7],
+      [-5, 24],
+      [5, 3],
+      [24, -14],
+      [2, -10],
+      [16, -13],
+      [14, -3],
+      [17, -14],
+      [19, 3],
+      [6, -10],
+      [6, 8],
+      [17, -1],
+      [45, -17],
+      [14, -20],
+      [-16, 0],
+      [28, -13],
+      [19, -34],
+      [-3, -13],
+      [18, 0],
+      [2, 34],
+      [16, 3],
+      [22, -23],
+      [21, 2],
+      [-3, 7],
+      [38, -3],
+      [13, -6],
+      [12, 5],
+      [13, -6],
+      [-9, -6],
+      [27, 2],
+      [18, -20],
+      [10, -3],
+      [48, -30],
+      [2, 21],
+      [19, -31],
+      [-5, -6],
+      [-13, 7],
+      [-13, -34],
+      [12, 6],
+      [-5, -17],
+      [-39, 15],
+      [-11, -1],
+      [16, -13],
+      [29, -8],
+      [-8, -19],
+      [-20, -10],
+      [-14, 16],
+      [-2, -13],
+      [-32, 1],
+      [-12, 5],
+      [1, -16],
+      [9, 6],
+      [23, -6],
+      [-20, -4],
+      [-5, -9],
+      [-34, 0],
+      [9, -14],
+      [-26, -1],
+      [1, 15],
+      [-11, 9],
+      [-4, -20],
+      [17, -14],
+      [-15, 0],
+      [13, -30],
+      [-24, 1],
+      [-20, -6],
+      [-3, 16],
+      [-30, -30],
+      [9, -7],
+      [-5, -13],
+      [-22, 2],
+      [-34, -12],
+      [45, -1],
+      [-4, -7],
+      [21, -16],
+      [-2, -16],
+      [-18, -5],
+      [18, -3],
+      [4, -13],
+      [-13, -11],
+      [14, -5],
+      [-14, -17],
+      [18, 0],
+      [20, -30],
+      [-7, -11],
+      [27, -7],
+      [-11, -20],
+      [14, -7],
+      [20, 8],
+      [12, -14],
+      [36, -4],
+      [-15, -13],
+      [-12, 9],
+      [-47, -2],
+      [-37, -7],
+      [-14, -13],
+      [-34, 22],
+      [20, -29],
+      [-38, 2],
+      [-9, -8],
+      [9, -14],
+      [-23, -14],
+      [27, 3],
+      [-37, -16],
+      [52, -4],
+      [-72, -17],
+      [-6, -13],
+      [61, 6],
+      [7, -8],
+      [-35, -4],
+      [40, -4],
+      [-17, -13],
+      [9, -23],
+      [-22, 5],
+      [25, -20],
+      [40, -9],
+      [38, -31],
+      [-89, -12],
+      [59, -2],
+      [53, 8],
+      [73, -27],
+      [12, -14],
+      [24, 3],
+      [-3, -20],
+      [86, -9],
+      [66, -23],
+      [124, -12],
+      [-9955, -15]
+    ],
+    [
+      [3456, 1546],
+      [12, -3],
+      [-1, -9],
+      [-17, 4],
+      [-19, -9],
+      [3, 13],
+      [22, 4]
+    ],
+    [
+      [3431, 1556],
+      [12, -2],
+      [-6, -9],
+      [-6, 11]
+    ],
+    [
+      [3331, 1581],
+      [7, -5],
+      [-12, -7],
+      [-4, 7],
+      [-20, -3],
+      [-1, 6],
+      [30, 2]
+    ],
+    [
+      [3392, 1616],
+      [7, -6],
+      [-33, -7],
+      [10, 13],
+      [16, 0]
+    ],
+    [
+      [3470, 1665],
+      [-6, -10],
+      [-5, 8],
+      [11, 2]
+    ],
+    [
+      [6916, 2373],
+      [5, -3],
+      [-5, -12],
+      [16, -14],
+      [19, 13],
+      [7, -1],
+      [-1, -15],
+      [-9, 1],
+      [-11, -5],
+      [2, -7],
+      [13, 1],
+      [-1, -9],
+      [-22, 3],
+      [-7, 8],
+      [-5, -13],
+      [-8, 4],
+      [5, 20],
+      [-5, 14],
+      [1, 12],
+      [6, 3]
+    ],
+    [
+      [9093, 2685],
+      [-7, -6],
+      [5, 12],
+      [2, -6]
+    ],
+    [
+      [9020, 2837],
+      [14, -3],
+      [13, -8],
+      [2, -6],
+      [17, -8],
+      [24, 13],
+      [5, -4],
+      [5, 11],
+      [5, -4],
+      [4, 9],
+      [10, -13],
+      [-1, -28],
+      [1, -39],
+      [-7, 1],
+      [-1, -22],
+      [-4, -21],
+      [3, -1],
+      [0, -21],
+      [-10, 9],
+      [6, 10],
+      [-14, 1],
+      [-4, -23],
+      [-2, 6],
+      [-8, -26],
+      [-9, 6],
+      [-14, -1],
+      [-3, 20],
+      [-2, -6],
+      [-4, 15],
+      [-7, 9],
+      [-6, 24],
+      [0, 13],
+      [9, -9],
+      [-13, 31],
+      [-11, 37],
+      [-2, 13],
+      [4, 15]
+    ],
+    [
+      [9121, 2859],
+      [-9, -6],
+      [0, 6],
+      [9, 0]
+    ],
+    [
+      [9109, 2896],
+      [9, -16],
+      [1, -14],
+      [-5, -2],
+      [-11, 22],
+      [6, 10]
+    ],
+    [
+      [9001, 2876],
+      [-5, -4],
+      [-1, 25],
+      [7, 3],
+      [-1, -24]
+    ],
+    [
+      [8822, 3134],
+      [-1, -10],
+      [12, 1],
+      [0, -11],
+      [-11, 1],
+      [-5, -10],
+      [-20, 1],
+      [-4, 17],
+      [21, 11],
+      [8, 0]
+    ],
+    [
+      [9263, 3604],
+      [-1, -18],
+      [-2, 14],
+      [3, 4]
+    ],
+    [
+      [9261, 3608],
+      [-2, 17],
+      [3, 2],
+      [-1, -19]
+    ],
+    [
+      [8136, 3714],
+      [7, -36],
+      [-7, 19],
+      [0, 17]
+    ],
+    [
+      [9257, 3758],
+      [2, -20],
+      [-10, -37],
+      [1, 32],
+      [5, 7],
+      [-2, 14],
+      [4, 4]
+    ],
+    [
+      [9195, 3832],
+      [5, -3],
+      [0, -17],
+      [-7, 17],
+      [2, 3]
+    ],
+    [
+      [9061, 4133],
+      [3, -7],
+      [-3, -7],
+      [-4, 13],
+      [4, 1]
+    ],
+    [
+      [8880, 4236],
+      [-7, -7],
+      [0, -6],
+      [-8, 0],
+      [1, 8],
+      [10, 8],
+      [4, -3]
+    ],
+    [
+      [8805, 4285],
+      [2, -15],
+      [-4, 8],
+      [2, 7]
+    ],
+    [
+      [8797, 4395],
+      [0, -9],
+      [6, 2],
+      [-5, -8],
+      [-1, -14],
+      [6, -6],
+      [-8, 0],
+      [-6, 5],
+      [-1, 14],
+      [9, 16]
+    ],
+    [
+      [8621, 4522],
+      [5, -21],
+      [-7, 4],
+      [-8, -2],
+      [5, 9],
+      [-2, 9],
+      [6, 10],
+      [1, -9]
+    ],
+    [
+      [8624, 4533],
+      [6, -6],
+      [14, 10],
+      [6, -2],
+      [1, -21],
+      [-14, -18],
+      [-13, 16],
+      [-3, 29],
+      [3, -8]
+    ],
+    [
+      [8682, 4547],
+      [1, -13],
+      [-4, 6],
+      [3, 7]
+    ],
+    [
+      [8959, 4566],
+      [-1, -8],
+      [6, -7],
+      [3, -19],
+      [0, -30],
+      [10, -9],
+      [-4, -20],
+      [6, -4],
+      [4, -11],
+      [-2, -17],
+      [5, 2],
+      [-1, -13],
+      [3, -19],
+      [-2, -19],
+      [5, -20],
+      [3, -22],
+      [5, -2],
+      [15, 18],
+      [4, -22],
+      [18, -23],
+      [-3, -12],
+      [2, -6],
+      [2, -37],
+      [3, -8],
+      [-2, -16],
+      [6, -22],
+      [9, -9],
+      [-1, -11],
+      [5, -19],
+      [1, -16],
+      [-3, -34],
+      [9, -15],
+      [-2, -17],
+      [5, -14],
+      [13, -15],
+      [4, 7],
+      [2, -12],
+      [8, 0],
+      [4, -6],
+      [1, -14],
+      [19, -12],
+      [1, -10],
+      [7, 5],
+      [3, -13],
+      [4, 1],
+      [1, -10],
+      [-4, -1],
+      [-1, -10],
+      [15, -24],
+      [-1, -8],
+      [8, -30],
+      [0, -14],
+      [3, -20],
+      [8, -7],
+      [5, -13],
+      [-3, 22],
+      [4, 5],
+      [3, -9],
+      [10, -13],
+      [2, 13],
+      [6, -21],
+      [-2, -15],
+      [3, -36],
+      [4, 0],
+      [4, -13],
+      [5, -4],
+      [6, -13],
+      [6, 3],
+      [4, -6],
+      [6, -27],
+      [8, -7],
+      [4, -25],
+      [10, -6],
+      [0, -27],
+      [6, -16],
+      [-2, -19],
+      [4, -40],
+      [-4, -3],
+      [10, -41],
+      [1, -17],
+      [3, -4],
+      [1, -40],
+      [-7, -21],
+      [-2, -39],
+      [-7, -32],
+      [0, -30],
+      [-3, -28],
+      [-5, -21],
+      [-6, -11],
+      [0, -23],
+      [-13, -15],
+      [-11, -20],
+      [-6, -26],
+      [-5, -3],
+      [0, -26],
+      [-9, -18],
+      [-3, -27],
+      [-4, -14],
+      [2, -9],
+      [-8, -7],
+      [-9, -34],
+      [0, -24],
+      [-7, -34],
+      [4, -21],
+      [-2, -14],
+      [-13, -16],
+      [-33, -2],
+      [-16, -10],
+      [-10, -13],
+      [-13, -24],
+      [-19, -4],
+      [3, -12],
+      [4, 7],
+      [-2, -20],
+      [-6, 16],
+      [-8, -3],
+      [-4, 16],
+      [-3, -3],
+      [-8, 9],
+      [5, 8],
+      [-2, 9],
+      [-6, 0],
+      [-1, -10],
+      [-8, -5],
+      [-6, 8],
+      [8, 1],
+      [3, 17],
+      [-6, 10],
+      [-15, -14],
+      [10, -2],
+      [-2, -8],
+      [-6, 0],
+      [-10, -11],
+      [-14, -22],
+      [-32, 28],
+      [-5, -2],
+      [-8, 7],
+      [-9, -1],
+      [1, -6],
+      [-8, 1],
+      [-4, 13],
+      [-14, 5],
+      [-10, 11],
+      [-3, 13],
+      [-13, 23],
+      [-3, 18],
+      [5, 6],
+      [0, 13],
+      [-9, 34],
+      [-14, 26],
+      [6, 2],
+      [3, 10],
+      [-4, 3],
+      [-21, -20],
+      [-8, 0],
+      [-1, 7],
+      [9, 12],
+      [3, 33],
+      [-8, 16],
+      [-3, 16],
+      [-7, -13],
+      [-1, -20],
+      [-5, -23],
+      [-7, 4],
+      [-15, -11],
+      [3, 23],
+      [11, -3],
+      [3, 21],
+      [-1, 25],
+      [4, 17],
+      [9, 19],
+      [-3, 19],
+      [6, 4],
+      [-8, 34],
+      [0, -26],
+      [-3, 2],
+      [-6, -11],
+      [-5, -27],
+      [-25, -26],
+      [-8, -24],
+      [-4, -3],
+      [-4, -16],
+      [6, 2],
+      [0, -12],
+      [-5, 7],
+      [-6, -5],
+      [-6, 18],
+      [-1, 21],
+      [-3, 17],
+      [-11, 20],
+      [-4, 27],
+      [-12, 0],
+      [-2, 13],
+      [-4, 1],
+      [7, 15],
+      [-5, 12],
+      [-8, -5],
+      [3, 9],
+      [-8, 16],
+      [-14, -5],
+      [-10, 14],
+      [-7, 1],
+      [-9, -6],
+      [-12, 18],
+      [-18, 14],
+      [-9, -7],
+      [-18, 2],
+      [-33, -7],
+      [-27, -23],
+      [-20, -11],
+      [-17, -2],
+      [-14, 5],
+      [-18, -19],
+      [-15, -10],
+      [-2, -6],
+      [-17, -8],
+      [-4, -5],
+      [-5, -28],
+      [-7, -16],
+      [-6, -7],
+      [-4, 3],
+      [-6, -7],
+      [-3, 9],
+      [-19, -3],
+      [-8, -6],
+      [0, 8],
+      [-14, 3],
+      [-20, -2],
+      [-13, -6],
+      [-16, -1],
+      [-9, -16],
+      [-2, -12],
+      [-16, 1],
+      [-3, -11],
+      [-7, -4],
+      [-2, -11],
+      [-20, -8],
+      [-2, -5],
+      [-12, 7],
+      [-18, -1],
+      [-15, 14],
+      [-10, 19],
+      [-10, 9],
+      [-4, -3],
+      [-4, 15],
+      [0, 32],
+      [6, -7],
+      [7, 3],
+      [6, 18],
+      [-1, 36],
+      [3, 8],
+      [0, 43],
+      [-18, 66],
+      [-4, 34],
+      [1, 32],
+      [-5, 22],
+      [-7, 17],
+      [0, 16],
+      [-11, 24],
+      [-2, 38],
+      [-5, 16],
+      [-11, 32],
+      [-7, 13],
+      [5, 14],
+      [6, -26],
+      [7, 6],
+      [0, 9],
+      [-9, 14],
+      [-4, 27],
+      [2, 4],
+      [7, -20],
+      [-1, -17],
+      [5, 14],
+      [2, -22],
+      [7, -2],
+      [0, 30],
+      [-5, 13],
+      [-6, 26],
+      [-4, 4],
+      [-3, 21],
+      [-5, 16],
+      [1, 26],
+      [4, 22],
+      [5, 6],
+      [0, 24],
+      [2, 10],
+      [-5, 22],
+      [3, 7],
+      [7, 33],
+      [4, 4],
+      [-2, -20],
+      [1, -21],
+      [7, 4],
+      [8, 34],
+      [23, 20],
+      [13, 26],
+      [21, 22],
+      [5, -3],
+      [8, 6],
+      [7, -7],
+      [12, 7],
+      [8, 14],
+      [17, 3],
+      [10, 20],
+      [12, -6],
+      [7, 6],
+      [12, 3],
+      [16, 11],
+      [11, 13],
+      [9, 25],
+      [3, 19],
+      [4, 4],
+      [16, 39],
+      [-4, 1],
+      [-2, 36],
+      [3, 14],
+      [8, 17],
+      [6, 3],
+      [0, 10],
+      [7, 12],
+      [-1, -15],
+      [5, -3],
+      [0, -14],
+      [12, -37],
+      [-1, 10],
+      [3, 13],
+      [-2, 11],
+      [7, -10],
+      [-3, 24],
+      [-6, 5],
+      [6, 13],
+      [-5, 8],
+      [5, 2],
+      [7, -7],
+      [-1, 9],
+      [7, -9],
+      [16, -1],
+      [-10, 3],
+      [-1, 9],
+      [6, 4],
+      [1, 18],
+      [-4, -11],
+      [-3, 18],
+      [1, 9],
+      [6, 1],
+      [3, 9],
+      [5, 0],
+      [4, -9],
+      [1, 10],
+      [-6, 3],
+      [4, 17],
+      [11, -10],
+      [0, 9],
+      [-8, 16],
+      [10, 14],
+      [3, -4],
+      [7, 6],
+      [1, -11],
+      [3, 5],
+      [4, 26],
+      [-5, 5],
+      [4, 7],
+      [3, -19],
+      [9, 16],
+      [1, -16],
+      [4, 14],
+      [4, 0],
+      [-3, 11],
+      [6, 4],
+      [4, -14],
+      [9, 1],
+      [11, -28],
+      [10, -16],
+      [-3, -17],
+      [0, -13],
+      [4, -1],
+      [-1, 11],
+      [5, 14],
+      [4, 3],
+      [12, -5],
+      [9, -11],
+      [-1, 11],
+      [7, -5],
+      [3, -14],
+      [4, 1],
+      [-3, 18],
+      [5, -1],
+      [-6, 15],
+      [-7, 11],
+      [4, 20],
+      [7, 4],
+      [1, 18],
+      [4, 9],
+      [11, 12],
+      [-5, 9],
+      [0, 14],
+      [6, 2],
+      [0, 12],
+      [6, 6],
+      [2, 11],
+      [7, -14],
+      [0, 17],
+      [4, -2],
+      [-1, 12],
+      [9, 5],
+      [3, -13],
+      [13, 4],
+      [4, -5],
+      [9, 5],
+      [7, 9],
+      [2, 24],
+      [-7, 12],
+      [-9, -5],
+      [-5, 12],
+      [-5, 0],
+      [7, 11],
+      [10, -1],
+      [9, -21],
+      [6, 10],
+      [7, -21],
+      [14, -7],
+      [4, 6],
+      [4, -11],
+      [3, 4],
+      [4, -12],
+      [6, -1],
+      [8, 7],
+      [11, -18],
+      [13, 11],
+      [6, 2],
+      [-4, -8],
+      [2, -6],
+      [5, 7],
+      [5, -5],
+      [-2, -11],
+      [7, -1],
+      [3, 14],
+      [-5, 3],
+      [10, 9],
+      [4, -17],
+      [3, 7],
+      [4, -11],
+      [-12, -28],
+      [4, -6],
+      [-9, -21],
+      [0, 9],
+      [-5, -6],
+      [0, 8],
+      [-7, -9],
+      [0, -26],
+      [4, 3],
+      [-4, -29],
+      [-3, -3],
+      [-7, -24],
+      [-4, -4],
+      [2, -13],
+      [22, -27],
+      [0, -8],
+      [10, -11],
+      [4, -9],
+      [7, 1],
+      [10, -14],
+      [10, -7],
+      [9, -21],
+      [7, -8],
+      [20, -9],
+      [4, -7],
+      [1, -15],
+      [22, -24],
+      [14, 4],
+      [10, 13],
+      [3, 24],
+      [7, 18],
+      [3, 26],
+      [3, 9],
+      [-2, 9],
+      [3, 25],
+      [5, 20],
+      [-4, 40],
+      [3, 16],
+      [-4, 13],
+      [1, 21],
+      [5, 21],
+      [-2, 18],
+      [6, 14],
+      [-2, 11],
+      [-5, -4],
+      [6, 28],
+      [6, 1],
+      [-2, 8],
+      [6, 41],
+      [0, 14],
+      [5, 2],
+      [6, 11]
+    ],
+    [
+      [5470, 7982],
+      [-2, -9],
+      [5, -23],
+      [3, -3]
+    ],
+    [
+      [5476, 7947],
+      [-3, -17],
+      [-12, 3],
+      [-6, -6],
+      [7, -3],
+      [-5, -12],
+      [-1, -22],
+      [-9, -9]
+    ],
+    [
+      [5447, 7881],
+      [-19, -12],
+      [-16, -2],
+      [-9, -14],
+      [-23, 9]
+    ],
+    [
+      [5380, 7862],
+      [-32, 7],
+      [-12, 17],
+      [2, 7],
+      [-12, -5],
+      [-17, -1],
+      [-4, -11],
+      [-15, 6]
+    ],
+    [
+      [5290, 7882],
+      [-2, 7],
+      [-6, -8],
+      [-16, 12]
+    ],
+    [
+      [5266, 7893],
+      [-2, 12]
+    ],
+    [
+      [5264, 7905],
+      [1, 14]
+    ],
+    [
+      [5265, 7919],
+      [4, 2]
+    ],
+    [
+      [5269, 7921],
+      [7, 0],
+      [8, -16],
+      [6, 15],
+      [12, -1],
+      [2, -7],
+      [9, 1],
+      [9, 10],
+      [32, 4],
+      [6, -11],
+      [3, 9],
+      [-5, 5],
+      [1, 13],
+      [-6, 9],
+      [4, 7],
+      [12, 5],
+      [4, 16],
+      [7, -3],
+      [3, 13]
+    ],
+    [
+      [5383, 7990],
+      [7, -9],
+      [18, 0],
+      [7, 11],
+      [0, 12],
+      [11, -1],
+      [20, -13],
+      [10, 3],
+      [13, -6],
+      [1, -5]
+    ],
+    [
+      [6281, 7420],
+      [-19, 8],
+      [-9, 14],
+      [-9, 24]
+    ],
+    [
+      [6244, 7466],
+      [-1, 3]
+    ],
+    [
+      [6289, 7594],
+      [9, -6],
+      [11, -12],
+      [5, -17],
+      [16, -3],
+      [5, 15],
+      [9, 6],
+      [5, 16]
+    ],
+    [
+      [6349, 7593],
+      [15, -31],
+      [1, -11],
+      [10, -28],
+      [15, -3],
+      [8, -10],
+      [-11, -3],
+      [-13, -11],
+      [0, -11],
+      [-6, -28],
+      [4, -11],
+      [-5, 0],
+      [-1, -17],
+      [-7, 10],
+      [-2, -43]
+    ],
+    [
+      [6357, 7396],
+      [-7, -2],
+      [-6, 12],
+      [-11, 12],
+      [1, 8],
+      [7, 2],
+      [-5, 18],
+      [6, 7],
+      [-10, 16],
+      [-4, -1],
+      [-26, -29],
+      [-11, -17]
+    ],
+    [
+      [6249, 7560],
+      [8, 10],
+      [13, -8],
+      [8, -9],
+      [6, 1],
+      [6, -8],
+      [4, 3],
+      [1, 15],
+      [-10, 9],
+      [-3, 13],
+      [7, 8]
+    ],
+    [
+      [5848, 5045],
+      [-4, -15],
+      [2, -14],
+      [9, -5],
+      [0, -17],
+      [-9, -13],
+      [-9, -34],
+      [-11, -21],
+      [-3, 1]
+    ],
+    [
+      [5823, 4927],
+      [-9, 39],
+      [1, 21],
+      [-4, 4]
+    ],
+    [
+      [5811, 4991],
+      [0, 18],
+      [-4, 5],
+      [-2, 12]
+    ],
+    [
+      [5805, 5026],
+      [4, 7],
+      [5, -4],
+      [0, -9],
+      [11, 1],
+      [5, 7],
+      [1, 21],
+      [6, -6],
+      [7, 7],
+      [4, -5]
+    ],
+    [
+      [5166, 8104],
+      [10, -14],
+      [1, -10],
+      [-8, -11]
+    ],
+    [
+      [5169, 8069],
+      [-7, -3],
+      [-4, -16],
+      [2, -14]
+    ],
+    [
+      [5160, 8036],
+      [-9, -3],
+      [-4, 10],
+      [-13, 7],
+      [-1, 21],
+      [-9, -13],
+      [-10, 3],
+      [2, 15],
+      [-5, 5],
+      [-10, 0],
+      [0, 6],
+      [-11, 5],
+      [-4, 15],
+      [-7, -6],
+      [-7, 8],
+      [-2, 15]
+    ],
+    [
+      [5070, 8124],
+      [16, 14],
+      [7, 3]
+    ],
+    [
+      [5093, 8141],
+      [0, -6],
+      [16, -3],
+      [8, 9]
+    ],
+    [
+      [5117, 8141],
+      [1, 0]
+    ],
+    [
+      [5118, 8141],
+      [3, 3],
+      [16, -1],
+      [7, -8],
+      [9, 0],
+      [9, -11],
+      [-6, -13],
+      [10, -7]
+    ],
+    [
+      [5099, 5856],
+      [-3, -17],
+      [7, -16],
+      [0, -19],
+      [3, -5],
+      [-1, -16],
+      [-5, 0],
+      [1, -14],
+      [-3, -18],
+      [-6, -3],
+      [0, -9],
+      [-5, -12],
+      [-2, -20],
+      [-8, -4],
+      [-2, -15],
+      [0, -41],
+      [-1, -12],
+      [2, -25],
+      [1, -42],
+      [-2, -18]
+    ],
+    [
+      [5075, 5550],
+      [-31, -9]
+    ],
+    [
+      [5044, 5541],
+      [5, 3],
+      [-5, 18],
+      [1, 24],
+      [0, 73],
+      [-1, 5],
+      [0, 43],
+      [-6, 13],
+      [-1, 37],
+      [-16, 23],
+      [0, 19],
+      [4, 17]
+    ],
+    [
+      [5025, 5816],
+      [5, 3],
+      [1, 13],
+      [4, -1],
+      [3, 11],
+      [6, -3],
+      [11, 2],
+      [8, 13],
+      [3, 14]
+    ],
+    [
+      [5066, 5868],
+      [-1, 19],
+      [14, 10],
+      [10, -21],
+      [2, -8],
+      [6, -4],
+      [2, -8]
+    ],
+    [
+      [5006, 6041],
+      [-2, -21],
+      [6, -16],
+      [-1, -9],
+      [7, -24],
+      [5, 0],
+      [7, -13],
+      [7, -7],
+      [-9, -1],
+      [0, -15],
+      [6, -6],
+      [11, -19],
+      [8, -1],
+      [3, 7],
+      [5, -3],
+      [3, -15],
+      [-6, -4],
+      [10, -26]
+    ],
+    [
+      [5025, 5816],
+      [-12, 0],
+      [-18, 8]
+    ],
+    [
+      [4995, 5824],
+      [-8, -3],
+      [-5, -10],
+      [-2, 5],
+      [-59, 0],
+      [-3, -22],
+      [3, -11],
+      [2, -25],
+      [0, -24],
+      [2, -5]
+    ],
+    [
+      [4925, 5729],
+      [-4, -4],
+      [-10, 24],
+      [-6, 5],
+      [-10, 1],
+      [-11, -7],
+      [-4, -11],
+      [-11, 3],
+      [-4, 12],
+      [-3, -1],
+      [-4, 24],
+      [-9, 1],
+      [-3, 7]
+    ],
+    [
+      [4846, 5783],
+      [3, 24],
+      [-2, 14],
+      [6, 9],
+      [1, 19],
+      [-4, 14],
+      [8, 10],
+      [9, 1],
+      [10, 18],
+      [-1, 24],
+      [6, 0],
+      [0, 14],
+      [-3, 11],
+      [10, 13],
+      [15, -13],
+      [5, 7],
+      [0, 25],
+      [6, -5],
+      [5, 21],
+      [11, 16],
+      [12, -6],
+      [1, 16],
+      [8, 3],
+      [11, 13],
+      [8, 5],
+      [8, 15],
+      [8, -4],
+      [8, 2],
+      [11, -8]
+    ],
+    [
+      [7529, 6456],
+      [0, 16],
+      [3, -11],
+      [-3, -5]
+    ],
+    [
+      [7521, 6458],
+      [-5, -7],
+      [2, 29],
+      [-4, 4],
+      [3, 11],
+      [6, -20],
+      [-2, -17]
+    ],
+    [
+      [7571, 6448],
+      [0, -29],
+      [2, -10],
+      [-12, 7],
+      [1, -20]
+    ],
+    [
+      [7562, 6396],
+      [1, -15],
+      [-7, 20],
+      [-1, 27],
+      [-3, 9],
+      [-2, 29],
+      [-11, 31],
+      [-5, -14],
+      [-9, 0],
+      [-8, 26],
+      [1, 14],
+      [-4, 6],
+      [-9, 4],
+      [11, -11],
+      [-4, -10],
+      [2, -12],
+      [-3, -8],
+      [5, -13],
+      [-2, -18],
+      [-6, -9],
+      [-1, -11],
+      [-7, 1],
+      [1, 7],
+      [-5, 6],
+      [-2, -15],
+      [-12, -7],
+      [0, 14],
+      [-4, -18],
+      [-4, 10],
+      [-1, 18]
+    ],
+    [
+      [7473, 6457],
+      [-6, 48],
+      [2, 14],
+      [-7, 2],
+      [3, 13],
+      [-6, 8],
+      [0, 11],
+      [5, 8],
+      [0, 22],
+      [-7, 0],
+      [-11, 12],
+      [-2, 7],
+      [4, 12],
+      [5, 1],
+      [3, 18],
+      [13, -1],
+      [-3, 18],
+      [-8, 1],
+      [-3, 11],
+      [-9, 14],
+      [2, 12],
+      [5, 4],
+      [4, 14],
+      [5, -9],
+      [11, -3],
+      [7, -14],
+      [7, -2],
+      [2, 15],
+      [6, -18],
+      [-2, -4],
+      [1, -32],
+      [15, -8],
+      [23, 2],
+      [7, -3],
+      [18, 3],
+      [11, -14],
+      [-6, -2],
+      [-5, -31],
+      [-5, -2],
+      [0, -9],
+      [-8, 2],
+      [0, -6],
+      [-7, 0],
+      [-7, -21],
+      [2, -14],
+      [9, -30],
+      [7, 5],
+      [0, 15],
+      [5, 8],
+      [-1, 11],
+      [5, 4],
+      [8, -22],
+      [0, -25],
+      [3, -12],
+      [3, -42]
+    ],
+    [
+      [5793, 7702],
+      [0, -17],
+      [-11, -3],
+      [-6, -14],
+      [-2, -26],
+      [-4, 1],
+      [-8, -16],
+      [5, 1],
+      [11, -28]
+    ],
+    [
+      [5778, 7600],
+      [-13, -4],
+      [-6, 9],
+      [-21, -5],
+      [-7, -15]
+    ],
+    [
+      [5731, 7585],
+      [-8, 0],
+      [2, -21],
+      [-25, -7],
+      [-9, 10],
+      [-8, 1],
+      [-2, 6],
+      [-14, 0],
+      [-8, -7],
+      [-13, 0],
+      [-10, -4]
+    ],
+    [
+      [5636, 7563],
+      [3, 22],
+      [-5, 18],
+      [-9, 5],
+      [-5, 11]
+    ],
+    [
+      [5620, 7619],
+      [5, 6],
+      [-3, 23],
+      [9, 5],
+      [7, 17],
+      [-13, 15],
+      [-4, 15],
+      [1, 17],
+      [8, 13]
+    ],
+    [
+      [5630, 7730],
+      [9, -8],
+      [-4, -15],
+      [17, 3],
+      [18, -8],
+      [10, 3],
+      [21, -5],
+      [4, -4],
+      [11, 5],
+      [9, 16],
+      [25, 10],
+      [10, -10],
+      [15, -2],
+      [8, -13],
+      [10, 0]
+    ],
+    [
+      [6402, 6694],
+      [3, 0],
+      [0, -24],
+      [-4, 8],
+      [1, 16]
+    ],
+    [
+      [2971, 6401],
+      [-3, -10],
+      [-15, -3],
+      [-1, 6],
+      [9, 10],
+      [4, -4],
+      [6, 12],
+      [0, -11]
+    ],
+    [
+      [2969, 6475],
+      [8, -3],
+      [-7, -3],
+      [-1, 6]
+    ],
+    [
+      [2948, 6491],
+      [0, -14],
+      [-5, 9],
+      [5, 5]
+    ],
+    [
+      [2889, 6546],
+      [9, -13],
+      [-10, 9],
+      [1, 4]
+    ],
+    [
+      [2908, 6546],
+      [6, -21],
+      [0, -8],
+      [7, -10],
+      [0, -8],
+      [-7, 15],
+      [-1, 14],
+      [-5, 18]
+    ],
+    [
+      [2840, 6572],
+      [6, 0],
+      [0, -20],
+      [-8, 5],
+      [-3, 13],
+      [5, 2]
+    ],
+    [
+      [2908, 6577],
+      [-3, 0],
+      [-4, 16],
+      [7, -16]
+    ],
+    [
+      [2830, 6632],
+      [3, 0],
+      [8, -40],
+      [-8, -11],
+      [-10, 14],
+      [7, 37]
+    ],
+    [
+      [2869, 6655],
+      [0, -4],
+      [16, -20],
+      [-1, -29],
+      [-2, 7],
+      [3, 17],
+      [-6, 14],
+      [-11, 8],
+      [1, 7]
+    ],
+    [
+      [2819, 6722],
+      [15, -4],
+      [-21, -5],
+      [6, 9]
+    ],
+    [
+      [2839, 6733],
+      [5, 0],
+      [16, -25],
+      [0, -11],
+      [-4, -3],
+      [0, -19],
+      [-6, 5],
+      [4, 8],
+      [0, 18],
+      [-8, 23],
+      [-7, 4]
+    ],
+    [
+      [5528, 7765],
+      [9, 0],
+      [-7, -29],
+      [14, -17],
+      [-10, -5],
+      [7, -13],
+      [-1, -8],
+      [-7, -3]
+    ],
+    [
+      [5533, 7690],
+      [-8, -3],
+      [0, -8],
+      [-7, -6],
+      [-1, -13],
+      [-4, 0],
+      [-1, -26]
+    ],
+    [
+      [5512, 7634],
+      [-22, 19]
+    ],
+    [
+      [5490, 7653],
+      [-2, 3]
+    ],
+    [
+      [5488, 7656],
+      [0, 8],
+      [-35, 57],
+      [-8, 32],
+      [-7, 3],
+      [0, 29],
+      [6, 2],
+      [10, -12],
+      [3, 10],
+      [9, -1],
+      [4, 7],
+      [4, -7],
+      [22, -6],
+      [4, 4],
+      [19, -3],
+      [2, -11],
+      [7, -3]
+    ],
+    [
+      [5781, 8416],
+      [4, -6],
+      [9, 3],
+      [3, -8],
+      [9, 4],
+      [11, -6],
+      [1, -13],
+      [12, 9],
+      [16, -3],
+      [11, -11],
+      [-2, -19],
+      [6, -15],
+      [-7, -13],
+      [11, -10],
+      [-3, -7],
+      [7, -14],
+      [15, -15],
+      [-3, -11],
+      [10, 1],
+      [11, -9],
+      [6, -11],
+      [-15, -22],
+      [-22, 5],
+      [-4, -9],
+      [8, -10],
+      [2, -30],
+      [5, -13]
+    ],
+    [
+      [5882, 8183],
+      [-23, -2],
+      [-12, -29],
+      [3, -14],
+      [-7, -1],
+      [-6, 11],
+      [-15, -1],
+      [-9, -6],
+      [-5, 14],
+      [-13, -11],
+      [-11, 13],
+      [-16, -10],
+      [1, 7],
+      [-13, 0],
+      [-1, 7],
+      [-21, 5],
+      [-10, 6],
+      [-28, 2],
+      [-19, -4],
+      [-11, -18],
+      [-11, 3],
+      [0, -5]
+    ],
+    [
+      [5655, 8150],
+      [0, 34],
+      [-12, 10],
+      [6, 13],
+      [15, 11],
+      [0, 18],
+      [-7, 25],
+      [-5, 28]
+    ],
+    [
+      [5652, 8289],
+      [20, 1],
+      [5, -4],
+      [12, 5],
+      [-1, 7],
+      [19, 11],
+      [1, -8],
+      [8, 6],
+      [-7, 3],
+      [9, 37],
+      [8, 1],
+      [3, 10],
+      [9, -1],
+      [6, 10],
+      [-8, 1],
+      [2, 20]
+    ],
+    [
+      [5738, 8388],
+      [11, 10],
+      [17, -2],
+      [8, 17],
+      [7, 3]
+    ],
+    [
+      [2547, 6247],
+      [-3, -6],
+      [9, 0],
+      [-1, -18],
+      [-5, -28],
+      [4, -4],
+      [-4, -10],
+      [2, -16],
+      [-2, -24],
+      [-7, -21],
+      [-5, -2],
+      [-5, -20]
+    ],
+    [
+      [2530, 6098],
+      [-9, 0],
+      [2, 51],
+      [0, 60]
+    ],
+    [
+      [2523, 6209],
+      [4, 10],
+      [4, -6],
+      [9, 26],
+      [0, 6],
+      [7, 2]
+    ],
+    [
+      [3084, 4249],
+      [-4, -1]
+    ],
+    [
+      [3080, 4248],
+      [4, 1]
+    ],
+    [
+      [3384, 4022],
+      [-1, 21],
+      [-24, 29],
+      [-24, 0],
+      [-51, -22],
+      [-4, -23],
+      [-10, -28],
+      [0, -29],
+      [-8, -54],
+      [-3, -14]
+    ],
+    [
+      [3133, 3869],
+      [-10, -5],
+      [-9, 4],
+      [1, 16],
+      [-3, 11],
+      [0, 16],
+      [-4, 7],
+      [-3, 23],
+      [0, 15],
+      [-6, 20],
+      [-4, 2],
+      [2, 18],
+      [-6, 6],
+      [1, 10],
+      [-3, 14],
+      [6, 2],
+      [1, 8],
+      [-5, 11],
+      [7, 16],
+      [-13, 23],
+      [-3, 34],
+      [-3, 18],
+      [2, 6],
+      [-7, 5],
+      [0, 8],
+      [-5, 18]
+    ],
+    [
+      [3069, 4175],
+      [-4, 17],
+      [7, 8],
+      [10, 30]
+    ],
+    [
+      [3082, 4230],
+      [5, -3],
+      [-1, 11],
+      [8, 5],
+      [0, 6],
+      [-7, 0],
+      [-1, 9],
+      [4, 4],
+      [-7, 3],
+      [0, 7],
+      [-10, 17]
+    ],
+    [
+      [3073, 4289],
+      [6, 16],
+      [-7, 15],
+      [6, 28],
+      [5, 6],
+      [3, 20],
+      [-6, 22],
+      [4, 8],
+      [-1, 36],
+      [7, 11],
+      [2, 12],
+      [-16, 55],
+      [-9, 34]
+    ],
+    [
+      [3067, 4552],
+      [23, -3],
+      [-1, -8],
+      [10, 6],
+      [9, 20],
+      [11, 3],
+      [11, 19],
+      [7, 3],
+      [11, 20],
+      [19, 8],
+      [7, 1],
+      [4, -5],
+      [5, 9],
+      [3, -32],
+      [-4, -13],
+      [3, -21],
+      [-2, -18],
+      [2, -19],
+      [3, -2],
+      [1, -14],
+      [4, -2],
+      [1, -12],
+      [5, -1],
+      [4, -10],
+      [6, -4],
+      [1, -11],
+      [13, -4],
+      [4, 4],
+      [10, -7],
+      [4, -8],
+      [5, 4],
+      [9, -20],
+      [4, 1],
+      [8, -10],
+      [7, 0],
+      [0, -6],
+      [8, -17],
+      [22, 4],
+      [18, -27],
+      [-2, -20],
+      [5, -18],
+      [1, -28],
+      [-9, -1],
+      [9, -20],
+      [3, -47],
+      [47, -4],
+      [3, 3],
+      [0, -13],
+      [-4, -8],
+      [2, -34],
+      [11, -15],
+      [6, -1],
+      [0, -8],
+      [6, -27],
+      [0, -10],
+      [-6, -46],
+      [-9, -38],
+      [7, -13],
+      [-8, -10]
+    ],
+    [
+      [3651, 3581],
+      [1, 22],
+      [3, 0],
+      [-4, -22]
+    ],
+    [
+      [3650, 3661],
+      [-4, 8],
+      [6, 7],
+      [-2, -15]
+    ],
+    [
+      [3919, 4412],
+      [0, -16],
+      [-4, 16],
+      [4, 0]
+    ],
+    [
+      [3660, 5124],
+      [-3, 3],
+      [4, 9],
+      [-1, -12]
+    ],
+    [
+      [3588, 5149],
+      [0, -7],
+      [-8, -7],
+      [1, 9],
+      [7, 5]
+    ],
+    [
+      [3577, 5151],
+      [2, -5],
+      [-4, -19],
+      [-3, -11],
+      [-15, -19],
+      [0, 13],
+      [7, 10],
+      [0, 14],
+      [2, 11],
+      [8, 8],
+      [3, -2]
+    ],
+    [
+      [3573, 5156],
+      [5, 19],
+      [0, -10],
+      [-5, -9]
+    ],
+    [
+      [3608, 5175],
+      [11, -6],
+      [9, 5],
+      [27, -7],
+      [-2, -14],
+      [-1, -20],
+      [-4, -14],
+      [-5, -5],
+      [0, -14],
+      [-7, -5],
+      [-3, 7],
+      [0, -11],
+      [-9, 1],
+      [-6, -12],
+      [-14, 3],
+      [-4, -6],
+      [-5, 2],
+      [-7, 28],
+      [1, 13],
+      [6, -5],
+      [1, 8],
+      [-7, -1],
+      [0, 23],
+      [2, 17],
+      [4, 10],
+      [5, 5],
+      [8, -2]
+    ],
+    [
+      [3586, 5165],
+      [-4, 4],
+      [1, 13],
+      [7, 3],
+      [2, -9],
+      [-6, -11]
+    ],
+    [
+      [3625, 5187],
+      [3, -5],
+      [-2, -7],
+      [-11, 2],
+      [10, 10]
+    ],
+    [
+      [3599, 5183],
+      [-5, 0],
+      [-2, 9],
+      [6, -1],
+      [1, -8]
+    ],
+    [
+      [3624, 5200],
+      [-6, -5],
+      [-3, -12],
+      [-14, 0],
+      [-1, 12],
+      [8, 1],
+      [15, 9],
+      [1, -5]
+    ],
+    [
+      [3600, 5213],
+      [1, -14],
+      [-2, -7],
+      [0, 23],
+      [1, -2]
+    ],
+    [
+      [3609, 5216],
+      [-6, -13],
+      [1, 14],
+      [5, -1]
+    ],
+    [
+      [3608, 5236],
+      [0, -10],
+      [-5, 0],
+      [5, 10]
+    ],
+    [
+      [3600, 5305],
+      [1, -11],
+      [-5, 4],
+      [4, 7]
+    ],
+    [
+      [3431, 5295],
+      [13, -7],
+      [2, 14],
+      [-6, 10],
+      [5, 17],
+      [6, -8],
+      [11, 2],
+      [0, 4],
+      [10, 2],
+      [8, -5],
+      [3, -7]
+    ],
+    [
+      [3483, 5317],
+      [3, -7],
+      [8, -3],
+      [7, 3],
+      [6, 9],
+      [5, -7],
+      [6, 5],
+      [9, -9],
+      [9, 11],
+      [8, 31],
+      [1, 14],
+      [4, 7],
+      [15, 44]
+    ],
+    [
+      [3564, 5415],
+      [5, 24],
+      [8, -16],
+      [1, -21],
+      [3, 4],
+      [-1, -29],
+      [3, -31],
+      [7, -22],
+      [1, -18],
+      [6, -18],
+      [13, -4],
+      [4, -8],
+      [0, -19],
+      [-7, -4],
+      [7, -3],
+      [-11, -17],
+      [-5, -12],
+      [-4, -17],
+      [-5, -11],
+      [-5, -1],
+      [-9, -17],
+      [-4, -19],
+      [-8, -19],
+      [0, -14],
+      [-7, -8],
+      [-1, -13],
+      [-6, 4],
+      [-14, -13],
+      [13, 2],
+      [0, -10],
+      [9, 7],
+      [7, 10],
+      [11, 11],
+      [13, 17],
+      [-5, -12],
+      [5, -5],
+      [0, -14],
+      [4, -9],
+      [0, -11],
+      [7, -14],
+      [4, 9],
+      [6, 4],
+      [5, -7],
+      [12, 10],
+      [1, -7],
+      [-5, -41],
+      [2, -2],
+      [8, 40],
+      [7, 18],
+      [2, -8],
+      [8, 21],
+      [3, -12],
+      [1, 19],
+      [4, -2],
+      [4, 16],
+      [1, 15],
+      [5, 0],
+      [5, 12],
+      [2, -11],
+      [4, 10],
+      [11, -7],
+      [19, -9],
+      [0, -10],
+      [7, -6],
+      [8, 5],
+      [1, -7],
+      [10, -9],
+      [1, -8],
+      [6, 9],
+      [-2, -11],
+      [1, -13],
+      [3, 11],
+      [5, 4],
+      [10, -14],
+      [-3, -5],
+      [6, -1],
+      [3, -8],
+      [-5, -16],
+      [5, 5],
+      [3, -14],
+      [-4, 0],
+      [-5, -36],
+      [2, -9],
+      [6, 14],
+      [1, 23],
+      [8, 8],
+      [1, -9],
+      [-7, -12],
+      [7, -2],
+      [2, 14],
+      [9, 4],
+      [6, -4],
+      [-1, 12],
+      [4, 0],
+      [18, -13],
+      [6, -11],
+      [15, -5],
+      [3, 6],
+      [5, -9],
+      [29, 4],
+      [3, 2],
+      [14, -3],
+      [25, -31],
+      [3, -1],
+      [8, -15],
+      [5, -2],
+      [11, -27],
+      [14, -26],
+      [9, -6],
+      [4, -12],
+      [6, -1],
+      [6, -8],
+      [16, -1],
+      [5, 3],
+      [13, -6],
+      [4, -13],
+      [9, -57],
+      [1, -24],
+      [5, -21],
+      [-1, -53],
+      [-7, -40],
+      [-7, -25],
+      [-10, -27],
+      [-3, 5],
+      [-2, -16],
+      [-12, -24],
+      [-3, -13],
+      [-10, -10],
+      [-5, -9],
+      [-11, -37],
+      [-15, -52],
+      [-13, -34],
+      [-5, 0],
+      [0, 14],
+      [-4, 9],
+      [-4, -16],
+      [0, -17],
+      [-4, -7],
+      [0, -27],
+      [-2, -5],
+      [2, -28],
+      [-3, -20],
+      [2, -9],
+      [0, -24],
+      [2, -28],
+      [2, -6],
+      [-4, -25],
+      [-6, -53],
+      [1, -31],
+      [-2, -9],
+      [-7, -8],
+      [-7, -30],
+      [2, -51],
+      [-3, -13],
+      [-6, -6],
+      [-9, -44],
+      [-13, -31],
+      [-8, -25],
+      [4, -27],
+      [-5, -10],
+      [-12, -7],
+      [-13, -20],
+      [0, -21],
+      [-17, 1],
+      [-11, -3],
+      [0, 18],
+      [-7, -5],
+      [2, -13],
+      [-22, -7],
+      [10, 7],
+      [-9, 3],
+      [-8, -7],
+      [-2, 7],
+      [-9, -7],
+      [1, -17],
+      [-10, -3],
+      [-2, -6],
+      [-10, -7],
+      [-1, -11],
+      [-12, 4],
+      [-8, -7],
+      [-1, -7],
+      [-11, -6],
+      [-11, -13],
+      [-5, -12],
+      [-10, -9],
+      [-10, -15],
+      [-1, -15],
+      [-8, -7],
+      [-6, 4],
+      [1, -17],
+      [-4, -17],
+      [-1, -19],
+      [-5, -6],
+      [4, -6],
+      [-3, -16],
+      [3, -6],
+      [2, -32],
+      [-2, -52],
+      [-4, -17],
+      [-17, -23],
+      [-5, -12],
+      [-14, -39],
+      [-8, -37],
+      [-10, -34],
+      [-12, -25],
+      [-22, -27],
+      [-3, -9],
+      [0, 17],
+      [5, -4],
+      [11, 20],
+      [5, 3],
+      [4, 11],
+      [-1, 12],
+      [5, 1],
+      [0, 10],
+      [9, 9],
+      [-1, 22],
+      [4, -6],
+      [1, 12],
+      [-12, -4],
+      [-9, 8],
+      [3, -7],
+      [-6, -21],
+      [-1, -24],
+      [-6, -10],
+      [-9, -4],
+      [-3, -21],
+      [-4, -3],
+      [-1, -14],
+      [5, -10],
+      [-5, -7],
+      [-6, -30],
+      [-7, -26],
+      [-18, -28]
+    ],
+    [
+      [3517, 3240],
+      [-4, 10]
+    ],
+    [
+      [3513, 3250],
+      [2, 1],
+      [1, 23],
+      [5, 4],
+      [2, 13],
+      [5, 6],
+      [5, -10],
+      [6, 18],
+      [-4, 16],
+      [-12, -19]
+    ],
+    [
+      [3523, 3302],
+      [-11, 11],
+      [-5, 23],
+      [-15, 14],
+      [-9, 21],
+      [-8, 3],
+      [-4, 8],
+      [-7, 3],
+      [-2, 10],
+      [-8, 11],
+      [-6, -13],
+      [-4, 0],
+      [0, 16],
+      [-23, 40],
+      [-7, 0],
+      [-2, -8],
+      [-11, -2],
+      [-2, 6]
+    ],
+    [
+      [3483, 3710],
+      [0, 8]
+    ],
+    [
+      [3483, 3718],
+      [5, 3],
+      [0, 26],
+      [4, 16],
+      [0, 34]
+    ],
+    [
+      [3492, 3797],
+      [-9, 15],
+      [-10, -10],
+      [-13, 1],
+      [-3, 21],
+      [1, 11],
+      [-4, 23],
+      [1, 21],
+      [-7, 19],
+      [-9, 1],
+      [-6, 12],
+      [-12, -10],
+      [-31, 8],
+      [0, 36],
+      [3, 16],
+      [-9, 61]
+    ],
+    [
+      [3067, 4552],
+      [-11, 2],
+      [-7, -8],
+      [-12, 3],
+      [0, 41],
+      [1, 29],
+      [2, 20],
+      [-10, -14],
+      [-2, -7],
+      [-9, -11],
+      [-25, 0],
+      [-3, 27],
+      [-14, 7],
+      [-11, 0],
+      [7, 16],
+      [0, 8],
+      [-6, 17],
+      [-4, 2],
+      [-1, 11],
+      [-5, 6],
+      [-2, 15],
+      [-5, 9],
+      [2, 9],
+      [-8, 14],
+      [1, 11],
+      [7, 2],
+      [-3, 13],
+      [2, 13],
+      [11, 17],
+      [5, 3],
+      [1, 12],
+      [-3, 14],
+      [8, 24],
+      [1, 30],
+      [14, 14],
+      [14, 21],
+      [17, 5],
+      [10, 6],
+      [5, 11],
+      [9, 1],
+      [3, -6],
+      [10, -5],
+      [0, 5]
+    ],
+    [
+      [3056, 4939],
+      [6, 58],
+      [0, 9],
+      [5, 46],
+      [0, 10],
+      [5, 54],
+      [-4, 13],
+      [-2, 24],
+      [-13, 21],
+      [1, 42],
+      [12, 4],
+      [3, 5],
+      [10, -6],
+      [-2, 21],
+      [-4, 4],
+      [-14, 0],
+      [0, 37],
+      [8, 4],
+      [5, -3],
+      [34, 0],
+      [-1, 16],
+      [7, -15],
+      [5, 4],
+      [9, 19],
+      [4, -5],
+      [7, -29],
+      [-1, -21],
+      [6, 2]
+    ],
+    [
+      [3142, 5253],
+      [11, -21],
+      [10, -7],
+      [10, 14],
+      [6, -1],
+      [-1, -17],
+      [11, 17],
+      [1, 10],
+      [11, 6],
+      [10, 16],
+      [0, -8],
+      [9, 16],
+      [0, 14],
+      [19, 16],
+      [1, 14],
+      [-20, 4],
+      [2, 15],
+      [-6, 20],
+      [0, 30],
+      [-13, 22],
+      [-4, 12],
+      [2, 5],
+      [4, -10],
+      [12, 0],
+      [4, -14],
+      [10, 4],
+      [4, -5],
+      [4, 7],
+      [4, -5],
+      [7, -18],
+      [7, 5],
+      [-1, 20],
+      [6, 1],
+      [4, 9],
+      [7, -6],
+      [18, 12],
+      [0, 6],
+      [16, 10],
+      [10, 22],
+      [-2, 13],
+      [-3, 1]
+    ],
+    [
+      [3312, 5482],
+      [11, 0],
+      [3, 4],
+      [8, -12],
+      [-3, -33],
+      [6, 0],
+      [5, -8],
+      [-2, -8],
+      [4, -14],
+      [0, -10],
+      [-7, -12],
+      [1, -13],
+      [-4, -17],
+      [-1, -22],
+      [2, -17],
+      [5, -5],
+      [0, -26],
+      [6, -8],
+      [8, -19],
+      [8, -4],
+      [4, -7],
+      [8, 5],
+      [0, 10],
+      [5, 9],
+      [9, -5],
+      [6, 11],
+      [7, 0],
+      [3, 11],
+      [9, 7],
+      [9, -8],
+      [9, 4]
+    ],
+    [
+      [3347, 5935],
+      [-4, 3],
+      [0, 13],
+      [6, -10],
+      [-2, -6]
+    ],
+    [
+      [8198, 5465],
+      [5, -34],
+      [-7, 5],
+      [-2, 24]
+    ],
+    [
+      [8194, 5460],
+      [4, 5]
+    ],
+    [
+      [8166, 5448],
+      [6, -1],
+      [7, 5],
+      [7, 12],
+      [9, 10],
+      [-2, -10]
+    ],
+    [
+      [8193, 5464],
+      [-7, -9],
+      [2, -17],
+      [0, -14],
+      [-7, -10],
+      [-7, 23],
+      [-8, 11]
+    ],
+    [
+      [7545, 6781],
+      [-2, -8],
+      [5, -11],
+      [6, 3],
+      [3, -10],
+      [-3, -11],
+      [3, -13],
+      [-5, -4],
+      [-33, -3],
+      [-10, 8],
+      [-6, -9],
+      [-11, -3],
+      [-12, 9],
+      [-6, -2],
+      [-7, 7],
+      [-3, 12],
+      [4, 10]
+    ],
+    [
+      [7468, 6756],
+      [3, 13],
+      [13, 29],
+      [11, 14],
+      [12, 3],
+      [0, -5],
+      [9, -1],
+      [-4, -10],
+      [18, -5],
+      [5, 6],
+      [10, -8],
+      [0, -11]
+    ],
+    [
+      [5701, 4158],
+      [-1, -8],
+      [8, -27],
+      [7, -13],
+      [6, -21],
+      [4, -29],
+      [8, -13],
+      [14, -17],
+      [7, -3],
+      [3, -9],
+      [0, -15],
+      [12, -1],
+      [-1, -34],
+      [6, -12],
+      [3, -15],
+      [18, -5],
+      [12, -10],
+      [1, -14],
+      [7, -7]
+    ],
+    [
+      [5815, 3905],
+      [-9, -3],
+      [-3, -13],
+      [-8, -7],
+      [-12, -4],
+      [-12, -27],
+      [-5, -6],
+      [-2, -10],
+      [-11, -7],
+      [-4, -13],
+      [-5, -31],
+      [-8, -10],
+      [-3, -10],
+      [-15, -6],
+      [0, -10],
+      [-8, -41],
+      [-5, -7],
+      [-10, 1],
+      [-4, -5],
+      [-17, 5],
+      [-10, 6],
+      [-13, 20],
+      [-7, 1],
+      [-7, -5],
+      [-6, -23],
+      [0, -14],
+      [-6, -13],
+      [-8, -7],
+      [-6, -18],
+      [-7, -2],
+      [-2, -10],
+      [-15, 0],
+      [-15, 4],
+      [0, 21],
+      [5, 11],
+      [0, 19],
+      [-4, 13],
+      [-1, 14],
+      [-10, 29],
+      [-8, 10]
+    ],
+    [
+      [5554, 3757],
+      [0, 159],
+      [28, 0],
+      [0, 212],
+      [23, 4],
+      [21, 9],
+      [21, 5],
+      [9, -27],
+      [15, 26],
+      [7, 4],
+      [4, -6],
+      [7, 13],
+      [12, 2]
+    ],
+    [
+      [5634, 5812],
+      [4, -14],
+      [8, -14],
+      [10, -31],
+      [1, -16],
+      [-1, -21],
+      [-5, -6],
+      [3, -9],
+      [-2, -17],
+      [19, -1]
+    ],
+    [
+      [5671, 5683],
+      [2, -7],
+      [-4, -11],
+      [3, -6],
+      [16, -5],
+      [8, -17],
+      [5, -3],
+      [1, -11],
+      [-4, -4],
+      [6, -14],
+      [18, -19],
+      [2, -10],
+      [8, -10],
+      [-2, -16],
+      [8, -21],
+      [6, -2],
+      [13, -23],
+      [-1, -15],
+      [6, -14]
+    ],
+    [
+      [5762, 5475],
+      [-12, 7],
+      [-4, -8],
+      [-10, -1],
+      [-12, 12],
+      [-6, -3],
+      [-11, 9],
+      [-4, -5],
+      [0, -13],
+      [-18, -7],
+      [-5, 11],
+      [-6, -10],
+      [-27, -19],
+      [-12, 12],
+      [-9, -34],
+      [-3, -5],
+      [-23, 9],
+      [-2, -3],
+      [-20, 12],
+      [-7, -2],
+      [-6, 20],
+      [-13, 14],
+      [-3, 7],
+      [-10, 1],
+      [-17, -34],
+      [-1, -7],
+      [-6, -3],
+      [2, -12],
+      [-1, -27],
+      [1, -13]
+    ],
+    [
+      [5517, 5383],
+      [-4, 9],
+      [-11, -4],
+      [-16, 7],
+      [-8, -6],
+      [-15, -2],
+      [-4, -7],
+      [-3, -27],
+      [1, -7],
+      [-8, -34]
+    ],
+    [
+      [5449, 5312],
+      [-2, 8],
+      [0, 26],
+      [-4, 13],
+      [-5, 3],
+      [-15, 32],
+      [-6, 21],
+      [4, 1],
+      [-3, 14],
+      [-10, 19],
+      [-1, 31],
+      [-4, 6],
+      [2, 8],
+      [1, 27],
+      [-7, 10],
+      [10, 13],
+      [5, 24],
+      [3, 4],
+      [6, 30],
+      [6, 14]
+    ],
+    [
+      [5429, 5616],
+      [9, -4],
+      [7, 8],
+      [10, 5],
+      [4, 11],
+      [2, -12],
+      [5, -7],
+      [23, 26],
+      [7, -2],
+      [5, 4],
+      [15, 1],
+      [15, 36],
+      [-6, 7],
+      [0, 8],
+      [5, 5],
+      [17, 0],
+      [10, 7],
+      [9, -1],
+      [4, 12],
+      [8, 5],
+      [5, 19],
+      [13, 24],
+      [5, 4],
+      [3, 10],
+      [-1, 14],
+      [8, 5],
+      [0, 5],
+      [14, 9],
+      [9, -3]
+    ],
+    [
+      [2957, 7804],
+      [-12, -5],
+      [13, 16],
+      [-1, -11]
+    ],
+    [
+      [2699, 7829],
+      [2, -7],
+      [13, 9],
+      [3, -9],
+      [5, 9],
+      [9, -4],
+      [2, -11],
+      [-7, -12],
+      [-23, 15],
+      [-15, 6],
+      [11, 4]
+    ],
+    [
+      [2665, 7849],
+      [6, -2],
+      [-2, -11],
+      [-4, 13]
+    ],
+    [
+      [3319, 7889],
+      [6, -10],
+      [-2, -13],
+      [-7, -22],
+      [5, 3],
+      [-19, -34],
+      [10, 5],
+      [9, 11],
+      [-10, 0],
+      [12, 21],
+      [4, -8],
+      [11, 0],
+      [-7, -23],
+      [-16, -12],
+      [-6, 3],
+      [-13, -5],
+      [-5, 21],
+      [1, 13],
+      [6, 7],
+      [10, 30],
+      [7, 14],
+      [4, -1]
+    ],
+    [
+      [3221, 7879],
+      [6, -21],
+      [3, 6],
+      [12, -8],
+      [33, 3],
+      [3, -3],
+      [-17, -10],
+      [4, -13],
+      [-11, -3],
+      [-2, 12],
+      [-19, 2],
+      [-4, 11],
+      [-11, 0],
+      [2, 14],
+      [-9, -1],
+      [4, 16],
+      [7, 9],
+      [-1, -14]
+    ],
+    [
+      [3503, 7956],
+      [10, 3],
+      [-1, -7],
+      [-9, 4]
+    ],
+    [
+      [2562, 7993],
+      [-9, -6],
+      [0, 8],
+      [9, -2]
+    ],
+    [
+      [2924, 7774],
+      [20, 14],
+      [8, 11],
+      [6, 0],
+      [2, 17],
+      [7, 17],
+      [14, 11],
+      [5, 9],
+      [17, 17],
+      [5, -2],
+      [32, 22],
+      [14, 22],
+      [0, 4],
+      [14, 20],
+      [0, 5],
+      [16, 23],
+      [21, 20],
+      [44, 28],
+      [28, 8],
+      [18, -3],
+      [10, -5],
+      [11, -14],
+      [1, -8],
+      [-11, 8],
+      [11, -15],
+      [-4, -13],
+      [-11, -4],
+      [-1, -6],
+      [-18, -13],
+      [-16, 11],
+      [-3, -5],
+      [-11, 0],
+      [18, -11],
+      [9, -15],
+      [8, 9],
+      [12, 0],
+      [3, -6],
+      [-7, -14],
+      [-1, -10],
+      [-11, -13],
+      [16, 0],
+      [-3, -15],
+      [11, -32],
+      [20, -8],
+      [-8, -6],
+      [7, -7],
+      [10, 0],
+      [4, -9],
+      [5, 5],
+      [24, -6],
+      [10, 10],
+      [5, -15],
+      [7, 3],
+      [7, -12],
+      [-7, -5],
+      [14, -3],
+      [-1, -4],
+      [-18, -7],
+      [0, -3],
+      [-32, -21],
+      [-9, 4],
+      [-4, -9],
+      [-8, 1],
+      [1, -9],
+      [-11, 0],
+      [1, 10],
+      [-9, -5],
+      [-4, -8],
+      [2, -10],
+      [-6, -5],
+      [-8, -19],
+      [-9, -10],
+      [-6, 1],
+      [-9, -11],
+      [-5, 14],
+      [-9, 5],
+      [-1, 14],
+      [7, 29],
+      [21, 24],
+      [22, 18],
+      [1, -13],
+      [7, 8],
+      [20, 9],
+      [-34, 2],
+      [-5, -6],
+      [-4, 6],
+      [13, 15],
+      [-3, 9],
+      [-5, -12],
+      [-16, -9],
+      [-17, -16],
+      [-4, 4],
+      [-10, -10],
+      [-12, -1],
+      [-8, 6]
+    ],
+    [
+      [3134, 7784],
+      [-9, 6],
+      [1, 19]
+    ],
+    [
+      [3126, 7809],
+      [-10, 9]
+    ],
+    [
+      [3116, 7818],
+      [1, 1],
+      [-1, 74],
+      [-14, 17],
+      [-16, -11],
+      [-9, 17],
+      [-19, -37],
+      [-4, -23],
+      [-7, -12],
+      [1, -17],
+      [-12, -20],
+      [1, -11],
+      [-18, -5],
+      [-6, -16],
+      [-89, -1]
+    ],
+    [
+      [1546, 8044],
+      [6, -11],
+      [-14, 13],
+      [8, -2]
+    ],
+    [
+      [1479, 8054],
+      [4, -13],
+      [-7, 0],
+      [-4, 9],
+      [7, 4]
+    ],
+    [
+      [3218, 8058],
+      [33, -11],
+      [15, -14],
+      [11, -6],
+      [10, -14],
+      [-16, -6],
+      [-24, 11],
+      [-14, 9],
+      [-2, 9],
+      [-22, 16],
+      [9, 6]
+    ],
+    [
+      [1494, 8104],
+      [-11, -4],
+      [6, 9],
+      [5, -5]
+    ],
+    [
+      [1448, 8112],
+      [20, -17],
+      [22, -5],
+      [26, -13],
+      [5, -19],
+      [9, -12],
+      [4, -16],
+      [22, -13],
+      [10, -22],
+      [8, -25],
+      [-6, -6],
+      [-11, 3],
+      [-22, 14],
+      [-14, 12],
+      [9, 11],
+      [-18, -4],
+      [-9, 9],
+      [4, 11],
+      [-8, 0],
+      [-1, 10],
+      [-14, -3],
+      [0, 11],
+      [7, 3],
+      [-8, 5],
+      [-1, 10],
+      [-15, -2],
+      [-33, 43],
+      [-2, 7],
+      [16, 8]
+    ],
+    [
+      [3447, 8155],
+      [6, -8],
+      [7, 7],
+      [-5, -17],
+      [-12, 4],
+      [2, -12],
+      [7, -5],
+      [-28, -60],
+      [-3, -27],
+      [6, 13],
+      [13, 21],
+      [12, -13],
+      [7, 0],
+      [-17, -14],
+      [11, -17],
+      [15, 9],
+      [-2, -16],
+      [12, 1],
+      [8, 14],
+      [9, -8],
+      [5, 3],
+      [15, -10],
+      [-4, -13],
+      [-17, -15],
+      [10, 3],
+      [-3, -15],
+      [12, -7],
+      [3, 10],
+      [4, -6],
+      [7, 9],
+      [-5, -19],
+      [-11, -9],
+      [-7, 0],
+      [6, -14],
+      [-6, -9],
+      [8, -15],
+      [2, 13],
+      [6, 14],
+      [12, 6],
+      [-9, -18],
+      [-1, -22],
+      [8, 8],
+      [3, 14],
+      [5, -19],
+      [-5, -10],
+      [-2, -19],
+      [-5, -17],
+      [-6, 3],
+      [-10, -3],
+      [4, 26],
+      [-2, 5],
+      [-14, -23],
+      [-4, 1],
+      [8, 31],
+      [1, 14],
+      [-5, 15],
+      [-18, -29],
+      [-10, -9],
+      [0, -8],
+      [-8, -11],
+      [-9, -1],
+      [-9, 5],
+      [3, 7],
+      [11, 3],
+      [15, 28],
+      [-11, 3],
+      [-6, -12],
+      [-10, 12],
+      [-28, -4],
+      [-25, 3],
+      [-6, 4],
+      [-18, -6],
+      [-15, -2],
+      [-4, 17],
+      [27, 37],
+      [-9, 3],
+      [-14, -6],
+      [8, 9],
+      [6, -3],
+      [9, 33],
+      [10, -9],
+      [-2, 9],
+      [8, 4],
+      [-11, 4],
+      [25, 78],
+      [8, 11],
+      [8, 28],
+      [24, 18]
+    ],
+    [
+      [1448, 8147],
+      [-7, 0],
+      [2, 14],
+      [5, -14]
+    ],
+    [
+      [1445, 8181],
+      [-2, -17],
+      [-4, 14],
+      [6, 3]
+    ],
+    [
+      [2798, 8181],
+      [-3, -7],
+      [-8, 3],
+      [11, 4]
+    ],
+    [
+      [1462, 8192],
+      [-15, -17],
+      [2, 14],
+      [17, 12],
+      [-4, -9]
+    ],
+    [
+      [1430, 8212],
+      [1, -9],
+      [-8, 2],
+      [7, 7]
+    ],
+    [
+      [2738, 8248],
+      [8, -1],
+      [10, -15],
+      [3, -12],
+      [-10, 1],
+      [-29, 15],
+      [6, 10],
+      [12, 2]
+    ],
+    [
+      [1339, 8249],
+      [4, -12],
+      [-6, -9],
+      [6, -21],
+      [17, -18],
+      [-5, -5],
+      [-20, 26],
+      [-16, 32],
+      [20, 7]
+    ],
+    [
+      [1427, 8244],
+      [3, -10],
+      [-2, -21],
+      [-14, 7],
+      [-3, 12],
+      [2, 20],
+      [14, -8]
+    ],
+    [
+      [1419, 8255],
+      [-7, 1],
+      [4, 10],
+      [3, -11]
+    ],
+    [
+      [1382, 8268],
+      [9, -8],
+      [5, -15],
+      [-7, 0],
+      [-15, 26],
+      [8, -3]
+    ],
+    [
+      [1386, 8270],
+      [-9, 4],
+      [2, 6],
+      [7, -10]
+    ],
+    [
+      [1395, 8273],
+      [11, -17],
+      [-5, -9],
+      [-21, 36],
+      [3, 5],
+      [12, -15]
+    ],
+    [
+      [1380, 8293],
+      [-2, -10],
+      [-7, 7],
+      [9, 3]
+    ],
+    [
+      [1305, 8302],
+      [20, -3],
+      [5, -14],
+      [-15, -10],
+      [13, -2],
+      [2, 21],
+      [12, 6],
+      [-8, -28],
+      [0, -22],
+      [-13, -7],
+      [-9, 10],
+      [7, 6],
+      [-11, 3],
+      [-7, 25],
+      [4, 15]
+    ],
+    [
+      [2815, 8428],
+      [-1, -10],
+      [-7, -3],
+      [4, 17],
+      [4, -4]
+    ],
+    [
+      [2787, 8429],
+      [-11, -11],
+      [1, 8],
+      [10, 3]
+    ],
+    [
+      [2801, 8446],
+      [-3, -6],
+      [9, -8],
+      [-12, -27],
+      [-8, -3],
+      [2, 12],
+      [-9, -16],
+      [-3, 4],
+      [14, 23],
+      [3, -5],
+      [3, 26],
+      [4, 0]
+    ],
+    [
+      [3293, 8462],
+      [1, -19],
+      [-7, 7],
+      [6, 12]
+    ],
+    [
+      [3204, 8666],
+      [5, -10],
+      [-11, 7],
+      [6, 3]
+    ],
+    [
+      [3109, 8672],
+      [7, -7],
+      [-4, -10],
+      [-10, -6],
+      [-3, 7],
+      [5, 16],
+      [5, 0]
+    ],
+    [
+      [3200, 8731],
+      [-2, -16],
+      [-16, 19],
+      [18, -3]
+    ],
+    [
+      [2793, 8775],
+      [5, -7],
+      [-8, -30],
+      [-8, -9],
+      [-10, 11],
+      [-2, 14],
+      [12, 23],
+      [11, -2]
+    ],
+    [
+      [3203, 8784],
+      [8, 0],
+      [-6, -10],
+      [-9, 3],
+      [7, 7]
+    ],
+    [
+      [3033, 8802],
+      [15, -11],
+      [0, -7],
+      [-13, 1],
+      [-7, 15],
+      [5, 2]
+    ],
+    [
+      [2719, 8809],
+      [7, -3],
+      [-2, -12],
+      [-27, -27],
+      [-23, -5],
+      [-6, 18],
+      [18, 27],
+      [8, -5],
+      [9, 6],
+      [16, 1]
+    ],
+    [
+      [2822, 8839],
+      [21, -4],
+      [4, -9],
+      [-13, -10],
+      [-16, 17],
+      [4, 6]
+    ],
+    [
+      [3216, 8833],
+      [-8, 14],
+      [5, 2],
+      [3, -16]
+    ],
+    [
+      [2857, 8849],
+      [12, -6],
+      [0, -11],
+      [-20, 14],
+      [8, 3]
+    ],
+    [
+      [3204, 8862],
+      [4, -12],
+      [-12, 8],
+      [8, 4]
+    ],
+    [
+      [3186, 8910],
+      [2, -6],
+      [-13, -6],
+      [11, 12]
+    ],
+    [
+      [2625, 8972],
+      [12, -9],
+      [-7, -5],
+      [11, -20],
+      [9, 16],
+      [14, -17],
+      [20, -4],
+      [4, -10],
+      [19, -12],
+      [5, 2],
+      [16, -14],
+      [5, -23],
+      [19, -8],
+      [-1, 8],
+      [22, -21],
+      [-8, -2],
+      [-19, -16],
+      [-26, 14],
+      [-12, -1],
+      [-1, 17],
+      [-15, -1],
+      [2, 13],
+      [-19, -10],
+      [2, -14],
+      [-19, -8],
+      [-9, -19],
+      [-25, -10],
+      [-5, 33],
+      [-27, -2],
+      [-14, -5],
+      [8, 20],
+      [20, 13],
+      [-6, 24],
+      [6, 15],
+      [0, 28],
+      [5, 23],
+      [13, 12],
+      [1, -7]
+    ],
+    [
+      [2638, 8984],
+      [9, -10],
+      [0, -16],
+      [-12, 13],
+      [3, 13]
+    ],
+    [
+      [2657, 8990],
+      [18, -11],
+      [-3, -6],
+      [15, -10],
+      [-15, 2],
+      [-15, 25]
+    ],
+    [
+      [2936, 9103],
+      [24, -5],
+      [1, -12],
+      [-28, 0],
+      [-10, 16],
+      [13, 1]
+    ],
+    [
+      [2601, 9095],
+      [-7, -12],
+      [-8, 5],
+      [-3, 16],
+      [9, 13],
+      [7, -6],
+      [2, -16]
+    ],
+    [
+      [2900, 9117],
+      [16, -9],
+      [-4, -11],
+      [3, -24],
+      [-9, -11],
+      [-14, -6],
+      [-31, -1],
+      [-7, 12],
+      [0, 22],
+      [15, 25],
+      [31, 3]
+    ],
+    [
+      [2096, 9122],
+      [-15, 8],
+      [14, 1],
+      [1, -9]
+    ],
+    [
+      [2919, 9131],
+      [3, -14],
+      [-16, 10],
+      [2, 12],
+      [11, -8]
+    ],
+    [
+      [2173, 9144],
+      [-3, -12],
+      [-12, 5],
+      [15, 7]
+    ],
+    [
+      [2218, 9152],
+      [-13, -10],
+      [2, 17],
+      [11, -7]
+    ],
+    [
+      [2820, 9179],
+      [-10, -28],
+      [-16, -3],
+      [26, 31]
+    ],
+    [
+      [2860, 9180],
+      [10, -6],
+      [-13, -11],
+      [-6, 16],
+      [9, 1]
+    ],
+    [
+      [2315, 9189],
+      [14, 0],
+      [-4, -11],
+      [-10, 11]
+    ],
+    [
+      [2342, 9191],
+      [8, -12],
+      [-14, -3],
+      [6, 15]
+    ],
+    [
+      [3114, 9197],
+      [-2, -10],
+      [-10, 3],
+      [12, 7]
+    ],
+    [
+      [2834, 9196],
+      [-16, -12],
+      [-9, 1],
+      [20, 15],
+      [5, -4]
+    ],
+    [
+      [2787, 9204],
+      [9, -8],
+      [-21, -3],
+      [4, -8],
+      [-24, 10],
+      [16, 8],
+      [16, 1]
+    ],
+    [
+      [2294, 9191],
+      [5, 5],
+      [10, -12],
+      [22, -14],
+      [6, -20],
+      [18, -3],
+      [-17, -6],
+      [-13, -15],
+      [-33, 4],
+      [-9, 7],
+      [-25, 7],
+      [-3, 8],
+      [-11, -6],
+      [-11, 11],
+      [33, 17],
+      [-4, 16],
+      [12, -9],
+      [-6, 16],
+      [10, 11],
+      [18, -11],
+      [-2, -6]
+    ],
+    [
+      [3004, 9275],
+      [14, -3],
+      [-20, -12],
+      [-5, 8],
+      [11, 7]
+    ],
+    [
+      [2924, 7774],
+      [-11, -4],
+      [-19, -25]
+    ],
+    [
+      [2894, 7745],
+      [-6, -7],
+      [-19, -10],
+      [-11, -18],
+      [-17, 9],
+      [-5, -3],
+      [-30, -8],
+      [-17, -15],
+      [-5, -17],
+      [13, -6],
+      [7, 4]
+    ],
+    [
+      [2804, 7674],
+      [-1, -9]
+    ],
+    [
+      [2803, 7665],
+      [5, -11],
+      [-36, -7],
+      [-9, -13],
+      [-11, 6],
+      [-12, -1],
+      [-32, -36],
+      [-12, -2],
+      [-5, 4],
+      [0, 12],
+      [5, 4],
+      [13, -1],
+      [1, 10],
+      [-6, 4]
+    ],
+    [
+      [2704, 7634],
+      [5, 9],
+      [1, 17]
+    ],
+    [
+      [2710, 7660],
+      [8, 4],
+      [12, 20],
+      [-1, 38],
+      [4, 14],
+      [9, 16],
+      [0, 12],
+      [-12, 25],
+      [11, 0],
+      [1, -14],
+      [14, -17],
+      [18, -14],
+      [0, 17],
+      [4, 6],
+      [6, -5],
+      [-9, 17],
+      [2, 14],
+      [-10, 3],
+      [-10, 32],
+      [-12, 0],
+      [-10, 8],
+      [-39, 6],
+      [-3, 0],
+      [-30, 10]
+    ],
+    [
+      [2663, 7852],
+      [0, 10],
+      [-10, -4]
+    ],
+    [
+      [2653, 7858],
+      [-3, 4],
+      [4, 24],
+      [-8, 1],
+      [3, 23],
+      [-11, 14],
+      [5, 20],
+      [-25, 0],
+      [-8, 9],
+      [-12, 39],
+      [-22, -2],
+      [-24, 14],
+      [-2, -22],
+      [-7, -2],
+      [3, 15],
+      [-6, -2],
+      [-5, -26],
+      [-5, -3],
+      [3, 16],
+      [-10, -5],
+      [-5, -22],
+      [-7, -6]
+    ],
+    [
+      [2511, 7947],
+      [-9, -1],
+      [-4, 7],
+      [-20, 0],
+      [-2, 7],
+      [-16, -11],
+      [-8, 4],
+      [-10, 14],
+      [-8, -7],
+      [-3, 12],
+      [-14, 11],
+      [-22, -6],
+      [-3, 7],
+      [-17, 3],
+      [-6, 5],
+      [-4, 31],
+      [-9, 3],
+      [0, -22],
+      [-79, 0],
+      [-80, 0],
+      [-55, 0],
+      [-79, 0],
+      [-79, 0],
+      [-49, 0],
+      [-49, 0],
+      [-80, 0],
+      [-61, 0],
+      [-74, 0],
+      [-81, 0]
+    ],
+    [
+      [1590, 8004],
+      [-8, 0]
+    ],
+    [
+      [1582, 8004],
+      [-1, 0]
+    ],
+    [
+      [1581, 8004],
+      [-7, 20],
+      [2, 14],
+      [-8, -11],
+      [-12, 8],
+      [-1, 15],
+      [-14, 0],
+      [-6, 8],
+      [3, 18],
+      [-3, 5],
+      [-9, 0],
+      [-20, 12],
+      [-13, -2],
+      [6, 17],
+      [-14, 1],
+      [-10, 6],
+      [-4, -6],
+      [-14, 11],
+      [-8, 12],
+      [9, 23],
+      [13, 3],
+      [-9, 3],
+      [-10, -15],
+      [-4, 12],
+      [0, 14],
+      [19, 25],
+      [0, 13],
+      [-12, -16],
+      [-7, -5],
+      [-8, 17],
+      [-4, -12],
+      [4, 26],
+      [-10, 9],
+      [-10, 34],
+      [10, -5],
+      [-8, 12],
+      [5, 21],
+      [-17, -20],
+      [-3, -14],
+      [-21, 32],
+      [-4, 26],
+      [-6, -3],
+      [1, 17],
+      [7, 4],
+      [10, 33],
+      [-5, 0],
+      [-4, 28],
+      [2, 8]
+    ],
+    [
+      [1387, 8402],
+      [0, 0]
+    ],
+    [
+      [1387, 8402],
+      [-1, 12],
+      [-9, 1],
+      [-9, 13],
+      [-10, 3],
+      [-14, 11],
+      [-7, 0],
+      [0, 11],
+      [-7, 4],
+      [2, 10],
+      [-29, 56],
+      [-20, 40],
+      [-12, 8],
+      [-4, 12],
+      [-21, 22],
+      [3, 8],
+      [-13, 13],
+      [-25, -11],
+      [-2, -20],
+      [-27, -20],
+      [-5, 17],
+      [-43, 50],
+      [3, 16],
+      [-17, -1],
+      [-9, -8],
+      [-12, 6],
+      [-16, 1],
+      [0, 538]
+    ],
+    [
+      [1083, 9194],
+      [29, -2],
+      [23, -6],
+      [15, -16],
+      [50, -21],
+      [26, 2],
+      [-3, 18],
+      [20, 5],
+      [-1, 8],
+      [29, 8],
+      [12, -5],
+      [-9, -9],
+      [24, 4],
+      [10, 14],
+      [16, 0],
+      [45, 28],
+      [22, -4],
+      [5, 11],
+      [9, -11],
+      [-45, -25],
+      [-27, -6],
+      [-3, -10],
+      [-18, -6],
+      [-4, -15],
+      [-9, 3],
+      [-4, -11],
+      [24, -3],
+      [-11, 15],
+      [29, 13],
+      [15, 12],
+      [12, -9],
+      [14, 21],
+      [35, 9],
+      [0, -10],
+      [23, 16],
+      [-2, 9],
+      [22, 7],
+      [-13, 3],
+      [0, 17],
+      [23, -16],
+      [14, -32],
+      [15, -16],
+      [20, -9],
+      [9, 4],
+      [-8, 12],
+      [10, 9],
+      [8, 18],
+      [10, -1],
+      [-2, -19],
+      [12, 0],
+      [-13, -19],
+      [24, -2],
+      [14, 8],
+      [6, 20],
+      [36, -3],
+      [23, -10],
+      [23, -16],
+      [31, -5],
+      [23, -13],
+      [57, -13],
+      [-9, 8],
+      [11, 4],
+      [38, -17],
+      [18, -18],
+      [-3, -9],
+      [-26, 2],
+      [-8, -18],
+      [-9, -3],
+      [47, -13],
+      [40, -1],
+      [3, 4],
+      [36, 1],
+      [22, 14],
+      [13, -16],
+      [18, 0],
+      [7, -21],
+      [6, 15],
+      [20, -23],
+      [-7, -21],
+      [25, -29],
+      [-12, 23],
+      [1, 18],
+      [16, -14],
+      [-4, 15],
+      [-9, 8],
+      [0, 15],
+      [-12, 12],
+      [7, 19],
+      [35, 18],
+      [21, 5],
+      [1, 13],
+      [-24, -7],
+      [2, -8],
+      [-22, -7],
+      [-16, 5],
+      [7, -11],
+      [-22, -3],
+      [-2, 12],
+      [-10, -3],
+      [14, 20],
+      [27, 5],
+      [31, 14],
+      [12, -3],
+      [9, -11],
+      [4, -20],
+      [19, -6],
+      [4, -12],
+      [20, -1],
+      [9, 8],
+      [5, -11],
+      [27, -14],
+      [21, -3],
+      [23, 10],
+      [26, -1],
+      [15, -7],
+      [25, 5],
+      [22, -12],
+      [12, 11],
+      [-16, 12],
+      [-10, -9],
+      [-10, 10],
+      [3, 9],
+      [-11, 11],
+      [27, 1],
+      [-8, 9],
+      [21, -3],
+      [5, -12],
+      [18, 3],
+      [-11, -15],
+      [26, 12],
+      [-16, -41],
+      [11, -19],
+      [10, 8],
+      [11, -20],
+      [4, 16],
+      [-15, 26],
+      [7, 19],
+      [17, -3],
+      [18, 14],
+      [18, 33],
+      [-10, 8],
+      [-5, -13],
+      [-15, 0],
+      [11, 34],
+      [18, -2],
+      [2, 13],
+      [-22, -5],
+      [-9, 14],
+      [-7, -7],
+      [-25, 10],
+      [-21, 22],
+      [1, 14],
+      [9, 15],
+      [-12, 9],
+      [5, 30],
+      [14, 6],
+      [8, -7],
+      [5, 12],
+      [-13, 4],
+      [18, 9],
+      [2, 13],
+      [18, 3],
+      [4, -19],
+      [7, 7],
+      [32, -24],
+      [4, -30],
+      [37, -41],
+      [-25, 2],
+      [-4, -6],
+      [18, -3],
+      [-25, -18],
+      [20, -9],
+      [18, 7],
+      [10, -9],
+      [19, -1],
+      [-23, -12],
+      [14, -11],
+      [6, -20],
+      [-2, -17],
+      [9, -12],
+      [11, 12],
+      [4, 31],
+      [11, 15],
+      [9, 1],
+      [28, -27],
+      [5, -32],
+      [-16, 2],
+      [1, -19],
+      [8, -19],
+      [17, -15],
+      [-1, -14],
+      [15, 7],
+      [-3, 7],
+      [14, -1],
+      [1, 20],
+      [17, 23],
+      [7, 37],
+      [25, 0],
+      [-10, 13],
+      [11, 7],
+      [-20, 11],
+      [-2, 10],
+      [6, 23],
+      [7, -4],
+      [20, 5],
+      [16, -9],
+      [30, -1],
+      [15, -23],
+      [22, -5],
+      [-6, -12],
+      [-12, -5],
+      [20, -5],
+      [1, -10],
+      [-20, -13],
+      [-17, 6],
+      [-2, -7],
+      [18, -11],
+      [-5, -13],
+      [26, -30],
+      [-7, -27],
+      [-13, -1],
+      [-17, -24],
+      [-12, -1],
+      [-10, -11],
+      [-25, 21],
+      [16, -30],
+      [-4, -2],
+      [-19, 14],
+      [4, -14],
+      [-25, 7],
+      [-5, 17],
+      [-19, -5],
+      [-18, 2],
+      [7, -12],
+      [19, -9],
+      [-16, -15],
+      [-3, -13],
+      [-23, -20],
+      [-16, 0],
+      [-17, 15],
+      [-31, 20],
+      [-10, -3],
+      [-30, 2],
+      [32, -7],
+      [14, -11],
+      [11, -16],
+      [56, -5],
+      [2, -11],
+      [-16, -20],
+      [-14, -27],
+      [-18, -15],
+      [-24, 1],
+      [-12, 10],
+      [4, -14],
+      [-10, -17],
+      [-21, -3],
+      [-19, 10],
+      [-14, 0],
+      [-37, 16],
+      [-8, -2],
+      [11, -10],
+      [4, 5],
+      [31, -11],
+      [-10, -11],
+      [18, 11],
+      [6, -8],
+      [25, -12],
+      [2, -18],
+      [-22, -16],
+      [-19, 5],
+      [-10, -3],
+      [15, -16],
+      [-19, 5],
+      [-2, -20],
+      [-8, -12],
+      [-18, -12],
+      [11, -4],
+      [-17, -12],
+      [-19, -60],
+      [-8, -31],
+      [3, -40],
+      [-3, -17],
+      [13, -17],
+      [3, 4],
+      [29, -1],
+      [2, -15],
+      [10, -37],
+      [9, -24],
+      [-3, -25],
+      [12, 2],
+      [30, 12],
+      [15, -3],
+      [15, -12],
+      [30, -8],
+      [12, -15],
+      [13, -10],
+      [7, -15],
+      [10, -12],
+      [11, -1],
+      [32, -17],
+      [21, -20],
+      [12, -3],
+      [19, 5],
+      [15, -6],
+      [12, 1],
+      [18, -9],
+      [3, -14],
+      [-6, -25],
+      [0, -12],
+      [8, -17],
+      [-2, -23],
+      [3, -13],
+      [-5, -19],
+      [20, -28],
+      [6, -21],
+      [10, -5],
+      [15, -30],
+      [1, -10],
+      [19, -11],
+      [1, 16],
+      [10, 15],
+      [11, -20],
+      [6, 11],
+      [-9, 15],
+      [13, 19],
+      [2, 22],
+      [-6, 4],
+      [1, 19],
+      [-5, 0],
+      [-5, 42],
+      [-2, 32],
+      [-7, 2],
+      [-6, 25],
+      [-5, 1],
+      [39, 22],
+      [16, 14],
+      [19, 23],
+      [12, 21],
+      [4, 16],
+      [0, 44],
+      [-8, 34],
+      [-9, 20],
+      [-24, 23],
+      [-13, 16],
+      [-2, 16],
+      [22, 21],
+      [-1, 20],
+      [14, 6],
+      [-1, 13],
+      [-7, 2],
+      [-7, 35],
+      [6, 6],
+      [-16, 2],
+      [10, 15],
+      [2, 20],
+      [6, 5],
+      [-13, 13],
+      [-4, 34],
+      [18, 16],
+      [21, -4],
+      [32, -14],
+      [34, -1],
+      [14, 12],
+      [18, -9],
+      [17, -14],
+      [-1, -8],
+      [30, -19],
+      [-9, -10],
+      [14, -16],
+      [23, -5],
+      [11, 2],
+      [2, -11],
+      [12, -1],
+      [2, 12],
+      [5, -18],
+      [-12, -15],
+      [6, -26],
+      [2, -26],
+      [-6, -6],
+      [3, -9],
+      [11, -2],
+      [-8, -8],
+      [2, -18],
+      [-19, -7],
+      [10, -3],
+      [15, 12],
+      [13, 1],
+      [11, -6],
+      [5, -24],
+      [7, 10],
+      [9, -20],
+      [28, 15],
+      [6, 21],
+      [10, -9],
+      [5, 18],
+      [7, 3],
+      [-2, 12],
+      [8, 8],
+      [-3, 22],
+      [8, 2],
+      [7, 25],
+      [14, 2],
+      [0, -12],
+      [9, -6],
+      [-1, -17],
+      [6, 0],
+      [5, -15],
+      [12, -13],
+      [-11, -9],
+      [13, 3],
+      [1, -13],
+      [7, 1],
+      [4, -11],
+      [-9, -11],
+      [16, 0],
+      [-2, -19],
+      [15, -12],
+      [7, -20],
+      [-14, -11],
+      [10, 2],
+      [6, -6],
+      [-6, -7],
+      [18, -7],
+      [-8, -18],
+      [-7, 0],
+      [5, -13],
+      [-9, -4],
+      [11, -10],
+      [-12, -2],
+      [5, -5],
+      [14, 1],
+      [-3, -13],
+      [10, -2],
+      [1, -7],
+      [22, -5],
+      [-4, -5],
+      [3, -16],
+      [-4, -16],
+      [20, 12],
+      [-2, -10],
+      [10, -5],
+      [10, 9],
+      [6, -22],
+      [30, -6],
+      [14, -10],
+      [-9, -11],
+      [-15, -1],
+      [-1, -6],
+      [-33, -12],
+      [21, 5],
+      [3, -3],
+      [-30, -15],
+      [-13, -3],
+      [2, -15],
+      [-11, -14],
+      [38, 24],
+      [6, 15],
+      [19, 9],
+      [-5, 7],
+      [24, -1],
+      [11, -22],
+      [-12, -11],
+      [6, -9],
+      [9, 15],
+      [30, -19],
+      [4, -15],
+      [-6, -7],
+      [5, -9],
+      [-7, -12],
+      [8, -9],
+      [4, -17],
+      [-8, -15],
+      [-20, -17],
+      [-10, -13],
+      [-8, 5],
+      [-25, -14],
+      [-8, 3],
+      [-7, -12],
+      [-8, -5],
+      [1, -12],
+      [-13, -8],
+      [0, -8],
+      [-11, -6],
+      [-3, -10],
+      [-38, -3],
+      [-10, -5],
+      [-6, 7],
+      [-51, 4],
+      [-26, -2],
+      [-37, 0],
+      [-5, -5],
+      [-8, 5],
+      [-19, -25],
+      [-3, -23],
+      [-4, -6],
+      [-19, -3],
+      [-4, -11],
+      [-24, -18],
+      [-10, -28],
+      [-7, -9],
+      [-19, 14],
+      [-5, -2],
+      [22, -14],
+      [-5, -20],
+      [-10, -17],
+      [-6, -3],
+      [-6, -17],
+      [-17, -23],
+      [-15, -1],
+      [-21, -24],
+      [-10, -4],
+      [-7, -18],
+      [-12, -11],
+      [-7, -11],
+      [-6, -2],
+      [5, -8],
+      [-15, -12],
+      [-6, -8]
+    ],
+    [
+      [1827, 9404],
+      [6, -29],
+      [-17, -11],
+      [32, 3],
+      [-4, 6],
+      [17, 15],
+      [49, -17],
+      [-3, -15],
+      [17, 6],
+      [18, -8],
+      [8, 4],
+      [-26, 29],
+      [23, -2],
+      [24, -23],
+      [11, -1],
+      [-1, -11],
+      [13, -38],
+      [6, -4],
+      [21, 15],
+      [-15, 14],
+      [-9, 45],
+      [0, 25],
+      [29, -10],
+      [8, 7],
+      [26, -17],
+      [18, -30],
+      [4, -24],
+      [19, -29],
+      [-7, -28],
+      [16, -17],
+      [25, -16],
+      [8, 1],
+      [35, -23],
+      [16, 4],
+      [4, -24],
+      [-13, -6],
+      [-4, 13],
+      [-5, -14],
+      [-19, 11],
+      [-14, -26],
+      [22, 5],
+      [-2, -17],
+      [9, -10],
+      [-19, -8],
+      [-24, -5],
+      [-49, 6],
+      [4, 12],
+      [-40, 5],
+      [-4, 18],
+      [-10, -16],
+      [-17, -13],
+      [-28, -6],
+      [-12, -9],
+      [-56, -11],
+      [-59, -3],
+      [-16, 19],
+      [2, 22],
+      [-18, 5],
+      [-26, -3],
+      [-22, 4],
+      [-18, 9],
+      [0, 6],
+      [-18, 12],
+      [-4, 14],
+      [39, 12],
+      [41, 5],
+      [53, -7],
+      [9, 7],
+      [22, -3],
+      [-18, 14],
+      [-19, 2],
+      [-18, 8],
+      [-58, -6],
+      [-19, 4],
+      [-40, -1],
+      [-19, 23],
+      [17, 8],
+      [41, 11],
+      [13, 11],
+      [-48, -10],
+      [-21, 6],
+      [13, 5],
+      [-36, 7],
+      [0, 11],
+      [16, 17],
+      [13, 3],
+      [-13, 15],
+      [34, 25],
+      [50, 16],
+      [27, 11],
+      [10, -5]
+    ],
+    [
+      [2094, 9405],
+      [-16, -22],
+      [-8, 1],
+      [-18, 19],
+      [-26, 12],
+      [13, 13],
+      [42, 1],
+      [16, -10],
+      [-3, -14]
+    ],
+    [
+      [2768, 9430],
+      [25, -7],
+      [37, 2],
+      [19, -6],
+      [32, -26],
+      [-1, -17],
+      [-52, 5],
+      [-28, -9],
+      [-22, 6],
+      [-4, 22],
+      [-21, 5],
+      [1, 25],
+      [14, 0]
+    ],
+    [
+      [2595, 9436],
+      [41, -3],
+      [4, -8],
+      [-30, -21],
+      [-18, -26],
+      [10, -20],
+      [-3, -28],
+      [9, -14],
+      [19, -16],
+      [14, -5],
+      [-16, -13],
+      [-13, 0],
+      [-8, -10],
+      [21, 10],
+      [18, -2],
+      [8, 17],
+      [-4, 14],
+      [-16, -1],
+      [-8, 13],
+      [2, 21],
+      [16, 1],
+      [-18, 12],
+      [-3, 25],
+      [14, 2],
+      [-6, 11],
+      [26, -5],
+      [-19, 15],
+      [63, 24],
+      [37, -1],
+      [11, -27],
+      [14, -5],
+      [0, -14],
+      [10, -10],
+      [-26, -24],
+      [18, 11],
+      [-11, -18],
+      [5, -13],
+      [12, 5],
+      [16, 25],
+      [23, -13],
+      [11, 14],
+      [26, 14],
+      [67, -15],
+      [7, -14],
+      [-14, -14],
+      [33, 4],
+      [0, -15],
+      [-32, -17],
+      [31, 12],
+      [19, -1],
+      [-10, -9],
+      [-4, -17],
+      [12, 19],
+      [3, -12],
+      [15, -7],
+      [13, 23],
+      [32, -12],
+      [8, -11],
+      [-10, -12],
+      [-11, 3],
+      [-13, -14],
+      [4, -6],
+      [25, 7],
+      [4, 9],
+      [15, 2],
+      [3, -9],
+      [-13, -17],
+      [30, 15],
+      [-3, -16],
+      [15, 10],
+      [31, -11],
+      [-10, -16],
+      [-31, -9],
+      [32, 3],
+      [-1, -16],
+      [12, 9],
+      [6, 14],
+      [24, -23],
+      [2, -12],
+      [-26, 3],
+      [-15, -11],
+      [19, -8],
+      [19, 1],
+      [16, -11],
+      [-2, -8],
+      [-26, 2],
+      [-15, 8],
+      [-22, 3],
+      [22, -8],
+      [13, -10],
+      [-8, -4],
+      [5, -11],
+      [-43, 2],
+      [33, -6],
+      [-9, -8],
+      [29, -2],
+      [23, -6],
+      [-10, -6],
+      [8, -11],
+      [37, -12],
+      [12, 7],
+      [-2, -12],
+      [18, -4],
+      [13, -28],
+      [-21, -10],
+      [47, 10],
+      [-7, -18],
+      [22, -5],
+      [5, 9],
+      [18, -10],
+      [10, -16],
+      [-20, -10],
+      [14, -3],
+      [-30, -8],
+      [14, -7],
+      [-7, -17],
+      [-15, -3],
+      [7, -7],
+      [-17, -1],
+      [-7, 16],
+      [3, -21],
+      [-9, -4],
+      [9, -9],
+      [-5, -24],
+      [-17, 9],
+      [-9, 14],
+      [-1, -9],
+      [-18, 16],
+      [-1, 14],
+      [-9, 5],
+      [19, 17],
+      [-31, -5],
+      [-2, 9],
+      [-22, 20],
+      [2, 8],
+      [-13, -6],
+      [-6, -11],
+      [-16, 12],
+      [7, -15],
+      [16, -12],
+      [-1, -7],
+      [-20, -1],
+      [-9, 18],
+      [-2, -18],
+      [12, -16],
+      [14, 3],
+      [-2, -10],
+      [10, -2],
+      [10, -39],
+      [1, 14],
+      [31, -16],
+      [-3, -16],
+      [17, 0],
+      [-10, -10],
+      [11, -14],
+      [11, -5],
+      [-9, -11],
+      [12, -6],
+      [0, -25],
+      [-7, 5],
+      [-4, 18],
+      [-2, -14],
+      [10, -29],
+      [-17, 5],
+      [8, -19],
+      [-7, -5],
+      [-1, 13],
+      [-12, 11],
+      [-12, -3],
+      [-13, 13],
+      [-5, -5],
+      [-20, 21],
+      [-6, 12],
+      [-1, -16],
+      [-27, 24],
+      [-8, -3],
+      [23, -33],
+      [17, -6],
+      [17, -21],
+      [5, 0],
+      [16, -26],
+      [7, -2],
+      [-9, -20],
+      [-30, 16],
+      [-35, 7],
+      [-12, 7],
+      [-25, 24],
+      [-9, -2],
+      [-38, 22],
+      [-5, 14],
+      [15, 10],
+      [-16, 12],
+      [-2, -7],
+      [-15, 9],
+      [-13, 14],
+      [-15, 33],
+      [-20, -9],
+      [4, 15],
+      [-14, -6],
+      [-5, -14],
+      [-30, 14],
+      [-5, -12],
+      [-24, -12],
+      [-14, 2],
+      [-18, 11],
+      [-4, 27],
+      [5, 9],
+      [18, 8],
+      [-3, 15],
+      [21, -2],
+      [25, -11],
+      [9, -9],
+      [-6, -7],
+      [10, -12],
+      [-2, 16],
+      [-16, 17],
+      [23, -3],
+      [1, 7],
+      [15, -3],
+      [11, 12],
+      [19, -5],
+      [-7, 19],
+      [-8, 4],
+      [-13, 18],
+      [41, 32],
+      [5, 19],
+      [15, 6],
+      [-4, 22],
+      [-12, 18],
+      [-4, 23],
+      [-23, 5],
+      [3, 18],
+      [-19, -6],
+      [-13, 16],
+      [2, 15],
+      [-9, -11],
+      [-10, 2],
+      [-32, -14],
+      [0, 20],
+      [28, 3],
+      [1, 9],
+      [-30, 19],
+      [-15, 5],
+      [10, 9],
+      [-23, 0],
+      [0, 21],
+      [-20, 2],
+      [-10, 12],
+      [-21, 2],
+      [21, -15],
+      [3, -13],
+      [-29, -7],
+      [-6, 8],
+      [-39, 3],
+      [15, -14],
+      [-9, -2],
+      [-14, 13],
+      [-15, -11],
+      [-25, 12],
+      [-15, -3],
+      [-31, 3],
+      [-5, 4],
+      [-39, 2],
+      [-21, 21],
+      [1, -11],
+      [-47, 11],
+      [-21, 25],
+      [9, 7],
+      [22, -4],
+      [27, 0],
+      [-15, 18],
+      [-6, -3],
+      [-47, 6],
+      [-5, 7],
+      [5, 17],
+      [-9, 11],
+      [5, 24],
+      [25, 52],
+      [36, 27],
+      [33, 8]
+    ],
+    [
+      [2227, 9438],
+      [17, -9],
+      [57, 6],
+      [4, -12],
+      [-12, -6],
+      [8, -7],
+      [-19, -7],
+      [-19, -16],
+      [35, -3],
+      [9, -16],
+      [12, 3],
+      [5, -18],
+      [-9, -6],
+      [3, -27],
+      [-25, -13],
+      [-26, 2],
+      [9, -8],
+      [-13, -13],
+      [-19, 3],
+      [-13, 25],
+      [-27, 24],
+      [-21, 3],
+      [-34, 24],
+      [-4, 9],
+      [14, 16],
+      [11, -4],
+      [16, -18],
+      [24, 2],
+      [10, 8],
+      [-4, 14],
+      [-11, 1],
+      [-28, 20],
+      [11, 7],
+      [16, -9],
+      [3, 8],
+      [-13, 12],
+      [33, 5]
+    ],
+    [
+      [2287, 9448],
+      [-13, -11],
+      [-23, -4],
+      [-12, 7],
+      [34, 10],
+      [14, -2]
+    ],
+    [
+      [2423, 9449],
+      [18, -8],
+      [8, 5],
+      [45, -7],
+      [-28, -33],
+      [-12, -21],
+      [-14, -14],
+      [-33, 4],
+      [-13, -4],
+      [10, -16],
+      [-18, -22],
+      [-29, -6],
+      [-2, 33],
+      [-11, 9],
+      [-2, 60],
+      [11, 2],
+      [1, 14],
+      [44, 9],
+      [25, -5]
+    ],
+    [
+      [1623, 9476],
+      [28, -12],
+      [41, -10],
+      [46, 4],
+      [58, -41],
+      [-3, -6],
+      [-28, -9],
+      [-76, -37],
+      [-3, -15],
+      [-14, -8],
+      [-13, 1],
+      [-3, -32],
+      [-7, -11],
+      [-22, -7],
+      [-9, 5],
+      [-11, -12],
+      [-27, -10],
+      [-26, 36],
+      [-34, 14],
+      [-14, 0],
+      [0, 10],
+      [14, 22],
+      [9, 4],
+      [-4, 18],
+      [17, 2],
+      [-12, 9],
+      [14, 21],
+      [16, 15],
+      [-10, 9],
+      [-14, 28],
+      [87, 12]
+    ],
+    [
+      [2118, 9518],
+      [-3, -12],
+      [-30, 4],
+      [15, 17],
+      [18, -9]
+    ],
+    [
+      [2378, 9537],
+      [25, -20],
+      [2, -24],
+      [-5, -11],
+      [-41, 1],
+      [-43, 18],
+      [23, 30],
+      [25, 8],
+      [14, -2]
+    ],
+    [
+      [2325, 9539],
+      [-16, -17],
+      [-5, 9],
+      [21, 8]
+    ],
+    [
+      [2164, 9558],
+      [-14, -12],
+      [-20, -1],
+      [7, 9],
+      [27, 4]
+    ],
+    [
+      [2380, 9546],
+      [-17, 10],
+      [11, 3],
+      [6, -13]
+    ],
+    [
+      [2157, 9563],
+      [-38, -10],
+      [11, 8],
+      [27, 2]
+    ],
+    [
+      [1732, 9567],
+      [5, -3],
+      [-22, -28],
+      [-10, -5],
+      [-22, 5],
+      [20, 18],
+      [29, 13]
+    ],
+    [
+      [2805, 9567],
+      [0, -15],
+      [-16, -3],
+      [16, 18]
+    ],
+    [
+      [2149, 9575],
+      [-6, -11],
+      [-43, 0],
+      [2, 8],
+      [47, 3]
+    ],
+    [
+      [2113, 9595],
+      [25, -12],
+      [-38, -5],
+      [-7, 16],
+      [20, 1]
+    ],
+    [
+      [2266, 9598],
+      [21, -11],
+      [7, -58],
+      [-18, 1],
+      [14, -20],
+      [-11, -7],
+      [-47, -3],
+      [-20, 3],
+      [-11, 19],
+      [33, 20],
+      [-52, -5],
+      [-33, -7],
+      [2, 14],
+      [20, 10],
+      [-6, 28],
+      [18, 3],
+      [35, -31],
+      [7, 21],
+      [-30, 12],
+      [15, 9],
+      [23, 0],
+      [13, -10],
+      [20, 12]
+    ],
+    [
+      [2213, 9601],
+      [-38, -8],
+      [20, 9],
+      [18, -1]
+    ],
+    [
+      [2508, 9589],
+      [-10, -2],
+      [-15, 15],
+      [17, 6],
+      [8, -19]
+    ],
+    [
+      [1981, 9607],
+      [-3, -11],
+      [20, -20],
+      [-11, -11],
+      [22, -7],
+      [-10, -10],
+      [27, 5],
+      [12, 10],
+      [31, -10],
+      [1, -18],
+      [-15, -30],
+      [-28, -8],
+      [-21, 7],
+      [-19, -7],
+      [-5, 8],
+      [-25, -11],
+      [-22, -4],
+      [-24, -12],
+      [-34, -10],
+      [-29, 0],
+      [-27, 17],
+      [52, 17],
+      [27, 0],
+      [19, 13],
+      [-36, -6],
+      [-3, 5],
+      [-44, -9],
+      [-5, 24],
+      [-10, -23],
+      [-35, -6],
+      [-55, 16],
+      [12, 13],
+      [30, 0],
+      [31, 14],
+      [-30, -8],
+      [-32, 0],
+      [10, 12],
+      [57, 5],
+      [-39, 0],
+      [-12, 12],
+      [23, 10],
+      [10, 12],
+      [36, 1],
+      [7, -17],
+      [28, 5],
+      [33, -21],
+      [14, -22],
+      [62, -1],
+      [6, 7],
+      [-32, 17],
+      [18, 11],
+      [-30, 11],
+      [18, 11],
+      [15, 19],
+      [15, 0]
+    ],
+    [
+      [1840, 9610],
+      [3, -10],
+      [-34, 3],
+      [31, 7]
+    ],
+    [
+      [2354, 9618],
+      [44, -6],
+      [16, -16],
+      [46, 3],
+      [26, -13],
+      [-26, 0],
+      [59, -9],
+      [-2, -7],
+      [-52, -1],
+      [30, -6],
+      [28, -18],
+      [2, -16],
+      [14, 11],
+      [11, -8],
+      [26, 6],
+      [13, -9],
+      [59, 10],
+      [21, 10],
+      [23, -5],
+      [16, 6],
+      [39, -3],
+      [40, -18],
+      [6, -11],
+      [-25, -15],
+      [16, 1],
+      [10, -9],
+      [-23, -7],
+      [-1, -11],
+      [-29, 0],
+      [-12, -6],
+      [-33, 5],
+      [-7, 16],
+      [-11, -16],
+      [-84, -5],
+      [-53, 2],
+      [2, 20],
+      [-21, -15],
+      [-21, -3],
+      [-30, 10],
+      [-10, -4],
+      [-19, 9],
+      [1, 10],
+      [-13, 14],
+      [11, 38],
+      [-14, 8],
+      [-14, 21],
+      [-17, -6],
+      [-37, -3],
+      [6, 7],
+      [-27, 3],
+      [-11, 14],
+      [-18, 4],
+      [15, 6],
+      [-15, 7],
+      [13, 6],
+      [32, -1]
+    ],
+    [
+      [1774, 9644],
+      [20, -9],
+      [-25, -7],
+      [-2, -15],
+      [13, -14],
+      [-30, -8],
+      [-9, -17],
+      [-20, 9],
+      [5, 24],
+      [-19, -6],
+      [-1, -22],
+      [-34, -26],
+      [-19, -3],
+      [-7, 19],
+      [-15, -12],
+      [-46, 8],
+      [9, 15],
+      [31, 5],
+      [9, 14],
+      [22, 7],
+      [15, 17],
+      [27, 15],
+      [26, 1],
+      [18, -6],
+      [32, 11]
+    ],
+    [
+      [2491, 9653],
+      [17, -10],
+      [-11, -14],
+      [-30, 11],
+      [0, 13],
+      [24, 0]
+    ],
+    [
+      [2083, 9641],
+      [18, -11],
+      [-11, -7],
+      [-23, 12],
+      [-14, 25],
+      [13, 0],
+      [17, -19]
+    ],
+    [
+      [2350, 9662],
+      [51, 0],
+      [13, -7],
+      [-11, -10],
+      [-70, 0],
+      [-6, 13],
+      [23, 4]
+    ],
+    [
+      [2196, 9660],
+      [-42, -1],
+      [0, 9],
+      [21, 1],
+      [21, -9]
+    ],
+    [
+      [1824, 9675],
+      [20, -11],
+      [-15, -6],
+      [-27, 14],
+      [22, 3]
+    ],
+    [
+      [1955, 9679],
+      [-35, -12],
+      [21, -5],
+      [-3, -16],
+      [-52, -10],
+      [-31, 11],
+      [3, 23],
+      [51, 10],
+      [46, -1]
+    ],
+    [
+      [1933, 9718],
+      [31, -15],
+      [-4, -11],
+      [-50, 5],
+      [-52, -7],
+      [-5, 8],
+      [40, 8],
+      [40, 12]
+    ],
+    [
+      [2308, 9715],
+      [18, -10],
+      [40, -9],
+      [-15, -7],
+      [9, -16],
+      [-51, -11],
+      [-22, 18],
+      [22, 2],
+      [-33, 10],
+      [-10, 12],
+      [7, 18],
+      [35, -7]
+    ],
+    [
+      [2120, 9752],
+      [22, -6],
+      [10, -21],
+      [25, 12],
+      [58, -29],
+      [-8, -16],
+      [22, -13],
+      [0, -11],
+      [-25, -6],
+      [-19, 5],
+      [-12, 19],
+      [-45, 10],
+      [-50, -6],
+      [-10, 18],
+      [38, -3],
+      [1, 15],
+      [-18, 11],
+      [-27, -9],
+      [10, 11],
+      [-26, 2],
+      [4, 16],
+      [50, 1]
+    ],
+    [
+      [2237, 9796],
+      [21, -8],
+      [-5, -17],
+      [-36, 22],
+      [20, 3]
+    ],
+    [
+      [2423, 9866],
+      [56, -44],
+      [40, -1],
+      [1, -15],
+      [22, 9],
+      [22, -2],
+      [19, -26],
+      [-9, -26],
+      [20, 9],
+      [23, -2],
+      [24, -19],
+      [-46, -14],
+      [-69, -50],
+      [-26, 25],
+      [15, -26],
+      [-24, 10],
+      [0, -11],
+      [-49, 4],
+      [-22, 17],
+      [34, 3],
+      [-45, 2],
+      [-28, 21],
+      [25, 12],
+      [79, 3],
+      [-58, 1],
+      [0, 12],
+      [-36, -11],
+      [-3, 7],
+      [-33, -6],
+      [-14, 15],
+      [27, 4],
+      [-31, 3],
+      [-21, 14],
+      [-4, 14],
+      [53, -6],
+      [21, 9],
+      [-36, -4],
+      [-32, 9],
+      [14, 17],
+      [41, 2],
+      [7, 8],
+      [-33, 3],
+      [17, 15],
+      [39, 0],
+      [7, 9],
+      [-28, 8],
+      [41, -2]
+    ],
+    [
+      [3064, 9969],
+      [92, -13],
+      [-63, -13],
+      [33, 0],
+      [64, 14],
+      [63, -22],
+      [36, -2],
+      [8, -17],
+      [-85, -27],
+      [-75, -6],
+      [11, -7],
+      [-78, -18],
+      [137, 21],
+      [-4, -9],
+      [-119, -45],
+      [-9, -11],
+      [-28, -4],
+      [-23, -32],
+      [-31, -8],
+      [-32, 7],
+      [7, -13],
+      [-52, -10],
+      [-85, -2],
+      [20, -4],
+      [80, -3],
+      [-1, -11],
+      [-35, 3],
+      [-9, 7],
+      [-57, -2],
+      [56, -5],
+      [-45, -3],
+      [55, -3],
+      [-14, -6],
+      [38, -1],
+      [8, -15],
+      [-22, -5],
+      [-30, 2],
+      [38, -10],
+      [-14, -14],
+      [-35, -13],
+      [-43, 0],
+      [19, -17],
+      [-14, -13],
+      [-47, -6],
+      [-38, 9],
+      [-17, 14],
+      [5, -14],
+      [18, -8],
+      [57, -7],
+      [-10, -14],
+      [19, -6],
+      [18, 11],
+      [7, -22],
+      [-21, -10],
+      [-5, 7],
+      [-22, -15],
+      [-42, -11],
+      [8, 17],
+      [-36, 5],
+      [-6, -7],
+      [-40, 2],
+      [-13, 10],
+      [-6, -17],
+      [-23, -1],
+      [-61, 10],
+      [-4, -7],
+      [-37, 4],
+      [-15, 10],
+      [-1, 17],
+      [33, 15],
+      [23, -1],
+      [15, 8],
+      [-21, 5],
+      [-15, 25],
+      [29, 7],
+      [27, -6],
+      [22, -23],
+      [54, -3],
+      [27, 35],
+      [-39, -27],
+      [-38, 10],
+      [15, 39],
+      [-21, -13],
+      [-21, 5],
+      [-35, -4],
+      [1, 19],
+      [24, 20],
+      [44, 7],
+      [35, -5],
+      [56, 1],
+      [-53, 4],
+      [-30, 6],
+      [11, 9],
+      [-23, 27],
+      [-37, 6],
+      [0, 32],
+      [75, -4],
+      [67, -35],
+      [-7, 16],
+      [-44, 23],
+      [80, 9],
+      [54, 8],
+      [-44, 0],
+      [94, 17],
+      [-62, -3],
+      [-2, 9],
+      [57, 26],
+      [-37, -9],
+      [-40, -28],
+      [-44, -11],
+      [-53, -5],
+      [27, 11],
+      [-48, 2],
+      [1, -13],
+      [-55, -1],
+      [-26, 5],
+      [26, 19],
+      [85, 11],
+      [-93, -8],
+      [-33, -21],
+      [-58, 14],
+      [99, 12],
+      [30, 12],
+      [-43, -8],
+      [-98, -8],
+      [-15, 8],
+      [12, 11],
+      [45, 14],
+      [-57, -12],
+      [12, 13],
+      [-22, 4],
+      [-21, -8],
+      [-14, 7],
+      [27, 11],
+      [83, 15],
+      [87, -6],
+      [-56, 12],
+      [43, 5],
+      [-12, 10],
+      [30, 1],
+      [59, -23],
+      [-11, 12],
+      [82, -19],
+      [-75, 24],
+      [18, 17],
+      [41, -8],
+      [-28, 15],
+      [47, -2],
+      [16, 12],
+      [41, -3],
+      [44, -11],
+      [-31, 15],
+      [35, 4],
+      [54, -3],
+      [10, -8],
+      [24, 12],
+      [91, 2]
+    ],
+    [
+      [5255, 7927],
+      [0, 0]
+    ],
+    [
+      [5255, 7927],
+      [0, 0]
+    ],
+    [
+      [5255, 7927],
+      [10, -8]
+    ],
+    [
+      [5264, 7905],
+      [2, -12]
+    ],
+    [
+      [5290, 7882],
+      [-2, -13],
+      [-10, -7],
+      [4, -15],
+      [-6, 6],
+      [-12, -4],
+      [-2, 10],
+      [-5, 0],
+      [-1, -14],
+      [-5, -6],
+      [-1, -18],
+      [-7, 10],
+      [2, 5],
+      [-11, 9],
+      [0, 13],
+      [-10, -11],
+      [1, -8],
+      [-9, -12],
+      [-8, 4],
+      [-13, -4]
+    ],
+    [
+      [5195, 7827],
+      [-7, 15],
+      [0, 14]
+    ],
+    [
+      [5188, 7856],
+      [-5, 6],
+      [-8, -4],
+      [-3, -9]
+    ],
+    [
+      [5172, 7849],
+      [-4, 7],
+      [2, 10],
+      [8, 9],
+      [0, 11],
+      [7, 4],
+      [12, 28],
+      [8, -5],
+      [5, 10]
+    ],
+    [
+      [5210, 7923],
+      [14, -1],
+      [9, 5],
+      [4, 9],
+      [9, -9],
+      [9, 0]
+    ],
+    [
+      [3101, 2016],
+      [-9, -10],
+      [13, -7],
+      [6, -18],
+      [-2, -7],
+      [-8, 14],
+      [-15, -2],
+      [2, 19],
+      [-18, -5],
+      [-1, -4],
+      [-14, 10],
+      [3, 5],
+      [39, 9],
+      [4, -4]
+    ],
+    [
+      [3116, 2021],
+      [14, -1],
+      [7, -9],
+      [-5, -12],
+      [-7, 7],
+      [-9, -6],
+      [-8, 1],
+      [-2, 15],
+      [10, 5]
+    ],
+    [
+      [3041, 2018],
+      [7, -9],
+      [-19, 2],
+      [-1, 8],
+      [13, -1]
+    ],
+    [
+      [3069, 2021],
+      [8, -5],
+      [-19, -3],
+      [-1, 8],
+      [12, 0]
+    ],
+    [
+      [3013, 2074],
+      [7, -1],
+      [8, -15],
+      [-5, -7],
+      [-8, 10],
+      [-4, -3],
+      [-2, 16],
+      [4, 0]
+    ],
+    [
+      [3003, 2080],
+      [6, -2],
+      [-5, -24],
+      [-11, 16],
+      [0, 7],
+      [10, 3]
+    ],
+    [
+      [3044, 2081],
+      [2, -8],
+      [-9, 4],
+      [3, -17],
+      [-9, 10],
+      [-1, 10],
+      [8, 1],
+      [-2, 10],
+      [6, 7],
+      [2, -17]
+    ],
+    [
+      [2972, 2103],
+      [2, 3],
+      [22, -21],
+      [-6, -2],
+      [-14, -18],
+      [4, 15],
+      [-9, 1],
+      [-7, -7],
+      [1, 12],
+      [-8, 1],
+      [3, 17],
+      [12, -1]
+    ],
+    [
+      [2925, 2147],
+      [15, -16],
+      [8, 0],
+      [21, -22],
+      [-10, 3],
+      [-11, 14],
+      [-13, -1],
+      [-10, 22]
+    ],
+    [
+      [3093, 2028],
+      [0, -1]
+    ],
+    [
+      [3093, 2021],
+      [-12, -3],
+      [-17, 9],
+      [-13, -4],
+      [-23, 10],
+      [-10, 10],
+      [-17, -8],
+      [-1, 12],
+      [8, -7],
+      [10, 12],
+      [7, -9],
+      [6, 12],
+      [-2, 12],
+      [20, -15],
+      [7, 5],
+      [13, -4],
+      [10, -11],
+      [3, 8],
+      [-28, 18],
+      [-4, 19],
+      [24, 15],
+      [-1, 8],
+      [-25, -6],
+      [-6, 8],
+      [1, 17],
+      [9, 1],
+      [0, 8],
+      [12, 7],
+      [2, 13],
+      [6, 4],
+      [5, -11],
+      [16, 0]
+    ],
+    [
+      [2952, 2165],
+      [-2, -17],
+      [-9, 0],
+      [-2, 7],
+      [13, 10]
+    ],
+    [
+      [2921, 2176],
+      [8, -2],
+      [-6, -7],
+      [-2, 9]
+    ],
+    [
+      [2938, 2182],
+      [8, -11],
+      [-5, -6],
+      [-3, 17]
+    ],
+    [
+      [2920, 2209],
+      [3, -4],
+      [-3, -19],
+      [-5, 7],
+      [5, 16]
+    ],
+    [
+      [2943, 2211],
+      [3, -10],
+      [-9, 5],
+      [6, 5]
+    ],
+    [
+      [2925, 2234],
+      [1, -8],
+      [-9, 1],
+      [8, 7]
+    ],
+    [
+      [2931, 2257],
+      [2, -13],
+      [-14, -1],
+      [-1, 9],
+      [9, -2],
+      [4, 7]
+    ],
+    [
+      [2924, 2263],
+      [1, -11],
+      [-8, 7],
+      [7, 4]
+    ],
+    [
+      [2906, 2275],
+      [8, 0],
+      [-10, -15],
+      [2, 15]
+    ],
+    [
+      [2931, 2276],
+      [3, 1],
+      [5, -22],
+      [-5, 0],
+      [-6, 13],
+      [3, 8]
+    ],
+    [
+      [2908, 2302],
+      [14, -5],
+      [0, -6],
+      [-18, -9],
+      [1, 12],
+      [7, -5],
+      [-4, 13]
+    ],
+    [
+      [2903, 2329],
+      [8, -14],
+      [-12, 3],
+      [4, 11]
+    ],
+    [
+      [2914, 2359],
+      [5, -2],
+      [0, -12],
+      [-9, 10],
+      [4, 4]
+    ],
+    [
+      [2906, 2359],
+      [2, -6],
+      [-9, -5],
+      [7, 11]
+    ],
+    [
+      [2925, 2377],
+      [5, 0],
+      [2, -27],
+      [-3, -27],
+      [3, -13],
+      [-9, -10],
+      [-4, 6],
+      [1, 25],
+      [-4, -21],
+      [-7, 11],
+      [-2, 25],
+      [13, -3],
+      [2, 12],
+      [-7, 18],
+      [10, 4]
+    ],
+    [
+      [2906, 2392],
+      [1, -9],
+      [-7, -5],
+      [-2, 13],
+      [8, 1]
+    ],
+    [
+      [2924, 2406],
+      [4, -8],
+      [2, -18],
+      [-14, 4],
+      [-1, 6],
+      [9, 16]
+    ],
+    [
+      [2913, 2413],
+      [9, -4],
+      [-1, -11],
+      [-7, -2],
+      [-5, 19],
+      [4, -2]
+    ],
+    [
+      [2907, 2415],
+      [7, -32],
+      [-6, 0],
+      [0, 16],
+      [-5, -5],
+      [-3, 20],
+      [7, 1]
+    ],
+    [
+      [2921, 2430],
+      [3, -17],
+      [-11, 6],
+      [-1, 6],
+      [9, 5]
+    ],
+    [
+      [2945, 2427],
+      [4, -6],
+      [-19, 2],
+      [7, 7],
+      [8, -3]
+    ],
+    [
+      [2914, 2436],
+      [-3, -8],
+      [-5, 6],
+      [8, 2]
+    ],
+    [
+      [2924, 2545],
+      [-1, -11],
+      [-10, 7],
+      [11, 4]
+    ],
+    [
+      [2936, 2556],
+      [-5, -9],
+      [0, 15],
+      [5, -6]
+    ],
+    [
+      [2955, 2556],
+      [-6, -2],
+      [3, 11],
+      [3, -9]
+    ],
+    [
+      [2948, 2591],
+      [3, -16],
+      [-7, 2],
+      [-6, 12],
+      [10, 2]
+    ],
+    [
+      [2946, 2594],
+      [-9, -4],
+      [3, 9],
+      [6, -5]
+    ],
+    [
+      [2946, 2613],
+      [2, -4],
+      [-11, -6],
+      [-4, 10],
+      [13, 0]
+    ],
+    [
+      [2974, 2623],
+      [6, -4],
+      [-12, -23],
+      [-4, -1],
+      [-5, 16],
+      [7, 2],
+      [-1, 11],
+      [9, -1]
+    ],
+    [
+      [2948, 2662],
+      [3, -7],
+      [-11, 0],
+      [8, 7]
+    ],
+    [
+      [2945, 2775],
+      [11, 1],
+      [5, -30],
+      [-8, -2],
+      [-4, -15],
+      [9, -10],
+      [-6, -5],
+      [6, -13],
+      [-7, -2],
+      [2, -14],
+      [-17, 3],
+      [-3, 4],
+      [7, 21],
+      [-1, 36],
+      [4, 8],
+      [2, 18]
+    ],
+    [
+      [3098, 2168],
+      [-21, 9],
+      [-7, -4],
+      [-3, -12],
+      [-8, -1],
+      [-27, -20],
+      [-3, -19],
+      [-1, -36],
+      [-7, -5],
+      [-24, 11],
+      [-10, 15],
+      [5, 11],
+      [15, 1],
+      [10, 5],
+      [6, 18],
+      [-5, 1],
+      [-22, -19],
+      [-5, 6],
+      [-7, -20],
+      [1, -10],
+      [-20, 22],
+      [9, 0],
+      [-1, 20],
+      [14, 1],
+      [13, 9],
+      [14, 0],
+      [-2, 5],
+      [-21, 3],
+      [-19, -19],
+      [1, -11],
+      [-6, -4],
+      [-8, 6],
+      [6, 5],
+      [-9, 6],
+      [9, 1],
+      [2, 11],
+      [-11, -5],
+      [0, 29],
+      [6, -2],
+      [15, 16],
+      [9, -1],
+      [0, 13],
+      [-7, -6],
+      [-15, 13],
+      [10, -15],
+      [-6, -4],
+      [-4, -13],
+      [-8, 7],
+      [0, 17],
+      [-9, 7],
+      [-1, 13],
+      [6, 2],
+      [1, 13],
+      [-6, -6],
+      [-7, 4],
+      [-1, 17],
+      [11, -2],
+      [-1, 9],
+      [-6, -4],
+      [-5, 21],
+      [-13, 14],
+      [9, 8],
+      [1, 26],
+      [3, 6],
+      [-5, 9],
+      [0, 44],
+      [10, 11],
+      [-11, 13],
+      [-3, 13],
+      [21, -4],
+      [6, -13],
+      [5, 5],
+      [-10, 27],
+      [-1, -6],
+      [-21, 1],
+      [-2, 12],
+      [9, -2],
+      [-7, 11],
+      [6, 12],
+      [5, 0],
+      [6, 11],
+      [-6, 2],
+      [-3, 12],
+      [-11, 0],
+      [-1, -5],
+      [-11, 14],
+      [4, 11],
+      [-13, -16],
+      [2, -11],
+      [-6, -3],
+      [-4, 19],
+      [13, 13],
+      [3, 10],
+      [12, 11],
+      [0, 11],
+      [14, 3],
+      [6, -14],
+      [-1, -8],
+      [7, -4],
+      [-7, -18],
+      [4, -3],
+      [5, 16],
+      [4, 49],
+      [8, 10],
+      [-3, 20],
+      [4, -1],
+      [14, 13],
+      [1, 15],
+      [-14, 13],
+      [4, 39],
+      [-1, 17],
+      [9, 12],
+      [-3, 14],
+      [0, 18],
+      [5, 2],
+      [-3, 15],
+      [5, 3],
+      [4, -15],
+      [0, 27],
+      [-8, -3],
+      [-4, 6],
+      [8, 12],
+      [-10, 13],
+      [-3, -13],
+      [-12, -6],
+      [-7, 4],
+      [2, 7],
+      [-5, 11],
+      [-2, 27],
+      [5, 20],
+      [1, 37],
+      [9, 7],
+      [4, 19],
+      [1, 19],
+      [-9, 38],
+      [2, 30],
+      [-6, 26],
+      [1, 22],
+      [9, -3],
+      [5, 16],
+      [0, 18],
+      [4, -4],
+      [5, 42],
+      [6, 9],
+      [-1, 15],
+      [6, 18],
+      [5, 6],
+      [1, 15],
+      [4, 12],
+      [1, 31],
+      [6, 21],
+      [4, 4],
+      [1, 12],
+      [-4, 23],
+      [6, 5],
+      [4, 37],
+      [-4, 9],
+      [1, 25],
+      [-5, 52],
+      [0, 24],
+      [2, 12],
+      [7, 5],
+      [2, 44],
+      [-5, 10],
+      [-1, 19],
+      [6, 11],
+      [4, 20],
+      [0, 18],
+      [3, 22],
+      [4, 2],
+      [-1, 30],
+      [4, 5],
+      [2, 15],
+      [2, 41],
+      [-2, 11],
+      [2, 19],
+      [6, 8],
+      [-1, 24],
+      [-2, 5],
+      [1, 62],
+      [3, 17],
+      [-6, 0],
+      [1, 25],
+      [6, 1],
+      [4, 33],
+      [0, 23],
+      [2, 25],
+      [2, 3],
+      [0, 24],
+      [-3, 10],
+      [0, 37],
+      [2, 6],
+      [-1, 31],
+      [-5, 51],
+      [0, 21],
+      [-2, 8]
+    ],
+    [
+      [3044, 4127],
+      [12, 4],
+      [4, 9],
+      [0, 26],
+      [9, 9]
+    ],
+    [
+      [8073, 6343],
+      [8, -9],
+      [1, -20],
+      [-9, -13],
+      [-7, -43],
+      [-4, 0],
+      [-5, -15],
+      [-9, -1],
+      [-2, -11],
+      [-14, 6],
+      [-14, 12],
+      [-1, 42],
+      [10, 19],
+      [8, 9],
+      [-1, 10],
+      [7, -3],
+      [5, 9],
+      [8, -6],
+      [10, 10],
+      [8, -9],
+      [1, 13]
+    ],
+    [
+      [8066, 6398],
+      [4, -5],
+      [-8, -2],
+      [4, 7]
+    ],
+    [
+      [8393, 6916],
+      [2, -7],
+      [-8, 4],
+      [6, 3]
+    ],
+    [
+      [8386, 6994],
+      [-10, 4],
+      [-11, 15],
+      [6, 2],
+      [9, -11],
+      [8, -5],
+      [-2, -5]
+    ],
+    [
+      [8689, 7778],
+      [-2, 10],
+      [-10, 6],
+      [-11, -7]
+    ],
+    [
+      [8666, 7787],
+      [-4, 7],
+      [-12, -22],
+      [-11, -4],
+      [0, -9],
+      [6, -40],
+      [-2, -28],
+      [3, -6],
+      [-5, -31],
+      [-19, -10],
+      [3, -13]
+    ],
+    [
+      [8625, 7631],
+      [-8, 13],
+      [0, 9],
+      [-9, 7],
+      [-4, -13],
+      [-1, -19],
+      [-14, -5],
+      [-1, -10],
+      [-7, -10],
+      [-26, -3],
+      [8, -20],
+      [-3, -13],
+      [-30, 7],
+      [-2, 12],
+      [-9, 1],
+      [-12, -34],
+      [-9, -16],
+      [-6, 0],
+      [-8, -10],
+      [-16, -14],
+      [-14, -21]
+    ],
+    [
+      [8454, 7492],
+      [-5, -13],
+      [-6, -5],
+      [-9, 3],
+      [-11, -3],
+      [-28, -28],
+      [-3, -9],
+      [-8, -11],
+      [-3, 5],
+      [-7, -13],
+      [-10, -4],
+      [0, 12],
+      [15, 8],
+      [-10, 29],
+      [6, 0],
+      [-2, 11],
+      [12, 12],
+      [11, 27],
+      [-3, 13],
+      [-22, 14],
+      [-12, -7],
+      [0, -7],
+      [-10, -13],
+      [-4, -16],
+      [-14, -7],
+      [-17, -19],
+      [-1, -19],
+      [-10, -15],
+      [-10, 0],
+      [-7, -8],
+      [-11, 11],
+      [-6, -6],
+      [-5, -28],
+      [5, -14],
+      [10, -13],
+      [14, -4],
+      [7, 5],
+      [12, -25],
+      [-7, -1],
+      [-2, -21],
+      [10, -12],
+      [13, 1],
+      [2, 11],
+      [10, 10],
+      [3, 9],
+      [12, 10],
+      [11, -8],
+      [0, -6],
+      [9, -7],
+      [34, -4],
+      [-7, -15],
+      [3, -13],
+      [-9, -5],
+      [-5, 9],
+      [-28, -23],
+      [-6, 3],
+      [4, -11],
+      [-7, -1],
+      [0, -17],
+      [-11, -5],
+      [2, 8],
+      [-8, 2],
+      [2, -13],
+      [-7, -22],
+      [-8, -4],
+      [-7, -26],
+      [-5, -3],
+      [1, -16],
+      [12, -14],
+      [17, -12],
+      [6, -38],
+      [11, -36],
+      [-1, -21],
+      [15, -16],
+      [0, -13],
+      [11, -10],
+      [4, -16],
+      [-8, 1],
+      [-9, 9],
+      [-10, -3],
+      [-4, 11],
+      [-11, 2],
+      [-5, -7],
+      [-7, 4],
+      [-3, 16],
+      [-6, 2],
+      [3, -11],
+      [11, -13],
+      [16, 4],
+      [2, -9],
+      [7, -5],
+      [8, -15],
+      [9, -9],
+      [6, -12],
+      [2, -13],
+      [-9, -2],
+      [-12, -10],
+      [-8, -11],
+      [-5, -15],
+      [6, -2],
+      [6, 9],
+      [6, -1],
+      [8, -19],
+      [13, -6],
+      [-13, -19],
+      [7, 5],
+      [0, -22],
+      [-4, -6],
+      [-5, 3],
+      [1, -27],
+      [-5, -3],
+      [5, -23],
+      [-5, 2],
+      [-4, -10],
+      [-3, 12],
+      [-9, -28],
+      [-8, -17],
+      [-3, -23],
+      [-6, -4],
+      [-1, -11],
+      [-9, -7],
+      [-1, -8],
+      [-5, 9],
+      [-4, -6],
+      [5, -6],
+      [2, -11],
+      [-5, 4],
+      [2, -10],
+      [-5, -15],
+      [5, -3],
+      [-3, -18],
+      [-4, 0],
+      [6, -17],
+      [-11, 10],
+      [-4, -8],
+      [5, -14],
+      [-9, 1],
+      [-3, -9],
+      [3, -10],
+      [-10, 0],
+      [4, -9],
+      [-3, -8],
+      [-6, 3],
+      [-5, -5],
+      [-2, 8],
+      [-5, -13],
+      [3, -11],
+      [-5, -4],
+      [-1, -10],
+      [-6, -1],
+      [-7, -13],
+      [-4, 1],
+      [-5, -14],
+      [-6, 5],
+      [0, -9],
+      [-10, -21],
+      [-1, -10],
+      [-6, 1],
+      [-13, -12],
+      [-7, 6],
+      [0, -11],
+      [-14, 8],
+      [-5, -13],
+      [-6, 11],
+      [-5, -7],
+      [4, -8],
+      [-4, -3],
+      [-2, 9],
+      [-5, -3]
+    ],
+    [
+      [8172, 6482],
+      [-4, -2]
+    ],
+    [
+      [8168, 6480],
+      [-7, -3],
+      [-2, 17],
+      [-3, -1],
+      [-2, 15],
+      [-6, -8],
+      [6, -17],
+      [0, -15],
+      [-2, -9],
+      [-10, 20],
+      [7, -19],
+      [-10, -14],
+      [-5, 1],
+      [-13, -12],
+      [-10, 3],
+      [-11, -15],
+      [-25, -8],
+      [-3, -10],
+      [-6, -1],
+      [-7, -13],
+      [5, -7],
+      [-1, -13],
+      [7, -9],
+      [-4, -10],
+      [-13, -2],
+      [-1, 10],
+      [-7, 25],
+      [3, 28],
+      [5, 0],
+      [0, 8],
+      [-8, 1],
+      [-2, 14],
+      [-1, -16],
+      [-12, 1],
+      [0, 6],
+      [-9, 2],
+      [-9, 13],
+      [2, -16],
+      [-6, 7],
+      [0, -8],
+      [-9, -5]
+    ],
+    [
+      [7999, 6420],
+      [-7, 10],
+      [-9, -4],
+      [-12, 14],
+      [1, 6],
+      [-10, 2],
+      [0, 14],
+      [-4, 7],
+      [0, 14],
+      [5, 0],
+      [0, 16],
+      [-14, 0],
+      [-18, 12],
+      [-7, 14],
+      [-14, -13],
+      [1, -9],
+      [-14, -14],
+      [-3, 8],
+      [-6, -8],
+      [0, -9],
+      [-11, 16],
+      [-4, -12],
+      [-5, 11],
+      [-7, -21],
+      [-5, 10],
+      [-13, 9],
+      [-4, -20],
+      [-3, 0]
+    ],
+    [
+      [7836, 6473],
+      [-13, 3],
+      [-4, -12],
+      [1, -10],
+      [5, -15],
+      [0, -39],
+      [-5, 6],
+      [-9, -2],
+      [-2, 20]
+    ],
+    [
+      [7809, 6424],
+      [-2, 12],
+      [-7, -6],
+      [-3, -8],
+      [-8, -4],
+      [-2, 5],
+      [-5, -6],
+      [-2, 13],
+      [-4, 3],
+      [-1, 19],
+      [-14, 5],
+      [-6, -1],
+      [0, 16],
+      [4, 5],
+      [-1, 14],
+      [6, 11],
+      [-5, 13],
+      [-8, -2],
+      [-7, 5],
+      [2, 6],
+      [-6, 40],
+      [6, 9],
+      [-9, -3],
+      [-13, 1],
+      [-14, -14],
+      [-2, 5],
+      [5, 10],
+      [-1, 18],
+      [-4, 0],
+      [0, 17],
+      [7, 8],
+      [-2, 12],
+      [4, 11],
+      [2, -3],
+      [6, 10],
+      [0, 13],
+      [6, -3],
+      [3, 13],
+      [7, 6],
+      [-4, 6],
+      [5, 33],
+      [0, 29],
+      [-2, 31],
+      [-7, 4],
+      [-1, -9],
+      [-7, 20],
+      [0, 16],
+      [-8, 13],
+      [-9, 9],
+      [-5, -18]
+    ],
+    [
+      [7703, 6808],
+      [-7, 9],
+      [-4, -3],
+      [-7, 15],
+      [-7, 1],
+      [5, 6],
+      [-4, 17],
+      [-9, 21],
+      [-12, -9],
+      [-6, 0],
+      [-6, -9],
+      [-9, 4],
+      [-9, 11],
+      [-8, -6],
+      [-3, -16],
+      [-9, -6],
+      [-6, -8],
+      [-7, -1],
+      [-9, -16],
+      [-12, -14],
+      [0, -11],
+      [-9, -9],
+      [-12, -5],
+      [-8, 2]
+    ],
+    [
+      [7468, 6756],
+      [-4, 12],
+      [3, 18],
+      [-1, 10],
+      [-6, 5],
+      [-13, -14]
+    ],
+    [
+      [7447, 6787],
+      [-8, 2],
+      [-4, -5],
+      [-15, 1],
+      [-3, 7],
+      [-14, 9],
+      [-4, -11],
+      [-9, 10],
+      [-3, -11],
+      [-2, 13],
+      [-6, 7],
+      [-16, 3],
+      [2, 17],
+      [-4, 3],
+      [-7, -6],
+      [-9, 11],
+      [-7, 12],
+      [-2, 16],
+      [-5, 5],
+      [-13, -7],
+      [-9, 26],
+      [-9, 2],
+      [-9, 15],
+      [-10, 8],
+      [-1, 15],
+      [-14, 5],
+      [-11, -23],
+      [-7, 11]
+    ],
+    [
+      [7248, 6922],
+      [-11, 15],
+      [-10, 6],
+      [1, 9],
+      [-14, 15],
+      [-4, -3],
+      [-9, 13],
+      [-5, 16],
+      [-9, -8],
+      [-2, 12],
+      [4, 5],
+      [-4, 7],
+      [2, 15],
+      [-9, 14],
+      [-2, 20],
+      [9, 4],
+      [6, -16],
+      [10, 8],
+      [7, 13],
+      [-5, 14],
+      [0, 12],
+      [-7, 3],
+      [-8, 16],
+      [-3, 33],
+      [8, 8],
+      [0, 7],
+      [-10, 12],
+      [-9, 5],
+      [-8, 41],
+      [1, 9],
+      [-7, 0]
+    ],
+    [
+      [7160, 7227],
+      [-18, 1],
+      [-11, 8]
+    ],
+    [
+      [7131, 7236],
+      [-5, 6],
+      [0, 8],
+      [-13, -4],
+      [-4, 10],
+      [1, 27],
+      [-7, 15],
+      [-9, 1],
+      [0, 7],
+      [-8, 7],
+      [-7, -2],
+      [-9, 4]
+    ],
+    [
+      [7080, 7327],
+      [7, 10],
+      [-8, 13],
+      [3, 7],
+      [-5, 17],
+      [-1, 26],
+      [-12, 9],
+      [-6, 0],
+      [-2, -9],
+      [-6, 3],
+      [-4, 16],
+      [4, 9],
+      [-6, 12],
+      [1, 14]
+    ],
+    [
+      [7045, 7454],
+      [8, 8],
+      [-3, 9],
+      [4, 18],
+      [11, 3],
+      [10, 14],
+      [3, 10],
+      [11, -4],
+      [8, 11],
+      [4, -20],
+      [18, 4],
+      [9, 13],
+      [0, 10],
+      [5, 15],
+      [18, -2],
+      [11, 5],
+      [5, -2],
+      [8, 19],
+      [26, 23],
+      [27, 15],
+      [-1, 8]
+    ],
+    [
+      [7227, 7611],
+      [1, 3],
+      [-3, 23],
+      [3, 11],
+      [9, 6],
+      [-7, 5],
+      [13, 6],
+      [-4, 13],
+      [2, 7],
+      [-11, 37],
+      [0, 32],
+      [5, 5],
+      [-18, 8],
+      [7, 9],
+      [21, 5],
+      [23, 13],
+      [3, -9],
+      [13, 3],
+      [7, -7],
+      [4, 17],
+      [-11, 7],
+      [7, 21],
+      [9, 47],
+      [5, 14],
+      [0, 14],
+      [24, -13],
+      [21, 1],
+      [4, -10],
+      [13, 13],
+      [7, 0],
+      [5, 9],
+      [-4, 41],
+      [4, 25],
+      [25, 10],
+      [4, 10],
+      [0, 17],
+      [4, 6],
+      [12, -1]
+    ],
+    [
+      [7424, 8009],
+      [15, 5]
+    ],
+    [
+      [7439, 8014],
+      [-4, -17],
+      [9, -8],
+      [-2, -9],
+      [16, -10],
+      [2, -12],
+      [14, -12],
+      [11, 1],
+      [7, -11],
+      [9, 3],
+      [11, -21],
+      [0, -11],
+      [15, -34],
+      [1, -11],
+      [-5, -14],
+      [3, -17],
+      [-7, -13],
+      [-2, -16],
+      [6, -17],
+      [6, 2],
+      [16, -9],
+      [23, -4],
+      [11, 2],
+      [23, -8],
+      [6, -13],
+      [7, 0],
+      [14, -19],
+      [9, -5],
+      [11, 2],
+      [-2, -16],
+      [6, -3],
+      [9, -41],
+      [12, -19],
+      [2, -11],
+      [23, 4],
+      [63, -13],
+      [14, 6],
+      [49, -12],
+      [7, -15],
+      [29, -11],
+      [18, -15],
+      [23, 7],
+      [0, -12],
+      [13, -5],
+      [6, 10],
+      [44, 30],
+      [36, 10],
+      [20, -3],
+      [20, 4],
+      [25, 19],
+      [15, 29],
+      [18, 12],
+      [10, 13],
+      [-9, 18],
+      [-7, 23],
+      [11, 33],
+      [5, 4],
+      [13, -1],
+      [5, -10],
+      [14, -6],
+      [13, -3],
+      [16, 16],
+      [14, 24],
+      [6, -3],
+      [23, 5],
+      [15, 18],
+      [-1, 7],
+      [11, 24],
+      [6, 3],
+      [15, -1],
+      [1, 13],
+      [9, -4],
+      [16, 12],
+      [12, -3],
+      [3, 5],
+      [14, -8],
+      [11, -1],
+      [5, 6],
+      [-4, 23],
+      [-18, 25],
+      [0, 6],
+      [-10, 7],
+      [-6, 11],
+      [-10, 5],
+      [-12, -3]
+    ],
+    [
+      [8270, 7946],
+      [-7, -13]
+    ],
+    [
+      [8263, 7933],
+      [-5, -6],
+      [-13, 13],
+      [-17, -1],
+      [-11, -9],
+      [-7, 10],
+      [-2, 13],
+      [8, 8],
+      [-1, 12],
+      [25, 79]
+    ],
+    [
+      [8240, 8052],
+      [16, -12],
+      [14, -6],
+      [12, 9],
+      [13, 17],
+      [12, 1],
+      [7, 6],
+      [1, 14],
+      [-4, 6],
+      [8, 27],
+      [7, 10],
+      [1, 11],
+      [8, 23],
+      [16, 14],
+      [3, 17],
+      [-4, 7],
+      [3, 13],
+      [-8, 5],
+      [-12, -1],
+      [22, 37],
+      [12, 1],
+      [26, 11],
+      [19, 0],
+      [11, 6],
+      [28, -11],
+      [4, -9],
+      [20, -1],
+      [17, -13],
+      [23, -49],
+      [-3, -10],
+      [6, -23],
+      [6, -9],
+      [1, -20],
+      [10, -19],
+      [1, -23],
+      [7, -6],
+      [-2, -23],
+      [5, -9],
+      [11, -7],
+      [20, 2],
+      [7, -14],
+      [13, -3],
+      [9, -7],
+      [11, -17],
+      [12, 0],
+      [-4, -13],
+      [6, -8],
+      [2, -13],
+      [-4, -13],
+      [7, -20],
+      [15, 2],
+      [13, -5],
+      [17, 3],
+      [3, 9],
+      [12, 14],
+      [12, -1],
+      [6, 9],
+      [18, 8],
+      [9, -7],
+      [-4, -13],
+      [6, -17],
+      [-8, -19],
+      [-9, -6],
+      [-4, -38],
+      [-5, -13],
+      [2, -9],
+      [-11, -22],
+      [-1, -15],
+      [-8, -8],
+      [-2, -21],
+      [-8, -3]
+    ],
+    [
+      [4913, 5477],
+      [0, -1]
+    ],
+    [
+      [4913, 5476],
+      [0, 1]
+    ],
+    [
+      [4925, 5729],
+      [-2, -26],
+      [3, -1],
+      [4, -47],
+      [-8, -15],
+      [-6, -39],
+      [-7, -28],
+      [2, -31],
+      [2, -4],
+      [4, -31],
+      [5, -1],
+      [2, -13],
+      [-3, -14]
+    ],
+    [
+      [4921, 5479],
+      [-10, 3],
+      [-3, -4],
+      [-15, 4],
+      [-5, 4],
+      [-18, 3],
+      [-3, -9],
+      [16, 7],
+      [6, -3],
+      [-22, -5],
+      [-22, -3],
+      [-38, -25],
+      [-5, -8],
+      [-12, -10]
+    ],
+    [
+      [4790, 5433],
+      [-1, 2],
+      [0, 41],
+      [5, 10],
+      [-1, 33],
+      [-10, 7],
+      [-1, 13],
+      [-6, 7],
+      [-10, 3],
+      [-6, 8],
+      [8, 15],
+      [1, 23],
+      [-5, 23]
+    ],
+    [
+      [4764, 5618],
+      [7, -1],
+      [3, 10],
+      [3, 27],
+      [-7, 4],
+      [2, 14],
+      [7, 0],
+      [5, -7],
+      [2, 15],
+      [-8, 9],
+      [1, 12],
+      [5, 5],
+      [-5, 6],
+      [2, 13],
+      [-5, -2],
+      [-3, 7],
+      [1, 32],
+      [4, 6]
+    ],
+    [
+      [4778, 5768],
+      [4, 2],
+      [5, 14],
+      [5, 1],
+      [3, -12],
+      [9, -6],
+      [2, 12],
+      [7, -1],
+      [1, 18],
+      [8, -5],
+      [-1, 8],
+      [5, 2],
+      [2, -15],
+      [-2, -13],
+      [6, -3],
+      [3, 9],
+      [11, 4]
+    ],
+    [
+      [5402, 5930],
+      [2, -13],
+      [7, -8],
+      [3, -17],
+      [-1, -10],
+      [5, -3],
+      [2, -34],
+      [-2, -3],
+      [-1, -26],
+      [3, -28],
+      [9, -22],
+      [6, -8],
+      [-7, -3],
+      [-9, 3],
+      [-10, -4],
+      [-15, 3],
+      [-7, -19],
+      [11, -27],
+      [17, -29],
+      [3, -1],
+      [8, -30],
+      [2, -17],
+      [4, -2],
+      [-3, -16]
+    ],
+    [
+      [5449, 5312],
+      [-3, -5],
+      [2, -25],
+      [-18, 15],
+      [-7, 3],
+      [-10, -2],
+      [-8, 12],
+      [-9, -3],
+      [-27, 0]
+    ],
+    [
+      [5369, 5307],
+      [-6, 5],
+      [-48, 3],
+      [-1, -7]
+    ],
+    [
+      [5314, 5308],
+      [-38, 0],
+      [-4, 10]
+    ],
+    [
+      [5272, 5318],
+      [0, 12],
+      [4, 27],
+      [-1, 12],
+      [-8, 18],
+      [-2, 13],
+      [6, 11],
+      [-2, 8],
+      [-10, -11],
+      [-10, 10],
+      [-2, 29],
+      [-11, -4],
+      [2, 17]
+    ],
+    [
+      [5238, 5460],
+      [6, 19],
+      [1, 41],
+      [4, 2],
+      [10, 24],
+      [10, 13],
+      [2, 14],
+      [10, 13],
+      [3, -8],
+      [7, 1],
+      [1, 9],
+      [8, -5],
+      [7, -14],
+      [1, -16],
+      [7, 1],
+      [6, 15],
+      [-1, 8],
+      [10, 15],
+      [-2, 17],
+      [5, 9],
+      [0, 9],
+      [5, 14],
+      [1, 25],
+      [16, 23],
+      [2, 34],
+      [9, 9],
+      [2, 17],
+      [-1, 14],
+      [6, 5],
+      [3, 30],
+      [12, 34],
+      [6, -1],
+      [11, 14],
+      [1, 37],
+      [-3, 10],
+      [-10, 4],
+      [-3, 40]
+    ],
+    [
+      [5390, 5936],
+      [7, 0]
+    ],
+    [
+      [5397, 5936],
+      [-1, -11],
+      [6, 5]
+    ],
+    [
+      [5398, 5936],
+      [1, 0]
+    ],
+    [
+      [5399, 5936],
+      [-1, 0]
+    ],
+    [
+      [5944, 7202],
+      [0, 0]
+    ],
+    [
+      [5944, 7202],
+      [-3, 0]
+    ],
+    [
+      [5941, 7202],
+      [0, 0]
+    ],
+    [
+      [5941, 7202],
+      [3, 0]
+    ],
+    [
+      [5905, 7208],
+      [0, 1]
+    ],
+    [
+      [5905, 7209],
+      [1, 0]
+    ],
+    [
+      [5906, 7209],
+      [1, 0]
+    ],
+    [
+      [5907, 7209],
+      [-2, -1]
+    ],
+    [
+      [5935, 7200],
+      [1, -2]
+    ],
+    [
+      [5936, 7198],
+      [-7, -1],
+      [-1, 11],
+      [-17, -6],
+      [-3, 7]
+    ],
+    [
+      [5908, 7209],
+      [0, 0]
+    ],
+    [
+      [5908, 7209],
+      [3, -5],
+      [17, 6],
+      [1, -10],
+      [6, 0]
+    ],
+    [
+      [5807, 5072],
+      [0, -19],
+      [-2, 6],
+      [2, 13]
+    ],
+    [
+      [5762, 5475],
+      [2, -10],
+      [7, -8],
+      [0, -10],
+      [16, -18],
+      [12, 12],
+      [6, 1],
+      [5, -9],
+      [7, 12],
+      [0, 6],
+      [10, -5],
+      [0, -12],
+      [4, -3],
+      [7, -21],
+      [10, -6],
+      [0, -14],
+      [6, 4],
+      [2, -10]
+    ],
+    [
+      [5856, 5384],
+      [2, -7],
+      [-5, -19],
+      [3, -15],
+      [-4, -19],
+      [8, -3],
+      [8, -13]
+    ],
+    [
+      [5868, 5308],
+      [-10, -15],
+      [-12, -24],
+      [0, -15]
+    ],
+    [
+      [5846, 5254],
+      [-7, -6],
+      [-2, -13],
+      [-6, -5],
+      [0, -21],
+      [-3, -7],
+      [-4, -25]
+    ],
+    [
+      [5824, 5177],
+      [-7, -9],
+      [-3, -12],
+      [1, -13],
+      [8, 12]
+    ],
+    [
+      [5823, 5155],
+      [-1, -6],
+      [-1, -46]
+    ],
+    [
+      [5821, 5103],
+      [-7, -8],
+      [-3, -9]
+    ],
+    [
+      [5811, 5086],
+      [-3, 1],
+      [-7, -28],
+      [3, -9],
+      [-3, -10]
+    ],
+    [
+      [5801, 5040],
+      [4, -14]
+    ],
+    [
+      [5811, 4991],
+      [-2, -3],
+      [-1, -49],
+      [4, 11],
+      [-1, -27],
+      [-3, -5],
+      [0, -30],
+      [7, -28],
+      [-1, -13],
+      [-4, -5],
+      [10, -49],
+      [6, -14],
+      [6, -6],
+      [6, -13],
+      [2, -29],
+      [7, -10],
+      [2, -12]
+    ],
+    [
+      [5849, 4709],
+      [-28, -8],
+      [-19, -7]
+    ],
+    [
+      [5802, 4694],
+      [-16, -35],
+      [0, -23],
+      [4, -2],
+      [2, 9]
+    ],
+    [
+      [5792, 4643],
+      [4, -21],
+      [-1, -21],
+      [1, -34],
+      [-5, -16],
+      [0, -10],
+      [-4, -17],
+      [4, -25],
+      [9, -11],
+      [6, -17],
+      [14, -4],
+      [-2, 11],
+      [9, 5],
+      [0, -75],
+      [-5, 1],
+      [-1, 12],
+      [-10, -10],
+      [-7, 1],
+      [-2, 14],
+      [-6, 17],
+      [-4, -2],
+      [-1, 13],
+      [-5, 13],
+      [-16, 7],
+      [-6, 6],
+      [-3, 16],
+      [-5, 7],
+      [-1, 12],
+      [-5, 0],
+      [-1, -16],
+      [-7, -8],
+      [-10, 6],
+      [-11, 0],
+      [-4, 7],
+      [-14, 8],
+      [0, 26],
+      [-17, -7],
+      [-8, -8],
+      [-4, 5],
+      [3, 14],
+      [-8, 6],
+      [-4, 9]
+    ],
+    [
+      [5366, 4846],
+      [-9, 2],
+      [-4, -10],
+      [-7, -3],
+      [-7, 16]
+    ],
+    [
+      [5363, 4916],
+      [8, -9],
+      [0, -6],
+      [8, 11],
+      [1, 14],
+      [7, -2],
+      [12, 12],
+      [2, -8],
+      [-3, -7],
+      [1, -20],
+      [9, 0],
+      [4, 6],
+      [10, 27],
+      [8, 8],
+      [1, 8],
+      [9, 4],
+      [10, 35],
+      [-1, 29],
+      [1, 13],
+      [-1, 26],
+      [12, 25],
+      [0, 7],
+      [11, 30],
+      [8, 5],
+      [12, 27],
+      [0, 21],
+      [3, 25],
+      [3, 7],
+      [-2, 14],
+      [1, 28],
+      [5, 27],
+      [-1, 34],
+      [16, 57],
+      [0, 19]
+    ],
+    [
+      [5333, 4894],
+      [-5, 13],
+      [0, 10],
+      [-15, 33],
+      [-5, 6]
+    ],
+    [
+      [5308, 4956],
+      [2, 12],
+      [8, 13],
+      [5, -10],
+      [5, -2],
+      [4, 22],
+      [-8, 9],
+      [3, 10],
+      [-7, 12],
+      [2, 7],
+      [-1, 20],
+      [4, -5],
+      [6, 5],
+      [4, -5],
+      [11, 5],
+      [-1, 24],
+      [5, 5],
+      [5, -5],
+      [5, -26],
+      [11, -4],
+      [9, 13],
+      [1, 6],
+      [9, -22],
+      [5, 9],
+      [0, 20],
+      [5, 5],
+      [1, 41],
+      [-2, 10],
+      [3, 23],
+      [-9, 9],
+      [-3, 11],
+      [-5, 0],
+      [0, 27],
+      [5, 19],
+      [5, 0],
+      [6, 16],
+      [-5, 18],
+      [0, 11],
+      [-14, 6],
+      [-7, -9],
+      [-7, -3],
+      [-4, 22],
+      [2, 23],
+      [3, 9]
+    ],
+    [
+      [3018, 5865],
+      [-19, -13],
+      [-7, -27],
+      [-6, -1],
+      [-7, -26],
+      [-5, -13],
+      [-2, -37],
+      [-11, -37],
+      [11, 7],
+      [1, -11],
+      [4, 2],
+      [4, -28],
+      [8, -16],
+      [1, -19],
+      [-4, -7],
+      [1, -28],
+      [7, -3],
+      [3, -18],
+      [7, -5],
+      [5, 4],
+      [18, -4],
+      [9, 7],
+      [10, -10],
+      [7, -1],
+      [18, -46],
+      [5, -2],
+      [7, 8],
+      [11, -5],
+      [29, 8],
+      [4, -18],
+      [-6, -10],
+      [0, -17],
+      [-5, -6],
+      [0, -66],
+      [5, -28],
+      [4, -2],
+      [5, -17],
+      [-15, -35],
+      [7, -6],
+      [11, -18],
+      [0, -12],
+      [4, -17],
+      [5, -39]
+    ],
+    [
+      [3056, 4939],
+      [-8, 22],
+      [-6, -2],
+      [-7, 6],
+      [18, 59],
+      [0, 7],
+      [-26, 25],
+      [-10, -10],
+      [-2, 7],
+      [-8, 7],
+      [-6, -11],
+      [-10, -7],
+      [-8, 6],
+      [-9, -5],
+      [-7, 8],
+      [2, 12],
+      [-2, 17],
+      [-10, 6],
+      [1, 12],
+      [-4, 13],
+      [-7, 3],
+      [-5, 10],
+      [-5, 2],
+      [-4, 26],
+      [-6, 11],
+      [-5, 2],
+      [-8, 14],
+      [-5, -2]
+    ],
+    [
+      [2909, 5177],
+      [-11, 11],
+      [-3, -1],
+      [-7, 15],
+      [-8, 7],
+      [-3, -12],
+      [-9, -1],
+      [-19, 10],
+      [-1, 14],
+      [-7, 11],
+      [-11, 5],
+      [-13, 16],
+      [-7, 13]
+    ],
+    [
+      [2810, 5265],
+      [-5, 10],
+      [5, 13],
+      [7, -2],
+      [-3, 14],
+      [0, 13],
+      [7, 19],
+      [10, -5],
+      [0, 9],
+      [9, -4],
+      [1, 22],
+      [12, 29],
+      [0, 6],
+      [7, 20],
+      [-6, -5],
+      [-4, 5],
+      [-1, 15],
+      [3, 16],
+      [-2, 57],
+      [-5, 2],
+      [9, 12],
+      [0, 7],
+      [-7, 20],
+      [3, 5],
+      [1, 19],
+      [-5, 6],
+      [-3, 17],
+      [-7, 14]
+    ],
+    [
+      [2836, 5599],
+      [2, 14],
+      [13, 12],
+      [1, 13],
+      [4, 2],
+      [-6, 28],
+      [-3, 3],
+      [3, 11]
+    ],
+    [
+      [2850, 5682],
+      [12, -31],
+      [1, -12],
+      [5, 0],
+      [-1, 29],
+      [-4, 10],
+      [7, 5],
+      [10, 15],
+      [6, 23],
+      [12, 4],
+      [2, 15],
+      [-3, 1],
+      [3, 13],
+      [-1, 20],
+      [3, 2],
+      [0, 16],
+      [8, 14],
+      [11, 14],
+      [9, -5],
+      [-3, -8],
+      [7, -4],
+      [4, 18],
+      [1, 14],
+      [10, -3],
+      [15, 1],
+      [6, 12],
+      [10, 13],
+      [13, 10],
+      [3, 11],
+      [-1, 9],
+      [6, 1],
+      [12, 10],
+      [8, -6],
+      [3, -18],
+      [-6, -10]
+    ],
+    [
+      [6235, 4487],
+      [1, -17],
+      [-4, 8],
+      [3, 9]
+    ],
+    [
+      [6207, 4496],
+      [-7, 9],
+      [1, 21],
+      [4, 1],
+      [-1, -12],
+      [3, -19]
+    ],
+    [
+      [4324, 6037],
+      [-5, 9],
+      [5, 2],
+      [0, -11]
+    ],
+    [
+      [4340, 6065],
+      [8, -16],
+      [-5, -7],
+      [-4, 7],
+      [1, 16]
+    ],
+    [
+      [4365, 6116],
+      [5, -8],
+      [-8, -3],
+      [3, 11]
+    ],
+    [
+      [4303, 6173],
+      [3, -6],
+      [-7, -10],
+      [-3, 11],
+      [7, 5]
+    ],
+    [
+      [2676, 5812],
+      [7, -32],
+      [16, -36],
+      [7, -10]
+    ],
+    [
+      [2706, 5734],
+      [-3, -5],
+      [-5, 7],
+      [-2, -8],
+      [0, -23],
+      [6, -10],
+      [-5, -4],
+      [2, -19],
+      [-6, -11],
+      [4, -16]
+    ],
+    [
+      [2697, 5645],
+      [-2, 11],
+      [-5, 9],
+      [0, 15],
+      [-9, 5],
+      [5, -10],
+      [0, -10],
+      [-12, 12],
+      [3, 27],
+      [-8, 14],
+      [-10, 11],
+      [-11, 8],
+      [1, 10],
+      [-12, 21],
+      [-4, -7],
+      [9, -12],
+      [-6, -16],
+      [-6, 15],
+      [-10, 5],
+      [-5, 19],
+      [1, 16],
+      [3, 2],
+      [1, 15],
+      [-8, 5],
+      [7, 2],
+      [0, 9]
+    ],
+    [
+      [2619, 5821],
+      [2, 7],
+      [21, -15],
+      [5, 7],
+      [13, -10],
+      [0, -5],
+      [8, -5],
+      [8, 5],
+      [0, 7]
+    ],
+    [
+      [2698, 6446],
+      [5, -3],
+      [4, -17],
+      [-10, -9],
+      [-8, 8],
+      [7, 1],
+      [-4, 15],
+      [6, 5]
+    ],
+    [
+      [2836, 6454],
+      [6, -1],
+      [-1, -7],
+      [-5, 8]
+    ],
+    [
+      [2823, 6481],
+      [-2, -7],
+      [-7, 5],
+      [9, 2]
+    ],
+    [
+      [2914, 6329],
+      [-1, 4]
+    ],
+    [
+      [2913, 6333],
+      [-1, 0]
+    ],
+    [
+      [2912, 6333],
+      [-2, -4]
+    ],
+    [
+      [2910, 6329],
+      [-10, -1],
+      [-15, 6],
+      [-21, -3],
+      [-2, -3],
+      [-21, -3],
+      [6, 17],
+      [9, 10],
+      [3, 9],
+      [-8, 15],
+      [-19, -1],
+      [-13, 20],
+      [-1, 18],
+      [-6, 16],
+      [-14, -5],
+      [-10, 8],
+      [-8, 0],
+      [-10, 11],
+      [-5, 10],
+      [-13, -1],
+      [-13, 8],
+      [-13, 4],
+      [-7, 11],
+      [12, 1],
+      [1, 7],
+      [-7, 6],
+      [-25, 1],
+      [-10, -21],
+      [-7, -9],
+      [-15, 0],
+      [-2, -15],
+      [-3, 2],
+      [-11, -11],
+      [1, 10],
+      [-11, -3],
+      [10, 9],
+      [5, 0],
+      [-2, 15],
+      [3, 11],
+      [12, 15],
+      [14, 8],
+      [3, 6],
+      [19, 3],
+      [9, 8],
+      [27, -2],
+      [3, -6],
+      [15, 2],
+      [6, -8],
+      [10, 1],
+      [11, -12],
+      [9, -20],
+      [15, -1],
+      [13, -13],
+      [5, -1],
+      [7, -16],
+      [12, -5],
+      [-3, 9],
+      [12, -16],
+      [5, -11],
+      [23, -17],
+      [0, -5],
+      [12, 2],
+      [3, -6],
+      [-5, -10],
+      [2, -9],
+      [20, 1],
+      [7, -5],
+      [9, -19],
+      [5, 2],
+      [2, -9],
+      [-3, -6],
+      [-13, 0],
+      [-10, -9]
+    ],
+    [
+      [3089, 5876],
+      [-11, 16],
+      [3, 2],
+      [8, -18]
+    ],
+    [
+      [5905, 7209],
+      [1, 0]
+    ],
+    [
+      [5941, 7202],
+      [-6, -2]
+    ],
+    [
+      [5908, 7209],
+      [6, 1],
+      [0, 11],
+      [14, -4],
+      [17, 8],
+      [15, 13],
+      [0, -3],
+      [-19, -22],
+      [3, -11]
+    ],
+    [
+      [5938, 7197],
+      [0, 0]
+    ],
+    [
+      [5938, 7197],
+      [0, 0]
+    ],
+    [
+      [5937, 7198],
+      [0, 0]
+    ],
+    [
+      [5944, 7202],
+      [-3, -6]
+    ],
+    [
+      [5941, 7196],
+      [0, 6]
+    ],
+    [
+      [5936, 7198],
+      [0, -1]
+    ],
+    [
+      [5936, 7197],
+      [-3, -9],
+      [-16, -11]
+    ],
+    [
+      [5917, 7177],
+      [-8, 1]
+    ],
+    [
+      [5909, 7178],
+      [-7, 3],
+      [-5, 11],
+      [1, 9],
+      [7, 7]
+    ],
+    [
+      [5907, 7209],
+      [1, 0]
+    ],
+    [
+      [5411, 8112],
+      [4, 8],
+      [9, -9],
+      [14, -7],
+      [6, -6],
+      [12, -3],
+      [-7, -8],
+      [13, -20],
+      [10, 7],
+      [-4, 12],
+      [9, -2],
+      [19, -24],
+      [4, 4],
+      [7, -7],
+      [8, 0],
+      [8, -23]
+    ],
+    [
+      [5523, 8034],
+      [-8, -1],
+      [-12, -15],
+      [-1, -11],
+      [-15, -14],
+      [-9, 4],
+      [-8, -15]
+    ],
+    [
+      [5383, 7990],
+      [-10, 11],
+      [-13, 20],
+      [-10, 9],
+      [-7, 17],
+      [3, 13],
+      [-5, 11],
+      [6, 13],
+      [26, 11],
+      [3, 8],
+      [9, 1],
+      [13, 9],
+      [-2, 8],
+      [15, -9]
+    ],
+    [
+      [5255, 7927],
+      [0, 0]
+    ],
+    [
+      [5394, 8289],
+      [0, -4]
+    ],
+    [
+      [5394, 8285],
+      [0, 4]
+    ],
+    [
+      [5371, 8330],
+      [6, -3],
+      [4, -14],
+      [-11, -5],
+      [-6, 4],
+      [1, 12],
+      [6, 6]
+    ],
+    [
+      [5262, 8339],
+      [4, 3],
+      [12, -11],
+      [5, -15],
+      [13, -5],
+      [11, 2],
+      [1, -9],
+      [-10, -8],
+      [12, -2],
+      [8, -7],
+      [5, 14],
+      [11, 2],
+      [14, 11],
+      [13, 4],
+      [3, -10],
+      [10, -8],
+      [6, 2],
+      [3, -17],
+      [13, -10]
+    ],
+    [
+      [5396, 8275],
+      [3, -23],
+      [-5, -27],
+      [12, -14],
+      [-3, -9],
+      [7, -21],
+      [-4, -20],
+      [2, -11],
+      [7, -4],
+      [2, -14],
+      [-6, -20]
+    ],
+    [
+      [5269, 7921],
+      [-15, 12],
+      [1, -6]
+    ],
+    [
+      [5210, 7923],
+      [-2, 4],
+      [8, 55],
+      [9, 11],
+      [2, 10],
+      [-16, 4],
+      [-4, 7],
+      [-18, -1],
+      [-13, 17]
+    ],
+    [
+      [5176, 8030],
+      [4, 20],
+      [-6, 3],
+      [-5, 16]
+    ],
+    [
+      [5166, 8104],
+      [-3, 14],
+      [9, 22],
+      [0, 9],
+      [-8, 12],
+      [5, 10],
+      [8, -4],
+      [10, 5],
+      [8, 28],
+      [-10, 5],
+      [2, 9],
+      [8, 1],
+      [4, 18],
+      [0, 16]
+    ],
+    [
+      [5199, 8249],
+      [-3, 19],
+      [6, 6],
+      [21, 2],
+      [6, -18],
+      [0, 12],
+      [8, -4],
+      [2, 20],
+      [9, 1],
+      [-8, 29],
+      [10, 6],
+      [-9, 13],
+      [-1, 9]
+    ],
+    [
+      [5240, 8344],
+      [22, -5]
+    ],
+    [
+      [6201, 5844],
+      [-9, -28]
+    ],
+    [
+      [6192, 5816],
+      [-6, 4],
+      [-22, -7],
+      [-4, 8]
+    ],
+    [
+      [6160, 5821],
+      [0, 12]
+    ],
+    [
+      [6160, 5833],
+      [0, 24],
+      [10, 22],
+      [7, 22]
+    ],
+    [
+      [6177, 5901],
+      [8, -6],
+      [3, 9],
+      [9, 11]
+    ],
+    [
+      [6197, 5915],
+      [6, -14],
+      [2, -25],
+      [-10, -14],
+      [-7, -3],
+      [-3, -11],
+      [13, 3],
+      [3, -7]
+    ],
+    [
+      [3294, 6081],
+      [4, -5],
+      [0, -15],
+      [-3, -3],
+      [-3, 16],
+      [2, 7]
+    ],
+    [
+      [5312, 8347],
+      [17, -10],
+      [-1, -7],
+      [-10, -1],
+      [-8, 6],
+      [2, 12]
+    ],
+    [
+      [5348, 8350],
+      [-12, -5],
+      [4, 7],
+      [8, -2]
+    ],
+    [
+      [5272, 8355],
+      [7, -12],
+      [-8, 2],
+      [1, 10]
+    ],
+    [
+      [5413, 8363],
+      [6, -13],
+      [-9, 3],
+      [3, 10]
+    ],
+    [
+      [5287, 8385],
+      [7, 0],
+      [6, -15],
+      [-2, -16],
+      [-19, 1],
+      [-11, 24],
+      [19, 6]
+    ],
+    [
+      [5342, 8415],
+      [7, -3],
+      [0, -22],
+      [-11, -12],
+      [8, -11],
+      [-13, -8],
+      [5, -3],
+      [-8, -10],
+      [8, -5],
+      [-9, -11],
+      [-4, 32],
+      [-13, 0],
+      [-2, 28],
+      [13, 12],
+      [5, -13],
+      [14, 26]
+    ],
+    [
+      [5247, 8463],
+      [-2, -13],
+      [-9, 0],
+      [11, 13]
+    ],
+    [
+      [5240, 8344],
+      [-2, 32],
+      [-14, 7],
+      [3, 14],
+      [6, 5],
+      [-4, 11],
+      [-4, -6],
+      [0, 34],
+      [16, 1],
+      [7, 12],
+      [9, -10],
+      [-3, 15],
+      [18, 12],
+      [-32, -9],
+      [-5, -13],
+      [-7, 3],
+      [11, 20],
+      [17, 1],
+      [9, 6],
+      [10, 19],
+      [20, 10],
+      [-6, -10],
+      [3, -20],
+      [-7, -15],
+      [2, -23],
+      [12, -1],
+      [5, -6],
+      [-6, -16],
+      [-11, 2],
+      [-4, -20],
+      [-20, -21],
+      [6, -16],
+      [-7, -5],
+      [8, -8],
+      [-8, -10]
+    ],
+    [
+      [3006, 6222],
+      [2, 16],
+      [-6, 10]
+    ],
+    [
+      [3002, 6248],
+      [0, 0]
+    ],
+    [
+      [3002, 6248],
+      [-1, 2]
+    ],
+    [
+      [3001, 6250],
+      [-1, 4]
+    ],
+    [
+      [3000, 6254],
+      [8, 11],
+      [-2, 9],
+      [4, 12],
+      [-4, 32]
+    ],
+    [
+      [3006, 6318],
+      [3, 11],
+      [14, -4],
+      [4, 6],
+      [11, -10],
+      [5, 1],
+      [4, -8],
+      [11, 0],
+      [4, -20],
+      [6, 2],
+      [11, -3],
+      [-2, -5],
+      [-11, 2],
+      [0, -8],
+      [24, -7],
+      [12, -20],
+      [-9, -23],
+      [-8, 11],
+      [-17, 0],
+      [-9, 4],
+      [-8, -14],
+      [-9, -2],
+      [-3, 12],
+      [-9, -8],
+      [-5, 2],
+      [1, -9],
+      [-10, -31],
+      [-6, 8],
+      [-4, 17]
+    ],
+    [
+      [5238, 7310],
+      [2, -6],
+      [-7, -4],
+      [1, -6],
+      [-8, -8],
+      [6, -5],
+      [-4, -35],
+      [3, -10],
+      [-1, -19],
+      [4, -5],
+      [-4, -8],
+      [-3, -30],
+      [-11, -11],
+      [-1, -9],
+      [-7, -8],
+      [-1, -14],
+      [7, -25],
+      [0, -11],
+      [10, -7],
+      [6, -15],
+      [2, -20],
+      [19, -24],
+      [7, -62],
+      [6, -44]
+    ],
+    [
+      [5264, 6924],
+      [-7, -7],
+      [11, -29],
+      [5, -37],
+      [-2, -44],
+      [4, -19],
+      [-5, -34],
+      [2, -21],
+      [3, -4],
+      [-2, -20],
+      [-10, -9],
+      [-3, -10],
+      [18, -52],
+      [0, -25],
+      [5, -5],
+      [1, -10],
+      [6, -6],
+      [7, 5],
+      [21, -13],
+      [3, -4],
+      [11, -43]
+    ],
+    [
+      [5332, 6537],
+      [-28, -35],
+      [-99, -122],
+      [-24, -40],
+      [-17, -32],
+      [-8, -8],
+      [-39, -15]
+    ],
+    [
+      [5117, 6285],
+      [-26, -9],
+      [-5, 7],
+      [4, 15],
+      [-2, 11],
+      [1, 14],
+      [-8, 8],
+      [-12, 4],
+      [-9, 16],
+      [-2, -4],
+      [-9, 5],
+      [-4, 14],
+      [-14, 12],
+      [1, 19],
+      [-14, 18],
+      [-28, 40],
+      [-8, 9],
+      [-36, 49],
+      [-21, 30],
+      [-8, 9],
+      [-51, 70]
+    ],
+    [
+      [4866, 6622],
+      [-64, 78],
+      [-16, 21],
+      [-28, 33]
+    ],
+    [
+      [4758, 6754],
+      [0, 22]
+    ],
+    [
+      [4758, 6776],
+      [0, 59],
+      [12, 18],
+      [18, 22],
+      [7, 0],
+      [8, 8],
+      [10, 0],
+      [27, 5],
+      [6, -5],
+      [7, 21],
+      [11, 17],
+      [11, 11],
+      [6, 11],
+      [17, 8],
+      [3, 14],
+      [-8, 21],
+      [4, 4],
+      [1, 15],
+      [23, 9],
+      [-3, 14],
+      [12, 5],
+      [35, -3],
+      [0, 17],
+      [6, 7],
+      [-11, 14],
+      [-4, 11],
+      [2, 8],
+      [-5, 10],
+      [2, 18],
+      [-4, 8],
+      [2, 24],
+      [-4, 15],
+      [3, 6],
+      [-4, 7],
+      [2, 9],
+      [-12, 19]
+    ],
+    [
+      [4938, 7203],
+      [8, 0],
+      [18, 16],
+      [2, 12],
+      [11, 12],
+      [8, 0],
+      [1, 7],
+      [6, -5],
+      [8, 2],
+      [5, 15],
+      [24, 22],
+      [25, 4],
+      [10, 4],
+      [8, -2],
+      [11, 13],
+      [3, -4],
+      [12, 2],
+      [9, 8],
+      [21, -1],
+      [13, -7],
+      [8, -8],
+      [10, 11],
+      [14, 5],
+      [6, 10],
+      [12, -12],
+      [8, 2],
+      [0, 9],
+      [9, -1],
+      [7, -10],
+      [13, 4],
+      [10, -1]
+    ],
+    [
+      [2774, 5010],
+      [-4, -1],
+      [0, 11],
+      [5, 9],
+      [5, -3],
+      [-6, -16]
+    ],
+    [
+      [2519, 5143],
+      [-4, -14],
+      [-5, 0],
+      [9, 14]
+    ],
+    [
+      [2493, 5154],
+      [0, -14],
+      [-8, 2],
+      [1, 11],
+      [7, 1]
+    ],
+    [
+      [2459, 5168],
+      [2, -12],
+      [-7, 2],
+      [-1, 8],
+      [6, 2]
+    ],
+    [
+      [2478, 5174],
+      [6, -6],
+      [-5, -6],
+      [-4, 5],
+      [3, 7]
+    ],
+    [
+      [2463, 5192],
+      [4, -22],
+      [6, -11],
+      [-1, -9],
+      [6, -10],
+      [-4, -13],
+      [-13, -3],
+      [-3, 10],
+      [12, 14],
+      [-9, 21],
+      [-3, 18],
+      [5, 5]
+    ],
+    [
+      [2909, 5177],
+      [-10, 0],
+      [6, -20],
+      [4, -4],
+      [-1, -13],
+      [2, -13],
+      [-5, 0],
+      [-4, -27],
+      [-15, -40],
+      [-16, -25],
+      [-33, -24],
+      [-9, -21],
+      [1, -7],
+      [-6, 5],
+      [-1, -22],
+      [-8, -31],
+      [-1, -17],
+      [-4, -3],
+      [-1, -12],
+      [-4, -7],
+      [-8, 2],
+      [-5, 16],
+      [0, 9],
+      [-8, 2],
+      [-9, 11],
+      [-8, -11],
+      [-2, 5],
+      [4, 10],
+      [-5, 9],
+      [10, 10],
+      [-2, 22],
+      [-3, 6]
+    ],
+    [
+      [2768, 4987],
+      [11, 12],
+      [6, 40],
+      [-3, 5],
+      [-4, -11],
+      [-1, 15],
+      [-7, -22],
+      [-11, 18],
+      [-7, 5],
+      [5, 13],
+      [-1, 22],
+      [-2, 5],
+      [2, 15],
+      [-4, 19],
+      [10, 7],
+      [3, 21],
+      [-1, 11],
+      [12, 24],
+      [1, 31],
+      [-2, 13],
+      [12, 11],
+      [19, 9],
+      [4, 15]
+    ],
+    [
+      [5949, 6986],
+      [2, -6]
+    ],
+    [
+      [5951, 6980],
+      [17, -99]
+    ],
+    [
+      [5968, 6881],
+      [-4, -12],
+      [-3, -33],
+      [-5, -16],
+      [0, -26],
+      [-5, -14],
+      [-13, 15],
+      [-6, 17],
+      [-10, 16],
+      [-1, 26],
+      [-8, 12],
+      [-5, 14],
+      [-2, 23],
+      [-4, -1],
+      [-4, -16],
+      [6, -10],
+      [3, -16],
+      [0, -14],
+      [4, -6],
+      [14, -42],
+      [5, -5],
+      [5, -36],
+      [4, -4],
+      [5, -25],
+      [0, -11],
+      [11, -43],
+      [15, -51],
+      [8, -35],
+      [15, -29],
+      [-8, 3],
+      [2, -41],
+      [3, -16],
+      [6, -13],
+      [10, -6],
+      [2, -8],
+      [16, -29]
+    ],
+    [
+      [6024, 6449],
+      [-78, 0],
+      [-73, 0],
+      [0, 14],
+      [-6, -14],
+      [-57, 0],
+      [-71, 0],
+      [-46, 0]
+    ],
+    [
+      [5693, 6449],
+      [0, 421],
+      [-3, 10],
+      [-1, 24],
+      [-4, 13],
+      [6, 20],
+      [3, 17],
+      [-4, 22],
+      [0, 14],
+      [8, 16]
+    ],
+    [
+      [5698, 7006],
+      [1, -7],
+      [7, -2],
+      [12, 7],
+      [14, -6],
+      [27, -8],
+      [1, -7],
+      [8, -5],
+      [5, 4],
+      [4, -9],
+      [21, -6],
+      [8, -9],
+      [13, 7],
+      [16, 22],
+      [4, -4],
+      [4, 14],
+      [3, -3],
+      [11, 6],
+      [-9, -10],
+      [9, 2],
+      [7, 11],
+      [13, -9],
+      [8, 5],
+      [-3, -15],
+      [7, -4],
+      [1, -7],
+      [6, 2],
+      [0, 9],
+      [6, -10],
+      [7, -4],
+      [31, 7],
+      [9, 9]
+    ],
+    [
+      [6111, 6097],
+      [3, -11],
+      [8, -6],
+      [-12, 2],
+      [-2, 8],
+      [3, 7]
+    ],
+    [
+      [6177, 5901],
+      [-6, 15],
+      [-8, 12],
+      [-5, 18],
+      [-14, 19],
+      [-7, 23],
+      [-5, 10],
+      [-10, 7],
+      [-5, 9],
+      [-9, -1],
+      [-10, 9],
+      [-10, -6],
+      [-5, 10],
+      [-3, -8],
+      [-13, -5],
+      [-6, 16],
+      [-3, -1],
+      [-6, 12],
+      [-9, -45],
+      [-6, 19],
+      [-5, 1],
+      [-2, -8],
+      [-10, 1],
+      [-6, -4]
+    ],
+    [
+      [6014, 6004],
+      [-3, 51],
+      [6, 17],
+      [1, 18],
+      [3, 5],
+      [5, 24],
+      [-2, 23],
+      [3, 6],
+      [-1, 17],
+      [12, -2],
+      [3, 17],
+      [21, 13],
+      [5, 18],
+      [5, 9]
+    ],
+    [
+      [6072, 6220],
+      [9, -35],
+      [0, -9],
+      [6, -31],
+      [1, -24],
+      [3, -23],
+      [4, -4],
+      [0, -17],
+      [5, -2],
+      [2, -22],
+      [4, -1],
+      [-2, 18],
+      [3, 4],
+      [6, -7],
+      [0, -17],
+      [6, -8],
+      [3, 5],
+      [6, -3],
+      [3, -12],
+      [12, -6],
+      [12, -31],
+      [2, -9],
+      [9, -6],
+      [3, -12],
+      [3, 1],
+      [4, -13],
+      [1, -13],
+      [4, 2],
+      [6, -13],
+      [0, -8],
+      [10, -9]
+    ],
+    [
+      [5941, 7196],
+      [-3, 1]
+    ],
+    [
+      [5938, 7197],
+      [-2, 0]
+    ],
+    [
+      [4503, 6784],
+      [-3, -9],
+      [-5, 3],
+      [8, 6]
+    ],
+    [
+      [4571, 6803],
+      [1, -17],
+      [-5, -6],
+      [-6, 6],
+      [2, 19],
+      [8, -2]
+    ],
+    [
+      [4552, 6828],
+      [-7, -11],
+      [-2, -14],
+      [-7, -8],
+      [-6, 21],
+      [12, 4],
+      [4, 8],
+      [6, 0]
+    ],
+    [
+      [4604, 6803],
+      [7, 35],
+      [5, -4],
+      [-4, -26],
+      [-8, -5]
+    ],
+    [
+      [4503, 6844],
+      [4, -7],
+      [-3, -16],
+      [-4, 14],
+      [3, 9]
+    ],
+    [
+      [4626, 6861],
+      [0, -6],
+      [-9, -10],
+      [-1, 11],
+      [10, 5]
+    ],
+    [
+      [4919, 7214],
+      [-1, 3]
+    ],
+    [
+      [4918, 7217],
+      [1, -3]
+    ],
+    [
+      [4851, 7247],
+      [-1, 5]
+    ],
+    [
+      [4850, 7252],
+      [1, -5]
+    ],
+    [
+      [5043, 7435],
+      [2, -6],
+      [-6, -9],
+      [-6, 2],
+      [10, 13]
+    ],
+    [
+      [5088, 7483],
+      [0, -11],
+      [8, 0],
+      [-7, -23],
+      [-4, -6],
+      [-8, 7],
+      [-3, 10],
+      [-9, 0],
+      [9, 14],
+      [14, 9]
+    ],
+    [
+      [5114, 7490],
+      [6, -11],
+      [-3, -3],
+      [-12, 12],
+      [9, 2]
+    ],
+    [
+      [5055, 7627],
+      [0, 0]
+    ],
+    [
+      [4950, 7681],
+      [11, -8],
+      [1, -9],
+      [16, -8],
+      [6, -11],
+      [6, 3],
+      [8, -7],
+      [20, 0],
+      [0, 9],
+      [18, -7],
+      [3, -7]
+    ],
+    [
+      [5047, 7630],
+      [8, -9],
+      [8, 4],
+      [6, -5],
+      [12, 8],
+      [7, -3]
+    ],
+    [
+      [5088, 7625],
+      [4, -5],
+      [-6, -6],
+      [3, -18],
+      [-4, -6],
+      [-23, -20],
+      [-3, -10],
+      [-17, -6],
+      [-15, -8],
+      [-8, -13],
+      [5, -6],
+      [-8, -7],
+      [-7, -18],
+      [-8, -14],
+      [-11, -32],
+      [3, -21],
+      [6, -15],
+      [7, -7],
+      [-21, -22],
+      [-9, -36],
+      [4, -6],
+      [-19, -4],
+      [-12, -20],
+      [-2, -15],
+      [-7, -12],
+      [-5, 6],
+      [-7, -1],
+      [-3, -8],
+      [-6, 4],
+      [-42, -1],
+      [-7, -13],
+      [-15, -5],
+      [-4, -16]
+    ],
+    [
+      [4851, 7264],
+      [0, 0]
+    ],
+    [
+      [4851, 7264],
+      [-6, -7],
+      [-14, 11],
+      [-9, 24],
+      [-2, 18],
+      [-12, 13],
+      [-14, 2]
+    ],
+    [
+      [4794, 7325],
+      [-3, 18],
+      [7, 27],
+      [6, 2],
+      [3, 10],
+      [-5, 0],
+      [-6, 14],
+      [1, 17],
+      [6, 6],
+      [3, 12],
+      [-5, 3],
+      [-5, 22],
+      [-6, 12],
+      [14, 0],
+      [4, 14],
+      [-4, 17],
+      [7, 8],
+      [-1, 30],
+      [-3, 6],
+      [8, 16],
+      [6, 4],
+      [6, 14],
+      [-10, 6],
+      [0, 16],
+      [-16, 2],
+      [-2, -7],
+      [-11, -3],
+      [-3, 3],
+      [-13, -3],
+      [3, 13],
+      [-4, 6],
+      [-15, -10]
+    ],
+    [
+      [4756, 7600],
+      [-4, 7],
+      [8, 12],
+      [-7, 6],
+      [1, 13],
+      [-6, -4],
+      [1, 10],
+      [-7, 18],
+      [12, 17],
+      [5, -3],
+      [11, 5],
+      [-2, 4],
+      [13, 17],
+      [6, 2],
+      [13, -13],
+      [36, 2],
+      [14, -2],
+      [17, -9],
+      [16, 0],
+      [17, 6],
+      [3, -6],
+      [11, -2],
+      [10, 4],
+      [16, -8],
+      [10, 5]
+    ],
+    [
+      [5628, 8557],
+      [8, 2],
+      [12, -10],
+      [-17, -13],
+      [-15, -4],
+      [-10, 7],
+      [0, 13],
+      [22, 5]
+    ],
+    [
+      [5631, 8581],
+      [8, -10],
+      [-15, -8],
+      [-3, 11],
+      [-9, 4],
+      [19, 3]
+    ],
+    [
+      [5778, 8608],
+      [4, -7]
+    ],
+    [
+      [5782, 8601],
+      [-5, -1]
+    ],
+    [
+      [5777, 8600],
+      [3, -1]
+    ],
+    [
+      [5780, 8599],
+      [-7, -9]
+    ],
+    [
+      [5773, 8590],
+      [-4, -10]
+    ],
+    [
+      [5769, 8580],
+      [-12, 1],
+      [-9, -8],
+      [13, -28],
+      [6, -22]
+    ],
+    [
+      [5767, 8523],
+      [5, -8],
+      [-7, -3],
+      [-6, -16]
+    ],
+    [
+      [5759, 8496],
+      [-14, 5],
+      [-8, -6],
+      [-15, 19],
+      [-26, 13],
+      [-21, -12]
+    ],
+    [
+      [5675, 8515],
+      [7, 26],
+      [-10, -3],
+      [-13, 5],
+      [-6, 13],
+      [-3, 20],
+      [6, 3],
+      [-5, 14],
+      [18, 5],
+      [6, 10],
+      [30, 1],
+      [8, 10],
+      [35, -13],
+      [27, -2],
+      [3, 4]
+    ],
+    [
+      [6160, 5833],
+      [0, -12]
+    ],
+    [
+      [6192, 5816],
+      [-8, -22],
+      [5, -23],
+      [5, -13],
+      [6, -8],
+      [1, -13],
+      [4, -12],
+      [5, -4],
+      [12, -21],
+      [51, -34],
+      [31, -23],
+      [28, 0]
+    ],
+    [
+      [6332, 5643],
+      [-21, -43],
+      [-31, -61],
+      [-14, -31],
+      [-14, -34],
+      [-5, -9],
+      [-27, 3],
+      [-20, -14],
+      [-8, -12],
+      [-1, -8],
+      [-9, -7],
+      [-12, -2],
+      [-7, -13]
+    ],
+    [
+      [6163, 5412],
+      [-19, -3],
+      [-3, 2],
+      [-9, 19],
+      [-26, -24],
+      [-8, -27],
+      [-25, 12],
+      [-15, 0],
+      [-7, 11],
+      [-28, 36],
+      [-23, 1],
+      [-3, 10]
+    ],
+    [
+      [5997, 5449],
+      [-4, 8],
+      [0, 27],
+      [-2, 9],
+      [-11, -2],
+      [-1, 9],
+      [-5, 7],
+      [-3, 12],
+      [0, 13],
+      [-4, 11],
+      [-3, 24],
+      [-6, 5],
+      [0, 8],
+      [-6, 4],
+      [-7, 24],
+      [-9, 16],
+      [-19, 8],
+      [-1, 9],
+      [5, 9],
+      [0, 17],
+      [12, 3],
+      [2, -5],
+      [7, 3],
+      [5, 9],
+      [-1, 50]
+    ],
+    [
+      [5946, 5727],
+      [4, 33],
+      [3, 9],
+      [-1, 22],
+      [7, 18],
+      [6, -7],
+      [5, 5],
+      [0, 25],
+      [4, 16],
+      [-1, 14],
+      [6, 8],
+      [2, 12],
+      [11, 31],
+      [11, 1],
+      [0, 19],
+      [3, 19],
+      [6, 24],
+      [2, 28]
+    ],
+    [
+      [5634, 8649],
+      [-3, -11],
+      [-9, 9],
+      [12, 2]
+    ],
+    [
+      [5804, 9158],
+      [-14, -7],
+      [8, -9],
+      [-8, -12],
+      [7, -21],
+      [18, -7],
+      [18, -21],
+      [-2, -10],
+      [-23, -30],
+      [-1, -9],
+      [13, -20],
+      [11, -25],
+      [5, -23],
+      [-10, -1],
+      [2, -32],
+      [-7, -6],
+      [6, -11],
+      [9, -1],
+      [-2, -23],
+      [14, -8],
+      [1, -11],
+      [-17, -18],
+      [14, -16],
+      [21, -15],
+      [9, -17],
+      [-9, -24],
+      [-25, -28],
+      [-15, -23],
+      [-18, -22],
+      [-10, -7],
+      [-27, -31]
+    ],
+    [
+      [5772, 8670],
+      [-31, -8],
+      [-19, -2],
+      [-8, -8],
+      [-15, 0],
+      [-6, -6],
+      [-38, -11],
+      [-10, -6],
+      [-10, 17],
+      [3, 10],
+      [-12, -6],
+      [2, 10],
+      [-10, 0],
+      [-12, 14],
+      [-5, -7],
+      [-8, 8],
+      [-2, 23],
+      [5, 3],
+      [3, 23],
+      [-5, 25],
+      [-5, 3],
+      [3, 22],
+      [-6, 2],
+      [3, 27],
+      [13, 9],
+      [-5, 12],
+      [11, -3],
+      [13, 8],
+      [-5, 9],
+      [17, 9],
+      [3, 10],
+      [13, 6],
+      [10, 18],
+      [17, 18],
+      [5, 16],
+      [25, 8],
+      [-4, 14],
+      [2, 17],
+      [-33, 19]
+    ],
+    [
+      [5671, 8973],
+      [-15, 37],
+      [10, 20],
+      [-12, 20],
+      [5, 16],
+      [-7, 26],
+      [5, 3],
+      [-23, 26],
+      [-21, 5],
+      [-41, 32]
+    ],
+    [
+      [5572, 9158],
+      [12, 1],
+      [7, 14],
+      [10, -2],
+      [21, -31],
+      [22, -6],
+      [20, 12],
+      [27, -15],
+      [7, 13],
+      [18, 12],
+      [-1, 17],
+      [6, 22],
+      [15, 15],
+      [16, -2],
+      [22, 10],
+      [17, -16],
+      [18, -7],
+      [6, -12],
+      [-14, -14],
+      [3, -11]
+    ],
+    [
+      [9954, 4093],
+      [-5, -13],
+      [-7, 0],
+      [12, 13]
+    ],
+    [
+      [9951, 4184],
+      [0, -5],
+      [9, -12],
+      [2, -26],
+      [-10, -2],
+      [-3, -6],
+      [-10, -2],
+      [-15, 11],
+      [-1, 12],
+      [5, 7],
+      [-2, 6],
+      [7, 12],
+      [18, 5]
+    ],
+    [
+      [0, 4252],
+      [9987, -23],
+      [-2, -11],
+      [4, 2],
+      [7, 14],
+      [0, -17],
+      [-16, -2],
+      [-1, 7],
+      [-11, -10],
+      [-4, -9],
+      [-7, 15],
+      [12, 16],
+      [13, 4],
+      [2, 8],
+      [-9984, 6]
+    ],
+    [
+      [3351, 2225],
+      [4, -3],
+      [-17, -28],
+      [-11, -4],
+      [-4, -11],
+      [-8, -4],
+      [-11, 12],
+      [16, 3],
+      [-4, 17],
+      [12, 1],
+      [-13, 15],
+      [11, -5],
+      [9, 6],
+      [15, -3],
+      [1, 4]
+    ],
+    [
+      [3368, 2227],
+      [7, 2],
+      [4, -8],
+      [12, 3],
+      [4, -18],
+      [-17, -11],
+      [-16, 0],
+      [8, -4],
+      [-12, -6],
+      [1, -10],
+      [-11, 5],
+      [3, -11],
+      [-9, 12],
+      [6, 17],
+      [13, 11],
+      [-3, 14],
+      [10, 4]
+    ],
+    [
+      [6541, 3981],
+      [5, -2],
+      [5, -13],
+      [-1, -13],
+      [-7, -1],
+      [-6, 6],
+      [-4, 14],
+      [8, 9]
+    ],
+    [
+      [6252, 4454],
+      [4, -5],
+      [-1, -13],
+      [-3, -1],
+      [0, 19]
+    ],
+    [
+      [3483, 5317],
+      [7, 10],
+      [4, 16],
+      [2, 29],
+      [4, 19],
+      [-10, 24],
+      [-3, 26],
+      [-1, 25],
+      [4, 16],
+      [5, 9]
+    ],
+    [
+      [3495, 5491],
+      [3, 5],
+      [3, 18],
+      [12, -10],
+      [11, -4],
+      [6, -6],
+      [10, -19],
+      [22, -31],
+      [3, -18],
+      [-1, -11]
+    ],
+    [
+      [3306, 6034],
+      [4, -11],
+      [-1, -7],
+      [-9, 13],
+      [1, 11],
+      [5, -6]
+    ],
+    [
+      [3288, 6120],
+      [2, -14],
+      [-4, -5],
+      [-3, 22],
+      [5, -3]
+    ],
+    [
+      [3295, 6124],
+      [5, -5],
+      [-9, -3],
+      [1, 18],
+      [3, -10]
+    ],
+    [
+      [5262, 7641],
+      [2, -7],
+      [1, -27],
+      [-4, -7],
+      [-2, -24],
+      [-7, -9],
+      [-8, 9],
+      [3, 8],
+      [-7, 3],
+      [2, 19],
+      [-5, 15],
+      [3, 10],
+      [13, 13],
+      [6, -1],
+      [3, 16],
+      [0, -18]
+    ],
+    [
+      [5160, 8036],
+      [5, -6],
+      [11, 0]
+    ],
+    [
+      [5172, 7849],
+      [16, 7]
+    ],
+    [
+      [5195, 7827],
+      [-7, -5],
+      [5, -18],
+      [5, -6],
+      [-2, -11],
+      [-13, -6],
+      [3, -11],
+      [8, -5],
+      [1, -9],
+      [-6, -11],
+      [4, -14],
+      [10, -7],
+      [9, 3],
+      [-4, -22]
+    ],
+    [
+      [5208, 7705],
+      [-2, -3]
+    ],
+    [
+      [5206, 7702],
+      [-2, -1]
+    ],
+    [
+      [5204, 7701],
+      [-11, -10],
+      [-9, -23],
+      [-14, -6],
+      [-22, 9],
+      [0, 7],
+      [-15, 1],
+      [-7, 6],
+      [-11, 0],
+      [-5, 6],
+      [-13, -17],
+      [-10, -6],
+      [-3, -9],
+      [0, -26],
+      [4, -8]
+    ],
+    [
+      [4950, 7681],
+      [9, 13],
+      [6, 48],
+      [-1, 11],
+      [4, 49],
+      [11, -11],
+      [0, 8],
+      [-14, 16],
+      [3, 6],
+      [1, 26],
+      [-20, 14],
+      [-9, 18],
+      [4, 14],
+      [-5, 12],
+      [-8, 1],
+      [-3, 15],
+      [-6, -3],
+      [-11, 11],
+      [-18, 6],
+      [-4, 6],
+      [-11, -5],
+      [0, 7],
+      [-9, 7],
+      [12, 5],
+      [-14, 12],
+      [1, 13],
+      [10, 6],
+      [22, 0],
+      [2, 9],
+      [12, 2],
+      [10, -20],
+      [12, 9],
+      [16, -4],
+      [4, 8],
+      [-1, 28],
+      [-6, 8],
+      [0, 18],
+      [16, 0],
+      [-1, -11],
+      [5, -6],
+      [30, -4],
+      [8, 7],
+      [-5, 3],
+      [2, 11],
+      [10, 9],
+      [18, 7],
+      [11, 15],
+      [0, 37],
+      [10, 8],
+      [17, 4]
+    ],
+    [
+      [4800, 8771],
+      [13, -21],
+      [-14, 13],
+      [1, 8]
+    ],
+    [
+      [4808, 8772],
+      [9, -11],
+      [-11, 3],
+      [2, 8]
+    ],
+    [
+      [9394, 5584],
+      [3, -9],
+      [-4, -1],
+      [1, 10]
+    ],
+    [
+      [5308, 4956],
+      [-3, 13],
+      [-10, 15],
+      [0, 9],
+      [-17, 28],
+      [-8, 19],
+      [7, -8],
+      [5, 3],
+      [-8, 8],
+      [-7, 1],
+      [-2, 13],
+      [-9, 21],
+      [1, 10],
+      [8, 2],
+      [-2, 7],
+      [-4, -5],
+      [-9, 16],
+      [-1, 11],
+      [-6, 18],
+      [5, 6],
+      [2, -7],
+      [2, 12],
+      [6, 13],
+      [1, 14],
+      [-1, 27],
+      [2, -7],
+      [11, -2],
+      [-8, 7],
+      [-5, 19],
+      [9, -6],
+      [-2, 24],
+      [3, 7],
+      [4, -4]
+    ],
+    [
+      [5272, 5240],
+      [6, 1],
+      [36, -1],
+      [0, 68]
+    ],
+    [
+      [4964, 8107],
+      [6, -6],
+      [-7, -6],
+      [-6, 6],
+      [7, 6]
+    ],
+    [
+      [4883, 8252],
+      [-4, -10],
+      [-6, 16],
+      [10, -6]
+    ],
+    [
+      [4825, 8298],
+      [-11, -2],
+      [-8, 20],
+      [-10, -17],
+      [-14, 5],
+      [-9, 13],
+      [11, 10],
+      [-5, 6],
+      [11, 2],
+      [8, 19]
+    ],
+    [
+      [4798, 8354],
+      [20, 10],
+      [13, -2],
+      [0, -8],
+      [18, -35],
+      [-7, -6],
+      [-11, -19],
+      [-6, 4]
+    ],
+    [
+      [4857, 8375],
+      [-7, 14],
+      [7, -1],
+      [0, -13]
+    ],
+    [
+      [4830, 8398],
+      [2, -9],
+      [-7, -6],
+      [-6, 6],
+      [1, 10],
+      [10, -1]
+    ],
+    [
+      [4839, 8409],
+      [-5, -13],
+      [-4, 6],
+      [9, 7]
+    ],
+    [
+      [4832, 8443],
+      [11, -10],
+      [-2, -5],
+      [-18, -4],
+      [7, 10],
+      [-7, 5],
+      [9, 4]
+    ],
+    [
+      [4795, 8489],
+      [3, -18],
+      [-4, 1],
+      [1, 17]
+    ],
+    [
+      [4800, 8503],
+      [1, -8],
+      [-10, 7],
+      [9, 1]
+    ],
+    [
+      [4824, 8506],
+      [5, -20],
+      [14, -6],
+      [-9, -6],
+      [-10, 1],
+      [-13, 15],
+      [11, 5],
+      [2, 11]
+    ],
+    [
+      [4827, 8543],
+      [-5, -20],
+      [-16, -15],
+      [3, 11],
+      [-7, 3],
+      [2, 15],
+      [23, 15],
+      [0, -9]
+    ],
+    [
+      [4907, 8560],
+      [9, 0],
+      [-6, -20],
+      [-22, -20],
+      [6, -7],
+      [-8, -14],
+      [22, 8],
+      [20, -3],
+      [16, 2],
+      [7, -13],
+      [-6, -9],
+      [-6, -24],
+      [-9, -18],
+      [-10, -8],
+      [8, -10],
+      [-21, -15],
+      [9, -4],
+      [11, 6],
+      [13, -8],
+      [14, -19],
+      [4, -29],
+      [8, -27],
+      [19, -9],
+      [4, -13],
+      [8, -7],
+      [-4, -5],
+      [11, -24],
+      [-7, 1],
+      [12, -23],
+      [-7, -19],
+      [8, -7],
+      [5, 11],
+      [20, -2],
+      [11, -10],
+      [3, -16],
+      [-5, -24],
+      [-4, 0],
+      [-14, -26],
+      [-11, -12],
+      [12, -3],
+      [13, 1],
+      [-3, -14],
+      [-11, -13],
+      [-5, 1],
+      [-14, -11],
+      [-12, 6],
+      [-18, -6],
+      [-3, 7],
+      [-18, -7],
+      [-14, -1],
+      [2, -8],
+      [-27, 9],
+      [-13, -6],
+      [-2, -17],
+      [-8, -7],
+      [-11, 10],
+      [-16, -3],
+      [-12, -21],
+      [-8, 10],
+      [19, 25],
+      [7, 14],
+      [1, 12],
+      [6, -1],
+      [2, 11],
+      [12, 3],
+      [11, -4],
+      [11, 2],
+      [8, 20],
+      [-23, -9],
+      [-8, 12],
+      [-13, -3],
+      [0, 6],
+      [-10, 3],
+      [-8, -7],
+      [-10, 18],
+      [13, 6],
+      [20, 18],
+      [2, 9],
+      [-2, 24],
+      [-17, -4],
+      [11, 12],
+      [5, 11],
+      [27, 10],
+      [8, 19],
+      [-4, 11],
+      [5, 2],
+      [-1, 14],
+      [-9, -6],
+      [-11, 23],
+      [9, 26],
+      [-19, -10],
+      [-11, 5],
+      [1, -10],
+      [-13, 10],
+      [-5, -5],
+      [-1, 21],
+      [11, 19],
+      [-15, 29],
+      [-8, -15],
+      [-4, -23],
+      [-5, -1],
+      [3, 22],
+      [-1, 18],
+      [5, 24],
+      [8, 18],
+      [-12, -13],
+      [-5, 11],
+      [0, 17],
+      [5, 10],
+      [-6, 19],
+      [7, 25],
+      [12, 0],
+      [-5, 20],
+      [11, 21],
+      [20, -6],
+      [26, 7]
+    ],
+    [
+      [4912, 8589],
+      [-2, -13],
+      [-4, 10],
+      [6, 3]
+    ],
+    [
+      [4964, 8673],
+      [4, -27],
+      [-15, 5],
+      [9, 7],
+      [2, 15]
+    ],
+    [
+      [6206, 7550],
+      [-23, 27],
+      [-5, -9],
+      [-8, 5],
+      [-9, -5],
+      [-8, 5]
+    ],
+    [
+      [6153, 7573],
+      [7, 17],
+      [-8, 51],
+      [-10, 6],
+      [-3, 11],
+      [-21, 13],
+      [-8, 10]
+    ],
+    [
+      [6110, 7681],
+      [2, 9],
+      [16, 0],
+      [27, -19],
+      [21, 2],
+      [7, -6],
+      [6, 1],
+      [10, -14],
+      [17, -9],
+      [-2, -8],
+      [6, -4],
+      [16, 12],
+      [7, -8],
+      [4, 8],
+      [11, -14],
+      [11, 0],
+      [-2, -18],
+      [8, -10],
+      [14, -9]
+    ],
+    [
+      [4995, 5824],
+      [5, -3],
+      [-3, -26],
+      [10, -13],
+      [3, -27],
+      [-4, -30],
+      [8, 0],
+      [-2, -24],
+      [2, -8],
+      [-4, -8],
+      [9, -19],
+      [-3, -11],
+      [0, -28],
+      [-3, -15],
+      [4, -3],
+      [-1, -23],
+      [-3, -2],
+      [6, -28],
+      [8, -9],
+      [5, -13]
+    ],
+    [
+      [5032, 5534],
+      [-7, -19],
+      [-15, 1],
+      [-21, -17],
+      [-12, -16],
+      [-6, 0],
+      [-6, -7],
+      [-11, -5],
+      [-10, -15],
+      [-7, 8],
+      [-24, 12]
+    ],
+    [
+      [4913, 5477],
+      [8, 2]
+    ],
+    [
+      [4851, 7264],
+      [0, 0]
+    ],
+    [
+      [4683, 5897],
+      [-3, -14],
+      [6, -9],
+      [6, 11],
+      [4, 0],
+      [8, -17],
+      [4, 13],
+      [5, 5],
+      [16, -11],
+      [2, 7],
+      [14, 19],
+      [5, -5],
+      [2, -20],
+      [3, -1],
+      [-1, -21],
+      [13, -17],
+      [-9, -23],
+      [5, 5],
+      [6, -3],
+      [0, -28],
+      [9, -12],
+      [0, -8]
+    ],
+    [
+      [4764, 5618],
+      [-6, 8],
+      [-1, -12],
+      [-11, -17],
+      [-5, 13],
+      [-4, 0],
+      [3, 19],
+      [-5, 25],
+      [0, 11],
+      [-8, 10],
+      [-7, -7],
+      [-6, 3]
+    ],
+    [
+      [4714, 5671],
+      [-3, 1],
+      [-5, -11],
+      [-3, 4],
+      [5, 15],
+      [-3, 10],
+      [0, 15],
+      [-4, 1],
+      [2, 13],
+      [-15, 39],
+      [-19, 0],
+      [-17, -7],
+      [-5, -26],
+      [-12, -21],
+      [-5, -1]
+    ],
+    [
+      [4630, 5703],
+      [4, 8],
+      [-12, 23],
+      [0, 12],
+      [-4, -2],
+      [-6, 13],
+      [-20, 29],
+      [4, 20],
+      [-5, -10],
+      [-3, 21],
+      [-4, -14],
+      [-2, 11]
+    ],
+    [
+      [4582, 5814],
+      [8, 30],
+      [12, 8],
+      [16, 4],
+      [0, 19],
+      [-6, 11],
+      [7, 3],
+      [-1, 24]
+    ],
+    [
+      [4618, 5913],
+      [19, -3],
+      [-1, -8],
+      [17, -6],
+      [3, -5],
+      [7, 6],
+      [20, 0]
+    ],
+    [
+      [4534, 5935],
+      [-2, 17],
+      [4, 7],
+      [8, -14],
+      [5, 5],
+      [-8, 2],
+      [-1, 13]
+    ],
+    [
+      [4540, 5965],
+      [29, 0],
+      [4, 12],
+      [7, 2],
+      [8, -5],
+      [2, -7],
+      [6, 1],
+      [4, -10],
+      [12, 7],
+      [3, -14],
+      [-15, -6],
+      [-5, 7],
+      [-11, 6],
+      [-6, 7],
+      [-1, -9],
+      [-5, -4],
+      [-12, -1],
+      [0, -11],
+      [-24, 1],
+      [-2, -6]
+    ],
+    [
+      [4553, 5826],
+      [1, -7],
+      [-6, 3],
+      [5, 4]
+    ],
+    [
+      [4582, 5814],
+      [-1, 9],
+      [-5, -7],
+      [-7, 20],
+      [5, 15],
+      [8, -2],
+      [-9, 7],
+      [-2, -8],
+      [-3, 8],
+      [2, 11],
+      [8, -1],
+      [-5, 6],
+      [-6, -7],
+      [-11, -6],
+      [3, 14],
+      [-7, -6],
+      [-6, 6],
+      [1, 13],
+      [-5, -2],
+      [-7, 9]
+    ],
+    [
+      [4535, 5893],
+      [14, 7],
+      [15, -1],
+      [13, 14],
+      [41, 0]
+    ],
+    [
+      [5272, 5240],
+      [-3, 6],
+      [-10, 3],
+      [3, 15],
+      [10, 28],
+      [0, 26]
+    ],
+    [
+      [5243, 5399],
+      [5, -8],
+      [-8, -24],
+      [-6, 4],
+      [0, 10],
+      [4, 1],
+      [1, 11],
+      [4, 6]
+    ],
+    [
+      [5663, 7229],
+      [13, -11],
+      [9, 5],
+      [22, -8],
+      [8, 3],
+      [-1, -12],
+      [9, 6],
+      [7, -7],
+      [-2, -5],
+      [-25, -2],
+      [-16, -4],
+      [0, 9],
+      [-10, 6],
+      [-24, 5],
+      [1, 17],
+      [4, 5],
+      [5, -7]
+    ],
+    [
+      [5756, 7245],
+      [-1, -17],
+      [-3, -5],
+      [4, 22]
+    ],
+    [
+      [5640, 7268],
+      [-4, -2],
+      [0, 12],
+      [4, -10]
+    ],
+    [
+      [5784, 7281],
+      [-5, -19],
+      [-8, -12],
+      [-2, 13],
+      [5, 13],
+      [10, 5]
+    ],
+    [
+      [5710, 7319],
+      [-4, -10],
+      [-2, 10],
+      [6, 0]
+    ],
+    [
+      [5731, 7350],
+      [-10, -7],
+      [2, 7],
+      [8, 0]
+    ],
+    [
+      [5748, 7357],
+      [-5, -6],
+      [-5, 6],
+      [10, 0]
+    ],
+    [
+      [5576, 7363],
+      [5, -7],
+      [-4, -5],
+      [-5, 10],
+      [4, 2]
+    ],
+    [
+      [5690, 7366],
+      [3, -13],
+      [-8, 16],
+      [5, -3]
+    ],
+    [
+      [5571, 7398],
+      [6, -23],
+      [-8, 2],
+      [-3, 14],
+      [5, 7]
+    ],
+    [
+      [5723, 7405],
+      [3, -16],
+      [-4, -9],
+      [-5, 25],
+      [6, 0]
+    ],
+    [
+      [5651, 7423],
+      [11, -14],
+      [8, 0],
+      [5, -29],
+      [7, 0],
+      [0, -10],
+      [-7, 1],
+      [-8, 23],
+      [-11, 0],
+      [-1, 9],
+      [-12, 17],
+      [-9, -1],
+      [13, 12],
+      [4, -8]
+    ],
+    [
+      [5733, 7446],
+      [6, -17],
+      [-13, 0],
+      [4, 10],
+      [-10, -4],
+      [-2, 8],
+      [13, 8],
+      [2, -5]
+    ],
+    [
+      [5553, 7474],
+      [-2, -18],
+      [-5, 18],
+      [7, 0]
+    ],
+    [
+      [5706, 7488],
+      [-2, -14],
+      [-9, 3],
+      [0, 9],
+      [11, 2]
+    ],
+    [
+      [5688, 7522],
+      [-8, 1],
+      [4, 10],
+      [4, -11]
+    ],
+    [
+      [5586, 7536],
+      [18, 3],
+      [4, 11],
+      [23, 3],
+      [5, 10]
+    ],
+    [
+      [5731, 7585],
+      [7, -8],
+      [1, -14],
+      [-8, -6],
+      [0, -15],
+      [-8, -13]
+    ],
+    [
+      [5723, 7529],
+      [-3, 5],
+      [-11, 2],
+      [-11, 8],
+      [-12, -10],
+      [-8, 6],
+      [-9, -12],
+      [-11, 1],
+      [4, -19],
+      [-4, -10],
+      [8, -6],
+      [-1, -11],
+      [-9, 17],
+      [-8, 0],
+      [0, -6],
+      [10, -14],
+      [-9, 6],
+      [-2, 14],
+      [-12, 9],
+      [0, 14],
+      [-6, -6],
+      [-3, -28],
+      [8, -15],
+      [2, -11],
+      [5, -6],
+      [7, -17],
+      [-11, 9],
+      [-4, -7],
+      [6, -16],
+      [-9, -6],
+      [17, -11],
+      [0, -9],
+      [8, -2],
+      [13, -15],
+      [-2, -5],
+      [2, -25],
+      [-3, -1],
+      [-12, 22],
+      [-15, -11],
+      [5, -3],
+      [0, -11],
+      [10, -10],
+      [-11, -8],
+      [-11, 16],
+      [0, -8],
+      [7, -21],
+      [3, -20],
+      [0, -17],
+      [-11, 22],
+      [-5, -6],
+      [-4, -14],
+      [0, 13],
+      [-6, 19],
+      [-6, -1],
+      [0, -14],
+      [-7, 3],
+      [-3, 13],
+      [3, 14],
+      [-3, 15],
+      [-13, 17],
+      [7, 16],
+      [7, 2],
+      [6, 9],
+      [19, -10],
+      [10, -12],
+      [9, 10],
+      [-5, 6],
+      [-17, 14],
+      [-1, -6],
+      [-12, 4],
+      [-12, -7],
+      [-4, 8],
+      [-8, -4],
+      [-5, 24],
+      [-4, -1],
+      [-1, 16],
+      [-13, 20],
+      [-2, 14],
+      [-5, 4]
+    ],
+    [
+      [5583, 7526],
+      [0, 0]
+    ],
+    [
+      [5582, 7531],
+      [4, 5]
+    ],
+    [
+      [3288, 5876],
+      [-5, -2],
+      [5, 13],
+      [0, -11]
+    ],
+    [
+      [3786, 8632],
+      [-12, -4],
+      [4, 9],
+      [8, -5]
+    ],
+    [
+      [3787, 8645],
+      [3, -11],
+      [-11, 4],
+      [-4, 10],
+      [12, -3]
+    ],
+    [
+      [3846, 8835],
+      [12, -11],
+      [-9, 0],
+      [-12, 15],
+      [9, -4]
+    ],
+    [
+      [3579, 8886],
+      [3, 14],
+      [6, -4],
+      [-9, -10]
+    ],
+    [
+      [3876, 8910],
+      [-1, -14],
+      [-10, 26],
+      [11, -12]
+    ],
+    [
+      [3961, 8973],
+      [2, -9],
+      [-18, -2],
+      [0, 10],
+      [16, 1]
+    ],
+    [
+      [3583, 9209],
+      [9, -5],
+      [-9, -16],
+      [-11, 9],
+      [11, 12]
+    ],
+    [
+      [3535, 9210],
+      [20, -7],
+      [5, -10],
+      [-9, -9],
+      [-40, -14],
+      [-19, 9],
+      [8, 9],
+      [-21, 2],
+      [3, 11],
+      [-6, 23],
+      [14, 9],
+      [30, -7],
+      [15, -16]
+    ],
+    [
+      [4292, 9258],
+      [5, -6],
+      [-22, -8],
+      [-56, -5],
+      [5, 12],
+      [24, 14],
+      [11, 0],
+      [27, 11],
+      [6, -18]
+    ],
+    [
+      [3513, 9274],
+      [-13, 6],
+      [9, 10],
+      [4, -16]
+    ],
+    [
+      [3537, 9281],
+      [-14, 10],
+      [21, 1],
+      [-7, -11]
+    ],
+    [
+      [3472, 9375],
+      [-13, -11],
+      [-4, 9],
+      [17, 2]
+    ],
+    [
+      [4335, 9380],
+      [22, -3],
+      [33, -25],
+      [-20, 4],
+      [17, -11],
+      [-5, -9],
+      [-50, 20],
+      [-10, 8],
+      [0, 15],
+      [13, 1]
+    ],
+    [
+      [4354, 9391],
+      [36, -8],
+      [-3, -13],
+      [-17, -1],
+      [-14, 11],
+      [-38, 1],
+      [0, 5],
+      [36, 5]
+    ],
+    [
+      [4333, 9407],
+      [21, -8],
+      [-47, 6],
+      [55, -12],
+      [-48, -4],
+      [-29, 9],
+      [13, 12],
+      [35, -3]
+    ],
+    [
+      [4418, 9469],
+      [11, -1],
+      [11, -14],
+      [-32, -5],
+      [-18, 7],
+      [3, 8],
+      [25, 5]
+    ],
+    [
+      [4439, 9496],
+      [13, -2],
+      [-12, -10],
+      [-14, 7],
+      [13, 5]
+    ],
+    [
+      [4505, 9520],
+      [-7, -8],
+      [21, -2],
+      [-15, -6],
+      [-30, -2],
+      [2, 17],
+      [29, 1]
+    ],
+    [
+      [4481, 9596],
+      [3, -41],
+      [-16, 34],
+      [13, 7]
+    ],
+    [
+      [2994, 9643],
+      [23, -5],
+      [-21, -3],
+      [-2, 8]
+    ],
+    [
+      [4445, 9674],
+      [18, -11],
+      [-32, 9],
+      [14, 2]
+    ],
+    [
+      [4519, 9788],
+      [-33, -16],
+      [-26, 9],
+      [49, 14],
+      [10, -7]
+    ],
+    [
+      [3575, 9904],
+      [-53, 7],
+      [4, 13],
+      [49, -20]
+    ],
+    [
+      [3722, 9942],
+      [44, -15],
+      [-28, -11],
+      [-44, 11],
+      [-20, 15],
+      [48, 0]
+    ],
+    [
+      [3880, 9983],
+      [38, -14],
+      [-47, 9],
+      [9, 5]
+    ],
+    [
+      [4105, 9998],
+      [43, -1],
+      [139, -17],
+      [-12, -6],
+      [-116, -3],
+      [-142, -14],
+      [100, 5],
+      [47, 8],
+      [96, -4],
+      [39, 6],
+      [2, -18],
+      [34, 4],
+      [72, -17],
+      [-31, -17],
+      [-54, -4],
+      [-152, -7],
+      [-81, -17],
+      [1, -9],
+      [30, 8],
+      [107, 13],
+      [89, -4],
+      [-3, -12],
+      [-44, -9],
+      [-2, -11],
+      [85, 20],
+      [2, 14],
+      [51, 4],
+      [11, -19],
+      [-7, -14],
+      [-56, -36],
+      [-16, -18],
+      [53, 26],
+      [58, 30],
+      [75, -8],
+      [37, 24],
+      [53, -1],
+      [57, -12],
+      [13, -8],
+      [-64, -27],
+      [-24, 0],
+      [7, -12],
+      [-31, -8],
+      [-46, 1],
+      [36, -15],
+      [-18, -11],
+      [-40, -3],
+      [-44, 6],
+      [-25, -22],
+      [11, -12],
+      [20, 3],
+      [-9, -21],
+      [17, -12],
+      [-27, -8],
+      [0, -11],
+      [-28, -2],
+      [-11, -42],
+      [-18, -22],
+      [18, 0],
+      [10, 17],
+      [51, -16],
+      [-6, -10],
+      [-19, 10],
+      [-22, -2],
+      [38, -26],
+      [10, 6],
+      [21, -5],
+      [2, -18],
+      [-10, -12],
+      [-35, 13],
+      [-27, -3],
+      [-24, -13],
+      [-13, 12],
+      [-14, -8],
+      [10, -12],
+      [18, 1],
+      [0, -16],
+      [19, 4],
+      [30, -4],
+      [6, -11],
+      [-15, -4],
+      [21, -14],
+      [3, -29],
+      [-17, -4],
+      [-4, 9],
+      [-16, -2],
+      [-26, 17],
+      [8, -12],
+      [24, -14],
+      [-8, -27],
+      [30, -5],
+      [7, 6],
+      [13, -11],
+      [-18, -15],
+      [-16, 2],
+      [-7, 11],
+      [-36, -2],
+      [-11, -18],
+      [9, -27],
+      [-2, 21],
+      [9, 3],
+      [36, -10],
+      [-7, -26],
+      [-28, 3],
+      [-18, -14],
+      [-36, 11],
+      [-14, 9],
+      [-1, 13],
+      [-10, -16],
+      [-25, -4],
+      [-17, -16],
+      [24, -7],
+      [-16, -14],
+      [22, -6],
+      [6, -12],
+      [-19, -7],
+      [21, 1],
+      [23, -15],
+      [33, -16],
+      [-17, -14],
+      [20, 9],
+      [14, -3],
+      [-17, -11],
+      [2, -17],
+      [9, 14],
+      [10, -1],
+      [0, -35],
+      [8, -18],
+      [-13, -10],
+      [-11, 3],
+      [-7, 22],
+      [-2, -22],
+      [-19, 0],
+      [-16, 10],
+      [-9, 27],
+      [-24, 13],
+      [-15, 14],
+      [-20, 5],
+      [-16, -3],
+      [-26, 23],
+      [-16, -2],
+      [31, -13],
+      [-8, -6],
+      [26, -8],
+      [25, 1],
+      [11, -12],
+      [-16, -13],
+      [-24, -7],
+      [-44, 2],
+      [14, -7],
+      [-11, -17],
+      [2, -11],
+      [40, 7],
+      [13, -6],
+      [-17, -3],
+      [-27, -14],
+      [-16, -3],
+      [34, -3],
+      [11, 16],
+      [15, -4],
+      [29, 13],
+      [23, -11],
+      [25, -7],
+      [33, 0],
+      [0, -8],
+      [-14, 0],
+      [-4, -12],
+      [-19, -2],
+      [1, -10],
+      [-13, -8],
+      [-17, -1],
+      [2, -9],
+      [-26, -21],
+      [-31, -10],
+      [-13, -9],
+      [-23, 1],
+      [1, -6],
+      [-24, -7],
+      [-9, 4],
+      [-5, -11],
+      [-18, 10],
+      [-1, -16],
+      [-30, -3],
+      [-30, 17],
+      [6, -17],
+      [-4, -12],
+      [-11, 1],
+      [-16, -12],
+      [-12, -33],
+      [-13, -5],
+      [-1, -15],
+      [-27, -26],
+      [-15, -2],
+      [-14, -18],
+      [-13, 3],
+      [-20, -12],
+      [-17, 14],
+      [15, 16],
+      [-12, 0],
+      [-7, -21],
+      [-14, -1],
+      [8, -16],
+      [-17, 1],
+      [-7, -6],
+      [-8, 9],
+      [-14, -12],
+      [2, -15],
+      [-14, -14],
+      [-10, 8],
+      [-13, -3],
+      [1, -12],
+      [14, -11],
+      [-1, -13],
+      [-13, -9],
+      [-12, 1],
+      [3, -8],
+      [18, -1],
+      [7, -27],
+      [-13, 0],
+      [6, -7],
+      [-18, -12],
+      [-13, 6],
+      [12, -15],
+      [-4, -15],
+      [-21, -8],
+      [-6, -11],
+      [9, -15],
+      [-21, 9],
+      [12, -11],
+      [9, -1],
+      [-8, -21],
+      [11, 5],
+      [-6, -22],
+      [-8, -6],
+      [7, -7],
+      [-17, -13],
+      [9, -6],
+      [-3, -17],
+      [-20, 3],
+      [20, -7],
+      [-12, -15],
+      [-11, 5],
+      [14, -18],
+      [0, -9],
+      [-29, 6],
+      [-13, -12],
+      [-12, 10],
+      [3, 19],
+      [-9, 0],
+      [6, 10],
+      [-15, -11],
+      [-11, 20],
+      [6, 8],
+      [-3, 10],
+      [-10, -9],
+      [-22, -8],
+      [3, 7],
+      [-19, -8],
+      [-17, 0],
+      [14, 12],
+      [-20, 6],
+      [-4, 9],
+      [7, 5],
+      [-20, 5],
+      [-1, 9],
+      [-10, 13],
+      [8, 10],
+      [-10, 16],
+      [-15, 2],
+      [-8, 9],
+      [5, 28],
+      [-12, 7],
+      [15, 8],
+      [-28, -3],
+      [-2, 19],
+      [-11, 10],
+      [3, 23],
+      [-6, 8],
+      [14, -1],
+      [13, 13],
+      [6, 16],
+      [9, -13],
+      [-4, 16],
+      [-11, 4],
+      [-15, -12],
+      [2, 10],
+      [-19, -33],
+      [-9, 0],
+      [1, 29],
+      [22, 16],
+      [-10, 2],
+      [-8, -13],
+      [-23, 50],
+      [-12, 0],
+      [-4, 23],
+      [19, 15],
+      [18, 9],
+      [21, 21],
+      [-21, -13],
+      [-3, -7],
+      [-33, -23],
+      [-9, 1],
+      [1, 22],
+      [11, 11],
+      [16, -1],
+      [5, 10],
+      [-34, 3],
+      [-6, 14],
+      [49, 13],
+      [17, -3],
+      [12, 6],
+      [-28, -2],
+      [-28, -7],
+      [-21, -2],
+      [2, 10],
+      [25, 18],
+      [15, 2],
+      [12, -7],
+      [24, 4],
+      [-49, 5],
+      [-24, -17],
+      [0, 18],
+      [22, 10],
+      [-5, 12],
+      [15, -1],
+      [16, -8],
+      [21, 2],
+      [-6, 8],
+      [7, 12],
+      [-13, 0],
+      [9, -8],
+      [-31, -6],
+      [-3, 7],
+      [-15, -1],
+      [13, 14],
+      [18, 4],
+      [23, -2],
+      [-5, 11],
+      [7, 22],
+      [16, -8],
+      [0, 19],
+      [-17, -7],
+      [10, 18],
+      [-2, 11],
+      [15, 4],
+      [-8, 11],
+      [-24, 0],
+      [-25, 5],
+      [-25, 17],
+      [-22, 4],
+      [-15, 18],
+      [11, 6],
+      [48, -8],
+      [25, -15],
+      [24, -6],
+      [5, 11],
+      [-14, -6],
+      [1, 16],
+      [-24, 21],
+      [17, -6],
+      [-5, 9],
+      [-22, -1],
+      [16, 9],
+      [-4, 6],
+      [-19, -12],
+      [5, 13],
+      [24, 4],
+      [-8, 4],
+      [-21, -8],
+      [-7, 9],
+      [25, 4],
+      [-41, 6],
+      [-4, 7],
+      [-14, -11],
+      [0, -11],
+      [-14, -5],
+      [-24, 1],
+      [-17, 17],
+      [17, 13],
+      [-8, 8],
+      [19, 13],
+      [-21, 11],
+      [17, 5],
+      [10, 12],
+      [-3, 15],
+      [-18, 4],
+      [4, 18],
+      [-30, 38],
+      [7, 13],
+      [-16, 5],
+      [7, 11],
+      [-21, 13],
+      [4, 8],
+      [-31, 10],
+      [-14, 17],
+      [13, 3],
+      [-7, 17],
+      [-16, -2],
+      [-4, 10],
+      [-26, 9],
+      [-17, -2],
+      [-4, 9],
+      [-42, 5],
+      [-31, 8],
+      [-6, -11],
+      [-27, 5],
+      [1, -9],
+      [-35, -1],
+      [7, 10],
+      [-15, 1],
+      [-6, -12],
+      [-18, 11],
+      [-7, -6],
+      [23, -12],
+      [-58, 9],
+      [-30, 15],
+      [36, 17],
+      [-57, 7],
+      [-26, 11],
+      [12, 12],
+      [50, 5],
+      [21, 6],
+      [50, -3],
+      [14, 9],
+      [-19, 13],
+      [-24, -11],
+      [-45, -4],
+      [-29, 6],
+      [21, 8],
+      [-33, -1],
+      [13, 9],
+      [-30, -4],
+      [-44, 23],
+      [8, 21],
+      [91, 16],
+      [8, 10],
+      [43, 9],
+      [42, -2],
+      [31, 23],
+      [-5, 30],
+      [-56, 2],
+      [-12, 15],
+      [39, 20],
+      [28, 7],
+      [8, 12],
+      [46, 13],
+      [44, -9],
+      [16, 6],
+      [6, 19],
+      [-19, 15],
+      [104, 24],
+      [90, 11],
+      [24, -14],
+      [-6, -33],
+      [24, 17],
+      [-1, 11],
+      [85, -18],
+      [-31, 13],
+      [44, 0],
+      [-31, 12],
+      [-15, 20],
+      [65, -8],
+      [77, -19],
+      [22, -14],
+      [25, 1],
+      [-8, 28],
+      [38, -1],
+      [-68, 26],
+      [132, 2],
+      [-157, 7],
+      [28, 14],
+      [74, 4],
+      [6, 5],
+      [54, -17],
+      [95, 1],
+      [-42, 3],
+      [53, 5],
+      [-49, 3],
+      [0, 13],
+      [180, 11]
+    ],
+    [
+      [2530, 6098],
+      [8, -8],
+      [4, 5],
+      [7, -7]
+    ],
+    [
+      [2549, 6088],
+      [-17, -28],
+      [-9, -9],
+      [-2, -15],
+      [2, -14],
+      [-6, -9]
+    ],
+    [
+      [2517, 6013],
+      [-6, -1],
+      [2, -10],
+      [-5, -3],
+      [-10, -17],
+      [-1, -9]
+    ],
+    [
+      [2497, 5973],
+      [-15, 12],
+      [-19, 1],
+      [-9, 9],
+      [-17, 25]
+    ],
+    [
+      [2437, 6020],
+      [3, 7],
+      [-1, 33],
+      [1, 10],
+      [11, 38],
+      [36, 0],
+      [2, 20],
+      [-7, 4],
+      [-4, 17],
+      [-8, 7],
+      [-1, 7],
+      [-9, 13],
+      [12, 0],
+      [1, 33],
+      [50, 0]
+    ],
+    [
+      [9022, 5957],
+      [-2, -11],
+      [-3, 10],
+      [5, 12],
+      [4, -3],
+      [-4, -8]
+    ],
+    [
+      [3409, 5499],
+      [-2, -9],
+      [4, -10],
+      [-2, -8],
+      [-13, -2],
+      [-5, -8],
+      [2, -9],
+      [-6, -39],
+      [4, -7],
+      [2, -13],
+      [5, -8],
+      [0, -8],
+      [10, 0],
+      [2, -28],
+      [6, -15],
+      [0, -8],
+      [9, -27],
+      [6, -5]
+    ],
+    [
+      [3312, 5482],
+      [-18, 43],
+      [8, 14],
+      [-2, 28],
+      [9, 7],
+      [5, -2],
+      [11, 21],
+      [-7, 0],
+      [-5, 21],
+      [5, 19],
+      [5, 3],
+      [15, 22],
+      [-6, 18]
+    ],
+    [
+      [3332, 5676],
+      [4, -9],
+      [7, -3],
+      [15, -20],
+      [17, -36],
+      [1, -15],
+      [-4, -18],
+      [1, -10],
+      [3, 13],
+      [4, 2],
+      [10, -8],
+      [9, -18],
+      [2, -9],
+      [6, -1],
+      [5, -11],
+      [0, -27],
+      [-3, -7]
+    ],
+    [
+      [8172, 6482],
+      [5, -7],
+      [-5, -9],
+      [-9, 5],
+      [5, 9]
+    ],
+    [
+      [7037, 2130],
+      [10, -6],
+      [-7, -4],
+      [-3, 10]
+    ],
+    [
+      [2691, 6046],
+      [-12, -1],
+      [-4, -8],
+      [-12, -4],
+      [-8, -7],
+      [-8, 2],
+      [-3, 9],
+      [-6, -6],
+      [-4, -11],
+      [0, -12],
+      [-5, -3],
+      [-5, -13],
+      [-6, -5],
+      [0, -7],
+      [-8, 9],
+      [-8, -14],
+      [-13, -2],
+      [2, -26],
+      [-6, -2],
+      [0, -10],
+      [-11, -5]
+    ],
+    [
+      [2574, 5930],
+      [-4, 22],
+      [-10, 3]
+    ],
+    [
+      [2560, 5955],
+      [3, 17],
+      [-2, 12],
+      [-6, -1],
+      [-3, 6],
+      [-10, -8],
+      [0, 7],
+      [-7, 3],
+      [-8, 17],
+      [-10, 5]
+    ],
+    [
+      [2549, 6088],
+      [8, 9],
+      [7, 2],
+      [7, -7],
+      [2, 4],
+      [12, -6],
+      [4, 3],
+      [12, -1],
+      [13, 11],
+      [15, -6],
+      [11, 6],
+      [18, -9],
+      [13, -22],
+      [-8, 6],
+      [10, -19],
+      [8, 0],
+      [-7, 9],
+      [9, -6],
+      [4, -13],
+      [4, -3]
+    ],
+    [
+      [5512, 7634],
+      [1, -9]
+    ],
+    [
+      [5513, 7625],
+      [-8, 12],
+      [-27, 21],
+      [12, -5]
+    ],
+    [
+      [5466, 7679],
+      [-8, -5],
+      [-2, 8],
+      [10, -3]
+    ],
+    [
+      [5412, 7751],
+      [11, -14],
+      [-10, 8],
+      [-1, 6]
+    ],
+    [
+      [5401, 7772],
+      [0, -20],
+      [-5, 27],
+      [5, -7]
+    ],
+    [
+      [5404, 7789],
+      [3, -10],
+      [-5, -3],
+      [2, 13]
+    ],
+    [
+      [5458, 7861],
+      [5, -3],
+      [18, -29],
+      [6, 0],
+      [9, -10],
+      [17, 0],
+      [11, 9]
+    ],
+    [
+      [5524, 7828],
+      [3, -33],
+      [12, -10],
+      [-10, -3],
+      [-1, -17]
+    ],
+    [
+      [5488, 7656],
+      [-12, 12],
+      [-6, 13],
+      [-14, 10],
+      [-11, -4],
+      [-2, 10],
+      [-14, 14],
+      [-9, 17],
+      [8, 5],
+      [-15, 23],
+      [-1, 23],
+      [-9, 12],
+      [-7, 2],
+      [-3, -20],
+      [-8, -11],
+      [-8, 20],
+      [0, 20]
+    ],
+    [
+      [5377, 7802],
+      [9, -3],
+      [13, 3],
+      [6, 6],
+      [20, -9],
+      [-2, 17],
+      [12, 6],
+      [-2, 20],
+      [9, 5],
+      [8, 12],
+      [8, 2]
+    ],
+    [
+      [3002, 6248],
+      [-1, 2]
+    ],
+    [
+      [2977, 6260],
+      [-12, 8],
+      [1, 7],
+      [11, -10],
+      [0, -5]
+    ],
+    [
+      [3000, 6254],
+      [2, -6]
+    ],
+    [
+      [3006, 6222],
+      [-8, 11],
+      [-24, -5],
+      [-11, 6],
+      [-8, 0],
+      [-6, -5],
+      [1, -8],
+      [-12, 16],
+      [-7, 4],
+      [2, 15],
+      [6, 2],
+      [16, -10],
+      [24, -4],
+      [4, 8],
+      [7, -2],
+      [0, 7],
+      [-13, 23],
+      [1, 19],
+      [3, 2],
+      [-9, 11],
+      [-11, 1],
+      [-2, 6],
+      [8, 10],
+      [11, 2],
+      [13, -11],
+      [15, -2]
+    ],
+    [
+      [5614, 7970],
+      [21, -26]
+    ],
+    [
+      [5635, 7944],
+      [-8, -11],
+      [-4, 2],
+      [-13, -17],
+      [-4, -19],
+      [-5, -6],
+      [-4, -21],
+      [-6, -5],
+      [-1, -12],
+      [-6, -10],
+      [-7, 2],
+      [-5, -8],
+      [-10, -1]
+    ],
+    [
+      [5562, 7838],
+      [-16, 4],
+      [-11, -11],
+      [-11, -3]
+    ],
+    [
+      [5458, 7861],
+      [-7, 21],
+      [-4, -1]
+    ],
+    [
+      [5476, 7947],
+      [6, -1],
+      [10, -13],
+      [15, 0],
+      [14, 3],
+      [-1, 10],
+      [7, 4],
+      [14, 3],
+      [4, 7],
+      [8, -7],
+      [12, 11],
+      [3, 13],
+      [9, 3],
+      [9, -5],
+      [11, 3],
+      [5, -11],
+      [12, 3]
+    ],
+    [
+      [8426, 4574],
+      [2, -3],
+      [-6, -11],
+      [-11, -6],
+      [0, 8],
+      [6, 3],
+      [10, 17],
+      [-1, -8]
+    ],
+    [
+      [8386, 4582],
+      [-1, -10],
+      [-6, 2],
+      [7, 8]
+    ],
+    [
+      [8333, 4644],
+      [9, -18],
+      [4, 2],
+      [10, -24],
+      [-10, -15],
+      [-9, 5],
+      [-5, 14],
+      [-10, 12],
+      [-15, 3],
+      [-4, 11],
+      [10, 10],
+      [20, 0]
+    ],
+    [
+      [8473, 4637],
+      [-2, -11],
+      [-16, -29],
+      [-8, 0],
+      [-2, -6],
+      [-12, -5],
+      [-3, 9],
+      [7, 6],
+      [-5, 10],
+      [2, 16],
+      [10, 18]
+    ],
+    [
+      [8444, 4645],
+      [2, -5],
+      [7, 4],
+      [3, 10]
+    ],
+    [
+      [8456, 4654],
+      [13, 13]
+    ],
+    [
+      [8469, 4667],
+      [7, -5],
+      [0, -8],
+      [-6, -2],
+      [3, -15]
+    ],
+    [
+      [8318, 4695],
+      [-3, -16],
+      [1, 18],
+      [2, -2]
+    ],
+    [
+      [8424, 4708],
+      [1, -8],
+      [-8, -2],
+      [4, 11],
+      [3, -1]
+    ],
+    [
+      [8242, 4700],
+      [-7, -24],
+      [3, -4],
+      [-11, -3],
+      [-10, 6],
+      [6, 6],
+      [-1, 15],
+      [7, 13],
+      [8, -1],
+      [5, -8]
+    ],
+    [
+      [8442, 4708],
+      [-5, -4],
+      [-10, -16],
+      [-5, 4],
+      [7, 9],
+      [-2, 6],
+      [12, 4],
+      [3, -3]
+    ],
+    [
+      [8450, 4700],
+      [-5, -10],
+      [-4, 6],
+      [11, 16],
+      [-2, -12]
+    ],
+    [
+      [8858, 4702],
+      [-10, -1],
+      [7, 12],
+      [3, -11]
+    ],
+    [
+      [8265, 4700],
+      [-2, 12],
+      [5, 2],
+      [-3, -14]
+    ],
+    [
+      [8459, 4715],
+      [2, -3],
+      [13, 1],
+      [1, -11],
+      [-22, -6],
+      [3, 18],
+      [3, 1]
+    ],
+    [
+      [8550, 4716],
+      [8, -3],
+      [-2, -6],
+      [-6, 9]
+    ],
+    [
+      [8276, 4716],
+      [4, 0],
+      [5, -15],
+      [6, 7],
+      [6, -6],
+      [8, 2],
+      [1, -19],
+      [-18, -12],
+      [0, 10],
+      [-7, -11],
+      [-12, -2],
+      [-9, -9],
+      [-7, -2],
+      [-11, 5],
+      [2, 11],
+      [-1, 13],
+      [12, 14],
+      [6, -8],
+      [4, 5],
+      [6, -18],
+      [14, 4],
+      [-6, 11],
+      [-4, 1],
+      [-6, 16],
+      [7, 3]
+    ],
+    [
+      [8415, 4713],
+      [2, -8],
+      [-7, -8],
+      [2, -8],
+      [-13, -10],
+      [-8, 1],
+      [-9, -9],
+      [-11, 5],
+      [-1, -7],
+      [-12, 0],
+      [-2, 6],
+      [-7, 2],
+      [-9, -3],
+      [-13, 4],
+      [0, 11],
+      [13, 18],
+      [19, -4],
+      [15, -16],
+      [15, 11],
+      [6, -12],
+      [6, 1],
+      [0, 7],
+      [12, 12],
+      [-4, 4],
+      [3, 8],
+      [3, -5]
+    ],
+    [
+      [8208, 4712],
+      [5, -15],
+      [-14, -15],
+      [-7, 13],
+      [-11, 8],
+      [-3, 14],
+      [12, -6],
+      [8, 8],
+      [10, -7]
+    ],
+    [
+      [8604, 4733],
+      [0, -14],
+      [-5, 14],
+      [5, 0]
+    ],
+    [
+      [8519, 4741],
+      [-6, -15],
+      [-15, 2],
+      [-5, -7],
+      [5, 21],
+      [11, -2],
+      [8, 7],
+      [2, -6]
+    ],
+    [
+      [8857, 4720],
+      [-12, -20],
+      [-23, 0],
+      [5, 24],
+      [6, 21],
+      [6, 8],
+      [11, 6],
+      [5, -1],
+      [7, -11],
+      [-5, -27]
+    ],
+    [
+      [8656, 4770],
+      [0, -26],
+      [-8, -16],
+      [-7, -6],
+      [3, 28],
+      [10, 23],
+      [2, -3]
+    ],
+    [
+      [8664, 4774],
+      [1, -9],
+      [-7, 7],
+      [6, 2]
+    ],
+    [
+      [8166, 4787],
+      [3, -6],
+      [-12, -8],
+      [-3, -6],
+      [-12, -1],
+      [-12, 5],
+      [4, 15],
+      [32, 1]
+    ],
+    [
+      [8204, 4789],
+      [6, -5],
+      [-10, -1],
+      [4, 6]
+    ],
+    [
+      [8738, 4813],
+      [-1, -5],
+      [-6, 7],
+      [3, 6],
+      [4, -8]
+    ],
+    [
+      [8733, 4812],
+      [3, -8],
+      [-6, -16],
+      [-7, 2],
+      [2, 30],
+      [-1, 7],
+      [9, -15]
+    ],
+    [
+      [7948, 4837],
+      [3, 4],
+      [13, -9],
+      [8, 1],
+      [0, 9],
+      [9, -3],
+      [2, -10],
+      [7, -5],
+      [6, 2],
+      [5, -8],
+      [8, 5],
+      [5, -14],
+      [2, -16],
+      [11, -1],
+      [10, -5],
+      [4, 4],
+      [11, -7],
+      [7, 4],
+      [5, -7],
+      [7, 8],
+      [2, 19],
+      [4, 5],
+      [7, -1],
+      [3, -15],
+      [12, 3],
+      [12, -14],
+      [16, 1],
+      [0, -13],
+      [6, -8],
+      [-2, -17],
+      [16, -15],
+      [12, 4],
+      [7, 6],
+      [13, -11],
+      [-3, -41],
+      [7, -10],
+      [-18, 4],
+      [-20, 20],
+      [-6, -1],
+      [-10, -8],
+      [-9, 6],
+      [-16, 4],
+      [-2, -6],
+      [-9, 6],
+      [-11, 0],
+      [-13, 8],
+      [-14, 14],
+      [-18, 10],
+      [-23, 1],
+      [-2, -7],
+      [-18, 4],
+      [-11, 14],
+      [-25, 5],
+      [-4, 10],
+      [4, 15],
+      [-7, -1],
+      [-7, 10],
+      [-20, -2],
+      [3, 10],
+      [2, -8],
+      [4, 17],
+      [5, 1],
+      [1, 18],
+      [5, 17],
+      [4, -6]
+    ],
+    [
+      [8346, 4810],
+      [-1, 39],
+      [3, -8],
+      [-2, -31]
+    ],
+    [
+      [8685, 4859],
+      [3, -16],
+      [-4, 0],
+      [1, 16]
+    ],
+    [
+      [8737, 4870],
+      [5, -12],
+      [1, -27],
+      [-5, -14],
+      [-8, 8],
+      [-1, 9],
+      [2, 19],
+      [6, 17]
+    ],
+    [
+      [7843, 4868],
+      [-9, 8],
+      [9, -3],
+      [0, -5]
+    ],
+    [
+      [8386, 4889],
+      [2, 1],
+      [2, -20],
+      [-3, -2],
+      [-4, 10],
+      [3, 11]
+    ],
+    [
+      [8410, 4898],
+      [-4, -6],
+      [0, -18],
+      [-10, -1],
+      [3, 23],
+      [-2, 8],
+      [11, 13],
+      [2, -19]
+    ],
+    [
+      [8422, 4913],
+      [0, -9],
+      [-5, 6],
+      [-2, -24],
+      [7, -6],
+      [-2, -7],
+      [-8, -5],
+      [0, -10],
+      [-6, -1],
+      [-2, 9],
+      [5, 17],
+      [3, 22],
+      [0, 15],
+      [4, 10],
+      [6, -17]
+    ],
+    [
+      [8418, 4952],
+      [5, -5],
+      [-3, -8],
+      [-5, 6],
+      [3, 7]
+    ],
+    [
+      [8564, 4977],
+      [-2, -8],
+      [-9, -3],
+      [3, 10],
+      [8, 1]
+    ],
+    [
+      [8225, 4951],
+      [-3, 23],
+      [3, 18],
+      [4, 5],
+      [1, -36],
+      [-5, -10]
+    ],
+    [
+      [8523, 5004],
+      [7, -6],
+      [-2, -7],
+      [6, -2],
+      [0, -14],
+      [-15, -15],
+      [-15, 15],
+      [-5, 14],
+      [1, 12],
+      [11, 5],
+      [12, -2]
+    ],
+    [
+      [8598, 5023],
+      [14, -13],
+      [8, 1],
+      [7, -8],
+      [1, -15],
+      [7, -11],
+      [-1, -17],
+      [-24, 23],
+      [-3, 8],
+      [-9, 2],
+      [-2, -10],
+      [-15, 7],
+      [-2, 8],
+      [-6, -10],
+      [-7, -2],
+      [-6, 20],
+      [-4, -17],
+      [-6, 11],
+      [8, 6],
+      [1, 12],
+      [21, 0],
+      [5, -5],
+      [13, 10]
+    ],
+    [
+      [7789, 5006],
+      [0, -13],
+      [-7, 21],
+      [0, 8],
+      [6, -7],
+      [1, -9]
+    ],
+    [
+      [7994, 5036],
+      [13, -12],
+      [-2, -21],
+      [-6, -7],
+      [-3, 11],
+      [-8, -10],
+      [0, 26],
+      [2, 12],
+      [4, 1]
+    ],
+    [
+      [7782, 5024],
+      [-5, -4],
+      [0, 20],
+      [5, -16]
+    ],
+    [
+      [7769, 5060],
+      [4, -12],
+      [-4, 1],
+      [-5, 11],
+      [5, 0]
+    ],
+    [
+      [8501, 5041],
+      [-3, 3],
+      [-3, 21],
+      [4, 3],
+      [2, -27]
+    ],
+    [
+      [8483, 5079],
+      [15, 1],
+      [11, -2],
+      [-2, -3],
+      [-24, -4],
+      [0, 8]
+    ],
+    [
+      [8620, 5085],
+      [2, -15],
+      [-6, -6],
+      [-14, 10],
+      [10, 9],
+      [8, 2]
+    ],
+    [
+      [8458, 5089],
+      [22, -6],
+      [0, -9],
+      [-8, -3],
+      [-7, 2],
+      [-10, -6],
+      [-1, 20],
+      [4, 2]
+    ],
+    [
+      [8762, 5091],
+      [20, -3],
+      [6, -5],
+      [14, -4],
+      [-11, -5],
+      [-15, 5],
+      [-14, 12]
+    ],
+    [
+      [7940, 5097],
+      [5, -5],
+      [4, -17],
+      [0, -18],
+      [4, -16],
+      [14, -6],
+      [-5, -8],
+      [-2, -12],
+      [4, -10],
+      [-22, 15],
+      [0, 21],
+      [-3, 4],
+      [-1, 14],
+      [-18, 4],
+      [0, 8],
+      [7, 9],
+      [-3, 5],
+      [9, 9],
+      [2, -13],
+      [3, 1],
+      [-2, 12],
+      [4, 3]
+    ],
+    [
+      [8550, 5100],
+      [9, -9],
+      [-6, -5],
+      [-11, -3],
+      [-5, 6],
+      [1, 9],
+      [6, 8],
+      [6, -6]
+    ],
+    [
+      [8421, 5116],
+      [1, -14],
+      [3, 9],
+      [6, -1],
+      [0, -10],
+      [-4, -5],
+      [-3, 6],
+      [-1, -12],
+      [-3, 18],
+      [-6, -15],
+      [-4, 10],
+      [3, 13],
+      [8, 1]
+    ],
+    [
+      [8044, 5127],
+      [4, -10],
+      [-9, -8],
+      [0, 18],
+      [5, 0]
+    ],
+    [
+      [7746, 5129],
+      [7, -31],
+      [4, -7],
+      [-2, -11],
+      [-9, 6],
+      [-9, 29],
+      [3, 13],
+      [6, 1]
+    ],
+    [
+      [8636, 5129],
+      [4, -8],
+      [-2, -16],
+      [-7, 6],
+      [-3, 15],
+      [8, 3]
+    ],
+    [
+      [8634, 5139],
+      [-7, -9],
+      [-4, 6],
+      [11, 3]
+    ],
+    [
+      [8761, 5145],
+      [12, -2],
+      [9, -20],
+      [6, -4],
+      [-7, -7],
+      [-7, 2],
+      [-4, 22],
+      [-3, -4],
+      [-6, 13]
+    ],
+    [
+      [8536, 5138],
+      [-5, 0],
+      [3, 9],
+      [2, -9]
+    ],
+    [
+      [8915, 5033],
+      [0, -218],
+      [-3, -12],
+      [3, -17],
+      [0, -128]
+    ],
+    [
+      [8915, 4658],
+      [-10, 18],
+      [-4, 12],
+      [-15, 28],
+      [-17, -5],
+      [-3, 6],
+      [-7, -8],
+      [-1, 19],
+      [5, 19],
+      [-4, 4],
+      [-7, 18],
+      [13, -3],
+      [-12, 8],
+      [-4, 13],
+      [10, 2],
+      [-8, 7],
+      [1, 5],
+      [-7, 13],
+      [-3, 32],
+      [-8, 7],
+      [0, 12],
+      [-4, 8],
+      [-15, 20],
+      [-21, 12],
+      [-18, 18],
+      [-14, 4],
+      [-7, -1],
+      [-16, 20],
+      [1, 11],
+      [-4, -6],
+      [-5, 9],
+      [-1, -9],
+      [-5, 7],
+      [1, 8],
+      [-6, -4],
+      [-4, 14],
+      [-3, -5],
+      [0, 28],
+      [6, 6],
+      [-1, 9],
+      [-6, -11],
+      [0, -14],
+      [-7, -21],
+      [1, -8],
+      [-5, -11],
+      [-7, -3],
+      [-6, 11],
+      [-2, 14],
+      [6, 8],
+      [-9, 15],
+      [-3, 12],
+      [-6, 8],
+      [-6, -2],
+      [-2, 12],
+      [5, 5],
+      [10, -2],
+      [4, -6],
+      [9, 18],
+      [7, 5],
+      [7, -10],
+      [8, 7],
+      [4, 12],
+      [-1, 9],
+      [-7, -8],
+      [-11, 2],
+      [-16, -6],
+      [-4, 7],
+      [-6, -5],
+      [-8, 11],
+      [-4, 22],
+      [-5, 11],
+      [-9, 2],
+      [-5, -3],
+      [-7, 4],
+      [3, 13],
+      [5, 6],
+      [0, 18],
+      [7, 5],
+      [8, 0],
+      [10, 17],
+      [8, 5],
+      [8, -1],
+      [12, -10],
+      [6, -11],
+      [17, 0],
+      [5, -8],
+      [-4, -5],
+      [7, -22],
+      [-1, -12],
+      [-4, -7],
+      [2, -39],
+      [5, -10],
+      [3, -17],
+      [1, 17],
+      [5, -3],
+      [1, -23],
+      [5, -17],
+      [6, -6],
+      [11, 0],
+      [2, 7],
+      [10, 16],
+      [1, 11],
+      [9, 14],
+      [3, 18],
+      [9, -2],
+      [14, 10],
+      [-3, 16],
+      [19, 18],
+      [4, 0],
+      [11, -13],
+      [9, -4],
+      [5, -10],
+      [7, -3],
+      [20, -21],
+      [10, 3],
+      [16, -10],
+      [-2, -6],
+      [8, 0]
+    ],
+    [
+      [7903, 5160],
+      [0, -12],
+      [-8, 7],
+      [6, 9],
+      [2, -4]
+    ],
+    [
+      [8544, 5159],
+      [1, -17],
+      [6, 0],
+      [-1, -9],
+      [-5, 6],
+      [-5, -3],
+      [0, 10],
+      [-5, 11],
+      [6, 9],
+      [3, -7]
+    ],
+    [
+      [8533, 5168],
+      [1, -14],
+      [-4, -1],
+      [0, 14],
+      [3, 1]
+    ],
+    [
+      [7735, 5153],
+      [-4, 0],
+      [3, 16],
+      [1, -16]
+    ],
+    [
+      [7881, 5163],
+      [-8, -1],
+      [3, 8],
+      [5, -7]
+    ],
+    [
+      [8633, 5183],
+      [14, -10],
+      [-2, -13],
+      [-6, 2],
+      [-11, 13],
+      [8, -16],
+      [-6, -1],
+      [-1, 8],
+      [-9, 2],
+      [-2, 9],
+      [15, 6]
+    ],
+    [
+      [7737, 5167],
+      [-5, 8],
+      [0, 8],
+      [5, -16]
+    ],
+    [
+      [7904, 5183],
+      [11, -16],
+      [-7, 4],
+      [-8, -1],
+      [4, 13]
+    ],
+    [
+      [7850, 5240],
+      [4, 0],
+      [7, -11],
+      [-14, -1],
+      [-1, 20],
+      [4, -8]
+    ],
+    [
+      [7861, 5243],
+      [2, -12],
+      [-8, 11],
+      [-5, -1],
+      [5, 9],
+      [6, -7]
+    ],
+    [
+      [7892, 5248],
+      [-1, -8],
+      [-5, 3],
+      [6, 5]
+    ],
+    [
+      [7904, 5252],
+      [2, -10],
+      [-2, -11],
+      [-3, 13],
+      [-6, -3],
+      [2, 9],
+      [7, 2]
+    ],
+    [
+      [7845, 5238],
+      [-6, 7],
+      [-1, 17],
+      [3, 2],
+      [5, -9],
+      [-1, -17]
+    ],
+    [
+      [7704, 5270],
+      [3, -2],
+      [6, -18],
+      [6, -7],
+      [-2, -28],
+      [-4, 1],
+      [-3, 14],
+      [-5, 7],
+      [-8, 26],
+      [7, 7]
+    ],
+    [
+      [7839, 5273],
+      [7, -4],
+      [0, -13],
+      [-10, 11],
+      [-2, 10],
+      [5, -4]
+    ],
+    [
+      [8473, 5279],
+      [5, -11],
+      [-3, -3],
+      [-6, -26],
+      [-5, -5],
+      [-7, -25],
+      [-24, -11],
+      [-11, 3],
+      [-4, 10],
+      [-24, 0],
+      [-12, -4],
+      [-6, 6],
+      [-13, -7],
+      [-11, 7],
+      [-10, -4],
+      [-7, -19],
+      [-3, -19],
+      [3, -26],
+      [4, -13],
+      [5, -1],
+      [5, -12],
+      [2, -17],
+      [13, 1],
+      [2, 12],
+      [8, 18],
+      [5, -3],
+      [13, 0],
+      [1, 9],
+      [15, -2],
+      [7, 4],
+      [-7, 4],
+      [10, 6],
+      [9, -5],
+      [0, -20],
+      [-3, -4],
+      [-4, 11],
+      [-9, -3],
+      [-8, -23],
+      [-9, -17],
+      [-12, -6],
+      [-3, -12],
+      [-10, 8],
+      [0, -8],
+      [8, -15],
+      [5, -3],
+      [11, -32],
+      [7, -26],
+      [-5, -8],
+      [-1, -14],
+      [13, -17],
+      [-1, -9],
+      [7, -3],
+      [0, -15],
+      [-4, -6],
+      [-4, 6],
+      [-14, -7],
+      [-2, -7],
+      [2, -12],
+      [-12, 1],
+      [-5, 9],
+      [1, 25],
+      [3, 8],
+      [-8, 7],
+      [-13, 25],
+      [0, 9],
+      [5, 10],
+      [1, 26],
+      [-8, 8],
+      [-17, -20],
+      [6, -16],
+      [0, -25],
+      [-2, -12],
+      [1, -36],
+      [2, -7],
+      [-4, -14],
+      [-1, -14],
+      [5, -24],
+      [-15, -2],
+      [-4, -8],
+      [-11, 16],
+      [0, 14],
+      [3, 7],
+      [0, 18],
+      [4, 19],
+      [0, 23],
+      [-5, 19],
+      [2, 12],
+      [-6, 3],
+      [-10, -8],
+      [-3, 14],
+      [2, 27],
+      [-4, 0],
+      [1, 13],
+      [3, -1],
+      [7, 11],
+      [-1, 15],
+      [3, 13],
+      [4, 2],
+      [-2, 14],
+      [0, 26],
+      [5, 11],
+      [1, 11],
+      [7, 11],
+      [1, 50],
+      [3, 16],
+      [4, 4],
+      [-1, 10],
+      [9, 8],
+      [7, -3],
+      [6, 14],
+      [0, 15],
+      [3, 3],
+      [10, -7],
+      [5, 3],
+      [0, -9],
+      [5, -4],
+      [8, 2],
+      [8, -5],
+      [7, 1],
+      [10, -12],
+      [4, 8],
+      [19, -6],
+      [8, 1],
+      [10, 8],
+      [9, 23],
+      [10, 19],
+      [2, -4]
+    ],
+    [
+      [7825, 5301],
+      [0, -16],
+      [-7, -2],
+      [-2, 18],
+      [9, 0]
+    ],
+    [
+      [8556, 5309],
+      [-6, -20],
+      [5, -6],
+      [0, -25],
+      [-11, -20],
+      [3, -8],
+      [6, 3],
+      [0, 8],
+      [7, 8],
+      [-3, 5],
+      [3, 9],
+      [11, 11],
+      [4, -1],
+      [-1, -29],
+      [-11, -9],
+      [0, -14],
+      [11, -6],
+      [0, -13],
+      [-20, 8],
+      [-3, -10],
+      [1, -20],
+      [5, -25],
+      [10, -24],
+      [-11, 11],
+      [-5, 20],
+      [-5, 6],
+      [1, 34],
+      [-4, 4],
+      [-2, 38],
+      [-3, 10],
+      [4, 12],
+      [0, 12],
+      [4, 16],
+      [10, 15]
+    ],
+    [
+      [8571, 5333],
+      [3, -7],
+      [-3, -21],
+      [-8, -7],
+      [-3, 16],
+      [5, 13],
+      [6, 6]
+    ],
+    [
+      [7663, 5350],
+      [2, -7],
+      [14, -20],
+      [-5, 0],
+      [-14, 13],
+      [-4, 9],
+      [7, 5]
+    ],
+    [
+      [8268, 5370],
+      [-4, 6],
+      [4, 4],
+      [0, -10]
+    ],
+    [
+      [8489, 5385],
+      [-4, -3],
+      [0, 16],
+      [4, -13]
+    ],
+    [
+      [8269, 5423],
+      [5, -1]
+    ],
+    [
+      [8274, 5422],
+      [-2, -7],
+      [-3, 8]
+    ],
+    [
+      [8008, 5418],
+      [2, -16],
+      [-2, -7],
+      [-8, 11],
+      [-1, 9],
+      [7, 11],
+      [2, -8]
+    ],
+    [
+      [8265, 5422],
+      [-5, 1],
+      [11, -21],
+      [-1, -10],
+      [-15, -1],
+      [7, -13],
+      [-5, -10],
+      [11, -13],
+      [-4, -4],
+      [16, -37],
+      [-8, -15],
+      [1, -8],
+      [7, -13],
+      [9, -10],
+      [10, -16],
+      [6, -14],
+      [-7, -9],
+      [-16, 4],
+      [-8, 12],
+      [4, -17],
+      [-6, 2],
+      [-6, -18],
+      [-4, -26],
+      [2, -2],
+      [-3, -17],
+      [1, -14],
+      [4, 4],
+      [-3, -14],
+      [4, -4],
+      [-9, -8],
+      [-1, 5],
+      [-7, -22],
+      [-14, -16],
+      [1, -8],
+      [-9, -10],
+      [6, 1],
+      [-2, -24],
+      [6, 0],
+      [-2, -19],
+      [-4, -2],
+      [0, -18],
+      [-5, -7],
+      [-6, -36],
+      [-38, -32],
+      [0, 28],
+      [-14, 23],
+      [-6, -9],
+      [-9, 3],
+      [0, 12],
+      [-6, -6],
+      [-9, 20],
+      [-3, -10],
+      [3, -3],
+      [-14, -16],
+      [-9, 6],
+      [-7, -11],
+      [-4, -1],
+      [1, 27],
+      [-4, 17],
+      [0, -10],
+      [-4, -4],
+      [-7, 5],
+      [-9, -9],
+      [-7, 6],
+      [-2, -5],
+      [-3, 12],
+      [-7, -8],
+      [-6, 62],
+      [-5, 8],
+      [3, 3],
+      [2, 20],
+      [-4, 16],
+      [-7, 11],
+      [-7, 4],
+      [-2, -4],
+      [-7, 21],
+      [0, 34],
+      [5, -2],
+      [-5, 14],
+      [-5, 4],
+      [0, 20],
+      [3, 50],
+      [7, 9],
+      [1, 14],
+      [9, 9]
+    ],
+    [
+      [8045, 5303],
+      [-3, -16],
+      [3, -12],
+      [17, -35],
+      [7, -8],
+      [8, 3],
+      [2, 6],
+      [10, 4],
+      [7, -6],
+      [9, 2],
+      [8, 7],
+      [2, 18],
+      [8, 7],
+      [15, 0],
+      [-2, -8],
+      [9, -3],
+      [11, -8],
+      [7, 12],
+      [16, -1],
+      [5, 12],
+      [1, 13],
+      [3, 2],
+      [-1, 20],
+      [12, 14],
+      [-4, 12],
+      [1, 10],
+      [5, 10],
+      [6, -1],
+      [4, 65],
+      [5, 11],
+      [6, -4],
+      [3, 5],
+      [7, -4],
+      [10, 4],
+      [13, 0],
+      [10, -12]
+    ],
+    [
+      [8523, 5442],
+      [2, -13],
+      [-3, -14],
+      [-4, -2],
+      [2, 32],
+      [3, -3]
+    ],
+    [
+      [7652, 5506],
+      [11, -6],
+      [4, -11],
+      [10, -6],
+      [12, 4],
+      [10, -8],
+      [9, 6],
+      [11, -21],
+      [3, -16],
+      [6, -9],
+      [0, -16],
+      [13, -17],
+      [3, -9],
+      [6, -5],
+      [20, -26],
+      [7, -15],
+      [-1, -13],
+      [3, -5],
+      [3, 6],
+      [6, -23],
+      [14, -21],
+      [-2, 19],
+      [6, 1],
+      [8, -16],
+      [1, -14],
+      [10, -6],
+      [12, -18],
+      [1, -19],
+      [7, -15],
+      [13, -3],
+      [5, -14],
+      [-13, -13],
+      [8, 1],
+      [12, 15],
+      [11, -13],
+      [2, -18],
+      [-7, 0],
+      [-6, -21],
+      [7, -4],
+      [-5, -5],
+      [1, -12],
+      [4, -12],
+      [9, -1],
+      [7, -6],
+      [6, 2],
+      [2, -16],
+      [1, -28],
+      [4, -14],
+      [7, -5],
+      [-1, -9],
+      [8, -5],
+      [13, -1],
+      [0, -13],
+      [5, -6],
+      [0, -10],
+      [6, -4],
+      [2, -14],
+      [-6, -14],
+      [-1, -15],
+      [3, -5],
+      [-4, -25],
+      [2, -13],
+      [0, -26],
+      [-2, -53],
+      [-7, 2],
+      [-7, 19],
+      [-3, -6],
+      [0, -12],
+      [-8, 6],
+      [-9, 11],
+      [-1, -4],
+      [5, -19],
+      [-4, -3],
+      [-3, 11],
+      [-10, 17],
+      [-5, 19],
+      [-7, 10],
+      [-11, 12],
+      [-28, 46],
+      [-1, 17],
+      [-17, 23],
+      [-8, 29],
+      [-9, 16],
+      [-5, 17],
+      [2, 7],
+      [-9, 34],
+      [0, 8],
+      [-5, 3],
+      [1, 11],
+      [-9, 30],
+      [-9, 14],
+      [0, 13],
+      [-4, 9],
+      [-9, 10],
+      [-5, 1],
+      [-1, 21],
+      [-9, 45],
+      [0, 20],
+      [-3, 0],
+      [-7, 14],
+      [-5, 2],
+      [-9, 14],
+      [-7, 6],
+      [-2, 27],
+      [-5, 5],
+      [-4, 14],
+      [-3, 5],
+      [-8, 23],
+      [-11, 6],
+      [-8, 21],
+      [-6, 5],
+      [-13, 28],
+      [-5, 27],
+      [-3, 6],
+      [0, 17],
+      [8, 2]
+    ],
+    [
+      [4872, 8298],
+      [-4, 5],
+      [8, 13],
+      [4, -7],
+      [-8, -11]
+    ],
+    [
+      [7606, 5598],
+      [2, -16],
+      [-2, -11],
+      [-5, 16],
+      [0, 9],
+      [5, 2]
+    ],
+    [
+      [7571, 5804],
+      [0, -12],
+      [-5, 0],
+      [-1, 12],
+      [6, 0]
+    ],
+    [
+      [7583, 5964],
+      [1, -29],
+      [-3, 1],
+      [1, -36],
+      [-3, -2],
+      [1, -13],
+      [-5, -6],
+      [2, -9],
+      [-2, -25],
+      [-5, 13],
+      [5, 34],
+      [0, 29],
+      [2, 1],
+      [0, 26],
+      [6, 16]
+    ],
+    [
+      [7448, 6428],
+      [-4, 1],
+      [4, 13],
+      [0, -14]
+    ],
+    [
+      [7248, 6922],
+      [-16, -24],
+      [0, -12],
+      [-5, -9],
+      [1, -17],
+      [-7, -14],
+      [9, -14],
+      [9, -1],
+      [7, -10],
+      [9, -6],
+      [2, -11],
+      [15, -17],
+      [6, 3],
+      [11, -14],
+      [7, 2],
+      [1, -11],
+      [12, -4],
+      [18, 0],
+      [8, 4],
+      [6, -8],
+      [8, -2],
+      [1, -18],
+      [8, -3],
+      [10, -14],
+      [9, 7],
+      [7, -16],
+      [4, 5],
+      [9, -3],
+      [11, -11],
+      [7, 7],
+      [9, -11],
+      [13, 6],
+      [7, -5],
+      [4, 17],
+      [0, 13],
+      [-6, 11],
+      [2, 24],
+      [3, 21]
+    ],
+    [
+      [7703, 6808],
+      [0, -19],
+      [-13, -15],
+      [0, -11],
+      [7, -21],
+      [-7, 6],
+      [-4, 10],
+      [-21, -9],
+      [-2, -10],
+      [-14, -19],
+      [-9, -5],
+      [-2, -21],
+      [4, -12],
+      [-4, -6],
+      [0, -10],
+      [-10, -18],
+      [-2, -16],
+      [3, -3],
+      [-2, -22],
+      [-3, -2],
+      [-6, -22],
+      [-5, -27],
+      [-11, 9],
+      [-11, -2],
+      [4, -18],
+      [-2, -30],
+      [-9, -21],
+      [2, -34],
+      [-3, 1],
+      [-1, -12],
+      [-8, 9],
+      [-3, -10]
+    ],
+    [
+      [7473, 6457],
+      [-4, -11],
+      [5, -18],
+      [-6, 2],
+      [-4, -6],
+      [-2, 22],
+      [-5, -3],
+      [-1, -16],
+      [-7, 0],
+      [-1, 26],
+      [-8, -18],
+      [-21, -14],
+      [-8, -19],
+      [6, -28],
+      [-7, -10],
+      [-4, -16],
+      [-4, -3],
+      [-6, -16],
+      [-19, -10],
+      [-5, 9],
+      [-5, -13],
+      [5, 1],
+      [-15, -26],
+      [-9, -26],
+      [-13, -29],
+      [-9, -8],
+      [-6, -10],
+      [-9, -22],
+      [-21, -21],
+      [-6, -16],
+      [3, -5],
+      [-1, -14],
+      [-6, -9],
+      [-11, -8],
+      [-10, 4],
+      [-4, -3],
+      [-1, -20],
+      [-10, -15],
+      [-1, 10],
+      [-6, -1],
+      [-9, -10],
+      [-3, -17],
+      [-2, -18],
+      [3, -24],
+      [-1, -30],
+      [3, -29],
+      [-5, -4],
+      [7, -9],
+      [0, -14],
+      [-3, -37],
+      [-8, -24],
+      [-4, -26],
+      [2, -16],
+      [0, -46],
+      [1, -17],
+      [-15, 0],
+      [-2, -15],
+      [-8, -21],
+      [-2, -13],
+      [5, -9],
+      [-20, -12],
+      [-5, -12],
+      [-2, -22],
+      [-2, -8],
+      [-16, -16],
+      [-7, 6],
+      [-11, 22],
+      [-7, 19],
+      [-6, 25],
+      [-3, 32],
+      [4, -10],
+      [0, 11],
+      [-6, 7],
+      [-2, 18],
+      [-6, 30],
+      [-1, 14],
+      [-9, 36],
+      [-9, 17],
+      [-6, 25],
+      [-6, 34],
+      [-2, 33],
+      [-8, 39],
+      [-1, 14],
+      [-7, 14],
+      [-2, 12],
+      [-4, 5],
+      [0, 15],
+      [-3, 4],
+      [-4, 24],
+      [-4, 8],
+      [-5, 29],
+      [-1, 37],
+      [-5, 30],
+      [-6, 45],
+      [1, 7],
+      [-3, 22],
+      [-1, 23],
+      [-3, 24],
+      [2, 33],
+      [4, 12],
+      [-2, 36],
+      [-3, -4],
+      [-3, 11],
+      [2, 16],
+      [12, 11],
+      [-16, -3],
+      [2, 14],
+      [-2, 14],
+      [9, 5],
+      [-13, 4],
+      [-2, -15],
+      [-8, -7],
+      [8, -18],
+      [-6, -25],
+      [-17, -17],
+      [-14, -11],
+      [-5, 0],
+      [-10, 9],
+      [-11, 17],
+      [-15, 33],
+      [-15, 29],
+      [0, 10],
+      [7, 1],
+      [0, -9],
+      [14, 12],
+      [3, -3],
+      [9, 7],
+      [7, 23],
+      [-10, -1],
+      [-9, -10],
+      [-13, 5],
+      [-11, 10],
+      [-9, 15],
+      [-4, 19],
+      [-6, 14]
+    ],
+    [
+      [6893, 6556],
+      [5, 7],
+      [10, 0],
+      [0, 19],
+      [13, -3],
+      [11, 2],
+      [5, -7],
+      [6, 0],
+      [3, 8],
+      [13, 7],
+      [0, -8],
+      [6, -3],
+      [9, 10],
+      [-4, 12],
+      [3, 3],
+      [-5, 27],
+      [-6, 14],
+      [0, 17],
+      [-10, 1],
+      [-6, 14],
+      [2, 35],
+      [-9, 2],
+      [-10, 11],
+      [1, 17],
+      [10, 20],
+      [6, 22],
+      [7, 12],
+      [6, 1],
+      [4, -16],
+      [4, -2],
+      [9, 7],
+      [20, 8],
+      [0, 9],
+      [8, 16],
+      [5, 21],
+      [16, 16],
+      [9, 29],
+      [3, 22],
+      [12, 8],
+      [4, 7],
+      [-2, 10],
+      [6, 11],
+      [6, 19],
+      [10, 12],
+      [-4, 2],
+      [3, 17],
+      [-2, 24],
+      [7, 10],
+      [14, 8],
+      [1, 10],
+      [-8, 8],
+      [-11, 2],
+      [0, 14],
+      [-9, 2],
+      [0, 13],
+      [-9, 10],
+      [4, 22],
+      [-5, 5],
+      [1, 10],
+      [7, 10],
+      [-9, 1],
+      [1, 16],
+      [-5, 3],
+      [4, 19],
+      [13, 6],
+      [7, -5],
+      [16, -2],
+      [11, -9],
+      [11, 11],
+      [17, 3],
+      [3, 10],
+      [5, 1],
+      [4, 11]
+    ],
+    [
+      [7140, 7205],
+      [20, 22]
+    ],
+    [
+      [4825, 8298],
+      [2, -37],
+      [6, -29],
+      [-6, -16],
+      [-4, -28],
+      [-10, 1],
+      [-8, -4],
+      [-12, 0],
+      [-5, -10],
+      [-7, 0],
+      [-4, -8],
+      [-7, -1],
+      [-12, -14],
+      [-20, 0],
+      [-11, -8],
+      [10, 14],
+      [-20, -4],
+      [12, 13],
+      [-11, -6],
+      [-7, 10],
+      [13, 14],
+      [-15, -2],
+      [5, 10],
+      [13, -2],
+      [-1, 11],
+      [8, 12],
+      [-10, -5],
+      [12, 12],
+      [5, 21],
+      [10, 8],
+      [-16, -2],
+      [-14, 9],
+      [-3, 9],
+      [6, 13],
+      [0, 24],
+      [-5, 4],
+      [22, 4],
+      [23, -3],
+      [-5, 4],
+      [12, 9],
+      [3, 8],
+      [-15, -1],
+      [-2, 7],
+      [10, 6],
+      [2, 18],
+      [15, 2],
+      [6, -6],
+      [4, 17],
+      [13, -9],
+      [-9, -9]
+    ],
+    [
+      [6560, 6732],
+      [-4, -9],
+      [-5, 0],
+      [-16, -12],
+      [0, 7],
+      [13, 7],
+      [13, 13],
+      [-1, -6]
+    ],
+    [
+      [6357, 7396],
+      [3, -38],
+      [4, -9],
+      [9, -7],
+      [13, -2],
+      [9, -5],
+      [2, -13],
+      [21, -24],
+      [23, -9],
+      [43, 18],
+      [16, -4],
+      [-3, 30]
+    ],
+    [
+      [6497, 7333],
+      [8, -1],
+      [16, 11],
+      [1, 13],
+      [9, 13],
+      [9, 7],
+      [24, 0],
+      [3, 10],
+      [17, -4],
+      [5, 4],
+      [3, -17],
+      [23, -10],
+      [8, -9],
+      [10, 3],
+      [11, -10],
+      [10, -21],
+      [13, -7],
+      [8, -22],
+      [23, 0],
+      [2, -31],
+      [-3, -8],
+      [4, -5],
+      [0, -15]
+    ],
+    [
+      [6689, 6902],
+      [14, -27],
+      [0, -8],
+      [6, -21],
+      [10, -20],
+      [14, -8],
+      [5, -10],
+      [5, -1],
+      [-1, -12],
+      [2, -18],
+      [-1, -26],
+      [11, 2],
+      [4, -8],
+      [-4, -17],
+      [0, -11],
+      [-12, 0],
+      [-12, -7],
+      [-2, -10],
+      [-11, -7],
+      [-7, -59]
+    ],
+    [
+      [6710, 6634],
+      [-5, -8],
+      [-10, 9],
+      [-12, 4],
+      [-1, 9],
+      [-5, -6],
+      [-24, 3],
+      [-2, 4],
+      [-12, -4],
+      [-6, 10],
+      [-7, 2],
+      [-14, -2],
+      [-4, 8],
+      [-17, 5],
+      [-4, 19],
+      [-4, 42],
+      [-6, 17],
+      [-11, 3],
+      [-8, -2],
+      [-5, -8],
+      [-9, -4],
+      [-3, -11],
+      [-6, 2],
+      [-13, -17],
+      [-11, 5],
+      [-3, 7],
+      [-17, 0],
+      [-8, 16],
+      [-10, 6],
+      [-13, 16],
+      [-4, 16],
+      [-12, 11],
+      [-9, -1],
+      [-8, 6],
+      [-9, 35],
+      [0, 12],
+      [-8, 13],
+      [2, 10],
+      [-6, 0],
+      [1, 16],
+      [-15, 30],
+      [0, 10],
+      [-5, 6],
+      [-11, -12],
+      [-2, 9],
+      [-7, -1],
+      [-9, 13],
+      [8, -1],
+      [0, 9],
+      [-9, -8],
+      [1, -20],
+      [-11, -4]
+    ],
+    [
+      [6347, 6908],
+      [-3, 15],
+      [-11, 14],
+      [0, 31],
+      [-9, 0],
+      [0, 23],
+      [4, 21],
+      [-9, 22],
+      [-5, 19],
+      [-6, -1],
+      [-14, 21],
+      [-16, 15],
+      [4, 5],
+      [-4, 15],
+      [-11, 15],
+      [-5, 22],
+      [3, 14],
+      [-4, 8],
+      [2, 8],
+      [6, -3],
+      [-2, 9],
+      [7, 21],
+      [7, 2],
+      [1, 7],
+      [-6, 16],
+      [1, 10],
+      [6, 2],
+      [-4, 9],
+      [-6, -3],
+      [-14, 14],
+      [-3, 21],
+      [-5, 0],
+      [-1, 18],
+      [-6, 5],
+      [2, 12],
+      [-3, 7]
+    ],
+    [
+      [6243, 7322],
+      [0, 10],
+      [-6, 6],
+      [1, 17],
+      [-10, 17],
+      [6, 20],
+      [-4, 0],
+      [-3, 45],
+      [-5, 13],
+      [11, 4],
+      [4, 19],
+      [7, -7]
+    ],
+    [
+      [6347, 6908],
+      [-13, 5],
+      [-3, -3]
+    ],
+    [
+      [6331, 6910],
+      [-7, 6],
+      [-9, 0],
+      [-6, -5],
+      [-8, -33],
+      [-9, -20]
+    ],
+    [
+      [6292, 6858],
+      [-5, -2],
+      [-46, 8],
+      [-62, 91],
+      [-11, 18],
+      [-47, 49],
+      [-34, 10]
+    ],
+    [
+      [6087, 7032],
+      [4, 8],
+      [-7, 3],
+      [0, 11],
+      [-8, 51]
+    ],
+    [
+      [6076, 7105],
+      [4, 3],
+      [43, 44],
+      [14, 11],
+      [7, 22],
+      [1, 40],
+      [3, 8],
+      [-2, 23]
+    ],
+    [
+      [6146, 7256],
+      [0, 0]
+    ],
+    [
+      [6146, 7256],
+      [0, 20],
+      [3, 10],
+      [13, 5],
+      [15, 26],
+      [-1, 3]
+    ],
+    [
+      [6176, 7320],
+      [6, 2],
+      [6, 13],
+      [9, 0],
+      [10, -7],
+      [12, -2],
+      [8, 4],
+      [1, -18],
+      [11, 12],
+      [4, -2]
+    ],
+    [
+      [4554, 9014],
+      [7, -14],
+      [12, -7],
+      [12, 13],
+      [-4, -20],
+      [10, 2],
+      [-2, -20],
+      [12, 4],
+      [0, -8],
+      [21, -10],
+      [-4, -10],
+      [6, -8],
+      [-13, -25],
+      [-13, -4],
+      [-2, -15],
+      [-24, -8],
+      [-39, -26],
+      [-31, -6],
+      [-1, -11],
+      [-23, -7],
+      [-27, 8],
+      [-12, 0],
+      [-28, 20],
+      [-42, -4],
+      [4, 9],
+      [14, 4],
+      [10, 10],
+      [2, 11],
+      [-13, -6],
+      [-9, 29],
+      [-32, 1],
+      [-11, -4],
+      [-3, 8],
+      [23, 2],
+      [15, 8],
+      [25, -2],
+      [-21, 7],
+      [22, 16],
+      [-39, 7],
+      [-20, -9],
+      [-18, 6],
+      [7, 8],
+      [12, -7],
+      [-8, 15],
+      [17, -5],
+      [-9, 12],
+      [10, 17],
+      [20, -8],
+      [-5, 7],
+      [9, 16],
+      [11, -11],
+      [25, -14],
+      [-2, -19],
+      [9, -29],
+      [0, 13],
+      [9, 15],
+      [9, -10],
+      [5, 13],
+      [-5, 20],
+      [9, 3],
+      [13, -22],
+      [6, -1],
+      [-1, 19],
+      [22, 6],
+      [16, -26],
+      [-6, 27],
+      [10, -1],
+      [10, -11],
+      [12, 14],
+      [6, -6],
+      [13, 3],
+      [-3, 19],
+      [15, 2]
+    ],
+    [
+      [5993, 7068],
+      [-6, -5],
+      [0, -15]
+    ],
+    [
+      [5987, 7048],
+      [-10, 8],
+      [-6, -14],
+      [0, -19],
+      [6, -9],
+      [-7, -11],
+      [-2, -14],
+      [10, 1],
+      [5, 6]
+    ],
+    [
+      [5983, 6996],
+      [0, -9]
+    ],
+    [
+      [5983, 6987],
+      [0, -6]
+    ],
+    [
+      [5983, 6981],
+      [1, -8]
+    ],
+    [
+      [5984, 6973],
+      [-8, -34],
+      [0, -21],
+      [-6, -33]
+    ],
+    [
+      [5970, 6885],
+      [-2, -4]
+    ],
+    [
+      [5951, 6980],
+      [8, 18],
+      [-2, 4]
+    ],
+    [
+      [5957, 7002],
+      [7, 21],
+      [6, 44],
+      [5, 21]
+    ],
+    [
+      [5975, 7088],
+      [10, 0],
+      [1, 9],
+      [8, 10]
+    ],
+    [
+      [5994, 7107],
+      [-1, -9],
+      [3, -19],
+      [-3, -11]
+    ],
+    [
+      [5434, 7386],
+      [-12, -29],
+      [-3, -25],
+      [6, -18],
+      [-6, -11],
+      [1, -8],
+      [-10, 1],
+      [-8, 6],
+      [-3, 10],
+      [-7, 8],
+      [-7, -1],
+      [-25, 27],
+      [-10, 1],
+      [-4, 6],
+      [0, 19],
+      [7, 6],
+      [6, -6],
+      [4, 10],
+      [7, 1],
+      [10, -13],
+      [9, 4],
+      [9, -2],
+      [17, 10],
+      [4, -4],
+      [12, 11],
+      [3, -3]
+    ],
+    [
+      [5256, 7557],
+      [8, -6],
+      [8, -34],
+      [-5, -14],
+      [3, -13],
+      [-2, -30],
+      [-6, -24],
+      [-10, 6],
+      [-5, -19],
+      [-8, 0],
+      [-7, 17],
+      [5, 39],
+      [-4, 1],
+      [2, 23],
+      [-5, 17],
+      [-4, 0],
+      [2, 16],
+      [8, -2],
+      [9, 6],
+      [11, 17]
+    ],
+    [
+      [5380, 7862],
+      [-9, -16],
+      [7, -7],
+      [-4, -8],
+      [3, -12],
+      [8, -10],
+      [-5, -1]
+    ],
+    [
+      [5380, 7808],
+      [1, 7],
+      [-18, 1],
+      [-3, -5],
+      [-16, -12],
+      [-4, 2],
+      [-1, -16],
+      [9, -13],
+      [-6, -7],
+      [-2, -13],
+      [2, -18],
+      [8, -16],
+      [9, -7],
+      [19, -21],
+      [12, -54],
+      [18, -28],
+      [12, -11],
+      [25, 0],
+      [4, -9],
+      [-8, -15],
+      [19, -17],
+      [13, -7],
+      [14, -18],
+      [13, -8],
+      [0, -6],
+      [12, -15],
+      [2, -10],
+      [-4, -18],
+      [-9, 6],
+      [-5, 23],
+      [-11, 0],
+      [-14, 11],
+      [-11, -25],
+      [-2, -21],
+      [9, -5],
+      [9, -11],
+      [-1, -29],
+      [-11, -1],
+      [-5, -8],
+      [1, -18],
+      [-8, -10],
+      [-8, -20],
+      [-10, 4],
+      [0, 15],
+      [5, 3],
+      [3, 12],
+      [-3, 8],
+      [9, 5],
+      [2, 12],
+      [-4, 8],
+      [-2, 21],
+      [-4, 6],
+      [-2, 20],
+      [-7, 11],
+      [-5, -5],
+      [-12, 13],
+      [2, 8],
+      [-6, 18],
+      [-8, 1],
+      [-5, 8],
+      [-7, 3],
+      [-10, 22],
+      [-10, 1],
+      [-8, -3],
+      [-5, 11],
+      [-7, 2],
+      [-12, 24],
+      [-10, 10],
+      [-8, 18],
+      [-10, 5],
+      [-3, 12],
+      [-9, 9],
+      [1, 6],
+      [-8, 2],
+      [1, 18],
+      [-7, 17],
+      [0, 14],
+      [-5, 13],
+      [-7, 1],
+      [-16, 17],
+      [-15, 5],
+      [-14, -19],
+      [-3, -11],
+      [-17, -6]
+    ],
+    [
+      [5344, 7711],
+      [0, 0]
+    ],
+    [
+      [5345, 7596],
+      [0, 0]
+    ],
+    [
+      [2849, 6246],
+      [15, -3],
+      [3, -8],
+      [12, -7],
+      [4, -14],
+      [-9, -3],
+      [-10, 6],
+      [-1, -7],
+      [-6, 3],
+      [-1, -11],
+      [-7, 10],
+      [-8, -1],
+      [-7, 10],
+      [-3, 10],
+      [-8, 2],
+      [5, 12],
+      [10, 5],
+      [11, -4]
+    ],
+    [
+      [6087, 7032],
+      [-4, -6],
+      [-57, -30],
+      [15, -28],
+      [13, -29],
+      [-9, -10],
+      [-4, -18],
+      [-21, -8],
+      [-7, -22],
+      [-12, -17],
+      [-31, 9]
+    ],
+    [
+      [5970, 6873],
+      [0, 12]
+    ],
+    [
+      [5984, 6973],
+      [-1, 8]
+    ],
+    [
+      [5983, 6987],
+      [4, 0],
+      [0, 25]
+    ],
+    [
+      [5987, 7012],
+      [0, 36]
+    ],
+    [
+      [5993, 7068],
+      [7, -5],
+      [10, -16],
+      [12, -3],
+      [54, 61]
+    ],
+    [
+      [8563, 6721],
+      [-5, -10],
+      [-7, -5],
+      [-4, -21],
+      [0, 20],
+      [7, 8],
+      [-3, 7],
+      [7, -1],
+      [4, 12],
+      [1, -10]
+    ],
+    [
+      [8603, 6820],
+      [-13, -15],
+      [0, 9],
+      [11, 11],
+      [2, -5]
+    ],
+    [
+      [8624, 6937],
+      [5, -5],
+      [-7, -8],
+      [2, 13]
+    ],
+    [
+      [8639, 6942],
+      [-5, -5],
+      [6, 22],
+      [-1, -17]
+    ],
+    [
+      [8616, 7056],
+      [0, -12],
+      [-6, -7],
+      [1, 18],
+      [5, 1]
+    ],
+    [
+      [8578, 7069],
+      [-1, -10],
+      [-6, 2],
+      [7, 8]
+    ],
+    [
+      [8638, 7135],
+      [3, -16],
+      [7, -3],
+      [9, 6],
+      [1, -15],
+      [-5, -9],
+      [10, 1],
+      [0, -17],
+      [5, -2],
+      [-11, -22],
+      [-6, -38],
+      [0, -16],
+      [-3, -14],
+      [-7, 5],
+      [1, -11],
+      [-12, -13],
+      [2, 20],
+      [-5, 12],
+      [-2, -4],
+      [0, -22],
+      [-9, 5],
+      [4, 18],
+      [-5, 12],
+      [1, 21],
+      [2, -2],
+      [8, 19],
+      [-2, 11],
+      [3, 12],
+      [-5, 15],
+      [-8, 2],
+      [7, -19],
+      [-6, -11],
+      [1, 11],
+      [-10, -10],
+      [-6, 18],
+      [1, 10],
+      [4, -14],
+      [5, -1],
+      [-1, 10],
+      [-11, 11],
+      [1, 10],
+      [6, -2],
+      [18, 22],
+      [2, 9],
+      [6, 4],
+      [7, -3]
+    ],
+    [
+      [8726, 7162],
+      [8, -9],
+      [5, 1],
+      [-1, -13],
+      [4, -10],
+      [-10, -11],
+      [-5, -23],
+      [-8, 15],
+      [-5, 2],
+      [-13, -11],
+      [0, -7],
+      [-7, -11],
+      [-1, -16],
+      [-10, 0],
+      [3, 9],
+      [-6, 1],
+      [-6, 31],
+      [11, 14],
+      [2, 17],
+      [6, 6],
+      [5, -10],
+      [10, 2],
+      [3, 14],
+      [8, 9],
+      [7, 0]
+    ],
+    [
+      [8747, 7160],
+      [-3, -8],
+      [-3, 8],
+      [8, 15],
+      [-2, -15]
+    ],
+    [
+      [8595, 7181],
+      [-2, -23],
+      [-3, 4],
+      [1, 16],
+      [4, 3]
+    ],
+    [
+      [8845, 7375],
+      [1, -10],
+      [-6, -6],
+      [-1, 17],
+      [8, 13],
+      [-2, -14]
+    ],
+    [
+      [8923, 7564],
+      [5, 3],
+      [-1, -34],
+      [2, -14],
+      [8, -11],
+      [5, -22],
+      [4, -26],
+      [-5, -14],
+      [0, -12],
+      [-7, -6],
+      [-5, -25],
+      [1, -17],
+      [-6, 9],
+      [-7, -6],
+      [-3, -24],
+      [3, -14],
+      [-2, -39],
+      [-5, -8],
+      [-5, -19],
+      [-1, -20],
+      [8, -27],
+      [-11, -7],
+      [-2, -21],
+      [-16, -17],
+      [2, 30],
+      [5, 11],
+      [-8, 0],
+      [-4, -12],
+      [1, -16],
+      [-7, 11],
+      [-8, -5],
+      [0, -21],
+      [-9, -16],
+      [-1, 25],
+      [-6, 4],
+      [-6, -11],
+      [-4, -18],
+      [-17, 5],
+      [-15, -6],
+      [7, 9],
+      [-13, 1],
+      [0, 16],
+      [-5, -3],
+      [-3, -22],
+      [9, -9],
+      [1, -10],
+      [-7, 3],
+      [-10, -9],
+      [0, -10],
+      [-6, -8],
+      [-3, -15],
+      [-5, -7],
+      [-10, 5],
+      [-1, 8],
+      [-9, 11],
+      [3, 8],
+      [-3, 14],
+      [10, 17],
+      [-2, 9],
+      [-11, -4],
+      [-6, 7],
+      [-7, 0],
+      [-20, -18],
+      [-10, 1],
+      [-3, -9],
+      [-6, 2],
+      [-15, -9],
+      [-1, 9],
+      [-8, -6],
+      [-2, -24],
+      [-11, 13],
+      [-16, -7],
+      [-4, 7],
+      [-3, -8],
+      [-1, 25],
+      [3, 5],
+      [12, -1],
+      [3, 10],
+      [7, 5],
+      [17, 28],
+      [7, 7],
+      [-1, 9],
+      [17, 8],
+      [5, -8],
+      [24, 6],
+      [7, 7],
+      [11, -2],
+      [8, 7],
+      [-1, -12],
+      [13, -4],
+      [12, 10],
+      [-3, 18],
+      [5, 16],
+      [7, 8],
+      [10, 28],
+      [-1, 26],
+      [11, 10],
+      [6, 1],
+      [-3, -13],
+      [-9, -5],
+      [4, -6],
+      [-2, -13],
+      [10, -6],
+      [3, 10],
+      [21, 13],
+      [10, 12],
+      [10, 29],
+      [14, 15],
+      [1, 16],
+      [9, 23],
+      [3, 24],
+      [4, 10],
+      [1, 17],
+      [-4, 11],
+      [-5, -3],
+      [7, 19],
+      [1, 11],
+      [-5, 13],
+      [5, 10],
+      [7, 3],
+      [1, 26],
+      [9, -5],
+      [3, -20],
+      [3, 9],
+      [8, -6],
+      [3, 19],
+      [-13, -5],
+      [3, 23],
+      [10, -10]
+    ],
+    [
+      [8944, 7799],
+      [15, -24],
+      [4, -13],
+      [19, -27],
+      [11, -7],
+      [0, -6],
+      [12, 0],
+      [3, -7],
+      [13, -4],
+      [15, 25],
+      [1, -8],
+      [-7, -17],
+      [-1, -9],
+      [8, -28],
+      [8, 6],
+      [-4, -12],
+      [-6, 0],
+      [-8, -10],
+      [-27, -4],
+      [-11, -14],
+      [-8, -20],
+      [-3, -23],
+      [-8, 11],
+      [-14, 9],
+      [-8, 11],
+      [-12, 9],
+      [-8, -3],
+      [-12, -15],
+      [-9, 15],
+      [-5, 0],
+      [-6, -18],
+      [12, -8],
+      [13, -20],
+      [-13, -1],
+      [-8, -7],
+      [-6, -13],
+      [-7, 10],
+      [5, 14],
+      [-3, 17],
+      [-7, 6],
+      [3, 26],
+      [12, 7],
+      [5, 11],
+      [-5, 13],
+      [6, 8],
+      [8, -9],
+      [10, -3],
+      [7, 10],
+      [-3, 22],
+      [9, 14],
+      [0, 22],
+      [3, 6],
+      [1, 20],
+      [-6, 23],
+      [3, 12],
+      [9, 3]
+    ],
+    [
+      [6762, 7807],
+      [-15, 8],
+      [-3, 11],
+      [1, 13],
+      [12, 14],
+      [11, -3],
+      [7, -11],
+      [1, -13],
+      [-4, -11],
+      [-10, -8]
+    ],
+    [
+      [7140, 7205],
+      [-9, 31]
+    ],
+    [
+      [6651, 7782],
+      [-20, 19]
+    ],
+    [
+      [6631, 7801],
+      [12, 18],
+      [8, -37]
+    ],
+    [
+      [7227, 7611],
+      [-6, 13],
+      [-15, 4],
+      [-12, 17],
+      [-14, 6],
+      [-14, 0],
+      [-19, 2],
+      [-14, 5],
+      [-13, -5],
+      [-16, 1],
+      [-3, -6],
+      [-13, 2],
+      [-12, 8],
+      [-12, 13],
+      [-21, -10],
+      [-5, -27],
+      [3, -9],
+      [-22, 14],
+      [-27, 9],
+      [-10, -1],
+      [-10, -13],
+      [-5, -15],
+      [3, -3]
+    ],
+    [
+      [6970, 7616],
+      [-6, -3],
+      [-4, -11],
+      [-4, 5],
+      [-9, -16],
+      [-20, -15],
+      [0, -5],
+      [-10, -5],
+      [0, -10],
+      [-13, -17],
+      [1, -19],
+      [-4, 0],
+      [-13, 13],
+      [4, 14],
+      [-5, 7],
+      [-33, -3],
+      [-5, 20],
+      [-2, 30],
+      [-14, 0],
+      [2, 57],
+      [-8, -7],
+      [-8, 26],
+      [-7, 5],
+      [-10, 19],
+      [-12, -10],
+      [-37, 4],
+      [-32, -8],
+      [-23, 38],
+      [-2, 12],
+      [-28, 28]
+    ],
+    [
+      [6668, 7765],
+      [0, 34],
+      [-2, 9],
+      [-7, -1],
+      [3, 20],
+      [17, -5],
+      [8, 16],
+      [12, 7],
+      [2, 14],
+      [-11, 2],
+      [-3, 9],
+      [-13, 3],
+      [-8, -7],
+      [4, -13],
+      [17, 0],
+      [2, -11],
+      [-4, -6],
+      [-24, 2],
+      [-2, 12],
+      [-7, 0],
+      [7, -14],
+      [-3, -17],
+      [-8, -6],
+      [-4, 5],
+      [4, 13],
+      [-15, -3],
+      [-6, -23]
+    ],
+    [
+      [6627, 7805],
+      [-73, -31],
+      [0, -212]
+    ],
+    [
+      [6554, 7562],
+      [-14, -3],
+      [-15, 32],
+      [0, 6],
+      [-20, 23],
+      [-20, -3],
+      [-14, -9],
+      [-15, -21]
+    ],
+    [
+      [6456, 7587],
+      [-1, 20],
+      [6, 15],
+      [3, 22],
+      [-15, 9],
+      [-8, -3],
+      [-6, 18],
+      [-12, 0],
+      [1, 23],
+      [-4, 4],
+      [-8, 33],
+      [-17, 9],
+      [1, 17],
+      [16, -1],
+      [4, -6],
+      [16, -2],
+      [-17, 20],
+      [12, 28],
+      [9, 5],
+      [22, 0],
+      [11, -6],
+      [10, 2],
+      [-15, 10],
+      [0, 6],
+      [9, 18],
+      [4, 40],
+      [-8, 19],
+      [-13, 2],
+      [-10, -10],
+      [-16, 14],
+      [-9, 3],
+      [-12, -11],
+      [-9, -2],
+      [-18, -21],
+      [-13, 2],
+      [-2, -14]
+    ],
+    [
+      [6367, 7850],
+      [-9, 9],
+      [-10, 5],
+      [0, 12],
+      [6, -6],
+      [7, 6],
+      [-9, 19],
+      [-4, 15],
+      [-14, 23],
+      [-11, 0],
+      [-7, 5],
+      [-1, -9],
+      [-7, 7],
+      [0, 26],
+      [-18, 8],
+      [8, 30],
+      [8, 10],
+      [-7, 14],
+      [3, 28],
+      [12, 12],
+      [-1, 14],
+      [9, 9],
+      [22, -37],
+      [13, 11],
+      [-5, 20],
+      [0, 13],
+      [20, 17],
+      [0, 15],
+      [11, 0],
+      [15, 12],
+      [6, 17],
+      [5, 6],
+      [14, -3],
+      [1, -11],
+      [11, -1],
+      [6, 12],
+      [11, 6],
+      [5, -16],
+      [23, 0],
+      [9, -7],
+      [1, -9],
+      [7, -1],
+      [6, -13],
+      [10, -7],
+      [-3, -16],
+      [8, 2],
+      [1, 24],
+      [10, -13],
+      [16, -15],
+      [13, 11],
+      [11, 20],
+      [18, 0],
+      [5, -11],
+      [11, 1],
+      [1, 13],
+      [22, -4],
+      [0, -11],
+      [10, -11],
+      [16, -3],
+      [1, -9],
+      [7, 4],
+      [5, 18],
+      [9, -10],
+      [15, -1],
+      [17, 10],
+      [2, 19],
+      [4, 6],
+      [-7, 11],
+      [-10, 1],
+      [-3, 8],
+      [-16, 3],
+      [3, 8],
+      [-12, 4],
+      [11, 15],
+      [7, 1],
+      [10, 11],
+      [-10, 23],
+      [22, 16],
+      [17, -3],
+      [1, 7],
+      [-13, 9],
+      [-14, 3],
+      [2, 12],
+      [-6, 8],
+      [5, 11],
+      [-6, 3],
+      [12, 10],
+      [4, -6],
+      [43, 7],
+      [25, 14],
+      [25, 5],
+      [9, -4],
+      [-1, 10],
+      [7, 7],
+      [15, -1],
+      [15, 6],
+      [33, 8],
+      [13, 6],
+      [2, 13],
+      [10, 0],
+      [2, 9],
+      [8, -4],
+      [-1, 9],
+      [8, -6],
+      [13, 0],
+      [14, -11],
+      [8, 9],
+      [14, -12],
+      [1, -18],
+      [6, -3],
+      [-1, -23],
+      [-6, 0],
+      [6, -13],
+      [3, 6],
+      [11, -4],
+      [10, 5],
+      [3, 9],
+      [9, -14],
+      [-3, -13],
+      [9, 3],
+      [-4, 10],
+      [11, -1],
+      [3, -8],
+      [11, -2],
+      [8, 7],
+      [-3, -12],
+      [-6, 1],
+      [-6, -17],
+      [6, -8],
+      [13, 12],
+      [14, -10],
+      [1, 12],
+      [9, 9],
+      [7, -2],
+      [12, 11],
+      [-2, 4],
+      [31, 15],
+      [12, 8],
+      [-7, -19],
+      [-8, 1],
+      [3, -9],
+      [34, -36],
+      [7, -11],
+      [42, -97],
+      [12, -38],
+      [15, 7],
+      [-1, 14],
+      [6, 6],
+      [15, -7],
+      [-3, -15],
+      [9, 2],
+      [2, -13],
+      [11, 3],
+      [6, -4],
+      [17, 5],
+      [18, 12],
+      [13, -7],
+      [11, -20],
+      [0, -15],
+      [23, -14],
+      [-2, -7],
+      [9, -19],
+      [19, -1],
+      [6, -7],
+      [12, 20],
+      [0, -10],
+      [12, -22],
+      [7, -9]
+    ],
+    [
+      [6163, 5412],
+      [-17, -50],
+      [-9, -17],
+      [0, -175],
+      [1, -39],
+      [15, -39],
+      [0, -7]
+    ],
+    [
+      [6153, 5085],
+      [-6, -15],
+      [-9, -4],
+      [-4, -20],
+      [-5, -9],
+      [-5, 0],
+      [-9, -13],
+      [2, -12],
+      [-3, -18],
+      [-6, -12],
+      [-3, -25],
+      [-4, -11],
+      [-7, -30],
+      [-6, -3]
+    ],
+    [
+      [6088, 4913],
+      [-21, 33],
+      [-19, 27],
+      [-5, 13],
+      [4, 6],
+      [-1, 14],
+      [-100, 116]
+    ],
+    [
+      [5946, 5122],
+      [3, 12],
+      [-4, 7],
+      [0, 10],
+      [4, 7],
+      [9, -1],
+      [-2, 6],
+      [11, 4],
+      [-4, 11],
+      [-10, -6],
+      [2, -6],
+      [-9, 7],
+      [-3, 12],
+      [1, 12]
+    ],
+    [
+      [5944, 5197],
+      [4, 21],
+      [7, 12],
+      [2, 15],
+      [9, 9],
+      [2, 18],
+      [3, 6],
+      [0, 26],
+      [-3, 18],
+      [2, 3],
+      [-14, 40],
+      [-2, 17],
+      [2, 13],
+      [-8, 5],
+      [-3, 24],
+      [-2, 2]
+    ],
+    [
+      [5943, 5426],
+      [11, 23],
+      [15, 14],
+      [14, 9],
+      [4, -7],
+      [2, -16],
+      [8, 0]
+    ],
+    [
+      [7045, 7454],
+      [-13, -5],
+      [-15, 2],
+      [-9, -5],
+      [-2, -6],
+      [-5, 10],
+      [-7, -7],
+      [-2, 12],
+      [-8, 8],
+      [-12, -11],
+      [-8, -1],
+      [-4, 11],
+      [-36, -5],
+      [-2, 14],
+      [7, 20],
+      [14, 6],
+      [18, -12],
+      [1, 7],
+      [8, 8]
+    ],
+    [
+      [6970, 7500],
+      [12, 3],
+      [11, -7],
+      [9, 15],
+      [8, -3],
+      [0, 14],
+      [7, -6],
+      [4, 9],
+      [10, 8],
+      [-13, 3],
+      [-5, 9],
+      [-9, -1],
+      [0, 10],
+      [-8, 0],
+      [-6, 22],
+      [-1, -10],
+      [-6, -2],
+      [0, -13],
+      [-6, -1],
+      [-12, 7],
+      [-4, 14],
+      [-4, -4],
+      [-9, 10],
+      [8, 7],
+      [22, 29],
+      [-8, 3]
+    ],
+    [
+      [6976, 7489],
+      [-6, 4],
+      [2, -14],
+      [4, 10]
+    ],
+    [
+      [6993, 7480],
+      [0, 0]
+    ],
+    [
+      [6961, 7477],
+      [0, 0]
+    ],
+    [
+      [7901, 5783],
+      [-6, 7],
+      [-11, 2],
+      [-7, -4],
+      [-3, 5],
+      [5, 13],
+      [0, 15],
+      [-4, 5],
+      [-3, -16],
+      [-9, 2],
+      [-2, 38],
+      [-3, 3]
+    ],
+    [
+      [7858, 5853],
+      [0, 7],
+      [-6, 22],
+      [0, 22],
+      [-6, 7],
+      [0, 21],
+      [-3, 7],
+      [-2, 25],
+      [6, 0],
+      [10, 26],
+      [1, 11],
+      [9, 8],
+      [12, 5],
+      [9, -5],
+      [5, 3],
+      [11, -2],
+      [5, 4],
+      [6, -3],
+      [2, -10],
+      [4, 8]
+    ],
+    [
+      [7921, 6009],
+      [3, -14],
+      [13, -1],
+      [3, -9],
+      [6, -1],
+      [2, 7],
+      [-6, 19],
+      [7, 7],
+      [6, -2],
+      [3, 6],
+      [8, -14],
+      [4, 0],
+      [8, 11],
+      [5, 2],
+      [2, 10]
+    ],
+    [
+      [7985, 6030],
+      [0, -14],
+      [-3, -2],
+      [-2, -19],
+      [3, -10],
+      [0, -10],
+      [5, -22],
+      [-5, -20],
+      [4, -24],
+      [-2, -15],
+      [-2, -6],
+      [-4, 5],
+      [-8, -14],
+      [-8, -7],
+      [-8, -1],
+      [0, -17],
+      [-11, 7],
+      [-4, -13],
+      [-1, -15],
+      [9, -13],
+      [1, -17],
+      [-9, 3],
+      [-3, 10],
+      [-10, -2],
+      [-3, -7],
+      [-7, 6],
+      [1, -11],
+      [-6, -13],
+      [-9, 0],
+      [-2, -6]
+    ],
+    [
+      [627, 5299],
+      [5, -18],
+      [-8, 8],
+      [3, 10]
+    ],
+    [
+      [8522, 7115],
+      [1, -14],
+      [-17, -6],
+      [-2, 8],
+      [5, 8],
+      [13, 4]
+    ],
+    [
+      [8508, 7172],
+      [1, -8],
+      [-7, 2],
+      [6, 6]
+    ],
+    [
+      [8575, 7196],
+      [-1, -14],
+      [-5, 11],
+      [6, 3]
+    ],
+    [
+      [8518, 7361],
+      [8, 22],
+      [5, 6],
+      [27, 0],
+      [7, 17]
+    ],
+    [
+      [8565, 7406],
+      [7, -27],
+      [14, -31],
+      [6, -25],
+      [4, -25],
+      [-2, -7],
+      [-1, -33],
+      [4, -6],
+      [-2, -25],
+      [-9, -23],
+      [-18, 0],
+      [-1, -15],
+      [-3, 6],
+      [-17, 1],
+      [-2, -20],
+      [-4, 14],
+      [0, -13],
+      [-5, -9],
+      [-3, 13],
+      [-6, -5],
+      [-3, -11],
+      [-4, 3],
+      [-4, -10],
+      [-2, 15],
+      [-7, 2],
+      [0, 9],
+      [6, -7],
+      [2, 11],
+      [-4, 1],
+      [-2, 18],
+      [2, 17],
+      [6, 9],
+      [-4, 4],
+      [8, 7],
+      [-7, 10],
+      [5, 1],
+      [-5, 11],
+      [-1, 31],
+      [-3, 8],
+      [3, 12],
+      [7, -1],
+      [-6, 42],
+      [4, 3]
+    ],
+    [
+      [5598, 7616],
+      [-9, -9],
+      [-3, 6],
+      [-10, -8],
+      [0, -11],
+      [-5, 0]
+    ],
+    [
+      [5557, 7633],
+      [8, 15]
+    ],
+    [
+      [5565, 7648],
+      [9, 17],
+      [-2, 6],
+      [14, -7],
+      [8, -19],
+      [10, -5],
+      [-6, -24]
+    ],
+    [
+      [6338, 6909],
+      [5, -15],
+      [-4, -7],
+      [-5, 12],
+      [4, 10]
+    ],
+    [
+      [6345, 6826],
+      [-22, 0],
+      [-6, 27],
+      [-25, 5]
+    ],
+    [
+      [6331, 6910],
+      [7, -26],
+      [-6, 2],
+      [-7, -12],
+      [10, -1],
+      [2, -19],
+      [8, -28]
+    ],
+    [
+      [7836, 6473],
+      [2, -9],
+      [8, -12],
+      [6, -22],
+      [2, 9],
+      [5, -5],
+      [0, -9],
+      [-2, -23],
+      [7, -19],
+      [15, -11],
+      [2, 8],
+      [9, 10],
+      [5, -4],
+      [9, -13],
+      [-1, -9],
+      [-6, -3],
+      [9, -6],
+      [0, -8],
+      [7, -2],
+      [0, -11],
+      [-2, -10],
+      [-9, -12],
+      [-8, 6],
+      [-4, -15],
+      [-6, -7],
+      [18, -21],
+      [4, -8],
+      [9, -5],
+      [5, -6],
+      [-2, -12],
+      [6, -14],
+      [5, 0],
+      [7, -30],
+      [13, -24],
+      [9, -17],
+      [0, -18],
+      [4, -11],
+      [5, 5],
+      [4, -14],
+      [8, -12],
+      [4, -1],
+      [-1, -8],
+      [-6, -5],
+      [2, -12],
+      [7, -8],
+      [5, -12],
+      [-5, -33]
+    ],
+    [
+      [7921, 6009],
+      [9, 11],
+      [0, 20],
+      [1, 5],
+      [-3, 11],
+      [3, 6],
+      [2, 24],
+      [-5, 5],
+      [0, 13],
+      [-11, 7],
+      [0, 8],
+      [-8, 15],
+      [0, 29],
+      [2, 20],
+      [-3, 9],
+      [-7, 7],
+      [-6, 14],
+      [-7, 24],
+      [-18, 8],
+      [-2, -10],
+      [-9, -15],
+      [-9, -6],
+      [-16, 16],
+      [-4, -9],
+      [-19, -26],
+      [-4, -7],
+      [-5, 6],
+      [3, 19],
+      [4, 9],
+      [0, 17],
+      [-3, 3],
+      [5, 14],
+      [0, 15],
+      [3, 7],
+      [-3, 6],
+      [-1, 19],
+      [2, 7],
+      [-12, 2],
+      [-2, -7],
+      [-7, 0],
+      [-3, 9],
+      [3, 29],
+      [-5, 15],
+      [-6, -5]
+    ],
+    [
+      [7780, 6353],
+      [0, 15],
+      [7, 14],
+      [4, -1],
+      [0, 13],
+      [6, 16],
+      [3, 0],
+      [9, 14]
+    ],
+    [
+      [5975, 7088],
+      [14, 52],
+      [1, 19],
+      [9, 12],
+      [0, 7]
+    ],
+    [
+      [5999, 7178],
+      [13, -3],
+      [4, -23],
+      [-9, -14],
+      [2, -8],
+      [-6, 2],
+      [-6, -12],
+      [3, -5],
+      [-6, -8]
+    ],
+    [
+      [4790, 5433],
+      [-19, 13],
+      [-21, 22],
+      [-9, 12],
+      [-21, 40],
+      [-9, 19],
+      [-12, 7],
+      [-1, 10],
+      [-14, 13],
+      [-3, 12]
+    ],
+    [
+      [4681, 5581],
+      [3, 14],
+      [6, 12],
+      [15, 23],
+      [0, 16],
+      [8, 8],
+      [1, 17]
+    ],
+    [
+      [5693, 6449],
+      [0, -115],
+      [-27, 0],
+      [0, -28]
+    ],
+    [
+      [5666, 6306],
+      [-66, 66],
+      [-3, 4],
+      [-45, 45],
+      [-34, 36],
+      [-45, 45],
+      [-30, 31],
+      [-27, -26]
+    ],
+    [
+      [5416, 6507],
+      [-22, -22],
+      [-20, 33],
+      [-42, 19]
+    ],
+    [
+      [5264, 6924],
+      [10, 7],
+      [11, 30],
+      [-5, 31],
+      [6, 17],
+      [5, 1],
+      [10, 22],
+      [19, 18],
+      [-2, 10],
+      [1, 34]
+    ],
+    [
+      [5319, 7094],
+      [10, -6],
+      [12, -14],
+      [15, -2],
+      [14, 6],
+      [6, -6],
+      [17, -5],
+      [8, -12],
+      [20, -6],
+      [5, -13],
+      [0, -14],
+      [7, -25],
+      [4, -7],
+      [17, -9],
+      [10, 0],
+      [18, -8],
+      [23, -18],
+      [3, -7],
+      [18, -22],
+      [8, 0],
+      [14, 14],
+      [10, 24],
+      [1, 18],
+      [-6, 24],
+      [0, 16],
+      [3, 12],
+      [15, 24],
+      [14, 13],
+      [10, 1],
+      [5, 7],
+      [21, -3],
+      [21, -14],
+      [-1, -18],
+      [6, -6],
+      [19, -7],
+      [2, -5],
+      [25, -2],
+      [5, -18]
+    ],
+    [
+      [3307, 5973],
+      [-4, 11],
+      [5, 10],
+      [-1, -21]
+    ],
+    [
+      [7235, 5735],
+      [7, -13],
+      [17, -49],
+      [5, -36],
+      [5, -8],
+      [4, -24],
+      [0, -20],
+      [-2, -22],
+      [-12, -22],
+      [-22, -17],
+      [-9, 5],
+      [-4, 7],
+      [-7, 43],
+      [-1, 50],
+      [1, 40],
+      [2, 10],
+      [0, 17],
+      [6, 17],
+      [-2, 7],
+      [4, 10],
+      [6, 1],
+      [-14, 10],
+      [2, 7],
+      [7, -3],
+      [7, -10]
+    ],
+    [
+      [5798, 3530],
+      [6, -12],
+      [10, -10],
+      [3, -14],
+      [-4, -17],
+      [-5, -7],
+      [1, -10],
+      [-8, -9],
+      [-13, -4],
+      [-5, -7],
+      [-4, -22],
+      [-8, 2],
+      [-16, 35],
+      [-5, 22],
+      [8, 6],
+      [12, 35],
+      [8, 2],
+      [4, 10],
+      [13, 8],
+      [3, -8]
+    ],
+    [
+      [5582, 8366],
+      [-1, 0]
+    ],
+    [
+      [5581, 8366],
+      [1, 0]
+    ],
+    [
+      [5652, 8289],
+      [0, 9],
+      [-14, 16],
+      [-6, -1]
+    ],
+    [
+      [5632, 8313],
+      [-3, 6],
+      [5, 24],
+      [-8, 11],
+      [-15, 1],
+      [-21, 9]
+    ],
+    [
+      [5590, 8364],
+      [-6, 32],
+      [0, 16]
+    ],
+    [
+      [5584, 8412],
+      [8, 9],
+      [22, 11],
+      [15, -4],
+      [8, 3],
+      [29, -5],
+      [4, -4],
+      [22, 8],
+      [5, -12],
+      [15, -2],
+      [26, -28]
+    ],
+    [
+      [5759, 8496],
+      [14, -14],
+      [-6, -26],
+      [14, -17],
+      [0, -23]
+    ],
+    [
+      [5584, 8412],
+      [-2, 19],
+      [2, 24],
+      [10, 12],
+      [0, 15],
+      [8, 15],
+      [22, 11],
+      [18, -21],
+      [4, -17],
+      [12, -7],
+      [19, 15],
+      [-2, 37]
+    ],
+    [
+      [3249, 6221],
+      [-2, 2]
+    ],
+    [
+      [3247, 6223],
+      [2, -2]
+    ],
+    [
+      [4851, 7247],
+      [2, -14],
+      [14, -21],
+      [11, -5],
+      [19, 8],
+      [6, -5],
+      [15, 7]
+    ],
+    [
+      [4919, 7214],
+      [2, -9],
+      [17, -2]
+    ],
+    [
+      [4758, 6776],
+      [-3, 0],
+      [1, -30],
+      [-18, -3],
+      [-7, -11],
+      [-16, -2],
+      [-9, 7],
+      [-10, 1],
+      [-13, -7],
+      [2, -15],
+      [-4, -6],
+      [-8, -25],
+      [-8, -3],
+      [-4, -23],
+      [-3, -30],
+      [-3, -13],
+      [-6, -12],
+      [-12, -16],
+      [-6, -22],
+      [-16, -16],
+      [-4, -13],
+      [-6, -53],
+      [0, -16],
+      [-12, -26],
+      [1, -7],
+      [-4, -14],
+      [-11, -4],
+      [-22, 4],
+      [-18, -1],
+      [-12, -4]
+    ],
+    [
+      [4527, 6416],
+      [1, 21],
+      [4, 20],
+      [10, 13],
+      [4, 26],
+      [5, 11],
+      [-2, 5],
+      [13, 42],
+      [-4, 0],
+      [8, 12],
+      [11, 26],
+      [5, 4],
+      [5, 17],
+      [0, 22],
+      [10, 45],
+      [0, 9],
+      [9, 16],
+      [7, 4],
+      [10, 14],
+      [10, 53],
+      [7, 16],
+      [24, 8],
+      [16, 14],
+      [11, 23],
+      [15, 15],
+      [21, 49],
+      [5, 19],
+      [1, 14],
+      [-7, 13],
+      [0, 26],
+      [2, 26],
+      [3, 11],
+      [9, 18],
+      [3, 24],
+      [-1, 7],
+      [11, 17],
+      [10, 23],
+      [26, 19],
+      [21, 25],
+      [15, 48],
+      [2, 15],
+      [9, 39],
+      [14, 7]
+    ],
+    [
+      [5206, 7702],
+      [-2, -1]
+    ],
+    [
+      [5783, 7801],
+      [-3, 21],
+      [1, 26],
+      [3, 22],
+      [-4, 18],
+      [-6, 5],
+      [-17, 36],
+      [-10, 30],
+      [-8, 3]
+    ],
+    [
+      [5739, 7962],
+      [20, 10],
+      [14, -2],
+      [6, -9],
+      [21, -8],
+      [10, -13],
+      [-1, -25],
+      [7, -10],
+      [5, 2],
+      [0, -20],
+      [10, -9],
+      [-1, -16],
+      [6, -9],
+      [-15, 0],
+      [-3, 6],
+      [-7, -6],
+      [-1, 9],
+      [-7, -4],
+      [1, -26],
+      [-13, -19],
+      [0, -11],
+      [-8, -1]
+    ],
+    [
+      [6384, 4200],
+      [0, 8],
+      [5, 14],
+      [-5, -22]
+    ],
+    [
+      [6370, 4487],
+      [-2, -11],
+      [7, -4],
+      [1, -18],
+      [7, -8],
+      [4, -13],
+      [-1, -9],
+      [5, -25],
+      [3, -37],
+      [0, -29],
+      [8, -27],
+      [-4, -34],
+      [-3, -9],
+      [-6, 7],
+      [-3, 25],
+      [-8, -7],
+      [3, -23],
+      [-2, -5],
+      [5, -11],
+      [-1, -25],
+      [-5, -13],
+      [-6, -24],
+      [2, -29],
+      [-4, -39],
+      [-3, -11],
+      [-10, -59],
+      [-2, -19],
+      [-7, -32],
+      [-3, -29],
+      [-10, -57],
+      [-4, -16],
+      [-2, -24],
+      [-7, -48],
+      [-1, -16],
+      [-4, -13],
+      [-8, -47],
+      [-14, -15],
+      [-11, -2],
+      [-13, -11],
+      [-6, -9],
+      [-12, -2],
+      [-11, 17],
+      [-10, 2],
+      [-10, 15],
+      [-2, 20],
+      [-7, 14],
+      [-1, 45],
+      [3, 10],
+      [-4, 6],
+      [-1, 16],
+      [-6, 12],
+      [-4, 36],
+      [3, 27],
+      [4, 6],
+      [0, 17],
+      [7, 4],
+      [11, 46],
+      [4, 7],
+      [6, 29],
+      [-3, 4],
+      [2, 24],
+      [-6, 18],
+      [1, 16],
+      [-6, 22],
+      [-1, 35],
+      [-3, 15],
+      [15, 49],
+      [0, 30],
+      [12, -1],
+      [11, 16],
+      [10, -2],
+      [0, 7],
+      [8, 4],
+      [4, -6],
+      [1, 9],
+      [6, 5],
+      [18, 25],
+      [3, -7],
+      [-3, -10],
+      [7, 2],
+      [-4, 18],
+      [4, 5],
+      [2, 12],
+      [6, 8],
+      [-3, -22],
+      [11, 28],
+      [-3, 11],
+      [3, 11],
+      [4, -2],
+      [3, 11],
+      [-4, 9],
+      [0, 19],
+      [7, -1],
+      [1, -10],
+      [4, -1],
+      [0, 14],
+      [5, 1],
+      [-1, 9],
+      [6, -4],
+      [3, 5],
+      [1, 16],
+      [3, 8],
+      [-2, 22],
+      [3, 13],
+      [5, 4],
+      [3, 18],
+      [2, -8]
+    ],
+    [
+      [2590, 6367],
+      [-7, -17],
+      [2, 17],
+      [5, 0]
+    ],
+    [
+      [1889, 6595],
+      [7, -4],
+      [1, -9],
+      [-8, 13]
+    ],
+    [
+      [1800, 6801],
+      [-5, -1],
+      [5, 12],
+      [0, -11]
+    ],
+    [
+      [1880, 6866],
+      [3, -12],
+      [-3, -16],
+      [-7, 7],
+      [2, 17],
+      [5, 4]
+    ],
+    [
+      [1847, 6884],
+      [4, -14],
+      [5, -1],
+      [2, -17],
+      [-11, 17],
+      [-3, 9],
+      [3, 6]
+    ],
+    [
+      [2186, 6889],
+      [0, -8],
+      [7, -2]
+    ],
+    [
+      [2193, 6879],
+      [11, -20],
+      [1, -12],
+      [9, -31],
+      [6, -12],
+      [9, -27],
+      [7, -6],
+      [-1, -15],
+      [2, -15]
+    ],
+    [
+      [2237, 6741],
+      [3, -16],
+      [3, 2],
+      [2, -14]
+    ],
+    [
+      [2245, 6713],
+      [2, -9],
+      [20, -12],
+      [4, -8],
+      [16, -2],
+      [9, -10],
+      [5, 6]
+    ],
+    [
+      [2301, 6678],
+      [0, -14],
+      [-8, -31],
+      [-6, -38],
+      [-2, -30],
+      [-1, -43],
+      [1, -16],
+      [-4, -22],
+      [3, -29],
+      [5, -34],
+      [15, -57],
+      [9, -17],
+      [9, -27],
+      [3, -25],
+      [5, -5],
+      [1, -9],
+      [7, -19],
+      [7, -4],
+      [11, 2],
+      [5, -9],
+      [6, -2],
+      [8, -21],
+      [10, 3],
+      [16, 11],
+      [17, 3],
+      [15, 13],
+      [10, 2],
+      [6, -12],
+      [10, -3],
+      [6, 17],
+      [-5, 8],
+      [14, 16],
+      [5, 11],
+      [1, 21],
+      [7, 14],
+      [-1, 6],
+      [1, 39],
+      [3, 15],
+      [16, 17],
+      [19, 4],
+      [17, 12],
+      [14, 2],
+      [20, -9],
+      [6, 9],
+      [6, -10],
+      [2, -17],
+      [-3, -16],
+      [-9, -18],
+      [-7, -19],
+      [-1, -19],
+      [-8, -16],
+      [9, -8],
+      [-6, -40],
+      [-3, -10],
+      [-2, -23],
+      [-3, 14],
+      [-4, 3],
+      [2, 18],
+      [-5, -4],
+      [-3, -15]
+    ],
+    [
+      [2437, 6020],
+      [-20, 42],
+      [-19, 33],
+      [-11, 16],
+      [-10, 10],
+      [-1, -6],
+      [-8, 1],
+      [-4, 13],
+      [-5, -9],
+      [9, -4],
+      [-11, -1],
+      [-8, -12],
+      [-15, -9],
+      [-7, -8],
+      [-8, -2],
+      [-15, 10],
+      [-4, 6],
+      [-17, 3],
+      [-8, 13],
+      [-13, 6],
+      [-6, 14],
+      [-5, 0],
+      [-15, 8],
+      [-5, 0],
+      [-5, 9],
+      [-31, 22],
+      [-6, 11],
+      [-13, 14],
+      [-4, 13],
+      [-7, 6],
+      [-5, -4],
+      [-32, 20],
+      [-8, 21],
+      [-9, 14],
+      [-12, 13],
+      [-15, 12],
+      [-3, 14],
+      [-5, 6],
+      [-8, 22],
+      [0, 10],
+      [-4, 8],
+      [3, 8],
+      [10, 6],
+      [-7, 15],
+      [7, 12],
+      [1, 22],
+      [-6, 8],
+      [-7, 23],
+      [-2, 32],
+      [-9, 17],
+      [-15, 34],
+      [-12, 32],
+      [-21, 28],
+      [7, -7],
+      [0, 9],
+      [-5, -1],
+      [-9, 13],
+      [-6, 18],
+      [7, 0],
+      [-22, 24],
+      [0, 5],
+      [-9, -3],
+      [6, 9],
+      [-7, -1],
+      [-8, 9],
+      [0, 14],
+      [4, 9],
+      [0, 19],
+      [-4, 9],
+      [-10, 3],
+      [-5, 23],
+      [-9, 2],
+      [-7, 13],
+      [-2, 26],
+      [2, 3],
+      [-14, 4],
+      [-8, 12],
+      [-5, 13],
+      [-5, 5],
+      [-13, 29],
+      [-2, 20],
+      [-5, 2],
+      [1, 9],
+      [-11, 23],
+      [0, 16],
+      [-10, 36],
+      [3, 20],
+      [-16, 10],
+      [-1, 10],
+      [-7, 6],
+      [-9, -6],
+      [-10, 15],
+      [-8, 2],
+      [0, -41],
+      [4, -8],
+      [3, -27],
+      [-1, -19],
+      [7, -21],
+      [4, -1],
+      [17, -27],
+      [3, -23],
+      [7, -3],
+      [11, -32],
+      [3, -25],
+      [4, -12],
+      [8, -6],
+      [4, -20],
+      [6, -7],
+      [-1, -6],
+      [8, -25],
+      [-3, 20],
+      [8, -10],
+      [0, -9],
+      [5, -13],
+      [1, -29],
+      [9, -25],
+      [10, -36],
+      [-2, -15],
+      [3, -15],
+      [8, -8],
+      [0, 13],
+      [14, -16],
+      [4, -23],
+      [7, -10],
+      [0, -14],
+      [-11, -19],
+      [-7, 0],
+      [-6, 36],
+      [-8, 9],
+      [-12, 22],
+      [-14, 16],
+      [-5, 14],
+      [-4, -3],
+      [-4, 14],
+      [-3, -1],
+      [-2, 25],
+      [3, 3],
+      [0, 27],
+      [-9, 30],
+      [-3, 0],
+      [-17, 21],
+      [-1, 21],
+      [-4, -13],
+      [-10, -1],
+      [-5, 13],
+      [-8, 9],
+      [-10, 6],
+      [0, 9],
+      [-16, 20],
+      [-1, 8],
+      [15, -5],
+      [7, 6],
+      [5, -13],
+      [-1, 17],
+      [2, 28],
+      [-9, 26],
+      [-4, 3],
+      [-12, 26],
+      [-6, 2],
+      [-14, 19],
+      [-4, 12],
+      [0, 19],
+      [-5, 4],
+      [-1, 26],
+      [-7, 9],
+      [0, 11],
+      [-10, 22],
+      [1, 15],
+      [-8, 14],
+      [-6, 28]
+    ],
+    [
+      [1746, 7056],
+      [66, 10],
+      [-1, -12],
+      [46, -30],
+      [58, -37],
+      [79, 0],
+      [0, 26],
+      [46, 0],
+      [11, -20],
+      [8, -8],
+      [14, -26],
+      [6, -4],
+      [7, -12],
+      [6, -21],
+      [-1, -10],
+      [5, -21],
+      [14, -20],
+      [25, -19],
+      [8, 14],
+      [4, 30],
+      [8, 2],
+      [3, 6],
+      [5, -5],
+      [20, -2],
+      [3, -8]
+    ],
+    [
+      [2290, 6649],
+      [-4, -5],
+      [0, -32],
+      [-2, -53],
+      [6, 67],
+      [4, 13],
+      [-4, 10]
+    ],
+    [
+      [5582, 7536],
+      [0, 0]
+    ],
+    [
+      [5586, 7536],
+      [-4, 1]
+    ],
+    [
+      [5581, 7537],
+      [0, 0]
+    ],
+    [
+      [5575, 7539],
+      [-2, 10]
+    ],
+    [
+      [5598, 7616],
+      [20, 7],
+      [2, -4]
+    ],
+    [
+      [5117, 6285],
+      [0, -124],
+      [-1, -33],
+      [-4, -7],
+      [-4, -29],
+      [-11, -17],
+      [0, -8],
+      [-14, 4],
+      [0, -5],
+      [-47, -3],
+      [-9, -17],
+      [-9, -3],
+      [-13, 3],
+      [1, -5]
+    ],
+    [
+      [4683, 5897],
+      [-1, 36],
+      [-6, 21],
+      [-5, -5],
+      [-8, 23],
+      [4, 5],
+      [-2, 28],
+      [-5, 6],
+      [1, 18],
+      [-2, 5]
+    ],
+    [
+      [4659, 6034],
+      [5, -2],
+      [7, 8],
+      [0, 24],
+      [3, 11],
+      [6, 7],
+      [14, -22],
+      [3, -2],
+      [4, 13],
+      [12, 1],
+      [14, -4],
+      [13, 7],
+      [65, 0],
+      [41, 0],
+      [5, 45],
+      [-8, 15],
+      [-1, 33],
+      [-2, 21],
+      [-1, 36],
+      [-2, 22],
+      [-6, 109],
+      [0, 17],
+      [-3, 39],
+      [-6, 104],
+      [0, 14],
+      [-3, 39],
+      [0, 16],
+      [-3, 37],
+      [50, 0]
+    ],
+    [
+      [7737, 5862],
+      [0, -11],
+      [-4, -2],
+      [-1, 13],
+      [5, 0]
+    ],
+    [
+      [7733, 5907],
+      [-2, -14],
+      [-1, 20],
+      [3, -6]
+    ],
+    [
+      [7622, 6095],
+      [-2, 9],
+      [7, 13],
+      [2, -6],
+      [-7, -16]
+    ],
+    [
+      [7710, 6117],
+      [-4, 12],
+      [2, 5],
+      [2, -17]
+    ],
+    [
+      [7602, 6269],
+      [-2, -10],
+      [-5, 9],
+      [7, 1]
+    ],
+    [
+      [7604, 6305],
+      [6, -6],
+      [-6, -6],
+      [-3, 10],
+      [3, 2]
+    ],
+    [
+      [7780, 6353],
+      [-9, 6],
+      [0, -6],
+      [-10, 2],
+      [3, -11],
+      [-6, -6],
+      [-8, 1],
+      [-1, -17],
+      [-21, -7],
+      [-6, 8],
+      [0, -9],
+      [-5, -4],
+      [-2, -10],
+      [1, -18],
+      [-4, -10],
+      [3, -19],
+      [-10, -8],
+      [5, -6],
+      [5, -22],
+      [-2, -10],
+      [11, -23],
+      [4, -17],
+      [7, -8],
+      [-1, -11],
+      [6, -28],
+      [6, 5],
+      [-2, -15],
+      [-7, -3],
+      [0, -40],
+      [-9, -4],
+      [-2, -12],
+      [2, -16],
+      [6, -13],
+      [3, -15],
+      [11, -14],
+      [4, -11],
+      [3, -67],
+      [6, -9],
+      [1, -25],
+      [2, 1],
+      [3, -19],
+      [-6, -12],
+      [-1, -12],
+      [-5, -17],
+      [-6, -8],
+      [0, -8],
+      [-5, -4],
+      [-2, -23]
+    ],
+    [
+      [7742, 5779],
+      [-7, -20],
+      [0, 24],
+      [-1, 18],
+      [7, 10],
+      [1, 45],
+      [-5, 2],
+      [4, 20],
+      [-6, 11],
+      [5, 21],
+      [-3, 32],
+      [-9, 31],
+      [-4, -1],
+      [0, 27],
+      [-3, 9],
+      [-5, 30],
+      [0, 32],
+      [-2, 26],
+      [-4, 14],
+      [2, 25],
+      [-8, -2],
+      [-5, 13],
+      [0, 18],
+      [-3, 12],
+      [-6, 8],
+      [0, -23],
+      [-2, -16],
+      [-5, -11],
+      [-11, 3],
+      [2, -12],
+      [-16, -8],
+      [-2, -16],
+      [-7, -13],
+      [-9, 8],
+      [-6, -4],
+      [0, 12],
+      [-5, -9],
+      [-3, 5],
+      [3, 21],
+      [-12, -19],
+      [-1, 11],
+      [4, 22],
+      [2, 38],
+      [4, 9],
+      [0, 22],
+      [-2, 3],
+      [-2, 30],
+      [-6, 24],
+      [-5, 8],
+      [0, 20],
+      [-2, -4],
+      [-1, -16],
+      [-7, 9],
+      [-6, 22],
+      [9, -10],
+      [6, 14],
+      [-11, 14],
+      [3, 13],
+      [-4, -3],
+      [-6, 11],
+      [-10, -1],
+      [2, 16],
+      [-4, -12],
+      [-5, 6],
+      [5, 4],
+      [-5, 9],
+      [0, -11],
+      [-7, 22],
+      [-3, 3],
+      [-3, 21]
+    ],
+    [
+      [5533, 7690],
+      [8, -17],
+      [11, -8],
+      [13, -12],
+      [0, -5]
+    ],
+    [
+      [5538, 7620],
+      [0, -3]
+    ],
+    [
+      [5537, 7617],
+      [-6, 0],
+      [7, -10]
+    ],
+    [
+      [5537, 7593],
+      [-14, 24],
+      [-10, 8]
+    ],
+    [
+      [8263, 7933],
+      [2, -6],
+      [9, 9],
+      [-4, 10]
+    ],
+    [
+      [7439, 8014],
+      [9, 6],
+      [1, 10],
+      [19, 0],
+      [8, 3],
+      [15, 13],
+      [-2, 11],
+      [25, 18],
+      [5, 0],
+      [8, 12],
+      [11, 0],
+      [12, 16],
+      [9, -2],
+      [7, 10],
+      [7, -10],
+      [9, 6],
+      [2, -10],
+      [33, -2],
+      [3, -22],
+      [8, -10],
+      [8, 1],
+      [15, -8],
+      [9, 7],
+      [21, -9],
+      [11, 2],
+      [9, -10],
+      [7, 11],
+      [15, 6],
+      [5, 15],
+      [2, 14],
+      [-8, 6],
+      [-6, 22],
+      [7, 27],
+      [5, 0],
+      [3, 14],
+      [8, 4],
+      [7, 20],
+      [11, -11],
+      [11, -3],
+      [9, -10],
+      [14, 0],
+      [23, -15],
+      [7, 1],
+      [17, -9],
+      [2, -43],
+      [17, -15],
+      [11, -7],
+      [20, -3],
+      [13, 10],
+      [19, 4],
+      [4, 6],
+      [21, -6],
+      [4, -6],
+      [13, 3],
+      [14, -20],
+      [22, -3],
+      [-1, -15],
+      [17, -20],
+      [16, 1],
+      [31, -10],
+      [3, 4],
+      [9, -6],
+      [20, 14],
+      [18, 1],
+      [11, 8],
+      [10, -2],
+      [8, 5],
+      [3, 12],
+      [27, 27],
+      [17, -1],
+      [17, -20],
+      [9, -1],
+      [12, 8],
+      [12, -5],
+      [3, -6]
+    ],
+    [
+      [5913, 3637],
+      [-22, 0]
+    ],
+    [
+      [5891, 3637],
+      [1, 15],
+      [-3, 17],
+      [1, 16],
+      [-3, 3]
+    ],
+    [
+      [5887, 3688],
+      [1, 16],
+      [0, 71],
+      [-4, 30],
+      [-3, 5],
+      [-6, 24],
+      [1, 14],
+      [-7, 44]
+    ],
+    [
+      [5869, 3892],
+      [31, 64],
+      [-2, 10],
+      [4, 10],
+      [-1, 17],
+      [6, 7],
+      [9, 29],
+      [1, 14],
+      [-6, 6],
+      [1, 36],
+      [-5, 2],
+      [0, 11],
+      [6, 3],
+      [-1, 14],
+      [4, 4],
+      [-2, 36],
+      [3, 14],
+      [-1, 17],
+      [-5, 22],
+      [4, 14],
+      [-7, -1],
+      [-1, 6],
+      [-13, 9],
+      [-9, 1],
+      [-5, 12],
+      [-5, 1],
+      [-7, 10],
+      [-9, -2],
+      [-2, 4],
+      [-13, -1],
+      [0, 21]
+    ],
+    [
+      [5844, 4282],
+      [-1, 18],
+      [-4, 20],
+      [19, 14],
+      [14, 6],
+      [19, 16],
+      [4, 1],
+      [27, 19]
+    ],
+    [
+      [5922, 4376],
+      [6, -21],
+      [7, -13],
+      [1, 6],
+      [17, 6],
+      [5, -11],
+      [2, -41],
+      [-5, -11],
+      [0, -9],
+      [-5, -10],
+      [5, -13],
+      [1, -14],
+      [9, -15],
+      [5, -13],
+      [5, -4],
+      [0, -17],
+      [5, 0],
+      [-2, 38],
+      [4, 19],
+      [9, 2],
+      [3, 5],
+      [1, 35],
+      [-1, 16],
+      [3, 15],
+      [-2, 14],
+      [-21, 54],
+      [-6, 11]
+    ],
+    [
+      [5968, 4405],
+      [-2, 10],
+      [-1, 28],
+      [2, 8],
+      [-4, 14],
+      [0, 16],
+      [6, 10],
+      [2, 25]
+    ],
+    [
+      [5971, 4516],
+      [19, 0],
+      [5, 10],
+      [9, -10],
+      [1, -7],
+      [15, 1],
+      [7, 6],
+      [12, -8],
+      [11, 10],
+      [1, 13],
+      [7, 4],
+      [11, -8],
+      [11, 13],
+      [11, 0],
+      [5, 9],
+      [9, 4],
+      [18, 27]
+    ],
+    [
+      [6123, 4580],
+      [6, -13],
+      [-7, -32],
+      [0, -23],
+      [3, -18],
+      [0, -28],
+      [3, -20],
+      [-6, -8],
+      [5, -1],
+      [-2, -39],
+      [4, -23],
+      [-4, -8],
+      [6, -2],
+      [-3, -8],
+      [6, -5],
+      [0, -22],
+      [-5, -7],
+      [1, -8],
+      [-3, -24],
+      [-13, -26],
+      [-3, -14],
+      [-7, -7],
+      [3, -7],
+      [-21, -26],
+      [-1, -7],
+      [-11, -2],
+      [-16, -16],
+      [-6, -3],
+      [-20, -22],
+      [-11, -32],
+      [-8, -15],
+      [-2, -13],
+      [-5, 5],
+      [1, -12],
+      [-4, 6],
+      [-13, -18],
+      [-6, -17],
+      [-16, -26],
+      [-3, 4],
+      [0, -25],
+      [-3, -12],
+      [6, -15],
+      [3, 0],
+      [4, -39],
+      [4, -16],
+      [2, -20],
+      [-1, -24],
+      [5, 16],
+      [2, -16],
+      [-2, -10],
+      [3, -20],
+      [-7, -50],
+      [6, -4],
+      [-3, -17],
+      [-9, -26],
+      [-13, -11],
+      [-26, -17],
+      [-11, -10],
+      [-12, -16],
+      [-5, -18],
+      [-4, -6],
+      [3, -12],
+      [7, -5],
+      [-1, -33]
+    ],
+    [
+      [4659, 6034],
+      [-6, 12],
+      [-12, 16],
+      [-1, 13],
+      [-8, 8],
+      [-2, 17],
+      [-5, 13],
+      [-10, -2],
+      [-6, 16],
+      [-8, 14],
+      [-16, 0],
+      [-20, -9],
+      [-19, 1],
+      [-1, -15],
+      [-3, -3],
+      [-2, -22]
+    ],
+    [
+      [4540, 6093],
+      [0, 30],
+      [2, 18],
+      [8, 33],
+      [4, 26],
+      [0, 28],
+      [-3, 40],
+      [-5, 20],
+      [-6, 11],
+      [9, 24],
+      [0, 28],
+      [-9, 26],
+      [0, -9],
+      [-5, 11],
+      [-4, 19],
+      [-4, -3],
+      [-1, -16]
+    ],
+    [
+      [4526, 6379],
+      [-1, 6],
+      [3, 26],
+      [55, 0],
+      [55, 0],
+      [0, 15],
+      [-4, 71],
+      [3, 10],
+      [12, 16],
+      [17, 11],
+      [0, 146],
+      [56, 0],
+      [36, 0],
+      [0, 74]
+    ],
+    [
+      [6603, 4026],
+      [2, -11],
+      [-3, -12],
+      [-9, -1],
+      [0, 15],
+      [4, 13],
+      [6, -4]
+    ],
+    [
+      [5969, 4525],
+      [0, 2]
+    ],
+    [
+      [5969, 4527],
+      [0, -2]
+    ],
+    [
+      [5964, 4534],
+      [0, 2]
+    ],
+    [
+      [5964, 4536],
+      [0, -2]
+    ],
+    [
+      [5952, 4624],
+      [-3, 6]
+    ],
+    [
+      [5949, 4630],
+      [3, -6]
+    ],
+    [
+      [5946, 4634],
+      [0, 1]
+    ],
+    [
+      [5946, 4635],
+      [0, -1]
+    ],
+    [
+      [5941, 4623],
+      [2, -16],
+      [8, -22],
+      [-1, -51],
+      [3, -25],
+      [-8, -21],
+      [0, -15],
+      [4, -4],
+      [0, -16],
+      [4, -12],
+      [-1, -26],
+      [2, -9],
+      [7, -10],
+      [-2, -24],
+      [7, -10],
+      [2, 11],
+      [8, -16],
+      [4, 0],
+      [-6, 34],
+      [-6, 2],
+      [0, 12]
+    ],
+    [
+      [5922, 4376],
+      [-7, -1],
+      [-2, 12],
+      [-6, 14],
+      [6, 8],
+      [4, 49],
+      [9, 3],
+      [5, 11],
+      [-4, 0],
+      [-4, 11],
+      [2, 15],
+      [-3, 27],
+      [5, 15],
+      [-4, 17],
+      [7, 6],
+      [5, 11],
+      [-4, 20],
+      [-6, 8],
+      [1, 15],
+      [-4, 12],
+      [-7, 1],
+      [-1, 11]
+    ],
+    [
+      [5914, 4641],
+      [10, -5],
+      [4, -7],
+      [9, 1],
+      [4, -7]
+    ],
+    [
+      [8093, 5320],
+      [-2, 3],
+      [0, 20],
+      [2, -2],
+      [0, -21]
+    ],
+    [
+      [8269, 5423],
+      [5, -1]
+    ],
+    [
+      [7786, 5497],
+      [-1, -11],
+      [-3, 11],
+      [4, 0]
+    ],
+    [
+      [7773, 5553],
+      [-3, -8],
+      [-3, 8],
+      [6, 0]
+    ],
+    [
+      [7834, 5543],
+      [9, -7],
+      [3, -14],
+      [18, -29],
+      [9, -33],
+      [1, -32],
+      [-4, -8],
+      [0, -23],
+      [4, -12],
+      [-2, -6],
+      [1, -32],
+      [10, -15],
+      [3, -23],
+      [8, -23],
+      [1, -24],
+      [-16, 4],
+      [-4, -10],
+      [-5, 15],
+      [-15, 19],
+      [-7, 11],
+      [-10, 9],
+      [-11, 21],
+      [-14, 15],
+      [2, 9],
+      [-2, 17],
+      [-6, 17],
+      [-11, 19],
+      [2, 9],
+      [-4, 6],
+      [1, 21],
+      [-2, 19],
+      [-6, 11],
+      [2, 6],
+      [-2, 23],
+      [0, 26],
+      [-7, 25]
+    ],
+    [
+      [7780, 5554],
+      [2, 15],
+      [4, -9],
+      [12, -7],
+      [2, -11],
+      [7, 1],
+      [0, -19],
+      [-3, -9],
+      [3, -8],
+      [5, 9],
+      [9, 7],
+      [6, -10],
+      [7, 30]
+    ],
+    [
+      [8045, 5303],
+      [0, -10],
+      [8, -13],
+      [9, 1],
+      [16, -8],
+      [6, -6],
+      [0, 16],
+      [5, 22],
+      [0, 18],
+      [4, 0],
+      [2, 16],
+      [5, 8],
+      [11, 2],
+      [20, 10],
+      [9, 9],
+      [12, 33],
+      [7, 12],
+      [6, 19],
+      [1, 16]
+    ],
+    [
+      [8193, 5464],
+      [1, -4]
+    ],
+    [
+      [8198, 5465],
+      [6, 1],
+      [6, 15],
+      [-6, 9],
+      [6, 11],
+      [6, 0],
+      [3, 14],
+      [4, 4],
+      [1, 17],
+      [6, 6],
+      [1, 8],
+      [8, 18],
+      [3, 19],
+      [3, -3],
+      [-2, -22],
+      [6, 8],
+      [3, 15],
+      [4, -2],
+      [1, -18],
+      [7, -3],
+      [6, -10],
+      [-4, -13],
+      [5, -16],
+      [6, 9],
+      [3, -14],
+      [8, -1],
+      [9, -15],
+      [15, -10],
+      [0, -11],
+      [-15, -13],
+      [-7, -1],
+      [-2, 6],
+      [-7, -8],
+      [5, -14],
+      [9, -13],
+      [-18, -12],
+      [-11, 10],
+      [-1, -14]
+    ],
+    [
+      [8256, 5598],
+      [-5, -6],
+      [0, 10],
+      [6, 4],
+      [-1, -8]
+    ],
+    [
+      [5649, 4167],
+      [22, 9],
+      [17, -1],
+      [7, -5],
+      [6, -12]
+    ],
+    [
+      [5554, 3757],
+      [1, -13],
+      [0, -196],
+      [-12, -8],
+      [-2, -9],
+      [-7, -5],
+      [-3, -11],
+      [-11, 7],
+      [-16, -4],
+      [-16, 13],
+      [-5, -1],
+      [-2, 28],
+      [-4, 0],
+      [-3, 11],
+      [-5, -2],
+      [-4, -12],
+      [0, -11],
+      [-8, -7]
+    ],
+    [
+      [5457, 3537],
+      [-5, 4],
+      [-15, 27],
+      [-12, 41],
+      [-2, 21],
+      [-5, 18],
+      [2, 11],
+      [-5, 7],
+      [0, 21],
+      [-3, 11],
+      [-1, 23],
+      [1, 20],
+      [-11, 53],
+      [1, 33],
+      [-2, 25],
+      [3, 10],
+      [-1, 27],
+      [-14, 39],
+      [-4, 18],
+      [-13, 37],
+      [-5, 37],
+      [-3, 3],
+      [-4, 20],
+      [-7, 22],
+      [-3, 18],
+      [-8, 23],
+      [-8, 14],
+      [-5, 21],
+      [-3, 36],
+      [1, 12]
+    ],
+    [
+      [9665, 3952],
+      [5, -3],
+      [-1, -13],
+      [-7, 3],
+      [-2, 12],
+      [5, 1]
+    ],
+    [
+      [9646, 3990],
+      [4, -27],
+      [-9, 7],
+      [-1, 8],
+      [6, 12]
+    ],
+    [
+      [9555, 4026],
+      [7, -13],
+      [6, 0],
+      [16, -24],
+      [5, -3],
+      [11, -30],
+      [7, -3],
+      [15, -20],
+      [4, -10],
+      [11, -14],
+      [2, -10],
+      [-3, -5],
+      [-12, 8],
+      [-2, -4],
+      [-6, 8],
+      [-2, 13],
+      [-4, -1],
+      [-7, 14],
+      [-13, 7],
+      [-4, 13],
+      [-12, 16],
+      [-1, 8],
+      [-6, 6],
+      [-12, 44]
+    ],
+    [
+      [5416, 6507],
+      [4, -53],
+      [1, -34],
+      [12, -31],
+      [-1, -12],
+      [11, -21],
+      [-7, -29],
+      [0, -21],
+      [-6, -142],
+      [-1, -9],
+      [-22, -46],
+      [-12, -29],
+      [-13, -39],
+      [0, -11],
+      [-9, -19],
+      [4, -39]
+    ],
+    [
+      [5377, 5972],
+      [-6, 1],
+      [-4, -10],
+      [-5, 0],
+      [-14, -18],
+      [-2, -10],
+      [-10, 2],
+      [-7, 9],
+      [-12, 6],
+      [-22, 1],
+      [-13, -6],
+      [-7, -7],
+      [-8, -20],
+      [-18, 2],
+      [-10, 7],
+      [-15, 20],
+      [-9, 1],
+      [-10, -12],
+      [-6, 0],
+      [-3, -7],
+      [-7, 4],
+      [-4, 15],
+      [-12, 21],
+      [-3, -3],
+      [-16, 14],
+      [-8, -8],
+      [-12, 2],
+      [-11, -6],
+      [-9, -11],
+      [-1, -28],
+      [-4, -14],
+      [-8, -13],
+      [-1, -25],
+      [1, -21],
+      [-2, -2]
+    ],
+    [
+      [5377, 5972],
+      [13, -36]
+    ],
+    [
+      [5238, 5460],
+      [-5, -4],
+      [-6, 14],
+      [5, -21],
+      [-2, -4],
+      [-17, -3],
+      [-14, 10],
+      [0, -10],
+      [-4, -4],
+      [0, 13],
+      [-4, 2],
+      [3, -18],
+      [-25, -6],
+      [-7, 6],
+      [-8, 17],
+      [-3, 12],
+      [-3, 27],
+      [-4, 8],
+      [-3, 17],
+      [-6, 13],
+      [-13, 20],
+      [-15, 4],
+      [-12, -1],
+      [4, 6],
+      [-5, 2],
+      [0, -9],
+      [-19, -1]
+    ],
+    [
+      [2691, 6046],
+      [-6, -4],
+      [4, -35],
+      [-7, -20],
+      [-4, -40],
+      [2, -21],
+      [-1, -19],
+      [2, -10],
+      [-4, -2],
+      [1, 15],
+      [-5, -4],
+      [4, -12],
+      [-5, -31],
+      [3, 2],
+      [1, -14],
+      [-6, -11],
+      [1, -16],
+      [5, -12]
+    ],
+    [
+      [2619, 5821],
+      [-6, 13],
+      [-12, 18],
+      [-7, 15],
+      [-4, 17],
+      [-26, 41],
+      [4, 10],
+      [6, -5]
+    ],
+    [
+      [5093, 8141],
+      [24, 0]
+    ],
+    [
+      [5162, 8210],
+      [-10, -17],
+      [-10, 7],
+      [15, 13],
+      [5, -3]
+    ],
+    [
+      [5118, 8141],
+      [-21, 6],
+      [1, 7],
+      [9, 1],
+      [7, -11],
+      [-3, 33],
+      [8, 7],
+      [6, 13],
+      [6, 36],
+      [10, -1],
+      [14, 21],
+      [11, 5],
+      [24, 3],
+      [9, -12]
+    ],
+    [
+      [5140, 8230],
+      [7, -10],
+      [-8, -8],
+      [0, -15],
+      [12, -5],
+      [12, 14],
+      [-12, 20],
+      [-2, 13],
+      [-9, -9]
+    ],
+    [
+      [5157, 8665],
+      [-10, 4],
+      [10, 9],
+      [0, -13]
+    ],
+    [
+      [5249, 8849],
+      [3, -8],
+      [-16, -5],
+      [-3, 7],
+      [16, 6]
+    ],
+    [
+      [5244, 8857],
+      [-2, -7],
+      [-13, 0],
+      [15, 7]
+    ],
+    [
+      [5344, 8955],
+      [3, -6],
+      [-12, -11],
+      [9, 17]
+    ],
+    [
+      [5387, 9114],
+      [3, -5],
+      [-17, -6],
+      [5, 13],
+      [9, -2]
+    ],
+    [
+      [5420, 9124],
+      [-11, -11],
+      [-15, -6],
+      [9, 15],
+      [17, 2]
+    ],
+    [
+      [5441, 9154],
+      [2, -15],
+      [8, 12],
+      [8, -5],
+      [-1, -15],
+      [-21, -8],
+      [-4, -7],
+      [-17, -3],
+      [6, 18],
+      [6, 0],
+      [6, 23],
+      [7, 0]
+    ],
+    [
+      [5421, 9152],
+      [6, -15],
+      [-9, -5],
+      [-18, 7],
+      [21, 13]
+    ],
+    [
+      [5439, 9158],
+      [-11, -3],
+      [20, 19],
+      [-9, -16]
+    ],
+    [
+      [5492, 9188],
+      [10, -7],
+      [-3, -14],
+      [-32, -8],
+      [9, 12],
+      [-6, 8],
+      [22, 9]
+    ],
+    [
+      [5523, 9207],
+      [6, -7],
+      [-8, -11],
+      [-17, -2],
+      [5, 15],
+      [14, 5]
+    ],
+    [
+      [5533, 9218],
+      [12, -6],
+      [-15, -10],
+      [-9, 7],
+      [12, 9]
+    ],
+    [
+      [5652, 9249],
+      [5, -8],
+      [-16, -11],
+      [-6, 7],
+      [17, 12]
+    ],
+    [
+      [5649, 9262],
+      [-11, -16],
+      [-24, -4],
+      [7, 13],
+      [17, -3],
+      [11, 10]
+    ],
+    [
+      [5856, 9203],
+      [2, -15],
+      [-17, 4],
+      [-10, -15],
+      [-16, -3],
+      [-11, -16]
+    ],
+    [
+      [5572, 9158],
+      [-14, 0],
+      [7, -8],
+      [-11, -20],
+      [0, -11],
+      [-42, 13],
+      [-8, -3],
+      [1, -19],
+      [-8, -13],
+      [-16, 8],
+      [-15, -11],
+      [-5, -16],
+      [-14, -13],
+      [9, -12],
+      [-1, -10],
+      [-27, -31],
+      [2, -13],
+      [-12, -7],
+      [-15, -1],
+      [3, -17],
+      [-3, -30],
+      [-5, -12],
+      [-20, -30],
+      [14, -8],
+      [1, -15],
+      [-5, -10],
+      [-21, 5],
+      [-15, -8],
+      [-14, -21],
+      [-5, -18],
+      [6, -16],
+      [-4, -24],
+      [7, -20],
+      [-5, -30],
+      [20, -20],
+      [-4, -18],
+      [-13, -4],
+      [10, -29],
+      [-3, -21],
+      [-10, -13],
+      [-7, 0],
+      [-6, -16],
+      [4, -21],
+      [-6, -21],
+      [-5, 6]
+    ],
+    [
+      [5317, 8580],
+      [-2, 7],
+      [-16, 4],
+      [-5, 22],
+      [-5, -3],
+      [1, -15],
+      [-5, -12],
+      [-15, -2],
+      [-28, -36],
+      [-16, -16],
+      [-15, -5],
+      [-30, 5],
+      [4, 7],
+      [-19, 9],
+      [-10, 9],
+      [-4, 11],
+      [2, 18],
+      [14, -10],
+      [-5, 13],
+      [9, 14],
+      [-12, 11],
+      [2, -11],
+      [-10, -4],
+      [-8, 9],
+      [8, 18],
+      [11, 0],
+      [-5, 7],
+      [7, 5],
+      [5, 15],
+      [10, 13],
+      [-13, -9],
+      [-6, -16],
+      [-6, 16],
+      [-6, -8],
+      [-6, 8],
+      [3, 14],
+      [12, -3],
+      [-1, 14],
+      [-10, -9],
+      [-10, 14],
+      [3, 16],
+      [10, 0],
+      [-13, 10],
+      [0, 10],
+      [11, 7],
+      [-11, 5],
+      [11, 16],
+      [33, -6],
+      [-31, 8],
+      [-7, -3],
+      [7, 17],
+      [13, 1],
+      [25, 16],
+      [-12, -3],
+      [12, 13],
+      [22, -8],
+      [-1, 10],
+      [-16, 2],
+      [-2, 12],
+      [10, 5],
+      [7, -6],
+      [16, 2],
+      [4, 11],
+      [12, -2],
+      [-5, 11],
+      [34, 19],
+      [7, -14],
+      [24, 5],
+      [-2, 8],
+      [19, 14],
+      [2, 9],
+      [-18, -7],
+      [2, -9],
+      [-26, -14],
+      [-12, 16],
+      [15, 11],
+      [-3, 9],
+      [14, 10],
+      [12, 17],
+      [13, -11],
+      [0, 17],
+      [11, 5],
+      [4, 17],
+      [19, 3],
+      [-10, 6],
+      [10, 12],
+      [-8, 12],
+      [27, 33],
+      [-8, 8],
+      [9, 16],
+      [12, 10],
+      [-7, 6],
+      [20, 4],
+      [10, 13],
+      [22, -3],
+      [0, 5],
+      [-28, 1],
+      [28, 31],
+      [-15, -9],
+      [4, 15],
+      [30, 7],
+      [-22, 1],
+      [23, 8],
+      [5, -17],
+      [6, 8],
+      [-11, 14],
+      [17, 8],
+      [32, -1],
+      [-9, 8],
+      [-29, -5],
+      [2, 11],
+      [24, 6],
+      [6, 22],
+      [10, 6],
+      [4, 14],
+      [19, 5],
+      [11, 13],
+      [26, 10],
+      [8, -11],
+      [15, 2],
+      [11, 14],
+      [19, -17],
+      [-5, 14],
+      [-18, 15],
+      [28, 3],
+      [20, -6],
+      [5, -14],
+      [11, 25],
+      [29, 23],
+      [0, 11],
+      [37, -7],
+      [-19, -17],
+      [-9, -26],
+      [8, -1],
+      [6, 15],
+      [33, 35],
+      [-3, -34],
+      [17, 22],
+      [11, 6],
+      [-8, 10],
+      [28, 3],
+      [8, -5],
+      [-19, -29],
+      [14, 2],
+      [11, 20],
+      [9, 1],
+      [21, -14],
+      [8, 4],
+      [27, -25],
+      [-16, -2],
+      [-10, -10],
+      [-39, 6],
+      [-3, -4],
+      [29, -8],
+      [-2, -12],
+      [34, 3]
+    ],
+    [
+      [5713, 9281],
+      [11, -11],
+      [-15, -3],
+      [-6, 9],
+      [10, 5]
+    ],
+    [
+      [4778, 9282],
+      [-1, -9],
+      [-15, -2],
+      [16, 11]
+    ],
+    [
+      [5647, 9686],
+      [-7, -11],
+      [38, -10],
+      [-33, -33],
+      [-23, 0],
+      [10, 17],
+      [-53, -6],
+      [22, 27],
+      [-22, 9],
+      [23, 8],
+      [45, -1]
+    ],
+    [
+      [5596, 9708],
+      [21, -5],
+      [1, -13],
+      [-43, -4],
+      [-15, 17],
+      [36, 5]
+    ],
+    [
+      [5313, 9706],
+      [24, -18],
+      [-29, 12],
+      [-16, 19],
+      [13, 4],
+      [8, -17]
+    ],
+    [
+      [5467, 9783],
+      [4, 5],
+      [53, -31],
+      [2, -16],
+      [23, 1],
+      [8, -9],
+      [40, -9],
+      [-5, -12],
+      [-44, -1],
+      [-22, -10],
+      [3, -21],
+      [-18, -4],
+      [-5, -31],
+      [-14, 1],
+      [-11, -30],
+      [-12, -11],
+      [3, -11],
+      [-20, 6],
+      [-35, 25],
+      [-18, 3],
+      [-9, 22],
+      [50, -2],
+      [-31, 7],
+      [59, 9],
+      [-36, 4],
+      [-50, -9],
+      [-5, 19],
+      [40, 3],
+      [17, 12],
+      [27, 1],
+      [-3, 22],
+      [-14, -14],
+      [-16, -1],
+      [-1, 23],
+      [-28, -21],
+      [10, -6],
+      [-25, -10],
+      [-23, -1],
+      [-17, 20],
+      [-20, 10],
+      [21, 16],
+      [-19, 4],
+      [10, 14],
+      [-23, -12],
+      [-16, 26],
+      [31, 17],
+      [9, -10],
+      [47, 12],
+      [-3, -10],
+      [-33, -9],
+      [37, -1],
+      [19, 16],
+      [20, -12],
+      [5, -15],
+      [28, -25],
+      [-14, 23],
+      [-7, 33],
+      [24, 9],
+      [7, -9]
+    ],
+    [
+      [5642, 9812],
+      [113, -16],
+      [-1, -15],
+      [-37, -13],
+      [-5, -13],
+      [-38, -5],
+      [-6, -7],
+      [-32, 2],
+      [-1, 11],
+      [-57, -2],
+      [-32, 10],
+      [22, 8],
+      [39, 1],
+      [0, 7],
+      [-66, -7],
+      [-28, 4],
+      [-12, 23],
+      [33, -5],
+      [33, 19],
+      [53, -25],
+      [3, 26],
+      [19, -3]
+    ],
+    [
+      [9617, 2273],
+      [0, -19],
+      [-6, 6],
+      [6, 13]
+    ],
+    [
+      [9665, 2494],
+      [6, -10],
+      [0, -14],
+      [-12, -2],
+      [-5, -8],
+      [1, 13],
+      [5, 6],
+      [-1, 14],
+      [6, 1]
+    ],
+    [
+      [96, 2665],
+      [10, -1],
+      [-9, -6],
+      [6, -11],
+      [-9, -5],
+      [3, 13],
+      [-9, 8],
+      [8, 2]
+    ],
+    [
+      [9802, 2850],
+      [-4, 0],
+      [-2, -14],
+      [9, -2],
+      [1, -21],
+      [4, -9],
+      [10, 14],
+      [6, 3],
+      [3, -10],
+      [3, 13],
+      [9, -2],
+      [-4, -7],
+      [3, -10],
+      [-6, -8],
+      [6, -18],
+      [-8, -17],
+      [-3, -13],
+      [-9, -13],
+      [-6, -23],
+      [-15, -16],
+      [-1, -24],
+      [9, -5],
+      [1, -9],
+      [-7, -4],
+      [-10, 10],
+      [-7, -9],
+      [-25, -22],
+      [-4, -20],
+      [0, -17],
+      [-7, -15],
+      [-5, -25],
+      [0, -16],
+      [-8, -3],
+      [-17, -24],
+      [-4, -11],
+      [-13, -7],
+      [-11, 0],
+      [-1, 6],
+      [-13, -4],
+      [-5, 16],
+      [-11, -2],
+      [-2, 10],
+      [-8, 3],
+      [-3, -7],
+      [-16, 3],
+      [1, 13],
+      [-9, 0],
+      [0, 10],
+      [9, 6],
+      [-2, 8],
+      [4, 17],
+      [8, -7],
+      [-4, 16],
+      [36, 56],
+      [2, 7],
+      [10, 1],
+      [19, 21],
+      [8, 4],
+      [16, 27],
+      [14, 12],
+      [13, 29],
+      [6, 37],
+      [9, 4],
+      [8, 16],
+      [1, 31],
+      [15, 21],
+      [7, 0]
+    ],
+    [
+      [9872, 3102],
+      [4, -10],
+      [-7, 5],
+      [3, 5]
+    ],
+    [
+      [9807, 3201],
+      [-1, -14],
+      [3, -11],
+      [8, -8],
+      [8, 2],
+      [10, -9],
+      [2, -9],
+      [5, 4],
+      [1, -13],
+      [5, -10],
+      [-2, -23],
+      [9, -16],
+      [-3, -21],
+      [7, -17],
+      [8, 0],
+      [4, -17],
+      [5, 3],
+      [-4, 18],
+      [3, 20],
+      [3, -14],
+      [7, -9],
+      [1, -35],
+      [2, -7],
+      [14, -7],
+      [19, -13],
+      [10, 4],
+      [5, 14],
+      [8, 7],
+      [8, 0],
+      [7, -10],
+      [-6, -15],
+      [-1, -32],
+      [-10, -9],
+      [-2, -34],
+      [-1, 12],
+      [-12, 1],
+      [-10, -8],
+      [-4, -10],
+      [1, -13],
+      [4, -3],
+      [-5, -25],
+      [-8, -21],
+      [-6, -9],
+      [-9, -30],
+      [-8, -14],
+      [-13, -14],
+      [-3, 11],
+      [-9, -1],
+      [-8, 12],
+      [4, 4],
+      [10, 24],
+      [4, 27],
+      [-5, 17],
+      [-15, 10],
+      [-6, 12],
+      [-9, 4],
+      [-6, 8],
+      [1, 14],
+      [22, 19],
+      [3, 41],
+      [4, 20],
+      [-3, 30],
+      [4, 10],
+      [-3, 8],
+      [-8, -6],
+      [-2, 16],
+      [-6, 19],
+      [7, -12],
+      [-2, 22],
+      [-11, 8],
+      [1, -9],
+      [-26, 61],
+      [2, 16],
+      [-12, 29],
+      [10, 1]
+    ],
+    [
+      [6629, 6344],
+      [-1, 12],
+      [8, 19],
+      [-7, -31]
+    ],
+    [
+      [6474, 6141],
+      [-8, 37],
+      [-2, 0],
+      [-11, 55],
+      [-10, 44]
+    ],
+    [
+      [6443, 6277],
+      [13, 8],
+      [52, 37],
+      [19, 12],
+      [9, 56],
+      [9, 61],
+      [-13, 39]
+    ],
+    [
+      [6566, 6621],
+      [6, -28],
+      [6, -15],
+      [10, -17],
+      [31, -18],
+      [8, 2],
+      [6, -11],
+      [13, -39],
+      [7, -13],
+      [8, -2],
+      [0, -17],
+      [-9, -27],
+      [-4, -19],
+      [-12, -17],
+      [-11, -42],
+      [-8, 1],
+      [1, 11],
+      [-5, -3],
+      [-3, -13],
+      [-4, -4],
+      [-1, -20],
+      [-3, -10],
+      [2, -31],
+      [2, -11],
+      [-3, -4],
+      [-15, -2],
+      [-8, -6],
+      [-7, -12],
+      [-3, -28],
+      [-5, -10],
+      [-5, 1],
+      [-21, -7],
+      [-6, -19],
+      [2, -9],
+      [-7, -20],
+      [-8, -3],
+      [-4, 5],
+      [-16, -3],
+      [-12, -14],
+      [-7, 0],
+      [-7, -6]
+    ],
+    [
+      [6557, 6684],
+      [2, 8],
+      [9, -6],
+      [-5, -27]
+    ],
+    [
+      [6893, 6556],
+      [-1, -9],
+      [-8, 10],
+      [-6, -3],
+      [-8, 15],
+      [-5, 42],
+      [-13, 5],
+      [1, 20],
+      [-5, 7],
+      [-3, 13],
+      [-7, 1],
+      [2, -7],
+      [-16, -8],
+      [-13, 2],
+      [-1, -4],
+      [-23, -1],
+      [-19, 6],
+      [-4, -11],
+      [-28, 4],
+      [-5, -6],
+      [-17, -8],
+      [1, 8],
+      [-5, 2]
+    ],
+    [
+      [2729, 5623],
+      [3, -19],
+      [-7, 12],
+      [4, 7]
+    ],
+    [
+      [2836, 5599],
+      [-8, 16],
+      [-7, 31],
+      [5, 4],
+      [0, 10],
+      [5, 8],
+      [-5, 3],
+      [-4, -7],
+      [-3, 16],
+      [-10, 15],
+      [-6, 5],
+      [-10, 2],
+      [-9, -12],
+      [0, -13],
+      [-8, -11],
+      [-12, -10],
+      [0, -8],
+      [10, -19],
+      [4, -14],
+      [-10, -6],
+      [-2, -9],
+      [-13, -2],
+      [0, 7],
+      [-8, 30],
+      [-1, -14],
+      [-10, 8],
+      [-3, 19],
+      [-9, 8],
+      [-6, -1],
+      [0, 8],
+      [-8, -4],
+      [-9, 2],
+      [-2, -16]
+    ],
+    [
+      [2706, 5734],
+      [6, -10],
+      [3, -23],
+      [13, -4],
+      [-4, 11],
+      [5, -3],
+      [6, -15],
+      [10, -1],
+      [9, 5],
+      [7, 12],
+      [14, 8],
+      [14, 22],
+      [10, -4],
+      [7, 2],
+      [-2, -7],
+      [16, -2],
+      [17, -19],
+      [3, -9],
+      [10, -15]
+    ],
+    [
+      [3073, 4289],
+      [-8, 13],
+      [-7, 0],
+      [2, -20],
+      [-3, 4],
+      [-3, -15],
+      [17, -10],
+      [-2, -8],
+      [7, -8],
+      [4, 3]
+    ],
+    [
+      [3084, 4249],
+      [-2, -19]
+    ],
+    [
+      [3044, 4127],
+      [-14, 19],
+      [0, 3],
+      [-13, 15],
+      [0, 13],
+      [-3, 10],
+      [-18, 16],
+      [-6, 15],
+      [-10, 5],
+      [-17, 20],
+      [-17, 13],
+      [-3, 8],
+      [-32, 34],
+      [-1, 9],
+      [-9, 19],
+      [-10, 12],
+      [-6, 25],
+      [-4, 2],
+      [0, 15],
+      [3, 23],
+      [-10, 34],
+      [0, 7],
+      [-8, 20],
+      [1, 6],
+      [-7, 9],
+      [-3, 11],
+      [-2, 23],
+      [-4, 10],
+      [-8, 9],
+      [1, 11],
+      [-4, 20],
+      [-12, 36],
+      [-1, 20],
+      [-4, 9],
+      [-2, 18],
+      [-5, 8],
+      [-4, 33],
+      [-6, 23],
+      [-14, 29],
+      [-6, 35],
+      [-7, 12],
+      [-6, 16],
+      [-16, 16],
+      [-11, 17],
+      [0, 11],
+      [8, 6],
+      [-2, 16],
+      [-7, 11],
+      [3, 15],
+      [-8, 19],
+      [2, 25],
+      [12, 23],
+      [0, 5],
+      [14, 21]
+    ],
+    [
+      [8339, 5486],
+      [-9, -12],
+      [-3, 4],
+      [12, 8]
+    ],
+    [
+      [8361, 5534],
+      [5, -6],
+      [-8, -6],
+      [3, 12]
+    ],
+    [
+      [8390, 5552],
+      [-3, 0],
+      [-4, 14],
+      [7, 5],
+      [7, -7],
+      [-7, -12]
+    ],
+    [
+      [8493, 5581],
+      [-3, 9],
+      [3, 5],
+      [0, -14]
+    ],
+    [
+      [8251, 5645],
+      [-2, -13],
+      [-1, 14],
+      [3, -1]
+    ],
+    [
+      [8489, 5736],
+      [9, -8],
+      [3, -13],
+      [4, 4],
+      [-1, -13],
+      [4, -7],
+      [0, -10],
+      [-6, -9],
+      [8, -6],
+      [-1, -20],
+      [3, 3],
+      [-2, -23],
+      [5, -6],
+      [1, -27],
+      [-4, -16],
+      [-6, -12],
+      [-1, -28],
+      [-4, 20],
+      [1, 8],
+      [-6, 19],
+      [-1, 14],
+      [-5, -4],
+      [0, -9],
+      [-5, -8],
+      [-3, -22],
+      [6, -6],
+      [3, -20],
+      [-1, -12],
+      [-7, -21],
+      [-7, 13],
+      [3, 8],
+      [-3, 9],
+      [-3, -14],
+      [-10, 5],
+      [-13, 14],
+      [-5, 15],
+      [0, 20],
+      [-2, 0],
+      [1, 19],
+      [6, 8],
+      [0, 9],
+      [-5, 11],
+      [-15, 13],
+      [-3, -12],
+      [1, -15],
+      [-4, 9],
+      [-4, -1],
+      [0, 12],
+      [-4, -14],
+      [-6, 0],
+      [1, 16],
+      [-9, -3],
+      [-7, -26],
+      [-2, -17],
+      [-3, -3],
+      [-5, 9],
+      [7, 30],
+      [-1, 11],
+      [7, 16],
+      [16, 6],
+      [3, 21],
+      [8, 1],
+      [2, 11],
+      [3, -6],
+      [6, 1],
+      [4, -13],
+      [0, -15],
+      [11, 6],
+      [2, 17],
+      [3, 4],
+      [6, -8],
+      [3, 5],
+      [0, 23],
+      [4, 1],
+      [5, -9],
+      [5, 10],
+      [7, 1],
+      [0, 17],
+      [-4, 21],
+      [2, 8],
+      [5, -12]
+    ],
+    [
+      [8503, 5750],
+      [-4, -2],
+      [2, 14],
+      [2, -12]
+    ],
+    [
+      [8453, 5767],
+      [7, -6],
+      [-1, -12],
+      [-7, -13],
+      [-12, 2],
+      [-2, 9],
+      [7, 10],
+      [3, 10],
+      [5, 0]
+    ],
+    [
+      [8479, 5754],
+      [-4, 9],
+      [3, 3],
+      [1, -12]
+    ],
+    [
+      [8490, 5782],
+      [1, -31],
+      [-5, 11],
+      [0, 15],
+      [4, 5]
+    ],
+    [
+      [8332, 5791],
+      [-6, -5],
+      [2, 10],
+      [4, -5]
+    ],
+    [
+      [8408, 5792],
+      [-5, -9],
+      [0, 11],
+      [4, 7],
+      [1, -9]
+    ],
+    [
+      [8423, 5815],
+      [8, -4],
+      [1, -7],
+      [-7, -25],
+      [-1, -15],
+      [-4, -13],
+      [0, -19],
+      [5, -11],
+      [-2, -12],
+      [-7, -5],
+      [-3, 15],
+      [-9, 8],
+      [-5, 15],
+      [2, 15],
+      [11, 6],
+      [-1, 23],
+      [4, 23],
+      [8, 6]
+    ],
+    [
+      [8444, 5821],
+      [1, -35],
+      [-2, -9],
+      [-9, -14],
+      [0, -7],
+      [-6, -27],
+      [-3, -4],
+      [2, 34],
+      [9, 27],
+      [5, 33],
+      [3, 2]
+    ],
+    [
+      [8319, 5836],
+      [0, -30],
+      [6, -17],
+      [-10, -11],
+      [-4, -14],
+      [-13, -9],
+      [1, -12],
+      [-9, -26],
+      [-10, -10],
+      [-1, -9],
+      [-8, -14],
+      [-6, -2],
+      [-1, -9],
+      [-9, 0],
+      [19, 43],
+      [4, 0],
+      [9, 23],
+      [7, 11],
+      [6, 20],
+      [12, 17],
+      [4, 32],
+      [0, 14],
+      [3, 3]
+    ],
+    [
+      [8456, 5842],
+      [7, -8],
+      [4, 7],
+      [6, -10],
+      [-1, -30],
+      [5, -8],
+      [2, -19],
+      [-8, -4],
+      [2, -10],
+      [-8, 7],
+      [-1, 14],
+      [2, 19],
+      [-2, 11],
+      [-5, 5],
+      [-4, -4],
+      [1, 30]
+    ],
+    [
+      [8456, 5856],
+      [5, -12],
+      [-5, 0],
+      [0, 12]
+    ],
+    [
+      [8396, 5860],
+      [10, -14],
+      [4, 6],
+      [3, -11],
+      [7, 8],
+      [-1, -24],
+      [-9, -10],
+      [-1, -11],
+      [-6, -6],
+      [-9, -2],
+      [-6, -13],
+      [-2, 20],
+      [4, 17],
+      [0, 39],
+      [-6, 1],
+      [3, 10],
+      [9, -10]
+    ],
+    [
+      [8332, 5870],
+      [2, -13],
+      [-3, -2],
+      [-2, 15],
+      [3, 0]
+    ],
+    [
+      [8331, 5890],
+      [11, -11],
+      [0, -5],
+      [-10, 1],
+      [-1, 15]
+    ],
+    [
+      [8405, 5890],
+      [-5, 12],
+      [6, 0],
+      [-1, -12]
+    ],
+    [
+      [8469, 5906],
+      [10, -3],
+      [2, -13],
+      [5, -4],
+      [-2, -6],
+      [1, -33],
+      [6, -24],
+      [-14, 0],
+      [-2, 10],
+      [-4, 0],
+      [-4, 10],
+      [6, 17],
+      [-5, 0],
+      [-6, 16],
+      [-8, 11],
+      [-3, 20],
+      [7, -3],
+      [11, 2]
+    ],
+    [
+      [8426, 5905],
+      [6, -6],
+      [5, -13],
+      [4, -1],
+      [4, -15],
+      [0, -12],
+      [-17, 28],
+      [-8, -17],
+      [3, 13],
+      [-1, 26],
+      [4, -3]
+    ],
+    [
+      [8392, 5910],
+      [-3, -30],
+      [-3, 11],
+      [2, 17],
+      [4, 2]
+    ],
+    [
+      [8434, 5912],
+      [3, -18],
+      [-5, 16],
+      [2, 2]
+    ],
+    [
+      [8421, 5926],
+      [-7, 8],
+      [2, 6],
+      [5, -14]
+    ],
+    [
+      [8360, 5962],
+      [15, -22],
+      [-1, -23],
+      [-3, -26],
+      [-4, -5],
+      [-9, 17],
+      [-4, 15],
+      [0, 14],
+      [-7, 12],
+      [-4, 18],
+      [10, -4],
+      [7, 4]
+    ],
+    [
+      [8385, 5963],
+      [7, -9],
+      [-4, -11],
+      [-5, 8],
+      [2, 12]
+    ],
+    [
+      [8450, 5993],
+      [5, -11],
+      [0, -12],
+      [-7, -8],
+      [-4, 7],
+      [3, 5],
+      [0, 20],
+      [3, -1]
+    ],
+    [
+      [8387, 6049],
+      [2, -18],
+      [-3, -5],
+      [-3, 23],
+      [4, 0]
+    ],
+    [
+      [8358, 6252],
+      [7, 4],
+      [10, -14],
+      [13, -6],
+      [4, 13],
+      [3, 0],
+      [2, -15],
+      [-4, -8],
+      [-1, -29],
+      [3, -15],
+      [4, 0],
+      [2, -28],
+      [-8, -32],
+      [1, -4],
+      [-18, -18],
+      [2, -10],
+      [-7, -28],
+      [9, -32],
+      [-3, -1],
+      [4, -30],
+      [5, -10],
+      [10, -2],
+      [-3, 13],
+      [8, 9],
+      [8, -1],
+      [9, -20],
+      [-1, -12],
+      [5, -3],
+      [3, 17],
+      [17, -13],
+      [1, -4],
+      [-12, -1],
+      [0, -8],
+      [5, -8],
+      [4, -16],
+      [6, -8],
+      [2, -12],
+      [-2, -14],
+      [-6, 5],
+      [-1, 13],
+      [-7, 1],
+      [-8, 7],
+      [0, 14],
+      [-3, 11],
+      [-7, 6],
+      [-5, 16],
+      [-9, 7],
+      [2, -18],
+      [5, -15],
+      [-3, -12],
+      [-7, 25],
+      [-17, 19],
+      [-8, -8],
+      [1, -6],
+      [-11, -4],
+      [-4, 16],
+      [-6, 2],
+      [-2, -7],
+      [-1, 24],
+      [11, 17],
+      [-4, 14],
+      [-9, -4],
+      [2, -13],
+      [-4, -3],
+      [-4, 23],
+      [-7, 4],
+      [-1, 23],
+      [-4, 8],
+      [1, 26],
+      [-4, 3],
+      [0, 23],
+      [9, -15],
+      [9, 5],
+      [-3, 17],
+      [0, 21],
+      [4, 10],
+      [-1, 11],
+      [0, 43],
+      [5, 23],
+      [-1, 10],
+      [10, 4]
+    ],
+    [
+      [8740, 5620],
+      [-2, -13],
+      [-3, 3],
+      [5, 10]
+    ],
+    [
+      [9256, 4529],
+      [13, -10],
+      [0, -5],
+      [-10, 3],
+      [-3, 12]
+    ],
+    [
+      [9195, 4611],
+      [7, -2],
+      [-2, -10],
+      [-8, 2],
+      [-5, 23],
+      [8, -13]
+    ],
+    [
+      [9184, 4640],
+      [3, 2],
+      [5, -15],
+      [-14, 1],
+      [0, 16],
+      [6, -4]
+    ],
+    [
+      [9176, 4644],
+      [-1, -9],
+      [-5, 5],
+      [-1, 9],
+      [6, 1],
+      [1, -6]
+    ],
+    [
+      [9234, 4667],
+      [10, -3],
+      [5, -11],
+      [-10, 2],
+      [-5, 12]
+    ],
+    [
+      [8989, 4680],
+      [-11, 16],
+      [11, -11],
+      [0, -5]
+    ],
+    [
+      [8981, 4701],
+      [6, 0],
+      [1, -7],
+      [-7, 7]
+    ],
+    [
+      [9105, 4867],
+      [7, -7],
+      [-1, -11],
+      [-7, 10],
+      [1, 8]
+    ],
+    [
+      [9299, 4867],
+      [8, -4],
+      [3, -17],
+      [6, -8],
+      [1, -9],
+      [5, -4],
+      [8, -16],
+      [2, -14],
+      [-7, -8],
+      [-5, 1],
+      [-10, 17],
+      [1, 14],
+      [-14, 25],
+      [0, 19],
+      [2, 4]
+    ],
+    [
+      [9089, 4870],
+      [-4, 0],
+      [-2, 11],
+      [3, 3],
+      [3, -14]
+    ],
+    [
+      [9296, 4889],
+      [-2, -21],
+      [-1, 25],
+      [3, -4]
+    ],
+    [
+      [9228, 4941],
+      [-2, -6],
+      [7, -2],
+      [0, -17],
+      [-5, -20],
+      [-8, -1],
+      [5, -25],
+      [-8, -9],
+      [-11, 3],
+      [2, -8],
+      [-14, -21],
+      [-15, -13],
+      [-24, -2],
+      [-3, 10],
+      [-6, 4],
+      [-6, -5],
+      [-2, 7],
+      [-10, 12],
+      [-9, 7],
+      [4, 14],
+      [11, -5],
+      [3, 4],
+      [7, -8],
+      [20, 6],
+      [2, 24],
+      [4, -27],
+      [8, 6],
+      [8, -5],
+      [8, 6],
+      [0, 10],
+      [10, 20],
+      [7, -3],
+      [2, 5],
+      [-2, 23],
+      [-3, 16],
+      [7, 0],
+      [5, -8],
+      [2, 8],
+      [6, 0]
+    ],
+    [
+      [8915, 5033],
+      [7, -1],
+      [25, -25],
+      [25, -17],
+      [13, -4],
+      [9, -11],
+      [5, -11],
+      [15, -2],
+      [0, -8],
+      [9, -6],
+      [5, -15],
+      [8, -3],
+      [13, -25],
+      [-1, -38],
+      [14, -4],
+      [18, -16],
+      [5, -7],
+      [12, -3],
+      [9, -22],
+      [0, -18],
+      [-25, -3],
+      [0, -12],
+      [5, -13],
+      [1, -15],
+      [7, -6],
+      [8, -21],
+      [12, -8],
+      [3, -30],
+      [7, -9],
+      [2, -19],
+      [21, 3],
+      [-4, -19],
+      [1, -9],
+      [7, -6],
+      [15, -2],
+      [1, -5],
+      [-9, -5],
+      [8, -16],
+      [10, -7],
+      [12, -3],
+      [-4, -5],
+      [-9, -1],
+      [10, -10],
+      [-7, -9],
+      [-13, 6],
+      [2, 7],
+      [-9, 8],
+      [-7, -1],
+      [-8, 6],
+      [-12, 0],
+      [1, 5],
+      [-11, -3],
+      [-2, 5],
+      [-17, 1],
+      [-11, 33],
+      [-5, 2],
+      [-7, 22],
+      [-8, 6],
+      [-4, 23],
+      [-10, 30],
+      [-13, 9],
+      [-5, -1],
+      [-7, 8],
+      [-9, 2],
+      [-6, 12],
+      [-6, -1],
+      [2, -13],
+      [-7, 10],
+      [1, -8],
+      [-13, 8],
+      [4, -19],
+      [-11, -4],
+      [1, -12],
+      [-18, -5],
+      [-6, 1],
+      [11, -10],
+      [7, -15],
+      [1, -11],
+      [-22, -23],
+      [-11, 10],
+      [-20, -3],
+      [-6, 4],
+      [-3, -5],
+      [-6, 7]
+    ],
+    [
+      [9195, 5027],
+      [10, -11],
+      [11, -17],
+      [7, -3],
+      [14, -33],
+      [11, -10],
+      [5, -22],
+      [-2, -14],
+      [-5, -10],
+      [-6, 14],
+      [1, 21],
+      [-5, 19],
+      [-10, 21],
+      [-6, 2],
+      [-9, 16],
+      [-5, 4],
+      [-9, 15],
+      [-10, 7],
+      [8, 1]
+    ],
+    [
+      [9172, 5046],
+      [6, -5],
+      [0, -12],
+      [-8, 0],
+      [-3, 9],
+      [5, 8]
+    ],
+    [
+      [9079, 5070],
+      [12, -5],
+      [-3, -8],
+      [-17, 0],
+      [0, 11],
+      [8, 2]
+    ],
+    [
+      [9154, 5105],
+      [6, -13],
+      [-6, 5],
+      [0, 8]
+    ],
+    [
+      [5544, 8319],
+      [0, -1]
+    ],
+    [
+      [5544, 8318],
+      [4, -1]
+    ],
+    [
+      [5548, 8317],
+      [63, -4],
+      [21, 0]
+    ],
+    [
+      [5655, 8150],
+      [1, -13],
+      [14, -27],
+      [-5, 0],
+      [4, -18],
+      [-10, -8],
+      [-18, -24],
+      [-13, -25],
+      [4, -28],
+      [-6, 2]
+    ],
+    [
+      [5626, 8009],
+      [-15, 8],
+      [-11, 12],
+      [-16, -2],
+      [-4, -6],
+      [-6, 6],
+      [-10, 0],
+      [-14, -12],
+      [-1, 12],
+      [-10, 11],
+      [-7, -11],
+      [-9, 7]
+    ],
+    [
+      [5396, 8275],
+      [8, -3],
+      [0, 13],
+      [-10, 0]
+    ],
+    [
+      [5394, 8289],
+      [54, 20],
+      [12, 16],
+      [10, 2],
+      [11, 9],
+      [27, 5],
+      [7, -23],
+      [12, -6],
+      [17, 7]
+    ],
+    [
+      [3138, 6248],
+      [29, -2],
+      [9, -6],
+      [2, -7],
+      [-7, -13],
+      [-9, -5],
+      [-17, 3],
+      [-12, -1],
+      [1, 15],
+      [-3, 7],
+      [3, 10],
+      [4, -1]
+    ],
+    [
+      [8625, 7631],
+      [5, -14]
+    ],
+    [
+      [8630, 7617],
+      [-7, 4],
+      [-11, -15],
+      [-11, -27],
+      [4, -15],
+      [-3, -11],
+      [1, -19],
+      [-11, -5],
+      [-7, -16],
+      [-13, -11],
+      [-8, -14],
+      [-9, 1],
+      [-4, -9],
+      [-10, -8],
+      [2, -9],
+      [-6, -13],
+      [2, -13],
+      [9, -2],
+      [17, -29]
+    ],
+    [
+      [8518, 7361],
+      [-8, 4],
+      [-8, -9],
+      [-8, 15],
+      [-7, 1],
+      [2, -14],
+      [-10, 9],
+      [-7, -2],
+      [3, 9],
+      [-13, 4],
+      [9, 5],
+      [-3, 9],
+      [10, 20],
+      [-3, 4],
+      [4, 21],
+      [5, 14],
+      [-4, 8],
+      [-16, 7],
+      [-11, 14],
+      [1, 12]
+    ],
+    [
+      [4525, 7072],
+      [11, -2],
+      [-3, -7],
+      [-10, 3],
+      [2, 6]
+    ],
+    [
+      [4286, 7362],
+      [15, 1],
+      [0, -6],
+      [-10, -3],
+      [-5, 8]
+    ],
+    [
+      [4220, 7396],
+      [-11, -2],
+      [-2, 9],
+      [13, -7]
+    ],
+    [
+      [4248, 7409],
+      [-8, 0],
+      [0, 8],
+      [6, 0],
+      [2, -8]
+    ],
+    [
+      [4794, 7325],
+      [-12, -12],
+      [-21, 8],
+      [-10, -7],
+      [4, 24],
+      [1, 44],
+      [-4, 18],
+      [-8, -2],
+      [-1, 11],
+      [8, 6],
+      [-2, 7],
+      [-4, -11],
+      [-9, 1],
+      [4, 38],
+      [6, 7],
+      [7, 36],
+      [-1, 3],
+      [7, 47],
+      [-6, 50],
+      [3, 7]
+    ],
+    [
+      [3492, 3797],
+      [-1, -17],
+      [-4, -23],
+      [-1, -22],
+      [-3, -17]
+    ],
+    [
+      [5949, 6986],
+      [8, 16]
+    ],
+    [
+      [5987, 7012],
+      [-4, -16]
+    ],
+    [
+      [853, 4163],
+      [-9, -2],
+      [-1, 11],
+      [5, 3],
+      [5, -12]
+    ],
+    [
+      [6422, 6601],
+      [-8, -2],
+      [-3, 9]
+    ],
+    [
+      [6411, 6608],
+      [1, 10],
+      [-3, 15],
+      [1, 20],
+      [3, 6],
+      [4, 24],
+      [6, 6],
+      [4, -12],
+      [5, -2],
+      [1, -9],
+      [-4, -14],
+      [4, -14],
+      [0, -15],
+      [-4, -17],
+      [-7, -5]
+    ],
+    [
+      [5783, 7801],
+      [3, -8],
+      [11, -6],
+      [14, 12],
+      [10, -3],
+      [2, -9]
+    ],
+    [
+      [5823, 7787],
+      [-1, -22],
+      [-14, -4],
+      [-3, 13],
+      [-4, -3],
+      [-6, -35],
+      [1, -21],
+      [-3, -13]
+    ],
+    [
+      [5630, 7730],
+      [-6, 15],
+      [8, 5],
+      [-10, 9],
+      [-6, -14],
+      [-5, 9],
+      [-10, 2],
+      [-9, 9],
+      [5, 16],
+      [-15, 12],
+      [-6, 9],
+      [1, 16],
+      [-13, 13],
+      [-2, 7]
+    ],
+    [
+      [5635, 7944],
+      [10, 8],
+      [7, -5],
+      [20, -6],
+      [10, 3],
+      [9, -14],
+      [10, 11],
+      [26, 6],
+      [3, 12],
+      [9, 3]
+    ],
+    [
+      [9064, 7741],
+      [7, 1],
+      [-12, -10],
+      [-16, -24],
+      [15, 37],
+      [6, -4]
+    ],
+    [
+      [9133, 7793],
+      [-15, -6],
+      [-10, -15],
+      [-5, 0],
+      [-7, -11],
+      [-18, -19],
+      [10, 17],
+      [-3, 3],
+      [25, 28],
+      [9, 0],
+      [12, 15],
+      [2, -12]
+    ],
+    [
+      [9182, 7845],
+      [-21, -27],
+      [-10, -9],
+      [15, 27],
+      [16, 9]
+    ],
+    [
+      [9227, 7898],
+      [-1, -8],
+      [-10, -14],
+      [11, 22]
+    ],
+    [
+      [9301, 8041],
+      [-1, -17],
+      [-6, 3],
+      [7, 14]
+    ],
+    [
+      [9336, 8091],
+      [-7, -15],
+      [-9, -4],
+      [-5, -11],
+      [-5, 16],
+      [15, 9],
+      [4, 15],
+      [7, 3],
+      [0, -13]
+    ],
+    [
+      [9344, 8100],
+      [-7, 6],
+      [7, 7],
+      [0, -13]
+    ],
+    [
+      [8967, 8309],
+      [5, -11],
+      [-3, -7],
+      [8, -35],
+      [4, -38],
+      [-6, -46],
+      [5, -11],
+      [-2, -12],
+      [6, 0],
+      [9, -69],
+      [10, -33],
+      [0, -7],
+      [8, -36],
+      [-9, 14],
+      [-23, 9],
+      [3, -6],
+      [-10, -7],
+      [-2, -16],
+      [-12, -57],
+      [6, -26],
+      [8, -11],
+      [0, -11],
+      [5, -21],
+      [9, 4],
+      [1, -28],
+      [-3, -6],
+      [-2, 22],
+      [-17, 3],
+      [-2, 6],
+      [-7, -5],
+      [-6, -32],
+      [-5, -9],
+      [-3, 6],
+      [-4, 29],
+      [7, 30],
+      [-3, 31],
+      [7, 21],
+      [-3, 26],
+      [-5, 12],
+      [7, 55],
+      [0, 46],
+      [-3, 10],
+      [1, 17],
+      [5, 19],
+      [-5, 18],
+      [-11, 14],
+      [-1, 38],
+      [4, 5],
+      [3, 26],
+      [-4, 26],
+      [13, 9],
+      [1, -9],
+      [10, 9],
+      [-4, 8],
+      [9, 2],
+      [-2, 12],
+      [-10, 21],
+      [5, -2],
+      [5, 11],
+      [3, -8]
+    ],
+    [
+      [9669, 8321],
+      [-19, 19],
+      [4, 0],
+      [15, -19]
+    ],
+    [
+      [8810, 8355],
+      [-14, -11],
+      [8, 11],
+      [6, 0]
+    ],
+    [
+      [8827, 8358],
+      [9, -8],
+      [-12, -22],
+      [-6, 15],
+      [-6, 1],
+      [8, 17],
+      [7, -3]
+    ],
+    [
+      [5548, 8317],
+      [18, 15],
+      [-10, 2],
+      [-12, -16]
+    ],
+    [
+      [5544, 8319],
+      [10, 17],
+      [0, 12],
+      [12, -1],
+      [15, 19]
+    ],
+    [
+      [5582, 8366],
+      [-12, -19],
+      [12, -3],
+      [7, 5],
+      [1, 15]
+    ],
+    [
+      [9609, 8371],
+      [18, -27],
+      [1, -11],
+      [-13, 14],
+      [-4, 13],
+      [-7, 6],
+      [5, 5]
+    ],
+    [
+      [9571, 8591],
+      [3, -16],
+      [-8, -2],
+      [-23, -18],
+      [9, 26],
+      [19, 10]
+    ],
+    [
+      [5777, 8600],
+      [3, -1]
+    ],
+    [
+      [6924, 9029],
+      [21, -5],
+      [-5, -13],
+      [-16, 18]
+    ],
+    [
+      [6396, 9167],
+      [-24, -22],
+      [-23, -4],
+      [-10, 9],
+      [1, 19],
+      [15, 16],
+      [13, 1],
+      [28, -19]
+    ],
+    [
+      [9482, 9188],
+      [-3, -8],
+      [6, -25],
+      [-10, 6],
+      [-2, 19],
+      [9, 8]
+    ],
+    [
+      [9705, 9201],
+      [-6, -12],
+      [-29, 7],
+      [-11, 8],
+      [14, 11],
+      [32, -8],
+      [0, -6]
+    ],
+    [
+      [6648, 9234],
+      [5, -8],
+      [26, -17],
+      [0, -11],
+      [-25, -1],
+      [-5, 11],
+      [-10, -2],
+      [-13, 12],
+      [-1, 15],
+      [13, 8],
+      [10, -7]
+    ],
+    [
+      [6464, 9295],
+      [14, -14],
+      [-6, -11],
+      [-7, 12],
+      [-15, 9],
+      [14, 4]
+    ],
+    [
+      [0, 9271],
+      [9990, -7],
+      [-25, -4],
+      [-4, 14],
+      [8, 11],
+      [30, 17],
+      [-9999, -31]
+    ],
+    [
+      [8829, 9305],
+      [-3, -9],
+      [-20, 5],
+      [23, 4]
+    ],
+    [
+      [0, 9302],
+      [26, 4],
+      [18, -3],
+      [27, -17],
+      [-12, -12],
+      [-42, -8],
+      [-17, 5],
+      [0, 31]
+    ],
+    [
+      [7160, 9347],
+      [-27, 1],
+      [22, 18],
+      [21, -9],
+      [-16, -10]
+    ],
+    [
+      [8580, 9366],
+      [-7, -7],
+      [-15, 7],
+      [22, 0]
+    ],
+    [
+      [8592, 9374],
+      [-28, 2],
+      [18, 7],
+      [10, -9]
+    ],
+    [
+      [7209, 9382],
+      [0, -11],
+      [-19, 1],
+      [-8, 7],
+      [16, 13],
+      [11, -10]
+    ],
+    [
+      [7078, 9392],
+      [-5, -14],
+      [-16, 10],
+      [21, 4]
+    ],
+    [
+      [6536, 9406],
+      [31, -6],
+      [-8, -26],
+      [-15, -9],
+      [-7, -32],
+      [5, -18],
+      [16, -29],
+      [23, -20],
+      [19, -10],
+      [-49, -5],
+      [-16, 3],
+      [-2, -8],
+      [-14, 12],
+      [-18, -1],
+      [-11, 7],
+      [-11, 34],
+      [-11, -4],
+      [-10, 10],
+      [-19, -6],
+      [-8, 6],
+      [-3, 22],
+      [11, 12],
+      [15, -5],
+      [9, 22],
+      [11, 9],
+      [-20, 7],
+      [7, 8],
+      [21, 1],
+      [-7, 12],
+      [17, 12],
+      [13, -2],
+      [20, 9],
+      [11, -5]
+    ],
+    [
+      [6970, 9416],
+      [1, -13],
+      [11, -6],
+      [-42, -7],
+      [3, 20],
+      [27, 6]
+    ],
+    [
+      [8951, 9436],
+      [32, -18],
+      [0, -21],
+      [-33, 3],
+      [-40, 10],
+      [-27, -4],
+      [2, 8],
+      [17, 1],
+      [17, 22],
+      [32, -1]
+    ],
+    [
+      [8903, 9439],
+      [-10, 16],
+      [20, 5],
+      [2, -17],
+      [-12, -4]
+    ],
+    [
+      [8148, 9464],
+      [-16, -15],
+      [-37, 13],
+      [18, 14],
+      [34, -4],
+      [1, -8]
+    ],
+    [
+      [7281, 9528],
+      [-4, -16],
+      [-14, 11],
+      [18, 5]
+    ],
+    [
+      [9075, 9530],
+      [47, -4],
+      [5, -12],
+      [15, 3],
+      [49, -6],
+      [-8, -15],
+      [-25, -8],
+      [-43, 2],
+      [-58, 24],
+      [7, 20],
+      [11, -4]
+    ],
+    [
+      [8773, 9524],
+      [-11, -1],
+      [6, 29],
+      [14, -16],
+      [-9, -12]
+    ],
+    [
+      [8863, 9565],
+      [40, -20],
+      [10, 14],
+      [19, 1],
+      [-8, 10],
+      [35, -19],
+      [29, 1],
+      [50, -20],
+      [-19, -5],
+      [5, -8],
+      [-16, -15],
+      [-40, 6],
+      [-11, 13],
+      [15, 13],
+      [-3, 8],
+      [-25, -4],
+      [5, -18],
+      [12, -15],
+      [30, -9],
+      [-38, -6],
+      [-14, 10],
+      [-49, -10],
+      [-6, 8],
+      [-17, -18],
+      [-33, 8],
+      [-25, 20],
+      [-2, 34],
+      [18, 1],
+      [-9, 9],
+      [42, 18],
+      [5, -7]
+    ],
+    [
+      [7674, 9577],
+      [3, -9],
+      [-30, 3],
+      [27, 6]
+    ],
+    [
+      [8125, 9595],
+      [2, -10],
+      [-18, 11],
+      [16, -1]
+    ],
+    [
+      [9145, 9596],
+      [-23, 0],
+      [29, 8],
+      [-6, -8]
+    ],
+    [
+      [6893, 9615],
+      [24, -15],
+      [-21, -24],
+      [-51, -17],
+      [-116, -32],
+      [-47, -18],
+      [0, -15],
+      [-22, -8],
+      [-2, -8],
+      [-17, 8],
+      [1, -16],
+      [-26, 8],
+      [15, -17],
+      [-16, -8],
+      [-16, -31],
+      [-24, -20],
+      [-36, 4],
+      [-11, 6],
+      [-20, -6],
+      [-4, 9],
+      [24, 12],
+      [-30, -4],
+      [-2, 8],
+      [26, 12],
+      [-3, 6],
+      [26, 13],
+      [-3, 20],
+      [24, 4],
+      [-14, 7],
+      [18, 4],
+      [-18, 4],
+      [-3, 9],
+      [21, -4],
+      [14, 19],
+      [19, -4],
+      [-5, 11],
+      [38, 20],
+      [23, 3],
+      [14, 11],
+      [23, -2],
+      [0, 12],
+      [52, -5],
+      [61, 15],
+      [49, 28],
+      [35, 1]
+    ],
+    [
+      [7679, 9622],
+      [-33, -4],
+      [35, 11],
+      [-2, -7]
+    ],
+    [
+      [8666, 7787],
+      [3, -13],
+      [-2, -13],
+      [9, -14],
+      [7, 9],
+      [6, 22]
+    ],
+    [
+      [6367, 7850],
+      [-12, -15],
+      [-2, -14],
+      [-4, 9],
+      [-10, -14],
+      [-17, 0],
+      [-7, -31],
+      [-8, -23],
+      [-10, -8],
+      [0, -13],
+      [14, -11],
+      [8, -28],
+      [-2, -14],
+      [6, 19],
+      [-5, -26],
+      [0, -21],
+      [7, -10],
+      [4, -16],
+      [12, -26],
+      [2, -11],
+      [6, -4]
+    ],
+    [
+      [6110, 7681],
+      [-15, 21],
+      [-1, 6],
+      [-18, 24],
+      [-15, 7],
+      [-11, 15],
+      [-9, 1],
+      [-8, 19],
+      [-17, 11],
+      [8, 3],
+      [-1, 11],
+      [8, -6],
+      [11, 2],
+      [5, -4],
+      [0, 16],
+      [-4, 2],
+      [8, 10],
+      [2, 14],
+      [4, -6],
+      [2, 11],
+      [11, 0],
+      [-13, 17],
+      [-5, 0],
+      [-4, 15],
+      [6, -3],
+      [13, 14],
+      [24, 9],
+      [0, 13],
+      [-30, -8]
+    ],
+    [
+      [6061, 7895],
+      [-1, 12],
+      [5, 17],
+      [11, 5],
+      [3, 10],
+      [25, -3],
+      [0, 13],
+      [6, 12],
+      [-8, 29],
+      [10, 5],
+      [-8, 3],
+      [11, 26],
+      [-1, 14],
+      [-10, -2],
+      [-5, 10],
+      [-7, 0],
+      [-5, 9],
+      [-6, -5],
+      [-8, 10],
+      [-18, -4],
+      [-8, 11],
+      [-8, 20],
+      [-16, -6],
+      [-6, -7],
+      [-10, 4],
+      [-5, 8],
+      [-13, -5],
+      [-6, 10],
+      [2, 10],
+      [-4, 19],
+      [-7, 12],
+      [-11, -3],
+      [-13, 12],
+      [-3, 17],
+      [8, 9],
+      [-8, 8],
+      [-1, 10],
+      [-11, 13],
+      [-13, 1],
+      [-9, -8],
+      [-15, 5],
+      [-1, -11],
+      [-12, -7],
+      [-3, 5]
+    ],
+    [
+      [5767, 8523],
+      [9, -9],
+      [6, 9],
+      [-6, 10],
+      [-10, -2],
+      [7, 19],
+      [-4, 30]
+    ],
+    [
+      [5773, 8590],
+      [9, 11]
+    ],
+    [
+      [5778, 8608],
+      [-1, 16],
+      [11, -5],
+      [3, 11],
+      [10, -4],
+      [7, 12],
+      [29, -8],
+      [2, 8],
+      [-9, 9],
+      [-25, 2],
+      [-10, 28],
+      [-16, -9],
+      [-7, 2]
+    ],
+    [
+      [5856, 9203],
+      [15, -9],
+      [19, 18],
+      [16, -11],
+      [14, -3],
+      [-7, -8],
+      [-20, 4],
+      [6, -7],
+      [19, -3],
+      [-6, -7],
+      [19, 4],
+      [5, -5],
+      [35, -7],
+      [23, -1],
+      [52, -28],
+      [21, -21],
+      [14, -2],
+      [16, -14],
+      [13, -3],
+      [30, -21],
+      [1, -23],
+      [7, -2],
+      [-5, -24],
+      [-21, -24],
+      [-30, -15],
+      [-22, -4],
+      [-28, 5],
+      [-22, 9],
+      [-27, 3],
+      [-27, 15],
+      [-36, 7],
+      [-24, 23],
+      [-11, 0],
+      [8, -15],
+      [18, -11],
+      [3, -9],
+      [13, -6],
+      [-4, -7],
+      [14, -3],
+      [21, -20],
+      [-4, -21],
+      [-6, -7],
+      [13, -46],
+      [-6, -4],
+      [16, -15],
+      [15, 2],
+      [12, -18],
+      [31, -13],
+      [16, 9],
+      [1, 21],
+      [-25, 5],
+      [-16, 19],
+      [-3, 12],
+      [10, 2],
+      [7, 12],
+      [18, -9],
+      [10, -13],
+      [0, -9],
+      [10, 10],
+      [31, -15],
+      [9, 7],
+      [18, -7],
+      [-4, 22],
+      [-19, 30],
+      [4, 9],
+      [18, 12],
+      [6, 9],
+      [18, 5],
+      [22, 27],
+      [11, -8],
+      [20, 3],
+      [22, -21],
+      [1, 11],
+      [11, 23],
+      [0, 16],
+      [-20, 19],
+      [10, 28],
+      [3, 31],
+      [-25, 18],
+      [18, -4],
+      [37, 0],
+      [18, -6],
+      [16, -18],
+      [5, -18],
+      [-38, -5],
+      [-12, -22],
+      [17, -9],
+      [8, -17],
+      [20, -5],
+      [34, 13],
+      [5, 22],
+      [-3, 11],
+      [26, 7],
+      [1, 6],
+      [24, 9],
+      [31, 22],
+      [8, -1],
+      [31, 13],
+      [-1, -12],
+      [16, 4],
+      [-12, 10],
+      [32, 18],
+      [15, -3],
+      [-7, -14],
+      [6, -13],
+      [-21, -8],
+      [29, -3],
+      [7, 6],
+      [11, -7],
+      [1, 12],
+      [29, 14],
+      [38, -5],
+      [18, 17],
+      [25, 8],
+      [15, -13],
+      [-10, -8],
+      [1, -13],
+      [16, -4],
+      [8, 10],
+      [-6, 7],
+      [20, 5],
+      [13, 11],
+      [0, 10],
+      [-22, 28],
+      [15, 6],
+      [2, 10],
+      [74, -10],
+      [20, -7],
+      [19, -15],
+      [62, -29],
+      [33, -25],
+      [2, -9],
+      [17, 25],
+      [7, 19],
+      [-21, 2],
+      [-10, 16],
+      [-1, 12],
+      [-35, 14],
+      [3, 16],
+      [12, 3],
+      [-6, 9],
+      [6, 15],
+      [-1, 20],
+      [-16, -3],
+      [-2, 17],
+      [8, 14],
+      [28, 12],
+      [15, 17],
+      [14, 51],
+      [12, 16],
+      [5, -5],
+      [52, 1],
+      [39, -11],
+      [1, -25],
+      [-16, -26],
+      [1, -7],
+      [-15, -11],
+      [8, -13],
+      [16, -10],
+      [5, -15],
+      [-2, -25],
+      [-10, -9],
+      [8, -25],
+      [-5, -11],
+      [3, -21],
+      [-3, -16],
+      [5, -8],
+      [26, -20],
+      [-15, -16],
+      [3, -22],
+      [-18, -13],
+      [-9, -27],
+      [-20, -14],
+      [2, -15],
+      [-15, -1],
+      [-10, -7],
+      [-22, 21],
+      [-22, -6],
+      [8, -15],
+      [27, -10],
+      [22, 2],
+      [24, -8],
+      [10, 6],
+      [2, 16],
+      [13, 2],
+      [26, 20],
+      [1, 17],
+      [24, 24],
+      [-1, 25],
+      [-11, 15],
+      [3, 17],
+      [29, 12],
+      [31, 4],
+      [1, -11],
+      [19, -15],
+      [-5, -15],
+      [5, -20],
+      [-7, -7],
+      [18, -13],
+      [18, -1],
+      [-25, 13],
+      [0, 18],
+      [20, 10],
+      [-11, 14],
+      [-5, 24],
+      [-19, 5],
+      [-24, 13],
+      [-17, 1],
+      [-20, -10],
+      [-27, 5],
+      [3, 18],
+      [-10, 15],
+      [6, 25],
+      [17, 20],
+      [-21, 41],
+      [-15, 12],
+      [14, 22],
+      [39, 16],
+      [5, 17],
+      [-4, 28],
+      [15, -7],
+      [6, -30],
+      [-13, -17],
+      [7, -17],
+      [-5, -18],
+      [11, -4],
+      [57, -7],
+      [6, -11],
+      [12, 0],
+      [-4, 17],
+      [-17, 2],
+      [-39, 16],
+      [-8, 20],
+      [27, 8],
+      [17, -13],
+      [15, 3],
+      [-5, 14],
+      [-15, -2],
+      [15, 14],
+      [16, 5],
+      [28, -3],
+      [51, -35],
+      [23, -3],
+      [18, 5],
+      [14, -7],
+      [-14, -16],
+      [-16, -6],
+      [-2, -17],
+      [7, -12],
+      [-10, -12],
+      [11, 2],
+      [0, 11],
+      [10, 11],
+      [9, -6],
+      [-4, -27],
+      [-10, -9],
+      [14, -10],
+      [-7, 14],
+      [18, 0],
+      [6, 8],
+      [-17, 44],
+      [13, 23],
+      [-6, 11],
+      [-32, 15],
+      [-3, 11],
+      [-26, 4],
+      [-14, 11],
+      [4, 23],
+      [-11, 9],
+      [2, 28],
+      [39, 5],
+      [43, -1],
+      [59, 10],
+      [40, 3],
+      [-23, -18],
+      [25, 2],
+      [10, 13],
+      [-19, 21],
+      [-22, 4],
+      [14, 18],
+      [-21, 4],
+      [13, 10],
+      [16, -7],
+      [68, 47],
+      [67, 8],
+      [66, 16],
+      [-28, 9],
+      [19, 3],
+      [22, -5],
+      [25, 7],
+      [21, -3],
+      [-16, -13],
+      [58, 10],
+      [32, 12],
+      [29, -10],
+      [-29, 24],
+      [18, -3],
+      [40, 4],
+      [1, 26],
+      [63, 39],
+      [43, 3],
+      [33, -17],
+      [-21, -13],
+      [-24, -3],
+      [82, -7],
+      [6, -6],
+      [-27, -21],
+      [36, -1],
+      [4, 12],
+      [38, 1],
+      [19, -4],
+      [27, 5],
+      [47, -24],
+      [3, -16],
+      [19, 4],
+      [3, -28],
+      [-21, 5],
+      [1, -12],
+      [22, -1],
+      [-2, -14],
+      [-20, -17],
+      [-20, -6],
+      [-12, -13],
+      [-47, -16],
+      [-2, -9],
+      [-32, -15],
+      [-20, -19],
+      [-27, -1],
+      [-12, -18],
+      [-17, -2],
+      [-6, -15],
+      [-15, -12],
+      [23, 6],
+      [7, 17],
+      [37, -2],
+      [15, 8],
+      [51, 12],
+      [23, 10],
+      [-7, 6],
+      [-25, -5],
+      [-6, 8],
+      [13, 10],
+      [25, -6],
+      [7, 7],
+      [8, -13],
+      [19, -6],
+      [22, 5],
+      [-2, 12],
+      [16, -20],
+      [-8, -12],
+      [44, 9],
+      [19, 7],
+      [100, -13],
+      [-18, -4],
+      [1, -11],
+      [38, -12],
+      [36, -5],
+      [25, 2],
+      [21, -8],
+      [-7, 11],
+      [19, -6],
+      [11, 17],
+      [-8, 10],
+      [3, 16],
+      [17, -2],
+      [10, 10],
+      [23, -14],
+      [29, 0],
+      [12, -16],
+      [7, 15],
+      [30, -4],
+      [7, -12],
+      [34, -14],
+      [-34, -12],
+      [30, -6],
+      [-39, -3],
+      [20, -10],
+      [18, -1],
+      [6, -12],
+      [-15, -11],
+      [-19, 8],
+      [27, -37],
+      [13, -27],
+      [40, -21],
+      [13, 12],
+      [18, 43],
+      [10, 14],
+      [13, -19],
+      [23, -12],
+      [22, 0],
+      [4, 6],
+      [31, 8],
+      [22, -6],
+      [19, -11],
+      [11, -13],
+      [7, 27],
+      [16, 4],
+      [12, -13],
+      [17, 2],
+      [-3, 27],
+      [15, 17],
+      [-29, 0],
+      [12, 16],
+      [37, 2],
+      [4, 10],
+      [-12, 9],
+      [23, -1],
+      [23, -9],
+      [38, 0],
+      [50, -8],
+      [39, -12],
+      [-37, 1],
+      [-16, 4],
+      [-13, -15],
+      [27, 6],
+      [42, 2],
+      [-26, -26],
+      [10, 16],
+      [-12, 4],
+      [-3, -17],
+      [-23, -12],
+      [29, 4],
+      [30, 31],
+      [36, 0],
+      [34, -9],
+      [13, -13],
+      [-12, -9],
+      [-7, 7],
+      [-9, -11],
+      [25, -2],
+      [-2, -11],
+      [20, 2],
+      [0, -13],
+      [24, 3],
+      [18, -20],
+      [-13, 0],
+      [26, -9],
+      [28, 3],
+      [65, 12],
+      [45, -1],
+      [26, -6],
+      [33, -17],
+      [11, -25],
+      [-11, -19],
+      [3, -8],
+      [31, -8],
+      [3, -28],
+      [11, -11],
+      [-10, -25],
+      [14, 22],
+      [-2, 26],
+      [19, 17],
+      [51, 7],
+      [23, -12],
+      [23, 2],
+      [11, -5],
+      [24, -1],
+      [21, 16],
+      [16, -13],
+      [2, -19],
+      [29, -8],
+      [7, -18],
+      [22, 4],
+      [17, 12],
+      [-13, 32],
+      [-11, -1],
+      [11, 11],
+      [-1, 19],
+      [41, -7],
+      [22, -1],
+      [17, -10],
+      [1, 9],
+      [37, -6],
+      [20, 2],
+      [28, -7],
+      [71, -27],
+      [17, -16],
+      [-9958, -15],
+      [3, -12],
+      [28, -11],
+      [2, -9],
+      [12, 1],
+      [20, -19],
+      [16, -2],
+      [-10, -7],
+      [12, -5],
+      [0, 10],
+      [12, -7],
+      [8, -20],
+      [10, -2],
+      [-3, -18],
+      [5, -13],
+      [-7, -6],
+      [14, -8],
+      [-1, -14],
+      [17, 13],
+      [-11, 3],
+      [9, 6],
+      [-2, 17],
+      [-9, 6],
+      [27, 1],
+      [20, -12],
+      [-5, 9],
+      [32, -6],
+      [10, -17],
+      [13, -7],
+      [10, -17],
+      [5, 4],
+      [17, -14],
+      [-9, 0],
+      [-14, -11],
+      [-5, -15],
+      [-21, 13],
+      [11, -20],
+      [-32, 3],
+      [4, -27],
+      [-19, -12],
+      [-8, -11],
+      [16, -5],
+      [6, -9],
+      [-13, -1],
+      [-12, -9],
+      [-23, 10],
+      [-2, 8],
+      [-16, 10],
+      [-33, 12],
+      [-4, 29],
+      [-29, 10],
+      [-12, -10],
+      [-30, 4],
+      [-11, 27],
+      [9, 7],
+      [2, 15],
+      [-7, -11],
+      [-28, -4],
+      [0, -16],
+      [13, -11],
+      [-7, -23],
+      [9982, -11],
+      [-10, -13],
+      [-34, -9],
+      [-21, 8],
+      [-1, 8],
+      [-16, 9],
+      [12, -16],
+      [-24, 2],
+      [-11, 7],
+      [20, -23],
+      [20, 12],
+      [-3, -16],
+      [17, -17],
+      [8, 8],
+      [12, -25],
+      [2, -16],
+      [-5, -13],
+      [18, -9],
+      [2, -20],
+      [7, -16],
+      [-12, -7],
+      [0, -10],
+      [-28, 12],
+      [-22, 3],
+      [-10, 16],
+      [2, -16],
+      [-21, -16],
+      [-25, -11],
+      [-25, -18],
+      [-12, 2],
+      [-7, -10],
+      [-8, 4],
+      [-1, -10],
+      [-10, -10],
+      [-11, 2],
+      [5, -8],
+      [-22, -13],
+      [-3, -12],
+      [-17, -4],
+      [-1, -9],
+      [-15, -7],
+      [-10, -16],
+      [-6, -18],
+      [-8, 8],
+      [-7, 21],
+      [-13, 9],
+      [-32, 0],
+      [-35, -20],
+      [-16, -23],
+      [-4, 0],
+      [8, 39],
+      [-33, -24],
+      [-5, -14],
+      [-7, -2],
+      [-2, 11],
+      [-30, 3],
+      [2, -9],
+      [-9, -4],
+      [-5, -19],
+      [4, -12],
+      [-12, -10],
+      [4, -10],
+      [-18, -16],
+      [-10, -26],
+      [1, -19],
+      [13, -7],
+      [1, 11],
+      [18, -8],
+      [3, -6],
+      [-15, -21],
+      [1, -36],
+      [11, 1],
+      [4, -32],
+      [-9, -10],
+      [-12, 13],
+      [8, 11],
+      [-6, 4],
+      [-8, -7],
+      [6, -6],
+      [-16, -12],
+      [-7, -25],
+      [-1, -16],
+      [11, -34],
+      [-11, -14],
+      [-13, -1],
+      [-6, 6],
+      [-15, -9],
+      [-13, -15],
+      [-6, -22],
+      [4, -13],
+      [-3, -6],
+      [5, -22],
+      [-13, 10],
+      [-9, -5],
+      [-21, -25],
+      [1, -26],
+      [-7, -19],
+      [-10, -20],
+      [-11, -7],
+      [-2, -8],
+      [-17, -22],
+      [-9, 17],
+      [-1, 40],
+      [-4, 33],
+      [-7, 23],
+      [-4, 46],
+      [-9, 60],
+      [-2, 29],
+      [4, 46],
+      [6, 29],
+      [6, 15],
+      [17, 15],
+      [7, 17],
+      [-5, 22],
+      [16, 0],
+      [7, 14],
+      [15, 0],
+      [20, 19],
+      [24, 33],
+      [3, 13],
+      [13, 12],
+      [5, 12],
+      [8, 2],
+      [18, 25],
+      [14, 14],
+      [-1, 8],
+      [30, 21],
+      [21, 9],
+      [-8, 4],
+      [15, 18],
+      [-7, 9],
+      [8, 12],
+      [2, 33],
+      [14, 12],
+      [17, -5],
+      [-18, 17],
+      [-15, -1],
+      [-22, -8],
+      [3, -11],
+      [-8, -6],
+      [3, -9],
+      [-6, -15],
+      [10, -9],
+      [-10, -7],
+      [-5, 11],
+      [-10, -2],
+      [-12, -18],
+      [-32, -32],
+      [-19, -14],
+      [8, 27],
+      [-17, -7],
+      [5, 11],
+      [-3, 9],
+      [14, 29],
+      [-3, 10],
+      [-12, -14],
+      [-10, -2],
+      [-3, 12],
+      [-13, 2],
+      [-26, -10],
+      [-15, 3],
+      [-22, -15],
+      [-1, -18],
+      [-20, -20],
+      [0, -9],
+      [-27, -20],
+      [-13, -28],
+      [-7, -1],
+      [-2, -23],
+      [14, 5],
+      [16, -14],
+      [-1, -7],
+      [-11, -3],
+      [-8, 5],
+      [-13, -10],
+      [-19, 11],
+      [0, -8],
+      [-10, -2],
+      [-2, -8],
+      [-16, 8],
+      [-9, -11],
+      [-17, -2],
+      [-9, 15],
+      [10, 4],
+      [18, -1],
+      [6, 4],
+      [-15, 8],
+      [-10, 14],
+      [-13, -8],
+      [-12, 2],
+      [-2, 7],
+      [-23, 8],
+      [-16, -8],
+      [5, -5],
+      [-14, -5],
+      [6, -12],
+      [-14, 2],
+      [-2, 7],
+      [-12, 0],
+      [-10, -9],
+      [-31, 13],
+      [-3, -16],
+      [-8, -3],
+      [-6, 9],
+      [4, 6],
+      [-27, -1],
+      [-32, 2],
+      [-19, -3],
+      [-25, -13],
+      [-19, -30],
+      [-17, -11],
+      [-8, -13],
+      [-5, -20],
+      [-15, -9],
+      [-4, -11],
+      [-11, -12],
+      [-14, -9],
+      [-22, -32],
+      [-12, -26],
+      [-26, -27],
+      [-8, -4],
+      [-15, -23],
+      [-19, -15],
+      [0, -12],
+      [14, -9],
+      [30, 5],
+      [0, -28],
+      [-4, -21],
+      [12, 0],
+      [5, 14],
+      [-6, 6],
+      [10, 10],
+      [8, -2],
+      [-8, -11],
+      [9, -11],
+      [-12, -22],
+      [16, 4],
+      [11, 9],
+      [7, 14],
+      [1, -9],
+      [-10, -15],
+      [7, -3],
+      [8, 26],
+      [-1, 20],
+      [16, -8],
+      [9, 5],
+      [17, -12],
+      [0, -11],
+      [27, -32],
+      [6, -10],
+      [-13, -12],
+      [8, -5],
+      [1, -15],
+      [-4, -13],
+      [11, -12],
+      [-6, -3],
+      [3, -9],
+      [-9, -16],
+      [-6, -3],
+      [0, -12],
+      [-6, -8],
+      [0, -18],
+      [-4, -4],
+      [-3, -20],
+      [1, -32],
+      [3, -23],
+      [-6, -17],
+      [1, -17],
+      [-6, -17],
+      [0, -14],
+      [-26, -38],
+      [-7, -28],
+      [-13, -18],
+      [-5, -27],
+      [-18, -41],
+      [-15, -25],
+      [-10, -11],
+      [-8, -20],
+      [-6, -6],
+      [-5, -15],
+      [-7, -5],
+      [-11, -25],
+      [-3, -14],
+      [-5, 0],
+      [-1, -12],
+      [-18, -20],
+      [-9, -6],
+      [-7, -11],
+      [-8, 0],
+      [-12, -10],
+      [-6, 7],
+      [-4, -4],
+      [-12, 10],
+      [-3, -4],
+      [-1, 23],
+      [-9, -11],
+      [1, 15],
+      [-16, -21],
+      [-1, -11],
+      [-14, -11],
+      [-4, -17]
+    ],
+    [
+      [7858, 9748],
+      [0, -12],
+      [30, 4],
+      [14, -16],
+      [16, -1],
+      [8, -19],
+      [-16, -10],
+      [-31, -5],
+      [-68, -3],
+      [-33, -14],
+      [-21, 5],
+      [21, 17],
+      [6, 19],
+      [36, 39],
+      [19, -6],
+      [2, 11],
+      [17, -9]
+    ],
+    [
+      [7118, 9769],
+      [37, -6],
+      [-27, -3],
+      [-10, 9]
+    ],
+    [
+      [7523, 9794],
+      [79, -8],
+      [-18, -13],
+      [-55, 8],
+      [-6, 13]
+    ],
+    [
+      [6659, 9787],
+      [-27, 3],
+      [21, 7],
+      [6, -10]
+    ],
+    [
+      [7715, 9797],
+      [-5, -21],
+      [25, 17],
+      [20, 0],
+      [24, -16],
+      [-9, -24],
+      [-19, -5],
+      [25, -18],
+      [-39, -10],
+      [-38, 4],
+      [-11, 8],
+      [-50, 2],
+      [-18, 12],
+      [-1, 14],
+      [-33, 3],
+      [29, 14],
+      [23, 19],
+      [77, 1]
+    ],
+    [
+      [6585, 9810],
+      [-4, -16],
+      [-28, 0],
+      [1, 14],
+      [31, 2]
+    ],
+    [
+      [6481, 9813],
+      [15, -7],
+      [-35, -6],
+      [20, 13]
+    ],
+    [
+      [6646, 9809],
+      [-52, -12],
+      [-13, 20],
+      [42, 0],
+      [23, -8]
+    ],
+    [
+      [6329, 9836],
+      [-38, -20],
+      [-39, 11],
+      [77, 9]
+    ],
+    [
+      [6729, 9835],
+      [-5, -10],
+      [-29, -12],
+      [-38, 1],
+      [-13, 13],
+      [14, 11],
+      [65, 2],
+      [6, -5]
+    ],
+    [
+      [6537, 9839],
+      [-13, -8],
+      [-22, 8],
+      [35, 0]
+    ],
+    [
+      [6388, 9840],
+      [7, -8],
+      [30, 3],
+      [-9, -14],
+      [-60, -9],
+      [4, -14],
+      [-38, -4],
+      [16, 15],
+      [-22, 8],
+      [63, 10],
+      [-18, 7],
+      [27, 6]
+    ],
+    [
+      [7225, 9845],
+      [-28, -9],
+      [2, 9],
+      [26, 0]
+    ],
+    [
+      [6560, 9854],
+      [57, -11],
+      [-29, -1],
+      [-28, 12]
+    ],
+    [
+      [6542, 9848],
+      [13, 2],
+      [47, -13],
+      [-19, -7],
+      [-41, 18]
+    ],
+    [
+      [6797, 9859],
+      [20, -16],
+      [-28, -11],
+      [-36, -3],
+      [-17, 9],
+      [46, 10],
+      [15, 11]
+    ],
+    [
+      [7536, 9852],
+      [-37, 1],
+      [2, 7],
+      [38, -2],
+      [-3, -6]
+    ],
+    [
+      [7665, 9859],
+      [54, -29],
+      [-20, -3],
+      [0, -24],
+      [-75, -6],
+      [-22, -7],
+      [-63, 20],
+      [36, 9],
+      [15, 17],
+      [-22, -3],
+      [16, 14],
+      [81, 12]
+    ],
+    [
+      [6577, 9869],
+      [28, -6],
+      [-38, -6],
+      [10, 12]
+    ],
+    [
+      [6605, 9878],
+      [14, -9],
+      [-44, 4],
+      [30, 5]
+    ],
+    [
+      [5846, 5121],
+      [2, -14],
+      [5, -5],
+      [3, -11],
+      [1, -26],
+      [-1, -18],
+      [-8, -2]
+    ],
+    [
+      [5801, 5040],
+      [6, 7],
+      [8, 22],
+      [-4, 17]
+    ],
+    [
+      [5821, 5103],
+      [7, 4],
+      [4, -9],
+      [5, 7],
+      [5, 16],
+      [4, 0]
+    ],
+    [
+      [4526, 6379],
+      [-1, 15],
+      [2, 22]
+    ],
+    [
+      [6163, 6147],
+      [4, 4],
+      [4, -6],
+      [-8, 2]
+    ],
+    [
+      [6345, 6826],
+      [6, -29],
+      [6, -11],
+      [0, -14],
+      [11, -4],
+      [-4, -5],
+      [5, -5],
+      [11, -23],
+      [8, -6],
+      [0, -16],
+      [6, -10],
+      [-2, -18],
+      [-4, 4],
+      [7, -31],
+      [8, -17],
+      [0, -12],
+      [8, -21]
+    ],
+    [
+      [6422, 6601],
+      [7, -4],
+      [-5, -9],
+      [8, -8]
+    ],
+    [
+      [6443, 6277],
+      [-4, -2],
+      [-58, -16],
+      [-17, -4],
+      [-27, -27],
+      [-16, -40],
+      [-3, -19],
+      [-9, -11],
+      [-5, 1],
+      [-7, 19],
+      [-11, -3],
+      [-25, 5],
+      [-5, 6],
+      [-16, 1],
+      [-15, -5],
+      [-11, 0],
+      [-7, 10],
+      [-9, -11],
+      [-1, -24],
+      [2, -15],
+      [-11, -16]
+    ],
+    [
+      [6188, 6126],
+      [-2, 21],
+      [-5, 8],
+      [0, 8],
+      [-6, 9],
+      [0, 15],
+      [-15, 23],
+      [-9, 25],
+      [0, 8],
+      [-7, 16],
+      [-2, 14],
+      [-11, 49],
+      [-18, 29],
+      [-9, 3],
+      [-6, 13],
+      [-13, 43],
+      [3, 7],
+      [-7, 28],
+      [4, 20],
+      [0, 19],
+      [-8, 23],
+      [0, 8],
+      [-14, 46],
+      [-18, 21],
+      [-2, -3],
+      [-12, 35],
+      [3, 0],
+      [0, 20],
+      [-4, 7],
+      [-4, 18],
+      [-8, 11],
+      [1, 11],
+      [-5, 5],
+      [-8, 30],
+      [-4, 7],
+      [-8, 26],
+      [-7, 15],
+      [-6, 24],
+      [-8, 14],
+      [-6, -3],
+      [-6, 7],
+      [5, 20],
+      [4, 47]
+    ],
+    [
+      [6024, 6449],
+      [0, -20],
+      [6, -21],
+      [2, -34],
+      [2, -65],
+      [5, -40],
+      [4, -8],
+      [10, -8],
+      [5, -9],
+      [1, -10],
+      [10, -6],
+      [3, -8]
+    ],
+    [
+      [5946, 5727],
+      [-6, 5],
+      [3, 17],
+      [-2, 21],
+      [-20, 35],
+      [-3, 45],
+      [2, 5],
+      [2, 31],
+      [-13, 0],
+      [0, -12],
+      [-18, 0],
+      [7, -17],
+      [0, -27],
+      [2, -11],
+      [-14, -24],
+      [-1, -9],
+      [-18, -39],
+      [-13, -4],
+      [-14, 23],
+      [-7, 8],
+      [-11, -12],
+      [-4, -17],
+      [-13, -9],
+      [-5, -10],
+      [1, -6],
+      [-23, 0],
+      [-4, 15],
+      [-22, 1],
+      [-14, -7],
+      [-11, 27],
+      [-8, 12],
+      [-2, 15],
+      [-21, -7],
+      [-3, -21],
+      [-5, -6],
+      [0, -19],
+      [-3, -6],
+      [-3, -29],
+      [-11, -12]
+    ],
+    [
+      [5634, 5812],
+      [3, 13],
+      [-1, 15],
+      [-4, -1],
+      [-7, 16],
+      [3, 23],
+      [-5, -2],
+      [0, 34],
+      [-7, 7],
+      [-6, -7],
+      [-5, 9],
+      [6, 21],
+      [7, 14],
+      [-5, 25],
+      [4, 9],
+      [9, 9],
+      [-4, 7],
+      [-1, 18],
+      [8, 6],
+      [0, 10],
+      [7, 15],
+      [2, 15],
+      [-2, 11],
+      [7, 9],
+      [12, 2],
+      [11, -2],
+      [0, 218]
+    ],
+    [
+      [5943, 5426],
+      [-14, -28],
+      [-9, 2],
+      [-3, 6],
+      [-5, -5],
+      [-13, -3],
+      [-6, -13],
+      [-7, 5],
+      [-4, 12],
+      [-7, -8],
+      [-11, 7],
+      [-8, -17]
+    ],
+    [
+      [4535, 5893],
+      [-1, 42]
+    ],
+    [
+      [4540, 5965],
+      [-5, 11],
+      [-1, 13],
+      [-14, 41],
+      [-8, 3],
+      [11, 9],
+      [8, 18],
+      [9, 33]
+    ],
+    [
+      [7884, 5266],
+      [4, -3],
+      [-4, -7],
+      [-7, 2],
+      [7, 8]
+    ],
+    [
+      [3953, 2073],
+      [22, -4],
+      [11, -7],
+      [17, -21],
+      [3, -11],
+      [-10, -7],
+      [-10, 20],
+      [-12, 11],
+      [-22, 11],
+      [1, 8]
+    ],
+    [
+      [9445, 4521],
+      [15, -17],
+      [-6, 0],
+      [-3, 9],
+      [-8, 4],
+      [2, 4]
+    ],
+    [
+      [9612, 4569],
+      [-6, -12],
+      [-3, 7],
+      [9, 5]
+    ],
+    [
+      [9481, 4595],
+      [13, -14],
+      [8, 0],
+      [5, -13],
+      [0, -8],
+      [-12, 4],
+      [-9, 10],
+      [-1, 11],
+      [-6, 3],
+      [2, 7]
+    ],
+    [
+      [9483, 4641],
+      [4, -12],
+      [0, -10],
+      [-5, 7],
+      [1, 15]
+    ],
+    [
+      [9442, 4640],
+      [13, 0],
+      [11, -20],
+      [-4, -9],
+      [-10, 7],
+      [-13, 1],
+      [-6, 13],
+      [0, 16],
+      [3, 2],
+      [6, -10]
+    ],
+    [
+      [9388, 4691],
+      [3, -9],
+      [-6, 0],
+      [3, 9]
+    ],
+    [
+      [9371, 4689],
+      [-5, 3],
+      [5, 6],
+      [0, -9]
+    ],
+    [
+      [9466, 4701],
+      [6, -16],
+      [-2, -11],
+      [5, -5],
+      [7, -34],
+      [-14, 21],
+      [-3, 10],
+      [-5, 37],
+      [6, -2]
+    ],
+    [
+      [9378, 4711],
+      [4, -3],
+      [3, -19],
+      [-7, 4],
+      [-2, 13],
+      [-9, -2],
+      [-1, 6],
+      [6, 13],
+      [5, -1],
+      [1, -11]
+    ],
+    [
+      [9365, 4716],
+      [-5, 1],
+      [-1, 9],
+      [4, 5],
+      [2, -15]
+    ],
+    [
+      [9349, 4747],
+      [6, -9],
+      [-4, -9],
+      [-5, 14],
+      [3, 4]
+    ],
+    [
+      [9405, 4746],
+      [4, 0],
+      [9, -16],
+      [12, -12],
+      [9, -15],
+      [1, -13],
+      [-7, 12],
+      [-11, 9],
+      [-18, 25],
+      [-3, 13],
+      [4, -3]
+    ],
+    [
+      [9349, 4800],
+      [13, -15],
+      [3, -16],
+      [10, -7],
+      [-2, -7],
+      [-15, 13],
+      [-7, 18],
+      [-6, 9],
+      [4, 5]
+    ],
+    [
+      [4650, 5621],
+      [2, -12],
+      [-12, 10],
+      [10, 2]
+    ],
+    [
+      [4681, 5581],
+      [-6, 9],
+      [-23, 18],
+      [1, 15],
+      [-7, 4],
+      [-6, 10],
+      [2, 3],
+      [-3, 18],
+      [-5, -4],
+      [-3, 18],
+      [7, 1],
+      [-6, 7],
+      [0, 11],
+      [4, 7],
+      [-6, 5]
+    ],
+    [
+      [2560, 5955],
+      [-2, -14],
+      [-12, 0],
+      [-13, 5],
+      [-14, 14],
+      [-14, 2],
+      [-8, 11]
+    ],
+    [
+      [6359, 5831],
+      [0, -104],
+      [-27, -84]
+    ],
+    [
+      [6201, 5844],
+      [18, -44],
+      [13, -18],
+      [15, 0],
+      [11, 15],
+      [4, 0],
+      [10, 12],
+      [11, -4],
+      [6, -7],
+      [6, 4],
+      [21, 25],
+      [8, -5],
+      [14, 3],
+      [9, 10],
+      [12, -4]
+    ],
+    [
+      [6359, 5831],
+      [14, 5],
+      [4, 7],
+      [7, 0],
+      [12, 7],
+      [13, 23],
+      [15, -9],
+      [-5, -19],
+      [-1, -18],
+      [2, -35],
+      [8, -8],
+      [-14, -6],
+      [-3, -53],
+      [-4, -8],
+      [-1, -12],
+      [-6, -10],
+      [-3, -22],
+      [-6, -20],
+      [-8, -13],
+      [0, -11],
+      [-6, -25],
+      [-10, -29],
+      [-4, -29],
+      [-12, -48],
+      [-13, -33],
+      [-7, -26],
+      [-12, -30],
+      [-14, -28],
+      [-10, -24],
+      [-9, -15],
+      [-8, -19],
+      [-21, -26],
+      [-8, -7],
+      [-18, -27],
+      [-8, -17],
+      [-10, -15],
+      [-22, -48],
+      [-11, -21],
+      [-18, -49],
+      [-9, -28]
+    ],
+    [
+      [5183, 5187],
+      [-3, -2],
+      [-1, 13],
+      [5, 8],
+      [3, -11],
+      [-4, -8]
+    ],
+    [
+      [3409, 5499],
+      [3, 3],
+      [1, 20],
+      [5, 7],
+      [8, -2],
+      [20, -10],
+      [2, 10],
+      [33, 0],
+      [18, -8],
+      [-1, -20],
+      [-3, -8]
+    ],
+    [
+      [5626, 8009],
+      [-12, -39]
+    ],
+    [
+      [5377, 7802],
+      [3, 6]
+    ],
+    [
+      [5474, 8485],
+      [-7, -30],
+      [-12, -34],
+      [0, 19],
+      [19, 45]
+    ],
+    [
+      [5521, 8514],
+      [8, 1],
+      [-8, -14],
+      [-2, -22],
+      [-10, -8],
+      [-5, 7],
+      [-1, 19],
+      [10, 16],
+      [8, 1]
+    ],
+    [
+      [5327, 8537],
+      [-2, -9],
+      [-9, 3],
+      [11, 6]
+    ],
+    [
+      [5671, 8973],
+      [-41, -2],
+      [-9, 5],
+      [1, -19],
+      [-16, 0],
+      [3, -8],
+      [-13, 0],
+      [4, -13],
+      [-10, -13],
+      [-4, -15],
+      [12, -15],
+      [-17, -17],
+      [-4, -15],
+      [-13, -13],
+      [-8, 1],
+      [-11, -13],
+      [-32, -24],
+      [0, -9],
+      [-17, -3],
+      [5, -11],
+      [-5, -7],
+      [-15, -2],
+      [5, -14],
+      [-5, -29],
+      [-7, -9],
+      [5, -32],
+      [0, -18],
+      [10, -10],
+      [10, 4],
+      [14, -25],
+      [9, -2],
+      [6, -19],
+      [-20, -23],
+      [-6, 3],
+      [8, -16],
+      [-17, -16],
+      [-18, -13],
+      [-13, -2],
+      [8, -8],
+      [-6, -3],
+      [3, -15],
+      [-10, -16],
+      [6, -8],
+      [0, -17],
+      [-6, -10],
+      [-3, -37],
+      [-3, 0],
+      [-6, -23],
+      [-5, -8],
+      [-6, 5],
+      [-27, -3],
+      [-11, -14],
+      [-2, -11],
+      [5, -10],
+      [-6, -9],
+      [-11, 3],
+      [-10, -5],
+      [-14, 2],
+      [4, 15],
+      [-14, 31],
+      [8, 6],
+      [-6, 8],
+      [8, 2],
+      [-15, 26],
+      [-18, 47],
+      [4, 27],
+      [-4, 8],
+      [-9, -4],
+      [-4, 9],
+      [-1, 39],
+      [6, -6]
+    ],
+    [
+      [5891, 3637],
+      [-3, 2],
+      [-1, -29],
+      [-12, 0],
+      [-11, 7],
+      [-9, 22],
+      [0, 24],
+      [7, 17],
+      [1, 10],
+      [8, 11],
+      [14, -15],
+      [2, 2]
+    ],
+    [
+      [3249, 6221],
+      [-2, 2]
+    ],
+    [
+      [5999, 7178],
+      [-3, 27],
+      [1, 18],
+      [-4, 4],
+      [1, 20],
+      [3, 4]
+    ],
+    [
+      [5997, 7251],
+      [7, -5],
+      [5, 9],
+      [0, 11],
+      [9, 3],
+      [-4, 14],
+      [4, 21],
+      [8, -5],
+      [2, -7],
+      [12, 0],
+      [5, 6],
+      [18, 10],
+      [10, -11],
+      [16, -3],
+      [21, 8],
+      [20, 17],
+      [22, -1],
+      [16, 7],
+      [4, 7],
+      [4, -12]
+    ],
+    [
+      [5402, 5930],
+      [5, 0],
+      [0, 13],
+      [-4, 3],
+      [-6, -5],
+      [2, -5]
+    ],
+    [
+      [5398, 5936],
+      [-1, 0]
+    ],
+    [
+      [5044, 5541],
+      [-12, -7]
+    ],
+    [
+      [7728, 5654],
+      [6, -7],
+      [0, -10],
+      [-6, -6],
+      [0, 23]
+    ],
+    [
+      [7840, 5883],
+      [5, -11],
+      [-4, 1],
+      [-1, 10]
+    ],
+    [
+      [7858, 5853],
+      [-4, 22],
+      [-5, 11],
+      [-1, -7],
+      [-12, 18],
+      [0, 8],
+      [-5, 0],
+      [-8, 10],
+      [-7, -5],
+      [-16, 5],
+      [3, 15],
+      [-3, 7],
+      [4, 21],
+      [-11, 5],
+      [-15, -8],
+      [-2, -9],
+      [4, -13],
+      [-4, -16],
+      [0, -27],
+      [2, -5],
+      [-7, -15],
+      [0, -11],
+      [-4, -13],
+      [-5, -20],
+      [0, -15],
+      [-9, -32],
+      [2, -7],
+      [-2, -27],
+      [5, -21],
+      [-3, -10],
+      [16, 5],
+      [4, -12],
+      [1, -29],
+      [9, -16],
+      [0, -12],
+      [4, -37],
+      [4, -16],
+      [-4, 4],
+      [-3, 29],
+      [-6, -2],
+      [2, -13],
+      [6, -18],
+      [6, 0],
+      [9, -18],
+      [12, 1],
+      [6, -4],
+      [6, -21],
+      [7, -12]
+    ],
+    [
+      [7780, 5554],
+      [-4, 13],
+      [-8, 12],
+      [2, 14],
+      [-6, 2],
+      [-5, 10],
+      [-2, 18],
+      [-7, 5],
+      [1, 7],
+      [-5, 11],
+      [-4, 1],
+      [-3, 18],
+      [-5, -2],
+      [-2, -12],
+      [-4, 5],
+      [-2, 18],
+      [2, 14],
+      [4, 19],
+      [0, 16],
+      [3, 16],
+      [7, 40]
+    ],
+    [
+      [6962, 7540],
+      [0, 0]
+    ],
+    [
+      [6882, 7324],
+      [1, 20],
+      [12, 24],
+      [3, 15],
+      [-7, 12],
+      [-2, 14],
+      [4, 10],
+      [-2, 9],
+      [-12, 1],
+      [0, 7],
+      [-9, 4],
+      [2, 16],
+      [8, 9],
+      [18, -6],
+      [7, 6],
+      [0, 11],
+      [8, 4],
+      [1, 14],
+      [-10, 2],
+      [13, 4],
+      [7, -3],
+      [1, 9],
+      [-4, 11],
+      [5, 14],
+      [8, -8],
+      [18, 14],
+      [5, 7],
+      [8, -18],
+      [-11, -19],
+      [7, -10],
+      [9, 3]
+    ],
+    [
+      [6497, 7333],
+      [-3, 23],
+      [2, 30],
+      [-1, 22],
+      [4, 15],
+      [-12, 17],
+      [0, 9],
+      [-11, 0],
+      [1, 8],
+      [14, 2],
+      [-9, 14],
+      [6, 10],
+      [-5, 3],
+      [-14, -3],
+      [-5, 6],
+      [0, 25],
+      [4, 9],
+      [2, 19],
+      [4, -11],
+      [13, -1],
+      [5, -8],
+      [16, 6],
+      [1, 12],
+      [8, -6],
+      [3, 14],
+      [-19, 23],
+      [-4, 34],
+      [-6, 5],
+      [-16, -3],
+      [-5, -6],
+      [-5, -17],
+      [4, 0],
+      [-3, -19],
+      [-7, 9],
+      [-3, 13]
+    ],
+    [
+      [6554, 7562],
+      [29, -5],
+      [4, 7],
+      [-4, 7],
+      [-2, 23],
+      [4, 3]
+    ],
+    [
+      [6585, 7597],
+      [4, -18],
+      [11, -2],
+      [7, 14],
+      [-6, 6],
+      [0, 13]
+    ],
+    [
+      [6601, 7610],
+      [5, 1],
+      [4, 19],
+      [7, -2],
+      [-3, 10],
+      [11, 1],
+      [2, 6],
+      [8, -12],
+      [7, -2],
+      [7, -14],
+      [13, 2],
+      [5, -8],
+      [-1, -12],
+      [6, -8],
+      [-5, -4],
+      [4, -10],
+      [-3, -10],
+      [11, -11],
+      [18, 1],
+      [6, -3],
+      [7, 6],
+      [9, -10],
+      [8, -36],
+      [4, -2],
+      [5, -29],
+      [27, -31],
+      [4, -10],
+      [13, -16],
+      [5, 2],
+      [10, -14],
+      [27, -29],
+      [7, 1],
+      [19, -14],
+      [3, -4],
+      [-4, -9],
+      [0, -25]
+    ],
+    [
+      [8444, 4645],
+      [12, 9]
+    ],
+    [
+      [8469, 4667],
+      [5, 9],
+      [1, 10],
+      [20, 8],
+      [10, -1],
+      [6, 5],
+      [3, -4],
+      [11, 10],
+      [11, -6],
+      [-13, -19],
+      [-8, -3],
+      [-4, -9],
+      [-7, -2],
+      [-6, -8],
+      [-10, -3],
+      [-15, -17]
+    ],
+    [
+      [130, 3966],
+      [6, 0],
+      [-1, -7],
+      [-5, 7]
+    ],
+    [
+      [3308, 5807],
+      [-4, -9],
+      [1, -31],
+      [-4, -4],
+      [-14, -1],
+      [-5, 4],
+      [10, 7],
+      [0, 20],
+      [-5, 5],
+      [8, 7],
+      [13, 2]
+    ],
+    [
+      [5303, 7135],
+      [4, -6],
+      [-9, -6],
+      [0, 11],
+      [5, 1]
+    ],
+    [
+      [5238, 7310],
+      [7, 2],
+      [10, 15],
+      [13, 6],
+      [17, -9],
+      [-4, -1],
+      [6, -17],
+      [-5, -4],
+      [10, -3],
+      [14, 20],
+      [3, -14],
+      [-10, -23],
+      [-6, -4],
+      [-3, -16],
+      [6, -18],
+      [11, -10],
+      [-1, -16],
+      [3, -7],
+      [-3, -11],
+      [-12, -28],
+      [-14, -14],
+      [-2, -16],
+      [4, -12],
+      [9, -10],
+      [6, 4],
+      [0, -13],
+      [11, 4],
+      [2, -20],
+      [9, -1]
+    ],
+    [
+      [5778, 7600],
+      [-2, -9],
+      [6, -15],
+      [20, -17],
+      [6, -2],
+      [-3, -13],
+      [-14, -1],
+      [-9, 6],
+      [-6, -7],
+      [-12, 1],
+      [-9, -20],
+      [-14, -10],
+      [-15, -24],
+      [2, 17],
+      [13, 10],
+      [3, 7],
+      [-20, -3],
+      [-1, 9]
+    ],
+    [
+      [5997, 7251],
+      [2, 5],
+      [-6, 17],
+      [12, 18],
+      [0, 11],
+      [-6, 7],
+      [-10, -18],
+      [-8, -3],
+      [-18, 15],
+      [-11, -13],
+      [-17, -26],
+      [-7, 1],
+      [-17, -8],
+      [-13, 9],
+      [-7, 18],
+      [-21, 18],
+      [-18, 5],
+      [-3, -3],
+      [0, -18],
+      [-5, -18],
+      [-4, 6],
+      [-13, -10],
+      [-12, 5],
+      [-7, 9],
+      [0, 16],
+      [-7, -1],
+      [-7, 9],
+      [-10, 3],
+      [-3, -6],
+      [-11, 1],
+      [-2, -6],
+      [-9, 3],
+      [8, 5],
+      [12, 0],
+      [-1, 7],
+      [8, 7],
+      [-15, -3],
+      [-12, 2],
+      [-1, 8],
+      [7, -2],
+      [-10, 13],
+      [0, 14],
+      [-5, 5],
+      [7, 4],
+      [-1, 13],
+      [-17, 7],
+      [-11, 9],
+      [7, 6],
+      [-4, 14],
+      [4, 3],
+      [5, -20],
+      [14, 8],
+      [-7, 0],
+      [-5, 16],
+      [6, 2],
+      [3, 10],
+      [-6, -2],
+      [0, 14],
+      [-6, 9],
+      [9, 16],
+      [-24, -6],
+      [2, 29],
+      [16, 25],
+      [16, 3],
+      [2, -7],
+      [11, -1],
+      [-1, 11],
+      [8, -2],
+      [-2, -7],
+      [11, 3],
+      [19, -3],
+      [1, 7],
+      [-8, 3],
+      [5, 6],
+      [27, 5],
+      [-15, 3],
+      [-11, 13],
+      [6, 13],
+      [19, -6],
+      [11, 5],
+      [15, -8],
+      [9, 1],
+      [7, 11],
+      [29, 28],
+      [14, 6],
+      [10, 9],
+      [28, -6],
+      [10, 0],
+      [10, 9],
+      [1, -10],
+      [6, -11],
+      [9, -5],
+      [10, 6],
+      [4, -16],
+      [8, -13],
+      [5, 8],
+      [12, -5],
+      [0, -6],
+      [13, -8],
+      [8, 0],
+      [15, -7],
+      [32, 11],
+      [4, -6],
+      [14, -5],
+      [12, 7],
+      [24, 20],
+      [3, 7]
+    ],
+    [
+      [8378, 6635],
+      [10, -12],
+      [-5, -8],
+      [1, -22],
+      [-6, -18],
+      [-4, -43],
+      [-3, -19],
+      [-6, -20],
+      [-4, -5],
+      [-4, -17],
+      [-1, -27],
+      [-5, 7],
+      [-1, 16],
+      [-11, 20],
+      [-2, 22],
+      [-3, 0],
+      [2, 15],
+      [0, 20],
+      [17, 58],
+      [3, 3],
+      [4, 18],
+      [12, 7],
+      [2, 9],
+      [4, -4]
+    ],
+    [
+      [6108, 4736],
+      [-7, -14],
+      [1, 11],
+      [6, 3]
+    ],
+    [
+      [6093, 4842],
+      [6, -26],
+      [-4, -4],
+      [-7, 16],
+      [0, 15],
+      [5, -1]
+    ],
+    [
+      [6102, 4899],
+      [5, -11],
+      [-3, -19],
+      [-2, 30]
+    ],
+    [
+      [5914, 5071],
+      [5, -1],
+      [2, -12],
+      [-9, 7],
+      [2, 6]
+    ],
+    [
+      [5882, 5125],
+      [1, 0]
+    ],
+    [
+      [5883, 5125],
+      [1, 0]
+    ],
+    [
+      [5884, 5125],
+      [-1, -28],
+      [-2, 0],
+      [-1, -30],
+      [-2, -20],
+      [4, 2],
+      [0, -28],
+      [2, 8],
+      [4, -3],
+      [0, 13],
+      [5, -3],
+      [-3, 10],
+      [7, 6],
+      [2, -10],
+      [12, -2],
+      [8, 5],
+      [3, -7],
+      [17, 17],
+      [-2, 8],
+      [-4, -6],
+      [-10, 4],
+      [5, 8],
+      [-3, 9],
+      [5, -1],
+      [5, 9],
+      [-1, 12],
+      [6, 0],
+      [-2, 7],
+      [8, 17]
+    ],
+    [
+      [6088, 4913],
+      [1, -10],
+      [-4, -16],
+      [-3, -25],
+      [-5, -21],
+      [2, -26],
+      [5, -5],
+      [12, -22],
+      [2, -15],
+      [-4, -5],
+      [-4, -23],
+      [1, -10],
+      [4, -2],
+      [0, -13],
+      [-4, -14],
+      [2, -25],
+      [4, -7],
+      [0, -16],
+      [4, -4],
+      [0, -15],
+      [4, -21],
+      [-2, -8],
+      [15, -16],
+      [5, -14]
+    ],
+    [
+      [5971, 4516],
+      [-2, 9]
+    ],
+    [
+      [5969, 4527],
+      [-5, 7]
+    ],
+    [
+      [5964, 4536],
+      [-4, 14],
+      [2, 20],
+      [-2, 4],
+      [-1, 30],
+      [-7, 20]
+    ],
+    [
+      [5949, 4630],
+      [-3, 4]
+    ],
+    [
+      [5946, 4635],
+      [-4, -2],
+      [-1, -10]
+    ],
+    [
+      [5914, 4641],
+      [-12, 10],
+      [-3, 6],
+      [-13, 6],
+      [-6, 6],
+      [-4, 13],
+      [-11, 6]
+    ],
+    [
+      [5865, 4688],
+      [0, 10],
+      [-4, 5],
+      [-1, 11],
+      [-11, 36],
+      [1, 11],
+      [-3, 8],
+      [2, 12],
+      [-5, 9],
+      [-7, 21],
+      [-6, -1],
+      [-6, 12],
+      [0, 13],
+      [6, 7],
+      [-5, 32],
+      [1, 21],
+      [-6, 5],
+      [2, 27]
+    ],
+    [
+      [5846, 5121],
+      [10, 4],
+      [26, 0]
+    ],
+    [
+      [5883, 5125],
+      [1, 0]
+    ],
+    [
+      [5944, 5197],
+      [-8, -3],
+      [1, 8],
+      [-8, -8],
+      [-3, 15],
+      [-5, -3],
+      [-2, -12],
+      [-6, -7],
+      [0, 7],
+      [-6, -6],
+      [0, 10],
+      [-8, -17],
+      [-9, 0],
+      [-4, -9],
+      [3, -7],
+      [-9, -26],
+      [2, -14]
+    ],
+    [
+      [5823, 5155],
+      [5, 6],
+      [2, 14],
+      [-6, 2]
+    ],
+    [
+      [5846, 5254],
+      [4, -12],
+      [9, 28],
+      [10, 11],
+      [3, 11],
+      [-1, 25],
+      [-3, -9]
+    ],
+    [
+      [6061, 7895],
+      [-18, 0],
+      [-6, -11],
+      [-4, 2],
+      [-12, -13],
+      [-4, 3],
+      [-22, -8],
+      [-14, -18],
+      [-4, 3],
+      [-11, -12],
+      [4, -22],
+      [15, -28],
+      [18, 10],
+      [13, -3],
+      [-5, -9],
+      [1, -11],
+      [-17, -4],
+      [-9, 7],
+      [-4, -10],
+      [-23, -12],
+      [-12, -18],
+      [-10, -2],
+      [-11, 11],
+      [5, 5],
+      [1, 24],
+      [-8, 3],
+      [-11, 13],
+      [-9, -2],
+      [-1, 8],
+      [24, 21],
+      [8, 2],
+      [-1, 14],
+      [-6, -3],
+      [-5, 10],
+      [-3, -6],
+      [-18, -3],
+      [-17, 14],
+      [4, 8],
+      [-7, 6],
+      [17, -5],
+      [4, 9],
+      [-11, -4],
+      [-6, 5],
+      [-25, -2],
+      [-24, -46],
+      [-5, 1],
+      [-10, -23],
+      [4, 2],
+      [-3, -14]
+    ],
+    [
+      [5836, 7853],
+      [9, -17],
+      [2, 3],
+      [-11, 14]
+    ],
+    [
+      [5948, 7848],
+      [0, -9],
+      [-11, 7],
+      [3, -13],
+      [4, 5],
+      [21, -17],
+      [6, -8],
+      [4, -20],
+      [9, -4],
+      [-12, 23],
+      [-7, 26],
+      [-10, -6],
+      [-7, 16]
+    ],
+    [
+      [3523, 3302],
+      [-5, -5],
+      [0, -12],
+      [-8, -5],
+      [3, -30]
+    ],
+    [
+      [3517, 3240],
+      [-4, -18],
+      [-7, -13],
+      [0, -7],
+      [-13, -16],
+      [-20, -17],
+      [-12, 10],
+      [-14, 0],
+      [-7, -8],
+      [-20, 15],
+      [-8, 13],
+      [-18, -1],
+      [-16, 29],
+      [-2, 10],
+      [3, 27],
+      [-1, 10],
+      [9, 9],
+      [-4, 31]
+    ],
+    [
+      [677, 6342],
+      [13, -11],
+      [2, -12],
+      [8, -13],
+      [-6, -10],
+      [-16, -13],
+      [-3, -11],
+      [-7, 9],
+      [1, 15],
+      [-4, 25],
+      [5, 12],
+      [-1, 17],
+      [8, -8]
+    ],
+    [
+      [649, 6394],
+      [3, -7],
+      [7, 2],
+      [8, -8],
+      [0, -7],
+      [-9, -6],
+      [-4, 2],
+      [0, 10],
+      [-7, 7],
+      [2, 7]
+    ],
+    [
+      [631, 6405],
+      [16, -4],
+      [-2, -5],
+      [-15, 2],
+      [1, 7]
+    ],
+    [
+      [613, 6427],
+      [6, -8],
+      [1, -12],
+      [-13, 2],
+      [-3, 14],
+      [7, 10],
+      [2, -6]
+    ],
+    [
+      [571, 6463],
+      [4, -3],
+      [-1, -14],
+      [-8, -3],
+      [-6, 11],
+      [11, 9]
+    ],
+    [
+      [2301, 6687],
+      [-6, 35],
+      [0, 12],
+      [6, -47]
+    ],
+    [
+      [2761, 6828],
+      [-2, -18],
+      [-2, 17],
+      [4, 1]
+    ],
+    [
+      [2366, 6873],
+      [3, -1],
+      [-11, -13],
+      [8, 14]
+    ],
+    [
+      [1707, 7111],
+      [7, -9],
+      [-6, 0],
+      [-1, 9]
+    ],
+    [
+      [1671, 7144],
+      [8, -4],
+      [-8, -2],
+      [0, 6]
+    ],
+    [
+      [2993, 7551],
+      [-6, -11],
+      [8, 7],
+      [8, -1],
+      [-20, -15],
+      [-36, -12],
+      [-4, 1],
+      [4, 11],
+      [7, 6],
+      [29, 6],
+      [10, 8]
+    ],
+    [
+      [2582, 7791],
+      [0, -10],
+      [-7, -17],
+      [-3, 8],
+      [10, 19]
+    ],
+    [
+      [2679, 7836],
+      [1, -8],
+      [-10, 3],
+      [9, 5]
+    ],
+    [
+      [2563, 7913],
+      [-19, -17],
+      [-6, 0],
+      [5, 14],
+      [8, 6],
+      [12, -3]
+    ],
+    [
+      [2541, 7956],
+      [-2, -6],
+      [-15, -14],
+      [0, 8],
+      [17, 12]
+    ],
+    [
+      [1595, 7969],
+      [-3, -9],
+      [8, -13],
+      [-1, -5],
+      [-9, 17],
+      [5, 10]
+    ],
+    [
+      [1582, 8004],
+      [-1, 0]
+    ],
+    [
+      [2511, 7947],
+      [-14, -11],
+      [-19, -11],
+      [-20, -29],
+      [-17, -21],
+      [9, -3],
+      [22, 14],
+      [6, 0],
+      [-5, -19],
+      [14, -2],
+      [11, 5],
+      [7, 9],
+      [14, 4],
+      [10, 7],
+      [7, 13],
+      [7, -14],
+      [-1, -10],
+      [10, 6],
+      [9, -1],
+      [12, -22],
+      [11, 0],
+      [9, -4],
+      [14, 14],
+      [18, -2],
+      [13, 6],
+      [0, -17],
+      [15, -1]
+    ],
+    [
+      [2663, 7852],
+      [-3, -10],
+      [9, -12],
+      [-16, 1],
+      [-5, 4],
+      [-2, -11],
+      [-7, 9],
+      [-15, 5],
+      [-3, -7],
+      [-25, -7],
+      [-13, 0],
+      [-15, -39],
+      [-3, -12],
+      [-10, -17],
+      [2, -8],
+      [10, 17],
+      [7, -3],
+      [-11, -49],
+      [1, -13],
+      [-6, -26],
+      [0, -14],
+      [4, -15],
+      [-2, -28],
+      [9, -33],
+      [8, -4],
+      [16, 14],
+      [7, 22],
+      [5, 26],
+      [0, 15],
+      [-9, 37],
+      [3, 10],
+      [-3, 17],
+      [8, 20],
+      [0, 14],
+      [5, 15],
+      [7, 2],
+      [7, 15],
+      [-3, -22],
+      [4, -4],
+      [4, 14],
+      [0, 16],
+      [11, 5],
+      [-3, 15],
+      [9, 10],
+      [13, -8],
+      [6, -11],
+      [16, -7],
+      [6, -13],
+      [-4, -11],
+      [4, -6],
+      [-1, -28],
+      [-6, -5],
+      [-1, -13],
+      [-7, -2],
+      [-3, -18],
+      [6, -5],
+      [7, 6],
+      [6, 16],
+      [9, 5],
+      [7, -10],
+      [4, -37],
+      [3, -14]
+    ],
+    [
+      [2704, 7634],
+      [-5, 5],
+      [-3, -17],
+      [-6, -8],
+      [-3, -17],
+      [-6, -12],
+      [15, -11],
+      [7, 0],
+      [5, -7],
+      [9, 4],
+      [14, 3],
+      [9, 12],
+      [24, 15],
+      [26, 21],
+      [14, 21],
+      [5, 2],
+      [-1, 17],
+      [-5, 3]
+    ],
+    [
+      [2804, 7674],
+      [10, 6],
+      [16, 2],
+      [13, -8],
+      [18, 0],
+      [8, 5],
+      [15, 19],
+      [-3, 9],
+      [4, 4],
+      [-7, 11],
+      [15, 16],
+      [1, 7]
+    ],
+    [
+      [3116, 7818],
+      [10, -9]
+    ],
+    [
+      [3134, 7784],
+      [3, -9],
+      [-3, -20],
+      [-20, -16],
+      [-6, 5],
+      [-13, -5],
+      [1, -9],
+      [-12, 11],
+      [-3, -22],
+      [-14, -14],
+      [-10, 3],
+      [-8, -8],
+      [1, -9],
+      [-11, -15],
+      [-6, -22],
+      [1, -15],
+      [5, 1],
+      [-13, -19],
+      [9, -7],
+      [5, -23],
+      [17, -8],
+      [-14, -3],
+      [-6, -6],
+      [0, 11],
+      [-15, -14],
+      [0, 12],
+      [-5, 5],
+      [-1, -17],
+      [-12, -9],
+      [-29, -2],
+      [-6, -9],
+      [-8, -1],
+      [-23, -27],
+      [-1, -10],
+      [8, -1],
+      [-2, -29],
+      [-3, -14],
+      [-7, -9],
+      [-1, -11],
+      [-12, -24],
+      [-1, 15],
+      [-7, 2],
+      [-10, 13],
+      [3, -23],
+      [9, -21],
+      [1, -16],
+      [-10, -31],
+      [-7, -13],
+      [-8, -30],
+      [-2, 11],
+      [4, 20],
+      [6, 17],
+      [-6, -2],
+      [1, 9],
+      [-13, 21],
+      [-1, 17],
+      [4, 11],
+      [-2, 15],
+      [11, 15],
+      [-5, 0],
+      [-11, -10],
+      [2, -16],
+      [-4, -6],
+      [0, -23],
+      [4, -6],
+      [1, -20],
+      [-9, 11],
+      [-8, -2],
+      [9, -4],
+      [11, -13],
+      [-2, -17],
+      [-6, 3],
+      [8, -12],
+      [-7, -12],
+      [6, -8],
+      [-4, -8],
+      [12, -4],
+      [5, -35],
+      [7, -23],
+      [-5, 9],
+      [-6, 38],
+      [-2, -15],
+      [6, -17],
+      [-9, 5],
+      [0, -7],
+      [-15, -4],
+      [-2, -6],
+      [15, 3],
+      [13, -8],
+      [-1, -17],
+      [-3, 2],
+      [-5, -13],
+      [-13, 1],
+      [-2, 9],
+      [-4, -8],
+      [7, -6],
+      [-2, -11],
+      [-11, -8],
+      [17, -2],
+      [-7, -11],
+      [-15, -4],
+      [-15, -18],
+      [-9, -27],
+      [-11, 1],
+      [-13, -12],
+      [-5, -10],
+      [-4, -21],
+      [-22, -32],
+      [-14, -8],
+      [1, -8],
+      [-12, -15],
+      [1, -5],
+      [-11, -14],
+      [-3, -12],
+      [2, -18],
+      [-4, -5],
+      [-3, -19],
+      [8, -63],
+      [9, -38],
+      [9, -26],
+      [-5, 0],
+      [0, -10],
+      [18, -75],
+      [3, -31],
+      [-2, -12],
+      [-1, -28],
+      [-4, -11],
+      [-4, -29],
+      [-12, -1],
+      [-7, -4],
+      [0, 14],
+      [-6, 25],
+      [-6, 7],
+      [-6, 0],
+      [-3, 31],
+      [-6, 5],
+      [0, 20],
+      [-7, -2],
+      [-6, 21],
+      [-3, 18],
+      [7, 15],
+      [-1, 8],
+      [-7, 6],
+      [0, -19],
+      [-5, 8],
+      [2, 21],
+      [4, 14],
+      [0, 26],
+      [-4, 16],
+      [-7, 0],
+      [-10, 20],
+      [-6, 20],
+      [-11, 14],
+      [-10, -4],
+      [-10, -15],
+      [-16, -5],
+      [0, 7],
+      [-11, 20],
+      [-22, 14],
+      [-15, -1],
+      [-2, 9],
+      [-4, -11],
+      [-14, -5],
+      [-4, 7],
+      [-1, 16],
+      [-3, 2],
+      [-2, -22],
+      [-5, 5],
+      [-5, -5],
+      [-10, 6],
+      [-14, -7],
+      [-7, -9],
+      [-11, 7],
+      [-4, 7],
+      [-8, -12],
+      [2, -7],
+      [10, -1],
+      [3, 4],
+      [6, -14],
+      [5, 12],
+      [3, -3],
+      [-8, -29],
+      [4, -8],
+      [11, -5],
+      [3, -9],
+      [-4, -9],
+      [-3, 10],
+      [-15, 9],
+      [2, 4],
+      [-12, 11],
+      [4, -9],
+      [-2, -16],
+      [-10, 12],
+      [-8, -14],
+      [-15, 9],
+      [0, 13],
+      [-7, 3],
+      [-3, 12],
+      [-6, 5],
+      [-9, -8],
+      [4, -6],
+      [-13, -2],
+      [-21, 13],
+      [-16, -5],
+      [2, 17],
+      [-8, -18],
+      [-17, -13],
+      [-1, 19],
+      [-8, -5],
+      [-1, -9],
+      [4, -12],
+      [-8, -12],
+      [1, -4],
+      [-14, -18],
+      [-16, -9],
+      [-12, 8],
+      [1, -9],
+      [6, -8],
+      [-7, -6],
+      [-5, 6],
+      [1, -12],
+      [-12, -8],
+      [1, -14],
+      [-7, -33],
+      [-3, -26],
+      [7, -32],
+      [1, -16],
+      [3, -1]
+    ],
+    [
+      [2245, 6713],
+      [1, 7],
+      [-9, 21]
+    ],
+    [
+      [2193, 6879],
+      [-7, 10]
+    ],
+    [
+      [1746, 7056],
+      [-4, 10],
+      [-2, 27],
+      [-8, 16],
+      [-15, 18],
+      [-6, 2],
+      [-3, 12],
+      [-9, 0],
+      [-10, 6],
+      [-10, 18],
+      [-21, 3],
+      [-9, 5],
+      [0, 33],
+      [-7, 5],
+      [0, 12],
+      [-12, 15],
+      [-5, 18],
+      [-9, 13],
+      [-4, 23],
+      [5, 9],
+      [-3, 11],
+      [-6, -1],
+      [-8, 13],
+      [-3, 21],
+      [3, 5],
+      [9, -11],
+      [-10, 29],
+      [8, 6],
+      [-7, 6],
+      [-2, -19],
+      [-16, 13],
+      [5, 3],
+      [-7, 20],
+      [-7, 6],
+      [-10, 20],
+      [1, 10],
+      [-4, 16],
+      [2, 10],
+      [-2, 15],
+      [-7, 17],
+      [-8, 9],
+      [0, 19],
+      [8, 15],
+      [-2, 17],
+      [3, 16],
+      [-2, 16],
+      [-5, 5],
+      [3, 12],
+      [-5, 8],
+      [-1, 32],
+      [-5, 10],
+      [9, 41],
+      [4, 25],
+      [2, 52],
+      [2, 11],
+      [1, 62],
+      [13, 7],
+      [-14, -2],
+      [1, 29],
+      [-4, -2],
+      [6, 13],
+      [-7, 6],
+      [-10, 44],
+      [-7, 20],
+      [6, 11],
+      [15, -11],
+      [24, 0],
+      [7, -6],
+      [4, -14],
+      [-9, -15],
+      [12, 8],
+      [2, -20],
+      [-7, -10],
+      [2, -4],
+      [10, 14],
+      [-1, 29],
+      [5, 8],
+      [-5, 18],
+      [-9, 6],
+      [8, 12],
+      [-10, 16],
+      [1, 6]
+    ],
+    [
+      [60, 8169],
+      [1, -9],
+      [-11, 9],
+      [10, 0]
+    ],
+    [
+      [80, 8161],
+      [-11, 0],
+      [12, 11],
+      [-1, -11]
+    ],
+    [
+      [96, 8175],
+      [2, -14],
+      [-10, 0],
+      [1, 14],
+      [7, 0]
+    ],
+    [
+      [177, 8186],
+      [18, -5],
+      [-12, -3],
+      [-15, 5],
+      [9, 3]
+    ],
+    [
+      [162, 8200],
+      [5, -4],
+      [-4, -12],
+      [-7, -4],
+      [-27, -2],
+      [22, 6],
+      [9, 7],
+      [-7, 4],
+      [9, 5]
+    ],
+    [
+      [9827, 8206],
+      [-2, -8],
+      [-9, 2],
+      [11, 6]
+    ],
+    [
+      [9802, 8235],
+      [12, -10],
+      [-11, -5],
+      [-1, 15]
+    ],
+    [
+      [332, 8268],
+      [5, -12],
+      [-32, -29],
+      [11, 24],
+      [7, 1],
+      [-1, 9],
+      [10, 7]
+    ],
+    [
+      [367, 8291],
+      [6, -8],
+      [9, 8],
+      [-9, -15],
+      [8, 1],
+      [-14, -16],
+      [-4, 1],
+      [-20, -13],
+      [-6, 4],
+      [19, 9],
+      [1, 25],
+      [10, 4]
+    ],
+    [
+      [391, 8303],
+      [7, -5],
+      [-10, -3],
+      [3, 8]
+    ],
+    [
+      [451, 8354],
+      [5, -1],
+      [6, -16],
+      [-8, -9],
+      [-16, 0],
+      [-4, -9],
+      [-14, -3],
+      [-3, 11],
+      [7, 3],
+      [10, 16],
+      [3, -2],
+      [14, 10]
+    ],
+    [
+      [1304, 8361],
+      [8, -30],
+      [-14, 25],
+      [6, 5]
+    ],
+    [
+      [558, 8363],
+      [-9, -20],
+      [4, 19],
+      [5, 1]
+    ],
+    [
+      [1355, 8404],
+      [7, -16],
+      [-1, -16],
+      [-6, -11],
+      [-13, 9],
+      [-5, 8],
+      [5, 20],
+      [13, 6]
+    ],
+    [
+      [1295, 8417],
+      [2, -9],
+      [-14, -4],
+      [5, 11],
+      [7, 2]
+    ],
+    [
+      [1319, 8419],
+      [9, -1],
+      [0, -12],
+      [-13, 5],
+      [4, 8]
+    ],
+    [
+      [1289, 8428],
+      [10, -1],
+      [4, -16],
+      [13, -7],
+      [9, -30],
+      [9, -9],
+      [-1, -33],
+      [-16, 17],
+      [2, 8],
+      [-21, 10],
+      [8, 20],
+      [-11, -1],
+      [6, 13],
+      [-3, 17],
+      [-9, 2],
+      [0, 10]
+    ],
+    [
+      [1315, 8433],
+      [-5, -12],
+      [-6, 8],
+      [11, 4]
+    ],
+    [
+      [1328, 8428],
+      [4, -13],
+      [-9, 9],
+      [0, 12],
+      [5, -8]
+    ],
+    [
+      [1308, 8454],
+      [9, -14],
+      [-10, -3],
+      [1, 17]
+    ],
+    [
+      [1278, 8457],
+      [7, -4],
+      [1, -11],
+      [-6, -6],
+      [-6, -28],
+      [-3, 4],
+      [0, 20],
+      [-4, 26],
+      [11, -1]
+    ],
+    [
+      [1283, 8470],
+      [24, -10],
+      [-2, -17],
+      [-9, 13],
+      [7, -18],
+      [-16, -4],
+      [0, 23],
+      [-10, 9],
+      [6, 4]
+    ],
+    [
+      [745, 8475],
+      [8, 0],
+      [-14, -10],
+      [6, 10]
+    ],
+    [
+      [1234, 8479],
+      [-1, -12],
+      [-6, -2],
+      [-1, 19],
+      [8, -5]
+    ],
+    [
+      [1237, 8491],
+      [8, 2],
+      [9, -14],
+      [7, -29],
+      [-1, -30],
+      [-5, 0],
+      [-13, 33],
+      [-1, 15],
+      [-10, 18],
+      [6, 5]
+    ],
+    [
+      [749, 8519],
+      [11, 0],
+      [7, -8],
+      [-2, -10],
+      [8, 0],
+      [-4, -10],
+      [-18, 4],
+      [10, -7],
+      [-18, -9],
+      [-14, -22],
+      [-10, -6],
+      [6, 10],
+      [-12, -1],
+      [-12, 22],
+      [3, 14],
+      [7, 7],
+      [10, 0],
+      [7, -19],
+      [-4, 28],
+      [5, 5],
+      [16, -5],
+      [-3, 10],
+      [7, -3]
+    ],
+    [
+      [1229, 8536],
+      [23, -12],
+      [-1, -13],
+      [-7, -1],
+      [-18, 12],
+      [14, -15],
+      [13, 1],
+      [1, -16],
+      [-7, 0],
+      [-19, 17],
+      [7, -17],
+      [-4, -6],
+      [-8, 6],
+      [-1, 10],
+      [-12, 12],
+      [1, 20],
+      [18, 2]
+    ],
+    [
+      [1252, 8544],
+      [6, -11],
+      [14, -6],
+      [8, -16],
+      [-2, -5],
+      [2, -21],
+      [-19, -19],
+      [-1, 12],
+      [4, 10],
+      [-5, 13],
+      [-7, 43]
+    ],
+    [
+      [761, 8550],
+      [18, -11],
+      [-6, -8],
+      [-18, -4],
+      [-10, 2],
+      [1, 9],
+      [10, 1],
+      [5, 11]
+    ],
+    [
+      [913, 8659],
+      [5, -3],
+      [-25, -29],
+      [20, 32]
+    ],
+    [
+      [385, 8661],
+      [13, -6],
+      [2, -22],
+      [-19, -5],
+      [-10, 2],
+      [-19, 13],
+      [-4, 7],
+      [16, 0],
+      [9, 9],
+      [12, 2]
+    ],
+    [
+      [929, 8665],
+      [13, -4],
+      [-15, -9],
+      [2, 13]
+    ],
+    [
+      [897, 8667],
+      [-2, -19],
+      [-4, 10],
+      [6, 9]
+    ],
+    [
+      [231, 8857],
+      [0, -6],
+      [17, -7],
+      [20, 7],
+      [23, -20],
+      [21, -2],
+      [-2, -9],
+      [-15, 1],
+      [-9, -13],
+      [-3, 10],
+      [-28, 19],
+      [-17, -8],
+      [-13, 10],
+      [6, 18]
+    ],
+    [
+      [1387, 8402],
+      [-3, -8],
+      [4, -28],
+      [-10, -21],
+      [-9, -8],
+      [-7, 2],
+      [-3, 23],
+      [6, 6],
+      [-1, 24],
+      [-15, 16],
+      [-8, -7],
+      [-7, -22],
+      [-9, 13],
+      [7, 4],
+      [5, 24],
+      [-18, 22],
+      [-11, 25],
+      [-19, 8],
+      [12, 9],
+      [-11, 10],
+      [-3, 12],
+      [14, -6],
+      [-15, 12],
+      [-15, 23],
+      [-16, 11],
+      [-4, 24],
+      [-6, 1],
+      [-1, 17],
+      [-6, -11],
+      [7, -17],
+      [1, -24],
+      [-13, 11],
+      [-8, -2],
+      [2, 13],
+      [-8, 12],
+      [-3, -4],
+      [-17, 8],
+      [19, -18],
+      [2, -12],
+      [-9, -4],
+      [-20, 5],
+      [-23, 23],
+      [-9, 16],
+      [-34, 19],
+      [-11, 9],
+      [12, 10],
+      [-5, 11],
+      [-18, -12],
+      [-9, 0],
+      [-21, 9],
+      [3, 11],
+      [-13, -5],
+      [-31, 8],
+      [-30, -6],
+      [-12, 12],
+      [-16, 5],
+      [3, 18],
+      [-11, -14],
+      [-21, 5],
+      [9, 13],
+      [-18, -1],
+      [-16, 19],
+      [-12, 1],
+      [-2, -7],
+      [-15, -3],
+      [-3, 6],
+      [9, 19],
+      [-17, -18],
+      [2, -20],
+      [8, -8],
+      [-6, -3],
+      [-8, -27],
+      [-18, 1],
+      [-5, -5],
+      [-2, 13],
+      [-12, -25],
+      [-13, 3],
+      [-7, -13],
+      [-19, -17],
+      [-16, -2],
+      [-6, 6],
+      [3, 9],
+      [19, 10],
+      [2, 8],
+      [-11, -6],
+      [-10, 7],
+      [4, 16],
+      [8, 10],
+      [5, 19],
+      [-5, 8],
+      [27, 21],
+      [6, -6],
+      [18, 3],
+      [-14, 10],
+      [4, 5],
+      [-19, 4],
+      [-15, -15],
+      [-9, -2],
+      [-20, -27],
+      [-7, -16],
+      [-11, -2],
+      [9, -10],
+      [-18, -24],
+      [-11, 0],
+      [-4, -11],
+      [-9, -5],
+      [-3, -20],
+      [10, 3],
+      [13, -8],
+      [2, -6],
+      [-11, -12],
+      [-5, 0],
+      [-14, -31],
+      [-4, 7],
+      [-2, -11],
+      [-12, 1],
+      [-9, -17],
+      [-9, 2],
+      [-2, -13],
+      [-10, -1],
+      [-14, -15],
+      [7, -5],
+      [-7, -12],
+      [-5, 4],
+      [-12, -16],
+      [-17, -5],
+      [-2, -11],
+      [-13, -1],
+      [-4, -8],
+      [7, -10],
+      [-10, -4],
+      [-1, -7],
+      [-22, -6],
+      [-5, -17],
+      [-6, 16],
+      [-20, -21],
+      [-10, 2],
+      [-12, -10],
+      [-5, 2],
+      [6, 12],
+      [-10, 1],
+      [-6, -22],
+      [-9, -11],
+      [-12, 8],
+      [-4, -14],
+      [-7, 2],
+      [-9, -9],
+      [0, 18],
+      [10, 3],
+      [22, 30],
+      [12, 12],
+      [9, 3],
+      [34, -7],
+      [-10, 9],
+      [5, 17],
+      [16, 15],
+      [24, 17],
+      [9, -4],
+      [-1, 15],
+      [10, 16],
+      [18, 15],
+      [2, 46],
+      [12, 18],
+      [5, 16],
+      [-8, -7],
+      [-25, -13],
+      [-11, 12],
+      [1, 10],
+      [-9, -10],
+      [4, -20],
+      [-11, -2],
+      [-14, 29],
+      [-8, -10],
+      [-12, 17],
+      [-19, -11],
+      [-20, -18],
+      [-11, 4],
+      [11, 7],
+      [-1, 13],
+      [6, 7],
+      [-12, 2],
+      [0, 15],
+      [7, 6],
+      [-20, 46],
+      [-1, -17],
+      [-16, -8],
+      [-23, -4],
+      [-9, 6],
+      [-13, 23],
+      [-19, 12],
+      [20, 19],
+      [18, -3],
+      [7, -12],
+      [9, 7],
+      [-4, 7],
+      [-29, 2],
+      [-20, 20],
+      [-7, -6],
+      [-9, 14],
+      [0, 21],
+      [-6, 7],
+      [15, 2],
+      [-4, 13],
+      [18, 26],
+      [8, -3],
+      [-3, 14],
+      [5, 17],
+      [11, 0],
+      [-8, 7],
+      [7, 5],
+      [17, 0],
+      [2, -11],
+      [17, 1],
+      [20, 24],
+      [25, -1],
+      [18, 17],
+      [-6, 30],
+      [-13, 9],
+      [10, 4],
+      [9, 13],
+      [-10, 12],
+      [-41, -24],
+      [-17, -5],
+      [-12, 9],
+      [-18, 0],
+      [-19, -8],
+      [-33, 8],
+      [-8, 6],
+      [3, 12],
+      [-11, 10],
+      [7, 9],
+      [13, 2],
+      [-38, 8],
+      [-18, 10],
+      [37, 28],
+      [24, 9],
+      [16, 13],
+      [16, 7],
+      [29, 2],
+      [-7, -11],
+      [7, -19],
+      [26, 2],
+      [24, -8],
+      [11, 18],
+      [13, -3],
+      [-13, 10],
+      [-11, -2],
+      [-2, 11],
+      [-15, 10],
+      [-5, 9],
+      [9, 3],
+      [7, -17],
+      [12, -11],
+      [10, 4],
+      [14, -9],
+      [16, 2],
+      [-3, 14],
+      [-23, 0],
+      [-9, -7],
+      [-10, 10],
+      [2, 20],
+      [-23, -2],
+      [-30, 5],
+      [-10, 27],
+      [-34, 25],
+      [-20, 9],
+      [-16, 11],
+      [9, 17],
+      [0, 14],
+      [16, -2],
+      [37, 4],
+      [19, 11],
+      [15, 16],
+      [2, 19],
+      [29, 33],
+      [26, 0],
+      [45, 27],
+      [39, 4],
+      [21, 14],
+      [12, 13],
+      [33, -7],
+      [-12, -12],
+      [11, -6],
+      [16, 16],
+      [13, -7],
+      [2, -12],
+      [19, 5],
+      [38, -1],
+      [9, -4],
+      [-12, -15],
+      [24, 0],
+      [-6, -6],
+      [32, 3],
+      [11, -5],
+      [30, 5],
+      [31, -8],
+      [27, -11],
+      [40, 0],
+      [30, -12],
+      [40, 9],
+      [52, -27],
+      [12, 0]
+    ],
+    [
+      [2912, 6333],
+      [-2, -4]
+    ],
+    [
+      [2914, 6329],
+      [-1, 4]
+    ],
+    [
+      [6651, 7782],
+      [-7, -26],
+      [12, -19],
+      [-3, -12],
+      [11, 5],
+      [3, 8],
+      [-2, 16],
+      [3, 11]
+    ],
+    [
+      [6601, 7610],
+      [-7, 11],
+      [-5, -2],
+      [-4, -22]
+    ],
+    [
+      [6627, 7805],
+      [-10, -35],
+      [2, -18],
+      [4, -10],
+      [9, 17],
+      [-3, 20],
+      [3, 6],
+      [-1, 16]
+    ],
+    [
+      [3301, 5940],
+      [-4, 4],
+      [5, 8],
+      [-1, -12]
+    ],
+    [
+      [3313, 5694],
+      [1, -6],
+      [-5, -8],
+      [-9, -2],
+      [1, 7],
+      [12, 9]
+    ],
+    [
+      [3303, 5691],
+      [4, 12],
+      [2, -5],
+      [-6, -7]
+    ],
+    [
+      [3228, 5816],
+      [-8, -8],
+      [-9, 6],
+      [4, 7],
+      [6, -5],
+      [4, 10],
+      [3, -10]
+    ],
+    [
+      [3018, 5865],
+      [-3, -7],
+      [-14, -7],
+      [0, -13],
+      [10, -38],
+      [-1, -16],
+      [-4, -6],
+      [-10, -30],
+      [5, -18],
+      [6, -7],
+      [-1, -15],
+      [6, -5],
+      [9, 7],
+      [5, 10],
+      [-1, 32],
+      [-11, 30],
+      [-2, 23],
+      [3, 10],
+      [4, 0],
+      [12, 13],
+      [18, 8],
+      [5, 9],
+      [8, -2],
+      [-2, 13],
+      [-11, -5],
+      [-2, 13],
+      [2, 16],
+      [5, 5],
+      [6, -10],
+      [2, -22],
+      [4, -10],
+      [12, 3],
+      [15, -10],
+      [7, -12],
+      [4, -15],
+      [-2, -7],
+      [5, -15],
+      [8, -1],
+      [17, 4],
+      [6, 4],
+      [21, 2],
+      [11, -20],
+      [11, -9],
+      [11, -5],
+      [8, 2],
+      [4, 9],
+      [5, 0],
+      [2, 8],
+      [20, 5],
+      [-5, 5],
+      [-9, 1],
+      [10, 6],
+      [7, -3],
+      [11, 6],
+      [12, 1],
+      [16, -4],
+      [8, 4],
+      [-2, -6],
+      [-10, -6],
+      [-16, 0],
+      [1, -9],
+      [5, -5],
+      [1, -12],
+      [-9, -1],
+      [5, -4],
+      [8, 8],
+      [5, -25],
+      [2, 17],
+      [11, -10],
+      [7, -3],
+      [-2, 7],
+      [13, -19],
+      [4, 1],
+      [7, -12],
+      [-9, -24],
+      [-3, -22],
+      [-12, 0],
+      [10, -11],
+      [3, 6],
+      [14, 6],
+      [6, -4],
+      [3, 6],
+      [9, -4]
+    ],
+    [
+      [7888, 5785],
+      [0, -17],
+      [-4, 12],
+      [4, 5]
+    ],
+    [
+      [7999, 6420],
+      [-7, 1],
+      [-4, -12],
+      [-7, -3],
+      [1, -12],
+      [-6, -6],
+      [-5, 4],
+      [-9, -2],
+      [4, -16],
+      [-8, -8],
+      [2, -17],
+      [-7, -4],
+      [-4, -11],
+      [-7, -4],
+      [-3, -15],
+      [-1, -23],
+      [-5, -13],
+      [7, -30],
+      [7, -15],
+      [11, -17],
+      [-1, -15],
+      [8, -21],
+      [9, -14],
+      [4, -12],
+      [16, -29],
+      [6, -2],
+      [16, -47],
+      [8, -11],
+      [1, -21],
+      [5, -18],
+      [-2, -5],
+      [6, -25],
+      [0, -35],
+      [2, -3],
+      [0, -23],
+      [3, -13],
+      [-6, -10],
+      [0, -42],
+      [-3, -5],
+      [4, -7],
+      [-4, -10],
+      [-2, 4],
+      [0, -16],
+      [-7, -2],
+      [-2, -8],
+      [-4, 0],
+      [-8, -14],
+      [-6, -1],
+      [-2, -13],
+      [-5, 0],
+      [-11, -13],
+      [-13, 0],
+      [-5, 12],
+      [1, -23],
+      [-11, 2],
+      [11, -9],
+      [-4, -11],
+      [-6, 4],
+      [7, -11],
+      [-3, -2],
+      [-12, 24],
+      [0, -5],
+      [10, -18],
+      [2, -11],
+      [-5, -6],
+      [-10, 15],
+      [4, -19],
+      [-1, -6],
+      [-17, -13],
+      [-12, -29],
+      [-11, -2],
+      [5, 9],
+      [-2, 10],
+      [0, 36],
+      [2, 17],
+      [6, 7],
+      [-10, 15],
+      [-5, -5],
+      [-3, 16]
+    ],
+    [
+      [9706, 4050],
+      [-7, 13],
+      [4, 7],
+      [3, -20]
+    ],
+    [
+      [9699, 4104],
+      [2, -14],
+      [-8, 6],
+      [0, 12],
+      [6, -4]
+    ],
+    [
+      [9675, 4172],
+      [7, -8],
+      [-6, -8],
+      [-6, 7],
+      [5, 9]
+    ],
+    [
+      [9671, 4228],
+      [8, -15],
+      [-7, 1],
+      [-1, 14]
+    ],
+    [
+      [9675, 4243],
+      [-6, -2],
+      [-6, 7],
+      [7, 9],
+      [5, -14]
+    ],
+    [
+      [9650, 4255],
+      [10, -14],
+      [1, -7],
+      [-10, -6],
+      [-4, 27],
+      [-5, 1],
+      [1, 12],
+      [4, -1],
+      [3, -12]
+    ],
+    [
+      [9672, 4262],
+      [-3, 21],
+      [1, 9],
+      [3, -20],
+      [-1, -10]
+    ],
+    [
+      [9662, 4292],
+      [-5, 2],
+      [9, 9],
+      [-4, -11]
+    ],
+    [
+      [9671, 4298],
+      [-2, 1],
+      [-1, 24],
+      [2, -2],
+      [1, -23]
+    ],
+    [
+      [9633, 4310],
+      [4, 2],
+      [0, 11],
+      [5, -11],
+      [3, -23],
+      [-11, -7],
+      [-7, 15],
+      [1, 11],
+      [-3, 15],
+      [1, 17],
+      [5, -11],
+      [2, -19]
+    ],
+    [
+      [9653, 4368],
+      [1, -9],
+      [-5, 0],
+      [4, 9]
+    ],
+    [
+      [9654, 4385],
+      [-4, -3],
+      [-1, 10],
+      [5, -7]
+    ],
+    [
+      [5917, 7177],
+      [-8, 1]
+    ],
+    [
+      [233, 4380],
+      [5, -6],
+      [-14, 2],
+      [-4, 7],
+      [7, 5],
+      [6, -8]
+    ],
+    [
+      [213, 4406],
+      [3, -6],
+      [-1, -12],
+      [-9, 0],
+      [-5, 15],
+      [12, 3]
+    ],
+    [
+      [6488, 5914],
+      [7, -6],
+      [7, 6],
+      [10, -9],
+      [-9, -11],
+      [-10, -3],
+      [-6, 2],
+      [-5, 12],
+      [6, 9]
+    ],
+    [
+      [6474, 6141],
+      [-14, -9],
+      [-10, -18],
+      [-2, -12],
+      [2, -20],
+      [-10, -7],
+      [-13, -15],
+      [-23, -11],
+      [-11, -11],
+      [-4, 0],
+      [-25, -18],
+      [-3, -12],
+      [-8, -16],
+      [-6, -3],
+      [-14, 3],
+      [-10, -9],
+      [-6, -13],
+      [-15, -8],
+      [-5, -6],
+      [-14, 0],
+      [-16, -6],
+      [-7, -15],
+      [-15, -17],
+      [-7, 3],
+      [-4, -8],
+      [-14, -5],
+      [-10, 9],
+      [-3, -4],
+      [-7, 35],
+      [2, 25],
+      [-6, 21],
+      [-2, 16],
+      [-3, 43],
+      [-6, 7],
+      [4, 2],
+      [-3, 17],
+      [3, 18],
+      [-1, 29]
+    ],
+    [
+      [5913, 3637],
+      [-1, -16],
+      [-5, -23],
+      [-3, -38],
+      [-5, -21],
+      [-10, -19],
+      [-7, -3],
+      [-13, -27],
+      [-21, -68],
+      [-4, -16],
+      [-15, -32],
+      [-4, -4],
+      [-16, -28],
+      [-9, -21],
+      [-13, -22],
+      [-25, -35],
+      [-27, -26],
+      [-15, 4],
+      [-9, -9],
+      [0, -11],
+      [-17, 5],
+      [-4, -12],
+      [-11, 1],
+      [-8, 6],
+      [-16, 4],
+      [-6, -7],
+      [-23, 6],
+      [-10, -4],
+      [-12, -19],
+      [-7, 3],
+      [-6, -5],
+      [-11, 4],
+      [-1, -6],
+      [-11, 0],
+      [-14, -20],
+      [-9, 3],
+      [-9, 9],
+      [0, 11],
+      [-6, 4],
+      [-8, -2],
+      [0, 17],
+      [-10, -2],
+      [0, -13],
+      [-4, 19],
+      [5, 10],
+      [-2, 12],
+      [-7, 16],
+      [-4, 20],
+      [-4, -1],
+      [1, 18],
+      [7, -2],
+      [4, 8],
+      [1, 20],
+      [-2, 22],
+      [-4, 17],
+      [-9, 20],
+      [-7, 28],
+      [-8, 24],
+      [-6, 42],
+      [-6, 29],
+      [-7, 15],
+      [-3, 15]
+    ],
+    [
+      [5815, 3905],
+      [12, 3],
+      [14, -12],
+      [15, 3],
+      [13, -7]
+    ],
+    [
+      [5844, 4282],
+      [-15, 1],
+      [-13, -5],
+      [-15, -18],
+      [0, -21],
+      [-3, -8]
+    ],
+    [
+      [5798, 4231],
+      [-3, 3],
+      [-13, -9],
+      [-5, -13],
+      [-12, -14],
+      [-13, -38],
+      [-2, -11]
+    ],
+    [
+      [5750, 4149],
+      [-9, -7],
+      [-14, 11],
+      [-7, -7],
+      [-7, 11],
+      [-12, 1]
+    ],
+    [
+      [5792, 4643],
+      [5, 5],
+      [9, 23],
+      [3, 15],
+      [-7, 8]
+    ],
+    [
+      [5849, 4709],
+      [-4, -14],
+      [7, -1],
+      [9, -18],
+      [5, 4],
+      [-1, 8]
+    ],
+    [
+      [5750, 4149],
+      [10, 22],
+      [5, 5],
+      [4, 17],
+      [11, 9],
+      [0, 11],
+      [8, 0],
+      [8, 9],
+      [1, -7],
+      [8, 12],
+      [-7, 4]
+    ]
+  ],
+  "type": "Topology",
+  "objects": {
+    "world": {
+      "geometries": [
+        {
+          "arcs": [[0, 1, 2, 3, 4, 5]],
+          "type": "Polygon",
+          "id": "AFG",
+          "properties": { "name": "Afghanistan" }
+        },
+        {
+          "arcs": [[[6, 7, 8, 9]], [[10, 11, 12]]],
+          "type": "MultiPolygon",
+          "id": "AGO",
+          "properties": { "name": "Angola" }
+        },
+        {
+          "arcs": [
+            [[13, 14]],
+            [[15, 16]],
+            [[17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]]
+          ],
+          "type": "MultiPolygon",
+          "id": "ALB",
+          "properties": { "name": "Albania" }
+        },
+        {
+          "arcs": [[[31]]],
+          "type": "MultiPolygon",
+          "id": "ALD",
+          "properties": { "name": "Aland" }
+        },
+        { "arcs": [[32, 33]], "type": "Polygon", "id": "AND", "properties": { "name": "Andorra" } },
+        {
+          "arcs": [[[34]], [[35, 36, 37, 38, 39], [40]]],
+          "type": "MultiPolygon",
+          "id": "ARE",
+          "properties": { "name": "United Arab Emirates" }
+        },
+        {
+          "arcs": [[[41, 42]], [[43, 44]], [[45, 46, 47, 48, 49, 50]]],
+          "type": "MultiPolygon",
+          "id": "ARG",
+          "properties": { "name": "Argentina" }
+        },
+        {
+          "arcs": [[[51]], [[52, 53, 54, 55, 56], [57], [58]]],
+          "type": "MultiPolygon",
+          "id": "ARM",
+          "properties": { "name": "Armenia" }
+        },
+        {
+          "arcs": [[[121]]],
+          "type": "MultiPolygon",
+          "id": "ATF",
+          "properties": { "name": "Fr. S. Antarctic Lands" }
+        },
+        {
+          "arcs": [
+            [[122]],
+            [[123]],
+            [[124]],
+            [[125]],
+            [[126]],
+            [[127]],
+            [[128]],
+            [[129]],
+            [[130]],
+            [[131]],
+            [[132]],
+            [[133]],
+            [[134]],
+            [[135]],
+            [[136]],
+            [[137]],
+            [[138]],
+            [[139]],
+            [[140]]
+          ],
+          "type": "MultiPolygon",
+          "id": "AUS",
+          "properties": { "name": "Australia" }
+        },
+        {
+          "arcs": [[141, 142, 143, 144, 145, 146, 147, 148, 149, 150]],
+          "type": "Polygon",
+          "id": "AUT",
+          "properties": { "name": "Austria" }
+        },
+        {
+          "arcs": [[[151, 152, -55]], [[-59]], [[-58]], [[153, 154, 155, -53, 156], [-52]]],
+          "type": "MultiPolygon",
+          "id": "AZE",
+          "properties": { "name": "Azerbaijan" }
+        },
+        {
+          "arcs": [[157, 158, 159, 160]],
+          "type": "Polygon",
+          "id": "BDI",
+          "properties": { "name": "Burundi" }
+        },
+        {
+          "arcs": [[161, 162, 163, 164, 165, 166, 167]],
+          "type": "Polygon",
+          "id": "BEL",
+          "properties": { "name": "Belgium" }
+        },
+        {
+          "arcs": [[168, 169, 170, 171, 172]],
+          "type": "Polygon",
+          "id": "BEN",
+          "properties": { "name": "Benin" }
+        },
+        {
+          "arcs": [[173, -172, 174, 175, 176, 177]],
+          "type": "Polygon",
+          "id": "BFA",
+          "properties": { "name": "Burkina Faso" }
+        },
+        {
+          "arcs": [[[178]], [[179]], [[180, 181, 182]]],
+          "type": "MultiPolygon",
+          "id": "BGD",
+          "properties": { "name": "Bangladesh" }
+        },
+        {
+          "arcs": [[183, 184, 185, 186, 187, 188]],
+          "type": "Polygon",
+          "id": "BGR",
+          "properties": { "name": "Bulgaria" }
+        },
+        { "arcs": [[189]], "type": "Polygon", "id": "BHR", "properties": { "name": "Bahrain" } },
+        {
+          "arcs": [
+            [[190]],
+            [[191]],
+            [[192]],
+            [[193]],
+            [[194]],
+            [[195]],
+            [[196]],
+            [[197]],
+            [[198]],
+            [[199]],
+            [[200]]
+          ],
+          "type": "MultiPolygon",
+          "id": "BHS",
+          "properties": { "name": "Bahamas" }
+        },
+        {
+          "arcs": [[201, 202, 203, 204, 205]],
+          "type": "Polygon",
+          "id": "BIH",
+          "properties": { "name": "Bosnia and Herz." }
+        },
+        {
+          "arcs": [[206, 207, 208, 209, 210]],
+          "type": "Polygon",
+          "id": "BLR",
+          "properties": { "name": "Belarus" }
+        },
+        {
+          "arcs": [[[211, 212, 213]]],
+          "type": "MultiPolygon",
+          "id": "BLZ",
+          "properties": { "name": "Belize" }
+        },
+        {
+          "arcs": [[[214, 215]], [[216, -51, 217, 218, 219, 220, 221]]],
+          "type": "MultiPolygon",
+          "id": "BOL",
+          "properties": { "name": "Bolivia" }
+        },
+        {
+          "arcs": [
+            [[222]],
+            [[223]],
+            [[224]],
+            [[225]],
+            [[226]],
+            [[227]],
+            [[228]],
+            [[229]],
+            [[230]],
+            [[231]],
+            [[232]],
+            [[233]],
+            [[234]],
+            [[235]],
+            [[236]],
+            [[237]],
+            [[238, 239, 240, 241, 242, 243, -47, 244, 245, 246, -222, 247, 248, 249, 250]]
+          ],
+          "type": "MultiPolygon",
+          "id": "BRA",
+          "properties": { "name": "Brazil" }
+        },
+        { "arcs": [[251]], "type": "Polygon", "id": "BRB", "properties": { "name": "Barbados" } },
+        {
+          "arcs": [[[252, 253]], [[254, 255]]],
+          "type": "MultiPolygon",
+          "id": "BRN",
+          "properties": { "name": "Brunei" }
+        },
+        {
+          "arcs": [[256, 257]],
+          "type": "Polygon",
+          "id": "BTN",
+          "properties": { "name": "Bhutan" }
+        },
+        {
+          "arcs": [[258, 259, 260]],
+          "type": "Polygon",
+          "id": "BWA",
+          "properties": { "name": "Botswana" }
+        },
+        {
+          "arcs": [[261, 262, 263, 264, 265, 266]],
+          "type": "Polygon",
+          "id": "CAF",
+          "properties": { "name": "Central African Rep." }
+        },
+        {
+          "arcs": [
+            [[267]],
+            [[268]],
+            [[269]],
+            [[270]],
+            [[271]],
+            [[272]],
+            [[273]],
+            [[274, 275, 276, 277]],
+            [[278]],
+            [[279]],
+            [[280]],
+            [[281]],
+            [[282]],
+            [[283]],
+            [[284]],
+            [[285]],
+            [[286]],
+            [[287]],
+            [[288]],
+            [[289]],
+            [[290]],
+            [[291]],
+            [[292]],
+            [[293]],
+            [[294]],
+            [[295]],
+            [[296]],
+            [[297]],
+            [[298]],
+            [[299]],
+            [[300]],
+            [[301]],
+            [[302]],
+            [[303]],
+            [[304]],
+            [[305]],
+            [[306]],
+            [[307]],
+            [[308]],
+            [[309]],
+            [[310]],
+            [[311]],
+            [[312]],
+            [[313]],
+            [[314]],
+            [[315]],
+            [[316]],
+            [[317]],
+            [[318]],
+            [[319]],
+            [[320]],
+            [[321]],
+            [[322]],
+            [[323]],
+            [[324]],
+            [[325]],
+            [[326]],
+            [[327]],
+            [[328]],
+            [[329]],
+            [[330]],
+            [[331]],
+            [[332]],
+            [[333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, -346, 346, 347]],
+            [[348]],
+            [[349]],
+            [[350]],
+            [[351]],
+            [[352]],
+            [[353]],
+            [[354]],
+            [[355]],
+            [[356]],
+            [[357]],
+            [[358]],
+            [[359]],
+            [[360]],
+            [[361]],
+            [[362]],
+            [[363]],
+            [[364]],
+            [[365]],
+            [[366]],
+            [[367]],
+            [[368]],
+            [[369]],
+            [[370]],
+            [[371]],
+            [[372]],
+            [[373]],
+            [[374]],
+            [[375]],
+            [[376]],
+            [[377]],
+            [[378]],
+            [[379]],
+            [[380]],
+            [[381]],
+            [[382]],
+            [[383]],
+            [[384]]
+          ],
+          "type": "MultiPolygon",
+          "id": "CAN",
+          "properties": { "name": "Canada" }
+        },
+        {
+          "arcs": [[385, 386, 387, -148, 388, -146, 389, 390, 391, 392, 393]],
+          "type": "Polygon",
+          "id": "CHE",
+          "properties": { "name": "Switzerland" }
+        },
+        {
+          "arcs": [
+            [[394]],
+            [[395]],
+            [[396]],
+            [[397]],
+            [[398]],
+            [[399]],
+            [[400]],
+            [[401]],
+            [[402]],
+            [[-44, 403, -42, 404]],
+            [[405]],
+            [[406]],
+            [[407]],
+            [[408]],
+            [[409]],
+            [[410]],
+            [[411]],
+            [[412]],
+            [[413]],
+            [[414]],
+            [[415]],
+            [[416]],
+            [[417]],
+            [[418]],
+            [[419]],
+            [[420]],
+            [[421]],
+            [[422]],
+            [[423]],
+            [[424]],
+            [[425]],
+            [[426]],
+            [[427]],
+            [[428]],
+            [[429]],
+            [[430]],
+            [[431]],
+            [[432]],
+            [[433]],
+            [[434]],
+            [[435]],
+            [[-50, 436, 437, -218]]
+          ],
+          "type": "MultiPolygon",
+          "id": "CHL",
+          "properties": { "name": "Chile" }
+        },
+        {
+          "arcs": [
+            [[438]],
+            [[439]],
+            [[440]],
+            [[441]],
+            [
+              [
+                442,
+                443,
+                444,
+                445,
+                446,
+                447,
+                448,
+                449,
+                450,
+                451,
+                -258,
+                452,
+                453,
+                454,
+                455,
+                456,
+                -1,
+                457,
+                458,
+                459,
+                460,
+                461,
+                462,
+                463,
+                464
+              ]
+            ]
+          ],
+          "type": "MultiPolygon",
+          "id": "CHN",
+          "properties": { "name": "China" }
+        },
+        {
+          "arcs": [[[465, 466]], [[-177, 467, 468, 469, 470, 471]]],
+          "type": "MultiPolygon",
+          "id": "CIV",
+          "properties": { "name": "C\u00f4te d'Ivoire" }
+        },
+        {
+          "arcs": [[[472, -266, 473, 474, 475, 476, 477, 478, 479]], [[480, 481]]],
+          "type": "MultiPolygon",
+          "id": "CMR",
+          "properties": { "name": "Cameroon" }
+        },
+        {
+          "arcs": [[[482, 483, 484, 485]], [[486, 487, 488, 489]], [[490, 491, 492, 493]]],
+          "type": "MultiPolygon",
+          "id": "CNM",
+          "properties": { "name": "Cyprus U.N. Buffer Zone" }
+        },
+        {
+          "arcs": [
+            [[494]],
+            [
+              [
+                495,
+                496,
+                497,
+                498,
+                499,
+                500,
+                501,
+                502,
+                503,
+                -160,
+                504,
+                505,
+                506,
+                507,
+                -10,
+                508,
+                -11,
+                509,
+                -264
+              ]
+            ]
+          ],
+          "type": "MultiPolygon",
+          "id": "COD",
+          "properties": { "name": "Dem. Rep. Congo" }
+        },
+        {
+          "arcs": [[-510, -13, 510, 511, -474, -265]],
+          "type": "Polygon",
+          "id": "COG",
+          "properties": { "name": "Congo" }
+        },
+        {
+          "arcs": [[[512, -249, 513, 514, 515, 516, 517]]],
+          "type": "MultiPolygon",
+          "id": "COL",
+          "properties": { "name": "Colombia" }
+        },
+        {
+          "arcs": [[[518]], [[519]]],
+          "type": "MultiPolygon",
+          "id": "COM",
+          "properties": { "name": "Comoros" }
+        },
+        {
+          "arcs": [[[520]], [[521]], [[522]], [[523]]],
+          "type": "MultiPolygon",
+          "id": "CPV",
+          "properties": { "name": "Cape Verde" }
+        },
+        {
+          "arcs": [[[524, 525, 526, 527]]],
+          "type": "MultiPolygon",
+          "id": "CRI",
+          "properties": { "name": "Costa Rica" }
+        },
+        {
+          "arcs": [[[528]], [[529]], [[530]], [[531, 532, 533, 534]]],
+          "type": "MultiPolygon",
+          "id": "CUB",
+          "properties": { "name": "Cuba" }
+        },
+        {
+          "arcs": [[535]],
+          "type": "Polygon",
+          "id": "CUW",
+          "properties": { "name": "Cura\u00e7ao" }
+        },
+        {
+          "arcs": [[[536, -488]], [[-486, 537, -494, 538]]],
+          "type": "MultiPolygon",
+          "id": "CYN",
+          "properties": { "name": "N. Cyprus" }
+        },
+        {
+          "arcs": [
+            [[539, 540]],
+            [[541]],
+            [[542, 543, -484]],
+            [[544, 545, 546, 547, -490, 548, -492]]
+          ],
+          "type": "MultiPolygon",
+          "id": "CYP",
+          "properties": { "name": "Cyprus" }
+        },
+        {
+          "arcs": [[549, 550, -151, 551]],
+          "type": "Polygon",
+          "id": "CZE",
+          "properties": { "name": "Czech Rep." }
+        },
+        {
+          "arcs": [
+            [[-387, 552]],
+            [[553, 554]],
+            [[555]],
+            [[556, 557, -552, -150, 558, -394, 559, 560, -162, 561, 562, 563]]
+          ],
+          "type": "MultiPolygon",
+          "id": "DEU",
+          "properties": { "name": "Germany" }
+        },
+        {
+          "arcs": [[564, 565, 566, 567, 568, 569]],
+          "type": "Polygon",
+          "id": "DJI",
+          "properties": { "name": "Djibouti" }
+        },
+        { "arcs": [[570]], "type": "Polygon", "id": "DMA", "properties": { "name": "Dominica" } },
+        {
+          "arcs": [[[571]], [[572]], [[573]], [[574]], [[575]], [[576]], [[577]], [[-564, 578]]],
+          "type": "MultiPolygon",
+          "id": "DNK",
+          "properties": { "name": "Denmark" }
+        },
+        {
+          "arcs": [[[579, 580, 581, 582, 583, 584]]],
+          "type": "MultiPolygon",
+          "id": "DOM",
+          "properties": { "name": "Dominican Rep." }
+        },
+        {
+          "arcs": [[585, 586, 587, 588, 589, 590, 591, 592]],
+          "type": "Polygon",
+          "id": "DZA",
+          "properties": { "name": "Algeria" }
+        },
+        {
+          "arcs": [[[593]], [[594]], [[595]], [[596]], [[597]], [[598]], [[599, 600, -515]]],
+          "type": "MultiPolygon",
+          "id": "ECU",
+          "properties": { "name": "Ecuador" }
+        },
+        {
+          "arcs": [[[601, 602, 603, 604, 605, 606]]],
+          "type": "MultiPolygon",
+          "id": "EGY",
+          "properties": { "name": "Egypt" }
+        },
+        {
+          "arcs": [[[607]], [[-569, 608, 609, 610]]],
+          "type": "MultiPolygon",
+          "id": "ERI",
+          "properties": { "name": "Eritrea" }
+        },
+        {
+          "arcs": [[-485, -544, 611, -541, 612, -545, -491, -538], [-542]],
+          "type": "Polygon",
+          "id": "ESB",
+          "properties": { "name": "Dhekelia" }
+        },
+        {
+          "arcs": [
+            [[613]],
+            [[614]],
+            [[615]],
+            [[616]],
+            [[617]],
+            [[618]],
+            [[619, 620]],
+            [[621, 622]],
+            [[623]],
+            [[624]],
+            [[625]],
+            [[626]],
+            [[627, -33, 628, 629, 630, 631, 632, 633]]
+          ],
+          "type": "MultiPolygon",
+          "id": "ESP",
+          "properties": { "name": "Spain" }
+        },
+        {
+          "arcs": [[[634]], [[635]], [[636, 637, 638, 639, 640, 641, 642, 643, 644]]],
+          "type": "MultiPolygon",
+          "id": "EST",
+          "properties": { "name": "Estonia" }
+        },
+        {
+          "arcs": [[-568, 645, -566, 646, 647, 648, 649, 650, -609]],
+          "type": "Polygon",
+          "id": "ETH",
+          "properties": { "name": "Ethiopia" }
+        },
+        {
+          "arcs": [[[651]], [[652, 653, 654, 655]]],
+          "type": "MultiPolygon",
+          "id": "FIN",
+          "properties": { "name": "Finland" }
+        },
+        {
+          "arcs": [[[656]], [[657]], [[658]]],
+          "type": "MultiPolygon",
+          "id": "FJI",
+          "properties": { "name": "Fiji" }
+        },
+        {
+          "arcs": [[[659]], [[660]]],
+          "type": "MultiPolygon",
+          "id": "FLK",
+          "properties": { "name": "Falkland Is." }
+        },
+        {
+          "arcs": [
+            [[661]],
+            [[662]],
+            [[-240, 663, 664]],
+            [[665]],
+            [[666]],
+            [[667]],
+            [[668]],
+            [[669, -560, -393, 670, -391, 671, 672, 673, 674, -629, -34, -628, 675, -164], [-627]]
+          ],
+          "type": "MultiPolygon",
+          "id": "FRA",
+          "properties": { "name": "France" }
+        },
+        {
+          "arcs": [[[676]], [[677]]],
+          "type": "MultiPolygon",
+          "id": "FRO",
+          "properties": { "name": "Faeroe Is." }
+        },
+        {
+          "arcs": [[[678]]],
+          "type": "MultiPolygon",
+          "id": "FSM",
+          "properties": { "name": "Micronesia" }
+        },
+        {
+          "arcs": [[[-512, 679, 680, -475]]],
+          "type": "MultiPolygon",
+          "id": "GAB",
+          "properties": { "name": "Gabon" }
+        },
+        {
+          "arcs": [
+            [[681]],
+            [[682]],
+            [[683, 684]],
+            [[685]],
+            [[686]],
+            [[687]],
+            [[688]],
+            [[689]],
+            [[690]],
+            [[691]],
+            [[692]],
+            [[693]],
+            [[694]],
+            [[695]]
+          ],
+          "type": "MultiPolygon",
+          "id": "GBR",
+          "properties": { "name": "United Kingdom" }
+        },
+        {
+          "arcs": [[-157, -57, 696, 697, 698]],
+          "type": "Polygon",
+          "id": "GEO",
+          "properties": { "name": "Georgia" }
+        },
+        {
+          "arcs": [[699, 700, -466, 701, -468, -176]],
+          "type": "Polygon",
+          "id": "GHA",
+          "properties": { "name": "Ghana" }
+        },
+        {
+          "arcs": [[-631, 702]],
+          "type": "Polygon",
+          "id": "GIB",
+          "properties": { "name": "Gibraltar" }
+        },
+        {
+          "arcs": [[703, -471, 704, 705, 706, 707, 708]],
+          "type": "Polygon",
+          "id": "GIN",
+          "properties": { "name": "Guinea" }
+        },
+        {
+          "arcs": [[709, 710]],
+          "type": "Polygon",
+          "id": "GMB",
+          "properties": { "name": "Gambia" }
+        },
+        {
+          "arcs": [[[711]], [[712, 713, -708]]],
+          "type": "MultiPolygon",
+          "id": "GNB",
+          "properties": { "name": "Guinea-Bissau" }
+        },
+        {
+          "arcs": [[[-681, 714, -476]], [[715]]],
+          "type": "MultiPolygon",
+          "id": "GNQ",
+          "properties": { "name": "Eq. Guinea" }
+        },
+        {
+          "arcs": [
+            [[716]],
+            [[717]],
+            [[718]],
+            [[719]],
+            [[720]],
+            [[721]],
+            [[722]],
+            [[723]],
+            [[724]],
+            [[725]],
+            [[726]],
+            [[727]],
+            [[728]],
+            [[729]],
+            [[730]],
+            [[731]],
+            [[732, -186, 733, 734, -27, 735, -25, 736]]
+          ],
+          "type": "MultiPolygon",
+          "id": "GRC",
+          "properties": { "name": "Greece" }
+        },
+        {
+          "arcs": [[[737]]],
+          "type": "MultiPolygon",
+          "id": "GRD",
+          "properties": { "name": "Grenada" }
+        },
+        {
+          "arcs": [
+            [[738]],
+            [[739]],
+            [[740]],
+            [[741]],
+            [[742]],
+            [[743]],
+            [[744]],
+            [[745]],
+            [[746]],
+            [[747]],
+            [[748]],
+            [[749]],
+            [[750]],
+            [[751]],
+            [[752]],
+            [[753]],
+            [[754]],
+            [[755]],
+            [[756]],
+            [[757]],
+            [[758]],
+            [[759]],
+            [[760]],
+            [[761]],
+            [[762]],
+            [[763]]
+          ],
+          "type": "MultiPolygon",
+          "id": "GRL",
+          "properties": { "name": "Greenland" }
+        },
+        {
+          "arcs": [[-213, 764, 765, 766, 767, 768]],
+          "type": "Polygon",
+          "id": "GTM",
+          "properties": { "name": "Guatemala" }
+        },
+        { "arcs": [[769]], "type": "Polygon", "id": "GUM", "properties": { "name": "Guam" } },
+        {
+          "arcs": [[[770, -251, 771, 772]]],
+          "type": "MultiPolygon",
+          "id": "GUY",
+          "properties": { "name": "Guyana" }
+        },
+        {
+          "arcs": [[[773, -447]]],
+          "type": "MultiPolygon",
+          "id": "HKG",
+          "properties": { "name": "Hong Kong" }
+        },
+        {
+          "arcs": [[774]],
+          "type": "Polygon",
+          "id": "HMD",
+          "properties": { "name": "Heard I. and McDonald Is." }
+        },
+        {
+          "arcs": [[[775, 776, 777, -766, 778]]],
+          "type": "MultiPolygon",
+          "id": "HND",
+          "properties": { "name": "Honduras" }
+        },
+        {
+          "arcs": [
+            [[-204, 779, 780]],
+            [[781]],
+            [[782]],
+            [[783]],
+            [[784]],
+            [[785, 786, -206, 787, 788]]
+          ],
+          "type": "MultiPolygon",
+          "id": "HRV",
+          "properties": { "name": "Croatia" }
+        },
+        {
+          "arcs": [[[-582, 789]], [[790]], [[-584, 791, -580, 792]]],
+          "type": "MultiPolygon",
+          "id": "HTI",
+          "properties": { "name": "Haiti" }
+        },
+        {
+          "arcs": [[793, 794, 795, -786, 796, -143, 797]],
+          "type": "Polygon",
+          "id": "HUN",
+          "properties": { "name": "Hungary" }
+        },
+        {
+          "arcs": [
+            [[798]],
+            [[799]],
+            [[800]],
+            [[801, 802, 803, 804]],
+            [[805]],
+            [[806]],
+            [[807]],
+            [[808]],
+            [[809]],
+            [[810]],
+            [[811]],
+            [[812]],
+            [[813]],
+            [[814]],
+            [[815]],
+            [[816]],
+            [[817]],
+            [[818]],
+            [[819]],
+            [[820]],
+            [[821]],
+            [[822]],
+            [[823]],
+            [[824]],
+            [[825]],
+            [[826]],
+            [[827]],
+            [[828]],
+            [[829]],
+            [[830]],
+            [[831]],
+            [[832]],
+            [[833]],
+            [[834]],
+            [[835]],
+            [[836]],
+            [[837]],
+            [[838]],
+            [[839]],
+            [[840]],
+            [[841]],
+            [[842]],
+            [[843]],
+            [[844]],
+            [[845]],
+            [[846]],
+            [[847]],
+            [[848]],
+            [[849]],
+            [[850]],
+            [[851]],
+            [[852]],
+            [[853]],
+            [[854]],
+            [[855]],
+            [[856]],
+            [[857, 858]],
+            [[859]],
+            [[860]],
+            [[861]],
+            [[862]],
+            [[863]],
+            [[864]],
+            [[865]],
+            [[866]],
+            [[867]],
+            [[868]],
+            [[869]],
+            [[870]],
+            [[871]],
+            [[872]],
+            [[873]],
+            [[874]],
+            [[875]],
+            [[876]],
+            [[877]],
+            [[878]],
+            [[879]],
+            [[880]],
+            [[881, 882]],
+            [[883]],
+            [[884, 885]],
+            [[886]],
+            [[887]]
+          ],
+          "type": "MultiPolygon",
+          "id": "IDN",
+          "properties": { "name": "Indonesia" }
+        },
+        {
+          "arcs": [[888]],
+          "type": "Polygon",
+          "id": "IMN",
+          "properties": { "name": "Isle of Man" }
+        },
+        {
+          "arcs": [
+            [[889]],
+            [[890]],
+            [[891]],
+            [[892]],
+            [[893, -453, -257, -452, 894, -183, 895, 896, 897, -455]]
+          ],
+          "type": "MultiPolygon",
+          "id": "IND",
+          "properties": { "name": "India" }
+        },
+        {
+          "arcs": [[[-684, 898]]],
+          "type": "MultiPolygon",
+          "id": "IRL",
+          "properties": { "name": "Ireland" }
+        },
+        {
+          "arcs": [[[899]], [[-54, -156, 900, 901, -3, 902, 903, 904, 905, -152]]],
+          "type": "MultiPolygon",
+          "id": "IRN",
+          "properties": { "name": "Iran" }
+        },
+        {
+          "arcs": [[-905, 906, 907, 908, 909, 910, 911, 912, 913]],
+          "type": "Polygon",
+          "id": "IRQ",
+          "properties": { "name": "Iraq" }
+        },
+        {
+          "arcs": [[[914]]],
+          "type": "MultiPolygon",
+          "id": "ISL",
+          "properties": { "name": "Iceland" }
+        },
+        {
+          "arcs": [[915, 916, 917, 918, 919, 920, 921, -603, 922, 923, 924, 925]],
+          "type": "Polygon",
+          "id": "ISR",
+          "properties": { "name": "Israel" }
+        },
+        {
+          "arcs": [[[926]], [[927]], [[928, 929, -672, -390, -145], [930], [931]]],
+          "type": "MultiPolygon",
+          "id": "ITA",
+          "properties": { "name": "Italy" }
+        },
+        { "arcs": [[932]], "type": "Polygon", "id": "JAM", "properties": { "name": "Jamaica" } },
+        {
+          "arcs": [[933, 934, -921, 935, -919, 936, 937, -916, 938, -910]],
+          "type": "Polygon",
+          "id": "JOR",
+          "properties": { "name": "Jordan" }
+        },
+        {
+          "arcs": [
+            [[939]],
+            [[940]],
+            [[941]],
+            [[942]],
+            [[943]],
+            [[944]],
+            [[945]],
+            [[946]],
+            [[947]],
+            [[948]],
+            [[949]],
+            [[950]],
+            [[951]]
+          ],
+          "type": "MultiPolygon",
+          "id": "JPN",
+          "properties": { "name": "Japan" }
+        },
+        { "arcs": [[952]], "type": "Polygon", "id": "KAB", "properties": { "name": "Baikonur" } },
+        {
+          "arcs": [[-898, 953, -456]],
+          "type": "Polygon",
+          "id": "KAS",
+          "properties": { "name": "Siachen Glacier" }
+        },
+        {
+          "arcs": [[[954, 955]], [[-460, 956, 957, 958, 959, 960, 961, 962], [-953]]],
+          "type": "MultiPolygon",
+          "id": "KAZ",
+          "properties": { "name": "Kazakhstan" }
+        },
+        {
+          "arcs": [[[-649, 963, 964, 965, 966, 967, 968]]],
+          "type": "MultiPolygon",
+          "id": "KEN",
+          "properties": { "name": "Kenya" }
+        },
+        {
+          "arcs": [[-459, 969, 970, -957], [971], [972], [973]],
+          "type": "Polygon",
+          "id": "KGZ",
+          "properties": { "name": "Kyrgyzstan" }
+        },
+        {
+          "arcs": [[[974, 975, 976, 977]]],
+          "type": "MultiPolygon",
+          "id": "KHM",
+          "properties": { "name": "Cambodia" }
+        },
+        {
+          "arcs": [[[978]]],
+          "type": "MultiPolygon",
+          "id": "KIR",
+          "properties": { "name": "Kiribati" }
+        },
+        {
+          "arcs": [[[979]], [[980]], [[981]], [[982, 983]]],
+          "type": "MultiPolygon",
+          "id": "KOR",
+          "properties": { "name": "Korea" }
+        },
+        {
+          "arcs": [[984, -18, 985, 986]],
+          "type": "Polygon",
+          "id": "XKX",
+          "properties": { "name": "Kosovo" }
+        },
+        {
+          "arcs": [[[987]], [[988, -908, 989]]],
+          "type": "MultiPolygon",
+          "id": "KWT",
+          "properties": { "name": "Kuwait" }
+        },
+        {
+          "arcs": [[990, -977, 991, 992, -450]],
+          "type": "Polygon",
+          "id": "LAO",
+          "properties": { "name": "Lao PDR" }
+        },
+        {
+          "arcs": [[-925, 993, 994]],
+          "type": "Polygon",
+          "id": "LBN",
+          "properties": { "name": "Lebanon" }
+        },
+        {
+          "arcs": [[-470, 995, 996, -705]],
+          "type": "Polygon",
+          "id": "LBR",
+          "properties": { "name": "Liberia" }
+        },
+        {
+          "arcs": [[-606, 997, 998, 999, -587, 1000, 1001]],
+          "type": "Polygon",
+          "id": "LBY",
+          "properties": { "name": "Libya" }
+        },
+        {
+          "arcs": [[1002]],
+          "type": "Polygon",
+          "id": "LCA",
+          "properties": { "name": "Saint Lucia" }
+        },
+        {
+          "arcs": [[-389, -147]],
+          "type": "Polygon",
+          "id": "LIE",
+          "properties": { "name": "Liechtenstein" }
+        },
+        {
+          "arcs": [[[1003]]],
+          "type": "MultiPolygon",
+          "id": "LKA",
+          "properties": { "name": "Sri Lanka" }
+        },
+        { "arcs": [[1004]], "type": "Polygon", "id": "LSO", "properties": { "name": "Lesotho" } },
+        {
+          "arcs": [[[1005, 1006]], [[-210, 1007, 1008, 1009, 1010]]],
+          "type": "MultiPolygon",
+          "id": "LTU",
+          "properties": { "name": "Lithuania" }
+        },
+        {
+          "arcs": [[-561, -670, -163]],
+          "type": "Polygon",
+          "id": "LUX",
+          "properties": { "name": "Luxembourg" }
+        },
+        {
+          "arcs": [[1011, -211, -1011, 1012, -644]],
+          "type": "Polygon",
+          "id": "LVA",
+          "properties": { "name": "Latvia" }
+        },
+        {
+          "arcs": [[1013, 1014]],
+          "type": "Polygon",
+          "id": "MAF",
+          "properties": { "name": "St-Martin" }
+        },
+        {
+          "arcs": [[-622, 1015, -620, 1016, -592, 1017, 1018]],
+          "type": "Polygon",
+          "id": "MAR",
+          "properties": { "name": "Morocco" }
+        },
+        {
+          "arcs": [[1019, -674]],
+          "type": "Polygon",
+          "id": "MCO",
+          "properties": { "name": "Monaco" }
+        },
+        {
+          "arcs": [[1020, 1021]],
+          "type": "Polygon",
+          "id": "MDA",
+          "properties": { "name": "Moldova" }
+        },
+        {
+          "arcs": [[[1022]], [[1023]]],
+          "type": "MultiPolygon",
+          "id": "MDG",
+          "properties": { "name": "Madagascar" }
+        },
+        {
+          "arcs": [
+            [[1024]],
+            [[1025]],
+            [[1026]],
+            [[1027]],
+            [[1028]],
+            [[1029, 1030, 1031, 1032, 1033, -214, -769, 1034, 1035], [1036]]
+          ],
+          "type": "MultiPolygon",
+          "id": "MEX",
+          "properties": { "name": "Mexico" }
+        },
+        {
+          "arcs": [[[-23, 1037]], [[-187, -733, 1038, -15, 1039, -21, 1040, -19, -985, 1041]]],
+          "type": "MultiPolygon",
+          "id": "MKD",
+          "properties": { "name": "Macedonia" }
+        },
+        {
+          "arcs": [[1042, -178, -472, -704, 1043, 1044, -589]],
+          "type": "Polygon",
+          "id": "MLI",
+          "properties": { "name": "Mali" }
+        },
+        {
+          "arcs": [
+            [[1045]],
+            [[1046]],
+            [[1047]],
+            [[1048]],
+            [[1049]],
+            [[1050]],
+            [[-993, 1051, 1052, -181, -895, -451]]
+          ],
+          "type": "MultiPolygon",
+          "id": "MMR",
+          "properties": { "name": "Myanmar" }
+        },
+        {
+          "arcs": [[1053, -986, -31, 1054, -16, 1055, -29, 1056, -780, -203]],
+          "type": "Polygon",
+          "id": "MNE",
+          "properties": { "name": "Montenegro" }
+        },
+        {
+          "arcs": [[-464, 1057, -462, 1058]],
+          "type": "Polygon",
+          "id": "MNG",
+          "properties": { "name": "Mongolia" }
+        },
+        {
+          "arcs": [[[1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067]]],
+          "type": "MultiPolygon",
+          "id": "MOZ",
+          "properties": { "name": "Mozambique" }
+        },
+        {
+          "arcs": [[[1068, 1069, 1070, -590, -1045]]],
+          "type": "MultiPolygon",
+          "id": "MRT",
+          "properties": { "name": "Mauritania" }
+        },
+        {
+          "arcs": [[[1071]]],
+          "type": "MultiPolygon",
+          "id": "MUS",
+          "properties": { "name": "Mauritius" }
+        },
+        {
+          "arcs": [
+            [[1072, 1073]],
+            [[1074, 1075]],
+            [[1076, 1077]],
+            [[1078, 1079]],
+            [[1080, -1065, 1081, 1082]]
+          ],
+          "type": "MultiPolygon",
+          "id": "MWI",
+          "properties": { "name": "Malawi" }
+        },
+        {
+          "arcs": [
+            [[1083]],
+            [[-882, 1084]],
+            [[1085]],
+            [[1086]],
+            [[1087, 1088]],
+            [[-886, 1089, -256, 1090, -253, 1091]],
+            [[1092]]
+          ],
+          "type": "MultiPolygon",
+          "id": "MYS",
+          "properties": { "name": "Malaysia" }
+        },
+        {
+          "arcs": [[1093, -261, 1094, 1095, -8]],
+          "type": "Polygon",
+          "id": "NAM",
+          "properties": { "name": "Namibia" }
+        },
+        {
+          "arcs": [[[1096]], [[1097]], [[1098]]],
+          "type": "MultiPolygon",
+          "id": "NCL",
+          "properties": { "name": "New Caledonia" }
+        },
+        {
+          "arcs": [[1099, 1100, -173, -174, -1043, -588, -1000]],
+          "type": "Polygon",
+          "id": "NER",
+          "properties": { "name": "Niger" }
+        },
+        {
+          "arcs": [[[1101, -478, 1102, -169, -1101]]],
+          "type": "MultiPolygon",
+          "id": "NGA",
+          "properties": { "name": "Nigeria" }
+        },
+        {
+          "arcs": [[[1103, -528, 1104, -776]]],
+          "type": "MultiPolygon",
+          "id": "NIC",
+          "properties": { "name": "Nicaragua" }
+        },
+        {
+          "arcs": [[[-166, 1105]], [[1106]], [[-562, -168, 1107], [1108]]],
+          "type": "MultiPolygon",
+          "id": "NLD",
+          "properties": { "name": "Netherlands" }
+        },
+        {
+          "arcs": [
+            [[1109]],
+            [[1110]],
+            [[1111]],
+            [[1112]],
+            [[1113]],
+            [[1114]],
+            [[1115]],
+            [[1116]],
+            [[1117]],
+            [[1118]],
+            [[1119]],
+            [[1120]],
+            [[1121]],
+            [[1122]],
+            [[1123, -656, 1124, 1125]],
+            [[1126]],
+            [[1127]],
+            [[1128]],
+            [[1129]],
+            [[1130]],
+            [[1131]],
+            [[1132]]
+          ],
+          "type": "MultiPolygon",
+          "id": "NOR",
+          "properties": { "name": "Norway" }
+        },
+        {
+          "arcs": [[-894, -454]],
+          "type": "Polygon",
+          "id": "NPL",
+          "properties": { "name": "Nepal" }
+        },
+        {
+          "arcs": [[[1133]], [[1134]], [[1135]], [[1136]], [[1137]], [[1138]]],
+          "type": "MultiPolygon",
+          "id": "NZL",
+          "properties": { "name": "New Zealand" }
+        },
+        {
+          "arcs": [[[1139]], [[1140, 1141, -37, 1142]], [[-41], [-35]], [[-40, 1143]]],
+          "type": "MultiPolygon",
+          "id": "OMN",
+          "properties": { "name": "Oman" }
+        },
+        {
+          "arcs": [[[-954, -897, 1144, -903, -2, -457]]],
+          "type": "MultiPolygon",
+          "id": "PAK",
+          "properties": { "name": "Pakistan" }
+        },
+        {
+          "arcs": [[[1145]], [[-517, 1146, -526, 1147]]],
+          "type": "MultiPolygon",
+          "id": "PAN",
+          "properties": { "name": "Panama" }
+        },
+        {
+          "arcs": [[[-248, -221, 1148, -215, 1149, -219, -438, 1150, -600, -514]]],
+          "type": "MultiPolygon",
+          "id": "PER",
+          "properties": { "name": "Peru" }
+        },
+        {
+          "arcs": [
+            [[1151]],
+            [[1152]],
+            [[1153]],
+            [[1154]],
+            [[1155]],
+            [[1156]],
+            [[1157]],
+            [[1158]],
+            [[1159]],
+            [[1160]],
+            [[1161]],
+            [[1162]],
+            [[1163]],
+            [[1164]],
+            [[1165]],
+            [[1166]],
+            [[1167]],
+            [[1168]],
+            [[1169]],
+            [[1170]],
+            [[1171]],
+            [[1172]],
+            [[1173]],
+            [[1174]],
+            [[1175]],
+            [[1176]],
+            [[1177]],
+            [[1178]],
+            [[1179]],
+            [[1180]],
+            [[1181]]
+          ],
+          "type": "MultiPolygon",
+          "id": "PHL",
+          "properties": { "name": "Philippines" }
+        },
+        {
+          "arcs": [[[1182]]],
+          "type": "MultiPolygon",
+          "id": "PLW",
+          "properties": { "name": "Palau" }
+        },
+        {
+          "arcs": [
+            [[1183]],
+            [[1184]],
+            [[1185]],
+            [[1186]],
+            [[1187]],
+            [[1188]],
+            [[1189]],
+            [[1190]],
+            [[1191]],
+            [[1192]],
+            [[1193]],
+            [[1194]],
+            [[-858, 1195]],
+            [[1196]],
+            [[1197]],
+            [[1198]],
+            [[1199]]
+          ],
+          "type": "MultiPolygon",
+          "id": "PNG",
+          "properties": { "name": "Papua New Guinea" }
+        },
+        {
+          "arcs": [[1200, 1201, 1202, -1008, -209, 1203, 1204, -550, -558, 1205, -554, 1206]],
+          "type": "Polygon",
+          "id": "POL",
+          "properties": { "name": "Poland" }
+        },
+        {
+          "arcs": [[[1207]]],
+          "type": "MultiPolygon",
+          "id": "PRI",
+          "properties": { "name": "Puerto Rico" }
+        },
+        {
+          "arcs": [[[1208, 1209, -983, 1210, -445]]],
+          "type": "MultiPolygon",
+          "id": "PRK",
+          "properties": { "name": "Dem. Rep. Korea" }
+        },
+        {
+          "arcs": [[[1211]], [[1212]], [[1213]], [[1214]], [[1215, -633]]],
+          "type": "MultiPolygon",
+          "id": "PRT",
+          "properties": { "name": "Portugal" }
+        },
+        {
+          "arcs": [[-247, 1216, -245, -46, -217]],
+          "type": "Polygon",
+          "id": "PRY",
+          "properties": { "name": "Paraguay" }
+        },
+        {
+          "arcs": [[[-602, 1217, -923]], [[-938, 1218, -917]]],
+          "type": "MultiPolygon",
+          "id": "PSX",
+          "properties": { "name": "Palestine" }
+        },
+        {
+          "arcs": [[[1219]]],
+          "type": "MultiPolygon",
+          "id": "PYF",
+          "properties": { "name": "Fr. Polynesia" }
+        },
+        {
+          "arcs": [[1220, 1221]],
+          "type": "Polygon",
+          "id": "QAT",
+          "properties": { "name": "Qatar" }
+        },
+        {
+          "arcs": [[1222, 1223, -189, 1224, -795, 1225, -1021]],
+          "type": "Polygon",
+          "id": "ROU",
+          "properties": { "name": "Romania" }
+        },
+        {
+          "arcs": [
+            [[1226]],
+            [[1227]],
+            [[1228]],
+            [[1229]],
+            [[1230]],
+            [[1231]],
+            [[1232]],
+            [[1233]],
+            [[1234]],
+            [[1235]],
+            [[1236]],
+            [[-1203, 1237, -1201, 1238, -1006, 1239, -1009]],
+            [[1240]],
+            [[1241]],
+            [[1242, -639]],
+            [[1243]],
+            [[1244]],
+            [[1245]],
+            [[1246]],
+            [[1247]],
+            [[1248]],
+            [[1249]],
+            [[1250]],
+            [[1251]],
+            [[1252]],
+            [[1253]],
+            [[1254]],
+            [[1255]],
+            [[1256]],
+            [[1257]],
+            [[1258]],
+            [[1259]],
+            [[1260]],
+            [[1261]],
+            [[1262]],
+            [[1263]],
+            [[1264]],
+            [[1265]],
+            [[1266]],
+            [[1267]],
+            [[1268]],
+            [[1269]],
+            [[1270]],
+            [
+              [
+                -1209,
+                -444,
+                1271,
+                -465,
+                -1059,
+                -461,
+                -963,
+                1272,
+                -154,
+                -699,
+                1273,
+                1274,
+                -207,
+                -1012,
+                -643,
+                1275,
+                -641,
+                1276,
+                -637,
+                1277,
+                -653,
+                -1124,
+                1278
+              ]
+            ],
+            [[1279]],
+            [[1280]],
+            [[1281]],
+            [[1282]],
+            [[1283]],
+            [[1284]],
+            [[1285]],
+            [[1286]],
+            [[1287]],
+            [[1288]],
+            [[1289]],
+            [[1290]],
+            [[1291]],
+            [[1292]],
+            [[1293]],
+            [[1294]],
+            [[1295]],
+            [[1296]],
+            [[1297]],
+            [[1298]]
+          ],
+          "type": "MultiPolygon",
+          "id": "RUS",
+          "properties": { "name": "Russia" }
+        },
+        {
+          "arcs": [[1299, -161, -504, 1300, -502, 1301]],
+          "type": "Polygon",
+          "id": "RWA",
+          "properties": { "name": "Rwanda" }
+        },
+        {
+          "arcs": [[-591, -1071, 1302, -1018]],
+          "type": "Polygon",
+          "id": "ESH",
+          "properties": { "name": "W. Sahara" }
+        },
+        {
+          "arcs": [[[1303]], [[-989, 1304, -1221, 1305, -38, -1142, 1306, 1307, -934, -909]]],
+          "type": "MultiPolygon",
+          "id": "SAU",
+          "properties": { "name": "Saudi Arabia" }
+        },
+        {
+          "arcs": [[[1308, -610, -651, 1309, -262, 1310, -998, -605]]],
+          "type": "MultiPolygon",
+          "id": "SDN",
+          "properties": { "name": "Sudan" }
+        },
+        {
+          "arcs": [[-650, -969, 1311, -496, -263, -1310]],
+          "type": "Polygon",
+          "id": "SSD",
+          "properties": { "name": "S. Sudan" }
+        },
+        {
+          "arcs": [[-1044, -709, -714, 1312, -711, 1313, -1069]],
+          "type": "Polygon",
+          "id": "SEN",
+          "properties": { "name": "Senegal" }
+        },
+        { "arcs": [[1314]], "type": "Polygon", "id": "SGP", "properties": { "name": "Singapore" } },
+        {
+          "arcs": [[[1315]]],
+          "type": "MultiPolygon",
+          "id": "SGS",
+          "properties": { "name": "S. Geo. and S. Sandw. Is." }
+        },
+        {
+          "arcs": [
+            [[1316]],
+            [[1317]],
+            [[1318]],
+            [[1319]],
+            [[1320]],
+            [[1321]],
+            [[1322]],
+            [[1323]],
+            [[1324]],
+            [[1325]],
+            [[1326]],
+            [[1327]],
+            [[1328]]
+          ],
+          "type": "MultiPolygon",
+          "id": "SLB",
+          "properties": { "name": "Solomon Is." }
+        },
+        {
+          "arcs": [[[1329]], [[-997, 1330, -706]]],
+          "type": "MultiPolygon",
+          "id": "SLE",
+          "properties": { "name": "Sierra Leone" }
+        },
+        {
+          "arcs": [[[-778, 1331, -767]]],
+          "type": "MultiPolygon",
+          "id": "SLV",
+          "properties": { "name": "El Salvador" }
+        },
+        {
+          "arcs": [[-931]],
+          "type": "Polygon",
+          "id": "SMR",
+          "properties": { "name": "San Marino" }
+        },
+        {
+          "arcs": [[1332, -647, -565, 1333]],
+          "type": "Polygon",
+          "id": "SOL",
+          "properties": { "name": "Somaliland" }
+        },
+        {
+          "arcs": [[-964, -648, -1333, 1334]],
+          "type": "Polygon",
+          "id": "SOM",
+          "properties": { "name": "Somalia" }
+        },
+        {
+          "arcs": [[-1225, -188, -1042, -987, -1054, -202, -787, -796]],
+          "type": "Polygon",
+          "id": "SRB",
+          "properties": { "name": "Serbia" }
+        },
+        {
+          "arcs": [[[1335]]],
+          "type": "MultiPolygon",
+          "id": "STP",
+          "properties": { "name": "S\u00e3o Tom\u00e9 and Principe" }
+        },
+        {
+          "arcs": [[-664, -239, -771, 1336]],
+          "type": "Polygon",
+          "id": "SUR",
+          "properties": { "name": "Suriname" }
+        },
+        {
+          "arcs": [[1337, -798, -142, -551, -1205]],
+          "type": "Polygon",
+          "id": "SVK",
+          "properties": { "name": "Slovakia" }
+        },
+        {
+          "arcs": [[-789, 1338, -929, -144, -797]],
+          "type": "Polygon",
+          "id": "SVN",
+          "properties": { "name": "Slovenia" }
+        },
+        {
+          "arcs": [[[1339]], [[1340]], [[1341]], [[1342, -1125, -655]]],
+          "type": "MultiPolygon",
+          "id": "SWE",
+          "properties": { "name": "Sweden" }
+        },
+        {
+          "arcs": [[-1061, 1343]],
+          "type": "Polygon",
+          "id": "SWZ",
+          "properties": { "name": "Swaziland" }
+        },
+        {
+          "arcs": [[1344, -1014]],
+          "type": "Polygon",
+          "id": "SXM",
+          "properties": { "name": "Sint Maarten" }
+        },
+        {
+          "arcs": [[-913, 911, -911, -939, -926, -995, 1345, 1346]],
+          "type": "Polygon",
+          "id": "SYR",
+          "properties": { "name": "Syria" }
+        },
+        {
+          "arcs": [[-1311, -267, -473, 1347, -481, 1348, -479, -1102, -1100, -999]],
+          "type": "Polygon",
+          "id": "TCD",
+          "properties": { "name": "Chad" }
+        },
+        {
+          "arcs": [[-171, 1349, -700, -175]],
+          "type": "Polygon",
+          "id": "TGO",
+          "properties": { "name": "Togo" }
+        },
+        {
+          "arcs": [[[1350]], [[1351]], [[-992, -976, 1352, -1089, 1353, -1052]]],
+          "type": "MultiPolygon",
+          "id": "THA",
+          "properties": { "name": "Thailand" }
+        },
+        {
+          "arcs": [[[-974]], [[1354]], [[-970, -458, -6, 1355]]],
+          "type": "MultiPolygon",
+          "id": "TJK",
+          "properties": { "name": "Tajikistan" }
+        },
+        {
+          "arcs": [[[-4, -902, 1356, -961, 1357, 1358, 1359]]],
+          "type": "MultiPolygon",
+          "id": "TKM",
+          "properties": { "name": "Turkmenistan" }
+        },
+        {
+          "arcs": [[[1360, -803]], [[-805, 1361]]],
+          "type": "MultiPolygon",
+          "id": "TLS",
+          "properties": { "name": "Timor-Leste" }
+        },
+        {
+          "arcs": [[[1362]]],
+          "type": "MultiPolygon",
+          "id": "TON",
+          "properties": { "name": "Tonga" }
+        },
+        {
+          "arcs": [[[1363]]],
+          "type": "MultiPolygon",
+          "id": "TTO",
+          "properties": { "name": "Trinidad and Tobago" }
+        },
+        {
+          "arcs": [[[1364]], [[-1001, -586, 1365]]],
+          "type": "MultiPolygon",
+          "id": "TUN",
+          "properties": { "name": "Tunisia" }
+        },
+        {
+          "arcs": [[[1366, -734, -185]], [[-697, -56, -153, -906, -914, -1347, 1367]]],
+          "type": "MultiPolygon",
+          "id": "TUR",
+          "properties": { "name": "Turkey" }
+        },
+        {
+          "arcs": [[[1368]]],
+          "type": "MultiPolygon",
+          "id": "TWN",
+          "properties": { "name": "Taiwan" }
+        },
+        {
+          "arcs": [
+            [[1369]],
+            [[1370]],
+            [[1371]],
+            [[1372]],
+            [
+              [
+                1373,
+                1374,
+                1375,
+                -966,
+                1376,
+                -1067,
+                1377,
+                -1074,
+                1378,
+                -1076,
+                1379,
+                -1078,
+                1380,
+                -1080,
+                1381,
+                -1083,
+                1382,
+                1383,
+                -158,
+                -1300,
+                1384
+              ]
+            ]
+          ],
+          "type": "MultiPolygon",
+          "id": "TZA",
+          "properties": { "name": "Tanzania" }
+        },
+        {
+          "arcs": [
+            [[-1375, 1385]],
+            [[1386, -1385, -1302, -501, 1387, -499, 1388, -497, -1312, -968]]
+          ],
+          "type": "MultiPolygon",
+          "id": "UGA",
+          "properties": { "name": "Uganda" }
+        },
+        {
+          "arcs": [[[1389, -1223, -1022, -1226, -794, -1338, -1204, -208, -1275], [1390], [1391]]],
+          "type": "MultiPolygon",
+          "id": "UKR",
+          "properties": { "name": "Ukraine" }
+        },
+        {
+          "arcs": [[1392, -242, 1393, -48, -244]],
+          "type": "Polygon",
+          "id": "URY",
+          "properties": { "name": "Uruguay" }
+        },
+        {
+          "arcs": [
+            [[1394]],
+            [[1395]],
+            [[1396]],
+            [[1397]],
+            [[1398]],
+            [[1399]],
+            [[1400]],
+            [[1401]],
+            [[1402]],
+            [[1403]],
+            [[1404]],
+            [[1405]],
+            [[1406]],
+            [[1407]],
+            [[1408]],
+            [[1409]],
+            [[1410, -344]],
+            [
+              [
+                1411,
+                -340,
+                1412,
+                -338,
+                1413,
+                -336,
+                1414,
+                -334,
+                -278,
+                1415,
+                -276,
+                1416,
+                -1033,
+                1417,
+                -1031,
+                1418,
+                -1036,
+                1419,
+                -342
+              ]
+            ],
+            [[1420]],
+            [[1421]],
+            [[1422]],
+            [[1423]],
+            [[1424]],
+            [[1425]],
+            [[1426]],
+            [[1427]],
+            [[1428]],
+            [[1429]],
+            [[1430]],
+            [[1431]],
+            [[1432]],
+            [[1433]],
+            [[1434]],
+            [[1435]],
+            [[1436]],
+            [[1437]],
+            [[1438]],
+            [[1439]],
+            [[1440]],
+            [[1441]],
+            [[1442]],
+            [[1443]],
+            [[1444]],
+            [[1445]],
+            [[1446]],
+            [[1447]],
+            [[1448]],
+            [[1449]],
+            [[1450]],
+            [[1451]],
+            [[1452]],
+            [[1453]],
+            [[-347, 345, 1454]]
+          ],
+          "type": "MultiPolygon",
+          "id": "USA",
+          "properties": { "name": "United States" }
+        },
+        {
+          "arcs": [[[-534, 1455]], [[1456, -532]]],
+          "type": "MultiPolygon",
+          "id": "USG",
+          "properties": { "name": "USNB Guantanamo Bay" }
+        },
+        {
+          "arcs": [
+            [[-973]],
+            [[-972]],
+            [[-955, 1457, -958, -971, -1356, -5, -1360, 1458, -1358, -960, 1459], [-1355]]
+          ],
+          "type": "MultiPolygon",
+          "id": "UZB",
+          "properties": { "name": "Uzbekistan" }
+        },
+        { "arcs": [[-932]], "type": "Polygon", "id": "VAT", "properties": { "name": "Vatican" } },
+        {
+          "arcs": [[[1460]]],
+          "type": "MultiPolygon",
+          "id": "VCT",
+          "properties": { "name": "St. Vin. and Gren." }
+        },
+        {
+          "arcs": [[[1461]], [[1462]], [[1463]], [[-772, -250, -513, 1464]]],
+          "type": "MultiPolygon",
+          "id": "VEN",
+          "properties": { "name": "Venezuela" }
+        },
+        {
+          "arcs": [[[1465]], [[1466, -978, -991, -449]]],
+          "type": "MultiPolygon",
+          "id": "VNM",
+          "properties": { "name": "Vietnam" }
+        },
+        {
+          "arcs": [
+            [[1467]],
+            [[1468]],
+            [[1469]],
+            [[1470]],
+            [[1471]],
+            [[1472]],
+            [[1473]],
+            [[1474]],
+            [[1475]],
+            [[1476]],
+            [[1477]],
+            [[1478]]
+          ],
+          "type": "MultiPolygon",
+          "id": "VUT",
+          "properties": { "name": "Vanuatu" }
+        },
+        {
+          "arcs": [[1479, -547]],
+          "type": "Polygon",
+          "id": "WSB",
+          "properties": { "name": "Akrotiri" }
+        },
+        {
+          "arcs": [[[1480]], [[1481]]],
+          "type": "MultiPolygon",
+          "id": "WSM",
+          "properties": { "name": "Samoa" }
+        },
+        {
+          "arcs": [[[1482]], [[1483, -1307, -1141]]],
+          "type": "MultiPolygon",
+          "id": "YEM",
+          "properties": { "name": "Yemen" }
+        },
+        {
+          "arcs": [[[-1062, -1344, -1060, 1484, -1095, -260, 1485], [-1005]]],
+          "type": "MultiPolygon",
+          "id": "ZAF",
+          "properties": { "name": "South Africa" }
+        },
+        {
+          "arcs": [[-1383, -1082, -1064, 1486, 1487, 1488, -1094, -7, -508, 1489, -506, 1490]],
+          "type": "Polygon",
+          "id": "ZMB",
+          "properties": { "name": "Zambia" }
+        },
+        {
+          "arcs": [[-1063, -1486, -259, -1489, 1491, -1487]],
+          "type": "Polygon",
+          "id": "ZWE",
+          "properties": { "name": "Zimbabwe" }
+        }
+      ],
+      "type": "GeometryCollection"
+    }
+  },
+  "transform": { "translate": [-180, -90], "scale": [0.036003600360036005, 0.01736514657995801] }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/zambia-topo.json b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/zambia-topo.json
new file mode 100644
index 0000000..96f9d5e
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/maps/zambia-topo.json
@@ -0,0 +1,3951 @@
+{
+  "type": "Topology",
+  "arcs": [
+    [
+      [25255, 22350],
+      [-11, -20],
+      [-3, -10],
+      [0, -13],
+      [0, -37],
+      [-4, -21],
+      [-24, -74],
+      [-4, -40],
+      [0, -20],
+      [7, -17],
+      [11, -13],
+      [3, -14],
+      [0, -20],
+      [-512, -739],
+      [-42, -41],
+      [-49, -23],
+      [-1261, -232],
+      [-18, -7],
+      [-80, -10],
+      [-31, -40],
+      [-14, -47],
+      [4, -64],
+      [20, -111],
+      [-10, -151],
+      [10, -61],
+      [25, -47],
+      [59, -70],
+      [21, -44],
+      [-4, -40],
+      [-6, -47],
+      [-7, -44],
+      [17, -34],
+      [-10, -20],
+      [-11, -20],
+      [-10, -17],
+      [-11, -10],
+      [-10, -7]
+    ],
+    [
+      [23300, 20125],
+      [0, 4],
+      [-129, -10],
+      [-63, -27],
+      [-101, -81],
+      [-157, -81],
+      [-49, -10],
+      [-34, 20],
+      [-53, 58],
+      [-38, 16],
+      [-38, 0],
+      [-28, -13],
+      [-46, -44],
+      [-55, -40],
+      [-133, -51],
+      [-45, -36],
+      [-18, -44],
+      [-38, -135],
+      [-10, -77],
+      [-11, -34],
+      [-7, -26],
+      [14, -27],
+      [87, -128],
+      [49, -20],
+      [45, -4],
+      [35, -16],
+      [14, -61],
+      [-10, -64],
+      [-32, -50],
+      [-41, -30],
+      [-60, -7],
+      [-21, 7],
+      [-14, 13],
+      [-10, 17],
+      [-14, 10],
+      [-21, 0],
+      [-42, -3],
+      [-21, 3],
+      [-76, 30],
+      [-126, 78],
+      [-24, 6],
+      [-119, 4],
+      [-34, 3],
+      [-28, 13],
+      [-39, 37],
+      [-52, 68],
+      [-31, 16],
+      [-241, -6],
+      [-73, -20],
+      [-63, -31],
+      [-52, -37],
+      [-31, 68],
+      [-46, -11],
+      [-52, -26],
+      [-42, 3],
+      [-31, 17],
+      [-24, 0],
+      [-14, 6],
+      [-4, 47],
+      [-7, 34],
+      [-244, 501],
+      [-76, 107],
+      [-178, 111],
+      [-25, 41],
+      [-13, 64],
+      [-35, 63],
+      [-39, 58],
+      [-38, 36],
+      [-105, 64],
+      [-41, 37],
+      [-18, 51],
+      [-7, 94],
+      [-28, 27],
+      [-104, -17],
+      [-63, 20],
+      [-146, 87],
+      [-39, 34],
+      [-52, 128],
+      [-42, 33],
+      [-69, -43],
+      [-11, 30],
+      [-35, 67],
+      [-14, 17],
+      [-24, 27],
+      [-28, 20],
+      [-31, 0],
+      [-39, -23],
+      [-34, 53],
+      [-25, 165],
+      [-35, 37],
+      [-48, 17],
+      [-25, 40],
+      [-28, 235],
+      [-10, 37],
+      [-42, 44],
+      [-21, 34],
+      [11, 13],
+      [3, 34],
+      [-52, 201],
+      [-18, 31],
+      [-45, 50],
+      [-21, 37],
+      [-35, 101],
+      [-17, 27],
+      [-14, 50],
+      [-4, 182],
+      [11, 60],
+      [153, 256],
+      [11, 13],
+      [66, 57],
+      [14, 10],
+      [-21, 128],
+      [10, 74],
+      [28, 50],
+      [32, 37],
+      [52, 128],
+      [-4, 118],
+      [4, 33],
+      [10, 20],
+      [25, 44],
+      [7, 34],
+      [0, 40],
+      [-32, 181],
+      [0, 34],
+      [42, 67],
+      [38, 81],
+      [14, 37],
+      [0, 34],
+      [-3, 73],
+      [3, 34],
+      [18, 30],
+      [52, 61],
+      [11, 37],
+      [7, 37],
+      [27, 67],
+      [7, 37],
+      [0, 151],
+      [14, 81],
+      [28, 77],
+      [39, 74],
+      [52, 61],
+      [21, 33],
+      [21, 74],
+      [45, 84],
+      [14, 17],
+      [17, 10],
+      [39, -3],
+      [17, 3],
+      [42, 37],
+      [45, 54],
+      [39, 64],
+      [17, 67],
+      [-17, 23],
+      [-70, 61],
+      [-18, 34],
+      [7, 40],
+      [18, 70],
+      [-4, 41],
+      [-73, 90],
+      [-38, 61],
+      [0, 47],
+      [14, 34],
+      [-28, 50],
+      [14, 34],
+      [17, 30],
+      [11, 40],
+      [7, 44],
+      [-4, 40],
+      [-21, 64],
+      [-28, 54],
+      [-24, 60],
+      [-7, 88],
+      [7, 70],
+      [17, 54],
+      [7, 54],
+      [-14, 67],
+      [-7, 0],
+      [-24, 17],
+      [-7, 7],
+      [-10, 20],
+      [-4, 33],
+      [-7, 17],
+      [-101, 98],
+      [28, 64],
+      [73, 97],
+      [45, 104],
+      [28, 131],
+      [7, 273],
+      [-21, 245],
+      [11, 74],
+      [94, 218],
+      [28, 148],
+      [28, 61],
+      [55, 27],
+      [7, 13],
+      [-80, 91],
+      [-7, 50],
+      [-17, 20],
+      [-28, 10],
+      [-28, 24],
+      [-42, 64],
+      [-17, 70],
+      [-4, 158],
+      [-7, 37],
+      [-27, 71],
+      [-4, 30],
+      [-14, 47],
+      [-56, 74],
+      [-14, 30],
+      [18, 21],
+      [66, 23],
+      [21, 27],
+      [-94, -3],
+      [-38, 16],
+      [-14, 44],
+      [0, 61],
+      [-7, 43],
+      [-11, 37],
+      [-24, 37],
+      [-70, 57],
+      [-35, 41],
+      [-17, 53],
+      [7, 48],
+      [3, 63],
+      [-3, 64],
+      [-63, 84],
+      [-104, 64],
+      [-147, 34],
+      [-129, 57],
+      [-45, 124],
+      [59, 125],
+      [126, 94],
+      [271, 148],
+      [279, 228],
+      [495, 555],
+      [380, 571],
+      [111, 292],
+      [14, 303],
+      [-125, 302],
+      [-11, 64],
+      [77, 37],
+      [356, 61],
+      [515, 90],
+      [471, 81],
+      [627, 108]
+    ],
+    [
+      [22634, 32998],
+      [-3, -4],
+      [-21, -70],
+      [-87, -195],
+      [-35, -57],
+      [-11, -14],
+      [-42, -43],
+      [-27, -27],
+      [-11, -4],
+      [-90, -27],
+      [-115, -47],
+      [-25, -16],
+      [-14, -11],
+      [-28, -37],
+      [-35, -53],
+      [-87, -199],
+      [-31, -57],
+      [-10, -13],
+      [-21, -20],
+      [-11, -14],
+      [-7, -17],
+      [-94, -262],
+      [-66, -326],
+      [-98, -285],
+      [-17, -31],
+      [-38, -50],
+      [-11, -10],
+      [-28, -17],
+      [-90, -30],
+      [-28, -14],
+      [-11, -10],
+      [-17, -27],
+      [-70, -272],
+      [-7, -17],
+      [-14, -3],
+      [-38, 0],
+      [-14, -3],
+      [-10, -14],
+      [-7, -17],
+      [-7, -40],
+      [-7, -20],
+      [-7, -71],
+      [17, -37],
+      [14, -17],
+      [42, -30],
+      [52, -30],
+      [31, -13],
+      [28, -17],
+      [21, -20],
+      [21, -27],
+      [25, -17],
+      [24, -14],
+      [31, -3],
+      [25, 7],
+      [17, 10],
+      [14, 0],
+      [21, -10],
+      [17, -10],
+      [11, -10],
+      [38, -51],
+      [7, -17],
+      [14, -30],
+      [11, -13],
+      [10, -14],
+      [10, -6],
+      [35, -7],
+      [18, -7],
+      [10, -10],
+      [18, -27],
+      [10, -10],
+      [14, -3],
+      [14, 0],
+      [24, 17],
+      [14, 0],
+      [11, -11],
+      [7, -23],
+      [3, -37],
+      [11, -27],
+      [7, -23],
+      [3, -24],
+      [-10, -84],
+      [-4, -20],
+      [4, -34],
+      [52, -205],
+      [-7, -30],
+      [-7, -24],
+      [-7, -20],
+      [-7, -13],
+      [-14, -10],
+      [-14, -7],
+      [-17, -3],
+      [-11, -10],
+      [-7, -17],
+      [-3, -20],
+      [-11, -81],
+      [4, -27],
+      [3, -34],
+      [11, -26],
+      [24, -54],
+      [63, -192],
+      [14, -27],
+      [17, -20],
+      [11, -10],
+      [24, -20],
+      [11, -7],
+      [17, 0],
+      [14, 4],
+      [28, 16],
+      [17, 4],
+      [18, 0],
+      [38, -4],
+      [14, -6],
+      [14, -7],
+      [45, -44],
+      [11, -13],
+      [45, -108],
+      [17, -23],
+      [21, -14],
+      [14, -6],
+      [11, -11],
+      [10, -13],
+      [7, -10],
+      [7, -7],
+      [11, -3],
+      [34, -7],
+      [18, -10],
+      [10, -24],
+      [18, -36],
+      [17, -17],
+      [18, -10],
+      [34, -7],
+      [14, -7],
+      [28, -17],
+      [14, -6],
+      [14, 0],
+      [49, 10],
+      [17, -4],
+      [63, -23],
+      [52, -10],
+      [14, -7],
+      [14, -7],
+      [52, -33],
+      [95, -34],
+      [55, -7],
+      [18, -6],
+      [10, -7],
+      [21, -24],
+      [14, -6],
+      [17, 0],
+      [35, 3],
+      [18, 0],
+      [35, -3],
+      [17, 0],
+      [35, 3],
+      [14, 0],
+      [14, -7],
+      [14, -6],
+      [10, -14],
+      [7, -13],
+      [31, -61],
+      [32, -57],
+      [42, -47],
+      [34, -30],
+      [11, -20],
+      [10, -27],
+      [14, -57],
+      [11, -27],
+      [14, -17],
+      [28, -14],
+      [34, -6],
+      [28, -14],
+      [14, -6],
+      [14, -14],
+      [11, -10],
+      [7, -13],
+      [7, -17],
+      [34, -118],
+      [4, -30],
+      [-14, -77],
+      [-77, -222],
+      [-3, -20],
+      [-4, -24],
+      [7, -37],
+      [7, -20],
+      [49, -131],
+      [28, -57],
+      [7, -14],
+      [0, -17],
+      [-11, -16],
+      [-48, -44],
+      [-21, -24],
+      [-18, -26],
+      [-17, -34],
+      [-11, -34],
+      [-48, -255],
+      [-11, -34],
+      [-10, -13],
+      [-7, -10],
+      [-7, -10],
+      [-42, -34],
+      [-28, -17],
+      [-14, -3],
+      [-35, -7],
+      [-17, 4],
+      [-38, 6],
+      [-18, 7],
+      [-45, 24],
+      [-32, 13],
+      [-17, 3],
+      [-136, 7],
+      [-70, -10],
+      [-13, -3],
+      [-60, -31],
+      [-24, -16],
+      [-45, -44],
+      [-91, -104],
+      [-24, -20],
+      [-14, -11],
+      [-70, -30],
+      [-108, -60],
+      [-94, -27],
+      [-28, -14],
+      [-11, -6],
+      [-17, -14],
+      [-10, -10],
+      [-14, -23],
+      [-39, -47],
+      [-17, -14],
+      [-87, -57],
+      [-11, -10],
+      [-10, -14],
+      [-7, -26],
+      [-7, -108],
+      [-11, -34],
+      [-10, -20],
+      [-14, -6],
+      [-10, -14],
+      [-18, -27],
+      [-49, -91],
+      [-3, -23],
+      [3, -24],
+      [18, -43],
+      [10, -20],
+      [25, -31],
+      [3, -17],
+      [-7, -23],
+      [-10, -20],
+      [-119, -178],
+      [-14, -34],
+      [-7, -17],
+      [-14, -80],
+      [-14, -21],
+      [-17, -6],
+      [-17, -4],
+      [-63, 7],
+      [-18, 0],
+      [-20, -10],
+      [-18, -37],
+      [-31, -30],
+      [-363, -259],
+      [-14, -20],
+      [-7, -24],
+      [4, -396],
+      [-7, -24],
+      [-7, -17],
+      [-132, -137],
+      [-60, -74],
+      [-24, -47],
+      [-7, -14],
+      [7, -17],
+      [24, -13],
+      [227, -91],
+      [28, -20],
+      [268, -303],
+      [11, -6],
+      [17, -7],
+      [17, -7],
+      [35, 4],
+      [32, 6],
+      [17, 0],
+      [17, 0],
+      [14, -6],
+      [140, -84],
+      [17, -7],
+      [18, 0],
+      [14, 10],
+      [7, 17],
+      [3, 20],
+      [7, 87],
+      [14, 84],
+      [3, 21],
+      [-3, 23],
+      [-28, 44],
+      [-21, 27],
+      [-35, 53],
+      [-10, 24],
+      [-11, 37],
+      [-3, 34],
+      [3, 26],
+      [4, 21],
+      [3, 20],
+      [-7, 23],
+      [-55, 94],
+      [-18, 54],
+      [35, 44],
+      [49, 37],
+      [822, 494],
+      [21, 7],
+      [18, -4],
+      [14, -6],
+      [48, -44],
+      [98, -61],
+      [115, -43],
+      [31, -17],
+      [56, -37],
+      [14, -14],
+      [14, -26],
+      [80, -175],
+      [21, -27],
+      [10, -10],
+      [67, -51],
+      [17, -13],
+      [17, -24],
+      [81, -154],
+      [7, -17],
+      [3, -17],
+      [4, -37],
+      [13, -185],
+      [-174, -1277],
+      [21, 20],
+      [28, 58],
+      [87, 36],
+      [14, 24],
+      [4, 34],
+      [10, 37],
+      [17, 40],
+      [21, 27],
+      [101, 80],
+      [35, 48],
+      [14, 73],
+      [21, 27],
+      [21, 14],
+      [42, 10],
+      [369, -10],
+      [53, -10],
+      [45, -31],
+      [930, -752],
+      [11, -14],
+      [7, -17],
+      [3, -16],
+      [0, -24],
+      [0, -10],
+      [-3, -7]
+    ],
+    [
+      [30545, 30410],
+      [118, -407],
+      [150, -370],
+      [24, -342],
+      [-324, 30],
+      [-299, 84],
+      [-300, 30],
+      [-349, -57],
+      [-250, -145],
+      [-199, -141],
+      [-227, -30],
+      [-223, 87],
+      [-76, -228],
+      [-199, 104],
+      [-226, -20],
+      [-199, 144],
+      [-150, -114],
+      [-174, -171],
+      [-150, -88],
+      [-77, -198],
+      [-198, -286],
+      [223, -255],
+      [226, -430],
+      [126, -370],
+      [97, -400],
+      [227, -171],
+      [299, -141],
+      [102, -115],
+      [6, -850],
+      [-191, -44],
+      [-14, 14],
+      [-14, 27],
+      [-21, 23],
+      [-31, 7],
+      [-28, -17],
+      [-25, -64],
+      [-21, -13],
+      [-38, -10],
+      [-101, -61],
+      [-56, -23],
+      [-76, -10],
+      [-32, -14],
+      [-14, -34],
+      [21, -26],
+      [4, -24],
+      [-14, -10],
+      [-45, 0],
+      [-21, -10],
+      [-7, -24],
+      [10, -134],
+      [-10, -40],
+      [-21, -24],
+      [-60, -40],
+      [-20, -27],
+      [-32, 30],
+      [-59, 24],
+      [-63, 13],
+      [-49, 0],
+      [-55, -10],
+      [-42, -20],
+      [-133, -111],
+      [7, -24],
+      [39, -43],
+      [17, -27],
+      [7, -24],
+      [11, -13],
+      [34, -4],
+      [25, 7],
+      [21, 14],
+      [24, 3],
+      [21, -24],
+      [14, -70],
+      [-49, -24],
+      [-108, 0],
+      [-24, -33],
+      [-4, -31],
+      [14, -33],
+      [59, -74],
+      [14, -20],
+      [-7, -14],
+      [-10, -27],
+      [-14, -23],
+      [-21, -17],
+      [-17, -23],
+      [-4, -24],
+      [-3, -20],
+      [-133, -131],
+      [-48, -20],
+      [-63, 0],
+      [28, 33],
+      [10, 34],
+      [-3, 37],
+      [-18, 37],
+      [-31, 30],
+      [-14, -34],
+      [-4, -80],
+      [-45, -14],
+      [-56, 17],
+      [-24, 37],
+      [31, 44],
+      [-62, 0],
+      [-39, -84],
+      [-24, -111],
+      [-28, -74],
+      [-24, -20],
+      [-84, -34],
+      [-31, -3],
+      [-21, -10],
+      [-32, -17],
+      [-38, -17],
+      [-42, -3],
+      [59, -71],
+      [-13, -30],
+      [-42, 7],
+      [-39, 47],
+      [-28, -14],
+      [-27, -30],
+      [-14, -37],
+      [-7, -37],
+      [-53, -118],
+      [-244, -342],
+      [-62, -148],
+      [-25, -84],
+      [-21, -31],
+      [-66, -70],
+      [-17, -10],
+      [-32, -47],
+      [-13, -10],
+      [-70, 13],
+      [-35, 3],
+      [-28, -16],
+      [-24, -31],
+      [-18, -33],
+      [-17, -67],
+      [-14, -31],
+      [-18, -27],
+      [-24, -13],
+      [-38, -7],
+      [-53, -27],
+      [-27, -60],
+      [-21, -77],
+      [-32, -71],
+      [-69, -60],
+      [-42, -41],
+      [-87, -37]
+    ],
+    [
+      [22634, 32998],
+      [49, 10],
+      [791, 138],
+      [791, 134],
+      [599, 104],
+      [767, 135],
+      [509, 87],
+      [77, -323],
+      [149, -336],
+      [189, -312],
+      [202, -242],
+      [97, -88],
+      [122, -80],
+      [133, -54],
+      [125, -3],
+      [63, 36],
+      [59, 48],
+      [66, 40],
+      [70, 0],
+      [35, -30],
+      [56, -84],
+      [34, -27],
+      [39, -7],
+      [24, 10],
+      [21, 17],
+      [157, 60],
+      [35, 10],
+      [21, 11],
+      [7, 13],
+      [10, 3],
+      [24, -16],
+      [11, -24],
+      [10, -60],
+      [11, -24],
+      [38, -30],
+      [38, -4],
+      [42, 4],
+      [46, -4],
+      [45, -27],
+      [66, -84],
+      [45, -33],
+      [115, -37],
+      [60, -57],
+      [21, -88],
+      [0, -124],
+      [24, -148],
+      [66, -104],
+      [289, -249],
+      [49, -23],
+      [59, 0],
+      [63, 27],
+      [101, 60],
+      [70, 7],
+      [443, -138],
+      [-56, -138],
+      [0, -168],
+      [62, -134],
+      [126, -34],
+      [63, 30],
+      [41, 37],
+      [49, 21],
+      [73, -11],
+      [88, -57],
+      [31, -10],
+      [28, 4],
+      [56, 13],
+      [27, 0],
+      [35, -20],
+      [28, -17],
+      [108, -128],
+      [59, -47],
+      [60, -23]
+    ],
+    [
+      [28154, 15770],
+      [-66, -54],
+      [-140, -34],
+      [-66, -44],
+      [-122, -104],
+      [-28, -33],
+      [-10, -10],
+      [-21, 16],
+      [-28, 4],
+      [-24, -7],
+      [-11, -27],
+      [-14, -47],
+      [-55, -74],
+      [-28, -87],
+      [-39, -7],
+      [-80, 20],
+      [-28, -10],
+      [-34, -50],
+      [-81, -37],
+      [-38, -68],
+      [-52, -248],
+      [-18, -47],
+      [-73, -84],
+      [-7, -7],
+      [-49, -57],
+      [18, -54],
+      [-32, -27],
+      [-87, -10],
+      [-34, -20],
+      [-77, -64],
+      [-42, -13],
+      [-21, -24],
+      [0, -57],
+      [-10, -54],
+      [-67, -27],
+      [-3, -13],
+      [-49, -81],
+      [-45, -47],
+      [-21, -27],
+      [-17, -43],
+      [-28, -17],
+      [-28, -10],
+      [-2311, -7],
+      [0, -10],
+      [11, -10],
+      [14, -7],
+      [35, -10],
+      [59, -10],
+      [17, -3],
+      [18, -14],
+      [14, -34],
+      [80, -272],
+      [10, -23],
+      [18, -10],
+      [76, -37],
+      [140, -44],
+      [31, -17],
+      [14, -10],
+      [35, -34],
+      [14, -10],
+      [14, -6],
+      [14, -10],
+      [7, -14],
+      [14, -30],
+      [17, -30],
+      [3, -14],
+      [4, -20],
+      [3, -37],
+      [0, -27],
+      [-3, -27],
+      [-14, -43],
+      [-17, -37],
+      [-28, -54],
+      [-21, -30],
+      [-35, -31],
+      [-77, -43],
+      [-24, -24],
+      [-42, -47],
+      [-28, -17],
+      [-14, -13],
+      [-10, -20],
+      [-14, -37],
+      [-14, -27],
+      [-21, -24],
+      [-87, -84],
+      [-115, -171],
+      [-21, -27],
+      [-17, -10],
+      [-18, -3],
+      [-17, 0],
+      [-35, 6],
+      [-18, -3],
+      [-13, -7],
+      [-11, -20],
+      [-14, -34],
+      [-7, -43],
+      [-10, -31],
+      [-18, -20],
+      [-14, -13],
+      [-17, -7],
+      [-24, -17],
+      [-32, -37],
+      [-10, -23],
+      [-11, -37],
+      [-7, -71],
+      [-17, -64],
+      [-11, -6],
+      [-10, -24],
+      [-14, -37],
+      [-21, -124],
+      [-17, -172],
+      [17, -37],
+      [63, -60],
+      [73, -97],
+      [14, -24]
+    ],
+    [
+      [24049, 11565],
+      [-150, 10],
+      [-28, 17],
+      [-31, 33],
+      [-11, 11],
+      [-17, 3],
+      [-21, 0],
+      [-17, -3],
+      [-21, -7],
+      [-28, -20],
+      [-32, -4],
+      [-24, -13],
+      [-21, 10],
+      [-10, 13],
+      [-11, 10],
+      [-14, -3],
+      [-17, -27],
+      [-21, -64],
+      [-7, -16],
+      [-10, -17],
+      [-7, -10],
+      [-21, -14],
+      [-25, -6],
+      [-45, -7],
+      [-28, 0],
+      [-24, 3],
+      [-49, 14],
+      [-21, 0],
+      [-21, -14],
+      [-59, -54],
+      [-14, -10],
+      [-17, -6],
+      [-63, 6],
+      [-18, 0],
+      [-237, -104],
+      [-14, -13],
+      [-20, -21],
+      [-25, -23],
+      [-174, -111],
+      [-24, -23],
+      [-18, -11],
+      [-97, -3],
+      [-18, 7],
+      [-21, -10],
+      [-24, -17],
+      [-42, -67],
+      [-17, -44],
+      [-11, -77],
+      [-35, -145],
+      [-80, -168],
+      [-199, -40],
+      [-243, -7],
+      [-251, 71],
+      [-523, -178],
+      [-153, -34],
+      [-161, -77],
+      [-369, -367],
+      [-237, -90],
+      [-261, -37],
+      [-258, -7],
+      [-492, 144],
+      [-83, -57],
+      [-98, -212],
+      [-77, -238],
+      [-80, -158],
+      [-90, -37],
+      [-175, 40],
+      [-501, 182],
+      [-509, 91],
+      [-39, 0],
+      [-38, -7],
+      [-28, -14],
+      [-150, -111],
+      [-24, -40],
+      [-7, -34],
+      [21, -47],
+      [38, -30],
+      [70, -20],
+      [160, -27],
+      [46, -17],
+      [38, -40],
+      [77, -168],
+      [41, -155],
+      [7, -57],
+      [4, -33],
+      [-4, -17],
+      [-3, -20],
+      [-28, -41],
+      [-52, -47],
+      [-317, -97],
+      [-129, -299]
+    ],
+    [
+      [17212, 8238],
+      [-11, -10],
+      [-17, -31],
+      [-11, -10],
+      [-21, 7],
+      [-31, 17],
+      [-21, 3],
+      [-31, -3],
+      [-21, -10],
+      [-28, -34],
+      [-21, 27],
+      [-10, 30],
+      [-18, 24],
+      [-14, 17],
+      [-17, 13],
+      [-35, 37],
+      [-7, 13],
+      [-3, 17],
+      [7, 14],
+      [10, 10],
+      [10, 10],
+      [11, 10],
+      [7, 13],
+      [0, 14],
+      [-11, 10],
+      [-3, 17],
+      [-4, 20],
+      [4, 64],
+      [-4, 20],
+      [-7, 13],
+      [-48, 20],
+      [-11, 14],
+      [-3, 17],
+      [-4, 20],
+      [-3, 20],
+      [-4, 13],
+      [-17, 14],
+      [-153, 57],
+      [-14, 7],
+      [-4, 3],
+      [-3, 14],
+      [7, 30],
+      [-7, 17],
+      [-18, 10],
+      [-45, -4],
+      [-25, -10],
+      [-13, -17],
+      [-4, -16],
+      [-3, -27],
+      [-7, -14],
+      [-39, -23],
+      [-7, -14],
+      [-7, -20],
+      [0, -20],
+      [-7, -17],
+      [-7, -17],
+      [-7, -13],
+      [-10, -7],
+      [-17, -13],
+      [-21, -20],
+      [-11, -14],
+      [-10, -10],
+      [-18, -7],
+      [-14, -3],
+      [-14, -10],
+      [-7, -13],
+      [-7, -17],
+      [-6, -17],
+      [-14, -7],
+      [-14, 0],
+      [-49, 27],
+      [-56, 20],
+      [-14, 0],
+      [-10, -20],
+      [-11, -23],
+      [-247, -498],
+      [-7, -27],
+      [-49, -33],
+      [-31, 50],
+      [-35, 10],
+      [0, 40],
+      [-153, 740],
+      [-77, 50],
+      [-697, 41],
+      [-28, 10],
+      [14, 23],
+      [70, 67],
+      [0, 21],
+      [-32, 30],
+      [-394, 255],
+      [-118, 27],
+      [-174, 24],
+      [-4234, 127]
+    ],
+    [
+      [9967, 9427],
+      [3, 236],
+      [-14, 124],
+      [4, 30],
+      [3, 20],
+      [11, 11],
+      [90, 90],
+      [21, 27],
+      [11, 10],
+      [14, 10],
+      [17, 0],
+      [17, 0],
+      [18, -3],
+      [17, -3],
+      [21, 3],
+      [21, 17],
+      [11, 20],
+      [3, 20],
+      [-7, 98],
+      [4, 33],
+      [10, 17],
+      [45, 50],
+      [42, 71],
+      [18, 37],
+      [10, 34],
+      [3, 147],
+      [0, 21],
+      [-7, 16],
+      [-87, 175],
+      [-7, 27],
+      [0, 34],
+      [0, 67],
+      [7, 34],
+      [7, 23],
+      [25, 34],
+      [17, 33],
+      [7, 31],
+      [4, 40],
+      [7, 23],
+      [7, 21],
+      [10, 13],
+      [10, 10],
+      [14, 10],
+      [32, 10],
+      [17, 14],
+      [7, 16],
+      [0, 21],
+      [0, 40],
+      [7, 108],
+      [-17, 67],
+      [-4, 54],
+      [4, 30],
+      [7, 23],
+      [14, 31],
+      [10, 16],
+      [7, 14],
+      [28, 80],
+      [21, 44],
+      [52, 91],
+      [18, 27],
+      [10, 10],
+      [14, 10],
+      [10, 7],
+      [21, 6]
+    ],
+    [
+      [10632, 11857],
+      [73, 51],
+      [39, 37],
+      [52, 10],
+      [52, 3],
+      [1649, -225],
+      [17, -20],
+      [11, -14],
+      [20, -47],
+      [25, -30],
+      [31, -20],
+      [46, -13],
+      [76, -14],
+      [133, -71],
+      [21, -26],
+      [17, -31],
+      [21, -27],
+      [31, -10],
+      [32, 7],
+      [104, 51],
+      [18, 174],
+      [34, 71],
+      [122, 161],
+      [189, 165],
+      [125, 208],
+      [24, 34],
+      [39, 33],
+      [49, 21],
+      [48, 6],
+      [32, -10],
+      [55, -30],
+      [35, -7],
+      [18, 7],
+      [10, 17],
+      [14, 17],
+      [31, 6],
+      [248, -20],
+      [56, 17],
+      [104, 81],
+      [42, 16],
+      [369, 17],
+      [49, 51],
+      [14, 16],
+      [21, 58],
+      [-7, 376],
+      [-3, 17],
+      [0, 17],
+      [0, 16],
+      [17, 31],
+      [52, 84],
+      [7, 17],
+      [7, 20],
+      [4, 20],
+      [0, 20],
+      [-4, 40],
+      [-7, 37],
+      [-24, 64],
+      [-25, 44],
+      [-146, 208],
+      [-35, 34],
+      [-111, 70],
+      [-14, 14],
+      [-4, 13],
+      [14, 27],
+      [32, 14],
+      [59, 23],
+      [28, 14],
+      [14, 20],
+      [3, 13],
+      [4, 17],
+      [-7, 131],
+      [3, 84],
+      [11, 91],
+      [24, 74],
+      [63, 101],
+      [31, 67],
+      [4, 20],
+      [3, 20],
+      [4, 20],
+      [-7, 17],
+      [-11, 10],
+      [-90, 51],
+      [-25, 16],
+      [-14, 14],
+      [-17, 23],
+      [-11, 14],
+      [-7, 17],
+      [-10, 50],
+      [-11, 34],
+      [-17, 27],
+      [-17, 27],
+      [-21, 26],
+      [-25, 17],
+      [-24, 14]
+    ],
+    [
+      [14518, 14812],
+      [1216, -44],
+      [258, -37],
+      [3, -17],
+      [-3, -20],
+      [-4, -20],
+      [-3, -20],
+      [0, -17],
+      [24, -84],
+      [7, -17],
+      [7, -13],
+      [42, -44],
+      [11, -14],
+      [3, -16],
+      [7, -17],
+      [7, -57],
+      [10, -31],
+      [4, -20],
+      [7, -57],
+      [17, -70],
+      [11, -21],
+      [17, -20],
+      [11, -6],
+      [31, -27],
+      [52, 23],
+      [80, 67],
+      [67, 84],
+      [28, 84],
+      [-21, 74],
+      [-4, 51],
+      [14, 40],
+      [28, 20],
+      [38, 10],
+      [35, -10],
+      [21, -57],
+      [14, -20],
+      [17, -20],
+      [21, -4],
+      [18, 17],
+      [3, 27],
+      [-3, 24],
+      [3, 23],
+      [94, 138],
+      [28, 50],
+      [0, 24],
+      [-7, 20],
+      [-3, 20],
+      [10, 31],
+      [18, 13],
+      [28, 3],
+      [24, 0],
+      [14, 7],
+      [7, 44],
+      [-14, 43],
+      [0, 44],
+      [45, 54],
+      [49, -7],
+      [21, -3],
+      [14, -10],
+      [52, -37],
+      [31, -17],
+      [35, -13],
+      [251, -21],
+      [56, -20],
+      [45, -47],
+      [199, -551],
+      [31, -64],
+      [39, -60],
+      [59, -58],
+      [31, -16],
+      [28, -7],
+      [14, 7],
+      [14, 6],
+      [38, 27],
+      [21, 7],
+      [25, 7],
+      [80, 3],
+      [24, 7],
+      [14, 7],
+      [25, 6],
+      [34, 7],
+      [168, 3],
+      [101, 14],
+      [17, 6],
+      [14, 7],
+      [24, 17],
+      [11, 13],
+      [10, 11],
+      [14, 13],
+      [21, 13],
+      [39, 7],
+      [24, 0],
+      [24, -3],
+      [185, -57],
+      [38, -4],
+      [25, 0],
+      [59, 20],
+      [56, 11],
+      [94, 3],
+      [31, -3],
+      [140, -44],
+      [52, -7],
+      [195, 17],
+      [21, 3],
+      [14, 7],
+      [28, 13],
+      [38, 27],
+      [14, 7],
+      [119, 20],
+      [240, 10],
+      [31, 14],
+      [14, 20],
+      [-21, 373],
+      [4, 17],
+      [7, 13],
+      [10, 14],
+      [429, 366],
+      [21, 24],
+      [52, 87],
+      [63, 71],
+      [24, 23],
+      [101, 67],
+      [119, 51],
+      [14, 6],
+      [10, 10],
+      [192, 269],
+      [115, 131],
+      [10, 14],
+      [7, 10],
+      [7, 23]
+    ],
+    [
+      [21111, 15927],
+      [25, 0],
+      [73, 14],
+      [73, 3],
+      [66, -37],
+      [28, -40],
+      [17, -54],
+      [28, -37],
+      [46, -13],
+      [31, 20],
+      [56, 77],
+      [42, 27],
+      [66, 30],
+      [174, 131],
+      [422, 182],
+      [59, 40],
+      [174, 185],
+      [70, 34],
+      [70, -4],
+      [52, -37],
+      [52, -47],
+      [56, -40],
+      [38, -3],
+      [25, 10],
+      [24, -4],
+      [24, -37],
+      [11, -33],
+      [-7, -37],
+      [-11, -34],
+      [-13, -27],
+      [-25, -16],
+      [-52, -14],
+      [-21, -27],
+      [-4, -27],
+      [7, -70],
+      [-7, -31],
+      [-17, -10],
+      [-28, -6],
+      [-24, -17],
+      [0, -47],
+      [10, -40],
+      [18, -37],
+      [17, -37],
+      [28, -27],
+      [45, -31],
+      [63, -30],
+      [118, -37],
+      [192, 0],
+      [45, 7],
+      [46, 107],
+      [3, 377],
+      [0, 507],
+      [0, 484],
+      [0, 508],
+      [0, 595],
+      [4, 511],
+      [0, 564],
+      [0, 397],
+      [0, 363]
+    ],
+    [
+      [23300, 20112],
+      [55, 13],
+      [14, 7],
+      [11, 10],
+      [10, 14],
+      [28, 43],
+      [14, 30],
+      [7, 21],
+      [4, 20],
+      [14, 171],
+      [3, 20],
+      [7, 17],
+      [10, 14],
+      [11, 10],
+      [10, 10],
+      [244, 114],
+      [63, 17],
+      [70, 10],
+      [14, 0],
+      [21, -13],
+      [24, -31],
+      [52, -70],
+      [56, -115],
+      [3, -16],
+      [4, -17],
+      [7, -61],
+      [3, -17],
+      [4, -16],
+      [10, -24],
+      [46, -67],
+      [14, -27],
+      [17, -27],
+      [21, -20],
+      [45, -30],
+      [25, -14],
+      [24, -10],
+      [38, -10],
+      [18, -7],
+      [17, -20],
+      [28, -57],
+      [14, -17],
+      [66, -30],
+      [39, -7],
+      [13, -6],
+      [14, -7],
+      [14, -10],
+      [14, -10],
+      [49, -17],
+      [42, -27],
+      [31, -17],
+      [73, -13],
+      [18, -7],
+      [42, -27],
+      [14, -7],
+      [17, -3],
+      [52, 0],
+      [25, -10],
+      [28, -13],
+      [41, -27],
+      [28, -10],
+      [21, 0],
+      [52, 10],
+      [35, 0],
+      [18, -4],
+      [17, -13],
+      [14, -17],
+      [18, -37],
+      [13, -20],
+      [18, -20],
+      [28, -14],
+      [21, -3],
+      [17, 3],
+      [31, 10],
+      [32, 4],
+      [35, -7],
+      [17, -10],
+      [14, -17],
+      [17, -37],
+      [7, -27],
+      [0, -27],
+      [-3, -151],
+      [-10, -40],
+      [-28, -67],
+      [-4, -17],
+      [-3, -20],
+      [0, -41],
+      [3, -37],
+      [4, -16],
+      [3, -17],
+      [14, -17],
+      [21, -20],
+      [35, -27],
+      [76, -40],
+      [32, -17],
+      [14, -17],
+      [17, -27],
+      [11, -44],
+      [0, -27],
+      [-4, -23],
+      [-24, -71],
+      [-4, -20],
+      [0, -20],
+      [4, -17],
+      [21, -30],
+      [35, -37],
+      [83, -74],
+      [42, -23],
+      [28, -11],
+      [42, 24],
+      [24, 17],
+      [24, 23],
+      [35, 54],
+      [14, 7],
+      [14, 0],
+      [18, -7],
+      [14, -17],
+      [38, -104],
+      [21, -33],
+      [21, -24],
+      [35, -24],
+      [59, -30],
+      [14, -13],
+      [10, -17],
+      [7, -34],
+      [4, -23],
+      [-4, -24],
+      [-7, -17],
+      [-7, -16],
+      [-17, -27],
+      [-42, -54],
+      [-7, -13],
+      [-31, -88],
+      [-4, -17],
+      [4, -16],
+      [45, -175],
+      [3, -37],
+      [0, -20],
+      [-13, -84],
+      [10, -24],
+      [21, -23],
+      [181, -142],
+      [59, -33],
+      [28, -20],
+      [28, -17],
+      [18, -3],
+      [34, 0],
+      [98, 23],
+      [21, 0],
+      [17, -3],
+      [105, -34],
+      [38, -3],
+      [21, -7],
+      [80, -30],
+      [25, -4],
+      [17, 4],
+      [35, 0],
+      [38, -34],
+      [223, -242],
+      [39, -30],
+      [17, -3],
+      [38, 0],
+      [18, 3],
+      [17, 3],
+      [14, 7],
+      [11, 10],
+      [10, 13],
+      [10, 14],
+      [7, 13],
+      [28, 74],
+      [4, 7],
+      [3, 30],
+      [4, 64],
+      [7, 17],
+      [7, 13],
+      [10, 10],
+      [28, 14],
+      [59, 23],
+      [18, 4],
+      [132, 0],
+      [38, -7],
+      [18, -7],
+      [101, -53],
+      [28, -21],
+      [14, -13],
+      [10, -13],
+      [18, -48],
+      [10, -53],
+      [49, -743],
+      [17, -64],
+      [56, -124],
+      [70, -84],
+      [38, -54],
+      [4, -34],
+      [7, -60],
+      [-4, -114],
+      [0, -168]
+    ],
+    [
+      [14518, 14812],
+      [-101, 74],
+      [-45, 43],
+      [-11, 20],
+      [-14, 31],
+      [-14, 43],
+      [-3, 37],
+      [14, 222],
+      [10, 54],
+      [21, 60],
+      [14, 31],
+      [10, 13],
+      [60, 51],
+      [10, 13],
+      [7, 17],
+      [11, 23],
+      [31, 165],
+      [10, 27],
+      [11, 20],
+      [10, 10],
+      [28, 14],
+      [59, 23],
+      [28, 17],
+      [14, 13],
+      [14, 21],
+      [35, 90],
+      [7, 10],
+      [14, 14],
+      [66, 37],
+      [18, 17],
+      [17, 30],
+      [31, 60],
+      [11, 34],
+      [10, 30],
+      [0, 20],
+      [-7, 61],
+      [-7, 33],
+      [-35, 78],
+      [-3, 23],
+      [-7, 27],
+      [0, 57],
+      [7, 34],
+      [7, 23],
+      [7, 17],
+      [7, 14],
+      [10, 13],
+      [25, 24],
+      [163, 114],
+      [25, 20],
+      [28, 37],
+      [21, 37],
+      [10, 27],
+      [7, 23],
+      [80, 390],
+      [0, 4],
+      [-14, 6],
+      [-14, 7],
+      [-17, 3],
+      [-21, 0],
+      [-66, -13],
+      [-18, 7],
+      [-17, 13],
+      [-10, 27],
+      [-11, 17],
+      [-10, 10],
+      [-14, 3],
+      [-11, 14],
+      [-10, 30],
+      [-7, 13],
+      [-11, 14],
+      [-14, 7],
+      [-14, 6],
+      [-7, 0],
+      [-52, 4],
+      [-17, 6],
+      [-14, 11],
+      [-25, 20],
+      [-13, 6],
+      [-81, 37],
+      [-14, 10],
+      [-10, 11],
+      [-21, 26],
+      [-10, 11],
+      [-28, 20],
+      [-32, 17],
+      [-14, 10],
+      [-14, 13],
+      [-6, 20],
+      [-4, 17],
+      [4, 20],
+      [27, 44],
+      [28, 74],
+      [11, 20],
+      [10, 30],
+      [4, 20],
+      [-7, 21],
+      [-7, 13],
+      [-56, 67],
+      [-14, 7],
+      [-14, 13],
+      [-14, 17],
+      [-7, 30],
+      [-10, 21],
+      [-11, 16],
+      [-14, 10],
+      [-10, 14],
+      [-14, 17],
+      [-7, 30],
+      [0, 23],
+      [21, 37],
+      [10, 27],
+      [28, 148],
+      [7, 24],
+      [11, 20],
+      [24, 44],
+      [21, 23],
+      [28, 17],
+      [14, 3],
+      [17, 4],
+      [52, 6],
+      [14, 4],
+      [32, 13],
+      [24, 20],
+      [21, 21],
+      [28, 40],
+      [31, 64],
+      [105, 148],
+      [24, 16],
+      [28, 14],
+      [119, 23],
+      [17, 7],
+      [14, 14],
+      [0, 13],
+      [-7, 10],
+      [-21, 27],
+      [0, 3],
+      [-28, 78],
+      [-7, 23],
+      [-3, 27],
+      [0, 47],
+      [3, 27],
+      [11, 24],
+      [7, 20],
+      [14, 33],
+      [0, 104],
+      [-4, 21],
+      [-35, 117],
+      [-3, 20],
+      [-4, 24],
+      [14, 7],
+      [14, -4],
+      [66, -16],
+      [84, -4],
+      [28, 4],
+      [56, 10],
+      [35, 6],
+      [376, -43],
+      [17, 10],
+      [21, 13],
+      [35, 51],
+      [17, 16],
+      [39, 24],
+      [14, 10],
+      [45, 24],
+      [38, 57],
+      [18, 13],
+      [14, 10],
+      [31, 10],
+      [14, 7],
+      [21, 20],
+      [45, 44],
+      [25, 20],
+      [14, 3],
+      [41, 14],
+      [28, -24],
+      [46, -30],
+      [41, -34],
+      [0, -20],
+      [-7, -23],
+      [11, -20],
+      [84, -17],
+      [34, -17],
+      [11, -7],
+      [42, 64],
+      [45, 17],
+      [10, 7],
+      [129, 97],
+      [11, 10]
+    ],
+    [
+      [16717, 19826],
+      [14, -13],
+      [129, -158],
+      [83, -30],
+      [133, -14],
+      [136, 7],
+      [94, 27],
+      [59, 50],
+      [31, 47],
+      [39, 27],
+      [76, -7],
+      [60, -27],
+      [170, -114],
+      [42, -60],
+      [14, -88],
+      [18, -70],
+      [66, -24],
+      [56, 10],
+      [41, 4],
+      [220, -24],
+      [28, -17],
+      [10, -30],
+      [7, -34],
+      [14, -30],
+      [73, -64],
+      [42, 20],
+      [45, 48],
+      [74, 23],
+      [59, -30],
+      [45, -47],
+      [49, -41],
+      [80, 0],
+      [59, 11],
+      [60, -7],
+      [55, -17],
+      [53, -34],
+      [247, -238],
+      [42, -74],
+      [56, -168],
+      [38, -78],
+      [101, -117],
+      [28, -64],
+      [0, -91],
+      [-35, -54],
+      [-49, -40],
+      [-28, -47],
+      [21, -87],
+      [60, -91],
+      [66, -74],
+      [49, -81],
+      [10, -174],
+      [31, -34],
+      [42, 0],
+      [49, 23],
+      [28, 41],
+      [42, 97],
+      [41, 27],
+      [136, -33],
+      [122, -138],
+      [202, -293],
+      [53, -53],
+      [21, -37],
+      [24, -121],
+      [14, -17],
+      [42, -14],
+      [10, -16],
+      [-3, -17],
+      [-14, -37],
+      [0, -14],
+      [3, -16],
+      [-7, -37],
+      [4, -17],
+      [14, -17],
+      [17, -3],
+      [14, -7],
+      [11, -7],
+      [27, -117],
+      [28, -21],
+      [60, -3],
+      [27, -10],
+      [35, -54],
+      [91, -501],
+      [49, -141],
+      [90, -97],
+      [39, -54],
+      [48, -13],
+      [56, 13],
+      [52, 23],
+      [56, 0]
+    ],
+    [
+      [24537, 10506],
+      [-7, 7],
+      [0, 407],
+      [-18, 101],
+      [-14, 10],
+      [-31, 37],
+      [-24, 40],
+      [-28, 40],
+      [-25, 20],
+      [-45, 24],
+      [-17, 13],
+      [-14, 17],
+      [-119, 175],
+      [-14, 13],
+      [-14, 10],
+      [-66, 31],
+      [-21, 20],
+      [-10, 27],
+      [-11, 43],
+      [-10, 24]
+    ],
+    [
+      [28154, 15770],
+      [31, 23],
+      [67, 24],
+      [48, -11],
+      [60, -16],
+      [62, -10],
+      [49, 23],
+      [234, 202],
+      [73, 104],
+      [35, 128],
+      [24, 134],
+      [52, 198],
+      [14, 31],
+      [63, 16],
+      [24, 17],
+      [14, 24],
+      [7, 33],
+      [21, 68],
+      [46, 47],
+      [41, 50],
+      [11, 81],
+      [17, 0],
+      [7, -14],
+      [7, -16],
+      [7, -17],
+      [49, 33],
+      [66, 41],
+      [39, 33],
+      [31, 44],
+      [17, 10],
+      [63, 7],
+      [21, 17],
+      [14, 20],
+      [7, 30],
+      [38, -17],
+      [25, 7],
+      [24, 17],
+      [35, 16],
+      [-18, 64],
+      [-3, 71],
+      [7, 67],
+      [14, 54],
+      [3, 17],
+      [-3, 37],
+      [0, 13],
+      [17, 17],
+      [18, 3],
+      [17, -3],
+      [11, 7],
+      [38, 43],
+      [14, 21],
+      [10, 30],
+      [32, 3],
+      [62, 20],
+      [63, 27],
+      [24, 34],
+      [11, 60],
+      [45, 155],
+      [28, 54],
+      [28, 23],
+      [24, 7],
+      [18, 13],
+      [14, 71],
+      [28, 67],
+      [7, 37],
+      [3, 44],
+      [18, 111],
+      [0, 114],
+      [10, 34],
+      [14, 23],
+      [10, 27],
+      [14, 84],
+      [32, 40],
+      [62, 333],
+      [0, 148],
+      [7, 27],
+      [28, 47],
+      [7, 20],
+      [4, 51],
+      [14, 20],
+      [17, 20],
+      [28, 33],
+      [21, 41],
+      [38, 101],
+      [39, 43],
+      [146, 131],
+      [10, 34],
+      [53, 71],
+      [24, 70],
+      [14, 74],
+      [7, 71],
+      [244, -64],
+      [178, 0],
+      [149, 175],
+      [49, 198],
+      [126, 144],
+      [174, 0],
+      [376, 27],
+      [676, 229],
+      [401, 144],
+      [126, 313],
+      [198, 373],
+      [0, 161],
+      [59, 94],
+      [119, 58],
+      [143, 43]
+    ],
+    [
+      [33744, 21866],
+      [28, -437],
+      [-11, -124],
+      [-38, -128],
+      [0, -54],
+      [35, -77],
+      [10, -47],
+      [-10, -54],
+      [-18, -53],
+      [-28, -175],
+      [-118, -309],
+      [-11, -115],
+      [7, -114],
+      [21, -54],
+      [84, -90],
+      [35, -48],
+      [38, -110],
+      [52, -239],
+      [56, -101],
+      [105, -40],
+      [219, 74],
+      [119, -44],
+      [49, 0],
+      [34, -13],
+      [4, -71],
+      [-24, -54],
+      [-14, -10],
+      [-77, -50],
+      [-24, -57],
+      [-46, -10],
+      [-10, -24],
+      [-4, -84],
+      [-28, -40],
+      [-90, -41],
+      [-32, -37],
+      [-48, -77],
+      [-60, -71],
+      [-69, -47],
+      [-67, -16],
+      [-24, 10],
+      [-24, 16],
+      [-28, 17],
+      [-39, 4],
+      [-76, -17],
+      [-25, -10],
+      [-34, -44],
+      [-49, -118],
+      [-42, -33],
+      [-31, -10],
+      [-18, -10],
+      [-14, -14],
+      [-14, -13],
+      [-17, -17],
+      [-11, -24],
+      [-14, -16],
+      [-31, -4],
+      [-14, 17],
+      [-35, 77],
+      [-21, 24],
+      [-27, 7],
+      [-21, -4],
+      [-49, -13],
+      [-25, -14],
+      [-27, -26],
+      [-25, -14],
+      [-21, 24],
+      [-14, 26],
+      [-14, 17],
+      [-21, 7],
+      [-24, -13],
+      [-42, -41],
+      [-31, -47],
+      [-91, -205],
+      [-108, -178],
+      [-42, -91],
+      [-10, -60],
+      [17, -249],
+      [21, -37],
+      [80, -57],
+      [74, -77],
+      [24, -81],
+      [-14, -97],
+      [-80, -205],
+      [-49, -377],
+      [4, -60],
+      [14, -58],
+      [24, -57],
+      [45, -77],
+      [11, -40],
+      [-18, -47],
+      [-87, -31],
+      [-76, -104],
+      [-53, -134],
+      [-42, -192],
+      [-41, -181],
+      [-53, -131],
+      [-83, -51],
+      [-56, -10],
+      [-24, -37],
+      [-7, -54],
+      [3, -60],
+      [-14, -77],
+      [-38, -31],
+      [-112, -16],
+      [-38, -31],
+      [-80, -77],
+      [-39, -7],
+      [-55, 24],
+      [-42, 3],
+      [-31, -27],
+      [-11, -70],
+      [35, -108],
+      [94, -23],
+      [108, -4],
+      [80, -37],
+      [112, -178],
+      [17, -40],
+      [-24, -37],
+      [-112, -57],
+      [-31, -41],
+      [17, -90],
+      [87, -44],
+      [108, -24],
+      [91, -37],
+      [45, -43],
+      [147, -205],
+      [14, -51],
+      [7, -50],
+      [17, -54],
+      [24, -23],
+      [53, 3],
+      [24, -13],
+      [18, -31],
+      [3, -17],
+      [-7, -20],
+      [-10, -171],
+      [14, -51],
+      [69, -100],
+      [56, 13],
+      [94, 172],
+      [38, 50],
+      [42, 23],
+      [105, 34],
+      [28, 30],
+      [28, 88],
+      [27, 16],
+      [46, -36],
+      [90, -195],
+      [53, -71],
+      [-216, -81],
+      [-262, -100],
+      [-373, -142],
+      [-515, -195],
+      [-499, -191],
+      [-453, -172],
+      [-313, -121],
+      [-276, -104],
+      [-240, -50],
+      [-112, -37],
+      [-226, -114],
+      [-300, -111],
+      [-390, -145],
+      [-429, -158],
+      [-202, -117],
+      [-279, -165],
+      [-254, -104],
+      [-310, -84],
+      [-384, -105],
+      [-310, -84],
+      [-52, -3],
+      [-422, -107],
+      [-296, -78],
+      [-415, -168],
+      [-254, -101],
+      [-314, -131],
+      [-278, -151],
+      [-220, -124],
+      [-261, -34],
+      [-49, -13],
+      [0, -4]
+    ],
+    [
+      [24537, 10506],
+      [-4, -23],
+      [21, -101],
+      [0, -151],
+      [18, -148],
+      [108, -424],
+      [76, -164],
+      [94, -68],
+      [46, -20],
+      [38, -43],
+      [28, -61],
+      [21, -64],
+      [14, -70],
+      [7, -222],
+      [10, -37],
+      [46, -67],
+      [7, -34],
+      [-7, -34],
+      [-56, -117],
+      [-18, -78],
+      [7, -47],
+      [84, -97],
+      [17, -27],
+      [32, -101],
+      [-7, -10],
+      [-42, -17],
+      [-119, -53],
+      [-83, -4],
+      [-94, 47],
+      [-49, 24],
+      [-77, 10],
+      [-24, -10],
+      [-45, -44],
+      [-25, -17],
+      [-45, -13],
+      [-35, 13],
+      [-77, 61],
+      [-118, 27],
+      [-122, -20],
+      [-119, -34],
+      [-115, -24],
+      [-128, 17],
+      [-258, 77],
+      [-133, 14],
+      [-66, -17],
+      [-122, -60],
+      [-129, -24],
+      [-171, -64],
+      [-73, -10],
+      [-63, 10],
+      [-55, 17],
+      [-63, 10],
+      [-73, -23],
+      [-112, -105],
+      [-52, -37],
+      [-258, -23],
+      [-45, -10],
+      [-655, -336],
+      [-108, -125],
+      [-25, -16],
+      [-63, -17],
+      [-55, -41],
+      [-49, -47],
+      [-28, -37],
+      [-66, -131],
+      [-35, -40],
+      [-73, -17],
+      [-136, -3],
+      [-63, -10],
+      [-14, -10]
+    ],
+    [
+      [20759, 7186],
+      [0, 3],
+      [-45, 40],
+      [-63, 47],
+      [-69, 17],
+      [-49, -57],
+      [-35, 20],
+      [-31, 0],
+      [-25, -13],
+      [-10, -34],
+      [-35, 24],
+      [-21, -10],
+      [-14, -21],
+      [-14, -13],
+      [-28, 3],
+      [-45, 14],
+      [-21, 3],
+      [-52, -7],
+      [-18, 4],
+      [-28, 13],
+      [-202, 178],
+      [-38, 21],
+      [-59, 3],
+      [-119, -20],
+      [-63, 13],
+      [-48, 37],
+      [-129, 148],
+      [-49, 44],
+      [-49, 17],
+      [-111, 16],
+      [-35, 17],
+      [-59, 47],
+      [-32, 20],
+      [-59, 17],
+      [-296, -23],
+      [-49, -20],
+      [-87, -68],
+      [-32, -6],
+      [-27, 20],
+      [-95, 87],
+      [-48, 30],
+      [-293, 128],
+      [-63, 10],
+      [-56, 20],
+      [-31, 47],
+      [-28, 61],
+      [-38, 57],
+      [-112, 57],
+      [-122, 7],
+      [-118, -30],
+      [-98, -58],
+      [-28, 17],
+      [-17, 20],
+      [-7, 27],
+      [7, 27],
+      [-56, 41],
+      [-69, 13],
+      [-129, -3]
+    ],
+    [
+      [10632, 11857],
+      [-76, 4],
+      [-35, -14],
+      [-14, -10],
+      [-70, -37],
+      [-52, -6],
+      [-42, 0],
+      [-28, 3],
+      [-17, 7],
+      [-14, 10],
+      [-14, 10],
+      [-11, 10],
+      [-31, 17],
+      [-56, 13],
+      [-195, 20],
+      [-38, 0],
+      [-18, -6],
+      [-52, -31],
+      [-31, -13],
+      [-129, -30],
+      [-46, -17],
+      [-27, -14],
+      [-11, -10],
+      [-59, -23],
+      [-115, -30],
+      [-28, -4],
+      [-143, 10],
+      [-28, 0],
+      [-28, -6],
+      [-55, -21],
+      [-28, -3],
+      [-21, -3],
+      [-21, 6],
+      [-24, 7],
+      [-25, 14],
+      [-21, 16],
+      [-24, 20],
+      [-63, 81],
+      [-35, 54],
+      [-7, 13],
+      [-10, 34],
+      [-4, 17],
+      [-3, 20],
+      [14, 111],
+      [0, 17],
+      [-7, 77],
+      [0, 34],
+      [3, 10],
+      [7, 16],
+      [4, 7],
+      [3, 7],
+      [11, 7],
+      [17, 10],
+      [66, 27],
+      [77, 40],
+      [10, 10],
+      [25, 20],
+      [31, 37],
+      [7, 17],
+      [4, 20],
+      [7, 148],
+      [14, 77],
+      [3, 7],
+      [4, 13],
+      [3, 17],
+      [11, 14],
+      [17, 27],
+      [24, 47],
+      [11, 37],
+      [10, 40],
+      [4, 23],
+      [0, 121],
+      [-7, 27],
+      [-14, 27],
+      [-32, 44],
+      [-20, 17],
+      [-21, 6],
+      [-115, -23],
+      [-32, 7],
+      [-52, 20],
+      [-335, 188],
+      [-20, 7],
+      [-70, 13],
+      [-66, 20],
+      [-60, 10],
+      [-153, 58],
+      [-24, 13],
+      [-18, 17],
+      [-14, 30],
+      [-7, 17],
+      [-14, 30],
+      [-3, 17],
+      [-4, 17],
+      [-3, 20],
+      [3, 87],
+      [0, 17],
+      [-24, 64],
+      [-7, 37],
+      [-7, 13],
+      [-7, 17],
+      [-17, 20],
+      [-35, 37],
+      [-70, 91],
+      [-14, 17],
+      [-10, 3],
+      [-11, 0],
+      [-24, -17],
+      [-14, -10],
+      [-14, -3],
+      [-14, -7],
+      [-10, -13],
+      [-7, -17],
+      [-4, -20],
+      [0, -37],
+      [-7, -10],
+      [-3, -4],
+      [-18, -3],
+      [-7, 3],
+      [-3, 4],
+      [-4, 10],
+      [0, 17],
+      [7, 64],
+      [-3, 20],
+      [-11, 3],
+      [-14, 0],
+      [-27, 10],
+      [-14, 3],
+      [-7, -10],
+      [-4, -13],
+      [7, -34],
+      [0, -16],
+      [-7, -14],
+      [-10, -7],
+      [-14, 4],
+      [-32, 13],
+      [-17, 4],
+      [-35, 0],
+      [-10, 13],
+      [-7, 17],
+      [-25, 33],
+      [-35, 24],
+      [-24, 17],
+      [-14, 17],
+      [-14, 20],
+      [-66, 77],
+      [-10, -3],
+      [-11, -10],
+      [-7, -17],
+      [-14, -10],
+      [-28, -7],
+      [-3, -10],
+      [7, -14],
+      [7, -10],
+      [10, -13],
+      [4, -14],
+      [-7, -10],
+      [-14, -3],
+      [-18, -3],
+      [-41, 3],
+      [-21, 7],
+      [-18, -4],
+      [-10, -10],
+      [-11, -13],
+      [-10, -10],
+      [-21, -4],
+      [-11, 10],
+      [-10, 17],
+      [-7, 17],
+      [-7, 17],
+      [-10, -3],
+      [-7, -11],
+      [-11, -13],
+      [-10, -10],
+      [-14, -3],
+      [-18, 0],
+      [-111, 37],
+      [-25, 16],
+      [-17, 17],
+      [-3, 40],
+      [0, 21],
+      [-7, 23],
+      [-11, 24],
+      [-31, 33],
+      [-21, 10],
+      [-11, 0],
+      [-3, -13],
+      [-4, -17],
+      [-7, -13],
+      [-10, -14],
+      [-7, -10],
+      [0, -17],
+      [7, -13],
+      [17, -17],
+      [7, -13],
+      [4, -17],
+      [-7, -10],
+      [-17, -7],
+      [-25, 3],
+      [-35, 7],
+      [-21, 14],
+      [-59, 43],
+      [-45, 47],
+      [-14, 4],
+      [-18, 0],
+      [-38, -27],
+      [-31, -10],
+      [-14, -7],
+      [-18, -27],
+      [-14, -7],
+      [-17, -3],
+      [-28, 3],
+      [-17, 0],
+      [-18, -6],
+      [-10, -10],
+      [-14, -34],
+      [-11, -13],
+      [-10, -11],
+      [-28, -13],
+      [-14, -7],
+      [-21, -3],
+      [-24, 3],
+      [-21, 10],
+      [-21, 21],
+      [-17, 6],
+      [-14, -3],
+      [-11, -14],
+      [-7, -13],
+      [-7, -20],
+      [-7, -20],
+      [-7, -20],
+      [-10, -17],
+      [-18, -7],
+      [-13, 7],
+      [-25, 30],
+      [-14, 3],
+      [-10, -3],
+      [-28, -40],
+      [-31, -34],
+      [-25, -20],
+      [-14, -7],
+      [-28, -10],
+      [-28, -3],
+      [-38, 3],
+      [-28, 14],
+      [-45, 23],
+      [-21, 7],
+      [-21, 0],
+      [-24, -20],
+      [-14, -7],
+      [-18, -3],
+      [-10, -4],
+      [-14, -10],
+      [-11, 0],
+      [-20, 3],
+      [-25, 4],
+      [-63, 27],
+      [-55, 0],
+      [-46, 13],
+      [-21, 37],
+      [0, 67],
+      [-31, -20],
+      [-70, -74],
+      [-34, -13],
+      [-32, -7],
+      [-35, -10],
+      [-97, -67],
+      [-52, 17],
+      [-49, 37],
+      [-46, 20],
+      [-48, -14],
+      [-105, -64],
+      [-118, -33],
+      [-108, -91],
+      [-49, -34],
+      [-307, -87],
+      [-84, -50],
+      [-94, -91],
+      [-27, -24],
+      [-39, -13],
+      [-31, 0],
+      [-28, 10],
+      [-35, 3],
+      [-52, -16],
+      [-77, -74],
+      [-49, -27],
+      [-122, 0],
+      [14, 30],
+      [0, 23],
+      [-3, 17],
+      [-11, 24],
+      [-122, -51],
+      [14, 71],
+      [67, 114],
+      [38, 51],
+      [10, 16],
+      [4, 17],
+      [-11, 10],
+      [-17, 4],
+      [-230, 27],
+      [-28, 10],
+      [-17, 10],
+      [-25, 20],
+      [-17, 27],
+      [-7, 13],
+      [-7, 17],
+      [-11, 37],
+      [0, 40],
+      [0, 41],
+      [0, 10],
+      [-7, 20],
+      [-17, 17],
+      [-35, 23],
+      [-28, 10],
+      [-24, 0],
+      [-17, 0],
+      [-14, -6],
+      [-77, -37],
+      [-52, -14],
+      [-18, 0],
+      [-14, 7],
+      [-7, 3],
+      [-10, 14],
+      [-4, 13],
+      [-10, 37],
+      [-18, 51],
+      [-17, 26],
+      [-42, 51],
+      [-261, 188],
+      [-73, 34],
+      [-25, 3],
+      [-17, -3],
+      [-11, -10],
+      [-76, -81],
+      [-11, -10],
+      [-17, -7],
+      [-140, -7],
+      [-13, -6],
+      [-11, -10],
+      [-7, -17],
+      [-35, -198],
+      [-7, -21],
+      [-21, -37],
+      [-31, -6],
+      [-38, 10],
+      [-28, 17],
+      [-28, 20],
+      [-31, 23],
+      [-74, 14],
+      [-34, 16],
+      [-18, 27],
+      [-3, 27],
+      [-14, 27],
+      [-18, 24],
+      [-14, 10],
+      [-52, 13],
+      [-24, 27],
+      [-56, 7],
+      [-31, 0],
+      [-25, 7],
+      [-17, 6],
+      [-73, 54],
+      [-11, 13],
+      [-28, 64],
+      [-7, 10],
+      [-7, 7],
+      [-202, 138],
+      [-435, 407],
+      [-32, 23],
+      [-70, 44],
+      [-31, 10],
+      [-24, 7],
+      [-18, -4],
+      [-14, -3],
+      [-14, -10],
+      [-10, -10],
+      [-31, -61],
+      [-7, -13],
+      [-14, -10],
+      [-39, -27],
+      [-14, -10],
+      [-7, -17],
+      [-13, -30],
+      [-11, -14],
+      [-10, -10],
+      [-88, -44],
+      [-20, -6],
+      [-28, -4],
+      [-49, -3],
+      [-28, 7],
+      [-24, 6],
+      [-11, 7],
+      [-49, 41],
+      [-73, 84],
+      [-35, 26],
+      [-90, 48],
+      [-56, 10]
+    ],
+    [
+      [0, 14886],
+      [0, 309],
+      [0, 514],
+      [0, 511],
+      [0, 514],
+      [0, 511],
+      [369, 0],
+      [373, 0],
+      [370, 0],
+      [369, 0],
+      [369, 0],
+      [370, 0],
+      [373, 0],
+      [369, 0],
+      [370, 0],
+      [372, 0],
+      [370, 0],
+      [369, 0],
+      [370, 0],
+      [372, 0],
+      [370, 0],
+      [369, 0],
+      [98, 0],
+      [-35, 124],
+      [-52, 108],
+      [-67, 97],
+      [-160, 189],
+      [-63, 94],
+      [-27, 111],
+      [20, 134],
+      [60, 151],
+      [55, 252],
+      [53, 239],
+      [38, 97],
+      [133, 222],
+      [101, 165],
+      [24, 57],
+      [10, 57],
+      [-31, 155],
+      [-10, 208],
+      [-32, 84],
+      [-76, 91],
+      [-63, 104],
+      [-18, 155],
+      [21, 477],
+      [18, 437],
+      [62, 165],
+      [7, 33],
+      [-13, 84],
+      [-14, 256],
+      [-25, 84],
+      [-31, 64],
+      [-25, 63],
+      [0, 88],
+      [18, 67],
+      [52, 134],
+      [84, 145],
+      [14, 40],
+      [0, 54],
+      [-11, 84],
+      [4, 44],
+      [7, 37],
+      [31, 50],
+      [94, 81],
+      [28, 47],
+      [0, 40],
+      [-132, 330],
+      [-18, 87],
+      [11, 484],
+      [-56, 10],
+      [-18, 47],
+      [14, 131],
+      [-3, 188],
+      [10, 61],
+      [18, 67],
+      [-11, 50],
+      [-55, 98],
+      [-21, 60],
+      [-21, 165],
+      [104, -3],
+      [140, -30],
+      [125, -54],
+      [70, -71],
+      [0, -30],
+      [-18, -61],
+      [0, -33],
+      [7, -37],
+      [21, -67],
+      [4, -41],
+      [-4, -111],
+      [18, -43],
+      [62, 10],
+      [60, 23],
+      [48, -3],
+      [112, -37],
+      [59, -10],
+      [112, 0],
+      [56, -7],
+      [66, -33],
+      [87, -61],
+      [73, -77],
+      [35, -67],
+      [-11, -41],
+      [-24, -30],
+      [-24, -30],
+      [0, -51],
+      [14, -40],
+      [52, -50],
+      [21, -27],
+      [14, -61],
+      [3, -70],
+      [-3, -74],
+      [-11, -68],
+      [-24, -53],
+      [-94, -168],
+      [-39, -47],
+      [-125, -41],
+      [-38, -37],
+      [28, -60],
+      [45, -27],
+      [125, 0],
+      [56, -10],
+      [66, -47],
+      [101, -104],
+      [60, -31],
+      [69, -6],
+      [63, 13],
+      [125, 50],
+      [28, 4],
+      [35, -4],
+      [32, 7],
+      [20, 27],
+      [7, 37],
+      [14, 34],
+      [18, 27],
+      [28, 26],
+      [24, 14],
+      [66, 17],
+      [32, 16],
+      [31, 34],
+      [52, 84],
+      [35, 34],
+      [112, 53],
+      [226, 0],
+      [115, 27],
+      [223, 125],
+      [122, 43],
+      [115, -10],
+      [429, 44],
+      [177, 40],
+      [283, 158],
+      [94, 20],
+      [35, -36],
+      [7, -78],
+      [-4, -87],
+      [7, -67],
+      [-3, -34],
+      [-25, -24],
+      [-59, -26],
+      [-35, -31],
+      [14, -30],
+      [35, -30],
+      [14, -27],
+      [-24, -64],
+      [-35, -30],
+      [-25, -40],
+      [4, -81],
+      [21, -71],
+      [69, -131],
+      [21, -60],
+      [-3, -34],
+      [-42, -54],
+      [-10, -30],
+      [0, -34],
+      [6, -60],
+      [81, -276],
+      [28, -60],
+      [24, -27],
+      [21, -13],
+      [24, -4],
+      [39, 0],
+      [41, -10],
+      [18, -23],
+      [14, -27],
+      [28, -31],
+      [170, -90],
+      [53, -51],
+      [3, -20],
+      [4, -17],
+      [-4, -17],
+      [-24, -87],
+      [17, -47],
+      [45, -20],
+      [60, 0],
+      [28, 17],
+      [17, 23],
+      [21, 20],
+      [38, 7],
+      [32, 10],
+      [10, 34],
+      [11, 33],
+      [24, 21],
+      [136, -4],
+      [101, -74],
+      [94, -97],
+      [115, -74],
+      [52, -10],
+      [174, 0],
+      [32, 3],
+      [59, 30],
+      [21, 7],
+      [35, -7],
+      [14, -10],
+      [10, -16],
+      [164, -148],
+      [63, -27],
+      [42, -37],
+      [41, -104],
+      [53, -27],
+      [38, -7],
+      [516, 7],
+      [66, -27],
+      [59, -44],
+      [63, -34],
+      [104, 7],
+      [63, -30],
+      [35, -3],
+      [35, 16],
+      [56, 44],
+      [31, 14],
+      [112, 23],
+      [115, 3],
+      [69, -26],
+      [53, -44],
+      [45, -51],
+      [56, -47],
+      [104, -40],
+      [241, -17],
+      [115, -27],
+      [55, -37],
+      [53, -43],
+      [48, -27],
+      [63, 13],
+      [45, 51],
+      [35, 57],
+      [46, 44],
+      [76, 0],
+      [136, -17],
+      [129, 30],
+      [115, 77],
+      [105, 111],
+      [55, 135],
+      [14, 275],
+      [28, 135],
+      [46, 77],
+      [45, 47],
+      [31, 50],
+      [4, 91],
+      [-35, 145],
+      [-4, 64],
+      [42, 50],
+      [25, 3],
+      [66, -10],
+      [28, 0],
+      [115, 44],
+      [125, 10],
+      [87, 37],
+      [18, 3],
+      [52, -80],
+      [31, -155],
+      [14, -168],
+      [-7, -114],
+      [73, -296],
+      [555, -387],
+      [139, -268],
+      [14, -138],
+      [143, -467],
+      [49, -71],
+      [160, -148]
+    ],
+    [
+      [20759, 7186],
+      [-42, -20],
+      [-101, -108],
+      [-66, -91],
+      [-7, -23],
+      [-42, -71],
+      [-10, -37],
+      [7, -30],
+      [14, -24],
+      [14, -20],
+      [7, -17],
+      [-18, -117],
+      [-38, -141],
+      [-14, -135],
+      [49, -97],
+      [-70, -182],
+      [-10, -74],
+      [10, -57],
+      [49, -144],
+      [0, -78],
+      [-70, -131],
+      [-14, -27],
+      [-17, -121],
+      [-42, -53],
+      [-118, -98],
+      [-25, -60],
+      [-59, -61],
+      [-24, -27],
+      [-42, -6],
+      [-84, 0],
+      [-143, -31],
+      [-1080, -467],
+      [-202, -144],
+      [-293, -269],
+      [-272, -128],
+      [-460, -218],
+      [-153, -101],
+      [-119, -145],
+      [-404, -669],
+      [-49, -121],
+      [-62, -269],
+      [-81, -171],
+      [-156, -178],
+      [-307, -306],
+      [-788, -897],
+      [-31, -51],
+      [-3, -33],
+      [3, -88],
+      [7, -77],
+      [-101, -138],
+      [-112, -117],
+      [-87, -91],
+      [-80, -51],
+      [-45, -13],
+      [-143, -7],
+      [-31, -13],
+      [-108, -81],
+      [-70, 27],
+      [-282, -141],
+      [-74, -10],
+      [-45, -14],
+      [-38, -27],
+      [-87, -87],
+      [-35, -10],
+      [-42, 10],
+      [-171, 57],
+      [-49, 27],
+      [-41, 40],
+      [-46, 58],
+      [-38, 33],
+      [-49, 24],
+      [-80, 13],
+      [-125, 44],
+      [-227, 138],
+      [-139, 27],
+      [-108, -17],
+      [-25, 6],
+      [-17, 21],
+      [-25, 16],
+      [-27, 17],
+      [-136, 17],
+      [-28, 10],
+      [-18, 20],
+      [-17, 34],
+      [-21, 27],
+      [-24, 13],
+      [-28, -17],
+      [-105, -87],
+      [-28, -17],
+      [-69, -17],
+      [-49, -30],
+      [-52, -13],
+      [-18, -7],
+      [-3, -13],
+      [7, -44],
+      [-4, -14],
+      [-42, -13],
+      [-55, 0],
+      [-49, -13],
+      [-18, -41],
+      [-21, 24],
+      [-163, -94],
+      [-35, -4],
+      [-126, 4],
+      [-181, 94],
+      [-31, 40],
+      [-21, 54],
+      [3, 50],
+      [49, 17],
+      [-42, 61],
+      [-136, 60],
+      [-27, 54],
+      [-28, 37],
+      [-60, 40],
+      [-66, 37],
+      [-111, 30],
+      [-35, 37],
+      [-38, 27],
+      [-74, -10],
+      [-156, -74],
+      [-203, -44],
+      [-17, -6],
+      [-24, -30],
+      [-18, -7],
+      [-21, 3],
+      [-28, 17],
+      [-14, 3],
+      [-223, 0],
+      [-34, 7],
+      [-98, 40],
+      [-94, -6],
+      [-28, 6],
+      [-59, 31],
+      [-91, 77],
+      [-56, 30],
+      [-20, 24],
+      [-18, 40],
+      [-31, 40],
+      [-42, 27],
+      [-42, 10],
+      [-49, 4],
+      [-24, 10],
+      [-38, 57],
+      [-14, 10],
+      [-35, 20],
+      [-14, 14],
+      [-4, 20],
+      [4, 43],
+      [-11, 21],
+      [-41, 50],
+      [-21, 0],
+      [-28, -40],
+      [-7, 23],
+      [-14, 24],
+      [-21, 17],
+      [-28, 6],
+      [-7, 17],
+      [-24, 101],
+      [-11, 7],
+      [-52, 50],
+      [-10, 14],
+      [-35, 0],
+      [-21, 6],
+      [-14, 14],
+      [-21, 27],
+      [0, 23],
+      [21, 57],
+      [-11, 10],
+      [-31, -3],
+      [-56, -20],
+      [-28, 0],
+      [-48, 40],
+      [-32, 54],
+      [-3, 3]
+    ],
+    [
+      [8911, 1734],
+      [28, 232],
+      [17, 74],
+      [11, 14],
+      [17, 20],
+      [10, 17],
+      [7, 6],
+      [32, 30],
+      [14, 21],
+      [21, 37],
+      [7, 23],
+      [3, 24],
+      [-3, 20],
+      [-11, 37],
+      [-3, 27],
+      [0, 185],
+      [7, 37],
+      [7, 23],
+      [20, 27],
+      [49, 40],
+      [11, 10],
+      [48, 94],
+      [32, 41],
+      [56, 111],
+      [3, 23],
+      [0, 20],
+      [-14, 27],
+      [-7, 14],
+      [-10, 10],
+      [-11, 27],
+      [-3, 37],
+      [14, 87],
+      [7, 40],
+      [14, 27],
+      [24, 20],
+      [80, 47],
+      [18, 17],
+      [21, 27],
+      [34, 61],
+      [18, 43],
+      [7, 31],
+      [0, 20],
+      [-4, 17],
+      [-7, 16],
+      [-7, 21],
+      [-3, 26],
+      [7, 51],
+      [24, 20],
+      [28, 17],
+      [31, 7],
+      [154, 84],
+      [21, 23],
+      [28, 40],
+      [48, 95],
+      [18, 47],
+      [7, 33],
+      [-87, 326],
+      [-14, 30],
+      [-7, 17],
+      [-4, 20],
+      [4, 54],
+      [24, 165],
+      [4, 40],
+      [-4, 30],
+      [-10, 11],
+      [-25, 20],
+      [-28, 20],
+      [-17, 7],
+      [-35, 10],
+      [-314, 43],
+      [-17, 7],
+      [-17, 17],
+      [-39, 87],
+      [-7, 37],
+      [-10, 54],
+      [-7, 13],
+      [-7, 14],
+      [-14, 10],
+      [-105, 81],
+      [-80, 80],
+      [-10, 10],
+      [-4, 4],
+      [-3, 6],
+      [-7, 41],
+      [0, 17],
+      [3, 10],
+      [4, 3],
+      [10, 3],
+      [49, 11],
+      [14, 3],
+      [14, 7],
+      [24, 20],
+      [14, 13],
+      [300, 447],
+      [21, 24],
+      [56, 30],
+      [10, 10],
+      [49, 44],
+      [10, 10],
+      [18, 3],
+      [17, 4],
+      [14, 6],
+      [18, 7],
+      [38, 27],
+      [42, 50],
+      [7, 14],
+      [10, 10],
+      [14, 10],
+      [14, 10],
+      [14, 7],
+      [45, 13],
+      [42, 20],
+      [18, 24],
+      [20, 44],
+      [74, 188],
+      [10, 13],
+      [28, 54],
+      [35, 91],
+      [14, 23],
+      [21, 24],
+      [17, 27],
+      [18, 33],
+      [6, 14],
+      [11, 10],
+      [14, 13],
+      [14, 7],
+      [14, 7],
+      [10, 10],
+      [14, 6],
+      [11, 11],
+      [10, 10],
+      [11, 16],
+      [24, 31],
+      [17, 23],
+      [0, 17],
+      [-3, 13],
+      [-14, 11],
+      [-18, 6],
+      [-17, 7],
+      [-38, 3],
+      [-21, 4],
+      [-14, 6],
+      [-14, 11],
+      [-11, 10],
+      [-20, 27],
+      [-63, 53],
+      [-11, 10],
+      [-7, 14],
+      [-17, 30],
+      [-3, 17],
+      [-7, 47],
+      [0, 37],
+      [7, 23],
+      [10, 17],
+      [28, 20],
+      [14, 14],
+      [14, 23],
+      [-4, 17],
+      [-7, 10],
+      [-10, 20],
+      [-7, 24],
+      [-4, 47],
+      [7, 27],
+      [11, 17],
+      [14, 10],
+      [17, 20],
+      [21, 37],
+      [31, 91],
+      [46, 363],
+      [0, 43],
+      [-4, 17],
+      [-7, 17],
+      [-7, 13],
+      [-21, 27],
+      [-24, 20],
+      [-14, 11],
+      [-17, 6],
+      [-14, 0],
+      [-14, -3],
+      [-14, -10],
+      [-21, -27],
+      [-24, -44],
+      [-21, -23],
+      [-14, -10],
+      [-14, -7],
+      [-18, -3],
+      [-17, 0],
+      [-18, 0],
+      [-17, 3],
+      [-17, 7],
+      [-14, 10],
+      [-25, 23],
+      [-21, 24],
+      [-38, 70],
+      [-7, 17],
+      [-7, 24],
+      [-3, 37],
+      [3, 20],
+      [7, 17],
+      [42, 30],
+      [10, 13],
+      [14, 20],
+      [4, 24],
+      [3, 20],
+      [-3, 20],
+      [-4, 17],
+      [-7, 14],
+      [-10, 13],
+      [-11, 10],
+      [-14, 10],
+      [-27, 14],
+      [-67, 47],
+      [-10, 16],
+      [-11, 17],
+      [-7, 31],
+      [4, 20],
+      [10, 16],
+      [84, 74],
+      [14, 17],
+      [10, 20],
+      [14, 44],
+      [4, 24],
+      [-4, 20],
+      [-17, 27],
+      [-45, 53],
+      [-4, 7],
+      [-3, 10],
+      [-4, 20],
+      [4, 21],
+      [7, 13],
+      [10, 10],
+      [59, 27],
+      [14, 3],
+      [18, -6],
+      [10, -7],
+      [14, 0],
+      [11, 3],
+      [10, 14],
+      [42, 87],
+      [10, 27],
+      [11, 47],
+      [0, 37],
+      [-4, 47],
+      [0, 27],
+      [7, 20],
+      [7, 17],
+      [25, 20],
+      [24, 34],
+      [17, 30],
+      [4, 23],
+      [3, 21],
+      [-7, 16],
+      [-7, 14],
+      [-31, 60],
+      [-17, 47]
+    ],
+    [
+      [8911, 1734],
+      [-39, 27],
+      [-59, -30],
+      [-38, 60],
+      [-80, 41],
+      [-202, 43],
+      [-98, -3],
+      [-31, 7],
+      [-21, 17],
+      [-14, 16],
+      [-18, 7],
+      [-254, 44],
+      [-132, 0],
+      [-28, -10],
+      [-21, -24],
+      [-18, -23],
+      [-31, -21],
+      [-45, -43],
+      [-32, -17],
+      [-28, 0],
+      [-27, 3],
+      [-46, 21],
+      [-28, 20],
+      [-17, 23],
+      [-24, 17],
+      [-77, 17],
+      [-56, 30],
+      [-90, 17],
+      [-126, 50],
+      [-52, 10],
+      [-52, -6],
+      [-126, -41],
+      [-24, -10],
+      [-32, 20],
+      [-160, 7],
+      [-56, 7],
+      [-52, -4],
+      [-91, -20],
+      [-125, -27],
+      [-129, -30],
+      [-125, -27],
+      [-129, -30],
+      [-126, -30],
+      [-129, -27],
+      [-129, -30],
+      [-125, -27],
+      [-129, -30],
+      [-129, -27],
+      [-126, -31],
+      [-128, -27],
+      [-126, -30],
+      [-129, -27],
+      [-129, -30],
+      [-125, -30],
+      [-91, -20],
+      [-56, 0],
+      [-104, -24],
+      [-119, -27],
+      [-17, 47],
+      [-4, 44],
+      [21, 47],
+      [-66, 61],
+      [-59, 77],
+      [-59, 47],
+      [-46, 23],
+      [-41, 17],
+      [-98, 7],
+      [-49, -7],
+      [-52, -13],
+      [-52, -7],
+      [-53, 14],
+      [-35, 43],
+      [-3, 47],
+      [7, 54],
+      [-7, 54],
+      [-31, 37],
+      [-133, 57],
+      [-69, 64],
+      [-74, 91],
+      [-55, 104],
+      [-25, 90],
+      [-17, 37],
+      [-126, 148],
+      [-42, 27],
+      [-142, 44],
+      [-182, 84],
+      [-80, 60],
+      [-118, 118],
+      [-91, 54],
+      [-42, 37],
+      [-28, 50],
+      [-31, 158],
+      [-42, 91],
+      [-59, 91],
+      [-136, 158],
+      [-42, 33],
+      [-177, 81],
+      [-35, 0],
+      [-18, 13],
+      [-14, 31],
+      [0, 57],
+      [-7, 30],
+      [-38, 40],
+      [-94, 34],
+      [-42, 30],
+      [-24, 41],
+      [-35, 97],
+      [-216, 376],
+      [-21, 31],
+      [-28, 16],
+      [-49, 11],
+      [-17, 10],
+      [-14, 20],
+      [-21, 40],
+      [-45, 71],
+      [-21, 43],
+      [-32, 34],
+      [-76, 17],
+      [-14, 7],
+      [-21, 26],
+      [-14, 10],
+      [-10, -6],
+      [-11, -10],
+      [-28, -10],
+      [-45, -17],
+      [-25, -4],
+      [-41, 14],
+      [-255, 232],
+      [-21, 47],
+      [-7, 57],
+      [-14, 50],
+      [-31, 21],
+      [-56, 6],
+      [-14, 27],
+      [7, 37],
+      [4, 44],
+      [-18, 50],
+      [-48, 94],
+      [-14, 44],
+      [0, 57],
+      [17, 64],
+      [25, 57],
+      [27, 44],
+      [4, 44],
+      [-49, 26],
+      [-97, 24],
+      [-4, 20],
+      [-3, 74],
+      [-4, 34],
+      [-10, 16],
+      [-35, 34],
+      [-14, 20],
+      [-14, 51],
+      [-7, 43],
+      [-11, 44],
+      [-31, 47],
+      [24, -3],
+      [77, 3],
+      [-104, 185],
+      [-81, 108],
+      [-7, 73],
+      [0, 54],
+      [0, 209],
+      [0, 215],
+      [0, 10],
+      [0, 154],
+      [0, 347],
+      [0, 346],
+      [0, 349],
+      [0, 346],
+      [0, 152],
+      [0, 101],
+      [0, 73],
+      [0, 135],
+      [0, 514],
+      [0, 511],
+      [0, 514],
+      [0, 511],
+      [0, 514],
+      [0, 511],
+      [0, 514],
+      [0, 515],
+      [0, 510],
+      [0, 515],
+      [-3, 511],
+      [0, 205]
+    ],
+    [
+      [23300, 20112],
+      [0, 13]
+    ],
+    [
+      [30545, 30410],
+      [66, -10],
+      [387, 6],
+      [122, -33],
+      [108, -81],
+      [31, -47],
+      [59, -155],
+      [42, -73],
+      [38, -31],
+      [115, -13],
+      [255, -61],
+      [212, -20],
+      [39, -23],
+      [42, -51],
+      [10, -27],
+      [11, -50],
+      [17, -27],
+      [21, -7],
+      [52, 7],
+      [21, -7],
+      [139, -104],
+      [223, -94],
+      [46, -34],
+      [7, -198],
+      [14, -47],
+      [28, -27],
+      [17, 7],
+      [21, 17],
+      [35, 3],
+      [21, -13],
+      [41, -47],
+      [28, -14],
+      [0, -94],
+      [-52, -245],
+      [35, -91],
+      [42, -17],
+      [31, 17],
+      [35, 27],
+      [38, 10],
+      [35, -17],
+      [11, -37],
+      [7, -40],
+      [13, -30],
+      [67, -31],
+      [28, 64],
+      [10, 101],
+      [17, 87],
+      [67, -37],
+      [163, -10],
+      [60, -47],
+      [42, -84],
+      [13, -47],
+      [4, -50],
+      [-7, -37],
+      [-17, -27],
+      [-11, -34],
+      [11, -50],
+      [27, -47],
+      [74, -54],
+      [34, -37],
+      [42, -94],
+      [25, -40],
+      [38, -37],
+      [35, -20],
+      [111, -48],
+      [18, -26],
+      [49, -135],
+      [17, -94],
+      [-21, -71],
+      [-87, -158],
+      [-56, -157],
+      [-17, -88],
+      [0, -87],
+      [38, -64],
+      [244, -121],
+      [63, -61],
+      [49, -60],
+      [52, -51],
+      [77, -30],
+      [55, -80],
+      [60, -47],
+      [45, -58],
+      [3, -107],
+      [-17, -188],
+      [10, -81],
+      [80, -212],
+      [25, -40],
+      [84, -84],
+      [20, -27],
+      [60, -155],
+      [45, -60],
+      [80, -10],
+      [4, -91],
+      [21, -60],
+      [0, -34],
+      [3, -13],
+      [0, -14],
+      [-49, -81],
+      [-45, -50],
+      [-119, -94],
+      [-38, -20],
+      [-38, -27],
+      [-147, -185],
+      [-48, -138],
+      [-32, -57],
+      [-62, -44],
+      [-46, -10],
+      [-52, -60],
+      [-38, -20],
+      [-46, 3],
+      [-101, 23],
+      [-42, -10],
+      [-38, -16],
+      [-77, -17],
+      [-41, -17],
+      [-35, -37],
+      [-56, -94],
+      [-45, -30],
+      [-35, 0],
+      [-32, 10],
+      [-27, -10],
+      [-28, -61],
+      [0, -47],
+      [21, -20],
+      [38, 0],
+      [42, 7],
+      [42, -41],
+      [24, -107],
+      [7, -104],
+      [10, -101],
+      [28, -101],
+      [46, -94],
+      [52, -88],
+      [66, -73],
+      [98, -189],
+      [-28, -101],
+      [-39, -97],
+      [-209, -360],
+      [-7, -23],
+      [11, -37],
+      [-4, -24],
+      [-17, -13],
+      [-45, -24],
+      [-14, -16],
+      [-4, -51],
+      [7, -44],
+      [-3, -43],
+      [-25, -44],
+      [-76, 67],
+      [-28, -47],
+      [14, -289],
+      [-4, -43],
+      [-17, -61],
+      [-46, -108],
+      [11, -26],
+      [49, -21],
+      [52, 0],
+      [52, 7],
+      [49, -10],
+      [38, -50],
+      [18, -54],
+      [7, -118]
+    ]
+  ],
+  "transform": {
+    "scale": [0.00033560984221552557, 0.00029384954558709845],
+    "translate": [21.97987756300006, -18.069231871999932]
+  },
+  "objects": {
+    "zambia": {
+      "type": "GeometryCollection",
+      "geometries": [
+        { "arcs": [[0, 1, 2]], "type": "Polygon", "properties": { "name": "Luapula" } },
+        { "arcs": [[3, -3, 4]], "type": "Polygon", "properties": { "name": "Northern" } },
+        {
+          "arcs": [[5, 6, 7, 8, 9, 10, 11, 12]],
+          "type": "Polygon",
+          "properties": { "name": "Central" }
+        },
+        { "arcs": [[-11, 13, 14]], "type": "Polygon", "properties": { "name": "Copperbelt" } },
+        { "arcs": [[15, -6, 16, 17]], "type": "Polygon", "properties": { "name": "Eastern" } },
+        { "arcs": [[-16, 18, 19, -7]], "type": "Polygon", "properties": { "name": "Lusaka" } },
+        {
+          "arcs": [[-14, -10, 20, 21]],
+          "type": "Polygon",
+          "properties": { "name": "North-Western" }
+        },
+        { "arcs": [[-20, 22, 23, -8]], "type": "Polygon", "properties": { "name": "Southern" } },
+        { "arcs": [[-9, -24, 24, -21]], "type": "Polygon", "properties": { "name": "Western" } },
+        {
+          "arcs": [[-17, -13, 25, -1, -4, 26]],
+          "type": "Polygon",
+          "properties": { "name": "Muchinga" }
+        }
+      ]
+    }
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/plugin/index.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/plugin/index.ts
new file mode 100644
index 0000000..43ec1f8
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/plugin/index.ts
@@ -0,0 +1,37 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from '../images/thumbnail.png';
+
+const metadata = new ChartMetadata({
+  description: t('Choropleth Map'),
+  name: t('ChoroplethMap'),
+  thumbnail,
+});
+
+export default class ChoroplethMapChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../chart/ChoroplethMap'),
+      metadata,
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts
new file mode 100644
index 0000000..07a933c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts
@@ -0,0 +1,33 @@
+import { ChartProps } from '@superset-ui/core';
+
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function transformProps(chartProps: ChartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { map, encoding } = formData;
+  const { data } = queriesData[0];
+
+  return {
+    width,
+    height,
+    map,
+    encoding,
+    data,
+  };
+}
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/src/types.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/src/types.ts
new file mode 100644
index 0000000..64c5473
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/src/types.ts
@@ -0,0 +1,24 @@
+// eslint-disable-next-line import/no-unresolved
+import type { Topology } from 'topojson-specification';
+import type { FeatureCollection } from 'geojson';
+import type Projection from './chart/Projection';
+
+interface BaseMapMetadata {
+  key: string;
+  name: string;
+  keyField: string;
+  projection?: Projection;
+  rotate?: [number, number] | [number, number, number];
+}
+
+interface TopojsonMapMetadata extends BaseMapMetadata {
+  type: 'topojson';
+  load: () => Promise<Topology>;
+}
+
+interface GeojsonMapMetadata extends BaseMapMetadata {
+  type: 'geojson';
+  load: () => Promise<FeatureCollection>;
+}
+
+export type RawMapMetadata = TopojsonMapMetadata | GeojsonMapMetadata;
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/test/index.test.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/test/index.test.ts
new file mode 100644
index 0000000..5343b9c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/test/index.test.ts
@@ -0,0 +1,7 @@
+import { ChoroplethMapChartPlugin } from '../src';
+
+describe('@superset-ui/plugin-chart-choropleth-map', () => {
+  it('exists', () => {
+    expect(ChoroplethMapChartPlugin).toBeDefined();
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/test/tsconfig.json b/superset-frontend/plugins/plugin-chart-choropleth-map/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/tsconfig.json b/superset-frontend/plugins/plugin-chart-choropleth-map/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/plugin-chart-choropleth-map/types/external.d.ts b/superset-frontend/plugins/plugin-chart-choropleth-map/types/external.d.ts
new file mode 100644
index 0000000..e2937d4
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-choropleth-map/types/external.d.ts
@@ -0,0 +1 @@
+declare module '*.png';
diff --git a/superset-frontend/plugins/plugin-chart-echarts/README.md b/superset-frontend/plugins/plugin-chart-echarts/README.md
new file mode 100644
index 0000000..c873cf3
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/README.md
@@ -0,0 +1,40 @@
+## @superset-ui/plugin-chart-echarts
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-echarts.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-echarts)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-plugin-chart-echarts&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-plugin-chart-echarts)
+
+This plugin provides Echarts viz plugins for Superset:
+
+- Timeseries Chart (combined line, area bar with support for predictive analytics)
+- Pie Chart
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import {
+  EchartsTimeseriesChartPlugin,
+  EchartsPieChartPlugin,
+} from '@superset-ui/plugin-chart-echarts';
+
+new EchartsTimeseriesChartPlugin().configure({ key: 'echarts-ts' }).register();
+new EchartsPieChartPlugin().configure({ key: 'echarts-pie' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui/?selectedKind=chart-plugins-plugin-chart-echarts)
+for more details.
+
+```js
+<SuperChart
+  chartType="echarts-ts"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/plugin-chart-echarts/package.json b/superset-frontend/plugins/plugin-chart-echarts/package.json
new file mode 100644
index 0000000..803f4cc
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/package.json
@@ -0,0 +1,38 @@
+{
+  "name": "@superset-ui/plugin-chart-echarts",
+  "version": "0.17.6",
+  "description": "Superset Chart - Echarts",
+  "sideEffects": false,
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "@types/mathjs": "^6.0.7",
+    "echarts": "^5.0.2",
+    "mathjs": "^8.0.1"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/EchartsBoxPlot.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/EchartsBoxPlot.tsx
new file mode 100644
index 0000000..71c8aaf
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/EchartsBoxPlot.tsx
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { EchartsProps } from '../types';
+import Echart from '../components/Echart';
+
+export default function EchartsBoxPlot({ height, width, echartOptions }: EchartsProps) {
+  return <Echart height={height} width={width} echartOptions={echartOptions} />;
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts
new file mode 100644
index 0000000..afb9d14
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts
@@ -0,0 +1,60 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { buildQueryContext, getMetricLabel } from '@superset-ui/core';
+import { BoxPlotQueryFormData, BoxPlotQueryObjectWhiskerType } from './types';
+
+const PERCENTILE_REGEX = /(\d+)\/(\d+) percentiles/;
+
+export default function buildQuery(formData: BoxPlotQueryFormData) {
+  const { whiskerOptions, columns: distributionColumns = [] } = formData;
+  return buildQueryContext(formData, baseQueryObject => {
+    let whiskerType: BoxPlotQueryObjectWhiskerType;
+    let percentiles: [number, number] | undefined;
+    const { columns, metrics } = baseQueryObject;
+    const percentileMatch = PERCENTILE_REGEX.exec(whiskerOptions as string);
+
+    if (whiskerOptions === 'Tukey') {
+      whiskerType = 'tukey';
+    } else if (whiskerOptions === 'Min/max (no outliers)') {
+      whiskerType = 'min/max';
+    } else if (percentileMatch) {
+      whiskerType = 'percentile';
+      percentiles = [parseInt(percentileMatch[1], 10), parseInt(percentileMatch[2], 10)];
+    } else {
+      throw new Error(`Unsupported whisker type: ${whiskerOptions}`);
+    }
+    return [
+      {
+        ...baseQueryObject,
+        is_timeseries: distributionColumns.length === 0,
+        post_processing: [
+          {
+            operation: 'boxplot',
+            options: {
+              whisker_type: whiskerType,
+              percentiles,
+              groupby: columns.filter(x => !distributionColumns.includes(x)),
+              metrics: metrics.map(getMetricLabel),
+            },
+          },
+        ],
+      },
+    ];
+  });
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts
new file mode 100644
index 0000000..d7cc1bf
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts
@@ -0,0 +1,105 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { D3_FORMAT_OPTIONS, formatSelectOptions, sections } from '@superset-ui/chart-controls';
+
+export default {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metrics'],
+        ['adhoc_filters'],
+        ['groupby'],
+        ['columns'],
+        ['limit'],
+        [
+          {
+            name: 'whiskerOptions',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Whisker/outlier options'),
+              default: 'Tukey',
+              description: t('Determines how whiskers and outliers are calculated.'),
+              choices: formatSelectOptions([
+                'Tukey',
+                'Min/max (no outliers)',
+                '2/98 percentiles',
+                '9/91 percentiles',
+              ]),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme'],
+        [
+          {
+            name: 'x_ticks_layout',
+            config: {
+              type: 'SelectControl',
+              label: t('X Tick Layout'),
+              choices: formatSelectOptions(['auto', 'flat', '45°', '90°', 'staggered']),
+              default: 'auto',
+              clearable: false,
+              renderTrigger: true,
+              description: t('The way the ticks are laid out on the X-axis'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'number_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Number format'),
+              renderTrigger: true,
+              default: 'SMART_NUMBER',
+              choices: D3_FORMAT_OPTIONS,
+              description: `${t('D3 format syntax: https://github.com/d3/d3-format')} ${t(
+                'Only applies when "Label Type" is set to show values.',
+              )}`,
+            },
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    groupby: {
+      label: t('Series'),
+      description: t('Categories to group by on the x-axis.'),
+    },
+    columns: {
+      label: t('Distribute across'),
+      multi: true,
+      description: t(
+        'Columns to calculate distribution across. Defaults to temporal column if left empty.',
+      ),
+    },
+  },
+};
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/images/thumbnail.png b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/images/thumbnail.png
new file mode 100644
index 0000000..4fa6ebc
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts
new file mode 100644
index 0000000..cab9ba3
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts
@@ -0,0 +1,50 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import buildQuery from './buildQuery';
+import controlPanel from './controlPanel';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+
+export default class EchartsBoxPlotChartPlugin extends ChartPlugin {
+  /**
+   * The constructor is used to pass relevant metadata and callbacks that get
+   * registered in respective registries that are used throughout the library
+   * and application. A more thorough description of each property is given in
+   * the respective imported file.
+   *
+   * It is worth noting that `buildQuery` and is optional, and only needed for
+   * advanced visualizations that require either post processing operations
+   * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries.
+   */
+  constructor() {
+    super({
+      buildQuery,
+      controlPanel,
+      loadChart: () => import('./EchartsBoxPlot'),
+      metadata: new ChartMetadata({
+        credits: ['https://echarts.apache.org'],
+        description: 'Box Plot (Apache ECharts)',
+        name: t('Box Plot'),
+        thumbnail,
+      }),
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts
new file mode 100644
index 0000000..933552c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts
@@ -0,0 +1,176 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  CategoricalColorNamespace,
+  ChartProps,
+  DataRecord,
+  getMetricLabel,
+  getNumberFormatter,
+} from '@superset-ui/core';
+import { EChartsOption, BoxplotSeriesOption } from 'echarts';
+import { CallbackDataParams } from 'echarts/types/src/util/types';
+import { BoxPlotQueryFormData } from './types';
+import { EchartsProps } from '../types';
+import { extractGroupbyLabel } from '../utils/series';
+import { defaultGrid, defaultTooltip, defaultYAxis } from '../defaults';
+
+export default function transformProps(chartProps: ChartProps): EchartsProps {
+  const { width, height, formData, queriesData } = chartProps;
+  const data: DataRecord[] = queriesData[0].data || [];
+  const {
+    colorScheme,
+    groupby = [],
+    metrics: formdataMetrics = [],
+    numberFormat,
+    xTicksLayout,
+  } = formData as BoxPlotQueryFormData;
+  const colorFn = CategoricalColorNamespace.getScale(colorScheme as string);
+  const numberFormatter = getNumberFormatter(numberFormat);
+  const metricLabels = formdataMetrics.map(getMetricLabel);
+
+  const transformedData = data
+    .map((datum: any) => {
+      const groupbyLabel = extractGroupbyLabel({ datum, groupby });
+      return metricLabels.map(metric => {
+        const name = metricLabels.length === 1 ? groupbyLabel : `${groupbyLabel}, ${metric}`;
+        return {
+          name,
+          value: [
+            datum[`${metric}__min`],
+            datum[`${metric}__q1`],
+            datum[`${metric}__median`],
+            datum[`${metric}__q3`],
+            datum[`${metric}__max`],
+            datum[`${metric}__mean`],
+            datum[`${metric}__count`],
+            datum[`${metric}__outliers`],
+          ],
+          itemStyle: {
+            color: colorFn(groupbyLabel),
+            opacity: 0.6,
+            borderColor: colorFn(groupbyLabel),
+          },
+        };
+      });
+    })
+    .flatMap(row => row);
+
+  const outlierData = data
+    .map(datum =>
+      metricLabels.map(metric => {
+        const groupbyLabel = extractGroupbyLabel({ datum, groupby });
+        const name = metricLabels.length === 1 ? groupbyLabel : `${groupbyLabel}, ${metric}`;
+        // Outlier data is a nested array of numbers (uncommon, therefore no need to add to DataRecordValue)
+        const outlierDatum = (datum[`${metric}__outliers`] || []) as number[];
+        return {
+          name: 'outlier',
+          type: 'scatter',
+          data: outlierDatum.map(val => [name, val]),
+          tooltip: {
+            formatter: (param: { data: [string, number] }) => {
+              const [outlierName, stats] = param.data;
+              const headline = groupby ? `<p><strong>${outlierName}</strong></p>` : '';
+              return `${headline}${numberFormatter(stats)}`;
+            },
+          },
+          itemStyle: {
+            color: colorFn(groupbyLabel),
+          },
+        };
+      }),
+    )
+    .flat(2);
+
+  let axisLabel;
+  if (xTicksLayout === '45°') axisLabel = { rotate: -45 };
+  else if (xTicksLayout === '90°') axisLabel = { rotate: -90 };
+  else if (xTicksLayout === 'flat') axisLabel = { rotate: 0 };
+  else if (xTicksLayout === 'staggered') axisLabel = { rotate: -45 };
+  else axisLabel = { show: true };
+
+  const series: BoxplotSeriesOption[] = [
+    {
+      name: 'boxplot',
+      type: 'boxplot',
+      data: transformedData,
+      tooltip: {
+        formatter: (param: CallbackDataParams) => {
+          // @ts-ignore
+          const {
+            value,
+            name,
+          }: {
+            value: [number, number, number, number, number, number, number, number, number[]];
+            name: string;
+          } = param;
+          const headline = name ? `<p><strong>${name}</strong></p>` : '';
+          const stats = [
+            `Max: ${numberFormatter(value[5])}`,
+            `3rd Quartile: ${numberFormatter(value[4])}`,
+            `Mean: ${numberFormatter(value[6])}`,
+            `Median: ${numberFormatter(value[3])}`,
+            `1st Quartile: ${numberFormatter(value[2])}`,
+            `Min: ${numberFormatter(value[1])}`,
+            `# Observations: ${numberFormatter(value[7])}`,
+          ];
+          if (value[8].length > 0) {
+            stats.push(`# Outliers: ${numberFormatter(value[8].length)}`);
+          }
+          return headline + stats.join('<br/>');
+        },
+      },
+    },
+    // @ts-ignore
+    ...outlierData,
+  ];
+
+  const echartOptions: EChartsOption = {
+    grid: {
+      ...defaultGrid,
+      top: 30,
+      bottom: 30,
+      left: 20,
+      right: 20,
+    },
+    xAxis: {
+      type: 'category',
+      data: transformedData.map(row => row.name),
+      axisLabel,
+    },
+    yAxis: {
+      ...defaultYAxis,
+      type: 'value',
+      axisLabel: { formatter: numberFormatter },
+    },
+    tooltip: {
+      ...defaultTooltip,
+      trigger: 'item',
+      axisPointer: {
+        type: 'shadow',
+      },
+    },
+    series,
+  };
+
+  return {
+    width,
+    height,
+    echartOptions,
+  };
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/types.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/types.ts
new file mode 100644
index 0000000..39d7a8b
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/types.ts
@@ -0,0 +1,36 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { QueryFormData } from '@superset-ui/core';
+import { PostProcessingBoxplot } from '@superset-ui/core/lib/query/types/PostProcessing';
+
+export type BoxPlotQueryFormData = QueryFormData & {
+  numberFormat?: string;
+  whiskerOptions?: BoxPlotFormDataWhiskerOptions;
+  xTickLayout?: BoxPlotFormXTickLayout;
+};
+
+export type BoxPlotFormDataWhiskerOptions =
+  | 'Tukey'
+  | 'Min/max (no outliers)'
+  | '2/98 percentiles'
+  | '9/91 percentiles';
+
+export type BoxPlotFormXTickLayout = '45°' | '90°' | 'auto' | 'flat' | 'staggered';
+
+export type BoxPlotQueryObjectWhiskerType = PostProcessingBoxplot['options']['whisker_type'];
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/EchartsPie.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/EchartsPie.tsx
new file mode 100644
index 0000000..41900c4
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/EchartsPie.tsx
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { EchartsProps } from '../types';
+import Echart from '../components/Echart';
+
+export default function EchartsPie({ height, width, echartOptions }: EchartsProps) {
+  return <Echart height={height} width={width} echartOptions={echartOptions} />;
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts
new file mode 100644
index 0000000..d5e162f
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts
@@ -0,0 +1,29 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { buildQueryContext, QueryFormData } from '@superset-ui/core';
+
+export default function buildQuery(formData: QueryFormData) {
+  const { metric } = formData;
+  return buildQueryContext(formData, baseQueryObject => [
+    {
+      ...baseQueryObject,
+      orderby: [[metric, false]],
+    },
+  ]);
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx
new file mode 100644
index 0000000..2e8f786
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx
@@ -0,0 +1,192 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { t, validateNonEmpty } from '@superset-ui/core';
+import { ControlPanelConfig, D3_FORMAT_OPTIONS, sections } from '@superset-ui/chart-controls';
+import { DEFAULT_FORM_DATA } from './types';
+import {
+  legendMarginControl,
+  legendOrientationControl,
+  legendTypeControl,
+  showLegendControl,
+} from '../controls';
+
+const {
+  donut,
+  innerRadius,
+  labelsOutside,
+  labelType,
+  labelLine,
+  outerRadius,
+  numberFormat,
+  showLabels,
+} = DEFAULT_FORM_DATA;
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['groupby'], ['metric'], ['adhoc_filters'], ['row_limit']],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme'],
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Legend')}</h1>],
+        [showLegendControl],
+        [legendTypeControl],
+        [legendOrientationControl],
+        [legendMarginControl],
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Labels')}</h1>],
+        [
+          {
+            name: 'label_type',
+            config: {
+              type: 'SelectControl',
+              label: t('Label Type'),
+              default: labelType,
+              renderTrigger: true,
+              choices: [
+                ['key', 'Category Name'],
+                ['value', 'Value'],
+                ['percent', 'Percentage'],
+                ['key_value', 'Category and Value'],
+                ['key_percent', 'Category and Percentage'],
+                ['key_value_percent', 'Category, Value and Percentage'],
+              ],
+              description: t('What should be shown on the label?'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'number_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Number format'),
+              renderTrigger: true,
+              default: numberFormat,
+              choices: D3_FORMAT_OPTIONS,
+              description: `${t('D3 format syntax: https://github.com/d3/d3-format')} ${t(
+                'Only applies when "Label Type" is set to show values.',
+              )}`,
+            },
+          },
+        ],
+        [
+          {
+            name: 'show_labels',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Labels'),
+              renderTrigger: true,
+              default: showLabels,
+              description: t('Whether to display the labels.'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'labels_outside',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Put labels outside'),
+              default: labelsOutside,
+              renderTrigger: true,
+              description: t('Put the labels outside of the pie?'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'label_line',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Label Line'),
+              default: labelLine,
+              renderTrigger: true,
+              description: t('Draw line from Pie to label when labels outside?'),
+            },
+          },
+        ],
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Pie shape')}</h1>],
+        [
+          {
+            name: 'outerRadius',
+            config: {
+              type: 'SliderControl',
+              label: t('Outer Radius'),
+              renderTrigger: true,
+              min: 10,
+              max: 100,
+              step: 1,
+              default: outerRadius,
+              description: t('Outer edge of Pie chart'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'donut',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Donut'),
+              default: donut,
+              renderTrigger: true,
+              description: t('Do you want a donut or a pie?'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'innerRadius',
+            config: {
+              type: 'SliderControl',
+              label: t('Inner Radius'),
+              renderTrigger: true,
+              min: 0,
+              max: 100,
+              step: 1,
+              default: innerRadius,
+              description: t('Inner radius of donut hole'),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    series: {
+      validators: [validateNonEmpty],
+      clearable: false,
+    },
+    row_limit: {
+      default: 100,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/images/thumbnail.png b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/images/thumbnail.png
new file mode 100644
index 0000000..ec5c55b
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts
new file mode 100644
index 0000000..24e84dd
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts
@@ -0,0 +1,50 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import buildQuery from './buildQuery';
+import controlPanel from './controlPanel';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+
+export default class EchartsPieChartPlugin extends ChartPlugin {
+  /**
+   * The constructor is used to pass relevant metadata and callbacks that get
+   * registered in respective registries that are used throughout the library
+   * and application. A more thorough description of each property is given in
+   * the respective imported file.
+   *
+   * It is worth noting that `buildQuery` and is optional, and only needed for
+   * advanced visualizations that require either post processing operations
+   * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries.
+   */
+  constructor() {
+    super({
+      buildQuery,
+      controlPanel,
+      loadChart: () => import('./EchartsPie'),
+      metadata: new ChartMetadata({
+        credits: ['https://echarts.apache.org'],
+        description: 'Pie Chart (Apache ECharts)',
+        name: t('Pie Chart'),
+        thumbnail,
+      }),
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts
new file mode 100644
index 0000000..29e2b8f
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts
@@ -0,0 +1,175 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  CategoricalColorNamespace,
+  ChartProps,
+  DataRecord,
+  getMetricLabel,
+  getNumberFormatter,
+  NumberFormats,
+  NumberFormatter,
+} from '@superset-ui/core';
+import { CallbackDataParams } from 'echarts/types/src/util/types';
+import { EChartsOption, PieSeriesOption } from 'echarts';
+import {
+  DEFAULT_FORM_DATA as DEFAULT_PIE_FORM_DATA,
+  EchartsPieFormData,
+  EchartsPieLabelType,
+} from './types';
+import { DEFAULT_LEGEND_FORM_DATA, EchartsProps } from '../types';
+import { extractGroupbyLabel, getChartPadding, getLegendProps } from '../utils/series';
+import { defaultGrid, defaultTooltip } from '../defaults';
+
+const percentFormatter = getNumberFormatter(NumberFormats.PERCENT_2_POINT);
+
+export function formatPieLabel({
+  params,
+  labelType,
+  numberFormatter,
+}: {
+  params: CallbackDataParams;
+  labelType: EchartsPieLabelType;
+  numberFormatter: NumberFormatter;
+}): string {
+  const { name = '', value, percent } = params;
+  const formattedValue = numberFormatter(value as number);
+  const formattedPercent = percentFormatter((percent as number) / 100);
+  switch (labelType) {
+    case EchartsPieLabelType.Key:
+      return name;
+    case EchartsPieLabelType.Value:
+      return formattedValue;
+    case EchartsPieLabelType.Percent:
+      return formattedPercent;
+    case EchartsPieLabelType.KeyValue:
+      return `${name}: ${formattedValue}`;
+    case EchartsPieLabelType.KeyValuePercent:
+      return `${name}: ${formattedValue} (${formattedPercent})`;
+    case EchartsPieLabelType.KeyPercent:
+      return `${name}: ${formattedPercent}`;
+    default:
+      return name;
+  }
+}
+
+export default function transformProps(chartProps: ChartProps): EchartsProps {
+  const { width, height, formData, queriesData } = chartProps;
+  const data: DataRecord[] = queriesData[0].data || [];
+
+  const {
+    colorScheme,
+    donut,
+    groupby,
+    innerRadius,
+    labelsOutside,
+    labelLine,
+    labelType,
+    legendMargin,
+    legendOrientation,
+    legendType,
+    metric = '',
+    numberFormat,
+    outerRadius,
+    showLabels,
+    showLegend,
+  }: EchartsPieFormData = { ...DEFAULT_LEGEND_FORM_DATA, ...DEFAULT_PIE_FORM_DATA, ...formData };
+  const metricLabel = getMetricLabel(metric);
+
+  const keys = data.map(datum => extractGroupbyLabel({ datum, groupby }));
+  const colorFn = CategoricalColorNamespace.getScale(colorScheme as string);
+  const numberFormatter = getNumberFormatter(numberFormat);
+
+  const transformedData: PieSeriesOption[] = data.map(datum => {
+    const name = extractGroupbyLabel({ datum, groupby });
+    return {
+      value: datum[metricLabel],
+      name,
+      itemStyle: {
+        color: colorFn(name),
+      },
+    };
+  });
+
+  const formatter = (params: CallbackDataParams) =>
+    formatPieLabel({ params, numberFormatter, labelType });
+
+  const defaultLabel = {
+    formatter,
+    show: showLabels,
+    color: '#000000',
+  };
+
+  const series: PieSeriesOption[] = [
+    {
+      type: 'pie',
+      ...getChartPadding(showLegend, legendOrientation, legendMargin),
+      animation: false,
+      radius: [`${donut ? innerRadius : 0}%`, `${outerRadius}%`],
+      center: ['50%', '50%'],
+      avoidLabelOverlap: true,
+      labelLine: labelsOutside && labelLine ? { show: true } : { show: false },
+      label: labelsOutside
+        ? {
+            ...defaultLabel,
+            position: 'outer',
+            alignTo: 'none',
+            bleedMargin: 5,
+          }
+        : {
+            ...defaultLabel,
+            position: 'inner',
+          },
+      emphasis: {
+        label: {
+          show: true,
+          fontWeight: 'bold',
+          backgroundColor: 'white',
+        },
+      },
+      data: transformedData,
+    },
+  ];
+
+  const echartOptions: EChartsOption = {
+    grid: {
+      ...defaultGrid,
+    },
+    tooltip: {
+      ...defaultTooltip,
+      trigger: 'item',
+      formatter: (params: any) =>
+        formatPieLabel({
+          params,
+          numberFormatter,
+          labelType: EchartsPieLabelType.KeyValuePercent,
+        }),
+    },
+    legend: {
+      ...getLegendProps(legendType, legendOrientation, showLegend),
+      data: keys,
+    },
+    series,
+  };
+
+  return {
+    width,
+    height,
+    echartOptions,
+  };
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/types.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/types.ts
new file mode 100644
index 0000000..3a9da58
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/types.ts
@@ -0,0 +1,62 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  DEFAULT_LEGEND_FORM_DATA,
+  EchartsLegendFormData,
+  LegendOrientation,
+  LegendType,
+} from '../types';
+
+export type EchartsPieFormData = EchartsLegendFormData & {
+  colorScheme?: string;
+  donut: boolean;
+  groupby: string[];
+  innerRadius: number;
+  labelLine: boolean;
+  labelType: EchartsPieLabelType;
+  labelsOutside: boolean;
+  metric?: string;
+  outerRadius: number;
+  showLabels: boolean;
+  numberFormat: string;
+};
+
+export enum EchartsPieLabelType {
+  Key = 'key',
+  Value = 'value',
+  Percent = 'percent',
+  KeyValue = 'key_value',
+  KeyPercent = 'key_percent',
+  KeyValuePercent = 'key_value_percent',
+}
+
+export const DEFAULT_FORM_DATA: EchartsPieFormData = {
+  ...DEFAULT_LEGEND_FORM_DATA,
+  donut: false,
+  groupby: [],
+  innerRadius: 30,
+  labelLine: false,
+  labelType: EchartsPieLabelType.Key,
+  legendOrientation: LegendOrientation.Top,
+  legendType: LegendType.Scroll,
+  numberFormat: 'SMART_NUMBER',
+  outerRadius: 70,
+  showLabels: true,
+  labelsOutside: true,
+};
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/EchartsTimeseries.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/EchartsTimeseries.tsx
new file mode 100644
index 0000000..9d37e4c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/EchartsTimeseries.tsx
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { EchartsProps } from '../types';
+import Echart from '../components/Echart';
+
+export default function EchartsTimeseries({ height, width, echartOptions }: EchartsProps) {
+  return <Echart height={height} width={width} echartOptions={echartOptions} />;
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts
new file mode 100644
index 0000000..c9ad3bb
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts
@@ -0,0 +1,66 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { buildQueryContext, getMetricLabel, QueryFormData } from '@superset-ui/core';
+
+export default function buildQuery(formData: QueryFormData) {
+  return buildQueryContext(formData, baseQueryObject => {
+    const metricLabels = baseQueryObject.metrics.map(getMetricLabel);
+    return [
+      {
+        ...baseQueryObject,
+        groupby: formData.groupby || [],
+        is_timeseries: true,
+        post_processing: [
+          {
+            operation: 'pivot',
+            options: {
+              index: ['__timestamp'],
+              columns: formData.groupby || [],
+              // Create 'dummy' sum aggregates to assign cell values in pivot table
+              aggregates: Object.fromEntries(
+                metricLabels.map(metric => [metric, { operator: 'sum' }]),
+              ),
+            },
+          },
+          formData.contributionMode
+            ? {
+                operation: 'contribution',
+                options: {
+                  orientation: formData.contributionMode,
+                },
+              }
+            : undefined,
+          formData.forecastEnabled
+            ? {
+                operation: 'prophet',
+                options: {
+                  time_grain: formData.time_grain_sqla,
+                  periods: parseInt(formData.forecastPeriods, 10),
+                  confidence_interval: parseFloat(formData.forecastInterval),
+                  yearly_seasonality: formData.forecastSeasonalityYearly,
+                  weekly_seasonality: formData.forecastSeasonalityWeekly,
+                  daily_seasonality: formData.forecastSeasonalityDaily,
+                },
+              }
+            : undefined,
+        ],
+      },
+    ];
+  });
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/controlPanel.tsx
new file mode 100644
index 0000000..5986ef4
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/controlPanel.tsx
@@ -0,0 +1,440 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { legacyValidateInteger, legacyValidateNumber, t } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+import {
+  DEFAULT_FORM_DATA,
+  EchartsTimeseriesContributionType,
+  EchartsTimeseriesSeriesType,
+} from './types';
+import {
+  legendMarginControl,
+  legendOrientationControl,
+  legendTypeControl,
+  noopControl,
+  showLegendControl,
+} from '../controls';
+
+const {
+  area,
+  annotationLayers,
+  contributionMode,
+  forecastEnabled,
+  forecastInterval,
+  forecastPeriods,
+  forecastSeasonalityDaily,
+  forecastSeasonalityWeekly,
+  forecastSeasonalityYearly,
+  logAxis,
+  markerEnabled,
+  markerSize,
+  minorSplitLine,
+  opacity,
+  rowLimit,
+  seriesType,
+  stack,
+  truncateYAxis,
+  yAxisBounds,
+  zoomable,
+  xAxisLabelRotation,
+} = DEFAULT_FORM_DATA;
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['metrics'],
+        ['groupby'],
+        [
+          {
+            name: 'contributionMode',
+            config: {
+              type: 'SelectControl',
+              label: t('Contribution Mode'),
+              default: contributionMode,
+              choices: [
+                [null, 'None'],
+                [EchartsTimeseriesContributionType.Row, 'Total'],
+                [EchartsTimeseriesContributionType.Column, 'Series'],
+              ],
+              description: t('Calculate contribution per series or total'),
+            },
+          },
+        ],
+        ['adhoc_filters'],
+        ['limit', 'timeseries_limit_metric'],
+        [
+          {
+            name: 'order_desc',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Sort Descending'),
+              default: true,
+              description: t('Whether to sort descending or ascending'),
+            },
+          },
+        ],
+        ['row_limit', null],
+      ],
+    },
+    {
+      label: t('Annotations and Layers'),
+      expanded: false,
+      controlSetRows: [
+        [
+          {
+            name: 'annotation_layers',
+            config: {
+              type: 'AnnotationLayerControl',
+              label: '',
+              default: annotationLayers,
+              description: 'Annotation Layers',
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Predictive Analytics'),
+      expanded: false,
+      controlSetRows: [
+        [
+          {
+            name: 'forecastEnabled',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Enable forecast'),
+              renderTrigger: false,
+              default: forecastEnabled,
+              description: t('Enable forecasting'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'forecastPeriods',
+            config: {
+              type: 'TextControl',
+              label: t('Forecast periods'),
+              validators: [legacyValidateInteger],
+              default: forecastPeriods,
+              description: t('How many periods into the future do we want to predict'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'forecastInterval',
+            config: {
+              type: 'TextControl',
+              label: t('Confidence interval'),
+              validators: [legacyValidateNumber],
+              default: forecastInterval,
+              description: t('Width of the confidence interval. Should be between 0 and 1'),
+            },
+          },
+          {
+            name: 'forecastSeasonalityYearly',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: 'Yearly seasonality',
+              choices: [
+                [null, 'default'],
+                [true, 'Yes'],
+                [false, 'No'],
+              ],
+              default: forecastSeasonalityYearly,
+              description: t(
+                'Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'forecastSeasonalityWeekly',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: 'Weekly seasonality',
+              choices: [
+                [null, 'default'],
+                [true, 'Yes'],
+                [false, 'No'],
+              ],
+              default: forecastSeasonalityWeekly,
+              description: t(
+                'Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.',
+              ),
+            },
+          },
+          {
+            name: 'forecastSeasonalityDaily',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: 'Daily seasonality',
+              choices: [
+                [null, 'default'],
+                [true, 'Yes'],
+                [false, 'No'],
+              ],
+              default: forecastSeasonalityDaily,
+              description: t(
+                'Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.',
+              ),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme', 'label_colors'],
+        [
+          {
+            name: 'seriesType',
+            config: {
+              type: 'SelectControl',
+              label: t('Series Style'),
+              renderTrigger: true,
+              default: seriesType,
+              choices: [
+                [EchartsTimeseriesSeriesType.Line, 'Line'],
+                [EchartsTimeseriesSeriesType.Scatter, 'Scatter'],
+                [EchartsTimeseriesSeriesType.Smooth, 'Smooth Line'],
+                [EchartsTimeseriesSeriesType.Bar, 'Bar'],
+                [EchartsTimeseriesSeriesType.Start, 'Step - start'],
+                [EchartsTimeseriesSeriesType.Middle, 'Step - middle'],
+                [EchartsTimeseriesSeriesType.End, 'Step - end'],
+              ],
+              description: t('Series chart type (line, bar etc)'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'stack',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Stack Lines'),
+              renderTrigger: true,
+              default: stack,
+              description: t('Stack series on top of each other'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'area',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Area Chart'),
+              renderTrigger: true,
+              default: area,
+              description: t('Draw area under curves. Only applicable for line types.'),
+            },
+          },
+          {
+            name: 'opacity',
+            config: {
+              type: 'SliderControl',
+              label: t('Opacity'),
+              renderTrigger: true,
+              min: 0,
+              max: 1,
+              step: 0.1,
+              default: opacity,
+              description: t('Opacity of Area Chart. Also applies to confidence band.'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'markerEnabled',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Marker'),
+              renderTrigger: true,
+              default: markerEnabled,
+              description: t('Draw a marker on data points. Only applicable for line types.'),
+            },
+          },
+          {
+            name: 'markerSize',
+            config: {
+              type: 'SliderControl',
+              label: t('Marker Size'),
+              renderTrigger: true,
+              min: 0,
+              max: 100,
+              default: markerSize,
+              description: t('Size of marker. Also applies to forecast observations.'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'zoomable',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Data Zoom'),
+              default: zoomable,
+              renderTrigger: true,
+              description: t('Enable data zooming controls'),
+            },
+          },
+        ],
+        [<h1 className="section-header">{t('Legend')}</h1>],
+        [showLegendControl],
+        [legendTypeControl, legendOrientationControl],
+        [legendMarginControl, noopControl],
+        [<h1 className="section-header">{t('X Axis')}</h1>],
+        ['x_axis_time_format'],
+        [
+          {
+            name: 'xAxisShowMinLabel',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Min Label'),
+              default: true,
+              renderTrigger: true,
+              description: t('Show Min Label'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'xAxisShowMaxLabel',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Max Label'),
+              default: true,
+              renderTrigger: true,
+              description: t('Show Max Label'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'xAxisLabelRotation',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              clearable: false,
+              label: t('Rotate x axis label'),
+              choices: [
+                [0, '0°'],
+                [45, '45°'],
+              ],
+              default: xAxisLabelRotation,
+              renderTrigger: true,
+              description: t('Input field supports custom rotation. e.g. 30 for 30°'),
+            },
+          },
+        ],
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Tooltip')}</h1>],
+        [
+          {
+            name: 'rich_tooltip',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Rich tooltip'),
+              renderTrigger: true,
+              default: true,
+              description: t('Shows a list of all series available at that point in time'),
+            },
+          },
+        ],
+        // eslint-disable-next-line react/jsx-key
+        [<h1 className="section-header">{t('Y Axis')}</h1>],
+        ['y_axis_format'],
+        [
+          {
+            name: 'logAxis',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Logarithmic y-axis'),
+              renderTrigger: true,
+              default: logAxis,
+              description: t('Logarithmic y-axis'),
+            },
+          },
+          {
+            name: 'minorSplitLine',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Minor Split Line'),
+              renderTrigger: true,
+              default: minorSplitLine,
+              description: t('Draw split lines for minor y-axis ticks'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'truncateYAxis',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Truncate Y Axis'),
+              default: truncateYAxis,
+              renderTrigger: true,
+              description: t(
+                'Truncate Y Axis. Can be overridden by specifying a min or max bound.',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'y_axis_bounds',
+            config: {
+              type: 'BoundsControl',
+              label: t('Y Axis Bounds'),
+              renderTrigger: true,
+              default: yAxisBounds,
+              description: t(
+                'Bounds for the Y-axis. When left empty, the bounds are ' +
+                  'dynamically defined based on the min/max of the data. Note that ' +
+                  "this feature will only expand the axis range. It won't " +
+                  "narrow the data's extent.",
+              ),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+  controlOverrides: {
+    row_limit: {
+      default: rowLimit,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/images/thumbnail.png b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/images/thumbnail.png
new file mode 100644
index 0000000..32b060e
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts
new file mode 100644
index 0000000..03167d0
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts
@@ -0,0 +1,56 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin, AnnotationType } from '@superset-ui/core';
+import buildQuery from './buildQuery';
+import controlPanel from './controlPanel';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+
+export default class EchartsTimeseriesChartPlugin extends ChartPlugin {
+  /**
+   * The constructor is used to pass relevant metadata and callbacks that get
+   * registered in respective registries that are used throughout the library
+   * and application. A more thorough description of each property is given in
+   * the respective imported file.
+   *
+   * It is worth noting that `buildQuery` and is optional, and only needed for
+   * advanced visualizations that require either post processing operations
+   * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries.
+   */
+  constructor() {
+    super({
+      buildQuery,
+      controlPanel,
+      loadChart: () => import('./EchartsTimeseries'),
+      metadata: new ChartMetadata({
+        credits: ['https://echarts.apache.org'],
+        description: 'Time-series (Apache ECharts)',
+        supportedAnnotationTypes: [
+          AnnotationType.Event,
+          AnnotationType.Formula,
+          AnnotationType.Interval,
+          AnnotationType.Timeseries,
+        ],
+        name: t('Time-series Chart'),
+        thumbnail,
+      }),
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts
new file mode 100644
index 0000000..3ba12d6
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts
@@ -0,0 +1,238 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable camelcase */
+import {
+  AnnotationLayer,
+  CategoricalColorNamespace,
+  ChartProps,
+  getNumberFormatter,
+  isEventAnnotationLayer,
+  isFormulaAnnotationLayer,
+  isIntervalAnnotationLayer,
+  isTimeseriesAnnotationLayer,
+  getTimeFormatter,
+  getTimeFormatterForGranularity,
+  smartDateFormatter,
+  TimeseriesChartDataResponseResult,
+  TimeFormatter,
+} from '@superset-ui/core';
+import { EChartsOption, SeriesOption } from 'echarts';
+import { DEFAULT_FORM_DATA, EchartsTimeseriesFormData } from './types';
+import { EchartsProps, ForecastSeriesEnum, ProphetValue } from '../types';
+import { parseYAxisBound } from '../utils/controls';
+import { extractTimeseriesSeries, getChartPadding, getLegendProps } from '../utils/series';
+import { extractAnnotationLabels } from '../utils/annotation';
+import {
+  extractForecastSeriesContext,
+  extractProphetValuesFromTooltipParams,
+  formatProphetTooltipSeries,
+  rebaseTimeseriesDatum,
+} from '../utils/prophet';
+import { defaultGrid, defaultTooltip, defaultYAxis } from '../defaults';
+import {
+  transformEventAnnotation,
+  transformFormulaAnnotation,
+  transformIntervalAnnotation,
+  transformSeries,
+  transformTimeseriesAnnotation,
+} from './transformers';
+
+export default function transformProps(chartProps: ChartProps): EchartsProps {
+  const { width, height, formData, queriesData } = chartProps;
+  const {
+    annotation_data: annotationData_,
+    data = [],
+  } = queriesData[0] as TimeseriesChartDataResponseResult;
+  const annotationData = annotationData_ || {};
+
+  const {
+    annotationLayers,
+    colorScheme,
+    contributionMode,
+    legendMargin,
+    legendOrientation,
+    legendType,
+    logAxis,
+    minorSplitLine,
+    showLegend,
+    stack,
+    truncateYAxis,
+    yAxisFormat,
+    xAxisShowMinLabel,
+    xAxisShowMaxLabel,
+    xAxisTimeFormat,
+    yAxisBounds,
+    timeGrainSqla,
+    zoomable,
+    richTooltip,
+    xAxisLabelRotation,
+  }: EchartsTimeseriesFormData = { ...DEFAULT_FORM_DATA, ...formData };
+
+  const colorScale = CategoricalColorNamespace.getScale(colorScheme as string);
+  const rebasedData = rebaseTimeseriesDatum(data);
+  const rawSeries = extractTimeseriesSeries(rebasedData);
+  const series: SeriesOption[] = [];
+  const formatter = getNumberFormatter(contributionMode ? ',.0%' : yAxisFormat);
+
+  rawSeries.forEach(entry => {
+    const transformedSeries = transformSeries(
+      entry,
+      formData as EchartsTimeseriesFormData,
+      colorScale,
+    );
+    if (transformedSeries) series.push(transformedSeries);
+  });
+
+  annotationLayers
+    .filter((layer: AnnotationLayer) => layer.show)
+    .forEach((layer: AnnotationLayer) => {
+      if (isFormulaAnnotationLayer(layer))
+        series.push(transformFormulaAnnotation(layer, data, colorScale));
+      else if (isIntervalAnnotationLayer(layer)) {
+        series.push(...transformIntervalAnnotation(layer, data, annotationData, colorScale));
+      } else if (isEventAnnotationLayer(layer)) {
+        series.push(...transformEventAnnotation(layer, data, annotationData, colorScale));
+      } else if (isTimeseriesAnnotationLayer(layer)) {
+        series.push(
+          ...transformTimeseriesAnnotation(
+            layer,
+            formData as EchartsTimeseriesFormData,
+            data,
+            annotationData,
+          ),
+        );
+      }
+    });
+
+  // yAxisBounds need to be parsed to replace incompatible values with undefined
+  let [min, max] = (yAxisBounds || []).map(parseYAxisBound);
+
+  // default to 0-100% range when doing row-level contribution chart
+  if (contributionMode === 'row' && stack) {
+    if (min === undefined) min = 0;
+    if (max === undefined) max = 1;
+  }
+
+  let xAxisFormatter: TimeFormatter | StringConstructor;
+  if (xAxisTimeFormat === smartDateFormatter.id) {
+    xAxisFormatter = getTimeFormatterForGranularity(timeGrainSqla);
+  } else if (xAxisTimeFormat) {
+    xAxisFormatter = getTimeFormatter(xAxisTimeFormat);
+  } else {
+    xAxisFormatter = String;
+  }
+
+  const echartOptions: EChartsOption = {
+    useUTC: true,
+    grid: {
+      ...defaultGrid,
+      ...getChartPadding(showLegend, legendOrientation, legendMargin, {
+        top: 20,
+        bottom: zoomable ? 80 : 20,
+        left: 20,
+        right: 20,
+      }),
+    },
+    xAxis: {
+      type: 'time',
+      axisLabel: {
+        showMinLabel: xAxisShowMinLabel,
+        showMaxLabel: xAxisShowMaxLabel,
+        formatter: xAxisFormatter,
+        rotate: xAxisLabelRotation,
+      },
+    },
+    yAxis: {
+      ...defaultYAxis,
+      type: logAxis ? 'log' : 'value',
+      min,
+      max,
+      minorTick: { show: true },
+      minorSplitLine: { show: minorSplitLine },
+      axisLabel: { formatter },
+      scale: truncateYAxis,
+    },
+    tooltip: {
+      ...defaultTooltip,
+      trigger: richTooltip ? 'axis' : 'item',
+      formatter: (params: any) => {
+        const value: number = !richTooltip ? params.value : params[0].value[0];
+        const prophetValue = !richTooltip ? [params] : params;
+
+        const rows: Array<string> = [`${smartDateFormatter(value)}`];
+        const prophetValues: Record<string, ProphetValue> = extractProphetValuesFromTooltipParams(
+          prophetValue,
+        );
+
+        Object.keys(prophetValues).forEach(key => {
+          const value = prophetValues[key];
+          rows.push(
+            formatProphetTooltipSeries({
+              ...value,
+              seriesName: key,
+              formatter,
+            }),
+          );
+        });
+        return rows.join('<br />');
+      },
+    },
+    legend: {
+      ...getLegendProps(legendType, legendOrientation, showLegend),
+      // @ts-ignore
+      data: rawSeries
+        .filter(
+          entry =>
+            extractForecastSeriesContext((entry.name || '') as string).type ===
+            ForecastSeriesEnum.Observation,
+        )
+        .map(entry => entry.name || '')
+        .concat(extractAnnotationLabels(annotationLayers, annotationData)),
+    },
+    series,
+    toolbox: {
+      show: zoomable,
+      feature: {
+        dataZoom: {
+          yAxisIndex: false,
+          title: {
+            zoom: 'zoom area',
+            back: 'restore zoom',
+          },
+        },
+      },
+    },
+    dataZoom: zoomable
+      ? [
+          {
+            type: 'slider',
+            start: 0,
+            end: 100,
+            bottom: 20,
+          },
+        ]
+      : [],
+  };
+
+  return {
+    echartOptions,
+    width,
+    height,
+  };
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformers.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformers.ts
new file mode 100644
index 0000000..36873e7
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformers.ts
@@ -0,0 +1,294 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  AnnotationData,
+  AnnotationLayer,
+  AnnotationOpacity,
+  CategoricalColorScale,
+  EventAnnotationLayer,
+  IntervalAnnotationLayer,
+  isTimeseriesAnnotationResult,
+  TimeseriesAnnotationLayer,
+  TimeseriesDataRecord,
+} from '@superset-ui/core';
+import { SeriesOption } from 'echarts';
+import {
+  CallbackDataParams,
+  DefaultExtraStateOpts,
+  ItemStyleOption,
+  LineStyleOption,
+  OptionName,
+  ZRLineType,
+} from 'echarts/types/src/util/types';
+import {
+  MarkArea1DDataItemOption,
+  MarkArea2DDataItemOption,
+} from 'echarts/types/src/component/marker/MarkAreaModel';
+import { extractForecastSeriesContext } from '../utils/prophet';
+import { ForecastSeriesEnum } from '../types';
+import { DEFAULT_FORM_DATA, EchartsTimeseriesFormData } from './types';
+import {
+  evalFormula,
+  extractRecordAnnotations,
+  formatAnnotationLabel,
+  parseAnnotationOpacity,
+} from '../utils/annotation';
+
+export function transformSeries(
+  series: SeriesOption,
+  formData: EchartsTimeseriesFormData,
+  colorScale: CategoricalColorScale,
+): SeriesOption | undefined {
+  const { name } = series;
+  const {
+    area,
+    forecastEnabled,
+    markerEnabled,
+    markerSize,
+    opacity,
+    seriesType,
+    stack,
+    richTooltip,
+  }: EchartsTimeseriesFormData = {
+    ...DEFAULT_FORM_DATA,
+    ...formData,
+  };
+  const forecastSeries = extractForecastSeriesContext(name || '');
+  const isConfidenceBand =
+    forecastSeries.type === ForecastSeriesEnum.ForecastLower ||
+    forecastSeries.type === ForecastSeriesEnum.ForecastUpper;
+
+  // don't create a series if doing a stack or area chart and the result
+  // is a confidence band
+  if ((stack || area) && isConfidenceBand) return undefined;
+
+  const isObservation = forecastSeries.type === ForecastSeriesEnum.Observation;
+  const isTrend = forecastSeries.type === ForecastSeriesEnum.ForecastTrend;
+  let stackId;
+  if (isConfidenceBand) {
+    stackId = forecastSeries.name;
+  } else if (stack && isObservation) {
+    // the suffix of the observation series is '' (falsy), which disables
+    // stacking. Therefore we need to set something that is truthy.
+    stackId = 'obs';
+  } else if (stack && isTrend) {
+    stackId = forecastSeries.type;
+  }
+  let plotType;
+  if (!isConfidenceBand && (seriesType === 'scatter' || (forecastEnabled && isObservation))) {
+    plotType = 'scatter';
+  } else if (isConfidenceBand) {
+    plotType = 'line';
+  } else {
+    plotType = seriesType === 'bar' ? 'bar' : 'line';
+  }
+  const lineStyle = isConfidenceBand ? { opacity: 0 } : {};
+
+  return {
+    ...series,
+    name: forecastSeries.name,
+    itemStyle: {
+      color: colorScale(forecastSeries.name),
+    },
+    // @ts-ignore
+    type: plotType,
+    smooth: seriesType === 'smooth',
+    // @ts-ignore
+    step: ['start', 'middle', 'end'].includes(seriesType as string) ? seriesType : undefined,
+    stack: stackId,
+    lineStyle,
+    areaStyle: {
+      opacity: forecastSeries.type === ForecastSeriesEnum.ForecastUpper || area ? opacity : 0,
+    },
+    showSymbol:
+      !isConfidenceBand &&
+      (plotType === 'scatter' ||
+        (forecastEnabled && isObservation) ||
+        markerEnabled ||
+        !richTooltip), // TODO: forcing markers when richTooltip is enabled will be removed once ECharts supports item based tooltips without markers
+    symbolSize: markerSize,
+  };
+}
+
+export function transformFormulaAnnotation(
+  layer: AnnotationLayer,
+  data: TimeseriesDataRecord[],
+  colorScale: CategoricalColorScale,
+): SeriesOption {
+  const { name, color, opacity, width, style } = layer;
+  return {
+    name,
+    id: name,
+    itemStyle: {
+      color: color || colorScale(name),
+    },
+    lineStyle: {
+      opacity: parseAnnotationOpacity(opacity),
+      type: style as ZRLineType,
+      width,
+    },
+    type: 'line',
+    smooth: true,
+    data: evalFormula(layer, data),
+    symbolSize: 0,
+    z: 0,
+  };
+}
+
+export function transformIntervalAnnotation(
+  layer: IntervalAnnotationLayer,
+  data: TimeseriesDataRecord[],
+  annotationData: AnnotationData,
+  colorScale: CategoricalColorScale,
+): SeriesOption[] {
+  const series: SeriesOption[] = [];
+  const annotations = extractRecordAnnotations(layer, annotationData);
+  annotations.forEach(annotation => {
+    const { name, color, opacity } = layer;
+    const { descriptions, intervalEnd, time, title } = annotation;
+    const label = formatAnnotationLabel(name, title, descriptions);
+    const intervalData: (MarkArea1DDataItemOption | MarkArea2DDataItemOption)[] = [
+      [
+        {
+          name: label,
+          xAxis: time,
+        },
+        {
+          xAxis: intervalEnd,
+        },
+      ],
+    ];
+    series.push({
+      id: `Interval - ${label}`,
+      type: 'line',
+      animation: false,
+      markArea: {
+        silent: false,
+        itemStyle: {
+          color: color || colorScale(name),
+          opacity: parseAnnotationOpacity(opacity || AnnotationOpacity.Medium),
+          emphasis: {
+            opacity: 0.8,
+          },
+        } as ItemStyleOption,
+        label: {
+          show: false,
+          color: '#000000',
+          // @ts-ignore
+          emphasis: {
+            fontWeight: 'bold',
+            show: true,
+            position: 'insideTop',
+            verticalAlign: 'top',
+            backgroundColor: '#ffffff',
+          },
+        },
+        data: intervalData,
+      },
+    });
+  });
+  return series;
+}
+
+export function transformEventAnnotation(
+  layer: EventAnnotationLayer,
+  data: TimeseriesDataRecord[],
+  annotationData: AnnotationData,
+  colorScale: CategoricalColorScale,
+): SeriesOption[] {
+  const series: SeriesOption[] = [];
+  const annotations = extractRecordAnnotations(layer, annotationData);
+  annotations.forEach(annotation => {
+    const { name, color, opacity, style, width } = layer;
+    const { descriptions, time, title } = annotation;
+    const label = formatAnnotationLabel(name, title, descriptions);
+    const eventData = [
+      {
+        name: label,
+        xAxis: (time as unknown) as number,
+      },
+    ];
+
+    const lineStyle: LineStyleOption & DefaultExtraStateOpts['emphasis'] = {
+      width,
+      type: style as ZRLineType,
+      color: color || colorScale(name),
+      opacity: parseAnnotationOpacity(opacity),
+      emphasis: {
+        width: width ? width + 1 : width,
+        opacity: 1,
+      },
+    };
+
+    series.push({
+      id: `Event - ${label}`,
+      type: 'line',
+      animation: false,
+      markLine: {
+        silent: false,
+        symbol: 'none',
+        lineStyle,
+        label: {
+          show: false,
+          color: '#000000',
+          position: 'insideEndTop',
+          // @ts-ignore
+          emphasis: {
+            formatter: (params: CallbackDataParams) => params.name,
+            fontWeight: 'bold',
+            show: true,
+            backgroundColor: '#ffffff',
+          },
+        },
+        data: eventData,
+      },
+    });
+  });
+  return series;
+}
+
+export function transformTimeseriesAnnotation(
+  layer: TimeseriesAnnotationLayer,
+  formData: EchartsTimeseriesFormData,
+  data: TimeseriesDataRecord[],
+  annotationData: AnnotationData,
+): SeriesOption[] {
+  const series: SeriesOption[] = [];
+  const { markerSize } = formData;
+  const { hideLine, name, opacity, showMarkers, style, width } = layer;
+  const result = annotationData[name];
+  if (isTimeseriesAnnotationResult(result)) {
+    result.forEach(annotation => {
+      const { key, values } = annotation;
+      series.push({
+        type: 'line',
+        id: key,
+        name: key,
+        data: values.map(row => [row.x, row.y] as [OptionName, number]),
+        symbolSize: showMarkers ? markerSize : 0,
+        lineStyle: {
+          opacity: parseAnnotationOpacity(opacity),
+          type: style as ZRLineType,
+          width: hideLine ? 0 : width,
+        },
+      });
+    });
+  }
+  return series;
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/types.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/types.ts
new file mode 100644
index 0000000..c3a7ef5
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/types.ts
@@ -0,0 +1,95 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { AnnotationLayer, TimeGranularity } from '@superset-ui/core';
+import { DEFAULT_LEGEND_FORM_DATA, EchartsLegendFormData } from '../types';
+
+export enum EchartsTimeseriesContributionType {
+  Row = 'row',
+  Column = 'column',
+}
+
+export enum EchartsTimeseriesSeriesType {
+  Line = 'line',
+  Scatter = 'scatter',
+  Smooth = 'smooth',
+  Bar = 'bar',
+  Start = 'start',
+  Middle = 'middle',
+  End = 'end',
+}
+
+export type EchartsTimeseriesFormData = {
+  annotationLayers: AnnotationLayer[];
+  area: boolean;
+  colorScheme?: string;
+  contributionMode?: EchartsTimeseriesContributionType;
+  forecastEnabled: boolean;
+  forecastPeriods: number;
+  forecastInterval: number;
+  forecastSeasonalityDaily: null;
+  forecastSeasonalityWeekly: null;
+  forecastSeasonalityYearly: null;
+  logAxis: boolean;
+  markerEnabled: boolean;
+  markerSize: number;
+  minorSplitLine: boolean;
+  opacity: number;
+  orderDesc: boolean;
+  rowLimit: number;
+  seriesType: EchartsTimeseriesSeriesType;
+  stack: boolean;
+  truncateYAxis: boolean;
+  yAxisFormat?: string;
+  xAxisShowMinLabel?: boolean;
+  xAxisShowMaxLabel?: boolean;
+  xAxisTimeFormat?: string;
+  timeGrainSqla?: TimeGranularity;
+  yAxisBounds: [number | undefined | null, number | undefined | null];
+  zoomable: boolean;
+  richTooltip: boolean;
+  xAxisLabelRotation: number;
+} & EchartsLegendFormData;
+
+export const DEFAULT_FORM_DATA: EchartsTimeseriesFormData = {
+  ...DEFAULT_LEGEND_FORM_DATA,
+  annotationLayers: [],
+  area: false,
+  forecastEnabled: false,
+  forecastInterval: 0.8,
+  forecastPeriods: 10,
+  forecastSeasonalityDaily: null,
+  forecastSeasonalityWeekly: null,
+  forecastSeasonalityYearly: null,
+  logAxis: false,
+  markerEnabled: false,
+  markerSize: 6,
+  minorSplitLine: false,
+  opacity: 0.2,
+  orderDesc: true,
+  rowLimit: 10000,
+  seriesType: EchartsTimeseriesSeriesType.Line,
+  stack: false,
+  truncateYAxis: true,
+  yAxisBounds: [null, null],
+  xAxisShowMinLabel: true,
+  xAxisShowMaxLabel: true,
+  zoomable: false,
+  richTooltip: true,
+  xAxisLabelRotation: 45,
+};
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/components/Echart.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/components/Echart.tsx
new file mode 100644
index 0000000..909ac3f
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/components/Echart.tsx
@@ -0,0 +1,48 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { useRef, useEffect } from 'react';
+import { styled } from '@superset-ui/core';
+import { ECharts, init } from 'echarts';
+import { EchartsProps, EchartsStylesProps } from '../types';
+
+const Styles = styled.div<EchartsStylesProps>`
+  height: ${({ height }) => height};
+  width: ${({ width }) => width};
+`;
+
+export default function Echart({ width, height, echartOptions }: EchartsProps) {
+  const divRef = useRef<HTMLDivElement>(null);
+  const chartRef = useRef<ECharts>();
+
+  useEffect(() => {
+    if (!divRef.current) return;
+    if (!chartRef.current) {
+      chartRef.current = init(divRef.current);
+    }
+    chartRef.current.setOption(echartOptions, true);
+  }, [echartOptions]);
+
+  useEffect(() => {
+    if (chartRef.current) {
+      chartRef.current.resize({ width, height });
+    }
+  }, [width, height]);
+
+  return <Styles ref={divRef} height={height} width={width} />;
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/constants.ts b/superset-frontend/plugins/plugin-chart-echarts/src/constants.ts
new file mode 100644
index 0000000..e8ff4cd
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/constants.ts
@@ -0,0 +1,20 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+// eslint-disable-next-line import/prefer-default-export
+export const NULL_STRING = '<NULL>';
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/controls.ts b/superset-frontend/plugins/plugin-chart-echarts/src/controls.ts
new file mode 100644
index 0000000..cba62b3
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/controls.ts
@@ -0,0 +1,81 @@
+import { t } from '@superset-ui/core';
+import { DEFAULT_LEGEND_FORM_DATA } from './types';
+
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+const { legendMargin, legendOrientation, legendType, showLegend } = DEFAULT_LEGEND_FORM_DATA;
+
+export const noopControl = { name: 'noop', config: { type: '', renderTrigger: true } };
+
+export const showLegendControl = {
+  name: 'show_legend',
+  config: {
+    type: 'CheckboxControl',
+    label: t('Legend'),
+    renderTrigger: true,
+    default: showLegend,
+    description: t('Whether to display a legend for the chart'),
+  },
+};
+
+export const legendMarginControl = {
+  name: 'legendMargin',
+  config: {
+    type: 'TextControl',
+    label: t('Margin'),
+    renderTrigger: true,
+    isInt: true,
+    default: legendMargin,
+    description: t('Additional padding for legend.'),
+  },
+};
+
+export const legendTypeControl = {
+  name: 'legendType',
+  config: {
+    type: 'SelectControl',
+    freeForm: false,
+    label: 'Type',
+    choices: [
+      ['scroll', 'Scroll'],
+      ['plain', 'Plain'],
+    ],
+    default: legendType,
+    renderTrigger: true,
+    description: t('Legend type'),
+  },
+};
+
+export const legendOrientationControl = {
+  name: 'legendOrientation',
+  config: {
+    type: 'SelectControl',
+    freeForm: false,
+    label: 'Orientation',
+    choices: [
+      ['top', 'Top'],
+      ['bottom', 'Bottom'],
+      ['left', 'Left'],
+      ['right', 'Right'],
+    ],
+    default: legendOrientation,
+    renderTrigger: true,
+    description: t('Legend type'),
+  },
+};
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/defaults.ts b/superset-frontend/plugins/plugin-chart-echarts/src/defaults.ts
new file mode 100644
index 0000000..c74e3d7
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/defaults.ts
@@ -0,0 +1,38 @@
+import { LegendOrientation } from './types';
+
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export const defaultGrid = {
+  containLabel: true,
+};
+
+export const defaultTooltip = {
+  confine: true,
+};
+
+export const defaultYAxis = {
+  scale: true,
+};
+
+export const defaultLegendPadding = {
+  [LegendOrientation.Top]: 20,
+  [LegendOrientation.Bottom]: 20,
+  [LegendOrientation.Left]: 170,
+  [LegendOrientation.Right]: 170,
+};
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/index.ts
new file mode 100644
index 0000000..171a08d
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/index.ts
@@ -0,0 +1,29 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export { default as EchartsBoxPlotChartPlugin } from './BoxPlot';
+export { default as EchartsTimeseriesChartPlugin } from './Timeseries';
+export { default as EchartsPieChartPlugin } from './Pie';
+
+/**
+ * Note: this file exports the default export from EchartsTimeseries.tsx.
+ * If you want to export multiple visualization modules, you will need to
+ * either add additional plugin folders (similar in structure to ./plugin)
+ * OR export multiple instances of `ChartPlugin` extensions in ./plugin/index.ts
+ * which in turn load exports from EchartsTimeseries.tsx
+ */
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/types.ts b/superset-frontend/plugins/plugin-chart-echarts/src/types.ts
new file mode 100644
index 0000000..def54b6
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/types.ts
@@ -0,0 +1,77 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { EChartsOption } from 'echarts';
+import { TooltipMarker } from 'echarts/types/src/util/format';
+
+export type EchartsStylesProps = {
+  height: number;
+  width: number;
+};
+
+export interface EchartsProps {
+  height: number;
+  width: number;
+  echartOptions: EChartsOption;
+}
+
+export enum ForecastSeriesEnum {
+  Observation = '',
+  ForecastTrend = '__yhat',
+  ForecastUpper = '__yhat_upper',
+  ForecastLower = '__yhat_lower',
+}
+
+export type ForecastSeriesContext = {
+  name: string;
+  type: ForecastSeriesEnum;
+};
+
+export enum LegendOrientation {
+  Top = 'top',
+  Bottom = 'bottom',
+  Left = 'left',
+  Right = 'right',
+}
+
+export enum LegendType {
+  Scroll = 'scroll',
+  Plain = 'plain',
+}
+
+export type ProphetValue = {
+  marker: TooltipMarker;
+  observation?: number;
+  forecastTrend?: number;
+  forecastLower?: number;
+  forecastUpper?: number;
+};
+
+export type EchartsLegendFormData = {
+  legendMargin: number | null | string;
+  legendOrientation: LegendOrientation.Top;
+  legendType: LegendType;
+  showLegend: boolean;
+};
+
+export const DEFAULT_LEGEND_FORM_DATA: EchartsLegendFormData = {
+  legendMargin: null,
+  legendOrientation: LegendOrientation.Top,
+  legendType: LegendType.Scroll,
+  showLegend: false,
+};
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/utils/annotation.ts b/superset-frontend/plugins/plugin-chart-echarts/src/utils/annotation.ts
new file mode 100644
index 0000000..70dfb9f
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/utils/annotation.ts
@@ -0,0 +1,118 @@
+/* eslint-disable no-underscore-dangle */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  Annotation,
+  AnnotationData,
+  AnnotationLayer,
+  AnnotationOpacity,
+  AnnotationType,
+  isRecordAnnotationResult,
+  isTableAnnotationLayer,
+  isTimeseriesAnnotationResult,
+  TimeseriesDataRecord,
+} from '@superset-ui/core';
+import { parse as mathjsParse } from 'mathjs';
+
+export function evalFormula(
+  formula: AnnotationLayer,
+  data: TimeseriesDataRecord[],
+): [Date, number][] {
+  const { value } = formula;
+  const node = mathjsParse(value as string);
+  const func = node.compile();
+  return data.map(row => [
+    new Date(Number(row.__timestamp)),
+    func.evaluate({ x: row.__timestamp }) as number,
+  ]);
+}
+
+export function parseAnnotationOpacity(opacity?: AnnotationOpacity): number {
+  switch (opacity) {
+    case AnnotationOpacity.Low:
+      return 0.2;
+    case AnnotationOpacity.Medium:
+      return 0.5;
+    case AnnotationOpacity.High:
+      return 0.8;
+    default:
+      return 1;
+  }
+}
+
+const NATIVE_COLUMN_NAMES = {
+  descriptionColumns: ['long_descr'],
+  intervalEndColumn: 'end_dttm',
+  timeColumn: 'start_dttm',
+  titleColumn: 'short_descr',
+};
+
+export function extractRecordAnnotations(
+  annotationLayer: AnnotationLayer,
+  annotationData: AnnotationData,
+): Annotation[] {
+  const { name } = annotationLayer;
+  const result = annotationData[name];
+  if (isRecordAnnotationResult(result)) {
+    const { records } = result;
+    const {
+      descriptionColumns = [],
+      intervalEndColumn = '',
+      timeColumn = '',
+      titleColumn = '',
+    } = isTableAnnotationLayer(annotationLayer) ? annotationLayer : NATIVE_COLUMN_NAMES;
+
+    return records.map(record => ({
+      descriptions: descriptionColumns.map(column => (record[column] || '') as string) as string[],
+      intervalEnd: (record[intervalEndColumn] || '') as string,
+      time: (record[timeColumn] || '') as string,
+      title: (record[titleColumn] || '') as string,
+    }));
+  }
+  throw new Error('Please rerun the query.');
+}
+
+export function formatAnnotationLabel(
+  name?: string,
+  title?: string,
+  descriptions: string[] = [],
+): string {
+  const labels: string[] = [];
+  const titleLabels: string[] = [];
+  const filteredDescriptions = descriptions.filter(description => !!description);
+  if (name) titleLabels.push(name);
+  if (title) titleLabels.push(title);
+  if (titleLabels.length > 0) labels.push(titleLabels.join(' - '));
+  if (filteredDescriptions.length > 0) labels.push(filteredDescriptions.join('\n'));
+  return labels.join('\n\n');
+}
+
+export function extractAnnotationLabels(layers: AnnotationLayer[], data: AnnotationData): string[] {
+  const formulaAnnotationLabels = layers
+    .filter(anno => anno.annotationType === AnnotationType.Formula && anno.show)
+    .map(anno => anno.name);
+  const timeseriesAnnotationLabels = layers
+    .filter(anno => anno.annotationType === AnnotationType.Timeseries && anno.show)
+    .flatMap(anno => {
+      const result = data[anno.name];
+      return isTimeseriesAnnotationResult(result) ? result.map(annoSeries => annoSeries.key) : [];
+    });
+
+  return formulaAnnotationLabels.concat(timeseriesAnnotationLabels);
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/utils/controls.ts b/superset-frontend/plugins/plugin-chart-echarts/src/utils/controls.ts
new file mode 100644
index 0000000..1c4f310
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/utils/controls.ts
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+// eslint-disable-next-line import/prefer-default-export
+export function parseYAxisBound(bound?: string | number | null): number | undefined {
+  if (bound === undefined || bound === null || Number.isNaN(Number(bound))) {
+    return undefined;
+  }
+  return Number(bound);
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/utils/prophet.ts b/superset-frontend/plugins/plugin-chart-echarts/src/utils/prophet.ts
new file mode 100644
index 0000000..86af47b
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/utils/prophet.ts
@@ -0,0 +1,115 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { TimeseriesDataRecord, NumberFormatter } from '@superset-ui/core';
+import { CallbackDataParams, OptionName } from 'echarts/types/src/util/types';
+import { TooltipMarker } from 'echarts/types/src/util/format';
+import { ForecastSeriesContext, ForecastSeriesEnum, ProphetValue } from '../types';
+
+const seriesTypeRegex = new RegExp(
+  `(.+)(${ForecastSeriesEnum.ForecastLower}|${ForecastSeriesEnum.ForecastTrend}|${ForecastSeriesEnum.ForecastUpper})$`,
+);
+export const extractForecastSeriesContext = (seriesName: OptionName): ForecastSeriesContext => {
+  const name = seriesName as string;
+  const regexMatch = seriesTypeRegex.exec(name);
+  if (!regexMatch) return { name, type: ForecastSeriesEnum.Observation };
+  return {
+    name: regexMatch[1],
+    type: regexMatch[2] as ForecastSeriesEnum,
+  };
+};
+
+export const extractProphetValuesFromTooltipParams = (
+  params: (CallbackDataParams & { seriesId: string })[],
+): Record<string, ProphetValue> => {
+  const values: Record<string, ProphetValue> = {};
+  params.forEach(param => {
+    const { marker, seriesId, value } = param;
+    const context = extractForecastSeriesContext(seriesId);
+    const numericValue = (value as [Date, number])[1];
+    if (numericValue) {
+      if (!(context.name in values))
+        values[context.name] = {
+          marker: marker || '',
+        };
+      const prophetValues = values[context.name];
+      if (context.type === ForecastSeriesEnum.Observation) prophetValues.observation = numericValue;
+      if (context.type === ForecastSeriesEnum.ForecastTrend)
+        prophetValues.forecastTrend = numericValue;
+      if (context.type === ForecastSeriesEnum.ForecastLower)
+        prophetValues.forecastLower = numericValue;
+      if (context.type === ForecastSeriesEnum.ForecastUpper)
+        prophetValues.forecastUpper = numericValue;
+    }
+  });
+  return values;
+};
+
+export const formatProphetTooltipSeries = ({
+  seriesName,
+  observation,
+  forecastTrend,
+  forecastLower,
+  forecastUpper,
+  marker,
+  formatter,
+}: ProphetValue & {
+  seriesName: string;
+  marker: TooltipMarker;
+  formatter: NumberFormatter;
+}): string => {
+  let row = `${marker}${seriesName}: `;
+  let isObservation = false;
+  if (observation) {
+    isObservation = true;
+    row += `${formatter(observation)}`;
+  }
+  if (forecastTrend) {
+    if (isObservation) row += ', ';
+    row += `ŷ = ${formatter(forecastTrend)}`;
+    if (forecastLower && forecastUpper)
+      // the lower bound needs to be added to the upper bound
+      row += ` (${formatter(forecastLower)}, ${formatter(forecastLower + forecastUpper)})`;
+  }
+  return `${row.trim()}`;
+};
+
+export function rebaseTimeseriesDatum(data: TimeseriesDataRecord[]) {
+  const keys = data.length > 0 ? Object.keys(data[0]) : [];
+
+  // eslint-disable-next-line @typescript-eslint/no-unsafe-return
+  return data.map(row => {
+    const newRow: TimeseriesDataRecord = { __timestamp: '' };
+    keys.forEach(key => {
+      const forecastContext = extractForecastSeriesContext(key);
+      const lowerKey = `${forecastContext.name}${ForecastSeriesEnum.ForecastLower}`;
+      let value = row[key] as number;
+      if (
+        forecastContext.type === ForecastSeriesEnum.ForecastUpper &&
+        keys.includes(lowerKey) &&
+        value !== null &&
+        row[lowerKey] !== null
+      ) {
+        value -= row[lowerKey] as number;
+      }
+      newRow[key] = value;
+    });
+    // eslint-disable-next-line @typescript-eslint/no-unsafe-return
+    return newRow;
+  });
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/utils/series.ts b/superset-frontend/plugins/plugin-chart-echarts/src/utils/series.ts
new file mode 100644
index 0000000..c972fa2
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/utils/series.ts
@@ -0,0 +1,149 @@
+/* eslint-disable no-underscore-dangle */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  DataRecord,
+  DataRecordValue,
+  NumberFormatter,
+  TimeFormatter,
+  TimeseriesDataRecord,
+} from '@superset-ui/core';
+import { LegendComponentOption, SeriesOption } from 'echarts';
+import { NULL_STRING } from '../constants';
+import { LegendOrientation, LegendType } from '../types';
+import { defaultLegendPadding } from '../defaults';
+
+export function extractTimeseriesSeries(data: TimeseriesDataRecord[]): SeriesOption[] {
+  if (data.length === 0) return [];
+  const rows = data.map(datum => ({
+    ...datum,
+    __timestamp: datum.__timestamp || datum.__timestamp === 0 ? new Date(datum.__timestamp) : null,
+  }));
+
+  return Object.keys(rows[0])
+    .filter(key => key !== '__timestamp')
+    .map(key => ({
+      id: key,
+      name: key,
+      data: rows.map((datum: { [p: string]: DataRecordValue; __timestamp: Date | null }) => [
+        datum.__timestamp,
+        datum[key],
+      ]),
+    }));
+}
+
+export function formatSeriesName(
+  name: DataRecordValue | undefined,
+  {
+    numberFormatter,
+    timeFormatter,
+  }: {
+    numberFormatter?: NumberFormatter;
+    timeFormatter?: TimeFormatter;
+  } = {},
+): string {
+  if (name === undefined || name === null) {
+    return NULL_STRING;
+  }
+  if (typeof name === 'number') {
+    return numberFormatter ? numberFormatter(name) : name.toString();
+  }
+  if (typeof name === 'boolean') {
+    return name.toString();
+  }
+  if (name instanceof Date) {
+    return timeFormatter ? timeFormatter(name) : name.toISOString();
+  }
+  return name;
+}
+
+export function extractGroupbyLabel({
+  datum = {},
+  groupby,
+  numberFormatter,
+  timeFormatter,
+}: {
+  datum?: DataRecord;
+  groupby?: string[] | null;
+  numberFormatter?: NumberFormatter;
+  timeFormatter?: TimeFormatter;
+}): string {
+  return (groupby || [])
+    .map(val => formatSeriesName(datum[val], { numberFormatter, timeFormatter }))
+    .join(', ');
+}
+
+export function getLegendProps(
+  type: LegendType,
+  orientation: LegendOrientation,
+  show: boolean,
+): LegendComponentOption | LegendComponentOption[] {
+  const legend: LegendComponentOption | LegendComponentOption[] = {
+    orient: [LegendOrientation.Top, LegendOrientation.Bottom].includes(orientation)
+      ? 'horizontal'
+      : 'vertical',
+    show,
+    type,
+  };
+  switch (orientation) {
+    case LegendOrientation.Left:
+      legend.left = 0;
+      break;
+    case LegendOrientation.Right:
+      legend.right = 0;
+      break;
+    case LegendOrientation.Bottom:
+      legend.bottom = 0;
+      break;
+    case LegendOrientation.Top:
+    default:
+      legend.top = 0;
+      break;
+  }
+  return legend;
+}
+
+export function getChartPadding(
+  show: boolean,
+  orientation: LegendOrientation,
+  margin?: string | number | null,
+  padding?: { top?: number; bottom?: number; left?: number; right?: number },
+): {
+  bottom: number;
+  left: number;
+  right: number;
+  top: number;
+} {
+  let legendMargin;
+  if (!show) {
+    legendMargin = 0;
+  } else if (margin === null || margin === undefined || typeof margin === 'string') {
+    legendMargin = defaultLegendPadding[orientation];
+  } else {
+    legendMargin = margin;
+  }
+
+  const { bottom = 0, left = 0, right = 0, top = 0 } = padding || {};
+  return {
+    left: left + (orientation === LegendOrientation.Left ? legendMargin : 0),
+    right: right + (orientation === LegendOrientation.Right ? legendMargin : 0),
+    top: top + (orientation === LegendOrientation.Top ? legendMargin : 0),
+    bottom: bottom + (orientation === LegendOrientation.Bottom ? legendMargin : 0),
+  };
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts
new file mode 100644
index 0000000..50eb523
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts
@@ -0,0 +1,50 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import buildQuery from '../../src/BoxPlot/buildQuery';
+import { BoxPlotQueryFormData } from '../../src/BoxPlot/types';
+
+describe('BoxPlot buildQuery', () => {
+  const formData: BoxPlotQueryFormData = {
+    datasource: '5__table',
+    granularity_sqla: 'ds',
+    time_grain_sqla: 'P1Y',
+    columns: [],
+    metrics: ['foo'],
+    groupby: ['bar'],
+    whiskerOptions: 'Tukey',
+    yAxisFormat: 'SMART_NUMBER',
+    viz_type: 'my_chart',
+  };
+
+  it('should build timeseries when columns is empty', () => {
+    const queryContext = buildQuery(formData);
+    const [query] = queryContext.queries;
+    expect(query.is_timeseries).toEqual(true);
+    expect(query.metrics).toEqual(['foo']);
+    expect(query.columns).toEqual(['bar']);
+  });
+
+  it('should build non-timeseries query object when columns is defined', () => {
+    const queryContext = buildQuery({ ...formData, columns: ['qwerty'] });
+    const [query] = queryContext.queries;
+    expect(query.is_timeseries).toEqual(false);
+    expect(query.metrics).toEqual(['foo']);
+    expect(query.columns).toEqual(['qwerty', 'bar']);
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts
new file mode 100644
index 0000000..6fc4f26
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts
@@ -0,0 +1,99 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartProps } from '@superset-ui/core';
+import transformProps from '../../src/BoxPlot/transformProps';
+
+describe('BoxPlot tranformProps', () => {
+  const formData = {
+    datasource: '5__table',
+    granularity_sqla: 'ds',
+    time_grain_sqla: 'P1Y',
+    columns: [],
+    metrics: ['AVG(averageprice)'],
+    groupby: ['type', 'region'],
+    whiskerOptions: 'Tukey',
+    yAxisFormat: 'SMART_NUMBER',
+    viz_type: 'my_chart',
+  };
+  const chartProps = new ChartProps({
+    formData,
+    width: 800,
+    height: 600,
+    queriesData: [
+      {
+        data: [
+          {
+            type: 'organic',
+            region: 'Charlotte',
+            'AVG(averageprice)__mean': 1.9405512820512825,
+            'AVG(averageprice)__median': 1.9025,
+            'AVG(averageprice)__max': 2.505,
+            'AVG(averageprice)__min': 1.4775,
+            'AVG(averageprice)__q1': 1.73875,
+            'AVG(averageprice)__q3': 2.105,
+            'AVG(averageprice)__count': 39,
+            'AVG(averageprice)__outliers': [2.735],
+          },
+          {
+            type: 'organic',
+            region: 'Hartford Springfield',
+            'AVG(averageprice)__mean': 2.231141025641026,
+            'AVG(averageprice)__median': 2.265,
+            'AVG(averageprice)__max': 2.595,
+            'AVG(averageprice)__min': 1.862,
+            'AVG(averageprice)__q1': 2.1285,
+            'AVG(averageprice)__q3': 2.32625,
+            'AVG(averageprice)__count': 39,
+            'AVG(averageprice)__outliers': [],
+          },
+        ],
+      },
+    ],
+  });
+
+  it('should tranform chart props for viz', () => {
+    expect(transformProps(chartProps)).toEqual(
+      expect.objectContaining({
+        width: 800,
+        height: 600,
+        echartOptions: expect.objectContaining({
+          series: expect.arrayContaining([
+            expect.objectContaining({
+              name: 'boxplot',
+              data: expect.arrayContaining([
+                expect.objectContaining({
+                  name: 'organic, Charlotte',
+                  value: [1.4775, 1.73875, 1.9025, 2.105, 2.505, 1.9405512820512825, 39, [2.735]],
+                }),
+                expect.objectContaining({
+                  name: 'organic, Hartford Springfield',
+                  value: [1.862, 2.1285, 2.265, 2.32625, 2.595, 2.231141025641026, 39, []],
+                }),
+              ]),
+            }),
+            expect.objectContaining({
+              name: 'outlier',
+              data: [['organic, Charlotte', 2.735]],
+            }),
+          ]),
+        }),
+      }),
+    );
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts
new file mode 100644
index 0000000..fa40dbf
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts
@@ -0,0 +1,36 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import buildQuery from '../../src/Pie/buildQuery';
+
+describe('Pie buildQuery', () => {
+  const formData = {
+    datasource: '5__table',
+    granularity_sqla: 'ds',
+    metric: 'foo',
+    groupby: ['bar'],
+    viz_type: 'my_chart',
+  };
+
+  it('should build query fields from form data', () => {
+    const queryContext = buildQuery(formData);
+    const [query] = queryContext.queries;
+    expect(query.metrics).toEqual(['foo']);
+    expect(query.columns).toEqual(['bar']);
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts
new file mode 100644
index 0000000..099086a
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts
@@ -0,0 +1,95 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartProps, getNumberFormatter } from '@superset-ui/core';
+import transformProps, { formatPieLabel } from '../../src/Pie/transformProps';
+import { EchartsPieLabelType } from '../../src/Pie/types';
+
+describe('Pie tranformProps', () => {
+  const formData = {
+    colorScheme: 'bnbColors',
+    datasource: '3__table',
+    granularity_sqla: 'ds',
+    metric: 'sum__num',
+    groupby: ['foo', 'bar'],
+  };
+  const chartProps = new ChartProps({
+    formData,
+    width: 800,
+    height: 600,
+    queriesData: [
+      {
+        data: [
+          { foo: 'Sylvester', bar: 1, sum__num: 10 },
+          { foo: 'Arnold', bar: 2, sum__num: 2.5 },
+        ],
+      },
+    ],
+  });
+
+  it('should tranform chart props for viz', () => {
+    expect(transformProps(chartProps)).toEqual(
+      expect.objectContaining({
+        width: 800,
+        height: 600,
+        echartOptions: expect.objectContaining({
+          series: [
+            expect.objectContaining({
+              avoidLabelOverlap: true,
+              data: expect.arrayContaining([
+                expect.objectContaining({
+                  name: 'Arnold, 2',
+                  value: 2.5,
+                }),
+                expect.objectContaining({
+                  name: 'Sylvester, 1',
+                  value: 10,
+                }),
+              ]),
+            }),
+          ],
+        }),
+      }),
+    );
+  });
+});
+
+describe('formatPieLabel', () => {
+  it('should generate a valid pie chart label', () => {
+    const numberFormatter = getNumberFormatter();
+    const params = { name: 'My Label', value: 1234, percent: 12.34 };
+    expect(formatPieLabel({ params, numberFormatter, labelType: EchartsPieLabelType.Key })).toEqual(
+      'My Label',
+    );
+    expect(
+      formatPieLabel({ params, numberFormatter, labelType: EchartsPieLabelType.Value }),
+    ).toEqual('1.23k');
+    expect(
+      formatPieLabel({ params, numberFormatter, labelType: EchartsPieLabelType.Percent }),
+    ).toEqual('12.34%');
+    expect(
+      formatPieLabel({ params, numberFormatter, labelType: EchartsPieLabelType.KeyValue }),
+    ).toEqual('My Label: 1.23k');
+    expect(
+      formatPieLabel({ params, numberFormatter, labelType: EchartsPieLabelType.KeyPercent }),
+    ).toEqual('My Label: 12.34%');
+    expect(
+      formatPieLabel({ params, numberFormatter, labelType: EchartsPieLabelType.KeyValuePercent }),
+    ).toEqual('My Label: 1.23k (12.34%)');
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/Timeseries/buildQuery.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/Timeseries/buildQuery.test.ts
new file mode 100644
index 0000000..c333ad7
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/Timeseries/buildQuery.test.ts
@@ -0,0 +1,36 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import buildQuery from '../../src/Timeseries/buildQuery';
+
+describe('Timeseries buildQuery', () => {
+  const formData = {
+    datasource: '5__table',
+    granularity_sqla: 'ds',
+    groupby: ['foo'],
+    metrics: ['bar', 'baz'],
+    viz_type: 'my_chart',
+  };
+
+  it('should build groupby with series in form data', () => {
+    const queryContext = buildQuery(formData);
+    const [query] = queryContext.queries;
+    expect(query.groupby).toEqual(['foo']);
+    expect(query.metrics).toEqual(['bar', 'baz']);
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts
new file mode 100644
index 0000000..aeb7671
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts
@@ -0,0 +1,240 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  ChartProps,
+  EventAnnotationLayer,
+  FormulaAnnotationLayer,
+  IntervalAnnotationLayer,
+  TimeseriesAnnotationLayer,
+} from '@superset-ui/core';
+import transformProps from '../../src/Timeseries/transformProps';
+
+describe('EchartsTimeseries tranformProps', () => {
+  const formData = {
+    colorScheme: 'bnbColors',
+    datasource: '3__table',
+    granularity_sqla: 'ds',
+    metric: 'sum__num',
+    groupby: ['foo', 'bar'],
+  };
+  const queriesData = [
+    {
+      data: [
+        { 'San Francisco': 1, 'New York': 2, __timestamp: 599616000000 },
+        { 'San Francisco': 3, 'New York': 4, __timestamp: 599916000000 },
+      ],
+    },
+  ];
+  const chartPropsConfig = {
+    formData,
+    width: 800,
+    height: 600,
+    queriesData,
+  };
+
+  it('should tranform chart props for viz', () => {
+    const chartProps = new ChartProps(chartPropsConfig);
+    expect(transformProps(chartProps)).toEqual(
+      expect.objectContaining({
+        width: 800,
+        height: 600,
+        echartOptions: expect.objectContaining({
+          legend: expect.objectContaining({
+            data: ['San Francisco', 'New York'],
+          }),
+          series: expect.arrayContaining([
+            expect.objectContaining({
+              data: [
+                [new Date(599616000000), 1],
+                [new Date(599916000000), 3],
+              ],
+              name: 'San Francisco',
+            }),
+            expect.objectContaining({
+              data: [
+                [new Date(599616000000), 2],
+                [new Date(599916000000), 4],
+              ],
+              name: 'New York',
+            }),
+          ]),
+        }),
+      }),
+    );
+  });
+
+  it('should add a formula annotation to viz', () => {
+    const formula: FormulaAnnotationLayer = {
+      name: 'My Formula',
+      annotationType: 'FORMULA',
+      value: 'x+1',
+      style: 'solid',
+      show: true,
+    };
+    const chartProps = new ChartProps({
+      ...chartPropsConfig,
+      formData: {
+        ...formData,
+        annotationLayers: [formula],
+      },
+    });
+    expect(transformProps(chartProps)).toEqual(
+      expect.objectContaining({
+        width: 800,
+        height: 600,
+        echartOptions: expect.objectContaining({
+          legend: expect.objectContaining({
+            data: ['San Francisco', 'New York', 'My Formula'],
+          }),
+          series: expect.arrayContaining([
+            expect.objectContaining({
+              data: [
+                [new Date(599616000000), 1],
+                [new Date(599916000000), 3],
+              ],
+              name: 'San Francisco',
+            }),
+            expect.objectContaining({
+              data: [
+                [new Date(599616000000), 2],
+                [new Date(599916000000), 4],
+              ],
+              name: 'New York',
+            }),
+            expect.objectContaining({
+              data: [
+                [new Date(599616000000), 599616000001],
+                [new Date(599916000000), 599916000001],
+              ],
+              name: 'My Formula',
+            }),
+          ]),
+        }),
+      }),
+    );
+  });
+
+  it('should add an interval, event and timeseries annotation to viz', () => {
+    const event: EventAnnotationLayer = {
+      annotationType: 'EVENT',
+      name: 'My Event',
+      show: true,
+      sourceType: 'NATIVE',
+      style: 'solid',
+      value: 1,
+    };
+
+    const interval: IntervalAnnotationLayer = {
+      annotationType: 'INTERVAL',
+      name: 'My Interval',
+      show: true,
+      sourceType: 'table',
+      titleColumn: '',
+      timeColumn: 'start',
+      intervalEndColumn: '',
+      descriptionColumns: [],
+      style: 'dashed',
+      value: 2,
+    };
+
+    const timeseries: TimeseriesAnnotationLayer = {
+      annotationType: 'TIME_SERIES',
+      name: 'My Timeseries',
+      show: true,
+      sourceType: 'line',
+      style: 'solid',
+      titleColumn: '',
+      value: 3,
+    };
+    const chartProps = new ChartProps({
+      ...chartPropsConfig,
+      formData: {
+        ...formData,
+        annotationLayers: [event, interval, timeseries],
+      },
+      queriesData: [
+        {
+          ...queriesData[0],
+          annotation_data: {
+            'My Event': {
+              columns: ['start_dttm', 'end_dttm', 'short_descr', 'long_descr', 'json_metadata'],
+              records: [
+                {
+                  start_dttm: 0,
+                  end_dttm: 1000,
+                  short_descr: '',
+                  long_descr: '',
+                  json_metadata: null,
+                },
+              ],
+            },
+            'My Interval': {
+              columns: ['start', 'end', 'title'],
+              records: [
+                {
+                  start: 2000,
+                  end: 3000,
+                  title: 'My Title',
+                },
+              ],
+            },
+            'My Timeseries': [
+              {
+                key: 'My Line',
+                values: [
+                  {
+                    x: 10000,
+                    y: 11000,
+                  },
+                  {
+                    x: 20000,
+                    y: 21000,
+                  },
+                ],
+              },
+            ],
+          },
+        },
+      ],
+    });
+    expect(transformProps(chartProps)).toEqual(
+      expect.objectContaining({
+        echartOptions: expect.objectContaining({
+          legend: expect.objectContaining({
+            data: ['San Francisco', 'New York', 'My Line'],
+          }),
+          series: expect.arrayContaining([
+            expect.objectContaining({
+              type: 'line',
+              id: 'My Line',
+            }),
+            expect.objectContaining({
+              type: 'line',
+              id: 'Event - My Event',
+            }),
+            expect.objectContaining({
+              type: 'line',
+              id: 'Interval - My Interval',
+            }),
+          ]),
+        }),
+      }),
+    );
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/index.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/index.test.ts
new file mode 100644
index 0000000..786d114
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/index.test.ts
@@ -0,0 +1,26 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { EchartsPieChartPlugin, EchartsTimeseriesChartPlugin } from '../src';
+
+describe('@superset-ui/plugin-chart-echarts', () => {
+  it('exists', () => {
+    expect(EchartsPieChartPlugin).toBeDefined();
+    expect(EchartsTimeseriesChartPlugin).toBeDefined();
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/tsconfig.json b/superset-frontend/plugins/plugin-chart-echarts/test/tsconfig.json
new file mode 100644
index 0000000..b3b91df
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/tsconfig.json
@@ -0,0 +1,22 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/utils/annotation.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/utils/annotation.test.ts
new file mode 100644
index 0000000..78547e9
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/utils/annotation.test.ts
@@ -0,0 +1,119 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { AnnotationLayer, AnnotationResult } from '@superset-ui/core';
+import {
+  extractAnnotationLabels,
+  formatAnnotationLabel,
+  parseAnnotationOpacity,
+} from '../../src/utils/annotation';
+
+describe('formatAnnotationLabel', () => {
+  it('should handle default cases properly', () => {
+    expect(formatAnnotationLabel('name')).toEqual('name');
+    expect(formatAnnotationLabel('name', 'title')).toEqual('name - title');
+    expect(formatAnnotationLabel('name', 'title', ['description'])).toEqual(
+      'name - title\n\ndescription',
+    );
+  });
+
+  it('should handle missing cases properly', () => {
+    expect(formatAnnotationLabel()).toEqual('');
+    expect(formatAnnotationLabel(undefined, 'title')).toEqual('title');
+    expect(formatAnnotationLabel('name', undefined, ['description'])).toEqual(
+      'name\n\ndescription',
+    );
+    expect(formatAnnotationLabel(undefined, undefined, ['description'])).toEqual('description');
+  });
+
+  it('should handle multiple descriptions properly', () => {
+    expect(formatAnnotationLabel('name', 'title', ['description 1', 'description 2'])).toEqual(
+      'name - title\n\ndescription 1\ndescription 2',
+    );
+    expect(formatAnnotationLabel(undefined, undefined, ['description 1', 'description 2'])).toEqual(
+      'description 1\ndescription 2',
+    );
+  });
+});
+
+describe('extractForecastSeriesContext', () => {
+  it('should extract the correct series name and type', () => {
+    expect(parseAnnotationOpacity('opacityLow')).toEqual(0.2);
+    expect(parseAnnotationOpacity('opacityMedium')).toEqual(0.5);
+    expect(parseAnnotationOpacity('opacityHigh')).toEqual(0.8);
+    expect(parseAnnotationOpacity('')).toEqual(1);
+    expect(parseAnnotationOpacity(undefined)).toEqual(1);
+  });
+});
+
+describe('extractAnnotationLabels', () => {
+  it('should extract all annotations that can be added to the legend', () => {
+    const layers: AnnotationLayer[] = [
+      {
+        annotationType: 'FORMULA',
+        name: 'My Formula',
+        show: true,
+        style: 'solid',
+        value: 'sin(x)',
+      },
+      {
+        annotationType: 'FORMULA',
+        name: 'My Hidden Formula',
+        show: false,
+        style: 'solid',
+        value: 'sin(2x)',
+      },
+      {
+        annotationType: 'INTERVAL',
+        name: 'My Interval',
+        sourceType: 'table',
+        show: true,
+        style: 'solid',
+        value: 1,
+      },
+      {
+        annotationType: 'TIME_SERIES',
+        name: 'My Line',
+        show: true,
+        style: 'dashed',
+        sourceType: 'line',
+        value: 1,
+      },
+      {
+        annotationType: 'TIME_SERIES',
+        name: 'My Hidden Line',
+        show: false,
+        style: 'dashed',
+        sourceType: 'line',
+        value: 1,
+      },
+    ];
+    const results: AnnotationResult = {
+      'My Interval': {
+        columns: ['col'],
+        records: [{ col: 1 }],
+      },
+      'My Line': [
+        { key: 'Line 1', values: [] },
+        { key: 'Line 2', values: [] },
+      ],
+    };
+
+    expect(extractAnnotationLabels(layers, results)).toEqual(['My Formula', 'Line 1', 'Line 2']);
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/utils/controls.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/utils/controls.test.ts
new file mode 100644
index 0000000..60ced57
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/utils/controls.test.ts
@@ -0,0 +1,37 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { parseYAxisBound } from '../../src/utils/controls';
+
+describe('parseYAxisBound', () => {
+  it('should return undefined for invalid values', () => {
+    expect(parseYAxisBound(null)).toBeUndefined();
+    expect(parseYAxisBound(undefined)).toBeUndefined();
+    expect(parseYAxisBound(NaN)).toBeUndefined();
+    expect(parseYAxisBound('abc')).toBeUndefined();
+  });
+
+  it('should return numeric value for valid values', () => {
+    expect(parseYAxisBound(0)).toEqual(0);
+    expect(parseYAxisBound('0')).toEqual(0);
+    expect(parseYAxisBound(1)).toEqual(1);
+    expect(parseYAxisBound('1')).toEqual(1);
+    expect(parseYAxisBound(10.1)).toEqual(10.1);
+    expect(parseYAxisBound('10.1')).toEqual(10.1);
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/utils/prophet.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/utils/prophet.test.ts
new file mode 100644
index 0000000..5c1ad81
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/utils/prophet.test.ts
@@ -0,0 +1,175 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { getNumberFormatter, NumberFormats } from '@superset-ui/core';
+import {
+  extractForecastSeriesContext,
+  extractProphetValuesFromTooltipParams,
+  formatProphetTooltipSeries,
+  rebaseTimeseriesDatum,
+} from '../../src/utils/prophet';
+import { ForecastSeriesEnum } from '../../src/types';
+
+describe('extractForecastSeriesContext', () => {
+  it('should extract the correct series name and type', () => {
+    expect(extractForecastSeriesContext('abcd')).toEqual({
+      name: 'abcd',
+      type: ForecastSeriesEnum.Observation,
+    });
+    expect(extractForecastSeriesContext('qwerty__yhat')).toEqual({
+      name: 'qwerty',
+      type: ForecastSeriesEnum.ForecastTrend,
+    });
+    expect(extractForecastSeriesContext('X Y Z___yhat_upper')).toEqual({
+      name: 'X Y Z_',
+      type: ForecastSeriesEnum.ForecastUpper,
+    });
+    expect(extractForecastSeriesContext('1 2 3__yhat_lower')).toEqual({
+      name: '1 2 3',
+      type: ForecastSeriesEnum.ForecastLower,
+    });
+  });
+});
+
+describe('rebaseTimeseriesDatum', () => {
+  it('should subtract lower confidence level from upper value', () => {
+    expect(
+      rebaseTimeseriesDatum([
+        {
+          __timestamp: new Date('2001-01-01'),
+          abc: 10,
+          abc__yhat_lower: 1,
+          abc__yhat_upper: 20,
+        },
+        {
+          __timestamp: new Date('2002-01-01'),
+          abc: 10,
+          abc__yhat_lower: null,
+          abc__yhat_upper: 20,
+        },
+        {
+          __timestamp: new Date('2003-01-01'),
+          abc: 10,
+          abc__yhat_lower: 1,
+          abc__yhat_upper: null,
+        },
+      ]),
+    ).toEqual([
+      {
+        __timestamp: new Date('2001-01-01'),
+        abc: 10,
+        abc__yhat_lower: 1,
+        abc__yhat_upper: 19,
+      },
+      {
+        __timestamp: new Date('2002-01-01'),
+        abc: 10,
+        abc__yhat_lower: null,
+        abc__yhat_upper: 20,
+      },
+      {
+        __timestamp: new Date('2003-01-01'),
+        abc: 10,
+        abc__yhat_lower: 1,
+        abc__yhat_upper: null,
+      },
+    ]);
+  });
+});
+
+describe('extractProphetValuesFromTooltipParams', () => {
+  it('should extract the proper data from tooltip params', () => {
+    expect(
+      extractProphetValuesFromTooltipParams([
+        {
+          marker: '<img>',
+          seriesId: 'abc',
+          value: [new Date(0), 10],
+        },
+        {
+          marker: '<img>',
+          seriesId: 'abc__yhat',
+          value: [new Date(0), 1],
+        },
+        {
+          marker: '<img>',
+          seriesId: 'abc__yhat_lower',
+          value: [new Date(0), 5],
+        },
+        {
+          marker: '<img>',
+          seriesId: 'abc__yhat_upper',
+          value: [new Date(0), 6],
+        },
+        {
+          marker: '<img>',
+          seriesId: 'qwerty',
+          value: [new Date(0), 2],
+        },
+      ]),
+    ).toEqual({
+      abc: {
+        marker: '<img>',
+        observation: 10,
+        forecastTrend: 1,
+        forecastLower: 5,
+        forecastUpper: 6,
+      },
+      qwerty: {
+        marker: '<img>',
+        observation: 2,
+      },
+    });
+  });
+});
+
+const formatter = getNumberFormatter(NumberFormats.INTEGER);
+
+describe('formatProphetTooltipSeries', () => {
+  it('should generate a proper series tooltip', () => {
+    expect(
+      formatProphetTooltipSeries({
+        seriesName: 'abc',
+        marker: '<img>',
+        observation: 10.1,
+        formatter,
+      }),
+    ).toEqual('<img>abc: 10');
+    expect(
+      formatProphetTooltipSeries({
+        seriesName: 'qwerty',
+        marker: '<img>',
+        observation: 10.1,
+        forecastTrend: 20.1,
+        forecastLower: 5.1,
+        forecastUpper: 7.1,
+        formatter,
+      }),
+    ).toEqual('<img>qwerty: 10, ŷ = 20 (5, 12)');
+    expect(
+      formatProphetTooltipSeries({
+        seriesName: 'qwerty',
+        marker: '<img>',
+        forecastTrend: 20,
+        forecastLower: 5,
+        forecastUpper: 7,
+        formatter,
+      }),
+    ).toEqual('<img>qwerty: ŷ = 20 (5, 12)');
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/utils/series.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/utils/series.test.ts
new file mode 100644
index 0000000..401b91b
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/utils/series.test.ts
@@ -0,0 +1,246 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { getNumberFormatter, getTimeFormatter } from '@superset-ui/core';
+import {
+  extractGroupbyLabel,
+  extractTimeseriesSeries,
+  formatSeriesName,
+  getChartPadding,
+  getLegendProps,
+} from '../../src/utils/series';
+import { LegendOrientation, LegendType } from '../../src/types';
+import { defaultLegendPadding } from '../../src/defaults';
+
+describe('extractTimeseriesSeries', () => {
+  it('should generate a valid ECharts timeseries series object', () => {
+    const data = [
+      {
+        __timestamp: '2000-01-01',
+        Hulk: null,
+        abc: 2,
+      },
+      {
+        __timestamp: '2000-02-01',
+        Hulk: 2,
+        abc: 10,
+      },
+      {
+        __timestamp: '2000-03-01',
+        Hulk: 1,
+        abc: 5,
+      },
+    ];
+    expect(extractTimeseriesSeries(data)).toEqual([
+      {
+        id: 'Hulk',
+        name: 'Hulk',
+        data: [
+          [new Date('2000-01-01'), null],
+          [new Date('2000-02-01'), 2],
+          [new Date('2000-03-01'), 1],
+        ],
+      },
+      {
+        id: 'abc',
+        name: 'abc',
+        data: [
+          [new Date('2000-01-01'), 2],
+          [new Date('2000-02-01'), 10],
+          [new Date('2000-03-01'), 5],
+        ],
+      },
+    ]);
+  });
+});
+
+describe('extractGroupbyLabel', () => {
+  it('should join together multiple groupby labels', () => {
+    expect(extractGroupbyLabel({ datum: { a: 'abc', b: 'qwerty' }, groupby: ['a', 'b'] })).toEqual(
+      'abc, qwerty',
+    );
+  });
+
+  it('should handle a single groupby', () => {
+    expect(extractGroupbyLabel({ datum: { xyz: 'qqq' }, groupby: ['xyz'] })).toEqual('qqq');
+  });
+
+  it('should handle mixed types', () => {
+    expect(
+      extractGroupbyLabel({
+        datum: { strcol: 'abc', intcol: 123, floatcol: 0.123, boolcol: true },
+        groupby: ['strcol', 'intcol', 'floatcol', 'boolcol'],
+      }),
+    ).toEqual('abc, 123, 0.123, true');
+  });
+
+  it('should handle null and undefined groupby', () => {
+    expect(
+      extractGroupbyLabel({
+        datum: { strcol: 'abc', intcol: 123, floatcol: 0.123, boolcol: true },
+        groupby: null,
+      }),
+    ).toEqual('');
+    expect(extractGroupbyLabel({})).toEqual('');
+  });
+});
+
+describe('formatSeriesName', () => {
+  const numberFormatter = getNumberFormatter();
+  const timeFormatter = getTimeFormatter();
+  it('should handle missing values properly', () => {
+    expect(formatSeriesName(undefined)).toEqual('<NULL>');
+    expect(formatSeriesName(null)).toEqual('<NULL>');
+  });
+
+  it('should handle string values properly', () => {
+    expect(formatSeriesName('abc XYZ!')).toEqual('abc XYZ!');
+  });
+
+  it('should handle boolean values properly', () => {
+    expect(formatSeriesName(true)).toEqual('true');
+  });
+
+  it('should use default formatting for numeric values without formatter', () => {
+    expect(formatSeriesName(12345678.9)).toEqual('12345678.9');
+  });
+
+  it('should use numberFormatter for numeric values when formatter is provided', () => {
+    expect(formatSeriesName(12345678.9, { numberFormatter })).toEqual('12.3M');
+  });
+
+  it('should use default formatting for for date values without formatter', () => {
+    expect(formatSeriesName(new Date('2020-09-11'))).toEqual('2020-09-11T00:00:00.000Z');
+  });
+
+  it('should use timeFormatter for date values when formatter is provided', () => {
+    expect(formatSeriesName(new Date('2020-09-11'), { timeFormatter })).toEqual(
+      '2020-09-11 00:00:00',
+    );
+  });
+
+  describe('getLegendProps', () => {
+    it('should return the correct props for scroll type with top orientation', () => {
+      expect(getLegendProps(LegendType.Scroll, LegendOrientation.Top, true)).toEqual({
+        show: true,
+        top: 0,
+        orient: 'horizontal',
+        type: 'scroll',
+      });
+    });
+
+    it('should return the correct props for plain type with left orientation', () => {
+      expect(getLegendProps(LegendType.Plain, LegendOrientation.Left, true)).toEqual({
+        show: true,
+        left: 0,
+        orient: 'vertical',
+        type: 'plain',
+      });
+    });
+
+    it('should return the correct props for plain type with right orientation', () => {
+      expect(getLegendProps(LegendType.Plain, LegendOrientation.Right, false)).toEqual({
+        show: false,
+        right: 0,
+        orient: 'vertical',
+        type: 'plain',
+      });
+    });
+
+    it('should return the correct props for plain type with bottom orientation', () => {
+      expect(getLegendProps(LegendType.Plain, LegendOrientation.Bottom, false)).toEqual({
+        show: false,
+        bottom: 0,
+        orient: 'horizontal',
+        type: 'plain',
+      });
+    });
+  });
+
+  describe('getChartPadding', () => {
+    it('should handle top default', () => {
+      expect(getChartPadding(true, LegendOrientation.Top)).toEqual({
+        bottom: 0,
+        left: 0,
+        right: 0,
+        top: defaultLegendPadding[LegendOrientation.Top],
+      });
+    });
+
+    it('should handle left default', () => {
+      expect(getChartPadding(true, LegendOrientation.Left)).toEqual({
+        bottom: 0,
+        left: defaultLegendPadding[LegendOrientation.Left],
+        right: 0,
+        top: 0,
+      });
+    });
+
+    it('should return the default padding when show is false', () => {
+      expect(
+        getChartPadding(false, LegendOrientation.Left, 100, {
+          top: 10,
+          bottom: 20,
+          left: 30,
+          right: 40,
+        }),
+      ).toEqual({
+        bottom: 20,
+        left: 30,
+        right: 40,
+        top: 10,
+      });
+    });
+
+    it('should return the correct padding for left orientation', () => {
+      expect(getChartPadding(true, LegendOrientation.Left, 100)).toEqual({
+        bottom: 0,
+        left: 100,
+        right: 0,
+        top: 0,
+      });
+    });
+
+    it('should return the correct padding for right orientation', () => {
+      expect(getChartPadding(true, LegendOrientation.Right, 50)).toEqual({
+        bottom: 0,
+        left: 0,
+        right: 50,
+        top: 0,
+      });
+    });
+
+    it('should return the correct padding for top orientation', () => {
+      expect(getChartPadding(true, LegendOrientation.Top, 20)).toEqual({
+        bottom: 0,
+        left: 0,
+        right: 0,
+        top: 20,
+      });
+    });
+
+    it('should return the correct padding for bottom orientation', () => {
+      expect(getChartPadding(true, LegendOrientation.Bottom, 10)).toEqual({
+        bottom: 10,
+        left: 0,
+        right: 0,
+        top: 0,
+      });
+    });
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/tsconfig.json b/superset-frontend/plugins/plugin-chart-echarts/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/plugin-chart-echarts/types/external.d.ts b/superset-frontend/plugins/plugin-chart-echarts/types/external.d.ts
new file mode 100644
index 0000000..0935dbb
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/types/external.d.ts
@@ -0,0 +1,4 @@
+declare module '*.png' {
+  const value: any;
+  export default value;
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/README.md b/superset-frontend/plugins/plugin-chart-table/README.md
new file mode 100644
index 0000000..4fc4501
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/plugin-chart-table
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-table)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-plugin-chart-table&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=plugins/superset-ui-plugin-chart-table)
+
+This plugin provides Table chart for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import TableChartPlugin from '@superset-ui/plugin-chart-table';
+
+new TableChartPlugin().configure({ key: 'table' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-table)
+for more details.
+
+```js
+<SuperChart
+  chartType="table"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/plugin-chart-table/package.json b/superset-frontend/plugins/plugin-chart-table/package.json
new file mode 100644
index 0000000..1dd888d
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/package.json
@@ -0,0 +1,47 @@
+{
+  "name": "@superset-ui/plugin-chart-table",
+  "version": "0.17.6",
+  "description": "Superset Chart - Table",
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "sideEffects": false,
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@emotion/core": "^10.0.28",
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "@types/d3-array": "^2.0.0",
+    "@types/react-table": "^7.0.19",
+    "d3-array": "^2.4.0",
+    "match-sorter": "^6.1.0",
+    "memoize-one": "^5.1.1",
+    "react-icons": "^3.10.0",
+    "react-table": "^7.2.1",
+    "regenerator-runtime": "^0.13.5",
+    "xss": "^1.0.6"
+  },
+  "peerDependencies": {
+    "@types/react": "*",
+    "react": "^16.13.1",
+    "react-dom": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx
new file mode 100644
index 0000000..d4b2de6
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx
@@ -0,0 +1,257 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { useCallback, useRef, ReactNode, HTMLProps, MutableRefObject } from 'react';
+import {
+  useTable,
+  usePagination,
+  useSortBy,
+  useGlobalFilter,
+  PluginHook,
+  TableOptions,
+  FilterType,
+  IdType,
+  Row,
+} from 'react-table';
+import { matchSorter, rankings } from 'match-sorter';
+import GlobalFilter, { GlobalFilterProps } from './components/GlobalFilter';
+import SelectPageSize, { SelectPageSizeProps, SizeOption } from './components/SelectPageSize';
+import SimplePagination from './components/Pagination';
+import useSticky from './hooks/useSticky';
+
+export interface DataTableProps<D extends object> extends TableOptions<D> {
+  tableClassName?: string;
+  searchInput?: boolean | GlobalFilterProps<D>['searchInput'];
+  selectPageSize?: boolean | SelectPageSizeProps['selectRenderer'];
+  pageSizeOptions?: SizeOption[]; // available page size options
+  maxPageItemCount?: number;
+  hooks?: PluginHook<D>[]; // any additional hooks
+  width?: string | number;
+  height?: string | number;
+  pageSize?: number;
+  noResults?: string | ((filterString: string) => ReactNode);
+  sticky?: boolean;
+  wrapperRef?: MutableRefObject<HTMLDivElement>;
+}
+
+export interface RenderHTMLCellProps extends HTMLProps<HTMLTableCellElement> {
+  cellContent: ReactNode;
+}
+
+// Be sure to pass our updateMyData and the skipReset option
+export default function DataTable<D extends object>({
+  tableClassName,
+  columns,
+  data,
+  width: initialWidth = '100%',
+  height: initialHeight = 300,
+  pageSize: initialPageSize = 0,
+  initialState: initialState_ = {},
+  pageSizeOptions = [10, 25, 50, 100, 200],
+  maxPageItemCount = 9,
+  sticky: doSticky,
+  searchInput = true,
+  selectPageSize,
+  noResults: noResultsText = 'No data found',
+  hooks,
+  wrapperRef: userWrapperRef,
+  ...moreUseTableOptions
+}: DataTableProps<D>): JSX.Element {
+  const tableHooks: PluginHook<D>[] = [
+    useGlobalFilter,
+    useSortBy,
+    usePagination,
+    doSticky ? useSticky : [],
+    hooks || [],
+  ].flat();
+  const sortByRef = useRef([]); // cache initial `sortby` so sorting doesn't trigger page reset
+  const pageSizeRef = useRef([initialPageSize, data.length]);
+  const hasPagination = initialPageSize > 0 && data.length > 0; // pageSize == 0 means no pagination
+  const hasGlobalControl = hasPagination || !!searchInput;
+  const initialState = {
+    ...initialState_,
+    // zero length means all pages, the `usePagination` plugin does not
+    // understand pageSize = 0
+    sortBy: sortByRef.current,
+    pageSize: initialPageSize > 0 ? initialPageSize : data.length || 10,
+  };
+
+  const defaultWrapperRef = useRef<HTMLDivElement>(null);
+  const globalControlRef = useRef<HTMLDivElement>(null);
+  const paginationRef = useRef<HTMLDivElement>(null);
+  const wrapperRef = userWrapperRef || defaultWrapperRef;
+
+  const defaultGetTableSize = useCallback(() => {
+    if (wrapperRef.current) {
+      // `initialWidth` and `initialHeight` could be also parameters like `100%`
+      // `Number` reaturns `NaN` on them, then we fallback to computed size
+      const width = Number(initialWidth) || wrapperRef.current.clientWidth;
+      const height =
+        (Number(initialHeight) || wrapperRef.current.clientHeight) -
+        (globalControlRef.current?.clientHeight || 0) -
+        (paginationRef.current?.clientHeight || 0);
+      return { width, height };
+    }
+    return undefined;
+    // eslint-disable-next-line react-hooks/exhaustive-deps
+  }, [initialHeight, initialWidth, wrapperRef, hasPagination, hasGlobalControl]);
+
+  const defaultGlobalFilter: FilterType<D> = useCallback(
+    (rows: Row<D>[], columnIds: IdType<D>[], filterValue: string) => {
+      // allow searching by "col1_value col2_value"
+      const joinedString = (row: Row<D>) => columnIds.map(x => row.values[x]).join(' ');
+      return matchSorter(rows, filterValue, {
+        keys: [...columnIds, joinedString],
+        threshold: rankings.ACRONYM,
+      }) as typeof rows;
+    },
+    [],
+  );
+
+  const {
+    getTableProps,
+    getTableBodyProps,
+    prepareRow,
+    headerGroups,
+    page,
+    pageCount,
+    gotoPage,
+    preGlobalFilteredRows,
+    setGlobalFilter,
+    setPageSize: setPageSize_,
+    wrapStickyTable,
+    state: { pageIndex, pageSize, globalFilter: filterValue, sticky = {} },
+  } = useTable<D>(
+    {
+      columns,
+      data,
+      initialState,
+      getTableSize: defaultGetTableSize,
+      globalFilter: defaultGlobalFilter,
+      ...moreUseTableOptions,
+    },
+    ...tableHooks,
+  );
+  // make setPageSize accept 0
+  const setPageSize = (size: number) => {
+    // keep the original size if data is empty
+    if (size || data.length !== 0) {
+      setPageSize_(size === 0 ? data.length : size);
+    }
+  };
+
+  const noResults =
+    typeof noResultsText === 'function' ? noResultsText(filterValue as string) : noResultsText;
+
+  if (!columns || columns.length === 0) {
+    return <div className="dt-no-results">{noResults}</div>;
+  }
+
+  const renderTable = () => (
+    <table {...getTableProps({ className: tableClassName })}>
+      <thead>
+        {headerGroups.map(headerGroup => {
+          const { key: headerGroupKey, ...headerGroupProps } = headerGroup.getHeaderGroupProps();
+          return (
+            <tr key={headerGroupKey || headerGroup.id} {...headerGroupProps}>
+              {headerGroup.headers.map(column =>
+                column.render('Header', {
+                  key: column.id,
+                  ...column.getSortByToggleProps(),
+                }),
+              )}
+            </tr>
+          );
+        })}
+      </thead>
+      <tbody {...getTableBodyProps()}>
+        {page && page.length > 0 ? (
+          page.map(row => {
+            prepareRow(row);
+            const { key: rowKey, ...rowProps } = row.getRowProps();
+            return (
+              <tr key={rowKey || row.id} {...rowProps}>
+                {row.cells.map(cell => cell.render('Cell', { key: cell.column.id }))}
+              </tr>
+            );
+          })
+        ) : (
+          <tr>
+            <td className="dt-no-results" colSpan={columns.length}>
+              {noResults}
+            </td>
+          </tr>
+        )}
+      </tbody>
+    </table>
+  );
+
+  // force upate the pageSize when it's been update from the initial state
+  if (
+    pageSizeRef.current[0] !== initialPageSize ||
+    // when initialPageSize stays as zero, but total number of records changed,
+    // we'd also need to update page size
+    (initialPageSize === 0 && pageSizeRef.current[1] !== data.length)
+  ) {
+    pageSizeRef.current = [initialPageSize, data.length];
+    setPageSize(initialPageSize);
+  }
+
+  return (
+    <div ref={wrapperRef} style={{ width: initialWidth, height: initialHeight }}>
+      {hasGlobalControl ? (
+        <div ref={globalControlRef} className="form-inline dt-controls">
+          <div className="row">
+            <div className="col-sm-6">
+              {hasPagination ? (
+                <SelectPageSize
+                  total={data.length}
+                  current={pageSize}
+                  options={pageSizeOptions}
+                  selectRenderer={typeof selectPageSize === 'boolean' ? undefined : selectPageSize}
+                  onChange={setPageSize}
+                />
+              ) : null}
+            </div>
+            {searchInput ? (
+              <div className="col-sm-6">
+                <GlobalFilter<D>
+                  searchInput={typeof searchInput === 'boolean' ? undefined : searchInput}
+                  preGlobalFilteredRows={preGlobalFilteredRows}
+                  setGlobalFilter={setGlobalFilter}
+                  filterValue={filterValue}
+                />
+              </div>
+            ) : null}
+          </div>
+        </div>
+      ) : null}
+      {wrapStickyTable ? wrapStickyTable(renderTable) : renderTable()}
+      {hasPagination ? (
+        <SimplePagination
+          ref={paginationRef}
+          style={sticky.height ? undefined : { visibility: 'hidden' }}
+          maxPageItemCount={maxPageItemCount}
+          pageCount={pageCount}
+          currentPage={pageIndex}
+          onPageChange={gotoPage}
+        />
+      ) : null}
+    </div>
+  );
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/README.md b/superset-frontend/plugins/plugin-chart-table/src/DataTable/README.md
new file mode 100644
index 0000000..d9c840e
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/README.md
@@ -0,0 +1,6 @@
+# Superset UI Data Table
+
+Reusable data table based on [react-table](https://github.com/tannerlinsley/react-table), with
+built-in support for sorting, filtering, and pagination.
+
+Intended to be used as a standalone UI component in the future.
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx
new file mode 100644
index 0000000..e166813
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx
@@ -0,0 +1,80 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { ComponentType, ChangeEventHandler } from 'react';
+import { Row, FilterValue } from 'react-table';
+import useAsyncState from '../utils/useAsyncState';
+
+export interface SearchInputProps {
+  count: number;
+  value: string;
+  onChange: ChangeEventHandler<HTMLInputElement>;
+}
+
+export interface GlobalFilterProps<D extends object> {
+  preGlobalFilteredRows: Row<D>[];
+  // filter value cannot be `undefined` otherwise React will report component
+  // control type undefined error
+  filterValue: string;
+  setGlobalFilter: (filterValue: FilterValue) => void;
+  searchInput?: ComponentType<SearchInputProps>;
+}
+
+function DefaultSearchInput({ count, value, onChange }: SearchInputProps) {
+  return (
+    <span className="dt-global-filter">
+      Search{' '}
+      <input
+        className="form-control input-sm"
+        placeholder={`${count} records...`}
+        value={value}
+        onChange={onChange}
+      />
+    </span>
+  );
+}
+
+export default (React.memo as <T>(fn: T) => T)(function GlobalFilter<D extends object>({
+  preGlobalFilteredRows,
+  filterValue = '',
+  searchInput,
+  setGlobalFilter,
+}: GlobalFilterProps<D>) {
+  const count = preGlobalFilteredRows.length;
+  const [value, setValue] = useAsyncState(
+    filterValue,
+    (newValue: string) => {
+      setGlobalFilter(newValue || undefined);
+    },
+    200,
+  );
+
+  const SearchInput = searchInput || DefaultSearchInput;
+
+  return (
+    <SearchInput
+      count={count}
+      value={value}
+      onChange={e => {
+        const target = e.target as HTMLInputElement;
+        e.preventDefault();
+        setValue(target.value);
+      }}
+    />
+  );
+});
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/Pagination.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/Pagination.tsx
new file mode 100644
index 0000000..8ffb1aa
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/Pagination.tsx
@@ -0,0 +1,99 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { CSSProperties } from 'react';
+
+export interface PaginationProps {
+  pageCount: number; // number of pages
+  currentPage?: number; // index of current page, zero-based
+  maxPageItemCount?: number;
+  ellipsis?: string; // content for ellipsis item
+  onPageChange: (page: number) => void; // `page` is zero-based
+  style?: CSSProperties;
+}
+
+// first, ..., prev, current, next, ..., last
+const MINIMAL_PAGE_ITEM_COUNT = 7;
+
+/**
+ * Generate numeric page items around current page.
+ *   - Always include first and last page
+ *   - Add ellipsis if needed
+ */
+export function generatePageItems(total: number, current: number, width: number) {
+  if (width < MINIMAL_PAGE_ITEM_COUNT) {
+    throw new Error(`Must allow at least ${MINIMAL_PAGE_ITEM_COUNT} page items`);
+  }
+  if (width % 2 === 0) {
+    throw new Error(`Must allow odd number of page items`);
+  }
+  if (total < width) {
+    return [...new Array(total).keys()];
+  }
+  const left = Math.max(0, Math.min(total - width, current - Math.floor(width / 2)));
+  const items: (string | number)[] = new Array(width);
+  for (let i = 0; i < width; i += 1) {
+    items[i] = i + left;
+  }
+  // replace non-ending items with placeholders
+  if (items[0] > 0) {
+    items[0] = 0;
+    items[1] = 'prev-more';
+  }
+  if (items[items.length - 1] < total - 1) {
+    items[items.length - 1] = total - 1;
+    items[items.length - 2] = 'next-more';
+  }
+  return items;
+}
+
+export default React.memo(
+  React.forwardRef(function Pagination(
+    { style, pageCount, currentPage = 0, maxPageItemCount = 9, onPageChange }: PaginationProps,
+    ref: React.Ref<HTMLDivElement>,
+  ) {
+    const pageItems = generatePageItems(pageCount, currentPage, maxPageItemCount);
+    return (
+      <div ref={ref} className="dt-pagination" style={style}>
+        <ul className="pagination pagination-sm">
+          {pageItems.map(item =>
+            typeof item === 'number' ? (
+              // actual page number
+              <li key={item} className={currentPage === item ? 'active' : undefined}>
+                <a
+                  href={`#page-${item}`}
+                  role="button"
+                  onClick={e => {
+                    e.preventDefault();
+                    onPageChange(item);
+                  }}
+                >
+                  {item + 1}
+                </a>
+              </li>
+            ) : (
+              <li key={item} className="dt-pagination-ellipsis">
+                <span>…</span>
+              </li>
+            ),
+          )}
+        </ul>
+      </div>
+    );
+  }),
+);
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx
new file mode 100644
index 0000000..c098e2c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx
@@ -0,0 +1,90 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+
+export type SizeOption = number | [number, string];
+
+export interface SelectPageSizeRendererProps {
+  current: number;
+  options: SizeOption[];
+  onChange: SelectPageSizeProps['onChange'];
+}
+
+function DefaultSelectRenderer({ current, options, onChange }: SelectPageSizeRendererProps) {
+  return (
+    <span className="dt-select-page-size form-inline">
+      Show{' '}
+      <select
+        className="form-control input-sm"
+        value={current}
+        onBlur={() => {}}
+        onChange={e => {
+          onChange(Number((e.target as HTMLSelectElement).value));
+        }}
+      >
+        {options.map(option => {
+          const [size, text] = Array.isArray(option) ? option : [option, option];
+          return (
+            <option key={size} value={size}>
+              {text}
+            </option>
+          );
+        })}
+      </select>{' '}
+      entries
+    </span>
+  );
+}
+
+export interface SelectPageSizeProps extends SelectPageSizeRendererProps {
+  total?: number;
+  selectRenderer?: typeof DefaultSelectRenderer;
+  onChange: (pageSize: number) => void;
+}
+
+function getOptionValue(x: SizeOption) {
+  return Array.isArray(x) ? x[0] : x;
+}
+
+export default React.memo(function SelectPageSize({
+  total,
+  options: sizeOptions,
+  current: currentSize,
+  selectRenderer,
+  onChange,
+}: SelectPageSizeProps) {
+  const sizeOptionValues = sizeOptions.map(getOptionValue);
+  let options = [...sizeOptions];
+  // insert current size to list
+  if (
+    currentSize !== undefined &&
+    (currentSize !== total || !sizeOptionValues.includes(0)) &&
+    !sizeOptionValues.includes(currentSize)
+  ) {
+    options = [...sizeOptions];
+    options.splice(
+      sizeOptionValues.findIndex(x => x > currentSize),
+      0,
+      currentSize,
+    );
+  }
+  const current = currentSize === undefined ? sizeOptionValues[0] : currentSize;
+  const SelectRenderer = selectRenderer || DefaultSelectRenderer;
+  return <SelectRenderer current={current} options={options} onChange={onChange} />;
+});
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx
new file mode 100644
index 0000000..0e858fe
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx
@@ -0,0 +1,359 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, {
+  useRef,
+  useMemo,
+  useLayoutEffect,
+  useCallback,
+  ReactNode,
+  ReactElement,
+  ComponentPropsWithRef,
+  CSSProperties,
+  UIEventHandler,
+} from 'react';
+import { TableInstance, Hooks } from 'react-table';
+import getScrollBarSize from '../utils/getScrollBarSize';
+import needScrollBar from '../utils/needScrollBar';
+import useMountedMemo from '../utils/useMountedMemo';
+
+type ReactElementWithChildren<
+  T extends keyof JSX.IntrinsicElements,
+  C extends ReactNode = ReactNode
+> = ReactElement<ComponentPropsWithRef<T> & { children: C }, T>;
+
+type Th = ReactElementWithChildren<'th'>;
+type Td = ReactElementWithChildren<'td'>;
+type TrWithTh = ReactElementWithChildren<'tr', Th[]>;
+type TrWithTd = ReactElementWithChildren<'tr', Td[]>;
+type Thead = ReactElementWithChildren<'thead', TrWithTh>;
+type Tbody = ReactElementWithChildren<'tbody', TrWithTd>;
+type Col = ReactElementWithChildren<'col', null>;
+type ColGroup = ReactElementWithChildren<'colgroup', Col>;
+
+export type Table = ReactElementWithChildren<'table', (Thead | Tbody | ColGroup)[]>;
+export type TableRenderer = () => Table;
+export type GetTableSize = () => Partial<StickyState> | undefined;
+export type SetStickyState = (size?: StickyState) => void;
+
+export enum ReducerActions {
+  init = 'init', // this is from global reducer
+  setStickyState = 'setStickyState',
+}
+
+export type ReducerAction<T extends string, P extends Record<string, unknown>> = P & { type: T };
+
+export type ColumnWidths = number[];
+
+export interface StickyState {
+  width?: number; // maximum full table width
+  height?: number; // maximum full table height
+  realHeight?: number; // actual table viewport height (header + scrollable area)
+  bodyHeight?: number; // scrollable area height
+  tableHeight?: number; // the full table height
+  columnWidths?: ColumnWidths;
+  hasHorizontalScroll?: boolean;
+  hasVerticalScroll?: boolean;
+  rendering?: boolean;
+  setStickyState?: SetStickyState;
+}
+
+export interface UseStickyTableOptions {
+  getTableSize?: GetTableSize;
+}
+
+export interface UseStickyInstanceProps {
+  // manipulate DOMs in <table> to make the header sticky
+  wrapStickyTable: (renderer: TableRenderer) => ReactNode;
+  // update or recompute the sticky table size
+  setStickyState: SetStickyState;
+}
+
+export type UseStickyState = {
+  sticky: StickyState;
+};
+
+const sum = (a: number, b: number) => a + b;
+const mergeStyleProp = (node: ReactElement<{ style?: CSSProperties }>, style: CSSProperties) => ({
+  style: {
+    ...node.props.style,
+    ...style,
+  },
+});
+
+/**
+ * An HOC for generating sticky header and fixed-height scrollable area
+ */
+function StickyWrap({
+  sticky = {},
+  width: maxWidth,
+  height: maxHeight,
+  children: table,
+  setStickyState,
+}: {
+  width: number;
+  height: number;
+  setStickyState: SetStickyState;
+  children: Table;
+  sticky?: StickyState; // current sticky element sizes
+}) {
+  if (!table || table.type !== 'table') {
+    throw new Error('<StickyWrap> must have only one <table> element as child');
+  }
+  let thead: Thead | undefined;
+  let tbody: Tbody | undefined;
+  let colgroup: ColGroup | undefined;
+  React.Children.forEach(table.props.children, node => {
+    if (node.type === 'thead') {
+      thead = node;
+    } else if (node.type === 'tbody') {
+      tbody = node;
+    } else if (node.type === 'colgroup') {
+      colgroup = node;
+    }
+  });
+  if (!thead || !tbody) {
+    throw new Error('<table> in <StickyWrap> must contain both thead and tbody.');
+  }
+  const columnCount = useMemo(() => {
+    const headerRows = React.Children.toArray(thead?.props.children).pop() as TrWithTh;
+    return headerRows.props.children.length;
+  }, [thead]);
+
+  const theadRef = useRef<HTMLTableSectionElement>(null); // original thead for layout computation
+  const scrollHeaderRef = useRef<HTMLDivElement>(null); // fixed header
+  const scrollBodyRef = useRef<HTMLDivElement>(null); // main body
+
+  const { bodyHeight, columnWidths } = sticky;
+  const needSizer =
+    !columnWidths ||
+    sticky.width !== maxWidth ||
+    sticky.height !== maxHeight ||
+    sticky.setStickyState !== setStickyState;
+  const scrollBarSize = getScrollBarSize();
+
+  // update scrollable area and header column sizes when mounted
+  useLayoutEffect(() => {
+    if (theadRef.current) {
+      const bodyThead = theadRef.current;
+      const theadHeight = bodyThead.clientHeight;
+      if (!theadHeight) {
+        return;
+      }
+      const fullTableHeight = (bodyThead.parentNode as HTMLTableElement).clientHeight;
+      const ths = bodyThead.childNodes[0].childNodes as NodeListOf<HTMLTableHeaderCellElement>;
+      const widths = Array.from(ths).map(th => th.clientWidth);
+      const [hasVerticalScroll, hasHorizontalScroll] = needScrollBar({
+        width: maxWidth,
+        height: maxHeight - theadHeight,
+        innerHeight: fullTableHeight,
+        innerWidth: widths.reduce(sum),
+        scrollBarSize,
+      });
+      // real container height, include table header and space for
+      // horizontal scroll bar
+      const realHeight = Math.min(
+        maxHeight,
+        hasHorizontalScroll ? fullTableHeight + scrollBarSize : fullTableHeight,
+      );
+      setStickyState({
+        hasVerticalScroll,
+        hasHorizontalScroll,
+        setStickyState,
+        width: maxWidth,
+        height: maxHeight,
+        realHeight,
+        tableHeight: fullTableHeight,
+        bodyHeight: realHeight - theadHeight,
+        columnWidths: widths,
+      });
+    }
+  }, [maxWidth, maxHeight, setStickyState, scrollBarSize]);
+
+  let sizerTable: ReactElement | undefined;
+  let headerTable: ReactElement | undefined;
+  let bodyTable: ReactElement | undefined;
+  if (needSizer) {
+    const theadWithRef = React.cloneElement(thead, { ref: theadRef });
+    sizerTable = (
+      <div
+        key="sizer"
+        style={{
+          height: maxHeight,
+          overflow: 'auto',
+          visibility: 'hidden',
+        }}
+      >
+        {React.cloneElement(table, {}, colgroup, theadWithRef, tbody)}
+      </div>
+    );
+  }
+
+  // reuse previously column widths, will be updated by `useLayoutEffect` above
+  const colWidths = columnWidths?.slice(0, columnCount);
+  if (colWidths && bodyHeight) {
+    const tableStyle: CSSProperties = { tableLayout: 'fixed' };
+
+    const bodyCols = colWidths.map((w, i) => (
+      // eslint-disable-next-line react/no-array-index-key
+      <col key={i} width={w} />
+    ));
+    const bodyColgroup = <colgroup>{bodyCols}</colgroup>;
+
+    // header columns do not have vertical scroll bars,
+    // so we add scroll bar size to the last column
+    const headerColgroup =
+      sticky.hasVerticalScroll && scrollBarSize ? (
+        <colgroup>
+          {colWidths.map((x, i) => (
+            // eslint-disable-next-line react/no-array-index-key
+            <col key={i} width={x + (i === colWidths.length - 1 ? scrollBarSize : 0)} />
+          ))}
+        </colgroup>
+      ) : (
+        bodyColgroup
+      );
+
+    headerTable = (
+      <div
+        key="header"
+        ref={scrollHeaderRef}
+        style={{
+          overflow: 'hidden',
+        }}
+      >
+        {React.cloneElement(table, mergeStyleProp(table, tableStyle), headerColgroup, thead)}
+        {headerTable}
+      </div>
+    );
+
+    const onScroll: UIEventHandler<HTMLDivElement> = e => {
+      if (scrollHeaderRef.current) {
+        scrollHeaderRef.current.scrollLeft = e.currentTarget.scrollLeft;
+      }
+    };
+    bodyTable = (
+      <div
+        key="body"
+        ref={scrollBodyRef}
+        style={{
+          height: bodyHeight,
+          overflow: 'auto',
+        }}
+        onScroll={sticky.hasHorizontalScroll ? onScroll : undefined}
+      >
+        {React.cloneElement(table, mergeStyleProp(table, tableStyle), bodyColgroup, tbody)}
+      </div>
+    );
+  }
+
+  return (
+    <div
+      style={{
+        width: maxWidth,
+        height: sticky.realHeight || maxHeight,
+        overflow: 'hidden',
+      }}
+    >
+      {headerTable}
+      {bodyTable}
+      {sizerTable}
+    </div>
+  );
+}
+
+function useInstance<D extends object>(instance: TableInstance<D>) {
+  const {
+    dispatch,
+    state: { sticky },
+    data,
+    page,
+    rows,
+    getTableSize = () => undefined,
+  } = instance;
+
+  const setStickyState = useCallback(
+    (size?: Partial<StickyState>) => {
+      dispatch({
+        type: ReducerActions.setStickyState,
+        size,
+      });
+    },
+    // turning pages would also trigger a resize
+    // eslint-disable-next-line react-hooks/exhaustive-deps
+    [dispatch, getTableSize, page, rows],
+  );
+
+  const useStickyWrap = (renderer: TableRenderer) => {
+    const { width, height } = useMountedMemo(getTableSize, [getTableSize]) || sticky;
+    // only change of data should trigger re-render
+    // eslint-disable-next-line react-hooks/exhaustive-deps
+    const table = useMemo(renderer, [page, rows]);
+
+    useLayoutEffect(() => {
+      if (!width || !height) {
+        setStickyState();
+      }
+    }, [width, height]);
+
+    if (!width || !height) {
+      return null;
+    }
+    if (data.length === 0) {
+      return table;
+    }
+    return (
+      <StickyWrap width={width} height={height} sticky={sticky} setStickyState={setStickyState}>
+        {table}
+      </StickyWrap>
+    );
+  };
+
+  Object.assign(instance, {
+    setStickyState,
+    wrapStickyTable: useStickyWrap,
+  });
+}
+
+export default function useSticky<D extends object>(hooks: Hooks<D>) {
+  hooks.useInstance.push(useInstance);
+  hooks.stateReducers.push((newState, action_) => {
+    const action = action_ as ReducerAction<ReducerActions, { size: StickyState }>;
+    if (action.type === ReducerActions.init) {
+      return {
+        ...newState,
+        sticky: newState.sticky || {},
+      };
+    }
+    if (action.type === ReducerActions.setStickyState) {
+      const { size } = action;
+      if (!size) {
+        return { ...newState };
+      }
+      return {
+        ...newState,
+        sticky: {
+          ...newState.sticky,
+          ...action.size,
+        },
+      };
+    }
+    return newState;
+  });
+}
+useSticky.pluginName = 'useSticky';
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/index.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/index.tsx
new file mode 100644
index 0000000..55bdc9d
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/index.tsx
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export * from './hooks/useSticky';
+export * from './components/GlobalFilter';
+export * from './components/Pagination';
+export * from './components/SelectPageSize';
+export * from './DataTable';
+
+export { default } from './DataTable';
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts b/superset-frontend/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts
new file mode 100644
index 0000000..8301ab3
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts
@@ -0,0 +1,76 @@
+/**
+ * Merge typing interfaces for UseTable hooks.
+ *
+ * Ref: https://gist.github.com/ggascoigne/646e14c9d54258e40588a13aabf0102d
+ */
+import {
+  UseGlobalFiltersState,
+  UseGlobalFiltersOptions,
+  UseGlobalFiltersInstanceProps,
+  UsePaginationInstanceProps,
+  UsePaginationOptions,
+  UsePaginationState,
+  UseSortByColumnOptions,
+  UseSortByColumnProps,
+  UseSortByInstanceProps,
+  UseSortByOptions,
+  UseSortByState,
+  UseTableHooks,
+  UseSortByHooks,
+  Renderer,
+  HeaderProps,
+} from 'react-table';
+
+import { UseStickyState, UseStickyTableOptions, UseStickyInstanceProps } from '../hooks/useSticky';
+
+declare module 'react-table' {
+  export interface TableOptions<D extends object>
+    extends UseExpandedOptions<D>,
+      UseGlobalFiltersOptions<D>,
+      UsePaginationOptions<D>,
+      UseRowSelectOptions<D>,
+      UseSortByOptions<D>,
+      UseStickyTableOptions {}
+
+  export interface TableInstance<D extends object>
+    extends UseColumnOrderInstanceProps<D>,
+      UseExpandedInstanceProps<D>,
+      UseGlobalFiltersInstanceProps<D>,
+      UsePaginationInstanceProps<D>,
+      UseRowSelectInstanceProps<D>,
+      UseRowStateInstanceProps<D>,
+      UseSortByInstanceProps<D>,
+      UseStickyInstanceProps {}
+
+  export interface TableState<D extends object>
+    extends UseColumnOrderState<D>,
+      UseExpandedState<D>,
+      UseGlobalFiltersState<D>,
+      UsePaginationState<D>,
+      UseRowSelectState<D>,
+      UseSortByState<D>,
+      UseStickyState {}
+
+  // Typing from @types/react-table is incomplete
+  interface TableSortByToggleProps {
+    style?: React.CSSProperties;
+    title?: string;
+    onClick?: React.MouseEventHandler;
+  }
+
+  export interface ColumnInterface<D extends object>
+    extends UseGlobalFiltersColumnOptions<D>,
+      UseSortByColumnOptions<D> {
+    // must define as a new property because it's not possible to override
+    // the existing `Header` renderer option
+    Header?: Renderer<TableSortByToggleProps & HeaderProps<D>>;
+  }
+
+  export interface ColumnInstance<D extends object>
+    extends UseGlobalFiltersColumnOptions<D>,
+      UseSortByColumnProps<D> {
+    getSortByToggleProps: (props?: Partial<TableSortByToggleProps>) => TableSortByToggleProps;
+  }
+
+  export interface Hooks<D extends object> extends UseTableHooks<D>, UseSortByHooks<D> {}
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/getScrollBarSize.ts b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/getScrollBarSize.ts
new file mode 100644
index 0000000..5d86598
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/getScrollBarSize.ts
@@ -0,0 +1,48 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+let cached: number | undefined;
+
+const css = (x: TemplateStringsArray) => x.join('\n');
+
+export default function getScrollBarSize(forceRefresh = false) {
+  if (typeof document === 'undefined') {
+    return 0;
+  }
+  if (cached === undefined || forceRefresh) {
+    const inner = document.createElement('div');
+    const outer = document.createElement('div');
+    inner.style.cssText = css`
+      width: auto;
+      height: 100%;
+      overflow: scroll;
+    `;
+    outer.style.cssText = css`
+      position: absolute;
+      visibility: hidden;
+      overflow: hidden;
+      width: 100px;
+      height: 50px;
+    `;
+    outer.append(inner);
+    document.body.append(outer);
+    cached = outer.clientWidth - inner.clientWidth;
+    outer.remove();
+  }
+  return cached;
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/needScrollBar.ts b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/needScrollBar.ts
new file mode 100644
index 0000000..a40082c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/needScrollBar.ts
@@ -0,0 +1,38 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/**
+ * Whether a container need scroll bars when in another container.
+ */
+export default function needScrollBar({
+  width,
+  height,
+  innerHeight,
+  innerWidth,
+  scrollBarSize,
+}: {
+  width: number;
+  height: number;
+  innerHeight: number;
+  scrollBarSize: number;
+  innerWidth: number;
+}): [boolean, boolean] {
+  const hasVerticalScroll = innerHeight > height;
+  const hasHorizontalScroll = innerWidth > width - (hasVerticalScroll ? scrollBarSize : 0);
+  return [hasVerticalScroll, hasHorizontalScroll];
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/useAsyncState.ts b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/useAsyncState.ts
new file mode 100644
index 0000000..0d94146
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/useAsyncState.ts
@@ -0,0 +1,51 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { useRef, useState } from 'react';
+import { useAsyncDebounce } from 'react-table';
+
+// useAsyncDebounce in dist build of `react-table` requires regeneratorRuntime
+import 'regenerator-runtime/runtime';
+
+/**
+ * Hook useState to allow always return latest initialValue
+ */
+export default function useAsyncState<T, F extends (newValue: T) => unknown>(
+  initialValue: T,
+  callback: F,
+  wait = 200,
+) {
+  const [value, setValue] = useState(initialValue);
+  const valueRef = useRef(initialValue);
+  const onChange = useAsyncDebounce(callback, wait);
+
+  // sync updated initialValue
+  if (valueRef.current !== initialValue) {
+    valueRef.current = initialValue;
+    if (value !== initialValue) {
+      setValue(initialValue);
+    }
+  }
+
+  const setBoth = (newValue: T) => {
+    setValue(newValue);
+    onChange(newValue);
+  };
+
+  return [value, setBoth] as [typeof value, typeof setValue];
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/useMountedMemo.ts b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/useMountedMemo.ts
new file mode 100644
index 0000000..14636f7
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/useMountedMemo.ts
@@ -0,0 +1,37 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { useLayoutEffect, useRef, useMemo } from 'react';
+
+/**
+ * Execute a memoized callback only when mounted. Execute again when factory updated.
+ * Returns undefined if not mounted yet.
+ */
+export default function useMountedMemo<T>(factory: () => T, deps?: unknown[]): T | undefined {
+  const mounted = useRef<typeof factory>();
+  useLayoutEffect(() => {
+    mounted.current = factory;
+  });
+  return useMemo(() => {
+    if (mounted.current) {
+      return factory();
+    }
+    return undefined;
+    // eslint-disable-next-line react-hooks/exhaustive-deps
+  }, [mounted.current, mounted.current === factory, ...(deps || [])]);
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/Styles.tsx b/superset-frontend/plugins/plugin-chart-table/src/Styles.tsx
new file mode 100644
index 0000000..f04fe4a
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/Styles.tsx
@@ -0,0 +1,77 @@
+import { styled } from '@superset-ui/core';
+
+export default styled.div`
+  table {
+    width: 100%;
+    min-width: auto;
+    max-width: none;
+    margin: 0;
+  }
+
+  th,
+  td {
+    min-width: 4.3em;
+  }
+
+  thead > tr > th {
+    padding-right: 1.4em;
+    position: relative;
+    background: #fff;
+  }
+  th svg {
+    color: #ccc;
+    position: absolute;
+    bottom: 0.6em;
+    right: 0.2em;
+  }
+  th.is-sorted svg {
+    color: #a8a8a8;
+  }
+  .table > tbody > tr:first-of-type > td,
+  .table > tbody > tr:first-of-type > th {
+    border-top: 0;
+  }
+
+  .dt-controls {
+    padding-bottom: 0.65em;
+  }
+  .dt-metric {
+    text-align: right;
+  }
+  .dt-is-null {
+    color: ${({ theme: { colors } }) => colors.grayscale.light1};
+  }
+  td.dt-is-filter {
+    cursor: pointer;
+  }
+  td.dt-is-filter:hover {
+    background-color: linen;
+  }
+  td.dt-is-active-filter,
+  td.dt-is-active-filter:hover {
+    background-color: lightcyan;
+  }
+
+  .dt-global-filter {
+    float: right;
+  }
+
+  .dt-pagination {
+    text-align: right;
+    /* use padding instead of margin so clientHeight can capture it */
+    padding-top: 0.5em;
+  }
+  .dt-pagination .pagination {
+    margin: 0;
+  }
+
+  .pagination > li > span.dt-pagination-ellipsis:focus,
+  .pagination > li > span.dt-pagination-ellipsis:hover {
+    background: #fff;
+  }
+
+  .dt-no-results {
+    text-align: center;
+    padding: 1em 0.6em;
+  }
+`;
diff --git a/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx
new file mode 100644
index 0000000..9230b24
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx
@@ -0,0 +1,301 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { useState, useMemo, useCallback } from 'react';
+import { ColumnInstance, DefaultSortTypes, ColumnWithLooseAccessor } from 'react-table';
+import { extent as d3Extent, max as d3Max } from 'd3-array';
+import { FaSort, FaSortUp as FaSortAsc, FaSortDown as FaSortDesc } from 'react-icons/fa';
+import { t, tn, DataRecordValue, DataRecord, GenericDataType } from '@superset-ui/core';
+
+import { TableChartTransformedProps, DataColumnMeta } from './types';
+import DataTable, {
+  DataTableProps,
+  SearchInputProps,
+  SelectPageSizeRendererProps,
+  SizeOption,
+} from './DataTable';
+
+import Styles from './Styles';
+import formatValue from './utils/formatValue';
+import { PAGE_SIZE_OPTIONS } from './controlPanel';
+
+type ValueRange = [number, number];
+
+/**
+ * Return sortType based on data type
+ */
+function getSortTypeByDataType(dataType: GenericDataType): DefaultSortTypes {
+  if (dataType === GenericDataType.TEMPORAL) {
+    return 'datetime';
+  }
+  if (dataType === GenericDataType.STRING) {
+    return 'alphanumeric';
+  }
+  return 'basic';
+}
+
+/**
+ * Cell background to render columns as horizontal bar chart
+ */
+function cellBar({
+  value,
+  valueRange,
+  colorPositiveNegative = false,
+  alignPositiveNegative,
+}: {
+  value: number;
+  valueRange: ValueRange;
+  colorPositiveNegative: boolean;
+  alignPositiveNegative: boolean;
+}) {
+  const [minValue, maxValue] = valueRange;
+  const r = colorPositiveNegative && value < 0 ? 150 : 0;
+  if (alignPositiveNegative) {
+    const perc = Math.abs(Math.round((value / maxValue) * 100));
+    // The 0.01 to 0.001 is a workaround for what appears to be a
+    // CSS rendering bug on flat, transparent colors
+    return (
+      `linear-gradient(to right, rgba(${r},0,0,0.2), rgba(${r},0,0,0.2) ${perc}%, ` +
+      `rgba(0,0,0,0.01) ${perc}%, rgba(0,0,0,0.001) 100%)`
+    );
+  }
+  const posExtent = Math.abs(Math.max(maxValue, 0));
+  const negExtent = Math.abs(Math.min(minValue, 0));
+  const tot = posExtent + negExtent;
+  const perc1 = Math.round((Math.min(negExtent + value, negExtent) / tot) * 100);
+  const perc2 = Math.round((Math.abs(value) / tot) * 100);
+  // The 0.01 to 0.001 is a workaround for what appears to be a
+  // CSS rendering bug on flat, transparent colors
+  return (
+    `linear-gradient(to right, rgba(0,0,0,0.01), rgba(0,0,0,0.001) ${perc1}%, ` +
+    `rgba(${r},0,0,0.2) ${perc1}%, rgba(${r},0,0,0.2) ${perc1 + perc2}%, ` +
+    `rgba(0,0,0,0.01) ${perc1 + perc2}%, rgba(0,0,0,0.001) 100%)`
+  );
+}
+
+function SortIcon<D extends object>({ column }: { column: ColumnInstance<D> }) {
+  const { isSorted, isSortedDesc } = column;
+  let sortIcon = <FaSort />;
+  if (isSorted) {
+    sortIcon = isSortedDesc ? <FaSortDesc /> : <FaSortAsc />;
+  }
+  return sortIcon;
+}
+
+function SearchInput({ count, value, onChange }: SearchInputProps) {
+  return (
+    <span className="dt-global-filter">
+      {t('Search')}{' '}
+      <input
+        className="form-control input-sm"
+        placeholder={tn('search.num_records', count)}
+        value={value}
+        onChange={onChange}
+      />
+    </span>
+  );
+}
+
+function SelectPageSize({ options, current, onChange }: SelectPageSizeRendererProps) {
+  return (
+    <span className="dt-select-page-size form-inline">
+      {t('page_size.show')}{' '}
+      <select
+        className="form-control input-sm"
+        value={current}
+        onBlur={() => {}}
+        onChange={e => {
+          onChange(Number((e.target as HTMLSelectElement).value));
+        }}
+      >
+        {options.map(option => {
+          const [size, text] = Array.isArray(option) ? option : [option, option];
+          return (
+            <option key={size} value={size}>
+              {text}
+            </option>
+          );
+        })}
+      </select>{' '}
+      {t('page_size.entries')}
+    </span>
+  );
+}
+
+export default function TableChart<D extends DataRecord = DataRecord>(
+  props: TableChartTransformedProps<D> & {
+    sticky?: DataTableProps<D>['sticky'];
+  },
+) {
+  const {
+    height,
+    width,
+    data,
+    columns: columnsMeta,
+    alignPositiveNegative = false,
+    colorPositiveNegative = false,
+    includeSearch = false,
+    pageSize = 0,
+    showCellBars = true,
+    emitFilter = false,
+    sortDesc = false,
+    onChangeFilter,
+    filters: initialFilters,
+    sticky = true, // whether to use sticky header
+  } = props;
+
+  const [filters, setFilters] = useState(initialFilters);
+
+  // only take relevant page size options
+  const pageSizeOptions = useMemo(
+    () => PAGE_SIZE_OPTIONS.filter(([n]) => n <= 2 * data.length) as SizeOption[],
+    [data.length],
+  );
+
+  const getValueRange = useCallback(
+    function getValueRange(key: string) {
+      if (typeof data?.[0]?.[key] === 'number') {
+        const nums = data.map(row => row[key]) as number[];
+        return (alignPositiveNegative
+          ? [0, d3Max(nums.map(Math.abs))]
+          : d3Extent(nums)) as ValueRange;
+      }
+      return null;
+    },
+    [alignPositiveNegative, data],
+  );
+
+  const isActiveFilterValue = useCallback(
+    function isActiveFilterValue(key: string, val: DataRecordValue) {
+      return !!filters && filters[key]?.includes(val);
+    },
+    [filters],
+  );
+
+  const toggleFilter = useCallback(
+    function toggleFilter(key: string, val: DataRecordValue) {
+      const updatedFilters = { ...(filters || {}) };
+      if (filters && isActiveFilterValue(key, val)) {
+        updatedFilters[key] = filters[key].filter((x: DataRecordValue) => x !== val);
+      } else {
+        updatedFilters[key] = [...(filters?.[key] || []), val];
+      }
+      setFilters(updatedFilters);
+      if (onChangeFilter) {
+        onChangeFilter(updatedFilters);
+      }
+    },
+    [filters, isActiveFilterValue, onChangeFilter],
+  );
+
+  const getColumnConfigs = useCallback(
+    (column: DataColumnMeta, i: number): ColumnWithLooseAccessor<D> => {
+      const { key, label, dataType } = column;
+      let className = '';
+      if (dataType === GenericDataType.NUMERIC) {
+        className += ' dt-metric';
+      } else if (emitFilter) {
+        className += ' dt-is-filter';
+      }
+      const valueRange = showCellBars && getValueRange(key);
+      return {
+        id: String(i), // to allow duplicate column keys
+        // must use custom accessor to allow `.` in column names
+        // typing is incorrect in current version of `@types/react-table`
+        // so we ask TS not to check.
+        accessor: ((datum: D) => datum[key]) as never,
+        Cell: ({ value }: { column: ColumnInstance<D>; value: DataRecordValue }) => {
+          const [isHtml, text, customClassName] = formatValue(column, value);
+          const style = {
+            background: valueRange
+              ? cellBar({
+                  value: value as number,
+                  valueRange,
+                  alignPositiveNegative,
+                  colorPositiveNegative,
+                })
+              : undefined,
+          };
+          const html = isHtml ? { __html: text } : undefined;
+          const cellProps = {
+            // show raw number in title in case of numeric values
+            title: typeof value === 'number' ? String(value) : undefined,
+            onClick: emitFilter && !valueRange ? () => toggleFilter(key, value) : undefined,
+            className: `${className} ${customClassName || ''} ${
+              isActiveFilterValue(key, value) ? ' dt-is-active-filter' : ''
+            }`,
+            style,
+          };
+          if (html) {
+            // eslint-disable-next-line react/no-danger
+            return <td {...cellProps} dangerouslySetInnerHTML={html} />;
+          }
+          // If cellProps renderes textContent already, then we don't have to
+          // render `Cell`. This saves some time for large tables.
+          return <td {...cellProps}>{text}</td>;
+        },
+        Header: ({ column: col, title, onClick, style }) => (
+          <th
+            title={title}
+            className={col.isSorted ? `${className || ''} is-sorted` : className}
+            style={style}
+            onClick={onClick}
+          >
+            {label}
+            <SortIcon column={col} />
+          </th>
+        ),
+        sortDescFirst: sortDesc,
+        sortType: getSortTypeByDataType(dataType),
+      };
+    },
+    [
+      alignPositiveNegative,
+      colorPositiveNegative,
+      emitFilter,
+      getValueRange,
+      isActiveFilterValue,
+      showCellBars,
+      sortDesc,
+      toggleFilter,
+    ],
+  );
+
+  const columns = useMemo(() => columnsMeta.map(getColumnConfigs), [columnsMeta, getColumnConfigs]);
+
+  return (
+    <Styles>
+      <DataTable<D>
+        columns={columns}
+        data={data}
+        tableClassName="table table-striped table-condensed"
+        pageSize={pageSize}
+        pageSizeOptions={pageSizeOptions}
+        width={width}
+        height={height}
+        // 9 page items in > 340px works well even for 100+ pages
+        maxPageItemCount={width > 340 ? 9 : 7}
+        noResults={(filter: string) => t(filter ? 'No matching records found' : 'No records found')}
+        searchInput={includeSearch && SearchInput}
+        selectPageSize={pageSize !== null && SelectPageSize}
+        // not in use in Superset, but needed for unit tests
+        sticky={sticky}
+      />
+    </Styles>
+  );
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/buildQuery.ts b/superset-frontend/plugins/plugin-chart-table/src/buildQuery.ts
new file mode 100644
index 0000000..3fafdb7
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/buildQuery.ts
@@ -0,0 +1,97 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  buildQueryContext,
+  getMetricLabel,
+  QueryMode,
+  removeDuplicates,
+  ensureIsArray,
+} from '@superset-ui/core';
+import { PostProcessingRule } from '@superset-ui/core/src/query/types/PostProcessing';
+import { TableChartFormData } from './types';
+
+/**
+ * Infer query mode from form data. If `all_columns` is set, then raw records mode,
+ * otherwise defaults to aggregation mode.
+ *
+ * The same logic is used in `controlPanel` with control values as well.
+ */
+export function getQueryMode(formData: TableChartFormData) {
+  const { query_mode: mode } = formData;
+  if (mode === QueryMode.aggregate || mode === QueryMode.raw) {
+    return mode;
+  }
+  const rawColumns = formData?.all_columns;
+  const hasRawColumns = rawColumns && rawColumns.length > 0;
+  return hasRawColumns ? QueryMode.raw : QueryMode.aggregate;
+}
+
+export default function buildQuery(formData: TableChartFormData) {
+  const { percent_metrics: percentMetrics, order_desc: orderDesc = false } = formData;
+  const queryMode = getQueryMode(formData);
+  const sortByMetric = ensureIsArray(formData.timeseries_limit_metric)[0];
+  let formDataCopy = formData;
+
+  // never include time in raw records mode
+  if (queryMode === QueryMode.raw) {
+    formDataCopy = {
+      ...formData,
+      include_time: false,
+    };
+  }
+
+  return buildQueryContext(formDataCopy, baseQueryObject => {
+    let { metrics, orderby } = baseQueryObject;
+    let postProcessing: PostProcessingRule[] = [];
+
+    if (queryMode === QueryMode.aggregate) {
+      // orverride orderby with timeseries metric when in aggregation mode
+      if (sortByMetric) {
+        orderby = [[sortByMetric, !orderDesc]];
+      } else if (metrics?.length > 0) {
+        // default to ordering by first metric in descending order
+        // when no "sort by" metric is set (regargless if "SORT DESC" is set to true)
+        orderby = [[metrics[0], false]];
+      }
+      // add postprocessing for percent metrics only when in aggregation mode
+      if (percentMetrics && percentMetrics.length > 0) {
+        const percentMetricLabels = percentMetrics.map(getMetricLabel);
+        metrics = removeDuplicates(metrics.concat(percentMetrics), getMetricLabel);
+        postProcessing = [
+          {
+            operation: 'contribution',
+            options: {
+              columns: percentMetricLabels,
+              rename_columns: percentMetricLabels.map(x => `%${x}`),
+            },
+          },
+        ];
+      }
+    }
+
+    return [
+      {
+        ...baseQueryObject,
+        orderby,
+        metrics,
+        post_processing: postProcessing,
+      },
+    ];
+  });
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx
new file mode 100644
index 0000000..ba22c45
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx
@@ -0,0 +1,320 @@
+/* eslint-disable camelcase */
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import {
+  t,
+  validateNonEmpty,
+  addLocaleData,
+  smartDateFormatter,
+  QueryMode,
+  QueryFormColumn,
+} from '@superset-ui/core';
+import {
+  formatSelectOptions,
+  D3_TIME_FORMAT_OPTIONS,
+  ControlConfig,
+  ColumnOption,
+  ControlStateMapping,
+  ControlPanelConfig,
+  ControlPanelsContainerProps,
+  sharedControls,
+  sections,
+} from '@superset-ui/chart-controls';
+
+import i18n from './i18n';
+
+addLocaleData(i18n);
+
+export const PAGE_SIZE_OPTIONS = formatSelectOptions<number>([
+  [0, t('page_size.all')],
+  10,
+  20,
+  50,
+  100,
+  200,
+]);
+
+const QueryModeLabel = {
+  [QueryMode.aggregate]: t('Aggregate'),
+  [QueryMode.raw]: t('Raw Records'),
+};
+
+function getQueryMode(controls: ControlStateMapping): QueryMode {
+  const mode = controls?.query_mode?.value;
+  if (mode === QueryMode.aggregate || mode === QueryMode.raw) {
+    return mode as QueryMode;
+  }
+  const rawColumns: QueryFormColumn[] | undefined = controls?.all_columns?.value;
+  const hasRawColumns = rawColumns && rawColumns.length > 0;
+  return hasRawColumns ? QueryMode.raw : QueryMode.aggregate;
+}
+
+/**
+ * Visibility check
+ */
+function isQueryMode(mode: QueryMode) {
+  return ({ controls }: ControlPanelsContainerProps) => getQueryMode(controls) === mode;
+}
+
+const isAggMode = isQueryMode(QueryMode.aggregate);
+const isRawMode = isQueryMode(QueryMode.raw);
+
+const queryMode: ControlConfig<'RadioButtonControl'> = {
+  type: 'RadioButtonControl',
+  label: t('Query Mode'),
+  default: null,
+  options: [
+    {
+      label: QueryModeLabel[QueryMode.aggregate],
+      value: QueryMode.aggregate,
+    },
+    {
+      label: QueryModeLabel[QueryMode.raw],
+      value: QueryMode.raw,
+    },
+  ],
+  mapStateToProps: ({ controls }) => ({ value: getQueryMode(controls) }),
+};
+
+const all_columns: typeof sharedControls.groupby = {
+  type: 'SelectControl',
+  label: t('Columns'),
+  description: t('Columns to display'),
+  multi: true,
+  freeForm: true,
+  allowAll: true,
+  commaChoosesOption: false,
+  default: [],
+  optionRenderer: c => <ColumnOption showType column={c} />,
+  valueRenderer: c => <ColumnOption column={c} />,
+  valueKey: 'column_name',
+  mapStateToProps: ({ datasource, controls }) => ({
+    options: datasource?.columns || [],
+    queryMode: getQueryMode(controls),
+  }),
+  visibility: isRawMode,
+};
+
+const percent_metrics: typeof sharedControls.metrics = {
+  type: 'MetricsControl',
+  label: t('Percentage Metrics'),
+  description: t(
+    'Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.',
+  ),
+  multi: true,
+  visibility: isAggMode,
+  mapStateToProps: ({ datasource, controls }) => ({
+    columns: datasource?.columns || [],
+    savedMetrics: datasource?.metrics || [],
+    datasourceType: datasource?.type,
+    queryMode: getQueryMode(controls),
+  }),
+  default: [],
+  validators: [],
+};
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyTimeseriesTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'query_mode',
+            config: queryMode,
+          },
+        ],
+        [
+          {
+            name: 'groupby',
+            override: {
+              visibility: isAggMode,
+            },
+          },
+        ],
+        [
+          {
+            name: 'metrics',
+            override: {
+              validators: [],
+              visibility: isAggMode,
+            },
+          },
+          {
+            name: 'all_columns',
+            config: all_columns,
+          },
+        ],
+        [
+          {
+            name: 'percent_metrics',
+            config: percent_metrics,
+          },
+        ],
+        [
+          {
+            name: 'timeseries_limit_metric',
+            override: {
+              visibility: isAggMode,
+            },
+          },
+          {
+            name: 'order_by_cols',
+            config: {
+              type: 'SelectControl',
+              label: t('Ordering'),
+              description: t('Order results by selected columns'),
+              multi: true,
+              default: [],
+              mapStateToProps: ({ datasource }) => ({
+                choices: datasource?.order_by_choices || [],
+              }),
+              visibility: isRawMode,
+            },
+          },
+        ],
+        ['row_limit'],
+        [
+          {
+            name: 'include_time',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Include Time'),
+              description: t(
+                'Whether to include the time granularity as defined in the time section',
+              ),
+              default: false,
+              visibility: isAggMode,
+            },
+          },
+          {
+            name: 'order_desc',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Sort Descending'),
+              default: true,
+              description: t('Whether to sort descending or ascending'),
+              visibility: isAggMode,
+            },
+          },
+        ],
+        ['adhoc_filters'],
+      ],
+    },
+    {
+      label: t('Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'table_timestamp_format',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Table Timestamp Format'),
+              default: smartDateFormatter.id,
+              renderTrigger: true,
+              validators: [validateNonEmpty],
+              clearable: false,
+              choices: D3_TIME_FORMAT_OPTIONS,
+              description: t('Timestamp Format'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'page_length',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              renderTrigger: true,
+              label: t('Page Length'),
+              default: null,
+              choices: PAGE_SIZE_OPTIONS,
+              description: t('Rows per page, 0 means no pagination'),
+            },
+          },
+          null,
+        ],
+        [
+          {
+            name: 'include_search',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Search Box'),
+              renderTrigger: true,
+              default: false,
+              description: t('Whether to include a client-side search box'),
+            },
+          },
+          {
+            name: 'table_filter',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Emit Filter Events'),
+              renderTrigger: true,
+              default: false,
+              description: t('Whether to apply filter to dashboards when table cells are clicked'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'align_pn',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Align +/-'),
+              renderTrigger: true,
+              default: false,
+              description: t('Whether to align the background chart for +/- values'),
+            },
+          },
+          {
+            name: 'color_pn',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Color +/-'),
+              renderTrigger: true,
+              default: true,
+              description: t('Whether to color +/- values'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'show_cell_bars',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Show Cell Bars'),
+              renderTrigger: true,
+              default: true,
+              description: t('Enable to display bar chart background elements in table columns'),
+            },
+          },
+          null,
+        ],
+      ],
+    },
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/plugin-chart-table/src/i18n.ts b/superset-frontend/plugins/plugin-chart-table/src/i18n.ts
new file mode 100644
index 0000000..2d12b11
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/i18n.ts
@@ -0,0 +1,41 @@
+import { Locale } from '@superset-ui/core';
+
+const en = {
+  'Query Mode': [''],
+  Aggregate: [''],
+  'Raw Records': [''],
+  'Emit Filter Events': [''],
+  'Show Cell Bars': [''],
+  'page_size.show': ['Show'],
+  'page_size.all': ['All'],
+  'page_size.entries': ['entries'],
+  'search.num_records': ['%s record', '%s records...'],
+};
+
+const translations: Partial<Record<Locale, typeof en>> = {
+  en,
+  fr: {
+    'Query Mode': [''],
+    Aggregate: [''],
+    'Raw Records': [''],
+    'Emit Filter Events': [''],
+    'Show Cell Bars': [''],
+    'page_size.show': ['Afficher'],
+    'page_size.all': ['tous'],
+    'page_size.entries': ['entrées'],
+    'search.num_records': ['%s enregistrement', '%s enregistrements...'],
+  },
+  zh: {
+    'Query Mode': ['查询模式'],
+    Aggregate: ['分组聚合'],
+    'Raw Records': ['原始数据'],
+    'Emit Filter Events': ['关联看板过滤器'],
+    'Show Cell Bars': ['为指标添加条状图背景'],
+    'page_size.show': ['每页显示'],
+    'page_size.all': ['全部'],
+    'page_size.entries': ['条'],
+    'search.num_records': ['%s条记录...'],
+  },
+};
+
+export default translations;
diff --git a/superset-frontend/plugins/plugin-chart-table/src/images/thumbnail.png b/superset-frontend/plugins/plugin-chart-table/src/images/thumbnail.png
new file mode 100644
index 0000000..296702c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-chart-table/src/images/thumbnailLarge.png b/superset-frontend/plugins/plugin-chart-table/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..133d280
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-chart-table/src/index.ts b/superset-frontend/plugins/plugin-chart-table/src/index.ts
new file mode 100644
index 0000000..ff47298
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/index.ts
@@ -0,0 +1,47 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+import controlPanel from './controlPanel';
+import buildQuery from './buildQuery';
+import { TableChartFormData, TableChartProps } from './types';
+
+// must export something for the module to be exist in dev mode
+export { default as __hack__ } from './types';
+export * from './types';
+
+const metadata = new ChartMetadata({
+  canBeAnnotationTypes: ['EVENT', 'INTERVAL'],
+  description: '',
+  name: t('Table'),
+  thumbnail,
+});
+
+export default class TableChartPlugin extends ChartPlugin<TableChartFormData, TableChartProps> {
+  constructor() {
+    super({
+      loadChart: () => import('./TableChart'),
+      metadata,
+      transformProps,
+      controlPanel,
+      buildQuery,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts b/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts
new file mode 100644
index 0000000..f08bbad
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts
@@ -0,0 +1,208 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import memoizeOne from 'memoize-one';
+import {
+  DataRecord,
+  getNumberFormatter,
+  NumberFormats,
+  getTimeFormatter,
+  smartDateFormatter,
+  getTimeFormatterForGranularity,
+  TimeFormatter,
+  TimeFormats,
+  GenericDataType,
+  getMetricLabel,
+} from '@superset-ui/core';
+
+import isEqualColumns from './utils/isEqualColumns';
+import DateWithFormatter from './utils/DateWithFormatter';
+import { TableChartProps, TableChartTransformedProps, DataColumnMeta } from './types';
+
+const { PERCENT_3_POINT } = NumberFormats;
+const { DATABASE_DATETIME } = TimeFormats;
+const TIME_COLUMN = '__timestamp';
+
+function isTimeColumn(key: string) {
+  return key === TIME_COLUMN;
+}
+
+function isNumeric(key: string, data: DataRecord[] = []) {
+  return data.every(x => x[key] === null || x[key] === undefined || typeof x[key] === 'number');
+}
+
+const processDataRecords = memoizeOne(function processDataRecords(
+  data: DataRecord[] | undefined,
+  columns: DataColumnMeta[],
+) {
+  if (!data || !data[0]) {
+    return data || [];
+  }
+  const timeColumns = columns.filter(column => column.dataType === GenericDataType.TEMPORAL);
+
+  if (timeColumns.length > 0) {
+    return data.map(x => {
+      const datum = { ...x };
+      timeColumns.forEach(({ key, formatter }) => {
+        // Convert datetime with a custom date class so we can use `String(...)`
+        // formatted value for global search, and `date.getTime()` for sorting.
+        datum[key] = new DateWithFormatter(x[key], { formatter: formatter as TimeFormatter });
+      });
+      return datum;
+    });
+  }
+  return data;
+});
+
+const processColumns = memoizeOne(function processColumns(props: TableChartProps) {
+  const {
+    datasource: { columnFormats, verboseMap },
+    rawFormData: {
+      table_timestamp_format: tableTimestampFormat,
+      time_grain_sqla: granularity,
+      metrics: metrics_,
+      percent_metrics: percentMetrics_,
+    },
+    queriesData,
+  } = props;
+  const { data: records, colnames, coltypes } = queriesData[0] || {};
+  // convert `metrics` and `percentMetrics` to the key names in `data.records`
+  const metrics = (metrics_ ?? []).map(getMetricLabel);
+  const rawPercentMetrics = (percentMetrics_ ?? []).map(getMetricLabel);
+  // column names for percent metrics always starts with a '%' sign.
+  const percentMetrics = rawPercentMetrics.map((x: string) => `%${x}`);
+  const metricsSet = new Set(metrics);
+  const percentMetricsSet = new Set(percentMetrics);
+  const rawPercentMetricsSet = new Set(rawPercentMetrics);
+
+  const columns: DataColumnMeta[] = (colnames || [])
+    .filter(
+      key =>
+        // if a metric was only added to percent_metrics, they should not show up in the table.
+        !(rawPercentMetricsSet.has(key) && !metricsSet.has(key)),
+    )
+    .map((key: string, i) => {
+      const label = verboseMap?.[key] || key;
+      const dataType = coltypes[i];
+      // fallback to column level formats defined in datasource
+      const format = columnFormats?.[key];
+      // for the purpose of presentation, only numeric values are treated as metrics
+      const isMetric = metricsSet.has(key) && isNumeric(key, records);
+      const isPercentMetric = percentMetricsSet.has(key);
+      const isTime = dataType === GenericDataType.TEMPORAL;
+      let formatter;
+      if (isTime) {
+        const timeFormat = format || tableTimestampFormat;
+        // When format is "Adaptive Formatting" (smart_date)
+        if (timeFormat === smartDateFormatter.id) {
+          if (isTimeColumn(key)) {
+            // time column use formats based on granularity
+            formatter = getTimeFormatterForGranularity(granularity);
+          } else if (format) {
+            // other columns respect the column-specific format
+            formatter = getTimeFormatter(format);
+          } else if (isNumeric(key, records)) {
+            // if column is numeric values, it is considered a timestamp64
+            formatter = getTimeFormatter(DATABASE_DATETIME);
+          } else {
+            // if no column-specific format, print cell as is
+            formatter = String;
+          }
+        } else if (timeFormat) {
+          formatter = getTimeFormatter(timeFormat);
+        }
+      } else if (isMetric) {
+        formatter = getNumberFormatter(format);
+      } else if (isPercentMetric) {
+        // percent metrics have a default format
+        formatter = getNumberFormatter(format || PERCENT_3_POINT);
+      }
+      return {
+        key,
+        label,
+        dataType,
+        formatter,
+      };
+    });
+  return [
+    metrics,
+    percentMetrics,
+    columns,
+  ] as [typeof metrics, typeof percentMetrics, typeof columns];
+}, isEqualColumns);
+
+/**
+ * Automatically set page size based on number of cells.
+ */
+const getPageSize = (
+  pageSize: number | string | null | undefined,
+  numRecords: number,
+  numColumns: number,
+) => {
+  if (typeof pageSize === 'number') {
+    // NaN is also has typeof === 'number'
+    return pageSize || 0;
+  }
+  if (typeof pageSize === 'string') {
+    return Number(pageSize) || 0;
+  }
+  // when pageSize not set, automatically add pagination if too many records
+  return numRecords * numColumns > 5000 ? 200 : 0;
+};
+
+export default function transformProps(chartProps: TableChartProps): TableChartTransformedProps {
+  const {
+    height,
+    width,
+    rawFormData: formData,
+    queriesData,
+    initialValues: filters = {},
+    hooks: { onAddFilter: onChangeFilter },
+  } = chartProps;
+
+  const {
+    align_pn: alignPositiveNegative = true,
+    color_pn: colorPositiveNegative = true,
+    show_cell_bars: showCellBars = true,
+    include_search: includeSearch = false,
+    page_length: pageSize,
+    table_filter: tableFilter,
+    order_desc: sortDesc = false,
+  } = formData;
+
+  const [metrics, percentMetrics, columns] = processColumns(chartProps);
+  const data = processDataRecords(queriesData?.[0]?.data, columns);
+
+  return {
+    height,
+    width,
+    data,
+    columns,
+    metrics,
+    percentMetrics,
+    alignPositiveNegative,
+    colorPositiveNegative,
+    showCellBars,
+    sortDesc,
+    includeSearch,
+    pageSize: getPageSize(pageSize, data.length, columns.length),
+    filters,
+    emitFilter: tableFilter === true,
+    onChangeFilter,
+  };
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/types.ts b/superset-frontend/plugins/plugin-chart-table/src/types.ts
new file mode 100644
index 0000000..1ab55f1
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/types.ts
@@ -0,0 +1,95 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  NumberFormatter,
+  TimeFormatter,
+  TimeGranularity,
+  QueryFormMetric,
+  ChartProps,
+  DataRecord,
+  DataRecordValue,
+  DataRecordFilters,
+  GenericDataType,
+  QueryMode,
+  ChartDataResponseResult,
+  QueryFormData,
+} from '@superset-ui/core';
+
+export type CustomFormatter = (value: DataRecordValue) => string;
+
+export interface DataColumnMeta {
+  // `key` is what is called `label` in the input props
+  key: string;
+  // `label` is verbose column name used for rendering
+  label: string;
+  dataType: GenericDataType;
+  formatter?: TimeFormatter | NumberFormatter | CustomFormatter;
+}
+
+export interface TableChartData {
+  records: DataRecord[];
+  columns: string[];
+}
+
+export type TableChartFormData = QueryFormData & {
+  align_pn?: boolean;
+  color_pn?: boolean;
+  include_time?: boolean;
+  include_search?: boolean;
+  query_mode?: QueryMode;
+  page_length?: string | number | null; // null means auto-paginate
+  metrics?: QueryFormMetric[] | null;
+  percent_metrics?: QueryFormMetric[] | null;
+  timeseries_limit_metric?: QueryFormMetric[] | QueryFormMetric | null;
+  groupby?: QueryFormMetric[] | null;
+  all_columns?: QueryFormMetric[] | null;
+  order_desc?: boolean;
+  show_cell_bars?: boolean;
+  table_timestamp_format?: string;
+  table_filter?: boolean;
+  time_grain_sqla?: TimeGranularity;
+};
+
+export interface TableChartProps extends ChartProps {
+  rawFormData: TableChartFormData;
+  queriesData: ChartDataResponseResult[];
+}
+
+export interface TableChartTransformedProps<D extends DataRecord = DataRecord> {
+  height: number;
+  width: number;
+  data: D[];
+  columns: DataColumnMeta[];
+  metrics?: (keyof D)[];
+  percentMetrics?: (keyof D)[];
+  pageSize?: number;
+  showCellBars?: boolean;
+  sortDesc?: boolean;
+  includeSearch?: boolean;
+  alignPositiveNegative?: boolean;
+  colorPositiveNegative?: boolean;
+  tableTimestampFormat?: string;
+  // These are dashboard filters, don't be confused with in-chart search filter
+  // enabled by `includeSearch`
+  filters?: DataRecordFilters;
+  emitFilter?: boolean;
+  onChangeFilter?: ChartProps['hooks']['onAddFilter'];
+}
+
+export default {};
diff --git a/superset-frontend/plugins/plugin-chart-table/src/utils/DateWithFormatter.ts b/superset-frontend/plugins/plugin-chart-table/src/utils/DateWithFormatter.ts
new file mode 100644
index 0000000..9ffb3ca
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/utils/DateWithFormatter.ts
@@ -0,0 +1,54 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { DataRecordValue, TimeFormatFunction } from '@superset-ui/core';
+
+const REGEXP_TIMESTAMP_NO_TIMEZONE = /T(\d{2}:){2}\d{2}$/;
+
+/**
+ * Extended Date object with a custom formatter, and retains the original input
+ * when the formatter is simple `String(..)`.
+ */
+export default class DateWithFormatter extends Date {
+  formatter: TimeFormatFunction;
+
+  input: DataRecordValue;
+
+  constructor(
+    input: DataRecordValue,
+    { formatter = String, forceUTC = true }: { formatter?: TimeFormatFunction; forceUTC?: boolean },
+  ) {
+    let value = input;
+    // assuming timestamps without a timezone is in UTC time
+    if (forceUTC && typeof value === 'string' && REGEXP_TIMESTAMP_NO_TIMEZONE.test(value)) {
+      value = `${value}Z`;
+    }
+
+    super(value as string);
+
+    this.input = input;
+    this.formatter = formatter;
+  }
+
+  toString(): string {
+    if (this.formatter === String) {
+      return String(this.input);
+    }
+    return this.formatter ? this.formatter(this) : Date.toString.call(this);
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/utils/extent.ts b/superset-frontend/plugins/plugin-chart-table/src/utils/extent.ts
new file mode 100644
index 0000000..d07453d
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/utils/extent.ts
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function extent<T = number | string | Date | undefined | null>(values: T[]) {
+  let min: T | undefined;
+  let max: T | undefined;
+  // eslint-disable-next-line no-restricted-syntax
+  for (const value of values) {
+    if (value !== null) {
+      if (min === undefined) {
+        if (value !== undefined) {
+          min = value;
+          max = value;
+        }
+      } else {
+        if (min > value) {
+          min = value;
+        }
+        if (max !== undefined) {
+          if (max < value) {
+            max = value;
+          }
+        }
+      }
+    }
+  }
+  return [min, max];
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/utils/formatValue.ts b/superset-frontend/plugins/plugin-chart-table/src/utils/formatValue.ts
new file mode 100644
index 0000000..09a665d
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/utils/formatValue.ts
@@ -0,0 +1,56 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { FilterXSS, getDefaultWhiteList } from 'xss';
+import { DataRecordValue } from '@superset-ui/core';
+import { DataColumnMeta } from '../types';
+
+const xss = new FilterXSS({
+  whiteList: {
+    ...getDefaultWhiteList(),
+    span: ['style', 'class', 'title'],
+    div: ['style', 'class'],
+    a: ['style', 'class', 'href', 'title', 'target'],
+    img: ['style', 'class', 'src', 'alt', 'title', 'width', 'height'],
+  },
+  stripIgnoreTag: true,
+  css: false,
+});
+
+function isProbablyHTML(text: string) {
+  return /<[^>]+>/.test(text);
+}
+/**
+ * Format text for cell value.
+ */
+export default function formatValue(
+  { formatter }: DataColumnMeta,
+  value: DataRecordValue,
+): [boolean, string, string | null] {
+  if (value === null) {
+    return [false, 'N/A', 'dt-is-null'];
+  }
+  if (formatter) {
+    // in case percent metric can specify percent format in the future
+    return [false, formatter(value as number), null];
+  }
+  if (typeof value === 'string') {
+    return isProbablyHTML(value) ? [true, xss.process(value), null] : [false, value, null];
+  }
+  return [false, value.toString(), null];
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/utils/isEqualArray.ts b/superset-frontend/plugins/plugin-chart-table/src/utils/isEqualArray.ts
new file mode 100644
index 0000000..717f0f2
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/utils/isEqualArray.ts
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export default function isEqualArray<T extends unknown[] | undefined | null>(arrA: T, arrB: T) {
+  return (
+    arrA === arrB ||
+    (!arrA && !arrB) ||
+    (arrA && arrB && arrA.length === arrB.length && arrA.every((x, i) => x === arrB[i]))
+  );
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/utils/isEqualColumns.ts b/superset-frontend/plugins/plugin-chart-table/src/utils/isEqualColumns.ts
new file mode 100644
index 0000000..44c0621
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/utils/isEqualColumns.ts
@@ -0,0 +1,34 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import isEqualArray from './isEqualArray';
+import { TableChartProps } from '../types';
+
+export default function isEqualColumns(propsA: TableChartProps[], propsB: TableChartProps[]) {
+  const a = propsA[0];
+  const b = propsB[0];
+  return (
+    a.datasource.columnFormats === b.datasource.columnFormats &&
+    a.datasource.verboseMap === b.datasource.verboseMap &&
+    a.formData.tableTimestampFormat === b.formData.tableTimestampFormat &&
+    a.formData.timeGrainSqla === b.formData.timeGrainSqla &&
+    isEqualArray(a.formData.metrics, b.formData.metrics) &&
+    isEqualArray(a.queriesData?.[0]?.colnames, b.queriesData?.[0]?.colnames) &&
+    isEqualArray(a.queriesData?.[0]?.coltypes, b.queriesData?.[0]?.coltypes)
+  );
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/test/TableChart.test.tsx b/superset-frontend/plugins/plugin-chart-table/test/TableChart.test.tsx
new file mode 100644
index 0000000..7a5071b
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/test/TableChart.test.tsx
@@ -0,0 +1,101 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React from 'react';
+import { CommonWrapper } from 'enzyme';
+import { mount } from '../../../test/enzyme';
+import TableChart from '../src/TableChart';
+import transformProps from '../src/transformProps';
+import DateWithFormatter from '../src/utils/DateWithFormatter';
+import testData from './testData';
+
+describe('plugin-chart-table', () => {
+  describe('transformProps', () => {
+    it('should parse pageLength to pageSize', () => {
+      expect(transformProps(testData.basic).pageSize).toBe(20);
+      expect(
+        transformProps({
+          ...testData.basic,
+          rawFormData: { ...testData.basic.rawFormData, page_length: '20' },
+        }).pageSize,
+      ).toBe(20);
+      expect(
+        transformProps({
+          ...testData.basic,
+          rawFormData: { ...testData.basic.rawFormData, page_length: '' },
+        }).pageSize,
+      ).toBe(0);
+    });
+
+    it('should memoize data records', () => {
+      expect(transformProps(testData.basic).data).toBe(transformProps(testData.basic).data);
+    });
+
+    it('should memoize columns meta', () => {
+      expect(transformProps(testData.basic).columns).toBe(
+        transformProps({
+          ...testData.basic,
+          rawFormData: { ...testData.basic.rawFormData, pageLength: null },
+        }).columns,
+      );
+    });
+
+    it('should format timestamp', () => {
+      // eslint-disable-next-line no-underscore-dangle
+      const parsedDate = transformProps(testData.basic).data[0].__timestamp as DateWithFormatter;
+      expect(String(parsedDate)).toBe('2020-01-01 12:34:56');
+      expect(parsedDate.getTime()).toBe(1577882096000);
+    });
+  });
+
+  describe('TableChart', () => {
+    let wrap: CommonWrapper; // the ReactDataTable wraper
+    let tree: Cheerio;
+
+    it('render basic data', () => {
+      wrap = mount(<TableChart {...transformProps(testData.basic)} sticky={false} />);
+      tree = wrap.render(); // returns a CheerioWrapper with jQuery-like API
+      const cells = tree.find('td');
+      expect(cells).toHaveLength(8);
+      expect(cells.eq(0).text()).toEqual('2020-01-01 12:34:56');
+      expect(cells.eq(1).text()).toEqual('Michael');
+      // number is not in `metrics` list, so it should output raw value
+      // (in real world Superset, this would mean the column is used in GROUP BY)
+      expect(cells.eq(2).text()).toEqual('2467063');
+      // should not render column with `.` in name as `undefined`
+      expect(cells.eq(3).text()).toEqual('foo');
+      expect(cells.eq(6).text()).toEqual('2467');
+    });
+
+    it('render advanced data', () => {
+      wrap = mount(<TableChart {...transformProps(testData.advanced)} sticky={false} />);
+      tree = wrap.render();
+      // should successfull rerender with new props
+      const cells = tree.find('td');
+      expect(tree.find('th').eq(1).text()).toEqual('Sum of Num');
+      expect(cells.eq(2).text()).toEqual('12.346%');
+      expect(cells.eq(4).text()).toEqual('2.47k');
+    });
+
+    it('render empty data', () => {
+      wrap.setProps({ ...transformProps(testData.empty), sticky: false });
+      tree = wrap.render();
+      expect(tree.text()).toContain('No records found');
+    });
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-table/test/buildQuery.test.ts b/superset-frontend/plugins/plugin-chart-table/test/buildQuery.test.ts
new file mode 100644
index 0000000..e10c1bb
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/test/buildQuery.test.ts
@@ -0,0 +1,73 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { QueryMode } from '@superset-ui/core';
+import buildQuery from '../src/buildQuery';
+import { TableChartFormData } from '../src/types';
+
+const basicFormData: TableChartFormData = {
+  viz_type: 'table',
+  datasource: '11__table',
+};
+
+describe('plugin-chart-table', () => {
+  describe('buildQuery', () => {
+    it('should add post-processing in aggregate mode', () => {
+      const query = buildQuery({
+        ...basicFormData,
+        query_mode: QueryMode.aggregate,
+        metrics: ['aaa'],
+        percent_metrics: ['pct_abc'],
+      }).queries[0];
+      expect(query.metrics).toEqual(['aaa', 'pct_abc']);
+      expect(query.post_processing).toEqual([
+        {
+          operation: 'contribution',
+          options: {
+            columns: ['pct_abc'],
+            rename_columns: ['%pct_abc'],
+          },
+        },
+      ]);
+    });
+
+    it('should not add post-processing when there is not percent metric', () => {
+      const query = buildQuery({
+        ...basicFormData,
+        query_mode: QueryMode.aggregate,
+        metrics: ['aaa'],
+        percent_metrics: [],
+      }).queries[0];
+      expect(query.metrics).toEqual(['aaa']);
+      expect(query.post_processing).toEqual([]);
+    });
+
+    it('should not add post-processing in raw records mode', () => {
+      const query = buildQuery({
+        ...basicFormData,
+        query_mode: QueryMode.raw,
+        metrics: ['aaa'],
+        columns: ['rawcol'],
+        percent_metrics: ['ccc'],
+      }).queries[0];
+      expect(query.metrics).toEqual([]);
+      expect(query.columns).toEqual(['rawcol']);
+      expect(query.post_processing).toEqual([]);
+    });
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-table/test/testData.ts b/superset-frontend/plugins/plugin-chart-table/test/testData.ts
new file mode 100644
index 0000000..43d411a
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/test/testData.ts
@@ -0,0 +1,161 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import {
+  ChartDataResponseResult,
+  ChartProps,
+  DatasourceType,
+  GenericDataType,
+} from '@superset-ui/core';
+import { TableChartProps, TableChartFormData } from '../src/types';
+
+const basicFormData: TableChartFormData = {
+  datasource: '1__abc',
+  viz_type: 'table',
+  align_pn: false,
+  color_pn: false,
+  show_cell_bars: true,
+  include_search: false,
+  order_desc: true,
+  page_length: 20,
+  metrics: [],
+  percent_metrics: null,
+  timeseries_limit_metric: '',
+  table_filter: false,
+  table_timestamp_format: '%Y-%m-%d %H:%M:%S',
+};
+
+const basicChartProps = {
+  width: 200,
+  height: 500,
+  datasource: {
+    id: 0,
+    name: '',
+    type: DatasourceType.Table,
+    columns: [],
+    metrics: [],
+    columnFormats: {},
+    verboseMap: {},
+  },
+  hooks: {},
+  initialValues: {},
+  queriesData: [
+    {
+      data: {
+        columns: [],
+        records: [],
+      },
+    },
+  ],
+  formData: basicFormData,
+};
+
+const basicQueryResult: ChartDataResponseResult = {
+  annotation_data: null,
+  cache_key: null,
+  cache_dttm: null,
+  cache_timeout: null,
+  data: [],
+  colnames: [],
+  coltypes: [],
+  error: null,
+  is_cached: false,
+  query: 'SELECT ...',
+  rowcount: 100,
+  stacktrace: null,
+  status: 'success',
+};
+
+/**
+ * Basic data input
+ */
+const basic: TableChartProps = {
+  ...new ChartProps(basicChartProps),
+  queriesData: [
+    {
+      ...basicQueryResult,
+      colnames: ['__timestamp', 'name', 'sum__num', 'abc.com'],
+      coltypes: [
+        GenericDataType.TEMPORAL,
+        GenericDataType.STRING,
+        GenericDataType.NUMERIC,
+        GenericDataType.STRING,
+      ],
+      data: [
+        {
+          __timestamp: '2020-01-01T12:34:56',
+          name: 'Michael',
+          sum__num: 2467063,
+          '%pct_nice': 0.123456,
+          'abc.com': 'foo',
+        },
+        {
+          __timestamp: 1585932584140,
+          name: 'Joe',
+          sum__num: 2467,
+          '%pct_nice': 0.00001,
+          'abc.com': 'bar',
+        },
+      ],
+    },
+  ],
+};
+
+/**
+ * Advanced data input with
+ *   - verbose map
+ *   - metric columns
+ */
+const advanced: TableChartProps = {
+  ...basic,
+  datasource: {
+    ...basic.datasource,
+    verboseMap: {
+      sum__num: 'Sum of Num',
+    },
+  },
+  rawFormData: {
+    ...basicFormData,
+    metrics: ['sum__num'],
+    percent_metrics: ['pct_nice'],
+  },
+  queriesData: [
+    {
+      ...basicQueryResult,
+      colnames: ['name', 'sum__num', '%pct_nice'],
+      coltypes: [GenericDataType.STRING, GenericDataType.NUMERIC, GenericDataType.NUMERIC],
+      data: [...(basic.queriesData[0].data || [])],
+    },
+  ],
+};
+
+const empty = {
+  ...advanced,
+  queriesData: [
+    {
+      ...advanced.queriesData[0],
+      data: [],
+    },
+  ],
+};
+
+export default {
+  basic,
+  advanced,
+  empty,
+};
diff --git a/superset-frontend/plugins/plugin-chart-table/test/tsconfig.json b/superset-frontend/plugins/plugin-chart-table/test/tsconfig.json
new file mode 100644
index 0000000..e91b021
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "../../../"
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/plugin-chart-table/tsconfig.json b/superset-frontend/plugins/plugin-chart-table/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/plugin-chart-table/types/external.d.ts b/superset-frontend/plugins/plugin-chart-table/types/external.d.ts
new file mode 100644
index 0000000..bda1325
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/types/external.d.ts
@@ -0,0 +1,2 @@
+declare module '*.png';
+declare module 'regenerator-runtime/runtime';
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/README.md b/superset-frontend/plugins/plugin-chart-word-cloud/README.md
new file mode 100644
index 0000000..ed585f9
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/README.md
@@ -0,0 +1,33 @@
+## @superset-ui/plugin-chart-word-cloud
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-word-cloud.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-word-cloud)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-plugin-chart-word-cloud&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-plugin-chart-word-cloud)
+
+This plugin provides Word Cloud for Superset.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import WordCloudChartPlugin from '@superset-ui/plugin-chart-word-cloud';
+
+new WordCloudChartPlugin().configure({ key: 'word-cloud' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-word-cloud)
+for more details.
+
+```js
+<SuperChart
+  chartType="word-cloud"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/package.json b/superset-frontend/plugins/plugin-chart-word-cloud/package.json
new file mode 100644
index 0000000..46bd0bb
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/package.json
@@ -0,0 +1,44 @@
+{
+  "name": "@superset-ui/plugin-chart-word-cloud",
+  "version": "0.17.5",
+  "description": "Superset Chart Plugin - Word Cloud",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "@types/d3-cloud": "^1.2.1",
+    "@types/d3-scale": "^2.0.2",
+    "d3-cloud": "^1.2.5",
+    "d3-scale": "^3.0.1",
+    "emotion-theming": "^10.0.27",
+    "encodable": "^0.7.6"
+  },
+  "peerDependencies": {
+    "@types/react": "*",
+    "react": "^16.13.1"
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/chart/Encoder.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/chart/Encoder.ts
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/chart/Encoder.ts
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/chart/WordCloud.tsx b/superset-frontend/plugins/plugin-chart-word-cloud/src/chart/WordCloud.tsx
new file mode 100644
index 0000000..febbeaf
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/chart/WordCloud.tsx
@@ -0,0 +1,210 @@
+import React from 'react';
+import cloudLayout, { Word } from 'd3-cloud';
+import { PlainObject, createEncoderFactory, DeriveEncoding, Encoder } from 'encodable';
+import { SupersetThemeProps, withTheme, seedRandom } from '@superset-ui/core';
+
+export const ROTATION = {
+  flat: () => 0,
+  // this calculates a random rotation between -90 and 90 degrees.
+  random: () => Math.floor(seedRandom() * 6 - 3) * 30,
+  square: () => Math.floor(seedRandom() * 2) * 90,
+};
+
+export type RotationType = keyof typeof ROTATION;
+
+export type WordCloudEncoding = DeriveEncoding<WordCloudEncodingConfig>;
+
+type WordCloudEncodingConfig = {
+  color: ['Color', string];
+  fontFamily: ['Category', string];
+  fontSize: ['Numeric', number];
+  fontWeight: ['Category', string | number];
+  text: ['Text', string];
+};
+
+/**
+ * These props should be stored when saving the chart.
+ */
+export interface WordCloudVisualProps {
+  encoding?: Partial<WordCloudEncoding>;
+  rotation?: RotationType;
+}
+
+export interface WordCloudProps extends WordCloudVisualProps {
+  data: PlainObject[];
+  height: number;
+  width: number;
+}
+
+export interface WordCloudState {
+  words: Word[];
+  scaleFactor: number;
+}
+
+const defaultProps: Required<WordCloudVisualProps> = {
+  encoding: {},
+  rotation: 'flat',
+};
+
+type FullWordCloudProps = WordCloudProps & typeof defaultProps & SupersetThemeProps;
+
+const SCALE_FACTOR_STEP = 0.5;
+const MAX_SCALE_FACTOR = 3;
+// Percentage of top results that will always be displayed.
+// Needed to avoid clutter when shrinking a chart with many records.
+const TOP_RESULTS_PERCENTAGE = 0.1;
+
+class WordCloud extends React.PureComponent<FullWordCloudProps, WordCloudState> {
+  static defaultProps = defaultProps;
+
+  // Cannot name it isMounted because of conflict
+  // with React's component function name
+  isComponentMounted = false;
+
+  wordCloudEncoderFactory = createEncoderFactory<WordCloudEncodingConfig>({
+    channelTypes: {
+      color: 'Color',
+      fontFamily: 'Category',
+      fontSize: 'Numeric',
+      fontWeight: 'Category',
+      text: 'Text',
+    },
+    defaultEncoding: {
+      color: { value: 'black' },
+      fontFamily: { value: this.props.theme.typography.families.sansSerif },
+      fontSize: { value: 20 },
+      fontWeight: { value: 'bold' },
+      text: { value: '' },
+    },
+  });
+
+  createEncoder = this.wordCloudEncoderFactory.createSelector();
+
+  constructor(props: FullWordCloudProps) {
+    super(props);
+    this.state = {
+      words: [],
+      scaleFactor: 1,
+    };
+    this.setWords = this.setWords.bind(this);
+  }
+
+  componentDidMount() {
+    this.isComponentMounted = true;
+    this.update();
+  }
+
+  componentDidUpdate(prevProps: WordCloudProps) {
+    const { data, encoding, width, height, rotation } = this.props;
+
+    if (
+      prevProps.data !== data ||
+      prevProps.encoding !== encoding ||
+      prevProps.width !== width ||
+      prevProps.height !== height ||
+      prevProps.rotation !== rotation
+    ) {
+      this.update();
+    }
+  }
+
+  componentWillUnmount() {
+    this.isComponentMounted = false;
+  }
+
+  setWords(words: Word[]) {
+    if (this.isComponentMounted) {
+      this.setState({ words });
+    }
+  }
+
+  update() {
+    const { data, encoding } = this.props;
+
+    const encoder = this.createEncoder(encoding);
+    encoder.setDomainFromDataset(data);
+
+    const sortedData = [...data].sort(
+      (a, b) =>
+        encoder.channels.fontSize.encodeDatum(b, 0) - encoder.channels.fontSize.encodeDatum(a, 0),
+    );
+    const topResultsCount = Math.max(sortedData.length * TOP_RESULTS_PERCENTAGE, 10);
+    const topResults = sortedData.slice(0, topResultsCount);
+
+    // Ensure top results are always included in the final word cloud by scaling chart down if needed
+    this.generateCloud(encoder, 1, (words: Word[]) =>
+      topResults.every((d: PlainObject) =>
+        words.find(({ text }) => encoder.channels.text.getValueFromDatum(d) === text),
+      ),
+    );
+  }
+
+  generateCloud(
+    encoder: Encoder<WordCloudEncodingConfig>,
+    scaleFactor: number,
+    isValid: (word: Word[]) => boolean,
+  ) {
+    const { data, width, height, rotation } = this.props;
+
+    cloudLayout()
+      .size([width * scaleFactor, height * scaleFactor])
+      // clone the data because cloudLayout mutates input
+      .words(data.map(d => ({ ...d })))
+      .padding(5)
+      .rotate(ROTATION[rotation] || ROTATION.flat)
+      .text(d => encoder.channels.text.getValueFromDatum(d))
+      .font(d =>
+        encoder.channels.fontFamily.encodeDatum(d, this.props.theme.typography.families.sansSerif),
+      )
+      .fontWeight(d => encoder.channels.fontWeight.encodeDatum(d, 'normal'))
+      .fontSize(d => encoder.channels.fontSize.encodeDatum(d, 0))
+      .on('end', (words: Word[]) => {
+        if (isValid(words) || scaleFactor > MAX_SCALE_FACTOR) {
+          if (this.isComponentMounted) {
+            this.setState({ words, scaleFactor });
+          }
+        } else {
+          this.generateCloud(encoder, scaleFactor + SCALE_FACTOR_STEP, isValid);
+        }
+      })
+      .start();
+  }
+
+  render() {
+    const { scaleFactor } = this.state;
+    const { width, height, encoding } = this.props;
+    const { words } = this.state;
+
+    const encoder = this.createEncoder(encoding);
+    encoder.channels.color.setDomainFromDataset(words);
+
+    const viewBoxWidth = width * scaleFactor;
+    const viewBoxHeight = height * scaleFactor;
+
+    return (
+      <svg
+        width={width}
+        height={height}
+        viewBox={`-${viewBoxWidth / 2} -${viewBoxHeight / 2} ${viewBoxWidth} ${viewBoxHeight}`}
+      >
+        <g>
+          {words.map(w => (
+            <text
+              key={w.text}
+              fontSize={`${w.size}px`}
+              fontWeight={w.weight}
+              fontFamily={w.font}
+              fill={encoder.channels.color.encodeDatum(w, '')}
+              textAnchor="middle"
+              transform={`translate(${w.x}, ${w.y}) rotate(${w.rotate})`}
+            >
+              {w.text}
+            </text>
+          ))}
+        </g>
+      </svg>
+    );
+  }
+}
+
+export default withTheme(WordCloud);
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/configureEncodable.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/configureEncodable.ts
new file mode 100644
index 0000000..dc99044
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/configureEncodable.ts
@@ -0,0 +1,49 @@
+import {
+  Encodable,
+  ColorSchemeResolver,
+  TimeFormatResolver,
+  CategoricalColorScaleResolver,
+  defaultColorSchemeResolver,
+  addPrefix,
+} from 'encodable';
+import {
+  CategoricalColorNamespace,
+  getCategoricalSchemeRegistry,
+  getSequentialSchemeRegistry,
+  getNumberFormatter,
+  getTimeFormatter,
+  LOCAL_PREFIX,
+  getTimeFormatterRegistry,
+} from '@superset-ui/core';
+
+const timeFormat: TimeFormatResolver = ({ format, formatInLocalTime = false } = {}) => {
+  const formatString = formatInLocalTime
+    ? addPrefix(LOCAL_PREFIX, format ?? getTimeFormatterRegistry().getDefaultKey()!)
+    : format;
+
+  return getTimeFormatter(formatString);
+};
+
+const colorSchemeResolver: ColorSchemeResolver = ({ name, type = 'categorical' } = {}) => {
+  if (type === 'sequential') {
+    const scheme = getSequentialSchemeRegistry().get(name);
+
+    return typeof scheme === 'undefined' ? scheme : { type: 'sequential', ...scheme };
+  }
+  if (type === 'categorical') {
+    const scheme = getCategoricalSchemeRegistry().get(name);
+
+    return typeof scheme === 'undefined' ? scheme : { type: 'categorical', ...scheme };
+  }
+  return defaultColorSchemeResolver({ name, type });
+};
+
+const colorScaleResolver: CategoricalColorScaleResolver = ({ name, namespace } = {}) =>
+  CategoricalColorNamespace.getScale(name, namespace);
+
+export default function configureEncodable() {
+  Encodable.setNumberFormatResolver(getNumberFormatter)
+    .setTimeFormatResolver(timeFormat)
+    .setColorSchemeResolver(colorSchemeResolver)
+    .setCategoricalColorScaleResolver(colorScaleResolver);
+}
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/images/thumbnail.png b/superset-frontend/plugins/plugin-chart-word-cloud/src/images/thumbnail.png
new file mode 100644
index 0000000..92e0984
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/images/thumbnailLarge.png b/superset-frontend/plugins/plugin-chart-word-cloud/src/images/thumbnailLarge.png
new file mode 100644
index 0000000..d477f5c
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/index.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/index.ts
new file mode 100644
index 0000000..bf77bf8
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/index.ts
@@ -0,0 +1,4 @@
+export { default as WordCloudChartPlugin } from './plugin';
+export { default as LegacyWordCloudChartPlugin } from './legacyPlugin';
+export * from './types';
+export { default as configureEncodable } from './configureEncodable';
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts
new file mode 100644
index 0000000..e810fbe
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts
@@ -0,0 +1,24 @@
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import buildQuery from '../plugin/buildQuery';
+import thumbnail from '../images/thumbnail.png';
+import { LegacyWordCloudFormData } from './types';
+
+const metadata = new ChartMetadata({
+  credits: ['https://github.com/jasondavies/d3-cloud'],
+  description: '',
+  name: t('Word Cloud'),
+  thumbnail,
+  useLegacyApi: true,
+});
+
+export default class LegacyWordCloudChartPlugin extends ChartPlugin<LegacyWordCloudFormData> {
+  constructor() {
+    super({
+      buildQuery,
+      loadChart: () => import('../chart/WordCloud'),
+      metadata,
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts
new file mode 100644
index 0000000..253f7fe
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts
@@ -0,0 +1,60 @@
+import { ChartProps } from '@superset-ui/core';
+import { WordCloudProps, WordCloudEncoding } from '../chart/WordCloud';
+import { LegacyWordCloudFormData } from './types';
+
+function getMetricLabel(metric: LegacyWordCloudFormData['metric']): string | undefined {
+  if (typeof metric === 'string' || typeof metric === 'undefined') {
+    return metric;
+  }
+  if (Array.isArray(metric)) {
+    return metric.length > 0 ? getMetricLabel(metric[0]) : undefined;
+  }
+
+  return metric.label;
+}
+
+export default function transformProps(chartProps: ChartProps): WordCloudProps {
+  const { width, height, formData, queriesData } = chartProps;
+  const {
+    colorScheme,
+    metric,
+    rotation,
+    series,
+    sizeFrom = 0,
+    sizeTo,
+  } = formData as LegacyWordCloudFormData;
+
+  const metricLabel = getMetricLabel(metric);
+
+  const encoding: Partial<WordCloudEncoding> = {
+    color: {
+      field: series,
+      scale: {
+        scheme: colorScheme,
+      },
+      type: 'nominal',
+    },
+    fontSize:
+      typeof metricLabel === 'undefined'
+        ? undefined
+        : {
+            field: metricLabel,
+            scale: {
+              range: [sizeFrom, sizeTo],
+              zero: true,
+            },
+            type: 'quantitative',
+          },
+    text: {
+      field: series,
+    },
+  };
+
+  return {
+    data: queriesData[0].data,
+    encoding,
+    height,
+    rotation,
+    width,
+  };
+}
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/types.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/types.ts
new file mode 100644
index 0000000..3704908
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/types.ts
@@ -0,0 +1,10 @@
+import { QueryFormData } from '@superset-ui/core';
+import { RotationType } from '../chart/WordCloud';
+
+export type LegacyWordCloudFormData = QueryFormData & {
+  colorScheme: string;
+  rotation?: RotationType;
+  series: string;
+  sizeFrom?: number;
+  sizeTo: number;
+};
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/buildQuery.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/buildQuery.ts
new file mode 100644
index 0000000..f47cb36
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/buildQuery.ts
@@ -0,0 +1,14 @@
+import { buildQueryContext } from '@superset-ui/core';
+import { WordCloudFormData } from '../types';
+
+export default function buildQuery(formData: WordCloudFormData) {
+  // Set the single QueryObject's groupby field with series in formData
+  const { metric, sort_by_metric } = formData;
+
+  return buildQueryContext(formData, baseQueryObject => [
+    {
+      ...baseQueryObject,
+      ...(sort_by_metric && { orderby: [[metric, false]] }),
+    },
+  ]);
+}
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts
new file mode 100644
index 0000000..715d9eb
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts
@@ -0,0 +1,106 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['series'],
+        ['metric'],
+        ['adhoc_filters'],
+        ['row_limit'],
+        [
+          {
+            name: 'sort_by_metric',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Sort by metric'),
+              description: t('Whether to sort results by the selected metric in descending order.'),
+            },
+          },
+        ],
+      ],
+    },
+    {
+      label: t('Options'),
+      expanded: true,
+      controlSetRows: [
+        [
+          {
+            name: 'size_from',
+            config: {
+              type: 'TextControl',
+              isInt: true,
+              label: t('Minimum Font Size'),
+              renderTrigger: true,
+              default: 10,
+              description: t('Font size for the smallest value in the list'),
+            },
+          },
+          {
+            name: 'size_to',
+            config: {
+              type: 'TextControl',
+              isInt: true,
+              label: t('Maximum Font Size'),
+              renderTrigger: true,
+              default: 70,
+              description: t('Font size for the biggest value in the list'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'rotation',
+            config: {
+              type: 'SelectControl',
+              label: t('Word Rotation'),
+              choices: [
+                ['random', 'random'],
+                ['flat', 'flat'],
+                ['square', 'square'],
+              ],
+              renderTrigger: true,
+              default: 'square',
+              clearable: false,
+              description: t('Rotation to apply to words in the cloud'),
+            },
+          },
+        ],
+        ['color_scheme', 'label_colors'],
+      ],
+    },
+  ],
+  controlOverrides: {
+    series: {
+      validators: [validateNonEmpty],
+      clearable: false,
+    },
+    row_limit: {
+      default: 100,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts
new file mode 100644
index 0000000..5c03f2a
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts
@@ -0,0 +1,28 @@
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import transformProps from '../legacyPlugin/transformProps';
+import buildQuery from './buildQuery';
+import { WordCloudFormData } from '../types';
+import thumbnail from '../images/thumbnail.png';
+import controlPanel from './controlPanel';
+import configureEncodable from '../configureEncodable';
+
+configureEncodable();
+
+const metadata = new ChartMetadata({
+  credits: ['https://github.com/jasondavies/d3-cloud'],
+  description: '',
+  name: t('Word Cloud'),
+  thumbnail,
+});
+
+export default class WordCloudChartPlugin extends ChartPlugin<WordCloudFormData> {
+  constructor() {
+    super({
+      buildQuery,
+      loadChart: () => import('../chart/WordCloud'),
+      metadata,
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts
new file mode 100644
index 0000000..406e9de
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts
@@ -0,0 +1,16 @@
+import { ChartProps } from '@superset-ui/core';
+import { WordCloudProps } from '../chart/WordCloud';
+import { WordCloudFormData } from '../types';
+
+export default function transformProps(chartProps: ChartProps): WordCloudProps {
+  const { width, height, formData, queriesData } = chartProps;
+  const { encoding, rotation } = formData as WordCloudFormData;
+
+  return {
+    data: queriesData[0].data,
+    encoding,
+    height,
+    rotation,
+    width,
+  };
+}
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/src/types.ts b/superset-frontend/plugins/plugin-chart-word-cloud/src/types.ts
new file mode 100644
index 0000000..35a061b
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/src/types.ts
@@ -0,0 +1,9 @@
+import { QueryFormData } from '@superset-ui/core';
+import { WordCloudVisualProps } from './chart/WordCloud';
+
+// FormData for wordcloud contains both common properties of all form data
+// and properties specific to wordcloud visualization
+export type WordCloudFormData = QueryFormData &
+  WordCloudVisualProps & {
+    series: string;
+  };
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/test/index.test.ts b/superset-frontend/plugins/plugin-chart-word-cloud/test/index.test.ts
new file mode 100644
index 0000000..413a113
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/test/index.test.ts
@@ -0,0 +1,10 @@
+import { WordCloudChartPlugin, LegacyWordCloudChartPlugin } from '../src';
+
+describe('plugin-chart-word-cloud', () => {
+  it('exports WordCloudChartPlugin', () => {
+    expect(WordCloudChartPlugin).toBeDefined();
+  });
+  it('exports LegacyWordCloudChartPlugin', () => {
+    expect(LegacyWordCloudChartPlugin).toBeDefined();
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts b/superset-frontend/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts
new file mode 100644
index 0000000..dde57ab
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts
@@ -0,0 +1,54 @@
+import { ChartProps } from '@superset-ui/core';
+import transformProps from '../../src/legacyPlugin/transformProps';
+
+describe('WordCloud tranformProps', () => {
+  const formData = {
+    colorScheme: 'bnbColors',
+    datasource: '3__table',
+    granularity_sqla: 'ds',
+    metric: 'sum__num',
+    rotation: 'square',
+    series: 'name',
+    sizeFrom: 10,
+    sizeTo: 70,
+  };
+  const chartProps = new ChartProps({
+    formData,
+    width: 800,
+    height: 600,
+    queriesData: [
+      {
+        data: [{ name: 'Hulk', sum__num: 1 }],
+      },
+    ],
+  });
+
+  it('should tranform chart props for word cloud viz', () => {
+    expect(transformProps(chartProps)).toEqual({
+      width: 800,
+      height: 600,
+      encoding: {
+        color: {
+          field: 'name',
+          scale: {
+            scheme: 'bnbColors',
+          },
+          type: 'nominal',
+        },
+        fontSize: {
+          field: 'sum__num',
+          scale: {
+            range: [10, 70],
+            zero: true,
+          },
+          type: 'quantitative',
+        },
+        text: {
+          field: 'name',
+        },
+      },
+      rotation: 'square',
+      data: [{ name: 'Hulk', sum__num: 1 }],
+    });
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts b/superset-frontend/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts
new file mode 100644
index 0000000..a0a24e8
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts
@@ -0,0 +1,17 @@
+import { WordCloudFormData } from '../../src';
+import buildQuery from '../../src/plugin/buildQuery';
+
+describe('WordCloud buildQuery', () => {
+  const formData: WordCloudFormData = {
+    datasource: '5__table',
+    granularity_sqla: 'ds',
+    series: 'foo',
+    viz_type: 'word_cloud',
+  };
+
+  it('should build columns from series in form data', () => {
+    const queryContext = buildQuery(formData);
+    const [query] = queryContext.queries;
+    expect(query.columns).toEqual(['foo']);
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/test/tsconfig.json b/superset-frontend/plugins/plugin-chart-word-cloud/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/tsconfig.json b/superset-frontend/plugins/plugin-chart-word-cloud/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/types/external.d.ts b/superset-frontend/plugins/plugin-chart-word-cloud/types/external.d.ts
new file mode 100644
index 0000000..e2937d4
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-word-cloud/types/external.d.ts
@@ -0,0 +1 @@
+declare module '*.png';
diff --git a/superset-frontend/plugins/plugin-filter-antd/README.md b/superset-frontend/plugins/plugin-filter-antd/README.md
new file mode 100644
index 0000000..7de162f
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/README.md
@@ -0,0 +1,34 @@
+## @superset-ui/plugin-filter-antd
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-filter-antd.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-filter-antd)
+
+This plugin provides native filter plugins based on AntD.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+Below is an example of how to use the Select filter plugin.
+
+```js
+import { AntdFilterSelectPlugin } from '@superset-ui/plugin-filter-antd';
+
+new AntdFilterSelectPlugin().configure({ key: 'plugin-filter-select' }).register();
+```
+
+Then use it via `SuperChart`.
+
+```js
+<SuperChart
+  chartType="plugin-filter-select"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+    // this hook gets called
+    hooks: { setExtraFormData: extraFormData => console.log(extraFormData) },
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/plugin-filter-antd/package.json b/superset-frontend/plugins/plugin-filter-antd/package.json
new file mode 100644
index 0000000..3390feb
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/package.json
@@ -0,0 +1,40 @@
+{
+  "name": "@superset-ui/plugin-filter-antd",
+  "version": "0.17.5",
+  "description": "Superset Filter - Plugin Filter AntD",
+  "sideEffects": false,
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "antd": "^4.9.1"
+  },
+  "peerDependencies": {
+    "react": "^16.13.1"
+  },
+  "devDependencies": {
+    "@types/jest": "^26.0.0",
+    "jest": "^26.0.1"
+  }
+}
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Range/AntdRangeFilter.tsx b/superset-frontend/plugins/plugin-filter-antd/src/Range/AntdRangeFilter.tsx
new file mode 100644
index 0000000..62cf281
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Range/AntdRangeFilter.tsx
@@ -0,0 +1,55 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { QueryObjectFilterClause, styled } from '@superset-ui/core';
+import React from 'react';
+import { Slider } from 'antd';
+import { AntdPluginFilterRangeProps } from './types';
+import { AntdPluginFilterStylesProps } from '../types';
+
+const Styles = styled.div<AntdPluginFilterStylesProps>`
+  height: ${({ height }) => height};
+  width: ${({ width }) => width};
+`;
+
+export default function AntdRangeFilter(props: AntdPluginFilterRangeProps) {
+  const { data, formData, height, width, setExtraFormData } = props;
+  const [row] = data;
+  // @ts-ignore
+  const { min, max }: { min: number; max: number } = row;
+  const { groupby } = formData;
+  const [col] = groupby || [];
+
+  const handleChange = (value: [number, number]) => {
+    const [lower, upper] = value;
+    const filters: QueryObjectFilterClause[] = [];
+    if (lower !== undefined && lower !== null) filters.push({ col, op: '>=', val: lower });
+    if (upper !== undefined && upper !== null) filters.push({ col, op: '>=', val: upper });
+    setExtraFormData({
+      append_form_data: {
+        filters,
+      },
+    });
+  };
+
+  return (
+    <Styles height={height} width={width}>
+      <Slider range min={min} max={max} defaultValue={[min, max]} onChange={handleChange} />
+    </Styles>
+  );
+}
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Range/buildQuery.ts b/superset-frontend/plugins/plugin-filter-antd/src/Range/buildQuery.ts
new file mode 100644
index 0000000..9c0d020
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Range/buildQuery.ts
@@ -0,0 +1,68 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { buildQueryContext, ColumnType, QueryFormData } from '@superset-ui/core';
+
+/**
+ * The buildQuery function is used to create an instance of QueryContext that's
+ * sent to the chart data endpoint. In addition to containing information of which
+ * datasource to use, it specifies the type (e.g. full payload, samples, query) and
+ * format (e.g. CSV or JSON) of the result and whether or not to force refresh the data from
+ * the datasource as opposed to using a cached copy of the data, if available.
+ *
+ * More importantly though, QueryContext contains a property `queries`, which is an array of
+ * QueryObjects specifying individual data requests to be made. A QueryObject specifies which
+ * columns, metrics and filters, among others, to use during the query. Usually it will be enough
+ * to specify just one query based on the baseQueryObject, but for some more advanced use cases
+ * it is possible to define post processing operations in the QueryObject, or multiple queries
+ * if a viz needs multiple different result sets.
+ */
+export default function buildQuery(formData: QueryFormData) {
+  const { groupby } = formData;
+  const [column] = groupby || [];
+  return buildQueryContext(formData, baseQueryObject => [
+    {
+      ...baseQueryObject,
+      groupby: [],
+      metrics: [
+        {
+          aggregate: 'MIN',
+          column: {
+            columnName: column,
+            id: 1,
+            type: ColumnType.FLOAT,
+          },
+          expressionType: 'SIMPLE',
+          hasCustomLabel: true,
+          label: 'min',
+        },
+        {
+          aggregate: 'MAX',
+          column: {
+            columnName: column,
+            id: 2,
+            type: ColumnType.FLOAT,
+          },
+          expressionType: 'SIMPLE',
+          hasCustomLabel: true,
+          label: 'max',
+        },
+      ],
+    },
+  ]);
+}
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Range/controlPanel.ts b/superset-frontend/plugins/plugin-filter-antd/src/Range/controlPanel.ts
new file mode 100644
index 0000000..73feec8
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Range/controlPanel.ts
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  // For control input types, see: superset-frontend/src/explore/components/controls/index.js
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['groupby'], ['adhoc_filters']],
+    },
+  ],
+  controlOverrides: {
+    groupby: {
+      validators: [validateNonEmpty],
+      clearable: false,
+    },
+    row_limit: {
+      default: 100,
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/src/filters/components/Range/images/thumbnail.png b/superset-frontend/plugins/plugin-filter-antd/src/Range/images/thumbnail.png
similarity index 100%
copy from superset-frontend/src/filters/components/Range/images/thumbnail.png
copy to superset-frontend/plugins/plugin-filter-antd/src/Range/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Range/index.ts b/superset-frontend/plugins/plugin-filter-antd/src/Range/index.ts
new file mode 100644
index 0000000..4a77fbb
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Range/index.ts
@@ -0,0 +1,42 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import buildQuery from './buildQuery';
+import controlPanel from './controlPanel';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+
+export default class AntdRangeFilterPlugin extends ChartPlugin {
+  constructor() {
+    const metadata = new ChartMetadata({
+      name: t('Range Filter Plugin'),
+      description: 'Range Filter Plugin using AntD',
+      isNativeFilter: true,
+      thumbnail,
+    });
+
+    super({
+      buildQuery,
+      controlPanel,
+      loadChart: () => import('./AntdRangeFilter'),
+      metadata,
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Range/transformProps.ts b/superset-frontend/plugins/plugin-filter-antd/src/Range/transformProps.ts
new file mode 100644
index 0000000..20b81b5
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Range/transformProps.ts
@@ -0,0 +1,33 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartProps, DataRecord } from '@superset-ui/core';
+
+export default function transformProps(chartProps: ChartProps) {
+  const { formData, height, hooks, queriesData, width } = chartProps;
+  const { setExtraFormData } = hooks;
+  const data = queriesData[0].data as DataRecord[];
+
+  return {
+    data,
+    formData,
+    height,
+    setExtraFormData,
+    width,
+  };
+}
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Range/types.ts b/superset-frontend/plugins/plugin-filter-antd/src/Range/types.ts
new file mode 100644
index 0000000..e095c36
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Range/types.ts
@@ -0,0 +1,35 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { DataRecord, QueryFormData, SetExtraFormDataHook } from '@superset-ui/core';
+import { AntdPluginFilterStylesProps } from '../types';
+
+interface AntdPluginFilterSelectCustomizeProps {
+  max?: number;
+  min?: number;
+}
+
+export type PluginFilterRangeQueryFormData = QueryFormData &
+  AntdPluginFilterStylesProps &
+  AntdPluginFilterSelectCustomizeProps;
+
+export type AntdPluginFilterRangeProps = AntdPluginFilterStylesProps & {
+  data: DataRecord[];
+  formData: PluginFilterRangeQueryFormData;
+  setExtraFormData: SetExtraFormDataHook;
+};
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Select/AntdSelectFilter.tsx b/superset-frontend/plugins/plugin-filter-antd/src/Select/AntdSelectFilter.tsx
new file mode 100644
index 0000000..4df3a1f
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Select/AntdSelectFilter.tsx
@@ -0,0 +1,103 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { styled } from '@superset-ui/core';
+import React, { useEffect, useState } from 'react';
+import { Select } from 'antd';
+import { DEFAULT_FORM_DATA, AntdPluginFilterSelectProps } from './types';
+import { AntdPluginFilterStylesProps } from '../types';
+
+const Styles = styled.div<AntdPluginFilterStylesProps>`
+  height: ${({ height }) => height};
+  width: ${({ width }) => width};
+`;
+
+const { Option } = Select;
+
+export default function AntdPluginFilterSelect(props: AntdPluginFilterSelectProps) {
+  const [values, setValues] = useState<(string | number)[]>([]);
+  const DELIMITER = '!^&@%#*!@';
+  const { data, formData, height, width, setExtraFormData } = props;
+  const { defaultValues, enableEmptyFilter, multiSelect, showSearch, inverseSelection } = {
+    ...DEFAULT_FORM_DATA,
+    ...formData,
+  };
+
+  useEffect(() => {
+    setValues(defaultValues || []);
+  }, [defaultValues]);
+
+  let { groupby = [] } = formData;
+  groupby = Array.isArray(groupby) ? groupby : [groupby];
+
+  function handleChange(value?: number[] | string[] | null) {
+    setValues(value || []);
+    const [col] = groupby;
+    const emptyFilter =
+      enableEmptyFilter &&
+      !inverseSelection &&
+      (value === undefined || value === null || value.length === 0);
+    setExtraFormData({
+      append_form_data: emptyFilter
+        ? {
+            extras: {
+              where: '1 = 0',
+            },
+          }
+        : {
+            filters:
+              value === undefined || value === null || value.length === 0
+                ? []
+                : [
+                    {
+                      col,
+                      op: inverseSelection ? 'NOT IN' : 'IN',
+                      val: value,
+                    },
+                  ],
+          },
+    });
+  }
+  const placeholderText =
+    (data || []).length === 0 ? 'No data' : `${data.length} option${data.length > 1 ? 's' : 0}`;
+  return (
+    <Styles height={height} width={width}>
+      <Select
+        allowClear
+        value={values}
+        showSearch={showSearch}
+        style={{ width: '100%' }}
+        mode={multiSelect ? 'multiple' : undefined}
+        placeholder={placeholderText}
+        // @ts-ignore
+        onChange={handleChange}
+      >
+        {(data || []).map(row => {
+          const options = groupby.map(col => row[col]);
+          const key = options.join(DELIMITER);
+          const label = options.join(', ');
+          return (
+            <Option key={key} value={key}>
+              {label}
+            </Option>
+          );
+        })}
+      </Select>
+    </Styles>
+  );
+}
diff --git a/superset-frontend/src/filters/components/Select/buildQuery.ts b/superset-frontend/plugins/plugin-filter-antd/src/Select/buildQuery.ts
similarity index 100%
copy from superset-frontend/src/filters/components/Select/buildQuery.ts
copy to superset-frontend/plugins/plugin-filter-antd/src/Select/buildQuery.ts
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Select/controlPanel.ts b/superset-frontend/plugins/plugin-filter-antd/src/Select/controlPanel.ts
new file mode 100644
index 0000000..b3ca6cc
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Select/controlPanel.ts
@@ -0,0 +1,113 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, validateNonEmpty } from '@superset-ui/core';
+import { ControlPanelConfig, sections } from '@superset-ui/chart-controls';
+import { DEFAULT_FORM_DATA } from './types';
+
+const {
+  enableEmptyFilter,
+  fetchPredicate,
+  inverseSelection,
+  multiSelect,
+  showSearch,
+} = DEFAULT_FORM_DATA;
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [
+        ['groupby'],
+        ['metrics'],
+        ['adhoc_filters'],
+        [
+          {
+            name: 'multiSelect',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Multiple Select'),
+              default: multiSelect,
+              description: t('Allow selecting multiple values'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'enableEmptyFilter',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Enable Empty Filter'),
+              default: enableEmptyFilter,
+              description: t(
+                'When selection is empty, should an always false filter event be emitted',
+              ),
+            },
+          },
+        ],
+        [
+          {
+            name: 'inverseSelection',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Inverse Selection'),
+              default: inverseSelection,
+              description: t('Exclude selected values'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'showSearch',
+            config: {
+              type: 'CheckboxControl',
+              label: t('Search Field'),
+              default: showSearch,
+              description: t('Allow typing search terms'),
+            },
+          },
+        ],
+        [
+          {
+            name: 'fetchPredicate',
+            config: {
+              type: 'TextControl',
+              label: t('Fetch predicate'),
+              default: fetchPredicate,
+              description: t(
+                'Predicate applied when fetching distinct value to populate the filter control component.',
+              ),
+            },
+          },
+          null,
+        ],
+        ['row_limit', null],
+      ],
+    },
+  ],
+  controlOverrides: {
+    groupby: {
+      multi: false,
+      validators: [validateNonEmpty],
+    },
+  },
+};
+
+export default config;
diff --git a/superset-frontend/src/filters/components/Select/images/thumbnail.png b/superset-frontend/plugins/plugin-filter-antd/src/Select/images/thumbnail.png
similarity index 100%
copy from superset-frontend/src/filters/components/Select/images/thumbnail.png
copy to superset-frontend/plugins/plugin-filter-antd/src/Select/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Select/index.ts b/superset-frontend/plugins/plugin-filter-antd/src/Select/index.ts
new file mode 100644
index 0000000..f0d05c3
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Select/index.ts
@@ -0,0 +1,42 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import buildQuery from './buildQuery';
+import controlPanel from './controlPanel';
+import transformProps from './transformProps';
+import thumbnail from './images/thumbnail.png';
+
+export default class AntdFilterSelectPlugin extends ChartPlugin {
+  constructor() {
+    const metadata = new ChartMetadata({
+      name: t('Select Filter Plugin'),
+      description: 'Select Filter Plugin using AntD',
+      isNativeFilter: true,
+      thumbnail,
+    });
+
+    super({
+      buildQuery,
+      controlPanel,
+      loadChart: () => import('./AntdSelectFilter'),
+      metadata,
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Select/transformProps.ts b/superset-frontend/plugins/plugin-filter-antd/src/Select/transformProps.ts
new file mode 100644
index 0000000..935f49f
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Select/transformProps.ts
@@ -0,0 +1,35 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartProps, DataRecord } from '@superset-ui/core';
+import { DEFAULT_FORM_DATA } from './types';
+
+export default function transformProps(chartProps: ChartProps) {
+  const { formData, height, hooks, queriesData, width } = chartProps;
+  const newFormData = { ...DEFAULT_FORM_DATA, ...formData };
+  const { setExtraFormData = () => {} } = hooks;
+  const data = queriesData[0].data as DataRecord[];
+
+  return {
+    width,
+    height,
+    data,
+    formData: newFormData,
+    setExtraFormData,
+  };
+}
diff --git a/superset-frontend/plugins/plugin-filter-antd/src/Select/types.ts b/superset-frontend/plugins/plugin-filter-antd/src/Select/types.ts
new file mode 100644
index 0000000..f485685
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/src/Select/types.ts
@@ -0,0 +1,48 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { QueryFormData, DataRecord, SetExtraFormDataHook } from '@superset-ui/core';
+import { AntdPluginFilterStylesProps } from '../types';
+
+interface AntdPluginFilterSelectCustomizeProps {
+  defaultValues?: (string | number)[];
+  enableEmptyFilter: boolean;
+  fetchPredicate?: string;
+  inverseSelection: boolean;
+  multiSelect: boolean;
+  showSearch: boolean;
+}
+
+export type AntdPluginFilterSelectQueryFormData = QueryFormData &
+  AntdPluginFilterStylesProps &
+  AntdPluginFilterSelectCustomizeProps;
+
+export type AntdPluginFilterSelectProps = AntdPluginFilterStylesProps & {
+  data: DataRecord[];
+  setExtraFormData: SetExtraFormDataHook;
+  formData: AntdPluginFilterSelectQueryFormData;
+};
+
+export const DEFAULT_FORM_DATA: AntdPluginFilterSelectCustomizeProps = {
+  defaultValues: [],
+  enableEmptyFilter: false,
+  fetchPredicate: '',
+  inverseSelection: false,
+  multiSelect: true,
+  showSearch: true,
+};
diff --git a/superset-frontend/src/filters/components/index.ts b/superset-frontend/plugins/plugin-filter-antd/src/index.ts
similarity index 100%
copy from superset-frontend/src/filters/components/index.ts
copy to superset-frontend/plugins/plugin-filter-antd/src/index.ts
diff --git a/superset-frontend/src/filters/components/types.ts b/superset-frontend/plugins/plugin-filter-antd/src/types.ts
similarity index 100%
copy from superset-frontend/src/filters/components/types.ts
copy to superset-frontend/plugins/plugin-filter-antd/src/types.ts
diff --git a/superset-frontend/plugins/plugin-filter-antd/test/index.test.ts b/superset-frontend/plugins/plugin-filter-antd/test/index.test.ts
new file mode 100644
index 0000000..72fcfba
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/test/index.test.ts
@@ -0,0 +1,34 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { AntdSelectFilterPlugin, AntdRangeFilterPlugin } from '../src';
+
+/**
+ * The example tests in this file act as a starting point, and
+ * we encourage you to build more. These tests check that the
+ * plugin loads properly, and focus on `transformProps`
+ * to ake sure that data, controls, and props are all
+ * treated correctly (e.g. formData from plugin controls
+ * properly transform the data and/or any resulting props).
+ */
+describe('@superset-ui/plugin-filter-antd', () => {
+  it('exists', () => {
+    expect(AntdSelectFilterPlugin).toBeDefined();
+    expect(AntdRangeFilterPlugin).toBeDefined();
+  });
+});
diff --git a/superset-frontend/plugins/plugin-filter-antd/tsconfig.json b/superset-frontend/plugins/plugin-filter-antd/tsconfig.json
new file mode 100644
index 0000000..f164c58
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
diff --git a/superset-frontend/plugins/plugin-filter-antd/types/external.d.ts b/superset-frontend/plugins/plugin-filter-antd/types/external.d.ts
new file mode 100644
index 0000000..0935dbb
--- /dev/null
+++ b/superset-frontend/plugins/plugin-filter-antd/types/external.d.ts
@@ -0,0 +1,4 @@
+declare module '*.png' {
+  const value: any;
+  export default value;
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/README.md b/superset-frontend/plugins/preset-chart-xy/README.md
new file mode 100644
index 0000000..662b148
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/README.md
@@ -0,0 +1,35 @@
+## @superset-ui/preset-chart-xy
+
+[![Version](https://img.shields.io/npm/v/@superset-ui/preset-chart-xy.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/preset-chart-xy)
+[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-preset-chart-xy&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-preset-chart-xy)
+
+This plugin provides basic charts on cartesian coordinates (Line, Box Plot) for Superset.
+
+> DISCLAIMER: It is still under heavy development and the APIs are subject to changes.
+
+### Usage
+
+Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to
+lookup this chart throughout the app.
+
+```js
+import { BoxPlotChartPlugin } from '@superset-ui/preset-chart-xy';
+
+new BoxPlotChartPlugin().configure({ key: 'box-plot' }).register();
+```
+
+Then use it via `SuperChart`. See
+[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-box-plot)
+for more details.
+
+```js
+<SuperChart
+  chartType="box-plot"
+  width={600}
+  height={600}
+  formData={...}
+  queriesData={[{
+    data: {...},
+  }]}
+/>
+```
diff --git a/superset-frontend/plugins/preset-chart-xy/package.json b/superset-frontend/plugins/preset-chart-xy/package.json
new file mode 100644
index 0000000..b30bf82
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/package.json
@@ -0,0 +1,47 @@
+{
+  "name": "@superset-ui/preset-chart-xy",
+  "version": "0.17.5",
+  "description": "Superset Chart - XY",
+  "sideEffects": [
+    "*.css"
+  ],
+  "main": "lib/index.js",
+  "module": "esm/index.js",
+  "files": [
+    "esm",
+    "lib",
+    "types"
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/apache-superset/superset-ui.git"
+  },
+  "keywords": [
+    "superset"
+  ],
+  "author": "Superset",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/apache-superset/superset-ui/issues"
+  },
+  "homepage": "https://github.com/apache-superset/superset-ui#readme",
+  "publishConfig": {
+    "access": "public"
+  },
+  "dependencies": {
+    "@data-ui/theme": "^0.0.84",
+    "@data-ui/xy-chart": "^0.0.84",
+    "@superset-ui/chart-controls": "0.17.5",
+    "@superset-ui/core": "0.17.5",
+    "@vx/axis": "^0.0.198",
+    "@vx/legend": "^0.0.198",
+    "@vx/scale": "^0.0.197",
+    "csstype": "^2.6.3",
+    "encodable": "^0.7.6",
+    "lodash": "^4.17.11",
+    "reselect": "^4.0.0"
+  },
+  "peerDependencies": {
+    "react": "^16.2"
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts
new file mode 100644
index 0000000..6ed2d2f
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts
@@ -0,0 +1,70 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '@superset-ui/core';
+import { ControlPanelConfig, formatSelectOptions, sections } from '@superset-ui/chart-controls';
+
+const config: ControlPanelConfig = {
+  controlPanelSections: [
+    sections.legacyRegularTime,
+    {
+      label: t('Query'),
+      expanded: true,
+      controlSetRows: [['metrics'], ['adhoc_filters'], ['groupby'], ['limit']],
+    },
+    {
+      label: t('Chart Options'),
+      expanded: true,
+      controlSetRows: [
+        ['color_scheme', 'label_colors'],
+        [
+          {
+            name: 'whisker_options',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Whisker/outlier options'),
+              default: 'Tukey',
+              description: t('Determines how whiskers and outliers are calculated.'),
+              choices: formatSelectOptions([
+                'Tukey',
+                'Min/max (no outliers)',
+                '2/98 percentiles',
+                '9/91 percentiles',
+              ]),
+            },
+          },
+          {
+            name: 'x_ticks_layout',
+            config: {
+              type: 'SelectControl',
+              label: t('X Tick Layout'),
+              choices: formatSelectOptions(['auto', 'flat', '45°', 'staggered']),
+              default: 'auto',
+              clearable: false,
+              renderTrigger: true,
+              description: t('The way the ticks are laid out on the X-axis'),
+            },
+          },
+        ],
+      ],
+    },
+  ],
+};
+
+export default config;
diff --git a/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts
new file mode 100644
index 0000000..58528fa
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts
@@ -0,0 +1,11 @@
+import { t, ChartMetadata } from '@superset-ui/core';
+import thumbnail from './images/thumbnail.png';
+
+export default function createMetadata(useLegacyApi = false) {
+  return new ChartMetadata({
+    description: '',
+    name: t('Box Plot'),
+    thumbnail,
+    useLegacyApi,
+  });
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/images/thumbnail.png b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/images/thumbnail.png
new file mode 100644
index 0000000..d5eab92
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/index.ts b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/index.ts
new file mode 100644
index 0000000..19b4ce1
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/index.ts
@@ -0,0 +1,36 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartPlugin } from '@superset-ui/core';
+import createMetadata from './createMetadata';
+import transformProps from './transformProps';
+import controlPanel from './controlPanel';
+import configureEncodable from '../configureEncodable';
+
+configureEncodable();
+
+export default class BoxPlotChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../components/BoxPlot/BoxPlot'),
+      metadata: createMetadata(),
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts
new file mode 100644
index 0000000..9423d96
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts
@@ -0,0 +1,36 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartPlugin, QueryFormData } from '@superset-ui/core';
+import createMetadata from '../createMetadata';
+import transformProps, { LegacyBoxPlotChartProps } from './transformProps';
+import controlPanel from '../controlPanel';
+
+export default class BoxPlotChartPlugin extends ChartPlugin<
+  QueryFormData,
+  LegacyBoxPlotChartProps
+> {
+  constructor() {
+    super({
+      loadChart: () => import('../../components/BoxPlot/BoxPlot'),
+      metadata: createMetadata(true),
+      transformProps,
+      controlPanel,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts
new file mode 100644
index 0000000..c939014
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts
@@ -0,0 +1,113 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { ChartProps, LegacyQueryData, QueryFormData, QueryFormMetric } from '@superset-ui/core';
+import { RawBoxPlotDataRow, BoxPlotDataRow } from '../../components/BoxPlot/types';
+
+export type LegacyBoxPlotFormData = {
+  groupby?: QueryFormData['groupby'];
+  metrics?: QueryFormData['metrics'];
+  colorScheme?: string;
+};
+
+export type LegacyBoxPlotChartProps = ChartProps & {
+  formData: LegacyBoxPlotFormData;
+  queriesData: (LegacyQueryData & {
+    data?: RawBoxPlotDataRow[];
+  })[];
+};
+
+export default function transformProps(chartProps: LegacyBoxPlotChartProps) {
+  const { width, height, datasource, formData, queriesData } = chartProps;
+  const { verboseMap = {} } = datasource;
+  const { colorScheme, groupby = [], metrics = [] } = formData;
+
+  const data = (queriesData[0].data || []).map(({ label, values }) => ({
+    label,
+    min: values.whisker_low,
+    max: values.whisker_high,
+    firstQuartile: values.Q1,
+    median: values.Q2,
+    thirdQuartile: values.Q3,
+    outliers: values.outliers,
+  }));
+
+  const xAxisLabel = groupby.join('/');
+
+  let metric: QueryFormMetric = '';
+  if (Array.isArray(metrics)) {
+    metric = metrics.length > 0 ? metrics[0] : '';
+  } else {
+    metric = metrics;
+  }
+  const yAxisLabel = typeof metric === 'string' ? verboseMap[metric] || metric : metric.label;
+
+  const boxPlotValues = data.reduce((r: number[], e: BoxPlotDataRow) => {
+    r.push(e.min, e.max, ...e.outliers);
+
+    return r;
+  }, []);
+
+  const minBoxPlotValue = Math.min(...boxPlotValues);
+  const maxBoxPlotValue = Math.max(...boxPlotValues);
+  const valueDomain = [
+    minBoxPlotValue - 0.1 * Math.abs(minBoxPlotValue),
+    maxBoxPlotValue + 0.1 * Math.abs(maxBoxPlotValue),
+  ];
+
+  return {
+    data,
+    width,
+    height,
+    encoding: {
+      x: {
+        field: 'label',
+        type: 'nominal',
+        scale: {
+          type: 'band',
+          paddingInner: 0.15,
+          paddingOuter: 0.3,
+        },
+        axis: {
+          title: xAxisLabel,
+        },
+      },
+      y: {
+        field: 'value',
+        type: 'quantitative',
+        scale: {
+          type: 'linear',
+          domain: valueDomain,
+        },
+        axis: {
+          title: yAxisLabel,
+          numTicks: 5,
+          format: 'SMART_NUMBER',
+        },
+      },
+      color: {
+        field: 'label',
+        type: 'nominal',
+        scale: {
+          scheme: colorScheme,
+        },
+        legend: false,
+      },
+    },
+  };
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts
new file mode 100644
index 0000000..166be75
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts
@@ -0,0 +1,69 @@
+import { pick } from 'lodash';
+import { ChartProps } from '@superset-ui/core';
+import { BoxPlotDataRow, RawBoxPlotDataRow } from '../components/BoxPlot/types';
+import { HookProps } from '../components/BoxPlot/BoxPlot';
+import { BoxPlotEncoding } from '../components/BoxPlot/Encoder';
+
+export default function transformProps(chartProps: ChartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { margin, theme } = formData;
+  const encoding = formData.encoding as BoxPlotEncoding;
+
+  const data = (queriesData[0].data as RawBoxPlotDataRow[]).map(({ label, values }) => ({
+    label,
+    min: values.whisker_low,
+    max: values.whisker_high,
+    firstQuartile: values.Q1,
+    median: values.Q2,
+    thirdQuartile: values.Q3,
+    outliers: values.outliers,
+  }));
+
+  const isHorizontal = encoding.y.type === 'nominal';
+
+  const boxPlotValues = data.reduce((r: number[], e: BoxPlotDataRow) => {
+    r.push(e.min, e.max, ...e.outliers);
+
+    return r;
+  }, []);
+
+  const minBoxPlotValue = Math.min(...boxPlotValues);
+  const maxBoxPlotValue = Math.max(...boxPlotValues);
+  const valueDomain = [
+    minBoxPlotValue - 0.1 * Math.abs(minBoxPlotValue),
+    maxBoxPlotValue + 0.1 * Math.abs(maxBoxPlotValue),
+  ];
+
+  if (isHorizontal) {
+    if (encoding.x.scale) {
+      encoding.x.scale.domain = valueDomain;
+    } else {
+      encoding.x.scale = { domain: valueDomain };
+    }
+  } else if (encoding.y.scale) {
+    encoding.y.scale.domain = valueDomain;
+  } else {
+    encoding.y.scale = { domain: valueDomain };
+  }
+
+  const hooks = chartProps.hooks as HookProps;
+
+  const fieldsFromHooks: (keyof HookProps)[] = [
+    'TooltipRenderer',
+    'LegendRenderer',
+    'LegendGroupRenderer',
+    'LegendItemRenderer',
+    'LegendItemMarkRenderer',
+    'LegendItemLabelRenderer',
+  ];
+
+  return {
+    data,
+    width,
+    height,
+    margin,
+    theme,
+    encoding,
+    ...pick(hooks, fieldsFromHooks),
+  };
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/Line/ChartFormData.ts b/superset-frontend/plugins/preset-chart-xy/src/Line/ChartFormData.ts
new file mode 100644
index 0000000..8a16404
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/Line/ChartFormData.ts
@@ -0,0 +1,7 @@
+import { QueryFormData } from '@superset-ui/core';
+import { FormDataProps } from '../components/Line/Line';
+
+type CombinedFormData = QueryFormData & FormDataProps;
+
+// eslint-disable-next-line no-undef
+export default CombinedFormData;
diff --git a/superset-frontend/plugins/preset-chart-xy/src/Line/buildQuery.ts b/superset-frontend/plugins/preset-chart-xy/src/Line/buildQuery.ts
new file mode 100644
index 0000000..2ae2cf9
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/Line/buildQuery.ts
@@ -0,0 +1,18 @@
+import { buildQueryContext } from '@superset-ui/core';
+import ChartFormData from './ChartFormData';
+import { lineEncoderFactory } from '../components/Line/Encoder';
+
+export default function buildQuery(formData: ChartFormData) {
+  const queryContext = buildQueryContext(formData);
+  const { encoding } = formData;
+  const encoder = lineEncoderFactory.create(encoding);
+
+  queryContext.queries.forEach(query => {
+    const q = query;
+    q.groupby = encoder.getGroupBys();
+    // Enforce time-series mode
+    q.is_timeseries = true;
+  });
+
+  return queryContext;
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/Line/createMetadata.ts b/superset-frontend/plugins/preset-chart-xy/src/Line/createMetadata.ts
new file mode 100644
index 0000000..43850b0
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/Line/createMetadata.ts
@@ -0,0 +1,11 @@
+import { t, ChartMetadata } from '@superset-ui/core';
+import thumbnail from './images/thumbnail.png';
+
+export default function createMetadata(useLegacyApi = false) {
+  return new ChartMetadata({
+    description: '',
+    name: t('Line Chart'),
+    thumbnail,
+    useLegacyApi,
+  });
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/Line/images/thumbnail.png b/superset-frontend/plugins/preset-chart-xy/src/Line/images/thumbnail.png
new file mode 100644
index 0000000..67debac
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/Line/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/preset-chart-xy/src/Line/images/thumbnailLarge.png b/superset-frontend/plugins/preset-chart-xy/src/Line/images/thumbnailLarge.png
new file mode 100644
index 0000000..67debac
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/Line/images/thumbnailLarge.png
Binary files differ
diff --git a/superset-frontend/plugins/preset-chart-xy/src/Line/index.ts b/superset-frontend/plugins/preset-chart-xy/src/Line/index.ts
new file mode 100644
index 0000000..b8738f7
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/Line/index.ts
@@ -0,0 +1,16 @@
+import { ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import createMetadata from './createMetadata';
+import buildQuery from './buildQuery';
+import ChartFormData from './ChartFormData';
+
+export default class LineChartPlugin extends ChartPlugin<ChartFormData> {
+  constructor() {
+    super({
+      buildQuery,
+      loadChart: () => import('../components/Line/Line'),
+      metadata: createMetadata(),
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/Line/legacy/index.ts b/superset-frontend/plugins/preset-chart-xy/src/Line/legacy/index.ts
new file mode 100644
index 0000000..a924893
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/Line/legacy/index.ts
@@ -0,0 +1,13 @@
+import { ChartPlugin } from '@superset-ui/core';
+import transformProps from './transformProps';
+import createMetadata from '../createMetadata';
+
+export default class LineChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../../components/Line/Line'),
+      metadata: createMetadata(true),
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts b/superset-frontend/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts
new file mode 100644
index 0000000..95699f1
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts
@@ -0,0 +1,63 @@
+import { ChartProps } from '@superset-ui/core';
+import { flatMap } from 'lodash';
+
+interface DataRow {
+  key: string[];
+  values: {
+    x: number;
+    y: number;
+  }[];
+}
+
+export default function transformProps(chartProps: ChartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { colorScheme, xAxisLabel, xAxisFormat, yAxisLabel, yAxisFormat } = formData;
+  const data = queriesData[0].data as DataRow[];
+
+  return {
+    data: flatMap(
+      data.map((row: DataRow) =>
+        row.values.map(v => ({
+          ...v,
+          name: row.key[0],
+        })),
+      ),
+    ),
+    width,
+    height,
+    encoding: {
+      x: {
+        field: 'x',
+        type: 'temporal',
+        format: xAxisFormat,
+        scale: {
+          type: 'time',
+        },
+        axis: {
+          orient: 'bottom',
+          title: xAxisLabel,
+        },
+      },
+      y: {
+        field: 'y',
+        type: 'quantitative',
+        format: yAxisFormat,
+        scale: {
+          type: 'linear',
+        },
+        axis: {
+          orient: 'left',
+          title: yAxisLabel,
+        },
+      },
+      stroke: {
+        field: 'name',
+        type: 'nominal',
+        scale: {
+          scheme: colorScheme,
+        },
+        legend: true,
+      },
+    },
+  };
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/Line/transformProps.ts b/superset-frontend/plugins/preset-chart-xy/src/Line/transformProps.ts
new file mode 100644
index 0000000..b56371e
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/Line/transformProps.ts
@@ -0,0 +1,33 @@
+import { pick } from 'lodash';
+import { ChartProps } from '@superset-ui/core';
+import { HookProps, FormDataProps } from '../components/Line/Line';
+
+export default function transformProps(chartProps: ChartProps) {
+  const { width, height, queriesData } = chartProps;
+  const { data } = queriesData[0];
+  const formData = chartProps.formData as FormDataProps;
+  const hooks = chartProps.hooks as HookProps;
+
+  /**
+   * Use type-check to make sure the field names are expected ones
+   * and only pick these fields to pass to the chart.
+   */
+  const fieldsFromFormData: (keyof FormDataProps)[] = ['encoding', 'margin', 'theme'];
+
+  const fieldsFromHooks: (keyof HookProps)[] = [
+    'TooltipRenderer',
+    'LegendRenderer',
+    'LegendGroupRenderer',
+    'LegendItemRenderer',
+    'LegendItemMarkRenderer',
+    'LegendItemLabelRenderer',
+  ];
+
+  return {
+    data,
+    width,
+    height,
+    ...pick(formData, fieldsFromFormData),
+    ...pick(hooks, fieldsFromHooks),
+  };
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/createMetadata.ts b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/createMetadata.ts
new file mode 100644
index 0000000..dbb642a
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/createMetadata.ts
@@ -0,0 +1,11 @@
+import { t, ChartMetadata } from '@superset-ui/core';
+import thumbnail from './images/thumbnail.png';
+
+export default function createMetadata(useLegacyApi = false) {
+  return new ChartMetadata({
+    description: '',
+    name: t('Scatter Plot'),
+    thumbnail,
+    useLegacyApi,
+  });
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/images/thumbnail.png b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/images/thumbnail.png
new file mode 100644
index 0000000..cd81fbd
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/images/thumbnail.png
Binary files differ
diff --git a/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/index.ts b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/index.ts
new file mode 100644
index 0000000..5a9fd90
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/index.ts
@@ -0,0 +1,13 @@
+import { ChartPlugin } from '@superset-ui/core';
+import createMetadata from './createMetadata';
+import transformProps from './transformProps';
+
+export default class LineChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../components/ScatterPlot/ScatterPlot'),
+      metadata: createMetadata(),
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/legacy/index.ts b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/legacy/index.ts
new file mode 100644
index 0000000..5bd1682
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/legacy/index.ts
@@ -0,0 +1,13 @@
+import { ChartPlugin } from '@superset-ui/core';
+import createMetadata from '../createMetadata';
+import transformProps from './transformProps';
+
+export default class LineChartPlugin extends ChartPlugin {
+  constructor() {
+    super({
+      loadChart: () => import('../../components/ScatterPlot/ScatterPlot'),
+      metadata: createMetadata(true),
+      transformProps,
+    });
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts
new file mode 100644
index 0000000..a3f771f
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts
@@ -0,0 +1,97 @@
+import { ChartProps } from '@superset-ui/core';
+import { flatMap } from 'lodash';
+
+interface Value {
+  [key: string]: unknown;
+}
+
+type Key = keyof Value;
+
+interface DataRow {
+  key: string[];
+  values: Value[];
+}
+
+export default function transformProps(chartProps: ChartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const {
+    colorScheme,
+    maxBubbleSize,
+    showLegend,
+    xAxisFormat,
+    xAxisLabel,
+    // TODO: These fields are not supported yet
+    // xAxisShowminmax,
+    // xLogScale,
+    yAxisLabel,
+    yAxisFormat,
+    // TODO: These fields are not supported yet
+    // yAxisShowminmax,
+    // yLogScale,
+  } = formData;
+  const x = formData.x as Key;
+  const y = formData.y as Key;
+  const series = formData.series as Key;
+  const size = formData.size as Key;
+  const entity = formData.entity as Key;
+  const data = queriesData[0].data as DataRow[];
+
+  return {
+    data: flatMap(
+      data.map((row: DataRow) =>
+        row.values.map(v => ({
+          [x]: v[x],
+          [y]: v[y],
+          [series]: v[series],
+          [size]: v[size],
+          [entity]: v[entity],
+        })),
+      ),
+    ),
+    width,
+    height,
+    encoding: {
+      x: {
+        field: x,
+        type: 'quantitive',
+        format: xAxisFormat,
+        scale: {
+          type: 'linear',
+        },
+        axis: {
+          orient: 'bottom',
+          title: xAxisLabel,
+        },
+      },
+      y: {
+        field: y,
+        type: 'quantitative',
+        format: yAxisFormat,
+        scale: {
+          type: 'linear',
+        },
+        axis: {
+          orient: 'left',
+          title: yAxisLabel,
+        },
+      },
+      size: {
+        field: size,
+        type: 'quantitative',
+        scale: {
+          type: 'linear',
+          range: [0, maxBubbleSize],
+        },
+      },
+      fill: {
+        field: series,
+        type: 'nominal',
+        scale: {
+          scheme: colorScheme,
+        },
+        legend: showLegend,
+      },
+      group: [{ field: entity }],
+    },
+  };
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts
new file mode 100644
index 0000000..d1fcd1f
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts
@@ -0,0 +1,29 @@
+import { pick } from 'lodash';
+import { ChartProps } from '@superset-ui/core';
+import { HookProps } from '../components/ScatterPlot/ScatterPlot';
+
+export default function transformProps(chartProps: ChartProps) {
+  const { width, height, formData, queriesData } = chartProps;
+  const { encoding, margin, theme } = formData;
+  const { data } = queriesData[0];
+  const hooks = chartProps.hooks as HookProps;
+
+  const fieldsFromHooks: (keyof HookProps)[] = [
+    'TooltipRenderer',
+    'LegendRenderer',
+    'LegendGroupRenderer',
+    'LegendItemRenderer',
+    'LegendItemMarkRenderer',
+    'LegendItemLabelRenderer',
+  ];
+
+  return {
+    data,
+    width,
+    height,
+    encoding,
+    margin,
+    theme,
+    ...pick(hooks, fieldsFromHooks),
+  };
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/BoxPlot.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/BoxPlot.tsx
new file mode 100644
index 0000000..7d05532
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/BoxPlot.tsx
@@ -0,0 +1,127 @@
+import React from 'react';
+import { BoxPlotSeries, XYChart } from '@data-ui/xy-chart';
+import { chartTheme, ChartTheme } from '@data-ui/theme';
+import { WithLegend, Margin, Dimension } from '@superset-ui/core';
+import { Dataset, PlainObject, isFieldDef } from 'encodable';
+import DefaultTooltipRenderer from './DefaultTooltipRenderer';
+import {
+  BoxPlotEncodingConfig,
+  BoxPlotEncoding,
+  BoxPlotEncoder,
+  boxPlotEncoderFactory,
+} from './Encoder';
+import createMarginSelector, { DEFAULT_MARGIN } from '../../utils/createMarginSelector';
+import { BoxPlotDataRow } from './types';
+import convertScaleToDataUIScale from '../../utils/convertScaleToDataUIScaleShape';
+import createXYChartLayoutWithTheme from '../../utils/createXYChartLayoutWithTheme';
+import createRenderLegend from '../legend/createRenderLegend';
+import { LegendHooks } from '../legend/types';
+
+export interface TooltipProps {
+  datum: BoxPlotDataRow;
+  color: string;
+  encoder: BoxPlotEncoder;
+}
+
+const defaultProps = {
+  className: '',
+  margin: DEFAULT_MARGIN,
+  encoding: {},
+  theme: chartTheme,
+  TooltipRenderer: DefaultTooltipRenderer,
+} as const;
+
+export type HookProps = {
+  TooltipRenderer?: React.ComponentType<TooltipProps>;
+} & LegendHooks<BoxPlotEncodingConfig>;
+
+type Props = {
+  className?: string;
+  width: string | number;
+  height: string | number;
+  margin?: Margin;
+  encoding?: Partial<BoxPlotEncoding>;
+  data: Dataset;
+  theme?: ChartTheme;
+} & HookProps &
+  Readonly<typeof defaultProps>;
+
+export default class BoxPlot extends React.PureComponent<Props> {
+  private createEncoder = boxPlotEncoderFactory.createSelector();
+
+  private createMargin = createMarginSelector();
+
+  static defaultProps = defaultProps;
+
+  renderChart = (dim: Dimension) => {
+    const { width, height } = dim;
+    const { data, margin, theme, TooltipRenderer, encoding } = this.props;
+    const encoder = this.createEncoder(encoding);
+    const { channels } = encoder;
+
+    const isHorizontal =
+      isFieldDef(channels.y.definition) && channels.y.definition.type === 'nominal';
+
+    encoder.setDomainFromDataset(data);
+
+    const layout = createXYChartLayoutWithTheme({
+      width,
+      height,
+      margin: this.createMargin(margin),
+      theme,
+      xEncoder: channels.x,
+      yEncoder: channels.y,
+    });
+
+    return layout.renderChartWithFrame((chartDim: Dimension) => (
+      <XYChart
+        showYGrid
+        width={chartDim.width}
+        height={chartDim.height}
+        ariaLabel="BoxPlot"
+        margin={layout.margin}
+        renderTooltip={({ datum, color }: { datum: BoxPlotDataRow; color: string }) => (
+          <TooltipRenderer datum={datum} color={color} encoder={encoder} />
+        )}
+        theme={theme}
+        // eslint-disable-next-line @typescript-eslint/no-explicit-any
+        xScale={convertScaleToDataUIScale(channels.x.definition.scale as any)}
+        // eslint-disable-next-line @typescript-eslint/no-explicit-any
+        yScale={convertScaleToDataUIScale(channels.y.definition.scale as any)}
+      >
+        {layout.renderXAxis()}
+        {layout.renderYAxis()}
+        <BoxPlotSeries
+          key={isFieldDef(channels.x.definition) ? channels.x.definition.field : ''}
+          animated
+          data={
+            isHorizontal
+              ? data.map(row => ({ ...row, y: channels.y.getValueFromDatum(row) }))
+              : data.map(row => ({ ...row, x: channels.x.getValueFromDatum(row) }))
+          }
+          fill={(datum: PlainObject) => channels.color.encodeDatum(datum, '#55acee')}
+          fillOpacity={0.4}
+          stroke={(datum: PlainObject) => channels.color.encodeDatum(datum)}
+          strokeWidth={1}
+          widthRatio={0.6}
+          horizontal={isHorizontal}
+        />
+      </XYChart>
+    ));
+  };
+
+  render() {
+    const { className, data, encoding, width, height } = this.props;
+
+    return (
+      <WithLegend
+        className={`superset-chart-box-plot ${className}`}
+        width={width}
+        height={height}
+        position="top"
+        renderLegend={createRenderLegend(this.createEncoder(encoding), data, this.props)}
+        renderChart={this.renderChart}
+      />
+    );
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/DefaultTooltipRenderer.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/DefaultTooltipRenderer.tsx
new file mode 100644
index 0000000..30595cb
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/DefaultTooltipRenderer.tsx
@@ -0,0 +1,49 @@
+import React from 'react';
+import { isDefined, TooltipFrame, TooltipTable } from '@superset-ui/core';
+import { BoxPlotEncoder } from './Encoder';
+import { BoxPlotDataRow } from './types';
+
+export default function DefaultTooltipRenderer({
+  datum,
+  color,
+  encoder,
+}: {
+  datum: BoxPlotDataRow;
+  color: string;
+  encoder: BoxPlotEncoder;
+}) {
+  const { label, min, max, median, firstQuartile, thirdQuartile, outliers } = datum;
+  const { channels } = encoder;
+
+  const { formatValue } = channels.y;
+
+  const data: { key: string; valueColumn: number | string }[] = [];
+  if (isDefined(min)) {
+    data.push({ key: 'Min', valueColumn: formatValue(min) });
+  }
+  if (isDefined(max)) {
+    data.push({ key: 'Max', valueColumn: formatValue(max) });
+  }
+  if (isDefined(median)) {
+    data.push({ key: 'Median', valueColumn: formatValue(median) });
+  }
+  if (isDefined(firstQuartile)) {
+    data.push({ key: '1st Quartile', valueColumn: formatValue(firstQuartile) });
+  }
+  if (isDefined(thirdQuartile)) {
+    data.push({ key: '3rd Quartile', valueColumn: formatValue(thirdQuartile) });
+  }
+  if (isDefined(outliers) && outliers.length > 0) {
+    data.push({ key: '# Outliers', valueColumn: outliers.length });
+  }
+
+  return (
+    <TooltipFrame>
+      <div>
+        <strong style={{ color }}>{label}</strong>
+      </div>
+      {data.length > 0 && <br />}
+      <TooltipTable data={data} />
+    </TooltipFrame>
+  );
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/Encoder.ts b/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/Encoder.ts
new file mode 100644
index 0000000..7420391
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/Encoder.ts
@@ -0,0 +1,24 @@
+import { createEncoderFactory, Encoder, DeriveEncoding } from 'encodable';
+
+export type BoxPlotEncodingConfig = {
+  x: ['XBand', number];
+  y: ['YBand', number];
+  color: ['Color', string];
+};
+
+export const boxPlotEncoderFactory = createEncoderFactory<BoxPlotEncodingConfig>({
+  channelTypes: {
+    x: 'XBand',
+    y: 'YBand',
+    color: 'Color',
+  },
+  defaultEncoding: {
+    x: { field: 'x', type: 'nominal' },
+    y: { field: 'y', type: 'quantitative' },
+    color: { value: '#222' },
+  },
+});
+
+export type BoxPlotEncoding = DeriveEncoding<BoxPlotEncodingConfig>;
+
+export type BoxPlotEncoder = Encoder<BoxPlotEncodingConfig>;
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/types.ts b/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/types.ts
new file mode 100644
index 0000000..8b1839e
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/BoxPlot/types.ts
@@ -0,0 +1,23 @@
+export interface RawBoxPlotDataRow {
+  label: string;
+  values: {
+    Q1: number;
+    Q2: number;
+    Q3: number;
+    outliers: number[];
+    // eslint-disable-next-line camelcase
+    whisker_high: number;
+    // eslint-disable-next-line camelcase
+    whisker_low: number;
+  };
+}
+
+export interface BoxPlotDataRow {
+  label: string;
+  min: number;
+  max: number;
+  firstQuartile: number;
+  median: number;
+  thirdQuartile: number;
+  outliers: number[];
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/Line/DefaultLegendItemMarkRenderer.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/Line/DefaultLegendItemMarkRenderer.tsx
new file mode 100644
index 0000000..54bc8ee
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/Line/DefaultLegendItemMarkRenderer.tsx
@@ -0,0 +1,26 @@
+import React, { CSSProperties } from 'react';
+import { LegendItemMarkRendererProps } from '../legend/types';
+import { LineEncodingConfig } from './Encoder';
+
+const MARK_WIDTH = 12;
+const MARK_HEIGHT = 8;
+
+const MARK_STYLE: CSSProperties = { display: 'inline-block' };
+
+export default function DefaultLegendItemMarkRenderer({
+  item,
+}: LegendItemMarkRendererProps<LineEncodingConfig>) {
+  return (
+    <svg width={MARK_WIDTH} height={MARK_HEIGHT} style={MARK_STYLE}>
+      <line
+        stroke={item.output.stroke ?? 'none'}
+        strokeWidth={item.output.strokeWidth ?? 2}
+        strokeDasharray={item.output.strokeDasharray ?? 'none'}
+        x1={0}
+        x2={MARK_WIDTH}
+        y1={MARK_HEIGHT / 2}
+        y2={MARK_HEIGHT / 2}
+      />
+    </svg>
+  );
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/Line/DefaultTooltipRenderer.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/Line/DefaultTooltipRenderer.tsx
new file mode 100644
index 0000000..ffaf617
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/Line/DefaultTooltipRenderer.tsx
@@ -0,0 +1,52 @@
+import React from 'react';
+import { TooltipFrame, TooltipTable } from '@superset-ui/core';
+import { chartTheme } from '@data-ui/theme';
+import { TooltipProps } from './Line';
+
+const MARK_STYLE = { marginRight: 4 };
+
+export default function DefaultTooltipRenderer({
+  allSeries,
+  datum,
+  encoder,
+  series = {},
+  theme = chartTheme,
+}: TooltipProps) {
+  return (
+    <TooltipFrame>
+      <>
+        <div style={{ fontFamily: theme.labelStyles.fontFamily }}>
+          <strong>{encoder.channels.x.formatValue(datum.x)}</strong>
+        </div>
+        <br />
+        {series && (
+          <TooltipTable
+            data={allSeries
+              .filter(({ key }) => series[key])
+              .concat()
+              .sort((a, b) => series[b.key].y - series[a.key].y)
+              .map(({ key, stroke, strokeDasharray, strokeWidth }) => ({
+                key,
+                keyColumn: (
+                  <>
+                    <svg width="12" height="8" style={MARK_STYLE}>
+                      <line
+                        x2="12"
+                        y1="3"
+                        y2="3"
+                        stroke={stroke}
+                        strokeWidth={strokeWidth}
+                        strokeDasharray={strokeDasharray}
+                      />
+                    </svg>
+                    {series[key] === datum ? <b>{key}</b> : key}
+                  </>
+                ),
+                valueColumn: encoder.channels.y.formatValue(series[key].y),
+              }))}
+          />
+        )}
+      </>
+    </TooltipFrame>
+  );
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/Line/Encoder.ts b/superset-frontend/plugins/preset-chart-xy/src/components/Line/Encoder.ts
new file mode 100644
index 0000000..0f27fe2
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/Line/Encoder.ts
@@ -0,0 +1,37 @@
+import Encoder from 'encodable/lib/encoders/Encoder';
+import createEncoderFactory from 'encodable/lib/encoders/createEncoderFactory';
+import { DeriveEncoding, DeriveChannelOutputs } from 'encodable/lib/types/Encoding';
+
+export type LineEncodingConfig = {
+  x: ['X', number];
+  y: ['Y', number];
+  fill: ['Category', boolean];
+  stroke: ['Color', string];
+  strokeDasharray: ['Category', string];
+  strokeWidth: ['Numeric', number];
+};
+
+export const lineEncoderFactory = createEncoderFactory<LineEncodingConfig>({
+  channelTypes: {
+    x: 'X',
+    y: 'Y',
+    fill: 'Category',
+    stroke: 'Color',
+    strokeDasharray: 'Category',
+    strokeWidth: 'Numeric',
+  },
+  defaultEncoding: {
+    x: { field: 'x', type: 'quantitative' },
+    y: { field: 'y', type: 'quantitative' },
+    fill: { value: false, legend: false },
+    stroke: { value: '#222' },
+    strokeDasharray: { value: '' },
+    strokeWidth: { value: 1 },
+  },
+});
+
+export type LineEncoding = DeriveEncoding<LineEncodingConfig>;
+
+export type LineEncoder = Encoder<LineEncodingConfig>;
+
+export type LineChannelOutputs = DeriveChannelOutputs<LineEncodingConfig>;
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/Line/Line.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/Line/Line.tsx
new file mode 100644
index 0000000..095ce48
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/Line/Line.tsx
@@ -0,0 +1,288 @@
+import React, { PureComponent } from 'react';
+import { kebabCase, groupBy, flatMap, uniqueId, values } from 'lodash';
+import {
+  AreaSeries,
+  LinearGradient,
+  LineSeries,
+  XYChart,
+  CrossHair,
+  WithTooltip,
+} from '@data-ui/xy-chart';
+import { chartTheme } from '@data-ui/theme';
+import { WithLegend, Margin, Dimension } from '@superset-ui/core';
+import { createSelector } from 'reselect';
+import { Dataset, PlainObject } from 'encodable';
+import DefaultTooltipRenderer from './DefaultTooltipRenderer';
+import createMarginSelector, { DEFAULT_MARGIN } from '../../utils/createMarginSelector';
+import convertScaleToDataUIScale from '../../utils/convertScaleToDataUIScaleShape';
+import createXYChartLayoutWithTheme from '../../utils/createXYChartLayoutWithTheme';
+import createRenderLegend from '../legend/createRenderLegend';
+import { LegendHooks } from '../legend/types';
+import {
+  lineEncoderFactory,
+  LineEncoder,
+  LineEncoding,
+  LineEncodingConfig,
+  LineChannelOutputs,
+} from './Encoder';
+import DefaultLegendItemMarkRenderer from './DefaultLegendItemMarkRenderer';
+
+export interface TooltipProps {
+  encoder: LineEncoder;
+  allSeries: Series[];
+  datum: SeriesValue;
+  series: {
+    [key: string]: SeriesValue;
+  };
+  theme: typeof chartTheme;
+}
+
+const defaultProps = {
+  className: '',
+  encoding: {},
+  LegendItemMarkRenderer: DefaultLegendItemMarkRenderer,
+  margin: DEFAULT_MARGIN,
+  theme: chartTheme,
+  TooltipRenderer: DefaultTooltipRenderer,
+};
+
+/** Part of formData that is needed for rendering logic in this file */
+export type FormDataProps = {
+  margin?: Margin;
+  theme?: typeof chartTheme;
+  encoding?: Partial<LineEncoding>;
+};
+
+export type HookProps = {
+  TooltipRenderer?: React.ComponentType<TooltipProps>;
+} & LegendHooks<LineEncodingConfig>;
+
+type Props = {
+  className?: string;
+  width: string | number;
+  height: string | number;
+  data: Dataset;
+} & HookProps &
+  FormDataProps &
+  Readonly<typeof defaultProps>;
+
+export interface Series {
+  key: string;
+  fill: LineChannelOutputs['fill'];
+  stroke: LineChannelOutputs['stroke'];
+  strokeDasharray: LineChannelOutputs['strokeDasharray'];
+  strokeWidth: LineChannelOutputs['strokeWidth'];
+  values: SeriesValue[];
+}
+
+export interface SeriesValue {
+  x: number | Date;
+  y: number;
+  data: PlainObject;
+  parent: Series;
+}
+
+const CIRCLE_STYLE = { strokeWidth: 1.5 };
+
+export default class LineChart extends PureComponent<Props> {
+  private createEncoder = lineEncoderFactory.createSelector();
+
+  private createAllSeries = createSelector(
+    (input: { encoder: LineEncoder; data: Dataset }) => input.encoder,
+    input => input.data,
+    (encoder, data) => {
+      const { channels } = encoder;
+      const fieldNames = encoder.getGroupBys();
+
+      const groups = groupBy(data, row => fieldNames.map(f => `${f}=${row[f]}`).join(','));
+
+      const allSeries = values(groups).map(seriesData => {
+        const firstDatum = seriesData[0];
+        // eslint-disable-next-line @typescript-eslint/no-unsafe-return
+        const key = fieldNames.map(f => firstDatum[f]).join(',');
+        const series: Series = {
+          key: key.length === 0 ? channels.y.getTitle() : key,
+          fill: channels.fill.encodeDatum(firstDatum, false),
+          stroke: channels.stroke.encodeDatum(firstDatum, '#222'),
+          strokeDasharray: channels.strokeDasharray.encodeDatum(firstDatum, ''),
+          strokeWidth: channels.strokeWidth.encodeDatum(firstDatum, 1),
+          values: [],
+        };
+
+        series.values = seriesData
+          .map(v => ({
+            x: channels.x.getValueFromDatum<Date | number>(v),
+            y: channels.y.getValueFromDatum<number>(v),
+            data: v,
+            parent: series,
+          }))
+          .sort((a: SeriesValue, b: SeriesValue) => {
+            const aTime = a.x instanceof Date ? a.x.getTime() : a.x;
+            const bTime = b.x instanceof Date ? b.x.getTime() : b.x;
+
+            return aTime - bTime;
+          });
+
+        return series;
+      });
+
+      return allSeries;
+    },
+  );
+
+  private createMargin = createMarginSelector();
+
+  static defaultProps = defaultProps;
+
+  // eslint-disable-next-line class-methods-use-this
+  renderSeries(allSeries: Series[]) {
+    const filledSeries = flatMap(
+      allSeries
+        .filter(({ fill }) => fill)
+        .map(series => {
+          const gradientId = uniqueId(kebabCase(`gradient-${series.key}`));
+
+          return [
+            <LinearGradient
+              key={`${series.key}-gradient`}
+              id={gradientId}
+              from={series.stroke}
+              to="#fff"
+            />,
+            <AreaSeries
+              key={`${series.key}-fill`}
+              seriesKey={series.key}
+              data={series.values}
+              interpolation="linear"
+              fill={`url(#${gradientId})`}
+              stroke={series.stroke}
+              strokeWidth={series.strokeWidth}
+            />,
+          ];
+        }),
+    );
+
+    const unfilledSeries = allSeries
+      .filter(({ fill }) => !fill)
+      .map(series => (
+        <LineSeries
+          key={series.key}
+          seriesKey={series.key}
+          interpolation="linear"
+          data={series.values}
+          stroke={series.stroke}
+          strokeDasharray={series.strokeDasharray}
+          strokeWidth={series.strokeWidth}
+        />
+      ));
+
+    return filledSeries.concat(unfilledSeries);
+  }
+
+  renderChart = (dim: Dimension) => {
+    const { width, height } = dim;
+    const { data, margin, theme, TooltipRenderer, encoding } = this.props;
+
+    const encoder = this.createEncoder(encoding);
+    const { channels } = encoder;
+
+    encoder.setDomainFromDataset(data);
+
+    const allSeries = this.createAllSeries({ encoder, data });
+
+    const layout = createXYChartLayoutWithTheme({
+      width,
+      height,
+      margin: this.createMargin(margin),
+      theme,
+      xEncoder: channels.x,
+      yEncoder: channels.y,
+    });
+
+    return layout.renderChartWithFrame((chartDim: Dimension) => (
+      <WithTooltip
+        renderTooltip={({
+          datum,
+          series,
+        }: {
+          datum: SeriesValue;
+          series: {
+            [key: string]: SeriesValue;
+          };
+        }) => (
+          <TooltipRenderer
+            encoder={encoder}
+            allSeries={allSeries}
+            datum={datum}
+            series={series}
+            theme={theme}
+          />
+        )}
+      >
+        {({
+          onMouseLeave,
+          onMouseMove,
+          tooltipData,
+        }: {
+          onMouseLeave: (...args: unknown[]) => void;
+          onMouseMove: (...args: unknown[]) => void;
+          tooltipData: { datum: { y?: number } };
+        }) => (
+          <XYChart
+            showYGrid
+            snapTooltipToDataX
+            width={chartDim.width}
+            height={chartDim.height}
+            ariaLabel="LineChart"
+            eventTrigger="container"
+            margin={layout.margin}
+            renderTooltip={null}
+            theme={theme}
+            tooltipData={tooltipData}
+            // eslint-disable-next-line @typescript-eslint/no-explicit-any
+            xScale={convertScaleToDataUIScale(channels.x.definition.scale as any)}
+            // eslint-disable-next-line @typescript-eslint/no-explicit-any
+            yScale={convertScaleToDataUIScale(channels.y.definition.scale as any)}
+            onMouseMove={onMouseMove}
+            onMouseLeave={onMouseLeave}
+          >
+            {layout.renderXAxis()}
+            {layout.renderYAxis()}
+            {this.renderSeries(allSeries)}
+            <CrossHair
+              fullHeight
+              showCircle
+              showMultipleCircles
+              strokeDasharray=""
+              showHorizontalLine={false}
+              circleFill={(d: SeriesValue) =>
+                d.y === tooltipData.datum.y ? d.parent.stroke : '#fff'
+              }
+              circleSize={(d: SeriesValue) => (d.y === tooltipData.datum.y ? 6 : 4)}
+              circleStroke={(d: SeriesValue) =>
+                d.y === tooltipData.datum.y ? '#fff' : d.parent.stroke
+              }
+              circleStyles={CIRCLE_STYLE}
+              stroke="#ccc"
+            />
+          </XYChart>
+        )}
+      </WithTooltip>
+    ));
+  };
+
+  render() {
+    const { className, data, width, height, encoding } = this.props;
+
+    return (
+      <WithLegend
+        className={`superset-chart-line ${className}`}
+        width={width}
+        height={height}
+        position="top"
+        renderLegend={createRenderLegend(this.createEncoder(encoding), data, this.props)}
+        renderChart={this.renderChart}
+      />
+    );
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/ScatterPlot/DefaultTooltipRenderer.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/ScatterPlot/DefaultTooltipRenderer.tsx
new file mode 100644
index 0000000..8e7f568
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/ScatterPlot/DefaultTooltipRenderer.tsx
@@ -0,0 +1,56 @@
+import React from 'react';
+import { TooltipFrame, TooltipTable } from '@superset-ui/core';
+import { isFieldDef } from 'encodable';
+import { TooltipProps } from './ScatterPlot';
+
+export default function DefaultTooltipRenderer({ datum, encoder }: TooltipProps) {
+  const { channels } = encoder;
+  const { x, y, size, fill, stroke } = channels;
+
+  const tooltipRows = [
+    { key: 'x', keyColumn: x.getTitle(), valueColumn: x.formatDatum(datum) },
+    { key: 'y', keyColumn: y.getTitle(), valueColumn: y.formatDatum(datum) },
+  ];
+
+  if (isFieldDef(fill.definition)) {
+    tooltipRows.push({
+      key: 'fill',
+      keyColumn: fill.getTitle(),
+      valueColumn: fill.formatDatum(datum),
+    });
+  }
+  if (isFieldDef(stroke.definition)) {
+    tooltipRows.push({
+      key: 'stroke',
+      keyColumn: stroke.getTitle(),
+      valueColumn: stroke.formatDatum(datum),
+    });
+  }
+  if (isFieldDef(size.definition)) {
+    tooltipRows.push({
+      key: 'size',
+      keyColumn: size.getTitle(),
+      valueColumn: size.formatDatum(datum),
+    });
+  }
+  channels.group.forEach(g => {
+    tooltipRows.push({
+      key: `${g.name}`,
+      keyColumn: g.getTitle(),
+      valueColumn: g.formatDatum(datum),
+    });
+  });
+  channels.tooltip.forEach(g => {
+    tooltipRows.push({
+      key: `${g.name}`,
+      keyColumn: g.getTitle(),
+      valueColumn: g.formatDatum(datum),
+    });
+  });
+
+  return (
+    <TooltipFrame>
+      <TooltipTable data={tooltipRows} />
+    </TooltipFrame>
+  );
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/ScatterPlot/Encoder.ts b/superset-frontend/plugins/preset-chart-xy/src/components/ScatterPlot/Encoder.ts
new file mode 100644
index 0000000..3706022
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/ScatterPlot/Encoder.ts
@@ -0,0 +1,38 @@
+import { createEncoderFactory, Encoder, DeriveEncoding, DeriveChannelOutputs } from 'encodable';
+
+export type ScatterPlotEncodingConfig = {
+  x: ['X', number];
+  y: ['Y', number];
+  fill: ['Color', string];
+  group: ['Category', string, 'multiple'];
+  size: ['Numeric', number];
+  stroke: ['Color', string];
+  tooltip: ['Text', string, 'multiple'];
+};
+
+export const scatterPlotEncoderFactory = createEncoderFactory<ScatterPlotEncodingConfig>({
+  channelTypes: {
+    x: 'X',
+    y: 'Y',
+    fill: 'Color',
+    group: 'Category',
+    size: 'Numeric',
+    stroke: 'Color',
+    tooltip: 'Text',
+  },
+  defaultEncoding: {
+    x: { field: 'x', type: 'quantitative' },
+    y: { field: 'y', type: 'quantitative' },
+    fill: { value: '#222' },
+    group: [],
+    size: { value: 5 },
+    stroke: { value: 'none' },
+    tooltip: [],
+  },
+});
+
+export type ScatterPlotEncoding = DeriveEncoding<ScatterPlotEncodingConfig>;
+
+export type ScatterPlotEncoder = Encoder<ScatterPlotEncodingConfig>;
+
+export type ScatterPlotChannelOutputs = DeriveChannelOutputs<ScatterPlotEncodingConfig>;
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/ScatterPlot/ScatterPlot.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/ScatterPlot/ScatterPlot.tsx
new file mode 100644
index 0000000..fe013d3
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/ScatterPlot/ScatterPlot.tsx
@@ -0,0 +1,122 @@
+import React, { PureComponent } from 'react';
+import { XYChart, PointSeries } from '@data-ui/xy-chart';
+import { chartTheme, ChartTheme } from '@data-ui/theme';
+import { WithLegend, Margin, Dimension } from '@superset-ui/core';
+import { isFieldDef, Dataset, PlainObject } from 'encodable';
+
+import {
+  scatterPlotEncoderFactory,
+  ScatterPlotEncoder,
+  ScatterPlotEncodingConfig,
+  ScatterPlotEncoding,
+} from './Encoder';
+import createMarginSelector, { DEFAULT_MARGIN } from '../../utils/createMarginSelector';
+import DefaultTooltipRenderer from './DefaultTooltipRenderer';
+import convertScaleToDataUIScale from '../../utils/convertScaleToDataUIScaleShape';
+import createXYChartLayoutWithTheme from '../../utils/createXYChartLayoutWithTheme';
+import createRenderLegend from '../legend/createRenderLegend';
+import { LegendHooks } from '../legend/types';
+
+export interface TooltipProps {
+  datum: PlainObject;
+  encoder: ScatterPlotEncoder;
+}
+
+const defaultProps = {
+  className: '',
+  margin: DEFAULT_MARGIN,
+  encoding: {},
+  theme: chartTheme,
+  TooltipRenderer: DefaultTooltipRenderer,
+} as const;
+
+export type HookProps = {
+  TooltipRenderer?: React.ComponentType<TooltipProps>;
+} & LegendHooks<ScatterPlotEncodingConfig>;
+
+type Props = {
+  className?: string;
+  width: string | number;
+  height: string | number;
+  margin?: Margin;
+  data: Dataset;
+  encoding?: Partial<ScatterPlotEncoding>;
+  theme?: ChartTheme;
+} & HookProps &
+  Readonly<typeof defaultProps>;
+
+export default class ScatterPlot extends PureComponent<Props> {
+  private createEncoder = scatterPlotEncoderFactory.createSelector();
+
+  private createMargin = createMarginSelector();
+
+  static defaultProps = defaultProps;
+
+  renderChart = (dim: Dimension) => {
+    const { width, height } = dim;
+    const { data, margin, theme, TooltipRenderer, encoding } = this.props;
+    const encoder = this.createEncoder(encoding);
+    const { channels } = encoder;
+
+    encoder.setDomainFromDataset(data);
+
+    const encodedData = data.map(d => ({
+      x: channels.x.getValueFromDatum(d),
+      y: channels.y.getValueFromDatum(d),
+      ...d,
+    }));
+
+    const layout = createXYChartLayoutWithTheme({
+      width,
+      height,
+      margin: this.createMargin(margin),
+      theme,
+      xEncoder: channels.x,
+      yEncoder: channels.y,
+    });
+
+    return layout.renderChartWithFrame((chartDim: Dimension) => (
+      <XYChart
+        showYGrid
+        width={chartDim.width}
+        height={chartDim.height}
+        ariaLabel="ScatterPlot"
+        margin={layout.margin}
+        renderTooltip={({ datum }: { datum: PlainObject }) => (
+          <TooltipRenderer datum={datum} encoder={encoder} />
+        )}
+        theme={theme}
+        // eslint-disable-next-line @typescript-eslint/no-explicit-any
+        xScale={convertScaleToDataUIScale(channels.x.definition.scale as any)}
+        // eslint-disable-next-line @typescript-eslint/no-explicit-any
+        yScale={convertScaleToDataUIScale(channels.y.definition.scale as any)}
+      >
+        {layout.renderXAxis()}
+        {layout.renderYAxis()}
+        <PointSeries
+          key={isFieldDef(channels.x.definition) ? channels.x.definition.field : ''}
+          data={encodedData}
+          fill={(d: PlainObject) => channels.fill.encodeDatum(d)}
+          fillOpacity={0.5}
+          stroke={(d: PlainObject) => channels.stroke.encodeDatum(d)}
+          size={(d: PlainObject) => channels.size.encodeDatum(d)}
+        />
+      </XYChart>
+    ));
+  };
+
+  render() {
+    const { className, data, width, height, encoding } = this.props;
+
+    return (
+      <WithLegend
+        className={`superset-chart-scatter-plot ${className}`}
+        width={width}
+        height={height}
+        position="top"
+        renderLegend={createRenderLegend(this.createEncoder(encoding), data, this.props)}
+        renderChart={this.renderChart}
+      />
+    );
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/legend/DefaultLegend.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/legend/DefaultLegend.tsx
new file mode 100644
index 0000000..57608f3
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/legend/DefaultLegend.tsx
@@ -0,0 +1,52 @@
+import React, { CSSProperties, PureComponent } from 'react';
+import { EncodingConfig } from 'encodable';
+import { LegendRendererProps } from './types';
+import DefaultLegendGroup from './DefaultLegendGroup';
+
+const LEGEND_CONTAINER_STYLE: CSSProperties = {
+  display: 'flex',
+  flexBasis: 'auto',
+  flexGrow: 1,
+  flexShrink: 1,
+  maxHeight: 100,
+  overflowY: 'auto',
+  position: 'relative',
+};
+
+export type Props<Config extends EncodingConfig> = LegendRendererProps<Config>;
+
+export default class DefaultLegend<Config extends EncodingConfig> extends PureComponent<
+  Props<Config>
+> {
+  render() {
+    const {
+      groups,
+      LegendGroupRenderer = DefaultLegendGroup,
+      LegendItemRenderer,
+      LegendItemMarkRenderer,
+      LegendItemLabelRenderer,
+      style,
+    } = this.props;
+
+    const combinedStyle =
+      typeof style === 'undefined'
+        ? LEGEND_CONTAINER_STYLE
+        : { ...LEGEND_CONTAINER_STYLE, ...style };
+
+    return (
+      <div style={combinedStyle}>
+        {groups
+          .filter(group => 'items' in group && group.items.length > 0)
+          .map(group => (
+            <LegendGroupRenderer
+              key={group.field}
+              group={group}
+              ItemRenderer={LegendItemRenderer}
+              ItemMarkRenderer={LegendItemMarkRenderer}
+              ItemLabelRenderer={LegendItemLabelRenderer}
+            />
+          ))}
+      </div>
+    );
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/legend/DefaultLegendGroup.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/legend/DefaultLegendGroup.tsx
new file mode 100644
index 0000000..b9d8695
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/legend/DefaultLegendGroup.tsx
@@ -0,0 +1,42 @@
+import React, { CSSProperties } from 'react';
+import { EncodingConfig } from 'encodable';
+import { LegendGroupRendererProps } from './types';
+import DefaultLegendItem from './DefaultLegendItem';
+
+const LEGEND_GROUP_STYLE: CSSProperties = {
+  display: 'flex',
+  flexBasis: 'auto',
+  flexDirection: 'row',
+  flexGrow: 1,
+  flexShrink: 1,
+  flexWrap: 'wrap',
+  fontSize: '0.8em',
+  justifyContent: 'flex-end',
+  padding: 8,
+};
+
+export default function DefaultLegendGroupRenderer<Config extends EncodingConfig>({
+  group,
+  ItemRenderer = DefaultLegendItem,
+  ItemMarkRenderer,
+  ItemLabelRenderer,
+  style,
+}: LegendGroupRendererProps<Config>) {
+  const combinedStyle =
+    typeof style === 'undefined' ? LEGEND_GROUP_STYLE : { ...LEGEND_GROUP_STYLE, ...style };
+
+  return (
+    <div style={combinedStyle}>
+      {'items' in group &&
+        group.items.map(item => (
+          <ItemRenderer
+            key={`legend-item-${group.field}-${item.input}`}
+            group={group}
+            item={item}
+            MarkRenderer={ItemMarkRenderer}
+            LabelRenderer={ItemLabelRenderer}
+          />
+        ))}
+    </div>
+  );
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/legend/DefaultLegendItem.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/legend/DefaultLegendItem.tsx
new file mode 100644
index 0000000..12fa8fb
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/legend/DefaultLegendItem.tsx
@@ -0,0 +1,51 @@
+import React, { CSSProperties } from 'react';
+import { LegendItem, LegendLabel } from '@vx/legend';
+import { EncodingConfig } from 'encodable';
+import { LegendItemRendererProps } from './types';
+
+const MARK_SIZE = 8;
+
+const MARK_STYLE: CSSProperties = { display: 'inline-block' };
+
+export default function DefaultLegendItem<Config extends EncodingConfig>({
+  group,
+  item,
+  MarkRenderer,
+  LabelRenderer,
+}: LegendItemRendererProps<Config>) {
+  return (
+    <LegendItem key={`legend-item-${group.field}-${item.input}`} margin="0 5px">
+      {typeof MarkRenderer === 'undefined' ? (
+        <svg width={MARK_SIZE} height={MARK_SIZE} style={MARK_STYLE}>
+          <circle
+            fill={
+              // @ts-ignore
+              (item.output.color ??
+                // @ts-ignore
+                item.output.fill ??
+                // @ts-ignore
+                item.output.stroke ??
+                '#ccc') as string
+            }
+            stroke={
+              // @ts-ignore
+              (item.output.stroke ?? 'none') as string
+            }
+            r={MARK_SIZE / 2}
+            cx={MARK_SIZE / 2}
+            cy={MARK_SIZE / 2}
+          />
+        </svg>
+      ) : (
+        <MarkRenderer group={group} item={item} />
+      )}
+      {typeof LabelRenderer === 'undefined' ? (
+        <LegendLabel align="left" margin="0 0 0 4px">
+          {item.input}
+        </LegendLabel>
+      ) : (
+        <LabelRenderer group={group} item={item} />
+      )}
+    </LegendItem>
+  );
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/legend/createRenderLegend.tsx b/superset-frontend/plugins/preset-chart-xy/src/components/legend/createRenderLegend.tsx
new file mode 100644
index 0000000..d8d09cd
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/legend/createRenderLegend.tsx
@@ -0,0 +1,32 @@
+import React from 'react';
+import { Encoder, EncodingConfig, Dataset } from 'encodable';
+import { LegendHooks } from './types';
+import DefaultLegend from './DefaultLegend';
+
+export default function createRenderLegend<Config extends EncodingConfig>(
+  encoder: Encoder<Config>,
+  data: Dataset,
+  props: LegendHooks<Config>,
+) {
+  if (encoder.hasLegend()) {
+    const {
+      LegendRenderer = DefaultLegend,
+      LegendGroupRenderer,
+      LegendItemRenderer,
+      LegendItemLabelRenderer,
+      LegendItemMarkRenderer,
+    } = props;
+
+    return () => (
+      <LegendRenderer
+        groups={encoder.getLegendInformation(data)}
+        LegendGroupRenderer={LegendGroupRenderer}
+        LegendItemRenderer={LegendItemRenderer}
+        LegendItemMarkRenderer={LegendItemMarkRenderer}
+        LegendItemLabelRenderer={LegendItemLabelRenderer}
+      />
+    );
+  }
+
+  return undefined;
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/components/legend/types.ts b/superset-frontend/plugins/preset-chart-xy/src/components/legend/types.ts
new file mode 100644
index 0000000..84f1281
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/components/legend/types.ts
@@ -0,0 +1,63 @@
+import { CSSProperties } from 'react';
+import { EncodingConfig, LegendGroupInformation, LegendItemInformation } from 'encodable';
+
+export type LegendItemMarkRendererProps<Config extends EncodingConfig> = {
+  group: LegendGroupInformation<Config>;
+  item: LegendItemInformation<Config>;
+};
+
+export type LegendItemMarkRendererType<Config extends EncodingConfig> = React.ComponentType<
+  LegendItemMarkRendererProps<Config>
+>;
+
+export type LegendItemLabelRendererProps<
+  Config extends EncodingConfig
+> = LegendItemMarkRendererProps<Config>;
+
+export type LegendItemLabelRendererType<Config extends EncodingConfig> = React.ComponentType<
+  LegendItemLabelRendererProps<Config>
+>;
+
+export type LegendItemRendererProps<Config extends EncodingConfig> = {
+  group: LegendGroupInformation<Config>;
+  item: LegendItemInformation<Config>;
+  MarkRenderer?: LegendItemMarkRendererType<Config>;
+  LabelRenderer?: LegendItemLabelRendererType<Config>;
+};
+
+export type LegendItemRendererType<Config extends EncodingConfig> = React.ComponentType<
+  LegendItemRendererProps<Config>
+>;
+
+export type LegendGroupRendererProps<Config extends EncodingConfig> = {
+  group: LegendGroupInformation<Config>;
+  ItemRenderer?: LegendItemRendererType<Config>;
+  ItemMarkRenderer?: LegendItemMarkRendererType<Config>;
+  ItemLabelRenderer?: LegendItemLabelRendererType<Config>;
+  style?: CSSProperties;
+};
+
+export type LegendGroupRendererType<Config extends EncodingConfig> = React.ComponentType<
+  LegendGroupRendererProps<Config>
+>;
+
+export type LegendRendererProps<Config extends EncodingConfig> = {
+  groups: LegendGroupInformation<Config>[];
+  LegendGroupRenderer?: LegendGroupRendererType<Config>;
+  LegendItemRenderer?: LegendItemRendererType<Config>;
+  LegendItemMarkRenderer?: LegendItemMarkRendererType<Config>;
+  LegendItemLabelRenderer?: LegendItemLabelRendererType<Config>;
+  style?: CSSProperties;
+};
+
+export type LegendRendererType<Config extends EncodingConfig> = React.ComponentType<
+  LegendRendererProps<Config>
+>;
+
+export type LegendHooks<Config extends EncodingConfig> = {
+  LegendRenderer?: LegendRendererType<Config>;
+  LegendGroupRenderer?: LegendGroupRendererType<Config>;
+  LegendItemRenderer?: LegendItemRendererType<Config>;
+  LegendItemMarkRenderer?: LegendItemMarkRendererType<Config>;
+  LegendItemLabelRenderer?: LegendItemLabelRendererType<Config>;
+};
diff --git a/superset-frontend/plugins/preset-chart-xy/src/configureEncodable.ts b/superset-frontend/plugins/preset-chart-xy/src/configureEncodable.ts
new file mode 100644
index 0000000..dc99044
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/configureEncodable.ts
@@ -0,0 +1,49 @@
+import {
+  Encodable,
+  ColorSchemeResolver,
+  TimeFormatResolver,
+  CategoricalColorScaleResolver,
+  defaultColorSchemeResolver,
+  addPrefix,
+} from 'encodable';
+import {
+  CategoricalColorNamespace,
+  getCategoricalSchemeRegistry,
+  getSequentialSchemeRegistry,
+  getNumberFormatter,
+  getTimeFormatter,
+  LOCAL_PREFIX,
+  getTimeFormatterRegistry,
+} from '@superset-ui/core';
+
+const timeFormat: TimeFormatResolver = ({ format, formatInLocalTime = false } = {}) => {
+  const formatString = formatInLocalTime
+    ? addPrefix(LOCAL_PREFIX, format ?? getTimeFormatterRegistry().getDefaultKey()!)
+    : format;
+
+  return getTimeFormatter(formatString);
+};
+
+const colorSchemeResolver: ColorSchemeResolver = ({ name, type = 'categorical' } = {}) => {
+  if (type === 'sequential') {
+    const scheme = getSequentialSchemeRegistry().get(name);
+
+    return typeof scheme === 'undefined' ? scheme : { type: 'sequential', ...scheme };
+  }
+  if (type === 'categorical') {
+    const scheme = getCategoricalSchemeRegistry().get(name);
+
+    return typeof scheme === 'undefined' ? scheme : { type: 'categorical', ...scheme };
+  }
+  return defaultColorSchemeResolver({ name, type });
+};
+
+const colorScaleResolver: CategoricalColorScaleResolver = ({ name, namespace } = {}) =>
+  CategoricalColorNamespace.getScale(name, namespace);
+
+export default function configureEncodable() {
+  Encodable.setNumberFormatResolver(getNumberFormatter)
+    .setTimeFormatResolver(timeFormat)
+    .setColorSchemeResolver(colorSchemeResolver)
+    .setCategoricalColorScaleResolver(colorScaleResolver);
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/index.ts b/superset-frontend/plugins/preset-chart-xy/src/index.ts
new file mode 100644
index 0000000..f3954ff
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/index.ts
@@ -0,0 +1,7 @@
+export { default as BoxPlotChartPlugin } from './BoxPlot';
+export { default as LegacyBoxPlotChartPlugin } from './BoxPlot/legacy';
+export { default as ScatterPlotChartPlugin } from './ScatterPlot';
+export { default as LegacyScatterPlotChartPlugin } from './ScatterPlot/legacy';
+export { default as LineChartPlugin } from './Line';
+export { default as LegacyLineChartPlugin } from './Line/legacy';
+export { default as configureEncodable } from './configureEncodable';
diff --git a/superset-frontend/plugins/preset-chart-xy/src/utils/XYChartLayout.tsx b/superset-frontend/plugins/preset-chart-xy/src/utils/XYChartLayout.tsx
new file mode 100644
index 0000000..504cdc9
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/utils/XYChartLayout.tsx
@@ -0,0 +1,155 @@
+import React, { ReactNode, CSSProperties } from 'react';
+import { XAxis, YAxis } from '@data-ui/xy-chart';
+import { ChartFrame, Margin, mergeMargin, Dimension } from '@superset-ui/core';
+import { ChannelEncoder, PlainObject, Value, XFieldDef, YFieldDef } from 'encodable';
+import createTickComponent from './createTickComponent';
+import computeAxisLayout, { AxisLayout } from './computeAxisLayout';
+
+export const DEFAULT_LABEL_ANGLE = 40;
+
+// Additional margin to avoid content hidden behind scroll bar
+const OVERFLOW_MARGIN = 8;
+
+export interface XYChartLayoutConfig<XOutput extends Value, YOutput extends Value> {
+  width: number;
+  height: number;
+  minContentWidth?: number;
+  minContentHeight?: number;
+  margin: Margin;
+  xEncoder: ChannelEncoder<XFieldDef<XOutput>, XOutput>;
+  xTickSize?: number;
+  xTickTextStyle?: CSSProperties;
+  autoAdjustXMargin?: boolean;
+  yEncoder: ChannelEncoder<YFieldDef<YOutput>, YOutput>;
+  yTickSize?: number;
+  yTickTextStyle?: CSSProperties;
+  autoAdjustYMargin?: boolean;
+}
+
+export default class XYChartLayout<XOutput extends Value, YOutput extends Value> {
+  chartWidth: number;
+
+  chartHeight: number;
+
+  containerWidth: number;
+
+  containerHeight: number;
+
+  margin: Margin;
+
+  xEncoder: ChannelEncoder<XFieldDef<XOutput>, XOutput>;
+
+  xLayout?: AxisLayout;
+
+  yEncoder: ChannelEncoder<YFieldDef<YOutput>, YOutput>;
+
+  yLayout?: AxisLayout;
+
+  constructor(config: XYChartLayoutConfig<XOutput, YOutput>) {
+    const {
+      width,
+      height,
+      minContentWidth = 0,
+      minContentHeight = 0,
+      margin,
+      xEncoder,
+      xTickSize,
+      xTickTextStyle,
+      autoAdjustXMargin = true,
+      yEncoder,
+      yTickSize,
+      yTickTextStyle,
+      autoAdjustYMargin = true,
+    } = config;
+
+    this.xEncoder = xEncoder;
+    this.yEncoder = yEncoder;
+
+    if (typeof yEncoder.axis !== 'undefined') {
+      this.yLayout = computeAxisLayout(yEncoder.axis, {
+        axisWidth: Math.max(height - margin.top - margin.bottom),
+        defaultTickSize: yTickSize,
+        tickTextStyle: yTickTextStyle,
+      });
+    }
+
+    const secondMargin =
+      this.yLayout && autoAdjustYMargin ? mergeMargin(margin, this.yLayout.minMargin) : margin;
+    const innerWidth = Math.max(width - secondMargin.left - secondMargin.right, minContentWidth);
+
+    if (typeof xEncoder.axis !== 'undefined') {
+      this.xLayout = computeAxisLayout(xEncoder.axis, {
+        axisWidth: innerWidth,
+        defaultTickSize: xTickSize,
+        tickTextStyle: xTickTextStyle,
+      });
+    }
+
+    const finalMargin =
+      this.xLayout && autoAdjustXMargin
+        ? mergeMargin(secondMargin, this.xLayout.minMargin)
+        : secondMargin;
+
+    const innerHeight = Math.max(height - finalMargin.top - finalMargin.bottom, minContentHeight);
+
+    const chartWidth = Math.round(innerWidth + finalMargin.left + finalMargin.right);
+    const chartHeight = Math.round(innerHeight + finalMargin.top + finalMargin.bottom);
+
+    const isOverFlowX = chartWidth > width;
+    const isOverFlowY = chartHeight > height;
+    if (isOverFlowX) {
+      finalMargin.bottom += OVERFLOW_MARGIN;
+    }
+    if (isOverFlowY) {
+      finalMargin.right += OVERFLOW_MARGIN;
+    }
+    this.chartWidth = isOverFlowX ? chartWidth + OVERFLOW_MARGIN : chartWidth;
+    this.chartHeight = isOverFlowY ? chartHeight + OVERFLOW_MARGIN : chartHeight;
+    this.containerWidth = width;
+    this.containerHeight = height;
+    this.margin = finalMargin;
+  }
+
+  renderChartWithFrame(renderChart: (input: Dimension) => ReactNode) {
+    return (
+      <ChartFrame
+        width={this.containerWidth}
+        height={this.containerHeight}
+        contentWidth={this.chartWidth}
+        contentHeight={this.chartHeight}
+        renderContent={renderChart}
+      />
+    );
+  }
+
+  renderXAxis(props?: PlainObject) {
+    const { axis } = this.xEncoder;
+
+    return axis && this.xLayout ? (
+      <XAxis
+        label={axis.getTitle()}
+        labelOffset={this.xLayout.labelOffset}
+        numTicks={axis.config.tickCount}
+        orientation={axis.config.orient}
+        tickComponent={createTickComponent(this.xLayout)}
+        tickFormat={axis.formatValue}
+        {...props}
+      />
+    ) : null;
+  }
+
+  renderYAxis(props?: PlainObject) {
+    const { axis } = this.yEncoder;
+
+    return axis && this.yLayout ? (
+      <YAxis
+        label={axis.getTitle()}
+        labelOffset={this.yLayout.labelOffset}
+        numTicks={axis.config.tickCount}
+        orientation={axis.config.orient}
+        tickFormat={axis.formatValue}
+        {...props}
+      />
+    ) : null;
+  }
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/utils/computeAxisLayout.ts b/superset-frontend/plugins/preset-chart-xy/src/utils/computeAxisLayout.ts
new file mode 100644
index 0000000..6aa5eb4
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/utils/computeAxisLayout.ts
@@ -0,0 +1,106 @@
+import { CSSProperties } from 'react';
+import { getTextDimension, Margin, Dimension } from '@superset-ui/core';
+import { AxisOrient, ChannelDef, Value } from 'encodable';
+
+import ChannelEncoderAxis from 'encodable/lib/encoders/ChannelEncoderAxis';
+
+export interface AxisLayout {
+  axisWidth: number;
+  labelAngle: number;
+  labelFlush: number | boolean;
+  labelOffset: number;
+  labelOverlap: 'flat' | 'rotate';
+  minMargin: Partial<Margin>;
+  orient: AxisOrient;
+  tickLabelDimensions: Dimension[];
+  tickLabels: string[];
+  tickTextAnchor?: string;
+}
+
+export default function computeAxisLayout<Def extends ChannelDef<Output>, Output extends Value>(
+  axis: ChannelEncoderAxis<Def, Output>,
+  {
+    axisTitleHeight = 20,
+    axisWidth,
+    gapBetweenAxisLabelAndBorder = 4,
+    gapBetweenTickAndTickLabel = 4,
+    defaultTickSize = 8,
+    tickTextStyle = {},
+  }: {
+    axisTitleHeight?: number;
+    axisWidth: number;
+    gapBetweenAxisLabelAndBorder?: number;
+    gapBetweenTickAndTickLabel?: number;
+    defaultTickSize?: number;
+    tickTextStyle?: CSSProperties;
+  },
+): AxisLayout {
+  const tickLabels = axis.getTickLabels();
+  const tickLabelDimensions = tickLabels.map((text: string) =>
+    getTextDimension({
+      style: tickTextStyle,
+      text,
+    }),
+  );
+
+  const {
+    labelAngle,
+    labelFlush,
+    labelOverlap,
+    labelPadding,
+    orient,
+    tickSize = defaultTickSize,
+  } = axis.config;
+
+  const maxWidth = Math.max(...tickLabelDimensions.map(d => d.width), 0);
+
+  // cheap heuristic, can improve
+  const widthPerTick = axisWidth / tickLabels.length;
+  const isLabelOverlap = maxWidth > widthPerTick;
+  const labelAngleIfOverlap = labelOverlap.strategy === 'rotate' ? labelOverlap.labelAngle : 0;
+  const labelAngleAfterOverlapCheck = isLabelOverlap ? labelAngleIfOverlap : 0;
+  const finalLabelAngle = labelAngle === 0 ? labelAngleAfterOverlapCheck : labelAngle;
+
+  const spaceForAxisTitle = axis.hasTitle() ? labelPadding + axisTitleHeight : 0;
+  let tickTextAnchor = 'middle';
+  let labelOffset = 0;
+  let requiredMargin =
+    tickSize + gapBetweenTickAndTickLabel + spaceForAxisTitle + gapBetweenAxisLabelAndBorder;
+
+  if (axis.channelEncoder.isX()) {
+    if (finalLabelAngle === 0) {
+      const labelHeight = tickLabelDimensions.length > 0 ? tickLabelDimensions[0].height : 0;
+      labelOffset = labelHeight + labelPadding;
+      requiredMargin += labelHeight;
+    } else {
+      const labelHeight = Math.ceil(
+        Math.abs(maxWidth * Math.sin((finalLabelAngle * Math.PI) / 180)),
+      );
+      labelOffset = labelHeight + labelPadding;
+      requiredMargin += labelHeight;
+      tickTextAnchor =
+        (orient === 'top' && finalLabelAngle > 0) || (orient === 'bottom' && finalLabelAngle < 0)
+          ? 'end'
+          : 'start';
+    }
+    requiredMargin += 8;
+  } else {
+    labelOffset = maxWidth + spaceForAxisTitle;
+    requiredMargin += maxWidth;
+  }
+
+  return {
+    axisWidth,
+    labelAngle: finalLabelAngle,
+    labelFlush,
+    labelOffset,
+    labelOverlap: isLabelOverlap ? labelOverlap.strategy : 'flat',
+    minMargin: {
+      [orient]: Math.ceil(requiredMargin),
+    },
+    orient,
+    tickLabelDimensions,
+    tickLabels,
+    tickTextAnchor,
+  };
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/utils/convertScaleToDataUIScaleShape.ts b/superset-frontend/plugins/preset-chart-xy/src/utils/convertScaleToDataUIScaleShape.ts
new file mode 100644
index 0000000..f3932af
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/utils/convertScaleToDataUIScaleShape.ts
@@ -0,0 +1,63 @@
+import { Value, ScaleConfig } from 'encodable';
+
+type DataUIScaleType = 'time' | 'timeUtc' | 'linear' | 'band';
+
+interface DataUIScale {
+  type: DataUIScaleType;
+  domain?: number[] | string[];
+  includeZero?: boolean;
+  nice?: boolean;
+  paddingInner?: number;
+  paddingOuter?: number;
+  range?: number[] | string[];
+  rangeRound?: number[] | string[];
+}
+
+function isCompatibleDomainOrRange(
+  array: ScaleConfig['domain'] | ScaleConfig['range'],
+): array is number[] | string[] {
+  return (
+    typeof array !== 'undefined' &&
+    array.length > 0 &&
+    (typeof array[0] === 'string' || typeof array[0] === 'number')
+  );
+}
+
+/**
+ * Convert encodeable scale object into @data-ui's scale config
+ * @param scale
+ */
+export default function convertScaleToDataUIScale<Output extends Value>(
+  scale: ScaleConfig<Output>,
+) {
+  const { type, domain, range } = scale;
+
+  let outputType: DataUIScaleType;
+
+  if (type === 'linear' || type === 'time' || type === 'band') {
+    outputType = type;
+  } else if (type === 'utc') {
+    outputType = 'timeUtc';
+  } else {
+    throw new Error(`Unsupported scale type: ${type}`);
+  }
+
+  const output: DataUIScale = { type: outputType };
+  if (isCompatibleDomainOrRange(domain)) {
+    output.domain = domain;
+  }
+  if (isCompatibleDomainOrRange(range)) {
+    output.range = range;
+  }
+  if ('nice' in scale && typeof scale.nice === 'boolean') {
+    output.nice = scale.nice;
+  }
+  if ('paddingInner' in scale && typeof scale.paddingInner !== 'undefined') {
+    output.paddingInner = scale.paddingInner;
+  }
+  if ('paddingOuter' in scale && typeof scale.paddingOuter !== 'undefined') {
+    output.paddingOuter = scale.paddingOuter;
+  }
+
+  return output;
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/utils/createMarginSelector.tsx b/superset-frontend/plugins/preset-chart-xy/src/utils/createMarginSelector.tsx
new file mode 100644
index 0000000..ba8ef07
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/utils/createMarginSelector.tsx
@@ -0,0 +1,24 @@
+import { createSelector } from 'reselect';
+import { Margin } from '@superset-ui/core';
+
+export const DEFAULT_MARGIN = { bottom: 16, left: 16, right: 16, top: 16 };
+
+export default function createMarginSelector(defaultMargin: Margin = DEFAULT_MARGIN) {
+  return createSelector(
+    (margin: Partial<Margin>) => margin.bottom,
+    margin => margin.left,
+    margin => margin.right,
+    margin => margin.top,
+    (
+      bottom = defaultMargin.bottom,
+      left = defaultMargin.left,
+      right = defaultMargin.right,
+      top = defaultMargin.top,
+    ) => ({
+      bottom,
+      left,
+      right,
+      top,
+    }),
+  );
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/utils/createTickComponent.tsx b/superset-frontend/plugins/preset-chart-xy/src/utils/createTickComponent.tsx
new file mode 100644
index 0000000..893851a
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/utils/createTickComponent.tsx
@@ -0,0 +1,87 @@
+import React, { CSSProperties } from 'react';
+import { Dimension } from '@superset-ui/core';
+import { AxisLayout } from './computeAxisLayout';
+
+export default function createTickComponent({
+  axisWidth,
+  labelAngle,
+  labelFlush,
+  labelOverlap,
+  orient,
+  tickLabels,
+  tickLabelDimensions,
+  tickTextAnchor = 'middle',
+}: AxisLayout) {
+  if (labelOverlap === 'rotate' && labelAngle !== 0) {
+    let xOffset = labelAngle > 0 ? -6 : 6;
+    if (orient === 'top') {
+      xOffset = 0;
+    }
+    const yOffset = orient === 'top' ? -3 : 0;
+
+    return ({
+      x,
+      y,
+      formattedValue = '',
+      ...textStyle
+    }: {
+      x: number;
+      y: number;
+      dy?: number;
+      formattedValue: string;
+      textStyle: CSSProperties;
+    }) => (
+      <g transform={`translate(${x + xOffset}, ${y + yOffset})`}>
+        <text transform={`rotate(${labelAngle})`} {...textStyle} textAnchor={tickTextAnchor}>
+          {formattedValue}
+        </text>
+      </g>
+    );
+  }
+
+  if (labelFlush === true || typeof labelFlush === 'number') {
+    const labelToDimensionMap = new Map<string, Dimension>();
+    tickLabels.forEach((label, i) => {
+      labelToDimensionMap.set(label, tickLabelDimensions[i]);
+    });
+
+    return ({
+      x,
+      y,
+      formattedValue = '',
+      ...textStyle
+    }: {
+      x: number;
+      y: number;
+      dy?: number;
+      formattedValue: string;
+      textStyle: CSSProperties;
+    }) => {
+      const dimension = labelToDimensionMap.get(formattedValue);
+      const labelWidth = typeof dimension === 'undefined' ? 0 : dimension.width;
+      let textAnchor = tickTextAnchor;
+      let xOffset = 0;
+
+      if (x - labelWidth / 2 < 0) {
+        textAnchor = 'start';
+        if (typeof labelFlush === 'number') {
+          xOffset -= labelFlush;
+        }
+      } else if (x + labelWidth / 2 > axisWidth) {
+        textAnchor = 'end';
+        if (typeof labelFlush === 'number') {
+          xOffset += labelFlush;
+        }
+      }
+
+      return (
+        <text x={x + xOffset} y={y} {...textStyle} textAnchor={textAnchor}>
+          {formattedValue}
+        </text>
+      );
+    };
+  }
+
+  // This will render the tick as horizontal string.
+  return null;
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/src/utils/createTickLabelProps.ts b/superset-frontend/plugins/preset-chart-xy/src/utils/createTickLabelProps.ts
new file mode 100644
index 0000000..e74d9a4
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/utils/createTickLabelProps.ts
@@ -0,0 +1,28 @@
+// export default function createTickLabelProps({
+//   labelAngle,
+//   labelOverlap,
+//   orient,
+//   tickTextAnchor = 'start',
+// }: {
+//   labelAngle: number;
+//   labelOverlap: string;
+//   orient: string;
+//   tickTextAnchor?: string;
+// }) {
+//   let dx = 0;
+//   let dy = 0;
+//   if (labelOverlap === 'rotate' && labelAngle !== 0) {
+//     dx = labelAngle > 0 ? -6 : 6;
+//     if (orient === 'top') {
+//       dx = 0;
+//     }
+//     dy = orient === 'top' ? -3 : 0;
+//   }
+
+//   return {
+//     angle: labelAngle,
+//     dx,
+//     dy,
+//     textAnchor: tickTextAnchor,
+//   };
+// }
diff --git a/superset-frontend/plugins/preset-chart-xy/src/utils/createXYChartLayoutWithTheme.ts b/superset-frontend/plugins/preset-chart-xy/src/utils/createXYChartLayoutWithTheme.ts
new file mode 100644
index 0000000..9e42a03
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/src/utils/createXYChartLayoutWithTheme.ts
@@ -0,0 +1,21 @@
+import { ChartTheme } from '@data-ui/theme';
+import { Value } from 'encodable';
+import XYChartLayout, { XYChartLayoutConfig } from './XYChartLayout';
+
+export default function createXYChartLayoutWithTheme<XOutput extends Value, YOutput extends Value>(
+  config: XYChartLayoutConfig<XOutput, YOutput> & {
+    theme: ChartTheme;
+  },
+) {
+  const { theme, ...rest } = config;
+
+  return new XYChartLayout<XOutput, YOutput>({
+    ...rest,
+    // @ts-ignore
+    xTickSize: theme.xTickStyles.length || theme.xTickStyles.tickLength,
+    xTickTextStyle: theme.xTickStyles.label.bottom || theme.xTickStyles.label.top,
+    // @ts-ignore
+    yTickSize: theme.yTickStyles.length || theme.yTickStyles.tickLength,
+    yTickTextStyle: theme.yTickStyles.label.left || theme.yTickStyles.label.right,
+  });
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/test/index.test.ts b/superset-frontend/plugins/preset-chart-xy/test/index.test.ts
new file mode 100644
index 0000000..1b51c08
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/test/index.test.ts
@@ -0,0 +1,29 @@
+import {
+  LegacyScatterPlotChartPlugin,
+  ScatterPlotChartPlugin,
+  LegacyLineChartPlugin,
+  LineChartPlugin,
+  LegacyBoxPlotChartPlugin,
+  BoxPlotChartPlugin,
+} from '../src';
+
+describe('index', () => {
+  it('exports ScatterPlot', () => {
+    expect(ScatterPlotChartPlugin).toBeDefined();
+  });
+  it('exports Line', () => {
+    expect(LineChartPlugin).toBeDefined();
+  });
+  it('exports BoxPlot', () => {
+    expect(BoxPlotChartPlugin).toBeDefined();
+  });
+  it('exports legacy ScatterPlot', () => {
+    expect(LegacyScatterPlotChartPlugin).toBeDefined();
+  });
+  it('exports legacy Line', () => {
+    expect(LegacyLineChartPlugin).toBeDefined();
+  });
+  it('exports legacy BoxPlot', () => {
+    expect(LegacyBoxPlotChartPlugin).toBeDefined();
+  });
+});
diff --git a/superset-frontend/plugins/preset-chart-xy/test/tsconfig.json b/superset-frontend/plugins/preset-chart-xy/test/tsconfig.json
new file mode 100644
index 0000000..014c546
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/test/tsconfig.json
@@ -0,0 +1,19 @@
+{
+  "compilerOptions": {
+    "composite": false,
+    "emitDeclarationOnly": false,
+    "noEmit": true,
+    "rootDir": "."
+  },
+  "extends": "../../../tsconfig.options.json",
+  "include": [
+    "**/*",
+    "../types/**/*",
+    "../../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": ".."
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/preset-chart-xy/tsconfig.json b/superset-frontend/plugins/preset-chart-xy/tsconfig.json
new file mode 100644
index 0000000..40f7513
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "declarationDir": "lib",
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "exclude": [
+    "lib",
+    "test"
+  ],
+  "extends": "../../tsconfig.options.json",
+  "include": [
+    "src/**/*",
+    "types/**/*",
+    "../../types/**/*"
+  ],
+  "references": [
+    {
+      "path": "../../packages/superset-ui-chart-controls"
+    },
+    {
+      "path": "../../packages/superset-ui-core"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/superset-frontend/plugins/preset-chart-xy/types/@data-ui/theme/index.d.ts b/superset-frontend/plugins/preset-chart-xy/types/@data-ui/theme/index.d.ts
new file mode 100644
index 0000000..4026281
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/types/@data-ui/theme/index.d.ts
@@ -0,0 +1,109 @@
+declare module '@data-ui/theme' {
+  type SvgLabelTextStyle = {
+    fontFamily: string;
+    fontSize: number;
+    fontWeight: number;
+    letterSpacing: number;
+    fill: string;
+    stroke: string;
+    textAnchor?:
+      | '-moz-initial'
+      | 'inherit'
+      | 'initial'
+      | 'revert'
+      | 'unset'
+      | 'end'
+      | 'start'
+      | 'middle';
+    pointerEvents?:
+      | '-moz-initial'
+      | 'inherit'
+      | 'initial'
+      | 'revert'
+      | 'unset'
+      | 'auto'
+      | 'none'
+      | 'visible'
+      | 'all'
+      | 'fill'
+      | 'stroke'
+      | 'painted'
+      | 'visibleFill'
+      | 'visiblePainted'
+      | 'visibleStroke';
+  };
+
+  export interface ChartTheme {
+    colors: {
+      default: string;
+      dark: string;
+      light: string;
+      disabled: string;
+      lightDisabled: string;
+      text: string;
+      black: string;
+      darkGray: string;
+      lightGray: string;
+      grid: string;
+      gridDark: string;
+      label: string;
+      tickLabel: string;
+      grays: string[];
+      categories: string[];
+    };
+    labelStyles: SvgLabelTextStyle & {
+      color: string;
+      lineHeight: string;
+      paddingBottom: number;
+      paddingTop: number;
+    };
+    gridStyles: {
+      stroke: string;
+      strokeWidth: number;
+    };
+    xAxisStyles: {
+      stroke: string;
+      strokeWidth: number;
+      label: {
+        bottom: SvgLabelTextStyle;
+        top: SvgLabelTextStyle;
+      };
+    };
+    xTickStyles: {
+      stroke: string;
+      length: number;
+      label: {
+        bottom: SvgLabelTextStyle & {
+          dy: string;
+        };
+        top: SvgLabelTextStyle & {
+          dy: string;
+        };
+      };
+    };
+    yAxisStyles: {
+      stroke: string;
+      strokeWidth: number;
+      label: {
+        left: SvgLabelTextStyle;
+        right: SvgLabelTextStyle;
+      };
+    };
+    yTickStyles: {
+      stroke: string;
+      length: number;
+      label: {
+        left: SvgLabelTextStyle & {
+          dx: string;
+          dy: string;
+        };
+        right: SvgLabelTextStyle & {
+          dx: string;
+          dy: string;
+        };
+      };
+    };
+  }
+
+  export const chartTheme: ChartTheme;
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/types/@data-ui/xy-chart/index.d.ts b/superset-frontend/plugins/preset-chart-xy/types/@data-ui/xy-chart/index.d.ts
new file mode 100644
index 0000000..339eb14
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/types/@data-ui/xy-chart/index.d.ts
@@ -0,0 +1,40 @@
+declare module '@data-ui/xy-chart' {
+  import React from 'react';
+
+  type Props = {
+    [key: string]: any;
+  };
+
+  interface XYChartProps {
+    width: number;
+    height: number;
+    ariaLabel: string;
+    eventTrigger?: any;
+    margin?: {
+      top?: number;
+      right?: number;
+      bottom?: number;
+      left?: number;
+    };
+    onMouseMove?: (...args: any[]) => void;
+    onMouseLeave?: (...args: any[]) => void;
+    renderTooltip: any;
+    showYGrid?: boolean;
+    snapTooltipToDataX?: boolean;
+    theme?: any;
+    tooltipData?: any;
+    xScale: any;
+    yScale: any;
+  }
+
+  export class AreaSeries extends React.PureComponent<Props, {}> {}
+  export class BoxPlotSeries extends React.PureComponent<Props, {}> {}
+  export class CrossHair extends React.PureComponent<Props, {}> {}
+  export class LinearGradient extends React.PureComponent<Props, {}> {}
+  export class LineSeries extends React.PureComponent<Props, {}> {}
+  export class PointSeries extends React.PureComponent<Props, {}> {}
+  export class WithTooltip extends React.PureComponent<Props, {}> {}
+  export class XYChart extends React.PureComponent<XYChartProps, {}> {}
+  export class XAxis extends React.PureComponent<Props, {}> {}
+  export class YAxis extends React.PureComponent<Props, {}> {}
+}
diff --git a/superset-frontend/plugins/preset-chart-xy/types/external.d.ts b/superset-frontend/plugins/preset-chart-xy/types/external.d.ts
new file mode 100644
index 0000000..0935dbb
--- /dev/null
+++ b/superset-frontend/plugins/preset-chart-xy/types/external.d.ts
@@ -0,0 +1,4 @@
+declare module '*.png' {
+  const value: any;
+  export default value;
+}
diff --git a/superset-frontend/scripts/build.js b/superset-frontend/scripts/build.js
new file mode 100755
index 0000000..ac46273
--- /dev/null
+++ b/superset-frontend/scripts/build.js
@@ -0,0 +1,116 @@
+#!/bin/env node
+/* eslint-disable no-console */
+/**
+ * Build packages/plugins filtered by globs
+ */
+process.env.PATH = `./node_modules/.bin:${process.env.PATH}`;
+
+const rimraf = require('rimraf');
+const { spawnSync } = require('child_process');
+const fastGlob = require('fast-glob');
+const { argv } = require('yargs')
+  .option('lint', {
+    describe: 'whether to run ESLint',
+    type: 'boolean',
+    // lint is slow, so not turning it on by default
+    default: false,
+  })
+  .option('babel', {
+    describe: 'Whether to run Babel',
+    type: 'boolean',
+    default: true,
+  })
+  .option('clean', {
+    describe: 'Whether to clean cache',
+    type: 'boolean',
+    default: false,
+  })
+  .option('type', {
+    describe: 'Whether to run tsc',
+    type: 'boolean',
+    default: true,
+  });
+
+const {
+  _: globs,
+  lint: shouldLint,
+  babel: shouldRunBabel,
+  clean: shouldCleanup,
+  type: shouldRunTyping,
+} = argv;
+const glob = globs.length > 1 ? `{${globs.join(',')}}` : globs[0] || '*';
+
+const BABEL_CONFIG = '--config-file=../../babel.config.js';
+
+// packages that do not need tsc
+const META_PACKAGES = new Set(['demo', 'generator-superset']);
+
+function run(cmd, options) {
+  console.log(`\n>> ${cmd}\n`);
+  const [p, ...args] = cmd.split(' ');
+  const runner = spawnSync;
+  const { status } = runner(p, args, { stdio: 'inherit', ...options });
+  if (status !== 0) {
+    process.exit(status);
+  }
+}
+
+function getPackages(packagePattern, tsOnly = false) {
+  let pattern = packagePattern;
+  if (pattern === '*' && !tsOnly) {
+    return `@superset-ui/!(${[...META_PACKAGES].join('|')})`;
+  }
+  if (!pattern.includes('*')) {
+    pattern = `*${pattern}`;
+  }
+  const packages = [
+    ...new Set(
+      fastGlob
+        .sync([
+          `./node_modules/@superset-ui/${pattern}/src/**/*.${
+            tsOnly ? '{ts,tsx}' : '{ts,tsx,js,jsx}'
+          }`,
+        ])
+        .map(x => x.split('/')[3])
+        .filter(x => !META_PACKAGES.has(x)),
+    ),
+  ];
+  if (packages.length === 0) {
+    throw new Error('No matching packages');
+  }
+  return `@superset-ui/${packages.length > 1 ? `{${packages.join(',')}}` : packages[0]}`;
+}
+
+let scope = getPackages(glob);
+
+if (shouldLint) {
+  run(`yarn lint --fix {packages,plugins}/${scope}/{src,test}`);
+}
+
+if (shouldCleanup) {
+  // these modules will be installed by `npm link` but not useful for actual build
+  const dirtyModules = 'node_modules/@types/react,node_modules/@superset-ui';
+  const cachePath = shouldRunBabel
+    ? `./node_modules/${scope}/{lib,esm,tsconfig.tsbuildinfo,${dirtyModules}}`
+    : `./node_modules/${scope}/{lib/**/*.d.ts,tsconfig.tsbuildinfo,${dirtyModules}}`;
+  console.log(`\n>> Cleaning up ${cachePath}`);
+  rimraf.sync(cachePath);
+}
+
+if (shouldRunBabel) {
+  console.log('--- Run babel --------');
+  const babelCommand = `lerna exec --stream --concurrency 10 --scope ${scope}
+         -- babel ${BABEL_CONFIG} src --extensions ".ts,.tsx,.js,.jsx" --copy-files`;
+  run(`${babelCommand} --out-dir lib`);
+
+  console.log('--- Run babel esm ---');
+  // run again with
+  run(`${babelCommand} --out-dir esm`, { env: { ...process.env, BABEL_OUTPUT: 'esm' } });
+}
+
+if (shouldRunTyping) {
+  // only run tsc for packages with ts files
+  scope = getPackages(glob, true);
+  run(`lerna exec --stream --concurrency 3 --scope ${scope} \
+       -- ../../scripts/tsc.sh --build`);
+}
diff --git a/superset-frontend/scripts/commitlint.js b/superset-frontend/scripts/commitlint.js
new file mode 100755
index 0000000..cef3392
--- /dev/null
+++ b/superset-frontend/scripts/commitlint.js
@@ -0,0 +1,16 @@
+#!/usr/bin/env node
+/**
+ * Check commit messages only for the first commit in branch.
+ */
+const { execSync, spawnSync } = require('child_process');
+
+const envVariable = process.argv[2] || 'GIT_PARAMS';
+
+if (!envVariable || !process.env[envVariable]) {
+  process.stdout.write(`Please provide a commit message via \`${envVariable}={Your Message}\`.\n`);
+  process.exit(0);
+}
+if (execSync('git rev-list --count HEAD ^master', { encoding: 'utf-8' }).trim() === '0') {
+  const { status } = spawnSync(`commitlint`, ['-E', envVariable], { stdio: 'inherit' });
+  process.exit(status);
+}
diff --git a/superset-frontend/scripts/copyAssets.js b/superset-frontend/scripts/copyAssets.js
new file mode 100644
index 0000000..d9ea7d9
--- /dev/null
+++ b/superset-frontend/scripts/copyAssets.js
@@ -0,0 +1,34 @@
+#!/bin/env node
+/* eslint-disable no-console */
+const fg = require('fast-glob');
+const fs = require('fs-extra');
+
+const pkgGlob = process.argv[2] || '*';
+
+const packages = fg.sync([`{packages,plugins}/${pkgGlob}`], {
+  onlyDirectories: true,
+});
+
+console.log('Copying asset files from package {src} to {lib,esm}...');
+packages.forEach(pkg => {
+  const assets = fg.sync([`${pkg}/src/**/*.{png,gif,jpg,css,geojson}`]);
+  assets.forEach(filePath => {
+    ['lib', 'esm']
+      .map(dir => filePath.replace(`${pkg}/src`, `${pkg}/${dir}`))
+      .forEach(newFilePath => {
+        fs.copy(filePath, newFilePath, err => {
+          if (err) {
+            console.error(err);
+          }
+        });
+      });
+  });
+  if (assets.length > 0) {
+    console.log(
+      `  Copied ${assets.length.toString().padStart(2)} asset files for ${pkg.replace(
+        'packages/superset-ui-',
+        '',
+      )}`,
+    );
+  }
+});
diff --git a/superset-frontend/scripts/tsc.sh b/superset-frontend/scripts/tsc.sh
new file mode 100755
index 0000000..aa86a0b
--- /dev/null
+++ b/superset-frontend/scripts/tsc.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+startTime=$(node -e 'console.log(Date.now())')
+tscExitCode=$(tsc "$@")
+duration=$(node -e "console.log('%ss', (Date.now() - $startTime) / 1000)")
+
+if [ ! "$tscExitCode" ]; then
+  echo "compiled in ${duration}"
+else
+  exit "$tscExitCode"
+fi
diff --git a/superset-frontend/test/enzyme.tsx b/superset-frontend/test/enzyme.tsx
new file mode 100644
index 0000000..22b89e9
--- /dev/null
+++ b/superset-frontend/test/enzyme.tsx
@@ -0,0 +1,54 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import React, { ReactElement } from 'react';
+import { shallow as enzymeShallow, mount as enzymeMount } from 'enzyme';
+import { supersetTheme, ThemeProvider } from '@superset-ui/core';
+
+type optionsType = {
+  wrappingComponentProps?: any;
+  wrappingComponent?: ReactElement;
+  context?: any;
+};
+
+export function ProviderWrapper(props: any) {
+  const { children, theme } = props;
+  return <ThemeProvider theme={theme}>{children}</ThemeProvider>;
+}
+
+export function mount(component: ReactElement, options: optionsType = {}) {
+  return enzymeMount(component, {
+    ...options,
+    wrappingComponent: ProviderWrapper,
+    wrappingComponentProps: {
+      theme: supersetTheme,
+      ...options?.wrappingComponentProps,
+    },
+  });
+}
+
+export function shallow(component: ReactElement, options: optionsType = {}) {
+  return enzymeShallow(component, {
+    ...options,
+    wrappingComponent: ProviderWrapper,
+    wrappingComponentProps: {
+      theme: supersetTheme,
+      ...options?.wrappingComponentProps,
+    },
+  }).dive();
+}
diff --git a/superset-frontend/test/setup.ts b/superset-frontend/test/setup.ts
new file mode 100644
index 0000000..778ae50
--- /dev/null
+++ b/superset-frontend/test/setup.ts
@@ -0,0 +1,25 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { configure } from '@superset-ui/core';
+import CacheStorage from './shims/CacheStorage';
+
+configure();
+
+// @ts-ignore
+global.caches = new CacheStorage();
diff --git a/superset-frontend/test/shims/Cache.ts b/superset-frontend/test/shims/Cache.ts
new file mode 100644
index 0000000..f79af5f
--- /dev/null
+++ b/superset-frontend/test/shims/Cache.ts
@@ -0,0 +1,42 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export const caches = {};
+
+export default class Cache {
+  cache: object;
+
+  constructor(key: string) {
+    caches[key] = caches[key] || {};
+    this.cache = caches[key];
+  }
+
+  match(url: string): Promise<Response | undefined> {
+    return new Promise(resolve => resolve(this.cache[url]));
+  }
+
+  delete(url: string): Promise<boolean> {
+    delete this.cache[url];
+    return new Promise(resolve => resolve(true));
+  }
+
+  put(url: string, response: Response): Promise<void> {
+    this.cache[url] = response;
+    return Promise.resolve();
+  }
+}
diff --git a/superset-frontend/test/shims/CacheStorage.ts b/superset-frontend/test/shims/CacheStorage.ts
new file mode 100644
index 0000000..2e2c52c
--- /dev/null
+++ b/superset-frontend/test/shims/CacheStorage.ts
@@ -0,0 +1,35 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import Cache, { caches } from './Cache';
+
+export default class CacheStorage {
+  open(key: string): Promise<Cache> {
+    return new Promise(resolve => {
+      resolve(new Cache(key));
+    });
+  }
+
+  delete(key: string): Promise<boolean> {
+    const wasPresent = key in caches;
+    if (wasPresent) {
+      delete caches[key];
+    }
+    return Promise.resolve(wasPresent);
+  }
+}
diff --git a/superset-frontend/tsconfig.eslint.json b/superset-frontend/tsconfig.eslint.json
new file mode 100644
index 0000000..007c8aa
--- /dev/null
+++ b/superset-frontend/tsconfig.eslint.json
@@ -0,0 +1,12 @@
+{
+  "extends": "./tsconfig.options.json",
+  "include": [
+    "types/**/*",
+    "packages/*/src/**/*",
+    "packages/*/test/**/*",
+    "packages/*/types/**/*",
+    "plugins/*/src/**/*",
+    "plugins/*/test/**/*",
+    "plugins/*/types/**/*"
+  ]
+}
diff --git a/superset-frontend/tsconfig.json b/superset-frontend/tsconfig.json
index 0940343..305fced 100644
--- a/superset-frontend/tsconfig.json
+++ b/superset-frontend/tsconfig.json
@@ -1,48 +1,126 @@
 {
-  "compilerOptions": {
-    "allowJs": true,
-    "allowSyntheticDefaultImports": true,
-    "baseUrl": ".",
-    "esModuleInterop": false,
-    "forceConsistentCasingInFileNames": true,
-    "importHelpers": false,
-    "jsx": "preserve",
-    "lib": ["dom", "esnext"],
-    "module": "esnext",
-    "moduleResolution": "node",
-    "noImplicitAny": true,
-    "noImplicitReturns": true,
-    "noImplicitThis": true,
-    "noUnusedLocals": true,
-    "outDir": "./dist",
-    "pretty": true,
-    "paths": {
-      "@superset-ui/core": [
-        "./node_modules/@superset-ui/core/src",
-        "./node_modules/@superset-ui/core"
-      ],
-      "@superset-ui/chart-controls": [
-        "./node_modules/@superset-ui/chart-controls/src",
-        "./node_modules/@superset-ui/chart-controls"
-      ],
-      // for supressing errors caused by incompatible @types/react when `npm link`
-      // Ref: https://github.com/Microsoft/typescript/issues/6496#issuecomment-384786222
-      "react": ["./node_modules/@types/react", "react"]
+  "files": [],
+  "references": [
+    {
+      "path": "packages/superset-ui-chart-controls"
     },
-    "skipLibCheck": true,
-    "sourceMap": true,
-    "strictNullChecks": true,
-    "suppressImplicitAnyIndexErrors": true,
-    "target": "esnext"
-  },
-  "include": [
-    "./src/**/*",
-    "./spec/**/*",
-    // include the source code of each plugin
-    "./node_modules/*superset-ui*/**/src/**/*",
-    "./node_modules/*superset-ui*/**/types/**/*",
-    // and the type defs of their dependencies
-    "./node_modules/*superset-ui*/**/node_modules/**/*.d.ts"
+    {
+      "path": "packages/superset-ui-chart-controls/test"
+    },
+    {
+      "path": "packages/superset-ui-core"
+    },
+    {
+      "path": "packages/superset-ui-core/test"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-calendar"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-chord"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-country-map"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-event-flow"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-force-directed"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-heatmap"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-histogram"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-horizon"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-map-box"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-map-box/test"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-paired-t-test"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-parallel-coordinates"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-partition"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-partition/test"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-pivot-table"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-rose"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-sankey"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-sankey-loop"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-sunburst"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-time-table"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-treemap"
+    },
+    {
+      "path": "plugins/legacy-plugin-chart-world-map"
+    },
+    {
+      "path": "plugins/legacy-preset-chart-big-number"
+    },
+    {
+      "path": "plugins/legacy-preset-chart-big-number/test"
+    },
+    {
+      "path": "plugins/legacy-preset-chart-nvd3"
+    },
+    {
+      "path": "plugins/legacy-preset-chart-nvd3/test"
+    },
+    {
+      "path": "plugins/plugin-chart-choropleth-map"
+    },
+    {
+      "path": "plugins/plugin-chart-choropleth-map/test"
+    },
+    {
+      "path": "plugins/plugin-chart-echarts"
+    },
+    {
+      "path": "plugins/plugin-chart-echarts/test"
+    },
+    {
+      "path": "plugins/plugin-chart-table"
+    },
+    {
+      "path": "plugins/plugin-chart-table/test"
+    },
+    {
+      "path": "plugins/plugin-chart-word-cloud"
+    },
+    {
+      "path": "plugins/plugin-chart-word-cloud/test"
+    },
+    {
+      "path": "plugins/preset-chart-xy"
+    },
+    {
+      "path": "plugins/preset-chart-xy/test"
+    }
   ],
-  "exclude": ["./node_modules/*superset-ui*/**/node_modules/@superset-ui/**/*"]
-}
+  "extends": "./tsconfig.options.json"
+}
\ No newline at end of file
diff --git a/superset-frontend/tsconfig.options.json b/superset-frontend/tsconfig.options.json
new file mode 100644
index 0000000..b8d9a17
--- /dev/null
+++ b/superset-frontend/tsconfig.options.json
@@ -0,0 +1,33 @@
+{
+  "compilerOptions": {
+    "allowSyntheticDefaultImports": true,
+    "declaration": true,
+    "esModuleInterop": true,
+    "forceConsistentCasingInFileNames": true,
+    "isolatedModules": false,
+    "jsx": "react",
+    "lib": [
+      "dom",
+      "esnext"
+    ],
+    "module": "esnext",
+    "moduleResolution": "node",
+    "noEmitOnError": true,
+    "noImplicitReturns": true,
+    "noUnusedLocals": true,
+    "pretty": true,
+    "removeComments": false,
+    "strict": true,
+    "target": "es2015",
+    "useDefineForClassFields": false,
+    "composite": true,
+    "declarationMap": true,
+    "rootDir": ".",
+    "skipLibCheck": true,
+    "emitDeclarationOnly": true,
+    "resolveJsonModule": true,
+    "typeRoots": [
+      "./node_modules/@types"
+    ]
+  }
+}
\ No newline at end of file
diff --git a/superset-frontend/yarn.lock b/superset-frontend/yarn.lock
new file mode 100644
index 0000000..7ba12d0
--- /dev/null
+++ b/superset-frontend/yarn.lock
@@ -0,0 +1,28763 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@actions/core@^1.2.4":
+  version "1.2.6"
+  resolved "https://registry.yarnpkg.com/@actions/core/-/core-1.2.6.tgz#a78d49f41a4def18e88ce47c2cac615d5694bf09"
+  integrity sha512-ZQYitnqiyBc3D+k7LsgSBmMDVkOVidaagDG7j3fOym77jNunWRuYx7VSHa9GNfFZh+zh61xsCjRj4JxMZlDqTA==
+
+"@actions/github@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@actions/github/-/github-4.0.0.tgz#d520483151a2bf5d2dc9cd0f20f9ac3a2e458816"
+  integrity sha512-Ej/Y2E+VV6sR9X7pWL5F3VgEWrABaT292DRqRU6R4hnQjPtC/zD3nagxVdXWiRQvYDh8kHXo7IDmG42eJ/dOMA==
+  dependencies:
+    "@actions/http-client" "^1.0.8"
+    "@octokit/core" "^3.0.0"
+    "@octokit/plugin-paginate-rest" "^2.2.3"
+    "@octokit/plugin-rest-endpoint-methods" "^4.0.0"
+
+"@actions/http-client@^1.0.8":
+  version "1.0.9"
+  resolved "https://registry.yarnpkg.com/@actions/http-client/-/http-client-1.0.9.tgz#af1947d020043dbc6a3b4c5918892095c30ffb52"
+  integrity sha512-0O4SsJ7q+MK0ycvXPl2e6bMXV7dxAXOGjrXS1eTF9s2S401Tp6c/P3c3Joz04QefC1J6Gt942Wl2jbm3f4mLcg==
+  dependencies:
+    tunnel "0.0.6"
+
+"@airbnb/config-babel@^3.1.0":
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/@airbnb/config-babel/-/config-babel-3.1.0.tgz#82f988093c7474754b5ab1a3c579397309de0162"
+  integrity sha512-pznP4jI9r17lb8W9+3EMmsFQRD18JjDZVwxCleZ1wWKpirVHZuKuXruXiJhCkGHR8pkPRda3P9WMzq7qc9GIEA==
+  dependencies:
+    "@airbnb/nimbus-common" "^3.0.1"
+    "@babel/cli" "^7.8.4"
+    "@babel/core" "^7.9.0"
+    "@babel/plugin-proposal-class-properties" "^7.8.3"
+    "@babel/plugin-transform-react-jsx-self" "^7.9.0"
+    "@babel/plugin-transform-react-jsx-source" "^7.9.0"
+    "@babel/plugin-transform-runtime" "^7.9.0"
+    "@babel/preset-env" "^7.9.0"
+    "@babel/preset-react" "^7.9.4"
+    "@babel/preset-typescript" "^7.9.0"
+    "@beemo/core" "^1.1.6"
+    "@beemo/driver-babel" "^1.2.3"
+    babel-plugin-graphql-tag "^2.5.0"
+    babel-plugin-transform-dev "^2.0.1"
+    babel-plugin-transform-react-remove-prop-types "^0.4.24"
+    babel-plugin-typescript-to-proptypes "^1.3.2"
+
+"@airbnb/config-jest@^3.0.2":
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/@airbnb/config-jest/-/config-jest-3.0.2.tgz#ef5acdcfe588257a1da14ef18848ddbe207b954e"
+  integrity sha512-1NmUNz85gEZGRe7MjeHAREDxt73zKRQaDVTPmy+z8FlavC1AH8ugkUGa/cdnTkD+SVZ5q/Y/1G0f5e8lspMVOQ==
+  dependencies:
+    "@airbnb/nimbus-common" "^3.0.1"
+    "@babel/core" "^7.9.0"
+    "@beemo/core" "^1.1.6"
+    "@beemo/driver-babel" "^1.2.3"
+    "@beemo/driver-jest" "^1.2.1"
+    airbnb-js-shims "^2.2.1"
+    dom-storage "^2.1.0"
+    jest "^25.5.4"
+
+"@airbnb/config-webpack@^3.3.1":
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/@airbnb/config-webpack/-/config-webpack-3.3.1.tgz#6d32654208d863827f254a6df205db56b9642775"
+  integrity sha512-LduFte4q12yMJJoTyH0sYHsgKNpEoTgfMyApPqUZEezl0ikBbvXGvLXzWnHF5wLVH6lS5ns1AV9DrdfE3EZnew==
+  dependencies:
+    "@airbnb/nimbus-common" "^3.0.1"
+    "@babel/core" "^7.9.0"
+    "@beemo/core" "^1.1.6"
+    "@beemo/driver-webpack" "^1.2.4"
+    babel-loader "^8.1.0"
+    execa "^4.0.0"
+    fast-glob "^3.2.2"
+    file-loader "^6.0.0"
+    html-webpack-plugin "^4.0.1"
+    is-docker "^2.0.0"
+    terser-webpack-plugin "^2.3.5"
+    url-loader "^4.0.0"
+    webpack "^4.42.1"
+    webpack-bundle-analyzer "^3.6.1"
+    webpack-cli "^3.3.11"
+    webpack-dev-server "^3.10.3"
+    webpack-graphql-loader "^1.0.2"
+
+"@airbnb/nimbus-common@^3.0.1":
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/@airbnb/nimbus-common/-/nimbus-common-3.0.1.tgz#3f7d2f340b510995ebed17898c9447dad264330c"
+  integrity sha512-Qa/cPOcFktW36UL1RScVvrX06Ybv5/EJ1UBPtLHPi9POMAtq7bV0xe0Q3qSdAHrUp+4a1K4Gt3pjk3OnDAcbBg==
+  dependencies:
+    "@beemo/core" "^1.1.6"
+    "@boost/common" "^1.8.3"
+    execa "^4.0.0"
+    fast-glob "^3.2.2"
+
+"@ant-design/colors@^3.1.0":
+  version "3.2.2"
+  resolved "https://registry.yarnpkg.com/@ant-design/colors/-/colors-3.2.2.tgz#5ad43d619e911f3488ebac303d606e66a8423903"
+  integrity sha512-YKgNbG2dlzqMhA9NtI3/pbY16m3Yl/EeWBRa+lB1X1YaYxHrxNexiQYCLTWO/uDvAjLFMEDU+zR901waBtMtjQ==
+  dependencies:
+    tinycolor2 "^1.4.1"
+
+"@ant-design/colors@^5.0.0":
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/@ant-design/colors/-/colors-5.0.0.tgz#46b73b4cc6935b35fc8b84555e8e42c8cfc190e6"
+  integrity sha512-Pe1rYorgVC1v4f+InDXvIlQH715pO1g7BsOhy/ehX/U6ebPKqojmkYJKU3lF+84Zmvyar7ngZ28hesAa1nWjLg==
+  dependencies:
+    "@ctrl/tinycolor" "^3.1.6"
+
+"@ant-design/css-animation@^1.7.2":
+  version "1.7.3"
+  resolved "https://registry.yarnpkg.com/@ant-design/css-animation/-/css-animation-1.7.3.tgz#60a1c970014e86b28f940510d69e503e428f1136"
+  integrity sha512-LrX0OGZtW+W6iLnTAqnTaoIsRelYeuLZWsrmBJFUXDALQphPsN8cE5DCsmoSlL0QYb94BQxINiuS70Ar/8BNgA==
+
+"@ant-design/icons-svg@^4.0.0":
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz#480b025f4b20ef7fe8f47d4a4846e4fee84ea06c"
+  integrity sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ==
+
+"@ant-design/icons@^4.2.2":
+  version "4.2.2"
+  resolved "https://registry.yarnpkg.com/@ant-design/icons/-/icons-4.2.2.tgz#6533c5a02aec49238ec4748074845ad7d85a4f5e"
+  integrity sha512-DrVV+wcupnHS7PehJ6KiTcJtAR5c25UMgjGECCc6pUT9rsvw0AuYG+a4HDjfxEQuDqKTHwW+oX/nIvCymyLE8Q==
+  dependencies:
+    "@ant-design/colors" "^3.1.0"
+    "@ant-design/icons-svg" "^4.0.0"
+    "@babel/runtime" "^7.10.4"
+    classnames "^2.2.6"
+    insert-css "^2.0.0"
+    rc-util "^5.0.1"
+
+"@ant-design/icons@^4.3.0":
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/@ant-design/icons/-/icons-4.3.0.tgz#420e0cd527486c0fe57f81310d681950fc4cfacf"
+  integrity sha512-UoIbw4oz/L/msbkgqs2nls2KP7XNKScOxVR54wRrWwnXOzJaGNwwSdYjHQz+5ETf8C53YPpzMOnRX99LFCdeIQ==
+  dependencies:
+    "@ant-design/colors" "^5.0.0"
+    "@ant-design/icons-svg" "^4.0.0"
+    "@babel/runtime" "^7.11.2"
+    classnames "^2.2.6"
+    insert-css "^2.0.0"
+    rc-util "^5.0.1"
+
+"@ant-design/icons@^4.4.0":
+  version "4.4.0"
+  resolved "http://localhost:4873/@ant-design%2ficons/-/icons-4.4.0.tgz#d4e4ba5910454e1d3f67a802d2aad9ee75a51dea"
+  integrity sha512-+X44IouK56JbP3r7zM+Zoykv5wQlXBlxY0NTaFXGpiyYSS/Bh6HIo9aTF62QkSuDTqA3UpeNVTRFioKKRmkWDQ==
+  dependencies:
+    "@ant-design/colors" "^5.0.0"
+    "@ant-design/icons-svg" "^4.0.0"
+    "@babel/runtime" "^7.11.2"
+    classnames "^2.2.6"
+    insert-css "^2.0.0"
+    rc-util "^5.0.1"
+
+"@ant-design/react-slick@~0.27.0":
+  version "0.27.11"
+  resolved "https://registry.yarnpkg.com/@ant-design/react-slick/-/react-slick-0.27.11.tgz#ce788312ed8e64fcba2f7bb4556f47486b407c6e"
+  integrity sha512-KPJ1lleHW11bameFauI77Lb9N7O/4ulT1kplVdRQykWLv3oKVSGKVaekC3DM/Z0MYmKfCXCucpFnfgGMEHNM+w==
+  dependencies:
+    "@babel/runtime" "^7.10.4"
+    classnames "^2.2.5"
+    json2mq "^0.2.0"
+    lodash "^4.17.15"
+    resize-observer-polyfill "^1.5.0"
+
+"@ant-design/react-slick@~0.28.1":
+  version "0.28.1"
+  resolved "http://localhost:4873/@ant-design%2freact-slick/-/react-slick-0.28.1.tgz#2e0720838cb57ab8818384dcc96b2a8c61fcd01e"
+  integrity sha512-Uk+GNexHOmiK3BMk/xvliNsNt+LYnN49u5o4lqeuMKXJlNqE9kGpEF03KpxDqu/zybO0/0yAJALha8oPtR5iHA==
+  dependencies:
+    "@babel/runtime" "^7.10.4"
+    classnames "^2.2.5"
+    json2mq "^0.2.0"
+    lodash "^4.17.15"
+    resize-observer-polyfill "^1.5.0"
+
+"@babel/cli@^7.11.5", "@babel/cli@^7.8.4":
+  version "7.12.10"
+  resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.12.10.tgz#67a1015b1cd505bde1696196febf910c4c339a48"
+  integrity sha512-+y4ZnePpvWs1fc/LhZRTHkTesbXkyBYuOB+5CyodZqrEuETXi3zOVfpAQIdgC3lXbHLTDG9dQosxR9BhvLKDLQ==
+  dependencies:
+    commander "^4.0.1"
+    convert-source-map "^1.1.0"
+    fs-readdir-recursive "^1.1.0"
+    glob "^7.0.0"
+    lodash "^4.17.19"
+    make-dir "^2.1.0"
+    slash "^2.0.0"
+    source-map "^0.5.0"
+  optionalDependencies:
+    "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents"
+    chokidar "^3.4.0"
+
+"@babel/cli@^7.12.10":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fcli/-/cli-7.12.13.tgz#ae2c6a75fa43f3db4bca0659799b0dfca3f5212b"
+  integrity sha512-Zto3HPeE0GRmaxobUl7NvFTo97NKe1zdAuWqTO8oka7nE0IIqZ4CFvuRZe1qf+ZMd7eHMhwqrecjwc10mjXo/g==
+  dependencies:
+    commander "^4.0.1"
+    convert-source-map "^1.1.0"
+    fs-readdir-recursive "^1.1.0"
+    glob "^7.0.0"
+    lodash "^4.17.19"
+    make-dir "^2.1.0"
+    slash "^2.0.0"
+    source-map "^0.5.0"
+  optionalDependencies:
+    "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents"
+    chokidar "^3.4.0"
+
+"@babel/code-frame@7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
+  integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
+  dependencies:
+    "@babel/highlight" "^7.0.0"
+
+"@babel/code-frame@7.8.3":
+  version "7.8.3"
+  resolved "http://localhost:4873/@babel%2fcode-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e"
+  integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
+  dependencies:
+    "@babel/highlight" "^7.8.3"
+
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.3":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
+  integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
+  dependencies:
+    "@babel/highlight" "^7.10.4"
+
+"@babel/code-frame@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fcode-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
+  integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
+  dependencies:
+    "@babel/highlight" "^7.12.13"
+
+"@babel/compat-data@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fcompat-data/-/compat-data-7.12.13.tgz#27e19e0ed3726ccf54067ced4109501765e7e2e8"
+  integrity sha512-U/hshG5R+SIoW7HVWIdmy1cB7s3ki+r3FpyEZiCgpi4tFgPnX/vynY80ZGSASOIrUM6O7VxOgCZgdt7h97bUGg==
+
+"@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7", "@babel/compat-data@^7.9.6":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41"
+  integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==
+
+"@babel/core@7.12.9", "@babel/core@^7.8.7":
+  version "7.12.9"
+  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
+  integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
+  dependencies:
+    "@babel/code-frame" "^7.10.4"
+    "@babel/generator" "^7.12.5"
+    "@babel/helper-module-transforms" "^7.12.1"
+    "@babel/helpers" "^7.12.5"
+    "@babel/parser" "^7.12.7"
+    "@babel/template" "^7.12.7"
+    "@babel/traverse" "^7.12.9"
+    "@babel/types" "^7.12.7"
+    convert-source-map "^1.7.0"
+    debug "^4.1.0"
+    gensync "^1.0.0-beta.1"
+    json5 "^2.1.2"
+    lodash "^4.17.19"
+    resolve "^1.3.2"
+    semver "^5.4.1"
+    source-map "^0.5.0"
+
+"@babel/core@^7.1.0", "@babel/core@^7.4.5", "@babel/core@^7.7.5", "@babel/core@^7.9.0":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.4.tgz#780e8b83e496152f8dd7df63892b2e052bf1d51d"
+  integrity sha512-3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA==
+  dependencies:
+    "@babel/code-frame" "^7.10.4"
+    "@babel/generator" "^7.10.4"
+    "@babel/helper-module-transforms" "^7.10.4"
+    "@babel/helpers" "^7.10.4"
+    "@babel/parser" "^7.10.4"
+    "@babel/template" "^7.10.4"
+    "@babel/traverse" "^7.10.4"
+    "@babel/types" "^7.10.4"
+    convert-source-map "^1.7.0"
+    debug "^4.1.0"
+    gensync "^1.0.0-beta.1"
+    json5 "^2.1.2"
+    lodash "^4.17.13"
+    resolve "^1.3.2"
+    semver "^5.4.1"
+    source-map "^0.5.0"
+
+"@babel/core@^7.12.1", "@babel/core@^7.12.10", "@babel/core@^7.12.3":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fcore/-/core-7.12.13.tgz#b73a87a3a3e7d142a66248bf6ad88b9ceb093425"
+  integrity sha512-BQKE9kXkPlXHPeqissfxo0lySWJcYdEP0hdtJOH/iJfDdhOCcgtNCjftCJg3qqauB4h+lz2N6ixM++b9DN1Tcw==
+  dependencies:
+    "@babel/code-frame" "^7.12.13"
+    "@babel/generator" "^7.12.13"
+    "@babel/helper-module-transforms" "^7.12.13"
+    "@babel/helpers" "^7.12.13"
+    "@babel/parser" "^7.12.13"
+    "@babel/template" "^7.12.13"
+    "@babel/traverse" "^7.12.13"
+    "@babel/types" "^7.12.13"
+    convert-source-map "^1.7.0"
+    debug "^4.1.0"
+    gensync "^1.0.0-beta.1"
+    json5 "^2.1.2"
+    lodash "^4.17.19"
+    semver "^5.4.1"
+    source-map "^0.5.0"
+
+"@babel/generator@7.0.0-beta.38":
+  version "7.0.0-beta.38"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.38.tgz#6115a66663e3adfd1d6844029ffb2354680182eb"
+  integrity sha512-aOHQPhsEyaB6p2n+AK981+onHoc+Ork9rcAQVSUJR33wUkGiWRpu6/C685knRyIZVsKeSdG5Q4xMiYeFUhuLzA==
+  dependencies:
+    "@babel/types" "7.0.0-beta.38"
+    jsesc "^2.5.1"
+    lodash "^4.2.0"
+    source-map "^0.5.0"
+    trim-right "^1.0.1"
+
+"@babel/generator@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.4.tgz#e49eeed9fe114b62fa5b181856a43a5e32f5f243"
+  integrity sha512-toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng==
+  dependencies:
+    "@babel/types" "^7.10.4"
+    jsesc "^2.5.1"
+    lodash "^4.17.13"
+    source-map "^0.5.0"
+
+"@babel/generator@^7.12.1", "@babel/generator@^7.12.13":
+  version "7.12.15"
+  resolved "http://localhost:4873/@babel%2fgenerator/-/generator-7.12.15.tgz#4617b5d0b25cc572474cc1aafee1edeaf9b5368f"
+  integrity sha512-6F2xHxBiFXWNSGb7vyCUTBF8RCLY66rS0zEPcP8t/nQyXjha5EuK4z7H5o7fWG8B4M7y6mqVWq1J+1PuwRhecQ==
+  dependencies:
+    "@babel/types" "^7.12.13"
+    jsesc "^2.5.1"
+    source-map "^0.5.0"
+
+"@babel/generator@^7.12.5", "@babel/generator@^7.4.0":
+  version "7.12.5"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de"
+  integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==
+  dependencies:
+    "@babel/types" "^7.12.5"
+    jsesc "^2.5.1"
+    source-map "^0.5.0"
+
+"@babel/helper-annotate-as-pure@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3"
+  integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==
+  dependencies:
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-annotate-as-pure@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab"
+  integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==
+  dependencies:
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-annotate-as-pure@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee"
+  integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==
+  dependencies:
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
+  integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
+  dependencies:
+    "@babel/helper-explode-assignable-expression" "^7.10.4"
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc"
+  integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==
+  dependencies:
+    "@babel/helper-explode-assignable-expression" "^7.12.13"
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-builder-react-jsx-experimental@^7.12.4":
+  version "7.12.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz#55fc1ead5242caa0ca2875dcb8eed6d311e50f48"
+  integrity sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.10.4"
+    "@babel/helper-module-imports" "^7.12.1"
+    "@babel/types" "^7.12.1"
+
+"@babel/helper-builder-react-jsx-experimental@^7.9.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.0.tgz#066d80262ade488f9c1b1823ce5db88a4cedaa43"
+  integrity sha512-3xJEiyuYU4Q/Ar9BsHisgdxZsRlsShMe90URZ0e6przL26CCs8NJbDoxH94kKT17PcxlMhsCAwZd90evCo26VQ==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.8.3"
+    "@babel/helper-module-imports" "^7.8.3"
+    "@babel/types" "^7.9.0"
+
+"@babel/helper-builder-react-jsx@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d"
+  integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.10.4"
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-builder-react-jsx@^7.9.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32"
+  integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.8.3"
+    "@babel/types" "^7.9.0"
+
+"@babel/helper-compilation-targets@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-compilation-targets/-/helper-compilation-targets-7.12.13.tgz#d689cdef88810aa74e15a7a94186f26a3d773c98"
+  integrity sha512-dXof20y/6wB5HnLOGyLh/gobsMvDNoekcC+8MCV2iaTd5JemhFkPD73QB+tK3iFC9P0xJC73B6MvKkyUfS9cCw==
+  dependencies:
+    "@babel/compat-data" "^7.12.13"
+    "@babel/helper-validator-option" "^7.12.11"
+    browserslist "^4.14.5"
+    semver "^5.5.0"
+
+"@babel/helper-compilation-targets@^7.12.5":
+  version "7.12.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831"
+  integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==
+  dependencies:
+    "@babel/compat-data" "^7.12.5"
+    "@babel/helper-validator-option" "^7.12.1"
+    browserslist "^4.14.5"
+    semver "^5.5.0"
+
+"@babel/helper-create-class-features-plugin@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e"
+  integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==
+  dependencies:
+    "@babel/helper-function-name" "^7.10.4"
+    "@babel/helper-member-expression-to-functions" "^7.12.1"
+    "@babel/helper-optimise-call-expression" "^7.10.4"
+    "@babel/helper-replace-supers" "^7.12.1"
+    "@babel/helper-split-export-declaration" "^7.10.4"
+
+"@babel/helper-create-class-features-plugin@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.13.tgz#0f1707c2eec1a4604f2a22a6fb209854ef2a399a"
+  integrity sha512-Vs/e9wv7rakKYeywsmEBSRC9KtmE7Px+YBlESekLeJOF0zbGUicGfXSNi3o+tfXSNS48U/7K9mIOOCR79Cl3+Q==
+  dependencies:
+    "@babel/helper-function-name" "^7.12.13"
+    "@babel/helper-member-expression-to-functions" "^7.12.13"
+    "@babel/helper-optimise-call-expression" "^7.12.13"
+    "@babel/helper-replace-supers" "^7.12.13"
+    "@babel/helper-split-export-declaration" "^7.12.13"
+
+"@babel/helper-create-class-features-plugin@^7.8.3":
+  version "7.8.6"
+  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.6.tgz#243a5b46e2f8f0f674dc1387631eb6b28b851de0"
+  integrity sha512-klTBDdsr+VFFqaDHm5rR69OpEQtO2Qv8ECxHS1mNhJJvaHArR6a1xTf5K/eZW7eZpJbhCx3NW1Yt/sKsLXLblg==
+  dependencies:
+    "@babel/helper-function-name" "^7.8.3"
+    "@babel/helper-member-expression-to-functions" "^7.8.3"
+    "@babel/helper-optimise-call-expression" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/helper-replace-supers" "^7.8.6"
+    "@babel/helper-split-export-declaration" "^7.8.3"
+
+"@babel/helper-create-regexp-features-plugin@^7.12.1":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f"
+  integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.10.4"
+    regexpu-core "^4.7.1"
+
+"@babel/helper-create-regexp-features-plugin@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.13.tgz#0996d370a92896c612ae41a4215544bd152579c0"
+  integrity sha512-XC+kiA0J3at6E85dL5UnCYfVOcIZ834QcAY0TIpgUVnz0zDzg+0TtvZTnJ4g9L1dPRGe30Qi03XCIS4tYCLtqw==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.12.13"
+    regexpu-core "^4.7.1"
+
+"@babel/helper-define-map@^7.10.4":
+  version "7.10.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
+  integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
+  dependencies:
+    "@babel/helper-function-name" "^7.10.4"
+    "@babel/types" "^7.10.5"
+    lodash "^4.17.19"
+
+"@babel/helper-explode-assignable-expression@^7.10.4":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633"
+  integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==
+  dependencies:
+    "@babel/types" "^7.12.1"
+
+"@babel/helper-explode-assignable-expression@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.13.tgz#0e46990da9e271502f77507efa4c9918d3d8634a"
+  integrity sha512-5loeRNvMo9mx1dA/d6yNi+YiKziJZFylZnCo1nmFF4qPU4yJ14abhWESuSMQSlQxWdxdOFzxXjk/PpfudTtYyw==
+  dependencies:
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-function-name@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
+  integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
+  dependencies:
+    "@babel/helper-get-function-arity" "^7.10.4"
+    "@babel/template" "^7.10.4"
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-function-name@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a"
+  integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==
+  dependencies:
+    "@babel/helper-get-function-arity" "^7.12.13"
+    "@babel/template" "^7.12.13"
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-function-name@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca"
+  integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==
+  dependencies:
+    "@babel/helper-get-function-arity" "^7.8.3"
+    "@babel/template" "^7.8.3"
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-get-function-arity@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
+  integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
+  dependencies:
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-get-function-arity@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583"
+  integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
+  dependencies:
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-get-function-arity@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5"
+  integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==
+  dependencies:
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-hoist-variables@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
+  integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
+  dependencies:
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-hoist-variables@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-hoist-variables/-/helper-hoist-variables-7.12.13.tgz#13aba58b7480b502362316ea02f52cca0e9796cd"
+  integrity sha512-KSC5XSj5HreRhYQtZ3cnSnQwDzgnbdUDEFsxkN0m6Q3WrCRt72xrnZ8+h+pX7YxM7hr87zIO3a/v5p/H3TrnVw==
+  dependencies:
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-member-expression-to-functions@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.4.tgz#7cd04b57dfcf82fce9aeae7d4e4452fa31b8c7c4"
+  integrity sha512-m5j85pK/KZhuSdM/8cHUABQTAslV47OjfIB9Cc7P+PvlAoBzdb79BGNfw8RhT5Mq3p+xGd0ZfAKixbrUZx0C7A==
+  dependencies:
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-member-expression-to-functions@^7.12.1":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855"
+  integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==
+  dependencies:
+    "@babel/types" "^7.12.7"
+
+"@babel/helper-member-expression-to-functions@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.13.tgz#c5715695b4f8bab32660dbdcdc2341dec7e3df40"
+  integrity sha512-B+7nN0gIL8FZ8SvMcF+EPyB21KnCcZHQZFczCxbiNGV/O0rsrSBlWGLzmtBJ3GMjSVMIm4lpFhR+VdVBuIsUcQ==
+  dependencies:
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-member-expression-to-functions@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c"
+  integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==
+  dependencies:
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5", "@babel/helper-module-imports@^7.8.3":
+  version "7.12.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb"
+  integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
+  dependencies:
+    "@babel/types" "^7.12.5"
+
+"@babel/helper-module-imports@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-module-imports/-/helper-module-imports-7.12.13.tgz#ec67e4404f41750463e455cc3203f6a32e93fcb0"
+  integrity sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==
+  dependencies:
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-module-transforms@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.4.tgz#ca1f01fdb84e48c24d7506bb818c961f1da8805d"
+  integrity sha512-Er2FQX0oa3nV7eM1o0tNCTx7izmQtwAQsIiaLRWtavAAEcskb0XJ5OjJbVrYXWOTr8om921Scabn4/tzlx7j1Q==
+  dependencies:
+    "@babel/helper-module-imports" "^7.10.4"
+    "@babel/helper-replace-supers" "^7.10.4"
+    "@babel/helper-simple-access" "^7.10.4"
+    "@babel/helper-split-export-declaration" "^7.10.4"
+    "@babel/template" "^7.10.4"
+    "@babel/types" "^7.10.4"
+    lodash "^4.17.13"
+
+"@babel/helper-module-transforms@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c"
+  integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==
+  dependencies:
+    "@babel/helper-module-imports" "^7.12.1"
+    "@babel/helper-replace-supers" "^7.12.1"
+    "@babel/helper-simple-access" "^7.12.1"
+    "@babel/helper-split-export-declaration" "^7.11.0"
+    "@babel/helper-validator-identifier" "^7.10.4"
+    "@babel/template" "^7.10.4"
+    "@babel/traverse" "^7.12.1"
+    "@babel/types" "^7.12.1"
+    lodash "^4.17.19"
+
+"@babel/helper-module-transforms@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-module-transforms/-/helper-module-transforms-7.12.13.tgz#01afb052dcad2044289b7b20beb3fa8bd0265bea"
+  integrity sha512-acKF7EjqOR67ASIlDTupwkKM1eUisNAjaSduo5Cz+793ikfnpe7p4Q7B7EWU2PCoSTPWsQkR7hRUWEIZPiVLGA==
+  dependencies:
+    "@babel/helper-module-imports" "^7.12.13"
+    "@babel/helper-replace-supers" "^7.12.13"
+    "@babel/helper-simple-access" "^7.12.13"
+    "@babel/helper-split-export-declaration" "^7.12.13"
+    "@babel/helper-validator-identifier" "^7.12.11"
+    "@babel/template" "^7.12.13"
+    "@babel/traverse" "^7.12.13"
+    "@babel/types" "^7.12.13"
+    lodash "^4.17.19"
+
+"@babel/helper-optimise-call-expression@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673"
+  integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
+  dependencies:
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-optimise-call-expression@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea"
+  integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==
+  dependencies:
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-optimise-call-expression@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9"
+  integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==
+  dependencies:
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-plugin-utils@7.10.4", "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
+  integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
+
+"@babel/helper-plugin-utils@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-plugin-utils/-/helper-plugin-utils-7.12.13.tgz#174254d0f2424d8aefb4dd48057511247b0a9eeb"
+  integrity sha512-C+10MXCXJLiR6IeG9+Wiejt9jmtFpxUc3MQqCmPY8hfCjyUGl9kT+B2okzEZrtykiwrc4dbCPdDoz0A/HQbDaA==
+
+"@babel/helper-remap-async-to-generator@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd"
+  integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.10.4"
+    "@babel/helper-wrap-function" "^7.10.4"
+    "@babel/types" "^7.12.1"
+
+"@babel/helper-remap-async-to-generator@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.13.tgz#170365f4140e2d20e5c88f8ba23c24468c296878"
+  integrity sha512-Qa6PU9vNcj1NZacZZI1Mvwt+gXDH6CTfgAkSjeRMLE8HxtDK76+YDId6NQR+z7Rgd5arhD2cIbS74r0SxD6PDA==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.12.13"
+    "@babel/helper-wrap-function" "^7.12.13"
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-replace-supers@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf"
+  integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==
+  dependencies:
+    "@babel/helper-member-expression-to-functions" "^7.10.4"
+    "@babel/helper-optimise-call-expression" "^7.10.4"
+    "@babel/traverse" "^7.10.4"
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-replace-supers@^7.12.1":
+  version "7.12.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9"
+  integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==
+  dependencies:
+    "@babel/helper-member-expression-to-functions" "^7.12.1"
+    "@babel/helper-optimise-call-expression" "^7.10.4"
+    "@babel/traverse" "^7.12.5"
+    "@babel/types" "^7.12.5"
+
+"@babel/helper-replace-supers@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-replace-supers/-/helper-replace-supers-7.12.13.tgz#00ec4fb6862546bd3d0aff9aac56074277173121"
+  integrity sha512-pctAOIAMVStI2TMLhozPKbf5yTEXc0OJa0eENheb4w09SrgOWEs+P4nTOZYJQCqs8JlErGLDPDJTiGIp3ygbLg==
+  dependencies:
+    "@babel/helper-member-expression-to-functions" "^7.12.13"
+    "@babel/helper-optimise-call-expression" "^7.12.13"
+    "@babel/traverse" "^7.12.13"
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-replace-supers@^7.8.6":
+  version "7.8.6"
+  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8"
+  integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA==
+  dependencies:
+    "@babel/helper-member-expression-to-functions" "^7.8.3"
+    "@babel/helper-optimise-call-expression" "^7.8.3"
+    "@babel/traverse" "^7.8.6"
+    "@babel/types" "^7.8.6"
+
+"@babel/helper-simple-access@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461"
+  integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==
+  dependencies:
+    "@babel/template" "^7.10.4"
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-simple-access@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136"
+  integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==
+  dependencies:
+    "@babel/types" "^7.12.1"
+
+"@babel/helper-simple-access@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-simple-access/-/helper-simple-access-7.12.13.tgz#8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4"
+  integrity sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==
+  dependencies:
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf"
+  integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==
+  dependencies:
+    "@babel/types" "^7.12.1"
+
+"@babel/helper-split-export-declaration@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1"
+  integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg==
+  dependencies:
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-split-export-declaration@^7.11.0":
+  version "7.11.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
+  integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
+  dependencies:
+    "@babel/types" "^7.11.0"
+
+"@babel/helper-split-export-declaration@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05"
+  integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
+  dependencies:
+    "@babel/types" "^7.12.13"
+
+"@babel/helper-split-export-declaration@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9"
+  integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==
+  dependencies:
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-validator-identifier@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
+  integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
+
+"@babel/helper-validator-identifier@^7.12.11":
+  version "7.12.11"
+  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
+  integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
+
+"@babel/helper-validator-identifier@^7.9.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz#ad53562a7fc29b3b9a91bbf7d10397fd146346ed"
+  integrity sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw==
+
+"@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.11":
+  version "7.12.11"
+  resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz#d66cb8b7a3e7fe4c6962b32020a131ecf0847f4f"
+  integrity sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==
+
+"@babel/helper-wrap-function@^7.10.4":
+  version "7.12.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9"
+  integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==
+  dependencies:
+    "@babel/helper-function-name" "^7.10.4"
+    "@babel/template" "^7.10.4"
+    "@babel/traverse" "^7.10.4"
+    "@babel/types" "^7.10.4"
+
+"@babel/helper-wrap-function@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelper-wrap-function/-/helper-wrap-function-7.12.13.tgz#e3ea8cb3ee0a16911f9c1b50d9e99fe8fe30f9ff"
+  integrity sha512-t0aZFEmBJ1LojdtJnhOaQEVejnzYhyjWHSsNSNo8vOYRbAJNh6r6GQF7pd36SqG7OKGbn+AewVQ/0IfYfIuGdw==
+  dependencies:
+    "@babel/helper-function-name" "^7.12.13"
+    "@babel/template" "^7.12.13"
+    "@babel/traverse" "^7.12.13"
+    "@babel/types" "^7.12.13"
+
+"@babel/helpers@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044"
+  integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==
+  dependencies:
+    "@babel/template" "^7.10.4"
+    "@babel/traverse" "^7.10.4"
+    "@babel/types" "^7.10.4"
+
+"@babel/helpers@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhelpers/-/helpers-7.12.13.tgz#3c75e993632e4dadc0274eae219c73eb7645ba47"
+  integrity sha512-oohVzLRZ3GQEk4Cjhfs9YkJA4TdIDTObdBEZGrd6F/T0GPSnuV6l22eMcxlvcvzVIPH3VTtxbseudM1zIE+rPQ==
+  dependencies:
+    "@babel/template" "^7.12.13"
+    "@babel/traverse" "^7.12.13"
+    "@babel/types" "^7.12.13"
+
+"@babel/helpers@^7.12.5":
+  version "7.12.5"
+  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e"
+  integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
+  dependencies:
+    "@babel/template" "^7.10.4"
+    "@babel/traverse" "^7.12.5"
+    "@babel/types" "^7.12.5"
+
+"@babel/highlight@^7.0.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079"
+  integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==
+  dependencies:
+    "@babel/helper-validator-identifier" "^7.9.0"
+    chalk "^2.0.0"
+    js-tokens "^4.0.0"
+
+"@babel/highlight@^7.10.4":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
+  integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
+  dependencies:
+    "@babel/helper-validator-identifier" "^7.10.4"
+    chalk "^2.0.0"
+    js-tokens "^4.0.0"
+
+"@babel/highlight@^7.12.13", "@babel/highlight@^7.8.3":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fhighlight/-/highlight-7.12.13.tgz#8ab538393e00370b26271b01fa08f7f27f2e795c"
+  integrity sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==
+  dependencies:
+    "@babel/helper-validator-identifier" "^7.12.11"
+    chalk "^2.0.0"
+    js-tokens "^4.0.0"
+
+"@babel/node@^7.12.10":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fnode/-/node-7.12.13.tgz#76f30524f0aabdcc10c7beff9cc63c0e9ae2f46e"
+  integrity sha512-ACLDLxlNsJZxPnwSSwuXp87KwjKY0NAFko6QCnBjJlxd+gKUDLLG0Y49jO+/EwqMJd9D5/BkYn5Qb1bgrYnHSA==
+  dependencies:
+    "@babel/register" "^7.12.13"
+    commander "^4.0.1"
+    core-js "^3.2.1"
+    lodash "^4.17.19"
+    node-environment-flags "^1.0.5"
+    regenerator-runtime "^0.13.4"
+    v8flags "^3.1.1"
+
+"@babel/node@^7.8.7":
+  version "7.12.6"
+  resolved "https://registry.yarnpkg.com/@babel/node/-/node-7.12.6.tgz#28d40382d50d4dd9c6e712780c0443c6bf7be5c2"
+  integrity sha512-A1TpW2X05ZkI5+WV7Aa24QX4LyGwrGUQPflG1CyBdr84jUuH0mhkE2BQWSQAlfRnp4bMLjeveMJIhS20JaOfVQ==
+  dependencies:
+    "@babel/register" "^7.12.1"
+    commander "^4.0.1"
+    core-js "^3.2.1"
+    lodash "^4.17.19"
+    node-environment-flags "^1.0.5"
+    regenerator-runtime "^0.13.4"
+    resolve "^1.13.1"
+    v8flags "^3.1.1"
+
+"@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.10.4", "@babel/parser@^7.3.2", "@babel/parser@^7.7.0", "@babel/parser@^7.7.5":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.4.tgz#9eedf27e1998d87739fb5028a5120557c06a1a64"
+  integrity sha512-8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA==
+
+"@babel/parser@^7.12.13", "@babel/parser@^7.12.3":
+  version "7.12.15"
+  resolved "http://localhost:4873/@babel%2fparser/-/parser-7.12.15.tgz#2b20de7f0b4b332d9b119dd9c33409c538b8aacf"
+  integrity sha512-AQBOU2Z9kWwSZMd6lNjCX0GUgFonL1wAM1db8L8PMk9UDaGsRCArBkU4Sc+UCM3AE4hjbXx+h58Lb3QT4oRmrA==
+
+"@babel/parser@^7.12.7", "@babel/parser@^7.4.3":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056"
+  integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==
+
+"@babel/plugin-proposal-async-generator-functions@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e"
+  integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-remap-async-to-generator" "^7.12.1"
+    "@babel/plugin-syntax-async-generators" "^7.8.0"
+
+"@babel/plugin-proposal-async-generator-functions@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.13.tgz#d1c6d841802ffb88c64a2413e311f7345b9e66b5"
+  integrity sha512-1KH46Hx4WqP77f978+5Ye/VUbuwQld2hph70yaw2hXS2v7ER2f3nlpNMu909HO2rbvP0NKLlMVDPh9KXklVMhA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-remap-async-to-generator" "^7.12.13"
+    "@babel/plugin-syntax-async-generators" "^7.8.0"
+
+"@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.7.0", "@babel/plugin-proposal-class-properties@^7.8.3":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de"
+  integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
+  dependencies:
+    "@babel/helper-create-class-features-plugin" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-proposal-class-properties@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.13.tgz#3d2ce350367058033c93c098e348161d6dc0d8c8"
+  integrity sha512-8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA==
+  dependencies:
+    "@babel/helper-create-class-features-plugin" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-proposal-decorators@^7.12.1":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-decorators/-/plugin-proposal-decorators-7.12.13.tgz#d4c89b40c2b7a526b0d394de4f4def36191e413e"
+  integrity sha512-x2aOr5w4ARJoYHFKoG2iEUL/Xe99JAJXjAasHijXp3/KgaetJXGE62SmHgsW3Tia/XUT5AxF2YC0F+JyhPY/0Q==
+  dependencies:
+    "@babel/helper-create-class-features-plugin" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-decorators" "^7.12.13"
+
+"@babel/plugin-proposal-dynamic-import@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc"
+  integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-dynamic-import" "^7.8.0"
+
+"@babel/plugin-proposal-export-default-from@^7.12.1":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.12.13.tgz#f110284108a9b2b96f01b15b3be9e54c2610a989"
+  integrity sha512-idIsBT+DGXdOHL82U+8bwX4goHm/z10g8sGGrQroh+HCRcm7mDv/luaGdWJQMTuCX2FsdXS7X0Nyyzp4znAPJA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-export-default-from" "^7.12.13"
+
+"@babel/plugin-proposal-export-namespace-from@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4"
+  integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+
+"@babel/plugin-proposal-export-namespace-from@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz#393be47a4acd03fa2af6e3cde9b06e33de1b446d"
+  integrity sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+
+"@babel/plugin-proposal-json-strings@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c"
+  integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-json-strings" "^7.8.0"
+
+"@babel/plugin-proposal-json-strings@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.13.tgz#ced7888a2db92a3d520a2e35eb421fdb7fcc9b5d"
+  integrity sha512-v9eEi4GiORDg8x+Dmi5r8ibOe0VXoKDeNPYcTTxdGN4eOWikrJfDJCJrr1l5gKGvsNyGJbrfMftC2dTL6oz7pg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-json-strings" "^7.8.0"
+
+"@babel/plugin-proposal-logical-assignment-operators@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751"
+  integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
+"@babel/plugin-proposal-logical-assignment-operators@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.13.tgz#575b5d9a08d8299eeb4db6430da6e16e5cf14350"
+  integrity sha512-fqmiD3Lz7jVdK6kabeSr1PZlWSUVqSitmHEe3Z00dtGTKieWnX9beafvavc32kjORa5Bai4QNHgFDwWJP+WtSQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c"
+  integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
+
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.13.tgz#24867307285cee4e1031170efd8a7ac807deefde"
+  integrity sha512-Qoxpy+OxhDBI5kRqliJFAl4uWXk3Bn24WeFstPH0iLymFehSAUR8MHpqU7njyXv/qbo7oN6yTy5bfCmXdKpo1Q==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
+
+"@babel/plugin-proposal-numeric-separator@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz#bd9da3188e787b5120b4f9d465a8261ce67ed1db"
+  integrity sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+
+"@babel/plugin-proposal-numeric-separator@^7.12.7":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b"
+  integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+
+"@babel/plugin-proposal-object-rest-spread@7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.6.2":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069"
+  integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
+    "@babel/plugin-transform-parameters" "^7.12.1"
+
+"@babel/plugin-proposal-object-rest-spread@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.13.tgz#f93f3116381ff94bc676fdcb29d71045cd1ec011"
+  integrity sha512-WvA1okB/0OS/N3Ldb3sziSrXg6sRphsBgqiccfcQq7woEn5wQLNX82Oc4PlaFcdwcWHuQXAtb8ftbS8Fbsg/sg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
+    "@babel/plugin-transform-parameters" "^7.12.13"
+
+"@babel/plugin-proposal-optional-catch-binding@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942"
+  integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
+
+"@babel/plugin-proposal-optional-catch-binding@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.13.tgz#4640520afe57728af14b4d1574ba844f263bcae5"
+  integrity sha512-9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
+
+"@babel/plugin-proposal-optional-chaining@^7.12.1", "@babel/plugin-proposal-optional-chaining@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.13.tgz#63a7d805bc8ce626f3234ee5421a2a7fb23f66d9"
+  integrity sha512-0ZwjGfTcnZqyV3y9DSD1Yk3ebp+sIUpT2YDqP8hovzaNZnQq2Kd7PEqa6iOIUDBXBt7Jl3P7YAcEIL5Pz8u09Q==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+    "@babel/plugin-syntax-optional-chaining" "^7.8.0"
+
+"@babel/plugin-proposal-optional-chaining@^7.12.7", "@babel/plugin-proposal-optional-chaining@^7.8.3":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c"
+  integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+    "@babel/plugin-syntax-optional-chaining" "^7.8.0"
+
+"@babel/plugin-proposal-private-methods@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389"
+  integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==
+  dependencies:
+    "@babel/helper-create-class-features-plugin" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-proposal-private-methods@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.13.tgz#ea78a12554d784ecf7fc55950b752d469d9c4a71"
+  integrity sha512-sV0V57uUwpauixvR7s2o75LmwJI6JECwm5oPUY5beZB1nBl2i37hc7CJGqB5G+58fur5Y6ugvl3LRONk5x34rg==
+  dependencies:
+    "@babel/helper-create-class-features-plugin" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072"
+  integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-proposal-unicode-property-regex@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba"
+  integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4":
+  version "7.8.4"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
+  integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-bigint@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
+  integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-class-properties@^7.12.1", "@babel/plugin-syntax-class-properties@^7.8.3":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978"
+  integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-class-properties@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
+  integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-decorators@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz#fac829bf3c7ef4a1bc916257b403e58c6bdaf648"
+  integrity sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
+  integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-export-default-from@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.12.13.tgz#3c807d37efaf0a806f1deb556ccb3b2f562ae9c2"
+  integrity sha512-gVry0zqoums0hA+EniCYK3gABhjYSLX1dVuwYpPw9DrLNA4/GovXySHVg4FGRsZht09ON/5C2NVx3keq+qqVGQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-export-namespace-from@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
+  integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-syntax-flow@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz#5df9962503c0a9c918381c929d51d4d6949e7e86"
+  integrity sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-flow@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz#f2c883bd61a6316f2c89380ae5122f923ba4527f"
+  integrity sha512-innAx3bUbA0KSYj2E2MNFSn9hiCeowOFLxlsuhXzw8hMQnzkDomUr9QCD7E9VF60NmnG1sNTuuv6Qf4f8INYsg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-syntax-import-meta@^7.8.3":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
+  integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
+  integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-jsx@7.12.1", "@babel/plugin-syntax-jsx@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926"
+  integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-jsx@^7.12.13", "@babel/plugin-syntax-jsx@^7.2.0":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz#044fb81ebad6698fe62c478875575bcbb9b70f15"
+  integrity sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-jsx@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94"
+  integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
+  integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
+  integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
+  integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
+  integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
+  integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
+  integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-top-level-await@^7.12.1", "@babel/plugin-syntax-top-level-await@^7.8.3":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0"
+  integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-top-level-await@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178"
+  integrity sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-typescript@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.1.tgz#460ba9d77077653803c3dd2e673f76d66b4029e5"
+  integrity sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-typescript@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz#9dff111ca64154cef0f4dc52cf843d9f12ce4474"
+  integrity sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-typescript@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.8.3.tgz#c1f659dda97711a569cef75275f7e15dcaa6cabc"
+  integrity sha512-GO1MQ/SGGGoiEXY0e0bSpHimJvxqB7lktLLIq2pv8xG7WZ8IMEle74jIe1FhprHBWjwjZtXHkycDLZXIWM5Wfg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-transform-arrow-functions@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3"
+  integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-arrow-functions@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.13.tgz#eda5670b282952100c229f8a3bd49e0f6a72e9fe"
+  integrity sha512-tBtuN6qtCTd+iHzVZVOMNp+L04iIJBpqkdY42tWbmjIT5wvR2kx7gxMBsyhQtFzHwBbyGi9h8J8r9HgnOpQHxg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-async-to-generator@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1"
+  integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==
+  dependencies:
+    "@babel/helper-module-imports" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-remap-async-to-generator" "^7.12.1"
+
+"@babel/plugin-transform-async-to-generator@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.13.tgz#fed8c69eebf187a535bfa4ee97a614009b24f7ae"
+  integrity sha512-psM9QHcHaDr+HZpRuJcE1PXESuGWSCcbiGFFhhwfzdbTxaGDVzuVtdNYliAwcRo3GFg0Bc8MmI+AvIGYIJG04A==
+  dependencies:
+    "@babel/helper-module-imports" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-remap-async-to-generator" "^7.12.13"
+
+"@babel/plugin-transform-block-scoped-functions@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9"
+  integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-block-scoped-functions@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4"
+  integrity sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-block-scoping@^7.12.1", "@babel/plugin-transform-block-scoping@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz#f36e55076d06f41dfd78557ea039c1b581642e61"
+  integrity sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-block-scoping@^7.12.11":
+  version "7.12.12"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz#d93a567a152c22aea3b1929bb118d1d0a175cdca"
+  integrity sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-classes@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6"
+  integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.10.4"
+    "@babel/helper-define-map" "^7.10.4"
+    "@babel/helper-function-name" "^7.10.4"
+    "@babel/helper-optimise-call-expression" "^7.10.4"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-replace-supers" "^7.12.1"
+    "@babel/helper-split-export-declaration" "^7.10.4"
+    globals "^11.1.0"
+
+"@babel/plugin-transform-classes@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-classes/-/plugin-transform-classes-7.12.13.tgz#9728edc1838b5d62fc93ad830bd523b1fcb0e1f6"
+  integrity sha512-cqZlMlhCC1rVnxE5ZGMtIb896ijL90xppMiuWXcwcOAuFczynpd3KYemb91XFFPi3wJSe/OcrX9lXoowatkkxA==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.12.13"
+    "@babel/helper-function-name" "^7.12.13"
+    "@babel/helper-optimise-call-expression" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-replace-supers" "^7.12.13"
+    "@babel/helper-split-export-declaration" "^7.12.13"
+    globals "^11.1.0"
+
+"@babel/plugin-transform-computed-properties@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852"
+  integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-computed-properties@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.13.tgz#6a210647a3d67f21f699cfd2a01333803b27339d"
+  integrity sha512-dDfuROUPGK1mTtLKyDPUavmj2b6kFu82SmgpztBFEO974KMjJT+Ytj3/oWsTUMBmgPcp9J5Pc1SlcAYRpJ2hRA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-destructuring@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847"
+  integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-destructuring@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-destructuring/-/plugin-transform-destructuring-7.12.13.tgz#fc56c5176940c5b41735c677124d1d20cecc9aeb"
+  integrity sha512-Dn83KykIFzjhA3FDPA1z4N+yfF3btDGhjnJwxIj0T43tP0flCujnU8fKgEkf0C1biIpSv9NZegPBQ1J6jYkwvQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.4.4":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975"
+  integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-dotall-regex@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad"
+  integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-duplicate-keys@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228"
+  integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-duplicate-keys@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de"
+  integrity sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-exponentiation-operator@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0"
+  integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==
+  dependencies:
+    "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-exponentiation-operator@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1"
+  integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==
+  dependencies:
+    "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-flow-strip-types@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.13.tgz#b439c43116dc60fb45b7efd2e1db91897b7c8f4b"
+  integrity sha512-39/t9HtN+Jlc7EEY6oCSCf3kRrKIl2JULOGPnHZiaRjoYZEFaDXDZI32uE2NosQRh8o6N9B+8iGvDK7ToJhJaw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-flow" "^7.12.13"
+
+"@babel/plugin-transform-flow-strip-types@^7.9.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz#8a3538aa40434e000b8f44a3c5c9ac7229bd2392"
+  integrity sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-flow" "^7.8.3"
+
+"@babel/plugin-transform-for-of@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa"
+  integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-for-of@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-for-of/-/plugin-transform-for-of-7.12.13.tgz#561ff6d74d9e1c8879cb12dbaf4a14cd29d15cf6"
+  integrity sha512-xCbdgSzXYmHGyVX3+BsQjcd4hv4vA/FDy7Kc8eOpzKmBBPEOTurt0w5fCRQaGl+GSBORKgJdstQ1rHl4jbNseQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-function-name@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667"
+  integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==
+  dependencies:
+    "@babel/helper-function-name" "^7.10.4"
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-function-name@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051"
+  integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==
+  dependencies:
+    "@babel/helper-function-name" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-literals@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57"
+  integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-literals@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9"
+  integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-member-expression-literals@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad"
+  integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-member-expression-literals@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40"
+  integrity sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-modules-amd@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9"
+  integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==
+  dependencies:
+    "@babel/helper-module-transforms" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-amd@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.13.tgz#43db16249b274ee2e551e2422090aa1c47692d56"
+  integrity sha512-JHLOU0o81m5UqG0Ulz/fPC68/v+UTuGTWaZBUwpEk1fYQ1D9LfKV6MPn4ttJKqRo5Lm460fkzjLTL4EHvCprvA==
+  dependencies:
+    "@babel/helper-module-transforms" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-commonjs@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648"
+  integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==
+  dependencies:
+    "@babel/helper-module-transforms" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-simple-access" "^7.12.1"
+    babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-commonjs@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.13.tgz#5043b870a784a8421fa1fd9136a24f294da13e50"
+  integrity sha512-OGQoeVXVi1259HjuoDnsQMlMkT9UkZT9TpXAsqWplS/M0N1g3TJAn/ByOCeQu7mfjc5WpSsRU+jV1Hd89ts0kQ==
+  dependencies:
+    "@babel/helper-module-transforms" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-simple-access" "^7.12.13"
+    babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-systemjs@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086"
+  integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==
+  dependencies:
+    "@babel/helper-hoist-variables" "^7.10.4"
+    "@babel/helper-module-transforms" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-validator-identifier" "^7.10.4"
+    babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-systemjs@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.13.tgz#351937f392c7f07493fc79b2118201d50404a3c5"
+  integrity sha512-aHfVjhZ8QekaNF/5aNdStCGzwTbU7SI5hUybBKlMzqIMC7w7Ho8hx5a4R/DkTHfRfLwHGGxSpFt9BfxKCoXKoA==
+  dependencies:
+    "@babel/helper-hoist-variables" "^7.12.13"
+    "@babel/helper-module-transforms" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-validator-identifier" "^7.12.11"
+    babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-umd@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902"
+  integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==
+  dependencies:
+    "@babel/helper-module-transforms" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-modules-umd@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.13.tgz#26c66f161d3456674e344b4b1255de4d530cfb37"
+  integrity sha512-BgZndyABRML4z6ibpi7Z98m4EVLFI9tVsZDADC14AElFaNHHBcJIovflJ6wtCqFxwy2YJ1tJhGRsr0yLPKoN+w==
+  dependencies:
+    "@babel/helper-module-transforms" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753"
+  integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.12.1"
+
+"@babel/plugin-transform-named-capturing-groups-regex@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9"
+  integrity sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+
+"@babel/plugin-transform-new-target@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0"
+  integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-new-target@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c"
+  integrity sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-object-super@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e"
+  integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-replace-supers" "^7.12.1"
+
+"@babel/plugin-transform-object-super@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7"
+  integrity sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-replace-supers" "^7.12.13"
+
+"@babel/plugin-transform-parameters@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d"
+  integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-parameters@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-parameters/-/plugin-transform-parameters-7.12.13.tgz#461e76dfb63c2dfd327b8a008a9e802818ce9853"
+  integrity sha512-e7QqwZalNiBRHCpJg/P8s/VJeSRYgmtWySs1JwvfwPqhBbiWfOcHDKdeAi6oAyIimoKWBlwc8oTgbZHdhCoVZA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-property-literals@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd"
+  integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-property-literals@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81"
+  integrity sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-react-constant-elements@^7.0.0", "@babel/plugin-transform-react-constant-elements@^7.2.0", "@babel/plugin-transform-react-constant-elements@^7.6.3":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.9.0.tgz#a75abc936a3819edec42d3386d9f1c93f28d9d9e"
+  integrity sha512-wXMXsToAUOxJuBBEHajqKLFWcCkOSLshTI2ChCFFj1zDd7od4IOxiwLCOObNUvOpkxLpjIuaIdBMmNt6ocCPAw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-transform-react-constant-elements@^7.12.1":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.12.13.tgz#f8ee56888545d53d80f766b3cc1563ab2c241f92"
+  integrity sha512-qmzKVTn46Upvtxv8LQoQ8mTCdUC83AOVQIQm57e9oekLT5cmK9GOMOfcWhe8jMNx4UJXn/UDhVZ/7lGofVNeDQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-react-display-name@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz#1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d"
+  integrity sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-react-display-name@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz#c28effd771b276f4647411c9733dbb2d2da954bd"
+  integrity sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-react-display-name@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5"
+  integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-transform-react-jsx-development@^7.12.1", "@babel/plugin-transform-react-jsx-development@^7.12.12":
+  version "7.12.12"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.12.tgz#bccca33108fe99d95d7f9e82046bfe762e71f4e7"
+  integrity sha512-i1AxnKxHeMxUaWVXQOSIco4tvVvvCxMSfeBMnMM06mpaJt3g+MpxYQQrDfojUQldP1xxraPSJYSMEljoWM/dCg==
+  dependencies:
+    "@babel/plugin-transform-react-jsx" "^7.12.12"
+
+"@babel/plugin-transform-react-jsx-development@^7.12.7":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.7.tgz#4c2a647de79c7e2b16bfe4540677ba3121e82a08"
+  integrity sha512-Rs3ETtMtR3VLXFeYRChle5SsP/P9Jp/6dsewBQfokDSzKJThlsuFcnzLTDRALiUmTC48ej19YD9uN1mupEeEDg==
+  dependencies:
+    "@babel/helper-builder-react-jsx-experimental" "^7.12.4"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-jsx" "^7.12.1"
+
+"@babel/plugin-transform-react-jsx-development@^7.9.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz#3c2a130727caf00c2a293f0aed24520825dbf754"
+  integrity sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw==
+  dependencies:
+    "@babel/helper-builder-react-jsx-experimental" "^7.9.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-jsx" "^7.8.3"
+
+"@babel/plugin-transform-react-jsx-self@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz#ef43cbca2a14f1bd17807dbe4376ff89d714cf28"
+  integrity sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-react-jsx-self@^7.9.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz#f4f26a325820205239bb915bad8e06fcadabb49b"
+  integrity sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-jsx" "^7.8.3"
+
+"@babel/plugin-transform-react-jsx-source@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz#d07de6863f468da0809edcf79a1aa8ce2a82a26b"
+  integrity sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-react-jsx-source@^7.9.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0"
+  integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-jsx" "^7.8.3"
+
+"@babel/plugin-transform-react-jsx@^7.12.1", "@babel/plugin-transform-react-jsx@^7.12.12", "@babel/plugin-transform-react-jsx@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.13.tgz#6c9f993b9f6fb6f0e32a4821ed59349748576a3e"
+  integrity sha512-hhXZMYR8t9RvduN2uW4sjl6MRtUhzNE726JvoJhpjhxKgRUVkZqTsA0xc49ALZxQM7H26pZ/lLvB2Yrea9dllA==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.12.13"
+    "@babel/helper-module-imports" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-jsx" "^7.12.13"
+    "@babel/types" "^7.12.13"
+
+"@babel/plugin-transform-react-jsx@^7.12.7":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.7.tgz#8b14d45f6eccd41b7f924bcb65c021e9f0a06f7f"
+  integrity sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ==
+  dependencies:
+    "@babel/helper-builder-react-jsx" "^7.10.4"
+    "@babel/helper-builder-react-jsx-experimental" "^7.12.4"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-jsx" "^7.12.1"
+
+"@babel/plugin-transform-react-jsx@^7.9.4":
+  version "7.9.4"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz#86f576c8540bd06d0e95e0b61ea76d55f6cbd03f"
+  integrity sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw==
+  dependencies:
+    "@babel/helper-builder-react-jsx" "^7.9.0"
+    "@babel/helper-builder-react-jsx-experimental" "^7.9.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-jsx" "^7.8.3"
+
+"@babel/plugin-transform-react-pure-annotations@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42"
+  integrity sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.10.4"
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-regenerator@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753"
+  integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==
+  dependencies:
+    regenerator-transform "^0.14.2"
+
+"@babel/plugin-transform-regenerator@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz#b628bcc9c85260ac1aeb05b45bde25210194a2f5"
+  integrity sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==
+  dependencies:
+    regenerator-transform "^0.14.2"
+
+"@babel/plugin-transform-reserved-words@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8"
+  integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-reserved-words@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695"
+  integrity sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-runtime@^7.12.10":
+  version "7.12.15"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-runtime/-/plugin-transform-runtime-7.12.15.tgz#4337b2507288007c2b197059301aa0af8d90c085"
+  integrity sha512-OwptMSRnRWJo+tJ9v9wgAf72ydXWfYSXWhnQjZing8nGZSDFqU1MBleKM3+DriKkcbv7RagA8gVeB0A1PNlNow==
+  dependencies:
+    "@babel/helper-module-imports" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    semver "^5.5.1"
+
+"@babel/plugin-transform-runtime@^7.8.3":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz#04b792057eb460389ff6a4198e377614ea1e7ba5"
+  integrity sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==
+  dependencies:
+    "@babel/helper-module-imports" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    resolve "^1.8.1"
+    semver "^5.5.1"
+
+"@babel/plugin-transform-runtime@^7.9.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz#45468c0ae74cc13204e1d3b1f4ce6ee83258af0b"
+  integrity sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw==
+  dependencies:
+    "@babel/helper-module-imports" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    resolve "^1.8.1"
+    semver "^5.5.1"
+
+"@babel/plugin-transform-shorthand-properties@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3"
+  integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-shorthand-properties@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad"
+  integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-spread@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e"
+  integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+
+"@babel/plugin-transform-spread@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-spread/-/plugin-transform-spread-7.12.13.tgz#ca0d5645abbd560719c354451b849f14df4a7949"
+  integrity sha512-dUCrqPIowjqk5pXsx1zPftSq4sT0aCeZVAxhdgs3AMgyaDmoUT0G+5h3Dzja27t76aUEIJWlFgPJqJ/d4dbTtg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+
+"@babel/plugin-transform-sticky-regex@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f"
+  integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-sticky-regex@^7.12.7":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad"
+  integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-template-literals@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843"
+  integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-template-literals@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-template-literals/-/plugin-transform-template-literals-7.12.13.tgz#655037b07ebbddaf3b7752f55d15c2fd6f5aa865"
+  integrity sha512-arIKlWYUgmNsF28EyfmiQHJLJFlAJNYkuQO10jL46ggjBpeb2re1P9K9YGxNJB45BqTbaslVysXDYm/g3sN/Qg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-typeof-symbol@^7.12.10":
+  version "7.12.10"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz#de01c4c8f96580bd00f183072b0d0ecdcf0dec4b"
+  integrity sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-typeof-symbol@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f"
+  integrity sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-typescript@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.1.tgz#d92cc0af504d510e26a754a7dbc2e5c8cd9c7ab4"
+  integrity sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw==
+  dependencies:
+    "@babel/helper-create-class-features-plugin" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-typescript" "^7.12.1"
+
+"@babel/plugin-transform-typescript@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-typescript/-/plugin-transform-typescript-7.12.13.tgz#8bcb5dd79cb8bba690d6920e19992d9228dfed48"
+  integrity sha512-z1VWskPJxK9tfxoYvePWvzSJC+4pxXr8ArmRm5ofqgi+mwpKg6lvtomkIngBYMJVnKhsFYVysCQLDn//v2RHcg==
+  dependencies:
+    "@babel/helper-create-class-features-plugin" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-syntax-typescript" "^7.12.13"
+
+"@babel/plugin-transform-typescript@^7.3.2", "@babel/plugin-transform-typescript@^7.9.0":
+  version "7.9.4"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.4.tgz#4bb4dde4f10bbf2d787fce9707fb09b483e33359"
+  integrity sha512-yeWeUkKx2auDbSxRe8MusAG+n4m9BFY/v+lPjmQDgOFX5qnySkUY5oXzkp6FwPdsYqnKay6lorXYdC0n3bZO7w==
+  dependencies:
+    "@babel/helper-create-class-features-plugin" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-typescript" "^7.8.3"
+
+"@babel/plugin-transform-unicode-escapes@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709"
+  integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-unicode-escapes@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74"
+  integrity sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-unicode-regex@^7.12.1":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb"
+  integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.12.1"
+    "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-unicode-regex@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fplugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac"
+  integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/polyfill@^7.0.0":
+  version "7.8.7"
+  resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.8.7.tgz#151ec24c7135481336168c3bd8b8bf0cf91c032f"
+  integrity sha512-LeSfP9bNZH2UOZgcGcZ0PIHUt1ZuHub1L3CVmEyqLxCeDLm4C5Gi8jRH8ZX2PNpDhQCo0z6y/+DIs2JlliXW8w==
+  dependencies:
+    core-js "^2.6.5"
+    regenerator-runtime "^0.13.4"
+
+"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.12.11":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fpreset-env/-/preset-env-7.12.13.tgz#3aa2d09cf7d255177538dff292ac9af29ad46525"
+  integrity sha512-JUVlizG8SoFTz4LmVUL8++aVwzwxcvey3N0j1tRbMAXVEy95uQ/cnEkmEKHN00Bwq4voAV3imQGnQvpkLAxsrw==
+  dependencies:
+    "@babel/compat-data" "^7.12.13"
+    "@babel/helper-compilation-targets" "^7.12.13"
+    "@babel/helper-module-imports" "^7.12.13"
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-validator-option" "^7.12.11"
+    "@babel/plugin-proposal-async-generator-functions" "^7.12.13"
+    "@babel/plugin-proposal-class-properties" "^7.12.13"
+    "@babel/plugin-proposal-dynamic-import" "^7.12.1"
+    "@babel/plugin-proposal-export-namespace-from" "^7.12.13"
+    "@babel/plugin-proposal-json-strings" "^7.12.13"
+    "@babel/plugin-proposal-logical-assignment-operators" "^7.12.13"
+    "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.13"
+    "@babel/plugin-proposal-numeric-separator" "^7.12.13"
+    "@babel/plugin-proposal-object-rest-spread" "^7.12.13"
+    "@babel/plugin-proposal-optional-catch-binding" "^7.12.13"
+    "@babel/plugin-proposal-optional-chaining" "^7.12.13"
+    "@babel/plugin-proposal-private-methods" "^7.12.13"
+    "@babel/plugin-proposal-unicode-property-regex" "^7.12.13"
+    "@babel/plugin-syntax-async-generators" "^7.8.0"
+    "@babel/plugin-syntax-class-properties" "^7.12.13"
+    "@babel/plugin-syntax-dynamic-import" "^7.8.0"
+    "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+    "@babel/plugin-syntax-json-strings" "^7.8.0"
+    "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
+    "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+    "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
+    "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
+    "@babel/plugin-syntax-optional-chaining" "^7.8.0"
+    "@babel/plugin-syntax-top-level-await" "^7.12.13"
+    "@babel/plugin-transform-arrow-functions" "^7.12.13"
+    "@babel/plugin-transform-async-to-generator" "^7.12.13"
+    "@babel/plugin-transform-block-scoped-functions" "^7.12.13"
+    "@babel/plugin-transform-block-scoping" "^7.12.13"
+    "@babel/plugin-transform-classes" "^7.12.13"
+    "@babel/plugin-transform-computed-properties" "^7.12.13"
+    "@babel/plugin-transform-destructuring" "^7.12.13"
+    "@babel/plugin-transform-dotall-regex" "^7.12.13"
+    "@babel/plugin-transform-duplicate-keys" "^7.12.13"
+    "@babel/plugin-transform-exponentiation-operator" "^7.12.13"
+    "@babel/plugin-transform-for-of" "^7.12.13"
+    "@babel/plugin-transform-function-name" "^7.12.13"
+    "@babel/plugin-transform-literals" "^7.12.13"
+    "@babel/plugin-transform-member-expression-literals" "^7.12.13"
+    "@babel/plugin-transform-modules-amd" "^7.12.13"
+    "@babel/plugin-transform-modules-commonjs" "^7.12.13"
+    "@babel/plugin-transform-modules-systemjs" "^7.12.13"
+    "@babel/plugin-transform-modules-umd" "^7.12.13"
+    "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13"
+    "@babel/plugin-transform-new-target" "^7.12.13"
+    "@babel/plugin-transform-object-super" "^7.12.13"
+    "@babel/plugin-transform-parameters" "^7.12.13"
+    "@babel/plugin-transform-property-literals" "^7.12.13"
+    "@babel/plugin-transform-regenerator" "^7.12.13"
+    "@babel/plugin-transform-reserved-words" "^7.12.13"
+    "@babel/plugin-transform-shorthand-properties" "^7.12.13"
+    "@babel/plugin-transform-spread" "^7.12.13"
+    "@babel/plugin-transform-sticky-regex" "^7.12.13"
+    "@babel/plugin-transform-template-literals" "^7.12.13"
+    "@babel/plugin-transform-typeof-symbol" "^7.12.13"
+    "@babel/plugin-transform-unicode-escapes" "^7.12.13"
+    "@babel/plugin-transform-unicode-regex" "^7.12.13"
+    "@babel/preset-modules" "^0.1.3"
+    "@babel/types" "^7.12.13"
+    core-js-compat "^3.8.0"
+    semver "^5.5.0"
+
+"@babel/preset-env@^7.4.5", "@babel/preset-env@^7.8.7", "@babel/preset-env@^7.9.0":
+  version "7.12.11"
+  resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.11.tgz#55d5f7981487365c93dbbc84507b1c7215e857f9"
+  integrity sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==
+  dependencies:
+    "@babel/compat-data" "^7.12.7"
+    "@babel/helper-compilation-targets" "^7.12.5"
+    "@babel/helper-module-imports" "^7.12.5"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-validator-option" "^7.12.11"
+    "@babel/plugin-proposal-async-generator-functions" "^7.12.1"
+    "@babel/plugin-proposal-class-properties" "^7.12.1"
+    "@babel/plugin-proposal-dynamic-import" "^7.12.1"
+    "@babel/plugin-proposal-export-namespace-from" "^7.12.1"
+    "@babel/plugin-proposal-json-strings" "^7.12.1"
+    "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1"
+    "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
+    "@babel/plugin-proposal-numeric-separator" "^7.12.7"
+    "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
+    "@babel/plugin-proposal-optional-catch-binding" "^7.12.1"
+    "@babel/plugin-proposal-optional-chaining" "^7.12.7"
+    "@babel/plugin-proposal-private-methods" "^7.12.1"
+    "@babel/plugin-proposal-unicode-property-regex" "^7.12.1"
+    "@babel/plugin-syntax-async-generators" "^7.8.0"
+    "@babel/plugin-syntax-class-properties" "^7.12.1"
+    "@babel/plugin-syntax-dynamic-import" "^7.8.0"
+    "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+    "@babel/plugin-syntax-json-strings" "^7.8.0"
+    "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
+    "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+    "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
+    "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
+    "@babel/plugin-syntax-optional-chaining" "^7.8.0"
+    "@babel/plugin-syntax-top-level-await" "^7.12.1"
+    "@babel/plugin-transform-arrow-functions" "^7.12.1"
+    "@babel/plugin-transform-async-to-generator" "^7.12.1"
+    "@babel/plugin-transform-block-scoped-functions" "^7.12.1"
+    "@babel/plugin-transform-block-scoping" "^7.12.11"
+    "@babel/plugin-transform-classes" "^7.12.1"
+    "@babel/plugin-transform-computed-properties" "^7.12.1"
+    "@babel/plugin-transform-destructuring" "^7.12.1"
+    "@babel/plugin-transform-dotall-regex" "^7.12.1"
+    "@babel/plugin-transform-duplicate-keys" "^7.12.1"
+    "@babel/plugin-transform-exponentiation-operator" "^7.12.1"
+    "@babel/plugin-transform-for-of" "^7.12.1"
+    "@babel/plugin-transform-function-name" "^7.12.1"
+    "@babel/plugin-transform-literals" "^7.12.1"
+    "@babel/plugin-transform-member-expression-literals" "^7.12.1"
+    "@babel/plugin-transform-modules-amd" "^7.12.1"
+    "@babel/plugin-transform-modules-commonjs" "^7.12.1"
+    "@babel/plugin-transform-modules-systemjs" "^7.12.1"
+    "@babel/plugin-transform-modules-umd" "^7.12.1"
+    "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1"
+    "@babel/plugin-transform-new-target" "^7.12.1"
+    "@babel/plugin-transform-object-super" "^7.12.1"
+    "@babel/plugin-transform-parameters" "^7.12.1"
+    "@babel/plugin-transform-property-literals" "^7.12.1"
+    "@babel/plugin-transform-regenerator" "^7.12.1"
+    "@babel/plugin-transform-reserved-words" "^7.12.1"
+    "@babel/plugin-transform-shorthand-properties" "^7.12.1"
+    "@babel/plugin-transform-spread" "^7.12.1"
+    "@babel/plugin-transform-sticky-regex" "^7.12.7"
+    "@babel/plugin-transform-template-literals" "^7.12.1"
+    "@babel/plugin-transform-typeof-symbol" "^7.12.10"
+    "@babel/plugin-transform-unicode-escapes" "^7.12.1"
+    "@babel/plugin-transform-unicode-regex" "^7.12.1"
+    "@babel/preset-modules" "^0.1.3"
+    "@babel/types" "^7.12.11"
+    core-js-compat "^3.8.0"
+    semver "^5.5.0"
+
+"@babel/preset-flow@^7.0.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.9.0.tgz#fee847c3e090b0b2d9227c1949e4da1d1379280d"
+  integrity sha512-88uSmlshIrlmPkNkEcx3UpSZ6b8n0UGBq0/0ZMZCF/uxAW0XIAUuDHBhIOAh0pvweafH4RxOwi/H3rWhtqOYPA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-transform-flow-strip-types" "^7.9.0"
+
+"@babel/preset-flow@^7.12.1":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fpreset-flow/-/preset-flow-7.12.13.tgz#71ee7fe65a95b507ac12bcad65a4ced27d8dfc3e"
+  integrity sha512-gcEjiwcGHa3bo9idURBp5fmJPcyFPOszPQjztXrOjUE2wWVqc6fIVJPgWPIQksaQ5XZ2HWiRsf2s1fRGVjUtVw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-transform-flow-strip-types" "^7.12.13"
+
+"@babel/preset-modules@^0.1.3":
+  version "0.1.3"
+  resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"
+  integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
+    "@babel/plugin-transform-dotall-regex" "^7.4.4"
+    "@babel/types" "^7.4.4"
+    esutils "^2.0.2"
+
+"@babel/preset-react@^7.0.0", "@babel/preset-react@^7.9.4":
+  version "7.9.4"
+  resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.4.tgz#c6c97693ac65b6b9c0b4f25b948a8f665463014d"
+  integrity sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-transform-react-display-name" "^7.8.3"
+    "@babel/plugin-transform-react-jsx" "^7.9.4"
+    "@babel/plugin-transform-react-jsx-development" "^7.9.0"
+    "@babel/plugin-transform-react-jsx-self" "^7.9.0"
+    "@babel/plugin-transform-react-jsx-source" "^7.9.0"
+
+"@babel/preset-react@^7.12.1", "@babel/preset-react@^7.12.10", "@babel/preset-react@^7.12.5":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fpreset-react/-/preset-react-7.12.13.tgz#5f911b2eb24277fa686820d5bd81cad9a0602a0a"
+  integrity sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/plugin-transform-react-display-name" "^7.12.13"
+    "@babel/plugin-transform-react-jsx" "^7.12.13"
+    "@babel/plugin-transform-react-jsx-development" "^7.12.12"
+    "@babel/plugin-transform-react-pure-annotations" "^7.12.1"
+
+"@babel/preset-react@^7.8.3":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.7.tgz#36d61d83223b07b6ac4ec55cf016abb0f70be83b"
+  integrity sha512-wKeTdnGUP5AEYCYQIMeXMMwU7j+2opxrG0WzuZfxuuW9nhKvvALBjl67653CWamZJVefuJGI219G591RSldrqQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-transform-react-display-name" "^7.12.1"
+    "@babel/plugin-transform-react-jsx" "^7.12.7"
+    "@babel/plugin-transform-react-jsx-development" "^7.12.7"
+    "@babel/plugin-transform-react-jsx-self" "^7.12.1"
+    "@babel/plugin-transform-react-jsx-source" "^7.12.1"
+    "@babel/plugin-transform-react-pure-annotations" "^7.12.1"
+
+"@babel/preset-typescript@^7.12.1":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fpreset-typescript/-/preset-typescript-7.12.13.tgz#c859c7c075c531d2cc34c2516b214e5d884efe5c"
+  integrity sha512-gYry7CeXwD2wtw5qHzrtzKaShEhOfTmKb4i0ZxeYBcBosN5VuAudsNbjX7Oj5EAfQ3K4s4HsVMQRRcqGsPvs2A==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.12.13"
+    "@babel/helper-validator-option" "^7.12.11"
+    "@babel/plugin-transform-typescript" "^7.12.13"
+
+"@babel/preset-typescript@^7.12.7":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.12.7.tgz#fc7df8199d6aae747896f1e6c61fc872056632a3"
+  integrity sha512-nOoIqIqBmHBSEgBXWR4Dv/XBehtIFcw9PqZw6rFYuKrzsZmOQm3PR5siLBnKZFEsDb03IegG8nSjU/iXXXYRmw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/helper-validator-option" "^7.12.1"
+    "@babel/plugin-transform-typescript" "^7.12.1"
+
+"@babel/preset-typescript@^7.3.3", "@babel/preset-typescript@^7.8.3", "@babel/preset-typescript@^7.9.0":
+  version "7.9.0"
+  resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz#87705a72b1f0d59df21c179f7c3d2ef4b16ce192"
+  integrity sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-transform-typescript" "^7.9.0"
+
+"@babel/register@^7.12.1", "@babel/register@^7.8.6":
+  version "7.12.1"
+  resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.1.tgz#cdb087bdfc4f7241c03231f22e15d211acf21438"
+  integrity sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==
+  dependencies:
+    find-cache-dir "^2.0.0"
+    lodash "^4.17.19"
+    make-dir "^2.1.0"
+    pirates "^4.0.0"
+    source-map-support "^0.5.16"
+
+"@babel/register@^7.12.10", "@babel/register@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fregister/-/register-7.12.13.tgz#e9cb57618264f2944634da941ba9755088ef9ec5"
+  integrity sha512-fnCeRXj970S9seY+973oPALQg61TRvAaW0nRDe1f4ytKqM3fZgsNXewTZWmqZedg74LFIRpg/11dsrPZZvYs2g==
+  dependencies:
+    find-cache-dir "^2.0.0"
+    lodash "^4.17.19"
+    make-dir "^2.1.0"
+    pirates "^4.0.0"
+    source-map-support "^0.5.16"
+
+"@babel/runtime-corejs2@^7.0.0", "@babel/runtime-corejs2@^7.1.5":
+  version "7.10.2"
+  resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.10.2.tgz#532f20b839684615f97e9f700f630e995efed426"
+  integrity sha512-ZLwsFnNm3WpIARU1aLFtufjMHsmEnc8TjtrfAjmbgMbeoyR+LuQoyESoNdTfeDhL6IdY12SpeycXMgSgl8XGXA==
+  dependencies:
+    core-js "^2.6.5"
+    regenerator-runtime "^0.13.4"
+
+"@babel/runtime-corejs2@^7.4.5":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fruntime-corejs2/-/runtime-corejs2-7.12.13.tgz#c543e5797b9dc4a19af570bccfd0743d127f20fe"
+  integrity sha512-BPjEhhHe12QsV4k2iRNvP95yB1Gpjj6/NMmVP++5Yw295Se/ZVXPePV8cC5cZ6nrZBmmsQ9n0JmeUobM8TbskA==
+  dependencies:
+    core-js "^2.6.5"
+    regenerator-runtime "^0.13.4"
+
+"@babel/runtime-corejs3@^7.10.2":
+  version "7.12.5"
+  resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz#ffee91da0eb4c6dae080774e94ba606368e414f4"
+  integrity sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==
+  dependencies:
+    core-js-pure "^3.0.0"
+    regenerator-runtime "^0.13.4"
+
+"@babel/runtime-corejs3@^7.12.5":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fruntime-corejs3/-/runtime-corejs3-7.12.13.tgz#53d09813b7c20d616caf258e9325550ff701c039"
+  integrity sha512-8fSpqYRETHATtNitsCXq8QQbKJP31/KnDl2Wz2Vtui9nKzjss2ysuZtyVsWjBtvkeEFo346gkwjYPab1hvrXkQ==
+  dependencies:
+    core-js-pure "^3.0.0"
+    regenerator-runtime "^0.13.4"
+
+"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.2.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
+  version "7.10.3"
+  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.3.tgz#670d002655a7c366540c67f6fd3342cd09500364"
+  integrity sha512-RzGO0RLSdokm9Ipe/YD+7ww8X2Ro79qiXZF3HU9ljrM+qnJmH1Vqth+hbiQZy761LnMJTMitHDuKVYTk3k4dLw==
+  dependencies:
+    regenerator-runtime "^0.13.4"
+
+"@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.9.6":
+  version "7.12.5"
+  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
+  integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
+  dependencies:
+    regenerator-runtime "^0.13.4"
+
+"@babel/runtime@^7.12.0":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2fruntime/-/runtime-7.12.13.tgz#0a21452352b02542db0ffb928ac2d3ca7cb6d66d"
+  integrity sha512-8+3UMPBrjFa/6TtKi/7sehPKqfAm4g6K+YQjyyFOLUTxzOngcRZTlAVY8sc2CORJYqdHQY8gRPHmn+qo15rCBw==
+  dependencies:
+    regenerator-runtime "^0.13.4"
+
+"@babel/standalone@^7.4.5":
+  version "7.9.4"
+  resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.9.4.tgz#078025ada03c3d8e60b4abfb042326ad9bfb035d"
+  integrity sha512-liRTBSbwxaXmrAqH43qF/fh7soqTMF3+j2eUdsRwKzPwu1WCUBPG1yZQFfk3Wrw3Pk4GFcJpI9dksXY+bhNMwg==
+
+"@babel/template@^7.10.4", "@babel/template@^7.3.3", "@babel/template@^7.7.4", "@babel/template@^7.8.3":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278"
+  integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
+  dependencies:
+    "@babel/code-frame" "^7.10.4"
+    "@babel/parser" "^7.10.4"
+    "@babel/types" "^7.10.4"
+
+"@babel/template@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2ftemplate/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
+  integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
+  dependencies:
+    "@babel/code-frame" "^7.12.13"
+    "@babel/parser" "^7.12.13"
+    "@babel/types" "^7.12.13"
+
+"@babel/template@^7.12.7", "@babel/template@^7.4.0":
+  version "7.12.7"
+  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc"
+  integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==
+  dependencies:
+    "@babel/code-frame" "^7.10.4"
+    "@babel/parser" "^7.12.7"
+    "@babel/types" "^7.12.7"
+
+"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.6", "@babel/traverse@^7.10.4", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.4", "@babel/traverse@^7.8.6":
+  version "7.10.4"
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.4.tgz#e642e5395a3b09cc95c8e74a27432b484b697818"
+  integrity sha512-aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q==
+  dependencies:
+    "@babel/code-frame" "^7.10.4"
+    "@babel/generator" "^7.10.4"
+    "@babel/helper-function-name" "^7.10.4"
+    "@babel/helper-split-export-declaration" "^7.10.4"
+    "@babel/parser" "^7.10.4"
+    "@babel/types" "^7.10.4"
+    debug "^4.1.0"
+    globals "^11.1.0"
+    lodash "^4.17.13"
+
+"@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5", "@babel/traverse@^7.12.9", "@babel/traverse@^7.4.3":
+  version "7.12.9"
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.9.tgz#fad26c972eabbc11350e0b695978de6cc8e8596f"
+  integrity sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==
+  dependencies:
+    "@babel/code-frame" "^7.10.4"
+    "@babel/generator" "^7.12.5"
+    "@babel/helper-function-name" "^7.10.4"
+    "@babel/helper-split-export-declaration" "^7.11.0"
+    "@babel/parser" "^7.12.7"
+    "@babel/types" "^7.12.7"
+    debug "^4.1.0"
+    globals "^11.1.0"
+    lodash "^4.17.19"
+
+"@babel/traverse@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2ftraverse/-/traverse-7.12.13.tgz#689f0e4b4c08587ad26622832632735fb8c4e0c0"
+  integrity sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA==
+  dependencies:
+    "@babel/code-frame" "^7.12.13"
+    "@babel/generator" "^7.12.13"
+    "@babel/helper-function-name" "^7.12.13"
+    "@babel/helper-split-export-declaration" "^7.12.13"
+    "@babel/parser" "^7.12.13"
+    "@babel/types" "^7.12.13"
+    debug "^4.1.0"
+    globals "^11.1.0"
+    lodash "^4.17.19"
+
+"@babel/types@7.0.0-beta.38":
+  version "7.0.0-beta.38"
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.38.tgz#2ce2443f7dc6ad535a67db4940cbd34e64035a6f"
+  integrity sha512-SAtyEjmA7KiEoL2eAOAUM6M9arQJGWxJKK0S9x0WyPOosHS420RXoxPhn57u/8orRnK8Kxm0nHQQNTX203cP1Q==
+  dependencies:
+    esutils "^2.0.2"
+    lodash "^4.2.0"
+    to-fast-properties "^2.0.0"
+
+"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.1.6", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.11", "@babel/types@^7.12.5", "@babel/types@^7.12.6", "@babel/types@^7.12.7", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0":
+  version "7.12.12"
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.12.tgz#4608a6ec313abbd87afa55004d373ad04a96c299"
+  integrity sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==
+  dependencies:
+    "@babel/helper-validator-identifier" "^7.12.11"
+    lodash "^4.17.19"
+    to-fast-properties "^2.0.0"
+
+"@babel/types@^7.12.13":
+  version "7.12.13"
+  resolved "http://localhost:4873/@babel%2ftypes/-/types-7.12.13.tgz#8be1aa8f2c876da11a9cf650c0ecf656913ad611"
+  integrity sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ==
+  dependencies:
+    "@babel/helper-validator-identifier" "^7.12.11"
+    lodash "^4.17.19"
+    to-fast-properties "^2.0.0"
+
+"@base2/pretty-print-object@1.0.0":
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.0.tgz#860ce718b0b73f4009e153541faff2cb6b85d047"
+  integrity sha512-4Th98KlMHr5+JkxfcoDT//6vY8vM+iSPrLNpHhRyLx2CFYi8e2RfqPLdpbnpo0Q5lQC5hNB79yes07zb02fvCw==
+
+"@bcoe/v8-coverage@^0.2.3":
+  version "0.2.3"
+  resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
+  integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
+
+"@beemo/core@^1.1.6":
+  version "1.1.6"
+  resolved "https://registry.yarnpkg.com/@beemo/core/-/core-1.1.6.tgz#6a3462681f6a0af76216992f185235ba431c952a"
+  integrity sha512-/ZIPnXH754FgOcS4boDLJljhVDCDDSNqn6T5Ul/hBdfnTcR6dj1j8ZQ3QsQGG6kQ0N70xn5WNz/rABiFtQZ9Mg==
+  dependencies:
+    "@beemo/dependency-graph" "^1.1.0"
+    "@boost/common" "^1.8.2"
+    "@boost/core" "^1.18.2"
+    "@boost/event" "^1.3.0"
+    "@types/micromatch" "^4.0.1"
+    "@types/yargs" "^15.0.4"
+    "@types/yargs-parser" "^15.0.0"
+    chalk "^3.0.0"
+    execa "^3.4.0"
+    fast-glob "^3.0.4"
+    fs-extra "^8.1.0"
+    hygen "^5.0.3"
+    is-glob "^4.0.1"
+    lodash "^4.17.15"
+    micromatch "^4.0.2"
+    optimal "^4.2.0"
+    yargs "^15.3.1"
+    yargs-parser "^18.1.1"
+
+"@beemo/dependency-graph@^1.1.0":
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/@beemo/dependency-graph/-/dependency-graph-1.1.0.tgz#5f110fe8ed148acf589bc4fddc538b07f0a4d03f"
+  integrity sha512-xBPqNB99Q0icr7NgYZyxH9lmjo1UgzzozZM/gcDe1jYqKBFx2CZ4jkuOG3d7exjAN4jq/+QfWETAJrHnopdAaA==
+
+"@beemo/driver-babel@^1.2.3":
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/@beemo/driver-babel/-/driver-babel-1.2.3.tgz#3780ec28fbd5b58e5967100f3133a2f729e8e944"
+  integrity sha512-tOUBR7bSQ8AqBPf0JkEI3mHjyxe+cJaLBeAJYhTZJ/vaLRdMPfLtzx8144dTZ9P0uk+oa8kwUjBLgBzjHNDpqg==
+  dependencies:
+    rimraf "^3.0.2"
+
+"@beemo/driver-jest@^1.2.1":
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/@beemo/driver-jest/-/driver-jest-1.2.1.tgz#47b253fac5d390bc3dc0841ee96b26f250113744"
+  integrity sha512-5P6SSUQvydn1S0wnwMTfbuQPYdiWb702LPAwtDVUTwbh9T2oRGCDGl3Sr9FQspvR2Ky9mkyHrL89KULr+qHcZw==
+  dependencies:
+    "@jest/types" "^25.1.0"
+
+"@beemo/driver-webpack@^1.2.4":
+  version "1.2.6"
+  resolved "https://registry.yarnpkg.com/@beemo/driver-webpack/-/driver-webpack-1.2.6.tgz#dc4cf83e9b1771f28711bbccfd49555085b14ea1"
+  integrity sha512-2sPD+rrkYJlB4fnKB7QKAc2txb/3h/RLljfTJjpOSC2iOTi2/3c9FaefhMOKNRnT2SMNuBPGpuITxvekvJOXhQ==
+  dependencies:
+    "@types/webpack" "^4.41.13"
+
+"@boost/common@^1.8.2", "@boost/common@^1.8.3":
+  version "1.8.3"
+  resolved "https://registry.yarnpkg.com/@boost/common/-/common-1.8.3.tgz#ea491c50c40f54f3eb094aa26c5134f0d759e206"
+  integrity sha512-3R0hfJ1eoiBcybCdvqZirKpXebNWHJ0GSNwwXEmQlEVWfS+8BTnE8Qg/+U8oZNhBS6DeA44Lh2AWEDNbHTZ2KA==
+  dependencies:
+    "@boost/internal" "^1.1.0"
+    js-yaml "^3.13.1"
+    json5 "^2.1.2"
+    optimal "^4.2.0"
+    pretty-ms "^5.1.0"
+
+"@boost/core@^1.18.2":
+  version "1.18.3"
+  resolved "https://registry.yarnpkg.com/@boost/core/-/core-1.18.3.tgz#a49f93961ff6d5fca3620b444311f20fd937b5d9"
+  integrity sha512-x2Im2/hdnXRSUQ8SG5n9QnSnydnlasavt0YmJZA80QH30m8yjFRGB+MsnUtlkVt6Zl4eKuVkyrUuLTE7ZPECgg==
+  dependencies:
+    "@boost/common" "^1.8.3"
+    "@boost/debug" "^1.4.4"
+    "@boost/event" "^1.3.0"
+    "@boost/internal" "^1.1.0"
+    "@boost/log" "^1.1.12"
+    "@boost/terminal" "^1.0.3"
+    "@boost/translate" "^1.3.7"
+    "@types/debug" "^4.1.5"
+    "@types/yargs" "^15.0.4"
+    "@types/yargs-parser" "^15.0.0"
+    debug "^4.1.1"
+    env-ci "^4.5.1"
+    execa "^3.4.0"
+    exit "^0.1.2"
+    fast-glob "^3.2.2"
+    fs-extra "^8.1.0"
+    json5 "^2.1.2"
+    lodash "^4.17.15"
+    optimal "^4.2.0"
+    pluralize "^8.0.0"
+    split "^1.0.1"
+    yargs-parser "^18.1.1"
+
+"@boost/debug@^1.4.4":
+  version "1.4.4"
+  resolved "https://registry.yarnpkg.com/@boost/debug/-/debug-1.4.4.tgz#7e3b32258ad24bca717792bb9d28fe49e8beb0a8"
+  integrity sha512-cQfksMzfPrz5iIlcDljIyPfcsGiCMQe3Lnwc12gDZrs1wBR+2r1RSxJy8Z5s0d8nGZe+9Ousr5JXKwdpOOm66w==
+  dependencies:
+    "@boost/common" "^1.8.3"
+    "@boost/internal" "^1.1.0"
+    "@types/debug" "^4.1.5"
+    debug "^4.1.1"
+    execa "^3.4.0"
+    fast-glob "^3.2.2"
+
+"@boost/event@^1.3.0":
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/@boost/event/-/event-1.3.0.tgz#7bc989098aa6e2b819ed1904170056eb288396af"
+  integrity sha512-EszQ+bSw2lfobsE5pGEnFROXMcxqClXnJIohM/INO/8xjKvFeAVVpQKUEnYVbOcCWYVnwsJ7nBapXLA6Z6Zv7w==
+  dependencies:
+    "@boost/internal" "^1.1.0"
+
+"@boost/internal@^1.1.0":
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/@boost/internal/-/internal-1.1.0.tgz#380107d83bbd4d38f4b020a2273d51ef1b73e0ae"
+  integrity sha512-dYrCHKqiuLz3u1p+ve1qoWGXOFDBqOlUgMV1is20GiTFxoJzaCJOdexDErC3hLQFCr3WsZ3IbKDb6cpFH6mD9Q==
+  dependencies:
+    chalk "^3.0.0"
+    debug "^4.1.1"
+
+"@boost/log@^1.1.12":
+  version "1.1.12"
+  resolved "https://registry.yarnpkg.com/@boost/log/-/log-1.1.12.tgz#40243804cc0a603a32df939dfb11470ce2945f23"
+  integrity sha512-yIhc0OFYuiuWsWsk6sEuET21unoWUHQAHRctEbEorpz51NZE9KPP7QA8rnPJ2hHN1Pl8NhFj6Ev0gygZzGDykA==
+  dependencies:
+    "@boost/internal" "^1.1.0"
+    "@boost/translate" "^1.3.7"
+    chalk "^3.0.0"
+
+"@boost/terminal@^1.0.3":
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/@boost/terminal/-/terminal-1.0.3.tgz#318c7765e5d5934378f1957b236c9ac1fa189704"
+  integrity sha512-r9PRBWzW5JBlfMkB0aVh/ighrxpFE/lQriQCBKqAYWFdglHCZtewkz8Bjxu8fPUuAR6dp/SqvFbS5S7Pukpo2Q==
+  dependencies:
+    ansi-escapes "^4.3.1"
+    ansi-regex "^5.0.0"
+    chalk "^3.0.0"
+    cli-truncate "^2.1.0"
+    figures "^3.2.0"
+    slice-ansi "^3.0.0"
+    string-width "^4.2.0"
+    strip-ansi "^6.0.0"
+    supports-hyperlinks "^2.1.0"
+    term-size "^2.2.0"
+    wrap-ansi "^6.2.0"
+
+"@boost/translate@^1.3.7":
+  version "1.3.7"
+  resolved "https://registry.yarnpkg.com/@boost/translate/-/translate-1.3.7.tgz#ecbf41bf8a68152371ccb2f065b3534696b0f297"
+  integrity sha512-FPhLX8zp7ZVyziIBckevHkKXjOMdRMiteFNMBJqOpACQyf7Hu4B3Q0VvAsP1AbLcCmxOJk5EBCi1MsRnsVDbqg==
+  dependencies:
+    "@boost/common" "^1.8.3"
+    "@boost/internal" "^1.1.0"
+    i18next "^19.3.3"
+    os-locale "^4.0.0"
+
+"@chromaui/localtunnel@2.0.1":
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/@chromaui/localtunnel/-/localtunnel-2.0.1.tgz#2d4cef4efa189a2a2f015d639e754956c54cacd1"
+  integrity sha512-QvO1J9drc7K2SeBrHuO5/8nQ1QTks/OOG+vwva4lM7T28pPgf556snMpPE/3KE6uD2UJky8I4A5dNRNbqAXiDw==
+  dependencies:
+    axios "0.19.0"
+    debug "^3.0.1"
+    openurl "^1.1.1"
+    yargs "^13.3.0"
+
+"@cnakazawa/watch@^1.0.3":
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a"
+  integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
+  dependencies:
+    exec-sh "^0.3.2"
+    minimist "^1.2.0"
+
+"@commitlint/cli@^7.5.2":
+  version "7.6.1"
+  resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-7.6.1.tgz#a93cf995082831999937f6d5ec1a582c8fc0393a"
+  integrity sha512-HEJwQ/aK0AOcAwn77ZKbb/GZhlGxBSPhtVp07uoJFVqM12l2Ia2JHA+MTpfHCFdVahKyYGREZgxde6LyKyG8aQ==
+  dependencies:
+    "@commitlint/format" "^7.6.1"
+    "@commitlint/lint" "^7.6.0"
+    "@commitlint/load" "^7.6.1"
+    "@commitlint/read" "^7.6.0"
+    babel-polyfill "6.26.0"
+    chalk "2.3.1"
+    get-stdin "7.0.0"
+    lodash "4.17.11"
+    meow "5.0.0"
+    resolve-from "5.0.0"
+    resolve-global "1.0.0"
+
+"@commitlint/config-conventional@^7.5.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-7.6.0.tgz#f3dc66bf39e3b627fdd6f5ac3d0510dd0dd38f94"
+  integrity sha512-1Gnv5p3tc1VsEK25oTIRBO86czLtX6s/jeLNPAQRzdCnyEmsxkbx/sfoUJ1dwv7v8W++xckVnnuvdZv2Hp8yCw==
+
+"@commitlint/config-lerna-scopes@^7.5.1":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/config-lerna-scopes/-/config-lerna-scopes-7.6.0.tgz#40ac4888dad00860a7bb8cfc5c289b788e830f84"
+  integrity sha512-cp/gIi47in0VShYpI2cc0vG/TBriai2EZE5CUaun6LLl6++8vn8OF/2W/oJ0e8L43zX7T2v90yFoWNbFcLssIw==
+  dependencies:
+    import-from "3.0.0"
+    resolve-pkg "2.0.0"
+    semver "6.0.0"
+
+"@commitlint/ensure@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-7.6.0.tgz#e873ff6786a3b9504e88a4debed41df29cd8ac36"
+  integrity sha512-pSUrNud5L/8y+cLWo3LEa8Ce4bAAR33xMderFUhuNPHj7TwpNS7L4ROMnhL4ZlCYRazCRDlnPaJLPikMoWThfA==
+  dependencies:
+    lodash "4.17.11"
+
+"@commitlint/execute-rule@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-7.6.0.tgz#60c1c34b5f2fca6c6cbca019a9c7d81c2fab1e4a"
+  integrity sha512-0inGOIlLefPDtiDOaZ6WoE1p+GEZZIj2VwUftUozD3C71TiwP9UfKAVVtUDFPIeL6RgSqCkCf7zsy6NKNxwkBg==
+  dependencies:
+    babel-runtime "6.26.0"
+
+"@commitlint/format@^7.6.1":
+  version "7.6.1"
+  resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-7.6.1.tgz#106750de50fab7d153eed80e7577c768bb9a3a1b"
+  integrity sha512-Ldzf5N2Sr9RQqvlYwaQn4vz1WOZ7byYinspC/WCrbfcETGy28j7QE4OueZU6nNB9TjwwEorKm13uy7tDWPR7dg==
+  dependencies:
+    babel-runtime "^6.23.0"
+    chalk "^2.0.1"
+
+"@commitlint/is-ignored@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-7.6.0.tgz#d069f25741dcf859b324e5f709835af3aac9cf45"
+  integrity sha512-By/mLNhz+6Rtix9+Kyof1gdKiELchAnQHpdeKIHIOe9sjbvd3HqDoFHh/mGMMRnGIPMZOX5TO8Fqy3A/2HqlTw==
+  dependencies:
+    semver "6.0.0"
+
+"@commitlint/lint@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-7.6.0.tgz#a6da320026b937aa9bf971e060e471edd6b088ec"
+  integrity sha512-aUIFX0lPRZL7WmT8W8qzogJD4LmHk6JPG3XUAX+K0pOHGjC/0ALvSAytvoLXy4fvmSnGJkXmWhzSW7c0Spa14Q==
+  dependencies:
+    "@commitlint/is-ignored" "^7.6.0"
+    "@commitlint/parse" "^7.6.0"
+    "@commitlint/rules" "^7.6.0"
+    babel-runtime "^6.23.0"
+    lodash "4.17.11"
+
+"@commitlint/load@^7.6.1":
+  version "7.6.2"
+  resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-7.6.2.tgz#b5ed8163fa3117d60faf70a4e677b2017bbc71bb"
+  integrity sha512-I+xk+BkXAG1roXNrPsR1eOd5hEa+oLc6HLYnHAT/HLGKKB3E01IGg3O5SGlg7lpf1yiAaYI+wAnNTr3f3sIbWQ==
+  dependencies:
+    "@commitlint/execute-rule" "^7.6.0"
+    "@commitlint/resolve-extends" "^7.6.0"
+    babel-runtime "^6.23.0"
+    cosmiconfig "^5.2.0"
+    lodash "4.17.11"
+    resolve-from "^5.0.0"
+
+"@commitlint/message@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-7.6.0.tgz#899b6b411945dd091d261408b6e994043967bc06"
+  integrity sha512-PtP4jhBYGXLaQQC5jel+RQczG2tS3Cy6rRxQioUfCUaEg/LV029ao/KcL1kHEBJ8hSW/SUmnvDaD9Y6nozLQMA==
+
+"@commitlint/parse@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-7.6.0.tgz#e7b8d6dc145e78cf56940bbf405ca6fac3085196"
+  integrity sha512-1x60kTqz2VBCjYE+8MV5BhE+ShPo7MgVlrMWSlxiiJDWP5CvWa+SBbUayDJ7rtOXimjTASZ9ZNZTuFPdJE/Y7A==
+  dependencies:
+    conventional-changelog-angular "^1.3.3"
+    conventional-commits-parser "^2.1.0"
+    lodash "^4.17.11"
+
+"@commitlint/read@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-7.6.0.tgz#e55863354b436683daa2081de7ec2189573bc306"
+  integrity sha512-OyligtK/e4xnQklrQqTcSMM27eNhq+LqXfoeVouuPx059oDEw9wZYNN4HGzyxs4Pb6GdMpzRHLdeMQ24M+AiYw==
+  dependencies:
+    "@commitlint/top-level" "^7.6.0"
+    "@marionebl/sander" "^0.6.0"
+    babel-runtime "^6.23.0"
+    git-raw-commits "^1.3.0"
+
+"@commitlint/resolve-extends@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-7.6.0.tgz#0680b76eeb0e41f728c2f38645473a0956299edb"
+  integrity sha512-fk8KvNiEbRc+p8nPFuysVP2O95+sb8vlIDTjqtGVObqrzFINRfERXwqBmTBtcu556BoDAR2hwRVXmuwhns+Duw==
+  dependencies:
+    babel-runtime "6.26.0"
+    import-fresh "^3.0.0"
+    lodash "4.17.11"
+    resolve-from "^5.0.0"
+    resolve-global "^1.0.0"
+
+"@commitlint/rules@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-7.6.0.tgz#f9a833c1eab8144fd8f545a71408b39e51acb64e"
+  integrity sha512-shLJdMUwdVeE5UgOE8E+c+PFS7+0FFGfheMa3s6ZK+xX8pTUxseXZu9iCF4mwF+WWkVk518xPuNLvmYE96salQ==
+  dependencies:
+    "@commitlint/ensure" "^7.6.0"
+    "@commitlint/message" "^7.6.0"
+    "@commitlint/to-lines" "^7.6.0"
+    babel-runtime "^6.23.0"
+
+"@commitlint/to-lines@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-7.6.0.tgz#5ed4dbf39db0ceff96dbb661b9ce048ed3db7a4b"
+  integrity sha512-L/Vl5ThRuBHnSNZBtc+p2LCs2ayxWodC+I/X3NKUywSmr6kKpJJCFqHHHqPu+yXwGUPwqCMQhogIGLuv9TtWWw==
+
+"@commitlint/top-level@^7.6.0":
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-7.6.0.tgz#0ed88078ac585c93ee314ff3b7f8c20143c57652"
+  integrity sha512-R2RzJZDuT2TU2dZMrRd7olax5IDVcUB/O8k76d1LW13CQ9/2ArJi3TCFXSZIaGpCUnyAYA5KiCZ+c1opnyQuog==
+  dependencies:
+    find-up "^2.1.0"
+
+"@ctrl/tinycolor@^3.1.6":
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/@ctrl/tinycolor/-/tinycolor-3.2.0.tgz#77a8a33edb2fdc02318c828be78f6fb3d6c65eb2"
+  integrity sha512-cP1tbXA1qJp/er2CJaO+Pbe38p7RlhV9WytUxUe79xj++Q6s/jKVvzJ9U2dF9f1/lZAdG+j94A38CsNR+uW4gw==
+
+"@data-ui/event-flow@^0.0.84":
+  version "0.0.84"
+  resolved "https://registry.yarnpkg.com/@data-ui/event-flow/-/event-flow-0.0.84.tgz#dbabdc4a397c8c63774424f0356a90ae7eff19b9"
+  integrity sha512-XOOYvpRMAT1r66dnGsrnQ+VEZVtY56np/wxzHcW7iqvvvxefvbkjGMUe0rAbMeSg17hjUfDQTBIBvf3uiVIQTA==
+  dependencies:
+    "@babel/polyfill" "^7.0.0"
+    "@babel/runtime-corejs2" "^7.1.5"
+    "@data-ui/forms" "^0.0.84"
+    "@data-ui/radial-chart" "^0.0.84"
+    "@data-ui/theme" "^0.0.84"
+    "@vx/axis" "0.0.140"
+    "@vx/bounds" "0.0.140"
+    "@vx/clip-path" "0.0.140"
+    "@vx/glyph" "0.0.140"
+    "@vx/gradient" "0.0.140"
+    "@vx/grid" "0.0.140"
+    "@vx/group" "0.0.140"
+    "@vx/legend" "0.0.140"
+    "@vx/pattern" "0.0.140"
+    "@vx/point" "0.0.136"
+    "@vx/responsive" "0.0.140"
+    "@vx/scale" "0.0.140"
+    "@vx/shape" "0.0.140"
+    "@vx/tooltip" "0.0.140"
+    aphrodite "^1.2.0"
+    d3-array "^1.2.0"
+    d3-format "^1.2.0"
+    d3-selection "^1.1.0"
+    d3-zoom "^1.3.0"
+    immutable "^3.8.1"
+    prop-types "^15.5.10"
+    react-split-pane "^0.1.63"
+    react-with-styles "^1.3.0"
+    react-with-styles-interface-aphrodite "^1.2.0"
+    recompose "^0.23.5"
+
+"@data-ui/forms@^0.0.84":
+  version "0.0.84"
+  resolved "https://registry.yarnpkg.com/@data-ui/forms/-/forms-0.0.84.tgz#d7b7b132b3f825700a4348a3905dd1e0a9711243"
+  integrity sha512-c6AEV4XDsIGT0+gwe8MNfRldtZfZaCs+ge2R1p9fkRwQd/nu8dJFVspuu0/EyHBtjm1F9y+6Drs3yyLFK3M+ug==
+  dependencies:
+    prop-types "^15.5.10"
+    react-select "^1.2.1"
+
+"@data-ui/histogram@^0.0.84":
+  version "0.0.84"
+  resolved "https://registry.yarnpkg.com/@data-ui/histogram/-/histogram-0.0.84.tgz#07738698bbb62dc5845a954b3b547df3e1d3498e"
+  integrity sha512-JuAUd3cgbDvXd1PKddB3L3SvZj5VFXTLG9za0RlqgbEsddR2dgUfJJQ5GacJ7a3o/SpmJ0zRGJVXb5VZozjj2Q==
+  dependencies:
+    "@data-ui/shared" "^0.0.84"
+    "@data-ui/theme" "^0.0.84"
+    "@vx/axis" "^0.0.179"
+    "@vx/curve" "^0.0.165"
+    "@vx/event" "^0.0.179"
+    "@vx/glyph" "^0.0.179"
+    "@vx/gradient" "^0.0.165"
+    "@vx/group" "^0.0.170"
+    "@vx/pattern" "^0.0.179"
+    "@vx/responsive" "^0.0.192"
+    "@vx/scale" "^0.0.179"
+    "@vx/shape" "^0.0.179"
+    "@vx/tooltip" "0.0.179"
+    d3-array "^1.2.0"
+    d3-scale "^1.0.6"
+    prop-types "^15.5.10"
+    react-move "^2.1.0"
+
+"@data-ui/radial-chart@^0.0.84":
+  version "0.0.84"
+  resolved "https://registry.yarnpkg.com/@data-ui/radial-chart/-/radial-chart-0.0.84.tgz#82edbcb0e722787a0004a33810159c90f0a38ad8"
+  integrity sha512-YKvcrtXD+RnZIngB398exuGICIwbQeVbV3Sbqg6txd4dVN9ixsvOFHCaNO5ugqMcyVeFGpMZAtGeau5kUZa73Q==
+  dependencies:
+    "@data-ui/shared" "^0.0.84"
+    "@data-ui/theme" "^0.0.84"
+    "@vx/event" "0.0.140"
+    "@vx/group" "0.0.140"
+    "@vx/scale" "0.0.140"
+    "@vx/shape" "0.0.140"
+    "@vx/tooltip" "0.0.140"
+    prop-types "^15.5.10"
+
+"@data-ui/shared@^0.0.84":
+  version "0.0.84"
+  resolved "https://registry.yarnpkg.com/@data-ui/shared/-/shared-0.0.84.tgz#42bd025d677f9be2beada3e1a84a53d33ac0eb10"
+  integrity sha512-MsDLsFzBHFEREr/eF2/RX1o/cXioEg+VQTsM8gViW5ywGQ7Xo5+EqUOaBSrwqKAkvp3e8PaEZVkchPC54IBhrA==
+  dependencies:
+    "@data-ui/theme" "^0.0.84"
+    "@vx/event" "^0.0.165"
+    "@vx/group" "^0.0.165"
+    "@vx/shape" "^0.0.168"
+    "@vx/tooltip" "0.0.165"
+    d3-array "^1.2.1"
+    prop-types "^15.5.10"
+
+"@data-ui/sparkline@^0.0.84":
+  version "0.0.84"
+  resolved "https://registry.yarnpkg.com/@data-ui/sparkline/-/sparkline-0.0.84.tgz#be722bcb6fe4844b26905419ecfb3a727b2d206e"
+  integrity sha512-Ja7T2JjioZtnoy0PEXF72qv/J8xIotu+oS1Z+ygVGZni6aN/DUY35eGpg/DDeemEFDMoifcx+kYa5LU7hQCnJg==
+  dependencies:
+    "@data-ui/shared" "^0.0.84"
+    "@data-ui/theme" "^0.0.8"
+    "@vx/axis" "^0.0.179"
+    "@vx/curve" "^0.0.165"
+    "@vx/event" "^0.0.179"
+    "@vx/glyph" "^0.0.179"
+    "@vx/gradient" "^0.0.165"
+    "@vx/group" "^0.0.170"
+    "@vx/pattern" "^0.0.179"
+    "@vx/point" "^0.0.165"
+    "@vx/responsive" "^0.0.192"
+    "@vx/scale" "^0.0.179"
+    "@vx/shape" "^0.0.179"
+    d3-array "^1.2.0"
+    prop-types "^15.5.10"
+
+"@data-ui/theme@^0.0.8":
+  version "0.0.8"
+  resolved "https://registry.yarnpkg.com/@data-ui/theme/-/theme-0.0.8.tgz#3116723d04b99f65c7750f81a500e9608b4837c3"
+  integrity sha1-MRZyPQS5n2XHdQ+BpQDpYItIN8M=
+
+"@data-ui/theme@^0.0.84":
+  version "0.0.84"
+  resolved "https://registry.yarnpkg.com/@data-ui/theme/-/theme-0.0.84.tgz#b75c23d7f38c582adbb8d2159d0d703159f8e3b2"
+  integrity sha512-jIoHftC/5c/LVJYF4VSBjjVjrjc0yj4mLkGe8p0eVO7qUYKVvlWx7PrpM7ucyefvuAaKIwlr+Nh2xPGPdADjaA==
+
+"@data-ui/xy-chart@^0.0.84":
+  version "0.0.84"
+  resolved "https://registry.yarnpkg.com/@data-ui/xy-chart/-/xy-chart-0.0.84.tgz#28bc41592d81d7be1da65ddd50fe3b79ea65649a"
+  integrity sha512-4mRWEGfeQJ2kFXmQ81k1gDPx2zdkty6lt0+srui4zleSyhnBv1dmm9J03dq+qwr7+bpzjfq77nINV5HXWb31Bg==
+  dependencies:
+    "@data-ui/shared" "^0.0.84"
+    "@data-ui/theme" "^0.0.84"
+    "@vx/axis" "^0.0.175"
+    "@vx/curve" "^0.0.165"
+    "@vx/event" "^0.0.165"
+    "@vx/glyph" "^0.0.165"
+    "@vx/gradient" "^0.0.165"
+    "@vx/grid" "^0.0.180"
+    "@vx/group" "^0.0.165"
+    "@vx/pattern" "^0.0.165"
+    "@vx/point" "^0.0.165"
+    "@vx/responsive" "^0.0.192"
+    "@vx/scale" "^0.0.165"
+    "@vx/shape" "^0.0.165"
+    "@vx/stats" "^0.0.165"
+    "@vx/text" "^0.0.192"
+    "@vx/threshold" "0.0.170"
+    "@vx/tooltip" "^0.0.165"
+    "@vx/voronoi" "^0.0.165"
+    d3-array "^1.2.0"
+    prop-types "^15.5.10"
+
+"@deck.gl/aggregation-layers@7.1.11":
+  version "7.1.11"
+  resolved "http://localhost:4873/@deck.gl%2faggregation-layers/-/aggregation-layers-7.1.11.tgz#6b66f81a9ff0b120f5b8997c1eee38bf40e106ba"
+  integrity sha512-CHsr+UJhf06Mqb/q60iP7ftHQv3ftHUhJbVO4550PRo+QMFFhHfhxo53gQDDgrQ3stxpAcLT3lXRSNghMoU34g==
+  dependencies:
+    d3-hexbin "^0.2.1"
+
+"@deck.gl/core@7.1.11":
+  version "7.1.11"
+  resolved "http://localhost:4873/@deck.gl%2fcore/-/core-7.1.11.tgz#b5da356053b28767b95d16c29afc1010e21f4e89"
+  integrity sha512-jUi1CcsnF5KPL2sv7Z0H3x+8amee5csqliZXGbXEBYox1l8naC4PhHg5jTgLaB0ZOHfVDsldPwGdPC+Mi4jP/Q==
+  dependencies:
+    "@luma.gl/core" "^7.1.0"
+    gl-matrix "^3.0.0"
+    math.gl "^2.3.0"
+    mjolnir.js "^2.1.2"
+    probe.gl "^3.0.1"
+    seer "^0.2.4"
+    viewport-mercator-project "^6.1.0"
+
+"@deck.gl/geo-layers@7.1.11":
+  version "7.1.11"
+  resolved "http://localhost:4873/@deck.gl%2fgeo-layers/-/geo-layers-7.1.11.tgz#d574a607af10d793194f6a9ee3ce440488da422a"
+  integrity sha512-gIJ1K98IFSZ12hB+zHyQC+9pMncb9BKVhJTA7pjUpxwcmEkkroqet9zkYQQMeSInK0a67BR9GXjebb/N0U04qA==
+  dependencies:
+    h3-js "^3.4.3"
+    long "^3.2.0"
+    s2-geometry "^1.2.10"
+
+"@deck.gl/google-maps@7.1.11":
+  version "7.1.11"
+  resolved "http://localhost:4873/@deck.gl%2fgoogle-maps/-/google-maps-7.1.11.tgz#d85cf3a81ee2a5123e46b4c85d0c8ef7034c4476"
+  integrity sha512-gYp3NFIsyT5p65HgKjXFWTDzFf7K8+6ce9d9MIqaNgVWFZdsjUy9JL5TttDMQXshaQ1aZpxtLL6ZO3BiI1w8fw==
+
+"@deck.gl/json@7.1.11":
+  version "7.1.11"
+  resolved "http://localhost:4873/@deck.gl%2fjson/-/json-7.1.11.tgz#8342322e3cfca8a0e14a970766a793b4e7cb4e06"
+  integrity sha512-obYAXq5VZ0qCTVS8hopS64aXGicUeBNg0/03AAfo+Q5z62cNqagAktGKVZMUsJ13bV8CPohJ2zRWMXO+mAJtew==
+  dependencies:
+    d3-dsv "^1.0.8"
+
+"@deck.gl/layers@7.1.11":
+  version "7.1.11"
+  resolved "http://localhost:4873/@deck.gl%2flayers/-/layers-7.1.11.tgz#d53175a9adfb03869084acc33145c846458d40c8"
+  integrity sha512-hOylm7Pf3CSvqpDoiCJLnqLAU3PAePISskJ5jjhpXtgHBrm1/Gk4boP4/7t7kFZdbSvVIXin13pPRbT0SWCRPw==
+  dependencies:
+    "@loaders.gl/core" "^1.0.3"
+    "@loaders.gl/images" "^1.0.3"
+    "@mapbox/tiny-sdf" "^1.1.0"
+    earcut "^2.0.6"
+
+"@deck.gl/mapbox@7.1.11":
+  version "7.1.11"
+  resolved "http://localhost:4873/@deck.gl%2fmapbox/-/mapbox-7.1.11.tgz#87d2e9306f0ce7679ddc95b11e33b7c2d1ee9d9d"
+  integrity sha512-V4cc9vwXzAOBtWV8x+WtvPVXElGChogkvQketeR2uhz6wIHuH+3sBBRg/Ma476w/II+DKjeHg2AzAZeX3SK7yQ==
+
+"@deck.gl/mesh-layers@7.1.11":
+  version "7.1.11"
+  resolved "http://localhost:4873/@deck.gl%2fmesh-layers/-/mesh-layers-7.1.11.tgz#f2eef1962e1f868957b88113f6f57dc94636ba64"
+  integrity sha512-rI8ffUNh7ac2GpMcGLEiKyRarOPeLfVRlMRKjl9LXU61Wgx6DaHqsMmeqxzjoXEzgiRlY/XgCjepVg0dY6btlQ==
+  dependencies:
+    "@loaders.gl/core" "^1.0.3"
+    "@loaders.gl/images" "^1.0.3"
+
+"@deck.gl/react@7.1.11":
+  version "7.1.11"
+  resolved "http://localhost:4873/@deck.gl%2freact/-/react-7.1.11.tgz#dbd84a2bec4551841e4592da58a064e0d0d80693"
+  integrity sha512-WUzxhvM3jZIZkBAQgdQR+tFBAVDm5opLCKMWI9YkJUsdJzdv9uwiWCsk3Se1pCTFIa5Asb8U6YAi1CHl+OOFyA==
+  dependencies:
+    prop-types "^15.6.0"
+
+"@emotion/babel-plugin-jsx-pragmatic@^0.1.5":
+  version "0.1.5"
+  resolved "http://localhost:4873/@emotion%2fbabel-plugin-jsx-pragmatic/-/babel-plugin-jsx-pragmatic-0.1.5.tgz#27debfe9c27c4d83574d509787ae553bf8a34d7e"
+  integrity sha512-y+3AJ0SItMDaAgGPVkQBC/S/BaqaPACkQ6MyCI2CUlrjTxKttTVfD3TMtcs7vLEcLxqzZ1xiG0vzwCXjhopawQ==
+  dependencies:
+    "@babel/plugin-syntax-jsx" "^7.2.0"
+
+"@emotion/babel-preset-css-prop@^10.2.1":
+  version "10.2.1"
+  resolved "http://localhost:4873/@emotion%2fbabel-preset-css-prop/-/babel-preset-css-prop-10.2.1.tgz#fb331355c1819367a6e5dd171879ae4957aa701a"
+  integrity sha512-4hudLJCfIrbpJZek5n69cwzu7GgCamza/whh/RgqXaI5ZWT8pFj1rR2KjQntzFFzTU7l9o+jdVPSpgCbrVG+VQ==
+  dependencies:
+    "@babel/plugin-transform-react-jsx" "^7.12.1"
+    "@babel/plugin-transform-react-jsx-development" "^7.12.1"
+    "@babel/runtime" "^7.5.5"
+    "@emotion/babel-plugin-jsx-pragmatic" "^0.1.5"
+    babel-plugin-emotion "^10.0.27"
+
+"@emotion/cache@^10.0.27", "@emotion/cache@^10.0.9":
+  version "10.0.29"
+  resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.29.tgz#87e7e64f412c060102d589fe7c6dc042e6f9d1e0"
+  integrity sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==
+  dependencies:
+    "@emotion/sheet" "0.9.4"
+    "@emotion/stylis" "0.8.5"
+    "@emotion/utils" "0.11.3"
+    "@emotion/weak-memoize" "0.2.5"
+
+"@emotion/core@^10.0.20", "@emotion/core@^10.0.28", "@emotion/core@^10.0.9":
+  version "10.0.28"
+  resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.28.tgz#bb65af7262a234593a9e952c041d0f1c9b9bef3d"
+  integrity sha512-pH8UueKYO5jgg0Iq+AmCLxBsvuGtvlmiDCOuv8fGNYn3cowFpLN98L8zO56U0H1PjDIyAlXymgL3Wu7u7v6hbA==
+  dependencies:
+    "@babel/runtime" "^7.5.5"
+    "@emotion/cache" "^10.0.27"
+    "@emotion/css" "^10.0.27"
+    "@emotion/serialize" "^0.11.15"
+    "@emotion/sheet" "0.9.4"
+    "@emotion/utils" "0.11.3"
+
+"@emotion/core@^10.0.35", "@emotion/core@^10.1.1":
+  version "10.1.1"
+  resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.1.1.tgz#c956c1365f2f2481960064bcb8c4732e5fb612c3"
+  integrity sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==
+  dependencies:
+    "@babel/runtime" "^7.5.5"
+    "@emotion/cache" "^10.0.27"
+    "@emotion/css" "^10.0.27"
+    "@emotion/serialize" "^0.11.15"
+    "@emotion/sheet" "0.9.4"
+    "@emotion/utils" "0.11.3"
+
+"@emotion/css@^10.0.27", "@emotion/css@^10.0.9":
+  version "10.0.27"
+  resolved "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.27.tgz#3a7458198fbbebb53b01b2b87f64e5e21241e14c"
+  integrity sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==
+  dependencies:
+    "@emotion/serialize" "^0.11.15"
+    "@emotion/utils" "0.11.3"
+    babel-plugin-emotion "^10.0.27"
+
+"@emotion/hash@0.8.0":
+  version "0.8.0"
+  resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
+  integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
+
+"@emotion/hash@^0.7.3":
+  version "0.7.4"
+  resolved "http://localhost:4873/@emotion%2fhash/-/hash-0.7.4.tgz#f14932887422c9056b15a8d222a9074a7dfa2831"
+  integrity sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A==
+
+"@emotion/is-prop-valid@0.8.8", "@emotion/is-prop-valid@^0.8.6":
+  version "0.8.8"
+  resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
+  integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==
+  dependencies:
+    "@emotion/memoize" "0.7.4"
+
+"@emotion/memoize@0.7.4":
+  version "0.7.4"
+  resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
+  integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
+
+"@emotion/serialize@^0.11.15", "@emotion/serialize@^0.11.16":
+  version "0.11.16"
+  resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.16.tgz#dee05f9e96ad2fb25a5206b6d759b2d1ed3379ad"
+  integrity sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==
+  dependencies:
+    "@emotion/hash" "0.8.0"
+    "@emotion/memoize" "0.7.4"
+    "@emotion/unitless" "0.7.5"
+    "@emotion/utils" "0.11.3"
+    csstype "^2.5.7"
+
+"@emotion/sheet@0.9.4":
+  version "0.9.4"
+  resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.4.tgz#894374bea39ec30f489bbfc3438192b9774d32e5"
+  integrity sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==
+
+"@emotion/styled-base@^10.0.27":
+  version "10.0.31"
+  resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.31.tgz#940957ee0aa15c6974adc7d494ff19765a2f742a"
+  integrity sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==
+  dependencies:
+    "@babel/runtime" "^7.5.5"
+    "@emotion/is-prop-valid" "0.8.8"
+    "@emotion/serialize" "^0.11.15"
+    "@emotion/utils" "0.11.3"
+
+"@emotion/styled@^10.0.17", "@emotion/styled@^10.0.23", "@emotion/styled@^10.0.27":
+  version "10.0.27"
+  resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-10.0.27.tgz#12cb67e91f7ad7431e1875b1d83a94b814133eaf"
+  integrity sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==
+  dependencies:
+    "@emotion/styled-base" "^10.0.27"
+    babel-plugin-emotion "^10.0.27"
+
+"@emotion/stylis@0.8.5":
+  version "0.8.5"
+  resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04"
+  integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==
+
+"@emotion/unitless@0.7.5":
+  version "0.7.5"
+  resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
+  integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
+
+"@emotion/utils@0.11.3":
+  version "0.11.3"
+  resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.3.tgz#a759863867befa7e583400d322652a3f44820924"
+  integrity sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==
+
+"@emotion/weak-memoize@0.2.5":
+  version "0.2.5"
+  resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46"
+  integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==
+
+"@encodable/color@^1.0.4":
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/@encodable/color/-/color-1.0.4.tgz#44fbd96f65ea02041828cd27a855d5715c8105cb"
+  integrity sha512-WmB1Iqsa2zkj7cMBBKnGHtIdRH1BHNQZ/6j8LAmWrz9LVqsV2trbnVtThBGv//NPsLtzAFXwOCAlSUQLO9oQcQ==
+  dependencies:
+    "@encodable/registry" "^1.0.3"
+    "@types/d3-interpolate" "^1.3.1"
+    "@types/d3-scale" "^2.2.0"
+    "@types/d3-scale-chromatic" "^1.2.0"
+    d3-interpolate "^2.0.1"
+    d3-scale "^3.2.1"
+    d3-scale-chromatic "^1.5.0"
+
+"@encodable/format@^1.0.5":
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/@encodable/format/-/format-1.0.5.tgz#8278ad181129c139b9e54bb990369ac5f28b2e49"
+  integrity sha512-+JlQCoJ1DhuPdFesCBsxGLScC/b/irId1By2xZ5nzmNWkUxjjoRThPyN1EegOYHMiGSH+K9IVI/aaN3klrs0ow==
+  dependencies:
+    "@encodable/registry" "^1.0.3"
+    "@types/d3-format" "^1.3.1"
+    "@types/d3-time" "^1.0.10"
+    "@types/d3-time-format" "^2.1.1"
+    d3-format "^2.0.0"
+    d3-time "^2.0.0"
+    d3-time-format "^2.2.3"
+
+"@encodable/registry@^1.0.3":
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/@encodable/registry/-/registry-1.0.3.tgz#0660939a88baf5f77c5e1594d7ba841b9e007248"
+  integrity sha512-YH2nSBZJKgbH/9MkQXzAEE9UwTaVcWiKgVFyEU/gvrfmNWqecYaHMTyObo+ADSTGF4kk0cZZkr7VqZgIQbvrUw==
+
+"@eslint/eslintrc@^0.2.2":
+  version "0.2.2"
+  resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.2.2.tgz#d01fc791e2fc33e88a29d6f3dc7e93d0cd784b76"
+  integrity sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==
+  dependencies:
+    ajv "^6.12.4"
+    debug "^4.1.1"
+    espree "^7.3.0"
+    globals "^12.1.0"
+    ignore "^4.0.6"
+    import-fresh "^3.2.1"
+    js-yaml "^3.13.1"
+    lodash "^4.17.19"
+    minimatch "^3.0.4"
+    strip-json-comments "^3.1.1"
+
+"@evocateur/libnpmaccess@^3.1.2":
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/@evocateur/libnpmaccess/-/libnpmaccess-3.1.2.tgz#ecf7f6ce6b004e9f942b098d92200be4a4b1c845"
+  integrity sha512-KSCAHwNWro0CF2ukxufCitT9K5LjL/KuMmNzSu8wuwN2rjyKHD8+cmOsiybK+W5hdnwc5M1SmRlVCaMHQo+3rg==
+  dependencies:
+    "@evocateur/npm-registry-fetch" "^4.0.0"
+    aproba "^2.0.0"
+    figgy-pudding "^3.5.1"
+    get-stream "^4.0.0"
+    npm-package-arg "^6.1.0"
+
+"@evocateur/libnpmpublish@^1.2.2":
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/@evocateur/libnpmpublish/-/libnpmpublish-1.2.2.tgz#55df09d2dca136afba9c88c759ca272198db9f1a"
+  integrity sha512-MJrrk9ct1FeY9zRlyeoyMieBjGDG9ihyyD9/Ft6MMrTxql9NyoEx2hw9casTIP4CdqEVu+3nQ2nXxoJ8RCXyFg==
+  dependencies:
+    "@evocateur/npm-registry-fetch" "^4.0.0"
+    aproba "^2.0.0"
+    figgy-pudding "^3.5.1"
+    get-stream "^4.0.0"
+    lodash.clonedeep "^4.5.0"
+    normalize-package-data "^2.4.0"
+    npm-package-arg "^6.1.0"
+    semver "^5.5.1"
+    ssri "^6.0.1"
+
+"@evocateur/npm-registry-fetch@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@evocateur/npm-registry-fetch/-/npm-registry-fetch-4.0.0.tgz#8c4c38766d8d32d3200fcb0a83f064b57365ed66"
+  integrity sha512-k1WGfKRQyhJpIr+P17O5vLIo2ko1PFLKwoetatdduUSt/aQ4J2sJrJwwatdI5Z3SiYk/mRH9S3JpdmMFd/IK4g==
+  dependencies:
+    JSONStream "^1.3.4"
+    bluebird "^3.5.1"
+    figgy-pudding "^3.4.1"
+    lru-cache "^5.1.1"
+    make-fetch-happen "^5.0.0"
+    npm-package-arg "^6.1.0"
+    safe-buffer "^5.1.2"
+
+"@evocateur/pacote@^9.6.3":
+  version "9.6.5"
+  resolved "https://registry.yarnpkg.com/@evocateur/pacote/-/pacote-9.6.5.tgz#33de32ba210b6f17c20ebab4d497efc6755f4ae5"
+  integrity sha512-EI552lf0aG2nOV8NnZpTxNo2PcXKPmDbF9K8eCBFQdIZwHNGN/mi815fxtmUMa2wTa1yndotICIDt/V0vpEx2w==
+  dependencies:
+    "@evocateur/npm-registry-fetch" "^4.0.0"
+    bluebird "^3.5.3"
+    cacache "^12.0.3"
+    chownr "^1.1.2"
+    figgy-pudding "^3.5.1"
+    get-stream "^4.1.0"
+    glob "^7.1.4"
+    infer-owner "^1.0.4"
+    lru-cache "^5.1.1"
+    make-fetch-happen "^5.0.0"
+    minimatch "^3.0.4"
+    minipass "^2.3.5"
+    mississippi "^3.0.0"
+    mkdirp "^0.5.1"
+    normalize-package-data "^2.5.0"
+    npm-package-arg "^6.1.0"
+    npm-packlist "^1.4.4"
+    npm-pick-manifest "^3.0.0"
+    osenv "^0.1.5"
+    promise-inflight "^1.0.1"
+    promise-retry "^1.1.1"
+    protoduck "^5.0.1"
+    rimraf "^2.6.3"
+    safe-buffer "^5.2.0"
+    semver "^5.7.0"
+    ssri "^6.0.1"
+    tar "^4.4.10"
+    unique-filename "^1.1.1"
+    which "^1.3.1"
+
+"@hot-loader/react-dom@^16.13.0":
+  version "16.14.0"
+  resolved "http://localhost:4873/@hot-loader%2freact-dom/-/react-dom-16.14.0.tgz#3cfc64e40bb78fa623e59b582b8f09dcdaad648a"
+  integrity sha512-EN9czvcLsMYmSDo5yRKZOAq3ZGRlDpad1gPtX0NdMMomJXcPE3yFSeFzE94X/NjOaiSVimB7LuqPYpkWVaIi4Q==
+  dependencies:
+    loose-envify "^1.1.0"
+    object-assign "^4.1.1"
+    prop-types "^15.6.2"
+    scheduler "^0.19.1"
+
+"@icons/material@^0.2.4":
+  version "0.2.4"
+  resolved "https://registry.yarnpkg.com/@icons/material/-/material-0.2.4.tgz#e90c9f71768b3736e76d7dd6783fc6c2afa88bc8"
+  integrity sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==
+
+"@istanbuljs/load-nyc-config@^1.0.0":
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.0.0.tgz#10602de5570baea82f8afbfa2630b24e7a8cfe5b"
+  integrity sha512-ZR0rq/f/E4f4XcgnDvtMWXCUJpi8eO0rssVhmztsZqLIEFA9UUP9zmpE0VxlM+kv/E1ul2I876Fwil2ayptDVg==
+  dependencies:
+    camelcase "^5.3.1"
+    find-up "^4.1.0"
+    js-yaml "^3.13.1"
+    resolve-from "^5.0.0"
+
+"@istanbuljs/nyc-config-typescript@^1.0.1":
+  version "1.0.1"
+  resolved "http://localhost:4873/@istanbuljs%2fnyc-config-typescript/-/nyc-config-typescript-1.0.1.tgz#55172f5663b3635586add21b14d42ca94a163d58"
+  integrity sha512-/gz6LgVpky205LuoOfwEZmnUtaSmdk0QIMcNFj9OvxhiMhPpKftMgZmGN7jNj7jR+lr8IB1Yks3QSSSNSxfoaQ==
+  dependencies:
+    "@istanbuljs/schema" "^0.1.2"
+
+"@istanbuljs/schema@^0.1.2":
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd"
+  integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
+
+"@jest/console@^24.9.0":
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0"
+  integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==
+  dependencies:
+    "@jest/source-map" "^24.9.0"
+    chalk "^2.0.1"
+    slash "^2.0.0"
+
+"@jest/console@^25.5.0":
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/@jest/console/-/console-25.5.0.tgz#770800799d510f37329c508a9edd0b7b447d9abb"
+  integrity sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    chalk "^3.0.0"
+    jest-message-util "^25.5.0"
+    jest-util "^25.5.0"
+    slash "^3.0.0"
+
+"@jest/console@^26.6.2":
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.6.2.tgz#4e04bc464014358b03ab4937805ee36a0aeb98f2"
+  integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+    chalk "^4.0.0"
+    jest-message-util "^26.6.2"
+    jest-util "^26.6.2"
+    slash "^3.0.0"
+
+"@jest/core@^25.5.4":
+  version "25.5.4"
+  resolved "https://registry.yarnpkg.com/@jest/core/-/core-25.5.4.tgz#3ef7412f7339210f003cdf36646bbca786efe7b4"
+  integrity sha512-3uSo7laYxF00Dg/DMgbn4xMJKmDdWvZnf89n8Xj/5/AeQ2dOQmn6b6Hkj/MleyzZWXpwv+WSdYWl4cLsy2JsoA==
+  dependencies:
+    "@jest/console" "^25.5.0"
+    "@jest/reporters" "^25.5.1"
+    "@jest/test-result" "^25.5.0"
+    "@jest/transform" "^25.5.1"
+    "@jest/types" "^25.5.0"
+    ansi-escapes "^4.2.1"
+    chalk "^3.0.0"
+    exit "^0.1.2"
+    graceful-fs "^4.2.4"
+    jest-changed-files "^25.5.0"
+    jest-config "^25.5.4"
+    jest-haste-map "^25.5.1"
+    jest-message-util "^25.5.0"
+    jest-regex-util "^25.2.6"
+    jest-resolve "^25.5.1"
+    jest-resolve-dependencies "^25.5.4"
+    jest-runner "^25.5.4"
+    jest-runtime "^25.5.4"
+    jest-snapshot "^25.5.1"
+    jest-util "^25.5.0"
+    jest-validate "^25.5.0"
+    jest-watcher "^25.5.0"
+    micromatch "^4.0.2"
+    p-each-series "^2.1.0"
+    realpath-native "^2.0.0"
+    rimraf "^3.0.0"
+    slash "^3.0.0"
+    strip-ansi "^6.0.0"
+
+"@jest/core@^26.6.3":
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.6.3.tgz#7639fcb3833d748a4656ada54bde193051e45fad"
+  integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==
+  dependencies:
+    "@jest/console" "^26.6.2"
+    "@jest/reporters" "^26.6.2"
+    "@jest/test-result" "^26.6.2"
+    "@jest/transform" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+    ansi-escapes "^4.2.1"
+    chalk "^4.0.0"
+    exit "^0.1.2"
+    graceful-fs "^4.2.4"
+    jest-changed-files "^26.6.2"
+    jest-config "^26.6.3"
+    jest-haste-map "^26.6.2"
+    jest-message-util "^26.6.2"
+    jest-regex-util "^26.0.0"
+    jest-resolve "^26.6.2"
+    jest-resolve-dependencies "^26.6.3"
+    jest-runner "^26.6.3"
+    jest-runtime "^26.6.3"
+    jest-snapshot "^26.6.2"
+    jest-util "^26.6.2"
+    jest-validate "^26.6.2"
+    jest-watcher "^26.6.2"
+    micromatch "^4.0.2"
+    p-each-series "^2.1.0"
+    rimraf "^3.0.0"
+    slash "^3.0.0"
+    strip-ansi "^6.0.0"
+
+"@jest/environment@^24.9.0":
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.9.0.tgz#21e3afa2d65c0586cbd6cbefe208bafade44ab18"
+  integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==
+  dependencies:
+    "@jest/fake-timers" "^24.9.0"
+    "@jest/transform" "^24.9.0"
+    "@jest/types" "^24.9.0"
+    jest-mock "^24.9.0"
+
+"@jest/environment@^25.5.0":
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-25.5.0.tgz#aa33b0c21a716c65686638e7ef816c0e3a0c7b37"
+  integrity sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA==
+  dependencies:
+    "@jest/fake-timers" "^25.5.0"
+    "@jest/types" "^25.5.0"
+    jest-mock "^25.5.0"
+
+"@jest/environment@^26.6.2":
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.6.2.tgz#ba364cc72e221e79cc8f0a99555bf5d7577cf92c"
+  integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==
+  dependencies:
+    "@jest/fake-timers" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+    jest-mock "^26.6.2"
+
+"@jest/fake-timers@^24.9.0":
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93"
+  integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==
+  dependencies:
+    "@jest/types" "^24.9.0"
+    jest-message-util "^24.9.0"
+    jest-mock "^24.9.0"
+
+"@jest/fake-timers@^25.5.0":
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-25.5.0.tgz#46352e00533c024c90c2bc2ad9f2959f7f114185"
+  integrity sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    jest-message-util "^25.5.0"
+    jest-mock "^25.5.0"
+    jest-util "^25.5.0"
+    lolex "^5.0.0"
+
+"@jest/fake-timers@^26.6.2":
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.6.2.tgz#459c329bcf70cee4af4d7e3f3e67848123535aad"
+  integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    "@sinonjs/fake-timers" "^6.0.1"
+    "@types/node" "*"
+    jest-message-util "^26.6.2"
+    jest-mock "^26.6.2"
+    jest-util "^26.6.2"
+
+"@jest/globals@^25.5.2":
+  version "25.5.2"
+  resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-25.5.2.tgz#5e45e9de8d228716af3257eeb3991cc2e162ca88"
+  integrity sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==
+  dependencies:
+    "@jest/environment" "^25.5.0"
+    "@jest/types" "^25.5.0"
+    expect "^25.5.0"
+
+"@jest/globals@^26.6.2":
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.6.2.tgz#5b613b78a1aa2655ae908eba638cc96a20df720a"
+  integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==
+  dependencies:
+    "@jest/environment" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    expect "^26.6.2"
+
+"@jest/reporters@^25.5.1":
+  version "25.5.1"
+  resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-25.5.1.tgz#cb686bcc680f664c2dbaf7ed873e93aa6811538b"
+  integrity sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw==
+  dependencies:
+    "@bcoe/v8-coverage" "^0.2.3"
+    "@jest/console" "^25.5.0"
+    "@jest/test-result" "^25.5.0"
+    "@jest/transform" "^25.5.1"
+    "@jest/types" "^25.5.0"
+    chalk "^3.0.0"
+    collect-v8-coverage "^1.0.0"
+    exit "^0.1.2"
+    glob "^7.1.2"
+    graceful-fs "^4.2.4"
+    istanbul-lib-coverage "^3.0.0"
+    istanbul-lib-instrument "^4.0.0"
+    istanbul-lib-report "^3.0.0"
+    istanbul-lib-source-maps "^4.0.0"
+    istanbul-reports "^3.0.2"
+    jest-haste-map "^25.5.1"
+    jest-resolve "^25.5.1"
+    jest-util "^25.5.0"
+    jest-worker "^25.5.0"
+    slash "^3.0.0"
+    source-map "^0.6.0"
+    string-length "^3.1.0"
+    terminal-link "^2.0.0"
+    v8-to-istanbul "^4.1.3"
+  optionalDependencies:
+    node-notifier "^6.0.0"
+
+"@jest/reporters@^26.6.2":
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.6.2.tgz#1f518b99637a5f18307bd3ecf9275f6882a667f6"
+  integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==
+  dependencies:
+    "@bcoe/v8-coverage" "^0.2.3"
+    "@jest/console" "^26.6.2"
+    "@jest/test-result" "^26.6.2"
+    "@jest/transform" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    chalk "^4.0.0"
+    collect-v8-coverage "^1.0.0"
+    exit "^0.1.2"
+    glob "^7.1.2"
+    graceful-fs "^4.2.4"
+    istanbul-lib-coverage "^3.0.0"
+    istanbul-lib-instrument "^4.0.3"
+    istanbul-lib-report "^3.0.0"
+    istanbul-lib-source-maps "^4.0.0"
+    istanbul-reports "^3.0.2"
+    jest-haste-map "^26.6.2"
+    jest-resolve "^26.6.2"
+    jest-util "^26.6.2"
+    jest-worker "^26.6.2"
+    slash "^3.0.0"
+    source-map "^0.6.0"
+    string-length "^4.0.1"
+    terminal-link "^2.0.0"
+    v8-to-istanbul "^7.0.0"
+  optionalDependencies:
+    node-notifier "^8.0.0"
+
+"@jest/source-map@^24.9.0":
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714"
+  integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==
+  dependencies:
+    callsites "^3.0.0"
+    graceful-fs "^4.1.15"
+    source-map "^0.6.0"
+
+"@jest/source-map@^25.5.0":
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-25.5.0.tgz#df5c20d6050aa292c2c6d3f0d2c7606af315bd1b"
+  integrity sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ==
+  dependencies:
+    callsites "^3.0.0"
+    graceful-fs "^4.2.4"
+    source-map "^0.6.0"
+
+"@jest/source-map@^26.6.2":
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.6.2.tgz#29af5e1e2e324cafccc936f218309f54ab69d535"
+  integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==
+  dependencies:
+    callsites "^3.0.0"
+    graceful-fs "^4.2.4"
+    source-map "^0.6.0"
+
+"@jest/test-result@^24.9.0":
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca"
+  integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==
+  dependencies:
+    "@jest/console" "^24.9.0"
+    "@jest/types" "^24.9.0"
+    "@types/istanbul-lib-coverage" "^2.0.0"
+
+"@jest/test-result@^25.5.0":
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-25.5.0.tgz#139a043230cdeffe9ba2d8341b27f2efc77ce87c"
+  integrity sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A==
+  dependencies:
+    "@jest/console" "^25.5.0"
+    "@jest/types" "^25.5.0"
+    "@types/istanbul-lib-coverage" "^2.0.0"
+    collect-v8-coverage "^1.0.0"
+
+"@jest/test-result@^26.6.2":
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.6.2.tgz#55da58b62df134576cc95476efa5f7949e3f5f18"
+  integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==
+  dependencies:
+    "@jest/console" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/istanbul-lib-coverage" "^2.0.0"
+    collect-v8-coverage "^1.0.0"
+
+"@jest/test-sequencer@^25.5.4":
+  version "25.5.4"
+  resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-25.5.4.tgz#9b4e685b36954c38d0f052e596d28161bdc8b737"
+  integrity sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA==
+  dependencies:
+    "@jest/test-result" "^25.5.0"
+    graceful-fs "^4.2.4"
+    jest-haste-map "^25.5.1"
+    jest-runner "^25.5.4"
+    jest-runtime "^25.5.4"
+
+"@jest/test-sequencer@^26.6.3":
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz#98e8a45100863886d074205e8ffdc5a7eb582b17"
+  integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==
+  dependencies:
+    "@jest/test-result" "^26.6.2"
+    graceful-fs "^4.2.4"
+    jest-haste-map "^26.6.2"
+    jest-runner "^26.6.3"
+    jest-runtime "^26.6.3"
+
+"@jest/transform@^24.9.0":
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.9.0.tgz#4ae2768b296553fadab09e9ec119543c90b16c56"
+  integrity sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==
+  dependencies:
+    "@babel/core" "^7.1.0"
+    "@jest/types" "^24.9.0"
+    babel-plugin-istanbul "^5.1.0"
+    chalk "^2.0.1"
+    convert-source-map "^1.4.0"
+    fast-json-stable-stringify "^2.0.0"
+    graceful-fs "^4.1.15"
+    jest-haste-map "^24.9.0"
+    jest-regex-util "^24.9.0"
+    jest-util "^24.9.0"
+    micromatch "^3.1.10"
+    pirates "^4.0.1"
+    realpath-native "^1.1.0"
+    slash "^2.0.0"
+    source-map "^0.6.1"
+    write-file-atomic "2.4.1"
+
+"@jest/transform@^25.5.1":
+  version "25.5.1"
+  resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.5.1.tgz#0469ddc17699dd2bf985db55fa0fb9309f5c2db3"
+  integrity sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==
+  dependencies:
+    "@babel/core" "^7.1.0"
+    "@jest/types" "^25.5.0"
+    babel-plugin-istanbul "^6.0.0"
+    chalk "^3.0.0"
+    convert-source-map "^1.4.0"
+    fast-json-stable-stringify "^2.0.0"
+    graceful-fs "^4.2.4"
+    jest-haste-map "^25.5.1"
+    jest-regex-util "^25.2.6"
+    jest-util "^25.5.0"
+    micromatch "^4.0.2"
+    pirates "^4.0.1"
+    realpath-native "^2.0.0"
+    slash "^3.0.0"
+    source-map "^0.6.1"
+    write-file-atomic "^3.0.0"
+
+"@jest/transform@^26.0.0", "@jest/transform@^26.6.2":
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.6.2.tgz#5ac57c5fa1ad17b2aae83e73e45813894dcf2e4b"
+  integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==
+  dependencies:
+    "@babel/core" "^7.1.0"
+    "@jest/types" "^26.6.2"
+    babel-plugin-istanbul "^6.0.0"
+    chalk "^4.0.0"
+    convert-source-map "^1.4.0"
+    fast-json-stable-stringify "^2.0.0"
+    graceful-fs "^4.2.4"
+    jest-haste-map "^26.6.2"
+    jest-regex-util "^26.0.0"
+    jest-util "^26.6.2"
+    micromatch "^4.0.2"
+    pirates "^4.0.1"
+    slash "^3.0.0"
+    source-map "^0.6.1"
+    write-file-atomic "^3.0.0"
+
+"@jest/types@^24.9.0":
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59"
+  integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==
+  dependencies:
+    "@types/istanbul-lib-coverage" "^2.0.0"
+    "@types/istanbul-reports" "^1.1.1"
+    "@types/yargs" "^13.0.0"
+
+"@jest/types@^25.1.0":
+  version "25.2.3"
+  resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.2.3.tgz#035c4fb94e2da472f359ff9a211915d59987f6b6"
+  integrity sha512-6oLQwO9mKif3Uph3RX5J1i3S7X7xtDHWBaaaoeKw8hOzV6YUd0qDcYcHZ6QXMHDIzSr7zzrEa51o2Ovlj6AtKQ==
+  dependencies:
+    "@types/istanbul-lib-coverage" "^2.0.0"
+    "@types/istanbul-reports" "^1.1.1"
+    "@types/yargs" "^15.0.0"
+    chalk "^3.0.0"
+
+"@jest/types@^25.5.0":
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d"
+  integrity sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==
+  dependencies:
+    "@types/istanbul-lib-coverage" "^2.0.0"
+    "@types/istanbul-reports" "^1.1.1"
+    "@types/yargs" "^15.0.0"
+    chalk "^3.0.0"
+
+"@jest/types@^26.6.2":
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e"
+  integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==
+  dependencies:
+    "@types/istanbul-lib-coverage" "^2.0.0"
+    "@types/istanbul-reports" "^3.0.0"
+    "@types/node" "*"
+    "@types/yargs" "^15.0.0"
+    chalk "^4.0.0"
+
+"@lerna/add@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/add/-/add-3.21.0.tgz#27007bde71cc7b0a2969ab3c2f0ae41578b4577b"
+  integrity sha512-vhUXXF6SpufBE1EkNEXwz1VLW03f177G9uMOFMQkp6OJ30/PWg4Ekifuz9/3YfgB2/GH8Tu4Lk3O51P2Hskg/A==
+  dependencies:
+    "@evocateur/pacote" "^9.6.3"
+    "@lerna/bootstrap" "3.21.0"
+    "@lerna/command" "3.21.0"
+    "@lerna/filter-options" "3.20.0"
+    "@lerna/npm-conf" "3.16.0"
+    "@lerna/validation-error" "3.13.0"
+    dedent "^0.7.0"
+    npm-package-arg "^6.1.0"
+    p-map "^2.1.0"
+    semver "^6.2.0"
+
+"@lerna/bootstrap@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-3.21.0.tgz#bcd1b651be5b0970b20d8fae04c864548123aed6"
+  integrity sha512-mtNHlXpmvJn6JTu0KcuTTPl2jLsDNud0QacV/h++qsaKbhAaJr/FElNZ5s7MwZFUM3XaDmvWzHKaszeBMHIbBw==
+  dependencies:
+    "@lerna/command" "3.21.0"
+    "@lerna/filter-options" "3.20.0"
+    "@lerna/has-npm-version" "3.16.5"
+    "@lerna/npm-install" "3.16.5"
+    "@lerna/package-graph" "3.18.5"
+    "@lerna/pulse-till-done" "3.13.0"
+    "@lerna/rimraf-dir" "3.16.5"
+    "@lerna/run-lifecycle" "3.16.2"
+    "@lerna/run-topologically" "3.18.5"
+    "@lerna/symlink-binary" "3.17.0"
+    "@lerna/symlink-dependencies" "3.17.0"
+    "@lerna/validation-error" "3.13.0"
+    dedent "^0.7.0"
+    get-port "^4.2.0"
+    multimatch "^3.0.0"
+    npm-package-arg "^6.1.0"
+    npmlog "^4.1.2"
+    p-finally "^1.0.0"
+    p-map "^2.1.0"
+    p-map-series "^1.0.0"
+    p-waterfall "^1.0.0"
+    read-package-tree "^5.1.6"
+    semver "^6.2.0"
+
+"@lerna/changed@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-3.21.0.tgz#108e15f679bfe077af500f58248c634f1044ea0b"
+  integrity sha512-hzqoyf8MSHVjZp0gfJ7G8jaz+++mgXYiNs9iViQGA8JlN/dnWLI5sWDptEH3/B30Izo+fdVz0S0s7ydVE3pWIw==
+  dependencies:
+    "@lerna/collect-updates" "3.20.0"
+    "@lerna/command" "3.21.0"
+    "@lerna/listable" "3.18.5"
+    "@lerna/output" "3.13.0"
+
+"@lerna/check-working-tree@3.16.5":
+  version "3.16.5"
+  resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-3.16.5.tgz#b4f8ae61bb4523561dfb9f8f8d874dd46bb44baa"
+  integrity sha512-xWjVBcuhvB8+UmCSb5tKVLB5OuzSpw96WEhS2uz6hkWVa/Euh1A0/HJwn2cemyK47wUrCQXtczBUiqnq9yX5VQ==
+  dependencies:
+    "@lerna/collect-uncommitted" "3.16.5"
+    "@lerna/describe-ref" "3.16.5"
+    "@lerna/validation-error" "3.13.0"
+
+"@lerna/child-process@3.16.5":
+  version "3.16.5"
+  resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-3.16.5.tgz#38fa3c18064aa4ac0754ad80114776a7b36a69b2"
+  integrity sha512-vdcI7mzei9ERRV4oO8Y1LHBZ3A5+ampRKg1wq5nutLsUA4mEBN6H7JqjWOMY9xZemv6+kATm2ofjJ3lW5TszQg==
+  dependencies:
+    chalk "^2.3.1"
+    execa "^1.0.0"
+    strong-log-transformer "^2.0.0"
+
+"@lerna/clean@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-3.21.0.tgz#c0b46b5300cc3dae2cda3bec14b803082da3856d"
+  integrity sha512-b/L9l+MDgE/7oGbrav6rG8RTQvRiZLO1zTcG17zgJAAuhlsPxJExMlh2DFwJEVi2les70vMhHfST3Ue1IMMjpg==
+  dependencies:
+    "@lerna/command" "3.21.0"
+    "@lerna/filter-options" "3.20.0"
+    "@lerna/prompt" "3.18.5"
+    "@lerna/pulse-till-done" "3.13.0"
+    "@lerna/rimraf-dir" "3.16.5"
+    p-map "^2.1.0"
+    p-map-series "^1.0.0"
+    p-waterfall "^1.0.0"
+
+"@lerna/cli@3.18.5":
+  version "3.18.5"
+  resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-3.18.5.tgz#c90c461542fcd35b6d5b015a290fb0dbfb41d242"
+  integrity sha512-erkbxkj9jfc89vVs/jBLY/fM0I80oLmJkFUV3Q3wk9J3miYhP14zgVEBsPZY68IZlEjT6T3Xlq2xO1AVaatHsA==
+  dependencies:
+    "@lerna/global-options" "3.13.0"
+    dedent "^0.7.0"
+    npmlog "^4.1.2"
+    yargs "^14.2.2"
+
+"@lerna/collect-uncommitted@3.16.5":
+  version "3.16.5"
+  resolved "https://registry.yarnpkg.com/@lerna/collect-uncommitted/-/collect-uncommitted-3.16.5.tgz#a494d61aac31cdc7aec4bbe52c96550274132e63"
+  integrity sha512-ZgqnGwpDZiWyzIQVZtQaj9tRizsL4dUOhuOStWgTAw1EMe47cvAY2kL709DzxFhjr6JpJSjXV5rZEAeU3VE0Hg==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    chalk "^2.3.1"
+    figgy-pudding "^3.5.1"
+    npmlog "^4.1.2"
+
+"@lerna/collect-updates@3.20.0":
+  version "3.20.0"
+  resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-3.20.0.tgz#62f9d76ba21a25b7d9fbf31c02de88744a564bd1"
+  integrity sha512-qBTVT5g4fupVhBFuY4nI/3FSJtQVcDh7/gEPOpRxoXB/yCSnT38MFHXWl+y4einLciCjt/+0x6/4AG80fjay2Q==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    "@lerna/describe-ref" "3.16.5"
+    minimatch "^3.0.4"
+    npmlog "^4.1.2"
+    slash "^2.0.0"
+
+"@lerna/command@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/command/-/command-3.21.0.tgz#9a2383759dc7b700dacfa8a22b2f3a6e190121f7"
+  integrity sha512-T2bu6R8R3KkH5YoCKdutKv123iUgUbW8efVjdGCDnCMthAQzoentOJfDeodBwn0P2OqCl3ohsiNVtSn9h78fyQ==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    "@lerna/package-graph" "3.18.5"
+    "@lerna/project" "3.21.0"
+    "@lerna/validation-error" "3.13.0"
+    "@lerna/write-log-file" "3.13.0"
+    clone-deep "^4.0.1"
+    dedent "^0.7.0"
+    execa "^1.0.0"
+    is-ci "^2.0.0"
+    npmlog "^4.1.2"
+
+"@lerna/conventional-commits@3.22.0":
+  version "3.22.0"
+  resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-3.22.0.tgz#2798f4881ee2ef457bdae027ab7d0bf0af6f1e09"
+  integrity sha512-z4ZZk1e8Mhz7+IS8NxHr64wyklHctCJyWpJKEZZPJiLFJ8yKto/x38O80R10pIzC0rr8Sy/OsjSH4bl0TbbgqA==
+  dependencies:
+    "@lerna/validation-error" "3.13.0"
+    conventional-changelog-angular "^5.0.3"
+    conventional-changelog-core "^3.1.6"
+    conventional-recommended-bump "^5.0.0"
+    fs-extra "^8.1.0"
+    get-stream "^4.0.0"
+    lodash.template "^4.5.0"
+    npm-package-arg "^6.1.0"
+    npmlog "^4.1.2"
+    pify "^4.0.1"
+    semver "^6.2.0"
+
+"@lerna/create-symlink@3.16.2":
+  version "3.16.2"
+  resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-3.16.2.tgz#412cb8e59a72f5a7d9463e4e4721ad2070149967"
+  integrity sha512-pzXIJp6av15P325sgiIRpsPXLFmkisLhMBCy4764d+7yjf2bzrJ4gkWVMhsv4AdF0NN3OyZ5jjzzTtLNqfR+Jw==
+  dependencies:
+    "@zkochan/cmd-shim" "^3.1.0"
+    fs-extra "^8.1.0"
+    npmlog "^4.1.2"
+
+"@lerna/create@3.22.0":
+  version "3.22.0"
+  resolved "https://registry.yarnpkg.com/@lerna/create/-/create-3.22.0.tgz#d6bbd037c3dc5b425fe5f6d1b817057c278f7619"
+  integrity sha512-MdiQQzCcB4E9fBF1TyMOaAEz9lUjIHp1Ju9H7f3lXze5JK6Fl5NYkouAvsLgY6YSIhXMY8AHW2zzXeBDY4yWkw==
+  dependencies:
+    "@evocateur/pacote" "^9.6.3"
+    "@lerna/child-process" "3.16.5"
+    "@lerna/command" "3.21.0"
+    "@lerna/npm-conf" "3.16.0"
+    "@lerna/validation-error" "3.13.0"
+    camelcase "^5.0.0"
+    dedent "^0.7.0"
+    fs-extra "^8.1.0"
+    globby "^9.2.0"
+    init-package-json "^1.10.3"
+    npm-package-arg "^6.1.0"
+    p-reduce "^1.0.0"
+    pify "^4.0.1"
+    semver "^6.2.0"
+    slash "^2.0.0"
+    validate-npm-package-license "^3.0.3"
+    validate-npm-package-name "^3.0.0"
+    whatwg-url "^7.0.0"
+
+"@lerna/describe-ref@3.16.5":
+  version "3.16.5"
+  resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-3.16.5.tgz#a338c25aaed837d3dc70b8a72c447c5c66346ac0"
+  integrity sha512-c01+4gUF0saOOtDBzbLMFOTJDHTKbDFNErEY6q6i9QaXuzy9LNN62z+Hw4acAAZuJQhrVWncVathcmkkjvSVGw==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    npmlog "^4.1.2"
+
+"@lerna/diff@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-3.21.0.tgz#e6df0d8b9916167ff5a49fcb02ac06424280a68d"
+  integrity sha512-5viTR33QV3S7O+bjruo1SaR40m7F2aUHJaDAC7fL9Ca6xji+aw1KFkpCtVlISS0G8vikUREGMJh+c/VMSc8Usw==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    "@lerna/command" "3.21.0"
+    "@lerna/validation-error" "3.13.0"
+    npmlog "^4.1.2"
+
+"@lerna/exec@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-3.21.0.tgz#17f07533893cb918a17b41bcc566dc437016db26"
+  integrity sha512-iLvDBrIE6rpdd4GIKTY9mkXyhwsJ2RvQdB9ZU+/NhR3okXfqKc6py/24tV111jqpXTtZUW6HNydT4dMao2hi1Q==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    "@lerna/command" "3.21.0"
+    "@lerna/filter-options" "3.20.0"
+    "@lerna/profiler" "3.20.0"
+    "@lerna/run-topologically" "3.18.5"
+    "@lerna/validation-error" "3.13.0"
+    p-map "^2.1.0"
+
+"@lerna/filter-options@3.20.0":
+  version "3.20.0"
+  resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-3.20.0.tgz#0f0f5d5a4783856eece4204708cc902cbc8af59b"
+  integrity sha512-bmcHtvxn7SIl/R9gpiNMVG7yjx7WyT0HSGw34YVZ9B+3xF/83N3r5Rgtjh4hheLZ+Q91Or0Jyu5O3Nr+AwZe2g==
+  dependencies:
+    "@lerna/collect-updates" "3.20.0"
+    "@lerna/filter-packages" "3.18.0"
+    dedent "^0.7.0"
+    figgy-pudding "^3.5.1"
+    npmlog "^4.1.2"
+
+"@lerna/filter-packages@3.18.0":
+  version "3.18.0"
+  resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-3.18.0.tgz#6a7a376d285208db03a82958cfb8172e179b4e70"
+  integrity sha512-6/0pMM04bCHNATIOkouuYmPg6KH3VkPCIgTfQmdkPJTullERyEQfNUKikrefjxo1vHOoCACDpy65JYyKiAbdwQ==
+  dependencies:
+    "@lerna/validation-error" "3.13.0"
+    multimatch "^3.0.0"
+    npmlog "^4.1.2"
+
+"@lerna/get-npm-exec-opts@3.13.0":
+  version "3.13.0"
+  resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-3.13.0.tgz#d1b552cb0088199fc3e7e126f914e39a08df9ea5"
+  integrity sha512-Y0xWL0rg3boVyJk6An/vurKzubyJKtrxYv2sj4bB8Mc5zZ3tqtv0ccbOkmkXKqbzvNNF7VeUt1OJ3DRgtC/QZw==
+  dependencies:
+    npmlog "^4.1.2"
+
+"@lerna/get-packed@3.16.0":
+  version "3.16.0"
+  resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-3.16.0.tgz#1b316b706dcee86c7baa55e50b087959447852ff"
+  integrity sha512-AjsFiaJzo1GCPnJUJZiTW6J1EihrPkc2y3nMu6m3uWFxoleklsSCyImumzVZJssxMi3CPpztj8LmADLedl9kXw==
+  dependencies:
+    fs-extra "^8.1.0"
+    ssri "^6.0.1"
+    tar "^4.4.8"
+
+"@lerna/github-client@3.22.0":
+  version "3.22.0"
+  resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-3.22.0.tgz#5d816aa4f76747ed736ae64ff962b8f15c354d95"
+  integrity sha512-O/GwPW+Gzr3Eb5bk+nTzTJ3uv+jh5jGho9BOqKlajXaOkMYGBELEAqV5+uARNGWZFvYAiF4PgqHb6aCUu7XdXg==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    "@octokit/plugin-enterprise-rest" "^6.0.1"
+    "@octokit/rest" "^16.28.4"
+    git-url-parse "^11.1.2"
+    npmlog "^4.1.2"
+
+"@lerna/gitlab-client@3.15.0":
+  version "3.15.0"
+  resolved "https://registry.yarnpkg.com/@lerna/gitlab-client/-/gitlab-client-3.15.0.tgz#91f4ec8c697b5ac57f7f25bd50fe659d24aa96a6"
+  integrity sha512-OsBvRSejHXUBMgwWQqNoioB8sgzL/Pf1pOUhHKtkiMl6aAWjklaaq5HPMvTIsZPfS6DJ9L5OK2GGZuooP/5c8Q==
+  dependencies:
+    node-fetch "^2.5.0"
+    npmlog "^4.1.2"
+    whatwg-url "^7.0.0"
+
+"@lerna/global-options@3.13.0":
+  version "3.13.0"
+  resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-3.13.0.tgz#217662290db06ad9cf2c49d8e3100ee28eaebae1"
+  integrity sha512-SlZvh1gVRRzYLVluz9fryY1nJpZ0FHDGB66U9tFfvnnxmueckRQxLopn3tXj3NU1kc3QANT2I5BsQkOqZ4TEFQ==
+
+"@lerna/has-npm-version@3.16.5":
+  version "3.16.5"
+  resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-3.16.5.tgz#ab83956f211d8923ea6afe9b979b38cc73b15326"
+  integrity sha512-WL7LycR9bkftyqbYop5rEGJ9sRFIV55tSGmbN1HLrF9idwOCD7CLrT64t235t3t4O5gehDnwKI5h2U3oxTrF8Q==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    semver "^6.2.0"
+
+"@lerna/import@3.22.0":
+  version "3.22.0"
+  resolved "https://registry.yarnpkg.com/@lerna/import/-/import-3.22.0.tgz#1a5f0394f38e23c4f642a123e5e1517e70d068d2"
+  integrity sha512-uWOlexasM5XR6tXi4YehODtH9Y3OZrFht3mGUFFT3OIl2s+V85xIGFfqFGMTipMPAGb2oF1UBLL48kR43hRsOg==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    "@lerna/command" "3.21.0"
+    "@lerna/prompt" "3.18.5"
+    "@lerna/pulse-till-done" "3.13.0"
+    "@lerna/validation-error" "3.13.0"
+    dedent "^0.7.0"
+    fs-extra "^8.1.0"
+    p-map-series "^1.0.0"
+
+"@lerna/info@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/info/-/info-3.21.0.tgz#76696b676fdb0f35d48c83c63c1e32bb5e37814f"
+  integrity sha512-0XDqGYVBgWxUquFaIptW2bYSIu6jOs1BtkvRTWDDhw4zyEdp6q4eaMvqdSap1CG+7wM5jeLCi6z94wS0AuiuwA==
+  dependencies:
+    "@lerna/command" "3.21.0"
+    "@lerna/output" "3.13.0"
+    envinfo "^7.3.1"
+
+"@lerna/init@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/init/-/init-3.21.0.tgz#1e810934dc8bf4e5386c031041881d3b4096aa5c"
+  integrity sha512-6CM0z+EFUkFfurwdJCR+LQQF6MqHbYDCBPyhu/d086LRf58GtYZYj49J8mKG9ktayp/TOIxL/pKKjgLD8QBPOg==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    "@lerna/command" "3.21.0"
+    fs-extra "^8.1.0"
+    p-map "^2.1.0"
+    write-json-file "^3.2.0"
+
+"@lerna/link@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/link/-/link-3.21.0.tgz#8be68ff0ccee104b174b5bbd606302c2f06e9d9b"
+  integrity sha512-tGu9GxrX7Ivs+Wl3w1+jrLi1nQ36kNI32dcOssij6bg0oZ2M2MDEFI9UF2gmoypTaN9uO5TSsjCFS7aR79HbdQ==
+  dependencies:
+    "@lerna/command" "3.21.0"
+    "@lerna/package-graph" "3.18.5"
+    "@lerna/symlink-dependencies" "3.17.0"
+    p-map "^2.1.0"
+    slash "^2.0.0"
+
+"@lerna/list@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/list/-/list-3.21.0.tgz#42f76fafa56dea13b691ec8cab13832691d61da2"
+  integrity sha512-KehRjE83B1VaAbRRkRy6jLX1Cin8ltsrQ7FHf2bhwhRHK0S54YuA6LOoBnY/NtA8bHDX/Z+G5sMY78X30NS9tg==
+  dependencies:
+    "@lerna/command" "3.21.0"
+    "@lerna/filter-options" "3.20.0"
+    "@lerna/listable" "3.18.5"
+    "@lerna/output" "3.13.0"
+
+"@lerna/listable@3.18.5":
+  version "3.18.5"
+  resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-3.18.5.tgz#e82798405b5ed8fc51843c8ef1e7a0e497388a1a"
+  integrity sha512-Sdr3pVyaEv5A7ZkGGYR7zN+tTl2iDcinryBPvtuv20VJrXBE8wYcOks1edBTcOWsPjCE/rMP4bo1pseyk3UTsg==
+  dependencies:
+    "@lerna/query-graph" "3.18.5"
+    chalk "^2.3.1"
+    columnify "^1.5.4"
+
+"@lerna/log-packed@3.16.0":
+  version "3.16.0"
+  resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-3.16.0.tgz#f83991041ee77b2495634e14470b42259fd2bc16"
+  integrity sha512-Fp+McSNBV/P2mnLUYTaSlG8GSmpXM7krKWcllqElGxvAqv6chk2K3c2k80MeVB4WvJ9tRjUUf+i7HUTiQ9/ckQ==
+  dependencies:
+    byte-size "^5.0.1"
+    columnify "^1.5.4"
+    has-unicode "^2.0.1"
+    npmlog "^4.1.2"
+
+"@lerna/npm-conf@3.16.0":
+  version "3.16.0"
+  resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-3.16.0.tgz#1c10a89ae2f6c2ee96962557738685300d376827"
+  integrity sha512-HbO3DUrTkCAn2iQ9+FF/eisDpWY5POQAOF1m7q//CZjdC2HSW3UYbKEGsSisFxSfaF9Z4jtrV+F/wX6qWs3CuA==
+  dependencies:
+    config-chain "^1.1.11"
+    pify "^4.0.1"
+
+"@lerna/npm-dist-tag@3.18.5":
+  version "3.18.5"
+  resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-3.18.5.tgz#9ef9abb7c104077b31f6fab22cc73b314d54ac55"
+  integrity sha512-xw0HDoIG6HreVsJND9/dGls1c+lf6vhu7yJoo56Sz5bvncTloYGLUppIfDHQr4ZvmPCK8rsh0euCVh2giPxzKQ==
+  dependencies:
+    "@evocateur/npm-registry-fetch" "^4.0.0"
+    "@lerna/otplease" "3.18.5"
+    figgy-pudding "^3.5.1"
+    npm-package-arg "^6.1.0"
+    npmlog "^4.1.2"
+
+"@lerna/npm-install@3.16.5":
+  version "3.16.5"
+  resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-3.16.5.tgz#d6bfdc16f81285da66515ae47924d6e278d637d3"
+  integrity sha512-hfiKk8Eku6rB9uApqsalHHTHY+mOrrHeWEs+gtg7+meQZMTS3kzv4oVp5cBZigndQr3knTLjwthT/FX4KvseFg==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    "@lerna/get-npm-exec-opts" "3.13.0"
+    fs-extra "^8.1.0"
+    npm-package-arg "^6.1.0"
+    npmlog "^4.1.2"
+    signal-exit "^3.0.2"
+    write-pkg "^3.1.0"
+
+"@lerna/npm-publish@3.18.5":
+  version "3.18.5"
+  resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-3.18.5.tgz#240e4039959fd9816b49c5b07421e11b5cb000af"
+  integrity sha512-3etLT9+2L8JAx5F8uf7qp6iAtOLSMj+ZYWY6oUgozPi/uLqU0/gsMsEXh3F0+YVW33q0M61RpduBoAlOOZnaTg==
+  dependencies:
+    "@evocateur/libnpmpublish" "^1.2.2"
+    "@lerna/otplease" "3.18.5"
+    "@lerna/run-lifecycle" "3.16.2"
+    figgy-pudding "^3.5.1"
+    fs-extra "^8.1.0"
+    npm-package-arg "^6.1.0"
+    npmlog "^4.1.2"
+    pify "^4.0.1"
+    read-package-json "^2.0.13"
+
+"@lerna/npm-run-script@3.16.5":
+  version "3.16.5"
+  resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-3.16.5.tgz#9c2ec82453a26c0b46edc0bb7c15816c821f5c15"
+  integrity sha512-1asRi+LjmVn3pMjEdpqKJZFT/3ZNpb+VVeJMwrJaV/3DivdNg7XlPK9LTrORuKU4PSvhdEZvJmSlxCKyDpiXsQ==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    "@lerna/get-npm-exec-opts" "3.13.0"
+    npmlog "^4.1.2"
+
+"@lerna/otplease@3.18.5":
+  version "3.18.5"
+  resolved "https://registry.yarnpkg.com/@lerna/otplease/-/otplease-3.18.5.tgz#b77b8e760b40abad9f7658d988f3ea77d4fd0231"
+  integrity sha512-S+SldXAbcXTEDhzdxYLU0ZBKuYyURP/ND2/dK6IpKgLxQYh/z4ScljPDMyKymmEvgiEJmBsPZAAPfmNPEzxjog==
+  dependencies:
+    "@lerna/prompt" "3.18.5"
+    figgy-pudding "^3.5.1"
+
+"@lerna/output@3.13.0":
+  version "3.13.0"
+  resolved "https://registry.yarnpkg.com/@lerna/output/-/output-3.13.0.tgz#3ded7cc908b27a9872228a630d950aedae7a4989"
+  integrity sha512-7ZnQ9nvUDu/WD+bNsypmPG5MwZBwu86iRoiW6C1WBuXXDxM5cnIAC1m2WxHeFnjyMrYlRXM9PzOQ9VDD+C15Rg==
+  dependencies:
+    npmlog "^4.1.2"
+
+"@lerna/pack-directory@3.16.4":
+  version "3.16.4"
+  resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-3.16.4.tgz#3eae5f91bdf5acfe0384510ed53faddc4c074693"
+  integrity sha512-uxSF0HZeGyKaaVHz5FroDY9A5NDDiCibrbYR6+khmrhZtY0Bgn6hWq8Gswl9iIlymA+VzCbshWIMX4o2O8C8ng==
+  dependencies:
+    "@lerna/get-packed" "3.16.0"
+    "@lerna/package" "3.16.0"
+    "@lerna/run-lifecycle" "3.16.2"
+    figgy-pudding "^3.5.1"
+    npm-packlist "^1.4.4"
+    npmlog "^4.1.2"
+    tar "^4.4.10"
+    temp-write "^3.4.0"
+
+"@lerna/package-graph@3.18.5":
+  version "3.18.5"
+  resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-3.18.5.tgz#c740e2ea3578d059e551633e950690831b941f6b"
+  integrity sha512-8QDrR9T+dBegjeLr+n9WZTVxUYUhIUjUgZ0gvNxUBN8S1WB9r6H5Yk56/MVaB64tA3oGAN9IIxX6w0WvTfFudA==
+  dependencies:
+    "@lerna/prerelease-id-from-version" "3.16.0"
+    "@lerna/validation-error" "3.13.0"
+    npm-package-arg "^6.1.0"
+    npmlog "^4.1.2"
+    semver "^6.2.0"
+
+"@lerna/package@3.16.0":
+  version "3.16.0"
+  resolved "https://registry.yarnpkg.com/@lerna/package/-/package-3.16.0.tgz#7e0a46e4697ed8b8a9c14d59c7f890e0d38ba13c"
+  integrity sha512-2lHBWpaxcBoiNVbtyLtPUuTYEaB/Z+eEqRS9duxpZs6D+mTTZMNy6/5vpEVSCBmzvdYpyqhqaYjjSLvjjr5Riw==
+  dependencies:
+    load-json-file "^5.3.0"
+    npm-package-arg "^6.1.0"
+    write-pkg "^3.1.0"
+
+"@lerna/prerelease-id-from-version@3.16.0":
+  version "3.16.0"
+  resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-3.16.0.tgz#b24bfa789f5e1baab914d7b08baae9b7bd7d83a1"
+  integrity sha512-qZyeUyrE59uOK8rKdGn7jQz+9uOpAaF/3hbslJVFL1NqF9ELDTqjCPXivuejMX/lN4OgD6BugTO4cR7UTq/sZA==
+  dependencies:
+    semver "^6.2.0"
+
+"@lerna/profiler@3.20.0":
+  version "3.20.0"
+  resolved "https://registry.yarnpkg.com/@lerna/profiler/-/profiler-3.20.0.tgz#0f6dc236f4ea8f9ea5f358c6703305a4f32ad051"
+  integrity sha512-bh8hKxAlm6yu8WEOvbLENm42i2v9SsR4WbrCWSbsmOElx3foRnMlYk7NkGECa+U5c3K4C6GeBbwgqs54PP7Ljg==
+  dependencies:
+    figgy-pudding "^3.5.1"
+    fs-extra "^8.1.0"
+    npmlog "^4.1.2"
+    upath "^1.2.0"
+
+"@lerna/project@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/project/-/project-3.21.0.tgz#5d784d2d10c561a00f20320bcdb040997c10502d"
+  integrity sha512-xT1mrpET2BF11CY32uypV2GPtPVm6Hgtha7D81GQP9iAitk9EccrdNjYGt5UBYASl4CIDXBRxwmTTVGfrCx82A==
+  dependencies:
+    "@lerna/package" "3.16.0"
+    "@lerna/validation-error" "3.13.0"
+    cosmiconfig "^5.1.0"
+    dedent "^0.7.0"
+    dot-prop "^4.2.0"
+    glob-parent "^5.0.0"
+    globby "^9.2.0"
+    load-json-file "^5.3.0"
+    npmlog "^4.1.2"
+    p-map "^2.1.0"
+    resolve-from "^4.0.0"
+    write-json-file "^3.2.0"
+
+"@lerna/prompt@3.18.5":
+  version "3.18.5"
+  resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-3.18.5.tgz#628cd545f225887d060491ab95df899cfc5218a1"
+  integrity sha512-rkKj4nm1twSbBEb69+Em/2jAERK8htUuV8/xSjN0NPC+6UjzAwY52/x9n5cfmpa9lyKf/uItp7chCI7eDmNTKQ==
+  dependencies:
+    inquirer "^6.2.0"
+    npmlog "^4.1.2"
+
+"@lerna/publish@3.22.1":
+  version "3.22.1"
+  resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-3.22.1.tgz#b4f7ce3fba1e9afb28be4a1f3d88222269ba9519"
+  integrity sha512-PG9CM9HUYDreb1FbJwFg90TCBQooGjj+n/pb3gw/eH5mEDq0p8wKdLFe0qkiqUkm/Ub5C8DbVFertIo0Vd0zcw==
+  dependencies:
+    "@evocateur/libnpmaccess" "^3.1.2"
+    "@evocateur/npm-registry-fetch" "^4.0.0"
+    "@evocateur/pacote" "^9.6.3"
+    "@lerna/check-working-tree" "3.16.5"
+    "@lerna/child-process" "3.16.5"
+    "@lerna/collect-updates" "3.20.0"
+    "@lerna/command" "3.21.0"
+    "@lerna/describe-ref" "3.16.5"
+    "@lerna/log-packed" "3.16.0"
+    "@lerna/npm-conf" "3.16.0"
+    "@lerna/npm-dist-tag" "3.18.5"
+    "@lerna/npm-publish" "3.18.5"
+    "@lerna/otplease" "3.18.5"
+    "@lerna/output" "3.13.0"
+    "@lerna/pack-directory" "3.16.4"
+    "@lerna/prerelease-id-from-version" "3.16.0"
+    "@lerna/prompt" "3.18.5"
+    "@lerna/pulse-till-done" "3.13.0"
+    "@lerna/run-lifecycle" "3.16.2"
+    "@lerna/run-topologically" "3.18.5"
+    "@lerna/validation-error" "3.13.0"
+    "@lerna/version" "3.22.1"
+    figgy-pudding "^3.5.1"
+    fs-extra "^8.1.0"
+    npm-package-arg "^6.1.0"
+    npmlog "^4.1.2"
+    p-finally "^1.0.0"
+    p-map "^2.1.0"
+    p-pipe "^1.2.0"
+    semver "^6.2.0"
+
+"@lerna/pulse-till-done@3.13.0":
+  version "3.13.0"
+  resolved "https://registry.yarnpkg.com/@lerna/pulse-till-done/-/pulse-till-done-3.13.0.tgz#c8e9ce5bafaf10d930a67d7ed0ccb5d958fe0110"
+  integrity sha512-1SOHpy7ZNTPulzIbargrgaJX387csN7cF1cLOGZiJQA6VqnS5eWs2CIrG8i8wmaUavj2QlQ5oEbRMVVXSsGrzA==
+  dependencies:
+    npmlog "^4.1.2"
+
+"@lerna/query-graph@3.18.5":
+  version "3.18.5"
+  resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-3.18.5.tgz#df4830bb5155273003bf35e8dda1c32d0927bd86"
+  integrity sha512-50Lf4uuMpMWvJ306be3oQDHrWV42nai9gbIVByPBYJuVW8dT8O8pA3EzitNYBUdLL9/qEVbrR0ry1HD7EXwtRA==
+  dependencies:
+    "@lerna/package-graph" "3.18.5"
+    figgy-pudding "^3.5.1"
+
+"@lerna/resolve-symlink@3.16.0":
+  version "3.16.0"
+  resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-3.16.0.tgz#37fc7095fabdbcf317c26eb74e0d0bde8efd2386"
+  integrity sha512-Ibj5e7njVHNJ/NOqT4HlEgPFPtPLWsO7iu59AM5bJDcAJcR96mLZ7KGVIsS2tvaO7akMEJvt2P+ErwCdloG3jQ==
+  dependencies:
+    fs-extra "^8.1.0"
+    npmlog "^4.1.2"
+    read-cmd-shim "^1.0.1"
+
+"@lerna/rimraf-dir@3.16.5":
+  version "3.16.5"
+  resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-3.16.5.tgz#04316ab5ffd2909657aaf388ea502cb8c2f20a09"
+  integrity sha512-bQlKmO0pXUsXoF8lOLknhyQjOZsCc0bosQDoX4lujBXSWxHVTg1VxURtWf2lUjz/ACsJVDfvHZbDm8kyBk5okA==
+  dependencies:
+    "@lerna/child-process" "3.16.5"
+    npmlog "^4.1.2"
+    path-exists "^3.0.0"
+    rimraf "^2.6.2"
+
+"@lerna/run-lifecycle@3.16.2":
+  version "3.16.2"
+  resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-3.16.2.tgz#67b288f8ea964db9ea4fb1fbc7715d5bbb0bce00"
+  integrity sha512-RqFoznE8rDpyyF0rOJy3+KjZCeTkO8y/OB9orPauR7G2xQ7PTdCpgo7EO6ZNdz3Al+k1BydClZz/j78gNCmL2A==
+  dependencies:
+    "@lerna/npm-conf" "3.16.0"
+    figgy-pudding "^3.5.1"
+    npm-lifecycle "^3.1.2"
+    npmlog "^4.1.2"
+
+"@lerna/run-topologically@3.18.5":
+  version "3.18.5"
+  resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-3.18.5.tgz#3cd639da20e967d7672cb88db0f756b92f2fdfc3"
+  integrity sha512-6N1I+6wf4hLOnPW+XDZqwufyIQ6gqoPfHZFkfWlvTQ+Ue7CuF8qIVQ1Eddw5HKQMkxqN10thKOFfq/9NQZ4NUg==
+  dependencies:
+    "@lerna/query-graph" "3.18.5"
+    figgy-pudding "^3.5.1"
+    p-queue "^4.0.0"
+
+"@lerna/run@3.21.0":
+  version "3.21.0"
+  resolved "https://registry.yarnpkg.com/@lerna/run/-/run-3.21.0.tgz#2a35ec84979e4d6e42474fe148d32e5de1cac891"
+  integrity sha512-fJF68rT3veh+hkToFsBmUJ9MHc9yGXA7LSDvhziAojzOb0AI/jBDp6cEcDQyJ7dbnplba2Lj02IH61QUf9oW0Q==
+  dependencies:
+    "@lerna/command" "3.21.0"
+    "@lerna/filter-options" "3.20.0"
+    "@lerna/npm-run-script" "3.16.5"
+    "@lerna/output" "3.13.0"
+    "@lerna/profiler" "3.20.0"
+    "@lerna/run-topologically" "3.18.5"
+    "@lerna/timer" "3.13.0"
+    "@lerna/validation-error" "3.13.0"
+    p-map "^2.1.0"
+
+"@lerna/symlink-binary@3.17.0":
+  version "3.17.0"
+  resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-3.17.0.tgz#8f8031b309863814883d3f009877f82e38aef45a"
+  integrity sha512-RLpy9UY6+3nT5J+5jkM5MZyMmjNHxZIZvXLV+Q3MXrf7Eaa1hNqyynyj4RO95fxbS+EZc4XVSk25DGFQbcRNSQ==
+  dependencies:
+    "@lerna/create-symlink" "3.16.2"
+    "@lerna/package" "3.16.0"
+    fs-extra "^8.1.0"
+    p-map "^2.1.0"
+
+"@lerna/symlink-dependencies@3.17.0":
+  version "3.17.0"
+  resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-3.17.0.tgz#48d6360e985865a0e56cd8b51b308a526308784a"
+  integrity sha512-KmjU5YT1bpt6coOmdFueTJ7DFJL4H1w5eF8yAQ2zsGNTtZ+i5SGFBWpb9AQaw168dydc3s4eu0W0Sirda+F59Q==
+  dependencies:
+    "@lerna/create-symlink" "3.16.2"
+    "@lerna/resolve-symlink" "3.16.0"
+    "@lerna/symlink-binary" "3.17.0"
+    fs-extra "^8.1.0"
+    p-finally "^1.0.0"
+    p-map "^2.1.0"
+    p-map-series "^1.0.0"
+
+"@lerna/timer@3.13.0":
+  version "3.13.0"
+  resolved "https://registry.yarnpkg.com/@lerna/timer/-/timer-3.13.0.tgz#bcd0904551db16e08364d6c18e5e2160fc870781"
+  integrity sha512-RHWrDl8U4XNPqY5MQHkToWS9jHPnkLZEt5VD+uunCKTfzlxGnRCr3/zVr8VGy/uENMYpVP3wJa4RKGY6M0vkRw==
+
+"@lerna/validation-error@3.13.0":
+  version "3.13.0"
+  resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-3.13.0.tgz#c86b8f07c5ab9539f775bd8a54976e926f3759c3"
+  integrity sha512-SiJP75nwB8GhgwLKQfdkSnDufAaCbkZWJqEDlKOUPUvVOplRGnfL+BPQZH5nvq2BYSRXsksXWZ4UHVnQZI/HYA==
+  dependencies:
+    npmlog "^4.1.2"
+
+"@lerna/version@3.22.1":
+  version "3.22.1"
+  resolved "https://registry.yarnpkg.com/@lerna/version/-/version-3.22.1.tgz#9805a9247a47ee62d6b81bd9fa5fb728b24b59e2"
+  integrity sha512-PSGt/K1hVqreAFoi3zjD0VEDupQ2WZVlVIwesrE5GbrL2BjXowjCsTDPqblahDUPy0hp6h7E2kG855yLTp62+g==
+  dependencies:
+    "@lerna/check-working-tree" "3.16.5"
+    "@lerna/child-process" "3.16.5"
+    "@lerna/collect-updates" "3.20.0"
+    "@lerna/command" "3.21.0"
+    "@lerna/conventional-commits" "3.22.0"
+    "@lerna/github-client" "3.22.0"
+    "@lerna/gitlab-client" "3.15.0"
+    "@lerna/output" "3.13.0"
+    "@lerna/prerelease-id-from-version" "3.16.0"
+    "@lerna/prompt" "3.18.5"
+    "@lerna/run-lifecycle" "3.16.2"
+    "@lerna/run-topologically" "3.18.5"
+    "@lerna/validation-error" "3.13.0"
+    chalk "^2.3.1"
+    dedent "^0.7.0"
+    load-json-file "^5.3.0"
+    minimatch "^3.0.4"
+    npmlog "^4.1.2"
+    p-map "^2.1.0"
+    p-pipe "^1.2.0"
+    p-reduce "^1.0.0"
+    p-waterfall "^1.0.0"
+    semver "^6.2.0"
+    slash "^2.0.0"
+    temp-write "^3.4.0"
+    write-json-file "^3.2.0"
+
+"@lerna/write-log-file@3.13.0":
+  version "3.13.0"
+  resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-3.13.0.tgz#b78d9e4cfc1349a8be64d91324c4c8199e822a26"
+  integrity sha512-RibeMnDPvlL8bFYW5C8cs4mbI3AHfQef73tnJCQ/SgrXZHehmHnsyWUiE7qDQCAo+B1RfTapvSyFF69iPj326A==
+  dependencies:
+    npmlog "^4.1.2"
+    write-file-atomic "^2.3.0"
+
+"@loaders.gl/core@^1.0.3":
+  version "1.3.7"
+  resolved "http://localhost:4873/@loaders.gl%2fcore/-/core-1.3.7.tgz#86ae42b7f16b67035a7a561affa393c4fd98076a"
+  integrity sha512-dFZkJQc+i2PoqlBMz/aO8Gnn0y6ICafQp8u6cTpCm96h/HHulE8qDBodQlHGHn9EMJDSgVl/zjni+QhqIK31dg==
+  dependencies:
+    "@babel/runtime" "^7.3.1"
+
+"@loaders.gl/images@^1.0.3":
+  version "1.3.7"
+  resolved "http://localhost:4873/@loaders.gl%2fimages/-/images-1.3.7.tgz#fa0975e76cba12379c423df50de1940b32f3df00"
+  integrity sha512-TKqW94vjvWc4RIChhr0Yx6HaVTe8K6h6GFeXcahsKeCxq9/k2qpcigRkXfmb6/37dkp2Qy5COHp73ECgN/q+NA==
+
+"@luma.gl/constants@7.3.2":
+  version "7.3.2"
+  resolved "http://localhost:4873/@luma.gl%2fconstants/-/constants-7.3.2.tgz#99c5d665f9e6d21192525038e47ec4acfbbbe0a6"
+  integrity sha512-hr6JOOwsGPjjoHnil4sQ6AWsc8P6XXYtRL10TwNYfFTcNxrhSrjQvutYoCzXHH5U0vfHBfPMMUyLASK9FqiHOA==
+
+"@luma.gl/core@^7.1.0":
+  version "7.3.2"
+  resolved "http://localhost:4873/@luma.gl%2fcore/-/core-7.3.2.tgz#1d006da99ead3f1a7d6323e5c39e1dd6086f1ecf"
+  integrity sha512-XyQPSUJRkZcc//gVX0AgjLLNTkCOO68NRnm7RkIhikRBEUdovb4IOcpmWMCB1/Gyj4hzg/Z1FOAVT4pG1E+agw==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    "@luma.gl/constants" "7.3.2"
+    "@luma.gl/shadertools" "7.3.2"
+    "@luma.gl/webgl" "7.3.2"
+    "@luma.gl/webgl-state-tracker" "7.3.2"
+    "@luma.gl/webgl2-polyfill" "7.3.2"
+    math.gl "^3.0.0"
+    probe.gl "^3.1.1"
+    seer "^0.2.4"
+
+"@luma.gl/shadertools@7.3.2":
+  version "7.3.2"
+  resolved "http://localhost:4873/@luma.gl%2fshadertools/-/shadertools-7.3.2.tgz#f850aed1b3e1dedfb236ce02b0129cccd018f651"
+  integrity sha512-GiOZTvdEr164zYFy1DNRc7mzduSWLNJ34s+YbkJ/0i07E6tK7gHgM29QNCZ/gROvUDDJ5CHxngZqGkb+XquOMQ==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    math.gl "^3.0.0"
+
+"@luma.gl/webgl-state-tracker@7.3.2":
+  version "7.3.2"
+  resolved "http://localhost:4873/@luma.gl%2fwebgl-state-tracker/-/webgl-state-tracker-7.3.2.tgz#b927e1c7689fbc75432197eaf0468fc8f0e18a76"
+  integrity sha512-0LuK3veReSm2UPOiDwC2CRDeE2xk4irqXdhyFO0WSAU1w+YhzbD1hGbjizGczvgfkbz8dFl9h98LbbH75efcKw==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    "@luma.gl/constants" "7.3.2"
+
+"@luma.gl/webgl2-polyfill@7.3.2":
+  version "7.3.2"
+  resolved "http://localhost:4873/@luma.gl%2fwebgl2-polyfill/-/webgl2-polyfill-7.3.2.tgz#266a7a2d2c2c338360e8f766984cf559d2230521"
+  integrity sha512-PMt5xqQ+u7tIqfUaL3s4nuWl604WFNcl1F1ohSUFeEzIIuxFiF6gsdEEvC5VqGoMFxI8T4FOTSeHYIr6uP4+4w==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    "@luma.gl/constants" "7.3.2"
+
+"@luma.gl/webgl@7.3.2":
+  version "7.3.2"
+  resolved "http://localhost:4873/@luma.gl%2fwebgl/-/webgl-7.3.2.tgz#57d6ef58d7180cf429a9f98c8389215665b4c3d7"
+  integrity sha512-eWoPPRJOF5xSpqgggdwspsm8exclwxz20c8vqu8D1b3LJTY7cEpq57CMLvITHcJMMJ834TX/r598efTcF76lpw==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    "@luma.gl/constants" "7.3.2"
+    "@luma.gl/webgl-state-tracker" "7.3.2"
+    "@luma.gl/webgl2-polyfill" "7.3.2"
+    probe.gl "^3.1.1"
+
+"@mapbox/geojson-area@0.2.2":
+  version "0.2.2"
+  resolved "https://registry.yarnpkg.com/@mapbox/geojson-area/-/geojson-area-0.2.2.tgz#18d7814aa36bf23fbbcc379f8e26a22927debf10"
+  integrity sha1-GNeBSqNr8j+7zDefjiaiKSfevxA=
+  dependencies:
+    wgs84 "0.0.0"
+
+"@mapbox/geojson-rewind@^0.4.0":
+  version "0.4.1"
+  resolved "https://registry.yarnpkg.com/@mapbox/geojson-rewind/-/geojson-rewind-0.4.1.tgz#357d79300adb7fec7c1f091512988bca6458f068"
+  integrity sha512-mxo2MEr7izA1uOXcDsw99Kgg6xW3P4H2j4n1lmldsgviIelpssvP+jQDivFKOHrOVJDpTTi5oZJvRcHtU9Uufw==
+  dependencies:
+    "@mapbox/geojson-area" "0.2.2"
+    concat-stream "~1.6.0"
+    minimist "^1.2.5"
+    sharkdown "^0.1.0"
+
+"@mapbox/geojson-types@^1.0.2":
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz#9aecf642cb00eab1080a57c4f949a65b4a5846d6"
+  integrity sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==
+
+"@mapbox/jsonlint-lines-primitives@^2.0.2":
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz#ce56e539f83552b58d10d672ea4d6fc9adc7b234"
+  integrity sha1-zlblOfg1UrWNENZy6k1vya3HsjQ=
+
+"@mapbox/mapbox-gl-supported@^1.4.0":
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz#f60b6a55a5d8e5ee908347d2ce4250b15103dc8e"
+  integrity sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==
+
+"@mapbox/point-geometry@0.1.0", "@mapbox/point-geometry@^0.1.0", "@mapbox/point-geometry@~0.1.0":
+  version "0.1.0"
+  resolved "https://registry.yarnpkg.com/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz#8a83f9335c7860effa2eeeca254332aa0aeed8f2"
+  integrity sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI=
+
+"@mapbox/tiny-sdf@^1.1.0":
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-1.1.1.tgz#16a20c470741bfe9191deb336f46e194da4a91ff"
+  integrity sha512-Ihn1nZcGIswJ5XGbgFAvVumOgWpvIjBX9jiRlIl46uQG9vJOF51ViBYHF95rEZupuyQbEmhLaDPLQlU7fUTsBg==
+
+"@mapbox/unitbezier@^0.0.0":
+  version "0.0.0"
+  resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e"
+  integrity sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4=
+
+"@mapbox/vector-tile@^1.3.1":
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz#d3a74c90402d06e89ec66de49ec817ff53409666"
+  integrity sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==
+  dependencies:
+    "@mapbox/point-geometry" "~0.1.0"
+
+"@mapbox/whoots-js@^3.1.0":
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz#497c67a1cef50d1a2459ba60f315e448d2ad87fe"
+  integrity sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==
+
+"@marionebl/sander@^0.6.0":
+  version "0.6.1"
+  resolved "https://registry.yarnpkg.com/@marionebl/sander/-/sander-0.6.1.tgz#1958965874f24bc51be48875feb50d642fc41f7b"
+  integrity sha1-GViWWHTyS8Ub5Ih1/rUNZC/EH3s=
+  dependencies:
+    graceful-fs "^4.1.3"
+    mkdirp "^0.5.1"
+    rimraf "^2.5.2"
+
+"@math.gl/core@3.4.2":
+  version "3.4.2"
+  resolved "http://localhost:4873/@math.gl%2fcore/-/core-3.4.2.tgz#1b5468f04de8e3bdae5b7717b459759daa7b0a80"
+  integrity sha512-65vhtokCDq0N16DLwWZhPTNAGuVtTjyyi5tx950yNN3ei5BRxz2JHe6JTSnjjKO/2w9KuQYOOqokc7ARog0vKg==
+  dependencies:
+    "@babel/runtime" "^7.12.0"
+    gl-matrix "^3.0.0"
+
+"@math.gl/web-mercator@^3.2.2":
+  version "3.4.2"
+  resolved "http://localhost:4873/@math.gl%2fweb-mercator/-/web-mercator-3.4.2.tgz#72c7c7e698bcf8d1d1d60c0ec4c5a4698c9b960e"
+  integrity sha512-Az/WI8vxbqnrTEcYgqDQ3CgCRoFA2a4XT9mkjVrT7iIlfrUF5lrIXcmpljjKvoFNBldKrng7hFSeHHM2ghgSrg==
+  dependencies:
+    "@babel/runtime" "^7.12.0"
+    gl-matrix "^3.0.0"
+
+"@mdx-js/loader@^1.6.19":
+  version "1.6.22"
+  resolved "http://localhost:4873/@mdx-js%2floader/-/loader-1.6.22.tgz#d9e8fe7f8185ff13c9c8639c048b123e30d322c4"
+  integrity sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==
+  dependencies:
+    "@mdx-js/mdx" "1.6.22"
+    "@mdx-js/react" "1.6.22"
+    loader-utils "2.0.0"
+
+"@mdx-js/mdx@1.6.22", "@mdx-js/mdx@^1.6.19":
+  version "1.6.22"
+  resolved "http://localhost:4873/@mdx-js%2fmdx/-/mdx-1.6.22.tgz#8a723157bf90e78f17dc0f27995398e6c731f1ba"
+  integrity sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==
+  dependencies:
+    "@babel/core" "7.12.9"
+    "@babel/plugin-syntax-jsx" "7.12.1"
+    "@babel/plugin-syntax-object-rest-spread" "7.8.3"
+    "@mdx-js/util" "1.6.22"
+    babel-plugin-apply-mdx-type-prop "1.6.22"
+    babel-plugin-extract-import-names "1.6.22"
+    camelcase-css "2.0.1"
+    detab "2.0.4"
+    hast-util-raw "6.0.1"
+    lodash.uniq "4.5.0"
+    mdast-util-to-hast "10.0.1"
+    remark-footnotes "2.0.0"
+    remark-mdx "1.6.22"
+    remark-parse "8.0.3"
+    remark-squeeze-paragraphs "4.0.0"
+    style-to-object "0.3.0"
+    unified "9.2.0"
+    unist-builder "2.0.3"
+    unist-util-visit "2.0.3"
+
+"@mdx-js/react@1.6.22", "@mdx-js/react@^1.6.19":
+  version "1.6.22"
+  resolved "http://localhost:4873/@mdx-js%2freact/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573"
+  integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==
+
+"@mdx-js/util@1.6.22":
+  version "1.6.22"
+  resolved "http://localhost:4873/@mdx-js%2futil/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b"
+  integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==
+
+"@mrmlnc/readdir-enhanced@^2.2.1":
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
+  integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==
+  dependencies:
+    call-me-maybe "^1.0.1"
+    glob-to-regexp "^0.3.0"
+
+"@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents":
+  version "2.1.8-no-fsevents"
+  resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.tgz#da7c3996b8e6e19ebd14d82eaced2313e7769f9b"
+  integrity sha512-+nb9vWloHNNMFHjGofEam3wopE3m1yuambrrd/fnPc+lFOMB9ROTqQlche9ByFWNkdNqfSgR/kkQtQ8DzEWt2w==
+  dependencies:
+    anymatch "^2.0.0"
+    async-each "^1.0.1"
+    braces "^2.3.2"
+    glob-parent "^3.1.0"
+    inherits "^2.0.3"
+    is-binary-path "^1.0.0"
+    is-glob "^4.0.0"
+    normalize-path "^3.0.0"
+    path-is-absolute "^1.0.0"
+    readdirp "^2.2.1"
+    upath "^1.1.1"
+
+"@nodelib/fs.scandir@2.1.3":
+  version "2.1.3"
+  resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b"
+  integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==
+  dependencies:
+    "@nodelib/fs.stat" "2.0.3"
+    run-parallel "^1.1.9"
+
+"@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2":
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3"
+  integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==
+
+"@nodelib/fs.stat@^1.1.2":
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b"
+  integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==
+
+"@nodelib/fs.walk@^1.2.3":
+  version "1.2.4"
+  resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976"
+  integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==
+  dependencies:
+    "@nodelib/fs.scandir" "2.1.3"
+    fastq "^1.6.0"
+
+"@npmcli/move-file@^1.0.1":
+  version "1.1.1"
+  resolved "http://localhost:4873/@npmcli%2fmove-file/-/move-file-1.1.1.tgz#31a3afae95308ef12f58ac147b3e33aae621241d"
+  integrity sha512-LtWTicuF2wp7PNTuyCwABx7nNG+DnzSE8gN0iWxkC6mpgm/iOPu0ZMTkXuCxmJxtWFsDxUaixM9COSNJEMUfuQ==
+  dependencies:
+    mkdirp "^1.0.4"
+    rimraf "^3.0.2"
+
+"@octokit/auth-token@^2.4.0":
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.4.0.tgz#b64178975218b99e4dfe948253f0673cbbb59d9f"
+  integrity sha512-eoOVMjILna7FVQf96iWc3+ZtE/ZT6y8ob8ZzcqKY1ibSQCnu4O/B7pJvzMx5cyZ/RjAff6DAdEb0O0Cjcxidkg==
+  dependencies:
+    "@octokit/types" "^2.0.0"
+
+"@octokit/core@^3.0.0":
+  version "3.2.2"
+  resolved "https://registry.yarnpkg.com/@octokit/core/-/core-3.2.2.tgz#b57667c0a8501641356d479d7e9f1f2ef2a80549"
+  integrity sha512-cZEP6dC8xpepbAqtdS1GgX88omLer8VQegw5BpQ5fbSrkxgY9Y9K7ratu8ezAd9bD0GVOR1GVWiRzYdxiprU1w==
+  dependencies:
+    "@octokit/auth-token" "^2.4.0"
+    "@octokit/graphql" "^4.3.1"
+    "@octokit/request" "^5.4.0"
+    "@octokit/types" "^6.0.0"
+    before-after-hook "^2.1.0"
+    universal-user-agent "^6.0.0"
+
+"@octokit/endpoint@^6.0.0":
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.0.tgz#4c7acd79ab72df78732a7d63b09be53ec5a2230b"
+  integrity sha512-3nx+MEYoZeD0uJ+7F/gvELLvQJzLXhep2Az0bBSXagbApDvDW0LWwpnAIY/hb0Jwe17A0fJdz0O12dPh05cj7A==
+  dependencies:
+    "@octokit/types" "^2.0.0"
+    is-plain-object "^3.0.0"
+    universal-user-agent "^5.0.0"
+
+"@octokit/endpoint@^6.0.1":
+  version "6.0.10"
+  resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.10.tgz#741ce1fa2f4fb77ce8ebe0c6eaf5ce63f565f8e8"
+  integrity sha512-9+Xef8nT7OKZglfkOMm7IL6VwxXUQyR7DUSU0LH/F7VNqs8vyd7es5pTfz9E7DwUIx7R3pGscxu1EBhYljyu7Q==
+  dependencies:
+    "@octokit/types" "^6.0.0"
+    is-plain-object "^5.0.0"
+    universal-user-agent "^6.0.0"
+
+"@octokit/graphql@^4.3.1":
+  version "4.3.1"
+  resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.3.1.tgz#9ee840e04ed2906c7d6763807632de84cdecf418"
+  integrity sha512-hCdTjfvrK+ilU2keAdqNBWOk+gm1kai1ZcdjRfB30oA3/T6n53UVJb7w0L5cR3/rhU91xT3HSqCd+qbvH06yxA==
+  dependencies:
+    "@octokit/request" "^5.3.0"
+    "@octokit/types" "^2.0.0"
+    universal-user-agent "^4.0.0"
+
+"@octokit/openapi-types@^1.2.0":
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-1.2.2.tgz#55d927436c07ef148ec927fbf4d55580a19bd68e"
+  integrity sha512-vrKDLd/Rq4IE16oT+jJkDBx0r29NFkdkU8GwqVSP4RajsAvP23CMGtFhVK0pedUhAiMvG1bGnFcTC/xCKaKgmw==
+
+"@octokit/plugin-enterprise-rest@^6.0.1":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz#e07896739618dab8da7d4077c658003775f95437"
+  integrity sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==
+
+"@octokit/plugin-paginate-rest@^1.1.1":
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-1.1.2.tgz#004170acf8c2be535aba26727867d692f7b488fc"
+  integrity sha512-jbsSoi5Q1pj63sC16XIUboklNw+8tL9VOnJsWycWYR78TKss5PVpIPb1TUUcMQ+bBh7cY579cVAWmf5qG+dw+Q==
+  dependencies:
+    "@octokit/types" "^2.0.1"
+
+"@octokit/plugin-paginate-rest@^2.2.3":
+  version "2.6.1"
+  resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.6.1.tgz#2412ada6f746535b14cae29ca8265633c353002e"
+  integrity sha512-DprxhI/8Qf/x9Svy89RUh3szyiLwgHL67S5kNmm5B4AjcWrPpMzB25fMCZeIIaXT463Fdn6fc1Hy6kK7/Hd90Q==
+  dependencies:
+    "@octokit/types" "^6.0.1"
+
+"@octokit/plugin-request-log@^1.0.0":
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz#eef87a431300f6148c39a7f75f8cfeb218b2547e"
+  integrity sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==
+
+"@octokit/plugin-rest-endpoint-methods@2.4.0":
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-2.4.0.tgz#3288ecf5481f68c494dd0602fc15407a59faf61e"
+  integrity sha512-EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ==
+  dependencies:
+    "@octokit/types" "^2.0.1"
+    deprecation "^2.3.1"
+
+"@octokit/plugin-rest-endpoint-methods@^4.0.0":
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-4.3.0.tgz#cc60fce3add6743fce8ab7333942fb2dd4eac837"
+  integrity sha512-omU8AfL8QgG4h+TObSSh6dArWzMKiHkG+z18Xtn4zC6WRzUxFvmibWktDYwLePXesd7/AMJR141s1mt+8cfeRA==
+  dependencies:
+    "@octokit/types" "^6.0.0"
+    deprecation "^2.3.1"
+
+"@octokit/request-error@^1.0.2":
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-1.2.1.tgz#ede0714c773f32347576c25649dc013ae6b31801"
+  integrity sha512-+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA==
+  dependencies:
+    "@octokit/types" "^2.0.0"
+    deprecation "^2.0.0"
+    once "^1.4.0"
+
+"@octokit/request-error@^2.0.0":
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.0.0.tgz#94ca7293373654400fbb2995f377f9473e00834b"
+  integrity sha512-rtYicB4Absc60rUv74Rjpzek84UbVHGHJRu4fNVlZ1mCcyUPPuzFfG9Rn6sjHrd95DEsmjSt1Axlc699ZlbDkw==
+  dependencies:
+    "@octokit/types" "^2.0.0"
+    deprecation "^2.0.0"
+    once "^1.4.0"
+
+"@octokit/request@^5.2.0", "@octokit/request@^5.3.0":
+  version "5.3.4"
+  resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.3.4.tgz#fbc950bf785d59da3b0399fc6d042c8cf52e2905"
+  integrity sha512-qyj8G8BxQyXjt9Xu6NvfvOr1E0l35lsXtwm3SopsYg/JWXjlsnwqLc8rsD2OLguEL/JjLfBvrXr4az7z8Lch2A==
+  dependencies:
+    "@octokit/endpoint" "^6.0.0"
+    "@octokit/request-error" "^2.0.0"
+    "@octokit/types" "^2.0.0"
+    deprecation "^2.0.0"
+    is-plain-object "^3.0.0"
+    node-fetch "^2.3.0"
+    once "^1.4.0"
+    universal-user-agent "^5.0.0"
+
+"@octokit/request@^5.4.0":
+  version "5.4.11"
+  resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.4.11.tgz#2536e9095f7e90c9d22a14fed7bb7299a22050c5"
+  integrity sha512-vskebNjuz4oTdPIv+9cQjHvjk8vjrMv2fOmSo6zr7IIaFHeVsJlG/C07MXiSS/+g/qU1GHjkPG1XW3faz57EoQ==
+  dependencies:
+    "@octokit/endpoint" "^6.0.1"
+    "@octokit/request-error" "^2.0.0"
+    "@octokit/types" "^6.0.0"
+    deprecation "^2.0.0"
+    is-plain-object "^5.0.0"
+    node-fetch "^2.6.1"
+    once "^1.4.0"
+    universal-user-agent "^6.0.0"
+
+"@octokit/rest@^16.28.4":
+  version "16.43.1"
+  resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-16.43.1.tgz#3b11e7d1b1ac2bbeeb23b08a17df0b20947eda6b"
+  integrity sha512-gfFKwRT/wFxq5qlNjnW2dh+qh74XgTQ2B179UX5K1HYCluioWj8Ndbgqw2PVqa1NnVJkGHp2ovMpVn/DImlmkw==
+  dependencies:
+    "@octokit/auth-token" "^2.4.0"
+    "@octokit/plugin-paginate-rest" "^1.1.1"
+    "@octokit/plugin-request-log" "^1.0.0"
+    "@octokit/plugin-rest-endpoint-methods" "2.4.0"
+    "@octokit/request" "^5.2.0"
+    "@octokit/request-error" "^1.0.2"
+    atob-lite "^2.0.0"
+    before-after-hook "^2.0.0"
+    btoa-lite "^1.0.0"
+    deprecation "^2.0.0"
+    lodash.get "^4.4.2"
+    lodash.set "^4.3.2"
+    lodash.uniq "^4.5.0"
+    octokit-pagination-methods "^1.1.0"
+    once "^1.4.0"
+    universal-user-agent "^4.0.0"
+
+"@octokit/types@^2.0.0", "@octokit/types@^2.0.1":
+  version "2.5.1"
+  resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.5.1.tgz#22563b3bb50034bea3176eac1860340c5e812e2a"
+  integrity sha512-q4Wr7RexkPRrkQpXzUYF5Fj/14Mr65RyOHj6B9d/sQACpqGcStkHZj4qMEtlMY5SnD/69jlL9ItGPbDM0dR/dA==
+  dependencies:
+    "@types/node" ">= 8"
+
+"@octokit/types@^6.0.0", "@octokit/types@^6.0.1":
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.0.3.tgz#df21856c3690a90e332ea36e39fbf413b0a4f25d"
+  integrity sha512-6y0Emzp+uPpdC5QLzUY1YRklvqiZBMTOz2ByhXdmTFlc3lNv8Mi28dX1U1b4scNtFMUa3tkpjofNFJ5NqMJaZw==
+  dependencies:
+    "@octokit/openapi-types" "^1.2.0"
+    "@types/node" ">= 8"
+
+"@pmmmwh/react-refresh-webpack-plugin@^0.4.2":
+  version "0.4.3"
+  resolved "http://localhost:4873/@pmmmwh%2freact-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz#1eec460596d200c0236bf195b078a5d1df89b766"
+  integrity sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==
+  dependencies:
+    ansi-html "^0.0.7"
+    error-stack-parser "^2.0.6"
+    html-entities "^1.2.1"
+    native-url "^0.2.6"
+    schema-utils "^2.6.5"
+    source-map "^0.7.3"
+
+"@popperjs/core@^2.5.4":
+  version "2.6.0"
+  resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.6.0.tgz#f022195afdfc942e088ee2101285a1d31c7d727f"
+  integrity sha512-cPqjjzuFWNK3BSKLm0abspP0sp/IGOli4p5I5fKFAzdS8fvjdOwDCfZqAaIiXd9lPkOWi3SUUfZof3hEb7J/uw==
+
+"@probe.gl/stats@3.3.0":
+  version "3.3.0"
+  resolved "http://localhost:4873/@probe.gl%2fstats/-/stats-3.3.0.tgz#66f684ead7cee1f2aad5ee5e9d297e84e08c5536"
+  integrity sha512-CV4c3EgallqZTO88u34/u9L5asL0nCVP1BEkb4qcXlh8Qz2Vmygbyjz1ViQsct6rSi2lJ52lo6W0PnlpZJJvcA==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+
+"@reach/router@^1.2.1":
+  version "1.3.3"
+  resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.3.tgz#58162860dce6c9449d49be86b0561b5ef46d80db"
+  integrity sha512-gOIAiFhWdiVGSVjukKeNKkCRBLmnORoTPyBihI/jLunICPgxdP30DroAvPQuf1eVfQbfGJQDJkwhJXsNPMnVWw==
+  dependencies:
+    create-react-context "0.3.0"
+    invariant "^2.2.3"
+    prop-types "^15.6.1"
+    react-lifecycles-compat "^3.0.4"
+
+"@reach/router@^1.3.3":
+  version "1.3.4"
+  resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.4.tgz#d2574b19370a70c80480ed91f3da840136d10f8c"
+  integrity sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==
+  dependencies:
+    create-react-context "0.3.0"
+    invariant "^2.2.3"
+    prop-types "^15.6.1"
+    react-lifecycles-compat "^3.0.4"
+
+"@react-dnd/asap@^4.0.0":
+  version "4.0.0"
+  resolved "http://localhost:4873/@react-dnd%2fasap/-/asap-4.0.0.tgz#b300eeed83e9801f51bd66b0337c9a6f04548651"
+  integrity sha512-0XhqJSc6pPoNnf8DhdsPHtUhRzZALVzYMTzRwV4VI6DJNJ/5xxfL9OQUwb8IH5/2x7lSf7nAZrnzUD+16VyOVQ==
+
+"@react-dnd/invariant@^2.0.0":
+  version "2.0.0"
+  resolved "http://localhost:4873/@react-dnd%2finvariant/-/invariant-2.0.0.tgz#09d2e81cd39e0e767d7da62df9325860f24e517e"
+  integrity sha512-xL4RCQBCBDJ+GRwKTFhGUW8GXa4yoDfJrPbLblc3U09ciS+9ZJXJ3Qrcs/x2IODOdIE5kQxvMmE2UKyqUictUw==
+
+"@react-dnd/shallowequal@^2.0.0":
+  version "2.0.0"
+  resolved "http://localhost:4873/@react-dnd%2fshallowequal/-/shallowequal-2.0.0.tgz#a3031eb54129f2c66b2753f8404266ec7bf67f0a"
+  integrity sha512-Pc/AFTdwZwEKJxFJvlxrSmGe/di+aAOBn60sremrpLo6VI/6cmiUYNNwlI5KNYttg7uypzA3ILPMPgxB2GYZEg==
+
+"@samverschueren/stream-to-observable@^0.3.0":
+  version "0.3.1"
+  resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz#a21117b19ee9be70c379ec1877537ef2e1c63301"
+  integrity sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==
+  dependencies:
+    any-observable "^0.3.0"
+
+"@scarf/scarf@^1.1.0":
+  version "1.1.0"
+  resolved "http://localhost:4873/@scarf%2fscarf/-/scarf-1.1.0.tgz#b84b4a91cd938a688d36245b7a7db6fbc476a499"
+  integrity sha512-b2iE8kjjzzUo2WZ0xuE2N77kfnTds7ClrDxcz3Atz7h2XrNVoAPUoT75i7CY0st5x++70V91Y+c6RpBX9MX7Jg==
+
+"@seznam/compose-react-refs@^1.0.4":
+  version "1.0.5"
+  resolved "http://localhost:4873/@seznam%2fcompose-react-refs/-/compose-react-refs-1.0.5.tgz#151750dea81d0937d004245133c52924cb75e60e"
+  integrity sha512-1g4QJywCPQNMW5pURqtcljjXvhyzeSSLGJOcMDFg3LCH1/g5uhFkvYUPOepCwOZxfrvR7UrWOhyBMoc5LIeMHA==
+
+"@sinonjs/commons@^1", "@sinonjs/commons@^1.6.0", "@sinonjs/commons@^1.7.0":
+  version "1.7.1"
+  resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.1.tgz#da5fd19a5f71177a53778073978873964f49acf1"
+  integrity sha512-Debi3Baff1Qu1Unc3mjJ96MgpbwTn43S1+9yJ0llWygPwDNu2aaWBD6yc9y/Z8XDRNhx7U+u2UDg2OGQXkclUQ==
+  dependencies:
+    type-detect "4.0.8"
+
+"@sinonjs/commons@^1.8.1":
+  version "1.8.2"
+  resolved "http://localhost:4873/@sinonjs%2fcommons/-/commons-1.8.2.tgz#858f5c4b48d80778fde4b9d541f27edc0d56488b"
+  integrity sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==
+  dependencies:
+    type-detect "4.0.8"
+
+"@sinonjs/fake-timers@^6.0.0", "@sinonjs/fake-timers@^6.0.1":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40"
+  integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==
+  dependencies:
+    "@sinonjs/commons" "^1.7.0"
+
+"@sinonjs/formatio@^5.0.1":
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/@sinonjs/formatio/-/formatio-5.0.1.tgz#f13e713cb3313b1ab965901b01b0828ea6b77089"
+  integrity sha512-KaiQ5pBf1MpS09MuA0kp6KBQt2JUOQycqVG1NZXvzeaXe5LGFqAKueIS0bw4w0P9r7KuBSVdUk5QjXsUdu2CxQ==
+  dependencies:
+    "@sinonjs/commons" "^1"
+    "@sinonjs/samsam" "^5.0.2"
+
+"@sinonjs/samsam@^5.0.2", "@sinonjs/samsam@^5.0.3":
+  version "5.0.3"
+  resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-5.0.3.tgz#86f21bdb3d52480faf0892a480c9906aa5a52938"
+  integrity sha512-QucHkc2uMJ0pFGjJUDP3F9dq5dx8QIaqISl9QgwLOh6P9yv877uONPGXh/OH/0zmM3tW1JjuJltAZV2l7zU+uQ==
+  dependencies:
+    "@sinonjs/commons" "^1.6.0"
+    lodash.get "^4.4.2"
+    type-detect "^4.0.8"
+
+"@sinonjs/samsam@^5.3.1":
+  version "5.3.1"
+  resolved "http://localhost:4873/@sinonjs%2fsamsam/-/samsam-5.3.1.tgz#375a45fe6ed4e92fca2fb920e007c48232a6507f"
+  integrity sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==
+  dependencies:
+    "@sinonjs/commons" "^1.6.0"
+    lodash.get "^4.4.2"
+    type-detect "^4.0.8"
+
+"@sinonjs/text-encoding@^0.7.1":
+  version "0.7.1"
+  resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz#8da5c6530915653f3a1f38fd5f101d8c3f8079c5"
+  integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==
+
+"@storybook/addon-actions@6.1.17", "@storybook/addon-actions@^6.0.13":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2faddon-actions/-/addon-actions-6.1.17.tgz#9d32336284738cefa69b99acafa4b132d5533600"
+  integrity sha512-4hyAvmjnI4C1ZQ7/t21jKKXE0jO1zAk310BkYin0NJf77Qi0tUE1DNOwirJY/xzRih36wWi1V79c/ZOJNsLv9Q==
+  dependencies:
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/client-api" "6.1.17"
+    "@storybook/components" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/theming" "6.1.17"
+    core-js "^3.0.1"
+    fast-deep-equal "^3.1.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    polished "^3.4.4"
+    prop-types "^15.7.2"
+    react-inspector "^5.0.1"
+    regenerator-runtime "^0.13.7"
+    ts-dedent "^2.0.0"
+    util-deprecate "^1.0.2"
+    uuid "^8.0.0"
+
+"@storybook/addon-actions@^5.3.18":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-5.3.19.tgz#50548fa6e84bc79ad95233ce23ade4878fc7cfac"
+  integrity sha512-gXF29FFUgYlUoFf1DcVCmH1chg2ElaHWMmCi5h7aZe+g6fXBQw0UtEdJnYLMOqZCIiWoZyuf1ETD0RbNHPhRIw==
+  dependencies:
+    "@storybook/addons" "5.3.19"
+    "@storybook/api" "5.3.19"
+    "@storybook/client-api" "5.3.19"
+    "@storybook/components" "5.3.19"
+    "@storybook/core-events" "5.3.19"
+    "@storybook/theming" "5.3.19"
+    core-js "^3.0.1"
+    fast-deep-equal "^2.0.1"
+    global "^4.3.2"
+    polished "^3.3.1"
+    prop-types "^15.7.2"
+    react "^16.8.3"
+    react-inspector "^4.0.0"
+    uuid "^3.3.2"
+
+"@storybook/addon-backgrounds@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2faddon-backgrounds/-/addon-backgrounds-6.1.17.tgz#df4eeec1df72d5f835e82bee433493110463f896"
+  integrity sha512-1a8Vu50eQWdwMek9w2QOehhu10aZYzyR404qwGvPCRGt5uMMsKxoKvv1M6/ETW7d2G4Srl/Ka+k4x6ykoHIepA==
+  dependencies:
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/components" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/theming" "6.1.17"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    memoizerific "^1.11.3"
+    regenerator-runtime "^0.13.7"
+    ts-dedent "^2.0.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/addon-controls@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2faddon-controls/-/addon-controls-6.1.17.tgz#b9ed334db427c1675b9ac2512fce4679089b0def"
+  integrity sha512-Dhh75fmPsR1MGUSDHC8ScOQ6jMh/pTCt3uFryy+q6XX8Jp3pC9qOcid9frbIyLAH4fvPX0FBDxXv8go/n0MzLw==
+  dependencies:
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/client-api" "6.1.17"
+    "@storybook/components" "6.1.17"
+    "@storybook/node-logger" "6.1.17"
+    "@storybook/theming" "6.1.17"
+    core-js "^3.0.1"
+    ts-dedent "^2.0.0"
+
+"@storybook/addon-docs@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2faddon-docs/-/addon-docs-6.1.17.tgz#bb9d12d6d8da399e5c69c3552ce54eca17fe770d"
+  integrity sha512-Y+IOR9tc1l4uPk+eZkhUAxjc6Xo82Jf0ERKWOKBdy4bDm34pRdpn4zAfMYuv9D8M0F/O1kUGhMlaHgE9a7YvNw==
+  dependencies:
+    "@babel/core" "^7.12.1"
+    "@babel/generator" "^7.12.1"
+    "@babel/parser" "^7.12.3"
+    "@babel/plugin-transform-react-jsx" "^7.12.1"
+    "@babel/preset-env" "^7.12.1"
+    "@jest/transform" "^26.0.0"
+    "@mdx-js/loader" "^1.6.19"
+    "@mdx-js/mdx" "^1.6.19"
+    "@mdx-js/react" "^1.6.19"
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/client-api" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/components" "6.1.17"
+    "@storybook/core" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/csf" "0.0.1"
+    "@storybook/node-logger" "6.1.17"
+    "@storybook/postinstall" "6.1.17"
+    "@storybook/source-loader" "6.1.17"
+    "@storybook/theming" "6.1.17"
+    acorn "^7.1.0"
+    acorn-jsx "^5.1.0"
+    acorn-walk "^7.0.0"
+    core-js "^3.0.1"
+    doctrine "^3.0.0"
+    escodegen "^1.12.0"
+    fast-deep-equal "^3.1.1"
+    global "^4.3.2"
+    html-tags "^3.1.0"
+    js-string-escape "^1.0.1"
+    lodash "^4.17.15"
+    prettier "~2.0.5"
+    prop-types "^15.7.2"
+    react-element-to-jsx-string "^14.3.1"
+    regenerator-runtime "^0.13.7"
+    remark-external-links "^6.0.0"
+    remark-slug "^6.0.0"
+    ts-dedent "^2.0.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/addon-essentials@^6.0.28":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2faddon-essentials/-/addon-essentials-6.1.17.tgz#195eeefb36adb4b972759f04e6d13fa8ea82b7fd"
+  integrity sha512-oy/sbI2KdnnzqfdRaI1sAXb01zTP7ViwO+R1maKoeK1WyuK+WVdl8a7AdqgYW1ZCEoohsnz4HUz6t50DTcxWqQ==
+  dependencies:
+    "@storybook/addon-actions" "6.1.17"
+    "@storybook/addon-backgrounds" "6.1.17"
+    "@storybook/addon-controls" "6.1.17"
+    "@storybook/addon-docs" "6.1.17"
+    "@storybook/addon-toolbars" "6.1.17"
+    "@storybook/addon-viewport" "6.1.17"
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/node-logger" "6.1.17"
+    core-js "^3.0.1"
+    regenerator-runtime "^0.13.7"
+    ts-dedent "^2.0.0"
+
+"@storybook/addon-info@^5.3.18":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/addon-info/-/addon-info-5.3.19.tgz#175af53ba54ddb8fe24b3c979206ffbbf42bc4f4"
+  integrity sha512-MiFLcyoOmwawquagQHkqiPHnvBOKrVaS/wnO1XyBvIHwkK+KN7CZ9l7HakA4SO76kugrY9OJYyi5YvEEdN6vww==
+  dependencies:
+    "@storybook/addons" "5.3.19"
+    "@storybook/client-logger" "5.3.19"
+    "@storybook/components" "5.3.19"
+    "@storybook/theming" "5.3.19"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    marksy "^8.0.0"
+    nested-object-assign "^1.0.3"
+    prop-types "^15.7.2"
+    react "^16.8.3"
+    react-addons-create-fragment "^15.6.2"
+    react-element-to-jsx-string "^14.0.2"
+    react-is "^16.8.3"
+    react-lifecycles-compat "^3.0.4"
+    util-deprecate "^1.0.2"
+
+"@storybook/addon-knobs@^6.0.13":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2faddon-knobs/-/addon-knobs-6.1.17.tgz#c7cdd5be813c2b80ce7f464eabf8ceb06486e82d"
+  integrity sha512-WUkoGtHhXIurXFQybsMXZaphAtCNclZjZHvji8O5eg+ahx7pIM/Wldh3uJwOdOkW5LHxT76hLxPvuXvOEysnbw==
+  dependencies:
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/channels" "6.1.17"
+    "@storybook/client-api" "6.1.17"
+    "@storybook/components" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/theming" "6.1.17"
+    copy-to-clipboard "^3.0.8"
+    core-js "^3.0.1"
+    escape-html "^1.0.3"
+    fast-deep-equal "^3.1.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    prop-types "^15.7.2"
+    qs "^6.6.0"
+    react-color "^2.17.0"
+    react-lifecycles-compat "^3.0.4"
+    react-select "^3.0.8"
+    regenerator-runtime "^0.13.7"
+
+"@storybook/addon-knobs@^6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/addon-knobs/-/addon-knobs-6.1.15.tgz#8f12fd5da15c0a00993dbe837b971a4867339de2"
+  integrity sha512-eiwav0/9fGrChwAs7yTi13W1mR9g+vYtkQaCKQFF2VIarY9mFH0gKZvLDSs+SH2wyPMp1JOROu8ef39B8Cyj4A==
+  dependencies:
+    "@storybook/addons" "6.1.15"
+    "@storybook/api" "6.1.15"
+    "@storybook/channels" "6.1.15"
+    "@storybook/client-api" "6.1.15"
+    "@storybook/components" "6.1.15"
+    "@storybook/core-events" "6.1.15"
+    "@storybook/theming" "6.1.15"
+    copy-to-clipboard "^3.0.8"
+    core-js "^3.0.1"
+    escape-html "^1.0.3"
+    fast-deep-equal "^3.1.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    prop-types "^15.7.2"
+    qs "^6.6.0"
+    react-color "^2.17.0"
+    react-lifecycles-compat "^3.0.4"
+    react-select "^3.0.8"
+    regenerator-runtime "^0.13.7"
+
+"@storybook/addon-links@^5.3.18":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-5.3.19.tgz#3c23e886d44b56978ae254fed3bf8be54c877178"
+  integrity sha512-gn9u8lebREfRsyzxoDPG0O+kOf5aJ0BhzcCJGZZdqha0F6OWHhh8vJYZZvjJ/Qwze+Qt2zjrgWm+Q6+JLD8ugQ==
+  dependencies:
+    "@storybook/addons" "5.3.19"
+    "@storybook/client-logger" "5.3.19"
+    "@storybook/core-events" "5.3.19"
+    "@storybook/csf" "0.0.1"
+    "@storybook/router" "5.3.19"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    prop-types "^15.7.2"
+    qs "^6.6.0"
+    ts-dedent "^1.1.0"
+
+"@storybook/addon-links@^5.3.19":
+  version "5.3.21"
+  resolved "http://localhost:4873/@storybook%2faddon-links/-/addon-links-5.3.21.tgz#4bae11c5de77fcce1f5429be3454376870512db2"
+  integrity sha512-Gjg3EUGVNSubvWawgbdiXQIKOL7QoMQOCeh1Pyl+5GPozYWDMr8O+86funTbt9LPBzGE1J+RWHarDaArUc6tSw==
+  dependencies:
+    "@storybook/addons" "5.3.21"
+    "@storybook/client-logger" "5.3.21"
+    "@storybook/core-events" "5.3.21"
+    "@storybook/csf" "0.0.1"
+    "@storybook/router" "5.3.21"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    prop-types "^15.7.2"
+    qs "^6.6.0"
+    ts-dedent "^1.1.0"
+
+"@storybook/addon-toolbars@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2faddon-toolbars/-/addon-toolbars-6.1.17.tgz#15a015dc871e26be66340b5641631e649925c5e2"
+  integrity sha512-hEH4MFNbhCOzHs9yB+V+GH9FHD5MN7dxUfLFYM1tuZPqtotgfrYwCBUTy8m/tSxyOOSM+Y1BSHBozt2h7D23eA==
+  dependencies:
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/client-api" "6.1.17"
+    "@storybook/components" "6.1.17"
+    core-js "^3.0.1"
+
+"@storybook/addon-viewport@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2faddon-viewport/-/addon-viewport-6.1.17.tgz#c312ddb9905bc76d200139b19c8c8a1b8669f5f0"
+  integrity sha512-vBtJ4o0XWSPIqhJRroo/hUjRUOVYOVP8kGXv9WDRS75988BTHDq75VAKLmdNN/MV8kBaANRppj9LdRw2Mxs5TA==
+  dependencies:
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/components" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/theming" "6.1.17"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    memoizerific "^1.11.3"
+    prop-types "^15.7.2"
+    regenerator-runtime "^0.13.7"
+
+"@storybook/addons@5.3.19", "@storybook/addons@^5.3.18":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-5.3.19.tgz#3a7010697afd6df9a41b8c8a7351d9a06ff490a4"
+  integrity sha512-Ky/k22p6i6FVNvs1VhuFyGvYJdcp+FgXqFgnPyY/OXJW/vPDapdElpTpHJZLFI9I2FQBDcygBPU5RXkumQ+KUQ==
+  dependencies:
+    "@storybook/api" "5.3.19"
+    "@storybook/channels" "5.3.19"
+    "@storybook/client-logger" "5.3.19"
+    "@storybook/core-events" "5.3.19"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    util-deprecate "^1.0.2"
+
+"@storybook/addons@5.3.21", "@storybook/addons@^5.3.19":
+  version "5.3.21"
+  resolved "http://localhost:4873/@storybook%2faddons/-/addons-5.3.21.tgz#ee312c738c33e8c34dc11777ef93522c3c36e56a"
+  integrity sha512-Ji/21WADTLVbTbiKcZ64BcL0Es+h1Afxx3kNmGJqPSTUYroCwIFCT9mUzCqU6G+YyWaISAmTii5UJkTwMkChwA==
+  dependencies:
+    "@storybook/api" "5.3.21"
+    "@storybook/channels" "5.3.21"
+    "@storybook/client-logger" "5.3.21"
+    "@storybook/core-events" "5.3.21"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    util-deprecate "^1.0.2"
+
+"@storybook/addons@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-6.1.15.tgz#09eb8d962f58bd20b4ac2f83b515831c83226352"
+  integrity sha512-ENyHapLFOG93VaoQXPX8O3IWjLRyVBox9C9P20LMruKX/SfXAXx20qsoAWKKPGssopyOin17aoQX9pj+lFmCZQ==
+  dependencies:
+    "@storybook/api" "6.1.15"
+    "@storybook/channels" "6.1.15"
+    "@storybook/client-logger" "6.1.15"
+    "@storybook/core-events" "6.1.15"
+    "@storybook/router" "6.1.15"
+    "@storybook/theming" "6.1.15"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    regenerator-runtime "^0.13.7"
+
+"@storybook/addons@6.1.17", "@storybook/addons@^6.0.21":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2faddons/-/addons-6.1.17.tgz#ab0666446acb9fc19c94d7204dc9aafdefb6c7c2"
+  integrity sha512-3upDPJPzUkls2V3Fozzg+JOcv138bF90pbdRe9YSNu37QvRIL+iQODY7oFygMl+kqjG2F1FGw5EvxAV1mnlwCw==
+  dependencies:
+    "@storybook/api" "6.1.17"
+    "@storybook/channels" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/router" "6.1.17"
+    "@storybook/theming" "6.1.17"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    regenerator-runtime "^0.13.7"
+
+"@storybook/api@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/api/-/api-5.3.19.tgz#77f15e9e2eee59fe1ddeaba1ef39bc34713a6297"
+  integrity sha512-U/VzDvhNCPmw2igvJYNNM+uwJCL+3teiL6JmuoL4/cmcqhI6IqqG9dZmMP1egoCd19wXEP7rnAfB/VcYVg41dQ==
+  dependencies:
+    "@reach/router" "^1.2.1"
+    "@storybook/channels" "5.3.19"
+    "@storybook/client-logger" "5.3.19"
+    "@storybook/core-events" "5.3.19"
+    "@storybook/csf" "0.0.1"
+    "@storybook/router" "5.3.19"
+    "@storybook/theming" "5.3.19"
+    "@types/reach__router" "^1.2.3"
+    core-js "^3.0.1"
+    fast-deep-equal "^2.0.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+    prop-types "^15.6.2"
+    react "^16.8.3"
+    semver "^6.0.0"
+    shallow-equal "^1.1.0"
+    store2 "^2.7.1"
+    telejson "^3.2.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/api@5.3.21":
+  version "5.3.21"
+  resolved "http://localhost:4873/@storybook%2fapi/-/api-5.3.21.tgz#8f1772de53b65e1a65d2f0257463d621a8617c58"
+  integrity sha512-K1o4an/Rx8daKRDooks6qzN6ZGyqizeacZZbair3F8CsSfTgrr2zCcf9pgKojLQa9koEmMHlcdb2KnS+GwPEgA==
+  dependencies:
+    "@reach/router" "^1.2.1"
+    "@storybook/channels" "5.3.21"
+    "@storybook/client-logger" "5.3.21"
+    "@storybook/core-events" "5.3.21"
+    "@storybook/csf" "0.0.1"
+    "@storybook/router" "5.3.21"
+    "@storybook/theming" "5.3.21"
+    "@types/reach__router" "^1.2.3"
+    core-js "^3.0.1"
+    fast-deep-equal "^2.0.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+    prop-types "^15.6.2"
+    react "^16.8.3"
+    semver "^6.0.0"
+    shallow-equal "^1.1.0"
+    store2 "^2.7.1"
+    telejson "^3.2.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/api@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/api/-/api-6.1.15.tgz#285ba42f7a8efcd3bd0e586a5e978487d826fbb4"
+  integrity sha512-C4D08e2ZbSe62nNKtmh9YBraoWb2j6Chw8VCkuj91kuKHh3YDNc1gjj5Fi+KYZwIcy0EllzW3RFQs+YR1/Vg1g==
+  dependencies:
+    "@reach/router" "^1.3.3"
+    "@storybook/channels" "6.1.15"
+    "@storybook/client-logger" "6.1.15"
+    "@storybook/core-events" "6.1.15"
+    "@storybook/csf" "0.0.1"
+    "@storybook/router" "6.1.15"
+    "@storybook/semver" "^7.3.2"
+    "@storybook/theming" "6.1.15"
+    "@types/reach__router" "^1.3.7"
+    core-js "^3.0.1"
+    fast-deep-equal "^3.1.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+    regenerator-runtime "^0.13.7"
+    store2 "^2.7.1"
+    telejson "^5.0.2"
+    ts-dedent "^2.0.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/api@6.1.17", "@storybook/api@^6.0.21":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fapi/-/api-6.1.17.tgz#50393ce9b718063b67680212df895eceacc0c11d"
+  integrity sha512-sthcfuk2EQ3F5R620PBqpI4Pno3g7KQm6YPZA0DXB+LD/z61xH9ToE1gTLF4nzlE6HwghwkXOZyRwDowRdG+7A==
+  dependencies:
+    "@reach/router" "^1.3.3"
+    "@storybook/channels" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/csf" "0.0.1"
+    "@storybook/router" "6.1.17"
+    "@storybook/semver" "^7.3.2"
+    "@storybook/theming" "6.1.17"
+    "@types/reach__router" "^1.3.7"
+    core-js "^3.0.1"
+    fast-deep-equal "^3.1.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+    regenerator-runtime "^0.13.7"
+    store2 "^2.7.1"
+    telejson "^5.0.2"
+    ts-dedent "^2.0.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/channel-postmessage@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-5.3.19.tgz#ef9fe974c2a529d89ce342ff7acf5cc22805bae9"
+  integrity sha512-Iq0f4NPHR0UVVFCWt0cI7Myadk4/SATXYJPT6sv95KhnLjKEeYw571WBlThfp8a9FM80887xG+eIRe93c8dleA==
+  dependencies:
+    "@storybook/channels" "5.3.19"
+    "@storybook/client-logger" "5.3.19"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    telejson "^3.2.0"
+
+"@storybook/channel-postmessage@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-6.1.15.tgz#80ea2346d18496f9710dd7f87fd2a9eca46ef36f"
+  integrity sha512-Es4B5zpLrW28KSbY8FhGVEDgUnKspJ7wPuJyKExUpZ5L9w52RkTD6lRnVPzLUfoQ4luPsExy5fiuo878/Wc9ag==
+  dependencies:
+    "@storybook/channels" "6.1.15"
+    "@storybook/client-logger" "6.1.15"
+    "@storybook/core-events" "6.1.15"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    qs "^6.6.0"
+    telejson "^5.0.2"
+
+"@storybook/channel-postmessage@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fchannel-postmessage/-/channel-postmessage-6.1.17.tgz#309ce67c94637ec13319d4ce360a8f3742ddbaf4"
+  integrity sha512-2nVqxq4oZdSITqhFOnkh1rmDMjCwHuobnK5Fp3l7ftCkbmiZHMheKK9Tz4Rb803dhXvcGYs0zRS8NjKyxlOLsA==
+  dependencies:
+    "@storybook/channels" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    qs "^6.6.0"
+    telejson "^5.0.2"
+
+"@storybook/channels@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-5.3.19.tgz#65ad7cd19d70aa5eabbb2e5e39ceef5e510bcb7f"
+  integrity sha512-38seaeyshRGotTEZJppyYMg/Vx2zRKgFv1L6uGqkJT0LYoNSYtJhsiNFCJ2/KUJu2chAJ/j8h80bpVBVLQ/+WA==
+  dependencies:
+    core-js "^3.0.1"
+
+"@storybook/channels@5.3.21":
+  version "5.3.21"
+  resolved "http://localhost:4873/@storybook%2fchannels/-/channels-5.3.21.tgz#53ba622b171d68b3b102983a62aa05149a49497b"
+  integrity sha512-OXoFs9XtBVg/cCk6lYMrxkzaNlJRf54ABdorp7YAAj7S9tRL1JxOZHxmjNQwEoiRvssmem2rAWtEAxfuEANsAA==
+  dependencies:
+    core-js "^3.0.1"
+
+"@storybook/channels@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-6.1.15.tgz#22bb06a671a5ae09d2537bcf63aaf90d7f6b9f6b"
+  integrity sha512-HIKHDeL/0BDk9a7xc2PLiFFoHjUMKUd2djhUGdeKgdKqoWejp4JJ60fI68+2QuSRbkB8k+rAwmuWJzV7EfB5fg==
+  dependencies:
+    core-js "^3.0.1"
+    ts-dedent "^2.0.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/channels@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fchannels/-/channels-6.1.17.tgz#2cc89a6b9727d19c24b15fa3cb15569b469db864"
+  integrity sha512-MUdj0eKr/AbxevHTSXX7AsgxAz6e5O4ZxoYX5G8ggoqSXrWzws6zRFmUmmTdjpIvVmP2M1Kh4SYFAKcS/AGw9w==
+  dependencies:
+    core-js "^3.0.1"
+    ts-dedent "^2.0.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/client-api@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-5.3.19.tgz#7a5630bb8fffb92742b1773881e9004ee7fdf8e0"
+  integrity sha512-Dh8ZLrLH91j9Fa28Gmp0KFUvvgK348aNMrDNAUdj4m4witz/BWQ2pxz6qq9/xFVErk/GanVC05kazGElqgYCRQ==
+  dependencies:
+    "@storybook/addons" "5.3.19"
+    "@storybook/channel-postmessage" "5.3.19"
+    "@storybook/channels" "5.3.19"
+    "@storybook/client-logger" "5.3.19"
+    "@storybook/core-events" "5.3.19"
+    "@storybook/csf" "0.0.1"
+    "@types/webpack-env" "^1.15.0"
+    core-js "^3.0.1"
+    eventemitter3 "^4.0.0"
+    global "^4.3.2"
+    is-plain-object "^3.0.0"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+    qs "^6.6.0"
+    stable "^0.1.8"
+    ts-dedent "^1.1.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/client-api@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-6.1.15.tgz#8f8ead111459b94621571bdb2276f8a0aace17b1"
+  integrity sha512-iwuDlgNdB6Y4OidlhWPob3tEIax9taymdKEe9by4rLJ3nfXu7viHcvCAjN24oI4NFW3NZsmtqJotgftRYk0r1Q==
+  dependencies:
+    "@storybook/addons" "6.1.15"
+    "@storybook/channel-postmessage" "6.1.15"
+    "@storybook/channels" "6.1.15"
+    "@storybook/client-logger" "6.1.15"
+    "@storybook/core-events" "6.1.15"
+    "@storybook/csf" "0.0.1"
+    "@types/qs" "^6.9.0"
+    "@types/webpack-env" "^1.15.3"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+    qs "^6.6.0"
+    regenerator-runtime "^0.13.7"
+    stable "^0.1.8"
+    store2 "^2.7.1"
+    ts-dedent "^2.0.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/client-api@6.1.17", "@storybook/client-api@^6.0.21":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fclient-api/-/client-api-6.1.17.tgz#3ced22f08a47af70ccf8929111bc44b79e9e8ec0"
+  integrity sha512-Loz/wdh0axgq0PS19tx0tGEFEkFWlYc6YauJGHjygYa1xX7mJ54hDoaTolySCXN1HtfZn08D847yjGSN2oIqVg==
+  dependencies:
+    "@storybook/addons" "6.1.17"
+    "@storybook/channel-postmessage" "6.1.17"
+    "@storybook/channels" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/csf" "0.0.1"
+    "@types/qs" "^6.9.0"
+    "@types/webpack-env" "^1.15.3"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+    qs "^6.6.0"
+    regenerator-runtime "^0.13.7"
+    stable "^0.1.8"
+    store2 "^2.7.1"
+    ts-dedent "^2.0.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/client-logger@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-5.3.19.tgz#fbbd186e82102eaca1d6a5cca640271cae862921"
+  integrity sha512-nHftT9Ow71YgAd2/tsu79kwKk30mPuE0sGRRUHZVyCRciGFQweKNOS/6xi2Aq+WwBNNjPKNlbgxwRt1yKe1Vkg==
+  dependencies:
+    core-js "^3.0.1"
+
+"@storybook/client-logger@5.3.21":
+  version "5.3.21"
+  resolved "http://localhost:4873/@storybook%2fclient-logger/-/client-logger-5.3.21.tgz#912c83b0d358e70acad1ad4abe199de4c38b109f"
+  integrity sha512-OzQkwpZ5SK9cXD9Mv6lxPGPot+hSZvnkEW12kpt1AHfJz4ET26YTDOI3oetPsjfRJo6qYLeQX8+wF7rklfXbzA==
+  dependencies:
+    core-js "^3.0.1"
+
+"@storybook/client-logger@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-6.1.15.tgz#b558d6ecbee82c038d684717d8c598eaa4a9324d"
+  integrity sha512-lUpatG8SxzrUapWMsIPWiR+5qRVT5ebn8tGHQeBeRHXbdmEqyq5DOlrotLUemkA5nNTCs1pMFNvKSpCHznG+fg==
+  dependencies:
+    core-js "^3.0.1"
+    global "^4.3.2"
+
+"@storybook/client-logger@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fclient-logger/-/client-logger-6.1.17.tgz#0d89aaf824457f19bf9aa585bbcada57595e7d01"
+  integrity sha512-oqExrxhmws0ihB47sjdynZHd3OpUP4KWkx4udG+74lYIvBH+EZmQ9xF+UofeY3j5p1I9k8ugEcVKy0sqh1yR3w==
+  dependencies:
+    core-js "^3.0.1"
+    global "^4.3.2"
+
+"@storybook/components@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/components/-/components-5.3.19.tgz#aac1f9eea1247cc85bd93b10fca803876fb84a6b"
+  integrity sha512-3g23/+ktlocaHLJKISu9Neu3XKa6aYP2ctDYkRtGchSB0Q55hQsUVGO+BEVuT7Pk2D59mVCxboBjxcRoPUY4pw==
+  dependencies:
+    "@storybook/client-logger" "5.3.19"
+    "@storybook/theming" "5.3.19"
+    "@types/react-syntax-highlighter" "11.0.4"
+    "@types/react-textarea-autosize" "^4.3.3"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    markdown-to-jsx "^6.11.4"
+    memoizerific "^1.11.3"
+    polished "^3.3.1"
+    popper.js "^1.14.7"
+    prop-types "^15.7.2"
+    react "^16.8.3"
+    react-dom "^16.8.3"
+    react-focus-lock "^2.1.0"
+    react-helmet-async "^1.0.2"
+    react-popper-tooltip "^2.8.3"
+    react-syntax-highlighter "^11.0.2"
+    react-textarea-autosize "^7.1.0"
+    simplebar-react "^1.0.0-alpha.6"
+    ts-dedent "^1.1.0"
+
+"@storybook/components@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/components/-/components-6.1.15.tgz#b4a2af23ee6b9cba4c255191eae3d3463e29bfb7"
+  integrity sha512-lPbA/zyBfctdlpDhRTcRFLWlZPJ3PB4+wI0FUvYs69iG3/bNbQPYu8vRmNhCZOsaGt+b+dik4Tfcth8Bu+eQug==
+  dependencies:
+    "@popperjs/core" "^2.5.4"
+    "@storybook/client-logger" "6.1.15"
+    "@storybook/csf" "0.0.1"
+    "@storybook/theming" "6.1.15"
+    "@types/overlayscrollbars" "^1.9.0"
+    "@types/react-color" "^3.0.1"
+    "@types/react-syntax-highlighter" "11.0.4"
+    core-js "^3.0.1"
+    fast-deep-equal "^3.1.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    markdown-to-jsx "^6.11.4"
+    memoizerific "^1.11.3"
+    overlayscrollbars "^1.10.2"
+    polished "^3.4.4"
+    react-color "^2.17.0"
+    react-popper-tooltip "^3.1.1"
+    react-syntax-highlighter "^13.5.0"
+    react-textarea-autosize "^8.1.1"
+    ts-dedent "^2.0.0"
+
+"@storybook/components@6.1.17", "@storybook/components@^6.0.21":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fcomponents/-/components-6.1.17.tgz#f92d36e370ec6039d8c7cee9ef13dda866eed3da"
+  integrity sha512-rIEll0UTxEKmG4IsSS5K+6DjRLVtX8J+9cg79GSAC7N1ZHUR1UQmjjJaehJa5q/NQ5H8C39acxpT4Py/BcsL2g==
+  dependencies:
+    "@popperjs/core" "^2.5.4"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/csf" "0.0.1"
+    "@storybook/theming" "6.1.17"
+    "@types/overlayscrollbars" "^1.9.0"
+    "@types/react-color" "^3.0.1"
+    "@types/react-syntax-highlighter" "11.0.4"
+    core-js "^3.0.1"
+    fast-deep-equal "^3.1.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    markdown-to-jsx "^6.11.4"
+    memoizerific "^1.11.3"
+    overlayscrollbars "^1.10.2"
+    polished "^3.4.4"
+    react-color "^2.17.0"
+    react-popper-tooltip "^3.1.1"
+    react-syntax-highlighter "^13.5.0"
+    react-textarea-autosize "^8.1.1"
+    ts-dedent "^2.0.0"
+
+"@storybook/core-events@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-5.3.19.tgz#18020cd52e0d8ef0973a8e9622a10d5f99796f79"
+  integrity sha512-lh78ySqMS7pDdMJAQAe35d1I/I4yPTqp09Cq0YIYOxx9BQZhah4DZTV1QIZt22H5p2lPb5MWLkWSxBaexZnz8A==
+  dependencies:
+    core-js "^3.0.1"
+
+"@storybook/core-events@5.3.21":
+  version "5.3.21"
+  resolved "http://localhost:4873/@storybook%2fcore-events/-/core-events-5.3.21.tgz#41d81c3f107302a032545fc86ff344230c04b9e9"
+  integrity sha512-/Zsm1sKAh6pzQv8jQUmuhM7nuM01ZljIRKy8p2HjPNlMjDB5yaRkBfyeAUXUg+qXNI6aHVWa4jGdPEdwwY4oLA==
+  dependencies:
+    core-js "^3.0.1"
+
+"@storybook/core-events@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-6.1.15.tgz#f66e30cbed8afdb8df2254d2aa47fe139e641c60"
+  integrity sha512-2sz02hdGZshanoq83jaB+goAcapVEWrxe+RJZn/gu2OymlEioWNjPPtOVGgi5DNIiJFnYvc66adayNwX39+tDA==
+  dependencies:
+    core-js "^3.0.1"
+
+"@storybook/core-events@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fcore-events/-/core-events-6.1.17.tgz#697ed916fcb2a411bc9f8bdbfacd0eb9d394eb58"
+  integrity sha512-xBI7kmyROcqhYNmFv4QBjD77CzV+k/0F051YFS5WicEI4qDWPPvzaShhm96ZrGobUX3+di4pC11gqdsrFeNCEg==
+  dependencies:
+    core-js "^3.0.1"
+
+"@storybook/core@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/core/-/core-5.3.19.tgz#1e61f35c5148343a0c580f5d5efb77f3b4243a30"
+  integrity sha512-4EYzglqb1iD6x9gxtAYpRGwGP6qJGiU2UW4GiYrErEmeu6y6tkyaqW5AwGlIo9+6jAfwD0HjaK8afvjKTtmmMQ==
+  dependencies:
+    "@babel/plugin-proposal-class-properties" "^7.7.0"
+    "@babel/plugin-proposal-object-rest-spread" "^7.6.2"
+    "@babel/plugin-syntax-dynamic-import" "^7.2.0"
+    "@babel/plugin-transform-react-constant-elements" "^7.2.0"
+    "@babel/preset-env" "^7.4.5"
+    "@storybook/addons" "5.3.19"
+    "@storybook/channel-postmessage" "5.3.19"
+    "@storybook/client-api" "5.3.19"
+    "@storybook/client-logger" "5.3.19"
+    "@storybook/core-events" "5.3.19"
+    "@storybook/csf" "0.0.1"
+    "@storybook/node-logger" "5.3.19"
+    "@storybook/router" "5.3.19"
+    "@storybook/theming" "5.3.19"
+    "@storybook/ui" "5.3.19"
+    airbnb-js-shims "^2.2.1"
+    ansi-to-html "^0.6.11"
+    autoprefixer "^9.7.2"
+    babel-plugin-add-react-displayname "^0.0.5"
+    babel-plugin-emotion "^10.0.20"
+    babel-plugin-macros "^2.7.0"
+    babel-preset-minify "^0.5.0 || 0.6.0-alpha.5"
+    boxen "^4.1.0"
+    case-sensitive-paths-webpack-plugin "^2.2.0"
+    chalk "^3.0.0"
+    cli-table3 "0.5.1"
+    commander "^4.0.1"
+    core-js "^3.0.1"
+    corejs-upgrade-webpack-plugin "^2.2.0"
+    css-loader "^3.0.0"
+    detect-port "^1.3.0"
+    dotenv-webpack "^1.7.0"
+    ejs "^2.7.4"
+    express "^4.17.0"
+    file-loader "^4.2.0"
+    file-system-cache "^1.0.5"
+    find-cache-dir "^3.0.0"
+    find-up "^4.1.0"
+    fs-extra "^8.0.1"
+    glob-base "^0.3.0"
+    global "^4.3.2"
+    html-webpack-plugin "^4.0.0-beta.2"
+    inquirer "^7.0.0"
+    interpret "^2.0.0"
+    ip "^1.1.5"
+    json5 "^2.1.1"
+    lazy-universal-dotenv "^3.0.1"
+    micromatch "^4.0.2"
+    node-fetch "^2.6.0"
+    open "^7.0.0"
+    pnp-webpack-plugin "1.5.0"
+    postcss-flexbugs-fixes "^4.1.0"
+    postcss-loader "^3.0.0"
+    pretty-hrtime "^1.0.3"
+    qs "^6.6.0"
+    raw-loader "^3.1.0"
+    react-dev-utils "^9.0.0"
+    regenerator-runtime "^0.13.3"
+    resolve "^1.11.0"
+    resolve-from "^5.0.0"
+    semver "^6.0.0"
+    serve-favicon "^2.5.0"
+    shelljs "^0.8.3"
+    style-loader "^1.0.0"
+    terser-webpack-plugin "^2.1.2"
+    ts-dedent "^1.1.0"
+    unfetch "^4.1.0"
+    url-loader "^2.0.1"
+    util-deprecate "^1.0.2"
+    webpack "^4.33.0"
+    webpack-dev-middleware "^3.7.0"
+    webpack-hot-middleware "^2.25.0"
+    webpack-virtual-modules "^0.2.0"
+
+"@storybook/core@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fcore/-/core-6.1.17.tgz#21c3d2c23fcaac4b930c9413f396d158aaeb7546"
+  integrity sha512-9x8ezlKlm8SQ+OW3kKwJwuVcaTDCw2OlA9YZEOo1kdRKsiiy5X14VqjJocl/BqnDt2VgzUUchz3m4neHYMAivQ==
+  dependencies:
+    "@babel/core" "^7.12.3"
+    "@babel/plugin-proposal-class-properties" "^7.12.1"
+    "@babel/plugin-proposal-decorators" "^7.12.1"
+    "@babel/plugin-proposal-export-default-from" "^7.12.1"
+    "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
+    "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
+    "@babel/plugin-proposal-optional-chaining" "^7.12.1"
+    "@babel/plugin-proposal-private-methods" "^7.12.1"
+    "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+    "@babel/plugin-transform-arrow-functions" "^7.12.1"
+    "@babel/plugin-transform-block-scoping" "^7.12.1"
+    "@babel/plugin-transform-classes" "^7.12.1"
+    "@babel/plugin-transform-destructuring" "^7.12.1"
+    "@babel/plugin-transform-for-of" "^7.12.1"
+    "@babel/plugin-transform-parameters" "^7.12.1"
+    "@babel/plugin-transform-shorthand-properties" "^7.12.1"
+    "@babel/plugin-transform-spread" "^7.12.1"
+    "@babel/plugin-transform-template-literals" "^7.12.1"
+    "@babel/preset-env" "^7.12.1"
+    "@babel/preset-react" "^7.12.1"
+    "@babel/preset-typescript" "^7.12.1"
+    "@babel/register" "^7.12.1"
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/channel-postmessage" "6.1.17"
+    "@storybook/channels" "6.1.17"
+    "@storybook/client-api" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/components" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/csf" "0.0.1"
+    "@storybook/node-logger" "6.1.17"
+    "@storybook/router" "6.1.17"
+    "@storybook/semver" "^7.3.2"
+    "@storybook/theming" "6.1.17"
+    "@storybook/ui" "6.1.17"
+    "@types/glob-base" "^0.3.0"
+    "@types/micromatch" "^4.0.1"
+    "@types/node-fetch" "^2.5.4"
+    airbnb-js-shims "^2.2.1"
+    ansi-to-html "^0.6.11"
+    autoprefixer "^9.7.2"
+    babel-loader "^8.0.6"
+    babel-plugin-emotion "^10.0.20"
+    babel-plugin-macros "^2.8.0"
+    babel-preset-minify "^0.5.0 || 0.6.0-alpha.5"
+    better-opn "^2.0.0"
+    boxen "^4.1.0"
+    case-sensitive-paths-webpack-plugin "^2.2.0"
+    chalk "^4.0.0"
+    cli-table3 "0.6.0"
+    commander "^5.0.0"
+    core-js "^3.0.1"
+    cpy "^8.1.1"
+    css-loader "^3.5.3"
+    detect-port "^1.3.0"
+    dotenv-webpack "^1.7.0"
+    ejs "^3.1.2"
+    express "^4.17.0"
+    file-loader "^6.0.0"
+    file-system-cache "^1.0.5"
+    find-up "^4.1.0"
+    fork-ts-checker-webpack-plugin "^4.1.4"
+    fs-extra "^9.0.0"
+    glob "^7.1.6"
+    glob-base "^0.3.0"
+    glob-promise "^3.4.0"
+    global "^4.3.2"
+    html-webpack-plugin "^4.2.1"
+    inquirer "^7.0.0"
+    interpret "^2.0.0"
+    ip "^1.1.5"
+    json5 "^2.1.1"
+    lazy-universal-dotenv "^3.0.1"
+    micromatch "^4.0.2"
+    node-fetch "^2.6.0"
+    pkg-dir "^4.2.0"
+    pnp-webpack-plugin "1.6.4"
+    postcss-flexbugs-fixes "^4.1.0"
+    postcss-loader "^3.0.0"
+    pretty-hrtime "^1.0.3"
+    qs "^6.6.0"
+    raw-loader "^4.0.1"
+    react-dev-utils "^10.0.0"
+    regenerator-runtime "^0.13.7"
+    resolve-from "^5.0.0"
+    serve-favicon "^2.5.0"
+    shelljs "^0.8.4"
+    stable "^0.1.8"
+    style-loader "^1.2.1"
+    telejson "^5.0.2"
+    terser-webpack-plugin "^3.0.0"
+    ts-dedent "^2.0.0"
+    unfetch "^4.1.0"
+    url-loader "^4.0.0"
+    util-deprecate "^1.0.2"
+    webpack "^4.44.2"
+    webpack-dev-middleware "^3.7.0"
+    webpack-filter-warnings-plugin "^1.2.1"
+    webpack-hot-middleware "^2.25.0"
+    webpack-virtual-modules "^0.2.2"
+
+"@storybook/csf@0.0.1":
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.0.1.tgz#95901507dc02f0bc6f9ac8ee1983e2fc5bb98ce6"
+  integrity sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==
+  dependencies:
+    lodash "^4.17.15"
+
+"@storybook/node-logger@5.3.19", "@storybook/node-logger@^5.3.17":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-5.3.19.tgz#c414e4d3781aeb06298715220012f552a36dff29"
+  integrity sha512-hKshig/u5Nj9fWy0OsyU04yqCxr0A9pydOHIassr4fpLAaePIN2YvqCqE2V+TxQHjZUnowSSIhbXrGt0DI5q2A==
+  dependencies:
+    "@types/npmlog" "^4.1.2"
+    chalk "^3.0.0"
+    core-js "^3.0.1"
+    npmlog "^4.1.2"
+    pretty-hrtime "^1.0.3"
+    regenerator-runtime "^0.13.3"
+
+"@storybook/node-logger@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fnode-logger/-/node-logger-6.1.17.tgz#468e65c9f0c103d4b0cd7f5da945af81e9aaa3d4"
+  integrity sha512-Z0xQ4kzvf7GnwFG9UY1HJO2UR66t8IBnC5GxvWrJ/kwXE+DRF3mm/MT41Zz/d9zAY5Vo4mhE5zRwlYSAtrxQIQ==
+  dependencies:
+    "@types/npmlog" "^4.1.2"
+    chalk "^4.0.0"
+    core-js "^3.0.1"
+    npmlog "^4.1.2"
+    pretty-hrtime "^1.0.3"
+
+"@storybook/postinstall@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fpostinstall/-/postinstall-6.1.17.tgz#deb31b803abd7c8962e073985e5bb4e7485d8616"
+  integrity sha512-3Q1cAy/zrWw+KevFzfMObicVy3VeT0OQWdtFKF0yq3xZqdznaGlk7KcyVb1HQUFoFqN2Uun71wsJeUnb/TCykg==
+  dependencies:
+    core-js "^3.0.1"
+
+"@storybook/preset-typescript@^3.0.0":
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/@storybook/preset-typescript/-/preset-typescript-3.0.0.tgz#e157baf6f2c4982c3da3328f5e1a640b3d7db9e4"
+  integrity sha512-tEbFWg5h/8SPfSCNXPxyqY418704K14q5H/xb9t0ARMXK3kZPTkKqKvdTvYg3UEKBBYbc+GA57UWaL+9b+DbDg==
+  dependencies:
+    "@babel/preset-typescript" "^7.8.3"
+    "@storybook/node-logger" "^5.3.17"
+    "@types/babel__core" "^7.1.6"
+    babel-preset-typescript-vue "^1.0.3"
+    fork-ts-checker-webpack-plugin "^4.1.0"
+
+"@storybook/react@*", "@storybook/react@^5.3.18":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/react/-/react-5.3.19.tgz#ad7e7a5538399e2794cdb5a1b844a2b77c10bd09"
+  integrity sha512-OBRUqol3YLQi/qE55x2pWkv4YpaAmmfj6/Km+7agx+og+oNQl0nnlXy7r27X/4j3ERczzURa5pJHtSjwiNaJNw==
+  dependencies:
+    "@babel/plugin-transform-react-constant-elements" "^7.6.3"
+    "@babel/preset-flow" "^7.0.0"
+    "@babel/preset-react" "^7.0.0"
+    "@storybook/addons" "5.3.19"
+    "@storybook/core" "5.3.19"
+    "@storybook/node-logger" "5.3.19"
+    "@svgr/webpack" "^4.0.3"
+    "@types/webpack-env" "^1.15.0"
+    babel-plugin-add-react-displayname "^0.0.5"
+    babel-plugin-named-asset-import "^0.3.1"
+    babel-plugin-react-docgen "^4.0.0"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    mini-css-extract-plugin "^0.7.0"
+    prop-types "^15.7.2"
+    react-dev-utils "^9.0.0"
+    regenerator-runtime "^0.13.3"
+    semver "^6.0.0"
+    ts-dedent "^1.1.0"
+    webpack "^4.33.0"
+
+"@storybook/react@^6.0.28":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2freact/-/react-6.1.17.tgz#cb48386d435984d7ca58a24e686a72159367077b"
+  integrity sha512-gBylKDuwUzWueB6mEhTo72SelWU3vPWHAFsi+NK6zWFIc2a5dJc9QqDfN+2rBhVOdRXqhSHzYwNWurqYpWuqew==
+  dependencies:
+    "@babel/preset-flow" "^7.12.1"
+    "@babel/preset-react" "^7.12.1"
+    "@pmmmwh/react-refresh-webpack-plugin" "^0.4.2"
+    "@storybook/addons" "6.1.17"
+    "@storybook/core" "6.1.17"
+    "@storybook/node-logger" "6.1.17"
+    "@storybook/semver" "^7.3.2"
+    "@types/webpack-env" "^1.15.3"
+    babel-plugin-add-react-displayname "^0.0.5"
+    babel-plugin-named-asset-import "^0.3.1"
+    babel-plugin-react-docgen "^4.2.1"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    prop-types "^15.7.2"
+    react-dev-utils "^10.0.0"
+    react-docgen-typescript-plugin "^0.6.2"
+    react-refresh "^0.8.3"
+    regenerator-runtime "^0.13.7"
+    ts-dedent "^2.0.0"
+    webpack "^4.44.2"
+
+"@storybook/router@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/router/-/router-5.3.19.tgz#0f783b85658f99e4007f74347ad7ef17dbf7fc3a"
+  integrity sha512-yNClpuP7BXQlBTRf6Ggle3/R349/k6kvI5Aim4jf6X/2cFVg2pzBXDAF41imNm9PcvdxwabQLm6I48p7OvKr/w==
+  dependencies:
+    "@reach/router" "^1.2.1"
+    "@storybook/csf" "0.0.1"
+    "@types/reach__router" "^1.2.3"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+    qs "^6.6.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/router@5.3.21":
+  version "5.3.21"
+  resolved "http://localhost:4873/@storybook%2frouter/-/router-5.3.21.tgz#32b08e5daa90a6ffa024bb670b874525a712a901"
+  integrity sha512-c29m5UikK5Q1lyd6FltOGFhIcpd6PIb855YS3OUNe3F6ZA1tfJ+aNKrCBc65d1c+fvCGG76dYYYv0RvwEmKXXg==
+  dependencies:
+    "@reach/router" "^1.2.1"
+    "@storybook/csf" "0.0.1"
+    "@types/reach__router" "^1.2.3"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+    qs "^6.6.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/router@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/router/-/router-6.1.15.tgz#e0cd7440a2ddc9b265e506b1cb590d3eeab56476"
+  integrity sha512-HlxDkGpiTSxXCJuqRoZ9Viq6Y/h/7efI8LPhhopr50qWRBTh/PEQzDqWBXG3sj8ISmi9GyUaTSAuqRwdA3lJQQ==
+  dependencies:
+    "@reach/router" "^1.3.3"
+    "@types/reach__router" "^1.3.7"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    memoizerific "^1.11.3"
+    qs "^6.6.0"
+
+"@storybook/router@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2frouter/-/router-6.1.17.tgz#96746878c50c6c97c7de5a1b23a9503c5d648775"
+  integrity sha512-wLqSOB5yLXgNyDGy008RUvjVRtVMq7lhmMRicSIxgJpkakPrMRN8n/nK7pxgQc/xDTphnS0u1nT01i97WszhCg==
+  dependencies:
+    "@reach/router" "^1.3.3"
+    "@types/reach__router" "^1.3.7"
+    core-js "^3.0.1"
+    global "^4.3.2"
+    memoizerific "^1.11.3"
+    qs "^6.6.0"
+
+"@storybook/semver@^7.3.2":
+  version "7.3.2"
+  resolved "https://registry.yarnpkg.com/@storybook/semver/-/semver-7.3.2.tgz#f3b9c44a1c9a0b933c04e66d0048fcf2fa10dac0"
+  integrity sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==
+  dependencies:
+    core-js "^3.6.5"
+    find-up "^4.1.0"
+
+"@storybook/source-loader@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fsource-loader/-/source-loader-6.1.17.tgz#c4c997b9858cd8f4c2740bd09e71384b4dcf6bf2"
+  integrity sha512-G+skNn2wBWOSBUmdKZ37KfXCwBeVd6hSUxoG1x42OWIq1igjZKvWPEX33DEu5zSjjDpbMOgRD8JPDTItqQ0KAA==
+  dependencies:
+    "@storybook/addons" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/csf" "0.0.1"
+    core-js "^3.0.1"
+    estraverse "^4.2.0"
+    global "^4.3.2"
+    loader-utils "^2.0.0"
+    lodash "^4.17.15"
+    prettier "~2.0.5"
+    regenerator-runtime "^0.13.7"
+    source-map "^0.7.3"
+
+"@storybook/theming@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-5.3.19.tgz#177d9819bd64f7a1a6ea2f1920ffa5baf9a5f467"
+  integrity sha512-ecG+Rq3hc1GOzKHamYnD4wZ0PEP9nNg0mXbC3RhbxfHj+pMMCWWmx9B2Uu75SL1PTT8WcfkFO0hU/0IO84Pzlg==
+  dependencies:
+    "@emotion/core" "^10.0.20"
+    "@emotion/styled" "^10.0.17"
+    "@storybook/client-logger" "5.3.19"
+    core-js "^3.0.1"
+    deep-object-diff "^1.1.0"
+    emotion-theming "^10.0.19"
+    global "^4.3.2"
+    memoizerific "^1.11.3"
+    polished "^3.3.1"
+    prop-types "^15.7.2"
+    resolve-from "^5.0.0"
+    ts-dedent "^1.1.0"
+
+"@storybook/theming@5.3.21":
+  version "5.3.21"
+  resolved "http://localhost:4873/@storybook%2ftheming/-/theming-5.3.21.tgz#ae2dc101aa57c3be4df1724ae729e11bad118e0b"
+  integrity sha512-FZbxjizqdO9lV5LUixPio/7+6UdPiswCzTJn8Hcot9uwwgfnrViRdN7xyjmSYRqv9nHP3OlYbtdeCAgZ4aPq8g==
+  dependencies:
+    "@emotion/core" "^10.0.20"
+    "@emotion/styled" "^10.0.17"
+    "@storybook/client-logger" "5.3.21"
+    core-js "^3.0.1"
+    deep-object-diff "^1.1.0"
+    emotion-theming "^10.0.19"
+    global "^4.3.2"
+    memoizerific "^1.11.3"
+    polished "^3.3.1"
+    prop-types "^15.7.2"
+    resolve-from "^5.0.0"
+    ts-dedent "^1.1.0"
+
+"@storybook/theming@6.1.15":
+  version "6.1.15"
+  resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-6.1.15.tgz#01083ab89904dd959429b0b3fd1c76bd0ecc59ef"
+  integrity sha512-88IdYaPzp4NMKf/GKBrPggxD6/d/lkdQ4SNowXxN9g9eONd9M7HtTbjuJGRCbGMJ52xGcbpj2exEnAqKQ2iodA==
+  dependencies:
+    "@emotion/core" "^10.1.1"
+    "@emotion/is-prop-valid" "^0.8.6"
+    "@emotion/styled" "^10.0.23"
+    "@storybook/client-logger" "6.1.15"
+    core-js "^3.0.1"
+    deep-object-diff "^1.1.0"
+    emotion-theming "^10.0.19"
+    global "^4.3.2"
+    memoizerific "^1.11.3"
+    polished "^3.4.4"
+    resolve-from "^5.0.0"
+    ts-dedent "^2.0.0"
+
+"@storybook/theming@6.1.17", "@storybook/theming@^6.0.21":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2ftheming/-/theming-6.1.17.tgz#99cc120a230c30458d833b40c806b9b4dff7b34a"
+  integrity sha512-LpRuY2aIh2td+qZi7E8cp2oM88LudNMmTsBT6N2/Id69u/a9qQd2cYCA9k9fAsg7rjor+wR/N695jk3SGtoFTw==
+  dependencies:
+    "@emotion/core" "^10.1.1"
+    "@emotion/is-prop-valid" "^0.8.6"
+    "@emotion/styled" "^10.0.23"
+    "@storybook/client-logger" "6.1.17"
+    core-js "^3.0.1"
+    deep-object-diff "^1.1.0"
+    emotion-theming "^10.0.19"
+    global "^4.3.2"
+    memoizerific "^1.11.3"
+    polished "^3.4.4"
+    resolve-from "^5.0.0"
+    ts-dedent "^2.0.0"
+
+"@storybook/ui@5.3.19":
+  version "5.3.19"
+  resolved "https://registry.yarnpkg.com/@storybook/ui/-/ui-5.3.19.tgz#ac03b67320044a3892ee784111d4436b61874332"
+  integrity sha512-r0VxdWab49nm5tzwvveVDnsHIZHMR76veYOu/NHKDUZ5hnQl1LMG1YyMCFFa7KiwD/OrZxRWr6/Ma7ep9kR4Gw==
+  dependencies:
+    "@emotion/core" "^10.0.20"
+    "@storybook/addons" "5.3.19"
+    "@storybook/api" "5.3.19"
+    "@storybook/channels" "5.3.19"
+    "@storybook/client-logger" "5.3.19"
+    "@storybook/components" "5.3.19"
+    "@storybook/core-events" "5.3.19"
+    "@storybook/router" "5.3.19"
+    "@storybook/theming" "5.3.19"
+    copy-to-clipboard "^3.0.8"
+    core-js "^3.0.1"
+    core-js-pure "^3.0.1"
+    emotion-theming "^10.0.19"
+    fast-deep-equal "^2.0.1"
+    fuse.js "^3.4.6"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    markdown-to-jsx "^6.11.4"
+    memoizerific "^1.11.3"
+    polished "^3.3.1"
+    prop-types "^15.7.2"
+    qs "^6.6.0"
+    react "^16.8.3"
+    react-dom "^16.8.3"
+    react-draggable "^4.0.3"
+    react-helmet-async "^1.0.2"
+    react-hotkeys "2.0.0"
+    react-sizeme "^2.6.7"
+    regenerator-runtime "^0.13.2"
+    resolve-from "^5.0.0"
+    semver "^6.0.0"
+    store2 "^2.7.1"
+    telejson "^3.2.0"
+    util-deprecate "^1.0.2"
+
+"@storybook/ui@6.1.17":
+  version "6.1.17"
+  resolved "http://localhost:4873/@storybook%2fui/-/ui-6.1.17.tgz#c29e7a03c645dd94793a3cbd587fcb6e0ba0f22e"
+  integrity sha512-D4Vri1MmqfmNq+g1hSRqZyld5zX2VLUexQHGSPmNj+FhlOzkeNA5RcoMBWMvIUSUENiBx3a5gmr/6cbXo7ljdQ==
+  dependencies:
+    "@emotion/core" "^10.1.1"
+    "@storybook/addons" "6.1.17"
+    "@storybook/api" "6.1.17"
+    "@storybook/channels" "6.1.17"
+    "@storybook/client-logger" "6.1.17"
+    "@storybook/components" "6.1.17"
+    "@storybook/core-events" "6.1.17"
+    "@storybook/router" "6.1.17"
+    "@storybook/semver" "^7.3.2"
+    "@storybook/theming" "6.1.17"
+    "@types/markdown-to-jsx" "^6.11.0"
+    copy-to-clipboard "^3.0.8"
+    core-js "^3.0.1"
+    core-js-pure "^3.0.1"
+    downshift "^6.0.6"
+    emotion-theming "^10.0.19"
+    fuse.js "^3.6.1"
+    global "^4.3.2"
+    lodash "^4.17.15"
+    markdown-to-jsx "^6.11.4"
+    memoizerific "^1.11.3"
+    polished "^3.4.4"
+    qs "^6.6.0"
+    react-draggable "^4.0.3"
+    react-helmet-async "^1.0.2"
+    react-hotkeys "2.0.0"
+    react-sizeme "^2.6.7"
+    regenerator-runtime "^0.13.7"
+    resolve-from "^5.0.0"
+    store2 "^2.7.1"
+
+"@superset-ui/commit-config@^0.0.9":
+  version "0.0.9"
+  resolved "https://registry.yarnpkg.com/@superset-ui/commit-config/-/commit-config-0.0.9.tgz#f0149945185e0908e14fec46bdc1498aa026ada7"
+  integrity sha512-5gOGvjvPEz1oyemLBLB9eYpbuVAPiSgiqcs42rv7yUx49+RiA1ijql0n+4G8HHp5Zg+Qjtn8cjhDYZXRdy4P3w==
+  dependencies:
+    "@commitlint/cli" "^7.5.2"
+    "@commitlint/config-conventional" "^7.5.0"
+    "@commitlint/config-lerna-scopes" "^7.5.1"
+    commitizen "^3.0.7"
+    conventional-changelog "^3.0.6"
+    conventional-changelog-cli "^2.0.12"
+    cz-conventional-changelog "^2.1.0"
+
+"@superset-ui/core@file:packages/superset-ui-core/src":
+  version "0.0.0"
+
+"@superset-ui/legacy-plugin-chart-word-cloud@^0.11.15":
+  version "0.11.15"
+  resolved "https://registry.yarnpkg.com/@superset-ui/legacy-plugin-chart-word-cloud/-/legacy-plugin-chart-word-cloud-0.11.15.tgz#70a146aaf3cf1977c29086c069f0216325f092b2"
+  integrity sha512-DG0iGtZk20wAJuKURNk5U6VX+JxxkC07p5R/pEMr95nLyS6JTEOd/y953tzZu43GO3JcuTYnbartLu6D+jTxVw==
+  dependencies:
+    d3 "^3.5.17"
+    d3-cloud "^1.2.1"
+    prop-types "^15.6.2"
+
+"@superset-ui/legacy-preset-chart-deckgl@^0.4.1":
+  version "0.4.1"
+  resolved "http://localhost:4873/@superset-ui%2flegacy-preset-chart-deckgl/-/legacy-preset-chart-deckgl-0.4.1.tgz#dbe46a38f3c878dd475bc8ac8ba0d0fb7c637db9"
+  integrity sha512-3THN+WM8HUU1NlV3VNXRVS1j2jH33CmVAdyPNB35RqtwkY+udgFGOxm0lXumcUElht/3ROGMPvcwo1SXijVuLA==
+  dependencies:
+    "@math.gl/web-mercator" "^3.2.2"
+    "@types/d3-array" "^2.0.0"
+    bootstrap-slider "^10.0.0"
+    d3-array "^1.2.4"
+    d3-color "^1.2.0"
+    d3-scale "^2.1.2"
+    deck.gl "7.1.11"
+    jquery "^3.4.1"
+    lodash "^4.17.15"
+    mapbox-gl "^0.53.0"
+    moment "^2.20.1"
+    mousetrap "^1.6.1"
+    prop-types "^15.6.0"
+    react-bootstrap-slider "2.1.5"
+    react-map-gl "^4.0.10"
+    underscore "^1.8.3"
+    urijs "^1.18.10"
+    xss "^1.0.6"
+
+"@svgr/babel-plugin-add-jsx-attribute@^4.2.0":
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.2.0.tgz#dadcb6218503532d6884b210e7f3c502caaa44b1"
+  integrity sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==
+
+"@svgr/babel-plugin-add-jsx-attribute@^5.4.0":
+  version "5.4.0"
+  resolved "http://localhost:4873/@svgr%2fbabel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906"
+  integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==
+
+"@svgr/babel-plugin-remove-jsx-attribute@^4.2.0":
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-4.2.0.tgz#297550b9a8c0c7337bea12bdfc8a80bb66f85abc"
+  integrity sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==
+
+"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0":
+  version "5.4.0"
+  resolved "http://localhost:4873/@svgr%2fbabel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef"
+  integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==
+
+"@svgr/babel-plugin-remove-jsx-empty-expression@^4.2.0":
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-4.2.0.tgz#c196302f3e68eab6a05e98af9ca8570bc13131c7"
+  integrity sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==
+
+"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1":
+  version "5.0.1"
+  resolved "http://localhost:4873/@svgr%2fbabel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd"
+  integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==
+
+"@svgr/babel-plugin-replace-jsx-attribute-value@^4.2.0":
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-4.2.0.tgz#310ec0775de808a6a2e4fd4268c245fd734c1165"
+  integrity sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==
+
+"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1":
+  version "5.0.1"
+  resolved "http://localhost:4873/@svgr%2fbabel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897"
+  integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==
+
+"@svgr/babel-plugin-svg-dynamic-title@^4.3.3":
+  version "4.3.3"
+  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-4.3.3.tgz#2cdedd747e5b1b29ed4c241e46256aac8110dd93"
+  integrity sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==
+
+"@svgr/babel-plugin-svg-dynamic-title@^5.4.0":
+  version "5.4.0"
+  resolved "http://localhost:4873/@svgr%2fbabel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7"
+  integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==
+
+"@svgr/babel-plugin-svg-em-dimensions@^4.2.0":
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-4.2.0.tgz#9a94791c9a288108d20a9d2cc64cac820f141391"
+  integrity sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==
+
+"@svgr/babel-plugin-svg-em-dimensions@^5.4.0":
+  version "5.4.0"
+  resolved "http://localhost:4873/@svgr%2fbabel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0"
+  integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==
+
+"@svgr/babel-plugin-transform-react-native-svg@^4.2.0":
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-4.2.0.tgz#151487322843359a1ca86b21a3815fd21a88b717"
+  integrity sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==
+
+"@svgr/babel-plugin-transform-react-native-svg@^5.4.0":
+  version "5.4.0"
+  resolved "http://localhost:4873/@svgr%2fbabel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80"
+  integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==
+
+"@svgr/babel-plugin-transform-svg-component@^4.2.0":
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-4.2.0.tgz#5f1e2f886b2c85c67e76da42f0f6be1b1767b697"
+  integrity sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==
+
+"@svgr/babel-plugin-transform-svg-component@^5.5.0":
+  version "5.5.0"
+  resolved "http://localhost:4873/@svgr%2fbabel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz#583a5e2a193e214da2f3afeb0b9e8d3250126b4a"
+  integrity sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==
+
+"@svgr/babel-preset@^4.3.3":
+  version "4.3.3"
+  resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-4.3.3.tgz#a75d8c2f202ac0e5774e6bfc165d028b39a1316c"
+  integrity sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==
+  dependencies:
+    "@svgr/babel-plugin-add-jsx-attribute" "^4.2.0"
+    "@svgr/babel-plugin-remove-jsx-attribute" "^4.2.0"
+    "@svgr/babel-plugin-remove-jsx-empty-expression" "^4.2.0"
+    "@svgr/babel-plugin-replace-jsx-attribute-value" "^4.2.0"
+    "@svgr/babel-plugin-svg-dynamic-title" "^4.3.3"
+    "@svgr/babel-plugin-svg-em-dimensions" "^4.2.0"
+    "@svgr/babel-plugin-transform-react-native-svg" "^4.2.0"
+    "@svgr/babel-plugin-transform-svg-component" "^4.2.0"
+
+"@svgr/babel-preset@^5.5.0":
+  version "5.5.0"
+  resolved "http://localhost:4873/@svgr%2fbabel-preset/-/babel-preset-5.5.0.tgz#8af54f3e0a8add7b1e2b0fcd5a882c55393df327"
+  integrity sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==
+  dependencies:
+    "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0"
+    "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0"
+    "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1"
+    "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1"
+    "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0"
+    "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0"
+    "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0"
+    "@svgr/babel-plugin-transform-svg-component" "^5.5.0"
+
+"@svgr/core@^4.3.3":
+  version "4.3.3"
+  resolved "https://registry.yarnpkg.com/@svgr/core/-/core-4.3.3.tgz#b37b89d5b757dc66e8c74156d00c368338d24293"
+  integrity sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==
+  dependencies:
+    "@svgr/plugin-jsx" "^4.3.3"
+    camelcase "^5.3.1"
+    cosmiconfig "^5.2.1"
+
+"@svgr/core@^5.5.0":
+  version "5.5.0"
+  resolved "http://localhost:4873/@svgr%2fcore/-/core-5.5.0.tgz#82e826b8715d71083120fe8f2492ec7d7874a579"
+  integrity sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==
+  dependencies:
+    "@svgr/plugin-jsx" "^5.5.0"
+    camelcase "^6.2.0"
+    cosmiconfig "^7.0.0"
+
+"@svgr/hast-util-to-babel-ast@^4.3.2":
+  version "4.3.2"
+  resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-4.3.2.tgz#1d5a082f7b929ef8f1f578950238f630e14532b8"
+  integrity sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==
+  dependencies:
+    "@babel/types" "^7.4.4"
+
+"@svgr/hast-util-to-babel-ast@^5.5.0":
+  version "5.5.0"
+  resolved "http://localhost:4873/@svgr%2fhast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz#5ee52a9c2533f73e63f8f22b779f93cd432a5461"
+  integrity sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==
+  dependencies:
+    "@babel/types" "^7.12.6"
+
+"@svgr/plugin-jsx@^4.3.3":
+  version "4.3.3"
+  resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-4.3.3.tgz#e2ba913dbdfbe85252a34db101abc7ebd50992fa"
+  integrity sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==
+  dependencies:
+    "@babel/core" "^7.4.5"
+    "@svgr/babel-preset" "^4.3.3"
+    "@svgr/hast-util-to-babel-ast" "^4.3.2"
+    svg-parser "^2.0.0"
+
+"@svgr/plugin-jsx@^5.5.0":
+  version "5.5.0"
+  resolved "http://localhost:4873/@svgr%2fplugin-jsx/-/plugin-jsx-5.5.0.tgz#1aa8cd798a1db7173ac043466d7b52236b369000"
+  integrity sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==
+  dependencies:
+    "@babel/core" "^7.12.3"
+    "@svgr/babel-preset" "^5.5.0"
+    "@svgr/hast-util-to-babel-ast" "^5.5.0"
+    svg-parser "^2.0.2"
+
+"@svgr/plugin-svgo@^4.3.1":
+  version "4.3.1"
+  resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-4.3.1.tgz#daac0a3d872e3f55935c6588dd370336865e9e32"
+  integrity sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==
+  dependencies:
+    cosmiconfig "^5.2.1"
+    merge-deep "^3.0.2"
+    svgo "^1.2.2"
+
+"@svgr/plugin-svgo@^5.5.0":
+  version "5.5.0"
+  resolved "http://localhost:4873/@svgr%2fplugin-svgo/-/plugin-svgo-5.5.0.tgz#02da55d85320549324e201c7b2e53bf431fcc246"
+  integrity sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==
+  dependencies:
+    cosmiconfig "^7.0.0"
+    deepmerge "^4.2.2"
+    svgo "^1.2.2"
+
+"@svgr/webpack@^4.0.3":
+  version "4.3.3"
+  resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-4.3.3.tgz#13cc2423bf3dff2d494f16b17eb7eacb86895017"
+  integrity sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg==
+  dependencies:
+    "@babel/core" "^7.4.5"
+    "@babel/plugin-transform-react-constant-elements" "^7.0.0"
+    "@babel/preset-env" "^7.4.5"
+    "@babel/preset-react" "^7.0.0"
+    "@svgr/core" "^4.3.3"
+    "@svgr/plugin-jsx" "^4.3.3"
+    "@svgr/plugin-svgo" "^4.3.1"
+    loader-utils "^1.2.3"
+
+"@svgr/webpack@^5.4.0":
+  version "5.5.0"
+  resolved "http://localhost:4873/@svgr%2fwebpack/-/webpack-5.5.0.tgz#aae858ee579f5fa8ce6c3166ef56c6a1b381b640"
+  integrity sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==
+  dependencies:
+    "@babel/core" "^7.12.3"
+    "@babel/plugin-transform-react-constant-elements" "^7.12.1"
+    "@babel/preset-env" "^7.12.1"
+    "@babel/preset-react" "^7.12.5"
+    "@svgr/core" "^5.5.0"
+    "@svgr/plugin-jsx" "^5.5.0"
+    "@svgr/plugin-svgo" "^5.5.0"
+    loader-utils "^2.0.0"
+
+"@testing-library/dom@^7.28.1":
+  version "7.28.1"
+  resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.28.1.tgz#dea78be6e1e6db32ddcb29a449e94d9700c79eb9"
+  integrity sha512-acv3l6kDwZkQif/YqJjstT3ks5aaI33uxGNVIQmdKzbZ2eMKgg3EV2tB84GDdc72k3Kjhl6mO8yUt6StVIdRDg==
+  dependencies:
+    "@babel/code-frame" "^7.10.4"
+    "@babel/runtime" "^7.12.5"
+    "@types/aria-query" "^4.2.0"
+    aria-query "^4.2.2"
+    chalk "^4.1.0"
+    dom-accessibility-api "^0.5.4"
+    lz-string "^1.4.4"
+    pretty-format "^26.6.2"
+
+"@testing-library/jest-dom@^5.11.6":
+  version "5.11.9"
+  resolved "http://localhost:4873/@testing-library%2fjest-dom/-/jest-dom-5.11.9.tgz#e6b3cd687021f89f261bd53cbe367041fbd3e975"
+  integrity sha512-Mn2gnA9d1wStlAIT2NU8J15LNob0YFBVjs2aEQ3j8rsfRQo+lAs7/ui1i2TGaJjapLmuNPLTsrm+nPjmZDwpcQ==
+  dependencies:
+    "@babel/runtime" "^7.9.2"
+    "@types/testing-library__jest-dom" "^5.9.1"
+    aria-query "^4.2.2"
+    chalk "^3.0.0"
+    css "^3.0.0"
+    css.escape "^1.5.1"
+    lodash "^4.17.15"
+    redent "^3.0.0"
+
+"@testing-library/react@^11.2.0":
+  version "11.2.5"
+  resolved "http://localhost:4873/@testing-library%2freact/-/react-11.2.5.tgz#ae1c36a66c7790ddb6662c416c27863d87818eb9"
+  integrity sha512-yEx7oIa/UWLe2F2dqK0FtMF9sJWNXD+2PPtp39BvE0Kh9MJ9Kl0HrZAgEuhUJR+Lx8Di6Xz+rKwSdEPY2UV8ZQ==
+  dependencies:
+    "@babel/runtime" "^7.12.5"
+    "@testing-library/dom" "^7.28.1"
+
+"@types/anymatch@*":
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a"
+  integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==
+
+"@types/aria-query@^4.2.0":
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.0.tgz#14264692a9d6e2fa4db3df5e56e94b5e25647ac0"
+  integrity sha512-iIgQNzCm0v7QMhhe4Jjn9uRh+I6GoPmt03CbEtwx3ao8/EfoQcmgtqH4vQ5Db/lxiIGaWDv6nwvunuh0RyX0+A==
+
+"@types/babel__core@^7.0.0":
+  version "7.1.12"
+  resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.12.tgz#4d8e9e51eb265552a7e4f1ff2219ab6133bdfb2d"
+  integrity sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==
+  dependencies:
+    "@babel/parser" "^7.1.0"
+    "@babel/types" "^7.0.0"
+    "@types/babel__generator" "*"
+    "@types/babel__template" "*"
+    "@types/babel__traverse" "*"
+
+"@types/babel__core@^7.1.6", "@types/babel__core@^7.1.7":
+  version "7.1.7"
+  resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.7.tgz#1dacad8840364a57c98d0dd4855c6dd3752c6b89"
+  integrity sha512-RL62NqSFPCDK2FM1pSDH0scHpJvsXtZNiYlMB73DgPBaG1E38ZYVL+ei5EkWRbr+KC4YNiAUNBnRj+bgwpgjMw==
+  dependencies:
+    "@babel/parser" "^7.1.0"
+    "@babel/types" "^7.0.0"
+    "@types/babel__generator" "*"
+    "@types/babel__template" "*"
+    "@types/babel__traverse" "*"
+
+"@types/babel__generator@*":
+  version "7.6.1"
+  resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04"
+  integrity sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==
+  dependencies:
+    "@babel/types" "^7.0.0"
+
+"@types/babel__template@*":
+  version "7.0.2"
+  resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307"
+  integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==
+  dependencies:
+    "@babel/parser" "^7.1.0"
+    "@babel/types" "^7.0.0"
+
+"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
+  version "7.0.9"
+  resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.9.tgz#be82fab304b141c3eee81a4ce3b034d0eba1590a"
+  integrity sha512-jEFQ8L1tuvPjOI8lnpaf73oCJe+aoxL6ygqSy6c8LcW98zaC+4mzWuQIRCEvKeCOu+lbqdXcg4Uqmm1S8AP1tw==
+  dependencies:
+    "@babel/types" "^7.3.0"
+
+"@types/babel__traverse@^7.0.4":
+  version "7.0.15"
+  resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.15.tgz#db9e4238931eb69ef8aab0ad6523d4d4caa39d03"
+  integrity sha512-Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A==
+  dependencies:
+    "@babel/types" "^7.3.0"
+
+"@types/braces@*":
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/@types/braces/-/braces-3.0.0.tgz#7da1c0d44ff1c7eb660a36ec078ea61ba7eb42cb"
+  integrity sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw==
+
+"@types/cheerio@*":
+  version "0.22.17"
+  resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.17.tgz#e54f71c3135f71ebc16c8dc62edad533872c9e72"
+  integrity sha512-izlm+hbqWN9csuB9GSMfCnAyd3/57XZi3rfz1B0C4QBGVMp+9xQ7+9KYnep+ySfUrCWql4lGzkLf0XmprXcz9g==
+  dependencies:
+    "@types/node" "*"
+
+"@types/cheerio@^0.22.22":
+  version "0.22.22"
+  resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.22.tgz#ae71cf4ca59b8bbaf34c99af7a5d6c8894988f5f"
+  integrity sha512-05DYX4zU96IBfZFY+t3Mh88nlwSMtmmzSYaQkKN48T495VV1dkHSah6qYyDTN5ngaS0i0VonH37m+RuzSM0YiA==
+  dependencies:
+    "@types/node" "*"
+
+"@types/classnames@^2.2.10":
+  version "2.2.11"
+  resolved "http://localhost:4873/@types%2fclassnames/-/classnames-2.2.11.tgz#2521cc86f69d15c5b90664e4829d84566052c1cf"
+  integrity sha512-2koNhpWm3DgWRp5tpkiJ8JGc1xTn2q0l+jUNUE7oMKXUf5NpI9AIdC4kbjGNFBdHtcxBD18LAksoudAVhFKCjw==
+
+"@types/classnames@^2.2.9":
+  version "2.2.10"
+  resolved "https://registry.yarnpkg.com/@types/classnames/-/classnames-2.2.10.tgz#cc658ca319b6355399efc1f5b9e818f1a24bf999"
+  integrity sha512-1UzDldn9GfYYEsWWnn/P4wkTlkZDH7lDb0wBMGbtIQc9zXEQq7FlKBdZUn6OBqD8sKZZ2RQO2mAjGpXiDGoRmQ==
+
+"@types/color-name@^1.1.1":
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
+  integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
+
+"@types/d3-array@^2.0.0":
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/@types/d3-array/-/d3-array-2.0.0.tgz#a0d63a296a2d8435a9ec59393dcac746c6174a96"
+  integrity sha512-rGqfPVowNDTszSFvwoZIXvrPG7s/qKzm9piCRIH6xwTTRu7pPZ3ootULFnPkTt74B6i5lN0FpLQL24qGOw1uZA==
+
+"@types/d3-cloud@^1.2.1":
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/@types/d3-cloud/-/d3-cloud-1.2.3.tgz#cfaac9cb601968c27094903a82687336de69b518"
+  integrity sha512-VUcRA9YWM1V5Srg444/zVxgmhVyIYBrChIr5lg+0cPGNM4J4fLdBqEeAkk9ggRPM3Um4fUy/p/gtEKbAqL/hcw==
+  dependencies:
+    "@types/d3" "^3"
+
+"@types/d3-color@*", "@types/d3-color@^1.2.2":
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/@types/d3-color/-/d3-color-1.2.2.tgz#80cf7cfff7401587b8f89307ba36fe4a576bc7cf"
+  integrity sha512-6pBxzJ8ZP3dYEQ4YjQ+NVbQaOflfgXq/JbDiS99oLobM2o72uAST4q6yPxHv6FOTCRC/n35ktuo8pvw/S4M7sw==
+
+"@types/d3-format@^1.3.0", "@types/d3-format@^1.3.1":
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/@types/d3-format/-/d3-format-1.3.1.tgz#35bf88264bd6bcda39251165bb827f67879c4384"
+  integrity sha512-KAWvReOKMDreaAwOjdfQMm0HjcUMlQG47GwqdVKgmm20vTd2pucj0a70c3gUSHrnsmo6H2AMrkBsZU2UhJLq8A==
+
+"@types/d3-geo@^1.11.1":
+  version "1.11.1"
+  resolved "https://registry.yarnpkg.com/@types/d3-geo/-/d3-geo-1.11.1.tgz#e96ec91f16221d87507fec66b2cc889f52d2493e"
+  integrity sha512-Ox8WWOG3igDRoep/dNsGbOiSJYdUG3ew/6z0ETvHyAtXZVBjOE0S96zSSmzgl0gqQ3RdZjn2eeJOj9oRcMZPkQ==
+  dependencies:
+    "@types/geojson" "*"
+
+"@types/d3-interpolate@^1.3.1":
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/@types/d3-interpolate/-/d3-interpolate-1.3.1.tgz#1c280511f622de9b0b47d463fa55f9a4fd6f5fc8"
+  integrity sha512-z8Zmi08XVwe8e62vP6wcA+CNuRhpuUU5XPEfqpG0hRypDE5BWNthQHB1UNWWDB7ojCbGaN4qBdsWp5kWxhT1IQ==
+  dependencies:
+    "@types/d3-color" "*"
+
+"@types/d3-path@*", "@types/d3-path@^1.0.8":
+  version "1.0.8"
+  resolved "https://registry.yarnpkg.com/@types/d3-path/-/d3-path-1.0.8.tgz#48e6945a8ff43ee0a1ce85c8cfa2337de85c7c79"
+  integrity sha512-AZGHWslq/oApTAHu9+yH/Bnk63y9oFOMROtqPAtxl5uB6qm1x2lueWdVEjsjjV3Qc2+QfuzKIwIR5MvVBakfzA==
+
+"@types/d3-scale-chromatic@^1.2.0":
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz#315367557d51b823bec848614fac095325613fc3"
+  integrity sha512-9/D7cOBKdZdTCPc6re0HeSUFBM0aFzdNdmYggUWT9SRRiYSOa6Ys2xdTwHKgc1WS3gGfwTMatBOdWCS863REsg==
+
+"@types/d3-scale@^2.0.2", "@types/d3-scale@^2.1.1", "@types/d3-scale@^2.2.0":
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-2.2.0.tgz#e5987a2857365823eb26ed5eb21bc566c4dcf1c0"
+  integrity sha512-oQFanN0/PiR2oySHfj+zAAkK1/p4LD32Nt1TMVmzk+bYHk7vgIg/iTXQWitp1cIkDw4LMdcgvO63wL+mNs47YA==
+  dependencies:
+    "@types/d3-time" "*"
+
+"@types/d3-shape@^1.3.1":
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/@types/d3-shape/-/d3-shape-1.3.2.tgz#a41d9d6b10d02e221696b240caf0b5d0f5a588ec"
+  integrity sha512-LtD8EaNYCaBRzHzaAiIPrfcL3DdIysc81dkGlQvv7WQP3+YXV7b0JJTtR1U3bzeRieS603KF4wUo+ZkJVenh8w==
+  dependencies:
+    "@types/d3-path" "*"
+
+"@types/d3-time-format@^2.1.0", "@types/d3-time-format@^2.1.1":
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/@types/d3-time-format/-/d3-time-format-2.1.1.tgz#dd2c79ec4575f1355484ab6b10407824668eba42"
+  integrity sha512-tJSyXta8ZyJ52wDDHA96JEsvkbL6jl7wowGmuf45+fAkj5Y+SQOnz0N7/H68OWmPshPsAaWMQh+GAws44IzH3g==
+
+"@types/d3-time@*", "@types/d3-time@^1.0.10", "@types/d3-time@^1.0.9":
+  version "1.0.10"
+  resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-1.0.10.tgz#d338c7feac93a98a32aac875d1100f92c7b61f4f"
+  integrity sha512-aKf62rRQafDQmSiv1NylKhIMmznsjRN+MnXRXTqHoqm0U/UZzVpdrtRnSIfdiLS616OuC1soYeX1dBg2n1u8Xw==
+
+"@types/d3@3.5.38":
+  version "3.5.38"
+  resolved "https://registry.yarnpkg.com/@types/d3/-/d3-3.5.38.tgz#76f8f2e9159ae562965b2fa0e6fbee1aa643a1bc"
+  integrity sha1-dvjy6RWa5WKWWy+g5vvuGqZDobw=
+
+"@types/d3@^3":
+  version "3.5.43"
+  resolved "https://registry.yarnpkg.com/@types/d3/-/d3-3.5.43.tgz#e9b4992817e0b6c5efaa7d6e5bb2cee4d73eab58"
+  integrity sha512-t9ZmXOcpVxywRw86YtIC54g7M9puRh8hFedRvVfHKf5YyOP6pSxA0TvpXpfseXSCInoW4P7bggTrSDiUOs4g5w==
+
+"@types/debug@^4.1.5":
+  version "4.1.5"
+  resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd"
+  integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ==
+
+"@types/dom-to-image@^2.6.0":
+  version "2.6.2"
+  resolved "http://localhost:4873/@types%2fdom-to-image/-/dom-to-image-2.6.2.tgz#f6cc93cd5e84565a3666851fa5472fe8779b49d2"
+  integrity sha512-Yxbwmz/glNwRIXfBI8efG2bgIxrFAKV1MdfpqbUDq25ULMot7U7FYXPiso5G8DlBExSP+AakuG0mNus9yw4RZQ==
+
+"@types/enzyme-adapter-react-16@^1.0.6":
+  version "1.0.6"
+  resolved "http://localhost:4873/@types%2fenzyme-adapter-react-16/-/enzyme-adapter-react-16-1.0.6.tgz#8aca7ae2fd6c7137d869b6616e696d21bb8b0cec"
+  integrity sha512-VonDkZ15jzqDWL8mPFIQnnLtjwebuL9YnDkqeCDYnB4IVgwUm0mwKkqhrxLL6mb05xm7qqa3IE95m8CZE9imCg==
+  dependencies:
+    "@types/enzyme" "*"
+
+"@types/enzyme@*", "@types/enzyme@^3.10.5":
+  version "3.10.8"
+  resolved "http://localhost:4873/@types%2fenzyme/-/enzyme-3.10.8.tgz#ad7ac9d3af3de6fd0673773123fafbc63db50d42"
+  integrity sha512-vlOuzqsTHxog6PV79+tvOHFb6hq4QZKMq1lLD9MaWD1oec2lHTKndn76XOpSwCA0oFTaIbKVPrgM3k78Jjd16g==
+  dependencies:
+    "@types/cheerio" "*"
+    "@types/react" "*"
+
+"@types/enzyme@^3.10.3":
+  version "3.10.5"
+  resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.5.tgz#fe7eeba3550369eed20e7fb565bfb74eec44f1f0"
+  integrity sha512-R+phe509UuUYy9Tk0YlSbipRpfVtIzb/9BHn5pTEtjJTF5LXvUjrIQcZvNyANNEyFrd2YGs196PniNT1fgvOQA==
+  dependencies:
+    "@types/cheerio" "*"
+    "@types/react" "*"
+
+"@types/events@*":
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7"
+  integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==
+
+"@types/fetch-mock@^7.3.2", "@types/fetch-mock@^7.3.3":
+  version "7.3.3"
+  resolved "https://registry.yarnpkg.com/@types/fetch-mock/-/fetch-mock-7.3.3.tgz#255511d70087b9ae8866704c782c88cc96a0b45b"
+  integrity sha512-NLMbBVQh3yx6dMd5CnVxp9ZBhQYuFzWIlRk0kQbgBfyL75u3wtZyUTuFsK9Wb9G3eIw77yja858j1fQAWqM9Og==
+
+"@types/geojson@*", "@types/geojson@^7946.0.3":
+  version "7946.0.7"
+  resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.7.tgz#c8fa532b60a0042219cdf173ca21a975ef0666ad"
+  integrity sha512-wE2v81i4C4Ol09RtsWFAqg3BUitWbHSpSlIo+bNdsCJijO9sjme+zm+73ZMCa/qMC8UEERxzGbvmr1cffo2SiQ==
+
+"@types/glob-base@^0.3.0":
+  version "0.3.0"
+  resolved "http://localhost:4873/@types%2fglob-base/-/glob-base-0.3.0.tgz#a581d688347e10e50dd7c17d6f2880a10354319d"
+  integrity sha1-pYHWiDR+EOUN18F9byiAoQNUMZ0=
+
+"@types/glob@*":
+  version "7.1.3"
+  resolved "http://localhost:4873/@types%2fglob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183"
+  integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==
+  dependencies:
+    "@types/minimatch" "*"
+    "@types/node" "*"
+
+"@types/glob@^7.1.1":
+  version "7.1.1"
+  resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575"
+  integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==
+  dependencies:
+    "@types/events" "*"
+    "@types/minimatch" "*"
+    "@types/node" "*"
+
+"@types/graceful-fs@^4.1.2":
+  version "4.1.3"
+  resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f"
+  integrity sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ==
+  dependencies:
+    "@types/node" "*"
+
+"@types/hast@^2.0.0":
+  version "2.3.1"
+  resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.1.tgz#b16872f2a6144c7025f296fb9636a667ebb79cd9"
+  integrity sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==
+  dependencies:
+    "@types/unist" "*"
+
+"@types/history@*":
+  version "4.7.5"
+  resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.5.tgz#527d20ef68571a4af02ed74350164e7a67544860"
+  integrity sha512-wLD/Aq2VggCJXSjxEwrMafIP51Z+13H78nXIX0ABEuIGhmB5sNGbR113MOKo+yfw+RDo1ZU3DM6yfnnRF/+ouw==
+
+"@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1":
+  version "3.3.1"
+  resolved "http://localhost:4873/@types%2fhoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f"
+  integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==
+  dependencies:
+    "@types/react" "*"
+    hoist-non-react-statics "^3.3.0"
+
+"@types/html-minifier-terser@^5.0.0":
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.0.0.tgz#7532440c138605ced1b555935c3115ddd20e8bef"
+  integrity sha512-q95SP4FdkmF0CwO0F2q0H6ZgudsApaY/yCtAQNRn1gduef5fGpyEphzy0YCq/N0UFvDSnLg5V8jFK/YGXlDiCw==
+
+"@types/is-function@^1.0.0":
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/@types/is-function/-/is-function-1.0.0.tgz#1b0b819b1636c7baf0d6785d030d12edf70c3e83"
+  integrity sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w==
+
+"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff"
+  integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==
+
+"@types/istanbul-lib-report@*":
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
+  integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
+  dependencies:
+    "@types/istanbul-lib-coverage" "*"
+
+"@types/istanbul-reports@^1.1.1":
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a"
+  integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==
+  dependencies:
+    "@types/istanbul-lib-coverage" "*"
+    "@types/istanbul-lib-report" "*"
+
+"@types/istanbul-reports@^3.0.0":
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821"
+  integrity sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==
+  dependencies:
+    "@types/istanbul-lib-report" "*"
+
+"@types/jest@*", "@types/jest@^26.0.3":
+  version "26.0.20"
+  resolved "http://localhost:4873/@types%2fjest/-/jest-26.0.20.tgz#cd2f2702ecf69e86b586e1f5223a60e454056307"
+  integrity sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA==
+  dependencies:
+    jest-diff "^26.0.0"
+    pretty-format "^26.0.0"
+
+"@types/jest@26.x":
+  version "26.0.16"
+  resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.16.tgz#b47abd50f6ed0503f589db8e126fc8eb470cf87c"
+  integrity sha512-Gp12+7tmKCgv9JjtltxUXokohCAEZfpJaEW5tn871SGRp8I+bRWBonQO7vW5NHwnAHe5dd50+Q4zyKuN35i09g==
+  dependencies:
+    jest-diff "^26.0.0"
+    pretty-format "^26.0.0"
+
+"@types/jest@^26.0.0":
+  version "26.0.15"
+  resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.15.tgz#12e02c0372ad0548e07b9f4e19132b834cb1effe"
+  integrity sha512-s2VMReFXRg9XXxV+CW9e5Nz8fH2K1aEhwgjUqPPbQd7g95T0laAcvLv032EhFHIa5GHsZ8W7iJEQVaJq6k3Gog==
+  dependencies:
+    jest-diff "^26.0.0"
+    pretty-format "^26.0.0"
+
+"@types/jest@^26.0.4":
+  version "26.0.13"
+  resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.13.tgz#5a7b9d5312f5dd521a38329c38ee9d3802a0b85e"
+  integrity sha512-sCzjKow4z9LILc6DhBvn5AkIfmQzDZkgtVVKmGwVrs5tuid38ws281D4l+7x1kP487+FlKDh5kfMZ8WSPAdmdA==
+  dependencies:
+    jest-diff "^25.2.1"
+    pretty-format "^25.2.1"
+
+"@types/jquery@^3.3.32":
+  version "3.5.5"
+  resolved "http://localhost:4873/@types%2fjquery/-/jquery-3.5.5.tgz#2c63f47c9c8d96693d272f5453602afd8338c903"
+  integrity sha512-6RXU9Xzpc6vxNrS6FPPapN1SxSHgQ336WC6Jj/N8q30OiaBZ00l1GBgeP7usjVZPivSkGUfL1z/WW6TX989M+w==
+  dependencies:
+    "@types/sizzle" "*"
+
+"@types/js-levenshtein@^1.1.0":
+  version "1.1.0"
+  resolved "http://localhost:4873/@types%2fjs-levenshtein/-/js-levenshtein-1.1.0.tgz#9541eec4ad6e3ec5633270a3a2b55d981edc44a9"
+  integrity sha512-14t0v1ICYRtRVcHASzes0v/O+TIeASb8aD55cWF1PidtInhFWSXcmhzhHqGjUWf9SUq1w70cvd1cWKUULubAfQ==
+
+"@types/jsdom@^12.2.4":
+  version "12.2.4"
+  resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-12.2.4.tgz#845cd4d43f95b8406d9b724ec30c03edadcd9528"
+  integrity sha512-q+De3S/Ri6U9uPx89YA1XuC+QIBgndIfvBaaJG0pRT8Oqa75k4Mr7G9CRZjIvlbLGIukO/31DFGFJYlQBmXf/A==
+  dependencies:
+    "@types/node" "*"
+    "@types/tough-cookie" "*"
+    parse5 "^4.0.0"
+
+"@types/json-bigint@^1.0.0":
+  version "1.0.0"
+  resolved "http://localhost:4873/@types%2fjson-bigint/-/json-bigint-1.0.0.tgz#7a4726540cc6fe47cfa54b9b3022b89cf7fe1517"
+  integrity sha512-WW+0cfH3ovFN6ROV+p/Xfw36dT6s16hbXBYIG49PYw6+j6e+AkpqYccctgxwyicBmC8CZDBnPhOH94shFhXgHQ==
+
+"@types/json-schema@^7.0.3":
+  version "7.0.4"
+  resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339"
+  integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==
+
+"@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6":
+  version "7.0.6"
+  resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0"
+  integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==
+
+"@types/json5@^0.0.29":
+  version "0.0.29"
+  resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
+  integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
+
+"@types/lodash.get@^4.4.6":
+  version "4.4.6"
+  resolved "https://registry.yarnpkg.com/@types/lodash.get/-/lodash.get-4.4.6.tgz#0c7ac56243dae0f9f09ab6f75b29471e2e777240"
+  integrity sha512-E6zzjR3GtNig8UJG/yodBeJeIOtgPkMgsLjDU3CbgCAPC++vJ0eCMnJhVpRZb/ENqEFlov1+3K9TKtY4UdWKtQ==
+  dependencies:
+    "@types/lodash" "*"
+
+"@types/lodash@*", "@types/lodash@^4.14.146", "@types/lodash@^4.14.149":
+  version "4.14.167"
+  resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.167.tgz#ce7d78553e3c886d4ea643c37ec7edc20f16765e"
+  integrity sha512-w7tQPjARrvdeBkX/Rwg95S592JwxqOjmms3zWQ0XZgSyxSLdzWaYH3vErBhdVS/lRBX7F8aBYcYJYTr5TMGOzw==
+
+"@types/markdown-to-jsx@^6.11.0":
+  version "6.11.3"
+  resolved "http://localhost:4873/@types%2fmarkdown-to-jsx/-/markdown-to-jsx-6.11.3.tgz#cdd1619308fecbc8be7e6a26f3751260249b020e"
+  integrity sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw==
+  dependencies:
+    "@types/react" "*"
+
+"@types/mathjs@^6.0.7":
+  version "6.0.7"
+  resolved "https://registry.yarnpkg.com/@types/mathjs/-/mathjs-6.0.7.tgz#89299b8e0dd369c970ee8f477ba2cd2527c56cd0"
+  integrity sha512-UPpG34wVjlr8uSijJ747q0SmC459t294xm/3Ed8GAnqM/I2K786WgCLQ4BO4lIsM07Gj1UhO7x0n0TSfqO0DNQ==
+  dependencies:
+    decimal.js "^10.0.0"
+
+"@types/mdast@^3.0.0":
+  version "3.0.3"
+  resolved "http://localhost:4873/@types%2fmdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb"
+  integrity sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw==
+  dependencies:
+    "@types/unist" "*"
+
+"@types/micromatch@^4.0.1":
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/@types/micromatch/-/micromatch-4.0.1.tgz#9381449dd659fc3823fd2a4190ceacc985083bc7"
+  integrity sha512-my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw==
+  dependencies:
+    "@types/braces" "*"
+
+"@types/minimatch@*", "@types/minimatch@^3.0.3":
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"
+  integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
+
+"@types/minimist@^1.2.0":
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.1.tgz#283f669ff76d7b8260df8ab7a4262cc83d988256"
+  integrity sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==
+
+"@types/node-fetch@^2.5.4":
+  version "2.5.8"
+  resolved "http://localhost:4873/@types%2fnode-fetch/-/node-fetch-2.5.8.tgz#e199c835d234c7eb0846f6618012e558544ee2fb"
+  integrity sha512-fbjI6ja0N5ZA8TV53RUqzsKNkl9fv8Oj3T7zxW7FGv1GSH7gwJaNF8dzCjrqKaxKeUpTz4yT1DaJFq/omNpGfw==
+  dependencies:
+    "@types/node" "*"
+    form-data "^3.0.0"
+
+"@types/node@*", "@types/node@>= 8":
+  version "13.9.8"
+  resolved "https://registry.yarnpkg.com/@types/node/-/node-13.9.8.tgz#09976420fc80a7a00bf40680c63815ed8c7616f4"
+  integrity sha512-1WgO8hsyHynlx7nhP1kr0OFzsgKz5XDQL+Lfc3b1Q3qIln/n8cKD4m09NJ0+P1Rq7Zgnc7N0+SsMnoD1rEb0kA==
+
+"@types/normalize-package-data@^2.4.0":
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
+  integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
+
+"@types/npmlog@^4.1.2":
+  version "4.1.2"
+  resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.2.tgz#d070fe6a6b78755d1092a3dc492d34c3d8f871c4"
+  integrity sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==
+
+"@types/overlayscrollbars@^1.9.0":
+  version "1.12.0"
+  resolved "https://registry.yarnpkg.com/@types/overlayscrollbars/-/overlayscrollbars-1.12.0.tgz#98456caceca8ad73bd5bb572632a585074e70764"
+  integrity sha512-h/pScHNKi4mb+TrJGDon8Yb06ujFG0mSg12wIO0sWMUF3dQIe2ExRRdNRviaNt9IjxIiOfnRr7FsQAdHwK4sMg==
+
+"@types/parse-json@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
+  integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
+
+"@types/parse5@^5.0.0":
+  version "5.0.3"
+  resolved "http://localhost:4873/@types%2fparse5/-/parse5-5.0.3.tgz#e7b5aebbac150f8b5fdd4a46e7f0bd8e65e19109"
+  integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==
+
+"@types/prettier@^1.19.0":
+  version "1.19.1"
+  resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.1.tgz#33509849f8e679e4add158959fdb086440e9553f"
+  integrity sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==
+
+"@types/prettier@^2.0.0":
+  version "2.1.5"
+  resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.1.5.tgz#b6ab3bba29e16b821d84e09ecfaded462b816b00"
+  integrity sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ==
+
+"@types/prop-types@*":
+  version "15.7.3"
+  resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"
+  integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==
+
+"@types/q@^1.5.1":
+  version "1.5.2"
+  resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
+  integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
+
+"@types/qs@^6.9.0":
+  version "6.9.5"
+  resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.5.tgz#434711bdd49eb5ee69d90c1d67c354a9a8ecb18b"
+  integrity sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ==
+
+"@types/reach__router@^1.2.3":
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.2.tgz#06541355ed57ca555ce235de0c6ee2b676292a85"
+  integrity sha512-OTPBURw7aF3q+ejjcBQKjEFsiv4hr0oEFfIgUfdaSQfvnNSSu3I/Cfy1JvoDaTnbt6ZByiFWC5Y9AMhf4x0WOA==
+  dependencies:
+    "@types/history" "*"
+    "@types/react" "*"
+
+"@types/reach__router@^1.3.7":
+  version "1.3.7"
+  resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.7.tgz#de8ab374259ae7f7499fc1373b9697a5f3cd6428"
+  integrity sha512-cyBEb8Ef3SJNH5NYEIDGPoMMmYUxROatuxbICusVRQIqZUB85UCt6R2Ok60tKS/TABJsJYaHyNTW3kqbpxlMjg==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-bootstrap@^0.32.22":
+  version "0.32.25"
+  resolved "https://registry.yarnpkg.com/@types/react-bootstrap/-/react-bootstrap-0.32.25.tgz#fdea798f9a2623a161ed61939898078ae841df1e"
+  integrity sha512-VTa6viz5L+uPblEiF2pZz/n425cC49hrjLTsiLySxf7fw+UkchkjpskrsOHRvC6cCgCAG9futRWvOOjD1IBQqQ==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-color@^3.0.1":
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/@types/react-color/-/react-color-3.0.1.tgz#5433e2f503ea0e0831cbc6fd0c20f8157d93add0"
+  integrity sha512-J6mYm43Sid9y+OjZ7NDfJ2VVkeeuTPNVImNFITgQNXodHteKfl/t/5pAR5Z9buodZ2tCctsZjgiMlQOpfntakw==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-dom@*":
+  version "16.9.8"
+  resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.8.tgz#fe4c1e11dfc67155733dfa6aa65108b4971cb423"
+  integrity sha512-ykkPQ+5nFknnlU6lDd947WbQ6TE3NNzbQAkInC2EKY1qeYdTKp7onFusmYZb+ityzx2YviqT6BXSu+LyWWJwcA==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-dom@^16.9.8":
+  version "16.9.10"
+  resolved "http://localhost:4873/@types%2freact-dom/-/react-dom-16.9.10.tgz#4485b0bec3d41f856181b717f45fd7831101156f"
+  integrity sha512-ItatOrnXDMAYpv6G8UCk2VhbYVTjZT9aorLtA/OzDN9XJ2GKcfam68jutoAcILdRjsRUO8qb7AmyObF77Q8QFw==
+  dependencies:
+    "@types/react" "^16"
+
+"@types/react-gravatar@^2.6.8":
+  version "2.6.8"
+  resolved "http://localhost:4873/@types%2freact-gravatar/-/react-gravatar-2.6.8.tgz#968eb0e59591a31e5a2906dca19bb4e7f2f9c515"
+  integrity sha512-VMk0bF0w72l+opBm+EqLs0JqUG+hPowMBWCVGrbTwUWm/oDncvwNrf7P/ImwYwkTCKiLnU8Rc+/lyhehaIE/Rw==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-json-tree@^0.6.11":
+  version "0.6.11"
+  resolved "http://localhost:4873/@types%2freact-json-tree/-/react-json-tree-0.6.11.tgz#644eee18b1c772d57afe584b8098af71d847a15a"
+  integrity sha512-HP0Sf0ZHjCi1FHLJxh/pLaxaevEW6ILlV2C5Dn3EZFTkLjWkv+EVf/l/zvtmoU9ZwuO/3TKVeWK/700UDxunTw==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-loadable@^5.5.3":
+  version "5.5.3"
+  resolved "https://registry.yarnpkg.com/@types/react-loadable/-/react-loadable-5.5.3.tgz#65d50a6f9f7ff62513010bd6a460ed60ba58ca7d"
+  integrity sha512-BRzQhbMo5CjfxFU2tmmBNh16QqKUwNiaX0vflCwIVPVG8g/pCOyJ3rOdSPo4m+TPS7C9q/TupaqYXXTMtFoyng==
+  dependencies:
+    "@types/react" "*"
+    "@types/webpack" "*"
+
+"@types/react-loadable@^5.5.4":
+  version "5.5.4"
+  resolved "http://localhost:4873/@types%2freact-loadable/-/react-loadable-5.5.4.tgz#9bfb31e1299e9a3b23ea6cae437fa8813afde544"
+  integrity sha512-otKcjNCfVUzdBMdwOqFITTmBruIXw6GeoZitTBvJ6BMrif8Utu2JLy42GWukNnYI7ewJdncUCooz5Y/1dBz4+w==
+  dependencies:
+    "@types/react" "*"
+    "@types/webpack" "*"
+
+"@types/react-redux@^7.1.10":
+  version "7.1.16"
+  resolved "http://localhost:4873/@types%2freact-redux/-/react-redux-7.1.16.tgz#0fbd04c2500c12105494c83d4a3e45c084e3cb21"
+  integrity sha512-f/FKzIrZwZk7YEO9E1yoxIuDNRiDducxkFlkw/GNMGEnK9n4K8wJzlJBghpSuOVDgEUHoDkDF7Gi9lHNQR4siw==
+  dependencies:
+    "@types/hoist-non-react-statics" "^3.3.0"
+    "@types/react" "*"
+    hoist-non-react-statics "^3.3.0"
+    redux "^4.0.0"
+
+"@types/react-resizable@^1.7.2":
+  version "1.7.2"
+  resolved "https://registry.yarnpkg.com/@types/react-resizable/-/react-resizable-1.7.2.tgz#ff7f6d67394abb6f64207fcc574ffccb932d8a97"
+  integrity sha512-6c6L94+VOksr9838LDrlYeucic2+0qkGnwolGE77YJztYHCWSucQV0e9+Qyl+uHpJTBRS95A5JESBg5NgCAC3A==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-router-dom@^5.1.5":
+  version "5.1.7"
+  resolved "http://localhost:4873/@types%2freact-router-dom/-/react-router-dom-5.1.7.tgz#a126d9ea76079ffbbdb0d9225073eb5797ab7271"
+  integrity sha512-D5mHD6TbdV/DNHYsnwBTv+y73ei+mMjrkGrla86HthE4/PVvL1J94Bu3qABU+COXzpL23T1EZapVVpwHuBXiUg==
+  dependencies:
+    "@types/history" "*"
+    "@types/react" "*"
+    "@types/react-router" "*"
+
+"@types/react-router@*":
+  version "5.1.11"
+  resolved "http://localhost:4873/@types%2freact-router/-/react-router-5.1.11.tgz#b01ce4cb21bf7d6b32edc862fc1e2c0088044b5b"
+  integrity sha512-ofHbZMlp0Y2baOHgsWBQ4K3AttxY61bDMkwTiBOkPg7U6C/3UwwB5WaIx28JmSVi/eX3uFEMRo61BV22fDQIvg==
+  dependencies:
+    "@types/history" "*"
+    "@types/react" "*"
+
+"@types/react-select@^3.0.19":
+  version "3.1.2"
+  resolved "http://localhost:4873/@types%2freact-select/-/react-select-3.1.2.tgz#38627df4b49be9b28f800ed72b35d830369a624b"
+  integrity sha512-ygvR/2FL87R2OLObEWFootYzkvm67LRA+URYEAcBuvKk7IXmdsnIwSGm60cVXGaqkJQHozb2Cy1t94tCYb6rJA==
+  dependencies:
+    "@types/react" "*"
+    "@types/react-dom" "*"
+    "@types/react-transition-group" "*"
+
+"@types/react-sticky@^6.0.3":
+  version "6.0.3"
+  resolved "http://localhost:4873/@types%2freact-sticky/-/react-sticky-6.0.3.tgz#94d16a951467b29ad44c224081d9503e7e590434"
+  integrity sha512-tW0Y1hTr2Tao4yX58iKl0i7BaqrdObGXAzsyzd8VGVrWVEgbQuV6P6QKVd/kFC7FroXyelftiVNJ09pnfkcjww==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-syntax-highlighter@11.0.4":
+  version "11.0.4"
+  resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.4.tgz#d86d17697db62f98046874f62fdb3e53a0bbc4cd"
+  integrity sha512-9GfTo3a0PHwQeTVoqs0g5bS28KkSY48pp5659wA+Dp4MqceDEa8EHBqrllJvvtyusszyJhViUEap0FDvlk/9Zg==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-table@^7.0.19":
+  version "7.0.19"
+  resolved "https://registry.yarnpkg.com/@types/react-table/-/react-table-7.0.19.tgz#a70603ac0ffdeaf399fc6919aacb32fc42e9dd40"
+  integrity sha512-RYyEY7Yry6F2JsKhHeFsGdzuFF1hMqBStQrrazDzpBl4m/ECGHJxFVQjLBRzRwK+47ZKNPm79f7qEpHirbiCLA==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-test-renderer@^16.9.2":
+  version "16.9.2"
+  resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-16.9.2.tgz#e1c408831e8183e5ad748fdece02214a7c2ab6c5"
+  integrity sha512-4eJr1JFLIAlWhzDkBCkhrOIWOvOxcCAfQh+jiKg7l/nNZcCIL2MHl2dZhogIFKyHzedVWHaVP1Yydq/Ruu4agw==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-textarea-autosize@^4.3.3":
+  version "4.3.5"
+  resolved "https://registry.yarnpkg.com/@types/react-textarea-autosize/-/react-textarea-autosize-4.3.5.tgz#6c4d2753fa1864c98c0b2b517f67bb1f6e4c46de"
+  integrity sha512-PiDL83kPMTolyZAWW3lyzO6ktooTb9tFTntVy7CA83/qFLWKLJ5bLeRboy6J6j3b1e8h2Eec6gBTEOOJRjV14A==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-transition-group@*":
+  version "4.4.0"
+  resolved "http://localhost:4873/@types%2freact-transition-group/-/react-transition-group-4.4.0.tgz#882839db465df1320e4753e6e9f70ca7e9b4d46d"
+  integrity sha512-/QfLHGpu+2fQOqQaXh8MG9q03bFENooTb/it4jr5kKaZlDQfWvjqWZg48AwzPVMBHlRuTRAY7hRHCEOXz5kV6w==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-ultimate-pagination@^1.2.0":
+  version "1.2.0"
+  resolved "http://localhost:4873/@types%2freact-ultimate-pagination/-/react-ultimate-pagination-1.2.0.tgz#a960d94b97430beae65697e02d78b750fd613bc1"
+  integrity sha512-xFyJn6Jl26Q0bi+QTnLo4W5tCDKOGNU5Gn9iCg+Y6J+VqtuKuJ1wcP1Ax+nXAu5HF9qTgApI/hRn7ceCDC6TAA==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-virtualized@^9.21.10":
+  version "9.21.11"
+  resolved "http://localhost:4873/@types%2freact-virtualized/-/react-virtualized-9.21.11.tgz#8eb60ed12ef0b2625769819f9fd10ad4bb1bdce0"
+  integrity sha512-ngNe2AY/2CHuZQstOS0Jo5jnSjeyKTdSgqrXCQEltRMXLp9rwPUpJdgkoWzES6wn427Z8zo8dkBN8Sx7hlRmig==
+  dependencies:
+    "@types/prop-types" "*"
+    "@types/react" "*"
+
+"@types/react-window@^1.8.2":
+  version "1.8.2"
+  resolved "http://localhost:4873/@types%2freact-window/-/react-window-1.8.2.tgz#a5a6b2762ce73ffaab7911ee1397cf645f2459fe"
+  integrity sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F/y6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react@*", "@types/react@^16.14.2", "@types/react@^16.9.11":
+  version "16.14.2"
+  resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.2.tgz#85dcc0947d0645349923c04ccef6018a1ab7538c"
+  integrity sha512-BzzcAlyDxXl2nANlabtT4thtvbbnhee8hMmH/CcJrISDBVcJS1iOsP1f0OAgSdGE0MsY9tqcrb9YoZcOFv9dbQ==
+  dependencies:
+    "@types/prop-types" "*"
+    csstype "^3.0.2"
+
+"@types/react@^16", "@types/react@^16.9.43":
+  version "16.14.3"
+  resolved "http://localhost:4873/@types%2freact/-/react-16.14.3.tgz#f5210f5deecf35d8794845549c93c2c3ad63aa9c"
+  integrity sha512-zPrXn03hmPYqh9DznqSFQsoRtrQ4aHgnZDO+hMGvsE/PORvDTdJCHQ6XvJV31ic+0LzF73huPFXUb++W6Kri0Q==
+  dependencies:
+    "@types/prop-types" "*"
+    csstype "^3.0.2"
+
+"@types/redux-localstorage@^1.0.8":
+  version "1.0.8"
+  resolved "http://localhost:4873/@types%2fredux-localstorage/-/redux-localstorage-1.0.8.tgz#bcbf07d1451d60b2e874a47eebc02d780bce7c0d"
+  integrity sha512-pt+w3Y2K4Xwx79exTFZO356buBCgCM6NnyMv/EmASWb03a81g/EMEhNgH6w9dOnhTs1Clnmf2ykaia0FWXjsbQ==
+  dependencies:
+    redux "^3.6.0"
+
+"@types/redux-mock-store@^1.0.2":
+  version "1.0.2"
+  resolved "http://localhost:4873/@types%2fredux-mock-store/-/redux-mock-store-1.0.2.tgz#c27d5deadfb29d8514bdb0fc2cadae6feea1922d"
+  integrity sha512-6LBtAQBN34i7SI5X+Qs4zpTEZO1tTDZ6sZ9fzFjYwTl3nLQXaBtwYdoV44CzNnyKu438xJ1lSIYyw0YMvunESw==
+  dependencies:
+    redux "^4.0.5"
+
+"@types/resize-observer-browser@^0.1.5":
+  version "0.1.5"
+  resolved "http://localhost:4873/@types%2fresize-observer-browser/-/resize-observer-browser-0.1.5.tgz#36d897708172ac2380cd486da7a3daf1161c1e23"
+  integrity sha512-8k/67Z95Goa6Lznuykxkfhq9YU3l1Qe6LNZmwde1u7802a3x8v44oq0j91DICclxatTr0rNnhXx7+VTIetSrSQ==
+
+"@types/rison@0.0.6":
+  version "0.0.6"
+  resolved "https://registry.yarnpkg.com/@types/rison/-/rison-0.0.6.tgz#405605f63d4fe0ec0d66b2dd7eaf51a99a51144e"
+  integrity sha512-mE3eRK0fpTN/GnNBOIg2tGq2cFhchQXF6fCbrLxus75TgnoOECbdHikr948FGO/UAml7/ZhLMa5FbGkF5PKvmw==
+
+"@types/seedrandom@^2.4.28":
+  version "2.4.28"
+  resolved "https://registry.yarnpkg.com/@types/seedrandom/-/seedrandom-2.4.28.tgz#9ce8fa048c1e8c85cb71d7fe4d704e000226036f"
+  integrity sha512-SMA+fUwULwK7sd/ZJicUztiPs8F1yCPwF3O23Z9uQ32ME5Ha0NmDK9+QTsYE4O2tHXChzXomSWWeIhCnoN1LqA==
+
+"@types/shortid@^0.0.29":
+  version "0.0.29"
+  resolved "https://registry.yarnpkg.com/@types/shortid/-/shortid-0.0.29.tgz#8093ee0416a6e2bf2aa6338109114b3fbffa0e9b"
+  integrity sha1-gJPuBBam4r8qpjOBCRFLP7/6Dps=
+
+"@types/sinon@^9.0.5":
+  version "9.0.10"
+  resolved "http://localhost:4873/@types%2fsinon/-/sinon-9.0.10.tgz#7fb9bcb6794262482859cab66d59132fca18fcf7"
+  integrity sha512-/faDC0erR06wMdybwI/uR8wEKV/E83T0k4sepIpB7gXuy2gzx2xiOjmztq6a2Y6rIGJ04D+6UU0VBmWy+4HEMA==
+  dependencies:
+    "@types/sinonjs__fake-timers" "*"
+
+"@types/sinonjs__fake-timers@*":
+  version "6.0.2"
+  resolved "http://localhost:4873/@types%2fsinonjs__fake-timers/-/sinonjs__fake-timers-6.0.2.tgz#3a84cf5ec3249439015e14049bd3161419bf9eae"
+  integrity sha512-dIPoZ3g5gcx9zZEszaxLSVTvMReD3xxyyDnQUjA6IYDG9Ba2AV0otMPs+77sG9ojB4Qr2N2Vk5RnKeuA0X/0bg==
+
+"@types/sizzle@*":
+  version "2.3.2"
+  resolved "http://localhost:4873/@types%2fsizzle/-/sizzle-2.3.2.tgz#a811b8c18e2babab7d542b3365887ae2e4d9de47"
+  integrity sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==
+
+"@types/source-list-map@*":
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9"
+  integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==
+
+"@types/stack-utils@^1.0.1":
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
+  integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==
+
+"@types/stack-utils@^2.0.0":
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.0.tgz#7036640b4e21cc2f259ae826ce843d277dad8cff"
+  integrity sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==
+
+"@types/storybook__react@5.2.1":
+  version "5.2.1"
+  resolved "https://registry.yarnpkg.com/@types/storybook__react/-/storybook__react-5.2.1.tgz#b5fd1612f2e5846b2f441725ea946bafd7ab9edb"
+  integrity sha512-p4QGO+VjEO3YxyWVHpPylNheA0JhStzoCg6RBTmdobrC0ZqLPEIIWu0pFkHlNkmGIiEKW2yDGFJooBe8M4Df0Q==
+  dependencies:
+    "@storybook/react" "*"
+
+"@types/tapable@*", "@types/tapable@^1.0.5":
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.5.tgz#9adbc12950582aa65ead76bffdf39fe0c27a3c02"
+  integrity sha512-/gG2M/Imw7cQFp8PGvz/SwocNrmKFjFsm5Pb8HdbHkZ1K8pmuPzOX4VeVoiEecFCVf4CsN1r3/BRvx+6sNqwtQ==
+
+"@types/testing-library__jest-dom@^5.9.1":
+  version "5.9.5"
+  resolved "http://localhost:4873/@types%2ftesting-library__jest-dom/-/testing-library__jest-dom-5.9.5.tgz#5bf25c91ad2d7b38f264b12275e5c92a66d849b0"
+  integrity sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==
+  dependencies:
+    "@types/jest" "*"
+
+"@types/topojson-client@^3.0.0":
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/@types/topojson-client/-/topojson-client-3.0.0.tgz#2517fae5abbdd3052eb191747c7d0bc268d69918"
+  integrity sha512-HZH6E8XMhjkDEkkpe3HuIg95COuvjdnyy0EKrh8rAi1f6o/V6P3ly1kGyU2E8bpAffXDd2r+Rk5ceMX4XkqHnA==
+  dependencies:
+    "@types/geojson" "*"
+    "@types/topojson-specification" "*"
+
+"@types/topojson-specification@*", "@types/topojson-specification@^1.0.0":
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/@types/topojson-specification/-/topojson-specification-1.0.1.tgz#a80cb294290b79f2d674d3f5938c544ed2bd9d80"
+  integrity sha512-ZZYZUgkmUls9Uhxx2WZNt9f/h2+H3abUUjOVmq+AaaDFckC5oAwd+MDp95kBirk+XCXrYj0hfpI6DSUiJMrpYQ==
+  dependencies:
+    "@types/geojson" "*"
+
+"@types/tough-cookie@*":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.0.tgz#fef1904e4668b6e5ecee60c52cc6a078ffa6697d"
+  integrity sha512-I99sngh224D0M7XgW1s120zxCt3VYQ3IQsuw3P3jbq5GG4yc79+ZjyKznyOGIQrflfylLgcfekeZW/vk0yng6A==
+
+"@types/uglify-js@*":
+  version "3.0.5"
+  resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.0.5.tgz#2c70d5c68f6e002e3b2e4f849adc5f162546f633"
+  integrity sha512-L7EbSkhSaWBpkl+PZAEAqZTqtTeIsq7s/oX/q0LNnxxJoRVKQE0T81XDVyaxjiiKQwiV2vhVeYRqxdRNqGOGJw==
+  dependencies:
+    source-map "^0.6.1"
+
+"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3":
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e"
+  integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==
+
+"@types/webpack-env@^1.15.0":
+  version "1.15.1"
+  resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.15.1.tgz#c8e84705e08eed430b5e15b39c65b0944e4d1422"
+  integrity sha512-eWN5ElDTeBc5lRDh95SqA8x18D0ll2pWudU3uWiyfsRmIZcmUXpEsxPU+7+BsdCrO2vfLRC629u/MmjbmF+2tA==
+
+"@types/webpack-env@^1.15.3":
+  version "1.16.0"
+  resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.16.0.tgz#8c0a9435dfa7b3b1be76562f3070efb3f92637b4"
+  integrity sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==
+
+"@types/webpack-sources@*":
+  version "0.1.7"
+  resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-0.1.7.tgz#0a330a9456113410c74a5d64180af0cbca007141"
+  integrity sha512-XyaHrJILjK1VHVC4aVlKsdNN5KBTwufMb43cQs+flGxtPAf/1Qwl8+Q0tp5BwEGaI8D6XT1L+9bSWXckgkjTLw==
+  dependencies:
+    "@types/node" "*"
+    "@types/source-list-map" "*"
+    source-map "^0.6.1"
+
+"@types/webpack@*":
+  version "4.41.21"
+  resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.21.tgz#cc685b332c33f153bb2f5fc1fa3ac8adeb592dee"
+  integrity sha512-2j9WVnNrr/8PLAB5csW44xzQSJwS26aOnICsP3pSGCEdsu6KYtfQ6QJsVUKHWRnm1bL7HziJsfh5fHqth87yKA==
+  dependencies:
+    "@types/anymatch" "*"
+    "@types/node" "*"
+    "@types/tapable" "*"
+    "@types/uglify-js" "*"
+    "@types/webpack-sources" "*"
+    source-map "^0.6.0"
+
+"@types/webpack@^4.4.31":
+  version "4.41.26"
+  resolved "http://localhost:4873/@types%2fwebpack/-/webpack-4.41.26.tgz#27a30d7d531e16489f9c7607c747be6bc1a459ef"
+  integrity sha512-7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA==
+  dependencies:
+    "@types/anymatch" "*"
+    "@types/node" "*"
+    "@types/tapable" "*"
+    "@types/uglify-js" "*"
+    "@types/webpack-sources" "*"
+    source-map "^0.6.0"
+
+"@types/webpack@^4.41.13":
+  version "4.41.25"
+  resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.25.tgz#4d3b5aecc4e44117b376280fbfd2dc36697968c4"
+  integrity sha512-cr6kZ+4m9lp86ytQc1jPOJXgINQyz3kLLunZ57jznW+WIAL0JqZbGubQk4GlD42MuQL5JGOABrxdpqqWeovlVQ==
+  dependencies:
+    "@types/anymatch" "*"
+    "@types/node" "*"
+    "@types/tapable" "*"
+    "@types/uglify-js" "*"
+    "@types/webpack-sources" "*"
+    source-map "^0.6.0"
+
+"@types/webpack@^4.41.8":
+  version "4.41.10"
+  resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.10.tgz#2e1f6b3508a249854efe3dcc7690905ac5ee10be"
+  integrity sha512-vIy0qaq8AjOjZLuFPqpo7nAJzcoVXMdw3mvpNN07Uvdy0p1IpJeLNBe3obdRP7FX2jIusDE7z1pZa0A6qYUgnA==
+  dependencies:
+    "@types/anymatch" "*"
+    "@types/node" "*"
+    "@types/tapable" "*"
+    "@types/uglify-js" "*"
+    "@types/webpack-sources" "*"
+    source-map "^0.6.0"
+
+"@types/yargs-parser@*", "@types/yargs-parser@^15.0.0":
+  version "15.0.0"
+  resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d"
+  integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==
+
+"@types/yargs@12 - 15":
+  version "15.0.13"
+  resolved "http://localhost:4873/@types%2fyargs/-/yargs-15.0.13.tgz#34f7fec8b389d7f3c1fd08026a5763e072d3c6dc"
+  integrity sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==
+  dependencies:
+    "@types/yargs-parser" "*"
+
+"@types/yargs@^13.0.0":
+  version "13.0.11"
+  resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.11.tgz#def2f0c93e4bdf2c61d7e34899b17e34be28d3b1"
+  integrity sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==
+  dependencies:
+    "@types/yargs-parser" "*"
+
+"@types/yargs@^15.0.0", "@types/yargs@^15.0.4":
+  version "15.0.4"
+  resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.4.tgz#7e5d0f8ca25e9d5849f2ea443cf7c402decd8299"
+  integrity sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg==
+  dependencies:
+    "@types/yargs-parser" "*"
+
+"@typescript-eslint/eslint-plugin@^4.1.0":
+  version "4.9.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.9.0.tgz#8fde15743413661fdc086c9f1f5d74a80b856113"
+  integrity sha512-WrVzGMzzCrgrpnQMQm4Tnf+dk+wdl/YbgIgd5hKGa2P+lnJ2MON+nQnbwgbxtN9QDLi8HO+JAq0/krMnjQK6Cw==
+  dependencies:
+    "@typescript-eslint/experimental-utils" "4.9.0"
+    "@typescript-eslint/scope-manager" "4.9.0"
+    debug "^4.1.1"
+    functional-red-black-tree "^1.0.1"
+    regexpp "^3.0.0"
+    semver "^7.3.2"
+    tsutils "^3.17.1"
+
+"@typescript-eslint/experimental-utils@4.9.0":
+  version "4.9.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.9.0.tgz#23a296b85d243afba24e75a43fd55aceda5141f0"
+  integrity sha512-0p8GnDWB3R2oGhmRXlEnCvYOtaBCijtA5uBfH5GxQKsukdSQyI4opC4NGTUb88CagsoNQ4rb/hId2JuMbzWKFQ==
+  dependencies:
+    "@types/json-schema" "^7.0.3"
+    "@typescript-eslint/scope-manager" "4.9.0"
+    "@typescript-eslint/types" "4.9.0"
+    "@typescript-eslint/typescript-estree" "4.9.0"
+    eslint-scope "^5.0.0"
+    eslint-utils "^2.0.0"
+
+"@typescript-eslint/experimental-utils@^3.10.1":
+  version "3.10.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz#e179ffc81a80ebcae2ea04e0332f8b251345a686"
+  integrity sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==
+  dependencies:
+    "@types/json-schema" "^7.0.3"
+    "@typescript-eslint/types" "3.10.1"
+    "@typescript-eslint/typescript-estree" "3.10.1"
+    eslint-scope "^5.0.0"
+    eslint-utils "^2.0.0"
+
+"@typescript-eslint/experimental-utils@^4.0.1":
+  version "4.12.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.12.0.tgz#372838e76db76c9a56959217b768a19f7129546b"
+  integrity sha512-MpXZXUAvHt99c9ScXijx7i061o5HEjXltO+sbYfZAAHxv3XankQkPaNi5myy0Yh0Tyea3Hdq1pi7Vsh0GJb0fA==
+  dependencies:
+    "@types/json-schema" "^7.0.3"
+    "@typescript-eslint/scope-manager" "4.12.0"
+    "@typescript-eslint/types" "4.12.0"
+    "@typescript-eslint/typescript-estree" "4.12.0"
+    eslint-scope "^5.0.0"
+    eslint-utils "^2.0.0"
+
+"@typescript-eslint/parser@^4.1.0":
+  version "4.9.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.9.0.tgz#bb65f1214b5e221604996db53ef77c9d62b09249"
+  integrity sha512-QRSDAV8tGZoQye/ogp28ypb8qpsZPV6FOLD+tbN4ohKUWHD2n/u0Q2tIBnCsGwQCiD94RdtLkcqpdK4vKcLCCw==
+  dependencies:
+    "@typescript-eslint/scope-manager" "4.9.0"
+    "@typescript-eslint/types" "4.9.0"
+    "@typescript-eslint/typescript-estree" "4.9.0"
+    debug "^4.1.1"
+
+"@typescript-eslint/scope-manager@4.12.0":
+  version "4.12.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.12.0.tgz#beeb8beca895a07b10c593185a5612f1085ef279"
+  integrity sha512-QVf9oCSVLte/8jvOsxmgBdOaoe2J0wtEmBr13Yz0rkBNkl5D8bfnf6G4Vhox9qqMIoG7QQoVwd2eG9DM/ge4Qg==
+  dependencies:
+    "@typescript-eslint/types" "4.12.0"
+    "@typescript-eslint/visitor-keys" "4.12.0"
+
+"@typescript-eslint/scope-manager@4.9.0":
+  version "4.9.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.9.0.tgz#5eefe305d6b71d1c85af6587b048426bfd4d3708"
+  integrity sha512-q/81jtmcDtMRE+nfFt5pWqO0R41k46gpVLnuefqVOXl4QV1GdQoBWfk5REcipoJNQH9+F5l+dwa9Li5fbALjzg==
+  dependencies:
+    "@typescript-eslint/types" "4.9.0"
+    "@typescript-eslint/visitor-keys" "4.9.0"
+
+"@typescript-eslint/types@3.10.1":
+  version "3.10.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.10.1.tgz#1d7463fa7c32d8a23ab508a803ca2fe26e758727"
+  integrity sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==
+
+"@typescript-eslint/types@4.12.0":
+  version "4.12.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.12.0.tgz#fb891fe7ccc9ea8b2bbd2780e36da45d0dc055e5"
+  integrity sha512-N2RhGeheVLGtyy+CxRmxdsniB7sMSCfsnbh8K/+RUIXYYq3Ub5+sukRCjVE80QerrUBvuEvs4fDhz5AW/pcL6g==
+
+"@typescript-eslint/types@4.9.0":
+  version "4.9.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.9.0.tgz#3fe8c3632abd07095c7458f7451bd14c85d0033c"
+  integrity sha512-luzLKmowfiM/IoJL/rus1K9iZpSJK6GlOS/1ezKplb7MkORt2dDcfi8g9B0bsF6JoRGhqn0D3Va55b+vredFHA==
+
+"@typescript-eslint/typescript-estree@3.10.1":
+  version "3.10.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz#fd0061cc38add4fad45136d654408569f365b853"
+  integrity sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==
+  dependencies:
+    "@typescript-eslint/types" "3.10.1"
+    "@typescript-eslint/visitor-keys" "3.10.1"
+    debug "^4.1.1"
+    glob "^7.1.6"
+    is-glob "^4.0.1"
+    lodash "^4.17.15"
+    semver "^7.3.2"
+    tsutils "^3.17.1"
+
+"@typescript-eslint/typescript-estree@4.12.0":
+  version "4.12.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.12.0.tgz#3963418c850f564bdab3882ae23795d115d6d32e"
+  integrity sha512-gZkFcmmp/CnzqD2RKMich2/FjBTsYopjiwJCroxqHZIY11IIoN0l5lKqcgoAPKHt33H2mAkSfvzj8i44Jm7F4w==
+  dependencies:
+    "@typescript-eslint/types" "4.12.0"
+    "@typescript-eslint/visitor-keys" "4.12.0"
+    debug "^4.1.1"
+    globby "^11.0.1"
+    is-glob "^4.0.1"
+    lodash "^4.17.15"
+    semver "^7.3.2"
+    tsutils "^3.17.1"
+
+"@typescript-eslint/typescript-estree@4.9.0":
+  version "4.9.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.9.0.tgz#38a98df6ee281cfd6164d6f9d91795b37d9e508c"
+  integrity sha512-rmDR++PGrIyQzAtt3pPcmKWLr7MA+u/Cmq9b/rON3//t5WofNR4m/Ybft2vOLj0WtUzjn018ekHjTsnIyBsQug==
+  dependencies:
+    "@typescript-eslint/types" "4.9.0"
+    "@typescript-eslint/visitor-keys" "4.9.0"
+    debug "^4.1.1"
+    globby "^11.0.1"
+    is-glob "^4.0.1"
+    lodash "^4.17.15"
+    semver "^7.3.2"
+    tsutils "^3.17.1"
+
+"@typescript-eslint/visitor-keys@3.10.1":
+  version "3.10.1"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz#cd4274773e3eb63b2e870ac602274487ecd1e931"
+  integrity sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==
+  dependencies:
+    eslint-visitor-keys "^1.1.0"
+
+"@typescript-eslint/visitor-keys@4.12.0":
+  version "4.12.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.12.0.tgz#a470a79be6958075fa91c725371a83baf428a67a"
+  integrity sha512-hVpsLARbDh4B9TKYz5cLbcdMIOAoBYgFPCSP9FFS/liSF+b33gVNq8JHY3QGhHNVz85hObvL7BEYLlgx553WCw==
+  dependencies:
+    "@typescript-eslint/types" "4.12.0"
+    eslint-visitor-keys "^2.0.0"
+
+"@typescript-eslint/visitor-keys@4.9.0":
+  version "4.9.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.9.0.tgz#f284e9fac43f2d6d35094ce137473ee321f266c8"
+  integrity sha512-sV45zfdRqQo1A97pOSx3fsjR+3blmwtdCt8LDrXgCX36v4Vmz4KHrhpV6Fo2cRdXmyumxx11AHw0pNJqCNpDyg==
+  dependencies:
+    "@typescript-eslint/types" "4.9.0"
+    eslint-visitor-keys "^2.0.0"
+
+"@vx/axis@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/axis/-/axis-0.0.140.tgz#aad557c281c6cc21c1516977301552c7052e5224"
+  integrity sha1-qtVXwoHGzCHBUWl3MBVSxwUuUiQ=
+  dependencies:
+    "@vx/group" "0.0.140"
+    "@vx/point" "0.0.136"
+    "@vx/shape" "0.0.140"
+    classnames "^2.2.5"
+    prop-types "15.5.10"
+
+"@vx/axis@^0.0.175":
+  version "0.0.175"
+  resolved "https://registry.yarnpkg.com/@vx/axis/-/axis-0.0.175.tgz#312c07b81e8b043876436cab3bd8e90f30a1f7ec"
+  integrity sha512-qVRIHurnbPnRF4p0KQITArOUSF564tWW1pc48giLz+DJGlcJ4H9RfOSTpV6rnnP15xto6pQdQehBgBAvFRmoig==
+  dependencies:
+    "@vx/group" "0.0.170"
+    "@vx/point" "0.0.165"
+    "@vx/shape" "0.0.175"
+    "@vx/text" "0.0.175"
+    classnames "^2.2.5"
+    prop-types "^15.6.0"
+
+"@vx/axis@^0.0.179":
+  version "0.0.179"
+  resolved "https://registry.yarnpkg.com/@vx/axis/-/axis-0.0.179.tgz#c6cf021d59e42d6fc9a08cd9ecbd45c9889c60d3"
+  integrity sha512-FtUcdJxejYn5jgixSgSk9AdA96VwP9sCRATVfGvugEL0gtTKWYDbJEgSgqXfKqpeUdsDdf/JT7NVbLMc1hzrZg==
+  dependencies:
+    "@vx/group" "0.0.170"
+    "@vx/point" "0.0.165"
+    "@vx/shape" "0.0.179"
+    "@vx/text" "0.0.179"
+    classnames "^2.2.5"
+    prop-types "^15.6.0"
+
+"@vx/axis@^0.0.198":
+  version "0.0.198"
+  resolved "https://registry.yarnpkg.com/@vx/axis/-/axis-0.0.198.tgz#a95826cf5e331936045197df1a4fa1b2d374fbcf"
+  integrity sha512-XqHzGOBgkJD8gR1g9F7uOhT4Sjlwpl/H3xLehtDooRmKf3J0hy8C7L5rCgh7n8ARi+vYg+3A1zUo0JBIO5k4PQ==
+  dependencies:
+    "@types/classnames" "^2.2.9"
+    "@types/react" "*"
+    "@vx/group" "0.0.198"
+    "@vx/point" "0.0.198"
+    "@vx/shape" "0.0.198"
+    "@vx/text" "0.0.198"
+    classnames "^2.2.5"
+    prop-types "^15.6.0"
+
+"@vx/bounds@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/bounds/-/bounds-0.0.140.tgz#4ede9766aabb41b791a4fbf4c27fcc19ed83f910"
+  integrity sha1-Tt6XZqq7QbeRpPv0wn/MGe2D+RA=
+  dependencies:
+    prop-types "^15.5.10"
+
+"@vx/bounds@0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/bounds/-/bounds-0.0.165.tgz#75f107a6deb58223c6878db5053382eff3174567"
+  integrity sha512-ZvRb72/4QNs1ZrytZTZxd0hfAb/KKfhsdkcYtIQkmdF6dTsjigMQZ+h2bLvLnbZb/RxyCCoxdiZSGXd+T1c//Q==
+  dependencies:
+    prop-types "^15.5.10"
+
+"@vx/bounds@0.0.199":
+  version "0.0.199"
+  resolved "https://registry.yarnpkg.com/@vx/bounds/-/bounds-0.0.199.tgz#9a57aa5ea59c96d7f2369921ee6d7751d65f731d"
+  integrity sha512-3hq9MmfiSB5ciKTzHhB4/UV77JIIUEd1hDj5EBfLUUOL27wXgM6+RSOB+FxFt3tRJniltp3iZs5Gb75SDecpGw==
+  dependencies:
+    "@types/react" "*"
+    "@types/react-dom" "*"
+    prop-types "^15.5.10"
+
+"@vx/clip-path@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/clip-path/-/clip-path-0.0.140.tgz#b2623d004dd5c3c8a6afe8d060de59df51472d94"
+  integrity sha1-smI9AE3Vw8imr+jQYN5Z31FHLZQ=
+
+"@vx/clip-path@0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/clip-path/-/clip-path-0.0.165.tgz#93cd65cc6a35319c7e403ce7b973ac1c8045b741"
+  integrity sha512-mBCbgguLMVyGvar5FbxqyyY4NQFlnXoSLF0TrhgWYkF/FCXdE1CzBC+Y4iXIJOY0ZTtluqL9XrNdIDpx49AmuA==
+
+"@vx/clip-path@^0.0.197":
+  version "0.0.197"
+  resolved "https://registry.yarnpkg.com/@vx/clip-path/-/clip-path-0.0.197.tgz#9d7e5dc1f4f772352196226165e32fb8df39664b"
+  integrity sha512-uokRTnLXmbjFl0oGDDguWfYYRw4bMjzv8VNRxkENc7IILLz8HSiLH9xpNH4NaAvHtggkvgRR0RlkxvHimr7KDA==
+  dependencies:
+    "@types/react" "*"
+    prop-types "^15.5.10"
+
+"@vx/curve@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/curve/-/curve-0.0.140.tgz#29ef388e8b3718213d66a896d569dc1ebc8edf89"
+  integrity sha1-Ke84jos3GCE9ZqiW1WncHryO34k=
+  dependencies:
+    d3-shape "^1.0.6"
+
+"@vx/curve@0.0.165", "@vx/curve@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/curve/-/curve-0.0.165.tgz#330d1512dceae0af43dd3eb4c85523132030a3a0"
+  integrity sha512-fiQAGrKNGjJbL+eixUckJqIZDWXH/1NtIyyDbSz3J7ksk0QpYr5BgWcNJN76HLNt7wfcLwNzCHeNs4iVYyFGTg==
+  dependencies:
+    d3-shape "^1.0.6"
+
+"@vx/curve@0.0.198":
+  version "0.0.198"
+  resolved "https://registry.yarnpkg.com/@vx/curve/-/curve-0.0.198.tgz#3b9e19d39974507fb1b0e4c2f5fdeb0aaab12078"
+  integrity sha512-ZINtD0t5eLu3bEeaOWZxGXrHK5WCbGoxDdou7yPWD6xg8kpTD4/Vq0adRFNCxS1TZUlUjCJ2KqY2PmewO+Hdcw==
+  dependencies:
+    "@types/d3-shape" "^1.3.1"
+    d3-shape "^1.0.6"
+
+"@vx/event@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/event/-/event-0.0.140.tgz#658ec4de92cd61df40b883296168d4e0824015bf"
+  integrity sha1-ZY7E3pLNYd9AuIMpYWjU4IJAFb8=
+  dependencies:
+    "@vx/point" "0.0.136"
+
+"@vx/event@0.0.197":
+  version "0.0.197"
+  resolved "https://registry.yarnpkg.com/@vx/event/-/event-0.0.197.tgz#4aff7648deae894f13dbfdd07b28d65b15d77d92"
+  integrity sha512-XXoehTuQArxCVCfjr0I2hVKu8uy9wMXNn413LHZV5z7Vsyabut9opsqdMriF/OjX4W6a3pigHqetYS2DP1VAaA==
+  dependencies:
+    "@types/react" "*"
+    "@vx/point" "0.0.197"
+
+"@vx/event@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/event/-/event-0.0.165.tgz#675d89fdfdc08d0c99c36ff1a381ea50fccfba2e"
+  integrity sha512-FsQiw0f3s5DQB6aBQmBcoWk9e4q65LcDobHIyV8qrmpW2QgV2NvQFM1w0Q300ohpRMgJDzGk68HHHQgFOJvApw==
+  dependencies:
+    "@vx/point" "0.0.165"
+
+"@vx/event@^0.0.179":
+  version "0.0.179"
+  resolved "https://registry.yarnpkg.com/@vx/event/-/event-0.0.179.tgz#4474819b5deeb7de313eda4d2f2cc12e2834e38b"
+  integrity sha512-wEwqKsxrzoRV/A9Va/f/CHPmV9asrTH/kW/f88jCydsVXd5W/nrJZiVpozN2Zr1Ernv0i1gW5896FWo/LHRg0A==
+  dependencies:
+    "@vx/point" "0.0.165"
+
+"@vx/event@^0.0.198":
+  version "0.0.198"
+  resolved "https://registry.yarnpkg.com/@vx/event/-/event-0.0.198.tgz#ee6be3ab52ada200d34d09a496dcb579752ac103"
+  integrity sha512-qGozMiT4ZhvaeIbchPpZdlNucmBSYQeMq5uSMEim/HZ0ZbRAggPPTEd+/9G0QvvNJYwzTbGQlmFpAUic+EHKQQ==
+  dependencies:
+    "@types/react" "*"
+    "@vx/point" "0.0.198"
+
+"@vx/glyph@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/glyph/-/glyph-0.0.140.tgz#f8323f82aee22192b675bef25789bbb7d74691ba"
+  integrity sha1-+DI/gq7iIZK2db7yV4m7t9dGkbo=
+  dependencies:
+    "@vx/group" "0.0.140"
+    classnames "^2.2.5"
+    d3-shape "^1.2.0"
+
+"@vx/glyph@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/glyph/-/glyph-0.0.165.tgz#ba6fe31700dae852c60468e00dd732fa7521d1fc"
+  integrity sha512-kccUm40e/VCtayxqvcwc2K2M6oNXO7IafwIfw1RRv6Fj4Iutto9ZpI+PGOf/zPnYVueoLnWBXT/HE7IRS+C2gw==
+  dependencies:
+    "@vx/group" "0.0.165"
+    classnames "^2.2.5"
+    d3-shape "^1.2.0"
+
+"@vx/glyph@^0.0.179":
+  version "0.0.179"
+  resolved "https://registry.yarnpkg.com/@vx/glyph/-/glyph-0.0.179.tgz#5e03b96c9cc37f2417cf05557d758e9e2c8f1009"
+  integrity sha512-RO7adwyG+9gGzjFdfmplrojgWCT+gsOnIFcRgJNJjx41+P6hWdI9X4OpsLx8VVqNhp7g+hxBDZWte8AxTvLQGw==
+  dependencies:
+    "@vx/group" "0.0.170"
+    classnames "^2.2.5"
+    d3-shape "^1.2.0"
+    prop-types "^15.6.2"
+
+"@vx/gradient@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/gradient/-/gradient-0.0.140.tgz#56b421016cbae0dcb00190cfffb9e860a28febf4"
+  integrity sha1-VrQhAWy64NywAZDP/7noYKKP6/Q=
+  dependencies:
+    classnames "^2.2.5"
+    prop-types "^15.5.7"
+
+"@vx/gradient@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/gradient/-/gradient-0.0.165.tgz#0cc0fe873e6acded4943fa274f68601ad5a50a38"
+  integrity sha512-FjRXMTmcy7k0TWsfDzWWXw6T9WXKP+6LS/GRgnguq271pab/P+AdOJThsVxtBgUc8ZOAPbub3/2Gggz9d8tocg==
+  dependencies:
+    classnames "^2.2.5"
+    prop-types "^15.5.7"
+
+"@vx/grid@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/grid/-/grid-0.0.140.tgz#9dfd3071bc5d90d4b457dd55d7f795699233b230"
+  integrity sha1-nf0wcbxdkNS0V91V1/eVaZIzsjA=
+  dependencies:
+    "@vx/group" "0.0.140"
+    "@vx/point" "0.0.136"
+    "@vx/shape" "0.0.140"
+    classnames "^2.2.5"
+
+"@vx/grid@^0.0.180":
+  version "0.0.180"
+  resolved "https://registry.yarnpkg.com/@vx/grid/-/grid-0.0.180.tgz#31f2f73c9055d0ab2bf38f03a0c7dc47b9c12327"
+  integrity sha512-+ugS0c6GbwHr6pFU0znnOG3/zTwRRadvWwj3E4ZOHmKUSz6ZEN6JNo+rD3WSZckYwLis6UivmYfJ5cV6AM4ufg==
+  dependencies:
+    "@vx/group" "0.0.170"
+    "@vx/point" "0.0.165"
+    "@vx/shape" "0.0.179"
+    classnames "^2.2.5"
+    prop-types "^15.6.2"
+
+"@vx/group@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/group/-/group-0.0.140.tgz#cba9b0b3f2f007e5be7346f3c86f73f70e038a23"
+  integrity sha1-y6mws/LwB+W+c0bzyG9z9w4DiiM=
+  dependencies:
+    classnames "^2.2.5"
+
+"@vx/group@0.0.165", "@vx/group@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/group/-/group-0.0.165.tgz#2342523225de94859b5be49c3072dc6bb6795e78"
+  integrity sha512-gi1DSg8AAaVRseyWiq8y4bzyvKiQIXT6vDUYBVRmv2LBcpHocBGaxNiNK0X602RgLG0XmNyRv6qSCWLOaBs3Mg==
+  dependencies:
+    classnames "^2.2.5"
+
+"@vx/group@0.0.170", "@vx/group@^0.0.170":
+  version "0.0.170"
+  resolved "https://registry.yarnpkg.com/@vx/group/-/group-0.0.170.tgz#8b30b3ea07c348fe22253812fe7cb6d4200d725d"
+  integrity sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==
+  dependencies:
+    classnames "^2.2.5"
+
+"@vx/group@0.0.198":
+  version "0.0.198"
+  resolved "https://registry.yarnpkg.com/@vx/group/-/group-0.0.198.tgz#acfd16953a39eac8f9901dcfaaf3936f4b05eb9c"
+  integrity sha512-0PivE+fWZlPkSzFO/is5m4VSSv3pg+sS1yxYAZHbNffUvn472WDWptriHvoUIPQe0lOXhTSrc73UQzew9GtW/g==
+  dependencies:
+    "@types/classnames" "^2.2.9"
+    "@types/react" "*"
+    classnames "^2.2.5"
+    prop-types "^15.6.2"
+
+"@vx/legend@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/legend/-/legend-0.0.140.tgz#4062c27d6bc9c4d607309d77eff12b844727ae99"
+  integrity sha1-QGLCfWvJxNYHMJ137/ErhEcnrpk=
+  dependencies:
+    "@vx/group" "0.0.140"
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/legend@^0.0.198":
+  version "0.0.198"
+  resolved "https://registry.yarnpkg.com/@vx/legend/-/legend-0.0.198.tgz#a21ea754aaf48ce0a4ca114b00ad901e20a14b3a"
+  integrity sha512-3S2/yP6IvkkhUlTj6In5M1OrzY1OaT1D06hRxuiOLAbaXTerhbUGwIjGSNoovQM6JebFlbWnnA5xH1SKgw5GGA==
+  dependencies:
+    "@types/classnames" "^2.2.9"
+    "@types/d3-scale" "^2.1.1"
+    "@types/react" "*"
+    "@vx/group" "0.0.198"
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/pattern@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/pattern/-/pattern-0.0.140.tgz#f49f57c6f13cb5b3baaa5bbec174c5d3aa782da7"
+  integrity sha1-9J9XxvE8tbO6qlu+wXTF06p4Lac=
+  dependencies:
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/pattern@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/pattern/-/pattern-0.0.165.tgz#0d317cb9a13205e35691f702442739ff0256711d"
+  integrity sha512-h5nmfcYlQYYzNhlhqaYUvVnkmGnC0yWv5yU1snjHweGmIHTovV3RAbKgVFAP7kB3i2rbEtC3O8WkJN++cZdLzA==
+  dependencies:
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/pattern@^0.0.179":
+  version "0.0.179"
+  resolved "https://registry.yarnpkg.com/@vx/pattern/-/pattern-0.0.179.tgz#8d4723e9ef41930bfdf723582fb2c7d43a91ce01"
+  integrity sha512-qvJsK07oUnSbuzj9jo7b/1Up13DknIeTlj9FDIhg0UNmz90ikVN2CZIWtdJyc2I1AFDEg0odOqYXzUx9aEBRfg==
+  dependencies:
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/pattern@^0.0.197":
+  version "0.0.197"
+  resolved "https://registry.yarnpkg.com/@vx/pattern/-/pattern-0.0.197.tgz#a9f8ce164ecaad86d2f3a45f2f78fcf78cfe7a96"
+  integrity sha512-1nsFfjSrrnVwZnAHY823Xe6sfStWp7xSs6e9KlSPwz8TvK6U/xLuHgQ2q1hBlUOM5Uyk9Ddr6KvFHLPOecrL8A==
+  dependencies:
+    "@types/classnames" "^2.2.9"
+    "@types/react" "*"
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/point@0.0.136":
+  version "0.0.136"
+  resolved "https://registry.yarnpkg.com/@vx/point/-/point-0.0.136.tgz#93b325b4b95c9d5b96df740f4204017f57396559"
+  integrity sha1-k7MltLlcnVuW33QPQgQBf1c5ZVk=
+
+"@vx/point@0.0.165", "@vx/point@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/point/-/point-0.0.165.tgz#7ebde5da3d86954fe31a56f923f31550f0b4b867"
+  integrity sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA==
+
+"@vx/point@0.0.197":
+  version "0.0.197"
+  resolved "https://registry.yarnpkg.com/@vx/point/-/point-0.0.197.tgz#3685097b213d7abc301c87294931e96148821599"
+  integrity sha512-1CO2MM6HdAqE11gUk56uufBEkgbChdvzvePCsRCbA2a4KyvfLHxEICjycF+RRjRU5rlpMN97uxEcIReRI+WmIQ==
+
+"@vx/point@0.0.198":
+  version "0.0.198"
+  resolved "https://registry.yarnpkg.com/@vx/point/-/point-0.0.198.tgz#9c55f085e26fa6a921a9313c4c3b40cf947f8104"
+  integrity sha512-oFlw8uBLf4JDX7OJc+7eQXcnlLszdQgEs531u0t6HNpARQY/jTeeMLVUlp8sNF0XBOC+iVHU8Qe8TJdz/ONBAA==
+
+"@vx/responsive@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/responsive/-/responsive-0.0.140.tgz#c73ec68b9e89a181605f1ac9ecc09f35216779a8"
+  integrity sha1-xz7Gi56JoYFgXxrJ7MCfNSFneag=
+  dependencies:
+    lodash "^4.0.8"
+
+"@vx/responsive@^0.0.192":
+  version "0.0.192"
+  resolved "https://registry.yarnpkg.com/@vx/responsive/-/responsive-0.0.192.tgz#721d032bec38b9e3ff5fde2e4d5d8ee5a81cc517"
+  integrity sha512-HaXVwhSJXUfRbzRV+glxsX0ki2Hi1mdpz42iuGArVQgDPJEmBHjkXyoiXU8U6v66M7FAH+OyKgtc5j2bfhyYzA==
+  dependencies:
+    lodash "^4.17.10"
+    prop-types "^15.6.1"
+    resize-observer-polyfill "1.5.0"
+
+"@vx/responsive@^0.0.195":
+  version "0.0.195"
+  resolved "http://localhost:4873/@vx%2fresponsive/-/responsive-0.0.195.tgz#8c75d86a28801c5f1970d43433a01e101454d444"
+  integrity sha512-3zjkjqg8V3Kr1moSI7EAzlW7MLR87p2CXc+qh0zZg/zLrc3C89JnxyMYFfS7jM4PlHr26n634YddQDVydwARBA==
+  dependencies:
+    "@types/lodash" "^4.14.146"
+    "@types/react" "*"
+    lodash "^4.17.10"
+    prop-types "^15.6.1"
+    resize-observer-polyfill "1.5.1"
+
+"@vx/responsive@^0.0.199":
+  version "0.0.199"
+  resolved "https://registry.yarnpkg.com/@vx/responsive/-/responsive-0.0.199.tgz#6f92de0268b36e2f52e1283feb63a1d470761c68"
+  integrity sha512-ONrmLUAG+8wzD3cn/EmsuZh6JHeyejqup3ZsV25t04VaVJAVQAJukAfNdH8YiwSJu0zSo+txkBTfrnOmFyQLOw==
+  dependencies:
+    "@types/lodash" "^4.14.146"
+    "@types/react" "*"
+    lodash "^4.17.10"
+    prop-types "^15.6.1"
+    resize-observer-polyfill "1.5.1"
+
+"@vx/scale@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/scale/-/scale-0.0.140.tgz#1eb087d11d0000b250c2cdc4061b9e2212edb10d"
+  integrity sha1-HrCH0R0AALJQws3EBhueIhLtsQ0=
+  dependencies:
+    d3-scale "^1.0.5"
+
+"@vx/scale@0.0.165", "@vx/scale@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/scale/-/scale-0.0.165.tgz#8575880c48296a80c0e9459057f826e8f903bc07"
+  integrity sha512-5jSgXJDU6J/KWIyCbpjHqysPCddp7tG3LbTV7UmtB1Qleb4m4slShTVSE7+EKU+zgiQPDGm0+E2ht4cet+7F7A==
+  dependencies:
+    d3-scale "^2.0.0"
+
+"@vx/scale@^0.0.179":
+  version "0.0.179"
+  resolved "https://registry.yarnpkg.com/@vx/scale/-/scale-0.0.179.tgz#c7f65974ba80ccb7c90a69f639b982f9df9ea7af"
+  integrity sha512-j40WiGu4VcHZdaSQAl12ig2w5c4Q9EVn7qqYf9PX7uoS5PbxRYNnHeKZ7e5Bf8O6b57iv5jFTfUV7HkpNF4vvg==
+  dependencies:
+    d3-scale "^2.0.0"
+
+"@vx/scale@^0.0.197":
+  version "0.0.197"
+  resolved "https://registry.yarnpkg.com/@vx/scale/-/scale-0.0.197.tgz#7a6acb2ad28b17d640f325d0d3fc47ab0e434db1"
+  integrity sha512-FF0POm9rh66I3Om5DsuxynwWU+Q645aTF47vgP2dVDeOOq3Oet7CZzmXLDh3W6nVcxvzq1UdPwu94dto2PUfhg==
+  dependencies:
+    "@types/d3-scale" "^2.1.1"
+    d3-scale "^2.2.2"
+
+"@vx/shape@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/shape/-/shape-0.0.140.tgz#6a282d5fdf3a5752b6e938bb3debe983e89ff6d3"
+  integrity sha1-aigtX986V1K26Ti7Pevpg+if9tM=
+  dependencies:
+    "@vx/curve" "0.0.140"
+    "@vx/group" "0.0.140"
+    "@vx/point" "0.0.136"
+    classnames "^2.2.5"
+    d3-shape "^1.2.0"
+    prop-types "^15.5.10"
+
+"@vx/shape@0.0.170":
+  version "0.0.170"
+  resolved "https://registry.yarnpkg.com/@vx/shape/-/shape-0.0.170.tgz#55cf5968f7a6465484aac1a5541275b4813bb9a2"
+  integrity sha512-rm8oVRP0ejgwGhQTVhqP5awqphWX60FgbnRt9X+YBUqgv7Qyedfgs/CHd/5QFZX3aPp8d4F+b4+lghbIYiMgmQ==
+  dependencies:
+    "@vx/curve" "0.0.165"
+    "@vx/group" "0.0.170"
+    "@vx/point" "0.0.165"
+    classnames "^2.2.5"
+    d3-path "^1.0.5"
+    d3-shape "^1.2.0"
+    prop-types "^15.5.10"
+
+"@vx/shape@0.0.175":
+  version "0.0.175"
+  resolved "https://registry.yarnpkg.com/@vx/shape/-/shape-0.0.175.tgz#099bcd4fdc890988fa373526b170c11942af2255"
+  integrity sha512-bjAJoIIpKjUEPDV2xmTYGUvSvwRztv+6rd1c6NPZG/nIuqsMHFnFig/2xTcQJEQhRg6aKzvxIUo43zPSSq3fWA==
+  dependencies:
+    "@vx/curve" "0.0.165"
+    "@vx/group" "0.0.170"
+    "@vx/point" "0.0.165"
+    classnames "^2.2.5"
+    d3-path "^1.0.5"
+    d3-shape "^1.2.0"
+    prop-types "^15.5.10"
+
+"@vx/shape@0.0.179", "@vx/shape@^0.0.179":
+  version "0.0.179"
+  resolved "https://registry.yarnpkg.com/@vx/shape/-/shape-0.0.179.tgz#038c449743d1e05b7b2d20151e9ab6e739f73516"
+  integrity sha512-YHVNx4xGpbjolkW3Lb5pEgJB0+u349vfnLI976DJlinY0hRNa4TZbWXOB4ywLIrYzQEXXPMUR8WtdubNxg6g0w==
+  dependencies:
+    "@vx/curve" "0.0.165"
+    "@vx/group" "0.0.170"
+    "@vx/point" "0.0.165"
+    classnames "^2.2.5"
+    d3-path "^1.0.5"
+    d3-shape "^1.2.0"
+    prop-types "^15.5.10"
+
+"@vx/shape@0.0.198":
+  version "0.0.198"
+  resolved "https://registry.yarnpkg.com/@vx/shape/-/shape-0.0.198.tgz#b9b974302152dedd51864bf7a5c5c1164e6b7271"
+  integrity sha512-3Ky2PlSXYmh/Wt+tT4OBmsLpTe8Vu5pZ1EwbMQ0H/NNl6d4BsNqBUzr++0WC/kLsuNs5NENDvG77N9u2ztMrYA==
+  dependencies:
+    "@types/classnames" "^2.2.9"
+    "@types/d3-path" "^1.0.8"
+    "@types/d3-shape" "^1.3.1"
+    "@types/react" "*"
+    "@vx/curve" "0.0.198"
+    "@vx/group" "0.0.198"
+    classnames "^2.2.5"
+    d3-path "^1.0.5"
+    d3-shape "^1.2.0"
+    prop-types "^15.5.10"
+
+"@vx/shape@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/shape/-/shape-0.0.165.tgz#3424121f45d83dd8e7ba62b6adf8b0aea2fb9cf8"
+  integrity sha512-D9naH/glDtw8J8IcdumpRz1ihaoCAYMwFNh2KTv73HiTKrLQSXvIjwYFv9C0b8BCPNOXkDZS8s+AlgMSqGlZNQ==
+  dependencies:
+    "@vx/curve" "0.0.165"
+    "@vx/group" "0.0.165"
+    "@vx/point" "0.0.165"
+    classnames "^2.2.5"
+    d3-path "^1.0.5"
+    d3-shape "^1.2.0"
+    prop-types "^15.5.10"
+
+"@vx/shape@^0.0.168":
+  version "0.0.168"
+  resolved "https://registry.yarnpkg.com/@vx/shape/-/shape-0.0.168.tgz#172bc1cf4dade47076018efd559e0ecc4e959aec"
+  integrity sha512-urKZkwSafMpPQ0wI/L5FJmufRiAR4UsgYUCKxROjfE1Cf4jWNlK6mlVIIASxCdHlh9CGBbIrRMdl5Yv5lzqhjA==
+  dependencies:
+    "@vx/curve" "0.0.165"
+    "@vx/group" "0.0.165"
+    "@vx/point" "0.0.165"
+    classnames "^2.2.5"
+    d3-path "^1.0.5"
+    d3-shape "^1.2.0"
+    prop-types "^15.5.10"
+
+"@vx/stats@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/stats/-/stats-0.0.165.tgz#32413a144383367e51628bbea61b3b0ce980f1fd"
+  integrity sha512-FRW5N+7pXLZrQxT8JA8OH28PGKq7YfiycmnSG7jzXOnvw+sPm9MRKCoyRDTpFrCiggcOhHhvqhE8RiO2qF7d3Q==
+  dependencies:
+    "@vx/group" "0.0.165"
+    "@vx/scale" "0.0.165"
+    classnames "^2.2.5"
+    d3-shape "^1.2.0"
+
+"@vx/text@0.0.175":
+  version "0.0.175"
+  resolved "https://registry.yarnpkg.com/@vx/text/-/text-0.0.175.tgz#70ff63b01abfc148132d36ca7cdebfb040bb48c5"
+  integrity sha512-SOBhctXXAGhhpCOiTjxOM/8NDaDqGRk3OGfsJ714Mt1UJX6VQaKxFocZJwn6IMw3mNG6/p7O4Eao/gGDcoM6+A==
+  dependencies:
+    babel-plugin-lodash "^3.3.2"
+    classnames "^2.2.5"
+    lodash "^4.17.4"
+    reduce-css-calc "^1.3.0"
+
+"@vx/text@0.0.179":
+  version "0.0.179"
+  resolved "https://registry.yarnpkg.com/@vx/text/-/text-0.0.179.tgz#820328086c22a83cd9e4a5373f4c7f4223db3a74"
+  integrity sha512-UD3/8o15+AQfjDI8LQ1Zj3EdQCwA3cfuQMR/M2F/Le4+JXQNMheeWz4xGyF4ZDs6r7c5cUI9Cd1RaPmGhYsX9g==
+  dependencies:
+    babel-plugin-lodash "^3.3.2"
+    classnames "^2.2.5"
+    lodash "^4.17.4"
+    prop-types "^15.6.2"
+    reduce-css-calc "^1.3.0"
+
+"@vx/text@0.0.198":
+  version "0.0.198"
+  resolved "https://registry.yarnpkg.com/@vx/text/-/text-0.0.198.tgz#6c5aa9a27548f8e38803ef7d3e280db4e4880519"
+  integrity sha512-MZhLeIhjbPlAeq+heUFXzrAztkjpfhAjeg+RXDg1dTJTtkbBD0w1bwadSPHuC7Rzj6yNQChzVDYl51dO/k4ExQ==
+  dependencies:
+    "@types/classnames" "^2.2.9"
+    "@types/lodash" "^4.14.146"
+    "@types/react" "*"
+    classnames "^2.2.5"
+    lodash "^4.17.15"
+    prop-types "^15.7.2"
+    reduce-css-calc "^1.3.0"
+
+"@vx/text@^0.0.192":
+  version "0.0.192"
+  resolved "https://registry.yarnpkg.com/@vx/text/-/text-0.0.192.tgz#cb71261e003c9d951d242ec43049cff2c4509302"
+  integrity sha512-lyy7eXfmQ8SJF7Qx+bCRcaEgvVSa18Lp6eRMo3GMANumUh9kSe7LwgqRFSdBJ85WkPqX+UOkJVyCH7AOlt0IWA==
+  dependencies:
+    classnames "^2.2.5"
+    lodash "^4.17.15"
+    prop-types "^15.7.2"
+    reduce-css-calc "^1.3.0"
+
+"@vx/threshold@0.0.170":
+  version "0.0.170"
+  resolved "https://registry.yarnpkg.com/@vx/threshold/-/threshold-0.0.170.tgz#59baeabc7e1687042cf4955130fc7a72704030f7"
+  integrity sha512-A3yWJrFqckbleXg3Q3iSsU6mdtHbMxEnE4jGZd8og4m9r2RDVTvFVP6ZRo4vunlfWj5YuMnNsKhx4ZSWKVMtXg==
+  dependencies:
+    "@vx/clip-path" "0.0.165"
+    "@vx/shape" "0.0.170"
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/tooltip@0.0.140":
+  version "0.0.140"
+  resolved "https://registry.yarnpkg.com/@vx/tooltip/-/tooltip-0.0.140.tgz#c5c8306272877c1bbd4e8b478ea5291f1019ffe3"
+  integrity sha1-xcgwYnKHfBu9TotHjqUpHxAZ/+M=
+  dependencies:
+    "@vx/bounds" "0.0.140"
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/tooltip@0.0.165", "@vx/tooltip@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/tooltip/-/tooltip-0.0.165.tgz#0d17a1b445a7bc70d7840e36593b780a6e7b40e2"
+  integrity sha512-/x1NZc67QGQ4e/WNT7Ks5LYRyeLSqp8lG04gX5J6leUS0zscAVzo3aE5u65Qqbc0cnMyMPRZ2Qtb4klWTLg+eQ==
+  dependencies:
+    "@vx/bounds" "0.0.165"
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/tooltip@0.0.179":
+  version "0.0.179"
+  resolved "https://registry.yarnpkg.com/@vx/tooltip/-/tooltip-0.0.179.tgz#7e794f977a49a850d235c4c90c8307a276e3b828"
+  integrity sha512-BjMURtNpc1g3Li00iHt4bA9lbhk1FnsxCemYI1OF5tSSKHHal2ZAdxRS7o1sR9+jIa3RyD9flfIa1ibtrJh2Ew==
+  dependencies:
+    "@vx/bounds" "0.0.165"
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+
+"@vx/tooltip@^0.0.199":
+  version "0.0.199"
+  resolved "https://registry.yarnpkg.com/@vx/tooltip/-/tooltip-0.0.199.tgz#e60147412eb5be4d8dc98664abaee1ac63ee6570"
+  integrity sha512-IZ6ExnEyTZ4jq9Ml+XECnrtQ52SnLi8WD1dbxnVMoAzNbMKNfnkET5ZqzYM/fM/yPEsKMwNadZWizdKBMjIGVw==
+  dependencies:
+    "@types/classnames" "^2.2.9"
+    "@types/react" "*"
+    "@vx/bounds" "0.0.199"
+    classnames "^2.2.5"
+    prop-types "^15.5.10"
+    react-use-measure "2.0.1"
+
+"@vx/voronoi@^0.0.165":
+  version "0.0.165"
+  resolved "https://registry.yarnpkg.com/@vx/voronoi/-/voronoi-0.0.165.tgz#11ab585199b0dccf403544a6ad378a505bfb913b"
+  integrity sha512-oZT9KBAjDLCEcOrrqW01TPz8pLtrNNAFPa7mB9ignXvgntqEd3yVXCBkxXScfZLS+O8UQc+7/pawu0PPkE2eMw==
+  dependencies:
+    "@vx/group" "0.0.165"
+    classnames "^2.2.5"
+    d3-voronoi "^1.1.2"
+    prop-types "^15.6.1"
+
+"@vx/zoom@^0.0.197":
+  version "0.0.197"
+  resolved "https://registry.yarnpkg.com/@vx/zoom/-/zoom-0.0.197.tgz#17f90a5dc082a4307c06e20dc3a80f5039212ab1"
+  integrity sha512-uAhnn1ALBD6g2TIyHMVeAO6mklTT0Wl30eFsHNvkBv9OFFJyCCRjLiye5/9tVpg1MJwC7TggXR9++Oy1dBSxFQ==
+  dependencies:
+    "@types/react" "*"
+    "@vx/event" "0.0.197"
+    prop-types "^15.6.2"
+
+"@webassemblyjs/ast@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
+  integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
+  dependencies:
+    "@webassemblyjs/helper-module-context" "1.9.0"
+    "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+    "@webassemblyjs/wast-parser" "1.9.0"
+
+"@webassemblyjs/floating-point-hex-parser@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
+  integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
+
+"@webassemblyjs/helper-api-error@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
+  integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
+
+"@webassemblyjs/helper-buffer@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
+  integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
+
+"@webassemblyjs/helper-code-frame@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
+  integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
+  dependencies:
+    "@webassemblyjs/wast-printer" "1.9.0"
+
+"@webassemblyjs/helper-fsm@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
+  integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
+
+"@webassemblyjs/helper-module-context@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
+  integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+
+"@webassemblyjs/helper-wasm-bytecode@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
+  integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
+
+"@webassemblyjs/helper-wasm-section@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
+  integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/helper-buffer" "1.9.0"
+    "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+    "@webassemblyjs/wasm-gen" "1.9.0"
+
+"@webassemblyjs/ieee754@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
+  integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
+  dependencies:
+    "@xtuc/ieee754" "^1.2.0"
+
+"@webassemblyjs/leb128@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
+  integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
+  dependencies:
+    "@xtuc/long" "4.2.2"
+
+"@webassemblyjs/utf8@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
+  integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
+
+"@webassemblyjs/wasm-edit@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
+  integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/helper-buffer" "1.9.0"
+    "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+    "@webassemblyjs/helper-wasm-section" "1.9.0"
+    "@webassemblyjs/wasm-gen" "1.9.0"
+    "@webassemblyjs/wasm-opt" "1.9.0"
+    "@webassemblyjs/wasm-parser" "1.9.0"
+    "@webassemblyjs/wast-printer" "1.9.0"
+
+"@webassemblyjs/wasm-gen@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
+  integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+    "@webassemblyjs/ieee754" "1.9.0"
+    "@webassemblyjs/leb128" "1.9.0"
+    "@webassemblyjs/utf8" "1.9.0"
+
+"@webassemblyjs/wasm-opt@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
+  integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/helper-buffer" "1.9.0"
+    "@webassemblyjs/wasm-gen" "1.9.0"
+    "@webassemblyjs/wasm-parser" "1.9.0"
+
+"@webassemblyjs/wasm-parser@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
+  integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/helper-api-error" "1.9.0"
+    "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+    "@webassemblyjs/ieee754" "1.9.0"
+    "@webassemblyjs/leb128" "1.9.0"
+    "@webassemblyjs/utf8" "1.9.0"
+
+"@webassemblyjs/wast-parser@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
+  integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/floating-point-hex-parser" "1.9.0"
+    "@webassemblyjs/helper-api-error" "1.9.0"
+    "@webassemblyjs/helper-code-frame" "1.9.0"
+    "@webassemblyjs/helper-fsm" "1.9.0"
+    "@xtuc/long" "4.2.2"
+
+"@webassemblyjs/wast-printer@1.9.0":
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
+  integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/wast-parser" "1.9.0"
+    "@xtuc/long" "4.2.2"
+
+"@xtuc/ieee754@^1.2.0":
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
+  integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
+
+"@xtuc/long@4.2.2":
+  version "4.2.2"
+  resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
+  integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
+
+"@zkochan/cmd-shim@^3.1.0":
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/@zkochan/cmd-shim/-/cmd-shim-3.1.0.tgz#2ab8ed81f5bb5452a85f25758eb9b8681982fd2e"
+  integrity sha512-o8l0+x7C7sMZU3v9GuJIAU10qQLtwR1dtRQIOmlNMtyaqhmpXOzx1HWiYoWfmmf9HHZoAkXpc9TM9PQYF9d4Jg==
+  dependencies:
+    is-windows "^1.0.0"
+    mkdirp-promise "^5.0.1"
+    mz "^2.5.0"
+
+JSONStream@^1.0.4, JSONStream@^1.2.1, JSONStream@^1.3.4, JSONStream@^1.3.5:
+  version "1.3.5"
+  resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0"
+  integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==
+  dependencies:
+    jsonparse "^1.2.0"
+    through ">=2.2.7 <3"
+
+abab@^2.0.0:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a"
+  integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==
+
+abab@^2.0.3:
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
+  integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
+
+abbrev@1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
+  integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
+
+abortcontroller-polyfill@^1.1.9:
+  version "1.7.1"
+  resolved "http://localhost:4873/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.1.tgz#27084bac87d78a7224c8ee78135d05df430c2d2f"
+  integrity sha512-yml9NiDEH4M4p0G4AcPkg8AAa4mF3nfYF28VQxaokpO67j9H7gWgmsVWJ/f1Rn+PzsnDYvzJzWIQzCqDKRvWlA==
+
+accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7:
+  version "1.3.7"
+  resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
+  integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
+  dependencies:
+    mime-types "~2.1.24"
+    negotiator "0.6.2"
+
+acorn-globals@^4.1.0, acorn-globals@^4.3.2:
+  version "4.3.4"
+  resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7"
+  integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==
+  dependencies:
+    acorn "^6.0.1"
+    acorn-walk "^6.0.1"
+
+acorn-globals@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45"
+  integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
+  dependencies:
+    acorn "^7.1.1"
+    acorn-walk "^7.1.1"
+
+acorn-jsx@^5.1.0, acorn-jsx@^5.3.1:
+  version "5.3.1"
+  resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
+  integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
+
+acorn-walk@^6.0.1:
+  version "6.2.0"
+  resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
+  integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
+
+acorn-walk@^7.0.0, acorn-walk@^7.1.1:
+  version "7.2.0"
+  resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
+  integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
+
+acorn@^5.5.3:
+  version "5.7.4"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e"
+  integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==
+
+acorn@^6.0.1, acorn@^6.2.1:
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474"
+  integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==
+
+acorn@^6.4.1:
+  version "6.4.2"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
+  integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
+
+acorn@^7.1.0, acorn@^7.1.1:
+  version "7.1.1"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf"
+  integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==
+
+acorn@^7.4.0:
+  version "7.4.1"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
+  integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
+
+add-stream@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa"
+  integrity sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=
+
+address@1.1.2, address@^1.0.1:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
+  integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==
+
+agent-base@4, agent-base@^4.3.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee"
+  integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==
+  dependencies:
+    es6-promisify "^5.0.0"
+
+agent-base@~4.2.1:
+  version "4.2.1"
+  resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9"
+  integrity sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==
+  dependencies:
+    es6-promisify "^5.0.0"
+
+agentkeepalive@^3.4.1:
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-3.5.2.tgz#a113924dd3fa24a0bc3b78108c450c2abee00f67"
+  integrity sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ==
+  dependencies:
+    humanize-ms "^1.2.1"
+
+aggregate-error@^3.0.0:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0"
+  integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==
+  dependencies:
+    clean-stack "^2.0.0"
+    indent-string "^4.0.0"
+
+airbnb-js-shims@^2.2.1:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz#db481102d682b98ed1daa4c5baa697a05ce5c040"
+  integrity sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==
+  dependencies:
+    array-includes "^3.0.3"
+    array.prototype.flat "^1.2.1"
+    array.prototype.flatmap "^1.2.1"
+    es5-shim "^4.5.13"
+    es6-shim "^0.35.5"
+    function.prototype.name "^1.1.0"
+    globalthis "^1.0.0"
+    object.entries "^1.1.0"
+    object.fromentries "^2.0.0 || ^1.0.0"
+    object.getownpropertydescriptors "^2.0.3"
+    object.values "^1.1.0"
+    promise.allsettled "^1.0.0"
+    promise.prototype.finally "^3.1.0"
+    string.prototype.matchall "^4.0.0 || ^3.0.1"
+    string.prototype.padend "^3.0.0"
+    string.prototype.padstart "^3.0.0"
+    symbol.prototype.description "^1.0.0"
+
+airbnb-prop-types@^2.15.0:
+  version "2.15.0"
+  resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.15.0.tgz#5287820043af1eb469f5b0af0d6f70da6c52aaef"
+  integrity sha512-jUh2/hfKsRjNFC4XONQrxo/n/3GG4Tn6Hl0WlFQN5PY9OMC9loSCoAYKnZsWaP8wEfd5xcrPloK0Zg6iS1xwVA==
+  dependencies:
+    array.prototype.find "^2.1.0"
+    function.prototype.name "^1.1.1"
+    has "^1.0.3"
+    is-regex "^1.0.4"
+    object-is "^1.0.1"
+    object.assign "^4.1.0"
+    object.entries "^1.1.0"
+    prop-types "^15.7.2"
+    prop-types-exact "^1.2.0"
+    react-is "^16.9.0"
+
+airbnb-prop-types@^2.16.0:
+  version "2.16.0"
+  resolved "http://localhost:4873/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz#b96274cefa1abb14f623f804173ee97c13971dc2"
+  integrity sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==
+  dependencies:
+    array.prototype.find "^2.1.1"
+    function.prototype.name "^1.1.2"
+    is-regex "^1.1.0"
+    object-is "^1.1.2"
+    object.assign "^4.1.0"
+    object.entries "^1.1.2"
+    prop-types "^15.7.2"
+    prop-types-exact "^1.2.0"
+    react-is "^16.13.1"
+
+ajv-errors@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
+  integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
+
+ajv-keywords@^3.1.0, ajv-keywords@^3.4.1:
+  version "3.4.1"
+  resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da"
+  integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
+
+ajv-keywords@^3.5.2:
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
+  integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
+
+ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.5.5:
+  version "6.12.0"
+  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7"
+  integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==
+  dependencies:
+    fast-deep-equal "^3.1.1"
+    fast-json-stable-stringify "^2.0.0"
+    json-schema-traverse "^0.4.1"
+    uri-js "^4.2.2"
+
+ajv@^6.12.4, ajv@^6.12.5, ajv@^6.7.0:
+  version "6.12.6"
+  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
+  integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
+  dependencies:
+    fast-deep-equal "^3.1.1"
+    fast-json-stable-stringify "^2.0.0"
+    json-schema-traverse "^0.4.1"
+    uri-js "^4.2.2"
+
+ajv@^7.0.2:
+  version "7.0.3"
+  resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.0.3.tgz#13ae747eff125cafb230ac504b2406cf371eece2"
+  integrity sha512-R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ==
+  dependencies:
+    fast-deep-equal "^3.1.1"
+    json-schema-traverse "^1.0.0"
+    require-from-string "^2.0.2"
+    uri-js "^4.2.2"
+
+alphanum-sort@^1.0.0:
+  version "1.0.2"
+  resolved "http://localhost:4873/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
+  integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
+
+ansi-align@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb"
+  integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==
+  dependencies:
+    string-width "^3.0.0"
+
+ansi-colors@^3.0.0, ansi-colors@^3.2.1:
+  version "3.2.4"
+  resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
+  integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
+
+ansi-escapes@^3.0.0, ansi-escapes@^3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
+  integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
+
+ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.1:
+  version "4.3.1"
+  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61"
+  integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==
+  dependencies:
+    type-fest "^0.11.0"
+
+ansi-html@0.0.7, ansi-html@^0.0.7:
+  version "0.0.7"
+  resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
+  integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4=
+
+ansi-regex@^2.0.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
+  integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
+
+ansi-regex@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
+  integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
+
+ansi-regex@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
+  integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
+
+ansi-regex@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
+  integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
+
+ansi-styles@^2.2.1:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
+  integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
+
+ansi-styles@^3.0.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+  integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+  dependencies:
+    color-convert "^1.9.0"
+
+ansi-styles@^4.0.0, ansi-styles@^4.1.0:
+  version "4.2.1"
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
+  integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
+  dependencies:
+    "@types/color-name" "^1.1.1"
+    color-convert "^2.0.1"
+
+ansi-styles@~1.0.0:
+  version "1.0.0"
+  resolved "http://localhost:4873/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178"
+  integrity sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg=
+
+ansi-to-html@^0.6.11:
+  version "0.6.14"
+  resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.14.tgz#65fe6d08bba5dd9db33f44a20aec331e0010dad8"
+  integrity sha512-7ZslfB1+EnFSDO5Ju+ue5Y6It19DRnZXWv8jrGHgIlPna5Mh4jz7BV5jCbQneXNFurQcKoolaaAjHtgSBfOIuA==
+  dependencies:
+    entities "^1.1.2"
+
+ansicolors@~0.2.1:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef"
+  integrity sha1-vgiVmQl7dKXJxKhKDNvNtivYeu8=
+
+antd@^4.9.1:
+  version "4.9.1"
+  resolved "https://registry.yarnpkg.com/antd/-/antd-4.9.1.tgz#486c6e143e04fbd6e110a9ed9f9333bcba54b0f3"
+  integrity sha512-q+Uf8xWeUB+O+xELq3tvprj2cEot/JnCAjS24scIadHSFzCkUr1nVcHU7dTtZommx7zQgC2ajWBOCVMmJD/lrw==
+  dependencies:
+    "@ant-design/colors" "^5.0.0"
+    "@ant-design/css-animation" "^1.7.2"
+    "@ant-design/icons" "^4.3.0"
+    "@ant-design/react-slick" "~0.27.0"
+    "@babel/runtime" "^7.11.2"
+    array-tree-filter "^2.1.0"
+    classnames "^2.2.6"
+    copy-to-clipboard "^3.2.0"
+    lodash "^4.17.20"
+    moment "^2.25.3"
+    omit.js "^2.0.2"
+    rc-cascader "~1.4.0"
+    rc-checkbox "~2.3.0"
+    rc-collapse "~3.1.0"
+    rc-dialog "~8.4.0"
+    rc-drawer "~4.1.0"
+    rc-dropdown "~3.2.0"
+    rc-field-form "~1.17.0"
+    rc-image "~4.2.0"
+    rc-input-number "~6.1.0"
+    rc-mentions "~1.5.0"
+    rc-menu "~8.10.0"
+    rc-motion "^2.4.0"
+    rc-notification "~4.5.2"
+    rc-pagination "~3.1.2"
+    rc-picker "~2.4.1"
+    rc-progress "~3.1.0"
+    rc-rate "~2.9.0"
+    rc-resize-observer "^0.2.3"
+    rc-select "~11.5.3"
+    rc-slider "~9.6.1"
+    rc-steps "~4.1.0"
+    rc-switch "~3.2.0"
+    rc-table "~7.11.0"
+    rc-tabs "~11.7.0"
+    rc-textarea "~0.3.0"
+    rc-tooltip "~5.0.0"
+    rc-tree "~4.0.0"
+    rc-tree-select "~4.2.0"
+    rc-upload "~3.3.1"
+    rc-util "^5.1.0"
+    scroll-into-view-if-needed "^2.2.25"
+    warning "^4.0.3"
+
+antd@^4.9.4:
+  version "4.12.2"
+  resolved "http://localhost:4873/antd/-/antd-4.12.2.tgz#3e00b21de418c94a358bf1fc064de15654a30161"
+  integrity sha512-xB7sGg2qM/Sl3azjbc2RbJQ6cTr2Fos0AYZw2gTLLWtKhOyO3FUH7EBsL17GOkVnEDwMmBYtVXLhMgPM+e4gbA==
+  dependencies:
+    "@ant-design/colors" "^5.0.0"
+    "@ant-design/icons" "^4.4.0"
+    "@ant-design/react-slick" "~0.28.1"
+    "@babel/runtime" "^7.12.5"
+    array-tree-filter "^2.1.0"
+    classnames "^2.2.6"
+    copy-to-clipboard "^3.2.0"
+    lodash "^4.17.20"
+    moment "^2.25.3"
+    rc-cascader "~1.4.0"
+    rc-checkbox "~2.3.0"
+    rc-collapse "~3.1.0"
+    rc-dialog "~8.5.1"
+    rc-drawer "~4.2.0"
+    rc-dropdown "~3.2.0"
+    rc-field-form "~1.18.0"
+    rc-image "~5.2.0"
+    rc-input-number "~6.2.0"
+    rc-mentions "~1.5.0"
+    rc-menu "~8.10.0"
+    rc-motion "^2.4.0"
+    rc-notification "~4.5.2"
+    rc-pagination "~3.1.2"
+    rc-picker "~2.5.1"
+    rc-progress "~3.1.0"
+    rc-rate "~2.9.0"
+    rc-resize-observer "^1.0.0"
+    rc-select "~12.1.0"
+    rc-slider "~9.7.1"
+    rc-steps "~4.1.0"
+    rc-switch "~3.2.0"
+    rc-table "~7.13.0"
+    rc-tabs "~11.7.0"
+    rc-textarea "~0.3.0"
+    rc-tooltip "~5.0.0"
+    rc-tree "~4.1.0"
+    rc-tree-select "~4.3.0"
+    rc-trigger "^5.2.1"
+    rc-upload "~3.3.4"
+    rc-util "^5.7.0"
+    scroll-into-view-if-needed "^2.2.25"
+    warning "^4.0.3"
+
+any-observable@^0.3.0:
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b"
+  integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==
+
+any-promise@^1.0.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
+  integrity sha1-q8av7tzqUugJzcA3au0845Y10X8=
+
+anymatch@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
+  integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
+  dependencies:
+    micromatch "^3.1.4"
+    normalize-path "^2.1.1"
+
+anymatch@^3.0.3, anymatch@~3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
+  integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
+  dependencies:
+    normalize-path "^3.0.0"
+    picomatch "^2.0.4"
+
+aphrodite@^1.2.0:
+  version "1.2.5"
+  resolved "https://registry.yarnpkg.com/aphrodite/-/aphrodite-1.2.5.tgz#8358c36c80bb03aee9b97165aaa70186225b4983"
+  integrity sha1-g1jDbIC7A67puXFlqqcBhiJbSYM=
+  dependencies:
+    asap "^2.0.3"
+    inline-style-prefixer "^3.0.1"
+    string-hash "^1.1.3"
+
+apollo-codegen@^0.19.1:
+  version "0.19.1"
+  resolved "https://registry.yarnpkg.com/apollo-codegen/-/apollo-codegen-0.19.1.tgz#30444de019f453c0d6ec167072b8e11b52d7f92e"
+  integrity sha512-jlxz/b5iinRWfh48hXdmMtrjTPn/rDok0Z3b7icvkiaD6I30w4sq9B+JDkFbLnkldzsFLV2BZtBDa/dkZhx8Ng==
+  dependencies:
+    "@babel/generator" "7.0.0-beta.38"
+    "@babel/types" "7.0.0-beta.38"
+    change-case "^3.0.1"
+    common-tags "^1.5.1"
+    core-js "^2.5.3"
+    glob "^7.1.2"
+    graphql "^0.13.1"
+    graphql-config "^1.1.1"
+    inflected "^2.0.3"
+    node-fetch "^1.7.3"
+    rimraf "^2.6.2"
+    source-map-support "^0.5.0"
+    yargs "^10.0.3"
+
+app-root-dir@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118"
+  integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=
+
+aproba@^1.0.3, aproba@^1.1.1:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
+  integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
+
+aproba@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
+  integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
+
+are-we-there-yet@~1.1.2:
+  version "1.1.5"
+  resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
+  integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
+  dependencies:
+    delegates "^1.0.0"
+    readable-stream "^2.0.6"
+
+argparse@^1.0.7:
+  version "1.0.10"
+  resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
+  integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
+  dependencies:
+    sprintf-js "~1.0.2"
+
+aria-query@^4.2.2:
+  version "4.2.2"
+  resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
+  integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
+  dependencies:
+    "@babel/runtime" "^7.10.2"
+    "@babel/runtime-corejs3" "^7.10.2"
+
+arr-diff@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
+  integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
+
+arr-flatten@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
+  integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
+
+arr-union@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
+  integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
+
+array-differ@^2.0.3:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-2.1.0.tgz#4b9c1c3f14b906757082925769e8ab904f4801b1"
+  integrity sha512-KbUpJgx909ZscOc/7CLATBFam7P1Z1QRQInvgT0UztM9Q72aGKCunKASAl7WNW0tnPmPyEMeMhdsfWhfmW037w==
+
+array-differ@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b"
+  integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==
+
+array-equal@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
+  integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=
+
+array-filter@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83"
+  integrity sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=
+
+array-find-index@^1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
+  integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=
+
+array-find@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/array-find/-/array-find-1.0.0.tgz#6c8e286d11ed768327f8e62ecee87353ca3e78b8"
+  integrity sha1-bI4obRHtdoMn+OYuzuhzU8o+eLg=
+
+array-flatten@1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
+  integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
+
+array-flatten@^2.1.0:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
+  integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
+
+array-ify@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
+  integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=
+
+array-includes@^3.0.3, array-includes@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348"
+  integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0"
+    is-string "^1.0.5"
+
+array-move@^2.2.1:
+  version "2.2.2"
+  resolved "http://localhost:4873/array-move/-/array-move-2.2.2.tgz#c125f84d64e2f4bc09147f91f900a1bf58bb25d1"
+  integrity sha512-lKc6C+nsOSA1o7eHSP/HshlGDYUI7QKyaus5kPDm2zEEPQID9xlspnraLR8l+rDlqg9mGo8ziE7F8TEnF6D3Tw==
+
+array-tree-filter@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/array-tree-filter/-/array-tree-filter-2.1.0.tgz#873ac00fec83749f255ac8dd083814b4f6329190"
+  integrity sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==
+
+array-union@^1.0.1, array-union@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
+  integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
+  dependencies:
+    array-uniq "^1.0.1"
+
+array-union@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
+  integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+
+array-uniq@^1.0.1:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
+  integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
+
+array-unique@^0.3.2:
+  version "0.3.2"
+  resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
+  integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
+
+array.prototype.find@^2.1.0, array.prototype.find@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.1.tgz#3baca26108ca7affb08db06bf0be6cb3115a969c"
+  integrity sha512-mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.4"
+
+array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b"
+  integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+
+array.prototype.flatmap@^1.2.1:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz#1c13f84a178566042dd63de4414440db9222e443"
+  integrity sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    function-bind "^1.1.1"
+
+array.prototype.flatmap@^1.2.3:
+  version "1.2.4"
+  resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9"
+  integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==
+  dependencies:
+    call-bind "^1.0.0"
+    define-properties "^1.1.3"
+    es-abstract "^1.18.0-next.1"
+    function-bind "^1.1.1"
+
+array.prototype.map@^1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/array.prototype.map/-/array.prototype.map-1.0.2.tgz#9a4159f416458a23e9483078de1106b2ef68f8ec"
+  integrity sha512-Az3OYxgsa1g7xDYp86l0nnN4bcmuEITGe1rbdEBVkrqkzMgDcbdQ2R7r41pNzti+4NMces3H8gMmuioZUilLgw==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    es-array-method-boxes-properly "^1.0.0"
+    is-string "^1.0.4"
+
+arrify@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
+  integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
+
+arrify@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa"
+  integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
+
+asap@^2.0.0, asap@^2.0.3, asap@~2.0.3:
+  version "2.0.6"
+  resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
+  integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
+
+asn1.js@^4.0.0:
+  version "4.10.1"
+  resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
+  integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==
+  dependencies:
+    bn.js "^4.0.0"
+    inherits "^2.0.1"
+    minimalistic-assert "^1.0.0"
+
+asn1@~0.2.3:
+  version "0.2.4"
+  resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
+  integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==
+  dependencies:
+    safer-buffer "~2.1.0"
+
+assert-plus@1.0.0, assert-plus@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
+  integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
+
+assert@^1.1.1:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
+  integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
+  dependencies:
+    object-assign "^4.1.1"
+    util "0.10.3"
+
+assign-symbols@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
+  integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
+
+ast-types-flow@^0.0.7:
+  version "0.0.7"
+  resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
+  integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
+
+ast-types@0.11.3:
+  version "0.11.3"
+  resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.11.3.tgz#c20757fe72ee71278ea0ff3d87e5c2ca30d9edf8"
+  integrity sha512-XA5o5dsNw8MhyW0Q7MWXJWc4oOzZKbdsEJq45h7c8q/d9DwWZ5F2ugUc1PuMLPGsUnphCt/cNDHu8JeBbxf1qA==
+
+ast-types@^0.13.2:
+  version "0.13.3"
+  resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.3.tgz#50da3f28d17bdbc7969a3a2d83a0e4a72ae755a7"
+  integrity sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==
+
+ast-types@^0.14.2:
+  version "0.14.2"
+  resolved "http://localhost:4873/ast-types/-/ast-types-0.14.2.tgz#600b882df8583e3cd4f2df5fa20fa83759d4bdfd"
+  integrity sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==
+  dependencies:
+    tslib "^2.0.1"
+
+astral-regex@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
+  integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
+
+astral-regex@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
+  integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
+
+async-each@^1.0.1:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
+  integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
+
+async-limiter@~1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
+  integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
+
+async-retry@^1.3.1:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.3.1.tgz#139f31f8ddce50c0870b0ba558a6079684aaed55"
+  integrity sha512-aiieFW/7h3hY0Bq5d+ktDBejxuwR78vRu9hDUdR8rNhSaQ29VzPL4AoIRG7D/c7tdenwOcKvgPM6tIxB3cB6HA==
+  dependencies:
+    retry "0.12.0"
+
+async-validator@^3.0.3:
+  version "3.4.1"
+  resolved "https://registry.yarnpkg.com/async-validator/-/async-validator-3.4.1.tgz#ce1d72593925d55964b254a952d77a90f6e31697"
+  integrity sha512-Nq4Bh/XniZzPCmyXEs36R7FYg9erEspNDPOjSOeX9Axz49mWZaFgBF7TrvLlVOKb5waxmjC86i05ZunfiZ/t2Q==
+
+async@0.9.x:
+  version "0.9.2"
+  resolved "http://localhost:4873/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d"
+  integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=
+
+async@^2.3.0, async@^2.6.1, async@^2.6.2:
+  version "2.6.3"
+  resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
+  integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
+  dependencies:
+    lodash "^4.17.14"
+
+asynckit@^0.4.0:
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
+  integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
+
+at-least-node@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
+  integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
+
+atob-lite@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/atob-lite/-/atob-lite-2.0.0.tgz#0fef5ad46f1bd7a8502c65727f0367d5ee43d696"
+  integrity sha1-D+9a1G8b16hQLGVyfwNn1e5D1pY=
+
+atob@^2.1.2:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
+  integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
+
+autoprefixer@^9.7.2:
+  version "9.7.5"
+  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.5.tgz#8df10b9ff9b5814a8d411a5cfbab9c793c392376"
+  integrity sha512-URo6Zvt7VYifomeAfJlMFnYDhow1rk2bufwkbamPEAtQFcL11moLk4PnR7n9vlu7M+BkXAZkHFA0mIcY7tjQFg==
+  dependencies:
+    browserslist "^4.11.0"
+    caniuse-lite "^1.0.30001036"
+    chalk "^2.4.2"
+    normalize-range "^0.1.2"
+    num2fraction "^1.2.2"
+    postcss "^7.0.27"
+    postcss-value-parser "^4.0.3"
+
+aws-sign2@~0.7.0:
+  version "0.7.0"
+  resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
+  integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
+
+aws4@^1.8.0:
+  version "1.9.1"
+  resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e"
+  integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==
+
+axe-core@^4.0.2:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.1.1.tgz#70a7855888e287f7add66002211a423937063eaf"
+  integrity sha512-5Kgy8Cz6LPC9DJcNb3yjAXTu3XihQgEdnIg50c//zOC/MyLP0Clg+Y8Sh9ZjjnvBrDZU4DgXS9C3T9r4/scGZQ==
+
+axios@0.19.0:
+  version "0.19.0"
+  resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8"
+  integrity sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ==
+  dependencies:
+    follow-redirects "1.5.10"
+    is-buffer "^2.0.2"
+
+axios@^0.18.0:
+  version "0.18.1"
+  resolved "https://registry.yarnpkg.com/axios/-/axios-0.18.1.tgz#ff3f0de2e7b5d180e757ad98000f1081b87bcea3"
+  integrity sha512-0BfJq4NSfQXd+SkFdrvFbG7addhYSBA2mQwISr46pD6E5iqkWg02RAs8vyTT/j0RTnoYmeXauBuSv1qKwR179g==
+  dependencies:
+    follow-redirects "1.5.10"
+    is-buffer "^2.0.2"
+
+axobject-query@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
+  integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
+
+babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
+  integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
+  dependencies:
+    chalk "^1.1.3"
+    esutils "^2.0.2"
+    js-tokens "^3.0.2"
+
+babel-eslint@^10.1.0:
+  version "10.1.0"
+  resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232"
+  integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==
+  dependencies:
+    "@babel/code-frame" "^7.0.0"
+    "@babel/parser" "^7.7.0"
+    "@babel/traverse" "^7.7.0"
+    "@babel/types" "^7.7.0"
+    eslint-visitor-keys "^1.0.0"
+    resolve "^1.12.0"
+
+babel-helper-evaluate-path@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.5.0.tgz#a62fa9c4e64ff7ea5cea9353174ef023a900a67c"
+  integrity sha512-mUh0UhS607bGh5wUMAQfOpt2JX2ThXMtppHRdRU1kL7ZLRWIXxoV2UIV1r2cAeeNeU1M5SB5/RSUgUxrK8yOkA==
+
+babel-helper-flip-expressions@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.3.tgz#3696736a128ac18bc25254b5f40a22ceb3c1d3fd"
+  integrity sha1-NpZzahKKwYvCUlS19AoizrPB0/0=
+
+babel-helper-is-nodes-equiv@^0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684"
+  integrity sha1-NOmzALFHnd2Y7HfqC76TQt/jloQ=
+
+babel-helper-is-void-0@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.3.tgz#7d9c01b4561e7b95dbda0f6eee48f5b60e67313e"
+  integrity sha1-fZwBtFYee5Xb2g9u7kj1tg5nMT4=
+
+babel-helper-mark-eval-scopes@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.3.tgz#d244a3bef9844872603ffb46e22ce8acdf551562"
+  integrity sha1-0kSjvvmESHJgP/tG4izorN9VFWI=
+
+babel-helper-remove-or-void@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.3.tgz#a4f03b40077a0ffe88e45d07010dee241ff5ae60"
+  integrity sha1-pPA7QAd6D/6I5F0HAQ3uJB/1rmA=
+
+babel-helper-to-multiple-sequence-expressions@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz#a3f924e3561882d42fcf48907aa98f7979a4588d"
+  integrity sha512-m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA==
+
+babel-jest@^25.5.1:
+  version "25.5.1"
+  resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.5.1.tgz#bc2e6101f849d6f6aec09720ffc7bc5332e62853"
+  integrity sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==
+  dependencies:
+    "@jest/transform" "^25.5.1"
+    "@jest/types" "^25.5.0"
+    "@types/babel__core" "^7.1.7"
+    babel-plugin-istanbul "^6.0.0"
+    babel-preset-jest "^25.5.0"
+    chalk "^3.0.0"
+    graceful-fs "^4.2.4"
+    slash "^3.0.0"
+
+babel-jest@^26.6.3:
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056"
+  integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==
+  dependencies:
+    "@jest/transform" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/babel__core" "^7.1.7"
+    babel-plugin-istanbul "^6.0.0"
+    babel-preset-jest "^26.6.2"
+    chalk "^4.0.0"
+    graceful-fs "^4.2.4"
+    slash "^3.0.0"
+
+babel-literal-to-ast@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/babel-literal-to-ast/-/babel-literal-to-ast-2.1.0.tgz#c8b12f9c36a8cee13572d65aabf6cff8adb1e8b3"
+  integrity sha512-CxfpQ0ysQ0bZOhlaPgcWjl79Em16Rhqc6++UAFn0A3duiXmuyhhj8yyl9PYbj0I0CyjrHovdDbp2QEKT7uIMxw==
+  dependencies:
+    "@babel/parser" "^7.1.6"
+    "@babel/traverse" "^7.1.6"
+    "@babel/types" "^7.1.6"
+
+babel-loader@^8.0.6, babel-loader@^8.2.2:
+  version "8.2.2"
+  resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz#9363ce84c10c9a40e6c753748e1441b60c8a0b81"
+  integrity sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==
+  dependencies:
+    find-cache-dir "^3.3.1"
+    loader-utils "^1.4.0"
+    make-dir "^3.1.0"
+    schema-utils "^2.6.5"
+
+babel-loader@^8.1.0:
+  version "8.1.0"
+  resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
+  integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==
+  dependencies:
+    find-cache-dir "^2.1.0"
+    loader-utils "^1.4.0"
+    mkdirp "^0.5.3"
+    pify "^4.0.1"
+    schema-utils "^2.6.5"
+
+babel-plugin-add-react-displayname@^0.0.5:
+  version "0.0.5"
+  resolved "https://registry.yarnpkg.com/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz#339d4cddb7b65fd62d1df9db9fe04de134122bd5"
+  integrity sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=
+
+babel-plugin-apply-mdx-type-prop@1.6.22:
+  version "1.6.22"
+  resolved "http://localhost:4873/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz#d216e8fd0de91de3f1478ef3231e05446bc8705b"
+  integrity sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "7.10.4"
+    "@mdx-js/util" "1.6.22"
+
+babel-plugin-dynamic-import-node@^2.3.3:
+  version "2.3.3"
+  resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
+  integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
+  dependencies:
+    object.assign "^4.1.0"
+
+babel-plugin-emotion@^10.0.20, babel-plugin-emotion@^10.0.27:
+  version "10.0.29"
+  resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.29.tgz#89d8e497091fcd3d10331f097f1471e4cc3f35b4"
+  integrity sha512-7Jpi1OCxjyz0k163lKtqP+LHMg5z3S6A7vMBfHnF06l2unmtsOmFDzZBpGf0CWo1G4m8UACfVcDJiSiRuu/cSw==
+  dependencies:
+    "@babel/helper-module-imports" "^7.0.0"
+    "@emotion/hash" "0.8.0"
+    "@emotion/memoize" "0.7.4"
+    "@emotion/serialize" "^0.11.16"
+    babel-plugin-macros "^2.0.0"
+    babel-plugin-syntax-jsx "^6.18.0"
+    convert-source-map "^1.5.0"
+    escape-string-regexp "^1.0.5"
+    find-root "^1.1.0"
+    source-map "^0.5.7"
+
+babel-plugin-emotion@^10.0.33:
+  version "10.0.33"
+  resolved "http://localhost:4873/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz#ce1155dcd1783bbb9286051efee53f4e2be63e03"
+  integrity sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ==
+  dependencies:
+    "@babel/helper-module-imports" "^7.0.0"
+    "@emotion/hash" "0.8.0"
+    "@emotion/memoize" "0.7.4"
+    "@emotion/serialize" "^0.11.16"
+    babel-plugin-macros "^2.0.0"
+    babel-plugin-syntax-jsx "^6.18.0"
+    convert-source-map "^1.5.0"
+    escape-string-regexp "^1.0.5"
+    find-root "^1.1.0"
+    source-map "^0.5.7"
+
+babel-plugin-emotion@^11.0.0:
+  version "11.0.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-11.0.0.tgz#f362c9fe05493821ab8995cd5a8e7be6504b73a9"
+  integrity sha512-cVD32sIXlidaqQBr7vw0uD2o58uBeD8jILDJ2yAGT1fOmgYcE5iX27bTVMV6meiUZarIAh1iAyTqrEWV+V2dqQ==
+
+babel-plugin-extract-import-names@1.6.22:
+  version "1.6.22"
+  resolved "http://localhost:4873/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz#de5f9a28eb12f3eb2578bf74472204e66d1a13dc"
+  integrity sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "7.10.4"
+
+babel-plugin-graphql-tag@^2.5.0:
+  version "2.5.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-graphql-tag/-/babel-plugin-graphql-tag-2.5.0.tgz#2b2df0dc4b9638022d18868d03abe60117aaf38d"
+  integrity sha512-X6qczBVs/UtB8evDgOizGuQJNDBkvXZy5kZd4c0SU14L986RR+p4EXtK/T31HkpYoYOjvrcp+QO82qjL3/nHoQ==
+  dependencies:
+    "@babel/parser" "^7.3.2"
+    babel-literal-to-ast "^2.1.0"
+    debug "^4.1.1"
+
+babel-plugin-istanbul@^5.1.0:
+  version "5.2.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz#df4ade83d897a92df069c4d9a25cf2671293c854"
+  integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.0.0"
+    find-up "^3.0.0"
+    istanbul-lib-instrument "^3.3.0"
+    test-exclude "^5.2.3"
+
+babel-plugin-istanbul@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
+  integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.0.0"
+    "@istanbuljs/load-nyc-config" "^1.0.0"
+    "@istanbuljs/schema" "^0.1.2"
+    istanbul-lib-instrument "^4.0.0"
+    test-exclude "^6.0.0"
+
+babel-plugin-jest-hoist@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz#129c80ba5c7fc75baf3a45b93e2e372d57ca2677"
+  integrity sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==
+  dependencies:
+    "@babel/template" "^7.3.3"
+    "@babel/types" "^7.3.3"
+    "@types/babel__traverse" "^7.0.6"
+
+babel-plugin-jest-hoist@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz#8185bd030348d254c6d7dd974355e6a28b21e62d"
+  integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==
+  dependencies:
+    "@babel/template" "^7.3.3"
+    "@babel/types" "^7.3.3"
+    "@types/babel__core" "^7.0.0"
+    "@types/babel__traverse" "^7.0.6"
+
+babel-plugin-jsx-remove-data-test-id@^2.1.3:
+  version "2.1.3"
+  resolved "https://registry.yarnpkg.com/babel-plugin-jsx-remove-data-test-id/-/babel-plugin-jsx-remove-data-test-id-2.1.3.tgz#d4e5fc89e85907b608f3d9b0964e5c0f1ad507e1"
+  integrity sha512-FTpcmzr3avLVStllCT4BceTTZNEb+1mJVtLpsicvXDqjojEkyrga1GGOxWj768Ra3tev6KWgNOhZ/Lrucb+MuQ==
+
+babel-plugin-lodash@^3.3.2, babel-plugin-lodash@^3.3.4:
+  version "3.3.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz#4f6844358a1340baed182adbeffa8df9967bc196"
+  integrity sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==
+  dependencies:
+    "@babel/helper-module-imports" "^7.0.0-beta.49"
+    "@babel/types" "^7.0.0-beta.49"
+    glob "^7.1.1"
+    lodash "^4.17.10"
+    require-package-name "^2.0.1"
+
+babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.7.0, babel-plugin-macros@^2.8.0:
+  version "2.8.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
+  integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
+  dependencies:
+    "@babel/runtime" "^7.7.2"
+    cosmiconfig "^6.0.0"
+    resolve "^1.12.0"
+
+babel-plugin-minify-builtins@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.5.0.tgz#31eb82ed1a0d0efdc31312f93b6e4741ce82c36b"
+  integrity sha512-wpqbN7Ov5hsNwGdzuzvFcjgRlzbIeVv1gMIlICbPj0xkexnfoIDe7q+AZHMkQmAE/F9R5jkrB6TLfTegImlXag==
+
+babel-plugin-minify-constant-folding@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.5.0.tgz#f84bc8dbf6a561e5e350ff95ae216b0ad5515b6e"
+  integrity sha512-Vj97CTn/lE9hR1D+jKUeHfNy+m1baNiJ1wJvoGyOBUx7F7kJqDZxr9nCHjO/Ad+irbR3HzR6jABpSSA29QsrXQ==
+  dependencies:
+    babel-helper-evaluate-path "^0.5.0"
+
+babel-plugin-minify-dead-code-elimination@^0.5.1:
+  version "0.5.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.5.1.tgz#1a0c68e44be30de4976ca69ffc535e08be13683f"
+  integrity sha512-x8OJOZIrRmQBcSqxBcLbMIK8uPmTvNWPXH2bh5MDCW1latEqYiRMuUkPImKcfpo59pTUB2FT7HfcgtG8ZlR5Qg==
+  dependencies:
+    babel-helper-evaluate-path "^0.5.0"
+    babel-helper-mark-eval-scopes "^0.4.3"
+    babel-helper-remove-or-void "^0.4.3"
+    lodash "^4.17.11"
+
+babel-plugin-minify-flip-comparisons@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.3.tgz#00ca870cb8f13b45c038b3c1ebc0f227293c965a"
+  integrity sha1-AMqHDLjxO0XAOLPB68DyJyk8llo=
+  dependencies:
+    babel-helper-is-void-0 "^0.4.3"
+
+babel-plugin-minify-guarded-expressions@^0.4.4:
+  version "0.4.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.4.tgz#818960f64cc08aee9d6c75bec6da974c4d621135"
+  integrity sha512-RMv0tM72YuPPfLT9QLr3ix9nwUIq+sHT6z8Iu3sLbqldzC1Dls8DPCywzUIzkTx9Zh1hWX4q/m9BPoPed9GOfA==
+  dependencies:
+    babel-helper-evaluate-path "^0.5.0"
+    babel-helper-flip-expressions "^0.4.3"
+
+babel-plugin-minify-infinity@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.3.tgz#dfb876a1b08a06576384ef3f92e653ba607b39ca"
+  integrity sha1-37h2obCKBldjhO8/kuZTumB7Oco=
+
+babel-plugin-minify-mangle-names@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.5.0.tgz#bcddb507c91d2c99e138bd6b17a19c3c271e3fd3"
+  integrity sha512-3jdNv6hCAw6fsX1p2wBGPfWuK69sfOjfd3zjUXkbq8McbohWy23tpXfy5RnToYWggvqzuMOwlId1PhyHOfgnGw==
+  dependencies:
+    babel-helper-mark-eval-scopes "^0.4.3"
+
+babel-plugin-minify-numeric-literals@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.3.tgz#8e4fd561c79f7801286ff60e8c5fd9deee93c0bc"
+  integrity sha1-jk/VYcefeAEob/YOjF/Z3u6TwLw=
+
+babel-plugin-minify-replace@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.5.0.tgz#d3e2c9946c9096c070efc96761ce288ec5c3f71c"
+  integrity sha512-aXZiaqWDNUbyNNNpWs/8NyST+oU7QTpK7J9zFEFSA0eOmtUNMU3fczlTTTlnCxHmq/jYNFEmkkSG3DDBtW3Y4Q==
+
+babel-plugin-minify-simplify@^0.5.1:
+  version "0.5.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.5.1.tgz#f21613c8b95af3450a2ca71502fdbd91793c8d6a"
+  integrity sha512-OSYDSnoCxP2cYDMk9gxNAed6uJDiDz65zgL6h8d3tm8qXIagWGMLWhqysT6DY3Vs7Fgq7YUDcjOomhVUb+xX6A==
+  dependencies:
+    babel-helper-evaluate-path "^0.5.0"
+    babel-helper-flip-expressions "^0.4.3"
+    babel-helper-is-nodes-equiv "^0.0.1"
+    babel-helper-to-multiple-sequence-expressions "^0.5.0"
+
+babel-plugin-minify-type-constructors@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.3.tgz#1bc6f15b87f7ab1085d42b330b717657a2156500"
+  integrity sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA=
+  dependencies:
+    babel-helper-is-void-0 "^0.4.3"
+
+babel-plugin-named-asset-import@^0.3.1:
+  version "0.3.6"
+  resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.6.tgz#c9750a1b38d85112c9e166bf3ef7c5dbc605f4be"
+  integrity sha512-1aGDUfL1qOOIoqk9QKGIo2lANk+C7ko/fqH0uIyC71x3PEGz0uVP8ISgfEsFuG+FKmjHTvFK/nNM8dowpmUxLA==
+
+babel-plugin-react-docgen@^4.0.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.1.0.tgz#1dfa447dac9ca32d625a123df5733a9e47287c26"
+  integrity sha512-vzpnBlfGv8XOhJM2zbPyyqw2OLEbelgZZsaaRRTpVwNKuYuc+pUg4+dy7i9gCRms0uOQn4osX571HRcCJMJCmA==
+  dependencies:
+    lodash "^4.17.15"
+    react-docgen "^5.0.0"
+    recast "^0.14.7"
+
+babel-plugin-react-docgen@^4.2.1:
+  version "4.2.1"
+  resolved "http://localhost:4873/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz#7cc8e2f94e8dc057a06e953162f0810e4e72257b"
+  integrity sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==
+  dependencies:
+    ast-types "^0.14.2"
+    lodash "^4.17.15"
+    react-docgen "^5.0.0"
+
+babel-plugin-syntax-jsx@^6.18.0:
+  version "6.18.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
+  integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
+
+babel-plugin-transform-dev@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-dev/-/babel-plugin-transform-dev-2.0.1.tgz#fec5bbfb6b9576cd8413df5bd0ae7aca32b0a2d4"
+  integrity sha512-Otu4LeO02yk+KIsDIwOPmI40TjOLT78NKmGlBxQRyq15Gqost9meZKszdi4LIrIWYAQ3plWXTLclK+IWv1DIQg==
+
+babel-plugin-transform-inline-consecutive-adds@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.3.tgz#323d47a3ea63a83a7ac3c811ae8e6941faf2b0d1"
+  integrity sha1-Mj1Ho+pjqDp6w8gRro5pQfrysNE=
+
+babel-plugin-transform-member-expression-literals@^6.9.4:
+  version "6.9.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.4.tgz#37039c9a0c3313a39495faac2ff3a6b5b9d038bf"
+  integrity sha1-NwOcmgwzE6OUlfqsL/OmtbnQOL8=
+
+babel-plugin-transform-merge-sibling-variables@^6.9.4:
+  version "6.9.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.4.tgz#85b422fc3377b449c9d1cde44087203532401dae"
+  integrity sha1-hbQi/DN3tEnJ0c3kQIcgNTJAHa4=
+
+babel-plugin-transform-minify-booleans@^6.9.4:
+  version "6.9.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.4.tgz#acbb3e56a3555dd23928e4b582d285162dd2b198"
+  integrity sha1-rLs+VqNVXdI5KOS1gtKFFi3SsZg=
+
+babel-plugin-transform-property-literals@^6.9.4:
+  version "6.9.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.4.tgz#98c1d21e255736573f93ece54459f6ce24985d39"
+  integrity sha1-mMHSHiVXNlc/k+zlRFn2ziSYXTk=
+  dependencies:
+    esutils "^2.0.2"
+
+babel-plugin-transform-react-remove-prop-types@^0.4.24:
+  version "0.4.24"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a"
+  integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==
+
+babel-plugin-transform-regexp-constructors@^0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.3.tgz#58b7775b63afcf33328fae9a5f88fbd4fb0b4965"
+  integrity sha1-WLd3W2OvzzMyj66aX4j71PsLSWU=
+
+babel-plugin-transform-remove-console@^6.9.4:
+  version "6.9.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.4.tgz#b980360c067384e24b357a588d807d3c83527780"
+  integrity sha1-uYA2DAZzhOJLNXpYjYB9PINSd4A=
+
+babel-plugin-transform-remove-debugger@^6.9.4:
+  version "6.9.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.4.tgz#42b727631c97978e1eb2d199a7aec84a18339ef2"
+  integrity sha1-QrcnYxyXl44estGZp67IShgznvI=
+
+babel-plugin-transform-remove-undefined@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.5.0.tgz#80208b31225766c630c97fa2d288952056ea22dd"
+  integrity sha512-+M7fJYFaEE/M9CXa0/IRkDbiV3wRELzA1kKQFCJ4ifhrzLKn/9VCCgj9OFmYWwBd8IB48YdgPkHYtbYq+4vtHQ==
+  dependencies:
+    babel-helper-evaluate-path "^0.5.0"
+
+babel-plugin-transform-simplify-comparison-operators@^6.9.4:
+  version "6.9.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.4.tgz#f62afe096cab0e1f68a2d753fdf283888471ceb9"
+  integrity sha1-9ir+CWyrDh9ootdT/fKDiIRxzrk=
+
+babel-plugin-transform-undefined-to-void@^6.9.4:
+  version "6.9.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz#be241ca81404030678b748717322b89d0c8fe280"
+  integrity sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA=
+
+babel-plugin-typescript-to-proptypes@^1.3.2:
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/babel-plugin-typescript-to-proptypes/-/babel-plugin-typescript-to-proptypes-1.3.2.tgz#e57e88286be0e50a7596161fcfed62c04b6bc270"
+  integrity sha512-aoeJaO1OChCME0ZoLHc5k63RGwf1wBe7cfZ8zmRqbA/BX3nUbEnXLk5qWmrTQpdQxNa1v1BkF0395EJGCDb0yQ==
+  dependencies:
+    "@babel/helper-module-imports" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-typescript" "^7.8.3"
+
+babel-plugin-typescript-to-proptypes@^1.4.2:
+  version "1.4.2"
+  resolved "https://registry.yarnpkg.com/babel-plugin-typescript-to-proptypes/-/babel-plugin-typescript-to-proptypes-1.4.2.tgz#627a08ddc6a22d1d4d2da3bbba54d6004f7a243b"
+  integrity sha512-mcDkmEwxQ0HivEAMZ82HidppYQGiISp3bcgjtRWFFG0WzwVsJ3eQCgAoD3mSXDc9ehU8xZ7ItxCo9XRgeYQ5bQ==
+  dependencies:
+    "@babel/helper-module-imports" "^7.12.5"
+    "@babel/helper-plugin-utils" "^7.10.4"
+    "@babel/plugin-syntax-typescript" "^7.12.1"
+    "@babel/types" "^7.12.6"
+
+babel-polyfill@6.26.0, babel-polyfill@^6.26.0:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
+  integrity sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=
+  dependencies:
+    babel-runtime "^6.26.0"
+    core-js "^2.5.0"
+    regenerator-runtime "^0.10.5"
+
+babel-preset-current-node-syntax@^0.1.2:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.2.tgz#fb4a4c51fe38ca60fede1dc74ab35eb843cb41d6"
+  integrity sha512-u/8cS+dEiK1SFILbOC8/rUI3ml9lboKuuMvZ/4aQnQmhecQAgPw5ew066C1ObnEAUmlx7dv/s2z52psWEtLNiw==
+  dependencies:
+    "@babel/plugin-syntax-async-generators" "^7.8.4"
+    "@babel/plugin-syntax-bigint" "^7.8.3"
+    "@babel/plugin-syntax-class-properties" "^7.8.3"
+    "@babel/plugin-syntax-json-strings" "^7.8.3"
+    "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
+    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+    "@babel/plugin-syntax-numeric-separator" "^7.8.3"
+    "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+    "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+    "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+
+babel-preset-current-node-syntax@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.0.tgz#cf5feef29551253471cfa82fc8e0f5063df07a77"
+  integrity sha512-mGkvkpocWJes1CmMKtgGUwCeeq0pOhALyymozzDWYomHTbDLwueDYG6p4TK1YOeYHCzBzYPsWkgTto10JubI1Q==
+  dependencies:
+    "@babel/plugin-syntax-async-generators" "^7.8.4"
+    "@babel/plugin-syntax-bigint" "^7.8.3"
+    "@babel/plugin-syntax-class-properties" "^7.8.3"
+    "@babel/plugin-syntax-import-meta" "^7.8.3"
+    "@babel/plugin-syntax-json-strings" "^7.8.3"
+    "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
+    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+    "@babel/plugin-syntax-numeric-separator" "^7.8.3"
+    "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+    "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+    "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+    "@babel/plugin-syntax-top-level-await" "^7.8.3"
+
+babel-preset-jest@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.5.0.tgz#c1d7f191829487a907764c65307faa0e66590b49"
+  integrity sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==
+  dependencies:
+    babel-plugin-jest-hoist "^25.5.0"
+    babel-preset-current-node-syntax "^0.1.2"
+
+babel-preset-jest@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz#747872b1171df032252426586881d62d31798fee"
+  integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==
+  dependencies:
+    babel-plugin-jest-hoist "^26.6.2"
+    babel-preset-current-node-syntax "^1.0.0"
+
+"babel-preset-minify@^0.5.0 || 0.6.0-alpha.5":
+  version "0.5.1"
+  resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.5.1.tgz#25f5d0bce36ec818be80338d0e594106e21eaa9f"
+  integrity sha512-1IajDumYOAPYImkHbrKeiN5AKKP9iOmRoO2IPbIuVp0j2iuCcj0n7P260z38siKMZZ+85d3mJZdtW8IgOv+Tzg==
+  dependencies:
+    babel-plugin-minify-builtins "^0.5.0"
+    babel-plugin-minify-constant-folding "^0.5.0"
+    babel-plugin-minify-dead-code-elimination "^0.5.1"
+    babel-plugin-minify-flip-comparisons "^0.4.3"
+    babel-plugin-minify-guarded-expressions "^0.4.4"
+    babel-plugin-minify-infinity "^0.4.3"
+    babel-plugin-minify-mangle-names "^0.5.0"
+    babel-plugin-minify-numeric-literals "^0.4.3"
+    babel-plugin-minify-replace "^0.5.0"
+    babel-plugin-minify-simplify "^0.5.1"
+    babel-plugin-minify-type-constructors "^0.4.3"
+    babel-plugin-transform-inline-consecutive-adds "^0.4.3"
+    babel-plugin-transform-member-expression-literals "^6.9.4"
+    babel-plugin-transform-merge-sibling-variables "^6.9.4"
+    babel-plugin-transform-minify-booleans "^6.9.4"
+    babel-plugin-transform-property-literals "^6.9.4"
+    babel-plugin-transform-regexp-constructors "^0.4.3"
+    babel-plugin-transform-remove-console "^6.9.4"
+    babel-plugin-transform-remove-debugger "^6.9.4"
+    babel-plugin-transform-remove-undefined "^0.5.0"
+    babel-plugin-transform-simplify-comparison-operators "^6.9.4"
+    babel-plugin-transform-undefined-to-void "^6.9.4"
+    lodash "^4.17.11"
+
+babel-preset-typescript-vue@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/babel-preset-typescript-vue/-/babel-preset-typescript-vue-1.0.3.tgz#f03e4ac3763b2b47288b1b7c2c63128737d3e1b6"
+  integrity sha512-hulpKFA7zcElZpQlpYtPj1GJWocV0+RJG5Hk8rdTBHPappythNluaQIth8iVZIYghsrk26dCINvC/lizF2B99g==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/plugin-transform-typescript" "^7.3.2"
+    "@babel/preset-typescript" "^7.3.3"
+    fast-xml-parser "^3.12.17"
+
+babel-runtime@6.26.0, babel-runtime@^6.11.6, babel-runtime@^6.23.0, babel-runtime@^6.26.0, babel-runtime@^6.6.1:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
+  integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
+  dependencies:
+    core-js "^2.4.0"
+    regenerator-runtime "^0.11.0"
+
+bail@^1.0.0:
+  version "1.0.5"
+  resolved "http://localhost:4873/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
+  integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==
+
+balanced-match@^0.4.2:
+  version "0.4.2"
+  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
+  integrity sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=
+
+balanced-match@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
+  integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
+
+base16@^1.0.0:
+  version "1.0.0"
+  resolved "http://localhost:4873/base16/-/base16-1.0.0.tgz#e297f60d7ec1014a7a971a39ebc8a98c0b681e70"
+  integrity sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=
+
+base64-js@^1.0.2:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1"
+  integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==
+
+base@^0.11.1:
+  version "0.11.2"
+  resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
+  integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
+  dependencies:
+    cache-base "^1.0.1"
+    class-utils "^0.3.5"
+    component-emitter "^1.2.1"
+    define-property "^1.0.0"
+    isobject "^3.0.1"
+    mixin-deep "^1.2.0"
+    pascalcase "^0.1.1"
+
+batch-processor@1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/batch-processor/-/batch-processor-1.0.0.tgz#75c95c32b748e0850d10c2b168f6bdbe9891ace8"
+  integrity sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=
+
+batch@0.6.1:
+  version "0.6.1"
+  resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
+  integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=
+
+bcrypt-pbkdf@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
+  integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
+  dependencies:
+    tweetnacl "^0.14.3"
+
+before-after-hook@^2.0.0, before-after-hook@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.1.0.tgz#b6c03487f44e24200dd30ca5e6a1979c5d2fb635"
+  integrity sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==
+
+better-opn@^2.0.0:
+  version "2.1.1"
+  resolved "http://localhost:4873/better-opn/-/better-opn-2.1.1.tgz#94a55b4695dc79288f31d7d0e5f658320759f7c6"
+  integrity sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==
+  dependencies:
+    open "^7.0.3"
+
+bfj@^6.1.1:
+  version "6.1.2"
+  resolved "https://registry.yarnpkg.com/bfj/-/bfj-6.1.2.tgz#325c861a822bcb358a41c78a33b8e6e2086dde7f"
+  integrity sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==
+  dependencies:
+    bluebird "^3.5.5"
+    check-types "^8.0.3"
+    hoopy "^0.1.4"
+    tryer "^1.0.1"
+
+big.js@^5.2.2:
+  version "5.2.2"
+  resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
+  integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
+
+bignumber.js@^9.0.0:
+  version "9.0.1"
+  resolved "http://localhost:4873/bignumber.js/-/bignumber.js-9.0.1.tgz#8d7ba124c882bfd8e43260c67475518d0689e4e5"
+  integrity sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==
+
+binary-extensions@^1.0.0:
+  version "1.13.1"
+  resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
+  integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
+
+binary-extensions@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9"
+  integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==
+
+binaryextensions@^2.1.2:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-2.2.0.tgz#e7c6ba82d4f5f5758c26078fe8eea28881233311"
+  integrity sha512-bHhs98rj/7i/RZpCSJ3uk55pLXOItjIrh2sRQZSM6OoktScX+LxJzvlU+FELp9j3TdcddTmmYArLSGptCTwjuw==
+
+bindings@^1.3.0, bindings@^1.5.0:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
+  integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
+  dependencies:
+    file-uri-to-path "1.0.0"
+
+bluebird@^3.3.5, bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5:
+  version "3.7.2"
+  resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
+  integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
+
+bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
+  version "4.11.8"
+  resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
+  integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==
+
+body-parser@1.19.0:
+  version "1.19.0"
+  resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
+  integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
+  dependencies:
+    bytes "3.1.0"
+    content-type "~1.0.4"
+    debug "2.6.9"
+    depd "~1.1.2"
+    http-errors "1.7.2"
+    iconv-lite "0.4.24"
+    on-finished "~2.3.0"
+    qs "6.7.0"
+    raw-body "2.4.0"
+    type-is "~1.6.17"
+
+bonjour@^3.5.0:
+  version "3.5.0"
+  resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
+  integrity sha1-jokKGD2O6aI5OzhExpGkK897yfU=
+  dependencies:
+    array-flatten "^2.1.0"
+    deep-equal "^1.0.1"
+    dns-equal "^1.0.0"
+    dns-txt "^2.0.2"
+    multicast-dns "^6.0.1"
+    multicast-dns-service-types "^1.1.0"
+
+boolbase@^1.0.0, boolbase@~1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
+  integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
+
+bootstrap-slider@9.9.0:
+  version "9.9.0"
+  resolved "http://localhost:4873/bootstrap-slider/-/bootstrap-slider-9.9.0.tgz#4e14ecc6401901da1ddf7681aa24e33b00dadce8"
+  integrity sha1-ThTsxkAZAdod33aBqiTjOwDa3Og=
+
+bootstrap-slider@^10.0.0:
+  version "10.6.2"
+  resolved "http://localhost:4873/bootstrap-slider/-/bootstrap-slider-10.6.2.tgz#7341f468c012bdaa6a1d8625d989fdeb8ed7dd38"
+  integrity sha512-8JTPZB9QVOdrGzYF3YgC3YW6ssfPeBvBwZnXffiZ7YH/zz1D0EKlZvmQsm/w3N0XjVNYQEoQ0ax+jHrErV4K1Q==
+
+bootstrap@^3.4.1:
+  version "3.4.1"
+  resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.4.1.tgz#c3a347d419e289ad11f4033e3c4132b87c081d72"
+  integrity sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA==
+
+bowser@^1.7.3:
+  version "1.9.4"
+  resolved "https://registry.yarnpkg.com/bowser/-/bowser-1.9.4.tgz#890c58a2813a9d3243704334fa81b96a5c150c9a"
+  integrity sha512-9IdMmj2KjigRq6oWhmwv1W36pDuA4STQZ8q6YO9um+x07xgYNCD3Oou+WP/3L1HNz7iqythGet3/p4wvc8AAwQ==
+
+boxen@^4.1.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64"
+  integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==
+  dependencies:
+    ansi-align "^3.0.0"
+    camelcase "^5.3.1"
+    chalk "^3.0.0"
+    cli-boxes "^2.2.0"
+    string-width "^4.1.0"
+    term-size "^2.1.0"
+    type-fest "^0.8.1"
+    widest-line "^3.1.0"
+
+brace-expansion@^1.1.7:
+  version "1.1.11"
+  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
+  integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
+  dependencies:
+    balanced-match "^1.0.0"
+    concat-map "0.0.1"
+
+brace@^0.11.0, brace@^0.11.1:
+  version "0.11.1"
+  resolved "http://localhost:4873/brace/-/brace-0.11.1.tgz#4896fcc9d544eef45f4bb7660db320d3b379fe58"
+  integrity sha1-SJb8ydVE7vRfS7dmDbMg07N5/lg=
+
+braces@^2.3.1, braces@^2.3.2:
+  version "2.3.2"
+  resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
+  integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
+  dependencies:
+    arr-flatten "^1.1.0"
+    array-unique "^0.3.2"
+    extend-shallow "^2.0.1"
+    fill-range "^4.0.0"
+    isobject "^3.0.1"
+    repeat-element "^1.1.2"
+    snapdragon "^0.8.1"
+    snapdragon-node "^2.0.1"
+    split-string "^3.0.2"
+    to-regex "^3.0.1"
+
+braces@^3.0.1, braces@~3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
+  integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+  dependencies:
+    fill-range "^7.0.1"
+
+brfs@^1.3.0:
+  version "1.6.1"
+  resolved "https://registry.yarnpkg.com/brfs/-/brfs-1.6.1.tgz#b78ce2336d818e25eea04a0947cba6d4fb8849c3"
+  integrity sha512-OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ==
+  dependencies:
+    quote-stream "^1.0.1"
+    resolve "^1.1.5"
+    static-module "^2.2.0"
+    through2 "^2.0.0"
+
+brorand@^1.0.1:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
+  integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
+
+browser-process-hrtime@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
+  integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
+
+browser-resolve@^1.11.3:
+  version "1.11.3"
+  resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6"
+  integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==
+  dependencies:
+    resolve "1.1.7"
+
+browserify-aes@^1.0.0, browserify-aes@^1.0.4:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
+  integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
+  dependencies:
+    buffer-xor "^1.0.3"
+    cipher-base "^1.0.0"
+    create-hash "^1.1.0"
+    evp_bytestokey "^1.0.3"
+    inherits "^2.0.1"
+    safe-buffer "^5.0.1"
+
+browserify-cipher@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
+  integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
+  dependencies:
+    browserify-aes "^1.0.4"
+    browserify-des "^1.0.0"
+    evp_bytestokey "^1.0.0"
+
+browserify-des@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
+  integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
+  dependencies:
+    cipher-base "^1.0.1"
+    des.js "^1.0.0"
+    inherits "^2.0.1"
+    safe-buffer "^5.1.2"
+
+browserify-rsa@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
+  integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=
+  dependencies:
+    bn.js "^4.1.0"
+    randombytes "^2.0.1"
+
+browserify-sign@^4.0.0:
+  version "4.0.4"
+  resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
+  integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=
+  dependencies:
+    bn.js "^4.1.1"
+    browserify-rsa "^4.0.0"
+    create-hash "^1.1.0"
+    create-hmac "^1.1.2"
+    elliptic "^6.0.0"
+    inherits "^2.0.1"
+    parse-asn1 "^5.0.0"
+
+browserify-zlib@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
+  integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
+  dependencies:
+    pako "~1.0.5"
+
+browserslist@4.10.0:
+  version "4.10.0"
+  resolved "http://localhost:4873/browserslist/-/browserslist-4.10.0.tgz#f179737913eaf0d2b98e4926ac1ca6a15cbcc6a9"
+  integrity sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==
+  dependencies:
+    caniuse-lite "^1.0.30001035"
+    electron-to-chromium "^1.3.378"
+    node-releases "^1.1.52"
+    pkg-up "^3.1.0"
+
+browserslist@4.7.0:
+  version "4.7.0"
+  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17"
+  integrity sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==
+  dependencies:
+    caniuse-lite "^1.0.30000989"
+    electron-to-chromium "^1.3.247"
+    node-releases "^1.1.29"
+
+browserslist@^4.0.0:
+  version "4.16.3"
+  resolved "http://localhost:4873/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717"
+  integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==
+  dependencies:
+    caniuse-lite "^1.0.30001181"
+    colorette "^1.2.1"
+    electron-to-chromium "^1.3.649"
+    escalade "^3.1.1"
+    node-releases "^1.1.70"
+
+browserslist@^4.11.0, browserslist@^4.14.5, browserslist@^4.16.1:
+  version "4.16.1"
+  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766"
+  integrity sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==
+  dependencies:
+    caniuse-lite "^1.0.30001173"
+    colorette "^1.2.1"
+    electron-to-chromium "^1.3.634"
+    escalade "^3.1.1"
+    node-releases "^1.1.69"
+
+bs-logger@0.x:
+  version "0.2.6"
+  resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8"
+  integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==
+  dependencies:
+    fast-json-stable-stringify "2.x"
+
+bser@2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
+  integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
+  dependencies:
+    node-int64 "^0.4.0"
+
+btoa-lite@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337"
+  integrity sha1-M3dm2hWAEhD92VbCLpxokaudAzc=
+
+buffer-equal@0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b"
+  integrity sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=
+
+buffer-from@1.x, buffer-from@^1.0.0:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
+  integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
+
+buffer-indexof@^1.0.0:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c"
+  integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==
+
+buffer-xor@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
+  integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
+
+buffer@^4.3.0:
+  version "4.9.2"
+  resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
+  integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
+  dependencies:
+    base64-js "^1.0.2"
+    ieee754 "^1.1.4"
+    isarray "^1.0.0"
+
+builtin-status-codes@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
+  integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
+
+builtins@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88"
+  integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og=
+
+byline@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1"
+  integrity sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE=
+
+byte-size@^5.0.1:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-5.0.1.tgz#4b651039a5ecd96767e71a3d7ed380e48bed4191"
+  integrity sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw==
+
+bytes@3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
+  integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
+
+bytes@3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
+  integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
+
+cacache@^12.0.0, cacache@^12.0.2, cacache@^12.0.3:
+  version "12.0.4"
+  resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
+  integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
+  dependencies:
+    bluebird "^3.5.5"
+    chownr "^1.1.1"
+    figgy-pudding "^3.5.1"
+    glob "^7.1.4"
+    graceful-fs "^4.1.15"
+    infer-owner "^1.0.3"
+    lru-cache "^5.1.1"
+    mississippi "^3.0.0"
+    mkdirp "^0.5.1"
+    move-concurrently "^1.0.1"
+    promise-inflight "^1.0.1"
+    rimraf "^2.6.3"
+    ssri "^6.0.1"
+    unique-filename "^1.1.1"
+    y18n "^4.0.0"
+
+cacache@^13.0.1:
+  version "13.0.1"
+  resolved "https://registry.yarnpkg.com/cacache/-/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c"
+  integrity sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==
+  dependencies:
+    chownr "^1.1.2"
+    figgy-pudding "^3.5.1"
+    fs-minipass "^2.0.0"
+    glob "^7.1.4"
+    graceful-fs "^4.2.2"
+    infer-owner "^1.0.4"
+    lru-cache "^5.1.1"
+    minipass "^3.0.0"
+    minipass-collect "^1.0.2"
+    minipass-flush "^1.0.5"
+    minipass-pipeline "^1.2.2"
+    mkdirp "^0.5.1"
+    move-concurrently "^1.0.1"
+    p-map "^3.0.0"
+    promise-inflight "^1.0.1"
+    rimraf "^2.7.1"
+    ssri "^7.0.0"
+    unique-filename "^1.1.1"
+
+cacache@^15.0.5:
+  version "15.0.5"
+  resolved "http://localhost:4873/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0"
+  integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==
+  dependencies:
+    "@npmcli/move-file" "^1.0.1"
+    chownr "^2.0.0"
+    fs-minipass "^2.0.0"
+    glob "^7.1.4"
+    infer-owner "^1.0.4"
+    lru-cache "^6.0.0"
+    minipass "^3.1.1"
+    minipass-collect "^1.0.2"
+    minipass-flush "^1.0.5"
+    minipass-pipeline "^1.2.2"
+    mkdirp "^1.0.3"
+    p-map "^4.0.0"
+    promise-inflight "^1.0.1"
+    rimraf "^3.0.2"
+    ssri "^8.0.0"
+    tar "^6.0.2"
+    unique-filename "^1.1.1"
+
+cache-base@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
+  integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
+  dependencies:
+    collection-visit "^1.0.0"
+    component-emitter "^1.2.1"
+    get-value "^2.0.6"
+    has-value "^1.0.0"
+    isobject "^3.0.1"
+    set-value "^2.0.0"
+    to-object-path "^0.3.0"
+    union-value "^1.0.0"
+    unset-value "^1.0.0"
+
+cache-loader@^1.2.2:
+  version "1.2.5"
+  resolved "http://localhost:4873/cache-loader/-/cache-loader-1.2.5.tgz#9ab15b0ae5f546f376083a695fc1a75f546cb266"
+  integrity sha512-enWKEQ4kO3YreDFd7AtVRjtJBmNiqh/X9hVDReu0C4qm8gsGmySkwuWtdc+N5O+vq5FzxL1mIZc30NyXCB7o/Q==
+  dependencies:
+    loader-utils "^1.1.0"
+    mkdirp "^0.5.1"
+    neo-async "^2.5.0"
+    schema-utils "^0.4.2"
+
+cachedir@2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.1.0.tgz#b448c32b44cd9c0cd6ce4c419fa5b3c112c02191"
+  integrity sha512-xGBpPqoBvn3unBW7oxgb8aJn42K0m9m1/wyjmazah10Fq7bROGG3kRAE6OIyr3U3PIJUqGuebhCEdMk9OKJG0A==
+
+call-bind@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce"
+  integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==
+  dependencies:
+    function-bind "^1.1.1"
+    get-intrinsic "^1.0.0"
+
+call-bind@^1.0.2:
+  version "1.0.2"
+  resolved "http://localhost:4873/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
+  integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
+  dependencies:
+    function-bind "^1.1.1"
+    get-intrinsic "^1.0.2"
+
+call-me-maybe@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
+  integrity sha1-JtII6onje1y95gJQoV8DHBak1ms=
+
+caller-callsite@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
+  integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
+  dependencies:
+    callsites "^2.0.0"
+
+caller-path@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
+  integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
+  dependencies:
+    caller-callsite "^2.0.0"
+
+callsites@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
+  integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
+
+callsites@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
+  integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
+
+camel-case@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
+  integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=
+  dependencies:
+    no-case "^2.2.0"
+    upper-case "^1.1.1"
+
+camel-case@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.1.tgz#1fc41c854f00e2f7d0139dfeba1542d6896fe547"
+  integrity sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q==
+  dependencies:
+    pascal-case "^3.1.1"
+    tslib "^1.10.0"
+
+camelcase-css@2.0.1:
+  version "2.0.1"
+  resolved "http://localhost:4873/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
+  integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
+
+camelcase-keys@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
+  integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc=
+  dependencies:
+    camelcase "^2.0.0"
+    map-obj "^1.0.0"
+
+camelcase-keys@^4.0.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77"
+  integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c=
+  dependencies:
+    camelcase "^4.1.0"
+    map-obj "^2.0.0"
+    quick-lru "^1.0.0"
+
+camelcase-keys@^6.2.2:
+  version "6.2.2"
+  resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0"
+  integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==
+  dependencies:
+    camelcase "^5.3.1"
+    map-obj "^4.0.0"
+    quick-lru "^4.0.1"
+
+camelcase@^2.0.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
+  integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=
+
+camelcase@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
+  integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
+
+camelcase@^5.0.0, camelcase@^5.3.1:
+  version "5.3.1"
+  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
+  integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
+
+camelcase@^6.0.0, camelcase@^6.2.0:
+  version "6.2.0"
+  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
+  integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
+
+can-use-dom@^0.1.0:
+  version "0.1.0"
+  resolved "https://registry.yarnpkg.com/can-use-dom/-/can-use-dom-0.1.0.tgz#22cc4a34a0abc43950f42c6411024a3f6366b45a"
+  integrity sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo=
+
+caniuse-api@^3.0.0:
+  version "3.0.0"
+  resolved "http://localhost:4873/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
+  integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
+  dependencies:
+    browserslist "^4.0.0"
+    caniuse-lite "^1.0.0"
+    lodash.memoize "^4.1.2"
+    lodash.uniq "^4.5.0"
+
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001035, caniuse-lite@^1.0.30001181:
+  version "1.0.30001185"
+  resolved "http://localhost:4873/caniuse-lite/-/caniuse-lite-1.0.30001185.tgz#3482a407d261da04393e2f0d61eefbc53be43b95"
+  integrity sha512-Fpi4kVNtNvJ15H0F6vwmXtb3tukv3Zg3qhKkOGUq7KJ1J6b9kf4dnNgtEAFXhRsJo0gNj9W60+wBvn0JcTvdTg==
+
+caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001036:
+  version "1.0.30001038"
+  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001038.tgz#44da3cbca2ab6cb6aa83d1be5d324e17f141caff"
+  integrity sha512-zii9quPo96XfOiRD4TrfYGs+QsGZpb2cGiMAzPjtf/hpFgB6zCPZgJb7I1+EATeMw/o+lG8FyRAnI+CWStHcaQ==
+
+caniuse-lite@^1.0.30001173:
+  version "1.0.30001179"
+  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001179.tgz#b0803883b4471a6c62066fb1752756f8afc699c8"
+  integrity sha512-blMmO0QQujuUWZKyVrD1msR4WNDAqb/UPO1Sw2WWsQ7deoM5bJiicKnWJ1Y0NS/aGINSnKPIWBMw5luX+NDUCA==
+
+capture-exit@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
+  integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
+  dependencies:
+    rsvp "^4.8.4"
+
+capture-stack-trace@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d"
+  integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==
+
+cardinal@~0.4.2:
+  version "0.4.4"
+  resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-0.4.4.tgz#ca5bb68a5b511b90fe93b9acea49bdee5c32bfe2"
+  integrity sha1-ylu2iltRG5D+k7ms6km97lwyv+I=
+  dependencies:
+    ansicolors "~0.2.1"
+    redeyed "~0.4.0"
+
+case-sensitive-paths-webpack-plugin@^2.2.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7"
+  integrity sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==
+
+caseless@~0.12.0:
+  version "0.12.0"
+  resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
+  integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
+
+ccount@^1.0.0:
+  version "1.1.0"
+  resolved "http://localhost:4873/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043"
+  integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==
+
+chalk@2.3.1:
+  version "2.3.1"
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796"
+  integrity sha512-QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g==
+  dependencies:
+    ansi-styles "^3.2.0"
+    escape-string-regexp "^1.0.5"
+    supports-color "^5.2.0"
+
+chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2:
+  version "2.4.2"
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
+  integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
+  dependencies:
+    ansi-styles "^3.2.1"
+    escape-string-regexp "^1.0.5"
+    supports-color "^5.3.0"
+
+chalk@^1.0.0, chalk@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
+  integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
+  dependencies:
+    ansi-styles "^2.2.1"
+    escape-string-regexp "^1.0.2"
+    has-ansi "^2.0.0"
+    strip-ansi "^3.0.0"
+    supports-color "^2.0.0"
+
+chalk@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
+  integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
+  dependencies:
+    ansi-styles "^4.1.0"
+    supports-color "^7.1.0"
+
+chalk@^4.0.0, chalk@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
+  integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
+  dependencies:
+    ansi-styles "^4.1.0"
+    supports-color "^7.1.0"
+
+chalk@~0.4.0:
+  version "0.4.0"
+  resolved "http://localhost:4873/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"
+  integrity sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8=
+  dependencies:
+    ansi-styles "~1.0.0"
+    has-color "~0.1.0"
+    strip-ansi "~0.1.0"
+
+change-case@^3.0.1, change-case@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/change-case/-/change-case-3.1.0.tgz#0e611b7edc9952df2e8513b27b42de72647dd17e"
+  integrity sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==
+  dependencies:
+    camel-case "^3.0.0"
+    constant-case "^2.0.0"
+    dot-case "^2.1.0"
+    header-case "^1.0.0"
+    is-lower-case "^1.1.0"
+    is-upper-case "^1.1.0"
+    lower-case "^1.1.1"
+    lower-case-first "^1.0.0"
+    no-case "^2.3.2"
+    param-case "^2.1.0"
+    pascal-case "^2.0.0"
+    path-case "^2.1.0"
+    sentence-case "^2.1.0"
+    snake-case "^2.1.0"
+    swap-case "^1.1.0"
+    title-case "^2.1.0"
+    upper-case "^1.1.1"
+    upper-case-first "^1.1.0"
+
+change-emitter@^0.1.2:
+  version "0.1.6"
+  resolved "https://registry.yarnpkg.com/change-emitter/-/change-emitter-0.1.6.tgz#e8b2fe3d7f1ab7d69a32199aff91ea6931409515"
+  integrity sha1-6LL+PX8at9aaMhma/5HqaTFAlRU=
+
+char-regex@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
+  integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
+
+character-entities-legacy@^1.0.0:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1"
+  integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==
+
+character-entities@^1.0.0:
+  version "1.2.4"
+  resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b"
+  integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==
+
+character-reference-invalid@^1.0.0:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560"
+  integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==
+
+chardet@^0.7.0:
+  version "0.7.0"
+  resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
+  integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
+
+charenc@0.0.2:
+  version "0.0.2"
+  resolved "http://localhost:4873/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
+  integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=
+
+check-types@^8.0.3:
+  version "8.0.3"
+  resolved "https://registry.yarnpkg.com/check-types/-/check-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552"
+  integrity sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==
+
+cheerio@^1.0.0-rc.3:
+  version "1.0.0-rc.3"
+  resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6"
+  integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==
+  dependencies:
+    css-select "~1.2.0"
+    dom-serializer "~0.1.1"
+    entities "~1.1.1"
+    htmlparser2 "^3.9.1"
+    lodash "^4.15.0"
+    parse5 "^3.0.1"
+
+chokidar@^2.0.4, chokidar@^2.1.8:
+  version "2.1.8"
+  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
+  integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
+  dependencies:
+    anymatch "^2.0.0"
+    async-each "^1.0.1"
+    braces "^2.3.2"
+    glob-parent "^3.1.0"
+    inherits "^2.0.3"
+    is-binary-path "^1.0.0"
+    is-glob "^4.0.0"
+    normalize-path "^3.0.0"
+    path-is-absolute "^1.0.0"
+    readdirp "^2.2.1"
+    upath "^1.1.1"
+  optionalDependencies:
+    fsevents "^1.2.7"
+
+chokidar@^3.3.0:
+  version "3.5.1"
+  resolved "http://localhost:4873/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
+  integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
+  dependencies:
+    anymatch "~3.1.1"
+    braces "~3.0.2"
+    glob-parent "~5.1.0"
+    is-binary-path "~2.1.0"
+    is-glob "~4.0.1"
+    normalize-path "~3.0.0"
+    readdirp "~3.5.0"
+  optionalDependencies:
+    fsevents "~2.3.1"
+
+chokidar@^3.4.0, chokidar@^3.4.1:
+  version "3.4.3"
+  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b"
+  integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==
+  dependencies:
+    anymatch "~3.1.1"
+    braces "~3.0.2"
+    glob-parent "~5.1.0"
+    is-binary-path "~2.1.0"
+    is-glob "~4.0.1"
+    normalize-path "~3.0.0"
+    readdirp "~3.5.0"
+  optionalDependencies:
+    fsevents "~2.1.2"
+
+chownr@^1.1.1, chownr@^1.1.2:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
+  integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
+
+chownr@^2.0.0:
+  version "2.0.0"
+  resolved "http://localhost:4873/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
+  integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
+
+chromatic@^5.4.0:
+  version "5.4.0"
+  resolved "https://registry.yarnpkg.com/chromatic/-/chromatic-5.4.0.tgz#0dde7fc1ec6decc378915d73fb71e2eaee0330a3"
+  integrity sha512-2OAfvDaQm3rbDcvCIZgfEeRQKmyqzm9ue5lT+927/U+nmv7EojTKEakmvqhApR8YFKHyEknlkIcbVGTiTo7ySA==
+  dependencies:
+    "@actions/core" "^1.2.4"
+    "@actions/github" "^4.0.0"
+    "@babel/runtime" "^7.12.1"
+    "@chromaui/localtunnel" "2.0.1"
+    async-retry "^1.3.1"
+    chalk "^4.0.0"
+    cross-spawn "^7.0.2"
+    debug "^4.2.0"
+    dotenv "^8.2.0"
+    env-ci "^5.0.2"
+    esm "^3.2.25"
+    execa "^4.0.0"
+    fake-tag "^2.0.0"
+    fs-extra "^9.0.0"
+    jsonfile "^6.0.1"
+    junit-report-builder "2.1.0"
+    listr "0.14.3"
+    meow "^7.1.1"
+    node-ask "^1.0.1"
+    node-fetch "^2.6.0"
+    node-loggly-bulk "^2.2.4"
+    p-limit "3.0.2"
+    picomatch "2.2.2"
+    pkg-up "^3.1.0"
+    pluralize "^8.0.0"
+    progress-stream "^2.0.0"
+    semver "^7.1.3"
+    slash "^3.0.0"
+    strip-ansi "6.0.0"
+    tmp-promise "3.0.2"
+    tree-kill "^1.2.2"
+    ts-dedent "^1.1.1"
+    util-deprecate "^1.0.2"
+    uuid "^8.3.1"
+    yarn-or-npm "^3.0.1"
+
+chrome-trace-event@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4"
+  integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
+  dependencies:
+    tslib "^1.9.0"
+
+chrono-node@^1.3.11:
+  version "1.4.8"
+  resolved "http://localhost:4873/chrono-node/-/chrono-node-1.4.8.tgz#10af3f4ed025fa5c6a9abeb7922927584f07f2ef"
+  integrity sha512-WwfW4/+i1e6tHx5opw/VCfxXnai12/tT5GK+wSHwKtdb0ZkAoxRGIfL8IzuFr/JEQTw4DxevysyX6+YbZSRKLQ==
+  dependencies:
+    dayjs "^1.8.19"
+
+ci-info@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
+  integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
+
+cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
+  integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
+  dependencies:
+    inherits "^2.0.1"
+    safe-buffer "^5.0.1"
+
+circular-json-es6@^2.0.1:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/circular-json-es6/-/circular-json-es6-2.0.2.tgz#e4f4a093e49fb4b6aba1157365746112a78bd344"
+  integrity sha512-ODYONMMNb3p658Zv+Pp+/XPa5s6q7afhz3Tzyvo+VRh9WIrJ64J76ZC4GQxnlye/NesTn09jvOiuE8+xxfpwhQ==
+
+cjs-module-lexer@^0.6.0:
+  version "0.6.0"
+  resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz#4186fcca0eae175970aee870b9fe2d6cf8d5655f"
+  integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==
+
+class-utils@^0.3.5:
+  version "0.3.6"
+  resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
+  integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
+  dependencies:
+    arr-union "^3.1.0"
+    define-property "^0.2.5"
+    isobject "^3.0.0"
+    static-extend "^0.1.1"
+
+classnames@2.x, classnames@^2.2.1, classnames@^2.2.3, classnames@^2.2.4, classnames@^2.2.5, classnames@^2.2.6:
+  version "2.2.6"
+  resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
+  integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==
+
+clean-css@^4.2.3:
+  version "4.2.3"
+  resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78"
+  integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==
+  dependencies:
+    source-map "~0.6.0"
+
+clean-regexp@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7"
+  integrity sha1-jffHquUf02h06PjQW5GAvBGj/tc=
+  dependencies:
+    escape-string-regexp "^1.0.5"
+
+clean-stack@^2.0.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
+  integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
+
+clean-webpack-plugin@^3.0.0:
+  version "3.0.0"
+  resolved "http://localhost:4873/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz#a99d8ec34c1c628a4541567aa7b457446460c62b"
+  integrity sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==
+  dependencies:
+    "@types/webpack" "^4.4.31"
+    del "^4.1.1"
+
+cli-boxes@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
+  integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM=
+
+cli-boxes@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d"
+  integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==
+
+cli-cursor@^2.0.0, cli-cursor@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
+  integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
+  dependencies:
+    restore-cursor "^2.0.0"
+
+cli-cursor@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
+  integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
+  dependencies:
+    restore-cursor "^3.1.0"
+
+cli-table3@0.5.1:
+  version "0.5.1"
+  resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202"
+  integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==
+  dependencies:
+    object-assign "^4.1.0"
+    string-width "^2.1.1"
+  optionalDependencies:
+    colors "^1.1.2"
+
+cli-table3@0.6.0:
+  version "0.6.0"
+  resolved "http://localhost:4873/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee"
+  integrity sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==
+  dependencies:
+    object-assign "^4.1.0"
+    string-width "^4.2.0"
+  optionalDependencies:
+    colors "^1.1.2"
+
+cli-table@^0.3.1:
+  version "0.3.1"
+  resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"
+  integrity sha1-9TsFJmqLGguTSz0IIebi3FkUriM=
+  dependencies:
+    colors "1.0.3"
+
+cli-truncate@2.1.0, cli-truncate@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
+  integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
+  dependencies:
+    slice-ansi "^3.0.0"
+    string-width "^4.2.0"
+
+cli-truncate@^0.2.1:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574"
+  integrity sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=
+  dependencies:
+    slice-ansi "0.0.4"
+    string-width "^1.0.1"
+
+cli-width@^2.0.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
+  integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=
+
+clipboard@^2.0.0:
+  version "2.0.6"
+  resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376"
+  integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg==
+  dependencies:
+    good-listener "^1.2.2"
+    select "^1.1.2"
+    tiny-emitter "^2.0.0"
+
+cliui@^4.0.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
+  integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==
+  dependencies:
+    string-width "^2.1.1"
+    strip-ansi "^4.0.0"
+    wrap-ansi "^2.0.0"
+
+cliui@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
+  integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
+  dependencies:
+    string-width "^3.1.0"
+    strip-ansi "^5.2.0"
+    wrap-ansi "^5.1.0"
+
+cliui@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
+  integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
+  dependencies:
+    string-width "^4.2.0"
+    strip-ansi "^6.0.0"
+    wrap-ansi "^6.2.0"
+
+clone-buffer@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58"
+  integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg=
+
+clone-deep@^0.2.4:
+  version "0.2.4"
+  resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6"
+  integrity sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=
+  dependencies:
+    for-own "^0.1.3"
+    is-plain-object "^2.0.1"
+    kind-of "^3.0.2"
+    lazy-cache "^1.0.3"
+    shallow-clone "^0.1.2"
+
+clone-deep@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
+  integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
+  dependencies:
+    is-plain-object "^2.0.4"
+    kind-of "^6.0.2"
+    shallow-clone "^3.0.0"
+
+clone-stats@^0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1"
+  integrity sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=
+
+clone-stats@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680"
+  integrity sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=
+
+clone@^1.0.0, clone@^1.0.2:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
+  integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
+
+clone@^2.1.1:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f"
+  integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=
+
+cloneable-readable@^1.0.0:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.3.tgz#120a00cb053bfb63a222e709f9683ea2e11d8cec"
+  integrity sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==
+  dependencies:
+    inherits "^2.0.1"
+    process-nextick-args "^2.0.0"
+    readable-stream "^2.3.5"
+
+clsx@^1.0.4:
+  version "1.1.1"
+  resolved "http://localhost:4873/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188"
+  integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==
+
+co@^4.6.0:
+  version "4.6.0"
+  resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
+  integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
+
+coa@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
+  integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
+  dependencies:
+    "@types/q" "^1.5.1"
+    chalk "^2.4.1"
+    q "^1.1.2"
+
+code-point-at@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
+  integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
+
+collapse-white-space@^1.0.2:
+  version "1.0.6"
+  resolved "http://localhost:4873/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287"
+  integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==
+
+collect-v8-coverage@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.0.tgz#150ee634ac3650b71d9c985eb7f608942334feb1"
+  integrity sha512-VKIhJgvk8E1W28m5avZ2Gv2Ruv5YiF56ug2oclvaG9md69BuZImMG2sk9g7QNKLUbtYAKQjXjYxbYZVUlMMKmQ==
+
+collection-visit@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
+  integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
+  dependencies:
+    map-visit "^1.0.0"
+    object-visit "^1.0.0"
+
+color-convert@^1.9.0, color-convert@^1.9.1:
+  version "1.9.3"
+  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+  integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
+  dependencies:
+    color-name "1.1.3"
+
+color-convert@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+  integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+  dependencies:
+    color-name "~1.1.4"
+
+color-name@1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+  integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
+
+color-name@^1.0.0, color-name@~1.1.4:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+  integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+
+color-string@^1.5.4:
+  version "1.5.4"
+  resolved "http://localhost:4873/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6"
+  integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==
+  dependencies:
+    color-name "^1.0.0"
+    simple-swizzle "^0.2.2"
+
+color@^3.0.0:
+  version "3.1.3"
+  resolved "http://localhost:4873/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e"
+  integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==
+  dependencies:
+    color-convert "^1.9.1"
+    color-string "^1.5.4"
+
+colorette@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
+  integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
+
+colors@1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b"
+  integrity sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=
+
+colors@^1.1.2:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
+  integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
+
+columnify@^1.5.4:
+  version "1.5.4"
+  resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb"
+  integrity sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs=
+  dependencies:
+    strip-ansi "^3.0.0"
+    wcwidth "^1.0.0"
+
+combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6:
+  version "1.0.8"
+  resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
+  integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
+  dependencies:
+    delayed-stream "~1.0.0"
+
+comma-separated-tokens@^1.0.0:
+  version "1.0.8"
+  resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea"
+  integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==
+
+commander@2, commander@^2.18.0, commander@^2.19.0, commander@^2.20.0, commander@^2.20.3, commander@~2.20.3:
+  version "2.20.3"
+  resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
+  integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
+
+commander@^4.0.1, commander@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
+  integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
+
+commander@^5.0.0, commander@^5.1.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae"
+  integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==
+
+commitizen@^3.0.7:
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/commitizen/-/commitizen-3.1.2.tgz#29ddd8b39396923e9058a0e4840cbeef144290be"
+  integrity sha512-eD0uTUsogu8ksFjFFYq75LLfXeLXsCIa27TPfOqvBI+tCx1Pp5QfKqC9oC+qTpSz3nTn9/+7TL5mE/wurB22JQ==
+  dependencies:
+    cachedir "2.1.0"
+    cz-conventional-changelog "2.1.0"
+    dedent "0.7.0"
+    detect-indent "^5.0.0"
+    find-node-modules "2.0.0"
+    find-root "1.1.0"
+    fs-extra "^7.0.0"
+    glob "7.1.3"
+    inquirer "6.2.0"
+    is-utf8 "^0.2.1"
+    lodash "4.17.14"
+    minimist "1.2.0"
+    shelljs "0.7.6"
+    strip-bom "3.0.0"
+    strip-json-comments "2.0.1"
+
+common-tags@^1.5.1:
+  version "1.8.0"
+  resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937"
+  integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==
+
+commondir@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
+  integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
+
+compare-func@^1.3.1:
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648"
+  integrity sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg=
+  dependencies:
+    array-ify "^1.0.0"
+    dot-prop "^3.0.0"
+
+compare-versions@^3.6.0:
+  version "3.6.0"
+  resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62"
+  integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==
+
+complex.js@^2.0.11:
+  version "2.0.11"
+  resolved "https://registry.yarnpkg.com/complex.js/-/complex.js-2.0.11.tgz#09a873fbf15ffd8c18c9c2201ccef425c32b8bf1"
+  integrity sha512-6IArJLApNtdg1P1dFtn3dnyzoZBEF0MwMnrfF1exSBRpZYoy4yieMkpZhQDC0uwctw48vii0CFVyHfpgZ/DfGw==
+
+component-emitter@^1.2.1:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
+  integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
+
+compressible@~2.0.16:
+  version "2.0.18"
+  resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
+  integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
+  dependencies:
+    mime-db ">= 1.43.0 < 2"
+
+compression@^1.7.4:
+  version "1.7.4"
+  resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
+  integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
+  dependencies:
+    accepts "~1.3.5"
+    bytes "3.0.0"
+    compressible "~2.0.16"
+    debug "2.6.9"
+    on-headers "~1.0.2"
+    safe-buffer "5.1.2"
+    vary "~1.1.2"
+
+compute-scroll-into-view@^1.0.16:
+  version "1.0.16"
+  resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.16.tgz#5b7bf4f7127ea2c19b750353d7ce6776a90ee088"
+  integrity sha512-a85LHKY81oQnikatZYA90pufpZ6sQx++BoCxOEMsjpZx+ZnaKGQnCyCehTRr/1p9GBIAHTjcU9k71kSYWloLiQ==
+
+concat-map@0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+  integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
+
+concat-stream@^1.5.0, concat-stream@~1.6.0:
+  version "1.6.2"
+  resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
+  integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
+  dependencies:
+    buffer-from "^1.0.0"
+    inherits "^2.0.3"
+    readable-stream "^2.2.2"
+    typedarray "^0.0.6"
+
+concat-stream@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1"
+  integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==
+  dependencies:
+    buffer-from "^1.0.0"
+    inherits "^2.0.3"
+    readable-stream "^3.0.2"
+    typedarray "^0.0.6"
+
+config-chain@^1.1.11, config-chain@^1.1.12:
+  version "1.1.12"
+  resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa"
+  integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==
+  dependencies:
+    ini "^1.3.4"
+    proto-list "~1.2.1"
+
+confusing-browser-globals@^1.0.10:
+  version "1.0.10"
+  resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz#30d1e7f3d1b882b25ec4933d1d1adac353d20a59"
+  integrity sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==
+
+connect-history-api-fallback@^1.6.0:
+  version "1.6.0"
+  resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc"
+  integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
+
+console-browserify@^1.1.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
+  integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
+
+console-control-strings@^1.0.0, console-control-strings@~1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
+  integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
+
+constant-case@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-2.0.0.tgz#4175764d389d3fa9c8ecd29186ed6005243b6a46"
+  integrity sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=
+  dependencies:
+    snake-case "^2.1.0"
+    upper-case "^1.1.1"
+
+constants-browserify@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
+  integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
+
+contains-path@^0.1.0:
+  version "0.1.0"
+  resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
+  integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=
+
+content-disposition@0.5.3:
+  version "0.5.3"
+  resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
+  integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
+  dependencies:
+    safe-buffer "5.1.2"
+
+content-type@~1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
+  integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
+
+conventional-changelog-angular@^1.3.3:
+  version "1.6.6"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz#b27f2b315c16d0a1f23eb181309d0e6a4698ea0f"
+  integrity sha512-suQnFSqCxRwyBxY68pYTsFkG0taIdinHLNEAX5ivtw8bCRnIgnpvcHmlR/yjUyZIrNPYAoXlY1WiEKWgSE4BNg==
+  dependencies:
+    compare-func "^1.3.1"
+    q "^1.5.1"
+
+conventional-changelog-angular@^5.0.3, conventional-changelog-angular@^5.0.6:
+  version "5.0.6"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.6.tgz#269540c624553aded809c29a3508fdc2b544c059"
+  integrity sha512-QDEmLa+7qdhVIv8sFZfVxU1VSyVvnXPsxq8Vam49mKUcO1Z8VTLEJk9uI21uiJUsnmm0I4Hrsdc9TgkOQo9WSA==
+  dependencies:
+    compare-func "^1.3.1"
+    q "^1.5.1"
+
+conventional-changelog-atom@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.3.tgz#3bd14280aa09fe3ec49a0e8fe97b5002db02aad4"
+  integrity sha512-szZe2ut97qNO6vCCMkm1I/tWu6ol4Rr8a9Lx0y/VlpDnpY0PNp+oGpFgU55lplhx+I3Lro9Iv4/gRj0knfgjzg==
+  dependencies:
+    q "^1.5.1"
+
+conventional-changelog-cli@^2.0.12:
+  version "2.0.31"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-2.0.31.tgz#3345581170fbb540416946e460fef519a64aef43"
+  integrity sha512-nMINylKAamBLM3OmD7/44d9TPZ3V58IDTXoGC/QtXxve+1Sj37BQTzIEW3TNaviZ2ZV/b5Dqg0eSk4DNP5fBdA==
+  dependencies:
+    add-stream "^1.0.0"
+    conventional-changelog "^3.1.18"
+    lodash "^4.17.15"
+    meow "^5.0.0"
+    tempfile "^3.0.0"
+
+conventional-changelog-codemirror@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.3.tgz#ebc088154684f8f5171446b8d546ba6b460d46f2"
+  integrity sha512-t2afackdgFV2yBdHhWPqrKbpaQeVnz2hSJKdWqjasPo5EpIB6TBL0er3cOP1mnGQmuzk9JSvimNSuqjWGDtU5Q==
+  dependencies:
+    q "^1.5.1"
+
+conventional-changelog-conventionalcommits@^4.2.3:
+  version "4.2.3"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.2.3.tgz#22855b32d57d0328951c1c2dc01b172a5f24ea37"
+  integrity sha512-atGa+R4vvEhb8N/8v3IoW59gCBJeeFiX6uIbPu876ENAmkMwsenyn0R21kdDHJFLQdy6zW4J6b4xN8KI3b9oww==
+  dependencies:
+    compare-func "^1.3.1"
+    lodash "^4.17.15"
+    q "^1.5.1"
+
+conventional-changelog-core@^3.1.6:
+  version "3.2.3"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-3.2.3.tgz#b31410856f431c847086a7dcb4d2ca184a7d88fb"
+  integrity sha512-LMMX1JlxPIq/Ez5aYAYS5CpuwbOk6QFp8O4HLAcZxe3vxoCtABkhfjetk8IYdRB9CDQGwJFLR3Dr55Za6XKgUQ==
+  dependencies:
+    conventional-changelog-writer "^4.0.6"
+    conventional-commits-parser "^3.0.3"
+    dateformat "^3.0.0"
+    get-pkg-repo "^1.0.0"
+    git-raw-commits "2.0.0"
+    git-remote-origin-url "^2.0.0"
+    git-semver-tags "^2.0.3"
+    lodash "^4.2.1"
+    normalize-package-data "^2.3.5"
+    q "^1.5.1"
+    read-pkg "^3.0.0"
+    read-pkg-up "^3.0.0"
+    through2 "^3.0.0"
+
+conventional-changelog-core@^4.1.4:
+  version "4.1.4"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-4.1.4.tgz#39be27fca6ef20a0f998d7a3a1e97cfa8a055cb6"
+  integrity sha512-LO58ZbEpp1Ul+y/vOI8rJRsWkovsYkCFbOCVgi6UnVfU8WC0F8K8VQQwaBZWWUpb6JvEiN4GBR5baRP2txZ+Vg==
+  dependencies:
+    add-stream "^1.0.0"
+    conventional-changelog-writer "^4.0.11"
+    conventional-commits-parser "^3.0.8"
+    dateformat "^3.0.0"
+    get-pkg-repo "^1.0.0"
+    git-raw-commits "2.0.0"
+    git-remote-origin-url "^2.0.0"
+    git-semver-tags "^3.0.1"
+    lodash "^4.17.15"
+    normalize-package-data "^2.3.5"
+    q "^1.5.1"
+    read-pkg "^3.0.0"
+    read-pkg-up "^3.0.0"
+    through2 "^3.0.0"
+
+conventional-changelog-ember@^2.0.4:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.4.tgz#c29b78e4af7825cbecb6c3fd6086ca5c09471ac1"
+  integrity sha512-q1u73sO9uCnxN4TSw8xu6MRU8Y1h9kpwtcdJuNRwu/LSKI1IE/iuNSH5eQ6aLlQ3HTyrIpTfUuVybW4W0F17rA==
+  dependencies:
+    q "^1.5.1"
+
+conventional-changelog-eslint@^3.0.4:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.4.tgz#8f4736a23e0cd97e890e76fccc287db2f205f2ff"
+  integrity sha512-CPwTUENzhLGl3auunrJxiIEWncAGaby7gOFCdj2gslIuOFJ0KPJVOUhRz4Da/I53sdo/7UncUJkiLg94jEsjxg==
+  dependencies:
+    q "^1.5.1"
+
+conventional-changelog-express@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.1.tgz#fea2231d99a5381b4e6badb0c1c40a41fcacb755"
+  integrity sha512-G6uCuCaQhLxdb4eEfAIHpcfcJ2+ao3hJkbLrw/jSK/eROeNfnxCJasaWdDAfFkxsbpzvQT4W01iSynU3OoPLIw==
+  dependencies:
+    q "^1.5.1"
+
+conventional-changelog-jquery@^3.0.6:
+  version "3.0.6"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.6.tgz#460236ad8fb1d29ff932a14fe4e3a45379b63c5e"
+  integrity sha512-gHAABCXUNA/HjnZEm+vxAfFPJkgtrZvCDIlCKfdPVXtCIo/Q0lN5VKpx8aR5p8KdVRQFF3OuTlvv5kv6iPuRqA==
+  dependencies:
+    q "^1.5.1"
+
+conventional-changelog-jshint@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.3.tgz#ef6e2caf2ee6ffdfda78fcdf7ce87cf6c512d728"
+  integrity sha512-Pc2PnMPcez634ckzr4EOWviwRSpZcURaK7bjyD9oK6N5fsC/a+3G7LW5m/JpcHPhA9ZxsfIbm7uqZ3ZDGsQ/sw==
+  dependencies:
+    compare-func "^1.3.1"
+    q "^1.5.1"
+
+conventional-changelog-preset-loader@^2.1.1, conventional-changelog-preset-loader@^2.3.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.0.tgz#580fa8ab02cef22c24294d25e52d7ccd247a9a6a"
+  integrity sha512-/rHb32J2EJnEXeK4NpDgMaAVTFZS3o1ExmjKMtYVgIC4MQn0vkNSbYpdGRotkfGGRWiqk3Ri3FBkiZGbAfIfOQ==
+
+conventional-changelog-writer@^4.0.11, conventional-changelog-writer@^4.0.6:
+  version "4.0.11"
+  resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.11.tgz#9f56d2122d20c96eb48baae0bf1deffaed1edba4"
+  integrity sha512-g81GQOR392I+57Cw3IyP1f+f42ME6aEkbR+L7v1FBBWolB0xkjKTeCWVguzRrp6UiT1O6gBpJbEy2eq7AnV1rw==
+  dependencies:
+    compare-func "^1.3.1"
+    conventional-commits-filter "^2.0.2"
+    dateformat "^3.0.0"
+    handlebars "^4.4.0"
+    json-stringify-safe "^5.0.1"
+    lodash "^4.17.15"
+    meow "^5.0.0"
+    semver "^6.0.0"
+    split "^1.0.0"
+    through2 "^3.0.0"
+
+conventional-changelog@^3.0.6, conventional-changelog@^3.1.18:
+  version "3.1.18"
+  resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-3.1.18.tgz#7da0a5ab34a604b920b8bf71c6cf5d952f0e805e"
+  integrity sha512-aN6a3rjgV8qwAJj3sC/Lme2kvswWO7fFSGQc32gREcwIOsaiqBaO6f2p0NomFaPDnTqZ+mMZFLL3hlzvEnZ0mQ==
+  dependencies:
+    conventional-changelog-angular "^5.0.6"
+    conventional-changelog-atom "^2.0.3"
+    conventional-changelog-codemirror "^2.0.3"
+    conventional-changelog-conventionalcommits "^4.2.3"
+    conventional-changelog-core "^4.1.4"
+    conventional-changelog-ember "^2.0.4"
+    conventional-changelog-eslint "^3.0.4"
+    conventional-changelog-express "^2.0.1"
+    conventional-changelog-jquery "^3.0.6"
+    conventional-changelog-jshint "^2.0.3"
+    conventional-changelog-preset-loader "^2.3.0"
+
+conventional-commit-types@^2.0.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-2.3.0.tgz#bc3c8ebba0a9e4b3ecc548f1d0674e251ab8be22"
+  integrity sha512-6iB39PrcGYdz0n3z31kj6/Km6mK9hm9oMRhwcLnKxE7WNoeRKZbTAobliKrbYZ5jqyCvtcVEfjCiaEzhL3AVmQ==
+
+conventional-commits-filter@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.2.tgz#f122f89fbcd5bb81e2af2fcac0254d062d1039c1"
+  integrity sha512-WpGKsMeXfs21m1zIw4s9H5sys2+9JccTzpN6toXtxhpw2VNF2JUXwIakthKBy+LN4DvJm+TzWhxOMWOs1OFCFQ==
+  dependencies:
+    lodash.ismatch "^4.4.0"
+    modify-values "^1.0.0"
+
+conventional-commits-parser@^2.1.0:
+  version "2.1.7"
+  resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.1.7.tgz#eca45ed6140d72ba9722ee4132674d639e644e8e"
+  integrity sha512-BoMaddIEJ6B4QVMSDu9IkVImlGOSGA1I2BQyOZHeLQ6qVOJLcLKn97+fL6dGbzWEiqDzfH4OkcveULmeq2MHFQ==
+  dependencies:
+    JSONStream "^1.0.4"
+    is-text-path "^1.0.0"
+    lodash "^4.2.1"
+    meow "^4.0.0"
+    split2 "^2.0.0"
+    through2 "^2.0.0"
+    trim-off-newlines "^1.0.0"
+
+conventional-commits-parser@^3.0.3, conventional-commits-parser@^3.0.8:
+  version "3.0.8"
+  resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.0.8.tgz#23310a9bda6c93c874224375e72b09fb275fe710"
+  integrity sha512-YcBSGkZbYp7d+Cr3NWUeXbPDFUN6g3SaSIzOybi8bjHL5IJ5225OSCxJJ4LgziyEJ7AaJtE9L2/EU6H7Nt/DDQ==
+  dependencies:
+    JSONStream "^1.0.4"
+    is-text-path "^1.0.1"
+    lodash "^4.17.15"
+    meow "^5.0.0"
+    split2 "^2.0.0"
+    through2 "^3.0.0"
+    trim-off-newlines "^1.0.0"
+
+conventional-recommended-bump@^5.0.0:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-5.0.1.tgz#5af63903947b6e089e77767601cb592cabb106ba"
+  integrity sha512-RVdt0elRcCxL90IrNP0fYCpq1uGt2MALko0eyeQ+zQuDVWtMGAy9ng6yYn3kax42lCj9+XBxQ8ZN6S9bdKxDhQ==
+  dependencies:
+    concat-stream "^2.0.0"
+    conventional-changelog-preset-loader "^2.1.1"
+    conventional-commits-filter "^2.0.2"
+    conventional-commits-parser "^3.0.3"
+    git-raw-commits "2.0.0"
+    git-semver-tags "^2.0.3"
+    meow "^4.0.0"
+    q "^1.5.1"
+
+convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
+  version "1.7.0"
+  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
+  integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
+  dependencies:
+    safe-buffer "~5.1.1"
+
+cookie-signature@1.0.6:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
+  integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
+
+cookie@0.4.0:
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
+  integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
+
+copy-anything@^2.0.1:
+  version "2.0.3"
+  resolved "http://localhost:4873/copy-anything/-/copy-anything-2.0.3.tgz#842407ba02466b0df844819bbe3baebbe5d45d87"
+  integrity sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ==
+  dependencies:
+    is-what "^3.12.0"
+
+copy-concurrently@^1.0.0:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
+  integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
+  dependencies:
+    aproba "^1.1.1"
+    fs-write-stream-atomic "^1.0.8"
+    iferr "^0.1.5"
+    mkdirp "^0.5.1"
+    rimraf "^2.5.4"
+    run-queue "^1.0.0"
+
+copy-descriptor@^0.1.0:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
+  integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
+
+copy-to-clipboard@^3.0.8, copy-to-clipboard@^3.2.0:
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae"
+  integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==
+  dependencies:
+    toggle-selection "^1.0.6"
+
+copy-webpack-plugin@^6.0.3:
+  version "6.4.1"
+  resolved "http://localhost:4873/copy-webpack-plugin/-/copy-webpack-plugin-6.4.1.tgz#138cd9b436dbca0a6d071720d5414848992ec47e"
+  integrity sha512-MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA==
+  dependencies:
+    cacache "^15.0.5"
+    fast-glob "^3.2.4"
+    find-cache-dir "^3.3.1"
+    glob-parent "^5.1.1"
+    globby "^11.0.1"
+    loader-utils "^2.0.0"
+    normalize-path "^3.0.0"
+    p-limit "^3.0.2"
+    schema-utils "^3.0.0"
+    serialize-javascript "^5.0.1"
+    webpack-sources "^1.4.3"
+
+core-js-compat@^3.8.0:
+  version "3.8.3"
+  resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.3.tgz#9123fb6b9cad30f0651332dc77deba48ef9b0b3f"
+  integrity sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog==
+  dependencies:
+    browserslist "^4.16.1"
+    semver "7.0.0"
+
+core-js-pure@^3.0.0, core-js-pure@^3.0.1:
+  version "3.6.4"
+  resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.4.tgz#4bf1ba866e25814f149d4e9aaa08c36173506e3a"
+  integrity sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw==
+
+core-js@3.8.3, core-js@^3.0.1, core-js@^3.0.4, core-js@^3.2.1, core-js@^3.6.5:
+  version "3.8.3"
+  resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.8.3.tgz#c21906e1f14f3689f93abcc6e26883550dd92dd0"
+  integrity sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q==
+
+core-js@^1.0.0:
+  version "1.2.7"
+  resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
+  integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=
+
+core-js@^2.4.0, core-js@^2.5.0, core-js@^2.5.3, core-js@^2.5.7, core-js@^2.6.5, core-js@^2.6.9:
+  version "2.6.12"
+  resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec"
+  integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
+
+core-util-is@1.0.2, core-util-is@~1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
+  integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
+
+corejs-upgrade-webpack-plugin@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/corejs-upgrade-webpack-plugin/-/corejs-upgrade-webpack-plugin-2.2.0.tgz#503293bf1fdcb104918eb40d0294e4776ad6923a"
+  integrity sha512-J0QMp9GNoiw91Kj/dkIQFZeiCXgXoja/Wlht1SPybxerBWh4NCmb0pOgCv61lrlQZETwvVVfAFAA3IqoEO9aqQ==
+  dependencies:
+    resolve-from "^5.0.0"
+    webpack "^4.38.0"
+
+cosmiconfig@^5.0.0, cosmiconfig@^5.1.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1:
+  version "5.2.1"
+  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
+  integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
+  dependencies:
+    import-fresh "^2.0.0"
+    is-directory "^0.3.1"
+    js-yaml "^3.13.1"
+    parse-json "^4.0.0"
+
+cosmiconfig@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
+  integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
+  dependencies:
+    "@types/parse-json" "^4.0.0"
+    import-fresh "^3.1.0"
+    parse-json "^5.0.0"
+    path-type "^4.0.0"
+    yaml "^1.7.2"
+
+cosmiconfig@^7.0.0:
+  version "7.0.0"
+  resolved "http://localhost:4873/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3"
+  integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==
+  dependencies:
+    "@types/parse-json" "^4.0.0"
+    import-fresh "^3.2.1"
+    parse-json "^5.0.0"
+    path-type "^4.0.0"
+    yaml "^1.10.0"
+
+cp-file@^7.0.0:
+  version "7.0.0"
+  resolved "http://localhost:4873/cp-file/-/cp-file-7.0.0.tgz#b9454cfd07fe3b974ab9ea0e5f29655791a9b8cd"
+  integrity sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==
+  dependencies:
+    graceful-fs "^4.1.2"
+    make-dir "^3.0.0"
+    nested-error-stacks "^2.0.0"
+    p-event "^4.1.0"
+
+cpy@^8.1.1:
+  version "8.1.1"
+  resolved "http://localhost:4873/cpy/-/cpy-8.1.1.tgz#066ed4c6eaeed9577df96dae4db9438c1a90df62"
+  integrity sha512-vqHT+9o67sMwJ5hUd/BAOYeemkU+MuFRsK2c36Xc3eefQpAsp1kAsyDxEDcc5JS1+y9l/XHPrIsVTcyGGmkUUQ==
+  dependencies:
+    arrify "^2.0.1"
+    cp-file "^7.0.0"
+    globby "^9.2.0"
+    has-glob "^1.0.0"
+    junk "^3.1.0"
+    nested-error-stacks "^2.1.0"
+    p-all "^2.1.0"
+    p-filter "^2.1.0"
+    p-map "^3.0.0"
+
+create-ecdh@^4.0.0:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff"
+  integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==
+  dependencies:
+    bn.js "^4.1.0"
+    elliptic "^6.0.0"
+
+create-error-class@^3.0.0:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
+  integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=
+  dependencies:
+    capture-stack-trace "^1.0.0"
+
+create-hash@^1.1.0, create-hash@^1.1.2:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
+  integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
+  dependencies:
+    cipher-base "^1.0.1"
+    inherits "^2.0.1"
+    md5.js "^1.3.4"
+    ripemd160 "^2.0.1"
+    sha.js "^2.4.0"
+
+create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
+  version "1.1.7"
+  resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
+  integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
+  dependencies:
+    cipher-base "^1.0.3"
+    create-hash "^1.1.0"
+    inherits "^2.0.1"
+    ripemd160 "^2.0.0"
+    safe-buffer "^5.0.1"
+    sha.js "^2.4.8"
+
+create-react-context@0.3.0, create-react-context@^0.3.0:
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c"
+  integrity sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==
+  dependencies:
+    gud "^1.0.0"
+    warning "^4.0.3"
+
+cross-env@^5.2.0:
+  version "5.2.1"
+  resolved "http://localhost:4873/cross-env/-/cross-env-5.2.1.tgz#b2c76c1ca7add66dc874d11798466094f551b34d"
+  integrity sha512-1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ==
+  dependencies:
+    cross-spawn "^6.0.5"
+
+cross-fetch@2.2.2:
+  version "2.2.2"
+  resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-2.2.2.tgz#a47ff4f7fc712daba8f6a695a11c948440d45723"
+  integrity sha1-pH/09/xxLauo9qaVoRyUhEDUVyM=
+  dependencies:
+    node-fetch "2.1.2"
+    whatwg-fetch "2.0.4"
+
+cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5:
+  version "6.0.5"
+  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
+  integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
+  dependencies:
+    nice-try "^1.0.4"
+    path-key "^2.0.1"
+    semver "^5.5.0"
+    shebang-command "^1.2.0"
+    which "^1.2.9"
+
+cross-spawn@7.0.1, cross-spawn@^7.0.0:
+  version "7.0.1"
+  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14"
+  integrity sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==
+  dependencies:
+    path-key "^3.1.0"
+    shebang-command "^2.0.0"
+    which "^2.0.1"
+
+cross-spawn@^5.0.1:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
+  integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
+  dependencies:
+    lru-cache "^4.0.1"
+    shebang-command "^1.2.0"
+    which "^1.2.9"
+
+cross-spawn@^7.0.2:
+  version "7.0.3"
+  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
+  integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+  dependencies:
+    path-key "^3.1.0"
+    shebang-command "^2.0.0"
+    which "^2.0.1"
+
+crypt@0.0.2:
+  version "0.0.2"
+  resolved "http://localhost:4873/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
+  integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=
+
+crypto-browserify@^3.11.0:
+  version "3.12.0"
+  resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
+  integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
+  dependencies:
+    browserify-cipher "^1.0.0"
+    browserify-sign "^4.0.0"
+    create-ecdh "^4.0.0"
+    create-hash "^1.1.0"
+    create-hmac "^1.1.0"
+    diffie-hellman "^5.0.0"
+    inherits "^2.0.1"
+    pbkdf2 "^3.0.3"
+    public-encrypt "^4.0.0"
+    randombytes "^2.0.0"
+    randomfill "^1.0.3"
+
+css-color-names@0.0.4, css-color-names@^0.0.4:
+  version "0.0.4"
+  resolved "http://localhost:4873/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
+  integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
+
+css-declaration-sorter@^4.0.1:
+  version "4.0.1"
+  resolved "http://localhost:4873/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22"
+  integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==
+  dependencies:
+    postcss "^7.0.1"
+    timsort "^0.3.0"
+
+css-in-js-utils@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz#3b472b398787291b47cfe3e44fecfdd9e914ba99"
+  integrity sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA==
+  dependencies:
+    hyphenate-style-name "^1.0.2"
+    isobject "^3.0.1"
+
+css-loader@^1.0.0:
+  version "1.0.1"
+  resolved "http://localhost:4873/css-loader/-/css-loader-1.0.1.tgz#6885bb5233b35ec47b006057da01cc640b6b79fe"
+  integrity sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==
+  dependencies:
+    babel-code-frame "^6.26.0"
+    css-selector-tokenizer "^0.7.0"
+    icss-utils "^2.1.0"
+    loader-utils "^1.0.2"
+    lodash "^4.17.11"
+    postcss "^6.0.23"
+    postcss-modules-extract-imports "^1.2.0"
+    postcss-modules-local-by-default "^1.2.0"
+    postcss-modules-scope "^1.1.0"
+    postcss-modules-values "^1.3.0"
+    postcss-value-parser "^3.3.0"
+    source-list-map "^2.0.0"
+
+css-loader@^3.0.0:
+  version "3.4.2"
+  resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.2.tgz#d3fdb3358b43f233b78501c5ed7b1c6da6133202"
+  integrity sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==
+  dependencies:
+    camelcase "^5.3.1"
+    cssesc "^3.0.0"
+    icss-utils "^4.1.1"
+    loader-utils "^1.2.3"
+    normalize-path "^3.0.0"
+    postcss "^7.0.23"
+    postcss-modules-extract-imports "^2.0.0"
+    postcss-modules-local-by-default "^3.0.2"
+    postcss-modules-scope "^2.1.1"
+    postcss-modules-values "^3.0.0"
+    postcss-value-parser "^4.0.2"
+    schema-utils "^2.6.0"
+
+css-loader@^3.5.3:
+  version "3.6.0"
+  resolved "http://localhost:4873/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645"
+  integrity sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==
+  dependencies:
+    camelcase "^5.3.1"
+    cssesc "^3.0.0"
+    icss-utils "^4.1.1"
+    loader-utils "^1.2.3"
+    normalize-path "^3.0.0"
+    postcss "^7.0.32"
+    postcss-modules-extract-imports "^2.0.0"
+    postcss-modules-local-by-default "^3.0.2"
+    postcss-modules-scope "^2.2.0"
+    postcss-modules-values "^3.0.0"
+    postcss-value-parser "^4.1.0"
+    schema-utils "^2.7.0"
+    semver "^6.3.0"
+
+css-select-base-adapter@^0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
+  integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
+
+css-select@^1.1.0, css-select@~1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
+  integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=
+  dependencies:
+    boolbase "~1.0.0"
+    css-what "2.1"
+    domutils "1.5.1"
+    nth-check "~1.0.1"
+
+css-select@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
+  integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
+  dependencies:
+    boolbase "^1.0.0"
+    css-what "^3.2.1"
+    domutils "^1.7.0"
+    nth-check "^1.0.2"
+
+css-selector-tokenizer@^0.7.0:
+  version "0.7.3"
+  resolved "http://localhost:4873/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz#735f26186e67c749aaf275783405cf0661fae8f1"
+  integrity sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==
+  dependencies:
+    cssesc "^3.0.0"
+    fastparse "^1.1.2"
+
+css-tree@1.0.0-alpha.37:
+  version "1.0.0-alpha.37"
+  resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
+  integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
+  dependencies:
+    mdn-data "2.0.4"
+    source-map "^0.6.1"
+
+css-tree@1.0.0-alpha.39:
+  version "1.0.0-alpha.39"
+  resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.39.tgz#2bff3ffe1bb3f776cf7eefd91ee5cba77a149eeb"
+  integrity sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==
+  dependencies:
+    mdn-data "2.0.6"
+    source-map "^0.6.1"
+
+css-what@2.1:
+  version "2.1.3"
+  resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2"
+  integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==
+
+css-what@^3.2.1:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.1.tgz#f4a8f12421064621b456755e34a03a2c22df5da1"
+  integrity sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==
+
+css.escape@^1.5.1:
+  version "1.5.1"
+  resolved "http://localhost:4873/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"
+  integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=
+
+css@^3.0.0:
+  version "3.0.0"
+  resolved "http://localhost:4873/css/-/css-3.0.0.tgz#4447a4d58fdd03367c516ca9f64ae365cee4aa5d"
+  integrity sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==
+  dependencies:
+    inherits "^2.0.4"
+    source-map "^0.6.1"
+    source-map-resolve "^0.6.0"
+
+csscolorparser@~1.0.2:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/csscolorparser/-/csscolorparser-1.0.3.tgz#b34f391eea4da8f3e98231e2ccd8df9c041f171b"
+  integrity sha1-s085HupNqPPpgjHizNjfnAQfFxs=
+
+cssesc@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
+  integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
+
+cssfilter@0.0.10:
+  version "0.0.10"
+  resolved "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae"
+  integrity sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=
+
+cssnano-preset-default@^4.0.7:
+  version "4.0.7"
+  resolved "http://localhost:4873/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76"
+  integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==
+  dependencies:
+    css-declaration-sorter "^4.0.1"
+    cssnano-util-raw-cache "^4.0.1"
+    postcss "^7.0.0"
+    postcss-calc "^7.0.1"
+    postcss-colormin "^4.0.3"
+    postcss-convert-values "^4.0.1"
+    postcss-discard-comments "^4.0.2"
+    postcss-discard-duplicates "^4.0.2"
+    postcss-discard-empty "^4.0.1"
+    postcss-discard-overridden "^4.0.1"
+    postcss-merge-longhand "^4.0.11"
+    postcss-merge-rules "^4.0.3"
+    postcss-minify-font-values "^4.0.2"
+    postcss-minify-gradients "^4.0.2"
+    postcss-minify-params "^4.0.2"
+    postcss-minify-selectors "^4.0.2"
+    postcss-normalize-charset "^4.0.1"
+    postcss-normalize-display-values "^4.0.2"
+    postcss-normalize-positions "^4.0.2"
+    postcss-normalize-repeat-style "^4.0.2"
+    postcss-normalize-string "^4.0.2"
+    postcss-normalize-timing-functions "^4.0.2"
+    postcss-normalize-unicode "^4.0.1"
+    postcss-normalize-url "^4.0.1"
+    postcss-normalize-whitespace "^4.0.2"
+    postcss-ordered-values "^4.1.2"
+    postcss-reduce-initial "^4.0.3"
+    postcss-reduce-transforms "^4.0.2"
+    postcss-svgo "^4.0.2"
+    postcss-unique-selectors "^4.0.1"
+
+cssnano-util-get-arguments@^4.0.0:
+  version "4.0.0"
+  resolved "http://localhost:4873/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f"
+  integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=
+
+cssnano-util-get-match@^4.0.0:
+  version "4.0.0"
+  resolved "http://localhost:4873/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d"
+  integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=
+
+cssnano-util-raw-cache@^4.0.1:
+  version "4.0.1"
+  resolved "http://localhost:4873/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282"
+  integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==
+  dependencies:
+    postcss "^7.0.0"
+
+cssnano-util-same-parent@^4.0.0:
+  version "4.0.1"
+  resolved "http://localhost:4873/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3"
+  integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==
+
+cssnano@^4.1.10:
+  version "4.1.10"
+  resolved "http://localhost:4873/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2"
+  integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==
+  dependencies:
+    cosmiconfig "^5.0.0"
+    cssnano-preset-default "^4.0.7"
+    is-resolvable "^1.0.0"
+    postcss "^7.0.0"
+
+csso@^4.0.2:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.3.tgz#0d9985dc852c7cc2b2cacfbbe1079014d1a8e903"
+  integrity sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==
+  dependencies:
+    css-tree "1.0.0-alpha.39"
+
+cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0", cssom@~0.3.6:
+  version "0.3.8"
+  resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
+  integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
+
+cssom@^0.4.1, cssom@^0.4.4:
+  version "0.4.4"
+  resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
+  integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
+
+cssstyle@^1.0.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1"
+  integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==
+  dependencies:
+    cssom "0.3.x"
+
+cssstyle@^2.0.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.2.0.tgz#e4c44debccd6b7911ed617a4395e5754bba59992"
+  integrity sha512-sEb3XFPx3jNnCAMtqrXPDeSgQr+jojtCeNf8cvMNMh1cG970+lljssvQDzPq6lmmJu2Vhqood/gtEomBiHOGnA==
+  dependencies:
+    cssom "~0.3.6"
+
+cssstyle@^2.2.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
+  integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
+  dependencies:
+    cssom "~0.3.6"
+
+csstype@^2.5.7, csstype@^2.6.3, csstype@^2.6.4, csstype@^2.6.7:
+  version "2.6.10"
+  resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b"
+  integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w==
+
+csstype@^3.0.2:
+  version "3.0.5"
+  resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.5.tgz#7fdec6a28a67ae18647c51668a9ff95bb2fa7bb8"
+  integrity sha512-uVDi8LpBUKQj6sdxNaTetL6FpeCqTjOvAQuQUa/qAqq8oOd4ivkbhgnqayl0dnPal8Tb/yB1tF+gOvCBiicaiQ==
+
+currently-unhandled@^0.4.1:
+  version "0.4.1"
+  resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
+  integrity sha1-mI3zP+qxke95mmE2nddsF635V+o=
+  dependencies:
+    array-find-index "^1.0.1"
+
+cyclist@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
+  integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
+
+cz-conventional-changelog@2.1.0, cz-conventional-changelog@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-2.1.0.tgz#2f4bc7390e3244e4df293e6ba351e4c740a7c764"
+  integrity sha1-L0vHOQ4yROTfKT5ro1Hkx0Cnx2Q=
+  dependencies:
+    conventional-commit-types "^2.0.0"
+    lodash.map "^4.5.1"
+    longest "^1.0.1"
+    right-pad "^1.0.1"
+    word-wrap "^1.0.3"
+
+d3-array@1, d3-array@^1.0.2, d3-array@^1.2.0, d3-array@^1.2.1, d3-array@^1.2.4:
+  version "1.2.4"
+  resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f"
+  integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==
+
+"d3-array@1.2.0 - 2", d3-array@^2.0.3, d3-array@^2.3.1, d3-array@^2.4.0:
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.4.0.tgz#87f8b9ad11088769c82b5ea846bcb1cc9393f242"
+  integrity sha512-KQ41bAF2BMakf/HdKT865ALd4cgND6VcIztVQZUTt0+BH3RWy6ZYnHghVXf6NFjt2ritLr8H1T8LreAAlfiNcw==
+
+d3-cloud@^1.2.1, d3-cloud@^1.2.5:
+  version "1.2.5"
+  resolved "https://registry.yarnpkg.com/d3-cloud/-/d3-cloud-1.2.5.tgz#3e91564f2d27fba47fcc7d812eb5081ea24c603d"
+  integrity sha512-4s2hXZgvs0CoUIw31oBAGrHt9Kt/7P9Ik5HIVzISFiWkD0Ga2VLAuO/emO/z1tYIpE7KG2smB4PhMPfFMJpahw==
+  dependencies:
+    d3-dispatch "^1.0.3"
+
+d3-collection@1, d3-collection@^1.0.2, d3-collection@^1.0.4:
+  version "1.0.7"
+  resolved "https://registry.yarnpkg.com/d3-collection/-/d3-collection-1.0.7.tgz#349bd2aa9977db071091c13144d5e4f16b5b310e"
+  integrity sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==
+
+d3-color@1, d3-color@^1.2.0, d3-color@^1.2.3, d3-color@^1.4.1:
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-1.4.1.tgz#c52002bf8846ada4424d55d97982fef26eb3bc8a"
+  integrity sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==
+
+"d3-color@1 - 2":
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-2.0.0.tgz#8d625cab42ed9b8f601a1760a389f7ea9189d62e"
+  integrity sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==
+
+d3-dispatch@1, d3-dispatch@^1.0.3:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.6.tgz#00d37bcee4dd8cd97729dd893a0ac29caaba5d58"
+  integrity sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==
+
+d3-drag@1:
+  version "1.2.5"
+  resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-1.2.5.tgz#2537f451acd39d31406677b7dc77c82f7d988f70"
+  integrity sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w==
+  dependencies:
+    d3-dispatch "1"
+    d3-selection "1"
+
+d3-dsv@^1.0.8:
+  version "1.2.0"
+  resolved "http://localhost:4873/d3-dsv/-/d3-dsv-1.2.0.tgz#9d5f75c3a5f8abd611f74d3f5847b0d4338b885c"
+  integrity sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==
+  dependencies:
+    commander "2"
+    iconv-lite "0.4"
+    rw "1"
+
+d3-ease@1:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-1.0.6.tgz#ebdb6da22dfac0a22222f2d4da06f66c416a0ec0"
+  integrity sha512-SZ/lVU7LRXafqp7XtIcBdxnWl8yyLpgOmzAk0mWBI9gXNzLDx5ybZgnRbH9dN/yY5tzVBqCQ9avltSnqVwessQ==
+
+d3-format@1, d3-format@^1.1.1, d3-format@^1.2.0, d3-format@^1.3.2:
+  version "1.4.4"
+  resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.4.tgz#356925f28d0fd7c7983bfad593726fce46844030"
+  integrity sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw==
+
+d3-format@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-2.0.0.tgz#a10bcc0f986c372b729ba447382413aabf5b0767"
+  integrity sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==
+
+d3-geo-projection@0.2:
+  version "0.2.16"
+  resolved "https://registry.yarnpkg.com/d3-geo-projection/-/d3-geo-projection-0.2.16.tgz#4994ecd1033ddb1533b6c4c5528a1c81dcc29427"
+  integrity sha1-SZTs0QM92xUztsTFUoocgdzClCc=
+  dependencies:
+    brfs "^1.3.0"
+
+d3-geo@^1.12.0:
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.12.1.tgz#7fc2ab7414b72e59fbcbd603e80d9adc029b035f"
+  integrity sha512-XG4d1c/UJSEX9NfU02KwBL6BYPj8YKHxgBEw5om2ZnTRSbIcego6dhHwcxuSR3clxh0EpE38os1DVPOmnYtTPg==
+  dependencies:
+    d3-array "1"
+
+d3-hexbin@^0.2.1:
+  version "0.2.2"
+  resolved "http://localhost:4873/d3-hexbin/-/d3-hexbin-0.2.2.tgz#9c5837dacfd471ab05337a9e91ef10bfc4f98831"
+  integrity sha1-nFg32s/UcasFM3qeke8Qv8T5iDE=
+
+d3-hierarchy@^1.1.8:
+  version "1.1.9"
+  resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz#2f6bee24caaea43f8dc37545fa01628559647a83"
+  integrity sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==
+
+d3-interpolate@1, d3-interpolate@^1.1.3, d3-interpolate@^1.2.0, d3-interpolate@^1.3.2, d3-interpolate@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-1.4.0.tgz#526e79e2d80daa383f9e0c1c1c7dcc0f0583e987"
+  integrity sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==
+  dependencies:
+    d3-color "1"
+
+d3-interpolate@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-2.0.1.tgz#98be499cfb8a3b94d4ff616900501a64abc91163"
+  integrity sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==
+  dependencies:
+    d3-color "1 - 2"
+
+d3-path@1, d3-path@^1.0.5:
+  version "1.0.9"
+  resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf"
+  integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==
+
+d3-queue@1:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/d3-queue/-/d3-queue-1.2.3.tgz#143a701cfa65fe021292f321c10d14e98abd491b"
+  integrity sha1-FDpwHPpl/gISkvMhwQ0U6Yq9SRs=
+
+d3-queue@2:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/d3-queue/-/d3-queue-2.0.3.tgz#07fbda3acae5358a9c5299aaf880adf0953ed2c2"
+  integrity sha1-B/vaOsrlNYqcUpmq+ICt8JU+0sI=
+
+d3-sankey-diagram@^0.7.3:
+  version "0.7.3"
+  resolved "https://registry.yarnpkg.com/d3-sankey-diagram/-/d3-sankey-diagram-0.7.3.tgz#1616be0362ac6950665aa5cefea723aef832b53c"
+  integrity sha512-k9DOe7MaLWhWV6J/aqY/CGw88Briu8drTQ+uGGyQg55MIR2WXjKUXryLs0ONFmRQkOSH1F+TSz5XiMc4KwKtuA==
+  dependencies:
+    d3-array "^1.0.2"
+    d3-collection "^1.0.2"
+    d3-dispatch "^1.0.3"
+    d3-format "^1.1.1"
+    d3-interpolate "^1.1.3"
+    d3-selection "^1.0.3"
+    d3-transition "^1.0.4"
+    graphlib "~2.1.0"
+
+d3-sankey@^0.4.2:
+  version "0.4.2"
+  resolved "https://registry.yarnpkg.com/d3-sankey/-/d3-sankey-0.4.2.tgz#34a1512f2b4406a35f80eac7febcf5822dbec5ad"
+  integrity sha1-NKFRLytEBqNfgOrH/rz1gi2+xa0=
+  dependencies:
+    d3-array "1"
+    d3-collection "1"
+    d3-interpolate "1"
+
+d3-scale-chromatic@^1.5.0:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz#54e333fc78212f439b14641fb55801dd81135a98"
+  integrity sha512-ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg==
+  dependencies:
+    d3-color "1"
+    d3-interpolate "1"
+
+d3-scale@^1.0.5, d3-scale@^1.0.6:
+  version "1.0.7"
+  resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-1.0.7.tgz#fa90324b3ea8a776422bd0472afab0b252a0945d"
+  integrity sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==
+  dependencies:
+    d3-array "^1.2.0"
+    d3-collection "1"
+    d3-color "1"
+    d3-format "1"
+    d3-interpolate "1"
+    d3-time "1"
+    d3-time-format "2"
+
+d3-scale@^2.0.0, d3-scale@^2.1.2, d3-scale@^2.2.2:
+  version "2.2.2"
+  resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-2.2.2.tgz#4e880e0b2745acaaddd3ede26a9e908a9e17b81f"
+  integrity sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==
+  dependencies:
+    d3-array "^1.2.0"
+    d3-collection "1"
+    d3-format "1"
+    d3-interpolate "1"
+    d3-time "1"
+    d3-time-format "2"
+
+d3-scale@^3.0.0, d3-scale@^3.0.1, d3-scale@^3.2.1:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-3.2.1.tgz#da1684adce7261b4bc7a76fe193d887f0e909e69"
+  integrity sha512-huz5byJO/6MPpz6Q8d4lg7GgSpTjIZW/l+1MQkzKfu2u8P6hjaXaStOpmyrD6ymKoW87d2QVFCKvSjLwjzx/rA==
+  dependencies:
+    d3-array "1.2.0 - 2"
+    d3-format "1"
+    d3-interpolate "^1.2.0"
+    d3-time "1"
+    d3-time-format "2"
+
+d3-selection@1, d3-selection@^1.0.3, d3-selection@^1.1.0, d3-selection@^1.3.0, d3-selection@^1.4.0:
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.4.1.tgz#98eedbbe085fbda5bafa2f9e3f3a2f4d7d622a98"
+  integrity sha512-BTIbRjv/m5rcVTfBs4AMBLKs4x8XaaLkwm28KWu9S2vKNqXkXt2AH2Qf0sdPZHjFxcWg/YL53zcqAz+3g4/7PA==
+
+d3-shape@^1.0.6, d3-shape@^1.2.0:
+  version "1.3.7"
+  resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7"
+  integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==
+  dependencies:
+    d3-path "1"
+
+d3-svg-legend@^1.x:
+  version "1.13.0"
+  resolved "https://registry.yarnpkg.com/d3-svg-legend/-/d3-svg-legend-1.13.0.tgz#6217478c9add9d62cb333617e1961311a41a4db3"
+  integrity sha1-YhdHjJrdnWLLMzYX4ZYTEaQaTbM=
+
+d3-time-format@2, d3-time-format@^2.2.0, d3-time-format@^2.2.3:
+  version "2.2.3"
+  resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.2.3.tgz#0c9a12ee28342b2037e5ea1cf0b9eb4dd75f29cb"
+  integrity sha512-RAHNnD8+XvC4Zc4d2A56Uw0yJoM7bsvOlJR33bclxq399Rak/b9bhvu/InjxdWhPtkgU53JJcleJTGkNRnN6IA==
+  dependencies:
+    d3-time "1"
+
+d3-time@1, d3-time@^1.0.10:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-1.1.0.tgz#b1e19d307dae9c900b7e5b25ffc5dcc249a8a0f1"
+  integrity sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==
+
+d3-time@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-2.0.0.tgz#ad7c127d17c67bd57a4c61f3eaecb81108b1e0ab"
+  integrity sha512-2mvhstTFcMvwStWd9Tj3e6CEqtOivtD8AUiHT8ido/xmzrI9ijrUUihZ6nHuf/vsScRBonagOdj0Vv+SEL5G3Q==
+
+d3-timer@1, d3-timer@^1.0.9:
+  version "1.0.10"
+  resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.10.tgz#dfe76b8a91748831b13b6d9c793ffbd508dd9de5"
+  integrity sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==
+
+d3-tip@^0.9.1:
+  version "0.9.1"
+  resolved "https://registry.yarnpkg.com/d3-tip/-/d3-tip-0.9.1.tgz#84e6d331c4e6650d80c5228a07e41820609ab64b"
+  integrity sha512-EVBfG9d+HnjIoyVXfhpytWxlF59JaobwizqMX9EBXtsFmJytjwHeYiUs74ldHQjE7S9vzfKTx2LCtvUrIbuFYg==
+  dependencies:
+    d3-collection "^1.0.4"
+    d3-selection "^1.3.0"
+
+d3-transition@1, d3-transition@^1.0.4:
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-1.3.2.tgz#a98ef2151be8d8600543434c1ca80140ae23b398"
+  integrity sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA==
+  dependencies:
+    d3-color "1"
+    d3-dispatch "1"
+    d3-ease "1"
+    d3-interpolate "1"
+    d3-selection "^1.1.0"
+    d3-timer "1"
+
+d3-voronoi@^1.1.2:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.4.tgz#dd3c78d7653d2bb359284ae478645d95944c8297"
+  integrity sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==
+
+d3-zoom@^1.3.0:
+  version "1.8.3"
+  resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-1.8.3.tgz#b6a3dbe738c7763121cd05b8a7795ffe17f4fc0a"
+  integrity sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ==
+  dependencies:
+    d3-dispatch "1"
+    d3-drag "1"
+    d3-interpolate "1"
+    d3-selection "1"
+    d3-transition "1"
+
+d3@3, d3@^3.5.17, d3@^3.5.6:
+  version "3.5.17"
+  resolved "https://registry.yarnpkg.com/d3/-/d3-3.5.17.tgz#bc46748004378b21a360c9fc7cf5231790762fb8"
+  integrity sha1-vEZ0gAQ3iyGjYMn8fPUjF5B2L7g=
+
+damerau-levenshtein@^1.0.6:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791"
+  integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==
+
+dargs@^4.0.1:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17"
+  integrity sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc=
+  dependencies:
+    number-is-nan "^1.0.0"
+
+dargs@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/dargs/-/dargs-6.1.0.tgz#1f3b9b56393ecf8caa7cbfd6c31496ffcfb9b272"
+  integrity sha512-5dVBvpBLBnPwSsYXqfybFyehMmC/EenKEcf23AhCTgTf48JFBbmJKqoZBsERDnjL0FyiVTYWdFsRfTLHxLyKdQ==
+
+dashdash@^1.12.0:
+  version "1.14.1"
+  resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
+  integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=
+  dependencies:
+    assert-plus "^1.0.0"
+
+data-urls@^1.0.0, data-urls@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
+  integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==
+  dependencies:
+    abab "^2.0.0"
+    whatwg-mimetype "^2.2.0"
+    whatwg-url "^7.0.0"
+
+data-urls@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
+  integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
+  dependencies:
+    abab "^2.0.3"
+    whatwg-mimetype "^2.3.0"
+    whatwg-url "^8.0.0"
+
+datamaps@^0.5.8:
+  version "0.5.9"
+  resolved "https://registry.yarnpkg.com/datamaps/-/datamaps-0.5.9.tgz#2a775473aaab29b55025208b2245e840ecfd4fe1"
+  integrity sha512-GUXpO713URNzaExVUgBtqA5fr2UuxUG/fVitI04zEFHVL2FHSjd672alHq8E16oQqRNzF0m1bmx8WlTnDrGSqQ==
+  dependencies:
+    "@types/d3" "3.5.38"
+    d3 "^3.5.6"
+    topojson "^1.6.19"
+
+datatables.net-bs@^1.10.15:
+  version "1.10.21"
+  resolved "https://registry.yarnpkg.com/datatables.net-bs/-/datatables.net-bs-1.10.21.tgz#c80e655033787512423ad78a45e8164f25417dc5"
+  integrity sha512-4mpesFXNEkLlQET3IDLclLz95Xit4Kp/jHcOM2X0nc/ijDfO3qJk3ehZ+NSEAkXZDge6ZtY5Zxq2O90ISiIjwQ==
+  dependencies:
+    datatables.net "1.10.21"
+    jquery ">=1.7"
+
+datatables.net@1.10.21:
+  version "1.10.21"
+  resolved "https://registry.yarnpkg.com/datatables.net/-/datatables.net-1.10.21.tgz#f1d35c8e5c3eb7f5caef39e80cd5b836a8c77103"
+  integrity sha512-/bSZtxmf3GTpYcvEmwZ8q26I1yhSx8qklR2B+s1K8+/51UW/zc2zTYwJMqr/Z+iCYixAc00ildj4g2x0Qamolw==
+  dependencies:
+    jquery ">=1.7"
+
+date-fns@^1.27.2:
+  version "1.30.1"
+  resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
+  integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
+
+date-fns@^2.15.0:
+  version "2.16.1"
+  resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.16.1.tgz#05775792c3f3331da812af253e1a935851d3834b"
+  integrity sha512-sAJVKx/FqrLYHAQeN7VpJrPhagZc9R4ImZIWYRFZaaohR3KzmuK88touwsSwSVT8Qcbd4zoDsnGfX4GFB4imyQ==
+
+date-format@0.0.2:
+  version "0.0.2"
+  resolved "https://registry.yarnpkg.com/date-format/-/date-format-0.0.2.tgz#fafd448f72115ef1e2b739155ae92f2be6c28dd1"
+  integrity sha1-+v1Ej3IRXvHitzkVWukvK+bCjdE=
+
+dateformat@^3.0.0, dateformat@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
+  integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
+
+dayjs@^1.8.19:
+  version "1.10.4"
+  resolved "http://localhost:4873/dayjs/-/dayjs-1.10.4.tgz#8e544a9b8683f61783f570980a8a80eaf54ab1e2"
+  integrity sha512-RI/Hh4kqRc1UKLOAf/T5zdMMX5DQIlDxwUe3wSyMMnEbGunnpENCdbUgM+dW7kXidZqCttBrmw7BhN4TMddkCw==
+
+dayjs@^1.8.30:
+  version "1.9.6"
+  resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.9.6.tgz#6f0c77d76ac1ff63720dd1197e5cb87b67943d70"
+  integrity sha512-HngNLtPEBWRo8EFVmHFmSXAjtCX8rGNqeXQI0Gh7wCTSqwaKgPIDqu9m07wABVopNwzvOeCb+2711vQhDlcIXw==
+
+debounce@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.0.tgz#44a540abc0ea9943018dc0eaa95cce87f65cd131"
+  integrity sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==
+
+debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
+  version "2.6.9"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+  integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+  dependencies:
+    ms "2.0.0"
+
+debug@3.1.0, debug@=3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
+  integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
+  dependencies:
+    ms "2.0.0"
+
+debug@^3.0.0, debug@^3.1.0, debug@^3.2.5:
+  version "3.2.6"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
+  integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
+  dependencies:
+    ms "^2.1.1"
+
+debug@^3.0.1, debug@^3.1.1:
+  version "3.2.7"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
+  integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
+  dependencies:
+    ms "^2.1.1"
+
+debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
+  integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
+  dependencies:
+    ms "^2.1.1"
+
+debug@^4.2.0:
+  version "4.3.1"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
+  integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
+  dependencies:
+    ms "2.1.2"
+
+debuglog@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
+  integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=
+
+decamelize-keys@^1.0.0, decamelize-keys@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
+  integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=
+  dependencies:
+    decamelize "^1.1.0"
+    map-obj "^1.0.0"
+
+decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
+  integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
+
+decimal.js@^10.0.0, decimal.js@^10.2.0, decimal.js@^10.2.1:
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3"
+  integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==
+
+deck.gl@7.1.11:
+  version "7.1.11"
+  resolved "http://localhost:4873/deck.gl/-/deck.gl-7.1.11.tgz#bed2b80b87670a9efa239ac95a9edb50ac46e9e8"
+  integrity sha512-OUj9JE544N6Y/DCdfdnsbqKn9o72bWgRfsKhyi8aZ8v76hq7XyelmO2GljBmHGYmuMNVLrKcymNMV0m8EEgpZA==
+  dependencies:
+    "@deck.gl/aggregation-layers" "7.1.11"
+    "@deck.gl/core" "7.1.11"
+    "@deck.gl/geo-layers" "7.1.11"
+    "@deck.gl/google-maps" "7.1.11"
+    "@deck.gl/json" "7.1.11"
+    "@deck.gl/layers" "7.1.11"
+    "@deck.gl/mapbox" "7.1.11"
+    "@deck.gl/mesh-layers" "7.1.11"
+    "@deck.gl/react" "7.1.11"
+
+decode-uri-component@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
+  integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
+
+dedent@0.7.0, dedent@^0.7.0:
+  version "0.7.0"
+  resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
+  integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
+
+deep-equal-ident@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/deep-equal-ident/-/deep-equal-ident-1.1.1.tgz#06f4b89e53710cd6cea4a7781c7a956642de8dc9"
+  integrity sha1-BvS4nlNxDNbOpKd4HHqVZkLejck=
+  dependencies:
+    lodash.isequal "^3.0"
+
+deep-equal@^1.0.1, deep-equal@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a"
+  integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==
+  dependencies:
+    is-arguments "^1.0.4"
+    is-date-object "^1.0.1"
+    is-regex "^1.0.4"
+    object-is "^1.0.1"
+    object-keys "^1.1.1"
+    regexp.prototype.flags "^1.2.0"
+
+deep-extend@^0.6.0:
+  version "0.6.0"
+  resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
+  integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
+
+deep-is@^0.1.3, deep-is@~0.1.3:
+  version "0.1.3"
+  resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
+  integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
+
+deep-object-diff@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a"
+  integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==
+
+deepmerge@^1.3.2:
+  version "1.5.2"
+  resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753"
+  integrity sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==
+
+deepmerge@^4.2.2:
+  version "4.2.2"
+  resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
+  integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
+
+default-gateway@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b"
+  integrity sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==
+  dependencies:
+    execa "^1.0.0"
+    ip-regex "^2.1.0"
+
+defaults@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
+  integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
+  dependencies:
+    clone "^1.0.2"
+
+define-properties@^1.1.2, define-properties@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
+  integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
+  dependencies:
+    object-keys "^1.0.12"
+
+define-property@^0.2.5:
+  version "0.2.5"
+  resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
+  integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
+  dependencies:
+    is-descriptor "^0.1.0"
+
+define-property@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
+  integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
+  dependencies:
+    is-descriptor "^1.0.0"
+
+define-property@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
+  integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
+  dependencies:
+    is-descriptor "^1.0.2"
+    isobject "^3.0.1"
+
+del@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4"
+  integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==
+  dependencies:
+    "@types/glob" "^7.1.1"
+    globby "^6.1.0"
+    is-path-cwd "^2.0.0"
+    is-path-in-cwd "^2.0.0"
+    p-map "^2.0.0"
+    pify "^4.0.1"
+    rimraf "^2.6.3"
+
+delayed-stream@~1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+  integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
+
+delegate@^3.1.2:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166"
+  integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==
+
+delegates@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
+  integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
+
+depd@~1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
+  integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
+
+deprecation@^2.0.0, deprecation@^2.3.1:
+  version "2.3.1"
+  resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919"
+  integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
+
+des.js@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
+  integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
+  dependencies:
+    inherits "^2.0.1"
+    minimalistic-assert "^1.0.0"
+
+destroy@~1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
+  integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
+
+detab@2.0.4:
+  version "2.0.4"
+  resolved "http://localhost:4873/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43"
+  integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==
+  dependencies:
+    repeat-string "^1.5.4"
+
+detect-file@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7"
+  integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=
+
+detect-indent@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
+  integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50=
+
+detect-newline@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
+  integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
+
+detect-node@^2.0.4:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c"
+  integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==
+
+detect-port-alt@1.1.6:
+  version "1.1.6"
+  resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275"
+  integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==
+  dependencies:
+    address "^1.0.1"
+    debug "^2.6.0"
+
+detect-port@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.3.0.tgz#d9c40e9accadd4df5cac6a782aefd014d573d1f1"
+  integrity sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==
+  dependencies:
+    address "^1.0.1"
+    debug "^2.6.0"
+
+dezalgo@^1.0.0:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456"
+  integrity sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=
+  dependencies:
+    asap "^2.0.0"
+    wrappy "1"
+
+diff-sequences@^25.2.6:
+  version "25.2.6"
+  resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd"
+  integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==
+
+diff-sequences@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1"
+  integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==
+
+diff@^3.5.0:
+  version "3.5.0"
+  resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
+  integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==
+
+diff@^4.0.1, diff@^4.0.2:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
+  integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
+
+diffie-hellman@^5.0.0:
+  version "5.0.3"
+  resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
+  integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
+  dependencies:
+    bn.js "^4.1.0"
+    miller-rabin "^4.0.0"
+    randombytes "^2.0.0"
+
+dir-glob@2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034"
+  integrity sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==
+  dependencies:
+    arrify "^1.0.1"
+    path-type "^3.0.0"
+
+dir-glob@^2.2.2:
+  version "2.2.2"
+  resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4"
+  integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==
+  dependencies:
+    path-type "^3.0.0"
+
+dir-glob@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
+  integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
+  dependencies:
+    path-type "^4.0.0"
+
+discontinuous-range@1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a"
+  integrity sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=
+
+distributions@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/distributions/-/distributions-1.1.0.tgz#012973634ef6dd595a525ab1b397d217131c0ea5"
+  integrity sha512-mufW9T1kRlzLVAaekUhgdfcMgX2r/zYQmJx3sGdUAwe0/JSQWey0XgqiDtfUUqYcr/QWHCnBd2M/v45tS/+YAQ==
+  dependencies:
+    mathfn "^1.0.0"
+
+dnd-core@^11.1.3:
+  version "11.1.3"
+  resolved "http://localhost:4873/dnd-core/-/dnd-core-11.1.3.tgz#f92099ba7245e49729d2433157031a6267afcc98"
+  integrity sha512-QugF55dNW+h+vzxVJ/LSJeTeUw9MCJ2cllhmVThVPEtF16ooBkxj0WBE5RB+AceFxMFo1rO6bJKXtqKl+JNnyA==
+  dependencies:
+    "@react-dnd/asap" "^4.0.0"
+    "@react-dnd/invariant" "^2.0.0"
+    redux "^4.0.4"
+
+dnode-protocol@~0.2.2:
+  version "0.2.2"
+  resolved "https://registry.yarnpkg.com/dnode-protocol/-/dnode-protocol-0.2.2.tgz#51151d16fc3b5f84815ee0b9497a1061d0d1949d"
+  integrity sha1-URUdFvw7X4SBXuC5SXoQYdDRlJ0=
+  dependencies:
+    jsonify "~0.0.0"
+    traverse "~0.6.3"
+
+dnode-weak-napi@1.2.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/dnode-weak-napi/-/dnode-weak-napi-1.2.2.tgz#7618c12eae5ef0622ff6b48a924b342e2162f8de"
+  integrity sha512-xn/HTB0C5gA7bW12SCkYbkqWoTdQquR7kxInjnZYh3egkEj/ys02fDDAw/7XVq+0fYWFgD7ewuV8w9K5LAr+zw==
+  dependencies:
+    dnode-protocol "~0.2.2"
+    jsonify "~0.0.0"
+  optionalDependencies:
+    weak-napi "^1.0.3"
+
+dns-equal@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
+  integrity sha1-s55/HabrCnW6nBcySzR1PEfgZU0=
+
+dns-packet@^1.3.1:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.1.tgz#12aa426981075be500b910eedcd0b47dd7deda5a"
+  integrity sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==
+  dependencies:
+    ip "^1.1.0"
+    safe-buffer "^5.0.1"
+
+dns-txt@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6"
+  integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=
+  dependencies:
+    buffer-indexof "^1.0.0"
+
+doctrine@1.5.0:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
+  integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=
+  dependencies:
+    esutils "^2.0.2"
+    isarray "^1.0.0"
+
+doctrine@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
+  integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
+  dependencies:
+    esutils "^2.0.2"
+
+doctrine@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
+  integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
+  dependencies:
+    esutils "^2.0.2"
+
+dom-accessibility-api@^0.5.4:
+  version "0.5.4"
+  resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz#b06d059cdd4a4ad9a79275f9d414a5c126241166"
+  integrity sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==
+
+dom-align@^1.7.0:
+  version "1.12.0"
+  resolved "https://registry.yarnpkg.com/dom-align/-/dom-align-1.12.0.tgz#56fb7156df0b91099830364d2d48f88963f5a29c"
+  integrity sha512-YkoezQuhp3SLFGdOlr5xkqZ640iXrnHAwVYcDg8ZKRUtO7mSzSC2BA5V0VuyAwPSJA4CLIc6EDDJh4bEsD2+zA==
+
+dom-converter@^0.2:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
+  integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==
+  dependencies:
+    utila "~0.4"
+
+"dom-helpers@^2.4.0 || ^3.0.0", dom-helpers@^3.2.0, dom-helpers@^3.2.1, dom-helpers@^3.4.0:
+  version "3.4.0"
+  resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8"
+  integrity sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==
+  dependencies:
+    "@babel/runtime" "^7.1.2"
+
+dom-helpers@^5.0.1:
+  version "5.1.4"
+  resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.1.4.tgz#4609680ab5c79a45f2531441f1949b79d6587f4b"
+  integrity sha512-TjMyeVUvNEnOnhzs6uAn9Ya47GmMo3qq7m+Lr/3ON0Rs5kHvb8I+SQYjLUSYn7qhEm0QjW0yrBkvz9yOrwwz1A==
+  dependencies:
+    "@babel/runtime" "^7.8.7"
+    csstype "^2.6.7"
+
+dom-helpers@^5.1.3:
+  version "5.2.0"
+  resolved "http://localhost:4873/dom-helpers/-/dom-helpers-5.2.0.tgz#57fd054c5f8f34c52a3eeffdb7e7e93cd357d95b"
+  integrity sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==
+  dependencies:
+    "@babel/runtime" "^7.8.7"
+    csstype "^3.0.2"
+
+dom-serializer@0:
+  version "0.2.2"
+  resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
+  integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
+  dependencies:
+    domelementtype "^2.0.1"
+    entities "^2.0.0"
+
+dom-serializer@^1.0.1:
+  version "1.2.0"
+  resolved "http://localhost:4873/dom-serializer/-/dom-serializer-1.2.0.tgz#3433d9136aeb3c627981daa385fc7f32d27c48f1"
+  integrity sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==
+  dependencies:
+    domelementtype "^2.0.1"
+    domhandler "^4.0.0"
+    entities "^2.0.0"
+
+dom-serializer@~0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0"
+  integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==
+  dependencies:
+    domelementtype "^1.3.0"
+    entities "^1.1.1"
+
+dom-storage@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/dom-storage/-/dom-storage-2.1.0.tgz#00fb868bc9201357ea243c7bcfd3304c1e34ea39"
+  integrity sha512-g6RpyWXzl0RR6OTElHKBl7nwnK87GUyZMYC7JWsB/IA73vpqK2K6LT39x4VepLxlSsWBFrPVLnsSR5Jyty0+2Q==
+
+dom-to-image@^2.6.0:
+  version "2.6.0"
+  resolved "http://localhost:4873/dom-to-image/-/dom-to-image-2.6.0.tgz#8a503608088c87b1c22f9034ae032e1898955867"
+  integrity sha1-ilA2CAiMh7HCL5A0rgMuGJiVWGc=
+
+dom-walk@^0.1.0:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018"
+  integrity sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=
+
+domain-browser@^1.1.1:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
+  integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
+
+domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
+  integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
+
+domelementtype@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d"
+  integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==
+
+domelementtype@^2.1.0:
+  version "2.1.0"
+  resolved "http://localhost:4873/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e"
+  integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==
+
+domexception@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
+  integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==
+  dependencies:
+    webidl-conversions "^4.0.2"
+
+domexception@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304"
+  integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
+  dependencies:
+    webidl-conversions "^5.0.0"
+
+domhandler@^2.3.0:
+  version "2.4.2"
+  resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803"
+  integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==
+  dependencies:
+    domelementtype "1"
+
+domhandler@^3.3.0:
+  version "3.3.0"
+  resolved "http://localhost:4873/domhandler/-/domhandler-3.3.0.tgz#6db7ea46e4617eb15cf875df68b2b8524ce0037a"
+  integrity sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==
+  dependencies:
+    domelementtype "^2.0.1"
+
+domhandler@^4.0.0:
+  version "4.0.0"
+  resolved "http://localhost:4873/domhandler/-/domhandler-4.0.0.tgz#01ea7821de996d85f69029e81fa873c21833098e"
+  integrity sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==
+  dependencies:
+    domelementtype "^2.1.0"
+
+dompurify@^2.0.6:
+  version "2.0.17"
+  resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.0.17.tgz#505ffa126a580603df4007e034bdc9b6b738668e"
+  integrity sha512-nNwwJfW55r8akD8MSFz6k75bzyT2y6JEa1O3JrZFBf+Y5R9JXXU4OsRl0B9hKoPgHTw2b7ER5yJ5Md97MMUJPg==
+
+domutils@1.5.1:
+  version "1.5.1"
+  resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
+  integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=
+  dependencies:
+    dom-serializer "0"
+    domelementtype "1"
+
+domutils@^1.5.1, domutils@^1.7.0:
+  version "1.7.0"
+  resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
+  integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
+  dependencies:
+    dom-serializer "0"
+    domelementtype "1"
+
+domutils@^2.4.2:
+  version "2.4.4"
+  resolved "http://localhost:4873/domutils/-/domutils-2.4.4.tgz#282739c4b150d022d34699797369aad8d19bbbd3"
+  integrity sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA==
+  dependencies:
+    dom-serializer "^1.0.1"
+    domelementtype "^2.0.1"
+    domhandler "^4.0.0"
+
+dot-case@^2.1.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-2.1.1.tgz#34dcf37f50a8e93c2b3bca8bb7fb9155c7da3bee"
+  integrity sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=
+  dependencies:
+    no-case "^2.2.0"
+
+dot-case@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa"
+  integrity sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA==
+  dependencies:
+    no-case "^3.0.3"
+    tslib "^1.10.0"
+
+dot-prop@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177"
+  integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc=
+  dependencies:
+    is-obj "^1.0.0"
+
+dot-prop@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
+  integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==
+  dependencies:
+    is-obj "^1.0.0"
+
+dot-prop@^5.2.0:
+  version "5.3.0"
+  resolved "http://localhost:4873/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
+  integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
+  dependencies:
+    is-obj "^2.0.0"
+
+dotenv-defaults@^1.0.2:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/dotenv-defaults/-/dotenv-defaults-1.1.1.tgz#032c024f4b5906d9990eb06d722dc74cc60ec1bd"
+  integrity sha512-6fPRo9o/3MxKvmRZBD3oNFdxODdhJtIy1zcJeUSCs6HCy4tarUpd+G67UTU9tF6OWXeSPqsm4fPAB+2eY9Rt9Q==
+  dependencies:
+    dotenv "^6.2.0"
+
+dotenv-expand@^5.1.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0"
+  integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==
+
+dotenv-webpack@^1.7.0:
+  version "1.7.0"
+  resolved "https://registry.yarnpkg.com/dotenv-webpack/-/dotenv-webpack-1.7.0.tgz#4384d8c57ee6f405c296278c14a9f9167856d3a1"
+  integrity sha512-wwNtOBW/6gLQSkb8p43y0Wts970A3xtNiG/mpwj9MLUhtPCQG6i+/DSXXoNN7fbPCU/vQ7JjwGmgOeGZSSZnsw==
+  dependencies:
+    dotenv-defaults "^1.0.2"
+
+dotenv@^6.2.0:
+  version "6.2.0"
+  resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064"
+  integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==
+
+dotenv@^8.0.0, dotenv@^8.2.0:
+  version "8.2.0"
+  resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a"
+  integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
+
+download-stats@^0.3.4:
+  version "0.3.4"
+  resolved "https://registry.yarnpkg.com/download-stats/-/download-stats-0.3.4.tgz#67ea0c32f14acd9f639da704eef509684ba2dae7"
+  integrity sha512-ic2BigbyUWx7/CBbsfGjf71zUNZB4edBGC3oRliSzsoNmvyVx3Ycfp1w3vp2Y78Ee0eIIkjIEO5KzW0zThDGaA==
+  dependencies:
+    JSONStream "^1.2.1"
+    lazy-cache "^2.0.1"
+    moment "^2.15.1"
+
+downshift@^6.0.6:
+  version "6.1.0"
+  resolved "http://localhost:4873/downshift/-/downshift-6.1.0.tgz#f008063d9b63935910d9db12ead07979ab51ce66"
+  integrity sha512-MnEJERij+1pTVAsOPsH3q9MJGNIZuu2sT90uxOCEOZYH6sEzkVGtUcTBVDRQkE8y96zpB7uEbRn24aE9VpHnZg==
+  dependencies:
+    "@babel/runtime" "^7.12.5"
+    compute-scroll-into-view "^1.0.16"
+    prop-types "^15.7.2"
+    react-is "^17.0.1"
+
+duplexer2@~0.1.4:
+  version "0.1.4"
+  resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1"
+  integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=
+  dependencies:
+    readable-stream "^2.0.2"
+
+duplexer3@^0.1.4:
+  version "0.1.4"
+  resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
+  integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
+
+duplexer@^0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
+  integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=
+
+duplexify@^3.4.2, duplexify@^3.6.0:
+  version "3.7.1"
+  resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
+  integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
+  dependencies:
+    end-of-stream "^1.0.0"
+    inherits "^2.0.1"
+    readable-stream "^2.0.0"
+    stream-shift "^1.0.0"
+
+earcut@^2.0.6, earcut@^2.1.5:
+  version "2.2.2"
+  resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.2.2.tgz#41b0bc35f63e0fe80da7cddff28511e7e2e80d11"
+  integrity sha512-eZoZPPJcUHnfRZ0PjLvx2qBordSiO8ofC3vt+qACLM95u+4DovnbYNpQtJh0DNsWj8RnxrQytD4WA8gj5cRIaQ==
+
+ecc-jsbn@~0.1.1:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
+  integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
+  dependencies:
+    jsbn "~0.1.0"
+    safer-buffer "^2.1.0"
+
+echarts@^5.0.2:
+  version "5.0.2"
+  resolved "https://registry.yarnpkg.com/echarts/-/echarts-5.0.2.tgz#1726d17a57cf05d62cd0567b4325e1201a56baf6"
+  integrity sha512-En0VYpc96nw2/2AZoBWPHsGi471zMublttj50kfFpYAeR4geup0Tj9iVgEXh7QYZFPnRiruDJEjcB5PXZ+BYzQ==
+  dependencies:
+    tslib "2.0.3"
+    zrender "5.0.4"
+
+editions@^2.2.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/editions/-/editions-2.3.0.tgz#47f2d5309340bce93ab5eb6ad755b9e90ff825e4"
+  integrity sha512-jeXYwHPKbitU1l14dWlsl5Nm+b1Hsm7VX73BsrQ4RVwEcAQQIPFHTZAbVtuIGxZBrpdT2FXd8lbtrNBrzZxIsA==
+  dependencies:
+    errlop "^2.0.0"
+    semver "^6.3.0"
+
+editorconfig@^0.15.3:
+  version "0.15.3"
+  resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5"
+  integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==
+  dependencies:
+    commander "^2.19.0"
+    lru-cache "^4.1.5"
+    semver "^5.6.0"
+    sigmund "^1.0.1"
+
+ee-first@1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
+  integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
+
+ejs@^2.6.1, ejs@^2.7.4:
+  version "2.7.4"
+  resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
+  integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
+
+ejs@^3.1.2:
+  version "3.1.6"
+  resolved "http://localhost:4873/ejs/-/ejs-3.1.6.tgz#5bfd0a0689743bb5268b3550cceeebbc1702822a"
+  integrity sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==
+  dependencies:
+    jake "^10.6.1"
+
+electron-to-chromium@^1.3.247:
+  version "1.3.392"
+  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.392.tgz#280ab4f7a3ae47419cfabb15dbfc1567be7f1111"
+  integrity sha512-/hsgeVdReDsyTBE0aU9FRdh1wnNPrX3xlz3t61F+CJPOT+Umfi9DXHsCX85TEgWZQqlow0Rw44/4/jbU2Sqgkg==
+
+electron-to-chromium@^1.3.378, electron-to-chromium@^1.3.649:
+  version "1.3.657"
+  resolved "http://localhost:4873/electron-to-chromium/-/electron-to-chromium-1.3.657.tgz#a9c307f2612681245738bb8d36d997cbb568d481"
+  integrity sha512-/9ROOyvEflEbaZFUeGofD+Tqs/WynbSTbNgNF+/TJJxH1ePD/e6VjZlDJpW3FFFd3nj5l3Hd8ki2vRwy+gyRFw==
+
+electron-to-chromium@^1.3.634:
+  version "1.3.645"
+  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.645.tgz#c0b269ae2ecece5aedc02dd4586397d8096affb1"
+  integrity sha512-T7mYop3aDpRHIQaUYcmzmh6j9MAe560n6ukqjJMbVC6bVTau7dSpvB18bcsBPPtOSe10cKxhJFtlbEzLa0LL1g==
+
+elegant-spinner@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e"
+  integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=
+
+element-resize-detector@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/element-resize-detector/-/element-resize-detector-1.2.1.tgz#b0305194447a4863155e58f13323a0aef30851d1"
+  integrity sha512-BdFsPepnQr9fznNPF9nF4vQ457U/ZJXQDSNF1zBe7yaga8v9AdZf3/NElYxFdUh7SitSGt040QygiTo6dtatIw==
+  dependencies:
+    batch-processor "1.0.0"
+
+elliptic@^6.0.0:
+  version "6.5.2"
+  resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
+  integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==
+  dependencies:
+    bn.js "^4.4.0"
+    brorand "^1.0.1"
+    hash.js "^1.0.0"
+    hmac-drbg "^1.0.0"
+    inherits "^2.0.1"
+    minimalistic-assert "^1.0.0"
+    minimalistic-crypto-utils "^1.0.0"
+
+email-addresses@^3.0.1:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/email-addresses/-/email-addresses-3.1.0.tgz#cabf7e085cbdb63008a70319a74e6136188812fb"
+  integrity sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==
+
+emittery@^0.7.1:
+  version "0.7.2"
+  resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.2.tgz#25595908e13af0f5674ab419396e2fb394cdfa82"
+  integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==
+
+"emoji-regex@>=6.0.0 <=6.1.1":
+  version "6.1.1"
+  resolved "http://localhost:4873/emoji-regex/-/emoji-regex-6.1.1.tgz#c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e"
+  integrity sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=
+
+emoji-regex@^7.0.1:
+  version "7.0.3"
+  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
+  integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
+
+emoji-regex@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+  integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+
+emoji-regex@^9.0.0:
+  version "9.2.0"
+  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.0.tgz#a26da8e832b16a9753309f25e35e3c0efb9a066a"
+  integrity sha512-DNc3KFPK18bPdElMJnf/Pkv5TXhxFU3YFDEuGLDRtPmV4rkmCjBkCSEp22u6rBHdSN9Vlp/GK7k98prmE1Jgug==
+
+emojis-list@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
+  integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
+
+emojis-list@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
+  integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
+
+emotion-theming@^10.0.19, emotion-theming@^10.0.27:
+  version "10.0.27"
+  resolved "https://registry.yarnpkg.com/emotion-theming/-/emotion-theming-10.0.27.tgz#1887baaec15199862c89b1b984b79806f2b9ab10"
+  integrity sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==
+  dependencies:
+    "@babel/runtime" "^7.5.5"
+    "@emotion/weak-memoize" "0.2.5"
+    hoist-non-react-statics "^3.3.0"
+
+emotion-ts-plugin@^0.5.3:
+  version "0.5.3"
+  resolved "http://localhost:4873/emotion-ts-plugin/-/emotion-ts-plugin-0.5.3.tgz#72948110f5cf79972a62f410c1fb6afd5e98d16e"
+  integrity sha512-GK60jpSpQIH3RdOeG9+/cnbdMJLpto8zVYVBMsKaFGL8yK2Pm/ej1Pa3LgkeBxVww/ELQyvTjwCMi5R+ZQkNSA==
+  dependencies:
+    "@emotion/hash" "^0.7.3"
+    convert-source-map "^1.7.0"
+    find-root "^1.1.0"
+    lodash "^4.17.15"
+    source-map "^0.7.3"
+    tslib "^1.10.0"
+
+encodable@^0.7.6:
+  version "0.7.6"
+  resolved "https://registry.yarnpkg.com/encodable/-/encodable-0.7.6.tgz#fb21e6dc8235482d6086e206bf6894c41329bdd3"
+  integrity sha512-T++E20LzE2r2PfXFA++9vzJXPi1Ji1xDmsXSi7FxjUzWLqWLNErJpopnvMbF7kIKmr0Zea2Ookl/Uf5PtLQfDg==
+  dependencies:
+    "@encodable/color" "^1.0.4"
+    "@encodable/format" "^1.0.5"
+    "@types/d3-array" "^2.0.0"
+    "@types/d3-interpolate" "^1.3.1"
+    "@types/d3-scale" "^2.1.1"
+    "@types/d3-time" "^1.0.10"
+    "@types/lodash.get" "^4.4.6"
+    d3-array "^2.3.1"
+    d3-interpolate "^2.0.1"
+    d3-scale "^3.0.1"
+    d3-time "^2.0.0"
+    lodash.get "^4.4.2"
+    reselect "^4.0.0"
+
+encodeurl@~1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
+  integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
+
+encoding@^0.1.11:
+  version "0.1.12"
+  resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
+  integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=
+  dependencies:
+    iconv-lite "~0.4.13"
+
+end-of-stream@^1.0.0, end-of-stream@^1.1.0:
+  version "1.4.4"
+  resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
+  integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
+  dependencies:
+    once "^1.4.0"
+
+endent@^2.0.1:
+  version "2.0.1"
+  resolved "http://localhost:4873/endent/-/endent-2.0.1.tgz#fb18383a3f37ae3213a5d9f6c4a880d1061eb4c5"
+  integrity sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==
+  dependencies:
+    dedent "^0.7.0"
+    fast-json-parse "^1.0.3"
+    objectorarray "^1.0.4"
+
+enhanced-resolve@^0.9.1:
+  version "0.9.1"
+  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e"
+  integrity sha1-TW5omzcl+GCQknzMhs2fFjW4ni4=
+  dependencies:
+    graceful-fs "^4.1.2"
+    memory-fs "^0.2.0"
+    tapable "^0.1.8"
+
+enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66"
+  integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==
+  dependencies:
+    graceful-fs "^4.1.2"
+    memory-fs "^0.5.0"
+    tapable "^1.0.0"
+
+enhanced-resolve@^4.1.1, enhanced-resolve@^4.3.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz#3b806f3bfafc1ec7de69551ef93cca46c1704126"
+  integrity sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==
+  dependencies:
+    graceful-fs "^4.1.2"
+    memory-fs "^0.5.0"
+    tapable "^1.0.0"
+
+enhanced-resolve@^4.5.0:
+  version "4.5.0"
+  resolved "http://localhost:4873/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"
+  integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
+  dependencies:
+    graceful-fs "^4.1.2"
+    memory-fs "^0.5.0"
+    tapable "^1.0.0"
+
+enquirer@^2.3.0, enquirer@^2.3.5:
+  version "2.3.5"
+  resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.5.tgz#3ab2b838df0a9d8ab9e7dff235b0e8712ef92381"
+  integrity sha512-BNT1C08P9XD0vNg3J475yIUG+mVdp9T6towYFHUv897X0KoHBjB1shyrNmhmtHWKP17iSWgo7Gqh7BBuzLZMSA==
+  dependencies:
+    ansi-colors "^3.2.1"
+
+entities@^1.1.1, entities@^1.1.2, entities@~1.1.1:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
+  integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
+
+entities@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4"
+  integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==
+
+env-ci@^4.5.1:
+  version "4.5.2"
+  resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-4.5.2.tgz#40b08825dcf4ed5b2cddd3d638190571cf96347a"
+  integrity sha512-lS+edpNp2+QXEPkx6raEMIjKxKKWnJ4+VWzovYJ2NLYiJAYenSAXotFfVdgaFxdbVnvAbUI8epQDa1u12ERxfQ==
+  dependencies:
+    execa "^3.2.0"
+    java-properties "^1.0.0"
+
+env-ci@^5.0.2:
+  version "5.0.2"
+  resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-5.0.2.tgz#48b6687f8af8cdf5e31b8fcf2987553d085249d9"
+  integrity sha512-Xc41mKvjouTXD3Oy9AqySz1IeyvJvHZ20Twf5ZLYbNpPPIuCnL/qHCmNlD01LoNy0JTunw9HPYVptD19Ac7Mbw==
+  dependencies:
+    execa "^4.0.0"
+    java-properties "^1.0.0"
+
+env-paths@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43"
+  integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==
+
+envinfo@^7.3.1:
+  version "7.5.0"
+  resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.5.0.tgz#91410bb6db262fb4f1409bd506e9ff57e91023f4"
+  integrity sha512-jDgnJaF/Btomk+m3PZDTTCb5XIIIX3zYItnCRfF73zVgvinLoRomuhi75Y4su0PtQxWz4v66XnLLckyvyJTOIQ==
+
+enzyme-adapter-react-16@^1.14.0:
+  version "1.15.6"
+  resolved "http://localhost:4873/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.6.tgz#fd677a658d62661ac5afd7f7f541f141f8085901"
+  integrity sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==
+  dependencies:
+    enzyme-adapter-utils "^1.14.0"
+    enzyme-shallow-equal "^1.0.4"
+    has "^1.0.3"
+    object.assign "^4.1.2"
+    object.values "^1.1.2"
+    prop-types "^15.7.2"
+    react-is "^16.13.1"
+    react-test-renderer "^16.0.0-0"
+    semver "^5.7.0"
+
+enzyme-adapter-react-16@^1.15.1:
+  version "1.15.2"
+  resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.2.tgz#b16db2f0ea424d58a808f9df86ab6212895a4501"
+  integrity sha512-SkvDrb8xU3lSxID8Qic9rB8pvevDbLybxPK6D/vW7PrT0s2Cl/zJYuXvsd1EBTz0q4o3iqG3FJhpYz3nUNpM2Q==
+  dependencies:
+    enzyme-adapter-utils "^1.13.0"
+    enzyme-shallow-equal "^1.0.1"
+    has "^1.0.3"
+    object.assign "^4.1.0"
+    object.values "^1.1.1"
+    prop-types "^15.7.2"
+    react-is "^16.12.0"
+    react-test-renderer "^16.0.0-0"
+    semver "^5.7.0"
+
+enzyme-adapter-utils@^1.13.0:
+  version "1.13.0"
+  resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.13.0.tgz#01c885dde2114b4690bf741f8dc94cee3060eb78"
+  integrity sha512-YuEtfQp76Lj5TG1NvtP2eGJnFKogk/zT70fyYHXK2j3v6CtuHqc8YmgH/vaiBfL8K1SgVVbQXtTcgQZFwzTVyQ==
+  dependencies:
+    airbnb-prop-types "^2.15.0"
+    function.prototype.name "^1.1.2"
+    object.assign "^4.1.0"
+    object.fromentries "^2.0.2"
+    prop-types "^15.7.2"
+    semver "^5.7.1"
+
+enzyme-adapter-utils@^1.14.0:
+  version "1.14.0"
+  resolved "http://localhost:4873/enzyme-adapter-utils/-/enzyme-adapter-utils-1.14.0.tgz#afbb0485e8033aa50c744efb5f5711e64fbf1ad0"
+  integrity sha512-F/z/7SeLt+reKFcb7597IThpDp0bmzcH1E9Oabqv+o01cID2/YInlqHbFl7HzWBl4h3OdZYedtwNDOmSKkk0bg==
+  dependencies:
+    airbnb-prop-types "^2.16.0"
+    function.prototype.name "^1.1.3"
+    has "^1.0.3"
+    object.assign "^4.1.2"
+    object.fromentries "^2.0.3"
+    prop-types "^15.7.2"
+    semver "^5.7.1"
+
+enzyme-matchers@^7.1.2:
+  version "7.1.2"
+  resolved "https://registry.yarnpkg.com/enzyme-matchers/-/enzyme-matchers-7.1.2.tgz#d80530a61f22d28bb993dd7588abba38bd4de282"
+  integrity sha512-03WqAg2XDl7id9rARIO97HQ1JIw9F2heJ3R4meGu/13hx0ULTDEgl0E67MGl2Uq1jq1DyRnJfto1/VSzskdV5A==
+  dependencies:
+    circular-json-es6 "^2.0.1"
+    deep-equal-ident "^1.1.1"
+
+enzyme-shallow-equal@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.1.tgz#7afe03db3801c9b76de8440694096412a8d9d49e"
+  integrity sha512-hGA3i1so8OrYOZSM9whlkNmVHOicJpsjgTzC+wn2JMJXhq1oO4kA4bJ5MsfzSIcC71aLDKzJ6gZpIxrqt3QTAQ==
+  dependencies:
+    has "^1.0.3"
+    object-is "^1.0.2"
+
+enzyme-shallow-equal@^1.0.4:
+  version "1.0.4"
+  resolved "http://localhost:4873/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.4.tgz#b9256cb25a5f430f9bfe073a84808c1d74fced2e"
+  integrity sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==
+  dependencies:
+    has "^1.0.3"
+    object-is "^1.1.2"
+
+enzyme-to-json@^3.3.0:
+  version "3.6.1"
+  resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.6.1.tgz#d60740950bc7ca6384dfe6fe405494ec5df996bc"
+  integrity sha512-15tXuONeq5ORoZjV/bUo2gbtZrN2IH+Z6DvL35QmZyKHgbY1ahn6wcnLd9Xv9OjiwbAXiiP8MRZwbZrCv1wYNg==
+  dependencies:
+    "@types/cheerio" "^0.22.22"
+    lodash "^4.17.15"
+    react-is "^16.12.0"
+
+enzyme-to-json@^3.4.3:
+  version "3.5.0"
+  resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.5.0.tgz#3d536f1e8fb50d972360014fe2bd64e6a672f7dd"
+  integrity sha512-clusXRsiaQhG7+wtyc4t7MU8N3zCOgf4eY9+CeSenYzKlFST4lxerfOvnWd4SNaToKhkuba+w6m242YpQOS7eA==
+  dependencies:
+    lodash "^4.17.15"
+    react-is "^16.12.0"
+
+enzyme@^3.10.0, enzyme@^3.11.0:
+  version "3.11.0"
+  resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.11.0.tgz#71d680c580fe9349f6f5ac6c775bc3e6b7a79c28"
+  integrity sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==
+  dependencies:
+    array.prototype.flat "^1.2.3"
+    cheerio "^1.0.0-rc.3"
+    enzyme-shallow-equal "^1.0.1"
+    function.prototype.name "^1.1.2"
+    has "^1.0.3"
+    html-element-map "^1.2.0"
+    is-boolean-object "^1.0.1"
+    is-callable "^1.1.5"
+    is-number-object "^1.0.4"
+    is-regex "^1.0.5"
+    is-string "^1.0.5"
+    is-subset "^0.1.1"
+    lodash.escape "^4.0.1"
+    lodash.isequal "^4.5.0"
+    object-inspect "^1.7.0"
+    object-is "^1.0.2"
+    object.assign "^4.1.0"
+    object.entries "^1.1.1"
+    object.values "^1.1.1"
+    raf "^3.4.1"
+    rst-selector-parser "^2.2.3"
+    string.prototype.trim "^1.2.1"
+
+err-code@^1.0.0:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960"
+  integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA=
+
+errlop@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/errlop/-/errlop-2.1.0.tgz#a9df1d2e5b1359e95c3fc0bf3f1b68fa39017260"
+  integrity sha512-sEmQX03aJkWsqTPDYaymq3ROJmKxMHhFS4UN8fWwr5ZiRtw3p61QHRk2QQj68DiaTIXWujJP+uEUS1Zx3spxlw==
+
+errno@^0.1.1:
+  version "0.1.8"
+  resolved "http://localhost:4873/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
+  integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
+  dependencies:
+    prr "~1.0.1"
+
+errno@^0.1.3, errno@~0.1.7:
+  version "0.1.7"
+  resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
+  integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==
+  dependencies:
+    prr "~1.0.1"
+
+error-ex@^1.2.0, error-ex@^1.3.1:
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
+  integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
+  dependencies:
+    is-arrayish "^0.2.1"
+
+error-stack-parser@^2.0.6:
+  version "2.0.6"
+  resolved "http://localhost:4873/error-stack-parser/-/error-stack-parser-2.0.6.tgz#5a99a707bd7a4c58a797902d48d82803ede6aad8"
+  integrity sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==
+  dependencies:
+    stackframe "^1.1.1"
+
+error@^7.0.2:
+  version "7.2.1"
+  resolved "https://registry.yarnpkg.com/error/-/error-7.2.1.tgz#eab21a4689b5f684fc83da84a0e390de82d94894"
+  integrity sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==
+  dependencies:
+    string-template "~0.2.1"
+
+es-abstract@^1.17.0, es-abstract@^1.17.0-next.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.17.5:
+  version "1.17.5"
+  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9"
+  integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==
+  dependencies:
+    es-to-primitive "^1.2.1"
+    function-bind "^1.1.1"
+    has "^1.0.3"
+    has-symbols "^1.0.1"
+    is-callable "^1.1.5"
+    is-regex "^1.0.5"
+    object-inspect "^1.7.0"
+    object-keys "^1.1.1"
+    object.assign "^4.1.0"
+    string.prototype.trimleft "^2.1.1"
+    string.prototype.trimright "^2.1.1"
+
+es-abstract@^1.18.0-next.1:
+  version "1.18.0-next.1"
+  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68"
+  integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==
+  dependencies:
+    es-to-primitive "^1.2.1"
+    function-bind "^1.1.1"
+    has "^1.0.3"
+    has-symbols "^1.0.1"
+    is-callable "^1.2.2"
+    is-negative-zero "^2.0.0"
+    is-regex "^1.1.1"
+    object-inspect "^1.8.0"
+    object-keys "^1.1.1"
+    object.assign "^4.1.1"
+    string.prototype.trimend "^1.0.1"
+    string.prototype.trimstart "^1.0.1"
+
+es-array-method-boxes-properly@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
+  integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
+
+es-get-iterator@^1.0.2:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.0.tgz#bb98ad9d6d63b31aacdc8f89d5d0ee57bcb5b4c8"
+  integrity sha512-UfrmHuWQlNMTs35e1ypnvikg6jCz3SK8v8ImvmDsh36fCVUR1MqoFDiyn0/k52C8NqO3YsO8Oe0azeesNuqSsQ==
+  dependencies:
+    es-abstract "^1.17.4"
+    has-symbols "^1.0.1"
+    is-arguments "^1.0.4"
+    is-map "^2.0.1"
+    is-set "^2.0.1"
+    is-string "^1.0.5"
+    isarray "^2.0.5"
+
+es-to-primitive@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
+  integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
+  dependencies:
+    is-callable "^1.1.4"
+    is-date-object "^1.0.1"
+    is-symbol "^1.0.2"
+
+es5-shim@^4.5.13:
+  version "4.5.14"
+  resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.14.tgz#90009e1019d0ea327447cb523deaff8fe45697ef"
+  integrity sha512-7SwlpL+2JpymWTt8sNLuC2zdhhc+wrfe5cMPI2j0o6WsPdfAiPwmFy2f0AocPB4RQVBOZ9kNTgi5YF7TdhkvEg==
+
+es6-promise@^4.0.3:
+  version "4.2.8"
+  resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a"
+  integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==
+
+es6-promisify@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203"
+  integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=
+  dependencies:
+    es6-promise "^4.0.3"
+
+es6-shim@^0.35.5:
+  version "0.35.5"
+  resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.5.tgz#46f59dc0a84a1c5029e8ff1166ca0a902077a9ab"
+  integrity sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg==
+
+es6bindall@^0.0.9:
+  version "0.0.9"
+  resolved "http://localhost:4873/es6bindall/-/es6bindall-0.0.9.tgz#71e00afa69f8dd59ac5ac898a0d31c978df817d5"
+  integrity sha1-ceAK+mn43VmsWsiYoNMcl434F9U=
+
+escalade@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
+  integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
+
+escape-html@^1.0.3, escape-html@~1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
+  integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
+
+escape-latex@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/escape-latex/-/escape-latex-1.2.0.tgz#07c03818cf7dac250cce517f4fda1b001ef2bca1"
+  integrity sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==
+
+escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+  integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
+
+escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
+  integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
+
+escodegen@^1.11.1:
+  version "1.14.1"
+  resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457"
+  integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ==
+  dependencies:
+    esprima "^4.0.1"
+    estraverse "^4.2.0"
+    esutils "^2.0.2"
+    optionator "^0.8.1"
+  optionalDependencies:
+    source-map "~0.6.1"
+
+escodegen@^1.12.0, escodegen@^1.14.1, escodegen@^1.9.1:
+  version "1.14.3"
+  resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
+  integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
+  dependencies:
+    esprima "^4.0.1"
+    estraverse "^4.2.0"
+    esutils "^2.0.2"
+    optionator "^0.8.1"
+  optionalDependencies:
+    source-map "~0.6.1"
+
+escodegen@~1.9.0:
+  version "1.9.1"
+  resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2"
+  integrity sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q==
+  dependencies:
+    esprima "^3.1.3"
+    estraverse "^4.2.0"
+    esutils "^2.0.2"
+    optionator "^0.8.1"
+  optionalDependencies:
+    source-map "~0.6.1"
+
+eslint-ast-utils@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/eslint-ast-utils/-/eslint-ast-utils-1.1.0.tgz#3d58ba557801cfb1c941d68131ee9f8c34bd1586"
+  integrity sha512-otzzTim2/1+lVrlH19EfQQJEhVJSu0zOb9ygb3iapN6UlyaDtyRq4b5U1FuW0v1lRa9Fp/GJyHkSwm6NqABgCA==
+  dependencies:
+    lodash.get "^4.4.2"
+    lodash.zip "^4.2.0"
+
+eslint-config-airbnb-base@^14.2.1:
+  version "14.2.1"
+  resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz#8a2eb38455dc5a312550193b319cdaeef042cd1e"
+  integrity sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==
+  dependencies:
+    confusing-browser-globals "^1.0.10"
+    object.assign "^4.1.2"
+    object.entries "^1.1.2"
+
+eslint-config-airbnb@^18.2.1:
+  version "18.2.1"
+  resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.2.1.tgz#b7fe2b42f9f8173e825b73c8014b592e449c98d9"
+  integrity sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==
+  dependencies:
+    eslint-config-airbnb-base "^14.2.1"
+    object.assign "^4.1.2"
+    object.entries "^1.1.2"
+
+eslint-config-prettier@^7.1.0:
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-7.1.0.tgz#5402eb559aa94b894effd6bddfa0b1ca051c858f"
+  integrity sha512-9sm5/PxaFG7qNJvJzTROMM1Bk1ozXVTKI0buKOyb0Bsr1hrwi0H/TzxF/COtf1uxikIK8SwhX7K6zg78jAzbeA==
+
+eslint-import-resolver-node@^0.3.4:
+  version "0.3.4"
+  resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717"
+  integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==
+  dependencies:
+    debug "^2.6.9"
+    resolve "^1.13.1"
+
+eslint-import-resolver-typescript@^2.3.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.3.0.tgz#0870988098bc6c6419c87705e6b42bee89425445"
+  integrity sha512-MHSXvmj5e0SGOOBhBbt7C+fWj1bJbtSYFAD85Xeg8nvUtuooTod2HQb8bfhE9f5QyyNxEfgzqOYFCvmdDIcCuw==
+  dependencies:
+    debug "^4.1.1"
+    glob "^7.1.6"
+    is-glob "^4.0.1"
+    resolve "^1.17.0"
+    tsconfig-paths "^3.9.0"
+
+eslint-import-resolver-webpack@^0.13.0:
+  version "0.13.0"
+  resolved "https://registry.yarnpkg.com/eslint-import-resolver-webpack/-/eslint-import-resolver-webpack-0.13.0.tgz#5cb19cf4b6996c8a2514aeb10f909e2c70488dc3"
+  integrity sha512-hZWGcmjaJZK/WSCYGI/y4+FMGQZT+cwW/1E/P4rDwFj2PbanlQHISViw4ccDJ+2wxAqjgwBfxwy3seABbVKDEw==
+  dependencies:
+    array-find "^1.0.0"
+    debug "^2.6.9"
+    enhanced-resolve "^0.9.1"
+    find-root "^1.1.0"
+    has "^1.0.3"
+    interpret "^1.2.0"
+    lodash "^4.17.15"
+    node-libs-browser "^1.0.0 || ^2.0.0"
+    resolve "^1.13.1"
+    semver "^5.7.1"
+
+eslint-module-utils@^2.6.0:
+  version "2.6.0"
+  resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6"
+  integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==
+  dependencies:
+    debug "^2.6.9"
+    pkg-dir "^2.0.0"
+
+eslint-plugin-cypress@^2.11.2:
+  version "2.11.2"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-cypress/-/eslint-plugin-cypress-2.11.2.tgz#a8f3fe7ec840f55e4cea37671f93293e6c3e76a0"
+  integrity sha512-1SergF1sGbVhsf7MYfOLiBhdOg6wqyeV9pXUAIDIffYTGMN3dTBQS9nFAzhLsHhO+Bn0GaVM1Ecm71XUidQ7VA==
+  dependencies:
+    globals "^11.12.0"
+
+eslint-plugin-import@^2.22.1:
+  version "2.22.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz#0896c7e6a0cf44109a2d97b95903c2bb689d7702"
+  integrity sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==
+  dependencies:
+    array-includes "^3.1.1"
+    array.prototype.flat "^1.2.3"
+    contains-path "^0.1.0"
+    debug "^2.6.9"
+    doctrine "1.5.0"
+    eslint-import-resolver-node "^0.3.4"
+    eslint-module-utils "^2.6.0"
+    has "^1.0.3"
+    minimatch "^3.0.4"
+    object.values "^1.1.1"
+    read-pkg-up "^2.0.0"
+    resolve "^1.17.0"
+    tsconfig-paths "^3.9.0"
+
+eslint-plugin-jest-dom@^3.6.5:
+  version "3.6.5"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-jest-dom/-/eslint-plugin-jest-dom-3.6.5.tgz#61459d1db52873d438983d3aa84aaa9804eff222"
+  integrity sha512-iaJ5aSQghp9u2ciLAseWIVu7X5tW+WwNJwMBDToK4GBfwGXXQJDLt5IBNtm6fHvC3FRzCGwvyNMIG1g5gF+icQ==
+  dependencies:
+    "@babel/runtime" "^7.9.6"
+    "@testing-library/dom" "^7.28.1"
+    requireindex "^1.2.0"
+
+eslint-plugin-jest@^24.1.3:
+  version "24.1.3"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.1.3.tgz#fa3db864f06c5623ff43485ca6c0e8fc5fe8ba0c"
+  integrity sha512-dNGGjzuEzCE3d5EPZQ/QGtmlMotqnYWD/QpCZ1UuZlrMAdhG5rldh0N0haCvhGnUkSeuORS5VNROwF9Hrgn3Lg==
+  dependencies:
+    "@typescript-eslint/experimental-utils" "^4.0.1"
+
+eslint-plugin-jsx-a11y@^6.4.1:
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz#a2d84caa49756942f42f1ffab9002436391718fd"
+  integrity sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    aria-query "^4.2.2"
+    array-includes "^3.1.1"
+    ast-types-flow "^0.0.7"
+    axe-core "^4.0.2"
+    axobject-query "^2.2.0"
+    damerau-levenshtein "^1.0.6"
+    emoji-regex "^9.0.0"
+    has "^1.0.3"
+    jsx-ast-utils "^3.1.0"
+    language-tags "^1.0.5"
+
+eslint-plugin-no-only-tests@^2.4.0:
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-no-only-tests/-/eslint-plugin-no-only-tests-2.4.0.tgz#7d565434aa7d16ccc7eea957c391d98f827332ca"
+  integrity sha512-azP9PwQYfGtXJjW273nIxQH9Ygr+5/UyeW2wEjYoDtVYPI+WPKwbj0+qcAKYUXFZLRumq4HKkFaoDBAwBoXImQ==
+
+eslint-plugin-prettier@^3.3.1:
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz#7079cfa2497078905011e6f82e8dd8453d1371b7"
+  integrity sha512-Rq3jkcFY8RYeQLgk2cCwuc0P7SEFwDravPhsJZOQ5N4YI4DSg50NyqJ/9gdZHzQlHf8MvafSesbNJCcP/FF6pQ==
+  dependencies:
+    prettier-linter-helpers "^1.0.0"
+
+eslint-plugin-react-hooks@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556"
+  integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==
+
+eslint-plugin-react@^7.22.0:
+  version "7.22.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz#3d1c542d1d3169c45421c1215d9470e341707269"
+  integrity sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==
+  dependencies:
+    array-includes "^3.1.1"
+    array.prototype.flatmap "^1.2.3"
+    doctrine "^2.1.0"
+    has "^1.0.3"
+    jsx-ast-utils "^2.4.1 || ^3.0.0"
+    object.entries "^1.1.2"
+    object.fromentries "^2.0.2"
+    object.values "^1.1.1"
+    prop-types "^15.7.2"
+    resolve "^1.18.1"
+    string.prototype.matchall "^4.0.2"
+
+eslint-plugin-testing-library@^3.10.1:
+  version "3.10.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.1.tgz#4dd02306d601c3238fdabf1d1dbc5f2a8e85d531"
+  integrity sha512-nQIFe2muIFv2oR2zIuXE4vTbcFNx8hZKRzgHZqJg8rfopIWwoTwtlbCCNELT/jXzVe1uZF68ALGYoDXjLczKiQ==
+  dependencies:
+    "@typescript-eslint/experimental-utils" "^3.10.1"
+
+eslint-plugin-unicorn@^25.0.1:
+  version "25.0.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-25.0.1.tgz#bedcbc9b817042a44f6501584e8266741120f023"
+  integrity sha512-MEyEWoyou/qhJH6rEER9YHACtCsQT+eewc6Fdxbi2eiTvsGrBR8JZMA6qaeof3oMQeRxOpaERoBKzU7R5c4A/w==
+  dependencies:
+    ci-info "^2.0.0"
+    clean-regexp "^1.0.0"
+    eslint-ast-utils "^1.1.0"
+    eslint-template-visitor "^2.2.1"
+    eslint-utils "^2.1.0"
+    import-modules "^2.0.0"
+    lodash "^4.17.20"
+    pluralize "^8.0.0"
+    read-pkg-up "^7.0.1"
+    regexp-tree "^0.1.21"
+    reserved-words "^0.1.2"
+    safe-regex "^2.1.1"
+    semver "^7.3.4"
+
+eslint-scope@^4.0.3:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
+  integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
+  dependencies:
+    esrecurse "^4.1.0"
+    estraverse "^4.1.1"
+
+eslint-scope@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9"
+  integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==
+  dependencies:
+    esrecurse "^4.1.0"
+    estraverse "^4.1.1"
+
+eslint-scope@^5.1.1:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
+  integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
+  dependencies:
+    esrecurse "^4.3.0"
+    estraverse "^4.1.1"
+
+eslint-template-visitor@^2.2.1:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/eslint-template-visitor/-/eslint-template-visitor-2.2.1.tgz#2dccb1ab28fa7429e56ba6dd0144def2d89bc2d6"
+  integrity sha512-q3SxoBXz0XjPGkUpwGVAwIwIPIxzCAJX1uwfVc8tW3v7u/zS7WXNH3I2Mu2MDz2NgSITAyKLRaQFPHu/iyKxDQ==
+  dependencies:
+    babel-eslint "^10.1.0"
+    eslint-visitor-keys "^1.3.0"
+    esquery "^1.3.1"
+    multimap "^1.1.0"
+
+eslint-utils@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.0.0.tgz#7be1cc70f27a72a76cd14aa698bcabed6890e1cd"
+  integrity sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA==
+  dependencies:
+    eslint-visitor-keys "^1.1.0"
+
+eslint-utils@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
+  integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
+  dependencies:
+    eslint-visitor-keys "^1.1.0"
+
+eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
+  integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
+
+eslint-visitor-keys@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
+  integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
+
+eslint-visitor-keys@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
+  integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
+
+eslint@^7.17.0:
+  version "7.17.0"
+  resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.17.0.tgz#4ccda5bf12572ad3bf760e6f195886f50569adb0"
+  integrity sha512-zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ==
+  dependencies:
+    "@babel/code-frame" "^7.0.0"
+    "@eslint/eslintrc" "^0.2.2"
+    ajv "^6.10.0"
+    chalk "^4.0.0"
+    cross-spawn "^7.0.2"
+    debug "^4.0.1"
+    doctrine "^3.0.0"
+    enquirer "^2.3.5"
+    eslint-scope "^5.1.1"
+    eslint-utils "^2.1.0"
+    eslint-visitor-keys "^2.0.0"
+    espree "^7.3.1"
+    esquery "^1.2.0"
+    esutils "^2.0.2"
+    file-entry-cache "^6.0.0"
+    functional-red-black-tree "^1.0.1"
+    glob-parent "^5.0.0"
+    globals "^12.1.0"
+    ignore "^4.0.6"
+    import-fresh "^3.0.0"
+    imurmurhash "^0.1.4"
+    is-glob "^4.0.0"
+    js-yaml "^3.13.1"
+    json-stable-stringify-without-jsonify "^1.0.1"
+    levn "^0.4.1"
+    lodash "^4.17.19"
+    minimatch "^3.0.4"
+    natural-compare "^1.4.0"
+    optionator "^0.9.1"
+    progress "^2.0.0"
+    regexpp "^3.1.0"
+    semver "^7.2.1"
+    strip-ansi "^6.0.0"
+    strip-json-comments "^3.1.0"
+    table "^6.0.4"
+    text-table "^0.2.0"
+    v8-compile-cache "^2.0.3"
+
+esm@^3.0.84, esm@^3.2.25:
+  version "3.2.25"
+  resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10"
+  integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==
+
+esm@~3.0.84:
+  version "3.0.84"
+  resolved "https://registry.yarnpkg.com/esm/-/esm-3.0.84.tgz#bb108989f4673b32d4f62406869c28eed3815a63"
+  integrity sha512-SzSGoZc17S7P+12R9cg21Bdb7eybX25RnIeRZ80xZs+VZ3kdQKzqTp2k4hZJjR7p9l0186TTXSgrxzlMDBktlw==
+
+espree@^7.3.0, espree@^7.3.1:
+  version "7.3.1"
+  resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
+  integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
+  dependencies:
+    acorn "^7.4.0"
+    acorn-jsx "^5.3.1"
+    eslint-visitor-keys "^1.3.0"
+
+esprima@^3.1.3:
+  version "3.1.3"
+  resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
+  integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=
+
+esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
+  integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
+
+esprima@~1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad"
+  integrity sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=
+
+esprint@^0.7.0:
+  version "0.7.0"
+  resolved "https://registry.yarnpkg.com/esprint/-/esprint-0.7.0.tgz#058af46da0d847f021e9c92db836bbf1c3c62c77"
+  integrity sha512-9EbgelpgCdiHRnTzAHbG+cyKN0ruUBfu9NTxxehQOh+1RVly1xvZPArqzc2DD95YtdOVX1qLqaKZI9qngmq+fQ==
+  dependencies:
+    dnode-weak-napi "1.2.2"
+    fb-watchman "^2.0.0"
+    glob "^7.1.4"
+    sane "^4.1.0"
+    worker-farm "^1.7.0"
+    yargs "^14.0.0"
+
+esquery@^1.2.0, esquery@^1.3.1:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
+  integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
+  dependencies:
+    estraverse "^5.1.0"
+
+esrecurse@^4.1.0:
+  version "4.2.1"
+  resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
+  integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==
+  dependencies:
+    estraverse "^4.1.0"
+
+esrecurse@^4.3.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+  integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
+  dependencies:
+    estraverse "^5.2.0"
+
+estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
+  integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
+
+estraverse@^5.1.0, estraverse@^5.2.0:
+  version "5.2.0"
+  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
+  integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
+
+esutils@^2.0.2:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+  integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
+
+etag@~1.8.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
+  integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
+
+eventemitter3@^3.1.0:
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7"
+  integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==
+
+eventemitter3@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.0.tgz#d65176163887ee59f386d64c82610b696a4a74eb"
+  integrity sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==
+
+events@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59"
+  integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==
+
+eventsource@^1.0.7:
+  version "1.0.7"
+  resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz#8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0"
+  integrity sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==
+  dependencies:
+    original "^1.0.0"
+
+evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
+  integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
+  dependencies:
+    md5.js "^1.3.4"
+    safe-buffer "^5.1.1"
+
+exec-sh@^0.3.2:
+  version "0.3.4"
+  resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5"
+  integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==
+
+execa@^0.7.0:
+  version "0.7.0"
+  resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
+  integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=
+  dependencies:
+    cross-spawn "^5.0.1"
+    get-stream "^3.0.0"
+    is-stream "^1.1.0"
+    npm-run-path "^2.0.0"
+    p-finally "^1.0.0"
+    signal-exit "^3.0.0"
+    strip-eof "^1.0.0"
+
+execa@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
+  integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
+  dependencies:
+    cross-spawn "^6.0.0"
+    get-stream "^4.0.0"
+    is-stream "^1.1.0"
+    npm-run-path "^2.0.0"
+    p-finally "^1.0.0"
+    signal-exit "^3.0.0"
+    strip-eof "^1.0.0"
+
+execa@^3.2.0, execa@^3.4.0:
+  version "3.4.0"
+  resolved "https://registry.yarnpkg.com/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89"
+  integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==
+  dependencies:
+    cross-spawn "^7.0.0"
+    get-stream "^5.0.0"
+    human-signals "^1.1.1"
+    is-stream "^2.0.0"
+    merge-stream "^2.0.0"
+    npm-run-path "^4.0.0"
+    onetime "^5.1.0"
+    p-finally "^2.0.0"
+    signal-exit "^3.0.2"
+    strip-final-newline "^2.0.0"
+
+execa@^4.0.0, execa@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.1.tgz#988488781f1f0238cd156f7aaede11c3e853b4c1"
+  integrity sha512-SCjM/zlBdOK8Q5TIjOn6iEHZaPHFsMoTxXQ2nvUvtPnuohz3H2dIozSg+etNR98dGoYUp2ENSKLL/XaMmbxVgw==
+  dependencies:
+    cross-spawn "^7.0.0"
+    get-stream "^5.0.0"
+    human-signals "^1.1.1"
+    is-stream "^2.0.0"
+    merge-stream "^2.0.0"
+    npm-run-path "^4.0.0"
+    onetime "^5.1.0"
+    signal-exit "^3.0.2"
+    strip-final-newline "^2.0.0"
+
+exit@^0.1.2:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
+  integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
+
+expand-brackets@^2.1.4:
+  version "2.1.4"
+  resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
+  integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
+  dependencies:
+    debug "^2.3.3"
+    define-property "^0.2.5"
+    extend-shallow "^2.0.1"
+    posix-character-classes "^0.1.0"
+    regex-not "^1.0.0"
+    snapdragon "^0.8.1"
+    to-regex "^3.0.1"
+
+expand-tilde@^2.0.0, expand-tilde@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
+  integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=
+  dependencies:
+    homedir-polyfill "^1.0.1"
+
+expect@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/expect/-/expect-25.5.0.tgz#f07f848712a2813bb59167da3fb828ca21f58bba"
+  integrity sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    ansi-styles "^4.0.0"
+    jest-get-type "^25.2.6"
+    jest-matcher-utils "^25.5.0"
+    jest-message-util "^25.5.0"
+    jest-regex-util "^25.2.6"
+
+expect@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/expect/-/expect-26.6.2.tgz#c6b996bf26bf3fe18b67b2d0f51fc981ba934417"
+  integrity sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    ansi-styles "^4.0.0"
+    jest-get-type "^26.3.0"
+    jest-matcher-utils "^26.6.2"
+    jest-message-util "^26.6.2"
+    jest-regex-util "^26.0.0"
+
+exports-loader@^0.7.0:
+  version "0.7.0"
+  resolved "http://localhost:4873/exports-loader/-/exports-loader-0.7.0.tgz#84881c784dea6036b8e1cd1dac3da9b6409e21a5"
+  integrity sha512-RKwCrO4A6IiKm0pG3c9V46JxIHcDplwwGJn6+JJ1RcVnh/WSGJa0xkmk5cRVtgOPzCAtTMGj2F7nluh9L0vpSA==
+  dependencies:
+    loader-utils "^1.1.0"
+    source-map "0.5.0"
+
+express@^4.16.3, express@^4.17.0, express@^4.17.1:
+  version "4.17.1"
+  resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
+  integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==
+  dependencies:
+    accepts "~1.3.7"
+    array-flatten "1.1.1"
+    body-parser "1.19.0"
+    content-disposition "0.5.3"
+    content-type "~1.0.4"
+    cookie "0.4.0"
+    cookie-signature "1.0.6"
+    debug "2.6.9"
+    depd "~1.1.2"
+    encodeurl "~1.0.2"
+    escape-html "~1.0.3"
+    etag "~1.8.1"
+    finalhandler "~1.1.2"
+    fresh "0.5.2"
+    merge-descriptors "1.0.1"
+    methods "~1.1.2"
+    on-finished "~2.3.0"
+    parseurl "~1.3.3"
+    path-to-regexp "0.1.7"
+    proxy-addr "~2.0.5"
+    qs "6.7.0"
+    range-parser "~1.2.1"
+    safe-buffer "5.1.2"
+    send "0.17.1"
+    serve-static "1.14.1"
+    setprototypeof "1.1.1"
+    statuses "~1.5.0"
+    type-is "~1.6.18"
+    utils-merge "1.0.1"
+    vary "~1.1.2"
+
+extend-shallow@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
+  integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
+  dependencies:
+    is-extendable "^0.1.0"
+
+extend-shallow@^3.0.0, extend-shallow@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
+  integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
+  dependencies:
+    assign-symbols "^1.0.0"
+    is-extendable "^1.0.1"
+
+extend@^3.0.0, extend@~3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
+  integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
+
+external-editor@^3.0.0, external-editor@^3.0.3:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
+  integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
+  dependencies:
+    chardet "^0.7.0"
+    iconv-lite "^0.4.24"
+    tmp "^0.0.33"
+
+extglob@^2.0.4:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
+  integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
+  dependencies:
+    array-unique "^0.3.2"
+    define-property "^1.0.0"
+    expand-brackets "^2.1.4"
+    extend-shallow "^2.0.1"
+    fragment-cache "^0.2.1"
+    regex-not "^1.0.0"
+    snapdragon "^0.8.1"
+    to-regex "^3.0.1"
+
+extsprintf@1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
+  integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
+
+extsprintf@^1.2.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
+  integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
+
+fake-tag@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/fake-tag/-/fake-tag-2.0.0.tgz#08ea5df950ef8635833186247f569e8406ffb4da"
+  integrity sha512-QDz+8qiNQ9AfBZ31EXlID5JIbUkU3e1nXDWk4tidFzd2gy8XJaEUW1HCuDY6DUy6t2Y0nvhD6PsUc+2WYy5w0w==
+
+falafel@^2.1.0:
+  version "2.2.4"
+  resolved "https://registry.yarnpkg.com/falafel/-/falafel-2.2.4.tgz#b5d86c060c2412a43166243cb1bce44d1abd2819"
+  integrity sha512-0HXjo8XASWRmsS0X1EkhwEMZaD3Qvp7FfURwjLKjG1ghfRm/MGZl2r4cWUTv41KdNghTw4OUMmVtdGQp3+H+uQ==
+  dependencies:
+    acorn "^7.1.1"
+    foreach "^2.0.5"
+    isarray "^2.0.1"
+    object-keys "^1.0.6"
+
+fast-deep-equal@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
+  integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
+
+fast-deep-equal@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4"
+  integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==
+
+fast-diff@^1.1.2:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
+  integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
+
+fast-glob@^2.0.2, fast-glob@^2.2.6:
+  version "2.2.7"
+  resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d"
+  integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==
+  dependencies:
+    "@mrmlnc/readdir-enhanced" "^2.2.1"
+    "@nodelib/fs.stat" "^1.1.2"
+    glob-parent "^3.1.0"
+    is-glob "^4.0.0"
+    merge2 "^1.2.3"
+    micromatch "^3.1.10"
+
+fast-glob@^3.0.4, fast-glob@^3.1.1, fast-glob@^3.2.2, fast-glob@^3.2.4:
+  version "3.2.4"
+  resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3"
+  integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==
+  dependencies:
+    "@nodelib/fs.stat" "^2.0.2"
+    "@nodelib/fs.walk" "^1.2.3"
+    glob-parent "^5.1.0"
+    merge2 "^1.3.0"
+    micromatch "^4.0.2"
+    picomatch "^2.2.1"
+
+fast-json-parse@^1.0.3:
+  version "1.0.3"
+  resolved "http://localhost:4873/fast-json-parse/-/fast-json-parse-1.0.3.tgz#43e5c61ee4efa9265633046b770fb682a7577c4d"
+  integrity sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==
+
+fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
+  integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
+
+fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
+  version "2.0.6"
+  resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
+  integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
+
+fast-memoize@^2.5.1:
+  version "2.5.2"
+  resolved "http://localhost:4873/fast-memoize/-/fast-memoize-2.5.2.tgz#79e3bb6a4ec867ea40ba0e7146816f6cdce9b57e"
+  integrity sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw==
+
+fast-safe-stringify@^2.0.6:
+  version "2.0.7"
+  resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743"
+  integrity sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==
+
+fast-xml-parser@^3.12.17:
+  version "3.16.0"
+  resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.16.0.tgz#d905e7e6b28fc4648cabebcb074363867fb56ee2"
+  integrity sha512-U+bpScacfgnfNfIKlWHDu4u6rtOaCyxhblOLJ8sZPkhsjgGqdZmVPBhdOyvdMGCDt8CsAv+cssOP3NzQptNt2w==
+
+fastparse@^1.1.2:
+  version "1.1.2"
+  resolved "http://localhost:4873/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
+  integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==
+
+fastq@^1.6.0:
+  version "1.6.1"
+  resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.1.tgz#4570c74f2ded173e71cf0beb08ac70bb85826791"
+  integrity sha512-mpIH5sKYueh3YyeJwqtVo8sORi0CgtmkVbK6kZStpQlZBYQuTzG2CZ7idSiJuA7bY0SFCWUc5WIs+oYumGCQNw==
+  dependencies:
+    reusify "^1.0.4"
+
+fault@^1.0.0, fault@^1.0.2:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13"
+  integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==
+  dependencies:
+    format "^0.2.0"
+
+faye-websocket@^0.10.0:
+  version "0.10.0"
+  resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
+  integrity sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=
+  dependencies:
+    websocket-driver ">=0.5.1"
+
+faye-websocket@~0.11.1:
+  version "0.11.3"
+  resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e"
+  integrity sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==
+  dependencies:
+    websocket-driver ">=0.5.1"
+
+fb-watchman@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
+  integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
+  dependencies:
+    bser "2.1.1"
+
+fbjs@^0.8.1, fbjs@^0.8.4, fbjs@^0.8.9:
+  version "0.8.17"
+  resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd"
+  integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=
+  dependencies:
+    core-js "^1.0.0"
+    isomorphic-fetch "^2.1.1"
+    loose-envify "^1.0.0"
+    object-assign "^4.1.0"
+    promise "^7.1.1"
+    setimmediate "^1.0.5"
+    ua-parser-js "^0.7.18"
+
+fetch-mock@^6.5.2:
+  version "6.5.2"
+  resolved "https://registry.yarnpkg.com/fetch-mock/-/fetch-mock-6.5.2.tgz#b3842b305c13ea0f81c85919cfaa7de387adfa3e"
+  integrity sha512-EIvbpCLBTYyDLu4HJiqD7wC8psDwTUaPaWXNKZbhNO/peUYKiNp5PkZGKRJtnTxaPQu71ivqafvjpM7aL+MofQ==
+  dependencies:
+    babel-polyfill "^6.26.0"
+    glob-to-regexp "^0.4.0"
+    path-to-regexp "^2.2.1"
+
+fetch-mock@^7.7.3:
+  version "7.7.3"
+  resolved "http://localhost:4873/fetch-mock/-/fetch-mock-7.7.3.tgz#6a3f94cfed6e423ab7f5464912982030da605335"
+  integrity sha512-I4OkK90JFQnjH8/n3HDtWxH/I6D1wrxoAM2ri+nb444jpuH3RTcgvXx2el+G20KO873W727/66T7QhOvFxNHPg==
+  dependencies:
+    babel-polyfill "^6.26.0"
+    core-js "^2.6.9"
+    glob-to-regexp "^0.4.0"
+    lodash.isequal "^4.5.0"
+    path-to-regexp "^2.2.1"
+    whatwg-url "^6.5.0"
+
+fetch-retry@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-4.0.1.tgz#ca746666399aaf0547aa3851ccb543cfb112b8da"
+  integrity sha512-EhIeVBkq9T2z1ANDr2kmLujoHOTdLvR9t/nzLSdX4PMIFinLyyZFYX9T6Fb3LrbiHQEhujq1O7ElsqjuqYIsEA==
+
+figgy-pudding@^3.4.1, figgy-pudding@^3.5.1:
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
+  integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
+
+figures@^1.7.0:
+  version "1.7.0"
+  resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
+  integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=
+  dependencies:
+    escape-string-regexp "^1.0.5"
+    object-assign "^4.1.0"
+
+figures@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
+  integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=
+  dependencies:
+    escape-string-regexp "^1.0.5"
+
+figures@^3.0.0, figures@^3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
+  integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
+  dependencies:
+    escape-string-regexp "^1.0.5"
+
+file-entry-cache@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.0.tgz#7921a89c391c6d93efec2169ac6bf300c527ea0a"
+  integrity sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==
+  dependencies:
+    flat-cache "^3.0.4"
+
+file-loader@^4.2.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-4.3.0.tgz#780f040f729b3d18019f20605f723e844b8a58af"
+  integrity sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==
+  dependencies:
+    loader-utils "^1.2.3"
+    schema-utils "^2.5.0"
+
+file-loader@^6.0.0:
+  version "6.2.0"
+  resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d"
+  integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==
+  dependencies:
+    loader-utils "^2.0.0"
+    schema-utils "^3.0.0"
+
+file-system-cache@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/file-system-cache/-/file-system-cache-1.0.5.tgz#84259b36a2bbb8d3d6eb1021d3132ffe64cfff4f"
+  integrity sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=
+  dependencies:
+    bluebird "^3.3.5"
+    fs-extra "^0.30.0"
+    ramda "^0.21.0"
+
+file-uri-to-path@1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
+  integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
+
+filelist@^1.0.1:
+  version "1.0.2"
+  resolved "http://localhost:4873/filelist/-/filelist-1.0.2.tgz#80202f21462d4d1c2e214119b1807c1bc0380e5b"
+  integrity sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==
+  dependencies:
+    minimatch "^3.0.4"
+
+filename-reserved-regex@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-1.0.0.tgz#e61cf805f0de1c984567d0386dc5df50ee5af7e4"
+  integrity sha1-5hz4BfDeHJhFZ9A4bcXfUO5a9+Q=
+
+filenamify-url@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/filenamify-url/-/filenamify-url-1.0.0.tgz#b32bd81319ef5863b73078bed50f46a4f7975f50"
+  integrity sha1-syvYExnvWGO3MHi+1Q9GpPeXX1A=
+  dependencies:
+    filenamify "^1.0.0"
+    humanize-url "^1.0.0"
+
+filenamify@^1.0.0:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/filenamify/-/filenamify-1.2.1.tgz#a9f2ffd11c503bed300015029272378f1f1365a5"
+  integrity sha1-qfL/0RxQO+0wABUCknI3jx8TZaU=
+  dependencies:
+    filename-reserved-regex "^1.0.0"
+    strip-outer "^1.0.0"
+    trim-repeated "^1.0.0"
+
+filesize@3.6.1, filesize@^3.6.1:
+  version "3.6.1"
+  resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317"
+  integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==
+
+filesize@6.0.1:
+  version "6.0.1"
+  resolved "http://localhost:4873/filesize/-/filesize-6.0.1.tgz#f850b509909c7c86f7e450ea19006c31c2ed3d2f"
+  integrity sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg==
+
+fill-range@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
+  integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
+  dependencies:
+    extend-shallow "^2.0.1"
+    is-number "^3.0.0"
+    repeat-string "^1.6.1"
+    to-regex-range "^2.1.0"
+
+fill-range@^7.0.1:
+  version "7.0.1"
+  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
+  integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+  dependencies:
+    to-regex-range "^5.0.1"
+
+finalhandler@~1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
+  integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
+  dependencies:
+    debug "2.6.9"
+    encodeurl "~1.0.2"
+    escape-html "~1.0.3"
+    on-finished "~2.3.0"
+    parseurl "~1.3.3"
+    statuses "~1.5.0"
+    unpipe "~1.0.0"
+
+find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
+  integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
+  dependencies:
+    commondir "^1.0.1"
+    make-dir "^2.0.0"
+    pkg-dir "^3.0.0"
+
+find-cache-dir@^3.0.0, find-cache-dir@^3.2.0, find-cache-dir@^3.3.1:
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
+  integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
+  dependencies:
+    commondir "^1.0.1"
+    make-dir "^3.0.2"
+    pkg-dir "^4.1.0"
+
+find-node-modules@2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/find-node-modules/-/find-node-modules-2.0.0.tgz#5db1fb9e668a3d451db3d618cd167cdd59e41b69"
+  integrity sha512-8MWIBRgJi/WpjjfVXumjPKCtmQ10B+fjx6zmSA+770GMJirLhWIzg8l763rhjl9xaeaHbnxPNRQKq2mgMhr+aw==
+  dependencies:
+    findup-sync "^3.0.0"
+    merge "^1.2.1"
+
+find-root@1.1.0, find-root@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
+  integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
+
+find-up@3.0.0, find-up@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
+  integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
+  dependencies:
+    locate-path "^3.0.0"
+
+find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
+  integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
+  dependencies:
+    locate-path "^5.0.0"
+    path-exists "^4.0.0"
+
+find-up@^1.0.0:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
+  integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=
+  dependencies:
+    path-exists "^2.0.0"
+    pinkie-promise "^2.0.0"
+
+find-up@^2.0.0, find-up@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
+  integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
+  dependencies:
+    locate-path "^2.0.0"
+
+find-versions@^3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e"
+  integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==
+  dependencies:
+    semver-regex "^2.0.0"
+
+findup-sync@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1"
+  integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==
+  dependencies:
+    detect-file "^1.0.0"
+    is-glob "^4.0.0"
+    micromatch "^3.0.4"
+    resolve-dir "^1.0.1"
+
+first-chunk-stream@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70"
+  integrity sha1-G97NuOCDwGZLkZRVgVd6Q6nzHXA=
+  dependencies:
+    readable-stream "^2.0.2"
+
+flat-cache@^3.0.4:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
+  integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
+  dependencies:
+    flatted "^3.1.0"
+    rimraf "^3.0.2"
+
+flatted@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.0.tgz#a5d06b4a8b01e3a63771daa5cb7a1903e2e57067"
+  integrity sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==
+
+flush-write-stream@^1.0.0:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
+  integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
+  dependencies:
+    inherits "^2.0.3"
+    readable-stream "^2.3.6"
+
+focus-lock@^0.6.6:
+  version "0.6.6"
+  resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-0.6.6.tgz#98119a755a38cfdbeda0280eaa77e307eee850c7"
+  integrity sha512-Dx69IXGCq1qsUExWuG+5wkiMqVM/zGx/reXSJSLogECwp3x6KeNQZ+NAetgxEFpnC41rD8U3+jRCW68+LNzdtw==
+
+follow-redirects@1.5.10:
+  version "1.5.10"
+  resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a"
+  integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==
+  dependencies:
+    debug "=3.1.0"
+
+follow-redirects@^1.0.0:
+  version "1.13.0"
+  resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db"
+  integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==
+
+fontsource-fira-code@^3.0.5:
+  version "3.1.6"
+  resolved "http://localhost:4873/fontsource-fira-code/-/fontsource-fira-code-3.1.6.tgz#d275d7675c84aa74fa28254af9756889755221b5"
+  integrity sha512-uFIJx20+HCLTQwJsx9fTZm0YCAMu2wKXn8YJs0Hx2AM3SZc+Wz4CksAfqYJkhaFGGwy/GRCI1eb/6o3an3PtcA==
+
+fontsource-inter@^3.0.5:
+  version "3.1.7"
+  resolved "http://localhost:4873/fontsource-inter/-/fontsource-inter-3.1.7.tgz#f174bfed86bfab9022d004f4fe0ba8de738ebdde"
+  integrity sha512-vH/DJSOgqKyCRic/LxLKyjWCzqvX88ypu2LLKjYSTlLbI/WvhR5G6Xlq3boNxkNyefdp+G2UMWq8oDBeqT9pyg==
+
+for-in@^0.1.3:
+  version "0.1.8"
+  resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1"
+  integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=
+
+for-in@^1.0.1, for-in@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
+  integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
+
+for-own@^0.1.3:
+  version "0.1.5"
+  resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
+  integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=
+  dependencies:
+    for-in "^1.0.1"
+
+foreach@^2.0.5:
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
+  integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k=
+
+forever-agent@~0.6.1:
+  version "0.6.1"
+  resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
+  integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
+
+fork-ts-checker-webpack-plugin@1.5.0:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.5.0.tgz#ce1d77190b44d81a761b10b6284a373795e41f0c"
+  integrity sha512-zEhg7Hz+KhZlBhILYpXy+Beu96gwvkROWJiTXOCyOOMMrdBIRPvsBpBqgTI4jfJGrJXcqGwJR8zsBGDmzY0jsA==
+  dependencies:
+    babel-code-frame "^6.22.0"
+    chalk "^2.4.1"
+    chokidar "^2.0.4"
+    micromatch "^3.1.10"
+    minimatch "^3.0.4"
+    semver "^5.6.0"
+    tapable "^1.0.0"
+    worker-rpc "^0.1.0"
+
+fork-ts-checker-webpack-plugin@3.1.1:
+  version "3.1.1"
+  resolved "http://localhost:4873/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz#a1642c0d3e65f50c2cc1742e9c0a80f441f86b19"
+  integrity sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==
+  dependencies:
+    babel-code-frame "^6.22.0"
+    chalk "^2.4.1"
+    chokidar "^3.3.0"
+    micromatch "^3.1.10"
+    minimatch "^3.0.4"
+    semver "^5.6.0"
+    tapable "^1.0.0"
+    worker-rpc "^0.1.0"
+
+fork-ts-checker-webpack-plugin@^0.4.9:
+  version "0.4.15"
+  resolved "http://localhost:4873/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-0.4.15.tgz#7cd9f94f3dd58cd1fe8f953f876e72090eda3f6d"
+  integrity sha512-qNYuygh2GxXehBvQZ5rI5YlQFn+7ZV6kmkyD9Sgs33dWl73NZdUOB5aCp8v0EXJn176AhPrZP8YCMT3h01fs+g==
+  dependencies:
+    babel-code-frame "^6.22.0"
+    chalk "^2.4.1"
+    chokidar "^2.0.4"
+    lodash "^4.17.11"
+    micromatch "^3.1.10"
+    minimatch "^3.0.4"
+    resolve "^1.5.0"
+    tapable "^1.0.0"
+
+fork-ts-checker-webpack-plugin@^4.1.0, fork-ts-checker-webpack-plugin@^4.1.4:
+  version "4.1.6"
+  resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz#5055c703febcf37fa06405d400c122b905167fc5"
+  integrity sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==
+  dependencies:
+    "@babel/code-frame" "^7.5.5"
+    chalk "^2.4.1"
+    micromatch "^3.1.10"
+    minimatch "^3.0.4"
+    semver "^5.6.0"
+    tapable "^1.0.0"
+    worker-rpc "^0.1.0"
+
+fork-ts-checker-webpack-plugin@^5.0.7:
+  version "5.0.7"
+  resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-5.0.7.tgz#a462bd863bbd654bad14a25518006ab99b7b13a0"
+  integrity sha512-X7zHKTx4is5YSKa9bDiXGzv8v5K3bsUrZlZgr3F8DeCVsb3oik/+0Mo+K138Sdjh4mpzoHcuUgsrIgZeLIXovw==
+  dependencies:
+    "@babel/code-frame" "^7.8.3"
+    chalk "^2.4.1"
+    cosmiconfig "^6.0.0"
+    deepmerge "^4.2.2"
+    fs-extra "^9.0.0"
+    memfs "^3.1.2"
+    minimatch "^3.0.4"
+    schema-utils "1.0.0"
+    semver "^5.6.0"
+    tapable "^1.0.0"
+
+form-data@^3.0.0:
+  version "3.0.0"
+  resolved "http://localhost:4873/form-data/-/form-data-3.0.0.tgz#31b7e39c85f1355b7139ee0c647cf0de7f83c682"
+  integrity sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==
+  dependencies:
+    asynckit "^0.4.0"
+    combined-stream "^1.0.8"
+    mime-types "^2.1.12"
+
+form-data@~2.3.2:
+  version "2.3.3"
+  resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
+  integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
+  dependencies:
+    asynckit "^0.4.0"
+    combined-stream "^1.0.6"
+    mime-types "^2.1.12"
+
+format@^0.2.0:
+  version "0.2.2"
+  resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b"
+  integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=
+
+forwarded@~0.1.2:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
+  integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=
+
+fraction.js@^4.0.13:
+  version "4.0.13"
+  resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.0.13.tgz#3c1c315fa16b35c85fffa95725a36fa729c69dfe"
+  integrity sha512-E1fz2Xs9ltlUp+qbiyx9wmt2n9dRzPsS11Jtdb8D2o+cC7wr9xkkKsVKJuBX0ST+LVS+LhLO+SbLJNtfWcJvXA==
+
+fragment-cache@^0.2.1:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
+  integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
+  dependencies:
+    map-cache "^0.2.2"
+
+fresh@0.5.2:
+  version "0.5.2"
+  resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
+  integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
+
+from2@^2.1.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
+  integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
+  dependencies:
+    inherits "^2.0.1"
+    readable-stream "^2.0.0"
+
+front-matter@^2.3.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/front-matter/-/front-matter-2.3.0.tgz#7203af896ce357ee04e2aa45169ea91ed7f67504"
+  integrity sha1-cgOviWzjV+4E4qpFFp6pHtf2dQQ=
+  dependencies:
+    js-yaml "^3.10.0"
+
+fs-extra@^0.30.0:
+  version "0.30.0"
+  resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
+  integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=
+  dependencies:
+    graceful-fs "^4.1.2"
+    jsonfile "^2.1.0"
+    klaw "^1.0.0"
+    path-is-absolute "^1.0.0"
+    rimraf "^2.2.8"
+
+fs-extra@^7.0.0, fs-extra@^7.0.1:
+  version "7.0.1"
+  resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
+  integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==
+  dependencies:
+    graceful-fs "^4.1.2"
+    jsonfile "^4.0.0"
+    universalify "^0.1.0"
+
+fs-extra@^8.0.1, fs-extra@^8.1.0:
+  version "8.1.0"
+  resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
+  integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
+  dependencies:
+    graceful-fs "^4.2.0"
+    jsonfile "^4.0.0"
+    universalify "^0.1.0"
+
+fs-extra@^9.0.0:
+  version "9.0.1"
+  resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc"
+  integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==
+  dependencies:
+    at-least-node "^1.0.0"
+    graceful-fs "^4.2.0"
+    jsonfile "^6.0.1"
+    universalify "^1.0.0"
+
+fs-minipass@^1.2.5:
+  version "1.2.7"
+  resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7"
+  integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==
+  dependencies:
+    minipass "^2.6.0"
+
+fs-minipass@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
+  integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
+  dependencies:
+    minipass "^3.0.0"
+
+fs-monkey@1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.1.tgz#4a82f36944365e619f4454d9fff106553067b781"
+  integrity sha512-fcSa+wyTqZa46iWweI7/ZiUfegOZl0SG8+dltIwFXo7+zYU9J9kpS3NB6pZcSlJdhvIwp81Adx2XhZorncxiaA==
+
+fs-readdir-recursive@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
+  integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==
+
+fs-write-stream-atomic@^1.0.8:
+  version "1.0.10"
+  resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
+  integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
+  dependencies:
+    graceful-fs "^4.1.2"
+    iferr "^0.1.5"
+    imurmurhash "^0.1.4"
+    readable-stream "1 || 2"
+
+fs.realpath@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+  integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
+
+fsevents@^1.2.7:
+  version "1.2.12"
+  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.12.tgz#db7e0d8ec3b0b45724fd4d83d43554a8f1f0de5c"
+  integrity sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==
+  dependencies:
+    bindings "^1.5.0"
+    nan "^2.12.1"
+
+fsevents@^2.1.2:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805"
+  integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==
+
+fsevents@~2.1.2:
+  version "2.1.3"
+  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e"
+  integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
+
+fsevents@~2.3.1:
+  version "2.3.2"
+  resolved "http://localhost:4873/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
+  integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
+
+function-bind@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
+  integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+
+function.prototype.name@^1.1.0, function.prototype.name@^1.1.1, function.prototype.name@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.2.tgz#5cdf79d7c05db401591dfde83e3b70c5123e9a45"
+  integrity sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    functions-have-names "^1.2.0"
+
+function.prototype.name@^1.1.3:
+  version "1.1.3"
+  resolved "http://localhost:4873/function.prototype.name/-/function.prototype.name-1.1.3.tgz#0bb034bb308e7682826f215eb6b2ae64918847fe"
+  integrity sha512-H51qkbNSp8mtkJt+nyW1gyStBiKZxfRqySNUR99ylq6BPXHKI4SEvIlTKp4odLfjRKJV04DFWMU3G/YRlQOsag==
+  dependencies:
+    call-bind "^1.0.0"
+    define-properties "^1.1.3"
+    es-abstract "^1.18.0-next.1"
+    functions-have-names "^1.2.1"
+
+functional-red-black-tree@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
+  integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
+
+functions-have-names@^1.2.0:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.1.tgz#a981ac397fa0c9964551402cdc5533d7a4d52f91"
+  integrity sha512-j48B/ZI7VKs3sgeI2cZp7WXWmZXu7Iq5pl5/vptV5N2mq+DGFuS/ulaDjtaoLpYzuD6u8UgrUKHfgo7fDTSiBA==
+
+functions-have-names@^1.2.1:
+  version "1.2.2"
+  resolved "http://localhost:4873/functions-have-names/-/functions-have-names-1.2.2.tgz#98d93991c39da9361f8e50b337c4f6e41f120e21"
+  integrity sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==
+
+fuse.js@^3.0.0, fuse.js@^3.4.6, fuse.js@^3.6.1:
+  version "3.6.1"
+  resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.6.1.tgz#7de85fdd6e1b3377c23ce010892656385fd9b10c"
+  integrity sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==
+
+gauge@~2.7.3:
+  version "2.7.4"
+  resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
+  integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
+  dependencies:
+    aproba "^1.0.3"
+    console-control-strings "^1.0.0"
+    has-unicode "^2.0.0"
+    object-assign "^4.1.0"
+    signal-exit "^3.0.0"
+    string-width "^1.0.1"
+    strip-ansi "^3.0.1"
+    wide-align "^1.1.0"
+
+genfun@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/genfun/-/genfun-5.0.0.tgz#9dd9710a06900a5c4a5bf57aca5da4e52fe76537"
+  integrity sha512-KGDOARWVga7+rnB3z9Sd2Letx515owfk0hSxHGuqjANb1M+x2bGZGqHLiozPsYMdM2OubeMni/Hpwmjq6qIUhA==
+
+gensync@^1.0.0-beta.1:
+  version "1.0.0-beta.1"
+  resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
+  integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
+
+geojson-vt@^3.2.1:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/geojson-vt/-/geojson-vt-3.2.1.tgz#f8adb614d2c1d3f6ee7c4265cad4bbf3ad60c8b7"
+  integrity sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==
+
+geojson@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/geojson/-/geojson-0.5.0.tgz#3cd6c96399be65b56ee55596116fe9191ce701c0"
+  integrity sha1-PNbJY5m+ZbVu5VWWEW/pGRznAcA=
+
+geolib@^2.0.24:
+  version "2.0.24"
+  resolved "http://localhost:4873/geolib/-/geolib-2.0.24.tgz#eb3d7fbc65f5ea3354a5af6054563ebe9f33e5f4"
+  integrity sha512-NR0AyYyEnGrFS9JvSFmmotQDxVCORJgDHdvBwSatxl5aHarOLMh3KuGI83bCvCfObjfoEiDe8Ung8GGLGAtthw==
+
+get-caller-file@^1.0.1:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
+  integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==
+
+get-caller-file@^2.0.1:
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
+  integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
+
+get-intrinsic@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be"
+  integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==
+  dependencies:
+    function-bind "^1.1.1"
+    has "^1.0.3"
+    has-symbols "^1.0.1"
+
+get-intrinsic@^1.0.2:
+  version "1.1.1"
+  resolved "http://localhost:4873/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
+  integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
+  dependencies:
+    function-bind "^1.1.1"
+    has "^1.0.3"
+    has-symbols "^1.0.1"
+
+get-own-enumerable-property-symbols@^3.0.0:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
+  integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
+
+get-pkg-repo@^1.0.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d"
+  integrity sha1-xztInAbYDMVTbCyFP54FIyBWly0=
+  dependencies:
+    hosted-git-info "^2.1.4"
+    meow "^3.3.0"
+    normalize-package-data "^2.3.0"
+    parse-github-repo-url "^1.3.0"
+    through2 "^2.0.0"
+
+get-port@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/get-port/-/get-port-4.2.0.tgz#e37368b1e863b7629c43c5a323625f95cf24b119"
+  integrity sha512-/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw==
+
+get-stdin@7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6"
+  integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==
+
+get-stdin@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
+  integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=
+
+get-stream@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
+  integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
+
+get-stream@^4.0.0, get-stream@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
+  integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
+  dependencies:
+    pump "^3.0.0"
+
+get-stream@^5.0.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9"
+  integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==
+  dependencies:
+    pump "^3.0.0"
+
+get-symbol-from-current-process-h@^1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/get-symbol-from-current-process-h/-/get-symbol-from-current-process-h-1.0.2.tgz#510af52eaef873f7028854c3377f47f7bb200265"
+  integrity sha512-syloC6fsCt62ELLrr1VKBM1ggOpMdetX9hTrdW77UQdcApPHLmf7CI7OKcN1c9kYuNxKcDe4iJ4FY9sX3aw2xw==
+
+get-uv-event-loop-napi-h@^1.0.5:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/get-uv-event-loop-napi-h/-/get-uv-event-loop-napi-h-1.0.6.tgz#42b0b06b74c3ed21fbac8e7c72845fdb7a200208"
+  integrity sha512-t5c9VNR84nRoF+eLiz6wFrEp1SE2Acg0wS+Ysa2zF0eROes+LzOfuTaVHxGy8AbS8rq7FHEJzjnCZo1BupwdJg==
+  dependencies:
+    get-symbol-from-current-process-h "^1.0.1"
+
+get-value@^2.0.3, get-value@^2.0.6:
+  version "2.0.6"
+  resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
+  integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
+
+getpass@^0.1.1:
+  version "0.1.7"
+  resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
+  integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
+  dependencies:
+    assert-plus "^1.0.0"
+
+gettext-parser@1.1.0:
+  version "1.1.0"
+  resolved "http://localhost:4873/gettext-parser/-/gettext-parser-1.1.0.tgz#2c5a6638d893934b9b55037d0ad82cb7004b2679"
+  integrity sha1-LFpmONiTk0ubVQN9CtgstwBLJnk=
+  dependencies:
+    encoding "^0.1.11"
+
+gh-got@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/gh-got/-/gh-got-5.0.0.tgz#ee95be37106fd8748a96f8d1db4baea89e1bfa8a"
+  integrity sha1-7pW+NxBv2HSKlvjR20uuqJ4b+oo=
+  dependencies:
+    got "^6.2.0"
+    is-plain-obj "^1.1.0"
+
+gh-pages@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-3.1.0.tgz#ec3ed0f6a6e3fc3d888758fa018f08191c96bd55"
+  integrity sha512-3b1rly9kuf3/dXsT8+ZxP0UhNLOo1CItj+3e31yUVcaph/yDsJ9RzD7JOw5o5zpBTJVQLlJAASNkUfepi9fe2w==
+  dependencies:
+    async "^2.6.1"
+    commander "^2.18.0"
+    email-addresses "^3.0.1"
+    filenamify-url "^1.0.0"
+    find-cache-dir "^3.3.1"
+    fs-extra "^8.1.0"
+    globby "^6.1.0"
+
+git-raw-commits@2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.0.tgz#d92addf74440c14bcc5c83ecce3fb7f8a79118b5"
+  integrity sha512-w4jFEJFgKXMQJ0H0ikBk2S+4KP2VEjhCvLCNqbNRQC8BgGWgLKNCO7a9K9LI+TVT7Gfoloje502sEnctibffgg==
+  dependencies:
+    dargs "^4.0.1"
+    lodash.template "^4.0.2"
+    meow "^4.0.0"
+    split2 "^2.0.0"
+    through2 "^2.0.0"
+
+git-raw-commits@^1.3.0:
+  version "1.3.6"
+  resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.3.6.tgz#27c35a32a67777c1ecd412a239a6c19d71b95aff"
+  integrity sha512-svsK26tQ8vEKnMshTDatSIQSMDdz8CxIIqKsvPqbtV23Etmw6VNaFAitu8zwZ0VrOne7FztwPyRLxK7/DIUTQg==
+  dependencies:
+    dargs "^4.0.1"
+    lodash.template "^4.0.2"
+    meow "^4.0.0"
+    split2 "^2.0.0"
+    through2 "^2.0.0"
+
+git-remote-origin-url@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f"
+  integrity sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=
+  dependencies:
+    gitconfiglocal "^1.0.0"
+    pify "^2.3.0"
+
+git-semver-tags@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-2.0.3.tgz#48988a718acf593800f99622a952a77c405bfa34"
+  integrity sha512-tj4FD4ww2RX2ae//jSrXZzrocla9db5h0V7ikPl1P/WwoZar9epdUhwR7XHXSgc+ZkNq72BEEerqQuicoEQfzA==
+  dependencies:
+    meow "^4.0.0"
+    semver "^6.0.0"
+
+git-semver-tags@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-3.0.1.tgz#9cb9e4974437de1f71f32da3bfe74f4d35afb1b9"
+  integrity sha512-Hzd1MOHXouITfCasrpVJbRDg9uvW7LfABk3GQmXYZByerBDrfrEMP9HXpNT7RxAbieiocP6u+xq20DkvjwxnCA==
+  dependencies:
+    meow "^5.0.0"
+    semver "^6.0.0"
+
+git-up@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.1.tgz#cb2ef086653640e721d2042fe3104857d89007c0"
+  integrity sha512-LFTZZrBlrCrGCG07/dm1aCjjpL1z9L3+5aEeI9SBhAqSc+kiA9Or1bgZhQFNppJX6h/f5McrvJt1mQXTFm6Qrw==
+  dependencies:
+    is-ssh "^1.3.0"
+    parse-url "^5.0.0"
+
+git-url-parse@^11.1.2:
+  version "11.1.2"
+  resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.1.2.tgz#aff1a897c36cc93699270587bea3dbcbbb95de67"
+  integrity sha512-gZeLVGY8QVKMIkckncX+iCq2/L8PlwncvDFKiWkBn9EtCfYDbliRTTp6qzyQ1VMdITUfq7293zDzfpjdiGASSQ==
+  dependencies:
+    git-up "^4.0.0"
+
+gitconfiglocal@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b"
+  integrity sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=
+  dependencies:
+    ini "^1.3.2"
+
+github-slugger@^1.0.0:
+  version "1.3.0"
+  resolved "http://localhost:4873/github-slugger/-/github-slugger-1.3.0.tgz#9bd0a95c5efdfc46005e82a906ef8e2a059124c9"
+  integrity sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==
+  dependencies:
+    emoji-regex ">=6.0.0 <=6.1.1"
+
+github-username@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/github-username/-/github-username-3.0.0.tgz#0a772219b3130743429f2456d0bdd3db55dce7b1"
+  integrity sha1-CnciGbMTB0NCnyRW0L3T21Xc57E=
+  dependencies:
+    gh-got "^5.0.0"
+
+gl-matrix@^3.0.0:
+  version "3.3.0"
+  resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.3.0.tgz#232eef60b1c8b30a28cbbe75b2caf6c48fd6358b"
+  integrity sha512-COb7LDz+SXaHtl/h4LeaFcNdJdAQSDeVqjiIihSXNrkWObZLhDI4hIkZC11Aeqp7bcE72clzB0BnDXr2SmslRA==
+
+glob-base@^0.3.0:
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
+  integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=
+  dependencies:
+    glob-parent "^2.0.0"
+    is-glob "^2.0.0"
+
+glob-parent@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
+  integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=
+  dependencies:
+    is-glob "^2.0.0"
+
+glob-parent@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
+  integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
+  dependencies:
+    is-glob "^3.1.0"
+    path-dirname "^1.0.0"
+
+glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@^5.1.1, glob-parent@~5.1.0:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
+  integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
+  dependencies:
+    is-glob "^4.0.1"
+
+glob-promise@^3.4.0:
+  version "3.4.0"
+  resolved "http://localhost:4873/glob-promise/-/glob-promise-3.4.0.tgz#b6b8f084504216f702dc2ce8c9bc9ac8866fdb20"
+  integrity sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==
+  dependencies:
+    "@types/glob" "*"
+
+glob-to-regexp@^0.3.0:
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
+  integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
+
+glob-to-regexp@^0.4.0:
+  version "0.4.1"
+  resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
+  integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
+
+glob@7.1.3:
+  version "7.1.3"
+  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
+  integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==
+  dependencies:
+    fs.realpath "^1.0.0"
+    inflight "^1.0.4"
+    inherits "2"
+    minimatch "^3.0.4"
+    once "^1.3.0"
+    path-is-absolute "^1.0.0"
+
+glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
+  version "7.1.6"
+  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
+  integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
+  dependencies:
+    fs.realpath "^1.0.0"
+    inflight "^1.0.4"
+    inherits "2"
+    minimatch "^3.0.4"
+    once "^1.3.0"
+    path-is-absolute "^1.0.0"
+
+global-box@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/global-box/-/global-box-1.2.0.tgz#009f681e6fef6eb6f8aff00be732d23de4be0acd"
+  integrity sha512-IgpqqAYWNG3eluK1tsCkI8Uxff16+OYWLEhDS/QrfkfmbRQ/tVlBXZfURn5tSoPPT6wtmeJp7VKhXrcc5jl/1A==
+
+global-cache@^1.2.0:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/global-cache/-/global-cache-1.2.1.tgz#39ca020d3dd7b3f0934c52b75363f8d53312c16d"
+  integrity sha512-EOeUaup5DgWKlCMhA9YFqNRIlZwoxt731jCh47WBV9fQqHgXhr3Fa55hfgIUqilIcPsfdNKN7LHjrNY+Km40KA==
+  dependencies:
+    define-properties "^1.1.2"
+    is-symbol "^1.0.1"
+
+global-dirs@^0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
+  integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=
+  dependencies:
+    ini "^1.3.4"
+
+global-modules@2.0.0, global-modules@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
+  integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==
+  dependencies:
+    global-prefix "^3.0.0"
+
+global-modules@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
+  integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==
+  dependencies:
+    global-prefix "^1.0.1"
+    is-windows "^1.0.1"
+    resolve-dir "^1.0.0"
+
+global-prefix@^1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe"
+  integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=
+  dependencies:
+    expand-tilde "^2.0.2"
+    homedir-polyfill "^1.0.1"
+    ini "^1.3.4"
+    is-windows "^1.0.1"
+    which "^1.2.14"
+
+global-prefix@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97"
+  integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
+  dependencies:
+    ini "^1.3.5"
+    kind-of "^6.0.2"
+    which "^1.3.1"
+
+global@^4.3.0, global@^4.3.2, global@^4.4.0:
+  version "4.4.0"
+  resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406"
+  integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==
+  dependencies:
+    min-document "^2.19.0"
+    process "^0.11.10"
+
+globals@^11.1.0, globals@^11.12.0:
+  version "11.12.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
+  integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+
+globals@^12.1.0:
+  version "12.4.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8"
+  integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==
+  dependencies:
+    type-fest "^0.8.1"
+
+globalthis@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.1.tgz#40116f5d9c071f9e8fb0037654df1ab3a83b7ef9"
+  integrity sha512-mJPRTc/P39NH/iNG4mXa9aIhNymaQikTrnspeCa2ZuJ+mH2QN/rXwtX3XwKrHqWgUQFbNZKtHM105aHzJalElw==
+  dependencies:
+    define-properties "^1.1.3"
+
+globby@8.0.2, globby@^8.0.1:
+  version "8.0.2"
+  resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d"
+  integrity sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==
+  dependencies:
+    array-union "^1.0.1"
+    dir-glob "2.0.0"
+    fast-glob "^2.0.2"
+    glob "^7.1.2"
+    ignore "^3.3.5"
+    pify "^3.0.0"
+    slash "^1.0.0"
+
+globby@^11.0.1:
+  version "11.0.1"
+  resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357"
+  integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==
+  dependencies:
+    array-union "^2.1.0"
+    dir-glob "^3.0.1"
+    fast-glob "^3.1.1"
+    ignore "^5.1.4"
+    merge2 "^1.3.0"
+    slash "^3.0.0"
+
+globby@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
+  integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=
+  dependencies:
+    array-union "^1.0.1"
+    glob "^7.0.3"
+    object-assign "^4.0.1"
+    pify "^2.0.0"
+    pinkie-promise "^2.0.0"
+
+globby@^9.2.0:
+  version "9.2.0"
+  resolved "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d"
+  integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==
+  dependencies:
+    "@types/glob" "^7.1.1"
+    array-union "^1.0.2"
+    dir-glob "^2.2.2"
+    fast-glob "^2.2.6"
+    glob "^7.1.3"
+    ignore "^4.0.3"
+    pify "^4.0.1"
+    slash "^2.0.0"
+
+good-listener@^1.2.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50"
+  integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=
+  dependencies:
+    delegate "^3.1.2"
+
+got@^6.2.0:
+  version "6.7.1"
+  resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
+  integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=
+  dependencies:
+    create-error-class "^3.0.0"
+    duplexer3 "^0.1.4"
+    get-stream "^3.0.0"
+    is-redirect "^1.0.0"
+    is-retry-allowed "^1.0.0"
+    is-stream "^1.0.0"
+    lowercase-keys "^1.0.0"
+    safe-buffer "^5.0.1"
+    timed-out "^4.0.0"
+    unzip-response "^2.0.1"
+    url-parse-lax "^1.0.0"
+
+graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4:
+  version "4.2.4"
+  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
+  integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
+
+graphlib@~2.1.0:
+  version "2.1.8"
+  resolved "https://registry.yarnpkg.com/graphlib/-/graphlib-2.1.8.tgz#5761d414737870084c92ec7b5dbcb0592c9d35da"
+  integrity sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==
+  dependencies:
+    lodash "^4.17.15"
+
+graphql-config@^1.1.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-1.2.1.tgz#97b4403707db408feb335fbc159651f2a36cb558"
+  integrity sha512-BOtbEOn/fD13jT0peCy3Fzp1DSTsA/1AcZp266AQ5Sk3wFndKCEa/H7donbu5UriOw1V/N1WDirYPnr7rd8E7Q==
+  dependencies:
+    graphql "^0.12.3"
+    graphql-import "^0.4.0"
+    graphql-request "^1.4.0"
+    js-yaml "^3.10.0"
+    lodash "^4.17.4"
+    minimatch "^3.0.4"
+
+graphql-import@^0.4.0:
+  version "0.4.5"
+  resolved "https://registry.yarnpkg.com/graphql-import/-/graphql-import-0.4.5.tgz#e2f18c28d335733f46df8e0733d8deb1c6e2a645"
+  integrity sha512-G/+I08Qp6/QGTb9qapknCm3yPHV0ZL7wbaalWFpxsfR8ZhZoTBe//LsbsCKlbALQpcMegchpJhpTSKiJjhaVqQ==
+  dependencies:
+    lodash "^4.17.4"
+
+graphql-request@^1.4.0:
+  version "1.8.2"
+  resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-1.8.2.tgz#398d10ae15c585676741bde3fc01d5ca948f8fbe"
+  integrity sha512-dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg==
+  dependencies:
+    cross-fetch "2.2.2"
+
+graphql@^0.12.3:
+  version "0.12.3"
+  resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.12.3.tgz#11668458bbe28261c0dcb6e265f515ba79f6ce07"
+  integrity sha512-Hn9rdu4zacplKXNrLCvR8YFiTGnbM4Zw/UH8FDmzBDsH7ou40lSNH4tIlsxcYnz2TGNVJCpu1WxCM23yd6kzhA==
+  dependencies:
+    iterall "1.1.3"
+
+graphql@^0.13.1:
+  version "0.13.2"
+  resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.13.2.tgz#4c740ae3c222823e7004096f832e7b93b2108270"
+  integrity sha512-QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog==
+  dependencies:
+    iterall "^1.2.1"
+
+grid-index@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/grid-index/-/grid-index-1.1.0.tgz#97f8221edec1026c8377b86446a7c71e79522ea7"
+  integrity sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==
+
+grouped-queue@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/grouped-queue/-/grouped-queue-1.1.0.tgz#63e3f9ca90af952269d1d40879e41221eacc74cb"
+  integrity sha512-rZOFKfCqLhsu5VqjBjEWiwrYqJR07KxIkH4mLZlNlGDfntbb4FbMyGFP14TlvRPrU9S3Hnn/sgxbC5ZeN0no3Q==
+  dependencies:
+    lodash "^4.17.15"
+
+growly@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
+  integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
+
+gud@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0"
+  integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==
+
+gzip-size@5.1.1, gzip-size@^5.0.0:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
+  integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
+  dependencies:
+    duplexer "^0.1.1"
+    pify "^4.0.1"
+
+h3-js@^3.4.3:
+  version "3.7.0"
+  resolved "http://localhost:4873/h3-js/-/h3-js-3.7.0.tgz#f0ff5563ae04ce448cbe6b8573d9796a6c97f5ad"
+  integrity sha512-EcH/qGU4khZsAEG39Uu8MvaCing0JFcuoe3K4Xmg5MofDIu1cNJl7z2AQS8ggvXGxboiLJqsGirhEqFKdd2gAA==
+
+hammerjs@^2.0.8:
+  version "2.0.8"
+  resolved "https://registry.yarnpkg.com/hammerjs/-/hammerjs-2.0.8.tgz#04ef77862cff2bb79d30f7692095930222bf60f1"
+  integrity sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=
+
+handle-thing@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e"
+  integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==
+
+handlebars@^4.4.0:
+  version "4.7.3"
+  resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.3.tgz#8ece2797826886cf8082d1726ff21d2a022550ee"
+  integrity sha512-SRGwSYuNfx8DwHD/6InAPzD6RgeruWLT+B8e8a7gGs8FWgHzlExpTFMEq2IA6QpAfOClpKHy6+8IqTjeBCu6Kg==
+  dependencies:
+    neo-async "^2.6.0"
+    optimist "^0.6.1"
+    source-map "^0.6.1"
+  optionalDependencies:
+    uglify-js "^3.1.4"
+
+har-schema@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
+  integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
+
+har-validator@~5.1.3:
+  version "5.1.3"
+  resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
+  integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==
+  dependencies:
+    ajv "^6.5.5"
+    har-schema "^2.0.0"
+
+hard-rejection@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883"
+  integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==
+
+harmony-reflect@^1.4.6:
+  version "1.6.1"
+  resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.1.tgz#c108d4f2bb451efef7a37861fdbdae72c9bdefa9"
+  integrity sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==
+
+has-ansi@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
+  integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
+  dependencies:
+    ansi-regex "^2.0.0"
+
+has-color@~0.1.0:
+  version "0.1.7"
+  resolved "http://localhost:4873/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f"
+  integrity sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8=
+
+has-flag@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+  integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
+
+has-flag@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+  integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+
+has-glob@^1.0.0:
+  version "1.0.0"
+  resolved "http://localhost:4873/has-glob/-/has-glob-1.0.0.tgz#9aaa9eedbffb1ba3990a7b0010fb678ee0081207"
+  integrity sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=
+  dependencies:
+    is-glob "^3.0.0"
+
+has-symbols@^1.0.0, has-symbols@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
+  integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
+
+has-unicode@^2.0.0, has-unicode@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
+  integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
+
+has-value@^0.3.1:
+  version "0.3.1"
+  resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
+  integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
+  dependencies:
+    get-value "^2.0.3"
+    has-values "^0.1.4"
+    isobject "^2.0.0"
+
+has-value@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
+  integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
+  dependencies:
+    get-value "^2.0.6"
+    has-values "^1.0.0"
+    isobject "^3.0.0"
+
+has-values@^0.1.4:
+  version "0.1.4"
+  resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
+  integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
+
+has-values@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
+  integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
+  dependencies:
+    is-number "^3.0.0"
+    kind-of "^4.0.0"
+
+has@^1.0.0, has@^1.0.1, has@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
+  integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
+  dependencies:
+    function-bind "^1.1.1"
+
+hash-base@^3.0.0:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
+  integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=
+  dependencies:
+    inherits "^2.0.1"
+    safe-buffer "^5.0.1"
+
+hash.js@^1.0.0, hash.js@^1.0.3:
+  version "1.1.7"
+  resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
+  integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
+  dependencies:
+    inherits "^2.0.3"
+    minimalistic-assert "^1.0.1"
+
+hast-to-hyperscript@^9.0.0:
+  version "9.0.1"
+  resolved "http://localhost:4873/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz#9b67fd188e4c81e8ad66f803855334173920218d"
+  integrity sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==
+  dependencies:
+    "@types/unist" "^2.0.3"
+    comma-separated-tokens "^1.0.0"
+    property-information "^5.3.0"
+    space-separated-tokens "^1.0.0"
+    style-to-object "^0.3.0"
+    unist-util-is "^4.0.0"
+    web-namespaces "^1.0.0"
+
+hast-util-from-parse5@^6.0.0:
+  version "6.0.1"
+  resolved "http://localhost:4873/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz#554e34abdeea25ac76f5bd950a1f0180e0b3bc2a"
+  integrity sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==
+  dependencies:
+    "@types/parse5" "^5.0.0"
+    hastscript "^6.0.0"
+    property-information "^5.0.0"
+    vfile "^4.0.0"
+    vfile-location "^3.2.0"
+    web-namespaces "^1.0.0"
+
+hast-util-parse-selector@^2.0.0:
+  version "2.2.4"
+  resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.4.tgz#60c99d0b519e12ab4ed32e58f150ec3f61ed1974"
+  integrity sha512-gW3sxfynIvZApL4L07wryYF4+C9VvH3AUi7LAnVXV4MneGEgwOByXvFo18BgmTWnm7oHAe874jKbIB1YhHSIzA==
+
+hast-util-raw@6.0.1:
+  version "6.0.1"
+  resolved "http://localhost:4873/hast-util-raw/-/hast-util-raw-6.0.1.tgz#973b15930b7529a7b66984c98148b46526885977"
+  integrity sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==
+  dependencies:
+    "@types/hast" "^2.0.0"
+    hast-util-from-parse5 "^6.0.0"
+    hast-util-to-parse5 "^6.0.0"
+    html-void-elements "^1.0.0"
+    parse5 "^6.0.0"
+    unist-util-position "^3.0.0"
+    vfile "^4.0.0"
+    web-namespaces "^1.0.0"
+    xtend "^4.0.0"
+    zwitch "^1.0.0"
+
+hast-util-to-parse5@^6.0.0:
+  version "6.0.0"
+  resolved "http://localhost:4873/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz#1ec44650b631d72952066cea9b1445df699f8479"
+  integrity sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==
+  dependencies:
+    hast-to-hyperscript "^9.0.0"
+    property-information "^5.0.0"
+    web-namespaces "^1.0.0"
+    xtend "^4.0.0"
+    zwitch "^1.0.0"
+
+hastscript@^5.0.0:
+  version "5.1.2"
+  resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-5.1.2.tgz#bde2c2e56d04c62dd24e8c5df288d050a355fb8a"
+  integrity sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==
+  dependencies:
+    comma-separated-tokens "^1.0.0"
+    hast-util-parse-selector "^2.0.0"
+    property-information "^5.0.0"
+    space-separated-tokens "^1.0.0"
+
+hastscript@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640"
+  integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==
+  dependencies:
+    "@types/hast" "^2.0.0"
+    comma-separated-tokens "^1.0.0"
+    hast-util-parse-selector "^2.0.0"
+    property-information "^5.0.0"
+    space-separated-tokens "^1.0.0"
+
+he@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
+  integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
+
+header-case@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/header-case/-/header-case-1.0.1.tgz#9535973197c144b09613cd65d317ef19963bd02d"
+  integrity sha1-lTWXMZfBRLCWE81l0xfvGZY70C0=
+  dependencies:
+    no-case "^2.2.0"
+    upper-case "^1.1.3"
+
+hex-color-regex@^1.1.0:
+  version "1.1.0"
+  resolved "http://localhost:4873/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
+  integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
+
+highlight.js@^10.1.1, highlight.js@~10.5.0:
+  version "10.5.0"
+  resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.5.0.tgz#3f09fede6a865757378f2d9ebdcbc15ba268f98f"
+  integrity sha512-xTmvd9HiIHR6L53TMC7TKolEj65zG1XU+Onr8oi86mYa+nLcIbxTTWkpW7CsEwv/vK7u1zb8alZIMLDqqN6KTw==
+
+highlight.js@^10.4.1, highlight.js@~10.6.0:
+  version "10.6.0"
+  resolved "http://localhost:4873/highlight.js/-/highlight.js-10.6.0.tgz#0073aa71d566906965ba6e1b7be7b2682f5e18b6"
+  integrity sha512-8mlRcn5vk/r4+QcqerapwBYTe+iPL5ih6xrNylxrnBdHQiijDETfXX7VIxC3UiCRiINBJfANBAsPzAvRQj8RpQ==
+
+highlight.js@~9.13.0:
+  version "9.13.1"
+  resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.13.1.tgz#054586d53a6863311168488a0f58d6c505ce641e"
+  integrity sha512-Sc28JNQNDzaH6PORtRLMvif9RSn1mYuOoX3omVjnb0+HbpPygU2ALBI0R/wsiqCb4/fcp07Gdo8g+fhtFrQl6A==
+
+history@^4.9.0:
+  version "4.10.1"
+  resolved "http://localhost:4873/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3"
+  integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==
+  dependencies:
+    "@babel/runtime" "^7.1.2"
+    loose-envify "^1.2.0"
+    resolve-pathname "^3.0.0"
+    tiny-invariant "^1.0.2"
+    tiny-warning "^1.0.0"
+    value-equal "^1.0.1"
+
+hmac-drbg@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
+  integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
+  dependencies:
+    hash.js "^1.0.3"
+    minimalistic-assert "^1.0.0"
+    minimalistic-crypto-utils "^1.0.1"
+
+hoist-non-react-statics@^1.0.0, hoist-non-react-statics@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb"
+  integrity sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs=
+
+hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2:
+  version "3.3.2"
+  resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
+  integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
+  dependencies:
+    react-is "^16.7.0"
+
+homedir-polyfill@^1.0.1:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
+  integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==
+  dependencies:
+    parse-passwd "^1.0.0"
+
+hoopy@^0.1.4:
+  version "0.1.4"
+  resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d"
+  integrity sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==
+
+hosted-git-info@^2.1.4, hosted-git-info@^2.7.1:
+  version "2.8.8"
+  resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
+  integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
+
+hpack.js@^2.1.6:
+  version "2.1.6"
+  resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
+  integrity sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=
+  dependencies:
+    inherits "^2.0.1"
+    obuf "^1.0.0"
+    readable-stream "^2.0.1"
+    wbuf "^1.1.0"
+
+hsl-regex@^1.0.0:
+  version "1.0.0"
+  resolved "http://localhost:4873/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
+  integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=
+
+hsla-regex@^1.0.0:
+  version "1.0.0"
+  resolved "http://localhost:4873/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
+  integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg=
+
+html-comment-regex@^1.1.0:
+  version "1.1.2"
+  resolved "http://localhost:4873/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7"
+  integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==
+
+html-element-map@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.2.0.tgz#dfbb09efe882806af63d990cf6db37993f099f22"
+  integrity sha512-0uXq8HsuG1v2TmQ8QkIhzbrqeskE4kn52Q18QJ9iAA/SnHoEKXWiUxHQtclRsCFWEUD2So34X+0+pZZu862nnw==
+  dependencies:
+    array-filter "^1.0.0"
+
+html-encoding-sniffer@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
+  integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==
+  dependencies:
+    whatwg-encoding "^1.0.1"
+
+html-encoding-sniffer@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3"
+  integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
+  dependencies:
+    whatwg-encoding "^1.0.5"
+
+html-entities@^1.2.0:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f"
+  integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=
+
+html-entities@^1.2.1:
+  version "1.4.0"
+  resolved "http://localhost:4873/html-entities/-/html-entities-1.4.0.tgz#cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc"
+  integrity sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==
+
+html-entities@^1.3.1:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.3.1.tgz#fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44"
+  integrity sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==
+
+html-escaper@^2.0.0:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
+  integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
+
+html-minifier-terser@^5.0.1:
+  version "5.0.5"
+  resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.0.5.tgz#8f12f639789f04faa9f5cf2ff9b9f65607f21f8b"
+  integrity sha512-cBSFFghQh/uHcfSiL42KxxIRMF7A144+3E44xdlctIjxEmkEfCvouxNyFH2wysXk1fCGBPwtcr3hDWlGTfkDew==
+  dependencies:
+    camel-case "^4.1.1"
+    clean-css "^4.2.3"
+    commander "^4.1.1"
+    he "^1.2.0"
+    param-case "^3.0.3"
+    relateurl "^0.2.7"
+    terser "^4.6.3"
+
+html-tags@^3.1.0:
+  version "3.1.0"
+  resolved "http://localhost:4873/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140"
+  integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==
+
+html-to-react@^1.3.4:
+  version "1.4.5"
+  resolved "http://localhost:4873/html-to-react/-/html-to-react-1.4.5.tgz#59091c11021d1ef315ef738460abb6a4a41fe1ce"
+  integrity sha512-KONZUDFPg5OodWaQu2ymfkDmU0JA7zB1iPfvyHehTmMUZnk0DS7/TyCMTzsLH6b4BvxX15g88qZCXFhJWktsmA==
+  dependencies:
+    domhandler "^3.3.0"
+    htmlparser2 "^5.0"
+    lodash.camelcase "^4.3.0"
+    ramda "^0.27.1"
+
+html-void-elements@^1.0.0:
+  version "1.0.5"
+  resolved "http://localhost:4873/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483"
+  integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==
+
+html-webpack-plugin@^4.0.0-beta.2:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.3.tgz#70659c8836210249cb6fa9dd6706a957547666d5"
+  integrity sha512-XCm5MGK6Yv/ey30fbhqjKIGm1r6G1HxmNorJ/xUdL/Zj3mOLtb9ZHEEIw0e4h3VzgyUrp8szCJh3VN9z1LNx7A==
+  dependencies:
+    "@types/html-minifier-terser" "^5.0.0"
+    "@types/tapable" "^1.0.5"
+    "@types/webpack" "^4.41.8"
+    html-minifier-terser "^5.0.1"
+    loader-utils "^1.2.3"
+    lodash "^4.17.15"
+    pretty-error "^2.1.1"
+    tapable "^1.1.3"
+    util.promisify "1.0.0"
+
+html-webpack-plugin@^4.0.1:
+  version "4.5.0"
+  resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz#625097650886b97ea5dae331c320e3238f6c121c"
+  integrity sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==
+  dependencies:
+    "@types/html-minifier-terser" "^5.0.0"
+    "@types/tapable" "^1.0.5"
+    "@types/webpack" "^4.41.8"
+    html-minifier-terser "^5.0.1"
+    loader-utils "^1.2.3"
+    lodash "^4.17.15"
+    pretty-error "^2.1.1"
+    tapable "^1.1.3"
+    util.promisify "1.0.0"
+
+html-webpack-plugin@^4.2.1:
+  version "4.5.1"
+  resolved "http://localhost:4873/html-webpack-plugin/-/html-webpack-plugin-4.5.1.tgz#40aaf1b5cb78f2f23a83333999625c20929cda65"
+  integrity sha512-yzK7RQZwv9xB+pcdHNTjcqbaaDZ+5L0zJHXfi89iWIZmb/FtzxhLk0635rmJihcQbs3ZUF27Xp4oWGx6EK56zg==
+  dependencies:
+    "@types/html-minifier-terser" "^5.0.0"
+    "@types/tapable" "^1.0.5"
+    "@types/webpack" "^4.41.8"
+    html-minifier-terser "^5.0.1"
+    loader-utils "^1.2.3"
+    lodash "^4.17.20"
+    pretty-error "^2.1.1"
+    tapable "^1.1.3"
+    util.promisify "1.0.0"
+
+htmlparser2@^3.3.0, htmlparser2@^3.9.1:
+  version "3.10.1"
+  resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f"
+  integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==
+  dependencies:
+    domelementtype "^1.3.1"
+    domhandler "^2.3.0"
+    domutils "^1.5.1"
+    entities "^1.1.1"
+    inherits "^2.0.1"
+    readable-stream "^3.1.1"
+
+htmlparser2@^5.0:
+  version "5.0.1"
+  resolved "http://localhost:4873/htmlparser2/-/htmlparser2-5.0.1.tgz#7daa6fc3e35d6107ac95a4fc08781f091664f6e7"
+  integrity sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ==
+  dependencies:
+    domelementtype "^2.0.1"
+    domhandler "^3.3.0"
+    domutils "^2.4.2"
+    entities "^2.0.0"
+
+http-cache-semantics@^3.8.1:
+  version "3.8.1"
+  resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
+  integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==
+
+http-deceiver@^1.2.7:
+  version "1.2.7"
+  resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
+  integrity sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=
+
+http-errors@1.7.2:
+  version "1.7.2"
+  resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
+  integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
+  dependencies:
+    depd "~1.1.2"
+    inherits "2.0.3"
+    setprototypeof "1.1.1"
+    statuses ">= 1.5.0 < 2"
+    toidentifier "1.0.0"
+
+http-errors@~1.6.2:
+  version "1.6.3"
+  resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
+  integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=
+  dependencies:
+    depd "~1.1.2"
+    inherits "2.0.3"
+    setprototypeof "1.1.0"
+    statuses ">= 1.4.0 < 2"
+
+http-errors@~1.7.2:
+  version "1.7.3"
+  resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
+  integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
+  dependencies:
+    depd "~1.1.2"
+    inherits "2.0.4"
+    setprototypeof "1.1.1"
+    statuses ">= 1.5.0 < 2"
+    toidentifier "1.0.0"
+
+"http-parser-js@>=0.4.0 <0.4.11":
+  version "0.4.10"
+  resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.10.tgz#92c9c1374c35085f75db359ec56cc257cbb93fa4"
+  integrity sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=
+
+http-proxy-agent@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405"
+  integrity sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==
+  dependencies:
+    agent-base "4"
+    debug "3.1.0"
+
+http-proxy-middleware@0.19.1:
+  version "0.19.1"
+  resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a"
+  integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
+  dependencies:
+    http-proxy "^1.17.0"
+    is-glob "^4.0.0"
+    lodash "^4.17.11"
+    micromatch "^3.1.10"
+
+http-proxy@^1.17.0:
+  version "1.18.1"
+  resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
+  integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
+  dependencies:
+    eventemitter3 "^4.0.0"
+    follow-redirects "^1.0.0"
+    requires-port "^1.0.0"
+
+http-signature@~1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
+  integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=
+  dependencies:
+    assert-plus "^1.0.0"
+    jsprim "^1.2.2"
+    sshpk "^1.7.0"
+
+https-browserify@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
+  integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
+
+https-proxy-agent@^2.2.3:
+  version "2.2.4"
+  resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b"
+  integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==
+  dependencies:
+    agent-base "^4.3.0"
+    debug "^3.1.0"
+
+human-signals@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
+  integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
+
+humanize-ms@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
+  integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=
+  dependencies:
+    ms "^2.0.0"
+
+humanize-url@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/humanize-url/-/humanize-url-1.0.1.tgz#f4ab99e0d288174ca4e1e50407c55fbae464efff"
+  integrity sha1-9KuZ4NKIF0yk4eUEB8VfuuRk7/8=
+  dependencies:
+    normalize-url "^1.0.0"
+    strip-url-auth "^1.0.0"
+
+husky@^4.2.5:
+  version "4.2.5"
+  resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.5.tgz#2b4f7622673a71579f901d9885ed448394b5fa36"
+  integrity sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ==
+  dependencies:
+    chalk "^4.0.0"
+    ci-info "^2.0.0"
+    compare-versions "^3.6.0"
+    cosmiconfig "^6.0.0"
+    find-versions "^3.2.0"
+    opencollective-postinstall "^2.0.2"
+    pkg-dir "^4.2.0"
+    please-upgrade-node "^3.2.0"
+    slash "^3.0.0"
+    which-pm-runs "^1.0.0"
+
+hygen@^5.0.3:
+  version "5.0.3"
+  resolved "https://registry.yarnpkg.com/hygen/-/hygen-5.0.3.tgz#0ba9f6aff0a51dce4e71fc679da5a359cafb38c7"
+  integrity sha512-tepicT366of7FZKfuT/YtTOZ1mU7txQix2EgYEGOCBD4SN3+vf2tRITB/yA7Amd9NPhzijgCYkW/MlIsdXEEEQ==
+  dependencies:
+    chalk "^2.4.2"
+    change-case "^3.1.0"
+    ejs "^2.6.1"
+    enquirer "^2.3.0"
+    execa "^1.0.0"
+    front-matter "^2.3.0"
+    fs-extra "^7.0.1"
+    ignore-walk "^3.0.2"
+    inflection "^1.12.0"
+    ts-jest "^24.1.0"
+    yargs-parser "^13.0.0"
+
+hyphenate-style-name@^1.0.2:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.3.tgz#097bb7fa0b8f1a9cf0bd5c734cf95899981a9b48"
+  integrity sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==
+
+i18next@^19.3.3:
+  version "19.3.4"
+  resolved "https://registry.yarnpkg.com/i18next/-/i18next-19.3.4.tgz#512de50ee6075df825c646e1ce646a104f0938c9"
+  integrity sha512-ef7AxxutzdhBsBNugE9jgqsbwesG1muJOtZ9ZrPARPs/jXegViTp4+8JCeMp8BAyTIo1Zn0giqc8+2UpqFjU0w==
+  dependencies:
+    "@babel/runtime" "^7.3.1"
+
+iconv-lite@0.2:
+  version "0.2.11"
+  resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.2.11.tgz#1ce60a3a57864a292d1321ff4609ca4bb965adc8"
+  integrity sha1-HOYKOleGSiktEyH/RgnKS7llrcg=
+
+iconv-lite@0.4, iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@~0.4.13:
+  version "0.4.24"
+  resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
+  integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
+  dependencies:
+    safer-buffer ">= 2.1.2 < 3"
+
+icss-replace-symbols@^1.1.0:
+  version "1.1.0"
+  resolved "http://localhost:4873/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
+  integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
+
+icss-utils@^2.1.0:
+  version "2.1.0"
+  resolved "http://localhost:4873/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962"
+  integrity sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=
+  dependencies:
+    postcss "^6.0.1"
+
+icss-utils@^4.0.0, icss-utils@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
+  integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
+  dependencies:
+    postcss "^7.0.14"
+
+identity-obj-proxy@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz#94d2bda96084453ef36fbc5aaec37e0f79f1fc14"
+  integrity sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=
+  dependencies:
+    harmony-reflect "^1.4.6"
+
+ieee754@^1.1.12, ieee754@^1.1.4:
+  version "1.1.13"
+  resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
+  integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
+
+iferr@^0.1.5:
+  version "0.1.5"
+  resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
+  integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
+
+ignore-styles@^5.0.1:
+  version "5.0.1"
+  resolved "http://localhost:4873/ignore-styles/-/ignore-styles-5.0.1.tgz#b49ef2274bdafcd8a4880a966bfe38d1a0bf4671"
+  integrity sha1-tJ7yJ0va/NikiAqWa/440aC/RnE=
+
+ignore-walk@^3.0.1, ignore-walk@^3.0.2:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37"
+  integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==
+  dependencies:
+    minimatch "^3.0.4"
+
+ignore@^3.3.5:
+  version "3.3.10"
+  resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
+  integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==
+
+ignore@^4.0.3, ignore@^4.0.6:
+  version "4.0.6"
+  resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
+  integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
+
+ignore@^5.1.4:
+  version "5.1.8"
+  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
+  integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
+
+image-size@~0.5.0:
+  version "0.5.5"
+  resolved "http://localhost:4873/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c"
+  integrity sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=
+
+immer@1.10.0:
+  version "1.10.0"
+  resolved "https://registry.yarnpkg.com/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d"
+  integrity sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==
+
+immutable@^3.8.1, immutable@^3.8.2:
+  version "3.8.2"
+  resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3"
+  integrity sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=
+
+immutable@^4.0.0-rc.12:
+  version "4.0.0-rc.12"
+  resolved "http://localhost:4873/immutable/-/immutable-4.0.0-rc.12.tgz#ca59a7e4c19ae8d9bf74a97bdf0f6e2f2a5d0217"
+  integrity sha512-0M2XxkZLx/mi3t8NVwIm1g8nHoEmM9p9UBl/G9k4+hm0kBgOVdMV/B3CY5dQ8qG8qc80NN4gDV4HQv6FTJ5q7A==
+
+import-cwd@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
+  integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=
+  dependencies:
+    import-from "^2.1.0"
+
+import-fresh@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
+  integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
+  dependencies:
+    caller-path "^2.0.0"
+    resolve-from "^3.0.0"
+
+import-fresh@^3.0.0, import-fresh@^3.1.0:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
+  integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
+  dependencies:
+    parent-module "^1.0.0"
+    resolve-from "^4.0.0"
+
+import-fresh@^3.2.1:
+  version "3.2.2"
+  resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e"
+  integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==
+  dependencies:
+    parent-module "^1.0.0"
+    resolve-from "^4.0.0"
+
+import-from@3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966"
+  integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==
+  dependencies:
+    resolve-from "^5.0.0"
+
+import-from@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
+  integrity sha1-M1238qev/VOqpHHUuAId7ja387E=
+  dependencies:
+    resolve-from "^3.0.0"
+
+import-local@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
+  integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
+  dependencies:
+    pkg-dir "^3.0.0"
+    resolve-cwd "^2.0.0"
+
+import-local@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6"
+  integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
+  dependencies:
+    pkg-dir "^4.2.0"
+    resolve-cwd "^3.0.0"
+
+import-modules@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/import-modules/-/import-modules-2.0.0.tgz#9c1e13b4e7a15682f70a6e3fa29534e4540cfc5d"
+  integrity sha512-iczM/v9drffdNnABOKwj0f9G3cFDon99VcG1mxeBsdqnbd+vnQ5c2uAiCHNQITqFTOPaEvwg3VjoWCur0uHLEw==
+
+imports-loader@^0.7.1:
+  version "0.7.1"
+  resolved "http://localhost:4873/imports-loader/-/imports-loader-0.7.1.tgz#f204b5f34702a32c1db7d48d89d5e867a0441253"
+  integrity sha1-8gS180cCoywdt9SNidXoZ6BEElM=
+  dependencies:
+    loader-utils "^1.0.2"
+    source-map "^0.5.6"
+
+imurmurhash@^0.1.4:
+  version "0.1.4"
+  resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
+  integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
+
+indent-string@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
+  integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=
+  dependencies:
+    repeating "^2.0.0"
+
+indent-string@^3.0.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
+  integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
+
+indent-string@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
+  integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
+
+indexes-of@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
+  integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
+
+infer-owner@^1.0.3, infer-owner@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
+  integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
+
+inflected@^2.0.3:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/inflected/-/inflected-2.1.0.tgz#2816ac17a570bbbc8303ca05bca8bf9b3f959687"
+  integrity sha512-hAEKNxvHf2Iq3H60oMBHkB4wl5jn3TPF3+fXek/sRwAB5gP9xWs4r7aweSF95f99HFoz69pnZTcu8f0SIHV18w==
+
+inflection@^1.12.0:
+  version "1.12.0"
+  resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.12.0.tgz#a200935656d6f5f6bc4dc7502e1aecb703228416"
+  integrity sha1-ogCTVlbW9fa8TcdQLhrstwMihBY=
+
+inflight@^1.0.4:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+  integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
+  dependencies:
+    once "^1.3.0"
+    wrappy "1"
+
+inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+  integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+
+inherits@2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
+  integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
+
+inherits@2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+  integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
+
+ini@^1.3.2, ini@^1.3.4, ini@^1.3.5:
+  version "1.3.8"
+  resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
+  integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
+
+init-package-json@^1.10.3:
+  version "1.10.3"
+  resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-1.10.3.tgz#45ffe2f610a8ca134f2bd1db5637b235070f6cbe"
+  integrity sha512-zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw==
+  dependencies:
+    glob "^7.1.1"
+    npm-package-arg "^4.0.0 || ^5.0.0 || ^6.0.0"
+    promzard "^0.3.0"
+    read "~1.0.1"
+    read-package-json "1 || 2"
+    semver "2.x || 3.x || 4 || 5"
+    validate-npm-package-license "^3.0.1"
+    validate-npm-package-name "^3.0.0"
+
+inline-style-parser@0.1.1:
+  version "0.1.1"
+  resolved "http://localhost:4873/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
+  integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
+
+inline-style-prefixer@^3.0.1:
+  version "3.0.8"
+  resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-3.0.8.tgz#8551b8e5b4d573244e66a34b04f7d32076a2b534"
+  integrity sha1-hVG45bTVcyROZqNLBPfTIHaitTQ=
+  dependencies:
+    bowser "^1.7.3"
+    css-in-js-utils "^2.0.0"
+
+inquirer@6.2.0:
+  version "6.2.0"
+  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8"
+  integrity sha512-QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg==
+  dependencies:
+    ansi-escapes "^3.0.0"
+    chalk "^2.0.0"
+    cli-cursor "^2.1.0"
+    cli-width "^2.0.0"
+    external-editor "^3.0.0"
+    figures "^2.0.0"
+    lodash "^4.17.10"
+    mute-stream "0.0.7"
+    run-async "^2.2.0"
+    rxjs "^6.1.0"
+    string-width "^2.1.0"
+    strip-ansi "^4.0.0"
+    through "^2.3.6"
+
+inquirer@6.5.0:
+  version "6.5.0"
+  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42"
+  integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA==
+  dependencies:
+    ansi-escapes "^3.2.0"
+    chalk "^2.4.2"
+    cli-cursor "^2.1.0"
+    cli-width "^2.0.0"
+    external-editor "^3.0.3"
+    figures "^2.0.0"
+    lodash "^4.17.12"
+    mute-stream "0.0.7"
+    run-async "^2.2.0"
+    rxjs "^6.4.0"
+    string-width "^2.1.0"
+    strip-ansi "^5.1.0"
+    through "^2.3.6"
+
+inquirer@7.0.4:
+  version "7.0.4"
+  resolved "http://localhost:4873/inquirer/-/inquirer-7.0.4.tgz#99af5bde47153abca23f5c7fc30db247f39da703"
+  integrity sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ==
+  dependencies:
+    ansi-escapes "^4.2.1"
+    chalk "^2.4.2"
+    cli-cursor "^3.1.0"
+    cli-width "^2.0.0"
+    external-editor "^3.0.3"
+    figures "^3.0.0"
+    lodash "^4.17.15"
+    mute-stream "0.0.8"
+    run-async "^2.2.0"
+    rxjs "^6.5.3"
+    string-width "^4.1.0"
+    strip-ansi "^5.1.0"
+    through "^2.3.6"
+
+inquirer@^6.2.0:
+  version "6.5.2"
+  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca"
+  integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==
+  dependencies:
+    ansi-escapes "^3.2.0"
+    chalk "^2.4.2"
+    cli-cursor "^2.1.0"
+    cli-width "^2.0.0"
+    external-editor "^3.0.3"
+    figures "^2.0.0"
+    lodash "^4.17.12"
+    mute-stream "0.0.7"
+    run-async "^2.2.0"
+    rxjs "^6.4.0"
+    string-width "^2.1.0"
+    strip-ansi "^5.1.0"
+    through "^2.3.6"
+
+inquirer@^7.0.0, inquirer@^7.1.0:
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29"
+  integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg==
+  dependencies:
+    ansi-escapes "^4.2.1"
+    chalk "^3.0.0"
+    cli-cursor "^3.1.0"
+    cli-width "^2.0.0"
+    external-editor "^3.0.3"
+    figures "^3.0.0"
+    lodash "^4.17.15"
+    mute-stream "0.0.8"
+    run-async "^2.4.0"
+    rxjs "^6.5.3"
+    string-width "^4.1.0"
+    strip-ansi "^6.0.0"
+    through "^2.3.6"
+
+insert-css@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/insert-css/-/insert-css-2.0.0.tgz#eb5d1097b7542f4c79ea3060d3aee07d053880f4"
+  integrity sha1-610Ql7dUL0x56jBg067gfQU4gPQ=
+
+internal-ip@^4.3.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907"
+  integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==
+  dependencies:
+    default-gateway "^4.2.0"
+    ipaddr.js "^1.9.0"
+
+internal-slot@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3"
+  integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g==
+  dependencies:
+    es-abstract "^1.17.0-next.1"
+    has "^1.0.3"
+    side-channel "^1.0.2"
+
+interpret@^1.0.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296"
+  integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==
+
+interpret@^1.2.0, interpret@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
+  integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==
+
+interpret@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.0.0.tgz#b783ffac0b8371503e9ab39561df223286aa5433"
+  integrity sha512-e0/LknJ8wpMMhTiWcjivB+ESwIuvHnBSlBbmP/pSb8CQJldoj1p2qv7xGZ/+BtbTziYRFSz8OsvdbiX45LtYQA==
+
+interweave@^11.2.0:
+  version "11.2.0"
+  resolved "http://localhost:4873/interweave/-/interweave-11.2.0.tgz#d0571cdc1002ef08f3b1f64c458bd320780c50c3"
+  integrity sha512-33h9LOXbT52tMin3IyLBPcd5RbiwroP/Sxr0OamnJJU7A/jh0XtZKGvdcSNKYRC7sLZuDk+ZJ2XVrmkcMU5i6w==
+  dependencies:
+    "@types/react" "*"
+    escape-html "^1.0.3"
+    prop-types "^15.7.2"
+
+invariant@^2.2.3, invariant@^2.2.4:
+  version "2.2.4"
+  resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
+  integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
+  dependencies:
+    loose-envify "^1.0.0"
+
+invert-kv@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
+  integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY=
+
+invert-kv@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-3.0.0.tgz#9db0c4817a1ec754df8067df6acf6828286f6a84"
+  integrity sha512-JzF8q2BeZA1ZkE3XROwRpoMQ9ObMgTtp0JH8EXewlbkikuOj2GPLIpUipdO+VL8QsTr2teAJD02EFGGL5cO7uw==
+
+ip-regex@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
+  integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
+
+ip@1.1.5, ip@^1.1.0, ip@^1.1.5:
+  version "1.1.5"
+  resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
+  integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=
+
+ipaddr.js@1.9.1, ipaddr.js@^1.9.0:
+  version "1.9.1"
+  resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
+  integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
+
+is-absolute-url@^2.0.0:
+  version "2.1.0"
+  resolved "http://localhost:4873/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
+  integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=
+
+is-absolute-url@^3.0.0, is-absolute-url@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698"
+  integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
+
+is-accessor-descriptor@^0.1.6:
+  version "0.1.6"
+  resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
+  integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
+  dependencies:
+    kind-of "^3.0.2"
+
+is-accessor-descriptor@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
+  integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
+  dependencies:
+    kind-of "^6.0.0"
+
+is-alphabetical@1.0.4, is-alphabetical@^1.0.0:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
+  integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==
+
+is-alphanumerical@^1.0.0:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf"
+  integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==
+  dependencies:
+    is-alphabetical "^1.0.0"
+    is-decimal "^1.0.0"
+
+is-arguments@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3"
+  integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==
+
+is-arrayish@^0.2.1:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
+  integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
+
+is-arrayish@^0.3.1:
+  version "0.3.2"
+  resolved "http://localhost:4873/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
+  integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
+
+is-binary-path@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
+  integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
+  dependencies:
+    binary-extensions "^1.0.0"
+
+is-binary-path@~2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
+  integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
+  dependencies:
+    binary-extensions "^2.0.0"
+
+is-boolean-object@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.1.tgz#10edc0900dd127697a92f6f9807c7617d68ac48e"
+  integrity sha512-TqZuVwa/sppcrhUCAYkGBk7w0yxfQQnxq28fjkO53tnK9FQXmdwz2JS5+GjsWQ6RByES1K40nI+yDic5c9/aAQ==
+
+is-buffer@^1.0.2, is-buffer@^1.1.4, is-buffer@^1.1.5, is-buffer@~1.1.6:
+  version "1.1.6"
+  resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
+  integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
+
+is-buffer@^2.0.0:
+  version "2.0.5"
+  resolved "http://localhost:4873/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
+  integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
+
+is-buffer@^2.0.2:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623"
+  integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==
+
+is-callable@^1.1.4, is-callable@^1.1.5:
+  version "1.1.5"
+  resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab"
+  integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==
+
+is-callable@^1.2.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9"
+  integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==
+
+is-ci@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
+  integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
+  dependencies:
+    ci-info "^2.0.0"
+
+is-color-stop@^1.0.0:
+  version "1.1.0"
+  resolved "http://localhost:4873/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345"
+  integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=
+  dependencies:
+    css-color-names "^0.0.4"
+    hex-color-regex "^1.1.0"
+    hsl-regex "^1.0.0"
+    hsla-regex "^1.0.0"
+    rgb-regex "^1.0.1"
+    rgba-regex "^1.0.0"
+
+is-core-module@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz#a4cc031d9b1aca63eecbd18a650e13cb4eeab946"
+  integrity sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==
+  dependencies:
+    has "^1.0.3"
+
+is-data-descriptor@^0.1.4:
+  version "0.1.4"
+  resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
+  integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
+  dependencies:
+    kind-of "^3.0.2"
+
+is-data-descriptor@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
+  integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
+  dependencies:
+    kind-of "^6.0.0"
+
+is-date-object@^1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
+  integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
+
+is-decimal@^1.0.0:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"
+  integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==
+
+is-descriptor@^0.1.0:
+  version "0.1.6"
+  resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
+  integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
+  dependencies:
+    is-accessor-descriptor "^0.1.6"
+    is-data-descriptor "^0.1.4"
+    kind-of "^5.0.0"
+
+is-descriptor@^1.0.0, is-descriptor@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
+  integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
+  dependencies:
+    is-accessor-descriptor "^1.0.0"
+    is-data-descriptor "^1.0.0"
+    kind-of "^6.0.2"
+
+is-directory@^0.3.1:
+  version "0.3.1"
+  resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
+  integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
+
+is-docker@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b"
+  integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ==
+
+is-dom@^1.0.0, is-dom@^1.0.9:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-dom/-/is-dom-1.1.0.tgz#af1fced292742443bb59ca3f76ab5e80907b4e8a"
+  integrity sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==
+  dependencies:
+    is-object "^1.0.1"
+    is-window "^1.0.2"
+
+is-extendable@^0.1.0, is-extendable@^0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
+  integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
+
+is-extendable@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
+  integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
+  dependencies:
+    is-plain-object "^2.0.4"
+
+is-extglob@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
+  integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=
+
+is-extglob@^2.1.0, is-extglob@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+  integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
+
+is-finite@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3"
+  integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==
+
+is-fullwidth-code-point@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
+  integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
+  dependencies:
+    number-is-nan "^1.0.0"
+
+is-fullwidth-code-point@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
+  integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
+
+is-fullwidth-code-point@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+  integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+
+is-function@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5"
+  integrity sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=
+
+is-function@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08"
+  integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==
+
+is-generator-fn@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
+  integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
+
+is-glob@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
+  integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=
+  dependencies:
+    is-extglob "^1.0.0"
+
+is-glob@^3.0.0, is-glob@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
+  integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
+  dependencies:
+    is-extglob "^2.1.0"
+
+is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
+  integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
+  dependencies:
+    is-extglob "^2.1.1"
+
+is-hexadecimal@^1.0.0:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7"
+  integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
+
+is-lower-case@^1.1.0:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/is-lower-case/-/is-lower-case-1.1.3.tgz#7e147be4768dc466db3bfb21cc60b31e6ad69393"
+  integrity sha1-fhR75HaNxGbbO/shzGCzHmrWk5M=
+  dependencies:
+    lower-case "^1.1.0"
+
+is-map@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.1.tgz#520dafc4307bb8ebc33b813de5ce7c9400d644a1"
+  integrity sha512-T/S49scO8plUiAOA2DBTBG3JHpn1yiw0kRp6dgiZ0v2/6twi5eiB0rHtHFH9ZIrvlWc6+4O+m4zg5+Z833aXgw==
+
+is-negative-zero@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
+  integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
+
+is-number-object@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197"
+  integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==
+
+is-number@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
+  integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
+  dependencies:
+    kind-of "^3.0.2"
+
+is-number@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+  integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+
+is-obj@^1.0.0, is-obj@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
+  integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
+
+is-obj@^2.0.0:
+  version "2.0.0"
+  resolved "http://localhost:4873/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
+  integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
+
+is-object@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470"
+  integrity sha1-iVJojF7C/9awPsyF52ngKQMINHA=
+
+is-observable@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e"
+  integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==
+  dependencies:
+    symbol-observable "^1.1.0"
+
+is-path-cwd@^2.0.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
+  integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
+
+is-path-in-cwd@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb"
+  integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==
+  dependencies:
+    is-path-inside "^2.1.0"
+
+is-path-inside@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2"
+  integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==
+  dependencies:
+    path-is-inside "^1.0.2"
+
+is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
+  integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
+
+is-plain-obj@^2.0.0:
+  version "2.1.0"
+  resolved "http://localhost:4873/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
+  integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
+
+is-plain-object@3.0.0, is-plain-object@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928"
+  integrity sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==
+  dependencies:
+    isobject "^4.0.0"
+
+is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
+  integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
+  dependencies:
+    isobject "^3.0.1"
+
+is-plain-object@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344"
+  integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
+
+is-potential-custom-element-name@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397"
+  integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c=
+
+is-promise@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
+  integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=
+
+is-redirect@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"
+  integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=
+
+is-regex@^1.0.4, is-regex@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae"
+  integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==
+  dependencies:
+    has "^1.0.3"
+
+is-regex@^1.1.0:
+  version "1.1.2"
+  resolved "http://localhost:4873/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251"
+  integrity sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==
+  dependencies:
+    call-bind "^1.0.2"
+    has-symbols "^1.0.1"
+
+is-regex@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
+  integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==
+  dependencies:
+    has-symbols "^1.0.1"
+
+is-regexp@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
+  integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
+
+is-resolvable@^1.0.0:
+  version "1.1.0"
+  resolved "http://localhost:4873/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
+  integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
+
+is-retina@^1.0.3:
+  version "1.0.3"
+  resolved "http://localhost:4873/is-retina/-/is-retina-1.0.3.tgz#d7401b286bea2ae37f62477588de504d0b8647e3"
+  integrity sha1-10AbKGvqKuN/Ykd1iN5QTQuGR+M=
+
+is-retry-allowed@^1.0.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
+  integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==
+
+is-root@2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
+  integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
+
+is-scoped@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/is-scoped/-/is-scoped-1.0.0.tgz#449ca98299e713038256289ecb2b540dc437cb30"
+  integrity sha1-RJypgpnnEwOCViieyytUDcQ3yzA=
+  dependencies:
+    scoped-regex "^1.0.0"
+
+is-set@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43"
+  integrity sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA==
+
+is-ssh@^1.3.0:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.1.tgz#f349a8cadd24e65298037a522cf7520f2e81a0f3"
+  integrity sha512-0eRIASHZt1E68/ixClI8bp2YK2wmBPVWEismTs6M+M099jKgrzl/3E976zIbImSIob48N2/XGe9y7ZiYdImSlg==
+  dependencies:
+    protocols "^1.1.0"
+
+is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
+  integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
+
+is-stream@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
+  integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
+
+is-string@^1.0.4, is-string@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
+  integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
+
+is-subset@^0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
+  integrity sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=
+
+is-svg@^3.0.0:
+  version "3.0.0"
+  resolved "http://localhost:4873/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75"
+  integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==
+  dependencies:
+    html-comment-regex "^1.1.0"
+
+is-symbol@^1.0.1, is-symbol@^1.0.2, is-symbol@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
+  integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
+  dependencies:
+    has-symbols "^1.0.1"
+
+is-text-path@^1.0.0, is-text-path@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e"
+  integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=
+  dependencies:
+    text-extensions "^1.0.0"
+
+is-typedarray@^1.0.0, is-typedarray@~1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
+  integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
+
+is-upper-case@^1.1.0:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/is-upper-case/-/is-upper-case-1.1.2.tgz#8d0b1fa7e7933a1e58483600ec7d9661cbaf756f"
+  integrity sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8=
+  dependencies:
+    upper-case "^1.1.0"
+
+is-utf8@^0.2.0, is-utf8@^0.2.1:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
+  integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
+
+is-what@^3.12.0:
+  version "3.12.0"
+  resolved "http://localhost:4873/is-what/-/is-what-3.12.0.tgz#f4405ce4bd6dd420d3ced51a026fb90e03705e55"
+  integrity sha512-2ilQz5/f/o9V7WRWJQmpFYNmQFZ9iM+OXRonZKcYgTkCzjb949Vi4h282PD1UfmgHk666rcWonbRJ++KI41VGw==
+
+is-whitespace-character@^1.0.0:
+  version "1.0.4"
+  resolved "http://localhost:4873/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7"
+  integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==
+
+is-window@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d"
+  integrity sha1-LIlspT25feRdPDMTOmXYyfVjSA0=
+
+is-windows@^1.0.0, is-windows@^1.0.1, is-windows@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
+  integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
+
+is-word-character@^1.0.0:
+  version "1.0.4"
+  resolved "http://localhost:4873/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230"
+  integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==
+
+is-wsl@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
+  integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
+
+is-wsl@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.1.1.tgz#4a1c152d429df3d441669498e2486d3596ebaf1d"
+  integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog==
+
+is-wsl@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
+  integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
+  dependencies:
+    is-docker "^2.0.0"
+
+isarray@0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
+  integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=
+
+isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+  integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
+
+isarray@^2.0.1, isarray@^2.0.5:
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+  integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+
+isbinaryfile@^4.0.0:
+  version "4.0.5"
+  resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.5.tgz#7193454fdd7fc0b12855c36c48d4ac7368fa3ec9"
+  integrity sha512-Jvz0gpTh1AILHMCBUyqq7xv1ZOQrxTDwyp1/QUq1xFpOBvp4AH5uEobPePJht8KnBGqQIH7We6OR73mXsjG0cA==
+
+isexe@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+  integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
+
+isobject@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
+  integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
+  dependencies:
+    isarray "1.0.0"
+
+isobject@^3.0.0, isobject@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
+  integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
+
+isobject@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0"
+  integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==
+
+isomorphic-fetch@^2.1.1:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
+  integrity sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=
+  dependencies:
+    node-fetch "^1.0.1"
+    whatwg-fetch ">=0.10.0"
+
+isstream@~0.1.2:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
+  integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
+
+istanbul-lib-coverage@^2.0.5:
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49"
+  integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==
+
+istanbul-lib-coverage@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
+  integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
+
+istanbul-lib-instrument@^3.3.0:
+  version "3.3.0"
+  resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630"
+  integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==
+  dependencies:
+    "@babel/generator" "^7.4.0"
+    "@babel/parser" "^7.4.3"
+    "@babel/template" "^7.4.0"
+    "@babel/traverse" "^7.4.3"
+    "@babel/types" "^7.4.0"
+    istanbul-lib-coverage "^2.0.5"
+    semver "^6.0.0"
+
+istanbul-lib-instrument@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.1.tgz#61f13ac2c96cfefb076fe7131156cc05907874e6"
+  integrity sha512-imIchxnodll7pvQBYOqUu88EufLCU56LMeFPZZM/fJZ1irYcYdqroaV+ACK1Ila8ls09iEYArp+nqyC6lW1Vfg==
+  dependencies:
+    "@babel/core" "^7.7.5"
+    "@babel/parser" "^7.7.5"
+    "@babel/template" "^7.7.4"
+    "@babel/traverse" "^7.7.4"
+    "@istanbuljs/schema" "^0.1.2"
+    istanbul-lib-coverage "^3.0.0"
+    semver "^6.3.0"
+
+istanbul-lib-instrument@^4.0.3:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
+  integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
+  dependencies:
+    "@babel/core" "^7.7.5"
+    "@istanbuljs/schema" "^0.1.2"
+    istanbul-lib-coverage "^3.0.0"
+    semver "^6.3.0"
+
+istanbul-lib-report@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
+  integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
+  dependencies:
+    istanbul-lib-coverage "^3.0.0"
+    make-dir "^3.0.0"
+    supports-color "^7.1.0"
+
+istanbul-lib-source-maps@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9"
+  integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
+  dependencies:
+    debug "^4.1.1"
+    istanbul-lib-coverage "^3.0.0"
+    source-map "^0.6.1"
+
+istanbul-reports@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
+  integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
+  dependencies:
+    html-escaper "^2.0.0"
+    istanbul-lib-report "^3.0.0"
+
+istextorbinary@^2.5.1:
+  version "2.6.0"
+  resolved "https://registry.yarnpkg.com/istextorbinary/-/istextorbinary-2.6.0.tgz#60776315fb0fa3999add276c02c69557b9ca28ab"
+  integrity sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==
+  dependencies:
+    binaryextensions "^2.1.2"
+    editions "^2.2.0"
+    textextensions "^2.5.0"
+
+iterall@1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.3.tgz#1cbbff96204056dde6656e2ed2e2226d0e6d72c9"
+  integrity sha512-Cu/kb+4HiNSejAPhSaN1VukdNTTi/r4/e+yykqjlG/IW+1gZH5b4+Bq3whDX4tvbYugta3r8KTMUiqT3fIGxuQ==
+
+iterall@^1.2.1:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea"
+  integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==
+
+iterate-iterator@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/iterate-iterator/-/iterate-iterator-1.0.1.tgz#1693a768c1ddd79c969051459453f082fe82e9f6"
+  integrity sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw==
+
+iterate-value@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/iterate-value/-/iterate-value-1.0.2.tgz#935115bd37d006a52046535ebc8d07e9c9337f57"
+  integrity sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==
+  dependencies:
+    es-get-iterator "^1.0.2"
+    iterate-iterator "^1.0.1"
+
+jake@^10.6.1:
+  version "10.8.2"
+  resolved "http://localhost:4873/jake/-/jake-10.8.2.tgz#ebc9de8558160a66d82d0eadc6a2e58fbc500a7b"
+  integrity sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==
+  dependencies:
+    async "0.9.x"
+    chalk "^2.4.2"
+    filelist "^1.0.1"
+    minimatch "^3.0.4"
+
+java-properties@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/java-properties/-/java-properties-1.0.2.tgz#ccd1fa73907438a5b5c38982269d0e771fe78211"
+  integrity sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==
+
+javascript-natural-sort@^0.7.1:
+  version "0.7.1"
+  resolved "https://registry.yarnpkg.com/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz#f9e2303d4507f6d74355a73664d1440fb5a0ef59"
+  integrity sha1-+eIwPUUH9tdDVac2ZNFED7Wg71k=
+
+jed@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/jed/-/jed-1.1.1.tgz#7a549bbd9ffe1585b0cd0a191e203055bee574b4"
+  integrity sha1-elSbvZ/+FYWwzQoZHiAwVb7ldLQ=
+
+jest-changed-files@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.5.0.tgz#141cc23567ceb3f534526f8614ba39421383634c"
+  integrity sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm/1nAn5fPQ/NDaYhX/AHkrGwwkCncpAVSXcw==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    execa "^3.2.0"
+    throat "^5.0.0"
+
+jest-changed-files@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.6.2.tgz#f6198479e1cc66f22f9ae1e22acaa0b429c042d0"
+  integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    execa "^4.0.0"
+    throat "^5.0.0"
+
+jest-cli@^25.5.4:
+  version "25.5.4"
+  resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-25.5.4.tgz#b9f1a84d1301a92c5c217684cb79840831db9f0d"
+  integrity sha512-rG8uJkIiOUpnREh1768/N3n27Cm+xPFkSNFO91tgg+8o2rXeVLStz+vkXkGr4UtzH6t1SNbjwoiswd7p4AhHTw==
+  dependencies:
+    "@jest/core" "^25.5.4"
+    "@jest/test-result" "^25.5.0"
+    "@jest/types" "^25.5.0"
+    chalk "^3.0.0"
+    exit "^0.1.2"
+    graceful-fs "^4.2.4"
+    import-local "^3.0.2"
+    is-ci "^2.0.0"
+    jest-config "^25.5.4"
+    jest-util "^25.5.0"
+    jest-validate "^25.5.0"
+    prompts "^2.0.1"
+    realpath-native "^2.0.0"
+    yargs "^15.3.1"
+
+jest-cli@^26.6.3:
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.6.3.tgz#43117cfef24bc4cd691a174a8796a532e135e92a"
+  integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==
+  dependencies:
+    "@jest/core" "^26.6.3"
+    "@jest/test-result" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    chalk "^4.0.0"
+    exit "^0.1.2"
+    graceful-fs "^4.2.4"
+    import-local "^3.0.2"
+    is-ci "^2.0.0"
+    jest-config "^26.6.3"
+    jest-util "^26.6.2"
+    jest-validate "^26.6.2"
+    prompts "^2.0.1"
+    yargs "^15.4.1"
+
+jest-config@^25.5.4:
+  version "25.5.4"
+  resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-25.5.4.tgz#38e2057b3f976ef7309b2b2c8dcd2a708a67f02c"
+  integrity sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==
+  dependencies:
+    "@babel/core" "^7.1.0"
+    "@jest/test-sequencer" "^25.5.4"
+    "@jest/types" "^25.5.0"
+    babel-jest "^25.5.1"
+    chalk "^3.0.0"
+    deepmerge "^4.2.2"
+    glob "^7.1.1"
+    graceful-fs "^4.2.4"
+    jest-environment-jsdom "^25.5.0"
+    jest-environment-node "^25.5.0"
+    jest-get-type "^25.2.6"
+    jest-jasmine2 "^25.5.4"
+    jest-regex-util "^25.2.6"
+    jest-resolve "^25.5.1"
+    jest-util "^25.5.0"
+    jest-validate "^25.5.0"
+    micromatch "^4.0.2"
+    pretty-format "^25.5.0"
+    realpath-native "^2.0.0"
+
+jest-config@^26.6.3:
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.6.3.tgz#64f41444eef9eb03dc51d5c53b75c8c71f645349"
+  integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==
+  dependencies:
+    "@babel/core" "^7.1.0"
+    "@jest/test-sequencer" "^26.6.3"
+    "@jest/types" "^26.6.2"
+    babel-jest "^26.6.3"
+    chalk "^4.0.0"
+    deepmerge "^4.2.2"
+    glob "^7.1.1"
+    graceful-fs "^4.2.4"
+    jest-environment-jsdom "^26.6.2"
+    jest-environment-node "^26.6.2"
+    jest-get-type "^26.3.0"
+    jest-jasmine2 "^26.6.3"
+    jest-regex-util "^26.0.0"
+    jest-resolve "^26.6.2"
+    jest-util "^26.6.2"
+    jest-validate "^26.6.2"
+    micromatch "^4.0.2"
+    pretty-format "^26.6.2"
+
+jest-diff@^25.2.1, jest-diff@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9"
+  integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==
+  dependencies:
+    chalk "^3.0.0"
+    diff-sequences "^25.2.6"
+    jest-get-type "^25.2.6"
+    pretty-format "^25.5.0"
+
+jest-diff@^26.0.0, jest-diff@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394"
+  integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==
+  dependencies:
+    chalk "^4.0.0"
+    diff-sequences "^26.6.2"
+    jest-get-type "^26.3.0"
+    pretty-format "^26.6.2"
+
+jest-docblock@^25.3.0:
+  version "25.3.0"
+  resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-25.3.0.tgz#8b777a27e3477cd77a168c05290c471a575623ef"
+  integrity sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg==
+  dependencies:
+    detect-newline "^3.0.0"
+
+jest-docblock@^26.0.0:
+  version "26.0.0"
+  resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5"
+  integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==
+  dependencies:
+    detect-newline "^3.0.0"
+
+jest-each@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-25.5.0.tgz#0c3c2797e8225cb7bec7e4d249dcd96b934be516"
+  integrity sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    chalk "^3.0.0"
+    jest-get-type "^25.2.6"
+    jest-util "^25.5.0"
+    pretty-format "^25.5.0"
+
+jest-each@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.6.2.tgz#02526438a77a67401c8a6382dfe5999952c167cb"
+  integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    chalk "^4.0.0"
+    jest-get-type "^26.3.0"
+    jest-util "^26.6.2"
+    pretty-format "^26.6.2"
+
+jest-environment-enzyme@^7.1.2:
+  version "7.1.2"
+  resolved "https://registry.yarnpkg.com/jest-environment-enzyme/-/jest-environment-enzyme-7.1.2.tgz#4561f26a719e8e87ce8c9a6d3f540a92663ba8d5"
+  integrity sha512-3tfaYAzO7qZSRrv+srQnfK16Vu5XwH/pHi8FpoqSHjKKngbHzXf7aBCBuWh8y3w0OtknHRfDMFrC60Khj+g1hA==
+  dependencies:
+    jest-environment-jsdom "^24.0.0"
+
+jest-environment-jsdom@^24.0.0:
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz#4b0806c7fc94f95edb369a69cc2778eec2b7375b"
+  integrity sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==
+  dependencies:
+    "@jest/environment" "^24.9.0"
+    "@jest/fake-timers" "^24.9.0"
+    "@jest/types" "^24.9.0"
+    jest-mock "^24.9.0"
+    jest-util "^24.9.0"
+    jsdom "^11.5.1"
+
+jest-environment-jsdom@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-25.5.0.tgz#dcbe4da2ea997707997040ecf6e2560aec4e9834"
+  integrity sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A==
+  dependencies:
+    "@jest/environment" "^25.5.0"
+    "@jest/fake-timers" "^25.5.0"
+    "@jest/types" "^25.5.0"
+    jest-mock "^25.5.0"
+    jest-util "^25.5.0"
+    jsdom "^15.2.1"
+
+jest-environment-jsdom@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz#78d09fe9cf019a357009b9b7e1f101d23bd1da3e"
+  integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==
+  dependencies:
+    "@jest/environment" "^26.6.2"
+    "@jest/fake-timers" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+    jest-mock "^26.6.2"
+    jest-util "^26.6.2"
+    jsdom "^16.4.0"
+
+jest-environment-node@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-25.5.0.tgz#0f55270d94804902988e64adca37c6ce0f7d07a1"
+  integrity sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA==
+  dependencies:
+    "@jest/environment" "^25.5.0"
+    "@jest/fake-timers" "^25.5.0"
+    "@jest/types" "^25.5.0"
+    jest-mock "^25.5.0"
+    jest-util "^25.5.0"
+    semver "^6.3.0"
+
+jest-environment-node@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.6.2.tgz#824e4c7fb4944646356f11ac75b229b0035f2b0c"
+  integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==
+  dependencies:
+    "@jest/environment" "^26.6.2"
+    "@jest/fake-timers" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+    jest-mock "^26.6.2"
+    jest-util "^26.6.2"
+
+jest-enzyme@^7.1.2:
+  version "7.1.2"
+  resolved "https://registry.yarnpkg.com/jest-enzyme/-/jest-enzyme-7.1.2.tgz#91a10b2d3be1b56c0d65b34286e5bdc41ab4ba3d"
+  integrity sha512-j+jkph3t5hGBS12eOldpfsnERYRCHi4c/0KWPMnqRPoJJXvCpLIc5th1MHl0xDznQDXVU0AHUXg3rqMrf8vGpA==
+  dependencies:
+    enzyme-matchers "^7.1.2"
+    enzyme-to-json "^3.3.0"
+    jest-environment-enzyme "^7.1.2"
+
+jest-get-type@^25.2.6:
+  version "25.2.6"
+  resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877"
+  integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==
+
+jest-get-type@^26.3.0:
+  version "26.3.0"
+  resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0"
+  integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==
+
+jest-haste-map@^24.9.0:
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d"
+  integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==
+  dependencies:
+    "@jest/types" "^24.9.0"
+    anymatch "^2.0.0"
+    fb-watchman "^2.0.0"
+    graceful-fs "^4.1.15"
+    invariant "^2.2.4"
+    jest-serializer "^24.9.0"
+    jest-util "^24.9.0"
+    jest-worker "^24.9.0"
+    micromatch "^3.1.10"
+    sane "^4.0.3"
+    walker "^1.0.7"
+  optionalDependencies:
+    fsevents "^1.2.7"
+
+jest-haste-map@^25.5.1:
+  version "25.5.1"
+  resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.5.1.tgz#1df10f716c1d94e60a1ebf7798c9fb3da2620943"
+  integrity sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    "@types/graceful-fs" "^4.1.2"
+    anymatch "^3.0.3"
+    fb-watchman "^2.0.0"
+    graceful-fs "^4.2.4"
+    jest-serializer "^25.5.0"
+    jest-util "^25.5.0"
+    jest-worker "^25.5.0"
+    micromatch "^4.0.2"
+    sane "^4.0.3"
+    walker "^1.0.7"
+    which "^2.0.2"
+  optionalDependencies:
+    fsevents "^2.1.2"
+
+jest-haste-map@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa"
+  integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    "@types/graceful-fs" "^4.1.2"
+    "@types/node" "*"
+    anymatch "^3.0.3"
+    fb-watchman "^2.0.0"
+    graceful-fs "^4.2.4"
+    jest-regex-util "^26.0.0"
+    jest-serializer "^26.6.2"
+    jest-util "^26.6.2"
+    jest-worker "^26.6.2"
+    micromatch "^4.0.2"
+    sane "^4.0.3"
+    walker "^1.0.7"
+  optionalDependencies:
+    fsevents "^2.1.2"
+
+jest-jasmine2@^25.5.4:
+  version "25.5.4"
+  resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-25.5.4.tgz#66ca8b328fb1a3c5364816f8958f6970a8526968"
+  integrity sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==
+  dependencies:
+    "@babel/traverse" "^7.1.0"
+    "@jest/environment" "^25.5.0"
+    "@jest/source-map" "^25.5.0"
+    "@jest/test-result" "^25.5.0"
+    "@jest/types" "^25.5.0"
+    chalk "^3.0.0"
+    co "^4.6.0"
+    expect "^25.5.0"
+    is-generator-fn "^2.0.0"
+    jest-each "^25.5.0"
+    jest-matcher-utils "^25.5.0"
+    jest-message-util "^25.5.0"
+    jest-runtime "^25.5.4"
+    jest-snapshot "^25.5.1"
+    jest-util "^25.5.0"
+    pretty-format "^25.5.0"
+    throat "^5.0.0"
+
+jest-jasmine2@^26.6.3:
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz#adc3cf915deacb5212c93b9f3547cd12958f2edd"
+  integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==
+  dependencies:
+    "@babel/traverse" "^7.1.0"
+    "@jest/environment" "^26.6.2"
+    "@jest/source-map" "^26.6.2"
+    "@jest/test-result" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+    chalk "^4.0.0"
+    co "^4.6.0"
+    expect "^26.6.2"
+    is-generator-fn "^2.0.0"
+    jest-each "^26.6.2"
+    jest-matcher-utils "^26.6.2"
+    jest-message-util "^26.6.2"
+    jest-runtime "^26.6.3"
+    jest-snapshot "^26.6.2"
+    jest-util "^26.6.2"
+    pretty-format "^26.6.2"
+    throat "^5.0.0"
+
+jest-leak-detector@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-25.5.0.tgz#2291c6294b0ce404241bb56fe60e2d0c3e34f0bb"
+  integrity sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA==
+  dependencies:
+    jest-get-type "^25.2.6"
+    pretty-format "^25.5.0"
+
+jest-leak-detector@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz#7717cf118b92238f2eba65054c8a0c9c653a91af"
+  integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==
+  dependencies:
+    jest-get-type "^26.3.0"
+    pretty-format "^26.6.2"
+
+jest-matcher-utils@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz#fbc98a12d730e5d2453d7f1ed4a4d948e34b7867"
+  integrity sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==
+  dependencies:
+    chalk "^3.0.0"
+    jest-diff "^25.5.0"
+    jest-get-type "^25.2.6"
+    pretty-format "^25.5.0"
+
+jest-matcher-utils@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz#8e6fd6e863c8b2d31ac6472eeb237bc595e53e7a"
+  integrity sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==
+  dependencies:
+    chalk "^4.0.0"
+    jest-diff "^26.6.2"
+    jest-get-type "^26.3.0"
+    pretty-format "^26.6.2"
+
+jest-message-util@^24.9.0:
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3"
+  integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==
+  dependencies:
+    "@babel/code-frame" "^7.0.0"
+    "@jest/test-result" "^24.9.0"
+    "@jest/types" "^24.9.0"
+    "@types/stack-utils" "^1.0.1"
+    chalk "^2.0.1"
+    micromatch "^3.1.10"
+    slash "^2.0.0"
+    stack-utils "^1.0.1"
+
+jest-message-util@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.5.0.tgz#ea11d93204cc7ae97456e1d8716251185b8880ea"
+  integrity sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==
+  dependencies:
+    "@babel/code-frame" "^7.0.0"
+    "@jest/types" "^25.5.0"
+    "@types/stack-utils" "^1.0.1"
+    chalk "^3.0.0"
+    graceful-fs "^4.2.4"
+    micromatch "^4.0.2"
+    slash "^3.0.0"
+    stack-utils "^1.0.1"
+
+jest-message-util@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.6.2.tgz#58173744ad6fc0506b5d21150b9be56ef001ca07"
+  integrity sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==
+  dependencies:
+    "@babel/code-frame" "^7.0.0"
+    "@jest/types" "^26.6.2"
+    "@types/stack-utils" "^2.0.0"
+    chalk "^4.0.0"
+    graceful-fs "^4.2.4"
+    micromatch "^4.0.2"
+    pretty-format "^26.6.2"
+    slash "^3.0.0"
+    stack-utils "^2.0.2"
+
+jest-mock-console@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/jest-mock-console/-/jest-mock-console-1.0.1.tgz#07978047735a782d0d4172d1afcabd82f6de9b08"
+  integrity sha512-Bn+Of/cvz9LOEEeEg5IX5Lsf8D2BscXa3Zl5+vSVJl37yiT8gMAPPKfE09jJOwwu1zbagL11QTrH+L/Gn8udOg==
+
+jest-mock@^24.9.0:
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6"
+  integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==
+  dependencies:
+    "@jest/types" "^24.9.0"
+
+jest-mock@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-25.5.0.tgz#a91a54dabd14e37ecd61665d6b6e06360a55387a"
+  integrity sha512-eXWuTV8mKzp/ovHc5+3USJMYsTBhyQ+5A1Mak35dey/RG8GlM4YWVylZuGgVXinaW6tpvk/RSecmF37FKUlpXA==
+  dependencies:
+    "@jest/types" "^25.5.0"
+
+jest-mock@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.6.2.tgz#d6cb712b041ed47fe0d9b6fc3474bc6543feb302"
+  integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+
+jest-pnp-resolver@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a"
+  integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==
+
+jest-pnp-resolver@^1.2.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
+  integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
+
+jest-regex-util@^24.9.0:
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636"
+  integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==
+
+jest-regex-util@^25.2.6:
+  version "25.2.6"
+  resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.2.6.tgz#d847d38ba15d2118d3b06390056028d0f2fd3964"
+  integrity sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==
+
+jest-regex-util@^26.0.0:
+  version "26.0.0"
+  resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28"
+  integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
+
+jest-resolve-dependencies@^25.5.4:
+  version "25.5.4"
+  resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-25.5.4.tgz#85501f53957c8e3be446e863a74777b5a17397a7"
+  integrity sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    jest-regex-util "^25.2.6"
+    jest-snapshot "^25.5.1"
+
+jest-resolve-dependencies@^26.6.3:
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz#6680859ee5d22ee5dcd961fe4871f59f4c784fb6"
+  integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    jest-regex-util "^26.0.0"
+    jest-snapshot "^26.6.2"
+
+jest-resolve@^25.5.1:
+  version "25.5.1"
+  resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.5.1.tgz#0e6fbcfa7c26d2a5fe8f456088dc332a79266829"
+  integrity sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    browser-resolve "^1.11.3"
+    chalk "^3.0.0"
+    graceful-fs "^4.2.4"
+    jest-pnp-resolver "^1.2.1"
+    read-pkg-up "^7.0.1"
+    realpath-native "^2.0.0"
+    resolve "^1.17.0"
+    slash "^3.0.0"
+
+jest-resolve@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.6.2.tgz#a3ab1517217f469b504f1b56603c5bb541fbb507"
+  integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    chalk "^4.0.0"
+    graceful-fs "^4.2.4"
+    jest-pnp-resolver "^1.2.2"
+    jest-util "^26.6.2"
+    read-pkg-up "^7.0.1"
+    resolve "^1.18.1"
+    slash "^3.0.0"
+
+jest-runner@^25.5.4:
+  version "25.5.4"
+  resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-25.5.4.tgz#ffec5df3875da5f5c878ae6d0a17b8e4ecd7c71d"
+  integrity sha512-V/2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg==
+  dependencies:
+    "@jest/console" "^25.5.0"
+    "@jest/environment" "^25.5.0"
+    "@jest/test-result" "^25.5.0"
+    "@jest/types" "^25.5.0"
+    chalk "^3.0.0"
+    exit "^0.1.2"
+    graceful-fs "^4.2.4"
+    jest-config "^25.5.4"
+    jest-docblock "^25.3.0"
+    jest-haste-map "^25.5.1"
+    jest-jasmine2 "^25.5.4"
+    jest-leak-detector "^25.5.0"
+    jest-message-util "^25.5.0"
+    jest-resolve "^25.5.1"
+    jest-runtime "^25.5.4"
+    jest-util "^25.5.0"
+    jest-worker "^25.5.0"
+    source-map-support "^0.5.6"
+    throat "^5.0.0"
+
+jest-runner@^26.6.3:
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.6.3.tgz#2d1fed3d46e10f233fd1dbd3bfaa3fe8924be159"
+  integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==
+  dependencies:
+    "@jest/console" "^26.6.2"
+    "@jest/environment" "^26.6.2"
+    "@jest/test-result" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+    chalk "^4.0.0"
+    emittery "^0.7.1"
+    exit "^0.1.2"
+    graceful-fs "^4.2.4"
+    jest-config "^26.6.3"
+    jest-docblock "^26.0.0"
+    jest-haste-map "^26.6.2"
+    jest-leak-detector "^26.6.2"
+    jest-message-util "^26.6.2"
+    jest-resolve "^26.6.2"
+    jest-runtime "^26.6.3"
+    jest-util "^26.6.2"
+    jest-worker "^26.6.2"
+    source-map-support "^0.5.6"
+    throat "^5.0.0"
+
+jest-runtime@^25.5.4:
+  version "25.5.4"
+  resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-25.5.4.tgz#dc981fe2cb2137abcd319e74ccae7f7eeffbfaab"
+  integrity sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3/gC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ==
+  dependencies:
+    "@jest/console" "^25.5.0"
+    "@jest/environment" "^25.5.0"
+    "@jest/globals" "^25.5.2"
+    "@jest/source-map" "^25.5.0"
+    "@jest/test-result" "^25.5.0"
+    "@jest/transform" "^25.5.1"
+    "@jest/types" "^25.5.0"
+    "@types/yargs" "^15.0.0"
+    chalk "^3.0.0"
+    collect-v8-coverage "^1.0.0"
+    exit "^0.1.2"
+    glob "^7.1.3"
+    graceful-fs "^4.2.4"
+    jest-config "^25.5.4"
+    jest-haste-map "^25.5.1"
+    jest-message-util "^25.5.0"
+    jest-mock "^25.5.0"
+    jest-regex-util "^25.2.6"
+    jest-resolve "^25.5.1"
+    jest-snapshot "^25.5.1"
+    jest-util "^25.5.0"
+    jest-validate "^25.5.0"
+    realpath-native "^2.0.0"
+    slash "^3.0.0"
+    strip-bom "^4.0.0"
+    yargs "^15.3.1"
+
+jest-runtime@^26.6.3:
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.6.3.tgz#4f64efbcfac398331b74b4b3c82d27d401b8fa2b"
+  integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==
+  dependencies:
+    "@jest/console" "^26.6.2"
+    "@jest/environment" "^26.6.2"
+    "@jest/fake-timers" "^26.6.2"
+    "@jest/globals" "^26.6.2"
+    "@jest/source-map" "^26.6.2"
+    "@jest/test-result" "^26.6.2"
+    "@jest/transform" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/yargs" "^15.0.0"
+    chalk "^4.0.0"
+    cjs-module-lexer "^0.6.0"
+    collect-v8-coverage "^1.0.0"
+    exit "^0.1.2"
+    glob "^7.1.3"
+    graceful-fs "^4.2.4"
+    jest-config "^26.6.3"
+    jest-haste-map "^26.6.2"
+    jest-message-util "^26.6.2"
+    jest-mock "^26.6.2"
+    jest-regex-util "^26.0.0"
+    jest-resolve "^26.6.2"
+    jest-snapshot "^26.6.2"
+    jest-util "^26.6.2"
+    jest-validate "^26.6.2"
+    slash "^3.0.0"
+    strip-bom "^4.0.0"
+    yargs "^15.4.1"
+
+jest-serializer@^24.9.0:
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73"
+  integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==
+
+jest-serializer@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.5.0.tgz#a993f484e769b4ed54e70e0efdb74007f503072b"
+  integrity sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA==
+  dependencies:
+    graceful-fs "^4.2.4"
+
+jest-serializer@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.6.2.tgz#d139aafd46957d3a448f3a6cdabe2919ba0742d1"
+  integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==
+  dependencies:
+    "@types/node" "*"
+    graceful-fs "^4.2.4"
+
+jest-snapshot@^25.5.1:
+  version "25.5.1"
+  resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.5.1.tgz#1a2a576491f9961eb8d00c2e5fd479bc28e5ff7f"
+  integrity sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==
+  dependencies:
+    "@babel/types" "^7.0.0"
+    "@jest/types" "^25.5.0"
+    "@types/prettier" "^1.19.0"
+    chalk "^3.0.0"
+    expect "^25.5.0"
+    graceful-fs "^4.2.4"
+    jest-diff "^25.5.0"
+    jest-get-type "^25.2.6"
+    jest-matcher-utils "^25.5.0"
+    jest-message-util "^25.5.0"
+    jest-resolve "^25.5.1"
+    make-dir "^3.0.0"
+    natural-compare "^1.4.0"
+    pretty-format "^25.5.0"
+    semver "^6.3.0"
+
+jest-snapshot@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.6.2.tgz#f3b0af1acb223316850bd14e1beea9837fb39c84"
+  integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==
+  dependencies:
+    "@babel/types" "^7.0.0"
+    "@jest/types" "^26.6.2"
+    "@types/babel__traverse" "^7.0.4"
+    "@types/prettier" "^2.0.0"
+    chalk "^4.0.0"
+    expect "^26.6.2"
+    graceful-fs "^4.2.4"
+    jest-diff "^26.6.2"
+    jest-get-type "^26.3.0"
+    jest-haste-map "^26.6.2"
+    jest-matcher-utils "^26.6.2"
+    jest-message-util "^26.6.2"
+    jest-resolve "^26.6.2"
+    natural-compare "^1.4.0"
+    pretty-format "^26.6.2"
+    semver "^7.3.2"
+
+jest-util@^24.9.0:
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162"
+  integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==
+  dependencies:
+    "@jest/console" "^24.9.0"
+    "@jest/fake-timers" "^24.9.0"
+    "@jest/source-map" "^24.9.0"
+    "@jest/test-result" "^24.9.0"
+    "@jest/types" "^24.9.0"
+    callsites "^3.0.0"
+    chalk "^2.0.1"
+    graceful-fs "^4.1.15"
+    is-ci "^2.0.0"
+    mkdirp "^0.5.1"
+    slash "^2.0.0"
+    source-map "^0.6.0"
+
+jest-util@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.5.0.tgz#31c63b5d6e901274d264a4fec849230aa3fa35b0"
+  integrity sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    chalk "^3.0.0"
+    graceful-fs "^4.2.4"
+    is-ci "^2.0.0"
+    make-dir "^3.0.0"
+
+jest-util@^26.1.0, jest-util@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1"
+  integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+    chalk "^4.0.0"
+    graceful-fs "^4.2.4"
+    is-ci "^2.0.0"
+    micromatch "^4.0.2"
+
+jest-validate@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-25.5.0.tgz#fb4c93f332c2e4cf70151a628e58a35e459a413a"
+  integrity sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    camelcase "^5.3.1"
+    chalk "^3.0.0"
+    jest-get-type "^25.2.6"
+    leven "^3.1.0"
+    pretty-format "^25.5.0"
+
+jest-validate@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec"
+  integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    camelcase "^6.0.0"
+    chalk "^4.0.0"
+    jest-get-type "^26.3.0"
+    leven "^3.1.0"
+    pretty-format "^26.6.2"
+
+jest-watcher@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-25.5.0.tgz#d6110d101df98badebe435003956fd4a465e8456"
+  integrity sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q==
+  dependencies:
+    "@jest/test-result" "^25.5.0"
+    "@jest/types" "^25.5.0"
+    ansi-escapes "^4.2.1"
+    chalk "^3.0.0"
+    jest-util "^25.5.0"
+    string-length "^3.1.0"
+
+jest-watcher@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.6.2.tgz#a5b683b8f9d68dbcb1d7dae32172d2cca0592975"
+  integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==
+  dependencies:
+    "@jest/test-result" "^26.6.2"
+    "@jest/types" "^26.6.2"
+    "@types/node" "*"
+    ansi-escapes "^4.2.1"
+    chalk "^4.0.0"
+    jest-util "^26.6.2"
+    string-length "^4.0.1"
+
+jest-worker@^24.9.0:
+  version "24.9.0"
+  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5"
+  integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
+  dependencies:
+    merge-stream "^2.0.0"
+    supports-color "^6.1.0"
+
+jest-worker@^25.1.0:
+  version "25.2.1"
+  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.2.1.tgz#209617015c768652646aa33a7828cc2ab472a18a"
+  integrity sha512-IHnpekk8H/hCUbBlfeaPZzU6v75bqwJp3n4dUrQuQOAgOneI4tx3jV2o8pvlXnDfcRsfkFIUD//HWXpCmR+evQ==
+  dependencies:
+    merge-stream "^2.0.0"
+    supports-color "^7.0.0"
+
+jest-worker@^25.4.0, jest-worker@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1"
+  integrity sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==
+  dependencies:
+    merge-stream "^2.0.0"
+    supports-color "^7.0.0"
+
+jest-worker@^26.2.1, jest-worker@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
+  integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
+  dependencies:
+    "@types/node" "*"
+    merge-stream "^2.0.0"
+    supports-color "^7.0.0"
+
+jest@^25.5.4:
+  version "25.5.4"
+  resolved "https://registry.yarnpkg.com/jest/-/jest-25.5.4.tgz#f21107b6489cfe32b076ce2adcadee3587acb9db"
+  integrity sha512-hHFJROBTqZahnO+X+PMtT6G2/ztqAZJveGqz//FnWWHurizkD05PQGzRZOhF3XP6z7SJmL+5tCfW8qV06JypwQ==
+  dependencies:
+    "@jest/core" "^25.5.4"
+    import-local "^3.0.2"
+    jest-cli "^25.5.4"
+
+jest@^26.0.1, jest@^26.6.3:
+  version "26.6.3"
+  resolved "https://registry.yarnpkg.com/jest/-/jest-26.6.3.tgz#40e8fdbe48f00dfa1f0ce8121ca74b88ac9148ef"
+  integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==
+  dependencies:
+    "@jest/core" "^26.6.3"
+    import-local "^3.0.2"
+    jest-cli "^26.6.3"
+
+jquery@>=1.7, jquery@^3.4.1:
+  version "3.4.1"
+  resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2"
+  integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw==
+
+jquery@^3.5.1:
+  version "3.5.1"
+  resolved "http://localhost:4873/jquery/-/jquery-3.5.1.tgz#d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5"
+  integrity sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg==
+
+js-beautify@^1.8.8:
+  version "1.10.3"
+  resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.10.3.tgz#c73fa10cf69d3dfa52d8ed624f23c64c0a6a94c1"
+  integrity sha512-wfk/IAWobz1TfApSdivH5PJ0miIHgDoYb1ugSqHcODPmaYu46rYe5FVuIEkhjg8IQiv6rDNPyhsqbsohI/C2vQ==
+  dependencies:
+    config-chain "^1.1.12"
+    editorconfig "^0.15.3"
+    glob "^7.1.3"
+    mkdirp "~0.5.1"
+    nopt "~4.0.1"
+
+js-levenshtein@^1.1.6:
+  version "1.1.6"
+  resolved "http://localhost:4873/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
+  integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==
+
+js-string-escape@^1.0.1:
+  version "1.0.1"
+  resolved "http://localhost:4873/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef"
+  integrity sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=
+
+"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
+  integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+
+js-tokens@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
+  integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
+
+js-yaml@^3.10.0, js-yaml@^3.13.1:
+  version "3.13.1"
+  resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
+  integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
+  dependencies:
+    argparse "^1.0.7"
+    esprima "^4.0.0"
+
+jsbn@~0.1.0:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
+  integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
+
+jsdom@^11.5.1:
+  version "11.12.0"
+  resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8"
+  integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==
+  dependencies:
+    abab "^2.0.0"
+    acorn "^5.5.3"
+    acorn-globals "^4.1.0"
+    array-equal "^1.0.0"
+    cssom ">= 0.3.2 < 0.4.0"
+    cssstyle "^1.0.0"
+    data-urls "^1.0.0"
+    domexception "^1.0.1"
+    escodegen "^1.9.1"
+    html-encoding-sniffer "^1.0.2"
+    left-pad "^1.3.0"
+    nwsapi "^2.0.7"
+    parse5 "4.0.0"
+    pn "^1.1.0"
+    request "^2.87.0"
+    request-promise-native "^1.0.5"
+    sax "^1.2.4"
+    symbol-tree "^3.2.2"
+    tough-cookie "^2.3.4"
+    w3c-hr-time "^1.0.1"
+    webidl-conversions "^4.0.2"
+    whatwg-encoding "^1.0.3"
+    whatwg-mimetype "^2.1.0"
+    whatwg-url "^6.4.1"
+    ws "^5.2.0"
+    xml-name-validator "^3.0.0"
+
+jsdom@^15.2.1:
+  version "15.2.1"
+  resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5"
+  integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==
+  dependencies:
+    abab "^2.0.0"
+    acorn "^7.1.0"
+    acorn-globals "^4.3.2"
+    array-equal "^1.0.0"
+    cssom "^0.4.1"
+    cssstyle "^2.0.0"
+    data-urls "^1.1.0"
+    domexception "^1.0.1"
+    escodegen "^1.11.1"
+    html-encoding-sniffer "^1.0.2"
+    nwsapi "^2.2.0"
+    parse5 "5.1.0"
+    pn "^1.1.0"
+    request "^2.88.0"
+    request-promise-native "^1.0.7"
+    saxes "^3.1.9"
+    symbol-tree "^3.2.2"
+    tough-cookie "^3.0.1"
+    w3c-hr-time "^1.0.1"
+    w3c-xmlserializer "^1.1.2"
+    webidl-conversions "^4.0.2"
+    whatwg-encoding "^1.0.5"
+    whatwg-mimetype "^2.3.0"
+    whatwg-url "^7.0.0"
+    ws "^7.0.0"
+    xml-name-validator "^3.0.0"
+
+jsdom@^16.4.0:
+  version "16.4.0"
+  resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb"
+  integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==
+  dependencies:
+    abab "^2.0.3"
+    acorn "^7.1.1"
+    acorn-globals "^6.0.0"
+    cssom "^0.4.4"
+    cssstyle "^2.2.0"
+    data-urls "^2.0.0"
+    decimal.js "^10.2.0"
+    domexception "^2.0.1"
+    escodegen "^1.14.1"
+    html-encoding-sniffer "^2.0.1"
+    is-potential-custom-element-name "^1.0.0"
+    nwsapi "^2.2.0"
+    parse5 "5.1.1"
+    request "^2.88.2"
+    request-promise-native "^1.0.8"
+    saxes "^5.0.0"
+    symbol-tree "^3.2.4"
+    tough-cookie "^3.0.1"
+    w3c-hr-time "^1.0.2"
+    w3c-xmlserializer "^2.0.0"
+    webidl-conversions "^6.1.0"
+    whatwg-encoding "^1.0.5"
+    whatwg-mimetype "^2.3.0"
+    whatwg-url "^8.0.0"
+    ws "^7.2.3"
+    xml-name-validator "^3.0.0"
+
+jsesc@^2.5.1:
+  version "2.5.2"
+  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
+  integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+
+jsesc@~0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
+  integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
+
+json-bigint@^1.0.0:
+  version "1.0.0"
+  resolved "http://localhost:4873/json-bigint/-/json-bigint-1.0.0.tgz#ae547823ac0cad8398667f8cd9ef4730f5b01ff1"
+  integrity sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==
+  dependencies:
+    bignumber.js "^9.0.0"
+
+json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
+  integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
+
+json-schema-traverse@^0.4.1:
+  version "0.4.1"
+  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+  integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
+
+json-schema-traverse@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
+  integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
+
+json-schema@0.2.3:
+  version "0.2.3"
+  resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
+  integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=
+
+json-stable-stringify-without-jsonify@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
+  integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
+
+json-stringify-pretty-compact@^2.0.0:
+  version "2.0.0"
+  resolved "http://localhost:4873/json-stringify-pretty-compact/-/json-stringify-pretty-compact-2.0.0.tgz#e77c419f52ff00c45a31f07f4c820c2433143885"
+  integrity sha512-WRitRfs6BGq4q8gTgOy4ek7iPFXjbra0H3PmDLKm2xnZ+Gh1HUhiKGgCZkSPNULlP7mvfu6FV/mOLhCarspADQ==
+
+json-stringify-safe@5.0.x, json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
+  integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
+
+json2mq@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/json2mq/-/json2mq-0.2.0.tgz#b637bd3ba9eabe122c83e9720483aeb10d2c904a"
+  integrity sha1-tje9O6nqvhIsg+lyBIOusQ0skEo=
+  dependencies:
+    string-convert "^0.2.0"
+
+json3@^3.3.2:
+  version "3.3.3"
+  resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"
+  integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==
+
+json5@2.x, json5@^2.1.1, json5@^2.1.2:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.2.tgz#43ef1f0af9835dd624751a6b7fa48874fb2d608e"
+  integrity sha512-MoUOQ4WdiN3yxhm7NEVJSJrieAo5hNSLQ5sj05OTRHPL9HOBy8u4Bu88jsC1jvqAdN+E1bJmsUcZH+1HQxliqQ==
+  dependencies:
+    minimist "^1.2.5"
+
+json5@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
+  integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
+  dependencies:
+    minimist "^1.2.0"
+
+jsonfile@^2.1.0:
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
+  integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
+  optionalDependencies:
+    graceful-fs "^4.1.6"
+
+jsonfile@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
+  integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=
+  optionalDependencies:
+    graceful-fs "^4.1.6"
+
+jsonfile@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.0.1.tgz#98966cba214378c8c84b82e085907b40bf614179"
+  integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==
+  dependencies:
+    universalify "^1.0.0"
+  optionalDependencies:
+    graceful-fs "^4.1.6"
+
+jsonify@~0.0.0:
+  version "0.0.0"
+  resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
+  integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
+
+jsonparse@^1.2.0:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
+  integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=
+
+jsprim@^1.2.2:
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
+  integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
+  dependencies:
+    assert-plus "1.0.0"
+    extsprintf "1.3.0"
+    json-schema "0.2.3"
+    verror "1.10.0"
+
+"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.1.0.tgz#642f1d7b88aa6d7eb9d8f2210e166478444fa891"
+  integrity sha512-d4/UOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx/HzGgm9qnA147jVBdpOiQ2RA==
+  dependencies:
+    array-includes "^3.1.1"
+    object.assign "^4.1.1"
+
+junit-report-builder@2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/junit-report-builder/-/junit-report-builder-2.1.0.tgz#7089dd8ae547657509b9a5eb7b5082bde22bcc7e"
+  integrity sha512-Ioj5I4w18ZcHFaaisqCKdh1z+ipzN7sA2JB+h+WOlGcOMWm0FFN1dfxkgc2I4EXfhSP/mOfM3W43uFzEdz4sTw==
+  dependencies:
+    date-format "0.0.2"
+    lodash "^4.17.15"
+    make-dir "^1.3.0"
+    xmlbuilder "^10.0.0"
+
+junk@^3.1.0:
+  version "3.1.0"
+  resolved "http://localhost:4873/junk/-/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1"
+  integrity sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==
+
+just-extend@^4.0.2:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.1.0.tgz#7278a4027d889601640ee0ce0e5a00b992467da4"
+  integrity sha512-ApcjaOdVTJ7y4r08xI5wIqpvwS48Q0PBG4DJROcEkH1f8MdAiNFyFxz3xoL0LWAVwjrwPYZdVHHxhRHcx/uGLA==
+
+kdbush@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-2.0.1.tgz#90c6128e3001ac68c550d7c9e2f222c0269666f1"
+  integrity sha512-9KqSdmWCkBIisFIGclT0FRagKhI7IVbMyUjsxCFG0Ly1Dg6whlxJ7b9lrq8ifk3X/fGeJzok1R75LQfZTfA5zQ==
+
+kdbush@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-3.0.0.tgz#f8484794d47004cc2d85ed3a79353dbe0abc2bf0"
+  integrity sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==
+
+keycode@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/keycode/-/keycode-2.2.0.tgz#3d0af56dc7b8b8e5cba8d0a97f107204eec22b04"
+  integrity sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ=
+
+killable@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892"
+  integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==
+
+kind-of@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5"
+  integrity sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=
+  dependencies:
+    is-buffer "^1.0.2"
+
+kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
+  version "3.2.2"
+  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
+  integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
+  dependencies:
+    is-buffer "^1.1.5"
+
+kind-of@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
+  integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
+  dependencies:
+    is-buffer "^1.1.5"
+
+kind-of@^5.0.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
+  integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
+
+kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
+  integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
+
+klaw@^1.0.0:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
+  integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk=
+  optionalDependencies:
+    graceful-fs "^4.1.9"
+
+kleur@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
+  integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
+
+language-subtag-registry@~0.3.2:
+  version "0.3.21"
+  resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
+  integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
+
+language-tags@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
+  integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=
+  dependencies:
+    language-subtag-registry "~0.3.2"
+
+last-call-webpack-plugin@^3.0.0:
+  version "3.0.0"
+  resolved "http://localhost:4873/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555"
+  integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==
+  dependencies:
+    lodash "^4.17.5"
+    webpack-sources "^1.1.0"
+
+lazy-cache@^0.2.3:
+  version "0.2.7"
+  resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65"
+  integrity sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=
+
+lazy-cache@^1.0.3:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
+  integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4=
+
+lazy-cache@^2.0.1:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264"
+  integrity sha1-uRkKT5EzVGlIQIWfio9whNiCImQ=
+  dependencies:
+    set-getter "^0.1.0"
+
+lazy-universal-dotenv@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/lazy-universal-dotenv/-/lazy-universal-dotenv-3.0.1.tgz#a6c8938414bca426ab8c9463940da451a911db38"
+  integrity sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==
+  dependencies:
+    "@babel/runtime" "^7.5.0"
+    app-root-dir "^1.0.2"
+    core-js "^3.0.4"
+    dotenv "^8.0.0"
+    dotenv-expand "^5.1.0"
+
+lcid@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
+  integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=
+  dependencies:
+    invert-kv "^1.0.0"
+
+lcid@^3.0.0:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/lcid/-/lcid-3.1.1.tgz#9030ec479a058fc36b5e8243ebaac8b6ac582fd0"
+  integrity sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==
+  dependencies:
+    invert-kv "^3.0.0"
+
+left-pad@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
+  integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==
+
+lerna@^3.15.0:
+  version "3.22.1"
+  resolved "https://registry.yarnpkg.com/lerna/-/lerna-3.22.1.tgz#82027ac3da9c627fd8bf02ccfeff806a98e65b62"
+  integrity sha512-vk1lfVRFm+UuEFA7wkLKeSF7Iz13W+N/vFd48aW2yuS7Kv0RbNm2/qcDPV863056LMfkRlsEe+QYOw3palj5Lg==
+  dependencies:
+    "@lerna/add" "3.21.0"
+    "@lerna/bootstrap" "3.21.0"
+    "@lerna/changed" "3.21.0"
+    "@lerna/clean" "3.21.0"
+    "@lerna/cli" "3.18.5"
+    "@lerna/create" "3.22.0"
+    "@lerna/diff" "3.21.0"
+    "@lerna/exec" "3.21.0"
+    "@lerna/import" "3.22.0"
+    "@lerna/info" "3.21.0"
+    "@lerna/init" "3.21.0"
+    "@lerna/link" "3.21.0"
+    "@lerna/list" "3.21.0"
+    "@lerna/publish" "3.22.1"
+    "@lerna/run" "3.21.0"
+    "@lerna/version" "3.22.1"
+    import-local "^2.0.0"
+    npmlog "^4.1.2"
+
+less-loader@^5.0.0:
+  version "5.0.0"
+  resolved "http://localhost:4873/less-loader/-/less-loader-5.0.0.tgz#498dde3a6c6c4f887458ee9ed3f086a12ad1b466"
+  integrity sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==
+  dependencies:
+    clone "^2.1.1"
+    loader-utils "^1.1.0"
+    pify "^4.0.1"
+
+less@^3.12.2:
+  version "3.13.1"
+  resolved "http://localhost:4873/less/-/less-3.13.1.tgz#0ebc91d2a0e9c0c6735b83d496b0ab0583077909"
+  integrity sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==
+  dependencies:
+    copy-anything "^2.0.1"
+    tslib "^1.10.0"
+  optionalDependencies:
+    errno "^0.1.1"
+    graceful-fs "^4.1.2"
+    image-size "~0.5.0"
+    make-dir "^2.1.0"
+    mime "^1.4.1"
+    native-request "^1.0.5"
+    source-map "~0.6.0"
+
+leven@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
+  integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
+
+levn@^0.4.1:
+  version "0.4.1"
+  resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
+  integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
+  dependencies:
+    prelude-ls "^1.2.1"
+    type-check "~0.4.0"
+
+levn@~0.3.0:
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
+  integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
+  dependencies:
+    prelude-ls "~1.1.2"
+    type-check "~0.3.2"
+
+lines-and-columns@^1.1.6:
+  version "1.1.6"
+  resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
+  integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
+
+lint-staged@^10.0.3:
+  version "10.2.11"
+  resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.2.11.tgz#713c80877f2dc8b609b05bc59020234e766c9720"
+  integrity sha512-LRRrSogzbixYaZItE2APaS4l2eJMjjf5MbclRZpLJtcQJShcvUzKXsNeZgsLIZ0H0+fg2tL4B59fU9wHIHtFIA==
+  dependencies:
+    chalk "^4.0.0"
+    cli-truncate "2.1.0"
+    commander "^5.1.0"
+    cosmiconfig "^6.0.0"
+    debug "^4.1.1"
+    dedent "^0.7.0"
+    enquirer "^2.3.5"
+    execa "^4.0.1"
+    listr2 "^2.1.0"
+    log-symbols "^4.0.0"
+    micromatch "^4.0.2"
+    normalize-path "^3.0.0"
+    please-upgrade-node "^3.2.0"
+    string-argv "0.3.1"
+    stringify-object "^3.3.0"
+
+listr-silent-renderer@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e"
+  integrity sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=
+
+listr-update-renderer@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2"
+  integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==
+  dependencies:
+    chalk "^1.1.3"
+    cli-truncate "^0.2.1"
+    elegant-spinner "^1.0.1"
+    figures "^1.7.0"
+    indent-string "^3.0.0"
+    log-symbols "^1.0.2"
+    log-update "^2.3.0"
+    strip-ansi "^3.0.1"
+
+listr-verbose-renderer@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db"
+  integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==
+  dependencies:
+    chalk "^2.4.1"
+    cli-cursor "^2.1.0"
+    date-fns "^1.27.2"
+    figures "^2.0.0"
+
+listr2@^2.1.0:
+  version "2.1.3"
+  resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.1.3.tgz#f527e197de12ad8c488c566921fa2da34cbc67f6"
+  integrity sha512-6oy3QhrZAlJGrG8oPcRp1hix1zUpb5AvyvZ5je979HCyf48tIj3Hn1TG5+rfyhz30t7HfySH/OIaVbwrI2kruA==
+  dependencies:
+    chalk "^4.0.0"
+    cli-truncate "^2.1.0"
+    figures "^3.2.0"
+    indent-string "^4.0.0"
+    log-update "^4.0.0"
+    p-map "^4.0.0"
+    rxjs "^6.5.5"
+    through "^2.3.8"
+
+listr@0.14.3:
+  version "0.14.3"
+  resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586"
+  integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==
+  dependencies:
+    "@samverschueren/stream-to-observable" "^0.3.0"
+    is-observable "^1.1.0"
+    is-promise "^2.1.0"
+    is-stream "^1.1.0"
+    listr-silent-renderer "^1.1.1"
+    listr-update-renderer "^0.5.0"
+    listr-verbose-renderer "^0.5.0"
+    p-map "^2.0.0"
+    rxjs "^6.3.3"
+
+load-json-file@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
+  integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=
+  dependencies:
+    graceful-fs "^4.1.2"
+    parse-json "^2.2.0"
+    pify "^2.0.0"
+    pinkie-promise "^2.0.0"
+    strip-bom "^2.0.0"
+
+load-json-file@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
+  integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=
+  dependencies:
+    graceful-fs "^4.1.2"
+    parse-json "^2.2.0"
+    pify "^2.0.0"
+    strip-bom "^3.0.0"
+
+load-json-file@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
+  integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
+  dependencies:
+    graceful-fs "^4.1.2"
+    parse-json "^4.0.0"
+    pify "^3.0.0"
+    strip-bom "^3.0.0"
+
+load-json-file@^5.3.0:
+  version "5.3.0"
+  resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-5.3.0.tgz#4d3c1e01fa1c03ea78a60ac7af932c9ce53403f3"
+  integrity sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==
+  dependencies:
+    graceful-fs "^4.1.15"
+    parse-json "^4.0.0"
+    pify "^4.0.1"
+    strip-bom "^3.0.0"
+    type-fest "^0.3.0"
+
+loader-runner@^2.3.0, loader-runner@^2.4.0:
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
+  integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
+
+loader-utils@1.2.3:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
+  integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
+  dependencies:
+    big.js "^5.2.2"
+    emojis-list "^2.0.0"
+    json5 "^1.0.1"
+
+loader-utils@2.0.0, loader-utils@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
+  integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
+  dependencies:
+    big.js "^5.2.2"
+    emojis-list "^3.0.0"
+    json5 "^2.1.2"
+
+loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
+  integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
+  dependencies:
+    big.js "^5.2.2"
+    emojis-list "^3.0.0"
+    json5 "^1.0.1"
+
+locate-path@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
+  integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
+  dependencies:
+    p-locate "^2.0.0"
+    path-exists "^3.0.0"
+
+locate-path@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
+  integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
+  dependencies:
+    p-locate "^3.0.0"
+    path-exists "^3.0.0"
+
+locate-path@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
+  integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
+  dependencies:
+    p-locate "^4.1.0"
+
+lodash-es@^4.17.14, lodash-es@^4.17.15, lodash-es@^4.2.1:
+  version "4.17.20"
+  resolved "http://localhost:4873/lodash-es/-/lodash-es-4.17.20.tgz#29f6332eefc60e849f869c264bc71126ad61e8f7"
+  integrity sha512-JD1COMZsq8maT6mnuz1UMV0jvYD0E0aUsSOdrr1/nAG3dhqQXwRRgeW0cSqH1U43INKcqxaiVIQNOUDld7gRDA==
+
+lodash._baseisequal@^3.0.0:
+  version "3.0.7"
+  resolved "https://registry.yarnpkg.com/lodash._baseisequal/-/lodash._baseisequal-3.0.7.tgz#d8025f76339d29342767dcc887ce5cb95a5b51f1"
+  integrity sha1-2AJfdjOdKTQnZ9zIh85cuVpbUfE=
+  dependencies:
+    lodash.isarray "^3.0.0"
+    lodash.istypedarray "^3.0.0"
+    lodash.keys "^3.0.0"
+
+lodash._bindcallback@^3.0.0:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e"
+  integrity sha1-5THCdkTPi1epnhftlbNcdIeJOS4=
+
+lodash._getnative@^3.0.0:
+  version "3.9.1"
+  resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5"
+  integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=
+
+lodash._reinterpolate@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
+  integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
+
+lodash.camelcase@^4.3.0:
+  version "4.3.0"
+  resolved "http://localhost:4873/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
+  integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY=
+
+lodash.clonedeep@^4.5.0:
+  version "4.5.0"
+  resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
+  integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
+
+lodash.curry@^4.0.1:
+  version "4.1.1"
+  resolved "http://localhost:4873/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170"
+  integrity sha1-JI42By7ekGUB11lmIAqG2riyMXA=
+
+lodash.debounce@^4.0.8:
+  version "4.0.8"
+  resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
+  integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
+
+lodash.escape@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98"
+  integrity sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=
+
+lodash.flattendeep@^4.4.0:
+  version "4.4.0"
+  resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2"
+  integrity sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=
+
+lodash.flow@^3.3.0:
+  version "3.5.0"
+  resolved "http://localhost:4873/lodash.flow/-/lodash.flow-3.5.0.tgz#87bf40292b8cf83e4e8ce1a3ae4209e20071675a"
+  integrity sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o=
+
+lodash.get@^4.4.2:
+  version "4.4.2"
+  resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
+  integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=
+
+lodash.isarguments@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
+  integrity sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=
+
+lodash.isarray@^3.0.0:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
+  integrity sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=
+
+lodash.isequal@^3.0:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-3.0.4.tgz#1c35eb3b6ef0cd1ff51743e3ea3cf7fdffdacb64"
+  integrity sha1-HDXrO27wzR/1F0Pj6jz3/f/ay2Q=
+  dependencies:
+    lodash._baseisequal "^3.0.0"
+    lodash._bindcallback "^3.0.0"
+
+lodash.isequal@^4.1.1, lodash.isequal@^4.5.0:
+  version "4.5.0"
+  resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
+  integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA=
+
+lodash.ismatch@^4.4.0:
+  version "4.4.0"
+  resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37"
+  integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=
+
+lodash.isplainobject@^4.0.6:
+  version "4.0.6"
+  resolved "http://localhost:4873/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
+  integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=
+
+lodash.istypedarray@^3.0.0:
+  version "3.0.6"
+  resolved "https://registry.yarnpkg.com/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz#c9a477498607501d8e8494d283b87c39281cef62"
+  integrity sha1-yaR3SYYHUB2OhJTSg7h8OSgc72I=
+
+lodash.keys@^3.0.0:
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a"
+  integrity sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=
+  dependencies:
+    lodash._getnative "^3.0.0"
+    lodash.isarguments "^3.0.0"
+    lodash.isarray "^3.0.0"
+
+lodash.map@^4.5.1:
+  version "4.6.0"
+  resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"
+  integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=
+
+lodash.memoize@4.x, lodash.memoize@^4.1.2:
+  version "4.1.2"
+  resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
+  integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
+
+lodash.set@^4.3.2:
+  version "4.3.2"
+  resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23"
+  integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=
+
+lodash.sortby@^4.7.0:
+  version "4.7.0"
+  resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
+  integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
+
+lodash.template@^4.0.2, lodash.template@^4.5.0:
+  version "4.5.0"
+  resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
+  integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
+  dependencies:
+    lodash._reinterpolate "^3.0.0"
+    lodash.templatesettings "^4.0.0"
+
+lodash.templatesettings@^4.0.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33"
+  integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
+  dependencies:
+    lodash._reinterpolate "^3.0.0"
+
+lodash.throttle@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
+  integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=
+
+lodash.uniq@4.5.0, lodash.uniq@^4.5.0:
+  version "4.5.0"
+  resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
+  integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
+
+lodash.zip@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020"
+  integrity sha1-7GZi5IlkCO1KtsVCo5kLcswIACA=
+
+lodash@4.17.11:
+  version "4.17.11"
+  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
+  integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
+
+lodash@4.17.14:
+  version "4.17.14"
+  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba"
+  integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==
+
+"lodash@>=3.5 <5", lodash@^4.0.1, lodash@^4.0.8, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.2.1:
+  version "4.17.20"
+  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
+  integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
+
+log-symbols@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
+  integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=
+  dependencies:
+    chalk "^1.0.0"
+
+log-symbols@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
+  integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
+  dependencies:
+    chalk "^2.0.1"
+
+log-symbols@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920"
+  integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==
+  dependencies:
+    chalk "^4.0.0"
+
+log-update@^2.3.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708"
+  integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg=
+  dependencies:
+    ansi-escapes "^3.0.0"
+    cli-cursor "^2.0.0"
+    wrap-ansi "^3.0.1"
+
+log-update@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1"
+  integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==
+  dependencies:
+    ansi-escapes "^4.3.0"
+    cli-cursor "^3.1.0"
+    slice-ansi "^4.0.0"
+    wrap-ansi "^6.2.0"
+
+loglevel@^1.6.8:
+  version "1.7.1"
+  resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz#005fde2f5e6e47068f935ff28573e125ef72f197"
+  integrity sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==
+
+lolex@^5.0.0:
+  version "5.1.2"
+  resolved "https://registry.yarnpkg.com/lolex/-/lolex-5.1.2.tgz#953694d098ce7c07bc5ed6d0e42bc6c0c6d5a367"
+  integrity sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==
+  dependencies:
+    "@sinonjs/commons" "^1.7.0"
+
+long@^3.2.0:
+  version "3.2.0"
+  resolved "http://localhost:4873/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b"
+  integrity sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s=
+
+longest@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
+  integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=
+
+loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.0, loose-envify@^1.3.1, loose-envify@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
+  integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
+  dependencies:
+    js-tokens "^3.0.0 || ^4.0.0"
+
+loud-rejection@^1.0.0:
+  version "1.6.0"
+  resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
+  integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=
+  dependencies:
+    currently-unhandled "^0.4.1"
+    signal-exit "^3.0.0"
+
+lower-case-first@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-1.0.2.tgz#e5da7c26f29a7073be02d52bac9980e5922adfa1"
+  integrity sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E=
+  dependencies:
+    lower-case "^1.1.2"
+
+lower-case@^1.1.0, lower-case@^1.1.1, lower-case@^1.1.2:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"
+  integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw=
+
+lower-case@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz#39eeb36e396115cc05e29422eaea9e692c9408c7"
+  integrity sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ==
+  dependencies:
+    tslib "^1.10.0"
+
+lowercase-keys@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
+  integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
+
+lowlight@^1.14.0:
+  version "1.18.0"
+  resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.18.0.tgz#cfff11cfb125ca66f1c12cb43d27fff68cbeafa9"
+  integrity sha512-Zlc3GqclU71HRw5fTOy00zz5EOlqAdKMYhOFIO8ay4SQEDQgFuhR8JNwDIzAGMLoqTsWxe0elUNmq5o2USRAzw==
+  dependencies:
+    fault "^1.0.0"
+    highlight.js "~10.5.0"
+
+lowlight@^1.17.0:
+  version "1.19.0"
+  resolved "http://localhost:4873/lowlight/-/lowlight-1.19.0.tgz#b8544199cafcf10c5731b21c7458c358f79a2a97"
+  integrity sha512-NIskvQ1d1ovKyUytkMpT8+8Bhq3Ub54os1Xp4RAC9uNbXH1YVRf5NERq7JNzapEe5BzUc1Cj4F0I+eLBBFj6hA==
+  dependencies:
+    fault "^1.0.0"
+    highlight.js "~10.6.0"
+
+lowlight@~1.11.0:
+  version "1.11.0"
+  resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.11.0.tgz#1304d83005126d4e8b1dc0f07981e9b689ec2efc"
+  integrity sha512-xrGGN6XLL7MbTMdPD6NfWPwY43SNkjf/d0mecSx/CW36fUZTjRHEq0/Cdug3TWKtRXLWi7iMl1eP0olYxj/a4A==
+  dependencies:
+    fault "^1.0.2"
+    highlight.js "~9.13.0"
+
+lru-cache@^4.0.1, lru-cache@^4.1.5:
+  version "4.1.5"
+  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
+  integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
+  dependencies:
+    pseudomap "^1.0.2"
+    yallist "^2.1.2"
+
+lru-cache@^5.1.1:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+  integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+  dependencies:
+    yallist "^3.0.2"
+
+lru-cache@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
+  integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
+  dependencies:
+    yallist "^4.0.0"
+
+lz-string@^1.4.4:
+  version "1.4.4"
+  resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26"
+  integrity sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=
+
+macos-release@^2.2.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.3.0.tgz#eb1930b036c0800adebccd5f17bc4c12de8bb71f"
+  integrity sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA==
+
+magic-string@^0.22.4:
+  version "0.22.5"
+  resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e"
+  integrity sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==
+  dependencies:
+    vlq "^0.2.2"
+
+make-dir@^1.0.0, make-dir@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
+  integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==
+  dependencies:
+    pify "^3.0.0"
+
+make-dir@^2.0.0, make-dir@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
+  integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+  dependencies:
+    pify "^4.0.1"
+    semver "^5.6.0"
+
+make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
+  integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
+  dependencies:
+    semver "^6.0.0"
+
+make-error@1.x:
+  version "1.3.6"
+  resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
+  integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
+
+make-fetch-happen@^5.0.0:
+  version "5.0.2"
+  resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-5.0.2.tgz#aa8387104f2687edca01c8687ee45013d02d19bd"
+  integrity sha512-07JHC0r1ykIoruKO8ifMXu+xEU8qOXDFETylktdug6vJDACnP+HKevOu3PXyNPzFyTSlz8vrBYlBO1JZRe8Cag==
+  dependencies:
+    agentkeepalive "^3.4.1"
+    cacache "^12.0.0"
+    http-cache-semantics "^3.8.1"
+    http-proxy-agent "^2.1.0"
+    https-proxy-agent "^2.2.3"
+    lru-cache "^5.1.1"
+    mississippi "^3.0.0"
+    node-fetch-npm "^2.0.2"
+    promise-retry "^1.1.1"
+    socks-proxy-agent "^4.0.0"
+    ssri "^6.0.0"
+
+makeerror@1.0.x:
+  version "1.0.11"
+  resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
+  integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
+  dependencies:
+    tmpl "1.0.x"
+
+map-age-cleaner@^0.1.3:
+  version "0.1.3"
+  resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
+  integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==
+  dependencies:
+    p-defer "^1.0.0"
+
+map-cache@^0.2.2:
+  version "0.2.2"
+  resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
+  integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
+
+map-obj@^1.0.0, map-obj@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
+  integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=
+
+map-obj@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9"
+  integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk=
+
+map-obj@^4.0.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.1.0.tgz#b91221b542734b9f14256c0132c897c5d7256fd5"
+  integrity sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==
+
+map-or-similar@^1.5.0:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08"
+  integrity sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=
+
+map-visit@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
+  integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
+  dependencies:
+    object-visit "^1.0.0"
+
+mapbox-gl@^0.53.0:
+  version "0.53.1"
+  resolved "https://registry.yarnpkg.com/mapbox-gl/-/mapbox-gl-0.53.1.tgz#08a956d8da54b04bc7f29ab1319bddb9c97ddedf"
+  integrity sha512-dTtW/qlkUowKGlqOhE8fqII2Tj4lcokvlZwUDLnkjy4uQ9zMFnVBULGeSzzTVkj9HtQZ3Zbey10/jmoVPV9t5w==
+  dependencies:
+    "@mapbox/geojson-rewind" "^0.4.0"
+    "@mapbox/geojson-types" "^1.0.2"
+    "@mapbox/jsonlint-lines-primitives" "^2.0.2"
+    "@mapbox/mapbox-gl-supported" "^1.4.0"
+    "@mapbox/point-geometry" "^0.1.0"
+    "@mapbox/tiny-sdf" "^1.1.0"
+    "@mapbox/unitbezier" "^0.0.0"
+    "@mapbox/vector-tile" "^1.3.1"
+    "@mapbox/whoots-js" "^3.1.0"
+    csscolorparser "~1.0.2"
+    earcut "^2.1.5"
+    esm "^3.0.84"
+    geojson-vt "^3.2.1"
+    gl-matrix "^3.0.0"
+    grid-index "^1.1.0"
+    minimist "0.0.8"
+    murmurhash-js "^1.0.0"
+    pbf "^3.0.5"
+    potpack "^1.0.1"
+    quickselect "^2.0.0"
+    rw "^1.3.3"
+    supercluster "^6.0.1"
+    tinyqueue "^2.0.0"
+    vt-pbf "^3.1.1"
+
+mapbox-gl@~0.54.0:
+  version "0.54.1"
+  resolved "https://registry.yarnpkg.com/mapbox-gl/-/mapbox-gl-0.54.1.tgz#f666103132df93d4c90d1e96b1c367bad4638db9"
+  integrity sha512-HtY+HobYTHTsFOJ3buTHtNvZv/Tjfp0vararhEWCjI7wQq8XxK16sEpsXucokrAhuu94js4KJylo13bKJx6l0Q==
+  dependencies:
+    "@mapbox/geojson-rewind" "^0.4.0"
+    "@mapbox/geojson-types" "^1.0.2"
+    "@mapbox/jsonlint-lines-primitives" "^2.0.2"
+    "@mapbox/mapbox-gl-supported" "^1.4.0"
+    "@mapbox/point-geometry" "^0.1.0"
+    "@mapbox/tiny-sdf" "^1.1.0"
+    "@mapbox/unitbezier" "^0.0.0"
+    "@mapbox/vector-tile" "^1.3.1"
+    "@mapbox/whoots-js" "^3.1.0"
+    csscolorparser "~1.0.2"
+    earcut "^2.1.5"
+    esm "~3.0.84"
+    geojson-vt "^3.2.1"
+    gl-matrix "^3.0.0"
+    grid-index "^1.1.0"
+    minimist "0.0.8"
+    murmurhash-js "^1.0.0"
+    pbf "^3.0.5"
+    potpack "^1.0.1"
+    quickselect "^2.0.0"
+    rw "^1.3.3"
+    supercluster "^6.0.1"
+    tinyqueue "^2.0.0"
+    vt-pbf "^3.1.1"
+
+markdown-escapes@^1.0.0:
+  version "1.0.4"
+  resolved "http://localhost:4873/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535"
+  integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==
+
+markdown-to-jsx@^6.11.4:
+  version "6.11.4"
+  resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz#b4528b1ab668aef7fe61c1535c27e837819392c5"
+  integrity sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==
+  dependencies:
+    prop-types "^15.6.2"
+    unquote "^1.1.0"
+
+marked@^0.3.12:
+  version "0.3.19"
+  resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790"
+  integrity sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==
+
+marksy@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/marksy/-/marksy-8.0.0.tgz#b595f121fd47058df9dda1448f6ee156ab48810a"
+  integrity sha512-mmHcKZojCQAGuKTuu3153viXdCuxUmsSxomFaSOBTkOlfWFOZBmDhmJkOp0CsPMNRQ7m6oN2wflvAHLpBNZVPw==
+  dependencies:
+    "@babel/standalone" "^7.4.5"
+    he "^1.2.0"
+    marked "^0.3.12"
+
+match-sorter@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-6.1.0.tgz#7fec6808d94311a35fef7fd842a11634f2361bd7"
+  integrity sha512-sKPMf4kbF7Dm5Crx0bbfLpokK68PUJ/0STUIOPa1ZmTZEA3lCaPK3gapQR573oLmvdkTfGojzySkIwuq6Z6xRQ==
+  dependencies:
+    "@babel/runtime" "^7.12.5"
+    remove-accents "0.4.2"
+
+material-colors@^1.2.1:
+  version "1.2.6"
+  resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.6.tgz#6d1958871126992ceecc72f4bcc4d8f010865f46"
+  integrity sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==
+
+math-expression-evaluator@^1.2.14:
+  version "1.2.22"
+  resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.22.tgz#c14dcb3d8b4d150e5dcea9c68c8dad80309b0d5e"
+  integrity sha512-L0j0tFVZBQQLeEjmWOvDLoRciIY8gQGWahvkztXUal8jH8R5Rlqo9GCvgqvXcy9LQhEWdQCVvzqAbxgYNt4blQ==
+
+math.gl@^2.3.0:
+  version "2.3.3"
+  resolved "http://localhost:4873/math.gl/-/math.gl-2.3.3.tgz#69d07904507145c639835aefcd0ec5e790cd3046"
+  integrity sha512-wZhx7574KHUpJVMzkaQ559zfn3R8iB0BOilwNrfL/fOLQfPo2TPWsKX96PdfS4svKA2XIGi3yfizrv2Redcv0g==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    gl-matrix "^3.0.0"
+
+math.gl@^3.0.0:
+  version "3.4.2"
+  resolved "http://localhost:4873/math.gl/-/math.gl-3.4.2.tgz#1d39b6b9f735b57134c26f079607611dbf4e8c89"
+  integrity sha512-0I77HBiC+q/XRRw807dCwUeMTUotzNQUQZEk0kPd39iRmU67dLId0+OtCGFYjIzyM+gNaj1JWueiOYV/gdl+dQ==
+  dependencies:
+    "@math.gl/core" "3.4.2"
+
+mathfn@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/mathfn/-/mathfn-1.1.0.tgz#5b88048479508cd693a8131125f621d8b75b8352"
+  integrity sha512-glxPY9PZqaoGUySN1QOVnKfnWH4Az2PnHEYMRVWUnR1RZpWTLNzdCm7RxEiEJ0SJ7G95ruF6Q2/1s/LuQnhXyg==
+
+mathjs@^8.0.1:
+  version "8.1.1"
+  resolved "https://registry.yarnpkg.com/mathjs/-/mathjs-8.1.1.tgz#89d6f2fc4a90e9038db3690678a9e1ce563e15ea"
+  integrity sha512-b3TX3EgiZObujjwb8lZnTDLUuivC2jar4ZBjmGJ4stFYCDXx/DNwx5yry5t/z65p9mvejyZel1qoeR05KtChcQ==
+  dependencies:
+    complex.js "^2.0.11"
+    decimal.js "^10.2.1"
+    escape-latex "^1.2.0"
+    fraction.js "^4.0.13"
+    javascript-natural-sort "^0.7.1"
+    seedrandom "^3.0.5"
+    tiny-emitter "^2.1.0"
+    typed-function "^2.0.0"
+
+md5.js@^1.3.4:
+  version "1.3.5"
+  resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
+  integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
+  dependencies:
+    hash-base "^3.0.0"
+    inherits "^2.0.1"
+    safe-buffer "^5.1.2"
+
+md5@^2.1.0:
+  version "2.3.0"
+  resolved "http://localhost:4873/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f"
+  integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==
+  dependencies:
+    charenc "0.0.2"
+    crypt "0.0.2"
+    is-buffer "~1.1.6"
+
+mdast-add-list-metadata@1.0.1:
+  version "1.0.1"
+  resolved "http://localhost:4873/mdast-add-list-metadata/-/mdast-add-list-metadata-1.0.1.tgz#95e73640ce2fc1fa2dcb7ec443d09e2bfe7db4cf"
+  integrity sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==
+  dependencies:
+    unist-util-visit-parents "1.1.2"
+
+mdast-squeeze-paragraphs@^4.0.0:
+  version "4.0.0"
+  resolved "http://localhost:4873/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz#7c4c114679c3bee27ef10b58e2e015be79f1ef97"
+  integrity sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==
+  dependencies:
+    unist-util-remove "^2.0.0"
+
+mdast-util-definitions@^2.0.0:
+  version "2.0.1"
+  resolved "http://localhost:4873/mdast-util-definitions/-/mdast-util-definitions-2.0.1.tgz#2c931d8665a96670639f17f98e32c3afcfee25f3"
+  integrity sha512-Co+DQ6oZlUzvUR7JCpP249PcexxygiaKk9axJh+eRzHDZJk2julbIdKB4PXHVxdBuLzvJ1Izb+YDpj2deGMOuA==
+  dependencies:
+    unist-util-visit "^2.0.0"
+
+mdast-util-definitions@^4.0.0:
+  version "4.0.0"
+  resolved "http://localhost:4873/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2"
+  integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==
+  dependencies:
+    unist-util-visit "^2.0.0"
+
+mdast-util-to-hast@10.0.1:
+  version "10.0.1"
+  resolved "http://localhost:4873/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz#0cfc82089494c52d46eb0e3edb7a4eb2aea021eb"
+  integrity sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==
+  dependencies:
+    "@types/mdast" "^3.0.0"
+    "@types/unist" "^2.0.0"
+    mdast-util-definitions "^4.0.0"
+    mdurl "^1.0.0"
+    unist-builder "^2.0.0"
+    unist-util-generated "^1.0.0"
+    unist-util-position "^3.0.0"
+    unist-util-visit "^2.0.0"
+
+mdast-util-to-string@^1.0.0:
+  version "1.1.0"
+  resolved "http://localhost:4873/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527"
+  integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==
+
+mdn-data@2.0.4:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
+  integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
+
+mdn-data@2.0.6:
+  version "2.0.6"
+  resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978"
+  integrity sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==
+
+mdurl@^1.0.0:
+  version "1.0.1"
+  resolved "http://localhost:4873/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
+  integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=
+
+media-typer@0.3.0:
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
+  integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
+
+mem-fs-editor@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/mem-fs-editor/-/mem-fs-editor-6.0.0.tgz#d63607cf0a52fe6963fc376c6a7aa52db3edabab"
+  integrity sha512-e0WfJAMm8Gv1mP5fEq/Blzy6Lt1VbLg7gNnZmZak7nhrBTibs+c6nQ4SKs/ZyJYHS1mFgDJeopsLAv7Ow0FMFg==
+  dependencies:
+    commondir "^1.0.1"
+    deep-extend "^0.6.0"
+    ejs "^2.6.1"
+    glob "^7.1.4"
+    globby "^9.2.0"
+    isbinaryfile "^4.0.0"
+    mkdirp "^0.5.0"
+    multimatch "^4.0.0"
+    rimraf "^2.6.3"
+    through2 "^3.0.1"
+    vinyl "^2.2.0"
+
+mem-fs@^1.1.0:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/mem-fs/-/mem-fs-1.1.3.tgz#b8ae8d2e3fcb6f5d3f9165c12d4551a065d989cc"
+  integrity sha1-uK6NLj/Lb10/kWXBLUVRoGXZicw=
+  dependencies:
+    through2 "^2.0.0"
+    vinyl "^1.1.0"
+    vinyl-file "^2.0.0"
+
+mem@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
+  integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=
+  dependencies:
+    mimic-fn "^1.0.0"
+
+mem@^5.0.0:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/mem/-/mem-5.1.1.tgz#7059b67bf9ac2c924c9f1cff7155a064394adfb3"
+  integrity sha512-qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw==
+  dependencies:
+    map-age-cleaner "^0.1.3"
+    mimic-fn "^2.1.0"
+    p-is-promise "^2.1.0"
+
+memfs@^3.1.2:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.2.0.tgz#f9438e622b5acd1daa8a4ae160c496fdd1325b26"
+  integrity sha512-f/xxz2TpdKv6uDn6GtHee8ivFyxwxmPuXatBb1FBwxYNuVpbM3k/Y1Z+vC0mH/dIXXrukYfe3qe5J32Dfjg93A==
+  dependencies:
+    fs-monkey "1.0.1"
+
+"memoize-one@>=3.1.1 <6", memoize-one@^5.0.0, memoize-one@^5.1.1:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.1.1.tgz#047b6e3199b508eaec03504de71229b8eb1d75c0"
+  integrity sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==
+
+memoizerific@^1.11.3:
+  version "1.11.3"
+  resolved "https://registry.yarnpkg.com/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a"
+  integrity sha1-fIekZGREwy11Q4VwkF8tvRsagFo=
+  dependencies:
+    map-or-similar "^1.5.0"
+
+memory-fs@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290"
+  integrity sha1-8rslNovBIeORwlIN6Slpyu4KApA=
+
+memory-fs@^0.4.1:
+  version "0.4.1"
+  resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
+  integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
+  dependencies:
+    errno "^0.1.3"
+    readable-stream "^2.0.1"
+
+memory-fs@^0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
+  integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
+  dependencies:
+    errno "^0.1.3"
+    readable-stream "^2.0.1"
+
+meow@5.0.0, meow@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4"
+  integrity sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==
+  dependencies:
+    camelcase-keys "^4.0.0"
+    decamelize-keys "^1.0.0"
+    loud-rejection "^1.0.0"
+    minimist-options "^3.0.1"
+    normalize-package-data "^2.3.4"
+    read-pkg-up "^3.0.0"
+    redent "^2.0.0"
+    trim-newlines "^2.0.0"
+    yargs-parser "^10.0.0"
+
+meow@^3.3.0:
+  version "3.7.0"
+  resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
+  integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=
+  dependencies:
+    camelcase-keys "^2.0.0"
+    decamelize "^1.1.2"
+    loud-rejection "^1.0.0"
+    map-obj "^1.0.1"
+    minimist "^1.1.3"
+    normalize-package-data "^2.3.4"
+    object-assign "^4.0.1"
+    read-pkg-up "^1.0.1"
+    redent "^1.0.0"
+    trim-newlines "^1.0.0"
+
+meow@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.1.tgz#d48598f6f4b1472f35bf6317a95945ace347f975"
+  integrity sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==
+  dependencies:
+    camelcase-keys "^4.0.0"
+    decamelize-keys "^1.0.0"
+    loud-rejection "^1.0.0"
+    minimist "^1.1.3"
+    minimist-options "^3.0.1"
+    normalize-package-data "^2.3.4"
+    read-pkg-up "^3.0.0"
+    redent "^2.0.0"
+    trim-newlines "^2.0.0"
+
+meow@^7.1.1:
+  version "7.1.1"
+  resolved "https://registry.yarnpkg.com/meow/-/meow-7.1.1.tgz#7c01595e3d337fcb0ec4e8eed1666ea95903d306"
+  integrity sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==
+  dependencies:
+    "@types/minimist" "^1.2.0"
+    camelcase-keys "^6.2.2"
+    decamelize-keys "^1.1.0"
+    hard-rejection "^2.1.0"
+    minimist-options "4.1.0"
+    normalize-package-data "^2.5.0"
+    read-pkg-up "^7.0.1"
+    redent "^3.0.0"
+    trim-newlines "^3.0.0"
+    type-fest "^0.13.1"
+    yargs-parser "^18.1.3"
+
+merge-deep@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.2.tgz#f39fa100a4f1bd34ff29f7d2bf4508fbb8d83ad2"
+  integrity sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA==
+  dependencies:
+    arr-union "^3.1.0"
+    clone-deep "^0.2.4"
+    kind-of "^3.0.2"
+
+merge-descriptors@1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
+  integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
+
+merge-source-map@1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.4.tgz#a5de46538dae84d4114cc5ea02b4772a6346701f"
+  integrity sha1-pd5GU42uhNQRTMXqArR3KmNGcB8=
+  dependencies:
+    source-map "^0.5.6"
+
+merge-stream@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
+  integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
+
+merge2@^1.2.3, merge2@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81"
+  integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==
+
+merge@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145"
+  integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==
+
+methods@~1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
+  integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
+
+microevent.ts@~0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0"
+  integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
+
+micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4:
+  version "3.1.10"
+  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
+  integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
+  dependencies:
+    arr-diff "^4.0.0"
+    array-unique "^0.3.2"
+    braces "^2.3.1"
+    define-property "^2.0.2"
+    extend-shallow "^3.0.2"
+    extglob "^2.0.4"
+    fragment-cache "^0.2.1"
+    kind-of "^6.0.2"
+    nanomatch "^1.2.9"
+    object.pick "^1.3.0"
+    regex-not "^1.0.0"
+    snapdragon "^0.8.1"
+    to-regex "^3.0.2"
+
+micromatch@^4.0.0, micromatch@^4.0.2:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
+  integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
+  dependencies:
+    braces "^3.0.1"
+    picomatch "^2.0.5"
+
+miller-rabin@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
+  integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
+  dependencies:
+    bn.js "^4.0.0"
+    brorand "^1.0.1"
+
+mime-db@1.43.0:
+  version "1.43.0"
+  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58"
+  integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==
+
+mime-db@1.44.0:
+  version "1.44.0"
+  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92"
+  integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==
+
+"mime-db@>= 1.43.0 < 2":
+  version "1.45.0"
+  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea"
+  integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==
+
+mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24:
+  version "2.1.26"
+  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06"
+  integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==
+  dependencies:
+    mime-db "1.43.0"
+
+mime-types@^2.1.27, mime-types@~2.1.17:
+  version "2.1.27"
+  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f"
+  integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==
+  dependencies:
+    mime-db "1.44.0"
+
+mime@1.6.0, mime@^1.4.1:
+  version "1.6.0"
+  resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
+  integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+
+mime@^2.0.3:
+  version "2.5.0"
+  resolved "http://localhost:4873/mime/-/mime-2.5.0.tgz#2b4af934401779806ee98026bb42e8c1ae1876b1"
+  integrity sha512-ft3WayFSFUVBuJj7BMLKAQcSlItKtfjsKDDsii3rqFDAZ7t11zRe8ASw/GlmivGwVUYtwkQrxiGGpL6gFvB0ag==
+
+mime@^2.4.4:
+  version "2.4.4"
+  resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5"
+  integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==
+
+mimic-fn@^1.0.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
+  integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
+
+mimic-fn@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
+  integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
+
+min-document@^2.19.0:
+  version "2.19.0"
+  resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
+  integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=
+  dependencies:
+    dom-walk "^0.1.0"
+
+min-indent@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.0.tgz#cfc45c37e9ec0d8f0a0ec3dd4ef7f7c3abe39256"
+  integrity sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY=
+
+mini-create-react-context@^0.4.0:
+  version "0.4.1"
+  resolved "http://localhost:4873/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz#072171561bfdc922da08a60c2197a497cc2d1d5e"
+  integrity sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==
+  dependencies:
+    "@babel/runtime" "^7.12.1"
+    tiny-warning "^1.0.3"
+
+mini-css-extract-plugin@^0.4.0:
+  version "0.4.5"
+  resolved "http://localhost:4873/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.5.tgz#c99e9e78d54f3fa775633aee5933aeaa4e80719a"
+  integrity sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==
+  dependencies:
+    loader-utils "^1.1.0"
+    schema-utils "^1.0.0"
+    webpack-sources "^1.1.0"
+
+mini-css-extract-plugin@^0.7.0:
+  version "0.7.0"
+  resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.7.0.tgz#5ba8290fbb4179a43dd27cca444ba150bee743a0"
+  integrity sha512-RQIw6+7utTYn8DBGsf/LpRgZCJMpZt+kuawJ/fju0KiOL6nAaTBNmCJwS7HtwSCXfS47gCkmtBFS7HdsquhdxQ==
+  dependencies:
+    loader-utils "^1.1.0"
+    normalize-url "1.9.1"
+    schema-utils "^1.0.0"
+    webpack-sources "^1.1.0"
+
+mini-store@^3.0.1:
+  version "3.0.6"
+  resolved "https://registry.yarnpkg.com/mini-store/-/mini-store-3.0.6.tgz#44b86be5b2877271224ce0689b3a35a2dffb1ca9"
+  integrity sha512-YzffKHbYsMQGUWQRKdsearR79QsMzzJcDDmZKlJBqt5JNkqpyJHYlK6gP61O36X+sLf76sO9G6mhKBe83gIZIQ==
+  dependencies:
+    hoist-non-react-statics "^3.3.2"
+    shallowequal "^1.0.2"
+
+minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
+  integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
+
+minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
+  integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
+
+minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
+  integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
+  dependencies:
+    brace-expansion "^1.1.7"
+
+minimist-options@4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
+  integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
+  dependencies:
+    arrify "^1.0.1"
+    is-plain-obj "^1.1.0"
+    kind-of "^6.0.3"
+
+minimist-options@^3.0.1:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
+  integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==
+  dependencies:
+    arrify "^1.0.1"
+    is-plain-obj "^1.1.0"
+
+minimist@0.0.5:
+  version "0.0.5"
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.5.tgz#d7aa327bcecf518f9106ac6b8f003fa3bcea8566"
+  integrity sha1-16oye87PUY+RBqxrjwA/o7zqhWY=
+
+minimist@0.0.8:
+  version "0.0.8"
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
+  integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
+
+minimist@1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
+  integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
+
+minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
+  version "1.2.5"
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
+  integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
+
+minimist@~0.0.1:
+  version "0.0.10"
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
+  integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=
+
+minipass-collect@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
+  integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
+  dependencies:
+    minipass "^3.0.0"
+
+minipass-flush@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
+  integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
+  dependencies:
+    minipass "^3.0.0"
+
+minipass-pipeline@^1.2.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.2.tgz#3dcb6bb4a546e32969c7ad710f2c79a86abba93a"
+  integrity sha512-3JS5A2DKhD2g0Gg8x3yamO0pj7YeKGwVlDS90pF++kxptwx/F+B//roxf9SqYil5tQo65bijy+dAuAFZmYOouA==
+  dependencies:
+    minipass "^3.0.0"
+
+minipass@^2.3.5, minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0:
+  version "2.9.0"
+  resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6"
+  integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==
+  dependencies:
+    safe-buffer "^5.1.2"
+    yallist "^3.0.0"
+
+minipass@^3.0.0, minipass@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.1.tgz#7607ce778472a185ad6d89082aa2070f79cedcd5"
+  integrity sha512-UFqVihv6PQgwj8/yTGvl9kPz7xIAY+R5z6XYjRInD3Gk3qx6QGSD6zEcpeG4Dy/lQnv1J6zv8ejV90hyYIKf3w==
+  dependencies:
+    yallist "^4.0.0"
+
+minizlib@^1.2.1:
+  version "1.3.3"
+  resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d"
+  integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==
+  dependencies:
+    minipass "^2.9.0"
+
+minizlib@^2.1.1:
+  version "2.1.2"
+  resolved "http://localhost:4873/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
+  integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
+  dependencies:
+    minipass "^3.0.0"
+    yallist "^4.0.0"
+
+mississippi@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
+  integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
+  dependencies:
+    concat-stream "^1.5.0"
+    duplexify "^3.4.2"
+    end-of-stream "^1.1.0"
+    flush-write-stream "^1.0.0"
+    from2 "^2.1.0"
+    parallel-transform "^1.1.0"
+    pump "^3.0.0"
+    pumpify "^1.3.3"
+    stream-each "^1.1.0"
+    through2 "^2.0.0"
+
+mixin-deep@^1.2.0:
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
+  integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
+  dependencies:
+    for-in "^1.0.2"
+    is-extendable "^1.0.1"
+
+mixin-object@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e"
+  integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=
+  dependencies:
+    for-in "^0.1.3"
+    is-extendable "^0.1.1"
+
+mjolnir.js@^2.1.2:
+  version "2.5.0"
+  resolved "http://localhost:4873/mjolnir.js/-/mjolnir.js-2.5.0.tgz#5918b74625d9682002da82e01d6ffb0b16b02b0e"
+  integrity sha512-YkVoyKs7qm9xvAgRgjx3Md/7eYqmq7VXOgTKQNnmuzcBJzMebjdIWa7FdTd0RZBrw3UL6V6TTktsxJwBMLXUNA==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    hammerjs "^2.0.8"
+
+mjolnir.js@^2.2.0:
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/mjolnir.js/-/mjolnir.js-2.4.0.tgz#247f1640d8382c07c3030595f7957e1a5383b6e4"
+  integrity sha512-0WyWlc5EzdZ7eD0Fjy1DarzJpknesJaMJ6P0c6gDlbotfj3GRzv0odTXfTVVMm9WxEQSUzxosdnPqnd0SDxIyA==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    hammerjs "^2.0.8"
+
+mkdirp-promise@^5.0.1:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz#e9b8f68e552c68a9c1713b84883f7a1dd039b8a1"
+  integrity sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=
+  dependencies:
+    mkdirp "*"
+
+mkdirp@*, mkdirp@1.x, mkdirp@^1.0.3, mkdirp@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
+  integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
+
+mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1:
+  version "0.5.4"
+  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.4.tgz#fd01504a6797ec5c9be81ff43d204961ed64a512"
+  integrity sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==
+  dependencies:
+    minimist "^1.2.5"
+
+mkdirp@^0.5.5:
+  version "0.5.5"
+  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
+  integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
+  dependencies:
+    minimist "^1.2.5"
+
+modify-values@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022"
+  integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==
+
+moment@^2.15.1, moment@^2.20.1, moment@^2.24.0, moment@^2.26.0:
+  version "2.27.0"
+  resolved "https://registry.yarnpkg.com/moment/-/moment-2.27.0.tgz#8bff4e3e26a236220dfe3e36de756b6ebaa0105d"
+  integrity sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ==
+
+moment@^2.18.1, moment@^2.25.3:
+  version "2.29.1"
+  resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
+  integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==
+
+moo@^0.5.0:
+  version "0.5.1"
+  resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4"
+  integrity sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==
+
+mousetrap@^1.6.1:
+  version "1.6.5"
+  resolved "http://localhost:4873/mousetrap/-/mousetrap-1.6.5.tgz#8a766d8c272b08393d5f56074e0b5ec183485bf9"
+  integrity sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==
+
+move-concurrently@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
+  integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
+  dependencies:
+    aproba "^1.1.1"
+    copy-concurrently "^1.0.0"
+    fs-write-stream-atomic "^1.0.8"
+    mkdirp "^0.5.1"
+    rimraf "^2.5.4"
+    run-queue "^1.0.3"
+
+ms@2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+  integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
+
+ms@2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
+  integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
+
+ms@2.1.2, ms@^2.0.0, ms@^2.1.1:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+  integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+
+multicast-dns-service-types@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901"
+  integrity sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=
+
+multicast-dns@^6.0.1:
+  version "6.2.3"
+  resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229"
+  integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==
+  dependencies:
+    dns-packet "^1.3.1"
+    thunky "^1.0.2"
+
+multimap@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/multimap/-/multimap-1.1.0.tgz#5263febc085a1791c33b59bb3afc6a76a2a10ca8"
+  integrity sha512-0ZIR9PasPxGXmRsEF8jsDzndzHDj7tIav+JUmvIFB/WHswliFnquxECT/De7GR4yg99ky/NlRKJT82G1y271bw==
+
+multimatch@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-3.0.0.tgz#0e2534cc6bc238d9ab67e1b9cd5fcd85a6dbf70b"
+  integrity sha512-22foS/gqQfANZ3o+W7ST2x25ueHDVNWl/b9OlGcLpy/iKxjCpvcNCM51YCenUi7Mt/jAjjqv8JwZRs8YP5sRjA==
+  dependencies:
+    array-differ "^2.0.3"
+    array-union "^1.0.2"
+    arrify "^1.0.1"
+    minimatch "^3.0.4"
+
+multimatch@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-4.0.0.tgz#8c3c0f6e3e8449ada0af3dd29efb491a375191b3"
+  integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==
+  dependencies:
+    "@types/minimatch" "^3.0.3"
+    array-differ "^3.0.0"
+    array-union "^2.1.0"
+    arrify "^2.0.1"
+    minimatch "^3.0.4"
+
+murmurhash-js@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/murmurhash-js/-/murmurhash-js-1.0.0.tgz#b06278e21fc6c37fa5313732b0412bcb6ae15f51"
+  integrity sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E=
+
+mustache@^2.2.1:
+  version "2.3.2"
+  resolved "http://localhost:4873/mustache/-/mustache-2.3.2.tgz#a6d4d9c3f91d13359ab889a812954f9230a3d0c5"
+  integrity sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ==
+
+mustache@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.0.1.tgz#d99beb031701ad433338e7ea65e0489416c854a2"
+  integrity sha512-yL5VE97+OXn4+Er3THSmTdCFCtx5hHWzrolvH+JObZnUYwuaG7XV+Ch4fR2cIrcYI0tFHxS7iyFYl14bW8y2sA==
+
+mute-stream@0.0.7:
+  version "0.0.7"
+  resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
+  integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
+
+mute-stream@0.0.8, mute-stream@~0.0.4:
+  version "0.0.8"
+  resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
+  integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
+
+mz@^2.5.0:
+  version "2.7.0"
+  resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
+  integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==
+  dependencies:
+    any-promise "^1.0.0"
+    object-assign "^4.0.1"
+    thenify-all "^1.0.0"
+
+nan@^2.12.1:
+  version "2.14.0"
+  resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c"
+  integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
+
+nanoid@^2.0.0, nanoid@^2.1.0:
+  version "2.1.11"
+  resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-2.1.11.tgz#ec24b8a758d591561531b4176a01e3ab4f0f0280"
+  integrity sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==
+
+nanomatch@^1.2.9:
+  version "1.2.13"
+  resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
+  integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
+  dependencies:
+    arr-diff "^4.0.0"
+    array-unique "^0.3.2"
+    define-property "^2.0.2"
+    extend-shallow "^3.0.2"
+    fragment-cache "^0.2.1"
+    is-windows "^1.0.2"
+    kind-of "^6.0.2"
+    object.pick "^1.3.0"
+    regex-not "^1.0.0"
+    snapdragon "^0.8.1"
+    to-regex "^3.0.1"
+
+native-request@^1.0.5:
+  version "1.0.8"
+  resolved "http://localhost:4873/native-request/-/native-request-1.0.8.tgz#8f66bf606e0f7ea27c0e5995eb2f5d03e33ae6fb"
+  integrity sha512-vU2JojJVelUGp6jRcLwToPoWGxSx23z/0iX+I77J3Ht17rf2INGjrhOoQnjVo60nQd8wVsgzKkPfRXBiVdD2ag==
+
+native-url@^0.2.6:
+  version "0.2.6"
+  resolved "http://localhost:4873/native-url/-/native-url-0.2.6.tgz#ca1258f5ace169c716ff44eccbddb674e10399ae"
+  integrity sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==
+  dependencies:
+    querystring "^0.2.0"
+
+natural-compare@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
+  integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
+
+nearley@^2.7.10:
+  version "2.19.4"
+  resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.19.4.tgz#7518cbdd7d0e8e08b5f82841b9edb0126239c8b1"
+  integrity sha512-oqj3m4oqwKsN77pETa9IPvxHHHLW68KrDc2KYoWMUOhDlrNUo7finubwffQMBRnwNCOXc4kRxCZO0Rvx4L6Zrw==
+  dependencies:
+    commander "^2.19.0"
+    moo "^0.5.0"
+    railroad-diagrams "^1.0.0"
+    randexp "0.4.6"
+    semver "^5.4.1"
+
+negotiator@0.6.2:
+  version "0.6.2"
+  resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
+  integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
+
+neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1:
+  version "2.6.1"
+  resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
+  integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
+
+nested-error-stacks@^2.0.0, nested-error-stacks@^2.1.0:
+  version "2.1.0"
+  resolved "http://localhost:4873/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz#0fbdcf3e13fe4994781280524f8b96b0cdff9c61"
+  integrity sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==
+
+nested-object-assign@^1.0.3:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/nested-object-assign/-/nested-object-assign-1.0.4.tgz#c9db56078eb6043960fdb6ba918a5122a06ccac4"
+  integrity sha512-FlZ7oN9ICt+fbcJ4ag2IsALIcalfE/E16ttdSA8peBiHJI+oEKdOcafqDnUbeUe5NwWGn/m9zZGO9qrAGzfesg==
+
+nice-try@^1.0.4:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
+  integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
+
+nise@^4.0.1:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/nise/-/nise-4.0.3.tgz#9f79ff02fa002ed5ffbc538ad58518fa011dc913"
+  integrity sha512-EGlhjm7/4KvmmE6B/UFsKh7eHykRl9VH+au8dduHLCyWUO/hr7+N+WtTvDUwc9zHuM1IaIJs/0lQ6Ag1jDkQSg==
+  dependencies:
+    "@sinonjs/commons" "^1.7.0"
+    "@sinonjs/fake-timers" "^6.0.0"
+    "@sinonjs/text-encoding" "^0.7.1"
+    just-extend "^4.0.2"
+    path-to-regexp "^1.7.0"
+
+nise@^4.0.4:
+  version "4.0.4"
+  resolved "http://localhost:4873/nise/-/nise-4.0.4.tgz#d73dea3e5731e6561992b8f570be9e363c4512dd"
+  integrity sha512-bTTRUNlemx6deJa+ZyoCUTRvH3liK5+N6VQZ4NIw90AgDXY6iPnsqplNFf6STcj+ePk0H/xqxnP75Lr0J0Fq3A==
+  dependencies:
+    "@sinonjs/commons" "^1.7.0"
+    "@sinonjs/fake-timers" "^6.0.0"
+    "@sinonjs/text-encoding" "^0.7.1"
+    just-extend "^4.0.2"
+    path-to-regexp "^1.7.0"
+
+no-case@^2.2.0, no-case@^2.3.2:
+  version "2.3.2"
+  resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac"
+  integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==
+  dependencies:
+    lower-case "^1.1.1"
+
+no-case@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.3.tgz#c21b434c1ffe48b39087e86cfb4d2582e9df18f8"
+  integrity sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw==
+  dependencies:
+    lower-case "^2.0.1"
+    tslib "^1.10.0"
+
+node-addon-api@^1.1.0:
+  version "1.7.2"
+  resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d"
+  integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==
+
+node-ask@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/node-ask/-/node-ask-1.0.1.tgz#caaa1076cc58e0364267a0903e3eadfac158396b"
+  integrity sha1-yqoQdsxY4DZCZ6CQPj6t+sFYOWs=
+
+node-dir@^0.1.10:
+  version "0.1.17"
+  resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5"
+  integrity sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=
+  dependencies:
+    minimatch "^3.0.2"
+
+node-environment-flags@^1.0.5:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.6.tgz#a30ac13621f6f7d674260a54dede048c3982c088"
+  integrity sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==
+  dependencies:
+    object.getownpropertydescriptors "^2.0.3"
+    semver "^5.7.0"
+
+node-fetch-npm@^2.0.2:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/node-fetch-npm/-/node-fetch-npm-2.0.4.tgz#6507d0e17a9ec0be3bec516958a497cec54bf5a4"
+  integrity sha512-iOuIQDWDyjhv9qSDrj9aq/klt6F9z1p2otB3AV7v3zBDcL/x+OfGsvGQZZCcMZbUf4Ujw1xGNQkjvGnVT22cKg==
+  dependencies:
+    encoding "^0.1.11"
+    json-parse-better-errors "^1.0.0"
+    safe-buffer "^5.1.1"
+
+node-fetch@2.1.2:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.1.2.tgz#ab884e8e7e57e38a944753cec706f788d1768bb5"
+  integrity sha1-q4hOjn5X44qUR1POxwb3iNF2i7U=
+
+node-fetch@^1.0.1, node-fetch@^1.7.3:
+  version "1.7.3"
+  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
+  integrity sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==
+  dependencies:
+    encoding "^0.1.11"
+    is-stream "^1.0.1"
+
+node-fetch@^2.3.0, node-fetch@^2.5.0, node-fetch@^2.6.0:
+  version "2.6.0"
+  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd"
+  integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==
+
+node-fetch@^2.6.1:
+  version "2.6.1"
+  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
+  integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
+
+node-forge@^0.10.0:
+  version "0.10.0"
+  resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3"
+  integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
+
+node-gyp@^5.0.2:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-5.1.0.tgz#8e31260a7af4a2e2f994b0673d4e0b3866156332"
+  integrity sha512-OUTryc5bt/P8zVgNUmC6xdXiDJxLMAW8cF5tLQOT9E5sOQj+UeQxnnPy74K3CLCa/SOjjBlbuzDLR8ANwA+wmw==
+  dependencies:
+    env-paths "^2.2.0"
+    glob "^7.1.4"
+    graceful-fs "^4.2.2"
+    mkdirp "^0.5.1"
+    nopt "^4.0.1"
+    npmlog "^4.1.2"
+    request "^2.88.0"
+    rimraf "^2.6.3"
+    semver "^5.7.1"
+    tar "^4.4.12"
+    which "^1.3.1"
+
+node-int64@^0.4.0:
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
+  integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
+
+"node-libs-browser@^1.0.0 || ^2.0.0", node-libs-browser@^2.2.1:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
+  integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
+  dependencies:
+    assert "^1.1.1"
+    browserify-zlib "^0.2.0"
+    buffer "^4.3.0"
+    console-browserify "^1.1.0"
+    constants-browserify "^1.0.0"
+    crypto-browserify "^3.11.0"
+    domain-browser "^1.1.1"
+    events "^3.0.0"
+    https-browserify "^1.0.0"
+    os-browserify "^0.3.0"
+    path-browserify "0.0.1"
+    process "^0.11.10"
+    punycode "^1.2.4"
+    querystring-es3 "^0.2.0"
+    readable-stream "^2.3.3"
+    stream-browserify "^2.0.1"
+    stream-http "^2.7.2"
+    string_decoder "^1.0.0"
+    timers-browserify "^2.0.4"
+    tty-browserify "0.0.0"
+    url "^0.11.0"
+    util "^0.11.0"
+    vm-browserify "^1.0.1"
+
+node-loggly-bulk@^2.2.4:
+  version "2.2.4"
+  resolved "https://registry.yarnpkg.com/node-loggly-bulk/-/node-loggly-bulk-2.2.4.tgz#bdd8638d97c43ecf1e1831ca98b250968fa6dee9"
+  integrity sha512-DfhtsDfkSBU6Dp1zvK+H1MgHRcA2yb4z07ctyA6uo+bNwKtv1exhohN910zcWNkdSYq1TImCq+O+3bOTuYHvmQ==
+  dependencies:
+    json-stringify-safe "5.0.x"
+    moment "^2.18.1"
+    request ">=2.76.0 <3.0.0"
+
+node-modules-regexp@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
+  integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
+
+node-notifier@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-6.0.0.tgz#cea319e06baa16deec8ce5cd7f133c4a46b68e12"
+  integrity sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==
+  dependencies:
+    growly "^1.3.0"
+    is-wsl "^2.1.1"
+    semver "^6.3.0"
+    shellwords "^0.1.1"
+    which "^1.3.1"
+
+node-notifier@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.0.tgz#a7eee2d51da6d0f7ff5094bc7108c911240c1620"
+  integrity sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA==
+  dependencies:
+    growly "^1.3.0"
+    is-wsl "^2.2.0"
+    semver "^7.3.2"
+    shellwords "^0.1.1"
+    uuid "^8.3.0"
+    which "^2.0.2"
+
+node-releases@^1.1.29:
+  version "1.1.53"
+  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4"
+  integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ==
+
+node-releases@^1.1.52, node-releases@^1.1.69, node-releases@^1.1.70:
+  version "1.1.70"
+  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08"
+  integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==
+
+nomnom@1.8.1:
+  version "1.8.1"
+  resolved "http://localhost:4873/nomnom/-/nomnom-1.8.1.tgz#2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"
+  integrity sha1-IVH3Ikcrp55Qp2/BJbuMjy5Nwqc=
+  dependencies:
+    chalk "~0.4.0"
+    underscore "~1.6.0"
+
+nopt@^4.0.1, nopt@~4.0.1:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48"
+  integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==
+  dependencies:
+    abbrev "1"
+    osenv "^0.1.4"
+
+normalize-package-data@^2.0.0, normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5, normalize-package-data@^2.4.0, normalize-package-data@^2.5.0:
+  version "2.5.0"
+  resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
+  integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
+  dependencies:
+    hosted-git-info "^2.1.4"
+    resolve "^1.10.0"
+    semver "2 || 3 || 4 || 5"
+    validate-npm-package-license "^3.0.1"
+
+normalize-path@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
+  integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
+  dependencies:
+    remove-trailing-separator "^1.0.1"
+
+normalize-path@^3.0.0, normalize-path@~3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
+  integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
+
+normalize-range@^0.1.2:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
+  integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
+
+normalize-url@1.9.1, normalize-url@^1.0.0:
+  version "1.9.1"
+  resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
+  integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
+  dependencies:
+    object-assign "^4.0.1"
+    prepend-http "^1.0.0"
+    query-string "^4.1.0"
+    sort-keys "^1.0.0"
+
+normalize-url@^3.0.0, normalize-url@^3.3.0:
+  version "3.3.0"
+  resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
+  integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
+
+npm-api@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/npm-api/-/npm-api-1.0.0.tgz#6033c283bb04ddb0185344c1ad07ed4f67c77989"
+  integrity sha512-gtJhIhGq07g9H5sIAB9TZzTySW8MYtcYqg+e+J+5q1GmDsDLLVfyvVBL1VklzjtRsElph11GUtLBS191RDOJxQ==
+  dependencies:
+    JSONStream "^1.3.5"
+    clone-deep "^4.0.1"
+    download-stats "^0.3.4"
+    moment "^2.24.0"
+    paged-request "^2.0.1"
+    request "^2.88.0"
+
+npm-bundled@^1.0.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b"
+  integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==
+  dependencies:
+    npm-normalize-package-bin "^1.0.1"
+
+npm-lifecycle@^3.1.2:
+  version "3.1.5"
+  resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-3.1.5.tgz#9882d3642b8c82c815782a12e6a1bfeed0026309"
+  integrity sha512-lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g==
+  dependencies:
+    byline "^5.0.0"
+    graceful-fs "^4.1.15"
+    node-gyp "^5.0.2"
+    resolve-from "^4.0.0"
+    slide "^1.1.6"
+    uid-number "0.0.6"
+    umask "^1.1.0"
+    which "^1.3.1"
+
+npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2"
+  integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==
+
+"npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0", npm-package-arg@^6.0.0, npm-package-arg@^6.1.0:
+  version "6.1.1"
+  resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.1.tgz#02168cb0a49a2b75bf988a28698de7b529df5cb7"
+  integrity sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg==
+  dependencies:
+    hosted-git-info "^2.7.1"
+    osenv "^0.1.5"
+    semver "^5.6.0"
+    validate-npm-package-name "^3.0.0"
+
+npm-packlist@^1.4.4:
+  version "1.4.8"
+  resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e"
+  integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==
+  dependencies:
+    ignore-walk "^3.0.1"
+    npm-bundled "^1.0.1"
+    npm-normalize-package-bin "^1.0.1"
+
+npm-pick-manifest@^3.0.0:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-3.0.2.tgz#f4d9e5fd4be2153e5f4e5f9b7be8dc419a99abb7"
+  integrity sha512-wNprTNg+X5nf+tDi+hbjdHhM4bX+mKqv6XmPh7B5eG+QY9VARfQPfCEH013H5GqfNj6ee8Ij2fg8yk0mzps1Vw==
+  dependencies:
+    figgy-pudding "^3.5.1"
+    npm-package-arg "^6.0.0"
+    semver "^5.4.1"
+
+npm-run-path@^2.0.0:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
+  integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
+  dependencies:
+    path-key "^2.0.0"
+
+npm-run-path@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
+  integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
+  dependencies:
+    path-key "^3.0.0"
+
+npmlog@^4.1.2:
+  version "4.1.2"
+  resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
+  integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
+  dependencies:
+    are-we-there-yet "~1.1.2"
+    console-control-strings "~1.1.0"
+    gauge "~2.7.3"
+    set-blocking "~2.0.0"
+
+nth-check@^1.0.2, nth-check@~1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
+  integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
+  dependencies:
+    boolbase "~1.0.0"
+
+num2fraction@^1.2.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
+  integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
+
+number-is-nan@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
+  integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
+
+nvd3-fork@^2.0.5:
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/nvd3-fork/-/nvd3-fork-2.0.5.tgz#b3d21fac7bdcacd087d0ea962cbe3a0e8822bb5b"
+  integrity sha512-Sq3q2rvR/9FJ35LVmqdQJAnfmD15BaIHSBg5wZZL/WLcq/nthff8ukabwFdbW0zeE1c/yPq+DKl6MxnUTR45DA==
+
+nvd3@1.8.6:
+  version "1.8.6"
+  resolved "https://registry.yarnpkg.com/nvd3/-/nvd3-1.8.6.tgz#2d3eba74bf33363b5101ebf1d093c59a53ae73c4"
+  integrity sha1-LT66dL8zNjtRAevx0JPFmlOuc8Q=
+
+nwsapi@^2.0.7, nwsapi@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
+  integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
+
+oauth-sign@~0.9.0:
+  version "0.9.0"
+  resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
+  integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
+
+object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+  integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
+
+object-copy@^0.1.0:
+  version "0.1.0"
+  resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
+  integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
+  dependencies:
+    copy-descriptor "^0.1.0"
+    define-property "^0.2.5"
+    kind-of "^3.0.3"
+
+object-inspect@^1.7.0:
+  version "1.7.0"
+  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
+  integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
+
+object-inspect@^1.8.0:
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a"
+  integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==
+
+object-inspect@~1.4.0:
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.4.1.tgz#37ffb10e71adaf3748d05f713b4c9452f402cbc4"
+  integrity sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw==
+
+object-is@^1.0.1, object-is@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.2.tgz#6b80eb84fe451498f65007982f035a5b445edec4"
+  integrity sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ==
+
+object-is@^1.1.2:
+  version "1.1.4"
+  resolved "http://localhost:4873/object-is/-/object-is-1.1.4.tgz#63d6c83c00a43f4cbc9434eb9757c8a5b8565068"
+  integrity sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==
+  dependencies:
+    call-bind "^1.0.0"
+    define-properties "^1.1.3"
+
+object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.0.6, object-keys@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
+  integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
+
+object-visit@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
+  integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
+  dependencies:
+    isobject "^3.0.0"
+
+object.assign@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
+  integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
+  dependencies:
+    define-properties "^1.1.2"
+    function-bind "^1.1.1"
+    has-symbols "^1.0.0"
+    object-keys "^1.0.11"
+
+object.assign@^4.1.1, object.assign@^4.1.2:
+  version "4.1.2"
+  resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
+  integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
+  dependencies:
+    call-bind "^1.0.0"
+    define-properties "^1.1.3"
+    has-symbols "^1.0.1"
+    object-keys "^1.1.1"
+
+object.entries@^1.1.0, object.entries@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b"
+  integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    function-bind "^1.1.1"
+    has "^1.0.3"
+
+object.entries@^1.1.2:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz#c601c7f168b62374541a07ddbd3e2d5e4f7711a6"
+  integrity sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==
+  dependencies:
+    call-bind "^1.0.0"
+    define-properties "^1.1.3"
+    es-abstract "^1.18.0-next.1"
+    has "^1.0.3"
+
+"object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9"
+  integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    function-bind "^1.1.1"
+    has "^1.0.3"
+
+object.fromentries@^2.0.3:
+  version "2.0.3"
+  resolved "http://localhost:4873/object.fromentries/-/object.fromentries-2.0.3.tgz#13cefcffa702dc67750314a3305e8cb3fad1d072"
+  integrity sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==
+  dependencies:
+    call-bind "^1.0.0"
+    define-properties "^1.1.3"
+    es-abstract "^1.18.0-next.1"
+    has "^1.0.3"
+
+object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649"
+  integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+
+object.pick@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
+  integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
+  dependencies:
+    isobject "^3.0.1"
+
+object.values@^1.1.0, object.values@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
+  integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    function-bind "^1.1.1"
+    has "^1.0.3"
+
+object.values@^1.1.2:
+  version "1.1.2"
+  resolved "http://localhost:4873/object.values/-/object.values-1.1.2.tgz#7a2015e06fcb0f546bd652486ce8583a4731c731"
+  integrity sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==
+  dependencies:
+    call-bind "^1.0.0"
+    define-properties "^1.1.3"
+    es-abstract "^1.18.0-next.1"
+    has "^1.0.3"
+
+objectorarray@^1.0.4:
+  version "1.0.4"
+  resolved "http://localhost:4873/objectorarray/-/objectorarray-1.0.4.tgz#d69b2f0ff7dc2701903d308bb85882f4ddb49483"
+  integrity sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==
+
+obuf@^1.0.0, obuf@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
+  integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
+
+octokit-pagination-methods@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz#cf472edc9d551055f9ef73f6e42b4dbb4c80bea4"
+  integrity sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==
+
+omit.js@^2.0.0, omit.js@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/omit.js/-/omit.js-2.0.2.tgz#dd9b8436fab947a5f3ff214cb2538631e313ec2f"
+  integrity sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg==
+
+omnibar@^2.1.1:
+  version "2.3.0"
+  resolved "http://localhost:4873/omnibar/-/omnibar-2.3.0.tgz#992e3a6384498b1d046f8ffba0c7e26ac706e704"
+  integrity sha512-i6bCwm9AHHuvP9u8R6jLXXAUgggzXtDMgE8uJBG/2UKbMT7ACOJ+EEb+lH22d773mOseXrbVBwhsmIm9CtaE6w==
+
+on-finished@~2.3.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
+  integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
+  dependencies:
+    ee-first "1.1.1"
+
+on-headers@~1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
+  integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
+
+once@^1.3.0, once@^1.3.1, once@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+  integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
+  dependencies:
+    wrappy "1"
+
+onetime@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
+  integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
+  dependencies:
+    mimic-fn "^1.0.0"
+
+onetime@^5.1.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5"
+  integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==
+  dependencies:
+    mimic-fn "^2.1.0"
+
+open@^6.3.0:
+  version "6.4.0"
+  resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9"
+  integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==
+  dependencies:
+    is-wsl "^1.1.0"
+
+open@^7.0.0:
+  version "7.0.3"
+  resolved "https://registry.yarnpkg.com/open/-/open-7.0.3.tgz#db551a1af9c7ab4c7af664139930826138531c48"
+  integrity sha512-sP2ru2v0P290WFfv49Ap8MF6PkzGNnGlAwHweB4WR4mr5d2d0woiCluUeJ218w7/+PmoBy9JmYgD5A4mLcWOFA==
+  dependencies:
+    is-docker "^2.0.0"
+    is-wsl "^2.1.1"
+
+open@^7.0.2, open@^7.0.3:
+  version "7.4.0"
+  resolved "http://localhost:4873/open/-/open-7.4.0.tgz#ad95b98f871d9acb0ec8fecc557082cc9986626b"
+  integrity sha512-PGoBCX/lclIWlpS/R2PQuIR4NJoXh6X5AwVzE7WXnWRGvHg7+4TBCgsujUgiPpm0K1y4qvQeWnCWVTpTKZBtvA==
+  dependencies:
+    is-docker "^2.0.0"
+    is-wsl "^2.1.1"
+
+opencollective-postinstall@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89"
+  integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw==
+
+opener@^1.5.1:
+  version "1.5.2"
+  resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
+  integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
+
+openurl@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/openurl/-/openurl-1.1.1.tgz#3875b4b0ef7a52c156f0db41d4609dbb0f94b387"
+  integrity sha1-OHW0sO96UsFW8NtB1GCduw+Us4c=
+
+opn@^5.5.0:
+  version "5.5.0"
+  resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc"
+  integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==
+  dependencies:
+    is-wsl "^1.1.0"
+
+optimal@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/optimal/-/optimal-4.2.0.tgz#a97d9a12cb543988f2e54b88416b77d9a811ed69"
+  integrity sha512-jKFdiBkhJCVMh6oXsGNVFv/huPeFTEdlBtSuwDBYYClFn6lwV0fdRwRhWtpazM1ZMuV+bNNRFMth9SMWvUk3uQ==
+
+optimist@0.3:
+  version "0.3.7"
+  resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9"
+  integrity sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=
+  dependencies:
+    wordwrap "~0.0.2"
+
+optimist@^0.6.1:
+  version "0.6.1"
+  resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
+  integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY=
+  dependencies:
+    minimist "~0.0.1"
+    wordwrap "~0.0.2"
+
+optimize-css-assets-webpack-plugin@^5.0.1:
+  version "5.0.4"
+  resolved "http://localhost:4873/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz#85883c6528aaa02e30bbad9908c92926bb52dc90"
+  integrity sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==
+  dependencies:
+    cssnano "^4.1.10"
+    last-call-webpack-plugin "^3.0.0"
+
+optionator@^0.8.1:
+  version "0.8.3"
+  resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
+  integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
+  dependencies:
+    deep-is "~0.1.3"
+    fast-levenshtein "~2.0.6"
+    levn "~0.3.0"
+    prelude-ls "~1.1.2"
+    type-check "~0.3.2"
+    word-wrap "~1.2.3"
+
+optionator@^0.9.1:
+  version "0.9.1"
+  resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
+  integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
+  dependencies:
+    deep-is "^0.1.3"
+    fast-levenshtein "^2.0.6"
+    levn "^0.4.1"
+    prelude-ls "^1.2.1"
+    type-check "^0.4.0"
+    word-wrap "^1.2.3"
+
+original@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f"
+  integrity sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==
+  dependencies:
+    url-parse "^1.4.3"
+
+os-browserify@^0.3.0:
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
+  integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
+
+os-homedir@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
+  integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M=
+
+os-locale@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
+  integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==
+  dependencies:
+    execa "^0.7.0"
+    lcid "^1.0.0"
+    mem "^1.1.0"
+
+os-locale@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-4.0.0.tgz#06e4fb102f38f33e9e904f41af3c34a5aa3b2b7b"
+  integrity sha512-HsSR1+2l6as4Wp2SGZxqLnuFHxVvh1Ir9pvZxyujsC13egZVe7P0YeBLN0ijQzM/twrO5To3ia3jzBXAvpMTEA==
+  dependencies:
+    execa "^1.0.0"
+    lcid "^3.0.0"
+    mem "^5.0.0"
+
+os-name@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801"
+  integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==
+  dependencies:
+    macos-release "^2.2.0"
+    windows-release "^3.1.0"
+
+os-tmpdir@^1.0.0, os-tmpdir@~1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
+  integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
+
+osenv@^0.1.4, osenv@^0.1.5:
+  version "0.1.5"
+  resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
+  integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
+  dependencies:
+    os-homedir "^1.0.0"
+    os-tmpdir "^1.0.0"
+
+overlayscrollbars@^1.10.2:
+  version "1.13.1"
+  resolved "https://registry.yarnpkg.com/overlayscrollbars/-/overlayscrollbars-1.13.1.tgz#0b840a88737f43a946b9d87875a2f9e421d0338a"
+  integrity sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==
+
+p-all@^2.1.0:
+  version "2.1.0"
+  resolved "http://localhost:4873/p-all/-/p-all-2.1.0.tgz#91419be56b7dee8fe4c5db875d55e0da084244a0"
+  integrity sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==
+  dependencies:
+    p-map "^2.0.0"
+
+p-defer@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
+  integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
+
+p-each-series@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48"
+  integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==
+
+p-event@^4.1.0:
+  version "4.2.0"
+  resolved "http://localhost:4873/p-event/-/p-event-4.2.0.tgz#af4b049c8acd91ae81083ebd1e6f5cae2044c1b5"
+  integrity sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==
+  dependencies:
+    p-timeout "^3.1.0"
+
+p-filter@^2.1.0:
+  version "2.1.0"
+  resolved "http://localhost:4873/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c"
+  integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==
+  dependencies:
+    p-map "^2.0.0"
+
+p-finally@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
+  integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
+
+p-finally@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561"
+  integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==
+
+p-is-promise@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e"
+  integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==
+
+p-limit@3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.0.2.tgz#1664e010af3cadc681baafd3e2a437be7b0fb5fe"
+  integrity sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==
+  dependencies:
+    p-try "^2.0.0"
+
+p-limit@^1.1.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
+  integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
+  dependencies:
+    p-try "^1.0.0"
+
+p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.2.2:
+  version "2.2.2"
+  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e"
+  integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
+  dependencies:
+    p-try "^2.0.0"
+
+p-limit@^2.3.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
+  integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
+  dependencies:
+    p-try "^2.0.0"
+
+p-limit@^3.0.2:
+  version "3.1.0"
+  resolved "http://localhost:4873/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
+  integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
+  dependencies:
+    yocto-queue "^0.1.0"
+
+p-locate@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
+  integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
+  dependencies:
+    p-limit "^1.1.0"
+
+p-locate@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
+  integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
+  dependencies:
+    p-limit "^2.0.0"
+
+p-locate@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
+  integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
+  dependencies:
+    p-limit "^2.2.0"
+
+p-map-series@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-1.0.0.tgz#bf98fe575705658a9e1351befb85ae4c1f07bdca"
+  integrity sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=
+  dependencies:
+    p-reduce "^1.0.0"
+
+p-map@^2.0.0, p-map@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
+  integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
+
+p-map@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d"
+  integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==
+  dependencies:
+    aggregate-error "^3.0.0"
+
+p-map@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
+  integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
+  dependencies:
+    aggregate-error "^3.0.0"
+
+p-pipe@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-1.2.0.tgz#4b1a11399a11520a67790ee5a0c1d5881d6befe9"
+  integrity sha1-SxoROZoRUgpneQ7loMHViB1r7+k=
+
+p-queue@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-4.0.0.tgz#ed0eee8798927ed6f2c2f5f5b77fdb2061a5d346"
+  integrity sha512-3cRXXn3/O0o3+eVmUroJPSj/esxoEFIm0ZOno/T+NzG/VZgPOqQ8WKmlNqubSEpZmCIngEy34unkHGg83ZIBmg==
+  dependencies:
+    eventemitter3 "^3.1.0"
+
+p-reduce@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
+  integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=
+
+p-retry@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328"
+  integrity sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==
+  dependencies:
+    retry "^0.12.0"
+
+p-timeout@^3.1.0:
+  version "3.2.0"
+  resolved "http://localhost:4873/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe"
+  integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
+  dependencies:
+    p-finally "^1.0.0"
+
+p-try@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
+  integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
+
+p-try@^2.0.0, p-try@^2.1.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
+  integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
+
+p-waterfall@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/p-waterfall/-/p-waterfall-1.0.0.tgz#7ed94b3ceb3332782353af6aae11aa9fc235bb00"
+  integrity sha1-ftlLPOszMngjU69qrhGqn8I1uwA=
+  dependencies:
+    p-reduce "^1.0.0"
+
+pad-component@0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/pad-component/-/pad-component-0.0.1.tgz#ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac"
+  integrity sha1-rR8izhvw/cDW3dkIrxfzUaQEuKw=
+
+paged-request@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/paged-request/-/paged-request-2.0.1.tgz#91164f042231feb68643542d2530476a518ff4de"
+  integrity sha512-C0bB/PFk9rQskD1YEiz7uuchzqKDQGgdsEHN1ahify0UUWzgmMK4NDG9fhlQg2waogmNFwEvEeHfMRvJySpdVw==
+  dependencies:
+    axios "^0.18.0"
+
+pako@~1.0.5:
+  version "1.0.11"
+  resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
+  integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
+
+parallel-transform@^1.1.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
+  integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
+  dependencies:
+    cyclist "^1.0.1"
+    inherits "^2.0.3"
+    readable-stream "^2.1.5"
+
+param-case@^2.1.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247"
+  integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc=
+  dependencies:
+    no-case "^2.2.0"
+
+param-case@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.3.tgz#4be41f8399eff621c56eebb829a5e451d9801238"
+  integrity sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA==
+  dependencies:
+    dot-case "^3.0.3"
+    tslib "^1.10.0"
+
+parent-module@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
+  integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
+  dependencies:
+    callsites "^3.0.0"
+
+parse-asn1@^5.0.0:
+  version "5.1.5"
+  resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e"
+  integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==
+  dependencies:
+    asn1.js "^4.0.0"
+    browserify-aes "^1.0.0"
+    create-hash "^1.1.0"
+    evp_bytestokey "^1.0.0"
+    pbkdf2 "^3.0.3"
+    safe-buffer "^5.1.1"
+
+parse-entities@^1.1.0, parse-entities@^1.1.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.2.tgz#c31bf0f653b6661354f8973559cb86dd1d5edf50"
+  integrity sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==
+  dependencies:
+    character-entities "^1.0.0"
+    character-entities-legacy "^1.0.0"
+    character-reference-invalid "^1.0.0"
+    is-alphanumerical "^1.0.0"
+    is-decimal "^1.0.0"
+    is-hexadecimal "^1.0.0"
+
+parse-entities@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8"
+  integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==
+  dependencies:
+    character-entities "^1.0.0"
+    character-entities-legacy "^1.0.0"
+    character-reference-invalid "^1.0.0"
+    is-alphanumerical "^1.0.0"
+    is-decimal "^1.0.0"
+    is-hexadecimal "^1.0.0"
+
+parse-github-repo-url@^1.3.0:
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50"
+  integrity sha1-nn2LslKmy2ukJZUGC3v23z28H1A=
+
+parse-json@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
+  integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
+  dependencies:
+    error-ex "^1.2.0"
+
+parse-json@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
+  integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
+  dependencies:
+    error-ex "^1.3.1"
+    json-parse-better-errors "^1.0.1"
+
+parse-json@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f"
+  integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
+  dependencies:
+    "@babel/code-frame" "^7.0.0"
+    error-ex "^1.3.1"
+    json-parse-better-errors "^1.0.1"
+    lines-and-columns "^1.1.6"
+
+parse-ms@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-2.1.0.tgz#348565a753d4391fa524029956b172cb7753097d"
+  integrity sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==
+
+parse-passwd@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
+  integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
+
+parse-path@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.1.tgz#0ec769704949778cb3b8eda5e994c32073a1adff"
+  integrity sha512-d7yhga0Oc+PwNXDvQ0Jv1BuWkLVPXcAoQ/WREgd6vNNoKYaW52KI+RdOFjI63wjkmps9yUE8VS4veP+AgpQ/hA==
+  dependencies:
+    is-ssh "^1.3.0"
+    protocols "^1.4.0"
+
+parse-url@^5.0.0:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-5.0.1.tgz#99c4084fc11be14141efa41b3d117a96fcb9527f"
+  integrity sha512-flNUPP27r3vJpROi0/R3/2efgKkyXqnXwyP1KQ2U0SfFRgdizOdWfvrrvJg1LuOoxs7GQhmxJlq23IpQ/BkByg==
+  dependencies:
+    is-ssh "^1.3.0"
+    normalize-url "^3.3.0"
+    parse-path "^4.0.0"
+    protocols "^1.4.0"
+
+parse5@4.0.0, parse5@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
+  integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==
+
+parse5@5.1.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2"
+  integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==
+
+parse5@5.1.1:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178"
+  integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==
+
+parse5@^3.0.1:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c"
+  integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==
+  dependencies:
+    "@types/node" "*"
+
+parse5@^6.0.0:
+  version "6.0.1"
+  resolved "http://localhost:4873/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
+  integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
+
+parseurl@~1.3.2, parseurl@~1.3.3:
+  version "1.3.3"
+  resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+  integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
+
+pascal-case@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-2.0.1.tgz#2d578d3455f660da65eca18ef95b4e0de912761e"
+  integrity sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=
+  dependencies:
+    camel-case "^3.0.0"
+    upper-case-first "^1.1.0"
+
+pascal-case@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.1.tgz#5ac1975133ed619281e88920973d2cd1f279de5f"
+  integrity sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA==
+  dependencies:
+    no-case "^3.0.3"
+    tslib "^1.10.0"
+
+pascalcase@^0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
+  integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
+
+path-browserify@0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
+  integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
+
+path-case@^2.1.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/path-case/-/path-case-2.1.1.tgz#94b8037c372d3fe2906e465bb45e25d226e8eea5"
+  integrity sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU=
+  dependencies:
+    no-case "^2.2.0"
+
+path-dirname@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
+  integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
+
+path-exists@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
+  integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=
+  dependencies:
+    pinkie-promise "^2.0.0"
+
+path-exists@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
+  integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
+
+path-exists@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+  integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
+
+path-is-absolute@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+  integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
+
+path-is-inside@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
+  integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
+
+path-key@^2.0.0, path-key@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
+  integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
+
+path-key@^3.0.0, path-key@^3.1.0:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
+  integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
+
+path-parse@^1.0.6:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
+  integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
+
+path-to-regexp@0.1.7:
+  version "0.1.7"
+  resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
+  integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
+
+path-to-regexp@^1.7.0:
+  version "1.8.0"
+  resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a"
+  integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==
+  dependencies:
+    isarray "0.0.1"
+
+path-to-regexp@^2.2.1:
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.4.0.tgz#35ce7f333d5616f1c1e1bfe266c3aba2e5b2e704"
+  integrity sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==
+
+path-type@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
+  integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=
+  dependencies:
+    graceful-fs "^4.1.2"
+    pify "^2.0.0"
+    pinkie-promise "^2.0.0"
+
+path-type@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
+  integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=
+  dependencies:
+    pify "^2.0.0"
+
+path-type@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
+  integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
+  dependencies:
+    pify "^3.0.0"
+
+path-type@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+  integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
+
+pbf@^3.0.5:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/pbf/-/pbf-3.2.1.tgz#b4c1b9e72af966cd82c6531691115cc0409ffe2a"
+  integrity sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==
+  dependencies:
+    ieee754 "^1.1.12"
+    resolve-protobuf-schema "^2.1.0"
+
+pbkdf2@^3.0.3:
+  version "3.0.17"
+  resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6"
+  integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==
+  dependencies:
+    create-hash "^1.1.2"
+    create-hmac "^1.1.4"
+    ripemd160 "^2.0.1"
+    safe-buffer "^5.0.1"
+    sha.js "^2.4.8"
+
+performance-now@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
+  integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
+
+picomatch@2.2.2, picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
+  version "2.2.2"
+  resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
+  integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
+
+pify@^2.0.0, pify@^2.3.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
+  integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
+
+pify@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
+  integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
+
+pify@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+  integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+
+pinkie-promise@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
+  integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o=
+  dependencies:
+    pinkie "^2.0.0"
+
+pinkie@^2.0.0:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
+  integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
+
+pirates@^4.0.0, pirates@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
+  integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
+  dependencies:
+    node-modules-regexp "^1.0.0"
+
+pkg-dir@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
+  integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
+  dependencies:
+    find-up "^2.1.0"
+
+pkg-dir@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
+  integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
+  dependencies:
+    find-up "^3.0.0"
+
+pkg-dir@^4.1.0, pkg-dir@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
+  integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
+  dependencies:
+    find-up "^4.0.0"
+
+pkg-up@2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
+  integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
+  dependencies:
+    find-up "^2.1.0"
+
+pkg-up@3.1.0, pkg-up@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
+  integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
+  dependencies:
+    find-up "^3.0.0"
+
+please-upgrade-node@^3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
+  integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
+  dependencies:
+    semver-compare "^1.0.0"
+
+pluralize@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1"
+  integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==
+
+pn@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
+  integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==
+
+pnp-webpack-plugin@1.5.0:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.5.0.tgz#62a1cd3068f46d564bb33c56eb250e4d586676eb"
+  integrity sha512-jd9olUr9D7do+RN8Wspzhpxhgp1n6Vd0NtQ4SFkmIACZoEL1nkyAdW9Ygrinjec0vgDcWjscFQQ1gDW8rsfKTg==
+  dependencies:
+    ts-pnp "^1.1.2"
+
+pnp-webpack-plugin@1.6.4:
+  version "1.6.4"
+  resolved "http://localhost:4873/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149"
+  integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==
+  dependencies:
+    ts-pnp "^1.1.6"
+
+po2json@^0.4.5:
+  version "0.4.5"
+  resolved "http://localhost:4873/po2json/-/po2json-0.4.5.tgz#47bb2952da32d58a1be2f256a598eebc0b745118"
+  integrity sha1-R7spUtoy1Yob4vJWpZjuvAt0URg=
+  dependencies:
+    gettext-parser "1.1.0"
+    nomnom "1.8.1"
+
+polished@^3.3.1:
+  version "3.5.1"
+  resolved "https://registry.yarnpkg.com/polished/-/polished-3.5.1.tgz#657b6faf4c2308f3e0b1951196803a5e5d67b122"
+  integrity sha512-GVbvskpBiDV5TknurGL6OyFfLHsCknxbU8w5iMppT8rW0tLEoQHrIRfrPNPqGXNj3HGhkjRvhmg59Fy7HSnCAw==
+  dependencies:
+    "@babel/runtime" "^7.8.7"
+
+polished@^3.4.4:
+  version "3.6.7"
+  resolved "https://registry.yarnpkg.com/polished/-/polished-3.6.7.tgz#44cbd0047f3187d83db0c479ef0c7d5583af5fb6"
+  integrity sha512-b4OViUOihwV0icb9PHmWbR+vPqaSzSAEbgLskvb7ANPATVXGiYv/TQFHQo65S53WU9i5EQ1I03YDOJW7K0bmYg==
+  dependencies:
+    "@babel/runtime" "^7.9.2"
+
+polished@^3.6.5:
+  version "3.7.0"
+  resolved "http://localhost:4873/polished/-/polished-3.7.0.tgz#ece3368df30d33082bc8a957aa212d3f98119278"
+  integrity sha512-1tnvQ2wsxfR/DyPE2Xu9sRbnLAwXAarCWiZJ8Hfirw59bTigqjbzEWSAmzYizT6ocQW995V8n7RP48jq50DjJA==
+  dependencies:
+    "@babel/runtime" "^7.12.5"
+    "@scarf/scarf" "^1.1.0"
+
+popper.js@^1.14.4, popper.js@^1.14.7:
+  version "1.16.1"
+  resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b"
+  integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==
+
+portfinder@^1.0.26:
+  version "1.0.28"
+  resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778"
+  integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==
+  dependencies:
+    async "^2.6.2"
+    debug "^3.1.1"
+    mkdirp "^0.5.5"
+
+posix-character-classes@^0.1.0:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
+  integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
+
+postcss-calc@^7.0.1:
+  version "7.0.5"
+  resolved "http://localhost:4873/postcss-calc/-/postcss-calc-7.0.5.tgz#f8a6e99f12e619c2ebc23cf6c486fdc15860933e"
+  integrity sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==
+  dependencies:
+    postcss "^7.0.27"
+    postcss-selector-parser "^6.0.2"
+    postcss-value-parser "^4.0.2"
+
+postcss-colormin@^4.0.3:
+  version "4.0.3"
+  resolved "http://localhost:4873/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381"
+  integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==
+  dependencies:
+    browserslist "^4.0.0"
+    color "^3.0.0"
+    has "^1.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-convert-values@^4.0.1:
+  version "4.0.1"
+  resolved "http://localhost:4873/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f"
+  integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==
+  dependencies:
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-discard-comments@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033"
+  integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==
+  dependencies:
+    postcss "^7.0.0"
+
+postcss-discard-duplicates@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb"
+  integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==
+  dependencies:
+    postcss "^7.0.0"
+
+postcss-discard-empty@^4.0.1:
+  version "4.0.1"
+  resolved "http://localhost:4873/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765"
+  integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==
+  dependencies:
+    postcss "^7.0.0"
+
+postcss-discard-overridden@^4.0.1:
+  version "4.0.1"
+  resolved "http://localhost:4873/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57"
+  integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==
+  dependencies:
+    postcss "^7.0.0"
+
+postcss-flexbugs-fixes@^4.1.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.0.tgz#662b3dcb6354638b9213a55eed8913bcdc8d004a"
+  integrity sha512-QRE0n3hpkxxS/OGvzOa+PDuy4mh/Jg4o9ui22/ko5iGYOG3M5dfJabjnAZjTdh2G9F85c7Hv8hWcEDEKW/xceQ==
+  dependencies:
+    postcss "^7.0.26"
+
+postcss-load-config@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003"
+  integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==
+  dependencies:
+    cosmiconfig "^5.0.0"
+    import-cwd "^2.0.0"
+
+postcss-loader@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d"
+  integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==
+  dependencies:
+    loader-utils "^1.1.0"
+    postcss "^7.0.0"
+    postcss-load-config "^2.0.0"
+    schema-utils "^1.0.0"
+
+postcss-merge-longhand@^4.0.11:
+  version "4.0.11"
+  resolved "http://localhost:4873/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24"
+  integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==
+  dependencies:
+    css-color-names "0.0.4"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+    stylehacks "^4.0.0"
+
+postcss-merge-rules@^4.0.3:
+  version "4.0.3"
+  resolved "http://localhost:4873/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650"
+  integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==
+  dependencies:
+    browserslist "^4.0.0"
+    caniuse-api "^3.0.0"
+    cssnano-util-same-parent "^4.0.0"
+    postcss "^7.0.0"
+    postcss-selector-parser "^3.0.0"
+    vendors "^1.0.0"
+
+postcss-minify-font-values@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6"
+  integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==
+  dependencies:
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-minify-gradients@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471"
+  integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==
+  dependencies:
+    cssnano-util-get-arguments "^4.0.0"
+    is-color-stop "^1.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-minify-params@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874"
+  integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==
+  dependencies:
+    alphanum-sort "^1.0.0"
+    browserslist "^4.0.0"
+    cssnano-util-get-arguments "^4.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+    uniqs "^2.0.0"
+
+postcss-minify-selectors@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8"
+  integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==
+  dependencies:
+    alphanum-sort "^1.0.0"
+    has "^1.0.0"
+    postcss "^7.0.0"
+    postcss-selector-parser "^3.0.0"
+
+postcss-modules-extract-imports@^1.2.0:
+  version "1.2.1"
+  resolved "http://localhost:4873/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz#dc87e34148ec7eab5f791f7cd5849833375b741a"
+  integrity sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==
+  dependencies:
+    postcss "^6.0.1"
+
+postcss-modules-extract-imports@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
+  integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
+  dependencies:
+    postcss "^7.0.5"
+
+postcss-modules-local-by-default@^1.2.0:
+  version "1.2.0"
+  resolved "http://localhost:4873/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
+  integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=
+  dependencies:
+    css-selector-tokenizer "^0.7.0"
+    postcss "^6.0.1"
+
+postcss-modules-local-by-default@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915"
+  integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==
+  dependencies:
+    icss-utils "^4.1.1"
+    postcss "^7.0.16"
+    postcss-selector-parser "^6.0.2"
+    postcss-value-parser "^4.0.0"
+
+postcss-modules-scope@^1.1.0:
+  version "1.1.0"
+  resolved "http://localhost:4873/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90"
+  integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A=
+  dependencies:
+    css-selector-tokenizer "^0.7.0"
+    postcss "^6.0.1"
+
+postcss-modules-scope@^2.1.1, postcss-modules-scope@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee"
+  integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==
+  dependencies:
+    postcss "^7.0.6"
+    postcss-selector-parser "^6.0.0"
+
+postcss-modules-values@^1.3.0:
+  version "1.3.0"
+  resolved "http://localhost:4873/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
+  integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=
+  dependencies:
+    icss-replace-symbols "^1.1.0"
+    postcss "^6.0.1"
+
+postcss-modules-values@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10"
+  integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
+  dependencies:
+    icss-utils "^4.0.0"
+    postcss "^7.0.6"
+
+postcss-normalize-charset@^4.0.1:
+  version "4.0.1"
+  resolved "http://localhost:4873/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4"
+  integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==
+  dependencies:
+    postcss "^7.0.0"
+
+postcss-normalize-display-values@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a"
+  integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==
+  dependencies:
+    cssnano-util-get-match "^4.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-normalize-positions@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f"
+  integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==
+  dependencies:
+    cssnano-util-get-arguments "^4.0.0"
+    has "^1.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-normalize-repeat-style@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c"
+  integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==
+  dependencies:
+    cssnano-util-get-arguments "^4.0.0"
+    cssnano-util-get-match "^4.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-normalize-string@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c"
+  integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==
+  dependencies:
+    has "^1.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-normalize-timing-functions@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9"
+  integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==
+  dependencies:
+    cssnano-util-get-match "^4.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-normalize-unicode@^4.0.1:
+  version "4.0.1"
+  resolved "http://localhost:4873/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb"
+  integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==
+  dependencies:
+    browserslist "^4.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-normalize-url@^4.0.1:
+  version "4.0.1"
+  resolved "http://localhost:4873/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1"
+  integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==
+  dependencies:
+    is-absolute-url "^2.0.0"
+    normalize-url "^3.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-normalize-whitespace@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82"
+  integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==
+  dependencies:
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-ordered-values@^4.1.2:
+  version "4.1.2"
+  resolved "http://localhost:4873/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee"
+  integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==
+  dependencies:
+    cssnano-util-get-arguments "^4.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-reduce-initial@^4.0.3:
+  version "4.0.3"
+  resolved "http://localhost:4873/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df"
+  integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==
+  dependencies:
+    browserslist "^4.0.0"
+    caniuse-api "^3.0.0"
+    has "^1.0.0"
+    postcss "^7.0.0"
+
+postcss-reduce-transforms@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29"
+  integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==
+  dependencies:
+    cssnano-util-get-match "^4.0.0"
+    has "^1.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+
+postcss-selector-parser@^3.0.0:
+  version "3.1.2"
+  resolved "http://localhost:4873/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270"
+  integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==
+  dependencies:
+    dot-prop "^5.2.0"
+    indexes-of "^1.0.1"
+    uniq "^1.0.1"
+
+postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
+  integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
+  dependencies:
+    cssesc "^3.0.0"
+    indexes-of "^1.0.1"
+    uniq "^1.0.1"
+
+postcss-svgo@^4.0.2:
+  version "4.0.2"
+  resolved "http://localhost:4873/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258"
+  integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==
+  dependencies:
+    is-svg "^3.0.0"
+    postcss "^7.0.0"
+    postcss-value-parser "^3.0.0"
+    svgo "^1.0.0"
+
+postcss-unique-selectors@^4.0.1:
+  version "4.0.1"
+  resolved "http://localhost:4873/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac"
+  integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==
+  dependencies:
+    alphanum-sort "^1.0.0"
+    postcss "^7.0.0"
+    uniqs "^2.0.0"
+
+postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0:
+  version "3.3.1"
+  resolved "http://localhost:4873/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
+  integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
+
+postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.0.3:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d"
+  integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg==
+
+postcss-value-parser@^4.1.0:
+  version "4.1.0"
+  resolved "http://localhost:4873/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
+  integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
+
+postcss@^6.0.1, postcss@^6.0.23:
+  version "6.0.23"
+  resolved "http://localhost:4873/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
+  integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==
+  dependencies:
+    chalk "^2.4.1"
+    source-map "^0.6.1"
+    supports-color "^5.4.0"
+
+postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.23, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6:
+  version "7.0.27"
+  resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9"
+  integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==
+  dependencies:
+    chalk "^2.4.2"
+    source-map "^0.6.1"
+    supports-color "^6.1.0"
+
+postcss@^7.0.1, postcss@^7.0.32:
+  version "7.0.35"
+  resolved "http://localhost:4873/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
+  integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==
+  dependencies:
+    chalk "^2.4.2"
+    source-map "^0.6.1"
+    supports-color "^6.1.0"
+
+potpack@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/potpack/-/potpack-1.0.1.tgz#d1b1afd89e4c8f7762865ec30bd112ab767e2ebf"
+  integrity sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw==
+
+prelude-ls@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
+  integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
+
+prelude-ls@~1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
+  integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
+
+prepend-http@^1.0.0, prepend-http@^1.0.1:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
+  integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
+
+prettier-linter-helpers@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
+  integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
+  dependencies:
+    fast-diff "^1.1.2"
+
+prettier@^2.2.1:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5"
+  integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
+
+prettier@~2.0.5:
+  version "2.0.5"
+  resolved "http://localhost:4873/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4"
+  integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==
+
+pretty-bytes@^5.2.0:
+  version "5.3.0"
+  resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.3.0.tgz#f2849e27db79fb4d6cfe24764fc4134f165989f2"
+  integrity sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg==
+
+pretty-error@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3"
+  integrity sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=
+  dependencies:
+    renderkid "^2.0.1"
+    utila "~0.4"
+
+pretty-format@^25.2.1, pretty-format@^25.5.0:
+  version "25.5.0"
+  resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a"
+  integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==
+  dependencies:
+    "@jest/types" "^25.5.0"
+    ansi-regex "^5.0.0"
+    ansi-styles "^4.0.0"
+    react-is "^16.12.0"
+
+pretty-format@^26.0.0, pretty-format@^26.6.2:
+  version "26.6.2"
+  resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93"
+  integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==
+  dependencies:
+    "@jest/types" "^26.6.2"
+    ansi-regex "^5.0.0"
+    ansi-styles "^4.0.0"
+    react-is "^17.0.1"
+
+pretty-hrtime@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
+  integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
+
+pretty-ms@^5.1.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-5.1.0.tgz#b906bdd1ec9e9799995c372e2b1c34f073f95384"
+  integrity sha512-4gaK1skD2gwscCfkswYQRmddUb2GJZtzDGRjHWadVHtK/DIKFufa12MvES6/xu1tVbUYeia5bmLcwJtZJQUqnw==
+  dependencies:
+    parse-ms "^2.1.0"
+
+pretty-ms@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-7.0.0.tgz#45781273110caf35f55cab21a8a9bd403a233dc0"
+  integrity sha512-J3aPWiC5e9ZeZFuSeBraGxSkGMOvulSWsxDByOcbD1Pr75YL3LSNIKIb52WXbCLE1sS5s4inBBbryjF4Y05Ceg==
+  dependencies:
+    parse-ms "^2.1.0"
+
+prismjs@^1.21.0, prismjs@^1.22.0, prismjs@~1.23.0:
+  version "1.23.0"
+  resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.23.0.tgz#d3b3967f7d72440690497652a9d40ff046067f33"
+  integrity sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==
+  optionalDependencies:
+    clipboard "^2.0.0"
+
+prismjs@^1.8.4:
+  version "1.19.0"
+  resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.19.0.tgz#713afbd45c3baca4b321569f2df39e17e729d4dc"
+  integrity sha512-IVFtbW9mCWm9eOIaEkNyo2Vl4NnEifis2GQ7/MLRG5TQe6t+4Sj9J5QWI9i3v+SS43uZBlCAOn+zYTVYQcPXJw==
+  optionalDependencies:
+    clipboard "^2.0.0"
+
+prismjs@~1.17.0:
+  version "1.17.1"
+  resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.17.1.tgz#e669fcbd4cdd873c35102881c33b14d0d68519be"
+  integrity sha512-PrEDJAFdUGbOP6xK/UsfkC5ghJsPJviKgnQOoxaDbBjwc8op68Quupwt1DeAFoG8GImPhiKXAvvsH7wDSLsu1Q==
+  optionalDependencies:
+    clipboard "^2.0.0"
+
+private@^0.1.8, private@~0.1.5:
+  version "0.1.8"
+  resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
+  integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
+
+probe.gl@^3.0.1, probe.gl@^3.1.1:
+  version "3.3.0"
+  resolved "http://localhost:4873/probe.gl/-/probe.gl-3.3.0.tgz#a64e2f007d36a6262b12f3b1e99ca5dc3762b3c3"
+  integrity sha512-59E6AEw4N8sU4PKfAl7S2UBYJCOa064WpEFcXfeFOB/36FJtplYY+261DqLjLAvOqRRHiKVEQUBo63PQ3jKeWA==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    "@probe.gl/stats" "3.3.0"
+
+process-nextick-args@^2.0.0, process-nextick-args@~2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+  integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
+
+process@^0.11.10:
+  version "0.11.10"
+  resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
+  integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
+
+progress-stream@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-2.0.0.tgz#fac63a0b3d11deacbb0969abcc93b214bce19ed5"
+  integrity sha1-+sY6Cz0R3qy7CWmrzJOyFLzhntU=
+  dependencies:
+    speedometer "~1.0.0"
+    through2 "~2.0.3"
+
+progress@^2.0.0:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
+  integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
+
+promise-inflight@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
+  integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
+
+promise-retry@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-1.1.1.tgz#6739e968e3051da20ce6497fb2b50f6911df3d6d"
+  integrity sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0=
+  dependencies:
+    err-code "^1.0.0"
+    retry "^0.10.0"
+
+promise.allsettled@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/promise.allsettled/-/promise.allsettled-1.0.2.tgz#d66f78fbb600e83e863d893e98b3d4376a9c47c9"
+  integrity sha512-UpcYW5S1RaNKT6pd+s9jp9K9rlQge1UXKskec0j6Mmuq7UJCvlS2J2/s/yuPN8ehftf9HXMxWlKiPbGGUzpoRg==
+  dependencies:
+    array.prototype.map "^1.0.1"
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    function-bind "^1.1.1"
+    iterate-value "^1.0.0"
+
+promise.prototype.finally@^3.1.0:
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/promise.prototype.finally/-/promise.prototype.finally-3.1.2.tgz#b8af89160c9c673cefe3b4c4435b53cfd0287067"
+  integrity sha512-A2HuJWl2opDH0EafgdjwEw7HysI8ff/n4lW4QEVBCUXFk9QeGecBWv0Deph0UmLe3tTNYegz8MOjsVuE6SMoJA==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.0"
+    function-bind "^1.1.1"
+
+promise@^7.1.1:
+  version "7.3.1"
+  resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
+  integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==
+  dependencies:
+    asap "~2.0.3"
+
+prompts@^2.0.1:
+  version "2.3.2"
+  resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068"
+  integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==
+  dependencies:
+    kleur "^3.0.3"
+    sisteransi "^1.0.4"
+
+promzard@^0.3.0:
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee"
+  integrity sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=
+  dependencies:
+    read "1"
+
+prop-types-exact@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz#825d6be46094663848237e3925a98c6e944e9869"
+  integrity sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==
+  dependencies:
+    has "^1.0.3"
+    object.assign "^4.1.0"
+    reflect.ownkeys "^0.2.0"
+
+prop-types-extra@^1.0.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/prop-types-extra/-/prop-types-extra-1.1.1.tgz#58c3b74cbfbb95d304625975aa2f0848329a010b"
+  integrity sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==
+  dependencies:
+    react-is "^16.3.2"
+    warning "^4.0.0"
+
+prop-types@15.5.10:
+  version "15.5.10"
+  resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154"
+  integrity sha1-J5ffwxJhguOpXj37suiT3ddFYVQ=
+  dependencies:
+    fbjs "^0.8.9"
+    loose-envify "^1.3.1"
+
+prop-types@15.x, prop-types@^15.0.0, prop-types@^15.5.0, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2:
+  version "15.7.2"
+  resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
+  integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
+  dependencies:
+    loose-envify "^1.4.0"
+    object-assign "^4.1.1"
+    react-is "^16.8.1"
+
+property-information@^5.0.0:
+  version "5.4.0"
+  resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.4.0.tgz#16e08f13f4e5c4a7be2e4ec431c01c4f8dba869a"
+  integrity sha512-nmMWAm/3vKFGmmOWOcdLjgq/Hlxa+hsuR/px1Lp/UGEyc5A22A6l78Shc2C0E71sPmAqglni+HrS7L7VJ7AUCA==
+  dependencies:
+    xtend "^4.0.0"
+
+property-information@^5.3.0:
+  version "5.6.0"
+  resolved "http://localhost:4873/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69"
+  integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==
+  dependencies:
+    xtend "^4.0.0"
+
+proto-list@~1.2.1:
+  version "1.2.4"
+  resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
+  integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
+
+protocol-buffers-schema@^3.3.1:
+  version "3.4.0"
+  resolved "https://registry.yarnpkg.com/protocol-buffers-schema/-/protocol-buffers-schema-3.4.0.tgz#2f0ea31ca96627d680bf2fefae7ebfa2b6453eae"
+  integrity sha512-G/2kcamPF2S49W5yaMGdIpkG6+5wZF0fzBteLKgEHjbNzqjZQ85aAs1iJGto31EJaSTkNvHs5IXuHSaTLWBAiA==
+
+protocols@^1.1.0, protocols@^1.4.0:
+  version "1.4.7"
+  resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.7.tgz#95f788a4f0e979b291ffefcf5636ad113d037d32"
+  integrity sha512-Fx65lf9/YDn3hUX08XUc0J8rSux36rEsyiv21ZGUC1mOyeM3lTRpZLcrm8aAolzS4itwVfm7TAPyxC2E5zd6xg==
+
+protoduck@^5.0.1:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/protoduck/-/protoduck-5.0.1.tgz#03c3659ca18007b69a50fd82a7ebcc516261151f"
+  integrity sha512-WxoCeDCoCBY55BMvj4cAEjdVUFGRWed9ZxPlqTKYyw1nDDTQ4pqmnIMAGfJlg7Dx35uB/M+PHJPTmGOvaCaPTg==
+  dependencies:
+    genfun "^5.0.0"
+
+proxy-addr@~2.0.5:
+  version "2.0.6"
+  resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
+  integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==
+  dependencies:
+    forwarded "~0.1.2"
+    ipaddr.js "1.9.1"
+
+prr@~1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
+  integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
+
+pseudomap@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
+  integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
+
+psl@^1.1.28:
+  version "1.8.0"
+  resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
+  integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
+
+public-encrypt@^4.0.0:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
+  integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
+  dependencies:
+    bn.js "^4.1.0"
+    browserify-rsa "^4.0.0"
+    create-hash "^1.1.0"
+    parse-asn1 "^5.0.0"
+    randombytes "^2.0.1"
+    safe-buffer "^5.1.2"
+
+pump@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
+  integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
+  dependencies:
+    end-of-stream "^1.1.0"
+    once "^1.3.1"
+
+pump@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
+  integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
+  dependencies:
+    end-of-stream "^1.1.0"
+    once "^1.3.1"
+
+pumpify@^1.3.3:
+  version "1.5.1"
+  resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
+  integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
+  dependencies:
+    duplexify "^3.6.0"
+    inherits "^2.0.3"
+    pump "^2.0.0"
+
+punycode@1.3.2:
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
+  integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
+
+punycode@^1.2.4:
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
+  integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
+
+punycode@^2.1.0, punycode@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
+  integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
+
+pure-color@^1.2.0:
+  version "1.3.0"
+  resolved "http://localhost:4873/pure-color/-/pure-color-1.3.0.tgz#1fe064fb0ac851f0de61320a8bf796836422f33e"
+  integrity sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4=
+
+q@^1.1.2, q@^1.5.1:
+  version "1.5.1"
+  resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
+  integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
+
+qs@6.7.0:
+  version "6.7.0"
+  resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
+  integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
+
+qs@^6.6.0:
+  version "6.9.3"
+  resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.3.tgz#bfadcd296c2d549f1dffa560619132c977f5008e"
+  integrity sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==
+
+qs@~6.5.2:
+  version "6.5.2"
+  resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
+  integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
+
+query-string@^4.1.0, query-string@^4.2.2:
+  version "4.3.4"
+  resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
+  integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
+  dependencies:
+    object-assign "^4.1.0"
+    strict-uri-encode "^1.0.0"
+
+query-string@^6.13.7:
+  version "6.13.8"
+  resolved "http://localhost:4873/query-string/-/query-string-6.13.8.tgz#8cf231759c85484da3cf05a851810d8e825c1159"
+  integrity sha512-jxJzQI2edQPE/NPUOusNjO/ZOGqr1o2OBa/3M00fU76FsLXDVbJDv/p7ng5OdQyorKrkRz1oqfwmbe5MAMePQg==
+  dependencies:
+    decode-uri-component "^0.2.0"
+    split-on-first "^1.0.0"
+    strict-uri-encode "^2.0.0"
+
+querystring-es3@^0.2.0:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
+  integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
+
+querystring@0.2.0, querystring@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
+  integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
+
+querystringify@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e"
+  integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==
+
+quick-lru@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8"
+  integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g=
+
+quick-lru@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
+  integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
+
+quickselect@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-2.0.0.tgz#f19680a486a5eefb581303e023e98faaf25dd018"
+  integrity sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==
+
+quote-stream@^1.0.1, quote-stream@~1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/quote-stream/-/quote-stream-1.0.2.tgz#84963f8c9c26b942e153feeb53aae74652b7e0b2"
+  integrity sha1-hJY/jJwmuULhU/7rU6rnRlK34LI=
+  dependencies:
+    buffer-equal "0.0.1"
+    minimist "^1.1.3"
+    through2 "^2.0.0"
+
+raf@^3.3.0, raf@^3.4.1:
+  version "3.4.1"
+  resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
+  integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
+  dependencies:
+    performance-now "^2.1.0"
+
+railroad-diagrams@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e"
+  integrity sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=
+
+ramda@^0.21.0:
+  version "0.21.0"
+  resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.21.0.tgz#a001abedb3ff61077d4ff1d577d44de77e8d0a35"
+  integrity sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=
+
+ramda@^0.27.1:
+  version "0.27.1"
+  resolved "http://localhost:4873/ramda/-/ramda-0.27.1.tgz#66fc2df3ef873874ffc2da6aa8984658abacf5c9"
+  integrity sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==
+
+randexp@0.4.6:
+  version "0.4.6"
+  resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3"
+  integrity sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==
+  dependencies:
+    discontinuous-range "1.0.0"
+    ret "~0.1.10"
+
+randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
+  integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
+  dependencies:
+    safe-buffer "^5.1.0"
+
+randomfill@^1.0.3:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
+  integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
+  dependencies:
+    randombytes "^2.0.5"
+    safe-buffer "^5.1.0"
+
+range-parser@^1.2.1, range-parser@~1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+  integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+
+raw-body@2.4.0:
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
+  integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
+  dependencies:
+    bytes "3.1.0"
+    http-errors "1.7.2"
+    iconv-lite "0.4.24"
+    unpipe "1.0.0"
+
+raw-loader@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-3.1.0.tgz#5e9d399a5a222cc0de18f42c3bc5e49677532b3f"
+  integrity sha512-lzUVMuJ06HF4rYveaz9Tv0WRlUMxJ0Y1hgSkkgg+50iEdaI0TthyEDe08KIHb0XsF6rn8WYTqPCaGTZg3sX+qA==
+  dependencies:
+    loader-utils "^1.1.0"
+    schema-utils "^2.0.1"
+
+raw-loader@^4.0.1:
+  version "4.0.2"
+  resolved "http://localhost:4873/raw-loader/-/raw-loader-4.0.2.tgz#1aac6b7d1ad1501e66efdac1522c73e59a584eb6"
+  integrity sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==
+  dependencies:
+    loader-utils "^2.0.0"
+    schema-utils "^3.0.0"
+
+rc-align@^4.0.0:
+  version "4.0.9"
+  resolved "https://registry.yarnpkg.com/rc-align/-/rc-align-4.0.9.tgz#46d8801c4a139ff6a65ad1674e8efceac98f85f2"
+  integrity sha512-myAM2R4qoB6LqBul0leaqY8gFaiECDJ3MtQDmzDo9xM9NRT/04TvWOYd2YHU9zvGzqk9QXF6S9/MifzSKDZeMw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    dom-align "^1.7.0"
+    rc-util "^5.3.0"
+    resize-observer-polyfill "^1.5.1"
+
+rc-cascader@~1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/rc-cascader/-/rc-cascader-1.4.0.tgz#d731ea8e07433558627941036091a2820e895474"
+  integrity sha512-6kgQljDQEKjVAVRkZtvvoi+2qv4u42M6oLuvt4ZDBa16r3X9ZN8TAq3atVyC840ivbGKlHT50OcdVx/iwiHc1w==
+  dependencies:
+    array-tree-filter "^2.1.0"
+    rc-trigger "^5.0.4"
+    rc-util "^5.0.1"
+    warning "^4.0.1"
+
+rc-checkbox@~2.3.0:
+  version "2.3.1"
+  resolved "https://registry.yarnpkg.com/rc-checkbox/-/rc-checkbox-2.3.1.tgz#2a61bc43017c783bd2e9f1a67553bf8efe7aa4d3"
+  integrity sha512-i290/iTqmZ0WtI2UPIryqT9rW6O99+an4KeZIyZDH3r+Jbb6YdddaWNdzq7g5m9zaNhJvgjf//wJtC4fvve2Tg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+
+rc-collapse@~3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/rc-collapse/-/rc-collapse-3.1.0.tgz#4ce5e612568c5fbeaf368cc39214471c1461a1a1"
+  integrity sha512-EwpNPJcLe7b+5JfyaxM9ZNnkCgqArt3QQO0Cr5p5plwz/C9h8liAmjYY5I4+hl9lAjBqb7ZwLu94+z+rt5g1WQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.3.4"
+    rc-util "^5.2.1"
+    shallowequal "^1.1.0"
+
+rc-dialog@~8.4.0:
+  version "8.4.3"
+  resolved "https://registry.yarnpkg.com/rc-dialog/-/rc-dialog-8.4.3.tgz#de8650ce7d1fcb6c1f7e065b94a6894b9a5a54a4"
+  integrity sha512-LHsWXb+2Cy4vEOeJcPvk9M0WSr80Gi438ov5rXt3E6XB4j+53Z+vMFRr+TagnVuOVQRCLmmzT4qutfm2U1OK6w==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-motion "^2.3.0"
+    rc-util "^5.0.1"
+
+rc-dialog@~8.5.0, rc-dialog@~8.5.1:
+  version "8.5.1"
+  resolved "http://localhost:4873/rc-dialog/-/rc-dialog-8.5.1.tgz#df316dd93e1685d7df1f5e4164ee35cba4a9af88"
+  integrity sha512-EcLgHHjF3Jp4C+TFceO2j7gIrpx0YIhY6ronki5QJDL/z+qWYozY5RNh4rnv4a6R21SPVhV+SK+gMMlMHZ/YRQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-motion "^2.3.0"
+    rc-util "^5.6.1"
+
+rc-drawer@~4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/rc-drawer/-/rc-drawer-4.1.0.tgz#d7bf0bc030300b62d282bc04e053b9acad6b08b4"
+  integrity sha512-kjeQFngPjdzAFahNIV0EvEBoIKMOnvUsAxpkSPELoD/1DuR4nLafom5ryma+TIxGwkFJ92W6yjsMi1U9aiOTeQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-util "^5.0.1"
+
+rc-drawer@~4.2.0:
+  version "4.2.2"
+  resolved "http://localhost:4873/rc-drawer/-/rc-drawer-4.2.2.tgz#5fd8b18ce20575ff22b36e0c5ddbe363c13db555"
+  integrity sha512-zw48FATkAmJrEnfeRWiMqvKAzqGzUDLN1UXlluB7q7GgbR6mJFvc+QsmNrgxsFuMz86Lh9mKSIi7rXlPINmuzw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-util "^5.7.0"
+
+rc-dropdown@^3.1.3, rc-dropdown@~3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/rc-dropdown/-/rc-dropdown-3.2.0.tgz#da6c2ada403842baee3a9e909a0b1a91ba3e1090"
+  integrity sha512-j1HSw+/QqlhxyTEF6BArVZnTmezw2LnSmRk6I9W7BCqNCKaRwleRmMMs1PHbuaG8dKHVqP6e21RQ7vPBLVnnNw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-trigger "^5.0.4"
+
+rc-field-form@~1.17.0:
+  version "1.17.2"
+  resolved "https://registry.yarnpkg.com/rc-field-form/-/rc-field-form-1.17.2.tgz#81b09d320f9b455673867bf3a1f5b2aac0fd0a15"
+  integrity sha512-+pufRy5x4G5yHxQ3k1nhgQqyqerPVJQ2jaLGojHjNpmZ2Si20o1KniMLsZxe6X8dfq4ePmH6M3IngfDnS+CrMA==
+  dependencies:
+    "@babel/runtime" "^7.8.4"
+    async-validator "^3.0.3"
+    rc-util "^5.0.0"
+
+rc-field-form@~1.18.0:
+  version "1.18.1"
+  resolved "http://localhost:4873/rc-field-form/-/rc-field-form-1.18.1.tgz#41027816c80d1acf6f51db085d34c2c35213a701"
+  integrity sha512-/YRnelnHLxygl/ROGhFqfCT+uAZ5xLvu3qjtlETOneb7fXKk7tqp+RGfYqZ4uNViXlsfxox3qqMMTVet6wYfEA==
+  dependencies:
+    "@babel/runtime" "^7.8.4"
+    async-validator "^3.0.3"
+    rc-util "^5.0.0"
+
+rc-image@~4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/rc-image/-/rc-image-4.2.0.tgz#3b7a977f9ecfbac046296c2908d99cb1f8795c65"
+  integrity sha512-yGqq6wPrIn86hMfC1Hl7M3NNS6zqnl9dvFWJg/StuI86jZBU0rm9rePTfKs+4uiwU3HXxpfsXlaG2p8GWRDLiw==
+  dependencies:
+    "@ant-design/icons" "^4.2.2"
+    "@babel/runtime" "^7.11.2"
+    classnames "^2.2.6"
+    rc-dialog "~8.4.0"
+    rc-util "^5.0.6"
+
+rc-image@~5.2.0:
+  version "5.2.2"
+  resolved "http://localhost:4873/rc-image/-/rc-image-5.2.2.tgz#08ab21ffce90563cc1459aed14d940d638189f15"
+  integrity sha512-Zv8Qyftw5P2nbqaueUOX1Fq1c5XlY/hTEWzUxINQh+qt/K1e5vF5sriTy1KH9B6GY4LVwIk4oHweDJemCWYDcw==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    classnames "^2.2.6"
+    rc-dialog "~8.5.0"
+    rc-util "^5.0.6"
+
+rc-input-number@~6.1.0:
+  version "6.1.1"
+  resolved "https://registry.yarnpkg.com/rc-input-number/-/rc-input-number-6.1.1.tgz#818c426942d1b4dc4d6d2639d741ca67773a9118"
+  integrity sha512-9t2xf1G0YEism7FAXAvF1huBk7ZNABPBf6NL+3/aDL123WiT/vhhod4cldiDWTM1Yb2EDKR//ZIa546ScdsUaA==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-util "^5.0.1"
+
+rc-input-number@~6.2.0:
+  version "6.2.0"
+  resolved "http://localhost:4873/rc-input-number/-/rc-input-number-6.2.0.tgz#8e34ce0fb1078ffd237151dac2b7a66cdc9996f9"
+  integrity sha512-EaDkGvJN1YZdLntY2isYjHejgX6hDCcW8Te7hIGsVp3Egzn179s1PVVLQmSEfT1YC+bf+SE5EZOpw0IH7dq33w==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-util "^5.0.1"
+
+rc-mentions@~1.5.0:
+  version "1.5.2"
+  resolved "https://registry.yarnpkg.com/rc-mentions/-/rc-mentions-1.5.2.tgz#94559a369de73e7cc92f343badaf94499fb410a7"
+  integrity sha512-GqV0tOtHY3pLpOsFCxJ2i6Ad8AVfxFmz0NlD/8rb8IG8pMpthJKcdfnXlNZRx3Fa9O4YEgJpdSY1WEbmlx2DWQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-menu "^8.0.1"
+    rc-textarea "^0.3.0"
+    rc-trigger "^5.0.4"
+    rc-util "^5.0.1"
+
+rc-menu@^8.0.1, rc-menu@^8.6.1:
+  version "8.10.0"
+  resolved "https://registry.yarnpkg.com/rc-menu/-/rc-menu-8.10.0.tgz#f14ff6456073bcf29603da818774543a73e44e92"
+  integrity sha512-mafcLoKtVlH9HDW52NmwenQ9vjvgxtR46NfYAexJEIUTZ9Ze2veZUkEKjhOJlzrUHEYtCoNslpqyy4iVN08Glw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    mini-store "^3.0.1"
+    omit.js "^2.0.0"
+    rc-motion "^2.0.1"
+    rc-trigger "^5.1.2"
+    rc-util "^5.0.1"
+    resize-observer-polyfill "^1.5.0"
+    shallowequal "^1.1.0"
+
+rc-menu@~8.10.0:
+  version "8.10.1"
+  resolved "https://registry.yarnpkg.com/rc-menu/-/rc-menu-8.10.1.tgz#5637d85760ea6bd6ead49f44ae29686c5cc59798"
+  integrity sha512-HmTOLPkSrz5RcdDopD4+nI95YXR2DzdSq9ek3NX2EVgD1UHknlp1QAEJ5MompYdAqdtOspJUqgM/zNt0iQALOw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    mini-store "^3.0.1"
+    omit.js "^2.0.0"
+    rc-motion "^2.0.1"
+    rc-trigger "^5.1.2"
+    rc-util "^5.5.0"
+    resize-observer-polyfill "^1.5.0"
+    shallowequal "^1.1.0"
+
+rc-motion@^2.0.0, rc-motion@^2.0.1, rc-motion@^2.2.0, rc-motion@^2.3.0:
+  version "2.3.4"
+  resolved "https://registry.yarnpkg.com/rc-motion/-/rc-motion-2.3.4.tgz#69fe1313754ee1e746e42ec971e361cbc755456e"
+  integrity sha512-La9JjfM58Vrwds1wM9OAkRTWsGeVqNnftI1YFti2WtaA2Ernk2vjbVio9hGbzhF0EvGrEvrzS96Mx/6lGT6Z0w==
+  dependencies:
+    "@babel/runtime" "^7.11.1"
+    classnames "^2.2.1"
+    rc-util "^5.2.1"
+
+rc-motion@^2.3.4, rc-motion@^2.4.0:
+  version "2.4.1"
+  resolved "https://registry.yarnpkg.com/rc-motion/-/rc-motion-2.4.1.tgz#323f47c8635e6b2bc0cba2dfad25fc415b58e1dc"
+  integrity sha512-TWLvymfMu8SngPx5MDH8dQ0D2RYbluNTfam4hY/dNNx9RQ3WtGuZ/GXHi2ymLMzH+UNd6EEFYkOuR5JTTtm8Xg==
+  dependencies:
+    "@babel/runtime" "^7.11.1"
+    classnames "^2.2.1"
+    rc-util "^5.2.1"
+
+rc-notification@~4.5.2:
+  version "4.5.4"
+  resolved "https://registry.yarnpkg.com/rc-notification/-/rc-notification-4.5.4.tgz#1292e163003db4b9162c856a4630e5d0f1359356"
+  integrity sha512-VsN0ouF4uglE5g3C9oDsXLNYX0Sz++ZNUFYCswkxhpImYJ9u6nJOpyA71uOYDVCu6bAF54Y5Hi/b+EcnMzkepg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.2.0"
+    rc-util "^5.0.1"
+
+rc-overflow@^1.0.0:
+  version "1.0.2"
+  resolved "http://localhost:4873/rc-overflow/-/rc-overflow-1.0.2.tgz#f56bcd920029979989f576d55084b81f9632c19c"
+  integrity sha512-GXj4DAyNxm4f57LvXLwhJaZoJHzSge2l2lQq64MZP7NJAfLpQqOLD+v9JMV9ONTvDPZe8kdzR+UMmkAn7qlzFA==
+  dependencies:
+    "@babel/runtime" "^7.11.1"
+    classnames "^2.2.1"
+    rc-resize-observer "^1.0.0"
+    rc-util "^5.5.1"
+
+rc-pagination@~3.1.2:
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/rc-pagination/-/rc-pagination-3.1.2.tgz#ab5eacd9c51f869e350d2245064babe91bc1f046"
+  integrity sha512-KbJvkTvRiD51vTIAi0oTARPUHNb0iV6njbDBe8yLkc3PWYDJaszASfuss6YJ98EIxEeGzuEk6xsUAEKWRJgz2g==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+
+rc-picker@~2.4.1:
+  version "2.4.3"
+  resolved "https://registry.yarnpkg.com/rc-picker/-/rc-picker-2.4.3.tgz#ad15ee1d85e4b3e213ec66215ecd39e6a09be995"
+  integrity sha512-tOIHslTQKpoGNmbpp6YOBwS39dQSvtAuhOm3bWCkkc4jCqUqeR/velCwqefZX1BX4+t1gUMc1dIia9XvOKrEkg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    date-fns "^2.15.0"
+    dayjs "^1.8.30"
+    moment "^2.24.0"
+    rc-trigger "^5.0.4"
+    rc-util "^5.4.0"
+    shallowequal "^1.1.0"
+
+rc-picker@~2.5.1:
+  version "2.5.4"
+  resolved "http://localhost:4873/rc-picker/-/rc-picker-2.5.4.tgz#341cc78796605d2667b6b47a0c943ed5f00400bc"
+  integrity sha512-H2G5armWMWUWbCt1jEdJQkkUvrh3IzC2Sd9Wb/T6AtMI3mjyd/TQEe68pWozS+NGA/ElDO9PiFiZjiHDep6NAQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    date-fns "^2.15.0"
+    dayjs "^1.8.30"
+    moment "^2.24.0"
+    rc-trigger "^5.0.4"
+    rc-util "^5.4.0"
+    shallowequal "^1.1.0"
+
+rc-progress@~3.1.0:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/rc-progress/-/rc-progress-3.1.1.tgz#f7ba5eb33cc438862513ab5a71739feaf6b3ef4f"
+  integrity sha512-1ns3pW7ll9bHfdXtlVLF+vngdvlxiCDtiqwXnZFEdurst11JTiPxVdeqnCNbhWx5hP4kCKkAPqG1N0FVfTSUGA==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+
+rc-rate@~2.9.0:
+  version "2.9.0"
+  resolved "https://registry.yarnpkg.com/rc-rate/-/rc-rate-2.9.0.tgz#33b07732e2f145ce1cbc2c46d8ede84319eefe6d"
+  integrity sha512-DqXWWpA3+oQfHVBYfk5Myhl1YoNYYX9roYYIF7mLiDBI5SCErOYpLaCV8PdZ3IUN+F0AtejXxy4fuHgp1cDtwQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-util "^5.0.1"
+
+rc-resize-observer@^0.2.0, rc-resize-observer@^0.2.1, rc-resize-observer@^0.2.3:
+  version "0.2.6"
+  resolved "https://registry.yarnpkg.com/rc-resize-observer/-/rc-resize-observer-0.2.6.tgz#c1b642f6d1293e34c4e3715f47f69443a167b825"
+  integrity sha512-YX6nYnd6fk7zbuvT6oSDMKiZjyngjHoy+fz+vL3Tez38d/G5iGdaDJa2yE7345G6sc4Mm1IGRUIwclvltddhmA==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    rc-util "^5.0.0"
+    resize-observer-polyfill "^1.5.1"
+
+rc-resize-observer@^1.0.0:
+  version "1.0.0"
+  resolved "http://localhost:4873/rc-resize-observer/-/rc-resize-observer-1.0.0.tgz#97fb89856f62fec32ab6e40933935cf58e2e102d"
+  integrity sha512-RgKGukg1mlzyGdvzF7o/LGFC8AeoMH9aGzXTUdp6m+OApvmRdUuOscq/Y2O45cJA+rXt1ApWlpFoOIioXL3AGg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    rc-util "^5.0.0"
+    resize-observer-polyfill "^1.5.1"
+
+rc-select@^11.1.1:
+  version "11.5.0"
+  resolved "https://registry.yarnpkg.com/rc-select/-/rc-select-11.5.0.tgz#360d2762207c2fef2622e7fcc542fc94dfc9d10f"
+  integrity sha512-izVcxMMo64ZbuYDaB+zsybPjli5Ub6fKM4OeChDqn4MwrHnPjCEsO3bXjeSEXK2LCC2DXQAdr1oYvHGw9QAGVw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.0.1"
+    rc-trigger "^5.0.4"
+    rc-util "^5.0.1"
+    rc-virtual-list "^3.2.0"
+    warning "^4.0.3"
+
+rc-select@^12.0.0, rc-select@~12.1.0:
+  version "12.1.3"
+  resolved "http://localhost:4873/rc-select/-/rc-select-12.1.3.tgz#3d1715ba24313951f184b446ac352cfc2d548a20"
+  integrity sha512-pMJ27VQRh5QbyGLSE+by4tORYucNFbZxON+Ywj81qjXAGMjvhMcOOvlv1RZRNdnZxaMwH//3iDPOf80b0AJxZg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.0.1"
+    rc-overflow "^1.0.0"
+    rc-trigger "^5.0.4"
+    rc-util "^5.0.1"
+    rc-virtual-list "^3.2.0"
+
+rc-select@~11.5.3:
+  version "11.5.3"
+  resolved "https://registry.yarnpkg.com/rc-select/-/rc-select-11.5.3.tgz#682913f3669596fb794e2b4a5c619974c5ab45d1"
+  integrity sha512-ASSO4J/ayfbQQ+KOEounIMGhySDHpQtrIuH1WEABOBy8HgKec8kOLmyLH+YIXSUDnTf/gtxmflgFtl7sQ9pkSw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.0.1"
+    rc-trigger "^5.0.4"
+    rc-util "^5.0.1"
+    rc-virtual-list "^3.2.0"
+    warning "^4.0.3"
+
+rc-slider@~9.6.1:
+  version "9.6.2"
+  resolved "https://registry.yarnpkg.com/rc-slider/-/rc-slider-9.6.2.tgz#7ea1e9494ed90f602e871c43bccfe3057a0c59f6"
+  integrity sha512-uctdE1768ZmSjCcRmx6ffm/uoW/zl/SOvanvoilWyZ1NRlwkZCa1R20AIJlU9VDJo/FswWnqXqt6iDp2CnDVig==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-tooltip "^5.0.1"
+    rc-util "^5.0.0"
+    shallowequal "^1.1.0"
+
+rc-slider@~9.7.1:
+  version "9.7.1"
+  resolved "http://localhost:4873/rc-slider/-/rc-slider-9.7.1.tgz#63535177a74a3ee44f090909e8c6f98426eb9dba"
+  integrity sha512-r9r0dpFA3PEvxBhIfVi1lVzxuSogWxeY+tGvi2AqMM1rPgaOXQ7WbtT+9kVFkJ9K8TntA/vYPgiCCKfN29KTkw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-tooltip "^5.0.1"
+    rc-util "^5.0.0"
+    shallowequal "^1.1.0"
+
+rc-steps@~4.1.0:
+  version "4.1.3"
+  resolved "https://registry.yarnpkg.com/rc-steps/-/rc-steps-4.1.3.tgz#208580e22db619e3830ddb7fa41bc886c65d9803"
+  integrity sha512-GXrMfWQOhN3sVze3JnzNboHpQdNHcdFubOETUHyDpa/U3HEKBZC3xJ8XK4paBgF4OJ3bdUVLC+uBPc6dCxvDYA==
+  dependencies:
+    "@babel/runtime" "^7.10.2"
+    classnames "^2.2.3"
+    rc-util "^5.0.1"
+
+rc-switch@~3.2.0:
+  version "3.2.2"
+  resolved "https://registry.yarnpkg.com/rc-switch/-/rc-switch-3.2.2.tgz#d001f77f12664d52595b4f6fb425dd9e66fba8e8"
+  integrity sha512-+gUJClsZZzvAHGy1vZfnwySxj+MjLlGRyXKXScrtCTcmiYNPzxDFOxdQ/3pK1Kt/0POvwJ/6ALOR8gwdXGhs+A==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    rc-util "^5.0.1"
+
+rc-table@~7.11.0:
+  version "7.11.1"
+  resolved "https://registry.yarnpkg.com/rc-table/-/rc-table-7.11.1.tgz#b31f548feeb0fc03a2b650cb1fedbed0a8926bb7"
+  integrity sha512-Xq7ibC/a2kj8ywLeKhGcv689JZaldjPxxe15h89qGho6/sR9YkIUD07KjLCGFaJ0LkhGBNY1XYv2VOUFGOQuYg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-resize-observer "^0.2.0"
+    rc-util "^5.4.0"
+    shallowequal "^1.1.0"
+
+rc-table@~7.13.0:
+  version "7.13.1"
+  resolved "http://localhost:4873/rc-table/-/rc-table-7.13.1.tgz#25ca6c4f8f62582f5607c5061c3aa4cd634b8009"
+  integrity sha512-zg2ldSRHj1ENGsSykSKV5axnWkSaaly+wjRcD1Bspx4WHrf3m/I1WYjpVvOeer2e06bfKb6lmkK0HLxQ1cZtsg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-resize-observer "^1.0.0"
+    rc-util "^5.4.0"
+    shallowequal "^1.1.0"
+
+rc-tabs@~11.7.0:
+  version "11.7.0"
+  resolved "https://registry.yarnpkg.com/rc-tabs/-/rc-tabs-11.7.0.tgz#e03a03fbf5b8d04a1c9f12f24a621b1d7ff6a093"
+  integrity sha512-nYwQcgML2drM0iau4aa6HI4qyyZSW0WpspCAtO5KGjXwHzUJcvv3qgLVuoQOWQaDDHXkI9Jj8U7Y/Hcrdyj1Kw==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    classnames "2.x"
+    raf "^3.4.1"
+    rc-dropdown "^3.1.3"
+    rc-menu "^8.6.1"
+    rc-resize-observer "^0.2.1"
+    rc-util "^5.0.0"
+
+rc-textarea@^0.3.0, rc-textarea@~0.3.0:
+  version "0.3.1"
+  resolved "https://registry.yarnpkg.com/rc-textarea/-/rc-textarea-0.3.1.tgz#e81e1ef6f0e29729f9f80bb266cf6769dd7ab69a"
+  integrity sha512-bO5Ol5uD6A++aWI6BJ0Pa/8OZcGeacP9LxIGkUqkCwPyOG3kaLOsWb8ya4xCfrsC2P4vDTsHsJmmmG5wuXGFRg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    omit.js "^2.0.0"
+    rc-resize-observer "^0.2.3"
+
+rc-tooltip@^5.0.1, rc-tooltip@~5.0.0:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/rc-tooltip/-/rc-tooltip-5.0.1.tgz#b82c4259604d2cb62ca610ed7932dd37fc6ef61d"
+  integrity sha512-3AnxhUS0j74xAV3khrKw8o6rg+Ima3nw09DJBezMPnX3ImQUAnayWsPSlN1mEnihjA43rcFkGM1emiKE+CXyMQ==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    rc-trigger "^5.0.0"
+
+rc-tree-select@~4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/rc-tree-select/-/rc-tree-select-4.2.0.tgz#ca19163b2ccfe0772fd7b8148266dddd197d0fe1"
+  integrity sha512-VrrvBiOov6WR44RTGMqSw1Dmodg6Y++EH6a6R0ew43qsV4Ob0FGYRgoX811kImtt2Z+oAPJ6zZXN4WKtsQd3Gw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-select "^11.1.1"
+    rc-tree "^4.0.0"
+    rc-util "^5.0.5"
+
+rc-tree-select@~4.3.0:
+  version "4.3.0"
+  resolved "http://localhost:4873/rc-tree-select/-/rc-tree-select-4.3.0.tgz#714a4fe658aa73f2a7b0aa4bd6e43be63194a6ce"
+  integrity sha512-EEXB9dKBsJNJuKIU5NERZsaJ71GDGIj5uWLl7A4XiYr2jXM4JICfScvvp3O5jHMDfhqmgpqNc0z90mHkgh3hKg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-select "^12.0.0"
+    rc-tree "^4.0.0"
+    rc-util "^5.0.5"
+
+rc-tree@^4.0.0, rc-tree@~4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/rc-tree/-/rc-tree-4.0.0.tgz#2f972b4a5e23ea17df05ec9f7ec43de350bea3bf"
+  integrity sha512-C2xlkA+/IypkHBPzbpAJGVWJh2HjeRbYCusA/m5k09WT6hQT0nC7LtLVmnb7QZecdBQPhoOgQh8gPwBR+xEMjQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.0.1"
+    rc-util "^5.0.0"
+    rc-virtual-list "^3.0.1"
+
+rc-tree@~4.1.0:
+  version "4.1.1"
+  resolved "http://localhost:4873/rc-tree/-/rc-tree-4.1.1.tgz#d40f418b31b75e61886e3969481df1444232c98b"
+  integrity sha512-ufq7CkWfvTQa+xMPzEWYfOjTfsEALlPr0/IyujEG4+4d8NdaR3e+0dc8LkkVWoe1VCcXV2FQqAsgr2z/ThFUrQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.0.1"
+    rc-util "^5.0.0"
+    rc-virtual-list "^3.0.1"
+
+rc-trigger@^5.0.0, rc-trigger@^5.0.4, rc-trigger@^5.1.2:
+  version "5.1.2"
+  resolved "https://registry.yarnpkg.com/rc-trigger/-/rc-trigger-5.1.2.tgz#f0f89bba2318699e704492bddb20506ecd8f8916"
+  integrity sha512-A6UdDy95masAEIaNmazPtqHW1EOFDWi2C2bJGDpr9OYpmObDpWKdxyNijVbFb6l1viTkAU9d3FyStgNPddgFzw==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    classnames "^2.2.6"
+    rc-align "^4.0.0"
+    rc-motion "^2.0.0"
+    rc-util "^5.5.0"
+
+rc-trigger@^5.2.1:
+  version "5.2.1"
+  resolved "http://localhost:4873/rc-trigger/-/rc-trigger-5.2.1.tgz#54686220b884ed1e0750c4f2411fbb34d4928c99"
+  integrity sha512-XZilSlSDnb0L/R3Ff2xo9C0Fho2aBDoAn8u3coM60XdLqTCo24nsOh1bfAMm0uIB1qVjh5eqeyFqnBPmXi8pJg==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    classnames "^2.2.6"
+    rc-align "^4.0.0"
+    rc-motion "^2.0.0"
+    rc-util "^5.5.0"
+
+rc-upload@~3.3.1:
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/rc-upload/-/rc-upload-3.3.1.tgz#ad8658b2a796031930b35d2b07ab312b7cd4c9ed"
+  integrity sha512-KWkJbVM9BwU8qi/2jZwmZpAcdRzDkuyfn/yAOLu+nm47dyd6//MtxzQD3XZDFkC6jQ6D5FmlKn6DhmOfV3v43w==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-util "^5.2.0"
+
+rc-upload@~3.3.4:
+  version "3.3.4"
+  resolved "http://localhost:4873/rc-upload/-/rc-upload-3.3.4.tgz#b0668d18661595c69c0621cec220fd116cc79952"
+  integrity sha512-v2sirR4JL31UTHD/f0LGUdd+tpFaOVUTPeIEjAXRP9kRN8TFhqOgcXl5ixtyqj90FmtRUmKmafCv0EmhBQUHqQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-util "^5.2.0"
+
+rc-util@^5.0.0, rc-util@^5.0.1, rc-util@^5.0.5, rc-util@^5.0.6, rc-util@^5.0.7, rc-util@^5.1.0, rc-util@^5.2.0, rc-util@^5.2.1, rc-util@^5.3.0, rc-util@^5.4.0, rc-util@^5.5.0:
+  version "5.5.0"
+  resolved "https://registry.yarnpkg.com/rc-util/-/rc-util-5.5.0.tgz#76321bcb5c12f01f42bff9b971f170ff19506e5a"
+  integrity sha512-YJB+zZGvCll/bhxXRVLAekr7lOvTgqMlRIhgINoINfUek7wQvi5sft46NOi3yYUYhocpuW4k8+5okW46sBsZAQ==
+  dependencies:
+    react-is "^16.12.0"
+    shallowequal "^1.1.0"
+
+rc-util@^5.5.1, rc-util@^5.6.1, rc-util@^5.7.0:
+  version "5.8.0"
+  resolved "http://localhost:4873/rc-util/-/rc-util-5.8.0.tgz#8058d6b3cd4c0a336360171f74d6c4d08d5065ac"
+  integrity sha512-x8UGbURS1/9mMyqNMsRdCq+nBLefjcubfS++d/P/oAKZ2b0X2Zo6TPPPS4nKyZIK8Xvo4DFx5zfwJ9hUm9CRYQ==
+  dependencies:
+    "@babel/runtime" "^7.12.5"
+    react-is "^16.12.0"
+    shallowequal "^1.1.0"
+
+rc-virtual-list@^3.0.1, rc-virtual-list@^3.2.0:
+  version "3.2.2"
+  resolved "https://registry.yarnpkg.com/rc-virtual-list/-/rc-virtual-list-3.2.2.tgz#95f8f0c4238e081f4a998354492632eed6d71924"
+  integrity sha512-OepvZDQGUbQQBFk5m2Ds32rfO/tSj9gZkLbzwaIw/hwGgvatDmW+j97YQvFkUQp/XDgdSGcfFfj/6XTKpz0J4g==
+  dependencies:
+    classnames "^2.2.6"
+    rc-resize-observer "^0.2.3"
+    rc-util "^5.0.7"
+
+re-resizable@^6.6.1:
+  version "6.9.0"
+  resolved "http://localhost:4873/re-resizable/-/re-resizable-6.9.0.tgz#9c3059b389ced6ade602234cc5bb1e12d231cd47"
+  integrity sha512-3cUDG81ylyqI0Pdgle/RHwwRYq0ORZzsUaySOCO8IbEtNyaRtrIHYm/jMQ5pjcNiKCxR3vsSymIQZHwJq4gg2Q==
+  dependencies:
+    fast-memoize "^2.5.1"
+
+react-ace@^5.10.0:
+  version "5.10.0"
+  resolved "http://localhost:4873/react-ace/-/react-ace-5.10.0.tgz#e328b37ac52759f700be5afdb86ada2f5ec84c5e"
+  integrity sha512-aEK/XZCowP8IXq91e2DYqOtGhabk1bbjt+fyeW0UBcIkzDzP/RX/MeJKeyW7wsZcwElACVwyy9nnwXBTqgky3A==
+  dependencies:
+    brace "^0.11.0"
+    lodash.get "^4.4.2"
+    lodash.isequal "^4.1.1"
+    prop-types "^15.5.8"
+
+react-addons-create-fragment@^15.6.2:
+  version "15.6.2"
+  resolved "https://registry.yarnpkg.com/react-addons-create-fragment/-/react-addons-create-fragment-15.6.2.tgz#a394de7c2c7becd6b5475ba1b97ac472ce7c74f8"
+  integrity sha1-o5TefCx77Na1R1uhuXrEcs58dPg=
+  dependencies:
+    fbjs "^0.8.4"
+    loose-envify "^1.3.1"
+    object-assign "^4.1.0"
+
+react-base16-styling@^0.5.1:
+  version "0.5.3"
+  resolved "http://localhost:4873/react-base16-styling/-/react-base16-styling-0.5.3.tgz#3858f24e9c4dd8cbd3f702f3f74d581ca2917269"
+  integrity sha1-OFjyTpxN2MvT9wLz901YHKKRcmk=
+  dependencies:
+    base16 "^1.0.0"
+    lodash.curry "^4.0.1"
+    lodash.flow "^3.3.0"
+    pure-color "^1.2.0"
+
+react-bootstrap-slider@2.1.5:
+  version "2.1.5"
+  resolved "http://localhost:4873/react-bootstrap-slider/-/react-bootstrap-slider-2.1.5.tgz#2f79e57b69ddf2b5bd23310bddbd2de0c6bdfef3"
+  integrity sha512-7rO3JlCVIpr+XtwiSfg8r+MPqyl9KdLI61pNuSMBYYQZ42IWBC+kk/UDyYevp76aGAMtd9SCW8erxOvq+VpekQ==
+  dependencies:
+    bootstrap-slider "9.9.0"
+    es6bindall "^0.0.9"
+
+react-bootstrap@^0.33.1:
+  version "0.33.1"
+  resolved "https://registry.yarnpkg.com/react-bootstrap/-/react-bootstrap-0.33.1.tgz#e072592aa143b9792526281272eca754bc9a4940"
+  integrity sha512-qWTRravSds87P8WC82tETy2yIso8qDqlIm0czsrduCaYAFtHuyLu0XDbUlfLXeRzqgwm5sRk2wRaTNoiVkk/YQ==
+  dependencies:
+    "@babel/runtime-corejs2" "^7.0.0"
+    classnames "^2.2.5"
+    dom-helpers "^3.2.0"
+    invariant "^2.2.4"
+    keycode "^2.2.0"
+    prop-types "^15.6.1"
+    prop-types-extra "^1.0.1"
+    react-overlays "^0.9.0"
+    react-prop-types "^0.4.0"
+    react-transition-group "^2.0.0"
+    uncontrollable "^7.0.2"
+    warning "^3.0.0"
+
+react-checkbox-tree@^1.5.1:
+  version "1.6.0"
+  resolved "http://localhost:4873/react-checkbox-tree/-/react-checkbox-tree-1.6.0.tgz#6c471a610f1598c5f2e2c7b50bf11036159f5285"
+  integrity sha512-Hi5FeRCtyxClxZEiLvmCT5e/7w8iz0ppkoQyIEayZ35Nscdo4fbwow57EIs+MW0f7L+qnAHGTDmpfHnhxkljXg==
+  dependencies:
+    classnames "^2.2.5"
+    lodash "^4.17.10"
+    nanoid "^2.0.0"
+    prop-types "^15.5.8"
+
+react-clientside-effect@^1.2.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/react-clientside-effect/-/react-clientside-effect-1.2.2.tgz#6212fb0e07b204e714581dd51992603d1accc837"
+  integrity sha512-nRmoyxeok5PBO6ytPvSjKp9xwXg9xagoTK1mMjwnQxqM9Hd7MNPl+LS1bOSOe+CV2+4fnEquc7H/S8QD3q697A==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+
+react-color@^2.13.8:
+  version "2.19.3"
+  resolved "http://localhost:4873/react-color/-/react-color-2.19.3.tgz#ec6c6b4568312a3c6a18420ab0472e146aa5683d"
+  integrity sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==
+  dependencies:
+    "@icons/material" "^0.2.4"
+    lodash "^4.17.15"
+    lodash-es "^4.17.15"
+    material-colors "^1.2.1"
+    prop-types "^15.5.10"
+    reactcss "^1.2.0"
+    tinycolor2 "^1.4.1"
+
+react-color@^2.17.0:
+  version "2.18.0"
+  resolved "https://registry.yarnpkg.com/react-color/-/react-color-2.18.0.tgz#34956f0bac394f6c3bc01692fd695644cc775ffd"
+  integrity sha512-FyVeU1kQiSokWc8NPz22azl1ezLpJdUyTbWL0LPUpcuuYDrZ/Y1veOk9rRK5B3pMlyDGvTk4f4KJhlkIQNRjEA==
+  dependencies:
+    "@icons/material" "^0.2.4"
+    lodash "^4.17.11"
+    material-colors "^1.2.1"
+    prop-types "^15.5.10"
+    reactcss "^1.2.0"
+    tinycolor2 "^1.4.1"
+
+react-datetime@^3.0.4:
+  version "3.0.4"
+  resolved "http://localhost:4873/react-datetime/-/react-datetime-3.0.4.tgz#176159d08d35c9e750f0be2f0b974e4f9532ffa5"
+  integrity sha512-v6MVwCve+DRaLN2f22LTO5TlrPpkUXumPkp1zfrbhaFtSYGl2grZ2JtwJfLxRj/T4ACyePAV4srCR6cMSiQ/Iw==
+  dependencies:
+    prop-types "^15.5.7"
+
+react-dev-utils@^10.0.0:
+  version "10.2.1"
+  resolved "http://localhost:4873/react-dev-utils/-/react-dev-utils-10.2.1.tgz#f6de325ae25fa4d546d09df4bb1befdc6dd19c19"
+  integrity sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==
+  dependencies:
+    "@babel/code-frame" "7.8.3"
+    address "1.1.2"
+    browserslist "4.10.0"
+    chalk "2.4.2"
+    cross-spawn "7.0.1"
+    detect-port-alt "1.1.6"
+    escape-string-regexp "2.0.0"
+    filesize "6.0.1"
+    find-up "4.1.0"
+    fork-ts-checker-webpack-plugin "3.1.1"
+    global-modules "2.0.0"
+    globby "8.0.2"
+    gzip-size "5.1.1"
+    immer "1.10.0"
+    inquirer "7.0.4"
+    is-root "2.1.0"
+    loader-utils "1.2.3"
+    open "^7.0.2"
+    pkg-up "3.1.0"
+    react-error-overlay "^6.0.7"
+    recursive-readdir "2.2.2"
+    shell-quote "1.7.2"
+    strip-ansi "6.0.0"
+    text-table "0.2.0"
+
+react-dev-utils@^9.0.0:
+  version "9.1.0"
+  resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-9.1.0.tgz#3ad2bb8848a32319d760d0a84c56c14bdaae5e81"
+  integrity sha512-X2KYF/lIGyGwP/F/oXgGDF24nxDA2KC4b7AFto+eqzc/t838gpSGiaU8trTqHXOohuLxxc5qi1eDzsl9ucPDpg==
+  dependencies:
+    "@babel/code-frame" "7.5.5"
+    address "1.1.2"
+    browserslist "4.7.0"
+    chalk "2.4.2"
+    cross-spawn "6.0.5"
+    detect-port-alt "1.1.6"
+    escape-string-regexp "1.0.5"
+    filesize "3.6.1"
+    find-up "3.0.0"
+    fork-ts-checker-webpack-plugin "1.5.0"
+    global-modules "2.0.0"
+    globby "8.0.2"
+    gzip-size "5.1.1"
+    immer "1.10.0"
+    inquirer "6.5.0"
+    is-root "2.1.0"
+    loader-utils "1.2.3"
+    open "^6.3.0"
+    pkg-up "2.0.0"
+    react-error-overlay "^6.0.3"
+    recursive-readdir "2.2.2"
+    shell-quote "1.7.2"
+    sockjs-client "1.4.0"
+    strip-ansi "5.2.0"
+    text-table "0.2.0"
+
+react-dnd-html5-backend@^11.1.3:
+  version "11.1.3"
+  resolved "http://localhost:4873/react-dnd-html5-backend/-/react-dnd-html5-backend-11.1.3.tgz#2749f04f416ec230ea193f5c1fbea2de7dffb8f7"
+  integrity sha512-/1FjNlJbW/ivkUxlxQd7o3trA5DE33QiRZgxent3zKme8DwF4Nbw3OFVhTRFGaYhHFNL1rZt6Rdj1D78BjnNLw==
+  dependencies:
+    dnd-core "^11.1.3"
+
+react-dnd@^11.1.3:
+  version "11.1.3"
+  resolved "http://localhost:4873/react-dnd/-/react-dnd-11.1.3.tgz#f9844f5699ccc55dfc81462c2c19f726e670c1af"
+  integrity sha512-8rtzzT8iwHgdSC89VktwhqdKKtfXaAyC4wiqp0SywpHG12TTLvfOoL6xNEIUWXwIEWu+CFfDn4GZJyynCEuHIQ==
+  dependencies:
+    "@react-dnd/shallowequal" "^2.0.0"
+    "@types/hoist-non-react-statics" "^3.3.1"
+    dnd-core "^11.1.3"
+    hoist-non-react-statics "^3.3.0"
+
+react-docgen-typescript-plugin@^0.6.2:
+  version "0.6.3"
+  resolved "http://localhost:4873/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-0.6.3.tgz#664b22601df083597ecb1e60bd21beca60125fdf"
+  integrity sha512-av1S/fmWBNFGgNa4qtkidFjjOz23eEi6EdCtwSWo9WNhGzUMyMygbD/DosMWoeFlZpk9R3MXPkRE7PDH6j5GMQ==
+  dependencies:
+    debug "^4.1.1"
+    endent "^2.0.1"
+    micromatch "^4.0.2"
+    react-docgen-typescript "^1.20.5"
+    tslib "^2.0.0"
+
+react-docgen-typescript@^1.20.5:
+  version "1.21.0"
+  resolved "http://localhost:4873/react-docgen-typescript/-/react-docgen-typescript-1.21.0.tgz#3385dde81b63eb1d54f86a935bd4f65f96c821f6"
+  integrity sha512-E4y/OcXwHukgiVafCGlxwoNHr4BDmM70Ww7oimL/QkMo5dmGALhceewe/xmVjdMxxI7E5syOGOc9/tbHL742rg==
+
+react-docgen@^5.0.0:
+  version "5.3.0"
+  resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-5.3.0.tgz#9aabde5e69f1993c8ba839fd9a86696504654589"
+  integrity sha512-hUrv69k6nxazOuOmdGeOpC/ldiKy7Qj/UFpxaQi0eDMrUFUTIPGtY5HJu7BggSmiyAMfREaESbtBL9UzdQ+hyg==
+  dependencies:
+    "@babel/core" "^7.7.5"
+    "@babel/runtime" "^7.7.6"
+    ast-types "^0.13.2"
+    commander "^2.19.0"
+    doctrine "^3.0.0"
+    neo-async "^2.6.1"
+    node-dir "^0.1.10"
+    strip-indent "^3.0.0"
+
+react-dom@^16.13.0:
+  version "16.14.0"
+  resolved "http://localhost:4873/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89"
+  integrity sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==
+  dependencies:
+    loose-envify "^1.1.0"
+    object-assign "^4.1.1"
+    prop-types "^15.6.2"
+    scheduler "^0.19.1"
+
+react-dom@^16.13.1, react-dom@^16.8.3:
+  version "16.13.1"
+  resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f"
+  integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==
+  dependencies:
+    loose-envify "^1.1.0"
+    object-assign "^4.1.1"
+    prop-types "^15.6.2"
+    scheduler "^0.19.1"
+
+react-draggable@^4.0.3:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-4.2.0.tgz#40cc5209082ca7d613104bf6daf31372cc0e1114"
+  integrity sha512-5wFq//gEoeTYprnd4ze8GrFc+Rbnx+9RkOMR3vk4EbWxj02U6L6T3yrlKeiw4X5CtjD2ma2+b3WujghcXNRzkw==
+  dependencies:
+    classnames "^2.2.5"
+    prop-types "^15.6.0"
+
+react-element-to-jsx-string@^14.0.2, react-element-to-jsx-string@^14.3.1:
+  version "14.3.1"
+  resolved "https://registry.yarnpkg.com/react-element-to-jsx-string/-/react-element-to-jsx-string-14.3.1.tgz#a08fa6e46eb76061aca7eabc2e70f433583cb203"
+  integrity sha512-LRdQWRB+xcVPOL4PU4RYuTg6dUJ/FNmaQ8ls6w38YbzkbV6Yr5tFNESroub9GiSghtnMq8dQg2LcNN5aMIDzVg==
+  dependencies:
+    "@base2/pretty-print-object" "1.0.0"
+    is-plain-object "3.0.0"
+
+react-error-boundary@^1.2.5:
+  version "1.2.5"
+  resolved "https://registry.yarnpkg.com/react-error-boundary/-/react-error-boundary-1.2.5.tgz#a362cb799d2e58ff8f114f7c4bc25677ce4e4149"
+  integrity sha512-5CPSeLJA2igJNppAgFRwnTL9aK3ojenk65enNzhVyoxYNbHpIJXnChUO7+4vPhkncRA9wvQMXq6Azp2XeXd+iQ==
+
+react-error-overlay@^6.0.3:
+  version "6.0.7"
+  resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.7.tgz#1dcfb459ab671d53f660a991513cb2f0a0553108"
+  integrity sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA==
+
+react-error-overlay@^6.0.7:
+  version "6.0.9"
+  resolved "http://localhost:4873/react-error-overlay/-/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a"
+  integrity sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==
+
+react-fast-compare@^2.0.4:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9"
+  integrity sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==
+
+react-fast-compare@^3.0.1:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb"
+  integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==
+
+react-focus-lock@^2.1.0:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.2.1.tgz#1d12887416925dc53481914b7cedd39494a3b24a"
+  integrity sha512-47g0xYcCTZccdzKRGufepY8oZ3W1Qg+2hn6u9SHZ0zUB6uz/4K4xJe7yYFNZ1qT6m+2JDm82F6QgKeBTbjW4PQ==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    focus-lock "^0.6.6"
+    prop-types "^15.6.2"
+    react-clientside-effect "^1.2.2"
+    use-callback-ref "^1.2.1"
+    use-sidecar "^1.0.1"
+
+react-gravatar@^2.6.1:
+  version "2.6.3"
+  resolved "http://localhost:4873/react-gravatar/-/react-gravatar-2.6.3.tgz#5407eb6ac87e830e2a34deb760d2a4c404eb1dac"
+  integrity sha1-VAfrash+gw4qNN63YNKkxATrHaw=
+  dependencies:
+    is-retina "^1.0.3"
+    md5 "^2.1.0"
+    query-string "^4.2.2"
+
+react-helmet-async@^1.0.2:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.0.4.tgz#079ef10b7fefcaee6240fefd150711e62463cc97"
+  integrity sha512-KTGHE9sz8N7+fCkZ2a3vzXH9eIkiTNhL2NhKR7XzzQl3WsGlCHh76arauJUIiGdfhjeMp7DY7PkASAmYFXeJYg==
+  dependencies:
+    "@babel/runtime" "^7.3.4"
+    invariant "^2.2.4"
+    prop-types "^15.7.2"
+    react-fast-compare "^2.0.4"
+    shallowequal "^1.1.0"
+
+react-hot-loader@^4.12.20:
+  version "4.13.0"
+  resolved "http://localhost:4873/react-hot-loader/-/react-hot-loader-4.13.0.tgz#c27e9408581c2a678f5316e69c061b226dc6a202"
+  integrity sha512-JrLlvUPqh6wIkrK2hZDfOyq/Uh/WeVEr8nc7hkn2/3Ul0sx1Kr5y4kOGNacNRoj7RhwLNcQ3Udf1KJXrqc0ZtA==
+  dependencies:
+    fast-levenshtein "^2.0.6"
+    global "^4.3.0"
+    hoist-non-react-statics "^3.3.0"
+    loader-utils "^1.1.0"
+    prop-types "^15.6.1"
+    react-lifecycles-compat "^3.0.4"
+    shallowequal "^1.1.0"
+    source-map "^0.7.3"
+
+react-hotkeys@2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/react-hotkeys/-/react-hotkeys-2.0.0.tgz#a7719c7340cbba888b0e9184f806a9ec0ac2c53f"
+  integrity sha512-3n3OU8vLX/pfcJrR3xJ1zlww6KS1kEJt0Whxc4FiGV+MJrQ1mYSYI3qS/11d2MJDFm8IhOXMTFQirfu6AVOF6Q==
+  dependencies:
+    prop-types "^15.6.1"
+
+react-icons@^3.10.0:
+  version "3.10.0"
+  resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-3.10.0.tgz#6c217a2dde2e8fa8d293210023914b123f317297"
+  integrity sha512-WsQ5n1JToG9VixWilSo1bHv842Cj5aZqTGiS3Ud47myF6aK7S/IUY2+dHcBdmkQcCFRuHsJ9OMUI0kTDfjyZXQ==
+  dependencies:
+    camelcase "^5.0.0"
+
+react-input-autosize@^2.1.2, react-input-autosize@^2.2.2:
+  version "2.2.2"
+  resolved "https://registry.yarnpkg.com/react-input-autosize/-/react-input-autosize-2.2.2.tgz#fcaa7020568ec206bc04be36f4eb68e647c4d8c2"
+  integrity sha512-jQJgYCA3S0j+cuOwzuCd1OjmBmnZLdqQdiLKRYrsMMzbjUrVDS5RvJUDwJqA7sKuksDuzFtm6hZGKFu7Mjk5aw==
+  dependencies:
+    prop-types "^15.5.8"
+
+react-input-autosize@^3.0.0:
+  version "3.0.0"
+  resolved "http://localhost:4873/react-input-autosize/-/react-input-autosize-3.0.0.tgz#6b5898c790d4478d69420b55441fcc31d5c50a85"
+  integrity sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==
+  dependencies:
+    prop-types "^15.5.8"
+
+react-inspector@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-4.0.1.tgz#0f888f78ff7daccbc7be5d452b20c96dc6d5fbb8"
+  integrity sha512-xSiM6CE79JBqSj8Fzd9dWBHv57tLTH7OM57GP3VrE5crzVF3D5Khce9w1Xcw75OAbvrA0Mi2vBneR1OajKmXFg==
+  dependencies:
+    "@babel/runtime" "^7.6.3"
+    is-dom "^1.0.9"
+    prop-types "^15.6.1"
+
+react-inspector@^5.0.1:
+  version "5.1.0"
+  resolved "http://localhost:4873/react-inspector/-/react-inspector-5.1.0.tgz#45a325e15f33e595be5356ca2d3ceffb7d6b8c3a"
+  integrity sha512-JAwswiengIcxi4X/Ssb8nf6suOuQsyit8Fxo04+iPKTnPNY3XIOuagjMZSzpJDDKkYcc/ARlySOYZZv626WUvA==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    is-dom "^1.0.0"
+    prop-types "^15.0.0"
+
+react-is-mounted-hook@^1.0.3:
+  version "1.0.3"
+  resolved "http://localhost:4873/react-is-mounted-hook/-/react-is-mounted-hook-1.0.3.tgz#297e3ccc9f3c5eb2e3a867576e1c9e5c59c3d39e"
+  integrity sha512-YCCYcTVYMPfTi6WhWIwM9EYBcpHoivjjkE90O5ScsE9wXSbeXGZvLDMGt4mdSNcWshhc8JD0AzgBmsleCSdSFA==
+
+react-is@^16.12.0, react-is@^16.13.1, react-is@^16.3.2, react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.3, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0:
+  version "16.13.1"
+  resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
+  integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
+
+react-is@^17.0.1:
+  version "17.0.1"
+  resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.1.tgz#5b3531bd76a645a4c9fb6e693ed36419e3301339"
+  integrity sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==
+
+react-js-cron@^1.2.0:
+  version "1.2.1"
+  resolved "http://localhost:4873/react-js-cron/-/react-js-cron-1.2.1.tgz#76942741c700bace34c9453e7543e190e122591d"
+  integrity sha512-3iesosu5l/JsmbSZj8kb3OPcGFA+yM6WvetbsDk8SC8mgaxyAWU+1VS27rrd1OPCnCAHjx42trBxAteQRbtYqg==
+
+react-json-tree@^0.11.2:
+  version "0.11.2"
+  resolved "http://localhost:4873/react-json-tree/-/react-json-tree-0.11.2.tgz#af70199fcbc265699ade2aec492465c51608f95e"
+  integrity sha512-aYhUPj1y5jR3ZQ+G3N7aL8FbTyO03iLwnVvvEikLcNFqNTyabdljo9xDftZndUBFyyyL0aK3qGO9+8EilILHUw==
+  dependencies:
+    babel-runtime "^6.6.1"
+    prop-types "^15.5.8"
+    react-base16-styling "^0.5.1"
+
+react-jsonschema-form@^1.2.0:
+  version "1.8.1"
+  resolved "http://localhost:4873/react-jsonschema-form/-/react-jsonschema-form-1.8.1.tgz#9c962f29a55b3fe071d8edf2fc3430f05f1b7ed9"
+  integrity sha512-aaDloxNAcGXOOOcdKOxxqEEn5oDlPUZgWcs8unXXB9vjBRgCF8rCm/wVSv1u2G5ih0j/BX6Ewd/WjI2g00lPdg==
+  dependencies:
+    "@babel/runtime-corejs2" "^7.4.5"
+    ajv "^6.7.0"
+    core-js "^2.5.7"
+    lodash "^4.17.15"
+    prop-types "^15.5.8"
+    react-is "^16.8.4"
+    react-lifecycles-compat "^3.0.4"
+    shortid "^2.2.14"
+
+react-lifecycles-compat@^3.0.4:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"
+  integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==
+
+react-loadable@^5.5.0:
+  version "5.5.0"
+  resolved "https://registry.yarnpkg.com/react-loadable/-/react-loadable-5.5.0.tgz#582251679d3da86c32aae2c8e689c59f1196d8c4"
+  integrity sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg==
+  dependencies:
+    prop-types "^15.5.0"
+
+react-map-gl@^4.0.10:
+  version "4.1.16"
+  resolved "https://registry.yarnpkg.com/react-map-gl/-/react-map-gl-4.1.16.tgz#32c383801df9d57d9a369ba5b3d0b4b1e9b57862"
+  integrity sha512-EtiHCeqM69wKR9RDyLvtk6pTPS5+OFeAPIsYw6afnlGTauFAq3iD40SHuAOElgoJmm7J+cjPfHqu7m7tB4/FfA==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    mapbox-gl "~0.54.0"
+    mjolnir.js "^2.2.0"
+    prop-types "^15.7.2"
+    react-virtualized-auto-sizer "^1.0.2"
+    viewport-mercator-project "^6.2.1"
+
+react-markdown@^4.3.1:
+  version "4.3.1"
+  resolved "http://localhost:4873/react-markdown/-/react-markdown-4.3.1.tgz#39f0633b94a027445b86c9811142d05381300f2f"
+  integrity sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==
+  dependencies:
+    html-to-react "^1.3.4"
+    mdast-add-list-metadata "1.0.1"
+    prop-types "^15.7.2"
+    react-is "^16.8.6"
+    remark-parse "^5.0.0"
+    unified "^6.1.5"
+    unist-util-visit "^1.3.0"
+    xtend "^4.0.1"
+
+react-move@^2.1.0:
+  version "2.9.1"
+  resolved "https://registry.yarnpkg.com/react-move/-/react-move-2.9.1.tgz#966a1e7312795b03aa6b4834f9392a3bfbbe2ca0"
+  integrity sha512-5qKYsJrKKpSypEaaYyR2HBbBgX65htRqKDa8o5OGDkq2VfklmTCbLawtYFpdmcJRqbz4jCYpzo2Rrsazq9HA8Q==
+  dependencies:
+    "@babel/runtime" "^7.2.0"
+    d3-interpolate "^1.3.2"
+    d3-timer "^1.0.9"
+    prop-types "^15.6.2"
+    react-lifecycles-compat "^3.0.4"
+
+react-overlays@^0.9.0:
+  version "0.9.1"
+  resolved "https://registry.yarnpkg.com/react-overlays/-/react-overlays-0.9.1.tgz#d4702bfe5b5e9335b676ff5a940253771fdeed12"
+  integrity sha512-b0asy/zHtRd0i2+2/uNxe3YVprF3bRT1guyr791DORjCzE/HSBMog+ul83CdtKQ1kZ+pLnxWCu5W3BMysFhHdQ==
+  dependencies:
+    classnames "^2.2.5"
+    dom-helpers "^3.2.1"
+    prop-types "^15.5.10"
+    prop-types-extra "^1.0.1"
+    react-transition-group "^2.2.1"
+    warning "^3.0.0"
+
+react-popper-tooltip@^2.8.3:
+  version "2.11.0"
+  resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-2.11.0.tgz#1a871008853e072ba31fbe2bc5fd0316fa0a289a"
+  integrity sha512-Xxe08mAW990/NKYTEcZmdqchmB70hxQEPT7q7BMLGy3IkeNJI6ZaLODnzadTx1b7FGka8CLXyV/3g8EPaFJaig==
+  dependencies:
+    "@babel/runtime" "^7.9.2"
+    react-popper "^1.3.7"
+
+react-popper-tooltip@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-3.1.1.tgz#329569eb7b287008f04fcbddb6370452ad3f9eac"
+  integrity sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==
+  dependencies:
+    "@babel/runtime" "^7.12.5"
+    "@popperjs/core" "^2.5.4"
+    react-popper "^2.2.4"
+
+react-popper@^1.3.7:
+  version "1.3.7"
+  resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.7.tgz#f6a3471362ef1f0d10a4963673789de1baca2324"
+  integrity sha512-nmqYTx7QVjCm3WUZLeuOomna138R1luC4EqkW3hxJUrAe+3eNz3oFCLYdnPwILfn0mX1Ew2c3wctrjlUMYYUww==
+  dependencies:
+    "@babel/runtime" "^7.1.2"
+    create-react-context "^0.3.0"
+    deep-equal "^1.1.1"
+    popper.js "^1.14.4"
+    prop-types "^15.6.1"
+    typed-styles "^0.0.7"
+    warning "^4.0.2"
+
+react-popper@^2.2.4:
+  version "2.2.4"
+  resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-2.2.4.tgz#d2ad3d2474ac9f1abf93df3099d408e5aa6a2e22"
+  integrity sha512-NacOu4zWupdQjVXq02XpTD3yFPSfg5a7fex0wa3uGKVkFK7UN6LvVxgcb+xYr56UCuWiNPMH20tntdVdJRwYew==
+  dependencies:
+    react-fast-compare "^3.0.1"
+    warning "^4.0.2"
+
+react-prop-types@^0.4.0:
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/react-prop-types/-/react-prop-types-0.4.0.tgz#f99b0bfb4006929c9af2051e7c1414a5c75b93d0"
+  integrity sha1-+ZsL+0AGkpya8gUefBQUpcdbk9A=
+  dependencies:
+    warning "^3.0.0"
+
+react-redux@^7.2.0:
+  version "7.2.2"
+  resolved "http://localhost:4873/react-redux/-/react-redux-7.2.2.tgz#03862e803a30b6b9ef8582dadcc810947f74b736"
+  integrity sha512-8+CQ1EvIVFkYL/vu6Olo7JFLWop1qRUeb46sGtIMDCSpgwPQq8fPLpirIB0iTqFe9XYEFPHssdX8/UwN6pAkEA==
+  dependencies:
+    "@babel/runtime" "^7.12.1"
+    hoist-non-react-statics "^3.3.2"
+    loose-envify "^1.4.0"
+    prop-types "^15.7.2"
+    react-is "^16.13.1"
+
+react-refresh@^0.8.3:
+  version "0.8.3"
+  resolved "http://localhost:4873/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f"
+  integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==
+
+react-resizable@^1.10.1:
+  version "1.10.1"
+  resolved "https://registry.yarnpkg.com/react-resizable/-/react-resizable-1.10.1.tgz#f0c2cf1d83b3470b87676ce6d6b02bbe3f4d8cd4"
+  integrity sha512-Jd/bKOKx6+19NwC4/aMLRu/J9/krfxlDnElP41Oc+oLiUWs/zwV1S9yBfBZRnqAwQb6vQ/HRSk3bsSWGSgVbpw==
+  dependencies:
+    prop-types "15.x"
+    react-draggable "^4.0.3"
+
+react-resize-detector@^6.0.1-rc.1:
+  version "6.5.0"
+  resolved "http://localhost:4873/react-resize-detector/-/react-resize-detector-6.5.0.tgz#13654438de5c871374657c7e09268fef17a4e5e8"
+  integrity sha512-hkBFm1sTJ/+I/A1+yHPJ444kc4zb37FqjMmsQuRloS+mzLP8Bb4tslMUf7+14SrDgBkKtdwJX13TwAxeEkyl5w==
+  dependencies:
+    "@types/resize-observer-browser" "^0.1.5"
+    lodash.debounce "^4.0.8"
+    lodash.throttle "^4.1.1"
+    resize-observer-polyfill "^1.5.1"
+
+react-router-dom@^5.1.2:
+  version "5.2.0"
+  resolved "http://localhost:4873/react-router-dom/-/react-router-dom-5.2.0.tgz#9e65a4d0c45e13289e66c7b17c7e175d0ea15662"
+  integrity sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==
+  dependencies:
+    "@babel/runtime" "^7.1.2"
+    history "^4.9.0"
+    loose-envify "^1.3.1"
+    prop-types "^15.6.2"
+    react-router "5.2.0"
+    tiny-invariant "^1.0.2"
+    tiny-warning "^1.0.0"
+
+react-router@5.2.0:
+  version "5.2.0"
+  resolved "http://localhost:4873/react-router/-/react-router-5.2.0.tgz#424e75641ca8747fbf76e5ecca69781aa37ea293"
+  integrity sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==
+  dependencies:
+    "@babel/runtime" "^7.1.2"
+    history "^4.9.0"
+    hoist-non-react-statics "^3.1.0"
+    loose-envify "^1.3.1"
+    mini-create-react-context "^0.4.0"
+    path-to-regexp "^1.7.0"
+    prop-types "^15.6.2"
+    react-is "^16.6.0"
+    tiny-invariant "^1.0.2"
+    tiny-warning "^1.0.0"
+
+react-search-input@^0.11.3:
+  version "0.11.3"
+  resolved "http://localhost:4873/react-search-input/-/react-search-input-0.11.3.tgz#3dd1f9fc584b6bc40a6ee133ae042b6fbb7ae8dd"
+  integrity sha512-Yo05lNR5YLeIY+mTEk0lMkYHX0qkTlElJmxMTw5JlZPu92EP8YWwIY3QSbEFULvX4wiTfyDdUovTUpp2VockpA==
+  dependencies:
+    fuse.js "^3.0.0"
+    prop-types "^15.5.8"
+
+react-select-async-paginate@^0.4.1:
+  version "0.4.1"
+  resolved "http://localhost:4873/react-select-async-paginate/-/react-select-async-paginate-0.4.1.tgz#974eeee57a176b76264c95a946c7c624ea0fb566"
+  integrity sha512-zWeaN9C9PVQej4bz1+OvU6/ylHE6rHscDYcP+KiWdBedVQ5j2vXBjf/5RWLEvobvtUUHBOTbUF8+m2HDoeIcvQ==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    "@seznam/compose-react-refs" "^1.0.4"
+    react-is-mounted-hook "^1.0.3"
+    sleep-promise "^8.0.1"
+
+react-select@^1.0.0-rc.2, react-select@^1.2.1:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/react-select/-/react-select-1.3.0.tgz#1828ad5bf7f3e42a835c7e2d8cb13b5c20714876"
+  integrity sha512-g/QAU1HZrzSfxkwMAo/wzi6/ezdWye302RGZevsATec07hI/iSxcpB1hejFIp7V63DJ8mwuign6KmB3VjdlinQ==
+  dependencies:
+    classnames "^2.2.4"
+    prop-types "^15.5.8"
+    react-input-autosize "^2.1.2"
+
+react-select@^3.0.8:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/react-select/-/react-select-3.1.0.tgz#ab098720b2e9fe275047c993f0d0caf5ded17c27"
+  integrity sha512-wBFVblBH1iuCBprtpyGtd1dGMadsG36W5/t2Aj8OE6WbByDg5jIFyT7X5gT+l0qmT5TqWhxX+VsKJvCEl2uL9g==
+  dependencies:
+    "@babel/runtime" "^7.4.4"
+    "@emotion/cache" "^10.0.9"
+    "@emotion/core" "^10.0.9"
+    "@emotion/css" "^10.0.9"
+    memoize-one "^5.0.0"
+    prop-types "^15.6.0"
+    react-input-autosize "^2.2.2"
+    react-transition-group "^4.3.0"
+
+react-select@^3.1.0:
+  version "3.2.0"
+  resolved "http://localhost:4873/react-select/-/react-select-3.2.0.tgz#de9284700196f5f9b5277c5d850a9ce85f5c72fe"
+  integrity sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==
+  dependencies:
+    "@babel/runtime" "^7.4.4"
+    "@emotion/cache" "^10.0.9"
+    "@emotion/core" "^10.0.9"
+    "@emotion/css" "^10.0.9"
+    memoize-one "^5.0.0"
+    prop-types "^15.6.0"
+    react-input-autosize "^3.0.0"
+    react-transition-group "^4.3.0"
+
+react-sizeme@^2.6.7:
+  version "2.6.12"
+  resolved "https://registry.yarnpkg.com/react-sizeme/-/react-sizeme-2.6.12.tgz#ed207be5476f4a85bf364e92042520499455453e"
+  integrity sha512-tL4sCgfmvapYRZ1FO2VmBmjPVzzqgHA7kI8lSJ6JS6L78jXFNRdOZFpXyK6P1NBZvKPPCZxReNgzZNUajAerZw==
+  dependencies:
+    element-resize-detector "^1.2.1"
+    invariant "^2.2.4"
+    shallowequal "^1.1.0"
+    throttle-debounce "^2.1.0"
+
+react-sortable-hoc@^1.11.0:
+  version "1.11.0"
+  resolved "http://localhost:4873/react-sortable-hoc/-/react-sortable-hoc-1.11.0.tgz#fe4022362bbafc4b836f5104b9676608a40a278f"
+  integrity sha512-v1CDCvdfoR3zLGNp6qsBa4J1BWMEVH25+UKxF/RvQRh+mrB+emqtVHMgZ+WreUiKJoEaiwYoScaueIKhMVBHUg==
+  dependencies:
+    "@babel/runtime" "^7.2.0"
+    invariant "^2.2.4"
+    prop-types "^15.5.7"
+
+react-split-pane@^0.1.63:
+  version "0.1.91"
+  resolved "https://registry.yarnpkg.com/react-split-pane/-/react-split-pane-0.1.91.tgz#18b9ef23b2ff225c957f77b6b096e458d85312ae"
+  integrity sha512-8U56HOKQGFlvXXT1PaHbijjYy2W8g0iQaHC99Q2aV4yYfvUURcRGyfPKN3scGkbYN2pvy3qyoEwHyewUmR1VbQ==
+  dependencies:
+    prop-types "^15.7.2"
+    react-lifecycles-compat "^3.0.4"
+    react-style-proptype "^3.2.2"
+
+react-split@^2.0.9:
+  version "2.0.9"
+  resolved "http://localhost:4873/react-split/-/react-split-2.0.9.tgz#8267b198c6b186857671da94c3feed828e6b2c66"
+  integrity sha512-IxKtxxmcbNUmWMSd5vlNnlE0jwbgQS1HyQYxt7h8qFgPskSkUTNzMbO838xapmmNf9D+u9B/bdtFnVjt+JC2JA==
+  dependencies:
+    prop-types "^15.5.7"
+    split.js "^1.6.0"
+
+react-sticky@^6.0.3:
+  version "6.0.3"
+  resolved "http://localhost:4873/react-sticky/-/react-sticky-6.0.3.tgz#7a18b643e1863da113d7f7036118d2a75d9ecde4"
+  integrity sha512-LNH4UJlRatOqo29/VHxDZOf6fwbgfgcHO4mkEFvrie5FuaZCSTGtug5R8NGqJ0kSnX8gHw8qZN37FcvnFBJpTQ==
+  dependencies:
+    prop-types "^15.5.8"
+    raf "^3.3.0"
+
+react-style-proptype@^3.2.2:
+  version "3.2.2"
+  resolved "https://registry.yarnpkg.com/react-style-proptype/-/react-style-proptype-3.2.2.tgz#d8e998e62ce79ec35b087252b90f19f1c33968a0"
+  integrity sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==
+  dependencies:
+    prop-types "^15.5.4"
+
+react-syntax-highlighter@^11.0.2:
+  version "11.0.2"
+  resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-11.0.2.tgz#4e3f376e752b20d2f54e4c55652fd663149e4029"
+  integrity sha512-kqmpM2OH5OodInbEADKARwccwSQWBfZi0970l5Jhp4h39q9Q65C4frNcnd6uHE5pR00W8pOWj9HDRntj2G4Rww==
+  dependencies:
+    "@babel/runtime" "^7.3.1"
+    highlight.js "~9.13.0"
+    lowlight "~1.11.0"
+    prismjs "^1.8.4"
+    refractor "^2.4.1"
+
+react-syntax-highlighter@^13.5.0:
+  version "13.5.3"
+  resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-13.5.3.tgz#9712850f883a3e19eb858cf93fad7bb357eea9c6"
+  integrity sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==
+  dependencies:
+    "@babel/runtime" "^7.3.1"
+    highlight.js "^10.1.1"
+    lowlight "^1.14.0"
+    prismjs "^1.21.0"
+    refractor "^3.1.0"
+
+react-syntax-highlighter@^15.3.0:
+  version "15.4.3"
+  resolved "http://localhost:4873/react-syntax-highlighter/-/react-syntax-highlighter-15.4.3.tgz#fffe3286677ac470b963b364916d16374996f3a6"
+  integrity sha512-TnhGgZKXr5o8a63uYdRTzeb8ijJOgRGe0qjrE0eK/gajtdyqnSO6LqB3vW16hHB0cFierYSoy/AOJw8z1Dui8g==
+  dependencies:
+    "@babel/runtime" "^7.3.1"
+    highlight.js "^10.4.1"
+    lowlight "^1.17.0"
+    prismjs "^1.22.0"
+    refractor "^3.2.0"
+
+react-table@^7.2.1:
+  version "7.6.1"
+  resolved "https://registry.yarnpkg.com/react-table/-/react-table-7.6.1.tgz#33ad2bfc58de619678694c5452597544f4864266"
+  integrity sha512-XQyvombPoFbNiDHWAXdxbN78kFpsT1/aJuRSupFfBhO3FJtEVIIq2xbV1NvLzrd1YwfCYRm07ln5OHlfz0SXBg==
+
+react-test-renderer@^16.0.0-0, react-test-renderer@^16.13.1:
+  version "16.13.1"
+  resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.13.1.tgz#de25ea358d9012606de51e012d9742e7f0deabc1"
+  integrity sha512-Sn2VRyOK2YJJldOqoh8Tn/lWQ+ZiKhyZTPtaO0Q6yNj+QDbmRkVFap6pZPy3YQk8DScRDfyqm/KxKYP9gCMRiQ==
+  dependencies:
+    object-assign "^4.1.1"
+    prop-types "^15.6.2"
+    react-is "^16.8.6"
+    scheduler "^0.19.1"
+
+react-test-renderer@^16.9.0:
+  version "16.14.0"
+  resolved "http://localhost:4873/react-test-renderer/-/react-test-renderer-16.14.0.tgz#e98360087348e260c56d4fe2315e970480c228ae"
+  integrity sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==
+  dependencies:
+    object-assign "^4.1.1"
+    prop-types "^15.6.2"
+    react-is "^16.8.6"
+    scheduler "^0.19.1"
+
+react-textarea-autosize@^7.1.0:
+  version "7.1.2"
+  resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-7.1.2.tgz#70fdb333ef86bcca72717e25e623e90c336e2cda"
+  integrity sha512-uH3ORCsCa3C6LHxExExhF4jHoXYCQwE5oECmrRsunlspaDAbS4mGKNlWZqjLfInWtFQcf0o1n1jC/NGXFdUBCg==
+  dependencies:
+    "@babel/runtime" "^7.1.2"
+    prop-types "^15.6.0"
+
+react-textarea-autosize@^8.1.1:
+  version "8.3.0"
+  resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.0.tgz#e6e2fd186d9f61bb80ac6e2dcb4c55504f93c2fa"
+  integrity sha512-3GLWFAan2pbwBeoeNDoqGmSbrShORtgWfaWX0RJDivsUrpShh01saRM5RU/i4Zmf+whpBVEY5cA90Eq8Ub1N3w==
+  dependencies:
+    "@babel/runtime" "^7.10.2"
+    use-composed-ref "^1.0.0"
+    use-latest "^1.0.0"
+
+react-transition-group@^2.0.0, react-transition-group@^2.2.1, react-transition-group@^2.5.3:
+  version "2.9.0"
+  resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d"
+  integrity sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==
+  dependencies:
+    dom-helpers "^3.4.0"
+    loose-envify "^1.4.0"
+    prop-types "^15.6.2"
+    react-lifecycles-compat "^3.0.4"
+
+react-transition-group@^4.3.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.3.0.tgz#fea832e386cf8796c58b61874a3319704f5ce683"
+  integrity sha512-1qRV1ZuVSdxPlPf4O8t7inxUGpdyO5zG9IoNfJxSO0ImU2A1YWkEQvFPuIPZmMLkg5hYs7vv5mMOyfgSkvAwvw==
+  dependencies:
+    "@babel/runtime" "^7.5.5"
+    dom-helpers "^5.0.1"
+    loose-envify "^1.4.0"
+    prop-types "^15.6.2"
+
+react-ultimate-pagination@^1.2.0:
+  version "1.2.0"
+  resolved "http://localhost:4873/react-ultimate-pagination/-/react-ultimate-pagination-1.2.0.tgz#c440305c9bc32ead0e21e9047b2d16435cffb4e4"
+  integrity sha512-tBLzzskuBqsziQDUI98hA7FTBy2/Q5olRsvu3GdLYykfGUgDvYQOI7hLi9o5pD5zJeuAsVn3OoAUw0CaJi0WoQ==
+  dependencies:
+    prop-types "^15.0.0"
+    ultimate-pagination "1.0.0"
+
+react-use-measure@2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/react-use-measure/-/react-use-measure-2.0.1.tgz#4f23f94c832cd4512da55acb300d1915dcbf3ae8"
+  integrity sha512-lFfHiqcXbJ2/6aUkZwt8g5YYM7EGqNVxJhMqMPqv1BVXRKp8D7jYLlmma0SvhRY4WYxxkZpCdbJvhDylb5gcEA==
+  dependencies:
+    debounce "^1.2.0"
+
+react-virtualized-auto-sizer@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.2.tgz#a61dd4f756458bbf63bd895a92379f9b70f803bd"
+  integrity sha512-MYXhTY1BZpdJFjUovvYHVBmkq79szK/k7V3MO+36gJkWGkrXKtyr4vCPtpphaTLRAdDNoYEYFZWE8LjN+PIHNg==
+
+react-virtualized-select@^3.1.3:
+  version "3.1.3"
+  resolved "http://localhost:4873/react-virtualized-select/-/react-virtualized-select-3.1.3.tgz#e5c1fed5e493e3e5a628e53100e83d27cfd8c0ac"
+  integrity sha512-u6j/EfynCB9s4Lz5GGZhNUCZHvFQdtLZws7W/Tcd/v03l19OjpQs3eYjK82iYS0FgD2+lDIBpqS8LpD/hjqDRQ==
+  dependencies:
+    babel-runtime "^6.11.6"
+    prop-types "^15.5.8"
+    react-select "^1.0.0-rc.2"
+    react-virtualized "^9.0.0"
+
+react-virtualized@9.19.1:
+  version "9.19.1"
+  resolved "http://localhost:4873/react-virtualized/-/react-virtualized-9.19.1.tgz#84b53253df2d9df61c85ce037141edccc70a73fd"
+  integrity sha512-2l6uFicZKZ3x4rdnS0W+1TfyLmPO/+hfZKsCtoChoSmH5aEezGLpSuHc7oplekNIOaEwChfCk30zjx+Zw6B8YQ==
+  dependencies:
+    babel-runtime "^6.26.0"
+    classnames "^2.2.3"
+    dom-helpers "^2.4.0 || ^3.0.0"
+    loose-envify "^1.3.0"
+    prop-types "^15.6.0"
+    react-lifecycles-compat "^3.0.4"
+
+react-virtualized@^9.0.0:
+  version "9.22.3"
+  resolved "http://localhost:4873/react-virtualized/-/react-virtualized-9.22.3.tgz#f430f16beb0a42db420dbd4d340403c0de334421"
+  integrity sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw==
+  dependencies:
+    "@babel/runtime" "^7.7.2"
+    clsx "^1.0.4"
+    dom-helpers "^5.1.3"
+    loose-envify "^1.4.0"
+    prop-types "^15.7.2"
+    react-lifecycles-compat "^3.0.4"
+
+react-window@^1.8.5:
+  version "1.8.6"
+  resolved "http://localhost:4873/react-window/-/react-window-1.8.6.tgz#d011950ac643a994118632665aad0c6382e2a112"
+  integrity sha512-8VwEEYyjz6DCnGBsd+MgkD0KJ2/OXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    memoize-one ">=3.1.1 <6"
+
+react-with-styles-interface-aphrodite@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/react-with-styles-interface-aphrodite/-/react-with-styles-interface-aphrodite-1.2.0.tgz#22a0a7d392d8f91a891f722d4c992f4c80f5a129"
+  integrity sha1-IqCn05LY+RqJH3ItTJkvTID1oSk=
+  dependencies:
+    array-flatten "^2.1.0"
+    has "^1.0.1"
+
+react-with-styles@^1.3.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/react-with-styles/-/react-with-styles-1.4.0.tgz#a05b311e82b49b1e69b787af82d0a29c6e2b0731"
+  integrity sha1-oFsxHoK0mx5pt4evgtCinG4rBzE=
+  dependencies:
+    deepmerge "^1.3.2"
+    global-cache "^1.2.0"
+    hoist-non-react-statics "^1.2.0"
+    prop-types "^15.5.8"
+
+react@^16.13.1, react@^16.8.3:
+  version "16.13.1"
+  resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e"
+  integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==
+  dependencies:
+    loose-envify "^1.1.0"
+    object-assign "^4.1.1"
+    prop-types "^15.6.2"
+
+reactable-arc@0.15.0, reactable-arc@^0.15.0:
+  version "0.15.0"
+  resolved "https://registry.yarnpkg.com/reactable-arc/-/reactable-arc-0.15.0.tgz#b9e145f58c787227bced894cd9c1611b37c20f3c"
+  integrity sha512-XH1mryI/xvbYb3lCVOU3rx/KRacDE0PDa45KazL/PPTM0AgPZ/awVmCAxRi179BpjbStk7cgCyFjI2oYJ28E8A==
+
+reactcss@^1.2.0:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/reactcss/-/reactcss-1.2.3.tgz#c00013875e557b1cf0dfd9a368a1c3dab3b548dd"
+  integrity sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==
+  dependencies:
+    lodash "^4.0.1"
+
+read-chunk@^3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/read-chunk/-/read-chunk-3.2.0.tgz#2984afe78ca9bfbbdb74b19387bf9e86289c16ca"
+  integrity sha512-CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ==
+  dependencies:
+    pify "^4.0.1"
+    with-open-file "^0.1.6"
+
+read-cmd-shim@^1.0.1:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-1.0.5.tgz#87e43eba50098ba5a32d0ceb583ab8e43b961c16"
+  integrity sha512-v5yCqQ/7okKoZZkBQUAfTsQ3sVJtXdNfbPnI5cceppoxEVLYA3k+VtV2omkeo8MS94JCy4fSiUwlRBAwCVRPUA==
+  dependencies:
+    graceful-fs "^4.1.2"
+
+"read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@^2.0.13:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.1.tgz#16aa66c59e7d4dad6288f179dd9295fd59bb98f1"
+  integrity sha512-dAiqGtVc/q5doFz6096CcnXhpYk0ZN8dEKVkGLU0CsASt8SrgF6SF7OTKAYubfvFhWaqofl+Y8HK19GR8jwW+A==
+  dependencies:
+    glob "^7.1.1"
+    json-parse-better-errors "^1.0.1"
+    normalize-package-data "^2.0.0"
+    npm-normalize-package-bin "^1.0.0"
+  optionalDependencies:
+    graceful-fs "^4.1.2"
+
+read-package-tree@^5.1.6:
+  version "5.3.1"
+  resolved "https://registry.yarnpkg.com/read-package-tree/-/read-package-tree-5.3.1.tgz#a32cb64c7f31eb8a6f31ef06f9cedf74068fe636"
+  integrity sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw==
+  dependencies:
+    read-package-json "^2.0.0"
+    readdir-scoped-modules "^1.0.0"
+    util-promisify "^2.1.0"
+
+read-pkg-up@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
+  integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=
+  dependencies:
+    find-up "^1.0.0"
+    read-pkg "^1.0.0"
+
+read-pkg-up@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
+  integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=
+  dependencies:
+    find-up "^2.0.0"
+    read-pkg "^2.0.0"
+
+read-pkg-up@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
+  integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=
+  dependencies:
+    find-up "^2.0.0"
+    read-pkg "^3.0.0"
+
+read-pkg-up@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978"
+  integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==
+  dependencies:
+    find-up "^3.0.0"
+    read-pkg "^3.0.0"
+
+read-pkg-up@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-5.0.0.tgz#b6a6741cb144ed3610554f40162aa07a6db621b8"
+  integrity sha512-XBQjqOBtTzyol2CpsQOw8LHV0XbDZVG7xMMjmXAJomlVY03WOBRmYgDJETlvcg0H63AJvPRwT7GFi5rvOzUOKg==
+  dependencies:
+    find-up "^3.0.0"
+    read-pkg "^5.0.0"
+
+read-pkg-up@^7.0.1:
+  version "7.0.1"
+  resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507"
+  integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
+  dependencies:
+    find-up "^4.1.0"
+    read-pkg "^5.2.0"
+    type-fest "^0.8.1"
+
+read-pkg@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
+  integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=
+  dependencies:
+    load-json-file "^1.0.0"
+    normalize-package-data "^2.3.2"
+    path-type "^1.0.0"
+
+read-pkg@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
+  integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=
+  dependencies:
+    load-json-file "^2.0.0"
+    normalize-package-data "^2.3.2"
+    path-type "^2.0.0"
+
+read-pkg@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
+  integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
+  dependencies:
+    load-json-file "^4.0.0"
+    normalize-package-data "^2.3.2"
+    path-type "^3.0.0"
+
+read-pkg@^5.0.0, read-pkg@^5.2.0:
+  version "5.2.0"
+  resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc"
+  integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
+  dependencies:
+    "@types/normalize-package-data" "^2.4.0"
+    normalize-package-data "^2.5.0"
+    parse-json "^5.0.0"
+    type-fest "^0.6.0"
+
+read@1, read@~1.0.1:
+  version "1.0.7"
+  resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4"
+  integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=
+  dependencies:
+    mute-stream "~0.0.4"
+
+"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.3, readable-stream@~2.3.6:
+  version "2.3.7"
+  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
+  integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+  dependencies:
+    core-util-is "~1.0.0"
+    inherits "~2.0.3"
+    isarray "~1.0.0"
+    process-nextick-args "~2.0.0"
+    safe-buffer "~5.1.1"
+    string_decoder "~1.1.1"
+    util-deprecate "~1.0.1"
+
+"readable-stream@2 || 3", readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.1.1:
+  version "3.6.0"
+  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
+  integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
+  dependencies:
+    inherits "^2.0.3"
+    string_decoder "^1.1.1"
+    util-deprecate "^1.0.1"
+
+readdir-scoped-modules@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309"
+  integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==
+  dependencies:
+    debuglog "^1.0.1"
+    dezalgo "^1.0.0"
+    graceful-fs "^4.1.2"
+    once "^1.3.0"
+
+readdirp@^2.2.1:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
+  integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
+  dependencies:
+    graceful-fs "^4.1.11"
+    micromatch "^3.1.10"
+    readable-stream "^2.0.2"
+
+readdirp@~3.5.0:
+  version "3.5.0"
+  resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"
+  integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==
+  dependencies:
+    picomatch "^2.2.1"
+
+realpath-native@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
+  integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==
+  dependencies:
+    util.promisify "^1.0.0"
+
+realpath-native@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866"
+  integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==
+
+recast@^0.14.7:
+  version "0.14.7"
+  resolved "https://registry.yarnpkg.com/recast/-/recast-0.14.7.tgz#4f1497c2b5826d42a66e8e3c9d80c512983ff61d"
+  integrity sha512-/nwm9pkrcWagN40JeJhkPaRxiHXBRkXyRh/hgU088Z/v+qCy+zIHHY6bC6o7NaKAxPqtE6nD8zBH1LfU0/Wx6A==
+  dependencies:
+    ast-types "0.11.3"
+    esprima "~4.0.0"
+    private "~0.1.5"
+    source-map "~0.6.1"
+
+rechoir@^0.6.2:
+  version "0.6.2"
+  resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
+  integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=
+  dependencies:
+    resolve "^1.1.6"
+
+recompose@^0.23.5:
+  version "0.23.5"
+  resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.23.5.tgz#72ac8261246bec378235d187467d02a721e8b1de"
+  integrity sha1-cqyCYSRr7DeCNdGHRn0CpyHosd4=
+  dependencies:
+    change-emitter "^0.1.2"
+    fbjs "^0.8.1"
+    hoist-non-react-statics "^1.0.0"
+    symbol-observable "^1.0.4"
+
+recursive-readdir@2.2.2:
+  version "2.2.2"
+  resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
+  integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==
+  dependencies:
+    minimatch "3.0.4"
+
+redent@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
+  integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=
+  dependencies:
+    indent-string "^2.1.0"
+    strip-indent "^1.0.1"
+
+redent@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
+  integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=
+  dependencies:
+    indent-string "^3.0.0"
+    strip-indent "^2.0.0"
+
+redent@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f"
+  integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
+  dependencies:
+    indent-string "^4.0.0"
+    strip-indent "^3.0.0"
+
+redeyed@~0.4.0:
+  version "0.4.4"
+  resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-0.4.4.tgz#37e990a6f2b21b2a11c2e6a48fd4135698cba97f"
+  integrity sha1-N+mQpvKyGyoRwuakj9QTVpjLqX8=
+  dependencies:
+    esprima "~1.0.4"
+
+reduce-css-calc@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716"
+  integrity sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=
+  dependencies:
+    balanced-match "^0.4.2"
+    math-expression-evaluator "^1.2.14"
+    reduce-function-call "^1.0.1"
+
+reduce-function-call@^1.0.1:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.3.tgz#60350f7fb252c0a67eb10fd4694d16909971300f"
+  integrity sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==
+  dependencies:
+    balanced-match "^1.0.0"
+
+redux-localstorage@^0.4.1:
+  version "0.4.1"
+  resolved "http://localhost:4873/redux-localstorage/-/redux-localstorage-0.4.1.tgz#faf6d719c581397294d811473ffcedee065c933c"
+  integrity sha1-+vbXGcWBOXKU2BFHP/zt7gZckzw=
+
+redux-mock-store@^1.5.4:
+  version "1.5.4"
+  resolved "http://localhost:4873/redux-mock-store/-/redux-mock-store-1.5.4.tgz#90d02495fd918ddbaa96b83aef626287c9ab5872"
+  integrity sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==
+  dependencies:
+    lodash.isplainobject "^4.0.6"
+
+redux-thunk@^2.1.0:
+  version "2.3.0"
+  resolved "http://localhost:4873/redux-thunk/-/redux-thunk-2.3.0.tgz#51c2c19a185ed5187aaa9a2d08b666d0d6467622"
+  integrity sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==
+
+redux-undo@^1.0.0-beta9-9-7:
+  version "1.0.1"
+  resolved "http://localhost:4873/redux-undo/-/redux-undo-1.0.1.tgz#8d989d6c326e6718f4471042e90a5b8b6f3317eb"
+  integrity sha512-0yFPT+FUgwxCEiS0Mg5T1S4tkgjR8h6sJRY9CW4EMsbJOf1SxO289TbJmlzhRouCHacdDF+powPjrjLHoJYxWQ==
+
+redux@^3.6.0:
+  version "3.7.2"
+  resolved "http://localhost:4873/redux/-/redux-3.7.2.tgz#06b73123215901d25d065be342eb026bc1c8537b"
+  integrity sha512-pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A==
+  dependencies:
+    lodash "^4.2.1"
+    lodash-es "^4.2.1"
+    loose-envify "^1.1.0"
+    symbol-observable "^1.0.3"
+
+redux@^4.0.0, redux@^4.0.4, redux@^4.0.5:
+  version "4.0.5"
+  resolved "http://localhost:4873/redux/-/redux-4.0.5.tgz#4db5de5816e17891de8a80c424232d06f051d93f"
+  integrity sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==
+  dependencies:
+    loose-envify "^1.4.0"
+    symbol-observable "^1.2.0"
+
+reflect.ownkeys@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460"
+  integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=
+
+refractor@^2.4.1:
+  version "2.10.1"
+  resolved "https://registry.yarnpkg.com/refractor/-/refractor-2.10.1.tgz#166c32f114ed16fd96190ad21d5193d3afc7d34e"
+  integrity sha512-Xh9o7hQiQlDbxo5/XkOX6H+x/q8rmlmZKr97Ie1Q8ZM32IRRd3B/UxuA/yXDW79DBSXGWxm2yRTbcTVmAciJRw==
+  dependencies:
+    hastscript "^5.0.0"
+    parse-entities "^1.1.2"
+    prismjs "~1.17.0"
+
+refractor@^3.1.0, refractor@^3.2.0:
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.3.1.tgz#ebbc04b427ea81dc25ad333f7f67a0b5f4f0be3a"
+  integrity sha512-vaN6R56kLMuBszHSWlwTpcZ8KTMG6aUCok4GrxYDT20UIOXxOc5o6oDc8tNTzSlH3m2sI+Eu9Jo2kVdDcUTWYw==
+  dependencies:
+    hastscript "^6.0.0"
+    parse-entities "^2.0.0"
+    prismjs "~1.23.0"
+
+regenerate-unicode-properties@^8.2.0:
+  version "8.2.0"
+  resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
+  integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
+  dependencies:
+    regenerate "^1.4.0"
+
+regenerate@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
+  integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
+
+regenerator-runtime@^0.10.5:
+  version "0.10.5"
+  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
+  integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=
+
+regenerator-runtime@^0.11.0:
+  version "0.11.1"
+  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
+  integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
+
+regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.5, regenerator-runtime@^0.13.7:
+  version "0.13.7"
+  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
+  integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
+
+regenerator-transform@^0.14.2:
+  version "0.14.4"
+  resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7"
+  integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==
+  dependencies:
+    "@babel/runtime" "^7.8.4"
+    private "^0.1.8"
+
+regex-not@^1.0.0, regex-not@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
+  integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
+  dependencies:
+    extend-shallow "^3.0.2"
+    safe-regex "^1.1.0"
+
+regexp-tree@^0.1.21, regexp-tree@~0.1.1:
+  version "0.1.21"
+  resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.21.tgz#55e2246b7f7d36f1b461490942fa780299c400d7"
+  integrity sha512-kUUXjX4AnqnR8KRTCrayAo9PzYMRKmVoGgaz2tBuz0MF3g1ZbGebmtW0yFHfFK9CmBjQKeYIgoL22pFLBJY7sw==
+
+regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75"
+  integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+
+regexpp@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.0.0.tgz#dd63982ee3300e67b41c1956f850aa680d9d330e"
+  integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g==
+
+regexpp@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"
+  integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
+
+regexpu-core@^4.7.1:
+  version "4.7.1"
+  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6"
+  integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==
+  dependencies:
+    regenerate "^1.4.0"
+    regenerate-unicode-properties "^8.2.0"
+    regjsgen "^0.5.1"
+    regjsparser "^0.6.4"
+    unicode-match-property-ecmascript "^1.0.4"
+    unicode-match-property-value-ecmascript "^1.2.0"
+
+regjsgen@^0.5.1:
+  version "0.5.1"
+  resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
+  integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
+
+regjsparser@^0.6.4:
+  version "0.6.4"
+  resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
+  integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==
+  dependencies:
+    jsesc "~0.5.0"
+
+relateurl@^0.2.7:
+  version "0.2.7"
+  resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
+  integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=
+
+remark-external-links@^6.0.0:
+  version "6.1.0"
+  resolved "http://localhost:4873/remark-external-links/-/remark-external-links-6.1.0.tgz#1a545b3cf896eae00ec1732d90f595f75a329abe"
+  integrity sha512-dJr+vhe3wuh1+E9jltQ+efRMqtMDOOnfFkhtoArOmhnBcPQX6THttXMkc/H0kdnAvkXTk7f2QdOYm5qo/sGqdw==
+  dependencies:
+    extend "^3.0.0"
+    is-absolute-url "^3.0.0"
+    mdast-util-definitions "^2.0.0"
+    space-separated-tokens "^1.0.0"
+    unist-util-visit "^2.0.0"
+
+remark-footnotes@2.0.0:
+  version "2.0.0"
+  resolved "http://localhost:4873/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f"
+  integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==
+
+remark-mdx@1.6.22:
+  version "1.6.22"
+  resolved "http://localhost:4873/remark-mdx/-/remark-mdx-1.6.22.tgz#06a8dab07dcfdd57f3373af7f86bd0e992108bbd"
+  integrity sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==
+  dependencies:
+    "@babel/core" "7.12.9"
+    "@babel/helper-plugin-utils" "7.10.4"
+    "@babel/plugin-proposal-object-rest-spread" "7.12.1"
+    "@babel/plugin-syntax-jsx" "7.12.1"
+    "@mdx-js/util" "1.6.22"
+    is-alphabetical "1.0.4"
+    remark-parse "8.0.3"
+    unified "9.2.0"
+
+remark-parse@8.0.3:
+  version "8.0.3"
+  resolved "http://localhost:4873/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1"
+  integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==
+  dependencies:
+    ccount "^1.0.0"
+    collapse-white-space "^1.0.2"
+    is-alphabetical "^1.0.0"
+    is-decimal "^1.0.0"
+    is-whitespace-character "^1.0.0"
+    is-word-character "^1.0.0"
+    markdown-escapes "^1.0.0"
+    parse-entities "^2.0.0"
+    repeat-string "^1.5.4"
+    state-toggle "^1.0.0"
+    trim "0.0.1"
+    trim-trailing-lines "^1.0.0"
+    unherit "^1.0.4"
+    unist-util-remove-position "^2.0.0"
+    vfile-location "^3.0.0"
+    xtend "^4.0.1"
+
+remark-parse@^5.0.0:
+  version "5.0.0"
+  resolved "http://localhost:4873/remark-parse/-/remark-parse-5.0.0.tgz#4c077f9e499044d1d5c13f80d7a98cf7b9285d95"
+  integrity sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==
+  dependencies:
+    collapse-white-space "^1.0.2"
+    is-alphabetical "^1.0.0"
+    is-decimal "^1.0.0"
+    is-whitespace-character "^1.0.0"
+    is-word-character "^1.0.0"
+    markdown-escapes "^1.0.0"
+    parse-entities "^1.1.0"
+    repeat-string "^1.5.4"
+    state-toggle "^1.0.0"
+    trim "0.0.1"
+    trim-trailing-lines "^1.0.0"
+    unherit "^1.0.4"
+    unist-util-remove-position "^1.0.0"
+    vfile-location "^2.0.0"
+    xtend "^4.0.1"
+
+remark-slug@^6.0.0:
+  version "6.0.0"
+  resolved "http://localhost:4873/remark-slug/-/remark-slug-6.0.0.tgz#2b54a14a7b50407a5e462ac2f376022cce263e2c"
+  integrity sha512-ln67v5BrGKHpETnm6z6adlJPhESFJwfuZZ3jrmi+lKTzeZxh2tzFzUfDD4Pm2hRGOarHLuGToO86MNMZ/hA67Q==
+  dependencies:
+    github-slugger "^1.0.0"
+    mdast-util-to-string "^1.0.0"
+    unist-util-visit "^2.0.0"
+
+remark-squeeze-paragraphs@4.0.0:
+  version "4.0.0"
+  resolved "http://localhost:4873/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz#76eb0e085295131c84748c8e43810159c5653ead"
+  integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==
+  dependencies:
+    mdast-squeeze-paragraphs "^4.0.0"
+
+remove-accents@0.4.2:
+  version "0.4.2"
+  resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5"
+  integrity sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U=
+
+remove-trailing-separator@^1.0.1:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
+  integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
+
+renderkid@^2.0.1:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.3.tgz#380179c2ff5ae1365c522bf2fcfcff01c5b74149"
+  integrity sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==
+  dependencies:
+    css-select "^1.1.0"
+    dom-converter "^0.2"
+    htmlparser2 "^3.3.0"
+    strip-ansi "^3.0.0"
+    utila "^0.4.0"
+
+repeat-element@^1.1.2:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
+  integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
+
+repeat-string@^1.5.4, repeat-string@^1.6.1:
+  version "1.6.1"
+  resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
+  integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
+
+repeating@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
+  integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=
+  dependencies:
+    is-finite "^1.0.0"
+
+replace-ext@0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924"
+  integrity sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=
+
+replace-ext@1.0.0, replace-ext@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
+  integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
+
+request-promise-core@1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9"
+  integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==
+  dependencies:
+    lodash "^4.17.15"
+
+request-promise-core@1.1.4:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f"
+  integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==
+  dependencies:
+    lodash "^4.17.19"
+
+request-promise-native@^1.0.5, request-promise-native@^1.0.8:
+  version "1.0.9"
+  resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28"
+  integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==
+  dependencies:
+    request-promise-core "1.1.4"
+    stealthy-require "^1.1.1"
+    tough-cookie "^2.3.3"
+
+request-promise-native@^1.0.7:
+  version "1.0.8"
+  resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36"
+  integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==
+  dependencies:
+    request-promise-core "1.1.3"
+    stealthy-require "^1.1.1"
+    tough-cookie "^2.3.3"
+
+"request@>=2.76.0 <3.0.0", request@^2.87.0, request@^2.88.0, request@^2.88.2:
+  version "2.88.2"
+  resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
+  integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
+  dependencies:
+    aws-sign2 "~0.7.0"
+    aws4 "^1.8.0"
+    caseless "~0.12.0"
+    combined-stream "~1.0.6"
+    extend "~3.0.2"
+    forever-agent "~0.6.1"
+    form-data "~2.3.2"
+    har-validator "~5.1.3"
+    http-signature "~1.2.0"
+    is-typedarray "~1.0.0"
+    isstream "~0.1.2"
+    json-stringify-safe "~5.0.1"
+    mime-types "~2.1.19"
+    oauth-sign "~0.9.0"
+    performance-now "^2.1.0"
+    qs "~6.5.2"
+    safe-buffer "^5.1.2"
+    tough-cookie "~2.5.0"
+    tunnel-agent "^0.6.0"
+    uuid "^3.3.2"
+
+require-directory@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
+  integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
+
+require-from-string@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
+  integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
+
+require-main-filename@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
+  integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=
+
+require-main-filename@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
+  integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
+
+require-package-name@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/require-package-name/-/require-package-name-2.0.1.tgz#c11e97276b65b8e2923f75dabf5fb2ef0c3841b9"
+  integrity sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=
+
+requireindex@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef"
+  integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==
+
+requires-port@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
+  integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
+
+reselect@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz#f2529830e5d3d0e021408b246a206ef4ea4437f7"
+  integrity sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==
+
+reserved-words@^0.1.2:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/reserved-words/-/reserved-words-0.1.2.tgz#00a0940f98cd501aeaaac316411d9adc52b31ab1"
+  integrity sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=
+
+resize-observer-polyfill@1.5.0:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.0.tgz#660ff1d9712a2382baa2cad450a4716209f9ca69"
+  integrity sha512-M2AelyJDVR/oLnToJLtuDJRBBWUGUvvGigj1411hXhAdyFWqMaqHp7TixW3FpiLuVaikIcR1QL+zqoJoZlOgpg==
+
+resize-observer-polyfill@1.5.1, resize-observer-polyfill@^1.5.0, resize-observer-polyfill@^1.5.1:
+  version "1.5.1"
+  resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
+  integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
+
+resolve-cwd@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
+  integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=
+  dependencies:
+    resolve-from "^3.0.0"
+
+resolve-cwd@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
+  integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
+  dependencies:
+    resolve-from "^5.0.0"
+
+resolve-dir@^1.0.0, resolve-dir@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43"
+  integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=
+  dependencies:
+    expand-tilde "^2.0.0"
+    global-modules "^1.0.0"
+
+resolve-from@5.0.0, resolve-from@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
+  integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
+
+resolve-from@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
+  integrity sha1-six699nWiBvItuZTM17rywoYh0g=
+
+resolve-from@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
+  integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+
+resolve-global@1.0.0, resolve-global@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255"
+  integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==
+  dependencies:
+    global-dirs "^0.1.1"
+
+resolve-pathname@^3.0.0:
+  version "3.0.0"
+  resolved "http://localhost:4873/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd"
+  integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==
+
+resolve-pkg@2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/resolve-pkg/-/resolve-pkg-2.0.0.tgz#ac06991418a7623edc119084edc98b0e6bf05a41"
+  integrity sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ==
+  dependencies:
+    resolve-from "^5.0.0"
+
+resolve-protobuf-schema@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz#9ca9a9e69cf192bbdaf1006ec1973948aa4a3758"
+  integrity sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==
+  dependencies:
+    protocol-buffers-schema "^3.3.1"
+
+resolve-url@^0.2.1:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
+  integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
+
+resolve@1.1.7:
+  version "1.1.7"
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
+  integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
+
+resolve@1.x, resolve@^1.1.5, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.8.1:
+  version "1.17.0"
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
+  integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
+  dependencies:
+    path-parse "^1.0.6"
+
+resolve@^1.18.1, resolve@^1.5.0:
+  version "1.19.0"
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c"
+  integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
+  dependencies:
+    is-core-module "^2.1.0"
+    path-parse "^1.0.6"
+
+restore-cursor@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
+  integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
+  dependencies:
+    onetime "^2.0.0"
+    signal-exit "^3.0.2"
+
+restore-cursor@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
+  integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
+  dependencies:
+    onetime "^5.1.0"
+    signal-exit "^3.0.2"
+
+ret@~0.1.10:
+  version "0.1.15"
+  resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
+  integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
+
+retry@0.12.0, retry@^0.12.0:
+  version "0.12.0"
+  resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
+  integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
+
+retry@^0.10.0:
+  version "0.10.1"
+  resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4"
+  integrity sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=
+
+reusify@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
+  integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
+
+rgb-regex@^1.0.1:
+  version "1.0.1"
+  resolved "http://localhost:4873/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
+  integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE=
+
+rgba-regex@^1.0.0:
+  version "1.0.0"
+  resolved "http://localhost:4873/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
+  integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
+
+right-pad@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/right-pad/-/right-pad-1.0.1.tgz#8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0"
+  integrity sha1-jKCMLLtbVedNr6lr9/0aJ9VoyNA=
+
+rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@^2.7.1:
+  version "2.7.1"
+  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
+  integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
+  dependencies:
+    glob "^7.1.3"
+
+rimraf@^3.0.0, rimraf@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+  integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
+  dependencies:
+    glob "^7.1.3"
+
+ripemd160@^2.0.0, ripemd160@^2.0.1:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
+  integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
+  dependencies:
+    hash-base "^3.0.0"
+    inherits "^2.0.1"
+
+rison@^0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/rison/-/rison-0.1.1.tgz#4dcc0557b241aff60e76178e7792135713f33120"
+  integrity sha1-TcwFV7JBr/YOdheOd5ITVxPzMSA=
+
+rst-selector-parser@^2.2.3:
+  version "2.2.3"
+  resolved "https://registry.yarnpkg.com/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz#81b230ea2fcc6066c89e3472de794285d9b03d91"
+  integrity sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=
+  dependencies:
+    lodash.flattendeep "^4.4.0"
+    nearley "^2.7.10"
+
+rsvp@^4.8.4:
+  version "4.8.5"
+  resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
+  integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
+
+run-async@^2.0.0, run-async@^2.2.0, run-async@^2.4.0:
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8"
+  integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg==
+  dependencies:
+    is-promise "^2.1.0"
+
+run-parallel@^1.1.9:
+  version "1.1.9"
+  resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679"
+  integrity sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==
+
+run-queue@^1.0.0, run-queue@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
+  integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
+  dependencies:
+    aproba "^1.1.1"
+
+rw@1, rw@^1.3.3:
+  version "1.3.3"
+  resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
+  integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=
+
+rxjs@^6.1.0, rxjs@^6.4.0, rxjs@^6.5.3:
+  version "6.5.4"
+  resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.4.tgz#e0777fe0d184cec7872df147f303572d414e211c"
+  integrity sha512-naMQXcgEo3csAEGvw/NydRA0fuS2nDZJiw1YUWFKU7aPPAPGZEsD4Iimit96qwCieH6y614MCLYwdkrWx7z/7Q==
+  dependencies:
+    tslib "^1.9.0"
+
+rxjs@^6.3.3:
+  version "6.6.3"
+  resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552"
+  integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==
+  dependencies:
+    tslib "^1.9.0"
+
+rxjs@^6.5.5:
+  version "6.5.5"
+  resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec"
+  integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ==
+  dependencies:
+    tslib "^1.9.0"
+
+s2-geometry@^1.2.10:
+  version "1.2.10"
+  resolved "http://localhost:4873/s2-geometry/-/s2-geometry-1.2.10.tgz#c6ff22f3eccafd0eea491b60b44c141b9887acab"
+  integrity sha1-xv8i8+zK/Q7qSRtgtEwUG5iHrKs=
+  dependencies:
+    long "^3.2.0"
+
+safe-buffer@5.1.1:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
+  integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==
+
+safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+  version "5.1.2"
+  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
+  integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+
+safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
+  version "5.2.0"
+  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
+  integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
+
+safe-regex@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
+  integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
+  dependencies:
+    ret "~0.1.10"
+
+safe-regex@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-2.1.1.tgz#f7128f00d056e2fe5c11e81a1324dd974aadced2"
+  integrity sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==
+  dependencies:
+    regexp-tree "~0.1.1"
+
+"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+  integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
+
+sane@^4.0.3, sane@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
+  integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
+  dependencies:
+    "@cnakazawa/watch" "^1.0.3"
+    anymatch "^2.0.0"
+    capture-exit "^2.0.0"
+    exec-sh "^0.3.2"
+    execa "^1.0.0"
+    fb-watchman "^2.0.0"
+    micromatch "^3.1.4"
+    minimist "^1.1.1"
+    walker "~1.0.5"
+
+sax@^1.2.4, sax@~1.2.4:
+  version "1.2.4"
+  resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
+  integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
+
+saxes@^3.1.9:
+  version "3.1.11"
+  resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b"
+  integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==
+  dependencies:
+    xmlchars "^2.1.1"
+
+saxes@^5.0.0:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
+  integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
+  dependencies:
+    xmlchars "^2.2.0"
+
+scheduler@^0.19.1:
+  version "0.19.1"
+  resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
+  integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==
+  dependencies:
+    loose-envify "^1.1.0"
+    object-assign "^4.1.1"
+
+schema-utils@1.0.0, schema-utils@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
+  integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
+  dependencies:
+    ajv "^6.1.0"
+    ajv-errors "^1.0.0"
+    ajv-keywords "^3.1.0"
+
+schema-utils@^0.4.2:
+  version "0.4.7"
+  resolved "http://localhost:4873/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187"
+  integrity sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==
+  dependencies:
+    ajv "^6.1.0"
+    ajv-keywords "^3.1.0"
+
+schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.4, schema-utils@^2.6.5:
+  version "2.6.5"
+  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.5.tgz#c758f0a7e624263073d396e29cd40aa101152d8a"
+  integrity sha512-5KXuwKziQrTVHh8j/Uxz+QUbxkaLW9X/86NBlx/gnKgtsZA2GIVMUn17qWhRFwF8jdYb3Dig5hRO/W5mZqy6SQ==
+  dependencies:
+    ajv "^6.12.0"
+    ajv-keywords "^3.4.1"
+
+schema-utils@^2.6.6, schema-utils@^2.7.0:
+  version "2.7.1"
+  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
+  integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
+  dependencies:
+    "@types/json-schema" "^7.0.5"
+    ajv "^6.12.4"
+    ajv-keywords "^3.5.2"
+
+schema-utils@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef"
+  integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==
+  dependencies:
+    "@types/json-schema" "^7.0.6"
+    ajv "^6.12.5"
+    ajv-keywords "^3.5.2"
+
+scoped-regex@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/scoped-regex/-/scoped-regex-1.0.0.tgz#a346bb1acd4207ae70bd7c0c7ca9e566b6baddb8"
+  integrity sha1-o0a7Gs1CB65wvXwMfKnlZra63bg=
+
+scroll-into-view-if-needed@^2.2.25:
+  version "2.2.26"
+  resolved "https://registry.yarnpkg.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.26.tgz#e4917da0c820135ff65ad6f7e4b7d7af568c4f13"
+  integrity sha512-SQ6AOKfABaSchokAmmaxVnL9IArxEnLEX9j4wAZw+x4iUTb40q7irtHG3z4GtAWz5veVZcCnubXDBRyLVQaohw==
+  dependencies:
+    compute-scroll-into-view "^1.0.16"
+
+seedrandom@^3.0.5:
+  version "3.0.5"
+  resolved "https://registry.yarnpkg.com/seedrandom/-/seedrandom-3.0.5.tgz#54edc85c95222525b0c7a6f6b3543d8e0b3aa0a7"
+  integrity sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg==
+
+seer@^0.2.4:
+  version "0.2.5"
+  resolved "http://localhost:4873/seer/-/seer-0.2.5.tgz#f0975153741f4d1c3916a144eef4738458bcb05a"
+  integrity sha512-//0Zwt0x97KQhIWrp4oq9AVNvGA2ctCx4dmFddpkORjRr6bW+hyC8eOhWBVIhiU3uHv1XLU1dekfFKOi28RGHA==
+
+select-hose@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
+  integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=
+
+select@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d"
+  integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=
+
+selfsigned@^1.10.7:
+  version "1.10.8"
+  resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.8.tgz#0d17208b7d12c33f8eac85c41835f27fc3d81a30"
+  integrity sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==
+  dependencies:
+    node-forge "^0.10.0"
+
+semver-compare@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
+  integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
+
+semver-regex@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338"
+  integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==
+
+"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.4.1, semver@^5.5, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1:
+  version "5.7.1"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
+  integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
+
+semver@6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-6.0.0.tgz#05e359ee571e5ad7ed641a6eec1e547ba52dea65"
+  integrity sha512-0UewU+9rFapKFnlbirLi3byoOuhrSsli/z/ihNnvM24vgF+8sNBiI1LZPBSH9wJKUwaUbw+s3hToDLCXkrghrQ==
+
+semver@7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
+  integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
+
+semver@7.x, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4:
+  version "7.3.4"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97"
+  integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==
+  dependencies:
+    lru-cache "^6.0.0"
+
+semver@^6.0.0, semver@^6.2.0, semver@^6.3.0:
+  version "6.3.0"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
+  integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+
+send@0.17.1:
+  version "0.17.1"
+  resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
+  integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
+  dependencies:
+    debug "2.6.9"
+    depd "~1.1.2"
+    destroy "~1.0.4"
+    encodeurl "~1.0.2"
+    escape-html "~1.0.3"
+    etag "~1.8.1"
+    fresh "0.5.2"
+    http-errors "~1.7.2"
+    mime "1.6.0"
+    ms "2.1.1"
+    on-finished "~2.3.0"
+    range-parser "~1.2.1"
+    statuses "~1.5.0"
+
+sentence-case@^2.1.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-2.1.1.tgz#1f6e2dda39c168bf92d13f86d4a918933f667ed4"
+  integrity sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ=
+  dependencies:
+    no-case "^2.2.0"
+    upper-case-first "^1.1.2"
+
+serialize-javascript@^2.1.2:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
+  integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
+
+serialize-javascript@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
+  integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
+  dependencies:
+    randombytes "^2.1.0"
+
+serialize-javascript@^5.0.1:
+  version "5.0.1"
+  resolved "http://localhost:4873/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4"
+  integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
+  dependencies:
+    randombytes "^2.1.0"
+
+serialize-query-params@^1.2.3:
+  version "1.3.0"
+  resolved "http://localhost:4873/serialize-query-params/-/serialize-query-params-1.3.0.tgz#7d56509df30dfb94b7728b1ef35dc11e52c57676"
+  integrity sha512-A4s3I1KT1+Rb1VTSQ5vF6Fs3aLMrGnhoGblj0YFiAFwnHGaW1tnhRT881yBFlesiqMiemK9msH8CWrZgIWDRoQ==
+
+serve-favicon@^2.5.0:
+  version "2.5.0"
+  resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0"
+  integrity sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=
+  dependencies:
+    etag "~1.8.1"
+    fresh "0.5.2"
+    ms "2.1.1"
+    parseurl "~1.3.2"
+    safe-buffer "5.1.1"
+
+serve-index@^1.9.1:
+  version "1.9.1"
+  resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
+  integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=
+  dependencies:
+    accepts "~1.3.4"
+    batch "0.6.1"
+    debug "2.6.9"
+    escape-html "~1.0.3"
+    http-errors "~1.6.2"
+    mime-types "~2.1.17"
+    parseurl "~1.3.2"
+
+serve-static@1.14.1:
+  version "1.14.1"
+  resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
+  integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
+  dependencies:
+    encodeurl "~1.0.2"
+    escape-html "~1.0.3"
+    parseurl "~1.3.3"
+    send "0.17.1"
+
+set-blocking@^2.0.0, set-blocking@~2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
+  integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
+
+set-getter@^0.1.0:
+  version "0.1.0"
+  resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376"
+  integrity sha1-12nBgsnVpR9AkUXy+6guXoboA3Y=
+  dependencies:
+    to-object-path "^0.3.0"
+
+set-value@^2.0.0, set-value@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
+  integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
+  dependencies:
+    extend-shallow "^2.0.1"
+    is-extendable "^0.1.1"
+    is-plain-object "^2.0.3"
+    split-string "^3.0.1"
+
+setimmediate-napi@^1.0.3:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/setimmediate-napi/-/setimmediate-napi-1.0.6.tgz#43cd797ef25d66eb69c782170ea01898787b8720"
+  integrity sha512-sdNXN15Av1jPXuSal4Mk4tEAKn0+8lfF9Z50/negaQMrAIO9c1qM0eiCh8fT6gctp0RiCObk+6/Xfn5RMGdZoA==
+  dependencies:
+    get-symbol-from-current-process-h "^1.0.1"
+    get-uv-event-loop-napi-h "^1.0.5"
+
+setimmediate@^1.0.4, setimmediate@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
+  integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
+
+setprototypeof@1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
+  integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
+
+setprototypeof@1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
+  integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
+
+sha.js@^2.4.0, sha.js@^2.4.8:
+  version "2.4.11"
+  resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
+  integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
+  dependencies:
+    inherits "^2.0.1"
+    safe-buffer "^5.0.1"
+
+shallow-clone@^0.1.2:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060"
+  integrity sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=
+  dependencies:
+    is-extendable "^0.1.1"
+    kind-of "^2.0.1"
+    lazy-cache "^0.2.3"
+    mixin-object "^2.0.1"
+
+shallow-clone@^3.0.0:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
+  integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
+  dependencies:
+    kind-of "^6.0.2"
+
+shallow-copy@~0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/shallow-copy/-/shallow-copy-0.0.1.tgz#415f42702d73d810330292cc5ee86eae1a11a170"
+  integrity sha1-QV9CcC1z2BAzApLMXuhurhoRoXA=
+
+shallow-equal@^1.1.0:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da"
+  integrity sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==
+
+shallowequal@^1.0.2, shallowequal@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
+  integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
+
+shapefile@0.3:
+  version "0.3.1"
+  resolved "https://registry.yarnpkg.com/shapefile/-/shapefile-0.3.1.tgz#9bb9a429bd6086a0cfb03962d14cfdf420ffba12"
+  integrity sha1-m7mkKb1ghqDPsDli0Uz99CD/uhI=
+  dependencies:
+    d3-queue "1"
+    iconv-lite "0.2"
+    optimist "0.3"
+
+sharkdown@^0.1.0:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/sharkdown/-/sharkdown-0.1.1.tgz#64484bd0f08f347f8319e9ff947a670f6b48b1b2"
+  integrity sha512-exwooSpmo5s45lrexgz6Q0rFQM574wYIX3iDZ7RLLqOb7IAoQZu9nxlZODU972g19sR69OIpKP2cpHTzU+PHIg==
+  dependencies:
+    cardinal "~0.4.2"
+    minimist "0.0.5"
+    split "~0.2.10"
+
+shebang-command@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
+  integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
+  dependencies:
+    shebang-regex "^1.0.0"
+
+shebang-command@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+  integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+  dependencies:
+    shebang-regex "^3.0.0"
+
+shebang-regex@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
+  integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
+
+shebang-regex@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+  integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+
+shell-quote@1.7.2:
+  version "1.7.2"
+  resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
+  integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
+
+shelljs@0.7.6:
+  version "0.7.6"
+  resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad"
+  integrity sha1-N5zM+1a5HIYB5HkzVutTgpJN6a0=
+  dependencies:
+    glob "^7.0.0"
+    interpret "^1.0.0"
+    rechoir "^0.6.2"
+
+shelljs@^0.8.3:
+  version "0.8.3"
+  resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097"
+  integrity sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==
+  dependencies:
+    glob "^7.0.0"
+    interpret "^1.0.0"
+    rechoir "^0.6.2"
+
+shelljs@^0.8.4:
+  version "0.8.4"
+  resolved "http://localhost:4873/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2"
+  integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==
+  dependencies:
+    glob "^7.0.0"
+    interpret "^1.0.0"
+    rechoir "^0.6.2"
+
+shellwords@^0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
+  integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
+
+shortid@^2.2.14:
+  version "2.2.15"
+  resolved "https://registry.yarnpkg.com/shortid/-/shortid-2.2.15.tgz#2b902eaa93a69b11120373cd42a1f1fe4437c122"
+  integrity sha512-5EaCy2mx2Jgc/Fdn9uuDuNIIfWBpzY4XIlhoqtXF6qsf+/+SGZ+FxDdX/ZsMZiWupIWNqAEmiNY4RC+LSmCeOw==
+  dependencies:
+    nanoid "^2.1.0"
+
+shortid@^2.2.6:
+  version "2.2.16"
+  resolved "http://localhost:4873/shortid/-/shortid-2.2.16.tgz#b742b8f0cb96406fd391c76bfc18a67a57fe5608"
+  integrity sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==
+  dependencies:
+    nanoid "^2.1.0"
+
+side-channel@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz#df5d1abadb4e4bf4af1cd8852bf132d2f7876947"
+  integrity sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA==
+  dependencies:
+    es-abstract "^1.17.0-next.1"
+    object-inspect "^1.7.0"
+
+sigmund@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
+  integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=
+
+signal-exit@^3.0.0, signal-exit@^3.0.2:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
+  integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
+
+simple-swizzle@^0.2.2:
+  version "0.2.2"
+  resolved "http://localhost:4873/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
+  integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
+  dependencies:
+    is-arrayish "^0.3.1"
+
+simplebar-react@^1.0.0-alpha.6:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/simplebar-react/-/simplebar-react-1.2.3.tgz#bd81fa9827628470e9470d06caef6ece15e1c882"
+  integrity sha512-1EOWJzFC7eqHUp1igD1/tb8GBv5aPQA5ZMvpeDnVkpNJ3jAuvmrL2kir3HuijlxhG7njvw9ssxjjBa89E5DrJg==
+  dependencies:
+    prop-types "^15.6.1"
+    simplebar "^4.2.3"
+
+simplebar@^4.2.3:
+  version "4.2.3"
+  resolved "https://registry.yarnpkg.com/simplebar/-/simplebar-4.2.3.tgz#dac40aced299c17928329eab3d5e6e795fafc10c"
+  integrity sha512-9no0pK7/1y+8/oTF3sy/+kx0PjQ3uk4cYwld5F1CJGk2gx+prRyUq8GRfvcVLq5niYWSozZdX73a2wIr1o9l/g==
+  dependencies:
+    can-use-dom "^0.1.0"
+    core-js "^3.0.1"
+    lodash.debounce "^4.0.8"
+    lodash.memoize "^4.1.2"
+    lodash.throttle "^4.1.1"
+    resize-observer-polyfill "^1.5.1"
+
+sinon@^9.0.1:
+  version "9.0.1"
+  resolved "https://registry.yarnpkg.com/sinon/-/sinon-9.0.1.tgz#dbb18f7d8f5835bcf91578089c0a97b2fffdd73b"
+  integrity sha512-iTTyiQo5T94jrOx7X7QLBZyucUJ2WvL9J13+96HMfm2CGoJYbIPqRfl6wgNcqmzk0DI28jeGx5bUTXizkrqBmg==
+  dependencies:
+    "@sinonjs/commons" "^1.7.0"
+    "@sinonjs/fake-timers" "^6.0.0"
+    "@sinonjs/formatio" "^5.0.1"
+    "@sinonjs/samsam" "^5.0.3"
+    diff "^4.0.2"
+    nise "^4.0.1"
+    supports-color "^7.1.0"
+
+sinon@^9.0.2:
+  version "9.2.4"
+  resolved "http://localhost:4873/sinon/-/sinon-9.2.4.tgz#e55af4d3b174a4443a8762fa8421c2976683752b"
+  integrity sha512-zljcULZQsJxVra28qIAL6ow1Z9tpattkCTEJR4RBP3TGc00FcttsP5pK284Nas5WjMZU5Yzy3kAIp3B3KRf5Yg==
+  dependencies:
+    "@sinonjs/commons" "^1.8.1"
+    "@sinonjs/fake-timers" "^6.0.1"
+    "@sinonjs/samsam" "^5.3.1"
+    diff "^4.0.2"
+    nise "^4.0.4"
+    supports-color "^7.1.0"
+
+sisteransi@^1.0.4:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
+  integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
+
+slash@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
+  integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=
+
+slash@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
+  integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
+
+slash@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
+  integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
+
+sleep-promise@^8.0.1:
+  version "8.0.1"
+  resolved "http://localhost:4873/sleep-promise/-/sleep-promise-8.0.1.tgz#8d795a27ea23953df6b52b91081e5e22665993c5"
+  integrity sha1-jXlaJ+ojlT32tSuRCB5eImZZk8U=
+
+slice-ansi@0.0.4:
+  version "0.0.4"
+  resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
+  integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=
+
+slice-ansi@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787"
+  integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==
+  dependencies:
+    ansi-styles "^4.0.0"
+    astral-regex "^2.0.0"
+    is-fullwidth-code-point "^3.0.0"
+
+slice-ansi@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
+  integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
+  dependencies:
+    ansi-styles "^4.0.0"
+    astral-regex "^2.0.0"
+    is-fullwidth-code-point "^3.0.0"
+
+slide@^1.1.6:
+  version "1.1.6"
+  resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
+  integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=
+
+smart-buffer@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.1.0.tgz#91605c25d91652f4661ea69ccf45f1b331ca21ba"
+  integrity sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw==
+
+snake-case@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-2.1.0.tgz#41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f"
+  integrity sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8=
+  dependencies:
+    no-case "^2.2.0"
+
+snapdragon-node@^2.0.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
+  integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
+  dependencies:
+    define-property "^1.0.0"
+    isobject "^3.0.0"
+    snapdragon-util "^3.0.1"
+
+snapdragon-util@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
+  integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
+  dependencies:
+    kind-of "^3.2.0"
+
+snapdragon@^0.8.1:
+  version "0.8.2"
+  resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
+  integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
+  dependencies:
+    base "^0.11.1"
+    debug "^2.2.0"
+    define-property "^0.2.5"
+    extend-shallow "^2.0.1"
+    map-cache "^0.2.2"
+    source-map "^0.5.6"
+    source-map-resolve "^0.5.0"
+    use "^3.1.0"
+
+sockjs-client@1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5"
+  integrity sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==
+  dependencies:
+    debug "^3.2.5"
+    eventsource "^1.0.7"
+    faye-websocket "~0.11.1"
+    inherits "^2.0.3"
+    json3 "^3.3.2"
+    url-parse "^1.4.3"
+
+sockjs@0.3.20:
+  version "0.3.20"
+  resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.20.tgz#b26a283ec562ef8b2687b44033a4eeceac75d855"
+  integrity sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==
+  dependencies:
+    faye-websocket "^0.10.0"
+    uuid "^3.4.0"
+    websocket-driver "0.6.5"
+
+socks-proxy-agent@^4.0.0:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-4.0.2.tgz#3c8991f3145b2799e70e11bd5fbc8b1963116386"
+  integrity sha512-NT6syHhI9LmuEMSK6Kd2V7gNv5KFZoLE7V5udWmn0de+3Mkj3UMA/AJPLyeNUVmElCurSHtUdM3ETpR3z770Wg==
+  dependencies:
+    agent-base "~4.2.1"
+    socks "~2.3.2"
+
+socks@~2.3.2:
+  version "2.3.3"
+  resolved "https://registry.yarnpkg.com/socks/-/socks-2.3.3.tgz#01129f0a5d534d2b897712ed8aceab7ee65d78e3"
+  integrity sha512-o5t52PCNtVdiOvzMry7wU4aOqYWL0PeCXRWBEiJow4/i/wr+wpsJQ9awEu1EonLIqsfGd5qSgDdxEOvCdmBEpA==
+  dependencies:
+    ip "1.1.5"
+    smart-buffer "^4.1.0"
+
+sort-keys@^1.0.0:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
+  integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
+  dependencies:
+    is-plain-obj "^1.0.0"
+
+sort-keys@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
+  integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=
+  dependencies:
+    is-plain-obj "^1.0.0"
+
+source-list-map@^2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
+  integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
+
+source-map-resolve@^0.5.0:
+  version "0.5.3"
+  resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
+  integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
+  dependencies:
+    atob "^2.1.2"
+    decode-uri-component "^0.2.0"
+    resolve-url "^0.2.1"
+    source-map-url "^0.4.0"
+    urix "^0.1.0"
+
+source-map-resolve@^0.6.0:
+  version "0.6.0"
+  resolved "http://localhost:4873/source-map-resolve/-/source-map-resolve-0.6.0.tgz#3d9df87e236b53f16d01e58150fc7711138e5ed2"
+  integrity sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==
+  dependencies:
+    atob "^2.1.2"
+    decode-uri-component "^0.2.0"
+
+source-map-support@^0.5.0, source-map-support@^0.5.16:
+  version "0.5.19"
+  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
+  integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
+  dependencies:
+    buffer-from "^1.0.0"
+    source-map "^0.6.0"
+
+source-map-support@^0.5.6, source-map-support@~0.5.12:
+  version "0.5.16"
+  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042"
+  integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==
+  dependencies:
+    buffer-from "^1.0.0"
+    source-map "^0.6.0"
+
+source-map-url@^0.4.0:
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
+  integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
+
+source-map@0.5.0:
+  version "0.5.0"
+  resolved "http://localhost:4873/source-map/-/source-map-0.5.0.tgz#0fe96503ac86a5adb5de63f4e412ae4872cdbe86"
+  integrity sha1-D+llA6yGpa213mP05BKuSHLNvoY=
+
+source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7:
+  version "0.5.7"
+  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
+  integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
+
+source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
+  version "0.6.1"
+  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+  integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+
+source-map@^0.7.3:
+  version "0.7.3"
+  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
+  integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
+
+space-separated-tokens@^1.0.0:
+  version "1.1.5"
+  resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899"
+  integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==
+
+spdx-correct@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
+  integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==
+  dependencies:
+    spdx-expression-parse "^3.0.0"
+    spdx-license-ids "^3.0.0"
+
+spdx-exceptions@^2.1.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977"
+  integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==
+
+spdx-expression-parse@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
+  integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==
+  dependencies:
+    spdx-exceptions "^2.1.0"
+    spdx-license-ids "^3.0.0"
+
+spdx-license-ids@^3.0.0:
+  version "3.0.5"
+  resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654"
+  integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
+
+spdy-transport@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31"
+  integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==
+  dependencies:
+    debug "^4.1.0"
+    detect-node "^2.0.4"
+    hpack.js "^2.1.6"
+    obuf "^1.1.2"
+    readable-stream "^3.0.6"
+    wbuf "^1.7.3"
+
+spdy@^4.0.2:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b"
+  integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==
+  dependencies:
+    debug "^4.1.0"
+    handle-thing "^2.0.0"
+    http-deceiver "^1.2.7"
+    select-hose "^2.0.0"
+    spdy-transport "^3.0.0"
+
+speed-measure-webpack-plugin@^1.2.3:
+  version "1.4.2"
+  resolved "http://localhost:4873/speed-measure-webpack-plugin/-/speed-measure-webpack-plugin-1.4.2.tgz#1608e62d3bdb45f01810010e1b5bfedefedfa58f"
+  integrity sha512-AtVzD0bnIy2/B0fWqJpJgmhcrfWFhBlduzSo0uwplr/QvB33ZNZj2NEth3NONgdnZJqicK0W0mSxnLSbsVCDbw==
+  dependencies:
+    chalk "^4.1.0"
+
+speedometer@~1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-1.0.0.tgz#cd671cb06752c22bca3370e2f334440be4fc62e2"
+  integrity sha1-zWccsGdSwivKM3Di8zREC+T8YuI=
+
+split-on-first@^1.0.0:
+  version "1.1.0"
+  resolved "http://localhost:4873/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f"
+  integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==
+
+split-string@^3.0.1, split-string@^3.0.2:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
+  integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
+  dependencies:
+    extend-shallow "^3.0.0"
+
+split.js@^1.6.0:
+  version "1.6.2"
+  resolved "http://localhost:4873/split.js/-/split.js-1.6.2.tgz#b8c63aeef2b15d84a003ead09e7def6ad166bb40"
+  integrity sha512-72C7zcQePzlmWqPOKkB2Ro0sUmnWSx+qEWXjLJKk6Qp4jAkFRz1hJgJb+ay6ZQyz/Aw9r8N/PZiCEKbPVpFoDQ==
+
+split2@^2.0.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493"
+  integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==
+  dependencies:
+    through2 "^2.0.2"
+
+split@^1.0.0, split@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
+  integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==
+  dependencies:
+    through "2"
+
+split@~0.2.10:
+  version "0.2.10"
+  resolved "https://registry.yarnpkg.com/split/-/split-0.2.10.tgz#67097c601d697ce1368f418f06cd201cf0521a57"
+  integrity sha1-Zwl8YB1pfOE2j0GPBs0gHPBSGlc=
+  dependencies:
+    through "2"
+
+sprintf-js@~1.0.2:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
+  integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
+
+sshpk@^1.7.0:
+  version "1.16.1"
+  resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
+  integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==
+  dependencies:
+    asn1 "~0.2.3"
+    assert-plus "^1.0.0"
+    bcrypt-pbkdf "^1.0.0"
+    dashdash "^1.12.0"
+    ecc-jsbn "~0.1.1"
+    getpass "^0.1.1"
+    jsbn "~0.1.0"
+    safer-buffer "^2.0.2"
+    tweetnacl "~0.14.0"
+
+ssri@^6.0.0, ssri@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8"
+  integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==
+  dependencies:
+    figgy-pudding "^3.5.1"
+
+ssri@^7.0.0:
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/ssri/-/ssri-7.1.0.tgz#92c241bf6de82365b5c7fb4bd76e975522e1294d"
+  integrity sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g==
+  dependencies:
+    figgy-pudding "^3.5.1"
+    minipass "^3.1.1"
+
+ssri@^8.0.0:
+  version "8.0.1"
+  resolved "http://localhost:4873/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
+  integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
+  dependencies:
+    minipass "^3.1.1"
+
+stable@^0.1.8:
+  version "0.1.8"
+  resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
+  integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
+
+stack-utils@^1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8"
+  integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==
+
+stack-utils@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.2.tgz#5cf48b4557becb4638d0bc4f21d23f5d19586593"
+  integrity sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg==
+  dependencies:
+    escape-string-regexp "^2.0.0"
+
+stackframe@^1.1.1:
+  version "1.2.0"
+  resolved "http://localhost:4873/stackframe/-/stackframe-1.2.0.tgz#52429492d63c62eb989804c11552e3d22e779303"
+  integrity sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==
+
+state-toggle@^1.0.0:
+  version "1.0.3"
+  resolved "http://localhost:4873/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe"
+  integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==
+
+static-eval@^2.0.0:
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.5.tgz#f0782e66999c4b3651cda99d9ce59c507d188f71"
+  integrity sha512-nNbV6LbGtMBgv7e9LFkt5JV8RVlRsyJrphfAt9tOtBBW/SfnzZDf2KnS72an8e434A+9e/BmJuTxeGPvrAK7KA==
+  dependencies:
+    escodegen "^1.11.1"
+
+static-extend@^0.1.1:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
+  integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
+  dependencies:
+    define-property "^0.2.5"
+    object-copy "^0.1.0"
+
+static-module@^2.2.0:
+  version "2.2.5"
+  resolved "https://registry.yarnpkg.com/static-module/-/static-module-2.2.5.tgz#bd40abceae33da6b7afb84a0e4329ff8852bfbbf"
+  integrity sha512-D8vv82E/Kpmz3TXHKG8PPsCPg+RAX6cbCOyvjM6x04qZtQ47EtJFVwRsdov3n5d6/6ynrOY9XB4JkaZwB2xoRQ==
+  dependencies:
+    concat-stream "~1.6.0"
+    convert-source-map "^1.5.1"
+    duplexer2 "~0.1.4"
+    escodegen "~1.9.0"
+    falafel "^2.1.0"
+    has "^1.0.1"
+    magic-string "^0.22.4"
+    merge-source-map "1.0.4"
+    object-inspect "~1.4.0"
+    quote-stream "~1.0.2"
+    readable-stream "~2.3.3"
+    shallow-copy "~0.0.1"
+    static-eval "^2.0.0"
+    through2 "~2.0.3"
+
+"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
+  integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
+
+stealthy-require@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
+  integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
+
+store2@^2.7.1:
+  version "2.11.0"
+  resolved "https://registry.yarnpkg.com/store2/-/store2-2.11.0.tgz#307636a239014ef4d8f1c8b47afe903509484fc8"
+  integrity sha512-WeIZ5+c/KzBSutSqOjUCAkk1qTLVBcYUuvrhNx8ndjLZKdZRfP6Vv7AOxlynuL6tVU/6zt6e2CTHwWI5KE+fKg==
+
+storybook-addon-jsx@^7.2.3, storybook-addon-jsx@^7.3.3:
+  version "7.3.4"
+  resolved "https://registry.yarnpkg.com/storybook-addon-jsx/-/storybook-addon-jsx-7.3.4.tgz#fdd0c47091fe51a86ac52c820bf9837ab45a6711"
+  integrity sha512-15bBSk4zl6yuIKWbJdQbl3MGbABzjhJf5cFx657nF8OmoOlXMpsz5+lxfc3c+AyRvUZxdJOXkvtRqBTmQ0mouQ==
+  dependencies:
+    copy-to-clipboard "^3.0.8"
+    js-beautify "^1.8.8"
+    react-element-to-jsx-string "^14.3.1"
+    storybook-pretty-props "^1.0.3"
+
+storybook-addon-paddings@^3.2.0:
+  version "3.2.0"
+  resolved "http://localhost:4873/storybook-addon-paddings/-/storybook-addon-paddings-3.2.0.tgz#edd3e15fca814b01c2ed531ccb34a83dbf8ebdfa"
+  integrity sha512-kqfZ2JIrJjb6wT5DtYzcNFOj03wS4e6xKdRBb4D+Okwn0pr+dGhiPblsQzbPIVRAbamq9VJw/b4pmiLeVL3FyA==
+  dependencies:
+    "@storybook/addons" "^6.0.21"
+    "@storybook/api" "^6.0.21"
+    "@storybook/components" "^6.0.21"
+    "@storybook/theming" "^6.0.21"
+    core-js "^3.6.5"
+    memoizerific "^1.11.3"
+    react "^16.13.1"
+
+storybook-pretty-props@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/storybook-pretty-props/-/storybook-pretty-props-1.0.3.tgz#604974b998ffc680212bb7f3abc44fbfc9149119"
+  integrity sha512-iySc0X6K1QHqDV2JzU0DhWWARWhyJGI/11BYlHEymlFYfmewmxK4g/Z/ebj0YrwURAItwxMJUfsN2oDbiV0D8A==
+
+stream-browserify@^2.0.1:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
+  integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
+  dependencies:
+    inherits "~2.0.1"
+    readable-stream "^2.0.2"
+
+stream-each@^1.1.0:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
+  integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
+  dependencies:
+    end-of-stream "^1.1.0"
+    stream-shift "^1.0.0"
+
+stream-http@^2.7.2:
+  version "2.8.3"
+  resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
+  integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
+  dependencies:
+    builtin-status-codes "^3.0.0"
+    inherits "^2.0.1"
+    readable-stream "^2.3.6"
+    to-arraybuffer "^1.0.0"
+    xtend "^4.0.0"
+
+stream-shift@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
+  integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
+
+strict-uri-encode@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
+  integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
+
+strict-uri-encode@^2.0.0:
+  version "2.0.0"
+  resolved "http://localhost:4873/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546"
+  integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY=
+
+string-argv@0.3.1:
+  version "0.3.1"
+  resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
+  integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
+
+string-convert@^0.2.0:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/string-convert/-/string-convert-0.2.1.tgz#6982cc3049fbb4cd85f8b24568b9d9bf39eeff97"
+  integrity sha1-aYLMMEn7tM2F+LJFaLnZvznu/5c=
+
+string-hash@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
+  integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
+
+string-length@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837"
+  integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==
+  dependencies:
+    astral-regex "^1.0.0"
+    strip-ansi "^5.2.0"
+
+string-length@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.1.tgz#4a973bf31ef77c4edbceadd6af2611996985f8a1"
+  integrity sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==
+  dependencies:
+    char-regex "^1.0.2"
+    strip-ansi "^6.0.0"
+
+string-template@~0.2.1:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add"
+  integrity sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=
+
+string-width@^1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
+  integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
+  dependencies:
+    code-point-at "^1.0.0"
+    is-fullwidth-code-point "^1.0.0"
+    strip-ansi "^3.0.0"
+
+"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
+  integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
+  dependencies:
+    is-fullwidth-code-point "^2.0.0"
+    strip-ansi "^4.0.0"
+
+string-width@^3.0.0, string-width@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
+  integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
+  dependencies:
+    emoji-regex "^7.0.1"
+    is-fullwidth-code-point "^2.0.0"
+    strip-ansi "^5.1.0"
+
+string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
+  integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
+  dependencies:
+    emoji-regex "^8.0.0"
+    is-fullwidth-code-point "^3.0.0"
+    strip-ansi "^6.0.0"
+
+"string.prototype.matchall@^4.0.0 || ^3.0.1", string.prototype.matchall@^4.0.2:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e"
+  integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0"
+    has-symbols "^1.0.1"
+    internal-slot "^1.0.2"
+    regexp.prototype.flags "^1.3.0"
+    side-channel "^1.0.2"
+
+string.prototype.padend@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3"
+  integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+
+string.prototype.padstart@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/string.prototype.padstart/-/string.prototype.padstart-3.1.0.tgz#b47c087540d0710be5a49375751a0a627bd4ff90"
+  integrity sha512-envqZvUp2JItI+OeQ5UAh1ihbAV5G/2bixTojvlIa090GGqF+NQRxbWb2nv9fTGrZABv6+pE6jXoAZhhS2k4Hw==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+
+string.prototype.trim@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.1.tgz#141233dff32c82bfad80684d7e5f0869ee0fb782"
+  integrity sha512-MjGFEeqixw47dAMFMtgUro/I0+wNqZB5GKXGt1fFr24u3TzDXCPu7J9Buppzoe3r/LqkSDLDDJzE15RGWDGAVw==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    function-bind "^1.1.1"
+
+string.prototype.trimend@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.0.tgz#ee497fd29768646d84be2c9b819e292439614373"
+  integrity sha512-EEJnGqa/xNfIg05SxiPSqRS7S9qwDhYts1TSLR1BQfYUfPe1stofgGKvwERK9+9yf+PpfBMlpBaCHucXGPQfUA==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.5"
+
+string.prototype.trimend@^1.0.1:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b"
+  integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==
+  dependencies:
+    call-bind "^1.0.0"
+    define-properties "^1.1.3"
+
+string.prototype.trimleft@^2.1.1:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc"
+  integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.5"
+    string.prototype.trimstart "^1.0.0"
+
+string.prototype.trimright@^2.1.1:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3"
+  integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.5"
+    string.prototype.trimend "^1.0.0"
+
+string.prototype.trimstart@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.0.tgz#afe596a7ce9de905496919406c9734845f01a2f2"
+  integrity sha512-iCP8g01NFYiiBOnwG1Xc3WZLyoo+RuBymwIlWncShXDDJYWN6DbnM3odslBJdgCdRlq94B5s63NWAZlcn2CS4w==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.5"
+
+string.prototype.trimstart@^1.0.1:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa"
+  integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==
+  dependencies:
+    call-bind "^1.0.0"
+    define-properties "^1.1.3"
+
+string_decoder@^1.0.0, string_decoder@^1.1.1:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
+  integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+  dependencies:
+    safe-buffer "~5.2.0"
+
+string_decoder@~1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
+  integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+  dependencies:
+    safe-buffer "~5.1.0"
+
+stringify-object@^3.3.0:
+  version "3.3.0"
+  resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
+  integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
+  dependencies:
+    get-own-enumerable-property-symbols "^3.0.0"
+    is-obj "^1.0.1"
+    is-regexp "^1.0.0"
+
+strip-ansi@5.2.0, strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
+  version "5.2.0"
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
+  integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
+  dependencies:
+    ansi-regex "^4.1.0"
+
+strip-ansi@6.0.0, strip-ansi@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
+  integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
+  dependencies:
+    ansi-regex "^5.0.0"
+
+strip-ansi@^3.0.0, strip-ansi@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
+  integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
+  dependencies:
+    ansi-regex "^2.0.0"
+
+strip-ansi@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
+  integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
+  dependencies:
+    ansi-regex "^3.0.0"
+
+strip-ansi@~0.1.0:
+  version "0.1.1"
+  resolved "http://localhost:4873/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991"
+  integrity sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE=
+
+strip-bom-stream@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz#f87db5ef2613f6968aa545abfe1ec728b6a829ca"
+  integrity sha1-+H217yYT9paKpUWr/h7HKLaoKco=
+  dependencies:
+    first-chunk-stream "^2.0.0"
+    strip-bom "^2.0.0"
+
+strip-bom@3.0.0, strip-bom@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
+  integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
+
+strip-bom@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
+  integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=
+  dependencies:
+    is-utf8 "^0.2.0"
+
+strip-bom@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878"
+  integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
+
+strip-eof@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
+  integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
+
+strip-final-newline@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
+  integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
+
+strip-indent@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
+  integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=
+  dependencies:
+    get-stdin "^4.0.1"
+
+strip-indent@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
+  integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=
+
+strip-indent@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
+  integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
+  dependencies:
+    min-indent "^1.0.0"
+
+strip-json-comments@2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
+  integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
+
+strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
+  integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+
+strip-outer@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631"
+  integrity sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==
+  dependencies:
+    escape-string-regexp "^1.0.2"
+
+strip-url-auth@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/strip-url-auth/-/strip-url-auth-1.0.1.tgz#22b0fa3a41385b33be3f331551bbb837fa0cd7ae"
+  integrity sha1-IrD6OkE4WzO+PzMVUbu4N/oM164=
+
+strong-log-transformer@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz#0f5ed78d325e0421ac6f90f7f10e691d6ae3ae10"
+  integrity sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==
+  dependencies:
+    duplexer "^0.1.1"
+    minimist "^1.2.0"
+    through "^2.3.4"
+
+style-loader@^1.0.0:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.3.tgz#9e826e69c683c4d9bf9db924f85e9abb30d5e200"
+  integrity sha512-rlkH7X/22yuwFYK357fMN/BxYOorfnfq0eD7+vqlemSK4wEcejFF1dg4zxP0euBW8NrYx2WZzZ8PPFevr7D+Kw==
+  dependencies:
+    loader-utils "^1.2.3"
+    schema-utils "^2.6.4"
+
+style-loader@^1.2.1:
+  version "1.3.0"
+  resolved "http://localhost:4873/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e"
+  integrity sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==
+  dependencies:
+    loader-utils "^2.0.0"
+    schema-utils "^2.7.0"
+
+style-to-object@0.3.0, style-to-object@^0.3.0:
+  version "0.3.0"
+  resolved "http://localhost:4873/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46"
+  integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==
+  dependencies:
+    inline-style-parser "0.1.1"
+
+stylehacks@^4.0.0:
+  version "4.0.3"
+  resolved "http://localhost:4873/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
+  integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==
+  dependencies:
+    browserslist "^4.0.0"
+    postcss "^7.0.0"
+    postcss-selector-parser "^3.0.0"
+
+supercluster@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-4.1.1.tgz#cf13c3b28a3fb3db5290bfad7f524e244bd4ce78"
+  integrity sha512-sF0FfUOPFp96DKzwWFLeQOEqqKu2PpcesxAFeFsknA/q7g7igVVn/p3NI2XHEghNSyDAqunKNKqAbqNO8+7NDQ==
+  dependencies:
+    kdbush "^2.0.1"
+
+supercluster@^6.0.1:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-6.0.2.tgz#aa2eaae185ef97872f388c683ec29f6991721ee3"
+  integrity sha512-aa0v2HURjBTOpbcknilcfxGDuArM8khklKSmZ/T8ZXL0BuRwb5aRw95lz+2bmWpFvCXDX/+FzqHxmg0TIaJErw==
+  dependencies:
+    kdbush "^3.0.0"
+
+supports-color@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
+  integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
+
+supports-color@^5.2.0, supports-color@^5.3.0, supports-color@^5.4.0:
+  version "5.5.0"
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+  integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+  dependencies:
+    has-flag "^3.0.0"
+
+supports-color@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
+  integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
+  dependencies:
+    has-flag "^3.0.0"
+
+supports-color@^7.0.0, supports-color@^7.1.0:
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
+  integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
+  dependencies:
+    has-flag "^4.0.0"
+
+supports-hyperlinks@^2.0.0, supports-hyperlinks@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47"
+  integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==
+  dependencies:
+    has-flag "^4.0.0"
+    supports-color "^7.0.0"
+
+svg-parser@^2.0.0, svg-parser@^2.0.2:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5"
+  integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==
+
+svgo@^1.0.0, svgo@^1.2.2:
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
+  integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
+  dependencies:
+    chalk "^2.4.1"
+    coa "^2.0.2"
+    css-select "^2.0.0"
+    css-select-base-adapter "^0.1.1"
+    css-tree "1.0.0-alpha.37"
+    csso "^4.0.2"
+    js-yaml "^3.13.1"
+    mkdirp "~0.5.1"
+    object.values "^1.1.0"
+    sax "~1.2.4"
+    stable "^0.1.8"
+    unquote "~1.1.1"
+    util.promisify "~1.0.0"
+
+swap-case@^1.1.0:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/swap-case/-/swap-case-1.1.2.tgz#c39203a4587385fad3c850a0bd1bcafa081974e3"
+  integrity sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM=
+  dependencies:
+    lower-case "^1.1.1"
+    upper-case "^1.1.1"
+
+symbol-observable@^1.0.3, symbol-observable@^1.0.4, symbol-observable@^1.1.0, symbol-observable@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
+  integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
+
+symbol-tree@^3.2.2, symbol-tree@^3.2.4:
+  version "3.2.4"
+  resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
+  integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
+
+symbol.prototype.description@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/symbol.prototype.description/-/symbol.prototype.description-1.0.2.tgz#f325e1e6ad534b3b29c9c3ca73c136c9ce03c5e2"
+  integrity sha512-2CW5SU4/Ki1cYOOHcL2cXK4rxSg5hCU1TwZ7X4euKhV9VnfqKslh7T6/UyKkubA8cq2tOmsOv7m3ZUmQslBRuw==
+  dependencies:
+    es-abstract "^1.17.0-next.1"
+    has-symbols "^1.0.1"
+
+table@^6.0.4:
+  version "6.0.7"
+  resolved "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz#e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34"
+  integrity sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==
+  dependencies:
+    ajv "^7.0.2"
+    lodash "^4.17.20"
+    slice-ansi "^4.0.0"
+    string-width "^4.2.0"
+
+taketalk@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/taketalk/-/taketalk-1.0.0.tgz#b4d4f0deed206ae7df775b129ea2ca6de52f26dd"
+  integrity sha1-tNTw3u0gauffd1sSnqLKbeUvJt0=
+  dependencies:
+    get-stdin "^4.0.1"
+    minimist "^1.1.0"
+
+tapable@^0.1.8:
+  version "0.1.10"
+  resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4"
+  integrity sha1-KcNXB8K3DlDQdIK10gLo7URtr9Q=
+
+tapable@^1.0.0, tapable@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
+  integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
+
+tar@^4.4.10, tar@^4.4.12, tar@^4.4.8:
+  version "4.4.13"
+  resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525"
+  integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==
+  dependencies:
+    chownr "^1.1.1"
+    fs-minipass "^1.2.5"
+    minipass "^2.8.6"
+    minizlib "^1.2.1"
+    mkdirp "^0.5.0"
+    safe-buffer "^5.1.2"
+    yallist "^3.0.3"
+
+tar@^6.0.2:
+  version "6.1.0"
+  resolved "http://localhost:4873/tar/-/tar-6.1.0.tgz#d1724e9bcc04b977b18d5c573b333a2207229a83"
+  integrity sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==
+  dependencies:
+    chownr "^2.0.0"
+    fs-minipass "^2.0.0"
+    minipass "^3.0.0"
+    minizlib "^2.1.1"
+    mkdirp "^1.0.3"
+    yallist "^4.0.0"
+
+telejson@^3.2.0:
+  version "3.3.0"
+  resolved "https://registry.yarnpkg.com/telejson/-/telejson-3.3.0.tgz#6d814f3c0d254d5c4770085aad063e266b56ad03"
+  integrity sha512-er08AylQ+LEbDLp1GRezORZu5wKOHaBczF6oYJtgC3Idv10qZ8A3p6ffT+J5BzDKkV9MqBvu8HAKiIIOp6KJ2w==
+  dependencies:
+    "@types/is-function" "^1.0.0"
+    global "^4.4.0"
+    is-function "^1.0.1"
+    is-regex "^1.0.4"
+    is-symbol "^1.0.3"
+    isobject "^4.0.0"
+    lodash "^4.17.15"
+    memoizerific "^1.11.3"
+
+telejson@^5.0.2:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/telejson/-/telejson-5.1.0.tgz#cc04e4c2a355f9eb6af557e37acd6449feb1d146"
+  integrity sha512-Yy0N2OV0mosmr1SCZEm3Ezhu/oi5Dbao5RqauZu4+VI5I/XtVBHXajRk0txuqbFYtKdzzWGDZFGSif9ovVLjEA==
+  dependencies:
+    "@types/is-function" "^1.0.0"
+    global "^4.4.0"
+    is-function "^1.0.2"
+    is-regex "^1.1.1"
+    is-symbol "^1.0.3"
+    isobject "^4.0.0"
+    lodash "^4.17.20"
+    memoizerific "^1.11.3"
+
+temp-dir@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"
+  integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=
+
+temp-dir@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e"
+  integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==
+
+temp-write@^3.4.0:
+  version "3.4.0"
+  resolved "https://registry.yarnpkg.com/temp-write/-/temp-write-3.4.0.tgz#8cff630fb7e9da05f047c74ce4ce4d685457d492"
+  integrity sha1-jP9jD7fp2gXwR8dM5M5NaFRX1JI=
+  dependencies:
+    graceful-fs "^4.1.2"
+    is-stream "^1.1.0"
+    make-dir "^1.0.0"
+    pify "^3.0.0"
+    temp-dir "^1.0.0"
+    uuid "^3.0.1"
+
+tempfile@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-3.0.0.tgz#5376a3492de7c54150d0cc0612c3f00e2cdaf76c"
+  integrity sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==
+  dependencies:
+    temp-dir "^2.0.0"
+    uuid "^3.3.2"
+
+term-size@^2.1.0, term-size@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz#1f16adedfe9bdc18800e1776821734086fcc6753"
+  integrity sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==
+
+terminal-link@^2.0.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
+  integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
+  dependencies:
+    ansi-escapes "^4.2.1"
+    supports-hyperlinks "^2.0.0"
+
+terser-webpack-plugin@^1.1.0:
+  version "1.4.5"
+  resolved "http://localhost:4873/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
+  integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
+  dependencies:
+    cacache "^12.0.2"
+    find-cache-dir "^2.1.0"
+    is-wsl "^1.1.0"
+    schema-utils "^1.0.0"
+    serialize-javascript "^4.0.0"
+    source-map "^0.6.1"
+    terser "^4.1.2"
+    webpack-sources "^1.4.0"
+    worker-farm "^1.7.0"
+
+terser-webpack-plugin@^1.4.3:
+  version "1.4.3"
+  resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c"
+  integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==
+  dependencies:
+    cacache "^12.0.2"
+    find-cache-dir "^2.1.0"
+    is-wsl "^1.1.0"
+    schema-utils "^1.0.0"
+    serialize-javascript "^2.1.2"
+    source-map "^0.6.1"
+    terser "^4.1.2"
+    webpack-sources "^1.4.0"
+    worker-farm "^1.7.0"
+
+terser-webpack-plugin@^2.1.2:
+  version "2.3.5"
+  resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.5.tgz#5ad971acce5c517440ba873ea4f09687de2f4a81"
+  integrity sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w==
+  dependencies:
+    cacache "^13.0.1"
+    find-cache-dir "^3.2.0"
+    jest-worker "^25.1.0"
+    p-limit "^2.2.2"
+    schema-utils "^2.6.4"
+    serialize-javascript "^2.1.2"
+    source-map "^0.6.1"
+    terser "^4.4.3"
+    webpack-sources "^1.4.3"
+
+terser-webpack-plugin@^2.3.5:
+  version "2.3.8"
+  resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz#894764a19b0743f2f704e7c2a848c5283a696724"
+  integrity sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==
+  dependencies:
+    cacache "^13.0.1"
+    find-cache-dir "^3.3.1"
+    jest-worker "^25.4.0"
+    p-limit "^2.3.0"
+    schema-utils "^2.6.6"
+    serialize-javascript "^4.0.0"
+    source-map "^0.6.1"
+    terser "^4.6.12"
+    webpack-sources "^1.4.3"
+
+terser-webpack-plugin@^3.0.0:
+  version "3.1.0"
+  resolved "http://localhost:4873/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz#91e6d39571460ed240c0cf69d295bcf30ebf98cb"
+  integrity sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==
+  dependencies:
+    cacache "^15.0.5"
+    find-cache-dir "^3.3.1"
+    jest-worker "^26.2.1"
+    p-limit "^3.0.2"
+    schema-utils "^2.6.6"
+    serialize-javascript "^4.0.0"
+    source-map "^0.6.1"
+    terser "^4.8.0"
+    webpack-sources "^1.4.3"
+
+terser@^4.1.2, terser@^4.4.3, terser@^4.6.3:
+  version "4.6.10"
+  resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.10.tgz#90f5bd069ff456ddbc9503b18e52f9c493d3b7c2"
+  integrity sha512-qbF/3UOo11Hggsbsqm2hPa6+L4w7bkr+09FNseEe8xrcVD3APGLFqE+Oz1ZKAxjYnFsj80rLOfgAtJ0LNJjtTA==
+  dependencies:
+    commander "^2.20.0"
+    source-map "~0.6.1"
+    source-map-support "~0.5.12"
+
+terser@^4.6.12, terser@^4.8.0:
+  version "4.8.0"
+  resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
+  integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
+  dependencies:
+    commander "^2.20.0"
+    source-map "~0.6.1"
+    source-map-support "~0.5.12"
+
+test-exclude@^5.2.3:
+  version "5.2.3"
+  resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0"
+  integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==
+  dependencies:
+    glob "^7.1.3"
+    minimatch "^3.0.4"
+    read-pkg-up "^4.0.0"
+    require-main-filename "^2.0.0"
+
+test-exclude@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
+  integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
+  dependencies:
+    "@istanbuljs/schema" "^0.1.2"
+    glob "^7.1.4"
+    minimatch "^3.0.4"
+
+text-extensions@^1.0.0:
+  version "1.9.0"
+  resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26"
+  integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==
+
+text-table@0.2.0, text-table@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
+  integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
+
+textextensions@^2.5.0:
+  version "2.6.0"
+  resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-2.6.0.tgz#d7e4ab13fe54e32e08873be40d51b74229b00fc4"
+  integrity sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==
+
+thenify-all@^1.0.0:
+  version "1.6.0"
+  resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"
+  integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=
+  dependencies:
+    thenify ">= 3.1.0 < 4"
+
+"thenify@>= 3.1.0 < 4":
+  version "3.3.0"
+  resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839"
+  integrity sha1-5p44obq+lpsBCCB5eLn2K4hgSDk=
+  dependencies:
+    any-promise "^1.0.0"
+
+thread-loader@^1.2.0:
+  version "1.2.0"
+  resolved "http://localhost:4873/thread-loader/-/thread-loader-1.2.0.tgz#35dedb23cf294afbbce6c45c1339b950ed17e7a4"
+  integrity sha512-acJ0rvUk53+ly9cqYWNOpPqOgCkNpmHLPDGduNm4hDQWF7EDKEJXAopG9iEWsPPcml09wePkq3NF+ZUqnO6tbg==
+  dependencies:
+    async "^2.3.0"
+    loader-runner "^2.3.0"
+    loader-utils "^1.1.0"
+
+throat@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
+  integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
+
+throttle-debounce@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.1.0.tgz#257e648f0a56bd9e54fe0f132c4ab8611df4e1d5"
+  integrity sha512-AOvyNahXQuU7NN+VVvOOX+uW6FPaWdAOdRP5HfwYxAfCzXTFKRMoIMk+n+po318+ktcChx+F1Dd91G3YHeMKyg==
+
+through2@^2.0.0, through2@^2.0.2, through2@~2.0.3:
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
+  integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
+  dependencies:
+    readable-stream "~2.3.6"
+    xtend "~4.0.1"
+
+through2@^3.0.0, through2@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.1.tgz#39276e713c3302edf9e388dd9c812dd3b825bd5a"
+  integrity sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==
+  dependencies:
+    readable-stream "2 || 3"
+
+through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@^2.3.8:
+  version "2.3.8"
+  resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
+  integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
+
+thunky@^1.0.2:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
+  integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
+
+timed-out@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
+  integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=
+
+timers-browserify@^2.0.4:
+  version "2.0.11"
+  resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f"
+  integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==
+  dependencies:
+    setimmediate "^1.0.4"
+
+timsort@^0.3.0:
+  version "0.3.0"
+  resolved "http://localhost:4873/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
+  integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
+
+tiny-emitter@^2.0.0, tiny-emitter@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423"
+  integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==
+
+tiny-invariant@^1.0.2:
+  version "1.1.0"
+  resolved "http://localhost:4873/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875"
+  integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==
+
+tiny-warning@^1.0.0, tiny-warning@^1.0.3:
+  version "1.0.3"
+  resolved "http://localhost:4873/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754"
+  integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==
+
+tinycolor2@^1.4.1:
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"
+  integrity sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g=
+
+tinyqueue@^2.0.0:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/tinyqueue/-/tinyqueue-2.0.3.tgz#64d8492ebf39e7801d7bd34062e29b45b2035f08"
+  integrity sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==
+
+title-case@^2.1.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa"
+  integrity sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o=
+  dependencies:
+    no-case "^2.2.0"
+    upper-case "^1.0.3"
+
+tmp-promise@3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.2.tgz#6e933782abff8b00c3119d63589ca1fb9caaa62a"
+  integrity sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==
+  dependencies:
+    tmp "^0.2.0"
+
+tmp@^0.0.33:
+  version "0.0.33"
+  resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
+  integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
+  dependencies:
+    os-tmpdir "~1.0.2"
+
+tmp@^0.2.0:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14"
+  integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==
+  dependencies:
+    rimraf "^3.0.0"
+
+tmpl@1.0.x:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
+  integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=
+
+to-arraybuffer@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
+  integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
+
+to-fast-properties@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
+  integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
+
+to-object-path@^0.3.0:
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
+  integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
+  dependencies:
+    kind-of "^3.0.2"
+
+to-regex-range@^2.1.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
+  integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
+  dependencies:
+    is-number "^3.0.0"
+    repeat-string "^1.6.1"
+
+to-regex-range@^5.0.1:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+  integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
+  dependencies:
+    is-number "^7.0.0"
+
+to-regex@^3.0.1, to-regex@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
+  integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
+  dependencies:
+    define-property "^2.0.2"
+    extend-shallow "^3.0.2"
+    regex-not "^1.0.2"
+    safe-regex "^1.1.0"
+
+toggle-selection@^1.0.6:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32"
+  integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI=
+
+toidentifier@1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
+  integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
+
+topojson-client@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.1.0.tgz#22e8b1ed08a2b922feeb4af6f53b6ef09a467b99"
+  integrity sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==
+  dependencies:
+    commander "2"
+
+topojson@^1.6.19:
+  version "1.6.27"
+  resolved "https://registry.yarnpkg.com/topojson/-/topojson-1.6.27.tgz#adbe33a67e2f1673d338df12644ad20fc20b42ed"
+  integrity sha1-rb4zpn4vFnPTON8SZErSD8ILQu0=
+  dependencies:
+    d3 "3"
+    d3-geo-projection "0.2"
+    d3-queue "2"
+    optimist "0.3"
+    rw "1"
+    shapefile "0.3"
+
+tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@~2.5.0:
+  version "2.5.0"
+  resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
+  integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
+  dependencies:
+    psl "^1.1.28"
+    punycode "^2.1.1"
+
+tough-cookie@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2"
+  integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==
+  dependencies:
+    ip-regex "^2.1.0"
+    psl "^1.1.28"
+    punycode "^2.1.1"
+
+tr46@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
+  integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
+  dependencies:
+    punycode "^2.1.0"
+
+tr46@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.0.2.tgz#03273586def1595ae08fedb38d7733cee91d2479"
+  integrity sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==
+  dependencies:
+    punycode "^2.1.1"
+
+transform-loader@^0.2.3:
+  version "0.2.4"
+  resolved "http://localhost:4873/transform-loader/-/transform-loader-0.2.4.tgz#e5c87877ba96d51d3f225368587b46e226d1cec9"
+  integrity sha1-5ch4d7qW1R0/IlNoWHtG4ibRzsk=
+  dependencies:
+    loader-utils "^1.0.2"
+
+traverse@~0.6.3:
+  version "0.6.6"
+  resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137"
+  integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=
+
+tree-kill@^1.2.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"
+  integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==
+
+trim-newlines@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
+  integrity sha1-WIeWa7WCpFA6QetST301ARgVphM=
+
+trim-newlines@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20"
+  integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=
+
+trim-newlines@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.0.tgz#79726304a6a898aa8373427298d54c2ee8b1cb30"
+  integrity sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==
+
+trim-off-newlines@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
+  integrity sha1-n5up2e+odkw4dpi8v+sshI8RrbM=
+
+trim-repeated@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21"
+  integrity sha1-42RqLqTokTEr9+rObPsFOAvAHCE=
+  dependencies:
+    escape-string-regexp "^1.0.2"
+
+trim-right@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
+  integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
+
+trim-trailing-lines@^1.0.0:
+  version "1.1.4"
+  resolved "http://localhost:4873/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0"
+  integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==
+
+trim@0.0.1:
+  version "0.0.1"
+  resolved "http://localhost:4873/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
+  integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0=
+
+trough@^1.0.0:
+  version "1.0.5"
+  resolved "http://localhost:4873/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
+  integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==
+
+tryer@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8"
+  integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==
+
+ts-dedent@^1.1.0:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-1.1.1.tgz#68fad040d7dbd53a90f545b450702340e17d18f3"
+  integrity sha512-UGTRZu1evMw4uTPyYF66/KFd22XiU+jMaIuHrkIHQ2GivAXVlLV0v/vHrpOuTRf9BmpNHi/SO7Vd0rLu0y57jg==
+
+ts-dedent@^1.1.1:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-1.2.0.tgz#6aa2229d837159bb6d635b6b233002423b91e0b0"
+  integrity sha512-6zSJp23uQI+Txyz5LlXMXAHpUhY4Hi0oluXny0OgIR7g/Cromq4vDBnhtbBdyIV34g0pgwxUvnvg+jLJe4c1NA==
+
+ts-dedent@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.0.0.tgz#47c5eb23d9096f3237cc413bc82d387d36dbe690"
+  integrity sha512-DfxKjSFQfw9+uf7N9Cy8Ebx9fv5fquK4hZ6SD3Rzr+1jKP6AVA6H8+B5457ZpUs0JKsGpGqIevbpZ9DMQJDp1A==
+
+ts-essentials@^2.0.3:
+  version "2.0.12"
+  resolved "https://registry.yarnpkg.com/ts-essentials/-/ts-essentials-2.0.12.tgz#c9303f3d74f75fa7528c3d49b80e089ab09d8745"
+  integrity sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==
+
+ts-jest@^24.1.0:
+  version "24.3.0"
+  resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-24.3.0.tgz#b97814e3eab359ea840a1ac112deae68aa440869"
+  integrity sha512-Hb94C/+QRIgjVZlJyiWwouYUF+siNJHJHknyspaOcZ+OQAIdFG/UrdQVXw/0B8Z3No34xkUXZJpOTy9alOWdVQ==
+  dependencies:
+    bs-logger "0.x"
+    buffer-from "1.x"
+    fast-json-stable-stringify "2.x"
+    json5 "2.x"
+    lodash.memoize "4.x"
+    make-error "1.x"
+    mkdirp "0.x"
+    resolve "1.x"
+    semver "^5.5"
+    yargs-parser "10.x"
+
+ts-jest@^26.4.2:
+  version "26.4.4"
+  resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-26.4.4.tgz#61f13fb21ab400853c532270e52cc0ed7e502c49"
+  integrity sha512-3lFWKbLxJm34QxyVNNCgXX1u4o/RV0myvA2y2Bxm46iGIjKlaY0own9gIckbjZJPn+WaJEnfPPJ20HHGpoq4yg==
+  dependencies:
+    "@types/jest" "26.x"
+    bs-logger "0.x"
+    buffer-from "1.x"
+    fast-json-stable-stringify "2.x"
+    jest-util "^26.1.0"
+    json5 "2.x"
+    lodash.memoize "4.x"
+    make-error "1.x"
+    mkdirp "1.x"
+    semver "7.x"
+    yargs-parser "20.x"
+
+ts-loader@^7.0.4:
+  version "7.0.5"
+  resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-7.0.5.tgz#789338fb01cb5dc0a33c54e50558b34a73c9c4c5"
+  integrity sha512-zXypEIT6k3oTc+OZNx/cqElrsbBtYqDknf48OZos0NQ3RTt045fBIU8RRSu+suObBzYB355aIPGOe/3kj9h7Ig==
+  dependencies:
+    chalk "^2.3.0"
+    enhanced-resolve "^4.0.0"
+    loader-utils "^1.0.2"
+    micromatch "^4.0.0"
+    semver "^6.0.0"
+
+ts-loader@^8.0.7:
+  version "8.0.11"
+  resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-8.0.11.tgz#35d58a65932caacb120426eea59eca841786c899"
+  integrity sha512-06X+mWA2JXoXJHYAesUUL4mHFYhnmyoCdQVMXofXF552Lzd4wNwSGg7unJpttqUP7ziaruM8d7u8LUB6I1sgzA==
+  dependencies:
+    chalk "^2.3.0"
+    enhanced-resolve "^4.0.0"
+    loader-utils "^1.0.2"
+    micromatch "^4.0.0"
+    semver "^6.0.0"
+
+ts-pnp@^1.1.2, ts-pnp@^1.1.6:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
+  integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==
+
+tsconfig-paths@^3.9.0:
+  version "3.9.0"
+  resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b"
+  integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==
+  dependencies:
+    "@types/json5" "^0.0.29"
+    json5 "^1.0.1"
+    minimist "^1.2.0"
+    strip-bom "^3.0.0"
+
+tslib@2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c"
+  integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==
+
+tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
+  version "1.11.1"
+  resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35"
+  integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==
+
+tslib@^2.0.0, tslib@^2.0.1:
+  version "2.1.0"
+  resolved "http://localhost:4873/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a"
+  integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==
+
+tsutils@^3.17.1:
+  version "3.17.1"
+  resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759"
+  integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==
+  dependencies:
+    tslib "^1.8.1"
+
+tty-browserify@0.0.0:
+  version "0.0.0"
+  resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
+  integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
+
+tunnel-agent@^0.6.0:
+  version "0.6.0"
+  resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
+  integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=
+  dependencies:
+    safe-buffer "^5.0.1"
+
+tunnel@0.0.6:
+  version "0.0.6"
+  resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c"
+  integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==
+
+tweetnacl@^0.14.3, tweetnacl@~0.14.0:
+  version "0.14.5"
+  resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
+  integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
+
+type-check@^0.4.0, type-check@~0.4.0:
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
+  integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
+  dependencies:
+    prelude-ls "^1.2.1"
+
+type-check@~0.3.2:
+  version "0.3.2"
+  resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
+  integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
+  dependencies:
+    prelude-ls "~1.1.2"
+
+type-detect@4.0.8, type-detect@^4.0.8:
+  version "4.0.8"
+  resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
+  integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
+
+type-fest@^0.11.0:
+  version "0.11.0"
+  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1"
+  integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
+
+type-fest@^0.13.1:
+  version "0.13.1"
+  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934"
+  integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==
+
+type-fest@^0.3.0:
+  version "0.3.1"
+  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1"
+  integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==
+
+type-fest@^0.6.0:
+  version "0.6.0"
+  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
+  integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
+
+type-fest@^0.8.1:
+  version "0.8.1"
+  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
+  integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+
+type-is@~1.6.17, type-is@~1.6.18:
+  version "1.6.18"
+  resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
+  integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
+  dependencies:
+    media-typer "0.3.0"
+    mime-types "~2.1.24"
+
+typed-function@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/typed-function/-/typed-function-2.0.0.tgz#15ab3825845138a8b1113bd89e60cd6a435739e8"
+  integrity sha512-Hhy1Iwo/e4AtLZNK10ewVVcP2UEs408DS35ubP825w/YgSBK1KVLwALvvIG4yX75QJrxjCpcWkzkVRB0BwwYlA==
+
+typed-styles@^0.0.7:
+  version "0.0.7"
+  resolved "https://registry.yarnpkg.com/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9"
+  integrity sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==
+
+typedarray-to-buffer@^3.1.5:
+  version "3.1.5"
+  resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
+  integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
+  dependencies:
+    is-typedarray "^1.0.0"
+
+typedarray@^0.0.6:
+  version "0.0.6"
+  resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
+  integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
+
+typescript@^3.8.3:
+  version "3.9.5"
+  resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.5.tgz#586f0dba300cde8be52dd1ac4f7e1009c1b13f36"
+  integrity sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ==
+
+typescript@^4.0.3:
+  version "4.1.3"
+  resolved "http://localhost:4873/typescript/-/typescript-4.1.3.tgz#519d582bd94cba0cf8934c7d8e8467e473f53bb7"
+  integrity sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==
+
+typescript@^4.1.2:
+  version "4.1.2"
+  resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.1.2.tgz#6369ef22516fe5e10304aae5a5c4862db55380e9"
+  integrity sha512-thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ==
+
+ua-parser-js@^0.7.18:
+  version "0.7.21"
+  resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.21.tgz#853cf9ce93f642f67174273cc34565ae6f308777"
+  integrity sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ==
+
+uglify-js@^3.1.4:
+  version "3.8.1"
+  resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.8.1.tgz#43bb15ce6f545eaa0a64c49fd29375ea09fa0f93"
+  integrity sha512-W7KxyzeaQmZvUFbGj4+YFshhVrMBGSg2IbcYAjGWGvx8DHvJMclbTDMpffdxFUGPBHjIytk7KJUR/KUXstUGDw==
+  dependencies:
+    commander "~2.20.3"
+    source-map "~0.6.1"
+
+uid-number@0.0.6:
+  version "0.0.6"
+  resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
+  integrity sha1-DqEOgDXo61uOREnwbaHHMGY7qoE=
+
+ultimate-pagination@1.0.0:
+  version "1.0.0"
+  resolved "http://localhost:4873/ultimate-pagination/-/ultimate-pagination-1.0.0.tgz#1f9f5465678d7410159d5a172c2013465e9bd85f"
+  integrity sha1-H59UZWeNdBAVnVoXLCATRl6b2F8=
+
+umask@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/umask/-/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d"
+  integrity sha1-8pzr8B31F5ErtY/5xOUP3o4zMg0=
+
+uncontrollable@^7.0.2:
+  version "7.1.1"
+  resolved "https://registry.yarnpkg.com/uncontrollable/-/uncontrollable-7.1.1.tgz#f67fed3ef93637126571809746323a9db815d556"
+  integrity sha512-EcPYhot3uWTS3w00R32R2+vS8Vr53tttrvMj/yA1uYRhf8hbTG2GyugGqWDY0qIskxn0uTTojVd6wPYW9ZEf8Q==
+  dependencies:
+    "@babel/runtime" "^7.6.3"
+    "@types/react" "^16.9.11"
+    invariant "^2.2.4"
+    react-lifecycles-compat "^3.0.4"
+
+underscore@^1.8.3:
+  version "1.12.0"
+  resolved "http://localhost:4873/underscore/-/underscore-1.12.0.tgz#4814940551fc80587cef7840d1ebb0f16453be97"
+  integrity sha512-21rQzss/XPMjolTiIezSu3JAjgagXKROtNrYFEOWK109qY1Uv2tVjPTZ1ci2HgvQDA16gHYSthQIJfB+XId/rQ==
+
+underscore@~1.6.0:
+  version "1.6.0"
+  resolved "http://localhost:4873/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8"
+  integrity sha1-izixDKze9jM3uLJOT/htRa6lKag=
+
+unfetch@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.1.0.tgz#6ec2dd0de887e58a4dee83a050ded80ffc4137db"
+  integrity sha512-crP/n3eAPUJxZXM9T80/yv0YhkTEx2K1D3h7D1AJM6fzsWZrxdyRuLN0JH/dkZh1LNH8LxCnBzoPFCPbb2iGpg==
+
+unherit@^1.0.4:
+  version "1.1.3"
+  resolved "http://localhost:4873/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22"
+  integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==
+  dependencies:
+    inherits "^2.0.0"
+    xtend "^4.0.0"
+
+unicode-canonical-property-names-ecmascript@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
+  integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
+
+unicode-match-property-ecmascript@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
+  integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
+  dependencies:
+    unicode-canonical-property-names-ecmascript "^1.0.4"
+    unicode-property-aliases-ecmascript "^1.0.4"
+
+unicode-match-property-value-ecmascript@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
+  integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
+
+unicode-property-aliases-ecmascript@^1.0.4:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
+  integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
+
+unified@9.2.0:
+  version "9.2.0"
+  resolved "http://localhost:4873/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8"
+  integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==
+  dependencies:
+    bail "^1.0.0"
+    extend "^3.0.0"
+    is-buffer "^2.0.0"
+    is-plain-obj "^2.0.0"
+    trough "^1.0.0"
+    vfile "^4.0.0"
+
+unified@^6.1.5:
+  version "6.2.0"
+  resolved "http://localhost:4873/unified/-/unified-6.2.0.tgz#7fbd630f719126d67d40c644b7e3f617035f6dba"
+  integrity sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==
+  dependencies:
+    bail "^1.0.0"
+    extend "^3.0.0"
+    is-plain-obj "^1.1.0"
+    trough "^1.0.0"
+    vfile "^2.0.0"
+    x-is-string "^0.1.0"
+
+union-value@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
+  integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
+  dependencies:
+    arr-union "^3.1.0"
+    get-value "^2.0.6"
+    is-extendable "^0.1.1"
+    set-value "^2.0.1"
+
+uniq@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
+  integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
+
+uniqs@^2.0.0:
+  version "2.0.0"
+  resolved "http://localhost:4873/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
+  integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI=
+
+unique-filename@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
+  integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
+  dependencies:
+    unique-slug "^2.0.0"
+
+unique-slug@^2.0.0:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
+  integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
+  dependencies:
+    imurmurhash "^0.1.4"
+
+unist-builder@2.0.3, unist-builder@^2.0.0:
+  version "2.0.3"
+  resolved "http://localhost:4873/unist-builder/-/unist-builder-2.0.3.tgz#77648711b5d86af0942f334397a33c5e91516436"
+  integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==
+
+unist-util-generated@^1.0.0:
+  version "1.1.6"
+  resolved "http://localhost:4873/unist-util-generated/-/unist-util-generated-1.1.6.tgz#5ab51f689e2992a472beb1b35f2ce7ff2f324d4b"
+  integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==
+
+unist-util-is@^3.0.0:
+  version "3.0.0"
+  resolved "http://localhost:4873/unist-util-is/-/unist-util-is-3.0.0.tgz#d9e84381c2468e82629e4a5be9d7d05a2dd324cd"
+  integrity sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==
+
+unist-util-is@^4.0.0:
+  version "4.0.4"
+  resolved "http://localhost:4873/unist-util-is/-/unist-util-is-4.0.4.tgz#3e9e8de6af2eb0039a59f50c9b3e99698a924f50"
+  integrity sha512-3dF39j/u423v4BBQrk1AQ2Ve1FxY5W3JKwXxVFzBODQ6WEvccguhgp802qQLKSnxPODE6WuRZtV+ohlUg4meBA==
+
+unist-util-position@^3.0.0:
+  version "3.1.0"
+  resolved "http://localhost:4873/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47"
+  integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==
+
+unist-util-remove-position@^1.0.0:
+  version "1.1.4"
+  resolved "http://localhost:4873/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz#ec037348b6102c897703eee6d0294ca4755a2020"
+  integrity sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==
+  dependencies:
+    unist-util-visit "^1.1.0"
+
+unist-util-remove-position@^2.0.0:
+  version "2.0.1"
+  resolved "http://localhost:4873/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc"
+  integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==
+  dependencies:
+    unist-util-visit "^2.0.0"
+
+unist-util-remove@^2.0.0:
+  version "2.0.1"
+  resolved "http://localhost:4873/unist-util-remove/-/unist-util-remove-2.0.1.tgz#fa13c424ff8e964f3aa20d1098b9a690c6bfaa39"
+  integrity sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q==
+  dependencies:
+    unist-util-is "^4.0.0"
+
+unist-util-stringify-position@^1.0.0, unist-util-stringify-position@^1.1.1:
+  version "1.1.2"
+  resolved "http://localhost:4873/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz#3f37fcf351279dcbca7480ab5889bb8a832ee1c6"
+  integrity sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==
+
+unist-util-stringify-position@^2.0.0:
+  version "2.0.3"
+  resolved "http://localhost:4873/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da"
+  integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==
+  dependencies:
+    "@types/unist" "^2.0.2"
+
+unist-util-visit-parents@1.1.2:
+  version "1.1.2"
+  resolved "http://localhost:4873/unist-util-visit-parents/-/unist-util-visit-parents-1.1.2.tgz#f6e3afee8bdbf961c0e6f028ea3c0480028c3d06"
+  integrity sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==
+
+unist-util-visit-parents@^2.0.0:
+  version "2.1.2"
+  resolved "http://localhost:4873/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz#25e43e55312166f3348cae6743588781d112c1e9"
+  integrity sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==
+  dependencies:
+    unist-util-is "^3.0.0"
+
+unist-util-visit-parents@^3.0.0:
+  version "3.1.1"
+  resolved "http://localhost:4873/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6"
+  integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==
+  dependencies:
+    "@types/unist" "^2.0.0"
+    unist-util-is "^4.0.0"
+
+unist-util-visit@2.0.3, unist-util-visit@^2.0.0:
+  version "2.0.3"
+  resolved "http://localhost:4873/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c"
+  integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==
+  dependencies:
+    "@types/unist" "^2.0.0"
+    unist-util-is "^4.0.0"
+    unist-util-visit-parents "^3.0.0"
+
+unist-util-visit@^1.1.0, unist-util-visit@^1.3.0:
+  version "1.4.1"
+  resolved "http://localhost:4873/unist-util-visit/-/unist-util-visit-1.4.1.tgz#4724aaa8486e6ee6e26d7ff3c8685960d560b1e3"
+  integrity sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==
+  dependencies:
+    unist-util-visit-parents "^2.0.0"
+
+universal-user-agent@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-4.0.1.tgz#fd8d6cb773a679a709e967ef8288a31fcc03e557"
+  integrity sha512-LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg==
+  dependencies:
+    os-name "^3.1.0"
+
+universal-user-agent@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-5.0.0.tgz#a3182aa758069bf0e79952570ca757de3579c1d9"
+  integrity sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==
+  dependencies:
+    os-name "^3.1.0"
+
+universal-user-agent@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee"
+  integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==
+
+universalify@^0.1.0:
+  version "0.1.2"
+  resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
+  integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
+
+universalify@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d"
+  integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==
+
+unpipe@1.0.0, unpipe@~1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
+  integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
+
+unquote@^1.1.0, unquote@~1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
+  integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
+
+unset-value@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
+  integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
+  dependencies:
+    has-value "^0.3.1"
+    isobject "^3.0.0"
+
+untildify@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz#1e7b42b140bcfd922b22e70ca1265bfe3634c7c9"
+  integrity sha512-iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==
+
+unzip-response@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97"
+  integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=
+
+upath@^1.1.1, upath@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
+  integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
+
+upper-case-first@^1.1.0, upper-case-first@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-1.1.2.tgz#5d79bedcff14419518fd2edb0a0507c9b6859115"
+  integrity sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=
+  dependencies:
+    upper-case "^1.1.1"
+
+upper-case@^1.0.3, upper-case@^1.1.0, upper-case@^1.1.1, upper-case@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598"
+  integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=
+
+uri-js@^4.2.2:
+  version "4.2.2"
+  resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
+  integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==
+  dependencies:
+    punycode "^2.1.0"
+
+urijs@^1.18.10:
+  version "1.19.4"
+  resolved "https://registry.yarnpkg.com/urijs/-/urijs-1.19.4.tgz#3953d7dacd801336c17921ee8c5518b150cbf965"
+  integrity sha512-2YF/wdFu02Gsly/wyx+S/f5w/oCF0ihVSgK/Sn8fcY/ZYMYtqxgi03Vi3V7HqyQP8mj8xHMuNFTBIPufmPRdoA==
+
+urijs@^1.19.4:
+  version "1.19.5"
+  resolved "http://localhost:4873/urijs/-/urijs-1.19.5.tgz#119683ab4b2fb0bd637e5ea6dd9117bcac68d3e4"
+  integrity sha512-48z9VGWwdCV5KfizHsE05DWS5fhK6gFlx5MjO7xu0Krc5FGPWzjlXEVV0nPMrdVuP7xmMHiPZ2HoYZwKOFTZOg==
+
+urix@^0.1.0:
+  version "0.1.0"
+  resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
+  integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
+
+url-loader@^1.0.1:
+  version "1.1.2"
+  resolved "http://localhost:4873/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8"
+  integrity sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg==
+  dependencies:
+    loader-utils "^1.1.0"
+    mime "^2.0.3"
+    schema-utils "^1.0.0"
+
+url-loader@^2.0.1:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.3.0.tgz#e0e2ef658f003efb8ca41b0f3ffbf76bab88658b"
+  integrity sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==
+  dependencies:
+    loader-utils "^1.2.3"
+    mime "^2.4.4"
+    schema-utils "^2.5.0"
+
+url-loader@^4.0.0:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2"
+  integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==
+  dependencies:
+    loader-utils "^2.0.0"
+    mime-types "^2.1.27"
+    schema-utils "^3.0.0"
+
+url-parse-lax@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
+  integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=
+  dependencies:
+    prepend-http "^1.0.1"
+
+url-parse@^1.4.3:
+  version "1.4.7"
+  resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz#a8a83535e8c00a316e403a5db4ac1b9b853ae278"
+  integrity sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==
+  dependencies:
+    querystringify "^2.1.1"
+    requires-port "^1.0.0"
+
+url@^0.11.0:
+  version "0.11.0"
+  resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
+  integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
+  dependencies:
+    punycode "1.3.2"
+    querystring "0.2.0"
+
+use-callback-ref@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.2.1.tgz#898759ccb9e14be6c7a860abafa3ffbd826c89bb"
+  integrity sha512-C3nvxh0ZpaOxs9RCnWwAJ+7bJPwQI8LHF71LzbQ3BvzH5XkdtlkMadqElGevg5bYBDFip4sAnD4m06zAKebg1w==
+
+use-composed-ref@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.1.0.tgz#9220e4e94a97b7b02d7d27eaeab0b37034438bbc"
+  integrity sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==
+  dependencies:
+    ts-essentials "^2.0.3"
+
+use-isomorphic-layout-effect@^1.0.0:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.1.tgz#7bb6589170cd2987a152042f9084f9effb75c225"
+  integrity sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==
+
+use-latest@^1.0.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/use-latest/-/use-latest-1.2.0.tgz#a44f6572b8288e0972ec411bdd0840ada366f232"
+  integrity sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==
+  dependencies:
+    use-isomorphic-layout-effect "^1.0.0"
+
+use-query-params@^1.1.9:
+  version "1.1.9"
+  resolved "http://localhost:4873/use-query-params/-/use-query-params-1.1.9.tgz#4f1b91c5b338107efa7d90dd889c56039108f944"
+  integrity sha512-WAJ1GrKbFWv1TBn1RQpHqAwC7yyJsLaJjBhIfefrbY/h6mFSngzBQKirJndYwCS1ry77EwhpR/tQi5iovXWvuw==
+  dependencies:
+    serialize-query-params "^1.2.3"
+
+use-sidecar@^1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.0.2.tgz#e72f582a75842f7de4ef8becd6235a4720ad8af6"
+  integrity sha512-287RZny6m5KNMTb/Kq9gmjafi7lQL0YHO1lYolU6+tY1h9+Z3uCtkJJ3OSOq3INwYf2hBryCcDh4520AhJibMA==
+  dependencies:
+    detect-node "^2.0.4"
+    tslib "^1.9.3"
+
+use@^3.1.0:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
+  integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
+
+util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+  integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
+
+util-promisify@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/util-promisify/-/util-promisify-2.1.0.tgz#3c2236476c4d32c5ff3c47002add7c13b9a82a53"
+  integrity sha1-PCI2R2xNMsX/PEcAKt18E7moKlM=
+  dependencies:
+    object.getownpropertydescriptors "^2.0.3"
+
+util.promisify@1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
+  integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
+  dependencies:
+    define-properties "^1.1.2"
+    object.getownpropertydescriptors "^2.0.3"
+
+util.promisify@^1.0.0, util.promisify@~1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
+  integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.2"
+    has-symbols "^1.0.1"
+    object.getownpropertydescriptors "^2.1.0"
+
+util@0.10.3:
+  version "0.10.3"
+  resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
+  integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
+  dependencies:
+    inherits "2.0.1"
+
+util@^0.11.0:
+  version "0.11.1"
+  resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
+  integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
+  dependencies:
+    inherits "2.0.3"
+
+utila@^0.4.0, utila@~0.4:
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
+  integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=
+
+utils-merge@1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
+  integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
+
+uuid@^3.0.1, uuid@^3.3.2, uuid@^3.4.0:
+  version "3.4.0"
+  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
+  integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
+
+uuid@^8.0.0:
+  version "8.3.2"
+  resolved "http://localhost:4873/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
+  integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
+
+uuid@^8.3.0, uuid@^8.3.1:
+  version "8.3.1"
+  resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.1.tgz#2ba2e6ca000da60fce5a196954ab241131e05a31"
+  integrity sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==
+
+v8-compile-cache@^2.0.3:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e"
+  integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
+
+v8-compile-cache@^2.1.1:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"
+  integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
+
+v8-to-istanbul@^4.1.3:
+  version "4.1.4"
+  resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6"
+  integrity sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ==
+  dependencies:
+    "@types/istanbul-lib-coverage" "^2.0.1"
+    convert-source-map "^1.6.0"
+    source-map "^0.7.3"
+
+v8-to-istanbul@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.0.0.tgz#b4fe00e35649ef7785a9b7fcebcea05f37c332fc"
+  integrity sha512-fLL2rFuQpMtm9r8hrAV2apXX/WqHJ6+IC4/eQVdMDGBUgH/YMV4Gv3duk3kjmyg6uiQWBAA9nJwue4iJUOkHeA==
+  dependencies:
+    "@types/istanbul-lib-coverage" "^2.0.1"
+    convert-source-map "^1.6.0"
+    source-map "^0.7.3"
+
+v8flags@^3.1.1:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.2.0.tgz#b243e3b4dfd731fa774e7492128109a0fe66d656"
+  integrity sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==
+  dependencies:
+    homedir-polyfill "^1.0.1"
+
+validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.3:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
+  integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
+  dependencies:
+    spdx-correct "^3.0.0"
+    spdx-expression-parse "^3.0.0"
+
+validate-npm-package-name@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e"
+  integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34=
+  dependencies:
+    builtins "^1.0.3"
+
+value-equal@^1.0.1:
+  version "1.0.1"
+  resolved "http://localhost:4873/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c"
+  integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==
+
+vary@~1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
+  integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
+
+vendors@^1.0.0:
+  version "1.0.4"
+  resolved "http://localhost:4873/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e"
+  integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==
+
+verror@1.10.0:
+  version "1.10.0"
+  resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
+  integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
+  dependencies:
+    assert-plus "^1.0.0"
+    core-util-is "1.0.2"
+    extsprintf "^1.2.0"
+
+vfile-location@^2.0.0:
+  version "2.0.6"
+  resolved "http://localhost:4873/vfile-location/-/vfile-location-2.0.6.tgz#8a274f39411b8719ea5728802e10d9e0dff1519e"
+  integrity sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==
+
+vfile-location@^3.0.0, vfile-location@^3.2.0:
+  version "3.2.0"
+  resolved "http://localhost:4873/vfile-location/-/vfile-location-3.2.0.tgz#d8e41fbcbd406063669ebf6c33d56ae8721d0f3c"
+  integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==
+
+vfile-message@^1.0.0:
+  version "1.1.1"
+  resolved "http://localhost:4873/vfile-message/-/vfile-message-1.1.1.tgz#5833ae078a1dfa2d96e9647886cd32993ab313e1"
+  integrity sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==
+  dependencies:
+    unist-util-stringify-position "^1.1.1"
+
+vfile-message@^2.0.0:
+  version "2.0.4"
+  resolved "http://localhost:4873/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a"
+  integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==
+  dependencies:
+    "@types/unist" "^2.0.0"
+    unist-util-stringify-position "^2.0.0"
+
+vfile@^2.0.0:
+  version "2.3.0"
+  resolved "http://localhost:4873/vfile/-/vfile-2.3.0.tgz#e62d8e72b20e83c324bc6c67278ee272488bf84a"
+  integrity sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==
+  dependencies:
+    is-buffer "^1.1.4"
+    replace-ext "1.0.0"
+    unist-util-stringify-position "^1.0.0"
+    vfile-message "^1.0.0"
+
+vfile@^4.0.0:
+  version "4.2.1"
+  resolved "http://localhost:4873/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624"
+  integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==
+  dependencies:
+    "@types/unist" "^2.0.0"
+    is-buffer "^2.0.0"
+    unist-util-stringify-position "^2.0.0"
+    vfile-message "^2.0.0"
+
+viewport-mercator-project@^6.1.0, viewport-mercator-project@^6.1.1, viewport-mercator-project@^6.2.1:
+  version "6.2.3"
+  resolved "https://registry.yarnpkg.com/viewport-mercator-project/-/viewport-mercator-project-6.2.3.tgz#4122040f51ef9553fa41a46bcc6502977b3909c6"
+  integrity sha512-QQb0/qCLlP4DdfbHHSWVYXpghB2wkLIiiZQnoelOB59mXKQSyZVxjreq1S+gaBJFpcGkWEcyVtre0+2y2DTl/Q==
+  dependencies:
+    "@babel/runtime" "^7.0.0"
+    gl-matrix "^3.0.0"
+
+vinyl-file@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/vinyl-file/-/vinyl-file-2.0.0.tgz#a7ebf5ffbefda1b7d18d140fcb07b223efb6751a"
+  integrity sha1-p+v1/779obfRjRQPyweyI++2dRo=
+  dependencies:
+    graceful-fs "^4.1.2"
+    pify "^2.3.0"
+    pinkie-promise "^2.0.0"
+    strip-bom "^2.0.0"
+    strip-bom-stream "^2.0.0"
+    vinyl "^1.1.0"
+
+vinyl@^1.1.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884"
+  integrity sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=
+  dependencies:
+    clone "^1.0.0"
+    clone-stats "^0.0.1"
+    replace-ext "0.0.1"
+
+vinyl@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86"
+  integrity sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==
+  dependencies:
+    clone "^2.1.1"
+    clone-buffer "^1.0.0"
+    clone-stats "^1.0.0"
+    cloneable-readable "^1.0.0"
+    remove-trailing-separator "^1.0.1"
+    replace-ext "^1.0.0"
+
+vlq@^0.2.2:
+  version "0.2.3"
+  resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26"
+  integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==
+
+vm-browserify@^1.0.1:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
+  integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
+
+vt-pbf@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.1.tgz#b0f627e39a10ce91d943b898ed2363d21899fb82"
+  integrity sha512-pHjWdrIoxurpmTcbfBWXaPwSmtPAHS105253P1qyEfSTV2HJddqjM+kIHquaT/L6lVJIk9ltTGc0IxR/G47hYA==
+  dependencies:
+    "@mapbox/point-geometry" "0.1.0"
+    "@mapbox/vector-tile" "^1.3.1"
+    pbf "^3.0.5"
+
+w3c-hr-time@^1.0.1, w3c-hr-time@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
+  integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
+  dependencies:
+    browser-process-hrtime "^1.0.0"
+
+w3c-xmlserializer@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794"
+  integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==
+  dependencies:
+    domexception "^1.0.1"
+    webidl-conversions "^4.0.2"
+    xml-name-validator "^3.0.0"
+
+w3c-xmlserializer@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a"
+  integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==
+  dependencies:
+    xml-name-validator "^3.0.0"
+
+walker@^1.0.7, walker@~1.0.5:
+  version "1.0.7"
+  resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
+  integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
+  dependencies:
+    makeerror "1.0.x"
+
+warning@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c"
+  integrity sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=
+  dependencies:
+    loose-envify "^1.0.0"
+
+warning@^4.0.0, warning@^4.0.1, warning@^4.0.2, warning@^4.0.3:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
+  integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==
+  dependencies:
+    loose-envify "^1.0.0"
+
+watchpack-chokidar2@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957"
+  integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==
+  dependencies:
+    chokidar "^2.1.8"
+
+watchpack@^1.6.0:
+  version "1.6.1"
+  resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.1.tgz#280da0a8718592174010c078c7585a74cd8cd0e2"
+  integrity sha512-+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA==
+  dependencies:
+    chokidar "^2.1.8"
+    graceful-fs "^4.1.2"
+    neo-async "^2.5.0"
+
+watchpack@^1.7.4:
+  version "1.7.5"
+  resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453"
+  integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==
+  dependencies:
+    graceful-fs "^4.1.2"
+    neo-async "^2.5.0"
+  optionalDependencies:
+    chokidar "^3.4.1"
+    watchpack-chokidar2 "^2.0.1"
+
+wbuf@^1.1.0, wbuf@^1.7.3:
+  version "1.7.3"
+  resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df"
+  integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==
+  dependencies:
+    minimalistic-assert "^1.0.0"
+
+wcwidth@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
+  integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
+  dependencies:
+    defaults "^1.0.3"
+
+weak-napi@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/weak-napi/-/weak-napi-1.0.3.tgz#ff4dfa818db1c509ba4166530b42414ef74cbba6"
+  integrity sha512-cyqeMaYA5qI7RoZKAKvIHwEROEKDNxK7jXj3u56nF2rGBh+HFyhYmBb1/wAN4RqzRmkYKVVKQyqHpBoJjqtGUA==
+  dependencies:
+    bindings "^1.3.0"
+    node-addon-api "^1.1.0"
+    setimmediate-napi "^1.0.3"
+
+web-namespaces@^1.0.0:
+  version "1.1.4"
+  resolved "http://localhost:4873/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec"
+  integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==
+
+webidl-conversions@^4.0.2:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
+  integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
+
+webidl-conversions@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
+  integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
+
+webidl-conversions@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514"
+  integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
+
+webpack-bundle-analyzer@^3.6.1:
+  version "3.9.0"
+  resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz#f6f94db108fb574e415ad313de41a2707d33ef3c"
+  integrity sha512-Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA==
+  dependencies:
+    acorn "^7.1.1"
+    acorn-walk "^7.1.1"
+    bfj "^6.1.1"
+    chalk "^2.4.1"
+    commander "^2.18.0"
+    ejs "^2.6.1"
+    express "^4.16.3"
+    filesize "^3.6.1"
+    gzip-size "^5.0.0"
+    lodash "^4.17.19"
+    mkdirp "^0.5.1"
+    opener "^1.5.1"
+    ws "^6.0.0"
+
+webpack-cli@^3.3.11:
+  version "3.3.12"
+  resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.12.tgz#94e9ada081453cd0aa609c99e500012fd3ad2d4a"
+  integrity sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==
+  dependencies:
+    chalk "^2.4.2"
+    cross-spawn "^6.0.5"
+    enhanced-resolve "^4.1.1"
+    findup-sync "^3.0.0"
+    global-modules "^2.0.0"
+    import-local "^2.0.0"
+    interpret "^1.4.0"
+    loader-utils "^1.4.0"
+    supports-color "^6.1.0"
+    v8-compile-cache "^2.1.1"
+    yargs "^13.3.2"
+
+webpack-dev-middleware@^3.7.0, webpack-dev-middleware@^3.7.2:
+  version "3.7.2"
+  resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz#0019c3db716e3fa5cecbf64f2ab88a74bab331f3"
+  integrity sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==
+  dependencies:
+    memory-fs "^0.4.1"
+    mime "^2.4.4"
+    mkdirp "^0.5.1"
+    range-parser "^1.2.1"
+    webpack-log "^2.0.0"
+
+webpack-dev-server@^3.10.3, webpack-dev-server@^3.11.0:
+  version "3.11.0"
+  resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz#8f154a3bce1bcfd1cc618ef4e703278855e7ff8c"
+  integrity sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==
+  dependencies:
+    ansi-html "0.0.7"
+    bonjour "^3.5.0"
+    chokidar "^2.1.8"
+    compression "^1.7.4"
+    connect-history-api-fallback "^1.6.0"
+    debug "^4.1.1"
+    del "^4.1.1"
+    express "^4.17.1"
+    html-entities "^1.3.1"
+    http-proxy-middleware "0.19.1"
+    import-local "^2.0.0"
+    internal-ip "^4.3.0"
+    ip "^1.1.5"
+    is-absolute-url "^3.0.3"
+    killable "^1.0.1"
+    loglevel "^1.6.8"
+    opn "^5.5.0"
+    p-retry "^3.0.1"
+    portfinder "^1.0.26"
+    schema-utils "^1.0.0"
+    selfsigned "^1.10.7"
+    semver "^6.3.0"
+    serve-index "^1.9.1"
+    sockjs "0.3.20"
+    sockjs-client "1.4.0"
+    spdy "^4.0.2"
+    strip-ansi "^3.0.1"
+    supports-color "^6.1.0"
+    url "^0.11.0"
+    webpack-dev-middleware "^3.7.2"
+    webpack-log "^2.0.0"
+    ws "^6.2.1"
+    yargs "^13.3.2"
+
+webpack-filter-warnings-plugin@^1.2.1:
+  version "1.2.1"
+  resolved "http://localhost:4873/webpack-filter-warnings-plugin/-/webpack-filter-warnings-plugin-1.2.1.tgz#dc61521cf4f9b4a336fbc89108a75ae1da951cdb"
+  integrity sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==
+
+webpack-graphql-loader@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/webpack-graphql-loader/-/webpack-graphql-loader-1.0.2.tgz#b7da119bea3063c1b13068c9c7bb01b203d3468b"
+  integrity sha512-tMcfC/IPMYO8RXsihjMcOplOnyTFqVUHXYZN5mRNIuDy8ADNvqYWVqs3Qi/YBP+U05uesdy9UUvf7N8QZtkc5Q==
+  dependencies:
+    apollo-codegen "^0.19.1"
+    loader-utils "^1.1.0"
+    pify "^3.0.0"
+
+webpack-hot-middleware@^2.25.0:
+  version "2.25.0"
+  resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706"
+  integrity sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA==
+  dependencies:
+    ansi-html "0.0.7"
+    html-entities "^1.2.0"
+    querystring "^0.2.0"
+    strip-ansi "^3.0.0"
+
+webpack-log@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
+  integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
+  dependencies:
+    ansi-colors "^3.0.0"
+    uuid "^3.3.2"
+
+webpack-manifest-plugin@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz#19ca69b435b0baec7e29fbe90fb4015de2de4f16"
+  integrity sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==
+  dependencies:
+    fs-extra "^7.0.0"
+    lodash ">=3.5 <5"
+    object.entries "^1.1.0"
+    tapable "^1.0.0"
+
+webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
+  version "1.4.3"
+  resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
+  integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
+  dependencies:
+    source-list-map "^2.0.0"
+    source-map "~0.6.1"
+
+webpack-virtual-modules@^0.2.0:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.2.1.tgz#8ab73d4df0fd37ed27bb8d823bc60ea7266c8bf7"
+  integrity sha512-0PWBlxyt4uGDofooIEanWhhyBOHdd+lr7QpYNDLC7/yc5lqJT8zlc04MTIBnKj+c2BlQNNuwE5er/Tg4wowHzA==
+  dependencies:
+    debug "^3.0.0"
+
+webpack-virtual-modules@^0.2.2:
+  version "0.2.2"
+  resolved "http://localhost:4873/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz#20863dc3cb6bb2104729fff951fbe14b18bd0299"
+  integrity sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==
+  dependencies:
+    debug "^3.0.0"
+
+webpack@^4.33.0, webpack@^4.38.0:
+  version "4.42.1"
+  resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.42.1.tgz#ae707baf091f5ca3ef9c38b884287cfe8f1983ef"
+  integrity sha512-SGfYMigqEfdGchGhFFJ9KyRpQKnipvEvjc1TwrXEPCM6H5Wywu10ka8o3KGrMzSMxMQKt8aCHUFh5DaQ9UmyRg==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/helper-module-context" "1.9.0"
+    "@webassemblyjs/wasm-edit" "1.9.0"
+    "@webassemblyjs/wasm-parser" "1.9.0"
+    acorn "^6.2.1"
+    ajv "^6.10.2"
+    ajv-keywords "^3.4.1"
+    chrome-trace-event "^1.0.2"
+    enhanced-resolve "^4.1.0"
+    eslint-scope "^4.0.3"
+    json-parse-better-errors "^1.0.2"
+    loader-runner "^2.4.0"
+    loader-utils "^1.2.3"
+    memory-fs "^0.4.1"
+    micromatch "^3.1.10"
+    mkdirp "^0.5.3"
+    neo-async "^2.6.1"
+    node-libs-browser "^2.2.1"
+    schema-utils "^1.0.0"
+    tapable "^1.1.3"
+    terser-webpack-plugin "^1.4.3"
+    watchpack "^1.6.0"
+    webpack-sources "^1.4.1"
+
+webpack@^4.42.0, webpack@^4.42.1:
+  version "4.44.2"
+  resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.2.tgz#6bfe2b0af055c8b2d1e90ed2cd9363f841266b72"
+  integrity sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/helper-module-context" "1.9.0"
+    "@webassemblyjs/wasm-edit" "1.9.0"
+    "@webassemblyjs/wasm-parser" "1.9.0"
+    acorn "^6.4.1"
+    ajv "^6.10.2"
+    ajv-keywords "^3.4.1"
+    chrome-trace-event "^1.0.2"
+    enhanced-resolve "^4.3.0"
+    eslint-scope "^4.0.3"
+    json-parse-better-errors "^1.0.2"
+    loader-runner "^2.4.0"
+    loader-utils "^1.2.3"
+    memory-fs "^0.4.1"
+    micromatch "^3.1.10"
+    mkdirp "^0.5.3"
+    neo-async "^2.6.1"
+    node-libs-browser "^2.2.1"
+    schema-utils "^1.0.0"
+    tapable "^1.1.3"
+    terser-webpack-plugin "^1.4.3"
+    watchpack "^1.7.4"
+    webpack-sources "^1.4.1"
+
+webpack@^4.44.2:
+  version "4.46.0"
+  resolved "http://localhost:4873/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542"
+  integrity sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==
+  dependencies:
+    "@webassemblyjs/ast" "1.9.0"
+    "@webassemblyjs/helper-module-context" "1.9.0"
+    "@webassemblyjs/wasm-edit" "1.9.0"
+    "@webassemblyjs/wasm-parser" "1.9.0"
+    acorn "^6.4.1"
+    ajv "^6.10.2"
+    ajv-keywords "^3.4.1"
+    chrome-trace-event "^1.0.2"
+    enhanced-resolve "^4.5.0"
+    eslint-scope "^4.0.3"
+    json-parse-better-errors "^1.0.2"
+    loader-runner "^2.4.0"
+    loader-utils "^1.2.3"
+    memory-fs "^0.4.1"
+    micromatch "^3.1.10"
+    mkdirp "^0.5.3"
+    neo-async "^2.6.1"
+    node-libs-browser "^2.2.1"
+    schema-utils "^1.0.0"
+    tapable "^1.1.3"
+    terser-webpack-plugin "^1.4.3"
+    watchpack "^1.7.4"
+    webpack-sources "^1.4.1"
+
+websocket-driver@0.6.5:
+  version "0.6.5"
+  resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36"
+  integrity sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=
+  dependencies:
+    websocket-extensions ">=0.1.1"
+
+websocket-driver@>=0.5.1:
+  version "0.7.3"
+  resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.3.tgz#a2d4e0d4f4f116f1e6297eba58b05d430100e9f9"
+  integrity sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==
+  dependencies:
+    http-parser-js ">=0.4.0 <0.4.11"
+    safe-buffer ">=5.1.0"
+    websocket-extensions ">=0.1.1"
+
+websocket-extensions@>=0.1.1:
+  version "0.1.3"
+  resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29"
+  integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==
+
+wgs84@0.0.0:
+  version "0.0.0"
+  resolved "https://registry.yarnpkg.com/wgs84/-/wgs84-0.0.0.tgz#34fdc555917b6e57cf2a282ed043710c049cdc76"
+  integrity sha1-NP3FVZF7blfPKigu0ENxDASc3HY=
+
+whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3, whatwg-encoding@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
+  integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
+  dependencies:
+    iconv-lite "0.4.24"
+
+whatwg-fetch@2.0.4:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f"
+  integrity sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==
+
+whatwg-fetch@>=0.10.0, whatwg-fetch@^3.0.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.2.0.tgz#8e134f701f0a4ab5fda82626f113e2b647fd16dc"
+  integrity sha512-SdGPoQMMnzVYThUbSrEvqTlkvC1Ux27NehaJ/GUHBfNrh5Mjg+1/uRyFMwVnxO2MrikMWvWAqUGgQOfVU4hT7w==
+
+whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
+  integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
+
+whatwg-url@^6.4.1, whatwg-url@^6.5.0:
+  version "6.5.0"
+  resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"
+  integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==
+  dependencies:
+    lodash.sortby "^4.7.0"
+    tr46 "^1.0.1"
+    webidl-conversions "^4.0.2"
+
+whatwg-url@^7.0.0:
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
+  integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
+  dependencies:
+    lodash.sortby "^4.7.0"
+    tr46 "^1.0.1"
+    webidl-conversions "^4.0.2"
+
+whatwg-url@^8.0.0:
+  version "8.4.0"
+  resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.4.0.tgz#50fb9615b05469591d2b2bd6dfaed2942ed72837"
+  integrity sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==
+  dependencies:
+    lodash.sortby "^4.7.0"
+    tr46 "^2.0.2"
+    webidl-conversions "^6.1.0"
+
+which-module@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
+  integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
+
+which-pm-runs@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
+  integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=
+
+which@^1.2.14, which@^1.2.9, which@^1.3.1:
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
+  integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
+  dependencies:
+    isexe "^2.0.0"
+
+which@^2.0.1, which@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
+  integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+  dependencies:
+    isexe "^2.0.0"
+
+wide-align@^1.1.0:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
+  integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
+  dependencies:
+    string-width "^1.0.2 || 2"
+
+widest-line@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca"
+  integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==
+  dependencies:
+    string-width "^4.0.0"
+
+windows-release@^3.1.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.2.0.tgz#8122dad5afc303d833422380680a79cdfa91785f"
+  integrity sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA==
+  dependencies:
+    execa "^1.0.0"
+
+with-open-file@^0.1.6:
+  version "0.1.7"
+  resolved "https://registry.yarnpkg.com/with-open-file/-/with-open-file-0.1.7.tgz#e2de8d974e8a8ae6e58886be4fe8e7465b58a729"
+  integrity sha512-ecJS2/oHtESJ1t3ZfMI3B7KIDKyfN0O16miWxdn30zdh66Yd3LsRFebXZXq6GU4xfxLf6nVxp9kIqElb5fqczA==
+  dependencies:
+    p-finally "^1.0.0"
+    p-try "^2.1.0"
+    pify "^4.0.1"
+
+word-wrap@^1.0.3, word-wrap@^1.2.3, word-wrap@~1.2.3:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
+  integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
+
+wordwrap@~0.0.2:
+  version "0.0.3"
+  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
+  integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc=
+
+worker-farm@^1.7.0:
+  version "1.7.0"
+  resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
+  integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
+  dependencies:
+    errno "~0.1.7"
+
+worker-rpc@^0.1.0:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5"
+  integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==
+  dependencies:
+    microevent.ts "~0.1.1"
+
+wrap-ansi@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
+  integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=
+  dependencies:
+    string-width "^1.0.1"
+    strip-ansi "^3.0.1"
+
+wrap-ansi@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba"
+  integrity sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=
+  dependencies:
+    string-width "^2.1.1"
+    strip-ansi "^4.0.0"
+
+wrap-ansi@^5.1.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
+  integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
+  dependencies:
+    ansi-styles "^3.2.0"
+    string-width "^3.0.0"
+    strip-ansi "^5.0.0"
+
+wrap-ansi@^6.2.0:
+  version "6.2.0"
+  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
+  integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
+  dependencies:
+    ansi-styles "^4.0.0"
+    string-width "^4.1.0"
+    strip-ansi "^6.0.0"
+
+wrappy@1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+  integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
+
+write-file-atomic@2.4.1:
+  version "2.4.1"
+  resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529"
+  integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==
+  dependencies:
+    graceful-fs "^4.1.11"
+    imurmurhash "^0.1.4"
+    signal-exit "^3.0.2"
+
+write-file-atomic@^2.0.0, write-file-atomic@^2.3.0, write-file-atomic@^2.4.2:
+  version "2.4.3"
+  resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481"
+  integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==
+  dependencies:
+    graceful-fs "^4.1.11"
+    imurmurhash "^0.1.4"
+    signal-exit "^3.0.2"
+
+write-file-atomic@^3.0.0:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
+  integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
+  dependencies:
+    imurmurhash "^0.1.4"
+    is-typedarray "^1.0.0"
+    signal-exit "^3.0.2"
+    typedarray-to-buffer "^3.1.5"
+
+write-json-file@^2.2.0:
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f"
+  integrity sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8=
+  dependencies:
+    detect-indent "^5.0.0"
+    graceful-fs "^4.1.2"
+    make-dir "^1.0.0"
+    pify "^3.0.0"
+    sort-keys "^2.0.0"
+    write-file-atomic "^2.0.0"
+
+write-json-file@^3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a"
+  integrity sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==
+  dependencies:
+    detect-indent "^5.0.0"
+    graceful-fs "^4.1.15"
+    make-dir "^2.1.0"
+    pify "^4.0.1"
+    sort-keys "^2.0.0"
+    write-file-atomic "^2.4.2"
+
+write-pkg@^3.1.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.2.0.tgz#0e178fe97820d389a8928bc79535dbe68c2cff21"
+  integrity sha512-tX2ifZ0YqEFOF1wjRW2Pk93NLsj02+n1UP5RvO6rCs0K6R2g1padvf006cY74PQJKMGS2r42NK7FD0dG6Y6paw==
+  dependencies:
+    sort-keys "^2.0.0"
+    write-json-file "^2.2.0"
+
+ws@^5.2.0:
+  version "5.2.2"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f"
+  integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==
+  dependencies:
+    async-limiter "~1.0.0"
+
+ws@^6.0.0, ws@^6.2.1:
+  version "6.2.1"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb"
+  integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==
+  dependencies:
+    async-limiter "~1.0.0"
+
+ws@^7.0.0:
+  version "7.2.3"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.3.tgz#a5411e1fb04d5ed0efee76d26d5c46d830c39b46"
+  integrity sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ==
+
+ws@^7.2.3:
+  version "7.4.0"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.0.tgz#a5dd76a24197940d4a8bb9e0e152bb4503764da7"
+  integrity sha512-kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ==
+
+x-is-string@^0.1.0:
+  version "0.1.0"
+  resolved "http://localhost:4873/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82"
+  integrity sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=
+
+xml-name-validator@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
+  integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
+
+xmlbuilder@^10.0.0:
+  version "10.1.1"
+  resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-10.1.1.tgz#8cae6688cc9b38d850b7c8d3c0a4161dcaf475b0"
+  integrity sha512-OyzrcFLL/nb6fMGHbiRDuPup9ljBycsdCypwuyg5AAHvyWzGfChJpCXMG88AGTIMFhGZ9RccFN1e6lhg3hkwKg==
+
+xmlchars@^2.1.1, xmlchars@^2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
+  integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
+
+xss@^1.0.6:
+  version "1.0.8"
+  resolved "https://registry.yarnpkg.com/xss/-/xss-1.0.8.tgz#32feb87feb74b3dcd3d404b7a68ababf10700535"
+  integrity sha512-3MgPdaXV8rfQ/pNn16Eio6VXYPTkqwa0vc7GkiymmY/DqR1SE/7VPAAVZz1GJsJFrllMYO3RHfEaiUGjab6TNw==
+  dependencies:
+    commander "^2.20.3"
+    cssfilter "0.0.10"
+
+xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
+  integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
+
+y18n@^3.2.1:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
+  integrity sha1-bRX7qITAhnnA136I53WegR4H+kE=
+
+y18n@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
+  integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
+
+yallist@^2.1.2:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
+  integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
+
+yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
+  integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
+
+yallist@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
+  integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
+
+yaml@^1.10.0:
+  version "1.10.0"
+  resolved "http://localhost:4873/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"
+  integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==
+
+yaml@^1.7.2:
+  version "1.8.3"
+  resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.8.3.tgz#2f420fca58b68ce3a332d0ca64be1d191dd3f87a"
+  integrity sha512-X/v7VDnK+sxbQ2Imq4Jt2PRUsRsP7UcpSl3Llg6+NRRqWLIvxkMFYtH1FmvwNGYRKKPa+EPA4qDBlI9WVG1UKw==
+  dependencies:
+    "@babel/runtime" "^7.8.7"
+
+yargs-parser@10.x, yargs-parser@^10.0.0:
+  version "10.1.0"
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8"
+  integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==
+  dependencies:
+    camelcase "^4.1.0"
+
+yargs-parser@20.x:
+  version "20.2.4"
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
+  integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==
+
+yargs-parser@^13.0.0, yargs-parser@^13.1.2:
+  version "13.1.2"
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
+  integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
+  dependencies:
+    camelcase "^5.0.0"
+    decamelize "^1.2.0"
+
+yargs-parser@^15.0.1:
+  version "15.0.1"
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3"
+  integrity sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==
+  dependencies:
+    camelcase "^5.0.0"
+    decamelize "^1.2.0"
+
+yargs-parser@^18.1.1:
+  version "18.1.2"
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.2.tgz#2f482bea2136dbde0861683abea7756d30b504f1"
+  integrity sha512-hlIPNR3IzC1YuL1c2UwwDKpXlNFBqD1Fswwh1khz5+d8Cq/8yc/Mn0i+rQXduu8hcrFKvO7Eryk+09NecTQAAQ==
+  dependencies:
+    camelcase "^5.0.0"
+    decamelize "^1.2.0"
+
+yargs-parser@^18.1.2, yargs-parser@^18.1.3:
+  version "18.1.3"
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
+  integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
+  dependencies:
+    camelcase "^5.0.0"
+    decamelize "^1.2.0"
+
+yargs-parser@^8.1.0:
+  version "8.1.0"
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950"
+  integrity sha512-yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ==
+  dependencies:
+    camelcase "^4.1.0"
+
+yargs@^10.0.3:
+  version "10.1.2"
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5"
+  integrity sha512-ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==
+  dependencies:
+    cliui "^4.0.0"
+    decamelize "^1.1.1"
+    find-up "^2.1.0"
+    get-caller-file "^1.0.1"
+    os-locale "^2.0.0"
+    require-directory "^2.1.1"
+    require-main-filename "^1.0.1"
+    set-blocking "^2.0.0"
+    string-width "^2.0.0"
+    which-module "^2.0.0"
+    y18n "^3.2.1"
+    yargs-parser "^8.1.0"
+
+yargs@^13.3.0, yargs@^13.3.2:
+  version "13.3.2"
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
+  integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
+  dependencies:
+    cliui "^5.0.0"
+    find-up "^3.0.0"
+    get-caller-file "^2.0.1"
+    require-directory "^2.1.1"
+    require-main-filename "^2.0.0"
+    set-blocking "^2.0.0"
+    string-width "^3.0.0"
+    which-module "^2.0.0"
+    y18n "^4.0.0"
+    yargs-parser "^13.1.2"
+
+yargs@^14.0.0, yargs@^14.2.2:
+  version "14.2.3"
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414"
+  integrity sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==
+  dependencies:
+    cliui "^5.0.0"
+    decamelize "^1.2.0"
+    find-up "^3.0.0"
+    get-caller-file "^2.0.1"
+    require-directory "^2.1.1"
+    require-main-filename "^2.0.0"
+    set-blocking "^2.0.0"
+    string-width "^3.0.0"
+    which-module "^2.0.0"
+    y18n "^4.0.0"
+    yargs-parser "^15.0.1"
+
+yargs@^15.3.1:
+  version "15.3.1"
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.3.1.tgz#9505b472763963e54afe60148ad27a330818e98b"
+  integrity sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==
+  dependencies:
+    cliui "^6.0.0"
+    decamelize "^1.2.0"
+    find-up "^4.1.0"
+    get-caller-file "^2.0.1"
+    require-directory "^2.1.1"
+    require-main-filename "^2.0.0"
+    set-blocking "^2.0.0"
+    string-width "^4.2.0"
+    which-module "^2.0.0"
+    y18n "^4.0.0"
+    yargs-parser "^18.1.1"
+
+yargs@^15.4.1:
+  version "15.4.1"
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
+  integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
+  dependencies:
+    cliui "^6.0.0"
+    decamelize "^1.2.0"
+    find-up "^4.1.0"
+    get-caller-file "^2.0.1"
+    require-directory "^2.1.1"
+    require-main-filename "^2.0.0"
+    set-blocking "^2.0.0"
+    string-width "^4.2.0"
+    which-module "^2.0.0"
+    y18n "^4.0.0"
+    yargs-parser "^18.1.2"
+
+yarn-or-npm@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/yarn-or-npm/-/yarn-or-npm-3.0.1.tgz#6336eea4dff7e23e226acc98c1a8ada17a1b8666"
+  integrity sha512-fTiQP6WbDAh5QZAVdbMQkecZoahnbOjClTQhzv74WX5h2Uaidj1isf9FDes11TKtsZ0/ZVfZsqZ+O3x6aLERHQ==
+  dependencies:
+    cross-spawn "^6.0.5"
+    pkg-dir "^4.2.0"
+
+yeoman-assert@^3.1.0:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/yeoman-assert/-/yeoman-assert-3.1.1.tgz#9f6fa0ecba7dd007c40f579668cb5dda18c79343"
+  integrity sha512-bCuLb/j/WzpvrJZCTdJJLFzm7KK8IYQJ3+dF9dYtNs2CUYyezFJDuULiZ2neM4eqjf45GN1KH/MzCTT3i90wUQ==
+
+yeoman-environment@^2.10.0, yeoman-environment@^2.9.5:
+  version "2.10.0"
+  resolved "https://registry.yarnpkg.com/yeoman-environment/-/yeoman-environment-2.10.0.tgz#ddf803935dac03248208a23e3d31629d9bfa2dbf"
+  integrity sha512-dn754zZm1kTWS94V5riNLNjs9Wn6Zjl+9jgbQ37EmHEhcRR30fY1sgBnhYZyTpa+zK7ipFI6dMH9Sg0SAMW3hw==
+  dependencies:
+    chalk "^2.4.1"
+    debug "^3.1.0"
+    diff "^3.5.0"
+    escape-string-regexp "^1.0.2"
+    execa "^4.0.0"
+    globby "^8.0.1"
+    grouped-queue "^1.1.0"
+    inquirer "^7.1.0"
+    is-scoped "^1.0.0"
+    lodash "^4.17.10"
+    log-symbols "^2.2.0"
+    mem-fs "^1.1.0"
+    mem-fs-editor "^6.0.0"
+    npm-api "^1.0.0"
+    semver "^7.1.3"
+    strip-ansi "^4.0.0"
+    text-table "^0.2.0"
+    untildify "^3.0.3"
+    yeoman-generator "^4.8.2"
+
+yeoman-generator@^4.0.0, yeoman-generator@^4.10.0, yeoman-generator@^4.8.2:
+  version "4.10.1"
+  resolved "https://registry.yarnpkg.com/yeoman-generator/-/yeoman-generator-4.10.1.tgz#82853f55856ba14f180ab6c6a70acd89b11c956b"
+  integrity sha512-QgbtHSaqBAkyJJM0heQUhT63ubCt34NBFMEBydOBUdAuy8RBvGSzeqVBSZOjdh1tSLrwWXlU3Ck6y14awinF6Q==
+  dependencies:
+    async "^2.6.2"
+    chalk "^2.4.2"
+    cli-table "^0.3.1"
+    cross-spawn "^6.0.5"
+    dargs "^6.1.0"
+    dateformat "^3.0.3"
+    debug "^4.1.1"
+    diff "^4.0.1"
+    error "^7.0.2"
+    find-up "^3.0.0"
+    github-username "^3.0.0"
+    istextorbinary "^2.5.1"
+    lodash "^4.17.11"
+    make-dir "^3.0.0"
+    minimist "^1.2.5"
+    pretty-bytes "^5.2.0"
+    read-chunk "^3.2.0"
+    read-pkg-up "^5.0.0"
+    rimraf "^2.6.3"
+    run-async "^2.0.0"
+    semver "^7.2.1"
+    shelljs "^0.8.3"
+    text-table "^0.2.0"
+    through2 "^3.0.1"
+  optionalDependencies:
+    grouped-queue "^1.1.0"
+    mem-fs-editor "^6.0.0"
+    yeoman-environment "^2.9.5"
+
+yeoman-test@^2.0.0:
+  version "2.6.0"
+  resolved "https://registry.yarnpkg.com/yeoman-test/-/yeoman-test-2.6.0.tgz#cde683c094b83233fb6448e7ba0aa978dae4c214"
+  integrity sha512-/OSgUUxlYuehmLubLT8EglxkC9RmbYwVAH/9QQ7yJXuiary9P4BiBRoYrRyK0j09VaprCpyuU/a0GV4nGKpTcg==
+  dependencies:
+    inquirer "^7.1.0"
+    lodash "^4.17.15"
+    mkdirp "^1.0.3"
+    rimraf "^3.0.2"
+    sinon "^9.0.1"
+    yeoman-environment "^2.10.0"
+    yeoman-generator "^4.10.0"
+
+yocto-queue@^0.1.0:
+  version "0.1.0"
+  resolved "http://localhost:4873/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
+  integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
+
+yosay@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/yosay/-/yosay-2.0.2.tgz#a7017e764cd88d64a1ae64812201de5b157adf6d"
+  integrity sha512-avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA==
+  dependencies:
+    ansi-regex "^2.0.0"
+    ansi-styles "^3.0.0"
+    chalk "^1.0.0"
+    cli-boxes "^1.0.0"
+    pad-component "0.0.1"
+    string-width "^2.0.0"
+    strip-ansi "^3.0.0"
+    taketalk "^1.0.0"
+    wrap-ansi "^2.0.0"
+
+zrender@5.0.4:
+  version "5.0.4"
+  resolved "https://registry.yarnpkg.com/zrender/-/zrender-5.0.4.tgz#89c355af908b9f64a301b38f751b7951f2c8a95a"
+  integrity sha512-DJpy0yrHYY5CuH6vhb9IINWbjvBUe/56J8aH86Jb7O8rRPAYZ3M2E469Qf5B3EOIfM3o3aUrO5edRQfLJ+l1Qw==
+  dependencies:
+    tslib "2.0.3"
+
+zwitch@^1.0.0:
+  version "1.0.5"
+  resolved "http://localhost:4873/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920"
+  integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==